
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00000 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00000 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00000 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00000 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
.sc__c00000{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
}
.y0_c00000{bottom:0.000000px;}
.h0_c00000{height:708.450000px;}
.h1_c00000{height:708.750000px;}
.w0_c00000{width:452.250000px;}
.x0_c00000{left:0.000000px;}
@media print{
.y0_c00000{bottom:0.000000pt;}
.h0_c00000{height:629.733333pt;}
.h1_c00000{height:630.000000pt;}
.w0_c00000{width:402.000000pt;}
.x0_c00000{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00001 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00001 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00001 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00001 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_deeb83d33515aefd4728646d.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00001{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:transparent;}
.fs0_c00001{font-size:22.050000px;}
.y0_c00001{bottom:0.000000px;}
.y3_c00001{bottom:580.230000px;}
.y2_c00001{bottom:588.060000px;}
.y1_c00001{bottom:611.010000px;}
.h2_c00001{height:22.050000px;}
.h1_c00001{height:642.000000px;}
.h0_c00001{height:642.300000px;}
.w0_c00001{width:390.690000px;}
.w1_c00001{width:390.750000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:380.700000px;}
.x1_c00001{left:382.050000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:19.600000pt;}
.y0_c00001{bottom:0.000000pt;}
.y3_c00001{bottom:515.760000pt;}
.y2_c00001{bottom:522.720000pt;}
.y1_c00001{bottom:543.120000pt;}
.h2_c00001{height:19.600000pt;}
.h1_c00001{height:570.666667pt;}
.h0_c00001{height:570.933333pt;}
.w0_c00001{width:347.280000pt;}
.w1_c00001{width:347.333333pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:338.400000pt;}
.x1_c00001{left:339.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00002 {
    display:none;
  }
  .loading-indicator_c00002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00002 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00002 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00002" -> "#page-container .classname_c00002")
 */
.pf_c00002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00002 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00002 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00002 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00002 {overflow:visible;}
  }
}
.c_c00002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00002 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00002:after { /* webkit #35443 */
  content: '';
}
.t_c00002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00002 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00002 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00002 { /* info for Javascript */
  display:none;
}
.l_c00002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00002:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00002 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00002.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
.sc__c00002{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
}
.y0_c00002{bottom:0.000000px;}
.h1_c00002{height:642.000000px;}
.h0_c00002{height:642.300000px;}
.w0_c00002{width:390.690000px;}
.w1_c00002{width:390.750000px;}
.x0_c00002{left:0.000000px;}
@media print{
.y0_c00002{bottom:0.000000pt;}
.h1_c00002{height:570.666667pt;}
.h0_c00002{height:570.933333pt;}
.w0_c00002{width:347.280000pt;}
.w1_c00002{width:347.333333pt;}
.x0_c00002{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00003 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00003 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00003 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00003 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
.sc__c00003{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
}
.y0_c00003{bottom:0.000000px;}
.h1_c00003{height:624.000000px;}
.h0_c00003{height:624.240000px;}
.w0_c00003{width:390.690000px;}
.w1_c00003{width:390.750000px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h1_c00003{height:554.666667pt;}
.h0_c00003{height:554.880000pt;}
.w0_c00003{width:347.280000pt;}
.w1_c00003{width:347.333333pt;}
.x0_c00003{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00004 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_aacf32d67d8231cbdaa17b67.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00004{transform:matrix(0.196243,0.007858,-0.010002,0.249800,0,0);-ms-transform:matrix(0.196243,0.007858,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.196243,0.007858,-0.010002,0.249800,0,0);}
.m9_c00004{transform:matrix(0.200453,0.009230,-0.011499,0.249735,0,0);-ms-transform:matrix(0.200453,0.009230,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.200453,0.009230,-0.011499,0.249735,0,0);}
.m5_c00004{transform:matrix(0.252193,0.009593,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252193,0.009593,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252193,0.009593,-0.009503,0.249819,0,0);}
.m7_c00004{transform:matrix(0.285833,0.010873,-0.009503,0.249819,0,0);-ms-transform:matrix(0.285833,0.010873,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.285833,0.010873,-0.009503,0.249819,0,0);}
.m6_c00004{transform:matrix(0.297225,0.011306,-0.009503,0.249819,0,0);-ms-transform:matrix(0.297225,0.011306,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.297225,0.011306,-0.009503,0.249819,0,0);}
.m4_c00004{transform:matrix(0.318739,0.012124,-0.009503,0.249819,0,0);-ms-transform:matrix(0.318739,0.012124,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.318739,0.012124,-0.009503,0.249819,0,0);}
.m8_c00004{transform:matrix(0.341183,0.015710,-0.011499,0.249735,0,0);-ms-transform:matrix(0.341183,0.015710,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.341183,0.015710,-0.011499,0.249735,0,0);}
.m3_c00004{transform:matrix(0.343515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343515,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.417675,0.016724,-0.010002,0.249800,0,0);-ms-transform:matrix(0.417675,0.016724,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.417675,0.016724,-0.010002,0.249800,0,0);}
.m0_c00004{transform:matrix(0.455690,0.018246,-0.010002,0.249800,0,0);-ms-transform:matrix(0.455690,0.018246,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.455690,0.018246,-0.010002,0.249800,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
.fc0_c00004{color:transparent;}
.fs1_c00004{font-size:49.350000px;}
.fs2_c00004{font-size:80.827561px;}
.fs0_c00004{font-size:88.182402px;}
.fs3_c00004{font-size:88.205160px;}
.y0_c00004{bottom:0.000000px;}
.ya_c00004{bottom:251.965194px;}
.y9_c00004{bottom:255.993000px;}
.y8_c00004{bottom:334.814871px;}
.y7_c00004{bottom:335.672835px;}
.y6_c00004{bottom:336.788553px;}
.y5_c00004{bottom:339.967500px;}
.y4_c00004{bottom:390.156000px;}
.y3_c00004{bottom:434.206020px;}
.y2_c00004{bottom:436.045320px;}
.y1_c00004{bottom:439.066500px;}
.h3_c00004{height:49.350000px;}
.h4_c00004{height:80.827561px;}
.h2_c00004{height:88.182402px;}
.h5_c00004{height:88.205160px;}
.h1_c00004{height:624.000000px;}
.h0_c00004{height:624.240000px;}
.w0_c00004{width:390.690000px;}
.w1_c00004{width:390.750000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:72.546000px;}
.x5_c00004{left:93.246000px;}
.x9_c00004{left:128.599500px;}
.x2_c00004{left:147.999970px;}
.x6_c00004{left:176.818844px;}
.x4_c00004{left:184.950000px;}
.x3_c00004{left:193.936488px;}
.x7_c00004{left:206.150482px;}
.xa_c00004{left:216.072939px;}
.x8_c00004{left:228.705905px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs1_c00004{font-size:43.866667pt;}
.fs2_c00004{font-size:71.846721pt;}
.fs0_c00004{font-size:78.384358pt;}
.fs3_c00004{font-size:78.404586pt;}
.y0_c00004{bottom:0.000000pt;}
.ya_c00004{bottom:223.969061pt;}
.y9_c00004{bottom:227.549333pt;}
.y8_c00004{bottom:297.613219pt;}
.y7_c00004{bottom:298.375853pt;}
.y6_c00004{bottom:299.367603pt;}
.y5_c00004{bottom:302.193333pt;}
.y4_c00004{bottom:346.805333pt;}
.y3_c00004{bottom:385.960907pt;}
.y2_c00004{bottom:387.595840pt;}
.y1_c00004{bottom:390.281333pt;}
.h3_c00004{height:43.866667pt;}
.h4_c00004{height:71.846721pt;}
.h2_c00004{height:78.384358pt;}
.h5_c00004{height:78.404586pt;}
.h1_c00004{height:554.666667pt;}
.h0_c00004{height:554.880000pt;}
.w0_c00004{width:347.280000pt;}
.w1_c00004{width:347.333333pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:64.485333pt;}
.x5_c00004{left:82.885333pt;}
.x9_c00004{left:114.310667pt;}
.x2_c00004{left:131.555529pt;}
.x6_c00004{left:157.172305pt;}
.x4_c00004{left:164.400000pt;}
.x3_c00004{left:172.387989pt;}
.x7_c00004{left:183.244873pt;}
.xa_c00004{left:192.064835pt;}
.x8_c00004{left:203.294137pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00005 {
    display:none;
  }
  .loading-indicator_c00005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00005 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00005 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00005" -> "#page-container .classname_c00005")
 */
.pf_c00005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00005 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00005 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00005 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00005 {overflow:visible;}
  }
}
.c_c00005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00005 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00005:after { /* webkit #35443 */
  content: '';
}
.t_c00005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00005 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00005 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00005 { /* info for Javascript */
  display:none;
}
.l_c00005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00005 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00005.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00005{transform:matrix(0.121220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121220,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.407040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407040,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
.fc0_c00005{color:transparent;}
.fs0_c00005{font-size:22.050000px;}
.fs1_c00005{font-size:111.300000px;}
.y0_c00005{bottom:0.000000px;}
.y3_c00005{bottom:328.584000px;}
.y4_c00005{bottom:354.915000px;}
.y2_c00005{bottom:355.050000px;}
.y1_c00005{bottom:360.720000px;}
.h2_c00005{height:22.050000px;}
.h3_c00005{height:111.300000px;}
.h0_c00005{height:615.600000px;}
.h1_c00005{height:615.750000px;}
.w0_c00005{width:388.200000px;}
.w1_c00005{width:388.500000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:169.560000px;}
.x3_c00005{left:178.200000px;}
.x2_c00005{left:213.840000px;}
.x4_c00005{left:222.480000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs0_c00005{font-size:19.600000pt;}
.fs1_c00005{font-size:98.933333pt;}
.y0_c00005{bottom:0.000000pt;}
.y3_c00005{bottom:292.074667pt;}
.y4_c00005{bottom:315.480000pt;}
.y2_c00005{bottom:315.600000pt;}
.y1_c00005{bottom:320.640000pt;}
.h2_c00005{height:19.600000pt;}
.h3_c00005{height:98.933333pt;}
.h0_c00005{height:547.200000pt;}
.h1_c00005{height:547.333333pt;}
.w0_c00005{width:345.066667pt;}
.w1_c00005{width:345.333333pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:150.720000pt;}
.x3_c00005{left:158.400000pt;}
.x2_c00005{left:190.080000pt;}
.x4_c00005{left:197.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00006 {
    display:none;
  }
  .loading-indicator_c00006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00006 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00006 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00006" -> "#page-container .classname_c00006")
 */
.pf_c00006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00006 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00006 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00006 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00006 {overflow:visible;}
  }
}
.c_c00006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00006 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00006:after { /* webkit #35443 */
  content: '';
}
.t_c00006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00006 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00006 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00006 { /* info for Javascript */
  display:none;
}
.l_c00006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00006:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00006 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00006.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00006;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00006{transform:matrix(0.011979,0.000504,-0.010501,0.249779,0,0);-ms-transform:matrix(0.011979,0.000504,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.011979,0.000504,-0.010501,0.249779,0,0);}
.m23_c00006{transform:matrix(0.097577,0.003516,-0.009003,0.249838,0,0);-ms-transform:matrix(0.097577,0.003516,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.097577,0.003516,-0.009003,0.249838,0,0);}
.md_c00006{transform:matrix(0.100806,0.003734,-0.009253,0.249829,0,0);-ms-transform:matrix(0.100806,0.003734,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.100806,0.003734,-0.009253,0.249829,0,0);}
.m30_c00006{transform:matrix(0.135842,0.004895,-0.009003,0.249838,0,0);-ms-transform:matrix(0.135842,0.004895,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.135842,0.004895,-0.009003,0.249838,0,0);}
.m7_c00006{transform:matrix(0.158102,0.005856,-0.009253,0.249829,0,0);-ms-transform:matrix(0.158102,0.005856,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.158102,0.005856,-0.009253,0.249829,0,0);}
.m1a_c00006{transform:matrix(0.161001,0.006446,-0.010002,0.249800,0,0);-ms-transform:matrix(0.161001,0.006446,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.161001,0.006446,-0.010002,0.249800,0,0);}
.m5_c00006{transform:matrix(0.166086,0.006151,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166086,0.006151,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166086,0.006151,-0.009253,0.249829,0,0);}
.ma_c00006{transform:matrix(0.167580,0.006207,-0.009253,0.249829,0,0);-ms-transform:matrix(0.167580,0.006207,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.167580,0.006207,-0.009253,0.249829,0,0);}
.m9_c00006{transform:matrix(0.188651,0.006987,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188651,0.006987,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188651,0.006987,-0.009253,0.249829,0,0);}
.mf_c00006{transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);}
.m25_c00006{transform:matrix(0.200370,0.007221,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200370,0.007221,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200370,0.007221,-0.009003,0.249838,0,0);}
.m2d_c00006{transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);}
.m2c_c00006{transform:matrix(0.201594,0.007265,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201594,0.007265,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201594,0.007265,-0.009003,0.249838,0,0);}
.m33_c00006{transform:matrix(0.202504,0.007297,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202504,0.007297,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202504,0.007297,-0.009003,0.249838,0,0);}
.m10_c00006{transform:matrix(0.210925,0.007812,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210925,0.007812,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210925,0.007812,-0.009253,0.249829,0,0);}
.m24_c00006{transform:matrix(0.212857,0.007671,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212857,0.007671,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212857,0.007671,-0.009003,0.249838,0,0);}
.m34_c00006{transform:matrix(0.216804,0.007813,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216804,0.007813,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216804,0.007813,-0.009003,0.249838,0,0);}
.m2e_c00006{transform:matrix(0.222720,0.008026,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222720,0.008026,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222720,0.008026,-0.009003,0.249838,0,0);}
.me_c00006{transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);}
.m31_c00006{transform:matrix(0.234833,0.008462,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234833,0.008462,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234833,0.008462,-0.009003,0.249838,0,0);}
.mb_c00006{transform:matrix(0.235259,0.008713,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235259,0.008713,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235259,0.008713,-0.009253,0.249829,0,0);}
.m2_c00006{transform:matrix(0.239191,0.008859,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239191,0.008859,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239191,0.008859,-0.009253,0.249829,0,0);}
.m2f_c00006{transform:matrix(0.239604,0.008634,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239604,0.008634,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239604,0.008634,-0.009003,0.249838,0,0);}
.m32_c00006{transform:matrix(0.240804,0.008678,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240804,0.008678,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240804,0.008678,-0.009003,0.249838,0,0);}
.mc_c00006{transform:matrix(0.241889,0.008959,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241889,0.008959,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241889,0.008959,-0.009253,0.249829,0,0);}
.m35_c00006{transform:matrix(0.245291,0.008839,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245291,0.008839,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245291,0.008839,-0.009003,0.249838,0,0);}
.m2b_c00006{transform:matrix(0.246950,0.008899,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246950,0.008899,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246950,0.008899,-0.009003,0.249838,0,0);}
.m20_c00006{transform:matrix(0.248645,0.009209,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248645,0.009209,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248645,0.009209,-0.009253,0.249829,0,0);}
.m28_c00006{transform:matrix(0.257113,0.009265,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257113,0.009265,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257113,0.009265,-0.009003,0.249838,0,0);}
.m18_c00006{transform:matrix(0.264533,0.010592,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264533,0.010592,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264533,0.010592,-0.010002,0.249800,0,0);}
.m6_c00006{transform:matrix(0.265158,0.009821,-0.009253,0.249829,0,0);-ms-transform:matrix(0.265158,0.009821,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.265158,0.009821,-0.009253,0.249829,0,0);}
.m19_c00006{transform:matrix(0.267086,0.010694,-0.010002,0.249800,0,0);-ms-transform:matrix(0.267086,0.010694,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.267086,0.010694,-0.010002,0.249800,0,0);}
.m1d_c00006{transform:matrix(0.268045,0.010733,-0.010002,0.249800,0,0);-ms-transform:matrix(0.268045,0.010733,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.268045,0.010733,-0.010002,0.249800,0,0);}
.m27_c00006{transform:matrix(0.278554,0.010038,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278554,0.010038,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278554,0.010038,-0.009003,0.249838,0,0);}
.m3_c00006{transform:matrix(0.281827,0.010438,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281827,0.010438,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281827,0.010438,-0.009253,0.249829,0,0);}
.m1b_c00006{transform:matrix(0.284457,0.011390,-0.010002,0.249800,0,0);-ms-transform:matrix(0.284457,0.011390,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.284457,0.011390,-0.010002,0.249800,0,0);}
.m2a_c00006{transform:matrix(0.285500,0.010288,-0.009003,0.249838,0,0);-ms-transform:matrix(0.285500,0.010288,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.285500,0.010288,-0.009003,0.249838,0,0);}
.m29_c00006{transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);-ms-transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);}
.m13_c00006{transform:matrix(0.296719,0.008308,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296719,0.008308,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296719,0.008308,-0.006997,0.249902,0,0);}
.m12_c00006{transform:matrix(0.305005,0.008540,-0.006997,0.249902,0,0);-ms-transform:matrix(0.305005,0.008540,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.305005,0.008540,-0.006997,0.249902,0,0);}
.m11_c00006{transform:matrix(0.305595,0.008557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.305595,0.008557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.305595,0.008557,-0.006997,0.249902,0,0);}
.m26_c00006{transform:matrix(0.332244,0.011973,-0.009003,0.249838,0,0);-ms-transform:matrix(0.332244,0.011973,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.332244,0.011973,-0.009003,0.249838,0,0);}
.m1f_c00006{transform:matrix(0.338383,0.012533,-0.009253,0.249829,0,0);-ms-transform:matrix(0.338383,0.012533,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.338383,0.012533,-0.009253,0.249829,0,0);}
.m22_c00006{transform:matrix(0.339615,0.012238,-0.009003,0.249838,0,0);-ms-transform:matrix(0.339615,0.012238,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.339615,0.012238,-0.009003,0.249838,0,0);}
.m16_c00006{transform:matrix(0.341868,0.014373,-0.010501,0.249779,0,0);-ms-transform:matrix(0.341868,0.014373,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.341868,0.014373,-0.010501,0.249779,0,0);}
.m4_c00006{transform:matrix(0.351809,0.013030,-0.009253,0.249829,0,0);-ms-transform:matrix(0.351809,0.013030,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.351809,0.013030,-0.009253,0.249829,0,0);}
.m17_c00006{transform:matrix(0.384146,0.016150,-0.010501,0.249779,0,0);-ms-transform:matrix(0.384146,0.016150,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.384146,0.016150,-0.010501,0.249779,0,0);}
.m1c_c00006{transform:matrix(0.384337,0.015389,-0.010002,0.249800,0,0);-ms-transform:matrix(0.384337,0.015389,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.384337,0.015389,-0.010002,0.249800,0,0);}
.m15_c00006{transform:matrix(0.392019,0.016481,-0.010501,0.249779,0,0);-ms-transform:matrix(0.392019,0.016481,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.392019,0.016481,-0.010501,0.249779,0,0);}
.m14_c00006{transform:matrix(0.575062,0.024177,-0.010501,0.249779,0,0);-ms-transform:matrix(0.575062,0.024177,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.575062,0.024177,-0.010501,0.249779,0,0);}
.m0_c00006{transform:matrix(0.617639,0.025967,-0.010501,0.249779,0,0);-ms-transform:matrix(0.617639,0.025967,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.617639,0.025967,-0.010501,0.249779,0,0);}
.m8_c00006{transform:matrix(0.658668,0.024395,-0.009253,0.249829,0,0);-ms-transform:matrix(0.658668,0.024395,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.658668,0.024395,-0.009253,0.249829,0,0);}
.m21_c00006{transform:matrix(1.226444,0.045424,-0.009253,0.249829,0,0);-ms-transform:matrix(1.226444,0.045424,-0.009253,0.249829,0,0);-webkit-transform:matrix(1.226444,0.045424,-0.009253,0.249829,0,0);}
.m1e_c00006{transform:matrix(5.844553,0.216465,-0.009253,0.249829,0,0);-ms-transform:matrix(5.844553,0.216465,-0.009253,0.249829,0,0);-webkit-transform:matrix(5.844553,0.216465,-0.009253,0.249829,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
.fc0_c00006{color:transparent;}
.fs9_c00006{font-size:24.142392px;}
.fs7_c00006{font-size:27.291399px;}
.fs6_c00006{font-size:36.742668px;}
.fs4_c00006{font-size:38.865226px;}
.fsc_c00006{font-size:46.183758px;}
.fsa_c00006{font-size:55.630436px;}
.fs3_c00006{font-size:59.831144px;}
.fs5_c00006{font-size:59.842967px;}
.fsb_c00006{font-size:60.878590px;}
.fs2_c00006{font-size:80.824528px;}
.fs8_c00006{font-size:88.172213px;}
.fs0_c00006{font-size:95.538772px;}
.fs1_c00006{font-size:117.562950px;}
.y0_c00006{bottom:0.000000px;}
.y36_c00006{bottom:29.312699px;}
.y35_c00006{bottom:30.118918px;}
.y34_c00006{bottom:30.721180px;}
.y33_c00006{bottom:31.178075px;}
.y32_c00006{bottom:32.607725px;}
.y31_c00006{bottom:32.930321px;}
.y30_c00006{bottom:34.437784px;}
.y2f_c00006{bottom:35.040047px;}
.y2e_c00006{bottom:36.206717px;}
.y2d_c00006{bottom:49.797059px;}
.y2c_c00006{bottom:52.513218px;}
.y2b_c00006{bottom:54.738207px;}
.y2a_c00006{bottom:56.325807px;}
.y29_c00006{bottom:57.329627px;}
.y28_c00006{bottom:60.784101px;}
.y27_c00006{bottom:75.119670px;}
.y26_c00006{bottom:78.552882px;}
.y25_c00006{bottom:80.133408px;}
.y24_c00006{bottom:80.623188px;}
.y23_c00006{bottom:83.173500px;}
.y22_c00006{bottom:165.029727px;}
.y21_c00006{bottom:173.036823px;}
.y20_c00006{bottom:176.344124px;}
.y1f_c00006{bottom:200.887500px;}
.y1e_c00006{bottom:237.007500px;}
.y1d_c00006{bottom:237.582060px;}
.y1c_c00006{bottom:239.089380px;}
.y1b_c00006{bottom:239.565480px;}
.y1a_c00006{bottom:242.298300px;}
.y19_c00006{bottom:243.279000px;}
.y18_c00006{bottom:270.828084px;}
.y17_c00006{bottom:274.951812px;}
.y16_c00006{bottom:276.960063px;}
.y15_c00006{bottom:279.228000px;}
.y14_c00006{bottom:317.637672px;}
.y13_c00006{bottom:318.204042px;}
.y12_c00006{bottom:319.957500px;}
.y11_c00006{bottom:349.887463px;}
.y10_c00006{bottom:350.732340px;}
.yf_c00006{bottom:351.897063px;}
.ye_c00006{bottom:352.324524px;}
.yd_c00006{bottom:354.706029px;}
.yc_c00006{bottom:357.225840px;}
.yb_c00006{bottom:358.030756px;}
.ya_c00006{bottom:358.842000px;}
.y9_c00006{bottom:384.243284px;}
.y8_c00006{bottom:384.907730px;}
.y7_c00006{bottom:386.984817px;}
.y6_c00006{bottom:387.606695px;}
.y5_c00006{bottom:389.372705px;}
.y4_c00006{bottom:420.745190px;}
.y3_c00006{bottom:425.818500px;}
.y2_c00006{bottom:484.645512px;}
.y1_c00006{bottom:490.912500px;}
.hb_c00006{height:24.142392px;}
.h9_c00006{height:27.291399px;}
.h8_c00006{height:36.742668px;}
.h6_c00006{height:38.865226px;}
.he_c00006{height:46.183758px;}
.hc_c00006{height:55.630436px;}
.h5_c00006{height:59.831144px;}
.h7_c00006{height:59.842967px;}
.hd_c00006{height:60.878590px;}
.h4_c00006{height:80.824528px;}
.ha_c00006{height:88.172213px;}
.h2_c00006{height:95.538772px;}
.h3_c00006{height:117.562950px;}
.h0_c00006{height:615.600000px;}
.h1_c00006{height:615.750000px;}
.w0_c00006{width:388.200000px;}
.w1_c00006{width:388.500000px;}
.x0_c00006{left:0.000000px;}
.x9_c00006{left:34.780500px;}
.x22_c00006{left:36.352087px;}
.x13_c00006{left:47.727000px;}
.x3_c00006{left:51.331500px;}
.xa_c00006{left:56.684075px;}
.x27_c00006{left:57.797553px;}
.x5_c00006{left:64.344974px;}
.xb_c00006{left:78.416820px;}
.x28_c00006{left:90.172645px;}
.x1d_c00006{left:92.391516px;}
.x1e_c00006{left:94.651500px;}
.x1a_c00006{left:98.901000px;}
.x14_c00006{left:101.671502px;}
.x29_c00006{left:106.885416px;}
.x1b_c00006{left:115.155341px;}
.x1_c00006{left:121.593000px;}
.x23_c00006{left:127.175632px;}
.x6_c00006{left:141.296556px;}
.xc_c00006{left:146.451717px;}
.x15_c00006{left:149.439186px;}
.x24_c00006{left:153.574315px;}
.x2a_c00006{left:157.669581px;}
.x1f_c00006{left:165.422658px;}
.x17_c00006{left:170.829162px;}
.x20_c00006{left:179.014053px;}
.x11_c00006{left:183.574500px;}
.x4_c00006{left:188.310884px;}
.x25_c00006{left:195.298522px;}
.x1c_c00006{left:197.767479px;}
.x12_c00006{left:203.802000px;}
.x7_c00006{left:208.235939px;}
.xd_c00006{left:210.752352px;}
.x18_c00006{left:220.365077px;}
.xe_c00006{left:222.293799px;}
.x2b_c00006{left:226.733947px;}
.x8_c00006{left:229.660271px;}
.x19_c00006{left:234.714712px;}
.x16_c00006{left:247.525002px;}
.x2c_c00006{left:249.106552px;}
.xf_c00006{left:253.741320px;}
.x2_c00006{left:270.657786px;}
.x10_c00006{left:276.552985px;}
.x21_c00006{left:318.145283px;}
.x26_c00006{left:325.212128px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs9_c00006{font-size:21.459904pt;}
.fs7_c00006{font-size:24.259021pt;}
.fs6_c00006{font-size:32.660149pt;}
.fs4_c00006{font-size:34.546868pt;}
.fsc_c00006{font-size:41.052229pt;}
.fsa_c00006{font-size:49.449276pt;}
.fs3_c00006{font-size:53.183239pt;}
.fs5_c00006{font-size:53.193749pt;}
.fsb_c00006{font-size:54.114302pt;}
.fs2_c00006{font-size:71.844025pt;}
.fs8_c00006{font-size:78.375300pt;}
.fs0_c00006{font-size:84.923353pt;}
.fs1_c00006{font-size:104.500400pt;}
.y0_c00006{bottom:0.000000pt;}
.y36_c00006{bottom:26.055732pt;}
.y35_c00006{bottom:26.772372pt;}
.y34_c00006{bottom:27.307716pt;}
.y33_c00006{bottom:27.713844pt;}
.y32_c00006{bottom:28.984644pt;}
.y31_c00006{bottom:29.271396pt;}
.y30_c00006{bottom:30.611364pt;}
.y2f_c00006{bottom:31.146708pt;}
.y2e_c00006{bottom:32.183748pt;}
.y2d_c00006{bottom:44.264052pt;}
.y2c_c00006{bottom:46.678416pt;}
.y2b_c00006{bottom:48.656184pt;}
.y2a_c00006{bottom:50.067384pt;}
.y29_c00006{bottom:50.959668pt;}
.y28_c00006{bottom:54.030312pt;}
.y27_c00006{bottom:66.773040pt;}
.y26_c00006{bottom:69.824784pt;}
.y25_c00006{bottom:71.229696pt;}
.y24_c00006{bottom:71.665056pt;}
.y23_c00006{bottom:73.932000pt;}
.y22_c00006{bottom:146.693091pt;}
.y21_c00006{bottom:153.810509pt;}
.y20_c00006{bottom:156.750332pt;}
.y1f_c00006{bottom:178.566667pt;}
.y1e_c00006{bottom:210.673333pt;}
.y1d_c00006{bottom:211.184053pt;}
.y1c_c00006{bottom:212.523893pt;}
.y1b_c00006{bottom:212.947093pt;}
.y1a_c00006{bottom:215.376267pt;}
.y19_c00006{bottom:216.248000pt;}
.y18_c00006{bottom:240.736075pt;}
.y17_c00006{bottom:244.401611pt;}
.y16_c00006{bottom:246.186723pt;}
.y15_c00006{bottom:248.202667pt;}
.y14_c00006{bottom:282.344597pt;}
.y13_c00006{bottom:282.848037pt;}
.y12_c00006{bottom:284.406667pt;}
.y11_c00006{bottom:311.011079pt;}
.y10_c00006{bottom:311.762080pt;}
.yf_c00006{bottom:312.797389pt;}
.ye_c00006{bottom:313.177355pt;}
.yd_c00006{bottom:315.294248pt;}
.yc_c00006{bottom:317.534080pt;}
.yb_c00006{bottom:318.249561pt;}
.ya_c00006{bottom:318.970667pt;}
.y9_c00006{bottom:341.549585pt;}
.y8_c00006{bottom:342.140204pt;}
.y7_c00006{bottom:343.986504pt;}
.y6_c00006{bottom:344.539284pt;}
.y5_c00006{bottom:346.109071pt;}
.y4_c00006{bottom:373.995724pt;}
.y3_c00006{bottom:378.505333pt;}
.y2_c00006{bottom:430.796011pt;}
.y1_c00006{bottom:436.366667pt;}
.hb_c00006{height:21.459904pt;}
.h9_c00006{height:24.259021pt;}
.h8_c00006{height:32.660149pt;}
.h6_c00006{height:34.546868pt;}
.he_c00006{height:41.052229pt;}
.hc_c00006{height:49.449276pt;}
.h5_c00006{height:53.183239pt;}
.h7_c00006{height:53.193749pt;}
.hd_c00006{height:54.114302pt;}
.h4_c00006{height:71.844025pt;}
.ha_c00006{height:78.375300pt;}
.h2_c00006{height:84.923353pt;}
.h3_c00006{height:104.500400pt;}
.h0_c00006{height:547.200000pt;}
.h1_c00006{height:547.333333pt;}
.w0_c00006{width:345.066667pt;}
.w1_c00006{width:345.333333pt;}
.x0_c00006{left:0.000000pt;}
.x9_c00006{left:30.916000pt;}
.x22_c00006{left:32.312967pt;}
.x13_c00006{left:42.424000pt;}
.x3_c00006{left:45.628000pt;}
.xa_c00006{left:50.385844pt;}
.x27_c00006{left:51.375603pt;}
.x5_c00006{left:57.195532pt;}
.xb_c00006{left:69.703840pt;}
.x28_c00006{left:80.153463pt;}
.x1d_c00006{left:82.125792pt;}
.x1e_c00006{left:84.134667pt;}
.x1a_c00006{left:87.912000pt;}
.x14_c00006{left:90.374668pt;}
.x29_c00006{left:95.009259pt;}
.x1b_c00006{left:102.360303pt;}
.x1_c00006{left:108.082667pt;}
.x23_c00006{left:113.045007pt;}
.x6_c00006{left:125.596939pt;}
.xc_c00006{left:130.179304pt;}
.x15_c00006{left:132.834832pt;}
.x24_c00006{left:136.510503pt;}
.x2a_c00006{left:140.150739pt;}
.x1f_c00006{left:147.042363pt;}
.x17_c00006{left:151.848144pt;}
.x20_c00006{left:159.123603pt;}
.x11_c00006{left:163.177333pt;}
.x4_c00006{left:167.387452pt;}
.x25_c00006{left:173.598687pt;}
.x1c_c00006{left:175.793315pt;}
.x12_c00006{left:181.157333pt;}
.x7_c00006{left:185.098612pt;}
.xd_c00006{left:187.335424pt;}
.x18_c00006{left:195.880068pt;}
.xe_c00006{left:197.594488pt;}
.x2b_c00006{left:201.541287pt;}
.x8_c00006{left:204.142463pt;}
.x19_c00006{left:208.635300pt;}
.x16_c00006{left:220.022224pt;}
.x2c_c00006{left:221.428047pt;}
.xf_c00006{left:225.547840pt;}
.x2_c00006{left:240.584699pt;}
.x10_c00006{left:245.824876pt;}
.x21_c00006{left:282.795807pt;}
.x26_c00006{left:289.077447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00007 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00007 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00007 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00007 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00007.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_519435f2ed4bf97db4348b39.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00007{transform:matrix(0.014445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014445,0.000000,0.000000,0.250000,0,0);}
.m39_c00007{transform:matrix(0.029090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029090,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(0.097530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097530,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(0.152147,0.006244,-0.010252,0.249790,0,0);-ms-transform:matrix(0.152147,0.006244,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.152147,0.006244,-0.010252,0.249790,0,0);}
.m1b_c00007{transform:matrix(0.175862,0.007218,-0.010252,0.249790,0,0);-ms-transform:matrix(0.175862,0.007218,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.175862,0.007218,-0.010252,0.249790,0,0);}
.m5_c00007{transform:matrix(0.182614,-0.002009,0.002750,0.249985,0,0);-ms-transform:matrix(0.182614,-0.002009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182614,-0.002009,0.002750,0.249985,0,0);}
.m2e_c00007{transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);}
.m37_c00007{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m38_c00007{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.m31_c00007{transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);}
.m3b_c00007{transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);}
.m2b_c00007{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{transform:matrix(0.232210,0.009530,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232210,0.009530,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232210,0.009530,-0.010252,0.249790,0,0);}
.m14_c00007{transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);}
.m19_c00007{transform:matrix(0.258982,0.010629,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258982,0.010629,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258982,0.010629,-0.010252,0.249790,0,0);}
.ma_c00007{transform:matrix(0.260089,-0.002861,0.002750,0.249985,0,0);-ms-transform:matrix(0.260089,-0.002861,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260089,-0.002861,0.002750,0.249985,0,0);}
.m36_c00007{transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{transform:matrix(0.278386,0.011425,-0.010252,0.249790,0,0);-ms-transform:matrix(0.278386,0.011425,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.278386,0.011425,-0.010252,0.249790,0,0);}
.m26_c00007{transform:matrix(0.286968,0.009479,-0.008254,0.249864,0,0);-ms-transform:matrix(0.286968,0.009479,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.286968,0.009479,-0.008254,0.249864,0,0);}
.m18_c00007{transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.300850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300850,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);}
.m2d_c00007{transform:matrix(0.328440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328440,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);}
.m25_c00007{transform:matrix(0.346936,0.011460,-0.008254,0.249864,0,0);-ms-transform:matrix(0.346936,0.011460,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.346936,0.011460,-0.008254,0.249864,0,0);}
.m7_c00007{transform:matrix(0.366343,-0.004030,0.002750,0.249985,0,0);-ms-transform:matrix(0.366343,-0.004030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.366343,-0.004030,0.002750,0.249985,0,0);}
.m11_c00007{transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.369060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369060,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.369620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369620,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.380565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380565,0.000000,0.000000,0.250000,0,0);}
.mb_c00007{transform:matrix(0.386522,-0.004252,0.002750,0.249985,0,0);-ms-transform:matrix(0.386522,-0.004252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.386522,-0.004252,0.002750,0.249985,0,0);}
.m17_c00007{transform:matrix(0.386965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386965,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.390476,-0.004295,0.002750,0.249985,0,0);-ms-transform:matrix(0.390476,-0.004295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.390476,-0.004295,0.002750,0.249985,0,0);}
.m10_c00007{transform:matrix(0.405155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405155,0.000000,0.000000,0.250000,0,0);}
.m33_c00007{transform:matrix(0.405200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{transform:matrix(0.410065,0.016829,-0.010252,0.249790,0,0);-ms-transform:matrix(0.410065,0.016829,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.410065,0.016829,-0.010252,0.249790,0,0);}
.m3a_c00007{transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.415430,-0.004570,0.002750,0.249985,0,0);-ms-transform:matrix(0.415430,-0.004570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.415430,-0.004570,0.002750,0.249985,0,0);}
.m12_c00007{transform:matrix(0.453440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453440,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.462611,0.018986,-0.010252,0.249790,0,0);-ms-transform:matrix(0.462611,0.018986,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.462611,0.018986,-0.010252,0.249790,0,0);}
.m32_c00007{transform:matrix(0.508015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508015,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(0.517909,-0.005697,0.002750,0.249985,0,0);-ms-transform:matrix(0.517909,-0.005697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.517909,-0.005697,0.002750,0.249985,0,0);}
.m1_c00007{transform:matrix(0.600915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600915,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.626585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626585,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(0.657601,0.026989,-0.010252,0.249790,0,0);-ms-transform:matrix(0.657601,0.026989,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.657601,0.026989,-0.010252,0.249790,0,0);}
.m23_c00007{transform:matrix(0.672349,0.027594,-0.010252,0.249790,0,0);-ms-transform:matrix(0.672349,0.027594,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.672349,0.027594,-0.010252,0.249790,0,0);}
.m27_c00007{transform:matrix(0.705375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00007{transform:matrix(0.769390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769390,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.805597,0.033063,-0.010252,0.249790,0,0);-ms-transform:matrix(0.805597,0.033063,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.805597,0.033063,-0.010252,0.249790,0,0);}
.mf_c00007{transform:matrix(0.824355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824355,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.895751,-0.009853,0.002750,0.249985,0,0);-ms-transform:matrix(0.895751,-0.009853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.895751,-0.009853,0.002750,0.249985,0,0);}
.m35_c00007{transform:matrix(0.928415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.950125,0.038994,-0.010252,0.249790,0,0);-ms-transform:matrix(0.950125,0.038994,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.950125,0.038994,-0.010252,0.249790,0,0);}
.m24_c00007{transform:matrix(1.383690,0.056788,-0.010252,0.249790,0,0);-ms-transform:matrix(1.383690,0.056788,-0.010252,0.249790,0,0);-webkit-transform:matrix(1.383690,0.056788,-0.010252,0.249790,0,0);}
.m0_c00007{transform:matrix(1.388760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.388760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.388760,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
.fc0_c00007{color:transparent;}
.fs9_c00007{font-size:26.250000px;}
.fs4_c00007{font-size:32.544824px;}
.fsa_c00007{font-size:43.050000px;}
.fs8_c00007{font-size:53.550000px;}
.fs3_c00007{font-size:54.600000px;}
.fs1_c00007{font-size:57.753494px;}
.fs6_c00007{font-size:65.100000px;}
.fs0_c00007{font-size:72.450000px;}
.fs7_c00007{font-size:80.850000px;}
.fs2_c00007{font-size:93.450000px;}
.fs5_c00007{font-size:110.199825px;}
.y0_c00007{bottom:0.000000px;}
.y1e_c00007{bottom:2.700000px;}
.y1d_c00007{bottom:14.310000px;}
.y1c_c00007{bottom:25.558500px;}
.y1b_c00007{bottom:49.387500px;}
.y1a_c00007{bottom:76.773000px;}
.y19_c00007{bottom:175.248308px;}
.y18_c00007{bottom:177.135000px;}
.yb_c00007{bottom:236.565000px;}
.ya_c00007{bottom:270.421500px;}
.y17_c00007{bottom:320.071074px;}
.y16_c00007{bottom:320.238723px;}
.y15_c00007{bottom:321.166943px;}
.y14_c00007{bottom:323.067108px;}
.y13_c00007{bottom:324.041330px;}
.y12_c00007{bottom:324.284993px;}
.y11_c00007{bottom:324.633575px;}
.y10_c00007{bottom:325.284183px;}
.yf_c00007{bottom:326.677404px;}
.ye_c00007{bottom:326.826788px;}
.yd_c00007{bottom:327.652733px;}
.yc_c00007{bottom:329.131500px;}
.y2_c00007{bottom:350.385000px;}
.y3_c00007{bottom:351.105621px;}
.y4_c00007{bottom:351.344541px;}
.y5_c00007{bottom:351.789876px;}
.y6_c00007{bottom:352.093262px;}
.y7_c00007{bottom:352.485896px;}
.y8_c00007{bottom:353.310499px;}
.y9_c00007{bottom:353.527425px;}
.y1_c00007{bottom:385.419000px;}
.hb_c00007{height:26.250000px;}
.h6_c00007{height:32.544824px;}
.hc_c00007{height:43.050000px;}
.ha_c00007{height:53.550000px;}
.h5_c00007{height:54.600000px;}
.h3_c00007{height:57.753494px;}
.h8_c00007{height:65.100000px;}
.h2_c00007{height:72.450000px;}
.h9_c00007{height:80.850000px;}
.h4_c00007{height:93.450000px;}
.h7_c00007{height:110.199825px;}
.h1_c00007{height:615.750000px;}
.h0_c00007{height:615.870000px;}
.w0_c00007{width:388.200000px;}
.w1_c00007{width:388.500000px;}
.x0_c00007{left:0.000000px;}
.x19_c00007{left:35.987932px;}
.x25_c00007{left:53.460000px;}
.x1a_c00007{left:56.112787px;}
.x5_c00007{left:57.427500px;}
.x1b_c00007{left:59.752644px;}
.x27_c00007{left:63.720000px;}
.xd_c00007{left:66.690000px;}
.x1_c00007{left:75.870000px;}
.x12_c00007{left:85.590000px;}
.x1c_c00007{left:93.699663px;}
.x1d_c00007{left:109.552295px;}
.xe_c00007{left:114.480000px;}
.x26_c00007{left:115.830000px;}
.x1e_c00007{left:118.045793px;}
.x6_c00007{left:122.938500px;}
.x1f_c00007{left:123.982850px;}
.x28_c00007{left:135.270000px;}
.x29_c00007{left:137.970000px;}
.x23_c00007{left:141.844500px;}
.x7_c00007{left:144.658500px;}
.xf_c00007{left:146.610000px;}
.x20_c00007{left:147.720588px;}
.x10_c00007{left:149.850000px;}
.x2a_c00007{left:161.460000px;}
.x13_c00007{left:162.810000px;}
.x2_c00007{left:169.560000px;}
.x14_c00007{left:173.880000px;}
.x8_c00007{left:185.143500px;}
.x3_c00007{left:187.920000px;}
.x21_c00007{left:194.019743px;}
.x24_c00007{left:198.959827px;}
.x9_c00007{left:212.724000px;}
.x15_c00007{left:215.460000px;}
.x22_c00007{left:216.636603px;}
.x16_c00007{left:220.320000px;}
.x2b_c00007{left:238.950000px;}
.xa_c00007{left:248.418000px;}
.x11_c00007{left:260.820000px;}
.x17_c00007{left:267.840000px;}
.x4_c00007{left:269.190000px;}
.x2c_c00007{left:280.530000px;}
.x18_c00007{left:294.300000px;}
.x2d_c00007{left:299.160000px;}
.xb_c00007{left:323.382000px;}
.xc_c00007{left:343.102500px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.fs9_c00007{font-size:23.333333pt;}
.fs4_c00007{font-size:28.928733pt;}
.fsa_c00007{font-size:38.266667pt;}
.fs8_c00007{font-size:47.600000pt;}
.fs3_c00007{font-size:48.533333pt;}
.fs1_c00007{font-size:51.336439pt;}
.fs6_c00007{font-size:57.866667pt;}
.fs0_c00007{font-size:64.400000pt;}
.fs7_c00007{font-size:71.866667pt;}
.fs2_c00007{font-size:83.066667pt;}
.fs5_c00007{font-size:97.955400pt;}
.y0_c00007{bottom:0.000000pt;}
.y1e_c00007{bottom:2.400000pt;}
.y1d_c00007{bottom:12.720000pt;}
.y1c_c00007{bottom:22.718667pt;}
.y1b_c00007{bottom:43.900000pt;}
.y1a_c00007{bottom:68.242667pt;}
.y19_c00007{bottom:155.776273pt;}
.y18_c00007{bottom:157.453333pt;}
.yb_c00007{bottom:210.280000pt;}
.ya_c00007{bottom:240.374667pt;}
.y17_c00007{bottom:284.507621pt;}
.y16_c00007{bottom:284.656643pt;}
.y15_c00007{bottom:285.481727pt;}
.y14_c00007{bottom:287.170763pt;}
.y13_c00007{bottom:288.036737pt;}
.y12_c00007{bottom:288.253327pt;}
.y11_c00007{bottom:288.563177pt;}
.y10_c00007{bottom:289.141496pt;}
.yf_c00007{bottom:290.379915pt;}
.ye_c00007{bottom:290.512700pt;}
.yd_c00007{bottom:291.246873pt;}
.yc_c00007{bottom:292.561333pt;}
.y2_c00007{bottom:311.453333pt;}
.y3_c00007{bottom:312.093885pt;}
.y4_c00007{bottom:312.306259pt;}
.y5_c00007{bottom:312.702112pt;}
.y6_c00007{bottom:312.971788pt;}
.y7_c00007{bottom:313.320796pt;}
.y8_c00007{bottom:314.053777pt;}
.y9_c00007{bottom:314.246600pt;}
.y1_c00007{bottom:342.594667pt;}
.hb_c00007{height:23.333333pt;}
.h6_c00007{height:28.928733pt;}
.hc_c00007{height:38.266667pt;}
.ha_c00007{height:47.600000pt;}
.h5_c00007{height:48.533333pt;}
.h3_c00007{height:51.336439pt;}
.h8_c00007{height:57.866667pt;}
.h2_c00007{height:64.400000pt;}
.h9_c00007{height:71.866667pt;}
.h4_c00007{height:83.066667pt;}
.h7_c00007{height:97.955400pt;}
.h1_c00007{height:547.333333pt;}
.h0_c00007{height:547.440000pt;}
.w0_c00007{width:345.066667pt;}
.w1_c00007{width:345.333333pt;}
.x0_c00007{left:0.000000pt;}
.x19_c00007{left:31.989273pt;}
.x25_c00007{left:47.520000pt;}
.x1a_c00007{left:49.878033pt;}
.x5_c00007{left:51.046667pt;}
.x1b_c00007{left:53.113461pt;}
.x27_c00007{left:56.640000pt;}
.xd_c00007{left:59.280000pt;}
.x1_c00007{left:67.440000pt;}
.x12_c00007{left:76.080000pt;}
.x1c_c00007{left:83.288589pt;}
.x1d_c00007{left:97.379817pt;}
.xe_c00007{left:101.760000pt;}
.x26_c00007{left:102.960000pt;}
.x1e_c00007{left:104.929593pt;}
.x6_c00007{left:109.278667pt;}
.x1f_c00007{left:110.206977pt;}
.x28_c00007{left:120.240000pt;}
.x29_c00007{left:122.640000pt;}
.x23_c00007{left:126.084000pt;}
.x7_c00007{left:128.585333pt;}
.xf_c00007{left:130.320000pt;}
.x20_c00007{left:131.307189pt;}
.x10_c00007{left:133.200000pt;}
.x2a_c00007{left:143.520000pt;}
.x13_c00007{left:144.720000pt;}
.x2_c00007{left:150.720000pt;}
.x14_c00007{left:154.560000pt;}
.x8_c00007{left:164.572000pt;}
.x3_c00007{left:167.040000pt;}
.x21_c00007{left:172.461993pt;}
.x24_c00007{left:176.853180pt;}
.x9_c00007{left:189.088000pt;}
.x15_c00007{left:191.520000pt;}
.x22_c00007{left:192.565869pt;}
.x16_c00007{left:195.840000pt;}
.x2b_c00007{left:212.400000pt;}
.xa_c00007{left:220.816000pt;}
.x11_c00007{left:231.840000pt;}
.x17_c00007{left:238.080000pt;}
.x4_c00007{left:239.280000pt;}
.x2c_c00007{left:249.360000pt;}
.x18_c00007{left:261.600000pt;}
.x2d_c00007{left:265.920000pt;}
.xb_c00007{left:287.450667pt;}
.xc_c00007{left:304.980000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00008 {
    display:none;
  }
  .loading-indicator_c00008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00008 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00008 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00008" -> "#page-container .classname_c00008")
 */
.pf_c00008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00008 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00008 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00008 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00008 {overflow:visible;}
  }
}
.c_c00008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00008 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00008:after { /* webkit #35443 */
  content: '';
}
.t_c00008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00008 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00008 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00008 { /* info for Javascript */
  display:none;
}
.l_c00008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00008:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00008 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00008.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00008{transform:matrix(0.011962,0.000659,-0.013757,0.249621,0,0);-ms-transform:matrix(0.011962,0.000659,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.011962,0.000659,-0.013757,0.249621,0,0);}
.m37_c00008{transform:matrix(0.042115,0.001602,-0.009503,0.249819,0,0);-ms-transform:matrix(0.042115,0.001602,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.042115,0.001602,-0.009503,0.249819,0,0);}
.m2d_c00008{transform:matrix(0.044662,0.002461,-0.013757,0.249621,0,0);-ms-transform:matrix(0.044662,0.002461,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.044662,0.002461,-0.013757,0.249621,0,0);}
.m54_c00008{transform:matrix(0.060128,0.002949,-0.012248,0.249700,0,0);-ms-transform:matrix(0.060128,0.002949,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.060128,0.002949,-0.012248,0.249700,0,0);}
.mf_c00008{transform:matrix(0.119290,0.005015,-0.010501,0.249779,0,0);-ms-transform:matrix(0.119290,0.005015,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.119290,0.005015,-0.010501,0.249779,0,0);}
.m6_c00008{transform:matrix(0.130929,0.007077,-0.013494,0.249636,0,0);-ms-transform:matrix(0.130929,0.007077,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.130929,0.007077,-0.013494,0.249636,0,0);}
.m5_c00008{transform:matrix(0.146072,0.007896,-0.013494,0.249636,0,0);-ms-transform:matrix(0.146072,0.007896,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.146072,0.007896,-0.013494,0.249636,0,0);}
.mc_c00008{transform:matrix(0.149933,0.006303,-0.010501,0.249779,0,0);-ms-transform:matrix(0.149933,0.006303,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.149933,0.006303,-0.010501,0.249779,0,0);}
.m6f_c00008{transform:matrix(0.150222,0.006316,-0.010501,0.249779,0,0);-ms-transform:matrix(0.150222,0.006316,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.150222,0.006316,-0.010501,0.249779,0,0);}
.m7a_c00008{transform:matrix(0.152481,0.007784,-0.012746,0.249675,0,0);-ms-transform:matrix(0.152481,0.007784,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.152481,0.007784,-0.012746,0.249675,0,0);}
.m7b_c00008{transform:matrix(0.154159,0.007870,-0.012746,0.249675,0,0);-ms-transform:matrix(0.154159,0.007870,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.154159,0.007870,-0.012746,0.249675,0,0);}
.m14_c00008{transform:matrix(0.157561,0.006624,-0.010501,0.249779,0,0);-ms-transform:matrix(0.157561,0.006624,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.157561,0.006624,-0.010501,0.249779,0,0);}
.m66_c00008{transform:matrix(0.159879,0.006722,-0.010501,0.249779,0,0);-ms-transform:matrix(0.159879,0.006722,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.159879,0.006722,-0.010501,0.249779,0,0);}
.m80_c00008{transform:matrix(0.160496,0.008193,-0.012746,0.249675,0,0);-ms-transform:matrix(0.160496,0.008193,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.160496,0.008193,-0.012746,0.249675,0,0);}
.m8b_c00008{transform:matrix(0.160879,0.007730,-0.011998,0.249712,0,0);-ms-transform:matrix(0.160879,0.007730,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.160879,0.007730,-0.011998,0.249712,0,0);}
.m7_c00008{transform:matrix(0.161684,0.008740,-0.013494,0.249636,0,0);-ms-transform:matrix(0.161684,0.008740,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.161684,0.008740,-0.013494,0.249636,0,0);}
.m48_c00008{transform:matrix(0.161885,0.006482,-0.010002,0.249800,0,0);-ms-transform:matrix(0.161885,0.006482,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.161885,0.006482,-0.010002,0.249800,0,0);}
.m53_c00008{transform:matrix(0.166681,0.006674,-0.010002,0.249800,0,0);-ms-transform:matrix(0.166681,0.006674,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.166681,0.006674,-0.010002,0.249800,0,0);}
.m56_c00008{transform:matrix(0.166859,0.008184,-0.012248,0.249700,0,0);-ms-transform:matrix(0.166859,0.008184,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.166859,0.008184,-0.012248,0.249700,0,0);}
.m4b_c00008{transform:matrix(0.169035,0.006768,-0.010002,0.249800,0,0);-ms-transform:matrix(0.169035,0.006768,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.169035,0.006768,-0.010002,0.249800,0,0);}
.m4_c00008{transform:matrix(0.169193,0.007621,-0.011250,0.249747,0,0);-ms-transform:matrix(0.169193,0.007621,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.169193,0.007621,-0.011250,0.249747,0,0);}
.m87_c00008{transform:matrix(0.169634,0.008151,-0.011998,0.249712,0,0);-ms-transform:matrix(0.169634,0.008151,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.169634,0.008151,-0.011998,0.249712,0,0);}
.m71_c00008{transform:matrix(0.170210,0.007156,-0.010501,0.249779,0,0);-ms-transform:matrix(0.170210,0.007156,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.170210,0.007156,-0.010501,0.249779,0,0);}
.m8a_c00008{transform:matrix(0.170229,0.008179,-0.011998,0.249712,0,0);-ms-transform:matrix(0.170229,0.008179,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.170229,0.008179,-0.011998,0.249712,0,0);}
.m25_c00008{transform:matrix(0.170379,0.007163,-0.010501,0.249779,0,0);-ms-transform:matrix(0.170379,0.007163,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.170379,0.007163,-0.010501,0.249779,0,0);}
.m6c_c00008{transform:matrix(0.171553,0.007212,-0.010501,0.249779,0,0);-ms-transform:matrix(0.171553,0.007212,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.171553,0.007212,-0.010501,0.249779,0,0);}
.m49_c00008{transform:matrix(0.173201,0.006935,-0.010002,0.249800,0,0);-ms-transform:matrix(0.173201,0.006935,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.173201,0.006935,-0.010002,0.249800,0,0);}
.m22_c00008{transform:matrix(0.173757,0.007305,-0.010501,0.249779,0,0);-ms-transform:matrix(0.173757,0.007305,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.173757,0.007305,-0.010501,0.249779,0,0);}
.m73_c00008{transform:matrix(0.177019,0.007442,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177019,0.007442,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177019,0.007442,-0.010501,0.249779,0,0);}
.m63_c00008{transform:matrix(0.177238,0.007451,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177238,0.007451,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177238,0.007451,-0.010501,0.249779,0,0);}
.m3_c00008{transform:matrix(0.179413,0.008082,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179413,0.008082,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179413,0.008082,-0.011250,0.249747,0,0);}
.m27_c00008{transform:matrix(0.181200,0.007618,-0.010501,0.249779,0,0);-ms-transform:matrix(0.181200,0.007618,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.181200,0.007618,-0.010501,0.249779,0,0);}
.m52_c00008{transform:matrix(0.181530,0.007268,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181530,0.007268,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181530,0.007268,-0.010002,0.249800,0,0);}
.m3e_c00008{transform:matrix(0.182212,0.007478,-0.010252,0.249790,0,0);-ms-transform:matrix(0.182212,0.007478,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.182212,0.007478,-0.010252,0.249790,0,0);}
.m74_c00008{transform:matrix(0.182399,0.007668,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182399,0.007668,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182399,0.007668,-0.010501,0.249779,0,0);}
.m2_c00008{transform:matrix(0.183259,0.008255,-0.011250,0.249747,0,0);-ms-transform:matrix(0.183259,0.008255,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.183259,0.008255,-0.011250,0.249747,0,0);}
.m5f_c00008{transform:matrix(0.183385,0.008995,-0.012248,0.249700,0,0);-ms-transform:matrix(0.183385,0.008995,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.183385,0.008995,-0.012248,0.249700,0,0);}
.m28_c00008{transform:matrix(0.183586,0.005881,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183586,0.005881,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183586,0.005881,-0.008004,0.249872,0,0);}
.m4f_c00008{transform:matrix(0.184587,0.007391,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184587,0.007391,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184587,0.007391,-0.010002,0.249800,0,0);}
.m4c_c00008{transform:matrix(0.184712,0.007396,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184712,0.007396,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184712,0.007396,-0.010002,0.249800,0,0);}
.m50_c00008{transform:matrix(0.186306,0.007460,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186306,0.007460,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186306,0.007460,-0.010002,0.249800,0,0);}
.m65_c00008{transform:matrix(0.186720,0.007850,-0.010501,0.249779,0,0);-ms-transform:matrix(0.186720,0.007850,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.186720,0.007850,-0.010501,0.249779,0,0);}
.m58_c00008{transform:matrix(0.187295,0.009187,-0.012248,0.249700,0,0);-ms-transform:matrix(0.187295,0.009187,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.187295,0.009187,-0.012248,0.249700,0,0);}
.m64_c00008{transform:matrix(0.187954,0.007902,-0.010501,0.249779,0,0);-ms-transform:matrix(0.187954,0.007902,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.187954,0.007902,-0.010501,0.249779,0,0);}
.m61_c00008{transform:matrix(0.188174,0.009230,-0.012248,0.249700,0,0);-ms-transform:matrix(0.188174,0.009230,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.188174,0.009230,-0.012248,0.249700,0,0);}
.m86_c00008{transform:matrix(0.188697,0.009067,-0.011998,0.249712,0,0);-ms-transform:matrix(0.188697,0.009067,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.188697,0.009067,-0.011998,0.249712,0,0);}
.m1_c00008{transform:matrix(0.188724,0.008501,-0.011250,0.249747,0,0);-ms-transform:matrix(0.188724,0.008501,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.188724,0.008501,-0.011250,0.249747,0,0);}
.m88_c00008{transform:matrix(0.189017,0.009082,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189017,0.009082,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189017,0.009082,-0.011998,0.249712,0,0);}
.m67_c00008{transform:matrix(0.189682,0.007975,-0.010501,0.249779,0,0);-ms-transform:matrix(0.189682,0.007975,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.189682,0.007975,-0.010501,0.249779,0,0);}
.m6b_c00008{transform:matrix(0.190926,0.008027,-0.010501,0.249779,0,0);-ms-transform:matrix(0.190926,0.008027,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.190926,0.008027,-0.010501,0.249779,0,0);}
.m85_c00008{transform:matrix(0.191010,0.009178,-0.011998,0.249712,0,0);-ms-transform:matrix(0.191010,0.009178,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.191010,0.009178,-0.011998,0.249712,0,0);}
.m29_c00008{transform:matrix(0.191327,0.006129,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191327,0.006129,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191327,0.006129,-0.008004,0.249872,0,0);}
.m57_c00008{transform:matrix(0.192718,0.009453,-0.012248,0.249700,0,0);-ms-transform:matrix(0.192718,0.009453,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.192718,0.009453,-0.012248,0.249700,0,0);}
.m40_c00008{transform:matrix(0.193249,0.005604,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193249,0.005604,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193249,0.005604,-0.007247,0.249895,0,0);}
.m62_c00008{transform:matrix(0.193654,0.008142,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193654,0.008142,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193654,0.008142,-0.010501,0.249779,0,0);}
.m41_c00008{transform:matrix(0.194348,0.005636,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194348,0.005636,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194348,0.005636,-0.007247,0.249895,0,0);}
.m76_c00008{transform:matrix(0.194363,0.008171,-0.010501,0.249779,0,0);-ms-transform:matrix(0.194363,0.008171,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.194363,0.008171,-0.010501,0.249779,0,0);}
.m7f_c00008{transform:matrix(0.194517,0.009930,-0.012746,0.249675,0,0);-ms-transform:matrix(0.194517,0.009930,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.194517,0.009930,-0.012746,0.249675,0,0);}
.m3f_c00008{transform:matrix(0.194566,0.007985,-0.010252,0.249790,0,0);-ms-transform:matrix(0.194566,0.007985,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.194566,0.007985,-0.010252,0.249790,0,0);}
.m60_c00008{transform:matrix(0.194711,0.009550,-0.012248,0.249700,0,0);-ms-transform:matrix(0.194711,0.009550,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.194711,0.009550,-0.012248,0.249700,0,0);}
.m1e_c00008{transform:matrix(0.194933,0.008195,-0.010501,0.249779,0,0);-ms-transform:matrix(0.194933,0.008195,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.194933,0.008195,-0.010501,0.249779,0,0);}
.m31_c00008{transform:matrix(0.195119,0.010753,-0.013757,0.249621,0,0);-ms-transform:matrix(0.195119,0.010753,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.195119,0.010753,-0.013757,0.249621,0,0);}
.m47_c00008{transform:matrix(0.195573,0.007831,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195573,0.007831,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195573,0.007831,-0.010002,0.249800,0,0);}
.m78_c00008{transform:matrix(0.195757,0.008230,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195757,0.008230,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195757,0.008230,-0.010501,0.249779,0,0);}
.m10_c00008{transform:matrix(0.195972,0.008239,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195972,0.008239,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195972,0.008239,-0.010501,0.249779,0,0);}
.m3c_c00008{transform:matrix(0.196470,0.008063,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196470,0.008063,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196470,0.008063,-0.010252,0.249790,0,0);}
.m8c_c00008{transform:matrix(0.196578,0.007477,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196578,0.007477,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196578,0.007477,-0.009503,0.249819,0,0);}
.m72_c00008{transform:matrix(0.196696,0.008270,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196696,0.008270,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196696,0.008270,-0.010501,0.249779,0,0);}
.m7c_c00008{transform:matrix(0.197018,0.010058,-0.012746,0.249675,0,0);-ms-transform:matrix(0.197018,0.010058,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.197018,0.010058,-0.012746,0.249675,0,0);}
.m51_c00008{transform:matrix(0.198321,0.007941,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198321,0.007941,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198321,0.007941,-0.010002,0.249800,0,0);}
.m5d_c00008{transform:matrix(0.198357,0.009729,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198357,0.009729,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198357,0.009729,-0.012248,0.249700,0,0);}
.m6e_c00008{transform:matrix(0.198699,0.008354,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198699,0.008354,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198699,0.008354,-0.010501,0.249779,0,0);}
.m4e_c00008{transform:matrix(0.198806,0.007960,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198806,0.007960,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198806,0.007960,-0.010002,0.249800,0,0);}
.m8e_c00008{transform:matrix(0.198826,0.007563,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198826,0.007563,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198826,0.007563,-0.009503,0.249819,0,0);}
.m5c_c00008{transform:matrix(0.199455,0.009783,-0.012248,0.249700,0,0);-ms-transform:matrix(0.199455,0.009783,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.199455,0.009783,-0.012248,0.249700,0,0);}
.m7d_c00008{transform:matrix(0.199900,0.010205,-0.012746,0.249675,0,0);-ms-transform:matrix(0.199900,0.010205,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.199900,0.010205,-0.012746,0.249675,0,0);}
.m79_c00008{transform:matrix(0.200003,0.008409,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200003,0.008409,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200003,0.008409,-0.010501,0.249779,0,0);}
.m18_c00008{transform:matrix(0.200268,0.008420,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200268,0.008420,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200268,0.008420,-0.010501,0.249779,0,0);}
.m89_c00008{transform:matrix(0.200983,0.009657,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200983,0.009657,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200983,0.009657,-0.011998,0.249712,0,0);}
.m4d_c00008{transform:matrix(0.202683,0.008115,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202683,0.008115,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202683,0.008115,-0.010002,0.249800,0,0);}
.m4a_c00008{transform:matrix(0.203782,0.008159,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203782,0.008159,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203782,0.008159,-0.010002,0.249800,0,0);}
.m1d_c00008{transform:matrix(0.203815,0.008569,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203815,0.008569,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203815,0.008569,-0.010501,0.249779,0,0);}
.m46_c00008{transform:matrix(0.204659,0.005935,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204659,0.005935,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204659,0.005935,-0.007247,0.249895,0,0);}
.m9_c00008{transform:matrix(0.205700,0.011119,-0.013494,0.249636,0,0);-ms-transform:matrix(0.205700,0.011119,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.205700,0.011119,-0.013494,0.249636,0,0);}
.m0_c00008{transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);}
.m77_c00008{transform:matrix(0.206278,0.008672,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206278,0.008672,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206278,0.008672,-0.010501,0.249779,0,0);}
.me_c00008{transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);}
.m59_c00008{transform:matrix(0.206557,0.010131,-0.012248,0.249700,0,0);-ms-transform:matrix(0.206557,0.010131,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.206557,0.010131,-0.012248,0.249700,0,0);}
.m5e_c00008{transform:matrix(0.207381,0.010172,-0.012248,0.249700,0,0);-ms-transform:matrix(0.207381,0.010172,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.207381,0.010172,-0.012248,0.249700,0,0);}
.m8f_c00008{transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);}
.m81_c00008{transform:matrix(0.209148,0.010677,-0.012746,0.249675,0,0);-ms-transform:matrix(0.209148,0.010677,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.209148,0.010677,-0.012746,0.249675,0,0);}
.m6d_c00008{transform:matrix(0.209170,0.008794,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209170,0.008794,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209170,0.008794,-0.010501,0.249779,0,0);}
.m91_c00008{transform:matrix(0.209798,0.007980,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209798,0.007980,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209798,0.007980,-0.009503,0.249819,0,0);}
.m3d_c00008{transform:matrix(0.209848,0.008612,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209848,0.008612,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209848,0.008612,-0.010252,0.249790,0,0);}
.m2a_c00008{transform:matrix(0.210902,0.006756,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210902,0.006756,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210902,0.006756,-0.008004,0.249872,0,0);}
.m1a_c00008{transform:matrix(0.210969,0.008870,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210969,0.008870,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210969,0.008870,-0.010501,0.249779,0,0);}
.m69_c00008{transform:matrix(0.211503,0.008892,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211503,0.008892,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211503,0.008892,-0.010501,0.249779,0,0);}
.m8d_c00008{transform:matrix(0.212991,0.008102,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212991,0.008102,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212991,0.008102,-0.009503,0.249819,0,0);}
.m17_c00008{transform:matrix(0.213971,0.008996,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213971,0.008996,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213971,0.008996,-0.010501,0.249779,0,0);}
.m1c_c00008{transform:matrix(0.214745,0.009028,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214745,0.009028,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214745,0.009028,-0.010501,0.249779,0,0);}
.m7e_c00008{transform:matrix(0.215235,0.010988,-0.012746,0.249675,0,0);-ms-transform:matrix(0.215235,0.010988,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.215235,0.010988,-0.012746,0.249675,0,0);}
.m21_c00008{transform:matrix(0.215300,0.009052,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215300,0.009052,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215300,0.009052,-0.010501,0.249779,0,0);}
.m1b_c00008{transform:matrix(0.215620,0.009065,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215620,0.009065,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215620,0.009065,-0.010501,0.249779,0,0);}
.m68_c00008{transform:matrix(0.217493,0.009144,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217493,0.009144,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217493,0.009144,-0.010501,0.249779,0,0);}
.m82_c00008{transform:matrix(0.218793,0.010513,-0.011998,0.249712,0,0);-ms-transform:matrix(0.218793,0.010513,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.218793,0.010513,-0.011998,0.249712,0,0);}
.m42_c00008{transform:matrix(0.220357,0.006390,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220357,0.006390,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220357,0.006390,-0.007247,0.249895,0,0);}
.m24_c00008{transform:matrix(0.222044,0.009335,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222044,0.009335,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222044,0.009335,-0.010501,0.249779,0,0);}
.m44_c00008{transform:matrix(0.225340,0.006535,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225340,0.006535,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225340,0.006535,-0.007247,0.249895,0,0);}
.ma_c00008{transform:matrix(0.225461,0.012187,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225461,0.012187,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225461,0.012187,-0.013494,0.249636,0,0);}
.m45_c00008{transform:matrix(0.225840,0.006549,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225840,0.006549,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225840,0.006549,-0.007247,0.249895,0,0);}
.m75_c00008{transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);}
.m15_c00008{transform:matrix(0.230471,0.009689,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230471,0.009689,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230471,0.009689,-0.010501,0.249779,0,0);}
.m8_c00008{transform:matrix(0.232570,0.012571,-0.013494,0.249636,0,0);-ms-transform:matrix(0.232570,0.012571,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.232570,0.012571,-0.013494,0.249636,0,0);}
.m2e_c00008{transform:matrix(0.235543,0.012981,-0.013757,0.249621,0,0);-ms-transform:matrix(0.235543,0.012981,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.235543,0.012981,-0.013757,0.249621,0,0);}
.m32_c00008{transform:matrix(0.236861,0.013053,-0.013757,0.249621,0,0);-ms-transform:matrix(0.236861,0.013053,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.236861,0.013053,-0.013757,0.249621,0,0);}
.m90_c00008{transform:matrix(0.237913,0.009050,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237913,0.009050,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237913,0.009050,-0.009503,0.249819,0,0);}
.m2f_c00008{transform:matrix(0.240320,0.013244,-0.013757,0.249621,0,0);-ms-transform:matrix(0.240320,0.013244,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.240320,0.013244,-0.013757,0.249621,0,0);}
.m26_c00008{transform:matrix(0.242051,0.010176,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242051,0.010176,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242051,0.010176,-0.010501,0.249779,0,0);}
.md_c00008{transform:matrix(0.242716,0.010204,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242716,0.010204,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242716,0.010204,-0.010501,0.249779,0,0);}
.m6a_c00008{transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);}
.m5a_c00008{transform:matrix(0.245775,0.012055,-0.012248,0.249700,0,0);-ms-transform:matrix(0.245775,0.012055,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.245775,0.012055,-0.012248,0.249700,0,0);}
.m3b_c00008{transform:matrix(0.248711,0.010207,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248711,0.010207,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248711,0.010207,-0.010252,0.249790,0,0);}
.m36_c00008{transform:matrix(0.249891,0.013772,-0.013757,0.249621,0,0);-ms-transform:matrix(0.249891,0.013772,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.249891,0.013772,-0.013757,0.249621,0,0);}
.m35_c00008{transform:matrix(0.250310,0.013795,-0.013757,0.249621,0,0);-ms-transform:matrix(0.250310,0.013795,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.250310,0.013795,-0.013757,0.249621,0,0);}
.m70_c00008{transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);}
.m43_c00008{transform:matrix(0.252069,0.007310,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252069,0.007310,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252069,0.007310,-0.007247,0.249895,0,0);}
.m12_c00008{transform:matrix(0.257433,0.010823,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257433,0.010823,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257433,0.010823,-0.010501,0.249779,0,0);}
.m3a_c00008{transform:matrix(0.259821,0.010663,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259821,0.010663,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259821,0.010663,-0.010252,0.249790,0,0);}
.m30_c00008{transform:matrix(0.262856,0.014486,-0.013757,0.249621,0,0);-ms-transform:matrix(0.262856,0.014486,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.262856,0.014486,-0.013757,0.249621,0,0);}
.m20_c00008{transform:matrix(0.264107,0.011104,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264107,0.011104,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264107,0.011104,-0.010501,0.249779,0,0);}
.m39_c00008{transform:matrix(0.264997,0.010876,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264997,0.010876,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264997,0.010876,-0.010252,0.249790,0,0);}
.m84_c00008{transform:matrix(0.274094,0.013170,-0.011998,0.249712,0,0);-ms-transform:matrix(0.274094,0.013170,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.274094,0.013170,-0.011998,0.249712,0,0);}
.m38_c00008{transform:matrix(0.275221,0.010469,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275221,0.010469,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275221,0.010469,-0.009503,0.249819,0,0);}
.m16_c00008{transform:matrix(0.298476,0.012549,-0.010501,0.249779,0,0);-ms-transform:matrix(0.298476,0.012549,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.298476,0.012549,-0.010501,0.249779,0,0);}
.m2c_c00008{transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);}
.m11_c00008{transform:matrix(0.309357,0.013006,-0.010501,0.249779,0,0);-ms-transform:matrix(0.309357,0.013006,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.309357,0.013006,-0.010501,0.249779,0,0);}
.m55_c00008{transform:matrix(0.316115,0.015505,-0.012248,0.249700,0,0);-ms-transform:matrix(0.316115,0.015505,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.316115,0.015505,-0.012248,0.249700,0,0);}
.m23_c00008{transform:matrix(0.325632,0.013690,-0.010501,0.249779,0,0);-ms-transform:matrix(0.325632,0.013690,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.325632,0.013690,-0.010501,0.249779,0,0);}
.m33_c00008{transform:matrix(0.326400,0.017988,-0.013757,0.249621,0,0);-ms-transform:matrix(0.326400,0.017988,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.326400,0.017988,-0.013757,0.249621,0,0);}
.m5b_c00008{transform:matrix(0.335032,0.016433,-0.012248,0.249700,0,0);-ms-transform:matrix(0.335032,0.016433,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.335032,0.016433,-0.012248,0.249700,0,0);}
.m2b_c00008{transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);}
.m13_c00008{transform:matrix(0.359178,0.015101,-0.010501,0.249779,0,0);-ms-transform:matrix(0.359178,0.015101,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.359178,0.015101,-0.010501,0.249779,0,0);}
.m19_c00008{transform:matrix(0.367695,0.015459,-0.010501,0.249779,0,0);-ms-transform:matrix(0.367695,0.015459,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.367695,0.015459,-0.010501,0.249779,0,0);}
.m83_c00008{transform:matrix(0.367856,0.017675,-0.011998,0.249712,0,0);-ms-transform:matrix(0.367856,0.017675,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.367856,0.017675,-0.011998,0.249712,0,0);}
.m1f_c00008{transform:matrix(0.474091,0.019932,-0.010501,0.249779,0,0);-ms-transform:matrix(0.474091,0.019932,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.474091,0.019932,-0.010501,0.249779,0,0);}
.mb_c00008{transform:matrix(0.676827,0.028455,-0.010501,0.249779,0,0);-ms-transform:matrix(0.676827,0.028455,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.676827,0.028455,-0.010501,0.249779,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fsb_c00008{font-size:23.093589px;}
.fs8_c00008{font-size:28.350000px;}
.fs15_c00008{font-size:53.535138px;}
.fs9_c00008{font-size:55.622975px;}
.fse_c00008{font-size:58.824720px;}
.fs7_c00008{font-size:61.919792px;}
.fs4_c00008{font-size:62.992597px;}
.fs3_c00008{font-size:64.042474px;}
.fs6_c00008{font-size:65.092350px;}
.fsd_c00008{font-size:65.127369px;}
.fsf_c00008{font-size:66.136802px;}
.fs5_c00008{font-size:66.142227px;}
.fs0_c00008{font-size:66.150860px;}
.fs13_c00008{font-size:66.160087px;}
.fs12_c00008{font-size:66.169908px;}
.fsa_c00008{font-size:67.167366px;}
.fsc_c00008{font-size:67.189314px;}
.fs11_c00008{font-size:67.192104px;}
.fs10_c00008{font-size:67.213506px;}
.fs14_c00008{font-size:74.561368px;}
.fs2_c00008{font-size:112.401501px;}
.fs1_c00008{font-size:194.339043px;}
.y0_c00008{bottom:0.000000px;}
.y92_c00008{bottom:28.220871px;}
.y91_c00008{bottom:29.807295px;}
.y90_c00008{bottom:32.668011px;}
.y8f_c00008{bottom:33.565191px;}
.y8e_c00008{bottom:34.308471px;}
.y8d_c00008{bottom:35.653500px;}
.y8c_c00008{bottom:36.369329px;}
.y8b_c00008{bottom:40.265712px;}
.y8a_c00008{bottom:45.318384px;}
.y89_c00008{bottom:47.317536px;}
.y88_c00008{bottom:48.731544px;}
.y87_c00008{bottom:49.817808px;}
.y86_c00008{bottom:51.884280px;}
.y85_c00008{bottom:52.816320px;}
.y84_c00008{bottom:56.016792px;}
.y83_c00008{bottom:57.267000px;}
.y82_c00008{bottom:60.809448px;}
.y81_c00008{bottom:61.928031px;}
.y80_c00008{bottom:64.914591px;}
.y7f_c00008{bottom:65.443206px;}
.y7e_c00008{bottom:69.475674px;}
.y7d_c00008{bottom:71.244813px;}
.y7c_c00008{bottom:72.095646px;}
.y7b_c00008{bottom:73.200000px;}
.y7a_c00008{bottom:78.901547px;}
.y79_c00008{bottom:79.380014px;}
.y78_c00008{bottom:81.208301px;}
.y77_c00008{bottom:82.326164px;}
.y76_c00008{bottom:83.954624px;}
.y75_c00008{bottom:85.081054px;}
.y74_c00008{bottom:86.263569px;}
.y73_c00008{bottom:88.853625px;}
.y72_c00008{bottom:90.467028px;}
.y71_c00008{bottom:96.811794px;}
.y70_c00008{bottom:97.473654px;}
.y6f_c00008{bottom:100.201271px;}
.y6e_c00008{bottom:100.757615px;}
.y6d_c00008{bottom:102.420171px;}
.y6c_c00008{bottom:104.020456px;}
.y6b_c00008{bottom:104.853253px;}
.y6a_c00008{bottom:107.482158px;}
.y69_c00008{bottom:112.739760px;}
.y68_c00008{bottom:116.400312px;}
.y67_c00008{bottom:117.310977px;}
.y66_c00008{bottom:118.320804px;}
.y65_c00008{bottom:121.545207px;}
.y64_c00008{bottom:122.236317px;}
.y63_c00008{bottom:125.023500px;}
.y62_c00008{bottom:129.680431px;}
.y61_c00008{bottom:134.145841px;}
.y60_c00008{bottom:137.445114px;}
.y5f_c00008{bottom:138.843846px;}
.y5e_c00008{bottom:142.040557px;}
.y5d_c00008{bottom:145.752477px;}
.y5c_c00008{bottom:146.363923px;}
.y5b_c00008{bottom:149.117233px;}
.y5a_c00008{bottom:150.275300px;}
.y59_c00008{bottom:151.263801px;}
.y58_c00008{bottom:155.951999px;}
.y57_c00008{bottom:156.812831px;}
.y56_c00008{bottom:159.165566px;}
.y55_c00008{bottom:159.586500px;}
.y54_c00008{bottom:164.523067px;}
.y53_c00008{bottom:167.442828px;}
.y52_c00008{bottom:170.084682px;}
.y51_c00008{bottom:173.287689px;}
.y50_c00008{bottom:174.276982px;}
.y4f_c00008{bottom:175.517364px;}
.y4e_c00008{bottom:182.658840px;}
.y4d_c00008{bottom:185.598840px;}
.y4c_c00008{bottom:187.209360px;}
.y4b_c00008{bottom:189.415140px;}
.y4a_c00008{bottom:190.042740px;}
.y49_c00008{bottom:190.857300px;}
.y48_c00008{bottom:192.255000px;}
.y47_c00008{bottom:198.714945px;}
.y46_c00008{bottom:201.766281px;}
.y45_c00008{bottom:205.350932px;}
.y44_c00008{bottom:205.875983px;}
.y43_c00008{bottom:209.537486px;}
.y42_c00008{bottom:215.794278px;}
.y41_c00008{bottom:217.630500px;}
.y6_c00008{bottom:219.478965px;}
.y5_c00008{bottom:220.474792px;}
.y4_c00008{bottom:222.188955px;}
.y3_c00008{bottom:224.060865px;}
.y2_c00008{bottom:225.084772px;}
.y1_c00008{bottom:226.815000px;}
.y40_c00008{bottom:232.845205px;}
.y3f_c00008{bottom:235.210865px;}
.y3e_c00008{bottom:237.794356px;}
.y3d_c00008{bottom:238.778787px;}
.y3c_c00008{bottom:240.117396px;}
.y3b_c00008{bottom:241.405575px;}
.y3a_c00008{bottom:243.309000px;}
.y39_c00008{bottom:265.119249px;}
.y38_c00008{bottom:269.191500px;}
.y2d_c00008{bottom:270.007500px;}
.y37_c00008{bottom:270.740299px;}
.y36_c00008{bottom:273.422220px;}
.y35_c00008{bottom:274.248546px;}
.y34_c00008{bottom:278.132826px;}
.y2c_c00008{bottom:282.653052px;}
.y2b_c00008{bottom:284.312460px;}
.y2a_c00008{bottom:285.397500px;}
.y33_c00008{bottom:288.211703px;}
.y32_c00008{bottom:289.401352px;}
.y31_c00008{bottom:291.588180px;}
.y30_c00008{bottom:292.673055px;}
.y2f_c00008{bottom:295.894680px;}
.y2e_c00008{bottom:296.209500px;}
.y29_c00008{bottom:300.210895px;}
.y28_c00008{bottom:300.629625px;}
.y27_c00008{bottom:302.920687px;}
.y26_c00008{bottom:304.514367px;}
.y25_c00008{bottom:307.461853px;}
.y24_c00008{bottom:308.591371px;}
.y23_c00008{bottom:309.568164px;}
.y22_c00008{bottom:310.504992px;}
.y21_c00008{bottom:313.232914px;}
.y20_c00008{bottom:317.054863px;}
.y1f_c00008{bottom:320.921268px;}
.y1e_c00008{bottom:323.590717px;}
.y1d_c00008{bottom:324.646260px;}
.y1c_c00008{bottom:325.747239px;}
.y1b_c00008{bottom:327.302983px;}
.y1a_c00008{bottom:328.887973px;}
.y19_c00008{bottom:380.481783px;}
.y18_c00008{bottom:382.499416px;}
.y17_c00008{bottom:383.379225px;}
.y16_c00008{bottom:383.870926px;}
.y15_c00008{bottom:386.053615px;}
.y14_c00008{bottom:387.289302px;}
.y12_c00008{bottom:387.373128px;}
.y11_c00008{bottom:388.006656px;}
.y10_c00008{bottom:389.696757px;}
.y13_c00008{bottom:391.070724px;}
.yf_c00008{bottom:391.308486px;}
.ye_c00008{bottom:393.043380px;}
.yd_c00008{bottom:398.539500px;}
.yc_c00008{bottom:437.848015px;}
.yb_c00008{bottom:441.609939px;}
.ya_c00008{bottom:448.109460px;}
.y9_c00008{bottom:450.379404px;}
.y8_c00008{bottom:499.981293px;}
.y7_c00008{bottom:510.102000px;}
.hd_c00008{height:23.093589px;}
.ha_c00008{height:28.350000px;}
.h17_c00008{height:53.535138px;}
.hb_c00008{height:55.622975px;}
.h10_c00008{height:58.824720px;}
.h9_c00008{height:61.919792px;}
.h6_c00008{height:62.992597px;}
.h5_c00008{height:64.042474px;}
.h8_c00008{height:65.092350px;}
.hf_c00008{height:65.127369px;}
.h11_c00008{height:66.136802px;}
.h7_c00008{height:66.142227px;}
.h2_c00008{height:66.150860px;}
.h15_c00008{height:66.160087px;}
.h14_c00008{height:66.169908px;}
.hc_c00008{height:67.167366px;}
.he_c00008{height:67.189314px;}
.h13_c00008{height:67.192104px;}
.h12_c00008{height:67.213506px;}
.h16_c00008{height:74.561368px;}
.h4_c00008{height:112.401501px;}
.h3_c00008{height:194.339043px;}
.h1_c00008{height:615.750000px;}
.h0_c00008{height:615.870000px;}
.w0_c00008{width:388.200000px;}
.w1_c00008{width:388.500000px;}
.x0_c00008{left:0.000000px;}
.x5e_c00008{left:27.523500px;}
.x56_c00008{left:29.649069px;}
.x1_c00008{left:30.723000px;}
.x4c_c00008{left:32.170376px;}
.x30_c00008{left:33.230805px;}
.x1a_c00008{left:34.624113px;}
.x7_c00008{left:37.017000px;}
.x5a_c00008{left:38.559000px;}
.x9_c00008{left:40.153442px;}
.x2b_c00008{left:41.494500px;}
.xd_c00008{left:43.557000px;}
.x36_c00008{left:44.961000px;}
.x13_c00008{left:46.248297px;}
.x5f_c00008{left:53.543454px;}
.x44_c00008{left:60.777693px;}
.x3f_c00008{left:65.579557px;}
.x2_c00008{left:69.134051px;}
.x1b_c00008{left:73.252586px;}
.x5b_c00008{left:76.857663px;}
.xa_c00008{left:82.925897px;}
.x45_c00008{left:84.323262px;}
.x40_c00008{left:85.923193px;}
.x47_c00008{left:88.875394px;}
.x21_c00008{left:90.858876px;}
.x3_c00008{left:91.864797px;}
.x62_c00008{left:94.250269px;}
.x4d_c00008{left:96.027291px;}
.x41_c00008{left:101.597503px;}
.x2c_c00008{left:105.664902px;}
.x1c_c00008{left:111.149727px;}
.x51_c00008{left:112.667684px;}
.x54_c00008{left:116.210682px;}
.x34_c00008{left:119.040000px;}
.x60_c00008{left:120.153277px;}
.x31_c00008{left:121.286659px;}
.x37_c00008{left:122.727156px;}
.x4e_c00008{left:123.962430px;}
.x2d_c00008{left:125.350452px;}
.x22_c00008{left:130.698470px;}
.x14_c00008{left:132.121648px;}
.x4_c00008{left:133.421199px;}
.x1d_c00008{left:137.980005px;}
.x32_c00008{left:140.013456px;}
.x63_c00008{left:141.651605px;}
.x23_c00008{left:154.208508px;}
.x38_c00008{left:155.343507px;}
.x42_c00008{left:156.686859px;}
.x15_c00008{left:160.192217px;}
.x1e_c00008{left:163.693838px;}
.x2e_c00008{left:165.031431px;}
.x5_c00008{left:171.475606px;}
.xe_c00008{left:174.286140px;}
.x39_c00008{left:179.329997px;}
.x61_c00008{left:182.559808px;}
.x64_c00008{left:184.778435px;}
.x2f_c00008{left:186.618171px;}
.x57_c00008{left:188.300380px;}
.x4f_c00008{left:189.879710px;}
.x6_c00008{left:193.582977px;}
.x43_c00008{left:196.909596px;}
.x33_c00008{left:200.829948px;}
.x48_c00008{left:202.007649px;}
.xb_c00008{left:205.446902px;}
.x16_c00008{left:209.752444px;}
.x55_c00008{left:211.551692px;}
.x52_c00008{left:213.381868px;}
.xf_c00008{left:215.551833px;}
.x3d_c00008{left:218.482485px;}
.x17_c00008{left:220.912328px;}
.x49_c00008{left:222.160976px;}
.x8_c00008{left:224.250080px;}
.x35_c00008{left:226.097336px;}
.x1f_c00008{left:228.723954px;}
.x53_c00008{left:235.042686px;}
.x27_c00008{left:237.097500px;}
.x18_c00008{left:240.875142px;}
.x3a_c00008{left:242.278985px;}
.x4a_c00008{left:245.771342px;}
.x24_c00008{left:248.726558px;}
.x10_c00008{left:253.887958px;}
.x58_c00008{left:255.194694px;}
.x5c_c00008{left:259.356981px;}
.x28_c00008{left:270.971092px;}
.xc_c00008{left:276.349239px;}
.x29_c00008{left:277.830000px;}
.x50_c00008{left:279.112547px;}
.x5d_c00008{left:281.268048px;}
.x19_c00008{left:286.687936px;}
.x3c_c00008{left:288.154500px;}
.x3e_c00008{left:291.139124px;}
.x46_c00008{left:292.761358px;}
.x11_c00008{left:294.088218px;}
.x25_c00008{left:296.401290px;}
.x3b_c00008{left:299.920286px;}
.x2a_c00008{left:301.320000px;}
.x26_c00008{left:305.111364px;}
.x12_c00008{left:309.157134px;}
.x59_c00008{left:311.419309px;}
.x4b_c00008{left:314.371173px;}
.x20_c00008{left:322.938618px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fsb_c00008{font-size:20.527635pt;}
.fs8_c00008{font-size:25.200000pt;}
.fs15_c00008{font-size:47.586789pt;}
.fs9_c00008{font-size:49.442645pt;}
.fse_c00008{font-size:52.288640pt;}
.fs7_c00008{font-size:55.039815pt;}
.fs4_c00008{font-size:55.993420pt;}
.fs3_c00008{font-size:56.926643pt;}
.fs6_c00008{font-size:57.859867pt;}
.fsd_c00008{font-size:57.890994pt;}
.fsf_c00008{font-size:58.788268pt;}
.fs5_c00008{font-size:58.793091pt;}
.fs0_c00008{font-size:58.800764pt;}
.fs13_c00008{font-size:58.808966pt;}
.fs12_c00008{font-size:58.817696pt;}
.fsa_c00008{font-size:59.704326pt;}
.fsc_c00008{font-size:59.723835pt;}
.fs11_c00008{font-size:59.726314pt;}
.fs10_c00008{font-size:59.745339pt;}
.fs14_c00008{font-size:66.276772pt;}
.fs2_c00008{font-size:99.912445pt;}
.fs1_c00008{font-size:172.745816pt;}
.y0_c00008{bottom:0.000000pt;}
.y92_c00008{bottom:25.085219pt;}
.y91_c00008{bottom:26.495373pt;}
.y90_c00008{bottom:29.038232pt;}
.y8f_c00008{bottom:29.835725pt;}
.y8e_c00008{bottom:30.496419pt;}
.y8d_c00008{bottom:31.692000pt;}
.y8c_c00008{bottom:32.328292pt;}
.y8b_c00008{bottom:35.791744pt;}
.y8a_c00008{bottom:40.283008pt;}
.y89_c00008{bottom:42.060032pt;}
.y88_c00008{bottom:43.316928pt;}
.y87_c00008{bottom:44.282496pt;}
.y86_c00008{bottom:46.119360pt;}
.y85_c00008{bottom:46.947840pt;}
.y84_c00008{bottom:49.792704pt;}
.y83_c00008{bottom:50.904000pt;}
.y82_c00008{bottom:54.052843pt;}
.y81_c00008{bottom:55.047139pt;}
.y80_c00008{bottom:57.701859pt;}
.y7f_c00008{bottom:58.171739pt;}
.y7e_c00008{bottom:61.756155pt;}
.y7d_c00008{bottom:63.328723pt;}
.y7c_c00008{bottom:64.085019pt;}
.y7b_c00008{bottom:65.066667pt;}
.y7a_c00008{bottom:70.134708pt;}
.y79_c00008{bottom:70.560012pt;}
.y78_c00008{bottom:72.185156pt;}
.y77_c00008{bottom:73.178812pt;}
.y76_c00008{bottom:74.626332pt;}
.y75_c00008{bottom:75.627604pt;}
.y74_c00008{bottom:76.678728pt;}
.y73_c00008{bottom:78.981000pt;}
.y72_c00008{bottom:80.415136pt;}
.y71_c00008{bottom:86.054928pt;}
.y70_c00008{bottom:86.643248pt;}
.y6f_c00008{bottom:89.067796pt;}
.y6e_c00008{bottom:89.562324pt;}
.y6d_c00008{bottom:91.040152pt;}
.y6c_c00008{bottom:92.462628pt;}
.y6b_c00008{bottom:93.202892pt;}
.y6a_c00008{bottom:95.539696pt;}
.y69_c00008{bottom:100.213120pt;}
.y68_c00008{bottom:103.466944pt;}
.y67_c00008{bottom:104.276424pt;}
.y66_c00008{bottom:105.174048pt;}
.y65_c00008{bottom:108.040184pt;}
.y64_c00008{bottom:108.654504pt;}
.y63_c00008{bottom:111.132000pt;}
.y62_c00008{bottom:115.271495pt;}
.y61_c00008{bottom:119.240748pt;}
.y60_c00008{bottom:122.173435pt;}
.y5f_c00008{bottom:123.416752pt;}
.y5e_c00008{bottom:126.258273pt;}
.y5d_c00008{bottom:129.557757pt;}
.y5c_c00008{bottom:130.101265pt;}
.y5b_c00008{bottom:132.548652pt;}
.y5a_c00008{bottom:133.578044pt;}
.y59_c00008{bottom:134.456712pt;}
.y58_c00008{bottom:138.623999pt;}
.y57_c00008{bottom:139.389183pt;}
.y56_c00008{bottom:141.480503pt;}
.y55_c00008{bottom:141.854667pt;}
.y54_c00008{bottom:146.242727pt;}
.y53_c00008{bottom:148.838069pt;}
.y52_c00008{bottom:151.186384pt;}
.y51_c00008{bottom:154.033501pt;}
.y50_c00008{bottom:154.912873pt;}
.y4f_c00008{bottom:156.015435pt;}
.y4e_c00008{bottom:162.363413pt;}
.y4d_c00008{bottom:164.976747pt;}
.y4c_c00008{bottom:166.408320pt;}
.y4b_c00008{bottom:168.369013pt;}
.y4a_c00008{bottom:168.926880pt;}
.y49_c00008{bottom:169.650933pt;}
.y48_c00008{bottom:170.893333pt;}
.y47_c00008{bottom:176.635507pt;}
.y46_c00008{bottom:179.347805pt;}
.y45_c00008{bottom:182.534161pt;}
.y44_c00008{bottom:183.000873pt;}
.y43_c00008{bottom:186.255543pt;}
.y42_c00008{bottom:191.817136pt;}
.y41_c00008{bottom:193.449333pt;}
.y6_c00008{bottom:195.092413pt;}
.y5_c00008{bottom:195.977593pt;}
.y4_c00008{bottom:197.501293pt;}
.y3_c00008{bottom:199.165213pt;}
.y2_c00008{bottom:200.075353pt;}
.y1_c00008{bottom:201.613333pt;}
.y40_c00008{bottom:206.973516pt;}
.y3f_c00008{bottom:209.076324pt;}
.y3e_c00008{bottom:211.372761pt;}
.y3d_c00008{bottom:212.247811pt;}
.y3c_c00008{bottom:213.437685pt;}
.y3b_c00008{bottom:214.582733pt;}
.y3a_c00008{bottom:216.274667pt;}
.y39_c00008{bottom:235.661555pt;}
.y38_c00008{bottom:239.281333pt;}
.y2d_c00008{bottom:240.006667pt;}
.y37_c00008{bottom:240.658044pt;}
.y36_c00008{bottom:243.041973pt;}
.y35_c00008{bottom:243.776485pt;}
.y34_c00008{bottom:247.229179pt;}
.y2c_c00008{bottom:251.247157pt;}
.y2b_c00008{bottom:252.722187pt;}
.y2a_c00008{bottom:253.686667pt;}
.y33_c00008{bottom:256.188180pt;}
.y32_c00008{bottom:257.245647pt;}
.y31_c00008{bottom:259.189493pt;}
.y30_c00008{bottom:260.153827pt;}
.y2f_c00008{bottom:263.017493pt;}
.y2e_c00008{bottom:263.297333pt;}
.y29_c00008{bottom:266.854129pt;}
.y28_c00008{bottom:267.226333pt;}
.y27_c00008{bottom:269.262833pt;}
.y26_c00008{bottom:270.679437pt;}
.y25_c00008{bottom:273.299425pt;}
.y24_c00008{bottom:274.303441pt;}
.y23_c00008{bottom:275.171701pt;}
.y22_c00008{bottom:276.004437pt;}
.y21_c00008{bottom:278.429257pt;}
.y20_c00008{bottom:281.826545pt;}
.y1f_c00008{bottom:285.263349pt;}
.y1e_c00008{bottom:287.636193pt;}
.y1d_c00008{bottom:288.574453pt;}
.y1c_c00008{bottom:289.553101pt;}
.y1b_c00008{bottom:290.935985pt;}
.y1a_c00008{bottom:292.344865pt;}
.y19_c00008{bottom:338.206029pt;}
.y18_c00008{bottom:339.999481pt;}
.y17_c00008{bottom:340.781533pt;}
.y16_c00008{bottom:341.218601pt;}
.y15_c00008{bottom:343.158769pt;}
.y14_c00008{bottom:344.257157pt;}
.y12_c00008{bottom:344.331669pt;}
.y11_c00008{bottom:344.894805pt;}
.y10_c00008{bottom:346.397117pt;}
.y13_c00008{bottom:347.618421pt;}
.yf_c00008{bottom:347.829765pt;}
.ye_c00008{bottom:349.371893pt;}
.yd_c00008{bottom:354.257333pt;}
.yc_c00008{bottom:389.198236pt;}
.yb_c00008{bottom:392.542168pt;}
.ya_c00008{bottom:398.319520pt;}
.y9_c00008{bottom:400.337248pt;}
.y8_c00008{bottom:444.427816pt;}
.y7_c00008{bottom:453.424000pt;}
.hd_c00008{height:20.527635pt;}
.ha_c00008{height:25.200000pt;}
.h17_c00008{height:47.586789pt;}
.hb_c00008{height:49.442645pt;}
.h10_c00008{height:52.288640pt;}
.h9_c00008{height:55.039815pt;}
.h6_c00008{height:55.993420pt;}
.h5_c00008{height:56.926643pt;}
.h8_c00008{height:57.859867pt;}
.hf_c00008{height:57.890994pt;}
.h11_c00008{height:58.788268pt;}
.h7_c00008{height:58.793091pt;}
.h2_c00008{height:58.800764pt;}
.h15_c00008{height:58.808966pt;}
.h14_c00008{height:58.817696pt;}
.hc_c00008{height:59.704326pt;}
.he_c00008{height:59.723835pt;}
.h13_c00008{height:59.726314pt;}
.h12_c00008{height:59.745339pt;}
.h16_c00008{height:66.276772pt;}
.h4_c00008{height:99.912445pt;}
.h3_c00008{height:172.745816pt;}
.h1_c00008{height:547.333333pt;}
.h0_c00008{height:547.440000pt;}
.w0_c00008{width:345.066667pt;}
.w1_c00008{width:345.333333pt;}
.x0_c00008{left:0.000000pt;}
.x5e_c00008{left:24.465333pt;}
.x56_c00008{left:26.354728pt;}
.x1_c00008{left:27.309333pt;}
.x4c_c00008{left:28.595889pt;}
.x30_c00008{left:29.538493pt;}
.x1a_c00008{left:30.776989pt;}
.x7_c00008{left:32.904000pt;}
.x5a_c00008{left:34.274667pt;}
.x9_c00008{left:35.691948pt;}
.x2b_c00008{left:36.884000pt;}
.xd_c00008{left:38.717333pt;}
.x36_c00008{left:39.965333pt;}
.x13_c00008{left:41.109597pt;}
.x5f_c00008{left:47.594181pt;}
.x44_c00008{left:54.024616pt;}
.x3f_c00008{left:58.292940pt;}
.x2_c00008{left:61.452489pt;}
.x1b_c00008{left:65.113409pt;}
.x5b_c00008{left:68.317923pt;}
.xa_c00008{left:73.711908pt;}
.x45_c00008{left:74.954011pt;}
.x40_c00008{left:76.376172pt;}
.x47_c00008{left:79.000351pt;}
.x21_c00008{left:80.763445pt;}
.x3_c00008{left:81.657597pt;}
.x62_c00008{left:83.778017pt;}
.x4d_c00008{left:85.357592pt;}
.x41_c00008{left:90.308892pt;}
.x2c_c00008{left:93.924357pt;}
.x1c_c00008{left:98.799757pt;}
.x51_c00008{left:100.149052pt;}
.x54_c00008{left:103.298384pt;}
.x34_c00008{left:105.813333pt;}
.x60_c00008{left:106.802913pt;}
.x31_c00008{left:107.810364pt;}
.x37_c00008{left:109.090805pt;}
.x4e_c00008{left:110.188827pt;}
.x2d_c00008{left:111.422624pt;}
.x22_c00008{left:116.176417pt;}
.x14_c00008{left:117.441465pt;}
.x4_c00008{left:118.596621pt;}
.x1d_c00008{left:122.648893pt;}
.x32_c00008{left:124.456405pt;}
.x63_c00008{left:125.912537pt;}
.x23_c00008{left:137.074229pt;}
.x38_c00008{left:138.083117pt;}
.x42_c00008{left:139.277208pt;}
.x15_c00008{left:142.393081pt;}
.x1e_c00008{left:145.505633pt;}
.x2e_c00008{left:146.694605pt;}
.x5_c00008{left:152.422761pt;}
.xe_c00008{left:154.921013pt;}
.x39_c00008{left:159.404441pt;}
.x61_c00008{left:162.275385pt;}
.x64_c00008{left:164.247497pt;}
.x2f_c00008{left:165.882819pt;}
.x57_c00008{left:167.378116pt;}
.x4f_c00008{left:168.781964pt;}
.x6_c00008{left:172.073757pt;}
.x43_c00008{left:175.030752pt;}
.x33_c00008{left:178.515509pt;}
.x48_c00008{left:179.562355pt;}
.xb_c00008{left:182.619468pt;}
.x16_c00008{left:186.446617pt;}
.x55_c00008{left:188.045948pt;}
.x52_c00008{left:189.672772pt;}
.xf_c00008{left:191.601629pt;}
.x3d_c00008{left:194.206653pt;}
.x17_c00008{left:196.366513pt;}
.x49_c00008{left:197.476423pt;}
.x8_c00008{left:199.333404pt;}
.x35_c00008{left:200.975409pt;}
.x1f_c00008{left:203.310181pt;}
.x53_c00008{left:208.926832pt;}
.x27_c00008{left:210.753333pt;}
.x18_c00008{left:214.111237pt;}
.x3a_c00008{left:215.359097pt;}
.x4a_c00008{left:218.463415pt;}
.x24_c00008{left:221.090273pt;}
.x10_c00008{left:225.678185pt;}
.x58_c00008{left:226.839728pt;}
.x5c_c00008{left:230.539539pt;}
.x28_c00008{left:240.863193pt;}
.xc_c00008{left:245.643768pt;}
.x29_c00008{left:246.960000pt;}
.x50_c00008{left:248.100041pt;}
.x5d_c00008{left:250.016043pt;}
.x19_c00008{left:254.833721pt;}
.x3c_c00008{left:256.137333pt;}
.x3e_c00008{left:258.790332pt;}
.x46_c00008{left:260.232319pt;}
.x11_c00008{left:261.411749pt;}
.x25_c00008{left:263.467813pt;}
.x3b_c00008{left:266.595809pt;}
.x2a_c00008{left:267.840000pt;}
.x26_c00008{left:271.210101pt;}
.x12_c00008{left:274.806341pt;}
.x59_c00008{left:276.817164pt;}
.x4b_c00008{left:279.441043pt;}
.x20_c00008{left:287.056549pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00009 {
    display:none;
  }
  .loading-indicator_c00009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00009 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00009 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00009" -> "#page-container .classname_c00009")
 */
.pf_c00009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00009 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00009 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00009 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00009 {overflow:visible;}
  }
}
.c_c00009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00009 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00009:after { /* webkit #35443 */
  content: '';
}
.t_c00009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00009 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00009 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00009 { /* info for Javascript */
  display:none;
}
.l_c00009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00009:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00009 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00009.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00009{transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);}
.mdb_c00009{transform:matrix(0.136863,0.001779,-0.003250,0.249979,0,0);-ms-transform:matrix(0.136863,0.001779,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.136863,0.001779,-0.003250,0.249979,0,0);}
.m28_c00009{transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);}
.md9_c00009{transform:matrix(0.151982,0.001976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151982,0.001976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151982,0.001976,-0.003250,0.249979,0,0);}
.m68_c00009{transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);}
.m27_c00009{transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);}
.m69_c00009{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.md8_c00009{transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);}
.m6b_c00009{transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);}
.m2a_c00009{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.md1_c00009{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m45_c00009{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00009{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.m6e_c00009{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.mb6_c00009{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00009{transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00009{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00009{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);}
.m2e_c00009{transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);}
.m6c_c00009{transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m58_c00009{transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);}
.m3d_c00009{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m9c_c00009{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m23_c00009{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m53_c00009{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.176210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176210,0.000000,0.000000,0.250000,0,0);}
.m46_c00009{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mdd_c00009{transform:matrix(0.177345,0.002305,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177345,0.002305,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177345,0.002305,-0.003250,0.249979,0,0);}
.m2c_c00009{transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);}
.ma3_c00009{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m3c_c00009{transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);}
.m9b_c00009{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m6d_c00009{transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);}
.m5b_c00009{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m5a_c00009{transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00009{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m82_c00009{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.m4b_c00009{transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);}
.m26_c00009{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.mcc_c00009{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.mb3_c00009{transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);}
.md4_c00009{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.mde_c00009{transform:matrix(0.181950,0.002365,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181950,0.002365,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181950,0.002365,-0.003250,0.249979,0,0);}
.m29_c00009{transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);}
.m4f_c00009{transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);}
.m85_c00009{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m55_c00009{transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.182510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182510,0.000000,0.000000,0.250000,0,0);}
.m5c_c00009{transform:matrix(0.182580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182580,0.000000,0.000000,0.250000,0,0);}
.mbe_c00009{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m42_c00009{transform:matrix(0.183605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183605,0.000000,0.000000,0.250000,0,0);}
.m38_c00009{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00009{transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);}
.m5e_c00009{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.m7d_c00009{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.mda_c00009{transform:matrix(0.185794,0.002415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185794,0.002415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185794,0.002415,-0.003250,0.249979,0,0);}
.m65_c00009{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m73_c00009{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.m9f_c00009{transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);}
.m81_c00009{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);}
.mb5_c00009{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.mb1_c00009{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m88_c00009{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m44_c00009{transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);}
.m6f_c00009{transform:matrix(0.189870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189870,0.000000,0.000000,0.250000,0,0);}
.m66_c00009{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.mc4_c00009{transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);}
.m74_c00009{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.mc9_c00009{transform:matrix(0.191220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191220,0.000000,0.000000,0.250000,0,0);}
.m62_c00009{transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);}
.mc2_c00009{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.mc8_c00009{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.mdc_c00009{transform:matrix(0.192124,0.002498,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192124,0.002498,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192124,0.002498,-0.003250,0.249979,0,0);}
.mb8_c00009{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m64_c00009{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.m2d_c00009{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.m8b_c00009{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m32_c00009{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.m9e_c00009{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m52_c00009{transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);}
.m94_c00009{transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);}
.mc5_c00009{transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m51_c00009{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m92_c00009{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.mc7_c00009{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.m95_c00009{transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);}
.m3e_c00009{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.mb2_c00009{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.mac_c00009{transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);}
.ma7_c00009{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.maf_c00009{transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m47_c00009{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m91_c00009{transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);}
.m22_c00009{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.m71_c00009{transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);}
.m30_c00009{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.m1c_c00009{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m1a_c00009{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m49_c00009{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00009{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m83_c00009{transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);}
.mcb_c00009{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m5f_c00009{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.mc1_c00009{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00009{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m93_c00009{transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);}
.mab_c00009{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.m33_c00009{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.mba_c00009{transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);}
.mad_c00009{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m4e_c00009{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.maa_c00009{transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00009{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.m75_c00009{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m21_c00009{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m7b_c00009{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00009{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m48_c00009{transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);}
.m72_c00009{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.m59_c00009{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.m43_c00009{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.mb7_c00009{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m57_c00009{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00009{transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);}
.m7c_c00009{transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);}
.m89_c00009{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m87_c00009{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.mb0_c00009{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m36_c00009{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m84_c00009{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.mbb_c00009{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.mdf_c00009{transform:matrix(0.211847,0.002754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211847,0.002754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211847,0.002754,-0.003250,0.249979,0,0);}
.mce_c00009{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m86_c00009{transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);}
.mc3_c00009{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);}
.m76_c00009{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.m8d_c00009{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.md5_c00009{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m16_c00009{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.m20_c00009{transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);}
.m54_c00009{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m98_c00009{transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);}
.m67_c00009{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m8c_c00009{transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);}
.m80_c00009{transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);}
.m70_c00009{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m41_c00009{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.m7f_c00009{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.ma4_c00009{transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);}
.md6_c00009{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.mcd_c00009{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.m63_c00009{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00009{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.md2_c00009{transform:matrix(0.218945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218945,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);}
.m97_c00009{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.m99_c00009{transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);}
.ma1_c00009{transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);}
.m56_c00009{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.m60_c00009{transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);}
.m78_c00009{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mbd_c00009{transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);}
.m8f_c00009{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.mae_c00009{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m5d_c00009{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.ma6_c00009{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.mc0_c00009{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m9a_c00009{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m7a_c00009{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.ma2_c00009{transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);}
.mcf_c00009{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m40_c00009{transform:matrix(0.230890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230890,0.000000,0.000000,0.250000,0,0);}
.mbf_c00009{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00009{transform:matrix(0.232565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232565,0.000000,0.000000,0.250000,0,0);}
.mc6_c00009{transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);}
.m1b_c00009{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.md3_c00009{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m96_c00009{transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);}
.m50_c00009{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m90_c00009{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.mbc_c00009{transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);}
.m7e_c00009{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.m61_c00009{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mca_c00009{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.md7_c00009{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00009{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m8a_c00009{transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);}
.m31_c00009{transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);}
.m1e_c00009{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.ma9_c00009{transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);}
.m77_c00009{transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);}
.md0_c00009{transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);}
.m79_c00009{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:transparent;}
.fsd_c00009{font-size:55.650000px;}
.fsc_c00009{font-size:57.750000px;}
.fsb_c00009{font-size:58.800000px;}
.fs8_c00009{font-size:59.850000px;}
.fsa_c00009{font-size:60.900000px;}
.fs5_c00009{font-size:61.950000px;}
.fs4_c00009{font-size:63.000000px;}
.fs2_c00009{font-size:65.100000px;}
.fse_c00009{font-size:66.150000px;}
.fs9_c00009{font-size:68.250000px;}
.fs7_c00009{font-size:69.300000px;}
.fsf_c00009{font-size:69.305856px;}
.fs6_c00009{font-size:70.350000px;}
.fs3_c00009{font-size:72.450000px;}
.fs1_c00009{font-size:73.500000px;}
.fs0_c00009{font-size:76.650000px;}
.y0_c00009{bottom:0.000000px;}
.y35_c00009{bottom:32.112763px;}
.y34_c00009{bottom:33.008613px;}
.y33_c00009{bottom:33.601471px;}
.y32_c00009{bottom:34.690117px;}
.y31_c00009{bottom:34.920978px;}
.y30_c00009{bottom:35.304309px;}
.y2f_c00009{bottom:35.686099px;}
.y2e_c00009{bottom:35.911500px;}
.y2d_c00009{bottom:51.301500px;}
.y2c_c00009{bottom:67.029000px;}
.y2b_c00009{bottom:67.135500px;}
.y2a_c00009{bottom:67.959000px;}
.y29_c00009{bottom:68.098500px;}
.y28_c00009{bottom:68.706000px;}
.y27_c00009{bottom:69.316500px;}
.y26_c00009{bottom:69.546000px;}
.y25_c00009{bottom:69.931500px;}
.y24_c00009{bottom:84.156000px;}
.y23_c00009{bottom:84.699000px;}
.y22_c00009{bottom:84.895500px;}
.y21_c00009{bottom:85.804500px;}
.y20_c00009{bottom:86.389500px;}
.y1f_c00009{bottom:86.935500px;}
.y1e_c00009{bottom:87.211500px;}
.y1d_c00009{bottom:102.310500px;}
.y1c_c00009{bottom:119.241000px;}
.y1b_c00009{bottom:137.488500px;}
.y1a_c00009{bottom:153.660000px;}
.y19_c00009{bottom:170.283000px;}
.y18_c00009{bottom:187.710000px;}
.y17_c00009{bottom:204.330000px;}
.y16_c00009{bottom:220.861500px;}
.y15_c00009{bottom:238.341000px;}
.y14_c00009{bottom:255.001500px;}
.y13_c00009{bottom:271.981500px;}
.y12_c00009{bottom:289.111500px;}
.y11_c00009{bottom:305.611500px;}
.y10_c00009{bottom:323.371500px;}
.yf_c00009{bottom:340.410000px;}
.ye_c00009{bottom:356.763000px;}
.yd_c00009{bottom:374.014500px;}
.yc_c00009{bottom:391.053000px;}
.yb_c00009{bottom:407.643000px;}
.ya_c00009{bottom:424.770000px;}
.y9_c00009{bottom:441.780000px;}
.y8_c00009{bottom:459.060000px;}
.y7_c00009{bottom:475.803000px;}
.y6_c00009{bottom:492.543000px;}
.y5_c00009{bottom:510.240000px;}
.y4_c00009{bottom:526.831500px;}
.y3_c00009{bottom:543.721500px;}
.y2_c00009{bottom:560.851500px;}
.y1_c00009{bottom:575.370000px;}
.hf_c00009{height:55.650000px;}
.he_c00009{height:57.750000px;}
.hd_c00009{height:58.800000px;}
.ha_c00009{height:59.850000px;}
.hc_c00009{height:60.900000px;}
.h7_c00009{height:61.950000px;}
.h6_c00009{height:63.000000px;}
.h4_c00009{height:65.100000px;}
.h10_c00009{height:66.150000px;}
.hb_c00009{height:68.250000px;}
.h9_c00009{height:69.300000px;}
.h11_c00009{height:69.305856px;}
.h8_c00009{height:70.350000px;}
.h5_c00009{height:72.450000px;}
.h3_c00009{height:73.500000px;}
.h2_c00009{height:76.650000px;}
.h1_c00009{height:615.750000px;}
.h0_c00009{height:615.870000px;}
.w0_c00009{width:383.100000px;}
.w1_c00009{width:383.250000px;}
.x0_c00009{left:0.000000px;}
.x57_c00009{left:44.280000px;}
.x68_c00009{left:45.630000px;}
.x2_c00009{left:48.600000px;}
.x35_c00009{left:49.950000px;}
.x72_c00009{left:66.321000px;}
.x1f_c00009{left:70.200000px;}
.x6d_c00009{left:73.318500px;}
.xe_c00009{left:74.790000px;}
.x36_c00009{left:78.840000px;}
.x3_c00009{left:80.730000px;}
.x8_c00009{left:82.350000px;}
.x59_c00009{left:84.240000px;}
.x44_c00009{left:86.940000px;}
.x14_c00009{left:89.100000px;}
.x38_c00009{left:92.340000px;}
.x4_c00009{left:94.230000px;}
.x31_c00009{left:95.310000px;}
.x5d_c00009{left:97.470000px;}
.x69_c00009{left:99.360000px;}
.x39_c00009{left:106.110000px;}
.x19_c00009{left:108.000000px;}
.x15_c00009{left:109.350000px;}
.x9_c00009{left:112.050000px;}
.x45_c00009{left:114.750000px;}
.x5e_c00009{left:117.720000px;}
.x27_c00009{left:118.800000px;}
.x4f_c00009{left:120.690000px;}
.x20_c00009{left:122.040000px;}
.x2d_c00009{left:124.200000px;}
.x24_c00009{left:126.360000px;}
.x3b_c00009{left:127.440000px;}
.xf_c00009{left:130.410000px;}
.xa_c00009{left:132.030000px;}
.x28_c00009{left:134.460000px;}
.x4a_c00009{left:136.890000px;}
.x63_c00009{left:138.240000px;}
.x71_c00009{left:142.560000px;}
.x54_c00009{left:143.910000px;}
.x1a_c00009{left:145.800000px;}
.x10_c00009{left:147.150000px;}
.x3c_c00009{left:149.310000px;}
.x46_c00009{left:151.200000px;}
.x21_c00009{left:152.280000px;}
.x5a_c00009{left:155.790000px;}
.x2e_c00009{left:157.140000px;}
.x6a_c00009{left:158.760000px;}
.x6f_c00009{left:169.156500px;}
.x5f_c00009{left:170.370000px;}
.x3a_c00009{left:172.260000px;}
.x22_c00009{left:175.230000px;}
.x5_c00009{left:177.120000px;}
.x40_c00009{left:180.090000px;}
.x47_c00009{left:185.220000px;}
.x29_c00009{left:186.570000px;}
.x60_c00009{left:190.890000px;}
.x64_c00009{left:192.780000px;}
.x11_c00009{left:193.860000px;}
.x1_c00009{left:195.750000px;}
.x2f_c00009{left:196.830000px;}
.x50_c00009{left:198.990000px;}
.x4b_c00009{left:200.880000px;}
.x1b_c00009{left:202.770000px;}
.x5b_c00009{left:206.550000px;}
.x58_c00009{left:207.630000px;}
.x32_c00009{left:212.220000px;}
.x65_c00009{left:217.620000px;}
.x25_c00009{left:218.970000px;}
.x6_c00009{left:220.590000px;}
.x1c_c00009{left:222.480000px;}
.x73_c00009{left:226.677000px;}
.x55_c00009{left:229.230000px;}
.xb_c00009{left:230.310000px;}
.x41_c00009{left:240.030000px;}
.x70_c00009{left:243.960000px;}
.x23_c00009{left:245.970000px;}
.x4c_c00009{left:249.210000px;}
.x51_c00009{left:250.290000px;}
.x6b_c00009{left:251.370000px;}
.xc_c00009{left:253.530000px;}
.x16_c00009{left:256.230000px;}
.x3d_c00009{left:258.390000px;}
.x12_c00009{left:259.470000px;}
.x61_c00009{left:261.360000px;}
.x1d_c00009{left:269.190000px;}
.x52_c00009{left:270.270000px;}
.x5c_c00009{left:271.890000px;}
.x2a_c00009{left:273.240000px;}
.xd_c00009{left:274.860000px;}
.x7_c00009{left:276.210000px;}
.x56_c00009{left:280.800000px;}
.x66_c00009{left:283.230000px;}
.x1e_c00009{left:284.310000px;}
.x26_c00009{left:287.820000px;}
.x62_c00009{left:289.710000px;}
.x13_c00009{left:292.410000px;}
.x48_c00009{left:294.030000px;}
.x33_c00009{left:295.650000px;}
.x17_c00009{left:300.240000px;}
.x6c_c00009{left:302.400000px;}
.x42_c00009{left:304.290000px;}
.x67_c00009{left:307.260000px;}
.x4d_c00009{left:308.610000px;}
.x37_c00009{left:313.200000px;}
.x18_c00009{left:314.280000px;}
.x2b_c00009{left:316.440000px;}
.x3e_c00009{left:318.330000px;}
.x43_c00009{left:321.840000px;}
.x30_c00009{left:323.190000px;}
.x6e_c00009{left:326.038500px;}
.x3f_c00009{left:329.940000px;}
.x53_c00009{left:331.290000px;}
.x34_c00009{left:333.450000px;}
.x49_c00009{left:334.530000px;}
.x2c_c00009{left:336.420000px;}
.x4e_c00009{left:338.040000px;}
.x74_c00009{left:341.193000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fsd_c00009{font-size:49.466667pt;}
.fsc_c00009{font-size:51.333333pt;}
.fsb_c00009{font-size:52.266667pt;}
.fs8_c00009{font-size:53.200000pt;}
.fsa_c00009{font-size:54.133333pt;}
.fs5_c00009{font-size:55.066667pt;}
.fs4_c00009{font-size:56.000000pt;}
.fs2_c00009{font-size:57.866667pt;}
.fse_c00009{font-size:58.800000pt;}
.fs9_c00009{font-size:60.666667pt;}
.fs7_c00009{font-size:61.600000pt;}
.fsf_c00009{font-size:61.605205pt;}
.fs6_c00009{font-size:62.533333pt;}
.fs3_c00009{font-size:64.400000pt;}
.fs1_c00009{font-size:65.333333pt;}
.fs0_c00009{font-size:68.133333pt;}
.y0_c00009{bottom:0.000000pt;}
.y35_c00009{bottom:28.544679pt;}
.y34_c00009{bottom:29.340989pt;}
.y33_c00009{bottom:29.867975pt;}
.y32_c00009{bottom:30.835660pt;}
.y31_c00009{bottom:31.040869pt;}
.y30_c00009{bottom:31.381608pt;}
.y2f_c00009{bottom:31.720977pt;}
.y2e_c00009{bottom:31.921333pt;}
.y2d_c00009{bottom:45.601333pt;}
.y2c_c00009{bottom:59.581333pt;}
.y2b_c00009{bottom:59.676000pt;}
.y2a_c00009{bottom:60.408000pt;}
.y29_c00009{bottom:60.532000pt;}
.y28_c00009{bottom:61.072000pt;}
.y27_c00009{bottom:61.614667pt;}
.y26_c00009{bottom:61.818667pt;}
.y25_c00009{bottom:62.161333pt;}
.y24_c00009{bottom:74.805333pt;}
.y23_c00009{bottom:75.288000pt;}
.y22_c00009{bottom:75.462667pt;}
.y21_c00009{bottom:76.270667pt;}
.y20_c00009{bottom:76.790667pt;}
.y1f_c00009{bottom:77.276000pt;}
.y1e_c00009{bottom:77.521333pt;}
.y1d_c00009{bottom:90.942667pt;}
.y1c_c00009{bottom:105.992000pt;}
.y1b_c00009{bottom:122.212000pt;}
.y1a_c00009{bottom:136.586667pt;}
.y19_c00009{bottom:151.362667pt;}
.y18_c00009{bottom:166.853333pt;}
.y17_c00009{bottom:181.626667pt;}
.y16_c00009{bottom:196.321333pt;}
.y15_c00009{bottom:211.858667pt;}
.y14_c00009{bottom:226.668000pt;}
.y13_c00009{bottom:241.761333pt;}
.y12_c00009{bottom:256.988000pt;}
.y11_c00009{bottom:271.654667pt;}
.y10_c00009{bottom:287.441333pt;}
.yf_c00009{bottom:302.586667pt;}
.ye_c00009{bottom:317.122667pt;}
.yd_c00009{bottom:332.457333pt;}
.yc_c00009{bottom:347.602667pt;}
.yb_c00009{bottom:362.349333pt;}
.ya_c00009{bottom:377.573333pt;}
.y9_c00009{bottom:392.693333pt;}
.y8_c00009{bottom:408.053333pt;}
.y7_c00009{bottom:422.936000pt;}
.y6_c00009{bottom:437.816000pt;}
.y5_c00009{bottom:453.546667pt;}
.y4_c00009{bottom:468.294667pt;}
.y3_c00009{bottom:483.308000pt;}
.y2_c00009{bottom:498.534667pt;}
.y1_c00009{bottom:511.440000pt;}
.hf_c00009{height:49.466667pt;}
.he_c00009{height:51.333333pt;}
.hd_c00009{height:52.266667pt;}
.ha_c00009{height:53.200000pt;}
.hc_c00009{height:54.133333pt;}
.h7_c00009{height:55.066667pt;}
.h6_c00009{height:56.000000pt;}
.h4_c00009{height:57.866667pt;}
.h10_c00009{height:58.800000pt;}
.hb_c00009{height:60.666667pt;}
.h9_c00009{height:61.600000pt;}
.h11_c00009{height:61.605205pt;}
.h8_c00009{height:62.533333pt;}
.h5_c00009{height:64.400000pt;}
.h3_c00009{height:65.333333pt;}
.h2_c00009{height:68.133333pt;}
.h1_c00009{height:547.333333pt;}
.h0_c00009{height:547.440000pt;}
.w0_c00009{width:340.533333pt;}
.w1_c00009{width:340.666667pt;}
.x0_c00009{left:0.000000pt;}
.x57_c00009{left:39.360000pt;}
.x68_c00009{left:40.560000pt;}
.x2_c00009{left:43.200000pt;}
.x35_c00009{left:44.400000pt;}
.x72_c00009{left:58.952000pt;}
.x1f_c00009{left:62.400000pt;}
.x6d_c00009{left:65.172000pt;}
.xe_c00009{left:66.480000pt;}
.x36_c00009{left:70.080000pt;}
.x3_c00009{left:71.760000pt;}
.x8_c00009{left:73.200000pt;}
.x59_c00009{left:74.880000pt;}
.x44_c00009{left:77.280000pt;}
.x14_c00009{left:79.200000pt;}
.x38_c00009{left:82.080000pt;}
.x4_c00009{left:83.760000pt;}
.x31_c00009{left:84.720000pt;}
.x5d_c00009{left:86.640000pt;}
.x69_c00009{left:88.320000pt;}
.x39_c00009{left:94.320000pt;}
.x19_c00009{left:96.000000pt;}
.x15_c00009{left:97.200000pt;}
.x9_c00009{left:99.600000pt;}
.x45_c00009{left:102.000000pt;}
.x5e_c00009{left:104.640000pt;}
.x27_c00009{left:105.600000pt;}
.x4f_c00009{left:107.280000pt;}
.x20_c00009{left:108.480000pt;}
.x2d_c00009{left:110.400000pt;}
.x24_c00009{left:112.320000pt;}
.x3b_c00009{left:113.280000pt;}
.xf_c00009{left:115.920000pt;}
.xa_c00009{left:117.360000pt;}
.x28_c00009{left:119.520000pt;}
.x4a_c00009{left:121.680000pt;}
.x63_c00009{left:122.880000pt;}
.x71_c00009{left:126.720000pt;}
.x54_c00009{left:127.920000pt;}
.x1a_c00009{left:129.600000pt;}
.x10_c00009{left:130.800000pt;}
.x3c_c00009{left:132.720000pt;}
.x46_c00009{left:134.400000pt;}
.x21_c00009{left:135.360000pt;}
.x5a_c00009{left:138.480000pt;}
.x2e_c00009{left:139.680000pt;}
.x6a_c00009{left:141.120000pt;}
.x6f_c00009{left:150.361333pt;}
.x5f_c00009{left:151.440000pt;}
.x3a_c00009{left:153.120000pt;}
.x22_c00009{left:155.760000pt;}
.x5_c00009{left:157.440000pt;}
.x40_c00009{left:160.080000pt;}
.x47_c00009{left:164.640000pt;}
.x29_c00009{left:165.840000pt;}
.x60_c00009{left:169.680000pt;}
.x64_c00009{left:171.360000pt;}
.x11_c00009{left:172.320000pt;}
.x1_c00009{left:174.000000pt;}
.x2f_c00009{left:174.960000pt;}
.x50_c00009{left:176.880000pt;}
.x4b_c00009{left:178.560000pt;}
.x1b_c00009{left:180.240000pt;}
.x5b_c00009{left:183.600000pt;}
.x58_c00009{left:184.560000pt;}
.x32_c00009{left:188.640000pt;}
.x65_c00009{left:193.440000pt;}
.x25_c00009{left:194.640000pt;}
.x6_c00009{left:196.080000pt;}
.x1c_c00009{left:197.760000pt;}
.x73_c00009{left:201.490667pt;}
.x55_c00009{left:203.760000pt;}
.xb_c00009{left:204.720000pt;}
.x41_c00009{left:213.360000pt;}
.x70_c00009{left:216.853333pt;}
.x23_c00009{left:218.640000pt;}
.x4c_c00009{left:221.520000pt;}
.x51_c00009{left:222.480000pt;}
.x6b_c00009{left:223.440000pt;}
.xc_c00009{left:225.360000pt;}
.x16_c00009{left:227.760000pt;}
.x3d_c00009{left:229.680000pt;}
.x12_c00009{left:230.640000pt;}
.x61_c00009{left:232.320000pt;}
.x1d_c00009{left:239.280000pt;}
.x52_c00009{left:240.240000pt;}
.x5c_c00009{left:241.680000pt;}
.x2a_c00009{left:242.880000pt;}
.xd_c00009{left:244.320000pt;}
.x7_c00009{left:245.520000pt;}
.x56_c00009{left:249.600000pt;}
.x66_c00009{left:251.760000pt;}
.x1e_c00009{left:252.720000pt;}
.x26_c00009{left:255.840000pt;}
.x62_c00009{left:257.520000pt;}
.x13_c00009{left:259.920000pt;}
.x48_c00009{left:261.360000pt;}
.x33_c00009{left:262.800000pt;}
.x17_c00009{left:266.880000pt;}
.x6c_c00009{left:268.800000pt;}
.x42_c00009{left:270.480000pt;}
.x67_c00009{left:273.120000pt;}
.x4d_c00009{left:274.320000pt;}
.x37_c00009{left:278.400000pt;}
.x18_c00009{left:279.360000pt;}
.x2b_c00009{left:281.280000pt;}
.x3e_c00009{left:282.960000pt;}
.x43_c00009{left:286.080000pt;}
.x30_c00009{left:287.280000pt;}
.x6e_c00009{left:289.812000pt;}
.x3f_c00009{left:293.280000pt;}
.x53_c00009{left:294.480000pt;}
.x34_c00009{left:296.400000pt;}
.x49_c00009{left:297.360000pt;}
.x2c_c00009{left:299.040000pt;}
.x4e_c00009{left:300.480000pt;}
.x74_c00009{left:303.282667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00010 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00010 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00010 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00010 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00010.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c00010{transform:matrix(0.072570,0.002250,-0.007746,0.249880,0,0);-ms-transform:matrix(0.072570,0.002250,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.072570,0.002250,-0.007746,0.249880,0,0);}
.m15_c00010{transform:matrix(0.098733,0.003061,-0.007746,0.249880,0,0);-ms-transform:matrix(0.098733,0.003061,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.098733,0.003061,-0.007746,0.249880,0,0);}
.m56_c00010{transform:matrix(0.117014,0.003627,-0.007746,0.249880,0,0);-ms-transform:matrix(0.117014,0.003627,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.117014,0.003627,-0.007746,0.249880,0,0);}
.m4a_c00010{transform:matrix(0.122481,0.003797,-0.007746,0.249880,0,0);-ms-transform:matrix(0.122481,0.003797,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.122481,0.003797,-0.007746,0.249880,0,0);}
.m48_c00010{transform:matrix(0.124625,0.003863,-0.007746,0.249880,0,0);-ms-transform:matrix(0.124625,0.003863,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.124625,0.003863,-0.007746,0.249880,0,0);}
.m49_c00010{transform:matrix(0.128653,0.003988,-0.007746,0.249880,0,0);-ms-transform:matrix(0.128653,0.003988,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.128653,0.003988,-0.007746,0.249880,0,0);}
.m47_c00010{transform:matrix(0.131937,0.004090,-0.007746,0.249880,0,0);-ms-transform:matrix(0.131937,0.004090,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.131937,0.004090,-0.007746,0.249880,0,0);}
.m44_c00010{transform:matrix(0.133406,0.004136,-0.007746,0.249880,0,0);-ms-transform:matrix(0.133406,0.004136,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.133406,0.004136,-0.007746,0.249880,0,0);}
.m3f_c00010{transform:matrix(0.134151,0.004159,-0.007746,0.249880,0,0);-ms-transform:matrix(0.134151,0.004159,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.134151,0.004159,-0.007746,0.249880,0,0);}
.m0_c00010{transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.140503,0.004356,-0.007746,0.249880,0,0);-ms-transform:matrix(0.140503,0.004356,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.140503,0.004356,-0.007746,0.249880,0,0);}
.m43_c00010{transform:matrix(0.141162,0.004376,-0.007746,0.249880,0,0);-ms-transform:matrix(0.141162,0.004376,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.141162,0.004376,-0.007746,0.249880,0,0);}
.md_c00010{transform:matrix(0.142577,0.004420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.142577,0.004420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.142577,0.004420,-0.007746,0.249880,0,0);}
.m85_c00010{transform:matrix(0.146759,0.004550,-0.007746,0.249880,0,0);-ms-transform:matrix(0.146759,0.004550,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.146759,0.004550,-0.007746,0.249880,0,0);}
.mc8_c00010{transform:matrix(0.148212,0.004150,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148212,0.004150,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148212,0.004150,-0.006997,0.249902,0,0);}
.m45_c00010{transform:matrix(0.150298,0.004659,-0.007746,0.249880,0,0);-ms-transform:matrix(0.150298,0.004659,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.150298,0.004659,-0.007746,0.249880,0,0);}
.m58_c00010{transform:matrix(0.152772,0.004736,-0.007746,0.249880,0,0);-ms-transform:matrix(0.152772,0.004736,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.152772,0.004736,-0.007746,0.249880,0,0);}
.me2_c00010{transform:matrix(0.153045,0.004285,-0.006997,0.249902,0,0);-ms-transform:matrix(0.153045,0.004285,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.153045,0.004285,-0.006997,0.249902,0,0);}
.mb0_c00010{transform:matrix(0.153871,0.004770,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153871,0.004770,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153871,0.004770,-0.007746,0.249880,0,0);}
.me8_c00010{transform:matrix(0.154784,0.004334,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154784,0.004334,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154784,0.004334,-0.006997,0.249902,0,0);}
.m23_c00010{transform:matrix(0.156095,0.004839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156095,0.004839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156095,0.004839,-0.007746,0.249880,0,0);}
.m14_c00010{transform:matrix(0.156110,0.004839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156110,0.004839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156110,0.004839,-0.007746,0.249880,0,0);}
.md8_c00010{transform:matrix(0.156364,0.004378,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156364,0.004378,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156364,0.004378,-0.006997,0.249902,0,0);}
.md6_c00010{transform:matrix(0.157898,0.004421,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157898,0.004421,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157898,0.004421,-0.006997,0.249902,0,0);}
.mf_c00010{transform:matrix(0.159034,0.004930,-0.007746,0.249880,0,0);-ms-transform:matrix(0.159034,0.004930,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.159034,0.004930,-0.007746,0.249880,0,0);}
.m46_c00010{transform:matrix(0.159443,0.004943,-0.007746,0.249880,0,0);-ms-transform:matrix(0.159443,0.004943,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.159443,0.004943,-0.007746,0.249880,0,0);}
.md5_c00010{transform:matrix(0.159627,0.004470,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159627,0.004470,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159627,0.004470,-0.006997,0.249902,0,0);}
.m22_c00010{transform:matrix(0.159958,0.004959,-0.007746,0.249880,0,0);-ms-transform:matrix(0.159958,0.004959,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.159958,0.004959,-0.007746,0.249880,0,0);}
.m1_c00010{transform:matrix(0.161137,0.004673,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161137,0.004673,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161137,0.004673,-0.007247,0.249895,0,0);}
.m21_c00010{transform:matrix(0.161228,0.004998,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161228,0.004998,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161228,0.004998,-0.007746,0.249880,0,0);}
.m39_c00010{transform:matrix(0.161462,0.005005,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161462,0.005005,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161462,0.005005,-0.007746,0.249880,0,0);}
.m6_c00010{transform:matrix(0.163126,0.004731,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163126,0.004731,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163126,0.004731,-0.007247,0.249895,0,0);}
.m82_c00010{transform:matrix(0.163536,0.005070,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163536,0.005070,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163536,0.005070,-0.007746,0.249880,0,0);}
.m80_c00010{transform:matrix(0.163631,0.005073,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163631,0.005073,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163631,0.005073,-0.007746,0.249880,0,0);}
.m9_c00010{transform:matrix(0.163731,0.004748,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163731,0.004748,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163731,0.004748,-0.007247,0.249895,0,0);}
.m36_c00010{transform:matrix(0.164336,0.005094,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164336,0.005094,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164336,0.005094,-0.007746,0.249880,0,0);}
.maf_c00010{transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);}
.mc2_c00010{transform:matrix(0.165250,0.004627,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165250,0.004627,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165250,0.004627,-0.006997,0.249902,0,0);}
.m5a_c00010{transform:matrix(0.165481,0.005130,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165481,0.005130,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165481,0.005130,-0.007746,0.249880,0,0);}
.m41_c00010{transform:matrix(0.165780,0.005139,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165780,0.005139,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165780,0.005139,-0.007746,0.249880,0,0);}
.m5d_c00010{transform:matrix(0.166280,0.005155,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166280,0.005155,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166280,0.005155,-0.007746,0.249880,0,0);}
.mcc_c00010{transform:matrix(0.166345,0.004658,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166345,0.004658,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166345,0.004658,-0.006997,0.249902,0,0);}
.me4_c00010{transform:matrix(0.166945,0.004674,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166945,0.004674,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166945,0.004674,-0.006997,0.249902,0,0);}
.mdc_c00010{transform:matrix(0.167429,0.004688,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167429,0.004688,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167429,0.004688,-0.006997,0.249902,0,0);}
.m3b_c00010{transform:matrix(0.167674,0.005198,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167674,0.005198,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167674,0.005198,-0.007746,0.249880,0,0);}
.m18_c00010{transform:matrix(0.167714,0.005199,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167714,0.005199,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167714,0.005199,-0.007746,0.249880,0,0);}
.m33_c00010{transform:matrix(0.168699,0.005230,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168699,0.005230,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168699,0.005230,-0.007746,0.249880,0,0);}
.m8_c00010{transform:matrix(0.169064,0.004903,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169064,0.004903,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169064,0.004903,-0.007247,0.249895,0,0);}
.m7e_c00010{transform:matrix(0.169838,0.005265,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169838,0.005265,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169838,0.005265,-0.007746,0.249880,0,0);}
.m16_c00010{transform:matrix(0.169978,0.005269,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169978,0.005269,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169978,0.005269,-0.007746,0.249880,0,0);}
.mcd_c00010{transform:matrix(0.170668,0.004779,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170668,0.004779,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170668,0.004779,-0.006997,0.249902,0,0);}
.m26_c00010{transform:matrix(0.171098,0.005304,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171098,0.005304,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171098,0.005304,-0.007746,0.249880,0,0);}
.m3d_c00010{transform:matrix(0.171178,0.005307,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171178,0.005307,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171178,0.005307,-0.007746,0.249880,0,0);}
.mce_c00010{transform:matrix(0.171538,0.004803,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171538,0.004803,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171538,0.004803,-0.006997,0.249902,0,0);}
.mec_c00010{transform:matrix(0.171603,0.004805,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171603,0.004805,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171603,0.004805,-0.006997,0.249902,0,0);}
.m40_c00010{transform:matrix(0.171643,0.005321,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171643,0.005321,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171643,0.005321,-0.007746,0.249880,0,0);}
.m84_c00010{transform:matrix(0.171708,0.005323,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171708,0.005323,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171708,0.005323,-0.007746,0.249880,0,0);}
.md9_c00010{transform:matrix(0.171793,0.004810,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171793,0.004810,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171793,0.004810,-0.006997,0.249902,0,0);}
.meb_c00010{transform:matrix(0.172447,0.004829,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172447,0.004829,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172447,0.004829,-0.006997,0.249902,0,0);}
.m81_c00010{transform:matrix(0.172567,0.005350,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172567,0.005350,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172567,0.005350,-0.007746,0.249880,0,0);}
.m97_c00010{transform:matrix(0.172837,0.005358,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172837,0.005358,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172837,0.005358,-0.007746,0.249880,0,0);}
.mad_c00010{transform:matrix(0.173267,0.005371,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173267,0.005371,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173267,0.005371,-0.007746,0.249880,0,0);}
.mb2_c00010{transform:matrix(0.173282,0.005372,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173282,0.005372,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173282,0.005372,-0.007746,0.249880,0,0);}
.mdd_c00010{transform:matrix(0.173342,0.004854,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173342,0.004854,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173342,0.004854,-0.006997,0.249902,0,0);}
.m2b_c00010{transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);}
.mcb_c00010{transform:matrix(0.175091,0.004903,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175091,0.004903,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175091,0.004903,-0.006997,0.249902,0,0);}
.m19_c00010{transform:matrix(0.175431,0.005438,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175431,0.005438,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175431,0.005438,-0.007746,0.249880,0,0);}
.m61_c00010{transform:matrix(0.175721,0.005447,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175721,0.005447,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175721,0.005447,-0.007746,0.249880,0,0);}
.m9b_c00010{transform:matrix(0.175821,0.005450,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175821,0.005450,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175821,0.005450,-0.007746,0.249880,0,0);}
.md7_c00010{transform:matrix(0.175986,0.004928,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175986,0.004928,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175986,0.004928,-0.006997,0.249902,0,0);}
.m83_c00010{transform:matrix(0.176830,0.005482,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176830,0.005482,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176830,0.005482,-0.007746,0.249880,0,0);}
.mb6_c00010{transform:matrix(0.177360,0.005498,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177360,0.005498,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177360,0.005498,-0.007746,0.249880,0,0);}
.me3_c00010{transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);}
.ma6_c00010{transform:matrix(0.178019,0.005519,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178019,0.005519,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178019,0.005519,-0.007746,0.249880,0,0);}
.m34_c00010{transform:matrix(0.178909,0.005546,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178909,0.005546,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178909,0.005546,-0.007746,0.249880,0,0);}
.mbc_c00010{transform:matrix(0.179025,0.005013,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179025,0.005013,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179025,0.005013,-0.006997,0.249902,0,0);}
.m1b_c00010{transform:matrix(0.179259,0.005557,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179259,0.005557,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179259,0.005557,-0.007746,0.249880,0,0);}
.mc4_c00010{transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);}
.m1d_c00010{transform:matrix(0.179824,0.005575,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179824,0.005575,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179824,0.005575,-0.007746,0.249880,0,0);}
.mb7_c00010{transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);}
.ma3_c00010{transform:matrix(0.180323,0.005590,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180323,0.005590,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180323,0.005590,-0.007746,0.249880,0,0);}
.mcf_c00010{transform:matrix(0.180664,0.005059,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180664,0.005059,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180664,0.005059,-0.006997,0.249902,0,0);}
.ma5_c00010{transform:matrix(0.180708,0.005602,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180708,0.005602,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180708,0.005602,-0.007746,0.249880,0,0);}
.mc3_c00010{transform:matrix(0.181774,0.005090,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181774,0.005090,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181774,0.005090,-0.006997,0.249902,0,0);}
.m1f_c00010{transform:matrix(0.183062,0.005675,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183062,0.005675,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183062,0.005675,-0.007746,0.249880,0,0);}
.mab_c00010{transform:matrix(0.183242,0.005681,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183242,0.005681,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183242,0.005681,-0.007746,0.249880,0,0);}
.m4b_c00010{transform:matrix(0.183982,0.005703,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183982,0.005703,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183982,0.005703,-0.007746,0.249880,0,0);}
.m4e_c00010{transform:matrix(0.183992,0.005704,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183992,0.005704,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183992,0.005704,-0.007746,0.249880,0,0);}
.m2d_c00010{transform:matrix(0.184017,0.005705,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184017,0.005705,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184017,0.005705,-0.007746,0.249880,0,0);}
.mba_c00010{transform:matrix(0.184128,0.005156,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184128,0.005156,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184128,0.005156,-0.006997,0.249902,0,0);}
.me9_c00010{transform:matrix(0.184403,0.005163,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184403,0.005163,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184403,0.005163,-0.006997,0.249902,0,0);}
.mc6_c00010{transform:matrix(0.184478,0.005165,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184478,0.005165,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184478,0.005165,-0.006997,0.249902,0,0);}
.m52_c00010{transform:matrix(0.184506,0.005720,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184506,0.005720,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184506,0.005720,-0.007746,0.249880,0,0);}
.m74_c00010{transform:matrix(0.185096,0.005738,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185096,0.005738,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185096,0.005738,-0.007746,0.249880,0,0);}
.m99_c00010{transform:matrix(0.185311,0.005745,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185311,0.005745,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185311,0.005745,-0.007746,0.249880,0,0);}
.m1c_c00010{transform:matrix(0.185401,0.005747,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185401,0.005747,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185401,0.005747,-0.007746,0.249880,0,0);}
.mdf_c00010{transform:matrix(0.185477,0.005193,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185477,0.005193,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185477,0.005193,-0.006997,0.249902,0,0);}
.m9f_c00010{transform:matrix(0.185531,0.005751,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185531,0.005751,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185531,0.005751,-0.007746,0.249880,0,0);}
.md1_c00010{transform:matrix(0.186007,0.005208,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186007,0.005208,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186007,0.005208,-0.006997,0.249902,0,0);}
.m31_c00010{transform:matrix(0.186211,0.005773,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186211,0.005773,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186211,0.005773,-0.007746,0.249880,0,0);}
.m35_c00010{transform:matrix(0.186320,0.005776,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186320,0.005776,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186320,0.005776,-0.007746,0.249880,0,0);}
.mb1_c00010{transform:matrix(0.186475,0.005781,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186475,0.005781,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186475,0.005781,-0.007746,0.249880,0,0);}
.m62_c00010{transform:matrix(0.186560,0.005783,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186560,0.005783,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186560,0.005783,-0.007746,0.249880,0,0);}
.mc1_c00010{transform:matrix(0.186562,0.005224,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186562,0.005224,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186562,0.005224,-0.006997,0.249902,0,0);}
.m3e_c00010{transform:matrix(0.187230,0.005804,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187230,0.005804,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187230,0.005804,-0.007746,0.249880,0,0);}
.m92_c00010{transform:matrix(0.187665,0.005818,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187665,0.005818,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187665,0.005818,-0.007746,0.249880,0,0);}
.m17_c00010{transform:matrix(0.187815,0.005822,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187815,0.005822,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187815,0.005822,-0.007746,0.249880,0,0);}
.mea_c00010{transform:matrix(0.187906,0.005261,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187906,0.005261,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187906,0.005261,-0.006997,0.249902,0,0);}
.mca_c00010{transform:matrix(0.187936,0.005262,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187936,0.005262,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187936,0.005262,-0.006997,0.249902,0,0);}
.m6f_c00010{transform:matrix(0.188005,0.005828,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188005,0.005828,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188005,0.005828,-0.007746,0.249880,0,0);}
.m3c_c00010{transform:matrix(0.188035,0.005829,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188035,0.005829,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188035,0.005829,-0.007746,0.249880,0,0);}
.m42_c00010{transform:matrix(0.188065,0.005830,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188065,0.005830,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188065,0.005830,-0.007746,0.249880,0,0);}
.m53_c00010{transform:matrix(0.188345,0.005839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188345,0.005839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188345,0.005839,-0.007746,0.249880,0,0);}
.mbf_c00010{transform:matrix(0.189781,0.005314,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189781,0.005314,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189781,0.005314,-0.006997,0.249902,0,0);}
.mae_c00010{transform:matrix(0.190104,0.005893,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190104,0.005893,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190104,0.005893,-0.007746,0.249880,0,0);}
.m13_c00010{transform:matrix(0.190224,0.005897,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190224,0.005897,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190224,0.005897,-0.007746,0.249880,0,0);}
.m63_c00010{transform:matrix(0.190414,0.005903,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190414,0.005903,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190414,0.005903,-0.007746,0.249880,0,0);}
.mda_c00010{transform:matrix(0.190885,0.005345,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190885,0.005345,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190885,0.005345,-0.006997,0.249902,0,0);}
.md4_c00010{transform:matrix(0.191355,0.005358,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191355,0.005358,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191355,0.005358,-0.006997,0.249902,0,0);}
.m57_c00010{transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);}
.me_c00010{transform:matrix(0.192248,0.005960,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192248,0.005960,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192248,0.005960,-0.007746,0.249880,0,0);}
.mc0_c00010{transform:matrix(0.193014,0.005404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193014,0.005404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193014,0.005404,-0.006997,0.249902,0,0);}
.m6d_c00010{transform:matrix(0.193177,0.005988,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193177,0.005988,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193177,0.005988,-0.007746,0.249880,0,0);}
.m12_c00010{transform:matrix(0.193182,0.005989,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193182,0.005989,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193182,0.005989,-0.007746,0.249880,0,0);}
.m95_c00010{transform:matrix(0.193567,0.006001,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193567,0.006001,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193567,0.006001,-0.007746,0.249880,0,0);}
.ma1_c00010{transform:matrix(0.193762,0.006007,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193762,0.006007,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193762,0.006007,-0.007746,0.249880,0,0);}
.m79_c00010{transform:matrix(0.193977,0.006013,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193977,0.006013,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193977,0.006013,-0.007746,0.249880,0,0);}
.m51_c00010{transform:matrix(0.194182,0.006020,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194182,0.006020,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194182,0.006020,-0.007746,0.249880,0,0);}
.me1_c00010{transform:matrix(0.194214,0.005438,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194214,0.005438,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194214,0.005438,-0.006997,0.249902,0,0);}
.m7_c00010{transform:matrix(0.194228,0.005633,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194228,0.005633,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194228,0.005633,-0.007247,0.249895,0,0);}
.mb3_c00010{transform:matrix(0.194497,0.006029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194497,0.006029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194497,0.006029,-0.007746,0.249880,0,0);}
.m7f_c00010{transform:matrix(0.194522,0.006030,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194522,0.006030,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194522,0.006030,-0.007746,0.249880,0,0);}
.me7_c00010{transform:matrix(0.195149,0.005464,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195149,0.005464,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195149,0.005464,-0.006997,0.249902,0,0);}
.maa_c00010{transform:matrix(0.195276,0.006054,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195276,0.006054,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195276,0.006054,-0.007746,0.249880,0,0);}
.m29_c00010{transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);}
.m69_c00010{transform:matrix(0.195831,0.006071,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195831,0.006071,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195831,0.006071,-0.007746,0.249880,0,0);}
.m70_c00010{transform:matrix(0.196466,0.006090,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196466,0.006090,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196466,0.006090,-0.007746,0.249880,0,0);}
.m68_c00010{transform:matrix(0.196691,0.006097,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196691,0.006097,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196691,0.006097,-0.007746,0.249880,0,0);}
.m3a_c00010{transform:matrix(0.196855,0.006103,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196855,0.006103,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196855,0.006103,-0.007746,0.249880,0,0);}
.m24_c00010{transform:matrix(0.197045,0.006108,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197045,0.006108,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197045,0.006108,-0.007746,0.249880,0,0);}
.m8f_c00010{transform:matrix(0.197845,0.006133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197845,0.006133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197845,0.006133,-0.007746,0.249880,0,0);}
.m5f_c00010{transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);}
.ma0_c00010{transform:matrix(0.198809,0.006163,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198809,0.006163,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198809,0.006163,-0.007746,0.249880,0,0);}
.me0_c00010{transform:matrix(0.199097,0.005575,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199097,0.005575,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199097,0.005575,-0.006997,0.249902,0,0);}
.m5b_c00010{transform:matrix(0.199594,0.006187,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199594,0.006187,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199594,0.006187,-0.007746,0.249880,0,0);}
.m20_c00010{transform:matrix(0.199649,0.006189,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199649,0.006189,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199649,0.006189,-0.007746,0.249880,0,0);}
.md0_c00010{transform:matrix(0.199932,0.005598,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199932,0.005598,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199932,0.005598,-0.006997,0.249902,0,0);}
.m98_c00010{transform:matrix(0.201413,0.006244,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201413,0.006244,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201413,0.006244,-0.007746,0.249880,0,0);}
.me6_c00010{transform:matrix(0.201791,0.005650,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201791,0.005650,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201791,0.005650,-0.006997,0.249902,0,0);}
.mc5_c00010{transform:matrix(0.201816,0.005651,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201816,0.005651,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201816,0.005651,-0.006997,0.249902,0,0);}
.ma9_c00010{transform:matrix(0.201848,0.006257,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201848,0.006257,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201848,0.006257,-0.007746,0.249880,0,0);}
.md3_c00010{transform:matrix(0.202221,0.005662,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202221,0.005662,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202221,0.005662,-0.006997,0.249902,0,0);}
.m32_c00010{transform:matrix(0.203042,0.006294,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203042,0.006294,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203042,0.006294,-0.007746,0.249880,0,0);}
.m2c_c00010{transform:matrix(0.203952,0.006323,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203952,0.006323,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203952,0.006323,-0.007746,0.249880,0,0);}
.m1e_c00010{transform:matrix(0.204142,0.006328,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204142,0.006328,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204142,0.006328,-0.007746,0.249880,0,0);}
.m59_c00010{transform:matrix(0.204262,0.006332,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204262,0.006332,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204262,0.006332,-0.007746,0.249880,0,0);}
.m67_c00010{transform:matrix(0.204522,0.006340,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204522,0.006340,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204522,0.006340,-0.007746,0.249880,0,0);}
.m1a_c00010{transform:matrix(0.204657,0.006344,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204657,0.006344,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204657,0.006344,-0.007746,0.249880,0,0);}
.m4f_c00010{transform:matrix(0.204762,0.006348,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204762,0.006348,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204762,0.006348,-0.007746,0.249880,0,0);}
.m76_c00010{transform:matrix(0.205751,0.006378,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205751,0.006378,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205751,0.006378,-0.007746,0.249880,0,0);}
.m50_c00010{transform:matrix(0.205851,0.006381,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205851,0.006381,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205851,0.006381,-0.007746,0.249880,0,0);}
.m64_c00010{transform:matrix(0.206511,0.006402,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206511,0.006402,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206511,0.006402,-0.007746,0.249880,0,0);}
.mb5_c00010{transform:matrix(0.207275,0.006426,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207275,0.006426,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207275,0.006426,-0.007746,0.249880,0,0);}
.m6c_c00010{transform:matrix(0.207705,0.006439,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207705,0.006439,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207705,0.006439,-0.007746,0.249880,0,0);}
.m90_c00010{transform:matrix(0.207960,0.006447,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207960,0.006447,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207960,0.006447,-0.007746,0.249880,0,0);}
.ma2_c00010{transform:matrix(0.207995,0.006448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207995,0.006448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207995,0.006448,-0.007746,0.249880,0,0);}
.mbe_c00010{transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);}
.m86_c00010{transform:matrix(0.208770,0.006472,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208770,0.006472,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208770,0.006472,-0.007746,0.249880,0,0);}
.mb8_c00010{transform:matrix(0.209514,0.006495,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209514,0.006495,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209514,0.006495,-0.007746,0.249880,0,0);}
.med_c00010{transform:matrix(0.209558,0.005868,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209558,0.005868,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209558,0.005868,-0.006997,0.249902,0,0);}
.m60_c00010{transform:matrix(0.209669,0.006500,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209669,0.006500,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209669,0.006500,-0.007746,0.249880,0,0);}
.m4c_c00010{transform:matrix(0.209849,0.006505,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209849,0.006505,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209849,0.006505,-0.007746,0.249880,0,0);}
.ma4_c00010{transform:matrix(0.210244,0.006518,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210244,0.006518,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210244,0.006518,-0.007746,0.249880,0,0);}
.m55_c00010{transform:matrix(0.210534,0.006527,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210534,0.006527,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210534,0.006527,-0.007746,0.249880,0,0);}
.m4d_c00010{transform:matrix(0.210964,0.006540,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210964,0.006540,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210964,0.006540,-0.007746,0.249880,0,0);}
.mbd_c00010{transform:matrix(0.211292,0.005916,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211292,0.005916,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211292,0.005916,-0.006997,0.249902,0,0);}
.m94_c00010{transform:matrix(0.213382,0.006615,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213382,0.006615,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213382,0.006615,-0.007746,0.249880,0,0);}
.m8d_c00010{transform:matrix(0.213792,0.006628,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213792,0.006628,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213792,0.006628,-0.007746,0.249880,0,0);}
.m2a_c00010{transform:matrix(0.214067,0.006636,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214067,0.006636,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214067,0.006636,-0.007746,0.249880,0,0);}
.ma7_c00010{transform:matrix(0.214222,0.006641,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214222,0.006641,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214222,0.006641,-0.007746,0.249880,0,0);}
.mb4_c00010{transform:matrix(0.215417,0.006678,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215417,0.006678,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215417,0.006678,-0.007746,0.249880,0,0);}
.m87_c00010{transform:matrix(0.215876,0.006692,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215876,0.006692,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215876,0.006692,-0.007746,0.249880,0,0);}
.m73_c00010{transform:matrix(0.216481,0.006711,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216481,0.006711,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216481,0.006711,-0.007746,0.249880,0,0);}
.m7c_c00010{transform:matrix(0.216731,0.006719,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216731,0.006719,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216731,0.006719,-0.007746,0.249880,0,0);}
.m91_c00010{transform:matrix(0.217196,0.006733,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217196,0.006733,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217196,0.006733,-0.007746,0.249880,0,0);}
.mdb_c00010{transform:matrix(0.218914,0.006130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218914,0.006130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218914,0.006130,-0.006997,0.249902,0,0);}
.m6e_c00010{transform:matrix(0.219550,0.006806,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219550,0.006806,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219550,0.006806,-0.007746,0.249880,0,0);}
.m89_c00010{transform:matrix(0.219899,0.006817,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219899,0.006817,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219899,0.006817,-0.007746,0.249880,0,0);}
.m77_c00010{transform:matrix(0.219994,0.006820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219994,0.006820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219994,0.006820,-0.007746,0.249880,0,0);}
.mbb_c00010{transform:matrix(0.220599,0.006177,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220599,0.006177,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220599,0.006177,-0.006997,0.249902,0,0);}
.m8a_c00010{transform:matrix(0.220974,0.006850,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220974,0.006850,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220974,0.006850,-0.007746,0.249880,0,0);}
.m6b_c00010{transform:matrix(0.221564,0.006868,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221564,0.006868,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221564,0.006868,-0.007746,0.249880,0,0);}
.m11_c00010{transform:matrix(0.221748,0.006874,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221748,0.006874,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221748,0.006874,-0.007746,0.249880,0,0);}
.m93_c00010{transform:matrix(0.222313,0.006892,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222313,0.006892,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222313,0.006892,-0.007746,0.249880,0,0);}
.m10_c00010{transform:matrix(0.223078,0.006915,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223078,0.006915,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223078,0.006915,-0.007746,0.249880,0,0);}
.m75_c00010{transform:matrix(0.223243,0.006921,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223243,0.006921,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223243,0.006921,-0.007746,0.249880,0,0);}
.m5c_c00010{transform:matrix(0.223812,0.006938,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223812,0.006938,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223812,0.006938,-0.007746,0.249880,0,0);}
.mb9_c00010{transform:matrix(0.224352,0.006955,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224352,0.006955,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224352,0.006955,-0.007746,0.249880,0,0);}
.mc9_c00010{transform:matrix(0.224927,0.006298,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224927,0.006298,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224927,0.006298,-0.006997,0.249902,0,0);}
.m71_c00010{transform:matrix(0.225622,0.006994,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225622,0.006994,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225622,0.006994,-0.007746,0.249880,0,0);}
.m7a_c00010{transform:matrix(0.225762,0.006999,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225762,0.006999,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225762,0.006999,-0.007746,0.249880,0,0);}
.m8b_c00010{transform:matrix(0.226141,0.007010,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226141,0.007010,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226141,0.007010,-0.007746,0.249880,0,0);}
.me5_c00010{transform:matrix(0.226451,0.006341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226451,0.006341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226451,0.006341,-0.006997,0.249902,0,0);}
.m7d_c00010{transform:matrix(0.226971,0.007036,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226971,0.007036,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226971,0.007036,-0.007746,0.249880,0,0);}
.m5_c00010{transform:matrix(0.229409,0.006653,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229409,0.006653,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229409,0.006653,-0.007247,0.249895,0,0);}
.m65_c00010{transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);}
.m78_c00010{transform:matrix(0.230539,0.007147,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230539,0.007147,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230539,0.007147,-0.007746,0.249880,0,0);}
.md2_c00010{transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);}
.mac_c00010{transform:matrix(0.230799,0.007155,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230799,0.007155,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230799,0.007155,-0.007746,0.249880,0,0);}
.m6a_c00010{transform:matrix(0.230834,0.007156,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230834,0.007156,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230834,0.007156,-0.007746,0.249880,0,0);}
.m88_c00010{transform:matrix(0.231094,0.007164,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231094,0.007164,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231094,0.007164,-0.007746,0.249880,0,0);}
.m72_c00010{transform:matrix(0.231889,0.007189,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231889,0.007189,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231889,0.007189,-0.007746,0.249880,0,0);}
.m54_c00010{transform:matrix(0.232333,0.007202,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232333,0.007202,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232333,0.007202,-0.007746,0.249880,0,0);}
.m9e_c00010{transform:matrix(0.232433,0.007205,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232433,0.007205,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232433,0.007205,-0.007746,0.249880,0,0);}
.m37_c00010{transform:matrix(0.232568,0.007210,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232568,0.007210,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232568,0.007210,-0.007746,0.249880,0,0);}
.ma_c00010{transform:matrix(0.233177,0.006762,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233177,0.006762,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233177,0.006762,-0.007247,0.249895,0,0);}
.m8e_c00010{transform:matrix(0.233483,0.007238,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233483,0.007238,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233483,0.007238,-0.007746,0.249880,0,0);}
.m9d_c00010{transform:matrix(0.234817,0.007279,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234817,0.007279,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234817,0.007279,-0.007746,0.249880,0,0);}
.m7b_c00010{transform:matrix(0.234997,0.007285,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234997,0.007285,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234997,0.007285,-0.007746,0.249880,0,0);}
.m5e_c00010{transform:matrix(0.235507,0.007301,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235507,0.007301,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235507,0.007301,-0.007746,0.249880,0,0);}
.m9c_c00010{transform:matrix(0.236876,0.007343,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236876,0.007343,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236876,0.007343,-0.007746,0.249880,0,0);}
.m66_c00010{transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);}
.m8c_c00010{transform:matrix(0.239790,0.007433,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239790,0.007433,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239790,0.007433,-0.007746,0.249880,0,0);}
.m9a_c00010{transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);}
.m25_c00010{transform:matrix(0.248166,0.007693,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248166,0.007693,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248166,0.007693,-0.007746,0.249880,0,0);}
.mb_c00010{transform:matrix(0.249555,0.007237,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249555,0.007237,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249555,0.007237,-0.007247,0.249895,0,0);}
.mde_c00010{transform:matrix(0.253606,0.007101,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253606,0.007101,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253606,0.007101,-0.006997,0.249902,0,0);}
.m27_c00010{transform:matrix(0.260480,0.008075,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260480,0.008075,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260480,0.008075,-0.007746,0.249880,0,0);}
.m28_c00010{transform:matrix(0.264608,0.008203,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264608,0.008203,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264608,0.008203,-0.007746,0.249880,0,0);}
.m30_c00010{transform:matrix(0.266292,0.008255,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266292,0.008255,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266292,0.008255,-0.007746,0.249880,0,0);}
.m3_c00010{transform:matrix(0.270981,0.007858,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270981,0.007858,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270981,0.007858,-0.007247,0.249895,0,0);}
.m2_c00010{transform:matrix(0.272565,0.007904,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272565,0.007904,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272565,0.007904,-0.007247,0.249895,0,0);}
.m96_c00010{transform:matrix(0.309211,0.009586,-0.007746,0.249880,0,0);-ms-transform:matrix(0.309211,0.009586,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.309211,0.009586,-0.007746,0.249880,0,0);}
.mc7_c00010{transform:matrix(0.314032,0.008793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.314032,0.008793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.314032,0.008793,-0.006997,0.249902,0,0);}
.m38_c00010{transform:matrix(0.331481,0.010276,-0.007746,0.249880,0,0);-ms-transform:matrix(0.331481,0.010276,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.331481,0.010276,-0.007746,0.249880,0,0);}
.m2f_c00010{transform:matrix(0.351756,0.010904,-0.007746,0.249880,0,0);-ms-transform:matrix(0.351756,0.010904,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.351756,0.010904,-0.007746,0.249880,0,0);}
.m2e_c00010{transform:matrix(0.378698,0.011740,-0.007746,0.249880,0,0);-ms-transform:matrix(0.378698,0.011740,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.378698,0.011740,-0.007746,0.249880,0,0);}
.m4_c00010{transform:matrix(0.773455,0.022430,-0.007247,0.249895,0,0);-ms-transform:matrix(0.773455,0.022430,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.773455,0.022430,-0.007247,0.249895,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
.fc0_c00010{color:transparent;}
.fs0_c00010{font-size:22.050000px;}
.fsb_c00010{font-size:55.676733px;}
.fsc_c00010{font-size:57.777742px;}
.fsa_c00010{font-size:58.828247px;}
.fsf_c00010{font-size:59.873457px;}
.fs1_c00010{font-size:59.875162px;}
.fs9_c00010{font-size:59.878751px;}
.fs6_c00010{font-size:60.929255px;}
.fs12_c00010{font-size:64.075103px;}
.fs5_c00010{font-size:64.080769px;}
.fs4_c00010{font-size:65.131273px;}
.fs11_c00010{font-size:66.175926px;}
.fs7_c00010{font-size:66.181777px;}
.fs10_c00010{font-size:67.226337px;}
.fs3_c00010{font-size:67.232282px;}
.fs2_c00010{font-size:69.329135px;}
.fse_c00010{font-size:69.333291px;}
.fsd_c00010{font-size:74.585813px;}
.fs8_c00010{font-size:85.090857px;}
.y0_c00010{bottom:0.000000px;}
.yf1_c00010{bottom:38.068728px;}
.yf0_c00010{bottom:40.721814px;}
.yef_c00010{bottom:41.523300px;}
.yee_c00010{bottom:42.287772px;}
.yed_c00010{bottom:44.232108px;}
.yec_c00010{bottom:45.103110px;}
.yeb_c00010{bottom:46.952526px;}
.yea_c00010{bottom:55.677486px;}
.ye9_c00010{bottom:57.000810px;}
.ye8_c00010{bottom:57.982500px;}
.ye7_c00010{bottom:59.272104px;}
.ye6_c00010{bottom:60.427482px;}
.ye5_c00010{bottom:61.944072px;}
.ye4_c00010{bottom:63.699006px;}
.ye3_c00010{bottom:71.305890px;}
.ye2_c00010{bottom:72.087918px;}
.ye1_c00010{bottom:73.389510px;}
.ye0_c00010{bottom:73.986120px;}
.ydf_c00010{bottom:76.377798px;}
.yde_c00010{bottom:77.081394px;}
.ydd_c00010{bottom:78.432348px;}
.ydc_c00010{bottom:79.906740px;}
.ydb_c00010{bottom:87.631524px;}
.yda_c00010{bottom:88.583136px;}
.yd9_c00010{bottom:89.479062px;}
.yd8_c00010{bottom:90.120144px;}
.yd7_c00010{bottom:92.140764px;}
.yd6_c00010{bottom:92.920260px;}
.yd5_c00010{bottom:94.803714px;}
.yd4_c00010{bottom:95.665404px;}
.yd3_c00010{bottom:96.653646px;}
.yd2_c00010{bottom:104.289714px;}
.yd1_c00010{bottom:106.510722px;}
.yd0_c00010{bottom:107.518488px;}
.ycf_c00010{bottom:110.047596px;}
.yce_c00010{bottom:111.341322px;}
.ycd_c00010{bottom:113.156940px;}
.ycc_c00010{bottom:113.874588px;}
.ycb_c00010{bottom:114.485592px;}
.yca_c00010{bottom:123.556518px;}
.yc9_c00010{bottom:124.058286px;}
.yc8_c00010{bottom:126.471030px;}
.yc7_c00010{bottom:128.900874px;}
.yc6_c00010{bottom:129.543444px;}
.yc5_c00010{bottom:131.772378px;}
.yc4_c00010{bottom:139.838010px;}
.yc3_c00010{bottom:140.337180px;}
.yc2_c00010{bottom:140.896620px;}
.yc1_c00010{bottom:143.028540px;}
.yc0_c00010{bottom:143.452992px;}
.ybf_c00010{bottom:145.426656px;}
.ybe_c00010{bottom:146.352000px;}
.ybd_c00010{bottom:155.689450px;}
.ybc_c00010{bottom:157.651062px;}
.ybb_c00010{bottom:158.031532px;}
.yba_c00010{bottom:158.938899px;}
.yb9_c00010{bottom:160.090051px;}
.yb8_c00010{bottom:161.830020px;}
.yb7_c00010{bottom:173.034565px;}
.yb6_c00010{bottom:174.739701px;}
.yb5_c00010{bottom:175.430803px;}
.yb4_c00010{bottom:175.972431px;}
.yb3_c00010{bottom:176.675959px;}
.yb2_c00010{bottom:178.514470px;}
.yb1_c00010{bottom:179.387049px;}
.yb0_c00010{bottom:189.651976px;}
.yaf_c00010{bottom:190.607863px;}
.yae_c00010{bottom:191.667472px;}
.yad_c00010{bottom:193.606531px;}
.yac_c00010{bottom:194.021628px;}
.yab_c00010{bottom:196.203135px;}
.yaa_c00010{bottom:196.936931px;}
.ya9_c00010{bottom:197.695255px;}
.ya8_c00010{bottom:199.384427px;}
.ya7_c00010{bottom:205.906440px;}
.ya6_c00010{bottom:207.796044px;}
.ya5_c00010{bottom:208.805890px;}
.ya4_c00010{bottom:210.164850px;}
.ya3_c00010{bottom:211.054478px;}
.ya2_c00010{bottom:211.663071px;}
.ya1_c00010{bottom:212.146597px;}
.ya0_c00010{bottom:213.833755px;}
.y9f_c00010{bottom:214.626636px;}
.y9e_c00010{bottom:215.413645px;}
.y9d_c00010{bottom:216.396672px;}
.y9c_c00010{bottom:224.599878px;}
.y9b_c00010{bottom:225.374987px;}
.y9a_c00010{bottom:225.854676px;}
.y99_c00010{bottom:227.513345px;}
.y98_c00010{bottom:230.001179px;}
.y97_c00010{bottom:230.680868px;}
.y96_c00010{bottom:231.938839px;}
.y95_c00010{bottom:233.411226px;}
.y94_c00010{bottom:239.865522px;}
.y93_c00010{bottom:242.071920px;}
.y92_c00010{bottom:243.739059px;}
.y91_c00010{bottom:244.441656px;}
.y90_c00010{bottom:245.891829px;}
.y8f_c00010{bottom:248.096041px;}
.y8e_c00010{bottom:248.580173px;}
.y8d_c00010{bottom:250.706401px;}
.y8c_c00010{bottom:259.364595px;}
.y8b_c00010{bottom:260.140518px;}
.y8a_c00010{bottom:261.583398px;}
.y89_c00010{bottom:264.402334px;}
.y88_c00010{bottom:265.649022px;}
.y87_c00010{bottom:267.996543px;}
.y86_c00010{bottom:273.880188px;}
.y85_c00010{bottom:275.446989px;}
.y84_c00010{bottom:276.946617px;}
.y83_c00010{bottom:278.890135px;}
.y82_c00010{bottom:279.777091px;}
.y81_c00010{bottom:281.117959px;}
.y80_c00010{bottom:282.090631px;}
.y7f_c00010{bottom:285.555297px;}
.y7e_c00010{bottom:293.135914px;}
.y7d_c00010{bottom:296.208391px;}
.y7c_c00010{bottom:297.788709px;}
.y7b_c00010{bottom:301.806891px;}
.y7a_c00010{bottom:303.117957px;}
.y79_c00010{bottom:309.495550px;}
.y78_c00010{bottom:310.541616px;}
.y77_c00010{bottom:311.763157px;}
.y76_c00010{bottom:313.883422px;}
.y75_c00010{bottom:314.519316px;}
.y74_c00010{bottom:314.999950px;}
.y73_c00010{bottom:317.184714px;}
.y72_c00010{bottom:319.591653px;}
.y71_c00010{bottom:326.417197px;}
.y70_c00010{bottom:327.488635px;}
.y6f_c00010{bottom:329.270401px;}
.y6e_c00010{bottom:329.894122px;}
.y6d_c00010{bottom:331.571425px;}
.y6c_c00010{bottom:332.500212px;}
.y6b_c00010{bottom:333.689424px;}
.y6a_c00010{bottom:334.891609px;}
.y69_c00010{bottom:335.519655px;}
.y68_c00010{bottom:344.692740px;}
.y67_c00010{bottom:346.127124px;}
.y66_c00010{bottom:348.336058px;}
.y65_c00010{bottom:350.369976px;}
.y64_c00010{bottom:350.905455px;}
.y63_c00010{bottom:351.587992px;}
.y62_c00010{bottom:351.999954px;}
.y61_c00010{bottom:360.197195px;}
.y60_c00010{bottom:362.731744px;}
.y5f_c00010{bottom:363.176364px;}
.y5e_c00010{bottom:364.301898px;}
.y5d_c00010{bottom:366.204022px;}
.y5c_c00010{bottom:367.904146px;}
.y5b_c00010{bottom:368.479015px;}
.y5a_c00010{bottom:377.448410px;}
.y59_c00010{bottom:378.095634px;}
.y58_c00010{bottom:378.894742px;}
.y57_c00010{bottom:379.423447px;}
.y56_c00010{bottom:381.479316px;}
.y55_c00010{bottom:383.527035px;}
.y54_c00010{bottom:384.098370px;}
.y53_c00010{bottom:385.767269px;}
.y52_c00010{bottom:394.801552px;}
.y51_c00010{bottom:396.118524px;}
.y50_c00010{bottom:398.836761px;}
.y4f_c00010{bottom:399.650761px;}
.y4e_c00010{bottom:400.289874px;}
.y4d_c00010{bottom:403.056065px;}
.y4c_c00010{bottom:409.647075px;}
.y4b_c00010{bottom:410.222601px;}
.y4a_c00010{bottom:411.442935px;}
.y49_c00010{bottom:412.906046px;}
.y48_c00010{bottom:413.362293px;}
.y47_c00010{bottom:413.705865px;}
.y46_c00010{bottom:415.278396px;}
.y45_c00010{bottom:415.845099px;}
.y44_c00010{bottom:416.833339px;}
.y43_c00010{bottom:426.948652px;}
.y42_c00010{bottom:427.864514px;}
.y41_c00010{bottom:429.614625px;}
.y40_c00010{bottom:430.245629px;}
.y3f_c00010{bottom:431.211060px;}
.y3e_c00010{bottom:433.794585px;}
.y3d_c00010{bottom:435.719264px;}
.y3c_c00010{bottom:436.559199px;}
.y3b_c00010{bottom:443.748864px;}
.y3a_c00010{bottom:444.167769px;}
.y39_c00010{bottom:444.561705px;}
.y38_c00010{bottom:446.557795px;}
.y37_c00010{bottom:447.118529px;}
.y36_c00010{bottom:448.178874px;}
.y35_c00010{bottom:449.347361px;}
.y34_c00010{bottom:450.326999px;}
.y33_c00010{bottom:463.226133px;}
.y32_c00010{bottom:463.845978px;}
.y31_c00010{bottom:464.567797px;}
.y30_c00010{bottom:464.885718px;}
.y2f_c00010{bottom:466.206504px;}
.y2e_c00010{bottom:466.809655px;}
.y2d_c00010{bottom:468.510812px;}
.y2c_c00010{bottom:470.587409px;}
.y2b_c00010{bottom:480.358054px;}
.y2a_c00010{bottom:481.902454px;}
.y29_c00010{bottom:482.452919px;}
.y28_c00010{bottom:483.525843px;}
.y27_c00010{bottom:484.074354px;}
.y26_c00010{bottom:484.477722px;}
.y25_c00010{bottom:486.229932px;}
.y24_c00010{bottom:486.768086px;}
.y23_c00010{bottom:487.334661px;}
.y22_c00010{bottom:495.228099px;}
.y21_c00010{bottom:497.189171px;}
.y20_c00010{bottom:499.604609px;}
.y1f_c00010{bottom:499.941120px;}
.y1e_c00010{bottom:501.350930px;}
.y1d_c00010{bottom:503.814879px;}
.y1c_c00010{bottom:510.521236px;}
.y1b_c00010{bottom:512.711311px;}
.y1a_c00010{bottom:513.795775px;}
.y19_c00010{bottom:516.574398px;}
.y18_c00010{bottom:517.581076px;}
.y17_c00010{bottom:519.988221px;}
.y16_c00010{bottom:520.832341px;}
.y15_c00010{bottom:529.609420px;}
.y14_c00010{bottom:531.494623px;}
.y13_c00010{bottom:532.255921px;}
.y12_c00010{bottom:532.682606px;}
.y11_c00010{bottom:534.153447px;}
.y10_c00010{bottom:534.810120px;}
.yf_c00010{bottom:536.761213px;}
.ye_c00010{bottom:537.286198px;}
.yd_c00010{bottom:537.847500px;}
.yc_c00010{bottom:545.321019px;}
.yb_c00010{bottom:545.877645px;}
.ya_c00010{bottom:547.451040px;}
.y9_c00010{bottom:548.131946px;}
.y8_c00010{bottom:551.195129px;}
.y7_c00010{bottom:553.232799px;}
.y6_c00010{bottom:564.479496px;}
.y5_c00010{bottom:567.973068px;}
.y4_c00010{bottom:568.664892px;}
.y3_c00010{bottom:570.542395px;}
.y2_c00010{bottom:571.056000px;}
.y1_c00010{bottom:593.460000px;}
.h2_c00010{height:22.050000px;}
.hd_c00010{height:55.676733px;}
.he_c00010{height:57.777742px;}
.hc_c00010{height:58.828247px;}
.h11_c00010{height:59.873457px;}
.h3_c00010{height:59.875162px;}
.hb_c00010{height:59.878751px;}
.h8_c00010{height:60.929255px;}
.h14_c00010{height:64.075103px;}
.h7_c00010{height:64.080769px;}
.h6_c00010{height:65.131273px;}
.h13_c00010{height:66.175926px;}
.h9_c00010{height:66.181777px;}
.h12_c00010{height:67.226337px;}
.h5_c00010{height:67.232282px;}
.h4_c00010{height:69.329135px;}
.h10_c00010{height:69.333291px;}
.hf_c00010{height:74.585813px;}
.ha_c00010{height:85.090857px;}
.h1_c00010{height:615.750000px;}
.h0_c00010{height:615.870000px;}
.w0_c00010{width:383.100000px;}
.w1_c00010{width:383.250000px;}
.x0_c00010{left:0.000000px;}
.x81_c00010{left:31.849962px;}
.x75_c00010{left:33.014970px;}
.x61_c00010{left:34.538779px;}
.x5c_c00010{left:36.004302px;}
.x19_c00010{left:37.152755px;}
.x2_c00010{left:38.923500px;}
.x1f_c00010{left:41.524556px;}
.x72_c00010{left:46.572000px;}
.xc_c00010{left:47.826000px;}
.x77_c00010{left:49.019262px;}
.x48_c00010{left:54.596499px;}
.x3_c00010{left:56.634000px;}
.x43_c00010{left:58.471534px;}
.x32_c00010{left:60.666892px;}
.x13_c00010{left:62.295786px;}
.xd_c00010{left:65.932500px;}
.x54_c00010{left:68.474590px;}
.x6d_c00010{left:70.413556px;}
.x37_c00010{left:74.844496px;}
.x2c_c00010{left:76.617271px;}
.x1_c00010{left:79.380000px;}
.x67_c00010{left:80.782545px;}
.xe_c00010{left:82.867500px;}
.x20_c00010{left:83.990112px;}
.x3d_c00010{left:86.331321px;}
.x79_c00010{left:90.138408px;}
.x49_c00010{left:91.465674px;}
.x5f_c00010{left:92.662869px;}
.x4b_c00010{left:94.744221px;}
.x38_c00010{left:96.660891px;}
.x5d_c00010{left:97.781910px;}
.x51_c00010{left:100.148254px;}
.x68_c00010{left:101.854290px;}
.x26_c00010{left:103.915977px;}
.x60_c00010{left:105.761451px;}
.x82_c00010{left:107.401536px;}
.x7_c00010{left:109.040437px;}
.x76_c00010{left:110.638440px;}
.x1a_c00010{left:114.164883px;}
.x7d_c00010{left:115.477422px;}
.x62_c00010{left:117.287164px;}
.x4_c00010{left:121.375500px;}
.x2d_c00010{left:123.367467px;}
.x7f_c00010{left:125.873622px;}
.x14_c00010{left:129.144916px;}
.x5e_c00010{left:130.587295px;}
.x4c_c00010{left:131.895059px;}
.x7e_c00010{left:136.155936px;}
.x63_c00010{left:137.904909px;}
.x3b_c00010{left:143.371245px;}
.x5_c00010{left:145.231500px;}
.x57_c00010{left:147.245976px;}
.x64_c00010{left:149.413998px;}
.x21_c00010{left:151.410574px;}
.x4a_c00010{left:153.104361px;}
.x15_c00010{left:157.114092px;}
.x1b_c00010{left:158.238035px;}
.x4d_c00010{left:160.935675px;}
.x3e_c00010{left:163.358160px;}
.x44_c00010{left:164.405177px;}
.x2e_c00010{left:165.805872px;}
.xf_c00010{left:166.989000px;}
.x1c_c00010{left:168.754209px;}
.x39_c00010{left:170.385330px;}
.x7a_c00010{left:173.341584px;}
.x6e_c00010{left:176.341027px;}
.x27_c00010{left:178.248477px;}
.x58_c00010{left:180.764630px;}
.x69_c00010{left:182.819235px;}
.x33_c00010{left:185.896002px;}
.x22_c00010{left:188.025248px;}
.x6a_c00010{left:194.368968px;}
.x80_c00010{left:195.716430px;}
.x45_c00010{left:197.516108px;}
.x6f_c00010{left:198.898410px;}
.x59_c00010{left:202.934445px;}
.x55_c00010{left:204.996775px;}
.x71_c00010{left:206.908241px;}
.x46_c00010{left:210.599399px;}
.x34_c00010{left:212.728363px;}
.x8_c00010{left:214.667437px;}
.x28_c00010{left:220.854477px;}
.x3f_c00010{left:223.816034px;}
.x10_c00010{left:228.199500px;}
.x23_c00010{left:229.271118px;}
.x29_c00010{left:231.109977px;}
.x4e_c00010{left:232.837443px;}
.x16_c00010{left:234.299642px;}
.x7b_c00010{left:236.499528px;}
.x9_c00010{left:238.146937px;}
.x40_c00010{left:239.369592px;}
.x73_c00010{left:241.407000px;}
.x52_c00010{left:242.828832px;}
.x1d_c00010{left:244.249884px;}
.x6b_c00010{left:248.249644px;}
.x24_c00010{left:250.418373px;}
.x5a_c00010{left:251.534413px;}
.x11_c00010{left:252.757500px;}
.x2a_c00010{left:254.394477px;}
.x7c_c00010{left:256.553802px;}
.x74_c00010{left:261.387000px;}
.x41_c00010{left:262.870907px;}
.x17_c00010{left:264.438992px;}
.x6_c00010{left:265.699500px;}
.x65_c00010{left:266.990643px;}
.x2f_c00010{left:268.093390px;}
.x2b_c00010{left:274.389477px;}
.x6c_c00010{left:277.684088px;}
.x35_c00010{left:278.883133px;}
.x56_c00010{left:279.940572px;}
.x42_c00010{left:281.908640px;}
.x30_c00010{left:283.852320px;}
.x47_c00010{left:285.142470px;}
.x4f_c00010{left:288.521723px;}
.x3a_c00010{left:291.136023px;}
.xa_c00010{left:292.401937px;}
.x3c_c00010{left:294.905549px;}
.x70_c00010{left:298.718032px;}
.x31_c00010{left:300.610435px;}
.x53_c00010{left:302.512905px;}
.x36_c00010{left:304.310181px;}
.x1e_c00010{left:305.524478px;}
.x78_c00010{left:308.074536px;}
.x25_c00010{left:309.827580px;}
.xb_c00010{left:311.595937px;}
.x12_c00010{left:313.570500px;}
.x66_c00010{left:318.065157px;}
.x50_c00010{left:322.018700px;}
.x18_c00010{left:325.254552px;}
.x5b_c00010{left:328.172023px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs0_c00010{font-size:19.600000pt;}
.fsb_c00010{font-size:49.490430pt;}
.fsc_c00010{font-size:51.357993pt;}
.fsa_c00010{font-size:52.291775pt;}
.fsf_c00010{font-size:53.220850pt;}
.fs1_c00010{font-size:53.222366pt;}
.fs9_c00010{font-size:53.225556pt;}
.fs6_c00010{font-size:54.159338pt;}
.fs12_c00010{font-size:56.955647pt;}
.fs5_c00010{font-size:56.960683pt;}
.fs4_c00010{font-size:57.894465pt;}
.fs11_c00010{font-size:58.823045pt;}
.fs7_c00010{font-size:58.828247pt;}
.fs10_c00010{font-size:59.756744pt;}
.fs3_c00010{font-size:59.762028pt;}
.fs2_c00010{font-size:61.625897pt;}
.fse_c00010{font-size:61.629592pt;}
.fsd_c00010{font-size:66.298500pt;}
.fs8_c00010{font-size:75.636317pt;}
.y0_c00010{bottom:0.000000pt;}
.yf1_c00010{bottom:33.838869pt;}
.yf0_c00010{bottom:36.197168pt;}
.yef_c00010{bottom:36.909600pt;}
.yee_c00010{bottom:37.589131pt;}
.yed_c00010{bottom:39.317429pt;}
.yec_c00010{bottom:40.091653pt;}
.yeb_c00010{bottom:41.735579pt;}
.yea_c00010{bottom:49.491099pt;}
.ye9_c00010{bottom:50.667387pt;}
.ye8_c00010{bottom:51.540000pt;}
.ye7_c00010{bottom:52.686315pt;}
.ye6_c00010{bottom:53.713317pt;}
.ye5_c00010{bottom:55.061397pt;}
.ye4_c00010{bottom:56.621339pt;}
.ye3_c00010{bottom:63.383013pt;}
.ye2_c00010{bottom:64.078149pt;}
.ye1_c00010{bottom:65.235120pt;}
.ye0_c00010{bottom:65.765440pt;}
.ydf_c00010{bottom:67.891376pt;}
.yde_c00010{bottom:68.516795pt;}
.ydd_c00010{bottom:69.717643pt;}
.ydc_c00010{bottom:71.028213pt;}
.ydb_c00010{bottom:77.894688pt;}
.yda_c00010{bottom:78.740565pt;}
.yd9_c00010{bottom:79.536944pt;}
.yd8_c00010{bottom:80.106795pt;}
.yd7_c00010{bottom:81.902901pt;}
.yd6_c00010{bottom:82.595787pt;}
.yd5_c00010{bottom:84.269968pt;}
.yd4_c00010{bottom:85.035915pt;}
.yd3_c00010{bottom:85.914352pt;}
.yd2_c00010{bottom:92.701968pt;}
.yd1_c00010{bottom:94.676197pt;}
.yd0_c00010{bottom:95.571989pt;}
.ycf_c00010{bottom:97.820085pt;}
.yce_c00010{bottom:98.970064pt;}
.ycd_c00010{bottom:100.583947pt;}
.ycc_c00010{bottom:101.221856pt;}
.ycb_c00010{bottom:101.764971pt;}
.yca_c00010{bottom:109.828016pt;}
.yc9_c00010{bottom:110.274032pt;}
.yc8_c00010{bottom:112.418693pt;}
.yc7_c00010{bottom:114.578555pt;}
.yc6_c00010{bottom:115.149728pt;}
.yc5_c00010{bottom:117.131003pt;}
.yc4_c00010{bottom:124.300453pt;}
.yc3_c00010{bottom:124.744160pt;}
.yc2_c00010{bottom:125.241440pt;}
.yc1_c00010{bottom:127.136480pt;}
.yc0_c00010{bottom:127.513771pt;}
.ybf_c00010{bottom:129.268139pt;}
.ybe_c00010{bottom:130.090667pt;}
.ybd_c00010{bottom:138.390623pt;}
.ybc_c00010{bottom:140.134277pt;}
.ybb_c00010{bottom:140.472473pt;}
.yba_c00010{bottom:141.279021pt;}
.yb9_c00010{bottom:142.302268pt;}
.yb8_c00010{bottom:143.848907pt;}
.yb7_c00010{bottom:153.808503pt;}
.yb6_c00010{bottom:155.324179pt;}
.yb5_c00010{bottom:155.938492pt;}
.yb4_c00010{bottom:156.419939pt;}
.yb3_c00010{bottom:157.045297pt;}
.yb2_c00010{bottom:158.679529pt;}
.yb1_c00010{bottom:159.455155pt;}
.yb0_c00010{bottom:168.579535pt;}
.yaf_c00010{bottom:169.429212pt;}
.yae_c00010{bottom:170.371087pt;}
.yad_c00010{bottom:172.094695pt;}
.yac_c00010{bottom:172.463669pt;}
.yab_c00010{bottom:174.402787pt;}
.yaa_c00010{bottom:175.055049pt;}
.ya9_c00010{bottom:175.729116pt;}
.ya8_c00010{bottom:177.230601pt;}
.ya7_c00010{bottom:183.027947pt;}
.ya6_c00010{bottom:184.707595pt;}
.ya5_c00010{bottom:185.605236pt;}
.ya4_c00010{bottom:186.813200pt;}
.ya3_c00010{bottom:187.603980pt;}
.ya2_c00010{bottom:188.144952pt;}
.ya1_c00010{bottom:188.574753pt;}
.ya0_c00010{bottom:190.074449pt;}
.y9f_c00010{bottom:190.779232pt;}
.y9e_c00010{bottom:191.478796pt;}
.y9d_c00010{bottom:192.352597pt;}
.y9c_c00010{bottom:199.644336pt;}
.y9b_c00010{bottom:200.333321pt;}
.y9a_c00010{bottom:200.759712pt;}
.y99_c00010{bottom:202.234084pt;}
.y98_c00010{bottom:204.445492pt;}
.y97_c00010{bottom:205.049660pt;}
.y96_c00010{bottom:206.167857pt;}
.y95_c00010{bottom:207.476645pt;}
.y94_c00010{bottom:213.213797pt;}
.y93_c00010{bottom:215.175040pt;}
.y92_c00010{bottom:216.656941pt;}
.y91_c00010{bottom:217.281472pt;}
.y90_c00010{bottom:218.570515pt;}
.y8f_c00010{bottom:220.529815pt;}
.y8e_c00010{bottom:220.960153pt;}
.y8d_c00010{bottom:222.850135pt;}
.y8c_c00010{bottom:230.546307pt;}
.y8b_c00010{bottom:231.236016pt;}
.y8a_c00010{bottom:232.518576pt;}
.y89_c00010{bottom:235.024297pt;}
.y88_c00010{bottom:236.132464pt;}
.y87_c00010{bottom:238.219149pt;}
.y86_c00010{bottom:243.449056pt;}
.y85_c00010{bottom:244.841768pt;}
.y84_c00010{bottom:246.174771pt;}
.y83_c00010{bottom:247.902343pt;}
.y82_c00010{bottom:248.690748pt;}
.y81_c00010{bottom:249.882631pt;}
.y80_c00010{bottom:250.747228pt;}
.y7f_c00010{bottom:253.826931pt;}
.y7e_c00010{bottom:260.565257pt;}
.y7d_c00010{bottom:263.296348pt;}
.y7c_c00010{bottom:264.701075pt;}
.y7b_c00010{bottom:268.272792pt;}
.y7a_c00010{bottom:269.438184pt;}
.y79_c00010{bottom:275.107156pt;}
.y78_c00010{bottom:276.036992pt;}
.y77_c00010{bottom:277.122807pt;}
.y76_c00010{bottom:279.007487pt;}
.y75_c00010{bottom:279.572725pt;}
.y74_c00010{bottom:279.999956pt;}
.y73_c00010{bottom:281.941968pt;}
.y72_c00010{bottom:284.081469pt;}
.y71_c00010{bottom:290.148620pt;}
.y70_c00010{bottom:291.101009pt;}
.y6f_c00010{bottom:292.684801pt;}
.y6e_c00010{bottom:293.239220pt;}
.y6d_c00010{bottom:294.730156pt;}
.y6c_c00010{bottom:295.555744pt;}
.y6b_c00010{bottom:296.612821pt;}
.y6a_c00010{bottom:297.681431pt;}
.y69_c00010{bottom:298.239693pt;}
.y68_c00010{bottom:306.393547pt;}
.y67_c00010{bottom:307.668555pt;}
.y66_c00010{bottom:309.632052pt;}
.y65_c00010{bottom:311.439979pt;}
.y64_c00010{bottom:311.915960pt;}
.y63_c00010{bottom:312.522660pt;}
.y62_c00010{bottom:312.888848pt;}
.y61_c00010{bottom:320.175284pt;}
.y60_c00010{bottom:322.428217pt;}
.y5f_c00010{bottom:322.823435pt;}
.y5e_c00010{bottom:323.823909pt;}
.y5d_c00010{bottom:325.514687pt;}
.y5c_c00010{bottom:327.025908pt;}
.y5b_c00010{bottom:327.536903pt;}
.y5a_c00010{bottom:335.509697pt;}
.y59_c00010{bottom:336.085008pt;}
.y58_c00010{bottom:336.795327pt;}
.y57_c00010{bottom:337.265287pt;}
.y56_c00010{bottom:339.092725pt;}
.y55_c00010{bottom:340.912920pt;}
.y54_c00010{bottom:341.420773pt;}
.y53_c00010{bottom:342.904239pt;}
.y52_c00010{bottom:350.934713pt;}
.y51_c00010{bottom:352.105355pt;}
.y50_c00010{bottom:354.521565pt;}
.y4f_c00010{bottom:355.245121pt;}
.y4e_c00010{bottom:355.813221pt;}
.y4d_c00010{bottom:358.272057pt;}
.y4c_c00010{bottom:364.130733pt;}
.y4b_c00010{bottom:364.642312pt;}
.y4a_c00010{bottom:365.727053pt;}
.y49_c00010{bottom:367.027596pt;}
.y48_c00010{bottom:367.433149pt;}
.y47_c00010{bottom:367.738547pt;}
.y46_c00010{bottom:369.136352pt;}
.y45_c00010{bottom:369.640088pt;}
.y44_c00010{bottom:370.518524pt;}
.y43_c00010{bottom:379.509913pt;}
.y42_c00010{bottom:380.324012pt;}
.y41_c00010{bottom:381.879667pt;}
.y40_c00010{bottom:382.440559pt;}
.y3f_c00010{bottom:383.298720pt;}
.y3e_c00010{bottom:385.595187pt;}
.y3d_c00010{bottom:387.306012pt;}
.y3c_c00010{bottom:388.052621pt;}
.y3b_c00010{bottom:394.443435pt;}
.y3a_c00010{bottom:394.815795pt;}
.y39_c00010{bottom:395.165960pt;}
.y38_c00010{bottom:396.940263pt;}
.y37_c00010{bottom:397.438692pt;}
.y36_c00010{bottom:398.381221pt;}
.y35_c00010{bottom:399.419876pt;}
.y34_c00010{bottom:400.290665pt;}
.y33_c00010{bottom:411.756563pt;}
.y32_c00010{bottom:412.307536pt;}
.y31_c00010{bottom:412.949153pt;}
.y30_c00010{bottom:413.231749pt;}
.y2f_c00010{bottom:414.405781pt;}
.y2e_c00010{bottom:414.941916pt;}
.y2d_c00010{bottom:416.454055pt;}
.y2c_c00010{bottom:418.299919pt;}
.y2b_c00010{bottom:426.984937pt;}
.y2a_c00010{bottom:428.357737pt;}
.y29_c00010{bottom:428.847039pt;}
.y28_c00010{bottom:429.800749pt;}
.y27_c00010{bottom:430.288315pt;}
.y26_c00010{bottom:430.646864pt;}
.y25_c00010{bottom:432.204384pt;}
.y24_c00010{bottom:432.682743pt;}
.y23_c00010{bottom:433.186365pt;}
.y22_c00010{bottom:440.202755pt;}
.y21_c00010{bottom:441.945929pt;}
.y20_c00010{bottom:444.092985pt;}
.y1f_c00010{bottom:444.392107pt;}
.y1e_c00010{bottom:445.645271pt;}
.y1d_c00010{bottom:447.835448pt;}
.y1c_c00010{bottom:453.796655pt;}
.y1b_c00010{bottom:455.743388pt;}
.y1a_c00010{bottom:456.707356pt;}
.y19_c00010{bottom:459.177243pt;}
.y18_c00010{bottom:460.072068pt;}
.y17_c00010{bottom:462.211752pt;}
.y16_c00010{bottom:462.962081pt;}
.y15_c00010{bottom:470.763929pt;}
.y14_c00010{bottom:472.439665pt;}
.y13_c00010{bottom:473.116375pt;}
.y12_c00010{bottom:473.495649pt;}
.y11_c00010{bottom:474.803064pt;}
.y10_c00010{bottom:475.386773pt;}
.yf_c00010{bottom:477.121079pt;}
.ye_c00010{bottom:477.587732pt;}
.yd_c00010{bottom:478.086667pt;}
.yc_c00010{bottom:484.729795pt;}
.yb_c00010{bottom:485.224573pt;}
.ya_c00010{bottom:486.623147pt;}
.y9_c00010{bottom:487.228396pt;}
.y8_c00010{bottom:489.951225pt;}
.y7_c00010{bottom:491.762488pt;}
.y6_c00010{bottom:501.759552pt;}
.y5_c00010{bottom:504.864949pt;}
.y4_c00010{bottom:505.479904pt;}
.y3_c00010{bottom:507.148796pt;}
.y2_c00010{bottom:507.605333pt;}
.y1_c00010{bottom:527.520000pt;}
.h2_c00010{height:19.600000pt;}
.hd_c00010{height:49.490430pt;}
.he_c00010{height:51.357993pt;}
.hc_c00010{height:52.291775pt;}
.h11_c00010{height:53.220850pt;}
.h3_c00010{height:53.222366pt;}
.hb_c00010{height:53.225556pt;}
.h8_c00010{height:54.159338pt;}
.h14_c00010{height:56.955647pt;}
.h7_c00010{height:56.960683pt;}
.h6_c00010{height:57.894465pt;}
.h13_c00010{height:58.823045pt;}
.h9_c00010{height:58.828247pt;}
.h12_c00010{height:59.756744pt;}
.h5_c00010{height:59.762028pt;}
.h4_c00010{height:61.625897pt;}
.h10_c00010{height:61.629592pt;}
.hf_c00010{height:66.298500pt;}
.ha_c00010{height:75.636317pt;}
.h1_c00010{height:547.333333pt;}
.h0_c00010{height:547.440000pt;}
.w0_c00010{width:340.533333pt;}
.w1_c00010{width:340.666667pt;}
.x0_c00010{left:0.000000pt;}
.x81_c00010{left:28.311077pt;}
.x75_c00010{left:29.346640pt;}
.x61_c00010{left:30.701137pt;}
.x5c_c00010{left:32.003824pt;}
.x19_c00010{left:33.024671pt;}
.x2_c00010{left:34.598667pt;}
.x1f_c00010{left:36.910716pt;}
.x72_c00010{left:41.397333pt;}
.xc_c00010{left:42.512000pt;}
.x77_c00010{left:43.572677pt;}
.x48_c00010{left:48.530221pt;}
.x3_c00010{left:50.341333pt;}
.x43_c00010{left:51.974697pt;}
.x32_c00010{left:53.926127pt;}
.x13_c00010{left:55.374032pt;}
.xd_c00010{left:58.606667pt;}
.x54_c00010{left:60.866303pt;}
.x6d_c00010{left:62.589828pt;}
.x37_c00010{left:66.528441pt;}
.x2c_c00010{left:68.104241pt;}
.x1_c00010{left:70.560000pt;}
.x67_c00010{left:71.806707pt;}
.xe_c00010{left:73.660000pt;}
.x20_c00010{left:74.657877pt;}
.x3d_c00010{left:76.738952pt;}
.x79_c00010{left:80.123029pt;}
.x49_c00010{left:81.302821pt;}
.x5f_c00010{left:82.366995pt;}
.x4b_c00010{left:84.217085pt;}
.x38_c00010{left:85.920792pt;}
.x5d_c00010{left:86.917253pt;}
.x51_c00010{left:89.020671pt;}
.x68_c00010{left:90.537147pt;}
.x26_c00010{left:92.369757pt;}
.x60_c00010{left:94.010179pt;}
.x82_c00010{left:95.468032pt;}
.x7_c00010{left:96.924833pt;}
.x76_c00010{left:98.345280pt;}
.x1a_c00010{left:101.479896pt;}
.x7d_c00010{left:102.646597pt;}
.x62_c00010{left:104.255257pt;}
.x4_c00010{left:107.889333pt;}
.x2d_c00010{left:109.659971pt;}
.x7f_c00010{left:111.887664pt;}
.x14_c00010{left:114.795481pt;}
.x5e_c00010{left:116.077596pt;}
.x4c_c00010{left:117.240052pt;}
.x7e_c00010{left:121.027499pt;}
.x63_c00010{left:122.582141pt;}
.x3b_c00010{left:127.441107pt;}
.x5_c00010{left:129.094667pt;}
.x57_c00010{left:130.885312pt;}
.x64_c00010{left:132.812443pt;}
.x21_c00010{left:134.587177pt;}
.x4a_c00010{left:136.092765pt;}
.x15_c00010{left:139.656971pt;}
.x1b_c00010{left:140.656031pt;}
.x4d_c00010{left:143.053933pt;}
.x3e_c00010{left:145.207253pt;}
.x44_c00010{left:146.137935pt;}
.x2e_c00010{left:147.382997pt;}
.xf_c00010{left:148.434667pt;}
.x1c_c00010{left:150.003741pt;}
.x39_c00010{left:151.453627pt;}
.x7a_c00010{left:154.081408pt;}
.x6e_c00010{left:156.747580pt;}
.x27_c00010{left:158.443091pt;}
.x58_c00010{left:160.679671pt;}
.x69_c00010{left:162.505987pt;}
.x33_c00010{left:165.240891pt;}
.x22_c00010{left:167.133553pt;}
.x6a_c00010{left:172.772416pt;}
.x80_c00010{left:173.970160pt;}
.x45_c00010{left:175.569873pt;}
.x6f_c00010{left:176.798587pt;}
.x59_c00010{left:180.386173pt;}
.x55_c00010{left:182.219356pt;}
.x71_c00010{left:183.918436pt;}
.x46_c00010{left:187.199465pt;}
.x34_c00010{left:189.091879pt;}
.x8_c00010{left:190.815500pt;}
.x28_c00010{left:196.315091pt;}
.x3f_c00010{left:198.947585pt;}
.x10_c00010{left:202.844000pt;}
.x23_c00010{left:203.796549pt;}
.x29_c00010{left:205.431091pt;}
.x4e_c00010{left:206.966616pt;}
.x16_c00010{left:208.266348pt;}
.x7b_c00010{left:210.221803pt;}
.x9_c00010{left:211.686167pt;}
.x40_c00010{left:212.772971pt;}
.x73_c00010{left:214.584000pt;}
.x52_c00010{left:215.847851pt;}
.x1d_c00010{left:217.111008pt;}
.x6b_c00010{left:220.666351pt;}
.x24_c00010{left:222.594109pt;}
.x5a_c00010{left:223.586145pt;}
.x11_c00010{left:224.673333pt;}
.x2a_c00010{left:226.128424pt;}
.x7c_c00010{left:228.047824pt;}
.x74_c00010{left:232.344000pt;}
.x41_c00010{left:233.663028pt;}
.x17_c00010{left:235.056881pt;}
.x6_c00010{left:236.177333pt;}
.x65_c00010{left:237.325016pt;}
.x2f_c00010{left:238.305236pt;}
.x2b_c00010{left:243.901757pt;}
.x6c_c00010{left:246.830300pt;}
.x35_c00010{left:247.896119pt;}
.x56_c00010{left:248.836064pt;}
.x42_c00010{left:250.585457pt;}
.x30_c00010{left:252.313173pt;}
.x47_c00010{left:253.459973pt;}
.x4f_c00010{left:256.463753pt;}
.x3a_c00010{left:258.787576pt;}
.xa_c00010{left:259.912833pt;}
.x3c_c00010{left:262.138265pt;}
.x70_c00010{left:265.527140pt;}
.x31_c00010{left:267.209276pt;}
.x53_c00010{left:268.900360pt;}
.x36_c00010{left:270.497939pt;}
.x1e_c00010{left:271.577313pt;}
.x78_c00010{left:273.844032pt;}
.x25_c00010{left:275.402293pt;}
.xb_c00010{left:276.974167pt;}
.x12_c00010{left:278.729333pt;}
.x66_c00010{left:282.724584pt;}
.x50_c00010{left:286.238844pt;}
.x18_c00010{left:289.115157pt;}
.x5b_c00010{left:291.708465pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00011 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00011 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00011 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00011 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00011.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdd_c00011{transform:matrix(0.054630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054630,0.000000,0.000000,0.250000,0,0);}
.m77_c00011{transform:matrix(0.071840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071840,0.000000,0.000000,0.250000,0,0);}
.m67_c00011{transform:matrix(0.106805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106805,0.000000,0.000000,0.250000,0,0);}
.m84_c00011{transform:matrix(0.124540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124540,0.000000,0.000000,0.250000,0,0);}
.m96_c00011{transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);}
.m3b_c00011{transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);}
.m8f_c00011{transform:matrix(0.142560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142560,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);}
.mdb_c00011{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00011{transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);}
.m8d_c00011{transform:matrix(0.149265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00011{transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00011{transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);}
.mbc_c00011{transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);}
.m70_c00011{transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);}
.md9_c00011{transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);}
.mbf_c00011{transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);}
.mb8_c00011{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);}
.m75_c00011{transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);}
.m5d_c00011{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.mda_c00011{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.mc3_c00011{transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);}
.mc2_c00011{transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);}
.m92_c00011{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m85_c00011{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{transform:matrix(0.172015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172015,0.000000,0.000000,0.250000,0,0);}
.m60_c00011{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.m9b_c00011{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.mc7_c00011{transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);}
.ma9_c00011{transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);}
.m22_c00011{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.mcf_c00011{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m8c_c00011{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.ma8_c00011{transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);}
.m79_c00011{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);}
.ma7_c00011{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.ma1_c00011{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m6d_c00011{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m80_c00011{transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);}
.mc8_c00011{transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.mca_c00011{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00011{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m6f_c00011{transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00011{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.m5c_c00011{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m71_c00011{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.md8_c00011{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m9c_c00011{transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);}
.mc1_c00011{transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);}
.m45_c00011{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m9a_c00011{transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);}
.mb9_c00011{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.m76_c00011{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);}
.m66_c00011{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m73_c00011{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);}
.mab_c00011{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.mb2_c00011{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.mc4_c00011{transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);}
.mb1_c00011{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.mcc_c00011{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.ma0_c00011{transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);}
.m98_c00011{transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);}
.md6_c00011{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.m7c_c00011{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);}
.m72_c00011{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m90_c00011{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mcd_c00011{transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);}
.m8e_c00011{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m99_c00011{transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);}
.m6e_c00011{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.mc0_c00011{transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);}
.m8a_c00011{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);}
.m88_c00011{transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);}
.m37_c00011{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.ma4_c00011{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.m47_c00011{transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);}
.m6b_c00011{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.m40_c00011{transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m61_c00011{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00011{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.md7_c00011{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m86_c00011{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.mc6_c00011{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m93_c00011{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.mb7_c00011{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.mc5_c00011{transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);}
.m43_c00011{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m94_c00011{transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);}
.maa_c00011{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m31_c00011{transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);}
.md4_c00011{transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);}
.m74_c00011{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m10_c00011{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m5e_c00011{transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);}
.m7d_c00011{transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);}
.mb0_c00011{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m5f_c00011{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00011{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.m62_c00011{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.m9f_c00011{transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);}
.m81_c00011{transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);}
.m95_c00011{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m82_c00011{transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00011{transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m48_c00011{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.md1_c00011{transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.m6a_c00011{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m63_c00011{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00011{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m87_c00011{transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);}
.mbb_c00011{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.mad_c00011{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.m4f_c00011{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m12_c00011{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.m46_c00011{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m44_c00011{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.m97_c00011{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.ma6_c00011{transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);}
.mc9_c00011{transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);}
.m91_c00011{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m49_c00011{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m58_c00011{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.m2e_c00011{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.md5_c00011{transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);}
.mba_c00011{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.md2_c00011{transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);}
.mdc_c00011{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m9d_c00011{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.maf_c00011{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.md0_c00011{transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);}
.m32_c00011{transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);}
.m69_c00011{transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);}
.m53_c00011{transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);}
.mb5_c00011{transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);}
.ma2_c00011{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);}
.mcb_c00011{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.m30_c00011{transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);}
.mac_c00011{transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);}
.me0_c00011{transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);}
.mb4_c00011{transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.228380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228380,0.000000,0.000000,0.250000,0,0);}
.m2c_c00011{transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);}
.m64_c00011{transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);}
.m50_c00011{transform:matrix(0.230080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230080,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m78_c00011{transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);}
.md3_c00011{transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00011{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.m4d_c00011{transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);}
.m65_c00011{transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00011{transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.236540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236540,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.238495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238495,0.000000,0.000000,0.250000,0,0);}
.mae_c00011{transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);}
.mbd_c00011{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m68_c00011{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.mce_c00011{transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);}
.mbe_c00011{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m4a_c00011{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.m7e_c00011{transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);}
.m34_c00011{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00011{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.m33_c00011{transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);}
.m7a_c00011{transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00011{transform:matrix(0.303175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303175,0.000000,0.000000,0.250000,0,0);}
.m83_c00011{transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);}
.m89_c00011{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.mde_c00011{transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00011{transform:matrix(0.613045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613045,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.746260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746260,0.000000,0.000000,0.250000,0,0);}
.mdf_c00011{transform:matrix(7.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.270185,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs11_c00011{font-size:24.150000px;}
.fs10_c00011{font-size:25.200000px;}
.fs12_c00011{font-size:26.250000px;}
.fsd_c00011{font-size:55.650000px;}
.fsf_c00011{font-size:56.700000px;}
.fs7_c00011{font-size:57.750000px;}
.fs2_c00011{font-size:58.800000px;}
.fsb_c00011{font-size:59.850000px;}
.fs6_c00011{font-size:60.900000px;}
.fs9_c00011{font-size:61.950000px;}
.fse_c00011{font-size:63.000000px;}
.fs4_c00011{font-size:64.050000px;}
.fsa_c00011{font-size:65.100000px;}
.fs8_c00011{font-size:66.150000px;}
.fs5_c00011{font-size:68.250000px;}
.fsc_c00011{font-size:69.300000px;}
.fs3_c00011{font-size:70.350000px;}
.fs1_c00011{font-size:72.450000px;}
.fs0_c00011{font-size:74.550000px;}
.y0_c00011{bottom:0.000000px;}
.y33_c00011{bottom:39.945000px;}
.y32_c00011{bottom:56.812500px;}
.y31_c00011{bottom:74.265000px;}
.y30_c00011{bottom:92.079000px;}
.y2f_c00011{bottom:108.015000px;}
.y2e_c00011{bottom:124.951500px;}
.y2d_c00011{bottom:142.407000px;}
.y2c_c00011{bottom:159.570000px;}
.y2b_c00011{bottom:178.305000px;}
.y2a_c00011{bottom:193.590000px;}
.y29_c00011{bottom:210.375000px;}
.y28_c00011{bottom:227.419500px;}
.y27_c00011{bottom:244.165500px;}
.y26_c00011{bottom:261.442500px;}
.y25_c00011{bottom:278.032500px;}
.y24_c00011{bottom:295.695000px;}
.y23_c00011{bottom:311.971500px;}
.y22_c00011{bottom:328.828500px;}
.y21_c00011{bottom:345.955500px;}
.y20_c00011{bottom:364.113000px;}
.y36_c00011{bottom:368.820000px;}
.y1f_c00011{bottom:380.364000px;}
.y35_c00011{bottom:386.640000px;}
.y1e_c00011{bottom:396.678000px;}
.y1d_c00011{bottom:396.987000px;}
.y1c_c00011{bottom:397.791000px;}
.y1b_c00011{bottom:398.592000px;}
.y1a_c00011{bottom:399.255000px;}
.y19_c00011{bottom:399.616500px;}
.y18_c00011{bottom:400.413000px;}
.y17_c00011{bottom:414.079500px;}
.y16_c00011{bottom:431.595000px;}
.y15_c00011{bottom:449.248500px;}
.y14_c00011{bottom:465.642000px;}
.y13_c00011{bottom:482.691000px;}
.y12_c00011{bottom:500.311500px;}
.y11_c00011{bottom:516.051000px;}
.y10_c00011{bottom:517.458000px;}
.yf_c00011{bottom:517.630500px;}
.ye_c00011{bottom:518.325000px;}
.yd_c00011{bottom:518.524500px;}
.yc_c00011{bottom:518.881500px;}
.yb_c00011{bottom:519.481500px;}
.ya_c00011{bottom:532.944000px;}
.y9_c00011{bottom:533.734500px;}
.y8_c00011{bottom:533.973000px;}
.y7_c00011{bottom:534.355500px;}
.y6_c00011{bottom:535.632000px;}
.y5_c00011{bottom:536.485500px;}
.y4_c00011{bottom:536.761500px;}
.y3_c00011{bottom:551.880000px;}
.y34_c00011{bottom:564.300000px;}
.y2_c00011{bottom:567.948000px;}
.y1_c00011{bottom:582.928500px;}
.h13_c00011{height:24.150000px;}
.h12_c00011{height:25.200000px;}
.h14_c00011{height:26.250000px;}
.hf_c00011{height:55.650000px;}
.h11_c00011{height:56.700000px;}
.h9_c00011{height:57.750000px;}
.h4_c00011{height:58.800000px;}
.hd_c00011{height:59.850000px;}
.h8_c00011{height:60.900000px;}
.hb_c00011{height:61.950000px;}
.h10_c00011{height:63.000000px;}
.h6_c00011{height:64.050000px;}
.hc_c00011{height:65.100000px;}
.ha_c00011{height:66.150000px;}
.h7_c00011{height:68.250000px;}
.he_c00011{height:69.300000px;}
.h5_c00011{height:70.350000px;}
.h3_c00011{height:72.450000px;}
.h2_c00011{height:74.550000px;}
.h1_c00011{height:615.750000px;}
.h0_c00011{height:615.870000px;}
.w0_c00011{width:383.100000px;}
.w1_c00011{width:383.250000px;}
.x0_c00011{left:0.000000px;}
.x72_c00011{left:32.940000px;}
.x6a_c00011{left:34.020000px;}
.x5a_c00011{left:35.370000px;}
.x48_c00011{left:36.990000px;}
.x40_c00011{left:38.070000px;}
.x1a_c00011{left:39.286500px;}
.x2_c00011{left:41.040000px;}
.x2a_c00011{left:44.818500px;}
.x75_c00011{left:46.980000px;}
.x70_c00011{left:49.680000px;}
.x51_c00011{left:51.300000px;}
.x42_c00011{left:58.590000px;}
.x14_c00011{left:60.324000px;}
.x4d_c00011{left:61.830000px;}
.x38_c00011{left:63.718500px;}
.xd_c00011{left:66.150000px;}
.x65_c00011{left:69.390000px;}
.x5b_c00011{left:72.090000px;}
.x5f_c00011{left:73.170000px;}
.x74_c00011{left:76.140000px;}
.x3_c00011{left:78.840000px;}
.x63_c00011{left:81.000000px;}
.xe_c00011{left:83.700000px;}
.x1b_c00011{left:85.494000px;}
.x2b_c00011{left:88.288500px;}
.x56_c00011{left:89.640000px;}
.x6b_c00011{left:93.960000px;}
.x6d_c00011{left:95.580000px;}
.x4_c00011{left:97.200000px;}
.x20_c00011{left:99.628500px;}
.x43_c00011{left:100.710000px;}
.x61_c00011{left:101.790000px;}
.x26_c00011{left:105.028500px;}
.x66_c00011{left:109.080000px;}
.x1c_c00011{left:112.962000px;}
.x52_c00011{left:116.640000px;}
.x62_c00011{left:118.800000px;}
.x15_c00011{left:121.329000px;}
.x4e_c00011{left:123.660000px;}
.x34_c00011{left:124.738500px;}
.x5_c00011{left:127.170000px;}
.x1d_c00011{left:128.356500px;}
.x76_c00011{left:131.760000px;}
.x53_c00011{left:133.110000px;}
.x4f_c00011{left:137.430000px;}
.x5c_c00011{left:139.320000px;}
.x6_c00011{left:145.530000px;}
.x57_c00011{left:147.690000px;}
.x67_c00011{left:153.900000px;}
.x27_c00011{left:157.408500px;}
.x30_c00011{left:159.298500px;}
.x39_c00011{left:164.428500px;}
.xf_c00011{left:165.510000px;}
.x2c_c00011{left:167.668500px;}
.x44_c00011{left:173.070000px;}
.x35_c00011{left:174.148500px;}
.x21_c00011{left:175.228500px;}
.x3d_c00011{left:178.582500px;}
.x3a_c00011{left:180.628500px;}
.x1e_c00011{left:181.810500px;}
.x31_c00011{left:184.138500px;}
.x1_c00011{left:185.490000px;}
.x7_c00011{left:194.400000px;}
.x2d_c00011{left:196.558500px;}
.x32_c00011{left:198.718500px;}
.x45_c00011{left:199.800000px;}
.x36_c00011{left:200.878500px;}
.x58_c00011{left:202.230000px;}
.x6e_c00011{left:203.850000px;}
.x64_c00011{left:206.010000px;}
.x10_c00011{left:208.170000px;}
.x28_c00011{left:209.518500px;}
.x8_c00011{left:210.870000px;}
.x16_c00011{left:212.556000px;}
.x50_c00011{left:216.000000px;}
.x11_c00011{left:220.050000px;}
.x4b_c00011{left:221.400000px;}
.x22_c00011{left:224.098500px;}
.x9_c00011{left:228.150000px;}
.x78_c00011{left:233.010000px;}
.x3b_c00011{left:234.088500px;}
.x41_c00011{left:236.790000px;}
.x23_c00011{left:237.868500px;}
.x17_c00011{left:239.859000px;}
.x12_c00011{left:241.650000px;}
.x60_c00011{left:243.000000px;}
.x68_c00011{left:246.240000px;}
.x54_c00011{left:251.100000px;}
.x2e_c00011{left:254.338500px;}
.x18_c00011{left:256.861500px;}
.x3c_c00011{left:258.928500px;}
.x46_c00011{left:262.440000px;}
.x6c_c00011{left:264.600000px;}
.x24_c00011{left:269.458500px;}
.x5d_c00011{left:271.350000px;}
.x49_c00011{left:276.210000px;}
.x55_c00011{left:278.640000px;}
.xa_c00011{left:279.720000px;}
.x29_c00011{left:284.848500px;}
.x4a_c00011{left:286.740000px;}
.x4c_c00011{left:288.900000px;}
.x25_c00011{left:290.788500px;}
.x2f_c00011{left:292.678500px;}
.x33_c00011{left:296.458500px;}
.x69_c00011{left:298.620000px;}
.x13_c00011{left:300.510000px;}
.x3e_c00011{left:301.977000px;}
.x1f_c00011{left:303.315000px;}
.xb_c00011{left:306.450000px;}
.x73_c00011{left:311.040000px;}
.x19_c00011{left:313.363500px;}
.x37_c00011{left:315.088500px;}
.x71_c00011{left:316.170000px;}
.x77_c00011{left:319.410000px;}
.x5e_c00011{left:320.760000px;}
.x47_c00011{left:322.110000px;}
.x59_c00011{left:323.460000px;}
.xc_c00011{left:324.540000px;}
.x3f_c00011{left:325.743000px;}
.x6f_c00011{left:330.750000px;}
.x7a_c00011{left:373.950000px;}
.x79_c00011{left:378.000000px;}
.x7b_c00011{left:379.080000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs11_c00011{font-size:21.466667pt;}
.fs10_c00011{font-size:22.400000pt;}
.fs12_c00011{font-size:23.333333pt;}
.fsd_c00011{font-size:49.466667pt;}
.fsf_c00011{font-size:50.400000pt;}
.fs7_c00011{font-size:51.333333pt;}
.fs2_c00011{font-size:52.266667pt;}
.fsb_c00011{font-size:53.200000pt;}
.fs6_c00011{font-size:54.133333pt;}
.fs9_c00011{font-size:55.066667pt;}
.fse_c00011{font-size:56.000000pt;}
.fs4_c00011{font-size:56.933333pt;}
.fsa_c00011{font-size:57.866667pt;}
.fs8_c00011{font-size:58.800000pt;}
.fs5_c00011{font-size:60.666667pt;}
.fsc_c00011{font-size:61.600000pt;}
.fs3_c00011{font-size:62.533333pt;}
.fs1_c00011{font-size:64.400000pt;}
.fs0_c00011{font-size:66.266667pt;}
.y0_c00011{bottom:0.000000pt;}
.y33_c00011{bottom:35.506667pt;}
.y32_c00011{bottom:50.500000pt;}
.y31_c00011{bottom:66.013333pt;}
.y30_c00011{bottom:81.848000pt;}
.y2f_c00011{bottom:96.013333pt;}
.y2e_c00011{bottom:111.068000pt;}
.y2d_c00011{bottom:126.584000pt;}
.y2c_c00011{bottom:141.840000pt;}
.y2b_c00011{bottom:158.493333pt;}
.y2a_c00011{bottom:172.080000pt;}
.y29_c00011{bottom:187.000000pt;}
.y28_c00011{bottom:202.150667pt;}
.y27_c00011{bottom:217.036000pt;}
.y26_c00011{bottom:232.393333pt;}
.y25_c00011{bottom:247.140000pt;}
.y24_c00011{bottom:262.840000pt;}
.y23_c00011{bottom:277.308000pt;}
.y22_c00011{bottom:292.292000pt;}
.y21_c00011{bottom:307.516000pt;}
.y20_c00011{bottom:323.656000pt;}
.y36_c00011{bottom:327.840000pt;}
.y1f_c00011{bottom:338.101333pt;}
.y35_c00011{bottom:343.680000pt;}
.y1e_c00011{bottom:352.602667pt;}
.y1d_c00011{bottom:352.877333pt;}
.y1c_c00011{bottom:353.592000pt;}
.y1b_c00011{bottom:354.304000pt;}
.y1a_c00011{bottom:354.893333pt;}
.y19_c00011{bottom:355.214667pt;}
.y18_c00011{bottom:355.922667pt;}
.y17_c00011{bottom:368.070667pt;}
.y16_c00011{bottom:383.640000pt;}
.y15_c00011{bottom:399.332000pt;}
.y14_c00011{bottom:413.904000pt;}
.y13_c00011{bottom:429.058667pt;}
.y12_c00011{bottom:444.721333pt;}
.y11_c00011{bottom:458.712000pt;}
.y10_c00011{bottom:459.962667pt;}
.yf_c00011{bottom:460.116000pt;}
.ye_c00011{bottom:460.733333pt;}
.yd_c00011{bottom:460.910667pt;}
.yc_c00011{bottom:461.228000pt;}
.yb_c00011{bottom:461.761333pt;}
.ya_c00011{bottom:473.728000pt;}
.y9_c00011{bottom:474.430667pt;}
.y8_c00011{bottom:474.642667pt;}
.y7_c00011{bottom:474.982667pt;}
.y6_c00011{bottom:476.117333pt;}
.y5_c00011{bottom:476.876000pt;}
.y4_c00011{bottom:477.121333pt;}
.y3_c00011{bottom:490.560000pt;}
.y34_c00011{bottom:501.600000pt;}
.y2_c00011{bottom:504.842667pt;}
.y1_c00011{bottom:518.158667pt;}
.h13_c00011{height:21.466667pt;}
.h12_c00011{height:22.400000pt;}
.h14_c00011{height:23.333333pt;}
.hf_c00011{height:49.466667pt;}
.h11_c00011{height:50.400000pt;}
.h9_c00011{height:51.333333pt;}
.h4_c00011{height:52.266667pt;}
.hd_c00011{height:53.200000pt;}
.h8_c00011{height:54.133333pt;}
.hb_c00011{height:55.066667pt;}
.h10_c00011{height:56.000000pt;}
.h6_c00011{height:56.933333pt;}
.hc_c00011{height:57.866667pt;}
.ha_c00011{height:58.800000pt;}
.h7_c00011{height:60.666667pt;}
.he_c00011{height:61.600000pt;}
.h5_c00011{height:62.533333pt;}
.h3_c00011{height:64.400000pt;}
.h2_c00011{height:66.266667pt;}
.h1_c00011{height:547.333333pt;}
.h0_c00011{height:547.440000pt;}
.w0_c00011{width:340.533333pt;}
.w1_c00011{width:340.666667pt;}
.x0_c00011{left:0.000000pt;}
.x72_c00011{left:29.280000pt;}
.x6a_c00011{left:30.240000pt;}
.x5a_c00011{left:31.440000pt;}
.x48_c00011{left:32.880000pt;}
.x40_c00011{left:33.840000pt;}
.x1a_c00011{left:34.921333pt;}
.x2_c00011{left:36.480000pt;}
.x2a_c00011{left:39.838667pt;}
.x75_c00011{left:41.760000pt;}
.x70_c00011{left:44.160000pt;}
.x51_c00011{left:45.600000pt;}
.x42_c00011{left:52.080000pt;}
.x14_c00011{left:53.621333pt;}
.x4d_c00011{left:54.960000pt;}
.x38_c00011{left:56.638667pt;}
.xd_c00011{left:58.800000pt;}
.x65_c00011{left:61.680000pt;}
.x5b_c00011{left:64.080000pt;}
.x5f_c00011{left:65.040000pt;}
.x74_c00011{left:67.680000pt;}
.x3_c00011{left:70.080000pt;}
.x63_c00011{left:72.000000pt;}
.xe_c00011{left:74.400000pt;}
.x1b_c00011{left:75.994667pt;}
.x2b_c00011{left:78.478667pt;}
.x56_c00011{left:79.680000pt;}
.x6b_c00011{left:83.520000pt;}
.x6d_c00011{left:84.960000pt;}
.x4_c00011{left:86.400000pt;}
.x20_c00011{left:88.558667pt;}
.x43_c00011{left:89.520000pt;}
.x61_c00011{left:90.480000pt;}
.x26_c00011{left:93.358667pt;}
.x66_c00011{left:96.960000pt;}
.x1c_c00011{left:100.410667pt;}
.x52_c00011{left:103.680000pt;}
.x62_c00011{left:105.600000pt;}
.x15_c00011{left:107.848000pt;}
.x4e_c00011{left:109.920000pt;}
.x34_c00011{left:110.878667pt;}
.x5_c00011{left:113.040000pt;}
.x1d_c00011{left:114.094667pt;}
.x76_c00011{left:117.120000pt;}
.x53_c00011{left:118.320000pt;}
.x4f_c00011{left:122.160000pt;}
.x5c_c00011{left:123.840000pt;}
.x6_c00011{left:129.360000pt;}
.x57_c00011{left:131.280000pt;}
.x67_c00011{left:136.800000pt;}
.x27_c00011{left:139.918667pt;}
.x30_c00011{left:141.598667pt;}
.x39_c00011{left:146.158667pt;}
.xf_c00011{left:147.120000pt;}
.x2c_c00011{left:149.038667pt;}
.x44_c00011{left:153.840000pt;}
.x35_c00011{left:154.798667pt;}
.x21_c00011{left:155.758667pt;}
.x3d_c00011{left:158.740000pt;}
.x3a_c00011{left:160.558667pt;}
.x1e_c00011{left:161.609333pt;}
.x31_c00011{left:163.678667pt;}
.x1_c00011{left:164.880000pt;}
.x7_c00011{left:172.800000pt;}
.x2d_c00011{left:174.718667pt;}
.x32_c00011{left:176.638667pt;}
.x45_c00011{left:177.600000pt;}
.x36_c00011{left:178.558667pt;}
.x58_c00011{left:179.760000pt;}
.x6e_c00011{left:181.200000pt;}
.x64_c00011{left:183.120000pt;}
.x10_c00011{left:185.040000pt;}
.x28_c00011{left:186.238667pt;}
.x8_c00011{left:187.440000pt;}
.x16_c00011{left:188.938667pt;}
.x50_c00011{left:192.000000pt;}
.x11_c00011{left:195.600000pt;}
.x4b_c00011{left:196.800000pt;}
.x22_c00011{left:199.198667pt;}
.x9_c00011{left:202.800000pt;}
.x78_c00011{left:207.120000pt;}
.x3b_c00011{left:208.078667pt;}
.x41_c00011{left:210.480000pt;}
.x23_c00011{left:211.438667pt;}
.x17_c00011{left:213.208000pt;}
.x12_c00011{left:214.800000pt;}
.x60_c00011{left:216.000000pt;}
.x68_c00011{left:218.880000pt;}
.x54_c00011{left:223.200000pt;}
.x2e_c00011{left:226.078667pt;}
.x18_c00011{left:228.321333pt;}
.x3c_c00011{left:230.158667pt;}
.x46_c00011{left:233.280000pt;}
.x6c_c00011{left:235.200000pt;}
.x24_c00011{left:239.518667pt;}
.x5d_c00011{left:241.200000pt;}
.x49_c00011{left:245.520000pt;}
.x55_c00011{left:247.680000pt;}
.xa_c00011{left:248.640000pt;}
.x29_c00011{left:253.198667pt;}
.x4a_c00011{left:254.880000pt;}
.x4c_c00011{left:256.800000pt;}
.x25_c00011{left:258.478667pt;}
.x2f_c00011{left:260.158667pt;}
.x33_c00011{left:263.518667pt;}
.x69_c00011{left:265.440000pt;}
.x13_c00011{left:267.120000pt;}
.x3e_c00011{left:268.424000pt;}
.x1f_c00011{left:269.613333pt;}
.xb_c00011{left:272.400000pt;}
.x73_c00011{left:276.480000pt;}
.x19_c00011{left:278.545333pt;}
.x37_c00011{left:280.078667pt;}
.x71_c00011{left:281.040000pt;}
.x77_c00011{left:283.920000pt;}
.x5e_c00011{left:285.120000pt;}
.x47_c00011{left:286.320000pt;}
.x59_c00011{left:287.520000pt;}
.xc_c00011{left:288.480000pt;}
.x3f_c00011{left:289.549333pt;}
.x6f_c00011{left:294.000000pt;}
.x7a_c00011{left:332.400000pt;}
.x79_c00011{left:336.000000pt;}
.x7b_c00011{left:336.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00012 {
    display:none;
  }
  .loading-indicator_c00012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00012 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00012 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00012" -> "#page-container .classname_c00012")
 */
.pf_c00012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00012 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00012 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00012 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00012 {overflow:visible;}
  }
}
.c_c00012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00012 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00012:after { /* webkit #35443 */
  content: '';
}
.t_c00012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00012 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00012 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00012 { /* info for Javascript */
  display:none;
}
.l_c00012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00012:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00012 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00012.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00012{transform:matrix(0.084249,0.002783,-0.008254,0.249864,0,0);-ms-transform:matrix(0.084249,0.002783,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.084249,0.002783,-0.008254,0.249864,0,0);}
.m50_c00012{transform:matrix(0.088550,0.002479,-0.006997,0.249902,0,0);-ms-transform:matrix(0.088550,0.002479,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.088550,0.002479,-0.006997,0.249902,0,0);}
.m7d_c00012{transform:matrix(0.110939,0.003665,-0.008254,0.249864,0,0);-ms-transform:matrix(0.110939,0.003665,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.110939,0.003665,-0.008254,0.249864,0,0);}
.m7b_c00012{transform:matrix(0.120539,0.003982,-0.008254,0.249864,0,0);-ms-transform:matrix(0.120539,0.003982,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.120539,0.003982,-0.008254,0.249864,0,0);}
.m74_c00012{transform:matrix(0.130394,0.004307,-0.008254,0.249864,0,0);-ms-transform:matrix(0.130394,0.004307,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.130394,0.004307,-0.008254,0.249864,0,0);}
.ma8_c00012{transform:matrix(0.130664,0.002352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130664,0.002352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130664,0.002352,-0.004499,0.249960,0,0);}
.m5f_c00012{transform:matrix(0.139604,0.004751,-0.008504,0.249855,0,0);-ms-transform:matrix(0.139604,0.004751,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.139604,0.004751,-0.008504,0.249855,0,0);}
.me_c00012{transform:matrix(0.140741,0.003519,-0.006248,0.249922,0,0);-ms-transform:matrix(0.140741,0.003519,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.140741,0.003519,-0.006248,0.249922,0,0);}
.mdc_c00012{transform:matrix(0.146895,0.005146,-0.008753,0.249847,0,0);-ms-transform:matrix(0.146895,0.005146,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.146895,0.005146,-0.008753,0.249847,0,0);}
.m8b_c00012{transform:matrix(0.147619,0.004876,-0.008254,0.249864,0,0);-ms-transform:matrix(0.147619,0.004876,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.147619,0.004876,-0.008254,0.249864,0,0);}
.m88_c00012{transform:matrix(0.151622,0.005009,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151622,0.005009,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151622,0.005009,-0.008254,0.249864,0,0);}
.m8d_c00012{transform:matrix(0.156670,0.005175,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156670,0.005175,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156670,0.005175,-0.008254,0.249864,0,0);}
.m7e_c00012{transform:matrix(0.158494,0.005236,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158494,0.005236,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158494,0.005236,-0.008254,0.249864,0,0);}
.m7a_c00012{transform:matrix(0.158668,0.005241,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158668,0.005241,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158668,0.005241,-0.008254,0.249864,0,0);}
.m7_c00012{transform:matrix(0.159420,0.003986,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159420,0.003986,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159420,0.003986,-0.006248,0.249922,0,0);}
.m54_c00012{transform:matrix(0.160477,0.004493,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160477,0.004493,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160477,0.004493,-0.006997,0.249902,0,0);}
.ma_c00012{transform:matrix(0.161375,0.004034,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161375,0.004034,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161375,0.004034,-0.006248,0.249922,0,0);}
.mad_c00012{transform:matrix(0.161574,0.002908,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161574,0.002908,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161574,0.002908,-0.004499,0.249960,0,0);}
.m87_c00012{transform:matrix(0.162681,0.005374,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162681,0.005374,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162681,0.005374,-0.008254,0.249864,0,0);}
.m30_c00012{transform:matrix(0.163957,0.003771,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163957,0.003771,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163957,0.003771,-0.005748,0.249934,0,0);}
.md2_c00012{transform:matrix(0.164623,0.002963,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164623,0.002963,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164623,0.002963,-0.004499,0.249960,0,0);}
.m85_c00012{transform:matrix(0.165035,0.005452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165035,0.005452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165035,0.005452,-0.008254,0.249864,0,0);}
.m7f_c00012{transform:matrix(0.165340,0.005462,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165340,0.005462,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165340,0.005462,-0.008254,0.249864,0,0);}
.m7c_c00012{transform:matrix(0.165570,0.005469,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165570,0.005469,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165570,0.005469,-0.008254,0.249864,0,0);}
.m8c_c00012{transform:matrix(0.166489,0.005500,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166489,0.005500,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166489,0.005500,-0.008254,0.249864,0,0);}
.m60_c00012{transform:matrix(0.167358,0.005696,-0.008504,0.249855,0,0);-ms-transform:matrix(0.167358,0.005696,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.167358,0.005696,-0.008504,0.249855,0,0);}
.m99_c00012{transform:matrix(0.168383,0.005562,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168383,0.005562,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168383,0.005562,-0.008254,0.249864,0,0);}
.m83_c00012{transform:matrix(0.169992,0.005615,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169992,0.005615,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169992,0.005615,-0.008254,0.249864,0,0);}
.m17_c00012{transform:matrix(0.170337,0.004258,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170337,0.004258,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170337,0.004258,-0.006248,0.249922,0,0);}
.md6_c00012{transform:matrix(0.170537,0.003070,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170537,0.003070,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170537,0.003070,-0.004499,0.249960,0,0);}
.mdd_c00012{transform:matrix(0.171285,0.006001,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171285,0.006001,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171285,0.006001,-0.008753,0.249847,0,0);}
.m5a_c00012{transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);}
.mc2_c00012{transform:matrix(0.173807,0.003129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173807,0.003129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173807,0.003129,-0.004499,0.249960,0,0);}
.mc7_c00012{transform:matrix(0.174232,0.003136,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174232,0.003136,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174232,0.003136,-0.004499,0.249960,0,0);}
.m14_c00012{transform:matrix(0.175250,0.004381,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175250,0.004381,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175250,0.004381,-0.006248,0.249922,0,0);}
.m24_c00012{transform:matrix(0.175639,0.004040,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175639,0.004040,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175639,0.004040,-0.005748,0.249934,0,0);}
.m4_c00012{transform:matrix(0.175955,0.004399,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175955,0.004399,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175955,0.004399,-0.006248,0.249922,0,0);}
.m35_c00012{transform:matrix(0.176578,0.004061,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176578,0.004061,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176578,0.004061,-0.005748,0.249934,0,0);}
.m8f_c00012{transform:matrix(0.177288,0.005856,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177288,0.005856,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177288,0.005856,-0.008254,0.249864,0,0);}
.mc1_c00012{transform:matrix(0.177441,0.003194,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177441,0.003194,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177441,0.003194,-0.004499,0.249960,0,0);}
.me1_c00012{transform:matrix(0.177966,0.006235,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177966,0.006235,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177966,0.006235,-0.008753,0.249847,0,0);}
.m34_c00012{transform:matrix(0.178038,0.004095,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178038,0.004095,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178038,0.004095,-0.005748,0.249934,0,0);}
.m94_c00012{transform:matrix(0.178753,0.005905,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178753,0.005905,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178753,0.005905,-0.008254,0.249864,0,0);}
.m1e_c00012{transform:matrix(0.178809,0.004470,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178809,0.004470,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178809,0.004470,-0.006248,0.249922,0,0);}
.mda_c00012{transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);}
.m86_c00012{transform:matrix(0.179617,0.005933,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179617,0.005933,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179617,0.005933,-0.008254,0.249864,0,0);}
.mbb_c00012{transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);}
.m32_c00012{transform:matrix(0.179682,0.004133,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179682,0.004133,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179682,0.004133,-0.005748,0.249934,0,0);}
.m2f_c00012{transform:matrix(0.179772,0.004135,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179772,0.004135,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179772,0.004135,-0.005748,0.249934,0,0);}
.mb5_c00012{transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);}
.m9c_c00012{transform:matrix(0.180157,0.005951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180157,0.005951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180157,0.005951,-0.008254,0.249864,0,0);}
.m33_c00012{transform:matrix(0.180282,0.004146,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180282,0.004146,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180282,0.004146,-0.005748,0.249934,0,0);}
.m53_c00012{transform:matrix(0.181179,0.005073,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181179,0.005073,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181179,0.005073,-0.006997,0.249902,0,0);}
.m25_c00012{transform:matrix(0.181817,0.004182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181817,0.004182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181817,0.004182,-0.005748,0.249934,0,0);}
.md9_c00012{transform:matrix(0.182021,0.003276,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182021,0.003276,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182021,0.003276,-0.004499,0.249960,0,0);}
.m49_c00012{transform:matrix(0.182219,0.005102,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182219,0.005102,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182219,0.005102,-0.006997,0.249902,0,0);}
.m2_c00012{transform:matrix(0.182703,0.004568,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182703,0.004568,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182703,0.004568,-0.006248,0.249922,0,0);}
.m3b_c00012{transform:matrix(0.182727,0.004203,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182727,0.004203,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182727,0.004203,-0.005748,0.249934,0,0);}
.m9e_c00012{transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);}
.mf_c00012{transform:matrix(0.182808,0.004570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182808,0.004570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182808,0.004570,-0.006248,0.249922,0,0);}
.mc4_c00012{transform:matrix(0.182835,0.003291,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182835,0.003291,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182835,0.003291,-0.004499,0.249960,0,0);}
.mb_c00012{transform:matrix(0.182853,0.004571,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182853,0.004571,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182853,0.004571,-0.006248,0.249922,0,0);}
.mab_c00012{transform:matrix(0.183080,0.003295,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183080,0.003295,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183080,0.003295,-0.004499,0.249960,0,0);}
.m15_c00012{transform:matrix(0.183493,0.004587,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183493,0.004587,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183493,0.004587,-0.006248,0.249922,0,0);}
.m89_c00012{transform:matrix(0.183610,0.006065,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183610,0.006065,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183610,0.006065,-0.008254,0.249864,0,0);}
.m92_c00012{transform:matrix(0.183780,0.006071,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183780,0.006071,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183780,0.006071,-0.008254,0.249864,0,0);}
.m70_c00012{transform:matrix(0.184090,0.006081,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184090,0.006081,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184090,0.006081,-0.008254,0.249864,0,0);}
.mcb_c00012{transform:matrix(0.184105,0.003314,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184105,0.003314,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184105,0.003314,-0.004499,0.249960,0,0);}
.m9_c00012{transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);}
.m84_c00012{transform:matrix(0.184599,0.006098,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184599,0.006098,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184599,0.006098,-0.008254,0.249864,0,0);}
.m98_c00012{transform:matrix(0.184719,0.006102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184719,0.006102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184719,0.006102,-0.008254,0.249864,0,0);}
.m18_c00012{transform:matrix(0.185122,0.004628,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185122,0.004628,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185122,0.004628,-0.006248,0.249922,0,0);}
.m1d_c00012{transform:matrix(0.185792,0.004645,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185792,0.004645,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185792,0.004645,-0.006248,0.249922,0,0);}
.mae_c00012{transform:matrix(0.186410,0.003355,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186410,0.003355,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186410,0.003355,-0.004499,0.249960,0,0);}
.ma1_c00012{transform:matrix(0.186863,0.006173,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186863,0.006173,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186863,0.006173,-0.008254,0.249864,0,0);}
.m19_c00012{transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);}
.m20_c00012{transform:matrix(0.187021,0.004301,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187021,0.004301,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187021,0.004301,-0.005748,0.249934,0,0);}
.mde_c00012{transform:matrix(0.187235,0.006560,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187235,0.006560,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187235,0.006560,-0.008753,0.249847,0,0);}
.mc3_c00012{transform:matrix(0.187650,0.003378,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187650,0.003378,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187650,0.003378,-0.004499,0.249960,0,0);}
.m2e_c00012{transform:matrix(0.187820,0.004320,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187820,0.004320,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187820,0.004320,-0.005748,0.249934,0,0);}
.mb1_c00012{transform:matrix(0.188045,0.003385,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188045,0.003385,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188045,0.003385,-0.004499,0.249960,0,0);}
.m93_c00012{transform:matrix(0.188402,0.006223,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188402,0.006223,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188402,0.006223,-0.008254,0.249864,0,0);}
.m72_c00012{transform:matrix(0.188607,0.006230,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188607,0.006230,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188607,0.006230,-0.008254,0.249864,0,0);}
.m8e_c00012{transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);}
.mce_c00012{transform:matrix(0.189159,0.003405,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189159,0.003405,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189159,0.003405,-0.004499,0.249960,0,0);}
.m96_c00012{transform:matrix(0.189212,0.006250,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189212,0.006250,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189212,0.006250,-0.008254,0.249864,0,0);}
.mcf_c00012{transform:matrix(0.189869,0.003418,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189869,0.003418,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189869,0.003418,-0.004499,0.249960,0,0);}
.m9b_c00012{transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);}
.md0_c00012{transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);}
.mca_c00012{transform:matrix(0.191734,0.003451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191734,0.003451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191734,0.003451,-0.004499,0.249960,0,0);}
.mdf_c00012{transform:matrix(0.191842,0.006721,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191842,0.006721,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191842,0.006721,-0.008753,0.249847,0,0);}
.m38_c00012{transform:matrix(0.192314,0.004423,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192314,0.004423,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192314,0.004423,-0.005748,0.249934,0,0);}
.m39_c00012{transform:matrix(0.192794,0.004434,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192794,0.004434,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192794,0.004434,-0.005748,0.249934,0,0);}
.m1a_c00012{transform:matrix(0.192810,0.004820,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192810,0.004820,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192810,0.004820,-0.006248,0.249922,0,0);}
.m28_c00012{transform:matrix(0.193104,0.004441,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193104,0.004441,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193104,0.004441,-0.005748,0.249934,0,0);}
.m3c_c00012{transform:matrix(0.193394,0.004448,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193394,0.004448,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193394,0.004448,-0.005748,0.249934,0,0);}
.m10_c00012{transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);}
.mc_c00012{transform:matrix(0.193525,0.004838,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193525,0.004838,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193525,0.004838,-0.006248,0.249922,0,0);}
.m22_c00012{transform:matrix(0.193554,0.004452,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193554,0.004452,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193554,0.004452,-0.005748,0.249934,0,0);}
.mb6_c00012{transform:matrix(0.194528,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194528,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194528,0.003502,-0.004499,0.249960,0,0);}
.m52_c00012{transform:matrix(0.194889,0.005457,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194889,0.005457,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194889,0.005457,-0.006997,0.249902,0,0);}
.ma5_c00012{transform:matrix(0.195003,0.003510,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195003,0.003510,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195003,0.003510,-0.004499,0.249960,0,0);}
.m29_c00012{transform:matrix(0.195278,0.004491,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195278,0.004491,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195278,0.004491,-0.005748,0.249934,0,0);}
.m5e_c00012{transform:matrix(0.195328,0.005469,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195328,0.005469,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195328,0.005469,-0.006997,0.249902,0,0);}
.mc8_c00012{transform:matrix(0.195583,0.003520,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195583,0.003520,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195583,0.003520,-0.004499,0.249960,0,0);}
.m79_c00012{transform:matrix(0.196058,0.006476,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196058,0.006476,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196058,0.006476,-0.008254,0.249864,0,0);}
.mb2_c00012{transform:matrix(0.196383,0.003535,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196383,0.003535,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196383,0.003535,-0.004499,0.249960,0,0);}
.m8_c00012{transform:matrix(0.197338,0.004933,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197338,0.004933,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197338,0.004933,-0.006248,0.249922,0,0);}
.md4_c00012{transform:matrix(0.198033,0.003565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198033,0.003565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198033,0.003565,-0.004499,0.249960,0,0);}
.mb9_c00012{transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);}
.mc5_c00012{transform:matrix(0.198568,0.003574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198568,0.003574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198568,0.003574,-0.004499,0.249960,0,0);}
.m71_c00012{transform:matrix(0.198712,0.006564,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198712,0.006564,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198712,0.006564,-0.008254,0.249864,0,0);}
.m6a_c00012{transform:matrix(0.198907,0.006570,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198907,0.006570,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198907,0.006570,-0.008254,0.249864,0,0);}
.mc9_c00012{transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);}
.m9d_c00012{transform:matrix(0.199246,0.006582,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199246,0.006582,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199246,0.006582,-0.008254,0.249864,0,0);}
.ma3_c00012{transform:matrix(0.199991,0.006606,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199991,0.006606,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199991,0.006606,-0.008254,0.249864,0,0);}
.m37_c00012{transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);}
.m1c_c00012{transform:matrix(0.200462,0.005012,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200462,0.005012,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200462,0.005012,-0.006248,0.249922,0,0);}
.md1_c00012{transform:matrix(0.200538,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200538,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200538,0.003610,-0.004499,0.249960,0,0);}
.m23_c00012{transform:matrix(0.200602,0.004614,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200602,0.004614,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200602,0.004614,-0.005748,0.249934,0,0);}
.m9a_c00012{transform:matrix(0.200611,0.006627,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200611,0.006627,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200611,0.006627,-0.008254,0.249864,0,0);}
.md_c00012{transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);}
.m12_c00012{transform:matrix(0.200832,0.005021,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200832,0.005021,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200832,0.005021,-0.006248,0.249922,0,0);}
.m64_c00012{transform:matrix(0.201209,0.006848,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201209,0.006848,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201209,0.006848,-0.008504,0.249855,0,0);}
.m3_c00012{transform:matrix(0.201267,0.005032,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201267,0.005032,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201267,0.005032,-0.006248,0.249922,0,0);}
.md8_c00012{transform:matrix(0.201472,0.003627,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201472,0.003627,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201472,0.003627,-0.004499,0.249960,0,0);}
.mb4_c00012{transform:matrix(0.202037,0.003637,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202037,0.003637,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202037,0.003637,-0.004499,0.249960,0,0);}
.m8a_c00012{transform:matrix(0.202075,0.006675,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202075,0.006675,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202075,0.006675,-0.008254,0.249864,0,0);}
.m40_c00012{transform:matrix(0.202541,0.004658,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202541,0.004658,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202541,0.004658,-0.005748,0.249934,0,0);}
.m78_c00012{transform:matrix(0.203284,0.006715,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203284,0.006715,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203284,0.006715,-0.008254,0.249864,0,0);}
.mbd_c00012{transform:matrix(0.203342,0.003660,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203342,0.003660,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203342,0.003660,-0.004499,0.249960,0,0);}
.ma2_c00012{transform:matrix(0.203549,0.006724,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203549,0.006724,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203549,0.006724,-0.008254,0.249864,0,0);}
.m26_c00012{transform:matrix(0.203786,0.004687,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203786,0.004687,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203786,0.004687,-0.005748,0.249934,0,0);}
.m82_c00012{transform:matrix(0.204034,0.006740,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204034,0.006740,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204034,0.006740,-0.008254,0.249864,0,0);}
.maa_c00012{transform:matrix(0.204472,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204472,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204472,0.003680,-0.004499,0.249960,0,0);}
.mdb_c00012{transform:matrix(0.204564,0.007167,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204564,0.007167,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204564,0.007167,-0.008753,0.249847,0,0);}
.md7_c00012{transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);}
.mc0_c00012{transform:matrix(0.205797,0.003704,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205797,0.003704,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205797,0.003704,-0.004499,0.249960,0,0);}
.m4f_c00012{transform:matrix(0.206584,0.005784,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206584,0.005784,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206584,0.005784,-0.006997,0.249902,0,0);}
.m2b_c00012{transform:matrix(0.206960,0.004760,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206960,0.004760,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206960,0.004760,-0.005748,0.249934,0,0);}
.mcc_c00012{transform:matrix(0.207051,0.003727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207051,0.003727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207051,0.003727,-0.004499,0.249960,0,0);}
.ma9_c00012{transform:matrix(0.207301,0.003731,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207301,0.003731,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207301,0.003731,-0.004499,0.249960,0,0);}
.m36_c00012{transform:matrix(0.207460,0.004772,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207460,0.004772,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207460,0.004772,-0.005748,0.249934,0,0);}
.m6_c00012{transform:matrix(0.207750,0.005194,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207750,0.005194,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207750,0.005194,-0.006248,0.249922,0,0);}
.m3f_c00012{transform:matrix(0.207870,0.004781,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207870,0.004781,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207870,0.004781,-0.005748,0.249934,0,0);}
.mac_c00012{transform:matrix(0.208316,0.003750,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208316,0.003750,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208316,0.003750,-0.004499,0.249960,0,0);}
.m11_c00012{transform:matrix(0.208380,0.005209,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208380,0.005209,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208380,0.005209,-0.006248,0.249922,0,0);}
.m63_c00012{transform:matrix(0.208704,0.007103,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208704,0.007103,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208704,0.007103,-0.008504,0.249855,0,0);}
.mba_c00012{transform:matrix(0.209111,0.003764,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209111,0.003764,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209111,0.003764,-0.004499,0.249960,0,0);}
.m58_c00012{transform:matrix(0.209203,0.005858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209203,0.005858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209203,0.005858,-0.006997,0.249902,0,0);}
.m80_c00012{transform:matrix(0.209756,0.006929,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209756,0.006929,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209756,0.006929,-0.008254,0.249864,0,0);}
.m5b_c00012{transform:matrix(0.210088,0.005882,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210088,0.005882,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210088,0.005882,-0.006997,0.249902,0,0);}
.ma6_c00012{transform:matrix(0.210211,0.003784,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210211,0.003784,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210211,0.003784,-0.004499,0.249960,0,0);}
.m5d_c00012{transform:matrix(0.210333,0.005889,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210333,0.005889,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210333,0.005889,-0.006997,0.249902,0,0);}
.md5_c00012{transform:matrix(0.210666,0.003792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210666,0.003792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210666,0.003792,-0.004499,0.249960,0,0);}
.m1_c00012{transform:matrix(0.211239,0.005281,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211239,0.005281,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211239,0.005281,-0.006248,0.249922,0,0);}
.mb8_c00012{transform:matrix(0.212716,0.003829,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212716,0.003829,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212716,0.003829,-0.004499,0.249960,0,0);}
.m6f_c00012{transform:matrix(0.212939,0.007034,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212939,0.007034,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212939,0.007034,-0.008254,0.249864,0,0);}
.m3a_c00012{transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);}
.md3_c00012{transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);}
.m2c_c00012{transform:matrix(0.214263,0.004928,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214263,0.004928,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214263,0.004928,-0.005748,0.249934,0,0);}
.m44_c00012{transform:matrix(0.214546,0.006007,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214546,0.006007,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214546,0.006007,-0.006997,0.249902,0,0);}
.m47_c00012{transform:matrix(0.214706,0.006012,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214706,0.006012,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214706,0.006012,-0.006997,0.249902,0,0);}
.m56_c00012{transform:matrix(0.215506,0.006034,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215506,0.006034,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215506,0.006034,-0.006997,0.249902,0,0);}
.m41_c00012{transform:matrix(0.215543,0.004957,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215543,0.004957,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215543,0.004957,-0.005748,0.249934,0,0);}
.m13_c00012{transform:matrix(0.215953,0.005399,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215953,0.005399,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215953,0.005399,-0.006248,0.249922,0,0);}
.mb3_c00012{transform:matrix(0.215975,0.003888,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215975,0.003888,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215975,0.003888,-0.004499,0.249960,0,0);}
.me0_c00012{transform:matrix(0.215982,0.007567,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215982,0.007567,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215982,0.007567,-0.008753,0.249847,0,0);}
.m2a_c00012{transform:matrix(0.216858,0.004988,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216858,0.004988,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216858,0.004988,-0.005748,0.249934,0,0);}
.mbc_c00012{transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);}
.m73_c00012{transform:matrix(0.218776,0.007227,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218776,0.007227,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218776,0.007227,-0.008254,0.249864,0,0);}
.m55_c00012{transform:matrix(0.219179,0.006137,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219179,0.006137,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219179,0.006137,-0.006997,0.249902,0,0);}
.m57_c00012{transform:matrix(0.219429,0.006144,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219429,0.006144,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219429,0.006144,-0.006997,0.249902,0,0);}
.m42_c00012{transform:matrix(0.219617,0.005051,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219617,0.005051,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219617,0.005051,-0.005748,0.249934,0,0);}
.m46_c00012{transform:matrix(0.219794,0.006154,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219794,0.006154,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219794,0.006154,-0.006997,0.249902,0,0);}
.m21_c00012{transform:matrix(0.221676,0.005099,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221676,0.005099,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221676,0.005099,-0.005748,0.249934,0,0);}
.m75_c00012{transform:matrix(0.221719,0.007324,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221719,0.007324,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221719,0.007324,-0.008254,0.249864,0,0);}
.m45_c00012{transform:matrix(0.223372,0.006254,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223372,0.006254,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223372,0.006254,-0.006997,0.249902,0,0);}
.m95_c00012{transform:matrix(0.223878,0.007395,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223878,0.007395,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223878,0.007395,-0.008254,0.249864,0,0);}
.m31_c00012{transform:matrix(0.224356,0.005160,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224356,0.005160,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224356,0.005160,-0.005748,0.249934,0,0);}
.mc6_c00012{transform:matrix(0.226498,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226498,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226498,0.004077,-0.004499,0.249960,0,0);}
.mcd_c00012{transform:matrix(0.226753,0.004082,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226753,0.004082,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226753,0.004082,-0.004499,0.249960,0,0);}
.m68_c00012{transform:matrix(0.227161,0.007504,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227161,0.007504,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227161,0.007504,-0.008254,0.249864,0,0);}
.m62_c00012{transform:matrix(0.227963,0.007759,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227963,0.007759,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227963,0.007759,-0.008504,0.249855,0,0);}
.m9f_c00012{transform:matrix(0.228026,0.007532,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228026,0.007532,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228026,0.007532,-0.008254,0.249864,0,0);}
.m48_c00012{transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);}
.mbe_c00012{transform:matrix(0.229358,0.004128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229358,0.004128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229358,0.004128,-0.004499,0.249960,0,0);}
.mb7_c00012{transform:matrix(0.229403,0.004129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229403,0.004129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229403,0.004129,-0.004499,0.249960,0,0);}
.ma0_c00012{transform:matrix(0.229550,0.007583,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229550,0.007583,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229550,0.007583,-0.008254,0.249864,0,0);}
.m51_c00012{transform:matrix(0.232379,0.006507,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232379,0.006507,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232379,0.006507,-0.006997,0.249902,0,0);}
.m4b_c00012{transform:matrix(0.234133,0.006556,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234133,0.006556,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234133,0.006556,-0.006997,0.249902,0,0);}
.m6b_c00012{transform:matrix(0.234717,0.007753,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234717,0.007753,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234717,0.007753,-0.008254,0.249864,0,0);}
.m1b_c00012{transform:matrix(0.235536,0.005888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235536,0.005888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235536,0.005888,-0.006248,0.249922,0,0);}
.m59_c00012{transform:matrix(0.236627,0.006626,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236627,0.006626,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236627,0.006626,-0.006997,0.249902,0,0);}
.m4a_c00012{transform:matrix(0.237022,0.006637,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237022,0.006637,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237022,0.006637,-0.006997,0.249902,0,0);}
.m69_c00012{transform:matrix(0.238385,0.007875,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238385,0.007875,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238385,0.007875,-0.008254,0.249864,0,0);}
.m4d_c00012{transform:matrix(0.238422,0.006676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238422,0.006676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238422,0.006676,-0.006997,0.249902,0,0);}
.m4e_c00012{transform:matrix(0.239551,0.006707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239551,0.006707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239551,0.006707,-0.006997,0.249902,0,0);}
.m6c_c00012{transform:matrix(0.239604,0.007915,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239604,0.007915,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239604,0.007915,-0.008254,0.249864,0,0);}
.m0_c00012{transform:matrix(0.239625,0.005991,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239625,0.005991,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239625,0.005991,-0.006248,0.249922,0,0);}
.mb0_c00012{transform:matrix(0.242976,0.004374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242976,0.004374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242976,0.004374,-0.004499,0.249960,0,0);}
.m67_c00012{transform:matrix(0.243087,0.008030,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243087,0.008030,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243087,0.008030,-0.008254,0.249864,0,0);}
.ma7_c00012{transform:matrix(0.245720,0.004423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245720,0.004423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245720,0.004423,-0.004499,0.249960,0,0);}
.m6d_c00012{transform:matrix(0.250174,0.008264,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250174,0.008264,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250174,0.008264,-0.008254,0.249864,0,0);}
.m4c_c00012{transform:matrix(0.250227,0.007006,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250227,0.007006,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250227,0.007006,-0.006997,0.249902,0,0);}
.m66_c00012{transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);}
.m3e_c00012{transform:matrix(0.250974,0.005772,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250974,0.005772,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250974,0.005772,-0.005748,0.249934,0,0);}
.m97_c00012{transform:matrix(0.255206,0.008430,-0.008254,0.249864,0,0);-ms-transform:matrix(0.255206,0.008430,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.255206,0.008430,-0.008254,0.249864,0,0);}
.m16_c00012{transform:matrix(0.256970,0.006424,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256970,0.006424,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256970,0.006424,-0.006248,0.249922,0,0);}
.m2d_c00012{transform:matrix(0.257332,0.005919,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257332,0.005919,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257332,0.005919,-0.005748,0.249934,0,0);}
.maf_c00012{transform:matrix(0.257853,0.004641,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257853,0.004641,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257853,0.004641,-0.004499,0.249960,0,0);}
.m43_c00012{transform:matrix(0.259116,0.005960,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259116,0.005960,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259116,0.005960,-0.005748,0.249934,0,0);}
.m77_c00012{transform:matrix(0.260343,0.008600,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260343,0.008600,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260343,0.008600,-0.008254,0.249864,0,0);}
.m91_c00012{transform:matrix(0.262112,0.008658,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262112,0.008658,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262112,0.008658,-0.008254,0.249864,0,0);}
.m65_c00012{transform:matrix(0.266170,0.008792,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266170,0.008792,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266170,0.008792,-0.008254,0.249864,0,0);}
.m61_c00012{transform:matrix(0.266461,0.009069,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266461,0.009069,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266461,0.009069,-0.008504,0.249855,0,0);}
.m3d_c00012{transform:matrix(0.276867,0.006368,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276867,0.006368,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276867,0.006368,-0.005748,0.249934,0,0);}
.m81_c00012{transform:matrix(0.278113,0.009187,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278113,0.009187,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278113,0.009187,-0.008254,0.249864,0,0);}
.m5_c00012{transform:matrix(0.279193,0.006980,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279193,0.006980,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279193,0.006980,-0.006248,0.249922,0,0);}
.ma4_c00012{transform:matrix(0.283141,0.009353,-0.008254,0.249864,0,0);-ms-transform:matrix(0.283141,0.009353,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.283141,0.009353,-0.008254,0.249864,0,0);}
.m27_c00012{transform:matrix(0.288794,0.006642,-0.005748,0.249934,0,0);-ms-transform:matrix(0.288794,0.006642,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.288794,0.006642,-0.005748,0.249934,0,0);}
.m1f_c00012{transform:matrix(0.298707,0.007468,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298707,0.007468,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298707,0.007468,-0.006248,0.249922,0,0);}
.mbf_c00012{transform:matrix(0.328012,0.005904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.328012,0.005904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.328012,0.005904,-0.004499,0.249960,0,0);}
.m6e_c00012{transform:matrix(0.330765,0.010926,-0.008254,0.249864,0,0);-ms-transform:matrix(0.330765,0.010926,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.330765,0.010926,-0.008254,0.249864,0,0);}
.m90_c00012{transform:matrix(0.364531,0.012042,-0.008254,0.249864,0,0);-ms-transform:matrix(0.364531,0.012042,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.364531,0.012042,-0.008254,0.249864,0,0);}
.m5c_c00012{transform:matrix(0.709582,0.019868,-0.006997,0.249902,0,0);-ms-transform:matrix(0.709582,0.019868,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.709582,0.019868,-0.006997,0.249902,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
.fc0_c00012{color:transparent;}
.fsf_c00012{font-size:52.476107px;}
.fse_c00012{font-size:54.575151px;}
.fsa_c00012{font-size:54.621399px;}
.fs10_c00012{font-size:58.773240px;}
.fs16_c00012{font-size:58.809525px;}
.fs9_c00012{font-size:58.823045px;}
.fs5_c00012{font-size:59.865828px;}
.fs0_c00012{font-size:59.868700px;}
.fsc_c00012{font-size:59.873457px;}
.fs15_c00012{font-size:61.921806px;}
.fsd_c00012{font-size:61.923883px;}
.fs19_c00012{font-size:61.960035px;}
.fs8_c00012{font-size:61.966384px;}
.fs18_c00012{font-size:63.010205px;}
.fs7_c00012{font-size:63.016661px;}
.fsb_c00012{font-size:63.024691px;}
.fs14_c00012{font-size:64.020851px;}
.fs4_c00012{font-size:64.066939px;}
.fs1c_c00012{font-size:65.074801px;}
.fs1a_c00012{font-size:65.110545px;}
.fs17_c00012{font-size:66.160715px;}
.fs3_c00012{font-size:66.170669px;}
.fs11_c00012{font-size:67.169417px;}
.fs1b_c00012{font-size:67.210886px;}
.fs2_c00012{font-size:67.220997px;}
.fs12_c00012{font-size:68.218939px;}
.fs6_c00012{font-size:68.268050px;}
.fs1_c00012{font-size:68.271325px;}
.fs13_c00012{font-size:70.317983px;}
.y0_c00012{bottom:0.000000px;}
.ye4_c00012{bottom:40.595047px;}
.ye3_c00012{bottom:41.908440px;}
.ye2_c00012{bottom:42.598552px;}
.ye1_c00012{bottom:45.263820px;}
.ye0_c00012{bottom:46.287097px;}
.ydf_c00012{bottom:47.190097px;}
.yde_c00012{bottom:48.615000px;}
.ydd_c00012{bottom:56.210256px;}
.ydc_c00012{bottom:57.678384px;}
.ydb_c00012{bottom:60.187437px;}
.yda_c00012{bottom:60.735420px;}
.yd9_c00012{bottom:62.948154px;}
.yd8_c00012{bottom:64.354149px;}
.yd7_c00012{bottom:66.417765px;}
.yd6_c00012{bottom:76.732014px;}
.yd5_c00012{bottom:77.500821px;}
.yd4_c00012{bottom:79.407318px;}
.yd3_c00012{bottom:81.307791px;}
.yd2_c00012{bottom:82.094049px;}
.yd1_c00012{bottom:83.434065px;}
.yd0_c00012{bottom:89.958954px;}
.ycf_c00012{bottom:90.629946px;}
.yce_c00012{bottom:91.067964px;}
.ycd_c00012{bottom:93.471348px;}
.ycc_c00012{bottom:94.114611px;}
.ycb_c00012{bottom:96.259182px;}
.yca_c00012{bottom:97.843866px;}
.yc9_c00012{bottom:99.357573px;}
.yc8_c00012{bottom:107.063724px;}
.yc7_c00012{bottom:108.229956px;}
.yc6_c00012{bottom:109.005198px;}
.yc5_c00012{bottom:110.402433px;}
.yc4_c00012{bottom:111.316638px;}
.yc3_c00012{bottom:112.584699px;}
.yc2_c00012{bottom:124.172988px;}
.yc1_c00012{bottom:124.671036px;}
.yc0_c00012{bottom:126.921585px;}
.ybf_c00012{bottom:128.359122px;}
.ybe_c00012{bottom:132.191244px;}
.ybd_c00012{bottom:132.827169px;}
.ybc_c00012{bottom:134.198604px;}
.ybb_c00012{bottom:141.498372px;}
.yba_c00012{bottom:142.570053px;}
.yb9_c00012{bottom:147.479283px;}
.yb8_c00012{bottom:147.920865px;}
.yb7_c00012{bottom:149.816793px;}
.yb6_c00012{bottom:150.614391px;}
.yb5_c00012{bottom:151.207737px;}
.yb4_c00012{bottom:157.538952px;}
.yb3_c00012{bottom:159.068367px;}
.yb2_c00012{bottom:159.770610px;}
.yb1_c00012{bottom:164.847939px;}
.yb0_c00012{bottom:167.152185px;}
.yaf_c00012{bottom:168.221907px;}
.yae_c00012{bottom:175.313166px;}
.yad_c00012{bottom:175.575822px;}
.yac_c00012{bottom:176.718165px;}
.yab_c00012{bottom:177.622233px;}
.yaa_c00012{bottom:177.761310px;}
.ya9_c00012{bottom:178.838610px;}
.ya8_c00012{bottom:179.203326px;}
.ya7_c00012{bottom:179.826000px;}
.ya6_c00012{bottom:191.079985px;}
.ya5_c00012{bottom:193.878459px;}
.ya4_c00012{bottom:196.949111px;}
.ya3_c00012{bottom:198.510111px;}
.ya2_c00012{bottom:198.996485px;}
.ya1_c00012{bottom:202.313992px;}
.ya0_c00012{bottom:208.256625px;}
.y9f_c00012{bottom:208.733634px;}
.y9e_c00012{bottom:210.328079px;}
.y9d_c00012{bottom:212.020686px;}
.y9c_c00012{bottom:212.945085px;}
.y9b_c00012{bottom:213.532569px;}
.y9a_c00012{bottom:214.017485px;}
.y99_c00012{bottom:215.795871px;}
.y98_c00012{bottom:226.200280px;}
.y97_c00012{bottom:227.320861px;}
.y96_c00012{bottom:228.691485px;}
.y95_c00012{bottom:230.420286px;}
.y94_c00012{bottom:232.070058px;}
.y93_c00012{bottom:233.448057px;}
.y92_c00012{bottom:234.222786px;}
.y91_c00012{bottom:235.231074px;}
.y90_c00012{bottom:243.138452px;}
.y8f_c00012{bottom:246.838937px;}
.y8e_c00012{bottom:249.369521px;}
.y8d_c00012{bottom:253.630679px;}
.y8c_c00012{bottom:254.661894px;}
.y8b_c00012{bottom:259.095380px;}
.y8a_c00012{bottom:259.898931px;}
.y89_c00012{bottom:260.973279px;}
.y88_c00012{bottom:261.815099px;}
.y87_c00012{bottom:264.628310px;}
.y86_c00012{bottom:265.489907px;}
.y85_c00012{bottom:266.789988px;}
.y84_c00012{bottom:268.407018px;}
.y83_c00012{bottom:270.585504px;}
.y82_c00012{bottom:277.219719px;}
.y81_c00012{bottom:279.852363px;}
.y80_c00012{bottom:282.206223px;}
.y7f_c00012{bottom:282.944043px;}
.y7e_c00012{bottom:283.935856px;}
.y7d_c00012{bottom:286.003805px;}
.y7c_c00012{bottom:286.915095px;}
.y7b_c00012{bottom:287.864172px;}
.y7a_c00012{bottom:297.057172px;}
.y79_c00012{bottom:298.001871px;}
.y78_c00012{bottom:298.535652px;}
.y77_c00012{bottom:298.935716px;}
.y76_c00012{bottom:302.257629px;}
.y75_c00012{bottom:302.857286px;}
.y74_c00012{bottom:304.846727px;}
.y73_c00012{bottom:306.473688px;}
.y72_c00012{bottom:312.938991px;}
.y71_c00012{bottom:313.746970px;}
.y70_c00012{bottom:314.485880px;}
.y6f_c00012{bottom:314.893062px;}
.y6e_c00012{bottom:317.440539px;}
.y6d_c00012{bottom:317.844356px;}
.y6c_c00012{bottom:319.777268px;}
.y6b_c00012{bottom:321.045228px;}
.y6a_c00012{bottom:329.532822px;}
.y69_c00012{bottom:331.622514px;}
.y68_c00012{bottom:334.108503px;}
.y67_c00012{bottom:336.044745px;}
.y66_c00012{bottom:338.049000px;}
.y65_c00012{bottom:346.009074px;}
.y64_c00012{bottom:348.954171px;}
.y63_c00012{bottom:350.815365px;}
.y62_c00012{bottom:352.602099px;}
.y61_c00012{bottom:353.333592px;}
.y60_c00012{bottom:354.252000px;}
.y5f_c00012{bottom:362.153712px;}
.y5e_c00012{bottom:363.250872px;}
.y5d_c00012{bottom:364.570752px;}
.y5c_c00012{bottom:365.395002px;}
.y5b_c00012{bottom:365.894214px;}
.y5a_c00012{bottom:366.776508px;}
.y59_c00012{bottom:367.729206px;}
.y58_c00012{bottom:379.240248px;}
.y57_c00012{bottom:381.422658px;}
.y56_c00012{bottom:383.137416px;}
.y55_c00012{bottom:384.016374px;}
.y54_c00012{bottom:385.208616px;}
.y53_c00012{bottom:387.180942px;}
.y52_c00012{bottom:394.893642px;}
.y51_c00012{bottom:395.208474px;}
.y50_c00012{bottom:397.485732px;}
.y4f_c00012{bottom:399.442740px;}
.y4e_c00012{bottom:400.914840px;}
.y4d_c00012{bottom:401.926554px;}
.y4c_c00012{bottom:404.735940px;}
.y4b_c00012{bottom:411.889782px;}
.y4a_c00012{bottom:412.343214px;}
.y49_c00012{bottom:412.769934px;}
.y48_c00012{bottom:415.004334px;}
.y47_c00012{bottom:415.420176px;}
.y46_c00012{bottom:418.082808px;}
.y45_c00012{bottom:419.587500px;}
.y44_c00012{bottom:428.805359px;}
.y43_c00012{bottom:430.214261px;}
.y42_c00012{bottom:430.910424px;}
.y41_c00012{bottom:432.982977px;}
.y40_c00012{bottom:433.630863px;}
.y3f_c00012{bottom:434.260277px;}
.y3e_c00012{bottom:437.392149px;}
.y3d_c00012{bottom:446.449584px;}
.y3c_c00012{bottom:447.792909px;}
.y3b_c00012{bottom:448.185560px;}
.y3a_c00012{bottom:450.506190px;}
.y39_c00012{bottom:451.890842px;}
.y38_c00012{bottom:452.484207px;}
.y37_c00012{bottom:454.137444px;}
.y36_c00012{bottom:463.295166px;}
.y35_c00012{bottom:464.256078px;}
.y34_c00012{bottom:465.541899px;}
.y33_c00012{bottom:466.850333px;}
.y32_c00012{bottom:467.270333px;}
.y31_c00012{bottom:468.469946px;}
.y30_c00012{bottom:469.400655px;}
.y2f_c00012{bottom:470.611946px;}
.y2e_c00012{bottom:480.043478px;}
.y2d_c00012{bottom:480.788387px;}
.y2c_c00012{bottom:482.401704px;}
.y2b_c00012{bottom:483.091505px;}
.y2a_c00012{bottom:485.115732px;}
.y29_c00012{bottom:485.655782px;}
.y28_c00012{bottom:486.893445px;}
.y27_c00012{bottom:488.162984px;}
.y26_c00012{bottom:498.110357px;}
.y25_c00012{bottom:499.333244px;}
.y24_c00012{bottom:500.208198px;}
.y23_c00012{bottom:502.340229px;}
.y22_c00012{bottom:503.619420px;}
.y21_c00012{bottom:504.366000px;}
.y20_c00012{bottom:514.190737px;}
.y1f_c00012{bottom:515.110425px;}
.y1e_c00012{bottom:515.725875px;}
.y1d_c00012{bottom:517.404037px;}
.y1c_c00012{bottom:518.284125px;}
.y1b_c00012{bottom:519.591150px;}
.y1a_c00012{bottom:520.280925px;}
.y19_c00012{bottom:531.126450px;}
.y18_c00012{bottom:532.210200px;}
.y17_c00012{bottom:532.632675px;}
.y16_c00012{bottom:533.917725px;}
.y15_c00012{bottom:534.733425px;}
.y14_c00012{bottom:536.467200px;}
.y13_c00012{bottom:537.109912px;}
.y12_c00012{bottom:538.427212px;}
.y11_c00012{bottom:538.918463px;}
.y10_c00012{bottom:548.133637px;}
.yf_c00012{bottom:548.579138px;}
.ye_c00012{bottom:548.827650px;}
.yd_c00012{bottom:550.116525px;}
.yc_c00012{bottom:550.479975px;}
.yb_c00012{bottom:550.905375px;}
.ya_c00012{bottom:552.272400px;}
.y9_c00012{bottom:553.146862px;}
.y8_c00012{bottom:553.497975px;}
.y7_c00012{bottom:564.621300px;}
.y6_c00012{bottom:565.640738px;}
.y5_c00012{bottom:566.133488px;}
.y4_c00012{bottom:567.713850px;}
.y3_c00012{bottom:568.298063px;}
.y2_c00012{bottom:570.744338px;}
.y1_c00012{bottom:571.864500px;}
.h11_c00012{height:52.476107px;}
.h10_c00012{height:54.575151px;}
.hc_c00012{height:54.621399px;}
.h12_c00012{height:58.773240px;}
.h18_c00012{height:58.809525px;}
.hb_c00012{height:58.823045px;}
.h7_c00012{height:59.865828px;}
.h2_c00012{height:59.868700px;}
.he_c00012{height:59.873457px;}
.h17_c00012{height:61.921806px;}
.hf_c00012{height:61.923883px;}
.h1b_c00012{height:61.960035px;}
.ha_c00012{height:61.966384px;}
.h1a_c00012{height:63.010205px;}
.h9_c00012{height:63.016661px;}
.hd_c00012{height:63.024691px;}
.h16_c00012{height:64.020851px;}
.h6_c00012{height:64.066939px;}
.h1e_c00012{height:65.074801px;}
.h1c_c00012{height:65.110545px;}
.h19_c00012{height:66.160715px;}
.h5_c00012{height:66.170669px;}
.h13_c00012{height:67.169417px;}
.h1d_c00012{height:67.210886px;}
.h4_c00012{height:67.220997px;}
.h14_c00012{height:68.218939px;}
.h8_c00012{height:68.268050px;}
.h3_c00012{height:68.271325px;}
.h15_c00012{height:70.317983px;}
.h1_c00012{height:615.750000px;}
.h0_c00012{height:615.870000px;}
.w0_c00012{width:383.100000px;}
.w1_c00012{width:383.250000px;}
.x0_c00012{left:0.000000px;}
.x76_c00012{left:22.545912px;}
.x6d_c00012{left:23.830488px;}
.x63_c00012{left:24.969342px;}
.x5f_c00012{left:26.302908px;}
.x56_c00012{left:27.370263px;}
.x4c_c00012{left:28.651566px;}
.x3f_c00012{left:29.864970px;}
.x2e_c00012{left:30.961179px;}
.x16_c00012{left:32.080800px;}
.x1_c00012{left:33.547500px;}
.x3a_c00012{left:36.703500px;}
.x1c_c00012{left:40.749000px;}
.x8_c00012{left:49.675425px;}
.x54_c00012{left:52.010850px;}
.x60_c00012{left:55.918272px;}
.x74_c00012{left:57.351267px;}
.x6b_c00012{left:62.363505px;}
.x17_c00012{left:63.454163px;}
.x72_c00012{left:66.981291px;}
.x43_c00012{left:69.340518px;}
.x69_c00012{left:70.726500px;}
.x1d_c00012{left:73.209000px;}
.x28_c00012{left:74.478056px;}
.x22_c00012{left:76.651326px;}
.x2_c00012{left:78.354000px;}
.x6e_c00012{left:79.582425px;}
.x57_c00012{left:83.191836px;}
.x47_c00012{left:84.300973px;}
.x2f_c00012{left:86.071313px;}
.x40_c00012{left:89.636112px;}
.x9_c00012{left:91.318088px;}
.x64_c00012{left:93.292756px;}
.xf_c00012{left:97.202438px;}
.x30_c00012{left:105.866639px;}
.x29_c00012{left:107.700726px;}
.x3d_c00012{left:110.461662px;}
.x65_c00012{left:111.923418px;}
.x6c_c00012{left:113.591982px;}
.x10_c00012{left:120.149213px;}
.x18_c00012{left:122.879625px;}
.x58_c00012{left:124.605156px;}
.x41_c00012{left:125.782572px;}
.x44_c00012{left:126.936486px;}
.x1e_c00012{left:128.826000px;}
.x50_c00012{left:131.794108px;}
.x35_c00012{left:135.131823px;}
.x48_c00012{left:136.799422px;}
.x4d_c00012{left:138.856768px;}
.x23_c00012{left:140.175046px;}
.x51_c00012{left:148.902843px;}
.x2a_c00012{left:150.526792px;}
.x31_c00012{left:152.039721px;}
.xa_c00012{left:156.385575px;}
.x59_c00012{left:157.922215px;}
.x45_c00012{left:161.252808px;}
.x19_c00012{left:162.886125px;}
.x2b_c00012{left:165.525067px;}
.x61_c00012{left:167.669742px;}
.x55_c00012{left:169.629411px;}
.x70_c00012{left:172.642353px;}
.x75_c00012{left:175.152771px;}
.x3_c00012{left:176.205000px;}
.x36_c00012{left:177.681458px;}
.x5a_c00012{left:180.008746px;}
.x11_c00012{left:182.055563px;}
.x3b_c00012{left:185.536500px;}
.x49_c00012{left:191.485681px;}
.xb_c00012{left:193.943325px;}
.x4_c00012{left:199.573500px;}
.x42_c00012{left:204.368568px;}
.x5e_c00012{left:208.460725px;}
.x12_c00012{left:211.201388px;}
.x24_c00012{left:212.459232px;}
.x46_c00012{left:216.218940px;}
.x62_c00012{left:218.461215px;}
.x1f_c00012{left:221.523000px;}
.x6f_c00012{left:225.960513px;}
.x32_c00012{left:229.380767px;}
.x4b_c00012{left:232.062258px;}
.x66_c00012{left:235.044664px;}
.x25_c00012{left:237.099903px;}
.x1a_c00012{left:239.138325px;}
.x4e_c00012{left:240.507444px;}
.x33_c00012{left:242.472162px;}
.x52_c00012{left:243.744163px;}
.x37_c00012{left:246.781349px;}
.x5b_c00012{left:252.093319px;}
.x71_c00012{left:253.576632px;}
.xc_c00012{left:255.344475px;}
.x13_c00012{left:257.079938px;}
.x2c_c00012{left:258.155907px;}
.x20_c00012{left:259.564500px;}
.x73_c00012{left:260.611080px;}
.x5_c00012{left:262.788000px;}
.xd_c00012{left:267.206175px;}
.x38_c00012{left:270.002123px;}
.x14_c00012{left:272.177813px;}
.x5c_c00012{left:273.671958px;}
.x4a_c00012{left:278.019561px;}
.x3c_c00012{left:280.188000px;}
.x6_c00012{left:282.498000px;}
.x34_c00012{left:287.239952px;}
.xe_c00012{left:288.448313px;}
.x77_c00012{left:291.199752px;}
.x2d_c00012{left:292.495974px;}
.x26_c00012{left:294.715779px;}
.x67_c00012{left:296.301018px;}
.x53_c00012{left:297.388447px;}
.x6a_c00012{left:298.653492px;}
.x5d_c00012{left:301.199952px;}
.x3e_c00012{left:302.409072px;}
.x4f_c00012{left:307.791462px;}
.x1b_c00012{left:308.949075px;}
.x15_c00012{left:310.904925px;}
.x21_c00012{left:312.733500px;}
.x68_c00012{left:314.646915px;}
.x39_c00012{left:316.968567px;}
.x27_c00012{left:321.295708px;}
.x7_c00012{left:323.275500px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
.fsf_c00012{font-size:46.645429pt;}
.fse_c00012{font-size:48.511246pt;}
.fsa_c00012{font-size:48.552355pt;}
.fs10_c00012{font-size:52.242880pt;}
.fs16_c00012{font-size:52.275133pt;}
.fs9_c00012{font-size:52.287151pt;}
.fs5_c00012{font-size:53.214070pt;}
.fs0_c00012{font-size:53.216622pt;}
.fsc_c00012{font-size:53.220850pt;}
.fs15_c00012{font-size:55.041606pt;}
.fsd_c00012{font-size:55.043451pt;}
.fs19_c00012{font-size:55.075587pt;}
.fs8_c00012{font-size:55.081230pt;}
.fs18_c00012{font-size:56.009071pt;}
.fs7_c00012{font-size:56.014810pt;}
.fsb_c00012{font-size:56.021948pt;}
.fs14_c00012{font-size:56.907423pt;}
.fs4_c00012{font-size:56.948390pt;}
.fs1c_c00012{font-size:57.844268pt;}
.fs1a_c00012{font-size:57.876040pt;}
.fs17_c00012{font-size:58.809525pt;}
.fs3_c00012{font-size:58.818372pt;}
.fs11_c00012{font-size:59.706148pt;}
.fs1b_c00012{font-size:59.743009pt;}
.fs2_c00012{font-size:59.751997pt;}
.fs12_c00012{font-size:60.639057pt;}
.fs6_c00012{font-size:60.682711pt;}
.fs1_c00012{font-size:60.685622pt;}
.fs13_c00012{font-size:62.504874pt;}
.y0_c00012{bottom:0.000000pt;}
.ye4_c00012{bottom:36.084487pt;}
.ye3_c00012{bottom:37.251947pt;}
.ye2_c00012{bottom:37.865380pt;}
.ye1_c00012{bottom:40.234507pt;}
.ye0_c00012{bottom:41.144087pt;}
.ydf_c00012{bottom:41.946753pt;}
.yde_c00012{bottom:43.213333pt;}
.ydd_c00012{bottom:49.964672pt;}
.ydc_c00012{bottom:51.269675pt;}
.ydb_c00012{bottom:53.499944pt;}
.yda_c00012{bottom:53.987040pt;}
.yd9_c00012{bottom:55.953915pt;}
.yd8_c00012{bottom:57.203688pt;}
.yd7_c00012{bottom:59.038013pt;}
.yd6_c00012{bottom:68.206235pt;}
.yd5_c00012{bottom:68.889619pt;}
.yd4_c00012{bottom:70.584283pt;}
.yd3_c00012{bottom:72.273592pt;}
.yd2_c00012{bottom:72.972488pt;}
.yd1_c00012{bottom:74.163613pt;}
.yd0_c00012{bottom:79.963515pt;}
.ycf_c00012{bottom:80.559952pt;}
.yce_c00012{bottom:80.949301pt;}
.ycd_c00012{bottom:83.085643pt;}
.ycc_c00012{bottom:83.657432pt;}
.ycb_c00012{bottom:85.563717pt;}
.yca_c00012{bottom:86.972325pt;}
.yc9_c00012{bottom:88.317843pt;}
.yc8_c00012{bottom:95.167755pt;}
.yc7_c00012{bottom:96.204405pt;}
.yc6_c00012{bottom:96.893509pt;}
.yc5_c00012{bottom:98.135496pt;}
.yc4_c00012{bottom:98.948123pt;}
.yc3_c00012{bottom:100.075288pt;}
.yc2_c00012{bottom:110.375989pt;}
.yc1_c00012{bottom:110.818699pt;}
.yc0_c00012{bottom:112.819187pt;}
.ybf_c00012{bottom:114.096997pt;}
.ybe_c00012{bottom:117.503328pt;}
.ybd_c00012{bottom:118.068595pt;}
.ybc_c00012{bottom:119.287648pt;}
.ybb_c00012{bottom:125.776331pt;}
.yba_c00012{bottom:126.728936pt;}
.yb9_c00012{bottom:131.092696pt;}
.yb8_c00012{bottom:131.485213pt;}
.yb7_c00012{bottom:133.170483pt;}
.yb6_c00012{bottom:133.879459pt;}
.yb5_c00012{bottom:134.406877pt;}
.yb4_c00012{bottom:140.034624pt;}
.yb3_c00012{bottom:141.394104pt;}
.yb2_c00012{bottom:142.018320pt;}
.yb1_c00012{bottom:146.531501pt;}
.yb0_c00012{bottom:148.579720pt;}
.yaf_c00012{bottom:149.530584pt;}
.yae_c00012{bottom:155.833925pt;}
.yad_c00012{bottom:156.067397pt;}
.yac_c00012{bottom:157.082813pt;}
.yab_c00012{bottom:157.886429pt;}
.yaa_c00012{bottom:158.010053pt;}
.ya9_c00012{bottom:158.967653pt;}
.ya8_c00012{bottom:159.291845pt;}
.ya7_c00012{bottom:159.845333pt;}
.ya6_c00012{bottom:169.848876pt;}
.ya5_c00012{bottom:172.336408pt;}
.ya4_c00012{bottom:175.065876pt;}
.ya3_c00012{bottom:176.453432pt;}
.ya2_c00012{bottom:176.885764pt;}
.ya1_c00012{bottom:179.834660pt;}
.ya0_c00012{bottom:185.117000pt;}
.y9f_c00012{bottom:185.541008pt;}
.y9e_c00012{bottom:186.958292pt;}
.y9d_c00012{bottom:188.462832pt;}
.y9c_c00012{bottom:189.284520pt;}
.y9b_c00012{bottom:189.806728pt;}
.y9a_c00012{bottom:190.237764pt;}
.y99_c00012{bottom:191.818552pt;}
.y98_c00012{bottom:201.066916pt;}
.y97_c00012{bottom:202.062988pt;}
.y96_c00012{bottom:203.281320pt;}
.y95_c00012{bottom:204.818032pt;}
.y94_c00012{bottom:206.284496pt;}
.y93_c00012{bottom:207.509384pt;}
.y92_c00012{bottom:208.198032pt;}
.y91_c00012{bottom:209.094288pt;}
.y90_c00012{bottom:216.123068pt;}
.y8f_c00012{bottom:219.412388pt;}
.y8e_c00012{bottom:221.661796pt;}
.y8d_c00012{bottom:225.449492pt;}
.y8c_c00012{bottom:226.366128pt;}
.y8b_c00012{bottom:230.307004pt;}
.y8a_c00012{bottom:231.021272pt;}
.y89_c00012{bottom:231.976248pt;}
.y88_c00012{bottom:232.724532pt;}
.y87_c00012{bottom:235.225164pt;}
.y86_c00012{bottom:235.991028pt;}
.y85_c00012{bottom:237.146656pt;}
.y84_c00012{bottom:238.584016pt;}
.y83_c00012{bottom:240.520448pt;}
.y82_c00012{bottom:246.417528pt;}
.y81_c00012{bottom:248.757656pt;}
.y80_c00012{bottom:250.849976pt;}
.y7f_c00012{bottom:251.505816pt;}
.y7e_c00012{bottom:252.387428pt;}
.y7d_c00012{bottom:254.225604pt;}
.y7c_c00012{bottom:255.035640pt;}
.y7b_c00012{bottom:255.879264pt;}
.y7a_c00012{bottom:264.050820pt;}
.y79_c00012{bottom:264.890552pt;}
.y78_c00012{bottom:265.365024pt;}
.y77_c00012{bottom:265.720636pt;}
.y76_c00012{bottom:268.673448pt;}
.y75_c00012{bottom:269.206476pt;}
.y74_c00012{bottom:270.974868pt;}
.y73_c00012{bottom:272.421056pt;}
.y72_c00012{bottom:278.167992pt;}
.y71_c00012{bottom:278.886196pt;}
.y70_c00012{bottom:279.543004pt;}
.y6f_c00012{bottom:279.904944pt;}
.y6e_c00012{bottom:282.169368pt;}
.y6d_c00012{bottom:282.528316pt;}
.y6c_c00012{bottom:284.246460pt;}
.y6b_c00012{bottom:285.373536pt;}
.y6a_c00012{bottom:292.918064pt;}
.y69_c00012{bottom:294.775568pt;}
.y68_c00012{bottom:296.985336pt;}
.y67_c00012{bottom:298.706440pt;}
.y66_c00012{bottom:300.488000pt;}
.y65_c00012{bottom:307.563621pt;}
.y64_c00012{bottom:310.181485pt;}
.y63_c00012{bottom:311.835880pt;}
.y62_c00012{bottom:313.424088pt;}
.y61_c00012{bottom:314.074304pt;}
.y60_c00012{bottom:314.890667pt;}
.y5f_c00012{bottom:321.914411pt;}
.y5e_c00012{bottom:322.889664pt;}
.y5d_c00012{bottom:324.062891pt;}
.y5c_c00012{bottom:324.795557pt;}
.y5b_c00012{bottom:325.239301pt;}
.y5a_c00012{bottom:326.023563pt;}
.y59_c00012{bottom:326.870405pt;}
.y58_c00012{bottom:337.102443pt;}
.y57_c00012{bottom:339.042363pt;}
.y56_c00012{bottom:340.566592pt;}
.y55_c00012{bottom:341.347888pt;}
.y54_c00012{bottom:342.407659pt;}
.y53_c00012{bottom:344.160837pt;}
.y52_c00012{bottom:351.016571pt;}
.y51_c00012{bottom:351.296421pt;}
.y50_c00012{bottom:353.320651pt;}
.y4f_c00012{bottom:355.060213pt;}
.y4e_c00012{bottom:356.368747pt;}
.y4d_c00012{bottom:357.268048pt;}
.y4c_c00012{bottom:359.765280pt;}
.y4b_c00012{bottom:366.124251pt;}
.y4a_c00012{bottom:366.527301pt;}
.y49_c00012{bottom:366.906608pt;}
.y48_c00012{bottom:368.892741pt;}
.y47_c00012{bottom:369.262379pt;}
.y46_c00012{bottom:371.629163pt;}
.y45_c00012{bottom:372.966667pt;}
.y44_c00012{bottom:381.160319pt;}
.y43_c00012{bottom:382.412676pt;}
.y42_c00012{bottom:383.031488pt;}
.y41_c00012{bottom:384.873757pt;}
.y40_c00012{bottom:385.449656pt;}
.y3f_c00012{bottom:386.009135pt;}
.y3e_c00012{bottom:388.793021pt;}
.y3d_c00012{bottom:396.844075pt;}
.y3c_c00012{bottom:398.038141pt;}
.y3b_c00012{bottom:398.387164pt;}
.y3a_c00012{bottom:400.449947pt;}
.y39_c00012{bottom:401.680748pt;}
.y38_c00012{bottom:402.208184pt;}
.y37_c00012{bottom:403.677728pt;}
.y36_c00012{bottom:411.817925pt;}
.y35_c00012{bottom:412.672069pt;}
.y34_c00012{bottom:413.815021pt;}
.y33_c00012{bottom:414.978073pt;}
.y32_c00012{bottom:415.351407pt;}
.y31_c00012{bottom:416.417729pt;}
.y30_c00012{bottom:417.245027pt;}
.y2f_c00012{bottom:418.321729pt;}
.y2e_c00012{bottom:426.705313pt;}
.y2d_c00012{bottom:427.367455pt;}
.y2c_c00012{bottom:428.801515pt;}
.y2b_c00012{bottom:429.414671pt;}
.y2a_c00012{bottom:431.213984pt;}
.y29_c00012{bottom:431.694028pt;}
.y28_c00012{bottom:432.794173pt;}
.y27_c00012{bottom:433.922652pt;}
.y26_c00012{bottom:442.764761pt;}
.y25_c00012{bottom:443.851772pt;}
.y24_c00012{bottom:444.629509pt;}
.y23_c00012{bottom:446.524648pt;}
.y22_c00012{bottom:447.661707pt;}
.y21_c00012{bottom:448.325333pt;}
.y20_c00012{bottom:457.058433pt;}
.y1f_c00012{bottom:457.875933pt;}
.y1e_c00012{bottom:458.423000pt;}
.y1d_c00012{bottom:459.914700pt;}
.y1c_c00012{bottom:460.697000pt;}
.y1b_c00012{bottom:461.858800pt;}
.y1a_c00012{bottom:462.471933pt;}
.y19_c00012{bottom:472.112400pt;}
.y18_c00012{bottom:473.075733pt;}
.y17_c00012{bottom:473.451267pt;}
.y16_c00012{bottom:474.593533pt;}
.y15_c00012{bottom:475.318600pt;}
.y14_c00012{bottom:476.859733pt;}
.y13_c00012{bottom:477.431033pt;}
.y12_c00012{bottom:478.601967pt;}
.y11_c00012{bottom:479.038633pt;}
.y10_c00012{bottom:487.229900pt;}
.yf_c00012{bottom:487.625900pt;}
.ye_c00012{bottom:487.846800pt;}
.yd_c00012{bottom:488.992467pt;}
.yc_c00012{bottom:489.315533pt;}
.yb_c00012{bottom:489.693667pt;}
.ya_c00012{bottom:490.908800pt;}
.y9_c00012{bottom:491.686100pt;}
.y8_c00012{bottom:491.998200pt;}
.y7_c00012{bottom:501.885600pt;}
.y6_c00012{bottom:502.791767pt;}
.y5_c00012{bottom:503.229767pt;}
.y4_c00012{bottom:504.634533pt;}
.y3_c00012{bottom:505.153833pt;}
.y2_c00012{bottom:507.328300pt;}
.y1_c00012{bottom:508.324000pt;}
.h11_c00012{height:46.645429pt;}
.h10_c00012{height:48.511246pt;}
.hc_c00012{height:48.552355pt;}
.h12_c00012{height:52.242880pt;}
.h18_c00012{height:52.275133pt;}
.hb_c00012{height:52.287151pt;}
.h7_c00012{height:53.214070pt;}
.h2_c00012{height:53.216622pt;}
.he_c00012{height:53.220850pt;}
.h17_c00012{height:55.041606pt;}
.hf_c00012{height:55.043451pt;}
.h1b_c00012{height:55.075587pt;}
.ha_c00012{height:55.081230pt;}
.h1a_c00012{height:56.009071pt;}
.h9_c00012{height:56.014810pt;}
.hd_c00012{height:56.021948pt;}
.h16_c00012{height:56.907423pt;}
.h6_c00012{height:56.948390pt;}
.h1e_c00012{height:57.844268pt;}
.h1c_c00012{height:57.876040pt;}
.h19_c00012{height:58.809525pt;}
.h5_c00012{height:58.818372pt;}
.h13_c00012{height:59.706148pt;}
.h1d_c00012{height:59.743009pt;}
.h4_c00012{height:59.751997pt;}
.h14_c00012{height:60.639057pt;}
.h8_c00012{height:60.682711pt;}
.h3_c00012{height:60.685622pt;}
.h15_c00012{height:62.504874pt;}
.h1_c00012{height:547.333333pt;}
.h0_c00012{height:547.440000pt;}
.w0_c00012{width:340.533333pt;}
.w1_c00012{width:340.666667pt;}
.x0_c00012{left:0.000000pt;}
.x76_c00012{left:20.040811pt;}
.x6d_c00012{left:21.182656pt;}
.x63_c00012{left:22.194971pt;}
.x5f_c00012{left:23.380363pt;}
.x56_c00012{left:24.329123pt;}
.x4c_c00012{left:25.468059pt;}
.x3f_c00012{left:26.546640pt;}
.x2e_c00012{left:27.521048pt;}
.x16_c00012{left:28.516267pt;}
.x1_c00012{left:29.820000pt;}
.x3a_c00012{left:32.625333pt;}
.x1c_c00012{left:36.221333pt;}
.x8_c00012{left:44.155933pt;}
.x54_c00012{left:46.231867pt;}
.x60_c00012{left:49.705131pt;}
.x74_c00012{left:50.978904pt;}
.x6b_c00012{left:55.434227pt;}
.x17_c00012{left:56.403700pt;}
.x72_c00012{left:59.538925pt;}
.x43_c00012{left:61.636016pt;}
.x69_c00012{left:62.868000pt;}
.x1d_c00012{left:65.074667pt;}
.x28_c00012{left:66.202716pt;}
.x22_c00012{left:68.134512pt;}
.x2_c00012{left:69.648000pt;}
.x6e_c00012{left:70.739933pt;}
.x57_c00012{left:73.948299pt;}
.x47_c00012{left:74.934199pt;}
.x2f_c00012{left:76.507833pt;}
.x40_c00012{left:79.676544pt;}
.x9_c00012{left:81.171633pt;}
.x64_c00012{left:82.926895pt;}
.xf_c00012{left:86.402167pt;}
.x30_c00012{left:94.103679pt;}
.x29_c00012{left:95.733979pt;}
.x3d_c00012{left:98.188144pt;}
.x65_c00012{left:99.487483pt;}
.x6c_c00012{left:100.970651pt;}
.x10_c00012{left:106.799300pt;}
.x18_c00012{left:109.226333pt;}
.x58_c00012{left:110.760139pt;}
.x41_c00012{left:111.806731pt;}
.x44_c00012{left:112.832432pt;}
.x1e_c00012{left:114.512000pt;}
.x50_c00012{left:117.150319pt;}
.x35_c00012{left:120.117176pt;}
.x48_c00012{left:121.599487pt;}
.x4d_c00012{left:123.428239pt;}
.x23_c00012{left:124.600041pt;}
.x51_c00012{left:132.358083pt;}
.x2a_c00012{left:133.801593pt;}
.x31_c00012{left:135.146419pt;}
.xa_c00012{left:139.009400pt;}
.x59_c00012{left:140.375303pt;}
.x45_c00012{left:143.335829pt;}
.x19_c00012{left:144.787667pt;}
.x2b_c00012{left:147.133393pt;}
.x61_c00012{left:149.039771pt;}
.x55_c00012{left:150.781699pt;}
.x70_c00012{left:153.459869pt;}
.x75_c00012{left:155.691352pt;}
.x3_c00012{left:156.626667pt;}
.x36_c00012{left:157.939073pt;}
.x5a_c00012{left:160.007775pt;}
.x11_c00012{left:161.827167pt;}
.x3b_c00012{left:164.921333pt;}
.x49_c00012{left:170.209495pt;}
.xb_c00012{left:172.394067pt;}
.x4_c00012{left:177.398667pt;}
.x42_c00012{left:181.660949pt;}
.x5e_c00012{left:185.298423pt;}
.x12_c00012{left:187.734567pt;}
.x24_c00012{left:188.852651pt;}
.x46_c00012{left:192.194613pt;}
.x62_c00012{left:194.187747pt;}
.x1f_c00012{left:196.909333pt;}
.x6f_c00012{left:200.853789pt;}
.x32_c00012{left:203.894015pt;}
.x4b_c00012{left:206.277563pt;}
.x66_c00012{left:208.928591pt;}
.x25_c00012{left:210.755469pt;}
.x1a_c00012{left:212.567400pt;}
.x4e_c00012{left:213.784395pt;}
.x33_c00012{left:215.530811pt;}
.x52_c00012{left:216.661479pt;}
.x37_c00012{left:219.361199pt;}
.x5b_c00012{left:224.082951pt;}
.x71_c00012{left:225.401451pt;}
.xc_c00012{left:226.972867pt;}
.x13_c00012{left:228.515500pt;}
.x2c_c00012{left:229.471917pt;}
.x20_c00012{left:230.724000pt;}
.x73_c00012{left:231.654293pt;}
.x5_c00012{left:233.589333pt;}
.xd_c00012{left:237.516600pt;}
.x38_c00012{left:240.001887pt;}
.x14_c00012{left:241.935833pt;}
.x5c_c00012{left:243.263963pt;}
.x4a_c00012{left:247.128499pt;}
.x3c_c00012{left:249.056000pt;}
.x6_c00012{left:251.109333pt;}
.x34_c00012{left:255.324401pt;}
.xe_c00012{left:256.398500pt;}
.x77_c00012{left:258.844224pt;}
.x2d_c00012{left:259.996421pt;}
.x26_c00012{left:261.969581pt;}
.x67_c00012{left:263.378683pt;}
.x53_c00012{left:264.345287pt;}
.x6a_c00012{left:265.469771pt;}
.x5d_c00012{left:267.733291pt;}
.x3e_c00012{left:268.808064pt;}
.x4f_c00012{left:273.592411pt;}
.x1b_c00012{left:274.621400pt;}
.x15_c00012{left:276.359933pt;}
.x21_c00012{left:277.985333pt;}
.x68_c00012{left:279.686147pt;}
.x39_c00012{left:281.749837pt;}
.x27_c00012{left:285.596185pt;}
.x7_c00012{left:287.356000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00013 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00013{transform:matrix(0.095253,0.001524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.095253,0.001524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.095253,0.001524,-0.003999,0.249968,0,0);}
.m37_c00013{transform:matrix(0.110906,0.001774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.110906,0.001774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.110906,0.001774,-0.003999,0.249968,0,0);}
.m8e_c00013{transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);}
.m45_c00013{transform:matrix(0.151146,0.002418,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151146,0.002418,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151146,0.002418,-0.003999,0.249968,0,0);}
.m6b_c00013{transform:matrix(0.153095,0.002450,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153095,0.002450,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153095,0.002450,-0.003999,0.249968,0,0);}
.m21_c00013{transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);}
.m7a_c00013{transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);}
.mbf_c00013{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m54_c00013{transform:matrix(0.158130,0.002530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158130,0.002530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158130,0.002530,-0.003999,0.249968,0,0);}
.m2f_c00013{transform:matrix(0.159355,0.002550,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159355,0.002550,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159355,0.002550,-0.003999,0.249968,0,0);}
.mbb_c00013{transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{transform:matrix(0.161349,0.002582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161349,0.002582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161349,0.002582,-0.003999,0.249968,0,0);}
.ma3_c00013{transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);}
.mcf_c00013{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.162859,0.002606,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162859,0.002606,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162859,0.002606,-0.003999,0.249968,0,0);}
.m4a_c00013{transform:matrix(0.163174,0.002611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163174,0.002611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163174,0.002611,-0.003999,0.249968,0,0);}
.m42_c00013{transform:matrix(0.163249,0.002612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163249,0.002612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163249,0.002612,-0.003999,0.249968,0,0);}
.mc0_c00013{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(0.165669,0.002651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165669,0.002651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165669,0.002651,-0.003999,0.249968,0,0);}
.m39_c00013{transform:matrix(0.165784,0.002653,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165784,0.002653,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165784,0.002653,-0.003999,0.249968,0,0);}
.m11_c00013{transform:matrix(0.166164,0.002659,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166164,0.002659,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166164,0.002659,-0.003999,0.249968,0,0);}
.m7c_c00013{transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00013{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{transform:matrix(0.167604,0.002682,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167604,0.002682,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167604,0.002682,-0.003999,0.249968,0,0);}
.m69_c00013{transform:matrix(0.169028,0.002704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169028,0.002704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169028,0.002704,-0.003999,0.249968,0,0);}
.m0_c00013{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.m78_c00013{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m7d_c00013{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m65_c00013{transform:matrix(0.170453,0.002727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170453,0.002727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170453,0.002727,-0.003999,0.249968,0,0);}
.m1d_c00013{transform:matrix(0.170618,0.002730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170618,0.002730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170618,0.002730,-0.003999,0.249968,0,0);}
.m67_c00013{transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);}
.mb_c00013{transform:matrix(0.171398,0.002742,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171398,0.002742,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171398,0.002742,-0.003999,0.249968,0,0);}
.m74_c00013{transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);}
.m63_c00013{transform:matrix(0.172593,0.002761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172593,0.002761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172593,0.002761,-0.003999,0.249968,0,0);}
.m88_c00013{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00013{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.md8_c00013{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m77_c00013{transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);}
.m35_c00013{transform:matrix(0.173748,0.002780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173748,0.002780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173748,0.002780,-0.003999,0.249968,0,0);}
.m2d_c00013{transform:matrix(0.173778,0.002780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173778,0.002780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173778,0.002780,-0.003999,0.249968,0,0);}
.m57_c00013{transform:matrix(0.174748,0.002796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174748,0.002796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174748,0.002796,-0.003999,0.249968,0,0);}
.m61_c00013{transform:matrix(0.175103,0.002802,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175103,0.002802,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175103,0.002802,-0.003999,0.249968,0,0);}
.m72_c00013{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00013{transform:matrix(0.175478,0.002808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175478,0.002808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175478,0.002808,-0.003999,0.249968,0,0);}
.m24_c00013{transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);}
.mb6_c00013{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m55_c00013{transform:matrix(0.176752,0.002828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176752,0.002828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176752,0.002828,-0.003999,0.249968,0,0);}
.m29_c00013{transform:matrix(0.178177,0.002851,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178177,0.002851,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178177,0.002851,-0.003999,0.249968,0,0);}
.m32_c00013{transform:matrix(0.178882,0.002862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178882,0.002862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178882,0.002862,-0.003999,0.249968,0,0);}
.md9_c00013{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{transform:matrix(0.179577,0.002873,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179577,0.002873,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179577,0.002873,-0.003999,0.249968,0,0);}
.m9a_c00013{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m31_c00013{transform:matrix(0.180737,0.002892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180737,0.002892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180737,0.002892,-0.003999,0.249968,0,0);}
.meb_c00013{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m9b_c00013{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.mdf_c00013{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.181862,0.002910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181862,0.002910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181862,0.002910,-0.003999,0.249968,0,0);}
.mca_c00013{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m3e_c00013{transform:matrix(0.182777,0.002924,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182777,0.002924,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182777,0.002924,-0.003999,0.249968,0,0);}
.mc5_c00013{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.mad_c00013{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m71_c00013{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.m8f_c00013{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.ma7_c00013{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.me0_c00013{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00013{transform:matrix(0.184591,0.002953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184591,0.002953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184591,0.002953,-0.003999,0.249968,0,0);}
.m46_c00013{transform:matrix(0.184801,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184801,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184801,0.002957,-0.003999,0.249968,0,0);}
.m66_c00013{transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);}
.m9d_c00013{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(0.185146,0.002962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185146,0.002962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185146,0.002962,-0.003999,0.249968,0,0);}
.m6e_c00013{transform:matrix(0.186161,0.002979,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186161,0.002979,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186161,0.002979,-0.003999,0.249968,0,0);}
.m4b_c00013{transform:matrix(0.186211,0.002979,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186211,0.002979,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186211,0.002979,-0.003999,0.249968,0,0);}
.m58_c00013{transform:matrix(0.186226,0.002980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186226,0.002980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186226,0.002980,-0.003999,0.249968,0,0);}
.m5c_c00013{transform:matrix(0.186276,0.002980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186276,0.002980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186276,0.002980,-0.003999,0.249968,0,0);}
.md3_c00013{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.186576,0.002985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186576,0.002985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186576,0.002985,-0.003999,0.249968,0,0);}
.mb9_c00013{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);}
.m8a_c00013{transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);}
.m22_c00013{transform:matrix(0.187221,0.002996,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187221,0.002996,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187221,0.002996,-0.003999,0.249968,0,0);}
.ma0_c00013{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m44_c00013{transform:matrix(0.187956,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187956,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187956,0.003007,-0.003999,0.249968,0,0);}
.me6_c00013{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.mb5_c00013{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m68_c00013{transform:matrix(0.189636,0.003034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189636,0.003034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189636,0.003034,-0.003999,0.249968,0,0);}
.m12_c00013{transform:matrix(0.190411,0.003047,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190411,0.003047,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190411,0.003047,-0.003999,0.249968,0,0);}
.m51_c00013{transform:matrix(0.190661,0.003051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190661,0.003051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190661,0.003051,-0.003999,0.249968,0,0);}
.m14_c00013{transform:matrix(0.190706,0.003051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190706,0.003051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190706,0.003051,-0.003999,0.249968,0,0);}
.m56_c00013{transform:matrix(0.191101,0.003058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191101,0.003058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191101,0.003058,-0.003999,0.249968,0,0);}
.m43_c00013{transform:matrix(0.191141,0.003058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191141,0.003058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191141,0.003058,-0.003999,0.249968,0,0);}
.mf_c00013{transform:matrix(0.191281,0.003060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191281,0.003060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191281,0.003060,-0.003999,0.249968,0,0);}
.m2a_c00013{transform:matrix(0.191965,0.003071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191965,0.003071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191965,0.003071,-0.003999,0.249968,0,0);}
.m9_c00013{transform:matrix(0.192030,0.003072,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192030,0.003072,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192030,0.003072,-0.003999,0.249968,0,0);}
.md2_c00013{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.mbe_c00013{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.m91_c00013{transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);}
.m3c_c00013{transform:matrix(0.192810,0.003085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192810,0.003085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192810,0.003085,-0.003999,0.249968,0,0);}
.m17_c00013{transform:matrix(0.192900,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192900,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192900,0.003086,-0.003999,0.249968,0,0);}
.ma_c00013{transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);}
.m33_c00013{transform:matrix(0.193880,0.003102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193880,0.003102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193880,0.003102,-0.003999,0.249968,0,0);}
.maa_c00013{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{transform:matrix(0.194650,0.003114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194650,0.003114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194650,0.003114,-0.003999,0.249968,0,0);}
.mba_c00013{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);}
.m52_c00013{transform:matrix(0.195915,0.003135,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195915,0.003135,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195915,0.003135,-0.003999,0.249968,0,0);}
.m8c_c00013{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.me5_c00013{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);}
.m83_c00013{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00013{transform:matrix(0.197200,0.003155,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197200,0.003155,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197200,0.003155,-0.003999,0.249968,0,0);}
.m13_c00013{transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);}
.m7f_c00013{transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);}
.m79_c00013{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.m90_c00013{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.md6_c00013{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.me3_c00013{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.ma4_c00013{transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00013{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00013{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m85_c00013{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{transform:matrix(0.199744,0.003196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199744,0.003196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199744,0.003196,-0.003999,0.249968,0,0);}
.m10_c00013{transform:matrix(0.199784,0.003197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199784,0.003197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199784,0.003197,-0.003999,0.249968,0,0);}
.m49_c00013{transform:matrix(0.199819,0.003197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199819,0.003197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199819,0.003197,-0.003999,0.249968,0,0);}
.m53_c00013{transform:matrix(0.199949,0.003199,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199949,0.003199,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199949,0.003199,-0.003999,0.249968,0,0);}
.me4_c00013{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.202364,0.003238,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202364,0.003238,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202364,0.003238,-0.003999,0.249968,0,0);}
.mc1_c00013{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mbc_c00013{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m34_c00013{transform:matrix(0.204064,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204064,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204064,0.003265,-0.003999,0.249968,0,0);}
.m4c_c00013{transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);}
.ma1_c00013{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m5e_c00013{transform:matrix(0.205139,0.003282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205139,0.003282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205139,0.003282,-0.003999,0.249968,0,0);}
.mb0_c00013{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.ma8_c00013{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.m6d_c00013{transform:matrix(0.205594,0.003289,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205594,0.003289,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205594,0.003289,-0.003999,0.249968,0,0);}
.me8_c00013{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{transform:matrix(0.206139,0.003298,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206139,0.003298,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206139,0.003298,-0.003999,0.249968,0,0);}
.m19_c00013{transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);}
.mab_c00013{transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);}
.maf_c00013{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.206864,0.003310,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206864,0.003310,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206864,0.003310,-0.003999,0.249968,0,0);}
.mb3_c00013{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);}
.m82_c00013{transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);}
.mb8_c00013{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.208138,0.003330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208138,0.003330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208138,0.003330,-0.003999,0.249968,0,0);}
.m99_c00013{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.md4_c00013{transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);}
.me7_c00013{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.mdd_c00013{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m5a_c00013{transform:matrix(0.209638,0.003354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209638,0.003354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209638,0.003354,-0.003999,0.249968,0,0);}
.m92_c00013{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.209683,0.003355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209683,0.003355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209683,0.003355,-0.003999,0.249968,0,0);}
.mea_c00013{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.mae_c00013{transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);}
.m27_c00013{transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);}
.m97_c00013{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00013{transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);}
.m2b_c00013{transform:matrix(0.210703,0.003371,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210703,0.003371,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210703,0.003371,-0.003999,0.249968,0,0);}
.mc4_c00013{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{transform:matrix(0.211088,0.003377,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211088,0.003377,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211088,0.003377,-0.003999,0.249968,0,0);}
.mdc_c00013{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{transform:matrix(0.211418,0.003383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211418,0.003383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211418,0.003383,-0.003999,0.249968,0,0);}
.m6a_c00013{transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);}
.mc2_c00013{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.mcc_c00013{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mc7_c00013{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m93_c00013{transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);}
.m75_c00013{transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);}
.mdb_c00013{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m7b_c00013{transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);}
.m5b_c00013{transform:matrix(0.214038,0.003425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214038,0.003425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214038,0.003425,-0.003999,0.249968,0,0);}
.m4d_c00013{transform:matrix(0.214628,0.003434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214628,0.003434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214628,0.003434,-0.003999,0.249968,0,0);}
.mcb_c00013{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.215817,0.003453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215817,0.003453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215817,0.003453,-0.003999,0.249968,0,0);}
.mac_c00013{transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);}
.m86_c00013{transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);}
.m73_c00013{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.me1_c00013{transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);}
.mb1_c00013{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m62_c00013{transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);}
.m3a_c00013{transform:matrix(0.218397,0.003494,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218397,0.003494,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218397,0.003494,-0.003999,0.249968,0,0);}
.md1_c00013{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.mc3_c00013{transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);}
.ma9_c00013{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.m6f_c00013{transform:matrix(0.219647,0.003514,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219647,0.003514,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219647,0.003514,-0.003999,0.249968,0,0);}
.m64_c00013{transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);}
.m9c_c00013{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.220587,0.003529,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220587,0.003529,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220587,0.003529,-0.003999,0.249968,0,0);}
.ma5_c00013{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{transform:matrix(0.221482,0.003544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221482,0.003544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221482,0.003544,-0.003999,0.249968,0,0);}
.m40_c00013{transform:matrix(0.222492,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222492,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222492,0.003560,-0.003999,0.249968,0,0);}
.m25_c00013{transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);}
.m5f_c00013{transform:matrix(0.223346,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223346,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223346,0.003574,-0.003999,0.249968,0,0);}
.m7_c00013{transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);}
.m98_c00013{transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);}
.m1b_c00013{transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);}
.m1a_c00013{transform:matrix(0.225866,0.003614,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225866,0.003614,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225866,0.003614,-0.003999,0.249968,0,0);}
.md0_c00013{transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);}
.me2_c00013{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.m87_c00013{transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);}
.m89_c00013{transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);}
.m8b_c00013{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.md5_c00013{transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);}
.mb2_c00013{transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);}
.me9_c00013{transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);}
.m60_c00013{transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);}
.m3_c00013{transform:matrix(0.235305,0.003765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235305,0.003765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235305,0.003765,-0.003999,0.249968,0,0);}
.mce_c00013{transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);}
.mde_c00013{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.mb4_c00013{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m7e_c00013{transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);}
.mc6_c00013{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m70_c00013{transform:matrix(0.240519,0.003848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240519,0.003848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240519,0.003848,-0.003999,0.249968,0,0);}
.m6_c00013{transform:matrix(0.240554,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240554,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240554,0.003849,-0.003999,0.249968,0,0);}
.mcd_c00013{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.mc9_c00013{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.mc8_c00013{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m94_c00013{transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);}
.mda_c00013{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.md7_c00013{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m3b_c00013{transform:matrix(0.249248,0.003988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249248,0.003988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249248,0.003988,-0.003999,0.249968,0,0);}
.m9f_c00013{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.m81_c00013{transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.261387,0.004182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261387,0.004182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261387,0.004182,-0.003999,0.249968,0,0);}
.m84_c00013{transform:matrix(0.264930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264930,0.000000,0.000000,0.250000,0,0);}
.m96_c00013{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.m80_c00013{transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);}
.m95_c00013{transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);}
.ma6_c00013{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00013{transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);}
.m76_c00013{transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00013{transform:matrix(0.411482,0.006584,-0.003999,0.249968,0,0);-ms-transform:matrix(0.411482,0.006584,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.411482,0.006584,-0.003999,0.249968,0,0);}
.m4_c00013{transform:matrix(0.572287,0.009157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.572287,0.009157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.572287,0.009157,-0.003999,0.249968,0,0);}
.m59_c00013{transform:matrix(0.767802,0.012285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.767802,0.012285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.767802,0.012285,-0.003999,0.249968,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
.fc0_c00013{color:transparent;}
.fsd_c00013{font-size:58.800000px;}
.fs9_c00013{font-size:58.807526px;}
.fsb_c00013{font-size:59.850000px;}
.fsf_c00013{font-size:60.900000px;}
.fs7_c00013{font-size:60.907795px;}
.fs0_c00013{font-size:61.950000px;}
.fs1_c00013{font-size:61.957929px;}
.fs4_c00013{font-size:63.008063px;}
.fse_c00013{font-size:64.050000px;}
.fs2_c00013{font-size:65.108332px;}
.fs3_c00013{font-size:66.158467px;}
.fs10_c00013{font-size:67.200000px;}
.fs8_c00013{font-size:67.208601px;}
.fsc_c00013{font-size:68.250000px;}
.fs6_c00013{font-size:69.308870px;}
.fs5_c00013{font-size:70.359004px;}
.fsa_c00013{font-size:71.409139px;}
.y0_c00013{bottom:0.000000px;}
.ye9_c00013{bottom:38.652000px;}
.ye8_c00013{bottom:39.022500px;}
.ye7_c00013{bottom:40.027500px;}
.ye6_c00013{bottom:40.269000px;}
.ye5_c00013{bottom:40.921500px;}
.ye4_c00013{bottom:41.160000px;}
.ye3_c00013{bottom:41.673000px;}
.ye2_c00013{bottom:42.385500px;}
.ye1_c00013{bottom:57.009000px;}
.ye0_c00013{bottom:57.333000px;}
.ydf_c00013{bottom:57.958500px;}
.yde_c00013{bottom:58.224000px;}
.ydd_c00013{bottom:58.716000px;}
.ydc_c00013{bottom:59.665500px;}
.ydb_c00013{bottom:73.236000px;}
.yda_c00013{bottom:73.855500px;}
.yd9_c00013{bottom:74.298000px;}
.yd8_c00013{bottom:75.004500px;}
.yd7_c00013{bottom:75.285000px;}
.yd6_c00013{bottom:75.628500px;}
.yd5_c00013{bottom:76.672500px;}
.yd4_c00013{bottom:77.215500px;}
.yd3_c00013{bottom:90.775500px;}
.yd2_c00013{bottom:91.051500px;}
.yd1_c00013{bottom:91.894500px;}
.yd0_c00013{bottom:92.215500px;}
.ycf_c00013{bottom:93.190500px;}
.yce_c00013{bottom:93.360000px;}
.ycd_c00013{bottom:93.700500px;}
.ycc_c00013{bottom:94.225500px;}
.ycb_c00013{bottom:106.860000px;}
.yca_c00013{bottom:108.151500px;}
.yc9_c00013{bottom:108.516000px;}
.yc8_c00013{bottom:109.318500px;}
.yc7_c00013{bottom:109.711500px;}
.yc6_c00013{bottom:109.986000px;}
.yc5_c00013{bottom:110.967000px;}
.yc4_c00013{bottom:124.278000px;}
.yc3_c00013{bottom:124.819500px;}
.yc2_c00013{bottom:125.049000px;}
.yc1_c00013{bottom:125.415000px;}
.yc0_c00013{bottom:126.595500px;}
.ybf_c00013{bottom:127.215000px;}
.ybe_c00013{bottom:127.707000px;}
.ybd_c00013{bottom:141.492000px;}
.ybc_c00013{bottom:141.822000px;}
.ybb_c00013{bottom:143.197500px;}
.yba_c00013{bottom:143.488500px;}
.yb9_c00013{bottom:143.670000px;}
.yb8_c00013{bottom:144.351000px;}
.yb7_c00013{bottom:144.781500px;}
.yb6_c00013{bottom:145.258500px;}
.yb5_c00013{bottom:158.400000px;}
.yb4_c00013{bottom:158.808000px;}
.yb3_c00013{bottom:159.007500px;}
.yb2_c00013{bottom:159.307500px;}
.yb1_c00013{bottom:159.975000px;}
.yb0_c00013{bottom:160.191000px;}
.yaf_c00013{bottom:160.642500px;}
.yae_c00013{bottom:160.888500px;}
.yad_c00013{bottom:161.187000px;}
.yac_c00013{bottom:175.014000px;}
.yab_c00013{bottom:175.302000px;}
.yaa_c00013{bottom:176.463000px;}
.ya9_c00013{bottom:176.709000px;}
.ya8_c00013{bottom:177.474000px;}
.ya7_c00013{bottom:178.035000px;}
.ya6_c00013{bottom:178.737000px;}
.ya5_c00013{bottom:193.282500px;}
.ya4_c00013{bottom:194.233500px;}
.ya3_c00013{bottom:194.469000px;}
.ya2_c00013{bottom:194.641500px;}
.ya1_c00013{bottom:195.051000px;}
.ya0_c00013{bottom:195.711000px;}
.y9f_c00013{bottom:196.023000px;}
.y9e_c00013{bottom:196.285500px;}
.y9d_c00013{bottom:209.734500px;}
.y9c_c00013{bottom:209.991000px;}
.y9b_c00013{bottom:210.255000px;}
.y9a_c00013{bottom:210.865500px;}
.y99_c00013{bottom:211.108500px;}
.y98_c00013{bottom:211.281000px;}
.y97_c00013{bottom:211.839000px;}
.y96_c00013{bottom:212.161500px;}
.y95_c00013{bottom:213.028500px;}
.y94_c00013{bottom:226.024500px;}
.y93_c00013{bottom:226.926000px;}
.y92_c00013{bottom:227.208000px;}
.y91_c00013{bottom:227.590500px;}
.y90_c00013{bottom:228.229500px;}
.y8f_c00013{bottom:228.999000px;}
.y8e_c00013{bottom:229.315500px;}
.y8d_c00013{bottom:229.771500px;}
.y8c_c00013{bottom:243.754500px;}
.y8b_c00013{bottom:244.578000px;}
.y8a_c00013{bottom:244.765500px;}
.y89_c00013{bottom:245.092500px;}
.y88_c00013{bottom:245.572500px;}
.y87_c00013{bottom:245.868000px;}
.y86_c00013{bottom:246.781500px;}
.y85_c00013{bottom:261.322500px;}
.y84_c00013{bottom:261.550500px;}
.y83_c00013{bottom:262.416000px;}
.y82_c00013{bottom:262.731000px;}
.y81_c00013{bottom:263.382000px;}
.y80_c00013{bottom:264.063000px;}
.y7f_c00013{bottom:277.401000px;}
.y7e_c00013{bottom:278.085000px;}
.y7d_c00013{bottom:278.418000px;}
.y7c_c00013{bottom:279.316500px;}
.y7b_c00013{bottom:280.879500px;}
.y7a_c00013{bottom:281.611500px;}
.y79_c00013{bottom:294.283500px;}
.y78_c00013{bottom:294.787500px;}
.y77_c00013{bottom:295.600500px;}
.y76_c00013{bottom:295.962000px;}
.y75_c00013{bottom:297.246000px;}
.y74_c00013{bottom:297.678000px;}
.y73_c00013{bottom:298.126500px;}
.y72_c00013{bottom:298.893000px;}
.y71_c00013{bottom:313.609500px;}
.y6e_c00013{bottom:329.670696px;}
.y6f_c00013{bottom:329.670756px;}
.y6d_c00013{bottom:329.670768px;}
.y6c_c00013{bottom:329.670936px;}
.y6b_c00013{bottom:329.671068px;}
.y70_c00013{bottom:329.671344px;}
.y6a_c00013{bottom:345.654396px;}
.y69_c00013{bottom:346.026048px;}
.y68_c00013{bottom:346.504308px;}
.y67_c00013{bottom:346.779084px;}
.y66_c00013{bottom:347.418540px;}
.y65_c00013{bottom:347.739828px;}
.y64_c00013{bottom:348.555600px;}
.y63_c00013{bottom:348.811428px;}
.y62_c00013{bottom:362.619804px;}
.y61_c00013{bottom:362.960916px;}
.y60_c00013{bottom:363.757200px;}
.y5f_c00013{bottom:364.624812px;}
.y5e_c00013{bottom:364.845948px;}
.y5d_c00013{bottom:365.824800px;}
.y5c_c00013{bottom:366.094344px;}
.y5b_c00013{bottom:379.953000px;}
.y5a_c00013{bottom:380.239128px;}
.y59_c00013{bottom:381.215040px;}
.y58_c00013{bottom:382.446504px;}
.y57_c00013{bottom:382.836216px;}
.y56_c00013{bottom:396.399924px;}
.y55_c00013{bottom:397.084872px;}
.y54_c00013{bottom:397.555920px;}
.y53_c00013{bottom:397.784316px;}
.y52_c00013{bottom:398.599248px;}
.y51_c00013{bottom:398.933100px;}
.y50_c00013{bottom:399.147144px;}
.y4f_c00013{bottom:399.609924px;}
.y4e_c00013{bottom:400.120284px;}
.y4d_c00013{bottom:413.425956px;}
.y4c_c00013{bottom:413.882556px;}
.y4b_c00013{bottom:414.072144px;}
.y4a_c00013{bottom:414.690228px;}
.y49_c00013{bottom:414.876276px;}
.y48_c00013{bottom:415.512372px;}
.y47_c00013{bottom:415.775508px;}
.y46_c00013{bottom:416.043312px;}
.y45_c00013{bottom:416.822376px;}
.y44_c00013{bottom:417.134760px;}
.y43_c00013{bottom:430.626900px;}
.y42_c00013{bottom:430.886604px;}
.y41_c00013{bottom:431.502744px;}
.y40_c00013{bottom:431.721576px;}
.y3f_c00013{bottom:431.994600px;}
.y3e_c00013{bottom:432.753252px;}
.y3d_c00013{bottom:433.402500px;}
.y3c_c00013{bottom:433.876272px;}
.y3b_c00013{bottom:448.262196px;}
.y3a_c00013{bottom:448.748052px;}
.y39_c00013{bottom:449.000196px;}
.y38_c00013{bottom:449.785740px;}
.y37_c00013{bottom:450.138336px;}
.y36_c00013{bottom:451.171368px;}
.y35_c00013{bottom:451.427220px;}
.y34_c00013{bottom:464.487924px;}
.y33_c00013{bottom:465.407064px;}
.y32_c00013{bottom:466.699992px;}
.y31_c00013{bottom:467.033724px;}
.y30_c00013{bottom:468.659976px;}
.y2f_c00013{bottom:469.522092px;}
.y2e_c00013{bottom:480.876084px;}
.y2d_c00013{bottom:481.257588px;}
.y2c_c00013{bottom:482.315772px;}
.y2b_c00013{bottom:482.588244px;}
.y2a_c00013{bottom:483.625188px;}
.y29_c00013{bottom:484.437660px;}
.y28_c00013{bottom:484.946172px;}
.y27_c00013{bottom:485.452716px;}
.y26_c00013{bottom:498.204432px;}
.y25_c00013{bottom:498.627468px;}
.y24_c00013{bottom:498.852408px;}
.y23_c00013{bottom:499.880160px;}
.y22_c00013{bottom:500.214156px;}
.y21_c00013{bottom:501.371688px;}
.y20_c00013{bottom:502.734324px;}
.y1f_c00013{bottom:515.753664px;}
.y1e_c00013{bottom:516.251568px;}
.y1d_c00013{bottom:516.554976px;}
.y1c_c00013{bottom:516.789600px;}
.y1b_c00013{bottom:517.605576px;}
.y1a_c00013{bottom:517.910100px;}
.y19_c00013{bottom:518.962800px;}
.y18_c00013{bottom:519.475788px;}
.y17_c00013{bottom:532.243188px;}
.y16_c00013{bottom:532.674936px;}
.y15_c00013{bottom:533.037312px;}
.y14_c00013{bottom:534.010104px;}
.y13_c00013{bottom:534.901068px;}
.y12_c00013{bottom:535.139256px;}
.y11_c00013{bottom:535.605576px;}
.y10_c00013{bottom:536.758476px;}
.yf_c00013{bottom:549.392712px;}
.ye_c00013{bottom:549.885384px;}
.yd_c00013{bottom:551.529852px;}
.yc_c00013{bottom:552.057876px;}
.yb_c00013{bottom:553.565496px;}
.ya_c00013{bottom:554.283456px;}
.y9_c00013{bottom:554.851800px;}
.y8_c00013{bottom:566.483976px;}
.y7_c00013{bottom:566.778240px;}
.y6_c00013{bottom:567.590016px;}
.y5_c00013{bottom:568.778184px;}
.y4_c00013{bottom:569.508336px;}
.y3_c00013{bottom:569.891736px;}
.y2_c00013{bottom:570.243000px;}
.y1_c00013{bottom:585.360000px;}
.hf_c00013{height:58.800000px;}
.hb_c00013{height:58.807526px;}
.hd_c00013{height:59.850000px;}
.h11_c00013{height:60.900000px;}
.h9_c00013{height:60.907795px;}
.h2_c00013{height:61.950000px;}
.h3_c00013{height:61.957929px;}
.h6_c00013{height:63.008063px;}
.h10_c00013{height:64.050000px;}
.h4_c00013{height:65.108332px;}
.h5_c00013{height:66.158467px;}
.h12_c00013{height:67.200000px;}
.ha_c00013{height:67.208601px;}
.he_c00013{height:68.250000px;}
.h8_c00013{height:69.308870px;}
.h7_c00013{height:70.359004px;}
.hc_c00013{height:71.409139px;}
.h1_c00013{height:615.750000px;}
.h0_c00013{height:615.870000px;}
.w0_c00013{width:383.100000px;}
.w1_c00013{width:383.250000px;}
.x0_c00013{left:0.000000px;}
.x6a_c00013{left:47.085000px;}
.x45_c00013{left:48.493548px;}
.x2b_c00013{left:49.523244px;}
.x9_c00013{left:50.547876px;}
.x53_c00013{left:53.350500px;}
.x4a_c00013{left:57.774756px;}
.x66_c00013{left:61.465500px;}
.x46_c00013{left:68.139984px;}
.x2c_c00013{left:70.859112px;}
.x37_c00013{left:73.809924px;}
.x2_c00013{left:75.663000px;}
.xa_c00013{left:77.629716px;}
.x41_c00013{left:79.753572px;}
.x21_c00013{left:81.945708px;}
.x5d_c00013{left:83.256000px;}
.x16_c00013{left:84.857580px;}
.x31_c00013{left:86.226816px;}
.x3d_c00013{left:88.722912px;}
.x4c_c00013{left:91.530000px;}
.x27_c00013{left:95.607192px;}
.x3_c00013{left:97.617000px;}
.x6b_c00013{left:101.076000px;}
.x54_c00013{left:102.160500px;}
.x67_c00013{left:105.675000px;}
.x5e_c00013{left:107.556000px;}
.x57_c00013{left:110.023500px;}
.xb_c00013{left:111.811980px;}
.x22_c00013{left:113.727708px;}
.x5f_c00013{left:114.844500px;}
.xf_c00013{left:118.396380px;}
.x4_c00013{left:121.579500px;}
.x3e_c00013{left:124.304616px;}
.x4e_c00013{left:125.365500px;}
.x7c_c00013{left:126.487500px;}
.x1d_c00013{left:130.469868px;}
.x4d_c00013{left:132.030000px;}
.x38_c00013{left:133.754304px;}
.x32_c00013{left:136.182216px;}
.x60_c00013{left:139.690500px;}
.x3f_c00013{left:140.776908px;}
.x7d_c00013{left:141.859500px;}
.x6c_c00013{left:144.276000px;}
.x10_c00013{left:145.853448px;}
.x70_c00013{left:147.282000px;}
.x5b_c00013{left:148.885500px;}
.x4f_c00013{left:152.380500px;}
.x17_c00013{left:155.058708px;}
.x2d_c00013{left:156.991632px;}
.x75_c00013{left:158.305500px;}
.x11_c00013{left:159.896232px;}
.x7a_c00013{left:161.086500px;}
.x44_c00013{left:162.376644px;}
.x23_c00013{left:164.507208px;}
.x5_c00013{left:167.214000px;}
.x58_c00013{left:169.206000px;}
.x73_c00013{left:172.884000px;}
.x18_c00013{left:175.310520px;}
.x28_c00013{left:181.212588px;}
.xc_c00013{left:183.626244px;}
.x2e_c00013{left:186.437028px;}
.x5c_c00013{left:188.901000px;}
.x77_c00013{left:191.529000px;}
.x1_c00013{left:193.860000px;}
.x61_c00013{left:195.847500px;}
.x1e_c00013{left:198.595788px;}
.x68_c00013{left:201.256500px;}
.x6d_c00013{left:203.136000px;}
.x47_c00013{left:204.772536px;}
.x55_c00013{left:206.373000px;}
.xd_c00013{left:208.750728px;}
.x7e_c00013{left:210.435000px;}
.x12_c00013{left:212.299392px;}
.x62_c00013{left:214.495500px;}
.x33_c00013{left:215.572032px;}
.x1f_c00013{left:218.251476px;}
.x69_c00013{left:219.361500px;}
.x6e_c00013{left:222.054000px;}
.x39_c00013{left:223.479600px;}
.x48_c00013{left:225.884544px;}
.x19_c00013{left:229.684884px;}
.x34_c00013{left:232.437348px;}
.x71_c00013{left:235.582500px;}
.x3a_c00013{left:237.733272px;}
.x6_c00013{left:241.474500px;}
.x1a_c00013{left:245.286624px;}
.x24_c00013{left:246.345708px;}
.x42_c00013{left:249.597732px;}
.x2f_c00013{left:251.850204px;}
.x50_c00013{left:255.228000px;}
.x63_c00013{left:261.450000px;}
.x49_c00013{left:262.621296px;}
.x1b_c00013{left:265.562460px;}
.x29_c00013{left:266.843484px;}
.x74_c00013{left:268.503000px;}
.x13_c00013{left:269.535480px;}
.x43_c00013{left:271.606788px;}
.x30_c00013{left:272.860548px;}
.x78_c00013{left:274.696500px;}
.x59_c00013{left:276.391500px;}
.x20_c00013{left:278.735016px;}
.x35_c00013{left:279.854628px;}
.x64_c00013{left:281.718000px;}
.x40_c00013{left:282.829200px;}
.x3b_c00013{left:285.272052px;}
.xe_c00013{left:287.054964px;}
.x56_c00013{left:288.450000px;}
.x14_c00013{left:290.871144px;}
.x7_c00013{left:292.210500px;}
.x79_c00013{left:294.402000px;}
.x5a_c00013{left:297.138000px;}
.x1c_c00013{left:298.744488px;}
.x36_c00013{left:299.837088px;}
.x65_c00013{left:301.428000px;}
.x51_c00013{left:306.061500px;}
.x8_c00013{left:310.602000px;}
.x25_c00013{left:312.482208px;}
.x2a_c00013{left:315.193656px;}
.x15_c00013{left:316.261236px;}
.x76_c00013{left:322.189500px;}
.x4b_c00013{left:325.107180px;}
.x72_c00013{left:326.355000px;}
.x7b_c00013{left:331.933500px;}
.x6f_c00013{left:333.565500px;}
.x3c_c00013{left:334.942428px;}
.x26_c00013{left:336.326208px;}
.x52_c00013{left:337.566000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fsd_c00013{font-size:52.266667pt;}
.fs9_c00013{font-size:52.273356pt;}
.fsb_c00013{font-size:53.200000pt;}
.fsf_c00013{font-size:54.133333pt;}
.fs7_c00013{font-size:54.140262pt;}
.fs0_c00013{font-size:55.066667pt;}
.fs1_c00013{font-size:55.073715pt;}
.fs4_c00013{font-size:56.007168pt;}
.fse_c00013{font-size:56.933333pt;}
.fs2_c00013{font-size:57.874073pt;}
.fs3_c00013{font-size:58.807526pt;}
.fs10_c00013{font-size:59.733333pt;}
.fs8_c00013{font-size:59.740979pt;}
.fsc_c00013{font-size:60.666667pt;}
.fs6_c00013{font-size:61.607884pt;}
.fs5_c00013{font-size:62.541337pt;}
.fsa_c00013{font-size:63.474790pt;}
.y0_c00013{bottom:0.000000pt;}
.ye9_c00013{bottom:34.357333pt;}
.ye8_c00013{bottom:34.686667pt;}
.ye7_c00013{bottom:35.580000pt;}
.ye6_c00013{bottom:35.794667pt;}
.ye5_c00013{bottom:36.374667pt;}
.ye4_c00013{bottom:36.586667pt;}
.ye3_c00013{bottom:37.042667pt;}
.ye2_c00013{bottom:37.676000pt;}
.ye1_c00013{bottom:50.674667pt;}
.ye0_c00013{bottom:50.962667pt;}
.ydf_c00013{bottom:51.518667pt;}
.yde_c00013{bottom:51.754667pt;}
.ydd_c00013{bottom:52.192000pt;}
.ydc_c00013{bottom:53.036000pt;}
.ydb_c00013{bottom:65.098667pt;}
.yda_c00013{bottom:65.649333pt;}
.yd9_c00013{bottom:66.042667pt;}
.yd8_c00013{bottom:66.670667pt;}
.yd7_c00013{bottom:66.920000pt;}
.yd6_c00013{bottom:67.225333pt;}
.yd5_c00013{bottom:68.153333pt;}
.yd4_c00013{bottom:68.636000pt;}
.yd3_c00013{bottom:80.689333pt;}
.yd2_c00013{bottom:80.934667pt;}
.yd1_c00013{bottom:81.684000pt;}
.yd0_c00013{bottom:81.969333pt;}
.ycf_c00013{bottom:82.836000pt;}
.yce_c00013{bottom:82.986667pt;}
.ycd_c00013{bottom:83.289333pt;}
.ycc_c00013{bottom:83.756000pt;}
.ycb_c00013{bottom:94.986667pt;}
.yca_c00013{bottom:96.134667pt;}
.yc9_c00013{bottom:96.458667pt;}
.yc8_c00013{bottom:97.172000pt;}
.yc7_c00013{bottom:97.521333pt;}
.yc6_c00013{bottom:97.765333pt;}
.yc5_c00013{bottom:98.637333pt;}
.yc4_c00013{bottom:110.469333pt;}
.yc3_c00013{bottom:110.950667pt;}
.yc2_c00013{bottom:111.154667pt;}
.yc1_c00013{bottom:111.480000pt;}
.yc0_c00013{bottom:112.529333pt;}
.ybf_c00013{bottom:113.080000pt;}
.ybe_c00013{bottom:113.517333pt;}
.ybd_c00013{bottom:125.770667pt;}
.ybc_c00013{bottom:126.064000pt;}
.ybb_c00013{bottom:127.286667pt;}
.yba_c00013{bottom:127.545333pt;}
.yb9_c00013{bottom:127.706667pt;}
.yb8_c00013{bottom:128.312000pt;}
.yb7_c00013{bottom:128.694667pt;}
.yb6_c00013{bottom:129.118667pt;}
.yb5_c00013{bottom:140.800000pt;}
.yb4_c00013{bottom:141.162667pt;}
.yb3_c00013{bottom:141.340000pt;}
.yb2_c00013{bottom:141.606667pt;}
.yb1_c00013{bottom:142.200000pt;}
.yb0_c00013{bottom:142.392000pt;}
.yaf_c00013{bottom:142.793333pt;}
.yae_c00013{bottom:143.012000pt;}
.yad_c00013{bottom:143.277333pt;}
.yac_c00013{bottom:155.568000pt;}
.yab_c00013{bottom:155.824000pt;}
.yaa_c00013{bottom:156.856000pt;}
.ya9_c00013{bottom:157.074667pt;}
.ya8_c00013{bottom:157.754667pt;}
.ya7_c00013{bottom:158.253333pt;}
.ya6_c00013{bottom:158.877333pt;}
.ya5_c00013{bottom:171.806667pt;}
.ya4_c00013{bottom:172.652000pt;}
.ya3_c00013{bottom:172.861333pt;}
.ya2_c00013{bottom:173.014667pt;}
.ya1_c00013{bottom:173.378667pt;}
.ya0_c00013{bottom:173.965333pt;}
.y9f_c00013{bottom:174.242667pt;}
.y9e_c00013{bottom:174.476000pt;}
.y9d_c00013{bottom:186.430667pt;}
.y9c_c00013{bottom:186.658667pt;}
.y9b_c00013{bottom:186.893333pt;}
.y9a_c00013{bottom:187.436000pt;}
.y99_c00013{bottom:187.652000pt;}
.y98_c00013{bottom:187.805333pt;}
.y97_c00013{bottom:188.301333pt;}
.y96_c00013{bottom:188.588000pt;}
.y95_c00013{bottom:189.358667pt;}
.y94_c00013{bottom:200.910667pt;}
.y93_c00013{bottom:201.712000pt;}
.y92_c00013{bottom:201.962667pt;}
.y91_c00013{bottom:202.302667pt;}
.y90_c00013{bottom:202.870667pt;}
.y8f_c00013{bottom:203.554667pt;}
.y8e_c00013{bottom:203.836000pt;}
.y8d_c00013{bottom:204.241333pt;}
.y8c_c00013{bottom:216.670667pt;}
.y8b_c00013{bottom:217.402667pt;}
.y8a_c00013{bottom:217.569333pt;}
.y89_c00013{bottom:217.860000pt;}
.y88_c00013{bottom:218.286667pt;}
.y87_c00013{bottom:218.549333pt;}
.y86_c00013{bottom:219.361333pt;}
.y85_c00013{bottom:232.286667pt;}
.y84_c00013{bottom:232.489333pt;}
.y83_c00013{bottom:233.258667pt;}
.y82_c00013{bottom:233.538667pt;}
.y81_c00013{bottom:234.117333pt;}
.y80_c00013{bottom:234.722667pt;}
.y7f_c00013{bottom:246.578667pt;}
.y7e_c00013{bottom:247.186667pt;}
.y7d_c00013{bottom:247.482667pt;}
.y7c_c00013{bottom:248.281333pt;}
.y7b_c00013{bottom:249.670667pt;}
.y7a_c00013{bottom:250.321333pt;}
.y79_c00013{bottom:261.585333pt;}
.y78_c00013{bottom:262.033333pt;}
.y77_c00013{bottom:262.756000pt;}
.y76_c00013{bottom:263.077333pt;}
.y75_c00013{bottom:264.218667pt;}
.y74_c00013{bottom:264.602667pt;}
.y73_c00013{bottom:265.001333pt;}
.y72_c00013{bottom:265.682667pt;}
.y71_c00013{bottom:278.764000pt;}
.y6e_c00013{bottom:293.040619pt;}
.y6f_c00013{bottom:293.040672pt;}
.y6d_c00013{bottom:293.040683pt;}
.y6c_c00013{bottom:293.040832pt;}
.y6b_c00013{bottom:293.040949pt;}
.y70_c00013{bottom:293.041195pt;}
.y6a_c00013{bottom:307.248352pt;}
.y69_c00013{bottom:307.578709pt;}
.y68_c00013{bottom:308.003829pt;}
.y67_c00013{bottom:308.248075pt;}
.y66_c00013{bottom:308.816480pt;}
.y65_c00013{bottom:309.102069pt;}
.y64_c00013{bottom:309.827200pt;}
.y63_c00013{bottom:310.054603pt;}
.y62_c00013{bottom:322.328715pt;}
.y61_c00013{bottom:322.631925pt;}
.y60_c00013{bottom:323.339733pt;}
.y5f_c00013{bottom:324.110944pt;}
.y5e_c00013{bottom:324.307509pt;}
.y5d_c00013{bottom:325.177600pt;}
.y5c_c00013{bottom:325.417195pt;}
.y5b_c00013{bottom:337.736000pt;}
.y5a_c00013{bottom:337.990336pt;}
.y59_c00013{bottom:338.857813pt;}
.y58_c00013{bottom:339.952448pt;}
.y57_c00013{bottom:340.298859pt;}
.y56_c00013{bottom:352.355488pt;}
.y55_c00013{bottom:352.964331pt;}
.y54_c00013{bottom:353.383040pt;}
.y53_c00013{bottom:353.586059pt;}
.y52_c00013{bottom:354.310443pt;}
.y51_c00013{bottom:354.607200pt;}
.y50_c00013{bottom:354.797461pt;}
.y4f_c00013{bottom:355.208821pt;}
.y4e_c00013{bottom:355.662475pt;}
.y4d_c00013{bottom:367.489739pt;}
.y4c_c00013{bottom:367.895605pt;}
.y4b_c00013{bottom:368.064128pt;}
.y4a_c00013{bottom:368.613536pt;}
.y49_c00013{bottom:368.778912pt;}
.y48_c00013{bottom:369.344331pt;}
.y47_c00013{bottom:369.578229pt;}
.y46_c00013{bottom:369.816277pt;}
.y45_c00013{bottom:370.508779pt;}
.y44_c00013{bottom:370.786453pt;}
.y43_c00013{bottom:382.779467pt;}
.y42_c00013{bottom:383.010315pt;}
.y41_c00013{bottom:383.557995pt;}
.y40_c00013{bottom:383.752512pt;}
.y3f_c00013{bottom:383.995200pt;}
.y3e_c00013{bottom:384.669557pt;}
.y3d_c00013{bottom:385.246667pt;}
.y3c_c00013{bottom:385.667797pt;}
.y3b_c00013{bottom:398.455285pt;}
.y3a_c00013{bottom:398.887157pt;}
.y39_c00013{bottom:399.111285pt;}
.y38_c00013{bottom:399.809547pt;}
.y37_c00013{bottom:400.122965pt;}
.y36_c00013{bottom:401.041216pt;}
.y35_c00013{bottom:401.268640pt;}
.y34_c00013{bottom:412.878155pt;}
.y33_c00013{bottom:413.695168pt;}
.y32_c00013{bottom:414.844437pt;}
.y31_c00013{bottom:415.141088pt;}
.y30_c00013{bottom:416.586645pt;}
.y2f_c00013{bottom:417.352971pt;}
.y2e_c00013{bottom:427.445408pt;}
.y2d_c00013{bottom:427.784523pt;}
.y2c_c00013{bottom:428.725131pt;}
.y2b_c00013{bottom:428.967328pt;}
.y2a_c00013{bottom:429.889056pt;}
.y29_c00013{bottom:430.611253pt;}
.y28_c00013{bottom:431.063264pt;}
.y27_c00013{bottom:431.513525pt;}
.y26_c00013{bottom:442.848384pt;}
.y25_c00013{bottom:443.224416pt;}
.y24_c00013{bottom:443.424363pt;}
.y23_c00013{bottom:444.337920pt;}
.y22_c00013{bottom:444.634805pt;}
.y21_c00013{bottom:445.663723pt;}
.y20_c00013{bottom:446.874955pt;}
.y1f_c00013{bottom:458.447701pt;}
.y1e_c00013{bottom:458.890283pt;}
.y1d_c00013{bottom:459.159979pt;}
.y1c_c00013{bottom:459.368533pt;}
.y1b_c00013{bottom:460.093845pt;}
.y1a_c00013{bottom:460.364533pt;}
.y19_c00013{bottom:461.300267pt;}
.y18_c00013{bottom:461.756256pt;}
.y17_c00013{bottom:473.105056pt;}
.y16_c00013{bottom:473.488832pt;}
.y15_c00013{bottom:473.810944pt;}
.y14_c00013{bottom:474.675648pt;}
.y13_c00013{bottom:475.467616pt;}
.y12_c00013{bottom:475.679339pt;}
.y11_c00013{bottom:476.093845pt;}
.y10_c00013{bottom:477.118645pt;}
.yf_c00013{bottom:488.349077pt;}
.ye_c00013{bottom:488.787008pt;}
.yd_c00013{bottom:490.248757pt;}
.yc_c00013{bottom:490.718112pt;}
.yb_c00013{bottom:492.058219pt;}
.ya_c00013{bottom:492.696405pt;}
.y9_c00013{bottom:493.201600pt;}
.y8_c00013{bottom:503.541312pt;}
.y7_c00013{bottom:503.802880pt;}
.y6_c00013{bottom:504.524459pt;}
.y5_c00013{bottom:505.580608pt;}
.y4_c00013{bottom:506.229632pt;}
.y3_c00013{bottom:506.570432pt;}
.y2_c00013{bottom:506.882667pt;}
.y1_c00013{bottom:520.320000pt;}
.hf_c00013{height:52.266667pt;}
.hb_c00013{height:52.273356pt;}
.hd_c00013{height:53.200000pt;}
.h11_c00013{height:54.133333pt;}
.h9_c00013{height:54.140262pt;}
.h2_c00013{height:55.066667pt;}
.h3_c00013{height:55.073715pt;}
.h6_c00013{height:56.007168pt;}
.h10_c00013{height:56.933333pt;}
.h4_c00013{height:57.874073pt;}
.h5_c00013{height:58.807526pt;}
.h12_c00013{height:59.733333pt;}
.ha_c00013{height:59.740979pt;}
.he_c00013{height:60.666667pt;}
.h8_c00013{height:61.607884pt;}
.h7_c00013{height:62.541337pt;}
.hc_c00013{height:63.474790pt;}
.h1_c00013{height:547.333333pt;}
.h0_c00013{height:547.440000pt;}
.w0_c00013{width:340.533333pt;}
.w1_c00013{width:340.666667pt;}
.x0_c00013{left:0.000000pt;}
.x6a_c00013{left:41.853333pt;}
.x45_c00013{left:43.105376pt;}
.x2b_c00013{left:44.020661pt;}
.x9_c00013{left:44.931445pt;}
.x53_c00013{left:47.422667pt;}
.x4a_c00013{left:51.355339pt;}
.x66_c00013{left:54.636000pt;}
.x46_c00013{left:60.568875pt;}
.x2c_c00013{left:62.985877pt;}
.x37_c00013{left:65.608821pt;}
.x2_c00013{left:67.256000pt;}
.xa_c00013{left:69.004192pt;}
.x41_c00013{left:70.892064pt;}
.x21_c00013{left:72.840629pt;}
.x5d_c00013{left:74.005333pt;}
.x16_c00013{left:75.428960pt;}
.x31_c00013{left:76.646059pt;}
.x3d_c00013{left:78.864811pt;}
.x4c_c00013{left:81.360000pt;}
.x27_c00013{left:84.984171pt;}
.x3_c00013{left:86.770667pt;}
.x6b_c00013{left:89.845333pt;}
.x54_c00013{left:90.809333pt;}
.x67_c00013{left:93.933333pt;}
.x5e_c00013{left:95.605333pt;}
.x57_c00013{left:97.798667pt;}
.xb_c00013{left:99.388427pt;}
.x22_c00013{left:101.091296pt;}
.x5f_c00013{left:102.084000pt;}
.xf_c00013{left:105.241227pt;}
.x4_c00013{left:108.070667pt;}
.x3e_c00013{left:110.492992pt;}
.x4e_c00013{left:111.436000pt;}
.x7c_c00013{left:112.433333pt;}
.x1d_c00013{left:115.973216pt;}
.x4d_c00013{left:117.360000pt;}
.x38_c00013{left:118.892715pt;}
.x32_c00013{left:121.050859pt;}
.x60_c00013{left:124.169333pt;}
.x3f_c00013{left:125.135029pt;}
.x7d_c00013{left:126.097333pt;}
.x6c_c00013{left:128.245333pt;}
.x10_c00013{left:129.647509pt;}
.x70_c00013{left:130.917333pt;}
.x5b_c00013{left:132.342667pt;}
.x4f_c00013{left:135.449333pt;}
.x17_c00013{left:137.829963pt;}
.x2d_c00013{left:139.548117pt;}
.x75_c00013{left:140.716000pt;}
.x11_c00013{left:142.129984pt;}
.x7a_c00013{left:143.188000pt;}
.x44_c00013{left:144.334795pt;}
.x23_c00013{left:146.228629pt;}
.x5_c00013{left:148.634667pt;}
.x58_c00013{left:150.405333pt;}
.x73_c00013{left:153.674667pt;}
.x18_c00013{left:155.831573pt;}
.x28_c00013{left:161.077856pt;}
.xc_c00013{left:163.223328pt;}
.x2e_c00013{left:165.721803pt;}
.x5c_c00013{left:167.912000pt;}
.x77_c00013{left:170.248000pt;}
.x1_c00013{left:172.320000pt;}
.x61_c00013{left:174.086667pt;}
.x1e_c00013{left:176.529589pt;}
.x68_c00013{left:178.894667pt;}
.x6d_c00013{left:180.565333pt;}
.x47_c00013{left:182.020032pt;}
.x55_c00013{left:183.442667pt;}
.xd_c00013{left:185.556203pt;}
.x7e_c00013{left:187.053333pt;}
.x12_c00013{left:188.710571pt;}
.x62_c00013{left:190.662667pt;}
.x33_c00013{left:191.619584pt;}
.x1f_c00013{left:194.001312pt;}
.x69_c00013{left:194.988000pt;}
.x6e_c00013{left:197.381333pt;}
.x39_c00013{left:198.648533pt;}
.x48_c00013{left:200.786261pt;}
.x19_c00013{left:204.164341pt;}
.x34_c00013{left:206.610976pt;}
.x71_c00013{left:209.406667pt;}
.x3a_c00013{left:211.318464pt;}
.x6_c00013{left:214.644000pt;}
.x1a_c00013{left:218.032555pt;}
.x24_c00013{left:218.973963pt;}
.x42_c00013{left:221.864651pt;}
.x2f_c00013{left:223.866848pt;}
.x50_c00013{left:226.869333pt;}
.x63_c00013{left:232.400000pt;}
.x49_c00013{left:233.441152pt;}
.x1b_c00013{left:236.055520pt;}
.x29_c00013{left:237.194208pt;}
.x74_c00013{left:238.669333pt;}
.x13_c00013{left:239.587093pt;}
.x43_c00013{left:241.428256pt;}
.x30_c00013{left:242.542709pt;}
.x78_c00013{left:244.174667pt;}
.x59_c00013{left:245.681333pt;}
.x20_c00013{left:247.764459pt;}
.x35_c00013{left:248.759669pt;}
.x64_c00013{left:250.416000pt;}
.x40_c00013{left:251.403733pt;}
.x3b_c00013{left:253.575157pt;}
.xe_c00013{left:255.159968pt;}
.x56_c00013{left:256.400000pt;}
.x14_c00013{left:258.552128pt;}
.x7_c00013{left:259.742667pt;}
.x79_c00013{left:261.690667pt;}
.x5a_c00013{left:264.122667pt;}
.x1c_c00013{left:265.550656pt;}
.x36_c00013{left:266.521856pt;}
.x65_c00013{left:267.936000pt;}
.x51_c00013{left:272.054667pt;}
.x8_c00013{left:276.090667pt;}
.x25_c00013{left:277.761963pt;}
.x2a_c00013{left:280.172139pt;}
.x15_c00013{left:281.121099pt;}
.x76_c00013{left:286.390667pt;}
.x4b_c00013{left:288.984160pt;}
.x72_c00013{left:290.093333pt;}
.x7b_c00013{left:295.052000pt;}
.x6f_c00013{left:296.502667pt;}
.x3c_c00013{left:297.726603pt;}
.x26_c00013{left:298.956629pt;}
.x52_c00013{left:300.058667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00014 {
    display:none;
  }
  .loading-indicator_c00014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00014 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00014 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00014" -> "#page-container .classname_c00014")
 */
.pf_c00014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00014 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00014 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00014 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00014 {overflow:visible;}
  }
}
.c_c00014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00014 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00014:after { /* webkit #35443 */
  content: '';
}
.t_c00014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00014 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00014 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00014 { /* info for Javascript */
  display:none;
}
.l_c00014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00014:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00014 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00014.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00014;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00014{transform:matrix(0.022025,0.001058,-0.011998,0.249712,0,0);-ms-transform:matrix(0.022025,0.001058,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.022025,0.001058,-0.011998,0.249712,0,0);}
.m72_c00014{transform:matrix(0.038531,0.001851,-0.011998,0.249712,0,0);-ms-transform:matrix(0.038531,0.001851,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.038531,0.001851,-0.011998,0.249712,0,0);}
.m4b_c00014{transform:matrix(0.074554,0.003582,-0.011998,0.249712,0,0);-ms-transform:matrix(0.074554,0.003582,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.074554,0.003582,-0.011998,0.249712,0,0);}
.m20_c00014{transform:matrix(0.082310,0.003955,-0.011998,0.249712,0,0);-ms-transform:matrix(0.082310,0.003955,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.082310,0.003955,-0.011998,0.249712,0,0);}
.me2_c00014{transform:matrix(0.132688,0.006243,-0.011749,0.249724,0,0);-ms-transform:matrix(0.132688,0.006243,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.132688,0.006243,-0.011749,0.249724,0,0);}
.m23_c00014{transform:matrix(0.135454,0.006508,-0.011998,0.249712,0,0);-ms-transform:matrix(0.135454,0.006508,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.135454,0.006508,-0.011998,0.249712,0,0);}
.m40_c00014{transform:matrix(0.141642,0.006806,-0.011998,0.249712,0,0);-ms-transform:matrix(0.141642,0.006806,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.141642,0.006806,-0.011998,0.249712,0,0);}
.m3c_c00014{transform:matrix(0.146701,0.007049,-0.011998,0.249712,0,0);-ms-transform:matrix(0.146701,0.007049,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.146701,0.007049,-0.011998,0.249712,0,0);}
.m28_c00014{transform:matrix(0.149997,0.007207,-0.011998,0.249712,0,0);-ms-transform:matrix(0.149997,0.007207,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.149997,0.007207,-0.011998,0.249712,0,0);}
.m0_c00014{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00014{transform:matrix(0.155131,0.007454,-0.011998,0.249712,0,0);-ms-transform:matrix(0.155131,0.007454,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.155131,0.007454,-0.011998,0.249712,0,0);}
.mcf_c00014{transform:matrix(0.155588,0.007320,-0.011749,0.249724,0,0);-ms-transform:matrix(0.155588,0.007320,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.155588,0.007320,-0.011749,0.249724,0,0);}
.m7b_c00014{transform:matrix(0.155845,0.007488,-0.011998,0.249712,0,0);-ms-transform:matrix(0.155845,0.007488,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.155845,0.007488,-0.011998,0.249712,0,0);}
.me8_c00014{transform:matrix(0.157666,0.007418,-0.011749,0.249724,0,0);-ms-transform:matrix(0.157666,0.007418,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.157666,0.007418,-0.011749,0.249724,0,0);}
.m58_c00014{transform:matrix(0.158582,0.007620,-0.011998,0.249712,0,0);-ms-transform:matrix(0.158582,0.007620,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.158582,0.007620,-0.011998,0.249712,0,0);}
.m4_c00014{transform:matrix(0.158982,0.007639,-0.011998,0.249712,0,0);-ms-transform:matrix(0.158982,0.007639,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.158982,0.007639,-0.011998,0.249712,0,0);}
.m2b_c00014{transform:matrix(0.159201,0.007649,-0.011998,0.249712,0,0);-ms-transform:matrix(0.159201,0.007649,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.159201,0.007649,-0.011998,0.249712,0,0);}
.m5d_c00014{transform:matrix(0.159836,0.007680,-0.011998,0.249712,0,0);-ms-transform:matrix(0.159836,0.007680,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.159836,0.007680,-0.011998,0.249712,0,0);}
.mf9_c00014{transform:matrix(0.161047,0.007577,-0.011749,0.249724,0,0);-ms-transform:matrix(0.161047,0.007577,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.161047,0.007577,-0.011749,0.249724,0,0);}
.m22_c00014{transform:matrix(0.161169,0.007744,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161169,0.007744,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161169,0.007744,-0.011998,0.249712,0,0);}
.m3a_c00014{transform:matrix(0.161424,0.007756,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161424,0.007756,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161424,0.007756,-0.011998,0.249712,0,0);}
.m9d_c00014{transform:matrix(0.161549,0.007762,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161549,0.007762,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161549,0.007762,-0.011998,0.249712,0,0);}
.ma2_c00014{transform:matrix(0.162048,0.007786,-0.011998,0.249712,0,0);-ms-transform:matrix(0.162048,0.007786,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.162048,0.007786,-0.011998,0.249712,0,0);}
.m4d_c00014{transform:matrix(0.162328,0.007800,-0.011998,0.249712,0,0);-ms-transform:matrix(0.162328,0.007800,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.162328,0.007800,-0.011998,0.249712,0,0);}
.mc7_c00014{transform:matrix(0.162595,0.007650,-0.011749,0.249724,0,0);-ms-transform:matrix(0.162595,0.007650,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.162595,0.007650,-0.011749,0.249724,0,0);}
.m9f_c00014{transform:matrix(0.163401,0.007851,-0.011998,0.249712,0,0);-ms-transform:matrix(0.163401,0.007851,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.163401,0.007851,-0.011998,0.249712,0,0);}
.m87_c00014{transform:matrix(0.164475,0.007903,-0.011998,0.249712,0,0);-ms-transform:matrix(0.164475,0.007903,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.164475,0.007903,-0.011998,0.249712,0,0);}
.ma9_c00014{transform:matrix(0.164715,0.007914,-0.011998,0.249712,0,0);-ms-transform:matrix(0.164715,0.007914,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.164715,0.007914,-0.011998,0.249712,0,0);}
.md8_c00014{transform:matrix(0.165447,0.007784,-0.011749,0.249724,0,0);-ms-transform:matrix(0.165447,0.007784,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.165447,0.007784,-0.011749,0.249724,0,0);}
.m7a_c00014{transform:matrix(0.165709,0.007962,-0.011998,0.249712,0,0);-ms-transform:matrix(0.165709,0.007962,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.165709,0.007962,-0.011998,0.249712,0,0);}
.m3e_c00014{transform:matrix(0.166443,0.007997,-0.011998,0.249712,0,0);-ms-transform:matrix(0.166443,0.007997,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.166443,0.007997,-0.011998,0.249712,0,0);}
.m24_c00014{transform:matrix(0.166912,0.008020,-0.011998,0.249712,0,0);-ms-transform:matrix(0.166912,0.008020,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.166912,0.008020,-0.011998,0.249712,0,0);}
.m42_c00014{transform:matrix(0.167811,0.008063,-0.011998,0.249712,0,0);-ms-transform:matrix(0.167811,0.008063,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.167811,0.008063,-0.011998,0.249712,0,0);}
.m8a_c00014{transform:matrix(0.168176,0.008081,-0.011998,0.249712,0,0);-ms-transform:matrix(0.168176,0.008081,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.168176,0.008081,-0.011998,0.249712,0,0);}
.mef_c00014{transform:matrix(0.168998,0.007951,-0.011749,0.249724,0,0);-ms-transform:matrix(0.168998,0.007951,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.168998,0.007951,-0.011749,0.249724,0,0);}
.m65_c00014{transform:matrix(0.169080,0.008124,-0.011998,0.249712,0,0);-ms-transform:matrix(0.169080,0.008124,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.169080,0.008124,-0.011998,0.249712,0,0);}
.m3b_c00014{transform:matrix(0.169395,0.008139,-0.011998,0.249712,0,0);-ms-transform:matrix(0.169395,0.008139,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.169395,0.008139,-0.011998,0.249712,0,0);}
.mf5_c00014{transform:matrix(0.169872,0.007992,-0.011749,0.249724,0,0);-ms-transform:matrix(0.169872,0.007992,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.169872,0.007992,-0.011749,0.249724,0,0);}
.md0_c00014{transform:matrix(0.170377,0.008016,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170377,0.008016,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170377,0.008016,-0.011749,0.249724,0,0);}
.mda_c00014{transform:matrix(0.171056,0.008048,-0.011749,0.249724,0,0);-ms-transform:matrix(0.171056,0.008048,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.171056,0.008048,-0.011749,0.249724,0,0);}
.mcb_c00014{transform:matrix(0.171066,0.008048,-0.011749,0.249724,0,0);-ms-transform:matrix(0.171066,0.008048,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.171066,0.008048,-0.011749,0.249724,0,0);}
.m1e_c00014{transform:matrix(0.171917,0.008260,-0.011998,0.249712,0,0);-ms-transform:matrix(0.171917,0.008260,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.171917,0.008260,-0.011998,0.249712,0,0);}
.m61_c00014{transform:matrix(0.172316,0.008279,-0.011998,0.249712,0,0);-ms-transform:matrix(0.172316,0.008279,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.172316,0.008279,-0.011998,0.249712,0,0);}
.m6d_c00014{transform:matrix(0.172386,0.008283,-0.011998,0.249712,0,0);-ms-transform:matrix(0.172386,0.008283,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.172386,0.008283,-0.011998,0.249712,0,0);}
.m46_c00014{transform:matrix(0.172806,0.008303,-0.011998,0.249712,0,0);-ms-transform:matrix(0.172806,0.008303,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.172806,0.008303,-0.011998,0.249712,0,0);}
.m55_c00014{transform:matrix(0.173165,0.008320,-0.011998,0.249712,0,0);-ms-transform:matrix(0.173165,0.008320,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.173165,0.008320,-0.011998,0.249712,0,0);}
.ma8_c00014{transform:matrix(0.173460,0.008334,-0.011998,0.249712,0,0);-ms-transform:matrix(0.173460,0.008334,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.173460,0.008334,-0.011998,0.249712,0,0);}
.mb5_c00014{transform:matrix(0.173693,0.008172,-0.011749,0.249724,0,0);-ms-transform:matrix(0.173693,0.008172,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.173693,0.008172,-0.011749,0.249724,0,0);}
.m89_c00014{transform:matrix(0.173809,0.008351,-0.011998,0.249712,0,0);-ms-transform:matrix(0.173809,0.008351,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.173809,0.008351,-0.011998,0.249712,0,0);}
.meb_c00014{transform:matrix(0.174467,0.008208,-0.011749,0.249724,0,0);-ms-transform:matrix(0.174467,0.008208,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.174467,0.008208,-0.011749,0.249724,0,0);}
.m6a_c00014{transform:matrix(0.175008,0.008409,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175008,0.008409,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175008,0.008409,-0.011998,0.249712,0,0);}
.m6_c00014{transform:matrix(0.175068,0.008412,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175068,0.008412,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175068,0.008412,-0.011998,0.249712,0,0);}
.m2_c00014{transform:matrix(0.175532,0.008434,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175532,0.008434,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175532,0.008434,-0.011998,0.249712,0,0);}
.m8c_c00014{transform:matrix(0.175602,0.008437,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175602,0.008437,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175602,0.008437,-0.011998,0.249712,0,0);}
.m97_c00014{transform:matrix(0.175802,0.008447,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175802,0.008447,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175802,0.008447,-0.011998,0.249712,0,0);}
.m38_c00014{transform:matrix(0.175887,0.008451,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175887,0.008451,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175887,0.008451,-0.011998,0.249712,0,0);}
.m5f_c00014{transform:matrix(0.176072,0.008460,-0.011998,0.249712,0,0);-ms-transform:matrix(0.176072,0.008460,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.176072,0.008460,-0.011998,0.249712,0,0);}
.m74_c00014{transform:matrix(0.176776,0.008494,-0.011998,0.249712,0,0);-ms-transform:matrix(0.176776,0.008494,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.176776,0.008494,-0.011998,0.249712,0,0);}
.m9_c00014{transform:matrix(0.176946,0.008502,-0.011998,0.249712,0,0);-ms-transform:matrix(0.176946,0.008502,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.176946,0.008502,-0.011998,0.249712,0,0);}
.m5e_c00014{transform:matrix(0.177525,0.008530,-0.011998,0.249712,0,0);-ms-transform:matrix(0.177525,0.008530,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.177525,0.008530,-0.011998,0.249712,0,0);}
.ma0_c00014{transform:matrix(0.177605,0.008534,-0.011998,0.249712,0,0);-ms-transform:matrix(0.177605,0.008534,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.177605,0.008534,-0.011998,0.249712,0,0);}
.m4a_c00014{transform:matrix(0.177690,0.008538,-0.011998,0.249712,0,0);-ms-transform:matrix(0.177690,0.008538,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.177690,0.008538,-0.011998,0.249712,0,0);}
.mc0_c00014{transform:matrix(0.177828,0.008366,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177828,0.008366,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177828,0.008366,-0.011749,0.249724,0,0);}
.m26_c00014{transform:matrix(0.177895,0.008547,-0.011998,0.249712,0,0);-ms-transform:matrix(0.177895,0.008547,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.177895,0.008547,-0.011998,0.249712,0,0);}
.m9a_c00014{transform:matrix(0.177940,0.008550,-0.011998,0.249712,0,0);-ms-transform:matrix(0.177940,0.008550,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.177940,0.008550,-0.011998,0.249712,0,0);}
.m8d_c00014{transform:matrix(0.178100,0.008557,-0.011998,0.249712,0,0);-ms-transform:matrix(0.178100,0.008557,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.178100,0.008557,-0.011998,0.249712,0,0);}
.m3d_c00014{transform:matrix(0.178164,0.008560,-0.011998,0.249712,0,0);-ms-transform:matrix(0.178164,0.008560,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.178164,0.008560,-0.011998,0.249712,0,0);}
.m50_c00014{transform:matrix(0.178644,0.008583,-0.011998,0.249712,0,0);-ms-transform:matrix(0.178644,0.008583,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.178644,0.008583,-0.011998,0.249712,0,0);}
.mde_c00014{transform:matrix(0.179087,0.008426,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179087,0.008426,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179087,0.008426,-0.011749,0.249724,0,0);}
.mcd_c00014{transform:matrix(0.179112,0.008427,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179112,0.008427,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179112,0.008427,-0.011749,0.249724,0,0);}
.mab_c00014{transform:matrix(0.179471,0.008444,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179471,0.008444,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179471,0.008444,-0.011749,0.249724,0,0);}
.m86_c00014{transform:matrix(0.180057,0.008651,-0.011998,0.249712,0,0);-ms-transform:matrix(0.180057,0.008651,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.180057,0.008651,-0.011998,0.249712,0,0);}
.m91_c00014{transform:matrix(0.180722,0.008683,-0.011998,0.249712,0,0);-ms-transform:matrix(0.180722,0.008683,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.180722,0.008683,-0.011998,0.249712,0,0);}
.mee_c00014{transform:matrix(0.180965,0.008514,-0.011749,0.249724,0,0);-ms-transform:matrix(0.180965,0.008514,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.180965,0.008514,-0.011749,0.249724,0,0);}
.m2a_c00014{transform:matrix(0.181046,0.008699,-0.011998,0.249712,0,0);-ms-transform:matrix(0.181046,0.008699,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.181046,0.008699,-0.011998,0.249712,0,0);}
.md1_c00014{transform:matrix(0.181319,0.008531,-0.011749,0.249724,0,0);-ms-transform:matrix(0.181319,0.008531,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.181319,0.008531,-0.011749,0.249724,0,0);}
.m1d_c00014{transform:matrix(0.181885,0.008739,-0.011998,0.249712,0,0);-ms-transform:matrix(0.181885,0.008739,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.181885,0.008739,-0.011998,0.249712,0,0);}
.md3_c00014{transform:matrix(0.182059,0.008565,-0.011749,0.249724,0,0);-ms-transform:matrix(0.182059,0.008565,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.182059,0.008565,-0.011749,0.249724,0,0);}
.m82_c00014{transform:matrix(0.182205,0.008755,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182205,0.008755,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182205,0.008755,-0.011998,0.249712,0,0);}
.me5_c00014{transform:matrix(0.182228,0.008573,-0.011749,0.249724,0,0);-ms-transform:matrix(0.182228,0.008573,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.182228,0.008573,-0.011749,0.249724,0,0);}
.m35_c00014{transform:matrix(0.182300,0.008759,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182300,0.008759,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182300,0.008759,-0.011998,0.249712,0,0);}
.m3_c00014{transform:matrix(0.182465,0.008767,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182465,0.008767,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182465,0.008767,-0.011998,0.249712,0,0);}
.m78_c00014{transform:matrix(0.182849,0.008786,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182849,0.008786,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182849,0.008786,-0.011998,0.249712,0,0);}
.m88_c00014{transform:matrix(0.183169,0.008801,-0.011998,0.249712,0,0);-ms-transform:matrix(0.183169,0.008801,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.183169,0.008801,-0.011998,0.249712,0,0);}
.me4_c00014{transform:matrix(0.183417,0.008629,-0.011749,0.249724,0,0);-ms-transform:matrix(0.183417,0.008629,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.183417,0.008629,-0.011749,0.249724,0,0);}
.me9_c00014{transform:matrix(0.184071,0.008660,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184071,0.008660,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184071,0.008660,-0.011749,0.249724,0,0);}
.m30_c00014{transform:matrix(0.184178,0.008849,-0.011998,0.249712,0,0);-ms-transform:matrix(0.184178,0.008849,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.184178,0.008849,-0.011998,0.249712,0,0);}
.mbc_c00014{transform:matrix(0.184401,0.008676,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184401,0.008676,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184401,0.008676,-0.011749,0.249724,0,0);}
.m57_c00014{transform:matrix(0.184422,0.008861,-0.011998,0.249712,0,0);-ms-transform:matrix(0.184422,0.008861,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.184422,0.008861,-0.011998,0.249712,0,0);}
.mdc_c00014{transform:matrix(0.184646,0.008687,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184646,0.008687,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184646,0.008687,-0.011749,0.249724,0,0);}
.ma5_c00014{transform:matrix(0.184842,0.008881,-0.011998,0.249712,0,0);-ms-transform:matrix(0.184842,0.008881,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.184842,0.008881,-0.011998,0.249712,0,0);}
.mb3_c00014{transform:matrix(0.185115,0.008709,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185115,0.008709,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185115,0.008709,-0.011749,0.249724,0,0);}
.m1c_c00014{transform:matrix(0.185141,0.008896,-0.011998,0.249712,0,0);-ms-transform:matrix(0.185141,0.008896,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.185141,0.008896,-0.011998,0.249712,0,0);}
.md6_c00014{transform:matrix(0.185410,0.008723,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185410,0.008723,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185410,0.008723,-0.011749,0.249724,0,0);}
.me0_c00014{transform:matrix(0.186234,0.008762,-0.011749,0.249724,0,0);-ms-transform:matrix(0.186234,0.008762,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.186234,0.008762,-0.011749,0.249724,0,0);}
.m39_c00014{transform:matrix(0.186680,0.008970,-0.011998,0.249712,0,0);-ms-transform:matrix(0.186680,0.008970,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.186680,0.008970,-0.011998,0.249712,0,0);}
.me7_c00014{transform:matrix(0.187647,0.008828,-0.011749,0.249724,0,0);-ms-transform:matrix(0.187647,0.008828,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.187647,0.008828,-0.011749,0.249724,0,0);}
.m59_c00014{transform:matrix(0.187758,0.009021,-0.011998,0.249712,0,0);-ms-transform:matrix(0.187758,0.009021,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.187758,0.009021,-0.011998,0.249712,0,0);}
.m31_c00014{transform:matrix(0.187918,0.009029,-0.011998,0.249712,0,0);-ms-transform:matrix(0.187918,0.009029,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.187918,0.009029,-0.011998,0.249712,0,0);}
.m44_c00014{transform:matrix(0.188043,0.009035,-0.011998,0.249712,0,0);-ms-transform:matrix(0.188043,0.009035,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.188043,0.009035,-0.011998,0.249712,0,0);}
.mf8_c00014{transform:matrix(0.188092,0.008849,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188092,0.008849,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188092,0.008849,-0.011749,0.249724,0,0);}
.md2_c00014{transform:matrix(0.188212,0.008855,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188212,0.008855,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188212,0.008855,-0.011749,0.249724,0,0);}
.mc_c00014{transform:matrix(0.188533,0.009059,-0.011998,0.249712,0,0);-ms-transform:matrix(0.188533,0.009059,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.188533,0.009059,-0.011998,0.249712,0,0);}
.mc4_c00014{transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);}
.mec_c00014{transform:matrix(0.189046,0.008894,-0.011749,0.249724,0,0);-ms-transform:matrix(0.189046,0.008894,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.189046,0.008894,-0.011749,0.249724,0,0);}
.m5a_c00014{transform:matrix(0.189057,0.009084,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189057,0.009084,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189057,0.009084,-0.011998,0.249712,0,0);}
.ma4_c00014{transform:matrix(0.189137,0.009088,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189137,0.009088,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189137,0.009088,-0.011998,0.249712,0,0);}
.m4f_c00014{transform:matrix(0.189411,0.009101,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189411,0.009101,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189411,0.009101,-0.011998,0.249712,0,0);}
.m2f_c00014{transform:matrix(0.189526,0.009106,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189526,0.009106,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189526,0.009106,-0.011998,0.249712,0,0);}
.mba_c00014{transform:matrix(0.189580,0.008919,-0.011749,0.249724,0,0);-ms-transform:matrix(0.189580,0.008919,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.189580,0.008919,-0.011749,0.249724,0,0);}
.m45_c00014{transform:matrix(0.189691,0.009114,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189691,0.009114,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189691,0.009114,-0.011998,0.249712,0,0);}
.m27_c00014{transform:matrix(0.190076,0.009133,-0.011998,0.249712,0,0);-ms-transform:matrix(0.190076,0.009133,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.190076,0.009133,-0.011998,0.249712,0,0);}
.m77_c00014{transform:matrix(0.190246,0.009141,-0.011998,0.249712,0,0);-ms-transform:matrix(0.190246,0.009141,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.190246,0.009141,-0.011998,0.249712,0,0);}
.ma1_c00014{transform:matrix(0.190365,0.009147,-0.011998,0.249712,0,0);-ms-transform:matrix(0.190365,0.009147,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.190365,0.009147,-0.011998,0.249712,0,0);}
.m4c_c00014{transform:matrix(0.190475,0.009152,-0.011998,0.249712,0,0);-ms-transform:matrix(0.190475,0.009152,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.190475,0.009152,-0.011998,0.249712,0,0);}
.mcc_c00014{transform:matrix(0.190519,0.008963,-0.011749,0.249724,0,0);-ms-transform:matrix(0.190519,0.008963,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.190519,0.008963,-0.011749,0.249724,0,0);}
.m64_c00014{transform:matrix(0.191224,0.009188,-0.011998,0.249712,0,0);-ms-transform:matrix(0.191224,0.009188,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.191224,0.009188,-0.011998,0.249712,0,0);}
.m33_c00014{transform:matrix(0.191664,0.009209,-0.011998,0.249712,0,0);-ms-transform:matrix(0.191664,0.009209,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.191664,0.009209,-0.011998,0.249712,0,0);}
.m73_c00014{transform:matrix(0.192143,0.009232,-0.011998,0.249712,0,0);-ms-transform:matrix(0.192143,0.009232,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.192143,0.009232,-0.011998,0.249712,0,0);}
.mdf_c00014{transform:matrix(0.192152,0.009040,-0.011749,0.249724,0,0);-ms-transform:matrix(0.192152,0.009040,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.192152,0.009040,-0.011749,0.249724,0,0);}
.m94_c00014{transform:matrix(0.192273,0.009238,-0.011998,0.249712,0,0);-ms-transform:matrix(0.192273,0.009238,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.192273,0.009238,-0.011998,0.249712,0,0);}
.m21_c00014{transform:matrix(0.192453,0.009247,-0.011998,0.249712,0,0);-ms-transform:matrix(0.192453,0.009247,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.192453,0.009247,-0.011998,0.249712,0,0);}
.m5c_c00014{transform:matrix(0.192458,0.009247,-0.011998,0.249712,0,0);-ms-transform:matrix(0.192458,0.009247,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.192458,0.009247,-0.011998,0.249712,0,0);}
.mb1_c00014{transform:matrix(0.192787,0.009070,-0.011749,0.249724,0,0);-ms-transform:matrix(0.192787,0.009070,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.192787,0.009070,-0.011749,0.249724,0,0);}
.m34_c00014{transform:matrix(0.192932,0.009270,-0.011998,0.249712,0,0);-ms-transform:matrix(0.192932,0.009270,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.192932,0.009270,-0.011998,0.249712,0,0);}
.ma_c00014{transform:matrix(0.193147,0.009280,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193147,0.009280,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193147,0.009280,-0.011998,0.249712,0,0);}
.mb_c00014{transform:matrix(0.193302,0.009288,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193302,0.009288,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193302,0.009288,-0.011998,0.249712,0,0);}
.m41_c00014{transform:matrix(0.193387,0.009292,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193387,0.009292,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193387,0.009292,-0.011998,0.249712,0,0);}
.m48_c00014{transform:matrix(0.193437,0.009294,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193437,0.009294,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193437,0.009294,-0.011998,0.249712,0,0);}
.me_c00014{transform:matrix(0.193562,0.009300,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193562,0.009300,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193562,0.009300,-0.011998,0.249712,0,0);}
.m43_c00014{transform:matrix(0.194201,0.009331,-0.011998,0.249712,0,0);-ms-transform:matrix(0.194201,0.009331,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.194201,0.009331,-0.011998,0.249712,0,0);}
.m6c_c00014{transform:matrix(0.194401,0.009341,-0.011998,0.249712,0,0);-ms-transform:matrix(0.194401,0.009341,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.194401,0.009341,-0.011998,0.249712,0,0);}
.mf6_c00014{transform:matrix(0.194760,0.009163,-0.011749,0.249724,0,0);-ms-transform:matrix(0.194760,0.009163,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.194760,0.009163,-0.011749,0.249724,0,0);}
.m9b_c00014{transform:matrix(0.194945,0.009367,-0.011998,0.249712,0,0);-ms-transform:matrix(0.194945,0.009367,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.194945,0.009367,-0.011998,0.249712,0,0);}
.m4e_c00014{transform:matrix(0.195435,0.009390,-0.011998,0.249712,0,0);-ms-transform:matrix(0.195435,0.009390,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.195435,0.009390,-0.011998,0.249712,0,0);}
.m8f_c00014{transform:matrix(0.195489,0.009393,-0.011998,0.249712,0,0);-ms-transform:matrix(0.195489,0.009393,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.195489,0.009393,-0.011998,0.249712,0,0);}
.m19_c00014{transform:matrix(0.195669,0.009402,-0.011998,0.249712,0,0);-ms-transform:matrix(0.195669,0.009402,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.195669,0.009402,-0.011998,0.249712,0,0);}
.mf0_c00014{transform:matrix(0.195758,0.009210,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195758,0.009210,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195758,0.009210,-0.011749,0.249724,0,0);}
.mc8_c00014{transform:matrix(0.195878,0.009215,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195878,0.009215,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195878,0.009215,-0.011749,0.249724,0,0);}
.m5b_c00014{transform:matrix(0.196094,0.009422,-0.011998,0.249712,0,0);-ms-transform:matrix(0.196094,0.009422,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.196094,0.009422,-0.011998,0.249712,0,0);}
.m47_c00014{transform:matrix(0.196543,0.009444,-0.011998,0.249712,0,0);-ms-transform:matrix(0.196543,0.009444,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.196543,0.009444,-0.011998,0.249712,0,0);}
.mf3_c00014{transform:matrix(0.196623,0.009251,-0.011749,0.249724,0,0);-ms-transform:matrix(0.196623,0.009251,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.196623,0.009251,-0.011749,0.249724,0,0);}
.m84_c00014{transform:matrix(0.196998,0.009465,-0.011998,0.249712,0,0);-ms-transform:matrix(0.196998,0.009465,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.196998,0.009465,-0.011998,0.249712,0,0);}
.m70_c00014{transform:matrix(0.197312,0.009480,-0.011998,0.249712,0,0);-ms-transform:matrix(0.197312,0.009480,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.197312,0.009480,-0.011998,0.249712,0,0);}
.m83_c00014{transform:matrix(0.197467,0.009488,-0.011998,0.249712,0,0);-ms-transform:matrix(0.197467,0.009488,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.197467,0.009488,-0.011998,0.249712,0,0);}
.m7c_c00014{transform:matrix(0.197652,0.009497,-0.011998,0.249712,0,0);-ms-transform:matrix(0.197652,0.009497,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.197652,0.009497,-0.011998,0.249712,0,0);}
.m71_c00014{transform:matrix(0.198376,0.009532,-0.011998,0.249712,0,0);-ms-transform:matrix(0.198376,0.009532,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.198376,0.009532,-0.011998,0.249712,0,0);}
.m25_c00014{transform:matrix(0.199969,0.009608,-0.011998,0.249712,0,0);-ms-transform:matrix(0.199969,0.009608,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.199969,0.009608,-0.011998,0.249712,0,0);}
.m90_c00014{transform:matrix(0.200254,0.009622,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200254,0.009622,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200254,0.009622,-0.011998,0.249712,0,0);}
.m79_c00014{transform:matrix(0.200399,0.009629,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200399,0.009629,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200399,0.009629,-0.011998,0.249712,0,0);}
.m2d_c00014{transform:matrix(0.200519,0.009635,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200519,0.009635,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200519,0.009635,-0.011998,0.249712,0,0);}
.ma7_c00014{transform:matrix(0.200693,0.009643,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200693,0.009643,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200693,0.009643,-0.011998,0.249712,0,0);}
.m36_c00014{transform:matrix(0.200763,0.009646,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200763,0.009646,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200763,0.009646,-0.011998,0.249712,0,0);}
.mce_c00014{transform:matrix(0.200773,0.009446,-0.011749,0.249724,0,0);-ms-transform:matrix(0.200773,0.009446,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.200773,0.009446,-0.011749,0.249724,0,0);}
.m8b_c00014{transform:matrix(0.200808,0.009648,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200808,0.009648,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200808,0.009648,-0.011998,0.249712,0,0);}
.mf7_c00014{transform:matrix(0.201392,0.009475,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201392,0.009475,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201392,0.009475,-0.011749,0.249724,0,0);}
.m49_c00014{transform:matrix(0.201488,0.009681,-0.011998,0.249712,0,0);-ms-transform:matrix(0.201488,0.009681,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.201488,0.009681,-0.011998,0.249712,0,0);}
.mbf_c00014{transform:matrix(0.201707,0.009490,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201707,0.009490,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201707,0.009490,-0.011749,0.249724,0,0);}
.m62_c00014{transform:matrix(0.201827,0.009697,-0.011998,0.249712,0,0);-ms-transform:matrix(0.201827,0.009697,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.201827,0.009697,-0.011998,0.249712,0,0);}
.m8e_c00014{transform:matrix(0.201857,0.009699,-0.011998,0.249712,0,0);-ms-transform:matrix(0.201857,0.009699,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.201857,0.009699,-0.011998,0.249712,0,0);}
.m93_c00014{transform:matrix(0.202252,0.009718,-0.011998,0.249712,0,0);-ms-transform:matrix(0.202252,0.009718,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.202252,0.009718,-0.011998,0.249712,0,0);}
.mf_c00014{transform:matrix(0.202436,0.009727,-0.011998,0.249712,0,0);-ms-transform:matrix(0.202436,0.009727,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.202436,0.009727,-0.011998,0.249712,0,0);}
.mae_c00014{transform:matrix(0.202626,0.009533,-0.011749,0.249724,0,0);-ms-transform:matrix(0.202626,0.009533,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.202626,0.009533,-0.011749,0.249724,0,0);}
.mfa_c00014{transform:matrix(0.202980,0.009550,-0.011749,0.249724,0,0);-ms-transform:matrix(0.202980,0.009550,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.202980,0.009550,-0.011749,0.249724,0,0);}
.m6f_c00014{transform:matrix(0.203146,0.009761,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203146,0.009761,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203146,0.009761,-0.011998,0.249712,0,0);}
.m7d_c00014{transform:matrix(0.203365,0.009771,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203365,0.009771,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203365,0.009771,-0.011998,0.249712,0,0);}
.m52_c00014{transform:matrix(0.203425,0.009774,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203425,0.009774,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203425,0.009774,-0.011998,0.249712,0,0);}
.maa_c00014{transform:matrix(0.203560,0.009781,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203560,0.009781,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203560,0.009781,-0.011998,0.249712,0,0);}
.mb0_c00014{transform:matrix(0.203690,0.009583,-0.011749,0.249724,0,0);-ms-transform:matrix(0.203690,0.009583,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.203690,0.009583,-0.011749,0.249724,0,0);}
.m29_c00014{transform:matrix(0.203920,0.009798,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203920,0.009798,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203920,0.009798,-0.011998,0.249712,0,0);}
.m60_c00014{transform:matrix(0.203980,0.009801,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203980,0.009801,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203980,0.009801,-0.011998,0.249712,0,0);}
.mbb_c00014{transform:matrix(0.204049,0.009600,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204049,0.009600,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204049,0.009600,-0.011749,0.249724,0,0);}
.m63_c00014{transform:matrix(0.204479,0.009825,-0.011998,0.249712,0,0);-ms-transform:matrix(0.204479,0.009825,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.204479,0.009825,-0.011998,0.249712,0,0);}
.m99_c00014{transform:matrix(0.204674,0.009834,-0.011998,0.249712,0,0);-ms-transform:matrix(0.204674,0.009834,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.204674,0.009834,-0.011998,0.249712,0,0);}
.m2c_c00014{transform:matrix(0.205193,0.009859,-0.011998,0.249712,0,0);-ms-transform:matrix(0.205193,0.009859,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.205193,0.009859,-0.011998,0.249712,0,0);}
.md_c00014{transform:matrix(0.205208,0.009860,-0.011998,0.249712,0,0);-ms-transform:matrix(0.205208,0.009860,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.205208,0.009860,-0.011998,0.249712,0,0);}
.m92_c00014{transform:matrix(0.205253,0.009862,-0.011998,0.249712,0,0);-ms-transform:matrix(0.205253,0.009862,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.205253,0.009862,-0.011998,0.249712,0,0);}
.m54_c00014{transform:matrix(0.205508,0.009874,-0.011998,0.249712,0,0);-ms-transform:matrix(0.205508,0.009874,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.205508,0.009874,-0.011998,0.249712,0,0);}
.m32_c00014{transform:matrix(0.206167,0.009906,-0.011998,0.249712,0,0);-ms-transform:matrix(0.206167,0.009906,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.206167,0.009906,-0.011998,0.249712,0,0);}
.ma3_c00014{transform:matrix(0.206317,0.009913,-0.011998,0.249712,0,0);-ms-transform:matrix(0.206317,0.009913,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.206317,0.009913,-0.011998,0.249712,0,0);}
.mf2_c00014{transform:matrix(0.206377,0.009709,-0.011749,0.249724,0,0);-ms-transform:matrix(0.206377,0.009709,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.206377,0.009709,-0.011749,0.249724,0,0);}
.m68_c00014{transform:matrix(0.206487,0.009921,-0.011998,0.249712,0,0);-ms-transform:matrix(0.206487,0.009921,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.206487,0.009921,-0.011998,0.249712,0,0);}
.mc1_c00014{transform:matrix(0.207850,0.009779,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207850,0.009779,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207850,0.009779,-0.011749,0.249724,0,0);}
.m37_c00014{transform:matrix(0.208195,0.010003,-0.011998,0.249712,0,0);-ms-transform:matrix(0.208195,0.010003,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.208195,0.010003,-0.011998,0.249712,0,0);}
.m85_c00014{transform:matrix(0.208210,0.010004,-0.011998,0.249712,0,0);-ms-transform:matrix(0.208210,0.010004,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.208210,0.010004,-0.011998,0.249712,0,0);}
.mc9_c00014{transform:matrix(0.208360,0.009803,-0.011749,0.249724,0,0);-ms-transform:matrix(0.208360,0.009803,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.208360,0.009803,-0.011749,0.249724,0,0);}
.mdb_c00014{transform:matrix(0.208779,0.009822,-0.011749,0.249724,0,0);-ms-transform:matrix(0.208779,0.009822,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.208779,0.009822,-0.011749,0.249724,0,0);}
.m9e_c00014{transform:matrix(0.209423,0.010062,-0.011998,0.249712,0,0);-ms-transform:matrix(0.209423,0.010062,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.209423,0.010062,-0.011998,0.249712,0,0);}
.mb7_c00014{transform:matrix(0.210367,0.009897,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210367,0.009897,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210367,0.009897,-0.011749,0.249724,0,0);}
.m76_c00014{transform:matrix(0.210522,0.010115,-0.011998,0.249712,0,0);-ms-transform:matrix(0.210522,0.010115,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.210522,0.010115,-0.011998,0.249712,0,0);}
.m11_c00014{transform:matrix(0.210687,0.010123,-0.011998,0.249712,0,0);-ms-transform:matrix(0.210687,0.010123,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.210687,0.010123,-0.011998,0.249712,0,0);}
.mb6_c00014{transform:matrix(0.210842,0.009919,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210842,0.009919,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210842,0.009919,-0.011749,0.249724,0,0);}
.md4_c00014{transform:matrix(0.210962,0.009925,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210962,0.009925,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210962,0.009925,-0.011749,0.249724,0,0);}
.mc3_c00014{transform:matrix(0.210972,0.009926,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210972,0.009926,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210972,0.009926,-0.011749,0.249724,0,0);}
.m2e_c00014{transform:matrix(0.211531,0.010164,-0.011998,0.249712,0,0);-ms-transform:matrix(0.211531,0.010164,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.211531,0.010164,-0.011998,0.249712,0,0);}
.mf4_c00014{transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);-ms-transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);}
.mc6_c00014{transform:matrix(0.212135,0.009980,-0.011749,0.249724,0,0);-ms-transform:matrix(0.212135,0.009980,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.212135,0.009980,-0.011749,0.249724,0,0);}
.mca_c00014{transform:matrix(0.212635,0.010004,-0.011749,0.249724,0,0);-ms-transform:matrix(0.212635,0.010004,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.212635,0.010004,-0.011749,0.249724,0,0);}
.me3_c00014{transform:matrix(0.214398,0.010087,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214398,0.010087,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214398,0.010087,-0.011749,0.249724,0,0);}
.m12_c00014{transform:matrix(0.214627,0.010312,-0.011998,0.249712,0,0);-ms-transform:matrix(0.214627,0.010312,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.214627,0.010312,-0.011998,0.249712,0,0);}
.mfb_c00014{transform:matrix(0.214872,0.010109,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214872,0.010109,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214872,0.010109,-0.011749,0.249724,0,0);}
.md5_c00014{transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);}
.m56_c00014{transform:matrix(0.214932,0.010327,-0.011998,0.249712,0,0);-ms-transform:matrix(0.214932,0.010327,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.214932,0.010327,-0.011998,0.249712,0,0);}
.mbe_c00014{transform:matrix(0.216031,0.010164,-0.011749,0.249724,0,0);-ms-transform:matrix(0.216031,0.010164,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.216031,0.010164,-0.011749,0.249724,0,0);}
.ma6_c00014{transform:matrix(0.217115,0.010432,-0.011998,0.249712,0,0);-ms-transform:matrix(0.217115,0.010432,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.217115,0.010432,-0.011998,0.249712,0,0);}
.m66_c00014{transform:matrix(0.217539,0.010452,-0.011998,0.249712,0,0);-ms-transform:matrix(0.217539,0.010452,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.217539,0.010452,-0.011998,0.249712,0,0);}
.m67_c00014{transform:matrix(0.219627,0.010553,-0.011998,0.249712,0,0);-ms-transform:matrix(0.219627,0.010553,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.219627,0.010553,-0.011998,0.249712,0,0);}
.me1_c00014{transform:matrix(0.220007,0.010351,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220007,0.010351,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220007,0.010351,-0.011749,0.249724,0,0);}
.mb4_c00014{transform:matrix(0.220276,0.010363,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220276,0.010363,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220276,0.010363,-0.011749,0.249724,0,0);}
.m98_c00014{transform:matrix(0.220630,0.010601,-0.011998,0.249712,0,0);-ms-transform:matrix(0.220630,0.010601,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.220630,0.010601,-0.011998,0.249712,0,0);}
.med_c00014{transform:matrix(0.222918,0.010488,-0.011749,0.249724,0,0);-ms-transform:matrix(0.222918,0.010488,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.222918,0.010488,-0.011749,0.249724,0,0);}
.m7e_c00014{transform:matrix(0.224426,0.010783,-0.011998,0.249712,0,0);-ms-transform:matrix(0.224426,0.010783,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.224426,0.010783,-0.011998,0.249712,0,0);}
.mf1_c00014{transform:matrix(0.224856,0.010579,-0.011749,0.249724,0,0);-ms-transform:matrix(0.224856,0.010579,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.224856,0.010579,-0.011749,0.249724,0,0);}
.md9_c00014{transform:matrix(0.225066,0.010589,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225066,0.010589,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225066,0.010589,-0.011749,0.249724,0,0);}
.mc5_c00014{transform:matrix(0.225506,0.010609,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225506,0.010609,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225506,0.010609,-0.011749,0.249724,0,0);}
.mad_c00014{transform:matrix(0.225995,0.010632,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225995,0.010632,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225995,0.010632,-0.011749,0.249724,0,0);}
.m3f_c00014{transform:matrix(0.226309,0.010874,-0.011998,0.249712,0,0);-ms-transform:matrix(0.226309,0.010874,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.226309,0.010874,-0.011998,0.249712,0,0);}
.m51_c00014{transform:matrix(0.227158,0.010914,-0.011998,0.249712,0,0);-ms-transform:matrix(0.227158,0.010914,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.227158,0.010914,-0.011998,0.249712,0,0);}
.maf_c00014{transform:matrix(0.227259,0.010692,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227259,0.010692,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227259,0.010692,-0.011749,0.249724,0,0);}
.m6b_c00014{transform:matrix(0.227992,0.010955,-0.011998,0.249712,0,0);-ms-transform:matrix(0.227992,0.010955,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.227992,0.010955,-0.011998,0.249712,0,0);}
.m96_c00014{transform:matrix(0.228551,0.010981,-0.011998,0.249712,0,0);-ms-transform:matrix(0.228551,0.010981,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.228551,0.010981,-0.011998,0.249712,0,0);}
.m95_c00014{transform:matrix(0.228611,0.010984,-0.011998,0.249712,0,0);-ms-transform:matrix(0.228611,0.010984,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.228611,0.010984,-0.011998,0.249712,0,0);}
.m1f_c00014{transform:matrix(0.229465,0.011025,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229465,0.011025,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229465,0.011025,-0.011998,0.249712,0,0);}
.m69_c00014{transform:matrix(0.229985,0.011050,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229985,0.011050,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229985,0.011050,-0.011998,0.249712,0,0);}
.mb9_c00014{transform:matrix(0.230810,0.010859,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230810,0.010859,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230810,0.010859,-0.011749,0.249724,0,0);}
.md7_c00014{transform:matrix(0.230885,0.010862,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230885,0.010862,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230885,0.010862,-0.011749,0.249724,0,0);}
.mb8_c00014{transform:matrix(0.230970,0.010866,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230970,0.010866,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230970,0.010866,-0.011749,0.249724,0,0);}
.m16_c00014{transform:matrix(0.231238,0.011111,-0.011998,0.249712,0,0);-ms-transform:matrix(0.231238,0.011111,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.231238,0.011111,-0.011998,0.249712,0,0);}
.m5_c00014{transform:matrix(0.231853,0.011140,-0.011998,0.249712,0,0);-ms-transform:matrix(0.231853,0.011140,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.231853,0.011140,-0.011998,0.249712,0,0);}
.m81_c00014{transform:matrix(0.232397,0.011166,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232397,0.011166,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232397,0.011166,-0.011998,0.249712,0,0);}
.m6e_c00014{transform:matrix(0.232936,0.011192,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232936,0.011192,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232936,0.011192,-0.011998,0.249712,0,0);}
.me6_c00014{transform:matrix(0.235125,0.011062,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235125,0.011062,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235125,0.011062,-0.011749,0.249724,0,0);}
.m53_c00014{transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);-ms-transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);}
.mdd_c00014{transform:matrix(0.237123,0.011156,-0.011749,0.249724,0,0);-ms-transform:matrix(0.237123,0.011156,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.237123,0.011156,-0.011749,0.249724,0,0);}
.m80_c00014{transform:matrix(0.237411,0.011407,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237411,0.011407,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237411,0.011407,-0.011998,0.249712,0,0);}
.mc2_c00014{transform:matrix(0.239515,0.011268,-0.011749,0.249724,0,0);-ms-transform:matrix(0.239515,0.011268,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.239515,0.011268,-0.011749,0.249724,0,0);}
.m17_c00014{transform:matrix(0.240612,0.011561,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240612,0.011561,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240612,0.011561,-0.011998,0.249712,0,0);}
.m14_c00014{transform:matrix(0.240702,0.011565,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240702,0.011565,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240702,0.011565,-0.011998,0.249712,0,0);}
.mbd_c00014{transform:matrix(0.245463,0.011548,-0.011749,0.249724,0,0);-ms-transform:matrix(0.245463,0.011548,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.245463,0.011548,-0.011749,0.249724,0,0);}
.m18_c00014{transform:matrix(0.247475,0.011891,-0.011998,0.249712,0,0);-ms-transform:matrix(0.247475,0.011891,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.247475,0.011891,-0.011998,0.249712,0,0);}
.mea_c00014{transform:matrix(0.248220,0.011678,-0.011749,0.249724,0,0);-ms-transform:matrix(0.248220,0.011678,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.248220,0.011678,-0.011749,0.249724,0,0);}
.m8_c00014{transform:matrix(0.251775,0.012097,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251775,0.012097,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251775,0.012097,-0.011998,0.249712,0,0);}
.m7_c00014{transform:matrix(0.251944,0.012105,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251944,0.012105,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251944,0.012105,-0.011998,0.249712,0,0);}
.m13_c00014{transform:matrix(0.259690,0.012478,-0.011998,0.249712,0,0);-ms-transform:matrix(0.259690,0.012478,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.259690,0.012478,-0.011998,0.249712,0,0);}
.m1a_c00014{transform:matrix(0.261853,0.012582,-0.011998,0.249712,0,0);-ms-transform:matrix(0.261853,0.012582,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.261853,0.012582,-0.011998,0.249712,0,0);}
.m15_c00014{transform:matrix(0.266592,0.012809,-0.011998,0.249712,0,0);-ms-transform:matrix(0.266592,0.012809,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.266592,0.012809,-0.011998,0.249712,0,0);}
.m7f_c00014{transform:matrix(0.280077,0.013457,-0.011998,0.249712,0,0);-ms-transform:matrix(0.280077,0.013457,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.280077,0.013457,-0.011998,0.249712,0,0);}
.m75_c00014{transform:matrix(0.280901,0.013497,-0.011998,0.249712,0,0);-ms-transform:matrix(0.280901,0.013497,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.280901,0.013497,-0.011998,0.249712,0,0);}
.m1b_c00014{transform:matrix(0.342869,0.016474,-0.011998,0.249712,0,0);-ms-transform:matrix(0.342869,0.016474,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.342869,0.016474,-0.011998,0.249712,0,0);}
.mac_c00014{transform:matrix(0.388380,0.018272,-0.011749,0.249724,0,0);-ms-transform:matrix(0.388380,0.018272,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.388380,0.018272,-0.011749,0.249724,0,0);}
.m10_c00014{transform:matrix(0.583302,0.028027,-0.011998,0.249712,0,0);-ms-transform:matrix(0.583302,0.028027,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.583302,0.028027,-0.011998,0.249712,0,0);}
.mb2_c00014{transform:matrix(0.591975,0.027851,-0.011749,0.249724,0,0);-ms-transform:matrix(0.591975,0.027851,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.591975,0.027851,-0.011749,0.249724,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
.fc0_c00014{color:transparent;}
.fs3_c00014{font-size:49.357525px;}
.fs11_c00014{font-size:57.756063px;}
.fsf_c00014{font-size:59.856284px;}
.fs8_c00014{font-size:59.859126px;}
.fse_c00014{font-size:60.906394px;}
.fsa_c00014{font-size:60.909287px;}
.fs7_c00014{font-size:61.959447px;}
.fs0_c00014{font-size:63.000000px;}
.fsc_c00014{font-size:63.006615px;}
.fsd_c00014{font-size:64.056725px;}
.fsb_c00014{font-size:64.059767px;}
.fs13_c00014{font-size:65.106835px;}
.fs9_c00014{font-size:65.109927px;}
.fs10_c00014{font-size:66.156945px;}
.fs6_c00014{font-size:66.160087px;}
.fs2_c00014{font-size:67.210247px;}
.fs5_c00014{font-size:68.260407px;}
.fs12_c00014{font-size:69.307276px;}
.fs4_c00014{font-size:70.360728px;}
.fs1_c00014{font-size:71.410888px;}
.y0_c00014{bottom:0.000000px;}
.y100_c00014{bottom:31.604478px;}
.yff_c00014{bottom:34.198416px;}
.yfe_c00014{bottom:34.991040px;}
.yfd_c00014{bottom:35.996082px;}
.yfc_c00014{bottom:37.770926px;}
.yfb_c00014{bottom:38.787194px;}
.yfa_c00014{bottom:39.620828px;}
.yf9_c00014{bottom:40.174916px;}
.yf8_c00014{bottom:42.123176px;}
.yf7_c00014{bottom:48.455048px;}
.yf6_c00014{bottom:48.943785px;}
.yf5_c00014{bottom:51.222581px;}
.yf4_c00014{bottom:52.120694px;}
.yf3_c00014{bottom:52.888106px;}
.yf2_c00014{bottom:56.227245px;}
.yf1_c00014{bottom:58.377860px;}
.yf0_c00014{bottom:59.400576px;}
.yef_c00014{bottom:63.168773px;}
.yee_c00014{bottom:66.979224px;}
.yed_c00014{bottom:68.161556px;}
.yec_c00014{bottom:70.870098px;}
.yeb_c00014{bottom:71.512896px;}
.yea_c00014{bottom:76.153128px;}
.ye9_c00014{bottom:80.680103px;}
.ye8_c00014{bottom:83.279180px;}
.ye7_c00014{bottom:84.093869px;}
.ye6_c00014{bottom:86.205497px;}
.ye5_c00014{bottom:86.925417px;}
.ye4_c00014{bottom:89.926763px;}
.ye3_c00014{bottom:91.051137px;}
.ye2_c00014{bottom:91.598211px;}
.ye1_c00014{bottom:92.895291px;}
.ye0_c00014{bottom:97.917038px;}
.ydf_c00014{bottom:98.927115px;}
.yde_c00014{bottom:100.987860px;}
.ydd_c00014{bottom:101.888505px;}
.ydc_c00014{bottom:103.929387px;}
.ydb_c00014{bottom:104.684681px;}
.yda_c00014{bottom:105.964700px;}
.yd9_c00014{bottom:108.481839px;}
.yd8_c00014{bottom:109.514670px;}
.yd7_c00014{bottom:110.442387px;}
.yd6_c00014{bottom:116.855856px;}
.yd5_c00014{bottom:119.164469px;}
.yd4_c00014{bottom:120.130907px;}
.yd3_c00014{bottom:120.591099px;}
.yd2_c00014{bottom:122.953361px;}
.yd1_c00014{bottom:123.760844px;}
.yd0_c00014{bottom:125.322584px;}
.ycf_c00014{bottom:125.843264px;}
.yce_c00014{bottom:127.998191px;}
.ycd_c00014{bottom:134.349173px;}
.ycc_c00014{bottom:135.132956px;}
.ycb_c00014{bottom:136.438638px;}
.yca_c00014{bottom:139.997184px;}
.yc9_c00014{bottom:141.186668px;}
.yc8_c00014{bottom:144.540363px;}
.yc7_c00014{bottom:145.270568px;}
.yc6_c00014{bottom:152.673992px;}
.yc5_c00014{bottom:153.779111px;}
.yc4_c00014{bottom:156.101103px;}
.yc3_c00014{bottom:157.215440px;}
.yc2_c00014{bottom:159.626328px;}
.yc1_c00014{bottom:160.514072px;}
.yc0_c00014{bottom:162.283161px;}
.ybf_c00014{bottom:168.546644px;}
.ybe_c00014{bottom:171.028893px;}
.ybd_c00014{bottom:171.525720px;}
.ybc_c00014{bottom:174.192020px;}
.ybb_c00014{bottom:176.313149px;}
.yba_c00014{bottom:177.086112px;}
.yb9_c00014{bottom:177.545858px;}
.yb8_c00014{bottom:178.489706px;}
.yb7_c00014{bottom:185.085761px;}
.yb6_c00014{bottom:187.325255px;}
.yb5_c00014{bottom:188.489027px;}
.yb4_c00014{bottom:191.302820px;}
.yb3_c00014{bottom:192.165730px;}
.yb2_c00014{bottom:193.916385px;}
.yb1_c00014{bottom:195.496703px;}
.yb0_c00014{bottom:213.048000px;}
.yaf_c00014{bottom:219.217643px;}
.yae_c00014{bottom:220.261427px;}
.yad_c00014{bottom:221.423534px;}
.yac_c00014{bottom:223.253319px;}
.yab_c00014{bottom:223.973954px;}
.yaa_c00014{bottom:226.406541px;}
.ya9_c00014{bottom:227.518946px;}
.ya8_c00014{bottom:228.147722px;}
.ya7_c00014{bottom:229.460201px;}
.ya6_c00014{bottom:236.180429px;}
.ya5_c00014{bottom:237.236273px;}
.ya4_c00014{bottom:237.954270px;}
.ya3_c00014{bottom:239.569541px;}
.ya2_c00014{bottom:242.055980px;}
.ya1_c00014{bottom:243.785474px;}
.ya0_c00014{bottom:244.576529px;}
.y9f_c00014{bottom:245.360730px;}
.y9e_c00014{bottom:247.023530px;}
.y9d_c00014{bottom:253.889495px;}
.y9c_c00014{bottom:255.617216px;}
.y9b_c00014{bottom:256.267385px;}
.y9a_c00014{bottom:257.777490px;}
.y99_c00014{bottom:258.269565px;}
.y98_c00014{bottom:261.016397px;}
.y97_c00014{bottom:262.434684px;}
.y96_c00014{bottom:264.573620px;}
.y95_c00014{bottom:270.058620px;}
.y94_c00014{bottom:271.929999px;}
.y93_c00014{bottom:273.745727px;}
.y92_c00014{bottom:275.087159px;}
.y91_c00014{bottom:277.740665px;}
.y90_c00014{bottom:278.844762px;}
.y8f_c00014{bottom:280.095569px;}
.y8e_c00014{bottom:282.126918px;}
.y8d_c00014{bottom:287.975672px;}
.y8c_c00014{bottom:290.826026px;}
.y8b_c00014{bottom:294.035669px;}
.y8a_c00014{bottom:295.051044px;}
.y89_c00014{bottom:298.002063px;}
.y88_c00014{bottom:299.952624px;}
.y87_c00014{bottom:306.231150px;}
.y86_c00014{bottom:307.034027px;}
.y85_c00014{bottom:307.667591px;}
.y84_c00014{bottom:309.927455px;}
.y83_c00014{bottom:310.769193px;}
.y82_c00014{bottom:311.408171px;}
.y81_c00014{bottom:313.715852px;}
.y80_c00014{bottom:314.680769px;}
.y7f_c00014{bottom:316.420730px;}
.y7e_c00014{bottom:322.164791px;}
.y7d_c00014{bottom:322.946652px;}
.y7c_c00014{bottom:323.380673px;}
.y7b_c00014{bottom:324.905093px;}
.y7a_c00014{bottom:325.604676px;}
.y79_c00014{bottom:327.685503px;}
.y78_c00014{bottom:328.352723px;}
.y77_c00014{bottom:329.560514px;}
.y76_c00014{bottom:330.771558px;}
.y75_c00014{bottom:331.073517px;}
.y74_c00014{bottom:332.079393px;}
.y73_c00014{bottom:338.803770px;}
.y72_c00014{bottom:339.506594px;}
.y71_c00014{bottom:341.267705px;}
.y70_c00014{bottom:341.797359px;}
.y6f_c00014{bottom:342.813878px;}
.y6e_c00014{bottom:344.607888px;}
.y6d_c00014{bottom:345.256977px;}
.y6c_c00014{bottom:345.789728px;}
.y6b_c00014{bottom:348.557912px;}
.y6a_c00014{bottom:355.532651px;}
.y69_c00014{bottom:358.124214px;}
.y68_c00014{bottom:358.860032px;}
.y67_c00014{bottom:360.827135px;}
.y66_c00014{bottom:361.869740px;}
.y65_c00014{bottom:363.264857px;}
.y64_c00014{bottom:364.756445px;}
.y63_c00014{bottom:371.781170px;}
.y62_c00014{bottom:372.999959px;}
.y61_c00014{bottom:374.371415px;}
.y60_c00014{bottom:375.136622px;}
.y5f_c00014{bottom:376.093124px;}
.y5e_c00014{bottom:377.803704px;}
.y5d_c00014{bottom:379.167069px;}
.y5c_c00014{bottom:380.455842px;}
.y5b_c00014{bottom:380.953335px;}
.y5a_c00014{bottom:391.141299px;}
.y59_c00014{bottom:392.803946px;}
.y58_c00014{bottom:393.362211px;}
.y57_c00014{bottom:394.266905px;}
.y56_c00014{bottom:396.317181px;}
.y55_c00014{bottom:396.950277px;}
.y54_c00014{bottom:398.468474px;}
.y53_c00014{bottom:399.049356px;}
.y52_c00014{bottom:407.632476px;}
.y51_c00014{bottom:408.104738px;}
.y50_c00014{bottom:409.810170px;}
.y4f_c00014{bottom:410.334834px;}
.y4e_c00014{bottom:412.254759px;}
.y4d_c00014{bottom:412.520705px;}
.y4c_c00014{bottom:415.521026px;}
.y4b_c00014{bottom:422.323050px;}
.y4a_c00014{bottom:423.728144px;}
.y49_c00014{bottom:424.132253px;}
.y48_c00014{bottom:425.091891px;}
.y47_c00014{bottom:425.684852px;}
.y46_c00014{bottom:428.257556px;}
.y45_c00014{bottom:430.676117px;}
.y44_c00014{bottom:431.267984px;}
.y43_c00014{bottom:431.993838px;}
.y42_c00014{bottom:437.934194px;}
.y41_c00014{bottom:438.754922px;}
.y40_c00014{bottom:440.915561px;}
.y3f_c00014{bottom:442.290257px;}
.y3e_c00014{bottom:442.933158px;}
.y3d_c00014{bottom:443.943548px;}
.y3c_c00014{bottom:446.549408px;}
.y3b_c00014{bottom:448.738770px;}
.y3a_c00014{bottom:455.658132px;}
.y39_c00014{bottom:457.544199px;}
.y38_c00014{bottom:458.010998px;}
.y37_c00014{bottom:460.374200px;}
.y36_c00014{bottom:461.644415px;}
.y35_c00014{bottom:463.626741px;}
.y34_c00014{bottom:465.748892px;}
.y33_c00014{bottom:472.472283px;}
.y32_c00014{bottom:475.680234px;}
.y31_c00014{bottom:476.440635px;}
.y30_c00014{bottom:478.440669px;}
.y2f_c00014{bottom:480.371466px;}
.y2e_c00014{bottom:481.223406px;}
.y2d_c00014{bottom:482.762694px;}
.y2c_c00014{bottom:489.188357px;}
.y2b_c00014{bottom:491.483429px;}
.y2a_c00014{bottom:492.262361px;}
.y29_c00014{bottom:493.945316px;}
.y28_c00014{bottom:494.398263px;}
.y27_c00014{bottom:497.366211px;}
.y26_c00014{bottom:497.835183px;}
.y25_c00014{bottom:499.775430px;}
.y24_c00014{bottom:504.946146px;}
.y23_c00014{bottom:505.767423px;}
.y22_c00014{bottom:506.957016px;}
.y21_c00014{bottom:507.318767px;}
.y20_c00014{bottom:510.675303px;}
.y1f_c00014{bottom:511.265622px;}
.y1e_c00014{bottom:512.993744px;}
.y1d_c00014{bottom:515.442211px;}
.y1c_c00014{bottom:521.610479px;}
.y1b_c00014{bottom:523.589435px;}
.y1a_c00014{bottom:524.330274px;}
.y19_c00014{bottom:526.334372px;}
.y18_c00014{bottom:527.881625px;}
.y17_c00014{bottom:529.058343px;}
.y16_c00014{bottom:531.515771px;}
.y15_c00014{bottom:532.234479px;}
.y14_c00014{bottom:533.079584px;}
.y13_c00014{bottom:534.073274px;}
.y12_c00014{bottom:540.164087px;}
.y11_c00014{bottom:541.491551px;}
.y10_c00014{bottom:543.142515px;}
.yf_c00014{bottom:543.983187px;}
.ye_c00014{bottom:546.242147px;}
.yd_c00014{bottom:548.676953px;}
.yc_c00014{bottom:549.411668px;}
.yb_c00014{bottom:550.538765px;}
.ya_c00014{bottom:553.903428px;}
.y9_c00014{bottom:554.891628px;}
.y8_c00014{bottom:557.594652px;}
.y7_c00014{bottom:558.995700px;}
.y6_c00014{bottom:560.646876px;}
.y5_c00014{bottom:561.587844px;}
.y4_c00014{bottom:563.141388px;}
.y3_c00014{bottom:566.030604px;}
.y2_c00014{bottom:566.467500px;}
.y1_c00014{bottom:576.990000px;}
.h5_c00014{height:49.357525px;}
.h13_c00014{height:57.756063px;}
.h11_c00014{height:59.856284px;}
.ha_c00014{height:59.859126px;}
.h10_c00014{height:60.906394px;}
.hc_c00014{height:60.909287px;}
.h9_c00014{height:61.959447px;}
.h2_c00014{height:63.000000px;}
.he_c00014{height:63.006615px;}
.hf_c00014{height:64.056725px;}
.hd_c00014{height:64.059767px;}
.h15_c00014{height:65.106835px;}
.hb_c00014{height:65.109927px;}
.h12_c00014{height:66.156945px;}
.h8_c00014{height:66.160087px;}
.h4_c00014{height:67.210247px;}
.h7_c00014{height:68.260407px;}
.h14_c00014{height:69.307276px;}
.h6_c00014{height:70.360728px;}
.h3_c00014{height:71.410888px;}
.h1_c00014{height:615.750000px;}
.h0_c00014{height:615.870000px;}
.w0_c00014{width:383.100000px;}
.w1_c00014{width:383.250000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:25.765500px;}
.x7d_c00014{left:28.850718px;}
.x73_c00014{left:29.923058px;}
.x6f_c00014{left:31.222500px;}
.x34_c00014{left:32.272221px;}
.x3b_c00014{left:33.352176px;}
.x3_c00014{left:34.858398px;}
.x70_c00014{left:36.256853px;}
.x77_c00014{left:37.603728px;}
.x72_c00014{left:39.170716px;}
.x6c_c00014{left:41.252286px;}
.x44_c00014{left:44.545035px;}
.x74_c00014{left:46.880259px;}
.x41_c00014{left:50.655477px;}
.x19_c00014{left:53.507726px;}
.x11_c00014{left:57.793152px;}
.x51_c00014{left:61.232304px;}
.xa_c00014{left:63.236955px;}
.x78_c00014{left:66.386598px;}
.x52_c00014{left:69.830031px;}
.x35_c00014{left:70.981991px;}
.x68_c00014{left:72.651742px;}
.x59_c00014{left:75.150350px;}
.x12_c00014{left:76.976126px;}
.x79_c00014{left:78.525576px;}
.xb_c00014{left:81.591645px;}
.x1f_c00014{left:85.195686px;}
.x2f_c00014{left:91.663658px;}
.x13_c00014{left:93.278406px;}
.x4_c00014{left:94.990206px;}
.x20_c00014{left:97.206852px;}
.x26_c00014{left:99.490332px;}
.x53_c00014{left:104.381495px;}
.x4b_c00014{left:108.393429px;}
.x61_c00014{left:110.989502px;}
.x1a_c00014{left:116.220050px;}
.x48_c00014{left:117.279691px;}
.x65_c00014{left:120.463360px;}
.x3c_c00014{left:121.491692px;}
.x4c_c00014{left:124.590913px;}
.x5_c00014{left:127.323341px;}
.x3d_c00014{left:129.308628px;}
.x45_c00014{left:131.915883px;}
.x62_c00014{left:137.250782px;}
.x54_c00014{left:138.833985px;}
.xc_c00014{left:142.394133px;}
.x5e_c00014{left:143.934146px;}
.x6_c00014{left:146.907237px;}
.x49_c00014{left:147.919134px;}
.x14_c00014{left:149.081286px;}
.x27_c00014{left:151.616186px;}
.x69_c00014{left:153.154186px;}
.x5a_c00014{left:154.889841px;}
.x55_c00014{left:157.878313px;}
.x1b_c00014{left:160.470354px;}
.x5f_c00014{left:166.973480px;}
.x4d_c00014{left:169.399785px;}
.x5b_c00014{left:170.470506px;}
.x21_c00014{left:173.231616px;}
.x15_c00014{left:175.791167px;}
.x42_c00014{left:177.800236px;}
.x46_c00014{left:179.364702px;}
.x1_c00014{left:180.630000px;}
.x6d_c00014{left:181.755327px;}
.x2b_c00014{left:183.550922px;}
.x22_c00014{left:184.815494px;}
.x30_c00014{left:186.714134px;}
.x66_c00014{left:189.041520px;}
.x5c_c00014{left:190.958844px;}
.x4e_c00014{left:194.776113px;}
.xd_c00014{left:198.817847px;}
.x3e_c00014{left:201.130522px;}
.x7b_c00014{left:202.485451px;}
.x31_c00014{left:203.626848px;}
.x28_c00014{left:205.620668px;}
.x4f_c00014{left:208.018974px;}
.x7_c00014{left:210.431649px;}
.x6a_c00014{left:213.718386px;}
.x71_c00014{left:215.756209px;}
.x36_c00014{left:217.563213px;}
.xe_c00014{left:219.815400px;}
.x43_c00014{left:222.064783px;}
.x29_c00014{left:226.135443px;}
.x23_c00014{left:227.906954px;}
.x63_c00014{left:232.274050px;}
.x37_c00014{left:234.999507px;}
.x56_c00014{left:237.220905px;}
.x32_c00014{left:239.739996px;}
.x5d_c00014{left:245.994703px;}
.x24_c00014{left:247.869620px;}
.x2c_c00014{left:249.115058px;}
.x3f_c00014{left:251.223037px;}
.x6b_c00014{left:253.056697px;}
.x67_c00014{left:255.278158px;}
.x16_c00014{left:256.424448px;}
.xf_c00014{left:261.021936px;}
.x2d_c00014{left:262.050033px;}
.x38_c00014{left:263.193240px;}
.x40_c00014{left:265.084459px;}
.x8_c00014{left:266.688336px;}
.x50_c00014{left:269.521477px;}
.x1c_c00014{left:270.774507px;}
.x17_c00014{left:273.249849px;}
.x39_c00014{left:275.042307px;}
.x6e_c00014{left:276.840228px;}
.x57_c00014{left:280.701480px;}
.x75_c00014{left:283.639792px;}
.x76_c00014{left:284.697585px;}
.x9_c00014{left:287.255248px;}
.x7e_c00014{left:289.961730px;}
.x58_c00014{left:293.079301px;}
.x10_c00014{left:294.151458px;}
.x33_c00014{left:296.524398px;}
.x47_c00014{left:298.991356px;}
.x1d_c00014{left:301.222146px;}
.x4a_c00014{left:303.374383px;}
.x60_c00014{left:304.538156px;}
.x25_c00014{left:306.639161px;}
.x7a_c00014{left:308.733232px;}
.x7c_c00014{left:310.907002px;}
.x2a_c00014{left:312.719466px;}
.x2e_c00014{left:314.370287px;}
.x3a_c00014{left:316.320735px;}
.x18_c00014{left:318.188015px;}
.x64_c00014{left:319.984050px;}
.x1e_c00014{left:322.253675px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs3_c00014{font-size:43.873356pt;}
.fs11_c00014{font-size:51.338723pt;}
.fsf_c00014{font-size:53.205586pt;}
.fs8_c00014{font-size:53.208112pt;}
.fse_c00014{font-size:54.139017pt;}
.fsa_c00014{font-size:54.141588pt;}
.fs7_c00014{font-size:55.075064pt;}
.fs0_c00014{font-size:56.000000pt;}
.fsc_c00014{font-size:56.005880pt;}
.fsd_c00014{font-size:56.939311pt;}
.fsb_c00014{font-size:56.942015pt;}
.fs13_c00014{font-size:57.872742pt;}
.fs9_c00014{font-size:57.875491pt;}
.fs10_c00014{font-size:58.806174pt;}
.fs6_c00014{font-size:58.808966pt;}
.fs2_c00014{font-size:59.742442pt;}
.fs5_c00014{font-size:60.675918pt;}
.fs12_c00014{font-size:61.606468pt;}
.fs4_c00014{font-size:62.542869pt;}
.fs1_c00014{font-size:63.476345pt;}
.y0_c00014{bottom:0.000000pt;}
.y100_c00014{bottom:28.092869pt;}
.yff_c00014{bottom:30.398592pt;}
.yfe_c00014{bottom:31.103147pt;}
.yfd_c00014{bottom:31.996517pt;}
.yfc_c00014{bottom:33.574156pt;}
.yfb_c00014{bottom:34.477505pt;}
.yfa_c00014{bottom:35.218513pt;}
.yf9_c00014{bottom:35.711036pt;}
.yf8_c00014{bottom:37.442823pt;}
.yf7_c00014{bottom:43.071153pt;}
.yf6_c00014{bottom:43.505587pt;}
.yf5_c00014{bottom:45.531183pt;}
.yf4_c00014{bottom:46.329505pt;}
.yf3_c00014{bottom:47.011649pt;}
.yf2_c00014{bottom:49.979773pt;}
.yf1_c00014{bottom:51.891431pt;}
.yf0_c00014{bottom:52.800512pt;}
.yef_c00014{bottom:56.150020pt;}
.yee_c00014{bottom:59.537088pt;}
.yed_c00014{bottom:60.588049pt;}
.yec_c00014{bottom:62.995643pt;}
.yeb_c00014{bottom:63.567019pt;}
.yea_c00014{bottom:67.691669pt;}
.ye9_c00014{bottom:71.715647pt;}
.ye8_c00014{bottom:74.025937pt;}
.ye7_c00014{bottom:74.750105pt;}
.ye6_c00014{bottom:76.627108pt;}
.ye5_c00014{bottom:77.267037pt;}
.ye4_c00014{bottom:79.934900pt;}
.ye3_c00014{bottom:80.934344pt;}
.ye2_c00014{bottom:81.420632pt;}
.ye1_c00014{bottom:82.573592pt;}
.ye0_c00014{bottom:87.037367pt;}
.ydf_c00014{bottom:87.935213pt;}
.yde_c00014{bottom:89.766987pt;}
.ydd_c00014{bottom:90.567560pt;}
.ydc_c00014{bottom:92.381677pt;}
.ydb_c00014{bottom:93.053049pt;}
.yda_c00014{bottom:94.190844pt;}
.yd9_c00014{bottom:96.428301pt;}
.yd8_c00014{bottom:97.346373pt;}
.yd7_c00014{bottom:98.171011pt;}
.yd6_c00014{bottom:103.871872pt;}
.yd5_c00014{bottom:105.923972pt;}
.yd4_c00014{bottom:106.783028pt;}
.yd3_c00014{bottom:107.192088pt;}
.yd2_c00014{bottom:109.291876pt;}
.yd1_c00014{bottom:110.009639pt;}
.yd0_c00014{bottom:111.397852pt;}
.ycf_c00014{bottom:111.860679pt;}
.yce_c00014{bottom:113.776169pt;}
.ycd_c00014{bottom:119.421487pt;}
.ycc_c00014{bottom:120.118183pt;}
.ycb_c00014{bottom:121.278789pt;}
.yca_c00014{bottom:124.441941pt;}
.yc9_c00014{bottom:125.499260pt;}
.yc8_c00014{bottom:128.480323pt;}
.yc7_c00014{bottom:129.129393pt;}
.yc6_c00014{bottom:135.710215pt;}
.yc5_c00014{bottom:136.692543pt;}
.yc4_c00014{bottom:138.756536pt;}
.yc3_c00014{bottom:139.747057pt;}
.yc2_c00014{bottom:141.890069pt;}
.yc1_c00014{bottom:142.679175pt;}
.yc0_c00014{bottom:144.251699pt;}
.ybf_c00014{bottom:149.819239pt;}
.ybe_c00014{bottom:152.025683pt;}
.ybd_c00014{bottom:152.467307pt;}
.ybc_c00014{bottom:154.837351pt;}
.ybb_c00014{bottom:156.722799pt;}
.yba_c00014{bottom:157.409877pt;}
.yb9_c00014{bottom:157.818540pt;}
.yb8_c00014{bottom:158.657516pt;}
.yb7_c00014{bottom:164.520676pt;}
.yb6_c00014{bottom:166.511337pt;}
.yb5_c00014{bottom:167.545801pt;}
.yb4_c00014{bottom:170.046951pt;}
.yb3_c00014{bottom:170.813983pt;}
.yb2_c00014{bottom:172.370120pt;}
.yb1_c00014{bottom:173.774847pt;}
.yb0_c00014{bottom:189.376000pt;}
.yaf_c00014{bottom:194.860127pt;}
.yae_c00014{bottom:195.787935pt;}
.yad_c00014{bottom:196.820919pt;}
.yac_c00014{bottom:198.447395pt;}
.yab_c00014{bottom:199.087959pt;}
.yaa_c00014{bottom:201.250259pt;}
.ya9_c00014{bottom:202.239063pt;}
.ya8_c00014{bottom:202.797975pt;}
.ya7_c00014{bottom:203.964623pt;}
.ya6_c00014{bottom:209.938159pt;}
.ya5_c00014{bottom:210.876687pt;}
.ya4_c00014{bottom:211.514907pt;}
.ya3_c00014{bottom:212.950703pt;}
.ya2_c00014{bottom:215.160871pt;}
.ya1_c00014{bottom:216.698199pt;}
.ya0_c00014{bottom:217.401359pt;}
.y9f_c00014{bottom:218.098427pt;}
.y9e_c00014{bottom:219.576471pt;}
.y9d_c00014{bottom:225.679551pt;}
.y9c_c00014{bottom:227.215303pt;}
.y9b_c00014{bottom:227.793231pt;}
.y9a_c00014{bottom:229.135547pt;}
.y99_c00014{bottom:229.572947pt;}
.y98_c00014{bottom:232.014575pt;}
.y97_c00014{bottom:233.275275pt;}
.y96_c00014{bottom:235.176551pt;}
.y95_c00014{bottom:240.052107pt;}
.y94_c00014{bottom:241.715555pt;}
.y93_c00014{bottom:243.329535pt;}
.y92_c00014{bottom:244.521919pt;}
.y91_c00014{bottom:246.880591pt;}
.y90_c00014{bottom:247.862011pt;}
.y8f_c00014{bottom:248.973839pt;}
.y8e_c00014{bottom:250.779483pt;}
.y8d_c00014{bottom:255.978375pt;}
.y8c_c00014{bottom:258.512023pt;}
.y8b_c00014{bottom:261.365039pt;}
.y8a_c00014{bottom:262.267595pt;}
.y89_c00014{bottom:264.890723pt;}
.y88_c00014{bottom:266.624555pt;}
.y87_c00014{bottom:272.205467pt;}
.y86_c00014{bottom:272.919135pt;}
.y85_c00014{bottom:273.482303pt;}
.y84_c00014{bottom:275.491071pt;}
.y83_c00014{bottom:276.239283pt;}
.y82_c00014{bottom:276.807263pt;}
.y81_c00014{bottom:278.858535pt;}
.y80_c00014{bottom:279.716239pt;}
.y7f_c00014{bottom:281.262871pt;}
.y7e_c00014{bottom:286.368703pt;}
.y7d_c00014{bottom:287.063691pt;}
.y7c_c00014{bottom:287.449487pt;}
.y7b_c00014{bottom:288.804527pt;}
.y7a_c00014{bottom:289.426379pt;}
.y79_c00014{bottom:291.276003pt;}
.y78_c00014{bottom:291.869087pt;}
.y77_c00014{bottom:292.942679pt;}
.y76_c00014{bottom:294.019163pt;}
.y75_c00014{bottom:294.287571pt;}
.y74_c00014{bottom:295.181683pt;}
.y73_c00014{bottom:301.158907pt;}
.y72_c00014{bottom:301.783639pt;}
.y71_c00014{bottom:303.349071pt;}
.y70_c00014{bottom:303.819875pt;}
.y6f_c00014{bottom:304.723447pt;}
.y6e_c00014{bottom:306.318123pt;}
.y6d_c00014{bottom:306.895091pt;}
.y6c_c00014{bottom:307.368647pt;}
.y6b_c00014{bottom:309.829255pt;}
.y6a_c00014{bottom:316.029023pt;}
.y69_c00014{bottom:318.332635pt;}
.y68_c00014{bottom:318.986695pt;}
.y67_c00014{bottom:320.735231pt;}
.y66_c00014{bottom:321.661991pt;}
.y65_c00014{bottom:322.902095pt;}
.y64_c00014{bottom:324.227951pt;}
.y63_c00014{bottom:330.472151pt;}
.y62_c00014{bottom:331.555519pt;}
.y61_c00014{bottom:332.774591pt;}
.y60_c00014{bottom:333.454775pt;}
.y5f_c00014{bottom:334.304999pt;}
.y5e_c00014{bottom:335.825515pt;}
.y5d_c00014{bottom:337.037395pt;}
.y5c_c00014{bottom:338.182971pt;}
.y5b_c00014{bottom:338.625187pt;}
.y5a_c00014{bottom:347.681155pt;}
.y59_c00014{bottom:349.159063pt;}
.y58_c00014{bottom:349.655299pt;}
.y57_c00014{bottom:350.459471pt;}
.y56_c00014{bottom:352.281939pt;}
.y55_c00014{bottom:352.844691pt;}
.y54_c00014{bottom:354.194199pt;}
.y53_c00014{bottom:354.710539pt;}
.y52_c00014{bottom:362.339979pt;}
.y51_c00014{bottom:362.759767pt;}
.y50_c00014{bottom:364.275707pt;}
.y4f_c00014{bottom:364.742075pt;}
.y4e_c00014{bottom:366.448675pt;}
.y4d_c00014{bottom:366.685071pt;}
.y4c_c00014{bottom:369.352023pt;}
.y4b_c00014{bottom:375.398267pt;}
.y4a_c00014{bottom:376.647239pt;}
.y49_c00014{bottom:377.006447pt;}
.y48_c00014{bottom:377.859459pt;}
.y47_c00014{bottom:378.386535pt;}
.y46_c00014{bottom:380.673383pt;}
.y45_c00014{bottom:382.823215pt;}
.y44_c00014{bottom:383.349319pt;}
.y43_c00014{bottom:383.994523pt;}
.y42_c00014{bottom:389.274839pt;}
.y41_c00014{bottom:390.004375pt;}
.y40_c00014{bottom:391.924943pt;}
.y3f_c00014{bottom:393.146895pt;}
.y3e_c00014{bottom:393.718363pt;}
.y3d_c00014{bottom:394.616487pt;}
.y3c_c00014{bottom:396.932807pt;}
.y3b_c00014{bottom:398.878907pt;}
.y3a_c00014{bottom:405.029451pt;}
.y39_c00014{bottom:406.705955pt;}
.y38_c00014{bottom:407.120887pt;}
.y37_c00014{bottom:409.221511pt;}
.y36_c00014{bottom:410.350591pt;}
.y35_c00014{bottom:412.112659pt;}
.y34_c00014{bottom:413.999015pt;}
.y33_c00014{bottom:419.975363pt;}
.y32_c00014{bottom:422.826875pt;}
.y31_c00014{bottom:423.502787pt;}
.y30_c00014{bottom:425.280595pt;}
.y2f_c00014{bottom:426.996859pt;}
.y2e_c00014{bottom:427.754139pt;}
.y2d_c00014{bottom:429.122395pt;}
.y2c_c00014{bottom:434.834095pt;}
.y2b_c00014{bottom:436.874159pt;}
.y2a_c00014{bottom:437.566543pt;}
.y29_c00014{bottom:439.062503pt;}
.y28_c00014{bottom:439.465123pt;}
.y27_c00014{bottom:442.103299pt;}
.y26_c00014{bottom:442.520163pt;}
.y25_c00014{bottom:444.244827pt;}
.y24_c00014{bottom:448.841019pt;}
.y23_c00014{bottom:449.571043pt;}
.y22_c00014{bottom:450.628459pt;}
.y21_c00014{bottom:450.950015pt;}
.y20_c00014{bottom:453.933603pt;}
.y1f_c00014{bottom:454.458331pt;}
.y1e_c00014{bottom:455.994439pt;}
.y1d_c00014{bottom:458.170855pt;}
.y1c_c00014{bottom:463.653759pt;}
.y1b_c00014{bottom:465.412831pt;}
.y1a_c00014{bottom:466.071355pt;}
.y19_c00014{bottom:467.852775pt;}
.y18_c00014{bottom:469.228111pt;}
.y17_c00014{bottom:470.274083pt;}
.y16_c00014{bottom:472.458463pt;}
.y15_c00014{bottom:473.097315pt;}
.y14_c00014{bottom:473.848519pt;}
.y13_c00014{bottom:474.731799pt;}
.y12_c00014{bottom:480.145855pt;}
.y11_c00014{bottom:481.325823pt;}
.y10_c00014{bottom:482.793347pt;}
.yf_c00014{bottom:483.540611pt;}
.ye_c00014{bottom:485.548575pt;}
.yd_c00014{bottom:487.712847pt;}
.yc_c00014{bottom:488.365927pt;}
.yb_c00014{bottom:489.367791pt;}
.ya_c00014{bottom:492.358603pt;}
.y9_c00014{bottom:493.237003pt;}
.y8_c00014{bottom:495.639691pt;}
.y7_c00014{bottom:496.885067pt;}
.y6_c00014{bottom:498.352779pt;}
.y5_c00014{bottom:499.189195pt;}
.y4_c00014{bottom:500.570123pt;}
.y3_c00014{bottom:503.138315pt;}
.y2_c00014{bottom:503.526667pt;}
.y1_c00014{bottom:512.880000pt;}
.h5_c00014{height:43.873356pt;}
.h13_c00014{height:51.338723pt;}
.h11_c00014{height:53.205586pt;}
.ha_c00014{height:53.208112pt;}
.h10_c00014{height:54.139017pt;}
.hc_c00014{height:54.141588pt;}
.h9_c00014{height:55.075064pt;}
.h2_c00014{height:56.000000pt;}
.he_c00014{height:56.005880pt;}
.hf_c00014{height:56.939311pt;}
.hd_c00014{height:56.942015pt;}
.h15_c00014{height:57.872742pt;}
.hb_c00014{height:57.875491pt;}
.h12_c00014{height:58.806174pt;}
.h8_c00014{height:58.808966pt;}
.h4_c00014{height:59.742442pt;}
.h7_c00014{height:60.675918pt;}
.h14_c00014{height:61.606468pt;}
.h6_c00014{height:62.542869pt;}
.h3_c00014{height:63.476345pt;}
.h1_c00014{height:547.333333pt;}
.h0_c00014{height:547.440000pt;}
.w0_c00014{width:340.533333pt;}
.w1_c00014{width:340.666667pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:22.902667pt;}
.x7d_c00014{left:25.645083pt;}
.x73_c00014{left:26.598273pt;}
.x6f_c00014{left:27.753333pt;}
.x34_c00014{left:28.686419pt;}
.x3b_c00014{left:29.646379pt;}
.x3_c00014{left:30.985243pt;}
.x70_c00014{left:32.228313pt;}
.x77_c00014{left:33.425536pt;}
.x72_c00014{left:34.818415pt;}
.x6c_c00014{left:36.668699pt;}
.x44_c00014{left:39.595587pt;}
.x74_c00014{left:41.671341pt;}
.x41_c00014{left:45.027091pt;}
.x19_c00014{left:47.562423pt;}
.x11_c00014{left:51.371691pt;}
.x51_c00014{left:54.428715pt;}
.xa_c00014{left:56.210627pt;}
.x78_c00014{left:59.010309pt;}
.x52_c00014{left:62.071139pt;}
.x35_c00014{left:63.095103pt;}
.x68_c00014{left:64.579327pt;}
.x59_c00014{left:66.800311pt;}
.x12_c00014{left:68.423223pt;}
.x79_c00014{left:69.800512pt;}
.xb_c00014{left:72.525907pt;}
.x1f_c00014{left:75.729499pt;}
.x2f_c00014{left:81.478807pt;}
.x13_c00014{left:82.914139pt;}
.x4_c00014{left:84.435739pt;}
.x20_c00014{left:86.406091pt;}
.x26_c00014{left:88.435851pt;}
.x53_c00014{left:92.783551pt;}
.x4b_c00014{left:96.349715pt;}
.x61_c00014{left:98.657335pt;}
.x1a_c00014{left:103.306711pt;}
.x48_c00014{left:104.248615pt;}
.x65_c00014{left:107.078543pt;}
.x3c_c00014{left:107.992615pt;}
.x4c_c00014{left:110.747479pt;}
.x5_c00014{left:113.176303pt;}
.x3d_c00014{left:114.941003pt;}
.x45_c00014{left:117.258563pt;}
.x62_c00014{left:122.000695pt;}
.x54_c00014{left:123.407987pt;}
.xc_c00014{left:126.572563pt;}
.x5e_c00014{left:127.941463pt;}
.x6_c00014{left:130.584211pt;}
.x49_c00014{left:131.483675pt;}
.x14_c00014{left:132.516699pt;}
.x27_c00014{left:134.769943pt;}
.x69_c00014{left:136.137055pt;}
.x5a_c00014{left:137.679859pt;}
.x55_c00014{left:140.336279pt;}
.x1b_c00014{left:142.640315pt;}
.x5f_c00014{left:148.420871pt;}
.x4d_c00014{left:150.577587pt;}
.x5b_c00014{left:151.529339pt;}
.x21_c00014{left:153.983659pt;}
.x15_c00014{left:156.258815pt;}
.x42_c00014{left:158.044655pt;}
.x46_c00014{left:159.435291pt;}
.x1_c00014{left:160.560000pt;}
.x6d_c00014{left:161.560291pt;}
.x2b_c00014{left:163.156375pt;}
.x22_c00014{left:164.280439pt;}
.x30_c00014{left:165.968119pt;}
.x66_c00014{left:168.036907pt;}
.x5c_c00014{left:169.741195pt;}
.x4e_c00014{left:173.134323pt;}
.xd_c00014{left:176.726975pt;}
.x3e_c00014{left:178.782687pt;}
.x7b_c00014{left:179.987068pt;}
.x31_c00014{left:181.001643pt;}
.x28_c00014{left:182.773927pt;}
.x4f_c00014{left:184.905755pt;}
.x7_c00014{left:187.050355pt;}
.x6a_c00014{left:189.971899pt;}
.x71_c00014{left:191.783297pt;}
.x36_c00014{left:193.389523pt;}
.xe_c00014{left:195.391467pt;}
.x43_c00014{left:197.390919pt;}
.x29_c00014{left:201.009283pt;}
.x23_c00014{left:202.583959pt;}
.x63_c00014{left:206.465823pt;}
.x37_c00014{left:208.888451pt;}
.x56_c00014{left:210.863027pt;}
.x32_c00014{left:213.102219pt;}
.x5d_c00014{left:218.661959pt;}
.x24_c00014{left:220.328551pt;}
.x2c_c00014{left:221.435607pt;}
.x3f_c00014{left:223.309367pt;}
.x6b_c00014{left:224.939287pt;}
.x67_c00014{left:226.913919pt;}
.x16_c00014{left:227.932843pt;}
.xf_c00014{left:232.019499pt;}
.x2d_c00014{left:232.933363pt;}
.x38_c00014{left:233.949547pt;}
.x40_c00014{left:235.630631pt;}
.x8_c00014{left:237.056299pt;}
.x50_c00014{left:239.574647pt;}
.x1c_c00014{left:240.688451pt;}
.x17_c00014{left:242.888755pt;}
.x39_c00014{left:244.482051pt;}
.x6e_c00014{left:246.080203pt;}
.x57_c00014{left:249.512427pt;}
.x75_c00014{left:252.124260pt;}
.x76_c00014{left:253.064520pt;}
.x9_c00014{left:255.337999pt;}
.x7e_c00014{left:257.743760pt;}
.x58_c00014{left:260.514935pt;}
.x10_c00014{left:261.467963pt;}
.x33_c00014{left:263.577243pt;}
.x47_c00014{left:265.770095pt;}
.x1d_c00014{left:267.753019pt;}
.x4a_c00014{left:269.666119pt;}
.x60_c00014{left:270.700583pt;}
.x25_c00014{left:272.568143pt;}
.x7a_c00014{left:274.429540pt;}
.x7c_c00014{left:276.361780pt;}
.x2a_c00014{left:277.972859pt;}
.x2e_c00014{left:279.440255pt;}
.x3a_c00014{left:281.173987pt;}
.x18_c00014{left:282.833791pt;}
.x64_c00014{left:284.430267pt;}
.x1e_c00014{left:286.447711pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00015 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c00015{transform:matrix(0.065970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065970,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.091725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00015{transform:matrix(0.121446,0.002429,-0.004999,0.249950,0,0);-ms-transform:matrix(0.121446,0.002429,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.121446,0.002429,-0.004999,0.249950,0,0);}
.md7_c00015{transform:matrix(0.133893,0.002678,-0.004999,0.249950,0,0);-ms-transform:matrix(0.133893,0.002678,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.133893,0.002678,-0.004999,0.249950,0,0);}
.mbb_c00015{transform:matrix(0.147520,0.002950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.147520,0.002950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.147520,0.002950,-0.004999,0.249950,0,0);}
.m96_c00015{transform:matrix(0.149065,0.002981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149065,0.002981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149065,0.002981,-0.004999,0.249950,0,0);}
.md5_c00015{transform:matrix(0.149630,0.002993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149630,0.002993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149630,0.002993,-0.004999,0.249950,0,0);}
.mb3_c00015{transform:matrix(0.149905,0.002998,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149905,0.002998,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149905,0.002998,-0.004999,0.249950,0,0);}
.mc_c00015{transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);}
.mdd_c00015{transform:matrix(0.151405,0.003028,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151405,0.003028,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151405,0.003028,-0.004999,0.249950,0,0);}
.m13_c00015{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m92_c00015{transform:matrix(0.154649,0.003093,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154649,0.003093,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154649,0.003093,-0.004999,0.249950,0,0);}
.mda_c00015{transform:matrix(0.155414,0.003108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155414,0.003108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155414,0.003108,-0.004999,0.249950,0,0);}
.m73_c00015{transform:matrix(0.155454,0.003109,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155454,0.003109,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155454,0.003109,-0.004999,0.249950,0,0);}
.mb7_c00015{transform:matrix(0.155664,0.003113,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155664,0.003113,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155664,0.003113,-0.004999,0.249950,0,0);}
.m2b_c00015{transform:matrix(0.155960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);}
.m74_c00015{transform:matrix(0.157853,0.003157,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157853,0.003157,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157853,0.003157,-0.004999,0.249950,0,0);}
.m70_c00015{transform:matrix(0.157928,0.003159,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157928,0.003159,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157928,0.003159,-0.004999,0.249950,0,0);}
.m10_c00015{transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);}
.ma0_c00015{transform:matrix(0.161683,0.003234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161683,0.003234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161683,0.003234,-0.004999,0.249950,0,0);}
.ma7_c00015{transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);}
.m6d_c00015{transform:matrix(0.163792,0.003276,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163792,0.003276,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163792,0.003276,-0.004999,0.249950,0,0);}
.m90_c00015{transform:matrix(0.163887,0.003278,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163887,0.003278,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163887,0.003278,-0.004999,0.249950,0,0);}
.m12_c00015{transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.mc2_c00015{transform:matrix(0.165872,0.003317,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165872,0.003317,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165872,0.003317,-0.004999,0.249950,0,0);}
.mde_c00015{transform:matrix(0.166657,0.003333,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166657,0.003333,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166657,0.003333,-0.004999,0.249950,0,0);}
.mb6_c00015{transform:matrix(0.167357,0.003347,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167357,0.003347,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167357,0.003347,-0.004999,0.249950,0,0);}
.mb8_c00015{transform:matrix(0.168121,0.003362,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168121,0.003362,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168121,0.003362,-0.004999,0.249950,0,0);}
.mae_c00015{transform:matrix(0.169911,0.003398,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169911,0.003398,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169911,0.003398,-0.004999,0.249950,0,0);}
.m69_c00015{transform:matrix(0.171776,0.003436,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171776,0.003436,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171776,0.003436,-0.004999,0.249950,0,0);}
.m26_c00015{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m77_c00015{transform:matrix(0.172411,0.003448,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172411,0.003448,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172411,0.003448,-0.004999,0.249950,0,0);}
.m42_c00015{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.175235,0.003505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175235,0.003505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175235,0.003505,-0.004999,0.249950,0,0);}
.mc9_c00015{transform:matrix(0.175920,0.003518,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175920,0.003518,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175920,0.003518,-0.004999,0.249950,0,0);}
.m11_c00015{transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.mcf_c00015{transform:matrix(0.177105,0.003542,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177105,0.003542,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177105,0.003542,-0.004999,0.249950,0,0);}
.m29_c00015{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.mc0_c00015{transform:matrix(0.177559,0.003551,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177559,0.003551,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177559,0.003551,-0.004999,0.249950,0,0);}
.m3a_c00015{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m68_c00015{transform:matrix(0.177904,0.003558,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177904,0.003558,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177904,0.003558,-0.004999,0.249950,0,0);}
.ma8_c00015{transform:matrix(0.178394,0.003568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178394,0.003568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178394,0.003568,-0.004999,0.249950,0,0);}
.md4_c00015{transform:matrix(0.178604,0.003572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178604,0.003572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178604,0.003572,-0.004999,0.249950,0,0);}
.m60_c00015{transform:matrix(0.178631,0.003751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178631,0.003751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178631,0.003751,-0.005249,0.249945,0,0);}
.mcd_c00015{transform:matrix(0.178809,0.003576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178809,0.003576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178809,0.003576,-0.004999,0.249950,0,0);}
.m5f_c00015{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.m48_c00015{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m6f_c00015{transform:matrix(0.181189,0.003624,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181189,0.003624,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181189,0.003624,-0.004999,0.249950,0,0);}
.m76_c00015{transform:matrix(0.181244,0.003625,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181244,0.003625,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181244,0.003625,-0.004999,0.249950,0,0);}
.md2_c00015{transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);}
.m95_c00015{transform:matrix(0.183223,0.003664,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183223,0.003664,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183223,0.003664,-0.004999,0.249950,0,0);}
.mb1_c00015{transform:matrix(0.183828,0.003677,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183828,0.003677,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183828,0.003677,-0.004999,0.249950,0,0);}
.m84_c00015{transform:matrix(0.183928,0.003679,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183928,0.003679,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183928,0.003679,-0.004999,0.249950,0,0);}
.m17_c00015{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m6c_c00015{transform:matrix(0.185203,0.003704,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185203,0.003704,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185203,0.003704,-0.004999,0.249950,0,0);}
.m31_c00015{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m91_c00015{transform:matrix(0.186318,0.003726,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186318,0.003726,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186318,0.003726,-0.004999,0.249950,0,0);}
.m8d_c00015{transform:matrix(0.186348,0.003727,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186348,0.003727,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186348,0.003727,-0.004999,0.249950,0,0);}
.mce_c00015{transform:matrix(0.186518,0.003730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186518,0.003730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186518,0.003730,-0.004999,0.249950,0,0);}
.m8e_c00015{transform:matrix(0.186528,0.003731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186528,0.003731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186528,0.003731,-0.004999,0.249950,0,0);}
.m64_c00015{transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);}
.m5d_c00015{transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);}
.md6_c00015{transform:matrix(0.187562,0.003751,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187562,0.003751,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187562,0.003751,-0.004999,0.249950,0,0);}
.m36_c00015{transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);}
.m80_c00015{transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);}
.md8_c00015{transform:matrix(0.188407,0.003768,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188407,0.003768,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188407,0.003768,-0.004999,0.249950,0,0);}
.m8b_c00015{transform:matrix(0.188487,0.003770,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188487,0.003770,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188487,0.003770,-0.004999,0.249950,0,0);}
.m4c_c00015{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.mdf_c00015{transform:matrix(0.188877,0.003778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188877,0.003778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188877,0.003778,-0.004999,0.249950,0,0);}
.m1_c00015{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.m79_c00015{transform:matrix(0.189572,0.003791,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189572,0.003791,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189572,0.003791,-0.004999,0.249950,0,0);}
.m16_c00015{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.m9f_c00015{transform:matrix(0.189857,0.003797,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189857,0.003797,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189857,0.003797,-0.004999,0.249950,0,0);}
.m32_c00015{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m93_c00015{transform:matrix(0.190212,0.003804,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190212,0.003804,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190212,0.003804,-0.004999,0.249950,0,0);}
.mbd_c00015{transform:matrix(0.190707,0.003814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190707,0.003814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190707,0.003814,-0.004999,0.249950,0,0);}
.m8a_c00015{transform:matrix(0.190852,0.003817,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190852,0.003817,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190852,0.003817,-0.004999,0.249950,0,0);}
.mc8_c00015{transform:matrix(0.190867,0.003817,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190867,0.003817,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190867,0.003817,-0.004999,0.249950,0,0);}
.mbf_c00015{transform:matrix(0.191167,0.003823,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191167,0.003823,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191167,0.003823,-0.004999,0.249950,0,0);}
.mdc_c00015{transform:matrix(0.191512,0.003830,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191512,0.003830,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191512,0.003830,-0.004999,0.249950,0,0);}
.m8c_c00015{transform:matrix(0.191527,0.003831,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191527,0.003831,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191527,0.003831,-0.004999,0.249950,0,0);}
.md9_c00015{transform:matrix(0.191842,0.003837,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191842,0.003837,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191842,0.003837,-0.004999,0.249950,0,0);}
.m24_c00015{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.mdb_c00015{transform:matrix(0.193161,0.003863,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193161,0.003863,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193161,0.003863,-0.004999,0.249950,0,0);}
.ma9_c00015{transform:matrix(0.193486,0.003870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193486,0.003870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193486,0.003870,-0.004999,0.249950,0,0);}
.m14_c00015{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.mca_c00015{transform:matrix(0.193941,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193941,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193941,0.003879,-0.004999,0.249950,0,0);}
.mb5_c00015{transform:matrix(0.194036,0.003881,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194036,0.003881,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194036,0.003881,-0.004999,0.249950,0,0);}
.mbe_c00015{transform:matrix(0.194776,0.003896,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194776,0.003896,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194776,0.003896,-0.004999,0.249950,0,0);}
.m4_c00015{transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);}
.mc3_c00015{transform:matrix(0.194996,0.003900,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194996,0.003900,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194996,0.003900,-0.004999,0.249950,0,0);}
.mc4_c00015{transform:matrix(0.195071,0.003901,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195071,0.003901,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195071,0.003901,-0.004999,0.249950,0,0);}
.mbc_c00015{transform:matrix(0.195171,0.003903,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195171,0.003903,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195171,0.003903,-0.004999,0.249950,0,0);}
.mb2_c00015{transform:matrix(0.195376,0.003908,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195376,0.003908,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195376,0.003908,-0.004999,0.249950,0,0);}
.m8f_c00015{transform:matrix(0.195596,0.003912,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195596,0.003912,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195596,0.003912,-0.004999,0.249950,0,0);}
.m72_c00015{transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);}
.m4a_c00015{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m71_c00015{transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);}
.m58_c00015{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);}
.m4b_c00015{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.m82_c00015{transform:matrix(0.198755,0.003975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198755,0.003975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198755,0.003975,-0.004999,0.249950,0,0);}
.md1_c00015{transform:matrix(0.199625,0.003993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199625,0.003993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199625,0.003993,-0.004999,0.249950,0,0);}
.m7_c00015{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);}
.m38_c00015{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00015{transform:matrix(0.200600,0.004012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200600,0.004012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200600,0.004012,-0.004999,0.249950,0,0);}
.me0_c00015{transform:matrix(0.201325,0.004026,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201325,0.004026,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201325,0.004026,-0.004999,0.249950,0,0);}
.me3_c00015{transform:matrix(0.201360,0.004027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201360,0.004027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201360,0.004027,-0.004999,0.249950,0,0);}
.m3b_c00015{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m7d_c00015{transform:matrix(0.202020,0.004040,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202020,0.004040,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202020,0.004040,-0.004999,0.249950,0,0);}
.m27_c00015{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.me1_c00015{transform:matrix(0.203209,0.004064,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203209,0.004064,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203209,0.004064,-0.004999,0.249950,0,0);}
.m9b_c00015{transform:matrix(0.203619,0.004072,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203619,0.004072,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203619,0.004072,-0.004999,0.249950,0,0);}
.m25_c00015{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m87_c00015{transform:matrix(0.203959,0.004079,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203959,0.004079,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203959,0.004079,-0.004999,0.249950,0,0);}
.m97_c00015{transform:matrix(0.204014,0.004080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204014,0.004080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204014,0.004080,-0.004999,0.249950,0,0);}
.maa_c00015{transform:matrix(0.204334,0.004087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204334,0.004087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204334,0.004087,-0.004999,0.249950,0,0);}
.m9e_c00015{transform:matrix(0.204364,0.004087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204364,0.004087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204364,0.004087,-0.004999,0.249950,0,0);}
.mc6_c00015{transform:matrix(0.204709,0.004094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204709,0.004094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204709,0.004094,-0.004999,0.249950,0,0);}
.mc7_c00015{transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);}
.m2_c00015{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.mab_c00015{transform:matrix(0.205454,0.004109,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205454,0.004109,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205454,0.004109,-0.004999,0.249950,0,0);}
.m5a_c00015{transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.md0_c00015{transform:matrix(0.206449,0.004129,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206449,0.004129,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206449,0.004129,-0.004999,0.249950,0,0);}
.md_c00015{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m88_c00015{transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);}
.m9c_c00015{transform:matrix(0.206894,0.004138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206894,0.004138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206894,0.004138,-0.004999,0.249950,0,0);}
.m6b_c00015{transform:matrix(0.207543,0.004151,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207543,0.004151,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207543,0.004151,-0.004999,0.249950,0,0);}
.m78_c00015{transform:matrix(0.207763,0.004155,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207763,0.004155,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207763,0.004155,-0.004999,0.249950,0,0);}
.m39_c00015{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);}
.m94_c00015{transform:matrix(0.208583,0.004172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208583,0.004172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208583,0.004172,-0.004999,0.249950,0,0);}
.m56_c00015{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.md3_c00015{transform:matrix(0.209373,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209373,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209373,0.004187,-0.004999,0.249950,0,0);}
.m1b_c00015{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00015{transform:matrix(0.210748,0.004215,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210748,0.004215,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210748,0.004215,-0.004999,0.249950,0,0);}
.m81_c00015{transform:matrix(0.211858,0.004237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211858,0.004237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211858,0.004237,-0.004999,0.249950,0,0);}
.m98_c00015{transform:matrix(0.212153,0.004243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212153,0.004243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212153,0.004243,-0.004999,0.249950,0,0);}
.m28_c00015{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);}
.mb4_c00015{transform:matrix(0.213712,0.004274,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213712,0.004274,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213712,0.004274,-0.004999,0.249950,0,0);}
.m37_c00015{transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.mcc_c00015{transform:matrix(0.215932,0.004319,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215932,0.004319,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215932,0.004319,-0.004999,0.249950,0,0);}
.m35_c00015{transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);}
.me2_c00015{transform:matrix(0.216262,0.004325,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216262,0.004325,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216262,0.004325,-0.004999,0.249950,0,0);}
.ma1_c00015{transform:matrix(0.216717,0.004334,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216717,0.004334,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216717,0.004334,-0.004999,0.249950,0,0);}
.m86_c00015{transform:matrix(0.217536,0.004351,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217536,0.004351,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217536,0.004351,-0.004999,0.249950,0,0);}
.m7c_c00015{transform:matrix(0.217951,0.004359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217951,0.004359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217951,0.004359,-0.004999,0.249950,0,0);}
.mad_c00015{transform:matrix(0.218251,0.004365,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218251,0.004365,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218251,0.004365,-0.004999,0.249950,0,0);}
.ma4_c00015{transform:matrix(0.218621,0.004372,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218621,0.004372,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218621,0.004372,-0.004999,0.249950,0,0);}
.m62_c00015{transform:matrix(0.218847,0.004596,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218847,0.004596,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218847,0.004596,-0.005249,0.249945,0,0);}
.m9d_c00015{transform:matrix(0.219021,0.004380,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219021,0.004380,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219021,0.004380,-0.004999,0.249950,0,0);}
.m85_c00015{transform:matrix(0.219611,0.004392,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219611,0.004392,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219611,0.004392,-0.004999,0.249950,0,0);}
.m65_c00015{transform:matrix(0.219647,0.004613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219647,0.004613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219647,0.004613,-0.005249,0.249945,0,0);}
.m57_c00015{transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);}
.m99_c00015{transform:matrix(0.221246,0.004425,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221246,0.004425,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221246,0.004425,-0.004999,0.249950,0,0);}
.m89_c00015{transform:matrix(0.221476,0.004430,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221476,0.004430,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221476,0.004430,-0.004999,0.249950,0,0);}
.m45_c00015{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.mb0_c00015{transform:matrix(0.221881,0.004438,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221881,0.004438,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221881,0.004438,-0.004999,0.249950,0,0);}
.m1f_c00015{transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m9a_c00015{transform:matrix(0.224775,0.004496,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224775,0.004496,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224775,0.004496,-0.004999,0.249950,0,0);}
.mba_c00015{transform:matrix(0.227015,0.004540,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227015,0.004540,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227015,0.004540,-0.004999,0.249950,0,0);}
.m2e_c00015{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m59_c00015{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);}
.m67_c00015{transform:matrix(0.234458,0.004924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234458,0.004924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234458,0.004924,-0.005249,0.249945,0,0);}
.m66_c00015{transform:matrix(0.234628,0.004927,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234628,0.004927,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234628,0.004927,-0.005249,0.249945,0,0);}
.mac_c00015{transform:matrix(0.235853,0.004717,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235853,0.004717,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235853,0.004717,-0.004999,0.249950,0,0);}
.m75_c00015{transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);}
.ma5_c00015{transform:matrix(0.237353,0.004747,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237353,0.004747,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237353,0.004747,-0.004999,0.249950,0,0);}
.m83_c00015{transform:matrix(0.238582,0.004772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238582,0.004772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238582,0.004772,-0.004999,0.249950,0,0);}
.m2f_c00015{transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.mc5_c00015{transform:matrix(0.240847,0.004817,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240847,0.004817,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240847,0.004817,-0.004999,0.249950,0,0);}
.m61_c00015{transform:matrix(0.241427,0.005070,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241427,0.005070,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241427,0.005070,-0.005249,0.249945,0,0);}
.m54_c00015{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m33_c00015{transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);}
.mb9_c00015{transform:matrix(0.246221,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246221,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246221,0.004924,-0.004999,0.249950,0,0);}
.m53_c00015{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);}
.m7b_c00015{transform:matrix(0.258873,0.005177,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258873,0.005177,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258873,0.005177,-0.004999,0.249950,0,0);}
.maf_c00015{transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);}
.m2a_c00015{transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);}
.ma3_c00015{transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);}
.m7f_c00015{transform:matrix(0.264662,0.005293,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264662,0.005293,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264662,0.005293,-0.004999,0.249950,0,0);}
.m7a_c00015{transform:matrix(0.266432,0.005329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266432,0.005329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266432,0.005329,-0.004999,0.249950,0,0);}
.mcb_c00015{transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);}
.m55_c00015{transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);}
.m50_c00015{transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);}
.ma6_c00015{transform:matrix(0.324650,0.006493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.324650,0.006493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.324650,0.006493,-0.004999,0.249950,0,0);}
.me5_c00015{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.ma2_c00015{transform:matrix(0.361438,0.007229,-0.004999,0.249950,0,0);-ms-transform:matrix(0.361438,0.007229,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.361438,0.007229,-0.004999,0.249950,0,0);}
.m3_c00015{transform:matrix(0.410975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410975,0.000000,0.000000,0.250000,0,0);}
.me4_c00015{transform:matrix(0.481150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481150,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{transform:matrix(0.525990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525990,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
.fc0_c00015{color:transparent;}
.fs13_c00015{font-size:22.050000px;}
.fs7_c00015{font-size:55.650000px;}
.fs8_c00015{font-size:58.812964px;}
.fs3_c00015{font-size:59.850000px;}
.fsb_c00015{font-size:59.861969px;}
.fsc_c00015{font-size:60.912179px;}
.fs5_c00015{font-size:61.950000px;}
.fsf_c00015{font-size:61.962389px;}
.fs11_c00015{font-size:63.012599px;}
.fs0_c00015{font-size:64.050000px;}
.fs12_c00015{font-size:64.062809px;}
.fs6_c00015{font-size:65.100000px;}
.fs1_c00015{font-size:66.150000px;}
.fsd_c00015{font-size:66.163229px;}
.fs4_c00015{font-size:67.200000px;}
.fs10_c00015{font-size:67.213439px;}
.fs2_c00015{font-size:68.250000px;}
.fs9_c00015{font-size:68.263649px;}
.fse_c00015{font-size:69.313859px;}
.fsa_c00015{font-size:70.364069px;}
.y0_c00015{bottom:0.000000px;}
.ye7_c00015{bottom:28.796700px;}
.ye6_c00015{bottom:29.315310px;}
.ye5_c00015{bottom:30.645930px;}
.ye4_c00015{bottom:31.394370px;}
.ye3_c00015{bottom:31.747380px;}
.ye2_c00015{bottom:32.885670px;}
.ye1_c00015{bottom:45.204840px;}
.ye0_c00015{bottom:45.774120px;}
.ydf_c00015{bottom:46.681860px;}
.yde_c00015{bottom:47.254920px;}
.ydd_c00015{bottom:47.562570px;}
.ydc_c00015{bottom:49.139820px;}
.ydb_c00015{bottom:49.775490px;}
.yda_c00015{bottom:50.372010px;}
.yd9_c00015{bottom:50.709330px;}
.yd8_c00015{bottom:63.380790px;}
.yd7_c00015{bottom:64.785900px;}
.yd6_c00015{bottom:65.228940px;}
.yd5_c00015{bottom:66.276750px;}
.yd4_c00015{bottom:67.216380px;}
.yd3_c00015{bottom:68.534700px;}
.yd2_c00015{bottom:79.569870px;}
.yd1_c00015{bottom:79.843470px;}
.yd0_c00015{bottom:80.318970px;}
.ycf_c00015{bottom:80.699220px;}
.yce_c00015{bottom:83.093340px;}
.ycd_c00015{bottom:84.482880px;}
.ycc_c00015{bottom:85.014990px;}
.ycb_c00015{bottom:85.820280px;}
.yca_c00015{bottom:96.618090px;}
.yc9_c00015{bottom:97.448250px;}
.yc8_c00015{bottom:98.663460px;}
.yc7_c00015{bottom:98.914530px;}
.yc6_c00015{bottom:99.724560px;}
.yc5_c00015{bottom:99.987180px;}
.yc4_c00015{bottom:100.938750px;}
.yc3_c00015{bottom:114.627990px;}
.yc2_c00015{bottom:115.961430px;}
.yc1_c00015{bottom:116.294370px;}
.yc0_c00015{bottom:117.341190px;}
.ybf_c00015{bottom:118.161750px;}
.ybe_c00015{bottom:118.549140px;}
.ybd_c00015{bottom:118.869750px;}
.ybc_c00015{bottom:119.571390px;}
.ybb_c00015{bottom:130.721280px;}
.yba_c00015{bottom:131.023020px;}
.yb9_c00015{bottom:131.925600px;}
.yb8_c00015{bottom:132.951210px;}
.yb7_c00015{bottom:133.949250px;}
.yb6_c00015{bottom:134.236290px;}
.yb5_c00015{bottom:135.504750px;}
.yb4_c00015{bottom:147.877140px;}
.yb3_c00015{bottom:149.174310px;}
.yb2_c00015{bottom:150.758910px;}
.yb1_c00015{bottom:151.126800px;}
.yb0_c00015{bottom:152.098470px;}
.yaf_c00015{bottom:153.057090px;}
.yae_c00015{bottom:166.984260px;}
.yad_c00015{bottom:168.054120px;}
.yac_c00015{bottom:168.396720px;}
.yab_c00015{bottom:169.045920px;}
.yaa_c00015{bottom:169.461570px;}
.ya9_c00015{bottom:169.764720px;}
.ya8_c00015{bottom:170.881200px;}
.ya7_c00015{bottom:182.201070px;}
.ya6_c00015{bottom:182.619390px;}
.ya5_c00015{bottom:183.696570px;}
.ya4_c00015{bottom:184.793730px;}
.ya3_c00015{bottom:185.099640px;}
.ya2_c00015{bottom:186.625380px;}
.ya1_c00015{bottom:187.624170px;}
.ya0_c00015{bottom:198.752790px;}
.y9f_c00015{bottom:199.590450px;}
.y9e_c00015{bottom:200.109870px;}
.y9d_c00015{bottom:201.763530px;}
.y9c_c00015{bottom:202.103790px;}
.y9b_c00015{bottom:203.699970px;}
.y9a_c00015{bottom:204.510840px;}
.y99_c00015{bottom:204.932910px;}
.y98_c00015{bottom:205.444920px;}
.y97_c00015{bottom:216.096090px;}
.y96_c00015{bottom:216.675690px;}
.y95_c00015{bottom:217.679130px;}
.y94_c00015{bottom:219.038790px;}
.y93_c00015{bottom:220.314870px;}
.y92_c00015{bottom:222.016140px;}
.y91_c00015{bottom:222.728820px;}
.y90_c00015{bottom:233.615340px;}
.y8f_c00015{bottom:234.702090px;}
.y8e_c00015{bottom:237.949500px;}
.y8d_c00015{bottom:238.675980px;}
.y8c_c00015{bottom:239.746230px;}
.y8b_c00015{bottom:251.107410px;}
.y8a_c00015{bottom:251.695920px;}
.y89_c00015{bottom:252.990510px;}
.y88_c00015{bottom:254.300970px;}
.y87_c00015{bottom:254.624280px;}
.y86_c00015{bottom:254.905680px;}
.y85_c00015{bottom:256.218540px;}
.y84_c00015{bottom:267.294330px;}
.y83_c00015{bottom:267.869670px;}
.y82_c00015{bottom:268.785990px;}
.y81_c00015{bottom:268.863180px;}
.y80_c00015{bottom:270.184020px;}
.y7f_c00015{bottom:271.481700px;}
.y7e_c00015{bottom:271.887330px;}
.y7d_c00015{bottom:273.233580px;}
.y7c_c00015{bottom:273.774000px;}
.ye8_c00015{bottom:278.370000px;}
.y7b_c00015{bottom:284.023830px;}
.y7a_c00015{bottom:285.068370px;}
.y79_c00015{bottom:286.763340px;}
.y78_c00015{bottom:289.628520px;}
.y77_c00015{bottom:291.060570px;}
.y76_c00015{bottom:300.954900px;}
.y75_c00015{bottom:301.967100px;}
.y74_c00015{bottom:302.967390px;}
.y73_c00015{bottom:304.432080px;}
.y72_c00015{bottom:306.755370px;}
.y71_c00015{bottom:307.533060px;}
.y70_c00015{bottom:318.819120px;}
.y6f_c00015{bottom:319.384500px;}
.y6e_c00015{bottom:320.240010px;}
.y6d_c00015{bottom:321.875880px;}
.y6c_c00015{bottom:323.021100px;}
.y6b_c00015{bottom:324.273000px;}
.y6a_c00015{bottom:335.730406px;}
.y69_c00015{bottom:335.909767px;}
.y68_c00015{bottom:337.052052px;}
.y67_c00015{bottom:337.414963px;}
.y66_c00015{bottom:337.857255px;}
.y65_c00015{bottom:339.586447px;}
.y64_c00015{bottom:340.494403px;}
.y63_c00015{bottom:341.014500px;}
.y62_c00015{bottom:352.311000px;}
.y61_c00015{bottom:352.861500px;}
.y60_c00015{bottom:354.267000px;}
.y5f_c00015{bottom:354.751500px;}
.y5e_c00015{bottom:355.686000px;}
.y5d_c00015{bottom:357.372000px;}
.y5c_c00015{bottom:358.170000px;}
.y5b_c00015{bottom:358.834500px;}
.y5a_c00015{bottom:369.597000px;}
.y59_c00015{bottom:370.360500px;}
.y58_c00015{bottom:370.798500px;}
.y57_c00015{bottom:371.877000px;}
.y56_c00015{bottom:373.884000px;}
.y55_c00015{bottom:374.043000px;}
.y54_c00015{bottom:375.579000px;}
.y53_c00015{bottom:385.242000px;}
.y52_c00015{bottom:387.216000px;}
.y51_c00015{bottom:388.086000px;}
.y50_c00015{bottom:388.483500px;}
.y4f_c00015{bottom:389.614500px;}
.y4e_c00015{bottom:390.639000px;}
.y4d_c00015{bottom:391.279500px;}
.y4c_c00015{bottom:392.857500px;}
.y4b_c00015{bottom:402.349500px;}
.y4a_c00015{bottom:403.141500px;}
.y49_c00015{bottom:404.109000px;}
.y48_c00015{bottom:405.277500px;}
.y47_c00015{bottom:406.506000px;}
.y46_c00015{bottom:407.194500px;}
.y45_c00015{bottom:408.901500px;}
.y44_c00015{bottom:409.597500px;}
.y43_c00015{bottom:419.044500px;}
.y42_c00015{bottom:421.284000px;}
.y41_c00015{bottom:422.014500px;}
.y40_c00015{bottom:422.581500px;}
.y3f_c00015{bottom:424.188000px;}
.y3e_c00015{bottom:424.846500px;}
.y3d_c00015{bottom:425.220000px;}
.y3c_c00015{bottom:426.871500px;}
.y3b_c00015{bottom:427.147500px;}
.y3a_c00015{bottom:437.116500px;}
.y39_c00015{bottom:439.369500px;}
.y38_c00015{bottom:440.223000px;}
.y37_c00015{bottom:440.749500px;}
.y36_c00015{bottom:442.665000px;}
.y35_c00015{bottom:444.160500px;}
.y34_c00015{bottom:454.201500px;}
.y33_c00015{bottom:455.577000px;}
.y32_c00015{bottom:456.019500px;}
.y31_c00015{bottom:456.795000px;}
.y30_c00015{bottom:458.202000px;}
.y2f_c00015{bottom:458.805000px;}
.y2e_c00015{bottom:460.629000px;}
.y2d_c00015{bottom:470.328000px;}
.y2c_c00015{bottom:471.145500px;}
.y2b_c00015{bottom:472.158000px;}
.y2a_c00015{bottom:474.538500px;}
.y29_c00015{bottom:476.587500px;}
.y28_c00015{bottom:477.907500px;}
.y27_c00015{bottom:487.695000px;}
.y26_c00015{bottom:489.357000px;}
.y25_c00015{bottom:490.080000px;}
.y24_c00015{bottom:490.560000px;}
.y23_c00015{bottom:491.136000px;}
.y22_c00015{bottom:492.841500px;}
.y21_c00015{bottom:493.506000px;}
.y20_c00015{bottom:494.916000px;}
.y1f_c00015{bottom:505.197000px;}
.y1e_c00015{bottom:505.624500px;}
.y1d_c00015{bottom:506.515500px;}
.y1c_c00015{bottom:507.331500px;}
.y1b_c00015{bottom:509.292000px;}
.y1a_c00015{bottom:509.869500px;}
.y19_c00015{bottom:511.791000px;}
.y18_c00015{bottom:512.472000px;}
.y17_c00015{bottom:513.279000px;}
.y16_c00015{bottom:522.261000px;}
.y15_c00015{bottom:523.590000px;}
.y14_c00015{bottom:524.031000px;}
.y13_c00015{bottom:524.637000px;}
.y12_c00015{bottom:525.733500px;}
.y11_c00015{bottom:527.167500px;}
.y10_c00015{bottom:527.856000px;}
.yf_c00015{bottom:538.788000px;}
.ye_c00015{bottom:539.944500px;}
.yd_c00015{bottom:540.385500px;}
.yc_c00015{bottom:542.128500px;}
.yb_c00015{bottom:544.099500px;}
.ya_c00015{bottom:544.309500px;}
.y9_c00015{bottom:545.409000px;}
.y8_c00015{bottom:555.267000px;}
.y7_c00015{bottom:555.697500px;}
.y6_c00015{bottom:556.893000px;}
.y5_c00015{bottom:557.509500px;}
.y4_c00015{bottom:559.119000px;}
.y3_c00015{bottom:561.592500px;}
.y2_c00015{bottom:562.687500px;}
.y1_c00015{bottom:575.778000px;}
.h15_c00015{height:22.050000px;}
.h9_c00015{height:55.650000px;}
.ha_c00015{height:58.812964px;}
.h5_c00015{height:59.850000px;}
.hd_c00015{height:59.861969px;}
.he_c00015{height:60.912179px;}
.h7_c00015{height:61.950000px;}
.h11_c00015{height:61.962389px;}
.h13_c00015{height:63.012599px;}
.h2_c00015{height:64.050000px;}
.h14_c00015{height:64.062809px;}
.h8_c00015{height:65.100000px;}
.h3_c00015{height:66.150000px;}
.hf_c00015{height:66.163229px;}
.h6_c00015{height:67.200000px;}
.h12_c00015{height:67.213439px;}
.h4_c00015{height:68.250000px;}
.hb_c00015{height:68.263649px;}
.h10_c00015{height:69.313859px;}
.hc_c00015{height:70.364069px;}
.h1_c00015{height:615.750000px;}
.h0_c00015{height:615.870000px;}
.w0_c00015{width:383.100000px;}
.w1_c00015{width:383.250000px;}
.x0_c00015{left:0.000000px;}
.x60_c00015{left:45.366540px;}
.x4a_c00015{left:46.414860px;}
.x3f_c00015{left:47.634000px;}
.x26_c00015{left:48.832500px;}
.xf_c00015{left:49.960500px;}
.x2_c00015{left:51.808500px;}
.x2c_c00015{left:57.987000px;}
.x6f_c00015{left:62.687520px;}
.x5b_c00015{left:65.958810px;}
.x4d_c00015{left:69.667260px;}
.x43_c00015{left:72.099000px;}
.x59_c00015{left:73.967040px;}
.x15_c00015{left:75.694500px;}
.x10_c00015{left:79.890000px;}
.x5c_c00015{left:82.860630px;}
.x57_c00015{left:88.663980px;}
.x3_c00015{left:93.934500px;}
.x61_c00015{left:95.306040px;}
.x9_c00015{left:96.807000px;}
.x68_c00015{left:98.983530px;}
.x1c_c00015{left:101.193000px;}
.xa_c00015{left:105.543000px;}
.x37_c00015{left:108.765000px;}
.x6d_c00015{left:110.775000px;}
.x72_c00015{left:111.866340px;}
.x3c_c00015{left:115.809000px;}
.x2d_c00015{left:116.982000px;}
.x27_c00015{left:119.013000px;}
.x54_c00015{left:121.530960px;}
.x1d_c00015{left:124.950000px;}
.x6a_c00015{left:126.197070px;}
.x4e_c00015{left:128.201250px;}
.x2e_c00015{left:130.335000px;}
.x38_c00015{left:133.410000px;}
.x55_c00015{left:136.946160px;}
.x11_c00015{left:142.227000px;}
.x33_c00015{left:144.133500px;}
.x4f_c00015{left:145.856700px;}
.x65_c00015{left:147.021030px;}
.x2f_c00015{left:153.837000px;}
.x63_c00015{left:158.074710px;}
.x16_c00015{left:159.661500px;}
.x69_c00015{left:162.607320px;}
.x45_c00015{left:166.663500px;}
.x23_c00015{left:169.788000px;}
.x34_c00015{left:171.684000px;}
.x39_c00015{left:172.839000px;}
.x73_c00015{left:176.692740px;}
.x17_c00015{left:178.306500px;}
.x6b_c00015{left:180.203970px;}
.x46_c00015{left:181.485690px;}
.x1e_c00015{left:185.877000px;}
.xb_c00015{left:187.647000px;}
.x4_c00015{left:189.085500px;}
.x5a_c00015{left:193.047630px;}
.x1_c00015{left:196.830000px;}
.x56_c00015{left:199.317900px;}
.x50_c00015{left:202.262310px;}
.x1f_c00015{left:206.464500px;}
.x6e_c00015{left:210.147000px;}
.x30_c00015{left:211.191000px;}
.x12_c00015{left:216.247500px;}
.x40_c00015{left:217.707000px;}
.x2a_c00015{left:219.720000px;}
.x35_c00015{left:220.840500px;}
.x64_c00015{left:222.245130px;}
.x20_c00015{left:223.620000px;}
.x28_c00015{left:226.207500px;}
.x31_c00015{left:231.430500px;}
.x13_c00015{left:235.438500px;}
.x41_c00015{left:237.867000px;}
.x3d_c00015{left:239.196000px;}
.x18_c00015{left:241.560000px;}
.x29_c00015{left:243.226500px;}
.x47_c00015{left:245.191380px;}
.x67_c00015{left:246.411900px;}
.x58_c00015{left:247.592580px;}
.x21_c00015{left:249.429000px;}
.x5_c00015{left:250.996500px;}
.x24_c00015{left:254.832000px;}
.x32_c00015{left:257.496000px;}
.x5d_c00015{left:258.941550px;}
.xc_c00015{left:260.248500px;}
.x51_c00015{left:263.010150px;}
.x3a_c00015{left:265.104000px;}
.x19_c00015{left:267.900000px;}
.x6_c00015{left:274.713000px;}
.x4b_c00015{left:276.847200px;}
.xd_c00015{left:278.611500px;}
.x5e_c00015{left:279.735480px;}
.x74_c00015{left:285.510780px;}
.x3e_c00015{left:287.272500px;}
.x48_c00015{left:288.678270px;}
.x25_c00015{left:290.976000px;}
.x14_c00015{left:293.206500px;}
.x62_c00015{left:295.605540px;}
.x1a_c00015{left:296.620500px;}
.x44_c00015{left:298.956000px;}
.x2b_c00015{left:300.169500px;}
.x52_c00015{left:302.823750px;}
.x70_c00015{left:304.661850px;}
.x36_c00015{left:306.282000px;}
.x22_c00015{left:308.797500px;}
.x1b_c00015{left:310.402500px;}
.x5f_c00015{left:313.215120px;}
.x4c_c00015{left:316.994370px;}
.x66_c00015{left:318.132480px;}
.x42_c00015{left:319.392000px;}
.x7_c00015{left:320.722500px;}
.xe_c00015{left:326.787000px;}
.x53_c00015{left:327.839250px;}
.x6c_c00015{left:329.459910px;}
.x49_c00015{left:332.685630px;}
.x71_c00015{left:334.626450px;}
.x8_c00015{left:337.308000px;}
.x3b_c00015{left:341.020500px;}
.x75_c00015{left:380.160000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs13_c00015{font-size:19.600000pt;}
.fs7_c00015{font-size:49.466667pt;}
.fs8_c00015{font-size:52.278190pt;}
.fs3_c00015{font-size:53.200000pt;}
.fsb_c00015{font-size:53.210639pt;}
.fsc_c00015{font-size:54.144159pt;}
.fs5_c00015{font-size:55.066667pt;}
.fsf_c00015{font-size:55.077679pt;}
.fs11_c00015{font-size:56.011199pt;}
.fs0_c00015{font-size:56.933333pt;}
.fs12_c00015{font-size:56.944719pt;}
.fs6_c00015{font-size:57.866667pt;}
.fs1_c00015{font-size:58.800000pt;}
.fsd_c00015{font-size:58.811759pt;}
.fs4_c00015{font-size:59.733333pt;}
.fs10_c00015{font-size:59.745279pt;}
.fs2_c00015{font-size:60.666667pt;}
.fs9_c00015{font-size:60.678799pt;}
.fse_c00015{font-size:61.612319pt;}
.fsa_c00015{font-size:62.545839pt;}
.y0_c00015{bottom:0.000000pt;}
.ye7_c00015{bottom:25.597067pt;}
.ye6_c00015{bottom:26.058053pt;}
.ye5_c00015{bottom:27.240827pt;}
.ye4_c00015{bottom:27.906107pt;}
.ye3_c00015{bottom:28.219893pt;}
.ye2_c00015{bottom:29.231707pt;}
.ye1_c00015{bottom:40.182080pt;}
.ye0_c00015{bottom:40.688107pt;}
.ydf_c00015{bottom:41.494987pt;}
.yde_c00015{bottom:42.004373pt;}
.ydd_c00015{bottom:42.277840pt;}
.ydc_c00015{bottom:43.679840pt;}
.ydb_c00015{bottom:44.244880pt;}
.yda_c00015{bottom:44.775120pt;}
.yd9_c00015{bottom:45.074960pt;}
.yd8_c00015{bottom:56.338480pt;}
.yd7_c00015{bottom:57.587467pt;}
.yd6_c00015{bottom:57.981280pt;}
.yd5_c00015{bottom:58.912667pt;}
.yd4_c00015{bottom:59.747893pt;}
.yd3_c00015{bottom:60.919733pt;}
.yd2_c00015{bottom:70.728773pt;}
.yd1_c00015{bottom:70.971973pt;}
.yd0_c00015{bottom:71.394640pt;}
.ycf_c00015{bottom:71.732640pt;}
.yce_c00015{bottom:73.860747pt;}
.ycd_c00015{bottom:75.095893pt;}
.ycc_c00015{bottom:75.568880pt;}
.ycb_c00015{bottom:76.284693pt;}
.yca_c00015{bottom:85.882747pt;}
.yc9_c00015{bottom:86.620667pt;}
.yc8_c00015{bottom:87.700853pt;}
.yc7_c00015{bottom:87.924027pt;}
.yc6_c00015{bottom:88.644053pt;}
.yc5_c00015{bottom:88.877493pt;}
.yc4_c00015{bottom:89.723333pt;}
.yc3_c00015{bottom:101.891547pt;}
.yc2_c00015{bottom:103.076827pt;}
.yc1_c00015{bottom:103.372773pt;}
.yc0_c00015{bottom:104.303280pt;}
.ybf_c00015{bottom:105.032667pt;}
.ybe_c00015{bottom:105.377013pt;}
.ybd_c00015{bottom:105.662000pt;}
.ybc_c00015{bottom:106.285680pt;}
.ybb_c00015{bottom:116.196693pt;}
.yba_c00015{bottom:116.464907pt;}
.yb9_c00015{bottom:117.267200pt;}
.yb8_c00015{bottom:118.178853pt;}
.yb7_c00015{bottom:119.066000pt;}
.yb6_c00015{bottom:119.321147pt;}
.yb5_c00015{bottom:120.448667pt;}
.yb4_c00015{bottom:131.446347pt;}
.yb3_c00015{bottom:132.599387pt;}
.yb2_c00015{bottom:134.007920pt;}
.yb1_c00015{bottom:134.334933pt;}
.yb0_c00015{bottom:135.198640pt;}
.yaf_c00015{bottom:136.050747pt;}
.yae_c00015{bottom:148.430453pt;}
.yad_c00015{bottom:149.381440pt;}
.yac_c00015{bottom:149.685973pt;}
.yab_c00015{bottom:150.263040pt;}
.yaa_c00015{bottom:150.632507pt;}
.ya9_c00015{bottom:150.901973pt;}
.ya8_c00015{bottom:151.894400pt;}
.ya7_c00015{bottom:161.956507pt;}
.ya6_c00015{bottom:162.328347pt;}
.ya5_c00015{bottom:163.285840pt;}
.ya4_c00015{bottom:164.261093pt;}
.ya3_c00015{bottom:164.533013pt;}
.ya2_c00015{bottom:165.889227pt;}
.ya1_c00015{bottom:166.777040pt;}
.ya0_c00015{bottom:176.669147pt;}
.y9f_c00015{bottom:177.413733pt;}
.y9e_c00015{bottom:177.875440pt;}
.y9d_c00015{bottom:179.345360pt;}
.y9c_c00015{bottom:179.647813pt;}
.y9b_c00015{bottom:181.066640pt;}
.y9a_c00015{bottom:181.787413pt;}
.y99_c00015{bottom:182.162587pt;}
.y98_c00015{bottom:182.617707pt;}
.y97_c00015{bottom:192.085413pt;}
.y96_c00015{bottom:192.600613pt;}
.y95_c00015{bottom:193.492560pt;}
.y94_c00015{bottom:194.701147pt;}
.y93_c00015{bottom:195.835440pt;}
.y92_c00015{bottom:197.347680pt;}
.y91_c00015{bottom:197.981173pt;}
.y90_c00015{bottom:207.658080pt;}
.y8f_c00015{bottom:208.624080pt;}
.y8e_c00015{bottom:211.510667pt;}
.y8d_c00015{bottom:212.156427pt;}
.y8c_c00015{bottom:213.107760pt;}
.y8b_c00015{bottom:223.206587pt;}
.y8a_c00015{bottom:223.729707pt;}
.y89_c00015{bottom:224.880453pt;}
.y88_c00015{bottom:226.045307pt;}
.y87_c00015{bottom:226.332693pt;}
.y86_c00015{bottom:226.582827pt;}
.y85_c00015{bottom:227.749813pt;}
.y84_c00015{bottom:237.594960pt;}
.y83_c00015{bottom:238.106373pt;}
.y82_c00015{bottom:238.920880pt;}
.y81_c00015{bottom:238.989493pt;}
.y80_c00015{bottom:240.163573pt;}
.y7f_c00015{bottom:241.317067pt;}
.y7e_c00015{bottom:241.677627pt;}
.y7d_c00015{bottom:242.874293pt;}
.y7c_c00015{bottom:243.354667pt;}
.ye8_c00015{bottom:247.440000pt;}
.y7b_c00015{bottom:252.465627pt;}
.y7a_c00015{bottom:253.394107pt;}
.y79_c00015{bottom:254.900747pt;}
.y78_c00015{bottom:257.447573pt;}
.y77_c00015{bottom:258.720507pt;}
.y76_c00015{bottom:267.515467pt;}
.y75_c00015{bottom:268.415200pt;}
.y74_c00015{bottom:269.304347pt;}
.y73_c00015{bottom:270.606293pt;}
.y72_c00015{bottom:272.671440pt;}
.y71_c00015{bottom:273.362720pt;}
.y70_c00015{bottom:283.394773pt;}
.y6f_c00015{bottom:283.897333pt;}
.y6e_c00015{bottom:284.657787pt;}
.y6d_c00015{bottom:286.111893pt;}
.y6c_c00015{bottom:287.129867pt;}
.y6b_c00015{bottom:288.242667pt;}
.y6a_c00015{bottom:298.427028pt;}
.y69_c00015{bottom:298.586460pt;}
.y68_c00015{bottom:299.601824pt;}
.y67_c00015{bottom:299.924412pt;}
.y66_c00015{bottom:300.317560pt;}
.y65_c00015{bottom:301.854620pt;}
.y64_c00015{bottom:302.661692pt;}
.y63_c00015{bottom:303.124000pt;}
.y62_c00015{bottom:313.165333pt;}
.y61_c00015{bottom:313.654667pt;}
.y60_c00015{bottom:314.904000pt;}
.y5f_c00015{bottom:315.334667pt;}
.y5e_c00015{bottom:316.165333pt;}
.y5d_c00015{bottom:317.664000pt;}
.y5c_c00015{bottom:318.373333pt;}
.y5b_c00015{bottom:318.964000pt;}
.y5a_c00015{bottom:328.530667pt;}
.y59_c00015{bottom:329.209333pt;}
.y58_c00015{bottom:329.598667pt;}
.y57_c00015{bottom:330.557333pt;}
.y56_c00015{bottom:332.341333pt;}
.y55_c00015{bottom:332.482667pt;}
.y54_c00015{bottom:333.848000pt;}
.y53_c00015{bottom:342.437333pt;}
.y52_c00015{bottom:344.192000pt;}
.y51_c00015{bottom:344.965333pt;}
.y50_c00015{bottom:345.318667pt;}
.y4f_c00015{bottom:346.324000pt;}
.y4e_c00015{bottom:347.234667pt;}
.y4d_c00015{bottom:347.804000pt;}
.y4c_c00015{bottom:349.206667pt;}
.y4b_c00015{bottom:357.644000pt;}
.y4a_c00015{bottom:358.348000pt;}
.y49_c00015{bottom:359.208000pt;}
.y48_c00015{bottom:360.246667pt;}
.y47_c00015{bottom:361.338667pt;}
.y46_c00015{bottom:361.950667pt;}
.y45_c00015{bottom:363.468000pt;}
.y44_c00015{bottom:364.086667pt;}
.y43_c00015{bottom:372.484000pt;}
.y42_c00015{bottom:374.474667pt;}
.y41_c00015{bottom:375.124000pt;}
.y40_c00015{bottom:375.628000pt;}
.y3f_c00015{bottom:377.056000pt;}
.y3e_c00015{bottom:377.641333pt;}
.y3d_c00015{bottom:377.973333pt;}
.y3c_c00015{bottom:379.441333pt;}
.y3b_c00015{bottom:379.686667pt;}
.y3a_c00015{bottom:388.548000pt;}
.y39_c00015{bottom:390.550667pt;}
.y38_c00015{bottom:391.309333pt;}
.y37_c00015{bottom:391.777333pt;}
.y36_c00015{bottom:393.480000pt;}
.y35_c00015{bottom:394.809333pt;}
.y34_c00015{bottom:403.734667pt;}
.y33_c00015{bottom:404.957333pt;}
.y32_c00015{bottom:405.350667pt;}
.y31_c00015{bottom:406.040000pt;}
.y30_c00015{bottom:407.290667pt;}
.y2f_c00015{bottom:407.826667pt;}
.y2e_c00015{bottom:409.448000pt;}
.y2d_c00015{bottom:418.069333pt;}
.y2c_c00015{bottom:418.796000pt;}
.y2b_c00015{bottom:419.696000pt;}
.y2a_c00015{bottom:421.812000pt;}
.y29_c00015{bottom:423.633333pt;}
.y28_c00015{bottom:424.806667pt;}
.y27_c00015{bottom:433.506667pt;}
.y26_c00015{bottom:434.984000pt;}
.y25_c00015{bottom:435.626667pt;}
.y24_c00015{bottom:436.053333pt;}
.y23_c00015{bottom:436.565333pt;}
.y22_c00015{bottom:438.081333pt;}
.y21_c00015{bottom:438.672000pt;}
.y20_c00015{bottom:439.925333pt;}
.y1f_c00015{bottom:449.064000pt;}
.y1e_c00015{bottom:449.444000pt;}
.y1d_c00015{bottom:450.236000pt;}
.y1c_c00015{bottom:450.961333pt;}
.y1b_c00015{bottom:452.704000pt;}
.y1a_c00015{bottom:453.217333pt;}
.y19_c00015{bottom:454.925333pt;}
.y18_c00015{bottom:455.530667pt;}
.y17_c00015{bottom:456.248000pt;}
.y16_c00015{bottom:464.232000pt;}
.y15_c00015{bottom:465.413333pt;}
.y14_c00015{bottom:465.805333pt;}
.y13_c00015{bottom:466.344000pt;}
.y12_c00015{bottom:467.318667pt;}
.y11_c00015{bottom:468.593333pt;}
.y10_c00015{bottom:469.205333pt;}
.yf_c00015{bottom:478.922667pt;}
.ye_c00015{bottom:479.950667pt;}
.yd_c00015{bottom:480.342667pt;}
.yc_c00015{bottom:481.892000pt;}
.yb_c00015{bottom:483.644000pt;}
.ya_c00015{bottom:483.830667pt;}
.y9_c00015{bottom:484.808000pt;}
.y8_c00015{bottom:493.570667pt;}
.y7_c00015{bottom:493.953333pt;}
.y6_c00015{bottom:495.016000pt;}
.y5_c00015{bottom:495.564000pt;}
.y4_c00015{bottom:496.994667pt;}
.y3_c00015{bottom:499.193333pt;}
.y2_c00015{bottom:500.166667pt;}
.y1_c00015{bottom:511.802667pt;}
.h15_c00015{height:19.600000pt;}
.h9_c00015{height:49.466667pt;}
.ha_c00015{height:52.278190pt;}
.h5_c00015{height:53.200000pt;}
.hd_c00015{height:53.210639pt;}
.he_c00015{height:54.144159pt;}
.h7_c00015{height:55.066667pt;}
.h11_c00015{height:55.077679pt;}
.h13_c00015{height:56.011199pt;}
.h2_c00015{height:56.933333pt;}
.h14_c00015{height:56.944719pt;}
.h8_c00015{height:57.866667pt;}
.h3_c00015{height:58.800000pt;}
.hf_c00015{height:58.811759pt;}
.h6_c00015{height:59.733333pt;}
.h12_c00015{height:59.745279pt;}
.h4_c00015{height:60.666667pt;}
.hb_c00015{height:60.678799pt;}
.h10_c00015{height:61.612319pt;}
.hc_c00015{height:62.545839pt;}
.h1_c00015{height:547.333333pt;}
.h0_c00015{height:547.440000pt;}
.w0_c00015{width:340.533333pt;}
.w1_c00015{width:340.666667pt;}
.x0_c00015{left:0.000000pt;}
.x60_c00015{left:40.325813pt;}
.x4a_c00015{left:41.257653pt;}
.x3f_c00015{left:42.341333pt;}
.x26_c00015{left:43.406667pt;}
.xf_c00015{left:44.409333pt;}
.x2_c00015{left:46.052000pt;}
.x2c_c00015{left:51.544000pt;}
.x6f_c00015{left:55.722240pt;}
.x5b_c00015{left:58.630053pt;}
.x4d_c00015{left:61.926453pt;}
.x43_c00015{left:64.088000pt;}
.x59_c00015{left:65.748480pt;}
.x15_c00015{left:67.284000pt;}
.x10_c00015{left:71.013333pt;}
.x5c_c00015{left:73.653893pt;}
.x57_c00015{left:78.812427pt;}
.x3_c00015{left:83.497333pt;}
.x61_c00015{left:84.716480pt;}
.x9_c00015{left:86.050667pt;}
.x68_c00015{left:87.985360pt;}
.x1c_c00015{left:89.949333pt;}
.xa_c00015{left:93.816000pt;}
.x37_c00015{left:96.680000pt;}
.x6d_c00015{left:98.466667pt;}
.x72_c00015{left:99.436747pt;}
.x3c_c00015{left:102.941333pt;}
.x2d_c00015{left:103.984000pt;}
.x27_c00015{left:105.789333pt;}
.x54_c00015{left:108.027520pt;}
.x1d_c00015{left:111.066667pt;}
.x6a_c00015{left:112.175173pt;}
.x4e_c00015{left:113.956667pt;}
.x2e_c00015{left:115.853333pt;}
.x38_c00015{left:118.586667pt;}
.x55_c00015{left:121.729920pt;}
.x11_c00015{left:126.424000pt;}
.x33_c00015{left:128.118667pt;}
.x4f_c00015{left:129.650400pt;}
.x65_c00015{left:130.685360pt;}
.x2f_c00015{left:136.744000pt;}
.x63_c00015{left:140.510853pt;}
.x16_c00015{left:141.921333pt;}
.x69_c00015{left:144.539840pt;}
.x45_c00015{left:148.145333pt;}
.x23_c00015{left:150.922667pt;}
.x34_c00015{left:152.608000pt;}
.x39_c00015{left:153.634667pt;}
.x73_c00015{left:157.060213pt;}
.x17_c00015{left:158.494667pt;}
.x6b_c00015{left:160.181307pt;}
.x46_c00015{left:161.320613pt;}
.x1e_c00015{left:165.224000pt;}
.xb_c00015{left:166.797333pt;}
.x4_c00015{left:168.076000pt;}
.x5a_c00015{left:171.597893pt;}
.x1_c00015{left:174.960000pt;}
.x56_c00015{left:177.171467pt;}
.x50_c00015{left:179.788720pt;}
.x1f_c00015{left:183.524000pt;}
.x6e_c00015{left:186.797333pt;}
.x30_c00015{left:187.725333pt;}
.x12_c00015{left:192.220000pt;}
.x40_c00015{left:193.517333pt;}
.x2a_c00015{left:195.306667pt;}
.x35_c00015{left:196.302667pt;}
.x64_c00015{left:197.551227pt;}
.x20_c00015{left:198.773333pt;}
.x28_c00015{left:201.073333pt;}
.x31_c00015{left:205.716000pt;}
.x13_c00015{left:209.278667pt;}
.x41_c00015{left:211.437333pt;}
.x3d_c00015{left:212.618667pt;}
.x18_c00015{left:214.720000pt;}
.x29_c00015{left:216.201333pt;}
.x47_c00015{left:217.947893pt;}
.x67_c00015{left:219.032800pt;}
.x58_c00015{left:220.082293pt;}
.x21_c00015{left:221.714667pt;}
.x5_c00015{left:223.108000pt;}
.x24_c00015{left:226.517333pt;}
.x32_c00015{left:228.885333pt;}
.x5d_c00015{left:230.170267pt;}
.xc_c00015{left:231.332000pt;}
.x51_c00015{left:233.786800pt;}
.x3a_c00015{left:235.648000pt;}
.x19_c00015{left:238.133333pt;}
.x6_c00015{left:244.189333pt;}
.x4b_c00015{left:246.086400pt;}
.xd_c00015{left:247.654667pt;}
.x5e_c00015{left:248.653760pt;}
.x74_c00015{left:253.787360pt;}
.x3e_c00015{left:255.353333pt;}
.x48_c00015{left:256.602907pt;}
.x25_c00015{left:258.645333pt;}
.x14_c00015{left:260.628000pt;}
.x62_c00015{left:262.760480pt;}
.x1a_c00015{left:263.662667pt;}
.x44_c00015{left:265.738667pt;}
.x2b_c00015{left:266.817333pt;}
.x52_c00015{left:269.176667pt;}
.x70_c00015{left:270.810533pt;}
.x36_c00015{left:272.250667pt;}
.x22_c00015{left:274.486667pt;}
.x1b_c00015{left:275.913333pt;}
.x5f_c00015{left:278.413440pt;}
.x4c_c00015{left:281.772773pt;}
.x66_c00015{left:282.784427pt;}
.x42_c00015{left:283.904000pt;}
.x7_c00015{left:285.086667pt;}
.xe_c00015{left:290.477333pt;}
.x53_c00015{left:291.412667pt;}
.x6c_c00015{left:292.853253pt;}
.x49_c00015{left:295.720560pt;}
.x71_c00015{left:297.445733pt;}
.x8_c00015{left:299.829333pt;}
.x3b_c00015{left:303.129333pt;}
.x75_c00015{left:337.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00016 {
    display:none;
  }
  .loading-indicator_c00016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00016" -> "#page-container .classname_c00016")
 */
.pf_c00016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00016 {overflow:visible;}
  }
}
.c_c00016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00016:after { /* webkit #35443 */
  content: '';
}
.t_c00016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00016 { /* info for Javascript */
  display:none;
}
.l_c00016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00016:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00016 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00016.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00016{transform:matrix(0.021673,0.001085,-0.012497,0.249687,0,0);-ms-transform:matrix(0.021673,0.001085,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.021673,0.001085,-0.012497,0.249687,0,0);}
.m0_c00016{transform:matrix(0.098585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098585,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{transform:matrix(0.123965,0.006204,-0.012497,0.249687,0,0);-ms-transform:matrix(0.123965,0.006204,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.123965,0.006204,-0.012497,0.249687,0,0);}
.mab_c00016{transform:matrix(0.141078,0.007061,-0.012497,0.249687,0,0);-ms-transform:matrix(0.141078,0.007061,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.141078,0.007061,-0.012497,0.249687,0,0);}
.m8b_c00016{transform:matrix(0.141803,0.007097,-0.012497,0.249687,0,0);-ms-transform:matrix(0.141803,0.007097,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.141803,0.007097,-0.012497,0.249687,0,0);}
.m7e_c00016{transform:matrix(0.146756,0.007345,-0.012497,0.249687,0,0);-ms-transform:matrix(0.146756,0.007345,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.146756,0.007345,-0.012497,0.249687,0,0);}
.m15_c00016{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.151206,0.007568,-0.012497,0.249687,0,0);-ms-transform:matrix(0.151206,0.007568,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.151206,0.007568,-0.012497,0.249687,0,0);}
.m4f_c00016{transform:matrix(0.151655,0.007590,-0.012497,0.249687,0,0);-ms-transform:matrix(0.151655,0.007590,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.151655,0.007590,-0.012497,0.249687,0,0);}
.m20_c00016{transform:matrix(0.152514,0.007633,-0.012497,0.249687,0,0);-ms-transform:matrix(0.152514,0.007633,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.152514,0.007633,-0.012497,0.249687,0,0);}
.m57_c00016{transform:matrix(0.156869,0.007851,-0.012497,0.249687,0,0);-ms-transform:matrix(0.156869,0.007851,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.156869,0.007851,-0.012497,0.249687,0,0);}
.m7f_c00016{transform:matrix(0.157313,0.007874,-0.012497,0.249687,0,0);-ms-transform:matrix(0.157313,0.007874,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.157313,0.007874,-0.012497,0.249687,0,0);}
.m1a_c00016{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.mcf_c00016{transform:matrix(0.158856,0.007951,-0.012497,0.249687,0,0);-ms-transform:matrix(0.158856,0.007951,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.158856,0.007951,-0.012497,0.249687,0,0);}
.mad_c00016{transform:matrix(0.159026,0.007959,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159026,0.007959,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159026,0.007959,-0.012497,0.249687,0,0);}
.m6a_c00016{transform:matrix(0.159316,0.007974,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159316,0.007974,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159316,0.007974,-0.012497,0.249687,0,0);}
.m9e_c00016{transform:matrix(0.159480,0.007982,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159480,0.007982,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159480,0.007982,-0.012497,0.249687,0,0);}
.m66_c00016{transform:matrix(0.161568,0.008086,-0.012497,0.249687,0,0);-ms-transform:matrix(0.161568,0.008086,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.161568,0.008086,-0.012497,0.249687,0,0);}
.m60_c00016{transform:matrix(0.161957,0.008106,-0.012497,0.249687,0,0);-ms-transform:matrix(0.161957,0.008106,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.161957,0.008106,-0.012497,0.249687,0,0);}
.mc4_c00016{transform:matrix(0.164329,0.008225,-0.012497,0.249687,0,0);-ms-transform:matrix(0.164329,0.008225,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.164329,0.008225,-0.012497,0.249687,0,0);}
.m5d_c00016{transform:matrix(0.164434,0.008230,-0.012497,0.249687,0,0);-ms-transform:matrix(0.164434,0.008230,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.164434,0.008230,-0.012497,0.249687,0,0);}
.m10_c00016{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m84_c00016{transform:matrix(0.165982,0.008307,-0.012497,0.249687,0,0);-ms-transform:matrix(0.165982,0.008307,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.165982,0.008307,-0.012497,0.249687,0,0);}
.ma8_c00016{transform:matrix(0.166731,0.008345,-0.012497,0.249687,0,0);-ms-transform:matrix(0.166731,0.008345,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.166731,0.008345,-0.012497,0.249687,0,0);}
.m4_c00016{transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);}
.md7_c00016{transform:matrix(0.167231,0.008370,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167231,0.008370,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167231,0.008370,-0.012497,0.249687,0,0);}
.m85_c00016{transform:matrix(0.167675,0.008392,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167675,0.008392,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167675,0.008392,-0.012497,0.249687,0,0);}
.m61_c00016{transform:matrix(0.167735,0.008395,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167735,0.008395,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167735,0.008395,-0.012497,0.249687,0,0);}
.med_c00016{transform:matrix(0.167892,0.009925,-0.014754,0.249564,0,0);-ms-transform:matrix(0.167892,0.009925,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.167892,0.009925,-0.014754,0.249564,0,0);}
.m6_c00016{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.169118,0.008464,-0.012497,0.249687,0,0);-ms-transform:matrix(0.169118,0.008464,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.169118,0.008464,-0.012497,0.249687,0,0);}
.mb_c00016{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m62_c00016{transform:matrix(0.169423,0.008480,-0.012497,0.249687,0,0);-ms-transform:matrix(0.169423,0.008480,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.169423,0.008480,-0.012497,0.249687,0,0);}
.m78_c00016{transform:matrix(0.170951,0.008556,-0.012497,0.249687,0,0);-ms-transform:matrix(0.170951,0.008556,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.170951,0.008556,-0.012497,0.249687,0,0);}
.mcd_c00016{transform:matrix(0.172055,0.008611,-0.012497,0.249687,0,0);-ms-transform:matrix(0.172055,0.008611,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.172055,0.008611,-0.012497,0.249687,0,0);}
.m80_c00016{transform:matrix(0.172060,0.008612,-0.012497,0.249687,0,0);-ms-transform:matrix(0.172060,0.008612,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.172060,0.008612,-0.012497,0.249687,0,0);}
.m8e_c00016{transform:matrix(0.173338,0.008676,-0.012497,0.249687,0,0);-ms-transform:matrix(0.173338,0.008676,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.173338,0.008676,-0.012497,0.249687,0,0);}
.m63_c00016{transform:matrix(0.173478,0.008683,-0.012497,0.249687,0,0);-ms-transform:matrix(0.173478,0.008683,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.173478,0.008683,-0.012497,0.249687,0,0);}
.m16_c00016{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.md1_c00016{transform:matrix(0.174342,0.008726,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174342,0.008726,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174342,0.008726,-0.012497,0.249687,0,0);}
.m7_c00016{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.174856,0.008752,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174856,0.008752,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174856,0.008752,-0.012497,0.249687,0,0);}
.m22_c00016{transform:matrix(0.175336,0.008776,-0.012497,0.249687,0,0);-ms-transform:matrix(0.175336,0.008776,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.175336,0.008776,-0.012497,0.249687,0,0);}
.m26_c00016{transform:matrix(0.175830,0.008800,-0.012497,0.249687,0,0);-ms-transform:matrix(0.175830,0.008800,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.175830,0.008800,-0.012497,0.249687,0,0);}
.md2_c00016{transform:matrix(0.176060,0.008812,-0.012497,0.249687,0,0);-ms-transform:matrix(0.176060,0.008812,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.176060,0.008812,-0.012497,0.249687,0,0);}
.m55_c00016{transform:matrix(0.177008,0.008859,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177008,0.008859,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177008,0.008859,-0.012497,0.249687,0,0);}
.m3b_c00016{transform:matrix(0.177558,0.008887,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177558,0.008887,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177558,0.008887,-0.012497,0.249687,0,0);}
.m93_c00016{transform:matrix(0.177832,0.008901,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177832,0.008901,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177832,0.008901,-0.012497,0.249687,0,0);}
.m97_c00016{transform:matrix(0.178337,0.008926,-0.012497,0.249687,0,0);-ms-transform:matrix(0.178337,0.008926,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.178337,0.008926,-0.012497,0.249687,0,0);}
.mac_c00016{transform:matrix(0.178606,0.008939,-0.012497,0.249687,0,0);-ms-transform:matrix(0.178606,0.008939,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.178606,0.008939,-0.012497,0.249687,0,0);}
.maa_c00016{transform:matrix(0.178756,0.008947,-0.012497,0.249687,0,0);-ms-transform:matrix(0.178756,0.008947,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.178756,0.008947,-0.012497,0.249687,0,0);}
.m87_c00016{transform:matrix(0.178811,0.008950,-0.012497,0.249687,0,0);-ms-transform:matrix(0.178811,0.008950,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.178811,0.008950,-0.012497,0.249687,0,0);}
.m46_c00016{transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);}
.m3_c00016{transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.179655,0.008992,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179655,0.008992,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179655,0.008992,-0.012497,0.249687,0,0);}
.mb2_c00016{transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);}
.m98_c00016{transform:matrix(0.180679,0.009043,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180679,0.009043,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180679,0.009043,-0.012497,0.249687,0,0);}
.m48_c00016{transform:matrix(0.180704,0.009044,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180704,0.009044,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180704,0.009044,-0.012497,0.249687,0,0);}
.m4b_c00016{transform:matrix(0.180844,0.009051,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180844,0.009051,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180844,0.009051,-0.012497,0.249687,0,0);}
.m41_c00016{transform:matrix(0.180849,0.009051,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180849,0.009051,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180849,0.009051,-0.012497,0.249687,0,0);}
.m9a_c00016{transform:matrix(0.180939,0.009056,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180939,0.009056,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180939,0.009056,-0.012497,0.249687,0,0);}
.mf2_c00016{transform:matrix(0.181340,0.009994,-0.013757,0.249621,0,0);-ms-transform:matrix(0.181340,0.009994,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.181340,0.009994,-0.013757,0.249621,0,0);}
.mb0_c00016{transform:matrix(0.181608,0.009089,-0.012497,0.249687,0,0);-ms-transform:matrix(0.181608,0.009089,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.181608,0.009089,-0.012497,0.249687,0,0);}
.ma_c00016{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m65_c00016{transform:matrix(0.182232,0.009121,-0.012497,0.249687,0,0);-ms-transform:matrix(0.182232,0.009121,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.182232,0.009121,-0.012497,0.249687,0,0);}
.mae_c00016{transform:matrix(0.182966,0.009157,-0.012497,0.249687,0,0);-ms-transform:matrix(0.182966,0.009157,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.182966,0.009157,-0.012497,0.249687,0,0);}
.m6b_c00016{transform:matrix(0.183011,0.009160,-0.012497,0.249687,0,0);-ms-transform:matrix(0.183011,0.009160,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.183011,0.009160,-0.012497,0.249687,0,0);}
.me4_c00016{transform:matrix(0.183465,0.009182,-0.012497,0.249687,0,0);-ms-transform:matrix(0.183465,0.009182,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.183465,0.009182,-0.012497,0.249687,0,0);}
.mc6_c00016{transform:matrix(0.183705,0.009194,-0.012497,0.249687,0,0);-ms-transform:matrix(0.183705,0.009194,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.183705,0.009194,-0.012497,0.249687,0,0);}
.m11_c00016{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.184409,0.009230,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184409,0.009230,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184409,0.009230,-0.012497,0.249687,0,0);}
.m58_c00016{transform:matrix(0.184829,0.009251,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184829,0.009251,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184829,0.009251,-0.012497,0.249687,0,0);}
.mee_c00016{transform:matrix(0.184952,0.010934,-0.014754,0.249564,0,0);-ms-transform:matrix(0.184952,0.010934,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.184952,0.010934,-0.014754,0.249564,0,0);}
.mec_c00016{transform:matrix(0.185291,0.010954,-0.014754,0.249564,0,0);-ms-transform:matrix(0.185291,0.010954,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.185291,0.010954,-0.014754,0.249564,0,0);}
.me1_c00016{transform:matrix(0.185638,0.009291,-0.012497,0.249687,0,0);-ms-transform:matrix(0.185638,0.009291,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.185638,0.009291,-0.012497,0.249687,0,0);}
.m59_c00016{transform:matrix(0.186022,0.009310,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186022,0.009310,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186022,0.009310,-0.012497,0.249687,0,0);}
.mda_c00016{transform:matrix(0.186706,0.009345,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186706,0.009345,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186706,0.009345,-0.012497,0.249687,0,0);}
.m19_c00016{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m64_c00016{transform:matrix(0.187061,0.009362,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187061,0.009362,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187061,0.009362,-0.012497,0.249687,0,0);}
.m4a_c00016{transform:matrix(0.187286,0.009374,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187286,0.009374,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187286,0.009374,-0.012497,0.249687,0,0);}
.m76_c00016{transform:matrix(0.187470,0.009383,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187470,0.009383,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187470,0.009383,-0.012497,0.249687,0,0);}
.ma2_c00016{transform:matrix(0.188080,0.009413,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188080,0.009413,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188080,0.009413,-0.012497,0.249687,0,0);}
.m50_c00016{transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);}
.maf_c00016{transform:matrix(0.188779,0.009448,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188779,0.009448,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188779,0.009448,-0.012497,0.249687,0,0);}
.m49_c00016{transform:matrix(0.189018,0.009460,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189018,0.009460,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189018,0.009460,-0.012497,0.249687,0,0);}
.ma0_c00016{transform:matrix(0.189028,0.009461,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189028,0.009461,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189028,0.009461,-0.012497,0.249687,0,0);}
.m8d_c00016{transform:matrix(0.189638,0.009491,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189638,0.009491,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189638,0.009491,-0.012497,0.249687,0,0);}
.m9f_c00016{transform:matrix(0.190057,0.009512,-0.012497,0.249687,0,0);-ms-transform:matrix(0.190057,0.009512,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.190057,0.009512,-0.012497,0.249687,0,0);}
.m86_c00016{transform:matrix(0.190302,0.009525,-0.012497,0.249687,0,0);-ms-transform:matrix(0.190302,0.009525,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.190302,0.009525,-0.012497,0.249687,0,0);}
.ma9_c00016{transform:matrix(0.190816,0.009550,-0.012497,0.249687,0,0);-ms-transform:matrix(0.190816,0.009550,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.190816,0.009550,-0.012497,0.249687,0,0);}
.mcc_c00016{transform:matrix(0.190941,0.009557,-0.012497,0.249687,0,0);-ms-transform:matrix(0.190941,0.009557,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.190941,0.009557,-0.012497,0.249687,0,0);}
.m1e_c00016{transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);}
.m89_c00016{transform:matrix(0.191410,0.009580,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191410,0.009580,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191410,0.009580,-0.012497,0.249687,0,0);}
.m95_c00016{transform:matrix(0.191575,0.009588,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191575,0.009588,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191575,0.009588,-0.012497,0.249687,0,0);}
.m77_c00016{transform:matrix(0.191995,0.009609,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191995,0.009609,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191995,0.009609,-0.012497,0.249687,0,0);}
.mdc_c00016{transform:matrix(0.192010,0.009610,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192010,0.009610,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192010,0.009610,-0.012497,0.249687,0,0);}
.mc5_c00016{transform:matrix(0.192624,0.009641,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192624,0.009641,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192624,0.009641,-0.012497,0.249687,0,0);}
.m4d_c00016{transform:matrix(0.192739,0.009647,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192739,0.009647,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192739,0.009647,-0.012497,0.249687,0,0);}
.mcb_c00016{transform:matrix(0.192774,0.009648,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192774,0.009648,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192774,0.009648,-0.012497,0.249687,0,0);}
.m69_c00016{transform:matrix(0.192804,0.009650,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192804,0.009650,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192804,0.009650,-0.012497,0.249687,0,0);}
.mb3_c00016{transform:matrix(0.192968,0.009658,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192968,0.009658,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192968,0.009658,-0.012497,0.249687,0,0);}
.me5_c00016{transform:matrix(0.193483,0.009684,-0.012497,0.249687,0,0);-ms-transform:matrix(0.193483,0.009684,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.193483,0.009684,-0.012497,0.249687,0,0);}
.mc_c00016{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);}
.me0_c00016{transform:matrix(0.195011,0.009760,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195011,0.009760,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195011,0.009760,-0.012497,0.249687,0,0);}
.m5e_c00016{transform:matrix(0.195256,0.009773,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195256,0.009773,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195256,0.009773,-0.012497,0.249687,0,0);}
.m88_c00016{transform:matrix(0.195470,0.009783,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195470,0.009783,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195470,0.009783,-0.012497,0.249687,0,0);}
.mc8_c00016{transform:matrix(0.195925,0.009806,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195925,0.009806,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195925,0.009806,-0.012497,0.249687,0,0);}
.mca_c00016{transform:matrix(0.195980,0.009809,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195980,0.009809,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195980,0.009809,-0.012497,0.249687,0,0);}
.mb6_c00016{transform:matrix(0.195990,0.009809,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195990,0.009809,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195990,0.009809,-0.012497,0.249687,0,0);}
.m9c_c00016{transform:matrix(0.196254,0.009823,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196254,0.009823,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196254,0.009823,-0.012497,0.249687,0,0);}
.mb8_c00016{transform:matrix(0.196304,0.009825,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196304,0.009825,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196304,0.009825,-0.012497,0.249687,0,0);}
.m5_c00016{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.mf8_c00016{transform:matrix(0.196786,0.009061,-0.011499,0.249735,0,0);-ms-transform:matrix(0.196786,0.009061,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.196786,0.009061,-0.011499,0.249735,0,0);}
.mdd_c00016{transform:matrix(0.197003,0.009860,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197003,0.009860,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197003,0.009860,-0.012497,0.249687,0,0);}
.m52_c00016{transform:matrix(0.197028,0.009861,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197028,0.009861,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197028,0.009861,-0.012497,0.249687,0,0);}
.mdf_c00016{transform:matrix(0.197503,0.009885,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197503,0.009885,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197503,0.009885,-0.012497,0.249687,0,0);}
.mf3_c00016{transform:matrix(0.198044,0.010914,-0.013757,0.249621,0,0);-ms-transform:matrix(0.198044,0.010914,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.198044,0.010914,-0.013757,0.249621,0,0);}
.mf_c00016{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.m90_c00016{transform:matrix(0.198686,0.009944,-0.012497,0.249687,0,0);-ms-transform:matrix(0.198686,0.009944,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.198686,0.009944,-0.012497,0.249687,0,0);}
.mb5_c00016{transform:matrix(0.199560,0.009988,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199560,0.009988,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199560,0.009988,-0.012497,0.249687,0,0);}
.m81_c00016{transform:matrix(0.200075,0.010014,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200075,0.010014,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200075,0.010014,-0.012497,0.249687,0,0);}
.mbb_c00016{transform:matrix(0.200234,0.010022,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200234,0.010022,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200234,0.010022,-0.012497,0.249687,0,0);}
.m21_c00016{transform:matrix(0.200294,0.010025,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200294,0.010025,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200294,0.010025,-0.012497,0.249687,0,0);}
.m3f_c00016{transform:matrix(0.200789,0.010049,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200789,0.010049,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200789,0.010049,-0.012497,0.249687,0,0);}
.m83_c00016{transform:matrix(0.200814,0.010051,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200814,0.010051,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200814,0.010051,-0.012497,0.249687,0,0);}
.mc2_c00016{transform:matrix(0.201033,0.010062,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201033,0.010062,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201033,0.010062,-0.012497,0.249687,0,0);}
.m23_c00016{transform:matrix(0.201048,0.010062,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201048,0.010062,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201048,0.010062,-0.012497,0.249687,0,0);}
.m7d_c00016{transform:matrix(0.201303,0.010075,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201303,0.010075,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201303,0.010075,-0.012497,0.249687,0,0);}
.m17_c00016{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m54_c00016{transform:matrix(0.202187,0.010119,-0.012497,0.249687,0,0);-ms-transform:matrix(0.202187,0.010119,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.202187,0.010119,-0.012497,0.249687,0,0);}
.m67_c00016{transform:matrix(0.202556,0.010138,-0.012497,0.249687,0,0);-ms-transform:matrix(0.202556,0.010138,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.202556,0.010138,-0.012497,0.249687,0,0);}
.m8a_c00016{transform:matrix(0.203066,0.010163,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203066,0.010163,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203066,0.010163,-0.012497,0.249687,0,0);}
.m92_c00016{transform:matrix(0.203405,0.010180,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203405,0.010180,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203405,0.010180,-0.012497,0.249687,0,0);}
.mc7_c00016{transform:matrix(0.203955,0.010208,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203955,0.010208,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203955,0.010208,-0.012497,0.249687,0,0);}
.m12_c00016{transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);}
.mbf_c00016{transform:matrix(0.204284,0.010224,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204284,0.010224,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204284,0.010224,-0.012497,0.249687,0,0);}
.m33_c00016{transform:matrix(0.204324,0.010226,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204324,0.010226,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204324,0.010226,-0.012497,0.249687,0,0);}
.m44_c00016{transform:matrix(0.204609,0.010241,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204609,0.010241,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204609,0.010241,-0.012497,0.249687,0,0);}
.m3c_c00016{transform:matrix(0.204819,0.010251,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204819,0.010251,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204819,0.010251,-0.012497,0.249687,0,0);}
.mef_c00016{transform:matrix(0.204942,0.012116,-0.014754,0.249564,0,0);-ms-transform:matrix(0.204942,0.012116,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.204942,0.012116,-0.014754,0.249564,0,0);}
.md9_c00016{transform:matrix(0.205103,0.010265,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205103,0.010265,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205103,0.010265,-0.012497,0.249687,0,0);}
.mb9_c00016{transform:matrix(0.205123,0.010266,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205123,0.010266,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205123,0.010266,-0.012497,0.249687,0,0);}
.m43_c00016{transform:matrix(0.205198,0.010270,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205198,0.010270,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205198,0.010270,-0.012497,0.249687,0,0);}
.m14_c00016{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.mc9_c00016{transform:matrix(0.205333,0.010277,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205333,0.010277,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205333,0.010277,-0.012497,0.249687,0,0);}
.m91_c00016{transform:matrix(0.205383,0.010279,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205383,0.010279,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205383,0.010279,-0.012497,0.249687,0,0);}
.m8c_c00016{transform:matrix(0.205468,0.010284,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205468,0.010284,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205468,0.010284,-0.012497,0.249687,0,0);}
.m2a_c00016{transform:matrix(0.205488,0.010285,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205488,0.010285,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205488,0.010285,-0.012497,0.249687,0,0);}
.m4c_c00016{transform:matrix(0.205812,0.010301,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205812,0.010301,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205812,0.010301,-0.012497,0.249687,0,0);}
.m13_c00016{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.mc3_c00016{transform:matrix(0.205817,0.010301,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205817,0.010301,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205817,0.010301,-0.012497,0.249687,0,0);}
.mc0_c00016{transform:matrix(0.206032,0.010312,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206032,0.010312,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206032,0.010312,-0.012497,0.249687,0,0);}
.m1c_c00016{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m75_c00016{transform:matrix(0.206252,0.010323,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206252,0.010323,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206252,0.010323,-0.012497,0.249687,0,0);}
.m40_c00016{transform:matrix(0.206302,0.010325,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206302,0.010325,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206302,0.010325,-0.012497,0.249687,0,0);}
.m99_c00016{transform:matrix(0.206412,0.010331,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206412,0.010331,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206412,0.010331,-0.012497,0.249687,0,0);}
.mde_c00016{transform:matrix(0.206487,0.010335,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206487,0.010335,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206487,0.010335,-0.012497,0.249687,0,0);}
.m42_c00016{transform:matrix(0.206721,0.010346,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206721,0.010346,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206721,0.010346,-0.012497,0.249687,0,0);}
.m9d_c00016{transform:matrix(0.206896,0.010355,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206896,0.010355,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206896,0.010355,-0.012497,0.249687,0,0);}
.m9b_c00016{transform:matrix(0.206911,0.010356,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206911,0.010356,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206911,0.010356,-0.012497,0.249687,0,0);}
.me9_c00016{transform:matrix(0.207558,0.012270,-0.014754,0.249564,0,0);-ms-transform:matrix(0.207558,0.012270,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.207558,0.012270,-0.014754,0.249564,0,0);}
.mb7_c00016{transform:matrix(0.207970,0.010409,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207970,0.010409,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207970,0.010409,-0.012497,0.249687,0,0);}
.m1f_c00016{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(0.208409,0.010431,-0.012497,0.249687,0,0);-ms-transform:matrix(0.208409,0.010431,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.208409,0.010431,-0.012497,0.249687,0,0);}
.m5a_c00016{transform:matrix(0.208479,0.010434,-0.012497,0.249687,0,0);-ms-transform:matrix(0.208479,0.010434,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.208479,0.010434,-0.012497,0.249687,0,0);}
.ma5_c00016{transform:matrix(0.209478,0.010484,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209478,0.010484,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209478,0.010484,-0.012497,0.249687,0,0);}
.mba_c00016{transform:matrix(0.209483,0.010485,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209483,0.010485,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209483,0.010485,-0.012497,0.249687,0,0);}
.mf7_c00016{transform:matrix(0.210322,0.009685,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210322,0.009685,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210322,0.009685,-0.011499,0.249735,0,0);}
.mf4_c00016{transform:matrix(0.210487,0.009692,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210487,0.009692,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210487,0.009692,-0.011499,0.249735,0,0);}
.m72_c00016{transform:matrix(0.210601,0.010541,-0.012497,0.249687,0,0);-ms-transform:matrix(0.210601,0.010541,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.210601,0.010541,-0.012497,0.249687,0,0);}
.m56_c00016{transform:matrix(0.210776,0.010549,-0.012497,0.249687,0,0);-ms-transform:matrix(0.210776,0.010549,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.210776,0.010549,-0.012497,0.249687,0,0);}
.md0_c00016{transform:matrix(0.210916,0.010556,-0.012497,0.249687,0,0);-ms-transform:matrix(0.210916,0.010556,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.210916,0.010556,-0.012497,0.249687,0,0);}
.m51_c00016{transform:matrix(0.211860,0.010604,-0.012497,0.249687,0,0);-ms-transform:matrix(0.211860,0.010604,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.211860,0.010604,-0.012497,0.249687,0,0);}
.mce_c00016{transform:matrix(0.212100,0.010616,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212100,0.010616,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212100,0.010616,-0.012497,0.249687,0,0);}
.me3_c00016{transform:matrix(0.212199,0.010621,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212199,0.010621,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212199,0.010621,-0.012497,0.249687,0,0);}
.m3e_c00016{transform:matrix(0.212674,0.010644,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212674,0.010644,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212674,0.010644,-0.012497,0.249687,0,0);}
.ma1_c00016{transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);}
.m34_c00016{transform:matrix(0.213078,0.010665,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213078,0.010665,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213078,0.010665,-0.012497,0.249687,0,0);}
.m2f_c00016{transform:matrix(0.213802,0.010701,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213802,0.010701,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213802,0.010701,-0.012497,0.249687,0,0);}
.md5_c00016{transform:matrix(0.215216,0.010772,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215216,0.010772,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215216,0.010772,-0.012497,0.249687,0,0);}
.m6c_c00016{transform:matrix(0.215700,0.010796,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215700,0.010796,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215700,0.010796,-0.012497,0.249687,0,0);}
.mea_c00016{transform:matrix(0.216317,0.012788,-0.014754,0.249564,0,0);-ms-transform:matrix(0.216317,0.012788,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.216317,0.012788,-0.014754,0.249564,0,0);}
.mf5_c00016{transform:matrix(0.217025,0.009993,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217025,0.009993,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217025,0.009993,-0.011499,0.249735,0,0);}
.md3_c00016{transform:matrix(0.217663,0.010894,-0.012497,0.249687,0,0);-ms-transform:matrix(0.217663,0.010894,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.217663,0.010894,-0.012497,0.249687,0,0);}
.m79_c00016{transform:matrix(0.217922,0.010907,-0.012497,0.249687,0,0);-ms-transform:matrix(0.217922,0.010907,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.217922,0.010907,-0.012497,0.249687,0,0);}
.me8_c00016{transform:matrix(0.218089,0.012893,-0.014754,0.249564,0,0);-ms-transform:matrix(0.218089,0.012893,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.218089,0.012893,-0.014754,0.249564,0,0);}
.me7_c00016{transform:matrix(0.218513,0.012918,-0.014754,0.249564,0,0);-ms-transform:matrix(0.218513,0.012918,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.218513,0.012918,-0.014754,0.249564,0,0);}
.m6f_c00016{transform:matrix(0.218951,0.010959,-0.012497,0.249687,0,0);-ms-transform:matrix(0.218951,0.010959,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.218951,0.010959,-0.012497,0.249687,0,0);}
.m18_c00016{transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.220519,0.011037,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220519,0.011037,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220519,0.011037,-0.012497,0.249687,0,0);}
.mc1_c00016{transform:matrix(0.220569,0.011039,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220569,0.011039,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220569,0.011039,-0.012497,0.249687,0,0);}
.m3d_c00016{transform:matrix(0.221128,0.011067,-0.012497,0.249687,0,0);-ms-transform:matrix(0.221128,0.011067,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.221128,0.011067,-0.012497,0.249687,0,0);}
.mf9_c00016{transform:matrix(0.221860,0.010216,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221860,0.010216,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221860,0.010216,-0.011499,0.249735,0,0);}
.mdb_c00016{transform:matrix(0.223360,0.011179,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223360,0.011179,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223360,0.011179,-0.012497,0.249687,0,0);}
.m47_c00016{transform:matrix(0.223835,0.011203,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223835,0.011203,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223835,0.011203,-0.012497,0.249687,0,0);}
.m27_c00016{transform:matrix(0.224754,0.011249,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224754,0.011249,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224754,0.011249,-0.012497,0.249687,0,0);}
.me_c00016{transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);}
.md6_c00016{transform:matrix(0.225108,0.011267,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225108,0.011267,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225108,0.011267,-0.012497,0.249687,0,0);}
.ma4_c00016{transform:matrix(0.226007,0.011312,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226007,0.011312,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226007,0.011312,-0.012497,0.249687,0,0);}
.m9_c00016{transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);}
.m35_c00016{transform:matrix(0.226252,0.011324,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226252,0.011324,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226252,0.011324,-0.012497,0.249687,0,0);}
.ma6_c00016{transform:matrix(0.226312,0.011327,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226312,0.011327,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226312,0.011327,-0.012497,0.249687,0,0);}
.m1b_c00016{transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{transform:matrix(0.227001,0.011361,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227001,0.011361,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227001,0.011361,-0.012497,0.249687,0,0);}
.m36_c00016{transform:matrix(0.227435,0.011383,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227435,0.011383,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227435,0.011383,-0.012497,0.249687,0,0);}
.m32_c00016{transform:matrix(0.229163,0.011470,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229163,0.011470,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229163,0.011470,-0.012497,0.249687,0,0);}
.ma3_c00016{transform:matrix(0.229568,0.011490,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229568,0.011490,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229568,0.011490,-0.012497,0.249687,0,0);}
.m5f_c00016{transform:matrix(0.229707,0.011497,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229707,0.011497,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229707,0.011497,-0.012497,0.249687,0,0);}
.m68_c00016{transform:matrix(0.231555,0.011589,-0.012497,0.249687,0,0);-ms-transform:matrix(0.231555,0.011589,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.231555,0.011589,-0.012497,0.249687,0,0);}
.m8f_c00016{transform:matrix(0.231835,0.011603,-0.012497,0.249687,0,0);-ms-transform:matrix(0.231835,0.011603,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.231835,0.011603,-0.012497,0.249687,0,0);}
.md4_c00016{transform:matrix(0.232349,0.011629,-0.012497,0.249687,0,0);-ms-transform:matrix(0.232349,0.011629,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.232349,0.011629,-0.012497,0.249687,0,0);}
.meb_c00016{transform:matrix(0.236956,0.014008,-0.014754,0.249564,0,0);-ms-transform:matrix(0.236956,0.014008,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.236956,0.014008,-0.014754,0.249564,0,0);}
.m94_c00016{transform:matrix(0.237862,0.011905,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237862,0.011905,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237862,0.011905,-0.012497,0.249687,0,0);}
.m71_c00016{transform:matrix(0.239865,0.012005,-0.012497,0.249687,0,0);-ms-transform:matrix(0.239865,0.012005,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.239865,0.012005,-0.012497,0.249687,0,0);}
.m53_c00016{transform:matrix(0.241603,0.012092,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241603,0.012092,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241603,0.012092,-0.012497,0.249687,0,0);}
.m45_c00016{transform:matrix(0.241892,0.012107,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241892,0.012107,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241892,0.012107,-0.012497,0.249687,0,0);}
.mf6_c00016{transform:matrix(0.242163,0.011151,-0.011499,0.249735,0,0);-ms-transform:matrix(0.242163,0.011151,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.242163,0.011151,-0.011499,0.249735,0,0);}
.m30_c00016{transform:matrix(0.242611,0.012143,-0.012497,0.249687,0,0);-ms-transform:matrix(0.242611,0.012143,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.242611,0.012143,-0.012497,0.249687,0,0);}
.mb4_c00016{transform:matrix(0.242986,0.012161,-0.012497,0.249687,0,0);-ms-transform:matrix(0.242986,0.012161,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.242986,0.012161,-0.012497,0.249687,0,0);}
.md_c00016{transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);}
.m70_c00016{transform:matrix(0.244599,0.012242,-0.012497,0.249687,0,0);-ms-transform:matrix(0.244599,0.012242,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.244599,0.012242,-0.012497,0.249687,0,0);}
.m5c_c00016{transform:matrix(0.244844,0.012254,-0.012497,0.249687,0,0);-ms-transform:matrix(0.244844,0.012254,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.244844,0.012254,-0.012497,0.249687,0,0);}
.m39_c00016{transform:matrix(0.246601,0.012342,-0.012497,0.249687,0,0);-ms-transform:matrix(0.246601,0.012342,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.246601,0.012342,-0.012497,0.249687,0,0);}
.m2d_c00016{transform:matrix(0.246821,0.012353,-0.012497,0.249687,0,0);-ms-transform:matrix(0.246821,0.012353,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.246821,0.012353,-0.012497,0.249687,0,0);}
.mf1_c00016{transform:matrix(0.248741,0.019959,-0.019996,0.249199,0,0);-ms-transform:matrix(0.248741,0.019959,-0.019996,0.249199,0,0);-webkit-transform:matrix(0.248741,0.019959,-0.019996,0.249199,0,0);}
.m29_c00016{transform:matrix(0.248883,0.012457,-0.012497,0.249687,0,0);-ms-transform:matrix(0.248883,0.012457,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.248883,0.012457,-0.012497,0.249687,0,0);}
.md8_c00016{transform:matrix(0.250941,0.012560,-0.012497,0.249687,0,0);-ms-transform:matrix(0.250941,0.012560,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.250941,0.012560,-0.012497,0.249687,0,0);}
.me6_c00016{transform:matrix(0.250997,0.014838,-0.014754,0.249564,0,0);-ms-transform:matrix(0.250997,0.014838,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.250997,0.014838,-0.014754,0.249564,0,0);}
.m6e_c00016{transform:matrix(0.252454,0.012635,-0.012497,0.249687,0,0);-ms-transform:matrix(0.252454,0.012635,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.252454,0.012635,-0.012497,0.249687,0,0);}
.m6d_c00016{transform:matrix(0.252719,0.012649,-0.012497,0.249687,0,0);-ms-transform:matrix(0.252719,0.012649,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.252719,0.012649,-0.012497,0.249687,0,0);}
.m82_c00016{transform:matrix(0.254936,0.012760,-0.012497,0.249687,0,0);-ms-transform:matrix(0.254936,0.012760,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.254936,0.012760,-0.012497,0.249687,0,0);}
.ma7_c00016{transform:matrix(0.255900,0.012808,-0.012497,0.249687,0,0);-ms-transform:matrix(0.255900,0.012808,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.255900,0.012808,-0.012497,0.249687,0,0);}
.m2e_c00016{transform:matrix(0.256544,0.012840,-0.012497,0.249687,0,0);-ms-transform:matrix(0.256544,0.012840,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.256544,0.012840,-0.012497,0.249687,0,0);}
.m2_c00016{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.mb1_c00016{transform:matrix(0.260804,0.013053,-0.012497,0.249687,0,0);-ms-transform:matrix(0.260804,0.013053,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.260804,0.013053,-0.012497,0.249687,0,0);}
.mbc_c00016{transform:matrix(0.261628,0.013094,-0.012497,0.249687,0,0);-ms-transform:matrix(0.261628,0.013094,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.261628,0.013094,-0.012497,0.249687,0,0);}
.mbe_c00016{transform:matrix(0.267735,0.013400,-0.012497,0.249687,0,0);-ms-transform:matrix(0.267735,0.013400,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.267735,0.013400,-0.012497,0.249687,0,0);}
.mf0_c00016{transform:matrix(0.267799,0.021488,-0.019996,0.249199,0,0);-ms-transform:matrix(0.267799,0.021488,-0.019996,0.249199,0,0);-webkit-transform:matrix(0.267799,0.021488,-0.019996,0.249199,0,0);}
.m7c_c00016{transform:matrix(0.276888,0.013858,-0.012497,0.249687,0,0);-ms-transform:matrix(0.276888,0.013858,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.276888,0.013858,-0.012497,0.249687,0,0);}
.m73_c00016{transform:matrix(0.278471,0.013938,-0.012497,0.249687,0,0);-ms-transform:matrix(0.278471,0.013938,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.278471,0.013938,-0.012497,0.249687,0,0);}
.mbd_c00016{transform:matrix(0.284754,0.014252,-0.012497,0.249687,0,0);-ms-transform:matrix(0.284754,0.014252,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.284754,0.014252,-0.012497,0.249687,0,0);}
.me2_c00016{transform:matrix(0.292344,0.014632,-0.012497,0.249687,0,0);-ms-transform:matrix(0.292344,0.014632,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.292344,0.014632,-0.012497,0.249687,0,0);}
.m5b_c00016{transform:matrix(0.329692,0.016501,-0.012497,0.249687,0,0);-ms-transform:matrix(0.329692,0.016501,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.329692,0.016501,-0.012497,0.249687,0,0);}
.m7a_c00016{transform:matrix(0.334891,0.016761,-0.012497,0.249687,0,0);-ms-transform:matrix(0.334891,0.016761,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.334891,0.016761,-0.012497,0.249687,0,0);}
.m7b_c00016{transform:matrix(0.335041,0.016769,-0.012497,0.249687,0,0);-ms-transform:matrix(0.335041,0.016769,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.335041,0.016769,-0.012497,0.249687,0,0);}
.m1_c00016{transform:matrix(0.358660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358660,0.000000,0.000000,0.250000,0,0);}
.m96_c00016{transform:matrix(0.365747,0.018306,-0.012497,0.249687,0,0);-ms-transform:matrix(0.365747,0.018306,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.365747,0.018306,-0.012497,0.249687,0,0);}
.m38_c00016{transform:matrix(0.620898,0.031076,-0.012497,0.249687,0,0);-ms-transform:matrix(0.620898,0.031076,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.620898,0.031076,-0.012497,0.249687,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:0.000000px;}
.fc0_c00016{color:transparent;}
.fs13_c00016{font-size:53.560950px;}
.fs16_c00016{font-size:54.603194px;}
.fsb_c00016{font-size:55.663939px;}
.fs11_c00016{font-size:57.735127px;}
.fs6_c00016{font-size:57.764465px;}
.fs9_c00016{font-size:58.814728px;}
.fs15_c00016{font-size:59.853501px;}
.fs5_c00016{font-size:59.864991px;}
.fs2_c00016{font-size:60.900000px;}
.fse_c00016{font-size:60.915254px;}
.fsd_c00016{font-size:61.965517px;}
.fs3_c00016{font-size:63.000000px;}
.fsf_c00016{font-size:63.015780px;}
.fs14_c00016{font-size:64.018896px;}
.fs8_c00016{font-size:64.066043px;}
.fs12_c00016{font-size:65.083235px;}
.fs7_c00016{font-size:65.116306px;}
.fsc_c00016{font-size:66.166569px;}
.fs1_c00016{font-size:67.200000px;}
.fsa_c00016{font-size:67.216831px;}
.fs4_c00016{font-size:68.267094px;}
.fs10_c00016{font-size:71.417883px;}
.fs0_c00016{font-size:124.950000px;}
.y0_c00016{bottom:0.000000px;}
.yfa_c00016{bottom:25.277619px;}
.yf9_c00016{bottom:28.130997px;}
.yf8_c00016{bottom:30.047361px;}
.yf7_c00016{bottom:32.965638px;}
.yf2_c00016{bottom:37.716180px;}
.yf1_c00016{bottom:42.481500px;}
.yf6_c00016{bottom:42.942228px;}
.yf5_c00016{bottom:50.248500px;}
.yf0_c00016{bottom:55.219497px;}
.yef_c00016{bottom:56.268372px;}
.yee_c00016{bottom:56.979521px;}
.yed_c00016{bottom:59.166258px;}
.yec_c00016{bottom:60.765390px;}
.yeb_c00016{bottom:62.859831px;}
.yea_c00016{bottom:66.359298px;}
.ye9_c00016{bottom:67.528649px;}
.ye8_c00016{bottom:70.417288px;}
.ye6_c00016{bottom:75.186080px;}
.ye7_c00016{bottom:75.355500px;}
.ye5_c00016{bottom:76.455530px;}
.ye4_c00016{bottom:80.034605px;}
.ye3_c00016{bottom:80.611655px;}
.ye2_c00016{bottom:82.860680px;}
.ye1_c00016{bottom:86.146505px;}
.ye0_c00016{bottom:89.314355px;}
.ydf_c00016{bottom:91.723401px;}
.yde_c00016{bottom:94.427301px;}
.ydd_c00016{bottom:96.222878px;}
.ydc_c00016{bottom:96.820904px;}
.ydb_c00016{bottom:100.333320px;}
.yda_c00016{bottom:101.972997px;}
.yd9_c00016{bottom:106.096112px;}
.yd8_c00016{bottom:107.414468px;}
.yd7_c00016{bottom:110.788544px;}
.yd6_c00016{bottom:114.865844px;}
.yd5_c00016{bottom:117.433694px;}
.yd4_c00016{bottom:120.948719px;}
.yd3_c00016{bottom:122.478419px;}
.yd2_c00016{bottom:123.517319px;}
.yd1_c00016{bottom:124.415969px;}
.yd0_c00016{bottom:127.584938px;}
.ycf_c00016{bottom:131.482295px;}
.yce_c00016{bottom:132.725483px;}
.ycd_c00016{bottom:135.441984px;}
.ycc_c00016{bottom:137.640252px;}
.ycb_c00016{bottom:138.992202px;}
.yca_c00016{bottom:143.498427px;}
.yc9_c00016{bottom:145.104504px;}
.yc8_c00016{bottom:147.750447px;}
.yc7_c00016{bottom:150.511073px;}
.yc6_c00016{bottom:155.260451px;}
.yc5_c00016{bottom:156.012524px;}
.yc4_c00016{bottom:160.404321px;}
.yc3_c00016{bottom:163.049606px;}
.yc2_c00016{bottom:167.619396px;}
.yc1_c00016{bottom:169.959569px;}
.yc0_c00016{bottom:170.632272px;}
.ybf_c00016{bottom:171.712992px;}
.ybe_c00016{bottom:173.833406px;}
.ybd_c00016{bottom:178.564271px;}
.ybc_c00016{bottom:180.333257px;}
.ybb_c00016{bottom:181.937586px;}
.yba_c00016{bottom:183.495257px;}
.yb9_c00016{bottom:185.618910px;}
.yb8_c00016{bottom:186.141009px;}
.yb7_c00016{bottom:188.685942px;}
.yb6_c00016{bottom:194.447603px;}
.yb5_c00016{bottom:197.528450px;}
.yb4_c00016{bottom:198.977198px;}
.yb3_c00016{bottom:200.564078px;}
.yb2_c00016{bottom:204.294645px;}
.yb1_c00016{bottom:207.957347px;}
.yb0_c00016{bottom:210.292935px;}
.yaf_c00016{bottom:212.935215px;}
.yae_c00016{bottom:214.984146px;}
.yad_c00016{bottom:216.148622px;}
.yac_c00016{bottom:218.433402px;}
.yab_c00016{bottom:222.865203px;}
.yaa_c00016{bottom:225.507321px;}
.ya9_c00016{bottom:226.781210px;}
.ya8_c00016{bottom:228.299756px;}
.ya7_c00016{bottom:232.059120px;}
.ya6_c00016{bottom:233.244575px;}
.ya5_c00016{bottom:235.817735px;}
.ya4_c00016{bottom:237.142523px;}
.ya3_c00016{bottom:239.545679px;}
.ya2_c00016{bottom:240.267540px;}
.ya1_c00016{bottom:241.794953px;}
.ya0_c00016{bottom:242.858697px;}
.y9f_c00016{bottom:244.062225px;}
.yf4_c00016{bottom:245.712690px;}
.yf3_c00016{bottom:249.510000px;}
.y9e_c00016{bottom:250.755171px;}
.y9d_c00016{bottom:251.625317px;}
.y9c_c00016{bottom:252.605628px;}
.y9b_c00016{bottom:254.247230px;}
.y9a_c00016{bottom:259.027221px;}
.y99_c00016{bottom:259.963586px;}
.y98_c00016{bottom:264.849591px;}
.y97_c00016{bottom:270.181563px;}
.y96_c00016{bottom:273.303192px;}
.y95_c00016{bottom:273.862191px;}
.y94_c00016{bottom:275.147070px;}
.y93_c00016{bottom:276.079734px;}
.y92_c00016{bottom:278.071967px;}
.y91_c00016{bottom:281.068221px;}
.y90_c00016{bottom:282.583992px;}
.y8f_c00016{bottom:283.367267px;}
.y8e_c00016{bottom:284.980920px;}
.y8d_c00016{bottom:285.999934px;}
.y8c_c00016{bottom:287.450003px;}
.y8b_c00016{bottom:290.478171px;}
.y8a_c00016{bottom:293.297751px;}
.y89_c00016{bottom:294.551306px;}
.y88_c00016{bottom:296.441285px;}
.y87_c00016{bottom:297.747966px;}
.y86_c00016{bottom:299.281802px;}
.y85_c00016{bottom:302.331926px;}
.y84_c00016{bottom:305.481716px;}
.y83_c00016{bottom:306.162354px;}
.y82_c00016{bottom:308.423323px;}
.y81_c00016{bottom:309.951685px;}
.y80_c00016{bottom:311.565539px;}
.y7f_c00016{bottom:314.397356px;}
.y7e_c00016{bottom:316.514464px;}
.y7d_c00016{bottom:317.503524px;}
.y7c_c00016{bottom:318.757588px;}
.y7b_c00016{bottom:319.346780px;}
.y7a_c00016{bottom:320.930280px;}
.y79_c00016{bottom:321.983697px;}
.y78_c00016{bottom:323.229885px;}
.y77_c00016{bottom:324.547855px;}
.y76_c00016{bottom:326.687543px;}
.y75_c00016{bottom:329.796663px;}
.y74_c00016{bottom:332.509863px;}
.y73_c00016{bottom:333.355132px;}
.y72_c00016{bottom:335.569304px;}
.y71_c00016{bottom:336.215276px;}
.y70_c00016{bottom:338.364564px;}
.y6f_c00016{bottom:341.055338px;}
.y6e_c00016{bottom:341.653978px;}
.y6d_c00016{bottom:343.428975px;}
.y6c_c00016{bottom:347.091597px;}
.y6b_c00016{bottom:348.244545px;}
.y6a_c00016{bottom:350.176026px;}
.y69_c00016{bottom:351.085064px;}
.y68_c00016{bottom:351.671662px;}
.y67_c00016{bottom:353.241253px;}
.y66_c00016{bottom:354.159966px;}
.y65_c00016{bottom:356.113872px;}
.y64_c00016{bottom:357.146590px;}
.y63_c00016{bottom:358.601426px;}
.y62_c00016{bottom:359.756323px;}
.y61_c00016{bottom:360.707437px;}
.y60_c00016{bottom:365.233695px;}
.y5f_c00016{bottom:366.938604px;}
.y5e_c00016{bottom:368.696311px;}
.y5d_c00016{bottom:369.864991px;}
.y5c_c00016{bottom:371.992360px;}
.y5b_c00016{bottom:373.416556px;}
.y5a_c00016{bottom:375.931810px;}
.y59_c00016{bottom:377.129814px;}
.y58_c00016{bottom:377.721466px;}
.y57_c00016{bottom:383.112085px;}
.y56_c00016{bottom:384.148381px;}
.y55_c00016{bottom:388.382142px;}
.y54_c00016{bottom:389.194409px;}
.y53_c00016{bottom:392.823207px;}
.y52_c00016{bottom:394.738071px;}
.y51_c00016{bottom:397.746627px;}
.y50_c00016{bottom:398.705952px;}
.y4f_c00016{bottom:399.877602px;}
.y4e_c00016{bottom:400.458027px;}
.y4d_c00016{bottom:402.988152px;}
.y4c_c00016{bottom:404.958027px;}
.y4b_c00016{bottom:406.326552px;}
.y4a_c00016{bottom:408.266802px;}
.y49_c00016{bottom:409.270602px;}
.y48_c00016{bottom:410.004777px;}
.y47_c00016{bottom:411.490602px;}
.y46_c00016{bottom:415.325947px;}
.y45_c00016{bottom:416.447047px;}
.y44_c00016{bottom:418.861897px;}
.y43_c00016{bottom:420.918772px;}
.y42_c00016{bottom:421.799197px;}
.y41_c00016{bottom:422.852872px;}
.y40_c00016{bottom:424.828147px;}
.y3f_c00016{bottom:426.133298px;}
.y3e_c00016{bottom:428.506972px;}
.y3d_c00016{bottom:431.493954px;}
.y3c_c00016{bottom:432.733380px;}
.y3b_c00016{bottom:434.859213px;}
.y3a_c00016{bottom:435.714346px;}
.y39_c00016{bottom:436.824625px;}
.y38_c00016{bottom:439.720468px;}
.y37_c00016{bottom:440.384280px;}
.y36_c00016{bottom:443.435820px;}
.y35_c00016{bottom:444.465776px;}
.y34_c00016{bottom:445.791750px;}
.y33_c00016{bottom:450.501996px;}
.y32_c00016{bottom:451.417870px;}
.y31_c00016{bottom:454.487962px;}
.y30_c00016{bottom:455.498276px;}
.y2f_c00016{bottom:467.638752px;}
.y2e_c00016{bottom:469.559541px;}
.y2d_c00016{bottom:470.542735px;}
.y2c_c00016{bottom:471.124073px;}
.y2b_c00016{bottom:473.781452px;}
.y2a_c00016{bottom:475.418510px;}
.y29_c00016{bottom:477.545703px;}
.y28_c00016{bottom:479.005533px;}
.y27_c00016{bottom:482.964150px;}
.y26_c00016{bottom:485.026425px;}
.y25_c00016{bottom:486.516975px;}
.y24_c00016{bottom:490.314525px;}
.y23_c00016{bottom:491.695875px;}
.y22_c00016{bottom:494.790900px;}
.y21_c00016{bottom:495.472500px;}
.y20_c00016{bottom:501.679500px;}
.y1f_c00016{bottom:503.098500px;}
.y1e_c00016{bottom:504.832500px;}
.y1d_c00016{bottom:508.387500px;}
.y1c_c00016{bottom:510.361500px;}
.y1b_c00016{bottom:511.230000px;}
.y1a_c00016{bottom:512.479500px;}
.y19_c00016{bottom:516.895500px;}
.y18_c00016{bottom:519.304500px;}
.y17_c00016{bottom:520.029000px;}
.y16_c00016{bottom:520.792500px;}
.y15_c00016{bottom:522.099000px;}
.y14_c00016{bottom:523.284000px;}
.y13_c00016{bottom:526.515000px;}
.y12_c00016{bottom:527.316000px;}
.y11_c00016{bottom:528.063000px;}
.y10_c00016{bottom:529.221000px;}
.yf_c00016{bottom:538.234500px;}
.ye_c00016{bottom:541.204500px;}
.yd_c00016{bottom:543.274500px;}
.yc_c00016{bottom:545.424000px;}
.yb_c00016{bottom:552.298500px;}
.ya_c00016{bottom:554.380500px;}
.y9_c00016{bottom:555.078000px;}
.y8_c00016{bottom:556.393500px;}
.y7_c00016{bottom:557.104500px;}
.y6_c00016{bottom:557.634000px;}
.y5_c00016{bottom:559.183500px;}
.y4_c00016{bottom:561.312000px;}
.y3_c00016{bottom:562.089000px;}
.y2_c00016{bottom:562.971000px;}
.y1_c00016{bottom:569.029500px;}
.h15_c00016{height:53.560950px;}
.h18_c00016{height:54.603194px;}
.hd_c00016{height:55.663939px;}
.h13_c00016{height:57.735127px;}
.h8_c00016{height:57.764465px;}
.hb_c00016{height:58.814728px;}
.h17_c00016{height:59.853501px;}
.h7_c00016{height:59.864991px;}
.h4_c00016{height:60.900000px;}
.h10_c00016{height:60.915254px;}
.hf_c00016{height:61.965517px;}
.h5_c00016{height:63.000000px;}
.h11_c00016{height:63.015780px;}
.h16_c00016{height:64.018896px;}
.ha_c00016{height:64.066043px;}
.h14_c00016{height:65.083235px;}
.h9_c00016{height:65.116306px;}
.he_c00016{height:66.166569px;}
.h3_c00016{height:67.200000px;}
.hc_c00016{height:67.216831px;}
.h6_c00016{height:68.267094px;}
.h12_c00016{height:71.417883px;}
.h2_c00016{height:124.950000px;}
.h1_c00016{height:615.750000px;}
.h0_c00016{height:615.870000px;}
.w0_c00016{width:383.100000px;}
.w1_c00016{width:383.250000px;}
.x0_c00016{left:0.000000px;}
.x80_c00016{left:27.213000px;}
.x79_c00016{left:28.924298px;}
.x65_c00016{left:30.832008px;}
.x36_c00016{left:32.337111px;}
.x2b_c00016{left:33.383880px;}
.x2_c00016{left:35.424000px;}
.x21_c00016{left:36.946583px;}
.x74_c00016{left:39.632458px;}
.x3e_c00016{left:40.920878px;}
.x1b_c00016{left:46.266000px;}
.x77_c00016{left:48.340166px;}
.x7a_c00016{left:50.882856px;}
.x3f_c00016{left:52.291869px;}
.x66_c00016{left:53.552932px;}
.x60_c00016{left:54.661251px;}
.x3_c00016{left:56.943000px;}
.x58_c00016{left:58.180699px;}
.x1c_c00016{left:59.884368px;}
.xf_c00016{left:61.257000px;}
.x16_c00016{left:63.379500px;}
.x22_c00016{left:66.714287px;}
.x75_c00016{left:69.645922px;}
.x3d_c00016{left:71.544530px;}
.x5e_c00016{left:72.871770px;}
.x4_c00016{left:75.910500px;}
.x10_c00016{left:78.225000px;}
.x2c_c00016{left:79.554911px;}
.x17_c00016{left:83.122500px;}
.x4a_c00016{left:84.244986px;}
.xc_c00016{left:86.286000px;}
.x53_c00016{left:88.688368px;}
.x5f_c00016{left:92.286788px;}
.x11_c00016{left:96.430500px;}
.x63_c00016{left:97.933656px;}
.x78_c00016{left:99.660793px;}
.x67_c00016{left:100.699624px;}
.x7f_c00016{left:102.344114px;}
.x6b_c00016{left:103.869498px;}
.x31_c00016{left:106.613587px;}
.x4c_c00016{left:108.281220px;}
.x23_c00016{left:110.086049px;}
.x6e_c00016{left:112.420752px;}
.x59_c00016{left:118.117711px;}
.x7b_c00016{left:119.545815px;}
.x1d_c00016{left:121.722968px;}
.x40_c00016{left:123.631326px;}
.x5_c00016{left:127.818000px;}
.x54_c00016{left:129.750480px;}
.xd_c00016{left:135.586500px;}
.x2d_c00016{left:139.324079px;}
.x55_c00016{left:142.119021px;}
.x24_c00016{left:143.454798px;}
.x32_c00016{left:146.079582px;}
.x1e_c00016{left:149.322340px;}
.x41_c00016{left:151.006221px;}
.x28_c00016{left:152.594309px;}
.x6c_c00016{left:154.374138px;}
.x7d_c00016{left:157.587750px;}
.x4d_c00016{left:159.329883px;}
.x6f_c00016{left:161.128376px;}
.x37_c00016{left:162.857960px;}
.x6_c00016{left:165.621000px;}
.x33_c00016{left:167.132009px;}
.x44_c00016{left:168.517820px;}
.x1_c00016{left:170.640000px;}
.x29_c00016{left:175.541745px;}
.x7_c00016{left:178.537500px;}
.x68_c00016{left:179.762259px;}
.x5a_c00016{left:182.492457px;}
.x34_c00016{left:184.722900px;}
.x7e_c00016{left:186.034044px;}
.x45_c00016{left:187.624071px;}
.x61_c00016{left:189.134584px;}
.x42_c00016{left:191.890242px;}
.x4e_c00016{left:194.479982px;}
.x8_c00016{left:195.877500px;}
.x25_c00016{left:197.629772px;}
.x56_c00016{left:199.348969px;}
.x38_c00016{left:202.216062px;}
.x62_c00016{left:204.929295px;}
.xe_c00016{left:206.314500px;}
.x4f_c00016{left:207.572679px;}
.x18_c00016{left:208.794000px;}
.x72_c00016{left:211.916621px;}
.x5b_c00016{left:213.325747px;}
.x43_c00016{left:214.340018px;}
.x46_c00016{left:220.305161px;}
.x1f_c00016{left:225.197390px;}
.x12_c00016{left:226.510500px;}
.x9_c00016{left:227.964000px;}
.x26_c00016{left:229.519427px;}
.x2e_c00016{left:230.798433px;}
.x47_c00016{left:232.505649px;}
.x81_c00016{left:233.623419px;}
.x50_c00016{left:235.420286px;}
.x64_c00016{left:241.827817px;}
.x13_c00016{left:243.849000px;}
.xa_c00016{left:244.968000px;}
.x19_c00016{left:248.209500px;}
.x48_c00016{left:251.418594px;}
.x39_c00016{left:252.767960px;}
.x20_c00016{left:254.978578px;}
.x70_c00016{left:256.244699px;}
.x51_c00016{left:257.372792px;}
.x14_c00016{left:260.311500px;}
.x3a_c00016{left:264.364851px;}
.x2a_c00016{left:266.016782px;}
.x27_c00016{left:268.677182px;}
.x6d_c00016{left:271.624617px;}
.x35_c00016{left:274.067966px;}
.x69_c00016{left:277.850143px;}
.x1a_c00016{left:280.443000px;}
.x57_c00016{left:282.622317px;}
.x5c_c00016{left:285.928458px;}
.x3b_c00016{left:287.774418px;}
.x2f_c00016{left:289.187558px;}
.x7c_c00016{left:290.235669px;}
.x49_c00016{left:291.630396px;}
.x76_c00016{left:292.852274px;}
.xb_c00016{left:295.743000px;}
.x82_c00016{left:298.396022px;}
.x73_c00016{left:302.274686px;}
.x52_c00016{left:304.354974px;}
.x3c_c00016{left:306.941732px;}
.x6a_c00016{left:308.813178px;}
.x71_c00016{left:311.288580px;}
.x30_c00016{left:313.471048px;}
.x15_c00016{left:315.051000px;}
.x5d_c00016{left:318.134524px;}
.x4b_c00016{left:334.195823px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.fs13_c00016{font-size:47.609733pt;}
.fs16_c00016{font-size:48.536172pt;}
.fsb_c00016{font-size:49.479057pt;}
.fs11_c00016{font-size:51.320113pt;}
.fs6_c00016{font-size:51.346191pt;}
.fs9_c00016{font-size:52.279758pt;}
.fs15_c00016{font-size:53.203112pt;}
.fs5_c00016{font-size:53.213325pt;}
.fs2_c00016{font-size:54.133333pt;}
.fse_c00016{font-size:54.146892pt;}
.fsd_c00016{font-size:55.080459pt;}
.fs3_c00016{font-size:56.000000pt;}
.fsf_c00016{font-size:56.014026pt;}
.fs14_c00016{font-size:56.905685pt;}
.fs8_c00016{font-size:56.947593pt;}
.fs12_c00016{font-size:57.851764pt;}
.fs7_c00016{font-size:57.881160pt;}
.fsc_c00016{font-size:58.814728pt;}
.fs1_c00016{font-size:59.733333pt;}
.fsa_c00016{font-size:59.748295pt;}
.fs4_c00016{font-size:60.681862pt;}
.fs10_c00016{font-size:63.482563pt;}
.fs0_c00016{font-size:111.066667pt;}
.y0_c00016{bottom:0.000000pt;}
.yfa_c00016{bottom:22.468995pt;}
.yf9_c00016{bottom:25.005331pt;}
.yf8_c00016{bottom:26.708765pt;}
.yf7_c00016{bottom:29.302789pt;}
.yf2_c00016{bottom:33.525493pt;}
.yf1_c00016{bottom:37.761333pt;}
.yf6_c00016{bottom:38.170869pt;}
.yf5_c00016{bottom:44.665333pt;}
.yf0_c00016{bottom:49.083997pt;}
.yef_c00016{bottom:50.016331pt;}
.yee_c00016{bottom:50.648463pt;}
.yed_c00016{bottom:52.592229pt;}
.yec_c00016{bottom:54.013680pt;}
.yeb_c00016{bottom:55.875405pt;}
.yea_c00016{bottom:58.986043pt;}
.ye9_c00016{bottom:60.025465pt;}
.ye8_c00016{bottom:62.593145pt;}
.ye6_c00016{bottom:66.832071pt;}
.ye7_c00016{bottom:66.982667pt;}
.ye5_c00016{bottom:67.960471pt;}
.ye4_c00016{bottom:71.141871pt;}
.ye3_c00016{bottom:71.654804pt;}
.ye2_c00016{bottom:73.653937pt;}
.ye1_c00016{bottom:76.574671pt;}
.ye0_c00016{bottom:79.390537pt;}
.ydf_c00016{bottom:81.531912pt;}
.yde_c00016{bottom:83.935379pt;}
.ydd_c00016{bottom:85.531447pt;}
.ydc_c00016{bottom:86.063025pt;}
.ydb_c00016{bottom:89.185173pt;}
.yda_c00016{bottom:90.642664pt;}
.yd9_c00016{bottom:94.307655pt;}
.yd8_c00016{bottom:95.479527pt;}
.yd7_c00016{bottom:98.478705pt;}
.yd6_c00016{bottom:102.102972pt;}
.yd5_c00016{bottom:104.385505pt;}
.yd4_c00016{bottom:107.509972pt;}
.yd3_c00016{bottom:108.869705pt;}
.yd2_c00016{bottom:109.793172pt;}
.yd1_c00016{bottom:110.591972pt;}
.yd0_c00016{bottom:113.408833pt;}
.ycf_c00016{bottom:116.873151pt;}
.yce_c00016{bottom:117.978207pt;}
.ycd_c00016{bottom:120.392875pt;}
.ycc_c00016{bottom:122.346891pt;}
.ycb_c00016{bottom:123.548624pt;}
.yca_c00016{bottom:127.554157pt;}
.yc9_c00016{bottom:128.981781pt;}
.yc8_c00016{bottom:131.333731pt;}
.yc7_c00016{bottom:133.787620pt;}
.yc6_c00016{bottom:138.009289pt;}
.yc5_c00016{bottom:138.677799pt;}
.yc4_c00016{bottom:142.581619pt;}
.yc3_c00016{bottom:144.932983pt;}
.yc2_c00016{bottom:148.995019pt;}
.yc1_c00016{bottom:151.075172pt;}
.yc0_c00016{bottom:151.673131pt;}
.ybf_c00016{bottom:152.633771pt;}
.ybe_c00016{bottom:154.518583pt;}
.ybd_c00016{bottom:158.723796pt;}
.ybc_c00016{bottom:160.296228pt;}
.ybb_c00016{bottom:161.722299pt;}
.yba_c00016{bottom:163.106895pt;}
.yb9_c00016{bottom:164.994587pt;}
.yb8_c00016{bottom:165.458675pt;}
.yb7_c00016{bottom:167.720837pt;}
.yb6_c00016{bottom:172.842313pt;}
.yb5_c00016{bottom:175.580844pt;}
.yb4_c00016{bottom:176.868620pt;}
.yb3_c00016{bottom:178.279180pt;}
.yb2_c00016{bottom:181.595240pt;}
.yb1_c00016{bottom:184.850975pt;}
.yb0_c00016{bottom:186.927053pt;}
.yaf_c00016{bottom:189.275747pt;}
.yae_c00016{bottom:191.097019pt;}
.yad_c00016{bottom:192.132108pt;}
.yac_c00016{bottom:194.163024pt;}
.yab_c00016{bottom:198.102403pt;}
.yaa_c00016{bottom:200.450952pt;}
.ya9_c00016{bottom:201.583297pt;}
.ya8_c00016{bottom:202.933116pt;}
.ya7_c00016{bottom:206.274773pt;}
.ya6_c00016{bottom:207.328511pt;}
.ya5_c00016{bottom:209.615764pt;}
.ya4_c00016{bottom:210.793353pt;}
.ya3_c00016{bottom:212.929492pt;}
.ya2_c00016{bottom:213.571147pt;}
.ya1_c00016{bottom:214.928847pt;}
.ya0_c00016{bottom:215.874397pt;}
.y9f_c00016{bottom:216.944200pt;}
.yf4_c00016{bottom:218.411280pt;}
.yf3_c00016{bottom:221.786667pt;}
.y9e_c00016{bottom:222.893485pt;}
.y9d_c00016{bottom:223.666948pt;}
.y9c_c00016{bottom:224.538336pt;}
.y9b_c00016{bottom:225.997537pt;}
.y9a_c00016{bottom:230.246419pt;}
.y99_c00016{bottom:231.078743pt;}
.y98_c00016{bottom:235.421859pt;}
.y97_c00016{bottom:240.161389pt;}
.y96_c00016{bottom:242.936171pt;}
.y95_c00016{bottom:243.433059pt;}
.y94_c00016{bottom:244.575173pt;}
.y93_c00016{bottom:245.404208pt;}
.y92_c00016{bottom:247.175081pt;}
.y91_c00016{bottom:249.838419pt;}
.y90_c00016{bottom:251.185771pt;}
.y8f_c00016{bottom:251.882015pt;}
.y8e_c00016{bottom:253.316373pt;}
.y8d_c00016{bottom:254.222164pt;}
.y8c_c00016{bottom:255.511113pt;}
.y8b_c00016{bottom:258.202819pt;}
.y8a_c00016{bottom:260.709112pt;}
.y89_c00016{bottom:261.823383pt;}
.y88_c00016{bottom:263.503364pt;}
.y87_c00016{bottom:264.664859pt;}
.y86_c00016{bottom:266.028268pt;}
.y85_c00016{bottom:268.739489pt;}
.y84_c00016{bottom:271.539303pt;}
.y83_c00016{bottom:272.144315pt;}
.y82_c00016{bottom:274.154065pt;}
.y81_c00016{bottom:275.512609pt;}
.y80_c00016{bottom:276.947145pt;}
.y7f_c00016{bottom:279.464316pt;}
.y7e_c00016{bottom:281.346191pt;}
.y7d_c00016{bottom:282.225355pt;}
.y7c_c00016{bottom:283.340079pt;}
.y7b_c00016{bottom:283.863804pt;}
.y7a_c00016{bottom:285.271360pt;}
.y79_c00016{bottom:286.207731pt;}
.y78_c00016{bottom:287.315453pt;}
.y77_c00016{bottom:288.486983pt;}
.y76_c00016{bottom:290.388927pt;}
.y75_c00016{bottom:293.152589pt;}
.y74_c00016{bottom:295.564323pt;}
.y73_c00016{bottom:296.315673pt;}
.y72_c00016{bottom:298.283825pt;}
.y71_c00016{bottom:298.858023pt;}
.y70_c00016{bottom:300.768501pt;}
.y6f_c00016{bottom:303.160300pt;}
.y6e_c00016{bottom:303.692425pt;}
.y6d_c00016{bottom:305.270200pt;}
.y6c_c00016{bottom:308.525864pt;}
.y6b_c00016{bottom:309.550707pt;}
.y6a_c00016{bottom:311.267579pt;}
.y69_c00016{bottom:312.075612pt;}
.y68_c00016{bottom:312.597033pt;}
.y67_c00016{bottom:313.992225pt;}
.y66_c00016{bottom:314.808859pt;}
.y65_c00016{bottom:316.545664pt;}
.y64_c00016{bottom:317.463636pt;}
.y63_c00016{bottom:318.756823pt;}
.y62_c00016{bottom:319.783399pt;}
.y61_c00016{bottom:320.628833pt;}
.y60_c00016{bottom:324.652173pt;}
.y5f_c00016{bottom:326.167648pt;}
.y5e_c00016{bottom:327.730055pt;}
.y5d_c00016{bottom:328.768881pt;}
.y5c_c00016{bottom:330.659876pt;}
.y5b_c00016{bottom:331.925828pt;}
.y5a_c00016{bottom:334.161609pt;}
.y59_c00016{bottom:335.226501pt;}
.y58_c00016{bottom:335.752415pt;}
.y57_c00016{bottom:340.544076pt;}
.y56_c00016{bottom:341.465228pt;}
.y55_c00016{bottom:345.228571pt;}
.y54_c00016{bottom:345.950585pt;}
.y53_c00016{bottom:349.176184pt;}
.y52_c00016{bottom:350.878285pt;}
.y51_c00016{bottom:353.552557pt;}
.y50_c00016{bottom:354.405291pt;}
.y4f_c00016{bottom:355.446757pt;}
.y4e_c00016{bottom:355.962691pt;}
.y4d_c00016{bottom:358.211691pt;}
.y4c_c00016{bottom:359.962691pt;}
.y4b_c00016{bottom:361.179157pt;}
.y4a_c00016{bottom:362.903824pt;}
.y49_c00016{bottom:363.796091pt;}
.y48_c00016{bottom:364.448691pt;}
.y47_c00016{bottom:365.769424pt;}
.y46_c00016{bottom:369.178620pt;}
.y45_c00016{bottom:370.175153pt;}
.y44_c00016{bottom:372.321687pt;}
.y43_c00016{bottom:374.150020pt;}
.y42_c00016{bottom:374.932620pt;}
.y41_c00016{bottom:375.869220pt;}
.y40_c00016{bottom:377.625020pt;}
.y3f_c00016{bottom:378.785153pt;}
.y3e_c00016{bottom:380.895087pt;}
.y3d_c00016{bottom:383.550181pt;}
.y3c_c00016{bottom:384.651893pt;}
.y3b_c00016{bottom:386.541523pt;}
.y3a_c00016{bottom:387.301641pt;}
.y39_c00016{bottom:388.288556pt;}
.y38_c00016{bottom:390.862639pt;}
.y37_c00016{bottom:391.452693pt;}
.y36_c00016{bottom:394.165173pt;}
.y35_c00016{bottom:395.080689pt;}
.y34_c00016{bottom:396.259333pt;}
.y33_c00016{bottom:400.446219pt;}
.y32_c00016{bottom:401.260329pt;}
.y31_c00016{bottom:403.989300pt;}
.y30_c00016{bottom:404.887356pt;}
.y2f_c00016{bottom:415.678891pt;}
.y2e_c00016{bottom:417.386259pt;}
.y2d_c00016{bottom:418.260209pt;}
.y2c_c00016{bottom:418.776953pt;}
.y2b_c00016{bottom:421.139068pt;}
.y2a_c00016{bottom:422.594231pt;}
.y29_c00016{bottom:424.485069pt;}
.y28_c00016{bottom:425.782696pt;}
.y27_c00016{bottom:429.301467pt;}
.y26_c00016{bottom:431.134600pt;}
.y25_c00016{bottom:432.459533pt;}
.y24_c00016{bottom:435.835133pt;}
.y23_c00016{bottom:437.063000pt;}
.y22_c00016{bottom:439.814133pt;}
.y21_c00016{bottom:440.420000pt;}
.y20_c00016{bottom:445.937333pt;}
.y1f_c00016{bottom:447.198667pt;}
.y1e_c00016{bottom:448.740000pt;}
.y1d_c00016{bottom:451.900000pt;}
.y1c_c00016{bottom:453.654667pt;}
.y1b_c00016{bottom:454.426667pt;}
.y1a_c00016{bottom:455.537333pt;}
.y19_c00016{bottom:459.462667pt;}
.y18_c00016{bottom:461.604000pt;}
.y17_c00016{bottom:462.248000pt;}
.y16_c00016{bottom:462.926667pt;}
.y15_c00016{bottom:464.088000pt;}
.y14_c00016{bottom:465.141333pt;}
.y13_c00016{bottom:468.013333pt;}
.y12_c00016{bottom:468.725333pt;}
.y11_c00016{bottom:469.389333pt;}
.y10_c00016{bottom:470.418667pt;}
.yf_c00016{bottom:478.430667pt;}
.ye_c00016{bottom:481.070667pt;}
.yd_c00016{bottom:482.910667pt;}
.yc_c00016{bottom:484.821333pt;}
.yb_c00016{bottom:490.932000pt;}
.ya_c00016{bottom:492.782667pt;}
.y9_c00016{bottom:493.402667pt;}
.y8_c00016{bottom:494.572000pt;}
.y7_c00016{bottom:495.204000pt;}
.y6_c00016{bottom:495.674667pt;}
.y5_c00016{bottom:497.052000pt;}
.y4_c00016{bottom:498.944000pt;}
.y3_c00016{bottom:499.634667pt;}
.y2_c00016{bottom:500.418667pt;}
.y1_c00016{bottom:505.804000pt;}
.h15_c00016{height:47.609733pt;}
.h18_c00016{height:48.536172pt;}
.hd_c00016{height:49.479057pt;}
.h13_c00016{height:51.320113pt;}
.h8_c00016{height:51.346191pt;}
.hb_c00016{height:52.279758pt;}
.h17_c00016{height:53.203112pt;}
.h7_c00016{height:53.213325pt;}
.h4_c00016{height:54.133333pt;}
.h10_c00016{height:54.146892pt;}
.hf_c00016{height:55.080459pt;}
.h5_c00016{height:56.000000pt;}
.h11_c00016{height:56.014026pt;}
.h16_c00016{height:56.905685pt;}
.ha_c00016{height:56.947593pt;}
.h14_c00016{height:57.851764pt;}
.h9_c00016{height:57.881160pt;}
.he_c00016{height:58.814728pt;}
.h3_c00016{height:59.733333pt;}
.hc_c00016{height:59.748295pt;}
.h6_c00016{height:60.681862pt;}
.h12_c00016{height:63.482563pt;}
.h2_c00016{height:111.066667pt;}
.h1_c00016{height:547.333333pt;}
.h0_c00016{height:547.440000pt;}
.w0_c00016{width:340.533333pt;}
.w1_c00016{width:340.666667pt;}
.x0_c00016{left:0.000000pt;}
.x80_c00016{left:24.189333pt;}
.x79_c00016{left:25.710487pt;}
.x65_c00016{left:27.406229pt;}
.x36_c00016{left:28.744099pt;}
.x2b_c00016{left:29.674560pt;}
.x2_c00016{left:31.488000pt;}
.x21_c00016{left:32.841407pt;}
.x74_c00016{left:35.228852pt;}
.x3e_c00016{left:36.374113pt;}
.x1b_c00016{left:41.125333pt;}
.x77_c00016{left:42.969036pt;}
.x7a_c00016{left:45.229205pt;}
.x3f_c00016{left:46.481661pt;}
.x66_c00016{left:47.602607pt;}
.x60_c00016{left:48.587779pt;}
.x3_c00016{left:50.616000pt;}
.x58_c00016{left:51.716177pt;}
.x1c_c00016{left:53.230549pt;}
.xf_c00016{left:54.450667pt;}
.x16_c00016{left:56.337333pt;}
.x22_c00016{left:59.301588pt;}
.x75_c00016{left:61.907487pt;}
.x3d_c00016{left:63.595137pt;}
.x5e_c00016{left:64.774907pt;}
.x4_c00016{left:67.476000pt;}
.x10_c00016{left:69.533333pt;}
.x2c_c00016{left:70.715476pt;}
.x17_c00016{left:73.886667pt;}
.x4a_c00016{left:74.884432pt;}
.xc_c00016{left:76.698667pt;}
.x53_c00016{left:78.834105pt;}
.x5f_c00016{left:82.032700pt;}
.x11_c00016{left:85.716000pt;}
.x63_c00016{left:87.052139pt;}
.x78_c00016{left:88.587372pt;}
.x67_c00016{left:89.510777pt;}
.x7f_c00016{left:90.972545pt;}
.x6b_c00016{left:92.328443pt;}
.x31_c00016{left:94.767633pt;}
.x4c_c00016{left:96.249973pt;}
.x23_c00016{left:97.854265pt;}
.x6e_c00016{left:99.929557pt;}
.x59_c00016{left:104.993521pt;}
.x7b_c00016{left:106.262947pt;}
.x1d_c00016{left:108.198193pt;}
.x40_c00016{left:109.894512pt;}
.x5_c00016{left:113.616000pt;}
.x54_c00016{left:115.333760pt;}
.xd_c00016{left:120.521333pt;}
.x2d_c00016{left:123.843625pt;}
.x55_c00016{left:126.328019pt;}
.x24_c00016{left:127.515376pt;}
.x32_c00016{left:129.848517pt;}
.x1e_c00016{left:132.730969pt;}
.x41_c00016{left:134.227752pt;}
.x28_c00016{left:135.639385pt;}
.x6c_c00016{left:137.221456pt;}
.x7d_c00016{left:140.078000pt;}
.x4d_c00016{left:141.626563pt;}
.x6f_c00016{left:143.225223pt;}
.x37_c00016{left:144.762631pt;}
.x6_c00016{left:147.218667pt;}
.x33_c00016{left:148.561785pt;}
.x44_c00016{left:149.793617pt;}
.x1_c00016{left:151.680000pt;}
.x29_c00016{left:156.037107pt;}
.x7_c00016{left:158.700000pt;}
.x68_c00016{left:159.788675pt;}
.x5a_c00016{left:162.215517pt;}
.x34_c00016{left:164.198133pt;}
.x7e_c00016{left:165.363595pt;}
.x45_c00016{left:166.776952pt;}
.x61_c00016{left:168.119631pt;}
.x42_c00016{left:170.569104pt;}
.x4e_c00016{left:172.871095pt;}
.x8_c00016{left:174.113333pt;}
.x25_c00016{left:175.670908pt;}
.x56_c00016{left:177.199084pt;}
.x38_c00016{left:179.747611pt;}
.x62_c00016{left:182.159373pt;}
.xe_c00016{left:183.390667pt;}
.x4f_c00016{left:184.509048pt;}
.x18_c00016{left:185.594667pt;}
.x72_c00016{left:188.370329pt;}
.x5b_c00016{left:189.622887pt;}
.x43_c00016{left:190.524460pt;}
.x46_c00016{left:195.826809pt;}
.x1f_c00016{left:200.175457pt;}
.x12_c00016{left:201.342667pt;}
.x9_c00016{left:202.634667pt;}
.x26_c00016{left:204.017268pt;}
.x2e_c00016{left:205.154163pt;}
.x47_c00016{left:206.671688pt;}
.x81_c00016{left:207.665261pt;}
.x50_c00016{left:209.262476pt;}
.x64_c00016{left:214.958060pt;}
.x13_c00016{left:216.754667pt;}
.xa_c00016{left:217.749333pt;}
.x19_c00016{left:220.630667pt;}
.x48_c00016{left:223.483195pt;}
.x39_c00016{left:224.682631pt;}
.x20_c00016{left:226.647625pt;}
.x70_c00016{left:227.773065pt;}
.x51_c00016{left:228.775815pt;}
.x14_c00016{left:231.388000pt;}
.x3a_c00016{left:234.990979pt;}
.x2a_c00016{left:236.459361pt;}
.x27_c00016{left:238.824161pt;}
.x6d_c00016{left:241.444104pt;}
.x35_c00016{left:243.615969pt;}
.x69_c00016{left:246.977905pt;}
.x1a_c00016{left:249.282667pt;}
.x57_c00016{left:251.219837pt;}
.x5c_c00016{left:254.158629pt;}
.x3b_c00016{left:255.799483pt;}
.x2f_c00016{left:257.055607pt;}
.x7c_c00016{left:257.987261pt;}
.x49_c00016{left:259.227019pt;}
.x76_c00016{left:260.313132pt;}
.xb_c00016{left:262.882667pt;}
.x82_c00016{left:265.240908pt;}
.x73_c00016{left:268.688609pt;}
.x52_c00016{left:270.537755pt;}
.x3c_c00016{left:272.837095pt;}
.x6a_c00016{left:274.500603pt;}
.x71_c00016{left:276.700960pt;}
.x30_c00016{left:278.640932pt;}
.x15_c00016{left:280.045333pt;}
.x5d_c00016{left:282.786244pt;}
.x4b_c00016{left:297.062953pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00017 {
    display:none;
  }
  .loading-indicator_c00017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00017 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00017 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00017" -> "#page-container .classname_c00017")
 */
.pf_c00017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00017 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00017 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00017 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00017 {overflow:visible;}
  }
}
.c_c00017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00017 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00017:after { /* webkit #35443 */
  content: '';
}
.t_c00017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00017 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00017 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00017 { /* info for Javascript */
  display:none;
}
.l_c00017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00017:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00017 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00017.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00017{transform:matrix(0.006675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006675,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.106980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106980,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.108555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108555,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.117210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117210,0.000000,0.000000,0.250000,0,0);}
.mf6_c00017{transform:matrix(0.131490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00017{transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);}
.ma7_c00017{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.mea_c00017{transform:matrix(0.148730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148730,0.000000,0.000000,0.250000,0,0);}
.ma6_c00017{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.ma2_c00017{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.mf5_c00017{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.ma8_c00017{transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);}
.mce_c00017{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m90_c00017{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.meb_c00017{transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);}
.mc3_c00017{transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);}
.m8c_c00017{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mb9_c00017{transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);}
.m5d_c00017{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.m91_c00017{transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.mf1_c00017{transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);}
.mb3_c00017{transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);}
.mc7_c00017{transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);}
.m8e_c00017{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.mef_c00017{transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);}
.m1a_c00017{transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);}
.me6_c00017{transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);}
.mf2_c00017{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.mee_c00017{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m9b_c00017{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m6a_c00017{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.mcc_c00017{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.md5_c00017{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.me1_c00017{transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);}
.mf3_c00017{transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);}
.mf4_c00017{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);}
.m74_c00017{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mc5_c00017{transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00017{transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);}
.m7d_c00017{transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);}
.mc9_c00017{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);}
.m9d_c00017{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.m8d_c00017{transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);}
.m72_c00017{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.me4_c00017{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.ma9_c00017{transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);}
.m67_c00017{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.mbf_c00017{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.mac_c00017{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.m83_c00017{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.ma5_c00017{transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.mc4_c00017{transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);}
.mda_c00017{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.mf0_c00017{transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);}
.m69_c00017{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.ma0_c00017{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.m9a_c00017{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.mbe_c00017{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.md6_c00017{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m92_c00017{transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);}
.mb1_c00017{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m73_c00017{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.m87_c00017{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m7a_c00017{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.mca_c00017{transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);}
.med_c00017{transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.mae_c00017{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00017{transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);}
.m93_c00017{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m60_c00017{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m3c_c00017{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m75_c00017{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.mab_c00017{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m5c_c00017{transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);}
.mc6_c00017{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00017{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.mcd_c00017{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m96_c00017{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.m2b_c00017{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.mbb_c00017{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m5e_c00017{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m6b_c00017{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);}
.mcf_c00017{transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.mc8_c00017{transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.md7_c00017{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.m89_c00017{transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);}
.mb5_c00017{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.me2_c00017{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.md1_c00017{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m6d_c00017{transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);}
.m99_c00017{transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);}
.m66_c00017{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.me9_c00017{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.mde_c00017{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.m86_c00017{transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);}
.me3_c00017{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m9f_c00017{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.mdd_c00017{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.m78_c00017{transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);}
.md4_c00017{transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.mec_c00017{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00017{transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m65_c00017{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00017{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m77_c00017{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.md3_c00017{transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);}
.mba_c00017{transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);}
.m61_c00017{transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.mb2_c00017{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m6f_c00017{transform:matrix(0.206190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206190,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);}
.m62_c00017{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m70_c00017{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m64_c00017{transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);}
.m71_c00017{transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);}
.m95_c00017{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);}
.md9_c00017{transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00017{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.m9c_c00017{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.ma4_c00017{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.me8_c00017{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m3b_c00017{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.maf_c00017{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.mb6_c00017{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m80_c00017{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m84_c00017{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.m88_c00017{transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);}
.m7b_c00017{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);}
.mad_c00017{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.213255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213255,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m79_c00017{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.mdb_c00017{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);}
.mb8_c00017{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m97_c00017{transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);}
.m82_c00017{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.m85_c00017{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);}
.mdc_c00017{transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);}
.me5_c00017{transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);}
.me7_c00017{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.m7c_c00017{transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);}
.mc0_c00017{transform:matrix(0.224090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00017{transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.mdf_c00017{transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);}
.m81_c00017{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.md8_c00017{transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);}
.mc1_c00017{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.mbd_c00017{transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);}
.mb7_c00017{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.mb0_c00017{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);}
.m98_c00017{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.m94_c00017{transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);}
.maa_c00017{transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);}
.m8b_c00017{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.m8a_c00017{transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00017{transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);}
.md2_c00017{transform:matrix(0.264785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264785,0.000000,0.000000,0.250000,0,0);}
.m7e_c00017{transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00017{transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00017{transform:matrix(0.280895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280895,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.315660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315660,0.000000,0.000000,0.250000,0,0);}
.m5b_c00017{transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);}
.me0_c00017{transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.344460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344460,0.000000,0.000000,0.250000,0,0);}
.md0_c00017{transform:matrix(0.457955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457955,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.610960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610960,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
.fc0_c00017{color:transparent;}
.fs6_c00017{font-size:57.750000px;}
.fs1_c00017{font-size:58.800000px;}
.fs2_c00017{font-size:59.850000px;}
.fs3_c00017{font-size:60.900000px;}
.fs8_c00017{font-size:61.950000px;}
.fs9_c00017{font-size:63.000000px;}
.fs5_c00017{font-size:66.150000px;}
.fs4_c00017{font-size:68.250000px;}
.fs7_c00017{font-size:70.350000px;}
.fsa_c00017{font-size:71.400000px;}
.fsb_c00017{font-size:73.500000px;}
.fs0_c00017{font-size:114.450000px;}
.y0_c00017{bottom:0.000000px;}
.ya4_c00017{bottom:26.247000px;}
.ya3_c00017{bottom:26.464500px;}
.ya2_c00017{bottom:26.736000px;}
.ya1_c00017{bottom:27.412500px;}
.ya0_c00017{bottom:28.170000px;}
.y9f_c00017{bottom:28.446000px;}
.y9e_c00017{bottom:29.083500px;}
.y9d_c00017{bottom:29.442000px;}
.y9c_c00017{bottom:29.695500px;}
.y9b_c00017{bottom:43.666500px;}
.y9a_c00017{bottom:44.095500px;}
.y99_c00017{bottom:44.374500px;}
.y98_c00017{bottom:45.117000px;}
.y97_c00017{bottom:45.438000px;}
.y96_c00017{bottom:46.315500px;}
.y95_c00017{bottom:46.701000px;}
.y94_c00017{bottom:46.977000px;}
.y93_c00017{bottom:60.918000px;}
.y92_c00017{bottom:61.375500px;}
.y91_c00017{bottom:61.951500px;}
.y90_c00017{bottom:62.640000px;}
.y8f_c00017{bottom:63.381000px;}
.y8e_c00017{bottom:63.921000px;}
.y8d_c00017{bottom:64.257000px;}
.y8c_c00017{bottom:77.823000px;}
.y8b_c00017{bottom:78.628500px;}
.y8a_c00017{bottom:79.545000px;}
.y89_c00017{bottom:79.945500px;}
.y88_c00017{bottom:80.454000px;}
.y87_c00017{bottom:80.839500px;}
.y86_c00017{bottom:81.130500px;}
.y85_c00017{bottom:81.537000px;}
.y84_c00017{bottom:95.109000px;}
.y83_c00017{bottom:95.329500px;}
.y82_c00017{bottom:95.829000px;}
.y81_c00017{bottom:96.001500px;}
.y80_c00017{bottom:97.051500px;}
.y7f_c00017{bottom:97.582500px;}
.y7e_c00017{bottom:98.278500px;}
.y7d_c00017{bottom:111.996000px;}
.y7c_c00017{bottom:112.936500px;}
.y7b_c00017{bottom:113.365500px;}
.y7a_c00017{bottom:113.782500px;}
.y79_c00017{bottom:114.045000px;}
.y78_c00017{bottom:114.322500px;}
.y77_c00017{bottom:114.747000px;}
.y76_c00017{bottom:114.972000px;}
.y75_c00017{bottom:115.558500px;}
.y74_c00017{bottom:129.181500px;}
.y73_c00017{bottom:129.382500px;}
.y72_c00017{bottom:130.321500px;}
.y71_c00017{bottom:131.221500px;}
.y70_c00017{bottom:132.223500px;}
.y6f_c00017{bottom:132.655500px;}
.y6e_c00017{bottom:133.381500px;}
.y6d_c00017{bottom:145.591500px;}
.y6c_c00017{bottom:146.166000px;}
.y6b_c00017{bottom:146.683500px;}
.y6a_c00017{bottom:146.922000px;}
.y69_c00017{bottom:147.204000px;}
.y68_c00017{bottom:148.240500px;}
.y67_c00017{bottom:149.155500px;}
.y66_c00017{bottom:149.581500px;}
.y65_c00017{bottom:163.075500px;}
.y64_c00017{bottom:163.363500px;}
.y63_c00017{bottom:163.785000px;}
.y62_c00017{bottom:164.395500px;}
.y61_c00017{bottom:164.598000px;}
.y60_c00017{bottom:165.049500px;}
.y5f_c00017{bottom:165.228000px;}
.y5e_c00017{bottom:165.484500px;}
.y5d_c00017{bottom:165.781500px;}
.y5c_c00017{bottom:180.316500px;}
.y5b_c00017{bottom:180.594000px;}
.y5a_c00017{bottom:180.745500px;}
.y59_c00017{bottom:181.375500px;}
.y58_c00017{bottom:181.569000px;}
.y57_c00017{bottom:181.797000px;}
.y56_c00017{bottom:182.257500px;}
.y55_c00017{bottom:182.530500px;}
.y54_c00017{bottom:183.333000px;}
.y53_c00017{bottom:197.563500px;}
.y52_c00017{bottom:198.258000px;}
.y51_c00017{bottom:198.774000px;}
.y50_c00017{bottom:199.006500px;}
.y4f_c00017{bottom:199.300500px;}
.y4e_c00017{bottom:199.482000px;}
.y4d_c00017{bottom:200.181000px;}
.y4c_c00017{bottom:200.394000px;}
.y4b_c00017{bottom:200.881500px;}
.y4a_c00017{bottom:214.587000px;}
.y49_c00017{bottom:215.121000px;}
.y48_c00017{bottom:215.943000px;}
.y47_c00017{bottom:216.283500px;}
.y46_c00017{bottom:217.074000px;}
.y45_c00017{bottom:217.345500px;}
.y44_c00017{bottom:217.890000px;}
.y43_c00017{bottom:231.708000px;}
.y42_c00017{bottom:231.915000px;}
.y41_c00017{bottom:232.545000px;}
.y40_c00017{bottom:232.798500px;}
.y3f_c00017{bottom:233.058000px;}
.y3e_c00017{bottom:233.748000px;}
.y3d_c00017{bottom:234.085500px;}
.y3c_c00017{bottom:234.633000px;}
.y3b_c00017{bottom:248.685000px;}
.y3a_c00017{bottom:248.964000px;}
.y39_c00017{bottom:249.918000px;}
.y38_c00017{bottom:250.639500px;}
.y37_c00017{bottom:251.385000px;}
.y36_c00017{bottom:251.643000px;}
.y35_c00017{bottom:266.304000px;}
.y34_c00017{bottom:266.865000px;}
.y33_c00017{bottom:267.307500px;}
.y32_c00017{bottom:267.993000px;}
.y31_c00017{bottom:268.177500px;}
.y30_c00017{bottom:268.696500px;}
.y2f_c00017{bottom:268.921500px;}
.y2e_c00017{bottom:282.549000px;}
.y2d_c00017{bottom:282.754500px;}
.y2c_c00017{bottom:283.366500px;}
.y2b_c00017{bottom:283.681500px;}
.y2a_c00017{bottom:284.184000px;}
.y29_c00017{bottom:284.404500px;}
.y28_c00017{bottom:284.727000px;}
.y27_c00017{bottom:285.060000px;}
.y26_c00017{bottom:285.393000px;}
.y25_c00017{bottom:300.774000px;}
.y24_c00017{bottom:317.935500px;}
.y23_c00017{bottom:335.098500px;}
.y22_c00017{bottom:352.191000px;}
.y21_c00017{bottom:369.312000px;}
.y20_c00017{bottom:386.095500px;}
.y1f_c00017{bottom:403.378500px;}
.y1e_c00017{bottom:420.415500px;}
.y1d_c00017{bottom:437.275500px;}
.y1c_c00017{bottom:454.407000px;}
.y1b_c00017{bottom:471.300000px;}
.y1a_c00017{bottom:487.989000px;}
.y19_c00017{bottom:488.173500px;}
.y18_c00017{bottom:488.893500px;}
.y17_c00017{bottom:489.201000px;}
.y16_c00017{bottom:490.050000px;}
.y15_c00017{bottom:490.299000px;}
.y14_c00017{bottom:490.858500px;}
.y13_c00017{bottom:505.107000px;}
.y12_c00017{bottom:521.832000px;}
.y11_c00017{bottom:522.091500px;}
.y10_c00017{bottom:522.819000px;}
.yf_c00017{bottom:523.093500px;}
.ye_c00017{bottom:523.932000px;}
.yd_c00017{bottom:524.212500px;}
.yc_c00017{bottom:524.388000px;}
.yb_c00017{bottom:525.151500px;}
.ya_c00017{bottom:539.253000px;}
.y9_c00017{bottom:556.786500px;}
.y8_c00017{bottom:557.047500px;}
.y7_c00017{bottom:557.220000px;}
.y6_c00017{bottom:557.865000px;}
.y5_c00017{bottom:558.177000px;}
.y4_c00017{bottom:558.501000px;}
.y3_c00017{bottom:558.798000px;}
.y2_c00017{bottom:559.171500px;}
.y1_c00017{bottom:569.676000px;}
.h8_c00017{height:57.750000px;}
.h3_c00017{height:58.800000px;}
.h4_c00017{height:59.850000px;}
.h5_c00017{height:60.900000px;}
.ha_c00017{height:61.950000px;}
.hb_c00017{height:63.000000px;}
.h7_c00017{height:66.150000px;}
.h6_c00017{height:68.250000px;}
.h9_c00017{height:70.350000px;}
.hc_c00017{height:71.400000px;}
.hd_c00017{height:73.500000px;}
.h2_c00017{height:114.450000px;}
.h1_c00017{height:615.750000px;}
.h0_c00017{height:615.870000px;}
.w0_c00017{width:377.190000px;}
.w1_c00017{width:377.250000px;}
.x0_c00017{left:0.000000px;}
.x7e_c00017{left:39.804000px;}
.x5d_c00017{left:40.891500px;}
.x56_c00017{left:41.985000px;}
.x44_c00017{left:43.740000px;}
.x34_c00017{left:44.818500px;}
.x1f_c00017{left:46.323000px;}
.x12_c00017{left:47.344500px;}
.x3_c00017{left:49.291500px;}
.x81_c00017{left:60.112500px;}
.x57_c00017{left:62.499000px;}
.x5b_c00017{left:64.656000px;}
.x7c_c00017{left:66.528000px;}
.x3e_c00017{left:69.660000px;}
.x19_c00017{left:71.820000px;}
.x52_c00017{left:73.294500px;}
.x2a_c00017{left:76.408500px;}
.x63_c00017{left:77.916000px;}
.x25_c00017{left:80.728500px;}
.x4_c00017{left:83.313000px;}
.x5f_c00017{left:86.025000px;}
.x3f_c00017{left:87.480000px;}
.xb_c00017{left:89.910000px;}
.x20_c00017{left:93.003000px;}
.x64_c00017{left:94.341000px;}
.x2e_c00017{left:96.118500px;}
.x74_c00017{left:98.668500px;}
.x45_c00017{left:100.170000px;}
.x53_c00017{left:103.584000px;}
.x13_c00017{left:106.023000px;}
.x60_c00017{left:108.646500px;}
.x5_c00017{left:110.356500px;}
.x4a_c00017{left:112.590000px;}
.x21_c00017{left:113.793000px;}
.x2f_c00017{left:115.018500px;}
.x4f_c00017{left:118.260000px;}
.x14_c00017{left:119.514000px;}
.x78_c00017{left:124.302000px;}
.x1a_c00017{left:126.630000px;}
.x26_c00017{left:130.408500px;}
.xc_c00017{left:133.380000px;}
.x2b_c00017{left:135.268500px;}
.x68_c00017{left:137.817000px;}
.x6_c00017{left:139.747500px;}
.x15_c00017{left:141.054000px;}
.x75_c00017{left:142.951500px;}
.x4b_c00017{left:144.720000px;}
.x65_c00017{left:148.114500px;}
.x1b_c00017{left:150.930000px;}
.x40_c00017{left:152.820000px;}
.x73_c00017{left:157.567500px;}
.xd_c00017{left:159.300000px;}
.x46_c00017{left:160.650000px;}
.x66_c00017{left:162.120000px;}
.x79_c00017{left:163.446000px;}
.x7d_c00017{left:165.064500px;}
.x82_c00017{left:166.168500px;}
.x7_c00017{left:168.082500px;}
.x35_c00017{left:170.638500px;}
.x50_c00017{left:171.990000px;}
.x61_c00017{left:174.523500px;}
.x71_c00017{left:175.558500px;}
.x41_c00017{left:178.200000px;}
.x69_c00017{left:179.662500px;}
.x1_c00017{left:185.490000px;}
.x58_c00017{left:188.856000px;}
.x27_c00017{left:191.158500px;}
.x30_c00017{left:193.318500px;}
.x7f_c00017{left:194.781000px;}
.x3c_c00017{left:196.558500px;}
.x54_c00017{left:198.630000px;}
.x6a_c00017{left:200.455500px;}
.x2c_c00017{left:202.768500px;}
.x16_c00017{left:205.573500px;}
.x1c_c00017{left:207.630000px;}
.x22_c00017{left:210.172500px;}
.xe_c00017{left:215.190000px;}
.x47_c00017{left:218.160000px;}
.x31_c00017{left:220.858500px;}
.x8_c00017{left:226.713000px;}
.x59_c00017{left:229.090500px;}
.x6f_c00017{left:230.386500px;}
.x38_c00017{left:232.468500px;}
.x1d_c00017{left:234.900000px;}
.xf_c00017{left:238.950000px;}
.x6d_c00017{left:240.433500px;}
.x9_c00017{left:242.371500px;}
.x76_c00017{left:244.743000px;}
.x48_c00017{left:247.590000px;}
.x42_c00017{left:249.210000px;}
.x4c_c00017{left:253.530000px;}
.x80_c00017{left:256.624500px;}
.x3d_c00017{left:258.388500px;}
.x28_c00017{left:260.818500px;}
.x2d_c00017{left:262.978500px;}
.x7a_c00017{left:264.714000px;}
.xa_c00017{left:266.077500px;}
.x36_c00017{left:267.838500px;}
.x23_c00017{left:270.178500px;}
.x39_c00017{left:271.348500px;}
.x10_c00017{left:275.940000px;}
.x32_c00017{left:277.828500px;}
.x5a_c00017{left:280.132500px;}
.x17_c00017{left:282.583500px;}
.x5e_c00017{left:284.428500px;}
.x24_c00017{left:285.562500px;}
.x6b_c00017{left:289.029000px;}
.x72_c00017{left:290.409000px;}
.x51_c00017{left:292.140000px;}
.x4d_c00017{left:294.570000px;}
.x67_c00017{left:295.756500px;}
.x33_c00017{left:297.268500px;}
.x55_c00017{left:301.453500px;}
.x18_c00017{left:302.503500px;}
.x77_c00017{left:304.683000px;}
.x3b_c00017{left:306.448500px;}
.x1e_c00017{left:307.530000px;}
.x5c_c00017{left:310.108500px;}
.x6e_c00017{left:311.452500px;}
.x4e_c00017{left:312.660000px;}
.x6c_c00017{left:314.193000px;}
.x62_c00017{left:316.021500px;}
.x43_c00017{left:318.870000px;}
.x37_c00017{left:320.488500px;}
.x29_c00017{left:324.268500px;}
.x70_c00017{left:325.443000px;}
.x7b_c00017{left:326.641500px;}
.x49_c00017{left:328.050000px;}
.x11_c00017{left:329.130000px;}
.x3a_c00017{left:330.478500px;}
.x2_c00017{left:351.810000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.fs6_c00017{font-size:51.333333pt;}
.fs1_c00017{font-size:52.266667pt;}
.fs2_c00017{font-size:53.200000pt;}
.fs3_c00017{font-size:54.133333pt;}
.fs8_c00017{font-size:55.066667pt;}
.fs9_c00017{font-size:56.000000pt;}
.fs5_c00017{font-size:58.800000pt;}
.fs4_c00017{font-size:60.666667pt;}
.fs7_c00017{font-size:62.533333pt;}
.fsa_c00017{font-size:63.466667pt;}
.fsb_c00017{font-size:65.333333pt;}
.fs0_c00017{font-size:101.733333pt;}
.y0_c00017{bottom:0.000000pt;}
.ya4_c00017{bottom:23.330667pt;}
.ya3_c00017{bottom:23.524000pt;}
.ya2_c00017{bottom:23.765333pt;}
.ya1_c00017{bottom:24.366667pt;}
.ya0_c00017{bottom:25.040000pt;}
.y9f_c00017{bottom:25.285333pt;}
.y9e_c00017{bottom:25.852000pt;}
.y9d_c00017{bottom:26.170667pt;}
.y9c_c00017{bottom:26.396000pt;}
.y9b_c00017{bottom:38.814667pt;}
.y9a_c00017{bottom:39.196000pt;}
.y99_c00017{bottom:39.444000pt;}
.y98_c00017{bottom:40.104000pt;}
.y97_c00017{bottom:40.389333pt;}
.y96_c00017{bottom:41.169333pt;}
.y95_c00017{bottom:41.512000pt;}
.y94_c00017{bottom:41.757333pt;}
.y93_c00017{bottom:54.149333pt;}
.y92_c00017{bottom:54.556000pt;}
.y91_c00017{bottom:55.068000pt;}
.y90_c00017{bottom:55.680000pt;}
.y8f_c00017{bottom:56.338667pt;}
.y8e_c00017{bottom:56.818667pt;}
.y8d_c00017{bottom:57.117333pt;}
.y8c_c00017{bottom:69.176000pt;}
.y8b_c00017{bottom:69.892000pt;}
.y8a_c00017{bottom:70.706667pt;}
.y89_c00017{bottom:71.062667pt;}
.y88_c00017{bottom:71.514667pt;}
.y87_c00017{bottom:71.857333pt;}
.y86_c00017{bottom:72.116000pt;}
.y85_c00017{bottom:72.477333pt;}
.y84_c00017{bottom:84.541333pt;}
.y83_c00017{bottom:84.737333pt;}
.y82_c00017{bottom:85.181333pt;}
.y81_c00017{bottom:85.334667pt;}
.y80_c00017{bottom:86.268000pt;}
.y7f_c00017{bottom:86.740000pt;}
.y7e_c00017{bottom:87.358667pt;}
.y7d_c00017{bottom:99.552000pt;}
.y7c_c00017{bottom:100.388000pt;}
.y7b_c00017{bottom:100.769333pt;}
.y7a_c00017{bottom:101.140000pt;}
.y79_c00017{bottom:101.373333pt;}
.y78_c00017{bottom:101.620000pt;}
.y77_c00017{bottom:101.997333pt;}
.y76_c00017{bottom:102.197333pt;}
.y75_c00017{bottom:102.718667pt;}
.y74_c00017{bottom:114.828000pt;}
.y73_c00017{bottom:115.006667pt;}
.y72_c00017{bottom:115.841333pt;}
.y71_c00017{bottom:116.641333pt;}
.y70_c00017{bottom:117.532000pt;}
.y6f_c00017{bottom:117.916000pt;}
.y6e_c00017{bottom:118.561333pt;}
.y6d_c00017{bottom:129.414667pt;}
.y6c_c00017{bottom:129.925333pt;}
.y6b_c00017{bottom:130.385333pt;}
.y6a_c00017{bottom:130.597333pt;}
.y69_c00017{bottom:130.848000pt;}
.y68_c00017{bottom:131.769333pt;}
.y67_c00017{bottom:132.582667pt;}
.y66_c00017{bottom:132.961333pt;}
.y65_c00017{bottom:144.956000pt;}
.y64_c00017{bottom:145.212000pt;}
.y63_c00017{bottom:145.586667pt;}
.y62_c00017{bottom:146.129333pt;}
.y61_c00017{bottom:146.309333pt;}
.y60_c00017{bottom:146.710667pt;}
.y5f_c00017{bottom:146.869333pt;}
.y5e_c00017{bottom:147.097333pt;}
.y5d_c00017{bottom:147.361333pt;}
.y5c_c00017{bottom:160.281333pt;}
.y5b_c00017{bottom:160.528000pt;}
.y5a_c00017{bottom:160.662667pt;}
.y59_c00017{bottom:161.222667pt;}
.y58_c00017{bottom:161.394667pt;}
.y57_c00017{bottom:161.597333pt;}
.y56_c00017{bottom:162.006667pt;}
.y55_c00017{bottom:162.249333pt;}
.y54_c00017{bottom:162.962667pt;}
.y53_c00017{bottom:175.612000pt;}
.y52_c00017{bottom:176.229333pt;}
.y51_c00017{bottom:176.688000pt;}
.y50_c00017{bottom:176.894667pt;}
.y4f_c00017{bottom:177.156000pt;}
.y4e_c00017{bottom:177.317333pt;}
.y4d_c00017{bottom:177.938667pt;}
.y4c_c00017{bottom:178.128000pt;}
.y4b_c00017{bottom:178.561333pt;}
.y4a_c00017{bottom:190.744000pt;}
.y49_c00017{bottom:191.218667pt;}
.y48_c00017{bottom:191.949333pt;}
.y47_c00017{bottom:192.252000pt;}
.y46_c00017{bottom:192.954667pt;}
.y45_c00017{bottom:193.196000pt;}
.y44_c00017{bottom:193.680000pt;}
.y43_c00017{bottom:205.962667pt;}
.y42_c00017{bottom:206.146667pt;}
.y41_c00017{bottom:206.706667pt;}
.y40_c00017{bottom:206.932000pt;}
.y3f_c00017{bottom:207.162667pt;}
.y3e_c00017{bottom:207.776000pt;}
.y3d_c00017{bottom:208.076000pt;}
.y3c_c00017{bottom:208.562667pt;}
.y3b_c00017{bottom:221.053333pt;}
.y3a_c00017{bottom:221.301333pt;}
.y39_c00017{bottom:222.149333pt;}
.y38_c00017{bottom:222.790667pt;}
.y37_c00017{bottom:223.453333pt;}
.y36_c00017{bottom:223.682667pt;}
.y35_c00017{bottom:236.714667pt;}
.y34_c00017{bottom:237.213333pt;}
.y33_c00017{bottom:237.606667pt;}
.y32_c00017{bottom:238.216000pt;}
.y31_c00017{bottom:238.380000pt;}
.y30_c00017{bottom:238.841333pt;}
.y2f_c00017{bottom:239.041333pt;}
.y2e_c00017{bottom:251.154667pt;}
.y2d_c00017{bottom:251.337333pt;}
.y2c_c00017{bottom:251.881333pt;}
.y2b_c00017{bottom:252.161333pt;}
.y2a_c00017{bottom:252.608000pt;}
.y29_c00017{bottom:252.804000pt;}
.y28_c00017{bottom:253.090667pt;}
.y27_c00017{bottom:253.386667pt;}
.y26_c00017{bottom:253.682667pt;}
.y25_c00017{bottom:267.354667pt;}
.y24_c00017{bottom:282.609333pt;}
.y23_c00017{bottom:297.865333pt;}
.y22_c00017{bottom:313.058667pt;}
.y21_c00017{bottom:328.277333pt;}
.y20_c00017{bottom:343.196000pt;}
.y1f_c00017{bottom:358.558667pt;}
.y1e_c00017{bottom:373.702667pt;}
.y1d_c00017{bottom:388.689333pt;}
.y1c_c00017{bottom:403.917333pt;}
.y1b_c00017{bottom:418.933333pt;}
.y1a_c00017{bottom:433.768000pt;}
.y19_c00017{bottom:433.932000pt;}
.y18_c00017{bottom:434.572000pt;}
.y17_c00017{bottom:434.845333pt;}
.y16_c00017{bottom:435.600000pt;}
.y15_c00017{bottom:435.821333pt;}
.y14_c00017{bottom:436.318667pt;}
.y13_c00017{bottom:448.984000pt;}
.y12_c00017{bottom:463.850667pt;}
.y11_c00017{bottom:464.081333pt;}
.y10_c00017{bottom:464.728000pt;}
.yf_c00017{bottom:464.972000pt;}
.ye_c00017{bottom:465.717333pt;}
.yd_c00017{bottom:465.966667pt;}
.yc_c00017{bottom:466.122667pt;}
.yb_c00017{bottom:466.801333pt;}
.ya_c00017{bottom:479.336000pt;}
.y9_c00017{bottom:494.921333pt;}
.y8_c00017{bottom:495.153333pt;}
.y7_c00017{bottom:495.306667pt;}
.y6_c00017{bottom:495.880000pt;}
.y5_c00017{bottom:496.157333pt;}
.y4_c00017{bottom:496.445333pt;}
.y3_c00017{bottom:496.709333pt;}
.y2_c00017{bottom:497.041333pt;}
.y1_c00017{bottom:506.378667pt;}
.h8_c00017{height:51.333333pt;}
.h3_c00017{height:52.266667pt;}
.h4_c00017{height:53.200000pt;}
.h5_c00017{height:54.133333pt;}
.ha_c00017{height:55.066667pt;}
.hb_c00017{height:56.000000pt;}
.h7_c00017{height:58.800000pt;}
.h6_c00017{height:60.666667pt;}
.h9_c00017{height:62.533333pt;}
.hc_c00017{height:63.466667pt;}
.hd_c00017{height:65.333333pt;}
.h2_c00017{height:101.733333pt;}
.h1_c00017{height:547.333333pt;}
.h0_c00017{height:547.440000pt;}
.w0_c00017{width:335.280000pt;}
.w1_c00017{width:335.333333pt;}
.x0_c00017{left:0.000000pt;}
.x7e_c00017{left:35.381333pt;}
.x5d_c00017{left:36.348000pt;}
.x56_c00017{left:37.320000pt;}
.x44_c00017{left:38.880000pt;}
.x34_c00017{left:39.838667pt;}
.x1f_c00017{left:41.176000pt;}
.x12_c00017{left:42.084000pt;}
.x3_c00017{left:43.814667pt;}
.x81_c00017{left:53.433333pt;}
.x57_c00017{left:55.554667pt;}
.x5b_c00017{left:57.472000pt;}
.x7c_c00017{left:59.136000pt;}
.x3e_c00017{left:61.920000pt;}
.x19_c00017{left:63.840000pt;}
.x52_c00017{left:65.150667pt;}
.x2a_c00017{left:67.918667pt;}
.x63_c00017{left:69.258667pt;}
.x25_c00017{left:71.758667pt;}
.x4_c00017{left:74.056000pt;}
.x5f_c00017{left:76.466667pt;}
.x3f_c00017{left:77.760000pt;}
.xb_c00017{left:79.920000pt;}
.x20_c00017{left:82.669333pt;}
.x64_c00017{left:83.858667pt;}
.x2e_c00017{left:85.438667pt;}
.x74_c00017{left:87.705333pt;}
.x45_c00017{left:89.040000pt;}
.x53_c00017{left:92.074667pt;}
.x13_c00017{left:94.242667pt;}
.x60_c00017{left:96.574667pt;}
.x5_c00017{left:98.094667pt;}
.x4a_c00017{left:100.080000pt;}
.x21_c00017{left:101.149333pt;}
.x2f_c00017{left:102.238667pt;}
.x4f_c00017{left:105.120000pt;}
.x14_c00017{left:106.234667pt;}
.x78_c00017{left:110.490667pt;}
.x1a_c00017{left:112.560000pt;}
.x26_c00017{left:115.918667pt;}
.xc_c00017{left:118.560000pt;}
.x2b_c00017{left:120.238667pt;}
.x68_c00017{left:122.504000pt;}
.x6_c00017{left:124.220000pt;}
.x15_c00017{left:125.381333pt;}
.x75_c00017{left:127.068000pt;}
.x4b_c00017{left:128.640000pt;}
.x65_c00017{left:131.657333pt;}
.x1b_c00017{left:134.160000pt;}
.x40_c00017{left:135.840000pt;}
.x73_c00017{left:140.060000pt;}
.xd_c00017{left:141.600000pt;}
.x46_c00017{left:142.800000pt;}
.x66_c00017{left:144.106667pt;}
.x79_c00017{left:145.285333pt;}
.x7d_c00017{left:146.724000pt;}
.x82_c00017{left:147.705333pt;}
.x7_c00017{left:149.406667pt;}
.x35_c00017{left:151.678667pt;}
.x50_c00017{left:152.880000pt;}
.x61_c00017{left:155.132000pt;}
.x71_c00017{left:156.052000pt;}
.x41_c00017{left:158.400000pt;}
.x69_c00017{left:159.700000pt;}
.x1_c00017{left:164.880000pt;}
.x58_c00017{left:167.872000pt;}
.x27_c00017{left:169.918667pt;}
.x30_c00017{left:171.838667pt;}
.x7f_c00017{left:173.138667pt;}
.x3c_c00017{left:174.718667pt;}
.x54_c00017{left:176.560000pt;}
.x6a_c00017{left:178.182667pt;}
.x2c_c00017{left:180.238667pt;}
.x16_c00017{left:182.732000pt;}
.x1c_c00017{left:184.560000pt;}
.x22_c00017{left:186.820000pt;}
.xe_c00017{left:191.280000pt;}
.x47_c00017{left:193.920000pt;}
.x31_c00017{left:196.318667pt;}
.x8_c00017{left:201.522667pt;}
.x59_c00017{left:203.636000pt;}
.x6f_c00017{left:204.788000pt;}
.x38_c00017{left:206.638667pt;}
.x1d_c00017{left:208.800000pt;}
.xf_c00017{left:212.400000pt;}
.x6d_c00017{left:213.718667pt;}
.x9_c00017{left:215.441333pt;}
.x76_c00017{left:217.549333pt;}
.x48_c00017{left:220.080000pt;}
.x42_c00017{left:221.520000pt;}
.x4c_c00017{left:225.360000pt;}
.x80_c00017{left:228.110667pt;}
.x3d_c00017{left:229.678667pt;}
.x28_c00017{left:231.838667pt;}
.x2d_c00017{left:233.758667pt;}
.x7a_c00017{left:235.301333pt;}
.xa_c00017{left:236.513333pt;}
.x36_c00017{left:238.078667pt;}
.x23_c00017{left:240.158667pt;}
.x39_c00017{left:241.198667pt;}
.x10_c00017{left:245.280000pt;}
.x32_c00017{left:246.958667pt;}
.x5a_c00017{left:249.006667pt;}
.x17_c00017{left:251.185333pt;}
.x5e_c00017{left:252.825333pt;}
.x24_c00017{left:253.833333pt;}
.x6b_c00017{left:256.914667pt;}
.x72_c00017{left:258.141333pt;}
.x51_c00017{left:259.680000pt;}
.x4d_c00017{left:261.840000pt;}
.x67_c00017{left:262.894667pt;}
.x33_c00017{left:264.238667pt;}
.x55_c00017{left:267.958667pt;}
.x18_c00017{left:268.892000pt;}
.x77_c00017{left:270.829333pt;}
.x3b_c00017{left:272.398667pt;}
.x1e_c00017{left:273.360000pt;}
.x5c_c00017{left:275.652000pt;}
.x6e_c00017{left:276.846667pt;}
.x4e_c00017{left:277.920000pt;}
.x6c_c00017{left:279.282667pt;}
.x62_c00017{left:280.908000pt;}
.x43_c00017{left:283.440000pt;}
.x37_c00017{left:284.878667pt;}
.x29_c00017{left:288.238667pt;}
.x70_c00017{left:289.282667pt;}
.x7b_c00017{left:290.348000pt;}
.x49_c00017{left:291.600000pt;}
.x11_c00017{left:292.560000pt;}
.x3a_c00017{left:293.758667pt;}
.x2_c00017{left:312.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00018 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00018.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.027081,0.001139,-0.010501,0.249779,0,0);-ms-transform:matrix(0.027081,0.001139,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.027081,0.001139,-0.010501,0.249779,0,0);}
.mc1_c00018{transform:matrix(0.033277,0.001967,-0.014754,0.249564,0,0);-ms-transform:matrix(0.033277,0.001967,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.033277,0.001967,-0.014754,0.249564,0,0);}
.mc2_c00018{transform:matrix(0.063599,0.003760,-0.014754,0.249564,0,0);-ms-transform:matrix(0.063599,0.003760,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.063599,0.003760,-0.014754,0.249564,0,0);}
.m98_c00018{transform:matrix(0.079107,0.004677,-0.014754,0.249564,0,0);-ms-transform:matrix(0.079107,0.004677,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.079107,0.004677,-0.014754,0.249564,0,0);}
.mf7_c00018{transform:matrix(0.082128,0.004193,-0.012746,0.249675,0,0);-ms-transform:matrix(0.082128,0.004193,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.082128,0.004193,-0.012746,0.249675,0,0);}
.md_c00018{transform:matrix(0.083839,0.003693,-0.011000,0.249758,0,0);-ms-transform:matrix(0.083839,0.003693,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.083839,0.003693,-0.011000,0.249758,0,0);}
.mb9_c00018{transform:matrix(0.127932,0.007563,-0.014754,0.249564,0,0);-ms-transform:matrix(0.127932,0.007563,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.127932,0.007563,-0.014754,0.249564,0,0);}
.mc_c00018{transform:matrix(0.136018,0.005991,-0.011000,0.249758,0,0);-ms-transform:matrix(0.136018,0.005991,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.136018,0.005991,-0.011000,0.249758,0,0);}
.m9c_c00018{transform:matrix(0.142396,0.008418,-0.014754,0.249564,0,0);-ms-transform:matrix(0.142396,0.008418,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.142396,0.008418,-0.014754,0.249564,0,0);}
.m3c_c00018{transform:matrix(0.143178,0.007891,-0.013757,0.249621,0,0);-ms-transform:matrix(0.143178,0.007891,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.143178,0.007891,-0.013757,0.249621,0,0);}
.ma8_c00018{transform:matrix(0.144493,0.008542,-0.014754,0.249564,0,0);-ms-transform:matrix(0.144493,0.008542,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.144493,0.008542,-0.014754,0.249564,0,0);}
.mb8_c00018{transform:matrix(0.148611,0.008786,-0.014754,0.249564,0,0);-ms-transform:matrix(0.148611,0.008786,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.148611,0.008786,-0.014754,0.249564,0,0);}
.m55_c00018{transform:matrix(0.149638,0.008247,-0.013757,0.249621,0,0);-ms-transform:matrix(0.149638,0.008247,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.149638,0.008247,-0.013757,0.249621,0,0);}
.maf_c00018{transform:matrix(0.150387,0.008891,-0.014754,0.249564,0,0);-ms-transform:matrix(0.150387,0.008891,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.150387,0.008891,-0.014754,0.249564,0,0);}
.me3_c00018{transform:matrix(0.151048,0.007711,-0.012746,0.249675,0,0);-ms-transform:matrix(0.151048,0.007711,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.151048,0.007711,-0.012746,0.249675,0,0);}
.m1e_c00018{transform:matrix(0.152603,0.007943,-0.012995,0.249662,0,0);-ms-transform:matrix(0.152603,0.007943,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.152603,0.007943,-0.012995,0.249662,0,0);}
.ma_c00018{transform:matrix(0.152772,0.006729,-0.011000,0.249758,0,0);-ms-transform:matrix(0.152772,0.006729,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.152772,0.006729,-0.011000,0.249758,0,0);}
.m76_c00018{transform:matrix(0.153073,0.008436,-0.013757,0.249621,0,0);-ms-transform:matrix(0.153073,0.008436,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.153073,0.008436,-0.013757,0.249621,0,0);}
.m41_c00018{transform:matrix(0.153552,0.008462,-0.013757,0.249621,0,0);-ms-transform:matrix(0.153552,0.008462,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.153552,0.008462,-0.013757,0.249621,0,0);}
.mbc_c00018{transform:matrix(0.153786,0.009092,-0.014754,0.249564,0,0);-ms-transform:matrix(0.153786,0.009092,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.153786,0.009092,-0.014754,0.249564,0,0);}
.mc3_c00018{transform:matrix(0.155484,0.009192,-0.014754,0.249564,0,0);-ms-transform:matrix(0.155484,0.009192,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.155484,0.009192,-0.014754,0.249564,0,0);}
.m7c_c00018{transform:matrix(0.155679,0.008579,-0.013757,0.249621,0,0);-ms-transform:matrix(0.155679,0.008579,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.155679,0.008579,-0.013757,0.249621,0,0);}
.mf4_c00018{transform:matrix(0.157635,0.008047,-0.012746,0.249675,0,0);-ms-transform:matrix(0.157635,0.008047,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.157635,0.008047,-0.012746,0.249675,0,0);}
.me5_c00018{transform:matrix(0.157725,0.008052,-0.012746,0.249675,0,0);-ms-transform:matrix(0.157725,0.008052,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.157725,0.008052,-0.012746,0.249675,0,0);}
.m37_c00018{transform:matrix(0.158132,0.007281,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158132,0.007281,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158132,0.007281,-0.011499,0.249735,0,0);}
.m38_c00018{transform:matrix(0.158322,0.007290,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158322,0.007290,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158322,0.007290,-0.011499,0.249735,0,0);}
.m6_c00018{transform:matrix(0.158901,0.006999,-0.011000,0.249758,0,0);-ms-transform:matrix(0.158901,0.006999,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.158901,0.006999,-0.011000,0.249758,0,0);}
.mbd_c00018{transform:matrix(0.160984,0.009517,-0.014754,0.249564,0,0);-ms-transform:matrix(0.160984,0.009517,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.160984,0.009517,-0.014754,0.249564,0,0);}
.mf3_c00018{transform:matrix(0.161130,0.008226,-0.012746,0.249675,0,0);-ms-transform:matrix(0.161130,0.008226,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.161130,0.008226,-0.012746,0.249675,0,0);}
.m67_c00018{transform:matrix(0.161580,0.008905,-0.013757,0.249621,0,0);-ms-transform:matrix(0.161580,0.008905,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.161580,0.008905,-0.013757,0.249621,0,0);}
.mdb_c00018{transform:matrix(0.162172,0.009912,-0.015252,0.249534,0,0);-ms-transform:matrix(0.162172,0.009912,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.162172,0.009912,-0.015252,0.249534,0,0);}
.me7_c00018{transform:matrix(0.164760,0.008411,-0.012746,0.249675,0,0);-ms-transform:matrix(0.164760,0.008411,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.164760,0.008411,-0.012746,0.249675,0,0);}
.m57_c00018{transform:matrix(0.165414,0.009116,-0.013757,0.249621,0,0);-ms-transform:matrix(0.165414,0.009116,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.165414,0.009116,-0.013757,0.249621,0,0);}
.m39_c00018{transform:matrix(0.165749,0.007632,-0.011499,0.249735,0,0);-ms-transform:matrix(0.165749,0.007632,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.165749,0.007632,-0.011499,0.249735,0,0);}
.m6a_c00018{transform:matrix(0.166348,0.009167,-0.013757,0.249621,0,0);-ms-transform:matrix(0.166348,0.009167,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.166348,0.009167,-0.013757,0.249621,0,0);}
.mf5_c00018{transform:matrix(0.166653,0.008508,-0.012746,0.249675,0,0);-ms-transform:matrix(0.166653,0.008508,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.166653,0.008508,-0.012746,0.249675,0,0);}
.me6_c00018{transform:matrix(0.167172,0.008534,-0.012746,0.249675,0,0);-ms-transform:matrix(0.167172,0.008534,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.167172,0.008534,-0.012746,0.249675,0,0);}
.me4_c00018{transform:matrix(0.167522,0.008552,-0.012746,0.249675,0,0);-ms-transform:matrix(0.167522,0.008552,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.167522,0.008552,-0.012746,0.249675,0,0);}
.m1f_c00018{transform:matrix(0.167948,0.008742,-0.012995,0.249662,0,0);-ms-transform:matrix(0.167948,0.008742,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.167948,0.008742,-0.012995,0.249662,0,0);}
.m42_c00018{transform:matrix(0.169113,0.009320,-0.013757,0.249621,0,0);-ms-transform:matrix(0.169113,0.009320,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.169113,0.009320,-0.013757,0.249621,0,0);}
.md6_c00018{transform:matrix(0.170731,0.010435,-0.015252,0.249534,0,0);-ms-transform:matrix(0.170731,0.010435,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.170731,0.010435,-0.015252,0.249534,0,0);}
.m52_c00018{transform:matrix(0.170996,0.009424,-0.013757,0.249621,0,0);-ms-transform:matrix(0.170996,0.009424,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.170996,0.009424,-0.013757,0.249621,0,0);}
.mc5_c00018{transform:matrix(0.171151,0.010118,-0.014754,0.249564,0,0);-ms-transform:matrix(0.171151,0.010118,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.171151,0.010118,-0.014754,0.249564,0,0);}
.mec_c00018{transform:matrix(0.171197,0.008740,-0.012746,0.249675,0,0);-ms-transform:matrix(0.171197,0.008740,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.171197,0.008740,-0.012746,0.249675,0,0);}
.m2a_c00018{transform:matrix(0.171279,0.007887,-0.011499,0.249735,0,0);-ms-transform:matrix(0.171279,0.007887,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.171279,0.007887,-0.011499,0.249735,0,0);}
.m6d_c00018{transform:matrix(0.171300,0.009440,-0.013757,0.249621,0,0);-ms-transform:matrix(0.171300,0.009440,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.171300,0.009440,-0.013757,0.249621,0,0);}
.m58_c00018{transform:matrix(0.171929,0.009475,-0.013757,0.249621,0,0);-ms-transform:matrix(0.171929,0.009475,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.171929,0.009475,-0.013757,0.249621,0,0);}
.m5d_c00018{transform:matrix(0.172333,0.009497,-0.013757,0.249621,0,0);-ms-transform:matrix(0.172333,0.009497,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.172333,0.009497,-0.013757,0.249621,0,0);}
.m8a_c00018{transform:matrix(0.172415,0.011229,-0.016248,0.249471,0,0);-ms-transform:matrix(0.172415,0.011229,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.172415,0.011229,-0.016248,0.249471,0,0);}
.m97_c00018{transform:matrix(0.172464,0.010196,-0.014754,0.249564,0,0);-ms-transform:matrix(0.172464,0.010196,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.172464,0.010196,-0.014754,0.249564,0,0);}
.m36_c00018{transform:matrix(0.172582,0.007947,-0.011499,0.249735,0,0);-ms-transform:matrix(0.172582,0.007947,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.172582,0.007947,-0.011499,0.249735,0,0);}
.mc9_c00018{transform:matrix(0.172773,0.010214,-0.014754,0.249564,0,0);-ms-transform:matrix(0.172773,0.010214,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.172773,0.010214,-0.014754,0.249564,0,0);}
.m72_c00018{transform:matrix(0.173217,0.009546,-0.013757,0.249621,0,0);-ms-transform:matrix(0.173217,0.009546,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.173217,0.009546,-0.013757,0.249621,0,0);}
.m29_c00018{transform:matrix(0.173260,0.009019,-0.012995,0.249662,0,0);-ms-transform:matrix(0.173260,0.009019,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.173260,0.009019,-0.012995,0.249662,0,0);}
.m14_c00018{transform:matrix(0.173312,0.007633,-0.011000,0.249758,0,0);-ms-transform:matrix(0.173312,0.007633,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.173312,0.007633,-0.011000,0.249758,0,0);}
.m78_c00018{transform:matrix(0.173392,0.009556,-0.013757,0.249621,0,0);-ms-transform:matrix(0.173392,0.009556,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.173392,0.009556,-0.013757,0.249621,0,0);}
.m6e_c00018{transform:matrix(0.173462,0.009560,-0.013757,0.249621,0,0);-ms-transform:matrix(0.173462,0.009560,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.173462,0.009560,-0.013757,0.249621,0,0);}
.m26_c00018{transform:matrix(0.173715,0.009042,-0.012995,0.249662,0,0);-ms-transform:matrix(0.173715,0.009042,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.173715,0.009042,-0.012995,0.249662,0,0);}
.m3e_c00018{transform:matrix(0.173791,0.009578,-0.013757,0.249621,0,0);-ms-transform:matrix(0.173791,0.009578,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.173791,0.009578,-0.013757,0.249621,0,0);}
.mae_c00018{transform:matrix(0.175289,0.010363,-0.014754,0.249564,0,0);-ms-transform:matrix(0.175289,0.010363,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.175289,0.010363,-0.014754,0.249564,0,0);}
.med_c00018{transform:matrix(0.175731,0.008971,-0.012746,0.249675,0,0);-ms-transform:matrix(0.175731,0.008971,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.175731,0.008971,-0.012746,0.249675,0,0);}
.m59_c00018{transform:matrix(0.175808,0.009689,-0.013757,0.249621,0,0);-ms-transform:matrix(0.175808,0.009689,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.175808,0.009689,-0.013757,0.249621,0,0);}
.m77_c00018{transform:matrix(0.175923,0.009695,-0.013757,0.249621,0,0);-ms-transform:matrix(0.175923,0.009695,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.175923,0.009695,-0.013757,0.249621,0,0);}
.mc6_c00018{transform:matrix(0.176582,0.010439,-0.014754,0.249564,0,0);-ms-transform:matrix(0.176582,0.010439,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.176582,0.010439,-0.014754,0.249564,0,0);}
.m4_c00018{transform:matrix(0.176769,0.007786,-0.011000,0.249758,0,0);-ms-transform:matrix(0.176769,0.007786,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.176769,0.007786,-0.011000,0.249758,0,0);}
.m11_c00018{transform:matrix(0.176968,0.007794,-0.011000,0.249758,0,0);-ms-transform:matrix(0.176968,0.007794,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.176968,0.007794,-0.011000,0.249758,0,0);}
.m9a_c00018{transform:matrix(0.177031,0.010466,-0.014754,0.249564,0,0);-ms-transform:matrix(0.177031,0.010466,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.177031,0.010466,-0.014754,0.249564,0,0);}
.me2_c00018{transform:matrix(0.177993,0.009087,-0.012746,0.249675,0,0);-ms-transform:matrix(0.177993,0.009087,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.177993,0.009087,-0.012746,0.249675,0,0);}
.m2d_c00018{transform:matrix(0.178001,0.008196,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178001,0.008196,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178001,0.008196,-0.011499,0.249735,0,0);}
.mdc_c00018{transform:matrix(0.178158,0.010889,-0.015252,0.249534,0,0);-ms-transform:matrix(0.178158,0.010889,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.178158,0.010889,-0.015252,0.249534,0,0);}
.m30_c00018{transform:matrix(0.178186,0.008205,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178186,0.008205,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178186,0.008205,-0.011499,0.249735,0,0);}
.me1_c00018{transform:matrix(0.179152,0.009146,-0.012746,0.249675,0,0);-ms-transform:matrix(0.179152,0.009146,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.179152,0.009146,-0.012746,0.249675,0,0);}
.md3_c00018{transform:matrix(0.179353,0.010064,-0.014006,0.249607,0,0);-ms-transform:matrix(0.179353,0.010064,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.179353,0.010064,-0.014006,0.249607,0,0);}
.m83_c00018{transform:matrix(0.179979,0.011722,-0.016248,0.249471,0,0);-ms-transform:matrix(0.179979,0.011722,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.179979,0.011722,-0.016248,0.249471,0,0);}
.mef_c00018{transform:matrix(0.180190,0.009199,-0.012746,0.249675,0,0);-ms-transform:matrix(0.180190,0.009199,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.180190,0.009199,-0.012746,0.249675,0,0);}
.m5a_c00018{transform:matrix(0.180806,0.009964,-0.013757,0.249621,0,0);-ms-transform:matrix(0.180806,0.009964,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.180806,0.009964,-0.013757,0.249621,0,0);}
.m1d_c00018{transform:matrix(0.181005,0.009422,-0.012995,0.249662,0,0);-ms-transform:matrix(0.181005,0.009422,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.181005,0.009422,-0.012995,0.249662,0,0);}
.me9_c00018{transform:matrix(0.181059,0.009243,-0.012746,0.249675,0,0);-ms-transform:matrix(0.181059,0.009243,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.181059,0.009243,-0.012746,0.249675,0,0);}
.m32_c00018{transform:matrix(0.181063,0.008337,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181063,0.008337,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181063,0.008337,-0.011499,0.249735,0,0);}
.mb6_c00018{transform:matrix(0.181229,0.010714,-0.014754,0.249564,0,0);-ms-transform:matrix(0.181229,0.010714,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.181229,0.010714,-0.014754,0.249564,0,0);}
.mbf_c00018{transform:matrix(0.181493,0.010730,-0.014754,0.249564,0,0);-ms-transform:matrix(0.181493,0.010730,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.181493,0.010730,-0.014754,0.249564,0,0);}
.m4f_c00018{transform:matrix(0.181599,0.010008,-0.013757,0.249621,0,0);-ms-transform:matrix(0.181599,0.010008,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.181599,0.010008,-0.013757,0.249621,0,0);}
.m54_c00018{transform:matrix(0.181784,0.010018,-0.013757,0.249621,0,0);-ms-transform:matrix(0.181784,0.010018,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.181784,0.010018,-0.013757,0.249621,0,0);}
.m79_c00018{transform:matrix(0.182139,0.010038,-0.013757,0.249621,0,0);-ms-transform:matrix(0.182139,0.010038,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.182139,0.010038,-0.013757,0.249621,0,0);}
.m3f_c00018{transform:matrix(0.182149,0.010038,-0.013757,0.249621,0,0);-ms-transform:matrix(0.182149,0.010038,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.182149,0.010038,-0.013757,0.249621,0,0);}
.m9e_c00018{transform:matrix(0.182222,0.010773,-0.014754,0.249564,0,0);-ms-transform:matrix(0.182222,0.010773,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.182222,0.010773,-0.014754,0.249564,0,0);}
.m28_c00018{transform:matrix(0.182338,0.009491,-0.012995,0.249662,0,0);-ms-transform:matrix(0.182338,0.009491,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.182338,0.009491,-0.012995,0.249662,0,0);}
.m3d_c00018{transform:matrix(0.182348,0.010049,-0.013757,0.249621,0,0);-ms-transform:matrix(0.182348,0.010049,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.182348,0.010049,-0.013757,0.249621,0,0);}
.m21_c00018{transform:matrix(0.182922,0.009521,-0.012995,0.249662,0,0);-ms-transform:matrix(0.182922,0.009521,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.182922,0.009521,-0.012995,0.249662,0,0);}
.m1a_c00018{transform:matrix(0.183417,0.008078,-0.011000,0.249758,0,0);-ms-transform:matrix(0.183417,0.008078,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.183417,0.008078,-0.011000,0.249758,0,0);}
.mf0_c00018{transform:matrix(0.183571,0.009371,-0.012746,0.249675,0,0);-ms-transform:matrix(0.183571,0.009371,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.183571,0.009371,-0.012746,0.249675,0,0);}
.m81_c00018{transform:matrix(0.183796,0.011971,-0.016248,0.249471,0,0);-ms-transform:matrix(0.183796,0.011971,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.183796,0.011971,-0.016248,0.249471,0,0);}
.m91_c00018{transform:matrix(0.183930,0.011979,-0.016248,0.249471,0,0);-ms-transform:matrix(0.183930,0.011979,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.183930,0.011979,-0.016248,0.249471,0,0);}
.m2b_c00018{transform:matrix(0.183960,0.008471,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183960,0.008471,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183960,0.008471,-0.011499,0.249735,0,0);}
.m7d_c00018{transform:matrix(0.184081,0.010145,-0.013757,0.249621,0,0);-ms-transform:matrix(0.184081,0.010145,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.184081,0.010145,-0.013757,0.249621,0,0);}
.md5_c00018{transform:matrix(0.184146,0.011255,-0.015252,0.249534,0,0);-ms-transform:matrix(0.184146,0.011255,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.184146,0.011255,-0.015252,0.249534,0,0);}
.m25_c00018{transform:matrix(0.184236,0.009590,-0.012995,0.249662,0,0);-ms-transform:matrix(0.184236,0.009590,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.184236,0.009590,-0.012995,0.249662,0,0);}
.m7f_c00018{transform:matrix(0.184963,0.012047,-0.016248,0.249471,0,0);-ms-transform:matrix(0.184963,0.012047,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.184963,0.012047,-0.016248,0.249471,0,0);}
.m23_c00018{transform:matrix(0.185104,0.009635,-0.012995,0.249662,0,0);-ms-transform:matrix(0.185104,0.009635,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.185104,0.009635,-0.012995,0.249662,0,0);}
.m20_c00018{transform:matrix(0.185719,0.009667,-0.012995,0.249662,0,0);-ms-transform:matrix(0.185719,0.009667,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.185719,0.009667,-0.012995,0.249662,0,0);}
.mfd_c00018{transform:matrix(0.186213,0.009693,-0.012995,0.249662,0,0);-ms-transform:matrix(0.186213,0.009693,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.186213,0.009693,-0.012995,0.249662,0,0);}
.mc4_c00018{transform:matrix(0.186245,0.011010,-0.014754,0.249564,0,0);-ms-transform:matrix(0.186245,0.011010,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.186245,0.011010,-0.014754,0.249564,0,0);}
.m1c_c00018{transform:matrix(0.186323,0.009698,-0.012995,0.249662,0,0);-ms-transform:matrix(0.186323,0.009698,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.186323,0.009698,-0.012995,0.249662,0,0);}
.m5_c00018{transform:matrix(0.186424,0.008211,-0.011000,0.249758,0,0);-ms-transform:matrix(0.186424,0.008211,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.186424,0.008211,-0.011000,0.249758,0,0);}
.m9b_c00018{transform:matrix(0.186969,0.011053,-0.014754,0.249564,0,0);-ms-transform:matrix(0.186969,0.011053,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.186969,0.011053,-0.014754,0.249564,0,0);}
.m53_c00018{transform:matrix(0.187096,0.010311,-0.013757,0.249621,0,0);-ms-transform:matrix(0.187096,0.010311,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.187096,0.010311,-0.013757,0.249621,0,0);}
.m90_c00018{transform:matrix(0.187183,0.012191,-0.016248,0.249471,0,0);-ms-transform:matrix(0.187183,0.012191,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.187183,0.012191,-0.016248,0.249471,0,0);}
.m2e_c00018{transform:matrix(0.187461,0.008632,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187461,0.008632,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187461,0.008632,-0.011499,0.249735,0,0);}
.m12_c00018{transform:matrix(0.187693,0.008267,-0.011000,0.249758,0,0);-ms-transform:matrix(0.187693,0.008267,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.187693,0.008267,-0.011000,0.249758,0,0);}
.mbe_c00018{transform:matrix(0.188341,0.011134,-0.014754,0.249564,0,0);-ms-transform:matrix(0.188341,0.011134,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.188341,0.011134,-0.014754,0.249564,0,0);}
.m2f_c00018{transform:matrix(0.188605,0.008685,-0.011499,0.249735,0,0);-ms-transform:matrix(0.188605,0.008685,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.188605,0.008685,-0.011499,0.249735,0,0);}
.mb_c00018{transform:matrix(0.189192,0.008333,-0.011000,0.249758,0,0);-ms-transform:matrix(0.189192,0.008333,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.189192,0.008333,-0.011000,0.249758,0,0);}
.mcc_c00018{transform:matrix(0.189412,0.010628,-0.014006,0.249607,0,0);-ms-transform:matrix(0.189412,0.010628,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.189412,0.010628,-0.014006,0.249607,0,0);}
.m93_c00018{transform:matrix(0.189454,0.012339,-0.016248,0.249471,0,0);-ms-transform:matrix(0.189454,0.012339,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.189454,0.012339,-0.016248,0.249471,0,0);}
.m73_c00018{transform:matrix(0.189552,0.010446,-0.013757,0.249621,0,0);-ms-transform:matrix(0.189552,0.010446,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.189552,0.010446,-0.013757,0.249621,0,0);}
.m9_c00018{transform:matrix(0.190365,0.008384,-0.011000,0.249758,0,0);-ms-transform:matrix(0.190365,0.008384,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.190365,0.008384,-0.011000,0.249758,0,0);}
.m17_c00018{transform:matrix(0.190590,0.008394,-0.011000,0.249758,0,0);-ms-transform:matrix(0.190590,0.008394,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.190590,0.008394,-0.011000,0.249758,0,0);}
.m8_c00018{transform:matrix(0.190730,0.008401,-0.011000,0.249758,0,0);-ms-transform:matrix(0.190730,0.008401,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.190730,0.008401,-0.011000,0.249758,0,0);}
.m7e_c00018{transform:matrix(0.190815,0.010516,-0.013757,0.249621,0,0);-ms-transform:matrix(0.190815,0.010516,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.190815,0.010516,-0.013757,0.249621,0,0);}
.m6f_c00018{transform:matrix(0.191210,0.010538,-0.013757,0.249621,0,0);-ms-transform:matrix(0.191210,0.010538,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.191210,0.010538,-0.013757,0.249621,0,0);}
.m43_c00018{transform:matrix(0.191330,0.010544,-0.013757,0.249621,0,0);-ms-transform:matrix(0.191330,0.010544,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.191330,0.010544,-0.013757,0.249621,0,0);}
.m49_c00018{transform:matrix(0.191869,0.010574,-0.013757,0.249621,0,0);-ms-transform:matrix(0.191869,0.010574,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.191869,0.010574,-0.013757,0.249621,0,0);}
.md8_c00018{transform:matrix(0.192206,0.011748,-0.015252,0.249534,0,0);-ms-transform:matrix(0.192206,0.011748,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.192206,0.011748,-0.015252,0.249534,0,0);}
.m82_c00018{transform:matrix(0.192213,0.012519,-0.016248,0.249471,0,0);-ms-transform:matrix(0.192213,0.012519,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.192213,0.012519,-0.016248,0.249471,0,0);}
.m4d_c00018{transform:matrix(0.192917,0.010632,-0.013757,0.249621,0,0);-ms-transform:matrix(0.192917,0.010632,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.192917,0.010632,-0.013757,0.249621,0,0);}
.m31_c00018{transform:matrix(0.192971,0.008886,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192971,0.008886,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192971,0.008886,-0.011499,0.249735,0,0);}
.m7b_c00018{transform:matrix(0.192972,0.010635,-0.013757,0.249621,0,0);-ms-transform:matrix(0.192972,0.010635,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.192972,0.010635,-0.013757,0.249621,0,0);}
.m27_c00018{transform:matrix(0.193004,0.010046,-0.012995,0.249662,0,0);-ms-transform:matrix(0.193004,0.010046,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.193004,0.010046,-0.012995,0.249662,0,0);}
.m4a_c00018{transform:matrix(0.193272,0.010651,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193272,0.010651,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193272,0.010651,-0.013757,0.249621,0,0);}
.mdd_c00018{transform:matrix(0.193343,0.009870,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193343,0.009870,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193343,0.009870,-0.012746,0.249675,0,0);}
.m35_c00018{transform:matrix(0.193425,0.008906,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193425,0.008906,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193425,0.008906,-0.011499,0.249735,0,0);}
.me8_c00018{transform:matrix(0.193608,0.009884,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193608,0.009884,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193608,0.009884,-0.012746,0.249675,0,0);}
.m64_c00018{transform:matrix(0.193611,0.010670,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193611,0.010670,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193611,0.010670,-0.013757,0.249621,0,0);}
.mee_c00018{transform:matrix(0.193643,0.009886,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193643,0.009886,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193643,0.009886,-0.012746,0.249675,0,0);}
.m47_c00018{transform:matrix(0.193706,0.010675,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193706,0.010675,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193706,0.010675,-0.013757,0.249621,0,0);}
.mfa_c00018{transform:matrix(0.194367,0.009923,-0.012746,0.249675,0,0);-ms-transform:matrix(0.194367,0.009923,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.194367,0.009923,-0.012746,0.249675,0,0);}
.mdf_c00018{transform:matrix(0.194662,0.009938,-0.012746,0.249675,0,0);-ms-transform:matrix(0.194662,0.009938,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.194662,0.009938,-0.012746,0.249675,0,0);}
.m9d_c00018{transform:matrix(0.196023,0.011589,-0.014754,0.249564,0,0);-ms-transform:matrix(0.196023,0.011589,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.196023,0.011589,-0.014754,0.249564,0,0);}
.m15_c00018{transform:matrix(0.196604,0.008659,-0.011000,0.249758,0,0);-ms-transform:matrix(0.196604,0.008659,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.196604,0.008659,-0.011000,0.249758,0,0);}
.m50_c00018{transform:matrix(0.196667,0.010838,-0.013757,0.249621,0,0);-ms-transform:matrix(0.196667,0.010838,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.196667,0.010838,-0.013757,0.249621,0,0);}
.mcb_c00018{transform:matrix(0.196845,0.011045,-0.014006,0.249607,0,0);-ms-transform:matrix(0.196845,0.011045,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.196845,0.011045,-0.014006,0.249607,0,0);}
.m24_c00018{transform:matrix(0.196953,0.010252,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196953,0.010252,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196953,0.010252,-0.012995,0.249662,0,0);}
.m3b_c00018{transform:matrix(0.197536,0.009096,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197536,0.009096,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197536,0.009096,-0.011499,0.249735,0,0);}
.m16_c00018{transform:matrix(0.198188,0.008729,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198188,0.008729,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198188,0.008729,-0.011000,0.249758,0,0);}
.mf6_c00018{transform:matrix(0.198257,0.010121,-0.012746,0.249675,0,0);-ms-transform:matrix(0.198257,0.010121,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.198257,0.010121,-0.012746,0.249675,0,0);}
.m13_c00018{transform:matrix(0.198642,0.008749,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198642,0.008749,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198642,0.008749,-0.011000,0.249758,0,0);}
.mac_c00018{transform:matrix(0.198753,0.011750,-0.014754,0.249564,0,0);-ms-transform:matrix(0.198753,0.011750,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.198753,0.011750,-0.014754,0.249564,0,0);}
.m22_c00018{transform:matrix(0.199011,0.010359,-0.012995,0.249662,0,0);-ms-transform:matrix(0.199011,0.010359,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.199011,0.010359,-0.012995,0.249662,0,0);}
.mfb_c00018{transform:matrix(0.199056,0.010162,-0.012746,0.249675,0,0);-ms-transform:matrix(0.199056,0.010162,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.199056,0.010162,-0.012746,0.249675,0,0);}
.mb2_c00018{transform:matrix(0.199467,0.011792,-0.014754,0.249564,0,0);-ms-transform:matrix(0.199467,0.011792,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.199467,0.011792,-0.014754,0.249564,0,0);}
.m9f_c00018{transform:matrix(0.199497,0.011794,-0.014754,0.249564,0,0);-ms-transform:matrix(0.199497,0.011794,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.199497,0.011794,-0.014754,0.249564,0,0);}
.m7_c00018{transform:matrix(0.200096,0.008813,-0.011000,0.249758,0,0);-ms-transform:matrix(0.200096,0.008813,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.200096,0.008813,-0.011000,0.249758,0,0);}
.mb4_c00018{transform:matrix(0.201688,0.011923,-0.014754,0.249564,0,0);-ms-transform:matrix(0.201688,0.011923,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.201688,0.011923,-0.014754,0.249564,0,0);}
.mf9_c00018{transform:matrix(0.201952,0.010310,-0.012746,0.249675,0,0);-ms-transform:matrix(0.201952,0.010310,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.201952,0.010310,-0.012746,0.249675,0,0);}
.mea_c00018{transform:matrix(0.201987,0.010312,-0.012746,0.249675,0,0);-ms-transform:matrix(0.201987,0.010312,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.201987,0.010312,-0.012746,0.249675,0,0);}
.m34_c00018{transform:matrix(0.202096,0.009306,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202096,0.009306,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202096,0.009306,-0.011499,0.249735,0,0);}
.m19_c00018{transform:matrix(0.202154,0.008904,-0.011000,0.249758,0,0);-ms-transform:matrix(0.202154,0.008904,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.202154,0.008904,-0.011000,0.249758,0,0);}
.ma1_c00018{transform:matrix(0.202257,0.011957,-0.014754,0.249564,0,0);-ms-transform:matrix(0.202257,0.011957,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.202257,0.011957,-0.014754,0.249564,0,0);}
.m56_c00018{transform:matrix(0.202887,0.011181,-0.013757,0.249621,0,0);-ms-transform:matrix(0.202887,0.011181,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.202887,0.011181,-0.013757,0.249621,0,0);}
.mb1_c00018{transform:matrix(0.203375,0.012023,-0.014754,0.249564,0,0);-ms-transform:matrix(0.203375,0.012023,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.203375,0.012023,-0.014754,0.249564,0,0);}
.m80_c00018{transform:matrix(0.203868,0.013278,-0.016248,0.249471,0,0);-ms-transform:matrix(0.203868,0.013278,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.203868,0.013278,-0.016248,0.249471,0,0);}
.m46_c00018{transform:matrix(0.204470,0.011268,-0.013757,0.249621,0,0);-ms-transform:matrix(0.204470,0.011268,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.204470,0.011268,-0.013757,0.249621,0,0);}
.m1b_c00018{transform:matrix(0.204512,0.009008,-0.011000,0.249758,0,0);-ms-transform:matrix(0.204512,0.009008,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.204512,0.009008,-0.011000,0.249758,0,0);}
.mc0_c00018{transform:matrix(0.204822,0.012109,-0.014754,0.249564,0,0);-ms-transform:matrix(0.204822,0.012109,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.204822,0.012109,-0.014754,0.249564,0,0);}
.m2c_c00018{transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);}
.m8c_c00018{transform:matrix(0.205185,0.013364,-0.016248,0.249471,0,0);-ms-transform:matrix(0.205185,0.013364,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.205185,0.013364,-0.016248,0.249471,0,0);}
.m8b_c00018{transform:matrix(0.205340,0.013374,-0.016248,0.249471,0,0);-ms-transform:matrix(0.205340,0.013374,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.205340,0.013374,-0.016248,0.249471,0,0);}
.m45_c00018{transform:matrix(0.205743,0.011339,-0.013757,0.249621,0,0);-ms-transform:matrix(0.205743,0.011339,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.205743,0.011339,-0.013757,0.249621,0,0);}
.mb7_c00018{transform:matrix(0.206015,0.012179,-0.014754,0.249564,0,0);-ms-transform:matrix(0.206015,0.012179,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.206015,0.012179,-0.014754,0.249564,0,0);}
.md0_c00018{transform:matrix(0.206315,0.011577,-0.014006,0.249607,0,0);-ms-transform:matrix(0.206315,0.011577,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.206315,0.011577,-0.014006,0.249607,0,0);}
.m40_c00018{transform:matrix(0.206517,0.011381,-0.013757,0.249621,0,0);-ms-transform:matrix(0.206517,0.011381,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.206517,0.011381,-0.013757,0.249621,0,0);}
.mca_c00018{transform:matrix(0.207089,0.011620,-0.014006,0.249607,0,0);-ms-transform:matrix(0.207089,0.011620,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.207089,0.011620,-0.014006,0.249607,0,0);}
.m87_c00018{transform:matrix(0.207161,0.013492,-0.016248,0.249471,0,0);-ms-transform:matrix(0.207161,0.013492,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.207161,0.013492,-0.016248,0.249471,0,0);}
.m5e_c00018{transform:matrix(0.207720,0.011447,-0.013757,0.249621,0,0);-ms-transform:matrix(0.207720,0.011447,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.207720,0.011447,-0.013757,0.249621,0,0);}
.m48_c00018{transform:matrix(0.208019,0.011464,-0.013757,0.249621,0,0);-ms-transform:matrix(0.208019,0.011464,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.208019,0.011464,-0.013757,0.249621,0,0);}
.m3a_c00018{transform:matrix(0.208164,0.009585,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208164,0.009585,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208164,0.009585,-0.011499,0.249735,0,0);}
.m65_c00018{transform:matrix(0.208938,0.011515,-0.013757,0.249621,0,0);-ms-transform:matrix(0.208938,0.011515,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.208938,0.011515,-0.013757,0.249621,0,0);}
.mf_c00018{transform:matrix(0.209547,0.009229,-0.011000,0.249758,0,0);-ms-transform:matrix(0.209547,0.009229,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.209547,0.009229,-0.011000,0.249758,0,0);}
.mb0_c00018{transform:matrix(0.210198,0.012427,-0.014754,0.249564,0,0);-ms-transform:matrix(0.210198,0.012427,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.210198,0.012427,-0.014754,0.249564,0,0);}
.md9_c00018{transform:matrix(0.210732,0.012880,-0.015252,0.249534,0,0);-ms-transform:matrix(0.210732,0.012880,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.210732,0.012880,-0.015252,0.249534,0,0);}
.mda_c00018{transform:matrix(0.211301,0.012915,-0.015252,0.249534,0,0);-ms-transform:matrix(0.211301,0.012915,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.211301,0.012915,-0.015252,0.249534,0,0);}
.mba_c00018{transform:matrix(0.211416,0.012499,-0.014754,0.249564,0,0);-ms-transform:matrix(0.211416,0.012499,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.211416,0.012499,-0.014754,0.249564,0,0);}
.m6b_c00018{transform:matrix(0.211943,0.011680,-0.013757,0.249621,0,0);-ms-transform:matrix(0.211943,0.011680,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.211943,0.011680,-0.013757,0.249621,0,0);}
.m70_c00018{transform:matrix(0.212223,0.011696,-0.013757,0.249621,0,0);-ms-transform:matrix(0.212223,0.011696,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.212223,0.011696,-0.013757,0.249621,0,0);}
.m68_c00018{transform:matrix(0.212263,0.011698,-0.013757,0.249621,0,0);-ms-transform:matrix(0.212263,0.011698,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.212263,0.011698,-0.013757,0.249621,0,0);}
.m95_c00018{transform:matrix(0.212595,0.013846,-0.016248,0.249471,0,0);-ms-transform:matrix(0.212595,0.013846,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.212595,0.013846,-0.016248,0.249471,0,0);}
.mfe_c00018{transform:matrix(0.212842,0.011079,-0.012995,0.249662,0,0);-ms-transform:matrix(0.212842,0.011079,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.212842,0.011079,-0.012995,0.249662,0,0);}
.m94_c00018{transform:matrix(0.213548,0.013908,-0.016248,0.249471,0,0);-ms-transform:matrix(0.213548,0.013908,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.213548,0.013908,-0.016248,0.249471,0,0);}
.maa_c00018{transform:matrix(0.213946,0.012648,-0.014754,0.249564,0,0);-ms-transform:matrix(0.213946,0.012648,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.213946,0.012648,-0.014754,0.249564,0,0);}
.mb3_c00018{transform:matrix(0.214251,0.012666,-0.014754,0.249564,0,0);-ms-transform:matrix(0.214251,0.012666,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.214251,0.012666,-0.014754,0.249564,0,0);}
.me0_c00018{transform:matrix(0.214546,0.010953,-0.012746,0.249675,0,0);-ms-transform:matrix(0.214546,0.010953,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.214546,0.010953,-0.012746,0.249675,0,0);}
.ma2_c00018{transform:matrix(0.215534,0.012742,-0.014754,0.249564,0,0);-ms-transform:matrix(0.215534,0.012742,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.215534,0.012742,-0.014754,0.249564,0,0);}
.m84_c00018{transform:matrix(0.215553,0.014039,-0.016248,0.249471,0,0);-ms-transform:matrix(0.215553,0.014039,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.215553,0.014039,-0.016248,0.249471,0,0);}
.md7_c00018{transform:matrix(0.215682,0.013183,-0.015252,0.249534,0,0);-ms-transform:matrix(0.215682,0.013183,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.215682,0.013183,-0.015252,0.249534,0,0);}
.m8d_c00018{transform:matrix(0.216082,0.014073,-0.016248,0.249471,0,0);-ms-transform:matrix(0.216082,0.014073,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.216082,0.014073,-0.016248,0.249471,0,0);}
.mc7_c00018{transform:matrix(0.216487,0.012798,-0.014754,0.249564,0,0);-ms-transform:matrix(0.216487,0.012798,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.216487,0.012798,-0.014754,0.249564,0,0);}
.m71_c00018{transform:matrix(0.216596,0.011937,-0.013757,0.249621,0,0);-ms-transform:matrix(0.216596,0.011937,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.216596,0.011937,-0.013757,0.249621,0,0);}
.m92_c00018{transform:matrix(0.216626,0.014109,-0.016248,0.249471,0,0);-ms-transform:matrix(0.216626,0.014109,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.216626,0.014109,-0.016248,0.249471,0,0);}
.m33_c00018{transform:matrix(0.217085,0.009996,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217085,0.009996,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217085,0.009996,-0.011499,0.249735,0,0);}
.m8f_c00018{transform:matrix(0.217534,0.014168,-0.016248,0.249471,0,0);-ms-transform:matrix(0.217534,0.014168,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.217534,0.014168,-0.016248,0.249471,0,0);}
.m69_c00018{transform:matrix(0.218014,0.012015,-0.013757,0.249621,0,0);-ms-transform:matrix(0.218014,0.012015,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.218014,0.012015,-0.013757,0.249621,0,0);}
.md4_c00018{transform:matrix(0.219185,0.012299,-0.014006,0.249607,0,0);-ms-transform:matrix(0.219185,0.012299,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.219185,0.012299,-0.014006,0.249607,0,0);}
.m66_c00018{transform:matrix(0.219487,0.012096,-0.013757,0.249621,0,0);-ms-transform:matrix(0.219487,0.012096,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.219487,0.012096,-0.013757,0.249621,0,0);}
.m85_c00018{transform:matrix(0.219505,0.014296,-0.016248,0.249471,0,0);-ms-transform:matrix(0.219505,0.014296,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.219505,0.014296,-0.016248,0.249471,0,0);}
.mc8_c00018{transform:matrix(0.219622,0.012984,-0.014754,0.249564,0,0);-ms-transform:matrix(0.219622,0.012984,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.219622,0.012984,-0.014754,0.249564,0,0);}
.m88_c00018{transform:matrix(0.219714,0.014310,-0.016248,0.249471,0,0);-ms-transform:matrix(0.219714,0.014310,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.219714,0.014310,-0.016248,0.249471,0,0);}
.m18_c00018{transform:matrix(0.219907,0.009686,-0.011000,0.249758,0,0);-ms-transform:matrix(0.219907,0.009686,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.219907,0.009686,-0.011000,0.249758,0,0);}
.m74_c00018{transform:matrix(0.220186,0.012134,-0.013757,0.249621,0,0);-ms-transform:matrix(0.220186,0.012134,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.220186,0.012134,-0.013757,0.249621,0,0);}
.mcd_c00018{transform:matrix(0.220229,0.012358,-0.014006,0.249607,0,0);-ms-transform:matrix(0.220229,0.012358,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.220229,0.012358,-0.014006,0.249607,0,0);}
.m75_c00018{transform:matrix(0.220291,0.012140,-0.013757,0.249621,0,0);-ms-transform:matrix(0.220291,0.012140,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.220291,0.012140,-0.013757,0.249621,0,0);}
.mb5_c00018{transform:matrix(0.220485,0.013035,-0.014754,0.249564,0,0);-ms-transform:matrix(0.220485,0.013035,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.220485,0.013035,-0.014754,0.249564,0,0);}
.ma3_c00018{transform:matrix(0.220575,0.013040,-0.014754,0.249564,0,0);-ms-transform:matrix(0.220575,0.013040,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.220575,0.013040,-0.014754,0.249564,0,0);}
.mde_c00018{transform:matrix(0.220698,0.011267,-0.012746,0.249675,0,0);-ms-transform:matrix(0.220698,0.011267,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.220698,0.011267,-0.012746,0.249675,0,0);}
.ma6_c00018{transform:matrix(0.220799,0.013053,-0.014754,0.249564,0,0);-ms-transform:matrix(0.220799,0.013053,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.220799,0.013053,-0.014754,0.249564,0,0);}
.m60_c00018{transform:matrix(0.221159,0.012188,-0.013757,0.249621,0,0);-ms-transform:matrix(0.221159,0.012188,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.221159,0.012188,-0.013757,0.249621,0,0);}
.ma9_c00018{transform:matrix(0.221643,0.013103,-0.014754,0.249564,0,0);-ms-transform:matrix(0.221643,0.013103,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.221643,0.013103,-0.014754,0.249564,0,0);}
.mad_c00018{transform:matrix(0.221763,0.013110,-0.014754,0.249564,0,0);-ms-transform:matrix(0.221763,0.013110,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.221763,0.013110,-0.014754,0.249564,0,0);}
.m5f_c00018{transform:matrix(0.221778,0.012222,-0.013757,0.249621,0,0);-ms-transform:matrix(0.221778,0.012222,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.221778,0.012222,-0.013757,0.249621,0,0);}
.ma0_c00018{transform:matrix(0.221982,0.013123,-0.014754,0.249564,0,0);-ms-transform:matrix(0.221982,0.013123,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.221982,0.013123,-0.014754,0.249564,0,0);}
.mce_c00018{transform:matrix(0.222415,0.012480,-0.014006,0.249607,0,0);-ms-transform:matrix(0.222415,0.012480,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.222415,0.012480,-0.014006,0.249607,0,0);}
.mbb_c00018{transform:matrix(0.222457,0.013151,-0.014754,0.249564,0,0);-ms-transform:matrix(0.222457,0.013151,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.222457,0.013151,-0.014754,0.249564,0,0);}
.m4c_c00018{transform:matrix(0.222537,0.012264,-0.013757,0.249621,0,0);-ms-transform:matrix(0.222537,0.012264,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.222537,0.012264,-0.013757,0.249621,0,0);}
.m51_c00018{transform:matrix(0.223146,0.012298,-0.013757,0.249621,0,0);-ms-transform:matrix(0.223146,0.012298,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.223146,0.012298,-0.013757,0.249621,0,0);}
.m5b_c00018{transform:matrix(0.224225,0.012357,-0.013757,0.249621,0,0);-ms-transform:matrix(0.224225,0.012357,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.224225,0.012357,-0.013757,0.249621,0,0);}
.m61_c00018{transform:matrix(0.224854,0.012392,-0.013757,0.249621,0,0);-ms-transform:matrix(0.224854,0.012392,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.224854,0.012392,-0.013757,0.249621,0,0);}
.m4e_c00018{transform:matrix(0.224989,0.012399,-0.013757,0.249621,0,0);-ms-transform:matrix(0.224989,0.012399,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.224989,0.012399,-0.013757,0.249621,0,0);}
.m62_c00018{transform:matrix(0.225163,0.012409,-0.013757,0.249621,0,0);-ms-transform:matrix(0.225163,0.012409,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.225163,0.012409,-0.013757,0.249621,0,0);}
.mfc_c00018{transform:matrix(0.225724,0.011749,-0.012995,0.249662,0,0);-ms-transform:matrix(0.225724,0.011749,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.225724,0.011749,-0.012995,0.249662,0,0);}
.m6c_c00018{transform:matrix(0.226112,0.012461,-0.013757,0.249621,0,0);-ms-transform:matrix(0.226112,0.012461,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.226112,0.012461,-0.013757,0.249621,0,0);}
.mf1_c00018{transform:matrix(0.226225,0.011549,-0.012746,0.249675,0,0);-ms-transform:matrix(0.226225,0.011549,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.226225,0.011549,-0.012746,0.249675,0,0);}
.meb_c00018{transform:matrix(0.226325,0.011554,-0.012746,0.249675,0,0);-ms-transform:matrix(0.226325,0.011554,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.226325,0.011554,-0.012746,0.249675,0,0);}
.mcf_c00018{transform:matrix(0.226394,0.012703,-0.014006,0.249607,0,0);-ms-transform:matrix(0.226394,0.012703,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.226394,0.012703,-0.014006,0.249607,0,0);}
.ma5_c00018{transform:matrix(0.227997,0.013479,-0.014754,0.249564,0,0);-ms-transform:matrix(0.227997,0.013479,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.227997,0.013479,-0.014754,0.249564,0,0);}
.m63_c00018{transform:matrix(0.228813,0.012610,-0.013757,0.249621,0,0);-ms-transform:matrix(0.228813,0.012610,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.228813,0.012610,-0.013757,0.249621,0,0);}
.m89_c00018{transform:matrix(0.230507,0.015013,-0.016248,0.249471,0,0);-ms-transform:matrix(0.230507,0.015013,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.230507,0.015013,-0.016248,0.249471,0,0);}
.ma7_c00018{transform:matrix(0.232814,0.013764,-0.014754,0.249564,0,0);-ms-transform:matrix(0.232814,0.013764,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.232814,0.013764,-0.014754,0.249564,0,0);}
.m7a_c00018{transform:matrix(0.233246,0.012854,-0.013757,0.249621,0,0);-ms-transform:matrix(0.233246,0.012854,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.233246,0.012854,-0.013757,0.249621,0,0);}
.m4b_c00018{transform:matrix(0.235762,0.012993,-0.013757,0.249621,0,0);-ms-transform:matrix(0.235762,0.012993,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.235762,0.012993,-0.013757,0.249621,0,0);}
.m10_c00018{transform:matrix(0.235986,0.010394,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235986,0.010394,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235986,0.010394,-0.011000,0.249758,0,0);}
.m99_c00018{transform:matrix(0.238504,0.014100,-0.014754,0.249564,0,0);-ms-transform:matrix(0.238504,0.014100,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.238504,0.014100,-0.014754,0.249564,0,0);}
.mff_c00018{transform:matrix(0.239156,0.012449,-0.012995,0.249662,0,0);-ms-transform:matrix(0.239156,0.012449,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.239156,0.012449,-0.012995,0.249662,0,0);}
.m100_c00018{transform:matrix(0.241169,0.012553,-0.012995,0.249662,0,0);-ms-transform:matrix(0.241169,0.012553,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.241169,0.012553,-0.012995,0.249662,0,0);}
.mab_c00018{transform:matrix(0.241384,0.014270,-0.014754,0.249564,0,0);-ms-transform:matrix(0.241384,0.014270,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.241384,0.014270,-0.014754,0.249564,0,0);}
.m96_c00018{transform:matrix(0.243604,0.015866,-0.016248,0.249471,0,0);-ms-transform:matrix(0.243604,0.015866,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.243604,0.015866,-0.016248,0.249471,0,0);}
.mf2_c00018{transform:matrix(0.244237,0.012469,-0.012746,0.249675,0,0);-ms-transform:matrix(0.244237,0.012469,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.244237,0.012469,-0.012746,0.249675,0,0);}
.m5c_c00018{transform:matrix(0.245333,0.013520,-0.013757,0.249621,0,0);-ms-transform:matrix(0.245333,0.013520,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.245333,0.013520,-0.013757,0.249621,0,0);}
.md2_c00018{transform:matrix(0.251165,0.014093,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251165,0.014093,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251165,0.014093,-0.014006,0.249607,0,0);}
.mf8_c00018{transform:matrix(0.251727,0.012851,-0.012746,0.249675,0,0);-ms-transform:matrix(0.251727,0.012851,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.251727,0.012851,-0.012746,0.249675,0,0);}
.m8e_c00018{transform:matrix(0.252101,0.016419,-0.016248,0.249471,0,0);-ms-transform:matrix(0.252101,0.016419,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.252101,0.016419,-0.016248,0.249471,0,0);}
.m2_c00018{transform:matrix(0.253031,0.010638,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253031,0.010638,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253031,0.010638,-0.010501,0.249779,0,0);}
.m1_c00018{transform:matrix(0.260880,0.010968,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260880,0.010968,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260880,0.010968,-0.010501,0.249779,0,0);}
.ma4_c00018{transform:matrix(0.264798,0.015654,-0.014754,0.249564,0,0);-ms-transform:matrix(0.264798,0.015654,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.264798,0.015654,-0.014754,0.249564,0,0);}
.m44_c00018{transform:matrix(0.297179,0.016378,-0.013757,0.249621,0,0);-ms-transform:matrix(0.297179,0.016378,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.297179,0.016378,-0.013757,0.249621,0,0);}
.md1_c00018{transform:matrix(0.306513,0.017199,-0.014006,0.249607,0,0);-ms-transform:matrix(0.306513,0.017199,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.306513,0.017199,-0.014006,0.249607,0,0);}
.me_c00018{transform:matrix(0.422670,0.018616,-0.011000,0.249758,0,0);-ms-transform:matrix(0.422670,0.018616,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.422670,0.018616,-0.011000,0.249758,0,0);}
.m3_c00018{transform:matrix(0.486031,0.020434,-0.010501,0.249779,0,0);-ms-transform:matrix(0.486031,0.020434,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.486031,0.020434,-0.010501,0.249779,0,0);}
.m86_c00018{transform:matrix(0.513093,0.033418,-0.016248,0.249471,0,0);-ms-transform:matrix(0.513093,0.033418,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.513093,0.033418,-0.016248,0.249471,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
.fc0_c00018{color:transparent;}
.fs0_c00018{font-size:31.496299px;}
.fs9_c00018{font-size:57.721956px;}
.fs18_c00018{font-size:57.725162px;}
.fs13_c00018{font-size:58.784857px;}
.fs1e_c00018{font-size:58.820723px;}
.fs14_c00018{font-size:59.834587px;}
.fs11_c00018{font-size:59.856852px;}
.fsd_c00018{font-size:60.870426px;}
.fs3_c00018{font-size:60.898082px;}
.fsb_c00018{font-size:61.919916px;}
.fs15_c00018{font-size:61.934046px;}
.fs10_c00018{font-size:61.957093px;}
.fs1d_c00018{font-size:61.968644px;}
.fsc_c00018{font-size:62.969406px;}
.fs17_c00018{font-size:62.983775px;}
.fsf_c00018{font-size:63.007213px;}
.fs2_c00018{font-size:64.047982px;}
.fs1b_c00018{font-size:65.119592px;}
.fs19_c00018{font-size:66.140904px;}
.fs8_c00018{font-size:67.167366px;}
.fs12_c00018{font-size:67.182694px;}
.fs7_c00018{font-size:67.203931px;}
.fs16_c00018{font-size:68.232423px;}
.fs1_c00018{font-size:68.247850px;}
.fs6_c00018{font-size:68.253993px;}
.fsa_c00018{font-size:69.266347px;}
.fs1c_c00018{font-size:69.320856px;}
.fs1a_c00018{font-size:70.371172px;}
.fs4_c00018{font-size:70.374794px;}
.fse_c00018{font-size:71.365327px;}
.fs5_c00018{font-size:71.425164px;}
.y0_c00018{bottom:0.000000px;}
.y102_c00018{bottom:27.878196px;}
.y101_c00018{bottom:28.302672px;}
.y100_c00018{bottom:33.246702px;}
.yff_c00018{bottom:34.262808px;}
.yfe_c00018{bottom:38.101500px;}
.yfd_c00018{bottom:43.288822px;}
.yfc_c00018{bottom:44.544525px;}
.yfb_c00018{bottom:46.840218px;}
.yfa_c00018{bottom:50.637435px;}
.yf9_c00018{bottom:50.996904px;}
.yf8_c00018{bottom:54.312009px;}
.yf7_c00018{bottom:55.638672px;}
.yf6_c00018{bottom:58.682180px;}
.yf5_c00018{bottom:60.452673px;}
.yf4_c00018{bottom:61.303745px;}
.yf3_c00018{bottom:63.883860px;}
.yf2_c00018{bottom:64.918819px;}
.yf1_c00018{bottom:68.362202px;}
.yf0_c00018{bottom:70.755981px;}
.yef_c00018{bottom:74.844172px;}
.yee_c00018{bottom:76.139929px;}
.yed_c00018{bottom:79.466860px;}
.yec_c00018{bottom:79.945714px;}
.yeb_c00018{bottom:83.287104px;}
.yea_c00018{bottom:86.060733px;}
.ye9_c00018{bottom:86.963132px;}
.ye8_c00018{bottom:88.119798px;}
.ye7_c00018{bottom:89.386440px;}
.ye6_c00018{bottom:92.588195px;}
.ye5_c00018{bottom:93.787408px;}
.ye4_c00018{bottom:94.818093px;}
.ye3_c00018{bottom:96.968355px;}
.ye2_c00018{bottom:97.751562px;}
.ye1_c00018{bottom:101.046035px;}
.ye0_c00018{bottom:105.121113px;}
.ydf_c00018{bottom:106.143000px;}
.yde_c00018{bottom:107.773278px;}
.ydd_c00018{bottom:109.275250px;}
.ydc_c00018{bottom:110.095639px;}
.ydb_c00018{bottom:113.773299px;}
.yda_c00018{bottom:114.995830px;}
.yd9_c00018{bottom:117.734791px;}
.yd8_c00018{bottom:119.438064px;}
.yd7_c00018{bottom:123.975000px;}
.yd6_c00018{bottom:126.251520px;}
.yd5_c00018{bottom:127.521264px;}
.yd4_c00018{bottom:128.645184px;}
.yd3_c00018{bottom:130.764504px;}
.yd2_c00018{bottom:132.628128px;}
.yd1_c00018{bottom:134.575668px;}
.yd0_c00018{bottom:136.150668px;}
.ycf_c00018{bottom:137.212596px;}
.yce_c00018{bottom:138.654204px;}
.ycd_c00018{bottom:139.640700px;}
.ycc_c00018{bottom:141.516000px;}
.ycb_c00018{bottom:142.790206px;}
.yca_c00018{bottom:145.205310px;}
.yc9_c00018{bottom:148.596336px;}
.yc8_c00018{bottom:149.609016px;}
.yc7_c00018{bottom:151.477884px;}
.yc6_c00018{bottom:152.523501px;}
.yc5_c00018{bottom:154.496247px;}
.yc4_c00018{bottom:155.465974px;}
.yc3_c00018{bottom:156.930924px;}
.yc2_c00018{bottom:157.770679px;}
.yc1_c00018{bottom:160.189953px;}
.yc0_c00018{bottom:161.581606px;}
.ybf_c00018{bottom:164.288758px;}
.ybe_c00018{bottom:165.193384px;}
.ybd_c00018{bottom:168.675081px;}
.ybc_c00018{bottom:169.397911px;}
.ybb_c00018{bottom:170.818608px;}
.yba_c00018{bottom:173.115684px;}
.yb9_c00018{bottom:179.336290px;}
.yb8_c00018{bottom:180.263328px;}
.yb7_c00018{bottom:181.938721px;}
.yb6_c00018{bottom:184.665495px;}
.yb5_c00018{bottom:185.382079px;}
.yb4_c00018{bottom:189.933988px;}
.yb3_c00018{bottom:192.297823px;}
.yb2_c00018{bottom:194.846722px;}
.yb1_c00018{bottom:196.305772px;}
.yb0_c00018{bottom:198.036451px;}
.yaf_c00018{bottom:200.933746px;}
.yae_c00018{bottom:203.253268px;}
.yad_c00018{bottom:204.004966px;}
.yac_c00018{bottom:205.639881px;}
.yab_c00018{bottom:207.601294px;}
.yaa_c00018{bottom:209.029893px;}
.ya9_c00018{bottom:211.258749px;}
.ya8_c00018{bottom:213.824629px;}
.ya7_c00018{bottom:214.671220px;}
.ya6_c00018{bottom:220.039719px;}
.ya5_c00018{bottom:221.281993px;}
.ya4_c00018{bottom:223.830085px;}
.ya3_c00018{bottom:226.022762px;}
.ya2_c00018{bottom:228.395331px;}
.ya1_c00018{bottom:229.063240px;}
.ya0_c00018{bottom:231.403711px;}
.y9f_c00018{bottom:234.747949px;}
.y9e_c00018{bottom:235.785346px;}
.y9d_c00018{bottom:237.387816px;}
.y9c_c00018{bottom:239.677842px;}
.y9b_c00018{bottom:240.651608px;}
.y9a_c00018{bottom:241.034193px;}
.y99_c00018{bottom:242.218500px;}
.y98_c00018{bottom:243.922341px;}
.y97_c00018{bottom:245.155125px;}
.y96_c00018{bottom:248.140927px;}
.y95_c00018{bottom:249.199141px;}
.y94_c00018{bottom:250.433973px;}
.y93_c00018{bottom:252.983803px;}
.y92_c00018{bottom:254.085789px;}
.y91_c00018{bottom:257.360907px;}
.y90_c00018{bottom:260.316324px;}
.y8f_c00018{bottom:262.428979px;}
.y8e_c00018{bottom:263.732373px;}
.y8d_c00018{bottom:267.518184px;}
.y8c_c00018{bottom:268.712515px;}
.y8b_c00018{bottom:269.687616px;}
.y8a_c00018{bottom:273.853750px;}
.y89_c00018{bottom:275.010286px;}
.y88_c00018{bottom:277.925706px;}
.y87_c00018{bottom:278.312670px;}
.y86_c00018{bottom:282.506242px;}
.y85_c00018{bottom:283.623202px;}
.y84_c00018{bottom:287.800395px;}
.y83_c00018{bottom:290.591332px;}
.y82_c00018{bottom:291.892957px;}
.y80_c00018{bottom:293.727629px;}
.y81_c00018{bottom:295.159500px;}
.y7f_c00018{bottom:299.367878px;}
.y7e_c00018{bottom:301.086387px;}
.y7d_c00018{bottom:302.034638px;}
.y7c_c00018{bottom:302.968509px;}
.y7b_c00018{bottom:307.012822px;}
.y7a_c00018{bottom:308.327946px;}
.y79_c00018{bottom:311.123126px;}
.y78_c00018{bottom:312.442951px;}
.y77_c00018{bottom:314.014065px;}
.y76_c00018{bottom:314.692050px;}
.y75_c00018{bottom:318.422782px;}
.y74_c00018{bottom:319.390672px;}
.y73_c00018{bottom:323.226757px;}
.y72_c00018{bottom:327.006000px;}
.y71_c00018{bottom:332.409294px;}
.y70_c00018{bottom:333.319932px;}
.y6f_c00018{bottom:334.389198px;}
.y6e_c00018{bottom:335.649913px;}
.y6d_c00018{bottom:337.786371px;}
.y6c_c00018{bottom:338.745292px;}
.y6b_c00018{bottom:339.641034px;}
.y6a_c00018{bottom:342.359512px;}
.y69_c00018{bottom:342.964903px;}
.y68_c00018{bottom:347.067508px;}
.y67_c00018{bottom:348.791874px;}
.y66_c00018{bottom:350.842618px;}
.y65_c00018{bottom:352.463907px;}
.y64_c00018{bottom:354.685024px;}
.y63_c00018{bottom:355.725612px;}
.y62_c00018{bottom:359.906029px;}
.y61_c00018{bottom:360.521109px;}
.y60_c00018{bottom:364.180347px;}
.y5f_c00018{bottom:365.390374px;}
.y5e_c00018{bottom:372.455674px;}
.y5d_c00018{bottom:376.081632px;}
.y5c_c00018{bottom:377.257917px;}
.y5b_c00018{bottom:380.101399px;}
.y5a_c00018{bottom:382.888893px;}
.y59_c00018{bottom:383.798257px;}
.y58_c00018{bottom:384.493828px;}
.y57_c00018{bottom:386.597301px;}
.y56_c00018{bottom:387.626797px;}
.y55_c00018{bottom:391.437187px;}
.y54_c00018{bottom:394.260828px;}
.y53_c00018{bottom:395.379921px;}
.y52_c00018{bottom:397.726474px;}
.y51_c00018{bottom:399.192703px;}
.y50_c00018{bottom:403.960897px;}
.y4f_c00018{bottom:405.961398px;}
.y4e_c00018{bottom:407.220280px;}
.y4d_c00018{bottom:411.262531px;}
.y4c_c00018{bottom:413.403075px;}
.y4b_c00018{bottom:414.950857px;}
.y4a_c00018{bottom:417.002138px;}
.y49_c00018{bottom:418.161015px;}
.y48_c00018{bottom:422.203927px;}
.y47_c00018{bottom:426.517770px;}
.y46_c00018{bottom:428.093932px;}
.y45_c00018{bottom:429.149587px;}
.y44_c00018{bottom:430.650427px;}
.y43_c00018{bottom:433.118167px;}
.y42_c00018{bottom:434.783760px;}
.y41_c00018{bottom:438.501292px;}
.y40_c00018{bottom:440.287087px;}
.y3f_c00018{bottom:442.919745px;}
.y3e_c00018{bottom:443.901000px;}
.y3d_c00018{bottom:447.300002px;}
.y3c_c00018{bottom:448.099312px;}
.y3b_c00018{bottom:450.191117px;}
.y3a_c00018{bottom:451.268148px;}
.y39_c00018{bottom:453.454188px;}
.y38_c00018{bottom:454.576405px;}
.y37_c00018{bottom:456.053230px;}
.y36_c00018{bottom:458.686734px;}
.y35_c00018{bottom:461.190111px;}
.y34_c00018{bottom:463.436505px;}
.y33_c00018{bottom:464.494965px;}
.y32_c00018{bottom:466.830477px;}
.y31_c00018{bottom:467.825871px;}
.y30_c00018{bottom:470.075478px;}
.y2f_c00018{bottom:471.648885px;}
.y2e_c00018{bottom:472.115946px;}
.y2d_c00018{bottom:474.229692px;}
.y2c_c00018{bottom:475.501500px;}
.y2b_c00018{bottom:481.485372px;}
.y2a_c00018{bottom:484.564734px;}
.y29_c00018{bottom:485.349180px;}
.y28_c00018{bottom:488.613714px;}
.y27_c00018{bottom:492.086430px;}
.y26_c00018{bottom:492.987564px;}
.y25_c00018{bottom:494.938500px;}
.y24_c00018{bottom:497.905824px;}
.y23_c00018{bottom:499.071066px;}
.y22_c00018{bottom:503.705280px;}
.y21_c00018{bottom:506.987520px;}
.y20_c00018{bottom:508.292928px;}
.y1f_c00018{bottom:509.346708px;}
.y1e_c00018{bottom:511.680000px;}
.y1d_c00018{bottom:514.988210px;}
.y1c_c00018{bottom:517.023718px;}
.y1b_c00018{bottom:521.336131px;}
.y1a_c00018{bottom:522.065973px;}
.y19_c00018{bottom:524.602119px;}
.y18_c00018{bottom:525.709609px;}
.y17_c00018{bottom:528.954601px;}
.y16_c00018{bottom:532.201650px;}
.y15_c00018{bottom:533.595240px;}
.y14_c00018{bottom:536.248824px;}
.y13_c00018{bottom:538.408086px;}
.y12_c00018{bottom:539.148130px;}
.y11_c00018{bottom:540.122961px;}
.y10_c00018{bottom:541.949520px;}
.yf_c00018{bottom:543.801838px;}
.ye_c00018{bottom:548.430690px;}
.yd_c00018{bottom:549.296742px;}
.yc_c00018{bottom:551.128704px;}
.yb_c00018{bottom:551.889354px;}
.ya_c00018{bottom:552.694488px;}
.y9_c00018{bottom:555.342738px;}
.y8_c00018{bottom:557.473482px;}
.y7_c00018{bottom:558.188196px;}
.y6_c00018{bottom:559.300164px;}
.y5_c00018{bottom:561.352500px;}
.y4_c00018{bottom:574.743471px;}
.y3_c00018{bottom:575.372211px;}
.y2_c00018{bottom:578.445981px;}
.y1_c00018{bottom:580.771500px;}
.h2_c00018{height:31.496299px;}
.hb_c00018{height:57.721956px;}
.h1a_c00018{height:57.725162px;}
.h15_c00018{height:58.784857px;}
.h20_c00018{height:58.820723px;}
.h16_c00018{height:59.834587px;}
.h13_c00018{height:59.856852px;}
.hf_c00018{height:60.870426px;}
.h5_c00018{height:60.898082px;}
.hd_c00018{height:61.919916px;}
.h17_c00018{height:61.934046px;}
.h12_c00018{height:61.957093px;}
.h1f_c00018{height:61.968644px;}
.he_c00018{height:62.969406px;}
.h19_c00018{height:62.983775px;}
.h11_c00018{height:63.007213px;}
.h4_c00018{height:64.047982px;}
.h1d_c00018{height:65.119592px;}
.h1b_c00018{height:66.140904px;}
.ha_c00018{height:67.167366px;}
.h14_c00018{height:67.182694px;}
.h9_c00018{height:67.203931px;}
.h18_c00018{height:68.232423px;}
.h3_c00018{height:68.247850px;}
.h8_c00018{height:68.253993px;}
.hc_c00018{height:69.266347px;}
.h1e_c00018{height:69.320856px;}
.h1c_c00018{height:70.371172px;}
.h6_c00018{height:70.374794px;}
.h10_c00018{height:71.365327px;}
.h7_c00018{height:71.425164px;}
.h1_c00018{height:615.750000px;}
.h0_c00018{height:615.870000px;}
.w0_c00018{width:377.190000px;}
.w1_c00018{width:377.250000px;}
.x0_c00018{left:0.000000px;}
.x76_c00018{left:25.005000px;}
.x71_c00018{left:26.082000px;}
.x68_c00018{left:27.125011px;}
.x3a_c00018{left:28.329462px;}
.x42_c00018{left:29.859909px;}
.x21_c00018{left:31.840500px;}
.x5_c00018{left:32.958000px;}
.x53_c00018{left:37.149000px;}
.xf_c00018{left:38.360285px;}
.x28_c00018{left:39.831000px;}
.x48_c00018{left:40.938470px;}
.x4e_c00018{left:44.061690px;}
.x1_c00018{left:46.405500px;}
.x45_c00018{left:50.675522px;}
.x69_c00018{left:51.696688px;}
.x36_c00018{left:57.109818px;}
.x72_c00018{left:59.502525px;}
.x60_c00018{left:63.288885px;}
.x66_c00018{left:64.983421px;}
.x29_c00018{left:67.451352px;}
.x22_c00018{left:69.320982px;}
.x78_c00018{left:72.595610px;}
.x5c_c00018{left:74.824182px;}
.x1b_c00018{left:77.461629px;}
.x6_c00018{left:79.555356px;}
.x10_c00018{left:82.427571px;}
.x6a_c00018{left:85.433530px;}
.x23_c00018{left:86.633152px;}
.x79_c00018{left:89.918850px;}
.x56_c00018{left:93.472722px;}
.x17_c00018{left:96.044730px;}
.x1c_c00018{left:97.706364px;}
.x73_c00018{left:99.409248px;}
.x2_c00018{left:101.719630px;}
.x3e_c00018{left:103.268483px;}
.x7_c00018{left:104.802084px;}
.x59_c00018{left:107.457441px;}
.x4f_c00018{left:110.200652px;}
.x2a_c00018{left:113.356401px;}
.x6d_c00018{left:114.416545px;}
.x46_c00018{left:116.470169px;}
.x18_c00018{left:117.746834px;}
.x8_c00018{left:121.029341px;}
.x1d_c00018{left:122.785260px;}
.x77_c00018{left:124.845560px;}
.x11_c00018{left:125.875911px;}
.x30_c00018{left:127.885830px;}
.x67_c00018{left:129.098434px;}
.x50_c00018{left:131.985276px;}
.x3b_c00018{left:135.206280px;}
.x37_c00018{left:137.284647px;}
.x49_c00018{left:141.125228px;}
.x6b_c00018{left:144.059308px;}
.x61_c00018{left:145.602927px;}
.x12_c00018{left:149.065746px;}
.x5a_c00018{left:150.309066px;}
.x7b_c00018{left:152.045728px;}
.x24_c00018{left:153.349370px;}
.x31_c00018{left:155.718990px;}
.x2b_c00018{left:157.670043px;}
.x3f_c00018{left:161.348865px;}
.x62_c00018{left:163.150761px;}
.x13_c00018{left:166.652162px;}
.x9_c00018{left:169.406914px;}
.x74_c00018{left:172.087101px;}
.x3_c00018{left:174.831446px;}
.x32_c00018{left:176.861988px;}
.x6e_c00018{left:179.967913px;}
.x19_c00018{left:181.707056px;}
.x4a_c00018{left:183.744345px;}
.x1e_c00018{left:185.842140px;}
.x4_c00018{left:189.786476px;}
.x57_c00018{left:191.646873px;}
.x54_c00018{left:192.895383px;}
.x5d_c00018{left:195.396501px;}
.x6f_c00018{left:196.997815px;}
.x6c_c00018{left:202.304584px;}
.x38_c00018{left:204.740964px;}
.x2c_c00018{left:206.525639px;}
.x3c_c00018{left:208.566765px;}
.x5f_c00018{left:213.411683px;}
.x4b_c00018{left:214.852629px;}
.x25_c00018{left:216.066090px;}
.x14_c00018{left:217.995260px;}
.x63_c00018{left:219.719397px;}
.x2d_c00018{left:228.143000px;}
.xa_c00018{left:229.534227px;}
.x26_c00018{left:231.136505px;}
.x43_c00018{left:232.530596px;}
.x39_c00018{left:234.963897px;}
.x33_c00018{left:238.367598px;}
.x47_c00018{left:244.673249px;}
.x40_c00018{left:246.316877px;}
.xb_c00018{left:247.814429px;}
.x7c_c00018{left:249.035376px;}
.x75_c00018{left:252.257439px;}
.x4c_c00018{left:254.216774px;}
.x5e_c00018{left:256.339290px;}
.x64_c00018{left:259.309059px;}
.x55_c00018{left:260.591220px;}
.x7d_c00018{left:261.697318px;}
.x51_c00018{left:263.971037px;}
.xc_c00018{left:265.084641px;}
.x1a_c00018{left:266.187461px;}
.x65_c00018{left:270.606918px;}
.x41_c00018{left:272.459082px;}
.x1f_c00018{left:274.872521px;}
.x34_c00018{left:277.795422px;}
.x2e_c00018{left:278.864228px;}
.x15_c00018{left:281.107134px;}
.x44_c00018{left:282.211806px;}
.x52_c00018{left:286.107704px;}
.x4d_c00018{left:287.304422px;}
.x27_c00018{left:290.295786px;}
.x35_c00018{left:292.871496px;}
.x3d_c00018{left:294.901749px;}
.x5b_c00018{left:295.982136px;}
.x20_c00018{left:297.258612px;}
.x2f_c00018{left:301.851218px;}
.x7a_c00018{left:305.393632px;}
.xd_c00018{left:306.678506px;}
.x16_c00018{left:314.247867px;}
.x70_c00018{left:319.729401px;}
.x58_c00018{left:321.210995px;}
.xe_c00018{left:326.341823px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.fs0_c00018{font-size:27.996710pt;}
.fs9_c00018{font-size:51.308405pt;}
.fs18_c00018{font-size:51.311255pt;}
.fs13_c00018{font-size:52.253206pt;}
.fs1e_c00018{font-size:52.285087pt;}
.fs14_c00018{font-size:53.186299pt;}
.fs11_c00018{font-size:53.206091pt;}
.fsd_c00018{font-size:54.107045pt;}
.fs3_c00018{font-size:54.131628pt;}
.fsb_c00018{font-size:55.039925pt;}
.fs15_c00018{font-size:55.052485pt;}
.fs10_c00018{font-size:55.072971pt;}
.fs1d_c00018{font-size:55.083239pt;}
.fsc_c00018{font-size:55.972805pt;}
.fs17_c00018{font-size:55.985578pt;}
.fsf_c00018{font-size:56.006412pt;}
.fs2_c00018{font-size:56.931540pt;}
.fs1b_c00018{font-size:57.884082pt;}
.fs19_c00018{font-size:58.791914pt;}
.fs8_c00018{font-size:59.704326pt;}
.fs12_c00018{font-size:59.717950pt;}
.fs7_c00018{font-size:59.736828pt;}
.fs16_c00018{font-size:60.651043pt;}
.fs1_c00018{font-size:60.664756pt;}
.fs6_c00018{font-size:60.670216pt;}
.fsa_c00018{font-size:61.570086pt;}
.fs1c_c00018{font-size:61.618539pt;}
.fs1a_c00018{font-size:62.552153pt;}
.fs4_c00018{font-size:62.555372pt;}
.fse_c00018{font-size:63.435846pt;}
.fs5_c00018{font-size:63.489035pt;}
.y0_c00018{bottom:0.000000pt;}
.y102_c00018{bottom:24.780619pt;}
.y101_c00018{bottom:25.157931pt;}
.y100_c00018{bottom:29.552624pt;}
.yff_c00018{bottom:30.455829pt;}
.yfe_c00018{bottom:33.868000pt;}
.yfd_c00018{bottom:38.478953pt;}
.yfc_c00018{bottom:39.595133pt;}
.yfb_c00018{bottom:41.635749pt;}
.yfa_c00018{bottom:45.011053pt;}
.yf9_c00018{bottom:45.330581pt;}
.yf8_c00018{bottom:48.277341pt;}
.yf7_c00018{bottom:49.456597pt;}
.yf6_c00018{bottom:52.161937pt;}
.yf5_c00018{bottom:53.735709pt;}
.yf4_c00018{bottom:54.492217pt;}
.yf3_c00018{bottom:56.785653pt;}
.yf2_c00018{bottom:57.705617pt;}
.yf1_c00018{bottom:60.766401pt;}
.yf0_c00018{bottom:62.894205pt;}
.yef_c00018{bottom:66.528153pt;}
.yee_c00018{bottom:67.679937pt;}
.yed_c00018{bottom:70.637209pt;}
.yec_c00018{bottom:71.062857pt;}
.yeb_c00018{bottom:74.032981pt;}
.yea_c00018{bottom:76.498429pt;}
.ye9_c00018{bottom:77.300561pt;}
.ye8_c00018{bottom:78.328709pt;}
.ye7_c00018{bottom:79.454613pt;}
.ye6_c00018{bottom:82.300617pt;}
.ye5_c00018{bottom:83.366585pt;}
.ye4_c00018{bottom:84.282749pt;}
.ye3_c00018{bottom:86.194093pt;}
.ye2_c00018{bottom:86.890277pt;}
.ye1_c00018{bottom:89.818697pt;}
.ye0_c00018{bottom:93.440989pt;}
.ydf_c00018{bottom:94.349333pt;}
.yde_c00018{bottom:95.798469pt;}
.ydd_c00018{bottom:97.133556pt;}
.ydc_c00018{bottom:97.862791pt;}
.ydb_c00018{bottom:101.131821pt;}
.yda_c00018{bottom:102.218516pt;}
.yd9_c00018{bottom:104.653148pt;}
.yd8_c00018{bottom:106.167168pt;}
.yd7_c00018{bottom:110.200000pt;}
.yd6_c00018{bottom:112.223573pt;}
.yd5_c00018{bottom:113.352235pt;}
.yd4_c00018{bottom:114.351275pt;}
.yd3_c00018{bottom:116.235115pt;}
.yd2_c00018{bottom:117.891669pt;}
.yd1_c00018{bottom:119.622816pt;}
.yd0_c00018{bottom:121.022816pt;}
.ycf_c00018{bottom:121.966752pt;}
.yce_c00018{bottom:123.248181pt;}
.ycd_c00018{bottom:124.125067pt;}
.ycc_c00018{bottom:125.792000pt;}
.ycb_c00018{bottom:126.924628pt;}
.yca_c00018{bottom:129.071387pt;}
.yc9_c00018{bottom:132.085632pt;}
.yc8_c00018{bottom:132.985792pt;}
.yc7_c00018{bottom:134.647008pt;}
.yc6_c00018{bottom:135.576445pt;}
.yc5_c00018{bottom:137.329997pt;}
.yc4_c00018{bottom:138.191977pt;}
.yc3_c00018{bottom:139.494155pt;}
.yc2_c00018{bottom:140.240604pt;}
.yc1_c00018{bottom:142.391069pt;}
.yc0_c00018{bottom:143.628095pt;}
.ybf_c00018{bottom:146.034452pt;}
.ybe_c00018{bottom:146.838564pt;}
.ybd_c00018{bottom:149.933405pt;}
.ybc_c00018{bottom:150.575921pt;}
.ybb_c00018{bottom:151.838763pt;}
.yba_c00018{bottom:153.880608pt;}
.yb9_c00018{bottom:159.410036pt;}
.yb8_c00018{bottom:160.234069pt;}
.yb7_c00018{bottom:161.723308pt;}
.yb6_c00018{bottom:164.147107pt;}
.yb5_c00018{bottom:164.784071pt;}
.yb4_c00018{bottom:168.830212pt;}
.yb3_c00018{bottom:170.931399pt;}
.yb2_c00018{bottom:173.197087pt;}
.yb1_c00018{bottom:174.494020pt;}
.yb0_c00018{bottom:176.032401pt;}
.yaf_c00018{bottom:178.607775pt;}
.yae_c00018{bottom:180.669572pt;}
.yad_c00018{bottom:181.337748pt;}
.yac_c00018{bottom:182.791005pt;}
.yab_c00018{bottom:184.534484pt;}
.yaa_c00018{bottom:185.804349pt;}
.ya9_c00018{bottom:187.785555pt;}
.ya8_c00018{bottom:190.066337pt;}
.ya7_c00018{bottom:190.818863pt;}
.ya6_c00018{bottom:195.590861pt;}
.ya5_c00018{bottom:196.695105pt;}
.ya4_c00018{bottom:198.960076pt;}
.ya3_c00018{bottom:200.909121pt;}
.ya2_c00018{bottom:203.018072pt;}
.ya1_c00018{bottom:203.611769pt;}
.ya0_c00018{bottom:205.692188pt;}
.y9f_c00018{bottom:208.664844pt;}
.y9e_c00018{bottom:209.586975pt;}
.y9d_c00018{bottom:211.011392pt;}
.y9c_c00018{bottom:213.046971pt;}
.y9b_c00018{bottom:213.912540pt;}
.y9a_c00018{bottom:214.252616pt;}
.y99_c00018{bottom:215.305333pt;}
.y98_c00018{bottom:216.819859pt;}
.y97_c00018{bottom:217.915667pt;}
.y96_c00018{bottom:220.569713pt;}
.y95_c00018{bottom:221.510348pt;}
.y94_c00018{bottom:222.607976pt;}
.y93_c00018{bottom:224.874492pt;}
.y92_c00018{bottom:225.854035pt;}
.y91_c00018{bottom:228.765251pt;}
.y90_c00018{bottom:231.392288pt;}
.y8f_c00018{bottom:233.270204pt;}
.y8e_c00018{bottom:234.428776pt;}
.y8d_c00018{bottom:237.793941pt;}
.y8c_c00018{bottom:238.855569pt;}
.y8b_c00018{bottom:239.722325pt;}
.y8a_c00018{bottom:243.425556pt;}
.y89_c00018{bottom:244.453588pt;}
.y88_c00018{bottom:247.045072pt;}
.y87_c00018{bottom:247.389040pt;}
.y86_c00018{bottom:251.116660pt;}
.y85_c00018{bottom:252.109513pt;}
.y84_c00018{bottom:255.822573pt;}
.y83_c00018{bottom:258.303407pt;}
.y82_c00018{bottom:259.460407pt;}
.y80_c00018{bottom:261.091225pt;}
.y81_c00018{bottom:262.364000pt;}
.y7f_c00018{bottom:266.104780pt;}
.y7e_c00018{bottom:267.632344pt;}
.y7d_c00018{bottom:268.475233pt;}
.y7c_c00018{bottom:269.305341pt;}
.y7b_c00018{bottom:272.900287pt;}
.y7a_c00018{bottom:274.069285pt;}
.y79_c00018{bottom:276.553889pt;}
.y78_c00018{bottom:277.727068pt;}
.y77_c00018{bottom:279.123613pt;}
.y76_c00018{bottom:279.726267pt;}
.y75_c00018{bottom:283.042473pt;}
.y74_c00018{bottom:283.902820pt;}
.y73_c00018{bottom:287.312673pt;}
.y72_c00018{bottom:290.672000pt;}
.y71_c00018{bottom:295.474928pt;}
.y70_c00018{bottom:296.284384pt;}
.y6f_c00018{bottom:297.234843pt;}
.y6e_c00018{bottom:298.355479pt;}
.y6d_c00018{bottom:300.254552pt;}
.y6c_c00018{bottom:301.106927pt;}
.y6b_c00018{bottom:301.903141pt;}
.y6a_c00018{bottom:304.319567pt;}
.y69_c00018{bottom:304.857692pt;}
.y68_c00018{bottom:308.504452pt;}
.y67_c00018{bottom:310.037221pt;}
.y66_c00018{bottom:311.860105pt;}
.y65_c00018{bottom:313.301251pt;}
.y64_c00018{bottom:315.275577pt;}
.y63_c00018{bottom:316.200544pt;}
.y62_c00018{bottom:319.916471pt;}
.y61_c00018{bottom:320.463208pt;}
.y60_c00018{bottom:323.715864pt;}
.y5f_c00018{bottom:324.791444pt;}
.y5e_c00018{bottom:331.071711pt;}
.y5d_c00018{bottom:334.294784pt;}
.y5c_c00018{bottom:335.340371pt;}
.y5b_c00018{bottom:337.867911pt;}
.y5a_c00018{bottom:340.345683pt;}
.y59_c00018{bottom:341.154007pt;}
.y58_c00018{bottom:341.772292pt;}
.y57_c00018{bottom:343.642045pt;}
.y56_c00018{bottom:344.557153pt;}
.y55_c00018{bottom:347.944167pt;}
.y54_c00018{bottom:350.454069pt;}
.y53_c00018{bottom:351.448819pt;}
.y52_c00018{bottom:353.534644pt;}
.y51_c00018{bottom:354.837959pt;}
.y50_c00018{bottom:359.076353pt;}
.y4f_c00018{bottom:360.854576pt;}
.y4e_c00018{bottom:361.973583pt;}
.y4d_c00018{bottom:365.566695pt;}
.y4c_c00018{bottom:367.469400pt;}
.y4b_c00018{bottom:368.845207pt;}
.y4a_c00018{bottom:370.668567pt;}
.y49_c00018{bottom:371.698680pt;}
.y48_c00018{bottom:375.292380pt;}
.y47_c00018{bottom:379.126907pt;}
.y46_c00018{bottom:380.527940pt;}
.y45_c00018{bottom:381.466300pt;}
.y44_c00018{bottom:382.800380pt;}
.y43_c00018{bottom:384.993927pt;}
.y42_c00018{bottom:386.474453pt;}
.y41_c00018{bottom:389.778927pt;}
.y40_c00018{bottom:391.366300pt;}
.y3f_c00018{bottom:393.706440pt;}
.y3e_c00018{bottom:394.578667pt;}
.y3d_c00018{bottom:397.600001pt;}
.y3c_c00018{bottom:398.310500pt;}
.y3b_c00018{bottom:400.169881pt;}
.y3a_c00018{bottom:401.127243pt;}
.y39_c00018{bottom:403.070389pt;}
.y38_c00018{bottom:404.067916pt;}
.y37_c00018{bottom:405.380649pt;}
.y36_c00018{bottom:407.721541pt;}
.y35_c00018{bottom:409.946765pt;}
.y34_c00018{bottom:411.943560pt;}
.y33_c00018{bottom:412.884413pt;}
.y32_c00018{bottom:414.960424pt;}
.y31_c00018{bottom:415.845219pt;}
.y30_c00018{bottom:417.844869pt;}
.y2f_c00018{bottom:419.243453pt;}
.y2e_c00018{bottom:419.658619pt;}
.y2d_c00018{bottom:421.537504pt;}
.y2c_c00018{bottom:422.668000pt;}
.y2b_c00018{bottom:427.986997pt;}
.y2a_c00018{bottom:430.724208pt;}
.y29_c00018{bottom:431.421493pt;}
.y28_c00018{bottom:434.323301pt;}
.y27_c00018{bottom:437.410160pt;}
.y26_c00018{bottom:438.211168pt;}
.y25_c00018{bottom:439.945333pt;}
.y24_c00018{bottom:442.582955pt;}
.y23_c00018{bottom:443.618725pt;}
.y22_c00018{bottom:447.738027pt;}
.y21_c00018{bottom:450.655573pt;}
.y20_c00018{bottom:451.815936pt;}
.y1f_c00018{bottom:452.752629pt;}
.y1e_c00018{bottom:454.826667pt;}
.y1d_c00018{bottom:457.767297pt;}
.y1c_c00018{bottom:459.576639pt;}
.y1b_c00018{bottom:463.409895pt;}
.y1a_c00018{bottom:464.058643pt;}
.y19_c00018{bottom:466.312995pt;}
.y18_c00018{bottom:467.297431pt;}
.y17_c00018{bottom:470.181868pt;}
.y16_c00018{bottom:473.068133pt;}
.y15_c00018{bottom:474.306880pt;}
.y14_c00018{bottom:476.665621pt;}
.y13_c00018{bottom:478.584965pt;}
.y12_c00018{bottom:479.242783pt;}
.y11_c00018{bottom:480.109299pt;}
.y10_c00018{bottom:481.732907pt;}
.yf_c00018{bottom:483.379412pt;}
.ye_c00018{bottom:487.493947pt;}
.yd_c00018{bottom:488.263771pt;}
.yc_c00018{bottom:489.892181pt;}
.yb_c00018{bottom:490.568315pt;}
.ya_c00018{bottom:491.283989pt;}
.y9_c00018{bottom:493.637989pt;}
.y8_c00018{bottom:495.531984pt;}
.y7_c00018{bottom:496.167285pt;}
.y6_c00018{bottom:497.155701pt;}
.y5_c00018{bottom:498.980000pt;}
.y4_c00018{bottom:510.883085pt;}
.y3_c00018{bottom:511.441965pt;}
.y2_c00018{bottom:514.174205pt;}
.y1_c00018{bottom:516.241333pt;}
.h2_c00018{height:27.996710pt;}
.hb_c00018{height:51.308405pt;}
.h1a_c00018{height:51.311255pt;}
.h15_c00018{height:52.253206pt;}
.h20_c00018{height:52.285087pt;}
.h16_c00018{height:53.186299pt;}
.h13_c00018{height:53.206091pt;}
.hf_c00018{height:54.107045pt;}
.h5_c00018{height:54.131628pt;}
.hd_c00018{height:55.039925pt;}
.h17_c00018{height:55.052485pt;}
.h12_c00018{height:55.072971pt;}
.h1f_c00018{height:55.083239pt;}
.he_c00018{height:55.972805pt;}
.h19_c00018{height:55.985578pt;}
.h11_c00018{height:56.006412pt;}
.h4_c00018{height:56.931540pt;}
.h1d_c00018{height:57.884082pt;}
.h1b_c00018{height:58.791914pt;}
.ha_c00018{height:59.704326pt;}
.h14_c00018{height:59.717950pt;}
.h9_c00018{height:59.736828pt;}
.h18_c00018{height:60.651043pt;}
.h3_c00018{height:60.664756pt;}
.h8_c00018{height:60.670216pt;}
.hc_c00018{height:61.570086pt;}
.h1e_c00018{height:61.618539pt;}
.h1c_c00018{height:62.552153pt;}
.h6_c00018{height:62.555372pt;}
.h10_c00018{height:63.435846pt;}
.h7_c00018{height:63.489035pt;}
.h1_c00018{height:547.333333pt;}
.h0_c00018{height:547.440000pt;}
.w0_c00018{width:335.280000pt;}
.w1_c00018{width:335.333333pt;}
.x0_c00018{left:0.000000pt;}
.x76_c00018{left:22.226667pt;}
.x71_c00018{left:23.184000pt;}
.x68_c00018{left:24.111121pt;}
.x3a_c00018{left:25.181744pt;}
.x42_c00018{left:26.542141pt;}
.x21_c00018{left:28.302667pt;}
.x5_c00018{left:29.296000pt;}
.x53_c00018{left:33.021333pt;}
.xf_c00018{left:34.098031pt;}
.x28_c00018{left:35.405333pt;}
.x48_c00018{left:36.389751pt;}
.x4e_c00018{left:39.165947pt;}
.x1_c00018{left:41.249333pt;}
.x45_c00018{left:45.044908pt;}
.x69_c00018{left:45.952612pt;}
.x36_c00018{left:50.764283pt;}
.x72_c00018{left:52.891133pt;}
.x60_c00018{left:56.256787pt;}
.x66_c00018{left:57.763041pt;}
.x29_c00018{left:59.956757pt;}
.x22_c00018{left:61.618651pt;}
.x78_c00018{left:64.529431pt;}
.x5c_c00018{left:66.510384pt;}
.x1b_c00018{left:68.854781pt;}
.x6_c00018{left:70.715872pt;}
.x10_c00018{left:73.268952pt;}
.x6a_c00018{left:75.940916pt;}
.x23_c00018{left:77.007247pt;}
.x79_c00018{left:79.927867pt;}
.x56_c00018{left:83.086864pt;}
.x17_c00018{left:85.373093pt;}
.x1c_c00018{left:86.850101pt;}
.x73_c00018{left:88.363776pt;}
.x2_c00018{left:90.417449pt;}
.x3e_c00018{left:91.794207pt;}
.x7_c00018{left:93.157408pt;}
.x59_c00018{left:95.517725pt;}
.x4f_c00018{left:97.956135pt;}
.x2a_c00018{left:100.761245pt;}
.x6d_c00018{left:101.703596pt;}
.x46_c00018{left:103.529039pt;}
.x18_c00018{left:104.663852pt;}
.x8_c00018{left:107.581636pt;}
.x1d_c00018{left:109.142453pt;}
.x77_c00018{left:110.973831pt;}
.x11_c00018{left:111.889699pt;}
.x30_c00018{left:113.676293pt;}
.x67_c00018{left:114.754164pt;}
.x50_c00018{left:117.320245pt;}
.x3b_c00018{left:120.183360pt;}
.x37_c00018{left:122.030797pt;}
.x49_c00018{left:125.444647pt;}
.x6b_c00018{left:128.052719pt;}
.x61_c00018{left:129.424824pt;}
.x12_c00018{left:132.502885pt;}
.x5a_c00018{left:133.608059pt;}
.x7b_c00018{left:135.151759pt;}
.x24_c00018{left:136.310551pt;}
.x31_c00018{left:138.416880pt;}
.x2b_c00018{left:140.151149pt;}
.x3f_c00018{left:143.421213pt;}
.x62_c00018{left:145.022899pt;}
.x13_c00018{left:148.135255pt;}
.x9_c00018{left:150.583924pt;}
.x74_c00018{left:152.966312pt;}
.x3_c00018{left:155.405729pt;}
.x32_c00018{left:157.210656pt;}
.x6e_c00018{left:159.971479pt;}
.x19_c00018{left:161.517383pt;}
.x4a_c00018{left:163.328307pt;}
.x1e_c00018{left:165.193013pt;}
.x4_c00018{left:168.699089pt;}
.x57_c00018{left:170.352776pt;}
.x54_c00018{left:171.462563pt;}
.x5d_c00018{left:173.685779pt;}
.x6f_c00018{left:175.109169pt;}
.x6c_c00018{left:179.826297pt;}
.x38_c00018{left:181.991968pt;}
.x2c_c00018{left:183.578345pt;}
.x3c_c00018{left:185.392680pt;}
.x5f_c00018{left:189.699273pt;}
.x4b_c00018{left:190.980115pt;}
.x25_c00018{left:192.058747pt;}
.x14_c00018{left:193.773564pt;}
.x63_c00018{left:195.306131pt;}
.x2d_c00018{left:202.793777pt;}
.xa_c00018{left:204.030424pt;}
.x26_c00018{left:205.454671pt;}
.x43_c00018{left:206.693863pt;}
.x39_c00018{left:208.856797pt;}
.x33_c00018{left:211.882309pt;}
.x47_c00018{left:217.487332pt;}
.x40_c00018{left:218.948335pt;}
.xb_c00018{left:220.279492pt;}
.x7c_c00018{left:221.364779pt;}
.x75_c00018{left:224.228835pt;}
.x4c_c00018{left:225.970465pt;}
.x5e_c00018{left:227.857147pt;}
.x64_c00018{left:230.496941pt;}
.x55_c00018{left:231.636640pt;}
.x7d_c00018{left:232.619839pt;}
.x51_c00018{left:234.640921pt;}
.xc_c00018{left:235.630792pt;}
.x1a_c00018{left:236.611076pt;}
.x65_c00018{left:240.539483pt;}
.x41_c00018{left:242.185851pt;}
.x1f_c00018{left:244.331129pt;}
.x34_c00018{left:246.929264pt;}
.x2e_c00018{left:247.879313pt;}
.x15_c00018{left:249.873008pt;}
.x44_c00018{left:250.854939pt;}
.x52_c00018{left:254.317959pt;}
.x4d_c00018{left:255.381708pt;}
.x27_c00018{left:258.040699pt;}
.x35_c00018{left:260.330219pt;}
.x3d_c00018{left:262.134888pt;}
.x5b_c00018{left:263.095232pt;}
.x20_c00018{left:264.229877pt;}
.x2f_c00018{left:268.312193pt;}
.x7a_c00018{left:271.461007pt;}
.xd_c00018{left:272.603116pt;}
.x16_c00018{left:279.331437pt;}
.x70_c00018{left:284.203912pt;}
.x58_c00018{left:285.520884pt;}
.xe_c00018{left:290.081620pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00019 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00019 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00019 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00019 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00019.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.008133,0.000171,-0.005249,0.249945,0,0);-ms-transform:matrix(0.008133,0.000171,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.008133,0.000171,-0.005249,0.249945,0,0);}
.m6a_c00019{transform:matrix(0.149062,0.003130,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149062,0.003130,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149062,0.003130,-0.005249,0.249945,0,0);}
.mb2_c00019{transform:matrix(0.154666,0.003248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154666,0.003248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154666,0.003248,-0.005249,0.249945,0,0);}
.m66_c00019{transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);}
.m5f_c00019{transform:matrix(0.160270,0.003366,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160270,0.003366,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160270,0.003366,-0.005249,0.249945,0,0);}
.m76_c00019{transform:matrix(0.162684,0.003416,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162684,0.003416,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162684,0.003416,-0.005249,0.249945,0,0);}
.m5e_c00019{transform:matrix(0.164064,0.003445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164064,0.003445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164064,0.003445,-0.005249,0.249945,0,0);}
.m47_c00019{transform:matrix(0.164814,0.003461,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164814,0.003461,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164814,0.003461,-0.005249,0.249945,0,0);}
.m37_c00019{transform:matrix(0.168418,0.003537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168418,0.003537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168418,0.003537,-0.005249,0.249945,0,0);}
.mb7_c00019{transform:matrix(0.168498,0.003538,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168498,0.003538,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168498,0.003538,-0.005249,0.249945,0,0);}
.m7c_c00019{transform:matrix(0.169343,0.003556,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169343,0.003556,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169343,0.003556,-0.005249,0.249945,0,0);}
.m6e_c00019{transform:matrix(0.171247,0.003596,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171247,0.003596,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171247,0.003596,-0.005249,0.249945,0,0);}
.m16_c00019{transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);}
.m62_c00019{transform:matrix(0.173302,0.003639,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173302,0.003639,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173302,0.003639,-0.005249,0.249945,0,0);}
.ma5_c00019{transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);}
.m74_c00019{transform:matrix(0.175241,0.003680,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175241,0.003680,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175241,0.003680,-0.005249,0.249945,0,0);}
.m4_c00019{transform:matrix(0.175471,0.003685,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175471,0.003685,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175471,0.003685,-0.005249,0.249945,0,0);}
.m6c_c00019{transform:matrix(0.175861,0.003693,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175861,0.003693,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175861,0.003693,-0.005249,0.249945,0,0);}
.ma2_c00019{transform:matrix(0.176176,0.003700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176176,0.003700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176176,0.003700,-0.005249,0.249945,0,0);}
.m4a_c00019{transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);}
.m6b_c00019{transform:matrix(0.177656,0.003731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177656,0.003731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177656,0.003731,-0.005249,0.249945,0,0);}
.m38_c00019{transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);}
.mbd_c00019{transform:matrix(0.179325,0.003766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179325,0.003766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179325,0.003766,-0.005249,0.249945,0,0);}
.m92_c00019{transform:matrix(0.179570,0.003771,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179570,0.003771,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179570,0.003771,-0.005249,0.249945,0,0);}
.mb_c00019{transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);}
.m72_c00019{transform:matrix(0.180805,0.003797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180805,0.003797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180805,0.003797,-0.005249,0.249945,0,0);}
.m79_c00019{transform:matrix(0.181705,0.003816,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181705,0.003816,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181705,0.003816,-0.005249,0.249945,0,0);}
.md4_c00019{transform:matrix(0.182162,0.002550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182162,0.002550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182162,0.002550,-0.003500,0.249976,0,0);}
.m81_c00019{transform:matrix(0.182220,0.003827,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182220,0.003827,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182220,0.003827,-0.005249,0.249945,0,0);}
.md5_c00019{transform:matrix(0.182847,0.002560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182847,0.002560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182847,0.002560,-0.003500,0.249976,0,0);}
.m33_c00019{transform:matrix(0.184144,0.003867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184144,0.003867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184144,0.003867,-0.005249,0.249945,0,0);}
.m54_c00019{transform:matrix(0.184574,0.003876,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184574,0.003876,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184574,0.003876,-0.005249,0.249945,0,0);}
.m87_c00019{transform:matrix(0.184769,0.003880,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184769,0.003880,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184769,0.003880,-0.005249,0.249945,0,0);}
.mb8_c00019{transform:matrix(0.185954,0.003905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185954,0.003905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185954,0.003905,-0.005249,0.249945,0,0);}
.m8c_c00019{transform:matrix(0.186119,0.003908,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186119,0.003908,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186119,0.003908,-0.005249,0.249945,0,0);}
.m68_c00019{transform:matrix(0.186144,0.003909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186144,0.003909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186144,0.003909,-0.005249,0.249945,0,0);}
.mb3_c00019{transform:matrix(0.186214,0.003910,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186214,0.003910,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186214,0.003910,-0.005249,0.249945,0,0);}
.ma4_c00019{transform:matrix(0.186269,0.003912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186269,0.003912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186269,0.003912,-0.005249,0.249945,0,0);}
.md_c00019{transform:matrix(0.186309,0.003912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186309,0.003912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186309,0.003912,-0.005249,0.249945,0,0);}
.mbe_c00019{transform:matrix(0.186449,0.003915,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186449,0.003915,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186449,0.003915,-0.005249,0.249945,0,0);}
.mdb_c00019{transform:matrix(0.186887,0.002616,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186887,0.002616,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186887,0.002616,-0.003500,0.249976,0,0);}
.m14_c00019{transform:matrix(0.187014,0.003927,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187014,0.003927,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187014,0.003927,-0.005249,0.249945,0,0);}
.m65_c00019{transform:matrix(0.187084,0.003929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187084,0.003929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187084,0.003929,-0.005249,0.249945,0,0);}
.m2d_c00019{transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);}
.mad_c00019{transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);}
.md8_c00019{transform:matrix(0.187947,0.002631,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187947,0.002631,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187947,0.002631,-0.003500,0.249976,0,0);}
.ma_c00019{transform:matrix(0.188054,0.003949,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188054,0.003949,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188054,0.003949,-0.005249,0.249945,0,0);}
.md7_c00019{transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);}
.m12_c00019{transform:matrix(0.189013,0.003969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189013,0.003969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189013,0.003969,-0.005249,0.249945,0,0);}
.m61_c00019{transform:matrix(0.189148,0.003972,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189148,0.003972,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189148,0.003972,-0.005249,0.249945,0,0);}
.m8f_c00019{transform:matrix(0.189833,0.003986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189833,0.003986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189833,0.003986,-0.005249,0.249945,0,0);}
.ma7_c00019{transform:matrix(0.190148,0.003993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190148,0.003993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190148,0.003993,-0.005249,0.249945,0,0);}
.m11_c00019{transform:matrix(0.190428,0.003999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190428,0.003999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190428,0.003999,-0.005249,0.249945,0,0);}
.m44_c00019{transform:matrix(0.191093,0.004013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191093,0.004013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191093,0.004013,-0.005249,0.249945,0,0);}
.m13_c00019{transform:matrix(0.191473,0.004021,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191473,0.004021,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191473,0.004021,-0.005249,0.249945,0,0);}
.m39_c00019{transform:matrix(0.192378,0.004040,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192378,0.004040,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192378,0.004040,-0.005249,0.249945,0,0);}
.m1d_c00019{transform:matrix(0.192633,0.004045,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192633,0.004045,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192633,0.004045,-0.005249,0.249945,0,0);}
.m41_c00019{transform:matrix(0.192753,0.004048,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192753,0.004048,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192753,0.004048,-0.005249,0.249945,0,0);}
.m58_c00019{transform:matrix(0.192822,0.004049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192822,0.004049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192822,0.004049,-0.005249,0.249945,0,0);}
.m63_c00019{transform:matrix(0.192827,0.004049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192827,0.004049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192827,0.004049,-0.005249,0.249945,0,0);}
.m3a_c00019{transform:matrix(0.193217,0.004058,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193217,0.004058,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193217,0.004058,-0.005249,0.249945,0,0);}
.m75_c00019{transform:matrix(0.193937,0.004073,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193937,0.004073,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193937,0.004073,-0.005249,0.249945,0,0);}
.md3_c00019{transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);}
.m5d_c00019{transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);}
.m1a_c00019{transform:matrix(0.194982,0.004095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194982,0.004095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194982,0.004095,-0.005249,0.249945,0,0);}
.me_c00019{transform:matrix(0.194987,0.004095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194987,0.004095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194987,0.004095,-0.005249,0.249945,0,0);}
.m7e_c00019{transform:matrix(0.195037,0.004096,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195037,0.004096,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195037,0.004096,-0.005249,0.249945,0,0);}
.m56_c00019{transform:matrix(0.195047,0.004096,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195047,0.004096,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195047,0.004096,-0.005249,0.249945,0,0);}
.m8b_c00019{transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);}
.m78_c00019{transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);}
.ma3_c00019{transform:matrix(0.196427,0.004125,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196427,0.004125,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196427,0.004125,-0.005249,0.249945,0,0);}
.m2e_c00019{transform:matrix(0.196462,0.004126,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196462,0.004126,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196462,0.004126,-0.005249,0.249945,0,0);}
.m26_c00019{transform:matrix(0.196542,0.004127,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196542,0.004127,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196542,0.004127,-0.005249,0.249945,0,0);}
.m69_c00019{transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);}
.m3b_c00019{transform:matrix(0.196912,0.004135,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196912,0.004135,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196912,0.004135,-0.005249,0.249945,0,0);}
.m53_c00019{transform:matrix(0.197097,0.004139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197097,0.004139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197097,0.004139,-0.005249,0.249945,0,0);}
.mb9_c00019{transform:matrix(0.197182,0.004141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197182,0.004141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197182,0.004141,-0.005249,0.249945,0,0);}
.mb5_c00019{transform:matrix(0.197202,0.004141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197202,0.004141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197202,0.004141,-0.005249,0.249945,0,0);}
.m90_c00019{transform:matrix(0.197741,0.004153,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197741,0.004153,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197741,0.004153,-0.005249,0.249945,0,0);}
.m1c_c00019{transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);}
.m4e_c00019{transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);}
.m5c_c00019{transform:matrix(0.198081,0.004160,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198081,0.004160,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198081,0.004160,-0.005249,0.249945,0,0);}
.m5b_c00019{transform:matrix(0.198936,0.004178,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198936,0.004178,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198936,0.004178,-0.005249,0.249945,0,0);}
.m22_c00019{transform:matrix(0.199026,0.004180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199026,0.004180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199026,0.004180,-0.005249,0.249945,0,0);}
.m3d_c00019{transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);}
.mda_c00019{transform:matrix(0.200380,0.002805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200380,0.002805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200380,0.002805,-0.003500,0.249976,0,0);}
.m8e_c00019{transform:matrix(0.201541,0.004232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201541,0.004232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201541,0.004232,-0.005249,0.249945,0,0);}
.m10_c00019{transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);}
.m50_c00019{transform:matrix(0.202295,0.004248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202295,0.004248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202295,0.004248,-0.005249,0.249945,0,0);}
.m7f_c00019{transform:matrix(0.202375,0.004250,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202375,0.004250,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202375,0.004250,-0.005249,0.249945,0,0);}
.maf_c00019{transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);}
.m19_c00019{transform:matrix(0.202565,0.004254,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202565,0.004254,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202565,0.004254,-0.005249,0.249945,0,0);}
.m15_c00019{transform:matrix(0.202740,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202740,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202740,0.004258,-0.005249,0.249945,0,0);}
.m73_c00019{transform:matrix(0.202925,0.004261,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202925,0.004261,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202925,0.004261,-0.005249,0.249945,0,0);}
.m23_c00019{transform:matrix(0.203145,0.004266,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203145,0.004266,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203145,0.004266,-0.005249,0.249945,0,0);}
.m97_c00019{transform:matrix(0.203360,0.004271,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203360,0.004271,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203360,0.004271,-0.005249,0.249945,0,0);}
.m6d_c00019{transform:matrix(0.203615,0.004276,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203615,0.004276,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203615,0.004276,-0.005249,0.249945,0,0);}
.m1f_c00019{transform:matrix(0.204555,0.004296,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204555,0.004296,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204555,0.004296,-0.005249,0.249945,0,0);}
.ma1_c00019{transform:matrix(0.204730,0.004299,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204730,0.004299,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204730,0.004299,-0.005249,0.249945,0,0);}
.m9_c00019{transform:matrix(0.204825,0.004301,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204825,0.004301,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204825,0.004301,-0.005249,0.249945,0,0);}
.mb4_c00019{transform:matrix(0.205015,0.004305,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205015,0.004305,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205015,0.004305,-0.005249,0.249945,0,0);}
.m77_c00019{transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);}
.md6_c00019{transform:matrix(0.205325,0.002875,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205325,0.002875,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205325,0.002875,-0.003500,0.249976,0,0);}
.m9b_c00019{transform:matrix(0.205795,0.004322,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205795,0.004322,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205795,0.004322,-0.005249,0.249945,0,0);}
.mdf_c00019{transform:matrix(0.206010,0.002884,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206010,0.002884,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206010,0.002884,-0.003500,0.249976,0,0);}
.mbb_c00019{transform:matrix(0.206235,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206235,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206235,0.004331,-0.005249,0.249945,0,0);}
.m36_c00019{transform:matrix(0.206389,0.004334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206389,0.004334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206389,0.004334,-0.005249,0.249945,0,0);}
.m2b_c00019{transform:matrix(0.206534,0.004337,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206534,0.004337,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206534,0.004337,-0.005249,0.249945,0,0);}
.m1e_c00019{transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);}
.m2_c00019{transform:matrix(0.206949,0.004346,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206949,0.004346,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206949,0.004346,-0.005249,0.249945,0,0);}
.m86_c00019{transform:matrix(0.207269,0.004353,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207269,0.004353,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207269,0.004353,-0.005249,0.249945,0,0);}
.m59_c00019{transform:matrix(0.207299,0.004353,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207299,0.004353,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207299,0.004353,-0.005249,0.249945,0,0);}
.m35_c00019{transform:matrix(0.207574,0.004359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207574,0.004359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207574,0.004359,-0.005249,0.249945,0,0);}
.m3e_c00019{transform:matrix(0.208104,0.004370,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208104,0.004370,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208104,0.004370,-0.005249,0.249945,0,0);}
.mc5_c00019{transform:matrix(0.208354,0.004375,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208354,0.004375,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208354,0.004375,-0.005249,0.249945,0,0);}
.m7a_c00019{transform:matrix(0.208504,0.004379,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208504,0.004379,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208504,0.004379,-0.005249,0.249945,0,0);}
.m24_c00019{transform:matrix(0.208599,0.004381,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208599,0.004381,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208599,0.004381,-0.005249,0.249945,0,0);}
.mc3_c00019{transform:matrix(0.208869,0.004386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208869,0.004386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208869,0.004386,-0.005249,0.249945,0,0);}
.m60_c00019{transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);}
.mca_c00019{transform:matrix(0.209594,0.004401,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209594,0.004401,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209594,0.004401,-0.005249,0.249945,0,0);}
.m95_c00019{transform:matrix(0.209699,0.004404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209699,0.004404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209699,0.004404,-0.005249,0.249945,0,0);}
.m43_c00019{transform:matrix(0.209764,0.004405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209764,0.004405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209764,0.004405,-0.005249,0.249945,0,0);}
.m20_c00019{transform:matrix(0.209799,0.004406,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209799,0.004406,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209799,0.004406,-0.005249,0.249945,0,0);}
.m9f_c00019{transform:matrix(0.209954,0.004409,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209954,0.004409,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209954,0.004409,-0.005249,0.249945,0,0);}
.mc7_c00019{transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);}
.m7b_c00019{transform:matrix(0.210714,0.004425,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210714,0.004425,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210714,0.004425,-0.005249,0.249945,0,0);}
.mc1_c00019{transform:matrix(0.210804,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210804,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210804,0.004427,-0.005249,0.249945,0,0);}
.m2c_c00019{transform:matrix(0.211318,0.004438,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211318,0.004438,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211318,0.004438,-0.005249,0.249945,0,0);}
.md9_c00019{transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);}
.m18_c00019{transform:matrix(0.212033,0.004453,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212033,0.004453,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212033,0.004453,-0.005249,0.249945,0,0);}
.m94_c00019{transform:matrix(0.212088,0.004454,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212088,0.004454,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212088,0.004454,-0.005249,0.249945,0,0);}
.m48_c00019{transform:matrix(0.212188,0.004456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212188,0.004456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212188,0.004456,-0.005249,0.249945,0,0);}
.mac_c00019{transform:matrix(0.212403,0.004460,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212403,0.004460,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212403,0.004460,-0.005249,0.249945,0,0);}
.mc0_c00019{transform:matrix(0.212683,0.004466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212683,0.004466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212683,0.004466,-0.005249,0.249945,0,0);}
.m83_c00019{transform:matrix(0.212918,0.004471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212918,0.004471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212918,0.004471,-0.005249,0.249945,0,0);}
.mc4_c00019{transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);}
.m52_c00019{transform:matrix(0.213623,0.004486,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213623,0.004486,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213623,0.004486,-0.005249,0.249945,0,0);}
.mbc_c00019{transform:matrix(0.213703,0.004488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213703,0.004488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213703,0.004488,-0.005249,0.249945,0,0);}
.m25_c00019{transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);}
.m2a_c00019{transform:matrix(0.214023,0.004494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214023,0.004494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214023,0.004494,-0.005249,0.249945,0,0);}
.m7_c00019{transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);}
.m5_c00019{transform:matrix(0.214613,0.004507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214613,0.004507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214613,0.004507,-0.005249,0.249945,0,0);}
.m55_c00019{transform:matrix(0.214768,0.004510,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214768,0.004510,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214768,0.004510,-0.005249,0.249945,0,0);}
.m98_c00019{transform:matrix(0.214783,0.004510,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214783,0.004510,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214783,0.004510,-0.005249,0.249945,0,0);}
.mc_c00019{transform:matrix(0.215982,0.004536,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215982,0.004536,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215982,0.004536,-0.005249,0.249945,0,0);}
.mb6_c00019{transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);}
.m8d_c00019{transform:matrix(0.216137,0.004539,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216137,0.004539,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216137,0.004539,-0.005249,0.249945,0,0);}
.m34_c00019{transform:matrix(0.216347,0.004543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216347,0.004543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216347,0.004543,-0.005249,0.249945,0,0);}
.mbf_c00019{transform:matrix(0.216802,0.004553,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216802,0.004553,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216802,0.004553,-0.005249,0.249945,0,0);}
.maa_c00019{transform:matrix(0.217492,0.004567,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217492,0.004567,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217492,0.004567,-0.005249,0.249945,0,0);}
.mf_c00019{transform:matrix(0.218312,0.004585,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218312,0.004585,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218312,0.004585,-0.005249,0.249945,0,0);}
.m8a_c00019{transform:matrix(0.218802,0.004595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218802,0.004595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218802,0.004595,-0.005249,0.249945,0,0);}
.mdc_c00019{transform:matrix(0.218979,0.003066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218979,0.003066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218979,0.003066,-0.003500,0.249976,0,0);}
.m99_c00019{transform:matrix(0.219422,0.004608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219422,0.004608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219422,0.004608,-0.005249,0.249945,0,0);}
.m30_c00019{transform:matrix(0.219742,0.004615,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219742,0.004615,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219742,0.004615,-0.005249,0.249945,0,0);}
.m7d_c00019{transform:matrix(0.219932,0.004619,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219932,0.004619,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219932,0.004619,-0.005249,0.249945,0,0);}
.m96_c00019{transform:matrix(0.220071,0.004622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220071,0.004622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220071,0.004622,-0.005249,0.249945,0,0);}
.m85_c00019{transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);}
.m9d_c00019{transform:matrix(0.221241,0.004646,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221241,0.004646,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221241,0.004646,-0.005249,0.249945,0,0);}
.m4d_c00019{transform:matrix(0.221386,0.004649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221386,0.004649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221386,0.004649,-0.005249,0.249945,0,0);}
.mba_c00019{transform:matrix(0.221851,0.004659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221851,0.004659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221851,0.004659,-0.005249,0.249945,0,0);}
.m17_c00019{transform:matrix(0.222256,0.004667,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222256,0.004667,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222256,0.004667,-0.005249,0.249945,0,0);}
.m9a_c00019{transform:matrix(0.222411,0.004671,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222411,0.004671,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222411,0.004671,-0.005249,0.249945,0,0);}
.m21_c00019{transform:matrix(0.222756,0.004678,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222756,0.004678,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222756,0.004678,-0.005249,0.249945,0,0);}
.mc8_c00019{transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);}
.m82_c00019{transform:matrix(0.222826,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222826,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222826,0.004679,-0.005249,0.249945,0,0);}
.m3c_c00019{transform:matrix(0.222831,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222831,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222831,0.004679,-0.005249,0.249945,0,0);}
.md0_c00019{transform:matrix(0.223335,0.003350,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223335,0.003350,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223335,0.003350,-0.003750,0.249972,0,0);}
.m49_c00019{transform:matrix(0.223871,0.004701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223871,0.004701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223871,0.004701,-0.005249,0.249945,0,0);}
.mae_c00019{transform:matrix(0.225065,0.004726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225065,0.004726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225065,0.004726,-0.005249,0.249945,0,0);}
.m45_c00019{transform:matrix(0.225070,0.004726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225070,0.004726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225070,0.004726,-0.005249,0.249945,0,0);}
.m42_c00019{transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);}
.m93_c00019{transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);}
.mde_c00019{transform:matrix(0.226478,0.003171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226478,0.003171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226478,0.003171,-0.003500,0.249976,0,0);}
.m2f_c00019{transform:matrix(0.226895,0.004765,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226895,0.004765,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226895,0.004765,-0.005249,0.249945,0,0);}
.m57_c00019{transform:matrix(0.227410,0.004776,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227410,0.004776,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227410,0.004776,-0.005249,0.249945,0,0);}
.mce_c00019{transform:matrix(0.227594,0.003414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227594,0.003414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227594,0.003414,-0.003750,0.249972,0,0);}
.m64_c00019{transform:matrix(0.227720,0.004782,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227720,0.004782,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227720,0.004782,-0.005249,0.249945,0,0);}
.m88_c00019{transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);}
.md2_c00019{transform:matrix(0.229339,0.003440,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229339,0.003440,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229339,0.003440,-0.003750,0.249972,0,0);}
.m4f_c00019{transform:matrix(0.230179,0.004834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230179,0.004834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230179,0.004834,-0.005249,0.249945,0,0);}
.m3f_c00019{transform:matrix(0.230494,0.004840,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230494,0.004840,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230494,0.004840,-0.005249,0.249945,0,0);}
.mb1_c00019{transform:matrix(0.230554,0.004842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230554,0.004842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230554,0.004842,-0.005249,0.249945,0,0);}
.m67_c00019{transform:matrix(0.230689,0.004844,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230689,0.004844,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230689,0.004844,-0.005249,0.249945,0,0);}
.m1b_c00019{transform:matrix(0.231214,0.004855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231214,0.004855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231214,0.004855,-0.005249,0.249945,0,0);}
.m6_c00019{transform:matrix(0.231894,0.004870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231894,0.004870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231894,0.004870,-0.005249,0.249945,0,0);}
.mcd_c00019{transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);}
.m5a_c00019{transform:matrix(0.232664,0.004886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232664,0.004886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232664,0.004886,-0.005249,0.249945,0,0);}
.mc6_c00019{transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);}
.m6f_c00019{transform:matrix(0.234033,0.004915,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234033,0.004915,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234033,0.004915,-0.005249,0.249945,0,0);}
.m70_c00019{transform:matrix(0.237868,0.004995,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237868,0.004995,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237868,0.004995,-0.005249,0.249945,0,0);}
.ma9_c00019{transform:matrix(0.239057,0.005020,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239057,0.005020,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239057,0.005020,-0.005249,0.249945,0,0);}
.mc9_c00019{transform:matrix(0.239427,0.005028,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239427,0.005028,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239427,0.005028,-0.005249,0.249945,0,0);}
.ma6_c00019{transform:matrix(0.239902,0.005038,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239902,0.005038,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239902,0.005038,-0.005249,0.249945,0,0);}
.m84_c00019{transform:matrix(0.240097,0.005042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240097,0.005042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240097,0.005042,-0.005249,0.249945,0,0);}
.m80_c00019{transform:matrix(0.240182,0.005044,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240182,0.005044,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240182,0.005044,-0.005249,0.249945,0,0);}
.mc2_c00019{transform:matrix(0.240307,0.005046,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240307,0.005046,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240307,0.005046,-0.005249,0.249945,0,0);}
.m71_c00019{transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);}
.m51_c00019{transform:matrix(0.246866,0.005184,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246866,0.005184,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246866,0.005184,-0.005249,0.249945,0,0);}
.mb0_c00019{transform:matrix(0.248470,0.005218,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248470,0.005218,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248470,0.005218,-0.005249,0.249945,0,0);}
.m9e_c00019{transform:matrix(0.249230,0.005234,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249230,0.005234,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249230,0.005234,-0.005249,0.249945,0,0);}
.m1_c00019{transform:matrix(0.249845,0.005247,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249845,0.005247,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249845,0.005247,-0.005249,0.249945,0,0);}
.m40_c00019{transform:matrix(0.250075,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250075,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250075,0.005252,-0.005249,0.249945,0,0);}
.mcf_c00019{transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);}
.m89_c00019{transform:matrix(0.251720,0.005286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251720,0.005286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251720,0.005286,-0.005249,0.249945,0,0);}
.ma0_c00019{transform:matrix(0.253399,0.005321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253399,0.005321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253399,0.005321,-0.005249,0.249945,0,0);}
.ma8_c00019{transform:matrix(0.255024,0.005355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255024,0.005355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255024,0.005355,-0.005249,0.249945,0,0);}
.mab_c00019{transform:matrix(0.255369,0.005363,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255369,0.005363,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255369,0.005363,-0.005249,0.249945,0,0);}
.m29_c00019{transform:matrix(0.255894,0.005374,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255894,0.005374,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255894,0.005374,-0.005249,0.249945,0,0);}
.m32_c00019{transform:matrix(0.259748,0.005455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259748,0.005455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259748,0.005455,-0.005249,0.249945,0,0);}
.m3_c00019{transform:matrix(0.261442,0.005490,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261442,0.005490,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261442,0.005490,-0.005249,0.249945,0,0);}
.md1_c00019{transform:matrix(0.262880,0.003943,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262880,0.003943,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262880,0.003943,-0.003750,0.249972,0,0);}
.m46_c00019{transform:matrix(0.272660,0.005726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272660,0.005726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272660,0.005726,-0.005249,0.249945,0,0);}
.m4c_c00019{transform:matrix(0.273335,0.005740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273335,0.005740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273335,0.005740,-0.005249,0.249945,0,0);}
.m28_c00019{transform:matrix(0.273980,0.005754,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273980,0.005754,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273980,0.005754,-0.005249,0.249945,0,0);}
.m9c_c00019{transform:matrix(0.279473,0.005869,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279473,0.005869,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279473,0.005869,-0.005249,0.249945,0,0);}
.m27_c00019{transform:matrix(0.279568,0.005871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279568,0.005871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279568,0.005871,-0.005249,0.249945,0,0);}
.mdd_c00019{transform:matrix(0.280887,0.003932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280887,0.003932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280887,0.003932,-0.003500,0.249976,0,0);}
.m91_c00019{transform:matrix(0.282738,0.005937,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282738,0.005937,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282738,0.005937,-0.005249,0.249945,0,0);}
.m4b_c00019{transform:matrix(0.284622,0.005977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284622,0.005977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284622,0.005977,-0.005249,0.249945,0,0);}
.mcb_c00019{transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);}
.m8_c00019{transform:matrix(0.344429,0.007233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.344429,0.007233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.344429,0.007233,-0.005249,0.249945,0,0);}
.m31_c00019{transform:matrix(0.443072,0.009305,-0.005249,0.249945,0,0);-ms-transform:matrix(0.443072,0.009305,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.443072,0.009305,-0.005249,0.249945,0,0);}
.mcc_c00019{transform:matrix(0.453749,0.006806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.453749,0.006806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.453749,0.006806,-0.003750,0.249972,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
.fc0_c00019{color:transparent;}
.fsb_c00019{font-size:56.706378px;}
.fs6_c00019{font-size:56.712501px;}
.fs4_c00019{font-size:57.762732px;}
.fs7_c00019{font-size:58.812964px;}
.fs3_c00019{font-size:59.863195px;}
.fsd_c00019{font-size:60.905968px;}
.fs2_c00019{font-size:60.913427px;}
.fs1_c00019{font-size:61.963658px;}
.fs5_c00019{font-size:64.064121px;}
.fsa_c00019{font-size:65.114353px;}
.fs8_c00019{font-size:66.164584px;}
.fsc_c00019{font-size:67.206585px;}
.fs9_c00019{font-size:67.214816px;}
.fs0_c00019{font-size:119.726391px;}
.y0_c00019{bottom:0.000000px;}
.ye0_c00019{bottom:24.135438px;}
.ydf_c00019{bottom:24.408807px;}
.yde_c00019{bottom:25.337754px;}
.ydd_c00019{bottom:25.950060px;}
.ydc_c00019{bottom:26.184327px;}
.ydb_c00019{bottom:26.475120px;}
.yda_c00019{bottom:27.000390px;}
.yd9_c00019{bottom:41.496648px;}
.yd8_c00019{bottom:42.618510px;}
.yd7_c00019{bottom:42.791424px;}
.yd6_c00019{bottom:43.915092px;}
.yd5_c00019{bottom:44.228685px;}
.yd4_c00019{bottom:45.363000px;}
.yd3_c00019{bottom:92.059658px;}
.yd2_c00019{bottom:92.529278px;}
.yd1_c00019{bottom:93.476618px;}
.yd0_c00019{bottom:94.461983px;}
.ycf_c00019{bottom:94.805535px;}
.yce_c00019{bottom:95.749072px;}
.ycd_c00019{bottom:96.393000px;}
.ycc_c00019{bottom:111.939697px;}
.ycb_c00019{bottom:113.245707px;}
.yca_c00019{bottom:113.846053px;}
.yc9_c00019{bottom:126.339315px;}
.yc8_c00019{bottom:127.587612px;}
.yc7_c00019{bottom:128.461291px;}
.yc6_c00019{bottom:129.152339px;}
.yc5_c00019{bottom:129.462810px;}
.yc4_c00019{bottom:130.049065px;}
.yc3_c00019{bottom:142.659802px;}
.yc2_c00019{bottom:143.071941px;}
.yc1_c00019{bottom:144.349902px;}
.yc0_c00019{bottom:144.694183px;}
.ybf_c00019{bottom:145.280306px;}
.ybe_c00019{bottom:145.670693px;}
.ybd_c00019{bottom:146.534417px;}
.ybc_c00019{bottom:147.108072px;}
.ybb_c00019{bottom:147.602916px;}
.yba_c00019{bottom:161.118723px;}
.yb9_c00019{bottom:161.393819px;}
.yb8_c00019{bottom:161.705493px;}
.yb7_c00019{bottom:162.085320px;}
.yb6_c00019{bottom:163.174503px;}
.yb5_c00019{bottom:163.537823px;}
.yb4_c00019{bottom:177.694590px;}
.yb3_c00019{bottom:178.015662px;}
.yb2_c00019{bottom:178.299703px;}
.yb1_c00019{bottom:179.243884px;}
.yb0_c00019{bottom:179.973631px;}
.yaf_c00019{bottom:181.077303px;}
.yae_c00019{bottom:181.361332px;}
.yad_c00019{bottom:194.545606px;}
.yac_c00019{bottom:194.924680px;}
.yab_c00019{bottom:195.313638px;}
.yaa_c00019{bottom:196.023471px;}
.ya9_c00019{bottom:196.848567px;}
.ya8_c00019{bottom:197.168013px;}
.ya7_c00019{bottom:198.646255px;}
.ya6_c00019{bottom:211.081431px;}
.ya5_c00019{bottom:211.838324px;}
.ya4_c00019{bottom:212.753508px;}
.ya3_c00019{bottom:213.114520px;}
.ya2_c00019{bottom:214.378660px;}
.ya1_c00019{bottom:215.063054px;}
.ya0_c00019{bottom:215.930526px;}
.y9f_c00019{bottom:228.154509px;}
.y9e_c00019{bottom:229.748863px;}
.y9d_c00019{bottom:230.446580px;}
.y9c_c00019{bottom:231.284084px;}
.y9b_c00019{bottom:232.299708px;}
.y9a_c00019{bottom:232.813401px;}
.y99_c00019{bottom:233.214105px;}
.y98_c00019{bottom:246.275055px;}
.y97_c00019{bottom:246.533778px;}
.y96_c00019{bottom:248.159795px;}
.y95_c00019{bottom:248.889434px;}
.y94_c00019{bottom:250.600851px;}
.y93_c00019{bottom:251.037968px;}
.y92_c00019{bottom:263.026265px;}
.y91_c00019{bottom:263.534531px;}
.y90_c00019{bottom:263.938523px;}
.y8f_c00019{bottom:264.691580px;}
.y8e_c00019{bottom:265.102136px;}
.y8d_c00019{bottom:266.281232px;}
.y8c_c00019{bottom:266.969258px;}
.y8b_c00019{bottom:279.131966px;}
.y8a_c00019{bottom:280.018832px;}
.y89_c00019{bottom:281.029017px;}
.y88_c00019{bottom:281.460923px;}
.y87_c00019{bottom:281.872167px;}
.y86_c00019{bottom:282.857522px;}
.y85_c00019{bottom:283.713465px;}
.y84_c00019{bottom:296.228846px;}
.y83_c00019{bottom:297.909885px;}
.y82_c00019{bottom:298.368311px;}
.y81_c00019{bottom:299.815347px;}
.y80_c00019{bottom:300.727914px;}
.y7f_c00019{bottom:313.505339px;}
.y7e_c00019{bottom:314.575034px;}
.y7d_c00019{bottom:314.868869px;}
.y7c_c00019{bottom:315.906149px;}
.y7b_c00019{bottom:317.129363px;}
.y7a_c00019{bottom:317.469174px;}
.y79_c00019{bottom:330.802193px;}
.y78_c00019{bottom:331.100300px;}
.y77_c00019{bottom:331.408113px;}
.y76_c00019{bottom:332.337839px;}
.y75_c00019{bottom:332.613685px;}
.y74_c00019{bottom:333.521486px;}
.y73_c00019{bottom:333.755994px;}
.y72_c00019{bottom:334.213592px;}
.y71_c00019{bottom:347.393187px;}
.y70_c00019{bottom:348.762494px;}
.y6f_c00019{bottom:349.106538px;}
.y6e_c00019{bottom:349.442243px;}
.y6d_c00019{bottom:349.988503px;}
.y6c_c00019{bottom:350.357316px;}
.y6b_c00019{bottom:350.636128px;}
.y6a_c00019{bottom:351.414658px;}
.y69_c00019{bottom:351.765184px;}
.y68_c00019{bottom:364.665820px;}
.y67_c00019{bottom:365.000545px;}
.y66_c00019{bottom:365.316807px;}
.y65_c00019{bottom:365.576890px;}
.y64_c00019{bottom:366.380266px;}
.y63_c00019{bottom:366.675910px;}
.y62_c00019{bottom:367.034013px;}
.y61_c00019{bottom:367.879230px;}
.y60_c00019{bottom:368.310198px;}
.y5f_c00019{bottom:368.568013px;}
.y5e_c00019{bottom:369.048942px;}
.y5d_c00019{bottom:382.309048px;}
.y5c_c00019{bottom:383.833177px;}
.y5b_c00019{bottom:384.585711px;}
.y5a_c00019{bottom:385.061253px;}
.y59_c00019{bottom:386.063640px;}
.y58_c00019{bottom:397.999375px;}
.y57_c00019{bottom:398.755476px;}
.y56_c00019{bottom:399.602493px;}
.y55_c00019{bottom:399.848679px;}
.y54_c00019{bottom:400.232773px;}
.y53_c00019{bottom:401.005258px;}
.y52_c00019{bottom:401.347728px;}
.y51_c00019{bottom:402.536982px;}
.y50_c00019{bottom:415.050816px;}
.y4f_c00019{bottom:416.074728px;}
.y4e_c00019{bottom:417.061153px;}
.y4d_c00019{bottom:417.328630px;}
.y4c_c00019{bottom:417.928504px;}
.y4b_c00019{bottom:418.324132px;}
.y4a_c00019{bottom:418.494180px;}
.y49_c00019{bottom:419.029449px;}
.y48_c00019{bottom:419.278545px;}
.y47_c00019{bottom:431.807044px;}
.y46_c00019{bottom:432.685063px;}
.y45_c00019{bottom:432.972646px;}
.y44_c00019{bottom:434.265365px;}
.y43_c00019{bottom:434.465463px;}
.y42_c00019{bottom:435.128176px;}
.y41_c00019{bottom:435.959654px;}
.y40_c00019{bottom:436.338765px;}
.y3f_c00019{bottom:437.374605px;}
.y3e_c00019{bottom:448.924173px;}
.y3d_c00019{bottom:449.988222px;}
.y3c_c00019{bottom:450.901609px;}
.y3b_c00019{bottom:451.322995px;}
.y3a_c00019{bottom:452.370381px;}
.y39_c00019{bottom:452.688442px;}
.y38_c00019{bottom:453.119152px;}
.y37_c00019{bottom:454.120429px;}
.y36_c00019{bottom:465.658749px;}
.y35_c00019{bottom:466.006539px;}
.y34_c00019{bottom:466.663794px;}
.y33_c00019{bottom:466.966424px;}
.y32_c00019{bottom:467.805404px;}
.y31_c00019{bottom:467.979954px;}
.y30_c00019{bottom:468.407173px;}
.y2f_c00019{bottom:468.814102px;}
.y2e_c00019{bottom:469.109652px;}
.y2d_c00019{bottom:470.321595px;}
.y2c_c00019{bottom:483.209369px;}
.y2b_c00019{bottom:483.508899px;}
.y2a_c00019{bottom:484.558758px;}
.y29_c00019{bottom:484.823094px;}
.y28_c00019{bottom:485.148124px;}
.y27_c00019{bottom:485.468418px;}
.y26_c00019{bottom:486.108343px;}
.y25_c00019{bottom:487.113074px;}
.y24_c00019{bottom:487.875636px;}
.y23_c00019{bottom:499.909040px;}
.y22_c00019{bottom:500.409488px;}
.y21_c00019{bottom:501.498704px;}
.y20_c00019{bottom:501.803714px;}
.y1f_c00019{bottom:502.046480px;}
.y1e_c00019{bottom:502.526633px;}
.y1d_c00019{bottom:502.745961px;}
.y1c_c00019{bottom:503.274942px;}
.y1b_c00019{bottom:503.807380px;}
.y1a_c00019{bottom:517.085619px;}
.y19_c00019{bottom:517.222339px;}
.y18_c00019{bottom:518.384208px;}
.y17_c00019{bottom:518.699905px;}
.y16_c00019{bottom:519.196167px;}
.y15_c00019{bottom:519.490978px;}
.y14_c00019{bottom:519.826976px;}
.y13_c00019{bottom:520.166902px;}
.y12_c00019{bottom:520.550472px;}
.y11_c00019{bottom:534.565690px;}
.y10_c00019{bottom:534.876382px;}
.yf_c00019{bottom:535.632634px;}
.ye_c00019{bottom:536.498750px;}
.yd_c00019{bottom:537.387420px;}
.yc_c00019{bottom:537.677282px;}
.yb_c00019{bottom:538.104909px;}
.ya_c00019{bottom:550.683002px;}
.y9_c00019{bottom:551.646498px;}
.y8_c00019{bottom:551.875071px;}
.y7_c00019{bottom:552.597087px;}
.y6_c00019{bottom:552.946889px;}
.y5_c00019{bottom:554.039367px;}
.y4_c00019{bottom:554.237206px;}
.y3_c00019{bottom:555.119461px;}
.y2_c00019{bottom:567.340245px;}
.y1_c00019{bottom:569.160000px;}
.hd_c00019{height:56.706378px;}
.h8_c00019{height:56.712501px;}
.h6_c00019{height:57.762732px;}
.h9_c00019{height:58.812964px;}
.h5_c00019{height:59.863195px;}
.hf_c00019{height:60.905968px;}
.h4_c00019{height:60.913427px;}
.h3_c00019{height:61.963658px;}
.h7_c00019{height:64.064121px;}
.hc_c00019{height:65.114353px;}
.ha_c00019{height:66.164584px;}
.he_c00019{height:67.206585px;}
.hb_c00019{height:67.214816px;}
.h2_c00019{height:119.726391px;}
.h0_c00019{height:615.600000px;}
.h1_c00019{height:615.750000px;}
.w0_c00019{width:367.200000px;}
.w1_c00019{width:367.500000px;}
.x0_c00019{left:0.000000px;}
.x7a_c00019{left:36.280500px;}
.x7d_c00019{left:37.388691px;}
.x74_c00019{left:39.768258px;}
.x69_c00019{left:40.818627px;}
.x64_c00019{left:41.885202px;}
.x60_c00019{left:42.991735px;}
.x52_c00019{left:44.649975px;}
.x37_c00019{left:47.653375px;}
.x1e_c00019{left:48.922839px;}
.x3_c00019{left:50.819673px;}
.xa_c00019{left:52.465750px;}
.x6d_c00019{left:61.361397px;}
.x38_c00019{left:63.231013px;}
.x57_c00019{left:67.050238px;}
.x73_c00019{left:69.162796px;}
.x70_c00019{left:70.289539px;}
.x4c_c00019{left:73.496754px;}
.x44_c00019{left:75.102523px;}
.x53_c00019{left:77.302263px;}
.x11_c00019{left:80.077890px;}
.x75_c00019{left:81.619900px;}
.xb_c00019{left:83.047755px;}
.x76_c00019{left:85.954500px;}
.x18_c00019{left:88.677606px;}
.x45_c00019{left:90.309315px;}
.x65_c00019{left:92.645383px;}
.x1f_c00019{left:93.739087px;}
.x39_c00019{left:96.723541px;}
.x2b_c00019{left:98.928817px;}
.x1_c00019{left:100.968000px;}
.xc_c00019{left:103.782310px;}
.x4_c00019{left:105.980469px;}
.x3a_c00019{left:107.322144px;}
.x7e_c00019{left:111.646320px;}
.x46_c00019{left:115.619425px;}
.x7b_c00019{left:117.303000px;}
.x5_c00019{left:118.331260px;}
.x24_c00019{left:120.464463px;}
.x3f_c00019{left:121.586584px;}
.x31_c00019{left:123.698545px;}
.x4d_c00019{left:125.433306px;}
.x19_c00019{left:126.444150px;}
.x12_c00019{left:132.130647px;}
.x42_c00019{left:133.717084px;}
.x2c_c00019{left:136.371105px;}
.x25_c00019{left:137.825412px;}
.x6e_c00019{left:140.214489px;}
.x1a_c00019{left:142.104949px;}
.x4e_c00019{left:143.998137px;}
.x58_c00019{left:148.594507px;}
.x63_c00019{left:149.603221px;}
.x20_c00019{left:152.874064px;}
.x13_c00019{left:154.815958px;}
.x54_c00019{left:158.852733px;}
.x26_c00019{left:161.776428px;}
.x47_c00019{left:165.300583px;}
.xd_c00019{left:167.252134px;}
.x4f_c00019{left:168.563724px;}
.x3b_c00019{left:169.590696px;}
.x77_c00019{left:171.760500px;}
.x1b_c00019{left:176.402989px;}
.x43_c00019{left:177.984301px;}
.x5d_c00019{left:184.493301px;}
.x3c_c00019{left:186.329460px;}
.x2_c00019{left:187.623000px;}
.x2d_c00019{left:188.747707px;}
.x21_c00019{left:190.492714px;}
.x5a_c00019{left:191.523298px;}
.x14_c00019{left:192.953853px;}
.x61_c00019{left:194.828856px;}
.x27_c00019{left:197.149389px;}
.x32_c00019{left:202.282321px;}
.x48_c00019{left:203.720296px;}
.x50_c00019{left:205.009323px;}
.x67_c00019{left:207.230682px;}
.x6_c00019{left:208.520742px;}
.x2e_c00019{left:209.814148px;}
.x5e_c00019{left:211.491636px;}
.x33_c00019{left:212.811262px;}
.x1c_c00019{left:215.564754px;}
.x15_c00019{left:217.205416px;}
.x71_c00019{left:218.612043px;}
.x5b_c00019{left:220.141791px;}
.x51_c00019{left:227.426658px;}
.xe_c00019{left:229.076206px;}
.x40_c00019{left:230.633019px;}
.x7c_c00019{left:232.315500px;}
.x66_c00019{left:234.408829px;}
.x59_c00019{left:237.420721px;}
.x72_c00019{left:241.501858px;}
.x22_c00019{left:243.957187px;}
.x55_c00019{left:244.987896px;}
.x28_c00019{left:246.533547px;}
.x3d_c00019{left:247.951417px;}
.x6a_c00019{left:249.107988px;}
.x49_c00019{left:250.980265px;}
.x7_c00019{left:253.621467px;}
.x2f_c00019{left:255.452593px;}
.x6f_c00019{left:259.800066px;}
.x29_c00019{left:264.374559px;}
.x4a_c00019{left:266.295057px;}
.x8_c00019{left:267.935979px;}
.x62_c00019{left:272.007589px;}
.x6b_c00019{left:273.418039px;}
.x5f_c00019{left:274.673782px;}
.x34_c00019{left:280.872129px;}
.xf_c00019{left:283.096144px;}
.x4b_c00019{left:284.928132px;}
.x56_c00019{left:288.204727px;}
.x1d_c00019{left:293.372188px;}
.x35_c00019{left:295.995759px;}
.x6c_c00019{left:297.114528px;}
.x78_c00019{left:300.607500px;}
.x2a_c00019{left:303.032803px;}
.x10_c00019{left:305.251389px;}
.x16_c00019{left:306.618942px;}
.x30_c00019{left:308.622696px;}
.x3e_c00019{left:311.930127px;}
.x17_c00019{left:317.131206px;}
.x23_c00019{left:323.363365px;}
.x5c_c00019{left:325.202316px;}
.x68_c00019{left:326.840230px;}
.x9_c00019{left:328.108779px;}
.x41_c00019{left:330.911071px;}
.x79_c00019{left:331.915500px;}
.x36_c00019{left:342.236712px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
.fsb_c00019{font-size:50.405670pt;}
.fs6_c00019{font-size:50.411112pt;}
.fs4_c00019{font-size:51.344651pt;}
.fs7_c00019{font-size:52.278190pt;}
.fs3_c00019{font-size:53.211729pt;}
.fsd_c00019{font-size:54.138638pt;}
.fs2_c00019{font-size:54.145268pt;}
.fs1_c00019{font-size:55.078808pt;}
.fs5_c00019{font-size:56.945886pt;}
.fsa_c00019{font-size:57.879425pt;}
.fs8_c00019{font-size:58.812964pt;}
.fsc_c00019{font-size:59.739187pt;}
.fs9_c00019{font-size:59.746503pt;}
.fs0_c00019{font-size:106.423459pt;}
.y0_c00019{bottom:0.000000pt;}
.ye0_c00019{bottom:21.453723pt;}
.ydf_c00019{bottom:21.696717pt;}
.yde_c00019{bottom:22.522448pt;}
.ydd_c00019{bottom:23.066720pt;}
.ydc_c00019{bottom:23.274957pt;}
.ydb_c00019{bottom:23.533440pt;}
.yda_c00019{bottom:24.000347pt;}
.yd9_c00019{bottom:36.885909pt;}
.yd8_c00019{bottom:37.883120pt;}
.yd7_c00019{bottom:38.036821pt;}
.yd6_c00019{bottom:39.035637pt;}
.yd5_c00019{bottom:39.314387pt;}
.yd4_c00019{bottom:40.322667pt;}
.yd3_c00019{bottom:81.830807pt;}
.yd2_c00019{bottom:82.248247pt;}
.yd1_c00019{bottom:83.090327pt;}
.yd0_c00019{bottom:83.966207pt;}
.ycf_c00019{bottom:84.271587pt;}
.yce_c00019{bottom:85.110287pt;}
.ycd_c00019{bottom:85.682667pt;}
.ycc_c00019{bottom:99.501953pt;}
.ycb_c00019{bottom:100.662851pt;}
.yca_c00019{bottom:101.196492pt;}
.yc9_c00019{bottom:112.301613pt;}
.yc8_c00019{bottom:113.411211pt;}
.yc7_c00019{bottom:114.187815pt;}
.yc6_c00019{bottom:114.802079pt;}
.yc5_c00019{bottom:115.078053pt;}
.yc4_c00019{bottom:115.599169pt;}
.yc3_c00019{bottom:126.808713pt;}
.yc2_c00019{bottom:127.175059pt;}
.yc1_c00019{bottom:128.311024pt;}
.yc0_c00019{bottom:128.617052pt;}
.ybf_c00019{bottom:129.138049pt;}
.ybe_c00019{bottom:129.485060pt;}
.ybd_c00019{bottom:130.252815pt;}
.ybc_c00019{bottom:130.762731pt;}
.ybb_c00019{bottom:131.202592pt;}
.yba_c00019{bottom:143.216643pt;}
.yb9_c00019{bottom:143.461172pt;}
.yb8_c00019{bottom:143.738216pt;}
.yb7_c00019{bottom:144.075840pt;}
.yb6_c00019{bottom:145.044003pt;}
.yb5_c00019{bottom:145.366953pt;}
.yb4_c00019{bottom:157.950747pt;}
.yb3_c00019{bottom:158.236144pt;}
.yb2_c00019{bottom:158.488625pt;}
.yb1_c00019{bottom:159.327897pt;}
.yb0_c00019{bottom:159.976561pt;}
.yaf_c00019{bottom:160.957603pt;}
.yae_c00019{bottom:161.210073pt;}
.yad_c00019{bottom:172.929428pt;}
.yac_c00019{bottom:173.266383pt;}
.yab_c00019{bottom:173.612123pt;}
.yaa_c00019{bottom:174.243085pt;}
.ya9_c00019{bottom:174.976504pt;}
.ya8_c00019{bottom:175.260456pt;}
.ya7_c00019{bottom:176.574449pt;}
.ya6_c00019{bottom:187.627939pt;}
.ya5_c00019{bottom:188.300732pt;}
.ya4_c00019{bottom:189.114229pt;}
.ya3_c00019{bottom:189.435129pt;}
.ya2_c00019{bottom:190.558809pt;}
.ya1_c00019{bottom:191.167159pt;}
.ya0_c00019{bottom:191.938245pt;}
.y9f_c00019{bottom:202.804008pt;}
.y9e_c00019{bottom:204.221212pt;}
.y9d_c00019{bottom:204.841404pt;}
.y9c_c00019{bottom:205.585852pt;}
.y9b_c00019{bottom:206.488629pt;}
.y9a_c00019{bottom:206.945245pt;}
.y99_c00019{bottom:207.301427pt;}
.y98_c00019{bottom:218.911160pt;}
.y97_c00019{bottom:219.141136pt;}
.y96_c00019{bottom:220.586484pt;}
.y95_c00019{bottom:221.235052pt;}
.y94_c00019{bottom:222.756312pt;}
.y93_c00019{bottom:223.144860pt;}
.y92_c00019{bottom:233.801124pt;}
.y91_c00019{bottom:234.252916pt;}
.y90_c00019{bottom:234.612020pt;}
.y8f_c00019{bottom:235.281404pt;}
.y8e_c00019{bottom:235.646343pt;}
.y8d_c00019{bottom:236.694428pt;}
.y8c_c00019{bottom:237.306007pt;}
.y8b_c00019{bottom:248.117303pt;}
.y8a_c00019{bottom:248.905628pt;}
.y89_c00019{bottom:249.803571pt;}
.y88_c00019{bottom:250.187487pt;}
.y87_c00019{bottom:250.553037pt;}
.y86_c00019{bottom:251.428908pt;}
.y85_c00019{bottom:252.189747pt;}
.y84_c00019{bottom:263.314529pt;}
.y83_c00019{bottom:264.808787pt;}
.y82_c00019{bottom:265.216276pt;}
.y81_c00019{bottom:266.502531pt;}
.y80_c00019{bottom:267.313701pt;}
.y7f_c00019{bottom:278.671412pt;}
.y7e_c00019{bottom:279.622252pt;}
.y7d_c00019{bottom:279.883439pt;}
.y7c_c00019{bottom:280.805465pt;}
.y7b_c00019{bottom:281.892767pt;}
.y7a_c00019{bottom:282.194821pt;}
.y79_c00019{bottom:294.046393pt;}
.y78_c00019{bottom:294.311377pt;}
.y77_c00019{bottom:294.584989pt;}
.y76_c00019{bottom:295.411412pt;}
.y75_c00019{bottom:295.656609pt;}
.y74_c00019{bottom:296.463543pt;}
.y73_c00019{bottom:296.671995pt;}
.y72_c00019{bottom:297.078748pt;}
.y71_c00019{bottom:308.793944pt;}
.y70_c00019{bottom:310.011105pt;}
.y6f_c00019{bottom:310.316923pt;}
.y6e_c00019{bottom:310.615327pt;}
.y6d_c00019{bottom:311.100892pt;}
.y6c_c00019{bottom:311.428725pt;}
.y6b_c00019{bottom:311.676559pt;}
.y6a_c00019{bottom:312.368585pt;}
.y69_c00019{bottom:312.680164pt;}
.y68_c00019{bottom:324.147396pt;}
.y67_c00019{bottom:324.444929pt;}
.y66_c00019{bottom:324.726051pt;}
.y65_c00019{bottom:324.957236pt;}
.y64_c00019{bottom:325.671348pt;}
.y63_c00019{bottom:325.934143pt;}
.y62_c00019{bottom:326.252456pt;}
.y61_c00019{bottom:327.003760pt;}
.y60_c00019{bottom:327.386843pt;}
.y5f_c00019{bottom:327.616012pt;}
.y5e_c00019{bottom:328.043504pt;}
.y5d_c00019{bottom:339.830265pt;}
.y5c_c00019{bottom:341.185047pt;}
.y5b_c00019{bottom:341.853965pt;}
.y5a_c00019{bottom:342.276669pt;}
.y59_c00019{bottom:343.167680pt;}
.y58_c00019{bottom:353.777223pt;}
.y57_c00019{bottom:354.449312pt;}
.y56_c00019{bottom:355.202216pt;}
.y55_c00019{bottom:355.421048pt;}
.y54_c00019{bottom:355.762465pt;}
.y53_c00019{bottom:356.449119pt;}
.y52_c00019{bottom:356.753536pt;}
.y51_c00019{bottom:357.810651pt;}
.y50_c00019{bottom:368.934059pt;}
.y4f_c00019{bottom:369.844203pt;}
.y4e_c00019{bottom:370.721025pt;}
.y4d_c00019{bottom:370.958783pt;}
.y4c_c00019{bottom:371.492004pt;}
.y4b_c00019{bottom:371.843673pt;}
.y4a_c00019{bottom:371.994827pt;}
.y49_c00019{bottom:372.470621pt;}
.y48_c00019{bottom:372.692040pt;}
.y47_c00019{bottom:383.828484pt;}
.y46_c00019{bottom:384.608945pt;}
.y45_c00019{bottom:384.864575pt;}
.y44_c00019{bottom:386.013657pt;}
.y43_c00019{bottom:386.191523pt;}
.y42_c00019{bottom:386.780601pt;}
.y41_c00019{bottom:387.519692pt;}
.y40_c00019{bottom:387.856680pt;}
.y3f_c00019{bottom:388.777427pt;}
.y3e_c00019{bottom:399.043709pt;}
.y3d_c00019{bottom:399.989531pt;}
.y3c_c00019{bottom:400.801431pt;}
.y3b_c00019{bottom:401.175996pt;}
.y3a_c00019{bottom:402.107005pt;}
.y39_c00019{bottom:402.389727pt;}
.y38_c00019{bottom:402.772580pt;}
.y37_c00019{bottom:403.662604pt;}
.y36_c00019{bottom:413.918888pt;}
.y35_c00019{bottom:414.228035pt;}
.y34_c00019{bottom:414.812261pt;}
.y33_c00019{bottom:415.081265pt;}
.y32_c00019{bottom:415.827025pt;}
.y31_c00019{bottom:415.982181pt;}
.y30_c00019{bottom:416.361932pt;}
.y2f_c00019{bottom:416.723647pt;}
.y2e_c00019{bottom:416.986357pt;}
.y2d_c00019{bottom:418.063640pt;}
.y2c_c00019{bottom:429.519439pt;}
.y2b_c00019{bottom:429.785688pt;}
.y2a_c00019{bottom:430.718896pt;}
.y29_c00019{bottom:430.953861pt;}
.y28_c00019{bottom:431.242777pt;}
.y27_c00019{bottom:431.527483pt;}
.y26_c00019{bottom:432.096305pt;}
.y25_c00019{bottom:432.989399pt;}
.y24_c00019{bottom:433.667232pt;}
.y23_c00019{bottom:444.363591pt;}
.y22_c00019{bottom:444.808433pt;}
.y21_c00019{bottom:445.776625pt;}
.y20_c00019{bottom:446.047745pt;}
.y1f_c00019{bottom:446.263537pt;}
.y1e_c00019{bottom:446.690340pt;}
.y1d_c00019{bottom:446.885299pt;}
.y1c_c00019{bottom:447.355504pt;}
.y1b_c00019{bottom:447.828783pt;}
.y1a_c00019{bottom:459.631661pt;}
.y19_c00019{bottom:459.753191pt;}
.y18_c00019{bottom:460.785963pt;}
.y17_c00019{bottom:461.066583pt;}
.y16_c00019{bottom:461.507704pt;}
.y15_c00019{bottom:461.769759pt;}
.y14_c00019{bottom:462.068423pt;}
.y13_c00019{bottom:462.370580pt;}
.y12_c00019{bottom:462.711531pt;}
.y11_c00019{bottom:475.169503pt;}
.y10_c00019{bottom:475.445673pt;}
.yf_c00019{bottom:476.117897pt;}
.ye_c00019{bottom:476.887777pt;}
.yd_c00019{bottom:477.677707pt;}
.yc_c00019{bottom:477.935361pt;}
.yb_c00019{bottom:478.315475pt;}
.ya_c00019{bottom:489.496001pt;}
.y9_c00019{bottom:490.352443pt;}
.y8_c00019{bottom:490.555619pt;}
.y7_c00019{bottom:491.197411pt;}
.y6_c00019{bottom:491.508345pt;}
.y5_c00019{bottom:492.479437pt;}
.y4_c00019{bottom:492.655295pt;}
.y3_c00019{bottom:493.439521pt;}
.y2_c00019{bottom:504.302440pt;}
.y1_c00019{bottom:505.920000pt;}
.hd_c00019{height:50.405670pt;}
.h8_c00019{height:50.411112pt;}
.h6_c00019{height:51.344651pt;}
.h9_c00019{height:52.278190pt;}
.h5_c00019{height:53.211729pt;}
.hf_c00019{height:54.138638pt;}
.h4_c00019{height:54.145268pt;}
.h3_c00019{height:55.078808pt;}
.h7_c00019{height:56.945886pt;}
.hc_c00019{height:57.879425pt;}
.ha_c00019{height:58.812964pt;}
.he_c00019{height:59.739187pt;}
.hb_c00019{height:59.746503pt;}
.h2_c00019{height:106.423459pt;}
.h0_c00019{height:547.200000pt;}
.h1_c00019{height:547.333333pt;}
.w0_c00019{width:326.400000pt;}
.w1_c00019{width:326.666667pt;}
.x0_c00019{left:0.000000pt;}
.x7a_c00019{left:32.249333pt;}
.x7d_c00019{left:33.234392pt;}
.x74_c00019{left:35.349563pt;}
.x69_c00019{left:36.283224pt;}
.x64_c00019{left:37.231291pt;}
.x60_c00019{left:38.214876pt;}
.x52_c00019{left:39.688867pt;}
.x37_c00019{left:42.358556pt;}
.x1e_c00019{left:43.486968pt;}
.x3_c00019{left:45.173043pt;}
.xa_c00019{left:46.636223pt;}
.x6d_c00019{left:54.543464pt;}
.x38_c00019{left:56.205345pt;}
.x57_c00019{left:59.600212pt;}
.x73_c00019{left:61.478041pt;}
.x70_c00019{left:62.479591pt;}
.x4c_c00019{left:65.330448pt;}
.x44_c00019{left:66.757799pt;}
.x53_c00019{left:68.713123pt;}
.x11_c00019{left:71.180347pt;}
.x75_c00019{left:72.551023pt;}
.xb_c00019{left:73.820227pt;}
.x76_c00019{left:76.404000pt;}
.x18_c00019{left:78.824539pt;}
.x45_c00019{left:80.274947pt;}
.x65_c00019{left:82.351452pt;}
.x1f_c00019{left:83.323633pt;}
.x39_c00019{left:85.976481pt;}
.x2b_c00019{left:87.936727pt;}
.x1_c00019{left:89.749333pt;}
.xc_c00019{left:92.250943pt;}
.x4_c00019{left:94.204861pt;}
.x3a_c00019{left:95.397461pt;}
.x7e_c00019{left:99.241173pt;}
.x46_c00019{left:102.772823pt;}
.x7b_c00019{left:104.269333pt;}
.x5_c00019{left:105.183343pt;}
.x24_c00019{left:107.079523pt;}
.x3f_c00019{left:108.076964pt;}
.x31_c00019{left:109.954263pt;}
.x4d_c00019{left:111.496272pt;}
.x19_c00019{left:112.394800pt;}
.x12_c00019{left:117.449464pt;}
.x42_c00019{left:118.859631pt;}
.x2c_c00019{left:121.218760pt;}
.x25_c00019{left:122.511477pt;}
.x6e_c00019{left:124.635101pt;}
.x1a_c00019{left:126.315511pt;}
.x4e_c00019{left:127.998344pt;}
.x58_c00019{left:132.084007pt;}
.x63_c00019{left:132.980641pt;}
.x20_c00019{left:135.888057pt;}
.x13_c00019{left:137.614185pt;}
.x54_c00019{left:141.202429pt;}
.x26_c00019{left:143.801269pt;}
.x47_c00019{left:146.933852pt;}
.xd_c00019{left:148.668564pt;}
.x4f_c00019{left:149.834421pt;}
.x3b_c00019{left:150.747285pt;}
.x77_c00019{left:152.676000pt;}
.x1b_c00019{left:156.802657pt;}
.x43_c00019{left:158.208268pt;}
.x5d_c00019{left:163.994045pt;}
.x3c_c00019{left:165.626187pt;}
.x2_c00019{left:166.776000pt;}
.x2d_c00019{left:167.775740pt;}
.x21_c00019{left:169.326857pt;}
.x5a_c00019{left:170.242932pt;}
.x14_c00019{left:171.514536pt;}
.x61_c00019{left:173.181205pt;}
.x27_c00019{left:175.243901pt;}
.x32_c00019{left:179.806508pt;}
.x48_c00019{left:181.084708pt;}
.x50_c00019{left:182.230509pt;}
.x67_c00019{left:184.205051pt;}
.x6_c00019{left:185.351771pt;}
.x2e_c00019{left:186.501465pt;}
.x5e_c00019{left:187.992565pt;}
.x33_c00019{left:189.165567pt;}
.x1c_c00019{left:191.613115pt;}
.x15_c00019{left:193.071481pt;}
.x71_c00019{left:194.321816pt;}
.x5b_c00019{left:195.681592pt;}
.x51_c00019{left:202.157029pt;}
.xe_c00019{left:203.623295pt;}
.x40_c00019{left:205.007128pt;}
.x7c_c00019{left:206.502667pt;}
.x66_c00019{left:208.363404pt;}
.x59_c00019{left:211.040641pt;}
.x72_c00019{left:214.668319pt;}
.x22_c00019{left:216.850833pt;}
.x55_c00019{left:217.767019pt;}
.x28_c00019{left:219.140931pt;}
.x3d_c00019{left:220.401260pt;}
.x6a_c00019{left:221.429323pt;}
.x49_c00019{left:223.093569pt;}
.x7_c00019{left:225.441304pt;}
.x2f_c00019{left:227.068972pt;}
.x6f_c00019{left:230.933392pt;}
.x29_c00019{left:234.999608pt;}
.x4a_c00019{left:236.706717pt;}
.x8_c00019{left:238.165315pt;}
.x62_c00019{left:241.784524pt;}
.x6b_c00019{left:243.038257pt;}
.x5f_c00019{left:244.154473pt;}
.x34_c00019{left:249.664115pt;}
.xf_c00019{left:251.641017pt;}
.x4b_c00019{left:253.269451pt;}
.x56_c00019{left:256.181980pt;}
.x1d_c00019{left:260.775279pt;}
.x35_c00019{left:263.107341pt;}
.x6c_c00019{left:264.101803pt;}
.x78_c00019{left:267.206667pt;}
.x2a_c00019{left:269.362492pt;}
.x10_c00019{left:271.334568pt;}
.x16_c00019{left:272.550171pt;}
.x30_c00019{left:274.331285pt;}
.x3e_c00019{left:277.271224pt;}
.x17_c00019{left:281.894405pt;}
.x23_c00019{left:287.434103pt;}
.x5c_c00019{left:289.068725pt;}
.x68_c00019{left:290.524649pt;}
.x9_c00019{left:291.652248pt;}
.x41_c00019{left:294.143175pt;}
.x79_c00019{left:295.036000pt;}
.x36_c00019{left:304.210411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00020 {
    display:none;
  }
  .loading-indicator_c00020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00020 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00020 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00020" -> "#page-container .classname_c00020")
 */
.pf_c00020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00020 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00020 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00020 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00020 {overflow:visible;}
  }
}
.c_c00020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00020 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00020:after { /* webkit #35443 */
  content: '';
}
.t_c00020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00020 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00020 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00020 { /* info for Javascript */
  display:none;
}
.l_c00020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00020:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00020 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00020.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00020;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00020{transform:matrix(0.062664,0.002133,-0.008504,0.249855,0,0);-ms-transform:matrix(0.062664,0.002133,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.062664,0.002133,-0.008504,0.249855,0,0);}
.m36_c00020{transform:matrix(0.084457,0.003382,-0.010002,0.249800,0,0);-ms-transform:matrix(0.084457,0.003382,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.084457,0.003382,-0.010002,0.249800,0,0);}
.m4e_c00020{transform:matrix(0.098463,0.003351,-0.008504,0.249855,0,0);-ms-transform:matrix(0.098463,0.003351,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.098463,0.003351,-0.008504,0.249855,0,0);}
.m11_c00020{transform:matrix(0.102177,0.004909,-0.011998,0.249712,0,0);-ms-transform:matrix(0.102177,0.004909,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.102177,0.004909,-0.011998,0.249712,0,0);}
.mdf_c00020{transform:matrix(0.121168,0.005337,-0.011000,0.249758,0,0);-ms-transform:matrix(0.121168,0.005337,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.121168,0.005337,-0.011000,0.249758,0,0);}
.mbb_c00020{transform:matrix(0.129929,0.005723,-0.011000,0.249758,0,0);-ms-transform:matrix(0.129929,0.005723,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.129929,0.005723,-0.011000,0.249758,0,0);}
.m1_c00020{transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);}
.mc9_c00020{transform:matrix(0.139255,0.006133,-0.011000,0.249758,0,0);-ms-transform:matrix(0.139255,0.006133,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.139255,0.006133,-0.011000,0.249758,0,0);}
.m1a_c00020{transform:matrix(0.139294,0.006693,-0.011998,0.249712,0,0);-ms-transform:matrix(0.139294,0.006693,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.139294,0.006693,-0.011998,0.249712,0,0);}
.m21_c00020{transform:matrix(0.144928,0.006963,-0.011998,0.249712,0,0);-ms-transform:matrix(0.144928,0.006963,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.144928,0.006963,-0.011998,0.249712,0,0);}
.m70_c00020{transform:matrix(0.145921,0.004966,-0.008504,0.249855,0,0);-ms-transform:matrix(0.145921,0.004966,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.145921,0.004966,-0.008504,0.249855,0,0);}
.m3b_c00020{transform:matrix(0.147600,0.006205,-0.010501,0.249779,0,0);-ms-transform:matrix(0.147600,0.006205,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.147600,0.006205,-0.010501,0.249779,0,0);}
.mf0_c00020{transform:matrix(0.148701,0.006549,-0.011000,0.249758,0,0);-ms-transform:matrix(0.148701,0.006549,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.148701,0.006549,-0.011000,0.249758,0,0);}
.m8d_c00020{transform:matrix(0.149043,0.007460,-0.012497,0.249687,0,0);-ms-transform:matrix(0.149043,0.007460,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.149043,0.007460,-0.012497,0.249687,0,0);}
.mf4_c00020{transform:matrix(0.149095,0.006567,-0.011000,0.249758,0,0);-ms-transform:matrix(0.149095,0.006567,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.149095,0.006567,-0.011000,0.249758,0,0);}
.m94_c00020{transform:matrix(0.154651,0.007740,-0.012497,0.249687,0,0);-ms-transform:matrix(0.154651,0.007740,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.154651,0.007740,-0.012497,0.249687,0,0);}
.m1b_c00020{transform:matrix(0.154886,0.007442,-0.011998,0.249712,0,0);-ms-transform:matrix(0.154886,0.007442,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.154886,0.007442,-0.011998,0.249712,0,0);}
.m80_c00020{transform:matrix(0.157291,0.007715,-0.012248,0.249700,0,0);-ms-transform:matrix(0.157291,0.007715,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.157291,0.007715,-0.012248,0.249700,0,0);}
.m20_c00020{transform:matrix(0.158023,0.007593,-0.011998,0.249712,0,0);-ms-transform:matrix(0.158023,0.007593,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.158023,0.007593,-0.011998,0.249712,0,0);}
.m78_c00020{transform:matrix(0.158383,0.005390,-0.008504,0.249855,0,0);-ms-transform:matrix(0.158383,0.005390,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.158383,0.005390,-0.008504,0.249855,0,0);}
.m82_c00020{transform:matrix(0.159628,0.007830,-0.012248,0.249700,0,0);-ms-transform:matrix(0.159628,0.007830,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.159628,0.007830,-0.012248,0.249700,0,0);}
.mea_c00020{transform:matrix(0.160005,0.007047,-0.011000,0.249758,0,0);-ms-transform:matrix(0.160005,0.007047,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.160005,0.007047,-0.011000,0.249758,0,0);}
.mdc_c00020{transform:matrix(0.160180,0.007055,-0.011000,0.249758,0,0);-ms-transform:matrix(0.160180,0.007055,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.160180,0.007055,-0.011000,0.249758,0,0);}
.m39_c00020{transform:matrix(0.160257,0.006417,-0.010002,0.249800,0,0);-ms-transform:matrix(0.160257,0.006417,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.160257,0.006417,-0.010002,0.249800,0,0);}
.md9_c00020{transform:matrix(0.161653,0.007120,-0.011000,0.249758,0,0);-ms-transform:matrix(0.161653,0.007120,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.161653,0.007120,-0.011000,0.249758,0,0);}
.mf5_c00020{transform:matrix(0.162642,0.007163,-0.011000,0.249758,0,0);-ms-transform:matrix(0.162642,0.007163,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.162642,0.007163,-0.011000,0.249758,0,0);}
.m97_c00020{transform:matrix(0.162951,0.008156,-0.012497,0.249687,0,0);-ms-transform:matrix(0.162951,0.008156,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.162951,0.008156,-0.012497,0.249687,0,0);}
.m1d_c00020{transform:matrix(0.163002,0.007832,-0.011998,0.249712,0,0);-ms-transform:matrix(0.163002,0.007832,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.163002,0.007832,-0.011998,0.249712,0,0);}
.m90_c00020{transform:matrix(0.163066,0.008161,-0.012497,0.249687,0,0);-ms-transform:matrix(0.163066,0.008161,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.163066,0.008161,-0.012497,0.249687,0,0);}
.m2_c00020{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.mf3_c00020{transform:matrix(0.164001,0.007223,-0.011000,0.249758,0,0);-ms-transform:matrix(0.164001,0.007223,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.164001,0.007223,-0.011000,0.249758,0,0);}
.me2_c00020{transform:matrix(0.164720,0.007255,-0.011000,0.249758,0,0);-ms-transform:matrix(0.164720,0.007255,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.164720,0.007255,-0.011000,0.249758,0,0);}
.md4_c00020{transform:matrix(0.164830,0.007260,-0.011000,0.249758,0,0);-ms-transform:matrix(0.164830,0.007260,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.164830,0.007260,-0.011000,0.249758,0,0);}
.m9f_c00020{transform:matrix(0.164939,0.008255,-0.012497,0.249687,0,0);-ms-transform:matrix(0.164939,0.008255,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.164939,0.008255,-0.012497,0.249687,0,0);}
.ma9_c00020{transform:matrix(0.165490,0.007289,-0.011000,0.249758,0,0);-ms-transform:matrix(0.165490,0.007289,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.165490,0.007289,-0.011000,0.249758,0,0);}
.m86_c00020{transform:matrix(0.166477,0.008332,-0.012497,0.249687,0,0);-ms-transform:matrix(0.166477,0.008332,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.166477,0.008332,-0.012497,0.249687,0,0);}
.meb_c00020{transform:matrix(0.166708,0.007343,-0.011000,0.249758,0,0);-ms-transform:matrix(0.166708,0.007343,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.166708,0.007343,-0.011000,0.249758,0,0);}
.m74_c00020{transform:matrix(0.166948,0.005682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.166948,0.005682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.166948,0.005682,-0.008504,0.249855,0,0);}
.md8_c00020{transform:matrix(0.167048,0.007357,-0.011000,0.249758,0,0);-ms-transform:matrix(0.167048,0.007357,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.167048,0.007357,-0.011000,0.249758,0,0);}
.m12_c00020{transform:matrix(0.167687,0.008057,-0.011998,0.249712,0,0);-ms-transform:matrix(0.167687,0.008057,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.167687,0.008057,-0.011998,0.249712,0,0);}
.maa_c00020{transform:matrix(0.168227,0.007409,-0.011000,0.249758,0,0);-ms-transform:matrix(0.168227,0.007409,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.168227,0.007409,-0.011000,0.249758,0,0);}
.m38_c00020{transform:matrix(0.168360,0.006741,-0.010002,0.249800,0,0);-ms-transform:matrix(0.168360,0.006741,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.168360,0.006741,-0.010002,0.249800,0,0);}
.ma2_c00020{transform:matrix(0.168714,0.008444,-0.012497,0.249687,0,0);-ms-transform:matrix(0.168714,0.008444,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.168714,0.008444,-0.012497,0.249687,0,0);}
.ma_c00020{transform:matrix(0.169524,0.008145,-0.011998,0.249712,0,0);-ms-transform:matrix(0.169524,0.008145,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.169524,0.008145,-0.011998,0.249712,0,0);}
.m8f_c00020{transform:matrix(0.169972,0.008507,-0.012497,0.249687,0,0);-ms-transform:matrix(0.169972,0.008507,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.169972,0.008507,-0.012497,0.249687,0,0);}
.m72_c00020{transform:matrix(0.170012,0.005786,-0.008504,0.249855,0,0);-ms-transform:matrix(0.170012,0.005786,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.170012,0.005786,-0.008504,0.249855,0,0);}
.m7c_c00020{transform:matrix(0.171064,0.008391,-0.012248,0.249700,0,0);-ms-transform:matrix(0.171064,0.008391,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.171064,0.008391,-0.012248,0.249700,0,0);}
.m1c_c00020{transform:matrix(0.171237,0.008228,-0.011998,0.249712,0,0);-ms-transform:matrix(0.171237,0.008228,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.171237,0.008228,-0.011998,0.249712,0,0);}
.m6a_c00020{transform:matrix(0.172220,0.005861,-0.008504,0.249855,0,0);-ms-transform:matrix(0.172220,0.005861,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.172220,0.005861,-0.008504,0.249855,0,0);}
.m9c_c00020{transform:matrix(0.172399,0.008629,-0.012497,0.249687,0,0);-ms-transform:matrix(0.172399,0.008629,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.172399,0.008629,-0.012497,0.249687,0,0);}
.m85_c00020{transform:matrix(0.172469,0.008632,-0.012497,0.249687,0,0);-ms-transform:matrix(0.172469,0.008632,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.172469,0.008632,-0.012497,0.249687,0,0);}
.m93_c00020{transform:matrix(0.172674,0.008642,-0.012497,0.249687,0,0);-ms-transform:matrix(0.172674,0.008642,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.172674,0.008642,-0.012497,0.249687,0,0);}
.mb1_c00020{transform:matrix(0.173597,0.007646,-0.011000,0.249758,0,0);-ms-transform:matrix(0.173597,0.007646,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.173597,0.007646,-0.011000,0.249758,0,0);}
.m73_c00020{transform:matrix(0.173809,0.005915,-0.008504,0.249855,0,0);-ms-transform:matrix(0.173809,0.005915,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.173809,0.005915,-0.008504,0.249855,0,0);}
.m95_c00020{transform:matrix(0.174022,0.008710,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174022,0.008710,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174022,0.008710,-0.012497,0.249687,0,0);}
.m8c_c00020{transform:matrix(0.174057,0.008712,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174057,0.008712,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174057,0.008712,-0.012497,0.249687,0,0);}
.mdb_c00020{transform:matrix(0.174271,0.007676,-0.011000,0.249758,0,0);-ms-transform:matrix(0.174271,0.007676,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.174271,0.007676,-0.011000,0.249758,0,0);}
.md7_c00020{transform:matrix(0.174411,0.007682,-0.011000,0.249758,0,0);-ms-transform:matrix(0.174411,0.007682,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.174411,0.007682,-0.011000,0.249758,0,0);}
.m91_c00020{transform:matrix(0.174691,0.008743,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174691,0.008743,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174691,0.008743,-0.012497,0.249687,0,0);}
.mee_c00020{transform:matrix(0.174855,0.007701,-0.011000,0.249758,0,0);-ms-transform:matrix(0.174855,0.007701,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.174855,0.007701,-0.011000,0.249758,0,0);}
.me6_c00020{transform:matrix(0.175255,0.007719,-0.011000,0.249758,0,0);-ms-transform:matrix(0.175255,0.007719,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.175255,0.007719,-0.011000,0.249758,0,0);}
.m89_c00020{transform:matrix(0.175346,0.008776,-0.012497,0.249687,0,0);-ms-transform:matrix(0.175346,0.008776,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.175346,0.008776,-0.012497,0.249687,0,0);}
.m22_c00020{transform:matrix(0.175632,0.008439,-0.011998,0.249712,0,0);-ms-transform:matrix(0.175632,0.008439,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.175632,0.008439,-0.011998,0.249712,0,0);}
.mac_c00020{transform:matrix(0.175835,0.007744,-0.011000,0.249758,0,0);-ms-transform:matrix(0.175835,0.007744,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.175835,0.007744,-0.011000,0.249758,0,0);}
.m7b_c00020{transform:matrix(0.176023,0.008634,-0.012248,0.249700,0,0);-ms-transform:matrix(0.176023,0.008634,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.176023,0.008634,-0.012248,0.249700,0,0);}
.m8a_c00020{transform:matrix(0.176130,0.008815,-0.012497,0.249687,0,0);-ms-transform:matrix(0.176130,0.008815,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.176130,0.008815,-0.012497,0.249687,0,0);}
.m4_c00020{transform:matrix(0.176538,0.006008,-0.008504,0.249855,0,0);-ms-transform:matrix(0.176538,0.006008,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.176538,0.006008,-0.008504,0.249855,0,0);}
.mcb_c00020{transform:matrix(0.176953,0.007794,-0.011000,0.249758,0,0);-ms-transform:matrix(0.176953,0.007794,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.176953,0.007794,-0.011000,0.249758,0,0);}
.mbc_c00020{transform:matrix(0.176993,0.007796,-0.011000,0.249758,0,0);-ms-transform:matrix(0.176993,0.007796,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.176993,0.007796,-0.011000,0.249758,0,0);}
.mc6_c00020{transform:matrix(0.177033,0.007797,-0.011000,0.249758,0,0);-ms-transform:matrix(0.177033,0.007797,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.177033,0.007797,-0.011000,0.249758,0,0);}
.m5d_c00020{transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);-ms-transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);}
.mb0_c00020{transform:matrix(0.177663,0.007825,-0.011000,0.249758,0,0);-ms-transform:matrix(0.177663,0.007825,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.177663,0.007825,-0.011000,0.249758,0,0);}
.m6e_c00020{transform:matrix(0.178442,0.006073,-0.008504,0.249855,0,0);-ms-transform:matrix(0.178442,0.006073,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.178442,0.006073,-0.008504,0.249855,0,0);}
.mad_c00020{transform:matrix(0.178757,0.007873,-0.011000,0.249758,0,0);-ms-transform:matrix(0.178757,0.007873,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.178757,0.007873,-0.011000,0.249758,0,0);}
.m7a_c00020{transform:matrix(0.178921,0.006089,-0.008504,0.249855,0,0);-ms-transform:matrix(0.178921,0.006089,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.178921,0.006089,-0.008504,0.249855,0,0);}
.m16_c00020{transform:matrix(0.179283,0.008614,-0.011998,0.249712,0,0);-ms-transform:matrix(0.179283,0.008614,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.179283,0.008614,-0.011998,0.249712,0,0);}
.m25_c00020{transform:matrix(0.179356,0.007181,-0.010002,0.249800,0,0);-ms-transform:matrix(0.179356,0.007181,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.179356,0.007181,-0.010002,0.249800,0,0);}
.m7f_c00020{transform:matrix(0.180483,0.008853,-0.012248,0.249700,0,0);-ms-transform:matrix(0.180483,0.008853,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.180483,0.008853,-0.012248,0.249700,0,0);}
.m7d_c00020{transform:matrix(0.180523,0.008854,-0.012248,0.249700,0,0);-ms-transform:matrix(0.180523,0.008854,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.180523,0.008854,-0.012248,0.249700,0,0);}
.mc2_c00020{transform:matrix(0.181524,0.007995,-0.011000,0.249758,0,0);-ms-transform:matrix(0.181524,0.007995,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.181524,0.007995,-0.011000,0.249758,0,0);}
.mde_c00020{transform:matrix(0.181669,0.008001,-0.011000,0.249758,0,0);-ms-transform:matrix(0.181669,0.008001,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.181669,0.008001,-0.011000,0.249758,0,0);}
.m3_c00020{transform:matrix(0.181785,0.006187,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181785,0.006187,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181785,0.006187,-0.008504,0.249855,0,0);}
.m24_c00020{transform:matrix(0.181979,0.007286,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181979,0.007286,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181979,0.007286,-0.010002,0.249800,0,0);}
.m68_c00020{transform:matrix(0.182020,0.006195,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182020,0.006195,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182020,0.006195,-0.008504,0.249855,0,0);}
.mec_c00020{transform:matrix(0.182138,0.008022,-0.011000,0.249758,0,0);-ms-transform:matrix(0.182138,0.008022,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.182138,0.008022,-0.011000,0.249758,0,0);}
.me0_c00020{transform:matrix(0.182253,0.008027,-0.011000,0.249758,0,0);-ms-transform:matrix(0.182253,0.008027,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.182253,0.008027,-0.011000,0.249758,0,0);}
.m6b_c00020{transform:matrix(0.182544,0.006213,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182544,0.006213,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182544,0.006213,-0.008504,0.249855,0,0);}
.m13_c00020{transform:matrix(0.183388,0.008811,-0.011998,0.249712,0,0);-ms-transform:matrix(0.183388,0.008811,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.183388,0.008811,-0.011998,0.249712,0,0);}
.mb6_c00020{transform:matrix(0.183407,0.008078,-0.011000,0.249758,0,0);-ms-transform:matrix(0.183407,0.008078,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.183407,0.008078,-0.011000,0.249758,0,0);}
.mf_c00020{transform:matrix(0.183833,0.008833,-0.011998,0.249712,0,0);-ms-transform:matrix(0.183833,0.008833,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.183833,0.008833,-0.011998,0.249712,0,0);}
.mda_c00020{transform:matrix(0.183907,0.008100,-0.011000,0.249758,0,0);-ms-transform:matrix(0.183907,0.008100,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.183907,0.008100,-0.011000,0.249758,0,0);}
.me1_c00020{transform:matrix(0.184131,0.008110,-0.011000,0.249758,0,0);-ms-transform:matrix(0.184131,0.008110,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.184131,0.008110,-0.011000,0.249758,0,0);}
.md_c00020{transform:matrix(0.184607,0.008870,-0.011998,0.249712,0,0);-ms-transform:matrix(0.184607,0.008870,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.184607,0.008870,-0.011998,0.249712,0,0);}
.mf1_c00020{transform:matrix(0.185001,0.008148,-0.011000,0.249758,0,0);-ms-transform:matrix(0.185001,0.008148,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.185001,0.008148,-0.011000,0.249758,0,0);}
.m23_c00020{transform:matrix(0.185072,0.007410,-0.010002,0.249800,0,0);-ms-transform:matrix(0.185072,0.007410,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.185072,0.007410,-0.010002,0.249800,0,0);}
.m51_c00020{transform:matrix(0.186482,0.006347,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186482,0.006347,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186482,0.006347,-0.008504,0.249855,0,0);}
.m4f_c00020{transform:matrix(0.186602,0.006351,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186602,0.006351,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186602,0.006351,-0.008504,0.249855,0,0);}
.m3c_c00020{transform:matrix(0.186730,0.007851,-0.010501,0.249779,0,0);-ms-transform:matrix(0.186730,0.007851,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.186730,0.007851,-0.010501,0.249779,0,0);}
.me7_c00020{transform:matrix(0.186779,0.008226,-0.011000,0.249758,0,0);-ms-transform:matrix(0.186779,0.008226,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.186779,0.008226,-0.011000,0.249758,0,0);}
.maf_c00020{transform:matrix(0.186829,0.008229,-0.011000,0.249758,0,0);-ms-transform:matrix(0.186829,0.008229,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.186829,0.008229,-0.011000,0.249758,0,0);}
.m2b_c00020{transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);}
.m75_c00020{transform:matrix(0.187117,0.006368,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187117,0.006368,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187117,0.006368,-0.008504,0.249855,0,0);}
.m61_c00020{transform:matrix(0.187217,0.006372,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187217,0.006372,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187217,0.006372,-0.008504,0.249855,0,0);}
.m3d_c00020{transform:matrix(0.187844,0.007897,-0.010501,0.249779,0,0);-ms-transform:matrix(0.187844,0.007897,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.187844,0.007897,-0.010501,0.249779,0,0);}
.m50_c00020{transform:matrix(0.188071,0.006401,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188071,0.006401,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188071,0.006401,-0.008504,0.249855,0,0);}
.m10_c00020{transform:matrix(0.188518,0.009058,-0.011998,0.249712,0,0);-ms-transform:matrix(0.188518,0.009058,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.188518,0.009058,-0.011998,0.249712,0,0);}
.m7e_c00020{transform:matrix(0.188538,0.009248,-0.012248,0.249700,0,0);-ms-transform:matrix(0.188538,0.009248,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.188538,0.009248,-0.012248,0.249700,0,0);}
.ma7_c00020{transform:matrix(0.188869,0.009453,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188869,0.009453,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188869,0.009453,-0.012497,0.249687,0,0);}
.m8b_c00020{transform:matrix(0.189093,0.009464,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189093,0.009464,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189093,0.009464,-0.012497,0.249687,0,0);}
.mb8_c00020{transform:matrix(0.189252,0.008335,-0.011000,0.249758,0,0);-ms-transform:matrix(0.189252,0.008335,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.189252,0.008335,-0.011000,0.249758,0,0);}
.mbd_c00020{transform:matrix(0.190291,0.008381,-0.011000,0.249758,0,0);-ms-transform:matrix(0.190291,0.008381,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.190291,0.008381,-0.011000,0.249758,0,0);}
.mb4_c00020{transform:matrix(0.190440,0.008388,-0.011000,0.249758,0,0);-ms-transform:matrix(0.190440,0.008388,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.190440,0.008388,-0.011000,0.249758,0,0);}
.m35_c00020{transform:matrix(0.190727,0.007637,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190727,0.007637,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190727,0.007637,-0.010002,0.249800,0,0);}
.mf9_c00020{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m76_c00020{transform:matrix(0.191374,0.006513,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191374,0.006513,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191374,0.006513,-0.008504,0.249855,0,0);}
.md5_c00020{transform:matrix(0.191424,0.008431,-0.011000,0.249758,0,0);-ms-transform:matrix(0.191424,0.008431,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.191424,0.008431,-0.011000,0.249758,0,0);}
.m3a_c00020{transform:matrix(0.191532,0.007669,-0.010002,0.249800,0,0);-ms-transform:matrix(0.191532,0.007669,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.191532,0.007669,-0.010002,0.249800,0,0);}
.m58_c00020{transform:matrix(0.192219,0.006542,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192219,0.006542,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192219,0.006542,-0.008504,0.249855,0,0);}
.m44_c00020{transform:matrix(0.192349,0.006546,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192349,0.006546,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192349,0.006546,-0.008504,0.249855,0,0);}
.mc8_c00020{transform:matrix(0.192558,0.008481,-0.011000,0.249758,0,0);-ms-transform:matrix(0.192558,0.008481,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.192558,0.008481,-0.011000,0.249758,0,0);}
.mb7_c00020{transform:matrix(0.192618,0.008484,-0.011000,0.249758,0,0);-ms-transform:matrix(0.192618,0.008484,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.192618,0.008484,-0.011000,0.249758,0,0);}
.m53_c00020{transform:matrix(0.193343,0.006580,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193343,0.006580,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193343,0.006580,-0.008504,0.249855,0,0);}
.mef_c00020{transform:matrix(0.193507,0.008523,-0.011000,0.249758,0,0);-ms-transform:matrix(0.193507,0.008523,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.193507,0.008523,-0.011000,0.249758,0,0);}
.m19_c00020{transform:matrix(0.193542,0.009299,-0.011998,0.249712,0,0);-ms-transform:matrix(0.193542,0.009299,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.193542,0.009299,-0.011998,0.249712,0,0);}
.m41_c00020{transform:matrix(0.194438,0.008175,-0.010501,0.249779,0,0);-ms-transform:matrix(0.194438,0.008175,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.194438,0.008175,-0.010501,0.249779,0,0);}
.ma8_c00020{transform:matrix(0.194546,0.009737,-0.012497,0.249687,0,0);-ms-transform:matrix(0.194546,0.009737,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.194546,0.009737,-0.012497,0.249687,0,0);}
.mb3_c00020{transform:matrix(0.194626,0.008572,-0.011000,0.249758,0,0);-ms-transform:matrix(0.194626,0.008572,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.194626,0.008572,-0.011000,0.249758,0,0);}
.m9d_c00020{transform:matrix(0.194696,0.009745,-0.012497,0.249687,0,0);-ms-transform:matrix(0.194696,0.009745,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.194696,0.009745,-0.012497,0.249687,0,0);}
.m1e_c00020{transform:matrix(0.194895,0.009364,-0.011998,0.249712,0,0);-ms-transform:matrix(0.194895,0.009364,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.194895,0.009364,-0.011998,0.249712,0,0);}
.m40_c00020{transform:matrix(0.195782,0.008231,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195782,0.008231,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195782,0.008231,-0.010501,0.249779,0,0);}
.md2_c00020{transform:matrix(0.195940,0.008630,-0.011000,0.249758,0,0);-ms-transform:matrix(0.195940,0.008630,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.195940,0.008630,-0.011000,0.249758,0,0);}
.m18_c00020{transform:matrix(0.196004,0.009418,-0.011998,0.249712,0,0);-ms-transform:matrix(0.196004,0.009418,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.196004,0.009418,-0.011998,0.249712,0,0);}
.m96_c00020{transform:matrix(0.197643,0.009892,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197643,0.009892,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197643,0.009892,-0.012497,0.249687,0,0);}
.m2f_c00020{transform:matrix(0.197662,0.007914,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197662,0.007914,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197662,0.007914,-0.010002,0.249800,0,0);}
.m57_c00020{transform:matrix(0.197765,0.006731,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197765,0.006731,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197765,0.006731,-0.008504,0.249855,0,0);}
.me_c00020{transform:matrix(0.197942,0.009511,-0.011998,0.249712,0,0);-ms-transform:matrix(0.197942,0.009511,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.197942,0.009511,-0.011998,0.249712,0,0);}
.m77_c00020{transform:matrix(0.197970,0.006738,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197970,0.006738,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197970,0.006738,-0.008504,0.249855,0,0);}
.mca_c00020{transform:matrix(0.197973,0.008720,-0.011000,0.249758,0,0);-ms-transform:matrix(0.197973,0.008720,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.197973,0.008720,-0.011000,0.249758,0,0);}
.m5a_c00020{transform:matrix(0.198220,0.006746,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198220,0.006746,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198220,0.006746,-0.008504,0.249855,0,0);}
.med_c00020{transform:matrix(0.198328,0.008735,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198328,0.008735,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198328,0.008735,-0.011000,0.249758,0,0);}
.m6c_c00020{transform:matrix(0.198360,0.006751,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198360,0.006751,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198360,0.006751,-0.008504,0.249855,0,0);}
.m33_c00020{transform:matrix(0.198411,0.007944,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198411,0.007944,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198411,0.007944,-0.010002,0.249800,0,0);}
.mb9_c00020{transform:matrix(0.198418,0.008739,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198418,0.008739,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198418,0.008739,-0.011000,0.249758,0,0);}
.mc_c00020{transform:matrix(0.198646,0.009545,-0.011998,0.249712,0,0);-ms-transform:matrix(0.198646,0.009545,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.198646,0.009545,-0.011998,0.249712,0,0);}
.m54_c00020{transform:matrix(0.198860,0.006768,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198860,0.006768,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198860,0.006768,-0.008504,0.249855,0,0);}
.m81_c00020{transform:matrix(0.199071,0.009764,-0.012248,0.249700,0,0);-ms-transform:matrix(0.199071,0.009764,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.199071,0.009764,-0.012248,0.249700,0,0);}
.m2e_c00020{transform:matrix(0.199450,0.007986,-0.010002,0.249800,0,0);-ms-transform:matrix(0.199450,0.007986,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.199450,0.007986,-0.010002,0.249800,0,0);}
.m8e_c00020{transform:matrix(0.199505,0.009985,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199505,0.009985,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199505,0.009985,-0.012497,0.249687,0,0);}
.mf2_c00020{transform:matrix(0.199726,0.008797,-0.011000,0.249758,0,0);-ms-transform:matrix(0.199726,0.008797,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.199726,0.008797,-0.011000,0.249758,0,0);}
.m1f_c00020{transform:matrix(0.199934,0.009606,-0.011998,0.249712,0,0);-ms-transform:matrix(0.199934,0.009606,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.199934,0.009606,-0.011998,0.249712,0,0);}
.mce_c00020{transform:matrix(0.200071,0.008812,-0.011000,0.249758,0,0);-ms-transform:matrix(0.200071,0.008812,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.200071,0.008812,-0.011000,0.249758,0,0);}
.me5_c00020{transform:matrix(0.200596,0.008835,-0.011000,0.249758,0,0);-ms-transform:matrix(0.200596,0.008835,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.200596,0.008835,-0.011000,0.249758,0,0);}
.m2c_c00020{transform:matrix(0.200754,0.008038,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200754,0.008038,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200754,0.008038,-0.010002,0.249800,0,0);}
.ma3_c00020{transform:matrix(0.201378,0.010079,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201378,0.010079,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201378,0.010079,-0.012497,0.249687,0,0);}
.m84_c00020{transform:matrix(0.201508,0.010085,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201508,0.010085,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201508,0.010085,-0.012497,0.249687,0,0);}
.m52_c00020{transform:matrix(0.201773,0.006867,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201773,0.006867,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201773,0.006867,-0.008504,0.249855,0,0);}
.m7_c00020{transform:matrix(0.201783,0.006867,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201783,0.006867,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201783,0.006867,-0.008504,0.249855,0,0);}
.mb2_c00020{transform:matrix(0.201989,0.008896,-0.011000,0.249758,0,0);-ms-transform:matrix(0.201989,0.008896,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.201989,0.008896,-0.011000,0.249758,0,0);}
.m34_c00020{transform:matrix(0.202028,0.008089,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202028,0.008089,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202028,0.008089,-0.010002,0.249800,0,0);}
.m4b_c00020{transform:matrix(0.202083,0.006878,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202083,0.006878,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202083,0.006878,-0.008504,0.249855,0,0);}
.mc7_c00020{transform:matrix(0.202104,0.008901,-0.011000,0.249758,0,0);-ms-transform:matrix(0.202104,0.008901,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.202104,0.008901,-0.011000,0.249758,0,0);}
.mb5_c00020{transform:matrix(0.202204,0.008906,-0.011000,0.249758,0,0);-ms-transform:matrix(0.202204,0.008906,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.202204,0.008906,-0.011000,0.249758,0,0);}
.m79_c00020{transform:matrix(0.202223,0.006882,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202223,0.006882,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202223,0.006882,-0.008504,0.249855,0,0);}
.mbe_c00020{transform:matrix(0.202893,0.008936,-0.011000,0.249758,0,0);-ms-transform:matrix(0.202893,0.008936,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.202893,0.008936,-0.011000,0.249758,0,0);}
.m14_c00020{transform:matrix(0.203066,0.009757,-0.011998,0.249712,0,0);-ms-transform:matrix(0.203066,0.009757,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.203066,0.009757,-0.011998,0.249712,0,0);}
.m6d_c00020{transform:matrix(0.203792,0.006936,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203792,0.006936,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203792,0.006936,-0.008504,0.249855,0,0);}
.m92_c00020{transform:matrix(0.204005,0.010210,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204005,0.010210,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204005,0.010210,-0.012497,0.249687,0,0);}
.ma6_c00020{transform:matrix(0.204050,0.010213,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204050,0.010213,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204050,0.010213,-0.012497,0.249687,0,0);}
.m63_c00020{transform:matrix(0.204057,0.006945,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204057,0.006945,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204057,0.006945,-0.008504,0.249855,0,0);}
.m37_c00020{transform:matrix(0.204231,0.008177,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204231,0.008177,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204231,0.008177,-0.010002,0.249800,0,0);}
.m83_c00020{transform:matrix(0.205478,0.010284,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205478,0.010284,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205478,0.010284,-0.012497,0.249687,0,0);}
.m5_c00020{transform:matrix(0.206046,0.007013,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206046,0.007013,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206046,0.007013,-0.008504,0.249855,0,0);}
.m67_c00020{transform:matrix(0.206171,0.007017,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206171,0.007017,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206171,0.007017,-0.008504,0.249855,0,0);}
.m64_c00020{transform:matrix(0.206261,0.007020,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206261,0.007020,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206261,0.007020,-0.008504,0.249855,0,0);}
.m31_c00020{transform:matrix(0.206839,0.008282,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206839,0.008282,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206839,0.008282,-0.010002,0.249800,0,0);}
.m4c_c00020{transform:matrix(0.206880,0.007041,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206880,0.007041,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206880,0.007041,-0.008504,0.249855,0,0);}
.m30_c00020{transform:matrix(0.206954,0.008286,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206954,0.008286,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206954,0.008286,-0.010002,0.249800,0,0);}
.m6f_c00020{transform:matrix(0.207075,0.007048,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207075,0.007048,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207075,0.007048,-0.008504,0.249855,0,0);}
.m88_c00020{transform:matrix(0.207121,0.010366,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207121,0.010366,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207121,0.010366,-0.012497,0.249687,0,0);}
.m71_c00020{transform:matrix(0.207605,0.007066,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207605,0.007066,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207605,0.007066,-0.008504,0.249855,0,0);}
.ma0_c00020{transform:matrix(0.208075,0.010414,-0.012497,0.249687,0,0);-ms-transform:matrix(0.208075,0.010414,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.208075,0.010414,-0.012497,0.249687,0,0);}
.m5f_c00020{transform:matrix(0.208464,0.007095,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208464,0.007095,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208464,0.007095,-0.008504,0.249855,0,0);}
.m47_c00020{transform:matrix(0.208644,0.007101,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208644,0.007101,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208644,0.007101,-0.008504,0.249855,0,0);}
.md6_c00020{transform:matrix(0.208663,0.009190,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208663,0.009190,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208663,0.009190,-0.011000,0.249758,0,0);}
.me9_c00020{transform:matrix(0.208723,0.009193,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208723,0.009193,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208723,0.009193,-0.011000,0.249758,0,0);}
.mc4_c00020{transform:matrix(0.208763,0.009195,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208763,0.009195,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208763,0.009195,-0.011000,0.249758,0,0);}
.m48_c00020{transform:matrix(0.209544,0.007132,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209544,0.007132,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209544,0.007132,-0.008504,0.249855,0,0);}
.m62_c00020{transform:matrix(0.210238,0.007155,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210238,0.007155,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210238,0.007155,-0.008504,0.249855,0,0);}
.m6_c00020{transform:matrix(0.210408,0.007161,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210408,0.007161,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210408,0.007161,-0.008504,0.249855,0,0);}
.md3_c00020{transform:matrix(0.210501,0.009271,-0.011000,0.249758,0,0);-ms-transform:matrix(0.210501,0.009271,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.210501,0.009271,-0.011000,0.249758,0,0);}
.mcc_c00020{transform:matrix(0.211360,0.009309,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211360,0.009309,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211360,0.009309,-0.011000,0.249758,0,0);}
.ma4_c00020{transform:matrix(0.211365,0.010579,-0.012497,0.249687,0,0);-ms-transform:matrix(0.211365,0.010579,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.211365,0.010579,-0.012497,0.249687,0,0);}
.m5e_c00020{transform:matrix(0.211997,0.007215,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211997,0.007215,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211997,0.007215,-0.008504,0.249855,0,0);}
.m87_c00020{transform:matrix(0.212339,0.010628,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212339,0.010628,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212339,0.010628,-0.012497,0.249687,0,0);}
.m98_c00020{transform:matrix(0.212424,0.010632,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212424,0.010632,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212424,0.010632,-0.012497,0.249687,0,0);}
.m9e_c00020{transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212904,0.010656,-0.012497,0.249687,0,0);}
.mbf_c00020{transform:matrix(0.213993,0.009425,-0.011000,0.249758,0,0);-ms-transform:matrix(0.213993,0.009425,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.213993,0.009425,-0.011000,0.249758,0,0);}
.m8_c00020{transform:matrix(0.214181,0.007289,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214181,0.007289,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214181,0.007289,-0.008504,0.249855,0,0);}
.mae_c00020{transform:matrix(0.214452,0.009445,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214452,0.009445,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214452,0.009445,-0.011000,0.249758,0,0);}
.m29_c00020{transform:matrix(0.214518,0.008589,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214518,0.008589,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214518,0.008589,-0.010002,0.249800,0,0);}
.m32_c00020{transform:matrix(0.214628,0.008594,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214628,0.008594,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214628,0.008594,-0.010002,0.249800,0,0);}
.mb_c00020{transform:matrix(0.214742,0.010318,-0.011998,0.249712,0,0);-ms-transform:matrix(0.214742,0.010318,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.214742,0.010318,-0.011998,0.249712,0,0);}
.m42_c00020{transform:matrix(0.215040,0.009041,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215040,0.009041,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215040,0.009041,-0.010501,0.249779,0,0);}
.ma1_c00020{transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);}
.mcd_c00020{transform:matrix(0.215661,0.009499,-0.011000,0.249758,0,0);-ms-transform:matrix(0.215661,0.009499,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.215661,0.009499,-0.011000,0.249758,0,0);}
.m66_c00020{transform:matrix(0.216285,0.007361,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216285,0.007361,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216285,0.007361,-0.008504,0.249855,0,0);}
.m69_c00020{transform:matrix(0.217249,0.007394,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217249,0.007394,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217249,0.007394,-0.008504,0.249855,0,0);}
.m17_c00020{transform:matrix(0.217949,0.010472,-0.011998,0.249712,0,0);-ms-transform:matrix(0.217949,0.010472,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.217949,0.010472,-0.011998,0.249712,0,0);}
.md0_c00020{transform:matrix(0.218358,0.009617,-0.011000,0.249758,0,0);-ms-transform:matrix(0.218358,0.009617,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.218358,0.009617,-0.011000,0.249758,0,0);}
.mc1_c00020{transform:matrix(0.218678,0.009631,-0.011000,0.249758,0,0);-ms-transform:matrix(0.218678,0.009631,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.218678,0.009631,-0.011000,0.249758,0,0);}
.m2a_c00020{transform:matrix(0.219144,0.008775,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219144,0.008775,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219144,0.008775,-0.010002,0.249800,0,0);}
.mcf_c00020{transform:matrix(0.219277,0.009658,-0.011000,0.249758,0,0);-ms-transform:matrix(0.219277,0.009658,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.219277,0.009658,-0.011000,0.249758,0,0);}
.mdd_c00020{transform:matrix(0.220017,0.009690,-0.011000,0.249758,0,0);-ms-transform:matrix(0.220017,0.009690,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.220017,0.009690,-0.011000,0.249758,0,0);}
.mba_c00020{transform:matrix(0.220321,0.009704,-0.011000,0.249758,0,0);-ms-transform:matrix(0.220321,0.009704,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.220321,0.009704,-0.011000,0.249758,0,0);}
.mf8_c00020{transform:matrix(0.220956,0.009732,-0.011000,0.249758,0,0);-ms-transform:matrix(0.220956,0.009732,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.220956,0.009732,-0.011000,0.249758,0,0);}
.m45_c00020{transform:matrix(0.222096,0.007559,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222096,0.007559,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222096,0.007559,-0.008504,0.249855,0,0);}
.md1_c00020{transform:matrix(0.222245,0.009789,-0.011000,0.249758,0,0);-ms-transform:matrix(0.222245,0.009789,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.222245,0.009789,-0.011000,0.249758,0,0);}
.m49_c00020{transform:matrix(0.222876,0.007585,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222876,0.007585,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222876,0.007585,-0.008504,0.249855,0,0);}
.m26_c00020{transform:matrix(0.222981,0.008928,-0.010002,0.249800,0,0);-ms-transform:matrix(0.222981,0.008928,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.222981,0.008928,-0.010002,0.249800,0,0);}
.m56_c00020{transform:matrix(0.223041,0.007591,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223041,0.007591,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223041,0.007591,-0.008504,0.249855,0,0);}
.mc0_c00020{transform:matrix(0.223328,0.009836,-0.011000,0.249758,0,0);-ms-transform:matrix(0.223328,0.009836,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.223328,0.009836,-0.011000,0.249758,0,0);}
.m4d_c00020{transform:matrix(0.223795,0.007617,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223795,0.007617,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223795,0.007617,-0.008504,0.249855,0,0);}
.m99_c00020{transform:matrix(0.224834,0.011253,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224834,0.011253,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224834,0.011253,-0.012497,0.249687,0,0);}
.m43_c00020{transform:matrix(0.225814,0.007685,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225814,0.007685,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225814,0.007685,-0.008504,0.249855,0,0);}
.m59_c00020{transform:matrix(0.225974,0.007691,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225974,0.007691,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225974,0.007691,-0.008504,0.249855,0,0);}
.m5c_c00020{transform:matrix(0.228922,0.007791,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228922,0.007791,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228922,0.007791,-0.008504,0.249855,0,0);}
.m27_c00020{transform:matrix(0.229066,0.009172,-0.010002,0.249800,0,0);-ms-transform:matrix(0.229066,0.009172,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.229066,0.009172,-0.010002,0.249800,0,0);}
.m60_c00020{transform:matrix(0.230427,0.007842,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230427,0.007842,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230427,0.007842,-0.008504,0.249855,0,0);}
.m5b_c00020{transform:matrix(0.230567,0.007847,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230567,0.007847,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230567,0.007847,-0.008504,0.249855,0,0);}
.mab_c00020{transform:matrix(0.231006,0.010174,-0.011000,0.249758,0,0);-ms-transform:matrix(0.231006,0.010174,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.231006,0.010174,-0.011000,0.249758,0,0);}
.m55_c00020{transform:matrix(0.231811,0.007889,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231811,0.007889,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231811,0.007889,-0.008504,0.249855,0,0);}
.m2d_c00020{transform:matrix(0.232479,0.009308,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232479,0.009308,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232479,0.009308,-0.010002,0.249800,0,0);}
.m4a_c00020{transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);}
.me3_c00020{transform:matrix(0.235357,0.010366,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235357,0.010366,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235357,0.010366,-0.011000,0.249758,0,0);}
.me8_c00020{transform:matrix(0.235886,0.010389,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235886,0.010389,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235886,0.010389,-0.011000,0.249758,0,0);}
.m46_c00020{transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);}
.me4_c00020{transform:matrix(0.237740,0.010471,-0.011000,0.249758,0,0);-ms-transform:matrix(0.237740,0.010471,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.237740,0.010471,-0.011000,0.249758,0,0);}
.m9b_c00020{transform:matrix(0.240279,0.012026,-0.012497,0.249687,0,0);-ms-transform:matrix(0.240279,0.012026,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.240279,0.012026,-0.012497,0.249687,0,0);}
.mc5_c00020{transform:matrix(0.241276,0.010627,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241276,0.010627,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241276,0.010627,-0.011000,0.249758,0,0);}
.mf7_c00020{transform:matrix(0.243069,0.010706,-0.011000,0.249758,0,0);-ms-transform:matrix(0.243069,0.010706,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.243069,0.010706,-0.011000,0.249758,0,0);}
.ma5_c00020{transform:matrix(0.253383,0.012682,-0.012497,0.249687,0,0);-ms-transform:matrix(0.253383,0.012682,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.253383,0.012682,-0.012497,0.249687,0,0);}
.m3f_c00020{transform:matrix(0.276681,0.011632,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276681,0.011632,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276681,0.011632,-0.010501,0.249779,0,0);}
.m3e_c00020{transform:matrix(0.282745,0.011887,-0.010501,0.249779,0,0);-ms-transform:matrix(0.282745,0.011887,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.282745,0.011887,-0.010501,0.249779,0,0);}
.m9a_c00020{transform:matrix(0.298396,0.014935,-0.012497,0.249687,0,0);-ms-transform:matrix(0.298396,0.014935,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.298396,0.014935,-0.012497,0.249687,0,0);}
.mf6_c00020{transform:matrix(0.298785,0.013160,-0.011000,0.249758,0,0);-ms-transform:matrix(0.298785,0.013160,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.298785,0.013160,-0.011000,0.249758,0,0);}
.m9_c00020{transform:matrix(0.350852,0.011941,-0.008504,0.249855,0,0);-ms-transform:matrix(0.350852,0.011941,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.350852,0.011941,-0.008504,0.249855,0,0);}
.m28_c00020{transform:matrix(0.352423,0.014111,-0.010002,0.249800,0,0);-ms-transform:matrix(0.352423,0.014111,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.352423,0.014111,-0.010002,0.249800,0,0);}
.m15_c00020{transform:matrix(0.483312,0.023222,-0.011998,0.249712,0,0);-ms-transform:matrix(0.483312,0.023222,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.483312,0.023222,-0.011998,0.249712,0,0);}
.m0_c00020{transform:matrix(0.674805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674805,0.000000,0.000000,0.250000,0,0);}
.mc3_c00020{transform:matrix(0.989735,0.043592,-0.011000,0.249758,0,0);-ms-transform:matrix(0.989735,0.043592,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.989735,0.043592,-0.011000,0.249758,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
.fc0_c00020{color:transparent;}
.fs0_c00020{font-size:22.050000px;}
.fs1d_c00020{font-size:44.098611px;}
.fs1a_c00020{font-size:58.798148px;}
.fsb_c00020{font-size:59.824768px;}
.fs16_c00020{font-size:59.848115px;}
.fs9_c00020{font-size:60.874325px;}
.fs6_c00020{font-size:60.887849px;}
.fs15_c00020{font-size:60.898082px;}
.fsc_c00020{font-size:61.923883px;}
.fs12_c00020{font-size:61.965517px;}
.fsa_c00020{font-size:62.973440px;}
.fs7_c00020{font-size:62.987430px;}
.fs17_c00020{font-size:62.998015px;}
.fs4_c00020{font-size:63.009607px;}
.fsf_c00020{font-size:63.015780px;}
.fs3_c00020{font-size:64.059767px;}
.fsd_c00020{font-size:65.072555px;}
.fs13_c00020{font-size:65.097949px;}
.fs18_c00020{font-size:66.147916px;}
.fs2_c00020{font-size:67.171669px;}
.fs19_c00020{font-size:67.197883px;}
.fse_c00020{font-size:67.213506px;}
.fs11_c00020{font-size:67.216831px;}
.fs8_c00020{font-size:68.241980px;}
.fs14_c00020{font-size:68.247850px;}
.fs1c_c00020{font-size:69.297817px;}
.fs10_c00020{font-size:69.317357px;}
.fs5_c00020{font-size:70.360728px;}
.fs1b_c00020{font-size:71.397751px;}
.fs1_c00020{font-size:73.500000px;}
.y0_c00020{bottom:0.000000px;}
.yfa_c00020{bottom:14.816517px;}
.yf9_c00020{bottom:21.592490px;}
.yf8_c00020{bottom:23.238675px;}
.yf7_c00020{bottom:30.393546px;}
.yf6_c00020{bottom:31.314654px;}
.yf5_c00020{bottom:32.989686px;}
.yf4_c00020{bottom:33.594615px;}
.yf3_c00020{bottom:35.885090px;}
.yf2_c00020{bottom:36.610008px;}
.yf1_c00020{bottom:40.517787px;}
.yf0_c00020{bottom:48.560832px;}
.yef_c00020{bottom:50.037701px;}
.yee_c00020{bottom:52.929840px;}
.yed_c00020{bottom:56.508707px;}
.yec_c00020{bottom:57.733773px;}
.yeb_c00020{bottom:58.606566px;}
.yea_c00020{bottom:65.430597px;}
.ye9_c00020{bottom:67.055511px;}
.ye8_c00020{bottom:67.728335px;}
.ye7_c00020{bottom:68.443193px;}
.ye6_c00020{bottom:70.581194px;}
.ye5_c00020{bottom:73.017377px;}
.ye4_c00020{bottom:75.081228px;}
.ye3_c00020{bottom:80.364722px;}
.ye2_c00020{bottom:82.095335px;}
.ye1_c00020{bottom:84.044934px;}
.ye0_c00020{bottom:84.888567px;}
.ydf_c00020{bottom:87.443436px;}
.yde_c00020{bottom:89.217575px;}
.ydd_c00020{bottom:90.148476px;}
.ydc_c00020{bottom:90.735801px;}
.ydb_c00020{bottom:97.931900px;}
.yda_c00020{bottom:98.650230px;}
.yd9_c00020{bottom:99.740639px;}
.yd8_c00020{bottom:100.984443px;}
.yd7_c00020{bottom:103.775979px;}
.yd6_c00020{bottom:106.353954px;}
.yd5_c00020{bottom:108.831135px;}
.yd4_c00020{bottom:116.976644px;}
.yd3_c00020{bottom:119.390433px;}
.yd2_c00020{bottom:121.077144px;}
.yd1_c00020{bottom:122.307696px;}
.yd0_c00020{bottom:123.729032px;}
.ycf_c00020{bottom:124.581514px;}
.yce_c00020{bottom:126.110659px;}
.ycd_c00020{bottom:133.558962px;}
.ycc_c00020{bottom:135.186252px;}
.ycb_c00020{bottom:137.751839px;}
.yca_c00020{bottom:138.887663px;}
.yc9_c00020{bottom:140.727086px;}
.yc8_c00020{bottom:142.581180px;}
.yc7_c00020{bottom:151.793744px;}
.yc6_c00020{bottom:152.272578px;}
.yc5_c00020{bottom:155.014179px;}
.yc4_c00020{bottom:157.535150px;}
.yc3_c00020{bottom:158.293658px;}
.yc2_c00020{bottom:160.938747px;}
.yc1_c00020{bottom:165.863800px;}
.yc0_c00020{bottom:168.018387px;}
.ybf_c00020{bottom:170.015105px;}
.ybe_c00020{bottom:170.783349px;}
.ybd_c00020{bottom:171.683439px;}
.ybc_c00020{bottom:172.547586px;}
.ybb_c00020{bottom:176.061963px;}
.yba_c00020{bottom:181.808742px;}
.yb9_c00020{bottom:182.306184px;}
.yb8_c00020{bottom:185.111844px;}
.yb7_c00020{bottom:187.644528px;}
.yb6_c00020{bottom:189.211698px;}
.yb5_c00020{bottom:191.026038px;}
.yb4_c00020{bottom:191.557668px;}
.yb3_c00020{bottom:192.120054px;}
.yb2_c00020{bottom:194.145000px;}
.yb1_c00020{bottom:198.582108px;}
.yb0_c00020{bottom:200.983716px;}
.yaf_c00020{bottom:203.147460px;}
.yae_c00020{bottom:204.371496px;}
.yad_c00020{bottom:205.156896px;}
.yac_c00020{bottom:209.117490px;}
.yab_c00020{bottom:210.119502px;}
.yaa_c00020{bottom:211.162500px;}
.ya9_c00020{bottom:215.932677px;}
.ya8_c00020{bottom:218.690890px;}
.ya7_c00020{bottom:221.538063px;}
.ya6_c00020{bottom:224.246398px;}
.ya5_c00020{bottom:224.971861px;}
.ya4_c00020{bottom:227.447451px;}
.ya3_c00020{bottom:228.155962px;}
.ya2_c00020{bottom:233.087980px;}
.ya1_c00020{bottom:234.963742px;}
.ya0_c00020{bottom:235.874847px;}
.y9f_c00020{bottom:236.479624px;}
.y9e_c00020{bottom:239.301594px;}
.y9d_c00020{bottom:240.388363px;}
.y9c_c00020{bottom:241.423528px;}
.y9b_c00020{bottom:243.692025px;}
.y9a_c00020{bottom:244.893028px;}
.y99_c00020{bottom:249.198571px;}
.y98_c00020{bottom:250.671624px;}
.y97_c00020{bottom:251.640333px;}
.y96_c00020{bottom:254.482179px;}
.y95_c00020{bottom:255.609451px;}
.y94_c00020{bottom:257.868348px;}
.y93_c00020{bottom:260.457273px;}
.y92_c00020{bottom:261.154983px;}
.y91_c00020{bottom:262.184973px;}
.y90_c00020{bottom:266.699503px;}
.y8f_c00020{bottom:271.451974px;}
.y8e_c00020{bottom:272.354467px;}
.y8d_c00020{bottom:273.983950px;}
.y8c_c00020{bottom:278.089684px;}
.y8b_c00020{bottom:279.744143px;}
.y1_c00020{bottom:280.530000px;}
.y8a_c00020{bottom:284.094600px;}
.y89_c00020{bottom:284.852325px;}
.y88_c00020{bottom:286.971225px;}
.y87_c00020{bottom:287.948100px;}
.y86_c00020{bottom:289.986750px;}
.y85_c00020{bottom:290.800425px;}
.y84_c00020{bottom:292.193250px;}
.y83_c00020{bottom:297.300000px;}
.y82_c00020{bottom:299.949684px;}
.y81_c00020{bottom:302.530342px;}
.y80_c00020{bottom:303.927136px;}
.y7f_c00020{bottom:306.259953px;}
.y7e_c00020{bottom:309.243465px;}
.y7d_c00020{bottom:310.305099px;}
.y7c_c00020{bottom:312.898326px;}
.y7b_c00020{bottom:314.301000px;}
.y7a_c00020{bottom:319.091148px;}
.y79_c00020{bottom:321.208545px;}
.y78_c00020{bottom:321.835071px;}
.y77_c00020{bottom:323.199663px;}
.y76_c00020{bottom:325.138632px;}
.y75_c00020{bottom:327.119479px;}
.y74_c00020{bottom:327.874956px;}
.y73_c00020{bottom:328.788696px;}
.y72_c00020{bottom:329.463067px;}
.y71_c00020{bottom:336.280240px;}
.y70_c00020{bottom:336.991564px;}
.y6f_c00020{bottom:339.395179px;}
.yfb_c00020{bottom:339.660000px;}
.y6e_c00020{bottom:340.418088px;}
.y6d_c00020{bottom:341.244910px;}
.y6c_c00020{bottom:343.682122px;}
.y6b_c00020{bottom:344.536249px;}
.y6a_c00020{bottom:345.384256px;}
.y69_c00020{bottom:351.345745px;}
.y68_c00020{bottom:351.895485px;}
.y67_c00020{bottom:352.266676px;}
.y66_c00020{bottom:354.031689px;}
.y65_c00020{bottom:354.289891px;}
.y64_c00020{bottom:355.941048px;}
.y63_c00020{bottom:357.256795px;}
.y62_c00020{bottom:358.159723px;}
.y61_c00020{bottom:359.686282px;}
.y60_c00020{bottom:367.378570px;}
.y5f_c00020{bottom:368.189367px;}
.y5e_c00020{bottom:369.917662px;}
.y5d_c00020{bottom:370.609191px;}
.y5c_c00020{bottom:371.140624px;}
.y5b_c00020{bottom:373.330092px;}
.y5a_c00020{bottom:374.118817px;}
.y59_c00020{bottom:374.692557px;}
.y58_c00020{bottom:376.725601px;}
.y57_c00020{bottom:378.038040px;}
.y56_c00020{bottom:384.597108px;}
.y55_c00020{bottom:384.927384px;}
.y54_c00020{bottom:386.416176px;}
.y53_c00020{bottom:387.774663px;}
.y52_c00020{bottom:389.134068px;}
.y51_c00020{bottom:389.873160px;}
.y50_c00020{bottom:390.945537px;}
.y4f_c00020{bottom:391.776378px;}
.y4e_c00020{bottom:392.343192px;}
.y4d_c00020{bottom:406.464033px;}
.y4c_c00020{bottom:407.331802px;}
.y4b_c00020{bottom:409.947205px;}
.y4a_c00020{bottom:410.378250px;}
.y49_c00020{bottom:412.862907px;}
.y48_c00020{bottom:417.121752px;}
.y47_c00020{bottom:419.251512px;}
.y46_c00020{bottom:421.294980px;}
.y45_c00020{bottom:423.541071px;}
.y44_c00020{bottom:424.581267px;}
.y43_c00020{bottom:426.345000px;}
.y42_c00020{bottom:433.976658px;}
.y41_c00020{bottom:434.467113px;}
.y40_c00020{bottom:436.733664px;}
.y3f_c00020{bottom:437.668080px;}
.y3e_c00020{bottom:440.588256px;}
.y3d_c00020{bottom:442.985532px;}
.y3c_c00020{bottom:444.588756px;}
.y3b_c00020{bottom:445.785000px;}
.y3a_c00020{bottom:451.713048px;}
.y39_c00020{bottom:453.156187px;}
.y38_c00020{bottom:455.417430px;}
.y37_c00020{bottom:456.640564px;}
.y36_c00020{bottom:457.003419px;}
.y35_c00020{bottom:460.496976px;}
.y34_c00020{bottom:461.344477px;}
.y33_c00020{bottom:462.809155px;}
.y32_c00020{bottom:468.011520px;}
.y31_c00020{bottom:468.509006px;}
.y30_c00020{bottom:470.970994px;}
.y2f_c00020{bottom:472.967595px;}
.y2e_c00020{bottom:474.187789px;}
.y2d_c00020{bottom:476.211208px;}
.y2c_c00020{bottom:477.689085px;}
.y2b_c00020{bottom:479.816657px;}
.y2a_c00020{bottom:484.727580px;}
.y29_c00020{bottom:487.263120px;}
.y28_c00020{bottom:487.658940px;}
.y27_c00020{bottom:489.942420px;}
.y26_c00020{bottom:491.693220px;}
.y25_c00020{bottom:493.122420px;}
.y24_c00020{bottom:493.750020px;}
.y23_c00020{bottom:495.733500px;}
.y22_c00020{bottom:503.491285px;}
.y21_c00020{bottom:504.346461px;}
.y20_c00020{bottom:505.563963px;}
.y1f_c00020{bottom:505.995158px;}
.y1e_c00020{bottom:508.317643px;}
.y1d_c00020{bottom:508.866018px;}
.y1c_c00020{bottom:510.448407px;}
.y1b_c00020{bottom:510.951579px;}
.y1a_c00020{bottom:511.658191px;}
.y19_c00020{bottom:519.728924px;}
.y18_c00020{bottom:520.544355px;}
.y17_c00020{bottom:522.348347px;}
.y16_c00020{bottom:523.345992px;}
.y15_c00020{bottom:526.645558px;}
.y14_c00020{bottom:528.578920px;}
.y13_c00020{bottom:530.298033px;}
.y12_c00020{bottom:533.783400px;}
.y11_c00020{bottom:534.356592px;}
.y10_c00020{bottom:537.875880px;}
.yf_c00020{bottom:541.079520px;}
.ye_c00020{bottom:542.829624px;}
.yd_c00020{bottom:543.543504px;}
.yc_c00020{bottom:544.438608px;}
.yb_c00020{bottom:544.997760px;}
.ya_c00020{bottom:546.765000px;}
.y9_c00020{bottom:552.812859px;}
.y8_c00020{bottom:553.250745px;}
.y7_c00020{bottom:555.908763px;}
.y6_c00020{bottom:557.717427px;}
.y5_c00020{bottom:558.286893px;}
.y4_c00020{bottom:559.985448px;}
.y3_c00020{bottom:561.615000px;}
.y2_c00020{bottom:569.028000px;}
.h2_c00020{height:22.050000px;}
.h1f_c00020{height:44.098611px;}
.h1c_c00020{height:58.798148px;}
.hd_c00020{height:59.824768px;}
.h18_c00020{height:59.848115px;}
.hb_c00020{height:60.874325px;}
.h8_c00020{height:60.887849px;}
.h17_c00020{height:60.898082px;}
.he_c00020{height:61.923883px;}
.h14_c00020{height:61.965517px;}
.hc_c00020{height:62.973440px;}
.h9_c00020{height:62.987430px;}
.h19_c00020{height:62.998015px;}
.h6_c00020{height:63.009607px;}
.h11_c00020{height:63.015780px;}
.h5_c00020{height:64.059767px;}
.hf_c00020{height:65.072555px;}
.h15_c00020{height:65.097949px;}
.h1a_c00020{height:66.147916px;}
.h4_c00020{height:67.171669px;}
.h1b_c00020{height:67.197883px;}
.h10_c00020{height:67.213506px;}
.h13_c00020{height:67.216831px;}
.ha_c00020{height:68.241980px;}
.h16_c00020{height:68.247850px;}
.h1e_c00020{height:69.297817px;}
.h12_c00020{height:69.317357px;}
.h7_c00020{height:70.360728px;}
.h1d_c00020{height:71.397751px;}
.h3_c00020{height:73.500000px;}
.h0_c00020{height:615.600000px;}
.h1_c00020{height:615.750000px;}
.w0_c00020{width:367.200000px;}
.w1_c00020{width:367.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:2.700000px;}
.x2_c00020{left:4.050000px;}
.x7d_c00020{left:30.572961px;}
.x5d_c00020{left:31.965000px;}
.x6c_c00020{left:34.332000px;}
.x58_c00020{left:35.462358px;}
.x49_c00020{left:36.907028px;}
.x28_c00020{left:38.359623px;}
.x4_c00020{left:39.780000px;}
.xb_c00020{left:48.829500px;}
.x3a_c00020{left:50.590500px;}
.x59_c00020{left:53.205198px;}
.x64_c00020{left:56.944410px;}
.x6d_c00020{left:58.012795px;}
.x55_c00020{left:59.212511px;}
.x19_c00020{left:61.410393px;}
.x35_c00020{left:66.184518px;}
.x43_c00020{left:67.266584px;}
.x4a_c00020{left:69.695019px;}
.x2f_c00020{left:71.848076px;}
.x1a_c00020{left:77.134261px;}
.x70_c00020{left:80.179979px;}
.x14_c00020{left:81.628124px;}
.x44_c00020{left:83.920913px;}
.xc_c00020{left:85.610182px;}
.x5_c00020{left:87.660072px;}
.x81_c00020{left:89.094647px;}
.x75_c00020{left:90.211985px;}
.x30_c00020{left:91.552509px;}
.x40_c00020{left:93.913980px;}
.xd_c00020{left:97.247534px;}
.x21_c00020{left:98.623413px;}
.x3b_c00020{left:102.413126px;}
.x36_c00020{left:104.318346px;}
.x45_c00020{left:108.332976px;}
.x68_c00020{left:110.598326px;}
.x51_c00020{left:112.416234px;}
.x22_c00020{left:114.297723px;}
.xe_c00020{left:115.876886px;}
.x4b_c00020{left:120.482318px;}
.x29_c00020{left:122.108201px;}
.x76_c00020{left:124.834886px;}
.x1b_c00020{left:126.510246px;}
.x15_c00020{left:128.743317px;}
.xf_c00020{left:130.734513px;}
.x3c_c00020{left:132.976531px;}
.x4c_c00020{left:134.827548px;}
.x6_c00020{left:137.567614px;}
.x46_c00020{left:139.841936px;}
.x1c_c00020{left:143.643784px;}
.x71_c00020{left:146.212879px;}
.x56_c00020{left:148.073474px;}
.x23_c00020{left:149.991993px;}
.x61_c00020{left:151.947566px;}
.x7_c00020{left:154.299865px;}
.x69_c00020{left:156.686426px;}
.x7f_c00020{left:158.653742px;}
.x37_c00020{left:161.339268px;}
.x41_c00020{left:163.104686px;}
.x60_c00020{left:164.639008px;}
.x10_c00020{left:167.158553px;}
.x2a_c00020{left:169.119497px;}
.x57_c00020{left:170.383844px;}
.x31_c00020{left:172.731519px;}
.x65_c00020{left:177.378954px;}
.x3_c00020{left:179.280000px;}
.x32_c00020{left:181.156565px;}
.x42_c00020{left:182.827256px;}
.x62_c00020{left:185.164967px;}
.x6e_c00020{left:188.518659px;}
.x24_c00020{left:193.718223px;}
.x5e_c00020{left:195.903897px;}
.x2b_c00020{left:197.457207px;}
.x3d_c00020{left:198.971970px;}
.x5a_c00020{left:200.144600px;}
.x47_c00020{left:201.500715px;}
.x63_c00020{left:203.556957px;}
.x52_c00020{left:205.056831px;}
.x8_c00020{left:207.442670px;}
.x16_c00020{left:209.137869px;}
.x53_c00020{left:213.128313px;}
.x7e_c00020{left:214.186470px;}
.x1d_c00020{left:216.112882px;}
.x6a_c00020{left:217.961826px;}
.x78_c00020{left:219.062400px;}
.x7b_c00020{left:220.985817px;}
.x4d_c00020{left:222.476393px;}
.x1e_c00020{left:229.557231px;}
.x38_c00020{left:230.797740px;}
.x11_c00020{left:233.834310px;}
.x5b_c00020{left:236.007800px;}
.x4e_c00020{left:239.753576px;}
.x48_c00020{left:241.416260px;}
.x2c_c00020{left:243.836196px;}
.x74_c00020{left:245.783690px;}
.x79_c00020{left:248.631878px;}
.x25_c00020{left:250.748136px;}
.x39_c00020{left:253.023492px;}
.x77_c00020{left:254.702999px;}
.x3e_c00020{left:259.013868px;}
.x26_c00020{left:260.633741px;}
.x33_c00020{left:262.106304px;}
.x66_c00020{left:263.555384px;}
.x6f_c00020{left:265.436664px;}
.x1f_c00020{left:267.525342px;}
.x5f_c00020{left:271.942283px;}
.x7a_c00020{left:274.582214px;}
.x17_c00020{left:277.387470px;}
.x54_c00020{left:279.774093px;}
.x4f_c00020{left:282.909045px;}
.x9_c00020{left:285.541493px;}
.x73_c00020{left:288.420264px;}
.x6b_c00020{left:291.609819px;}
.x20_c00020{left:294.232648px;}
.x34_c00020{left:295.637216px;}
.x18_c00020{left:297.265775px;}
.xa_c00020{left:298.407614px;}
.x2d_c00020{left:301.051077px;}
.x50_c00020{left:303.161637px;}
.x12_c00020{left:307.079492px;}
.x5c_c00020{left:308.167266px;}
.x80_c00020{left:311.050904px;}
.x2e_c00020{left:312.613622px;}
.x72_c00020{left:314.293630px;}
.x67_c00020{left:316.573898px;}
.x13_c00020{left:319.009050px;}
.x7c_c00020{left:320.326466px;}
.x3f_c00020{left:321.591228px;}
.x27_c00020{left:323.958852px;}
.x82_c00020{left:342.630000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fs0_c00020{font-size:19.600000pt;}
.fs1d_c00020{font-size:39.198765pt;}
.fs1a_c00020{font-size:52.265020pt;}
.fsb_c00020{font-size:53.177571pt;}
.fs16_c00020{font-size:53.198324pt;}
.fs9_c00020{font-size:54.110511pt;}
.fs6_c00020{font-size:54.122533pt;}
.fs15_c00020{font-size:54.131628pt;}
.fsc_c00020{font-size:55.043451pt;}
.fs12_c00020{font-size:55.080459pt;}
.fsa_c00020{font-size:55.976391pt;}
.fs7_c00020{font-size:55.988827pt;}
.fs17_c00020{font-size:55.998236pt;}
.fs4_c00020{font-size:56.008539pt;}
.fsf_c00020{font-size:56.014026pt;}
.fs3_c00020{font-size:56.942015pt;}
.fsd_c00020{font-size:57.842271pt;}
.fs13_c00020{font-size:57.864844pt;}
.fs18_c00020{font-size:58.798148pt;}
.fs2_c00020{font-size:59.708150pt;}
.fs19_c00020{font-size:59.731452pt;}
.fse_c00020{font-size:59.745339pt;}
.fs11_c00020{font-size:59.748295pt;}
.fs8_c00020{font-size:60.659538pt;}
.fs14_c00020{font-size:60.664756pt;}
.fs1c_c00020{font-size:61.598060pt;}
.fs10_c00020{font-size:61.615429pt;}
.fs5_c00020{font-size:62.542869pt;}
.fs1b_c00020{font-size:63.464667pt;}
.fs1_c00020{font-size:65.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.yfa_c00020{bottom:13.170237pt;}
.yf9_c00020{bottom:19.193324pt;}
.yf8_c00020{bottom:20.656600pt;}
.yf7_c00020{bottom:27.016485pt;}
.yf6_c00020{bottom:27.835248pt;}
.yf5_c00020{bottom:29.324165pt;}
.yf4_c00020{bottom:29.861880pt;}
.yf3_c00020{bottom:31.897857pt;}
.yf2_c00020{bottom:32.542229pt;}
.yf1_c00020{bottom:36.015811pt;}
.yf0_c00020{bottom:43.165184pt;}
.yef_c00020{bottom:44.477956pt;}
.yee_c00020{bottom:47.048747pt;}
.yed_c00020{bottom:50.229961pt;}
.yec_c00020{bottom:51.318909pt;}
.yeb_c00020{bottom:52.094725pt;}
.yea_c00020{bottom:58.160531pt;}
.ye9_c00020{bottom:59.604899pt;}
.ye8_c00020{bottom:60.202964pt;}
.ye7_c00020{bottom:60.838393pt;}
.ye6_c00020{bottom:62.738839pt;}
.ye5_c00020{bottom:64.904335pt;}
.ye4_c00020{bottom:66.738869pt;}
.ye3_c00020{bottom:71.435308pt;}
.ye2_c00020{bottom:72.973631pt;}
.ye1_c00020{bottom:74.706608pt;}
.ye0_c00020{bottom:75.456504pt;}
.ydf_c00020{bottom:77.727499pt;}
.yde_c00020{bottom:79.304511pt;}
.ydd_c00020{bottom:80.131979pt;}
.ydc_c00020{bottom:80.654045pt;}
.ydb_c00020{bottom:87.050577pt;}
.yda_c00020{bottom:87.689093pt;}
.yd9_c00020{bottom:88.658345pt;}
.yd8_c00020{bottom:89.763949pt;}
.yd7_c00020{bottom:92.245315pt;}
.yd6_c00020{bottom:94.536848pt;}
.yd5_c00020{bottom:96.738787pt;}
.yd4_c00020{bottom:103.979239pt;}
.yd3_c00020{bottom:106.124829pt;}
.yd2_c00020{bottom:107.624128pt;}
.yd1_c00020{bottom:108.717952pt;}
.yd0_c00020{bottom:109.981361pt;}
.ycf_c00020{bottom:110.739124pt;}
.yce_c00020{bottom:112.098364pt;}
.ycd_c00020{bottom:118.719077pt;}
.ycc_c00020{bottom:120.165557pt;}
.ycb_c00020{bottom:122.446079pt;}
.yca_c00020{bottom:123.455700pt;}
.yc9_c00020{bottom:125.090743pt;}
.yc8_c00020{bottom:126.738827pt;}
.yc7_c00020{bottom:134.927772pt;}
.yc6_c00020{bottom:135.353403pt;}
.yc5_c00020{bottom:137.790381pt;}
.yc4_c00020{bottom:140.031244pt;}
.yc3_c00020{bottom:140.705473pt;}
.yc2_c00020{bottom:143.056664pt;}
.yc1_c00020{bottom:147.434489pt;}
.yc0_c00020{bottom:149.349677pt;}
.ybf_c00020{bottom:151.124537pt;}
.ybe_c00020{bottom:151.807421pt;}
.ybd_c00020{bottom:152.607501pt;}
.ybc_c00020{bottom:153.375632pt;}
.ybb_c00020{bottom:156.499523pt;}
.yba_c00020{bottom:161.607771pt;}
.yb9_c00020{bottom:162.049941pt;}
.yb8_c00020{bottom:164.543861pt;}
.yb7_c00020{bottom:166.795136pt;}
.yb6_c00020{bottom:168.188176pt;}
.yb5_c00020{bottom:169.800923pt;}
.yb4_c00020{bottom:170.273483pt;}
.yb3_c00020{bottom:170.773381pt;}
.yb2_c00020{bottom:172.573333pt;}
.yb1_c00020{bottom:176.517429pt;}
.yb0_c00020{bottom:178.652192pt;}
.yaf_c00020{bottom:180.575520pt;}
.yae_c00020{bottom:181.663552pt;}
.yad_c00020{bottom:182.361685pt;}
.yac_c00020{bottom:185.882213pt;}
.yab_c00020{bottom:186.772891pt;}
.yaa_c00020{bottom:187.700000pt;}
.ya9_c00020{bottom:191.940157pt;}
.ya8_c00020{bottom:194.391903pt;}
.ya7_c00020{bottom:196.922723pt;}
.ya6_c00020{bottom:199.330132pt;}
.ya5_c00020{bottom:199.974988pt;}
.ya4_c00020{bottom:202.175512pt;}
.ya3_c00020{bottom:202.805300pt;}
.ya2_c00020{bottom:207.189316pt;}
.ya1_c00020{bottom:208.856660pt;}
.ya0_c00020{bottom:209.666531pt;}
.y9f_c00020{bottom:210.204111pt;}
.y9e_c00020{bottom:212.712528pt;}
.y9d_c00020{bottom:213.678545pt;}
.y9c_c00020{bottom:214.598692pt;}
.y9b_c00020{bottom:216.615133pt;}
.y9a_c00020{bottom:217.682692pt;}
.y99_c00020{bottom:221.509841pt;}
.y98_c00020{bottom:222.819221pt;}
.y97_c00020{bottom:223.680296pt;}
.y96_c00020{bottom:226.206381pt;}
.y95_c00020{bottom:227.208401pt;}
.y94_c00020{bottom:229.216309pt;}
.y93_c00020{bottom:231.517576pt;}
.y92_c00020{bottom:232.137763pt;}
.y91_c00020{bottom:233.053309pt;}
.y90_c00020{bottom:237.066225pt;}
.y8f_c00020{bottom:241.290644pt;}
.y8e_c00020{bottom:242.092860pt;}
.y8d_c00020{bottom:243.541289pt;}
.y8c_c00020{bottom:247.190831pt;}
.y8b_c00020{bottom:248.661460pt;}
.y1_c00020{bottom:249.360000pt;}
.y8a_c00020{bottom:252.528533pt;}
.y89_c00020{bottom:253.202067pt;}
.y88_c00020{bottom:255.085533pt;}
.y87_c00020{bottom:255.953867pt;}
.y86_c00020{bottom:257.766000pt;}
.y85_c00020{bottom:258.489267pt;}
.y84_c00020{bottom:259.727333pt;}
.y83_c00020{bottom:264.266667pt;}
.y82_c00020{bottom:266.621941pt;}
.y81_c00020{bottom:268.915860pt;}
.y80_c00020{bottom:270.157455pt;}
.y7f_c00020{bottom:272.231069pt;}
.y7e_c00020{bottom:274.883080pt;}
.y7d_c00020{bottom:275.826755pt;}
.y7c_c00020{bottom:278.131845pt;}
.y7b_c00020{bottom:279.378667pt;}
.y7a_c00020{bottom:283.636576pt;}
.y79_c00020{bottom:285.518707pt;}
.y78_c00020{bottom:286.075619pt;}
.y77_c00020{bottom:287.288589pt;}
.y76_c00020{bottom:289.012117pt;}
.y75_c00020{bottom:290.772871pt;}
.y74_c00020{bottom:291.444405pt;}
.y73_c00020{bottom:292.256619pt;}
.y72_c00020{bottom:292.856060pt;}
.y71_c00020{bottom:298.915769pt;}
.y70_c00020{bottom:299.548057pt;}
.y6f_c00020{bottom:301.684604pt;}
.yfb_c00020{bottom:301.920000pt;}
.y6e_c00020{bottom:302.593856pt;}
.y6d_c00020{bottom:303.328809pt;}
.y6c_c00020{bottom:305.495220pt;}
.y6b_c00020{bottom:306.254444pt;}
.y6a_c00020{bottom:307.008228pt;}
.y69_c00020{bottom:312.307329pt;}
.y68_c00020{bottom:312.795987pt;}
.y67_c00020{bottom:313.125935pt;}
.y66_c00020{bottom:314.694835pt;}
.y65_c00020{bottom:314.924348pt;}
.y64_c00020{bottom:316.392043pt;}
.y63_c00020{bottom:317.561596pt;}
.y62_c00020{bottom:318.364199pt;}
.y61_c00020{bottom:319.721140pt;}
.y60_c00020{bottom:326.558729pt;}
.y5f_c00020{bottom:327.279437pt;}
.y5e_c00020{bottom:328.815700pt;}
.y5d_c00020{bottom:329.430392pt;}
.y5c_c00020{bottom:329.902777pt;}
.y5b_c00020{bottom:331.848971pt;}
.y5a_c00020{bottom:332.550060pt;}
.y59_c00020{bottom:333.060051pt;}
.y58_c00020{bottom:334.867201pt;}
.y57_c00020{bottom:336.033813pt;}
.y56_c00020{bottom:341.864096pt;}
.y55_c00020{bottom:342.157675pt;}
.y54_c00020{bottom:343.481045pt;}
.y53_c00020{bottom:344.688589pt;}
.y52_c00020{bottom:345.896949pt;}
.y51_c00020{bottom:346.553920pt;}
.y50_c00020{bottom:347.507144pt;}
.y4f_c00020{bottom:348.245669pt;}
.y4e_c00020{bottom:348.749504pt;}
.y4d_c00020{bottom:361.301363pt;}
.y4c_c00020{bottom:362.072713pt;}
.y4b_c00020{bottom:364.397516pt;}
.y4a_c00020{bottom:364.780667pt;}
.y49_c00020{bottom:366.989251pt;}
.y48_c00020{bottom:370.774891pt;}
.y47_c00020{bottom:372.668011pt;}
.y46_c00020{bottom:374.484427pt;}
.y45_c00020{bottom:376.480952pt;}
.y44_c00020{bottom:377.405571pt;}
.y43_c00020{bottom:378.973333pt;}
.y42_c00020{bottom:385.757029pt;}
.y41_c00020{bottom:386.192989pt;}
.y40_c00020{bottom:388.207701pt;}
.y3f_c00020{bottom:389.038293pt;}
.y3e_c00020{bottom:391.634005pt;}
.y3d_c00020{bottom:393.764917pt;}
.y3c_c00020{bottom:395.190005pt;}
.y3b_c00020{bottom:396.253333pt;}
.y3a_c00020{bottom:401.522709pt;}
.y39_c00020{bottom:402.805500pt;}
.y38_c00020{bottom:404.815493pt;}
.y37_c00020{bottom:405.902724pt;}
.y36_c00020{bottom:406.225261pt;}
.y35_c00020{bottom:409.330645pt;}
.y34_c00020{bottom:410.083980pt;}
.y33_c00020{bottom:411.385916pt;}
.y32_c00020{bottom:416.010240pt;}
.y31_c00020{bottom:416.452449pt;}
.y30_c00020{bottom:418.640884pt;}
.y2f_c00020{bottom:420.415640pt;}
.y2e_c00020{bottom:421.500257pt;}
.y2d_c00020{bottom:423.298852pt;}
.y2c_c00020{bottom:424.612520pt;}
.y2b_c00020{bottom:426.503695pt;}
.y2a_c00020{bottom:430.868960pt;}
.y29_c00020{bottom:433.122773pt;}
.y28_c00020{bottom:433.474613pt;}
.y27_c00020{bottom:435.504373pt;}
.y26_c00020{bottom:437.060640pt;}
.y25_c00020{bottom:438.331040pt;}
.y24_c00020{bottom:438.888907pt;}
.y23_c00020{bottom:440.652000pt;}
.y22_c00020{bottom:447.547809pt;}
.y21_c00020{bottom:448.307965pt;}
.y20_c00020{bottom:449.390189pt;}
.y1f_c00020{bottom:449.773473pt;}
.y1e_c00020{bottom:451.837905pt;}
.y1d_c00020{bottom:452.325349pt;}
.y1c_c00020{bottom:453.731917pt;}
.y1b_c00020{bottom:454.179181pt;}
.y1a_c00020{bottom:454.807281pt;}
.y19_c00020{bottom:461.981265pt;}
.y18_c00020{bottom:462.706093pt;}
.y17_c00020{bottom:464.309641pt;}
.y16_c00020{bottom:465.196437pt;}
.y15_c00020{bottom:468.129385pt;}
.y14_c00020{bottom:469.847929pt;}
.y13_c00020{bottom:471.376029pt;}
.y12_c00020{bottom:474.474133pt;}
.y11_c00020{bottom:474.983637pt;}
.y10_c00020{bottom:478.111893pt;}
.yf_c00020{bottom:480.959573pt;}
.ye_c00020{bottom:482.515221pt;}
.yd_c00020{bottom:483.149781pt;}
.yc_c00020{bottom:483.945429pt;}
.yb_c00020{bottom:484.442453pt;}
.ya_c00020{bottom:486.013333pt;}
.y9_c00020{bottom:491.389208pt;}
.y8_c00020{bottom:491.778440pt;}
.y7_c00020{bottom:494.141123pt;}
.y6_c00020{bottom:495.748824pt;}
.y5_c00020{bottom:496.255016pt;}
.y4_c00020{bottom:497.764843pt;}
.y3_c00020{bottom:499.213333pt;}
.y2_c00020{bottom:505.802667pt;}
.h2_c00020{height:19.600000pt;}
.h1f_c00020{height:39.198765pt;}
.h1c_c00020{height:52.265020pt;}
.hd_c00020{height:53.177571pt;}
.h18_c00020{height:53.198324pt;}
.hb_c00020{height:54.110511pt;}
.h8_c00020{height:54.122533pt;}
.h17_c00020{height:54.131628pt;}
.he_c00020{height:55.043451pt;}
.h14_c00020{height:55.080459pt;}
.hc_c00020{height:55.976391pt;}
.h9_c00020{height:55.988827pt;}
.h19_c00020{height:55.998236pt;}
.h6_c00020{height:56.008539pt;}
.h11_c00020{height:56.014026pt;}
.h5_c00020{height:56.942015pt;}
.hf_c00020{height:57.842271pt;}
.h15_c00020{height:57.864844pt;}
.h1a_c00020{height:58.798148pt;}
.h4_c00020{height:59.708150pt;}
.h1b_c00020{height:59.731452pt;}
.h10_c00020{height:59.745339pt;}
.h13_c00020{height:59.748295pt;}
.ha_c00020{height:60.659538pt;}
.h16_c00020{height:60.664756pt;}
.h1e_c00020{height:61.598060pt;}
.h12_c00020{height:61.615429pt;}
.h7_c00020{height:62.542869pt;}
.h1d_c00020{height:63.464667pt;}
.h3_c00020{height:65.333333pt;}
.h0_c00020{height:547.200000pt;}
.h1_c00020{height:547.333333pt;}
.w0_c00020{width:326.400000pt;}
.w1_c00020{width:326.666667pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:2.400000pt;}
.x2_c00020{left:3.600000pt;}
.x7d_c00020{left:27.175965pt;}
.x5d_c00020{left:28.413333pt;}
.x6c_c00020{left:30.517333pt;}
.x58_c00020{left:31.522096pt;}
.x49_c00020{left:32.806247pt;}
.x28_c00020{left:34.097443pt;}
.x4_c00020{left:35.360000pt;}
.xb_c00020{left:43.404000pt;}
.x3a_c00020{left:44.969333pt;}
.x59_c00020{left:47.293509pt;}
.x64_c00020{left:50.617253pt;}
.x6d_c00020{left:51.566929pt;}
.x55_c00020{left:52.633343pt;}
.x19_c00020{left:54.587016pt;}
.x35_c00020{left:58.830683pt;}
.x43_c00020{left:59.792519pt;}
.x4a_c00020{left:61.951128pt;}
.x2f_c00020{left:63.864956pt;}
.x1a_c00020{left:68.563788pt;}
.x70_c00020{left:71.271092pt;}
.x14_c00020{left:72.558332pt;}
.x44_c00020{left:74.596367pt;}
.xc_c00020{left:76.097940pt;}
.x5_c00020{left:77.920064pt;}
.x81_c00020{left:79.195241pt;}
.x75_c00020{left:80.188431pt;}
.x30_c00020{left:81.380008pt;}
.x40_c00020{left:83.479093pt;}
.xd_c00020{left:86.442252pt;}
.x21_c00020{left:87.665256pt;}
.x3b_c00020{left:91.033889pt;}
.x36_c00020{left:92.727419pt;}
.x45_c00020{left:96.295979pt;}
.x68_c00020{left:98.309623pt;}
.x51_c00020{left:99.925541pt;}
.x22_c00020{left:101.597976pt;}
.xe_c00020{left:103.001676pt;}
.x4b_c00020{left:107.095393pt;}
.x29_c00020{left:108.540623pt;}
.x76_c00020{left:110.964343pt;}
.x1b_c00020{left:112.453552pt;}
.x15_c00020{left:114.438504pt;}
.xf_c00020{left:116.208456pt;}
.x3c_c00020{left:118.201361pt;}
.x4c_c00020{left:119.846709pt;}
.x6_c00020{left:122.282324pt;}
.x46_c00020{left:124.303943pt;}
.x1c_c00020{left:127.683364pt;}
.x71_c00020{left:129.967004pt;}
.x56_c00020{left:131.620865pt;}
.x23_c00020{left:133.326216pt;}
.x61_c00020{left:135.064503pt;}
.x7_c00020{left:137.155436pt;}
.x69_c00020{left:139.276823pt;}
.x7f_c00020{left:141.025548pt;}
.x37_c00020{left:143.412683pt;}
.x41_c00020{left:144.981943pt;}
.x60_c00020{left:146.345785pt;}
.x10_c00020{left:148.585380pt;}
.x2a_c00020{left:150.328441pt;}
.x57_c00020{left:151.452305pt;}
.x31_c00020{left:153.539128pt;}
.x65_c00020{left:157.670181pt;}
.x3_c00020{left:159.360000pt;}
.x32_c00020{left:161.028057pt;}
.x42_c00020{left:162.513116pt;}
.x62_c00020{left:164.591081pt;}
.x6e_c00020{left:167.572141pt;}
.x24_c00020{left:172.193976pt;}
.x5e_c00020{left:174.136797pt;}
.x2b_c00020{left:175.517517pt;}
.x3d_c00020{left:176.863973pt;}
.x5a_c00020{left:177.906311pt;}
.x47_c00020{left:179.111747pt;}
.x63_c00020{left:180.939517pt;}
.x52_c00020{left:182.272739pt;}
.x8_c00020{left:184.393484pt;}
.x16_c00020{left:185.900328pt;}
.x53_c00020{left:189.447389pt;}
.x7e_c00020{left:190.387973pt;}
.x1d_c00020{left:192.100340pt;}
.x6a_c00020{left:193.743845pt;}
.x78_c00020{left:194.722133pt;}
.x7b_c00020{left:196.431837pt;}
.x4d_c00020{left:197.756793pt;}
.x1e_c00020{left:204.050872pt;}
.x38_c00020{left:205.153547pt;}
.x11_c00020{left:207.852720pt;}
.x5b_c00020{left:209.784711pt;}
.x4e_c00020{left:213.114289pt;}
.x48_c00020{left:214.592231pt;}
.x2c_c00020{left:216.743285pt;}
.x74_c00020{left:218.474391pt;}
.x79_c00020{left:221.006113pt;}
.x25_c00020{left:222.887232pt;}
.x39_c00020{left:224.909771pt;}
.x77_c00020{left:226.402665pt;}
.x3e_c00020{left:230.234549pt;}
.x26_c00020{left:231.674436pt;}
.x33_c00020{left:232.983381pt;}
.x66_c00020{left:234.271452pt;}
.x6f_c00020{left:235.943701pt;}
.x1f_c00020{left:237.800304pt;}
.x5f_c00020{left:241.726473pt;}
.x7a_c00020{left:244.073079pt;}
.x17_c00020{left:246.566640pt;}
.x54_c00020{left:248.688083pt;}
.x4f_c00020{left:251.474707pt;}
.x9_c00020{left:253.814660pt;}
.x73_c00020{left:256.373568pt;}
.x6b_c00020{left:259.208728pt;}
.x20_c00020{left:261.540132pt;}
.x34_c00020{left:262.788636pt;}
.x18_c00020{left:264.236244pt;}
.xa_c00020{left:265.251212pt;}
.x2d_c00020{left:267.600957pt;}
.x50_c00020{left:269.477011pt;}
.x12_c00020{left:272.959548pt;}
.x5c_c00020{left:273.926459pt;}
.x80_c00020{left:276.489692pt;}
.x2e_c00020{left:277.878775pt;}
.x72_c00020{left:279.372116pt;}
.x67_c00020{left:281.399020pt;}
.x13_c00020{left:283.563600pt;}
.x7c_c00020{left:284.734636pt;}
.x3f_c00020{left:285.858869pt;}
.x27_c00020{left:287.963424pt;}
.x82_c00020{left:304.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00021 {
    display:none;
  }
  .loading-indicator_c00021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00021 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00021 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00021" -> "#page-container .classname_c00021")
 */
.pf_c00021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00021 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00021 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00021 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00021 {overflow:visible;}
  }
}
.c_c00021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00021 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00021:after { /* webkit #35443 */
  content: '';
}
.t_c00021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00021 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00021 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00021 { /* info for Javascript */
  display:none;
}
.l_c00021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00021:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00021 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00021.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00021{transform:matrix(0.100524,0.002513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.100524,0.002513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.100524,0.002513,-0.006248,0.249922,0,0);}
.m3_c00021{transform:matrix(0.124068,0.001737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.124068,0.001737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.124068,0.001737,-0.003500,0.249976,0,0);}
.m3c_c00021{transform:matrix(0.136847,0.001916,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136847,0.001916,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136847,0.001916,-0.003500,0.249976,0,0);}
.mb0_c00021{transform:matrix(0.149648,0.003741,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149648,0.003741,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149648,0.003741,-0.006248,0.249922,0,0);}
.m63_c00021{transform:matrix(0.149995,0.003450,-0.005748,0.249934,0,0);-ms-transform:matrix(0.149995,0.003450,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.149995,0.003450,-0.005748,0.249934,0,0);}
.m3b_c00021{transform:matrix(0.150575,0.002108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150575,0.002108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150575,0.002108,-0.003500,0.249976,0,0);}
.m72_c00021{transform:matrix(0.150965,0.003472,-0.005748,0.249934,0,0);-ms-transform:matrix(0.150965,0.003472,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.150965,0.003472,-0.005748,0.249934,0,0);}
.mc2_c00021{transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);}
.m83_c00021{transform:matrix(0.155859,0.003585,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155859,0.003585,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155859,0.003585,-0.005748,0.249934,0,0);}
.m77_c00021{transform:matrix(0.155914,0.003586,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155914,0.003586,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155914,0.003586,-0.005748,0.249934,0,0);}
.m49_c00021{transform:matrix(0.157645,0.002207,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157645,0.002207,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157645,0.002207,-0.003500,0.249976,0,0);}
.m4_c00021{transform:matrix(0.159484,0.002233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159484,0.002233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159484,0.002233,-0.003500,0.249976,0,0);}
.m4c_c00021{transform:matrix(0.160834,0.002252,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160834,0.002252,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160834,0.002252,-0.003500,0.249976,0,0);}
.m86_c00021{transform:matrix(0.161247,0.003709,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161247,0.003709,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161247,0.003709,-0.005748,0.249934,0,0);}
.md7_c00021{transform:matrix(0.161649,0.004041,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161649,0.004041,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161649,0.004041,-0.006248,0.249922,0,0);}
.m78_c00021{transform:matrix(0.161957,0.003725,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161957,0.003725,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161957,0.003725,-0.005748,0.249934,0,0);}
.m40_c00021{transform:matrix(0.162094,0.002269,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162094,0.002269,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162094,0.002269,-0.003500,0.249976,0,0);}
.ma7_c00021{transform:matrix(0.162254,0.004056,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162254,0.004056,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162254,0.004056,-0.006248,0.249922,0,0);}
.mb5_c00021{transform:matrix(0.163669,0.004092,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163669,0.004092,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163669,0.004092,-0.006248,0.249922,0,0);}
.m15_c00021{transform:matrix(0.164269,0.002300,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164269,0.002300,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164269,0.002300,-0.003500,0.249976,0,0);}
.mb4_c00021{transform:matrix(0.164324,0.004108,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164324,0.004108,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164324,0.004108,-0.006248,0.249922,0,0);}
.mcf_c00021{transform:matrix(0.165078,0.004127,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165078,0.004127,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165078,0.004127,-0.006248,0.249922,0,0);}
.ma1_c00021{transform:matrix(0.166433,0.004161,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166433,0.004161,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166433,0.004161,-0.006248,0.249922,0,0);}
.m85_c00021{transform:matrix(0.168006,0.003864,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168006,0.003864,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168006,0.003864,-0.005748,0.249934,0,0);}
.m7e_c00021{transform:matrix(0.170095,0.003912,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170095,0.003912,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170095,0.003912,-0.005748,0.249934,0,0);}
.m23_c00021{transform:matrix(0.170293,0.002384,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170293,0.002384,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170293,0.002384,-0.003500,0.249976,0,0);}
.mdd_c00021{transform:matrix(0.170392,0.004260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170392,0.004260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170392,0.004260,-0.006248,0.249922,0,0);}
.m1_c00021{transform:matrix(0.170543,0.002388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170543,0.002388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170543,0.002388,-0.003500,0.249976,0,0);}
.ma6_c00021{transform:matrix(0.170607,0.004265,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170607,0.004265,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170607,0.004265,-0.006248,0.249922,0,0);}
.mce_c00021{transform:matrix(0.170792,0.004270,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170792,0.004270,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170792,0.004270,-0.006248,0.249922,0,0);}
.mb9_c00021{transform:matrix(0.171002,0.004275,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171002,0.004275,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171002,0.004275,-0.006248,0.249922,0,0);}
.md9_c00021{transform:matrix(0.171087,0.004277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171087,0.004277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171087,0.004277,-0.006248,0.249922,0,0);}
.mb2_c00021{transform:matrix(0.171551,0.004289,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171551,0.004289,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171551,0.004289,-0.006248,0.249922,0,0);}
.m73_c00021{transform:matrix(0.171735,0.003950,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171735,0.003950,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171735,0.003950,-0.005748,0.249934,0,0);}
.m0_c00021{transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);}
.mad_c00021{transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);}
.m3f_c00021{transform:matrix(0.175023,0.002450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175023,0.002450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175023,0.002450,-0.003500,0.249976,0,0);}
.mc_c00021{transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);}
.m64_c00021{transform:matrix(0.175104,0.004027,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175104,0.004027,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175104,0.004027,-0.005748,0.249934,0,0);}
.m7c_c00021{transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);}
.md4_c00021{transform:matrix(0.175175,0.004379,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175175,0.004379,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175175,0.004379,-0.006248,0.249922,0,0);}
.m50_c00021{transform:matrix(0.175883,0.004045,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175883,0.004045,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175883,0.004045,-0.005748,0.249934,0,0);}
.md2_c00021{transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);}
.m5_c00021{transform:matrix(0.176718,0.002474,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176718,0.002474,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176718,0.002474,-0.003500,0.249976,0,0);}
.mb8_c00021{transform:matrix(0.177380,0.004434,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177380,0.004434,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177380,0.004434,-0.006248,0.249922,0,0);}
.mc3_c00021{transform:matrix(0.177674,0.004442,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177674,0.004442,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177674,0.004442,-0.006248,0.249922,0,0);}
.m75_c00021{transform:matrix(0.177818,0.004090,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177818,0.004090,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177818,0.004090,-0.005748,0.249934,0,0);}
.m9_c00021{transform:matrix(0.178518,0.002499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178518,0.002499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178518,0.002499,-0.003500,0.249976,0,0);}
.m94_c00021{transform:matrix(0.178673,0.004109,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178673,0.004109,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178673,0.004109,-0.005748,0.249934,0,0);}
.m70_c00021{transform:matrix(0.178873,0.004114,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178873,0.004114,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178873,0.004114,-0.005748,0.249934,0,0);}
.md_c00021{transform:matrix(0.179427,0.002512,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179427,0.002512,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179427,0.002512,-0.003500,0.249976,0,0);}
.mc7_c00021{transform:matrix(0.179514,0.004488,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179514,0.004488,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179514,0.004488,-0.006248,0.249922,0,0);}
.m87_c00021{transform:matrix(0.179558,0.004130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179558,0.004130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179558,0.004130,-0.005748,0.249934,0,0);}
.ma4_c00021{transform:matrix(0.179594,0.004490,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179594,0.004490,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179594,0.004490,-0.006248,0.249922,0,0);}
.m38_c00021{transform:matrix(0.180157,0.002522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180157,0.002522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180157,0.002522,-0.003500,0.249976,0,0);}
.m6f_c00021{transform:matrix(0.180252,0.004146,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180252,0.004146,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180252,0.004146,-0.005748,0.249934,0,0);}
.m79_c00021{transform:matrix(0.180267,0.004146,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180267,0.004146,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180267,0.004146,-0.005748,0.249934,0,0);}
.m2e_c00021{transform:matrix(0.180732,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180732,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180732,0.002530,-0.003500,0.249976,0,0);}
.m42_c00021{transform:matrix(0.180767,0.002531,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180767,0.002531,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180767,0.002531,-0.003500,0.249976,0,0);}
.maa_c00021{transform:matrix(0.180789,0.004520,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180789,0.004520,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180789,0.004520,-0.006248,0.249922,0,0);}
.mba_c00021{transform:matrix(0.181213,0.004530,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181213,0.004530,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181213,0.004530,-0.006248,0.249922,0,0);}
.m66_c00021{transform:matrix(0.182287,0.004193,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182287,0.004193,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182287,0.004193,-0.005748,0.249934,0,0);}
.m3e_c00021{transform:matrix(0.183177,0.002564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183177,0.002564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183177,0.002564,-0.003500,0.249976,0,0);}
.mcb_c00021{transform:matrix(0.183178,0.004579,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183178,0.004579,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183178,0.004579,-0.006248,0.249922,0,0);}
.m6_c00021{transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);}
.m8a_c00021{transform:matrix(0.183237,0.004214,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183237,0.004214,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183237,0.004214,-0.005748,0.249934,0,0);}
.m69_c00021{transform:matrix(0.183426,0.004219,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183426,0.004219,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183426,0.004219,-0.005748,0.249934,0,0);}
.m31_c00021{transform:matrix(0.183432,0.002568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183432,0.002568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183432,0.002568,-0.003500,0.249976,0,0);}
.mcd_c00021{transform:matrix(0.183893,0.004597,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183893,0.004597,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183893,0.004597,-0.006248,0.249922,0,0);}
.m6a_c00021{transform:matrix(0.183901,0.004230,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183901,0.004230,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183901,0.004230,-0.005748,0.249934,0,0);}
.ma9_c00021{transform:matrix(0.184018,0.004600,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184018,0.004600,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184018,0.004600,-0.006248,0.249922,0,0);}
.m1e_c00021{transform:matrix(0.184192,0.002579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184192,0.002579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184192,0.002579,-0.003500,0.249976,0,0);}
.m43_c00021{transform:matrix(0.184282,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184282,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184282,0.002580,-0.003500,0.249976,0,0);}
.m62_c00021{transform:matrix(0.184491,0.004243,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184491,0.004243,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184491,0.004243,-0.005748,0.249934,0,0);}
.m95_c00021{transform:matrix(0.184596,0.004246,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184596,0.004246,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184596,0.004246,-0.005748,0.249934,0,0);}
.m4a_c00021{transform:matrix(0.184787,0.002587,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184787,0.002587,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184787,0.002587,-0.003500,0.249976,0,0);}
.mb1_c00021{transform:matrix(0.185212,0.004630,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185212,0.004630,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185212,0.004630,-0.006248,0.249922,0,0);}
.m8b_c00021{transform:matrix(0.185256,0.004261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185256,0.004261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185256,0.004261,-0.005748,0.249934,0,0);}
.m55_c00021{transform:matrix(0.185276,0.004261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185276,0.004261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185276,0.004261,-0.005748,0.249934,0,0);}
.m99_c00021{transform:matrix(0.185566,0.004268,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185566,0.004268,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185566,0.004268,-0.005748,0.249934,0,0);}
.m6e_c00021{transform:matrix(0.185626,0.004269,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185626,0.004269,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185626,0.004269,-0.005748,0.249934,0,0);}
.m8_c00021{transform:matrix(0.185687,0.002600,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185687,0.002600,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185687,0.002600,-0.003500,0.249976,0,0);}
.m6d_c00021{transform:matrix(0.185821,0.004274,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185821,0.004274,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185821,0.004274,-0.005748,0.249934,0,0);}
.m71_c00021{transform:matrix(0.185921,0.004276,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185921,0.004276,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185921,0.004276,-0.005748,0.249934,0,0);}
.mc6_c00021{transform:matrix(0.186542,0.004664,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186542,0.004664,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186542,0.004664,-0.006248,0.249922,0,0);}
.mb3_c00021{transform:matrix(0.187246,0.004681,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187246,0.004681,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187246,0.004681,-0.006248,0.249922,0,0);}
.m7f_c00021{transform:matrix(0.187655,0.004316,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187655,0.004316,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187655,0.004316,-0.005748,0.249934,0,0);}
.mc5_c00021{transform:matrix(0.188426,0.004711,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188426,0.004711,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188426,0.004711,-0.006248,0.249922,0,0);}
.m19_c00021{transform:matrix(0.188427,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188427,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188427,0.002638,-0.003500,0.249976,0,0);}
.m4e_c00021{transform:matrix(0.188896,0.002645,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188896,0.002645,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188896,0.002645,-0.003500,0.249976,0,0);}
.m6b_c00021{transform:matrix(0.189305,0.004354,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189305,0.004354,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189305,0.004354,-0.005748,0.249934,0,0);}
.ma0_c00021{transform:matrix(0.189476,0.004737,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189476,0.004737,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189476,0.004737,-0.006248,0.249922,0,0);}
.m68_c00021{transform:matrix(0.189750,0.004364,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189750,0.004364,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189750,0.004364,-0.005748,0.249934,0,0);}
.m12_c00021{transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);}
.m39_c00021{transform:matrix(0.190081,0.002661,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190081,0.002661,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190081,0.002661,-0.003500,0.249976,0,0);}
.m9c_c00021{transform:matrix(0.190100,0.004372,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190100,0.004372,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190100,0.004372,-0.005748,0.249934,0,0);}
.m34_c00021{transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);}
.m67_c00021{transform:matrix(0.190135,0.004373,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190135,0.004373,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190135,0.004373,-0.005748,0.249934,0,0);}
.m18_c00021{transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);}
.mcc_c00021{transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);}
.m7_c00021{transform:matrix(0.190726,0.002670,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190726,0.002670,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190726,0.002670,-0.003500,0.249976,0,0);}
.m4b_c00021{transform:matrix(0.190896,0.002673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190896,0.002673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190896,0.002673,-0.003500,0.249976,0,0);}
.m9f_c00021{transform:matrix(0.192065,0.004802,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192065,0.004802,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192065,0.004802,-0.006248,0.249922,0,0);}
.mdc_c00021{transform:matrix(0.192455,0.004811,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192455,0.004811,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192455,0.004811,-0.006248,0.249922,0,0);}
.mab_c00021{transform:matrix(0.192710,0.004818,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192710,0.004818,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192710,0.004818,-0.006248,0.249922,0,0);}
.mdb_c00021{transform:matrix(0.192765,0.004819,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192765,0.004819,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192765,0.004819,-0.006248,0.249922,0,0);}
.md6_c00021{transform:matrix(0.193395,0.004835,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193395,0.004835,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193395,0.004835,-0.006248,0.249922,0,0);}
.mc4_c00021{transform:matrix(0.193495,0.004837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193495,0.004837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193495,0.004837,-0.006248,0.249922,0,0);}
.mc8_c00021{transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);}
.m13_c00021{transform:matrix(0.194131,0.002718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194131,0.002718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194131,0.002718,-0.003500,0.249976,0,0);}
.m88_c00021{transform:matrix(0.194134,0.004465,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194134,0.004465,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194134,0.004465,-0.005748,0.249934,0,0);}
.m41_c00021{transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);}
.m35_c00021{transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);}
.m81_c00021{transform:matrix(0.194544,0.004475,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194544,0.004475,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194544,0.004475,-0.005748,0.249934,0,0);}
.mae_c00021{transform:matrix(0.194614,0.004865,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194614,0.004865,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194614,0.004865,-0.006248,0.249922,0,0);}
.m3a_c00021{transform:matrix(0.195341,0.002735,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195341,0.002735,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195341,0.002735,-0.003500,0.249976,0,0);}
.m11_c00021{transform:matrix(0.195391,0.002735,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195391,0.002735,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195391,0.002735,-0.003500,0.249976,0,0);}
.m5a_c00021{transform:matrix(0.195458,0.004496,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195458,0.004496,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195458,0.004496,-0.005748,0.249934,0,0);}
.m84_c00021{transform:matrix(0.195733,0.004502,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195733,0.004502,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195733,0.004502,-0.005748,0.249934,0,0);}
.m2_c00021{transform:matrix(0.195836,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195836,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195836,0.002742,-0.003500,0.249976,0,0);}
.m7a_c00021{transform:matrix(0.196033,0.004509,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196033,0.004509,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196033,0.004509,-0.005748,0.249934,0,0);}
.m65_c00021{transform:matrix(0.196458,0.004519,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196458,0.004519,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196458,0.004519,-0.005748,0.249934,0,0);}
.mbe_c00021{transform:matrix(0.196534,0.004913,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196534,0.004913,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196534,0.004913,-0.006248,0.249922,0,0);}
.m57_c00021{transform:matrix(0.196823,0.004527,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196823,0.004527,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196823,0.004527,-0.005748,0.249934,0,0);}
.m24_c00021{transform:matrix(0.197046,0.002759,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197046,0.002759,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197046,0.002759,-0.003500,0.249976,0,0);}
.m80_c00021{transform:matrix(0.197623,0.004545,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197623,0.004545,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197623,0.004545,-0.005748,0.249934,0,0);}
.mc9_c00021{transform:matrix(0.197998,0.004950,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197998,0.004950,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197998,0.004950,-0.006248,0.249922,0,0);}
.m8e_c00021{transform:matrix(0.198163,0.004558,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198163,0.004558,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198163,0.004558,-0.005748,0.249934,0,0);}
.m8d_c00021{transform:matrix(0.199302,0.004584,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199302,0.004584,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199302,0.004584,-0.005748,0.249934,0,0);}
.m20_c00021{transform:matrix(0.199690,0.002796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199690,0.002796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199690,0.002796,-0.003500,0.249976,0,0);}
.maf_c00021{transform:matrix(0.200312,0.005008,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200312,0.005008,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200312,0.005008,-0.006248,0.249922,0,0);}
.ma3_c00021{transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);}
.m7b_c00021{transform:matrix(0.200817,0.004619,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200817,0.004619,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200817,0.004619,-0.005748,0.249934,0,0);}
.m3d_c00021{transform:matrix(0.201445,0.002820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201445,0.002820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201445,0.002820,-0.003500,0.249976,0,0);}
.m8c_c00021{transform:matrix(0.201792,0.004641,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201792,0.004641,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201792,0.004641,-0.005748,0.249934,0,0);}
.m25_c00021{transform:matrix(0.201875,0.002826,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201875,0.002826,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201875,0.002826,-0.003500,0.249976,0,0);}
.m60_c00021{transform:matrix(0.201897,0.004644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201897,0.004644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201897,0.004644,-0.005748,0.249934,0,0);}
.md3_c00021{transform:matrix(0.201952,0.005049,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201952,0.005049,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201952,0.005049,-0.006248,0.249922,0,0);}
.m2b_c00021{transform:matrix(0.202115,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202115,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202115,0.002830,-0.003500,0.249976,0,0);}
.md8_c00021{transform:matrix(0.202232,0.005056,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202232,0.005056,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202232,0.005056,-0.006248,0.249922,0,0);}
.me_c00021{transform:matrix(0.202735,0.002838,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202735,0.002838,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202735,0.002838,-0.003500,0.249976,0,0);}
.mbf_c00021{transform:matrix(0.203401,0.005085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203401,0.005085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203401,0.005085,-0.006248,0.249922,0,0);}
.m5f_c00021{transform:matrix(0.203466,0.004680,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203466,0.004680,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203466,0.004680,-0.005748,0.249934,0,0);}
.mbb_c00021{transform:matrix(0.203506,0.005088,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203506,0.005088,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203506,0.005088,-0.006248,0.249922,0,0);}
.mbc_c00021{transform:matrix(0.203846,0.005096,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203846,0.005096,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203846,0.005096,-0.006248,0.249922,0,0);}
.m91_c00021{transform:matrix(0.205146,0.004718,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205146,0.004718,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205146,0.004718,-0.005748,0.249934,0,0);}
.m4d_c00021{transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);}
.m30_c00021{transform:matrix(0.205390,0.002875,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205390,0.002875,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205390,0.002875,-0.003500,0.249976,0,0);}
.m9d_c00021{transform:matrix(0.206085,0.004740,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206085,0.004740,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206085,0.004740,-0.005748,0.249934,0,0);}
.m14_c00021{transform:matrix(0.206310,0.002888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206310,0.002888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206310,0.002888,-0.003500,0.249976,0,0);}
.m4f_c00021{transform:matrix(0.206450,0.002890,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206450,0.002890,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206450,0.002890,-0.003500,0.249976,0,0);}
.m2c_c00021{transform:matrix(0.207400,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207400,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207400,0.002904,-0.003500,0.249976,0,0);}
.m89_c00021{transform:matrix(0.208085,0.004786,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208085,0.004786,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208085,0.004786,-0.005748,0.249934,0,0);}
.m56_c00021{transform:matrix(0.208405,0.004793,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208405,0.004793,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208405,0.004793,-0.005748,0.249934,0,0);}
.m6c_c00021{transform:matrix(0.208715,0.004800,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208715,0.004800,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208715,0.004800,-0.005748,0.249934,0,0);}
.m8f_c00021{transform:matrix(0.209610,0.004821,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209610,0.004821,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209610,0.004821,-0.005748,0.249934,0,0);}
.m37_c00021{transform:matrix(0.209879,0.002938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209879,0.002938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209879,0.002938,-0.003500,0.249976,0,0);}
.m53_c00021{transform:matrix(0.210929,0.004851,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210929,0.004851,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210929,0.004851,-0.005748,0.249934,0,0);}
.m82_c00021{transform:matrix(0.211034,0.004854,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211034,0.004854,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211034,0.004854,-0.005748,0.249934,0,0);}
.m48_c00021{transform:matrix(0.211044,0.002955,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211044,0.002955,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211044,0.002955,-0.003500,0.249976,0,0);}
.m9b_c00021{transform:matrix(0.211119,0.004856,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211119,0.004856,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211119,0.004856,-0.005748,0.249934,0,0);}
.m5e_c00021{transform:matrix(0.211299,0.004860,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211299,0.004860,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211299,0.004860,-0.005748,0.249934,0,0);}
.m28_c00021{transform:matrix(0.211349,0.002959,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211349,0.002959,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211349,0.002959,-0.003500,0.249976,0,0);}
.md1_c00021{transform:matrix(0.211529,0.005288,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211529,0.005288,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211529,0.005288,-0.006248,0.249922,0,0);}
.m7d_c00021{transform:matrix(0.211859,0.004873,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211859,0.004873,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211859,0.004873,-0.005748,0.249934,0,0);}
.m44_c00021{transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);}
.md5_c00021{transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);}
.m32_c00021{transform:matrix(0.212399,0.002974,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212399,0.002974,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212399,0.002974,-0.003500,0.249976,0,0);}
.m27_c00021{transform:matrix(0.212704,0.002978,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212704,0.002978,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212704,0.002978,-0.003500,0.249976,0,0);}
.m96_c00021{transform:matrix(0.212774,0.004894,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212774,0.004894,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212774,0.004894,-0.005748,0.249934,0,0);}
.ma2_c00021{transform:matrix(0.213903,0.005348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213903,0.005348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213903,0.005348,-0.006248,0.249922,0,0);}
.mda_c00021{transform:matrix(0.214008,0.005350,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214008,0.005350,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214008,0.005350,-0.006248,0.249922,0,0);}
.m1b_c00021{transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);}
.m46_c00021{transform:matrix(0.215309,0.003014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215309,0.003014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215309,0.003014,-0.003500,0.249976,0,0);}
.mbd_c00021{transform:matrix(0.215453,0.005386,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215453,0.005386,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215453,0.005386,-0.006248,0.249922,0,0);}
.m47_c00021{transform:matrix(0.215574,0.003018,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215574,0.003018,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215574,0.003018,-0.003500,0.249976,0,0);}
.m9e_c00021{transform:matrix(0.215583,0.004958,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215583,0.004958,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215583,0.004958,-0.005748,0.249934,0,0);}
.mc0_c00021{transform:matrix(0.215948,0.005399,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215948,0.005399,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215948,0.005399,-0.006248,0.249922,0,0);}
.me6_c00021{transform:matrix(0.216252,0.005406,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216252,0.005406,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216252,0.005406,-0.006248,0.249922,0,0);}
.m1f_c00021{transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);}
.md0_c00021{transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);}
.m33_c00021{transform:matrix(0.217109,0.003040,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217109,0.003040,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217109,0.003040,-0.003500,0.249976,0,0);}
.mf_c00021{transform:matrix(0.217599,0.003046,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217599,0.003046,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217599,0.003046,-0.003500,0.249976,0,0);}
.m9a_c00021{transform:matrix(0.219932,0.005058,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219932,0.005058,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219932,0.005058,-0.005748,0.249934,0,0);}
.me4_c00021{transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);}
.m10_c00021{transform:matrix(0.220558,0.003088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220558,0.003088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220558,0.003088,-0.003500,0.249976,0,0);}
.m2f_c00021{transform:matrix(0.221013,0.003094,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221013,0.003094,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221013,0.003094,-0.003500,0.249976,0,0);}
.m74_c00021{transform:matrix(0.221831,0.005102,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221831,0.005102,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221831,0.005102,-0.005748,0.249934,0,0);}
.m98_c00021{transform:matrix(0.221926,0.005104,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221926,0.005104,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221926,0.005104,-0.005748,0.249934,0,0);}
.m90_c00021{transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);}
.m52_c00021{transform:matrix(0.222906,0.005127,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222906,0.005127,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222906,0.005127,-0.005748,0.249934,0,0);}
.m58_c00021{transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);}
.m2a_c00021{transform:matrix(0.224598,0.003144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224598,0.003144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224598,0.003144,-0.003500,0.249976,0,0);}
.mb6_c00021{transform:matrix(0.226144,0.005654,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226144,0.005654,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226144,0.005654,-0.006248,0.249922,0,0);}
.m61_c00021{transform:matrix(0.226645,0.005213,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226645,0.005213,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226645,0.005213,-0.005748,0.249934,0,0);}
.m16_c00021{transform:matrix(0.226868,0.003176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226868,0.003176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226868,0.003176,-0.003500,0.249976,0,0);}
.m93_c00021{transform:matrix(0.227435,0.005231,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227435,0.005231,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227435,0.005231,-0.005748,0.249934,0,0);}
.m59_c00021{transform:matrix(0.229424,0.005277,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229424,0.005277,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229424,0.005277,-0.005748,0.249934,0,0);}
.m36_c00021{transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);}
.m5d_c00021{transform:matrix(0.230294,0.005297,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230294,0.005297,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230294,0.005297,-0.005748,0.249934,0,0);}
.m17_c00021{transform:matrix(0.232172,0.003250,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232172,0.003250,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232172,0.003250,-0.003500,0.249976,0,0);}
.m2d_c00021{transform:matrix(0.232477,0.003255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232477,0.003255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232477,0.003255,-0.003500,0.249976,0,0);}
.ma5_c00021{transform:matrix(0.232907,0.005823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232907,0.005823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232907,0.005823,-0.006248,0.249922,0,0);}
.me5_c00021{transform:matrix(0.233897,0.005847,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233897,0.005847,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233897,0.005847,-0.006248,0.249922,0,0);}
.m54_c00021{transform:matrix(0.233993,0.005382,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233993,0.005382,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233993,0.005382,-0.005748,0.249934,0,0);}
.m51_c00021{transform:matrix(0.235218,0.005410,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235218,0.005410,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235218,0.005410,-0.005748,0.249934,0,0);}
.m1a_c00021{transform:matrix(0.235257,0.003294,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235257,0.003294,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235257,0.003294,-0.003500,0.249976,0,0);}
.m1c_c00021{transform:matrix(0.235452,0.003296,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235452,0.003296,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235452,0.003296,-0.003500,0.249976,0,0);}
.m5c_c00021{transform:matrix(0.235558,0.005418,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235558,0.005418,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235558,0.005418,-0.005748,0.249934,0,0);}
.m26_c00021{transform:matrix(0.235627,0.003299,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235627,0.003299,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235627,0.003299,-0.003500,0.249976,0,0);}
.ma8_c00021{transform:matrix(0.235976,0.005899,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235976,0.005899,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235976,0.005899,-0.006248,0.249922,0,0);}
.m76_c00021{transform:matrix(0.237877,0.005471,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237877,0.005471,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237877,0.005471,-0.005748,0.249934,0,0);}
.m21_c00021{transform:matrix(0.238092,0.003333,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238092,0.003333,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238092,0.003333,-0.003500,0.249976,0,0);}
.me0_c00021{transform:matrix(0.239330,0.005983,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239330,0.005983,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239330,0.005983,-0.006248,0.249922,0,0);}
.m5b_c00021{transform:matrix(0.239937,0.005519,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239937,0.005519,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239937,0.005519,-0.005748,0.249934,0,0);}
.m97_c00021{transform:matrix(0.241481,0.005554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241481,0.005554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241481,0.005554,-0.005748,0.249934,0,0);}
.mdf_c00021{transform:matrix(0.241585,0.006040,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241585,0.006040,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241585,0.006040,-0.006248,0.249922,0,0);}
.mde_c00021{transform:matrix(0.242449,0.006061,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242449,0.006061,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242449,0.006061,-0.006248,0.249922,0,0);}
.m92_c00021{transform:matrix(0.245605,0.005649,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245605,0.005649,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245605,0.005649,-0.005748,0.249934,0,0);}
.me3_c00021{transform:matrix(0.250047,0.006251,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250047,0.006251,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250047,0.006251,-0.006248,0.249922,0,0);}
.m1d_c00021{transform:matrix(0.252785,0.003539,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252785,0.003539,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252785,0.003539,-0.003500,0.249976,0,0);}
.me2_c00021{transform:matrix(0.253116,0.006328,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253116,0.006328,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253116,0.006328,-0.006248,0.249922,0,0);}
.mb7_c00021{transform:matrix(0.257585,0.006440,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257585,0.006440,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257585,0.006440,-0.006248,0.249922,0,0);}
.mca_c00021{transform:matrix(0.262778,0.006569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262778,0.006569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262778,0.006569,-0.006248,0.249922,0,0);}
.mb_c00021{transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);}
.m45_c00021{transform:matrix(0.269129,0.003768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269129,0.003768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269129,0.003768,-0.003500,0.249976,0,0);}
.me1_c00021{transform:matrix(0.279938,0.006998,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279938,0.006998,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279938,0.006998,-0.006248,0.249922,0,0);}
.m29_c00021{transform:matrix(0.313544,0.004390,-0.003500,0.249976,0,0);-ms-transform:matrix(0.313544,0.004390,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.313544,0.004390,-0.003500,0.249976,0,0);}
.mc1_c00021{transform:matrix(0.325918,0.008148,-0.006248,0.249922,0,0);-ms-transform:matrix(0.325918,0.008148,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.325918,0.008148,-0.006248,0.249922,0,0);}
.m22_c00021{transform:matrix(0.352705,0.004938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.352705,0.004938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.352705,0.004938,-0.003500,0.249976,0,0);}
.ma_c00021{transform:matrix(0.370924,0.005193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.370924,0.005193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.370924,0.005193,-0.003500,0.249976,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
.fc0_c00021{color:transparent;}
.fs16_c00021{font-size:48.315091px;}
.fs4_c00021{font-size:58.805762px;}
.fsb_c00021{font-size:58.815551px;}
.fs2_c00021{font-size:59.855865px;}
.fs9_c00021{font-size:59.865828px;}
.fs6_c00021{font-size:60.905968px;}
.fsa_c00021{font-size:60.916106px;}
.fs5_c00021{font-size:61.956071px;}
.fs14_c00021{font-size:61.969356px;}
.fsd_c00021{font-size:63.016661px;}
.fs3_c00021{font-size:64.056277px;}
.fs12_c00021{font-size:64.070012px;}
.fs10_c00021{font-size:65.117217px;}
.fs15_c00021{font-size:65.120341px;}
.fs8_c00021{font-size:66.156482px;}
.fsf_c00021{font-size:68.268050px;}
.fs11_c00021{font-size:68.271325px;}
.fs7_c00021{font-size:69.306791px;}
.fse_c00021{font-size:69.318327px;}
.fs13_c00021{font-size:69.321653px;}
.fs1_c00021{font-size:70.356894px;}
.fsc_c00021{font-size:70.368605px;}
.fs0_c00021{font-size:74.550000px;}
.y0_c00021{bottom:0.000000px;}
.ye9_c00021{bottom:28.877850px;}
.ye8_c00021{bottom:29.986687px;}
.ye7_c00021{bottom:30.582562px;}
.ye6_c00021{bottom:31.726650px;}
.ye5_c00021{bottom:32.186775px;}
.ye4_c00021{bottom:33.430537px;}
.ye3_c00021{bottom:34.552987px;}
.ye2_c00021{bottom:35.069700px;}
.ye1_c00021{bottom:35.871150px;}
.ye0_c00021{bottom:46.169175px;}
.ydf_c00021{bottom:47.624850px;}
.yde_c00021{bottom:48.887962px;}
.ydd_c00021{bottom:49.520475px;}
.ydc_c00021{bottom:51.050137px;}
.ydb_c00021{bottom:53.156850px;}
.yda_c00021{bottom:62.398312px;}
.yd9_c00021{bottom:64.050712px;}
.yd8_c00021{bottom:64.875412px;}
.yd7_c00021{bottom:65.363700px;}
.yd6_c00021{bottom:65.929950px;}
.yd5_c00021{bottom:67.895400px;}
.yd4_c00021{bottom:69.237412px;}
.yd3_c00021{bottom:70.444912px;}
.yd2_c00021{bottom:80.353725px;}
.yd1_c00021{bottom:81.740437px;}
.yd0_c00021{bottom:82.161712px;}
.ycf_c00021{bottom:82.648162px;}
.yce_c00021{bottom:84.339712px;}
.ycd_c00021{bottom:85.487100px;}
.ycc_c00021{bottom:86.698650px;}
.ycb_c00021{bottom:87.184237px;}
.yca_c00021{bottom:96.943875px;}
.yc9_c00021{bottom:97.607175px;}
.yc8_c00021{bottom:100.487025px;}
.yc7_c00021{bottom:101.021550px;}
.yc6_c00021{bottom:102.095587px;}
.yc5_c00021{bottom:102.707175px;}
.yc4_c00021{bottom:103.052025px;}
.yc3_c00021{bottom:104.200762px;}
.yc2_c00021{bottom:115.654537px;}
.yc1_c00021{bottom:117.197250px;}
.yc0_c00021{bottom:118.650262px;}
.ybf_c00021{bottom:119.137912px;}
.ybe_c00021{bottom:120.674100px;}
.ybd_c00021{bottom:132.441450px;}
.ybc_c00021{bottom:132.947625px;}
.ybb_c00021{bottom:134.279625px;}
.yba_c00021{bottom:134.776012px;}
.yb9_c00021{bottom:136.640812px;}
.yb8_c00021{bottom:137.120662px;}
.yb7_c00021{bottom:137.688375px;}
.yb6_c00021{bottom:150.400125px;}
.yb5_c00021{bottom:150.677437px;}
.yb4_c00021{bottom:152.043225px;}
.yb3_c00021{bottom:152.479125px;}
.yb2_c00021{bottom:153.021675px;}
.yb1_c00021{bottom:154.079850px;}
.yb0_c00021{bottom:154.434525px;}
.yaf_c00021{bottom:165.108412px;}
.yae_c00021{bottom:166.534650px;}
.yad_c00021{bottom:167.023462px;}
.yac_c00021{bottom:168.310387px;}
.yab_c00021{bottom:169.651837px;}
.yaa_c00021{bottom:170.287275px;}
.ya9_c00021{bottom:171.179700px;}
.ya8_c00021{bottom:182.728200px;}
.ya7_c00021{bottom:183.227700px;}
.ya6_c00021{bottom:183.498300px;}
.ya5_c00021{bottom:184.699912px;}
.ya4_c00021{bottom:186.354488px;}
.ya3_c00021{bottom:188.561550px;}
.ya2_c00021{bottom:189.277500px;}
.ya1_c00021{bottom:199.368996px;}
.ya0_c00021{bottom:200.292836px;}
.y9f_c00021{bottom:201.480723px;}
.y9e_c00021{bottom:202.507505px;}
.y9d_c00021{bottom:204.333002px;}
.y9c_c00021{bottom:204.767729px;}
.y9b_c00021{bottom:205.557992px;}
.y9a_c00021{bottom:206.789760px;}
.y99_c00021{bottom:216.708486px;}
.y98_c00021{bottom:217.548251px;}
.y97_c00021{bottom:218.121836px;}
.y96_c00021{bottom:218.423394px;}
.y95_c00021{bottom:220.557365px;}
.y94_c00021{bottom:221.057604px;}
.y93_c00021{bottom:222.243638px;}
.y92_c00021{bottom:222.800060px;}
.y91_c00021{bottom:223.531721px;}
.y90_c00021{bottom:234.181727px;}
.y8f_c00021{bottom:234.776207px;}
.y8e_c00021{bottom:235.529174px;}
.y8d_c00021{bottom:236.024471px;}
.y8c_c00021{bottom:237.800477px;}
.y8b_c00021{bottom:238.902276px;}
.y8a_c00021{bottom:240.277443px;}
.y89_c00021{bottom:250.903518px;}
.y88_c00021{bottom:251.440275px;}
.y87_c00021{bottom:252.099102px;}
.y86_c00021{bottom:252.536147px;}
.y85_c00021{bottom:253.697262px;}
.y84_c00021{bottom:254.053536px;}
.y83_c00021{bottom:254.869056px;}
.y82_c00021{bottom:255.473300px;}
.y81_c00021{bottom:256.478998px;}
.y80_c00021{bottom:268.089207px;}
.y7f_c00021{bottom:268.741140px;}
.y7e_c00021{bottom:270.156007px;}
.y7d_c00021{bottom:271.220034px;}
.y7c_c00021{bottom:272.177993px;}
.y7b_c00021{bottom:272.588000px;}
.y7a_c00021{bottom:273.715039px;}
.y79_c00021{bottom:274.303977px;}
.y78_c00021{bottom:285.478783px;}
.y77_c00021{bottom:286.043330px;}
.y76_c00021{bottom:287.440706px;}
.y75_c00021{bottom:287.812091px;}
.y74_c00021{bottom:289.515786px;}
.y73_c00021{bottom:290.087439px;}
.y72_c00021{bottom:291.318443px;}
.y71_c00021{bottom:301.411008px;}
.y70_c00021{bottom:301.828830px;}
.y6f_c00021{bottom:302.929008px;}
.y6e_c00021{bottom:303.950490px;}
.y6d_c00021{bottom:304.361015px;}
.y6c_c00021{bottom:305.983121px;}
.y6b_c00021{bottom:307.521287px;}
.y6a_c00021{bottom:317.904399px;}
.y69_c00021{bottom:319.458371px;}
.y68_c00021{bottom:320.745523px;}
.y67_c00021{bottom:320.992349px;}
.y66_c00021{bottom:322.325820px;}
.y65_c00021{bottom:322.891130px;}
.y64_c00021{bottom:323.993595px;}
.y63_c00021{bottom:336.414693px;}
.y62_c00021{bottom:337.435625px;}
.y61_c00021{bottom:338.408955px;}
.y60_c00021{bottom:339.303301px;}
.y5f_c00021{bottom:340.529613px;}
.y5e_c00021{bottom:340.735218px;}
.y5d_c00021{bottom:353.229410px;}
.y5c_c00021{bottom:354.845424px;}
.y5b_c00021{bottom:355.970124px;}
.y5a_c00021{bottom:356.709045px;}
.y59_c00021{bottom:358.292457px;}
.y58_c00021{bottom:369.362205px;}
.y57_c00021{bottom:370.911221px;}
.y56_c00021{bottom:371.315630px;}
.y55_c00021{bottom:372.377540px;}
.y54_c00021{bottom:373.064676px;}
.y53_c00021{bottom:374.520576px;}
.y52_c00021{bottom:374.884448px;}
.y51_c00021{bottom:375.576000px;}
.y50_c00021{bottom:386.408754px;}
.y4f_c00021{bottom:386.810718px;}
.y4e_c00021{bottom:387.854469px;}
.y4d_c00021{bottom:388.285749px;}
.y4c_c00021{bottom:390.995862px;}
.y4b_c00021{bottom:391.535109px;}
.y4a_c00021{bottom:392.031321px;}
.y49_c00021{bottom:403.014480px;}
.y48_c00021{bottom:404.368293px;}
.y47_c00021{bottom:404.885310px;}
.y46_c00021{bottom:406.480119px;}
.y45_c00021{bottom:407.074260px;}
.y44_c00021{bottom:407.921415px;}
.y43_c00021{bottom:408.629961px;}
.y42_c00021{bottom:409.585581px;}
.y41_c00021{bottom:419.867859px;}
.y40_c00021{bottom:421.439514px;}
.y3f_c00021{bottom:422.383242px;}
.y3e_c00021{bottom:424.481508px;}
.y3d_c00021{bottom:425.094405px;}
.y3c_c00021{bottom:425.903901px;}
.y3b_c00021{bottom:426.325773px;}
.y3a_c00021{bottom:436.924569px;}
.y39_c00021{bottom:437.275278px;}
.y38_c00021{bottom:438.641514px;}
.y37_c00021{bottom:439.556634px;}
.y36_c00021{bottom:439.924599px;}
.y35_c00021{bottom:441.254256px;}
.y34_c00021{bottom:441.899079px;}
.y33_c00021{bottom:443.065929px;}
.y32_c00021{bottom:454.079064px;}
.y31_c00021{bottom:455.310684px;}
.y30_c00021{bottom:456.918078px;}
.y2f_c00021{bottom:457.661502px;}
.y2e_c00021{bottom:458.508930px;}
.y2d_c00021{bottom:460.346226px;}
.y2c_c00021{bottom:471.874386px;}
.y2b_c00021{bottom:472.553166px;}
.y2a_c00021{bottom:474.221835px;}
.y29_c00021{bottom:476.613387px;}
.y28_c00021{bottom:477.358113px;}
.y27_c00021{bottom:487.156338px;}
.y26_c00021{bottom:487.611807px;}
.y25_c00021{bottom:489.182997px;}
.y24_c00021{bottom:489.609348px;}
.y23_c00021{bottom:489.885804px;}
.y22_c00021{bottom:491.066469px;}
.y21_c00021{bottom:492.266133px;}
.y20_c00021{bottom:492.534579px;}
.y1f_c00021{bottom:493.286175px;}
.y1e_c00021{bottom:505.285005px;}
.y1d_c00021{bottom:506.172672px;}
.y1c_c00021{bottom:506.573037px;}
.y1b_c00021{bottom:507.552954px;}
.y1a_c00021{bottom:508.548984px;}
.y19_c00021{bottom:508.917594px;}
.y18_c00021{bottom:510.297792px;}
.y17_c00021{bottom:521.695095px;}
.y16_c00021{bottom:522.591108px;}
.y15_c00021{bottom:524.243571px;}
.y14_c00021{bottom:525.006528px;}
.y13_c00021{bottom:526.410333px;}
.y12_c00021{bottom:527.732385px;}
.y11_c00021{bottom:528.390771px;}
.y10_c00021{bottom:539.139849px;}
.yf_c00021{bottom:539.814177px;}
.ye_c00021{bottom:540.098121px;}
.yd_c00021{bottom:540.537846px;}
.yc_c00021{bottom:540.879330px;}
.yb_c00021{bottom:541.525974px;}
.ya_c00021{bottom:542.196270px;}
.y9_c00021{bottom:542.586654px;}
.y8_c00021{bottom:543.242610px;}
.y7_c00021{bottom:556.770402px;}
.y6_c00021{bottom:557.179650px;}
.y5_c00021{bottom:557.788377px;}
.y4_c00021{bottom:558.030276px;}
.y3_c00021{bottom:559.024416px;}
.y2_c00021{bottom:560.253000px;}
.y1_c00021{bottom:572.130000px;}
.h18_c00021{height:48.315091px;}
.h6_c00021{height:58.805762px;}
.hd_c00021{height:58.815551px;}
.h4_c00021{height:59.855865px;}
.hb_c00021{height:59.865828px;}
.h8_c00021{height:60.905968px;}
.hc_c00021{height:60.916106px;}
.h7_c00021{height:61.956071px;}
.h16_c00021{height:61.969356px;}
.hf_c00021{height:63.016661px;}
.h5_c00021{height:64.056277px;}
.h14_c00021{height:64.070012px;}
.h12_c00021{height:65.117217px;}
.h17_c00021{height:65.120341px;}
.ha_c00021{height:66.156482px;}
.h11_c00021{height:68.268050px;}
.h13_c00021{height:68.271325px;}
.h9_c00021{height:69.306791px;}
.h10_c00021{height:69.318327px;}
.h15_c00021{height:69.321653px;}
.h3_c00021{height:70.356894px;}
.he_c00021{height:70.368605px;}
.h2_c00021{height:74.550000px;}
.h0_c00021{height:615.600000px;}
.h1_c00021{height:615.750000px;}
.w0_c00021{width:367.200000px;}
.w1_c00021{width:367.500000px;}
.x0_c00021{left:0.000000px;}
.x7c_c00021{left:34.075350px;}
.x76_c00021{left:35.529563px;}
.x71_c00021{left:36.739688px;}
.x69_c00021{left:38.645438px;}
.x64_c00021{left:39.652092px;}
.x5c_c00021{left:41.045577px;}
.x50_c00021{left:42.663785px;}
.x42_c00021{left:43.998110px;}
.x31_c00021{left:45.361074px;}
.x27_c00021{left:46.447980px;}
.xf_c00021{left:47.933208px;}
.x2_c00021{left:49.506000px;}
.x3c_c00021{left:52.659000px;}
.x47_c00021{left:57.024668px;}
.x6c_c00021{left:62.082000px;}
.x32_c00021{left:63.706764px;}
.x7d_c00021{left:64.872562px;}
.x57_c00021{left:66.388196px;}
.x38_c00021{left:68.854704px;}
.x61_c00021{left:70.980198px;}
.x10_c00021{left:76.528596px;}
.x77_c00021{left:78.666338px;}
.x24_c00021{left:79.920735px;}
.x72_c00021{left:80.948100px;}
.x3d_c00021{left:82.726500px;}
.x66_c00021{left:83.799713px;}
.x1c_c00021{left:85.166616px;}
.x8_c00021{left:87.255117px;}
.x5d_c00021{left:91.362062px;}
.x39_c00021{left:94.512684px;}
.x4a_c00021{left:95.704148px;}
.x1d_c00021{left:98.554482px;}
.x74_c00021{left:107.462813px;}
.x9_c00021{left:110.210151px;}
.x6e_c00021{left:111.253425px;}
.x43_c00021{left:112.842110px;}
.x67_c00021{left:115.581188px;}
.x34_c00021{left:117.714642px;}
.x55_c00021{left:118.833650px;}
.x16_c00021{left:121.080471px;}
.x4b_c00021{left:122.631890px;}
.x28_c00021{left:126.351921px;}
.x2b_c00021{left:128.801883px;}
.x58_c00021{left:130.475747px;}
.x11_c00021{left:133.989351px;}
.x3_c00021{left:137.262000px;}
.x17_c00021{left:140.444106px;}
.x6a_c00021{left:141.536850px;}
.x62_c00021{left:143.607042px;}
.x44_c00021{left:144.969110px;}
.xa_c00021{left:149.622492px;}
.x35_c00021{left:154.542501px;}
.x1e_c00021{left:158.525442px;}
.x6d_c00021{left:159.770438px;}
.x3e_c00021{left:161.847000px;}
.x29_c00021{left:163.199280px;}
.x63_c00021{left:164.443059px;}
.x59_c00021{left:170.364315px;}
.x79_c00021{left:174.931350px;}
.x36_c00021{left:180.370746px;}
.x48_c00021{left:181.787883px;}
.x1_c00021{left:184.140000px;}
.x4c_c00021{left:186.155322px;}
.xb_c00021{left:187.666896px;}
.x2c_c00021{left:189.270621px;}
.x3f_c00021{left:191.722500px;}
.x18_c00021{left:192.835431px;}
.x45_c00021{left:193.869110px;}
.x12_c00021{left:195.039165px;}
.x78_c00021{left:196.795988px;}
.x4d_c00021{left:197.930874px;}
.x7a_c00021{left:199.271250px;}
.x6f_c00021{left:203.649150px;}
.x51_c00021{left:204.963010px;}
.x2d_c00021{left:206.016252px;}
.x4_c00021{left:208.272000px;}
.x5e_c00021{left:211.101284px;}
.x5a_c00021{left:214.668780px;}
.x1f_c00021{left:217.567986px;}
.x3a_c00021{left:223.579542px;}
.x5_c00021{left:225.550500px;}
.x13_c00021{left:228.210486px;}
.x20_c00021{left:231.420831px;}
.xc_c00021{left:233.608464px;}
.x6b_c00021{left:236.358563px;}
.x40_c00021{left:237.892500px;}
.x49_c00021{left:239.049284px;}
.x19_c00021{left:244.397319px;}
.x75_c00021{left:246.001762px;}
.x2e_c00021{left:247.591590px;}
.xd_c00021{left:250.353771px;}
.x52_c00021{left:251.398080px;}
.x21_c00021{left:252.765546px;}
.x25_c00021{left:256.449996px;}
.x33_c00021{left:257.852820px;}
.x4e_c00021{left:259.244703px;}
.x5f_c00021{left:261.067007px;}
.x46_c00021{left:264.130610px;}
.x1a_c00021{left:265.493349px;}
.x6_c00021{left:269.031000px;}
.x37_c00021{left:272.168175px;}
.x5b_c00021{left:273.639935px;}
.x70_c00021{left:277.125000px;}
.x65_c00021{left:279.471000px;}
.x60_c00021{left:284.825902px;}
.x26_c00021{left:285.966279px;}
.x56_c00021{left:287.047285px;}
.xe_c00021{left:290.054112px;}
.x3b_c00021{left:293.789154px;}
.x7_c00021{left:298.263000px;}
.x14_c00021{left:300.055935px;}
.x53_c00021{left:301.385219px;}
.x7b_c00021{left:303.880163px;}
.x2f_c00021{left:309.708639px;}
.x1b_c00021{left:312.180573px;}
.x73_c00021{left:315.788175px;}
.x2a_c00021{left:318.996666px;}
.x54_c00021{left:320.399667px;}
.x41_c00021{left:322.824000px;}
.x30_c00021{left:325.650354px;}
.x22_c00021{left:331.343952px;}
.x4f_c00021{left:333.268619px;}
.x15_c00021{left:338.980521px;}
.x68_c00021{left:342.766575px;}
.x23_c00021{left:354.125541px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.fs16_c00021{font-size:42.946748pt;}
.fs4_c00021{font-size:52.271789pt;}
.fsb_c00021{font-size:52.280489pt;}
.fs2_c00021{font-size:53.205213pt;}
.fs9_c00021{font-size:53.214070pt;}
.fs6_c00021{font-size:54.138638pt;}
.fsa_c00021{font-size:54.147650pt;}
.fs5_c00021{font-size:55.072063pt;}
.fs14_c00021{font-size:55.083872pt;}
.fsd_c00021{font-size:56.014810pt;}
.fs3_c00021{font-size:56.938913pt;}
.fs12_c00021{font-size:56.951122pt;}
.fs10_c00021{font-size:57.881970pt;}
.fs15_c00021{font-size:57.884747pt;}
.fs8_c00021{font-size:58.805762pt;}
.fsf_c00021{font-size:60.682711pt;}
.fs11_c00021{font-size:60.685622pt;}
.fs7_c00021{font-size:61.606037pt;}
.fse_c00021{font-size:61.616291pt;}
.fs13_c00021{font-size:61.619247pt;}
.fs1_c00021{font-size:62.539461pt;}
.fsc_c00021{font-size:62.549871pt;}
.fs0_c00021{font-size:66.266667pt;}
.y0_c00021{bottom:0.000000pt;}
.ye9_c00021{bottom:25.669200pt;}
.ye8_c00021{bottom:26.654833pt;}
.ye7_c00021{bottom:27.184500pt;}
.ye6_c00021{bottom:28.201467pt;}
.ye5_c00021{bottom:28.610467pt;}
.ye4_c00021{bottom:29.716033pt;}
.ye3_c00021{bottom:30.713767pt;}
.ye2_c00021{bottom:31.173067pt;}
.ye1_c00021{bottom:31.885467pt;}
.ye0_c00021{bottom:41.039267pt;}
.ydf_c00021{bottom:42.333200pt;}
.yde_c00021{bottom:43.455967pt;}
.ydd_c00021{bottom:44.018200pt;}
.ydc_c00021{bottom:45.377900pt;}
.ydb_c00021{bottom:47.250533pt;}
.yda_c00021{bottom:55.465167pt;}
.yd9_c00021{bottom:56.933967pt;}
.yd8_c00021{bottom:57.667033pt;}
.yd7_c00021{bottom:58.101067pt;}
.yd6_c00021{bottom:58.604400pt;}
.yd5_c00021{bottom:60.351467pt;}
.yd4_c00021{bottom:61.544367pt;}
.yd3_c00021{bottom:62.617700pt;}
.yd2_c00021{bottom:71.425533pt;}
.yd1_c00021{bottom:72.658167pt;}
.yd0_c00021{bottom:73.032633pt;}
.ycf_c00021{bottom:73.465033pt;}
.yce_c00021{bottom:74.968633pt;}
.ycd_c00021{bottom:75.988533pt;}
.ycc_c00021{bottom:77.065467pt;}
.ycb_c00021{bottom:77.497100pt;}
.yca_c00021{bottom:86.172333pt;}
.yc9_c00021{bottom:86.761933pt;}
.yc8_c00021{bottom:89.321800pt;}
.yc7_c00021{bottom:89.796933pt;}
.yc6_c00021{bottom:90.751633pt;}
.yc5_c00021{bottom:91.295267pt;}
.yc4_c00021{bottom:91.601800pt;}
.yc3_c00021{bottom:92.622900pt;}
.yc2_c00021{bottom:102.804033pt;}
.yc1_c00021{bottom:104.175333pt;}
.yc0_c00021{bottom:105.466900pt;}
.ybf_c00021{bottom:105.900367pt;}
.ybe_c00021{bottom:107.265867pt;}
.ybd_c00021{bottom:117.725733pt;}
.ybc_c00021{bottom:118.175667pt;}
.ybb_c00021{bottom:119.359667pt;}
.yba_c00021{bottom:119.800900pt;}
.yb9_c00021{bottom:121.458500pt;}
.yb8_c00021{bottom:121.885033pt;}
.yb7_c00021{bottom:122.389667pt;}
.yb6_c00021{bottom:133.689000pt;}
.yb5_c00021{bottom:133.935500pt;}
.yb4_c00021{bottom:135.149533pt;}
.yb3_c00021{bottom:135.537000pt;}
.yb2_c00021{bottom:136.019267pt;}
.yb1_c00021{bottom:136.959867pt;}
.yb0_c00021{bottom:137.275133pt;}
.yaf_c00021{bottom:146.763033pt;}
.yae_c00021{bottom:148.030800pt;}
.yad_c00021{bottom:148.465300pt;}
.yac_c00021{bottom:149.609233pt;}
.yab_c00021{bottom:150.801633pt;}
.yaa_c00021{bottom:151.366467pt;}
.ya9_c00021{bottom:152.159733pt;}
.ya8_c00021{bottom:162.425067pt;}
.ya7_c00021{bottom:162.869067pt;}
.ya6_c00021{bottom:163.109600pt;}
.ya5_c00021{bottom:164.177700pt;}
.ya4_c00021{bottom:165.648433pt;}
.ya3_c00021{bottom:167.610267pt;}
.ya2_c00021{bottom:168.246667pt;}
.ya1_c00021{bottom:177.216885pt;}
.ya0_c00021{bottom:178.038076pt;}
.y9f_c00021{bottom:179.093976pt;}
.y9e_c00021{bottom:180.006671pt;}
.y9d_c00021{bottom:181.629335pt;}
.y9c_c00021{bottom:182.015759pt;}
.y9b_c00021{bottom:182.718215pt;}
.y9a_c00021{bottom:183.813120pt;}
.y99_c00021{bottom:192.629765pt;}
.y98_c00021{bottom:193.376223pt;}
.y97_c00021{bottom:193.886076pt;}
.y96_c00021{bottom:194.154128pt;}
.y95_c00021{bottom:196.050991pt;}
.y94_c00021{bottom:196.495648pt;}
.y93_c00021{bottom:197.549900pt;}
.y92_c00021{bottom:198.044497pt;}
.y91_c00021{bottom:198.694863pt;}
.y90_c00021{bottom:208.161535pt;}
.y8f_c00021{bottom:208.689961pt;}
.y8e_c00021{bottom:209.359265pt;}
.y8d_c00021{bottom:209.799529pt;}
.y8c_c00021{bottom:211.378201pt;}
.y8b_c00021{bottom:212.357579pt;}
.y8a_c00021{bottom:213.579949pt;}
.y89_c00021{bottom:223.025349pt;}
.y88_c00021{bottom:223.502467pt;}
.y87_c00021{bottom:224.088091pt;}
.y86_c00021{bottom:224.476575pt;}
.y85_c00021{bottom:225.508677pt;}
.y84_c00021{bottom:225.825365pt;}
.y83_c00021{bottom:226.550272pt;}
.y82_c00021{bottom:227.087377pt;}
.y81_c00021{bottom:227.981332pt;}
.y80_c00021{bottom:238.301517pt;}
.y7f_c00021{bottom:238.881013pt;}
.y7e_c00021{bottom:240.138673pt;}
.y7d_c00021{bottom:241.084475pt;}
.y7c_c00021{bottom:241.935993pt;}
.y7b_c00021{bottom:242.300444pt;}
.y7a_c00021{bottom:243.302257pt;}
.y79_c00021{bottom:243.825757pt;}
.y78_c00021{bottom:253.758919pt;}
.y77_c00021{bottom:254.260737pt;}
.y76_c00021{bottom:255.502849pt;}
.y75_c00021{bottom:255.832969pt;}
.y74_c00021{bottom:257.347365pt;}
.y73_c00021{bottom:257.855501pt;}
.y72_c00021{bottom:258.949727pt;}
.y71_c00021{bottom:267.920896pt;}
.y70_c00021{bottom:268.292293pt;}
.y6f_c00021{bottom:269.270229pt;}
.y6e_c00021{bottom:270.178213pt;}
.y6d_c00021{bottom:270.543124pt;}
.y6c_c00021{bottom:271.984996pt;}
.y6b_c00021{bottom:273.352255pt;}
.y6a_c00021{bottom:282.581688pt;}
.y69_c00021{bottom:283.962996pt;}
.y68_c00021{bottom:285.107132pt;}
.y67_c00021{bottom:285.326532pt;}
.y66_c00021{bottom:286.511840pt;}
.y65_c00021{bottom:287.014337pt;}
.y64_c00021{bottom:287.994307pt;}
.y63_c00021{bottom:299.035283pt;}
.y62_c00021{bottom:299.942777pt;}
.y61_c00021{bottom:300.807960pt;}
.y60_c00021{bottom:301.602935pt;}
.y5f_c00021{bottom:302.692989pt;}
.y5e_c00021{bottom:302.875749pt;}
.y5d_c00021{bottom:313.981697pt;}
.y5c_c00021{bottom:315.418155pt;}
.y5b_c00021{bottom:316.417888pt;}
.y5a_c00021{bottom:317.074707pt;}
.y59_c00021{bottom:318.482184pt;}
.y58_c00021{bottom:328.321960pt;}
.y57_c00021{bottom:329.698863pt;}
.y56_c00021{bottom:330.058337pt;}
.y55_c00021{bottom:331.002257pt;}
.y54_c00021{bottom:331.613045pt;}
.y53_c00021{bottom:332.907179pt;}
.y52_c00021{bottom:333.230620pt;}
.y51_c00021{bottom:333.845333pt;}
.y50_c00021{bottom:343.474448pt;}
.y4f_c00021{bottom:343.831749pt;}
.y4e_c00021{bottom:344.759528pt;}
.y4d_c00021{bottom:345.142888pt;}
.y4c_c00021{bottom:347.551877pt;}
.y4b_c00021{bottom:348.031208pt;}
.y4a_c00021{bottom:348.472285pt;}
.y49_c00021{bottom:358.235093pt;}
.y48_c00021{bottom:359.438483pt;}
.y47_c00021{bottom:359.898053pt;}
.y46_c00021{bottom:361.315661pt;}
.y45_c00021{bottom:361.843787pt;}
.y44_c00021{bottom:362.596813pt;}
.y43_c00021{bottom:363.226632pt;}
.y42_c00021{bottom:364.076072pt;}
.y41_c00021{bottom:373.215875pt;}
.y40_c00021{bottom:374.612901pt;}
.y3f_c00021{bottom:375.451771pt;}
.y3e_c00021{bottom:377.316896pt;}
.y3d_c00021{bottom:377.861693pt;}
.y3c_c00021{bottom:378.581245pt;}
.y3b_c00021{bottom:378.956243pt;}
.y3a_c00021{bottom:388.377395pt;}
.y39_c00021{bottom:388.689136pt;}
.y38_c00021{bottom:389.903568pt;}
.y37_c00021{bottom:390.717008pt;}
.y36_c00021{bottom:391.044088pt;}
.y35_c00021{bottom:392.226005pt;}
.y34_c00021{bottom:392.799181pt;}
.y33_c00021{bottom:393.836381pt;}
.y32_c00021{bottom:403.625835pt;}
.y31_c00021{bottom:404.720608pt;}
.y30_c00021{bottom:406.149403pt;}
.y2f_c00021{bottom:406.810224pt;}
.y2e_c00021{bottom:407.563493pt;}
.y2d_c00021{bottom:409.196645pt;}
.y2c_c00021{bottom:419.443899pt;}
.y2b_c00021{bottom:420.047259pt;}
.y2a_c00021{bottom:421.530520pt;}
.y29_c00021{bottom:423.656344pt;}
.y28_c00021{bottom:424.318323pt;}
.y27_c00021{bottom:433.027856pt;}
.y26_c00021{bottom:433.432717pt;}
.y25_c00021{bottom:434.829331pt;}
.y24_c00021{bottom:435.208309pt;}
.y23_c00021{bottom:435.454048pt;}
.y22_c00021{bottom:436.503528pt;}
.y21_c00021{bottom:437.569896pt;}
.y20_c00021{bottom:437.808515pt;}
.y1f_c00021{bottom:438.476600pt;}
.y1e_c00021{bottom:449.142227pt;}
.y1d_c00021{bottom:449.931264pt;}
.y1c_c00021{bottom:450.287144pt;}
.y1b_c00021{bottom:451.158181pt;}
.y1a_c00021{bottom:452.043541pt;}
.y19_c00021{bottom:452.371195pt;}
.y18_c00021{bottom:453.598037pt;}
.y17_c00021{bottom:463.728973pt;}
.y16_c00021{bottom:464.525429pt;}
.y15_c00021{bottom:465.994285pt;}
.y14_c00021{bottom:466.672469pt;}
.y13_c00021{bottom:467.920296pt;}
.y12_c00021{bottom:469.095453pt;}
.y11_c00021{bottom:469.680685pt;}
.y10_c00021{bottom:479.235421pt;}
.yf_c00021{bottom:479.834824pt;}
.ye_c00021{bottom:480.087219pt;}
.yd_c00021{bottom:480.478085pt;}
.yc_c00021{bottom:480.781627pt;}
.yb_c00021{bottom:481.356421pt;}
.ya_c00021{bottom:481.952240pt;}
.y9_c00021{bottom:482.299248pt;}
.y8_c00021{bottom:482.882320pt;}
.y7_c00021{bottom:494.907024pt;}
.y6_c00021{bottom:495.270800pt;}
.y5_c00021{bottom:495.811891pt;}
.y4_c00021{bottom:496.026912pt;}
.y3_c00021{bottom:496.910592pt;}
.y2_c00021{bottom:498.002667pt;}
.y1_c00021{bottom:508.560000pt;}
.h18_c00021{height:42.946748pt;}
.h6_c00021{height:52.271789pt;}
.hd_c00021{height:52.280489pt;}
.h4_c00021{height:53.205213pt;}
.hb_c00021{height:53.214070pt;}
.h8_c00021{height:54.138638pt;}
.hc_c00021{height:54.147650pt;}
.h7_c00021{height:55.072063pt;}
.h16_c00021{height:55.083872pt;}
.hf_c00021{height:56.014810pt;}
.h5_c00021{height:56.938913pt;}
.h14_c00021{height:56.951122pt;}
.h12_c00021{height:57.881970pt;}
.h17_c00021{height:57.884747pt;}
.ha_c00021{height:58.805762pt;}
.h11_c00021{height:60.682711pt;}
.h13_c00021{height:60.685622pt;}
.h9_c00021{height:61.606037pt;}
.h10_c00021{height:61.616291pt;}
.h15_c00021{height:61.619247pt;}
.h3_c00021{height:62.539461pt;}
.he_c00021{height:62.549871pt;}
.h2_c00021{height:66.266667pt;}
.h0_c00021{height:547.200000pt;}
.h1_c00021{height:547.333333pt;}
.w0_c00021{width:326.400000pt;}
.w1_c00021{width:326.666667pt;}
.x0_c00021{left:0.000000pt;}
.x7c_c00021{left:30.289200pt;}
.x76_c00021{left:31.581833pt;}
.x71_c00021{left:32.657500pt;}
.x69_c00021{left:34.351500pt;}
.x64_c00021{left:35.246304pt;}
.x5c_c00021{left:36.484957pt;}
.x50_c00021{left:37.923364pt;}
.x42_c00021{left:39.109431pt;}
.x31_c00021{left:40.320955pt;}
.x27_c00021{left:41.287093pt;}
.xf_c00021{left:42.607296pt;}
.x2_c00021{left:44.005333pt;}
.x3c_c00021{left:46.808000pt;}
.x47_c00021{left:50.688593pt;}
.x6c_c00021{left:55.184000pt;}
.x32_c00021{left:56.628235pt;}
.x7d_c00021{left:57.664500pt;}
.x57_c00021{left:59.011729pt;}
.x38_c00021{left:61.204181pt;}
.x61_c00021{left:63.093509pt;}
.x10_c00021{left:68.025419pt;}
.x77_c00021{left:69.925633pt;}
.x24_c00021{left:71.040653pt;}
.x72_c00021{left:71.953867pt;}
.x3d_c00021{left:73.534667pt;}
.x66_c00021{left:74.488633pt;}
.x1c_c00021{left:75.703659pt;}
.x8_c00021{left:77.560104pt;}
.x5d_c00021{left:81.210721pt;}
.x39_c00021{left:84.011275pt;}
.x4a_c00021{left:85.070353pt;}
.x1d_c00021{left:87.603984pt;}
.x74_c00021{left:95.522500pt;}
.x9_c00021{left:97.964579pt;}
.x6e_c00021{left:98.891933pt;}
.x43_c00021{left:100.304097pt;}
.x67_c00021{left:102.738833pt;}
.x34_c00021{left:104.635237pt;}
.x55_c00021{left:105.629911pt;}
.x16_c00021{left:107.627085pt;}
.x4b_c00021{left:109.006124pt;}
.x28_c00021{left:112.312819pt;}
.x2b_c00021{left:114.490563pt;}
.x58_c00021{left:115.978441pt;}
.x11_c00021{left:119.101645pt;}
.x3_c00021{left:122.010667pt;}
.x17_c00021{left:124.839205pt;}
.x6a_c00021{left:125.810533pt;}
.x62_c00021{left:127.650704pt;}
.x44_c00021{left:128.861431pt;}
.xa_c00021{left:132.997771pt;}
.x35_c00021{left:137.371112pt;}
.x1e_c00021{left:140.911504pt;}
.x6d_c00021{left:142.018167pt;}
.x3e_c00021{left:143.864000pt;}
.x29_c00021{left:145.066027pt;}
.x63_c00021{left:146.171608pt;}
.x59_c00021{left:151.434947pt;}
.x79_c00021{left:155.494533pt;}
.x36_c00021{left:160.329552pt;}
.x48_c00021{left:161.589229pt;}
.x1_c00021{left:163.680000pt;}
.x4c_c00021{left:165.471397pt;}
.xb_c00021{left:166.815019pt;}
.x2c_c00021{left:168.240552pt;}
.x3f_c00021{left:170.420000pt;}
.x18_c00021{left:171.409272pt;}
.x45_c00021{left:172.328097pt;}
.x12_c00021{left:173.368147pt;}
.x78_c00021{left:174.929767pt;}
.x4d_c00021{left:175.938555pt;}
.x7a_c00021{left:177.130000pt;}
.x6f_c00021{left:181.021467pt;}
.x51_c00021{left:182.189343pt;}
.x2d_c00021{left:183.125557pt;}
.x4_c00021{left:185.130667pt;}
.x5e_c00021{left:187.645585pt;}
.x5a_c00021{left:190.816693pt;}
.x1f_c00021{left:193.393765pt;}
.x3a_c00021{left:198.737371pt;}
.x5_c00021{left:200.489333pt;}
.x13_c00021{left:202.853765pt;}
.x20_c00021{left:205.707405pt;}
.xc_c00021{left:207.651968pt;}
.x6b_c00021{left:210.096500pt;}
.x40_c00021{left:211.460000pt;}
.x49_c00021{left:212.488252pt;}
.x19_c00021{left:217.242061pt;}
.x75_c00021{left:218.668233pt;}
.x2e_c00021{left:220.081413pt;}
.xd_c00021{left:222.536685pt;}
.x52_c00021{left:223.464960pt;}
.x21_c00021{left:224.680485pt;}
.x25_c00021{left:227.955552pt;}
.x33_c00021{left:229.202507pt;}
.x4e_c00021{left:230.439736pt;}
.x5f_c00021{left:232.059561pt;}
.x46_c00021{left:234.782764pt;}
.x1a_c00021{left:235.994088pt;}
.x6_c00021{left:239.138667pt;}
.x37_c00021{left:241.927267pt;}
.x5b_c00021{left:243.235497pt;}
.x70_c00021{left:246.333333pt;}
.x65_c00021{left:248.418667pt;}
.x60_c00021{left:253.178580pt;}
.x26_c00021{left:254.192248pt;}
.x56_c00021{left:255.153143pt;}
.xe_c00021{left:257.825877pt;}
.x3b_c00021{left:261.145915pt;}
.x7_c00021{left:265.122667pt;}
.x14_c00021{left:266.716387pt;}
.x53_c00021{left:267.897972pt;}
.x7b_c00021{left:270.115700pt;}
.x2f_c00021{left:275.296568pt;}
.x1b_c00021{left:277.493843pt;}
.x73_c00021{left:280.700600pt;}
.x2a_c00021{left:283.552592pt;}
.x54_c00021{left:284.799704pt;}
.x41_c00021{left:286.954667pt;}
.x30_c00021{left:289.466981pt;}
.x22_c00021{left:294.527957pt;}
.x4f_c00021{left:296.238772pt;}
.x15_c00021{left:301.316019pt;}
.x68_c00021{left:304.681400pt;}
.x23_c00021{left:314.778259pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00022 {
    display:none;
  }
  .loading-indicator_c00022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00022 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00022 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00022" -> "#page-container .classname_c00022")
 */
.pf_c00022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00022 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00022 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00022 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00022 {overflow:visible;}
  }
}
.c_c00022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00022 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00022:after { /* webkit #35443 */
  content: '';
}
.t_c00022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00022 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00022 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00022 { /* info for Javascript */
  display:none;
}
.l_c00022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00022:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00022 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00022.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00022{transform:matrix(0.016254,0.000602,-0.009253,0.249829,0,0);-ms-transform:matrix(0.016254,0.000602,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.016254,0.000602,-0.009253,0.249829,0,0);}
.m25_c00022{transform:matrix(0.071791,0.002659,-0.009253,0.249829,0,0);-ms-transform:matrix(0.071791,0.002659,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.071791,0.002659,-0.009253,0.249829,0,0);}
.m27_c00022{transform:matrix(0.082633,0.003060,-0.009253,0.249829,0,0);-ms-transform:matrix(0.082633,0.003060,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.082633,0.003060,-0.009253,0.249829,0,0);}
.m8c_c00022{transform:matrix(0.095320,0.003530,-0.009253,0.249829,0,0);-ms-transform:matrix(0.095320,0.003530,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.095320,0.003530,-0.009253,0.249829,0,0);}
.m15_c00022{transform:matrix(0.110344,0.004087,-0.009253,0.249829,0,0);-ms-transform:matrix(0.110344,0.004087,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.110344,0.004087,-0.009253,0.249829,0,0);}
.mb7_c00022{transform:matrix(0.117754,0.004361,-0.009253,0.249829,0,0);-ms-transform:matrix(0.117754,0.004361,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.117754,0.004361,-0.009253,0.249829,0,0);}
.m31_c00022{transform:matrix(0.123400,0.004570,-0.009253,0.249829,0,0);-ms-transform:matrix(0.123400,0.004570,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.123400,0.004570,-0.009253,0.249829,0,0);}
.m67_c00022{transform:matrix(0.131165,0.004858,-0.009253,0.249829,0,0);-ms-transform:matrix(0.131165,0.004858,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.131165,0.004858,-0.009253,0.249829,0,0);}
.mb_c00022{transform:matrix(0.135872,0.005032,-0.009253,0.249829,0,0);-ms-transform:matrix(0.135872,0.005032,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.135872,0.005032,-0.009253,0.249829,0,0);}
.md_c00022{transform:matrix(0.138135,0.005116,-0.009253,0.249829,0,0);-ms-transform:matrix(0.138135,0.005116,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.138135,0.005116,-0.009253,0.249829,0,0);}
.m94_c00022{transform:matrix(0.140339,0.005198,-0.009253,0.249829,0,0);-ms-transform:matrix(0.140339,0.005198,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.140339,0.005198,-0.009253,0.249829,0,0);}
.m8a_c00022{transform:matrix(0.143876,0.005329,-0.009253,0.249829,0,0);-ms-transform:matrix(0.143876,0.005329,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.143876,0.005329,-0.009253,0.249829,0,0);}
.m46_c00022{transform:matrix(0.144071,0.005336,-0.009253,0.249829,0,0);-ms-transform:matrix(0.144071,0.005336,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.144071,0.005336,-0.009253,0.249829,0,0);}
.me1_c00022{transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.149647,0.005542,-0.009253,0.249829,0,0);-ms-transform:matrix(0.149647,0.005542,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.149647,0.005542,-0.009253,0.249829,0,0);}
.mdb_c00022{transform:matrix(0.152715,0.005656,-0.009253,0.249829,0,0);-ms-transform:matrix(0.152715,0.005656,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.152715,0.005656,-0.009253,0.249829,0,0);}
.m47_c00022{transform:matrix(0.153640,0.005690,-0.009253,0.249829,0,0);-ms-transform:matrix(0.153640,0.005690,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.153640,0.005690,-0.009253,0.249829,0,0);}
.ma8_c00022{transform:matrix(0.155109,0.005745,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155109,0.005745,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155109,0.005745,-0.009253,0.249829,0,0);}
.ma1_c00022{transform:matrix(0.158871,0.005884,-0.009253,0.249829,0,0);-ms-transform:matrix(0.158871,0.005884,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.158871,0.005884,-0.009253,0.249829,0,0);}
.m1f_c00022{transform:matrix(0.160005,0.005926,-0.009253,0.249829,0,0);-ms-transform:matrix(0.160005,0.005926,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.160005,0.005926,-0.009253,0.249829,0,0);}
.m4e_c00022{transform:matrix(0.160195,0.005933,-0.009253,0.249829,0,0);-ms-transform:matrix(0.160195,0.005933,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.160195,0.005933,-0.009253,0.249829,0,0);}
.m7b_c00022{transform:matrix(0.161759,0.005991,-0.009253,0.249829,0,0);-ms-transform:matrix(0.161759,0.005991,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.161759,0.005991,-0.009253,0.249829,0,0);}
.ma4_c00022{transform:matrix(0.161904,0.005996,-0.009253,0.249829,0,0);-ms-transform:matrix(0.161904,0.005996,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.161904,0.005996,-0.009253,0.249829,0,0);}
.m4b_c00022{transform:matrix(0.162289,0.006011,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162289,0.006011,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162289,0.006011,-0.009253,0.249829,0,0);}
.m68_c00022{transform:matrix(0.162663,0.006025,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162663,0.006025,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162663,0.006025,-0.009253,0.249829,0,0);}
.m6a_c00022{transform:matrix(0.163423,0.006053,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163423,0.006053,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163423,0.006053,-0.009253,0.249829,0,0);}
.m75_c00022{transform:matrix(0.163583,0.006059,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163583,0.006059,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163583,0.006059,-0.009253,0.249829,0,0);}
.m6e_c00022{transform:matrix(0.164747,0.006102,-0.009253,0.249829,0,0);-ms-transform:matrix(0.164747,0.006102,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.164747,0.006102,-0.009253,0.249829,0,0);}
.m32_c00022{transform:matrix(0.165017,0.006112,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165017,0.006112,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165017,0.006112,-0.009253,0.249829,0,0);}
.m1c_c00022{transform:matrix(0.165202,0.006119,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165202,0.006119,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165202,0.006119,-0.009253,0.249829,0,0);}
.md7_c00022{transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);}
.m95_c00022{transform:matrix(0.165916,0.006145,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165916,0.006145,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165916,0.006145,-0.009253,0.249829,0,0);}
.mc8_c00022{transform:matrix(0.166261,0.006158,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166261,0.006158,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166261,0.006158,-0.009253,0.249829,0,0);}
.m37_c00022{transform:matrix(0.166496,0.006167,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166496,0.006167,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166496,0.006167,-0.009253,0.249829,0,0);}
.m6c_c00022{transform:matrix(0.168100,0.006226,-0.009253,0.249829,0,0);-ms-transform:matrix(0.168100,0.006226,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.168100,0.006226,-0.009253,0.249829,0,0);}
.m50_c00022{transform:matrix(0.169069,0.006262,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169069,0.006262,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169069,0.006262,-0.009253,0.249829,0,0);}
.ma0_c00022{transform:matrix(0.169544,0.006279,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169544,0.006279,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169544,0.006279,-0.009253,0.249829,0,0);}
.m69_c00022{transform:matrix(0.169938,0.006294,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169938,0.006294,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169938,0.006294,-0.009253,0.249829,0,0);}
.m55_c00022{transform:matrix(0.169993,0.006296,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169993,0.006296,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169993,0.006296,-0.009253,0.249829,0,0);}
.mae_c00022{transform:matrix(0.170063,0.006299,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170063,0.006299,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170063,0.006299,-0.009253,0.249829,0,0);}
.m39_c00022{transform:matrix(0.170518,0.006315,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170518,0.006315,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170518,0.006315,-0.009253,0.249829,0,0);}
.m76_c00022{transform:matrix(0.171303,0.006345,-0.009253,0.249829,0,0);-ms-transform:matrix(0.171303,0.006345,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.171303,0.006345,-0.009253,0.249829,0,0);}
.m54_c00022{transform:matrix(0.171627,0.006357,-0.009253,0.249829,0,0);-ms-transform:matrix(0.171627,0.006357,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.171627,0.006357,-0.009253,0.249829,0,0);}
.mc_c00022{transform:matrix(0.171907,0.006367,-0.009253,0.249829,0,0);-ms-transform:matrix(0.171907,0.006367,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.171907,0.006367,-0.009253,0.249829,0,0);}
.m38_c00022{transform:matrix(0.172846,0.006402,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172846,0.006402,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172846,0.006402,-0.009253,0.249829,0,0);}
.m45_c00022{transform:matrix(0.173411,0.006423,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173411,0.006423,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173411,0.006423,-0.009253,0.249829,0,0);}
.m30_c00022{transform:matrix(0.173856,0.006439,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173856,0.006439,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173856,0.006439,-0.009253,0.249829,0,0);}
.m26_c00022{transform:matrix(0.174705,0.006471,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174705,0.006471,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174705,0.006471,-0.009253,0.249829,0,0);}
.mc5_c00022{transform:matrix(0.174830,0.006475,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174830,0.006475,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174830,0.006475,-0.009253,0.249829,0,0);}
.m1d_c00022{transform:matrix(0.174905,0.006478,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174905,0.006478,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174905,0.006478,-0.009253,0.249829,0,0);}
.m77_c00022{transform:matrix(0.175060,0.006484,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175060,0.006484,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175060,0.006484,-0.009253,0.249829,0,0);}
.me0_c00022{transform:matrix(0.175315,0.006493,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175315,0.006493,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175315,0.006493,-0.009253,0.249829,0,0);}
.m59_c00022{transform:matrix(0.176309,0.006530,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176309,0.006530,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176309,0.006530,-0.009253,0.249829,0,0);}
.mc1_c00022{transform:matrix(0.176749,0.006546,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176749,0.006546,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176749,0.006546,-0.009253,0.249829,0,0);}
.mc7_c00022{transform:matrix(0.177423,0.006571,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177423,0.006571,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177423,0.006571,-0.009253,0.249829,0,0);}
.m66_c00022{transform:matrix(0.177693,0.006581,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177693,0.006581,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177693,0.006581,-0.009253,0.249829,0,0);}
.m49_c00022{transform:matrix(0.178083,0.006596,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178083,0.006596,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178083,0.006596,-0.009253,0.249829,0,0);}
.m41_c00022{transform:matrix(0.178568,0.006614,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178568,0.006614,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178568,0.006614,-0.009253,0.249829,0,0);}
.maf_c00022{transform:matrix(0.179497,0.006648,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179497,0.006648,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179497,0.006648,-0.009253,0.249829,0,0);}
.mdf_c00022{transform:matrix(0.180481,0.006684,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180481,0.006684,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180481,0.006684,-0.009253,0.249829,0,0);}
.m3b_c00022{transform:matrix(0.180801,0.006696,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180801,0.006696,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180801,0.006696,-0.009253,0.249829,0,0);}
.m8e_c00022{transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);}
.m33_c00022{transform:matrix(0.181126,0.006708,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181126,0.006708,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181126,0.006708,-0.009253,0.249829,0,0);}
.mb2_c00022{transform:matrix(0.181176,0.006710,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181176,0.006710,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181176,0.006710,-0.009253,0.249829,0,0);}
.m7c_c00022{transform:matrix(0.181506,0.006722,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181506,0.006722,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181506,0.006722,-0.009253,0.249829,0,0);}
.m92_c00022{transform:matrix(0.181695,0.006729,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181695,0.006729,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181695,0.006729,-0.009253,0.249829,0,0);}
.m5b_c00022{transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);}
.m7_c00022{transform:matrix(0.182735,0.006768,-0.009253,0.249829,0,0);-ms-transform:matrix(0.182735,0.006768,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.182735,0.006768,-0.009253,0.249829,0,0);}
.mda_c00022{transform:matrix(0.183224,0.006786,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183224,0.006786,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183224,0.006786,-0.009253,0.249829,0,0);}
.ma9_c00022{transform:matrix(0.183284,0.006788,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183284,0.006788,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183284,0.006788,-0.009253,0.249829,0,0);}
.me_c00022{transform:matrix(0.183564,0.006799,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183564,0.006799,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183564,0.006799,-0.009253,0.249829,0,0);}
.m53_c00022{transform:matrix(0.183619,0.006801,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183619,0.006801,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183619,0.006801,-0.009253,0.249829,0,0);}
.mcf_c00022{transform:matrix(0.183979,0.006814,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183979,0.006814,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183979,0.006814,-0.009253,0.249829,0,0);}
.mdd_c00022{transform:matrix(0.184778,0.006844,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184778,0.006844,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184778,0.006844,-0.009253,0.249829,0,0);}
.m6f_c00022{transform:matrix(0.185153,0.006858,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185153,0.006858,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185153,0.006858,-0.009253,0.249829,0,0);}
.ma2_c00022{transform:matrix(0.185928,0.006886,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185928,0.006886,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185928,0.006886,-0.009253,0.249829,0,0);}
.m4c_c00022{transform:matrix(0.186232,0.006897,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186232,0.006897,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186232,0.006897,-0.009253,0.249829,0,0);}
.m2f_c00022{transform:matrix(0.186362,0.006902,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186362,0.006902,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186362,0.006902,-0.009253,0.249829,0,0);}
.m78_c00022{transform:matrix(0.186397,0.006904,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186397,0.006904,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186397,0.006904,-0.009253,0.249829,0,0);}
.m7a_c00022{transform:matrix(0.186512,0.006908,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186512,0.006908,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186512,0.006908,-0.009253,0.249829,0,0);}
.m6b_c00022{transform:matrix(0.187177,0.006932,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187177,0.006932,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187177,0.006932,-0.009253,0.249829,0,0);}
.mcc_c00022{transform:matrix(0.187786,0.006955,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187786,0.006955,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187786,0.006955,-0.009253,0.249829,0,0);}
.m36_c00022{transform:matrix(0.187951,0.006961,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187951,0.006961,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187951,0.006961,-0.009253,0.249829,0,0);}
.m23_c00022{transform:matrix(0.187981,0.006962,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187981,0.006962,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187981,0.006962,-0.009253,0.249829,0,0);}
.m84_c00022{transform:matrix(0.188816,0.006993,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188816,0.006993,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188816,0.006993,-0.009253,0.249829,0,0);}
.maa_c00022{transform:matrix(0.188910,0.006997,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188910,0.006997,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188910,0.006997,-0.009253,0.249829,0,0);}
.mc9_c00022{transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189535,0.007020,-0.009253,0.249829,0,0);}
.m85_c00022{transform:matrix(0.189625,0.007023,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189625,0.007023,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189625,0.007023,-0.009253,0.249829,0,0);}
.m48_c00022{transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);}
.m56_c00022{transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);}
.m1b_c00022{transform:matrix(0.190100,0.007041,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190100,0.007041,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190100,0.007041,-0.009253,0.249829,0,0);}
.m86_c00022{transform:matrix(0.190469,0.007054,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190469,0.007054,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190469,0.007054,-0.009253,0.249829,0,0);}
.m62_c00022{transform:matrix(0.191659,0.007098,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191659,0.007098,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191659,0.007098,-0.009253,0.249829,0,0);}
.m64_c00022{transform:matrix(0.191813,0.007104,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191813,0.007104,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191813,0.007104,-0.009253,0.249829,0,0);}
.m51_c00022{transform:matrix(0.192188,0.007118,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192188,0.007118,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192188,0.007118,-0.009253,0.249829,0,0);}
.mde_c00022{transform:matrix(0.192493,0.007129,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192493,0.007129,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192493,0.007129,-0.009253,0.249829,0,0);}
.m57_c00022{transform:matrix(0.192893,0.007144,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192893,0.007144,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192893,0.007144,-0.009253,0.249829,0,0);}
.mcd_c00022{transform:matrix(0.193228,0.007157,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193228,0.007157,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193228,0.007157,-0.009253,0.249829,0,0);}
.m3f_c00022{transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);}
.m2_c00022{transform:matrix(0.194287,0.007196,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194287,0.007196,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194287,0.007196,-0.009253,0.249829,0,0);}
.m7e_c00022{transform:matrix(0.194387,0.007200,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194387,0.007200,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194387,0.007200,-0.009253,0.249829,0,0);}
.ma_c00022{transform:matrix(0.194492,0.007203,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194492,0.007203,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194492,0.007203,-0.009253,0.249829,0,0);}
.mb0_c00022{transform:matrix(0.194557,0.007206,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194557,0.007206,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194557,0.007206,-0.009253,0.249829,0,0);}
.m13_c00022{transform:matrix(0.194841,0.007216,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194841,0.007216,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194841,0.007216,-0.009253,0.249829,0,0);}
.m79_c00022{transform:matrix(0.194966,0.007221,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194966,0.007221,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194966,0.007221,-0.009253,0.249829,0,0);}
.mb8_c00022{transform:matrix(0.195356,0.007235,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195356,0.007235,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195356,0.007235,-0.009253,0.249829,0,0);}
.m8f_c00022{transform:matrix(0.195431,0.007238,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195431,0.007238,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195431,0.007238,-0.009253,0.249829,0,0);}
.m14_c00022{transform:matrix(0.195436,0.007238,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195436,0.007238,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195436,0.007238,-0.009253,0.249829,0,0);}
.m70_c00022{transform:matrix(0.195731,0.007249,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195731,0.007249,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195731,0.007249,-0.009253,0.249829,0,0);}
.m18_c00022{transform:matrix(0.195986,0.007259,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195986,0.007259,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195986,0.007259,-0.009253,0.249829,0,0);}
.m2e_c00022{transform:matrix(0.196630,0.007283,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196630,0.007283,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196630,0.007283,-0.009253,0.249829,0,0);}
.m42_c00022{transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);}
.m3c_c00022{transform:matrix(0.196845,0.007291,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196845,0.007291,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196845,0.007291,-0.009253,0.249829,0,0);}
.mb5_c00022{transform:matrix(0.197480,0.007314,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197480,0.007314,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197480,0.007314,-0.009253,0.249829,0,0);}
.m87_c00022{transform:matrix(0.197610,0.007319,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197610,0.007319,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197610,0.007319,-0.009253,0.249829,0,0);}
.md5_c00022{transform:matrix(0.197839,0.007327,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197839,0.007327,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197839,0.007327,-0.009253,0.249829,0,0);}
.mcb_c00022{transform:matrix(0.198469,0.007351,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198469,0.007351,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198469,0.007351,-0.009253,0.249829,0,0);}
.m12_c00022{transform:matrix(0.198554,0.007354,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198554,0.007354,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198554,0.007354,-0.009253,0.249829,0,0);}
.m1_c00022{transform:matrix(0.198564,0.007354,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198564,0.007354,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198564,0.007354,-0.009253,0.249829,0,0);}
.mb3_c00022{transform:matrix(0.198694,0.007359,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198694,0.007359,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198694,0.007359,-0.009253,0.249829,0,0);}
.m7d_c00022{transform:matrix(0.198829,0.007364,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198829,0.007364,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198829,0.007364,-0.009253,0.249829,0,0);}
.m74_c00022{transform:matrix(0.198914,0.007367,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198914,0.007367,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198914,0.007367,-0.009253,0.249829,0,0);}
.m89_c00022{transform:matrix(0.198939,0.007368,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198939,0.007368,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198939,0.007368,-0.009253,0.249829,0,0);}
.m1e_c00022{transform:matrix(0.199079,0.007373,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199079,0.007373,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199079,0.007373,-0.009253,0.249829,0,0);}
.ma6_c00022{transform:matrix(0.199103,0.007374,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199103,0.007374,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199103,0.007374,-0.009253,0.249829,0,0);}
.m96_c00022{transform:matrix(0.199313,0.007382,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199313,0.007382,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199313,0.007382,-0.009253,0.249829,0,0);}
.m63_c00022{transform:matrix(0.199823,0.007401,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199823,0.007401,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199823,0.007401,-0.009253,0.249829,0,0);}
.m9_c00022{transform:matrix(0.199828,0.007401,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199828,0.007401,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199828,0.007401,-0.009253,0.249829,0,0);}
.mc3_c00022{transform:matrix(0.200812,0.007437,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200812,0.007437,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200812,0.007437,-0.009253,0.249829,0,0);}
.mad_c00022{transform:matrix(0.201152,0.007450,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201152,0.007450,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201152,0.007450,-0.009253,0.249829,0,0);}
.mb1_c00022{transform:matrix(0.201667,0.007469,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201667,0.007469,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201667,0.007469,-0.009253,0.249829,0,0);}
.m1a_c00022{transform:matrix(0.201842,0.007476,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201842,0.007476,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201842,0.007476,-0.009253,0.249829,0,0);}
.m11_c00022{transform:matrix(0.202056,0.007484,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202056,0.007484,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202056,0.007484,-0.009253,0.249829,0,0);}
.ma7_c00022{transform:matrix(0.202121,0.007486,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202121,0.007486,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202121,0.007486,-0.009253,0.249829,0,0);}
.m17_c00022{transform:matrix(0.202441,0.007498,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202441,0.007498,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202441,0.007498,-0.009253,0.249829,0,0);}
.m52_c00022{transform:matrix(0.203096,0.007522,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203096,0.007522,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203096,0.007522,-0.009253,0.249829,0,0);}
.mab_c00022{transform:matrix(0.203141,0.007524,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203141,0.007524,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203141,0.007524,-0.009253,0.249829,0,0);}
.m60_c00022{transform:matrix(0.204310,0.007567,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204310,0.007567,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204310,0.007567,-0.009253,0.249829,0,0);}
.m6d_c00022{transform:matrix(0.204320,0.007567,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204320,0.007567,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204320,0.007567,-0.009253,0.249829,0,0);}
.ma5_c00022{transform:matrix(0.205119,0.007597,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205119,0.007597,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205119,0.007597,-0.009253,0.249829,0,0);}
.mca_c00022{transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);}
.m93_c00022{transform:matrix(0.205684,0.007618,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205684,0.007618,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205684,0.007618,-0.009253,0.249829,0,0);}
.m88_c00022{transform:matrix(0.207443,0.007683,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207443,0.007683,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207443,0.007683,-0.009253,0.249829,0,0);}
.mac_c00022{transform:matrix(0.207518,0.007686,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207518,0.007686,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207518,0.007686,-0.009253,0.249829,0,0);}
.m5c_c00022{transform:matrix(0.207623,0.007690,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207623,0.007690,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207623,0.007690,-0.009253,0.249829,0,0);}
.md0_c00022{transform:matrix(0.207758,0.007695,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207758,0.007695,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207758,0.007695,-0.009253,0.249829,0,0);}
.mb6_c00022{transform:matrix(0.208367,0.007717,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208367,0.007717,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208367,0.007717,-0.009253,0.249829,0,0);}
.m7f_c00022{transform:matrix(0.208617,0.007727,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208617,0.007727,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208617,0.007727,-0.009253,0.249829,0,0);}
.m73_c00022{transform:matrix(0.208847,0.007735,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208847,0.007735,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208847,0.007735,-0.009253,0.249829,0,0);}
.m72_c00022{transform:matrix(0.208902,0.007737,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208902,0.007737,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208902,0.007737,-0.009253,0.249829,0,0);}
.m6_c00022{transform:matrix(0.208952,0.007739,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208952,0.007739,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208952,0.007739,-0.009253,0.249829,0,0);}
.m98_c00022{transform:matrix(0.209202,0.007748,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209202,0.007748,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209202,0.007748,-0.009253,0.249829,0,0);}
.m65_c00022{transform:matrix(0.209521,0.007760,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209521,0.007760,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209521,0.007760,-0.009253,0.249829,0,0);}
.m2d_c00022{transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);}
.m3d_c00022{transform:matrix(0.209596,0.007763,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209596,0.007763,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209596,0.007763,-0.009253,0.249829,0,0);}
.mdc_c00022{transform:matrix(0.209706,0.007767,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209706,0.007767,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209706,0.007767,-0.009253,0.249829,0,0);}
.m58_c00022{transform:matrix(0.209936,0.007775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209936,0.007775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209936,0.007775,-0.009253,0.249829,0,0);}
.m71_c00022{transform:matrix(0.210646,0.007802,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210646,0.007802,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210646,0.007802,-0.009253,0.249829,0,0);}
.m5e_c00022{transform:matrix(0.210686,0.007803,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210686,0.007803,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210686,0.007803,-0.009253,0.249829,0,0);}
.m3_c00022{transform:matrix(0.211020,0.007816,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211020,0.007816,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211020,0.007816,-0.009253,0.249829,0,0);}
.m99_c00022{transform:matrix(0.212165,0.007858,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212165,0.007858,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212165,0.007858,-0.009253,0.249829,0,0);}
.ma3_c00022{transform:matrix(0.212319,0.007864,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212319,0.007864,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212319,0.007864,-0.009253,0.249829,0,0);}
.m3a_c00022{transform:matrix(0.212984,0.007888,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212984,0.007888,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212984,0.007888,-0.009253,0.249829,0,0);}
.mc4_c00022{transform:matrix(0.213334,0.007901,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213334,0.007901,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213334,0.007901,-0.009253,0.249829,0,0);}
.mf_c00022{transform:matrix(0.213639,0.007913,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213639,0.007913,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213639,0.007913,-0.009253,0.249829,0,0);}
.md4_c00022{transform:matrix(0.213753,0.007917,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213753,0.007917,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213753,0.007917,-0.009253,0.249829,0,0);}
.m16_c00022{transform:matrix(0.213868,0.007921,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213868,0.007921,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213868,0.007921,-0.009253,0.249829,0,0);}
.m40_c00022{transform:matrix(0.214653,0.007950,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214653,0.007950,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214653,0.007950,-0.009253,0.249829,0,0);}
.m4a_c00022{transform:matrix(0.214738,0.007953,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214738,0.007953,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214738,0.007953,-0.009253,0.249829,0,0);}
.md6_c00022{transform:matrix(0.214833,0.007957,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214833,0.007957,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214833,0.007957,-0.009253,0.249829,0,0);}
.m5a_c00022{transform:matrix(0.215137,0.007968,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215137,0.007968,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215137,0.007968,-0.009253,0.249829,0,0);}
.md9_c00022{transform:matrix(0.215337,0.007975,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215337,0.007975,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215337,0.007975,-0.009253,0.249829,0,0);}
.m9d_c00022{transform:matrix(0.215802,0.007993,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215802,0.007993,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215802,0.007993,-0.009253,0.249829,0,0);}
.m83_c00022{transform:matrix(0.215937,0.007998,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215937,0.007998,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215937,0.007998,-0.009253,0.249829,0,0);}
.mce_c00022{transform:matrix(0.217201,0.008044,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217201,0.008044,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217201,0.008044,-0.009253,0.249829,0,0);}
.m9a_c00022{transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);}
.m24_c00022{transform:matrix(0.217676,0.008062,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217676,0.008062,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217676,0.008062,-0.009253,0.249829,0,0);}
.mc2_c00022{transform:matrix(0.218590,0.008096,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218590,0.008096,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218590,0.008096,-0.009253,0.249829,0,0);}
.m9b_c00022{transform:matrix(0.218615,0.008097,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218615,0.008097,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218615,0.008097,-0.009253,0.249829,0,0);}
.md8_c00022{transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);}
.m8b_c00022{transform:matrix(0.218950,0.008109,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218950,0.008109,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218950,0.008109,-0.009253,0.249829,0,0);}
.m91_c00022{transform:matrix(0.219440,0.008127,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219440,0.008127,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219440,0.008127,-0.009253,0.249829,0,0);}
.m5d_c00022{transform:matrix(0.220474,0.008166,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220474,0.008166,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220474,0.008166,-0.009253,0.249829,0,0);}
.m2b_c00022{transform:matrix(0.220734,0.008175,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220734,0.008175,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220734,0.008175,-0.009253,0.249829,0,0);}
.mb9_c00022{transform:matrix(0.220774,0.008177,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220774,0.008177,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220774,0.008177,-0.009253,0.249829,0,0);}
.m0_c00022{transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);}
.m4f_c00022{transform:matrix(0.222727,0.008249,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222727,0.008249,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222727,0.008249,-0.009253,0.249829,0,0);}
.m82_c00022{transform:matrix(0.222802,0.008252,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222802,0.008252,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222802,0.008252,-0.009253,0.249829,0,0);}
.md1_c00022{transform:matrix(0.222972,0.008258,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222972,0.008258,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222972,0.008258,-0.009253,0.249829,0,0);}
.m9e_c00022{transform:matrix(0.223477,0.008277,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223477,0.008277,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223477,0.008277,-0.009253,0.249829,0,0);}
.m8d_c00022{transform:matrix(0.226000,0.008370,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226000,0.008370,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226000,0.008370,-0.009253,0.249829,0,0);}
.m10_c00022{transform:matrix(0.226010,0.008371,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226010,0.008371,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226010,0.008371,-0.009253,0.249829,0,0);}
.m97_c00022{transform:matrix(0.228633,0.008468,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228633,0.008468,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228633,0.008468,-0.009253,0.249829,0,0);}
.mc6_c00022{transform:matrix(0.228883,0.008477,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228883,0.008477,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228883,0.008477,-0.009253,0.249829,0,0);}
.mb4_c00022{transform:matrix(0.230652,0.008543,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230652,0.008543,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230652,0.008543,-0.009253,0.249829,0,0);}
.m43_c00022{transform:matrix(0.232286,0.008603,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232286,0.008603,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232286,0.008603,-0.009253,0.249829,0,0);}
.m2a_c00022{transform:matrix(0.233635,0.008653,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233635,0.008653,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233635,0.008653,-0.009253,0.249829,0,0);}
.m9f_c00022{transform:matrix(0.234834,0.008698,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234834,0.008698,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234834,0.008698,-0.009253,0.249829,0,0);}
.m44_c00022{transform:matrix(0.236913,0.008775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236913,0.008775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236913,0.008775,-0.009253,0.249829,0,0);}
.m20_c00022{transform:matrix(0.237952,0.008813,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237952,0.008813,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237952,0.008813,-0.009253,0.249829,0,0);}
.md3_c00022{transform:matrix(0.238821,0.008845,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238821,0.008845,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238821,0.008845,-0.009253,0.249829,0,0);}
.m61_c00022{transform:matrix(0.238906,0.008848,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238906,0.008848,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238906,0.008848,-0.009253,0.249829,0,0);}
.m8_c00022{transform:matrix(0.239561,0.008873,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239561,0.008873,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239561,0.008873,-0.009253,0.249829,0,0);}
.mbf_c00022{transform:matrix(0.240760,0.008917,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240760,0.008917,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240760,0.008917,-0.009253,0.249829,0,0);}
.m2c_c00022{transform:matrix(0.243628,0.009023,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243628,0.009023,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243628,0.009023,-0.009253,0.249829,0,0);}
.m35_c00022{transform:matrix(0.244248,0.009046,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244248,0.009046,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244248,0.009046,-0.009253,0.249829,0,0);}
.m81_c00022{transform:matrix(0.248704,0.009211,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248704,0.009211,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248704,0.009211,-0.009253,0.249829,0,0);}
.m4d_c00022{transform:matrix(0.252262,0.009343,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252262,0.009343,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252262,0.009343,-0.009253,0.249829,0,0);}
.mbd_c00022{transform:matrix(0.252792,0.009363,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252792,0.009363,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252792,0.009363,-0.009253,0.249829,0,0);}
.mbe_c00022{transform:matrix(0.252817,0.009364,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252817,0.009364,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252817,0.009364,-0.009253,0.249829,0,0);}
.mbb_c00022{transform:matrix(0.253201,0.009378,-0.009253,0.249829,0,0);-ms-transform:matrix(0.253201,0.009378,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.253201,0.009378,-0.009253,0.249829,0,0);}
.m5f_c00022{transform:matrix(0.254406,0.009422,-0.009253,0.249829,0,0);-ms-transform:matrix(0.254406,0.009422,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.254406,0.009422,-0.009253,0.249829,0,0);}
.mbc_c00022{transform:matrix(0.256394,0.009496,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256394,0.009496,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256394,0.009496,-0.009253,0.249829,0,0);}
.m22_c00022{transform:matrix(0.258548,0.009576,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258548,0.009576,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258548,0.009576,-0.009253,0.249829,0,0);}
.m3e_c00022{transform:matrix(0.259302,0.009604,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259302,0.009604,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259302,0.009604,-0.009253,0.249829,0,0);}
.m80_c00022{transform:matrix(0.264354,0.009791,-0.009253,0.249829,0,0);-ms-transform:matrix(0.264354,0.009791,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.264354,0.009791,-0.009253,0.249829,0,0);}
.m34_c00022{transform:matrix(0.267537,0.009909,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267537,0.009909,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267537,0.009909,-0.009253,0.249829,0,0);}
.mba_c00022{transform:matrix(0.270230,0.010009,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270230,0.010009,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270230,0.010009,-0.009253,0.249829,0,0);}
.mc0_c00022{transform:matrix(0.275036,0.010187,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275036,0.010187,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275036,0.010187,-0.009253,0.249829,0,0);}
.md2_c00022{transform:matrix(0.287468,0.010647,-0.009253,0.249829,0,0);-ms-transform:matrix(0.287468,0.010647,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.287468,0.010647,-0.009253,0.249829,0,0);}
.m21_c00022{transform:matrix(0.290401,0.010756,-0.009253,0.249829,0,0);-ms-transform:matrix(0.290401,0.010756,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.290401,0.010756,-0.009253,0.249829,0,0);}
.m9c_c00022{transform:matrix(0.305795,0.011326,-0.009253,0.249829,0,0);-ms-transform:matrix(0.305795,0.011326,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.305795,0.011326,-0.009253,0.249829,0,0);}
.m90_c00022{transform:matrix(0.311706,0.011545,-0.009253,0.249829,0,0);-ms-transform:matrix(0.311706,0.011545,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.311706,0.011545,-0.009253,0.249829,0,0);}
.m5_c00022{transform:matrix(0.395034,0.014631,-0.009253,0.249829,0,0);-ms-transform:matrix(0.395034,0.014631,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.395034,0.014631,-0.009253,0.249829,0,0);}
.m28_c00022{transform:matrix(0.398392,0.014755,-0.009253,0.249829,0,0);-ms-transform:matrix(0.398392,0.014755,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.398392,0.014755,-0.009253,0.249829,0,0);}
.m4_c00022{transform:matrix(0.531920,0.019701,-0.009253,0.249829,0,0);-ms-transform:matrix(0.531920,0.019701,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.531920,0.019701,-0.009253,0.249829,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
.fc0_c00022{color:transparent;}
.fsf_c00022{font-size:22.050000px;}
.fs0_c00022{font-size:48.300000px;}
.fse_c00022{font-size:50.384121px;}
.fs6_c00022{font-size:58.781475px;}
.fs4_c00022{font-size:59.831144px;}
.fsd_c00022{font-size:60.880813px;}
.fsa_c00022{font-size:61.930483px;}
.fs5_c00022{font-size:62.980152px;}
.fs8_c00022{font-size:64.029821px;}
.fs1_c00022{font-size:65.079490px;}
.fs9_c00022{font-size:66.129159px;}
.fs3_c00022{font-size:67.178829px;}
.fsc_c00022{font-size:68.228498px;}
.fsb_c00022{font-size:69.278167px;}
.fs7_c00022{font-size:70.327836px;}
.fs2_c00022{font-size:71.377505px;}
.y0_c00022{bottom:0.000000px;}
.ye3_c00022{bottom:27.565666px;}
.ye2_c00022{bottom:30.532252px;}
.ye1_c00022{bottom:32.156515px;}
.ye0_c00022{bottom:33.703411px;}
.ydf_c00022{bottom:37.918525px;}
.yde_c00022{bottom:38.595681px;}
.ydd_c00022{bottom:41.487952px;}
.ydc_c00022{bottom:48.099501px;}
.ydb_c00022{bottom:51.985944px;}
.yda_c00022{bottom:52.908631px;}
.yd9_c00022{bottom:55.906797px;}
.yd8_c00022{bottom:57.258333px;}
.yd7_c00022{bottom:58.760718px;}
.yd6_c00022{bottom:62.670804px;}
.yd5_c00022{bottom:63.419388px;}
.yd4_c00022{bottom:67.938975px;}
.yd3_c00022{bottom:70.285237px;}
.yd2_c00022{bottom:71.133000px;}
.yd1_c00022{bottom:74.436748px;}
.yd0_c00022{bottom:80.001123px;}
.ycf_c00022{bottom:82.682772px;}
.yce_c00022{bottom:83.285557px;}
.ycd_c00022{bottom:86.673555px;}
.ycc_c00022{bottom:89.431960px;}
.ycb_c00022{bottom:90.756190px;}
.yca_c00022{bottom:92.233323px;}
.yc9_c00022{bottom:96.522307px;}
.yc8_c00022{bottom:98.023305px;}
.yc7_c00022{bottom:101.917851px;}
.yc6_c00022{bottom:102.967522px;}
.yc5_c00022{bottom:108.221208px;}
.yc4_c00022{bottom:108.976618px;}
.yc3_c00022{bottom:115.958962px;}
.yc2_c00022{bottom:117.385368px;}
.yc1_c00022{bottom:118.652877px;}
.yc0_c00022{bottom:120.847846px;}
.ybf_c00022{bottom:122.071899px;}
.ybe_c00022{bottom:125.905506px;}
.ybd_c00022{bottom:126.783682px;}
.ybc_c00022{bottom:129.965164px;}
.ybb_c00022{bottom:132.614457px;}
.yba_c00022{bottom:133.799493px;}
.yb9_c00022{bottom:134.952117px;}
.yb8_c00022{bottom:137.646087px;}
.yb7_c00022{bottom:139.460937px;}
.yb6_c00022{bottom:141.626380px;}
.yb5_c00022{bottom:145.794708px;}
.yb4_c00022{bottom:147.260796px;}
.yb3_c00022{bottom:150.376677px;}
.yb2_c00022{bottom:151.917523px;}
.yb1_c00022{bottom:153.321229px;}
.yb0_c00022{bottom:156.318673px;}
.yaf_c00022{bottom:158.904640px;}
.yae_c00022{bottom:162.472069px;}
.yad_c00022{bottom:166.448533px;}
.yac_c00022{bottom:172.744120px;}
.yab_c00022{bottom:174.339412px;}
.yaa_c00022{bottom:175.597653px;}
.ya9_c00022{bottom:178.075117px;}
.ya8_c00022{bottom:181.218859px;}
.ya7_c00022{bottom:182.386635px;}
.ya6_c00022{bottom:184.844286px;}
.ya5_c00022{bottom:188.159245px;}
.ya4_c00022{bottom:191.324799px;}
.ya3_c00022{bottom:192.596026px;}
.ya2_c00022{bottom:193.989964px;}
.ya1_c00022{bottom:197.873022px;}
.ya0_c00022{bottom:199.315300px;}
.y9f_c00022{bottom:203.286270px;}
.y9e_c00022{bottom:204.001332px;}
.y9d_c00022{bottom:207.462534px;}
.y9c_c00022{bottom:208.862188px;}
.y9b_c00022{bottom:209.790426px;}
.y9a_c00022{bottom:211.267836px;}
.y99_c00022{bottom:214.125142px;}
.y98_c00022{bottom:216.733531px;}
.y97_c00022{bottom:218.030011px;}
.y96_c00022{bottom:219.932773px;}
.y95_c00022{bottom:220.830541px;}
.y94_c00022{bottom:221.849022px;}
.y93_c00022{bottom:225.208881px;}
.y92_c00022{bottom:226.225530px;}
.y91_c00022{bottom:228.283359px;}
.y90_c00022{bottom:231.805222px;}
.y8f_c00022{bottom:232.679070px;}
.y8e_c00022{bottom:236.832246px;}
.y8d_c00022{bottom:237.202930px;}
.y8c_c00022{bottom:239.476654px;}
.y8b_c00022{bottom:241.177841px;}
.y8a_c00022{bottom:242.468770px;}
.y89_c00022{bottom:243.239221px;}
.y88_c00022{bottom:245.552073px;}
.y87_c00022{bottom:248.218015px;}
.y86_c00022{bottom:251.105292px;}
.y85_c00022{bottom:252.321852px;}
.y84_c00022{bottom:253.403713px;}
.y83_c00022{bottom:256.974084px;}
.y82_c00022{bottom:257.911701px;}
.y81_c00022{bottom:259.939171px;}
.y80_c00022{bottom:262.287987px;}
.y7f_c00022{bottom:264.810240px;}
.y7e_c00022{bottom:267.289369px;}
.y7d_c00022{bottom:270.626695px;}
.y7c_c00022{bottom:271.886546px;}
.y7b_c00022{bottom:273.053766px;}
.y7a_c00022{bottom:276.522405px;}
.y79_c00022{bottom:277.457691px;}
.y78_c00022{bottom:280.099880px;}
.y77_c00022{bottom:282.034665px;}
.y76_c00022{bottom:285.677352px;}
.y75_c00022{bottom:288.805610px;}
.y74_c00022{bottom:292.085604px;}
.y73_c00022{bottom:293.210478px;}
.y72_c00022{bottom:296.023329px;}
.y71_c00022{bottom:297.119287px;}
.y70_c00022{bottom:299.866482px;}
.y6f_c00022{bottom:301.199426px;}
.y6e_c00022{bottom:301.901001px;}
.y6d_c00022{bottom:304.691541px;}
.y6c_c00022{bottom:306.149082px;}
.y6b_c00022{bottom:309.067771px;}
.y6a_c00022{bottom:313.851483px;}
.y69_c00022{bottom:316.509766px;}
.y68_c00022{bottom:317.801917px;}
.y67_c00022{bottom:319.441110px;}
.y66_c00022{bottom:322.172764px;}
.y65_c00022{bottom:325.172373px;}
.y64_c00022{bottom:326.265168px;}
.y63_c00022{bottom:328.951645px;}
.y62_c00022{bottom:334.436932px;}
.y61_c00022{bottom:336.681574px;}
.y60_c00022{bottom:338.505415px;}
.y5f_c00022{bottom:338.899132px;}
.y5e_c00022{bottom:340.272258px;}
.y5d_c00022{bottom:340.963177px;}
.y5c_c00022{bottom:342.579337px;}
.y5b_c00022{bottom:343.106865px;}
.y5a_c00022{bottom:344.875372px;}
.y59_c00022{bottom:351.124728px;}
.y58_c00022{bottom:352.047082px;}
.y57_c00022{bottom:354.990969px;}
.y56_c00022{bottom:355.942017px;}
.y55_c00022{bottom:357.148309px;}
.y54_c00022{bottom:359.997957px;}
.y53_c00022{bottom:361.617835px;}
.y52_c00022{bottom:367.956546px;}
.y51_c00022{bottom:370.237651px;}
.y50_c00022{bottom:372.497556px;}
.y4f_c00022{bottom:373.794480px;}
.y4e_c00022{bottom:375.560323px;}
.y4d_c00022{bottom:378.125089px;}
.y4c_c00022{bottom:379.155891px;}
.y4b_c00022{bottom:384.390873px;}
.y4a_c00022{bottom:386.057038px;}
.y49_c00022{bottom:389.740074px;}
.y48_c00022{bottom:392.478555px;}
.y47_c00022{bottom:392.991208px;}
.y46_c00022{bottom:395.080783px;}
.y45_c00022{bottom:399.581889px;}
.y44_c00022{bottom:403.329582px;}
.y43_c00022{bottom:407.539534px;}
.y42_c00022{bottom:409.001238px;}
.y41_c00022{bottom:409.381746px;}
.y40_c00022{bottom:411.814144px;}
.y3f_c00022{bottom:415.843444px;}
.y3e_c00022{bottom:418.636593px;}
.y3d_c00022{bottom:419.555784px;}
.y3c_c00022{bottom:421.604289px;}
.y3b_c00022{bottom:424.606950px;}
.y3a_c00022{bottom:426.873015px;}
.y39_c00022{bottom:429.098398px;}
.y38_c00022{bottom:433.263729px;}
.y37_c00022{bottom:435.804130px;}
.y36_c00022{bottom:436.685248px;}
.y35_c00022{bottom:439.861513px;}
.y34_c00022{bottom:440.847415px;}
.y33_c00022{bottom:442.548435px;}
.y32_c00022{bottom:443.449977px;}
.y31_c00022{bottom:445.831704px;}
.y30_c00022{bottom:450.611475px;}
.y2f_c00022{bottom:451.630843px;}
.y2e_c00022{bottom:454.006687px;}
.y2d_c00022{bottom:456.973995px;}
.y2c_c00022{bottom:458.833134px;}
.y2b_c00022{bottom:461.779240px;}
.y2a_c00022{bottom:462.564066px;}
.y29_c00022{bottom:466.171788px;}
.y28_c00022{bottom:466.920871px;}
.ye4_c00022{bottom:468.450000px;}
.y27_c00022{bottom:470.766078px;}
.y26_c00022{bottom:471.146031px;}
.y25_c00022{bottom:474.323295px;}
.y24_c00022{bottom:476.709517px;}
.y23_c00022{bottom:477.606786px;}
.y22_c00022{bottom:479.035190px;}
.y21_c00022{bottom:483.869961px;}
.y20_c00022{bottom:486.976684px;}
.y1f_c00022{bottom:489.386827px;}
.y1e_c00022{bottom:490.293975px;}
.y1d_c00022{bottom:492.878721px;}
.y1c_c00022{bottom:496.038558px;}
.y1b_c00022{bottom:502.556200px;}
.y1a_c00022{bottom:502.799790px;}
.y19_c00022{bottom:505.653822px;}
.y18_c00022{bottom:509.174020px;}
.y17_c00022{bottom:512.232625px;}
.y16_c00022{bottom:513.029217px;}
.y15_c00022{bottom:517.451734px;}
.y14_c00022{bottom:520.669347px;}
.y13_c00022{bottom:522.935745px;}
.y12_c00022{bottom:524.206806px;}
.y11_c00022{bottom:527.038749px;}
.y10_c00022{bottom:527.882182px;}
.yf_c00022{bottom:530.044351px;}
.ye_c00022{bottom:533.894386px;}
.yd_c00022{bottom:535.704741px;}
.yc_c00022{bottom:536.905483px;}
.yb_c00022{bottom:540.755463px;}
.ya_c00022{bottom:541.730098px;}
.y9_c00022{bottom:544.306963px;}
.y8_c00022{bottom:546.508426px;}
.y7_c00022{bottom:554.159768px;}
.y6_c00022{bottom:556.899192px;}
.y5_c00022{bottom:558.556755px;}
.y4_c00022{bottom:559.406460px;}
.y3_c00022{bottom:560.795625px;}
.y2_c00022{bottom:562.696500px;}
.y1_c00022{bottom:572.124000px;}
.h11_c00022{height:22.050000px;}
.h2_c00022{height:48.300000px;}
.h10_c00022{height:50.384121px;}
.h8_c00022{height:58.781475px;}
.h6_c00022{height:59.831144px;}
.hf_c00022{height:60.880813px;}
.hc_c00022{height:61.930483px;}
.h7_c00022{height:62.980152px;}
.ha_c00022{height:64.029821px;}
.h3_c00022{height:65.079490px;}
.hb_c00022{height:66.129159px;}
.h5_c00022{height:67.178829px;}
.he_c00022{height:68.228498px;}
.hd_c00022{height:69.278167px;}
.h9_c00022{height:70.327836px;}
.h4_c00022{height:71.377505px;}
.h0_c00022{height:615.600000px;}
.h1_c00022{height:615.750000px;}
.w0_c00022{width:367.200000px;}
.w1_c00022{width:367.500000px;}
.x0_c00022{left:0.000000px;}
.x77_c00022{left:18.695186px;}
.x75_c00022{left:19.829994px;}
.x69_c00022{left:23.205893px;}
.x59_c00022{left:24.294636px;}
.x4e_c00022{left:26.647059px;}
.x2b_c00022{left:28.379547px;}
.x19_c00022{left:29.925444px;}
.x2_c00022{left:31.701000px;}
.x43_c00022{left:34.569962px;}
.x71_c00022{left:37.664253px;}
.x36_c00022{left:40.695164px;}
.x52_c00022{left:46.338792px;}
.x25_c00022{left:48.120287px;}
.x14_c00022{left:49.127612px;}
.x63_c00022{left:53.117673px;}
.x66_c00022{left:58.777175px;}
.x1f_c00022{left:60.809973px;}
.x60_c00022{left:63.988680px;}
.x5d_c00022{left:68.799365px;}
.x44_c00022{left:71.338101px;}
.x54_c00022{left:74.638908px;}
.x31_c00022{left:76.691520px;}
.xe_c00022{left:78.574913px;}
.x20_c00022{left:79.890818px;}
.x8_c00022{left:81.013916px;}
.x3_c00022{left:83.024625px;}
.x3b_c00022{left:86.881376px;}
.x6a_c00022{left:88.107926px;}
.x46_c00022{left:90.101153px;}
.x55_c00022{left:91.950690px;}
.x37_c00022{left:94.701603px;}
.xf_c00022{left:96.890967px;}
.x1a_c00022{left:98.548863px;}
.x2c_c00022{left:101.267475px;}
.x38_c00022{left:103.152144px;}
.x3e_c00022{left:104.436026px;}
.x5e_c00022{left:108.412712px;}
.x5a_c00022{left:111.743988px;}
.x6d_c00022{left:113.583036px;}
.x26_c00022{left:115.024482px;}
.x4f_c00022{left:116.831840px;}
.x15_c00022{left:118.583087px;}
.x4_c00022{left:120.532080px;}
.x32_c00022{left:125.923350px;}
.x47_c00022{left:128.551553px;}
.x21_c00022{left:130.624755px;}
.x39_c00022{left:135.609044px;}
.x9_c00022{left:138.232196px;}
.x3f_c00022{left:141.985050px;}
.x5_c00022{left:143.474115px;}
.x48_c00022{left:144.978054px;}
.x61_c00022{left:149.742396px;}
.x78_c00022{left:151.189170px;}
.x1b_c00022{left:154.683450px;}
.x56_c00022{left:156.149538px;}
.x27_c00022{left:157.239780px;}
.x10_c00022{left:158.403393px;}
.xa_c00022{left:159.888129px;}
.x2d_c00022{left:160.930586px;}
.x74_c00022{left:162.322803px;}
.x45_c00022{left:163.427031px;}
.x72_c00022{left:164.812311px;}
.x1_c00022{left:166.860000px;}
.x40_c00022{left:169.547238px;}
.x6e_c00022{left:170.843496px;}
.x50_c00022{left:171.854151px;}
.x1c_c00022{left:174.395663px;}
.x49_c00022{left:177.636308px;}
.x53_c00022{left:179.877509px;}
.x5f_c00022{left:184.781822px;}
.x11_c00022{left:185.996550px;}
.x4a_c00022{left:187.010702px;}
.x6_c00022{left:188.228316px;}
.x33_c00022{left:191.153832px;}
.x6f_c00022{left:195.360399px;}
.x16_c00022{left:198.516351px;}
.x57_c00022{left:201.058307px;}
.x22_c00022{left:206.250054px;}
.x67_c00022{left:207.747333px;}
.x6b_c00022{left:209.282796px;}
.x73_c00022{left:212.064068px;}
.x41_c00022{left:217.599860px;}
.x70_c00022{left:220.549851px;}
.x5b_c00022{left:223.491906px;}
.x28_c00022{left:224.635373px;}
.x1d_c00022{left:226.747814px;}
.x3a_c00022{left:229.101291px;}
.x4b_c00022{left:230.379734px;}
.x2e_c00022{left:231.456101px;}
.x12_c00022{left:235.237371px;}
.x3c_c00022{left:237.478406px;}
.x79_c00022{left:243.358464px;}
.xb_c00022{left:245.362736px;}
.x4d_c00022{left:246.398865px;}
.x5c_c00022{left:247.790361px;}
.x62_c00022{left:249.979115px;}
.x2f_c00022{left:251.032727px;}
.x34_c00022{left:255.602319px;}
.x64_c00022{left:258.319322px;}
.x76_c00022{left:259.548369px;}
.x7_c00022{left:262.192778px;}
.x17_c00022{left:263.339685px;}
.x42_c00022{left:266.103363px;}
.x18_c00022{left:268.863212px;}
.xc_c00022{left:272.029653px;}
.x3d_c00022{left:273.673119px;}
.x68_c00022{left:277.435409px;}
.x29_c00022{left:278.573381px;}
.x4c_c00022{left:283.773398px;}
.x65_c00022{left:286.564881px;}
.x23_c00022{left:287.989955px;}
.x51_c00022{left:290.313906px;}
.x1e_c00022{left:294.220773px;}
.x2a_c00022{left:301.720710px;}
.x6c_c00022{left:302.731254px;}
.x24_c00022{left:303.920619px;}
.x13_c00022{left:305.137124px;}
.x30_c00022{left:307.428552px;}
.x58_c00022{left:308.674305px;}
.xd_c00022{left:312.239015px;}
.x35_c00022{left:316.269869px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fsf_c00022{font-size:19.600000pt;}
.fs0_c00022{font-size:42.933333pt;}
.fse_c00022{font-size:44.785886pt;}
.fs6_c00022{font-size:52.250200pt;}
.fs4_c00022{font-size:53.183239pt;}
.fsd_c00022{font-size:54.116279pt;}
.fsa_c00022{font-size:55.049318pt;}
.fs5_c00022{font-size:55.982357pt;}
.fs8_c00022{font-size:56.915397pt;}
.fs1_c00022{font-size:57.848436pt;}
.fs9_c00022{font-size:58.781475pt;}
.fs3_c00022{font-size:59.714514pt;}
.fsc_c00022{font-size:60.647554pt;}
.fsb_c00022{font-size:61.580593pt;}
.fs7_c00022{font-size:62.513632pt;}
.fs2_c00022{font-size:63.446672pt;}
.y0_c00022{bottom:0.000000pt;}
.ye3_c00022{bottom:24.502815pt;}
.ye2_c00022{bottom:27.139780pt;}
.ye1_c00022{bottom:28.583569pt;}
.ye0_c00022{bottom:29.958588pt;}
.ydf_c00022{bottom:33.705356pt;}
.yde_c00022{bottom:34.307272pt;}
.ydd_c00022{bottom:36.878180pt;}
.ydc_c00022{bottom:42.755112pt;}
.ydb_c00022{bottom:46.209728pt;}
.yda_c00022{bottom:47.029895pt;}
.yd9_c00022{bottom:49.694931pt;}
.yd8_c00022{bottom:50.896296pt;}
.yd7_c00022{bottom:52.231749pt;}
.yd6_c00022{bottom:55.707381pt;}
.yd5_c00022{bottom:56.372789pt;}
.yd4_c00022{bottom:60.390200pt;}
.yd3_c00022{bottom:62.475767pt;}
.yd2_c00022{bottom:63.229333pt;}
.yd1_c00022{bottom:66.165999pt;}
.yd0_c00022{bottom:71.112109pt;}
.ycf_c00022{bottom:73.495797pt;}
.yce_c00022{bottom:74.031607pt;}
.ycd_c00022{bottom:77.043160pt;}
.ycc_c00022{bottom:79.495076pt;}
.ycb_c00022{bottom:80.672169pt;}
.yca_c00022{bottom:81.985176pt;}
.yc9_c00022{bottom:85.797607pt;}
.yc8_c00022{bottom:87.131827pt;}
.yc7_c00022{bottom:90.593645pt;}
.yc6_c00022{bottom:91.526687pt;}
.yc5_c00022{bottom:96.196629pt;}
.yc4_c00022{bottom:96.868105pt;}
.yc3_c00022{bottom:103.074633pt;}
.yc2_c00022{bottom:104.342549pt;}
.yc1_c00022{bottom:105.469224pt;}
.yc0_c00022{bottom:107.420308pt;}
.ybf_c00022{bottom:108.508355pt;}
.ybe_c00022{bottom:111.916005pt;}
.ybd_c00022{bottom:112.696607pt;}
.ybc_c00022{bottom:115.524591pt;}
.ybb_c00022{bottom:117.879517pt;}
.yba_c00022{bottom:118.932883pt;}
.yb9_c00022{bottom:119.957437pt;}
.yb8_c00022{bottom:122.352077pt;}
.yb7_c00022{bottom:123.965277pt;}
.yb6_c00022{bottom:125.890116pt;}
.yb5_c00022{bottom:129.595296pt;}
.yb4_c00022{bottom:130.898485pt;}
.yb3_c00022{bottom:133.668157pt;}
.yb2_c00022{bottom:135.037799pt;}
.yb1_c00022{bottom:136.285537pt;}
.yb0_c00022{bottom:138.949932pt;}
.yaf_c00022{bottom:141.248569pt;}
.yae_c00022{bottom:144.419617pt;}
.yad_c00022{bottom:147.954252pt;}
.yac_c00022{bottom:153.550329pt;}
.yab_c00022{bottom:154.968367pt;}
.yaa_c00022{bottom:156.086803pt;}
.ya9_c00022{bottom:158.288993pt;}
.ya8_c00022{bottom:161.083431pt;}
.ya7_c00022{bottom:162.121453pt;}
.ya6_c00022{bottom:164.306032pt;}
.ya5_c00022{bottom:167.252663pt;}
.ya4_c00022{bottom:170.066488pt;}
.ya3_c00022{bottom:171.196468pt;}
.ya2_c00022{bottom:172.435524pt;}
.ya1_c00022{bottom:175.887131pt;}
.ya0_c00022{bottom:177.169156pt;}
.y9f_c00022{bottom:180.698907pt;}
.y9e_c00022{bottom:181.334517pt;}
.y9d_c00022{bottom:184.411141pt;}
.y9c_c00022{bottom:185.655279pt;}
.y9b_c00022{bottom:186.480379pt;}
.y9a_c00022{bottom:187.793632pt;}
.y99_c00022{bottom:190.333460pt;}
.y98_c00022{bottom:192.652028pt;}
.y97_c00022{bottom:193.804455pt;}
.y96_c00022{bottom:195.495799pt;}
.y95_c00022{bottom:196.293815pt;}
.y94_c00022{bottom:197.199131pt;}
.y93_c00022{bottom:200.185672pt;}
.y92_c00022{bottom:201.089360pt;}
.y91_c00022{bottom:202.918541pt;}
.y90_c00022{bottom:206.049087pt;}
.y8f_c00022{bottom:206.825840pt;}
.y8e_c00022{bottom:210.517552pt;}
.y8d_c00022{bottom:210.847049pt;}
.y8c_c00022{bottom:212.868137pt;}
.y8b_c00022{bottom:214.380303pt;}
.y8a_c00022{bottom:215.527796pt;}
.y89_c00022{bottom:216.212641pt;}
.y88_c00022{bottom:218.268509pt;}
.y87_c00022{bottom:220.638236pt;}
.y86_c00022{bottom:223.204704pt;}
.y85_c00022{bottom:224.286091pt;}
.y84_c00022{bottom:225.247745pt;}
.y83_c00022{bottom:228.421408pt;}
.y82_c00022{bottom:229.254845pt;}
.y81_c00022{bottom:231.057041pt;}
.y80_c00022{bottom:233.144877pt;}
.y7f_c00022{bottom:235.386880pt;}
.y7e_c00022{bottom:237.590551pt;}
.y7d_c00022{bottom:240.557063pt;}
.y7c_c00022{bottom:241.676929pt;}
.y7b_c00022{bottom:242.714459pt;}
.y7a_c00022{bottom:245.797693pt;}
.y79_c00022{bottom:246.629059pt;}
.y78_c00022{bottom:248.977671pt;}
.y77_c00022{bottom:250.697480pt;}
.y76_c00022{bottom:253.935424pt;}
.y75_c00022{bottom:256.716097pt;}
.y74_c00022{bottom:259.631648pt;}
.y73_c00022{bottom:260.631536pt;}
.y72_c00022{bottom:263.131848pt;}
.y71_c00022{bottom:264.106033pt;}
.y70_c00022{bottom:266.547984pt;}
.y6f_c00022{bottom:267.732823pt;}
.y6e_c00022{bottom:268.356445pt;}
.y6d_c00022{bottom:270.836925pt;}
.y6c_c00022{bottom:272.132517pt;}
.y6b_c00022{bottom:274.726908pt;}
.y6a_c00022{bottom:278.979096pt;}
.y69_c00022{bottom:281.342015pt;}
.y68_c00022{bottom:282.490593pt;}
.y67_c00022{bottom:283.947653pt;}
.y66_c00022{bottom:286.375791pt;}
.y65_c00022{bottom:289.042109pt;}
.y64_c00022{bottom:290.013483pt;}
.y63_c00022{bottom:292.401463pt;}
.y62_c00022{bottom:297.277273pt;}
.y61_c00022{bottom:299.272511pt;}
.y60_c00022{bottom:300.893703pt;}
.y5f_c00022{bottom:301.243673pt;}
.y5e_c00022{bottom:302.464229pt;}
.y5d_c00022{bottom:303.078380pt;}
.y5c_c00022{bottom:304.514967pt;}
.y5b_c00022{bottom:304.983880pt;}
.y5a_c00022{bottom:306.555887pt;}
.y59_c00022{bottom:312.110869pt;}
.y58_c00022{bottom:312.930740pt;}
.y57_c00022{bottom:315.547528pt;}
.y56_c00022{bottom:316.392904pt;}
.y55_c00022{bottom:317.465164pt;}
.y54_c00022{bottom:319.998184pt;}
.y53_c00022{bottom:321.438076pt;}
.y52_c00022{bottom:327.072485pt;}
.y51_c00022{bottom:329.100135pt;}
.y50_c00022{bottom:331.108939pt;}
.y4f_c00022{bottom:332.261760pt;}
.y4e_c00022{bottom:333.831399pt;}
.y4d_c00022{bottom:336.111191pt;}
.y4c_c00022{bottom:337.027459pt;}
.y4b_c00022{bottom:341.680776pt;}
.y4a_c00022{bottom:343.161812pt;}
.y49_c00022{bottom:346.435621pt;}
.y48_c00022{bottom:348.869827pt;}
.y47_c00022{bottom:349.325519pt;}
.y46_c00022{bottom:351.182919pt;}
.y45_c00022{bottom:355.183901pt;}
.y44_c00022{bottom:358.515184pt;}
.y43_c00022{bottom:362.257364pt;}
.y42_c00022{bottom:363.556656pt;}
.y41_c00022{bottom:363.894885pt;}
.y40_c00022{bottom:366.057017pt;}
.y3f_c00022{bottom:369.638617pt;}
.y3e_c00022{bottom:372.121416pt;}
.y3d_c00022{bottom:372.938475pt;}
.y3c_c00022{bottom:374.759368pt;}
.y3b_c00022{bottom:377.428400pt;}
.y3a_c00022{bottom:379.442680pt;}
.y39_c00022{bottom:381.420799pt;}
.y38_c00022{bottom:385.123315pt;}
.y37_c00022{bottom:387.381449pt;}
.y36_c00022{bottom:388.164665pt;}
.y35_c00022{bottom:390.988012pt;}
.y34_c00022{bottom:391.864369pt;}
.y33_c00022{bottom:393.376387pt;}
.y32_c00022{bottom:394.177757pt;}
.y31_c00022{bottom:396.294848pt;}
.y30_c00022{bottom:400.543533pt;}
.y2f_c00022{bottom:401.449639pt;}
.y2e_c00022{bottom:403.561500pt;}
.y2d_c00022{bottom:406.199107pt;}
.y2c_c00022{bottom:407.851675pt;}
.y2b_c00022{bottom:410.470436pt;}
.y2a_c00022{bottom:411.168059pt;}
.y29_c00022{bottom:414.374923pt;}
.y28_c00022{bottom:415.040775pt;}
.ye4_c00022{bottom:416.400000pt;}
.y27_c00022{bottom:418.458736pt;}
.y26_c00022{bottom:418.796472pt;}
.y25_c00022{bottom:421.620707pt;}
.y24_c00022{bottom:423.741793pt;}
.y23_c00022{bottom:424.539365pt;}
.y22_c00022{bottom:425.809057pt;}
.y21_c00022{bottom:430.106632pt;}
.y20_c00022{bottom:432.868164pt;}
.y1f_c00022{bottom:435.010513pt;}
.y1e_c00022{bottom:435.816867pt;}
.y1d_c00022{bottom:438.114419pt;}
.y1c_c00022{bottom:440.923163pt;}
.y1b_c00022{bottom:446.716623pt;}
.y1a_c00022{bottom:446.933147pt;}
.y19_c00022{bottom:449.470064pt;}
.y18_c00022{bottom:452.599129pt;}
.y17_c00022{bottom:455.317889pt;}
.y16_c00022{bottom:456.025971pt;}
.y15_c00022{bottom:459.957097pt;}
.y14_c00022{bottom:462.817197pt;}
.y13_c00022{bottom:464.831773pt;}
.y12_c00022{bottom:465.961605pt;}
.y11_c00022{bottom:468.478888pt;}
.y10_c00022{bottom:469.228607pt;}
.yf_c00022{bottom:471.150535pt;}
.ye_c00022{bottom:474.572788pt;}
.yd_c00022{bottom:476.181992pt;}
.yc_c00022{bottom:477.249319pt;}
.yb_c00022{bottom:480.671523pt;}
.ya_c00022{bottom:481.537865pt;}
.y9_c00022{bottom:483.828412pt;}
.y8_c00022{bottom:485.785268pt;}
.y7_c00022{bottom:492.586460pt;}
.y6_c00022{bottom:495.021504pt;}
.y5_c00022{bottom:496.494893pt;}
.y4_c00022{bottom:497.250187pt;}
.y3_c00022{bottom:498.485000pt;}
.y2_c00022{bottom:500.174667pt;}
.y1_c00022{bottom:508.554667pt;}
.h11_c00022{height:19.600000pt;}
.h2_c00022{height:42.933333pt;}
.h10_c00022{height:44.785886pt;}
.h8_c00022{height:52.250200pt;}
.h6_c00022{height:53.183239pt;}
.hf_c00022{height:54.116279pt;}
.hc_c00022{height:55.049318pt;}
.h7_c00022{height:55.982357pt;}
.ha_c00022{height:56.915397pt;}
.h3_c00022{height:57.848436pt;}
.hb_c00022{height:58.781475pt;}
.h5_c00022{height:59.714514pt;}
.he_c00022{height:60.647554pt;}
.hd_c00022{height:61.580593pt;}
.h9_c00022{height:62.513632pt;}
.h4_c00022{height:63.446672pt;}
.h0_c00022{height:547.200000pt;}
.h1_c00022{height:547.333333pt;}
.w0_c00022{width:326.400000pt;}
.w1_c00022{width:326.666667pt;}
.x0_c00022{left:0.000000pt;}
.x77_c00022{left:16.617943pt;}
.x75_c00022{left:17.626661pt;}
.x69_c00022{left:20.627460pt;}
.x59_c00022{left:21.595232pt;}
.x4e_c00022{left:23.686275pt;}
.x2b_c00022{left:25.226264pt;}
.x19_c00022{left:26.600395pt;}
.x2_c00022{left:28.178667pt;}
.x43_c00022{left:30.728855pt;}
.x71_c00022{left:33.479336pt;}
.x36_c00022{left:36.173479pt;}
.x52_c00022{left:41.190037pt;}
.x25_c00022{left:42.773588pt;}
.x14_c00022{left:43.668988pt;}
.x63_c00022{left:47.215709pt;}
.x66_c00022{left:52.246377pt;}
.x1f_c00022{left:54.053309pt;}
.x60_c00022{left:56.878827pt;}
.x5d_c00022{left:61.154991pt;}
.x44_c00022{left:63.411645pt;}
.x54_c00022{left:66.345696pt;}
.x31_c00022{left:68.170240pt;}
.xe_c00022{left:69.844367pt;}
.x20_c00022{left:71.014060pt;}
.x8_c00022{left:72.012369pt;}
.x3_c00022{left:73.799667pt;}
.x3b_c00022{left:77.227889pt;}
.x6a_c00022{left:78.318156pt;}
.x46_c00022{left:80.089913pt;}
.x55_c00022{left:81.733947pt;}
.x37_c00022{left:84.179203pt;}
.xf_c00022{left:86.125304pt;}
.x1a_c00022{left:87.598989pt;}
.x2c_c00022{left:90.015533pt;}
.x38_c00022{left:91.690795pt;}
.x3e_c00022{left:92.832023pt;}
.x5e_c00022{left:96.366855pt;}
.x5a_c00022{left:99.327989pt;}
.x6d_c00022{left:100.962699pt;}
.x26_c00022{left:102.243984pt;}
.x4f_c00022{left:103.850524pt;}
.x15_c00022{left:105.407188pt;}
.x4_c00022{left:107.139627pt;}
.x32_c00022{left:111.931867pt;}
.x47_c00022{left:114.268047pt;}
.x21_c00022{left:116.110893pt;}
.x39_c00022{left:120.541372pt;}
.x9_c00022{left:122.873063pt;}
.x3f_c00022{left:126.208933pt;}
.x5_c00022{left:127.532547pt;}
.x48_c00022{left:128.869381pt;}
.x61_c00022{left:133.104352pt;}
.x78_c00022{left:134.390373pt;}
.x1b_c00022{left:137.496400pt;}
.x56_c00022{left:138.799589pt;}
.x27_c00022{left:139.768693pt;}
.x10_c00022{left:140.803016pt;}
.xa_c00022{left:142.122781pt;}
.x2d_c00022{left:143.049409pt;}
.x74_c00022{left:144.286936pt;}
.x45_c00022{left:145.268472pt;}
.x72_c00022{left:146.499832pt;}
.x1_c00022{left:148.320000pt;}
.x40_c00022{left:150.708656pt;}
.x6e_c00022{left:151.860885pt;}
.x50_c00022{left:152.759245pt;}
.x1c_c00022{left:155.018367pt;}
.x49_c00022{left:157.898940pt;}
.x53_c00022{left:159.891119pt;}
.x5f_c00022{left:164.250508pt;}
.x11_c00022{left:165.330267pt;}
.x4a_c00022{left:166.231735pt;}
.x6_c00022{left:167.314059pt;}
.x33_c00022{left:169.914517pt;}
.x6f_c00022{left:173.653688pt;}
.x16_c00022{left:176.458979pt;}
.x57_c00022{left:178.718495pt;}
.x22_c00022{left:183.333381pt;}
.x67_c00022{left:184.664296pt;}
.x6b_c00022{left:186.029152pt;}
.x73_c00022{left:188.501393pt;}
.x41_c00022{left:193.422097pt;}
.x70_c00022{left:196.044312pt;}
.x5b_c00022{left:198.659472pt;}
.x28_c00022{left:199.675887pt;}
.x1d_c00022{left:201.553612pt;}
.x3a_c00022{left:203.645592pt;}
.x4b_c00022{left:204.781985pt;}
.x2e_c00022{left:205.738756pt;}
.x12_c00022{left:209.099885pt;}
.x3c_c00022{left:211.091916pt;}
.x79_c00022{left:216.318635pt;}
.xb_c00022{left:218.100209pt;}
.x4d_c00022{left:219.021213pt;}
.x5c_c00022{left:220.258099pt;}
.x62_c00022{left:222.203657pt;}
.x2f_c00022{left:223.140201pt;}
.x34_c00022{left:227.202061pt;}
.x64_c00022{left:229.617175pt;}
.x76_c00022{left:230.709661pt;}
.x7_c00022{left:233.060247pt;}
.x17_c00022{left:234.079720pt;}
.x42_c00022{left:236.536323pt;}
.x18_c00022{left:238.989521pt;}
.xc_c00022{left:241.804136pt;}
.x3d_c00022{left:243.264995pt;}
.x68_c00022{left:246.609252pt;}
.x29_c00022{left:247.620783pt;}
.x4c_c00022{left:252.243020pt;}
.x65_c00022{left:254.724339pt;}
.x23_c00022{left:255.991071pt;}
.x51_c00022{left:258.056805pt;}
.x1e_c00022{left:261.529576pt;}
.x2a_c00022{left:268.196187pt;}
.x6c_c00022{left:269.094448pt;}
.x24_c00022{left:270.151661pt;}
.x13_c00022{left:271.232999pt;}
.x30_c00022{left:273.269824pt;}
.x58_c00022{left:274.377160pt;}
.xd_c00022{left:277.545791pt;}
.x35_c00022{left:281.128772pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00023 {
    display:none;
  }
  .loading-indicator_c00023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00023 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00023 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00023" -> "#page-container .classname_c00023")
 */
.pf_c00023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00023 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00023 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00023 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00023 {overflow:visible;}
  }
}
.c_c00023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00023 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00023:after { /* webkit #35443 */
  content: '';
}
.t_c00023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00023 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00023 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00023 { /* info for Javascript */
  display:none;
}
.l_c00023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00023:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00023 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00023.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00023{transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.100165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100165,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);}
.mb3_c00023{transform:matrix(0.136645,0.002323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.136645,0.002323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.136645,0.002323,-0.004249,0.249964,0,0);}
.m60_c00023{transform:matrix(0.137135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137135,0.000000,0.000000,0.250000,0,0);}
.mc8_c00023{transform:matrix(0.141325,0.002403,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141325,0.002403,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141325,0.002403,-0.004249,0.249964,0,0);}
.m18_c00023{transform:matrix(0.146740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146740,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.156485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156485,0.000000,0.000000,0.250000,0,0);}
.me0_c00023{transform:matrix(0.156852,0.002666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156852,0.002666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156852,0.002666,-0.004249,0.249964,0,0);}
.m5c_c00023{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.me1_c00023{transform:matrix(0.157382,0.002675,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157382,0.002675,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157382,0.002675,-0.004249,0.249964,0,0);}
.mf_c00023{transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);}
.m7f_c00023{transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);}
.md0_c00023{transform:matrix(0.163161,0.002774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163161,0.002774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163161,0.002774,-0.004249,0.249964,0,0);}
.m13_c00023{transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);}
.m70_c00023{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.m83_c00023{transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);}
.m89_c00023{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.md8_c00023{transform:matrix(0.170605,0.002900,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170605,0.002900,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170605,0.002900,-0.004249,0.249964,0,0);}
.m2d_c00023{transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);}
.m7d_c00023{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m91_c00023{transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);}
.m97_c00023{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m98_c00023{transform:matrix(0.175520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175520,0.000000,0.000000,0.250000,0,0);}
.mc1_c00023{transform:matrix(0.176005,0.002992,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176005,0.002992,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176005,0.002992,-0.004249,0.249964,0,0);}
.m6d_c00023{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m68_c00023{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.m84_c00023{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);}
.m81_c00023{transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);}
.m96_c00023{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m72_c00023{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.me4_c00023{transform:matrix(0.180599,0.003070,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180599,0.003070,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180599,0.003070,-0.004249,0.249964,0,0);}
.m20_c00023{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.181360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181360,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);}
.mb7_c00023{transform:matrix(0.182279,0.003099,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182279,0.003099,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182279,0.003099,-0.004249,0.249964,0,0);}
.mbd_c00023{transform:matrix(0.182799,0.003108,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182799,0.003108,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182799,0.003108,-0.004249,0.249964,0,0);}
.m53_c00023{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.mbb_c00023{transform:matrix(0.184133,0.003130,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184133,0.003130,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184133,0.003130,-0.004249,0.249964,0,0);}
.m2_c00023{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m85_c00023{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.mb8_c00023{transform:matrix(0.186148,0.003165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186148,0.003165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186148,0.003165,-0.004249,0.249964,0,0);}
.m80_c00023{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.mb4_c00023{transform:matrix(0.186433,0.003169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186433,0.003169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186433,0.003169,-0.004249,0.249964,0,0);}
.m2a_c00023{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.m4e_c00023{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);}
.m8b_c00023{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m71_c00023{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.m86_c00023{transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);}
.m61_c00023{transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);}
.m90_c00023{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m7a_c00023{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m5a_c00023{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00023{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m69_c00023{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.md2_c00023{transform:matrix(0.189543,0.003222,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189543,0.003222,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189543,0.003222,-0.004249,0.249964,0,0);}
.m9c_c00023{transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);}
.m93_c00023{transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00023{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.mb0_c00023{transform:matrix(0.190977,0.003247,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190977,0.003247,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190977,0.003247,-0.004249,0.249964,0,0);}
.m6b_c00023{transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);}
.mc5_c00023{transform:matrix(0.191947,0.003263,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191947,0.003263,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191947,0.003263,-0.004249,0.249964,0,0);}
.m95_c00023{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.me5_c00023{transform:matrix(0.192282,0.003269,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192282,0.003269,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192282,0.003269,-0.004249,0.249964,0,0);}
.m44_c00023{transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);}
.m56_c00023{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00023{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.mcd_c00023{transform:matrix(0.194257,0.003302,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194257,0.003302,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194257,0.003302,-0.004249,0.249964,0,0);}
.mcf_c00023{transform:matrix(0.194287,0.003303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194287,0.003303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194287,0.003303,-0.004249,0.249964,0,0);}
.m64_c00023{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.mca_c00023{transform:matrix(0.194632,0.003309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194632,0.003309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194632,0.003309,-0.004249,0.249964,0,0);}
.m58_c00023{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m6f_c00023{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m6e_c00023{transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.mce_c00023{transform:matrix(0.196712,0.003344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196712,0.003344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196712,0.003344,-0.004249,0.249964,0,0);}
.mb2_c00023{transform:matrix(0.196742,0.003345,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196742,0.003345,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196742,0.003345,-0.004249,0.249964,0,0);}
.mc2_c00023{transform:matrix(0.196802,0.003346,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196802,0.003346,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196802,0.003346,-0.004249,0.249964,0,0);}
.m32_c00023{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.mc3_c00023{transform:matrix(0.197446,0.003357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197446,0.003357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197446,0.003357,-0.004249,0.249964,0,0);}
.m4b_c00023{transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);}
.mc4_c00023{transform:matrix(0.198036,0.003367,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198036,0.003367,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198036,0.003367,-0.004249,0.249964,0,0);}
.m52_c00023{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);}
.m5d_c00023{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.m8a_c00023{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.m76_c00023{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.maf_c00023{transform:matrix(0.199451,0.003391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199451,0.003391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199451,0.003391,-0.004249,0.249964,0,0);}
.m8f_c00023{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m92_c00023{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.me2_c00023{transform:matrix(0.200666,0.003411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200666,0.003411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200666,0.003411,-0.004249,0.249964,0,0);}
.m82_c00023{transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.mae_c00023{transform:matrix(0.201631,0.003428,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201631,0.003428,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201631,0.003428,-0.004249,0.249964,0,0);}
.mac_c00023{transform:matrix(0.201721,0.003429,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201721,0.003429,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201721,0.003429,-0.004249,0.249964,0,0);}
.m88_c00023{transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m63_c00023{transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);}
.m99_c00023{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.m7e_c00023{transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00023{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.md3_c00023{transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);}
.m15_c00023{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.mc0_c00023{transform:matrix(0.207735,0.003531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207735,0.003531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207735,0.003531,-0.004249,0.249964,0,0);}
.ma9_c00023{transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);}
.m45_c00023{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00023{transform:matrix(0.209095,0.003555,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209095,0.003555,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209095,0.003555,-0.004249,0.249964,0,0);}
.ma3_c00023{transform:matrix(0.209630,0.003564,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209630,0.003564,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209630,0.003564,-0.004249,0.249964,0,0);}
.m62_c00023{transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00023{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m39_c00023{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00023{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.md6_c00023{transform:matrix(0.212909,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212909,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212909,0.003619,-0.004249,0.249964,0,0);}
.ma8_c00023{transform:matrix(0.213314,0.003626,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213314,0.003626,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213314,0.003626,-0.004249,0.249964,0,0);}
.m9f_c00023{transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);}
.m7c_c00023{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.me3_c00023{transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);}
.m10_c00023{transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);}
.mcc_c00023{transform:matrix(0.214559,0.003648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214559,0.003648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214559,0.003648,-0.004249,0.249964,0,0);}
.m8_c00023{transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);}
.m57_c00023{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.m66_c00023{transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);}
.m59_c00023{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.m8e_c00023{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m25_c00023{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m54_c00023{transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);}
.m67_c00023{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.maa_c00023{transform:matrix(0.221323,0.003762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221323,0.003762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221323,0.003762,-0.004249,0.249964,0,0);}
.mb6_c00023{transform:matrix(0.221353,0.003763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221353,0.003763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221353,0.003763,-0.004249,0.249964,0,0);}
.m2e_c00023{transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);}
.ma0_c00023{transform:matrix(0.222073,0.003775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222073,0.003775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222073,0.003775,-0.004249,0.249964,0,0);}
.m6a_c00023{transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);}
.mb5_c00023{transform:matrix(0.224193,0.003811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224193,0.003811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224193,0.003811,-0.004249,0.249964,0,0);}
.m79_c00023{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00023{transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);}
.md9_c00023{transform:matrix(0.224798,0.003822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224798,0.003822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224798,0.003822,-0.004249,0.249964,0,0);}
.mcb_c00023{transform:matrix(0.225237,0.003829,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225237,0.003829,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225237,0.003829,-0.004249,0.249964,0,0);}
.ma5_c00023{transform:matrix(0.225567,0.003835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225567,0.003835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225567,0.003835,-0.004249,0.249964,0,0);}
.m9e_c00023{transform:matrix(0.225835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225835,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);}
.m77_c00023{transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);}
.ma7_c00023{transform:matrix(0.227457,0.003867,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227457,0.003867,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227457,0.003867,-0.004249,0.249964,0,0);}
.m48_c00023{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.ma1_c00023{transform:matrix(0.228157,0.003879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228157,0.003879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228157,0.003879,-0.004249,0.249964,0,0);}
.m7b_c00023{transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);}
.mba_c00023{transform:matrix(0.230612,0.003920,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230612,0.003920,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230612,0.003920,-0.004249,0.249964,0,0);}
.mbf_c00023{transform:matrix(0.232266,0.003949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232266,0.003949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232266,0.003949,-0.004249,0.249964,0,0);}
.mc9_c00023{transform:matrix(0.232296,0.003949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232296,0.003949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232296,0.003949,-0.004249,0.249964,0,0);}
.ma2_c00023{transform:matrix(0.232986,0.003961,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232986,0.003961,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232986,0.003961,-0.004249,0.249964,0,0);}
.md5_c00023{transform:matrix(0.233186,0.003964,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233186,0.003964,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233186,0.003964,-0.004249,0.249964,0,0);}
.m34_c00023{transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);}
.mc7_c00023{transform:matrix(0.235171,0.003998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235171,0.003998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235171,0.003998,-0.004249,0.249964,0,0);}
.mab_c00023{transform:matrix(0.235716,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235716,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235716,0.004007,-0.004249,0.249964,0,0);}
.m9a_c00023{transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.mdf_c00023{transform:matrix(0.238995,0.004063,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238995,0.004063,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238995,0.004063,-0.004249,0.249964,0,0);}
.mc6_c00023{transform:matrix(0.241120,0.004099,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241120,0.004099,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241120,0.004099,-0.004249,0.249964,0,0);}
.mbc_c00023{transform:matrix(0.241310,0.004102,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241310,0.004102,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241310,0.004102,-0.004249,0.249964,0,0);}
.mdb_c00023{transform:matrix(0.241830,0.004111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241830,0.004111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241830,0.004111,-0.004249,0.249964,0,0);}
.m94_c00023{transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);}
.m65_c00023{transform:matrix(0.243360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243360,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.md4_c00023{transform:matrix(0.247569,0.004209,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247569,0.004209,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247569,0.004209,-0.004249,0.249964,0,0);}
.m5b_c00023{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.mdd_c00023{transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);}
.mde_c00023{transform:matrix(0.255428,0.004342,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255428,0.004342,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255428,0.004342,-0.004249,0.249964,0,0);}
.m75_c00023{transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);}
.m87_c00023{transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);}
.m8c_c00023{transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);}
.mb1_c00023{transform:matrix(0.266706,0.004534,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266706,0.004534,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266706,0.004534,-0.004249,0.249964,0,0);}
.ma4_c00023{transform:matrix(0.268071,0.004557,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268071,0.004557,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268071,0.004557,-0.004249,0.249964,0,0);}
.md1_c00023{transform:matrix(0.272806,0.004638,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272806,0.004638,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272806,0.004638,-0.004249,0.249964,0,0);}
.m73_c00023{transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273355,0.000000,0.000000,0.250000,0,0);}
.mbe_c00023{transform:matrix(0.273405,0.004648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273405,0.004648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273405,0.004648,-0.004249,0.249964,0,0);}
.mdc_c00023{transform:matrix(0.285339,0.004851,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285339,0.004851,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285339,0.004851,-0.004249,0.249964,0,0);}
.mda_c00023{transform:matrix(0.293233,0.004985,-0.004249,0.249964,0,0);-ms-transform:matrix(0.293233,0.004985,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.293233,0.004985,-0.004249,0.249964,0,0);}
.mad_c00023{transform:matrix(0.303031,0.005152,-0.004249,0.249964,0,0);-ms-transform:matrix(0.303031,0.005152,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.303031,0.005152,-0.004249,0.249964,0,0);}
.m78_c00023{transform:matrix(0.310755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310755,0.000000,0.000000,0.250000,0,0);}
.m74_c00023{transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{transform:matrix(0.378545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378545,0.000000,0.000000,0.250000,0,0);}
.ma6_c00023{transform:matrix(0.467997,0.007956,-0.004249,0.249964,0,0);-ms-transform:matrix(0.467997,0.007956,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.467997,0.007956,-0.004249,0.249964,0,0);}
.md7_c00023{transform:matrix(0.581261,0.009881,-0.004249,0.249964,0,0);-ms-transform:matrix(0.581261,0.009881,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.581261,0.009881,-0.004249,0.249964,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
.fc0_c00023{color:transparent;}
.fs12_c00023{font-size:46.206675px;}
.fsb_c00023{font-size:56.708193px;}
.fs9_c00023{font-size:57.750000px;}
.fs2_c00023{font-size:58.800000px;}
.fse_c00023{font-size:58.808496px;}
.fs4_c00023{font-size:59.850000px;}
.fsc_c00023{font-size:59.858648px;}
.fs3_c00023{font-size:60.900000px;}
.fs11_c00023{font-size:60.908799px;}
.fsa_c00023{font-size:61.950000px;}
.fsf_c00023{font-size:61.958951px;}
.fs6_c00023{font-size:64.050000px;}
.fs8_c00023{font-size:65.100000px;}
.fs5_c00023{font-size:66.150000px;}
.fsd_c00023{font-size:67.209710px;}
.fs7_c00023{font-size:68.250000px;}
.fs1_c00023{font-size:69.300000px;}
.fs10_c00023{font-size:69.310013px;}
.fs0_c00023{font-size:123.900000px;}
.y0_c00023{bottom:0.000000px;}
.ye6_c00023{bottom:29.460191px;}
.ye5_c00023{bottom:30.315206px;}
.ye4_c00023{bottom:31.394162px;}
.ye3_c00023{bottom:32.899554px;}
.ye2_c00023{bottom:33.308472px;}
.ye1_c00023{bottom:33.729834px;}
.ye0_c00023{bottom:46.630373px;}
.ydf_c00023{bottom:47.616209px;}
.yde_c00023{bottom:48.190092px;}
.ydd_c00023{bottom:49.114464px;}
.ydc_c00023{bottom:49.636778px;}
.ydb_c00023{bottom:50.595554px;}
.yda_c00023{bottom:51.010719px;}
.yd9_c00023{bottom:63.317355px;}
.yd8_c00023{bottom:64.175711px;}
.yd7_c00023{bottom:64.525673px;}
.yd6_c00023{bottom:65.205605px;}
.yd5_c00023{bottom:65.618807px;}
.yd4_c00023{bottom:66.057968px;}
.yd3_c00023{bottom:66.362514px;}
.yd2_c00023{bottom:67.399089px;}
.yd1_c00023{bottom:68.022845px;}
.yd0_c00023{bottom:79.926794px;}
.ycf_c00023{bottom:80.489888px;}
.yce_c00023{bottom:81.397533px;}
.ycd_c00023{bottom:82.790559px;}
.ycc_c00023{bottom:83.228553px;}
.ycb_c00023{bottom:84.486896px;}
.yca_c00023{bottom:85.577014px;}
.yc9_c00023{bottom:97.325472px;}
.yc8_c00023{bottom:97.643460px;}
.yc7_c00023{bottom:98.837599px;}
.yc6_c00023{bottom:100.217908px;}
.yc5_c00023{bottom:101.238336px;}
.yc4_c00023{bottom:114.265827px;}
.yc3_c00023{bottom:115.362564px;}
.yc2_c00023{bottom:115.786698px;}
.yc1_c00023{bottom:116.107134px;}
.yc0_c00023{bottom:116.953969px;}
.ybf_c00023{bottom:117.653841px;}
.ybe_c00023{bottom:118.249887px;}
.ybd_c00023{bottom:132.307552px;}
.ybc_c00023{bottom:132.655036px;}
.ybb_c00023{bottom:133.179960px;}
.yba_c00023{bottom:133.864489px;}
.yb9_c00023{bottom:134.495560px;}
.yb8_c00023{bottom:134.843503px;}
.yb7_c00023{bottom:135.202696px;}
.yb6_c00023{bottom:135.531603px;}
.yb5_c00023{bottom:149.332882px;}
.yb4_c00023{bottom:149.810181px;}
.yb3_c00023{bottom:150.340092px;}
.yb2_c00023{bottom:151.692397px;}
.yb1_c00023{bottom:152.787812px;}
.yb0_c00023{bottom:154.109595px;}
.yaf_c00023{bottom:154.634385px;}
.yae_c00023{bottom:155.245824px;}
.yad_c00023{bottom:166.304430px;}
.yac_c00023{bottom:167.576710px;}
.yab_c00023{bottom:167.870728px;}
.yaa_c00023{bottom:168.977202px;}
.ya9_c00023{bottom:169.314247px;}
.ya8_c00023{bottom:170.351271px;}
.ya7_c00023{bottom:170.643989px;}
.ya6_c00023{bottom:182.156712px;}
.ya5_c00023{bottom:182.389451px;}
.ya4_c00023{bottom:183.304441px;}
.ya3_c00023{bottom:184.346779px;}
.ya2_c00023{bottom:185.136617px;}
.ya1_c00023{bottom:186.394328px;}
.ya0_c00023{bottom:186.843000px;}
.y9f_c00023{bottom:199.686000px;}
.y9e_c00023{bottom:200.127000px;}
.y9d_c00023{bottom:201.153000px;}
.y9c_c00023{bottom:201.513000px;}
.y9b_c00023{bottom:203.098500px;}
.y9a_c00023{bottom:204.391500px;}
.y99_c00023{bottom:217.279500px;}
.y98_c00023{bottom:218.562000px;}
.y97_c00023{bottom:219.037500px;}
.y96_c00023{bottom:220.102500px;}
.y95_c00023{bottom:220.336500px;}
.y94_c00023{bottom:221.400000px;}
.y93_c00023{bottom:232.936500px;}
.y92_c00023{bottom:233.718000px;}
.y91_c00023{bottom:234.130500px;}
.y90_c00023{bottom:235.228500px;}
.y8f_c00023{bottom:236.839500px;}
.y8e_c00023{bottom:237.921000px;}
.y8d_c00023{bottom:238.563000px;}
.y8c_c00023{bottom:239.221500px;}
.y8b_c00023{bottom:252.532500px;}
.y8a_c00023{bottom:252.927000px;}
.y89_c00023{bottom:253.855500px;}
.y88_c00023{bottom:254.088000px;}
.y87_c00023{bottom:255.048000px;}
.y86_c00023{bottom:255.367500px;}
.y85_c00023{bottom:256.105500px;}
.y84_c00023{bottom:256.498500px;}
.y83_c00023{bottom:268.011000px;}
.y82_c00023{bottom:268.464000px;}
.y81_c00023{bottom:269.643000px;}
.y80_c00023{bottom:270.018000px;}
.y7f_c00023{bottom:272.455500px;}
.y7e_c00023{bottom:272.971500px;}
.y7d_c00023{bottom:284.589000px;}
.y7c_c00023{bottom:286.027500px;}
.y7b_c00023{bottom:286.401000px;}
.y7a_c00023{bottom:286.731000px;}
.y79_c00023{bottom:286.984500px;}
.y78_c00023{bottom:288.141000px;}
.y77_c00023{bottom:288.522000px;}
.y76_c00023{bottom:288.979500px;}
.y75_c00023{bottom:290.250000px;}
.y74_c00023{bottom:301.669500px;}
.y73_c00023{bottom:301.989000px;}
.y72_c00023{bottom:302.874000px;}
.y71_c00023{bottom:303.334500px;}
.y70_c00023{bottom:303.739500px;}
.y6f_c00023{bottom:305.202000px;}
.y6e_c00023{bottom:305.644500px;}
.y6d_c00023{bottom:306.988500px;}
.y6c_c00023{bottom:318.333000px;}
.y6b_c00023{bottom:318.534000px;}
.y6a_c00023{bottom:319.390500px;}
.y69_c00023{bottom:319.626000px;}
.y68_c00023{bottom:320.577000px;}
.y67_c00023{bottom:321.804000px;}
.y66_c00023{bottom:322.647000px;}
.y65_c00023{bottom:336.432000px;}
.y64_c00023{bottom:337.494000px;}
.y63_c00023{bottom:337.944000px;}
.y62_c00023{bottom:338.818500px;}
.y61_c00023{bottom:339.235500px;}
.y60_c00023{bottom:339.928500px;}
.y5f_c00023{bottom:353.590500px;}
.y5e_c00023{bottom:354.100500px;}
.y5d_c00023{bottom:354.384000px;}
.y5c_c00023{bottom:355.383000px;}
.y5b_c00023{bottom:355.776000px;}
.y5a_c00023{bottom:356.773500px;}
.y59_c00023{bottom:357.019500px;}
.y58_c00023{bottom:357.477000px;}
.y57_c00023{bottom:369.138000px;}
.y56_c00023{bottom:370.029000px;}
.y55_c00023{bottom:371.662500px;}
.y54_c00023{bottom:372.174000px;}
.y53_c00023{bottom:372.895500px;}
.y52_c00023{bottom:373.780500px;}
.y51_c00023{bottom:375.028500px;}
.y50_c00023{bottom:385.641000px;}
.y4f_c00023{bottom:386.778000px;}
.y4e_c00023{bottom:387.115500px;}
.y4d_c00023{bottom:389.517000px;}
.y4c_c00023{bottom:390.849000px;}
.y4b_c00023{bottom:391.419000px;}
.y4a_c00023{bottom:392.041500px;}
.y49_c00023{bottom:403.300500px;}
.y48_c00023{bottom:403.974000px;}
.y47_c00023{bottom:405.099000px;}
.y46_c00023{bottom:405.466500px;}
.y45_c00023{bottom:407.188500px;}
.y44_c00023{bottom:408.241500px;}
.y43_c00023{bottom:419.949000px;}
.y42_c00023{bottom:421.263000px;}
.y41_c00023{bottom:422.380500px;}
.y40_c00023{bottom:423.508500px;}
.y3f_c00023{bottom:423.921000px;}
.y3e_c00023{bottom:424.980000px;}
.y3d_c00023{bottom:436.989000px;}
.y3c_c00023{bottom:437.620500px;}
.y3b_c00023{bottom:437.850000px;}
.y3a_c00023{bottom:439.000500px;}
.y39_c00023{bottom:439.791000px;}
.y38_c00023{bottom:440.374500px;}
.y37_c00023{bottom:440.830500px;}
.y36_c00023{bottom:441.150000px;}
.y35_c00023{bottom:441.991500px;}
.y34_c00023{bottom:453.825000px;}
.y33_c00023{bottom:454.324500px;}
.y32_c00023{bottom:455.185500px;}
.y31_c00023{bottom:455.715000px;}
.y30_c00023{bottom:456.546000px;}
.y2f_c00023{bottom:457.917000px;}
.y2e_c00023{bottom:458.359500px;}
.y2d_c00023{bottom:459.000000px;}
.y2c_c00023{bottom:471.691500px;}
.y2b_c00023{bottom:472.336500px;}
.y2a_c00023{bottom:472.618500px;}
.y29_c00023{bottom:473.326500px;}
.y28_c00023{bottom:473.730000px;}
.y27_c00023{bottom:475.618500px;}
.y26_c00023{bottom:475.806000px;}
.y25_c00023{bottom:476.824500px;}
.y24_c00023{bottom:487.995000px;}
.y23_c00023{bottom:488.691000px;}
.y22_c00023{bottom:489.684000px;}
.y21_c00023{bottom:489.991500px;}
.y20_c00023{bottom:490.150500px;}
.y1f_c00023{bottom:490.851000px;}
.y1e_c00023{bottom:491.596500px;}
.y1d_c00023{bottom:492.211500px;}
.y1c_c00023{bottom:504.397500px;}
.y1b_c00023{bottom:505.423500px;}
.y1a_c00023{bottom:506.631000px;}
.y19_c00023{bottom:506.925000px;}
.y18_c00023{bottom:507.921000px;}
.y17_c00023{bottom:509.113500px;}
.y16_c00023{bottom:509.509500px;}
.y15_c00023{bottom:510.399000px;}
.y14_c00023{bottom:510.841500px;}
.y13_c00023{bottom:522.870000px;}
.y12_c00023{bottom:523.737000px;}
.y11_c00023{bottom:524.614500px;}
.y10_c00023{bottom:524.871000px;}
.yf_c00023{bottom:526.107000px;}
.ye_c00023{bottom:526.500000px;}
.yd_c00023{bottom:539.229000px;}
.yc_c00023{bottom:539.793000px;}
.yb_c00023{bottom:541.014000px;}
.ya_c00023{bottom:541.171500px;}
.y9_c00023{bottom:541.842000px;}
.y8_c00023{bottom:542.431500px;}
.y7_c00023{bottom:555.475500px;}
.y6_c00023{bottom:556.764000px;}
.y5_c00023{bottom:557.671500px;}
.y4_c00023{bottom:558.028500px;}
.y3_c00023{bottom:558.288000px;}
.y2_c00023{bottom:559.713000px;}
.y1_c00023{bottom:570.912000px;}
.h14_c00023{height:46.206675px;}
.hd_c00023{height:56.708193px;}
.hb_c00023{height:57.750000px;}
.h4_c00023{height:58.800000px;}
.h10_c00023{height:58.808496px;}
.h6_c00023{height:59.850000px;}
.he_c00023{height:59.858648px;}
.h5_c00023{height:60.900000px;}
.h13_c00023{height:60.908799px;}
.hc_c00023{height:61.950000px;}
.h11_c00023{height:61.958951px;}
.h8_c00023{height:64.050000px;}
.ha_c00023{height:65.100000px;}
.h7_c00023{height:66.150000px;}
.hf_c00023{height:67.209710px;}
.h9_c00023{height:68.250000px;}
.h3_c00023{height:69.300000px;}
.h12_c00023{height:69.310013px;}
.h2_c00023{height:123.900000px;}
.h0_c00023{height:615.600000px;}
.h1_c00023{height:615.750000px;}
.w0_c00023{width:367.200000px;}
.w1_c00023{width:367.500000px;}
.x0_c00023{left:0.000000px;}
.x7e_c00023{left:39.255925px;}
.x77_c00023{left:40.632636px;}
.x64_c00023{left:42.545244px;}
.x54_c00023{left:44.937000px;}
.x43_c00023{left:46.524000px;}
.x33_c00023{left:48.354000px;}
.x1e_c00023{left:49.423500px;}
.x7_c00023{left:50.616000px;}
.x2_c00023{left:51.919500px;}
.x65_c00023{left:60.823050px;}
.x7f_c00023{left:64.041925px;}
.x6e_c00023{left:66.525844px;}
.x68_c00023{left:68.316105px;}
.x51_c00023{left:70.209000px;}
.x11_c00023{left:71.317500px;}
.xd_c00023{left:75.646500px;}
.x78_c00023{left:77.324136px;}
.x62_c00023{left:79.156500px;}
.x6f_c00023{left:82.223636px;}
.x25_c00023{left:84.537000px;}
.x80_c00023{left:88.095925px;}
.x69_c00023{left:90.183504px;}
.x19_c00023{left:91.591500px;}
.x8_c00023{left:92.689500px;}
.x1f_c00023{left:95.689500px;}
.x34_c00023{left:100.989000px;}
.x36_c00023{left:102.292500px;}
.x20_c00023{left:104.218500px;}
.x2e_c00023{left:107.484000px;}
.x26_c00023{left:109.123500px;}
.x60_c00023{left:112.327500px;}
.x12_c00023{left:113.683500px;}
.x55_c00023{left:115.633500px;}
.x5c_c00023{left:116.671500px;}
.x44_c00023{left:120.492000px;}
.x4c_c00023{left:124.738500px;}
.x7c_c00023{left:126.495970px;}
.x70_c00023{left:128.864717px;}
.x2f_c00023{left:130.441500px;}
.x13_c00023{left:132.570000px;}
.x2b_c00023{left:133.753500px;}
.x48_c00023{left:135.864000px;}
.x79_c00023{left:138.299136px;}
.x9_c00023{left:140.545500px;}
.x4d_c00023{left:142.051500px;}
.x3b_c00023{left:144.802500px;}
.x3_c00023{left:146.946000px;}
.xe_c00023{left:148.351500px;}
.xa_c00023{left:151.830000px;}
.x40_c00023{left:153.957000px;}
.x7a_c00023{left:156.213636px;}
.x74_c00023{left:159.324850px;}
.x37_c00023{left:162.814500px;}
.x4_c00023{left:164.226000px;}
.x5d_c00023{left:175.812000px;}
.x3c_c00023{left:177.625500px;}
.x45_c00023{left:178.803000px;}
.x75_c00023{left:181.205728px;}
.x27_c00023{left:185.248500px;}
.x52_c00023{left:186.303000px;}
.x1_c00023{left:187.920000px;}
.x14_c00023{left:189.381000px;}
.x6a_c00023{left:190.889019px;}
.x30_c00023{left:193.075500px;}
.x4e_c00023{left:194.593500px;}
.x61_c00023{left:195.753000px;}
.x1a_c00023{left:198.520500px;}
.x63_c00023{left:199.600500px;}
.x3d_c00023{left:200.869500px;}
.x5e_c00023{left:202.263000px;}
.x53_c00023{left:204.126000px;}
.x2c_c00023{left:206.031000px;}
.x21_c00023{left:208.435500px;}
.x56_c00023{left:210.139500px;}
.x71_c00023{left:213.691335px;}
.xf_c00023{left:214.993500px;}
.x7d_c00023{left:216.979026px;}
.x1b_c00023{left:219.055500px;}
.x4f_c00023{left:221.136000px;}
.x59_c00023{left:226.305000px;}
.x49_c00023{left:229.246500px;}
.x28_c00023{left:231.427500px;}
.x66_c00023{left:234.182483px;}
.x15_c00023{left:236.812500px;}
.xb_c00023{left:239.038500px;}
.x22_c00023{left:240.585000px;}
.x6b_c00023{left:247.223813px;}
.x5_c00023{left:248.467500px;}
.x16_c00023{left:250.840500px;}
.x4a_c00023{left:252.252000px;}
.x23_c00023{left:253.375500px;}
.x31_c00023{left:255.189000px;}
.x41_c00023{left:258.721500px;}
.x29_c00023{left:260.877000px;}
.x46_c00023{left:263.593500px;}
.x10_c00023{left:265.995000px;}
.x57_c00023{left:268.188000px;}
.x6c_c00023{left:269.304186px;}
.x38_c00023{left:271.942500px;}
.x5f_c00023{left:273.529500px;}
.x3e_c00023{left:275.119500px;}
.x5a_c00023{left:276.183000px;}
.xc_c00023{left:279.271500px;}
.x24_c00023{left:282.684000px;}
.x1c_c00023{left:285.214500px;}
.x39_c00023{left:287.271000px;}
.x6d_c00023{left:289.172314px;}
.x42_c00023{left:290.595000px;}
.x58_c00023{left:292.798500px;}
.x35_c00023{left:295.402500px;}
.x4b_c00023{left:296.476500px;}
.x72_c00023{left:298.939170px;}
.x50_c00023{left:303.553500px;}
.x17_c00023{left:308.359500px;}
.x2d_c00023{left:311.878500px;}
.x67_c00023{left:313.700334px;}
.x3f_c00023{left:315.624000px;}
.x7b_c00023{left:317.426136px;}
.x47_c00023{left:320.656500px;}
.x73_c00023{left:321.704343px;}
.x76_c00023{left:324.419935px;}
.x32_c00023{left:328.182000px;}
.x5b_c00023{left:330.486000px;}
.x1d_c00023{left:331.648500px;}
.x6_c00023{left:334.384500px;}
.x2a_c00023{left:336.462000px;}
.x3a_c00023{left:338.952000px;}
.x18_c00023{left:357.193500px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs12_c00023{font-size:41.072600pt;}
.fsb_c00023{font-size:50.407282pt;}
.fs9_c00023{font-size:51.333333pt;}
.fs2_c00023{font-size:52.266667pt;}
.fse_c00023{font-size:52.274219pt;}
.fs4_c00023{font-size:53.200000pt;}
.fsc_c00023{font-size:53.207687pt;}
.fs3_c00023{font-size:54.133333pt;}
.fs11_c00023{font-size:54.141155pt;}
.fsa_c00023{font-size:55.066667pt;}
.fsf_c00023{font-size:55.074623pt;}
.fs6_c00023{font-size:56.933333pt;}
.fs8_c00023{font-size:57.866667pt;}
.fs5_c00023{font-size:58.800000pt;}
.fsd_c00023{font-size:59.741964pt;}
.fs7_c00023{font-size:60.666667pt;}
.fs1_c00023{font-size:61.600000pt;}
.fs10_c00023{font-size:61.608901pt;}
.fs0_c00023{font-size:110.133333pt;}
.y0_c00023{bottom:0.000000pt;}
.ye6_c00023{bottom:26.186836pt;}
.ye5_c00023{bottom:26.946849pt;}
.ye4_c00023{bottom:27.905921pt;}
.ye3_c00023{bottom:29.244048pt;}
.ye2_c00023{bottom:29.607531pt;}
.ye1_c00023{bottom:29.982075pt;}
.ye0_c00023{bottom:41.449220pt;}
.ydf_c00023{bottom:42.325519pt;}
.yde_c00023{bottom:42.835637pt;}
.ydd_c00023{bottom:43.657301pt;}
.ydc_c00023{bottom:44.121580pt;}
.ydb_c00023{bottom:44.973825pt;}
.yda_c00023{bottom:45.342861pt;}
.yd9_c00023{bottom:56.282093pt;}
.yd8_c00023{bottom:57.045076pt;}
.yd7_c00023{bottom:57.356153pt;}
.yd6_c00023{bottom:57.960537pt;}
.yd5_c00023{bottom:58.327828pt;}
.yd4_c00023{bottom:58.718193pt;}
.yd3_c00023{bottom:58.988901pt;}
.yd2_c00023{bottom:59.910301pt;}
.yd1_c00023{bottom:60.464751pt;}
.yd0_c00023{bottom:71.046039pt;}
.ycf_c00023{bottom:71.546567pt;}
.yce_c00023{bottom:72.353363pt;}
.ycd_c00023{bottom:73.591608pt;}
.ycc_c00023{bottom:73.980936pt;}
.ycb_c00023{bottom:75.099463pt;}
.yca_c00023{bottom:76.068457pt;}
.yc9_c00023{bottom:86.511531pt;}
.yc8_c00023{bottom:86.794187pt;}
.yc7_c00023{bottom:87.855644pt;}
.yc6_c00023{bottom:89.082585pt;}
.yc5_c00023{bottom:89.989632pt;}
.yc4_c00023{bottom:101.569624pt;}
.yc3_c00023{bottom:102.544501pt;}
.yc2_c00023{bottom:102.921509pt;}
.yc1_c00023{bottom:103.206341pt;}
.yc0_c00023{bottom:103.959084pt;}
.ybf_c00023{bottom:104.581192pt;}
.ybe_c00023{bottom:105.111011pt;}
.ybd_c00023{bottom:117.606713pt;}
.ybc_c00023{bottom:117.915588pt;}
.ybb_c00023{bottom:118.382187pt;}
.yba_c00023{bottom:118.990657pt;}
.yb9_c00023{bottom:119.551609pt;}
.yb8_c00023{bottom:119.860892pt;}
.yb7_c00023{bottom:120.180175pt;}
.yb6_c00023{bottom:120.472536pt;}
.yb5_c00023{bottom:132.740340pt;}
.yb4_c00023{bottom:133.164605pt;}
.yb3_c00023{bottom:133.635637pt;}
.yb2_c00023{bottom:134.837687pt;}
.yb1_c00023{bottom:135.811388pt;}
.yb0_c00023{bottom:136.986307pt;}
.yaf_c00023{bottom:137.452787pt;}
.yae_c00023{bottom:137.996288pt;}
.yad_c00023{bottom:147.826160pt;}
.yac_c00023{bottom:148.957076pt;}
.yab_c00023{bottom:149.218425pt;}
.yaa_c00023{bottom:150.201957pt;}
.ya9_c00023{bottom:150.501553pt;}
.ya8_c00023{bottom:151.423352pt;}
.ya7_c00023{bottom:151.683545pt;}
.ya6_c00023{bottom:161.917077pt;}
.ya5_c00023{bottom:162.123956pt;}
.ya4_c00023{bottom:162.937281pt;}
.ya3_c00023{bottom:163.863804pt;}
.ya2_c00023{bottom:164.565881pt;}
.ya1_c00023{bottom:165.683847pt;}
.ya0_c00023{bottom:166.082667pt;}
.y9f_c00023{bottom:177.498667pt;}
.y9e_c00023{bottom:177.890667pt;}
.y9d_c00023{bottom:178.802667pt;}
.y9c_c00023{bottom:179.122667pt;}
.y9b_c00023{bottom:180.532000pt;}
.y9a_c00023{bottom:181.681333pt;}
.y99_c00023{bottom:193.137333pt;}
.y98_c00023{bottom:194.277333pt;}
.y97_c00023{bottom:194.700000pt;}
.y96_c00023{bottom:195.646667pt;}
.y95_c00023{bottom:195.854667pt;}
.y94_c00023{bottom:196.800000pt;}
.y93_c00023{bottom:207.054667pt;}
.y92_c00023{bottom:207.749333pt;}
.y91_c00023{bottom:208.116000pt;}
.y90_c00023{bottom:209.092000pt;}
.y8f_c00023{bottom:210.524000pt;}
.y8e_c00023{bottom:211.485333pt;}
.y8d_c00023{bottom:212.056000pt;}
.y8c_c00023{bottom:212.641333pt;}
.y8b_c00023{bottom:224.473333pt;}
.y8a_c00023{bottom:224.824000pt;}
.y89_c00023{bottom:225.649333pt;}
.y88_c00023{bottom:225.856000pt;}
.y87_c00023{bottom:226.709333pt;}
.y86_c00023{bottom:226.993333pt;}
.y85_c00023{bottom:227.649333pt;}
.y84_c00023{bottom:227.998667pt;}
.y83_c00023{bottom:238.232000pt;}
.y82_c00023{bottom:238.634667pt;}
.y81_c00023{bottom:239.682667pt;}
.y80_c00023{bottom:240.016000pt;}
.y7f_c00023{bottom:242.182667pt;}
.y7e_c00023{bottom:242.641333pt;}
.y7d_c00023{bottom:252.968000pt;}
.y7c_c00023{bottom:254.246667pt;}
.y7b_c00023{bottom:254.578667pt;}
.y7a_c00023{bottom:254.872000pt;}
.y79_c00023{bottom:255.097333pt;}
.y78_c00023{bottom:256.125333pt;}
.y77_c00023{bottom:256.464000pt;}
.y76_c00023{bottom:256.870667pt;}
.y75_c00023{bottom:258.000000pt;}
.y74_c00023{bottom:268.150667pt;}
.y73_c00023{bottom:268.434667pt;}
.y72_c00023{bottom:269.221333pt;}
.y71_c00023{bottom:269.630667pt;}
.y70_c00023{bottom:269.990667pt;}
.y6f_c00023{bottom:271.290667pt;}
.y6e_c00023{bottom:271.684000pt;}
.y6d_c00023{bottom:272.878667pt;}
.y6c_c00023{bottom:282.962667pt;}
.y6b_c00023{bottom:283.141333pt;}
.y6a_c00023{bottom:283.902667pt;}
.y69_c00023{bottom:284.112000pt;}
.y68_c00023{bottom:284.957333pt;}
.y67_c00023{bottom:286.048000pt;}
.y66_c00023{bottom:286.797333pt;}
.y65_c00023{bottom:299.050667pt;}
.y64_c00023{bottom:299.994667pt;}
.y63_c00023{bottom:300.394667pt;}
.y62_c00023{bottom:301.172000pt;}
.y61_c00023{bottom:301.542667pt;}
.y60_c00023{bottom:302.158667pt;}
.y5f_c00023{bottom:314.302667pt;}
.y5e_c00023{bottom:314.756000pt;}
.y5d_c00023{bottom:315.008000pt;}
.y5c_c00023{bottom:315.896000pt;}
.y5b_c00023{bottom:316.245333pt;}
.y5a_c00023{bottom:317.132000pt;}
.y59_c00023{bottom:317.350667pt;}
.y58_c00023{bottom:317.757333pt;}
.y57_c00023{bottom:328.122667pt;}
.y56_c00023{bottom:328.914667pt;}
.y55_c00023{bottom:330.366667pt;}
.y54_c00023{bottom:330.821333pt;}
.y53_c00023{bottom:331.462667pt;}
.y52_c00023{bottom:332.249333pt;}
.y51_c00023{bottom:333.358667pt;}
.y50_c00023{bottom:342.792000pt;}
.y4f_c00023{bottom:343.802667pt;}
.y4e_c00023{bottom:344.102667pt;}
.y4d_c00023{bottom:346.237333pt;}
.y4c_c00023{bottom:347.421333pt;}
.y4b_c00023{bottom:347.928000pt;}
.y4a_c00023{bottom:348.481333pt;}
.y49_c00023{bottom:358.489333pt;}
.y48_c00023{bottom:359.088000pt;}
.y47_c00023{bottom:360.088000pt;}
.y46_c00023{bottom:360.414667pt;}
.y45_c00023{bottom:361.945333pt;}
.y44_c00023{bottom:362.881333pt;}
.y43_c00023{bottom:373.288000pt;}
.y42_c00023{bottom:374.456000pt;}
.y41_c00023{bottom:375.449333pt;}
.y40_c00023{bottom:376.452000pt;}
.y3f_c00023{bottom:376.818667pt;}
.y3e_c00023{bottom:377.760000pt;}
.y3d_c00023{bottom:388.434667pt;}
.y3c_c00023{bottom:388.996000pt;}
.y3b_c00023{bottom:389.200000pt;}
.y3a_c00023{bottom:390.222667pt;}
.y39_c00023{bottom:390.925333pt;}
.y38_c00023{bottom:391.444000pt;}
.y37_c00023{bottom:391.849333pt;}
.y36_c00023{bottom:392.133333pt;}
.y35_c00023{bottom:392.881333pt;}
.y34_c00023{bottom:403.400000pt;}
.y33_c00023{bottom:403.844000pt;}
.y32_c00023{bottom:404.609333pt;}
.y31_c00023{bottom:405.080000pt;}
.y30_c00023{bottom:405.818667pt;}
.y2f_c00023{bottom:407.037333pt;}
.y2e_c00023{bottom:407.430667pt;}
.y2d_c00023{bottom:408.000000pt;}
.y2c_c00023{bottom:419.281333pt;}
.y2b_c00023{bottom:419.854667pt;}
.y2a_c00023{bottom:420.105333pt;}
.y29_c00023{bottom:420.734667pt;}
.y28_c00023{bottom:421.093333pt;}
.y27_c00023{bottom:422.772000pt;}
.y26_c00023{bottom:422.938667pt;}
.y25_c00023{bottom:423.844000pt;}
.y24_c00023{bottom:433.773333pt;}
.y23_c00023{bottom:434.392000pt;}
.y22_c00023{bottom:435.274667pt;}
.y21_c00023{bottom:435.548000pt;}
.y20_c00023{bottom:435.689333pt;}
.y1f_c00023{bottom:436.312000pt;}
.y1e_c00023{bottom:436.974667pt;}
.y1d_c00023{bottom:437.521333pt;}
.y1c_c00023{bottom:448.353333pt;}
.y1b_c00023{bottom:449.265333pt;}
.y1a_c00023{bottom:450.338667pt;}
.y19_c00023{bottom:450.600000pt;}
.y18_c00023{bottom:451.485333pt;}
.y17_c00023{bottom:452.545333pt;}
.y16_c00023{bottom:452.897333pt;}
.y15_c00023{bottom:453.688000pt;}
.y14_c00023{bottom:454.081333pt;}
.y13_c00023{bottom:464.773333pt;}
.y12_c00023{bottom:465.544000pt;}
.y11_c00023{bottom:466.324000pt;}
.y10_c00023{bottom:466.552000pt;}
.yf_c00023{bottom:467.650667pt;}
.ye_c00023{bottom:468.000000pt;}
.yd_c00023{bottom:479.314667pt;}
.yc_c00023{bottom:479.816000pt;}
.yb_c00023{bottom:480.901333pt;}
.ya_c00023{bottom:481.041333pt;}
.y9_c00023{bottom:481.637333pt;}
.y8_c00023{bottom:482.161333pt;}
.y7_c00023{bottom:493.756000pt;}
.y6_c00023{bottom:494.901333pt;}
.y5_c00023{bottom:495.708000pt;}
.y4_c00023{bottom:496.025333pt;}
.y3_c00023{bottom:496.256000pt;}
.y2_c00023{bottom:497.522667pt;}
.y1_c00023{bottom:507.477333pt;}
.h14_c00023{height:41.072600pt;}
.hd_c00023{height:50.407282pt;}
.hb_c00023{height:51.333333pt;}
.h4_c00023{height:52.266667pt;}
.h10_c00023{height:52.274219pt;}
.h6_c00023{height:53.200000pt;}
.he_c00023{height:53.207687pt;}
.h5_c00023{height:54.133333pt;}
.h13_c00023{height:54.141155pt;}
.hc_c00023{height:55.066667pt;}
.h11_c00023{height:55.074623pt;}
.h8_c00023{height:56.933333pt;}
.ha_c00023{height:57.866667pt;}
.h7_c00023{height:58.800000pt;}
.hf_c00023{height:59.741964pt;}
.h9_c00023{height:60.666667pt;}
.h3_c00023{height:61.600000pt;}
.h12_c00023{height:61.608901pt;}
.h2_c00023{height:110.133333pt;}
.h0_c00023{height:547.200000pt;}
.h1_c00023{height:547.333333pt;}
.w0_c00023{width:326.400000pt;}
.w1_c00023{width:326.666667pt;}
.x0_c00023{left:0.000000pt;}
.x7e_c00023{left:34.894156pt;}
.x77_c00023{left:36.117899pt;}
.x64_c00023{left:37.817995pt;}
.x54_c00023{left:39.944000pt;}
.x43_c00023{left:41.354667pt;}
.x33_c00023{left:42.981333pt;}
.x1e_c00023{left:43.932000pt;}
.x7_c00023{left:44.992000pt;}
.x2_c00023{left:46.150667pt;}
.x65_c00023{left:54.064933pt;}
.x7f_c00023{left:56.926156pt;}
.x6e_c00023{left:59.134084pt;}
.x68_c00023{left:60.725427pt;}
.x51_c00023{left:62.408000pt;}
.x11_c00023{left:63.393333pt;}
.xd_c00023{left:67.241333pt;}
.x78_c00023{left:68.732565pt;}
.x62_c00023{left:70.361333pt;}
.x6f_c00023{left:73.087676pt;}
.x25_c00023{left:75.144000pt;}
.x80_c00023{left:78.307489pt;}
.x69_c00023{left:80.163115pt;}
.x19_c00023{left:81.414667pt;}
.x8_c00023{left:82.390667pt;}
.x1f_c00023{left:85.057333pt;}
.x34_c00023{left:89.768000pt;}
.x36_c00023{left:90.926667pt;}
.x20_c00023{left:92.638667pt;}
.x2e_c00023{left:95.541333pt;}
.x26_c00023{left:96.998667pt;}
.x60_c00023{left:99.846667pt;}
.x12_c00023{left:101.052000pt;}
.x55_c00023{left:102.785333pt;}
.x5c_c00023{left:103.708000pt;}
.x44_c00023{left:107.104000pt;}
.x4c_c00023{left:110.878667pt;}
.x7c_c00023{left:112.440863pt;}
.x70_c00023{left:114.546415pt;}
.x2f_c00023{left:115.948000pt;}
.x13_c00023{left:117.840000pt;}
.x2b_c00023{left:118.892000pt;}
.x48_c00023{left:120.768000pt;}
.x79_c00023{left:122.932565pt;}
.x9_c00023{left:124.929333pt;}
.x4d_c00023{left:126.268000pt;}
.x3b_c00023{left:128.713333pt;}
.x3_c00023{left:130.618667pt;}
.xe_c00023{left:131.868000pt;}
.xa_c00023{left:134.960000pt;}
.x40_c00023{left:136.850667pt;}
.x7a_c00023{left:138.856565pt;}
.x74_c00023{left:141.622089pt;}
.x37_c00023{left:144.724000pt;}
.x4_c00023{left:145.978667pt;}
.x5d_c00023{left:156.277333pt;}
.x3c_c00023{left:157.889333pt;}
.x45_c00023{left:158.936000pt;}
.x75_c00023{left:161.071759pt;}
.x27_c00023{left:164.665333pt;}
.x52_c00023{left:165.602667pt;}
.x1_c00023{left:167.040000pt;}
.x14_c00023{left:168.338667pt;}
.x6a_c00023{left:169.679128pt;}
.x30_c00023{left:171.622667pt;}
.x4e_c00023{left:172.972000pt;}
.x61_c00023{left:174.002667pt;}
.x1a_c00023{left:176.462667pt;}
.x63_c00023{left:177.422667pt;}
.x3d_c00023{left:178.550667pt;}
.x5e_c00023{left:179.789333pt;}
.x53_c00023{left:181.445333pt;}
.x2c_c00023{left:183.138667pt;}
.x21_c00023{left:185.276000pt;}
.x56_c00023{left:186.790667pt;}
.x71_c00023{left:189.947853pt;}
.xf_c00023{left:191.105333pt;}
.x7d_c00023{left:192.870245pt;}
.x1b_c00023{left:194.716000pt;}
.x4f_c00023{left:196.565333pt;}
.x59_c00023{left:201.160000pt;}
.x49_c00023{left:203.774667pt;}
.x28_c00023{left:205.713333pt;}
.x66_c00023{left:208.162207pt;}
.x15_c00023{left:210.500000pt;}
.xb_c00023{left:212.478667pt;}
.x22_c00023{left:213.853333pt;}
.x6b_c00023{left:219.754500pt;}
.x5_c00023{left:220.860000pt;}
.x16_c00023{left:222.969333pt;}
.x4a_c00023{left:224.224000pt;}
.x23_c00023{left:225.222667pt;}
.x31_c00023{left:226.834667pt;}
.x41_c00023{left:229.974667pt;}
.x29_c00023{left:231.890667pt;}
.x46_c00023{left:234.305333pt;}
.x10_c00023{left:236.440000pt;}
.x57_c00023{left:238.389333pt;}
.x6c_c00023{left:239.381499pt;}
.x38_c00023{left:241.726667pt;}
.x5f_c00023{left:243.137333pt;}
.x3e_c00023{left:244.550667pt;}
.x5a_c00023{left:245.496000pt;}
.xc_c00023{left:248.241333pt;}
.x24_c00023{left:251.274667pt;}
.x1c_c00023{left:253.524000pt;}
.x39_c00023{left:255.352000pt;}
.x6d_c00023{left:257.042057pt;}
.x42_c00023{left:258.306667pt;}
.x58_c00023{left:260.265333pt;}
.x35_c00023{left:262.580000pt;}
.x4b_c00023{left:263.534667pt;}
.x72_c00023{left:265.723707pt;}
.x50_c00023{left:269.825333pt;}
.x17_c00023{left:274.097333pt;}
.x2d_c00023{left:277.225333pt;}
.x67_c00023{left:278.844741pt;}
.x3f_c00023{left:280.554667pt;}
.x7b_c00023{left:282.156565pt;}
.x47_c00023{left:285.028000pt;}
.x73_c00023{left:285.959416pt;}
.x76_c00023{left:288.373276pt;}
.x32_c00023{left:291.717333pt;}
.x5b_c00023{left:293.765333pt;}
.x1d_c00023{left:294.798667pt;}
.x6_c00023{left:297.230667pt;}
.x2a_c00023{left:299.077333pt;}
.x3a_c00023{left:301.290667pt;}
.x18_c00023{left:317.505333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00024 {
    display:none;
  }
  .loading-indicator_c00024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00024 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00024 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00024" -> "#page-container .classname_c00024")
 */
.pf_c00024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00024 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00024 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00024 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00024 {overflow:visible;}
  }
}
.c_c00024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00024 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00024:after { /* webkit #35443 */
  content: '';
}
.t_c00024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00024 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00024 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00024 { /* info for Javascript */
  display:none;
}
.l_c00024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00024:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00024 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00024.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00024{transform:matrix(0.006706,0.000356,-0.013245,0.249649,0,0);-ms-transform:matrix(0.006706,0.000356,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.006706,0.000356,-0.013245,0.249649,0,0);}
.m86_c00024{transform:matrix(0.027232,0.001445,-0.013245,0.249649,0,0);-ms-transform:matrix(0.027232,0.001445,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.027232,0.001445,-0.013245,0.249649,0,0);}
.m88_c00024{transform:matrix(0.054463,0.002889,-0.013245,0.249649,0,0);-ms-transform:matrix(0.054463,0.002889,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.054463,0.002889,-0.013245,0.249649,0,0);}
.m1_c00024{transform:matrix(0.107649,0.005711,-0.013245,0.249649,0,0);-ms-transform:matrix(0.107649,0.005711,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.107649,0.005711,-0.013245,0.249649,0,0);}
.me0_c00024{transform:matrix(0.123521,0.006553,-0.013245,0.249649,0,0);-ms-transform:matrix(0.123521,0.006553,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.123521,0.006553,-0.013245,0.249649,0,0);}
.m7e_c00024{transform:matrix(0.143753,0.007627,-0.013245,0.249649,0,0);-ms-transform:matrix(0.143753,0.007627,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.143753,0.007627,-0.013245,0.249649,0,0);}
.mb0_c00024{transform:matrix(0.145271,0.007707,-0.013245,0.249649,0,0);-ms-transform:matrix(0.145271,0.007707,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.145271,0.007707,-0.013245,0.249649,0,0);}
.m6c_c00024{transform:matrix(0.147642,0.007833,-0.013245,0.249649,0,0);-ms-transform:matrix(0.147642,0.007833,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.147642,0.007833,-0.013245,0.249649,0,0);}
.m36_c00024{transform:matrix(0.148691,0.007889,-0.013245,0.249649,0,0);-ms-transform:matrix(0.148691,0.007889,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.148691,0.007889,-0.013245,0.249649,0,0);}
.m79_c00024{transform:matrix(0.150923,0.008007,-0.013245,0.249649,0,0);-ms-transform:matrix(0.150923,0.008007,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.150923,0.008007,-0.013245,0.249649,0,0);}
.mcd_c00024{transform:matrix(0.152116,0.008070,-0.013245,0.249649,0,0);-ms-transform:matrix(0.152116,0.008070,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.152116,0.008070,-0.013245,0.249649,0,0);}
.mb3_c00024{transform:matrix(0.152231,0.008076,-0.013245,0.249649,0,0);-ms-transform:matrix(0.152231,0.008076,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.152231,0.008076,-0.013245,0.249649,0,0);}
.m96_c00024{transform:matrix(0.155242,0.008236,-0.013245,0.249649,0,0);-ms-transform:matrix(0.155242,0.008236,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.155242,0.008236,-0.013245,0.249649,0,0);}
.mce_c00024{transform:matrix(0.155951,0.008274,-0.013245,0.249649,0,0);-ms-transform:matrix(0.155951,0.008274,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.155951,0.008274,-0.013245,0.249649,0,0);}
.mac_c00024{transform:matrix(0.157214,0.008341,-0.013245,0.249649,0,0);-ms-transform:matrix(0.157214,0.008341,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.157214,0.008341,-0.013245,0.249649,0,0);}
.ma1_c00024{transform:matrix(0.157479,0.008355,-0.013245,0.249649,0,0);-ms-transform:matrix(0.157479,0.008355,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.157479,0.008355,-0.013245,0.249649,0,0);}
.m87_c00024{transform:matrix(0.158782,0.008424,-0.013245,0.249649,0,0);-ms-transform:matrix(0.158782,0.008424,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.158782,0.008424,-0.013245,0.249649,0,0);}
.m8_c00024{transform:matrix(0.160759,0.008529,-0.013245,0.249649,0,0);-ms-transform:matrix(0.160759,0.008529,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.160759,0.008529,-0.013245,0.249649,0,0);}
.m3a_c00024{transform:matrix(0.160789,0.008530,-0.013245,0.249649,0,0);-ms-transform:matrix(0.160789,0.008530,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.160789,0.008530,-0.013245,0.249649,0,0);}
.mc0_c00024{transform:matrix(0.162651,0.008629,-0.013245,0.249649,0,0);-ms-transform:matrix(0.162651,0.008629,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.162651,0.008629,-0.013245,0.249649,0,0);}
.m51_c00024{transform:matrix(0.162716,0.008633,-0.013245,0.249649,0,0);-ms-transform:matrix(0.162716,0.008633,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.162716,0.008633,-0.013245,0.249649,0,0);}
.m9f_c00024{transform:matrix(0.165417,0.008776,-0.013245,0.249649,0,0);-ms-transform:matrix(0.165417,0.008776,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.165417,0.008776,-0.013245,0.249649,0,0);}
.mdb_c00024{transform:matrix(0.166895,0.008854,-0.013245,0.249649,0,0);-ms-transform:matrix(0.166895,0.008854,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.166895,0.008854,-0.013245,0.249649,0,0);}
.md1_c00024{transform:matrix(0.167115,0.008866,-0.013245,0.249649,0,0);-ms-transform:matrix(0.167115,0.008866,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.167115,0.008866,-0.013245,0.249649,0,0);}
.mcb_c00024{transform:matrix(0.167175,0.008869,-0.013245,0.249649,0,0);-ms-transform:matrix(0.167175,0.008869,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.167175,0.008869,-0.013245,0.249649,0,0);}
.m11_c00024{transform:matrix(0.167779,0.008901,-0.013245,0.249649,0,0);-ms-transform:matrix(0.167779,0.008901,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.167779,0.008901,-0.013245,0.249649,0,0);}
.mae_c00024{transform:matrix(0.168313,0.008930,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168313,0.008930,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168313,0.008930,-0.013245,0.249649,0,0);}
.m0_c00024{transform:matrix(0.168438,0.008936,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168438,0.008936,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168438,0.008936,-0.013245,0.249649,0,0);}
.m1d_c00024{transform:matrix(0.168548,0.008942,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168548,0.008942,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168548,0.008942,-0.013245,0.249649,0,0);}
.m28_c00024{transform:matrix(0.168828,0.008957,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168828,0.008957,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168828,0.008957,-0.013245,0.249649,0,0);}
.m39_c00024{transform:matrix(0.169242,0.008979,-0.013245,0.249649,0,0);-ms-transform:matrix(0.169242,0.008979,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.169242,0.008979,-0.013245,0.249649,0,0);}
.m4b_c00024{transform:matrix(0.169397,0.008987,-0.013245,0.249649,0,0);-ms-transform:matrix(0.169397,0.008987,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.169397,0.008987,-0.013245,0.249649,0,0);}
.m7_c00024{transform:matrix(0.169966,0.009017,-0.013245,0.249649,0,0);-ms-transform:matrix(0.169966,0.009017,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.169966,0.009017,-0.013245,0.249649,0,0);}
.md8_c00024{transform:matrix(0.170281,0.009034,-0.013245,0.249649,0,0);-ms-transform:matrix(0.170281,0.009034,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.170281,0.009034,-0.013245,0.249649,0,0);}
.m27_c00024{transform:matrix(0.170425,0.009042,-0.013245,0.249649,0,0);-ms-transform:matrix(0.170425,0.009042,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.170425,0.009042,-0.013245,0.249649,0,0);}
.mc9_c00024{transform:matrix(0.172048,0.009128,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172048,0.009128,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172048,0.009128,-0.013245,0.249649,0,0);}
.md7_c00024{transform:matrix(0.172263,0.009139,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172263,0.009139,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172263,0.009139,-0.013245,0.249649,0,0);}
.ma0_c00024{transform:matrix(0.172477,0.009150,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172477,0.009150,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172477,0.009150,-0.013245,0.249649,0,0);}
.ma_c00024{transform:matrix(0.172622,0.009158,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172622,0.009158,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172622,0.009158,-0.013245,0.249649,0,0);}
.m18_c00024{transform:matrix(0.172677,0.009161,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172677,0.009161,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172677,0.009161,-0.013245,0.249649,0,0);}
.mbe_c00024{transform:matrix(0.173166,0.009187,-0.013245,0.249649,0,0);-ms-transform:matrix(0.173166,0.009187,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.173166,0.009187,-0.013245,0.249649,0,0);}
.m43_c00024{transform:matrix(0.173935,0.009228,-0.013245,0.249649,0,0);-ms-transform:matrix(0.173935,0.009228,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.173935,0.009228,-0.013245,0.249649,0,0);}
.m8a_c00024{transform:matrix(0.174085,0.009236,-0.013245,0.249649,0,0);-ms-transform:matrix(0.174085,0.009236,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.174085,0.009236,-0.013245,0.249649,0,0);}
.m4e_c00024{transform:matrix(0.175997,0.009337,-0.013245,0.249649,0,0);-ms-transform:matrix(0.175997,0.009337,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.175997,0.009337,-0.013245,0.249649,0,0);}
.ma9_c00024{transform:matrix(0.176032,0.009339,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176032,0.009339,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176032,0.009339,-0.013245,0.249649,0,0);}
.m22_c00024{transform:matrix(0.176387,0.009358,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176387,0.009358,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176387,0.009358,-0.013245,0.249649,0,0);}
.m9a_c00024{transform:matrix(0.177600,0.009422,-0.013245,0.249649,0,0);-ms-transform:matrix(0.177600,0.009422,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.177600,0.009422,-0.013245,0.249649,0,0);}
.mc2_c00024{transform:matrix(0.177810,0.009433,-0.013245,0.249649,0,0);-ms-transform:matrix(0.177810,0.009433,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.177810,0.009433,-0.013245,0.249649,0,0);}
.mb9_c00024{transform:matrix(0.178025,0.009445,-0.013245,0.249649,0,0);-ms-transform:matrix(0.178025,0.009445,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.178025,0.009445,-0.013245,0.249649,0,0);}
.m23_c00024{transform:matrix(0.179018,0.009497,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179018,0.009497,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179018,0.009497,-0.013245,0.249649,0,0);}
.m12_c00024{transform:matrix(0.179098,0.009502,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179098,0.009502,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179098,0.009502,-0.013245,0.249649,0,0);}
.mb6_c00024{transform:matrix(0.179193,0.009507,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179193,0.009507,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179193,0.009507,-0.013245,0.249649,0,0);}
.mb_c00024{transform:matrix(0.179562,0.009526,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179562,0.009526,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179562,0.009526,-0.013245,0.249649,0,0);}
.mc1_c00024{transform:matrix(0.179932,0.009546,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179932,0.009546,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179932,0.009546,-0.013245,0.249649,0,0);}
.ma7_c00024{transform:matrix(0.180341,0.009568,-0.013245,0.249649,0,0);-ms-transform:matrix(0.180341,0.009568,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.180341,0.009568,-0.013245,0.249649,0,0);}
.m5_c00024{transform:matrix(0.180551,0.009579,-0.013245,0.249649,0,0);-ms-transform:matrix(0.180551,0.009579,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.180551,0.009579,-0.013245,0.249649,0,0);}
.m78_c00024{transform:matrix(0.181110,0.009608,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181110,0.009608,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181110,0.009608,-0.013245,0.249649,0,0);}
.ma3_c00024{transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);}
.m7a_c00024{transform:matrix(0.181535,0.009631,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181535,0.009631,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181535,0.009631,-0.013245,0.249649,0,0);}
.m3e_c00024{transform:matrix(0.181570,0.009633,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181570,0.009633,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181570,0.009633,-0.013245,0.249649,0,0);}
.mc_c00024{transform:matrix(0.181754,0.009643,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181754,0.009643,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181754,0.009643,-0.013245,0.249649,0,0);}
.m9d_c00024{transform:matrix(0.182169,0.009665,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182169,0.009665,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182169,0.009665,-0.013245,0.249649,0,0);}
.md3_c00024{transform:matrix(0.182753,0.009696,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182753,0.009696,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182753,0.009696,-0.013245,0.249649,0,0);}
.m9_c00024{transform:matrix(0.183402,0.009730,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183402,0.009730,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183402,0.009730,-0.013245,0.249649,0,0);}
.m97_c00024{transform:matrix(0.183457,0.009733,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183457,0.009733,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183457,0.009733,-0.013245,0.249649,0,0);}
.m35_c00024{transform:matrix(0.183477,0.009734,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183477,0.009734,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183477,0.009734,-0.013245,0.249649,0,0);}
.m72_c00024{transform:matrix(0.183707,0.009746,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183707,0.009746,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183707,0.009746,-0.013245,0.249649,0,0);}
.m8f_c00024{transform:matrix(0.184001,0.009762,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184001,0.009762,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184001,0.009762,-0.013245,0.249649,0,0);}
.m57_c00024{transform:matrix(0.184286,0.009777,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184286,0.009777,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184286,0.009777,-0.013245,0.249649,0,0);}
.mc7_c00024{transform:matrix(0.184635,0.009795,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184635,0.009795,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184635,0.009795,-0.013245,0.249649,0,0);}
.m77_c00024{transform:matrix(0.184645,0.009796,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184645,0.009796,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184645,0.009796,-0.013245,0.249649,0,0);}
.ma4_c00024{transform:matrix(0.186378,0.009888,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186378,0.009888,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186378,0.009888,-0.013245,0.249649,0,0);}
.mdc_c00024{transform:matrix(0.186478,0.009893,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186478,0.009893,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186478,0.009893,-0.013245,0.249649,0,0);}
.mb8_c00024{transform:matrix(0.186503,0.009895,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186503,0.009895,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186503,0.009895,-0.013245,0.249649,0,0);}
.m7f_c00024{transform:matrix(0.186742,0.009907,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186742,0.009907,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186742,0.009907,-0.013245,0.249649,0,0);}
.m73_c00024{transform:matrix(0.187706,0.009958,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187706,0.009958,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187706,0.009958,-0.013245,0.249649,0,0);}
.m92_c00024{transform:matrix(0.187721,0.009959,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187721,0.009959,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187721,0.009959,-0.013245,0.249649,0,0);}
.m42_c00024{transform:matrix(0.187991,0.009973,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187991,0.009973,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187991,0.009973,-0.013245,0.249649,0,0);}
.mc5_c00024{transform:matrix(0.188245,0.009987,-0.013245,0.249649,0,0);-ms-transform:matrix(0.188245,0.009987,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.188245,0.009987,-0.013245,0.249649,0,0);}
.maa_c00024{transform:matrix(0.188395,0.009995,-0.013245,0.249649,0,0);-ms-transform:matrix(0.188395,0.009995,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.188395,0.009995,-0.013245,0.249649,0,0);}
.m7c_c00024{transform:matrix(0.188685,0.010010,-0.013245,0.249649,0,0);-ms-transform:matrix(0.188685,0.010010,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.188685,0.010010,-0.013245,0.249649,0,0);}
.m20_c00024{transform:matrix(0.189843,0.010072,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189843,0.010072,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189843,0.010072,-0.013245,0.249649,0,0);}
.m8c_c00024{transform:matrix(0.190103,0.010086,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190103,0.010086,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190103,0.010086,-0.013245,0.249649,0,0);}
.m3c_c00024{transform:matrix(0.190742,0.010119,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190742,0.010119,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190742,0.010119,-0.013245,0.249649,0,0);}
.m3d_c00024{transform:matrix(0.191011,0.010134,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191011,0.010134,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191011,0.010134,-0.013245,0.249649,0,0);}
.m9e_c00024{transform:matrix(0.191036,0.010135,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191036,0.010135,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191036,0.010135,-0.013245,0.249649,0,0);}
.m6e_c00024{transform:matrix(0.191346,0.010151,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191346,0.010151,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191346,0.010151,-0.013245,0.249649,0,0);}
.m8d_c00024{transform:matrix(0.192409,0.010208,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192409,0.010208,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192409,0.010208,-0.013245,0.249649,0,0);}
.m44_c00024{transform:matrix(0.192569,0.010216,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192569,0.010216,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192569,0.010216,-0.013245,0.249649,0,0);}
.mc4_c00024{transform:matrix(0.192754,0.010226,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192754,0.010226,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192754,0.010226,-0.013245,0.249649,0,0);}
.mc3_c00024{transform:matrix(0.192869,0.010232,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192869,0.010232,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192869,0.010232,-0.013245,0.249649,0,0);}
.m49_c00024{transform:matrix(0.192909,0.010234,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192909,0.010234,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192909,0.010234,-0.013245,0.249649,0,0);}
.m34_c00024{transform:matrix(0.193278,0.010254,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193278,0.010254,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193278,0.010254,-0.013245,0.249649,0,0);}
.mab_c00024{transform:matrix(0.193373,0.010259,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193373,0.010259,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193373,0.010259,-0.013245,0.249649,0,0);}
.m47_c00024{transform:matrix(0.193628,0.010273,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193628,0.010273,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193628,0.010273,-0.013245,0.249649,0,0);}
.mcc_c00024{transform:matrix(0.194062,0.010296,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194062,0.010296,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194062,0.010296,-0.013245,0.249649,0,0);}
.mdf_c00024{transform:matrix(0.194452,0.010316,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194452,0.010316,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194452,0.010316,-0.013245,0.249649,0,0);}
.m2a_c00024{transform:matrix(0.194836,0.010337,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194836,0.010337,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194836,0.010337,-0.013245,0.249649,0,0);}
.mad_c00024{transform:matrix(0.194886,0.010339,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194886,0.010339,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194886,0.010339,-0.013245,0.249649,0,0);}
.mcf_c00024{transform:matrix(0.195665,0.010381,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195665,0.010381,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195665,0.010381,-0.013245,0.249649,0,0);}
.mbf_c00024{transform:matrix(0.195900,0.010393,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195900,0.010393,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195900,0.010393,-0.013245,0.249649,0,0);}
.m5b_c00024{transform:matrix(0.196044,0.010401,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196044,0.010401,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196044,0.010401,-0.013245,0.249649,0,0);}
.m29_c00024{transform:matrix(0.196419,0.010421,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196419,0.010421,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196419,0.010421,-0.013245,0.249649,0,0);}
.m52_c00024{transform:matrix(0.196978,0.010450,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196978,0.010450,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196978,0.010450,-0.013245,0.249649,0,0);}
.md_c00024{transform:matrix(0.197058,0.010455,-0.013245,0.249649,0,0);-ms-transform:matrix(0.197058,0.010455,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.197058,0.010455,-0.013245,0.249649,0,0);}
.m1a_c00024{transform:matrix(0.197223,0.010463,-0.013245,0.249649,0,0);-ms-transform:matrix(0.197223,0.010463,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.197223,0.010463,-0.013245,0.249649,0,0);}
.m4d_c00024{transform:matrix(0.197367,0.010471,-0.013245,0.249649,0,0);-ms-transform:matrix(0.197367,0.010471,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.197367,0.010471,-0.013245,0.249649,0,0);}
.mde_c00024{transform:matrix(0.197407,0.010473,-0.013245,0.249649,0,0);-ms-transform:matrix(0.197407,0.010473,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.197407,0.010473,-0.013245,0.249649,0,0);}
.m33_c00024{transform:matrix(0.197932,0.010501,-0.013245,0.249649,0,0);-ms-transform:matrix(0.197932,0.010501,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.197932,0.010501,-0.013245,0.249649,0,0);}
.m16_c00024{transform:matrix(0.198136,0.010512,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198136,0.010512,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198136,0.010512,-0.013245,0.249649,0,0);}
.m91_c00024{transform:matrix(0.198196,0.010515,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198196,0.010515,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198196,0.010515,-0.013245,0.249649,0,0);}
.m74_c00024{transform:matrix(0.198596,0.010536,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198596,0.010536,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198596,0.010536,-0.013245,0.249649,0,0);}
.md0_c00024{transform:matrix(0.198636,0.010538,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198636,0.010538,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198636,0.010538,-0.013245,0.249649,0,0);}
.m69_c00024{transform:matrix(0.198955,0.010555,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198955,0.010555,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198955,0.010555,-0.013245,0.249649,0,0);}
.m63_c00024{transform:matrix(0.199155,0.010566,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199155,0.010566,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199155,0.010566,-0.013245,0.249649,0,0);}
.mba_c00024{transform:matrix(0.199974,0.010609,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199974,0.010609,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199974,0.010609,-0.013245,0.249649,0,0);}
.m55_c00024{transform:matrix(0.200238,0.010623,-0.013245,0.249649,0,0);-ms-transform:matrix(0.200238,0.010623,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.200238,0.010623,-0.013245,0.249649,0,0);}
.m99_c00024{transform:matrix(0.200673,0.010646,-0.013245,0.249649,0,0);-ms-transform:matrix(0.200673,0.010646,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.200673,0.010646,-0.013245,0.249649,0,0);}
.ma5_c00024{transform:matrix(0.201532,0.010692,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201532,0.010692,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201532,0.010692,-0.013245,0.249649,0,0);}
.m31_c00024{transform:matrix(0.201562,0.010693,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201562,0.010693,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201562,0.010693,-0.013245,0.249649,0,0);}
.m48_c00024{transform:matrix(0.201931,0.010713,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201931,0.010713,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201931,0.010713,-0.013245,0.249649,0,0);}
.m62_c00024{transform:matrix(0.202305,0.010733,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202305,0.010733,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202305,0.010733,-0.013245,0.249649,0,0);}
.me_c00024{transform:matrix(0.202525,0.010745,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202525,0.010745,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202525,0.010745,-0.013245,0.249649,0,0);}
.m93_c00024{transform:matrix(0.203194,0.010780,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203194,0.010780,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203194,0.010780,-0.013245,0.249649,0,0);}
.m3f_c00024{transform:matrix(0.203259,0.010784,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203259,0.010784,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203259,0.010784,-0.013245,0.249649,0,0);}
.m5e_c00024{transform:matrix(0.203324,0.010787,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203324,0.010787,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203324,0.010787,-0.013245,0.249649,0,0);}
.m58_c00024{transform:matrix(0.203374,0.010790,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203374,0.010790,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203374,0.010790,-0.013245,0.249649,0,0);}
.m50_c00024{transform:matrix(0.203858,0.010815,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203858,0.010815,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203858,0.010815,-0.013245,0.249649,0,0);}
.ma2_c00024{transform:matrix(0.203938,0.010820,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203938,0.010820,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203938,0.010820,-0.013245,0.249649,0,0);}
.m19_c00024{transform:matrix(0.204323,0.010840,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204323,0.010840,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204323,0.010840,-0.013245,0.249649,0,0);}
.m7d_c00024{transform:matrix(0.204428,0.010846,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204428,0.010846,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204428,0.010846,-0.013245,0.249649,0,0);}
.maf_c00024{transform:matrix(0.204527,0.010851,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204527,0.010851,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204527,0.010851,-0.013245,0.249649,0,0);}
.m21_c00024{transform:matrix(0.205536,0.010904,-0.013245,0.249649,0,0);-ms-transform:matrix(0.205536,0.010904,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.205536,0.010904,-0.013245,0.249649,0,0);}
.m95_c00024{transform:matrix(0.205561,0.010906,-0.013245,0.249649,0,0);-ms-transform:matrix(0.205561,0.010906,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.205561,0.010906,-0.013245,0.249649,0,0);}
.m6a_c00024{transform:matrix(0.206075,0.010933,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206075,0.010933,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206075,0.010933,-0.013245,0.249649,0,0);}
.m10_c00024{transform:matrix(0.206265,0.010943,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206265,0.010943,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206265,0.010943,-0.013245,0.249649,0,0);}
.m90_c00024{transform:matrix(0.206290,0.010944,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206290,0.010944,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206290,0.010944,-0.013245,0.249649,0,0);}
.m45_c00024{transform:matrix(0.206450,0.010953,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206450,0.010953,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206450,0.010953,-0.013245,0.249649,0,0);}
.m4c_c00024{transform:matrix(0.206754,0.010969,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206754,0.010969,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206754,0.010969,-0.013245,0.249649,0,0);}
.m41_c00024{transform:matrix(0.207818,0.011025,-0.013245,0.249649,0,0);-ms-transform:matrix(0.207818,0.011025,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.207818,0.011025,-0.013245,0.249649,0,0);}
.mc8_c00024{transform:matrix(0.208367,0.011055,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208367,0.011055,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208367,0.011055,-0.013245,0.249649,0,0);}
.m6b_c00024{transform:matrix(0.208537,0.011064,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208537,0.011064,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208537,0.011064,-0.013245,0.249649,0,0);}
.m6_c00024{transform:matrix(0.208687,0.011071,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208687,0.011071,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208687,0.011071,-0.013245,0.249649,0,0);}
.mbb_c00024{transform:matrix(0.208826,0.011079,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208826,0.011079,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208826,0.011079,-0.013245,0.249649,0,0);}
.mb7_c00024{transform:matrix(0.208876,0.011082,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208876,0.011082,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208876,0.011082,-0.013245,0.249649,0,0);}
.m3_c00024{transform:matrix(0.208901,0.011083,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208901,0.011083,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208901,0.011083,-0.013245,0.249649,0,0);}
.md9_c00024{transform:matrix(0.208936,0.011085,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208936,0.011085,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208936,0.011085,-0.013245,0.249649,0,0);}
.m4f_c00024{transform:matrix(0.209351,0.011107,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209351,0.011107,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209351,0.011107,-0.013245,0.249649,0,0);}
.m98_c00024{transform:matrix(0.209381,0.011108,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209381,0.011108,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209381,0.011108,-0.013245,0.249649,0,0);}
.ma8_c00024{transform:matrix(0.209445,0.011112,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209445,0.011112,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209445,0.011112,-0.013245,0.249649,0,0);}
.m7b_c00024{transform:matrix(0.209720,0.011126,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209720,0.011126,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209720,0.011126,-0.013245,0.249649,0,0);}
.m32_c00024{transform:matrix(0.209785,0.011130,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209785,0.011130,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209785,0.011130,-0.013245,0.249649,0,0);}
.md2_c00024{transform:matrix(0.209910,0.011136,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209910,0.011136,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209910,0.011136,-0.013245,0.249649,0,0);}
.m68_c00024{transform:matrix(0.210000,0.011141,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210000,0.011141,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210000,0.011141,-0.013245,0.249649,0,0);}
.m76_c00024{transform:matrix(0.210134,0.011148,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210134,0.011148,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210134,0.011148,-0.013245,0.249649,0,0);}
.md4_c00024{transform:matrix(0.210873,0.011187,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210873,0.011187,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210873,0.011187,-0.013245,0.249649,0,0);}
.m1b_c00024{transform:matrix(0.210963,0.011192,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210963,0.011192,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210963,0.011192,-0.013245,0.249649,0,0);}
.m59_c00024{transform:matrix(0.211053,0.011197,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211053,0.011197,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211053,0.011197,-0.013245,0.249649,0,0);}
.m2e_c00024{transform:matrix(0.211073,0.011198,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211073,0.011198,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211073,0.011198,-0.013245,0.249649,0,0);}
.m71_c00024{transform:matrix(0.211632,0.011228,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211632,0.011228,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211632,0.011228,-0.013245,0.249649,0,0);}
.m9b_c00024{transform:matrix(0.211827,0.011238,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211827,0.011238,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211827,0.011238,-0.013245,0.249649,0,0);}
.ma6_c00024{transform:matrix(0.211877,0.011241,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211877,0.011241,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211877,0.011241,-0.013245,0.249649,0,0);}
.m66_c00024{transform:matrix(0.212217,0.011259,-0.013245,0.249649,0,0);-ms-transform:matrix(0.212217,0.011259,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.212217,0.011259,-0.013245,0.249649,0,0);}
.m2f_c00024{transform:matrix(0.212511,0.011274,-0.013245,0.249649,0,0);-ms-transform:matrix(0.212511,0.011274,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.212511,0.011274,-0.013245,0.249649,0,0);}
.m8b_c00024{transform:matrix(0.213080,0.011305,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213080,0.011305,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213080,0.011305,-0.013245,0.249649,0,0);}
.m25_c00024{transform:matrix(0.213530,0.011328,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213530,0.011328,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213530,0.011328,-0.013245,0.249649,0,0);}
.mca_c00024{transform:matrix(0.213679,0.011336,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213679,0.011336,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213679,0.011336,-0.013245,0.249649,0,0);}
.mdd_c00024{transform:matrix(0.213899,0.011348,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213899,0.011348,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213899,0.011348,-0.013245,0.249649,0,0);}
.m15_c00024{transform:matrix(0.214134,0.011360,-0.013245,0.249649,0,0);-ms-transform:matrix(0.214134,0.011360,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.214134,0.011360,-0.013245,0.249649,0,0);}
.m54_c00024{transform:matrix(0.214853,0.011399,-0.013245,0.249649,0,0);-ms-transform:matrix(0.214853,0.011399,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.214853,0.011399,-0.013245,0.249649,0,0);}
.m5a_c00024{transform:matrix(0.215677,0.011442,-0.013245,0.249649,0,0);-ms-transform:matrix(0.215677,0.011442,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.215677,0.011442,-0.013245,0.249649,0,0);}
.m2d_c00024{transform:matrix(0.216226,0.011471,-0.013245,0.249649,0,0);-ms-transform:matrix(0.216226,0.011471,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.216226,0.011471,-0.013245,0.249649,0,0);}
.m30_c00024{transform:matrix(0.216530,0.011488,-0.013245,0.249649,0,0);-ms-transform:matrix(0.216530,0.011488,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.216530,0.011488,-0.013245,0.249649,0,0);}
.m94_c00024{transform:matrix(0.216745,0.011499,-0.013245,0.249649,0,0);-ms-transform:matrix(0.216745,0.011499,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.216745,0.011499,-0.013245,0.249649,0,0);}
.m67_c00024{transform:matrix(0.217344,0.011531,-0.013245,0.249649,0,0);-ms-transform:matrix(0.217344,0.011531,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.217344,0.011531,-0.013245,0.249649,0,0);}
.md6_c00024{transform:matrix(0.217779,0.011554,-0.013245,0.249649,0,0);-ms-transform:matrix(0.217779,0.011554,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.217779,0.011554,-0.013245,0.249649,0,0);}
.m40_c00024{transform:matrix(0.217819,0.011556,-0.013245,0.249649,0,0);-ms-transform:matrix(0.217819,0.011556,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.217819,0.011556,-0.013245,0.249649,0,0);}
.m2b_c00024{transform:matrix(0.218208,0.011577,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218208,0.011577,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218208,0.011577,-0.013245,0.249649,0,0);}
.m8e_c00024{transform:matrix(0.218318,0.011582,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218318,0.011582,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218318,0.011582,-0.013245,0.249649,0,0);}
.mbd_c00024{transform:matrix(0.218503,0.011592,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218503,0.011592,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218503,0.011592,-0.013245,0.249649,0,0);}
.m2c_c00024{transform:matrix(0.218648,0.011600,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218648,0.011600,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218648,0.011600,-0.013245,0.249649,0,0);}
.m9c_c00024{transform:matrix(0.219826,0.011662,-0.013245,0.249649,0,0);-ms-transform:matrix(0.219826,0.011662,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.219826,0.011662,-0.013245,0.249649,0,0);}
.m24_c00024{transform:matrix(0.221319,0.011742,-0.013245,0.249649,0,0);-ms-transform:matrix(0.221319,0.011742,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.221319,0.011742,-0.013245,0.249649,0,0);}
.m56_c00024{transform:matrix(0.221923,0.011774,-0.013245,0.249649,0,0);-ms-transform:matrix(0.221923,0.011774,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.221923,0.011774,-0.013245,0.249649,0,0);}
.m46_c00024{transform:matrix(0.222277,0.011792,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222277,0.011792,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222277,0.011792,-0.013245,0.249649,0,0);}
.m17_c00024{transform:matrix(0.223481,0.011856,-0.013245,0.249649,0,0);-ms-transform:matrix(0.223481,0.011856,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.223481,0.011856,-0.013245,0.249649,0,0);}
.md5_c00024{transform:matrix(0.224534,0.011912,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224534,0.011912,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224534,0.011912,-0.013245,0.249649,0,0);}
.m26_c00024{transform:matrix(0.225163,0.011946,-0.013245,0.249649,0,0);-ms-transform:matrix(0.225163,0.011946,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.225163,0.011946,-0.013245,0.249649,0,0);}
.m3b_c00024{transform:matrix(0.225578,0.011968,-0.013245,0.249649,0,0);-ms-transform:matrix(0.225578,0.011968,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.225578,0.011968,-0.013245,0.249649,0,0);}
.m75_c00024{transform:matrix(0.226896,0.012038,-0.013245,0.249649,0,0);-ms-transform:matrix(0.226896,0.012038,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.226896,0.012038,-0.013245,0.249649,0,0);}
.m4a_c00024{transform:matrix(0.227605,0.012075,-0.013245,0.249649,0,0);-ms-transform:matrix(0.227605,0.012075,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.227605,0.012075,-0.013245,0.249649,0,0);}
.m53_c00024{transform:matrix(0.229807,0.012192,-0.013245,0.249649,0,0);-ms-transform:matrix(0.229807,0.012192,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.229807,0.012192,-0.013245,0.249649,0,0);}
.m60_c00024{transform:matrix(0.230825,0.012246,-0.013245,0.249649,0,0);-ms-transform:matrix(0.230825,0.012246,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.230825,0.012246,-0.013245,0.249649,0,0);}
.mb2_c00024{transform:matrix(0.232004,0.012309,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232004,0.012309,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232004,0.012309,-0.013245,0.249649,0,0);}
.m5f_c00024{transform:matrix(0.232808,0.012351,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232808,0.012351,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232808,0.012351,-0.013245,0.249649,0,0);}
.mbc_c00024{transform:matrix(0.233921,0.012410,-0.013245,0.249649,0,0);-ms-transform:matrix(0.233921,0.012410,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.233921,0.012410,-0.013245,0.249649,0,0);}
.m14_c00024{transform:matrix(0.236278,0.012535,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236278,0.012535,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236278,0.012535,-0.013245,0.249649,0,0);}
.m1c_c00024{transform:matrix(0.236747,0.012560,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236747,0.012560,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236747,0.012560,-0.013245,0.249649,0,0);}
.mc6_c00024{transform:matrix(0.237281,0.012588,-0.013245,0.249649,0,0);-ms-transform:matrix(0.237281,0.012588,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.237281,0.012588,-0.013245,0.249649,0,0);}
.mf_c00024{transform:matrix(0.237541,0.012602,-0.013245,0.249649,0,0);-ms-transform:matrix(0.237541,0.012602,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.237541,0.012602,-0.013245,0.249649,0,0);}
.m61_c00024{transform:matrix(0.238415,0.012649,-0.013245,0.249649,0,0);-ms-transform:matrix(0.238415,0.012649,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.238415,0.012649,-0.013245,0.249649,0,0);}
.m38_c00024{transform:matrix(0.238924,0.012676,-0.013245,0.249649,0,0);-ms-transform:matrix(0.238924,0.012676,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.238924,0.012676,-0.013245,0.249649,0,0);}
.m6d_c00024{transform:matrix(0.239698,0.012717,-0.013245,0.249649,0,0);-ms-transform:matrix(0.239698,0.012717,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.239698,0.012717,-0.013245,0.249649,0,0);}
.m6f_c00024{transform:matrix(0.239898,0.012727,-0.013245,0.249649,0,0);-ms-transform:matrix(0.239898,0.012727,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.239898,0.012727,-0.013245,0.249649,0,0);}
.m5d_c00024{transform:matrix(0.244366,0.012964,-0.013245,0.249649,0,0);-ms-transform:matrix(0.244366,0.012964,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.244366,0.012964,-0.013245,0.249649,0,0);}
.m5c_c00024{transform:matrix(0.246863,0.013097,-0.013245,0.249649,0,0);-ms-transform:matrix(0.246863,0.013097,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.246863,0.013097,-0.013245,0.249649,0,0);}
.m70_c00024{transform:matrix(0.247102,0.013110,-0.013245,0.249649,0,0);-ms-transform:matrix(0.247102,0.013110,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.247102,0.013110,-0.013245,0.249649,0,0);}
.m13_c00024{transform:matrix(0.257543,0.013663,-0.013245,0.249649,0,0);-ms-transform:matrix(0.257543,0.013663,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.257543,0.013663,-0.013245,0.249649,0,0);}
.mda_c00024{transform:matrix(0.261782,0.013888,-0.013245,0.249649,0,0);-ms-transform:matrix(0.261782,0.013888,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.261782,0.013888,-0.013245,0.249649,0,0);}
.m65_c00024{transform:matrix(0.265257,0.014073,-0.013245,0.249649,0,0);-ms-transform:matrix(0.265257,0.014073,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.265257,0.014073,-0.013245,0.249649,0,0);}
.mb1_c00024{transform:matrix(0.265402,0.014080,-0.013245,0.249649,0,0);-ms-transform:matrix(0.265402,0.014080,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.265402,0.014080,-0.013245,0.249649,0,0);}
.mb4_c00024{transform:matrix(0.270195,0.014335,-0.013245,0.249649,0,0);-ms-transform:matrix(0.270195,0.014335,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.270195,0.014335,-0.013245,0.249649,0,0);}
.mb5_c00024{transform:matrix(0.273191,0.014494,-0.013245,0.249649,0,0);-ms-transform:matrix(0.273191,0.014494,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.273191,0.014494,-0.013245,0.249649,0,0);}
.m1e_c00024{transform:matrix(0.277250,0.014709,-0.013245,0.249649,0,0);-ms-transform:matrix(0.277250,0.014709,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.277250,0.014709,-0.013245,0.249649,0,0);}
.m84_c00024{transform:matrix(0.277789,0.014738,-0.013245,0.249649,0,0);-ms-transform:matrix(0.277789,0.014738,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.277789,0.014738,-0.013245,0.249649,0,0);}
.m64_c00024{transform:matrix(0.284085,0.015072,-0.013245,0.249649,0,0);-ms-transform:matrix(0.284085,0.015072,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.284085,0.015072,-0.013245,0.249649,0,0);}
.m37_c00024{transform:matrix(0.287616,0.015259,-0.013245,0.249649,0,0);-ms-transform:matrix(0.287616,0.015259,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.287616,0.015259,-0.013245,0.249649,0,0);}
.m80_c00024{transform:matrix(0.300413,0.015938,-0.013245,0.249649,0,0);-ms-transform:matrix(0.300413,0.015938,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.300413,0.015938,-0.013245,0.249649,0,0);}
.m2_c00024{transform:matrix(0.340926,0.018087,-0.013245,0.249649,0,0);-ms-transform:matrix(0.340926,0.018087,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.340926,0.018087,-0.013245,0.249649,0,0);}
.m81_c00024{transform:matrix(0.385088,0.020430,-0.013245,0.249649,0,0);-ms-transform:matrix(0.385088,0.020430,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.385088,0.020430,-0.013245,0.249649,0,0);}
.m83_c00024{transform:matrix(0.391989,0.020796,-0.013245,0.249649,0,0);-ms-transform:matrix(0.391989,0.020796,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.391989,0.020796,-0.013245,0.249649,0,0);}
.m85_c00024{transform:matrix(0.394545,0.020932,-0.013245,0.249649,0,0);-ms-transform:matrix(0.394545,0.020932,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.394545,0.020932,-0.013245,0.249649,0,0);}
.m82_c00024{transform:matrix(0.428462,0.022731,-0.013245,0.249649,0,0);-ms-transform:matrix(0.428462,0.022731,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.428462,0.022731,-0.013245,0.249649,0,0);}
.m1f_c00024{transform:matrix(0.458310,0.024315,-0.013245,0.249649,0,0);-ms-transform:matrix(0.458310,0.024315,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.458310,0.024315,-0.013245,0.249649,0,0);}
.m89_c00024{transform:matrix(0.703186,0.037306,-0.013245,0.249649,0,0);-ms-transform:matrix(0.703186,0.037306,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.703186,0.037306,-0.013245,0.249649,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
.fc0_c00024{color:transparent;}
.fsa_c00024{font-size:35.714456px;}
.fs8_c00024{font-size:53.571683px;}
.fs9_c00024{font-size:59.874234px;}
.fs4_c00024{font-size:60.924660px;}
.fs5_c00024{font-size:61.975085px;}
.fsb_c00024{font-size:63.025510px;}
.fs6_c00024{font-size:64.075935px;}
.fs7_c00024{font-size:65.126360px;}
.fs3_c00024{font-size:66.176785px;}
.fs2_c00024{font-size:67.227210px;}
.fs1_c00024{font-size:68.277636px;}
.fs0_c00024{font-size:75.630612px;}
.y0_c00024{bottom:0.000000px;}
.ye2_c00024{bottom:20.943328px;}
.ye1_c00024{bottom:24.277986px;}
.ye0_c00024{bottom:28.672278px;}
.ydf_c00024{bottom:30.000271px;}
.yde_c00024{bottom:32.685550px;}
.ydd_c00024{bottom:33.837561px;}
.ydc_c00024{bottom:36.621019px;}
.ydb_c00024{bottom:39.608293px;}
.yda_c00024{bottom:41.240149px;}
.yd9_c00024{bottom:44.290332px;}
.yd8_c00024{bottom:45.462295px;}
.yd7_c00024{bottom:46.482286px;}
.yd6_c00024{bottom:50.079517px;}
.yd5_c00024{bottom:51.119383px;}
.yd4_c00024{bottom:56.102589px;}
.yd3_c00024{bottom:56.983804px;}
.yd2_c00024{bottom:60.395422px;}
.yd1_c00024{bottom:63.254188px;}
.yd0_c00024{bottom:64.243480px;}
.ycf_c00024{bottom:65.249944px;}
.yce_c00024{bottom:66.636777px;}
.ycd_c00024{bottom:68.144883px;}
.ycc_c00024{bottom:75.207577px;}
.ycb_c00024{bottom:76.688302px;}
.yca_c00024{bottom:79.297387px;}
.yc9_c00024{bottom:80.421681px;}
.yc8_c00024{bottom:81.064746px;}
.yc7_c00024{bottom:84.607107px;}
.yc6_c00024{bottom:89.866833px;}
.yc5_c00024{bottom:92.810533px;}
.yc4_c00024{bottom:93.460215px;}
.yc3_c00024{bottom:95.933910px;}
.yc2_c00024{bottom:97.006528px;}
.yc1_c00024{bottom:100.541461px;}
.yc0_c00024{bottom:102.168988px;}
.ybf_c00024{bottom:105.016285px;}
.ybe_c00024{bottom:105.965179px;}
.ybd_c00024{bottom:111.307021px;}
.ybc_c00024{bottom:114.341530px;}
.ybb_c00024{bottom:116.203690px;}
.yba_c00024{bottom:119.191998px;}
.yb9_c00024{bottom:122.185372px;}
.yb8_c00024{bottom:125.070853px;}
.yb7_c00024{bottom:126.129105px;}
.yb6_c00024{bottom:128.527102px;}
.yb5_c00024{bottom:129.559743px;}
.yb4_c00024{bottom:130.876728px;}
.yb3_c00024{bottom:134.772021px;}
.yb2_c00024{bottom:136.487334px;}
.yb1_c00024{bottom:139.576267px;}
.yb0_c00024{bottom:140.391420px;}
.yaf_c00024{bottom:143.319052px;}
.yae_c00024{bottom:144.283641px;}
.yad_c00024{bottom:145.306014px;}
.yac_c00024{bottom:149.773254px;}
.yab_c00024{bottom:152.021893px;}
.yaa_c00024{bottom:154.318789px;}
.ya9_c00024{bottom:156.585357px;}
.ya8_c00024{bottom:157.770471px;}
.ya7_c00024{bottom:159.514269px;}
.ya6_c00024{bottom:160.486306px;}
.ya5_c00024{bottom:163.401691px;}
.ya4_c00024{bottom:164.001012px;}
.ya3_c00024{bottom:167.431650px;}
.ya2_c00024{bottom:170.243001px;}
.ya1_c00024{bottom:173.390083px;}
.ya0_c00024{bottom:175.218438px;}
.y9f_c00024{bottom:178.057680px;}
.y9e_c00024{bottom:180.042054px;}
.y9d_c00024{bottom:185.040237px;}
.y9c_c00024{bottom:187.261884px;}
.y9b_c00024{bottom:191.287312px;}
.y9a_c00024{bottom:191.866303px;}
.y99_c00024{bottom:194.168239px;}
.y98_c00024{bottom:194.884842px;}
.y97_c00024{bottom:197.478016px;}
.y96_c00024{bottom:198.250023px;}
.y95_c00024{bottom:199.392637px;}
.y94_c00024{bottom:200.962524px;}
.y93_c00024{bottom:203.735199px;}
.y92_c00024{bottom:209.646777px;}
.y91_c00024{bottom:212.505136px;}
.y90_c00024{bottom:214.747866px;}
.y8f_c00024{bottom:216.156721px;}
.y8e_c00024{bottom:219.347229px;}
.y8d_c00024{bottom:220.416861px;}
.y8c_c00024{bottom:221.552104px;}
.y8b_c00024{bottom:225.318936px;}
.y8a_c00024{bottom:225.826797px;}
.y89_c00024{bottom:227.274787px;}
.y88_c00024{bottom:228.595216px;}
.y87_c00024{bottom:231.116145px;}
.y86_c00024{bottom:232.113343px;}
.y85_c00024{bottom:235.324525px;}
.y84_c00024{bottom:237.284034px;}
.y83_c00024{bottom:239.478949px;}
.y82_c00024{bottom:240.465813px;}
.y81_c00024{bottom:243.363894px;}
.y80_c00024{bottom:244.650895px;}
.y7f_c00024{bottom:245.786139px;}
.y7e_c00024{bottom:250.092571px;}
.y7d_c00024{bottom:250.963357px;}
.y7c_c00024{bottom:253.520268px;}
.y7b_c00024{bottom:254.547184px;}
.y7a_c00024{bottom:255.601143px;}
.y79_c00024{bottom:258.720540px;}
.y78_c00024{bottom:262.339315px;}
.y77_c00024{bottom:265.465989px;}
.y76_c00024{bottom:266.483118px;}
.y75_c00024{bottom:270.080349px;}
.y74_c00024{bottom:272.619814px;}
.y73_c00024{bottom:275.866491px;}
.y72_c00024{bottom:277.276662px;}
.y71_c00024{bottom:281.897599px;}
.y70_c00024{bottom:285.674008px;}
.y6f_c00024{bottom:287.998032px;}
.y6e_c00024{bottom:289.103638px;}
.y6d_c00024{bottom:290.434786px;}
.y6c_c00024{bottom:293.392239px;}
.y6b_c00024{bottom:295.724659px;}
.y6a_c00024{bottom:299.679673px;}
.y69_c00024{bottom:300.311920px;}
.y68_c00024{bottom:304.959045px;}
.y67_c00024{bottom:307.198860px;}
.y66_c00024{bottom:309.589407px;}
.y65_c00024{bottom:313.283314px;}
.y64_c00024{bottom:315.846693px;}
.y63_c00024{bottom:318.063024px;}
.y62_c00024{bottom:318.964671px;}
.y61_c00024{bottom:319.793583px;}
.y60_c00024{bottom:322.856897px;}
.y5f_c00024{bottom:327.453891px;}
.y5e_c00024{bottom:329.769633px;}
.y5d_c00024{bottom:330.811903px;}
.y5c_c00024{bottom:333.900336px;}
.y5b_c00024{bottom:335.955175px;}
.y5a_c00024{bottom:339.060327px;}
.y59_c00024{bottom:340.652205px;}
.y58_c00024{bottom:341.690640px;}
.y57_c00024{bottom:344.670600px;}
.y56_c00024{bottom:348.749586px;}
.y55_c00024{bottom:353.269385px;}
.y54_c00024{bottom:355.275078px;}
.y53_c00024{bottom:359.654439px;}
.y52_c00024{bottom:360.725544px;}
.y51_c00024{bottom:363.035115px;}
.y50_c00024{bottom:364.568934px;}
.y4f_c00024{bottom:367.950019px;}
.y4e_c00024{bottom:372.285972px;}
.y4d_c00024{bottom:377.356242px;}
.y4c_c00024{bottom:378.894531px;}
.y4b_c00024{bottom:379.568315px;}
.y4a_c00024{bottom:383.058944px;}
.y49_c00024{bottom:384.397833px;}
.y48_c00024{bottom:385.202630px;}
.y47_c00024{bottom:389.035608px;}
.y46_c00024{bottom:394.528005px;}
.y45_c00024{bottom:398.048040px;}
.y44_c00024{bottom:399.504060px;}
.y43_c00024{bottom:402.605727px;}
.y42_c00024{bottom:406.329222px;}
.y41_c00024{bottom:410.615460px;}
.y40_c00024{bottom:413.500143px;}
.y3f_c00024{bottom:414.809041px;}
.y3e_c00024{bottom:417.649431px;}
.y3d_c00024{bottom:422.532096px;}
.y3c_c00024{bottom:426.702545px;}
.y3b_c00024{bottom:428.197116px;}
.y3a_c00024{bottom:429.035619px;}
.y39_c00024{bottom:429.950721px;}
.y38_c00024{bottom:432.537184px;}
.y37_c00024{bottom:433.243501px;}
.y36_c00024{bottom:435.465652px;}
.y35_c00024{bottom:436.280031px;}
.y34_c00024{bottom:439.003212px;}
.y33_c00024{bottom:445.203657px;}
.y32_c00024{bottom:446.345112px;}
.y31_c00024{bottom:450.178840px;}
.y30_c00024{bottom:453.146969px;}
.y2f_c00024{bottom:455.784828px;}
.y2e_c00024{bottom:459.039894px;}
.y2d_c00024{bottom:462.032256px;}
.y2c_c00024{bottom:465.411267px;}
.y2b_c00024{bottom:466.469748px;}
.y2a_c00024{bottom:469.570027px;}
.y29_c00024{bottom:470.733314px;}
.y28_c00024{bottom:472.236252px;}
.y27_c00024{bottom:476.048556px;}
.y26_c00024{bottom:477.104205px;}
.y25_c00024{bottom:481.342327px;}
.y24_c00024{bottom:483.730318px;}
.y23_c00024{bottom:484.852080px;}
.y22_c00024{bottom:485.818800px;}
.y21_c00024{bottom:488.599614px;}
.y20_c00024{bottom:489.280260px;}
.y1f_c00024{bottom:496.285101px;}
.y1e_c00024{bottom:498.818998px;}
.y1d_c00024{bottom:499.888674px;}
.y1c_c00024{bottom:502.159404px;}
.y1b_c00024{bottom:503.103094px;}
.y1a_c00024{bottom:504.772456px;}
.y19_c00024{bottom:505.827945px;}
.y18_c00024{bottom:506.523994px;}
.y17_c00024{bottom:509.354085px;}
.y16_c00024{bottom:513.334093px;}
.y15_c00024{bottom:514.095189px;}
.y14_c00024{bottom:516.816033px;}
.y13_c00024{bottom:519.614505px;}
.y12_c00024{bottom:521.321947px;}
.y11_c00024{bottom:522.745045px;}
.y10_c00024{bottom:523.557442px;}
.yf_c00024{bottom:527.082051px;}
.ye_c00024{bottom:528.250408px;}
.yd_c00024{bottom:530.557398px;}
.yc_c00024{bottom:532.080826px;}
.yb_c00024{bottom:532.756632px;}
.ya_c00024{bottom:536.455476px;}
.y9_c00024{bottom:537.584250px;}
.y8_c00024{bottom:538.941609px;}
.y7_c00024{bottom:546.231411px;}
.y6_c00024{bottom:550.634785px;}
.y5_c00024{bottom:550.840296px;}
.y4_c00024{bottom:552.836586px;}
.y2_c00024{bottom:555.982950px;}
.y3_c00024{bottom:556.221574px;}
.y1_c00024{bottom:563.209500px;}
.hc_c00024{height:35.714456px;}
.ha_c00024{height:53.571683px;}
.hb_c00024{height:59.874234px;}
.h6_c00024{height:60.924660px;}
.h7_c00024{height:61.975085px;}
.hd_c00024{height:63.025510px;}
.h8_c00024{height:64.075935px;}
.h9_c00024{height:65.126360px;}
.h5_c00024{height:66.176785px;}
.h4_c00024{height:67.227210px;}
.h3_c00024{height:68.277636px;}
.h2_c00024{height:75.630612px;}
.h0_c00024{height:615.600000px;}
.h1_c00024{height:615.750000px;}
.w0_c00024{width:367.200000px;}
.w1_c00024{width:367.500000px;}
.x0_c00024{left:0.000000px;}
.x74_c00024{left:24.747006px;}
.x65_c00024{left:26.154372px;}
.x51_c00024{left:27.414471px;}
.x28_c00024{left:28.988466px;}
.x3_c00024{left:30.327227px;}
.x5f_c00024{left:32.591163px;}
.x1b_c00024{left:35.987445px;}
.x22_c00024{left:37.123899px;}
.xf_c00024{left:46.283264px;}
.x52_c00024{left:48.470237px;}
.x1c_c00024{left:49.864998px;}
.x7a_c00024{left:51.791594px;}
.x4b_c00024{left:53.824430px;}
.x6d_c00024{left:59.706612px;}
.x8_c00024{left:62.006040px;}
.x70_c00024{left:63.165116px;}
.x23_c00024{left:66.557540px;}
.x3c_c00024{left:67.794227px;}
.x15_c00024{left:69.851111px;}
.x48_c00024{left:70.956570px;}
.x63_c00024{left:72.862464px;}
.x10_c00024{left:74.721833px;}
.x4f_c00024{left:77.936118px;}
.x66_c00024{left:82.318065px;}
.x29_c00024{left:83.893070px;}
.x58_c00024{left:87.047298px;}
.x9_c00024{left:88.239207px;}
.x24_c00024{left:89.334128px;}
.x2c_c00024{left:90.642552px;}
.x60_c00024{left:92.812743px;}
.x43_c00024{left:94.216731px;}
.x32_c00024{left:96.390654px;}
.x75_c00024{left:101.145569px;}
.x40_c00024{left:102.688424px;}
.x1d_c00024{left:106.557765px;}
.x16_c00024{left:107.746742px;}
.x11_c00024{left:108.831600px;}
.x6b_c00024{left:110.075628px;}
.x36_c00024{left:111.773357px;}
.x4_c00024{left:112.797117px;}
.x77_c00024{left:116.026901px;}
.x4c_c00024{left:118.469720px;}
.x53_c00024{left:120.072443px;}
.x59_c00024{left:122.650919px;}
.x31_c00024{left:124.149027px;}
.x1e_c00024{left:126.280740px;}
.x17_c00024{left:129.159993px;}
.x44_c00024{left:130.971558px;}
.x78_c00024{left:136.017539px;}
.x54_c00024{left:137.477306px;}
.x5d_c00024{left:138.751465px;}
.x7b_c00024{left:142.903341px;}
.x2a_c00024{left:145.646069px;}
.x1f_c00024{left:149.152700px;}
.x41_c00024{left:151.560492px;}
.x33_c00024{left:152.729790px;}
.x72_c00024{left:154.543853px;}
.x3d_c00024{left:156.330492px;}
.x37_c00024{left:158.297975px;}
.x2d_c00024{left:159.576416px;}
.x5_c00024{left:161.415327px;}
.x67_c00024{left:162.839276px;}
.x1_c00024{left:164.808000px;}
.x6_c00024{left:166.421999px;}
.x49_c00024{left:168.626630px;}
.x25_c00024{left:170.810244px;}
.xa_c00024{left:174.160719px;}
.x2e_c00024{left:175.609007px;}
.x64_c00024{left:176.873883px;}
.x45_c00024{left:178.072371px;}
.x34_c00024{left:179.183025px;}
.x18_c00024{left:180.713478px;}
.x6e_c00024{left:184.441988px;}
.xb_c00024{left:189.844796px;}
.x6c_c00024{left:192.721023px;}
.x20_c00024{left:197.846303px;}
.x5a_c00024{left:199.085790px;}
.x39_c00024{left:200.144478px;}
.x19_c00024{left:205.011275px;}
.x5e_c00024{left:211.687496px;}
.x73_c00024{left:218.111648px;}
.x12_c00024{left:219.125283px;}
.x68_c00024{left:221.077211px;}
.x55_c00024{left:223.521363px;}
.xc_c00024{left:225.244641px;}
.x71_c00024{left:227.655600px;}
.x50_c00024{left:229.568909px;}
.x46_c00024{left:232.536122px;}
.x13_c00024{left:234.320960px;}
.x26_c00024{left:236.993997px;}
.x61_c00024{left:240.337742px;}
.x4a_c00024{left:241.786997px;}
.x35_c00024{left:243.124755px;}
.x5b_c00024{left:244.875101px;}
.x56_c00024{left:246.194249px;}
.x2b_c00024{left:249.167319px;}
.x79_c00024{left:250.721975px;}
.x6f_c00024{left:253.497845px;}
.x2f_c00024{left:255.092823px;}
.x76_c00024{left:260.626878px;}
.x1a_c00024{left:262.516587px;}
.x5c_c00024{left:268.857548px;}
.x57_c00024{left:271.897578px;}
.x7_c00024{left:273.695817px;}
.x69_c00024{left:275.355552px;}
.x4d_c00024{left:276.751779px;}
.xd_c00024{left:278.812850px;}
.x38_c00024{left:282.131934px;}
.x21_c00024{left:284.245620px;}
.x3a_c00024{left:285.448218px;}
.x62_c00024{left:290.326745px;}
.x3e_c00024{left:294.596730px;}
.x27_c00024{left:295.606533px;}
.x6a_c00024{left:299.025099px;}
.x2_c00024{left:301.021650px;}
.x4e_c00024{left:303.332172px;}
.x42_c00024{left:304.850337px;}
.xe_c00024{left:305.962077px;}
.x30_c00024{left:308.048042px;}
.x3b_c00024{left:309.206463px;}
.x47_c00024{left:311.028459px;}
.x14_c00024{left:313.844010px;}
.x3f_c00024{left:314.935020px;}
.x7c_c00024{left:318.327800px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.fsa_c00024{font-size:31.746183pt;}
.fs8_c00024{font-size:47.619274pt;}
.fs9_c00024{font-size:53.221542pt;}
.fs4_c00024{font-size:54.155253pt;}
.fs5_c00024{font-size:55.088964pt;}
.fsb_c00024{font-size:56.022675pt;}
.fs6_c00024{font-size:56.956387pt;}
.fs7_c00024{font-size:57.890098pt;}
.fs3_c00024{font-size:58.823809pt;}
.fs2_c00024{font-size:59.757520pt;}
.fs1_c00024{font-size:60.691232pt;}
.fs0_c00024{font-size:67.227210pt;}
.y0_c00024{bottom:0.000000pt;}
.ye2_c00024{bottom:18.616292pt;}
.ye1_c00024{bottom:21.580432pt;}
.ye0_c00024{bottom:25.486469pt;}
.ydf_c00024{bottom:26.666908pt;}
.yde_c00024{bottom:29.053823pt;}
.ydd_c00024{bottom:30.077832pt;}
.ydc_c00024{bottom:32.552017pt;}
.ydb_c00024{bottom:35.207372pt;}
.yda_c00024{bottom:36.657911pt;}
.yd9_c00024{bottom:39.369184pt;}
.yd8_c00024{bottom:40.410929pt;}
.yd7_c00024{bottom:41.317588pt;}
.yd6_c00024{bottom:44.515127pt;}
.yd5_c00024{bottom:45.439452pt;}
.yd4_c00024{bottom:49.868968pt;}
.yd3_c00024{bottom:50.652271pt;}
.yd2_c00024{bottom:53.684820pt;}
.yd1_c00024{bottom:56.225945pt;}
.yd0_c00024{bottom:57.105316pt;}
.ycf_c00024{bottom:57.999951pt;}
.yce_c00024{bottom:59.232691pt;}
.ycd_c00024{bottom:60.573229pt;}
.ycc_c00024{bottom:66.851180pt;}
.ycb_c00024{bottom:68.167380pt;}
.yca_c00024{bottom:70.486567pt;}
.yc9_c00024{bottom:71.485939pt;}
.yc8_c00024{bottom:72.057552pt;}
.yc7_c00024{bottom:75.206317pt;}
.yc6_c00024{bottom:79.881629pt;}
.yc5_c00024{bottom:82.498252pt;}
.yc4_c00024{bottom:83.075747pt;}
.yc3_c00024{bottom:85.274587pt;}
.yc2_c00024{bottom:86.228025pt;}
.yc1_c00024{bottom:89.370188pt;}
.yc0_c00024{bottom:90.816879pt;}
.ybf_c00024{bottom:93.347809pt;}
.ybe_c00024{bottom:94.191271pt;}
.ybd_c00024{bottom:98.939575pt;}
.ybc_c00024{bottom:101.636916pt;}
.ybb_c00024{bottom:103.292169pt;}
.yba_c00024{bottom:105.948443pt;}
.yb9_c00024{bottom:108.609220pt;}
.yb8_c00024{bottom:111.174092pt;}
.yb7_c00024{bottom:112.114760pt;}
.yb6_c00024{bottom:114.246313pt;}
.yb5_c00024{bottom:115.164216pt;}
.yb4_c00024{bottom:116.334869pt;}
.yb3_c00024{bottom:119.797352pt;}
.yb2_c00024{bottom:121.322075pt;}
.yb1_c00024{bottom:124.067793pt;}
.yb0_c00024{bottom:124.792373pt;}
.yaf_c00024{bottom:127.394713pt;}
.yae_c00024{bottom:128.252125pt;}
.yad_c00024{bottom:129.160901pt;}
.yac_c00024{bottom:133.131781pt;}
.yab_c00024{bottom:135.130572pt;}
.yaa_c00024{bottom:137.172257pt;}
.ya9_c00024{bottom:139.186984pt;}
.ya8_c00024{bottom:140.240419pt;}
.ya7_c00024{bottom:141.790461pt;}
.ya6_c00024{bottom:142.654495pt;}
.ya5_c00024{bottom:145.245948pt;}
.ya4_c00024{bottom:145.778677pt;}
.ya3_c00024{bottom:148.828133pt;}
.ya2_c00024{bottom:151.327112pt;}
.ya1_c00024{bottom:154.124519pt;}
.ya0_c00024{bottom:155.749723pt;}
.y9f_c00024{bottom:158.273493pt;}
.y9e_c00024{bottom:160.037381pt;}
.y9d_c00024{bottom:164.480211pt;}
.y9c_c00024{bottom:166.455008pt;}
.y9b_c00024{bottom:170.033167pt;}
.y9a_c00024{bottom:170.547825pt;}
.y99_c00024{bottom:172.593991pt;}
.y98_c00024{bottom:173.230971pt;}
.y97_c00024{bottom:175.536015pt;}
.y96_c00024{bottom:176.222243pt;}
.y95_c00024{bottom:177.237900pt;}
.y94_c00024{bottom:178.633355pt;}
.y93_c00024{bottom:181.097955pt;}
.y92_c00024{bottom:186.352691pt;}
.y91_c00024{bottom:188.893455pt;}
.y90_c00024{bottom:190.886992pt;}
.y8f_c00024{bottom:192.139308pt;}
.y8e_c00024{bottom:194.975315pt;}
.y8d_c00024{bottom:195.926099pt;}
.y8c_c00024{bottom:196.935204pt;}
.y8b_c00024{bottom:200.283499pt;}
.y8a_c00024{bottom:200.734931pt;}
.y89_c00024{bottom:202.022033pt;}
.y88_c00024{bottom:203.195748pt;}
.y87_c00024{bottom:205.436573pt;}
.y86_c00024{bottom:206.322972pt;}
.y85_c00024{bottom:209.177356pt;}
.y84_c00024{bottom:210.919141pt;}
.y83_c00024{bottom:212.870177pt;}
.y82_c00024{bottom:213.747389pt;}
.y81_c00024{bottom:216.323461pt;}
.y80_c00024{bottom:217.467463pt;}
.y7f_c00024{bottom:218.476568pt;}
.y7e_c00024{bottom:222.304508pt;}
.y7d_c00024{bottom:223.078540pt;}
.y7c_c00024{bottom:225.351349pt;}
.y7b_c00024{bottom:226.264164pt;}
.y7a_c00024{bottom:227.201016pt;}
.y79_c00024{bottom:229.973813pt;}
.y78_c00024{bottom:233.190503pt;}
.y77_c00024{bottom:235.969768pt;}
.y76_c00024{bottom:236.873883pt;}
.y75_c00024{bottom:240.071421pt;}
.y74_c00024{bottom:242.328724pt;}
.y73_c00024{bottom:245.214659pt;}
.y72_c00024{bottom:246.468144pt;}
.y71_c00024{bottom:250.575644pt;}
.y70_c00024{bottom:253.932452pt;}
.y6f_c00024{bottom:255.998251pt;}
.y6e_c00024{bottom:256.981012pt;}
.y6d_c00024{bottom:258.164255pt;}
.y6c_c00024{bottom:260.793101pt;}
.y6b_c00024{bottom:262.866364pt;}
.y6a_c00024{bottom:266.381932pt;}
.y69_c00024{bottom:266.943929pt;}
.y68_c00024{bottom:271.074707pt;}
.y67_c00024{bottom:273.065653pt;}
.y66_c00024{bottom:275.190584pt;}
.y65_c00024{bottom:278.474057pt;}
.y64_c00024{bottom:280.752616pt;}
.y63_c00024{bottom:282.722688pt;}
.y62_c00024{bottom:283.524152pt;}
.y61_c00024{bottom:284.260963pt;}
.y60_c00024{bottom:286.983908pt;}
.y5f_c00024{bottom:291.070125pt;}
.y5e_c00024{bottom:293.128563pt;}
.y5d_c00024{bottom:294.055025pt;}
.y5c_c00024{bottom:296.800299pt;}
.y5b_c00024{bottom:298.626823pt;}
.y5a_c00024{bottom:301.386957pt;}
.y59_c00024{bottom:302.801960pt;}
.y58_c00024{bottom:303.725013pt;}
.y57_c00024{bottom:306.373867pt;}
.y56_c00024{bottom:309.999632pt;}
.y55_c00024{bottom:314.017231pt;}
.y54_c00024{bottom:315.800069pt;}
.y53_c00024{bottom:319.692835pt;}
.y52_c00024{bottom:320.644928pt;}
.y51_c00024{bottom:322.697880pt;}
.y50_c00024{bottom:324.061275pt;}
.y4f_c00024{bottom:327.066684pt;}
.y4e_c00024{bottom:330.920864pt;}
.y4d_c00024{bottom:335.427771pt;}
.y4c_c00024{bottom:336.795139pt;}
.y4b_c00024{bottom:337.394057pt;}
.y4a_c00024{bottom:340.496839pt;}
.y49_c00024{bottom:341.686963pt;}
.y48_c00024{bottom:342.402337pt;}
.y47_c00024{bottom:345.809429pt;}
.y46_c00024{bottom:350.691560pt;}
.y45_c00024{bottom:353.820480pt;}
.y44_c00024{bottom:355.114720pt;}
.y43_c00024{bottom:357.871757pt;}
.y42_c00024{bottom:361.181531pt;}
.y41_c00024{bottom:364.991520pt;}
.y40_c00024{bottom:367.555683pt;}
.y3f_c00024{bottom:368.719148pt;}
.y3e_c00024{bottom:371.243939pt;}
.y3d_c00024{bottom:375.584085pt;}
.y3c_c00024{bottom:379.291151pt;}
.y3b_c00024{bottom:380.619659pt;}
.y3a_c00024{bottom:381.364995pt;}
.y39_c00024{bottom:382.178419pt;}
.y38_c00024{bottom:384.477497pt;}
.y37_c00024{bottom:385.105335pt;}
.y36_c00024{bottom:387.080580pt;}
.y35_c00024{bottom:387.804472pt;}
.y34_c00024{bottom:390.225077pt;}
.y33_c00024{bottom:395.736584pt;}
.y32_c00024{bottom:396.751211pt;}
.y31_c00024{bottom:400.158969pt;}
.y30_c00024{bottom:402.797305pt;}
.y2f_c00024{bottom:405.142069pt;}
.y2e_c00024{bottom:408.035461pt;}
.y2d_c00024{bottom:410.695339pt;}
.y2c_c00024{bottom:413.698904pt;}
.y2b_c00024{bottom:414.639776pt;}
.y2a_c00024{bottom:417.395580pt;}
.y29_c00024{bottom:418.429612pt;}
.y28_c00024{bottom:419.765557pt;}
.y27_c00024{bottom:423.154272pt;}
.y26_c00024{bottom:424.092627pt;}
.y25_c00024{bottom:427.859847pt;}
.y24_c00024{bottom:429.982505pt;}
.y23_c00024{bottom:430.979627pt;}
.y22_c00024{bottom:431.838933pt;}
.y21_c00024{bottom:434.310768pt;}
.y20_c00024{bottom:434.915787pt;}
.y1f_c00024{bottom:441.142312pt;}
.y1e_c00024{bottom:443.394665pt;}
.y1d_c00024{bottom:444.345488pt;}
.y1c_c00024{bottom:446.363915pt;}
.y1b_c00024{bottom:447.202751pt;}
.y1a_c00024{bottom:448.686628pt;}
.y19_c00024{bottom:449.624840pt;}
.y18_c00024{bottom:450.243551pt;}
.y17_c00024{bottom:452.759187pt;}
.y16_c00024{bottom:456.296972pt;}
.y15_c00024{bottom:456.973501pt;}
.y14_c00024{bottom:459.392029pt;}
.y13_c00024{bottom:461.879560pt;}
.y12_c00024{bottom:463.397287pt;}
.y11_c00024{bottom:464.662263pt;}
.y10_c00024{bottom:465.384393pt;}
.yf_c00024{bottom:468.517379pt;}
.ye_c00024{bottom:469.555919pt;}
.yd_c00024{bottom:471.606576pt;}
.yc_c00024{bottom:472.960735pt;}
.yb_c00024{bottom:473.561451pt;}
.ya_c00024{bottom:476.849312pt;}
.y9_c00024{bottom:477.852667pt;}
.y8_c00024{bottom:479.059208pt;}
.y7_c00024{bottom:485.539032pt;}
.y6_c00024{bottom:489.453143pt;}
.y5_c00024{bottom:489.635819pt;}
.y4_c00024{bottom:491.410299pt;}
.y2_c00024{bottom:494.207067pt;}
.y3_c00024{bottom:494.419177pt;}
.y1_c00024{bottom:500.630667pt;}
.hc_c00024{height:31.746183pt;}
.ha_c00024{height:47.619274pt;}
.hb_c00024{height:53.221542pt;}
.h6_c00024{height:54.155253pt;}
.h7_c00024{height:55.088964pt;}
.hd_c00024{height:56.022675pt;}
.h8_c00024{height:56.956387pt;}
.h9_c00024{height:57.890098pt;}
.h5_c00024{height:58.823809pt;}
.h4_c00024{height:59.757520pt;}
.h3_c00024{height:60.691232pt;}
.h2_c00024{height:67.227210pt;}
.h0_c00024{height:547.200000pt;}
.h1_c00024{height:547.333333pt;}
.w0_c00024{width:326.400000pt;}
.w1_c00024{width:326.666667pt;}
.x0_c00024{left:0.000000pt;}
.x74_c00024{left:21.997339pt;}
.x65_c00024{left:23.248331pt;}
.x51_c00024{left:24.368419pt;}
.x28_c00024{left:25.767525pt;}
.x3_c00024{left:26.957535pt;}
.x5f_c00024{left:28.969923pt;}
.x1b_c00024{left:31.988840pt;}
.x22_c00024{left:32.999021pt;}
.xf_c00024{left:41.140679pt;}
.x52_c00024{left:43.084655pt;}
.x1c_c00024{left:44.324443pt;}
.x7a_c00024{left:46.036972pt;}
.x4b_c00024{left:47.843937pt;}
.x6d_c00024{left:53.072544pt;}
.x8_c00024{left:55.116480pt;}
.x70_c00024{left:56.146769pt;}
.x23_c00024{left:59.162257pt;}
.x3c_c00024{left:60.261535pt;}
.x15_c00024{left:62.089876pt;}
.x48_c00024{left:63.072507pt;}
.x63_c00024{left:64.766635pt;}
.x10_c00024{left:66.419407pt;}
.x4f_c00024{left:69.276549pt;}
.x66_c00024{left:73.171613pt;}
.x29_c00024{left:74.571617pt;}
.x58_c00024{left:77.375376pt;}
.x9_c00024{left:78.434851pt;}
.x24_c00024{left:79.408113pt;}
.x2c_c00024{left:80.571157pt;}
.x60_c00024{left:82.500216pt;}
.x43_c00024{left:83.748205pt;}
.x32_c00024{left:85.680581pt;}
.x75_c00024{left:89.907172pt;}
.x40_c00024{left:91.278599pt;}
.x1d_c00024{left:94.718013pt;}
.x16_c00024{left:95.774881pt;}
.x11_c00024{left:96.739200pt;}
.x6b_c00024{left:97.845003pt;}
.x36_c00024{left:99.354095pt;}
.x4_c00024{left:100.264104pt;}
.x77_c00024{left:103.135023pt;}
.x4c_c00024{left:105.306417pt;}
.x53_c00024{left:106.731060pt;}
.x59_c00024{left:109.023039pt;}
.x31_c00024{left:110.354691pt;}
.x1e_c00024{left:112.249547pt;}
.x17_c00024{left:114.808883pt;}
.x44_c00024{left:116.419163pt;}
.x78_c00024{left:120.904479pt;}
.x54_c00024{left:122.202049pt;}
.x5d_c00024{left:123.334636pt;}
.x7b_c00024{left:127.025192pt;}
.x2a_c00024{left:129.463172pt;}
.x1f_c00024{left:132.580177pt;}
.x41_c00024{left:134.720437pt;}
.x33_c00024{left:135.759813pt;}
.x72_c00024{left:137.372313pt;}
.x3d_c00024{left:138.960437pt;}
.x37_c00024{left:140.709311pt;}
.x2d_c00024{left:141.845703pt;}
.x5_c00024{left:143.480291pt;}
.x67_c00024{left:144.746023pt;}
.x1_c00024{left:146.496000pt;}
.x6_c00024{left:147.930665pt;}
.x49_c00024{left:149.890337pt;}
.x25_c00024{left:151.831328pt;}
.xa_c00024{left:154.809528pt;}
.x2e_c00024{left:156.096895pt;}
.x64_c00024{left:157.221229pt;}
.x45_c00024{left:158.286552pt;}
.x34_c00024{left:159.273800pt;}
.x18_c00024{left:160.634203pt;}
.x6e_c00024{left:163.948433pt;}
.xb_c00024{left:168.750929pt;}
.x6c_c00024{left:171.307576pt;}
.x20_c00024{left:175.863380pt;}
.x5a_c00024{left:176.965147pt;}
.x39_c00024{left:177.906203pt;}
.x19_c00024{left:182.232244pt;}
.x5e_c00024{left:188.166663pt;}
.x73_c00024{left:193.877020pt;}
.x12_c00024{left:194.778029pt;}
.x68_c00024{left:196.513076pt;}
.x55_c00024{left:198.685656pt;}
.xc_c00024{left:200.217459pt;}
.x71_c00024{left:202.360533pt;}
.x50_c00024{left:204.061252pt;}
.x46_c00024{left:206.698775pt;}
.x13_c00024{left:208.285297pt;}
.x26_c00024{left:210.661331pt;}
.x61_c00024{left:213.633548pt;}
.x4a_c00024{left:214.921775pt;}
.x35_c00024{left:216.110893pt;}
.x5b_c00024{left:217.666756pt;}
.x56_c00024{left:218.839332pt;}
.x2b_c00024{left:221.482061pt;}
.x79_c00024{left:222.863977pt;}
.x6f_c00024{left:225.331417pt;}
.x2f_c00024{left:226.749176pt;}
.x76_c00024{left:231.668336pt;}
.x1a_c00024{left:233.348077pt;}
.x5c_c00024{left:238.984487pt;}
.x57_c00024{left:241.686736pt;}
.x7_c00024{left:243.285171pt;}
.x69_c00024{left:244.760491pt;}
.x4d_c00024{left:246.001581pt;}
.xd_c00024{left:247.833644pt;}
.x38_c00024{left:250.783941pt;}
.x21_c00024{left:252.662773pt;}
.x3a_c00024{left:253.731749pt;}
.x62_c00024{left:258.068217pt;}
.x3e_c00024{left:261.863760pt;}
.x27_c00024{left:262.761363pt;}
.x6a_c00024{left:265.800088pt;}
.x2_c00024{left:267.574800pt;}
.x4e_c00024{left:269.628597pt;}
.x42_c00024{left:270.978077pt;}
.xe_c00024{left:271.966291pt;}
.x30_c00024{left:273.820481pt;}
.x3b_c00024{left:274.850189pt;}
.x47_c00024{left:276.469741pt;}
.x14_c00024{left:278.972453pt;}
.x3f_c00024{left:279.942240pt;}
.x7c_c00024{left:282.958044pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00025 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00025 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00025 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00025 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00025.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9d_c00025{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);}
.md9_c00025{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.mcc_c00025{transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);}
.m73_c00025{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);}
.m57_c00025{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.m67_c00025{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.mad_c00025{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.md1_c00025{transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);}
.m69_c00025{transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00025{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mb3_c00025{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.md0_c00025{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.m54_c00025{transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);}
.mbb_c00025{transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);}
.mc5_c00025{transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);}
.m5d_c00025{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);}
.m70_c00025{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00025{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00025{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.md2_c00025{transform:matrix(0.171820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171820,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.m97_c00025{transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);}
.m8f_c00025{transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m99_c00025{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m76_c00025{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.mb8_c00025{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m77_c00025{transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m3f_c00025{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m63_c00025{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);}
.m96_c00025{transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.178915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178915,0.000000,0.000000,0.250000,0,0);}
.m8a_c00025{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.mbe_c00025{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.m66_c00025{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.mc4_c00025{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m6c_c00025{transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);}
.m68_c00025{transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);}
.ma2_c00025{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.m5e_c00025{transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);}
.mbf_c00025{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.mcf_c00025{transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m55_c00025{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.md8_c00025{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m64_c00025{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);}
.md4_c00025{transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.mac_c00025{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00025{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.maf_c00025{transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);}
.ma5_c00025{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.m86_c00025{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.m91_c00025{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00025{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.ma8_c00025{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.m8b_c00025{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m87_c00025{transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);}
.m7c_c00025{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m7e_c00025{transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);}
.m7b_c00025{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m61_c00025{transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);}
.mba_c00025{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.mcb_c00025{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m89_c00025{transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);}
.m71_c00025{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m9e_c00025{transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);}
.mb0_c00025{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m65_c00025{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.m52_c00025{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);}
.ma7_c00025{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00025{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.m88_c00025{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00025{transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);}
.mb1_c00025{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m75_c00025{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m8e_c00025{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.m80_c00025{transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m6d_c00025{transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);}
.m6b_c00025{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.m9c_c00025{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.mc0_c00025{transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);}
.mc9_c00025{transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);}
.md5_c00025{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m90_c00025{transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.mdc_c00025{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.mb2_c00025{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00025{transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);}
.md7_c00025{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.m95_c00025{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m78_c00025{transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);}
.mca_c00025{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mab_c00025{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.mcd_c00025{transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);}
.ma6_c00025{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.m74_c00025{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);}
.m7d_c00025{transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.md6_c00025{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.mc1_c00025{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00025{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m53_c00025{transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);}
.m84_c00025{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m47_c00025{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m59_c00025{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mae_c00025{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00025{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m7f_c00025{transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.mc6_c00025{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.ma9_c00025{transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);}
.m56_c00025{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m82_c00025{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);}
.m62_c00025{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.mc8_c00025{transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);}
.m92_c00025{transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m49_c00025{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00025{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.ma1_c00025{transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);}
.m85_c00025{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mbd_c00025{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00025{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.mce_c00025{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m5a_c00025{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00025{transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.mdf_c00025{transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);}
.mc7_c00025{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m93_c00025{transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);}
.m94_c00025{transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00025{transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);}
.md3_c00025{transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.m79_c00025{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.mda_c00025{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);}
.m7a_c00025{transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);}
.m51_c00025{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.mb6_c00025{transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);}
.m58_c00025{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m72_c00025{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.m5f_c00025{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m50_c00025{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);}
.maa_c00025{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00025{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m81_c00025{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m9b_c00025{transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);}
.m8c_c00025{transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);}
.m8d_c00025{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m32_c00025{transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);}
.m4f_c00025{transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);}
.m4c_c00025{transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268360,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00025{transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);}
.m37_c00025{transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);}
.mde_c00025{transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);}
.mdd_c00025{transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);}
.m5c_c00025{transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);}
.m83_c00025{transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);}
.mb7_c00025{transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);}
.m60_c00025{transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00025{transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{transform:matrix(0.354915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354915,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.363300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363300,0.000000,0.000000,0.250000,0,0);}
.mc3_c00025{transform:matrix(0.386105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386105,0.000000,0.000000,0.250000,0,0);}
.m98_c00025{transform:matrix(0.404590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404590,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.436210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436210,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
.fc0_c00025{color:transparent;}
.fs7_c00025{font-size:57.750000px;}
.fs6_c00025{font-size:58.800000px;}
.fs1_c00025{font-size:59.850000px;}
.fs8_c00025{font-size:61.950000px;}
.fsa_c00025{font-size:63.000000px;}
.fs9_c00025{font-size:64.050000px;}
.fs0_c00025{font-size:65.100000px;}
.fs5_c00025{font-size:66.150000px;}
.fs4_c00025{font-size:67.200000px;}
.fs3_c00025{font-size:68.250000px;}
.fs2_c00025{font-size:69.300000px;}
.y0_c00025{bottom:0.000000px;}
.ye3_c00025{bottom:31.639500px;}
.ye2_c00025{bottom:32.173500px;}
.ye1_c00025{bottom:34.420500px;}
.ye0_c00025{bottom:35.163000px;}
.ydf_c00025{bottom:36.375000px;}
.yde_c00025{bottom:37.797000px;}
.ydd_c00025{bottom:48.436500px;}
.ydc_c00025{bottom:48.993000px;}
.ydb_c00025{bottom:49.891500px;}
.yda_c00025{bottom:51.214500px;}
.yd9_c00025{bottom:51.597000px;}
.yd8_c00025{bottom:52.654500px;}
.yd7_c00025{bottom:53.146500px;}
.yd6_c00025{bottom:53.994000px;}
.yd5_c00025{bottom:65.539500px;}
.yd4_c00025{bottom:66.028500px;}
.yd3_c00025{bottom:66.558000px;}
.yd2_c00025{bottom:67.407000px;}
.yd1_c00025{bottom:67.903500px;}
.yd0_c00025{bottom:69.393000px;}
.ycf_c00025{bottom:69.682500px;}
.yce_c00025{bottom:70.597500px;}
.ycd_c00025{bottom:71.002500px;}
.ycc_c00025{bottom:82.435500px;}
.ycb_c00025{bottom:82.692000px;}
.yca_c00025{bottom:84.400500px;}
.yc9_c00025{bottom:85.542000px;}
.yc8_c00025{bottom:85.995000px;}
.yc7_c00025{bottom:86.394000px;}
.yc6_c00025{bottom:99.061500px;}
.yc5_c00025{bottom:100.113000px;}
.yc4_c00025{bottom:100.582500px;}
.yc3_c00025{bottom:101.670000px;}
.yc2_c00025{bottom:102.763500px;}
.yc1_c00025{bottom:103.306500px;}
.yc0_c00025{bottom:103.731000px;}
.ybf_c00025{bottom:105.027000px;}
.ybe_c00025{bottom:116.364000px;}
.ybd_c00025{bottom:116.728500px;}
.ybc_c00025{bottom:116.964000px;}
.ybb_c00025{bottom:118.236000px;}
.yba_c00025{bottom:118.518000px;}
.yb9_c00025{bottom:120.099000px;}
.yb8_c00025{bottom:120.429000px;}
.yb7_c00025{bottom:120.702000px;}
.yb6_c00025{bottom:121.768500px;}
.yb5_c00025{bottom:132.571500px;}
.yb4_c00025{bottom:132.817500px;}
.yb3_c00025{bottom:134.023500px;}
.yb2_c00025{bottom:134.506500px;}
.yb1_c00025{bottom:136.281000px;}
.yb0_c00025{bottom:136.624500px;}
.yaf_c00025{bottom:137.076000px;}
.yae_c00025{bottom:137.968500px;}
.yad_c00025{bottom:150.805500px;}
.yac_c00025{bottom:151.324500px;}
.yab_c00025{bottom:152.394000px;}
.yaa_c00025{bottom:152.803500px;}
.ya9_c00025{bottom:154.009500px;}
.ya8_c00025{bottom:155.251500px;}
.ya7_c00025{bottom:166.482000px;}
.ya6_c00025{bottom:167.602500px;}
.ya5_c00025{bottom:168.159000px;}
.ya4_c00025{bottom:168.640500px;}
.ya3_c00025{bottom:169.849500px;}
.ya2_c00025{bottom:170.458500px;}
.ya1_c00025{bottom:171.826500px;}
.ya0_c00025{bottom:172.261500px;}
.y9f_c00025{bottom:185.562000px;}
.y9e_c00025{bottom:186.217500px;}
.y9d_c00025{bottom:186.394500px;}
.y9c_c00025{bottom:186.904500px;}
.y9b_c00025{bottom:187.980000px;}
.y9a_c00025{bottom:188.605500px;}
.y99_c00025{bottom:189.543000px;}
.y98_c00025{bottom:201.250500px;}
.y97_c00025{bottom:202.263000px;}
.y96_c00025{bottom:203.443500px;}
.y95_c00025{bottom:204.729000px;}
.y94_c00025{bottom:205.170000px;}
.y93_c00025{bottom:205.821000px;}
.y92_c00025{bottom:206.827500px;}
.y91_c00025{bottom:218.386500px;}
.y90_c00025{bottom:219.151500px;}
.y8f_c00025{bottom:219.583500px;}
.y8e_c00025{bottom:220.696500px;}
.y8d_c00025{bottom:221.020500px;}
.y8c_c00025{bottom:221.373000px;}
.y8b_c00025{bottom:222.118500px;}
.y8a_c00025{bottom:223.299000px;}
.y89_c00025{bottom:235.396500px;}
.y88_c00025{bottom:235.741500px;}
.y87_c00025{bottom:236.163000px;}
.y86_c00025{bottom:237.844500px;}
.y85_c00025{bottom:238.123500px;}
.y84_c00025{bottom:239.868000px;}
.y83_c00025{bottom:240.171000px;}
.y82_c00025{bottom:240.850500px;}
.y81_c00025{bottom:254.230500px;}
.y80_c00025{bottom:254.616000px;}
.y7f_c00025{bottom:256.674000px;}
.y7e_c00025{bottom:257.490000px;}
.y7d_c00025{bottom:257.859000px;}
.y7c_c00025{bottom:269.278500px;}
.y7b_c00025{bottom:270.867000px;}
.y7a_c00025{bottom:272.142000px;}
.y79_c00025{bottom:273.216000px;}
.y78_c00025{bottom:273.735000px;}
.y77_c00025{bottom:274.597500px;}
.y76_c00025{bottom:286.614000px;}
.y75_c00025{bottom:286.963500px;}
.y74_c00025{bottom:287.271000px;}
.y73_c00025{bottom:288.406500px;}
.y72_c00025{bottom:288.810000px;}
.y71_c00025{bottom:289.972500px;}
.y70_c00025{bottom:290.292000px;}
.y6f_c00025{bottom:290.743500px;}
.y6e_c00025{bottom:291.607500px;}
.y6d_c00025{bottom:303.357000px;}
.y6c_c00025{bottom:304.444500px;}
.y6b_c00025{bottom:305.175000px;}
.y6a_c00025{bottom:307.272000px;}
.y69_c00025{bottom:307.656000px;}
.y68_c00025{bottom:308.620500px;}
.y67_c00025{bottom:320.952000px;}
.y66_c00025{bottom:321.280500px;}
.y65_c00025{bottom:322.252500px;}
.y64_c00025{bottom:322.467000px;}
.y63_c00025{bottom:323.686500px;}
.y62_c00025{bottom:323.877000px;}
.y61_c00025{bottom:324.817500px;}
.y60_c00025{bottom:336.552000px;}
.y5f_c00025{bottom:337.326000px;}
.y5e_c00025{bottom:337.642500px;}
.y5d_c00025{bottom:339.240000px;}
.y5c_c00025{bottom:340.692000px;}
.y5b_c00025{bottom:341.557500px;}
.y5a_c00025{bottom:353.077500px;}
.y59_c00025{bottom:353.553000px;}
.y58_c00025{bottom:353.997000px;}
.y57_c00025{bottom:355.303500px;}
.y56_c00025{bottom:356.407500px;}
.y55_c00025{bottom:358.072500px;}
.y54_c00025{bottom:358.569000px;}
.y53_c00025{bottom:370.687500px;}
.y52_c00025{bottom:372.571500px;}
.y51_c00025{bottom:373.332000px;}
.y50_c00025{bottom:374.265000px;}
.y4f_c00025{bottom:375.280500px;}
.y4e_c00025{bottom:375.904500px;}
.y4d_c00025{bottom:376.390500px;}
.y4c_c00025{bottom:388.612500px;}
.y4b_c00025{bottom:390.069000px;}
.y4a_c00025{bottom:390.597000px;}
.y49_c00025{bottom:391.005000px;}
.y48_c00025{bottom:392.485500px;}
.y47_c00025{bottom:393.130500px;}
.y46_c00025{bottom:404.752500px;}
.y45_c00025{bottom:406.642500px;}
.y44_c00025{bottom:407.916000px;}
.y43_c00025{bottom:408.066000px;}
.y42_c00025{bottom:409.266000px;}
.y41_c00025{bottom:409.870500px;}
.y40_c00025{bottom:421.291500px;}
.y3f_c00025{bottom:423.067500px;}
.y3e_c00025{bottom:424.623000px;}
.y3d_c00025{bottom:425.061000px;}
.y3c_c00025{bottom:425.757000px;}
.y3b_c00025{bottom:426.610500px;}
.y3a_c00025{bottom:439.020000px;}
.y39_c00025{bottom:439.407000px;}
.y38_c00025{bottom:440.902500px;}
.y37_c00025{bottom:441.348000px;}
.y36_c00025{bottom:443.170500px;}
.y35_c00025{bottom:444.430500px;}
.y34_c00025{bottom:454.738500px;}
.y33_c00025{bottom:455.106000px;}
.y32_c00025{bottom:456.421500px;}
.y31_c00025{bottom:456.954000px;}
.y30_c00025{bottom:458.559000px;}
.y2f_c00025{bottom:459.256500px;}
.y2e_c00025{bottom:459.759000px;}
.y2d_c00025{bottom:460.629000px;}
.y2c_c00025{bottom:472.624500px;}
.y2b_c00025{bottom:473.134500px;}
.y2a_c00025{bottom:474.222000px;}
.y29_c00025{bottom:475.024500px;}
.y28_c00025{bottom:475.393500px;}
.y27_c00025{bottom:475.887000px;}
.y26_c00025{bottom:476.938500px;}
.y25_c00025{bottom:477.366000px;}
.y24_c00025{bottom:489.258000px;}
.y23_c00025{bottom:490.245000px;}
.y22_c00025{bottom:490.566000px;}
.y21_c00025{bottom:491.193000px;}
.y20_c00025{bottom:491.424000px;}
.y1f_c00025{bottom:493.293000px;}
.y1e_c00025{bottom:493.801500px;}
.y1d_c00025{bottom:494.376000px;}
.y1c_c00025{bottom:507.468000px;}
.y1b_c00025{bottom:507.742500px;}
.y1a_c00025{bottom:508.345500px;}
.y19_c00025{bottom:508.773000px;}
.y18_c00025{bottom:509.113500px;}
.y17_c00025{bottom:509.833500px;}
.y16_c00025{bottom:510.331500px;}
.y15_c00025{bottom:510.843000px;}
.y14_c00025{bottom:523.390500px;}
.y13_c00025{bottom:523.723500px;}
.y12_c00025{bottom:526.041000px;}
.y11_c00025{bottom:528.136500px;}
.y10_c00025{bottom:528.570000px;}
.yf_c00025{bottom:528.936000px;}
.ye_c00025{bottom:539.509500px;}
.yd_c00025{bottom:540.547500px;}
.yc_c00025{bottom:542.356500px;}
.yb_c00025{bottom:543.331500px;}
.ya_c00025{bottom:544.497000px;}
.y9_c00025{bottom:545.404500px;}
.y8_c00025{bottom:557.983500px;}
.y7_c00025{bottom:558.252000px;}
.y6_c00025{bottom:558.400500px;}
.y5_c00025{bottom:558.750000px;}
.y4_c00025{bottom:559.243500px;}
.y3_c00025{bottom:560.209500px;}
.y2_c00025{bottom:560.791500px;}
.y1_c00025{bottom:576.718500px;}
.h9_c00025{height:57.750000px;}
.h8_c00025{height:58.800000px;}
.h3_c00025{height:59.850000px;}
.ha_c00025{height:61.950000px;}
.hc_c00025{height:63.000000px;}
.hb_c00025{height:64.050000px;}
.h2_c00025{height:65.100000px;}
.h7_c00025{height:66.150000px;}
.h6_c00025{height:67.200000px;}
.h5_c00025{height:68.250000px;}
.h4_c00025{height:69.300000px;}
.h1_c00025{height:615.750000px;}
.h0_c00025{height:615.870000px;}
.w0_c00025{width:367.200000px;}
.w1_c00025{width:367.500000px;}
.x0_c00025{left:0.000000px;}
.x7f_c00025{left:34.272000px;}
.x76_c00025{left:35.917500px;}
.x65_c00025{left:38.092500px;}
.x56_c00025{left:40.224000px;}
.x51_c00025{left:41.689500px;}
.x3e_c00025{left:43.479000px;}
.x32_c00025{left:45.393000px;}
.x2b_c00025{left:46.444500px;}
.x19_c00025{left:48.120000px;}
.x9_c00025{left:49.174500px;}
.x2_c00025{left:52.510500px;}
.x77_c00025{left:56.170500px;}
.x54_c00025{left:58.329000px;}
.x73_c00025{left:59.421000px;}
.x62_c00025{left:62.110500px;}
.xf_c00025{left:66.957000px;}
.x39_c00025{left:68.305500px;}
.x21_c00025{left:71.313000px;}
.x33_c00025{left:75.621000px;}
.x7b_c00025{left:78.594000px;}
.x1a_c00025{left:80.032500px;}
.x5d_c00025{left:84.010500px;}
.x4f_c00025{left:85.693500px;}
.x13_c00025{left:87.583500px;}
.x10_c00025{left:88.597500px;}
.x6d_c00025{left:90.861000px;}
.xa_c00025{left:92.424000px;}
.x80_c00025{left:93.523500px;}
.x3a_c00025{left:96.660000px;}
.x5f_c00025{left:98.617500px;}
.x66_c00025{left:100.189500px;}
.x47_c00025{left:101.836500px;}
.x2c_c00025{left:103.716000px;}
.x3_c00025{left:105.430500px;}
.x1b_c00025{left:108.315000px;}
.x68_c00025{left:109.635000px;}
.x52_c00025{left:110.722500px;}
.x27_c00025{left:112.594500px;}
.x48_c00025{left:113.761500px;}
.x70_c00025{left:115.411500px;}
.x78_c00025{left:116.421000px;}
.x6e_c00025{left:120.987000px;}
.x2f_c00025{left:123.673500px;}
.x14_c00025{left:125.931000px;}
.x69_c00025{left:127.728000px;}
.x22_c00025{left:129.735000px;}
.x5e_c00025{left:131.461500px;}
.x34_c00025{left:135.645000px;}
.x60_c00025{left:137.757000px;}
.x71_c00025{left:140.127000px;}
.x35_c00025{left:143.169000px;}
.x28_c00025{left:145.807500px;}
.xb_c00025{left:147.946500px;}
.x3f_c00025{left:151.582500px;}
.x7c_c00025{left:156.096000px;}
.x23_c00025{left:157.192500px;}
.x5a_c00025{left:161.209500px;}
.x57_c00025{left:164.166000px;}
.x37_c00025{left:165.246000px;}
.x43_c00025{left:172.312500px;}
.x7d_c00025{left:175.258500px;}
.x24_c00025{left:177.715500px;}
.x15_c00025{left:181.296000px;}
.x50_c00025{left:182.395500px;}
.x3b_c00025{left:185.224500px;}
.x1_c00025{left:187.380000px;}
.x38_c00025{left:190.378500px;}
.x4_c00025{left:193.185000px;}
.xc_c00025{left:194.377500px;}
.x4c_c00025{left:199.543500px;}
.x49_c00025{left:203.386500px;}
.x61_c00025{left:204.952500px;}
.x16_c00025{left:207.495000px;}
.x1c_c00025{left:212.107500px;}
.x55_c00025{left:213.591000px;}
.x79_c00025{left:215.779500px;}
.x3c_c00025{left:219.774000px;}
.x6a_c00025{left:221.155500px;}
.x25_c00025{left:222.280500px;}
.x30_c00025{left:223.327500px;}
.x1d_c00025{left:224.976000px;}
.x53_c00025{left:228.174000px;}
.x4d_c00025{left:232.749000px;}
.x67_c00025{left:234.375000px;}
.x5b_c00025{left:236.772000px;}
.x5_c00025{left:237.993000px;}
.x72_c00025{left:239.235000px;}
.x17_c00025{left:240.423000px;}
.x74_c00025{left:242.871000px;}
.x63_c00025{left:245.457000px;}
.x6b_c00025{left:246.556500px;}
.x29_c00025{left:247.603500px;}
.x58_c00025{left:253.258500px;}
.x75_c00025{left:257.094000px;}
.x7a_c00025{left:258.265500px;}
.x1e_c00025{left:259.824000px;}
.x44_c00025{left:261.090000px;}
.x4a_c00025{left:264.129000px;}
.x81_c00025{left:268.581000px;}
.x6_c00025{left:269.823000px;}
.x40_c00025{left:272.127000px;}
.x64_c00025{left:273.250500px;}
.x2d_c00025{left:274.836000px;}
.x1f_c00025{left:277.618500px;}
.x45_c00025{left:278.692500px;}
.xd_c00025{left:280.537500px;}
.x4e_c00025{left:282.153000px;}
.x7_c00025{left:283.369500px;}
.x4b_c00025{left:284.652000px;}
.x18_c00025{left:286.795500px;}
.x59_c00025{left:288.096000px;}
.x6f_c00025{left:289.453500px;}
.x82_c00025{left:290.824500px;}
.x2e_c00025{left:292.419000px;}
.x41_c00025{left:294.312000px;}
.x5c_c00025{left:299.752500px;}
.x36_c00025{left:301.353000px;}
.x3d_c00025{left:305.382000px;}
.x8_c00025{left:307.720500px;}
.x11_c00025{left:309.277500px;}
.x26_c00025{left:311.062500px;}
.x31_c00025{left:312.144000px;}
.x7e_c00025{left:314.149500px;}
.x42_c00025{left:318.078000px;}
.x46_c00025{left:321.657000px;}
.x6c_c00025{left:322.950000px;}
.x12_c00025{left:325.918500px;}
.x2a_c00025{left:327.780000px;}
.xe_c00025{left:329.965500px;}
.x20_c00025{left:332.421000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.fs7_c00025{font-size:51.333333pt;}
.fs6_c00025{font-size:52.266667pt;}
.fs1_c00025{font-size:53.200000pt;}
.fs8_c00025{font-size:55.066667pt;}
.fsa_c00025{font-size:56.000000pt;}
.fs9_c00025{font-size:56.933333pt;}
.fs0_c00025{font-size:57.866667pt;}
.fs5_c00025{font-size:58.800000pt;}
.fs4_c00025{font-size:59.733333pt;}
.fs3_c00025{font-size:60.666667pt;}
.fs2_c00025{font-size:61.600000pt;}
.y0_c00025{bottom:0.000000pt;}
.ye3_c00025{bottom:28.124000pt;}
.ye2_c00025{bottom:28.598667pt;}
.ye1_c00025{bottom:30.596000pt;}
.ye0_c00025{bottom:31.256000pt;}
.ydf_c00025{bottom:32.333333pt;}
.yde_c00025{bottom:33.597333pt;}
.ydd_c00025{bottom:43.054667pt;}
.ydc_c00025{bottom:43.549333pt;}
.ydb_c00025{bottom:44.348000pt;}
.yda_c00025{bottom:45.524000pt;}
.yd9_c00025{bottom:45.864000pt;}
.yd8_c00025{bottom:46.804000pt;}
.yd7_c00025{bottom:47.241333pt;}
.yd6_c00025{bottom:47.994667pt;}
.yd5_c00025{bottom:58.257333pt;}
.yd4_c00025{bottom:58.692000pt;}
.yd3_c00025{bottom:59.162667pt;}
.yd2_c00025{bottom:59.917333pt;}
.yd1_c00025{bottom:60.358667pt;}
.yd0_c00025{bottom:61.682667pt;}
.ycf_c00025{bottom:61.940000pt;}
.yce_c00025{bottom:62.753333pt;}
.ycd_c00025{bottom:63.113333pt;}
.ycc_c00025{bottom:73.276000pt;}
.ycb_c00025{bottom:73.504000pt;}
.yca_c00025{bottom:75.022667pt;}
.yc9_c00025{bottom:76.037333pt;}
.yc8_c00025{bottom:76.440000pt;}
.yc7_c00025{bottom:76.794667pt;}
.yc6_c00025{bottom:88.054667pt;}
.yc5_c00025{bottom:88.989333pt;}
.yc4_c00025{bottom:89.406667pt;}
.yc3_c00025{bottom:90.373333pt;}
.yc2_c00025{bottom:91.345333pt;}
.yc1_c00025{bottom:91.828000pt;}
.yc0_c00025{bottom:92.205333pt;}
.ybf_c00025{bottom:93.357333pt;}
.ybe_c00025{bottom:103.434667pt;}
.ybd_c00025{bottom:103.758667pt;}
.ybc_c00025{bottom:103.968000pt;}
.ybb_c00025{bottom:105.098667pt;}
.yba_c00025{bottom:105.349333pt;}
.yb9_c00025{bottom:106.754667pt;}
.yb8_c00025{bottom:107.048000pt;}
.yb7_c00025{bottom:107.290667pt;}
.yb6_c00025{bottom:108.238667pt;}
.yb5_c00025{bottom:117.841333pt;}
.yb4_c00025{bottom:118.060000pt;}
.yb3_c00025{bottom:119.132000pt;}
.yb2_c00025{bottom:119.561333pt;}
.yb1_c00025{bottom:121.138667pt;}
.yb0_c00025{bottom:121.444000pt;}
.yaf_c00025{bottom:121.845333pt;}
.yae_c00025{bottom:122.638667pt;}
.yad_c00025{bottom:134.049333pt;}
.yac_c00025{bottom:134.510667pt;}
.yab_c00025{bottom:135.461333pt;}
.yaa_c00025{bottom:135.825333pt;}
.ya9_c00025{bottom:136.897333pt;}
.ya8_c00025{bottom:138.001333pt;}
.ya7_c00025{bottom:147.984000pt;}
.ya6_c00025{bottom:148.980000pt;}
.ya5_c00025{bottom:149.474667pt;}
.ya4_c00025{bottom:149.902667pt;}
.ya3_c00025{bottom:150.977333pt;}
.ya2_c00025{bottom:151.518667pt;}
.ya1_c00025{bottom:152.734667pt;}
.ya0_c00025{bottom:153.121333pt;}
.y9f_c00025{bottom:164.944000pt;}
.y9e_c00025{bottom:165.526667pt;}
.y9d_c00025{bottom:165.684000pt;}
.y9c_c00025{bottom:166.137333pt;}
.y9b_c00025{bottom:167.093333pt;}
.y9a_c00025{bottom:167.649333pt;}
.y99_c00025{bottom:168.482667pt;}
.y98_c00025{bottom:178.889333pt;}
.y97_c00025{bottom:179.789333pt;}
.y96_c00025{bottom:180.838667pt;}
.y95_c00025{bottom:181.981333pt;}
.y94_c00025{bottom:182.373333pt;}
.y93_c00025{bottom:182.952000pt;}
.y92_c00025{bottom:183.846667pt;}
.y91_c00025{bottom:194.121333pt;}
.y90_c00025{bottom:194.801333pt;}
.y8f_c00025{bottom:195.185333pt;}
.y8e_c00025{bottom:196.174667pt;}
.y8d_c00025{bottom:196.462667pt;}
.y8c_c00025{bottom:196.776000pt;}
.y8b_c00025{bottom:197.438667pt;}
.y8a_c00025{bottom:198.488000pt;}
.y89_c00025{bottom:209.241333pt;}
.y88_c00025{bottom:209.548000pt;}
.y87_c00025{bottom:209.922667pt;}
.y86_c00025{bottom:211.417333pt;}
.y85_c00025{bottom:211.665333pt;}
.y84_c00025{bottom:213.216000pt;}
.y83_c00025{bottom:213.485333pt;}
.y82_c00025{bottom:214.089333pt;}
.y81_c00025{bottom:225.982667pt;}
.y80_c00025{bottom:226.325333pt;}
.y7f_c00025{bottom:228.154667pt;}
.y7e_c00025{bottom:228.880000pt;}
.y7d_c00025{bottom:229.208000pt;}
.y7c_c00025{bottom:239.358667pt;}
.y7b_c00025{bottom:240.770667pt;}
.y7a_c00025{bottom:241.904000pt;}
.y79_c00025{bottom:242.858667pt;}
.y78_c00025{bottom:243.320000pt;}
.y77_c00025{bottom:244.086667pt;}
.y76_c00025{bottom:254.768000pt;}
.y75_c00025{bottom:255.078667pt;}
.y74_c00025{bottom:255.352000pt;}
.y73_c00025{bottom:256.361333pt;}
.y72_c00025{bottom:256.720000pt;}
.y71_c00025{bottom:257.753333pt;}
.y70_c00025{bottom:258.037333pt;}
.y6f_c00025{bottom:258.438667pt;}
.y6e_c00025{bottom:259.206667pt;}
.y6d_c00025{bottom:269.650667pt;}
.y6c_c00025{bottom:270.617333pt;}
.y6b_c00025{bottom:271.266667pt;}
.y6a_c00025{bottom:273.130667pt;}
.y69_c00025{bottom:273.472000pt;}
.y68_c00025{bottom:274.329333pt;}
.y67_c00025{bottom:285.290667pt;}
.y66_c00025{bottom:285.582667pt;}
.y65_c00025{bottom:286.446667pt;}
.y64_c00025{bottom:286.637333pt;}
.y63_c00025{bottom:287.721333pt;}
.y62_c00025{bottom:287.890667pt;}
.y61_c00025{bottom:288.726667pt;}
.y60_c00025{bottom:299.157333pt;}
.y5f_c00025{bottom:299.845333pt;}
.y5e_c00025{bottom:300.126667pt;}
.y5d_c00025{bottom:301.546667pt;}
.y5c_c00025{bottom:302.837333pt;}
.y5b_c00025{bottom:303.606667pt;}
.y5a_c00025{bottom:313.846667pt;}
.y59_c00025{bottom:314.269333pt;}
.y58_c00025{bottom:314.664000pt;}
.y57_c00025{bottom:315.825333pt;}
.y56_c00025{bottom:316.806667pt;}
.y55_c00025{bottom:318.286667pt;}
.y54_c00025{bottom:318.728000pt;}
.y53_c00025{bottom:329.500000pt;}
.y52_c00025{bottom:331.174667pt;}
.y51_c00025{bottom:331.850667pt;}
.y50_c00025{bottom:332.680000pt;}
.y4f_c00025{bottom:333.582667pt;}
.y4e_c00025{bottom:334.137333pt;}
.y4d_c00025{bottom:334.569333pt;}
.y4c_c00025{bottom:345.433333pt;}
.y4b_c00025{bottom:346.728000pt;}
.y4a_c00025{bottom:347.197333pt;}
.y49_c00025{bottom:347.560000pt;}
.y48_c00025{bottom:348.876000pt;}
.y47_c00025{bottom:349.449333pt;}
.y46_c00025{bottom:359.780000pt;}
.y45_c00025{bottom:361.460000pt;}
.y44_c00025{bottom:362.592000pt;}
.y43_c00025{bottom:362.725333pt;}
.y42_c00025{bottom:363.792000pt;}
.y41_c00025{bottom:364.329333pt;}
.y40_c00025{bottom:374.481333pt;}
.y3f_c00025{bottom:376.060000pt;}
.y3e_c00025{bottom:377.442667pt;}
.y3d_c00025{bottom:377.832000pt;}
.y3c_c00025{bottom:378.450667pt;}
.y3b_c00025{bottom:379.209333pt;}
.y3a_c00025{bottom:390.240000pt;}
.y39_c00025{bottom:390.584000pt;}
.y38_c00025{bottom:391.913333pt;}
.y37_c00025{bottom:392.309333pt;}
.y36_c00025{bottom:393.929333pt;}
.y35_c00025{bottom:395.049333pt;}
.y34_c00025{bottom:404.212000pt;}
.y33_c00025{bottom:404.538667pt;}
.y32_c00025{bottom:405.708000pt;}
.y31_c00025{bottom:406.181333pt;}
.y30_c00025{bottom:407.608000pt;}
.y2f_c00025{bottom:408.228000pt;}
.y2e_c00025{bottom:408.674667pt;}
.y2d_c00025{bottom:409.448000pt;}
.y2c_c00025{bottom:420.110667pt;}
.y2b_c00025{bottom:420.564000pt;}
.y2a_c00025{bottom:421.530667pt;}
.y29_c00025{bottom:422.244000pt;}
.y28_c00025{bottom:422.572000pt;}
.y27_c00025{bottom:423.010667pt;}
.y26_c00025{bottom:423.945333pt;}
.y25_c00025{bottom:424.325333pt;}
.y24_c00025{bottom:434.896000pt;}
.y23_c00025{bottom:435.773333pt;}
.y22_c00025{bottom:436.058667pt;}
.y21_c00025{bottom:436.616000pt;}
.y20_c00025{bottom:436.821333pt;}
.y1f_c00025{bottom:438.482667pt;}
.y1e_c00025{bottom:438.934667pt;}
.y1d_c00025{bottom:439.445333pt;}
.y1c_c00025{bottom:451.082667pt;}
.y1b_c00025{bottom:451.326667pt;}
.y1a_c00025{bottom:451.862667pt;}
.y19_c00025{bottom:452.242667pt;}
.y18_c00025{bottom:452.545333pt;}
.y17_c00025{bottom:453.185333pt;}
.y16_c00025{bottom:453.628000pt;}
.y15_c00025{bottom:454.082667pt;}
.y14_c00025{bottom:465.236000pt;}
.y13_c00025{bottom:465.532000pt;}
.y12_c00025{bottom:467.592000pt;}
.y11_c00025{bottom:469.454667pt;}
.y10_c00025{bottom:469.840000pt;}
.yf_c00025{bottom:470.165333pt;}
.ye_c00025{bottom:479.564000pt;}
.yd_c00025{bottom:480.486667pt;}
.yc_c00025{bottom:482.094667pt;}
.yb_c00025{bottom:482.961333pt;}
.ya_c00025{bottom:483.997333pt;}
.y9_c00025{bottom:484.804000pt;}
.y8_c00025{bottom:495.985333pt;}
.y7_c00025{bottom:496.224000pt;}
.y6_c00025{bottom:496.356000pt;}
.y5_c00025{bottom:496.666667pt;}
.y4_c00025{bottom:497.105333pt;}
.y3_c00025{bottom:497.964000pt;}
.y2_c00025{bottom:498.481333pt;}
.y1_c00025{bottom:512.638667pt;}
.h9_c00025{height:51.333333pt;}
.h8_c00025{height:52.266667pt;}
.h3_c00025{height:53.200000pt;}
.ha_c00025{height:55.066667pt;}
.hc_c00025{height:56.000000pt;}
.hb_c00025{height:56.933333pt;}
.h2_c00025{height:57.866667pt;}
.h7_c00025{height:58.800000pt;}
.h6_c00025{height:59.733333pt;}
.h5_c00025{height:60.666667pt;}
.h4_c00025{height:61.600000pt;}
.h1_c00025{height:547.333333pt;}
.h0_c00025{height:547.440000pt;}
.w0_c00025{width:326.400000pt;}
.w1_c00025{width:326.666667pt;}
.x0_c00025{left:0.000000pt;}
.x7f_c00025{left:30.464000pt;}
.x76_c00025{left:31.926667pt;}
.x65_c00025{left:33.860000pt;}
.x56_c00025{left:35.754667pt;}
.x51_c00025{left:37.057333pt;}
.x3e_c00025{left:38.648000pt;}
.x32_c00025{left:40.349333pt;}
.x2b_c00025{left:41.284000pt;}
.x19_c00025{left:42.773333pt;}
.x9_c00025{left:43.710667pt;}
.x2_c00025{left:46.676000pt;}
.x77_c00025{left:49.929333pt;}
.x54_c00025{left:51.848000pt;}
.x73_c00025{left:52.818667pt;}
.x62_c00025{left:55.209333pt;}
.xf_c00025{left:59.517333pt;}
.x39_c00025{left:60.716000pt;}
.x21_c00025{left:63.389333pt;}
.x33_c00025{left:67.218667pt;}
.x7b_c00025{left:69.861333pt;}
.x1a_c00025{left:71.140000pt;}
.x5d_c00025{left:74.676000pt;}
.x4f_c00025{left:76.172000pt;}
.x13_c00025{left:77.852000pt;}
.x10_c00025{left:78.753333pt;}
.x6d_c00025{left:80.765333pt;}
.xa_c00025{left:82.154667pt;}
.x80_c00025{left:83.132000pt;}
.x3a_c00025{left:85.920000pt;}
.x5f_c00025{left:87.660000pt;}
.x66_c00025{left:89.057333pt;}
.x47_c00025{left:90.521333pt;}
.x2c_c00025{left:92.192000pt;}
.x3_c00025{left:93.716000pt;}
.x1b_c00025{left:96.280000pt;}
.x68_c00025{left:97.453333pt;}
.x52_c00025{left:98.420000pt;}
.x27_c00025{left:100.084000pt;}
.x48_c00025{left:101.121333pt;}
.x70_c00025{left:102.588000pt;}
.x78_c00025{left:103.485333pt;}
.x6e_c00025{left:107.544000pt;}
.x2f_c00025{left:109.932000pt;}
.x14_c00025{left:111.938667pt;}
.x69_c00025{left:113.536000pt;}
.x22_c00025{left:115.320000pt;}
.x5e_c00025{left:116.854667pt;}
.x34_c00025{left:120.573333pt;}
.x60_c00025{left:122.450667pt;}
.x71_c00025{left:124.557333pt;}
.x35_c00025{left:127.261333pt;}
.x28_c00025{left:129.606667pt;}
.xb_c00025{left:131.508000pt;}
.x3f_c00025{left:134.740000pt;}
.x7c_c00025{left:138.752000pt;}
.x23_c00025{left:139.726667pt;}
.x5a_c00025{left:143.297333pt;}
.x57_c00025{left:145.925333pt;}
.x37_c00025{left:146.885333pt;}
.x43_c00025{left:153.166667pt;}
.x7d_c00025{left:155.785333pt;}
.x24_c00025{left:157.969333pt;}
.x15_c00025{left:161.152000pt;}
.x50_c00025{left:162.129333pt;}
.x3b_c00025{left:164.644000pt;}
.x1_c00025{left:166.560000pt;}
.x38_c00025{left:169.225333pt;}
.x4_c00025{left:171.720000pt;}
.xc_c00025{left:172.780000pt;}
.x4c_c00025{left:177.372000pt;}
.x49_c00025{left:180.788000pt;}
.x61_c00025{left:182.180000pt;}
.x16_c00025{left:184.440000pt;}
.x1c_c00025{left:188.540000pt;}
.x55_c00025{left:189.858667pt;}
.x79_c00025{left:191.804000pt;}
.x3c_c00025{left:195.354667pt;}
.x6a_c00025{left:196.582667pt;}
.x25_c00025{left:197.582667pt;}
.x30_c00025{left:198.513333pt;}
.x1d_c00025{left:199.978667pt;}
.x53_c00025{left:202.821333pt;}
.x4d_c00025{left:206.888000pt;}
.x67_c00025{left:208.333333pt;}
.x5b_c00025{left:210.464000pt;}
.x5_c00025{left:211.549333pt;}
.x72_c00025{left:212.653333pt;}
.x17_c00025{left:213.709333pt;}
.x74_c00025{left:215.885333pt;}
.x63_c00025{left:218.184000pt;}
.x6b_c00025{left:219.161333pt;}
.x29_c00025{left:220.092000pt;}
.x58_c00025{left:225.118667pt;}
.x75_c00025{left:228.528000pt;}
.x7a_c00025{left:229.569333pt;}
.x1e_c00025{left:230.954667pt;}
.x44_c00025{left:232.080000pt;}
.x4a_c00025{left:234.781333pt;}
.x81_c00025{left:238.738667pt;}
.x6_c00025{left:239.842667pt;}
.x40_c00025{left:241.890667pt;}
.x64_c00025{left:242.889333pt;}
.x2d_c00025{left:244.298667pt;}
.x1f_c00025{left:246.772000pt;}
.x45_c00025{left:247.726667pt;}
.xd_c00025{left:249.366667pt;}
.x4e_c00025{left:250.802667pt;}
.x7_c00025{left:251.884000pt;}
.x4b_c00025{left:253.024000pt;}
.x18_c00025{left:254.929333pt;}
.x59_c00025{left:256.085333pt;}
.x6f_c00025{left:257.292000pt;}
.x82_c00025{left:258.510667pt;}
.x2e_c00025{left:259.928000pt;}
.x41_c00025{left:261.610667pt;}
.x5c_c00025{left:266.446667pt;}
.x36_c00025{left:267.869333pt;}
.x3d_c00025{left:271.450667pt;}
.x8_c00025{left:273.529333pt;}
.x11_c00025{left:274.913333pt;}
.x26_c00025{left:276.500000pt;}
.x31_c00025{left:277.461333pt;}
.x7e_c00025{left:279.244000pt;}
.x42_c00025{left:282.736000pt;}
.x46_c00025{left:285.917333pt;}
.x6c_c00025{left:287.066667pt;}
.x12_c00025{left:289.705333pt;}
.x2a_c00025{left:291.360000pt;}
.xe_c00025{left:293.302667pt;}
.x20_c00025{left:295.485333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00026 {
    display:none;
  }
  .loading-indicator_c00026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00026 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00026 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00026" -> "#page-container .classname_c00026")
 */
.pf_c00026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00026 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00026 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00026 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00026 {overflow:visible;}
  }
}
.c_c00026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00026 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00026:after { /* webkit #35443 */
  content: '';
}
.t_c00026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00026 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00026 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00026 { /* info for Javascript */
  display:none;
}
.l_c00026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00026:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00026 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00026.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdf_c00026{transform:matrix(0.009687,0.000398,-0.010252,0.249790,0,0);-ms-transform:matrix(0.009687,0.000398,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.009687,0.000398,-0.010252,0.249790,0,0);}
.md7_c00026{transform:matrix(0.017870,0.000733,-0.010252,0.249790,0,0);-ms-transform:matrix(0.017870,0.000733,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.017870,0.000733,-0.010252,0.249790,0,0);}
.mbf_c00026{transform:matrix(0.074602,0.002390,-0.008004,0.249872,0,0);-ms-transform:matrix(0.074602,0.002390,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.074602,0.002390,-0.008004,0.249872,0,0);}
.mda_c00026{transform:matrix(0.113410,0.004654,-0.010252,0.249790,0,0);-ms-transform:matrix(0.113410,0.004654,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.113410,0.004654,-0.010252,0.249790,0,0);}
.m4_c00026{transform:matrix(0.115963,0.003479,-0.007497,0.249888,0,0);-ms-transform:matrix(0.115963,0.003479,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.115963,0.003479,-0.007497,0.249888,0,0);}
.m33_c00026{transform:matrix(0.122380,0.004288,-0.008753,0.249847,0,0);-ms-transform:matrix(0.122380,0.004288,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.122380,0.004288,-0.008753,0.249847,0,0);}
.mc4_c00026{transform:matrix(0.141257,0.005656,-0.010002,0.249800,0,0);-ms-transform:matrix(0.141257,0.005656,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.141257,0.005656,-0.010002,0.249800,0,0);}
.m79_c00026{transform:matrix(0.147934,0.005183,-0.008753,0.249847,0,0);-ms-transform:matrix(0.147934,0.005183,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.147934,0.005183,-0.008753,0.249847,0,0);}
.m64_c00026{transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);-ms-transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);}
.m56_c00026{transform:matrix(0.152406,0.005340,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152406,0.005340,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152406,0.005340,-0.008753,0.249847,0,0);}
.m58_c00026{transform:matrix(0.152711,0.005350,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152711,0.005350,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152711,0.005350,-0.008753,0.249847,0,0);}
.m8c_c00026{transform:matrix(0.153401,0.005374,-0.008753,0.249847,0,0);-ms-transform:matrix(0.153401,0.005374,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.153401,0.005374,-0.008753,0.249847,0,0);}
.m49_c00026{transform:matrix(0.154115,0.005399,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154115,0.005399,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154115,0.005399,-0.008753,0.249847,0,0);}
.m57_c00026{transform:matrix(0.154195,0.005402,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154195,0.005402,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154195,0.005402,-0.008753,0.249847,0,0);}
.mb7_c00026{transform:matrix(0.155239,0.005750,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155239,0.005750,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155239,0.005750,-0.009253,0.249829,0,0);}
.m90_c00026{transform:matrix(0.156354,0.005478,-0.008753,0.249847,0,0);-ms-transform:matrix(0.156354,0.005478,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.156354,0.005478,-0.008753,0.249847,0,0);}
.m37_c00026{transform:matrix(0.157688,0.005525,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157688,0.005525,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157688,0.005525,-0.008753,0.249847,0,0);}
.m97_c00026{transform:matrix(0.158238,0.005544,-0.008753,0.249847,0,0);-ms-transform:matrix(0.158238,0.005544,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.158238,0.005544,-0.008753,0.249847,0,0);}
.mca_c00026{transform:matrix(0.160352,0.004329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160352,0.004329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160352,0.004329,-0.006748,0.249909,0,0);}
.m96_c00026{transform:matrix(0.161726,0.005666,-0.008753,0.249847,0,0);-ms-transform:matrix(0.161726,0.005666,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.161726,0.005666,-0.008753,0.249847,0,0);}
.m14_c00026{transform:matrix(0.162067,0.004862,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162067,0.004862,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162067,0.004862,-0.007497,0.249888,0,0);}
.mb9_c00026{transform:matrix(0.162194,0.006007,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162194,0.006007,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162194,0.006007,-0.009253,0.249829,0,0);}
.mba_c00026{transform:matrix(0.162638,0.006024,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162638,0.006024,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162638,0.006024,-0.009253,0.249829,0,0);}
.m81_c00026{transform:matrix(0.162750,0.005702,-0.008753,0.249847,0,0);-ms-transform:matrix(0.162750,0.005702,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.162750,0.005702,-0.008753,0.249847,0,0);}
.m6a_c00026{transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);}
.ma8_c00026{transform:matrix(0.165089,0.005784,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165089,0.005784,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165089,0.005784,-0.008753,0.249847,0,0);}
.m8_c00026{transform:matrix(0.166595,0.004998,-0.007497,0.249888,0,0);-ms-transform:matrix(0.166595,0.004998,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.166595,0.004998,-0.007497,0.249888,0,0);}
.m40_c00026{transform:matrix(0.166683,0.005840,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166683,0.005840,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166683,0.005840,-0.008753,0.249847,0,0);}
.m42_c00026{transform:matrix(0.166773,0.005843,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166773,0.005843,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166773,0.005843,-0.008753,0.249847,0,0);}
.m93_c00026{transform:matrix(0.167182,0.005857,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167182,0.005857,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167182,0.005857,-0.008753,0.249847,0,0);}
.m9e_c00026{transform:matrix(0.167257,0.005860,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167257,0.005860,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167257,0.005860,-0.008753,0.249847,0,0);}
.m9d_c00026{transform:matrix(0.168352,0.005898,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168352,0.005898,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168352,0.005898,-0.008753,0.249847,0,0);}
.m5b_c00026{transform:matrix(0.168876,0.005917,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168876,0.005917,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168876,0.005917,-0.008753,0.249847,0,0);}
.m76_c00026{transform:matrix(0.169031,0.005922,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169031,0.005922,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169031,0.005922,-0.008753,0.249847,0,0);}
.m63_c00026{transform:matrix(0.169566,0.005941,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169566,0.005941,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169566,0.005941,-0.008753,0.249847,0,0);}
.m9a_c00026{transform:matrix(0.170206,0.005963,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170206,0.005963,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170206,0.005963,-0.008753,0.249847,0,0);}
.mbd_c00026{transform:matrix(0.170642,0.005466,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170642,0.005466,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170642,0.005466,-0.008004,0.249872,0,0);}
.m72_c00026{transform:matrix(0.171030,0.005992,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171030,0.005992,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171030,0.005992,-0.008753,0.249847,0,0);}
.ma9_c00026{transform:matrix(0.171660,0.006014,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171660,0.006014,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171660,0.006014,-0.008753,0.249847,0,0);}
.m2d_c00026{transform:matrix(0.172149,0.006031,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172149,0.006031,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172149,0.006031,-0.008753,0.249847,0,0);}
.m54_c00026{transform:matrix(0.172284,0.006036,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172284,0.006036,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172284,0.006036,-0.008753,0.249847,0,0);}
.m6c_c00026{transform:matrix(0.172344,0.006038,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172344,0.006038,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172344,0.006038,-0.008753,0.249847,0,0);}
.m4b_c00026{transform:matrix(0.172414,0.006041,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172414,0.006041,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172414,0.006041,-0.008753,0.249847,0,0);}
.mab_c00026{transform:matrix(0.173144,0.006066,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173144,0.006066,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173144,0.006066,-0.008753,0.249847,0,0);}
.m6d_c00026{transform:matrix(0.173588,0.006082,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173588,0.006082,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173588,0.006082,-0.008753,0.249847,0,0);}
.m69_c00026{transform:matrix(0.174853,0.006126,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174853,0.006126,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174853,0.006126,-0.008753,0.249847,0,0);}
.m1b_c00026{transform:matrix(0.175213,0.006139,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175213,0.006139,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175213,0.006139,-0.008753,0.249847,0,0);}
.mc_c00026{transform:matrix(0.175321,0.005260,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175321,0.005260,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175321,0.005260,-0.007497,0.249888,0,0);}
.m68_c00026{transform:matrix(0.175487,0.006148,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175487,0.006148,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175487,0.006148,-0.008753,0.249847,0,0);}
.m67_c00026{transform:matrix(0.176047,0.006168,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176047,0.006168,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176047,0.006168,-0.008753,0.249847,0,0);}
.ma6_c00026{transform:matrix(0.176102,0.006170,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176102,0.006170,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176102,0.006170,-0.008753,0.249847,0,0);}
.m87_c00026{transform:matrix(0.176342,0.006178,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176342,0.006178,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176342,0.006178,-0.008753,0.249847,0,0);}
.m24_c00026{transform:matrix(0.176707,0.006191,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176707,0.006191,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176707,0.006191,-0.008753,0.249847,0,0);}
.m6e_c00026{transform:matrix(0.176991,0.006201,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176991,0.006201,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176991,0.006201,-0.008753,0.249847,0,0);}
.mb8_c00026{transform:matrix(0.177533,0.006575,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177533,0.006575,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177533,0.006575,-0.009253,0.249829,0,0);}
.m9b_c00026{transform:matrix(0.177636,0.006223,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177636,0.006223,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177636,0.006223,-0.008753,0.249847,0,0);}
.m86_c00026{transform:matrix(0.179075,0.006274,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179075,0.006274,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179075,0.006274,-0.008753,0.249847,0,0);}
.m3c_c00026{transform:matrix(0.179100,0.006275,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179100,0.006275,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179100,0.006275,-0.008753,0.249847,0,0);}
.ma7_c00026{transform:matrix(0.179760,0.006298,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179760,0.006298,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179760,0.006298,-0.008753,0.249847,0,0);}
.m7c_c00026{transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);}
.mb_c00026{transform:matrix(0.180684,0.005421,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180684,0.005421,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180684,0.005421,-0.007497,0.249888,0,0);}
.m18_c00026{transform:matrix(0.181059,0.005432,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181059,0.005432,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181059,0.005432,-0.007497,0.249888,0,0);}
.m2f_c00026{transform:matrix(0.181239,0.006350,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181239,0.006350,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181239,0.006350,-0.008753,0.249847,0,0);}
.m95_c00026{transform:matrix(0.181838,0.006371,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181838,0.006371,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181838,0.006371,-0.008753,0.249847,0,0);}
.mf_c00026{transform:matrix(0.182123,0.005464,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182123,0.005464,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182123,0.005464,-0.007497,0.249888,0,0);}
.m4d_c00026{transform:matrix(0.182143,0.006381,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182143,0.006381,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182143,0.006381,-0.008753,0.249847,0,0);}
.m94_c00026{transform:matrix(0.182198,0.006383,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182198,0.006383,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182198,0.006383,-0.008753,0.249847,0,0);}
.m8e_c00026{transform:matrix(0.182273,0.006386,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182273,0.006386,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182273,0.006386,-0.008753,0.249847,0,0);}
.m59_c00026{transform:matrix(0.182278,0.006386,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182278,0.006386,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182278,0.006386,-0.008753,0.249847,0,0);}
.m1_c00026{transform:matrix(0.182303,0.005469,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182303,0.005469,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182303,0.005469,-0.007497,0.249888,0,0);}
.m84_c00026{transform:matrix(0.182383,0.006390,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182383,0.006390,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182383,0.006390,-0.008753,0.249847,0,0);}
.m88_c00026{transform:matrix(0.182398,0.006390,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182398,0.006390,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182398,0.006390,-0.008753,0.249847,0,0);}
.m19_c00026{transform:matrix(0.183063,0.005492,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183063,0.005492,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183063,0.005492,-0.007497,0.249888,0,0);}
.mc2_c00026{transform:matrix(0.183411,0.005875,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183411,0.005875,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183411,0.005875,-0.008004,0.249872,0,0);}
.m3f_c00026{transform:matrix(0.184497,0.006464,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184497,0.006464,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184497,0.006464,-0.008753,0.249847,0,0);}
.m51_c00026{transform:matrix(0.185316,0.006493,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185316,0.006493,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185316,0.006493,-0.008753,0.249847,0,0);}
.m92_c00026{transform:matrix(0.185486,0.006499,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185486,0.006499,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185486,0.006499,-0.008753,0.249847,0,0);}
.m2c_c00026{transform:matrix(0.185931,0.006514,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185931,0.006514,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185931,0.006514,-0.008753,0.249847,0,0);}
.m2_c00026{transform:matrix(0.186456,0.005594,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186456,0.005594,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186456,0.005594,-0.007497,0.249888,0,0);}
.m30_c00026{transform:matrix(0.186680,0.006540,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186680,0.006540,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186680,0.006540,-0.008753,0.249847,0,0);}
.m32_c00026{transform:matrix(0.186725,0.006542,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186725,0.006542,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186725,0.006542,-0.008753,0.249847,0,0);}
.m8b_c00026{transform:matrix(0.187350,0.006564,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187350,0.006564,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187350,0.006564,-0.008753,0.249847,0,0);}
.mb6_c00026{transform:matrix(0.187961,0.006962,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187961,0.006962,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187961,0.006962,-0.009253,0.249829,0,0);}
.m26_c00026{transform:matrix(0.188629,0.006609,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188629,0.006609,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188629,0.006609,-0.008753,0.249847,0,0);}
.m7b_c00026{transform:matrix(0.188729,0.006612,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188729,0.006612,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188729,0.006612,-0.008753,0.249847,0,0);}
.mb4_c00026{transform:matrix(0.188945,0.006998,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188945,0.006998,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188945,0.006998,-0.009253,0.249829,0,0);}
.m6b_c00026{transform:matrix(0.189034,0.006623,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189034,0.006623,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189034,0.006623,-0.008753,0.249847,0,0);}
.md0_c00026{transform:matrix(0.189614,0.005878,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189614,0.005878,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189614,0.005878,-0.007746,0.249880,0,0);}
.m65_c00026{transform:matrix(0.190013,0.006657,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190013,0.006657,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190013,0.006657,-0.008753,0.249847,0,0);}
.m77_c00026{transform:matrix(0.190083,0.006660,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190083,0.006660,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190083,0.006660,-0.008753,0.249847,0,0);}
.m2b_c00026{transform:matrix(0.190103,0.006660,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190103,0.006660,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190103,0.006660,-0.008753,0.249847,0,0);}
.m66_c00026{transform:matrix(0.190243,0.006665,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190243,0.006665,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190243,0.006665,-0.008753,0.249847,0,0);}
.mc9_c00026{transform:matrix(0.190331,0.005139,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190331,0.005139,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190331,0.005139,-0.006748,0.249909,0,0);}
.ma5_c00026{transform:matrix(0.190678,0.006680,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190678,0.006680,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190678,0.006680,-0.008753,0.249847,0,0);}
.m3d_c00026{transform:matrix(0.190943,0.006690,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190943,0.006690,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190943,0.006690,-0.008753,0.249847,0,0);}
.m55_c00026{transform:matrix(0.191143,0.006697,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191143,0.006697,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191143,0.006697,-0.008753,0.249847,0,0);}
.m5c_c00026{transform:matrix(0.191148,0.006697,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191148,0.006697,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191148,0.006697,-0.008753,0.249847,0,0);}
.mce_c00026{transform:matrix(0.191380,0.005167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191380,0.005167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191380,0.005167,-0.006748,0.249909,0,0);}
.m75_c00026{transform:matrix(0.191647,0.006714,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191647,0.006714,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191647,0.006714,-0.008753,0.249847,0,0);}
.maa_c00026{transform:matrix(0.192027,0.006728,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192027,0.006728,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192027,0.006728,-0.008753,0.249847,0,0);}
.m52_c00026{transform:matrix(0.192417,0.006741,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192417,0.006741,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192417,0.006741,-0.008753,0.249847,0,0);}
.m15_c00026{transform:matrix(0.192433,0.005773,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192433,0.005773,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192433,0.005773,-0.007497,0.249888,0,0);}
.m46_c00026{transform:matrix(0.192507,0.006744,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192507,0.006744,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192507,0.006744,-0.008753,0.249847,0,0);}
.mc8_c00026{transform:matrix(0.192840,0.005207,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192840,0.005207,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192840,0.005207,-0.006748,0.249909,0,0);}
.m98_c00026{transform:matrix(0.193027,0.006763,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193027,0.006763,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193027,0.006763,-0.008753,0.249847,0,0);}
.m9f_c00026{transform:matrix(0.193052,0.006764,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193052,0.006764,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193052,0.006764,-0.008753,0.249847,0,0);}
.ma0_c00026{transform:matrix(0.193776,0.006789,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193776,0.006789,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193776,0.006789,-0.008753,0.249847,0,0);}
.m53_c00026{transform:matrix(0.193806,0.006790,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193806,0.006790,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193806,0.006790,-0.008753,0.249847,0,0);}
.mbb_c00026{transform:matrix(0.194182,0.007192,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194182,0.007192,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194182,0.007192,-0.009253,0.249829,0,0);}
.m78_c00026{transform:matrix(0.194850,0.006827,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194850,0.006827,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194850,0.006827,-0.008753,0.249847,0,0);}
.m10_c00026{transform:matrix(0.195582,0.005867,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195582,0.005867,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195582,0.005867,-0.007497,0.249888,0,0);}
.m6_c00026{transform:matrix(0.195612,0.005868,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195612,0.005868,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195612,0.005868,-0.007497,0.249888,0,0);}
.m35_c00026{transform:matrix(0.195635,0.006854,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195635,0.006854,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195635,0.006854,-0.008753,0.249847,0,0);}
.m23_c00026{transform:matrix(0.195655,0.006855,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195655,0.006855,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195655,0.006855,-0.008753,0.249847,0,0);}
.m34_c00026{transform:matrix(0.195745,0.006858,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195745,0.006858,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195745,0.006858,-0.008753,0.249847,0,0);}
.m70_c00026{transform:matrix(0.195750,0.006858,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195750,0.006858,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195750,0.006858,-0.008753,0.249847,0,0);}
.m5e_c00026{transform:matrix(0.196649,0.006890,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196649,0.006890,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196649,0.006890,-0.008753,0.249847,0,0);}
.m71_c00026{transform:matrix(0.196859,0.006897,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196859,0.006897,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196859,0.006897,-0.008753,0.249847,0,0);}
.m91_c00026{transform:matrix(0.197079,0.006905,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197079,0.006905,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197079,0.006905,-0.008753,0.249847,0,0);}
.mb5_c00026{transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);}
.m22_c00026{transform:matrix(0.197224,0.006910,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197224,0.006910,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197224,0.006910,-0.008753,0.249847,0,0);}
.m28_c00026{transform:matrix(0.197329,0.006913,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197329,0.006913,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197329,0.006913,-0.008753,0.249847,0,0);}
.m45_c00026{transform:matrix(0.197684,0.006926,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197684,0.006926,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197684,0.006926,-0.008753,0.249847,0,0);}
.m50_c00026{transform:matrix(0.197964,0.006936,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197964,0.006936,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197964,0.006936,-0.008753,0.249847,0,0);}
.m62_c00026{transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);}
.mad_c00026{transform:matrix(0.198833,0.006966,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198833,0.006966,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198833,0.006966,-0.008753,0.249847,0,0);}
.m3e_c00026{transform:matrix(0.198918,0.006969,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198918,0.006969,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198918,0.006969,-0.008753,0.249847,0,0);}
.m3b_c00026{transform:matrix(0.199653,0.006995,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199653,0.006995,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199653,0.006995,-0.008753,0.249847,0,0);}
.ma_c00026{transform:matrix(0.200055,0.006002,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200055,0.006002,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200055,0.006002,-0.007497,0.249888,0,0);}
.m8a_c00026{transform:matrix(0.201092,0.007045,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201092,0.007045,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201092,0.007045,-0.008753,0.249847,0,0);}
.m6f_c00026{transform:matrix(0.201252,0.007051,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201252,0.007051,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201252,0.007051,-0.008753,0.249847,0,0);}
.ma3_c00026{transform:matrix(0.201401,0.007056,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201401,0.007056,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201401,0.007056,-0.008753,0.249847,0,0);}
.m44_c00026{transform:matrix(0.201771,0.007069,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201771,0.007069,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201771,0.007069,-0.008753,0.249847,0,0);}
.m27_c00026{transform:matrix(0.203070,0.007115,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203070,0.007115,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203070,0.007115,-0.008753,0.249847,0,0);}
.m4c_c00026{transform:matrix(0.203175,0.007118,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203175,0.007118,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203175,0.007118,-0.008753,0.249847,0,0);}
.ma1_c00026{transform:matrix(0.203405,0.007126,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203405,0.007126,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203405,0.007126,-0.008753,0.249847,0,0);}
.m47_c00026{transform:matrix(0.203590,0.007133,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203590,0.007133,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203590,0.007133,-0.008753,0.249847,0,0);}
.m99_c00026{transform:matrix(0.203605,0.007133,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203605,0.007133,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203605,0.007133,-0.008753,0.249847,0,0);}
.m5d_c00026{transform:matrix(0.204355,0.007160,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204355,0.007160,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204355,0.007160,-0.008753,0.249847,0,0);}
.m4a_c00026{transform:matrix(0.204594,0.007168,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204594,0.007168,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204594,0.007168,-0.008753,0.249847,0,0);}
.mc1_c00026{transform:matrix(0.204790,0.006560,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204790,0.006560,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204790,0.006560,-0.008004,0.249872,0,0);}
.m3a_c00026{transform:matrix(0.205294,0.007192,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205294,0.007192,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205294,0.007192,-0.008753,0.249847,0,0);}
.md8_c00026{transform:matrix(0.205537,0.008435,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205537,0.008435,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205537,0.008435,-0.010252,0.249790,0,0);}
.mae_c00026{transform:matrix(0.205919,0.007214,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205919,0.007214,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205919,0.007214,-0.008753,0.249847,0,0);}
.mdd_c00026{transform:matrix(0.205962,0.008453,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205962,0.008453,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205962,0.008453,-0.010252,0.249790,0,0);}
.m89_c00026{transform:matrix(0.206198,0.007224,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206198,0.007224,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206198,0.007224,-0.008753,0.249847,0,0);}
.m85_c00026{transform:matrix(0.206968,0.007251,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206968,0.007251,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206968,0.007251,-0.008753,0.249847,0,0);}
.m7_c00026{transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);}
.m1d_c00026{transform:matrix(0.207163,0.007258,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207163,0.007258,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207163,0.007258,-0.008753,0.249847,0,0);}
.m74_c00026{transform:matrix(0.207248,0.007261,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207248,0.007261,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207248,0.007261,-0.008753,0.249847,0,0);}
.ma4_c00026{transform:matrix(0.207458,0.007268,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207458,0.007268,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207458,0.007268,-0.008753,0.249847,0,0);}
.m41_c00026{transform:matrix(0.207568,0.007272,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207568,0.007272,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207568,0.007272,-0.008753,0.249847,0,0);}
.m4e_c00026{transform:matrix(0.208012,0.007288,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208012,0.007288,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208012,0.007288,-0.008753,0.249847,0,0);}
.ma2_c00026{transform:matrix(0.209352,0.007335,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209352,0.007335,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209352,0.007335,-0.008753,0.249847,0,0);}
.m1f_c00026{transform:matrix(0.210021,0.007358,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210021,0.007358,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210021,0.007358,-0.008753,0.249847,0,0);}
.m8f_c00026{transform:matrix(0.210581,0.007378,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210581,0.007378,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210581,0.007378,-0.008753,0.249847,0,0);}
.mdc_c00026{transform:matrix(0.210763,0.008650,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210763,0.008650,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210763,0.008650,-0.010252,0.249790,0,0);}
.md1_c00026{transform:matrix(0.211513,0.006557,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211513,0.006557,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211513,0.006557,-0.007746,0.249880,0,0);}
.m1a_c00026{transform:matrix(0.211605,0.006348,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211605,0.006348,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211605,0.006348,-0.007497,0.249888,0,0);}
.m43_c00026{transform:matrix(0.211645,0.007415,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211645,0.007415,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211645,0.007415,-0.008753,0.249847,0,0);}
.m8d_c00026{transform:matrix(0.212819,0.007456,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212819,0.007456,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212819,0.007456,-0.008753,0.249847,0,0);}
.m82_c00026{transform:matrix(0.213074,0.007465,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213074,0.007465,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213074,0.007465,-0.008753,0.249847,0,0);}
.m7a_c00026{transform:matrix(0.215263,0.007542,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215263,0.007542,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215263,0.007542,-0.008753,0.249847,0,0);}
.m1c_c00026{transform:matrix(0.215328,0.007544,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215328,0.007544,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215328,0.007544,-0.008753,0.249847,0,0);}
.mac_c00026{transform:matrix(0.215458,0.007549,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215458,0.007549,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215458,0.007549,-0.008753,0.249847,0,0);}
.m25_c00026{transform:matrix(0.215498,0.007550,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215498,0.007550,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215498,0.007550,-0.008753,0.249847,0,0);}
.maf_c00026{transform:matrix(0.215798,0.007560,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215798,0.007560,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215798,0.007560,-0.008753,0.249847,0,0);}
.mb1_c00026{transform:matrix(0.215928,0.007565,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215928,0.007565,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215928,0.007565,-0.008753,0.249847,0,0);}
.m83_c00026{transform:matrix(0.216172,0.007574,-0.008753,0.249847,0,0);-ms-transform:matrix(0.216172,0.007574,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.216172,0.007574,-0.008753,0.249847,0,0);}
.m4f_c00026{transform:matrix(0.217162,0.007608,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217162,0.007608,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217162,0.007608,-0.008753,0.249847,0,0);}
.m7d_c00026{transform:matrix(0.217522,0.007621,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217522,0.007621,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217522,0.007621,-0.008753,0.249847,0,0);}
.mcf_c00026{transform:matrix(0.218146,0.005890,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218146,0.005890,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218146,0.005890,-0.006748,0.249909,0,0);}
.m5_c00026{transform:matrix(0.218162,0.006545,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218162,0.006545,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218162,0.006545,-0.007497,0.249888,0,0);}
.mc5_c00026{transform:matrix(0.218390,0.008744,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218390,0.008744,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218390,0.008744,-0.010002,0.249800,0,0);}
.m16_c00026{transform:matrix(0.218437,0.006553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218437,0.006553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218437,0.006553,-0.007497,0.249888,0,0);}
.m31_c00026{transform:matrix(0.219071,0.007675,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219071,0.007675,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219071,0.007675,-0.008753,0.249847,0,0);}
.m20_c00026{transform:matrix(0.219420,0.007687,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219420,0.007687,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219420,0.007687,-0.008753,0.249847,0,0);}
.m48_c00026{transform:matrix(0.221574,0.007763,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221574,0.007763,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221574,0.007763,-0.008753,0.249847,0,0);}
.mcc_c00026{transform:matrix(0.223828,0.006043,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223828,0.006043,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223828,0.006043,-0.006748,0.249909,0,0);}
.m1e_c00026{transform:matrix(0.224777,0.007875,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224777,0.007875,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224777,0.007875,-0.008753,0.249847,0,0);}
.md2_c00026{transform:matrix(0.226606,0.007025,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226606,0.007025,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226606,0.007025,-0.007746,0.249880,0,0);}
.mb3_c00026{transform:matrix(0.227056,0.007955,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227056,0.007955,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227056,0.007955,-0.008753,0.249847,0,0);}
.m5a_c00026{transform:matrix(0.231333,0.008105,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231333,0.008105,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231333,0.008105,-0.008753,0.249847,0,0);}
.m3_c00026{transform:matrix(0.232251,0.006968,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232251,0.006968,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232251,0.006968,-0.007497,0.249888,0,0);}
.m17_c00026{transform:matrix(0.233090,0.006993,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233090,0.006993,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233090,0.006993,-0.007497,0.249888,0,0);}
.mbe_c00026{transform:matrix(0.233485,0.007479,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233485,0.007479,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233485,0.007479,-0.008004,0.249872,0,0);}
.m61_c00026{transform:matrix(0.234881,0.008229,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234881,0.008229,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234881,0.008229,-0.008753,0.249847,0,0);}
.m80_c00026{transform:matrix(0.235940,0.008266,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235940,0.008266,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235940,0.008266,-0.008753,0.249847,0,0);}
.m9c_c00026{transform:matrix(0.236860,0.008298,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236860,0.008298,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236860,0.008298,-0.008753,0.249847,0,0);}
.m73_c00026{transform:matrix(0.239823,0.008402,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239823,0.008402,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239823,0.008402,-0.008753,0.249847,0,0);}
.m0_c00026{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.md6_c00026{transform:matrix(0.244777,0.007588,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244777,0.007588,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244777,0.007588,-0.007746,0.249880,0,0);}
.mc3_c00026{transform:matrix(0.248171,0.009937,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248171,0.009937,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248171,0.009937,-0.010002,0.249800,0,0);}
.mb2_c00026{transform:matrix(0.249172,0.008730,-0.008753,0.249847,0,0);-ms-transform:matrix(0.249172,0.008730,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.249172,0.008730,-0.008753,0.249847,0,0);}
.m39_c00026{transform:matrix(0.252125,0.008833,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252125,0.008833,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252125,0.008833,-0.008753,0.249847,0,0);}
.m13_c00026{transform:matrix(0.252187,0.007566,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252187,0.007566,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252187,0.007566,-0.007497,0.249888,0,0);}
.m21_c00026{transform:matrix(0.260585,0.009130,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260585,0.009130,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260585,0.009130,-0.008753,0.249847,0,0);}
.m9_c00026{transform:matrix(0.260613,0.007818,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260613,0.007818,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260613,0.007818,-0.007497,0.249888,0,0);}
.mc7_c00026{transform:matrix(0.262665,0.010517,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262665,0.010517,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262665,0.010517,-0.010002,0.249800,0,0);}
.m60_c00026{transform:matrix(0.264438,0.009265,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264438,0.009265,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264438,0.009265,-0.008753,0.249847,0,0);}
.m5f_c00026{transform:matrix(0.264937,0.009282,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264937,0.009282,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264937,0.009282,-0.008753,0.249847,0,0);}
.md4_c00026{transform:matrix(0.265353,0.008226,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265353,0.008226,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265353,0.008226,-0.007746,0.249880,0,0);}
.mbc_c00026{transform:matrix(0.265434,0.008502,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265434,0.008502,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265434,0.008502,-0.008004,0.249872,0,0);}
.m38_c00026{transform:matrix(0.266342,0.009331,-0.008753,0.249847,0,0);-ms-transform:matrix(0.266342,0.009331,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.266342,0.009331,-0.008753,0.249847,0,0);}
.m2a_c00026{transform:matrix(0.268290,0.009400,-0.008753,0.249847,0,0);-ms-transform:matrix(0.268290,0.009400,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.268290,0.009400,-0.008753,0.249847,0,0);}
.me_c00026{transform:matrix(0.268764,0.008063,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268764,0.008063,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268764,0.008063,-0.007497,0.249888,0,0);}
.mcd_c00026{transform:matrix(0.269522,0.007277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269522,0.007277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269522,0.007277,-0.006748,0.249909,0,0);}
.m2e_c00026{transform:matrix(0.270709,0.009484,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270709,0.009484,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270709,0.009484,-0.008753,0.249847,0,0);}
.m36_c00026{transform:matrix(0.272333,0.009541,-0.008753,0.249847,0,0);-ms-transform:matrix(0.272333,0.009541,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.272333,0.009541,-0.008753,0.249847,0,0);}
.m11_c00026{transform:matrix(0.275611,0.008268,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275611,0.008268,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275611,0.008268,-0.007497,0.249888,0,0);}
.md5_c00026{transform:matrix(0.277777,0.008611,-0.007746,0.249880,0,0);-ms-transform:matrix(0.277777,0.008611,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.277777,0.008611,-0.007746,0.249880,0,0);}
.mc6_c00026{transform:matrix(0.285841,0.011445,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285841,0.011445,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285841,0.011445,-0.010002,0.249800,0,0);}
.m12_c00026{transform:matrix(0.291034,0.008731,-0.007497,0.249888,0,0);-ms-transform:matrix(0.291034,0.008731,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.291034,0.008731,-0.007497,0.249888,0,0);}
.m7e_c00026{transform:matrix(0.299471,0.010492,-0.008753,0.249847,0,0);-ms-transform:matrix(0.299471,0.010492,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.299471,0.010492,-0.008753,0.249847,0,0);}
.mcb_c00026{transform:matrix(0.306563,0.008277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.306563,0.008277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.306563,0.008277,-0.006748,0.249909,0,0);}
.mb0_c00026{transform:matrix(0.306577,0.010741,-0.008753,0.249847,0,0);-ms-transform:matrix(0.306577,0.010741,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.306577,0.010741,-0.008753,0.249847,0,0);}
.md_c00026{transform:matrix(0.333005,0.009990,-0.007497,0.249888,0,0);-ms-transform:matrix(0.333005,0.009990,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.333005,0.009990,-0.007497,0.249888,0,0);}
.mc0_c00026{transform:matrix(0.340380,0.010903,-0.008004,0.249872,0,0);-ms-transform:matrix(0.340380,0.010903,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.340380,0.010903,-0.008004,0.249872,0,0);}
.m7f_c00026{transform:matrix(0.342830,0.012011,-0.008753,0.249847,0,0);-ms-transform:matrix(0.342830,0.012011,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.342830,0.012011,-0.008753,0.249847,0,0);}
.mdb_c00026{transform:matrix(0.353412,0.014504,-0.010252,0.249790,0,0);-ms-transform:matrix(0.353412,0.014504,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.353412,0.014504,-0.010252,0.249790,0,0);}
.md3_c00026{transform:matrix(0.366054,0.011348,-0.007746,0.249880,0,0);-ms-transform:matrix(0.366054,0.011348,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.366054,0.011348,-0.007746,0.249880,0,0);}
.md9_c00026{transform:matrix(0.395437,0.016229,-0.010252,0.249790,0,0);-ms-transform:matrix(0.395437,0.016229,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.395437,0.016229,-0.010252,0.249790,0,0);}
.mde_c00026{transform:matrix(0.407957,0.016743,-0.010252,0.249790,0,0);-ms-transform:matrix(0.407957,0.016743,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.407957,0.016743,-0.010252,0.249790,0,0);}
.m29_c00026{transform:matrix(0.449639,0.015753,-0.008753,0.249847,0,0);-ms-transform:matrix(0.449639,0.015753,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.449639,0.015753,-0.008753,0.249847,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:0.000000px;}
.fc0_c00026{color:transparent;}
.fs12_c00026{font-size:55.676733px;}
.fsd_c00026{font-size:59.826834px;}
.fs4_c00026{font-size:61.977871px;}
.fs9_c00026{font-size:62.975614px;}
.fs10_c00026{font-size:62.987430px;}
.fs0_c00026{font-size:63.000000px;}
.fs7_c00026{font-size:64.025208px;}
.fs13_c00026{font-size:64.039815px;}
.fs5_c00026{font-size:65.074801px;}
.fs3_c00026{font-size:65.129288px;}
.fs8_c00026{font-size:66.124395px;}
.fs11_c00026{font-size:66.174107px;}
.fsb_c00026{font-size:67.173989px;}
.fsf_c00026{font-size:68.216720px;}
.fs6_c00026{font-size:69.273176px;}
.fs2_c00026{font-size:69.331178px;}
.fs1_c00026{font-size:70.381650px;}
.fsc_c00026{font-size:71.372363px;}
.fse_c00026{font-size:71.377505px;}
.fsa_c00026{font-size:72.421956px;}
.fs14_c00026{font-size:78.737478px;}
.y0_c00026{bottom:0.000000px;}
.ye0_c00026{bottom:13.358454px;}
.ydf_c00026{bottom:13.360148px;}
.yde_c00026{bottom:39.853213px;}
.ydd_c00026{bottom:41.226570px;}
.ydc_c00026{bottom:43.336696px;}
.ydb_c00026{bottom:43.718304px;}
.yda_c00026{bottom:48.101163px;}
.yd9_c00026{bottom:50.915095px;}
.yd8_c00026{bottom:51.301500px;}
.yd7_c00026{bottom:56.831670px;}
.yd6_c00026{bottom:57.470394px;}
.yd5_c00026{bottom:59.401586px;}
.yd4_c00026{bottom:60.405521px;}
.yd3_c00026{bottom:61.084979px;}
.yd2_c00026{bottom:63.529670px;}
.yd1_c00026{bottom:64.812000px;}
.yd0_c00026{bottom:74.970379px;}
.ycf_c00026{bottom:76.347096px;}
.yce_c00026{bottom:76.948197px;}
.ycd_c00026{bottom:78.259911px;}
.ycc_c00026{bottom:79.923408px;}
.ycb_c00026{bottom:80.600932px;}
.yca_c00026{bottom:80.976327px;}
.yc9_c00026{bottom:82.356000px;}
.yc8_c00026{bottom:86.277180px;}
.yc7_c00026{bottom:87.147420px;}
.yc6_c00026{bottom:89.482260px;}
.yc5_c00026{bottom:92.250060px;}
.yc4_c00026{bottom:97.492500px;}
.yc3_c00026{bottom:108.248256px;}
.yc2_c00026{bottom:108.951072px;}
.yc1_c00026{bottom:109.820496px;}
.yc0_c00026{bottom:110.204352px;}
.ybf_c00026{bottom:113.219568px;}
.ybe_c00026{bottom:115.302384px;}
.ybd_c00026{bottom:116.652000px;}
.ybc_c00026{bottom:123.390660px;}
.ybb_c00026{bottom:125.887938px;}
.yba_c00026{bottom:126.487282px;}
.yb9_c00026{bottom:130.608102px;}
.yb8_c00026{bottom:131.067309px;}
.yb7_c00026{bottom:131.536173px;}
.yb6_c00026{bottom:133.167873px;}
.yb5_c00026{bottom:134.206500px;}
.yb4_c00026{bottom:142.168699px;}
.yb3_c00026{bottom:143.985529px;}
.yb2_c00026{bottom:144.654906px;}
.yb1_c00026{bottom:145.163514px;}
.yb0_c00026{bottom:148.663867px;}
.yaf_c00026{bottom:150.633433px;}
.yae_c00026{bottom:151.614501px;}
.yad_c00026{bottom:156.586456px;}
.yac_c00026{bottom:159.331263px;}
.yab_c00026{bottom:161.428861px;}
.yaa_c00026{bottom:164.004645px;}
.ya9_c00026{bottom:165.113023px;}
.ya8_c00026{bottom:166.250758px;}
.ya7_c00026{bottom:168.888667px;}
.ya6_c00026{bottom:173.277945px;}
.ya5_c00026{bottom:173.686560px;}
.ya4_c00026{bottom:175.925736px;}
.ya3_c00026{bottom:177.305286px;}
.ya2_c00026{bottom:180.134845px;}
.ya1_c00026{bottom:183.735955px;}
.ya0_c00026{bottom:191.945101px;}
.y9f_c00026{bottom:192.827572px;}
.y9e_c00026{bottom:193.611096px;}
.y9d_c00026{bottom:194.205229px;}
.y9c_c00026{bottom:196.696465px;}
.y9b_c00026{bottom:197.621547px;}
.y9a_c00026{bottom:201.274614px;}
.y99_c00026{bottom:208.210251px;}
.y98_c00026{bottom:209.020711px;}
.y97_c00026{bottom:209.701980px;}
.y96_c00026{bottom:212.377093px;}
.y95_c00026{bottom:213.856666px;}
.y94_c00026{bottom:217.018695px;}
.y93_c00026{bottom:218.277898px;}
.y92_c00026{bottom:224.430118px;}
.y91_c00026{bottom:225.375501px;}
.y90_c00026{bottom:225.897537px;}
.y8f_c00026{bottom:229.274568px;}
.y8e_c00026{bottom:231.904225px;}
.y8d_c00026{bottom:232.733932px;}
.y8c_c00026{bottom:234.389065px;}
.y8b_c00026{bottom:235.559313px;}
.y8a_c00026{bottom:242.402046px;}
.y89_c00026{bottom:245.317432px;}
.y88_c00026{bottom:246.197788px;}
.y87_c00026{bottom:249.305236px;}
.y86_c00026{bottom:250.868188px;}
.y85_c00026{bottom:252.556933px;}
.y84_c00026{bottom:257.874976px;}
.y83_c00026{bottom:259.465708px;}
.y82_c00026{bottom:259.970170px;}
.y81_c00026{bottom:261.077970px;}
.y80_c00026{bottom:261.509601px;}
.y7f_c00026{bottom:264.043227px;}
.y7e_c00026{bottom:264.619732px;}
.y7d_c00026{bottom:268.377363px;}
.y7c_c00026{bottom:269.558361px;}
.y7b_c00026{bottom:276.161751px;}
.y7a_c00026{bottom:276.755097px;}
.y79_c00026{bottom:280.414736px;}
.y78_c00026{bottom:283.171516px;}
.y77_c00026{bottom:284.405128px;}
.y76_c00026{bottom:285.205350px;}
.y75_c00026{bottom:287.106509px;}
.y74_c00026{bottom:292.133773px;}
.y73_c00026{bottom:294.482923px;}
.y72_c00026{bottom:295.332845px;}
.y71_c00026{bottom:297.161481px;}
.y70_c00026{bottom:297.719044px;}
.y6f_c00026{bottom:299.794350px;}
.y6e_c00026{bottom:301.482480px;}
.y6d_c00026{bottom:302.247481px;}
.y6c_c00026{bottom:303.463597px;}
.y6b_c00026{bottom:304.379085px;}
.y6a_c00026{bottom:310.147602px;}
.y69_c00026{bottom:311.328910px;}
.y68_c00026{bottom:314.726377px;}
.y67_c00026{bottom:317.347386px;}
.y66_c00026{bottom:320.761132px;}
.y65_c00026{bottom:321.383806px;}
.y64_c00026{bottom:327.299838px;}
.y63_c00026{bottom:329.748543px;}
.y62_c00026{bottom:330.439600px;}
.y61_c00026{bottom:331.133650px;}
.y60_c00026{bottom:333.529488px;}
.y5f_c00026{bottom:334.881678px;}
.y5e_c00026{bottom:336.761073px;}
.y5d_c00026{bottom:342.697452px;}
.y5c_c00026{bottom:343.510716px;}
.y5b_c00026{bottom:345.523045px;}
.y5a_c00026{bottom:347.930707px;}
.y59_c00026{bottom:348.873526px;}
.y58_c00026{bottom:351.180065px;}
.y57_c00026{bottom:352.146799px;}
.y56_c00026{bottom:360.795684px;}
.y55_c00026{bottom:361.607916px;}
.y54_c00026{bottom:364.495231px;}
.y53_c00026{bottom:367.554523px;}
.y52_c00026{bottom:368.348724px;}
.y51_c00026{bottom:369.152059px;}
.y50_c00026{bottom:377.369323px;}
.y4f_c00026{bottom:379.815688px;}
.y4e_c00026{bottom:383.034599px;}
.y4d_c00026{bottom:384.853590px;}
.y4c_c00026{bottom:386.157429px;}
.y4b_c00026{bottom:393.246176px;}
.y4a_c00026{bottom:394.099983px;}
.y49_c00026{bottom:395.363973px;}
.y48_c00026{bottom:397.726000px;}
.y47_c00026{bottom:400.053220px;}
.y46_c00026{bottom:402.275231px;}
.y45_c00026{bottom:402.888116px;}
.y44_c00026{bottom:410.033806px;}
.y43_c00026{bottom:411.910261px;}
.y42_c00026{bottom:414.280525px;}
.y41_c00026{bottom:414.995789px;}
.y40_c00026{bottom:417.513610px;}
.y3f_c00026{bottom:418.488996px;}
.y3e_c00026{bottom:419.894690px;}
.y3d_c00026{bottom:426.385885px;}
.y3c_c00026{bottom:428.887301px;}
.y3b_c00026{bottom:432.793405px;}
.y3a_c00026{bottom:433.282338px;}
.y39_c00026{bottom:434.959765px;}
.y38_c00026{bottom:436.359836px;}
.y37_c00026{bottom:444.089997px;}
.y36_c00026{bottom:444.637313px;}
.y35_c00026{bottom:446.408476px;}
.y34_c00026{bottom:447.005925px;}
.y33_c00026{bottom:448.962921px;}
.y32_c00026{bottom:450.463522px;}
.y31_c00026{bottom:451.097926px;}
.y30_c00026{bottom:452.547426px;}
.y2f_c00026{bottom:460.741477px;}
.y2e_c00026{bottom:461.463105px;}
.y2d_c00026{bottom:462.411013px;}
.y2c_c00026{bottom:464.246553px;}
.y2b_c00026{bottom:464.756848px;}
.y2a_c00026{bottom:466.850146px;}
.y29_c00026{bottom:478.461830px;}
.y28_c00026{bottom:478.991428px;}
.y27_c00026{bottom:481.162158px;}
.y26_c00026{bottom:483.127449px;}
.y25_c00026{bottom:484.793622px;}
.y24_c00026{bottom:485.188438px;}
.y23_c00026{bottom:486.561689px;}
.y22_c00026{bottom:493.973715px;}
.y21_c00026{bottom:496.108785px;}
.y20_c00026{bottom:497.838398px;}
.y1f_c00026{bottom:498.490395px;}
.y1e_c00026{bottom:500.013210px;}
.y1d_c00026{bottom:502.849470px;}
.y1c_c00026{bottom:503.835000px;}
.y1b_c00026{bottom:512.654070px;}
.y1a_c00026{bottom:513.049395px;}
.y19_c00026{bottom:514.047435px;}
.y18_c00026{bottom:515.837475px;}
.y17_c00026{bottom:516.317460px;}
.y16_c00026{bottom:517.275900px;}
.y15_c00026{bottom:517.572750px;}
.y14_c00026{bottom:527.766900px;}
.y13_c00026{bottom:529.062480px;}
.y12_c00026{bottom:532.914165px;}
.y11_c00026{bottom:533.643390px;}
.y10_c00026{bottom:535.827915px;}
.yf_c00026{bottom:536.467500px;}
.ye_c00026{bottom:537.572910px;}
.yd_c00026{bottom:545.360490px;}
.yc_c00026{bottom:547.218705px;}
.yb_c00026{bottom:548.374605px;}
.ya_c00026{bottom:552.219420px;}
.y9_c00026{bottom:553.772250px;}
.y8_c00026{bottom:562.217820px;}
.y7_c00026{bottom:562.636140px;}
.y6_c00026{bottom:564.300285px;}
.y5_c00026{bottom:564.643590px;}
.y4_c00026{bottom:566.265615px;}
.y3_c00026{bottom:568.245435px;}
.y2_c00026{bottom:569.980500px;}
.y1_c00026{bottom:580.462500px;}
.h14_c00026{height:55.676733px;}
.hf_c00026{height:59.826834px;}
.h6_c00026{height:61.977871px;}
.hb_c00026{height:62.975614px;}
.h12_c00026{height:62.987430px;}
.h2_c00026{height:63.000000px;}
.h9_c00026{height:64.025208px;}
.h15_c00026{height:64.039815px;}
.h7_c00026{height:65.074801px;}
.h5_c00026{height:65.129288px;}
.ha_c00026{height:66.124395px;}
.h13_c00026{height:66.174107px;}
.hd_c00026{height:67.173989px;}
.h11_c00026{height:68.216720px;}
.h8_c00026{height:69.273176px;}
.h4_c00026{height:69.331178px;}
.h3_c00026{height:70.381650px;}
.he_c00026{height:71.372363px;}
.h10_c00026{height:71.377505px;}
.hc_c00026{height:72.421956px;}
.h16_c00026{height:78.737478px;}
.h1_c00026{height:615.750000px;}
.h0_c00026{height:615.870000px;}
.w0_c00026{width:367.200000px;}
.w1_c00026{width:367.500000px;}
.x0_c00026{left:0.000000px;}
.x6b_c00026{left:11.221500px;}
.x71_c00026{left:18.597000px;}
.x67_c00026{left:20.901000px;}
.x6d_c00026{left:22.108500px;}
.x64_c00026{left:24.708962px;}
.x41_c00026{left:28.029716px;}
.x38_c00026{left:29.030736px;}
.x2_c00026{left:30.169500px;}
.x5d_c00026{left:35.768349px;}
.x4b_c00026{left:43.319825px;}
.x32_c00026{left:46.855328px;}
.x4f_c00026{left:49.061741px;}
.x3d_c00026{left:52.788822px;}
.x42_c00026{left:54.124256px;}
.x54_c00026{left:57.563694px;}
.xd_c00026{left:59.191110px;}
.x5b_c00026{left:60.277362px;}
.x39_c00026{left:65.218251px;}
.x12_c00026{left:66.506355px;}
.x2d_c00026{left:68.321604px;}
.x28_c00026{left:69.776357px;}
.x1b_c00026{left:72.122752px;}
.x9_c00026{left:73.662255px;}
.xe_c00026{left:76.006560px;}
.x13_c00026{left:78.853560px;}
.x47_c00026{left:81.708609px;}
.x1c_c00026{left:84.077127px;}
.x3_c00026{left:88.005000px;}
.x23_c00026{left:93.051173px;}
.x2e_c00026{left:95.391062px;}
.x72_c00026{left:96.575943px;}
.x5a_c00026{left:99.698738px;}
.x68_c00026{left:105.659157px;}
.x58_c00026{left:106.720271px;}
.x33_c00026{left:110.277842px;}
.x3a_c00026{left:115.681451px;}
.x29_c00026{left:117.654930px;}
.x14_c00026{left:118.808760px;}
.x1f_c00026{left:121.069664px;}
.x4c_c00026{left:124.527618px;}
.x2a_c00026{left:131.610461px;}
.xf_c00026{left:133.510290px;}
.x65_c00026{left:135.634977px;}
.x15_c00026{left:138.811860px;}
.x43_c00026{left:141.859784px;}
.x20_c00026{left:143.214798px;}
.x6f_c00026{left:147.643500px;}
.x55_c00026{left:151.413302px;}
.x10_c00026{left:152.713200px;}
.x4_c00026{left:153.999000px;}
.x5e_c00026{left:156.121211px;}
.x1_c00026{left:160.920000px;}
.x2f_c00026{left:165.244169px;}
.x3e_c00026{left:169.416224px;}
.x34_c00026{left:176.703350px;}
.xa_c00026{left:180.453540px;}
.x17_c00026{left:183.166797px;}
.x30_c00026{left:185.103107px;}
.x4d_c00026{left:186.876914px;}
.x48_c00026{left:188.688023px;}
.x50_c00026{left:192.156360px;}
.x1d_c00026{left:193.981785px;}
.x24_c00026{left:197.736240px;}
.x18_c00026{left:201.776668px;}
.x59_c00026{left:203.885066px;}
.x3b_c00026{left:204.988900px;}
.x44_c00026{left:206.855651px;}
.x5_c00026{left:208.066500px;}
.xb_c00026{left:212.577780px;}
.x25_c00026{left:215.816903px;}
.x6_c00026{left:219.510000px;}
.x5f_c00026{left:221.618264px;}
.x21_c00026{left:222.928034px;}
.x6c_c00026{left:224.492516px;}
.x49_c00026{left:228.222948px;}
.x69_c00026{left:229.319873px;}
.x51_c00026{left:233.687702px;}
.x60_c00026{left:237.248988px;}
.x62_c00026{left:238.429788px;}
.x56_c00026{left:239.872251px;}
.x66_c00026{left:241.747782px;}
.x2b_c00026{left:243.101858px;}
.x35_c00026{left:244.122363px;}
.x6a_c00026{left:245.502174px;}
.x19_c00026{left:251.144751px;}
.x52_c00026{left:252.979295px;}
.x11_c00026{left:254.078400px;}
.x3f_c00026{left:256.838862px;}
.x61_c00026{left:257.857205px;}
.x1e_c00026{left:259.709116px;}
.x45_c00026{left:261.209958px;}
.xc_c00026{left:264.209010px;}
.x4e_c00026{left:267.705692px;}
.x26_c00026{left:269.411486px;}
.x16_c00026{left:271.449210px;}
.x3c_c00026{left:272.888068px;}
.x7_c00026{left:274.981500px;}
.x36_c00026{left:280.200249px;}
.x40_c00026{left:281.435475px;}
.x46_c00026{left:283.180941px;}
.x70_c00026{left:284.847000px;}
.x27_c00026{left:285.975561px;}
.x8_c00026{left:288.925500px;}
.x5c_c00026{left:291.825198px;}
.x22_c00026{left:295.376441px;}
.x4a_c00026{left:298.115985px;}
.x6e_c00026{left:301.425000px;}
.x31_c00026{left:302.933507px;}
.x37_c00026{left:304.570355px;}
.x53_c00026{left:306.327077px;}
.x63_c00026{left:309.894207px;}
.x1a_c00026{left:312.085749px;}
.x2c_c00026{left:314.499389px;}
.x57_c00026{left:319.903661px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.fs12_c00026{font-size:49.490430pt;}
.fsd_c00026{font-size:53.179408pt;}
.fs4_c00026{font-size:55.091441pt;}
.fs9_c00026{font-size:55.978324pt;}
.fs10_c00026{font-size:55.988827pt;}
.fs0_c00026{font-size:56.000000pt;}
.fs7_c00026{font-size:56.911296pt;}
.fs13_c00026{font-size:56.924280pt;}
.fs5_c00026{font-size:57.844268pt;}
.fs3_c00026{font-size:57.892701pt;}
.fs8_c00026{font-size:58.777240pt;}
.fs11_c00026{font-size:58.821429pt;}
.fsb_c00026{font-size:59.710212pt;}
.fsf_c00026{font-size:60.637084pt;}
.fs6_c00026{font-size:61.576156pt;}
.fs2_c00026{font-size:61.627714pt;}
.fs1_c00026{font-size:62.561467pt;}
.fsc_c00026{font-size:63.442100pt;}
.fse_c00026{font-size:63.446672pt;}
.fsa_c00026{font-size:64.375072pt;}
.fs14_c00026{font-size:69.988869pt;}
.y0_c00026{bottom:0.000000pt;}
.ye0_c00026{bottom:11.874181pt;}
.ydf_c00026{bottom:11.875687pt;}
.yde_c00026{bottom:35.425079pt;}
.ydd_c00026{bottom:36.645840pt;}
.ydc_c00026{bottom:38.521508pt;}
.ydb_c00026{bottom:38.860715pt;}
.yda_c00026{bottom:42.756589pt;}
.yd9_c00026{bottom:45.257863pt;}
.yd8_c00026{bottom:45.601333pt;}
.yd7_c00026{bottom:50.517040pt;}
.yd6_c00026{bottom:51.084795pt;}
.yd5_c00026{bottom:52.801409pt;}
.yd4_c00026{bottom:53.693796pt;}
.yd3_c00026{bottom:54.297759pt;}
.yd2_c00026{bottom:56.470817pt;}
.yd1_c00026{bottom:57.610667pt;}
.yd0_c00026{bottom:66.640337pt;}
.ycf_c00026{bottom:67.864085pt;}
.yce_c00026{bottom:68.398397pt;}
.ycd_c00026{bottom:69.564365pt;}
.ycc_c00026{bottom:71.043029pt;}
.ycb_c00026{bottom:71.645273pt;}
.yca_c00026{bottom:71.978957pt;}
.yc9_c00026{bottom:73.205333pt;}
.yc8_c00026{bottom:76.690827pt;}
.yc7_c00026{bottom:77.464373pt;}
.yc6_c00026{bottom:79.539787pt;}
.yc5_c00026{bottom:82.000053pt;}
.yc4_c00026{bottom:86.660000pt;}
.yc3_c00026{bottom:96.220672pt;}
.yc2_c00026{bottom:96.845397pt;}
.yc1_c00026{bottom:97.618219pt;}
.yc0_c00026{bottom:97.959424pt;}
.ybf_c00026{bottom:100.639616pt;}
.ybe_c00026{bottom:102.491008pt;}
.ybd_c00026{bottom:103.690667pt;}
.ybc_c00026{bottom:109.680587pt;}
.ybb_c00026{bottom:111.900389pt;}
.yba_c00026{bottom:112.433140pt;}
.yb9_c00026{bottom:116.096091pt;}
.yb8_c00026{bottom:116.504275pt;}
.yb7_c00026{bottom:116.921043pt;}
.yb6_c00026{bottom:118.371443pt;}
.yb5_c00026{bottom:119.294667pt;}
.yb4_c00026{bottom:126.372177pt;}
.yb3_c00026{bottom:127.987137pt;}
.yb2_c00026{bottom:128.582139pt;}
.yb1_c00026{bottom:129.034235pt;}
.yb0_c00026{bottom:132.145660pt;}
.yaf_c00026{bottom:133.896385pt;}
.yae_c00026{bottom:134.768445pt;}
.yad_c00026{bottom:139.187961pt;}
.yac_c00026{bottom:141.627789pt;}
.yab_c00026{bottom:143.492321pt;}
.yaa_c00026{bottom:145.781907pt;}
.ya9_c00026{bottom:146.767132pt;}
.ya8_c00026{bottom:147.778452pt;}
.ya7_c00026{bottom:150.123260pt;}
.ya6_c00026{bottom:154.024840pt;}
.ya5_c00026{bottom:154.388053pt;}
.ya4_c00026{bottom:156.378432pt;}
.ya3_c00026{bottom:157.604699pt;}
.ya2_c00026{bottom:160.119863pt;}
.ya1_c00026{bottom:163.320849pt;}
.ya0_c00026{bottom:170.617868pt;}
.y9f_c00026{bottom:171.402287pt;}
.y9e_c00026{bottom:172.098752pt;}
.y9d_c00026{bottom:172.626871pt;}
.y9c_c00026{bottom:174.841303pt;}
.y9b_c00026{bottom:175.663597pt;}
.y9a_c00026{bottom:178.910768pt;}
.y99_c00026{bottom:185.075779pt;}
.y98_c00026{bottom:185.796188pt;}
.y97_c00026{bottom:186.401760pt;}
.y96_c00026{bottom:188.779639pt;}
.y95_c00026{bottom:190.094815pt;}
.y94_c00026{bottom:192.905507pt;}
.y93_c00026{bottom:194.024799pt;}
.y92_c00026{bottom:199.493439pt;}
.y91_c00026{bottom:200.333779pt;}
.y90_c00026{bottom:200.797811pt;}
.y8f_c00026{bottom:203.799616pt;}
.y8e_c00026{bottom:206.137089pt;}
.y8d_c00026{bottom:206.874607pt;}
.y8c_c00026{bottom:208.345836pt;}
.y8b_c00026{bottom:209.386056pt;}
.y8a_c00026{bottom:215.468485pt;}
.y89_c00026{bottom:218.059940pt;}
.y88_c00026{bottom:218.842479pt;}
.y87_c00026{bottom:221.604655pt;}
.y86_c00026{bottom:222.993945pt;}
.y85_c00026{bottom:224.495052pt;}
.y84_c00026{bottom:229.222201pt;}
.y83_c00026{bottom:230.636185pt;}
.y82_c00026{bottom:231.084596pt;}
.y81_c00026{bottom:232.069307pt;}
.y80_c00026{bottom:232.452979pt;}
.y7f_c00026{bottom:234.705091pt;}
.y7e_c00026{bottom:235.217540pt;}
.y7d_c00026{bottom:238.557656pt;}
.y7c_c00026{bottom:239.607432pt;}
.y7b_c00026{bottom:245.477112pt;}
.y7a_c00026{bottom:246.004531pt;}
.y79_c00026{bottom:249.257543pt;}
.y78_c00026{bottom:251.708015pt;}
.y77_c00026{bottom:252.804559pt;}
.y76_c00026{bottom:253.515867pt;}
.y75_c00026{bottom:255.205785pt;}
.y74_c00026{bottom:259.674465pt;}
.y73_c00026{bottom:261.762599pt;}
.y72_c00026{bottom:262.518084pt;}
.y71_c00026{bottom:264.143539pt;}
.y70_c00026{bottom:264.639151pt;}
.y6f_c00026{bottom:266.483867pt;}
.y6e_c00026{bottom:267.984427pt;}
.y6d_c00026{bottom:268.664428pt;}
.y6c_c00026{bottom:269.745420pt;}
.y6b_c00026{bottom:270.559187pt;}
.y6a_c00026{bottom:275.686757pt;}
.y69_c00026{bottom:276.736809pt;}
.y68_c00026{bottom:279.756780pt;}
.y67_c00026{bottom:282.086565pt;}
.y66_c00026{bottom:285.121007pt;}
.y65_c00026{bottom:285.674495pt;}
.y64_c00026{bottom:290.933189pt;}
.y63_c00026{bottom:293.109816pt;}
.y62_c00026{bottom:293.724089pt;}
.y61_c00026{bottom:294.341023pt;}
.y60_c00026{bottom:296.470656pt;}
.y5f_c00026{bottom:297.672603pt;}
.y5e_c00026{bottom:299.343176pt;}
.y5d_c00026{bottom:304.619957pt;}
.y5c_c00026{bottom:305.342859pt;}
.y5b_c00026{bottom:307.131596pt;}
.y5a_c00026{bottom:309.271740pt;}
.y59_c00026{bottom:310.109801pt;}
.y58_c00026{bottom:312.160057pt;}
.y57_c00026{bottom:313.019377pt;}
.y56_c00026{bottom:320.707275pt;}
.y55_c00026{bottom:321.429259pt;}
.y54_c00026{bottom:323.995761pt;}
.y53_c00026{bottom:326.715132pt;}
.y52_c00026{bottom:327.421088pt;}
.y51_c00026{bottom:328.135164pt;}
.y50_c00026{bottom:335.439399pt;}
.y4f_c00026{bottom:337.613945pt;}
.y4e_c00026{bottom:340.475199pt;}
.y4d_c00026{bottom:342.092080pt;}
.y4c_c00026{bottom:343.251048pt;}
.y4b_c00026{bottom:349.552156pt;}
.y4a_c00026{bottom:350.311096pt;}
.y49_c00026{bottom:351.434643pt;}
.y48_c00026{bottom:353.534223pt;}
.y47_c00026{bottom:355.602863pt;}
.y46_c00026{bottom:357.577983pt;}
.y45_c00026{bottom:358.122769pt;}
.y44_c00026{bottom:364.474495pt;}
.y43_c00026{bottom:366.142455pt;}
.y42_c00026{bottom:368.249356pt;}
.y41_c00026{bottom:368.885145pt;}
.y40_c00026{bottom:371.123209pt;}
.y3f_c00026{bottom:371.990219pt;}
.y3e_c00026{bottom:373.239724pt;}
.y3d_c00026{bottom:379.009676pt;}
.y3c_c00026{bottom:381.233156pt;}
.y3b_c00026{bottom:384.705249pt;}
.y3a_c00026{bottom:385.139856pt;}
.y39_c00026{bottom:386.630903pt;}
.y38_c00026{bottom:387.875409pt;}
.y37_c00026{bottom:394.746664pt;}
.y36_c00026{bottom:395.233167pt;}
.y35_c00026{bottom:396.807535pt;}
.y34_c00026{bottom:397.338600pt;}
.y33_c00026{bottom:399.078152pt;}
.y32_c00026{bottom:400.412020pt;}
.y31_c00026{bottom:400.975935pt;}
.y30_c00026{bottom:402.264379pt;}
.y2f_c00026{bottom:409.547980pt;}
.y2e_c00026{bottom:410.189427pt;}
.y2d_c00026{bottom:411.032012pt;}
.y2c_c00026{bottom:412.663603pt;}
.y2b_c00026{bottom:413.117199pt;}
.y2a_c00026{bottom:414.977908pt;}
.y29_c00026{bottom:425.299404pt;}
.y28_c00026{bottom:425.770159pt;}
.y27_c00026{bottom:427.699696pt;}
.y26_c00026{bottom:429.446621pt;}
.y25_c00026{bottom:430.927664pt;}
.y24_c00026{bottom:431.278612pt;}
.y23_c00026{bottom:432.499279pt;}
.y22_c00026{bottom:439.087747pt;}
.y21_c00026{bottom:440.985587pt;}
.y20_c00026{bottom:442.523020pt;}
.y1f_c00026{bottom:443.102573pt;}
.y1e_c00026{bottom:444.456187pt;}
.y1d_c00026{bottom:446.977307pt;}
.y1c_c00026{bottom:447.853333pt;}
.y1b_c00026{bottom:455.692507pt;}
.y1a_c00026{bottom:456.043907pt;}
.y19_c00026{bottom:456.931053pt;}
.y18_c00026{bottom:458.522200pt;}
.y17_c00026{bottom:458.948853pt;}
.y16_c00026{bottom:459.800800pt;}
.y15_c00026{bottom:460.064667pt;}
.y14_c00026{bottom:469.126133pt;}
.y13_c00026{bottom:470.277760pt;}
.y12_c00026{bottom:473.701480pt;}
.y11_c00026{bottom:474.349680pt;}
.y10_c00026{bottom:476.291480pt;}
.yf_c00026{bottom:476.860000pt;}
.ye_c00026{bottom:477.842587pt;}
.yd_c00026{bottom:484.764880pt;}
.yc_c00026{bottom:486.416627pt;}
.yb_c00026{bottom:487.444093pt;}
.ya_c00026{bottom:490.861707pt;}
.y9_c00026{bottom:492.242000pt;}
.y8_c00026{bottom:499.749173pt;}
.y7_c00026{bottom:500.121013pt;}
.y6_c00026{bottom:501.600253pt;}
.y5_c00026{bottom:501.905413pt;}
.y4_c00026{bottom:503.347213pt;}
.y3_c00026{bottom:505.107053pt;}
.y2_c00026{bottom:506.649333pt;}
.y1_c00026{bottom:515.966667pt;}
.h14_c00026{height:49.490430pt;}
.hf_c00026{height:53.179408pt;}
.h6_c00026{height:55.091441pt;}
.hb_c00026{height:55.978324pt;}
.h12_c00026{height:55.988827pt;}
.h2_c00026{height:56.000000pt;}
.h9_c00026{height:56.911296pt;}
.h15_c00026{height:56.924280pt;}
.h7_c00026{height:57.844268pt;}
.h5_c00026{height:57.892701pt;}
.ha_c00026{height:58.777240pt;}
.h13_c00026{height:58.821429pt;}
.hd_c00026{height:59.710212pt;}
.h11_c00026{height:60.637084pt;}
.h8_c00026{height:61.576156pt;}
.h4_c00026{height:61.627714pt;}
.h3_c00026{height:62.561467pt;}
.he_c00026{height:63.442100pt;}
.h10_c00026{height:63.446672pt;}
.hc_c00026{height:64.375072pt;}
.h16_c00026{height:69.988869pt;}
.h1_c00026{height:547.333333pt;}
.h0_c00026{height:547.440000pt;}
.w0_c00026{width:326.400000pt;}
.w1_c00026{width:326.666667pt;}
.x0_c00026{left:0.000000pt;}
.x6b_c00026{left:9.974667pt;}
.x71_c00026{left:16.530667pt;}
.x67_c00026{left:18.578667pt;}
.x6d_c00026{left:19.652000pt;}
.x64_c00026{left:21.963521pt;}
.x41_c00026{left:24.915303pt;}
.x38_c00026{left:25.805099pt;}
.x2_c00026{left:26.817333pt;}
.x5d_c00026{left:31.794088pt;}
.x4b_c00026{left:38.506511pt;}
.x32_c00026{left:41.649180pt;}
.x4f_c00026{left:43.610436pt;}
.x3d_c00026{left:46.923397pt;}
.x42_c00026{left:48.110449pt;}
.x54_c00026{left:51.167728pt;}
.xd_c00026{left:52.614320pt;}
.x5b_c00026{left:53.579877pt;}
.x39_c00026{left:57.971779pt;}
.x12_c00026{left:59.116760pt;}
.x2d_c00026{left:60.730315pt;}
.x28_c00026{left:62.023428pt;}
.x1b_c00026{left:64.109113pt;}
.x9_c00026{left:65.477560pt;}
.xe_c00026{left:67.561387pt;}
.x13_c00026{left:70.092053pt;}
.x47_c00026{left:72.629875pt;}
.x1c_c00026{left:74.735224pt;}
.x3_c00026{left:78.226667pt;}
.x23_c00026{left:82.712153pt;}
.x2e_c00026{left:84.792055pt;}
.x72_c00026{left:85.845283pt;}
.x5a_c00026{left:88.621100pt;}
.x68_c00026{left:93.919251pt;}
.x58_c00026{left:94.862463pt;}
.x33_c00026{left:98.024748pt;}
.x3a_c00026{left:102.827956pt;}
.x29_c00026{left:104.582160pt;}
.x14_c00026{left:105.607787pt;}
.x1f_c00026{left:107.617479pt;}
.x4c_c00026{left:110.691216pt;}
.x2a_c00026{left:116.987076pt;}
.xf_c00026{left:118.675813pt;}
.x65_c00026{left:120.564424pt;}
.x15_c00026{left:123.388320pt;}
.x43_c00026{left:126.097585pt;}
.x20_c00026{left:127.302043pt;}
.x6f_c00026{left:131.238667pt;}
.x55_c00026{left:134.589601pt;}
.x10_c00026{left:135.745067pt;}
.x4_c00026{left:136.888000pt;}
.x5e_c00026{left:138.774409pt;}
.x1_c00026{left:143.040000pt;}
.x2f_c00026{left:146.883705pt;}
.x3e_c00026{left:150.592199pt;}
.x34_c00026{left:157.069644pt;}
.xa_c00026{left:160.403147pt;}
.x17_c00026{left:162.814931pt;}
.x30_c00026{left:164.536095pt;}
.x4d_c00026{left:166.112812pt;}
.x48_c00026{left:167.722687pt;}
.x50_c00026{left:170.805653pt;}
.x1d_c00026{left:172.428253pt;}
.x24_c00026{left:175.765547pt;}
.x18_c00026{left:179.357039pt;}
.x59_c00026{left:181.231169pt;}
.x3b_c00026{left:182.212356pt;}
.x44_c00026{left:183.871689pt;}
.x5_c00026{left:184.948000pt;}
.xb_c00026{left:188.958027pt;}
.x25_c00026{left:191.837247pt;}
.x6_c00026{left:195.120000pt;}
.x5f_c00026{left:196.994012pt;}
.x21_c00026{left:198.158252pt;}
.x6c_c00026{left:199.548903pt;}
.x49_c00026{left:202.864843pt;}
.x69_c00026{left:203.839887pt;}
.x51_c00026{left:207.722401pt;}
.x60_c00026{left:210.887989pt;}
.x62_c00026{left:211.937589pt;}
.x56_c00026{left:213.219779pt;}
.x66_c00026{left:214.886917pt;}
.x2b_c00026{left:216.090540pt;}
.x35_c00026{left:216.997656pt;}
.x6a_c00026{left:218.224155pt;}
.x19_c00026{left:223.239779pt;}
.x52_c00026{left:224.870484pt;}
.x11_c00026{left:225.847467pt;}
.x3f_c00026{left:228.301211pt;}
.x61_c00026{left:229.206404pt;}
.x1e_c00026{left:230.852548pt;}
.x45_c00026{left:232.186629pt;}
.xc_c00026{left:234.852453pt;}
.x4e_c00026{left:237.960615pt;}
.x26_c00026{left:239.476876pt;}
.x16_c00026{left:241.288187pt;}
.x3c_c00026{left:242.567172pt;}
.x7_c00026{left:244.428000pt;}
.x36_c00026{left:249.066888pt;}
.x40_c00026{left:250.164867pt;}
.x46_c00026{left:251.716392pt;}
.x70_c00026{left:253.197333pt;}
.x27_c00026{left:254.200499pt;}
.x8_c00026{left:256.822667pt;}
.x5c_c00026{left:259.400176pt;}
.x22_c00026{left:262.556836pt;}
.x4a_c00026{left:264.991987pt;}
.x6e_c00026{left:267.933333pt;}
.x31_c00026{left:269.274228pt;}
.x37_c00026{left:270.729204pt;}
.x53_c00026{left:272.290735pt;}
.x63_c00026{left:275.461517pt;}
.x1a_c00026{left:277.409555pt;}
.x2c_c00026{left:279.555012pt;}
.x57_c00026{left:284.358809pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00027 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00027.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me2_c00027{transform:matrix(0.007675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007675,0.000000,0.000000,0.250000,0,0);}
.mdd_c00027{transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00027{transform:matrix(0.018490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018490,0.000000,0.000000,0.250000,0,0);}
.mc3_c00027{transform:matrix(0.033015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033015,0.000000,0.000000,0.250000,0,0);}
.m80_c00027{transform:matrix(0.070615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070615,0.000000,0.000000,0.250000,0,0);}
.m2c_c00027{transform:matrix(0.091290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091290,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);}
.m8c_c00027{transform:matrix(0.105470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105470,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.111185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00027{transform:matrix(0.117705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117705,0.000000,0.000000,0.250000,0,0);}
.mc4_c00027{transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);}
.mdf_c00027{transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.144360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144360,0.000000,0.000000,0.250000,0,0);}
.m4b_c00027{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.mc9_c00027{transform:matrix(0.150265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150265,0.000000,0.000000,0.250000,0,0);}
.m6b_c00027{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.150805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150805,0.000000,0.000000,0.250000,0,0);}
.m1b_c00027{transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);}
.m88_c00027{transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);}
.m22_c00027{transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00027{transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.159780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159780,0.000000,0.000000,0.250000,0,0);}
.m36_c00027{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.mec_c00027{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m87_c00027{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.mdb_c00027{transform:matrix(0.163855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163855,0.000000,0.000000,0.250000,0,0);}
.mbf_c00027{transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);}
.mde_c00027{transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);}
.m81_c00027{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m62_c00027{transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);}
.m54_c00027{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m76_c00027{transform:matrix(0.168385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168385,0.000000,0.000000,0.250000,0,0);}
.md4_c00027{transform:matrix(0.168580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00027{transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);}
.m3e_c00027{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.mb0_c00027{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.mc5_c00027{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.mca_c00027{transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);}
.m46_c00027{transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);}
.m8b_c00027{transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);}
.me8_c00027{transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);}
.maf_c00027{transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);}
.m59_c00027{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.md8_c00027{transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);}
.mb8_c00027{transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m26_c00027{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m96_c00027{transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);}
.m77_c00027{transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);}
.m3d_c00027{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.mb7_c00027{transform:matrix(0.176905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176905,0.000000,0.000000,0.250000,0,0);}
.mae_c00027{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.md3_c00027{transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);}
.m61_c00027{transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);}
.mc7_c00027{transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);}
.m75_c00027{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);}
.m2d_c00027{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);}
.md2_c00027{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.med_c00027{transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);}
.m6a_c00027{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m9c_c00027{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.m40_c00027{transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);}
.mdc_c00027{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.ma7_c00027{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);}
.m45_c00027{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m66_c00027{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m7f_c00027{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.mab_c00027{transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);}
.me0_c00027{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m65_c00027{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.md5_c00027{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m70_c00027{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.m8e_c00027{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m93_c00027{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);}
.m94_c00027{transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);}
.m5e_c00027{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.mc2_c00027{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m64_c00027{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.m5f_c00027{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.mc1_c00027{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.md9_c00027{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.me7_c00027{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m56_c00027{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.ma2_c00027{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00027{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.me6_c00027{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m68_c00027{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m38_c00027{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.meb_c00027{transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);}
.m9f_c00027{transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);}
.m9b_c00027{transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);}
.m72_c00027{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m51_c00027{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m73_c00027{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m52_c00027{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.mb2_c00027{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.mda_c00027{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m57_c00027{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mce_c00027{transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);}
.m71_c00027{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m78_c00027{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00027{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.md6_c00027{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.md0_c00027{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00027{transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);}
.mac_c00027{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.ma3_c00027{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.m4f_c00027{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.m39_c00027{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.ma0_c00027{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.m35_c00027{transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);}
.mbb_c00027{transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00027{transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);}
.md1_c00027{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.md7_c00027{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m89_c00027{transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);}
.ma6_c00027{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.mba_c00027{transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);}
.m3f_c00027{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m43_c00027{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m32_c00027{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m92_c00027{transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);}
.mad_c00027{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m2b_c00027{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m42_c00027{transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);}
.m41_c00027{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m85_c00027{transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);}
.m7d_c00027{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m48_c00027{transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);}
.me3_c00027{transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);}
.me4_c00027{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.mb4_c00027{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m53_c00027{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m90_c00027{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m44_c00027{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m9a_c00027{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.mc8_c00027{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m49_c00027{transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);}
.m69_c00027{transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);}
.m74_c00027{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.m6e_c00027{transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00027{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.mbd_c00027{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00027{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m47_c00027{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.mb9_c00027{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.mbe_c00027{transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);}
.mcd_c00027{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m8a_c00027{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.m67_c00027{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m5c_c00027{transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);}
.m50_c00027{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.mcc_c00027{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.mb1_c00027{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m23_c00027{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m99_c00027{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m79_c00027{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m7c_c00027{transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);}
.m6c_c00027{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m4e_c00027{transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);}
.m91_c00027{transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);}
.m5d_c00027{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.m20_c00027{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m58_c00027{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m97_c00027{transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);}
.m37_c00027{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.m7b_c00027{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.mc6_c00027{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.mcf_c00027{transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m63_c00027{transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);}
.m8d_c00027{transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);}
.ma8_c00027{transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m31_c00027{transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);}
.m2e_c00027{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.mbc_c00027{transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m95_c00027{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);}
.mc0_c00027{transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);}
.m5b_c00027{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m84_c00027{transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);}
.m86_c00027{transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);}
.m82_c00027{transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);}
.m60_c00027{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m55_c00027{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.ma4_c00027{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.ma5_c00027{transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);}
.m6d_c00027{transform:matrix(0.233170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233170,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.m83_c00027{transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);}
.ma9_c00027{transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);}
.ma1_c00027{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m34_c00027{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.m4d_c00027{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00027{transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);}
.m33_c00027{transform:matrix(0.242505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242505,0.000000,0.000000,0.250000,0,0);}
.maa_c00027{transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);}
.me9_c00027{transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.me5_c00027{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.mb6_c00027{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.m3b_c00027{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00027{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m30_c00027{transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);}
.mea_c00027{transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00027{transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);}
.m98_c00027{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.m1a_c00027{transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);}
.mcb_c00027{transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00027{transform:matrix(0.309810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309810,0.000000,0.000000,0.250000,0,0);}
.me1_c00027{transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);}
.m3a_c00027{transform:matrix(0.400570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400570,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.573320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573320,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:0.000000px;}
.fc0_c00027{color:transparent;}
.fs6_c00027{font-size:58.800000px;}
.fs5_c00027{font-size:59.850000px;}
.fs3_c00027{font-size:60.900000px;}
.fs4_c00027{font-size:61.950000px;}
.fs9_c00027{font-size:63.000000px;}
.fs1_c00027{font-size:64.050000px;}
.fs8_c00027{font-size:66.150000px;}
.fs7_c00027{font-size:67.200000px;}
.fs2_c00027{font-size:68.250000px;}
.fsb_c00027{font-size:69.300000px;}
.fsa_c00027{font-size:70.350000px;}
.fs0_c00027{font-size:110.250000px;}
.y0_c00027{bottom:0.000000px;}
.yea_c00027{bottom:36.802500px;}
.ye9_c00027{bottom:37.201500px;}
.ye8_c00027{bottom:38.221500px;}
.ye7_c00027{bottom:38.592000px;}
.ye6_c00027{bottom:39.616500px;}
.ye5_c00027{bottom:40.512000px;}
.ye4_c00027{bottom:40.875000px;}
.ye3_c00027{bottom:41.446500px;}
.ye2_c00027{bottom:42.406500px;}
.ye1_c00027{bottom:42.672000px;}
.ye0_c00027{bottom:54.483000px;}
.ydf_c00027{bottom:54.580500px;}
.yde_c00027{bottom:56.013000px;}
.ydd_c00027{bottom:57.432000px;}
.ydc_c00027{bottom:58.053000px;}
.ydb_c00027{bottom:59.415000px;}
.yda_c00027{bottom:72.574500px;}
.yd9_c00027{bottom:76.269000px;}
.yd8_c00027{bottom:76.909500px;}
.yd7_c00027{bottom:77.508000px;}
.yd6_c00027{bottom:87.751500px;}
.yd5_c00027{bottom:88.534500px;}
.yd4_c00027{bottom:89.578500px;}
.yd3_c00027{bottom:90.718500px;}
.yd2_c00027{bottom:91.683000px;}
.yd1_c00027{bottom:92.080500px;}
.yd0_c00027{bottom:93.160500px;}
.ycf_c00027{bottom:93.975000px;}
.yce_c00027{bottom:105.048000px;}
.ycd_c00027{bottom:105.550500px;}
.ycc_c00027{bottom:107.716500px;}
.ycb_c00027{bottom:108.855000px;}
.yca_c00027{bottom:109.152000px;}
.yc9_c00027{bottom:110.524500px;}
.yc8_c00027{bottom:110.991000px;}
.yc7_c00027{bottom:121.614000px;}
.yc6_c00027{bottom:122.064000px;}
.yc5_c00027{bottom:123.577500px;}
.yc4_c00027{bottom:125.698500px;}
.yc3_c00027{bottom:126.010500px;}
.yc2_c00027{bottom:126.849000px;}
.yc1_c00027{bottom:127.323000px;}
.yc0_c00027{bottom:127.722000px;}
.ybf_c00027{bottom:139.221000px;}
.ybe_c00027{bottom:139.806000px;}
.ybd_c00027{bottom:141.016500px;}
.ybc_c00027{bottom:141.948000px;}
.ybb_c00027{bottom:143.370000px;}
.yba_c00027{bottom:143.916000px;}
.yb9_c00027{bottom:145.002000px;}
.yb8_c00027{bottom:156.009000px;}
.yb7_c00027{bottom:157.006500px;}
.yb6_c00027{bottom:158.736000px;}
.yb5_c00027{bottom:159.294000px;}
.yb4_c00027{bottom:160.065000px;}
.yb3_c00027{bottom:161.127000px;}
.yb2_c00027{bottom:161.577000px;}
.yb1_c00027{bottom:162.552000px;}
.yb0_c00027{bottom:172.633500px;}
.yaf_c00027{bottom:173.179500px;}
.yae_c00027{bottom:174.795000px;}
.yad_c00027{bottom:175.123500px;}
.yac_c00027{bottom:175.683000px;}
.yab_c00027{bottom:176.025000px;}
.yaa_c00027{bottom:176.586000px;}
.ya9_c00027{bottom:177.975000px;}
.ya8_c00027{bottom:178.480500px;}
.ya7_c00027{bottom:190.458000px;}
.ya6_c00027{bottom:191.823000px;}
.ya5_c00027{bottom:193.717500px;}
.ya4_c00027{bottom:194.169000px;}
.ya3_c00027{bottom:194.914500px;}
.ya2_c00027{bottom:196.308000px;}
.ya1_c00027{bottom:205.864500px;}
.ya0_c00027{bottom:207.013500px;}
.y9f_c00027{bottom:207.511500px;}
.y9e_c00027{bottom:208.765500px;}
.y9d_c00027{bottom:209.313000px;}
.y9c_c00027{bottom:210.258000px;}
.y9b_c00027{bottom:210.706500px;}
.y9a_c00027{bottom:211.210500px;}
.y99_c00027{bottom:213.315000px;}
.y98_c00027{bottom:223.845000px;}
.y97_c00027{bottom:225.508500px;}
.y96_c00027{bottom:226.141500px;}
.y95_c00027{bottom:226.422000px;}
.y94_c00027{bottom:227.449500px;}
.y93_c00027{bottom:227.901000px;}
.y92_c00027{bottom:228.672000px;}
.y91_c00027{bottom:229.077000px;}
.y90_c00027{bottom:230.050500px;}
.y8f_c00027{bottom:240.603000px;}
.y8e_c00027{bottom:241.959000px;}
.y8d_c00027{bottom:242.823000px;}
.y8c_c00027{bottom:243.508500px;}
.y8b_c00027{bottom:244.864500px;}
.y8a_c00027{bottom:245.373000px;}
.y89_c00027{bottom:247.600500px;}
.y88_c00027{bottom:257.341500px;}
.y87_c00027{bottom:259.389000px;}
.y86_c00027{bottom:259.719000px;}
.y85_c00027{bottom:261.628500px;}
.y84_c00027{bottom:262.762500px;}
.y83_c00027{bottom:263.526000px;}
.y82_c00027{bottom:275.889000px;}
.y81_c00027{bottom:277.441500px;}
.y80_c00027{bottom:278.865000px;}
.y7f_c00027{bottom:279.171000px;}
.y7e_c00027{bottom:280.231500px;}
.y7d_c00027{bottom:280.536000px;}
.y7c_c00027{bottom:291.138000px;}
.y7b_c00027{bottom:292.551000px;}
.y7a_c00027{bottom:293.041500px;}
.y79_c00027{bottom:293.569500px;}
.y78_c00027{bottom:294.931500px;}
.y77_c00027{bottom:295.846500px;}
.y76_c00027{bottom:296.226000px;}
.y75_c00027{bottom:296.835000px;}
.y74_c00027{bottom:297.817500px;}
.y73_c00027{bottom:308.329500px;}
.y72_c00027{bottom:309.726000px;}
.y71_c00027{bottom:310.611000px;}
.y70_c00027{bottom:311.490000px;}
.y6f_c00027{bottom:312.594000px;}
.y6e_c00027{bottom:312.889500px;}
.y6d_c00027{bottom:314.287500px;}
.y6c_c00027{bottom:324.774000px;}
.y6b_c00027{bottom:326.278500px;}
.y6a_c00027{bottom:327.157500px;}
.y69_c00027{bottom:328.155000px;}
.y68_c00027{bottom:328.938000px;}
.y67_c00027{bottom:329.316000px;}
.y66_c00027{bottom:329.752500px;}
.y65_c00027{bottom:330.759000px;}
.y64_c00027{bottom:341.316000px;}
.y63_c00027{bottom:342.421500px;}
.y62_c00027{bottom:343.030500px;}
.y61_c00027{bottom:344.508000px;}
.y60_c00027{bottom:345.463500px;}
.y5f_c00027{bottom:347.499000px;}
.y5e_c00027{bottom:358.744500px;}
.y5d_c00027{bottom:359.091000px;}
.y5c_c00027{bottom:359.890500px;}
.y5b_c00027{bottom:360.975000px;}
.y5a_c00027{bottom:362.733000px;}
.y59_c00027{bottom:363.511500px;}
.y58_c00027{bottom:364.551000px;}
.y57_c00027{bottom:365.049000px;}
.y56_c00027{bottom:376.674000px;}
.y55_c00027{bottom:377.946000px;}
.y54_c00027{bottom:379.357500px;}
.y53_c00027{bottom:379.648500px;}
.y52_c00027{bottom:381.535500px;}
.y51_c00027{bottom:382.327500px;}
.y50_c00027{bottom:392.907000px;}
.y4f_c00027{bottom:393.571500px;}
.y4e_c00027{bottom:395.854500px;}
.y4d_c00027{bottom:397.380000px;}
.y4c_c00027{bottom:397.698000px;}
.y4b_c00027{bottom:398.799000px;}
.y4a_c00027{bottom:410.100000px;}
.y49_c00027{bottom:410.449500px;}
.y48_c00027{bottom:411.298500px;}
.y47_c00027{bottom:411.681000px;}
.y46_c00027{bottom:412.327500px;}
.y45_c00027{bottom:413.361000px;}
.y44_c00027{bottom:413.727000px;}
.y43_c00027{bottom:415.120500px;}
.y42_c00027{bottom:415.539000px;}
.y41_c00027{bottom:426.267000px;}
.y40_c00027{bottom:426.666000px;}
.y3f_c00027{bottom:427.443000px;}
.y3e_c00027{bottom:428.019000px;}
.y3d_c00027{bottom:429.102000px;}
.y3c_c00027{bottom:429.966000px;}
.y3b_c00027{bottom:431.596500px;}
.y3a_c00027{bottom:432.006000px;}
.y39_c00027{bottom:443.593500px;}
.y38_c00027{bottom:444.394500px;}
.y37_c00027{bottom:444.724500px;}
.y36_c00027{bottom:445.749000px;}
.y35_c00027{bottom:446.203500px;}
.y34_c00027{bottom:447.168000px;}
.y33_c00027{bottom:448.335000px;}
.y32_c00027{bottom:448.686000px;}
.y31_c00027{bottom:449.284500px;}
.y30_c00027{bottom:461.358000px;}
.y2f_c00027{bottom:462.664500px;}
.y2e_c00027{bottom:463.258500px;}
.y2d_c00027{bottom:464.131500px;}
.y2c_c00027{bottom:464.506500px;}
.y2b_c00027{bottom:466.132500px;}
.y2a_c00027{bottom:466.564500px;}
.y29_c00027{bottom:477.481500px;}
.y28_c00027{bottom:477.666000px;}
.y27_c00027{bottom:479.920500px;}
.y26_c00027{bottom:480.969000px;}
.y25_c00027{bottom:481.243500px;}
.y24_c00027{bottom:482.031000px;}
.y23_c00027{bottom:482.767500px;}
.y22_c00027{bottom:483.304500px;}
.y21_c00027{bottom:494.278500px;}
.y20_c00027{bottom:496.222500px;}
.y1f_c00027{bottom:496.770000px;}
.y1e_c00027{bottom:497.358000px;}
.y1d_c00027{bottom:498.997500px;}
.y1c_c00027{bottom:499.962000px;}
.y1b_c00027{bottom:500.316000px;}
.y1a_c00027{bottom:510.897000px;}
.y19_c00027{bottom:511.902000px;}
.y18_c00027{bottom:513.061500px;}
.y17_c00027{bottom:513.396000px;}
.y16_c00027{bottom:513.717000px;}
.y15_c00027{bottom:514.297500px;}
.y14_c00027{bottom:515.478000px;}
.y13_c00027{bottom:515.973000px;}
.y12_c00027{bottom:528.180000px;}
.y11_c00027{bottom:528.373500px;}
.y10_c00027{bottom:529.212000px;}
.yf_c00027{bottom:530.218500px;}
.ye_c00027{bottom:530.721000px;}
.yd_c00027{bottom:530.998500px;}
.yc_c00027{bottom:531.972000px;}
.yb_c00027{bottom:533.254500px;}
.ya_c00027{bottom:545.274000px;}
.y9_c00027{bottom:545.986500px;}
.y8_c00027{bottom:546.237000px;}
.y7_c00027{bottom:548.097000px;}
.y6_c00027{bottom:548.505000px;}
.y5_c00027{bottom:548.883000px;}
.y4_c00027{bottom:549.621000px;}
.y3_c00027{bottom:549.993000px;}
.y2_c00027{bottom:563.074500px;}
.y1_c00027{bottom:578.209500px;}
.h8_c00027{height:58.800000px;}
.h7_c00027{height:59.850000px;}
.h5_c00027{height:60.900000px;}
.h6_c00027{height:61.950000px;}
.hb_c00027{height:63.000000px;}
.h3_c00027{height:64.050000px;}
.ha_c00027{height:66.150000px;}
.h9_c00027{height:67.200000px;}
.h4_c00027{height:68.250000px;}
.hd_c00027{height:69.300000px;}
.hc_c00027{height:70.350000px;}
.h2_c00027{height:110.250000px;}
.h1_c00027{height:615.750000px;}
.h0_c00027{height:615.870000px;}
.w0_c00027{width:367.200000px;}
.w1_c00027{width:367.500000px;}
.x0_c00027{left:0.000000px;}
.x6e_c00027{left:28.069500px;}
.x7b_c00027{left:36.207000px;}
.x71_c00027{left:38.050500px;}
.x64_c00027{left:39.936000px;}
.x5d_c00027{left:41.836500px;}
.x53_c00027{left:43.012500px;}
.x49_c00027{left:44.262000px;}
.x39_c00027{left:46.162500px;}
.x23_c00027{left:48.159000px;}
.xf_c00027{left:49.440000px;}
.x2_c00027{left:51.570000px;}
.x54_c00027{left:57.513000px;}
.x1d_c00027{left:59.217000px;}
.x77_c00027{left:62.074500px;}
.x3a_c00027{left:64.354500px;}
.x27_c00027{left:67.521000px;}
.x6f_c00027{left:69.676500px;}
.x8_c00027{left:72.963000px;}
.x2c_c00027{left:76.144500px;}
.x16_c00027{left:78.315000px;}
.x3_c00027{left:79.380000px;}
.x6a_c00027{left:80.560500px;}
.x5e_c00027{left:86.113500px;}
.x50_c00027{left:88.396500px;}
.x2d_c00027{left:92.889000px;}
.x7c_c00027{left:94.614000px;}
.x40_c00027{left:95.944500px;}
.x6b_c00027{left:99.333000px;}
.x65_c00027{left:100.530000px;}
.x5f_c00027{left:104.547000px;}
.x24_c00027{left:108.814500px;}
.x41_c00027{left:110.398500px;}
.x1e_c00027{left:112.002000px;}
.x46_c00027{left:115.269000px;}
.x9_c00027{left:116.416500px;}
.x72_c00027{left:117.994500px;}
.x4e_c00027{left:121.249500px;}
.x55_c00027{left:122.599500px;}
.x3b_c00027{left:124.972500px;}
.x57_c00027{left:129.045000px;}
.x4c_c00027{left:130.948500px;}
.x4_c00027{left:133.110000px;}
.xa_c00027{left:138.628500px;}
.x17_c00027{left:140.407500px;}
.x28_c00027{left:141.423000px;}
.x6c_c00027{left:143.607000px;}
.x78_c00027{left:144.697500px;}
.x5_c00027{left:145.800000px;}
.x2e_c00027{left:148.489500px;}
.x33_c00027{left:149.578500px;}
.x47_c00027{left:150.645000px;}
.x59_c00027{left:152.619000px;}
.x67_c00027{left:156.574500px;}
.x25_c00027{left:159.349500px;}
.xb_c00027{left:162.615000px;}
.x62_c00027{left:164.466000px;}
.x10_c00027{left:168.177000px;}
.x18_c00027{left:170.998500px;}
.x68_c00027{left:172.887000px;}
.x43_c00027{left:174.634500px;}
.x6d_c00027{left:175.738500px;}
.x1f_c00027{left:177.591000px;}
.x42_c00027{left:179.731500px;}
.x7d_c00027{left:181.717500px;}
.x11_c00027{left:182.751000px;}
.x3c_c00027{left:185.826000px;}
.x19_c00027{left:187.930500px;}
.x56_c00027{left:190.374000px;}
.x34_c00027{left:192.777000px;}
.x2f_c00027{left:194.397000px;}
.x29_c00027{left:198.166500px;}
.x1_c00027{left:199.530000px;}
.x20_c00027{left:201.100500px;}
.x79_c00027{left:203.800500px;}
.x1a_c00027{left:205.504500px;}
.x5a_c00027{left:206.889000px;}
.x12_c00027{left:209.232000px;}
.x6_c00027{left:211.680000px;}
.x3d_c00027{left:213.903000px;}
.x30_c00027{left:216.004500px;}
.x60_c00027{left:219.606000px;}
.x21_c00027{left:222.984000px;}
.x2a_c00027{left:225.183000px;}
.x75_c00027{left:229.497000px;}
.x3e_c00027{left:230.559000px;}
.x5b_c00027{left:234.297000px;}
.x44_c00027{left:235.998000px;}
.x4a_c00027{left:238.609500px;}
.x35_c00027{left:246.891000px;}
.x61_c00027{left:248.392500px;}
.x4f_c00027{left:251.614500px;}
.x4d_c00027{left:257.568000px;}
.x51_c00027{left:260.931000px;}
.x13_c00027{left:262.230000px;}
.x7a_c00027{left:263.470500px;}
.x31_c00027{left:264.768000px;}
.x1b_c00027{left:266.563500px;}
.x5c_c00027{left:268.869000px;}
.xc_c00027{left:272.034000px;}
.x73_c00027{left:274.593000px;}
.x36_c00027{left:275.683500px;}
.x32_c00027{left:280.506000px;}
.x3f_c00027{left:282.678000px;}
.x2b_c00027{left:284.578500px;}
.xd_c00027{left:286.801500px;}
.x45_c00027{left:291.300000px;}
.x66_c00027{left:294.288000px;}
.x7_c00027{left:295.380000px;}
.x74_c00027{left:296.464500px;}
.x70_c00027{left:297.559500px;}
.x22_c00027{left:300.715500px;}
.x14_c00027{left:306.331500px;}
.x76_c00027{left:308.872500px;}
.x4b_c00027{left:313.152000px;}
.x37_c00027{left:314.563500px;}
.x15_c00027{left:316.527000px;}
.x69_c00027{left:318.163500px;}
.x1c_c00027{left:319.474500px;}
.x58_c00027{left:323.899500px;}
.x26_c00027{left:325.456500px;}
.x63_c00027{left:327.150000px;}
.xe_c00027{left:328.731000px;}
.x48_c00027{left:331.923000px;}
.x38_c00027{left:334.540500px;}
.x52_c00027{left:347.403000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.fs6_c00027{font-size:52.266667pt;}
.fs5_c00027{font-size:53.200000pt;}
.fs3_c00027{font-size:54.133333pt;}
.fs4_c00027{font-size:55.066667pt;}
.fs9_c00027{font-size:56.000000pt;}
.fs1_c00027{font-size:56.933333pt;}
.fs8_c00027{font-size:58.800000pt;}
.fs7_c00027{font-size:59.733333pt;}
.fs2_c00027{font-size:60.666667pt;}
.fsb_c00027{font-size:61.600000pt;}
.fsa_c00027{font-size:62.533333pt;}
.fs0_c00027{font-size:98.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.yea_c00027{bottom:32.713333pt;}
.ye9_c00027{bottom:33.068000pt;}
.ye8_c00027{bottom:33.974667pt;}
.ye7_c00027{bottom:34.304000pt;}
.ye6_c00027{bottom:35.214667pt;}
.ye5_c00027{bottom:36.010667pt;}
.ye4_c00027{bottom:36.333333pt;}
.ye3_c00027{bottom:36.841333pt;}
.ye2_c00027{bottom:37.694667pt;}
.ye1_c00027{bottom:37.930667pt;}
.ye0_c00027{bottom:48.429333pt;}
.ydf_c00027{bottom:48.516000pt;}
.yde_c00027{bottom:49.789333pt;}
.ydd_c00027{bottom:51.050667pt;}
.ydc_c00027{bottom:51.602667pt;}
.ydb_c00027{bottom:52.813333pt;}
.yda_c00027{bottom:64.510667pt;}
.yd9_c00027{bottom:67.794667pt;}
.yd8_c00027{bottom:68.364000pt;}
.yd7_c00027{bottom:68.896000pt;}
.yd6_c00027{bottom:78.001333pt;}
.yd5_c00027{bottom:78.697333pt;}
.yd4_c00027{bottom:79.625333pt;}
.yd3_c00027{bottom:80.638667pt;}
.yd2_c00027{bottom:81.496000pt;}
.yd1_c00027{bottom:81.849333pt;}
.yd0_c00027{bottom:82.809333pt;}
.ycf_c00027{bottom:83.533333pt;}
.yce_c00027{bottom:93.376000pt;}
.ycd_c00027{bottom:93.822667pt;}
.ycc_c00027{bottom:95.748000pt;}
.ycb_c00027{bottom:96.760000pt;}
.yca_c00027{bottom:97.024000pt;}
.yc9_c00027{bottom:98.244000pt;}
.yc8_c00027{bottom:98.658667pt;}
.yc7_c00027{bottom:108.101333pt;}
.yc6_c00027{bottom:108.501333pt;}
.yc5_c00027{bottom:109.846667pt;}
.yc4_c00027{bottom:111.732000pt;}
.yc3_c00027{bottom:112.009333pt;}
.yc2_c00027{bottom:112.754667pt;}
.yc1_c00027{bottom:113.176000pt;}
.yc0_c00027{bottom:113.530667pt;}
.ybf_c00027{bottom:123.752000pt;}
.ybe_c00027{bottom:124.272000pt;}
.ybd_c00027{bottom:125.348000pt;}
.ybc_c00027{bottom:126.176000pt;}
.ybb_c00027{bottom:127.440000pt;}
.yba_c00027{bottom:127.925333pt;}
.yb9_c00027{bottom:128.890667pt;}
.yb8_c00027{bottom:138.674667pt;}
.yb7_c00027{bottom:139.561333pt;}
.yb6_c00027{bottom:141.098667pt;}
.yb5_c00027{bottom:141.594667pt;}
.yb4_c00027{bottom:142.280000pt;}
.yb3_c00027{bottom:143.224000pt;}
.yb2_c00027{bottom:143.624000pt;}
.yb1_c00027{bottom:144.490667pt;}
.yb0_c00027{bottom:153.452000pt;}
.yaf_c00027{bottom:153.937333pt;}
.yae_c00027{bottom:155.373333pt;}
.yad_c00027{bottom:155.665333pt;}
.yac_c00027{bottom:156.162667pt;}
.yab_c00027{bottom:156.466667pt;}
.yaa_c00027{bottom:156.965333pt;}
.ya9_c00027{bottom:158.200000pt;}
.ya8_c00027{bottom:158.649333pt;}
.ya7_c00027{bottom:169.296000pt;}
.ya6_c00027{bottom:170.509333pt;}
.ya5_c00027{bottom:172.193333pt;}
.ya4_c00027{bottom:172.594667pt;}
.ya3_c00027{bottom:173.257333pt;}
.ya2_c00027{bottom:174.496000pt;}
.ya1_c00027{bottom:182.990667pt;}
.ya0_c00027{bottom:184.012000pt;}
.y9f_c00027{bottom:184.454667pt;}
.y9e_c00027{bottom:185.569333pt;}
.y9d_c00027{bottom:186.056000pt;}
.y9c_c00027{bottom:186.896000pt;}
.y9b_c00027{bottom:187.294667pt;}
.y9a_c00027{bottom:187.742667pt;}
.y99_c00027{bottom:189.613333pt;}
.y98_c00027{bottom:198.973333pt;}
.y97_c00027{bottom:200.452000pt;}
.y96_c00027{bottom:201.014667pt;}
.y95_c00027{bottom:201.264000pt;}
.y94_c00027{bottom:202.177333pt;}
.y93_c00027{bottom:202.578667pt;}
.y92_c00027{bottom:203.264000pt;}
.y91_c00027{bottom:203.624000pt;}
.y90_c00027{bottom:204.489333pt;}
.y8f_c00027{bottom:213.869333pt;}
.y8e_c00027{bottom:215.074667pt;}
.y8d_c00027{bottom:215.842667pt;}
.y8c_c00027{bottom:216.452000pt;}
.y8b_c00027{bottom:217.657333pt;}
.y8a_c00027{bottom:218.109333pt;}
.y89_c00027{bottom:220.089333pt;}
.y88_c00027{bottom:228.748000pt;}
.y87_c00027{bottom:230.568000pt;}
.y86_c00027{bottom:230.861333pt;}
.y85_c00027{bottom:232.558667pt;}
.y84_c00027{bottom:233.566667pt;}
.y83_c00027{bottom:234.245333pt;}
.y82_c00027{bottom:245.234667pt;}
.y81_c00027{bottom:246.614667pt;}
.y80_c00027{bottom:247.880000pt;}
.y7f_c00027{bottom:248.152000pt;}
.y7e_c00027{bottom:249.094667pt;}
.y7d_c00027{bottom:249.365333pt;}
.y7c_c00027{bottom:258.789333pt;}
.y7b_c00027{bottom:260.045333pt;}
.y7a_c00027{bottom:260.481333pt;}
.y79_c00027{bottom:260.950667pt;}
.y78_c00027{bottom:262.161333pt;}
.y77_c00027{bottom:262.974667pt;}
.y76_c00027{bottom:263.312000pt;}
.y75_c00027{bottom:263.853333pt;}
.y74_c00027{bottom:264.726667pt;}
.y73_c00027{bottom:274.070667pt;}
.y72_c00027{bottom:275.312000pt;}
.y71_c00027{bottom:276.098667pt;}
.y70_c00027{bottom:276.880000pt;}
.y6f_c00027{bottom:277.861333pt;}
.y6e_c00027{bottom:278.124000pt;}
.y6d_c00027{bottom:279.366667pt;}
.y6c_c00027{bottom:288.688000pt;}
.y6b_c00027{bottom:290.025333pt;}
.y6a_c00027{bottom:290.806667pt;}
.y69_c00027{bottom:291.693333pt;}
.y68_c00027{bottom:292.389333pt;}
.y67_c00027{bottom:292.725333pt;}
.y66_c00027{bottom:293.113333pt;}
.y65_c00027{bottom:294.008000pt;}
.y64_c00027{bottom:303.392000pt;}
.y63_c00027{bottom:304.374667pt;}
.y62_c00027{bottom:304.916000pt;}
.y61_c00027{bottom:306.229333pt;}
.y60_c00027{bottom:307.078667pt;}
.y5f_c00027{bottom:308.888000pt;}
.y5e_c00027{bottom:318.884000pt;}
.y5d_c00027{bottom:319.192000pt;}
.y5c_c00027{bottom:319.902667pt;}
.y5b_c00027{bottom:320.866667pt;}
.y5a_c00027{bottom:322.429333pt;}
.y59_c00027{bottom:323.121333pt;}
.y58_c00027{bottom:324.045333pt;}
.y57_c00027{bottom:324.488000pt;}
.y56_c00027{bottom:334.821333pt;}
.y55_c00027{bottom:335.952000pt;}
.y54_c00027{bottom:337.206667pt;}
.y53_c00027{bottom:337.465333pt;}
.y52_c00027{bottom:339.142667pt;}
.y51_c00027{bottom:339.846667pt;}
.y50_c00027{bottom:349.250667pt;}
.y4f_c00027{bottom:349.841333pt;}
.y4e_c00027{bottom:351.870667pt;}
.y4d_c00027{bottom:353.226667pt;}
.y4c_c00027{bottom:353.509333pt;}
.y4b_c00027{bottom:354.488000pt;}
.y4a_c00027{bottom:364.533333pt;}
.y49_c00027{bottom:364.844000pt;}
.y48_c00027{bottom:365.598667pt;}
.y47_c00027{bottom:365.938667pt;}
.y46_c00027{bottom:366.513333pt;}
.y45_c00027{bottom:367.432000pt;}
.y44_c00027{bottom:367.757333pt;}
.y43_c00027{bottom:368.996000pt;}
.y42_c00027{bottom:369.368000pt;}
.y41_c00027{bottom:378.904000pt;}
.y40_c00027{bottom:379.258667pt;}
.y3f_c00027{bottom:379.949333pt;}
.y3e_c00027{bottom:380.461333pt;}
.y3d_c00027{bottom:381.424000pt;}
.y3c_c00027{bottom:382.192000pt;}
.y3b_c00027{bottom:383.641333pt;}
.y3a_c00027{bottom:384.005333pt;}
.y39_c00027{bottom:394.305333pt;}
.y38_c00027{bottom:395.017333pt;}
.y37_c00027{bottom:395.310667pt;}
.y36_c00027{bottom:396.221333pt;}
.y35_c00027{bottom:396.625333pt;}
.y34_c00027{bottom:397.482667pt;}
.y33_c00027{bottom:398.520000pt;}
.y32_c00027{bottom:398.832000pt;}
.y31_c00027{bottom:399.364000pt;}
.y30_c00027{bottom:410.096000pt;}
.y2f_c00027{bottom:411.257333pt;}
.y2e_c00027{bottom:411.785333pt;}
.y2d_c00027{bottom:412.561333pt;}
.y2c_c00027{bottom:412.894667pt;}
.y2b_c00027{bottom:414.340000pt;}
.y2a_c00027{bottom:414.724000pt;}
.y29_c00027{bottom:424.428000pt;}
.y28_c00027{bottom:424.592000pt;}
.y27_c00027{bottom:426.596000pt;}
.y26_c00027{bottom:427.528000pt;}
.y25_c00027{bottom:427.772000pt;}
.y24_c00027{bottom:428.472000pt;}
.y23_c00027{bottom:429.126667pt;}
.y22_c00027{bottom:429.604000pt;}
.y21_c00027{bottom:439.358667pt;}
.y20_c00027{bottom:441.086667pt;}
.y1f_c00027{bottom:441.573333pt;}
.y1e_c00027{bottom:442.096000pt;}
.y1d_c00027{bottom:443.553333pt;}
.y1c_c00027{bottom:444.410667pt;}
.y1b_c00027{bottom:444.725333pt;}
.y1a_c00027{bottom:454.130667pt;}
.y19_c00027{bottom:455.024000pt;}
.y18_c00027{bottom:456.054667pt;}
.y17_c00027{bottom:456.352000pt;}
.y16_c00027{bottom:456.637333pt;}
.y15_c00027{bottom:457.153333pt;}
.y14_c00027{bottom:458.202667pt;}
.y13_c00027{bottom:458.642667pt;}
.y12_c00027{bottom:469.493333pt;}
.y11_c00027{bottom:469.665333pt;}
.y10_c00027{bottom:470.410667pt;}
.yf_c00027{bottom:471.305333pt;}
.ye_c00027{bottom:471.752000pt;}
.yd_c00027{bottom:471.998667pt;}
.yc_c00027{bottom:472.864000pt;}
.yb_c00027{bottom:474.004000pt;}
.ya_c00027{bottom:484.688000pt;}
.y9_c00027{bottom:485.321333pt;}
.y8_c00027{bottom:485.544000pt;}
.y7_c00027{bottom:487.197333pt;}
.y6_c00027{bottom:487.560000pt;}
.y5_c00027{bottom:487.896000pt;}
.y4_c00027{bottom:488.552000pt;}
.y3_c00027{bottom:488.882667pt;}
.y2_c00027{bottom:500.510667pt;}
.y1_c00027{bottom:513.964000pt;}
.h8_c00027{height:52.266667pt;}
.h7_c00027{height:53.200000pt;}
.h5_c00027{height:54.133333pt;}
.h6_c00027{height:55.066667pt;}
.hb_c00027{height:56.000000pt;}
.h3_c00027{height:56.933333pt;}
.ha_c00027{height:58.800000pt;}
.h9_c00027{height:59.733333pt;}
.h4_c00027{height:60.666667pt;}
.hd_c00027{height:61.600000pt;}
.hc_c00027{height:62.533333pt;}
.h2_c00027{height:98.000000pt;}
.h1_c00027{height:547.333333pt;}
.h0_c00027{height:547.440000pt;}
.w0_c00027{width:326.400000pt;}
.w1_c00027{width:326.666667pt;}
.x0_c00027{left:0.000000pt;}
.x6e_c00027{left:24.950667pt;}
.x7b_c00027{left:32.184000pt;}
.x71_c00027{left:33.822667pt;}
.x64_c00027{left:35.498667pt;}
.x5d_c00027{left:37.188000pt;}
.x53_c00027{left:38.233333pt;}
.x49_c00027{left:39.344000pt;}
.x39_c00027{left:41.033333pt;}
.x23_c00027{left:42.808000pt;}
.xf_c00027{left:43.946667pt;}
.x2_c00027{left:45.840000pt;}
.x54_c00027{left:51.122667pt;}
.x1d_c00027{left:52.637333pt;}
.x77_c00027{left:55.177333pt;}
.x3a_c00027{left:57.204000pt;}
.x27_c00027{left:60.018667pt;}
.x6f_c00027{left:61.934667pt;}
.x8_c00027{left:64.856000pt;}
.x2c_c00027{left:67.684000pt;}
.x16_c00027{left:69.613333pt;}
.x3_c00027{left:70.560000pt;}
.x6a_c00027{left:71.609333pt;}
.x5e_c00027{left:76.545333pt;}
.x50_c00027{left:78.574667pt;}
.x2d_c00027{left:82.568000pt;}
.x7c_c00027{left:84.101333pt;}
.x40_c00027{left:85.284000pt;}
.x6b_c00027{left:88.296000pt;}
.x65_c00027{left:89.360000pt;}
.x5f_c00027{left:92.930667pt;}
.x24_c00027{left:96.724000pt;}
.x41_c00027{left:98.132000pt;}
.x1e_c00027{left:99.557333pt;}
.x46_c00027{left:102.461333pt;}
.x9_c00027{left:103.481333pt;}
.x72_c00027{left:104.884000pt;}
.x4e_c00027{left:107.777333pt;}
.x55_c00027{left:108.977333pt;}
.x3b_c00027{left:111.086667pt;}
.x57_c00027{left:114.706667pt;}
.x4c_c00027{left:116.398667pt;}
.x4_c00027{left:118.320000pt;}
.xa_c00027{left:123.225333pt;}
.x17_c00027{left:124.806667pt;}
.x28_c00027{left:125.709333pt;}
.x6c_c00027{left:127.650667pt;}
.x78_c00027{left:128.620000pt;}
.x5_c00027{left:129.600000pt;}
.x2e_c00027{left:131.990667pt;}
.x33_c00027{left:132.958667pt;}
.x47_c00027{left:133.906667pt;}
.x59_c00027{left:135.661333pt;}
.x67_c00027{left:139.177333pt;}
.x25_c00027{left:141.644000pt;}
.xb_c00027{left:144.546667pt;}
.x62_c00027{left:146.192000pt;}
.x10_c00027{left:149.490667pt;}
.x18_c00027{left:151.998667pt;}
.x68_c00027{left:153.677333pt;}
.x43_c00027{left:155.230667pt;}
.x6d_c00027{left:156.212000pt;}
.x1f_c00027{left:157.858667pt;}
.x42_c00027{left:159.761333pt;}
.x7d_c00027{left:161.526667pt;}
.x11_c00027{left:162.445333pt;}
.x3c_c00027{left:165.178667pt;}
.x19_c00027{left:167.049333pt;}
.x56_c00027{left:169.221333pt;}
.x34_c00027{left:171.357333pt;}
.x2f_c00027{left:172.797333pt;}
.x29_c00027{left:176.148000pt;}
.x1_c00027{left:177.360000pt;}
.x20_c00027{left:178.756000pt;}
.x79_c00027{left:181.156000pt;}
.x1a_c00027{left:182.670667pt;}
.x5a_c00027{left:183.901333pt;}
.x12_c00027{left:185.984000pt;}
.x6_c00027{left:188.160000pt;}
.x3d_c00027{left:190.136000pt;}
.x30_c00027{left:192.004000pt;}
.x60_c00027{left:195.205333pt;}
.x21_c00027{left:198.208000pt;}
.x2a_c00027{left:200.162667pt;}
.x75_c00027{left:203.997333pt;}
.x3e_c00027{left:204.941333pt;}
.x5b_c00027{left:208.264000pt;}
.x44_c00027{left:209.776000pt;}
.x4a_c00027{left:212.097333pt;}
.x35_c00027{left:219.458667pt;}
.x61_c00027{left:220.793333pt;}
.x4f_c00027{left:223.657333pt;}
.x4d_c00027{left:228.949333pt;}
.x51_c00027{left:231.938667pt;}
.x13_c00027{left:233.093333pt;}
.x7a_c00027{left:234.196000pt;}
.x31_c00027{left:235.349333pt;}
.x1b_c00027{left:236.945333pt;}
.x5c_c00027{left:238.994667pt;}
.xc_c00027{left:241.808000pt;}
.x73_c00027{left:244.082667pt;}
.x36_c00027{left:245.052000pt;}
.x32_c00027{left:249.338667pt;}
.x3f_c00027{left:251.269333pt;}
.x2b_c00027{left:252.958667pt;}
.xd_c00027{left:254.934667pt;}
.x45_c00027{left:258.933333pt;}
.x66_c00027{left:261.589333pt;}
.x7_c00027{left:262.560000pt;}
.x74_c00027{left:263.524000pt;}
.x70_c00027{left:264.497333pt;}
.x22_c00027{left:267.302667pt;}
.x14_c00027{left:272.294667pt;}
.x76_c00027{left:274.553333pt;}
.x4b_c00027{left:278.357333pt;}
.x37_c00027{left:279.612000pt;}
.x15_c00027{left:281.357333pt;}
.x69_c00027{left:282.812000pt;}
.x1c_c00027{left:283.977333pt;}
.x58_c00027{left:287.910667pt;}
.x26_c00027{left:289.294667pt;}
.x63_c00027{left:290.800000pt;}
.xe_c00027{left:292.205333pt;}
.x48_c00027{left:295.042667pt;}
.x38_c00027{left:297.369333pt;}
.x52_c00027{left:308.802667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00028 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00028.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.008936,0.000259,-0.007247,0.249895,0,0);-ms-transform:matrix(0.008936,0.000259,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.008936,0.000259,-0.007247,0.249895,0,0);}
.m93_c00028{transform:matrix(0.113237,0.003284,-0.007247,0.249895,0,0);-ms-transform:matrix(0.113237,0.003284,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.113237,0.003284,-0.007247,0.249895,0,0);}
.m94_c00028{transform:matrix(0.113492,0.003291,-0.007247,0.249895,0,0);-ms-transform:matrix(0.113492,0.003291,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.113492,0.003291,-0.007247,0.249895,0,0);}
.ma9_c00028{transform:matrix(0.136468,0.003958,-0.007247,0.249895,0,0);-ms-transform:matrix(0.136468,0.003958,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.136468,0.003958,-0.007247,0.249895,0,0);}
.m65_c00028{transform:matrix(0.138452,0.004015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.138452,0.004015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.138452,0.004015,-0.007247,0.249895,0,0);}
.m1d_c00028{transform:matrix(0.139746,0.004053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.139746,0.004053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.139746,0.004053,-0.007247,0.249895,0,0);}
.m56_c00028{transform:matrix(0.141625,0.004107,-0.007247,0.249895,0,0);-ms-transform:matrix(0.141625,0.004107,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.141625,0.004107,-0.007247,0.249895,0,0);}
.m48_c00028{transform:matrix(0.142435,0.004131,-0.007247,0.249895,0,0);-ms-transform:matrix(0.142435,0.004131,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.142435,0.004131,-0.007247,0.249895,0,0);}
.mad_c00028{transform:matrix(0.147628,0.004281,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147628,0.004281,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147628,0.004281,-0.007247,0.249895,0,0);}
.m58_c00028{transform:matrix(0.149597,0.004338,-0.007247,0.249895,0,0);-ms-transform:matrix(0.149597,0.004338,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.149597,0.004338,-0.007247,0.249895,0,0);}
.m2b_c00028{transform:matrix(0.151706,0.004399,-0.007247,0.249895,0,0);-ms-transform:matrix(0.151706,0.004399,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.151706,0.004399,-0.007247,0.249895,0,0);}
.m3_c00028{transform:matrix(0.152641,0.004427,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152641,0.004427,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152641,0.004427,-0.007247,0.249895,0,0);}
.mdd_c00028{transform:matrix(0.156434,0.004537,-0.007247,0.249895,0,0);-ms-transform:matrix(0.156434,0.004537,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.156434,0.004537,-0.007247,0.249895,0,0);}
.m6_c00028{transform:matrix(0.156984,0.004553,-0.007247,0.249895,0,0);-ms-transform:matrix(0.156984,0.004553,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.156984,0.004553,-0.007247,0.249895,0,0);}
.m90_c00028{transform:matrix(0.158019,0.004583,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158019,0.004583,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158019,0.004583,-0.007247,0.249895,0,0);}
.m46_c00028{transform:matrix(0.158728,0.004603,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158728,0.004603,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158728,0.004603,-0.007247,0.249895,0,0);}
.m66_c00028{transform:matrix(0.158898,0.004608,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158898,0.004608,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158898,0.004608,-0.007247,0.249895,0,0);}
.mb1_c00028{transform:matrix(0.159558,0.004627,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159558,0.004627,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159558,0.004627,-0.007247,0.249895,0,0);}
.m12_c00028{transform:matrix(0.159763,0.004633,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159763,0.004633,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159763,0.004633,-0.007247,0.249895,0,0);}
.m84_c00028{transform:matrix(0.159803,0.004634,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159803,0.004634,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159803,0.004634,-0.007247,0.249895,0,0);}
.m5f_c00028{transform:matrix(0.159818,0.004635,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159818,0.004635,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159818,0.004635,-0.007247,0.249895,0,0);}
.m1b_c00028{transform:matrix(0.160488,0.004654,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160488,0.004654,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160488,0.004654,-0.007247,0.249895,0,0);}
.mf_c00028{transform:matrix(0.160577,0.004657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160577,0.004657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160577,0.004657,-0.007247,0.249895,0,0);}
.m8f_c00028{transform:matrix(0.160782,0.004663,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160782,0.004663,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160782,0.004663,-0.007247,0.249895,0,0);}
.mab_c00028{transform:matrix(0.160917,0.004667,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160917,0.004667,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160917,0.004667,-0.007247,0.249895,0,0);}
.mcc_c00028{transform:matrix(0.161432,0.004682,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161432,0.004682,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161432,0.004682,-0.007247,0.249895,0,0);}
.m81_c00028{transform:matrix(0.161777,0.004692,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161777,0.004692,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161777,0.004692,-0.007247,0.249895,0,0);}
.me0_c00028{transform:matrix(0.162102,0.004701,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162102,0.004701,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162102,0.004701,-0.007247,0.249895,0,0);}
.md_c00028{transform:matrix(0.162447,0.004711,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162447,0.004711,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162447,0.004711,-0.007247,0.249895,0,0);}
.mdc_c00028{transform:matrix(0.162452,0.004711,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162452,0.004711,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162452,0.004711,-0.007247,0.249895,0,0);}
.maa_c00028{transform:matrix(0.162867,0.004723,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162867,0.004723,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162867,0.004723,-0.007247,0.249895,0,0);}
.m4e_c00028{transform:matrix(0.163336,0.004737,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163336,0.004737,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163336,0.004737,-0.007247,0.249895,0,0);}
.mcf_c00028{transform:matrix(0.163651,0.004746,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163651,0.004746,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163651,0.004746,-0.007247,0.249895,0,0);}
.m96_c00028{transform:matrix(0.163911,0.004753,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163911,0.004753,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163911,0.004753,-0.007247,0.249895,0,0);}
.m8d_c00028{transform:matrix(0.165700,0.004805,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165700,0.004805,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165700,0.004805,-0.007247,0.249895,0,0);}
.m82_c00028{transform:matrix(0.166065,0.004816,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166065,0.004816,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166065,0.004816,-0.007247,0.249895,0,0);}
.m17_c00028{transform:matrix(0.166650,0.004833,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166650,0.004833,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166650,0.004833,-0.007247,0.249895,0,0);}
.m47_c00028{transform:matrix(0.166695,0.004834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166695,0.004834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166695,0.004834,-0.007247,0.249895,0,0);}
.m73_c00028{transform:matrix(0.166900,0.004840,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166900,0.004840,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166900,0.004840,-0.007247,0.249895,0,0);}
.m50_c00028{transform:matrix(0.167140,0.004847,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167140,0.004847,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167140,0.004847,-0.007247,0.249895,0,0);}
.mca_c00028{transform:matrix(0.168344,0.004882,-0.007247,0.249895,0,0);-ms-transform:matrix(0.168344,0.004882,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.168344,0.004882,-0.007247,0.249895,0,0);}
.m63_c00028{transform:matrix(0.169949,0.004929,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169949,0.004929,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169949,0.004929,-0.007247,0.249895,0,0);}
.me2_c00028{transform:matrix(0.170358,0.004940,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170358,0.004940,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170358,0.004940,-0.007247,0.249895,0,0);}
.m22_c00028{transform:matrix(0.171478,0.004973,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171478,0.004973,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171478,0.004973,-0.007247,0.249895,0,0);}
.me3_c00028{transform:matrix(0.171938,0.004986,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171938,0.004986,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171938,0.004986,-0.007247,0.249895,0,0);}
.me6_c00028{transform:matrix(0.172812,0.005012,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172812,0.005012,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172812,0.005012,-0.007247,0.249895,0,0);}
.m20_c00028{transform:matrix(0.172917,0.005015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172917,0.005015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172917,0.005015,-0.007247,0.249895,0,0);}
.mcd_c00028{transform:matrix(0.173452,0.005030,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173452,0.005030,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173452,0.005030,-0.007247,0.249895,0,0);}
.m91_c00028{transform:matrix(0.174162,0.005051,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174162,0.005051,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174162,0.005051,-0.007247,0.249895,0,0);}
.m45_c00028{transform:matrix(0.174257,0.005053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174257,0.005053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174257,0.005053,-0.007247,0.249895,0,0);}
.m3f_c00028{transform:matrix(0.174472,0.005060,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174472,0.005060,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174472,0.005060,-0.007247,0.249895,0,0);}
.m11_c00028{transform:matrix(0.174537,0.005062,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174537,0.005062,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174537,0.005062,-0.007247,0.249895,0,0);}
.ma2_c00028{transform:matrix(0.174861,0.005071,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174861,0.005071,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174861,0.005071,-0.007247,0.249895,0,0);}
.m54_c00028{transform:matrix(0.174956,0.005074,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174956,0.005074,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174956,0.005074,-0.007247,0.249895,0,0);}
.m1c_c00028{transform:matrix(0.175206,0.005081,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175206,0.005081,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175206,0.005081,-0.007247,0.249895,0,0);}
.m2_c00028{transform:matrix(0.175701,0.005095,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175701,0.005095,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175701,0.005095,-0.007247,0.249895,0,0);}
.mda_c00028{transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);}
.mb_c00028{transform:matrix(0.175991,0.005104,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175991,0.005104,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175991,0.005104,-0.007247,0.249895,0,0);}
.m8e_c00028{transform:matrix(0.176261,0.005112,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176261,0.005112,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176261,0.005112,-0.007247,0.249895,0,0);}
.m44_c00028{transform:matrix(0.176446,0.005117,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176446,0.005117,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176446,0.005117,-0.007247,0.249895,0,0);}
.m92_c00028{transform:matrix(0.177036,0.005134,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177036,0.005134,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177036,0.005134,-0.007247,0.249895,0,0);}
.m10_c00028{transform:matrix(0.177041,0.005134,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177041,0.005134,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177041,0.005134,-0.007247,0.249895,0,0);}
.mb8_c00028{transform:matrix(0.177181,0.005138,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177181,0.005138,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177181,0.005138,-0.007247,0.249895,0,0);}
.m1e_c00028{transform:matrix(0.177940,0.005160,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177940,0.005160,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177940,0.005160,-0.007247,0.249895,0,0);}
.m59_c00028{transform:matrix(0.178415,0.005174,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178415,0.005174,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178415,0.005174,-0.007247,0.249895,0,0);}
.m15_c00028{transform:matrix(0.178810,0.005185,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178810,0.005185,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178810,0.005185,-0.007247,0.249895,0,0);}
.m42_c00028{transform:matrix(0.178855,0.005187,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178855,0.005187,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178855,0.005187,-0.007247,0.249895,0,0);}
.m77_c00028{transform:matrix(0.179110,0.005194,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179110,0.005194,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179110,0.005194,-0.007247,0.249895,0,0);}
.mba_c00028{transform:matrix(0.179305,0.005200,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179305,0.005200,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179305,0.005200,-0.007247,0.249895,0,0);}
.mc7_c00028{transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);}
.m86_c00028{transform:matrix(0.179485,0.005205,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179485,0.005205,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179485,0.005205,-0.007247,0.249895,0,0);}
.mb6_c00028{transform:matrix(0.179959,0.005219,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179959,0.005219,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179959,0.005219,-0.007247,0.249895,0,0);}
.md1_c00028{transform:matrix(0.180514,0.005235,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180514,0.005235,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180514,0.005235,-0.007247,0.249895,0,0);}
.m41_c00028{transform:matrix(0.180589,0.005237,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180589,0.005237,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180589,0.005237,-0.007247,0.249895,0,0);}
.me_c00028{transform:matrix(0.180809,0.005243,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180809,0.005243,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180809,0.005243,-0.007247,0.249895,0,0);}
.mae_c00028{transform:matrix(0.181379,0.005260,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181379,0.005260,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181379,0.005260,-0.007247,0.249895,0,0);}
.m9_c00028{transform:matrix(0.181594,0.005266,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181594,0.005266,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181594,0.005266,-0.007247,0.249895,0,0);}
.m6a_c00028{transform:matrix(0.181674,0.005269,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181674,0.005269,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181674,0.005269,-0.007247,0.249895,0,0);}
.m85_c00028{transform:matrix(0.182178,0.005283,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182178,0.005283,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182178,0.005283,-0.007247,0.249895,0,0);}
.me4_c00028{transform:matrix(0.182288,0.005286,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182288,0.005286,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182288,0.005286,-0.007247,0.249895,0,0);}
.mbb_c00028{transform:matrix(0.182863,0.005303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182863,0.005303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182863,0.005303,-0.007247,0.249895,0,0);}
.m7f_c00028{transform:matrix(0.182963,0.005306,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182963,0.005306,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182963,0.005306,-0.007247,0.249895,0,0);}
.mc_c00028{transform:matrix(0.183023,0.005308,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183023,0.005308,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183023,0.005308,-0.007247,0.249895,0,0);}
.m1a_c00028{transform:matrix(0.183603,0.005324,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183603,0.005324,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183603,0.005324,-0.007247,0.249895,0,0);}
.m3d_c00028{transform:matrix(0.183833,0.005331,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183833,0.005331,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183833,0.005331,-0.007247,0.249895,0,0);}
.me5_c00028{transform:matrix(0.183963,0.005335,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183963,0.005335,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183963,0.005335,-0.007247,0.249895,0,0);}
.m6d_c00028{transform:matrix(0.184552,0.005352,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184552,0.005352,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184552,0.005352,-0.007247,0.249895,0,0);}
.m25_c00028{transform:matrix(0.184977,0.005364,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184977,0.005364,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184977,0.005364,-0.007247,0.249895,0,0);}
.m62_c00028{transform:matrix(0.185142,0.005369,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185142,0.005369,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185142,0.005369,-0.007247,0.249895,0,0);}
.m5b_c00028{transform:matrix(0.185182,0.005370,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185182,0.005370,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185182,0.005370,-0.007247,0.249895,0,0);}
.m80_c00028{transform:matrix(0.185232,0.005372,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185232,0.005372,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185232,0.005372,-0.007247,0.249895,0,0);}
.m19_c00028{transform:matrix(0.185287,0.005373,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185287,0.005373,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185287,0.005373,-0.007247,0.249895,0,0);}
.m5a_c00028{transform:matrix(0.186237,0.005401,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186237,0.005401,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186237,0.005401,-0.007247,0.249895,0,0);}
.m60_c00028{transform:matrix(0.186592,0.005411,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186592,0.005411,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186592,0.005411,-0.007247,0.249895,0,0);}
.ma1_c00028{transform:matrix(0.186677,0.005414,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186677,0.005414,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186677,0.005414,-0.007247,0.249895,0,0);}
.m4d_c00028{transform:matrix(0.186806,0.005417,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186806,0.005417,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186806,0.005417,-0.007247,0.249895,0,0);}
.m5d_c00028{transform:matrix(0.187026,0.005424,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187026,0.005424,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187026,0.005424,-0.007247,0.249895,0,0);}
.mb3_c00028{transform:matrix(0.187501,0.005438,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187501,0.005438,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187501,0.005438,-0.007247,0.249895,0,0);}
.mc6_c00028{transform:matrix(0.188101,0.005455,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188101,0.005455,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188101,0.005455,-0.007247,0.249895,0,0);}
.m13_c00028{transform:matrix(0.188281,0.005460,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188281,0.005460,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188281,0.005460,-0.007247,0.249895,0,0);}
.md3_c00028{transform:matrix(0.188561,0.005468,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188561,0.005468,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188561,0.005468,-0.007247,0.249895,0,0);}
.me8_c00028{transform:matrix(0.189026,0.005482,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189026,0.005482,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189026,0.005482,-0.007247,0.249895,0,0);}
.m4c_c00028{transform:matrix(0.189230,0.005488,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189230,0.005488,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189230,0.005488,-0.007247,0.249895,0,0);}
.m27_c00028{transform:matrix(0.189295,0.005490,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189295,0.005490,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189295,0.005490,-0.007247,0.249895,0,0);}
.m29_c00028{transform:matrix(0.189425,0.005493,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189425,0.005493,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189425,0.005493,-0.007247,0.249895,0,0);}
.m21_c00028{transform:matrix(0.189470,0.005495,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189470,0.005495,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189470,0.005495,-0.007247,0.249895,0,0);}
.mb4_c00028{transform:matrix(0.190760,0.005532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190760,0.005532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190760,0.005532,-0.007247,0.249895,0,0);}
.mb5_c00028{transform:matrix(0.191105,0.005542,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191105,0.005542,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191105,0.005542,-0.007247,0.249895,0,0);}
.mac_c00028{transform:matrix(0.191310,0.005548,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191310,0.005548,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191310,0.005548,-0.007247,0.249895,0,0);}
.m83_c00028{transform:matrix(0.191365,0.005550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191365,0.005550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191365,0.005550,-0.007247,0.249895,0,0);}
.ma6_c00028{transform:matrix(0.192119,0.005571,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192119,0.005571,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192119,0.005571,-0.007247,0.249895,0,0);}
.m61_c00028{transform:matrix(0.192124,0.005572,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192124,0.005572,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192124,0.005572,-0.007247,0.249895,0,0);}
.m72_c00028{transform:matrix(0.192359,0.005578,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192359,0.005578,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192359,0.005578,-0.007247,0.249895,0,0);}
.m2a_c00028{transform:matrix(0.193504,0.005612,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193504,0.005612,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193504,0.005612,-0.007247,0.249895,0,0);}
.m71_c00028{transform:matrix(0.193524,0.005612,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193524,0.005612,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193524,0.005612,-0.007247,0.249895,0,0);}
.mce_c00028{transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);}
.md8_c00028{transform:matrix(0.194048,0.005627,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194048,0.005627,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194048,0.005627,-0.007247,0.249895,0,0);}
.m18_c00028{transform:matrix(0.194238,0.005633,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194238,0.005633,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194238,0.005633,-0.007247,0.249895,0,0);}
.m3e_c00028{transform:matrix(0.194273,0.005634,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194273,0.005634,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194273,0.005634,-0.007247,0.249895,0,0);}
.mdb_c00028{transform:matrix(0.194473,0.005640,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194473,0.005640,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194473,0.005640,-0.007247,0.249895,0,0);}
.mbd_c00028{transform:matrix(0.194733,0.005647,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194733,0.005647,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194733,0.005647,-0.007247,0.249895,0,0);}
.m51_c00028{transform:matrix(0.194818,0.005650,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194818,0.005650,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194818,0.005650,-0.007247,0.249895,0,0);}
.mc8_c00028{transform:matrix(0.194848,0.005651,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194848,0.005651,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194848,0.005651,-0.007247,0.249895,0,0);}
.m97_c00028{transform:matrix(0.195438,0.005668,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195438,0.005668,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195438,0.005668,-0.007247,0.249895,0,0);}
.ma0_c00028{transform:matrix(0.195458,0.005668,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195458,0.005668,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195458,0.005668,-0.007247,0.249895,0,0);}
.m95_c00028{transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);}
.m87_c00028{transform:matrix(0.195628,0.005673,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195628,0.005673,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195628,0.005673,-0.007247,0.249895,0,0);}
.m6e_c00028{transform:matrix(0.196073,0.005686,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196073,0.005686,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196073,0.005686,-0.007247,0.249895,0,0);}
.m16_c00028{transform:matrix(0.196277,0.005692,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196277,0.005692,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196277,0.005692,-0.007247,0.249895,0,0);}
.md2_c00028{transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);}
.m7b_c00028{transform:matrix(0.196702,0.005704,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196702,0.005704,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196702,0.005704,-0.007247,0.249895,0,0);}
.m43_c00028{transform:matrix(0.197087,0.005716,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197087,0.005716,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197087,0.005716,-0.007247,0.249895,0,0);}
.ma8_c00028{transform:matrix(0.197352,0.005723,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197352,0.005723,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197352,0.005723,-0.007247,0.249895,0,0);}
.md9_c00028{transform:matrix(0.197982,0.005741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197982,0.005741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197982,0.005741,-0.007247,0.249895,0,0);}
.ma3_c00028{transform:matrix(0.198072,0.005744,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198072,0.005744,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198072,0.005744,-0.007247,0.249895,0,0);}
.m89_c00028{transform:matrix(0.198167,0.005747,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198167,0.005747,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198167,0.005747,-0.007247,0.249895,0,0);}
.mc2_c00028{transform:matrix(0.198267,0.005750,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198267,0.005750,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198267,0.005750,-0.007247,0.249895,0,0);}
.mdf_c00028{transform:matrix(0.198916,0.005769,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198916,0.005769,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198916,0.005769,-0.007247,0.249895,0,0);}
.mcb_c00028{transform:matrix(0.199036,0.005772,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199036,0.005772,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199036,0.005772,-0.007247,0.249895,0,0);}
.m8b_c00028{transform:matrix(0.199301,0.005780,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199301,0.005780,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199301,0.005780,-0.007247,0.249895,0,0);}
.m2c_c00028{transform:matrix(0.199626,0.005789,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199626,0.005789,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199626,0.005789,-0.007247,0.249895,0,0);}
.m6b_c00028{transform:matrix(0.200761,0.005822,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200761,0.005822,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200761,0.005822,-0.007247,0.249895,0,0);}
.m55_c00028{transform:matrix(0.200781,0.005823,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200781,0.005823,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200781,0.005823,-0.007247,0.249895,0,0);}
.mb9_c00028{transform:matrix(0.201330,0.005839,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201330,0.005839,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201330,0.005839,-0.007247,0.249895,0,0);}
.me7_c00028{transform:matrix(0.201605,0.005847,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201605,0.005847,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201605,0.005847,-0.007247,0.249895,0,0);}
.md0_c00028{transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);}
.m1f_c00028{transform:matrix(0.202100,0.005861,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202100,0.005861,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202100,0.005861,-0.007247,0.249895,0,0);}
.m76_c00028{transform:matrix(0.202180,0.005863,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202180,0.005863,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202180,0.005863,-0.007247,0.249895,0,0);}
.m37_c00028{transform:matrix(0.202865,0.005883,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202865,0.005883,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202865,0.005883,-0.007247,0.249895,0,0);}
.m4f_c00028{transform:matrix(0.203050,0.005888,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203050,0.005888,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203050,0.005888,-0.007247,0.249895,0,0);}
.m2d_c00028{transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);}
.m78_c00028{transform:matrix(0.203360,0.005897,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203360,0.005897,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203360,0.005897,-0.007247,0.249895,0,0);}
.mbe_c00028{transform:matrix(0.203439,0.005900,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203439,0.005900,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203439,0.005900,-0.007247,0.249895,0,0);}
.m23_c00028{transform:matrix(0.203704,0.005907,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203704,0.005907,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203704,0.005907,-0.007247,0.249895,0,0);}
.m64_c00028{transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);}
.me1_c00028{transform:matrix(0.203889,0.005913,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203889,0.005913,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203889,0.005913,-0.007247,0.249895,0,0);}
.m9a_c00028{transform:matrix(0.204624,0.005934,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204624,0.005934,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204624,0.005934,-0.007247,0.249895,0,0);}
.m40_c00028{transform:matrix(0.204764,0.005938,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204764,0.005938,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204764,0.005938,-0.007247,0.249895,0,0);}
.m88_c00028{transform:matrix(0.204809,0.005939,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204809,0.005939,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204809,0.005939,-0.007247,0.249895,0,0);}
.m98_c00028{transform:matrix(0.205014,0.005945,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205014,0.005945,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205014,0.005945,-0.007247,0.249895,0,0);}
.mb2_c00028{transform:matrix(0.205364,0.005956,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205364,0.005956,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205364,0.005956,-0.007247,0.249895,0,0);}
.m4b_c00028{transform:matrix(0.205629,0.005963,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205629,0.005963,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205629,0.005963,-0.007247,0.249895,0,0);}
.mbc_c00028{transform:matrix(0.205644,0.005964,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205644,0.005964,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205644,0.005964,-0.007247,0.249895,0,0);}
.m5e_c00028{transform:matrix(0.205778,0.005968,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205778,0.005968,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205778,0.005968,-0.007247,0.249895,0,0);}
.m75_c00028{transform:matrix(0.206238,0.005981,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206238,0.005981,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206238,0.005981,-0.007247,0.249895,0,0);}
.m49_c00028{transform:matrix(0.206508,0.005989,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206508,0.005989,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206508,0.005989,-0.007247,0.249895,0,0);}
.mc4_c00028{transform:matrix(0.207123,0.006007,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207123,0.006007,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207123,0.006007,-0.007247,0.249895,0,0);}
.m68_c00028{transform:matrix(0.207528,0.006018,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207528,0.006018,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207528,0.006018,-0.007247,0.249895,0,0);}
.m39_c00028{transform:matrix(0.207723,0.006024,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207723,0.006024,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207723,0.006024,-0.007247,0.249895,0,0);}
.m9f_c00028{transform:matrix(0.208257,0.006039,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208257,0.006039,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208257,0.006039,-0.007247,0.249895,0,0);}
.md4_c00028{transform:matrix(0.208352,0.006042,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208352,0.006042,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208352,0.006042,-0.007247,0.249895,0,0);}
.m7c_c00028{transform:matrix(0.208972,0.006060,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208972,0.006060,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208972,0.006060,-0.007247,0.249895,0,0);}
.m7a_c00028{transform:matrix(0.209577,0.006078,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209577,0.006078,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209577,0.006078,-0.007247,0.249895,0,0);}
.ma_c00028{transform:matrix(0.209622,0.006079,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209622,0.006079,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209622,0.006079,-0.007247,0.249895,0,0);}
.mc5_c00028{transform:matrix(0.209902,0.006087,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209902,0.006087,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209902,0.006087,-0.007247,0.249895,0,0);}
.m99_c00028{transform:matrix(0.210362,0.006100,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210362,0.006100,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210362,0.006100,-0.007247,0.249895,0,0);}
.m14_c00028{transform:matrix(0.211086,0.006122,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211086,0.006122,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211086,0.006122,-0.007247,0.249895,0,0);}
.mc0_c00028{transform:matrix(0.212281,0.006156,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212281,0.006156,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212281,0.006156,-0.007247,0.249895,0,0);}
.m9b_c00028{transform:matrix(0.212551,0.006164,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212551,0.006164,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212551,0.006164,-0.007247,0.249895,0,0);}
.m28_c00028{transform:matrix(0.212696,0.006168,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212696,0.006168,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212696,0.006168,-0.007247,0.249895,0,0);}
.mb7_c00028{transform:matrix(0.213270,0.006185,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213270,0.006185,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213270,0.006185,-0.007247,0.249895,0,0);}
.mc3_c00028{transform:matrix(0.214740,0.006227,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214740,0.006227,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214740,0.006227,-0.007247,0.249895,0,0);}
.m4_c00028{transform:matrix(0.214915,0.006233,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214915,0.006233,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214915,0.006233,-0.007247,0.249895,0,0);}
.m79_c00028{transform:matrix(0.215190,0.006240,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215190,0.006240,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215190,0.006240,-0.007247,0.249895,0,0);}
.m69_c00028{transform:matrix(0.215869,0.006260,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215869,0.006260,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215869,0.006260,-0.007247,0.249895,0,0);}
.m8c_c00028{transform:matrix(0.216114,0.006267,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216114,0.006267,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216114,0.006267,-0.007247,0.249895,0,0);}
.m7d_c00028{transform:matrix(0.217763,0.006315,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217763,0.006315,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217763,0.006315,-0.007247,0.249895,0,0);}
.m3a_c00028{transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);}
.m5c_c00028{transform:matrix(0.218588,0.006339,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218588,0.006339,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218588,0.006339,-0.007247,0.249895,0,0);}
.m4a_c00028{transform:matrix(0.221102,0.006412,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221102,0.006412,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221102,0.006412,-0.007247,0.249895,0,0);}
.mc9_c00028{transform:matrix(0.221992,0.006438,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221992,0.006438,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221992,0.006438,-0.007247,0.249895,0,0);}
.maf_c00028{transform:matrix(0.222077,0.006440,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222077,0.006440,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222077,0.006440,-0.007247,0.249895,0,0);}
.m24_c00028{transform:matrix(0.222686,0.006458,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222686,0.006458,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222686,0.006458,-0.007247,0.249895,0,0);}
.mbf_c00028{transform:matrix(0.223376,0.006478,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223376,0.006478,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223376,0.006478,-0.007247,0.249895,0,0);}
.m38_c00028{transform:matrix(0.223401,0.006479,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223401,0.006479,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223401,0.006479,-0.007247,0.249895,0,0);}
.m9e_c00028{transform:matrix(0.224396,0.006507,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224396,0.006507,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224396,0.006507,-0.007247,0.249895,0,0);}
.m30_c00028{transform:matrix(0.224471,0.006510,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224471,0.006510,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224471,0.006510,-0.007247,0.249895,0,0);}
.md7_c00028{transform:matrix(0.224486,0.006510,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224486,0.006510,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224486,0.006510,-0.007247,0.249895,0,0);}
.mc1_c00028{transform:matrix(0.225375,0.006536,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225375,0.006536,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225375,0.006536,-0.007247,0.249895,0,0);}
.mde_c00028{transform:matrix(0.225440,0.006538,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225440,0.006538,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225440,0.006538,-0.007247,0.249895,0,0);}
.m26_c00028{transform:matrix(0.227454,0.006596,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227454,0.006596,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227454,0.006596,-0.007247,0.249895,0,0);}
.m3c_c00028{transform:matrix(0.227459,0.006596,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227459,0.006596,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227459,0.006596,-0.007247,0.249895,0,0);}
.m7e_c00028{transform:matrix(0.227944,0.006610,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227944,0.006610,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227944,0.006610,-0.007247,0.249895,0,0);}
.m9d_c00028{transform:matrix(0.228194,0.006618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228194,0.006618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228194,0.006618,-0.007247,0.249895,0,0);}
.m9c_c00028{transform:matrix(0.229349,0.006651,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229349,0.006651,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229349,0.006651,-0.007247,0.249895,0,0);}
.m74_c00028{transform:matrix(0.229359,0.006651,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229359,0.006651,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229359,0.006651,-0.007247,0.249895,0,0);}
.m52_c00028{transform:matrix(0.231053,0.006701,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231053,0.006701,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231053,0.006701,-0.007247,0.249895,0,0);}
.m7_c00028{transform:matrix(0.231668,0.006718,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231668,0.006718,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231668,0.006718,-0.007247,0.249895,0,0);}
.md6_c00028{transform:matrix(0.233507,0.006772,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233507,0.006772,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233507,0.006772,-0.007247,0.249895,0,0);}
.m3b_c00028{transform:matrix(0.234187,0.006791,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234187,0.006791,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234187,0.006791,-0.007247,0.249895,0,0);}
.m1_c00028{transform:matrix(0.234946,0.006813,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234946,0.006813,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234946,0.006813,-0.007247,0.249895,0,0);}
.ma4_c00028{transform:matrix(0.235326,0.006824,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235326,0.006824,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235326,0.006824,-0.007247,0.249895,0,0);}
.mb0_c00028{transform:matrix(0.235436,0.006828,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235436,0.006828,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235436,0.006828,-0.007247,0.249895,0,0);}
.m53_c00028{transform:matrix(0.236511,0.006859,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236511,0.006859,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236511,0.006859,-0.007247,0.249895,0,0);}
.m34_c00028{transform:matrix(0.239454,0.006944,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239454,0.006944,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239454,0.006944,-0.007247,0.249895,0,0);}
.md5_c00028{transform:matrix(0.243363,0.007058,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243363,0.007058,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243363,0.007058,-0.007247,0.249895,0,0);}
.m8a_c00028{transform:matrix(0.245432,0.007118,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245432,0.007118,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245432,0.007118,-0.007247,0.249895,0,0);}
.m57_c00028{transform:matrix(0.251389,0.007290,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251389,0.007290,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251389,0.007290,-0.007247,0.249895,0,0);}
.m5_c00028{transform:matrix(0.251829,0.007303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251829,0.007303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251829,0.007303,-0.007247,0.249895,0,0);}
.ma7_c00028{transform:matrix(0.252489,0.007322,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252489,0.007322,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252489,0.007322,-0.007247,0.249895,0,0);}
.m2f_c00028{transform:matrix(0.253254,0.007344,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253254,0.007344,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253254,0.007344,-0.007247,0.249895,0,0);}
.m31_c00028{transform:matrix(0.253703,0.007357,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253703,0.007357,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253703,0.007357,-0.007247,0.249895,0,0);}
.m33_c00028{transform:matrix(0.256707,0.007445,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256707,0.007445,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256707,0.007445,-0.007247,0.249895,0,0);}
.m2e_c00028{transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);}
.m36_c00028{transform:matrix(0.273190,0.007923,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273190,0.007923,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273190,0.007923,-0.007247,0.249895,0,0);}
.m6c_c00028{transform:matrix(0.291547,0.008455,-0.007247,0.249895,0,0);-ms-transform:matrix(0.291547,0.008455,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.291547,0.008455,-0.007247,0.249895,0,0);}
.m67_c00028{transform:matrix(0.314288,0.009114,-0.007247,0.249895,0,0);-ms-transform:matrix(0.314288,0.009114,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.314288,0.009114,-0.007247,0.249895,0,0);}
.m32_c00028{transform:matrix(0.319851,0.009276,-0.007247,0.249895,0,0);-ms-transform:matrix(0.319851,0.009276,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.319851,0.009276,-0.007247,0.249895,0,0);}
.m8_c00028{transform:matrix(0.334724,0.009707,-0.007247,0.249895,0,0);-ms-transform:matrix(0.334724,0.009707,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.334724,0.009707,-0.007247,0.249895,0,0);}
.m35_c00028{transform:matrix(0.341346,0.009899,-0.007247,0.249895,0,0);-ms-transform:matrix(0.341346,0.009899,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.341346,0.009899,-0.007247,0.249895,0,0);}
.m70_c00028{transform:matrix(0.357145,0.010357,-0.007247,0.249895,0,0);-ms-transform:matrix(0.357145,0.010357,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.357145,0.010357,-0.007247,0.249895,0,0);}
.ma5_c00028{transform:matrix(0.438930,0.012729,-0.007247,0.249895,0,0);-ms-transform:matrix(0.438930,0.012729,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.438930,0.012729,-0.007247,0.249895,0,0);}
.m6f_c00028{transform:matrix(0.644649,0.018695,-0.007247,0.249895,0,0);-ms-transform:matrix(0.644649,0.018695,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.644649,0.018695,-0.007247,0.249895,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:0.000000px;}
.fc0_c00028{color:transparent;}
.fs5_c00028{font-size:54.622954px;}
.fsc_c00028{font-size:55.673396px;}
.fs6_c00028{font-size:57.774279px;}
.fs10_c00028{font-size:58.824720px;}
.fsf_c00028{font-size:59.875162px;}
.fs3_c00028{font-size:60.925603px;}
.fsb_c00028{font-size:61.976045px;}
.fsd_c00028{font-size:63.026486px;}
.fs4_c00028{font-size:64.076927px;}
.fs7_c00028{font-size:65.127369px;}
.fs8_c00028{font-size:66.177810px;}
.fs2_c00028{font-size:67.228252px;}
.fs1_c00028{font-size:68.278693px;}
.fs9_c00028{font-size:69.329135px;}
.fsa_c00028{font-size:70.379576px;}
.fse_c00028{font-size:73.530900px;}
.fs0_c00028{font-size:128.153855px;}
.y0_c00028{bottom:0.000000px;}
.yeb_c00028{bottom:42.419643px;}
.yea_c00028{bottom:43.377504px;}
.ye9_c00028{bottom:44.520234px;}
.ye8_c00028{bottom:46.427604px;}
.ye7_c00028{bottom:47.211361px;}
.ye6_c00028{bottom:48.819918px;}
.ye5_c00028{bottom:50.003797px;}
.ye4_c00028{bottom:61.161240px;}
.ye3_c00028{bottom:61.856598px;}
.ye2_c00028{bottom:62.739198px;}
.ye1_c00028{bottom:63.676150px;}
.ye0_c00028{bottom:64.340188px;}
.ydf_c00028{bottom:65.264830px;}
.yde_c00028{bottom:66.355749px;}
.ydd_c00028{bottom:68.102353px;}
.ydc_c00028{bottom:77.345590px;}
.ydb_c00028{bottom:78.304299px;}
.yda_c00028{bottom:80.728998px;}
.yd9_c00028{bottom:81.888448px;}
.yd8_c00028{bottom:82.687981px;}
.yd7_c00028{bottom:84.127501px;}
.yd6_c00028{bottom:84.843792px;}
.yd5_c00028{bottom:91.798452px;}
.yd4_c00028{bottom:92.460769px;}
.yd3_c00028{bottom:95.000430px;}
.yd2_c00028{bottom:95.586912px;}
.yd1_c00028{bottom:96.067959px;}
.yd0_c00028{bottom:98.931079px;}
.ycf_c00028{bottom:99.665253px;}
.yce_c00028{bottom:100.091146px;}
.ycd_c00028{bottom:101.056242px;}
.ycc_c00028{bottom:108.550663px;}
.ycb_c00028{bottom:110.207421px;}
.yca_c00028{bottom:111.066018px;}
.yc9_c00028{bottom:111.932814px;}
.yc8_c00028{bottom:115.702312px;}
.yc7_c00028{bottom:118.889974px;}
.yc6_c00028{bottom:128.732835px;}
.yc5_c00028{bottom:130.397328px;}
.yc4_c00028{bottom:132.592573px;}
.yc3_c00028{bottom:134.552949px;}
.yc2_c00028{bottom:135.157438px;}
.yc1_c00028{bottom:136.169003px;}
.yc0_c00028{bottom:143.555040px;}
.ybf_c00028{bottom:144.254464px;}
.ybe_c00028{bottom:146.067601px;}
.ybd_c00028{bottom:146.658648px;}
.ybc_c00028{bottom:147.952512px;}
.ybb_c00028{bottom:148.465825px;}
.yba_c00028{bottom:151.238077px;}
.yb9_c00028{bottom:151.835344px;}
.yb8_c00028{bottom:162.461512px;}
.yb7_c00028{bottom:163.688149px;}
.yb6_c00028{bottom:164.162643px;}
.yb5_c00028{bottom:164.946085px;}
.yb4_c00028{bottom:165.452683px;}
.yb3_c00028{bottom:168.208598px;}
.yb2_c00028{bottom:169.931065px;}
.yb1_c00028{bottom:178.071142px;}
.yb0_c00028{bottom:178.693098px;}
.yaf_c00028{bottom:179.713081px;}
.yae_c00028{bottom:182.071084px;}
.yad_c00028{bottom:183.547579px;}
.yac_c00028{bottom:184.397030px;}
.yab_c00028{bottom:186.143146px;}
.yaa_c00028{bottom:194.937235px;}
.ya9_c00028{bottom:195.814338px;}
.ya8_c00028{bottom:196.420365px;}
.ya7_c00028{bottom:198.777183px;}
.ya6_c00028{bottom:199.534624px;}
.ya5_c00028{bottom:202.306972px;}
.ya4_c00028{bottom:204.240952px;}
.ya3_c00028{bottom:212.547096px;}
.ya2_c00028{bottom:213.303252px;}
.ya1_c00028{bottom:215.000953px;}
.ya0_c00028{bottom:217.338330px;}
.y9f_c00028{bottom:217.837293px;}
.y9e_c00028{bottom:218.775706px;}
.y9d_c00028{bottom:219.364548px;}
.y9c_c00028{bottom:227.427667px;}
.y9b_c00028{bottom:228.404214px;}
.y9a_c00028{bottom:228.752319px;}
.y99_c00028{bottom:231.292554px;}
.y98_c00028{bottom:233.283424px;}
.y97_c00028{bottom:236.214739px;}
.y96_c00028{bottom:236.926129px;}
.y95_c00028{bottom:246.874390px;}
.y94_c00028{bottom:248.337643px;}
.y93_c00028{bottom:250.426470px;}
.y92_c00028{bottom:251.594923px;}
.y91_c00028{bottom:252.189960px;}
.y90_c00028{bottom:253.951884px;}
.y8f_c00028{bottom:254.752936px;}
.y8e_c00028{bottom:263.401843px;}
.y8d_c00028{bottom:266.440720px;}
.y8c_c00028{bottom:268.945674px;}
.y8b_c00028{bottom:270.013042px;}
.y8a_c00028{bottom:272.312226px;}
.y89_c00028{bottom:281.422756px;}
.y88_c00028{bottom:282.130729px;}
.y87_c00028{bottom:283.681410px;}
.y86_c00028{bottom:284.267262px;}
.y85_c00028{bottom:285.212625px;}
.y84_c00028{bottom:286.945845px;}
.y83_c00028{bottom:287.499943px;}
.y82_c00028{bottom:288.408420px;}
.y81_c00028{bottom:289.327554px;}
.y80_c00028{bottom:296.308590px;}
.y7f_c00028{bottom:297.772381px;}
.y7e_c00028{bottom:300.749091px;}
.y7d_c00028{bottom:301.530613px;}
.y7c_c00028{bottom:302.283364px;}
.y7b_c00028{bottom:304.926670px;}
.y7a_c00028{bottom:306.473035px;}
.y79_c00028{bottom:307.164829px;}
.y78_c00028{bottom:315.293436px;}
.y77_c00028{bottom:316.838562px;}
.y76_c00028{bottom:318.116310px;}
.y75_c00028{bottom:318.584661px;}
.y74_c00028{bottom:318.920922px;}
.y73_c00028{bottom:321.511741px;}
.y72_c00028{bottom:321.868491px;}
.y71_c00028{bottom:323.092059px;}
.y70_c00028{bottom:329.917576px;}
.y6f_c00028{bottom:330.718441px;}
.y6e_c00028{bottom:332.139823px;}
.y6d_c00028{bottom:335.257917px;}
.y6c_c00028{bottom:337.681131px;}
.y6b_c00028{bottom:346.208718px;}
.y6a_c00028{bottom:347.062486px;}
.y69_c00028{bottom:349.970824px;}
.y68_c00028{bottom:350.444959px;}
.y67_c00028{bottom:351.290616px;}
.y66_c00028{bottom:351.795373px;}
.y65_c00028{bottom:354.119373px;}
.y64_c00028{bottom:354.965029px;}
.y63_c00028{bottom:365.999956px;}
.y62_c00028{bottom:367.665723px;}
.y61_c00028{bottom:368.675506px;}
.y60_c00028{bottom:369.072768px;}
.y5f_c00028{bottom:370.686960px;}
.y5e_c00028{bottom:371.709404px;}
.y5d_c00028{bottom:380.287298px;}
.y5c_c00028{bottom:381.302538px;}
.y5b_c00028{bottom:383.010658px;}
.y5a_c00028{bottom:384.331576px;}
.y59_c00028{bottom:384.789777px;}
.y58_c00028{bottom:385.961522px;}
.y57_c00028{bottom:386.583056px;}
.y56_c00028{bottom:387.108447px;}
.y55_c00028{bottom:398.953451px;}
.y54_c00028{bottom:399.410717px;}
.y53_c00028{bottom:400.495987px;}
.y52_c00028{bottom:401.769550px;}
.y51_c00028{bottom:402.487546px;}
.y50_c00028{bottom:402.999543px;}
.y4f_c00028{bottom:403.975745px;}
.y4e_c00028{bottom:404.435904px;}
.y4d_c00028{bottom:405.206433px;}
.y4c_c00028{bottom:415.094214px;}
.y4b_c00028{bottom:415.677114px;}
.y4a_c00028{bottom:416.842653px;}
.y49_c00028{bottom:417.521299px;}
.y48_c00028{bottom:419.183931px;}
.y47_c00028{bottom:419.804025px;}
.y46_c00028{bottom:420.705204px;}
.y45_c00028{bottom:421.955702px;}
.y44_c00028{bottom:432.248391px;}
.y43_c00028{bottom:432.742907px;}
.y42_c00028{bottom:433.956613px;}
.y41_c00028{bottom:435.743607px;}
.y40_c00028{bottom:436.101267px;}
.y3f_c00028{bottom:436.537677px;}
.y3e_c00028{bottom:437.887239px;}
.y3d_c00028{bottom:446.353660px;}
.y3c_c00028{bottom:446.852440px;}
.y3b_c00028{bottom:448.514344px;}
.y3a_c00028{bottom:449.995698px;}
.y39_c00028{bottom:450.994171px;}
.y38_c00028{bottom:452.733745px;}
.y37_c00028{bottom:454.367830px;}
.y36_c00028{bottom:464.295231px;}
.y35_c00028{bottom:465.813416px;}
.y34_c00028{bottom:466.843882px;}
.y33_c00028{bottom:467.471355px;}
.y32_c00028{bottom:468.389670px;}
.y31_c00028{bottom:468.841715px;}
.y30_c00028{bottom:471.380904px;}
.y2f_c00028{bottom:479.484507px;}
.y2e_c00028{bottom:482.554751px;}
.y2d_c00028{bottom:484.752579px;}
.y2c_c00028{bottom:485.491242px;}
.y2b_c00028{bottom:486.276946px;}
.y2a_c00028{bottom:488.673729px;}
.y29_c00028{bottom:498.305132px;}
.y28_c00028{bottom:499.252012px;}
.y27_c00028{bottom:500.263398px;}
.y26_c00028{bottom:503.576841px;}
.y25_c00028{bottom:504.123735px;}
.y24_c00028{bottom:505.601004px;}
.y23_c00028{bottom:506.496843px;}
.y22_c00028{bottom:515.331946px;}
.y21_c00028{bottom:516.634845px;}
.y20_c00028{bottom:517.060684px;}
.y1f_c00028{bottom:518.646947px;}
.y1e_c00028{bottom:519.230311px;}
.y1d_c00028{bottom:521.173882px;}
.y1c_c00028{bottom:521.622253px;}
.y1b_c00028{bottom:523.241726px;}
.y1a_c00028{bottom:530.416800px;}
.y19_c00028{bottom:532.795749px;}
.y18_c00028{bottom:533.386870px;}
.y17_c00028{bottom:535.585482px;}
.y16_c00028{bottom:536.495283px;}
.y15_c00028{bottom:537.513369px;}
.y14_c00028{bottom:539.992578px;}
.y13_c00028{bottom:548.959176px;}
.y12_c00028{bottom:549.890020px;}
.y11_c00028{bottom:551.330020px;}
.y10_c00028{bottom:551.887683px;}
.yf_c00028{bottom:553.097196px;}
.ye_c00028{bottom:553.554015px;}
.yd_c00028{bottom:554.091231px;}
.yc_c00028{bottom:555.653326px;}
.yb_c00028{bottom:565.293732px;}
.ya_c00028{bottom:565.793652px;}
.y9_c00028{bottom:566.071553px;}
.y8_c00028{bottom:568.092855px;}
.y7_c00028{bottom:568.539178px;}
.y6_c00028{bottom:568.980195px;}
.y5_c00028{bottom:570.665694px;}
.y4_c00028{bottom:571.225976px;}
.y3_c00028{bottom:572.130673px;}
.y2_c00028{bottom:581.778054px;}
.y1_c00028{bottom:584.280000px;}
.h7_c00028{height:54.622954px;}
.he_c00028{height:55.673396px;}
.h8_c00028{height:57.774279px;}
.h12_c00028{height:58.824720px;}
.h11_c00028{height:59.875162px;}
.h5_c00028{height:60.925603px;}
.hd_c00028{height:61.976045px;}
.hf_c00028{height:63.026486px;}
.h6_c00028{height:64.076927px;}
.h9_c00028{height:65.127369px;}
.ha_c00028{height:66.177810px;}
.h4_c00028{height:67.228252px;}
.h3_c00028{height:68.278693px;}
.hb_c00028{height:69.329135px;}
.hc_c00028{height:70.379576px;}
.h10_c00028{height:73.530900px;}
.h2_c00028{height:128.153855px;}
.h1_c00028{height:615.750000px;}
.h0_c00028{height:615.870000px;}
.w0_c00028{width:367.200000px;}
.w1_c00028{width:367.500000px;}
.x0_c00028{left:0.000000px;}
.x49_c00028{left:22.693332px;}
.x73_c00028{left:23.754791px;}
.x36_c00028{left:24.768172px;}
.x1f_c00028{left:26.455723px;}
.x3_c00028{left:28.054348px;}
.x77_c00028{left:29.870919px;}
.x65_c00028{left:35.239153px;}
.x55_c00028{left:41.890377px;}
.x41_c00028{left:45.834930px;}
.x62_c00028{left:48.555892px;}
.x4a_c00028{left:49.990266px;}
.x20_c00028{left:51.341677px;}
.x58_c00028{left:53.846490px;}
.x3b_c00028{left:58.316215px;}
.x70_c00028{left:63.137253px;}
.x4_c00028{left:64.220524px;}
.x45_c00028{left:66.981600px;}
.x78_c00028{left:68.054201px;}
.x37_c00028{left:71.098369px;}
.x1_c00028{left:73.416000px;}
.x19_c00028{left:76.611637px;}
.x3c_c00028{left:78.325195px;}
.x50_c00028{left:80.644698px;}
.x59_c00028{left:82.222510px;}
.x2e_c00028{left:84.173904px;}
.x5_c00028{left:86.646634px;}
.x6a_c00028{left:89.145786px;}
.x1a_c00028{left:90.209071px;}
.xc_c00028{left:92.618397px;}
.x24_c00028{left:96.787438px;}
.x5a_c00028{left:99.517488px;}
.x13_c00028{left:100.622769px;}
.x38_c00028{left:104.451283px;}
.x63_c00028{left:106.041048px;}
.x21_c00028{left:107.577280px;}
.x33_c00028{left:110.730783px;}
.x5d_c00028{left:113.086816px;}
.xd_c00028{left:115.025659px;}
.x66_c00028{left:116.355106px;}
.x42_c00028{left:117.559738px;}
.x25_c00028{left:119.894589px;}
.x4b_c00028{left:124.951416px;}
.x34_c00028{left:127.774741px;}
.x29_c00028{left:128.817156px;}
.x14_c00028{left:130.552419px;}
.xe_c00028{left:134.039400px;}
.x43_c00028{left:135.896370px;}
.x6d_c00028{left:137.382260px;}
.x26_c00028{left:141.638457px;}
.x3d_c00028{left:142.998418px;}
.x79_c00028{left:145.215720px;}
.x2a_c00028{left:146.889744px;}
.x1b_c00028{left:149.101242px;}
.x46_c00028{left:150.785236px;}
.x6_c00028{left:154.085464px;}
.x15_c00028{left:157.317547px;}
.x2_c00028{left:159.690000px;}
.x67_c00028{left:162.506104px;}
.x56_c00028{left:165.469009px;}
.x1c_c00028{left:166.784197px;}
.x4c_c00028{left:168.514893px;}
.x75_c00028{left:169.527437px;}
.x7_c00028{left:171.726009px;}
.x51_c00028{left:173.192895px;}
.x3e_c00028{left:174.227856px;}
.x71_c00028{left:179.416881px;}
.x2f_c00028{left:181.954231px;}
.x5b_c00028{left:183.237223px;}
.xf_c00028{left:184.443708px;}
.x8_c00028{left:189.549554px;}
.x6b_c00028{left:191.217702px;}
.x47_c00028{left:192.852826px;}
.x5f_c00028{left:194.563765px;}
.x72_c00028{left:196.171967px;}
.x6e_c00028{left:197.628019px;}
.x22_c00028{left:199.625619px;}
.x76_c00028{left:200.749023px;}
.x52_c00028{left:201.921721px;}
.x27_c00028{left:206.295604px;}
.x10_c00028{left:207.659557px;}
.x2b_c00028{left:208.734421px;}
.x6c_c00028{left:209.980789px;}
.x35_c00028{left:212.845947px;}
.x1d_c00028{left:214.856629px;}
.x6f_c00028{left:217.335954px;}
.x16_c00028{left:222.001695px;}
.x1e_c00028{left:227.780650px;}
.x3f_c00028{left:229.584469px;}
.x30_c00028{left:234.847254px;}
.x68_c00028{left:236.206710px;}
.x17_c00028{left:239.382672px;}
.x7a_c00028{left:243.610022px;}
.x5e_c00028{left:245.925316px;}
.x53_c00028{left:247.535026px;}
.x2c_c00028{left:249.962206px;}
.x23_c00028{left:254.003070px;}
.x4e_c00028{left:256.259035px;}
.x39_c00028{left:257.319157px;}
.x57_c00028{left:259.447081px;}
.x64_c00028{left:260.649854px;}
.x48_c00028{left:262.251375px;}
.x11_c00028{left:267.668257px;}
.x60_c00028{left:269.267934px;}
.x9_c00028{left:270.431449px;}
.x5c_c00028{left:272.108980px;}
.x74_c00028{left:275.293671px;}
.x40_c00028{left:276.791691px;}
.x3a_c00028{left:278.920419px;}
.xa_c00028{left:281.567254px;}
.x4f_c00028{left:282.943252px;}
.x69_c00028{left:287.493229px;}
.x31_c00028{left:294.224994px;}
.x28_c00028{left:296.584011px;}
.x44_c00028{left:297.666118px;}
.xb_c00028{left:301.549560px;}
.x54_c00028{left:302.730636px;}
.x4d_c00028{left:305.170476px;}
.x12_c00028{left:306.444369px;}
.x61_c00028{left:308.215779px;}
.x18_c00028{left:309.353536px;}
.x2d_c00028{left:310.699753px;}
.x32_c00028{left:312.045516px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
.fs5_c00028{font-size:48.553737pt;}
.fsc_c00028{font-size:49.487463pt;}
.fs6_c00028{font-size:51.354914pt;}
.fs10_c00028{font-size:52.288640pt;}
.fsf_c00028{font-size:53.222366pt;}
.fs3_c00028{font-size:54.156092pt;}
.fsb_c00028{font-size:55.089817pt;}
.fsd_c00028{font-size:56.023543pt;}
.fs4_c00028{font-size:56.957269pt;}
.fs7_c00028{font-size:57.890994pt;}
.fs8_c00028{font-size:58.824720pt;}
.fs2_c00028{font-size:59.758446pt;}
.fs1_c00028{font-size:60.692172pt;}
.fs9_c00028{font-size:61.625897pt;}
.fsa_c00028{font-size:62.559623pt;}
.fse_c00028{font-size:65.360800pt;}
.fs0_c00028{font-size:113.914538pt;}
.y0_c00028{bottom:0.000000pt;}
.yeb_c00028{bottom:37.706349pt;}
.yea_c00028{bottom:38.557781pt;}
.ye9_c00028{bottom:39.573541pt;}
.ye8_c00028{bottom:41.268981pt;}
.ye7_c00028{bottom:41.965655pt;}
.ye6_c00028{bottom:43.395483pt;}
.ye5_c00028{bottom:44.447820pt;}
.ye4_c00028{bottom:54.365547pt;}
.ye3_c00028{bottom:54.983643pt;}
.ye2_c00028{bottom:55.768176pt;}
.ye1_c00028{bottom:56.601023pt;}
.ye0_c00028{bottom:57.191279pt;}
.ydf_c00028{bottom:58.013183pt;}
.yde_c00028{bottom:58.982888pt;}
.ydd_c00028{bottom:60.535425pt;}
.ydc_c00028{bottom:68.751636pt;}
.ydb_c00028{bottom:69.603821pt;}
.yda_c00028{bottom:71.759109pt;}
.yd9_c00028{bottom:72.789732pt;}
.yd8_c00028{bottom:73.500428pt;}
.yd7_c00028{bottom:74.780001pt;}
.yd6_c00028{bottom:75.416704pt;}
.yd5_c00028{bottom:81.598624pt;}
.yd4_c00028{bottom:82.187351pt;}
.yd3_c00028{bottom:84.444827pt;}
.yd2_c00028{bottom:84.966144pt;}
.yd1_c00028{bottom:85.393741pt;}
.yd0_c00028{bottom:87.938737pt;}
.ycf_c00028{bottom:88.591336pt;}
.yce_c00028{bottom:88.969908pt;}
.ycd_c00028{bottom:89.827771pt;}
.ycc_c00028{bottom:96.489479pt;}
.ycb_c00028{bottom:97.962152pt;}
.yca_c00028{bottom:98.725349pt;}
.yc9_c00028{bottom:99.495835pt;}
.yc8_c00028{bottom:102.846500pt;}
.yc7_c00028{bottom:105.679977pt;}
.yc6_c00028{bottom:114.429187pt;}
.yc5_c00028{bottom:115.908736pt;}
.yc4_c00028{bottom:117.860065pt;}
.yc3_c00028{bottom:119.602621pt;}
.yc2_c00028{bottom:120.139945pt;}
.yc1_c00028{bottom:121.039113pt;}
.yc0_c00028{bottom:127.604480pt;}
.ybf_c00028{bottom:128.226191pt;}
.ybe_c00028{bottom:129.837868pt;}
.ybd_c00028{bottom:130.363243pt;}
.ybc_c00028{bottom:131.513344pt;}
.ybb_c00028{bottom:131.969623pt;}
.yba_c00028{bottom:134.433847pt;}
.yb9_c00028{bottom:134.964751pt;}
.yb8_c00028{bottom:144.410233pt;}
.yb7_c00028{bottom:145.500577pt;}
.yb6_c00028{bottom:145.922349pt;}
.yb5_c00028{bottom:146.618743pt;}
.yb4_c00028{bottom:147.069052pt;}
.yb3_c00028{bottom:149.518753pt;}
.yb2_c00028{bottom:151.049836pt;}
.yb1_c00028{bottom:158.285460pt;}
.yb0_c00028{bottom:158.838309pt;}
.yaf_c00028{bottom:159.744961pt;}
.yae_c00028{bottom:161.840964pt;}
.yad_c00028{bottom:163.153404pt;}
.yac_c00028{bottom:163.908471pt;}
.yab_c00028{bottom:165.460575pt;}
.yaa_c00028{bottom:173.277543pt;}
.ya9_c00028{bottom:174.057189pt;}
.ya8_c00028{bottom:174.595880pt;}
.ya7_c00028{bottom:176.690829pt;}
.ya6_c00028{bottom:177.364111pt;}
.ya5_c00028{bottom:179.828420pt;}
.ya4_c00028{bottom:181.547513pt;}
.ya3_c00028{bottom:188.930752pt;}
.ya2_c00028{bottom:189.602891pt;}
.ya1_c00028{bottom:191.111959pt;}
.ya0_c00028{bottom:193.189627pt;}
.y9f_c00028{bottom:193.633149pt;}
.y9e_c00028{bottom:194.467295pt;}
.y9d_c00028{bottom:194.990709pt;}
.y9c_c00028{bottom:202.157927pt;}
.y9b_c00028{bottom:203.025968pt;}
.y9a_c00028{bottom:203.335395pt;}
.y99_c00028{bottom:205.593381pt;}
.y98_c00028{bottom:207.363044pt;}
.y97_c00028{bottom:209.968657pt;}
.y96_c00028{bottom:210.601004pt;}
.y95_c00028{bottom:219.443903pt;}
.y94_c00028{bottom:220.744572pt;}
.y93_c00028{bottom:222.601307pt;}
.y92_c00028{bottom:223.639932pt;}
.y91_c00028{bottom:224.168853pt;}
.y90_c00028{bottom:225.735008pt;}
.y8f_c00028{bottom:226.447055pt;}
.y8e_c00028{bottom:234.134972pt;}
.y8d_c00028{bottom:236.836196pt;}
.y8c_c00028{bottom:239.062821pt;}
.y8b_c00028{bottom:240.011593pt;}
.y8a_c00028{bottom:242.055312pt;}
.y89_c00028{bottom:250.153561pt;}
.y88_c00028{bottom:250.782871pt;}
.y87_c00028{bottom:252.161253pt;}
.y86_c00028{bottom:252.682011pt;}
.y85_c00028{bottom:253.522333pt;}
.y84_c00028{bottom:255.062973pt;}
.y83_c00028{bottom:255.555505pt;}
.y82_c00028{bottom:256.363040pt;}
.y81_c00028{bottom:257.180048pt;}
.y80_c00028{bottom:263.385413pt;}
.y7f_c00028{bottom:264.686561pt;}
.y7e_c00028{bottom:267.332525pt;}
.y7d_c00028{bottom:268.027212pt;}
.y7c_c00028{bottom:268.696324pt;}
.y7b_c00028{bottom:271.045929pt;}
.y7a_c00028{bottom:272.420476pt;}
.y79_c00028{bottom:273.035404pt;}
.y78_c00028{bottom:280.260832pt;}
.y77_c00028{bottom:281.634277pt;}
.y76_c00028{bottom:282.770053pt;}
.y75_c00028{bottom:283.186365pt;}
.y74_c00028{bottom:283.485264pt;}
.y73_c00028{bottom:285.788215pt;}
.y72_c00028{bottom:286.105325pt;}
.y71_c00028{bottom:287.192941pt;}
.y70_c00028{bottom:293.260068pt;}
.y6f_c00028{bottom:293.971948pt;}
.y6e_c00028{bottom:295.235399pt;}
.y6d_c00028{bottom:298.007037pt;}
.y6c_c00028{bottom:300.161005pt;}
.y6b_c00028{bottom:307.741083pt;}
.y6a_c00028{bottom:308.499988pt;}
.y69_c00028{bottom:311.085177pt;}
.y68_c00028{bottom:311.506631pt;}
.y67_c00028{bottom:312.258325pt;}
.y66_c00028{bottom:312.706999pt;}
.y65_c00028{bottom:314.772776pt;}
.y64_c00028{bottom:315.524471pt;}
.y63_c00028{bottom:325.333295pt;}
.y62_c00028{bottom:326.813976pt;}
.y61_c00028{bottom:327.711561pt;}
.y60_c00028{bottom:328.064683pt;}
.y5f_c00028{bottom:329.499520pt;}
.y5e_c00028{bottom:330.408359pt;}
.y5d_c00028{bottom:338.033153pt;}
.y5c_c00028{bottom:338.935589pt;}
.y5b_c00028{bottom:340.453919pt;}
.y5a_c00028{bottom:341.628068pt;}
.y59_c00028{bottom:342.035357pt;}
.y58_c00028{bottom:343.076908pt;}
.y57_c00028{bottom:343.629383pt;}
.y56_c00028{bottom:344.096397pt;}
.y55_c00028{bottom:354.625289pt;}
.y54_c00028{bottom:355.031748pt;}
.y53_c00028{bottom:355.996433pt;}
.y52_c00028{bottom:357.128489pt;}
.y51_c00028{bottom:357.766708pt;}
.y50_c00028{bottom:358.221816pt;}
.y4f_c00028{bottom:359.089551pt;}
.y4e_c00028{bottom:359.498581pt;}
.y4d_c00028{bottom:360.183496pt;}
.y4c_c00028{bottom:368.972635pt;}
.y4b_c00028{bottom:369.490768pt;}
.y4a_c00028{bottom:370.526803pt;}
.y49_c00028{bottom:371.130044pt;}
.y48_c00028{bottom:372.607939pt;}
.y47_c00028{bottom:373.159133pt;}
.y46_c00028{bottom:373.960181pt;}
.y45_c00028{bottom:375.071735pt;}
.y44_c00028{bottom:384.220792pt;}
.y43_c00028{bottom:384.660361pt;}
.y42_c00028{bottom:385.739212pt;}
.y41_c00028{bottom:387.327651pt;}
.y40_c00028{bottom:387.645571pt;}
.y3f_c00028{bottom:388.033491pt;}
.y3e_c00028{bottom:389.233101pt;}
.y3d_c00028{bottom:396.758809pt;}
.y3c_c00028{bottom:397.202169pt;}
.y3b_c00028{bottom:398.679417pt;}
.y3a_c00028{bottom:399.996176pt;}
.y39_c00028{bottom:400.883708pt;}
.y38_c00028{bottom:402.429996pt;}
.y37_c00028{bottom:403.882516pt;}
.y36_c00028{bottom:412.706872pt;}
.y35_c00028{bottom:414.056369pt;}
.y34_c00028{bottom:414.972340pt;}
.y33_c00028{bottom:415.530093pt;}
.y32_c00028{bottom:416.346373pt;}
.y31_c00028{bottom:416.748191pt;}
.y30_c00028{bottom:419.005248pt;}
.y2f_c00028{bottom:426.208451pt;}
.y2e_c00028{bottom:428.937556pt;}
.y2d_c00028{bottom:430.891181pt;}
.y2c_c00028{bottom:431.547771pt;}
.y2b_c00028{bottom:432.246175pt;}
.y2a_c00028{bottom:434.376648pt;}
.y29_c00028{bottom:442.937895pt;}
.y28_c00028{bottom:443.779567pt;}
.y27_c00028{bottom:444.678576pt;}
.y26_c00028{bottom:447.623859pt;}
.y25_c00028{bottom:448.109987pt;}
.y24_c00028{bottom:449.423115pt;}
.y23_c00028{bottom:450.219416pt;}
.y22_c00028{bottom:458.072841pt;}
.y21_c00028{bottom:459.230973pt;}
.y20_c00028{bottom:459.609497pt;}
.y1f_c00028{bottom:461.019508pt;}
.y1e_c00028{bottom:461.538055pt;}
.y1d_c00028{bottom:463.265673pt;}
.y1c_c00028{bottom:463.664225pt;}
.y1b_c00028{bottom:465.103756pt;}
.y1a_c00028{bottom:471.481600pt;}
.y19_c00028{bottom:473.596221pt;}
.y18_c00028{bottom:474.121663pt;}
.y17_c00028{bottom:476.075984pt;}
.y16_c00028{bottom:476.884696pt;}
.y15_c00028{bottom:477.789661pt;}
.y14_c00028{bottom:479.993403pt;}
.y13_c00028{bottom:487.963712pt;}
.y12_c00028{bottom:488.791129pt;}
.y11_c00028{bottom:490.071129pt;}
.y10_c00028{bottom:490.566829pt;}
.yf_c00028{bottom:491.641952pt;}
.ye_c00028{bottom:492.048013pt;}
.yd_c00028{bottom:492.525539pt;}
.yc_c00028{bottom:493.914068pt;}
.yb_c00028{bottom:502.483317pt;}
.ya_c00028{bottom:502.927691pt;}
.y9_c00028{bottom:503.174713pt;}
.y8_c00028{bottom:504.971427pt;}
.y7_c00028{bottom:505.368159pt;}
.y6_c00028{bottom:505.760173pt;}
.y5_c00028{bottom:507.258395pt;}
.y4_c00028{bottom:507.756423pt;}
.y3_c00028{bottom:508.560599pt;}
.y2_c00028{bottom:517.136048pt;}
.y1_c00028{bottom:519.360000pt;}
.h7_c00028{height:48.553737pt;}
.he_c00028{height:49.487463pt;}
.h8_c00028{height:51.354914pt;}
.h12_c00028{height:52.288640pt;}
.h11_c00028{height:53.222366pt;}
.h5_c00028{height:54.156092pt;}
.hd_c00028{height:55.089817pt;}
.hf_c00028{height:56.023543pt;}
.h6_c00028{height:56.957269pt;}
.h9_c00028{height:57.890994pt;}
.ha_c00028{height:58.824720pt;}
.h4_c00028{height:59.758446pt;}
.h3_c00028{height:60.692172pt;}
.hb_c00028{height:61.625897pt;}
.hc_c00028{height:62.559623pt;}
.h10_c00028{height:65.360800pt;}
.h2_c00028{height:113.914538pt;}
.h1_c00028{height:547.333333pt;}
.h0_c00028{height:547.440000pt;}
.w0_c00028{width:326.400000pt;}
.w1_c00028{width:326.666667pt;}
.x0_c00028{left:0.000000pt;}
.x49_c00028{left:20.171851pt;}
.x73_c00028{left:21.115369pt;}
.x36_c00028{left:22.016153pt;}
.x1f_c00028{left:23.516199pt;}
.x3_c00028{left:24.937199pt;}
.x77_c00028{left:26.551928pt;}
.x65_c00028{left:31.323692pt;}
.x55_c00028{left:37.235891pt;}
.x41_c00028{left:40.742160pt;}
.x62_c00028{left:43.160793pt;}
.x4a_c00028{left:44.435792pt;}
.x20_c00028{left:45.637047pt;}
.x58_c00028{left:47.863547pt;}
.x3b_c00028{left:51.836636pt;}
.x70_c00028{left:56.122003pt;}
.x4_c00028{left:57.084911pt;}
.x45_c00028{left:59.539200pt;}
.x78_c00028{left:60.492623pt;}
.x37_c00028{left:63.198551pt;}
.x1_c00028{left:65.258667pt;}
.x19_c00028{left:68.099233pt;}
.x3c_c00028{left:69.622396pt;}
.x50_c00028{left:71.684176pt;}
.x59_c00028{left:73.086676pt;}
.x2e_c00028{left:74.821248pt;}
.x5_c00028{left:77.019231pt;}
.x6a_c00028{left:79.240699pt;}
.x1a_c00028{left:80.185841pt;}
.xc_c00028{left:82.327464pt;}
.x24_c00028{left:86.033279pt;}
.x5a_c00028{left:88.459989pt;}
.x13_c00028{left:89.442461pt;}
.x38_c00028{left:92.845585pt;}
.x63_c00028{left:94.258709pt;}
.x21_c00028{left:95.624249pt;}
.x33_c00028{left:98.427363pt;}
.x5d_c00028{left:100.521615pt;}
.xd_c00028{left:102.245031pt;}
.x66_c00028{left:103.426761pt;}
.x42_c00028{left:104.497545pt;}
.x25_c00028{left:106.572968pt;}
.x4b_c00028{left:111.067925pt;}
.x34_c00028{left:113.577548pt;}
.x29_c00028{left:114.504139pt;}
.x14_c00028{left:116.046595pt;}
.xe_c00028{left:119.146133pt;}
.x43_c00028{left:120.796773pt;}
.x6d_c00028{left:122.117564pt;}
.x26_c00028{left:125.900851pt;}
.x3d_c00028{left:127.109705pt;}
.x79_c00028{left:129.080640pt;}
.x2a_c00028{left:130.568661pt;}
.x1b_c00028{left:132.534437pt;}
.x46_c00028{left:134.031321pt;}
.x6_c00028{left:136.964857pt;}
.x15_c00028{left:139.837820pt;}
.x2_c00028{left:141.946667pt;}
.x67_c00028{left:144.449871pt;}
.x56_c00028{left:147.083564pt;}
.x1c_c00028{left:148.252620pt;}
.x4c_c00028{left:149.791016pt;}
.x75_c00028{left:150.691055pt;}
.x7_c00028{left:152.645341pt;}
.x51_c00028{left:153.949240pt;}
.x3e_c00028{left:154.869205pt;}
.x71_c00028{left:159.481672pt;}
.x2f_c00028{left:161.737095pt;}
.x5b_c00028{left:162.877532pt;}
.xf_c00028{left:163.949963pt;}
.x8_c00028{left:168.488492pt;}
.x6b_c00028{left:169.971291pt;}
.x47_c00028{left:171.424735pt;}
.x5f_c00028{left:172.945569pt;}
.x72_c00028{left:174.375081pt;}
.x6e_c00028{left:175.669351pt;}
.x22_c00028{left:177.444995pt;}
.x76_c00028{left:178.443576pt;}
.x52_c00028{left:179.485975pt;}
.x27_c00028{left:183.373871pt;}
.x10_c00028{left:184.586273pt;}
.x2b_c00028{left:185.541708pt;}
.x6c_c00028{left:186.649591pt;}
.x35_c00028{left:189.196397pt;}
.x1d_c00028{left:190.983671pt;}
.x6f_c00028{left:193.187515pt;}
.x16_c00028{left:197.334840pt;}
.x1e_c00028{left:202.471689pt;}
.x3f_c00028{left:204.075084pt;}
.x30_c00028{left:208.753115pt;}
.x68_c00028{left:209.961520pt;}
.x17_c00028{left:212.784597pt;}
.x7a_c00028{left:216.542241pt;}
.x5e_c00028{left:218.600281pt;}
.x53_c00028{left:220.031135pt;}
.x2c_c00028{left:222.188628pt;}
.x23_c00028{left:225.780507pt;}
.x4e_c00028{left:227.785809pt;}
.x39_c00028{left:228.728140pt;}
.x57_c00028{left:230.619628pt;}
.x64_c00028{left:231.688759pt;}
.x48_c00028{left:233.112333pt;}
.x11_c00028{left:237.927340pt;}
.x60_c00028{left:239.349275pt;}
.x9_c00028{left:240.383511pt;}
.x5c_c00028{left:241.874649pt;}
.x74_c00028{left:244.705485pt;}
.x40_c00028{left:246.037059pt;}
.x3a_c00028{left:247.929261pt;}
.xa_c00028{left:250.282004pt;}
.x4f_c00028{left:251.505113pt;}
.x69_c00028{left:255.549537pt;}
.x31_c00028{left:261.533328pt;}
.x28_c00028{left:263.630232pt;}
.x44_c00028{left:264.592105pt;}
.xb_c00028{left:268.044053pt;}
.x54_c00028{left:269.093899pt;}
.x4d_c00028{left:271.262645pt;}
.x12_c00028{left:272.394995pt;}
.x61_c00028{left:273.969581pt;}
.x18_c00028{left:274.980921pt;}
.x2d_c00028{left:276.177559pt;}
.x32_c00028{left:277.373792pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00029 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00029 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00029 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00029 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00029.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00029{transform:matrix(0.137328,0.002747,-0.004999,0.249950,0,0);-ms-transform:matrix(0.137328,0.002747,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.137328,0.002747,-0.004999,0.249950,0,0);}
.m90_c00029{transform:matrix(0.141177,0.002824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.141177,0.002824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.141177,0.002824,-0.004999,0.249950,0,0);}
.m53_c00029{transform:matrix(0.143496,0.002870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.143496,0.002870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.143496,0.002870,-0.004999,0.249950,0,0);}
.m81_c00029{transform:matrix(0.145271,0.002905,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145271,0.002905,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145271,0.002905,-0.004999,0.249950,0,0);}
.m36_c00029{transform:matrix(0.149940,0.002999,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149940,0.002999,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149940,0.002999,-0.004999,0.249950,0,0);}
.m9d_c00029{transform:matrix(0.152300,0.003046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152300,0.003046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152300,0.003046,-0.004999,0.249950,0,0);}
.mab_c00029{transform:matrix(0.159498,0.003190,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159498,0.003190,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159498,0.003190,-0.004999,0.249950,0,0);}
.m4c_c00029{transform:matrix(0.159903,0.003198,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159903,0.003198,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159903,0.003198,-0.004999,0.249950,0,0);}
.m50_c00029{transform:matrix(0.159983,0.003200,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159983,0.003200,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159983,0.003200,-0.004999,0.249950,0,0);}
.maf_c00029{transform:matrix(0.161128,0.003223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161128,0.003223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161128,0.003223,-0.004999,0.249950,0,0);}
.m87_c00029{transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);}
.ma6_c00029{transform:matrix(0.162537,0.003251,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162537,0.003251,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162537,0.003251,-0.004999,0.249950,0,0);}
.ma1_c00029{transform:matrix(0.162797,0.003256,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162797,0.003256,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162797,0.003256,-0.004999,0.249950,0,0);}
.m99_c00029{transform:matrix(0.163237,0.003265,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163237,0.003265,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163237,0.003265,-0.004999,0.249950,0,0);}
.m5_c00029{transform:matrix(0.163374,0.002614,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163374,0.002614,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163374,0.002614,-0.003999,0.249968,0,0);}
.m16_c00029{transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);}
.m15_c00029{transform:matrix(0.166389,0.002662,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166389,0.002662,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166389,0.002662,-0.003999,0.249968,0,0);}
.m4_c00029{transform:matrix(0.166589,0.002665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166589,0.002665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166589,0.002665,-0.003999,0.249968,0,0);}
.mca_c00029{transform:matrix(0.167871,0.003357,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167871,0.003357,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167871,0.003357,-0.004999,0.249950,0,0);}
.m8e_c00029{transform:matrix(0.167931,0.003359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167931,0.003359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167931,0.003359,-0.004999,0.249950,0,0);}
.m1c_c00029{transform:matrix(0.168338,0.002693,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168338,0.002693,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168338,0.002693,-0.003999,0.249968,0,0);}
.m86_c00029{transform:matrix(0.168481,0.003370,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168481,0.003370,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168481,0.003370,-0.004999,0.249950,0,0);}
.m42_c00029{transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);}
.m68_c00029{transform:matrix(0.170326,0.003407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170326,0.003407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170326,0.003407,-0.004999,0.249950,0,0);}
.m9c_c00029{transform:matrix(0.170396,0.003408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170396,0.003408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170396,0.003408,-0.004999,0.249950,0,0);}
.m59_c00029{transform:matrix(0.170681,0.003414,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170681,0.003414,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170681,0.003414,-0.004999,0.249950,0,0);}
.mc8_c00029{transform:matrix(0.170731,0.003415,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170731,0.003415,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170731,0.003415,-0.004999,0.249950,0,0);}
.mb5_c00029{transform:matrix(0.170806,0.003416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170806,0.003416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170806,0.003416,-0.004999,0.249950,0,0);}
.m6e_c00029{transform:matrix(0.170831,0.003417,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170831,0.003417,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170831,0.003417,-0.004999,0.249950,0,0);}
.m76_c00029{transform:matrix(0.171506,0.003430,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171506,0.003430,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171506,0.003430,-0.004999,0.249950,0,0);}
.me4_c00029{transform:matrix(0.171566,0.003431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171566,0.003431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171566,0.003431,-0.004999,0.249950,0,0);}
.m4f_c00029{transform:matrix(0.172246,0.003445,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172246,0.003445,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172246,0.003445,-0.004999,0.249950,0,0);}
.m80_c00029{transform:matrix(0.173305,0.003466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173305,0.003466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173305,0.003466,-0.004999,0.249950,0,0);}
.m3a_c00029{transform:matrix(0.173495,0.003470,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173495,0.003470,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173495,0.003470,-0.004999,0.249950,0,0);}
.m1b_c00029{transform:matrix(0.174063,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174063,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174063,0.002785,-0.003999,0.249968,0,0);}
.m5a_c00029{transform:matrix(0.174390,0.003488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174390,0.003488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174390,0.003488,-0.004999,0.249950,0,0);}
.m43_c00029{transform:matrix(0.174525,0.003491,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174525,0.003491,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174525,0.003491,-0.004999,0.249950,0,0);}
.m2_c00029{transform:matrix(0.174768,0.002796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174768,0.002796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174768,0.002796,-0.003999,0.249968,0,0);}
.m26_c00029{transform:matrix(0.176530,0.003531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176530,0.003531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176530,0.003531,-0.004999,0.249950,0,0);}
.mbf_c00029{transform:matrix(0.176670,0.003533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176670,0.003533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176670,0.003533,-0.004999,0.249950,0,0);}
.m18_c00029{transform:matrix(0.177317,0.002837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177317,0.002837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177317,0.002837,-0.003999,0.249968,0,0);}
.m82_c00029{transform:matrix(0.177460,0.003549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177460,0.003549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177460,0.003549,-0.004999,0.249950,0,0);}
.m66_c00029{transform:matrix(0.177699,0.003554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177699,0.003554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177699,0.003554,-0.004999,0.249950,0,0);}
.mdd_c00029{transform:matrix(0.177714,0.003554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177714,0.003554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177714,0.003554,-0.004999,0.249950,0,0);}
.mbd_c00029{transform:matrix(0.177799,0.003556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177799,0.003556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177799,0.003556,-0.004999,0.249950,0,0);}
.m70_c00029{transform:matrix(0.177824,0.003556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177824,0.003556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177824,0.003556,-0.004999,0.249950,0,0);}
.ma5_c00029{transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);}
.m8b_c00029{transform:matrix(0.179319,0.003586,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179319,0.003586,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179319,0.003586,-0.004999,0.249950,0,0);}
.md5_c00029{transform:matrix(0.180139,0.003603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180139,0.003603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180139,0.003603,-0.004999,0.249950,0,0);}
.m3_c00029{transform:matrix(0.180407,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180407,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180407,0.002887,-0.003999,0.249968,0,0);}
.md9_c00029{transform:matrix(0.180424,0.003608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180424,0.003608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180424,0.003608,-0.004999,0.249950,0,0);}
.m7f_c00029{transform:matrix(0.180639,0.003613,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180639,0.003613,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180639,0.003613,-0.004999,0.249950,0,0);}
.m9e_c00029{transform:matrix(0.180809,0.003616,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180809,0.003616,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180809,0.003616,-0.004999,0.249950,0,0);}
.m32_c00029{transform:matrix(0.180949,0.003619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180949,0.003619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180949,0.003619,-0.004999,0.249950,0,0);}
.m62_c00029{transform:matrix(0.181039,0.003621,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181039,0.003621,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181039,0.003621,-0.004999,0.249950,0,0);}
.ma8_c00029{transform:matrix(0.181334,0.003627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181334,0.003627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181334,0.003627,-0.004999,0.249950,0,0);}
.m98_c00029{transform:matrix(0.182863,0.003657,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182863,0.003657,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182863,0.003657,-0.004999,0.249950,0,0);}
.m74_c00029{transform:matrix(0.183523,0.003670,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183523,0.003670,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183523,0.003670,-0.004999,0.249950,0,0);}
.ma0_c00029{transform:matrix(0.185113,0.003702,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185113,0.003702,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185113,0.003702,-0.004999,0.249950,0,0);}
.m11_c00029{transform:matrix(0.185301,0.002965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185301,0.002965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185301,0.002965,-0.003999,0.249968,0,0);}
.m49_c00029{transform:matrix(0.185568,0.003711,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185568,0.003711,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185568,0.003711,-0.004999,0.249950,0,0);}
.m9b_c00029{transform:matrix(0.185858,0.003717,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185858,0.003717,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185858,0.003717,-0.004999,0.249950,0,0);}
.m95_c00029{transform:matrix(0.186238,0.003725,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186238,0.003725,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186238,0.003725,-0.004999,0.249950,0,0);}
.mc7_c00029{transform:matrix(0.186543,0.003731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186543,0.003731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186543,0.003731,-0.004999,0.249950,0,0);}
.m3b_c00029{transform:matrix(0.186723,0.003734,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186723,0.003734,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186723,0.003734,-0.004999,0.249950,0,0);}
.m17_c00029{transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186771,0.002988,-0.003999,0.249968,0,0);}
.m27_c00029{transform:matrix(0.186898,0.003738,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186898,0.003738,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186898,0.003738,-0.004999,0.249950,0,0);}
.mb2_c00029{transform:matrix(0.187982,0.003760,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187982,0.003760,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187982,0.003760,-0.004999,0.249950,0,0);}
.mcc_c00029{transform:matrix(0.188342,0.003767,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188342,0.003767,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188342,0.003767,-0.004999,0.249950,0,0);}
.m6c_c00029{transform:matrix(0.188942,0.003779,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188942,0.003779,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188942,0.003779,-0.004999,0.249950,0,0);}
.m63_c00029{transform:matrix(0.189287,0.003786,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189287,0.003786,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189287,0.003786,-0.004999,0.249950,0,0);}
.m91_c00029{transform:matrix(0.189312,0.003786,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189312,0.003786,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189312,0.003786,-0.004999,0.249950,0,0);}
.m75_c00029{transform:matrix(0.189737,0.003795,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189737,0.003795,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189737,0.003795,-0.004999,0.249950,0,0);}
.mcb_c00029{transform:matrix(0.189782,0.003796,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189782,0.003796,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189782,0.003796,-0.004999,0.249950,0,0);}
.m55_c00029{transform:matrix(0.190797,0.003816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190797,0.003816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190797,0.003816,-0.004999,0.249950,0,0);}
.m64_c00029{transform:matrix(0.191317,0.003826,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191317,0.003826,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191317,0.003826,-0.004999,0.249950,0,0);}
.me7_c00029{transform:matrix(0.191522,0.003830,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191522,0.003830,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191522,0.003830,-0.004999,0.249950,0,0);}
.m73_c00029{transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);}
.m5d_c00029{transform:matrix(0.192032,0.003841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192032,0.003841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192032,0.003841,-0.004999,0.249950,0,0);}
.m30_c00029{transform:matrix(0.192337,0.003847,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192337,0.003847,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192337,0.003847,-0.004999,0.249950,0,0);}
.m37_c00029{transform:matrix(0.192521,0.003850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192521,0.003850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192521,0.003850,-0.004999,0.249950,0,0);}
.mba_c00029{transform:matrix(0.192871,0.003857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192871,0.003857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192871,0.003857,-0.004999,0.249950,0,0);}
.m3e_c00029{transform:matrix(0.193151,0.003863,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193151,0.003863,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193151,0.003863,-0.004999,0.249950,0,0);}
.m89_c00029{transform:matrix(0.193191,0.003864,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193191,0.003864,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193191,0.003864,-0.004999,0.249950,0,0);}
.m1_c00029{transform:matrix(0.193420,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193420,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193420,0.003095,-0.003999,0.249968,0,0);}
.mc9_c00029{transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);}
.mac_c00029{transform:matrix(0.193606,0.003872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193606,0.003872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193606,0.003872,-0.004999,0.249950,0,0);}
.m56_c00029{transform:matrix(0.193751,0.003875,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193751,0.003875,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193751,0.003875,-0.004999,0.249950,0,0);}
.m19_c00029{transform:matrix(0.193775,0.003100,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193775,0.003100,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193775,0.003100,-0.003999,0.249968,0,0);}
.m9f_c00029{transform:matrix(0.193821,0.003876,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193821,0.003876,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193821,0.003876,-0.004999,0.249950,0,0);}
.m6_c00029{transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);}
.m12_c00029{transform:matrix(0.193920,0.003103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193920,0.003103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193920,0.003103,-0.003999,0.249968,0,0);}
.me1_c00029{transform:matrix(0.193956,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193956,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193956,0.003879,-0.004999,0.249950,0,0);}
.mb8_c00029{transform:matrix(0.194256,0.003885,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194256,0.003885,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194256,0.003885,-0.004999,0.249950,0,0);}
.mcf_c00029{transform:matrix(0.195306,0.003906,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195306,0.003906,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195306,0.003906,-0.004999,0.249950,0,0);}
.mb1_c00029{transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);}
.m7b_c00029{transform:matrix(0.195616,0.003912,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195616,0.003912,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195616,0.003912,-0.004999,0.249950,0,0);}
.m67_c00029{transform:matrix(0.195776,0.003916,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195776,0.003916,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195776,0.003916,-0.004999,0.249950,0,0);}
.m8f_c00029{transform:matrix(0.196196,0.003924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196196,0.003924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196196,0.003924,-0.004999,0.249950,0,0);}
.md0_c00029{transform:matrix(0.196671,0.003933,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196671,0.003933,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196671,0.003933,-0.004999,0.249950,0,0);}
.m92_c00029{transform:matrix(0.197001,0.003940,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197001,0.003940,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197001,0.003940,-0.004999,0.249950,0,0);}
.md1_c00029{transform:matrix(0.197516,0.003950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197516,0.003950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197516,0.003950,-0.004999,0.249950,0,0);}
.m58_c00029{transform:matrix(0.198130,0.003963,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198130,0.003963,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198130,0.003963,-0.004999,0.249950,0,0);}
.m71_c00029{transform:matrix(0.198455,0.003969,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198455,0.003969,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198455,0.003969,-0.004999,0.249950,0,0);}
.m93_c00029{transform:matrix(0.198915,0.003978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198915,0.003978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198915,0.003978,-0.004999,0.249950,0,0);}
.m2f_c00029{transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);}
.m8d_c00029{transform:matrix(0.199175,0.003984,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199175,0.003984,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199175,0.003984,-0.004999,0.249950,0,0);}
.m0_c00029{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.mbb_c00029{transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);}
.m5c_c00029{transform:matrix(0.200815,0.004016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200815,0.004016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200815,0.004016,-0.004999,0.249950,0,0);}
.me2_c00029{transform:matrix(0.200880,0.004018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200880,0.004018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200880,0.004018,-0.004999,0.249950,0,0);}
.m7a_c00029{transform:matrix(0.201000,0.004020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201000,0.004020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201000,0.004020,-0.004999,0.249950,0,0);}
.mae_c00029{transform:matrix(0.201350,0.004027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201350,0.004027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201350,0.004027,-0.004999,0.249950,0,0);}
.m96_c00029{transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);}
.m72_c00029{transform:matrix(0.201610,0.004032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201610,0.004032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201610,0.004032,-0.004999,0.249950,0,0);}
.me6_c00029{transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);}
.mda_c00029{transform:matrix(0.201770,0.004035,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201770,0.004035,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201770,0.004035,-0.004999,0.249950,0,0);}
.me5_c00029{transform:matrix(0.202215,0.004044,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202215,0.004044,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202215,0.004044,-0.004999,0.249950,0,0);}
.m4e_c00029{transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);}
.m69_c00029{transform:matrix(0.202420,0.004048,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202420,0.004048,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202420,0.004048,-0.004999,0.249950,0,0);}
.m31_c00029{transform:matrix(0.202784,0.004056,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202784,0.004056,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202784,0.004056,-0.004999,0.249950,0,0);}
.mb3_c00029{transform:matrix(0.202789,0.004056,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202789,0.004056,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202789,0.004056,-0.004999,0.249950,0,0);}
.m2e_c00029{transform:matrix(0.202954,0.004059,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202954,0.004059,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202954,0.004059,-0.004999,0.249950,0,0);}
.m1a_c00029{transform:matrix(0.203389,0.003254,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203389,0.003254,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203389,0.003254,-0.003999,0.249968,0,0);}
.m83_c00029{transform:matrix(0.203754,0.004075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203754,0.004075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203754,0.004075,-0.004999,0.249950,0,0);}
.mc4_c00029{transform:matrix(0.203914,0.004078,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203914,0.004078,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203914,0.004078,-0.004999,0.249950,0,0);}
.md6_c00029{transform:matrix(0.204114,0.004082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204114,0.004082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204114,0.004082,-0.004999,0.249950,0,0);}
.m5b_c00029{transform:matrix(0.204129,0.004083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204129,0.004083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204129,0.004083,-0.004999,0.249950,0,0);}
.m4a_c00029{transform:matrix(0.204179,0.004084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204179,0.004084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204179,0.004084,-0.004999,0.249950,0,0);}
.md4_c00029{transform:matrix(0.205364,0.004107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205364,0.004107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205364,0.004107,-0.004999,0.249950,0,0);}
.m97_c00029{transform:matrix(0.205639,0.004113,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205639,0.004113,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205639,0.004113,-0.004999,0.249950,0,0);}
.m10_c00029{transform:matrix(0.205724,0.003292,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205724,0.003292,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205724,0.003292,-0.003999,0.249968,0,0);}
.m8a_c00029{transform:matrix(0.206169,0.004123,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206169,0.004123,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206169,0.004123,-0.004999,0.249950,0,0);}
.mbc_c00029{transform:matrix(0.206469,0.004129,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206469,0.004129,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206469,0.004129,-0.004999,0.249950,0,0);}
.m25_c00029{transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);}
.m41_c00029{transform:matrix(0.207304,0.004146,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207304,0.004146,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207304,0.004146,-0.004999,0.249950,0,0);}
.m2b_c00029{transform:matrix(0.207623,0.004152,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207623,0.004152,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207623,0.004152,-0.004999,0.249950,0,0);}
.ma9_c00029{transform:matrix(0.207993,0.004160,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207993,0.004160,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207993,0.004160,-0.004999,0.249950,0,0);}
.mdc_c00029{transform:matrix(0.208168,0.004163,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208168,0.004163,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208168,0.004163,-0.004999,0.249950,0,0);}
.m65_c00029{transform:matrix(0.208473,0.004169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208473,0.004169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208473,0.004169,-0.004999,0.249950,0,0);}
.m4d_c00029{transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);}
.m57_c00029{transform:matrix(0.210643,0.004213,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210643,0.004213,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210643,0.004213,-0.004999,0.249950,0,0);}
.mce_c00029{transform:matrix(0.211008,0.004220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211008,0.004220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211008,0.004220,-0.004999,0.249950,0,0);}
.m5e_c00029{transform:matrix(0.211158,0.004223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211158,0.004223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211158,0.004223,-0.004999,0.249950,0,0);}
.m5f_c00029{transform:matrix(0.211193,0.004224,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211193,0.004224,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211193,0.004224,-0.004999,0.249950,0,0);}
.ma7_c00029{transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);}
.m61_c00029{transform:matrix(0.212038,0.004241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212038,0.004241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212038,0.004241,-0.004999,0.249950,0,0);}
.m8_c00029{transform:matrix(0.212378,0.003398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212378,0.003398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212378,0.003398,-0.003999,0.249968,0,0);}
.m8c_c00029{transform:matrix(0.212493,0.004250,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212493,0.004250,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212493,0.004250,-0.004999,0.249950,0,0);}
.m13_c00029{transform:matrix(0.213018,0.003408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213018,0.003408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213018,0.003408,-0.003999,0.249968,0,0);}
.me0_c00029{transform:matrix(0.213047,0.004261,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213047,0.004261,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213047,0.004261,-0.004999,0.249950,0,0);}
.mf_c00029{transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);}
.mbe_c00029{transform:matrix(0.214092,0.004282,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214092,0.004282,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214092,0.004282,-0.004999,0.249950,0,0);}
.m2a_c00029{transform:matrix(0.214457,0.004289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214457,0.004289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214457,0.004289,-0.004999,0.249950,0,0);}
.m48_c00029{transform:matrix(0.214777,0.004296,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214777,0.004296,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214777,0.004296,-0.004999,0.249950,0,0);}
.mb9_c00029{transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);}
.m6d_c00029{transform:matrix(0.216387,0.004328,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216387,0.004328,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216387,0.004328,-0.004999,0.249950,0,0);}
.m6f_c00029{transform:matrix(0.216497,0.004330,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216497,0.004330,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216497,0.004330,-0.004999,0.249950,0,0);}
.m6a_c00029{transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);}
.m54_c00029{transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);}
.mcd_c00029{transform:matrix(0.217322,0.004346,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217322,0.004346,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217322,0.004346,-0.004999,0.249950,0,0);}
.md3_c00029{transform:matrix(0.217377,0.004348,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217377,0.004348,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217377,0.004348,-0.004999,0.249950,0,0);}
.mc6_c00029{transform:matrix(0.218001,0.004360,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218001,0.004360,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218001,0.004360,-0.004999,0.249950,0,0);}
.m9a_c00029{transform:matrix(0.218161,0.004363,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218161,0.004363,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218161,0.004363,-0.004999,0.249950,0,0);}
.m7c_c00029{transform:matrix(0.218206,0.004364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218206,0.004364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218206,0.004364,-0.004999,0.249950,0,0);}
.mc2_c00029{transform:matrix(0.219741,0.004395,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219741,0.004395,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219741,0.004395,-0.004999,0.249950,0,0);}
.m6b_c00029{transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);}
.m88_c00029{transform:matrix(0.220231,0.004405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220231,0.004405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220231,0.004405,-0.004999,0.249950,0,0);}
.m51_c00029{transform:matrix(0.220516,0.004410,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220516,0.004410,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220516,0.004410,-0.004999,0.249950,0,0);}
.ma2_c00029{transform:matrix(0.220816,0.004416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220816,0.004416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220816,0.004416,-0.004999,0.249950,0,0);}
.m52_c00029{transform:matrix(0.220911,0.004418,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220911,0.004418,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220911,0.004418,-0.004999,0.249950,0,0);}
.mb0_c00029{transform:matrix(0.221016,0.004420,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221016,0.004420,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221016,0.004420,-0.004999,0.249950,0,0);}
.m4b_c00029{transform:matrix(0.221211,0.004424,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221211,0.004424,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221211,0.004424,-0.004999,0.249950,0,0);}
.m9_c00029{transform:matrix(0.221747,0.003548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221747,0.003548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221747,0.003548,-0.003999,0.249968,0,0);}
.m84_c00029{transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);}
.mc0_c00029{transform:matrix(0.222196,0.004444,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222196,0.004444,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222196,0.004444,-0.004999,0.249950,0,0);}
.me_c00029{transform:matrix(0.222657,0.003563,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222657,0.003563,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222657,0.003563,-0.003999,0.249968,0,0);}
.md7_c00029{transform:matrix(0.222800,0.004456,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222800,0.004456,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222800,0.004456,-0.004999,0.249950,0,0);}
.m35_c00029{transform:matrix(0.222880,0.004458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222880,0.004458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222880,0.004458,-0.004999,0.249950,0,0);}
.mc3_c00029{transform:matrix(0.223355,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223355,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223355,0.004467,-0.004999,0.249950,0,0);}
.m1f_c00029{transform:matrix(0.223356,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223356,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223356,0.003574,-0.003999,0.249968,0,0);}
.mb4_c00029{transform:matrix(0.224110,0.004482,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224110,0.004482,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224110,0.004482,-0.004999,0.249950,0,0);}
.m94_c00029{transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);}
.mc5_c00029{transform:matrix(0.227060,0.004541,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227060,0.004541,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227060,0.004541,-0.004999,0.249950,0,0);}
.md2_c00029{transform:matrix(0.227554,0.004551,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227554,0.004551,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227554,0.004551,-0.004999,0.249950,0,0);}
.m60_c00029{transform:matrix(0.227604,0.004552,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227604,0.004552,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227604,0.004552,-0.004999,0.249950,0,0);}
.mde_c00029{transform:matrix(0.228169,0.004563,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228169,0.004563,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228169,0.004563,-0.004999,0.249950,0,0);}
.m39_c00029{transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);}
.ma_c00029{transform:matrix(0.228791,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228791,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228791,0.003661,-0.003999,0.249968,0,0);}
.me3_c00029{transform:matrix(0.229714,0.004594,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229714,0.004594,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229714,0.004594,-0.004999,0.249950,0,0);}
.m24_c00029{transform:matrix(0.229959,0.004599,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229959,0.004599,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229959,0.004599,-0.004999,0.249950,0,0);}
.m38_c00029{transform:matrix(0.230084,0.004602,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230084,0.004602,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230084,0.004602,-0.004999,0.249950,0,0);}
.mad_c00029{transform:matrix(0.231549,0.004631,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231549,0.004631,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231549,0.004631,-0.004999,0.249950,0,0);}
.m14_c00029{transform:matrix(0.232045,0.003713,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232045,0.003713,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232045,0.003713,-0.003999,0.249968,0,0);}
.m20_c00029{transform:matrix(0.233860,0.003742,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233860,0.003742,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233860,0.003742,-0.003999,0.249968,0,0);}
.m23_c00029{transform:matrix(0.233895,0.003742,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233895,0.003742,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233895,0.003742,-0.003999,0.249968,0,0);}
.m40_c00029{transform:matrix(0.234388,0.004688,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234388,0.004688,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234388,0.004688,-0.004999,0.249950,0,0);}
.m78_c00029{transform:matrix(0.236773,0.004735,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236773,0.004735,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236773,0.004735,-0.004999,0.249950,0,0);}
.mdf_c00029{transform:matrix(0.238597,0.004772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238597,0.004772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238597,0.004772,-0.004999,0.249950,0,0);}
.m7_c00029{transform:matrix(0.238794,0.003821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238794,0.003821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238794,0.003821,-0.003999,0.249968,0,0);}
.mc1_c00029{transform:matrix(0.239217,0.004784,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239217,0.004784,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239217,0.004784,-0.004999,0.249950,0,0);}
.m2d_c00029{transform:matrix(0.239262,0.004785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239262,0.004785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239262,0.004785,-0.004999,0.249950,0,0);}
.mdb_c00029{transform:matrix(0.239432,0.004789,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239432,0.004789,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239432,0.004789,-0.004999,0.249950,0,0);}
.m7d_c00029{transform:matrix(0.243766,0.004875,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243766,0.004875,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243766,0.004875,-0.004999,0.249950,0,0);}
.m79_c00029{transform:matrix(0.244416,0.004888,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244416,0.004888,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244416,0.004888,-0.004999,0.249950,0,0);}
.m2c_c00029{transform:matrix(0.244801,0.004896,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244801,0.004896,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244801,0.004896,-0.004999,0.249950,0,0);}
.mc_c00029{transform:matrix(0.246368,0.003942,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246368,0.003942,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246368,0.003942,-0.003999,0.249968,0,0);}
.m21_c00029{transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);}
.m22_c00029{transform:matrix(0.250513,0.004008,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250513,0.004008,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250513,0.004008,-0.003999,0.249968,0,0);}
.m3f_c00029{transform:matrix(0.251060,0.005021,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251060,0.005021,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251060,0.005021,-0.004999,0.249950,0,0);}
.m28_c00029{transform:matrix(0.252045,0.005041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252045,0.005041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252045,0.005041,-0.004999,0.249950,0,0);}
.ma4_c00029{transform:matrix(0.254114,0.005082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254114,0.005082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254114,0.005082,-0.004999,0.249950,0,0);}
.md8_c00029{transform:matrix(0.254769,0.005095,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254769,0.005095,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254769,0.005095,-0.004999,0.249950,0,0);}
.m7e_c00029{transform:matrix(0.256244,0.005125,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256244,0.005125,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256244,0.005125,-0.004999,0.249950,0,0);}
.m1d_c00029{transform:matrix(0.256292,0.004101,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256292,0.004101,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256292,0.004101,-0.003999,0.249968,0,0);}
.mb_c00029{transform:matrix(0.256622,0.004106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256622,0.004106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256622,0.004106,-0.003999,0.249968,0,0);}
.m29_c00029{transform:matrix(0.258673,0.005173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258673,0.005173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258673,0.005173,-0.004999,0.249950,0,0);}
.m3d_c00029{transform:matrix(0.263912,0.005278,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263912,0.005278,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263912,0.005278,-0.004999,0.249950,0,0);}
.m47_c00029{transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);}
.m46_c00029{transform:matrix(0.267167,0.005343,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267167,0.005343,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267167,0.005343,-0.004999,0.249950,0,0);}
.m34_c00029{transform:matrix(0.273655,0.005473,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273655,0.005473,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273655,0.005473,-0.004999,0.249950,0,0);}
.maa_c00029{transform:matrix(0.274235,0.005485,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274235,0.005485,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274235,0.005485,-0.004999,0.249950,0,0);}
.mb6_c00029{transform:matrix(0.281999,0.005640,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281999,0.005640,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281999,0.005640,-0.004999,0.249950,0,0);}
.m1e_c00029{transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);}
.mb7_c00029{transform:matrix(0.286658,0.005733,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286658,0.005733,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286658,0.005733,-0.004999,0.249950,0,0);}
.ma3_c00029{transform:matrix(0.314187,0.006284,-0.004999,0.249950,0,0);-ms-transform:matrix(0.314187,0.006284,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.314187,0.006284,-0.004999,0.249950,0,0);}
.md_c00029{transform:matrix(0.319559,0.005113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.319559,0.005113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.319559,0.005113,-0.003999,0.249968,0,0);}
.m77_c00029{transform:matrix(0.319626,0.006393,-0.004999,0.249950,0,0);-ms-transform:matrix(0.319626,0.006393,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.319626,0.006393,-0.004999,0.249950,0,0);}
.m45_c00029{transform:matrix(0.375465,0.007509,-0.004999,0.249950,0,0);-ms-transform:matrix(0.375465,0.007509,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.375465,0.007509,-0.004999,0.249950,0,0);}
.m3c_c00029{transform:matrix(0.377739,0.007555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.377739,0.007555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.377739,0.007555,-0.004999,0.249950,0,0);}
.m33_c00029{transform:matrix(0.577155,0.011543,-0.004999,0.249950,0,0);-ms-transform:matrix(0.577155,0.011543,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.577155,0.011543,-0.004999,0.249950,0,0);}
.m44_c00029{transform:matrix(0.623915,0.012478,-0.004999,0.249950,0,0);-ms-transform:matrix(0.623915,0.012478,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.623915,0.012478,-0.004999,0.249950,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:0.000000px;}
.fc0_c00029{color:transparent;}
.fs5_c00029{font-size:48.306182px;}
.fs2_c00029{font-size:51.456585px;}
.fse_c00029{font-size:55.661129px;}
.fs9_c00029{font-size:57.761549px;}
.fs12_c00029{font-size:58.811759px;}
.fs3_c00029{font-size:59.857660px;}
.fsb_c00029{font-size:59.861969px;}
.fs7_c00029{font-size:60.912179px;}
.fs8_c00029{font-size:61.962389px;}
.fs6_c00029{font-size:63.012599px;}
.fs0_c00029{font-size:64.050000px;}
.fsa_c00029{font-size:64.062809px;}
.fs11_c00029{font-size:65.113019px;}
.fs4_c00029{font-size:66.158467px;}
.fsf_c00029{font-size:66.163229px;}
.fs10_c00029{font-size:67.213439px;}
.fsd_c00029{font-size:69.313859px;}
.fs1_c00029{font-size:70.359004px;}
.fsc_c00029{font-size:70.364069px;}
.y0_c00029{bottom:0.000000px;}
.ye7_c00029{bottom:33.468450px;}
.ye6_c00029{bottom:33.774930px;}
.ye5_c00029{bottom:34.568820px;}
.ye4_c00029{bottom:34.851000px;}
.ye3_c00029{bottom:35.825700px;}
.ye2_c00029{bottom:36.152220px;}
.ye1_c00029{bottom:36.904110px;}
.ye0_c00029{bottom:50.105310px;}
.ydf_c00029{bottom:50.323890px;}
.yde_c00029{bottom:51.345030px;}
.ydd_c00029{bottom:51.726000px;}
.ydc_c00029{bottom:52.053930px;}
.ydb_c00029{bottom:52.290840px;}
.yda_c00029{bottom:52.917990px;}
.yd9_c00029{bottom:53.304000px;}
.yd8_c00029{bottom:53.726880px;}
.yd7_c00029{bottom:54.189090px;}
.yd6_c00029{bottom:66.219360px;}
.yd5_c00029{bottom:66.588900px;}
.yd4_c00029{bottom:67.161840px;}
.yd3_c00029{bottom:68.257500px;}
.yd2_c00029{bottom:70.209900px;}
.yd1_c00029{bottom:70.826430px;}
.yd0_c00029{bottom:71.472720px;}
.ycf_c00029{bottom:85.119900px;}
.yce_c00029{bottom:85.770060px;}
.ycd_c00029{bottom:85.917630px;}
.ycc_c00029{bottom:86.661360px;}
.ycb_c00029{bottom:87.127350px;}
.yca_c00029{bottom:87.814500px;}
.yc9_c00029{bottom:88.212720px;}
.yc8_c00029{bottom:100.303800px;}
.yc7_c00029{bottom:100.630020px;}
.yc6_c00029{bottom:101.699700px;}
.yc5_c00029{bottom:102.067890px;}
.yc4_c00029{bottom:102.905580px;}
.yc3_c00029{bottom:103.679040px;}
.yc2_c00029{bottom:104.688960px;}
.yc1_c00029{bottom:105.229230px;}
.yc0_c00029{bottom:117.955020px;}
.ybf_c00029{bottom:118.188180px;}
.ybe_c00029{bottom:119.169840px;}
.ybd_c00029{bottom:119.814180px;}
.ybc_c00029{bottom:120.536130px;}
.ybb_c00029{bottom:120.903210px;}
.yba_c00029{bottom:121.703100px;}
.yb9_c00029{bottom:133.885560px;}
.yb8_c00029{bottom:134.438070px;}
.yb7_c00029{bottom:134.744850px;}
.yb6_c00029{bottom:135.840480px;}
.yb5_c00029{bottom:136.059300px;}
.yb4_c00029{bottom:136.447950px;}
.yb3_c00029{bottom:137.443200px;}
.yb2_c00029{bottom:137.903550px;}
.yb1_c00029{bottom:154.175460px;}
.yb0_c00029{bottom:154.899420px;}
.yaf_c00029{bottom:155.273970px;}
.yae_c00029{bottom:155.537700px;}
.yad_c00029{bottom:156.580110px;}
.yac_c00029{bottom:156.779880px;}
.yab_c00029{bottom:157.073370px;}
.ya9_c00029{bottom:171.233700px;}
.yaa_c00029{bottom:171.233820px;}
.ya7_c00029{bottom:171.233910px;}
.ya8_c00029{bottom:171.233970px;}
.ya6_c00029{bottom:171.234060px;}
.ya4_c00029{bottom:171.234180px;}
.ya5_c00029{bottom:171.234570px;}
.ya3_c00029{bottom:185.536860px;}
.ya2_c00029{bottom:185.974770px;}
.ya1_c00029{bottom:186.909210px;}
.ya0_c00029{bottom:188.304870px;}
.y9f_c00029{bottom:188.596590px;}
.y9e_c00029{bottom:188.800860px;}
.y9d_c00029{bottom:189.212400px;}
.y9c_c00029{bottom:202.835040px;}
.y9b_c00029{bottom:205.028190px;}
.y9a_c00029{bottom:205.562070px;}
.y99_c00029{bottom:206.505840px;}
.y98_c00029{bottom:208.389300px;}
.y97_c00029{bottom:218.592930px;}
.y96_c00029{bottom:220.052160px;}
.y95_c00029{bottom:221.374410px;}
.y94_c00029{bottom:221.680860px;}
.y93_c00029{bottom:221.751510px;}
.y92_c00029{bottom:222.761010px;}
.y91_c00029{bottom:223.509000px;}
.y8c_c00029{bottom:239.433450px;}
.y8d_c00029{bottom:239.433600px;}
.y8b_c00029{bottom:239.433690px;}
.y90_c00029{bottom:239.433720px;}
.y8f_c00029{bottom:239.433960px;}
.y8e_c00029{bottom:239.434140px;}
.y8a_c00029{bottom:239.434380px;}
.y89_c00029{bottom:253.392690px;}
.y88_c00029{bottom:253.674780px;}
.y87_c00029{bottom:254.305740px;}
.y86_c00029{bottom:254.611560px;}
.y85_c00029{bottom:255.121620px;}
.y84_c00029{bottom:255.268950px;}
.y83_c00029{bottom:255.973680px;}
.y82_c00029{bottom:256.300830px;}
.y81_c00029{bottom:256.629720px;}
.y80_c00029{bottom:257.805090px;}
.y7f_c00029{bottom:270.161130px;}
.y7e_c00029{bottom:271.870110px;}
.y7d_c00029{bottom:272.237250px;}
.y7c_c00029{bottom:272.770110px;}
.y7b_c00029{bottom:273.342720px;}
.y7a_c00029{bottom:274.446810px;}
.y79_c00029{bottom:274.943820px;}
.y78_c00029{bottom:275.629920px;}
.y77_c00029{bottom:303.639510px;}
.y76_c00029{bottom:303.967860px;}
.y75_c00029{bottom:304.421040px;}
.y74_c00029{bottom:304.985880px;}
.y73_c00029{bottom:306.127830px;}
.y72_c00029{bottom:307.303050px;}
.y71_c00029{bottom:307.562520px;}
.y70_c00029{bottom:308.033940px;}
.y6f_c00029{bottom:320.963910px;}
.y6e_c00029{bottom:321.248400px;}
.y6d_c00029{bottom:321.799260px;}
.y6c_c00029{bottom:322.321200px;}
.y6b_c00029{bottom:322.546020px;}
.y6a_c00029{bottom:323.447670px;}
.y69_c00029{bottom:324.234270px;}
.y68_c00029{bottom:338.184840px;}
.y67_c00029{bottom:339.460740px;}
.y66_c00029{bottom:340.419450px;}
.y65_c00029{bottom:341.667840px;}
.y64_c00029{bottom:342.328920px;}
.y63_c00029{bottom:357.867060px;}
.y61_c00029{bottom:357.867240px;}
.y5d_c00029{bottom:357.867420px;}
.y5b_c00029{bottom:357.867450px;}
.y62_c00029{bottom:357.867600px;}
.y60_c00029{bottom:357.867630px;}
.y5f_c00029{bottom:357.867810px;}
.y5e_c00029{bottom:357.867840px;}
.y5c_c00029{bottom:357.867900px;}
.y5a_c00029{bottom:372.204180px;}
.y59_c00029{bottom:372.762990px;}
.y58_c00029{bottom:373.955130px;}
.y57_c00029{bottom:374.821050px;}
.y56_c00029{bottom:376.030320px;}
.y55_c00029{bottom:376.627920px;}
.y4e_c00029{bottom:391.892940px;}
.y51_c00029{bottom:391.893150px;}
.y4f_c00029{bottom:391.893450px;}
.y50_c00029{bottom:391.893630px;}
.y52_c00029{bottom:391.893870px;}
.y53_c00029{bottom:391.893900px;}
.y54_c00029{bottom:391.894560px;}
.y4c_c00029{bottom:406.238820px;}
.y4b_c00029{bottom:406.238970px;}
.y4a_c00029{bottom:406.239420px;}
.y47_c00029{bottom:406.239450px;}
.y4d_c00029{bottom:406.239510px;}
.y48_c00029{bottom:406.239810px;}
.y49_c00029{bottom:406.239960px;}
.y46_c00029{bottom:406.240200px;}
.y44_c00029{bottom:406.240500px;}
.y45_c00029{bottom:406.240740px;}
.y43_c00029{bottom:422.559300px;}
.y42_c00029{bottom:423.226200px;}
.y41_c00029{bottom:423.717150px;}
.y40_c00029{bottom:424.860150px;}
.y3f_c00029{bottom:425.258130px;}
.y3e_c00029{bottom:426.152280px;}
.y3d_c00029{bottom:426.480570px;}
.y3c_c00029{bottom:427.127670px;}
.y3b_c00029{bottom:439.632390px;}
.y3a_c00029{bottom:440.123700px;}
.y39_c00029{bottom:440.988930px;}
.y38_c00029{bottom:441.154320px;}
.y37_c00029{bottom:441.942660px;}
.y36_c00029{bottom:442.296810px;}
.y35_c00029{bottom:443.158290px;}
.y34_c00029{bottom:443.552700px;}
.y33_c00029{bottom:444.369180px;}
.y32_c00029{bottom:444.685830px;}
.y31_c00029{bottom:455.834700px;}
.y30_c00029{bottom:456.272820px;}
.y2f_c00029{bottom:457.205550px;}
.y2e_c00029{bottom:457.407210px;}
.y2d_c00029{bottom:458.597250px;}
.y2c_c00029{bottom:459.282150px;}
.y2b_c00029{bottom:473.788950px;}
.y2a_c00029{bottom:475.236300px;}
.y29_c00029{bottom:475.475580px;}
.y28_c00029{bottom:476.424600px;}
.y27_c00029{bottom:476.958660px;}
.y26_c00029{bottom:477.888360px;}
.y25_c00029{bottom:478.141890px;}
.y24_c00029{bottom:478.714500px;}
.y1e_c00029{bottom:493.548372px;}
.y23_c00029{bottom:493.548552px;}
.y1f_c00029{bottom:493.548612px;}
.y1d_c00029{bottom:493.548720px;}
.y21_c00029{bottom:493.548996px;}
.y22_c00029{bottom:493.549176px;}
.y20_c00029{bottom:493.549200px;}
.y1c_c00029{bottom:507.547956px;}
.y1b_c00029{bottom:507.853968px;}
.y1a_c00029{bottom:508.951968px;}
.y19_c00029{bottom:509.538096px;}
.y18_c00029{bottom:510.139644px;}
.y17_c00029{bottom:510.722352px;}
.y16_c00029{bottom:510.993768px;}
.y15_c00029{bottom:511.376352px;}
.yf_c00029{bottom:527.186172px;}
.y11_c00029{bottom:527.186520px;}
.y10_c00029{bottom:527.186664px;}
.y13_c00029{bottom:527.186952px;}
.y12_c00029{bottom:527.187204px;}
.y14_c00029{bottom:527.187540px;}
.ye_c00029{bottom:541.013448px;}
.yd_c00029{bottom:542.167512px;}
.yc_c00029{bottom:543.466776px;}
.yb_c00029{bottom:543.912648px;}
.ya_c00029{bottom:544.885704px;}
.y9_c00029{bottom:545.290344px;}
.y8_c00029{bottom:545.670528px;}
.y7_c00029{bottom:558.232656px;}
.y6_c00029{bottom:558.646488px;}
.y5_c00029{bottom:559.040808px;}
.y4_c00029{bottom:559.883520px;}
.y3_c00029{bottom:560.807952px;}
.y2_c00029{bottom:562.683000px;}
.y1_c00029{bottom:577.803000px;}
.h7_c00029{height:48.306182px;}
.h4_c00029{height:51.456585px;}
.h10_c00029{height:55.661129px;}
.hb_c00029{height:57.761549px;}
.h14_c00029{height:58.811759px;}
.h5_c00029{height:59.857660px;}
.hd_c00029{height:59.861969px;}
.h9_c00029{height:60.912179px;}
.ha_c00029{height:61.962389px;}
.h8_c00029{height:63.012599px;}
.h2_c00029{height:64.050000px;}
.hc_c00029{height:64.062809px;}
.h13_c00029{height:65.113019px;}
.h6_c00029{height:66.158467px;}
.h11_c00029{height:66.163229px;}
.h12_c00029{height:67.213439px;}
.hf_c00029{height:69.313859px;}
.h3_c00029{height:70.359004px;}
.he_c00029{height:70.364069px;}
.h1_c00029{height:615.750000px;}
.h0_c00029{height:615.870000px;}
.w0_c00029{width:367.200000px;}
.w1_c00029{width:367.500000px;}
.x0_c00029{left:0.000000px;}
.x70_c00029{left:44.692440px;}
.x61_c00029{left:45.728040px;}
.x47_c00029{left:46.788570px;}
.x4c_c00029{left:48.159870px;}
.x29_c00029{left:49.891440px;}
.x1b_c00029{left:51.300840px;}
.x2_c00029{left:52.452000px;}
.x22_c00029{left:61.317000px;}
.x2e_c00029{left:67.823970px;}
.x65_c00029{left:69.394590px;}
.x68_c00029{left:70.865700px;}
.x75_c00029{left:74.056740px;}
.x8_c00029{left:75.720744px;}
.x69_c00029{left:77.840910px;}
.x14_c00029{left:78.958968px;}
.x71_c00029{left:80.884950px;}
.x41_c00029{left:83.206890px;}
.x1c_c00029{left:86.675388px;}
.x48_c00029{left:88.095870px;}
.x23_c00029{left:89.947500px;}
.x34_c00029{left:91.306230px;}
.x50_c00029{left:94.300830px;}
.x58_c00029{left:96.938040px;}
.x15_c00029{left:98.360592px;}
.x9_c00029{left:101.010744px;}
.x24_c00029{left:102.624000px;}
.x2a_c00029{left:107.020590px;}
.x4d_c00029{left:108.648330px;}
.x62_c00029{left:110.537310px;}
.x35_c00029{left:111.847380px;}
.x2f_c00029{left:113.149770px;}
.x6c_c00029{left:118.047480px;}
.x44_c00029{left:120.703770px;}
.x77_c00029{left:121.952010px;}
.x3a_c00029{left:124.483350px;}
.x6d_c00029{left:130.995150px;}
.x5f_c00029{left:132.061290px;}
.x30_c00029{left:135.046140px;}
.x16_c00029{left:139.937412px;}
.x66_c00029{left:141.228300px;}
.xe_c00029{left:142.303200px;}
.x72_c00029{left:143.303670px;}
.x3f_c00029{left:147.709320px;}
.x1d_c00029{left:149.864064px;}
.x45_c00029{left:151.219980px;}
.x5d_c00029{left:153.472230px;}
.xa_c00029{left:161.826744px;}
.x3b_c00029{left:163.911600px;}
.x49_c00029{left:166.121610px;}
.x36_c00029{left:167.734350px;}
.x3_c00029{left:169.642500px;}
.x1e_c00029{left:170.926464px;}
.x6e_c00029{left:173.944860px;}
.x25_c00029{left:175.812000px;}
.x4e_c00029{left:178.040550px;}
.x3c_c00029{left:180.925410px;}
.x17_c00029{left:182.879280px;}
.x59_c00029{left:185.785560px;}
.xb_c00029{left:189.693744px;}
.xf_c00029{left:191.449776px;}
.x37_c00029{left:192.585330px;}
.x1_c00029{left:195.480000px;}
.x42_c00029{left:198.521010px;}
.x31_c00029{left:202.580340px;}
.x40_c00029{left:204.420000px;}
.x2b_c00029{left:206.138430px;}
.x63_c00029{left:210.182250px;}
.x78_c00029{left:211.806810px;}
.x56_c00029{left:214.252080px;}
.x1f_c00029{left:215.481864px;}
.x53_c00029{left:217.939230px;}
.x3d_c00029{left:220.083570px;}
.x26_c00029{left:223.263000px;}
.x18_c00029{left:224.763624px;}
.x4a_c00029{left:226.061910px;}
.x4_c00029{left:227.419500px;}
.x27_c00029{left:235.227000px;}
.x54_c00029{left:236.296230px;}
.x51_c00029{left:239.120910px;}
.x67_c00029{left:241.688970px;}
.x32_c00029{left:246.349080px;}
.x10_c00029{left:249.777204px;}
.x73_c00029{left:253.234440px;}
.x33_c00029{left:255.518940px;}
.x38_c00029{left:263.991030px;}
.x57_c00029{left:265.250160px;}
.x11_c00029{left:266.520000px;}
.x79_c00029{left:268.533120px;}
.xc_c00029{left:270.897744px;}
.x20_c00029{left:274.079364px;}
.x64_c00029{left:276.937260px;}
.x4f_c00029{left:277.960560px;}
.x5_c00029{left:280.089000px;}
.x5a_c00029{left:281.114190px;}
.x76_c00029{left:286.673220px;}
.x12_c00029{left:290.823216px;}
.x6a_c00029{left:292.548180px;}
.x39_c00029{left:294.690990px;}
.x43_c00029{left:295.747380px;}
.x60_c00029{left:298.944630px;}
.x2c_c00029{left:300.673050px;}
.x74_c00029{left:301.678890px;}
.x19_c00029{left:303.141120px;}
.x6_c00029{left:304.734000px;}
.x4b_c00029{left:305.763270px;}
.x28_c00029{left:307.594500px;}
.x5b_c00029{left:308.659200px;}
.x3e_c00029{left:310.551720px;}
.x13_c00029{left:311.885616px;}
.x6f_c00029{left:318.439620px;}
.x21_c00029{left:320.255172px;}
.x55_c00029{left:321.745230px;}
.x52_c00029{left:323.321160px;}
.x1a_c00029{left:324.986316px;}
.x5c_c00029{left:326.753430px;}
.x46_c00029{left:329.455230px;}
.x7_c00029{left:330.598500px;}
.x6b_c00029{left:332.028420px;}
.x5e_c00029{left:335.179650px;}
.x2d_c00029{left:337.134870px;}
.xd_c00029{left:343.026744px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs5_c00029{font-size:42.938828pt;}
.fs2_c00029{font-size:45.739187pt;}
.fse_c00029{font-size:49.476559pt;}
.fs9_c00029{font-size:51.343599pt;}
.fs12_c00029{font-size:52.277119pt;}
.fs3_c00029{font-size:53.206809pt;}
.fsb_c00029{font-size:53.210639pt;}
.fs7_c00029{font-size:54.144159pt;}
.fs8_c00029{font-size:55.077679pt;}
.fs6_c00029{font-size:56.011199pt;}
.fs0_c00029{font-size:56.933333pt;}
.fsa_c00029{font-size:56.944719pt;}
.fs11_c00029{font-size:57.878239pt;}
.fs4_c00029{font-size:58.807526pt;}
.fsf_c00029{font-size:58.811759pt;}
.fs10_c00029{font-size:59.745279pt;}
.fsd_c00029{font-size:61.612319pt;}
.fs1_c00029{font-size:62.541337pt;}
.fsc_c00029{font-size:62.545839pt;}
.y0_c00029{bottom:0.000000pt;}
.ye7_c00029{bottom:29.749733pt;}
.ye6_c00029{bottom:30.022160pt;}
.ye5_c00029{bottom:30.727840pt;}
.ye4_c00029{bottom:30.978667pt;}
.ye3_c00029{bottom:31.845067pt;}
.ye2_c00029{bottom:32.135307pt;}
.ye1_c00029{bottom:32.803653pt;}
.ye0_c00029{bottom:44.538053pt;}
.ydf_c00029{bottom:44.732347pt;}
.yde_c00029{bottom:45.640027pt;}
.ydd_c00029{bottom:45.978667pt;}
.ydc_c00029{bottom:46.270160pt;}
.ydb_c00029{bottom:46.480747pt;}
.yda_c00029{bottom:47.038213pt;}
.yd9_c00029{bottom:47.381333pt;}
.yd8_c00029{bottom:47.757227pt;}
.yd7_c00029{bottom:48.168080pt;}
.yd6_c00029{bottom:58.861653pt;}
.yd5_c00029{bottom:59.190133pt;}
.yd4_c00029{bottom:59.699413pt;}
.yd3_c00029{bottom:60.673333pt;}
.yd2_c00029{bottom:62.408800pt;}
.yd1_c00029{bottom:62.956827pt;}
.yd0_c00029{bottom:63.531307pt;}
.ycf_c00029{bottom:75.662133pt;}
.yce_c00029{bottom:76.240053pt;}
.ycd_c00029{bottom:76.371227pt;}
.ycc_c00029{bottom:77.032320pt;}
.ycb_c00029{bottom:77.446533pt;}
.yca_c00029{bottom:78.057333pt;}
.yc9_c00029{bottom:78.411307pt;}
.yc8_c00029{bottom:89.158933pt;}
.yc7_c00029{bottom:89.448907pt;}
.yc6_c00029{bottom:90.399733pt;}
.yc5_c00029{bottom:90.727013pt;}
.yc4_c00029{bottom:91.471627pt;}
.yc3_c00029{bottom:92.159147pt;}
.yc2_c00029{bottom:93.056853pt;}
.yc1_c00029{bottom:93.537093pt;}
.yc0_c00029{bottom:104.848907pt;}
.ybf_c00029{bottom:105.056160pt;}
.ybe_c00029{bottom:105.928747pt;}
.ybd_c00029{bottom:106.501493pt;}
.ybc_c00029{bottom:107.143227pt;}
.ybb_c00029{bottom:107.469520pt;}
.yba_c00029{bottom:108.180533pt;}
.yb9_c00029{bottom:119.009387pt;}
.yb8_c00029{bottom:119.500507pt;}
.yb7_c00029{bottom:119.773200pt;}
.yb6_c00029{bottom:120.747093pt;}
.yb5_c00029{bottom:120.941600pt;}
.yb4_c00029{bottom:121.287067pt;}
.yb3_c00029{bottom:122.171733pt;}
.yb2_c00029{bottom:122.580933pt;}
.yb1_c00029{bottom:137.044853pt;}
.yb0_c00029{bottom:137.688373pt;}
.yaf_c00029{bottom:138.021307pt;}
.yae_c00029{bottom:138.255733pt;}
.yad_c00029{bottom:139.182320pt;}
.yac_c00029{bottom:139.359893pt;}
.yab_c00029{bottom:139.620773pt;}
.ya9_c00029{bottom:152.207733pt;}
.yaa_c00029{bottom:152.207840pt;}
.ya7_c00029{bottom:152.207920pt;}
.ya8_c00029{bottom:152.207973pt;}
.ya6_c00029{bottom:152.208053pt;}
.ya4_c00029{bottom:152.208160pt;}
.ya5_c00029{bottom:152.208507pt;}
.ya3_c00029{bottom:164.921653pt;}
.ya2_c00029{bottom:165.310907pt;}
.ya1_c00029{bottom:166.141520pt;}
.ya0_c00029{bottom:167.382107pt;}
.y9f_c00029{bottom:167.641413pt;}
.y9e_c00029{bottom:167.822987pt;}
.y9d_c00029{bottom:168.188800pt;}
.y9c_c00029{bottom:180.297813pt;}
.y9b_c00029{bottom:182.247280pt;}
.y9a_c00029{bottom:182.721840pt;}
.y99_c00029{bottom:183.560747pt;}
.y98_c00029{bottom:185.234933pt;}
.y97_c00029{bottom:194.304827pt;}
.y96_c00029{bottom:195.601920pt;}
.y95_c00029{bottom:196.777253pt;}
.y94_c00029{bottom:197.049653pt;}
.y93_c00029{bottom:197.112453pt;}
.y92_c00029{bottom:198.009787pt;}
.y91_c00029{bottom:198.674667pt;}
.y8c_c00029{bottom:212.829733pt;}
.y8d_c00029{bottom:212.829867pt;}
.y8b_c00029{bottom:212.829947pt;}
.y90_c00029{bottom:212.829973pt;}
.y8f_c00029{bottom:212.830187pt;}
.y8e_c00029{bottom:212.830347pt;}
.y8a_c00029{bottom:212.830560pt;}
.y89_c00029{bottom:225.237947pt;}
.y88_c00029{bottom:225.488693pt;}
.y87_c00029{bottom:226.049547pt;}
.y86_c00029{bottom:226.321387pt;}
.y85_c00029{bottom:226.774773pt;}
.y84_c00029{bottom:226.905733pt;}
.y83_c00029{bottom:227.532160pt;}
.y82_c00029{bottom:227.822960pt;}
.y81_c00029{bottom:228.115307pt;}
.y80_c00029{bottom:229.160080pt;}
.y7f_c00029{bottom:240.143227pt;}
.y7e_c00029{bottom:241.662320pt;}
.y7d_c00029{bottom:241.988667pt;}
.y7c_c00029{bottom:242.462320pt;}
.y7b_c00029{bottom:242.971307pt;}
.y7a_c00029{bottom:243.952720pt;}
.y79_c00029{bottom:244.394507pt;}
.y78_c00029{bottom:245.004373pt;}
.y77_c00029{bottom:269.901787pt;}
.y76_c00029{bottom:270.193653pt;}
.y75_c00029{bottom:270.596480pt;}
.y74_c00029{bottom:271.098560pt;}
.y73_c00029{bottom:272.113627pt;}
.y72_c00029{bottom:273.158267pt;}
.y71_c00029{bottom:273.388907pt;}
.y70_c00029{bottom:273.807947pt;}
.y6f_c00029{bottom:285.301253pt;}
.y6e_c00029{bottom:285.554133pt;}
.y6d_c00029{bottom:286.043787pt;}
.y6c_c00029{bottom:286.507733pt;}
.y6b_c00029{bottom:286.707573pt;}
.y6a_c00029{bottom:287.509040pt;}
.y69_c00029{bottom:288.208240pt;}
.y68_c00029{bottom:300.608747pt;}
.y67_c00029{bottom:301.742880pt;}
.y66_c00029{bottom:302.595067pt;}
.y65_c00029{bottom:303.704747pt;}
.y64_c00029{bottom:304.292373pt;}
.y63_c00029{bottom:318.104053pt;}
.y61_c00029{bottom:318.104213pt;}
.y5d_c00029{bottom:318.104373pt;}
.y5b_c00029{bottom:318.104400pt;}
.y62_c00029{bottom:318.104533pt;}
.y60_c00029{bottom:318.104560pt;}
.y5f_c00029{bottom:318.104720pt;}
.y5e_c00029{bottom:318.104747pt;}
.y5c_c00029{bottom:318.104800pt;}
.y5a_c00029{bottom:330.848160pt;}
.y59_c00029{bottom:331.344880pt;}
.y58_c00029{bottom:332.404560pt;}
.y57_c00029{bottom:333.174267pt;}
.y56_c00029{bottom:334.249173pt;}
.y55_c00029{bottom:334.780373pt;}
.y4e_c00029{bottom:348.349280pt;}
.y51_c00029{bottom:348.349467pt;}
.y4f_c00029{bottom:348.349733pt;}
.y50_c00029{bottom:348.349893pt;}
.y52_c00029{bottom:348.350107pt;}
.y53_c00029{bottom:348.350133pt;}
.y54_c00029{bottom:348.350720pt;}
.y4c_c00029{bottom:361.101173pt;}
.y4b_c00029{bottom:361.101307pt;}
.y4a_c00029{bottom:361.101707pt;}
.y47_c00029{bottom:361.101733pt;}
.y4d_c00029{bottom:361.101787pt;}
.y48_c00029{bottom:361.102053pt;}
.y49_c00029{bottom:361.102187pt;}
.y46_c00029{bottom:361.102400pt;}
.y44_c00029{bottom:361.102667pt;}
.y45_c00029{bottom:361.102880pt;}
.y43_c00029{bottom:375.608267pt;}
.y42_c00029{bottom:376.201067pt;}
.y41_c00029{bottom:376.637467pt;}
.y40_c00029{bottom:377.653467pt;}
.y3f_c00029{bottom:378.007227pt;}
.y3e_c00029{bottom:378.802027pt;}
.y3d_c00029{bottom:379.093840pt;}
.y3c_c00029{bottom:379.669040pt;}
.y3b_c00029{bottom:390.784347pt;}
.y3a_c00029{bottom:391.221067pt;}
.y39_c00029{bottom:391.990160pt;}
.y38_c00029{bottom:392.137173pt;}
.y37_c00029{bottom:392.837920pt;}
.y36_c00029{bottom:393.152720pt;}
.y35_c00029{bottom:393.918480pt;}
.y34_c00029{bottom:394.269067pt;}
.y33_c00029{bottom:394.994827pt;}
.y32_c00029{bottom:395.276293pt;}
.y31_c00029{bottom:405.186400pt;}
.y30_c00029{bottom:405.575840pt;}
.y2f_c00029{bottom:406.404933pt;}
.y2e_c00029{bottom:406.584187pt;}
.y2d_c00029{bottom:407.642000pt;}
.y2c_c00029{bottom:408.250800pt;}
.y2b_c00029{bottom:421.145733pt;}
.y2a_c00029{bottom:422.432267pt;}
.y29_c00029{bottom:422.644960pt;}
.y28_c00029{bottom:423.488533pt;}
.y27_c00029{bottom:423.963253pt;}
.y26_c00029{bottom:424.789653pt;}
.y25_c00029{bottom:425.015013pt;}
.y24_c00029{bottom:425.524000pt;}
.y1e_c00029{bottom:438.709664pt;}
.y23_c00029{bottom:438.709824pt;}
.y1f_c00029{bottom:438.709877pt;}
.y1d_c00029{bottom:438.709973pt;}
.y21_c00029{bottom:438.710219pt;}
.y22_c00029{bottom:438.710379pt;}
.y20_c00029{bottom:438.710400pt;}
.y1c_c00029{bottom:451.153739pt;}
.y1b_c00029{bottom:451.425749pt;}
.y1a_c00029{bottom:452.401749pt;}
.y19_c00029{bottom:452.922752pt;}
.y18_c00029{bottom:453.457461pt;}
.y17_c00029{bottom:453.975424pt;}
.y16_c00029{bottom:454.216683pt;}
.y15_c00029{bottom:454.556757pt;}
.yf_c00029{bottom:468.609931pt;}
.y11_c00029{bottom:468.610240pt;}
.y10_c00029{bottom:468.610368pt;}
.y13_c00029{bottom:468.610624pt;}
.y12_c00029{bottom:468.610848pt;}
.y14_c00029{bottom:468.611147pt;}
.ye_c00029{bottom:480.900843pt;}
.yd_c00029{bottom:481.926677pt;}
.yc_c00029{bottom:483.081579pt;}
.yb_c00029{bottom:483.477909pt;}
.ya_c00029{bottom:484.342848pt;}
.y9_c00029{bottom:484.702528pt;}
.y8_c00029{bottom:485.040469pt;}
.y7_c00029{bottom:496.206805pt;}
.y6_c00029{bottom:496.574656pt;}
.y5_c00029{bottom:496.925163pt;}
.y4_c00029{bottom:497.674240pt;}
.y3_c00029{bottom:498.495957pt;}
.y2_c00029{bottom:500.162667pt;}
.y1_c00029{bottom:513.602667pt;}
.h7_c00029{height:42.938828pt;}
.h4_c00029{height:45.739187pt;}
.h10_c00029{height:49.476559pt;}
.hb_c00029{height:51.343599pt;}
.h14_c00029{height:52.277119pt;}
.h5_c00029{height:53.206809pt;}
.hd_c00029{height:53.210639pt;}
.h9_c00029{height:54.144159pt;}
.ha_c00029{height:55.077679pt;}
.h8_c00029{height:56.011199pt;}
.h2_c00029{height:56.933333pt;}
.hc_c00029{height:56.944719pt;}
.h13_c00029{height:57.878239pt;}
.h6_c00029{height:58.807526pt;}
.h11_c00029{height:58.811759pt;}
.h12_c00029{height:59.745279pt;}
.hf_c00029{height:61.612319pt;}
.h3_c00029{height:62.541337pt;}
.he_c00029{height:62.545839pt;}
.h1_c00029{height:547.333333pt;}
.h0_c00029{height:547.440000pt;}
.w0_c00029{width:326.400000pt;}
.w1_c00029{width:326.666667pt;}
.x0_c00029{left:0.000000pt;}
.x70_c00029{left:39.726613pt;}
.x61_c00029{left:40.647147pt;}
.x47_c00029{left:41.589840pt;}
.x4c_c00029{left:42.808773pt;}
.x29_c00029{left:44.347947pt;}
.x1b_c00029{left:45.600747pt;}
.x2_c00029{left:46.624000pt;}
.x22_c00029{left:54.504000pt;}
.x2e_c00029{left:60.287973pt;}
.x65_c00029{left:61.684080pt;}
.x68_c00029{left:62.991733pt;}
.x75_c00029{left:65.828213pt;}
.x8_c00029{left:67.307328pt;}
.x69_c00029{left:69.191920pt;}
.x14_c00029{left:70.185749pt;}
.x71_c00029{left:71.897733pt;}
.x41_c00029{left:73.961680pt;}
.x1c_c00029{left:77.044789pt;}
.x48_c00029{left:78.307440pt;}
.x23_c00029{left:79.953333pt;}
.x34_c00029{left:81.161093pt;}
.x50_c00029{left:83.822960pt;}
.x58_c00029{left:86.167147pt;}
.x15_c00029{left:87.431637pt;}
.x9_c00029{left:89.787328pt;}
.x24_c00029{left:91.221333pt;}
.x2a_c00029{left:95.129413pt;}
.x4d_c00029{left:96.576293pt;}
.x62_c00029{left:98.255387pt;}
.x35_c00029{left:99.419893pt;}
.x2f_c00029{left:100.577573pt;}
.x6c_c00029{left:104.931093pt;}
.x44_c00029{left:107.292240pt;}
.x77_c00029{left:108.401787pt;}
.x3a_c00029{left:110.651867pt;}
.x6d_c00029{left:116.440133pt;}
.x5f_c00029{left:117.387813pt;}
.x30_c00029{left:120.041013pt;}
.x16_c00029{left:124.388811pt;}
.x66_c00029{left:125.536267pt;}
.xe_c00029{left:126.491733pt;}
.x72_c00029{left:127.381040pt;}
.x3f_c00029{left:131.297173pt;}
.x1d_c00029{left:133.212501pt;}
.x45_c00029{left:134.417760pt;}
.x5d_c00029{left:136.419760pt;}
.xa_c00029{left:143.845995pt;}
.x3b_c00029{left:145.699200pt;}
.x49_c00029{left:147.663653pt;}
.x36_c00029{left:149.097200pt;}
.x3_c00029{left:150.793333pt;}
.x1e_c00029{left:151.934635pt;}
.x6e_c00029{left:154.617653pt;}
.x25_c00029{left:156.277333pt;}
.x4e_c00029{left:158.258267pt;}
.x3c_c00029{left:160.822587pt;}
.x17_c00029{left:162.559360pt;}
.x59_c00029{left:165.142720pt;}
.xb_c00029{left:168.616661pt;}
.xf_c00029{left:170.177579pt;}
.x37_c00029{left:171.186960pt;}
.x1_c00029{left:173.760000pt;}
.x42_c00029{left:176.463120pt;}
.x31_c00029{left:180.071413pt;}
.x40_c00029{left:181.706667pt;}
.x2b_c00029{left:183.234160pt;}
.x63_c00029{left:186.828667pt;}
.x78_c00029{left:188.272720pt;}
.x56_c00029{left:190.446293pt;}
.x1f_c00029{left:191.539435pt;}
.x53_c00029{left:193.723760pt;}
.x3d_c00029{left:195.629840pt;}
.x26_c00029{left:198.456000pt;}
.x18_c00029{left:199.789888pt;}
.x4a_c00029{left:200.943920pt;}
.x4_c00029{left:202.150667pt;}
.x27_c00029{left:209.090667pt;}
.x54_c00029{left:210.041093pt;}
.x51_c00029{left:212.551920pt;}
.x67_c00029{left:214.834640pt;}
.x32_c00029{left:218.976960pt;}
.x10_c00029{left:222.024181pt;}
.x73_c00029{left:225.097280pt;}
.x33_c00029{left:227.127947pt;}
.x38_c00029{left:234.658693pt;}
.x57_c00029{left:235.777920pt;}
.x11_c00029{left:236.906667pt;}
.x79_c00029{left:238.696107pt;}
.xc_c00029{left:240.797995pt;}
.x20_c00029{left:243.626101pt;}
.x64_c00029{left:246.166453pt;}
.x4f_c00029{left:247.076053pt;}
.x5_c00029{left:248.968000pt;}
.x5a_c00029{left:249.879280pt;}
.x76_c00029{left:254.820640pt;}
.x12_c00029{left:258.509525pt;}
.x6a_c00029{left:260.042827pt;}
.x39_c00029{left:261.947547pt;}
.x43_c00029{left:262.886560pt;}
.x60_c00029{left:265.728560pt;}
.x2c_c00029{left:267.264933pt;}
.x74_c00029{left:268.159013pt;}
.x19_c00029{left:269.458773pt;}
.x6_c00029{left:270.874667pt;}
.x4b_c00029{left:271.789573pt;}
.x28_c00029{left:273.417333pt;}
.x5b_c00029{left:274.363733pt;}
.x3e_c00029{left:276.045973pt;}
.x13_c00029{left:277.231659pt;}
.x6f_c00029{left:283.057440pt;}
.x21_c00029{left:284.671264pt;}
.x55_c00029{left:285.995760pt;}
.x52_c00029{left:287.396587pt;}
.x1a_c00029{left:288.876725pt;}
.x5c_c00029{left:290.447493pt;}
.x46_c00029{left:292.849093pt;}
.x7_c00029{left:293.865333pt;}
.x6b_c00029{left:295.136373pt;}
.x5e_c00029{left:297.937467pt;}
.x2d_c00029{left:299.675440pt;}
.xd_c00029{left:304.912661pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00030 {
    display:none;
  }
  .loading-indicator_c00030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00030 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00030 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00030" -> "#page-container .classname_c00030")
 */
.pf_c00030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00030 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00030 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00030 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00030 {overflow:visible;}
  }
}
.c_c00030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00030 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00030:after { /* webkit #35443 */
  content: '';
}
.t_c00030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00030 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00030 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00030 { /* info for Javascript */
  display:none;
}
.l_c00030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00030:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00030 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00030.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9b_c00030{transform:matrix(0.042165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042165,0.000000,0.000000,0.250000,0,0);}
.m5c_c00030{transform:matrix(0.123315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123315,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{transform:matrix(0.130870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130870,0.000000,0.000000,0.250000,0,0);}
.m71_c00030{transform:matrix(0.141695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141695,0.000000,0.000000,0.250000,0,0);}
.m8d_c00030{transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.ma1_c00030{transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);}
.md4_c00030{transform:matrix(0.149120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149120,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.150810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150810,0.000000,0.000000,0.250000,0,0);}
.m5b_c00030{transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);}
.m89_c00030{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m95_c00030{transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);}
.md1_c00030{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.md6_c00030{transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);}
.m78_c00030{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m69_c00030{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.md5_c00030{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m4f_c00030{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.m6c_c00030{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);}
.m49_c00030{transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);}
.m45_c00030{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m80_c00030{transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);}
.mb9_c00030{transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);}
.m5a_c00030{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.m8c_c00030{transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);}
.m51_c00030{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m8e_c00030{transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);}
.m53_c00030{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mda_c00030{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m24_c00030{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.md7_c00030{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.mc1_c00030{transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);}
.mae_c00030{transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);}
.m79_c00030{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m4b_c00030{transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);}
.m68_c00030{transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);}
.m82_c00030{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m91_c00030{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{transform:matrix(0.176995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176995,0.000000,0.000000,0.250000,0,0);}
.m2c_c00030{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.m6b_c00030{transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);}
.mc6_c00030{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.ma8_c00030{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m97_c00030{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.m57_c00030{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00030{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m34_c00030{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m9d_c00030{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.m7e_c00030{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m2b_c00030{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.ma5_c00030{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m7a_c00030{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m6f_c00030{transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);}
.m37_c00030{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.ma6_c00030{transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);}
.m87_c00030{transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);}
.mcb_c00030{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.mcc_c00030{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.mcd_c00030{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.m81_c00030{transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);}
.m84_c00030{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m74_c00030{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.m40_c00030{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m23_c00030{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m48_c00030{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00030{transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);}
.md0_c00030{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m54_c00030{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m3c_c00030{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m4c_c00030{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00030{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);}
.md3_c00030{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.m4e_c00030{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);}
.m99_c00030{transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);}
.m8f_c00030{transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);}
.mb6_c00030{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.m43_c00030{transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);}
.m6e_c00030{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m7c_c00030{transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);}
.m62_c00030{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.mca_c00030{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m66_c00030{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m61_c00030{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.ma7_c00030{transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);}
.mbb_c00030{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.m67_c00030{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.m27_c00030{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m29_c00030{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.m64_c00030{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.m65_c00030{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m58_c00030{transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);}
.m70_c00030{transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);}
.m3a_c00030{transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);}
.m38_c00030{transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);}
.m52_c00030{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00030{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m3e_c00030{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.m41_c00030{transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);}
.mac_c00030{transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.ma4_c00030{transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);}
.mba_c00030{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.mdb_c00030{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m98_c00030{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m90_c00030{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m8b_c00030{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m32_c00030{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00030{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.m72_c00030{transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);}
.m7d_c00030{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.m7b_c00030{transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);}
.m56_c00030{transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);}
.mc7_c00030{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.md9_c00030{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m9a_c00030{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.mc0_c00030{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.m88_c00030{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00030{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00030{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.ma0_c00030{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.mab_c00030{transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);}
.m6a_c00030{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.ma3_c00030{transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);}
.m26_c00030{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);}
.m33_c00030{transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);}
.m42_c00030{transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);}
.m9c_c00030{transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);}
.m76_c00030{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m8a_c00030{transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00030{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.mc5_c00030{transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);}
.m83_c00030{transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);}
.m25_c00030{transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);}
.m59_c00030{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.maf_c00030{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.mbe_c00030{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m73_c00030{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00030{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.mbf_c00030{transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);}
.m77_c00030{transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);}
.m35_c00030{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m92_c00030{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.mcf_c00030{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.mbc_c00030{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.md8_c00030{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);}
.m2f_c00030{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m1f_c00030{transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);}
.mb8_c00030{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m5d_c00030{transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);}
.mc8_c00030{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m39_c00030{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.m19_c00030{transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);}
.m22_c00030{transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.mb2_c00030{transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);}
.mc3_c00030{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m4a_c00030{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.mad_c00030{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.mb1_c00030{transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00030{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.mc4_c00030{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.mc9_c00030{transform:matrix(0.237040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237040,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00030{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.md2_c00030{transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);}
.m1e_c00030{transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);}
.mce_c00030{transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m93_c00030{transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);}
.m2e_c00030{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m2a_c00030{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m9f_c00030{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m36_c00030{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.mde_c00030{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);}
.m50_c00030{transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);}
.m20_c00030{transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);}
.m46_c00030{transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);}
.m94_c00030{transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);}
.m63_c00030{transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);}
.maa_c00030{transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);}
.m9e_c00030{transform:matrix(0.272715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272715,0.000000,0.000000,0.250000,0,0);}
.mbd_c00030{transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);}
.m5f_c00030{transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);}
.me_c00030{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.mc2_c00030{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.m85_c00030{transform:matrix(0.299495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299495,0.000000,0.000000,0.250000,0,0);}
.ma9_c00030{transform:matrix(0.304680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304680,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);}
.m75_c00030{transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);}
.mb4_c00030{transform:matrix(0.317335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317335,0.000000,0.000000,0.250000,0,0);}
.m30_c00030{transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);}
.m60_c00030{transform:matrix(0.338420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338420,0.000000,0.000000,0.250000,0,0);}
.ma2_c00030{transform:matrix(0.346105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346105,0.000000,0.000000,0.250000,0,0);}
.m86_c00030{transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);}
.m47_c00030{transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);}
.mb5_c00030{transform:matrix(0.379905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379905,0.000000,0.000000,0.250000,0,0);}
.mb7_c00030{transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);}
.m96_c00030{transform:matrix(0.531080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531080,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:0.000000px;}
.fc0_c00030{color:transparent;}
.fsc_c00030{font-size:55.650000px;}
.fsb_c00030{font-size:57.750000px;}
.fs8_c00030{font-size:58.800000px;}
.fs4_c00030{font-size:59.850000px;}
.fs1_c00030{font-size:60.900000px;}
.fs2_c00030{font-size:61.950000px;}
.fs6_c00030{font-size:63.000000px;}
.fs0_c00030{font-size:64.050000px;}
.fs7_c00030{font-size:65.100000px;}
.fs5_c00030{font-size:66.150000px;}
.fsa_c00030{font-size:67.200000px;}
.fs3_c00030{font-size:69.300000px;}
.fs9_c00030{font-size:72.450000px;}
.y0_c00030{bottom:0.000000px;}
.yca_c00030{bottom:35.901000px;}
.yc9_c00030{bottom:37.350000px;}
.yc8_c00030{bottom:37.894500px;}
.yc7_c00030{bottom:38.431500px;}
.yc6_c00030{bottom:39.633000px;}
.yc5_c00030{bottom:41.535000px;}
.yc4_c00030{bottom:42.027000px;}
.yc3_c00030{bottom:42.928500px;}
.yc2_c00030{bottom:55.884000px;}
.yc1_c00030{bottom:56.439000px;}
.yc0_c00030{bottom:56.772000px;}
.ybf_c00030{bottom:57.864000px;}
.ybe_c00030{bottom:58.506000px;}
.ybd_c00030{bottom:58.681500px;}
.ybc_c00030{bottom:59.394000px;}
.ybb_c00030{bottom:69.700500px;}
.yba_c00030{bottom:70.477500px;}
.yb9_c00030{bottom:71.008500px;}
.yb8_c00030{bottom:72.063000px;}
.yb7_c00030{bottom:74.239500px;}
.yb6_c00030{bottom:76.138500px;}
.yb5_c00030{bottom:86.107500px;}
.yb4_c00030{bottom:86.691000px;}
.yb3_c00030{bottom:87.841500px;}
.yb2_c00030{bottom:88.470000px;}
.yb1_c00030{bottom:89.698500px;}
.yb0_c00030{bottom:90.120000px;}
.yaf_c00030{bottom:92.340000px;}
.yae_c00030{bottom:93.448500px;}
.yad_c00030{bottom:105.346500px;}
.yac_c00030{bottom:105.736500px;}
.yab_c00030{bottom:108.045000px;}
.yaa_c00030{bottom:108.544500px;}
.ya9_c00030{bottom:110.158500px;}
.ya8_c00030{bottom:121.071000px;}
.ya7_c00030{bottom:122.346000px;}
.ya6_c00030{bottom:124.638000px;}
.ya5_c00030{bottom:125.523000px;}
.ya4_c00030{bottom:127.980000px;}
.ya3_c00030{bottom:140.101500px;}
.ya2_c00030{bottom:141.067500px;}
.ya1_c00030{bottom:142.140000px;}
.ya0_c00030{bottom:143.268000px;}
.y9f_c00030{bottom:143.737500px;}
.y9e_c00030{bottom:145.626000px;}
.y9d_c00030{bottom:145.797000px;}
.y9c_c00030{bottom:154.957500px;}
.y9b_c00030{bottom:157.051500px;}
.y9a_c00030{bottom:157.860000px;}
.y99_c00030{bottom:159.693000px;}
.y98_c00030{bottom:160.926000px;}
.y97_c00030{bottom:162.816000px;}
.y96_c00030{bottom:172.122000px;}
.y95_c00030{bottom:172.870500px;}
.y94_c00030{bottom:173.401500px;}
.y93_c00030{bottom:175.596000px;}
.y92_c00030{bottom:177.540000px;}
.y91_c00030{bottom:179.283000px;}
.y90_c00030{bottom:189.466500px;}
.y8f_c00030{bottom:189.898500px;}
.y8e_c00030{bottom:190.912500px;}
.y8d_c00030{bottom:191.181000px;}
.y8c_c00030{bottom:191.875500px;}
.y8b_c00030{bottom:192.216000px;}
.y8a_c00030{bottom:193.390500px;}
.y89_c00030{bottom:193.642500px;}
.y88_c00030{bottom:194.130000px;}
.y87_c00030{bottom:205.854000px;}
.y86_c00030{bottom:206.725500px;}
.y85_c00030{bottom:207.367500px;}
.y84_c00030{bottom:208.923000px;}
.y83_c00030{bottom:210.021000px;}
.y82_c00030{bottom:211.411500px;}
.y81_c00030{bottom:223.834500px;}
.y80_c00030{bottom:224.509500px;}
.y7f_c00030{bottom:224.782500px;}
.y7e_c00030{bottom:225.714000px;}
.y7d_c00030{bottom:226.156500px;}
.y7c_c00030{bottom:226.461000px;}
.y7b_c00030{bottom:227.764500px;}
.y7a_c00030{bottom:228.187500px;}
.y79_c00030{bottom:228.960000px;}
.y78_c00030{bottom:239.502000px;}
.y77_c00030{bottom:240.366000px;}
.y76_c00030{bottom:241.563000px;}
.y75_c00030{bottom:241.977000px;}
.y74_c00030{bottom:242.248500px;}
.y73_c00030{bottom:243.189000px;}
.y72_c00030{bottom:243.396000px;}
.y71_c00030{bottom:244.218000px;}
.y70_c00030{bottom:245.163000px;}
.y6f_c00030{bottom:258.792000px;}
.y6e_c00030{bottom:259.048500px;}
.y6d_c00030{bottom:259.372500px;}
.y6c_c00030{bottom:259.830000px;}
.y6b_c00030{bottom:260.178000px;}
.y6a_c00030{bottom:261.402000px;}
.y69_c00030{bottom:262.438500px;}
.y68_c00030{bottom:276.951000px;}
.y67_c00030{bottom:277.729500px;}
.y66_c00030{bottom:279.250500px;}
.y65_c00030{bottom:279.657000px;}
.y64_c00030{bottom:279.988500px;}
.y63_c00030{bottom:293.101500px;}
.y62_c00030{bottom:293.499000px;}
.y61_c00030{bottom:294.141000px;}
.y60_c00030{bottom:294.807000px;}
.y5f_c00030{bottom:295.576500px;}
.y5e_c00030{bottom:295.836000px;}
.y5d_c00030{bottom:296.223000px;}
.y5c_c00030{bottom:296.730000px;}
.y5b_c00030{bottom:310.398000px;}
.y5a_c00030{bottom:310.804500px;}
.y59_c00030{bottom:311.844000px;}
.y58_c00030{bottom:312.043500px;}
.y57_c00030{bottom:313.075500px;}
.y56_c00030{bottom:313.479000px;}
.y55_c00030{bottom:314.010000px;}
.y54_c00030{bottom:326.448000px;}
.y53_c00030{bottom:326.995500px;}
.y52_c00030{bottom:328.029000px;}
.y51_c00030{bottom:328.233000px;}
.y50_c00030{bottom:329.218500px;}
.y4f_c00030{bottom:329.400000px;}
.y4e_c00030{bottom:341.485500px;}
.y4d_c00030{bottom:341.868000px;}
.y4c_c00030{bottom:342.036000px;}
.y4b_c00030{bottom:342.952500px;}
.y4a_c00030{bottom:343.291500px;}
.y49_c00030{bottom:344.742000px;}
.y48_c00030{bottom:344.967000px;}
.y47_c00030{bottom:345.448500px;}
.y46_c00030{bottom:345.871500px;}
.y45_c00030{bottom:358.746000px;}
.y44_c00030{bottom:359.455500px;}
.y43_c00030{bottom:359.613000px;}
.y42_c00030{bottom:360.289500px;}
.y41_c00030{bottom:360.571500px;}
.y40_c00030{bottom:361.129500px;}
.y3f_c00030{bottom:361.306500px;}
.y3e_c00030{bottom:361.600500px;}
.y3d_c00030{bottom:361.797000px;}
.y3c_c00030{bottom:374.185500px;}
.y3b_c00030{bottom:374.308500px;}
.y3a_c00030{bottom:374.526000px;}
.y39_c00030{bottom:375.015000px;}
.y38_c00030{bottom:375.783000px;}
.y37_c00030{bottom:376.074000px;}
.y36_c00030{bottom:376.638000px;}
.y35_c00030{bottom:377.458500px;}
.y34_c00030{bottom:389.793000px;}
.y33_c00030{bottom:390.102000px;}
.y32_c00030{bottom:391.629000px;}
.y31_c00030{bottom:392.070000px;}
.y30_c00030{bottom:393.096000px;}
.y2f_c00030{bottom:394.111500px;}
.y2e_c00030{bottom:395.281500px;}
.y2d_c00030{bottom:408.841500px;}
.y2c_c00030{bottom:409.878000px;}
.y2b_c00030{bottom:410.556000px;}
.y2a_c00030{bottom:411.016500px;}
.y29_c00030{bottom:412.560000px;}
.y28_c00030{bottom:425.335500px;}
.y27_c00030{bottom:426.078000px;}
.y26_c00030{bottom:426.250500px;}
.y25_c00030{bottom:427.135500px;}
.y24_c00030{bottom:427.729500px;}
.y23_c00030{bottom:427.948500px;}
.y22_c00030{bottom:444.319500px;}
.y21_c00030{bottom:459.963000px;}
.y20_c00030{bottom:477.684000px;}
.y1f_c00030{bottom:494.427000px;}
.y1e_c00030{bottom:508.528500px;}
.y1d_c00030{bottom:508.822500px;}
.y1c_c00030{bottom:509.317500px;}
.y1b_c00030{bottom:509.758500px;}
.y1a_c00030{bottom:510.066000px;}
.y19_c00030{bottom:511.120500px;}
.y18_c00030{bottom:511.411500px;}
.y17_c00030{bottom:512.190000px;}
.y16_c00030{bottom:525.417000px;}
.y15_c00030{bottom:526.069500px;}
.y14_c00030{bottom:526.698000px;}
.y13_c00030{bottom:526.926000px;}
.y12_c00030{bottom:527.221500px;}
.y11_c00030{bottom:528.373500px;}
.y10_c00030{bottom:528.601500px;}
.yf_c00030{bottom:528.931500px;}
.ye_c00030{bottom:539.749500px;}
.yd_c00030{bottom:540.484500px;}
.yc_c00030{bottom:542.278500px;}
.yb_c00030{bottom:544.333500px;}
.ya_c00030{bottom:545.676000px;}
.y9_c00030{bottom:559.359000px;}
.y8_c00030{bottom:559.674000px;}
.y7_c00030{bottom:560.850000px;}
.y6_c00030{bottom:561.603000px;}
.y5_c00030{bottom:562.015500px;}
.y4_c00030{bottom:562.317000px;}
.y3_c00030{bottom:563.293500px;}
.y2_c00030{bottom:563.493000px;}
.y1_c00030{bottom:583.359000px;}
.he_c00030{height:55.650000px;}
.hd_c00030{height:57.750000px;}
.ha_c00030{height:58.800000px;}
.h6_c00030{height:59.850000px;}
.h3_c00030{height:60.900000px;}
.h4_c00030{height:61.950000px;}
.h8_c00030{height:63.000000px;}
.h2_c00030{height:64.050000px;}
.h9_c00030{height:65.100000px;}
.h7_c00030{height:66.150000px;}
.hc_c00030{height:67.200000px;}
.h5_c00030{height:69.300000px;}
.hb_c00030{height:72.450000px;}
.h1_c00030{height:615.750000px;}
.h0_c00030{height:615.870000px;}
.w0_c00030{width:367.200000px;}
.w1_c00030{width:367.500000px;}
.x0_c00030{left:0.000000px;}
.x70_c00030{left:23.149500px;}
.x4b_c00030{left:25.723500px;}
.x3_c00030{left:26.805000px;}
.x6a_c00030{left:28.602000px;}
.x5f_c00030{left:33.508500px;}
.x4_c00030{left:37.866000px;}
.x44_c00030{left:41.163000px;}
.x1f_c00030{left:42.661500px;}
.x3a_c00030{left:44.476500px;}
.x50_c00030{left:46.810500px;}
.x2b_c00030{left:48.751500px;}
.x3f_c00030{left:51.172500px;}
.xe_c00030{left:53.023500px;}
.x4c_c00030{left:57.387000px;}
.x60_c00030{left:62.166000px;}
.x71_c00030{left:65.781000px;}
.x47_c00030{left:66.831000px;}
.x58_c00030{left:68.380500px;}
.xf_c00030{left:70.570500px;}
.x51_c00030{left:72.184500px;}
.x61_c00030{left:77.020500px;}
.x40_c00030{left:79.464000px;}
.x4d_c00030{left:81.607500px;}
.x14_c00030{left:82.723500px;}
.x23_c00030{left:86.671500px;}
.xa_c00030{left:87.973500px;}
.x5_c00030{left:92.128500px;}
.x35_c00030{left:95.701500px;}
.x48_c00030{left:97.869000px;}
.x53_c00030{left:99.474000px;}
.x1b_c00030{left:102.331500px;}
.x15_c00030{left:103.501500px;}
.x6c_c00030{left:105.546000px;}
.x6_c00030{left:108.873000px;}
.x24_c00030{left:112.051500px;}
.x20_c00030{left:120.151500px;}
.x2d_c00030{left:123.294000px;}
.x67_c00030{left:126.553500px;}
.x6d_c00030{left:130.489500px;}
.x7_c00030{left:131.803500px;}
.x3b_c00030{left:138.120000px;}
.x45_c00030{left:140.265000px;}
.x30_c00030{left:141.531000px;}
.x36_c00030{left:142.746000px;}
.x4e_c00030{left:145.869000px;}
.x2e_c00030{left:152.082000px;}
.x1c_c00030{left:156.061500px;}
.x10_c00030{left:159.129000px;}
.x75_c00030{left:161.032500px;}
.x6b_c00030{left:162.297000px;}
.x3c_c00030{left:163.785000px;}
.x37_c00030{left:166.981500px;}
.x1_c00030{left:173.880000px;}
.x49_c00030{left:177.246000px;}
.x16_c00030{left:178.828500px;}
.xb_c00030{left:181.378500px;}
.x25_c00030{left:185.221500px;}
.x21_c00030{left:187.111500px;}
.x4a_c00030{left:192.627000px;}
.x2f_c00030{left:194.482500px;}
.x31_c00030{left:195.507000px;}
.x28_c00030{left:196.831500px;}
.x41_c00030{left:197.974500px;}
.x11_c00030{left:199.348500px;}
.x17_c00030{left:200.758500px;}
.x59_c00030{left:205.791000px;}
.x62_c00030{left:206.980500px;}
.x54_c00030{left:211.825500px;}
.x2c_c00030{left:213.985500px;}
.x52_c00030{left:215.844000px;}
.x32_c00030{left:218.709000px;}
.x63_c00030{left:222.819000px;}
.x3d_c00030{left:225.319500px;}
.x46_c00030{left:226.408500px;}
.x4f_c00030{left:227.689500px;}
.x29_c00030{left:231.121500px;}
.x18_c00030{left:232.275000px;}
.x76_c00030{left:233.478000px;}
.x1d_c00030{left:237.061500px;}
.x8_c00030{left:238.945500px;}
.x69_c00030{left:240.733500px;}
.x73_c00030{left:242.047500px;}
.x55_c00030{left:244.534500px;}
.x6e_c00030{left:245.890500px;}
.x12_c00030{left:247.674000px;}
.x5d_c00030{left:250.617000px;}
.x2_c00030{left:252.450000px;}
.x56_c00030{left:253.785000px;}
.x9_c00030{left:256.450500px;}
.x5a_c00030{left:257.551500px;}
.x1e_c00030{left:259.201500px;}
.x42_c00030{left:261.745500px;}
.xc_c00030{left:262.950000px;}
.x6f_c00030{left:265.387500px;}
.x19_c00030{left:267.634500px;}
.x74_c00030{left:269.841000px;}
.x38_c00030{left:271.722000px;}
.x5b_c00030{left:272.754000px;}
.x68_c00030{left:279.319500px;}
.x26_c00030{left:280.801500px;}
.x64_c00030{left:282.453000px;}
.x43_c00030{left:284.230500px;}
.x2a_c00030{left:285.661500px;}
.x1a_c00030{left:288.657000px;}
.x39_c00030{left:289.867500px;}
.x27_c00030{left:293.221500px;}
.x57_c00030{left:294.915000px;}
.xd_c00030{left:296.361000px;}
.x13_c00030{left:297.868500px;}
.x33_c00030{left:299.104500px;}
.x3e_c00030{left:304.147500px;}
.x72_c00030{left:305.499000px;}
.x65_c00030{left:307.825500px;}
.x5c_c00030{left:310.272000px;}
.x66_c00030{left:312.018000px;}
.x34_c00030{left:315.330000px;}
.x77_c00030{left:316.545000px;}
.x22_c00030{left:319.411500px;}
.x5e_c00030{left:334.666500px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
.fsc_c00030{font-size:49.466667pt;}
.fsb_c00030{font-size:51.333333pt;}
.fs8_c00030{font-size:52.266667pt;}
.fs4_c00030{font-size:53.200000pt;}
.fs1_c00030{font-size:54.133333pt;}
.fs2_c00030{font-size:55.066667pt;}
.fs6_c00030{font-size:56.000000pt;}
.fs0_c00030{font-size:56.933333pt;}
.fs7_c00030{font-size:57.866667pt;}
.fs5_c00030{font-size:58.800000pt;}
.fsa_c00030{font-size:59.733333pt;}
.fs3_c00030{font-size:61.600000pt;}
.fs9_c00030{font-size:64.400000pt;}
.y0_c00030{bottom:0.000000pt;}
.yca_c00030{bottom:31.912000pt;}
.yc9_c00030{bottom:33.200000pt;}
.yc8_c00030{bottom:33.684000pt;}
.yc7_c00030{bottom:34.161333pt;}
.yc6_c00030{bottom:35.229333pt;}
.yc5_c00030{bottom:36.920000pt;}
.yc4_c00030{bottom:37.357333pt;}
.yc3_c00030{bottom:38.158667pt;}
.yc2_c00030{bottom:49.674667pt;}
.yc1_c00030{bottom:50.168000pt;}
.yc0_c00030{bottom:50.464000pt;}
.ybf_c00030{bottom:51.434667pt;}
.ybe_c00030{bottom:52.005333pt;}
.ybd_c00030{bottom:52.161333pt;}
.ybc_c00030{bottom:52.794667pt;}
.ybb_c00030{bottom:61.956000pt;}
.yba_c00030{bottom:62.646667pt;}
.yb9_c00030{bottom:63.118667pt;}
.yb8_c00030{bottom:64.056000pt;}
.yb7_c00030{bottom:65.990667pt;}
.yb6_c00030{bottom:67.678667pt;}
.yb5_c00030{bottom:76.540000pt;}
.yb4_c00030{bottom:77.058667pt;}
.yb3_c00030{bottom:78.081333pt;}
.yb2_c00030{bottom:78.640000pt;}
.yb1_c00030{bottom:79.732000pt;}
.yb0_c00030{bottom:80.106667pt;}
.yaf_c00030{bottom:82.080000pt;}
.yae_c00030{bottom:83.065333pt;}
.yad_c00030{bottom:93.641333pt;}
.yac_c00030{bottom:93.988000pt;}
.yab_c00030{bottom:96.040000pt;}
.yaa_c00030{bottom:96.484000pt;}
.ya9_c00030{bottom:97.918667pt;}
.ya8_c00030{bottom:107.618667pt;}
.ya7_c00030{bottom:108.752000pt;}
.ya6_c00030{bottom:110.789333pt;}
.ya5_c00030{bottom:111.576000pt;}
.ya4_c00030{bottom:113.760000pt;}
.ya3_c00030{bottom:124.534667pt;}
.ya2_c00030{bottom:125.393333pt;}
.ya1_c00030{bottom:126.346667pt;}
.ya0_c00030{bottom:127.349333pt;}
.y9f_c00030{bottom:127.766667pt;}
.y9e_c00030{bottom:129.445333pt;}
.y9d_c00030{bottom:129.597333pt;}
.y9c_c00030{bottom:137.740000pt;}
.y9b_c00030{bottom:139.601333pt;}
.y9a_c00030{bottom:140.320000pt;}
.y99_c00030{bottom:141.949333pt;}
.y98_c00030{bottom:143.045333pt;}
.y97_c00030{bottom:144.725333pt;}
.y96_c00030{bottom:152.997333pt;}
.y95_c00030{bottom:153.662667pt;}
.y94_c00030{bottom:154.134667pt;}
.y93_c00030{bottom:156.085333pt;}
.y92_c00030{bottom:157.813333pt;}
.y91_c00030{bottom:159.362667pt;}
.y90_c00030{bottom:168.414667pt;}
.y8f_c00030{bottom:168.798667pt;}
.y8e_c00030{bottom:169.700000pt;}
.y8d_c00030{bottom:169.938667pt;}
.y8c_c00030{bottom:170.556000pt;}
.y8b_c00030{bottom:170.858667pt;}
.y8a_c00030{bottom:171.902667pt;}
.y89_c00030{bottom:172.126667pt;}
.y88_c00030{bottom:172.560000pt;}
.y87_c00030{bottom:182.981333pt;}
.y86_c00030{bottom:183.756000pt;}
.y85_c00030{bottom:184.326667pt;}
.y84_c00030{bottom:185.709333pt;}
.y83_c00030{bottom:186.685333pt;}
.y82_c00030{bottom:187.921333pt;}
.y81_c00030{bottom:198.964000pt;}
.y80_c00030{bottom:199.564000pt;}
.y7f_c00030{bottom:199.806667pt;}
.y7e_c00030{bottom:200.634667pt;}
.y7d_c00030{bottom:201.028000pt;}
.y7c_c00030{bottom:201.298667pt;}
.y7b_c00030{bottom:202.457333pt;}
.y7a_c00030{bottom:202.833333pt;}
.y79_c00030{bottom:203.520000pt;}
.y78_c00030{bottom:212.890667pt;}
.y77_c00030{bottom:213.658667pt;}
.y76_c00030{bottom:214.722667pt;}
.y75_c00030{bottom:215.090667pt;}
.y74_c00030{bottom:215.332000pt;}
.y73_c00030{bottom:216.168000pt;}
.y72_c00030{bottom:216.352000pt;}
.y71_c00030{bottom:217.082667pt;}
.y70_c00030{bottom:217.922667pt;}
.y6f_c00030{bottom:230.037333pt;}
.y6e_c00030{bottom:230.265333pt;}
.y6d_c00030{bottom:230.553333pt;}
.y6c_c00030{bottom:230.960000pt;}
.y6b_c00030{bottom:231.269333pt;}
.y6a_c00030{bottom:232.357333pt;}
.y69_c00030{bottom:233.278667pt;}
.y68_c00030{bottom:246.178667pt;}
.y67_c00030{bottom:246.870667pt;}
.y66_c00030{bottom:248.222667pt;}
.y65_c00030{bottom:248.584000pt;}
.y64_c00030{bottom:248.878667pt;}
.y63_c00030{bottom:260.534667pt;}
.y62_c00030{bottom:260.888000pt;}
.y61_c00030{bottom:261.458667pt;}
.y60_c00030{bottom:262.050667pt;}
.y5f_c00030{bottom:262.734667pt;}
.y5e_c00030{bottom:262.965333pt;}
.y5d_c00030{bottom:263.309333pt;}
.y5c_c00030{bottom:263.760000pt;}
.y5b_c00030{bottom:275.909333pt;}
.y5a_c00030{bottom:276.270667pt;}
.y59_c00030{bottom:277.194667pt;}
.y58_c00030{bottom:277.372000pt;}
.y57_c00030{bottom:278.289333pt;}
.y56_c00030{bottom:278.648000pt;}
.y55_c00030{bottom:279.120000pt;}
.y54_c00030{bottom:290.176000pt;}
.y53_c00030{bottom:290.662667pt;}
.y52_c00030{bottom:291.581333pt;}
.y51_c00030{bottom:291.762667pt;}
.y50_c00030{bottom:292.638667pt;}
.y4f_c00030{bottom:292.800000pt;}
.y4e_c00030{bottom:303.542667pt;}
.y4d_c00030{bottom:303.882667pt;}
.y4c_c00030{bottom:304.032000pt;}
.y4b_c00030{bottom:304.846667pt;}
.y4a_c00030{bottom:305.148000pt;}
.y49_c00030{bottom:306.437333pt;}
.y48_c00030{bottom:306.637333pt;}
.y47_c00030{bottom:307.065333pt;}
.y46_c00030{bottom:307.441333pt;}
.y45_c00030{bottom:318.885333pt;}
.y44_c00030{bottom:319.516000pt;}
.y43_c00030{bottom:319.656000pt;}
.y42_c00030{bottom:320.257333pt;}
.y41_c00030{bottom:320.508000pt;}
.y40_c00030{bottom:321.004000pt;}
.y3f_c00030{bottom:321.161333pt;}
.y3e_c00030{bottom:321.422667pt;}
.y3d_c00030{bottom:321.597333pt;}
.y3c_c00030{bottom:332.609333pt;}
.y3b_c00030{bottom:332.718667pt;}
.y3a_c00030{bottom:332.912000pt;}
.y39_c00030{bottom:333.346667pt;}
.y38_c00030{bottom:334.029333pt;}
.y37_c00030{bottom:334.288000pt;}
.y36_c00030{bottom:334.789333pt;}
.y35_c00030{bottom:335.518667pt;}
.y34_c00030{bottom:346.482667pt;}
.y33_c00030{bottom:346.757333pt;}
.y32_c00030{bottom:348.114667pt;}
.y31_c00030{bottom:348.506667pt;}
.y30_c00030{bottom:349.418667pt;}
.y2f_c00030{bottom:350.321333pt;}
.y2e_c00030{bottom:351.361333pt;}
.y2d_c00030{bottom:363.414667pt;}
.y2c_c00030{bottom:364.336000pt;}
.y2b_c00030{bottom:364.938667pt;}
.y2a_c00030{bottom:365.348000pt;}
.y29_c00030{bottom:366.720000pt;}
.y28_c00030{bottom:378.076000pt;}
.y27_c00030{bottom:378.736000pt;}
.y26_c00030{bottom:378.889333pt;}
.y25_c00030{bottom:379.676000pt;}
.y24_c00030{bottom:380.204000pt;}
.y23_c00030{bottom:380.398667pt;}
.y22_c00030{bottom:394.950667pt;}
.y21_c00030{bottom:408.856000pt;}
.y20_c00030{bottom:424.608000pt;}
.y1f_c00030{bottom:439.490667pt;}
.y1e_c00030{bottom:452.025333pt;}
.y1d_c00030{bottom:452.286667pt;}
.y1c_c00030{bottom:452.726667pt;}
.y1b_c00030{bottom:453.118667pt;}
.y1a_c00030{bottom:453.392000pt;}
.y19_c00030{bottom:454.329333pt;}
.y18_c00030{bottom:454.588000pt;}
.y17_c00030{bottom:455.280000pt;}
.y16_c00030{bottom:467.037333pt;}
.y15_c00030{bottom:467.617333pt;}
.y14_c00030{bottom:468.176000pt;}
.y13_c00030{bottom:468.378667pt;}
.y12_c00030{bottom:468.641333pt;}
.y11_c00030{bottom:469.665333pt;}
.y10_c00030{bottom:469.868000pt;}
.yf_c00030{bottom:470.161333pt;}
.ye_c00030{bottom:479.777333pt;}
.yd_c00030{bottom:480.430667pt;}
.yc_c00030{bottom:482.025333pt;}
.yb_c00030{bottom:483.852000pt;}
.ya_c00030{bottom:485.045333pt;}
.y9_c00030{bottom:497.208000pt;}
.y8_c00030{bottom:497.488000pt;}
.y7_c00030{bottom:498.533333pt;}
.y6_c00030{bottom:499.202667pt;}
.y5_c00030{bottom:499.569333pt;}
.y4_c00030{bottom:499.837333pt;}
.y3_c00030{bottom:500.705333pt;}
.y2_c00030{bottom:500.882667pt;}
.y1_c00030{bottom:518.541333pt;}
.he_c00030{height:49.466667pt;}
.hd_c00030{height:51.333333pt;}
.ha_c00030{height:52.266667pt;}
.h6_c00030{height:53.200000pt;}
.h3_c00030{height:54.133333pt;}
.h4_c00030{height:55.066667pt;}
.h8_c00030{height:56.000000pt;}
.h2_c00030{height:56.933333pt;}
.h9_c00030{height:57.866667pt;}
.h7_c00030{height:58.800000pt;}
.hc_c00030{height:59.733333pt;}
.h5_c00030{height:61.600000pt;}
.hb_c00030{height:64.400000pt;}
.h1_c00030{height:547.333333pt;}
.h0_c00030{height:547.440000pt;}
.w0_c00030{width:326.400000pt;}
.w1_c00030{width:326.666667pt;}
.x0_c00030{left:0.000000pt;}
.x70_c00030{left:20.577333pt;}
.x4b_c00030{left:22.865333pt;}
.x3_c00030{left:23.826667pt;}
.x6a_c00030{left:25.424000pt;}
.x5f_c00030{left:29.785333pt;}
.x4_c00030{left:33.658667pt;}
.x44_c00030{left:36.589333pt;}
.x1f_c00030{left:37.921333pt;}
.x3a_c00030{left:39.534667pt;}
.x50_c00030{left:41.609333pt;}
.x2b_c00030{left:43.334667pt;}
.x3f_c00030{left:45.486667pt;}
.xe_c00030{left:47.132000pt;}
.x4c_c00030{left:51.010667pt;}
.x60_c00030{left:55.258667pt;}
.x71_c00030{left:58.472000pt;}
.x47_c00030{left:59.405333pt;}
.x58_c00030{left:60.782667pt;}
.xf_c00030{left:62.729333pt;}
.x51_c00030{left:64.164000pt;}
.x61_c00030{left:68.462667pt;}
.x40_c00030{left:70.634667pt;}
.x4d_c00030{left:72.540000pt;}
.x14_c00030{left:73.532000pt;}
.x23_c00030{left:77.041333pt;}
.xa_c00030{left:78.198667pt;}
.x5_c00030{left:81.892000pt;}
.x35_c00030{left:85.068000pt;}
.x48_c00030{left:86.994667pt;}
.x53_c00030{left:88.421333pt;}
.x1b_c00030{left:90.961333pt;}
.x15_c00030{left:92.001333pt;}
.x6c_c00030{left:93.818667pt;}
.x6_c00030{left:96.776000pt;}
.x24_c00030{left:99.601333pt;}
.x20_c00030{left:106.801333pt;}
.x2d_c00030{left:109.594667pt;}
.x67_c00030{left:112.492000pt;}
.x6d_c00030{left:115.990667pt;}
.x7_c00030{left:117.158667pt;}
.x3b_c00030{left:122.773333pt;}
.x45_c00030{left:124.680000pt;}
.x30_c00030{left:125.805333pt;}
.x36_c00030{left:126.885333pt;}
.x4e_c00030{left:129.661333pt;}
.x2e_c00030{left:135.184000pt;}
.x1c_c00030{left:138.721333pt;}
.x10_c00030{left:141.448000pt;}
.x75_c00030{left:143.140000pt;}
.x6b_c00030{left:144.264000pt;}
.x3c_c00030{left:145.586667pt;}
.x37_c00030{left:148.428000pt;}
.x1_c00030{left:154.560000pt;}
.x49_c00030{left:157.552000pt;}
.x16_c00030{left:158.958667pt;}
.xb_c00030{left:161.225333pt;}
.x25_c00030{left:164.641333pt;}
.x21_c00030{left:166.321333pt;}
.x4a_c00030{left:171.224000pt;}
.x2f_c00030{left:172.873333pt;}
.x31_c00030{left:173.784000pt;}
.x28_c00030{left:174.961333pt;}
.x41_c00030{left:175.977333pt;}
.x11_c00030{left:177.198667pt;}
.x17_c00030{left:178.452000pt;}
.x59_c00030{left:182.925333pt;}
.x62_c00030{left:183.982667pt;}
.x54_c00030{left:188.289333pt;}
.x2c_c00030{left:190.209333pt;}
.x52_c00030{left:191.861333pt;}
.x32_c00030{left:194.408000pt;}
.x63_c00030{left:198.061333pt;}
.x3d_c00030{left:200.284000pt;}
.x46_c00030{left:201.252000pt;}
.x4f_c00030{left:202.390667pt;}
.x29_c00030{left:205.441333pt;}
.x18_c00030{left:206.466667pt;}
.x76_c00030{left:207.536000pt;}
.x1d_c00030{left:210.721333pt;}
.x8_c00030{left:212.396000pt;}
.x69_c00030{left:213.985333pt;}
.x73_c00030{left:215.153333pt;}
.x55_c00030{left:217.364000pt;}
.x6e_c00030{left:218.569333pt;}
.x12_c00030{left:220.154667pt;}
.x5d_c00030{left:222.770667pt;}
.x2_c00030{left:224.400000pt;}
.x56_c00030{left:225.586667pt;}
.x9_c00030{left:227.956000pt;}
.x5a_c00030{left:228.934667pt;}
.x1e_c00030{left:230.401333pt;}
.x42_c00030{left:232.662667pt;}
.xc_c00030{left:233.733333pt;}
.x6f_c00030{left:235.900000pt;}
.x19_c00030{left:237.897333pt;}
.x74_c00030{left:239.858667pt;}
.x38_c00030{left:241.530667pt;}
.x5b_c00030{left:242.448000pt;}
.x68_c00030{left:248.284000pt;}
.x26_c00030{left:249.601333pt;}
.x64_c00030{left:251.069333pt;}
.x43_c00030{left:252.649333pt;}
.x2a_c00030{left:253.921333pt;}
.x1a_c00030{left:256.584000pt;}
.x39_c00030{left:257.660000pt;}
.x27_c00030{left:260.641333pt;}
.x57_c00030{left:262.146667pt;}
.xd_c00030{left:263.432000pt;}
.x13_c00030{left:264.772000pt;}
.x33_c00030{left:265.870667pt;}
.x3e_c00030{left:270.353333pt;}
.x72_c00030{left:271.554667pt;}
.x65_c00030{left:273.622667pt;}
.x5c_c00030{left:275.797333pt;}
.x66_c00030{left:277.349333pt;}
.x34_c00030{left:280.293333pt;}
.x77_c00030{left:281.373333pt;}
.x22_c00030{left:283.921333pt;}
.x5e_c00030{left:297.481333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00031 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00031{transform:matrix(0.009201,0.000276,-0.007497,0.249888,0,0);-ms-transform:matrix(0.009201,0.000276,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.009201,0.000276,-0.007497,0.249888,0,0);}
.m3_c00031{transform:matrix(0.040767,0.001223,-0.007497,0.249888,0,0);-ms-transform:matrix(0.040767,0.001223,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.040767,0.001223,-0.007497,0.249888,0,0);}
.m96_c00031{transform:matrix(0.044133,0.001236,-0.006997,0.249902,0,0);-ms-transform:matrix(0.044133,0.001236,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.044133,0.001236,-0.006997,0.249902,0,0);}
.m95_c00031{transform:matrix(0.071372,0.001998,-0.006997,0.249902,0,0);-ms-transform:matrix(0.071372,0.001998,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.071372,0.001998,-0.006997,0.249902,0,0);}
.m2a_c00031{transform:matrix(0.086867,0.003043,-0.008753,0.249847,0,0);-ms-transform:matrix(0.086867,0.003043,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.086867,0.003043,-0.008753,0.249847,0,0);}
.m79_c00031{transform:matrix(0.094830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094830,0.000000,0.000000,0.250000,0,0);}
.m92_c00031{transform:matrix(0.116119,0.003251,-0.006997,0.249902,0,0);-ms-transform:matrix(0.116119,0.003251,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.116119,0.003251,-0.006997,0.249902,0,0);}
.m29_c00031{transform:matrix(0.125908,0.004411,-0.008753,0.249847,0,0);-ms-transform:matrix(0.125908,0.004411,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.125908,0.004411,-0.008753,0.249847,0,0);}
.m16_c00031{transform:matrix(0.131075,0.003801,-0.007247,0.249895,0,0);-ms-transform:matrix(0.131075,0.003801,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.131075,0.003801,-0.007247,0.249895,0,0);}
.m5d_c00031{transform:matrix(0.134176,0.003220,-0.005998,0.249928,0,0);-ms-transform:matrix(0.134176,0.003220,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.134176,0.003220,-0.005998,0.249928,0,0);}
.ma4_c00031{transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);}
.m5a_c00031{transform:matrix(0.139159,0.004597,-0.008254,0.249864,0,0);-ms-transform:matrix(0.139159,0.004597,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.139159,0.004597,-0.008254,0.249864,0,0);}
.mb7_c00031{transform:matrix(0.145139,0.002467,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145139,0.002467,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145139,0.002467,-0.004249,0.249964,0,0);}
.m10_c00031{transform:matrix(0.146628,0.004252,-0.007247,0.249895,0,0);-ms-transform:matrix(0.146628,0.004252,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.146628,0.004252,-0.007247,0.249895,0,0);}
.m9a_c00031{transform:matrix(0.147977,0.004143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.147977,0.004143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.147977,0.004143,-0.006997,0.249902,0,0);}
.m8c_c00031{transform:matrix(0.149961,0.004199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.149961,0.004199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.149961,0.004199,-0.006997,0.249902,0,0);}
.mb6_c00031{transform:matrix(0.152678,0.002596,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152678,0.002596,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152678,0.002596,-0.004249,0.249964,0,0);}
.m24_c00031{transform:matrix(0.152756,0.005352,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152756,0.005352,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152756,0.005352,-0.008753,0.249847,0,0);}
.ma3_c00031{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m17_c00031{transform:matrix(0.154810,0.005424,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154810,0.005424,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154810,0.005424,-0.008753,0.249847,0,0);}
.m32_c00031{transform:matrix(0.154900,0.005427,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154900,0.005427,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154900,0.005427,-0.008753,0.249847,0,0);}
.m4a_c00031{transform:matrix(0.156164,0.005471,-0.008753,0.249847,0,0);-ms-transform:matrix(0.156164,0.005471,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.156164,0.005471,-0.008753,0.249847,0,0);}
.mc_c00031{transform:matrix(0.156649,0.004386,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156649,0.004386,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156649,0.004386,-0.006997,0.249902,0,0);}
.ma6_c00031{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m87_c00031{transform:matrix(0.158887,0.004290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.158887,0.004290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.158887,0.004290,-0.006748,0.249909,0,0);}
.m7_c00031{transform:matrix(0.159038,0.004771,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159038,0.004771,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159038,0.004771,-0.007497,0.249888,0,0);}
.md2_c00031{transform:matrix(0.160527,0.002729,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160527,0.002729,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160527,0.002729,-0.004249,0.249964,0,0);}
.ma5_c00031{transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);}
.m63_c00031{transform:matrix(0.162788,0.003907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162788,0.003907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162788,0.003907,-0.005998,0.249928,0,0);}
.mf_c00031{transform:matrix(0.163771,0.004586,-0.006997,0.249902,0,0);-ms-transform:matrix(0.163771,0.004586,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.163771,0.004586,-0.006997,0.249902,0,0);}
.m1f_c00031{transform:matrix(0.164249,0.005754,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164249,0.005754,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164249,0.005754,-0.008753,0.249847,0,0);}
.m36_c00031{transform:matrix(0.165414,0.005795,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165414,0.005795,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165414,0.005795,-0.008753,0.249847,0,0);}
.m42_c00031{transform:matrix(0.167617,0.005872,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167617,0.005872,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167617,0.005872,-0.008753,0.249847,0,0);}
.mbb_c00031{transform:matrix(0.167936,0.002855,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167936,0.002855,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167936,0.002855,-0.004249,0.249964,0,0);}
.me6_c00031{transform:matrix(0.168306,0.002861,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168306,0.002861,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168306,0.002861,-0.004249,0.249964,0,0);}
.m99_c00031{transform:matrix(0.169933,0.004758,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169933,0.004758,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169933,0.004758,-0.006997,0.249902,0,0);}
.m98_c00031{transform:matrix(0.171353,0.004798,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171353,0.004798,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171353,0.004798,-0.006997,0.249902,0,0);}
.m5e_c00031{transform:matrix(0.171821,0.004124,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171821,0.004124,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171821,0.004124,-0.005998,0.249928,0,0);}
.m12_c00031{transform:matrix(0.172163,0.004993,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172163,0.004993,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172163,0.004993,-0.007247,0.249895,0,0);}
.md8_c00031{transform:matrix(0.173245,0.002945,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173245,0.002945,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173245,0.002945,-0.004249,0.249964,0,0);}
.me1_c00031{transform:matrix(0.173405,0.002948,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173405,0.002948,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173405,0.002948,-0.004249,0.249964,0,0);}
.m30_c00031{transform:matrix(0.173419,0.006076,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173419,0.006076,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173419,0.006076,-0.008753,0.249847,0,0);}
.md9_c00031{transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);}
.m1d_c00031{transform:matrix(0.174568,0.006116,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174568,0.006116,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174568,0.006116,-0.008753,0.249847,0,0);}
.m3f_c00031{transform:matrix(0.174833,0.006125,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174833,0.006125,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174833,0.006125,-0.008753,0.249847,0,0);}
.m57_c00031{transform:matrix(0.174905,0.005778,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174905,0.005778,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174905,0.005778,-0.008254,0.249864,0,0);}
.m4b_c00031{transform:matrix(0.175812,0.006160,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175812,0.006160,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175812,0.006160,-0.008753,0.249847,0,0);}
.m53_c00031{transform:matrix(0.175924,0.005811,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175924,0.005811,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175924,0.005811,-0.008254,0.249864,0,0);}
.me5_c00031{transform:matrix(0.176110,0.002994,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176110,0.002994,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176110,0.002994,-0.004249,0.249964,0,0);}
.m4d_c00031{transform:matrix(0.176287,0.006176,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176287,0.006176,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176287,0.006176,-0.008753,0.249847,0,0);}
.m1e_c00031{transform:matrix(0.176302,0.006177,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176302,0.006177,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176302,0.006177,-0.008753,0.249847,0,0);}
.me9_c00031{transform:matrix(0.176330,0.002998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176330,0.002998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176330,0.002998,-0.004249,0.249964,0,0);}
.m5f_c00031{transform:matrix(0.176504,0.004236,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176504,0.004236,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176504,0.004236,-0.005998,0.249928,0,0);}
.m26_c00031{transform:matrix(0.176517,0.006184,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176517,0.006184,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176517,0.006184,-0.008753,0.249847,0,0);}
.m41_c00031{transform:matrix(0.176592,0.006187,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176592,0.006187,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176592,0.006187,-0.008753,0.249847,0,0);}
.m50_c00031{transform:matrix(0.176794,0.005840,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176794,0.005840,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176794,0.005840,-0.008254,0.249864,0,0);}
.m4c_c00031{transform:matrix(0.177326,0.006213,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177326,0.006213,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177326,0.006213,-0.008753,0.249847,0,0);}
.mb0_c00031{transform:matrix(0.178099,0.003028,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178099,0.003028,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178099,0.003028,-0.004249,0.249964,0,0);}
.mcf_c00031{transform:matrix(0.178279,0.003031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178279,0.003031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178279,0.003031,-0.004249,0.249964,0,0);}
.mc7_c00031{transform:matrix(0.179534,0.003052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179534,0.003052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179534,0.003052,-0.004249,0.249964,0,0);}
.m81_c00031{transform:matrix(0.179560,0.004848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179560,0.004848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179560,0.004848,-0.006748,0.249909,0,0);}
.m23_c00031{transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180154,0.006312,-0.008753,0.249847,0,0);}
.m44_c00031{transform:matrix(0.180629,0.006328,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180629,0.006328,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180629,0.006328,-0.008753,0.249847,0,0);}
.ma_c00031{transform:matrix(0.181144,0.005434,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181144,0.005434,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181144,0.005434,-0.007497,0.249888,0,0);}
.m28_c00031{transform:matrix(0.182853,0.006406,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182853,0.006406,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182853,0.006406,-0.008753,0.249847,0,0);}
.m85_c00031{transform:matrix(0.183253,0.004948,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183253,0.004948,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183253,0.004948,-0.006748,0.249909,0,0);}
.m47_c00031{transform:matrix(0.183512,0.006429,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183512,0.006429,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183512,0.006429,-0.008753,0.249847,0,0);}
.mb3_c00031{transform:matrix(0.183648,0.003122,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183648,0.003122,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183648,0.003122,-0.004249,0.249964,0,0);}
.m45_c00031{transform:matrix(0.183767,0.006438,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183767,0.006438,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183767,0.006438,-0.008753,0.249847,0,0);}
.m20_c00031{transform:matrix(0.183832,0.006441,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183832,0.006441,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183832,0.006441,-0.008753,0.249847,0,0);}
.mc3_c00031{transform:matrix(0.183928,0.003127,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183928,0.003127,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183928,0.003127,-0.004249,0.249964,0,0);}
.m5b_c00031{transform:matrix(0.184442,0.004427,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184442,0.004427,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184442,0.004427,-0.005998,0.249928,0,0);}
.m1b_c00031{transform:matrix(0.184692,0.006471,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184692,0.006471,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184692,0.006471,-0.008753,0.249847,0,0);}
.m15_c00031{transform:matrix(0.185042,0.005366,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185042,0.005366,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185042,0.005366,-0.007247,0.249895,0,0);}
.md3_c00031{transform:matrix(0.186493,0.003170,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186493,0.003170,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186493,0.003170,-0.004249,0.249964,0,0);}
.m83_c00031{transform:matrix(0.187527,0.005063,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187527,0.005063,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187527,0.005063,-0.006748,0.249909,0,0);}
.m35_c00031{transform:matrix(0.188319,0.006598,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188319,0.006598,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188319,0.006598,-0.008753,0.249847,0,0);}
.m91_c00031{transform:matrix(0.188391,0.005275,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188391,0.005275,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188391,0.005275,-0.006997,0.249902,0,0);}
.meb_c00031{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m9d_c00031{transform:matrix(0.189034,0.007569,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189034,0.007569,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189034,0.007569,-0.010002,0.249800,0,0);}
.m66_c00031{transform:matrix(0.189375,0.004545,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189375,0.004545,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189375,0.004545,-0.005998,0.249928,0,0);}
.mcb_c00031{transform:matrix(0.189568,0.003223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189568,0.003223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189568,0.003223,-0.004249,0.249964,0,0);}
.mab_c00031{transform:matrix(0.189736,0.004933,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189736,0.004933,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189736,0.004933,-0.006498,0.249916,0,0);}
.mae_c00031{transform:matrix(0.190121,0.004943,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190121,0.004943,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190121,0.004943,-0.006498,0.249916,0,0);}
.m21_c00031{transform:matrix(0.190763,0.006683,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190763,0.006683,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190763,0.006683,-0.008753,0.249847,0,0);}
.mdf_c00031{transform:matrix(0.190907,0.003245,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190907,0.003245,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190907,0.003245,-0.004249,0.249964,0,0);}
.m38_c00031{transform:matrix(0.191133,0.006696,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191133,0.006696,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191133,0.006696,-0.008753,0.249847,0,0);}
.m31_c00031{transform:matrix(0.191522,0.006710,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191522,0.006710,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191522,0.006710,-0.008753,0.249847,0,0);}
.m86_c00031{transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);}
.ma1_c00031{transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);}
.mba_c00031{transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);}
.mc6_c00031{transform:matrix(0.192322,0.003269,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192322,0.003269,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192322,0.003269,-0.004249,0.249964,0,0);}
.m5c_c00031{transform:matrix(0.192330,0.004616,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192330,0.004616,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192330,0.004616,-0.005998,0.249928,0,0);}
.m0_c00031{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.m34_c00031{transform:matrix(0.193166,0.006768,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193166,0.006768,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193166,0.006768,-0.008753,0.249847,0,0);}
.md5_c00031{transform:matrix(0.193332,0.003287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193332,0.003287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193332,0.003287,-0.004249,0.249964,0,0);}
.mb_c00031{transform:matrix(0.193349,0.005414,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193349,0.005414,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193349,0.005414,-0.006997,0.249902,0,0);}
.md6_c00031{transform:matrix(0.193352,0.003287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193352,0.003287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193352,0.003287,-0.004249,0.249964,0,0);}
.me7_c00031{transform:matrix(0.193777,0.003294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193777,0.003294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193777,0.003294,-0.004249,0.249964,0,0);}
.m9_c00031{transform:matrix(0.194273,0.005828,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194273,0.005828,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194273,0.005828,-0.007497,0.249888,0,0);}
.m37_c00031{transform:matrix(0.195045,0.006833,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195045,0.006833,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195045,0.006833,-0.008753,0.249847,0,0);}
.m9e_c00031{transform:matrix(0.195124,0.007813,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195124,0.007813,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195124,0.007813,-0.010002,0.249800,0,0);}
.m60_c00031{transform:matrix(0.195159,0.004684,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195159,0.004684,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195159,0.004684,-0.005998,0.249928,0,0);}
.m6a_c00031{transform:matrix(0.195593,0.004499,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195593,0.004499,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195593,0.004499,-0.005748,0.249934,0,0);}
.ma8_c00031{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.197456,0.005924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197456,0.005924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197456,0.005924,-0.007497,0.249888,0,0);}
.md0_c00031{transform:matrix(0.197896,0.003364,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197896,0.003364,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197896,0.003364,-0.004249,0.249964,0,0);}
.m2_c00031{transform:matrix(0.198066,0.005942,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198066,0.005942,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198066,0.005942,-0.007497,0.249888,0,0);}
.m2e_c00031{transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198623,0.006959,-0.008753,0.249847,0,0);}
.m3e_c00031{transform:matrix(0.198698,0.006961,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198698,0.006961,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198698,0.006961,-0.008753,0.249847,0,0);}
.m88_c00031{transform:matrix(0.199412,0.005384,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199412,0.005384,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199412,0.005384,-0.006748,0.249909,0,0);}
.m3c_c00031{transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);}
.m33_c00031{transform:matrix(0.199568,0.006992,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199568,0.006992,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199568,0.006992,-0.008753,0.249847,0,0);}
.m46_c00031{transform:matrix(0.199917,0.007004,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199917,0.007004,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199917,0.007004,-0.008753,0.249847,0,0);}
.m6e_c00031{transform:matrix(0.200087,0.004602,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200087,0.004602,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200087,0.004602,-0.005748,0.249934,0,0);}
.m9f_c00031{transform:matrix(0.200190,0.008016,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200190,0.008016,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200190,0.008016,-0.010002,0.249800,0,0);}
.m3d_c00031{transform:matrix(0.201047,0.007044,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201047,0.007044,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201047,0.007044,-0.008753,0.249847,0,0);}
.m6_c00031{transform:matrix(0.201249,0.006037,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201249,0.006037,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201249,0.006037,-0.007497,0.249888,0,0);}
.m2b_c00031{transform:matrix(0.201381,0.007055,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201381,0.007055,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201381,0.007055,-0.008753,0.249847,0,0);}
.m19_c00031{transform:matrix(0.201976,0.007076,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201976,0.007076,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201976,0.007076,-0.008753,0.249847,0,0);}
.mbc_c00031{transform:matrix(0.202561,0.003444,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202561,0.003444,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202561,0.003444,-0.004249,0.249964,0,0);}
.m7d_c00031{transform:matrix(0.202856,0.005477,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202856,0.005477,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202856,0.005477,-0.006748,0.249909,0,0);}
.m7b_c00031{transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);}
.m68_c00031{transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);}
.m82_c00031{transform:matrix(0.203136,0.005485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203136,0.005485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203136,0.005485,-0.006748,0.249909,0,0);}
.mb1_c00031{transform:matrix(0.203631,0.003462,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203631,0.003462,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203631,0.003462,-0.004249,0.249964,0,0);}
.m54_c00031{transform:matrix(0.203844,0.006734,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203844,0.006734,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203844,0.006734,-0.008254,0.249864,0,0);}
.m55_c00031{transform:matrix(0.203869,0.006734,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203869,0.006734,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203869,0.006734,-0.008254,0.249864,0,0);}
.m7f_c00031{transform:matrix(0.203886,0.005505,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203886,0.005505,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203886,0.005505,-0.006748,0.249909,0,0);}
.m73_c00031{transform:matrix(0.203921,0.004690,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203921,0.004690,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203921,0.004690,-0.005748,0.249934,0,0);}
.m76_c00031{transform:matrix(0.204376,0.004701,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204376,0.004701,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204376,0.004701,-0.005748,0.249934,0,0);}
.mce_c00031{transform:matrix(0.205310,0.003490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205310,0.003490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205310,0.003490,-0.004249,0.249964,0,0);}
.m8b_c00031{transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);}
.mac_c00031{transform:matrix(0.206490,0.005369,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206490,0.005369,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206490,0.005369,-0.006498,0.249916,0,0);}
.me_c00031{transform:matrix(0.206744,0.005789,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206744,0.005789,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206744,0.005789,-0.006997,0.249902,0,0);}
.mb9_c00031{transform:matrix(0.207055,0.003520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207055,0.003520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207055,0.003520,-0.004249,0.249964,0,0);}
.ma7_c00031{transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);}
.mad_c00031{transform:matrix(0.207320,0.005390,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207320,0.005390,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207320,0.005390,-0.006498,0.249916,0,0);}
.m75_c00031{transform:matrix(0.208035,0.004785,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208035,0.004785,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208035,0.004785,-0.005748,0.249934,0,0);}
.m7c_c00031{transform:matrix(0.208109,0.005619,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208109,0.005619,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208109,0.005619,-0.006748,0.249909,0,0);}
.m2f_c00031{transform:matrix(0.208347,0.007299,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208347,0.007299,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208347,0.007299,-0.008753,0.249847,0,0);}
.md7_c00031{transform:matrix(0.208710,0.003548,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208710,0.003548,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208710,0.003548,-0.004249,0.249964,0,0);}
.me4_c00031{transform:matrix(0.210890,0.003585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210890,0.003585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210890,0.003585,-0.004249,0.249964,0,0);}
.m3b_c00031{transform:matrix(0.211270,0.007402,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211270,0.007402,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211270,0.007402,-0.008753,0.249847,0,0);}
.mdd_c00031{transform:matrix(0.211379,0.003593,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211379,0.003593,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211379,0.003593,-0.004249,0.249964,0,0);}
.m8e_c00031{transform:matrix(0.211962,0.005935,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211962,0.005935,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211962,0.005935,-0.006997,0.249902,0,0);}
.me0_c00031{transform:matrix(0.212374,0.003610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212374,0.003610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212374,0.003610,-0.004249,0.249964,0,0);}
.m11_c00031{transform:matrix(0.213250,0.006184,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213250,0.006184,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213250,0.006184,-0.007247,0.249895,0,0);}
.m56_c00031{transform:matrix(0.213579,0.007055,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213579,0.007055,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213579,0.007055,-0.008254,0.249864,0,0);}
.m39_c00031{transform:matrix(0.213699,0.007487,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213699,0.007487,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213699,0.007487,-0.008753,0.249847,0,0);}
.maa_c00031{transform:matrix(0.213868,0.005561,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213868,0.005561,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213868,0.005561,-0.006498,0.249916,0,0);}
.me2_c00031{transform:matrix(0.214614,0.003648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214614,0.003648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214614,0.003648,-0.004249,0.249964,0,0);}
.m2d_c00031{transform:matrix(0.214773,0.007525,-0.008753,0.249847,0,0);-ms-transform:matrix(0.214773,0.007525,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.214773,0.007525,-0.008753,0.249847,0,0);}
.me3_c00031{transform:matrix(0.215169,0.003658,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215169,0.003658,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215169,0.003658,-0.004249,0.249964,0,0);}
.m8_c00031{transform:matrix(0.215493,0.006465,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215493,0.006465,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215493,0.006465,-0.007497,0.249888,0,0);}
.mc1_c00031{transform:matrix(0.216114,0.003674,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216114,0.003674,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216114,0.003674,-0.004249,0.249964,0,0);}
.m4f_c00031{transform:matrix(0.216127,0.007139,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216127,0.007139,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216127,0.007139,-0.008254,0.249864,0,0);}
.m84_c00031{transform:matrix(0.216246,0.005839,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216246,0.005839,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216246,0.005839,-0.006748,0.249909,0,0);}
.m40_c00031{transform:matrix(0.216617,0.007589,-0.008753,0.249847,0,0);-ms-transform:matrix(0.216617,0.007589,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.216617,0.007589,-0.008753,0.249847,0,0);}
.m4_c00031{transform:matrix(0.217112,0.006513,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217112,0.006513,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217112,0.006513,-0.007497,0.249888,0,0);}
.m18_c00031{transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);}
.mca_c00031{transform:matrix(0.218708,0.003718,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218708,0.003718,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218708,0.003718,-0.004249,0.249964,0,0);}
.mcd_c00031{transform:matrix(0.218958,0.003722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218958,0.003722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218958,0.003722,-0.004249,0.249964,0,0);}
.md_c00031{transform:matrix(0.219269,0.006140,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219269,0.006140,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219269,0.006140,-0.006997,0.249902,0,0);}
.mc8_c00031{transform:matrix(0.219273,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219273,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219273,0.003728,-0.004249,0.249964,0,0);}
.m49_c00031{transform:matrix(0.219615,0.007694,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219615,0.007694,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219615,0.007694,-0.008753,0.249847,0,0);}
.m6d_c00031{transform:matrix(0.219677,0.005053,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219677,0.005053,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219677,0.005053,-0.005748,0.249934,0,0);}
.m1c_c00031{transform:matrix(0.220135,0.007712,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220135,0.007712,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220135,0.007712,-0.008753,0.249847,0,0);}
.mb8_c00031{transform:matrix(0.220353,0.003746,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220353,0.003746,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220353,0.003746,-0.004249,0.249964,0,0);}
.m80_c00031{transform:matrix(0.220880,0.005964,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220880,0.005964,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220880,0.005964,-0.006748,0.249909,0,0);}
.m25_c00031{transform:matrix(0.221019,0.007743,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221019,0.007743,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221019,0.007743,-0.008753,0.249847,0,0);}
.mde_c00031{transform:matrix(0.221123,0.003759,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221123,0.003759,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221123,0.003759,-0.004249,0.249964,0,0);}
.m78_c00031{transform:matrix(0.222321,0.005113,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222321,0.005113,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222321,0.005113,-0.005748,0.249934,0,0);}
.m8d_c00031{transform:matrix(0.223652,0.006262,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223652,0.006262,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223652,0.006262,-0.006997,0.249902,0,0);}
.m71_c00031{transform:matrix(0.223801,0.005147,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223801,0.005147,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223801,0.005147,-0.005748,0.249934,0,0);}
.mea_c00031{transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);}
.m6b_c00031{transform:matrix(0.225185,0.005179,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225185,0.005179,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225185,0.005179,-0.005748,0.249934,0,0);}
.mdc_c00031{transform:matrix(0.225477,0.003833,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225477,0.003833,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225477,0.003833,-0.004249,0.249964,0,0);}
.m69_c00031{transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);}
.m6c_c00031{transform:matrix(0.226810,0.005217,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226810,0.005217,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226810,0.005217,-0.005748,0.249934,0,0);}
.m70_c00031{transform:matrix(0.227070,0.005223,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227070,0.005223,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227070,0.005223,-0.005748,0.249934,0,0);}
.mb4_c00031{transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);}
.m77_c00031{transform:matrix(0.229464,0.005278,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229464,0.005278,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229464,0.005278,-0.005748,0.249934,0,0);}
.ma2_c00031{transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);}
.m4e_c00031{transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{transform:matrix(0.230394,0.008072,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230394,0.008072,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230394,0.008072,-0.008753,0.249847,0,0);}
.mc9_c00031{transform:matrix(0.230802,0.003924,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230802,0.003924,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230802,0.003924,-0.004249,0.249964,0,0);}
.m51_c00031{transform:matrix(0.230824,0.007625,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230824,0.007625,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230824,0.007625,-0.008254,0.249864,0,0);}
.m6f_c00031{transform:matrix(0.230859,0.005310,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230859,0.005310,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230859,0.005310,-0.005748,0.249934,0,0);}
.mc5_c00031{transform:matrix(0.231517,0.003936,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231517,0.003936,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231517,0.003936,-0.004249,0.249964,0,0);}
.md1_c00031{transform:matrix(0.232781,0.003957,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232781,0.003957,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232781,0.003957,-0.004249,0.249964,0,0);}
.mc2_c00031{transform:matrix(0.233326,0.003967,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233326,0.003967,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233326,0.003967,-0.004249,0.249964,0,0);}
.m14_c00031{transform:matrix(0.233877,0.006782,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233877,0.006782,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233877,0.006782,-0.007247,0.249895,0,0);}
.mbe_c00031{transform:matrix(0.235111,0.003997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235111,0.003997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235111,0.003997,-0.004249,0.249964,0,0);}
.me8_c00031{transform:matrix(0.235286,0.004000,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235286,0.004000,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235286,0.004000,-0.004249,0.249964,0,0);}
.ma0_c00031{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m22_c00031{transform:matrix(0.236765,0.008295,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236765,0.008295,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236765,0.008295,-0.008753,0.249847,0,0);}
.m7e_c00031{transform:matrix(0.237513,0.006413,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237513,0.006413,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237513,0.006413,-0.006748,0.249909,0,0);}
.m65_c00031{transform:matrix(0.238951,0.005735,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238951,0.005735,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238951,0.005735,-0.005998,0.249928,0,0);}
.m48_c00031{transform:matrix(0.239373,0.008386,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239373,0.008386,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239373,0.008386,-0.008753,0.249847,0,0);}
.m67_c00031{transform:matrix(0.239832,0.005516,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239832,0.005516,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239832,0.005516,-0.005748,0.249934,0,0);}
.mc4_c00031{transform:matrix(0.241770,0.004110,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241770,0.004110,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241770,0.004110,-0.004249,0.249964,0,0);}
.m72_c00031{transform:matrix(0.243046,0.005590,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243046,0.005590,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243046,0.005590,-0.005748,0.249934,0,0);}
.mc0_c00031{transform:matrix(0.243440,0.004138,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243440,0.004138,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243440,0.004138,-0.004249,0.249964,0,0);}
.mb2_c00031{transform:matrix(0.245210,0.004169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245210,0.004169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245210,0.004169,-0.004249,0.249964,0,0);}
.m58_c00031{transform:matrix(0.246211,0.008133,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246211,0.008133,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246211,0.008133,-0.008254,0.249864,0,0);}
.m59_c00031{transform:matrix(0.246730,0.008150,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246730,0.008150,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246730,0.008150,-0.008254,0.249864,0,0);}
.m89_c00031{transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);}
.m74_c00031{transform:matrix(0.255777,0.005883,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255777,0.005883,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255777,0.005883,-0.005748,0.249934,0,0);}
.mdb_c00031{transform:matrix(0.257108,0.004371,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257108,0.004371,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257108,0.004371,-0.004249,0.249964,0,0);}
.mda_c00031{transform:matrix(0.258018,0.004386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258018,0.004386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258018,0.004386,-0.004249,0.249964,0,0);}
.mb5_c00031{transform:matrix(0.258068,0.004387,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258068,0.004387,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258068,0.004387,-0.004249,0.249964,0,0);}
.mbf_c00031{transform:matrix(0.259163,0.004406,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259163,0.004406,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259163,0.004406,-0.004249,0.249964,0,0);}
.m62_c00031{transform:matrix(0.260260,0.006246,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260260,0.006246,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260260,0.006246,-0.005998,0.249928,0,0);}
.m8a_c00031{transform:matrix(0.260653,0.007298,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260653,0.007298,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260653,0.007298,-0.006997,0.249902,0,0);}
.m64_c00031{transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);}
.m13_c00031{transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);}
.mcc_c00031{transform:matrix(0.281854,0.004792,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281854,0.004792,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281854,0.004792,-0.004249,0.249964,0,0);}
.ma9_c00031{transform:matrix(0.284584,0.007399,-0.006498,0.249916,0,0);-ms-transform:matrix(0.284584,0.007399,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.284584,0.007399,-0.006498,0.249916,0,0);}
.m1a_c00031{transform:matrix(0.290996,0.010195,-0.008753,0.249847,0,0);-ms-transform:matrix(0.290996,0.010195,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.290996,0.010195,-0.008753,0.249847,0,0);}
.md4_c00031{transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);}
.mbd_c00031{transform:matrix(0.302496,0.005142,-0.004249,0.249964,0,0);-ms-transform:matrix(0.302496,0.005142,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.302496,0.005142,-0.004249,0.249964,0,0);}
.m8f_c00031{transform:matrix(0.307929,0.008622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.307929,0.008622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.307929,0.008622,-0.006997,0.249902,0,0);}
.m9c_c00031{transform:matrix(0.323905,0.012969,-0.010002,0.249800,0,0);-ms-transform:matrix(0.323905,0.012969,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.323905,0.012969,-0.010002,0.249800,0,0);}
.m97_c00031{transform:matrix(0.339927,0.009518,-0.006997,0.249902,0,0);-ms-transform:matrix(0.339927,0.009518,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.339927,0.009518,-0.006997,0.249902,0,0);}
.m43_c00031{transform:matrix(0.353633,0.012390,-0.008753,0.249847,0,0);-ms-transform:matrix(0.353633,0.012390,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.353633,0.012390,-0.008753,0.249847,0,0);}
.m3a_c00031{transform:matrix(0.362478,0.012699,-0.008753,0.249847,0,0);-ms-transform:matrix(0.362478,0.012699,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.362478,0.012699,-0.008753,0.249847,0,0);}
.m2c_c00031{transform:matrix(0.373476,0.013085,-0.008753,0.249847,0,0);-ms-transform:matrix(0.373476,0.013085,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.373476,0.013085,-0.008753,0.249847,0,0);}
.m7a_c00031{transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);}
.m61_c00031{transform:matrix(0.398655,0.009568,-0.005998,0.249928,0,0);-ms-transform:matrix(0.398655,0.009568,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.398655,0.009568,-0.005998,0.249928,0,0);}
.m94_c00031{transform:matrix(0.427527,0.011971,-0.006997,0.249902,0,0);-ms-transform:matrix(0.427527,0.011971,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.427527,0.011971,-0.006997,0.249902,0,0);}
.m90_c00031{transform:matrix(0.548110,0.015347,-0.006997,0.249902,0,0);-ms-transform:matrix(0.548110,0.015347,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.548110,0.015347,-0.006997,0.249902,0,0);}
.m52_c00031{transform:matrix(0.639851,0.021136,-0.008254,0.249864,0,0);-ms-transform:matrix(0.639851,0.021136,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.639851,0.021136,-0.008254,0.249864,0,0);}
.m93_c00031{transform:matrix(0.647171,0.018121,-0.006997,0.249902,0,0);-ms-transform:matrix(0.647171,0.018121,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.647171,0.018121,-0.006997,0.249902,0,0);}
.maf_c00031{transform:matrix(0.652764,0.016972,-0.006498,0.249916,0,0);-ms-transform:matrix(0.652764,0.016972,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.652764,0.016972,-0.006498,0.249916,0,0);}
.m9b_c00031{transform:matrix(1.940649,0.054338,-0.006997,0.249902,0,0);-ms-transform:matrix(1.940649,0.054338,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.940649,0.054338,-0.006997,0.249902,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
.fc0_c00031{color:transparent;}
.fsa_c00031{font-size:22.050000px;}
.fs16_c00031{font-size:22.058642px;}
.fs12_c00031{font-size:26.250000px;}
.fs21_c00031{font-size:51.450000px;}
.fs11_c00031{font-size:54.614440px;}
.fsc_c00031{font-size:55.624673px;}
.fs10_c00031{font-size:56.714995px;}
.fs1e_c00031{font-size:57.758344px;}
.fs1b_c00031{font-size:58.808496px;}
.fs13_c00031{font-size:58.821429px;}
.fs1d_c00031{font-size:59.858648px;}
.fsf_c00031{font-size:59.865828px;}
.fs1a_c00031{font-size:59.870226px;}
.fsb_c00031{font-size:60.872284px;}
.fs8_c00031{font-size:60.876427px;}
.fs20_c00031{font-size:60.908799px;}
.fs1f_c00031{font-size:63.009103px;}
.fs15_c00031{font-size:64.075103px;}
.fs1c_c00031{font-size:65.109406px;}
.fse_c00031{font-size:65.118746px;}
.fs17_c00031{font-size:65.125514px;}
.fs19_c00031{font-size:66.150000px;}
.fsd_c00031{font-size:66.169048px;}
.fs14_c00031{font-size:66.174107px;}
.fs5_c00031{font-size:67.173989px;}
.fs0_c00031{font-size:67.200000px;}
.fs2_c00031{font-size:67.230233px;}
.fs7_c00031{font-size:68.223582px;}
.fs18_c00031{font-size:68.236383px;}
.fs9_c00031{font-size:69.273176px;}
.fs6_c00031{font-size:71.372363px;}
.fs4_c00031{font-size:71.430017px;}
.fs3_c00031{font-size:74.579218px;}
.fs1_c00031{font-size:82.987319px;}
.y0_c00031{bottom:0.000000px;}
.ye3_c00031{bottom:25.512794px;}
.ye2_c00031{bottom:25.901442px;}
.ye1_c00031{bottom:27.739011px;}
.ye0_c00031{bottom:28.187507px;}
.ydf_c00031{bottom:28.969011px;}
.yde_c00031{bottom:29.369615px;}
.ydd_c00031{bottom:30.000201px;}
.ydc_c00031{bottom:31.037583px;}
.ydb_c00031{bottom:41.141091px;}
.yda_c00031{bottom:41.677169px;}
.yd9_c00031{bottom:43.534086px;}
.yd8_c00031{bottom:45.225194px;}
.yd7_c00031{bottom:45.961577px;}
.yd6_c00031{bottom:47.782724px;}
.yd5_c00031{bottom:61.498325px;}
.yd4_c00031{bottom:61.784922px;}
.yd3_c00031{bottom:62.842452px;}
.yd2_c00031{bottom:63.053990px;}
.yd1_c00031{bottom:63.581199px;}
.yd0_c00031{bottom:64.385465px;}
.ycf_c00031{bottom:64.916958px;}
.yce_c00031{bottom:65.871884px;}
.ycd_c00031{bottom:74.314122px;}
.ycc_c00031{bottom:75.962567px;}
.ycb_c00031{bottom:76.443179px;}
.yca_c00031{bottom:76.849235px;}
.yc9_c00031{bottom:77.831997px;}
.yc8_c00031{bottom:78.329379px;}
.yc7_c00031{bottom:79.415469px;}
.yc6_c00031{bottom:80.187747px;}
.yc5_c00031{bottom:93.487926px;}
.yc4_c00031{bottom:94.719456px;}
.yc3_c00031{bottom:95.157450px;}
.yc2_c00031{bottom:98.236592px;}
.yc1_c00031{bottom:98.819669px;}
.yc0_c00031{bottom:112.162368px;}
.ybf_c00031{bottom:112.454078px;}
.ybe_c00031{bottom:112.942317px;}
.ybd_c00031{bottom:113.116720px;}
.ybc_c00031{bottom:113.939448px;}
.ybb_c00031{bottom:114.374828px;}
.yba_c00031{bottom:114.981627px;}
.yb9_c00031{bottom:115.829571px;}
.yb8_c00031{bottom:125.837384px;}
.yb7_c00031{bottom:128.058810px;}
.yb6_c00031{bottom:128.337129px;}
.yb5_c00031{bottom:129.323038px;}
.yb4_c00031{bottom:129.981306px;}
.yb3_c00031{bottom:130.476237px;}
.yb2_c00031{bottom:130.804261px;}
.yb1_c00031{bottom:132.276747px;}
.yb0_c00031{bottom:132.571781px;}
.yaf_c00031{bottom:145.642065px;}
.yae_c00031{bottom:146.188505px;}
.yad_c00031{bottom:147.488061px;}
.yac_c00031{bottom:147.874029px;}
.yab_c00031{bottom:149.439296px;}
.yaa_c00031{bottom:149.746928px;}
.ya9_c00031{bottom:150.394500px;}
.ya8_c00031{bottom:160.557966px;}
.ya7_c00031{bottom:161.162193px;}
.ya6_c00031{bottom:163.135983px;}
.ya5_c00031{bottom:163.627773px;}
.ya4_c00031{bottom:164.856585px;}
.ya3_c00031{bottom:165.482067px;}
.ya2_c00031{bottom:167.137500px;}
.ya1_c00031{bottom:185.016000px;}
.ya0_c00031{bottom:195.206220px;}
.y9f_c00031{bottom:198.843360px;}
.y9e_c00031{bottom:202.709700px;}
.y9d_c00031{bottom:204.675000px;}
.y9a_c00031{bottom:217.475916px;}
.y9b_c00031{bottom:217.476168px;}
.y99_c00031{bottom:217.476564px;}
.y9c_c00031{bottom:217.476792px;}
.y98_c00031{bottom:225.735582px;}
.y97_c00031{bottom:225.735834px;}
.y96_c00031{bottom:225.736206px;}
.y93_c00031{bottom:225.736236px;}
.y92_c00031{bottom:225.736380px;}
.y94_c00031{bottom:225.736488px;}
.y90_c00031{bottom:225.736596px;}
.y91_c00031{bottom:225.736770px;}
.y95_c00031{bottom:225.736950px;}
.y8f_c00031{bottom:227.911350px;}
.y8e_c00031{bottom:230.862984px;}
.y8d_c00031{bottom:231.524610px;}
.y8c_c00031{bottom:233.440986px;}
.y8b_c00031{bottom:233.956998px;}
.y8a_c00031{bottom:235.989000px;}
.y89_c00031{bottom:245.922237px;}
.y88_c00031{bottom:246.418154px;}
.y87_c00031{bottom:249.331560px;}
.y86_c00031{bottom:250.937455px;}
.y85_c00031{bottom:251.333127px;}
.y84_c00031{bottom:253.263207px;}
.y83_c00031{bottom:262.627981px;}
.y82_c00031{bottom:263.218634px;}
.y81_c00031{bottom:265.450913px;}
.y80_c00031{bottom:265.770781px;}
.y7f_c00031{bottom:268.149225px;}
.y7e_c00031{bottom:269.819000px;}
.y7d_c00031{bottom:270.277500px;}
.y79_c00031{bottom:280.728606px;}
.y78_c00031{bottom:282.366803px;}
.y77_c00031{bottom:283.055463px;}
.y76_c00031{bottom:284.301216px;}
.y75_c00031{bottom:286.126605px;}
.y74_c00031{bottom:287.007925px;}
.y73_c00031{bottom:296.638047px;}
.y72_c00031{bottom:297.493019px;}
.y71_c00031{bottom:298.919880px;}
.y70_c00031{bottom:300.643226px;}
.y6f_c00031{bottom:301.346341px;}
.y6e_c00031{bottom:304.296708px;}
.y6d_c00031{bottom:312.829697px;}
.y6c_c00031{bottom:313.987724px;}
.y6b_c00031{bottom:315.099727px;}
.y6a_c00031{bottom:317.535393px;}
.y69_c00031{bottom:318.534651px;}
.y68_c00031{bottom:319.957500px;}
.y67_c00031{bottom:330.627468px;}
.y66_c00031{bottom:331.354548px;}
.y65_c00031{bottom:333.225756px;}
.y64_c00031{bottom:334.160496px;}
.y63_c00031{bottom:334.625220px;}
.y62_c00031{bottom:335.186256px;}
.y61_c00031{bottom:336.961476px;}
.y5b_c00031{bottom:346.210083px;}
.y5a_c00031{bottom:347.176323px;}
.y59_c00031{bottom:347.469907px;}
.y58_c00031{bottom:347.862047px;}
.y57_c00031{bottom:349.338434px;}
.y56_c00031{bottom:349.931840px;}
.y60_c00031{bottom:351.087540px;}
.y5f_c00031{bottom:352.256712px;}
.y5e_c00031{bottom:352.652172px;}
.y5d_c00031{bottom:354.596532px;}
.y5c_c00031{bottom:355.056000px;}
.y55_c00031{bottom:364.019211px;}
.y54_c00031{bottom:364.813537px;}
.y53_c00031{bottom:366.622465px;}
.y52_c00031{bottom:370.243539px;}
.y51_c00031{bottom:371.527074px;}
.y50_c00031{bottom:372.613500px;}
.y4e_c00031{bottom:382.351249px;}
.y4d_c00031{bottom:383.972359px;}
.y4c_c00031{bottom:385.473328px;}
.y4b_c00031{bottom:386.187597px;}
.y4a_c00031{bottom:387.035313px;}
.y49_c00031{bottom:389.058446px;}
.y48_c00031{bottom:389.666481px;}
.y47_c00031{bottom:398.719355px;}
.y46_c00031{bottom:399.990763px;}
.y45_c00031{bottom:400.597662px;}
.y44_c00031{bottom:402.059260px;}
.y43_c00031{bottom:402.815351px;}
.y42_c00031{bottom:404.447060px;}
.y41_c00031{bottom:405.105847px;}
.y40_c00031{bottom:406.943391px;}
.y3f_c00031{bottom:414.406539px;}
.y3e_c00031{bottom:415.803267px;}
.y3d_c00031{bottom:418.071115px;}
.y3c_c00031{bottom:419.255805px;}
.y3b_c00031{bottom:421.012431px;}
.y3a_c00031{bottom:421.609329px;}
.y39_c00031{bottom:424.218700px;}
.y38_c00031{bottom:432.253926px;}
.y37_c00031{bottom:435.392376px;}
.y36_c00031{bottom:437.907861px;}
.y35_c00031{bottom:439.845583px;}
.y34_c00031{bottom:440.480308px;}
.y33_c00031{bottom:441.491511px;}
.y7c_c00031{bottom:445.770000px;}
.y32_c00031{bottom:449.493852px;}
.y31_c00031{bottom:450.517819px;}
.y30_c00031{bottom:452.351353px;}
.y2f_c00031{bottom:453.617571px;}
.y7b_c00031{bottom:454.006500px;}
.y2e_c00031{bottom:456.493657px;}
.y2d_c00031{bottom:457.954116px;}
.y7a_c00031{bottom:461.970000px;}
.y2c_c00031{bottom:463.779226px;}
.y2b_c00031{bottom:464.528053px;}
.y2a_c00031{bottom:466.174380px;}
.y29_c00031{bottom:467.512332px;}
.y4f_c00031{bottom:470.340000px;}
.y28_c00031{bottom:472.311201px;}
.y27_c00031{bottom:473.580174px;}
.y26_c00031{bottom:475.766682px;}
.y25_c00031{bottom:483.325476px;}
.y24_c00031{bottom:484.079053px;}
.y23_c00031{bottom:485.290384px;}
.y22_c00031{bottom:485.577861px;}
.y21_c00031{bottom:488.606952px;}
.y20_c00031{bottom:489.993915px;}
.y1f_c00031{bottom:491.960007px;}
.y1e_c00031{bottom:499.561792px;}
.y1d_c00031{bottom:501.376402px;}
.y1c_c00031{bottom:503.852460px;}
.y1b_c00031{bottom:504.437362px;}
.y1a_c00031{bottom:506.483917px;}
.y19_c00031{bottom:508.335330px;}
.y18_c00031{bottom:509.233500px;}
.y17_c00031{bottom:516.368550px;}
.y16_c00031{bottom:517.523388px;}
.y15_c00031{bottom:518.415051px;}
.y14_c00031{bottom:520.757613px;}
.y13_c00031{bottom:522.036339px;}
.y12_c00031{bottom:523.524996px;}
.y11_c00031{bottom:524.620500px;}
.y10_c00031{bottom:534.219672px;}
.yf_c00031{bottom:534.875922px;}
.ye_c00031{bottom:537.964644px;}
.yd_c00031{bottom:539.333508px;}
.yc_c00031{bottom:541.359000px;}
.yb_c00031{bottom:550.264485px;}
.ya_c00031{bottom:551.276265px;}
.y9_c00031{bottom:553.554255px;}
.y8_c00031{bottom:554.243430px;}
.y7_c00031{bottom:554.876175px;}
.y6_c00031{bottom:557.090130px;}
.y5_c00031{bottom:558.636555px;}
.y4_c00031{bottom:562.514850px;}
.y3_c00031{bottom:566.422335px;}
.y2_c00031{bottom:568.620000px;}
.y1_c00031{bottom:570.910500px;}
.hc_c00031{height:22.050000px;}
.h18_c00031{height:22.058642px;}
.h14_c00031{height:26.250000px;}
.h23_c00031{height:51.450000px;}
.h13_c00031{height:54.614440px;}
.he_c00031{height:55.624673px;}
.h12_c00031{height:56.714995px;}
.h20_c00031{height:57.758344px;}
.h1d_c00031{height:58.808496px;}
.h15_c00031{height:58.821429px;}
.h1f_c00031{height:59.858648px;}
.h11_c00031{height:59.865828px;}
.h1c_c00031{height:59.870226px;}
.hd_c00031{height:60.872284px;}
.ha_c00031{height:60.876427px;}
.h22_c00031{height:60.908799px;}
.h21_c00031{height:63.009103px;}
.h17_c00031{height:64.075103px;}
.h1e_c00031{height:65.109406px;}
.h10_c00031{height:65.118746px;}
.h19_c00031{height:65.125514px;}
.h1b_c00031{height:66.150000px;}
.hf_c00031{height:66.169048px;}
.h16_c00031{height:66.174107px;}
.h7_c00031{height:67.173989px;}
.h2_c00031{height:67.200000px;}
.h4_c00031{height:67.230233px;}
.h9_c00031{height:68.223582px;}
.h1a_c00031{height:68.236383px;}
.hb_c00031{height:69.273176px;}
.h8_c00031{height:71.372363px;}
.h6_c00031{height:71.430017px;}
.h5_c00031{height:74.579218px;}
.h3_c00031{height:82.987319px;}
.h1_c00031{height:615.750000px;}
.h0_c00031{height:615.870000px;}
.w0_c00031{width:356.670000px;}
.w1_c00031{width:357.000000px;}
.x0_c00031{left:0.000000px;}
.x81_c00031{left:32.236990px;}
.x7a_c00031{left:33.414378px;}
.x51_c00031{left:34.734458px;}
.x4d_c00031{left:36.691500px;}
.x30_c00031{left:38.188821px;}
.x16_c00031{left:39.303000px;}
.x5_c00031{left:40.336395px;}
.x74_c00031{left:42.748110px;}
.x24_c00031{left:44.421489px;}
.x46_c00031{left:46.990500px;}
.x49_c00031{left:49.121208px;}
.x54_c00031{left:52.924143px;}
.x75_c00031{left:55.072156px;}
.x37_c00031{left:58.427440px;}
.x68_c00031{left:59.951334px;}
.x7c_c00031{left:62.387254px;}
.x17_c00031{left:64.939338px;}
.x47_c00031{left:66.135000px;}
.x26_c00031{left:67.613677px;}
.x3d_c00031{left:70.567578px;}
.x71_c00031{left:72.157500px;}
.x10_c00031{left:77.653500px;}
.x55_c00031{left:82.302917px;}
.x82_c00031{left:84.080338px;}
.x27_c00031{left:85.730542px;}
.x22_c00031{left:88.229733px;}
.x6b_c00031{left:90.027367px;}
.x6_c00031{left:91.883895px;}
.x31_c00031{left:93.806536px;}
.x1d_c00031{left:97.050654px;}
.x4e_c00031{left:98.554500px;}
.x5e_c00031{left:102.395126px;}
.x2_c00031{left:106.363500px;}
.x60_c00031{left:107.893500px;}
.x3e_c00031{left:109.423683px;}
.xc_c00031{left:112.251000px;}
.x32_c00031{left:113.766475px;}
.x2b_c00031{left:115.396989px;}
.x76_c00031{left:116.446363px;}
.x18_c00031{left:117.783940px;}
.x69_c00031{left:122.616432px;}
.x38_c00031{left:125.808816px;}
.x11_c00031{left:128.986500px;}
.x77_c00031{left:130.093231px;}
.x2c_c00031{left:132.948051px;}
.x83_c00031{left:135.647712px;}
.x1e_c00031{left:137.794788px;}
.x4a_c00031{left:138.960888px;}
.x28_c00031{left:141.038679px;}
.x56_c00031{left:143.136119px;}
.x6c_c00031{left:146.070000px;}
.x48_c00031{left:147.150000px;}
.x78_c00031{left:150.733783px;}
.x39_c00031{left:154.030506px;}
.x62_c00031{left:155.567346px;}
.x4b_c00031{left:156.823524px;}
.x6d_c00031{left:160.110000px;}
.xd_c00031{left:161.139000px;}
.x33_c00031{left:163.166494px;}
.x7_c00031{left:165.682395px;}
.x6a_c00031{left:169.345056px;}
.x25_c00031{left:171.838911px;}
.x12_c00031{left:173.080500px;}
.x84_c00031{left:174.734223px;}
.x19_c00031{left:176.198467px;}
.x3a_c00031{left:177.800863px;}
.x3_c00031{left:179.619000px;}
.x72_c00031{left:182.328000px;}
.x2d_c00031{left:184.543191px;}
.x1_c00031{left:185.760000px;}
.x8_c00031{left:186.773895px;}
.x70_c00031{left:188.425500px;}
.x1a_c00031{left:192.893256px;}
.x61_c00031{left:194.764500px;}
.x85_c00031{left:197.144575px;}
.x7e_c00031{left:200.084557px;}
.x5c_c00031{left:203.074500px;}
.x6e_c00031{left:204.120000px;}
.x57_c00031{left:207.600234px;}
.x9_c00031{left:209.746395px;}
.x29_c00031{left:212.837808px;}
.x5d_c00031{left:214.921500px;}
.x7d_c00031{left:216.328900px;}
.x63_c00031{left:218.232444px;}
.x2e_c00031{left:219.342565px;}
.x7f_c00031{left:220.351512px;}
.x80_c00031{left:222.075364px;}
.x1f_c00031{left:226.780314px;}
.x34_c00031{left:230.276994px;}
.x20_c00031{left:235.242658px;}
.x41_c00031{left:237.530326px;}
.x7b_c00031{left:242.155081px;}
.x6f_c00031{left:244.350000px;}
.x35_c00031{left:248.627386px;}
.x13_c00031{left:253.858500px;}
.x23_c00031{left:256.402866px;}
.x64_c00031{left:258.747696px;}
.x58_c00031{left:262.186937px;}
.x1b_c00031{left:263.567012px;}
.x4c_c00031{left:264.732840px;}
.xe_c00031{left:271.450500px;}
.x3f_c00031{left:273.804637px;}
.x52_c00031{left:277.693013px;}
.x3b_c00031{left:281.731012px;}
.x14_c00031{left:284.605500px;}
.xa_c00031{left:285.679395px;}
.x36_c00031{left:287.101054px;}
.x5f_c00031{left:288.955041px;}
.x65_c00031{left:290.620644px;}
.x21_c00031{left:292.996896px;}
.xf_c00031{left:294.888000px;}
.x4f_c00031{left:296.247000px;}
.x40_c00031{left:297.851067px;}
.x42_c00031{left:300.188605px;}
.x2a_c00031{left:302.418138px;}
.x66_c00031{left:306.557118px;}
.x53_c00031{left:308.209994px;}
.x4_c00031{left:309.868500px;}
.x43_c00031{left:312.059722px;}
.x73_c00031{left:313.620000px;}
.x1c_c00031{left:315.361166px;}
.xb_c00031{left:319.405395px;}
.x44_c00031{left:320.947326px;}
.x67_c00031{left:321.953172px;}
.x79_c00031{left:323.355730px;}
.x15_c00031{left:324.427500px;}
.x2f_c00031{left:326.980551px;}
.x5b_c00031{left:335.610000px;}
.x5a_c00031{left:336.690000px;}
.x3c_c00031{left:338.040000px;}
.x59_c00031{left:340.200000px;}
.x86_c00031{left:342.900000px;}
.x50_c00031{left:346.596000px;}
.x45_c00031{left:350.198046px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fsa_c00031{font-size:19.600000pt;}
.fs16_c00031{font-size:19.607682pt;}
.fs12_c00031{font-size:23.333333pt;}
.fs21_c00031{font-size:45.733333pt;}
.fs11_c00031{font-size:48.546169pt;}
.fsc_c00031{font-size:49.444154pt;}
.fs10_c00031{font-size:50.413329pt;}
.fs1e_c00031{font-size:51.340750pt;}
.fs1b_c00031{font-size:52.274219pt;}
.fs13_c00031{font-size:52.285714pt;}
.fs1d_c00031{font-size:53.207687pt;}
.fsf_c00031{font-size:53.214070pt;}
.fs1a_c00031{font-size:53.217979pt;}
.fsb_c00031{font-size:54.108697pt;}
.fs8_c00031{font-size:54.112380pt;}
.fs20_c00031{font-size:54.141155pt;}
.fs1f_c00031{font-size:56.008091pt;}
.fs15_c00031{font-size:56.955647pt;}
.fs1c_c00031{font-size:57.875028pt;}
.fse_c00031{font-size:57.883330pt;}
.fs17_c00031{font-size:57.889346pt;}
.fs19_c00031{font-size:58.800000pt;}
.fsd_c00031{font-size:58.816932pt;}
.fs14_c00031{font-size:58.821429pt;}
.fs5_c00031{font-size:59.710212pt;}
.fs0_c00031{font-size:59.733333pt;}
.fs2_c00031{font-size:59.760207pt;}
.fs7_c00031{font-size:60.643184pt;}
.fs18_c00031{font-size:60.654562pt;}
.fs9_c00031{font-size:61.576156pt;}
.fs6_c00031{font-size:63.442100pt;}
.fs4_c00031{font-size:63.493349pt;}
.fs3_c00031{font-size:66.292638pt;}
.fs1_c00031{font-size:73.766506pt;}
.y0_c00031{bottom:0.000000pt;}
.ye3_c00031{bottom:22.678039pt;}
.ye2_c00031{bottom:23.023504pt;}
.ye1_c00031{bottom:24.656899pt;}
.ye0_c00031{bottom:25.055561pt;}
.ydf_c00031{bottom:25.750232pt;}
.yde_c00031{bottom:26.106324pt;}
.ydd_c00031{bottom:26.666845pt;}
.ydc_c00031{bottom:27.588963pt;}
.ydb_c00031{bottom:36.569859pt;}
.yda_c00031{bottom:37.046372pt;}
.yd9_c00031{bottom:38.696965pt;}
.yd8_c00031{bottom:40.200172pt;}
.yd7_c00031{bottom:40.854735pt;}
.yd6_c00031{bottom:42.473532pt;}
.yd5_c00031{bottom:54.665177pt;}
.yd4_c00031{bottom:54.919931pt;}
.yd3_c00031{bottom:55.859957pt;}
.yd2_c00031{bottom:56.047991pt;}
.yd1_c00031{bottom:56.516621pt;}
.yd0_c00031{bottom:57.231524pt;}
.ycf_c00031{bottom:57.703963pt;}
.yce_c00031{bottom:58.552785pt;}
.ycd_c00031{bottom:66.056997pt;}
.ycc_c00031{bottom:67.522281pt;}
.ycb_c00031{bottom:67.949492pt;}
.yca_c00031{bottom:68.310431pt;}
.yc9_c00031{bottom:69.183997pt;}
.yc8_c00031{bottom:69.626115pt;}
.yc7_c00031{bottom:70.591528pt;}
.yc6_c00031{bottom:71.277997pt;}
.yc5_c00031{bottom:83.100379pt;}
.yc4_c00031{bottom:84.195072pt;}
.yc3_c00031{bottom:84.584400pt;}
.yc2_c00031{bottom:87.321415pt;}
.yc1_c00031{bottom:87.839705pt;}
.yc0_c00031{bottom:99.699883pt;}
.ybf_c00031{bottom:99.959180pt;}
.ybe_c00031{bottom:100.393171pt;}
.ybd_c00031{bottom:100.548196pt;}
.ybc_c00031{bottom:101.279509pt;}
.ybb_c00031{bottom:101.666513pt;}
.yba_c00031{bottom:102.205891pt;}
.yb9_c00031{bottom:102.959619pt;}
.yb8_c00031{bottom:111.855452pt;}
.yb7_c00031{bottom:113.830053pt;}
.yb6_c00031{bottom:114.077448pt;}
.yb5_c00031{bottom:114.953812pt;}
.yb4_c00031{bottom:115.538939pt;}
.yb3_c00031{bottom:115.978877pt;}
.yb2_c00031{bottom:116.270455pt;}
.yb1_c00031{bottom:117.579331pt;}
.yb0_c00031{bottom:117.841583pt;}
.yaf_c00031{bottom:129.459613pt;}
.yae_c00031{bottom:129.945337pt;}
.yad_c00031{bottom:131.100499pt;}
.yac_c00031{bottom:131.443581pt;}
.yab_c00031{bottom:132.834929pt;}
.yaa_c00031{bottom:133.108380pt;}
.ya9_c00031{bottom:133.684000pt;}
.ya8_c00031{bottom:142.718192pt;}
.ya7_c00031{bottom:143.255283pt;}
.ya6_c00031{bottom:145.009763pt;}
.ya5_c00031{bottom:145.446909pt;}
.ya4_c00031{bottom:146.539187pt;}
.ya3_c00031{bottom:147.095171pt;}
.ya2_c00031{bottom:148.566667pt;}
.ya1_c00031{bottom:164.458667pt;}
.ya0_c00031{bottom:173.516640pt;}
.y9f_c00031{bottom:176.749653pt;}
.y9e_c00031{bottom:180.186400pt;}
.y9d_c00031{bottom:181.933333pt;}
.y9a_c00031{bottom:193.311925pt;}
.y9b_c00031{bottom:193.312149pt;}
.y99_c00031{bottom:193.312501pt;}
.y9c_c00031{bottom:193.312704pt;}
.y98_c00031{bottom:200.653851pt;}
.y97_c00031{bottom:200.654075pt;}
.y96_c00031{bottom:200.654405pt;}
.y93_c00031{bottom:200.654432pt;}
.y92_c00031{bottom:200.654560pt;}
.y94_c00031{bottom:200.654656pt;}
.y90_c00031{bottom:200.654752pt;}
.y91_c00031{bottom:200.654907pt;}
.y95_c00031{bottom:200.655067pt;}
.y8f_c00031{bottom:202.587867pt;}
.y8e_c00031{bottom:205.211541pt;}
.y8d_c00031{bottom:205.799653pt;}
.y8c_c00031{bottom:207.503099pt;}
.y8b_c00031{bottom:207.961776pt;}
.y8a_c00031{bottom:209.768000pt;}
.y89_c00031{bottom:218.597544pt;}
.y88_c00031{bottom:219.038359pt;}
.y87_c00031{bottom:221.628053pt;}
.y86_c00031{bottom:223.055516pt;}
.y85_c00031{bottom:223.407224pt;}
.y84_c00031{bottom:225.122851pt;}
.y83_c00031{bottom:233.447095pt;}
.y82_c00031{bottom:233.972119pt;}
.y81_c00031{bottom:235.956367pt;}
.y80_c00031{bottom:236.240695pt;}
.y7f_c00031{bottom:238.354867pt;}
.y7e_c00031{bottom:239.839111pt;}
.y7d_c00031{bottom:240.246667pt;}
.y79_c00031{bottom:249.536539pt;}
.y78_c00031{bottom:250.992713pt;}
.y77_c00031{bottom:251.604856pt;}
.y76_c00031{bottom:252.712192pt;}
.y75_c00031{bottom:254.334760pt;}
.y74_c00031{bottom:255.118156pt;}
.y73_c00031{bottom:263.678264pt;}
.y72_c00031{bottom:264.438239pt;}
.y71_c00031{bottom:265.706560pt;}
.y70_c00031{bottom:267.238423pt;}
.y6f_c00031{bottom:267.863415pt;}
.y6e_c00031{bottom:270.485963pt;}
.y6d_c00031{bottom:278.070841pt;}
.y6c_c00031{bottom:279.100199pt;}
.y6b_c00031{bottom:280.088647pt;}
.y6a_c00031{bottom:282.253683pt;}
.y69_c00031{bottom:283.141912pt;}
.y68_c00031{bottom:284.406667pt;}
.y67_c00031{bottom:293.891083pt;}
.y66_c00031{bottom:294.537376pt;}
.y65_c00031{bottom:296.200672pt;}
.y64_c00031{bottom:297.031552pt;}
.y63_c00031{bottom:297.444640pt;}
.y62_c00031{bottom:297.943339pt;}
.y61_c00031{bottom:299.521312pt;}
.y5b_c00031{bottom:307.742296pt;}
.y5a_c00031{bottom:308.601176pt;}
.y59_c00031{bottom:308.862140pt;}
.y58_c00031{bottom:309.210708pt;}
.y57_c00031{bottom:310.523052pt;}
.y56_c00031{bottom:311.050524pt;}
.y60_c00031{bottom:312.077813pt;}
.y5f_c00031{bottom:313.117077pt;}
.y5e_c00031{bottom:313.468597pt;}
.y5d_c00031{bottom:315.196917pt;}
.y5c_c00031{bottom:315.605333pt;}
.y55_c00031{bottom:323.572632pt;}
.y54_c00031{bottom:324.278700pt;}
.y53_c00031{bottom:325.886636pt;}
.y52_c00031{bottom:329.105368pt;}
.y51_c00031{bottom:330.246288pt;}
.y50_c00031{bottom:331.212000pt;}
.y4e_c00031{bottom:339.867777pt;}
.y4d_c00031{bottom:341.308764pt;}
.y4c_c00031{bottom:342.642959pt;}
.y4b_c00031{bottom:343.277864pt;}
.y4a_c00031{bottom:344.031389pt;}
.y49_c00031{bottom:345.829729pt;}
.y48_c00031{bottom:346.370205pt;}
.y47_c00031{bottom:354.417204pt;}
.y46_c00031{bottom:355.547345pt;}
.y45_c00031{bottom:356.086811pt;}
.y44_c00031{bottom:357.386009pt;}
.y43_c00031{bottom:358.058089pt;}
.y42_c00031{bottom:359.508497pt;}
.y41_c00031{bottom:360.094087pt;}
.y40_c00031{bottom:361.727459pt;}
.y3f_c00031{bottom:368.361368pt;}
.y3e_c00031{bottom:369.602904pt;}
.y3d_c00031{bottom:371.618769pt;}
.y3c_c00031{bottom:372.671827pt;}
.y3b_c00031{bottom:374.233272pt;}
.y3a_c00031{bottom:374.763848pt;}
.y39_c00031{bottom:377.083289pt;}
.y38_c00031{bottom:384.225712pt;}
.y37_c00031{bottom:387.015445pt;}
.y36_c00031{bottom:389.251432pt;}
.y35_c00031{bottom:390.973852pt;}
.y34_c00031{bottom:391.538052pt;}
.y33_c00031{bottom:392.436899pt;}
.y7c_c00031{bottom:396.240000pt;}
.y32_c00031{bottom:399.550091pt;}
.y31_c00031{bottom:400.460284pt;}
.y30_c00031{bottom:402.090092pt;}
.y2f_c00031{bottom:403.215619pt;}
.y7b_c00031{bottom:403.561333pt;}
.y2e_c00031{bottom:405.772140pt;}
.y2d_c00031{bottom:407.070325pt;}
.y7a_c00031{bottom:410.640000pt;}
.y2c_c00031{bottom:412.248201pt;}
.y2b_c00031{bottom:412.913825pt;}
.y2a_c00031{bottom:414.377227pt;}
.y29_c00031{bottom:415.566517pt;}
.y4f_c00031{bottom:418.080000pt;}
.y28_c00031{bottom:419.832179pt;}
.y27_c00031{bottom:420.960155pt;}
.y26_c00031{bottom:422.903717pt;}
.y25_c00031{bottom:429.622645pt;}
.y24_c00031{bottom:430.292492pt;}
.y23_c00031{bottom:431.369231pt;}
.y22_c00031{bottom:431.624765pt;}
.y21_c00031{bottom:434.317291pt;}
.y20_c00031{bottom:435.550147pt;}
.y1f_c00031{bottom:437.297784pt;}
.y1e_c00031{bottom:444.054927pt;}
.y1d_c00031{bottom:445.667913pt;}
.y1c_c00031{bottom:447.868853pt;}
.y1b_c00031{bottom:448.388767pt;}
.y1a_c00031{bottom:450.207927pt;}
.y19_c00031{bottom:451.853627pt;}
.y18_c00031{bottom:452.652000pt;}
.y17_c00031{bottom:458.994267pt;}
.y16_c00031{bottom:460.020789pt;}
.y15_c00031{bottom:460.813379pt;}
.y14_c00031{bottom:462.895656pt;}
.y13_c00031{bottom:464.032301pt;}
.y12_c00031{bottom:465.355552pt;}
.y11_c00031{bottom:466.329333pt;}
.y10_c00031{bottom:474.861931pt;}
.yf_c00031{bottom:475.445264pt;}
.ye_c00031{bottom:478.190795pt;}
.yd_c00031{bottom:479.407563pt;}
.yc_c00031{bottom:481.208000pt;}
.yb_c00031{bottom:489.123987pt;}
.ya_c00031{bottom:490.023347pt;}
.y9_c00031{bottom:492.048227pt;}
.y8_c00031{bottom:492.660827pt;}
.y7_c00031{bottom:493.223267pt;}
.y6_c00031{bottom:495.191227pt;}
.y5_c00031{bottom:496.565827pt;}
.y4_c00031{bottom:500.013200pt;}
.y3_c00031{bottom:503.486520pt;}
.y2_c00031{bottom:505.440000pt;}
.y1_c00031{bottom:507.476000pt;}
.hc_c00031{height:19.600000pt;}
.h18_c00031{height:19.607682pt;}
.h14_c00031{height:23.333333pt;}
.h23_c00031{height:45.733333pt;}
.h13_c00031{height:48.546169pt;}
.he_c00031{height:49.444154pt;}
.h12_c00031{height:50.413329pt;}
.h20_c00031{height:51.340750pt;}
.h1d_c00031{height:52.274219pt;}
.h15_c00031{height:52.285714pt;}
.h1f_c00031{height:53.207687pt;}
.h11_c00031{height:53.214070pt;}
.h1c_c00031{height:53.217979pt;}
.hd_c00031{height:54.108697pt;}
.ha_c00031{height:54.112380pt;}
.h22_c00031{height:54.141155pt;}
.h21_c00031{height:56.008091pt;}
.h17_c00031{height:56.955647pt;}
.h1e_c00031{height:57.875028pt;}
.h10_c00031{height:57.883330pt;}
.h19_c00031{height:57.889346pt;}
.h1b_c00031{height:58.800000pt;}
.hf_c00031{height:58.816932pt;}
.h16_c00031{height:58.821429pt;}
.h7_c00031{height:59.710212pt;}
.h2_c00031{height:59.733333pt;}
.h4_c00031{height:59.760207pt;}
.h9_c00031{height:60.643184pt;}
.h1a_c00031{height:60.654562pt;}
.hb_c00031{height:61.576156pt;}
.h8_c00031{height:63.442100pt;}
.h6_c00031{height:63.493349pt;}
.h5_c00031{height:66.292638pt;}
.h3_c00031{height:73.766506pt;}
.h1_c00031{height:547.333333pt;}
.h0_c00031{height:547.440000pt;}
.w0_c00031{width:317.040000pt;}
.w1_c00031{width:317.333333pt;}
.x0_c00031{left:0.000000pt;}
.x81_c00031{left:28.655103pt;}
.x7a_c00031{left:29.701669pt;}
.x51_c00031{left:30.875073pt;}
.x4d_c00031{left:32.614667pt;}
.x30_c00031{left:33.945619pt;}
.x16_c00031{left:34.936000pt;}
.x5_c00031{left:35.854573pt;}
.x74_c00031{left:37.998320pt;}
.x24_c00031{left:39.485768pt;}
.x46_c00031{left:41.769333pt;}
.x49_c00031{left:43.663296pt;}
.x54_c00031{left:47.043683pt;}
.x75_c00031{left:48.953028pt;}
.x37_c00031{left:51.935503pt;}
.x68_c00031{left:53.290075pt;}
.x7c_c00031{left:55.455337pt;}
.x17_c00031{left:57.723856pt;}
.x47_c00031{left:58.786667pt;}
.x26_c00031{left:60.101047pt;}
.x3d_c00031{left:62.726736pt;}
.x71_c00031{left:64.140000pt;}
.x10_c00031{left:69.025333pt;}
.x55_c00031{left:73.158148pt;}
.x82_c00031{left:74.738079pt;}
.x27_c00031{left:76.204927pt;}
.x22_c00031{left:78.426429pt;}
.x6b_c00031{left:80.024327pt;}
.x6_c00031{left:81.674573pt;}
.x31_c00031{left:83.383588pt;}
.x1d_c00031{left:86.267248pt;}
.x4e_c00031{left:87.604000pt;}
.x5e_c00031{left:91.017889pt;}
.x2_c00031{left:94.545333pt;}
.x60_c00031{left:95.905333pt;}
.x3e_c00031{left:97.265496pt;}
.xc_c00031{left:99.778667pt;}
.x32_c00031{left:101.125756pt;}
.x2b_c00031{left:102.575101pt;}
.x76_c00031{left:103.507879pt;}
.x18_c00031{left:104.696836pt;}
.x69_c00031{left:108.992384pt;}
.x38_c00031{left:111.830059pt;}
.x11_c00031{left:114.654667pt;}
.x77_c00031{left:115.638428pt;}
.x2c_c00031{left:118.176045pt;}
.x83_c00031{left:120.575744pt;}
.x1e_c00031{left:122.484256pt;}
.x4a_c00031{left:123.520789pt;}
.x28_c00031{left:125.367715pt;}
.x56_c00031{left:127.232105pt;}
.x6c_c00031{left:129.840000pt;}
.x48_c00031{left:130.800000pt;}
.x78_c00031{left:133.985585pt;}
.x39_c00031{left:136.916005pt;}
.x62_c00031{left:138.282085pt;}
.x4b_c00031{left:139.398688pt;}
.x6d_c00031{left:142.320000pt;}
.xd_c00031{left:143.234667pt;}
.x33_c00031{left:145.036884pt;}
.x7_c00031{left:147.273240pt;}
.x6a_c00031{left:150.528939pt;}
.x25_c00031{left:152.745699pt;}
.x12_c00031{left:153.849333pt;}
.x84_c00031{left:155.319309pt;}
.x19_c00031{left:156.620860pt;}
.x3a_c00031{left:158.045212pt;}
.x3_c00031{left:159.661333pt;}
.x72_c00031{left:162.069333pt;}
.x2d_c00031{left:164.038392pt;}
.x1_c00031{left:165.120000pt;}
.x8_c00031{left:166.021240pt;}
.x70_c00031{left:167.489333pt;}
.x1a_c00031{left:171.460672pt;}
.x61_c00031{left:173.124000pt;}
.x85_c00031{left:175.239623pt;}
.x7e_c00031{left:177.852940pt;}
.x5c_c00031{left:180.510667pt;}
.x6e_c00031{left:181.440000pt;}
.x57_c00031{left:184.533541pt;}
.x9_c00031{left:186.441240pt;}
.x29_c00031{left:189.189163pt;}
.x5d_c00031{left:191.041333pt;}
.x7d_c00031{left:192.292356pt;}
.x63_c00031{left:193.984395pt;}
.x2e_c00031{left:194.971169pt;}
.x7f_c00031{left:195.868011pt;}
.x80_c00031{left:197.400324pt;}
.x1f_c00031{left:201.582501pt;}
.x34_c00031{left:204.690661pt;}
.x20_c00031{left:209.104585pt;}
.x41_c00031{left:211.138068pt;}
.x7b_c00031{left:215.248961pt;}
.x6f_c00031{left:217.200000pt;}
.x35_c00031{left:221.002121pt;}
.x13_c00031{left:225.652000pt;}
.x23_c00031{left:227.913659pt;}
.x64_c00031{left:229.997952pt;}
.x58_c00031{left:233.055055pt;}
.x1b_c00031{left:234.281788pt;}
.x4c_c00031{left:235.318080pt;}
.xe_c00031{left:241.289333pt;}
.x3f_c00031{left:243.381900pt;}
.x52_c00031{left:246.838233pt;}
.x3b_c00031{left:250.427567pt;}
.x14_c00031{left:252.982667pt;}
.xa_c00031{left:253.937240pt;}
.x36_c00031{left:255.200937pt;}
.x5f_c00031{left:256.848925pt;}
.x65_c00031{left:258.329461pt;}
.x21_c00031{left:260.441685pt;}
.xf_c00031{left:262.122667pt;}
.x4f_c00031{left:263.330667pt;}
.x40_c00031{left:264.756504pt;}
.x42_c00031{left:266.834316pt;}
.x2a_c00031{left:268.816123pt;}
.x66_c00031{left:272.495216pt;}
.x53_c00031{left:273.964439pt;}
.x4_c00031{left:275.438667pt;}
.x43_c00031{left:277.386420pt;}
.x73_c00031{left:278.773333pt;}
.x1c_c00031{left:280.321036pt;}
.xb_c00031{left:283.915907pt;}
.x44_c00031{left:285.286512pt;}
.x67_c00031{left:286.180597pt;}
.x79_c00031{left:287.427316pt;}
.x15_c00031{left:288.380000pt;}
.x2f_c00031{left:290.649379pt;}
.x5b_c00031{left:298.320000pt;}
.x5a_c00031{left:299.280000pt;}
.x3c_c00031{left:300.480000pt;}
.x59_c00031{left:302.400000pt;}
.x86_c00031{left:304.800000pt;}
.x50_c00031{left:308.085333pt;}
.x45_c00031{left:311.287152pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00032 {
    display:none;
  }
  .loading-indicator_c00032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00032 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00032 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00032" -> "#page-container .classname_c00032")
 */
.pf_c00032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00032 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00032 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00032 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00032 {overflow:visible;}
  }
}
.c_c00032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00032 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00032:after { /* webkit #35443 */
  content: '';
}
.t_c00032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00032 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00032 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00032 { /* info for Javascript */
  display:none;
}
.l_c00032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00032:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00032 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00032.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00032{transform:matrix(0.031356,0.001224,-0.009752,0.249810,0,0);-ms-transform:matrix(0.031356,0.001224,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.031356,0.001224,-0.009752,0.249810,0,0);}
.m96_c00032{transform:matrix(0.052839,0.002433,-0.011499,0.249735,0,0);-ms-transform:matrix(0.052839,0.002433,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.052839,0.002433,-0.011499,0.249735,0,0);}
.mbf_c00032{transform:matrix(0.106717,0.004914,-0.011499,0.249735,0,0);-ms-transform:matrix(0.106717,0.004914,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.106717,0.004914,-0.011499,0.249735,0,0);}
.m23_c00032{transform:matrix(0.119833,0.002756,-0.005748,0.249934,0,0);-ms-transform:matrix(0.119833,0.002756,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.119833,0.002756,-0.005748,0.249934,0,0);}
.mf_c00032{transform:matrix(0.130376,0.002999,-0.005748,0.249934,0,0);-ms-transform:matrix(0.130376,0.002999,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.130376,0.002999,-0.005748,0.249934,0,0);}
.mbb_c00032{transform:matrix(0.130497,0.006009,-0.011499,0.249735,0,0);-ms-transform:matrix(0.130497,0.006009,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.130497,0.006009,-0.011499,0.249735,0,0);}
.md6_c00032{transform:matrix(0.141345,0.006508,-0.011499,0.249735,0,0);-ms-transform:matrix(0.141345,0.006508,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.141345,0.006508,-0.011499,0.249735,0,0);}
.mc2_c00032{transform:matrix(0.146660,0.006753,-0.011499,0.249735,0,0);-ms-transform:matrix(0.146660,0.006753,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.146660,0.006753,-0.011499,0.249735,0,0);}
.m3_c00032{transform:matrix(0.147586,0.003394,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147586,0.003394,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147586,0.003394,-0.005748,0.249934,0,0);}
.mb2_c00032{transform:matrix(0.147664,0.006799,-0.011499,0.249735,0,0);-ms-transform:matrix(0.147664,0.006799,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.147664,0.006799,-0.011499,0.249735,0,0);}
.ma0_c00032{transform:matrix(0.150271,0.006919,-0.011499,0.249735,0,0);-ms-transform:matrix(0.150271,0.006919,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.150271,0.006919,-0.011499,0.249735,0,0);}
.m8a_c00032{transform:matrix(0.153692,0.007077,-0.011499,0.249735,0,0);-ms-transform:matrix(0.153692,0.007077,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.153692,0.007077,-0.011499,0.249735,0,0);}
.m13_c00032{transform:matrix(0.154849,0.003562,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154849,0.003562,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154849,0.003562,-0.005748,0.249934,0,0);}
.m15_c00032{transform:matrix(0.154894,0.003563,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154894,0.003563,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154894,0.003563,-0.005748,0.249934,0,0);}
.md7_c00032{transform:matrix(0.155470,0.007159,-0.011499,0.249735,0,0);-ms-transform:matrix(0.155470,0.007159,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.155470,0.007159,-0.011499,0.249735,0,0);}
.m81_c00032{transform:matrix(0.155885,0.007178,-0.011499,0.249735,0,0);-ms-transform:matrix(0.155885,0.007178,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.155885,0.007178,-0.011499,0.249735,0,0);}
.m43_c00032{transform:matrix(0.157755,0.006159,-0.009752,0.249810,0,0);-ms-transform:matrix(0.157755,0.006159,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.157755,0.006159,-0.009752,0.249810,0,0);}
.m14_c00032{transform:matrix(0.157983,0.003634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.157983,0.003634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.157983,0.003634,-0.005748,0.249934,0,0);}
.m82_c00032{transform:matrix(0.158217,0.007285,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158217,0.007285,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158217,0.007285,-0.011499,0.249735,0,0);}
.m6c_c00032{transform:matrix(0.159361,0.007338,-0.011499,0.249735,0,0);-ms-transform:matrix(0.159361,0.007338,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.159361,0.007338,-0.011499,0.249735,0,0);}
.m17_c00032{transform:matrix(0.159843,0.003676,-0.005748,0.249934,0,0);-ms-transform:matrix(0.159843,0.003676,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.159843,0.003676,-0.005748,0.249934,0,0);}
.m75_c00032{transform:matrix(0.160680,0.007399,-0.011499,0.249735,0,0);-ms-transform:matrix(0.160680,0.007399,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.160680,0.007399,-0.011499,0.249735,0,0);}
.m32_c00032{transform:matrix(0.162913,0.006686,-0.010252,0.249790,0,0);-ms-transform:matrix(0.162913,0.006686,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.162913,0.006686,-0.010252,0.249790,0,0);}
.m92_c00032{transform:matrix(0.165180,0.007606,-0.011499,0.249735,0,0);-ms-transform:matrix(0.165180,0.007606,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.165180,0.007606,-0.011499,0.249735,0,0);}
.m70_c00032{transform:matrix(0.165485,0.007620,-0.011499,0.249735,0,0);-ms-transform:matrix(0.165485,0.007620,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.165485,0.007620,-0.011499,0.249735,0,0);}
.mb1_c00032{transform:matrix(0.165600,0.007625,-0.011499,0.249735,0,0);-ms-transform:matrix(0.165600,0.007625,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.165600,0.007625,-0.011499,0.249735,0,0);}
.m33_c00032{transform:matrix(0.165754,0.006471,-0.009752,0.249810,0,0);-ms-transform:matrix(0.165754,0.006471,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.165754,0.006471,-0.009752,0.249810,0,0);}
.mb4_c00032{transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);-ms-transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);}
.m19_c00032{transform:matrix(0.166771,0.003836,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166771,0.003836,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166771,0.003836,-0.005748,0.249934,0,0);}
.m85_c00032{transform:matrix(0.168372,0.007753,-0.011499,0.249735,0,0);-ms-transform:matrix(0.168372,0.007753,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.168372,0.007753,-0.011499,0.249735,0,0);}
.m64_c00032{transform:matrix(0.168427,0.005732,-0.008504,0.249855,0,0);-ms-transform:matrix(0.168427,0.005732,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.168427,0.005732,-0.008504,0.249855,0,0);}
.m22_c00032{transform:matrix(0.168945,0.003886,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168945,0.003886,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168945,0.003886,-0.005748,0.249934,0,0);}
.mb0_c00032{transform:matrix(0.169346,0.007798,-0.011499,0.249735,0,0);-ms-transform:matrix(0.169346,0.007798,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.169346,0.007798,-0.011499,0.249735,0,0);}
.m76_c00032{transform:matrix(0.169500,0.007805,-0.011499,0.249735,0,0);-ms-transform:matrix(0.169500,0.007805,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.169500,0.007805,-0.011499,0.249735,0,0);}
.m3c_c00032{transform:matrix(0.169931,0.006634,-0.009752,0.249810,0,0);-ms-transform:matrix(0.169931,0.006634,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.169931,0.006634,-0.009752,0.249810,0,0);}
.mcc_c00032{transform:matrix(0.170664,0.007858,-0.011499,0.249735,0,0);-ms-transform:matrix(0.170664,0.007858,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.170664,0.007858,-0.011499,0.249735,0,0);}
.ma8_c00032{transform:matrix(0.170904,0.007869,-0.011499,0.249735,0,0);-ms-transform:matrix(0.170904,0.007869,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.170904,0.007869,-0.011499,0.249735,0,0);}
.m37_c00032{transform:matrix(0.171994,0.006714,-0.009752,0.249810,0,0);-ms-transform:matrix(0.171994,0.006714,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.171994,0.006714,-0.009752,0.249810,0,0);}
.m5_c00032{transform:matrix(0.172000,0.003956,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172000,0.003956,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172000,0.003956,-0.005748,0.249934,0,0);}
.m5e_c00032{transform:matrix(0.172935,0.005886,-0.008504,0.249855,0,0);-ms-transform:matrix(0.172935,0.005886,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.172935,0.005886,-0.008504,0.249855,0,0);}
.m2_c00032{transform:matrix(0.173154,0.003983,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173154,0.003983,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173154,0.003983,-0.005748,0.249934,0,0);}
.m3f_c00032{transform:matrix(0.173428,0.006770,-0.009752,0.249810,0,0);-ms-transform:matrix(0.173428,0.006770,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.173428,0.006770,-0.009752,0.249810,0,0);}
.mab_c00032{transform:matrix(0.173516,0.007990,-0.011499,0.249735,0,0);-ms-transform:matrix(0.173516,0.007990,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.173516,0.007990,-0.011499,0.249735,0,0);}
.m83_c00032{transform:matrix(0.173576,0.007992,-0.011499,0.249735,0,0);-ms-transform:matrix(0.173576,0.007992,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.173576,0.007992,-0.011499,0.249735,0,0);}
.m4a_c00032{transform:matrix(0.173739,0.005913,-0.008504,0.249855,0,0);-ms-transform:matrix(0.173739,0.005913,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.173739,0.005913,-0.008504,0.249855,0,0);}
.m8_c00032{transform:matrix(0.173789,0.003997,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173789,0.003997,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173789,0.003997,-0.005748,0.249934,0,0);}
.m4_c00032{transform:matrix(0.173999,0.004002,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173999,0.004002,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173999,0.004002,-0.005748,0.249934,0,0);}
.maf_c00032{transform:matrix(0.174770,0.008047,-0.011499,0.249735,0,0);-ms-transform:matrix(0.174770,0.008047,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.174770,0.008047,-0.011499,0.249735,0,0);}
.m28_c00032{transform:matrix(0.175039,0.004026,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175039,0.004026,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175039,0.004026,-0.005748,0.249934,0,0);}
.m5b_c00032{transform:matrix(0.175458,0.005972,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175458,0.005972,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175458,0.005972,-0.008504,0.249855,0,0);}
.m6d_c00032{transform:matrix(0.175609,0.008086,-0.011499,0.249735,0,0);-ms-transform:matrix(0.175609,0.008086,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.175609,0.008086,-0.011499,0.249735,0,0);}
.m36_c00032{transform:matrix(0.175706,0.006859,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175706,0.006859,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175706,0.006859,-0.009752,0.249810,0,0);}
.ma1_c00032{transform:matrix(0.176468,0.008126,-0.011499,0.249735,0,0);-ms-transform:matrix(0.176468,0.008126,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.176468,0.008126,-0.011499,0.249735,0,0);}
.m6e_c00032{transform:matrix(0.176828,0.008142,-0.011499,0.249735,0,0);-ms-transform:matrix(0.176828,0.008142,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.176828,0.008142,-0.011499,0.249735,0,0);}
.m53_c00032{transform:matrix(0.177192,0.006031,-0.008504,0.249855,0,0);-ms-transform:matrix(0.177192,0.006031,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.177192,0.006031,-0.008504,0.249855,0,0);}
.m9_c00032{transform:matrix(0.177783,0.004089,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177783,0.004089,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177783,0.004089,-0.005748,0.249934,0,0);}
.mce_c00032{transform:matrix(0.178316,0.008211,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178316,0.008211,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178316,0.008211,-0.011499,0.249735,0,0);}
.ma4_c00032{transform:matrix(0.178346,0.008212,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178346,0.008212,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178346,0.008212,-0.011499,0.249735,0,0);}
.me0_c00032{transform:matrix(0.178378,0.006607,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178378,0.006607,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178378,0.006607,-0.009253,0.249829,0,0);}
.m1f_c00032{transform:matrix(0.179418,0.004127,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179418,0.004127,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179418,0.004127,-0.005748,0.249934,0,0);}
.m16_c00032{transform:matrix(0.179583,0.004130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179583,0.004130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179583,0.004130,-0.005748,0.249934,0,0);}
.md3_c00032{transform:matrix(0.180284,0.008301,-0.011499,0.249735,0,0);-ms-transform:matrix(0.180284,0.008301,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.180284,0.008301,-0.011499,0.249735,0,0);}
.m6b_c00032{transform:matrix(0.180389,0.008306,-0.011499,0.249735,0,0);-ms-transform:matrix(0.180389,0.008306,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.180389,0.008306,-0.011499,0.249735,0,0);}
.m46_c00032{transform:matrix(0.180542,0.008675,-0.011998,0.249712,0,0);-ms-transform:matrix(0.180542,0.008675,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.180542,0.008675,-0.011998,0.249712,0,0);}
.md5_c00032{transform:matrix(0.181438,0.008354,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181438,0.008354,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181438,0.008354,-0.011499,0.249735,0,0);}
.mcd_c00032{transform:matrix(0.181752,0.008369,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181752,0.008369,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181752,0.008369,-0.011499,0.249735,0,0);}
.ma_c00032{transform:matrix(0.181792,0.004181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181792,0.004181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181792,0.004181,-0.005748,0.249934,0,0);}
.mc7_c00032{transform:matrix(0.182037,0.008382,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182037,0.008382,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182037,0.008382,-0.011499,0.249735,0,0);}
.m35_c00032{transform:matrix(0.182806,0.007137,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182806,0.007137,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182806,0.007137,-0.009752,0.249810,0,0);}
.m34_c00032{transform:matrix(0.183066,0.007147,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183066,0.007147,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183066,0.007147,-0.009752,0.249810,0,0);}
.m1d_c00032{transform:matrix(0.183192,0.004213,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183192,0.004213,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183192,0.004213,-0.005748,0.249934,0,0);}
.m89_c00032{transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);}
.m1c_c00032{transform:matrix(0.184196,0.004237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184196,0.004237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184196,0.004237,-0.005748,0.249934,0,0);}
.m11_c00032{transform:matrix(0.184771,0.004250,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184771,0.004250,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184771,0.004250,-0.005748,0.249934,0,0);}
.m44_c00032{transform:matrix(0.185689,0.007249,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185689,0.007249,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185689,0.007249,-0.009752,0.249810,0,0);}
.mc5_c00032{transform:matrix(0.185768,0.008554,-0.011499,0.249735,0,0);-ms-transform:matrix(0.185768,0.008554,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.185768,0.008554,-0.011499,0.249735,0,0);}
.m12_c00032{transform:matrix(0.185936,0.004277,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185936,0.004277,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185936,0.004277,-0.005748,0.249934,0,0);}
.m4e_c00032{transform:matrix(0.186007,0.006331,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186007,0.006331,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186007,0.006331,-0.008504,0.249855,0,0);}
.m29_c00032{transform:matrix(0.186061,0.004279,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186061,0.004279,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186061,0.004279,-0.005748,0.249934,0,0);}
.me_c00032{transform:matrix(0.186546,0.004291,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186546,0.004291,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186546,0.004291,-0.005748,0.249934,0,0);}
.m74_c00032{transform:matrix(0.186687,0.008596,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186687,0.008596,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186687,0.008596,-0.011499,0.249735,0,0);}
.m73_c00032{transform:matrix(0.187242,0.008622,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187242,0.008622,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187242,0.008622,-0.011499,0.249735,0,0);}
.m39_c00032{transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);}
.m59_c00032{transform:matrix(0.187551,0.006383,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187551,0.006383,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187551,0.006383,-0.008504,0.249855,0,0);}
.m61_c00032{transform:matrix(0.188591,0.006419,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188591,0.006419,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188591,0.006419,-0.008504,0.249855,0,0);}
.m51_c00032{transform:matrix(0.189860,0.006462,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189860,0.006462,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189860,0.006462,-0.008504,0.249855,0,0);}
.m86_c00032{transform:matrix(0.190178,0.008757,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190178,0.008757,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190178,0.008757,-0.011499,0.249735,0,0);}
.m91_c00032{transform:matrix(0.190243,0.008760,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190243,0.008760,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190243,0.008760,-0.011499,0.249735,0,0);}
.m87_c00032{transform:matrix(0.190603,0.008777,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190603,0.008777,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190603,0.008777,-0.011499,0.249735,0,0);}
.m84_c00032{transform:matrix(0.191167,0.008803,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191167,0.008803,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191167,0.008803,-0.011499,0.249735,0,0);}
.m6f_c00032{transform:matrix(0.191247,0.008806,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191247,0.008806,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191247,0.008806,-0.011499,0.249735,0,0);}
.mbe_c00032{transform:matrix(0.191462,0.008816,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191462,0.008816,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191462,0.008816,-0.011499,0.249735,0,0);}
.m77_c00032{transform:matrix(0.191722,0.008828,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191722,0.008828,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191722,0.008828,-0.011499,0.249735,0,0);}
.mc9_c00032{transform:matrix(0.192321,0.008856,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192321,0.008856,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192321,0.008856,-0.011499,0.249735,0,0);}
.mdd_c00032{transform:matrix(0.192533,0.007131,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192533,0.007131,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192533,0.007131,-0.009253,0.249829,0,0);}
.ma9_c00032{transform:matrix(0.192816,0.008878,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192816,0.008878,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192816,0.008878,-0.011499,0.249735,0,0);}
.ma2_c00032{transform:matrix(0.193130,0.008893,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193130,0.008893,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193130,0.008893,-0.011499,0.249735,0,0);}
.m2e_c00032{transform:matrix(0.193474,0.004450,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193474,0.004450,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193474,0.004450,-0.005748,0.249934,0,0);}
.md4_c00032{transform:matrix(0.193525,0.008911,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193525,0.008911,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193525,0.008911,-0.011499,0.249735,0,0);}
.mdf_c00032{transform:matrix(0.193572,0.007169,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193572,0.007169,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193572,0.007169,-0.009253,0.249829,0,0);}
.m1b_c00032{transform:matrix(0.193614,0.004453,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193614,0.004453,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193614,0.004453,-0.005748,0.249934,0,0);}
.m2c_c00032{transform:matrix(0.193649,0.004454,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193649,0.004454,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193649,0.004454,-0.005748,0.249934,0,0);}
.m78_c00032{transform:matrix(0.193835,0.008925,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193835,0.008925,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193835,0.008925,-0.011499,0.249735,0,0);}
.m3d_c00032{transform:matrix(0.193952,0.007572,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193952,0.007572,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193952,0.007572,-0.009752,0.249810,0,0);}
.m54_c00032{transform:matrix(0.194657,0.006625,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194657,0.006625,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194657,0.006625,-0.008504,0.249855,0,0);}
.m4c_c00032{transform:matrix(0.194722,0.006627,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194722,0.006627,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194722,0.006627,-0.008504,0.249855,0,0);}
.md1_c00032{transform:matrix(0.194953,0.008977,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194953,0.008977,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194953,0.008977,-0.011499,0.249735,0,0);}
.mca_c00032{transform:matrix(0.194968,0.008978,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194968,0.008978,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194968,0.008978,-0.011499,0.249735,0,0);}
.m88_c00032{transform:matrix(0.195043,0.008981,-0.011499,0.249735,0,0);-ms-transform:matrix(0.195043,0.008981,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.195043,0.008981,-0.011499,0.249735,0,0);}
.m7a_c00032{transform:matrix(0.195258,0.008991,-0.011499,0.249735,0,0);-ms-transform:matrix(0.195258,0.008991,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.195258,0.008991,-0.011499,0.249735,0,0);}
.m41_c00032{transform:matrix(0.195321,0.007625,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195321,0.007625,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195321,0.007625,-0.009752,0.249810,0,0);}
.mcb_c00032{transform:matrix(0.195703,0.009011,-0.011499,0.249735,0,0);-ms-transform:matrix(0.195703,0.009011,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.195703,0.009011,-0.011499,0.249735,0,0);}
.m80_c00032{transform:matrix(0.196292,0.009038,-0.011499,0.249735,0,0);-ms-transform:matrix(0.196292,0.009038,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.196292,0.009038,-0.011499,0.249735,0,0);}
.m1e_c00032{transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);}
.m71_c00032{transform:matrix(0.196337,0.009041,-0.011499,0.249735,0,0);-ms-transform:matrix(0.196337,0.009041,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.196337,0.009041,-0.011499,0.249735,0,0);}
.m25_c00032{transform:matrix(0.196833,0.004527,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196833,0.004527,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196833,0.004527,-0.005748,0.249934,0,0);}
.mc3_c00032{transform:matrix(0.196926,0.009068,-0.011499,0.249735,0,0);-ms-transform:matrix(0.196926,0.009068,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.196926,0.009068,-0.011499,0.249735,0,0);}
.m4d_c00032{transform:matrix(0.197046,0.006706,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197046,0.006706,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197046,0.006706,-0.008504,0.249855,0,0);}
.mc8_c00032{transform:matrix(0.197611,0.009099,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197611,0.009099,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197611,0.009099,-0.011499,0.249735,0,0);}
.ma6_c00032{transform:matrix(0.197636,0.009100,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197636,0.009100,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197636,0.009100,-0.011499,0.249735,0,0);}
.m30_c00032{transform:matrix(0.197734,0.008115,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197734,0.008115,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197734,0.008115,-0.010252,0.249790,0,0);}
.m79_c00032{transform:matrix(0.197860,0.009111,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197860,0.009111,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197860,0.009111,-0.011499,0.249735,0,0);}
.m42_c00032{transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);-ms-transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);}
.m90_c00032{transform:matrix(0.198345,0.009133,-0.011499,0.249735,0,0);-ms-transform:matrix(0.198345,0.009133,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.198345,0.009133,-0.011499,0.249735,0,0);}
.m5a_c00032{transform:matrix(0.198380,0.006752,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198380,0.006752,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198380,0.006752,-0.008504,0.249855,0,0);}
.mad_c00032{transform:matrix(0.198550,0.009142,-0.011499,0.249735,0,0);-ms-transform:matrix(0.198550,0.009142,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.198550,0.009142,-0.011499,0.249735,0,0);}
.mb3_c00032{transform:matrix(0.198714,0.009150,-0.011499,0.249735,0,0);-ms-transform:matrix(0.198714,0.009150,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.198714,0.009150,-0.011499,0.249735,0,0);}
.mb6_c00032{transform:matrix(0.199279,0.009176,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199279,0.009176,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199279,0.009176,-0.011499,0.249735,0,0);}
.m62_c00032{transform:matrix(0.199779,0.006799,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199779,0.006799,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199779,0.006799,-0.008504,0.249855,0,0);}
.maa_c00032{transform:matrix(0.200083,0.009213,-0.011499,0.249735,0,0);-ms-transform:matrix(0.200083,0.009213,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.200083,0.009213,-0.011499,0.249735,0,0);}
.m48_c00032{transform:matrix(0.200673,0.009642,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200673,0.009642,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200673,0.009642,-0.011998,0.249712,0,0);}
.mc0_c00032{transform:matrix(0.200837,0.009248,-0.011499,0.249735,0,0);-ms-transform:matrix(0.200837,0.009248,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.200837,0.009248,-0.011499,0.249735,0,0);}
.md2_c00032{transform:matrix(0.201257,0.009267,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201257,0.009267,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201257,0.009267,-0.011499,0.249735,0,0);}
.m1a_c00032{transform:matrix(0.201347,0.004631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201347,0.004631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201347,0.004631,-0.005748,0.249934,0,0);}
.m99_c00032{transform:matrix(0.201751,0.009290,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201751,0.009290,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201751,0.009290,-0.011499,0.249735,0,0);}
.m98_c00032{transform:matrix(0.201786,0.009291,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201786,0.009291,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201786,0.009291,-0.011499,0.249735,0,0);}
.m7f_c00032{transform:matrix(0.202780,0.009337,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202780,0.009337,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202780,0.009337,-0.011499,0.249735,0,0);}
.ma5_c00032{transform:matrix(0.203479,0.009369,-0.011499,0.249735,0,0);-ms-transform:matrix(0.203479,0.009369,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.203479,0.009369,-0.011499,0.249735,0,0);}
.m10_c00032{transform:matrix(0.203731,0.004686,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203731,0.004686,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203731,0.004686,-0.005748,0.249934,0,0);}
.m9e_c00032{transform:matrix(0.204244,0.009405,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204244,0.009405,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204244,0.009405,-0.011499,0.249735,0,0);}
.m18_c00032{transform:matrix(0.204606,0.004706,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204606,0.004706,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204606,0.004706,-0.005748,0.249934,0,0);}
.m9c_c00032{transform:matrix(0.204853,0.009433,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204853,0.009433,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204853,0.009433,-0.011499,0.249735,0,0);}
.mc6_c00032{transform:matrix(0.205807,0.009477,-0.011499,0.249735,0,0);-ms-transform:matrix(0.205807,0.009477,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.205807,0.009477,-0.011499,0.249735,0,0);}
.m9f_c00032{transform:matrix(0.206446,0.009506,-0.011499,0.249735,0,0);-ms-transform:matrix(0.206446,0.009506,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.206446,0.009506,-0.011499,0.249735,0,0);}
.m45_c00032{transform:matrix(0.206477,0.009921,-0.011998,0.249712,0,0);-ms-transform:matrix(0.206477,0.009921,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.206477,0.009921,-0.011998,0.249712,0,0);}
.m7c_c00032{transform:matrix(0.206606,0.009513,-0.011499,0.249735,0,0);-ms-transform:matrix(0.206606,0.009513,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.206606,0.009513,-0.011499,0.249735,0,0);}
.mc1_c00032{transform:matrix(0.207455,0.009552,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207455,0.009552,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207455,0.009552,-0.011499,0.249735,0,0);}
.m55_c00032{transform:matrix(0.207595,0.007065,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207595,0.007065,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207595,0.007065,-0.008504,0.249855,0,0);}
.md9_c00032{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m7b_c00032{transform:matrix(0.209019,0.009624,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209019,0.009624,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209019,0.009624,-0.011499,0.249735,0,0);}
.m47_c00032{transform:matrix(0.209458,0.010064,-0.011998,0.249712,0,0);-ms-transform:matrix(0.209458,0.010064,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.209458,0.010064,-0.011998,0.249712,0,0);}
.m24_c00032{transform:matrix(0.209490,0.004818,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209490,0.004818,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209490,0.004818,-0.005748,0.249934,0,0);}
.m69_c00032{transform:matrix(0.209634,0.007135,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209634,0.007135,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209634,0.007135,-0.008504,0.249855,0,0);}
.m3b_c00032{transform:matrix(0.209745,0.008188,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209745,0.008188,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209745,0.008188,-0.009752,0.249810,0,0);}
.mcf_c00032{transform:matrix(0.210042,0.009672,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210042,0.009672,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210042,0.009672,-0.011499,0.249735,0,0);}
.m38_c00032{transform:matrix(0.210195,0.008206,-0.009752,0.249810,0,0);-ms-transform:matrix(0.210195,0.008206,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.210195,0.008206,-0.009752,0.249810,0,0);}
.mb9_c00032{transform:matrix(0.210422,0.009689,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210422,0.009689,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210422,0.009689,-0.011499,0.249735,0,0);}
.m57_c00032{transform:matrix(0.210733,0.007172,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210733,0.007172,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210733,0.007172,-0.008504,0.249855,0,0);}
.m8c_c00032{transform:matrix(0.211201,0.009725,-0.011499,0.249735,0,0);-ms-transform:matrix(0.211201,0.009725,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.211201,0.009725,-0.011499,0.249735,0,0);}
.m72_c00032{transform:matrix(0.211506,0.009739,-0.011499,0.249735,0,0);-ms-transform:matrix(0.211506,0.009739,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.211506,0.009739,-0.011499,0.249735,0,0);}
.m49_c00032{transform:matrix(0.212257,0.007224,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212257,0.007224,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212257,0.007224,-0.008504,0.249855,0,0);}
.m8e_c00032{transform:matrix(0.212410,0.009781,-0.011499,0.249735,0,0);-ms-transform:matrix(0.212410,0.009781,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.212410,0.009781,-0.011499,0.249735,0,0);}
.m0_c00032{transform:matrix(0.212724,0.004893,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212724,0.004893,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212724,0.004893,-0.005748,0.249934,0,0);}
.m5c_c00032{transform:matrix(0.212857,0.007244,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212857,0.007244,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212857,0.007244,-0.008504,0.249855,0,0);}
.m31_c00032{transform:matrix(0.212991,0.008741,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212991,0.008741,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212991,0.008741,-0.010252,0.249790,0,0);}
.mb8_c00032{transform:matrix(0.213149,0.009815,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213149,0.009815,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213149,0.009815,-0.011499,0.249735,0,0);}
.md8_c00032{transform:matrix(0.213399,0.009826,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213399,0.009826,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213399,0.009826,-0.011499,0.249735,0,0);}
.m7d_c00032{transform:matrix(0.213444,0.009828,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213444,0.009828,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213444,0.009828,-0.011499,0.249735,0,0);}
.m50_c00032{transform:matrix(0.214121,0.007287,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214121,0.007287,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214121,0.007287,-0.008504,0.249855,0,0);}
.m26_c00032{transform:matrix(0.214588,0.004936,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214588,0.004936,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214588,0.004936,-0.005748,0.249934,0,0);}
.m9b_c00032{transform:matrix(0.215272,0.009912,-0.011499,0.249735,0,0);-ms-transform:matrix(0.215272,0.009912,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.215272,0.009912,-0.011499,0.249735,0,0);}
.m5f_c00032{transform:matrix(0.216465,0.007367,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216465,0.007367,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216465,0.007367,-0.008504,0.249855,0,0);}
.mac_c00032{transform:matrix(0.216625,0.009975,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216625,0.009975,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216625,0.009975,-0.011499,0.249735,0,0);}
.m9a_c00032{transform:matrix(0.217165,0.010000,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217165,0.010000,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217165,0.010000,-0.011499,0.249735,0,0);}
.mba_c00032{transform:matrix(0.218488,0.010061,-0.011499,0.249735,0,0);-ms-transform:matrix(0.218488,0.010061,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.218488,0.010061,-0.011499,0.249735,0,0);}
.m93_c00032{transform:matrix(0.218583,0.010065,-0.011499,0.249735,0,0);-ms-transform:matrix(0.218583,0.010065,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.218583,0.010065,-0.011499,0.249735,0,0);}
.m7_c00032{transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);}
.m4b_c00032{transform:matrix(0.220412,0.007502,-0.008504,0.249855,0,0);-ms-transform:matrix(0.220412,0.007502,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.220412,0.007502,-0.008504,0.249855,0,0);}
.mc4_c00032{transform:matrix(0.221320,0.010191,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221320,0.010191,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221320,0.010191,-0.011499,0.249735,0,0);}
.m2b_c00032{transform:matrix(0.221771,0.005101,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221771,0.005101,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221771,0.005101,-0.005748,0.249934,0,0);}
.m8d_c00032{transform:matrix(0.222080,0.010226,-0.011499,0.249735,0,0);-ms-transform:matrix(0.222080,0.010226,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.222080,0.010226,-0.011499,0.249735,0,0);}
.m65_c00032{transform:matrix(0.222136,0.007560,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222136,0.007560,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222136,0.007560,-0.008504,0.249855,0,0);}
.ma3_c00032{transform:matrix(0.222484,0.010245,-0.011499,0.249735,0,0);-ms-transform:matrix(0.222484,0.010245,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.222484,0.010245,-0.011499,0.249735,0,0);}
.m6a_c00032{transform:matrix(0.223006,0.007590,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223006,0.007590,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223006,0.007590,-0.008504,0.249855,0,0);}
.mbd_c00032{transform:matrix(0.223603,0.010296,-0.011499,0.249735,0,0);-ms-transform:matrix(0.223603,0.010296,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.223603,0.010296,-0.011499,0.249735,0,0);}
.m4f_c00032{transform:matrix(0.223910,0.007621,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223910,0.007621,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223910,0.007621,-0.008504,0.249855,0,0);}
.ma7_c00032{transform:matrix(0.224262,0.010326,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224262,0.010326,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224262,0.010326,-0.011499,0.249735,0,0);}
.mc_c00032{transform:matrix(0.225855,0.005195,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225855,0.005195,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225855,0.005195,-0.005748,0.249934,0,0);}
.mb5_c00032{transform:matrix(0.225916,0.010403,-0.011499,0.249735,0,0);-ms-transform:matrix(0.225916,0.010403,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.225916,0.010403,-0.011499,0.249735,0,0);}
.m8b_c00032{transform:matrix(0.226580,0.010433,-0.011499,0.249735,0,0);-ms-transform:matrix(0.226580,0.010433,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.226580,0.010433,-0.011499,0.249735,0,0);}
.m95_c00032{transform:matrix(0.226775,0.010442,-0.011499,0.249735,0,0);-ms-transform:matrix(0.226775,0.010442,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.226775,0.010442,-0.011499,0.249735,0,0);}
.mdc_c00032{transform:matrix(0.228378,0.008458,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228378,0.008458,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228378,0.008458,-0.009253,0.249829,0,0);}
.m2a_c00032{transform:matrix(0.228994,0.005267,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228994,0.005267,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228994,0.005267,-0.005748,0.249934,0,0);}
.m66_c00032{transform:matrix(0.229272,0.007803,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229272,0.007803,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229272,0.007803,-0.008504,0.249855,0,0);}
.md_c00032{transform:matrix(0.229339,0.005275,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229339,0.005275,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229339,0.005275,-0.005748,0.249934,0,0);}
.m8f_c00032{transform:matrix(0.229831,0.010583,-0.011499,0.249735,0,0);-ms-transform:matrix(0.229831,0.010583,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.229831,0.010583,-0.011499,0.249735,0,0);}
.m2f_c00032{transform:matrix(0.230114,0.005293,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230114,0.005293,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230114,0.005293,-0.005748,0.249934,0,0);}
.m97_c00032{transform:matrix(0.230696,0.010623,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230696,0.010623,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230696,0.010623,-0.011499,0.249735,0,0);}
.m21_c00032{transform:matrix(0.231699,0.005329,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231699,0.005329,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231699,0.005329,-0.005748,0.249934,0,0);}
.mb7_c00032{transform:matrix(0.231764,0.010672,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231764,0.010672,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231764,0.010672,-0.011499,0.249735,0,0);}
.me1_c00032{transform:matrix(0.232186,0.008599,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232186,0.008599,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232186,0.008599,-0.009253,0.249829,0,0);}
.m2d_c00032{transform:matrix(0.233373,0.005368,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233373,0.005368,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233373,0.005368,-0.005748,0.249934,0,0);}
.m52_c00032{transform:matrix(0.233495,0.007947,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233495,0.007947,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233495,0.007947,-0.008504,0.249855,0,0);}
.mde_c00032{transform:matrix(0.234619,0.008690,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234619,0.008690,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234619,0.008690,-0.009253,0.249829,0,0);}
.m7e_c00032{transform:matrix(0.235431,0.010841,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235431,0.010841,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235431,0.010841,-0.011499,0.249735,0,0);}
.m27_c00032{transform:matrix(0.240646,0.005535,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240646,0.005535,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240646,0.005535,-0.005748,0.249934,0,0);}
.m9d_c00032{transform:matrix(0.241369,0.011114,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241369,0.011114,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241369,0.011114,-0.011499,0.249735,0,0);}
.m56_c00032{transform:matrix(0.245683,0.008362,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245683,0.008362,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245683,0.008362,-0.008504,0.249855,0,0);}
.mb_c00032{transform:matrix(0.246005,0.005658,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246005,0.005658,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246005,0.005658,-0.005748,0.249934,0,0);}
.m20_c00032{transform:matrix(0.249719,0.005744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249719,0.005744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249719,0.005744,-0.005748,0.249934,0,0);}
.m58_c00032{transform:matrix(0.250830,0.008537,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250830,0.008537,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250830,0.008537,-0.008504,0.249855,0,0);}
.m40_c00032{transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);-ms-transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);}
.m1_c00032{transform:matrix(0.253273,0.005825,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253273,0.005825,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253273,0.005825,-0.005748,0.249934,0,0);}
.mdb_c00032{transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);}
.m5d_c00032{transform:matrix(0.258575,0.008800,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258575,0.008800,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258575,0.008800,-0.008504,0.249855,0,0);}
.m63_c00032{transform:matrix(0.259285,0.008825,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259285,0.008825,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259285,0.008825,-0.008504,0.249855,0,0);}
.m60_c00032{transform:matrix(0.259340,0.008826,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259340,0.008826,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259340,0.008826,-0.008504,0.249855,0,0);}
.m67_c00032{transform:matrix(0.260834,0.008877,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260834,0.008877,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260834,0.008877,-0.008504,0.249855,0,0);}
.mbc_c00032{transform:matrix(0.265968,0.012247,-0.011499,0.249735,0,0);-ms-transform:matrix(0.265968,0.012247,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.265968,0.012247,-0.011499,0.249735,0,0);}
.mae_c00032{transform:matrix(0.268770,0.012376,-0.011499,0.249735,0,0);-ms-transform:matrix(0.268770,0.012376,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.268770,0.012376,-0.011499,0.249735,0,0);}
.m68_c00032{transform:matrix(0.278414,0.009476,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278414,0.009476,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278414,0.009476,-0.008504,0.249855,0,0);}
.m94_c00032{transform:matrix(0.323203,0.014882,-0.011499,0.249735,0,0);-ms-transform:matrix(0.323203,0.014882,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.323203,0.014882,-0.011499,0.249735,0,0);}
.mda_c00032{transform:matrix(0.341005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341005,0.000000,0.000000,0.250000,0,0);}
.md0_c00032{transform:matrix(0.344989,0.015885,-0.011499,0.249735,0,0);-ms-transform:matrix(0.344989,0.015885,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.344989,0.015885,-0.011499,0.249735,0,0);}
.m6_c00032{transform:matrix(0.372591,0.008570,-0.005748,0.249934,0,0);-ms-transform:matrix(0.372591,0.008570,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.372591,0.008570,-0.005748,0.249934,0,0);}
.m3e_c00032{transform:matrix(0.376004,0.014679,-0.009752,0.249810,0,0);-ms-transform:matrix(0.376004,0.014679,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.376004,0.014679,-0.009752,0.249810,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:0.000000px;}
.fc0_c00032{color:transparent;}
.fs1c_c00032{font-size:22.050000px;}
.fs0_c00032{font-size:42.011108px;}
.fs18_c00032{font-size:55.653255px;}
.fsd_c00032{font-size:56.676096px;}
.fsa_c00032{font-size:56.708646px;}
.fsf_c00032{font-size:57.725653px;}
.fs14_c00032{font-size:57.753378px;}
.fs1d_c00032{font-size:58.781475px;}
.fs7_c00032{font-size:58.790650px;}
.fs12_c00032{font-size:58.803440px;}
.fsb_c00032{font-size:59.824768px;}
.fs17_c00032{font-size:59.853501px;}
.fs6_c00032{font-size:59.865828px;}
.fsc_c00032{font-size:60.874325px;}
.fs1b_c00032{font-size:60.900000px;}
.fs2_c00032{font-size:60.916106px;}
.fse_c00032{font-size:61.923883px;}
.fs9_c00032{font-size:62.984941px;}
.fs19_c00032{font-size:63.003685px;}
.fs16_c00032{font-size:64.053747px;}
.fs15_c00032{font-size:65.103808px;}
.fs11_c00032{font-size:66.153870px;}
.fs4_c00032{font-size:66.167494px;}
.fs8_c00032{font-size:67.183937px;}
.fs10_c00032{font-size:67.203931px;}
.fs5_c00032{font-size:67.217772px;}
.fs13_c00032{font-size:68.253993px;}
.fs1a_c00032{font-size:70.354115px;}
.fs1_c00032{font-size:70.368605px;}
.fs3_c00032{font-size:73.519438px;}
.y0_c00032{bottom:0.000000px;}
.ye1_c00032{bottom:35.021382px;}
.ye0_c00032{bottom:35.792333px;}
.ydf_c00032{bottom:38.041859px;}
.yde_c00032{bottom:39.754533px;}
.ydd_c00032{bottom:40.296213px;}
.ydc_c00032{bottom:40.786500px;}
.yda_c00032{bottom:43.209000px;}
.ydb_c00032{bottom:51.976500px;}
.yd9_c00032{bottom:53.197137px;}
.yd8_c00032{bottom:53.952635px;}
.yd7_c00032{bottom:55.566063px;}
.yd6_c00032{bottom:58.092287px;}
.yd5_c00032{bottom:58.665627px;}
.yd4_c00032{bottom:60.490182px;}
.yd3_c00032{bottom:67.968843px;}
.yd2_c00032{bottom:70.800225px;}
.yd1_c00032{bottom:71.250675px;}
.yd0_c00032{bottom:73.583348px;}
.ycf_c00032{bottom:75.084483px;}
.yce_c00032{bottom:77.279514px;}
.ycd_c00032{bottom:77.764956px;}
.ycc_c00032{bottom:85.402332px;}
.ycb_c00032{bottom:86.994296px;}
.yca_c00032{bottom:88.473644px;}
.yc9_c00032{bottom:90.486636px;}
.yc8_c00032{bottom:91.145217px;}
.yc7_c00032{bottom:93.005979px;}
.yc6_c00032{bottom:94.520576px;}
.yc5_c00032{bottom:95.590782px;}
.yc4_c00032{bottom:102.417894px;}
.yc3_c00032{bottom:103.357398px;}
.yc2_c00032{bottom:106.878813px;}
.yc1_c00032{bottom:109.043343px;}
.yc0_c00032{bottom:109.596930px;}
.ybf_c00032{bottom:111.409629px;}
.ybe_c00032{bottom:112.337472px;}
.ybd_c00032{bottom:118.421070px;}
.ybc_c00032{bottom:118.885814px;}
.ybb_c00032{bottom:123.532046px;}
.yba_c00032{bottom:124.758485px;}
.yb9_c00032{bottom:127.500951px;}
.yb8_c00032{bottom:130.165032px;}
.yb7_c00032{bottom:133.582256px;}
.yb6_c00032{bottom:135.522474px;}
.yb5_c00032{bottom:137.338116px;}
.yb4_c00032{bottom:141.814455px;}
.yb3_c00032{bottom:143.059499px;}
.yb2_c00032{bottom:145.116674px;}
.yb1_c00032{bottom:146.314166px;}
.yb0_c00032{bottom:147.443426px;}
.yaf_c00032{bottom:149.401788px;}
.yae_c00032{bottom:153.722966px;}
.yad_c00032{bottom:156.630102px;}
.yac_c00032{bottom:157.597485px;}
.yab_c00032{bottom:160.598787px;}
.yaa_c00032{bottom:163.090040px;}
.ya9_c00032{bottom:166.974254px;}
.ya8_c00032{bottom:170.199648px;}
.ya7_c00032{bottom:172.121093px;}
.ya6_c00032{bottom:176.039892px;}
.ya5_c00032{bottom:177.249213px;}
.ya4_c00032{bottom:180.920094px;}
.ya3_c00032{bottom:186.788745px;}
.ya2_c00032{bottom:188.412512px;}
.ya1_c00032{bottom:189.024892px;}
.ya0_c00032{bottom:192.164244px;}
.y9f_c00032{bottom:195.768722px;}
.y9e_c00032{bottom:196.571591px;}
.y9d_c00032{bottom:202.624904px;}
.y9c_c00032{bottom:206.138846px;}
.y9b_c00032{bottom:208.287577px;}
.y9a_c00032{bottom:210.714526px;}
.y99_c00032{bottom:211.965729px;}
.y98_c00032{bottom:214.128399px;}
.y97_c00032{bottom:217.576504px;}
.y96_c00032{bottom:221.957823px;}
.y95_c00032{bottom:222.733183px;}
.y94_c00032{bottom:225.376644px;}
.y93_c00032{bottom:226.905511px;}
.y92_c00032{bottom:227.966560px;}
.y91_c00032{bottom:228.842631px;}
.y90_c00032{bottom:231.409275px;}
.y8f_c00032{bottom:235.701484px;}
.y8e_c00032{bottom:240.067114px;}
.y8d_c00032{bottom:241.576903px;}
.y8c_c00032{bottom:243.329573px;}
.y8b_c00032{bottom:244.930787px;}
.y8a_c00032{bottom:247.343993px;}
.y89_c00032{bottom:248.152741px;}
.y88_c00032{bottom:252.057481px;}
.y87_c00032{bottom:254.402697px;}
.y86_c00032{bottom:255.598859px;}
.y85_c00032{bottom:256.846317px;}
.y84_c00032{bottom:259.242780px;}
.y83_c00032{bottom:260.766033px;}
.y82_c00032{bottom:261.723916px;}
.y81_c00032{bottom:265.129925px;}
.y80_c00032{bottom:265.692584px;}
.y7f_c00032{bottom:271.516371px;}
.y7e_c00032{bottom:273.782193px;}
.y7d_c00032{bottom:278.060733px;}
.y7c_c00032{bottom:280.048009px;}
.y7b_c00032{bottom:282.988796px;}
.y7a_c00032{bottom:288.586524px;}
.y79_c00032{bottom:289.126870px;}
.y78_c00032{bottom:292.295247px;}
.y77_c00032{bottom:295.271505px;}
.y76_c00032{bottom:296.460786px;}
.y75_c00032{bottom:297.453188px;}
.y74_c00032{bottom:300.535983px;}
.y73_c00032{bottom:303.557727px;}
.y72_c00032{bottom:306.859791px;}
.y71_c00032{bottom:307.685514px;}
.y70_c00032{bottom:309.664365px;}
.y6f_c00032{bottom:311.920458px;}
.y6e_c00032{bottom:313.553481px;}
.y6d_c00032{bottom:316.148985px;}
.y6c_c00032{bottom:316.731000px;}
.y6b_c00032{bottom:320.164161px;}
.y6a_c00032{bottom:321.545945px;}
.y69_c00032{bottom:322.497597px;}
.y68_c00032{bottom:326.329491px;}
.y67_c00032{bottom:327.292689px;}
.y66_c00032{bottom:329.612144px;}
.y65_c00032{bottom:330.582042px;}
.y64_c00032{bottom:332.424074px;}
.y63_c00032{bottom:336.413365px;}
.y62_c00032{bottom:339.762000px;}
.y61_c00032{bottom:340.402762px;}
.y60_c00032{bottom:343.288441px;}
.y5f_c00032{bottom:344.287764px;}
.y5e_c00032{bottom:344.897644px;}
.y5d_c00032{bottom:348.350267px;}
.y5c_c00032{bottom:354.125634px;}
.y5b_c00032{bottom:356.650572px;}
.y5a_c00032{bottom:357.641630px;}
.y59_c00032{bottom:358.516467px;}
.y58_c00032{bottom:362.275103px;}
.y57_c00032{bottom:362.860486px;}
.y56_c00032{bottom:365.081519px;}
.y55_c00032{bottom:370.741030px;}
.y54_c00032{bottom:371.660305px;}
.y53_c00032{bottom:374.876901px;}
.y52_c00032{bottom:375.867124px;}
.y49_c00032{bottom:376.851660px;}
.y48_c00032{bottom:379.401252px;}
.y47_c00032{bottom:380.852340px;}
.y46_c00032{bottom:381.538500px;}
.y51_c00032{bottom:387.406394px;}
.y50_c00032{bottom:390.281014px;}
.y4f_c00032{bottom:390.877839px;}
.y4e_c00032{bottom:392.325834px;}
.y45_c00032{bottom:397.260228px;}
.y44_c00032{bottom:398.825089px;}
.y4d_c00032{bottom:403.824414px;}
.y4c_c00032{bottom:406.108143px;}
.y4b_c00032{bottom:406.745082px;}
.y4a_c00032{bottom:407.715000px;}
.y43_c00032{bottom:409.218181px;}
.y42_c00032{bottom:413.177871px;}
.y41_c00032{bottom:414.477430px;}
.y40_c00032{bottom:415.549587px;}
.y3f_c00032{bottom:423.456127px;}
.y3e_c00032{bottom:427.521454px;}
.y3d_c00032{bottom:429.926632px;}
.y3c_c00032{bottom:431.753911px;}
.y3b_c00032{bottom:436.582393px;}
.y3a_c00032{bottom:438.233848px;}
.y39_c00032{bottom:438.870328px;}
.y38_c00032{bottom:440.636970px;}
.y37_c00032{bottom:443.047755px;}
.y36_c00032{bottom:444.061150px;}
.y35_c00032{bottom:447.043773px;}
.y34_c00032{bottom:448.486500px;}
.y30_c00032{bottom:454.620804px;}
.y2f_c00032{bottom:455.567058px;}
.y2e_c00032{bottom:458.526966px;}
.y2d_c00032{bottom:459.241119px;}
.y33_c00032{bottom:460.226877px;}
.y32_c00032{bottom:462.682818px;}
.y31_c00032{bottom:464.962500px;}
.y2c_c00032{bottom:471.197452px;}
.y2b_c00032{bottom:471.606355px;}
.y2a_c00032{bottom:474.101148px;}
.y29_c00032{bottom:474.890548px;}
.y28_c00032{bottom:477.467625px;}
.y27_c00032{bottom:480.854470px;}
.y26_c00032{bottom:488.773180px;}
.y25_c00032{bottom:489.272197px;}
.y24_c00032{bottom:489.628066px;}
.y23_c00032{bottom:491.427832px;}
.y22_c00032{bottom:492.537522px;}
.y21_c00032{bottom:493.074189px;}
.y20_c00032{bottom:495.863590px;}
.y1f_c00032{bottom:496.283893px;}
.y1e_c00032{bottom:498.950032px;}
.y1d_c00032{bottom:506.922973px;}
.y1c_c00032{bottom:507.965107px;}
.y1b_c00032{bottom:510.687195px;}
.y1a_c00032{bottom:512.653392px;}
.y19_c00032{bottom:513.648339px;}
.y18_c00032{bottom:516.507727px;}
.y17_c00032{bottom:524.295309px;}
.y16_c00032{bottom:525.217923px;}
.y15_c00032{bottom:526.556728px;}
.y14_c00032{bottom:528.313536px;}
.y13_c00032{bottom:529.543963px;}
.y12_c00032{bottom:530.274006px;}
.y11_c00032{bottom:541.692690px;}
.y10_c00032{bottom:542.273119px;}
.yf_c00032{bottom:544.098508px;}
.ye_c00032{bottom:545.306109px;}
.yd_c00032{bottom:545.976297px;}
.yc_c00032{bottom:548.760277px;}
.yb_c00032{bottom:549.180559px;}
.ya_c00032{bottom:556.995538px;}
.y9_c00032{bottom:558.606601px;}
.y8_c00032{bottom:560.345367px;}
.y7_c00032{bottom:561.223675px;}
.y6_c00032{bottom:562.414582px;}
.y5_c00032{bottom:563.169345px;}
.y4_c00032{bottom:564.165421px;}
.y3_c00032{bottom:565.387771px;}
.y2_c00032{bottom:576.355276px;}
.y1_c00032{bottom:579.424500px;}
.h1e_c00032{height:22.050000px;}
.h2_c00032{height:42.011108px;}
.h1a_c00032{height:55.653255px;}
.hf_c00032{height:56.676096px;}
.hc_c00032{height:56.708646px;}
.h11_c00032{height:57.725653px;}
.h16_c00032{height:57.753378px;}
.h1f_c00032{height:58.781475px;}
.h9_c00032{height:58.790650px;}
.h14_c00032{height:58.803440px;}
.hd_c00032{height:59.824768px;}
.h19_c00032{height:59.853501px;}
.h8_c00032{height:59.865828px;}
.he_c00032{height:60.874325px;}
.h1d_c00032{height:60.900000px;}
.h4_c00032{height:60.916106px;}
.h10_c00032{height:61.923883px;}
.hb_c00032{height:62.984941px;}
.h1b_c00032{height:63.003685px;}
.h18_c00032{height:64.053747px;}
.h17_c00032{height:65.103808px;}
.h13_c00032{height:66.153870px;}
.h6_c00032{height:66.167494px;}
.ha_c00032{height:67.183937px;}
.h12_c00032{height:67.203931px;}
.h7_c00032{height:67.217772px;}
.h15_c00032{height:68.253993px;}
.h1c_c00032{height:70.354115px;}
.h3_c00032{height:70.368605px;}
.h5_c00032{height:73.519438px;}
.h1_c00032{height:615.750000px;}
.h0_c00032{height:615.870000px;}
.w0_c00032{width:356.670000px;}
.w1_c00032{width:357.000000px;}
.x0_c00032{left:0.000000px;}
.x61_c00032{left:21.209055px;}
.x5d_c00032{left:23.215815px;}
.x3_c00032{left:24.427802px;}
.x49_c00032{left:29.499000px;}
.x21_c00032{left:30.674866px;}
.x1_c00032{left:34.876500px;}
.x53_c00032{left:35.933315px;}
.xb_c00032{left:38.531028px;}
.x4a_c00032{left:42.138847px;}
.x69_c00032{left:45.522639px;}
.x34_c00032{left:47.432036px;}
.x71_c00032{left:49.452302px;}
.x11_c00032{left:53.415156px;}
.x37_c00032{left:54.780081px;}
.x2c_c00032{left:61.365507px;}
.x4_c00032{left:63.870556px;}
.x31_c00032{left:67.803482px;}
.x6a_c00032{left:68.985266px;}
.x5e_c00032{left:71.226966px;}
.x6d_c00032{left:73.084616px;}
.x35_c00032{left:74.492961px;}
.x66_c00032{left:76.587851px;}
.x2a_c00032{left:79.834398px;}
.x3f_c00032{left:81.063393px;}
.x6e_c00032{left:82.434069px;}
.x52_c00032{left:83.864499px;}
.x4e_c00032{left:84.957264px;}
.x72_c00032{left:87.269876px;}
.x46_c00032{left:89.530326px;}
.x75_c00032{left:91.259039px;}
.x56_c00032{left:93.691772px;}
.x5_c00032{left:96.020157px;}
.x4b_c00032{left:98.506424px;}
.x59_c00032{left:99.915960px;}
.x16_c00032{left:101.406624px;}
.x12_c00032{left:102.605379px;}
.x4f_c00032{left:104.389822px;}
.x43_c00032{left:106.248598px;}
.x1a_c00032{left:107.620576px;}
.x6b_c00032{left:109.291664px;}
.x6_c00032{left:120.353172px;}
.x22_c00032{left:122.203903px;}
.x5a_c00032{left:123.480977px;}
.x32_c00032{left:125.030522px;}
.x54_c00032{left:126.759540px;}
.x17_c00032{left:128.286965px;}
.x76_c00032{left:129.697425px;}
.xc_c00032{left:131.319590px;}
.x4c_c00032{left:133.971423px;}
.x2d_c00032{left:137.766529px;}
.x2b_c00032{left:139.675497px;}
.x3d_c00032{left:141.730024px;}
.x47_c00032{left:143.443369px;}
.x44_c00032{left:144.538356px;}
.x3b_c00032{left:147.736037px;}
.x73_c00032{left:150.201786px;}
.xd_c00032{left:153.672002px;}
.x27_c00032{left:155.324427px;}
.x36_c00032{left:156.931013px;}
.x7_c00032{left:158.755100px;}
.x67_c00032{left:160.951035px;}
.x2e_c00032{left:163.725045px;}
.x48_c00032{left:165.837612px;}
.x2_c00032{left:168.321000px;}
.x79_c00032{left:170.306320px;}
.x13_c00032{left:172.854636px;}
.x28_c00032{left:177.630804px;}
.x18_c00032{left:181.408853px;}
.x1b_c00032{left:183.026823px;}
.x50_c00032{left:185.983860px;}
.x8_c00032{left:187.089390px;}
.x77_c00032{left:189.455877px;}
.x23_c00032{left:191.836978px;}
.xe_c00032{left:193.909016px;}
.x1c_c00032{left:197.551165px;}
.x57_c00032{left:199.318040px;}
.x5f_c00032{left:200.608964px;}
.x63_c00032{left:205.212972px;}
.x62_c00032{left:206.425644px;}
.x55_c00032{left:208.363395px;}
.x3c_c00032{left:211.564483px;}
.x24_c00032{left:213.173613px;}
.x40_c00032{left:214.745808px;}
.x38_c00032{left:216.266973px;}
.x6f_c00032{left:217.940427px;}
.x33_c00032{left:221.745908px;}
.x68_c00032{left:222.749343px;}
.x14_c00032{left:226.430686px;}
.x1d_c00032{left:227.528005px;}
.x7a_c00032{left:231.043523px;}
.x5b_c00032{left:233.312577px;}
.x39_c00032{left:234.981740px;}
.x70_c00032{left:238.344003px;}
.x41_c00032{left:240.118571px;}
.x9_c00032{left:243.177574px;}
.x64_c00032{left:245.213271px;}
.x51_c00032{left:248.041942px;}
.x7b_c00032{left:251.859186px;}
.xf_c00032{left:254.742218px;}
.x6c_c00032{left:256.963431px;}
.x3e_c00032{left:258.459714px;}
.x15_c00032{left:263.346996px;}
.x29_c00032{left:270.107656px;}
.x10_c00032{left:274.105613px;}
.x1e_c00032{left:276.154342px;}
.x74_c00032{left:277.186761px;}
.x60_c00032{left:278.618468px;}
.x25_c00032{left:280.599412px;}
.x19_c00032{left:283.146612px;}
.x1f_c00032{left:285.754237px;}
.x2f_c00032{left:287.035111px;}
.x26_c00032{left:291.656859px;}
.x58_c00032{left:294.128135px;}
.xa_c00032{left:295.149018px;}
.x20_c00032{left:299.228890px;}
.x3a_c00032{left:302.083071px;}
.x42_c00032{left:304.785812px;}
.x45_c00032{left:308.106108px;}
.x65_c00032{left:312.357912px;}
.x4d_c00032{left:315.588124px;}
.x78_c00032{left:321.840000px;}
.x30_c00032{left:329.337767px;}
.x5c_c00032{left:330.583199px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs1c_c00032{font-size:19.600000pt;}
.fs0_c00032{font-size:37.343207pt;}
.fs18_c00032{font-size:49.469560pt;}
.fsd_c00032{font-size:50.378752pt;}
.fsa_c00032{font-size:50.407685pt;}
.fsf_c00032{font-size:51.311692pt;}
.fs14_c00032{font-size:51.336336pt;}
.fs1d_c00032{font-size:52.250200pt;}
.fs7_c00032{font-size:52.258356pt;}
.fs12_c00032{font-size:52.269724pt;}
.fsb_c00032{font-size:53.177571pt;}
.fs17_c00032{font-size:53.203112pt;}
.fs6_c00032{font-size:53.214070pt;}
.fsc_c00032{font-size:54.110511pt;}
.fs1b_c00032{font-size:54.133333pt;}
.fs2_c00032{font-size:54.147650pt;}
.fse_c00032{font-size:55.043451pt;}
.fs9_c00032{font-size:55.986614pt;}
.fs19_c00032{font-size:56.003276pt;}
.fs16_c00032{font-size:56.936664pt;}
.fs15_c00032{font-size:57.870052pt;}
.fs11_c00032{font-size:58.803440pt;}
.fs4_c00032{font-size:58.815551pt;}
.fs8_c00032{font-size:59.719055pt;}
.fs10_c00032{font-size:59.736828pt;}
.fs5_c00032{font-size:59.749131pt;}
.fs13_c00032{font-size:60.670216pt;}
.fs1a_c00032{font-size:62.536991pt;}
.fs1_c00032{font-size:62.549871pt;}
.fs3_c00032{font-size:65.350612pt;}
.y0_c00032{bottom:0.000000pt;}
.ye1_c00032{bottom:31.130117pt;}
.ye0_c00032{bottom:31.815407pt;}
.ydf_c00032{bottom:33.814985pt;}
.yde_c00032{bottom:35.337363pt;}
.ydd_c00032{bottom:35.818856pt;}
.ydc_c00032{bottom:36.254667pt;}
.yda_c00032{bottom:38.408000pt;}
.ydb_c00032{bottom:46.201333pt;}
.yd9_c00032{bottom:47.286344pt;}
.yd8_c00032{bottom:47.957897pt;}
.yd7_c00032{bottom:49.392056pt;}
.yd6_c00032{bottom:51.637588pt;}
.yd5_c00032{bottom:52.147224pt;}
.yd4_c00032{bottom:53.769051pt;}
.yd3_c00032{bottom:60.416749pt;}
.yd2_c00032{bottom:62.933533pt;}
.yd1_c00032{bottom:63.333933pt;}
.yd0_c00032{bottom:65.407420pt;}
.ycf_c00032{bottom:66.741763pt;}
.yce_c00032{bottom:68.692901pt;}
.ycd_c00032{bottom:69.124405pt;}
.ycc_c00032{bottom:75.913184pt;}
.ycb_c00032{bottom:77.328263pt;}
.yca_c00032{bottom:78.643239pt;}
.yc9_c00032{bottom:80.432565pt;}
.yc8_c00032{bottom:81.017971pt;}
.yc7_c00032{bottom:82.671981pt;}
.yc6_c00032{bottom:84.018289pt;}
.yc5_c00032{bottom:84.969584pt;}
.yc4_c00032{bottom:91.038128pt;}
.yc3_c00032{bottom:91.873243pt;}
.yc2_c00032{bottom:95.003389pt;}
.yc1_c00032{bottom:96.927416pt;}
.yc0_c00032{bottom:97.419493pt;}
.ybf_c00032{bottom:99.030781pt;}
.ybe_c00032{bottom:99.855531pt;}
.ybd_c00032{bottom:105.263173pt;}
.ybc_c00032{bottom:105.676279pt;}
.ybb_c00032{bottom:109.806263pt;}
.yba_c00032{bottom:110.896431pt;}
.yb9_c00032{bottom:113.334179pt;}
.yb8_c00032{bottom:115.702251pt;}
.yb7_c00032{bottom:118.739783pt;}
.yb6_c00032{bottom:120.464421pt;}
.yb5_c00032{bottom:122.078325pt;}
.yb4_c00032{bottom:126.057293pt;}
.yb3_c00032{bottom:127.163999pt;}
.yb2_c00032{bottom:128.992599pt;}
.yb1_c00032{bottom:130.057036pt;}
.yb0_c00032{bottom:131.060823pt;}
.yaf_c00032{bottom:132.801589pt;}
.yae_c00032{bottom:136.642636pt;}
.yad_c00032{bottom:139.226757pt;}
.yac_c00032{bottom:140.086653pt;}
.yab_c00032{bottom:142.754477pt;}
.yaa_c00032{bottom:144.968924pt;}
.ya9_c00032{bottom:148.421559pt;}
.ya8_c00032{bottom:151.288576pt;}
.ya7_c00032{bottom:152.996527pt;}
.ya6_c00032{bottom:156.479904pt;}
.ya5_c00032{bottom:157.554856pt;}
.ya4_c00032{bottom:160.817861pt;}
.ya3_c00032{bottom:166.034440pt;}
.ya2_c00032{bottom:167.477788pt;}
.ya1_c00032{bottom:168.022127pt;}
.ya0_c00032{bottom:170.812661pt;}
.y9f_c00032{bottom:174.016641pt;}
.y9e_c00032{bottom:174.730303pt;}
.y9d_c00032{bottom:180.111025pt;}
.y9c_c00032{bottom:183.234529pt;}
.y9b_c00032{bottom:185.144513pt;}
.y9a_c00032{bottom:187.301801pt;}
.y99_c00032{bottom:188.413981pt;}
.y98_c00032{bottom:190.336355pt;}
.y97_c00032{bottom:193.401337pt;}
.y96_c00032{bottom:197.295843pt;}
.y95_c00032{bottom:197.985052pt;}
.y94_c00032{bottom:200.334795pt;}
.y93_c00032{bottom:201.693788pt;}
.y92_c00032{bottom:202.636943pt;}
.y91_c00032{bottom:203.415672pt;}
.y90_c00032{bottom:205.697133pt;}
.y8f_c00032{bottom:209.512431pt;}
.y8e_c00032{bottom:213.392991pt;}
.y8d_c00032{bottom:214.735025pt;}
.y8c_c00032{bottom:216.292953pt;}
.y8b_c00032{bottom:217.716255pt;}
.y8a_c00032{bottom:219.861327pt;}
.y89_c00032{bottom:220.580215pt;}
.y88_c00032{bottom:224.051095pt;}
.y87_c00032{bottom:226.135731pt;}
.y86_c00032{bottom:227.198985pt;}
.y85_c00032{bottom:228.307837pt;}
.y84_c00032{bottom:230.438027pt;}
.y83_c00032{bottom:231.792029pt;}
.y82_c00032{bottom:232.643481pt;}
.y81_c00032{bottom:235.671044pt;}
.y80_c00032{bottom:236.171185pt;}
.y7f_c00032{bottom:241.347885pt;}
.y7e_c00032{bottom:243.361949pt;}
.y7d_c00032{bottom:247.165096pt;}
.y7c_c00032{bottom:248.931564pt;}
.y7b_c00032{bottom:251.545596pt;}
.y7a_c00032{bottom:256.521355pt;}
.y79_c00032{bottom:257.001663pt;}
.y78_c00032{bottom:259.817997pt;}
.y77_c00032{bottom:262.463560pt;}
.y76_c00032{bottom:263.520699pt;}
.y75_c00032{bottom:264.402833pt;}
.y74_c00032{bottom:267.143096pt;}
.y73_c00032{bottom:269.829091pt;}
.y72_c00032{bottom:272.764259pt;}
.y71_c00032{bottom:273.498235pt;}
.y70_c00032{bottom:275.257213pt;}
.y6f_c00032{bottom:277.262629pt;}
.y6e_c00032{bottom:278.714205pt;}
.y6d_c00032{bottom:281.021320pt;}
.y6c_c00032{bottom:281.538667pt;}
.y6b_c00032{bottom:284.590365pt;}
.y6a_c00032{bottom:285.818617pt;}
.y69_c00032{bottom:286.664531pt;}
.y68_c00032{bottom:290.070659pt;}
.y67_c00032{bottom:290.926835pt;}
.y66_c00032{bottom:292.988572pt;}
.y65_c00032{bottom:293.850704pt;}
.y64_c00032{bottom:295.488065pt;}
.y63_c00032{bottom:299.034103pt;}
.y62_c00032{bottom:302.010667pt;}
.y61_c00032{bottom:302.580233pt;}
.y60_c00032{bottom:305.145281pt;}
.y5f_c00032{bottom:306.033568pt;}
.y5e_c00032{bottom:306.575684pt;}
.y5d_c00032{bottom:309.644681pt;}
.y5c_c00032{bottom:314.778341pt;}
.y5b_c00032{bottom:317.022731pt;}
.y5a_c00032{bottom:317.903671pt;}
.y59_c00032{bottom:318.681304pt;}
.y58_c00032{bottom:322.022313pt;}
.y57_c00032{bottom:322.542655pt;}
.y56_c00032{bottom:324.516905pt;}
.y55_c00032{bottom:329.547583pt;}
.y54_c00032{bottom:330.364716pt;}
.y53_c00032{bottom:333.223912pt;}
.y52_c00032{bottom:334.104111pt;}
.y49_c00032{bottom:334.979253pt;}
.y48_c00032{bottom:337.245557pt;}
.y47_c00032{bottom:338.535413pt;}
.y46_c00032{bottom:339.145333pt;}
.y51_c00032{bottom:344.361239pt;}
.y50_c00032{bottom:346.916457pt;}
.y4f_c00032{bottom:347.446968pt;}
.y4e_c00032{bottom:348.734075pt;}
.y45_c00032{bottom:353.120203pt;}
.y44_c00032{bottom:354.511191pt;}
.y4d_c00032{bottom:358.955035pt;}
.y4c_c00032{bottom:360.985016pt;}
.y4b_c00032{bottom:361.551184pt;}
.y4a_c00032{bottom:362.413333pt;}
.y43_c00032{bottom:363.749495pt;}
.y42_c00032{bottom:367.269219pt;}
.y41_c00032{bottom:368.424383pt;}
.y40_c00032{bottom:369.377411pt;}
.y3f_c00032{bottom:376.405447pt;}
.y3e_c00032{bottom:380.019071pt;}
.y3d_c00032{bottom:382.157007pt;}
.y3c_c00032{bottom:383.781255pt;}
.y3b_c00032{bottom:388.073239pt;}
.y3a_c00032{bottom:389.541199pt;}
.y39_c00032{bottom:390.106959pt;}
.y38_c00032{bottom:391.677307pt;}
.y37_c00032{bottom:393.820227pt;}
.y36_c00032{bottom:394.721023pt;}
.y35_c00032{bottom:397.372243pt;}
.y34_c00032{bottom:398.654667pt;}
.y30_c00032{bottom:404.107381pt;}
.y2f_c00032{bottom:404.948496pt;}
.y2e_c00032{bottom:407.579525pt;}
.y2d_c00032{bottom:408.214328pt;}
.y33_c00032{bottom:409.090557pt;}
.y32_c00032{bottom:411.273616pt;}
.y31_c00032{bottom:413.300000pt;}
.y2c_c00032{bottom:418.842180pt;}
.y2b_c00032{bottom:419.205649pt;}
.y2a_c00032{bottom:421.423243pt;}
.y29_c00032{bottom:422.124932pt;}
.y28_c00032{bottom:424.415667pt;}
.y27_c00032{bottom:427.426196pt;}
.y26_c00032{bottom:434.465049pt;}
.y25_c00032{bottom:434.908620pt;}
.y24_c00032{bottom:435.224948pt;}
.y23_c00032{bottom:436.824740pt;}
.y22_c00032{bottom:437.811131pt;}
.y21_c00032{bottom:438.288168pt;}
.y20_c00032{bottom:440.767636pt;}
.y1f_c00032{bottom:441.141239pt;}
.y1e_c00032{bottom:443.511140pt;}
.y1d_c00032{bottom:450.598199pt;}
.y1c_c00032{bottom:451.524540pt;}
.y1b_c00032{bottom:453.944173pt;}
.y1a_c00032{bottom:455.691904pt;}
.y19_c00032{bottom:456.576301pt;}
.y18_c00032{bottom:459.117980pt;}
.y17_c00032{bottom:466.040275pt;}
.y16_c00032{bottom:466.860376pt;}
.y15_c00032{bottom:468.050425pt;}
.y14_c00032{bottom:469.612032pt;}
.y13_c00032{bottom:470.705745pt;}
.y12_c00032{bottom:471.354672pt;}
.y11_c00032{bottom:481.504613pt;}
.y10_c00032{bottom:482.020551pt;}
.yf_c00032{bottom:483.643119pt;}
.ye_c00032{bottom:484.716541pt;}
.yd_c00032{bottom:485.312264pt;}
.yc_c00032{bottom:487.786913pt;}
.yb_c00032{bottom:488.160497pt;}
.ya_c00032{bottom:495.107145pt;}
.y9_c00032{bottom:496.539201pt;}
.y8_c00032{bottom:498.084771pt;}
.y7_c00032{bottom:498.865489pt;}
.y6_c00032{bottom:499.924073pt;}
.y5_c00032{bottom:500.594973pt;}
.y4_c00032{bottom:501.480375pt;}
.y3_c00032{bottom:502.566908pt;}
.y2_c00032{bottom:512.315801pt;}
.y1_c00032{bottom:515.044000pt;}
.h1e_c00032{height:19.600000pt;}
.h2_c00032{height:37.343207pt;}
.h1a_c00032{height:49.469560pt;}
.hf_c00032{height:50.378752pt;}
.hc_c00032{height:50.407685pt;}
.h11_c00032{height:51.311692pt;}
.h16_c00032{height:51.336336pt;}
.h1f_c00032{height:52.250200pt;}
.h9_c00032{height:52.258356pt;}
.h14_c00032{height:52.269724pt;}
.hd_c00032{height:53.177571pt;}
.h19_c00032{height:53.203112pt;}
.h8_c00032{height:53.214070pt;}
.he_c00032{height:54.110511pt;}
.h1d_c00032{height:54.133333pt;}
.h4_c00032{height:54.147650pt;}
.h10_c00032{height:55.043451pt;}
.hb_c00032{height:55.986614pt;}
.h1b_c00032{height:56.003276pt;}
.h18_c00032{height:56.936664pt;}
.h17_c00032{height:57.870052pt;}
.h13_c00032{height:58.803440pt;}
.h6_c00032{height:58.815551pt;}
.ha_c00032{height:59.719055pt;}
.h12_c00032{height:59.736828pt;}
.h7_c00032{height:59.749131pt;}
.h15_c00032{height:60.670216pt;}
.h1c_c00032{height:62.536991pt;}
.h3_c00032{height:62.549871pt;}
.h5_c00032{height:65.350612pt;}
.h1_c00032{height:547.333333pt;}
.h0_c00032{height:547.440000pt;}
.w0_c00032{width:317.040000pt;}
.w1_c00032{width:317.333333pt;}
.x0_c00032{left:0.000000pt;}
.x61_c00032{left:18.852493pt;}
.x5d_c00032{left:20.636280pt;}
.x3_c00032{left:21.713601pt;}
.x49_c00032{left:26.221333pt;}
.x21_c00032{left:27.266548pt;}
.x1_c00032{left:31.001333pt;}
.x53_c00032{left:31.940724pt;}
.xb_c00032{left:34.249803pt;}
.x4a_c00032{left:37.456753pt;}
.x69_c00032{left:40.464568pt;}
.x34_c00032{left:42.161809pt;}
.x71_c00032{left:43.957601pt;}
.x11_c00032{left:47.480139pt;}
.x37_c00032{left:48.693405pt;}
.x2c_c00032{left:54.547117pt;}
.x4_c00032{left:56.773828pt;}
.x31_c00032{left:60.269761pt;}
.x6a_c00032{left:61.320236pt;}
.x5e_c00032{left:63.312859pt;}
.x6d_c00032{left:64.964103pt;}
.x35_c00032{left:66.215965pt;}
.x66_c00032{left:68.078089pt;}
.x2a_c00032{left:70.963909pt;}
.x3f_c00032{left:72.056349pt;}
.x6e_c00032{left:73.274728pt;}
.x52_c00032{left:74.546221pt;}
.x4e_c00032{left:75.517568pt;}
.x72_c00032{left:77.573223pt;}
.x46_c00032{left:79.582512pt;}
.x75_c00032{left:81.119145pt;}
.x56_c00032{left:83.281575pt;}
.x5_c00032{left:85.351251pt;}
.x4b_c00032{left:87.561265pt;}
.x59_c00032{left:88.814187pt;}
.x16_c00032{left:90.139221pt;}
.x12_c00032{left:91.204781pt;}
.x4f_c00032{left:92.790953pt;}
.x43_c00032{left:94.443199pt;}
.x1a_c00032{left:95.662735pt;}
.x6b_c00032{left:97.148145pt;}
.x6_c00032{left:106.980597pt;}
.x22_c00032{left:108.625692pt;}
.x5a_c00032{left:109.760868pt;}
.x32_c00032{left:111.138241pt;}
.x54_c00032{left:112.675147pt;}
.x17_c00032{left:114.032857pt;}
.x76_c00032{left:115.286600pt;}
.xc_c00032{left:116.728524pt;}
.x4c_c00032{left:119.085709pt;}
.x2d_c00032{left:122.459137pt;}
.x2b_c00032{left:124.155997pt;}
.x3d_c00032{left:125.982244pt;}
.x47_c00032{left:127.505217pt;}
.x44_c00032{left:128.478539pt;}
.x3b_c00032{left:131.320921pt;}
.x73_c00032{left:133.512699pt;}
.xd_c00032{left:136.597335pt;}
.x27_c00032{left:138.066157pt;}
.x36_c00032{left:139.494233pt;}
.x7_c00032{left:141.115644pt;}
.x67_c00032{left:143.067587pt;}
.x2e_c00032{left:145.533373pt;}
.x48_c00032{left:147.411211pt;}
.x2_c00032{left:149.618667pt;}
.x79_c00032{left:151.383396pt;}
.x13_c00032{left:153.648565pt;}
.x28_c00032{left:157.894048pt;}
.x18_c00032{left:161.252313pt;}
.x1b_c00032{left:162.690509pt;}
.x50_c00032{left:165.318987pt;}
.x8_c00032{left:166.301680pt;}
.x77_c00032{left:168.405224pt;}
.x23_c00032{left:170.521759pt;}
.xe_c00032{left:172.363569pt;}
.x1c_c00032{left:175.601036pt;}
.x57_c00032{left:177.171591pt;}
.x5f_c00032{left:178.319079pt;}
.x63_c00032{left:182.411531pt;}
.x62_c00032{left:183.489461pt;}
.x55_c00032{left:185.211907pt;}
.x3c_c00032{left:188.057319pt;}
.x24_c00032{left:189.487656pt;}
.x40_c00032{left:190.885163pt;}
.x38_c00032{left:192.237309pt;}
.x6f_c00032{left:193.724824pt;}
.x33_c00032{left:197.107473pt;}
.x68_c00032{left:197.999416pt;}
.x14_c00032{left:201.271721pt;}
.x1d_c00032{left:202.247116pt;}
.x7a_c00032{left:205.372020pt;}
.x5b_c00032{left:207.388957pt;}
.x39_c00032{left:208.872657pt;}
.x70_c00032{left:211.861336pt;}
.x41_c00032{left:213.438729pt;}
.x9_c00032{left:216.157844pt;}
.x64_c00032{left:217.967352pt;}
.x51_c00032{left:220.481727pt;}
.x7b_c00032{left:223.874832pt;}
.xf_c00032{left:226.437527pt;}
.x6c_c00032{left:228.411939pt;}
.x3e_c00032{left:229.741968pt;}
.x15_c00032{left:234.086219pt;}
.x29_c00032{left:240.095695pt;}
.x10_c00032{left:243.649433pt;}
.x1e_c00032{left:245.470527pt;}
.x74_c00032{left:246.388232pt;}
.x60_c00032{left:247.660860pt;}
.x25_c00032{left:249.421700pt;}
.x19_c00032{left:251.685877pt;}
.x1f_c00032{left:254.003767pt;}
.x2f_c00032{left:255.142321pt;}
.x26_c00032{left:259.250541pt;}
.x58_c00032{left:261.447231pt;}
.xa_c00032{left:262.354683pt;}
.x20_c00032{left:265.981236pt;}
.x3a_c00032{left:268.518285pt;}
.x42_c00032{left:270.920721pt;}
.x45_c00032{left:273.872096pt;}
.x65_c00032{left:277.651477pt;}
.x4d_c00032{left:280.522777pt;}
.x78_c00032{left:286.080000pt;}
.x30_c00032{left:292.744681pt;}
.x5c_c00032{left:293.851732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00033 {
    display:none;
  }
  .loading-indicator_c00033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00033 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00033 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00033" -> "#page-container .classname_c00033")
 */
.pf_c00033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00033 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00033 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00033 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00033 {overflow:visible;}
  }
}
.c_c00033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00033 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00033:after { /* webkit #35443 */
  content: '';
}
.t_c00033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00033 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00033 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00033 { /* info for Javascript */
  display:none;
}
.l_c00033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00033:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00033 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00033.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86_c00033{transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);}
.mb3_c00033{transform:matrix(0.117220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117220,0.000000,0.000000,0.250000,0,0);}
.mb1_c00033{transform:matrix(0.121595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121595,0.000000,0.000000,0.250000,0,0);}
.m81_c00033{transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m87_c00033{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.mc3_c00033{transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);}
.m88_c00033{transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);}
.m43_c00033{transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);}
.mb6_c00033{transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m82_c00033{transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);}
.mba_c00033{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m6b_c00033{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.mb7_c00033{transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);}
.mde_c00033{transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);}
.m62_c00033{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00033{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.162695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162695,0.000000,0.000000,0.250000,0,0);}
.m5a_c00033{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.mbe_c00033{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.mc7_c00033{transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m72_c00033{transform:matrix(0.163890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163890,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.165610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165610,0.000000,0.000000,0.250000,0,0);}
.mb0_c00033{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00033{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.mda_c00033{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m28_c00033{transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);}
.m44_c00033{transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);}
.m92_c00033{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.mdf_c00033{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m27_c00033{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m40_c00033{transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);}
.m2b_c00033{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.mb2_c00033{transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);}
.m61_c00033{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m77_c00033{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m8e_c00033{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.mc4_c00033{transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);}
.m3b_c00033{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.ma6_c00033{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m3a_c00033{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m19_c00033{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m9c_c00033{transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00033{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me1_c00033{transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);}
.md5_c00033{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m7a_c00033{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m78_c00033{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.mbc_c00033{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.maf_c00033{transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);}
.m60_c00033{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.mdc_c00033{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.mdd_c00033{transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.176970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176970,0.000000,0.000000,0.250000,0,0);}
.m23_c00033{transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00033{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m75_c00033{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00033{transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);}
.m71_c00033{transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);}
.mf_c00033{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00033{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m3e_c00033{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.mdb_c00033{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m52_c00033{transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);}
.m50_c00033{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.md1_c00033{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.md8_c00033{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.md7_c00033{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.mb8_c00033{transform:matrix(0.182835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182835,0.000000,0.000000,0.250000,0,0);}
.mb5_c00033{transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);}
.mb4_c00033{transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);}
.m6f_c00033{transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);}
.m80_c00033{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m57_c00033{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m42_c00033{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.me2_c00033{transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00033{transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);}
.ma9_c00033{transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);}
.m7e_c00033{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.me9_c00033{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m51_c00033{transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);}
.m47_c00033{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.mae_c00033{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m73_c00033{transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);}
.m67_c00033{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.md2_c00033{transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);}
.m53_c00033{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.m58_c00033{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m49_c00033{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.mc5_c00033{transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);}
.m59_c00033{transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);}
.md4_c00033{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m41_c00033{transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);}
.m2e_c00033{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m95_c00033{transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.mca_c00033{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.m7d_c00033{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m84_c00033{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mc1_c00033{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.m63_c00033{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.m8a_c00033{transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);}
.m66_c00033{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);}
.m5d_c00033{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m56_c00033{transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);}
.m20_c00033{transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);}
.m3d_c00033{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00033{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.me0_c00033{transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);}
.mc2_c00033{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.ma3_c00033{transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);}
.m83_c00033{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m9a_c00033{transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00033{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m93_c00033{transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);}
.m5c_c00033{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m99_c00033{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m74_c00033{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m7c_c00033{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m17_c00033{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.mc6_c00033{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.m34_c00033{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00033{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00033{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m97_c00033{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m64_c00033{transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);}
.m8d_c00033{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.m70_c00033{transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);}
.mcf_c00033{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.mb9_c00033{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.m76_c00033{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m4c_c00033{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m6d_c00033{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.ma5_c00033{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.m5b_c00033{transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);}
.mbd_c00033{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.me_c00033{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m33_c00033{transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);}
.m7b_c00033{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m6a_c00033{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.m8c_c00033{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);}
.m29_c00033{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.m85_c00033{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.mac_c00033{transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);}
.m4e_c00033{transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);}
.maa_c00033{transform:matrix(0.209990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209990,0.000000,0.000000,0.250000,0,0);}
.mab_c00033{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m48_c00033{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.m90_c00033{transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);}
.me8_c00033{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m65_c00033{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.md6_c00033{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m36_c00033{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m96_c00033{transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);}
.ma2_c00033{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.m9b_c00033{transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);}
.m94_c00033{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m79_c00033{transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);}
.m9d_c00033{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00033{transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);}
.me4_c00033{transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);}
.m31_c00033{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m32_c00033{transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);}
.mad_c00033{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m9e_c00033{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m26_c00033{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m18_c00033{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.m54_c00033{transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);}
.me5_c00033{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m7f_c00033{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.mce_c00033{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.ma7_c00033{transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);}
.m35_c00033{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m68_c00033{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.m91_c00033{transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);}
.md9_c00033{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.228060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228060,0.000000,0.000000,0.250000,0,0);}
.ma0_c00033{transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);}
.m30_c00033{transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);}
.ma8_c00033{transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);}
.m1c_c00033{transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);}
.ma4_c00033{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m4f_c00033{transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);}
.mcd_c00033{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m69_c00033{transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m38_c00033{transform:matrix(0.237720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237720,0.000000,0.000000,0.250000,0,0);}
.m98_c00033{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.mbb_c00033{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);}
.md0_c00033{transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);}
.ma1_c00033{transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);}
.m24_c00033{transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);}
.m89_c00033{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m2d_c00033{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m22_c00033{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.mc9_c00033{transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);}
.m39_c00033{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.me6_c00033{transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);}
.m5f_c00033{transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);}
.me3_c00033{transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);}
.mc0_c00033{transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00033{transform:matrix(0.271180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271180,0.000000,0.000000,0.250000,0,0);}
.mc8_c00033{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m10_c00033{transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);}
.m6c_c00033{transform:matrix(0.314800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314800,0.000000,0.000000,0.250000,0,0);}
.md3_c00033{transform:matrix(0.323520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323520,0.000000,0.000000,0.250000,0,0);}
.me7_c00033{transform:matrix(0.328805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328805,0.000000,0.000000,0.250000,0,0);}
.mea_c00033{transform:matrix(0.350680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350680,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{transform:matrix(0.463705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463705,0.000000,0.000000,0.250000,0,0);}
.mcb_c00033{transform:matrix(0.578545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578545,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:0.000000px;}
.fc0_c00033{color:transparent;}
.fs6_c00033{font-size:22.050000px;}
.fsa_c00033{font-size:37.800000px;}
.fs0_c00033{font-size:55.650000px;}
.fsd_c00033{font-size:57.750000px;}
.fs3_c00033{font-size:58.800000px;}
.fs9_c00033{font-size:60.900000px;}
.fs4_c00033{font-size:61.950000px;}
.fs7_c00033{font-size:63.000000px;}
.fsc_c00033{font-size:64.050000px;}
.fs8_c00033{font-size:65.100000px;}
.fsb_c00033{font-size:66.150000px;}
.fs5_c00033{font-size:67.200000px;}
.fs2_c00033{font-size:68.250000px;}
.fsf_c00033{font-size:69.300000px;}
.fs10_c00033{font-size:70.350000px;}
.fs1_c00033{font-size:72.450000px;}
.fse_c00033{font-size:74.550000px;}
.y0_c00033{bottom:0.000000px;}
.y2f_c00033{bottom:31.081500px;}
.y2e_c00033{bottom:47.908500px;}
.y2d_c00033{bottom:65.223000px;}
.y2c_c00033{bottom:82.081500px;}
.y2b_c00033{bottom:98.670000px;}
.y2a_c00033{bottom:115.410000px;}
.y29_c00033{bottom:132.481500px;}
.y28_c00033{bottom:149.799000px;}
.y27_c00033{bottom:167.250000px;}
.y26_c00033{bottom:184.618500px;}
.y25_c00033{bottom:201.420000px;}
.y24_c00033{bottom:218.010000px;}
.y23_c00033{bottom:236.742000px;}
.y1c_c00033{bottom:252.721500px;}
.y1d_c00033{bottom:253.360500px;}
.y1e_c00033{bottom:253.876500px;}
.y1f_c00033{bottom:254.097000px;}
.y20_c00033{bottom:255.211500px;}
.y21_c00033{bottom:255.384000px;}
.y22_c00033{bottom:256.414500px;}
.y1b_c00033{bottom:265.410000px;}
.y30_c00033{bottom:271.134000px;}
.y1a_c00033{bottom:286.740000px;}
.y19_c00033{bottom:303.480000px;}
.y18_c00033{bottom:320.550000px;}
.y17_c00033{bottom:338.308500px;}
.y16_c00033{bottom:355.374000px;}
.y15_c00033{bottom:371.638500px;}
.y14_c00033{bottom:372.730500px;}
.y13_c00033{bottom:373.105500px;}
.y12_c00033{bottom:374.245500px;}
.y11_c00033{bottom:374.655000px;}
.y10_c00033{bottom:375.504000px;}
.yf_c00033{bottom:376.513500px;}
.ye_c00033{bottom:377.463000px;}
.yd_c00033{bottom:388.320000px;}
.yc_c00033{bottom:405.843000px;}
.yb_c00033{bottom:422.370000px;}
.ya_c00033{bottom:440.025000px;}
.y9_c00033{bottom:449.280000px;}
.y8_c00033{bottom:455.667000px;}
.y7_c00033{bottom:473.580000px;}
.y6_c00033{bottom:490.050000px;}
.y5_c00033{bottom:506.971500px;}
.y4_c00033{bottom:523.680000px;}
.y3_c00033{bottom:540.577500px;}
.y2_c00033{bottom:557.704500px;}
.y1_c00033{bottom:575.239500px;}
.h8_c00033{height:22.050000px;}
.hc_c00033{height:37.800000px;}
.h2_c00033{height:55.650000px;}
.hf_c00033{height:57.750000px;}
.h5_c00033{height:58.800000px;}
.hb_c00033{height:60.900000px;}
.h6_c00033{height:61.950000px;}
.h9_c00033{height:63.000000px;}
.he_c00033{height:64.050000px;}
.ha_c00033{height:65.100000px;}
.hd_c00033{height:66.150000px;}
.h7_c00033{height:67.200000px;}
.h4_c00033{height:68.250000px;}
.h11_c00033{height:69.300000px;}
.h12_c00033{height:70.350000px;}
.h3_c00033{height:72.450000px;}
.h10_c00033{height:74.550000px;}
.h0_c00033{height:615.600000px;}
.h1_c00033{height:615.750000px;}
.w1_c00033{width:356.250000px;}
.w0_c00033{width:356.400000px;}
.x0_c00033{left:0.000000px;}
.x78_c00033{left:29.160000px;}
.x75_c00033{left:30.240000px;}
.x70_c00033{left:32.130000px;}
.x68_c00033{left:33.210000px;}
.x60_c00033{left:34.560000px;}
.x57_c00033{left:35.802000px;}
.x4a_c00033{left:37.260000px;}
.x40_c00033{left:38.455500px;}
.x39_c00033{left:39.690000px;}
.x1c_c00033{left:40.770000px;}
.x2_c00033{left:42.390000px;}
.x5e_c00033{left:49.140000px;}
.x17_c00033{left:50.490000px;}
.x7b_c00033{left:53.730000px;}
.x4b_c00033{left:55.080000px;}
.x46_c00033{left:57.780000px;}
.x1d_c00033{left:58.860000px;}
.x62_c00033{left:62.640000px;}
.x23_c00033{left:64.800000px;}
.x7_c00033{left:66.150000px;}
.x6b_c00033{left:68.040000px;}
.x18_c00033{left:70.740000px;}
.x1e_c00033{left:75.870000px;}
.x8_c00033{left:78.840000px;}
.x69_c00033{left:81.000000px;}
.x31_c00033{left:82.080000px;}
.x58_c00033{left:84.976500px;}
.x71_c00033{left:89.100000px;}
.x32_c00033{left:91.260000px;}
.x5f_c00033{left:92.340000px;}
.x10_c00033{left:93.960000px;}
.x51_c00033{left:95.310000px;}
.x34_c00033{left:96.390000px;}
.x28_c00033{left:98.550000px;}
.x44_c00033{left:99.630000px;}
.x47_c00033{left:101.520000px;}
.x9_c00033{left:103.950000px;}
.x7f_c00033{left:105.570000px;}
.x72_c00033{left:108.540000px;}
.x11_c00033{left:111.240000px;}
.x24_c00033{left:115.290000px;}
.x3b_c00033{left:116.910000px;}
.x29_c00033{left:118.800000px;}
.x4c_c00033{left:121.500000px;}
.x59_c00033{left:124.632000px;}
.x35_c00033{left:126.630000px;}
.x7c_c00033{left:129.330000px;}
.x3_c00033{left:134.730000px;}
.x63_c00033{left:136.620000px;}
.x5a_c00033{left:141.636000px;}
.x4d_c00033{left:145.530000px;}
.x6c_c00033{left:146.880000px;}
.x4_c00033{left:148.770000px;}
.x1f_c00033{left:150.390000px;}
.x80_c00033{left:152.550000px;}
.x12_c00033{left:153.900000px;}
.x3c_c00033{left:161.190000px;}
.x33_c00033{left:164.430000px;}
.xa_c00033{left:166.320000px;}
.x13_c00033{left:168.210000px;}
.x52_c00033{left:169.290000px;}
.x20_c00033{left:171.180000px;}
.x25_c00033{left:172.800000px;}
.x66_c00033{left:175.770000px;}
.x1_c00033{left:178.470000px;}
.x64_c00033{left:182.790000px;}
.x41_c00033{left:184.707000px;}
.x7d_c00033{left:187.380000px;}
.x19_c00033{left:189.000000px;}
.xb_c00033{left:190.890000px;}
.x76_c00033{left:192.510000px;}
.x6d_c00033{left:193.590000px;}
.x53_c00033{left:195.480000px;}
.x1a_c00033{left:200.070000px;}
.x56_c00033{left:201.150000px;}
.x3d_c00033{left:203.580000px;}
.x3a_c00033{left:205.200000px;}
.x2a_c00033{left:206.550000px;}
.xc_c00033{left:208.170000px;}
.x48_c00033{left:211.410000px;}
.x73_c00033{left:215.190000px;}
.x3e_c00033{left:217.620000px;}
.x54_c00033{left:223.560000px;}
.x81_c00033{left:225.990000px;}
.x5b_c00033{left:227.383500px;}
.x4e_c00033{left:229.230000px;}
.x26_c00033{left:230.310000px;}
.x42_c00033{left:236.533500px;}
.x6e_c00033{left:237.870000px;}
.x5c_c00033{left:240.646500px;}
.x36_c00033{left:242.190000px;}
.x45_c00033{left:244.620000px;}
.x1b_c00033{left:248.130000px;}
.x14_c00033{left:249.210000px;}
.x5_c00033{left:250.560000px;}
.x2b_c00033{left:254.340000px;}
.x79_c00033{left:257.850000px;}
.x4f_c00033{left:261.090000px;}
.x82_c00033{left:262.170000px;}
.x6a_c00033{left:264.060000px;}
.x67_c00033{left:266.490000px;}
.x15_c00033{left:270.540000px;}
.x2c_c00033{left:271.890000px;}
.x37_c00033{left:272.970000px;}
.x6_c00033{left:274.050000px;}
.xd_c00033{left:275.130000px;}
.x21_c00033{left:277.290000px;}
.x7e_c00033{left:279.180000px;}
.x77_c00033{left:282.690000px;}
.x6f_c00033{left:283.770000px;}
.xe_c00033{left:287.280000px;}
.x38_c00033{left:292.680000px;}
.x65_c00033{left:294.030000px;}
.x3f_c00033{left:295.380000px;}
.x27_c00033{left:297.810000px;}
.x74_c00033{left:298.890000px;}
.x50_c00033{left:301.860000px;}
.x43_c00033{left:303.220500px;}
.x61_c00033{left:305.370000px;}
.x22_c00033{left:306.720000px;}
.x7a_c00033{left:309.150000px;}
.x2d_c00033{left:312.120000px;}
.xf_c00033{left:313.740000px;}
.x16_c00033{left:315.900000px;}
.x49_c00033{left:318.330000px;}
.x5d_c00033{left:319.963500px;}
.x55_c00033{left:325.890000px;}
.x2f_c00033{left:346.410000px;}
.x2e_c00033{left:347.490000px;}
.x30_c00033{left:349.650000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs6_c00033{font-size:19.600000pt;}
.fsa_c00033{font-size:33.600000pt;}
.fs0_c00033{font-size:49.466667pt;}
.fsd_c00033{font-size:51.333333pt;}
.fs3_c00033{font-size:52.266667pt;}
.fs9_c00033{font-size:54.133333pt;}
.fs4_c00033{font-size:55.066667pt;}
.fs7_c00033{font-size:56.000000pt;}
.fsc_c00033{font-size:56.933333pt;}
.fs8_c00033{font-size:57.866667pt;}
.fsb_c00033{font-size:58.800000pt;}
.fs5_c00033{font-size:59.733333pt;}
.fs2_c00033{font-size:60.666667pt;}
.fsf_c00033{font-size:61.600000pt;}
.fs10_c00033{font-size:62.533333pt;}
.fs1_c00033{font-size:64.400000pt;}
.fse_c00033{font-size:66.266667pt;}
.y0_c00033{bottom:0.000000pt;}
.y2f_c00033{bottom:27.628000pt;}
.y2e_c00033{bottom:42.585333pt;}
.y2d_c00033{bottom:57.976000pt;}
.y2c_c00033{bottom:72.961333pt;}
.y2b_c00033{bottom:87.706667pt;}
.y2a_c00033{bottom:102.586667pt;}
.y29_c00033{bottom:117.761333pt;}
.y28_c00033{bottom:133.154667pt;}
.y27_c00033{bottom:148.666667pt;}
.y26_c00033{bottom:164.105333pt;}
.y25_c00033{bottom:179.040000pt;}
.y24_c00033{bottom:193.786667pt;}
.y23_c00033{bottom:210.437333pt;}
.y1c_c00033{bottom:224.641333pt;}
.y1d_c00033{bottom:225.209333pt;}
.y1e_c00033{bottom:225.668000pt;}
.y1f_c00033{bottom:225.864000pt;}
.y20_c00033{bottom:226.854667pt;}
.y21_c00033{bottom:227.008000pt;}
.y22_c00033{bottom:227.924000pt;}
.y1b_c00033{bottom:235.920000pt;}
.y30_c00033{bottom:241.008000pt;}
.y1a_c00033{bottom:254.880000pt;}
.y19_c00033{bottom:269.760000pt;}
.y18_c00033{bottom:284.933333pt;}
.y17_c00033{bottom:300.718667pt;}
.y16_c00033{bottom:315.888000pt;}
.y15_c00033{bottom:330.345333pt;}
.y14_c00033{bottom:331.316000pt;}
.y13_c00033{bottom:331.649333pt;}
.y12_c00033{bottom:332.662667pt;}
.y11_c00033{bottom:333.026667pt;}
.y10_c00033{bottom:333.781333pt;}
.yf_c00033{bottom:334.678667pt;}
.ye_c00033{bottom:335.522667pt;}
.yd_c00033{bottom:345.173333pt;}
.yc_c00033{bottom:360.749333pt;}
.yb_c00033{bottom:375.440000pt;}
.ya_c00033{bottom:391.133333pt;}
.y9_c00033{bottom:399.360000pt;}
.y8_c00033{bottom:405.037333pt;}
.y7_c00033{bottom:420.960000pt;}
.y6_c00033{bottom:435.600000pt;}
.y5_c00033{bottom:450.641333pt;}
.y4_c00033{bottom:465.493333pt;}
.y3_c00033{bottom:480.513333pt;}
.y2_c00033{bottom:495.737333pt;}
.y1_c00033{bottom:511.324000pt;}
.h8_c00033{height:19.600000pt;}
.hc_c00033{height:33.600000pt;}
.h2_c00033{height:49.466667pt;}
.hf_c00033{height:51.333333pt;}
.h5_c00033{height:52.266667pt;}
.hb_c00033{height:54.133333pt;}
.h6_c00033{height:55.066667pt;}
.h9_c00033{height:56.000000pt;}
.he_c00033{height:56.933333pt;}
.ha_c00033{height:57.866667pt;}
.hd_c00033{height:58.800000pt;}
.h7_c00033{height:59.733333pt;}
.h4_c00033{height:60.666667pt;}
.h11_c00033{height:61.600000pt;}
.h12_c00033{height:62.533333pt;}
.h3_c00033{height:64.400000pt;}
.h10_c00033{height:66.266667pt;}
.h0_c00033{height:547.200000pt;}
.h1_c00033{height:547.333333pt;}
.w1_c00033{width:316.666667pt;}
.w0_c00033{width:316.800000pt;}
.x0_c00033{left:0.000000pt;}
.x78_c00033{left:25.920000pt;}
.x75_c00033{left:26.880000pt;}
.x70_c00033{left:28.560000pt;}
.x68_c00033{left:29.520000pt;}
.x60_c00033{left:30.720000pt;}
.x57_c00033{left:31.824000pt;}
.x4a_c00033{left:33.120000pt;}
.x40_c00033{left:34.182667pt;}
.x39_c00033{left:35.280000pt;}
.x1c_c00033{left:36.240000pt;}
.x2_c00033{left:37.680000pt;}
.x5e_c00033{left:43.680000pt;}
.x17_c00033{left:44.880000pt;}
.x7b_c00033{left:47.760000pt;}
.x4b_c00033{left:48.960000pt;}
.x46_c00033{left:51.360000pt;}
.x1d_c00033{left:52.320000pt;}
.x62_c00033{left:55.680000pt;}
.x23_c00033{left:57.600000pt;}
.x7_c00033{left:58.800000pt;}
.x6b_c00033{left:60.480000pt;}
.x18_c00033{left:62.880000pt;}
.x1e_c00033{left:67.440000pt;}
.x8_c00033{left:70.080000pt;}
.x69_c00033{left:72.000000pt;}
.x31_c00033{left:72.960000pt;}
.x58_c00033{left:75.534667pt;}
.x71_c00033{left:79.200000pt;}
.x32_c00033{left:81.120000pt;}
.x5f_c00033{left:82.080000pt;}
.x10_c00033{left:83.520000pt;}
.x51_c00033{left:84.720000pt;}
.x34_c00033{left:85.680000pt;}
.x28_c00033{left:87.600000pt;}
.x44_c00033{left:88.560000pt;}
.x47_c00033{left:90.240000pt;}
.x9_c00033{left:92.400000pt;}
.x7f_c00033{left:93.840000pt;}
.x72_c00033{left:96.480000pt;}
.x11_c00033{left:98.880000pt;}
.x24_c00033{left:102.480000pt;}
.x3b_c00033{left:103.920000pt;}
.x29_c00033{left:105.600000pt;}
.x4c_c00033{left:108.000000pt;}
.x59_c00033{left:110.784000pt;}
.x35_c00033{left:112.560000pt;}
.x7c_c00033{left:114.960000pt;}
.x3_c00033{left:119.760000pt;}
.x63_c00033{left:121.440000pt;}
.x5a_c00033{left:125.898667pt;}
.x4d_c00033{left:129.360000pt;}
.x6c_c00033{left:130.560000pt;}
.x4_c00033{left:132.240000pt;}
.x1f_c00033{left:133.680000pt;}
.x80_c00033{left:135.600000pt;}
.x12_c00033{left:136.800000pt;}
.x3c_c00033{left:143.280000pt;}
.x33_c00033{left:146.160000pt;}
.xa_c00033{left:147.840000pt;}
.x13_c00033{left:149.520000pt;}
.x52_c00033{left:150.480000pt;}
.x20_c00033{left:152.160000pt;}
.x25_c00033{left:153.600000pt;}
.x66_c00033{left:156.240000pt;}
.x1_c00033{left:158.640000pt;}
.x64_c00033{left:162.480000pt;}
.x41_c00033{left:164.184000pt;}
.x7d_c00033{left:166.560000pt;}
.x19_c00033{left:168.000000pt;}
.xb_c00033{left:169.680000pt;}
.x76_c00033{left:171.120000pt;}
.x6d_c00033{left:172.080000pt;}
.x53_c00033{left:173.760000pt;}
.x1a_c00033{left:177.840000pt;}
.x56_c00033{left:178.800000pt;}
.x3d_c00033{left:180.960000pt;}
.x3a_c00033{left:182.400000pt;}
.x2a_c00033{left:183.600000pt;}
.xc_c00033{left:185.040000pt;}
.x48_c00033{left:187.920000pt;}
.x73_c00033{left:191.280000pt;}
.x3e_c00033{left:193.440000pt;}
.x54_c00033{left:198.720000pt;}
.x81_c00033{left:200.880000pt;}
.x5b_c00033{left:202.118667pt;}
.x4e_c00033{left:203.760000pt;}
.x26_c00033{left:204.720000pt;}
.x42_c00033{left:210.252000pt;}
.x6e_c00033{left:211.440000pt;}
.x5c_c00033{left:213.908000pt;}
.x36_c00033{left:215.280000pt;}
.x45_c00033{left:217.440000pt;}
.x1b_c00033{left:220.560000pt;}
.x14_c00033{left:221.520000pt;}
.x5_c00033{left:222.720000pt;}
.x2b_c00033{left:226.080000pt;}
.x79_c00033{left:229.200000pt;}
.x4f_c00033{left:232.080000pt;}
.x82_c00033{left:233.040000pt;}
.x6a_c00033{left:234.720000pt;}
.x67_c00033{left:236.880000pt;}
.x15_c00033{left:240.480000pt;}
.x2c_c00033{left:241.680000pt;}
.x37_c00033{left:242.640000pt;}
.x6_c00033{left:243.600000pt;}
.xd_c00033{left:244.560000pt;}
.x21_c00033{left:246.480000pt;}
.x7e_c00033{left:248.160000pt;}
.x77_c00033{left:251.280000pt;}
.x6f_c00033{left:252.240000pt;}
.xe_c00033{left:255.360000pt;}
.x38_c00033{left:260.160000pt;}
.x65_c00033{left:261.360000pt;}
.x3f_c00033{left:262.560000pt;}
.x27_c00033{left:264.720000pt;}
.x74_c00033{left:265.680000pt;}
.x50_c00033{left:268.320000pt;}
.x43_c00033{left:269.529333pt;}
.x61_c00033{left:271.440000pt;}
.x22_c00033{left:272.640000pt;}
.x7a_c00033{left:274.800000pt;}
.x2d_c00033{left:277.440000pt;}
.xf_c00033{left:278.880000pt;}
.x16_c00033{left:280.800000pt;}
.x49_c00033{left:282.960000pt;}
.x5d_c00033{left:284.412000pt;}
.x55_c00033{left:289.680000pt;}
.x2f_c00033{left:307.920000pt;}
.x2e_c00033{left:308.880000pt;}
.x30_c00033{left:310.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00034 {
    display:none;
  }
  .loading-indicator_c00034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00034 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00034 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00034" -> "#page-container .classname_c00034")
 */
.pf_c00034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00034 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00034 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00034 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00034 {overflow:visible;}
  }
}
.c_c00034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00034 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00034:after { /* webkit #35443 */
  content: '';
}
.t_c00034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00034 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00034 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00034 { /* info for Javascript */
  display:none;
}
.l_c00034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00034:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00034 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00034.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00034;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.062749,0.003647,-0.014505,0.249579,0,0);-ms-transform:matrix(0.062749,0.003647,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.062749,0.003647,-0.014505,0.249579,0,0);}
.m6d_c00034{transform:matrix(0.107597,0.004093,-0.009503,0.249819,0,0);-ms-transform:matrix(0.107597,0.004093,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.107597,0.004093,-0.009503,0.249819,0,0);}
.md2_c00034{transform:matrix(0.117451,0.005055,-0.010751,0.249769,0,0);-ms-transform:matrix(0.117451,0.005055,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.117451,0.005055,-0.010751,0.249769,0,0);}
.me9_c00034{transform:matrix(0.121767,0.005241,-0.010751,0.249769,0,0);-ms-transform:matrix(0.121767,0.005241,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.121767,0.005241,-0.010751,0.249769,0,0);}
.m5e_c00034{transform:matrix(0.132124,0.003832,-0.007247,0.249895,0,0);-ms-transform:matrix(0.132124,0.003832,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.132124,0.003832,-0.007247,0.249895,0,0);}
.mad_c00034{transform:matrix(0.140999,0.006069,-0.010751,0.249769,0,0);-ms-transform:matrix(0.140999,0.006069,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.140999,0.006069,-0.010751,0.249769,0,0);}
.m46_c00034{transform:matrix(0.147238,0.004270,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147238,0.004270,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147238,0.004270,-0.007247,0.249895,0,0);}
.m61_c00034{transform:matrix(0.147283,0.004271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147283,0.004271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147283,0.004271,-0.007247,0.249895,0,0);}
.m41_c00034{transform:matrix(0.147888,0.004289,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147888,0.004289,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147888,0.004289,-0.007247,0.249895,0,0);}
.med_c00034{transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);}
.me7_c00034{transform:matrix(0.147983,0.006370,-0.010751,0.249769,0,0);-ms-transform:matrix(0.147983,0.006370,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.147983,0.006370,-0.010751,0.249769,0,0);}
.m8b_c00034{transform:matrix(0.148088,0.006819,-0.011499,0.249735,0,0);-ms-transform:matrix(0.148088,0.006819,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.148088,0.006819,-0.011499,0.249735,0,0);}
.m29_c00034{transform:matrix(0.150872,0.004375,-0.007247,0.249895,0,0);-ms-transform:matrix(0.150872,0.004375,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.150872,0.004375,-0.007247,0.249895,0,0);}
.m50_c00034{transform:matrix(0.151556,0.004395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.151556,0.004395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.151556,0.004395,-0.007247,0.249895,0,0);}
.m3c_c00034{transform:matrix(0.152601,0.004425,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152601,0.004425,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152601,0.004425,-0.007247,0.249895,0,0);}
.m30_c00034{transform:matrix(0.152831,0.004432,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152831,0.004432,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152831,0.004432,-0.007247,0.249895,0,0);}
.m8f_c00034{transform:matrix(0.153372,0.007062,-0.011499,0.249735,0,0);-ms-transform:matrix(0.153372,0.007062,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.153372,0.007062,-0.011499,0.249735,0,0);}
.m20_c00034{transform:matrix(0.154580,0.004483,-0.007247,0.249895,0,0);-ms-transform:matrix(0.154580,0.004483,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.154580,0.004483,-0.007247,0.249895,0,0);}
.m2f_c00034{transform:matrix(0.155635,0.004513,-0.007247,0.249895,0,0);-ms-transform:matrix(0.155635,0.004513,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.155635,0.004513,-0.007247,0.249895,0,0);}
.m7b_c00034{transform:matrix(0.155872,0.005929,-0.009503,0.249819,0,0);-ms-transform:matrix(0.155872,0.005929,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.155872,0.005929,-0.009503,0.249819,0,0);}
.m22_c00034{transform:matrix(0.157939,0.004580,-0.007247,0.249895,0,0);-ms-transform:matrix(0.157939,0.004580,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.157939,0.004580,-0.007247,0.249895,0,0);}
.m92_c00034{transform:matrix(0.158073,0.007279,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158073,0.007279,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158073,0.007279,-0.011499,0.249735,0,0);}
.mb9_c00034{transform:matrix(0.159208,0.006853,-0.010751,0.249769,0,0);-ms-transform:matrix(0.159208,0.006853,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.159208,0.006853,-0.010751,0.249769,0,0);}
.m10_c00034{transform:matrix(0.159253,0.004618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159253,0.004618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159253,0.004618,-0.007247,0.249895,0,0);}
.mf_c00034{transform:matrix(0.161717,0.004690,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161717,0.004690,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161717,0.004690,-0.007247,0.249895,0,0);}
.m5c_c00034{transform:matrix(0.162517,0.004713,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162517,0.004713,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162517,0.004713,-0.007247,0.249895,0,0);}
.m4e_c00034{transform:matrix(0.165246,0.004792,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165246,0.004792,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165246,0.004792,-0.007247,0.249895,0,0);}
.mb5_c00034{transform:matrix(0.165367,0.007118,-0.010751,0.249769,0,0);-ms-transform:matrix(0.165367,0.007118,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.165367,0.007118,-0.010751,0.249769,0,0);}
.m98_c00034{transform:matrix(0.166064,0.007647,-0.011499,0.249735,0,0);-ms-transform:matrix(0.166064,0.007647,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.166064,0.007647,-0.011499,0.249735,0,0);}
.mb8_c00034{transform:matrix(0.166511,0.007167,-0.010751,0.249769,0,0);-ms-transform:matrix(0.166511,0.007167,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.166511,0.007167,-0.010751,0.249769,0,0);}
.m49_c00034{transform:matrix(0.169314,0.004910,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169314,0.004910,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169314,0.004910,-0.007247,0.249895,0,0);}
.m25_c00034{transform:matrix(0.169414,0.004913,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169414,0.004913,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169414,0.004913,-0.007247,0.249895,0,0);}
.maa_c00034{transform:matrix(0.169443,0.007293,-0.010751,0.249769,0,0);-ms-transform:matrix(0.169443,0.007293,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.169443,0.007293,-0.010751,0.249769,0,0);}
.me2_c00034{transform:matrix(0.171261,0.007372,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171261,0.007372,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171261,0.007372,-0.010751,0.249769,0,0);}
.m40_c00034{transform:matrix(0.172567,0.005004,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172567,0.005004,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172567,0.005004,-0.007247,0.249895,0,0);}
.md_c00034{transform:matrix(0.172947,0.005015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172947,0.005015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172947,0.005015,-0.007247,0.249895,0,0);}
.m2a_c00034{transform:matrix(0.173292,0.005025,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173292,0.005025,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173292,0.005025,-0.007247,0.249895,0,0);}
.m2d_c00034{transform:matrix(0.173372,0.005028,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173372,0.005028,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173372,0.005028,-0.007247,0.249895,0,0);}
.m1a_c00034{transform:matrix(0.174727,0.005067,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174727,0.005067,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174727,0.005067,-0.007247,0.249895,0,0);}
.me8_c00034{transform:matrix(0.174968,0.007531,-0.010751,0.249769,0,0);-ms-transform:matrix(0.174968,0.007531,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.174968,0.007531,-0.010751,0.249769,0,0);}
.md8_c00034{transform:matrix(0.175288,0.007545,-0.010751,0.249769,0,0);-ms-transform:matrix(0.175288,0.007545,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.175288,0.007545,-0.010751,0.249769,0,0);}
.me3_c00034{transform:matrix(0.175682,0.007562,-0.010751,0.249769,0,0);-ms-transform:matrix(0.175682,0.007562,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.175682,0.007562,-0.010751,0.249769,0,0);}
.mb1_c00034{transform:matrix(0.175847,0.007569,-0.010751,0.249769,0,0);-ms-transform:matrix(0.175847,0.007569,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.175847,0.007569,-0.010751,0.249769,0,0);}
.ma5_c00034{transform:matrix(0.176918,0.008146,-0.011499,0.249735,0,0);-ms-transform:matrix(0.176918,0.008146,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.176918,0.008146,-0.011499,0.249735,0,0);}
.m79_c00034{transform:matrix(0.177167,0.006739,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177167,0.006739,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177167,0.006739,-0.009503,0.249819,0,0);}
.m18_c00034{transform:matrix(0.177290,0.005141,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177290,0.005141,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177290,0.005141,-0.007247,0.249895,0,0);}
.mbd_c00034{transform:matrix(0.177511,0.007641,-0.010751,0.249769,0,0);-ms-transform:matrix(0.177511,0.007641,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.177511,0.007641,-0.010751,0.249769,0,0);}
.mcf_c00034{transform:matrix(0.178035,0.007663,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178035,0.007663,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178035,0.007663,-0.010751,0.249769,0,0);}
.m9b_c00034{transform:matrix(0.178191,0.008205,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178191,0.008205,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178191,0.008205,-0.011499,0.249735,0,0);}
.mb4_c00034{transform:matrix(0.178245,0.007672,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178245,0.007672,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178245,0.007672,-0.010751,0.249769,0,0);}
.m31_c00034{transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);}
.m80_c00034{transform:matrix(0.178626,0.008225,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178626,0.008225,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178626,0.008225,-0.011499,0.249735,0,0);}
.m53_c00034{transform:matrix(0.179185,0.005196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179185,0.005196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179185,0.005196,-0.007247,0.249895,0,0);}
.m3e_c00034{transform:matrix(0.179265,0.005199,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179265,0.005199,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179265,0.005199,-0.007247,0.249895,0,0);}
.m90_c00034{transform:matrix(0.179425,0.008262,-0.011499,0.249735,0,0);-ms-transform:matrix(0.179425,0.008262,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.179425,0.008262,-0.011499,0.249735,0,0);}
.m57_c00034{transform:matrix(0.180104,0.005223,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180104,0.005223,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180104,0.005223,-0.007247,0.249895,0,0);}
.md9_c00034{transform:matrix(0.180128,0.007753,-0.010751,0.249769,0,0);-ms-transform:matrix(0.180128,0.007753,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.180128,0.007753,-0.010751,0.249769,0,0);}
.mca_c00034{transform:matrix(0.181067,0.007794,-0.010751,0.249769,0,0);-ms-transform:matrix(0.181067,0.007794,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.181067,0.007794,-0.010751,0.249769,0,0);}
.m85_c00034{transform:matrix(0.181593,0.008362,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181593,0.008362,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181593,0.008362,-0.011499,0.249735,0,0);}
.m3b_c00034{transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);}
.m8d_c00034{transform:matrix(0.181837,0.008373,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181837,0.008373,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181837,0.008373,-0.011499,0.249735,0,0);}
.mc9_c00034{transform:matrix(0.182151,0.007840,-0.010751,0.249769,0,0);-ms-transform:matrix(0.182151,0.007840,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.182151,0.007840,-0.010751,0.249769,0,0);}
.mcc_c00034{transform:matrix(0.182196,0.007842,-0.010751,0.249769,0,0);-ms-transform:matrix(0.182196,0.007842,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.182196,0.007842,-0.010751,0.249769,0,0);}
.m37_c00034{transform:matrix(0.182638,0.005297,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182638,0.005297,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182638,0.005297,-0.007247,0.249895,0,0);}
.m8e_c00034{transform:matrix(0.182906,0.008422,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182906,0.008422,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182906,0.008422,-0.011499,0.249735,0,0);}
.m47_c00034{transform:matrix(0.183888,0.005333,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183888,0.005333,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183888,0.005333,-0.007247,0.249895,0,0);}
.ma2_c00034{transform:matrix(0.184584,0.008499,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184584,0.008499,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184584,0.008499,-0.011499,0.249735,0,0);}
.m4d_c00034{transform:matrix(0.184957,0.005364,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184957,0.005364,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184957,0.005364,-0.007247,0.249895,0,0);}
.m4c_c00034{transform:matrix(0.185002,0.005365,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185002,0.005365,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185002,0.005365,-0.007247,0.249895,0,0);}
.mb0_c00034{transform:matrix(0.185373,0.007979,-0.010751,0.249769,0,0);-ms-transform:matrix(0.185373,0.007979,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.185373,0.007979,-0.010751,0.249769,0,0);}
.m51_c00034{transform:matrix(0.185442,0.005378,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185442,0.005378,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185442,0.005378,-0.007247,0.249895,0,0);}
.m99_c00034{transform:matrix(0.186388,0.008582,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186388,0.008582,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186388,0.008582,-0.011499,0.249735,0,0);}
.m94_c00034{transform:matrix(0.186442,0.008585,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186442,0.008585,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186442,0.008585,-0.011499,0.249735,0,0);}
.m9a_c00034{transform:matrix(0.186627,0.008593,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186627,0.008593,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186627,0.008593,-0.011499,0.249735,0,0);}
.m26_c00034{transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);}
.mce_c00034{transform:matrix(0.186862,0.008043,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186862,0.008043,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186862,0.008043,-0.010751,0.249769,0,0);}
.m4a_c00034{transform:matrix(0.186911,0.005420,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186911,0.005420,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186911,0.005420,-0.007247,0.249895,0,0);}
.mea_c00034{transform:matrix(0.187072,0.008052,-0.010751,0.249769,0,0);-ms-transform:matrix(0.187072,0.008052,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.187072,0.008052,-0.010751,0.249769,0,0);}
.m81_c00034{transform:matrix(0.187327,0.008626,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187327,0.008626,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187327,0.008626,-0.011499,0.249735,0,0);}
.m39_c00034{transform:matrix(0.187876,0.005448,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187876,0.005448,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187876,0.005448,-0.007247,0.249895,0,0);}
.me_c00034{transform:matrix(0.188151,0.005456,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188151,0.005456,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188151,0.005456,-0.007247,0.249895,0,0);}
.m21_c00034{transform:matrix(0.188801,0.005475,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188801,0.005475,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188801,0.005475,-0.007247,0.249895,0,0);}
.mbb_c00034{transform:matrix(0.188850,0.008129,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188850,0.008129,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188850,0.008129,-0.010751,0.249769,0,0);}
.mc7_c00034{transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);}
.m3a_c00034{transform:matrix(0.189006,0.005481,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189006,0.005481,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189006,0.005481,-0.007247,0.249895,0,0);}
.maf_c00034{transform:matrix(0.189110,0.008140,-0.010751,0.249769,0,0);-ms-transform:matrix(0.189110,0.008140,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.189110,0.008140,-0.010751,0.249769,0,0);}
.m35_c00034{transform:matrix(0.189110,0.005484,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189110,0.005484,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189110,0.005484,-0.007247,0.249895,0,0);}
.m14_c00034{transform:matrix(0.189365,0.005492,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189365,0.005492,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189365,0.005492,-0.007247,0.249895,0,0);}
.m4f_c00034{transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);}
.mb3_c00034{transform:matrix(0.189719,0.008166,-0.010751,0.249769,0,0);-ms-transform:matrix(0.189719,0.008166,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.189719,0.008166,-0.010751,0.249769,0,0);}
.m91_c00034{transform:matrix(0.190019,0.008750,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190019,0.008750,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190019,0.008750,-0.011499,0.249735,0,0);}
.ma_c00034{transform:matrix(0.190125,0.005514,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190125,0.005514,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190125,0.005514,-0.007247,0.249895,0,0);}
.m7_c00034{transform:matrix(0.190395,0.005521,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190395,0.005521,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190395,0.005521,-0.007247,0.249895,0,0);}
.m4b_c00034{transform:matrix(0.190400,0.005522,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190400,0.005522,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190400,0.005522,-0.007247,0.249895,0,0);}
.ma1_c00034{transform:matrix(0.191602,0.008823,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191602,0.008823,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191602,0.008823,-0.011499,0.249735,0,0);}
.mc6_c00034{transform:matrix(0.191917,0.008261,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191917,0.008261,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191917,0.008261,-0.010751,0.249769,0,0);}
.mae_c00034{transform:matrix(0.192047,0.008266,-0.010751,0.249769,0,0);-ms-transform:matrix(0.192047,0.008266,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.192047,0.008266,-0.010751,0.249769,0,0);}
.m42_c00034{transform:matrix(0.192369,0.005579,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192369,0.005579,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192369,0.005579,-0.007247,0.249895,0,0);}
.mb7_c00034{transform:matrix(0.192836,0.008300,-0.010751,0.249769,0,0);-ms-transform:matrix(0.192836,0.008300,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.192836,0.008300,-0.010751,0.249769,0,0);}
.m69_c00034{transform:matrix(0.192960,0.007340,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192960,0.007340,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192960,0.007340,-0.009503,0.249819,0,0);}
.m93_c00034{transform:matrix(0.193225,0.008897,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193225,0.008897,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193225,0.008897,-0.011499,0.249735,0,0);}
.m88_c00034{transform:matrix(0.193275,0.008900,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193275,0.008900,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193275,0.008900,-0.011499,0.249735,0,0);}
.me1_c00034{transform:matrix(0.193426,0.008326,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193426,0.008326,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193426,0.008326,-0.010751,0.249769,0,0);}
.m84_c00034{transform:matrix(0.193670,0.008918,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193670,0.008918,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193670,0.008918,-0.011499,0.249735,0,0);}
.m24_c00034{transform:matrix(0.193704,0.005617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193704,0.005617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193704,0.005617,-0.007247,0.249895,0,0);}
.m77_c00034{transform:matrix(0.193905,0.007376,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193905,0.007376,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193905,0.007376,-0.009503,0.249819,0,0);}
.md7_c00034{transform:matrix(0.194485,0.008371,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194485,0.008371,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194485,0.008371,-0.010751,0.249769,0,0);}
.m3f_c00034{transform:matrix(0.194558,0.005642,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194558,0.005642,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194558,0.005642,-0.007247,0.249895,0,0);}
.me5_c00034{transform:matrix(0.194630,0.008377,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194630,0.008377,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194630,0.008377,-0.010751,0.249769,0,0);}
.m74_c00034{transform:matrix(0.194729,0.007407,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194729,0.007407,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194729,0.007407,-0.009503,0.249819,0,0);}
.m1c_c00034{transform:matrix(0.194878,0.005651,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194878,0.005651,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194878,0.005651,-0.007247,0.249895,0,0);}
.mb2_c00034{transform:matrix(0.195524,0.008416,-0.010751,0.249769,0,0);-ms-transform:matrix(0.195524,0.008416,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.195524,0.008416,-0.010751,0.249769,0,0);}
.m16_c00034{transform:matrix(0.195558,0.005671,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195558,0.005671,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195558,0.005671,-0.007247,0.249895,0,0);}
.mcd_c00034{transform:matrix(0.195774,0.008427,-0.010751,0.249769,0,0);-ms-transform:matrix(0.195774,0.008427,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.195774,0.008427,-0.010751,0.249769,0,0);}
.md5_c00034{transform:matrix(0.196343,0.008451,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196343,0.008451,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196343,0.008451,-0.010751,0.249769,0,0);}
.m54_c00034{transform:matrix(0.196497,0.005698,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196497,0.005698,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196497,0.005698,-0.007247,0.249895,0,0);}
.m44_c00034{transform:matrix(0.196757,0.005706,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196757,0.005706,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196757,0.005706,-0.007247,0.249895,0,0);}
.m5f_c00034{transform:matrix(0.196787,0.005707,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196787,0.005707,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196787,0.005707,-0.007247,0.249895,0,0);}
.m76_c00034{transform:matrix(0.197018,0.007494,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197018,0.007494,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197018,0.007494,-0.009503,0.249819,0,0);}
.m2c_c00034{transform:matrix(0.197152,0.005717,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197152,0.005717,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197152,0.005717,-0.007247,0.249895,0,0);}
.m28_c00034{transform:matrix(0.197207,0.005719,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197207,0.005719,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197207,0.005719,-0.007247,0.249895,0,0);}
.m7e_c00034{transform:matrix(0.197426,0.009091,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197426,0.009091,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197426,0.009091,-0.011499,0.249735,0,0);}
.m7a_c00034{transform:matrix(0.197552,0.007514,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197552,0.007514,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197552,0.007514,-0.009503,0.249819,0,0);}
.m62_c00034{transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);}
.m97_c00034{transform:matrix(0.199409,0.009182,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199409,0.009182,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199409,0.009182,-0.011499,0.249735,0,0);}
.m8c_c00034{transform:matrix(0.199988,0.009209,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199988,0.009209,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199988,0.009209,-0.011499,0.249735,0,0);}
.m7d_c00034{transform:matrix(0.200010,0.007608,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200010,0.007608,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200010,0.007608,-0.009503,0.249819,0,0);}
.m4_c00034{transform:matrix(0.200371,0.005811,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200371,0.005811,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200371,0.005811,-0.007247,0.249895,0,0);}
.m52_c00034{transform:matrix(0.200526,0.005815,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200526,0.005815,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200526,0.005815,-0.007247,0.249895,0,0);}
.mab_c00034{transform:matrix(0.200934,0.008649,-0.010751,0.249769,0,0);-ms-transform:matrix(0.200934,0.008649,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.200934,0.008649,-0.010751,0.249769,0,0);}
.m60_c00034{transform:matrix(0.201005,0.005829,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201005,0.005829,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201005,0.005829,-0.007247,0.249895,0,0);}
.m43_c00034{transform:matrix(0.201650,0.005848,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201650,0.005848,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201650,0.005848,-0.007247,0.249895,0,0);}
.m48_c00034{transform:matrix(0.201675,0.005849,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201675,0.005849,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201675,0.005849,-0.007247,0.249895,0,0);}
.m3_c00034{transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201785,0.005852,-0.007247,0.249895,0,0);}
.m3d_c00034{transform:matrix(0.201815,0.005853,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201815,0.005853,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201815,0.005853,-0.007247,0.249895,0,0);}
.m2b_c00034{transform:matrix(0.201920,0.005856,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201920,0.005856,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201920,0.005856,-0.007247,0.249895,0,0);}
.mc4_c00034{transform:matrix(0.202063,0.008697,-0.010751,0.249769,0,0);-ms-transform:matrix(0.202063,0.008697,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.202063,0.008697,-0.010751,0.249769,0,0);}
.md4_c00034{transform:matrix(0.202113,0.008700,-0.010751,0.249769,0,0);-ms-transform:matrix(0.202113,0.008700,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.202113,0.008700,-0.010751,0.249769,0,0);}
.m73_c00034{transform:matrix(0.202234,0.007693,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202234,0.007693,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202234,0.007693,-0.009503,0.249819,0,0);}
.m11_c00034{transform:matrix(0.202500,0.005872,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202500,0.005872,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202500,0.005872,-0.007247,0.249895,0,0);}
.mbc_c00034{transform:matrix(0.202642,0.008722,-0.010751,0.249769,0,0);-ms-transform:matrix(0.202642,0.008722,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.202642,0.008722,-0.010751,0.249769,0,0);}
.m6_c00034{transform:matrix(0.203389,0.005898,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203389,0.005898,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203389,0.005898,-0.007247,0.249895,0,0);}
.mdf_c00034{transform:matrix(0.203542,0.008761,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203542,0.008761,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203542,0.008761,-0.010751,0.249769,0,0);}
.m5d_c00034{transform:matrix(0.203599,0.005904,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203599,0.005904,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203599,0.005904,-0.007247,0.249895,0,0);}
.m9e_c00034{transform:matrix(0.203999,0.009393,-0.011499,0.249735,0,0);-ms-transform:matrix(0.203999,0.009393,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.203999,0.009393,-0.011499,0.249735,0,0);}
.m95_c00034{transform:matrix(0.204453,0.009414,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204453,0.009414,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204453,0.009414,-0.011499,0.249735,0,0);}
.mc2_c00034{transform:matrix(0.204466,0.008801,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204466,0.008801,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204466,0.008801,-0.010751,0.249769,0,0);}
.m96_c00034{transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204963,0.009438,-0.011499,0.249735,0,0);}
.m6b_c00034{transform:matrix(0.205002,0.007798,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205002,0.007798,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205002,0.007798,-0.009503,0.249819,0,0);}
.mc8_c00034{transform:matrix(0.205205,0.008833,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205205,0.008833,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205205,0.008833,-0.010751,0.249769,0,0);}
.mc0_c00034{transform:matrix(0.205260,0.008835,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205260,0.008835,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205260,0.008835,-0.010751,0.249769,0,0);}
.m38_c00034{transform:matrix(0.206023,0.005975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206023,0.005975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206023,0.005975,-0.007247,0.249895,0,0);}
.mb6_c00034{transform:matrix(0.206559,0.008891,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206559,0.008891,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206559,0.008891,-0.010751,0.249769,0,0);}
.md3_c00034{transform:matrix(0.206814,0.008902,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206814,0.008902,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206814,0.008902,-0.010751,0.249769,0,0);}
.md0_c00034{transform:matrix(0.206948,0.008908,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206948,0.008908,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206948,0.008908,-0.010751,0.249769,0,0);}
.ma7_c00034{transform:matrix(0.206978,0.008909,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206978,0.008909,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206978,0.008909,-0.010751,0.249769,0,0);}
.m1_c00034{transform:matrix(0.207250,0.012045,-0.014505,0.249579,0,0);-ms-transform:matrix(0.207250,0.012045,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.207250,0.012045,-0.014505,0.249579,0,0);}
.m33_c00034{transform:matrix(0.207663,0.006022,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207663,0.006022,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207663,0.006022,-0.007247,0.249895,0,0);}
.m23_c00034{transform:matrix(0.208128,0.006036,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208128,0.006036,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208128,0.006036,-0.007247,0.249895,0,0);}
.m1e_c00034{transform:matrix(0.208317,0.006041,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208317,0.006041,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208317,0.006041,-0.007247,0.249895,0,0);}
.m78_c00034{transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);}
.m56_c00034{transform:matrix(0.208672,0.006051,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208672,0.006051,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208672,0.006051,-0.007247,0.249895,0,0);}
.m1b_c00034{transform:matrix(0.208902,0.006058,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208902,0.006058,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208902,0.006058,-0.007247,0.249895,0,0);}
.ma0_c00034{transform:matrix(0.209463,0.009645,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209463,0.009645,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209463,0.009645,-0.011499,0.249735,0,0);}
.mc1_c00034{transform:matrix(0.209721,0.009027,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209721,0.009027,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209721,0.009027,-0.010751,0.249769,0,0);}
.mac_c00034{transform:matrix(0.209906,0.009035,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209906,0.009035,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209906,0.009035,-0.010751,0.249769,0,0);}
.me4_c00034{transform:matrix(0.210260,0.009050,-0.010751,0.249769,0,0);-ms-transform:matrix(0.210260,0.009050,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.210260,0.009050,-0.010751,0.249769,0,0);}
.m34_c00034{transform:matrix(0.212186,0.006153,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212186,0.006153,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212186,0.006153,-0.007247,0.249895,0,0);}
.mc3_c00034{transform:matrix(0.212973,0.009167,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212973,0.009167,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212973,0.009167,-0.010751,0.249769,0,0);}
.ma3_c00034{transform:matrix(0.213324,0.009823,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213324,0.009823,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213324,0.009823,-0.011499,0.249735,0,0);}
.m17_c00034{transform:matrix(0.214790,0.006229,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214790,0.006229,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214790,0.006229,-0.007247,0.249895,0,0);}
.m58_c00034{transform:matrix(0.215230,0.006242,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215230,0.006242,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215230,0.006242,-0.007247,0.249895,0,0);}
.m55_c00034{transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);}
.m7f_c00034{transform:matrix(0.216770,0.009981,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216770,0.009981,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216770,0.009981,-0.011499,0.249735,0,0);}
.m2_c00034{transform:matrix(0.218438,0.006335,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218438,0.006335,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218438,0.006335,-0.007247,0.249895,0,0);}
.md1_c00034{transform:matrix(0.218568,0.009408,-0.010751,0.249769,0,0);-ms-transform:matrix(0.218568,0.009408,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.218568,0.009408,-0.010751,0.249769,0,0);}
.m27_c00034{transform:matrix(0.219068,0.006353,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219068,0.006353,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219068,0.006353,-0.007247,0.249895,0,0);}
.m19_c00034{transform:matrix(0.219378,0.006362,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219378,0.006362,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219378,0.006362,-0.007247,0.249895,0,0);}
.m36_c00034{transform:matrix(0.219398,0.006363,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219398,0.006363,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219398,0.006363,-0.007247,0.249895,0,0);}
.mb_c00034{transform:matrix(0.219908,0.006377,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219908,0.006377,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219908,0.006377,-0.007247,0.249895,0,0);}
.mba_c00034{transform:matrix(0.219936,0.009467,-0.010751,0.249769,0,0);-ms-transform:matrix(0.219936,0.009467,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.219936,0.009467,-0.010751,0.249769,0,0);}
.md6_c00034{transform:matrix(0.220036,0.009471,-0.010751,0.249769,0,0);-ms-transform:matrix(0.220036,0.009471,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.220036,0.009471,-0.010751,0.249769,0,0);}
.ma8_c00034{transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);-ms-transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);}
.mcb_c00034{transform:matrix(0.221135,0.009518,-0.010751,0.249769,0,0);-ms-transform:matrix(0.221135,0.009518,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.221135,0.009518,-0.010751,0.249769,0,0);}
.m9f_c00034{transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);}
.m7c_c00034{transform:matrix(0.221830,0.008438,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221830,0.008438,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221830,0.008438,-0.009503,0.249819,0,0);}
.m2e_c00034{transform:matrix(0.223056,0.006469,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223056,0.006469,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223056,0.006469,-0.007247,0.249895,0,0);}
.m71_c00034{transform:matrix(0.223274,0.008493,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223274,0.008493,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223274,0.008493,-0.009503,0.249819,0,0);}
.ma4_c00034{transform:matrix(0.223403,0.010287,-0.011499,0.249735,0,0);-ms-transform:matrix(0.223403,0.010287,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.223403,0.010287,-0.011499,0.249735,0,0);}
.m1d_c00034{transform:matrix(0.223626,0.006485,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223626,0.006485,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223626,0.006485,-0.007247,0.249895,0,0);}
.m86_c00034{transform:matrix(0.224103,0.010319,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224103,0.010319,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224103,0.010319,-0.011499,0.249735,0,0);}
.m82_c00034{transform:matrix(0.224247,0.010326,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224247,0.010326,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224247,0.010326,-0.011499,0.249735,0,0);}
.mec_c00034{transform:matrix(0.225491,0.009706,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225491,0.009706,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225491,0.009706,-0.010751,0.249769,0,0);}
.m15_c00034{transform:matrix(0.227539,0.006599,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227539,0.006599,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227539,0.006599,-0.007247,0.249895,0,0);}
.m5a_c00034{transform:matrix(0.227589,0.006600,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227589,0.006600,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227589,0.006600,-0.007247,0.249895,0,0);}
.m63_c00034{transform:matrix(0.227964,0.006611,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227964,0.006611,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227964,0.006611,-0.007247,0.249895,0,0);}
.m87_c00034{transform:matrix(0.228633,0.010528,-0.011499,0.249735,0,0);-ms-transform:matrix(0.228633,0.010528,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.228633,0.010528,-0.011499,0.249735,0,0);}
.m13_c00034{transform:matrix(0.229898,0.006667,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229898,0.006667,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229898,0.006667,-0.007247,0.249895,0,0);}
.m67_c00034{transform:matrix(0.230233,0.006677,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230233,0.006677,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230233,0.006677,-0.007247,0.249895,0,0);}
.mdc_c00034{transform:matrix(0.231216,0.009952,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231216,0.009952,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231216,0.009952,-0.010751,0.249769,0,0);}
.ma6_c00034{transform:matrix(0.231286,0.009955,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231286,0.009955,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231286,0.009955,-0.010751,0.249769,0,0);}
.ma9_c00034{transform:matrix(0.232450,0.010005,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232450,0.010005,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232450,0.010005,-0.010751,0.249769,0,0);}
.m64_c00034{transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);}
.mc5_c00034{transform:matrix(0.233304,0.010042,-0.010751,0.249769,0,0);-ms-transform:matrix(0.233304,0.010042,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.233304,0.010042,-0.010751,0.249769,0,0);}
.m59_c00034{transform:matrix(0.233967,0.006785,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233967,0.006785,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233967,0.006785,-0.007247,0.249895,0,0);}
.m6f_c00034{transform:matrix(0.237074,0.009018,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237074,0.009018,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237074,0.009018,-0.009503,0.249819,0,0);}
.me6_c00034{transform:matrix(0.237685,0.010231,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237685,0.010231,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237685,0.010231,-0.010751,0.249769,0,0);}
.mda_c00034{transform:matrix(0.237715,0.010232,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237715,0.010232,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237715,0.010232,-0.010751,0.249769,0,0);}
.m1f_c00034{transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);}
.m32_c00034{transform:matrix(0.238970,0.006930,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238970,0.006930,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238970,0.006930,-0.007247,0.249895,0,0);}
.m72_c00034{transform:matrix(0.239757,0.009120,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239757,0.009120,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239757,0.009120,-0.009503,0.249819,0,0);}
.m5b_c00034{transform:matrix(0.239929,0.006958,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239929,0.006958,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239929,0.006958,-0.007247,0.249895,0,0);}
.mdb_c00034{transform:matrix(0.240492,0.010352,-0.010751,0.249769,0,0);-ms-transform:matrix(0.240492,0.010352,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.240492,0.010352,-0.010751,0.249769,0,0);}
.m75_c00034{transform:matrix(0.240971,0.009166,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240971,0.009166,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240971,0.009166,-0.009503,0.249819,0,0);}
.m9c_c00034{transform:matrix(0.241534,0.011122,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241534,0.011122,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241534,0.011122,-0.011499,0.249735,0,0);}
.m70_c00034{transform:matrix(0.242110,0.009209,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242110,0.009209,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242110,0.009209,-0.009503,0.249819,0,0);}
.m68_c00034{transform:matrix(0.249745,0.007243,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249745,0.007243,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249745,0.007243,-0.007247,0.249895,0,0);}
.m89_c00034{transform:matrix(0.250290,0.011525,-0.011499,0.249735,0,0);-ms-transform:matrix(0.250290,0.011525,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.250290,0.011525,-0.011499,0.249735,0,0);}
.m65_c00034{transform:matrix(0.253508,0.007352,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253508,0.007352,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253508,0.007352,-0.007247,0.249895,0,0);}
.meb_c00034{transform:matrix(0.254969,0.010975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.254969,0.010975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.254969,0.010975,-0.010751,0.249769,0,0);}
.m6e_c00034{transform:matrix(0.255835,0.009731,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255835,0.009731,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255835,0.009731,-0.009503,0.249819,0,0);}
.m66_c00034{transform:matrix(0.256152,0.007428,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256152,0.007428,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256152,0.007428,-0.007247,0.249895,0,0);}
.mde_c00034{transform:matrix(0.257352,0.011077,-0.010751,0.249769,0,0);-ms-transform:matrix(0.257352,0.011077,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.257352,0.011077,-0.010751,0.249769,0,0);}
.m83_c00034{transform:matrix(0.257357,0.011850,-0.011499,0.249735,0,0);-ms-transform:matrix(0.257357,0.011850,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.257357,0.011850,-0.011499,0.249735,0,0);}
.m6c_c00034{transform:matrix(0.258533,0.009834,-0.009503,0.249819,0,0);-ms-transform:matrix(0.258533,0.009834,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.258533,0.009834,-0.009503,0.249819,0,0);}
.m8a_c00034{transform:matrix(0.259695,0.011958,-0.011499,0.249735,0,0);-ms-transform:matrix(0.259695,0.011958,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.259695,0.011958,-0.011499,0.249735,0,0);}
.m9d_c00034{transform:matrix(0.260129,0.011978,-0.011499,0.249735,0,0);-ms-transform:matrix(0.260129,0.011978,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.260129,0.011978,-0.011499,0.249735,0,0);}
.m12_c00034{transform:matrix(0.263099,0.007630,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263099,0.007630,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263099,0.007630,-0.007247,0.249895,0,0);}
.m6a_c00034{transform:matrix(0.263869,0.010037,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263869,0.010037,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263869,0.010037,-0.009503,0.249819,0,0);}
.me0_c00034{transform:matrix(0.274536,0.011817,-0.010751,0.249769,0,0);-ms-transform:matrix(0.274536,0.011817,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.274536,0.011817,-0.010751,0.249769,0,0);}
.mdd_c00034{transform:matrix(0.275275,0.011849,-0.010751,0.249769,0,0);-ms-transform:matrix(0.275275,0.011849,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.275275,0.011849,-0.010751,0.249769,0,0);}
.mbe_c00034{transform:matrix(0.277123,0.011928,-0.010751,0.249769,0,0);-ms-transform:matrix(0.277123,0.011928,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.277123,0.011928,-0.010751,0.249769,0,0);}
.m9_c00034{transform:matrix(0.285220,0.008271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.285220,0.008271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.285220,0.008271,-0.007247,0.249895,0,0);}
.mc_c00034{transform:matrix(0.325708,0.009446,-0.007247,0.249895,0,0);-ms-transform:matrix(0.325708,0.009446,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.325708,0.009446,-0.007247,0.249895,0,0);}
.m45_c00034{transform:matrix(0.350243,0.010157,-0.007247,0.249895,0,0);-ms-transform:matrix(0.350243,0.010157,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.350243,0.010157,-0.007247,0.249895,0,0);}
.mbf_c00034{transform:matrix(0.357769,0.015399,-0.010751,0.249769,0,0);-ms-transform:matrix(0.357769,0.015399,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.357769,0.015399,-0.010751,0.249769,0,0);}
.m8_c00034{transform:matrix(0.413416,0.011989,-0.007247,0.249895,0,0);-ms-transform:matrix(0.413416,0.011989,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.413416,0.011989,-0.007247,0.249895,0,0);}
.m5_c00034{transform:matrix(0.811959,0.023547,-0.007247,0.249895,0,0);-ms-transform:matrix(0.811959,0.023547,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.811959,0.023547,-0.007247,0.249895,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:0.000000px;}
.fc0_c00034{color:transparent;}
.fs1b_c00034{font-size:22.050000px;}
.fs18_c00034{font-size:50.396220px;}
.fsb_c00034{font-size:51.435721px;}
.fsa_c00034{font-size:52.522072px;}
.fs9_c00034{font-size:57.774279px;}
.fsc_c00034{font-size:58.783681px;}
.fs16_c00034{font-size:58.795590px;}
.fse_c00034{font-size:58.803440px;}
.fs3_c00034{font-size:58.824720px;}
.fsd_c00034{font-size:59.833389px;}
.fs15_c00034{font-size:59.845511px;}
.fs12_c00034{font-size:60.895432px;}
.fsf_c00034{font-size:60.903563px;}
.fs1_c00034{font-size:60.925603px;}
.fs0_c00034{font-size:61.930421px;}
.fs11_c00034{font-size:61.953624px;}
.fs2_c00034{font-size:61.976045px;}
.fs17_c00034{font-size:62.995275px;}
.fs4_c00034{font-size:63.026486px;}
.fs14_c00034{font-size:64.045196px;}
.fs5_c00034{font-size:64.076927px;}
.fs19_c00034{font-size:65.095117px;}
.fs7_c00034{font-size:65.127369px;}
.fs8_c00034{font-size:67.228252px;}
.fs10_c00034{font-size:68.253993px;}
.fs6_c00034{font-size:70.379576px;}
.fs13_c00034{font-size:73.494487px;}
.fs1a_c00034{font-size:74.544409px;}
.y0_c00034{bottom:0.000000px;}
.yed_c00034{bottom:34.750720px;}
.yec_c00034{bottom:36.042606px;}
.yeb_c00034{bottom:40.249692px;}
.yea_c00034{bottom:40.941834px;}
.ye9_c00034{bottom:43.697229px;}
.ye8_c00034{bottom:46.732161px;}
.ye7_c00034{bottom:53.057116px;}
.ye6_c00034{bottom:54.480013px;}
.ye5_c00034{bottom:57.217953px;}
.ye4_c00034{bottom:60.112088px;}
.ye3_c00034{bottom:61.210984px;}
.ye2_c00034{bottom:64.020241px;}
.ye1_c00034{bottom:69.782074px;}
.ye0_c00034{bottom:71.662689px;}
.ydf_c00034{bottom:72.925306px;}
.yde_c00034{bottom:75.079911px;}
.ydd_c00034{bottom:76.070087px;}
.ydc_c00034{bottom:78.400493px;}
.ydb_c00034{bottom:80.757651px;}
.yda_c00034{bottom:84.526808px;}
.yd9_c00034{bottom:85.434065px;}
.yd8_c00034{bottom:87.812438px;}
.yd7_c00034{bottom:91.882130px;}
.yd6_c00034{bottom:94.712841px;}
.yd5_c00034{bottom:96.950024px;}
.yd4_c00034{bottom:101.100255px;}
.yd3_c00034{bottom:101.631863px;}
.yd2_c00034{bottom:104.761994px;}
.yd1_c00034{bottom:106.579794px;}
.yd0_c00034{bottom:107.565936px;}
.ycf_c00034{bottom:110.195837px;}
.yce_c00034{bottom:112.582749px;}
.ycd_c00034{bottom:114.783429px;}
.ycc_c00034{bottom:117.551858px;}
.ycb_c00034{bottom:118.404276px;}
.yca_c00034{bottom:121.077713px;}
.yc9_c00034{bottom:122.737583px;}
.yc8_c00034{bottom:123.820026px;}
.yc7_c00034{bottom:126.366624px;}
.yc6_c00034{bottom:127.866264px;}
.yc5_c00034{bottom:131.222522px;}
.yc4_c00034{bottom:132.067701px;}
.yc3_c00034{bottom:137.155922px;}
.yc2_c00034{bottom:140.012853px;}
.yc1_c00034{bottom:141.477410px;}
.yc0_c00034{bottom:142.127211px;}
.ybf_c00034{bottom:144.254226px;}
.ybe_c00034{bottom:145.261005px;}
.ybd_c00034{bottom:147.002876px;}
.ybc_c00034{bottom:149.604533px;}
.ybb_c00034{bottom:153.641402px;}
.yba_c00034{bottom:154.579941px;}
.yb9_c00034{bottom:156.646586px;}
.yb8_c00034{bottom:157.448901px;}
.yb7_c00034{bottom:159.319401px;}
.yb6_c00034{bottom:160.016323px;}
.yb5_c00034{bottom:162.255505px;}
.yb4_c00034{bottom:164.727533px;}
.yb3_c00034{bottom:169.807001px;}
.yb2_c00034{bottom:173.764395px;}
.yb1_c00034{bottom:175.227972px;}
.yb0_c00034{bottom:179.742638px;}
.yaf_c00034{bottom:181.201248px;}
.yae_c00034{bottom:182.002454px;}
.yad_c00034{bottom:187.383580px;}
.yac_c00034{bottom:189.399205px;}
.yab_c00034{bottom:190.705460px;}
.yaa_c00034{bottom:191.282928px;}
.ya9_c00034{bottom:195.232521px;}
.ya8_c00034{bottom:196.196731px;}
.ya7_c00034{bottom:198.735000px;}
.ya6_c00034{bottom:204.982060px;}
.ya5_c00034{bottom:205.564309px;}
.ya4_c00034{bottom:207.711208px;}
.ya3_c00034{bottom:209.004576px;}
.ya2_c00034{bottom:210.312867px;}
.ya1_c00034{bottom:212.693366px;}
.ya0_c00034{bottom:213.719955px;}
.y9f_c00034{bottom:216.284433px;}
.y9e_c00034{bottom:220.147107px;}
.y9d_c00034{bottom:222.394920px;}
.y9c_c00034{bottom:224.819994px;}
.y9b_c00034{bottom:225.690774px;}
.y9a_c00034{bottom:227.940381px;}
.y99_c00034{bottom:228.786873px;}
.y98_c00034{bottom:229.719132px;}
.y97_c00034{bottom:230.354622px;}
.y96_c00034{bottom:232.356243px;}
.y95_c00034{bottom:233.302578px;}
.y94_c00034{bottom:239.490708px;}
.y93_c00034{bottom:240.461748px;}
.y92_c00034{bottom:241.840944px;}
.y91_c00034{bottom:245.002820px;}
.y90_c00034{bottom:246.202260px;}
.y8f_c00034{bottom:247.166538px;}
.y8e_c00034{bottom:248.706051px;}
.y8d_c00034{bottom:249.414486px;}
.y8c_c00034{bottom:250.579239px;}
.y8b_c00034{bottom:256.769707px;}
.y8a_c00034{bottom:258.981732px;}
.y89_c00034{bottom:261.512615px;}
.y88_c00034{bottom:262.049453px;}
.y87_c00034{bottom:264.907699px;}
.y86_c00034{bottom:265.905456px;}
.y85_c00034{bottom:267.855133px;}
.y84_c00034{bottom:274.490655px;}
.y83_c00034{bottom:277.384860px;}
.y82_c00034{bottom:279.974637px;}
.y81_c00034{bottom:280.809330px;}
.y80_c00034{bottom:282.117018px;}
.y7f_c00034{bottom:284.875500px;}
.y7e_c00034{bottom:291.393150px;}
.y7d_c00034{bottom:295.492843px;}
.y7c_c00034{bottom:296.210244px;}
.y7b_c00034{bottom:298.496286px;}
.y7a_c00034{bottom:299.558311px;}
.y79_c00034{bottom:300.536902px;}
.y78_c00034{bottom:302.706481px;}
.y77_c00034{bottom:307.035915px;}
.y76_c00034{bottom:309.435243px;}
.y75_c00034{bottom:310.469037px;}
.y74_c00034{bottom:312.484013px;}
.y73_c00034{bottom:316.228663px;}
.y72_c00034{bottom:319.439284px;}
.y71_c00034{bottom:324.588405px;}
.y70_c00034{bottom:326.367147px;}
.y6f_c00034{bottom:328.774143px;}
.y6e_c00034{bottom:329.185512px;}
.y6d_c00034{bottom:331.342734px;}
.y6c_c00034{bottom:332.282493px;}
.y6b_c00034{bottom:334.316025px;}
.y6a_c00034{bottom:334.810500px;}
.y69_c00034{bottom:341.104402px;}
.y68_c00034{bottom:342.094627px;}
.y67_c00034{bottom:343.991682px;}
.y66_c00034{bottom:347.553870px;}
.y65_c00034{bottom:349.138848px;}
.y64_c00034{bottom:351.202759px;}
.y63_c00034{bottom:354.658933px;}
.y62_c00034{bottom:355.471440px;}
.y61_c00034{bottom:356.609262px;}
.y60_c00034{bottom:359.689845px;}
.y5f_c00034{bottom:360.546451px;}
.y5e_c00034{bottom:364.008301px;}
.y5d_c00034{bottom:367.678497px;}
.y5c_c00034{bottom:373.535389px;}
.y5b_c00034{bottom:376.057977px;}
.y5a_c00034{bottom:377.632990px;}
.y59_c00034{bottom:380.434068px;}
.y58_c00034{bottom:381.598197px;}
.y57_c00034{bottom:384.413518px;}
.y56_c00034{bottom:390.542994px;}
.y55_c00034{bottom:392.301202px;}
.y54_c00034{bottom:394.408969px;}
.y53_c00034{bottom:395.091885px;}
.y52_c00034{bottom:397.311082px;}
.y51_c00034{bottom:398.095990px;}
.y50_c00034{bottom:398.935461px;}
.y4f_c00034{bottom:399.633925px;}
.y4e_c00034{bottom:401.439955px;}
.y4d_c00034{bottom:406.124901px;}
.y4c_c00034{bottom:408.054240px;}
.y4b_c00034{bottom:409.959006px;}
.y4a_c00034{bottom:411.222652px;}
.y49_c00034{bottom:412.911544px;}
.y48_c00034{bottom:413.798874px;}
.y47_c00034{bottom:415.577251px;}
.y46_c00034{bottom:418.181764px;}
.y45_c00034{bottom:422.296626px;}
.yee_c00034{bottom:423.360000px;}
.y44_c00034{bottom:429.359398px;}
.y43_c00034{bottom:431.913912px;}
.y42_c00034{bottom:432.836962px;}
.y41_c00034{bottom:434.117742px;}
.y40_c00034{bottom:442.084212px;}
.y3f_c00034{bottom:442.872237px;}
.y3e_c00034{bottom:445.569388px;}
.y3d_c00034{bottom:446.263706px;}
.y3c_c00034{bottom:447.143263px;}
.y3b_c00034{bottom:448.599595px;}
.y3a_c00034{bottom:450.599364px;}
.y39_c00034{bottom:455.648893px;}
.y38_c00034{bottom:457.340457px;}
.y37_c00034{bottom:458.429253px;}
.y36_c00034{bottom:460.807311px;}
.y35_c00034{bottom:462.693186px;}
.y34_c00034{bottom:464.275687px;}
.y33_c00034{bottom:466.148906px;}
.y32_c00034{bottom:466.804714px;}
.y31_c00034{bottom:472.911754px;}
.y30_c00034{bottom:475.143106px;}
.y2f_c00034{bottom:475.954901px;}
.y2e_c00034{bottom:476.767956px;}
.y2d_c00034{bottom:479.754582px;}
.y2c_c00034{bottom:481.724317px;}
.y2b_c00034{bottom:483.884839px;}
.y2a_c00034{bottom:484.355575px;}
.y29_c00034{bottom:490.693876px;}
.y28_c00034{bottom:494.180765px;}
.y27_c00034{bottom:495.588207px;}
.y26_c00034{bottom:496.198663px;}
.y25_c00034{bottom:498.877800px;}
.y24_c00034{bottom:500.184486px;}
.y23_c00034{bottom:500.835524px;}
.y22_c00034{bottom:508.596069px;}
.y21_c00034{bottom:509.623386px;}
.y20_c00034{bottom:510.111545px;}
.y1f_c00034{bottom:512.214459px;}
.y1e_c00034{bottom:513.796571px;}
.y1d_c00034{bottom:515.828064px;}
.y1c_c00034{bottom:516.264114px;}
.y1b_c00034{bottom:517.314897px;}
.y1a_c00034{bottom:524.645093px;}
.y19_c00034{bottom:525.650970px;}
.y18_c00034{bottom:527.307490px;}
.y17_c00034{bottom:528.337789px;}
.y16_c00034{bottom:530.651194px;}
.y15_c00034{bottom:532.778229px;}
.y14_c00034{bottom:534.449429px;}
.y13_c00034{bottom:535.415205px;}
.y12_c00034{bottom:541.896828px;}
.y11_c00034{bottom:542.638861px;}
.y10_c00034{bottom:544.364053px;}
.yf_c00034{bottom:545.896968px;}
.ye_c00034{bottom:546.496245px;}
.yd_c00034{bottom:548.686896px;}
.yc_c00034{bottom:549.206400px;}
.yb_c00034{bottom:550.534749px;}
.ya_c00034{bottom:558.835218px;}
.y9_c00034{bottom:559.756505px;}
.y8_c00034{bottom:560.321395px;}
.y7_c00034{bottom:562.081492px;}
.y6_c00034{bottom:563.419640px;}
.y5_c00034{bottom:564.182673px;}
.y4_c00034{bottom:564.970458px;}
.y3_c00034{bottom:567.012000px;}
.y2_c00034{bottom:578.900472px;}
.y1_c00034{bottom:583.480500px;}
.h1d_c00034{height:22.050000px;}
.h1a_c00034{height:50.396220px;}
.hd_c00034{height:51.435721px;}
.hc_c00034{height:52.522072px;}
.hb_c00034{height:57.774279px;}
.he_c00034{height:58.783681px;}
.h18_c00034{height:58.795590px;}
.h10_c00034{height:58.803440px;}
.h5_c00034{height:58.824720px;}
.hf_c00034{height:59.833389px;}
.h17_c00034{height:59.845511px;}
.h14_c00034{height:60.895432px;}
.h11_c00034{height:60.903563px;}
.h3_c00034{height:60.925603px;}
.h2_c00034{height:61.930421px;}
.h13_c00034{height:61.953624px;}
.h4_c00034{height:61.976045px;}
.h19_c00034{height:62.995275px;}
.h6_c00034{height:63.026486px;}
.h16_c00034{height:64.045196px;}
.h7_c00034{height:64.076927px;}
.h1b_c00034{height:65.095117px;}
.h9_c00034{height:65.127369px;}
.ha_c00034{height:67.228252px;}
.h12_c00034{height:68.253993px;}
.h8_c00034{height:70.379576px;}
.h15_c00034{height:73.494487px;}
.h1c_c00034{height:74.544409px;}
.h0_c00034{height:615.600000px;}
.h1_c00034{height:615.750000px;}
.w1_c00034{width:356.250000px;}
.w0_c00034{width:356.400000px;}
.x0_c00034{left:0.000000px;}
.x78_c00034{left:10.144077px;}
.x6c_c00034{left:12.027657px;}
.x69_c00034{left:13.188728px;}
.x37_c00034{left:14.751712px;}
.x45_c00034{left:16.747526px;}
.x2a_c00034{left:18.113418px;}
.x3_c00034{left:19.318500px;}
.x25_c00034{left:23.717674px;}
.x6d_c00034{left:28.280126px;}
.x66_c00034{left:32.018211px;}
.x2b_c00034{left:34.929546px;}
.x20_c00034{left:36.362452px;}
.x59_c00034{left:40.243716px;}
.x12_c00034{left:42.828234px;}
.x19_c00034{left:49.006995px;}
.x5a_c00034{left:55.302951px;}
.xb_c00034{left:58.735693px;}
.x52_c00034{left:59.875222px;}
.x1a_c00034{left:61.454820px;}
.x6b_c00034{left:62.799629px;}
.x67_c00034{left:65.138138px;}
.x30_c00034{left:67.838697px;}
.x35_c00034{left:69.518130px;}
.x6a_c00034{left:70.620239px;}
.x21_c00034{left:71.688274px;}
.xc_c00034{left:74.009475px;}
.x76_c00034{left:76.436117px;}
.x3d_c00034{left:78.689265px;}
.x1_c00034{left:80.272500px;}
.x63_c00034{left:81.842470px;}
.x13_c00034{left:83.579553px;}
.x41_c00034{left:85.908973px;}
.x5b_c00034{left:88.019682px;}
.x4_c00034{left:89.716500px;}
.x4d_c00034{left:90.753974px;}
.x46_c00034{left:93.194918px;}
.x4a_c00034{left:95.493572px;}
.x3e_c00034{left:99.146631px;}
.x77_c00034{left:100.292138px;}
.x53_c00034{left:101.489164px;}
.x31_c00034{left:104.235083px;}
.x5c_c00034{left:108.504710px;}
.x71_c00034{left:109.577456px;}
.x38_c00034{left:112.151059px;}
.x42_c00034{left:114.300099px;}
.x4e_c00034{left:115.459743px;}
.x5_c00034{left:116.881500px;}
.x3f_c00034{left:118.291975px;}
.x1b_c00034{left:119.496228px;}
.x6e_c00034{left:121.563093px;}
.x2c_c00034{left:123.549381px;}
.x32_c00034{left:126.230079px;}
.x36_c00034{left:128.925531px;}
.x39_c00034{left:131.877424px;}
.x5d_c00034{left:133.999016px;}
.x14_c00034{left:135.442000px;}
.xd_c00034{left:138.419123px;}
.x6_c00034{left:143.193000px;}
.x54_c00034{left:148.095498px;}
.x74_c00034{left:149.433627px;}
.x79_c00034{left:151.190463px;}
.xe_c00034{left:156.029556px;}
.x2_c00034{left:159.080568px;}
.x22_c00034{left:160.584655px;}
.x55_c00034{left:162.734240px;}
.x1c_c00034{left:164.681854px;}
.x50_c00034{left:166.979152px;}
.x7a_c00034{left:168.038019px;}
.x3a_c00034{left:169.408024px;}
.x6f_c00034{left:170.507682px;}
.x2d_c00034{left:171.910374px;}
.x4b_c00034{left:172.927422px;}
.x5e_c00034{left:179.829953px;}
.x43_c00034{left:182.623848px;}
.x56_c00034{left:186.149160px;}
.x7_c00034{left:189.336000px;}
.x15_c00034{left:191.867382px;}
.x60_c00034{left:196.126679px;}
.x3b_c00034{left:197.503518px;}
.x23_c00034{left:198.608325px;}
.xf_c00034{left:201.123531px;}
.x64_c00034{left:209.418767px;}
.x33_c00034{left:211.029565px;}
.x58_c00034{left:212.273392px;}
.x26_c00034{left:213.402709px;}
.x16_c00034{left:216.989638px;}
.x44_c00034{left:221.041993px;}
.x70_c00034{left:223.197038px;}
.x1d_c00034{left:224.771914px;}
.x61_c00034{left:228.422260px;}
.x34_c00034{left:230.748301px;}
.x75_c00034{left:232.695948px;}
.x27_c00034{left:233.725728px;}
.x4c_c00034{left:235.681994px;}
.x1e_c00034{left:238.705978px;}
.x3c_c00034{left:239.837899px;}
.x4f_c00034{left:246.265307px;}
.x47_c00034{left:247.335549px;}
.x57_c00034{left:249.003742px;}
.x8_c00034{left:250.029000px;}
.x10_c00034{left:251.864179px;}
.x28_c00034{left:254.005246px;}
.x17_c00034{left:257.390088px;}
.x2e_c00034{left:260.810622px;}
.x1f_c00034{left:268.073889px;}
.x9_c00034{left:269.508000px;}
.x48_c00034{left:271.040499px;}
.x11_c00034{left:273.672504px;}
.x73_c00034{left:278.801401px;}
.x18_c00034{left:281.929062px;}
.x40_c00034{left:283.341055px;}
.x51_c00034{left:285.312697px;}
.x65_c00034{left:286.594514px;}
.x49_c00034{left:287.979690px;}
.x68_c00034{left:290.736629px;}
.x24_c00034{left:292.858488px;}
.x62_c00034{left:296.562838px;}
.x5f_c00034{left:300.223938px;}
.xa_c00034{left:301.276500px;}
.x72_c00034{left:302.928660px;}
.x2f_c00034{left:304.179550px;}
.x7b_c00034{left:307.260000px;}
.x29_c00034{left:309.775455px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs1b_c00034{font-size:19.600000pt;}
.fs18_c00034{font-size:44.796640pt;}
.fsb_c00034{font-size:45.720641pt;}
.fsa_c00034{font-size:46.686286pt;}
.fs9_c00034{font-size:51.354914pt;}
.fsc_c00034{font-size:52.252161pt;}
.fs16_c00034{font-size:52.262747pt;}
.fse_c00034{font-size:52.269724pt;}
.fs3_c00034{font-size:52.288640pt;}
.fsd_c00034{font-size:53.185235pt;}
.fs15_c00034{font-size:53.196010pt;}
.fs12_c00034{font-size:54.129273pt;}
.fsf_c00034{font-size:54.136500pt;}
.fs1_c00034{font-size:54.156092pt;}
.fs0_c00034{font-size:55.049263pt;}
.fs11_c00034{font-size:55.069888pt;}
.fs2_c00034{font-size:55.089817pt;}
.fs17_c00034{font-size:55.995800pt;}
.fs4_c00034{font-size:56.023543pt;}
.fs14_c00034{font-size:56.929063pt;}
.fs5_c00034{font-size:56.957269pt;}
.fs19_c00034{font-size:57.862327pt;}
.fs7_c00034{font-size:57.890994pt;}
.fs8_c00034{font-size:59.758446pt;}
.fs10_c00034{font-size:60.670216pt;}
.fs6_c00034{font-size:62.559623pt;}
.fs13_c00034{font-size:65.328433pt;}
.fs1a_c00034{font-size:66.261696pt;}
.y0_c00034{bottom:0.000000pt;}
.yed_c00034{bottom:30.889529pt;}
.yec_c00034{bottom:32.037872pt;}
.yeb_c00034{bottom:35.777504pt;}
.yea_c00034{bottom:36.392741pt;}
.ye9_c00034{bottom:38.841981pt;}
.ye8_c00034{bottom:41.539699pt;}
.ye7_c00034{bottom:47.161881pt;}
.ye6_c00034{bottom:48.426679pt;}
.ye5_c00034{bottom:50.860403pt;}
.ye4_c00034{bottom:53.432967pt;}
.ye3_c00034{bottom:54.409764pt;}
.ye2_c00034{bottom:56.906881pt;}
.ye1_c00034{bottom:62.028511pt;}
.ye0_c00034{bottom:63.700168pt;}
.ydf_c00034{bottom:64.822495pt;}
.yde_c00034{bottom:66.737699pt;}
.ydd_c00034{bottom:67.617855pt;}
.ydc_c00034{bottom:69.689327pt;}
.ydb_c00034{bottom:71.784579pt;}
.yda_c00034{bottom:75.134940pt;}
.yd9_c00034{bottom:75.941391pt;}
.yd8_c00034{bottom:78.055500pt;}
.yd7_c00034{bottom:81.673004pt;}
.yd6_c00034{bottom:84.189192pt;}
.yd5_c00034{bottom:86.177799pt;}
.yd4_c00034{bottom:89.866893pt;}
.yd3_c00034{bottom:90.339433pt;}
.yd2_c00034{bottom:93.121772pt;}
.yd1_c00034{bottom:94.737595pt;}
.yd0_c00034{bottom:95.614165pt;}
.ycf_c00034{bottom:97.951855pt;}
.yce_c00034{bottom:100.073555pt;}
.ycd_c00034{bottom:102.029715pt;}
.ycc_c00034{bottom:104.490540pt;}
.ycb_c00034{bottom:105.248245pt;}
.yca_c00034{bottom:107.624633pt;}
.yc9_c00034{bottom:109.100073pt;}
.yc8_c00034{bottom:110.062245pt;}
.yc7_c00034{bottom:112.325888pt;}
.yc6_c00034{bottom:113.658901pt;}
.yc5_c00034{bottom:116.642241pt;}
.yc4_c00034{bottom:117.393512pt;}
.yc3_c00034{bottom:121.916375pt;}
.yc2_c00034{bottom:124.455869pt;}
.yc1_c00034{bottom:125.757697pt;}
.yc0_c00034{bottom:126.335299pt;}
.ybf_c00034{bottom:128.225979pt;}
.ybe_c00034{bottom:129.120893pt;}
.ybd_c00034{bottom:130.669223pt;}
.ybc_c00034{bottom:132.981807pt;}
.ybb_c00034{bottom:136.570135pt;}
.yba_c00034{bottom:137.404392pt;}
.yb9_c00034{bottom:139.241409pt;}
.yb8_c00034{bottom:139.954579pt;}
.yb7_c00034{bottom:141.617245pt;}
.yb6_c00034{bottom:142.236732pt;}
.yb5_c00034{bottom:144.227116pt;}
.yb4_c00034{bottom:146.424473pt;}
.yb3_c00034{bottom:150.939556pt;}
.yb2_c00034{bottom:154.457240pt;}
.yb1_c00034{bottom:155.758197pt;}
.yb0_c00034{bottom:159.771233pt;}
.yaf_c00034{bottom:161.067776pt;}
.yae_c00034{bottom:161.779959pt;}
.yad_c00034{bottom:166.563183pt;}
.yac_c00034{bottom:168.354849pt;}
.yab_c00034{bottom:169.515964pt;}
.yaa_c00034{bottom:170.029269pt;}
.ya9_c00034{bottom:173.540019pt;}
.ya8_c00034{bottom:174.397095pt;}
.ya7_c00034{bottom:176.653333pt;}
.ya6_c00034{bottom:182.206276pt;}
.ya5_c00034{bottom:182.723831pt;}
.ya4_c00034{bottom:184.632185pt;}
.ya3_c00034{bottom:185.781845pt;}
.ya2_c00034{bottom:186.944771pt;}
.ya1_c00034{bottom:189.060769pt;}
.ya0_c00034{bottom:189.973293pt;}
.y9f_c00034{bottom:192.252829pt;}
.y9e_c00034{bottom:195.686317pt;}
.y9d_c00034{bottom:197.684373pt;}
.y9c_c00034{bottom:199.839995pt;}
.y9b_c00034{bottom:200.614021pt;}
.y9a_c00034{bottom:202.613672pt;}
.y99_c00034{bottom:203.366109pt;}
.y98_c00034{bottom:204.194784pt;}
.y97_c00034{bottom:204.759664pt;}
.y96_c00034{bottom:206.538883pt;}
.y95_c00034{bottom:207.380069pt;}
.y94_c00034{bottom:212.880629pt;}
.y93_c00034{bottom:213.743776pt;}
.y92_c00034{bottom:214.969728pt;}
.y91_c00034{bottom:217.780284pt;}
.y90_c00034{bottom:218.846453pt;}
.y8f_c00034{bottom:219.703589pt;}
.y8e_c00034{bottom:221.072045pt;}
.y8d_c00034{bottom:221.701765pt;}
.y8c_c00034{bottom:222.737101pt;}
.y8b_c00034{bottom:228.239740pt;}
.y8a_c00034{bottom:230.205984pt;}
.y89_c00034{bottom:232.455657pt;}
.y88_c00034{bottom:232.932847pt;}
.y87_c00034{bottom:235.473511pt;}
.y86_c00034{bottom:236.360405pt;}
.y85_c00034{bottom:238.093452pt;}
.y84_c00034{bottom:243.991693pt;}
.y83_c00034{bottom:246.564320pt;}
.y82_c00034{bottom:248.866344pt;}
.y81_c00034{bottom:249.608293pt;}
.y80_c00034{bottom:250.770683pt;}
.y7f_c00034{bottom:253.222667pt;}
.y7e_c00034{bottom:259.016133pt;}
.y7d_c00034{bottom:262.660305pt;}
.y7c_c00034{bottom:263.297995pt;}
.y7b_c00034{bottom:265.330032pt;}
.y7a_c00034{bottom:266.274055pt;}
.y79_c00034{bottom:267.143913pt;}
.y78_c00034{bottom:269.072428pt;}
.y77_c00034{bottom:272.920813pt;}
.y76_c00034{bottom:275.053549pt;}
.y75_c00034{bottom:275.972477pt;}
.y74_c00034{bottom:277.763567pt;}
.y73_c00034{bottom:281.092145pt;}
.y72_c00034{bottom:283.946031pt;}
.y71_c00034{bottom:288.523027pt;}
.y70_c00034{bottom:290.104131pt;}
.y6f_c00034{bottom:292.243683pt;}
.y6e_c00034{bottom:292.609344pt;}
.y6d_c00034{bottom:294.526875pt;}
.y6c_c00034{bottom:295.362216pt;}
.y6b_c00034{bottom:297.169800pt;}
.y6a_c00034{bottom:297.609333pt;}
.y69_c00034{bottom:303.203913pt;}
.y68_c00034{bottom:304.084113pt;}
.y67_c00034{bottom:305.770384pt;}
.y66_c00034{bottom:308.936773pt;}
.y65_c00034{bottom:310.345643pt;}
.y64_c00034{bottom:312.180231pt;}
.y63_c00034{bottom:315.252385pt;}
.y62_c00034{bottom:315.974613pt;}
.y61_c00034{bottom:316.986011pt;}
.y60_c00034{bottom:319.724307pt;}
.y5f_c00034{bottom:320.485735pt;}
.y5e_c00034{bottom:323.562935pt;}
.y5d_c00034{bottom:326.825331pt;}
.y5c_c00034{bottom:332.031457pt;}
.y5b_c00034{bottom:334.273757pt;}
.y5a_c00034{bottom:335.673769pt;}
.y59_c00034{bottom:338.163616pt;}
.y58_c00034{bottom:339.198397pt;}
.y57_c00034{bottom:341.700905pt;}
.y56_c00034{bottom:347.149328pt;}
.y55_c00034{bottom:348.712180pt;}
.y54_c00034{bottom:350.585751pt;}
.y53_c00034{bottom:351.192787pt;}
.y52_c00034{bottom:353.165407pt;}
.y51_c00034{bottom:353.863103pt;}
.y50_c00034{bottom:354.609299pt;}
.y4f_c00034{bottom:355.230156pt;}
.y4e_c00034{bottom:356.835516pt;}
.y4d_c00034{bottom:360.999912pt;}
.y4c_c00034{bottom:362.714880pt;}
.y4b_c00034{bottom:364.408005pt;}
.y4a_c00034{bottom:365.531247pt;}
.y49_c00034{bottom:367.032484pt;}
.y48_c00034{bottom:367.821221pt;}
.y47_c00034{bottom:369.402001pt;}
.y46_c00034{bottom:371.717124pt;}
.y45_c00034{bottom:375.374779pt;}
.yee_c00034{bottom:376.320000pt;}
.y44_c00034{bottom:381.652799pt;}
.y43_c00034{bottom:383.923477pt;}
.y42_c00034{bottom:384.743967pt;}
.y41_c00034{bottom:385.882437pt;}
.y40_c00034{bottom:392.963744pt;}
.y3f_c00034{bottom:393.664211pt;}
.y3e_c00034{bottom:396.061679pt;}
.y3d_c00034{bottom:396.678849pt;}
.y3c_c00034{bottom:397.460679pt;}
.y3b_c00034{bottom:398.755196pt;}
.y3a_c00034{bottom:400.532768pt;}
.y39_c00034{bottom:405.021239pt;}
.y38_c00034{bottom:406.524851pt;}
.y37_c00034{bottom:407.492669pt;}
.y36_c00034{bottom:409.606499pt;}
.y35_c00034{bottom:411.282832pt;}
.y34_c00034{bottom:412.689500pt;}
.y33_c00034{bottom:414.354583pt;}
.y32_c00034{bottom:414.937524pt;}
.y31_c00034{bottom:420.366004pt;}
.y30_c00034{bottom:422.349428pt;}
.y2f_c00034{bottom:423.071023pt;}
.y2e_c00034{bottom:423.793739pt;}
.y2d_c00034{bottom:426.448517pt;}
.y2c_c00034{bottom:428.199393pt;}
.y2b_c00034{bottom:430.119857pt;}
.y2a_c00034{bottom:430.538289pt;}
.y29_c00034{bottom:436.172335pt;}
.y28_c00034{bottom:439.271791pt;}
.y27_c00034{bottom:440.522851pt;}
.y26_c00034{bottom:441.065479pt;}
.y25_c00034{bottom:443.446933pt;}
.y24_c00034{bottom:444.608432pt;}
.y23_c00034{bottom:445.187132pt;}
.y22_c00034{bottom:452.085395pt;}
.y21_c00034{bottom:452.998565pt;}
.y20_c00034{bottom:453.432484pt;}
.y1f_c00034{bottom:455.301741pt;}
.y1e_c00034{bottom:456.708063pt;}
.y1d_c00034{bottom:458.513835pt;}
.y1c_c00034{bottom:458.901435pt;}
.y1b_c00034{bottom:459.835464pt;}
.y1a_c00034{bottom:466.351193pt;}
.y19_c00034{bottom:467.245307pt;}
.y18_c00034{bottom:468.717769pt;}
.y17_c00034{bottom:469.633591pt;}
.y16_c00034{bottom:471.689951pt;}
.y15_c00034{bottom:473.580648pt;}
.y14_c00034{bottom:475.066159pt;}
.y13_c00034{bottom:475.924627pt;}
.y12_c00034{bottom:481.686069pt;}
.y11_c00034{bottom:482.345655pt;}
.y10_c00034{bottom:483.879159pt;}
.yf_c00034{bottom:485.241749pt;}
.ye_c00034{bottom:485.774440pt;}
.yd_c00034{bottom:487.721685pt;}
.yc_c00034{bottom:488.183467pt;}
.yb_c00034{bottom:489.364221pt;}
.ya_c00034{bottom:496.742416pt;}
.y9_c00034{bottom:497.561337pt;}
.y8_c00034{bottom:498.063463pt;}
.y7_c00034{bottom:499.627993pt;}
.y6_c00034{bottom:500.817457pt;}
.y5_c00034{bottom:501.495709pt;}
.y4_c00034{bottom:502.195963pt;}
.y3_c00034{bottom:504.010667pt;}
.y2_c00034{bottom:514.578197pt;}
.y1_c00034{bottom:518.649333pt;}
.h1d_c00034{height:19.600000pt;}
.h1a_c00034{height:44.796640pt;}
.hd_c00034{height:45.720641pt;}
.hc_c00034{height:46.686286pt;}
.hb_c00034{height:51.354914pt;}
.he_c00034{height:52.252161pt;}
.h18_c00034{height:52.262747pt;}
.h10_c00034{height:52.269724pt;}
.h5_c00034{height:52.288640pt;}
.hf_c00034{height:53.185235pt;}
.h17_c00034{height:53.196010pt;}
.h14_c00034{height:54.129273pt;}
.h11_c00034{height:54.136500pt;}
.h3_c00034{height:54.156092pt;}
.h2_c00034{height:55.049263pt;}
.h13_c00034{height:55.069888pt;}
.h4_c00034{height:55.089817pt;}
.h19_c00034{height:55.995800pt;}
.h6_c00034{height:56.023543pt;}
.h16_c00034{height:56.929063pt;}
.h7_c00034{height:56.957269pt;}
.h1b_c00034{height:57.862327pt;}
.h9_c00034{height:57.890994pt;}
.ha_c00034{height:59.758446pt;}
.h12_c00034{height:60.670216pt;}
.h8_c00034{height:62.559623pt;}
.h15_c00034{height:65.328433pt;}
.h1c_c00034{height:66.261696pt;}
.h0_c00034{height:547.200000pt;}
.h1_c00034{height:547.333333pt;}
.w1_c00034{width:316.666667pt;}
.w0_c00034{width:316.800000pt;}
.x0_c00034{left:0.000000pt;}
.x78_c00034{left:9.016957pt;}
.x6c_c00034{left:10.691251pt;}
.x69_c00034{left:11.723313pt;}
.x37_c00034{left:13.112633pt;}
.x45_c00034{left:14.886689pt;}
.x2a_c00034{left:16.100816pt;}
.x3_c00034{left:17.172000pt;}
.x25_c00034{left:21.082377pt;}
.x6d_c00034{left:25.137889pt;}
.x66_c00034{left:28.460632pt;}
.x2b_c00034{left:31.048485pt;}
.x20_c00034{left:32.322180pt;}
.x59_c00034{left:35.772192pt;}
.x12_c00034{left:38.069541pt;}
.x19_c00034{left:43.561773pt;}
.x5a_c00034{left:49.158179pt;}
.xb_c00034{left:52.209505pt;}
.x52_c00034{left:53.222420pt;}
.x1a_c00034{left:54.626507pt;}
.x6b_c00034{left:55.821892pt;}
.x67_c00034{left:57.900567pt;}
.x30_c00034{left:60.301064pt;}
.x35_c00034{left:61.793893pt;}
.x6a_c00034{left:62.773545pt;}
.x21_c00034{left:63.722911pt;}
.xc_c00034{left:65.786200pt;}
.x76_c00034{left:67.943215pt;}
.x3d_c00034{left:69.946013pt;}
.x1_c00034{left:71.353333pt;}
.x63_c00034{left:72.748863pt;}
.x13_c00034{left:74.292936pt;}
.x41_c00034{left:76.363532pt;}
.x5b_c00034{left:78.239717pt;}
.x4_c00034{left:79.748000pt;}
.x4d_c00034{left:80.670199pt;}
.x46_c00034{left:82.839927pt;}
.x4a_c00034{left:84.883175pt;}
.x3e_c00034{left:88.130339pt;}
.x77_c00034{left:89.148567pt;}
.x53_c00034{left:90.212591pt;}
.x31_c00034{left:92.653407pt;}
.x5c_c00034{left:96.448631pt;}
.x71_c00034{left:97.402183pt;}
.x38_c00034{left:99.689831pt;}
.x42_c00034{left:101.600088pt;}
.x4e_c00034{left:102.630883pt;}
.x5_c00034{left:103.894667pt;}
.x3f_c00034{left:105.148423pt;}
.x1b_c00034{left:106.218869pt;}
.x6e_c00034{left:108.056083pt;}
.x2c_c00034{left:109.821672pt;}
.x32_c00034{left:112.204515pt;}
.x36_c00034{left:114.600472pt;}
.x39_c00034{left:117.224377pt;}
.x5d_c00034{left:119.110236pt;}
.x14_c00034{left:120.392889pt;}
.xd_c00034{left:123.039220pt;}
.x6_c00034{left:127.282667pt;}
.x54_c00034{left:131.640443pt;}
.x74_c00034{left:132.829891pt;}
.x79_c00034{left:134.391523pt;}
.xe_c00034{left:138.692939pt;}
.x2_c00034{left:141.404949pt;}
.x22_c00034{left:142.741916pt;}
.x55_c00034{left:144.652657pt;}
.x1c_c00034{left:146.383871pt;}
.x50_c00034{left:148.425913pt;}
.x7a_c00034{left:149.367128pt;}
.x3a_c00034{left:150.584911pt;}
.x6f_c00034{left:151.562384pt;}
.x2d_c00034{left:152.809221pt;}
.x4b_c00034{left:153.713264pt;}
.x5e_c00034{left:159.848847pt;}
.x43_c00034{left:162.332309pt;}
.x56_c00034{left:165.465920pt;}
.x7_c00034{left:168.298667pt;}
.x15_c00034{left:170.548784pt;}
.x60_c00034{left:174.334825pt;}
.x3b_c00034{left:175.558683pt;}
.x23_c00034{left:176.540733pt;}
.xf_c00034{left:178.776472pt;}
.x64_c00034{left:186.150015pt;}
.x33_c00034{left:187.581836pt;}
.x58_c00034{left:188.687460pt;}
.x26_c00034{left:189.691297pt;}
.x16_c00034{left:192.879679pt;}
.x44_c00034{left:196.481772pt;}
.x70_c00034{left:198.397367pt;}
.x1d_c00034{left:199.797257pt;}
.x61_c00034{left:203.042009pt;}
.x34_c00034{left:205.109601pt;}
.x75_c00034{left:206.840843pt;}
.x27_c00034{left:207.756203pt;}
.x4c_c00034{left:209.495105pt;}
.x1e_c00034{left:212.183092pt;}
.x3c_c00034{left:213.189244pt;}
.x4f_c00034{left:218.902495pt;}
.x47_c00034{left:219.853821pt;}
.x57_c00034{left:221.336660pt;}
.x8_c00034{left:222.248000pt;}
.x10_c00034{left:223.879271pt;}
.x28_c00034{left:225.782441pt;}
.x17_c00034{left:228.791189pt;}
.x2e_c00034{left:231.831664pt;}
.x1f_c00034{left:238.287901pt;}
.x9_c00034{left:239.562667pt;}
.x48_c00034{left:240.924888pt;}
.x11_c00034{left:243.264448pt;}
.x73_c00034{left:247.823468pt;}
.x18_c00034{left:250.603611pt;}
.x40_c00034{left:251.858716pt;}
.x51_c00034{left:253.611287pt;}
.x65_c00034{left:254.750679pt;}
.x49_c00034{left:255.981947pt;}
.x68_c00034{left:258.432559pt;}
.x24_c00034{left:260.318656pt;}
.x62_c00034{left:263.611412pt;}
.x5f_c00034{left:266.865723pt;}
.xa_c00034{left:267.801333pt;}
.x72_c00034{left:269.269920pt;}
.x2f_c00034{left:270.381823pt;}
.x7b_c00034{left:273.120000pt;}
.x29_c00034{left:275.355960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00035 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00035.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.009825,0.000315,-0.008004,0.249872,0,0);-ms-transform:matrix(0.009825,0.000315,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.009825,0.000315,-0.008004,0.249872,0,0);}
.mac_c00035{transform:matrix(0.011015,0.000341,-0.007746,0.249880,0,0);-ms-transform:matrix(0.011015,0.000341,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.011015,0.000341,-0.007746,0.249880,0,0);}
.m1_c00035{transform:matrix(0.027126,0.000869,-0.008004,0.249872,0,0);-ms-transform:matrix(0.027126,0.000869,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.027126,0.000869,-0.008004,0.249872,0,0);}
.m1c_c00035{transform:matrix(0.033319,0.001033,-0.007746,0.249880,0,0);-ms-transform:matrix(0.033319,0.001033,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.033319,0.001033,-0.007746,0.249880,0,0);}
.m27_c00035{transform:matrix(0.137694,0.004269,-0.007746,0.249880,0,0);-ms-transform:matrix(0.137694,0.004269,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.137694,0.004269,-0.007746,0.249880,0,0);}
.mbf_c00035{transform:matrix(0.137717,0.003443,-0.006248,0.249922,0,0);-ms-transform:matrix(0.137717,0.003443,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.137717,0.003443,-0.006248,0.249922,0,0);}
.me4_c00035{transform:matrix(0.140331,0.003087,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140331,0.003087,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140331,0.003087,-0.005499,0.249940,0,0);}
.m5d_c00035{transform:matrix(0.141087,0.004374,-0.007746,0.249880,0,0);-ms-transform:matrix(0.141087,0.004374,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.141087,0.004374,-0.007746,0.249880,0,0);}
.m22_c00035{transform:matrix(0.143986,0.004464,-0.007746,0.249880,0,0);-ms-transform:matrix(0.143986,0.004464,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.143986,0.004464,-0.007746,0.249880,0,0);}
.mba_c00035{transform:matrix(0.145595,0.003640,-0.006248,0.249922,0,0);-ms-transform:matrix(0.145595,0.003640,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.145595,0.003640,-0.006248,0.249922,0,0);}
.m98_c00035{transform:matrix(0.145595,0.004513,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145595,0.004513,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145595,0.004513,-0.007746,0.249880,0,0);}
.mc3_c00035{transform:matrix(0.146629,0.003666,-0.006248,0.249922,0,0);-ms-transform:matrix(0.146629,0.003666,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.146629,0.003666,-0.006248,0.249922,0,0);}
.ma3_c00035{transform:matrix(0.146984,0.004557,-0.007746,0.249880,0,0);-ms-transform:matrix(0.146984,0.004557,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.146984,0.004557,-0.007746,0.249880,0,0);}
.m45_c00035{transform:matrix(0.150188,0.004656,-0.007746,0.249880,0,0);-ms-transform:matrix(0.150188,0.004656,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.150188,0.004656,-0.007746,0.249880,0,0);}
.md8_c00035{transform:matrix(0.150228,0.003756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150228,0.003756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150228,0.003756,-0.006248,0.249922,0,0);}
.m32_c00035{transform:matrix(0.153446,0.004757,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153446,0.004757,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153446,0.004757,-0.007746,0.249880,0,0);}
.m9c_c00035{transform:matrix(0.153531,0.004759,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153531,0.004759,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153531,0.004759,-0.007746,0.249880,0,0);}
.m69_c00035{transform:matrix(0.153821,0.004768,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153821,0.004768,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153821,0.004768,-0.007746,0.249880,0,0);}
.m2a_c00035{transform:matrix(0.153836,0.004769,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153836,0.004769,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153836,0.004769,-0.007746,0.249880,0,0);}
.m42_c00035{transform:matrix(0.154051,0.004776,-0.007746,0.249880,0,0);-ms-transform:matrix(0.154051,0.004776,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.154051,0.004776,-0.007746,0.249880,0,0);}
.m88_c00035{transform:matrix(0.154226,0.004781,-0.007746,0.249880,0,0);-ms-transform:matrix(0.154226,0.004781,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.154226,0.004781,-0.007746,0.249880,0,0);}
.mde_c00035{transform:matrix(0.155501,0.003888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155501,0.003888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155501,0.003888,-0.006248,0.249922,0,0);}
.m55_c00035{transform:matrix(0.156165,0.004841,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156165,0.004841,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156165,0.004841,-0.007746,0.249880,0,0);}
.m21_c00035{transform:matrix(0.156200,0.004842,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156200,0.004842,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156200,0.004842,-0.007746,0.249880,0,0);}
.m71_c00035{transform:matrix(0.156565,0.004854,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156565,0.004854,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156565,0.004854,-0.007746,0.249880,0,0);}
.m3b_c00035{transform:matrix(0.156620,0.004855,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156620,0.004855,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156620,0.004855,-0.007746,0.249880,0,0);}
.m80_c00035{transform:matrix(0.156980,0.004866,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156980,0.004866,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156980,0.004866,-0.007746,0.249880,0,0);}
.m78_c00035{transform:matrix(0.158414,0.004911,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158414,0.004911,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158414,0.004911,-0.007746,0.249880,0,0);}
.me8_c00035{transform:matrix(0.158717,0.003492,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158717,0.003492,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158717,0.003492,-0.005499,0.249940,0,0);}
.m3d_c00035{transform:matrix(0.158754,0.004921,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158754,0.004921,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158754,0.004921,-0.007746,0.249880,0,0);}
.ma2_c00035{transform:matrix(0.160073,0.004962,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160073,0.004962,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160073,0.004962,-0.007746,0.249880,0,0);}
.m23_c00035{transform:matrix(0.160253,0.004968,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160253,0.004968,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160253,0.004968,-0.007746,0.249880,0,0);}
.m1f_c00035{transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);}
.m60_c00035{transform:matrix(0.161063,0.004993,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161063,0.004993,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161063,0.004993,-0.007746,0.249880,0,0);}
.m4f_c00035{transform:matrix(0.162802,0.005047,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162802,0.005047,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162802,0.005047,-0.007746,0.249880,0,0);}
.m9b_c00035{transform:matrix(0.162932,0.005051,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162932,0.005051,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162932,0.005051,-0.007746,0.249880,0,0);}
.m90_c00035{transform:matrix(0.163906,0.005081,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163906,0.005081,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163906,0.005081,-0.007746,0.249880,0,0);}
.mab_c00035{transform:matrix(0.164111,0.005087,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164111,0.005087,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164111,0.005087,-0.007746,0.249880,0,0);}
.m6c_c00035{transform:matrix(0.164481,0.005099,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164481,0.005099,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164481,0.005099,-0.007746,0.249880,0,0);}
.maa_c00035{transform:matrix(0.164526,0.005100,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164526,0.005100,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164526,0.005100,-0.007746,0.249880,0,0);}
.m81_c00035{transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165241,0.005122,-0.007746,0.249880,0,0);}
.m9a_c00035{transform:matrix(0.165665,0.005136,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165665,0.005136,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165665,0.005136,-0.007746,0.249880,0,0);}
.m63_c00035{transform:matrix(0.166250,0.005154,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166250,0.005154,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166250,0.005154,-0.007746,0.249880,0,0);}
.m1d_c00035{transform:matrix(0.166390,0.005158,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166390,0.005158,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166390,0.005158,-0.007746,0.249880,0,0);}
.ma8_c00035{transform:matrix(0.166410,0.005159,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166410,0.005159,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166410,0.005159,-0.007746,0.249880,0,0);}
.m3f_c00035{transform:matrix(0.167070,0.005179,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167070,0.005179,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167070,0.005179,-0.007746,0.249880,0,0);}
.m85_c00035{transform:matrix(0.167530,0.005193,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167530,0.005193,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167530,0.005193,-0.007746,0.249880,0,0);}
.m8a_c00035{transform:matrix(0.167550,0.005194,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167550,0.005194,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167550,0.005194,-0.007746,0.249880,0,0);}
.me2_c00035{transform:matrix(0.167568,0.004189,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167568,0.004189,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167568,0.004189,-0.006248,0.249922,0,0);}
.m2d_c00035{transform:matrix(0.167724,0.005199,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167724,0.005199,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167724,0.005199,-0.007746,0.249880,0,0);}
.me9_c00035{transform:matrix(0.167869,0.003693,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167869,0.003693,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167869,0.003693,-0.005499,0.249940,0,0);}
.mf_c00035{transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);}
.m33_c00035{transform:matrix(0.168144,0.005212,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168144,0.005212,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168144,0.005212,-0.007746,0.249880,0,0);}
.mbc_c00035{transform:matrix(0.168497,0.004212,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168497,0.004212,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168497,0.004212,-0.006248,0.249922,0,0);}
.m70_c00035{transform:matrix(0.169334,0.005249,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169334,0.005249,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169334,0.005249,-0.007746,0.249880,0,0);}
.me5_c00035{transform:matrix(0.169784,0.003735,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169784,0.003735,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169784,0.003735,-0.005499,0.249940,0,0);}
.mda_c00035{transform:matrix(0.169977,0.004249,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169977,0.004249,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169977,0.004249,-0.006248,0.249922,0,0);}
.mc_c00035{transform:matrix(0.170326,0.004088,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170326,0.004088,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170326,0.004088,-0.005998,0.249928,0,0);}
.m6a_c00035{transform:matrix(0.170783,0.005294,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170783,0.005294,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170783,0.005294,-0.007746,0.249880,0,0);}
.m2c_c00035{transform:matrix(0.171318,0.005311,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171318,0.005311,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171318,0.005311,-0.007746,0.249880,0,0);}
.md7_c00035{transform:matrix(0.171691,0.004292,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171691,0.004292,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171691,0.004292,-0.006248,0.249922,0,0);}
.m44_c00035{transform:matrix(0.171837,0.005327,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171837,0.005327,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171837,0.005327,-0.007746,0.249880,0,0);}
.m67_c00035{transform:matrix(0.172267,0.005340,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172267,0.005340,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172267,0.005340,-0.007746,0.249880,0,0);}
.m8b_c00035{transform:matrix(0.172407,0.005345,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172407,0.005345,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172407,0.005345,-0.007746,0.249880,0,0);}
.md_c00035{transform:matrix(0.172635,0.004143,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172635,0.004143,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172635,0.004143,-0.005998,0.249928,0,0);}
.ma4_c00035{transform:matrix(0.172732,0.005355,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172732,0.005355,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172732,0.005355,-0.007746,0.249880,0,0);}
.mcf_c00035{transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);}
.mad_c00035{transform:matrix(0.173437,0.005377,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173437,0.005377,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173437,0.005377,-0.007746,0.249880,0,0);}
.mdf_c00035{transform:matrix(0.173746,0.004344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173746,0.004344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173746,0.004344,-0.006248,0.249922,0,0);}
.m99_c00035{transform:matrix(0.173762,0.005387,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173762,0.005387,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173762,0.005387,-0.007746,0.249880,0,0);}
.m1e_c00035{transform:matrix(0.173871,0.005390,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173871,0.005390,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173871,0.005390,-0.007746,0.249880,0,0);}
.m26_c00035{transform:matrix(0.173886,0.005390,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173886,0.005390,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173886,0.005390,-0.007746,0.249880,0,0);}
.m51_c00035{transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173996,0.005394,-0.007746,0.249880,0,0);}
.m15_c00035{transform:matrix(0.174316,0.005404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174316,0.005404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174316,0.005404,-0.007746,0.249880,0,0);}
.mc4_c00035{transform:matrix(0.175135,0.004378,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175135,0.004378,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175135,0.004378,-0.006248,0.249922,0,0);}
.m3e_c00035{transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);}
.m8d_c00035{transform:matrix(0.175486,0.005440,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175486,0.005440,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175486,0.005440,-0.007746,0.249880,0,0);}
.ma1_c00035{transform:matrix(0.176315,0.005466,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176315,0.005466,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176315,0.005466,-0.007746,0.249880,0,0);}
.m47_c00035{transform:matrix(0.176570,0.005474,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176570,0.005474,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176570,0.005474,-0.007746,0.249880,0,0);}
.m4a_c00035{transform:matrix(0.177050,0.005489,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177050,0.005489,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177050,0.005489,-0.007746,0.249880,0,0);}
.m7e_c00035{transform:matrix(0.177190,0.005493,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177190,0.005493,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177190,0.005493,-0.007746,0.249880,0,0);}
.m1a_c00035{transform:matrix(0.177445,0.005501,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177445,0.005501,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177445,0.005501,-0.007746,0.249880,0,0);}
.m2_c00035{transform:matrix(0.177504,0.005686,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177504,0.005686,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177504,0.005686,-0.008004,0.249872,0,0);}
.mc1_c00035{transform:matrix(0.177714,0.004443,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177714,0.004443,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177714,0.004443,-0.006248,0.249922,0,0);}
.m19_c00035{transform:matrix(0.178124,0.005522,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178124,0.005522,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178124,0.005522,-0.007746,0.249880,0,0);}
.me_c00035{transform:matrix(0.178429,0.004282,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178429,0.004282,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178429,0.004282,-0.005998,0.249928,0,0);}
.ma7_c00035{transform:matrix(0.178629,0.005538,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178629,0.005538,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178629,0.005538,-0.007746,0.249880,0,0);}
.mc5_c00035{transform:matrix(0.179199,0.004480,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179199,0.004480,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179199,0.004480,-0.006248,0.249922,0,0);}
.m5e_c00035{transform:matrix(0.179219,0.005556,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179219,0.005556,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179219,0.005556,-0.007746,0.249880,0,0);}
.m93_c00035{transform:matrix(0.179269,0.005557,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179269,0.005557,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179269,0.005557,-0.007746,0.249880,0,0);}
.m64_c00035{transform:matrix(0.179469,0.005564,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179469,0.005564,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179469,0.005564,-0.007746,0.249880,0,0);}
.m20_c00035{transform:matrix(0.179494,0.005564,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179494,0.005564,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179494,0.005564,-0.007746,0.249880,0,0);}
.mcd_c00035{transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);}
.m41_c00035{transform:matrix(0.179684,0.005570,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179684,0.005570,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179684,0.005570,-0.007746,0.249880,0,0);}
.m6d_c00035{transform:matrix(0.179729,0.005572,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179729,0.005572,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179729,0.005572,-0.007746,0.249880,0,0);}
.ma9_c00035{transform:matrix(0.179749,0.005572,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179749,0.005572,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179749,0.005572,-0.007746,0.249880,0,0);}
.maf_c00035{transform:matrix(0.179884,0.005576,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179884,0.005576,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179884,0.005576,-0.007746,0.249880,0,0);}
.md2_c00035{transform:matrix(0.180154,0.004504,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180154,0.004504,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180154,0.004504,-0.006248,0.249922,0,0);}
.m37_c00035{transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);}
.m4e_c00035{transform:matrix(0.180658,0.005600,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180658,0.005600,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180658,0.005600,-0.007746,0.249880,0,0);}
.m2e_c00035{transform:matrix(0.180983,0.005610,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180983,0.005610,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180983,0.005610,-0.007746,0.249880,0,0);}
.m2f_c00035{transform:matrix(0.181063,0.005613,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181063,0.005613,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181063,0.005613,-0.007746,0.249880,0,0);}
.m75_c00035{transform:matrix(0.181268,0.005619,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181268,0.005619,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181268,0.005619,-0.007746,0.249880,0,0);}
.m59_c00035{transform:matrix(0.181453,0.005625,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181453,0.005625,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181453,0.005625,-0.007746,0.249880,0,0);}
.m89_c00035{transform:matrix(0.181748,0.005634,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181748,0.005634,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181748,0.005634,-0.007746,0.249880,0,0);}
.m4_c00035{transform:matrix(0.181777,0.005823,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181777,0.005823,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181777,0.005823,-0.008004,0.249872,0,0);}
.m29_c00035{transform:matrix(0.181878,0.005638,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181878,0.005638,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181878,0.005638,-0.007746,0.249880,0,0);}
.m9d_c00035{transform:matrix(0.182063,0.005644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182063,0.005644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182063,0.005644,-0.007746,0.249880,0,0);}
.m5c_c00035{transform:matrix(0.182392,0.005654,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182392,0.005654,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182392,0.005654,-0.007746,0.249880,0,0);}
.m2b_c00035{transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);}
.ma0_c00035{transform:matrix(0.182982,0.005672,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182982,0.005672,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182982,0.005672,-0.007746,0.249880,0,0);}
.m76_c00035{transform:matrix(0.183727,0.005696,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183727,0.005696,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183727,0.005696,-0.007746,0.249880,0,0);}
.m17_c00035{transform:matrix(0.183902,0.005701,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183902,0.005701,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183902,0.005701,-0.007746,0.249880,0,0);}
.m11_c00035{transform:matrix(0.183942,0.004415,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183942,0.004415,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183942,0.004415,-0.005998,0.249928,0,0);}
.m62_c00035{transform:matrix(0.184271,0.005712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184271,0.005712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184271,0.005712,-0.007746,0.249880,0,0);}
.m10_c00035{transform:matrix(0.184762,0.004434,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184762,0.004434,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184762,0.004434,-0.005998,0.249928,0,0);}
.m7f_c00035{transform:matrix(0.185641,0.005755,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185641,0.005755,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185641,0.005755,-0.007746,0.249880,0,0);}
.m72_c00035{transform:matrix(0.186131,0.005770,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186131,0.005770,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186131,0.005770,-0.007746,0.249880,0,0);}
.m84_c00035{transform:matrix(0.186186,0.005772,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186186,0.005772,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186186,0.005772,-0.007746,0.249880,0,0);}
.m9f_c00035{transform:matrix(0.186271,0.005774,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186271,0.005774,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186271,0.005774,-0.007746,0.249880,0,0);}
.md0_c00035{transform:matrix(0.186512,0.004663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186512,0.004663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186512,0.004663,-0.006248,0.249922,0,0);}
.m5b_c00035{transform:matrix(0.186690,0.005787,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186690,0.005787,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186690,0.005787,-0.007746,0.249880,0,0);}
.m28_c00035{transform:matrix(0.186765,0.005790,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186765,0.005790,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186765,0.005790,-0.007746,0.249880,0,0);}
.m5f_c00035{transform:matrix(0.186945,0.005795,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186945,0.005795,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186945,0.005795,-0.007746,0.249880,0,0);}
.m1b_c00035{transform:matrix(0.187090,0.005800,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187090,0.005800,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187090,0.005800,-0.007746,0.249880,0,0);}
.md3_c00035{transform:matrix(0.187266,0.004682,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187266,0.004682,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187266,0.004682,-0.006248,0.249922,0,0);}
.m73_c00035{transform:matrix(0.187270,0.005805,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187270,0.005805,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187270,0.005805,-0.007746,0.249880,0,0);}
.m12_c00035{transform:matrix(0.187341,0.004496,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187341,0.004496,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187341,0.004496,-0.005998,0.249928,0,0);}
.m92_c00035{transform:matrix(0.187660,0.005817,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187660,0.005817,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187660,0.005817,-0.007746,0.249880,0,0);}
.m66_c00035{transform:matrix(0.187730,0.005820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187730,0.005820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187730,0.005820,-0.007746,0.249880,0,0);}
.m7b_c00035{transform:matrix(0.188045,0.005829,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188045,0.005829,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188045,0.005829,-0.007746,0.249880,0,0);}
.m50_c00035{transform:matrix(0.188130,0.005832,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188130,0.005832,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188130,0.005832,-0.007746,0.249880,0,0);}
.me6_c00035{transform:matrix(0.188809,0.004154,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188809,0.004154,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188809,0.004154,-0.005499,0.249940,0,0);}
.m6e_c00035{transform:matrix(0.189974,0.005889,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189974,0.005889,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189974,0.005889,-0.007746,0.249880,0,0);}
.ma5_c00035{transform:matrix(0.190074,0.005892,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190074,0.005892,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190074,0.005892,-0.007746,0.249880,0,0);}
.m25_c00035{transform:matrix(0.190548,0.005907,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190548,0.005907,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190548,0.005907,-0.007746,0.249880,0,0);}
.m8c_c00035{transform:matrix(0.191503,0.005937,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191503,0.005937,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191503,0.005937,-0.007746,0.249880,0,0);}
.m34_c00035{transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191573,0.005939,-0.007746,0.249880,0,0);}
.m79_c00035{transform:matrix(0.191638,0.005941,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191638,0.005941,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191638,0.005941,-0.007746,0.249880,0,0);}
.mc0_c00035{transform:matrix(0.191835,0.004796,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191835,0.004796,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191835,0.004796,-0.006248,0.249922,0,0);}
.md4_c00035{transform:matrix(0.192930,0.004823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192930,0.004823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192930,0.004823,-0.006248,0.249922,0,0);}
.md1_c00035{transform:matrix(0.192950,0.004824,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192950,0.004824,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192950,0.004824,-0.006248,0.249922,0,0);}
.m68_c00035{transform:matrix(0.193362,0.005994,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193362,0.005994,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193362,0.005994,-0.007746,0.249880,0,0);}
.mb8_c00035{transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);}
.m97_c00035{transform:matrix(0.193987,0.006014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193987,0.006014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193987,0.006014,-0.007746,0.249880,0,0);}
.mb_c00035{transform:matrix(0.194085,0.006217,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194085,0.006217,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194085,0.006217,-0.008004,0.249872,0,0);}
.m13_c00035{transform:matrix(0.195029,0.004681,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195029,0.004681,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195029,0.004681,-0.005998,0.249928,0,0);}
.mbe_c00035{transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);}
.m3a_c00035{transform:matrix(0.195541,0.006062,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195541,0.006062,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195541,0.006062,-0.007746,0.249880,0,0);}
.m94_c00035{transform:matrix(0.195586,0.006063,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195586,0.006063,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195586,0.006063,-0.007746,0.249880,0,0);}
.m31_c00035{transform:matrix(0.195641,0.006065,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195641,0.006065,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195641,0.006065,-0.007746,0.249880,0,0);}
.m39_c00035{transform:matrix(0.196111,0.006079,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196111,0.006079,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196111,0.006079,-0.007746,0.249880,0,0);}
.m65_c00035{transform:matrix(0.196266,0.006084,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196266,0.006084,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196266,0.006084,-0.007746,0.249880,0,0);}
.mbb_c00035{transform:matrix(0.196354,0.004909,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196354,0.004909,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196354,0.004909,-0.006248,0.249922,0,0);}
.m4c_c00035{transform:matrix(0.196431,0.006089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196431,0.006089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196431,0.006089,-0.007746,0.249880,0,0);}
.mae_c00035{transform:matrix(0.196581,0.006094,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196581,0.006094,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196581,0.006094,-0.007746,0.249880,0,0);}
.m6b_c00035{transform:matrix(0.196591,0.006094,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196591,0.006094,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196591,0.006094,-0.007746,0.249880,0,0);}
.mc9_c00035{transform:matrix(0.196679,0.004917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196679,0.004917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196679,0.004917,-0.006248,0.249922,0,0);}
.me7_c00035{transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);}
.md6_c00035{transform:matrix(0.197138,0.004928,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197138,0.004928,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197138,0.004928,-0.006248,0.249922,0,0);}
.m8f_c00035{transform:matrix(0.197660,0.006127,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197660,0.006127,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197660,0.006127,-0.007746,0.249880,0,0);}
.m43_c00035{transform:matrix(0.197705,0.006129,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197705,0.006129,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197705,0.006129,-0.007746,0.249880,0,0);}
.m3_c00035{transform:matrix(0.198168,0.006348,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198168,0.006348,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198168,0.006348,-0.008004,0.249872,0,0);}
.m18_c00035{transform:matrix(0.198310,0.006148,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198310,0.006148,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198310,0.006148,-0.007746,0.249880,0,0);}
.m7d_c00035{transform:matrix(0.199184,0.006175,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199184,0.006175,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199184,0.006175,-0.007746,0.249880,0,0);}
.m61_c00035{transform:matrix(0.199324,0.006179,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199324,0.006179,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199324,0.006179,-0.007746,0.249880,0,0);}
.m48_c00035{transform:matrix(0.199909,0.006197,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199909,0.006197,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199909,0.006197,-0.007746,0.249880,0,0);}
.m4b_c00035{transform:matrix(0.199914,0.006197,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199914,0.006197,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199914,0.006197,-0.007746,0.249880,0,0);}
.m14_c00035{transform:matrix(0.200019,0.006201,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200019,0.006201,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200019,0.006201,-0.007746,0.249880,0,0);}
.m40_c00035{transform:matrix(0.200324,0.006210,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200324,0.006210,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200324,0.006210,-0.007746,0.249880,0,0);}
.m91_c00035{transform:matrix(0.200469,0.006215,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200469,0.006215,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200469,0.006215,-0.007746,0.249880,0,0);}
.m7_c00035{transform:matrix(0.200482,0.006422,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200482,0.006422,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200482,0.006422,-0.008004,0.249872,0,0);}
.mb9_c00035{transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200487,0.005012,-0.006248,0.249922,0,0);}
.m5_c00035{transform:matrix(0.200562,0.006424,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200562,0.006424,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200562,0.006424,-0.008004,0.249872,0,0);}
.mca_c00035{transform:matrix(0.200582,0.005015,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200582,0.005015,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200582,0.005015,-0.006248,0.249922,0,0);}
.m57_c00035{transform:matrix(0.201348,0.006242,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201348,0.006242,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201348,0.006242,-0.007746,0.249880,0,0);}
.ma6_c00035{transform:matrix(0.202088,0.006265,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202088,0.006265,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202088,0.006265,-0.007746,0.249880,0,0);}
.m9e_c00035{transform:matrix(0.203312,0.006303,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203312,0.006303,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203312,0.006303,-0.007746,0.249880,0,0);}
.m9_c00035{transform:matrix(0.204215,0.006541,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204215,0.006541,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204215,0.006541,-0.008004,0.249872,0,0);}
.m4d_c00035{transform:matrix(0.204337,0.006334,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204337,0.006334,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204337,0.006334,-0.007746,0.249880,0,0);}
.mb1_c00035{transform:matrix(0.204817,0.006349,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204817,0.006349,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204817,0.006349,-0.007746,0.249880,0,0);}
.m16_c00035{transform:matrix(0.205246,0.006363,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205246,0.006363,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205246,0.006363,-0.007746,0.249880,0,0);}
.md9_c00035{transform:matrix(0.206326,0.005158,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206326,0.005158,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206326,0.005158,-0.006248,0.249922,0,0);}
.m74_c00035{transform:matrix(0.206581,0.006404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206581,0.006404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206581,0.006404,-0.007746,0.249880,0,0);}
.m95_c00035{transform:matrix(0.206946,0.006415,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206946,0.006415,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206946,0.006415,-0.007746,0.249880,0,0);}
.mce_c00035{transform:matrix(0.207115,0.005178,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207115,0.005178,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207115,0.005178,-0.006248,0.249922,0,0);}
.m77_c00035{transform:matrix(0.207430,0.006430,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207430,0.006430,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207430,0.006430,-0.007746,0.249880,0,0);}
.m38_c00035{transform:matrix(0.207735,0.006440,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207735,0.006440,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207735,0.006440,-0.007746,0.249880,0,0);}
.mdc_c00035{transform:matrix(0.207915,0.005198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207915,0.005198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207915,0.005198,-0.006248,0.249922,0,0);}
.ma_c00035{transform:matrix(0.208228,0.006670,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208228,0.006670,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208228,0.006670,-0.008004,0.249872,0,0);}
.m49_c00035{transform:matrix(0.208310,0.006458,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208310,0.006458,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208310,0.006458,-0.007746,0.249880,0,0);}
.m8e_c00035{transform:matrix(0.208610,0.006467,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208610,0.006467,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208610,0.006467,-0.007746,0.249880,0,0);}
.m30_c00035{transform:matrix(0.209125,0.006483,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209125,0.006483,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209125,0.006483,-0.007746,0.249880,0,0);}
.m87_c00035{transform:matrix(0.210444,0.006524,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210444,0.006524,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210444,0.006524,-0.007746,0.249880,0,0);}
.m96_c00035{transform:matrix(0.210499,0.006525,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210499,0.006525,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210499,0.006525,-0.007746,0.249880,0,0);}
.m58_c00035{transform:matrix(0.211483,0.006556,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211483,0.006556,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211483,0.006556,-0.007746,0.249880,0,0);}
.mc2_c00035{transform:matrix(0.212044,0.005301,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212044,0.005301,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212044,0.005301,-0.006248,0.249922,0,0);}
.mb6_c00035{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.mdd_c00035{transform:matrix(0.212958,0.005324,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212958,0.005324,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212958,0.005324,-0.006248,0.249922,0,0);}
.md5_c00035{transform:matrix(0.213528,0.005338,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213528,0.005338,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213528,0.005338,-0.006248,0.249922,0,0);}
.m8_c00035{transform:matrix(0.213670,0.006844,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213670,0.006844,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213670,0.006844,-0.008004,0.249872,0,0);}
.mb5_c00035{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m7a_c00035{transform:matrix(0.215466,0.006679,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215466,0.006679,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215466,0.006679,-0.007746,0.249880,0,0);}
.m54_c00035{transform:matrix(0.215946,0.006694,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215946,0.006694,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215946,0.006694,-0.007746,0.249880,0,0);}
.m6_c00035{transform:matrix(0.218458,0.006998,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218458,0.006998,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218458,0.006998,-0.008004,0.249872,0,0);}
.m46_c00035{transform:matrix(0.218885,0.006785,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218885,0.006785,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218885,0.006785,-0.007746,0.249880,0,0);}
.mcc_c00035{transform:matrix(0.220451,0.005511,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220451,0.005511,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220451,0.005511,-0.006248,0.249922,0,0);}
.m53_c00035{transform:matrix(0.220889,0.006848,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220889,0.006848,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220889,0.006848,-0.007746,0.249880,0,0);}
.me3_c00035{transform:matrix(0.221196,0.005530,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221196,0.005530,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221196,0.005530,-0.006248,0.249922,0,0);}
.m56_c00035{transform:matrix(0.221364,0.006862,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221364,0.006862,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221364,0.006862,-0.007746,0.249880,0,0);}
.mb4_c00035{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mbd_c00035{transform:matrix(0.222336,0.005558,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222336,0.005558,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222336,0.005558,-0.006248,0.249922,0,0);}
.mb0_c00035{transform:matrix(0.223158,0.006918,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223158,0.006918,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223158,0.006918,-0.007746,0.249880,0,0);}
.mdb_c00035{transform:matrix(0.226784,0.005670,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226784,0.005670,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226784,0.005670,-0.006248,0.249922,0,0);}
.m36_c00035{transform:matrix(0.228120,0.007072,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228120,0.007072,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228120,0.007072,-0.007746,0.249880,0,0);}
.mb2_c00035{transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);}
.mc8_c00035{transform:matrix(0.230343,0.005759,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230343,0.005759,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230343,0.005759,-0.006248,0.249922,0,0);}
.m35_c00035{transform:matrix(0.233093,0.007226,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233093,0.007226,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233093,0.007226,-0.007746,0.249880,0,0);}
.m86_c00035{transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);}
.mb3_c00035{transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.248371,0.007699,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248371,0.007699,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248371,0.007699,-0.007746,0.249880,0,0);}
.m7c_c00035{transform:matrix(0.248531,0.007704,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248531,0.007704,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248531,0.007704,-0.007746,0.249880,0,0);}
.m52_c00035{transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);}
.me1_c00035{transform:matrix(0.259409,0.006485,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259409,0.006485,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259409,0.006485,-0.006248,0.249922,0,0);}
.mcb_c00035{transform:matrix(0.265112,0.006628,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265112,0.006628,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265112,0.006628,-0.006248,0.249922,0,0);}
.mb7_c00035{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.me0_c00035{transform:matrix(0.280497,0.007012,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280497,0.007012,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280497,0.007012,-0.006248,0.249922,0,0);}
.m6f_c00035{transform:matrix(0.283619,0.008792,-0.007746,0.249880,0,0);-ms-transform:matrix(0.283619,0.008792,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.283619,0.008792,-0.007746,0.249880,0,0);}
.m3c_c00035{transform:matrix(0.283754,0.008796,-0.007746,0.249880,0,0);-ms-transform:matrix(0.283754,0.008796,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.283754,0.008796,-0.007746,0.249880,0,0);}
.m24_c00035{transform:matrix(0.297507,0.009223,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297507,0.009223,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297507,0.009223,-0.007746,0.249880,0,0);}
.m83_c00035{transform:matrix(0.304789,0.009448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.304789,0.009448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.304789,0.009448,-0.007746,0.249880,0,0);}
.m82_c00035{transform:matrix(0.320671,0.009941,-0.007746,0.249880,0,0);-ms-transform:matrix(0.320671,0.009941,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.320671,0.009941,-0.007746,0.249880,0,0);}
.mc7_c00035{transform:matrix(0.403244,0.010081,-0.006248,0.249922,0,0);-ms-transform:matrix(0.403244,0.010081,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.403244,0.010081,-0.006248,0.249922,0,0);}
.mc6_c00035{transform:matrix(0.447765,0.011194,-0.006248,0.249922,0,0);-ms-transform:matrix(0.447765,0.011194,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.447765,0.011194,-0.006248,0.249922,0,0);}
.mea_c00035{transform:matrix(2.157920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.157920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.157920,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:0.000000px;}
.fc0_c00035{color:transparent;}
.fs17_c00035{font-size:22.050000px;}
.fsa_c00035{font-size:58.828247px;}
.fs12_c00035{font-size:60.919028px;}
.fs7_c00035{font-size:60.929255px;}
.fs15_c00035{font-size:61.969356px;}
.fs1_c00035{font-size:62.969280px;}
.fsb_c00035{font-size:63.030264px;}
.fsf_c00035{font-size:64.050000px;}
.fs8_c00035{font-size:65.131273px;}
.fs14_c00035{font-size:66.170669px;}
.fs9_c00035{font-size:66.181777px;}
.fs16_c00035{font-size:67.216260px;}
.fs3_c00035{font-size:67.232282px;}
.fs10_c00035{font-size:68.271325px;}
.fse_c00035{font-size:68.282786px;}
.fs2_c00035{font-size:69.319956px;}
.fsd_c00035{font-size:69.333291px;}
.fs13_c00035{font-size:70.371981px;}
.fs6_c00035{font-size:70.383795px;}
.fs11_c00035{font-size:71.422309px;}
.fs5_c00035{font-size:71.434299px;}
.fs4_c00035{font-size:72.484804px;}
.fsc_c00035{font-size:74.585813px;}
.fs0_c00035{font-size:77.662112px;}
.y0_c00035{bottom:0.000000px;}
.ye6_c00035{bottom:37.366296px;}
.ye5_c00035{bottom:37.877664px;}
.ye4_c00035{bottom:38.606007px;}
.ye3_c00035{bottom:41.168787px;}
.ye2_c00035{bottom:41.744307px;}
.ye1_c00035{bottom:42.124500px;}
.ye0_c00035{bottom:54.668100px;}
.ydf_c00035{bottom:55.093725px;}
.yde_c00035{bottom:55.564313px;}
.ydd_c00035{bottom:57.009075px;}
.ydc_c00035{bottom:57.332400px;}
.ydb_c00035{bottom:57.776625px;}
.yda_c00035{bottom:58.441838px;}
.yd9_c00035{bottom:60.009000px;}
.yd8_c00035{bottom:60.730350px;}
.yd7_c00035{bottom:71.544000px;}
.yd6_c00035{bottom:74.057963px;}
.yd5_c00035{bottom:74.575575px;}
.yd4_c00035{bottom:75.299250px;}
.yd3_c00035{bottom:76.592963px;}
.yd2_c00035{bottom:78.286988px;}
.yd1_c00035{bottom:89.177813px;}
.yd0_c00035{bottom:89.840063px;}
.ycf_c00035{bottom:91.257038px;}
.yce_c00035{bottom:93.819788px;}
.ycd_c00035{bottom:94.229025px;}
.ycc_c00035{bottom:95.570250px;}
.ycb_c00035{bottom:107.712187px;}
.yca_c00035{bottom:108.330900px;}
.yc9_c00035{bottom:108.663675px;}
.yc8_c00035{bottom:109.030500px;}
.yc7_c00035{bottom:109.995150px;}
.yc6_c00035{bottom:110.619263px;}
.yc5_c00035{bottom:110.886638px;}
.yc4_c00035{bottom:111.829425px;}
.yc3_c00035{bottom:113.124300px;}
.yc2_c00035{bottom:124.230075px;}
.yc1_c00035{bottom:124.798913px;}
.yc0_c00035{bottom:125.305650px;}
.ybf_c00035{bottom:127.664025px;}
.ybe_c00035{bottom:128.730300px;}
.ybd_c00035{bottom:130.107938px;}
.ybc_c00035{bottom:130.438688px;}
.ybb_c00035{bottom:131.220450px;}
.yba_c00035{bottom:142.432088px;}
.yb9_c00035{bottom:143.134388px;}
.yb8_c00035{bottom:143.552588px;}
.yb7_c00035{bottom:144.733125px;}
.yb6_c00035{bottom:145.867463px;}
.yb5_c00035{bottom:147.699000px;}
.ye7_c00035{bottom:147.960000px;}
.yb4_c00035{bottom:165.873000px;}
.yb3_c00035{bottom:176.797500px;}
.yb2_c00035{bottom:178.462002px;}
.yb1_c00035{bottom:179.318058px;}
.yb0_c00035{bottom:181.236094px;}
.yaf_c00035{bottom:182.687454px;}
.yae_c00035{bottom:182.887857px;}
.yad_c00035{bottom:194.117203px;}
.yac_c00035{bottom:194.850406px;}
.yab_c00035{bottom:195.553026px;}
.yaa_c00035{bottom:196.008733px;}
.ya9_c00035{bottom:197.169931px;}
.ya8_c00035{bottom:197.480044px;}
.ya7_c00035{bottom:199.013790px;}
.ya6_c00035{bottom:199.635516px;}
.ya5_c00035{bottom:200.105382px;}
.ya4_c00035{bottom:201.262872px;}
.ya3_c00035{bottom:210.596247px;}
.ya2_c00035{bottom:212.835348px;}
.ya1_c00035{bottom:214.916772px;}
.ya0_c00035{bottom:215.222338px;}
.y9f_c00035{bottom:216.481594px;}
.y9e_c00035{bottom:217.029873px;}
.y9d_c00035{bottom:218.552974px;}
.y9c_c00035{bottom:228.824169px;}
.y9b_c00035{bottom:230.656822px;}
.y9a_c00035{bottom:231.457485px;}
.y99_c00035{bottom:236.193438px;}
.y98_c00035{bottom:236.778804px;}
.y97_c00035{bottom:239.069580px;}
.y96_c00035{bottom:239.527330px;}
.y95_c00035{bottom:240.710316px;}
.y94_c00035{bottom:246.340978px;}
.y93_c00035{bottom:246.895449px;}
.y92_c00035{bottom:248.711637px;}
.y91_c00035{bottom:249.204285px;}
.y90_c00035{bottom:251.200569px;}
.y8f_c00035{bottom:252.351639px;}
.y8e_c00035{bottom:254.753127px;}
.y8d_c00035{bottom:263.735221px;}
.y8c_c00035{bottom:264.939015px;}
.y8b_c00035{bottom:265.476457px;}
.y8a_c00035{bottom:267.169764px;}
.y89_c00035{bottom:267.891112px;}
.y88_c00035{bottom:269.861347px;}
.y87_c00035{bottom:272.037111px;}
.y86_c00035{bottom:287.155833px;}
.y85_c00035{bottom:288.048135px;}
.y84_c00035{bottom:288.328129px;}
.y83_c00035{bottom:289.052374px;}
.y82_c00035{bottom:298.155133px;}
.y81_c00035{bottom:298.984014px;}
.y80_c00035{bottom:299.714569px;}
.y7f_c00035{bottom:301.426062px;}
.y7e_c00035{bottom:304.153180px;}
.y7d_c00035{bottom:304.666254px;}
.y7c_c00035{bottom:307.157883px;}
.y7b_c00035{bottom:317.463903px;}
.y7a_c00035{bottom:319.153443px;}
.y79_c00035{bottom:319.769260px;}
.y78_c00035{bottom:321.833587px;}
.y77_c00035{bottom:324.172425px;}
.y76_c00035{bottom:333.872496px;}
.y75_c00035{bottom:334.339194px;}
.y74_c00035{bottom:336.428292px;}
.y73_c00035{bottom:337.696449px;}
.y72_c00035{bottom:338.191987px;}
.y71_c00035{bottom:339.452658px;}
.y70_c00035{bottom:340.649452px;}
.y6f_c00035{bottom:350.524464px;}
.y6e_c00035{bottom:353.130036px;}
.y6d_c00035{bottom:354.752994px;}
.y6c_c00035{bottom:356.641803px;}
.y6b_c00035{bottom:357.160915px;}
.y6a_c00035{bottom:358.208347px;}
.y69_c00035{bottom:368.245395px;}
.y68_c00035{bottom:368.840137px;}
.y67_c00035{bottom:369.906772px;}
.y66_c00035{bottom:370.875609px;}
.y65_c00035{bottom:372.578010px;}
.y64_c00035{bottom:373.183528px;}
.y63_c00035{bottom:373.882660px;}
.y62_c00035{bottom:375.768847px;}
.y61_c00035{bottom:385.318354px;}
.y60_c00035{bottom:387.831147px;}
.y5f_c00035{bottom:389.585356px;}
.y5e_c00035{bottom:390.266122px;}
.y5d_c00035{bottom:392.122980px;}
.y5c_c00035{bottom:393.446952px;}
.y5b_c00035{bottom:393.866739px;}
.y5a_c00035{bottom:403.212619px;}
.y59_c00035{bottom:404.744376px;}
.y58_c00035{bottom:405.967372px;}
.y57_c00035{bottom:406.704862px;}
.y56_c00035{bottom:407.219385px;}
.y55_c00035{bottom:408.521571px;}
.y54_c00035{bottom:409.429065px;}
.y53_c00035{bottom:411.156586px;}
.y52_c00035{bottom:419.915454px;}
.y51_c00035{bottom:421.503522px;}
.y50_c00035{bottom:422.259721px;}
.y4f_c00035{bottom:423.836304px;}
.y4e_c00035{bottom:426.062296px;}
.y4d_c00035{bottom:428.220304px;}
.y4c_c00035{bottom:429.257940px;}
.y4b_c00035{bottom:438.834976px;}
.y4a_c00035{bottom:439.194361px;}
.y49_c00035{bottom:440.339602px;}
.y48_c00035{bottom:441.388417px;}
.y47_c00035{bottom:442.594315px;}
.y46_c00035{bottom:443.490604px;}
.y45_c00035{bottom:444.295722px;}
.y44_c00035{bottom:445.069081px;}
.y43_c00035{bottom:445.725300px;}
.y42_c00035{bottom:455.727808px;}
.y41_c00035{bottom:456.208765px;}
.y40_c00035{bottom:457.915185px;}
.y3f_c00035{bottom:458.613946px;}
.y3e_c00035{bottom:460.808949px;}
.y3d_c00035{bottom:461.470464px;}
.y3c_c00035{bottom:463.287994px;}
.y3b_c00035{bottom:471.436587px;}
.y3a_c00035{bottom:473.709228px;}
.y39_c00035{bottom:475.720957px;}
.y38_c00035{bottom:476.600412px;}
.y37_c00035{bottom:477.126931px;}
.y36_c00035{bottom:478.559085px;}
.y35_c00035{bottom:480.308601px;}
.y34_c00035{bottom:489.736707px;}
.y33_c00035{bottom:490.436712px;}
.y32_c00035{bottom:490.832412px;}
.y31_c00035{bottom:492.503131px;}
.y30_c00035{bottom:493.914592px;}
.y2f_c00035{bottom:494.514705px;}
.y2e_c00035{bottom:496.620684px;}
.y2d_c00035{bottom:498.134921px;}
.y2c_c00035{bottom:507.154789px;}
.y2b_c00035{bottom:507.884741px;}
.y2a_c00035{bottom:508.499814px;}
.y29_c00035{bottom:510.192097px;}
.y28_c00035{bottom:510.732376px;}
.y27_c00035{bottom:512.998093px;}
.y26_c00035{bottom:514.349256px;}
.y25_c00035{bottom:515.163301px;}
.y24_c00035{bottom:525.358887px;}
.y23_c00035{bottom:525.942464px;}
.y22_c00035{bottom:527.059107px;}
.y21_c00035{bottom:528.593638px;}
.y20_c00035{bottom:529.214310px;}
.y1f_c00035{bottom:531.053958px;}
.y1e_c00035{bottom:532.645056px;}
.y1d_c00035{bottom:532.969446px;}
.y1c_c00035{bottom:542.117583px;}
.y1b_c00035{bottom:543.239907px;}
.y1a_c00035{bottom:544.663179px;}
.y19_c00035{bottom:545.969039px;}
.y18_c00035{bottom:546.803806px;}
.y17_c00035{bottom:547.209007px;}
.y16_c00035{bottom:548.783637px;}
.y15_c00035{bottom:550.540500px;}
.y14_c00035{bottom:559.646628px;}
.y13_c00035{bottom:560.871780px;}
.y12_c00035{bottom:561.435540px;}
.y11_c00035{bottom:562.654212px;}
.y10_c00035{bottom:563.115408px;}
.yf_c00035{bottom:564.405036px;}
.ye_c00035{bottom:564.864828px;}
.yd_c00035{bottom:565.926000px;}
.yc_c00035{bottom:576.553233px;}
.yb_c00035{bottom:577.116226px;}
.ya_c00035{bottom:578.257350px;}
.y9_c00035{bottom:579.067972px;}
.y8_c00035{bottom:580.277311px;}
.y7_c00035{bottom:580.574910px;}
.y6_c00035{bottom:581.716705px;}
.y5_c00035{bottom:582.135118px;}
.y4_c00035{bottom:583.484680px;}
.y3_c00035{bottom:592.916028px;}
.y2_c00035{bottom:595.485084px;}
.y1_c00035{bottom:596.971500px;}
.h19_c00035{height:22.050000px;}
.hc_c00035{height:58.828247px;}
.h14_c00035{height:60.919028px;}
.h9_c00035{height:60.929255px;}
.h17_c00035{height:61.969356px;}
.h3_c00035{height:62.969280px;}
.hd_c00035{height:63.030264px;}
.h11_c00035{height:64.050000px;}
.ha_c00035{height:65.131273px;}
.h16_c00035{height:66.170669px;}
.hb_c00035{height:66.181777px;}
.h18_c00035{height:67.216260px;}
.h5_c00035{height:67.232282px;}
.h12_c00035{height:68.271325px;}
.h10_c00035{height:68.282786px;}
.h4_c00035{height:69.319956px;}
.hf_c00035{height:69.333291px;}
.h15_c00035{height:70.371981px;}
.h8_c00035{height:70.383795px;}
.h13_c00035{height:71.422309px;}
.h7_c00035{height:71.434299px;}
.h6_c00035{height:72.484804px;}
.he_c00035{height:74.585813px;}
.h2_c00035{height:77.662112px;}
.h0_c00035{height:639.600000px;}
.h1_c00035{height:639.750000px;}
.w1_c00035{width:363.750000px;}
.w0_c00035{width:363.900000px;}
.x0_c00035{left:0.000000px;}
.x70_c00035{left:27.454073px;}
.x19_c00035{left:33.282778px;}
.x66_c00035{left:34.723109px;}
.x73_c00035{left:36.450000px;}
.x6a_c00035{left:37.467765px;}
.x5f_c00035{left:39.020862px;}
.x50_c00035{left:40.171697px;}
.x42_c00035{left:41.279412px;}
.x38_c00035{left:42.805951px;}
.x20_c00035{left:44.101204px;}
.x12_c00035{left:45.304500px;}
.x4_c00035{left:47.512224px;}
.x54_c00035{left:49.622973px;}
.x59_c00035{left:51.003656px;}
.x43_c00035{left:55.256831px;}
.x1_c00035{left:58.564500px;}
.x7a_c00035{left:64.358250px;}
.x81_c00035{left:65.366737px;}
.x31_c00035{left:67.572904px;}
.x21_c00035{left:71.232541px;}
.x39_c00035{left:73.323615px;}
.x7b_c00035{left:76.627650px;}
.x63_c00035{left:79.010532px;}
.x4c_c00035{left:80.949210px;}
.x6b_c00035{left:83.766368px;}
.x51_c00035{left:86.188311px;}
.x67_c00035{left:89.134677px;}
.xd_c00035{left:90.955500px;}
.x27_c00035{left:94.417743px;}
.x32_c00035{left:96.200938px;}
.x74_c00035{left:98.010000px;}
.x1a_c00035{left:99.334870px;}
.x5_c00035{left:101.444845px;}
.x6c_c00035{left:102.555855px;}
.x2c_c00035{left:103.958292px;}
.x2_c00035{left:104.968549px;}
.x71_c00035{left:106.115939px;}
.x46_c00035{left:108.598632px;}
.xe_c00035{left:110.113500px;}
.x60_c00035{left:114.066537px;}
.x22_c00035{left:116.271436px;}
.x6_c00035{left:118.159862px;}
.x5a_c00035{left:123.514388px;}
.x2d_c00035{left:126.023989px;}
.x3e_c00035{left:128.144673px;}
.x47_c00035{left:133.572957px;}
.x52_c00035{left:134.701344px;}
.x3a_c00035{left:136.785709px;}
.x75_c00035{left:142.560000px;}
.x2a_c00035{left:146.791800px;}
.x61_c00035{left:150.035421px;}
.x13_c00035{left:152.772000px;}
.x48_c00035{left:155.188457px;}
.x33_c00035{left:159.270297px;}
.x44_c00035{left:161.254586px;}
.x1b_c00035{left:162.746777px;}
.x7_c00035{left:163.779930px;}
.x14_c00035{left:165.843000px;}
.x7c_c00035{left:167.119613px;}
.x3f_c00035{left:170.150673px;}
.x4d_c00035{left:173.590079px;}
.x8_c00035{left:175.646195px;}
.x7e_c00035{left:177.439613px;}
.x82_c00035{left:181.736550px;}
.xf_c00035{left:183.064500px;}
.x1c_c00035{left:184.124578px;}
.x3_c00035{left:185.171267px;}
.x40_c00035{left:186.748173px;}
.x5b_c00035{left:189.201434px;}
.x15_c00035{left:192.771000px;}
.x55_c00035{left:196.407030px;}
.x72_c00035{left:197.435711px;}
.x2e_c00035{left:199.203768px;}
.x6d_c00035{left:201.173676px;}
.x3b_c00035{left:202.247118px;}
.x34_c00035{left:203.933830px;}
.x23_c00035{left:209.790319px;}
.x5c_c00035{left:213.245678px;}
.x84_c00035{left:214.263000px;}
.x49_c00035{left:215.965083px;}
.x78_c00035{left:218.143500px;}
.x57_c00035{left:219.754853px;}
.x7f_c00035{left:221.308913px;}
.x2f_c00035{left:222.470965px;}
.x9_c00035{left:223.983668px;}
.x62_c00035{left:227.805003px;}
.x28_c00035{left:231.649474px;}
.x10_c00035{left:233.842500px;}
.x16_c00035{left:234.895500px;}
.x4e_c00035{left:236.017751px;}
.x1d_c00035{left:237.064380px;}
.x68_c00035{left:238.923581px;}
.x76_c00035{left:241.650000px;}
.x35_c00035{left:242.803666px;}
.x79_c00035{left:246.235500px;}
.x85_c00035{left:247.369500px;}
.x3c_c00035{left:248.600294px;}
.x41_c00035{left:249.989673px;}
.x80_c00035{left:253.075275px;}
.x7d_c00035{left:254.490263px;}
.xa_c00035{left:256.361513px;}
.x83_c00035{left:258.643912px;}
.x64_c00035{left:264.698058px;}
.x24_c00035{left:266.220586px;}
.x5d_c00035{left:269.708945px;}
.x3d_c00035{left:270.862748px;}
.x56_c00035{left:273.291948px;}
.x1e_c00035{left:275.555251px;}
.x30_c00035{left:279.357232px;}
.x17_c00035{left:280.807500px;}
.x53_c00035{left:282.862769px;}
.x36_c00035{left:285.219921px;}
.x25_c00035{left:286.739737px;}
.x4a_c00035{left:288.648326px;}
.x6e_c00035{left:293.965928px;}
.x1f_c00035{left:295.688007px;}
.x37_c00035{left:298.556595px;}
.x29_c00035{left:300.536113px;}
.xb_c00035{left:301.960602px;}
.x77_c00035{left:303.210000px;}
.x11_c00035{left:308.380500px;}
.x4b_c00035{left:309.867779px;}
.x26_c00035{left:311.061481px;}
.x18_c00035{left:317.011500px;}
.x69_c00035{left:318.902021px;}
.x58_c00035{left:321.975191px;}
.x6f_c00035{left:323.284368px;}
.xc_c00035{left:324.453632px;}
.x45_c00035{left:326.187701px;}
.x5e_c00035{left:327.766758px;}
.x65_c00035{left:328.914156px;}
.x2b_c00035{left:330.351300px;}
.x4f_c00035{left:336.245282px;}
.x86_c00035{left:356.670000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.fs17_c00035{font-size:19.600000pt;}
.fsa_c00035{font-size:52.291775pt;}
.fs12_c00035{font-size:54.150247pt;}
.fs7_c00035{font-size:54.159338pt;}
.fs15_c00035{font-size:55.083872pt;}
.fs1_c00035{font-size:55.972693pt;}
.fsb_c00035{font-size:56.026902pt;}
.fsf_c00035{font-size:56.933333pt;}
.fs8_c00035{font-size:57.894465pt;}
.fs14_c00035{font-size:58.818372pt;}
.fs9_c00035{font-size:58.828247pt;}
.fs16_c00035{font-size:59.747787pt;}
.fs3_c00035{font-size:59.762028pt;}
.fs10_c00035{font-size:60.685622pt;}
.fse_c00035{font-size:60.695810pt;}
.fs2_c00035{font-size:61.617738pt;}
.fsd_c00035{font-size:61.629592pt;}
.fs13_c00035{font-size:62.552872pt;}
.fs6_c00035{font-size:62.563373pt;}
.fs11_c00035{font-size:63.486497pt;}
.fs5_c00035{font-size:63.497155pt;}
.fs4_c00035{font-size:64.430937pt;}
.fsc_c00035{font-size:66.298500pt;}
.fs0_c00035{font-size:69.032988pt;}
.y0_c00035{bottom:0.000000pt;}
.ye6_c00035{bottom:33.214485pt;}
.ye5_c00035{bottom:33.669035pt;}
.ye4_c00035{bottom:34.316451pt;}
.ye3_c00035{bottom:36.594477pt;}
.ye2_c00035{bottom:37.106051pt;}
.ye1_c00035{bottom:37.444000pt;}
.ye0_c00035{bottom:48.593867pt;}
.ydf_c00035{bottom:48.972200pt;}
.yde_c00035{bottom:49.390500pt;}
.ydd_c00035{bottom:50.674733pt;}
.ydc_c00035{bottom:50.962133pt;}
.ydb_c00035{bottom:51.357000pt;}
.yda_c00035{bottom:51.948300pt;}
.yd9_c00035{bottom:53.341333pt;}
.yd8_c00035{bottom:53.982533pt;}
.yd7_c00035{bottom:63.594667pt;}
.yd6_c00035{bottom:65.829300pt;}
.yd5_c00035{bottom:66.289400pt;}
.yd4_c00035{bottom:66.932667pt;}
.yd3_c00035{bottom:68.082633pt;}
.yd2_c00035{bottom:69.588433pt;}
.yd1_c00035{bottom:79.269167pt;}
.yd0_c00035{bottom:79.857833pt;}
.ycf_c00035{bottom:81.117367pt;}
.yce_c00035{bottom:83.395367pt;}
.ycd_c00035{bottom:83.759133pt;}
.ycc_c00035{bottom:84.951333pt;}
.ycb_c00035{bottom:95.744167pt;}
.yca_c00035{bottom:96.294133pt;}
.yc9_c00035{bottom:96.589933pt;}
.yc8_c00035{bottom:96.916000pt;}
.yc7_c00035{bottom:97.773467pt;}
.yc6_c00035{bottom:98.328233pt;}
.yc5_c00035{bottom:98.565900pt;}
.yc4_c00035{bottom:99.403933pt;}
.yc3_c00035{bottom:100.554933pt;}
.yc2_c00035{bottom:110.426733pt;}
.yc1_c00035{bottom:110.932367pt;}
.yc0_c00035{bottom:111.382800pt;}
.ybf_c00035{bottom:113.479133pt;}
.ybe_c00035{bottom:114.426933pt;}
.ybd_c00035{bottom:115.651500pt;}
.ybc_c00035{bottom:115.945500pt;}
.ybb_c00035{bottom:116.640400pt;}
.yba_c00035{bottom:126.606300pt;}
.yb9_c00035{bottom:127.230567pt;}
.yb8_c00035{bottom:127.602300pt;}
.yb7_c00035{bottom:128.651667pt;}
.yb6_c00035{bottom:129.659967pt;}
.yb5_c00035{bottom:131.288000pt;}
.ye7_c00035{bottom:131.520000pt;}
.yb4_c00035{bottom:147.442667pt;}
.yb3_c00035{bottom:157.153333pt;}
.yb2_c00035{bottom:158.632891pt;}
.yb1_c00035{bottom:159.393829pt;}
.yb0_c00035{bottom:161.098751pt;}
.yaf_c00035{bottom:162.388848pt;}
.yae_c00035{bottom:162.566984pt;}
.yad_c00035{bottom:172.548625pt;}
.yac_c00035{bottom:173.200361pt;}
.yab_c00035{bottom:173.824912pt;}
.yaa_c00035{bottom:174.229985pt;}
.ya9_c00035{bottom:175.262161pt;}
.ya8_c00035{bottom:175.537817pt;}
.ya7_c00035{bottom:176.901147pt;}
.ya6_c00035{bottom:177.453792pt;}
.ya5_c00035{bottom:177.871451pt;}
.ya4_c00035{bottom:178.900331pt;}
.ya3_c00035{bottom:187.196664pt;}
.ya2_c00035{bottom:189.186976pt;}
.ya1_c00035{bottom:191.037131pt;}
.ya0_c00035{bottom:191.308745pt;}
.y9f_c00035{bottom:192.428084pt;}
.y9e_c00035{bottom:192.915443pt;}
.y9d_c00035{bottom:194.269311pt;}
.y9c_c00035{bottom:203.399261pt;}
.y9b_c00035{bottom:205.028287pt;}
.y9a_c00035{bottom:205.739987pt;}
.y99_c00035{bottom:209.949723pt;}
.y98_c00035{bottom:210.470048pt;}
.y97_c00035{bottom:212.506293pt;}
.y96_c00035{bottom:212.913183pt;}
.y95_c00035{bottom:213.964725pt;}
.y94_c00035{bottom:218.969759pt;}
.y93_c00035{bottom:219.462621pt;}
.y92_c00035{bottom:221.077011pt;}
.y91_c00035{bottom:221.514920pt;}
.y90_c00035{bottom:223.289395pt;}
.y8f_c00035{bottom:224.312568pt;}
.y8e_c00035{bottom:226.447224pt;}
.y8d_c00035{bottom:234.431308pt;}
.y8c_c00035{bottom:235.501347pt;}
.y8b_c00035{bottom:235.979073pt;}
.y8a_c00035{bottom:237.484235pt;}
.y89_c00035{bottom:238.125433pt;}
.y88_c00035{bottom:239.876753pt;}
.y87_c00035{bottom:241.810765pt;}
.y86_c00035{bottom:255.249629pt;}
.y85_c00035{bottom:256.042787pt;}
.y84_c00035{bottom:256.291671pt;}
.y83_c00035{bottom:256.935444pt;}
.y82_c00035{bottom:265.026785pt;}
.y81_c00035{bottom:265.763568pt;}
.y80_c00035{bottom:266.412951pt;}
.y7f_c00035{bottom:267.934277pt;}
.y7e_c00035{bottom:270.358383pt;}
.y7d_c00035{bottom:270.814448pt;}
.y7c_c00035{bottom:273.029229pt;}
.y7b_c00035{bottom:282.190136pt;}
.y7a_c00035{bottom:283.691949pt;}
.y79_c00035{bottom:284.239343pt;}
.y78_c00035{bottom:286.074300pt;}
.y77_c00035{bottom:288.153267pt;}
.y76_c00035{bottom:296.775552pt;}
.y75_c00035{bottom:297.190395pt;}
.y74_c00035{bottom:299.047371pt;}
.y73_c00035{bottom:300.174621pt;}
.y72_c00035{bottom:300.615100pt;}
.y71_c00035{bottom:301.735696pt;}
.y70_c00035{bottom:302.799513pt;}
.y6f_c00035{bottom:311.577301pt;}
.y6e_c00035{bottom:313.893365pt;}
.y6d_c00035{bottom:315.335995pt;}
.y6c_c00035{bottom:317.014936pt;}
.y6b_c00035{bottom:317.476369pt;}
.y6a_c00035{bottom:318.407420pt;}
.y69_c00035{bottom:327.329240pt;}
.y68_c00035{bottom:327.857900pt;}
.y67_c00035{bottom:328.806020pt;}
.y66_c00035{bottom:329.667208pt;}
.y65_c00035{bottom:331.180453pt;}
.y64_c00035{bottom:331.718692pt;}
.y63_c00035{bottom:332.340143pt;}
.y62_c00035{bottom:334.016753pt;}
.y61_c00035{bottom:342.505204pt;}
.y60_c00035{bottom:344.738797pt;}
.y5f_c00035{bottom:346.298095pt;}
.y5e_c00035{bottom:346.903220pt;}
.y5d_c00035{bottom:348.553760pt;}
.y5c_c00035{bottom:349.730624pt;}
.y5b_c00035{bottom:350.103768pt;}
.y5a_c00035{bottom:358.411217pt;}
.y59_c00035{bottom:359.772779pt;}
.y58_c00035{bottom:360.859887pt;}
.y57_c00035{bottom:361.515433pt;}
.y56_c00035{bottom:361.972787pt;}
.y55_c00035{bottom:363.130285pt;}
.y54_c00035{bottom:363.936947pt;}
.y53_c00035{bottom:365.472521pt;}
.y52_c00035{bottom:373.258181pt;}
.y51_c00035{bottom:374.669797pt;}
.y50_c00035{bottom:375.341975pt;}
.y4f_c00035{bottom:376.743381pt;}
.y4e_c00035{bottom:378.722041pt;}
.y4d_c00035{bottom:380.640271pt;}
.y4c_c00035{bottom:381.562613pt;}
.y4b_c00035{bottom:390.075535pt;}
.y4a_c00035{bottom:390.394988pt;}
.y49_c00035{bottom:391.412980pt;}
.y48_c00035{bottom:392.345260pt;}
.y47_c00035{bottom:393.417169pt;}
.y46_c00035{bottom:394.213871pt;}
.y45_c00035{bottom:394.929531pt;}
.y44_c00035{bottom:395.616961pt;}
.y43_c00035{bottom:396.200267pt;}
.y42_c00035{bottom:405.091385pt;}
.y41_c00035{bottom:405.518903pt;}
.y40_c00035{bottom:407.035720pt;}
.y3f_c00035{bottom:407.656841pt;}
.y3e_c00035{bottom:409.607955pt;}
.y3d_c00035{bottom:410.195968pt;}
.y3c_c00035{bottom:411.811551pt;}
.y3b_c00035{bottom:419.054744pt;}
.y3a_c00035{bottom:421.074869pt;}
.y39_c00035{bottom:422.863073pt;}
.y38_c00035{bottom:423.644811pt;}
.y37_c00035{bottom:424.112828pt;}
.y36_c00035{bottom:425.385853pt;}
.y35_c00035{bottom:426.940979pt;}
.y34_c00035{bottom:435.321517pt;}
.y33_c00035{bottom:435.943744pt;}
.y32_c00035{bottom:436.295477pt;}
.y31_c00035{bottom:437.780561pt;}
.y30_c00035{bottom:439.035193pt;}
.y2f_c00035{bottom:439.568627pt;}
.y2e_c00035{bottom:441.440608pt;}
.y2d_c00035{bottom:442.786596pt;}
.y2c_c00035{bottom:450.804257pt;}
.y2b_c00035{bottom:451.453103pt;}
.y2a_c00035{bottom:451.999835pt;}
.y29_c00035{bottom:453.504087pt;}
.y28_c00035{bottom:453.984335pt;}
.y27_c00035{bottom:455.998305pt;}
.y26_c00035{bottom:457.199339pt;}
.y25_c00035{bottom:457.922935pt;}
.y24_c00035{bottom:466.985677pt;}
.y23_c00035{bottom:467.504412pt;}
.y22_c00035{bottom:468.496984pt;}
.y21_c00035{bottom:469.861012pt;}
.y20_c00035{bottom:470.412720pt;}
.y1f_c00035{bottom:472.047963pt;}
.y1e_c00035{bottom:473.462272pt;}
.y1d_c00035{bottom:473.750619pt;}
.y1c_c00035{bottom:481.882296pt;}
.y1b_c00035{bottom:482.879917pt;}
.y1a_c00035{bottom:484.145048pt;}
.y19_c00035{bottom:485.305812pt;}
.y18_c00035{bottom:486.047828pt;}
.y17_c00035{bottom:486.408007pt;}
.y16_c00035{bottom:487.807677pt;}
.y15_c00035{bottom:489.369333pt;}
.y14_c00035{bottom:497.463669pt;}
.y13_c00035{bottom:498.552693pt;}
.y12_c00035{bottom:499.053813pt;}
.y11_c00035{bottom:500.137077pt;}
.y10_c00035{bottom:500.547029pt;}
.yf_c00035{bottom:501.693365pt;}
.ye_c00035{bottom:502.102069pt;}
.yd_c00035{bottom:503.045333pt;}
.yc_c00035{bottom:512.491763pt;}
.yb_c00035{bottom:512.992201pt;}
.ya_c00035{bottom:514.006533pt;}
.y9_c00035{bottom:514.727087pt;}
.y8_c00035{bottom:515.802055pt;}
.y7_c00035{bottom:516.066587pt;}
.y6_c00035{bottom:517.081516pt;}
.y5_c00035{bottom:517.453439pt;}
.y4_c00035{bottom:518.653049pt;}
.y3_c00035{bottom:527.036469pt;}
.y2_c00035{bottom:529.320075pt;}
.y1_c00035{bottom:530.641333pt;}
.h19_c00035{height:19.600000pt;}
.hc_c00035{height:52.291775pt;}
.h14_c00035{height:54.150247pt;}
.h9_c00035{height:54.159338pt;}
.h17_c00035{height:55.083872pt;}
.h3_c00035{height:55.972693pt;}
.hd_c00035{height:56.026902pt;}
.h11_c00035{height:56.933333pt;}
.ha_c00035{height:57.894465pt;}
.h16_c00035{height:58.818372pt;}
.hb_c00035{height:58.828247pt;}
.h18_c00035{height:59.747787pt;}
.h5_c00035{height:59.762028pt;}
.h12_c00035{height:60.685622pt;}
.h10_c00035{height:60.695810pt;}
.h4_c00035{height:61.617738pt;}
.hf_c00035{height:61.629592pt;}
.h15_c00035{height:62.552872pt;}
.h8_c00035{height:62.563373pt;}
.h13_c00035{height:63.486497pt;}
.h7_c00035{height:63.497155pt;}
.h6_c00035{height:64.430937pt;}
.he_c00035{height:66.298500pt;}
.h2_c00035{height:69.032988pt;}
.h0_c00035{height:568.533333pt;}
.h1_c00035{height:568.666667pt;}
.w1_c00035{width:323.333333pt;}
.w0_c00035{width:323.466667pt;}
.x0_c00035{left:0.000000pt;}
.x70_c00035{left:24.403620pt;}
.x19_c00035{left:29.584692pt;}
.x66_c00035{left:30.864985pt;}
.x73_c00035{left:32.400000pt;}
.x6a_c00035{left:33.304680pt;}
.x5f_c00035{left:34.685211pt;}
.x50_c00035{left:35.708175pt;}
.x42_c00035{left:36.692811pt;}
.x38_c00035{left:38.049735pt;}
.x20_c00035{left:39.201071pt;}
.x12_c00035{left:40.270667pt;}
.x4_c00035{left:42.233088pt;}
.x54_c00035{left:44.109309pt;}
.x59_c00035{left:45.336583pt;}
.x43_c00035{left:49.117183pt;}
.x1_c00035{left:52.057333pt;}
.x7a_c00035{left:57.207333pt;}
.x81_c00035{left:58.103767pt;}
.x31_c00035{left:60.064804pt;}
.x21_c00035{left:63.317815pt;}
.x39_c00035{left:65.176547pt;}
.x7b_c00035{left:68.113467pt;}
.x63_c00035{left:70.231584pt;}
.x4c_c00035{left:71.954853pt;}
.x6b_c00035{left:74.458993pt;}
.x51_c00035{left:76.611832pt;}
.x67_c00035{left:79.230824pt;}
.xd_c00035{left:80.849333pt;}
.x27_c00035{left:83.926883pt;}
.x32_c00035{left:85.511945pt;}
.x74_c00035{left:87.120000pt;}
.x1a_c00035{left:88.297663pt;}
.x5_c00035{left:90.173196pt;}
.x6c_c00035{left:91.160760pt;}
.x2c_c00035{left:92.407371pt;}
.x2_c00035{left:93.305377pt;}
.x71_c00035{left:94.325279pt;}
.x46_c00035{left:96.532117pt;}
.xe_c00035{left:97.878667pt;}
.x60_c00035{left:101.392477pt;}
.x22_c00035{left:103.352388pt;}
.x6_c00035{left:105.030988pt;}
.x5a_c00035{left:109.790567pt;}
.x2d_c00035{left:112.021324pt;}
.x3e_c00035{left:113.906376pt;}
.x47_c00035{left:118.731517pt;}
.x52_c00035{left:119.734528pt;}
.x3a_c00035{left:121.587297pt;}
.x75_c00035{left:126.720000pt;}
.x2a_c00035{left:130.481600pt;}
.x61_c00035{left:133.364819pt;}
.x13_c00035{left:135.797333pt;}
.x48_c00035{left:137.945295pt;}
.x33_c00035{left:141.573597pt;}
.x44_c00035{left:143.337409pt;}
.x1b_c00035{left:144.663801pt;}
.x7_c00035{left:145.582160pt;}
.x14_c00035{left:147.416000pt;}
.x7c_c00035{left:148.550767pt;}
.x3f_c00035{left:151.245043pt;}
.x4d_c00035{left:154.302292pt;}
.x8_c00035{left:156.129951pt;}
.x7e_c00035{left:157.724100pt;}
.x82_c00035{left:161.543600pt;}
.xf_c00035{left:162.724000pt;}
.x1c_c00035{left:163.666292pt;}
.x3_c00035{left:164.596681pt;}
.x40_c00035{left:165.998376pt;}
.x5b_c00035{left:168.179052pt;}
.x15_c00035{left:171.352000pt;}
.x55_c00035{left:174.584027pt;}
.x72_c00035{left:175.498409pt;}
.x2e_c00035{left:177.070016pt;}
.x6d_c00035{left:178.821045pt;}
.x3b_c00035{left:179.775216pt;}
.x34_c00035{left:181.274516pt;}
.x23_c00035{left:186.480284pt;}
.x5c_c00035{left:189.551713pt;}
.x84_c00035{left:190.456000pt;}
.x49_c00035{left:191.968963pt;}
.x78_c00035{left:193.905333pt;}
.x57_c00035{left:195.337647pt;}
.x7f_c00035{left:196.719033pt;}
.x2f_c00035{left:197.751969pt;}
.x9_c00035{left:199.096593pt;}
.x62_c00035{left:202.493336pt;}
.x28_c00035{left:205.910644pt;}
.x10_c00035{left:207.860000pt;}
.x16_c00035{left:208.796000pt;}
.x4e_c00035{left:209.793556pt;}
.x1d_c00035{left:210.723893pt;}
.x68_c00035{left:212.376516pt;}
.x76_c00035{left:214.800000pt;}
.x35_c00035{left:215.825481pt;}
.x79_c00035{left:218.876000pt;}
.x85_c00035{left:219.884000pt;}
.x3c_c00035{left:220.978039pt;}
.x41_c00035{left:222.213043pt;}
.x80_c00035{left:224.955800pt;}
.x7d_c00035{left:226.213567pt;}
.xa_c00035{left:227.876900pt;}
.x83_c00035{left:229.905700pt;}
.x64_c00035{left:235.287163pt;}
.x24_c00035{left:236.640521pt;}
.x5d_c00035{left:239.741284pt;}
.x3d_c00035{left:240.766887pt;}
.x56_c00035{left:242.926176pt;}
.x1e_c00035{left:244.938001pt;}
.x30_c00035{left:248.317540pt;}
.x17_c00035{left:249.606667pt;}
.x53_c00035{left:251.433572pt;}
.x36_c00035{left:253.528819pt;}
.x25_c00035{left:254.879767pt;}
.x4a_c00035{left:256.576289pt;}
.x6e_c00035{left:261.303047pt;}
.x1f_c00035{left:262.833784pt;}
.x37_c00035{left:265.383640pt;}
.x29_c00035{left:267.143212pt;}
.xb_c00035{left:268.409424pt;}
.x77_c00035{left:269.520000pt;}
.x11_c00035{left:274.116000pt;}
.x4b_c00035{left:275.438025pt;}
.x26_c00035{left:276.499095pt;}
.x18_c00035{left:281.788000pt;}
.x69_c00035{left:283.468463pt;}
.x58_c00035{left:286.200169pt;}
.x6f_c00035{left:287.363883pt;}
.xc_c00035{left:288.403228pt;}
.x45_c00035{left:289.944623pt;}
.x5e_c00035{left:291.348229pt;}
.x65_c00035{left:292.368139pt;}
.x2b_c00035{left:293.645600pt;}
.x4f_c00035{left:298.884695pt;}
.x86_c00035{left:317.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00036 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00036 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00036 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00036 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00036.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00036{transform:matrix(0.015974,0.000592,-0.009253,0.249829,0,0);-ms-transform:matrix(0.015974,0.000592,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.015974,0.000592,-0.009253,0.249829,0,0);}
.m5f_c00036{transform:matrix(0.023425,0.000469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.023425,0.000469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.023425,0.000469,-0.004999,0.249950,0,0);}
.m12_c00036{transform:matrix(0.086905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086905,0.000000,0.000000,0.250000,0,0);}
.mb2_c00036{transform:matrix(0.087347,0.004022,-0.011499,0.249735,0,0);-ms-transform:matrix(0.087347,0.004022,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.087347,0.004022,-0.011499,0.249735,0,0);}
.m0_c00036{transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);}
.m34_c00036{transform:matrix(0.105775,0.001798,-0.004249,0.249964,0,0);-ms-transform:matrix(0.105775,0.001798,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.105775,0.001798,-0.004249,0.249964,0,0);}
.m60_c00036{transform:matrix(0.106129,0.002123,-0.004999,0.249950,0,0);-ms-transform:matrix(0.106129,0.002123,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.106129,0.002123,-0.004999,0.249950,0,0);}
.m61_c00036{transform:matrix(0.109148,0.002183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.109148,0.002183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.109148,0.002183,-0.004999,0.249950,0,0);}
.m66_c00036{transform:matrix(0.110955,0.002108,-0.004749,0.249955,0,0);-ms-transform:matrix(0.110955,0.002108,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.110955,0.002108,-0.004749,0.249955,0,0);}
.ma0_c00036{transform:matrix(0.130062,0.002471,-0.004749,0.249955,0,0);-ms-transform:matrix(0.130062,0.002471,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.130062,0.002471,-0.004749,0.249955,0,0);}
.m16_c00036{transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);}
.md1_c00036{transform:matrix(0.151221,0.006358,-0.010501,0.249779,0,0);-ms-transform:matrix(0.151221,0.006358,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.151221,0.006358,-0.010501,0.249779,0,0);}
.m3d_c00036{transform:matrix(0.153878,0.002616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153878,0.002616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153878,0.002616,-0.004249,0.249964,0,0);}
.mba_c00036{transform:matrix(0.154928,0.006513,-0.010501,0.249779,0,0);-ms-transform:matrix(0.154928,0.006513,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.154928,0.006513,-0.010501,0.249779,0,0);}
.m2b_c00036{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.ma1_c00036{transform:matrix(0.156597,0.002975,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156597,0.002975,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156597,0.002975,-0.004749,0.249955,0,0);}
.m4a_c00036{transform:matrix(0.157843,0.003157,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157843,0.003157,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157843,0.003157,-0.004999,0.249950,0,0);}
.m5c_c00036{transform:matrix(0.159788,0.003196,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159788,0.003196,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159788,0.003196,-0.004999,0.249950,0,0);}
.mc5_c00036{transform:matrix(0.159959,0.006725,-0.010501,0.249779,0,0);-ms-transform:matrix(0.159959,0.006725,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.159959,0.006725,-0.010501,0.249779,0,0);}
.ma3_c00036{transform:matrix(0.160331,0.003046,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160331,0.003046,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160331,0.003046,-0.004749,0.249955,0,0);}
.me_c00036{transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);}
.m87_c00036{transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);}
.m5d_c00036{transform:matrix(0.162293,0.003246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162293,0.003246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162293,0.003246,-0.004999,0.249950,0,0);}
.m74_c00036{transform:matrix(0.162326,0.003084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162326,0.003084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162326,0.003084,-0.004749,0.249955,0,0);}
.m11_c00036{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m40_c00036{transform:matrix(0.164291,0.002793,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164291,0.002793,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164291,0.002793,-0.004249,0.249964,0,0);}
.m7b_c00036{transform:matrix(0.164370,0.003123,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164370,0.003123,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164370,0.003123,-0.004749,0.249955,0,0);}
.mb_c00036{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.mbf_c00036{transform:matrix(0.165274,0.006948,-0.010501,0.249779,0,0);-ms-transform:matrix(0.165274,0.006948,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.165274,0.006948,-0.010501,0.249779,0,0);}
.m27_c00036{transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);}
.m44_c00036{transform:matrix(0.166257,0.003325,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166257,0.003325,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166257,0.003325,-0.004999,0.249950,0,0);}
.m17_c00036{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.mb4_c00036{transform:matrix(0.167882,0.007058,-0.010501,0.249779,0,0);-ms-transform:matrix(0.167882,0.007058,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.167882,0.007058,-0.010501,0.249779,0,0);}
.m20_c00036{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.m59_c00036{transform:matrix(0.168496,0.003370,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168496,0.003370,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168496,0.003370,-0.004999,0.249950,0,0);}
.m21_c00036{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.mcb_c00036{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.maa_c00036{transform:matrix(0.170138,0.006301,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170138,0.006301,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170138,0.006301,-0.009253,0.249829,0,0);}
.mc1_c00036{transform:matrix(0.170789,0.007180,-0.010501,0.249779,0,0);-ms-transform:matrix(0.170789,0.007180,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.170789,0.007180,-0.010501,0.249779,0,0);}
.m49_c00036{transform:matrix(0.170916,0.003418,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170916,0.003418,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170916,0.003418,-0.004999,0.249950,0,0);}
.m2d_c00036{transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);}
.ma7_c00036{transform:matrix(0.172714,0.003282,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172714,0.003282,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172714,0.003282,-0.004749,0.249955,0,0);}
.md2_c00036{transform:matrix(0.172822,0.007266,-0.010501,0.249779,0,0);-ms-transform:matrix(0.172822,0.007266,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.172822,0.007266,-0.010501,0.249779,0,0);}
.m39_c00036{transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);}
.mcf_c00036{transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);}
.m77_c00036{transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);}
.m28_c00036{transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);}
.m46_c00036{transform:matrix(0.173900,0.003478,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173900,0.003478,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173900,0.003478,-0.004999,0.249950,0,0);}
.ma4_c00036{transform:matrix(0.174404,0.003314,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174404,0.003314,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174404,0.003314,-0.004749,0.249955,0,0);}
.m3a_c00036{transform:matrix(0.174580,0.002968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174580,0.002968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174580,0.002968,-0.004249,0.249964,0,0);}
.m1b_c00036{transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m75_c00036{transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);}
.md5_c00036{transform:matrix(0.177054,0.007444,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177054,0.007444,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177054,0.007444,-0.010501,0.249779,0,0);}
.m47_c00036{transform:matrix(0.177160,0.003543,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177160,0.003543,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177160,0.003543,-0.004999,0.249950,0,0);}
.mc3_c00036{transform:matrix(0.177283,0.007453,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177283,0.007453,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177283,0.007453,-0.010501,0.249779,0,0);}
.m6a_c00036{transform:matrix(0.177398,0.003371,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177398,0.003371,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177398,0.003371,-0.004749,0.249955,0,0);}
.m3e_c00036{transform:matrix(0.177644,0.003020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177644,0.003020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177644,0.003020,-0.004249,0.249964,0,0);}
.mb3_c00036{transform:matrix(0.178061,0.008199,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178061,0.008199,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178061,0.008199,-0.011499,0.249735,0,0);}
.m5_c00036{transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);}
.ma5_c00036{transform:matrix(0.179033,0.003402,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179033,0.003402,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179033,0.003402,-0.004749,0.249955,0,0);}
.mbb_c00036{transform:matrix(0.179257,0.007536,-0.010501,0.249779,0,0);-ms-transform:matrix(0.179257,0.007536,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.179257,0.007536,-0.010501,0.249779,0,0);}
.mcd_c00036{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m7c_c00036{transform:matrix(0.179688,0.003414,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179688,0.003414,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179688,0.003414,-0.004749,0.249955,0,0);}
.m5e_c00036{transform:matrix(0.179999,0.003600,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179999,0.003600,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179999,0.003600,-0.004999,0.249950,0,0);}
.ma_c00036{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m1f_c00036{transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00036{transform:matrix(0.181779,0.003636,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181779,0.003636,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181779,0.003636,-0.004999,0.249950,0,0);}
.mb8_c00036{transform:matrix(0.182059,0.007654,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182059,0.007654,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182059,0.007654,-0.010501,0.249779,0,0);}
.mc8_c00036{transform:matrix(0.182224,0.007661,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182224,0.007661,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182224,0.007661,-0.010501,0.249779,0,0);}
.m19_c00036{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m9a_c00036{transform:matrix(0.184197,0.003500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184197,0.003500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184197,0.003500,-0.004749,0.249955,0,0);}
.m45_c00036{transform:matrix(0.184198,0.003684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184198,0.003684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184198,0.003684,-0.004999,0.249950,0,0);}
.m18_c00036{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m6b_c00036{transform:matrix(0.184327,0.003502,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184327,0.003502,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184327,0.003502,-0.004749,0.249955,0,0);}
.m3c_c00036{transform:matrix(0.184978,0.003145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184978,0.003145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184978,0.003145,-0.004249,0.249964,0,0);}
.mc7_c00036{transform:matrix(0.186405,0.007837,-0.010501,0.249779,0,0);-ms-transform:matrix(0.186405,0.007837,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.186405,0.007837,-0.010501,0.249779,0,0);}
.m85_c00036{transform:matrix(0.186856,0.003550,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186856,0.003550,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186856,0.003550,-0.004749,0.249955,0,0);}
.mc0_c00036{transform:matrix(0.187474,0.007882,-0.010501,0.249779,0,0);-ms-transform:matrix(0.187474,0.007882,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.187474,0.007882,-0.010501,0.249779,0,0);}
.m90_c00036{transform:matrix(0.187546,0.003563,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187546,0.003563,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187546,0.003563,-0.004749,0.249955,0,0);}
.m2a_c00036{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m24_c00036{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.m29_c00036{transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00036{transform:matrix(0.188247,0.003765,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188247,0.003765,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188247,0.003765,-0.004999,0.249950,0,0);}
.m35_c00036{transform:matrix(0.188638,0.003207,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188638,0.003207,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188638,0.003207,-0.004249,0.249964,0,0);}
.m80_c00036{transform:matrix(0.188746,0.003586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188746,0.003586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188746,0.003586,-0.004749,0.249955,0,0);}
.m10_c00036{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00036{transform:matrix(0.189358,0.007961,-0.010501,0.249779,0,0);-ms-transform:matrix(0.189358,0.007961,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.189358,0.007961,-0.010501,0.249779,0,0);}
.m4_c00036{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m95_c00036{transform:matrix(0.190201,0.003614,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190201,0.003614,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190201,0.003614,-0.004749,0.249955,0,0);}
.md_c00036{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.m82_c00036{transform:matrix(0.190341,0.003616,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190341,0.003616,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190341,0.003616,-0.004749,0.249955,0,0);}
.m9e_c00036{transform:matrix(0.190641,0.003622,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190641,0.003622,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190641,0.003622,-0.004749,0.249955,0,0);}
.m1e_c00036{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.m56_c00036{transform:matrix(0.191547,0.003831,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191547,0.003831,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191547,0.003831,-0.004999,0.249950,0,0);}
.m92_c00036{transform:matrix(0.192700,0.003661,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192700,0.003661,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192700,0.003661,-0.004749,0.249955,0,0);}
.m30_c00036{transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);}
.m5a_c00036{transform:matrix(0.193951,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193951,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193951,0.003879,-0.004999,0.249950,0,0);}
.m31_c00036{transform:matrix(0.194012,0.003298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194012,0.003298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194012,0.003298,-0.004249,0.249964,0,0);}
.m72_c00036{transform:matrix(0.194370,0.003693,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194370,0.003693,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194370,0.003693,-0.004749,0.249955,0,0);}
.m9f_c00036{transform:matrix(0.194505,0.003696,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194505,0.003696,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194505,0.003696,-0.004749,0.249955,0,0);}
.m78_c00036{transform:matrix(0.195285,0.003710,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195285,0.003710,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195285,0.003710,-0.004749,0.249955,0,0);}
.m99_c00036{transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);}
.mce_c00036{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00036{transform:matrix(0.196130,0.003726,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196130,0.003726,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196130,0.003726,-0.004749,0.249955,0,0);}
.mbe_c00036{transform:matrix(0.196541,0.008263,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196541,0.008263,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196541,0.008263,-0.010501,0.249779,0,0);}
.m42_c00036{transform:matrix(0.196562,0.003342,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196562,0.003342,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196562,0.003342,-0.004249,0.249964,0,0);}
.m3_c00036{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m71_c00036{transform:matrix(0.197209,0.003747,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197209,0.003747,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197209,0.003747,-0.004749,0.249955,0,0);}
.mb7_c00036{transform:matrix(0.197236,0.008292,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197236,0.008292,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197236,0.008292,-0.010501,0.249779,0,0);}
.m1_c00036{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m37_c00036{transform:matrix(0.197656,0.003360,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197656,0.003360,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197656,0.003360,-0.004249,0.249964,0,0);}
.mbd_c00036{transform:matrix(0.198240,0.008334,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198240,0.008334,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198240,0.008334,-0.010501,0.249779,0,0);}
.mb5_c00036{transform:matrix(0.198430,0.008342,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198430,0.008342,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198430,0.008342,-0.010501,0.249779,0,0);}
.m2c_c00036{transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);}
.m4b_c00036{transform:matrix(0.199575,0.003992,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199575,0.003992,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199575,0.003992,-0.004999,0.249950,0,0);}
.m6c_c00036{transform:matrix(0.199824,0.003797,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199824,0.003797,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199824,0.003797,-0.004749,0.249955,0,0);}
.m67_c00036{transform:matrix(0.200054,0.003801,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200054,0.003801,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200054,0.003801,-0.004749,0.249955,0,0);}
.m7a_c00036{transform:matrix(0.200114,0.003802,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200114,0.003802,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200114,0.003802,-0.004749,0.249955,0,0);}
.m73_c00036{transform:matrix(0.200264,0.003805,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200264,0.003805,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200264,0.003805,-0.004749,0.249955,0,0);}
.m81_c00036{transform:matrix(0.201229,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201229,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201229,0.003823,-0.004749,0.249955,0,0);}
.m26_c00036{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m93_c00036{transform:matrix(0.201759,0.003833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201759,0.003833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201759,0.003833,-0.004749,0.249955,0,0);}
.m8b_c00036{transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);}
.m48_c00036{transform:matrix(0.201990,0.004040,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201990,0.004040,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201990,0.004040,-0.004999,0.249950,0,0);}
.mc_c00036{transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);}
.md0_c00036{transform:matrix(0.203230,0.008544,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203230,0.008544,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203230,0.008544,-0.010501,0.249779,0,0);}
.m6_c00036{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m6d_c00036{transform:matrix(0.204658,0.003889,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204658,0.003889,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204658,0.003889,-0.004749,0.249955,0,0);}
.m76_c00036{transform:matrix(0.205923,0.003913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205923,0.003913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205923,0.003913,-0.004749,0.249955,0,0);}
.m3b_c00036{transform:matrix(0.206010,0.003502,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206010,0.003502,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206010,0.003502,-0.004249,0.249964,0,0);}
.m69_c00036{transform:matrix(0.206478,0.003923,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206478,0.003923,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206478,0.003923,-0.004749,0.249955,0,0);}
.m9b_c00036{transform:matrix(0.206978,0.003933,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206978,0.003933,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206978,0.003933,-0.004749,0.249955,0,0);}
.m6f_c00036{transform:matrix(0.206988,0.003933,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206988,0.003933,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206988,0.003933,-0.004749,0.249955,0,0);}
.m68_c00036{transform:matrix(0.207203,0.003937,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207203,0.003937,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207203,0.003937,-0.004749,0.249955,0,0);}
.mb1_c00036{transform:matrix(0.207280,0.009544,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207280,0.009544,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207280,0.009544,-0.011499,0.249735,0,0);}
.m7f_c00036{transform:matrix(0.207308,0.003939,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207308,0.003939,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207308,0.003939,-0.004749,0.249955,0,0);}
.mc4_c00036{transform:matrix(0.208721,0.008775,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208721,0.008775,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208721,0.008775,-0.010501,0.249779,0,0);}
.m4c_c00036{transform:matrix(0.209343,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209343,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209343,0.004187,-0.004999,0.249950,0,0);}
.m83_c00036{transform:matrix(0.209687,0.003984,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209687,0.003984,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209687,0.003984,-0.004749,0.249955,0,0);}
.mae_c00036{transform:matrix(0.210227,0.009680,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210227,0.009680,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210227,0.009680,-0.011499,0.249735,0,0);}
.ma9_c00036{transform:matrix(0.211035,0.007816,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211035,0.007816,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211035,0.007816,-0.009253,0.249829,0,0);}
.m22_c00036{transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);}
.m79_c00036{transform:matrix(0.211987,0.004028,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211987,0.004028,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211987,0.004028,-0.004749,0.249955,0,0);}
.ma2_c00036{transform:matrix(0.213002,0.004047,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213002,0.004047,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213002,0.004047,-0.004749,0.249955,0,0);}
.mb6_c00036{transform:matrix(0.213012,0.008955,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213012,0.008955,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213012,0.008955,-0.010501,0.249779,0,0);}
.m91_c00036{transform:matrix(0.213971,0.004065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213971,0.004065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213971,0.004065,-0.004749,0.249955,0,0);}
.m33_c00036{transform:matrix(0.214159,0.003641,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214159,0.003641,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214159,0.003641,-0.004249,0.249964,0,0);}
.mcc_c00036{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m4f_c00036{transform:matrix(0.214422,0.004288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214422,0.004288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214422,0.004288,-0.004999,0.249950,0,0);}
.ma8_c00036{transform:matrix(0.215013,0.007963,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215013,0.007963,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215013,0.007963,-0.009253,0.249829,0,0);}
.m51_c00036{transform:matrix(0.215267,0.004305,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215267,0.004305,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215267,0.004305,-0.004999,0.249950,0,0);}
.m41_c00036{transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);}
.m89_c00036{transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);}
.m4e_c00036{transform:matrix(0.215687,0.004314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215687,0.004314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215687,0.004314,-0.004999,0.249950,0,0);}
.m86_c00036{transform:matrix(0.216246,0.004109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216246,0.004109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216246,0.004109,-0.004749,0.249955,0,0);}
.m8e_c00036{transform:matrix(0.216891,0.004121,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216891,0.004121,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216891,0.004121,-0.004749,0.249955,0,0);}
.m50_c00036{transform:matrix(0.217112,0.004342,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217112,0.004342,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217112,0.004342,-0.004999,0.249950,0,0);}
.m54_c00036{transform:matrix(0.217576,0.004352,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217576,0.004352,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217576,0.004352,-0.004999,0.249950,0,0);}
.m1d_c00036{transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);}
.m8d_c00036{transform:matrix(0.218556,0.004153,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218556,0.004153,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218556,0.004153,-0.004749,0.249955,0,0);}
.m2_c00036{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.mc6_c00036{transform:matrix(0.218842,0.009201,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218842,0.009201,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218842,0.009201,-0.010501,0.249779,0,0);}
.m25_c00036{transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);}
.m7d_c00036{transform:matrix(0.219140,0.004164,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219140,0.004164,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219140,0.004164,-0.004749,0.249955,0,0);}
.m98_c00036{transform:matrix(0.219300,0.004167,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219300,0.004167,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219300,0.004167,-0.004749,0.249955,0,0);}
.m13_c00036{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.md6_c00036{transform:matrix(0.219796,0.009241,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219796,0.009241,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219796,0.009241,-0.010501,0.249779,0,0);}
.m1c_c00036{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m88_c00036{transform:matrix(0.220165,0.004183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220165,0.004183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220165,0.004183,-0.004749,0.249955,0,0);}
.m94_c00036{transform:matrix(0.220325,0.004186,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220325,0.004186,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220325,0.004186,-0.004749,0.249955,0,0);}
.maf_c00036{transform:matrix(0.220546,0.010155,-0.011499,0.249735,0,0);-ms-transform:matrix(0.220546,0.010155,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.220546,0.010155,-0.011499,0.249735,0,0);}
.m6e_c00036{transform:matrix(0.222165,0.004221,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222165,0.004221,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222165,0.004221,-0.004749,0.249955,0,0);}
.m55_c00036{transform:matrix(0.222181,0.004444,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222181,0.004444,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222181,0.004444,-0.004999,0.249950,0,0);}
.m38_c00036{transform:matrix(0.222478,0.003782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222478,0.003782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222478,0.003782,-0.004249,0.249964,0,0);}
.m97_c00036{transform:matrix(0.224075,0.004257,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224075,0.004257,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224075,0.004257,-0.004749,0.249955,0,0);}
.m9_c00036{transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);}
.m96_c00036{transform:matrix(0.225684,0.004288,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225684,0.004288,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225684,0.004288,-0.004749,0.249955,0,0);}
.m8f_c00036{transform:matrix(0.225889,0.004292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225889,0.004292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225889,0.004292,-0.004749,0.249955,0,0);}
.m58_c00036{transform:matrix(0.226255,0.004525,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226255,0.004525,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226255,0.004525,-0.004999,0.249950,0,0);}
.m32_c00036{transform:matrix(0.226327,0.003848,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226327,0.003848,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226327,0.003848,-0.004249,0.249964,0,0);}
.m3f_c00036{transform:matrix(0.227247,0.003863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227247,0.003863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227247,0.003863,-0.004249,0.249964,0,0);}
.mc2_c00036{transform:matrix(0.228528,0.009608,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228528,0.009608,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228528,0.009608,-0.010501,0.249779,0,0);}
.md3_c00036{transform:matrix(0.229802,0.009661,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229802,0.009661,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229802,0.009661,-0.010501,0.249779,0,0);}
.ma6_c00036{transform:matrix(0.233733,0.004441,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233733,0.004441,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233733,0.004441,-0.004749,0.249955,0,0);}
.m7e_c00036{transform:matrix(0.233853,0.004443,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233853,0.004443,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233853,0.004443,-0.004749,0.249955,0,0);}
.mab_c00036{transform:matrix(0.234104,0.008671,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234104,0.008671,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234104,0.008671,-0.009253,0.249829,0,0);}
.mca_c00036{transform:matrix(0.239219,0.010057,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239219,0.010057,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239219,0.010057,-0.010501,0.249779,0,0);}
.m63_c00036{transform:matrix(0.240632,0.004572,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240632,0.004572,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240632,0.004572,-0.004749,0.249955,0,0);}
.m36_c00036{transform:matrix(0.241610,0.004107,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241610,0.004107,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241610,0.004107,-0.004249,0.249964,0,0);}
.mb0_c00036{transform:matrix(0.242283,0.011156,-0.011499,0.249735,0,0);-ms-transform:matrix(0.242283,0.011156,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.242283,0.011156,-0.011499,0.249735,0,0);}
.mad_c00036{transform:matrix(0.242308,0.011157,-0.011499,0.249735,0,0);-ms-transform:matrix(0.242308,0.011157,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.242308,0.011157,-0.011499,0.249735,0,0);}
.m8c_c00036{transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);}
.m43_c00036{transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);}
.m84_c00036{transform:matrix(0.248660,0.004725,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248660,0.004725,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248660,0.004725,-0.004749,0.249955,0,0);}
.m57_c00036{transform:matrix(0.248705,0.004974,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248705,0.004974,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248705,0.004974,-0.004999,0.249950,0,0);}
.m65_c00036{transform:matrix(0.251045,0.004770,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251045,0.004770,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251045,0.004770,-0.004749,0.249955,0,0);}
.m9d_c00036{transform:matrix(0.256429,0.004872,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256429,0.004872,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256429,0.004872,-0.004749,0.249955,0,0);}
.m52_c00036{transform:matrix(0.259858,0.005197,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259858,0.005197,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259858,0.005197,-0.004999,0.249950,0,0);}
.m64_c00036{transform:matrix(0.263912,0.005014,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263912,0.005014,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263912,0.005014,-0.004749,0.249955,0,0);}
.m9c_c00036{transform:matrix(0.269316,0.005117,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269316,0.005117,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269316,0.005117,-0.004749,0.249955,0,0);}
.m2f_c00036{transform:matrix(0.275635,0.004686,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275635,0.004686,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275635,0.004686,-0.004249,0.249964,0,0);}
.m70_c00036{transform:matrix(0.276970,0.005262,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276970,0.005262,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276970,0.005262,-0.004749,0.249955,0,0);}
.mbc_c00036{transform:matrix(0.311565,0.013099,-0.010501,0.249779,0,0);-ms-transform:matrix(0.311565,0.013099,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.311565,0.013099,-0.010501,0.249779,0,0);}
.mc9_c00036{transform:matrix(0.323065,0.013582,-0.010501,0.249779,0,0);-ms-transform:matrix(0.323065,0.013582,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.323065,0.013582,-0.010501,0.249779,0,0);}
.md4_c00036{transform:matrix(0.344106,0.014467,-0.010501,0.249779,0,0);-ms-transform:matrix(0.344106,0.014467,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.344106,0.014467,-0.010501,0.249779,0,0);}
.m53_c00036{transform:matrix(0.348030,0.006961,-0.004999,0.249950,0,0);-ms-transform:matrix(0.348030,0.006961,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.348030,0.006961,-0.004999,0.249950,0,0);}
.m62_c00036{transform:matrix(0.380981,0.007239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.380981,0.007239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.380981,0.007239,-0.004749,0.249955,0,0);}
.m23_c00036{transform:matrix(0.459490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459490,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.526965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526965,0.000000,0.000000,0.250000,0,0);}
.m2e_c00036{transform:matrix(1.293255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.293255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.293255,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:0.000000px;}
.fc0_c00036{color:transparent;}
.fs1a_c00036{font-size:46.194571px;}
.fs10_c00036{font-size:58.810612px;}
.fs1c_c00036{font-size:59.842967px;}
.fs14_c00036{font-size:59.853501px;}
.fs11_c00036{font-size:59.860802px;}
.fsb_c00036{font-size:59.861969px;}
.fs13_c00036{font-size:60.880813px;}
.fs18_c00036{font-size:60.892844px;}
.fs15_c00036{font-size:60.903563px;}
.fs8_c00036{font-size:60.908799px;}
.fsa_c00036{font-size:60.912179px;}
.fs3_c00036{font-size:61.950000px;}
.fs7_c00036{font-size:61.958951px;}
.fsf_c00036{font-size:61.961181px;}
.fs19_c00036{font-size:62.992597px;}
.fs1_c00036{font-size:63.000000px;}
.fsd_c00036{font-size:63.011370px;}
.fs6_c00036{font-size:64.059255px;}
.fs4_c00036{font-size:65.100000px;}
.fs17_c00036{font-size:66.142227px;}
.fsc_c00036{font-size:66.161939px;}
.fs1b_c00036{font-size:67.200000px;}
.fse_c00036{font-size:67.212129px;}
.fs9_c00036{font-size:67.213439px;}
.fs12_c00036{font-size:68.262318px;}
.fs16_c00036{font-size:70.341733px;}
.fs5_c00036{font-size:70.350000px;}
.fs2_c00036{font-size:71.400000px;}
.fs0_c00036{font-size:129.150000px;}
.y0_c00036{bottom:0.000000px;}
.ydb_c00036{bottom:20.920902px;}
.ycf_c00036{bottom:30.916678px;}
.yce_c00036{bottom:30.918060px;}
.yda_c00036{bottom:36.085641px;}
.yd9_c00036{bottom:36.708396px;}
.yd8_c00036{bottom:40.026165px;}
.yd7_c00036{bottom:41.127531px;}
.yd6_c00036{bottom:42.070767px;}
.yd5_c00036{bottom:42.675000px;}
.ycd_c00036{bottom:47.577649px;}
.ycc_c00036{bottom:48.865401px;}
.ycb_c00036{bottom:49.792378px;}
.yca_c00036{bottom:51.075985px;}
.yd4_c00036{bottom:53.589000px;}
.yd3_c00036{bottom:56.014500px;}
.yd2_c00036{bottom:58.558500px;}
.yd1_c00036{bottom:59.143500px;}
.yc9_c00036{bottom:62.893863px;}
.yc8_c00036{bottom:64.096133px;}
.yc7_c00036{bottom:67.273083px;}
.yd0_c00036{bottom:69.925500px;}
.yc6_c00036{bottom:73.034599px;}
.yc5_c00036{bottom:74.293371px;}
.yc4_c00036{bottom:78.047298px;}
.yc3_c00036{bottom:79.192363px;}
.yc2_c00036{bottom:81.957164px;}
.yc1_c00036{bottom:82.942573px;}
.yc0_c00036{bottom:84.802068px;}
.ybf_c00036{bottom:91.268406px;}
.ybe_c00036{bottom:92.017224px;}
.ybd_c00036{bottom:94.964427px;}
.ybc_c00036{bottom:95.812722px;}
.ybb_c00036{bottom:97.962660px;}
.yba_c00036{bottom:100.028997px;}
.yb9_c00036{bottom:100.971792px;}
.yb8_c00036{bottom:102.888000px;}
.yb7_c00036{bottom:114.239194px;}
.yb6_c00036{bottom:114.677509px;}
.yb5_c00036{bottom:117.163926px;}
.yb4_c00036{bottom:120.454364px;}
.yb3_c00036{bottom:133.785669px;}
.yb2_c00036{bottom:135.379293px;}
.yb1_c00036{bottom:137.725500px;}
.yb0_c00036{bottom:179.298629px;}
.yaf_c00036{bottom:183.785859px;}
.yae_c00036{bottom:184.891030px;}
.yad_c00036{bottom:185.636062px;}
.yac_c00036{bottom:188.473500px;}
.yab_c00036{bottom:195.899231px;}
.yaa_c00036{bottom:197.373017px;}
.ya9_c00036{bottom:199.819571px;}
.ya8_c00036{bottom:201.735326px;}
.ya7_c00036{bottom:202.417566px;}
.ya6_c00036{bottom:202.918784px;}
.ya5_c00036{bottom:204.178641px;}
.ya4_c00036{bottom:204.880160px;}
.ya3_c00036{bottom:206.275220px;}
.ya2_c00036{bottom:212.964756px;}
.ya1_c00036{bottom:214.853774px;}
.ya0_c00036{bottom:215.311212px;}
.y9f_c00036{bottom:216.227115px;}
.y9e_c00036{bottom:216.926510px;}
.y9d_c00036{bottom:218.413544px;}
.y9c_c00036{bottom:230.467557px;}
.y9b_c00036{bottom:233.012621px;}
.y9a_c00036{bottom:233.925363px;}
.y99_c00036{bottom:236.189855px;}
.y98_c00036{bottom:236.938541px;}
.y97_c00036{bottom:238.409759px;}
.y96_c00036{bottom:241.110275px;}
.y95_c00036{bottom:247.817507px;}
.y94_c00036{bottom:248.998146px;}
.y93_c00036{bottom:251.319138px;}
.y92_c00036{bottom:252.977217px;}
.y91_c00036{bottom:254.848331px;}
.y90_c00036{bottom:256.935347px;}
.y8f_c00036{bottom:257.304128px;}
.y8e_c00036{bottom:265.969329px;}
.y8d_c00036{bottom:266.853804px;}
.y8c_c00036{bottom:268.092582px;}
.y8b_c00036{bottom:270.878921px;}
.y8a_c00036{bottom:271.433871px;}
.y89_c00036{bottom:274.368774px;}
.y88_c00036{bottom:275.130963px;}
.y87_c00036{bottom:282.951950px;}
.y86_c00036{bottom:283.611467px;}
.y85_c00036{bottom:285.081552px;}
.y84_c00036{bottom:286.505244px;}
.y83_c00036{bottom:289.217266px;}
.y82_c00036{bottom:290.987157px;}
.y81_c00036{bottom:291.503069px;}
.y80_c00036{bottom:292.677984px;}
.y7f_c00036{bottom:302.975181px;}
.y7e_c00036{bottom:303.628655px;}
.y7d_c00036{bottom:305.753034px;}
.y7c_c00036{bottom:308.389590px;}
.y7b_c00036{bottom:309.499001px;}
.y7a_c00036{bottom:310.225070px;}
.y79_c00036{bottom:320.682249px;}
.y78_c00036{bottom:322.237779px;}
.y77_c00036{bottom:322.712283px;}
.y76_c00036{bottom:325.527015px;}
.y75_c00036{bottom:326.398418px;}
.y74_c00036{bottom:327.240966px;}
.y73_c00036{bottom:338.410957px;}
.y72_c00036{bottom:339.115506px;}
.y71_c00036{bottom:340.634385px;}
.y70_c00036{bottom:341.085540px;}
.y6f_c00036{bottom:342.004038px;}
.y6e_c00036{bottom:342.953316px;}
.y6d_c00036{bottom:343.441464px;}
.y6c_c00036{bottom:354.231361px;}
.y6b_c00036{bottom:354.796431px;}
.y6a_c00036{bottom:356.002836px;}
.y69_c00036{bottom:356.208207px;}
.y68_c00036{bottom:357.208756px;}
.y67_c00036{bottom:357.523282px;}
.y66_c00036{bottom:358.594198px;}
.y65_c00036{bottom:359.374500px;}
.y64_c00036{bottom:369.929250px;}
.y63_c00036{bottom:370.641000px;}
.y62_c00036{bottom:371.197230px;}
.y61_c00036{bottom:373.015740px;}
.y60_c00036{bottom:373.670400px;}
.y5f_c00036{bottom:374.103030px;}
.y5e_c00036{bottom:375.275250px;}
.y5d_c00036{bottom:377.188560px;}
.y5c_c00036{bottom:387.114420px;}
.y5b_c00036{bottom:388.528650px;}
.y5a_c00036{bottom:389.905860px;}
.y59_c00036{bottom:390.427110px;}
.y58_c00036{bottom:391.836210px;}
.y57_c00036{bottom:393.632250px;}
.y56_c00036{bottom:393.983160px;}
.y55_c00036{bottom:395.281470px;}
.y54_c00036{bottom:404.967480px;}
.y53_c00036{bottom:405.859950px;}
.y52_c00036{bottom:406.602300px;}
.y51_c00036{bottom:408.486780px;}
.y50_c00036{bottom:408.979200px;}
.y4f_c00036{bottom:410.768640px;}
.y4e_c00036{bottom:412.294350px;}
.y4d_c00036{bottom:422.519730px;}
.y4c_c00036{bottom:423.118590px;}
.y4b_c00036{bottom:424.706520px;}
.y4a_c00036{bottom:425.167380px;}
.y49_c00036{bottom:426.647010px;}
.y48_c00036{bottom:427.336770px;}
.y47_c00036{bottom:427.953000px;}
.y46_c00036{bottom:440.385414px;}
.y45_c00036{bottom:440.929621px;}
.y44_c00036{bottom:441.627165px;}
.y43_c00036{bottom:442.203714px;}
.y42_c00036{bottom:443.691682px;}
.y41_c00036{bottom:444.315006px;}
.y40_c00036{bottom:444.673629px;}
.y3f_c00036{bottom:445.770858px;}
.y3e_c00036{bottom:457.554990px;}
.y3d_c00036{bottom:458.582301px;}
.y3c_c00036{bottom:459.117282px;}
.y3b_c00036{bottom:461.109436px;}
.y3a_c00036{bottom:462.365386px;}
.y39_c00036{bottom:462.737311px;}
.y38_c00036{bottom:464.135808px;}
.y37_c00036{bottom:473.581369px;}
.y36_c00036{bottom:474.367636px;}
.y35_c00036{bottom:475.708579px;}
.y34_c00036{bottom:476.727636px;}
.y33_c00036{bottom:477.581401px;}
.y32_c00036{bottom:478.444500px;}
.y31_c00036{bottom:493.056000px;}
.y30_c00036{bottom:493.696500px;}
.y2f_c00036{bottom:494.070000px;}
.y2e_c00036{bottom:494.983500px;}
.y2d_c00036{bottom:495.250500px;}
.y2c_c00036{bottom:496.452000px;}
.y2b_c00036{bottom:496.831500px;}
.y2a_c00036{bottom:497.223000px;}
.y29_c00036{bottom:497.613000px;}
.y28_c00036{bottom:509.557500px;}
.y27_c00036{bottom:510.217500px;}
.y26_c00036{bottom:512.445000px;}
.y25_c00036{bottom:512.944500px;}
.y24_c00036{bottom:513.721500px;}
.y23_c00036{bottom:514.078500px;}
.y22_c00036{bottom:514.501500px;}
.y21_c00036{bottom:515.434500px;}
.y20_c00036{bottom:526.690500px;}
.y1f_c00036{bottom:527.151000px;}
.y1e_c00036{bottom:529.159500px;}
.y1d_c00036{bottom:529.872000px;}
.y1c_c00036{bottom:530.823000px;}
.y1b_c00036{bottom:531.292500px;}
.y1a_c00036{bottom:532.443000px;}
.y19_c00036{bottom:544.300500px;}
.y18_c00036{bottom:544.549500px;}
.y17_c00036{bottom:546.183000px;}
.y16_c00036{bottom:546.337500px;}
.y15_c00036{bottom:547.014000px;}
.y14_c00036{bottom:547.255500px;}
.y13_c00036{bottom:547.635000px;}
.y12_c00036{bottom:547.918500px;}
.y11_c00036{bottom:548.373000px;}
.y10_c00036{bottom:562.533000px;}
.yf_c00036{bottom:562.830000px;}
.ye_c00036{bottom:563.841000px;}
.yd_c00036{bottom:564.063000px;}
.yc_c00036{bottom:565.084500px;}
.yb_c00036{bottom:565.789500px;}
.ya_c00036{bottom:567.004500px;}
.y9_c00036{bottom:580.029000px;}
.y8_c00036{bottom:580.366500px;}
.y7_c00036{bottom:580.740000px;}
.y6_c00036{bottom:581.587500px;}
.y5_c00036{bottom:582.373500px;}
.y4_c00036{bottom:582.918000px;}
.y3_c00036{bottom:583.144500px;}
.y2_c00036{bottom:584.283000px;}
.y1_c00036{bottom:595.212000px;}
.h1c_c00036{height:46.194571px;}
.h12_c00036{height:58.810612px;}
.h1e_c00036{height:59.842967px;}
.h16_c00036{height:59.853501px;}
.h13_c00036{height:59.860802px;}
.hd_c00036{height:59.861969px;}
.h15_c00036{height:60.880813px;}
.h1a_c00036{height:60.892844px;}
.h17_c00036{height:60.903563px;}
.ha_c00036{height:60.908799px;}
.hc_c00036{height:60.912179px;}
.h5_c00036{height:61.950000px;}
.h9_c00036{height:61.958951px;}
.h11_c00036{height:61.961181px;}
.h1b_c00036{height:62.992597px;}
.h3_c00036{height:63.000000px;}
.hf_c00036{height:63.011370px;}
.h8_c00036{height:64.059255px;}
.h6_c00036{height:65.100000px;}
.h19_c00036{height:66.142227px;}
.he_c00036{height:66.161939px;}
.h1d_c00036{height:67.200000px;}
.h10_c00036{height:67.212129px;}
.hb_c00036{height:67.213439px;}
.h14_c00036{height:68.262318px;}
.h18_c00036{height:70.341733px;}
.h7_c00036{height:70.350000px;}
.h4_c00036{height:71.400000px;}
.h2_c00036{height:129.150000px;}
.h0_c00036{height:639.600000px;}
.h1_c00036{height:639.750000px;}
.w1_c00036{width:363.750000px;}
.w0_c00036{width:363.900000px;}
.x0_c00036{left:0.000000px;}
.x47_c00036{left:25.932113px;}
.x37_c00036{left:27.231000px;}
.x2b_c00036{left:28.299864px;}
.x2_c00036{left:29.772000px;}
.x6d_c00036{left:31.025207px;}
.x6c_c00036{left:34.709964px;}
.x32_c00036{left:36.277500px;}
.x50_c00036{left:37.369875px;}
.x60_c00036{left:38.791500px;}
.x27_c00036{left:40.270500px;}
.x20_c00036{left:47.535000px;}
.x6e_c00036{left:48.845418px;}
.x41_c00036{left:52.168467px;}
.x44_c00036{left:54.586410px;}
.x48_c00036{left:59.496410px;}
.xf_c00036{left:61.924500px;}
.x69_c00036{left:64.726706px;}
.x21_c00036{left:66.174000px;}
.x67_c00036{left:71.607876px;}
.x1a_c00036{left:74.670000px;}
.x5b_c00036{left:75.866252px;}
.x3b_c00036{left:77.007000px;}
.x6f_c00036{left:79.600911px;}
.x10_c00036{left:82.170000px;}
.x22_c00036{left:84.267000px;}
.x16_c00036{left:86.718000px;}
.x65_c00036{left:88.738946px;}
.x28_c00036{left:91.041000px;}
.x1b_c00036{left:94.803000px;}
.x3_c00036{left:96.730500px;}
.x2d_c00036{left:100.589893px;}
.x2c_c00036{left:102.080592px;}
.x38_c00036{left:103.763850px;}
.x5c_c00036{left:105.845642px;}
.x4_c00036{left:110.025000px;}
.x1c_c00036{left:111.799500px;}
.x61_c00036{left:115.402313px;}
.x5d_c00036{left:117.772926px;}
.x57_c00036{left:121.165437px;}
.x49_c00036{left:124.834574px;}
.x11_c00036{left:126.436500px;}
.x2e_c00036{left:131.783812px;}
.x3c_c00036{left:133.371000px;}
.x4d_c00036{left:134.494797px;}
.x62_c00036{left:135.518177px;}
.xa_c00036{left:136.666500px;}
.x5_c00036{left:142.068000px;}
.x68_c00036{left:143.182230px;}
.x66_c00036{left:144.918669px;}
.x1d_c00036{left:148.788000px;}
.x35_c00036{left:150.790740px;}
.x53_c00036{left:152.385359px;}
.x23_c00036{left:154.183500px;}
.x17_c00036{left:157.699500px;}
.x70_c00036{left:159.790500px;}
.x58_c00036{left:160.999416px;}
.x72_c00036{left:163.626656px;}
.x63_c00036{left:165.357807px;}
.x1_c00036{left:167.130000px;}
.x1e_c00036{left:172.563000px;}
.x12_c00036{left:174.780000px;}
.x45_c00036{left:177.436232px;}
.x5e_c00036{left:179.640408px;}
.x59_c00036{left:180.889406px;}
.x13_c00036{left:185.844000px;}
.x6_c00036{left:188.293500px;}
.x73_c00036{left:189.823433px;}
.xb_c00036{left:193.450500px;}
.x24_c00036{left:197.652000px;}
.x29_c00036{left:201.207000px;}
.x3d_c00036{left:202.585500px;}
.xc_c00036{left:205.774500px;}
.x51_c00036{left:207.546117px;}
.x54_c00036{left:210.441800px;}
.x3e_c00036{left:213.394500px;}
.x25_c00036{left:215.464500px;}
.x36_c00036{left:219.772230px;}
.x71_c00036{left:230.896500px;}
.x4e_c00036{left:232.797810px;}
.x55_c00036{left:233.840408px;}
.x2f_c00036{left:234.956034px;}
.x7_c00036{left:238.188000px;}
.x4a_c00036{left:242.994164px;}
.x6a_c00036{left:244.781628px;}
.x26_c00036{left:245.967000px;}
.x42_c00036{left:254.158467px;}
.x8_c00036{left:260.139000px;}
.xd_c00036{left:261.940500px;}
.x5a_c00036{left:263.015664px;}
.x39_c00036{left:266.923560px;}
.x74_c00036{left:268.738938px;}
.x30_c00036{left:269.809749px;}
.x6b_c00036{left:270.973289px;}
.x5f_c00036{left:272.959625px;}
.x34_c00036{left:274.933740px;}
.x3f_c00036{left:276.889500px;}
.xe_c00036{left:278.458500px;}
.x9_c00036{left:280.035000px;}
.x75_c00036{left:283.551611px;}
.x4b_c00036{left:284.985896px;}
.x64_c00036{left:286.513030px;}
.x3a_c00036{left:289.182840px;}
.x43_c00036{left:291.239967px;}
.x18_c00036{left:293.769000px;}
.x4f_c00036{left:295.267026px;}
.x31_c00036{left:297.055872px;}
.x56_c00036{left:299.082113px;}
.x14_c00036{left:302.556000px;}
.x4c_c00036{left:303.823167px;}
.x46_c00036{left:305.165456px;}
.x40_c00036{left:306.630000px;}
.x33_c00036{left:307.941000px;}
.x1f_c00036{left:310.074000px;}
.x52_c00036{left:313.656402px;}
.x19_c00036{left:316.818000px;}
.x15_c00036{left:320.308500px;}
.x2a_c00036{left:326.337000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.fs1a_c00036{font-size:41.061841pt;}
.fs10_c00036{font-size:52.276100pt;}
.fs1c_c00036{font-size:53.193749pt;}
.fs14_c00036{font-size:53.203112pt;}
.fs11_c00036{font-size:53.209602pt;}
.fsb_c00036{font-size:53.210639pt;}
.fs13_c00036{font-size:54.116279pt;}
.fs18_c00036{font-size:54.126972pt;}
.fs15_c00036{font-size:54.136500pt;}
.fs8_c00036{font-size:54.141155pt;}
.fsa_c00036{font-size:54.144159pt;}
.fs3_c00036{font-size:55.066667pt;}
.fs7_c00036{font-size:55.074623pt;}
.fsf_c00036{font-size:55.076605pt;}
.fs19_c00036{font-size:55.993420pt;}
.fs1_c00036{font-size:56.000000pt;}
.fsd_c00036{font-size:56.010107pt;}
.fs6_c00036{font-size:56.941560pt;}
.fs4_c00036{font-size:57.866667pt;}
.fs17_c00036{font-size:58.793091pt;}
.fsc_c00036{font-size:58.810612pt;}
.fs1b_c00036{font-size:59.733333pt;}
.fse_c00036{font-size:59.744114pt;}
.fs9_c00036{font-size:59.745279pt;}
.fs12_c00036{font-size:60.677616pt;}
.fs16_c00036{font-size:62.525985pt;}
.fs5_c00036{font-size:62.533333pt;}
.fs2_c00036{font-size:63.466667pt;}
.fs0_c00036{font-size:114.800000pt;}
.y0_c00036{bottom:0.000000pt;}
.ydb_c00036{bottom:18.596357pt;}
.ycf_c00036{bottom:27.481492pt;}
.yce_c00036{bottom:27.482720pt;}
.yda_c00036{bottom:32.076125pt;}
.yd9_c00036{bottom:32.629685pt;}
.yd8_c00036{bottom:35.578813pt;}
.yd7_c00036{bottom:36.557805pt;}
.yd6_c00036{bottom:37.396237pt;}
.yd5_c00036{bottom:37.933333pt;}
.ycd_c00036{bottom:42.291244pt;}
.ycc_c00036{bottom:43.435912pt;}
.ycb_c00036{bottom:44.259892pt;}
.yca_c00036{bottom:45.400876pt;}
.yd4_c00036{bottom:47.634667pt;}
.yd3_c00036{bottom:49.790667pt;}
.yd2_c00036{bottom:52.052000pt;}
.yd1_c00036{bottom:52.572000pt;}
.yc9_c00036{bottom:55.905656pt;}
.yc8_c00036{bottom:56.974340pt;}
.yc7_c00036{bottom:59.798296pt;}
.yd0_c00036{bottom:62.156000pt;}
.yc6_c00036{bottom:64.919644pt;}
.yc5_c00036{bottom:66.038552pt;}
.yc4_c00036{bottom:69.375376pt;}
.yc3_c00036{bottom:70.393212pt;}
.yc2_c00036{bottom:72.850812pt;}
.yc1_c00036{bottom:73.726732pt;}
.yc0_c00036{bottom:75.379616pt;}
.ybf_c00036{bottom:81.127472pt;}
.ybe_c00036{bottom:81.793088pt;}
.ybd_c00036{bottom:84.412824pt;}
.ybc_c00036{bottom:85.166864pt;}
.ybb_c00036{bottom:87.077920pt;}
.yba_c00036{bottom:88.914664pt;}
.yb9_c00036{bottom:89.752704pt;}
.yb8_c00036{bottom:91.456000pt;}
.yb7_c00036{bottom:101.545951pt;}
.yb6_c00036{bottom:101.935564pt;}
.yb5_c00036{bottom:104.145712pt;}
.yb4_c00036{bottom:107.070545pt;}
.yb3_c00036{bottom:118.920595pt;}
.yb2_c00036{bottom:120.337149pt;}
.yb1_c00036{bottom:122.422667pt;}
.yb0_c00036{bottom:159.376559pt;}
.yaf_c00036{bottom:163.365208pt;}
.yae_c00036{bottom:164.347583pt;}
.yad_c00036{bottom:165.009833pt;}
.yac_c00036{bottom:167.532000pt;}
.yab_c00036{bottom:174.132649pt;}
.yaa_c00036{bottom:175.442681pt;}
.ya9_c00036{bottom:177.617396pt;}
.ya8_c00036{bottom:179.320289pt;}
.ya7_c00036{bottom:179.926725pt;}
.ya6_c00036{bottom:180.372252pt;}
.ya5_c00036{bottom:181.492125pt;}
.ya4_c00036{bottom:182.115697pt;}
.ya3_c00036{bottom:183.355751pt;}
.ya2_c00036{bottom:189.302005pt;}
.ya1_c00036{bottom:190.981132pt;}
.ya0_c00036{bottom:191.387744pt;}
.y9f_c00036{bottom:192.201880pt;}
.y9e_c00036{bottom:192.823564pt;}
.y9d_c00036{bottom:194.145372pt;}
.y9c_c00036{bottom:204.860051pt;}
.y9b_c00036{bottom:207.122329pt;}
.y9a_c00036{bottom:207.933656pt;}
.y99_c00036{bottom:209.946537pt;}
.y98_c00036{bottom:210.612036pt;}
.y97_c00036{bottom:211.919785pt;}
.y96_c00036{bottom:214.320244pt;}
.y95_c00036{bottom:220.282228pt;}
.y94_c00036{bottom:221.331685pt;}
.y93_c00036{bottom:223.394789pt;}
.y92_c00036{bottom:224.868637pt;}
.y91_c00036{bottom:226.531849pt;}
.y90_c00036{bottom:228.386975pt;}
.y8f_c00036{bottom:228.714780pt;}
.y8e_c00036{bottom:236.417181pt;}
.y8d_c00036{bottom:237.203381pt;}
.y8c_c00036{bottom:238.304517pt;}
.y8b_c00036{bottom:240.781263pt;}
.y8a_c00036{bottom:241.274552pt;}
.y89_c00036{bottom:243.883355pt;}
.y88_c00036{bottom:244.560856pt;}
.y87_c00036{bottom:251.512844pt;}
.y86_c00036{bottom:252.099081pt;}
.y85_c00036{bottom:253.405824pt;}
.y84_c00036{bottom:254.671328pt;}
.y83_c00036{bottom:257.082015pt;}
.y82_c00036{bottom:258.655251pt;}
.y81_c00036{bottom:259.113839pt;}
.y80_c00036{bottom:260.158208pt;}
.y7f_c00036{bottom:269.311272pt;}
.y7e_c00036{bottom:269.892137pt;}
.y7d_c00036{bottom:271.780475pt;}
.y7c_c00036{bottom:274.124080pt;}
.y7b_c00036{bottom:275.110223pt;}
.y7a_c00036{bottom:275.755617pt;}
.y79_c00036{bottom:285.050888pt;}
.y78_c00036{bottom:286.433581pt;}
.y77_c00036{bottom:286.855363pt;}
.y76_c00036{bottom:289.357347pt;}
.y75_c00036{bottom:290.131927pt;}
.y74_c00036{bottom:290.880859pt;}
.y73_c00036{bottom:300.809740pt;}
.y72_c00036{bottom:301.436005pt;}
.y71_c00036{bottom:302.786120pt;}
.y70_c00036{bottom:303.187147pt;}
.y6f_c00036{bottom:304.003589pt;}
.y6e_c00036{bottom:304.847392pt;}
.y6d_c00036{bottom:305.281301pt;}
.y6c_c00036{bottom:314.872321pt;}
.y6b_c00036{bottom:315.374605pt;}
.y6a_c00036{bottom:316.446965pt;}
.y69_c00036{bottom:316.629517pt;}
.y68_c00036{bottom:317.518895pt;}
.y67_c00036{bottom:317.798473pt;}
.y66_c00036{bottom:318.750399pt;}
.y65_c00036{bottom:319.444000pt;}
.y64_c00036{bottom:328.826000pt;}
.y63_c00036{bottom:329.458667pt;}
.y62_c00036{bottom:329.953093pt;}
.y61_c00036{bottom:331.569547pt;}
.y60_c00036{bottom:332.151467pt;}
.y5f_c00036{bottom:332.536027pt;}
.y5e_c00036{bottom:333.578000pt;}
.y5d_c00036{bottom:335.278720pt;}
.y5c_c00036{bottom:344.101707pt;}
.y5b_c00036{bottom:345.358800pt;}
.y5a_c00036{bottom:346.582987pt;}
.y59_c00036{bottom:347.046320pt;}
.y58_c00036{bottom:348.298853pt;}
.y57_c00036{bottom:349.895333pt;}
.y56_c00036{bottom:350.207253pt;}
.y55_c00036{bottom:351.361307pt;}
.y54_c00036{bottom:359.971093pt;}
.y53_c00036{bottom:360.764400pt;}
.y52_c00036{bottom:361.424267pt;}
.y51_c00036{bottom:363.099360pt;}
.y50_c00036{bottom:363.537067pt;}
.y4f_c00036{bottom:365.127680pt;}
.y4e_c00036{bottom:366.483867pt;}
.y4d_c00036{bottom:375.573093pt;}
.y4c_c00036{bottom:376.105413pt;}
.y4b_c00036{bottom:377.516907pt;}
.y4a_c00036{bottom:377.926560pt;}
.y49_c00036{bottom:379.241787pt;}
.y48_c00036{bottom:379.854907pt;}
.y47_c00036{bottom:380.402667pt;}
.y46_c00036{bottom:391.453701pt;}
.y45_c00036{bottom:391.937441pt;}
.y44_c00036{bottom:392.557480pt;}
.y43_c00036{bottom:393.069968pt;}
.y42_c00036{bottom:394.392607pt;}
.y41_c00036{bottom:394.946672pt;}
.y40_c00036{bottom:395.265448pt;}
.y3f_c00036{bottom:396.240763pt;}
.y3e_c00036{bottom:406.715547pt;}
.y3d_c00036{bottom:407.628712pt;}
.y3c_c00036{bottom:408.104251pt;}
.y3b_c00036{bottom:409.875055pt;}
.y3a_c00036{bottom:410.991455pt;}
.y39_c00036{bottom:411.322055pt;}
.y38_c00036{bottom:412.565163pt;}
.y37_c00036{bottom:420.961217pt;}
.y36_c00036{bottom:421.660121pt;}
.y35_c00036{bottom:422.852071pt;}
.y34_c00036{bottom:423.757899pt;}
.y33_c00036{bottom:424.516801pt;}
.y32_c00036{bottom:425.284000pt;}
.y31_c00036{bottom:438.272000pt;}
.y30_c00036{bottom:438.841333pt;}
.y2f_c00036{bottom:439.173333pt;}
.y2e_c00036{bottom:439.985333pt;}
.y2d_c00036{bottom:440.222667pt;}
.y2c_c00036{bottom:441.290667pt;}
.y2b_c00036{bottom:441.628000pt;}
.y2a_c00036{bottom:441.976000pt;}
.y29_c00036{bottom:442.322667pt;}
.y28_c00036{bottom:452.940000pt;}
.y27_c00036{bottom:453.526667pt;}
.y26_c00036{bottom:455.506667pt;}
.y25_c00036{bottom:455.950667pt;}
.y24_c00036{bottom:456.641333pt;}
.y23_c00036{bottom:456.958667pt;}
.y22_c00036{bottom:457.334667pt;}
.y21_c00036{bottom:458.164000pt;}
.y20_c00036{bottom:468.169333pt;}
.y1f_c00036{bottom:468.578667pt;}
.y1e_c00036{bottom:470.364000pt;}
.y1d_c00036{bottom:470.997333pt;}
.y1c_c00036{bottom:471.842667pt;}
.y1b_c00036{bottom:472.260000pt;}
.y1a_c00036{bottom:473.282667pt;}
.y19_c00036{bottom:483.822667pt;}
.y18_c00036{bottom:484.044000pt;}
.y17_c00036{bottom:485.496000pt;}
.y16_c00036{bottom:485.633333pt;}
.y15_c00036{bottom:486.234667pt;}
.y14_c00036{bottom:486.449333pt;}
.y13_c00036{bottom:486.786667pt;}
.y12_c00036{bottom:487.038667pt;}
.y11_c00036{bottom:487.442667pt;}
.y10_c00036{bottom:500.029333pt;}
.yf_c00036{bottom:500.293333pt;}
.ye_c00036{bottom:501.192000pt;}
.yd_c00036{bottom:501.389333pt;}
.yc_c00036{bottom:502.297333pt;}
.yb_c00036{bottom:502.924000pt;}
.ya_c00036{bottom:504.004000pt;}
.y9_c00036{bottom:515.581333pt;}
.y8_c00036{bottom:515.881333pt;}
.y7_c00036{bottom:516.213333pt;}
.y6_c00036{bottom:516.966667pt;}
.y5_c00036{bottom:517.665333pt;}
.y4_c00036{bottom:518.149333pt;}
.y3_c00036{bottom:518.350667pt;}
.y2_c00036{bottom:519.362667pt;}
.y1_c00036{bottom:529.077333pt;}
.h1c_c00036{height:41.061841pt;}
.h12_c00036{height:52.276100pt;}
.h1e_c00036{height:53.193749pt;}
.h16_c00036{height:53.203112pt;}
.h13_c00036{height:53.209602pt;}
.hd_c00036{height:53.210639pt;}
.h15_c00036{height:54.116279pt;}
.h1a_c00036{height:54.126972pt;}
.h17_c00036{height:54.136500pt;}
.ha_c00036{height:54.141155pt;}
.hc_c00036{height:54.144159pt;}
.h5_c00036{height:55.066667pt;}
.h9_c00036{height:55.074623pt;}
.h11_c00036{height:55.076605pt;}
.h1b_c00036{height:55.993420pt;}
.h3_c00036{height:56.000000pt;}
.hf_c00036{height:56.010107pt;}
.h8_c00036{height:56.941560pt;}
.h6_c00036{height:57.866667pt;}
.h19_c00036{height:58.793091pt;}
.he_c00036{height:58.810612pt;}
.h1d_c00036{height:59.733333pt;}
.h10_c00036{height:59.744114pt;}
.hb_c00036{height:59.745279pt;}
.h14_c00036{height:60.677616pt;}
.h18_c00036{height:62.525985pt;}
.h7_c00036{height:62.533333pt;}
.h4_c00036{height:63.466667pt;}
.h2_c00036{height:114.800000pt;}
.h0_c00036{height:568.533333pt;}
.h1_c00036{height:568.666667pt;}
.w1_c00036{width:323.333333pt;}
.w0_c00036{width:323.466667pt;}
.x0_c00036{left:0.000000pt;}
.x47_c00036{left:23.050767pt;}
.x37_c00036{left:24.205333pt;}
.x2b_c00036{left:25.155435pt;}
.x2_c00036{left:26.464000pt;}
.x6d_c00036{left:27.577961pt;}
.x6c_c00036{left:30.853301pt;}
.x32_c00036{left:32.246667pt;}
.x50_c00036{left:33.217667pt;}
.x60_c00036{left:34.481333pt;}
.x27_c00036{left:35.796000pt;}
.x20_c00036{left:42.253333pt;}
.x6e_c00036{left:43.418149pt;}
.x41_c00036{left:46.371971pt;}
.x44_c00036{left:48.521253pt;}
.x48_c00036{left:52.885697pt;}
.xf_c00036{left:55.044000pt;}
.x69_c00036{left:57.534849pt;}
.x21_c00036{left:58.821333pt;}
.x67_c00036{left:63.651445pt;}
.x1a_c00036{left:66.373333pt;}
.x5b_c00036{left:67.436668pt;}
.x3b_c00036{left:68.450667pt;}
.x6f_c00036{left:70.756365pt;}
.x10_c00036{left:73.040000pt;}
.x22_c00036{left:74.904000pt;}
.x16_c00036{left:77.082667pt;}
.x65_c00036{left:78.879063pt;}
.x28_c00036{left:80.925333pt;}
.x1b_c00036{left:84.269333pt;}
.x3_c00036{left:85.982667pt;}
.x2d_c00036{left:89.413239pt;}
.x2c_c00036{left:90.738304pt;}
.x38_c00036{left:92.234533pt;}
.x5c_c00036{left:94.085015pt;}
.x4_c00036{left:97.800000pt;}
.x1c_c00036{left:99.377333pt;}
.x61_c00036{left:102.579833pt;}
.x5d_c00036{left:104.687045pt;}
.x57_c00036{left:107.702611pt;}
.x49_c00036{left:110.964065pt;}
.x11_c00036{left:112.388000pt;}
.x2e_c00036{left:117.141167pt;}
.x3c_c00036{left:118.552000pt;}
.x4d_c00036{left:119.550931pt;}
.x62_c00036{left:120.460601pt;}
.xa_c00036{left:121.481333pt;}
.x5_c00036{left:126.282667pt;}
.x68_c00036{left:127.273093pt;}
.x66_c00036{left:128.816595pt;}
.x1d_c00036{left:132.256000pt;}
.x35_c00036{left:134.036213pt;}
.x53_c00036{left:135.453652pt;}
.x23_c00036{left:137.052000pt;}
.x17_c00036{left:140.177333pt;}
.x70_c00036{left:142.036000pt;}
.x58_c00036{left:143.110592pt;}
.x72_c00036{left:145.445916pt;}
.x63_c00036{left:146.984717pt;}
.x1_c00036{left:148.560000pt;}
.x1e_c00036{left:153.389333pt;}
.x12_c00036{left:155.360000pt;}
.x45_c00036{left:157.721095pt;}
.x5e_c00036{left:159.680363pt;}
.x59_c00036{left:160.790583pt;}
.x13_c00036{left:165.194667pt;}
.x6_c00036{left:167.372000pt;}
.x73_c00036{left:168.731940pt;}
.xb_c00036{left:171.956000pt;}
.x24_c00036{left:175.690667pt;}
.x29_c00036{left:178.850667pt;}
.x3d_c00036{left:180.076000pt;}
.xc_c00036{left:182.910667pt;}
.x51_c00036{left:184.485437pt;}
.x54_c00036{left:187.059377pt;}
.x3e_c00036{left:189.684000pt;}
.x25_c00036{left:191.524000pt;}
.x36_c00036{left:195.353093pt;}
.x71_c00036{left:205.241333pt;}
.x4e_c00036{left:206.931387pt;}
.x55_c00036{left:207.858140pt;}
.x2f_c00036{left:208.849808pt;}
.x7_c00036{left:211.722667pt;}
.x4a_c00036{left:215.994812pt;}
.x6a_c00036{left:217.583669pt;}
.x26_c00036{left:218.637333pt;}
.x42_c00036{left:225.918637pt;}
.x8_c00036{left:231.234667pt;}
.xd_c00036{left:232.836000pt;}
.x5a_c00036{left:233.791701pt;}
.x39_c00036{left:237.265387pt;}
.x74_c00036{left:238.879056pt;}
.x30_c00036{left:239.830888pt;}
.x6b_c00036{left:240.865145pt;}
.x5f_c00036{left:242.630777pt;}
.x34_c00036{left:244.385547pt;}
.x3f_c00036{left:246.124000pt;}
.xe_c00036{left:247.518667pt;}
.x9_c00036{left:248.920000pt;}
.x75_c00036{left:252.045876pt;}
.x4b_c00036{left:253.320796pt;}
.x64_c00036{left:254.678249pt;}
.x3a_c00036{left:257.051413pt;}
.x43_c00036{left:258.879971pt;}
.x18_c00036{left:261.128000pt;}
.x4f_c00036{left:262.459579pt;}
.x31_c00036{left:264.049664pt;}
.x56_c00036{left:265.850767pt;}
.x14_c00036{left:268.938667pt;}
.x4c_c00036{left:270.065037pt;}
.x46_c00036{left:271.258183pt;}
.x40_c00036{left:272.560000pt;}
.x33_c00036{left:273.725333pt;}
.x1f_c00036{left:275.621333pt;}
.x52_c00036{left:278.805691pt;}
.x19_c00036{left:281.616000pt;}
.x15_c00036{left:284.718667pt;}
.x2a_c00036{left:290.077333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00037 {
    display:none;
  }
  .loading-indicator_c00037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00037 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00037 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00037" -> "#page-container .classname_c00037")
 */
.pf_c00037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00037 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00037 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00037 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00037 {overflow:visible;}
  }
}
.c_c00037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00037 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00037:after { /* webkit #35443 */
  content: '';
}
.t_c00037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00037 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00037 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00037 { /* info for Javascript */
  display:none;
}
.l_c00037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00037:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00037 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00037.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c00037{transform:matrix(0.096956,0.001939,-0.004999,0.249950,0,0);-ms-transform:matrix(0.096956,0.001939,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.096956,0.001939,-0.004999,0.249950,0,0);}
.m21_c00037{transform:matrix(0.122281,0.002446,-0.004999,0.249950,0,0);-ms-transform:matrix(0.122281,0.002446,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.122281,0.002446,-0.004999,0.249950,0,0);}
.ma8_c00037{transform:matrix(0.127579,0.002552,-0.004999,0.249950,0,0);-ms-transform:matrix(0.127579,0.002552,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.127579,0.002552,-0.004999,0.249950,0,0);}
.m1_c00037{transform:matrix(0.129930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129930,0.000000,0.000000,0.250000,0,0);}
.m5b_c00037{transform:matrix(0.133948,0.002679,-0.004999,0.249950,0,0);-ms-transform:matrix(0.133948,0.002679,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.133948,0.002679,-0.004999,0.249950,0,0);}
.m78_c00037{transform:matrix(0.142492,0.002850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.142492,0.002850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.142492,0.002850,-0.004999,0.249950,0,0);}
.m5e_c00037{transform:matrix(0.145371,0.002907,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145371,0.002907,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145371,0.002907,-0.004999,0.249950,0,0);}
.mc7_c00037{transform:matrix(0.145691,0.002914,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145691,0.002914,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145691,0.002914,-0.004999,0.249950,0,0);}
.m4_c00037{transform:matrix(0.146820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146820,0.000000,0.000000,0.250000,0,0);}
.md0_c00037{transform:matrix(0.148215,0.002964,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148215,0.002964,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148215,0.002964,-0.004999,0.249950,0,0);}
.m9a_c00037{transform:matrix(0.148915,0.002978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148915,0.002978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148915,0.002978,-0.004999,0.249950,0,0);}
.m82_c00037{transform:matrix(0.149695,0.002994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149695,0.002994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149695,0.002994,-0.004999,0.249950,0,0);}
.mb1_c00037{transform:matrix(0.151400,0.003028,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151400,0.003028,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151400,0.003028,-0.004999,0.249950,0,0);}
.m7_c00037{transform:matrix(0.152570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152570,0.000000,0.000000,0.250000,0,0);}
.mda_c00037{transform:matrix(0.152864,0.003057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152864,0.003057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152864,0.003057,-0.004999,0.249950,0,0);}
.m19_c00037{transform:matrix(0.155019,0.003100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155019,0.003100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155019,0.003100,-0.004999,0.249950,0,0);}
.m4e_c00037{transform:matrix(0.155174,0.003103,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155174,0.003103,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155174,0.003103,-0.004999,0.249950,0,0);}
.m15_c00037{transform:matrix(0.155751,0.001713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155751,0.001713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155751,0.001713,-0.002750,0.249985,0,0);}
.m5d_c00037{transform:matrix(0.157558,0.003151,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157558,0.003151,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157558,0.003151,-0.004999,0.249950,0,0);}
.m0_c00037{transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);}
.md7_c00037{transform:matrix(0.160548,0.003211,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160548,0.003211,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160548,0.003211,-0.004999,0.249950,0,0);}
.m6b_c00037{transform:matrix(0.161268,0.003225,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161268,0.003225,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161268,0.003225,-0.004999,0.249950,0,0);}
.m6e_c00037{transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162323,0.003246,-0.004999,0.249950,0,0);}
.m36_c00037{transform:matrix(0.163852,0.003277,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163852,0.003277,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163852,0.003277,-0.004999,0.249950,0,0);}
.m92_c00037{transform:matrix(0.164267,0.003285,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164267,0.003285,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164267,0.003285,-0.004999,0.249950,0,0);}
.mc3_c00037{transform:matrix(0.164992,0.003300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164992,0.003300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164992,0.003300,-0.004999,0.249950,0,0);}
.m51_c00037{transform:matrix(0.165077,0.003302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165077,0.003302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165077,0.003302,-0.004999,0.249950,0,0);}
.m90_c00037{transform:matrix(0.165112,0.003302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165112,0.003302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165112,0.003302,-0.004999,0.249950,0,0);}
.m75_c00037{transform:matrix(0.165392,0.003308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165392,0.003308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165392,0.003308,-0.004999,0.249950,0,0);}
.m6_c00037{transform:matrix(0.165570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165570,0.000000,0.000000,0.250000,0,0);}
.m65_c00037{transform:matrix(0.165692,0.003314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165692,0.003314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165692,0.003314,-0.004999,0.249950,0,0);}
.m17_c00037{transform:matrix(0.166235,0.001829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166235,0.001829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166235,0.001829,-0.002750,0.249985,0,0);}
.mca_c00037{transform:matrix(0.166317,0.003326,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166317,0.003326,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166317,0.003326,-0.004999,0.249950,0,0);}
.m63_c00037{transform:matrix(0.166342,0.003327,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166342,0.003327,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166342,0.003327,-0.004999,0.249950,0,0);}
.m72_c00037{transform:matrix(0.166607,0.003332,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166607,0.003332,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166607,0.003332,-0.004999,0.249950,0,0);}
.m13_c00037{transform:matrix(0.167600,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167600,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167600,0.001844,-0.002750,0.249985,0,0);}
.mb_c00037{transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);}
.m97_c00037{transform:matrix(0.167791,0.003356,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167791,0.003356,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167791,0.003356,-0.004999,0.249950,0,0);}
.m84_c00037{transform:matrix(0.168206,0.003364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168206,0.003364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168206,0.003364,-0.004999,0.249950,0,0);}
.mc1_c00037{transform:matrix(0.168566,0.003371,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168566,0.003371,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168566,0.003371,-0.004999,0.249950,0,0);}
.m9_c00037{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.maf_c00037{transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);}
.ma_c00037{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.me2_c00037{transform:matrix(0.169491,0.003390,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169491,0.003390,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169491,0.003390,-0.004999,0.249950,0,0);}
.m67_c00037{transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169576,0.003392,-0.004999,0.249950,0,0);}
.m47_c00037{transform:matrix(0.169676,0.003394,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169676,0.003394,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169676,0.003394,-0.004999,0.249950,0,0);}
.m55_c00037{transform:matrix(0.170276,0.003406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170276,0.003406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170276,0.003406,-0.004999,0.249950,0,0);}
.m27_c00037{transform:matrix(0.170496,0.003410,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170496,0.003410,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170496,0.003410,-0.004999,0.249950,0,0);}
.m7b_c00037{transform:matrix(0.171396,0.003428,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171396,0.003428,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171396,0.003428,-0.004999,0.249950,0,0);}
.m1c_c00037{transform:matrix(0.171456,0.003429,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171456,0.003429,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171456,0.003429,-0.004999,0.249950,0,0);}
.m23_c00037{transform:matrix(0.172101,0.003442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172101,0.003442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172101,0.003442,-0.004999,0.249950,0,0);}
.m5f_c00037{transform:matrix(0.172396,0.003448,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172396,0.003448,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172396,0.003448,-0.004999,0.249950,0,0);}
.m1b_c00037{transform:matrix(0.172990,0.003460,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172990,0.003460,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172990,0.003460,-0.004999,0.249950,0,0);}
.maa_c00037{transform:matrix(0.173460,0.003469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173460,0.003469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173460,0.003469,-0.004999,0.249950,0,0);}
.mc_c00037{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mc2_c00037{transform:matrix(0.174185,0.003484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174185,0.003484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174185,0.003484,-0.004999,0.249950,0,0);}
.m5c_c00037{transform:matrix(0.174465,0.003489,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174465,0.003489,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174465,0.003489,-0.004999,0.249950,0,0);}
.m18_c00037{transform:matrix(0.174685,0.003494,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174685,0.003494,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174685,0.003494,-0.004999,0.249950,0,0);}
.ma9_c00037{transform:matrix(0.176335,0.003527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176335,0.003527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176335,0.003527,-0.004999,0.249950,0,0);}
.m22_c00037{transform:matrix(0.176680,0.003534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176680,0.003534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176680,0.003534,-0.004999,0.249950,0,0);}
.m3b_c00037{transform:matrix(0.177320,0.003546,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177320,0.003546,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177320,0.003546,-0.004999,0.249950,0,0);}
.m2_c00037{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m20_c00037{transform:matrix(0.178744,0.003575,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178744,0.003575,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178744,0.003575,-0.004999,0.249950,0,0);}
.m5a_c00037{transform:matrix(0.179389,0.003588,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179389,0.003588,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179389,0.003588,-0.004999,0.249950,0,0);}
.mdd_c00037{transform:matrix(0.179514,0.003590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179514,0.003590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179514,0.003590,-0.004999,0.249950,0,0);}
.m1e_c00037{transform:matrix(0.179564,0.003591,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179564,0.003591,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179564,0.003591,-0.004999,0.249950,0,0);}
.m7d_c00037{transform:matrix(0.179599,0.003592,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179599,0.003592,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179599,0.003592,-0.004999,0.249950,0,0);}
.m34_c00037{transform:matrix(0.180074,0.003601,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180074,0.003601,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180074,0.003601,-0.004999,0.249950,0,0);}
.m71_c00037{transform:matrix(0.180259,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180259,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180259,0.003605,-0.004999,0.249950,0,0);}
.m2f_c00037{transform:matrix(0.180274,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180274,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180274,0.003605,-0.004999,0.249950,0,0);}
.m68_c00037{transform:matrix(0.180714,0.003614,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180714,0.003614,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180714,0.003614,-0.004999,0.249950,0,0);}
.mbc_c00037{transform:matrix(0.180769,0.003615,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180769,0.003615,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180769,0.003615,-0.004999,0.249950,0,0);}
.m3a_c00037{transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);}
.m26_c00037{transform:matrix(0.180924,0.003618,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180924,0.003618,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180924,0.003618,-0.004999,0.249950,0,0);}
.m11_c00037{transform:matrix(0.181239,0.001994,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181239,0.001994,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181239,0.001994,-0.002750,0.249985,0,0);}
.m28_c00037{transform:matrix(0.181434,0.003629,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181434,0.003629,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181434,0.003629,-0.004999,0.249950,0,0);}
.mc6_c00037{transform:matrix(0.181584,0.003632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181584,0.003632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181584,0.003632,-0.004999,0.249950,0,0);}
.m66_c00037{transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);}
.m62_c00037{transform:matrix(0.181934,0.003639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181934,0.003639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181934,0.003639,-0.004999,0.249950,0,0);}
.md3_c00037{transform:matrix(0.182194,0.003644,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182194,0.003644,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182194,0.003644,-0.004999,0.249950,0,0);}
.m3_c00037{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.182259,0.003645,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182259,0.003645,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182259,0.003645,-0.004999,0.249950,0,0);}
.mb6_c00037{transform:matrix(0.182763,0.003655,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182763,0.003655,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182763,0.003655,-0.004999,0.249950,0,0);}
.m7c_c00037{transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183063,0.003661,-0.004999,0.249950,0,0);}
.m53_c00037{transform:matrix(0.183593,0.003672,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183593,0.003672,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183593,0.003672,-0.004999,0.249950,0,0);}
.m3c_c00037{transform:matrix(0.183823,0.003676,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183823,0.003676,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183823,0.003676,-0.004999,0.249950,0,0);}
.m8b_c00037{transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);}
.m3d_c00037{transform:matrix(0.184353,0.003687,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184353,0.003687,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184353,0.003687,-0.004999,0.249950,0,0);}
.mc4_c00037{transform:matrix(0.184393,0.003688,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184393,0.003688,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184393,0.003688,-0.004999,0.249950,0,0);}
.mac_c00037{transform:matrix(0.184533,0.003691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184533,0.003691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184533,0.003691,-0.004999,0.249950,0,0);}
.m43_c00037{transform:matrix(0.184638,0.003693,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184638,0.003693,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184638,0.003693,-0.004999,0.249950,0,0);}
.m83_c00037{transform:matrix(0.184753,0.003695,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184753,0.003695,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184753,0.003695,-0.004999,0.249950,0,0);}
.m14_c00037{transform:matrix(0.184949,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184949,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184949,0.002034,-0.002750,0.249985,0,0);}
.m52_c00037{transform:matrix(0.185038,0.003701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185038,0.003701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185038,0.003701,-0.004999,0.249950,0,0);}
.mdb_c00037{transform:matrix(0.185123,0.003702,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185123,0.003702,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185123,0.003702,-0.004999,0.249950,0,0);}
.m7f_c00037{transform:matrix(0.185473,0.003709,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185473,0.003709,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185473,0.003709,-0.004999,0.249950,0,0);}
.m40_c00037{transform:matrix(0.186193,0.003724,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186193,0.003724,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186193,0.003724,-0.004999,0.249950,0,0);}
.m25_c00037{transform:matrix(0.186533,0.003731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186533,0.003731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186533,0.003731,-0.004999,0.249950,0,0);}
.m88_c00037{transform:matrix(0.187213,0.003744,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187213,0.003744,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187213,0.003744,-0.004999,0.249950,0,0);}
.m2a_c00037{transform:matrix(0.187463,0.003749,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187463,0.003749,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187463,0.003749,-0.004999,0.249950,0,0);}
.m76_c00037{transform:matrix(0.187478,0.003750,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187478,0.003750,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187478,0.003750,-0.004999,0.249950,0,0);}
.m56_c00037{transform:matrix(0.187488,0.003750,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187488,0.003750,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187488,0.003750,-0.004999,0.249950,0,0);}
.mcf_c00037{transform:matrix(0.187637,0.003753,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187637,0.003753,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187637,0.003753,-0.004999,0.249950,0,0);}
.m4b_c00037{transform:matrix(0.187647,0.003753,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187647,0.003753,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187647,0.003753,-0.004999,0.249950,0,0);}
.m8d_c00037{transform:matrix(0.187662,0.003753,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187662,0.003753,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187662,0.003753,-0.004999,0.249950,0,0);}
.mc8_c00037{transform:matrix(0.188162,0.003763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188162,0.003763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188162,0.003763,-0.004999,0.249950,0,0);}
.m2d_c00037{transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);}
.m70_c00037{transform:matrix(0.189022,0.003780,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189022,0.003780,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189022,0.003780,-0.004999,0.249950,0,0);}
.m46_c00037{transform:matrix(0.189372,0.003787,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189372,0.003787,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189372,0.003787,-0.004999,0.249950,0,0);}
.m2c_c00037{transform:matrix(0.189707,0.003794,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189707,0.003794,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189707,0.003794,-0.004999,0.249950,0,0);}
.m49_c00037{transform:matrix(0.189927,0.003799,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189927,0.003799,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189927,0.003799,-0.004999,0.249950,0,0);}
.m61_c00037{transform:matrix(0.190197,0.003804,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190197,0.003804,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190197,0.003804,-0.004999,0.249950,0,0);}
.me1_c00037{transform:matrix(0.190442,0.003809,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190442,0.003809,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190442,0.003809,-0.004999,0.249950,0,0);}
.md4_c00037{transform:matrix(0.190452,0.003809,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190452,0.003809,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190452,0.003809,-0.004999,0.249950,0,0);}
.m6c_c00037{transform:matrix(0.190547,0.003811,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190547,0.003811,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190547,0.003811,-0.004999,0.249950,0,0);}
.mba_c00037{transform:matrix(0.190737,0.003815,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190737,0.003815,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190737,0.003815,-0.004999,0.249950,0,0);}
.me_c00037{transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{transform:matrix(0.191042,0.003821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191042,0.003821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191042,0.003821,-0.004999,0.249950,0,0);}
.mc5_c00037{transform:matrix(0.191067,0.003821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191067,0.003821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191067,0.003821,-0.004999,0.249950,0,0);}
.mb4_c00037{transform:matrix(0.191607,0.003832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191607,0.003832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191607,0.003832,-0.004999,0.249950,0,0);}
.m4c_c00037{transform:matrix(0.191767,0.003835,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191767,0.003835,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191767,0.003835,-0.004999,0.249950,0,0);}
.m7a_c00037{transform:matrix(0.191887,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191887,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191887,0.003838,-0.004999,0.249950,0,0);}
.m93_c00037{transform:matrix(0.191922,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191922,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191922,0.003838,-0.004999,0.249950,0,0);}
.md8_c00037{transform:matrix(0.192002,0.003840,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192002,0.003840,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192002,0.003840,-0.004999,0.249950,0,0);}
.m48_c00037{transform:matrix(0.192397,0.003848,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192397,0.003848,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192397,0.003848,-0.004999,0.249950,0,0);}
.md5_c00037{transform:matrix(0.193091,0.003862,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193091,0.003862,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193091,0.003862,-0.004999,0.249950,0,0);}
.m73_c00037{transform:matrix(0.193266,0.003865,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193266,0.003865,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193266,0.003865,-0.004999,0.249950,0,0);}
.ma7_c00037{transform:matrix(0.194591,0.003892,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194591,0.003892,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194591,0.003892,-0.004999,0.249950,0,0);}
.mde_c00037{transform:matrix(0.194731,0.003895,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194731,0.003895,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194731,0.003895,-0.004999,0.249950,0,0);}
.m35_c00037{transform:matrix(0.194851,0.003897,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194851,0.003897,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194851,0.003897,-0.004999,0.249950,0,0);}
.mad_c00037{transform:matrix(0.195121,0.003902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195121,0.003902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195121,0.003902,-0.004999,0.249950,0,0);}
.mb9_c00037{transform:matrix(0.196471,0.003929,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196471,0.003929,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196471,0.003929,-0.004999,0.249950,0,0);}
.mab_c00037{transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);}
.mbe_c00037{transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);}
.m6f_c00037{transform:matrix(0.197171,0.003943,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197171,0.003943,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197171,0.003943,-0.004999,0.249950,0,0);}
.m95_c00037{transform:matrix(0.197196,0.003944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197196,0.003944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197196,0.003944,-0.004999,0.249950,0,0);}
.m4a_c00037{transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);}
.m98_c00037{transform:matrix(0.198725,0.003975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198725,0.003975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198725,0.003975,-0.004999,0.249950,0,0);}
.m30_c00037{transform:matrix(0.200000,0.004000,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200000,0.004000,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200000,0.004000,-0.004999,0.249950,0,0);}
.ma0_c00037{transform:matrix(0.200295,0.004006,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200295,0.004006,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200295,0.004006,-0.004999,0.249950,0,0);}
.m2e_c00037{transform:matrix(0.200360,0.004007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200360,0.004007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200360,0.004007,-0.004999,0.249950,0,0);}
.m99_c00037{transform:matrix(0.200420,0.004008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200420,0.004008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200420,0.004008,-0.004999,0.249950,0,0);}
.m91_c00037{transform:matrix(0.200460,0.004009,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200460,0.004009,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200460,0.004009,-0.004999,0.249950,0,0);}
.m74_c00037{transform:matrix(0.200785,0.004016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200785,0.004016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200785,0.004016,-0.004999,0.249950,0,0);}
.m4f_c00037{transform:matrix(0.201230,0.004025,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201230,0.004025,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201230,0.004025,-0.004999,0.249950,0,0);}
.m1a_c00037{transform:matrix(0.201370,0.004027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201370,0.004027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201370,0.004027,-0.004999,0.249950,0,0);}
.m8f_c00037{transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201685,0.004034,-0.004999,0.249950,0,0);}
.mcd_c00037{transform:matrix(0.201870,0.004037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201870,0.004037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201870,0.004037,-0.004999,0.249950,0,0);}
.m8_c00037{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.m59_c00037{transform:matrix(0.202679,0.004054,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202679,0.004054,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202679,0.004054,-0.004999,0.249950,0,0);}
.mb5_c00037{transform:matrix(0.203334,0.004067,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203334,0.004067,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203334,0.004067,-0.004999,0.249950,0,0);}
.m9b_c00037{transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);}
.m4d_c00037{transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);}
.m58_c00037{transform:matrix(0.204644,0.004093,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204644,0.004093,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204644,0.004093,-0.004999,0.249950,0,0);}
.mc0_c00037{transform:matrix(0.204764,0.004095,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204764,0.004095,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204764,0.004095,-0.004999,0.249950,0,0);}
.m12_c00037{transform:matrix(0.205008,0.002255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205008,0.002255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205008,0.002255,-0.002750,0.249985,0,0);}
.m29_c00037{transform:matrix(0.205269,0.004105,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205269,0.004105,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205269,0.004105,-0.004999,0.249950,0,0);}
.mdf_c00037{transform:matrix(0.205369,0.004107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205369,0.004107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205369,0.004107,-0.004999,0.249950,0,0);}
.mb2_c00037{transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);}
.m57_c00037{transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);}
.m85_c00037{transform:matrix(0.206024,0.004120,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206024,0.004120,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206024,0.004120,-0.004999,0.249950,0,0);}
.md9_c00037{transform:matrix(0.206179,0.004124,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206179,0.004124,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206179,0.004124,-0.004999,0.249950,0,0);}
.m10_c00037{transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);}
.m9e_c00037{transform:matrix(0.206879,0.004138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206879,0.004138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206879,0.004138,-0.004999,0.249950,0,0);}
.m37_c00037{transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);}
.mae_c00037{transform:matrix(0.207064,0.004141,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207064,0.004141,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207064,0.004141,-0.004999,0.249950,0,0);}
.m9c_c00037{transform:matrix(0.207883,0.004158,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207883,0.004158,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207883,0.004158,-0.004999,0.249950,0,0);}
.ma4_c00037{transform:matrix(0.208003,0.004160,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208003,0.004160,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208003,0.004160,-0.004999,0.249950,0,0);}
.mb8_c00037{transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);}
.mc9_c00037{transform:matrix(0.209248,0.004185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209248,0.004185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209248,0.004185,-0.004999,0.249950,0,0);}
.m86_c00037{transform:matrix(0.210583,0.004212,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210583,0.004212,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210583,0.004212,-0.004999,0.249950,0,0);}
.m77_c00037{transform:matrix(0.210683,0.004214,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210683,0.004214,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210683,0.004214,-0.004999,0.249950,0,0);}
.me0_c00037{transform:matrix(0.210913,0.004218,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210913,0.004218,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210913,0.004218,-0.004999,0.249950,0,0);}
.mcb_c00037{transform:matrix(0.212363,0.004247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212363,0.004247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212363,0.004247,-0.004999,0.249950,0,0);}
.mf_c00037{transform:matrix(0.212777,0.002341,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212777,0.002341,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212777,0.002341,-0.002750,0.249985,0,0);}
.m16_c00037{transform:matrix(0.214092,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214092,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214092,0.002355,-0.002750,0.249985,0,0);}
.ma1_c00037{transform:matrix(0.214842,0.004297,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214842,0.004297,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214842,0.004297,-0.004999,0.249950,0,0);}
.m81_c00037{transform:matrix(0.215372,0.004307,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215372,0.004307,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215372,0.004307,-0.004999,0.249950,0,0);}
.mbb_c00037{transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215722,0.004314,-0.004999,0.249950,0,0);}
.mce_c00037{transform:matrix(0.216737,0.004335,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216737,0.004335,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216737,0.004335,-0.004999,0.249950,0,0);}
.m7e_c00037{transform:matrix(0.216792,0.004336,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216792,0.004336,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216792,0.004336,-0.004999,0.249950,0,0);}
.m80_c00037{transform:matrix(0.217716,0.004354,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217716,0.004354,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217716,0.004354,-0.004999,0.249950,0,0);}
.m8a_c00037{transform:matrix(0.217766,0.004355,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217766,0.004355,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217766,0.004355,-0.004999,0.249950,0,0);}
.m3f_c00037{transform:matrix(0.218316,0.004366,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218316,0.004366,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218316,0.004366,-0.004999,0.249950,0,0);}
.m41_c00037{transform:matrix(0.218616,0.004372,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218616,0.004372,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218616,0.004372,-0.004999,0.249950,0,0);}
.m6d_c00037{transform:matrix(0.220386,0.004408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220386,0.004408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220386,0.004408,-0.004999,0.249950,0,0);}
.m64_c00037{transform:matrix(0.220526,0.004411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220526,0.004411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220526,0.004411,-0.004999,0.249950,0,0);}
.m94_c00037{transform:matrix(0.221176,0.004424,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221176,0.004424,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221176,0.004424,-0.004999,0.249950,0,0);}
.mbd_c00037{transform:matrix(0.222121,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222121,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222121,0.004442,-0.004999,0.249950,0,0);}
.m3e_c00037{transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);}
.m96_c00037{transform:matrix(0.223375,0.004468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223375,0.004468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223375,0.004468,-0.004999,0.249950,0,0);}
.m87_c00037{transform:matrix(0.223455,0.004469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223455,0.004469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223455,0.004469,-0.004999,0.249950,0,0);}
.md1_c00037{transform:matrix(0.223615,0.004472,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223615,0.004472,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223615,0.004472,-0.004999,0.249950,0,0);}
.m31_c00037{transform:matrix(0.223820,0.004476,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223820,0.004476,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223820,0.004476,-0.004999,0.249950,0,0);}
.mb7_c00037{transform:matrix(0.226375,0.004527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226375,0.004527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226375,0.004527,-0.004999,0.249950,0,0);}
.mb0_c00037{transform:matrix(0.226550,0.004531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226550,0.004531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226550,0.004531,-0.004999,0.249950,0,0);}
.mcc_c00037{transform:matrix(0.228824,0.004576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228824,0.004576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228824,0.004576,-0.004999,0.249950,0,0);}
.m79_c00037{transform:matrix(0.228869,0.004577,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228869,0.004577,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228869,0.004577,-0.004999,0.249950,0,0);}
.m8e_c00037{transform:matrix(0.232274,0.004645,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232274,0.004645,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232274,0.004645,-0.004999,0.249950,0,0);}
.ma5_c00037{transform:matrix(0.233553,0.004671,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233553,0.004671,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233553,0.004671,-0.004999,0.249950,0,0);}
.m9f_c00037{transform:matrix(0.234638,0.004693,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234638,0.004693,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234638,0.004693,-0.004999,0.249950,0,0);}
.m8c_c00037{transform:matrix(0.235048,0.004701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235048,0.004701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235048,0.004701,-0.004999,0.249950,0,0);}
.m89_c00037{transform:matrix(0.235863,0.004717,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235863,0.004717,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235863,0.004717,-0.004999,0.249950,0,0);}
.m50_c00037{transform:matrix(0.236958,0.004739,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236958,0.004739,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236958,0.004739,-0.004999,0.249950,0,0);}
.m42_c00037{transform:matrix(0.237298,0.004746,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237298,0.004746,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237298,0.004746,-0.004999,0.249950,0,0);}
.md2_c00037{transform:matrix(0.244366,0.004887,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244366,0.004887,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244366,0.004887,-0.004999,0.249950,0,0);}
.ma6_c00037{transform:matrix(0.246236,0.004925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246236,0.004925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246236,0.004925,-0.004999,0.249950,0,0);}
.m6a_c00037{transform:matrix(0.248065,0.004961,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248065,0.004961,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248065,0.004961,-0.004999,0.249950,0,0);}
.m9d_c00037{transform:matrix(0.250805,0.005016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250805,0.005016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250805,0.005016,-0.004999,0.249950,0,0);}
.m1f_c00037{transform:matrix(0.250835,0.005017,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250835,0.005017,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250835,0.005017,-0.004999,0.249950,0,0);}
.mb3_c00037{transform:matrix(0.252919,0.005058,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252919,0.005058,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252919,0.005058,-0.004999,0.249950,0,0);}
.m45_c00037{transform:matrix(0.257703,0.005154,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257703,0.005154,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257703,0.005154,-0.004999,0.249950,0,0);}
.m69_c00037{transform:matrix(0.261288,0.005226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261288,0.005226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261288,0.005226,-0.004999,0.249950,0,0);}
.m39_c00037{transform:matrix(0.264527,0.005291,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264527,0.005291,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264527,0.005291,-0.004999,0.249950,0,0);}
.m33_c00037{transform:matrix(0.266057,0.005321,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266057,0.005321,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266057,0.005321,-0.004999,0.249950,0,0);}
.m2b_c00037{transform:matrix(0.276170,0.005523,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276170,0.005523,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276170,0.005523,-0.004999,0.249950,0,0);}
.m60_c00037{transform:matrix(0.282019,0.005640,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282019,0.005640,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282019,0.005640,-0.004999,0.249950,0,0);}
.m44_c00037{transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);}
.mbf_c00037{transform:matrix(0.296116,0.005922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.296116,0.005922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.296116,0.005922,-0.004999,0.249950,0,0);}
.m32_c00037{transform:matrix(0.298390,0.005968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298390,0.005968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298390,0.005968,-0.004999,0.249950,0,0);}
.m54_c00037{transform:matrix(0.321996,0.006440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.321996,0.006440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.321996,0.006440,-0.004999,0.249950,0,0);}
.ma3_c00037{transform:matrix(0.338037,0.006761,-0.004999,0.249950,0,0);-ms-transform:matrix(0.338037,0.006761,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.338037,0.006761,-0.004999,0.249950,0,0);}
.ma2_c00037{transform:matrix(0.352734,0.007055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.352734,0.007055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.352734,0.007055,-0.004999,0.249950,0,0);}
.md6_c00037{transform:matrix(0.471321,0.009426,-0.004999,0.249950,0,0);-ms-transform:matrix(0.471321,0.009426,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.471321,0.009426,-0.004999,0.249950,0,0);}
.mdc_c00037{transform:matrix(0.676875,0.013537,-0.004999,0.249950,0,0);-ms-transform:matrix(0.676875,0.013537,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.676875,0.013537,-0.004999,0.249950,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
.fc0_c00037{color:transparent;}
.fs5_c00037{font-size:59.861969px;}
.fs7_c00037{font-size:60.912179px;}
.fsd_c00037{font-size:61.962389px;}
.fs6_c00037{font-size:63.012599px;}
.fs8_c00037{font-size:64.062809px;}
.fs4_c00037{font-size:66.163229px;}
.fsb_c00037{font-size:68.263649px;}
.fsa_c00037{font-size:69.313859px;}
.fs2_c00037{font-size:70.354256px;}
.fs3_c00037{font-size:70.364069px;}
.fsc_c00037{font-size:71.414279px;}
.fs9_c00037{font-size:72.464489px;}
.fs1_c00037{font-size:77.700000px;}
.fs0_c00037{font-size:79.800000px;}
.y0_c00037{bottom:0.000000px;}
.yd9_c00037{bottom:35.231460px;}
.yd8_c00037{bottom:35.910180px;}
.yd7_c00037{bottom:36.874800px;}
.yd6_c00037{bottom:37.591800px;}
.yd5_c00037{bottom:38.266980px;}
.yd4_c00037{bottom:39.207150px;}
.yd3_c00037{bottom:39.466440px;}
.yd2_c00037{bottom:40.140630px;}
.yd1_c00037{bottom:54.278550px;}
.yd0_c00037{bottom:54.625470px;}
.ycf_c00037{bottom:55.405800px;}
.yce_c00037{bottom:56.737980px;}
.ycd_c00037{bottom:57.075600px;}
.ycc_c00037{bottom:57.456900px;}
.ycb_c00037{bottom:58.228830px;}
.yca_c00037{bottom:71.554740px;}
.yc9_c00037{bottom:72.312300px;}
.yc8_c00037{bottom:72.666420px;}
.yc7_c00037{bottom:73.605930px;}
.yc6_c00037{bottom:74.091270px;}
.yc5_c00037{bottom:74.758800px;}
.yc4_c00037{bottom:75.782820px;}
.yc3_c00037{bottom:90.859560px;}
.yc2_c00037{bottom:91.864830px;}
.yc1_c00037{bottom:92.959590px;}
.yc0_c00037{bottom:93.246780px;}
.ybf_c00037{bottom:93.603840px;}
.ybe_c00037{bottom:107.424180px;}
.ybd_c00037{bottom:107.650920px;}
.ybc_c00037{bottom:108.474600px;}
.ybb_c00037{bottom:108.607680px;}
.yba_c00037{bottom:109.498980px;}
.yb9_c00037{bottom:110.018070px;}
.yb8_c00037{bottom:110.889960px;}
.yb7_c00037{bottom:124.853760px;}
.yb6_c00037{bottom:126.340230px;}
.yb5_c00037{bottom:126.668010px;}
.yb4_c00037{bottom:127.843110px;}
.yb3_c00037{bottom:129.554550px;}
.yb2_c00037{bottom:130.874670px;}
.yb1_c00037{bottom:142.859520px;}
.yb0_c00037{bottom:144.024270px;}
.yaf_c00037{bottom:145.895670px;}
.yae_c00037{bottom:146.394270px;}
.yad_c00037{bottom:147.396960px;}
.yac_c00037{bottom:147.773010px;}
.yab_c00037{bottom:148.710900px;}
.yaa_c00037{bottom:149.239260px;}
.ya9_c00037{bottom:161.330430px;}
.ya8_c00037{bottom:162.974820px;}
.ya7_c00037{bottom:163.345500px;}
.ya6_c00037{bottom:164.427450px;}
.ya5_c00037{bottom:164.886360px;}
.ya4_c00037{bottom:165.472800px;}
.ya3_c00037{bottom:166.522140px;}
.ya2_c00037{bottom:178.131450px;}
.ya1_c00037{bottom:178.431930px;}
.ya0_c00037{bottom:179.779680px;}
.y9f_c00037{bottom:181.277700px;}
.y9e_c00037{bottom:182.075040px;}
.y9d_c00037{bottom:183.903960px;}
.y9c_c00037{bottom:184.228650px;}
.y9b_c00037{bottom:185.159070px;}
.y9a_c00037{bottom:196.234080px;}
.y99_c00037{bottom:196.723980px;}
.y98_c00037{bottom:197.066190px;}
.y97_c00037{bottom:198.027120px;}
.y96_c00037{bottom:198.567390px;}
.y95_c00037{bottom:200.382750px;}
.y94_c00037{bottom:200.922720px;}
.y93_c00037{bottom:202.577040px;}
.y92_c00037{bottom:203.524770px;}
.y91_c00037{bottom:214.719030px;}
.y90_c00037{bottom:216.977340px;}
.y8f_c00037{bottom:217.231650px;}
.y8e_c00037{bottom:218.141340px;}
.y8d_c00037{bottom:218.641500px;}
.y8c_c00037{bottom:231.257280px;}
.y8b_c00037{bottom:231.459570px;}
.y8a_c00037{bottom:232.561020px;}
.y89_c00037{bottom:232.766400px;}
.y88_c00037{bottom:233.849790px;}
.y87_c00037{bottom:234.538260px;}
.y86_c00037{bottom:235.383840px;}
.y85_c00037{bottom:249.022620px;}
.y84_c00037{bottom:249.521040px;}
.y83_c00037{bottom:250.769580px;}
.y82_c00037{bottom:251.658570px;}
.y81_c00037{bottom:253.604460px;}
.y80_c00037{bottom:254.830230px;}
.y7f_c00037{bottom:267.368250px;}
.y7e_c00037{bottom:270.124590px;}
.y7d_c00037{bottom:270.937920px;}
.y7c_c00037{bottom:272.573010px;}
.y7b_c00037{bottom:272.944770px;}
.y7a_c00037{bottom:275.086380px;}
.y79_c00037{bottom:284.318640px;}
.y78_c00037{bottom:284.895390px;}
.y77_c00037{bottom:285.350160px;}
.y76_c00037{bottom:287.045910px;}
.y75_c00037{bottom:288.770400px;}
.y74_c00037{bottom:289.668510px;}
.y73_c00037{bottom:303.510390px;}
.y72_c00037{bottom:304.355100px;}
.y71_c00037{bottom:304.654590px;}
.y70_c00037{bottom:304.916040px;}
.y6f_c00037{bottom:305.817030px;}
.y6e_c00037{bottom:306.881370px;}
.y6d_c00037{bottom:307.491240px;}
.y6c_c00037{bottom:319.885650px;}
.y6b_c00037{bottom:320.665200px;}
.y6a_c00037{bottom:321.447030px;}
.y69_c00037{bottom:321.666480px;}
.y68_c00037{bottom:322.462170px;}
.y67_c00037{bottom:322.867800px;}
.y66_c00037{bottom:323.964900px;}
.y65_c00037{bottom:337.589010px;}
.y64_c00037{bottom:339.034410px;}
.y63_c00037{bottom:339.950220px;}
.y62_c00037{bottom:341.277000px;}
.y61_c00037{bottom:343.019460px;}
.y60_c00037{bottom:343.704000px;}
.y5f_c00037{bottom:344.265720px;}
.y5e_c00037{bottom:345.029910px;}
.y5d_c00037{bottom:349.868490px;}
.y5c_c00037{bottom:350.257920px;}
.y5b_c00037{bottom:352.603770px;}
.y5a_c00037{bottom:354.435960px;}
.y59_c00037{bottom:354.747930px;}
.y58_c00037{bottom:357.186360px;}
.y57_c00037{bottom:373.025340px;}
.y56_c00037{bottom:373.800840px;}
.y55_c00037{bottom:373.900650px;}
.y54_c00037{bottom:374.434830px;}
.y53_c00037{bottom:374.632470px;}
.y52_c00037{bottom:375.491610px;}
.y51_c00037{bottom:375.811740px;}
.y50_c00037{bottom:390.052530px;}
.y4f_c00037{bottom:393.500760px;}
.y4e_c00037{bottom:394.902510px;}
.y4d_c00037{bottom:396.823560px;}
.y4c_c00037{bottom:397.288290px;}
.y4b_c00037{bottom:399.041700px;}
.y4a_c00037{bottom:407.437950px;}
.y49_c00037{bottom:407.651400px;}
.y48_c00037{bottom:408.362730px;}
.y47_c00037{bottom:408.582690px;}
.y46_c00037{bottom:409.264170px;}
.y45_c00037{bottom:409.481070px;}
.y44_c00037{bottom:410.781000px;}
.y43_c00037{bottom:411.112680px;}
.y42_c00037{bottom:411.557880px;}
.y41_c00037{bottom:411.999120px;}
.y40_c00037{bottom:426.244350px;}
.y3f_c00037{bottom:426.425370px;}
.y3e_c00037{bottom:427.628160px;}
.y3d_c00037{bottom:428.742630px;}
.y3c_c00037{bottom:442.313970px;}
.y3b_c00037{bottom:442.624740px;}
.y3a_c00037{bottom:442.855920px;}
.y39_c00037{bottom:443.627100px;}
.y38_c00037{bottom:443.865330px;}
.y37_c00037{bottom:444.034800px;}
.y36_c00037{bottom:444.943800px;}
.y35_c00037{bottom:445.204590px;}
.y34_c00037{bottom:445.506870px;}
.y33_c00037{bottom:446.296350px;}
.y32_c00037{bottom:459.993900px;}
.y31_c00037{bottom:461.597130px;}
.y30_c00037{bottom:462.006600px;}
.y2f_c00037{bottom:462.431040px;}
.y2e_c00037{bottom:462.940050px;}
.y2d_c00037{bottom:463.058550px;}
.y2c_c00037{bottom:464.270700px;}
.y2b_c00037{bottom:464.657490px;}
.y2a_c00037{bottom:478.364580px;}
.y29_c00037{bottom:478.776750px;}
.y28_c00037{bottom:479.119590px;}
.y27_c00037{bottom:480.183690px;}
.y26_c00037{bottom:482.309160px;}
.y25_c00037{bottom:482.753700px;}
.y24_c00037{bottom:495.060180px;}
.y23_c00037{bottom:496.727520px;}
.y22_c00037{bottom:497.401080px;}
.y21_c00037{bottom:498.678870px;}
.y20_c00037{bottom:498.950730px;}
.y1f_c00037{bottom:500.499210px;}
.y1e_c00037{bottom:501.924720px;}
.y1d_c00037{bottom:510.156150px;}
.y1c_c00037{bottom:511.460490px;}
.y1b_c00037{bottom:511.905270px;}
.y1a_c00037{bottom:512.350320px;}
.y19_c00037{bottom:513.593400px;}
.y18_c00037{bottom:514.613070px;}
.y17_c00037{bottom:515.240700px;}
.y16_c00037{bottom:515.581230px;}
.y15_c00037{bottom:517.054350px;}
.y14_c00037{bottom:530.541840px;}
.y13_c00037{bottom:531.864900px;}
.y12_c00037{bottom:533.071770px;}
.y11_c00037{bottom:533.940900px;}
.y10_c00037{bottom:534.319260px;}
.yf_c00037{bottom:534.586830px;}
.ye_c00037{bottom:535.463190px;}
.yd_c00037{bottom:535.954500px;}
.yc_c00037{bottom:547.829042px;}
.yb_c00037{bottom:548.313580px;}
.ya_c00037{bottom:548.478877px;}
.y9_c00037{bottom:548.799621px;}
.y8_c00037{bottom:549.150774px;}
.y7_c00037{bottom:549.810229px;}
.y6_c00037{bottom:550.027023px;}
.y5_c00037{bottom:550.614918px;}
.y4_c00037{bottom:550.801500px;}
.y3_c00037{bottom:565.512000px;}
.y2_c00037{bottom:583.881000px;}
.y1_c00037{bottom:598.860000px;}
.h7_c00037{height:59.861969px;}
.h9_c00037{height:60.912179px;}
.hf_c00037{height:61.962389px;}
.h8_c00037{height:63.012599px;}
.ha_c00037{height:64.062809px;}
.h6_c00037{height:66.163229px;}
.hd_c00037{height:68.263649px;}
.hc_c00037{height:69.313859px;}
.h4_c00037{height:70.354256px;}
.h5_c00037{height:70.364069px;}
.he_c00037{height:71.414279px;}
.hb_c00037{height:72.464489px;}
.h3_c00037{height:77.700000px;}
.h2_c00037{height:79.800000px;}
.h0_c00037{height:639.600000px;}
.h1_c00037{height:639.750000px;}
.w1_c00037{width:363.750000px;}
.w0_c00037{width:363.900000px;}
.x0_c00037{left:0.000000px;}
.x27_c00037{left:28.625220px;}
.x6d_c00037{left:38.138490px;}
.x1f_c00037{left:39.400500px;}
.x2_c00037{left:40.500000px;}
.xf_c00037{left:42.304500px;}
.x74_c00037{left:47.306820px;}
.x10_c00037{left:59.266500px;}
.x67_c00037{left:62.968500px;}
.x18_c00037{left:64.336500px;}
.x3_c00037{left:65.880000px;}
.x39_c00037{left:68.201430px;}
.x4d_c00037{left:71.610600px;}
.x5d_c00037{left:73.667670px;}
.x60_c00037{left:76.096320px;}
.x7a_c00037{left:77.263200px;}
.xb_c00037{left:83.970000px;}
.x52_c00037{left:86.177850px;}
.x4_c00037{left:88.560000px;}
.x64_c00037{left:90.869760px;}
.x75_c00037{left:92.731050px;}
.x3e_c00037{left:95.081400px;}
.x2f_c00037{left:96.216840px;}
.x20_c00037{left:98.350620px;}
.x58_c00037{left:100.477530px;}
.x68_c00037{left:105.586290px;}
.x19_c00037{left:108.154500px;}
.x3f_c00037{left:109.614420px;}
.x6f_c00037{left:111.355800px;}
.x11_c00037{left:112.711500px;}
.x49_c00037{left:113.970510px;}
.x76_c00037{left:115.172400px;}
.x3a_c00037{left:116.724300px;}
.x30_c00037{left:117.858450px;}
.x37_c00037{left:120.254520px;}
.x1a_c00037{left:121.533000px;}
.x69_c00037{left:122.663100px;}
.x72_c00037{left:123.719340px;}
.x55_c00037{left:126.089490px;}
.x4e_c00037{left:127.603710px;}
.x12_c00037{left:132.420000px;}
.x46_c00037{left:133.939470px;}
.x77_c00037{left:135.054600px;}
.x21_c00037{left:137.079750px;}
.x41_c00037{left:138.962010px;}
.x1b_c00037{left:140.451000px;}
.x5_c00037{left:141.750000px;}
.x65_c00037{left:143.137260px;}
.x47_c00037{left:145.936530px;}
.x2b_c00037{left:147.801990px;}
.xc_c00037{left:152.820000px;}
.x42_c00037{left:155.371620px;}
.x61_c00037{left:162.243210px;}
.x6_c00037{left:164.160000px;}
.x6a_c00037{left:168.220770px;}
.x40_c00037{left:169.652520px;}
.x4f_c00037{left:175.054170px;}
.x22_c00037{left:177.859170px;}
.x1_c00037{left:179.280000px;}
.xd_c00037{left:180.900000px;}
.x56_c00037{left:182.483850px;}
.x1c_c00037{left:183.907500px;}
.x7_c00037{left:187.380000px;}
.x50_c00037{left:188.801940px;}
.x6b_c00037{left:190.899870px;}
.x13_c00037{left:192.370500px;}
.x62_c00037{left:194.157030px;}
.x4b_c00037{left:196.643790px;}
.x3b_c00037{left:198.002310px;}
.x43_c00037{left:199.937760px;}
.x31_c00037{left:201.332940px;}
.x51_c00037{left:204.526740px;}
.x2c_c00037{left:206.179170px;}
.x44_c00037{left:208.304610px;}
.x57_c00037{left:210.545310px;}
.x3c_c00037{left:211.548390px;}
.x32_c00037{left:213.407880px;}
.x66_c00037{left:215.768760px;}
.x28_c00037{left:217.142160px;}
.x38_c00037{left:219.081870px;}
.x5e_c00037{left:222.154380px;}
.x14_c00037{left:224.293500px;}
.x23_c00037{left:227.558190px;}
.xe_c00037{left:228.960000px;}
.x33_c00037{left:230.421420px;}
.x2d_c00037{left:231.754710px;}
.x6e_c00037{left:238.492500px;}
.x70_c00037{left:239.924850px;}
.x59_c00037{left:242.221530px;}
.x1d_c00037{left:244.251000px;}
.x24_c00037{left:245.383920px;}
.x73_c00037{left:246.795720px;}
.x8_c00037{left:248.400000px;}
.x15_c00037{left:253.452000px;}
.x78_c00037{left:259.362570px;}
.x4a_c00037{left:261.602370px;}
.x25_c00037{left:263.196150px;}
.x53_c00037{left:266.118420px;}
.x16_c00037{left:268.479000px;}
.x45_c00037{left:272.889930px;}
.x29_c00037{left:274.259160px;}
.x6c_c00037{left:275.991480px;}
.x5f_c00037{left:277.781610px;}
.x79_c00037{left:279.784800px;}
.x34_c00037{left:285.487020px;}
.x54_c00037{left:290.057400px;}
.x4c_c00037{left:294.220590px;}
.x2a_c00037{left:298.469100px;}
.x5c_c00037{left:300.909450px;}
.x35_c00037{left:301.998000px;}
.x5a_c00037{left:304.648530px;}
.x48_c00037{left:306.594240px;}
.x9_c00037{left:308.610000px;}
.x1e_c00037{left:310.404000px;}
.x17_c00037{left:312.528000px;}
.x26_c00037{left:315.357930px;}
.x63_c00037{left:319.956930px;}
.xa_c00037{left:321.030000px;}
.x36_c00037{left:324.214170px;}
.x3d_c00037{left:325.743540px;}
.x71_c00037{left:327.409830px;}
.x5b_c00037{left:329.569530px;}
.x2e_c00037{left:331.949220px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
.fs5_c00037{font-size:53.210639pt;}
.fs7_c00037{font-size:54.144159pt;}
.fsd_c00037{font-size:55.077679pt;}
.fs6_c00037{font-size:56.011199pt;}
.fs8_c00037{font-size:56.944719pt;}
.fs4_c00037{font-size:58.811759pt;}
.fsb_c00037{font-size:60.678799pt;}
.fsa_c00037{font-size:61.612319pt;}
.fs2_c00037{font-size:62.537116pt;}
.fs3_c00037{font-size:62.545839pt;}
.fsc_c00037{font-size:63.479359pt;}
.fs9_c00037{font-size:64.412879pt;}
.fs1_c00037{font-size:69.066667pt;}
.fs0_c00037{font-size:70.933333pt;}
.y0_c00037{bottom:0.000000pt;}
.yd9_c00037{bottom:31.316853pt;}
.yd8_c00037{bottom:31.920160pt;}
.yd7_c00037{bottom:32.777600pt;}
.yd6_c00037{bottom:33.414933pt;}
.yd5_c00037{bottom:34.015093pt;}
.yd4_c00037{bottom:34.850800pt;}
.yd3_c00037{bottom:35.081280pt;}
.yd2_c00037{bottom:35.680560pt;}
.yd1_c00037{bottom:48.247600pt;}
.yd0_c00037{bottom:48.555973pt;}
.ycf_c00037{bottom:49.249600pt;}
.yce_c00037{bottom:50.433760pt;}
.ycd_c00037{bottom:50.733867pt;}
.ycc_c00037{bottom:51.072800pt;}
.ycb_c00037{bottom:51.758960pt;}
.yca_c00037{bottom:63.604213pt;}
.yc9_c00037{bottom:64.277600pt;}
.yc8_c00037{bottom:64.592373pt;}
.yc7_c00037{bottom:65.427493pt;}
.yc6_c00037{bottom:65.858907pt;}
.yc5_c00037{bottom:66.452267pt;}
.yc4_c00037{bottom:67.362507pt;}
.yc3_c00037{bottom:80.764053pt;}
.yc2_c00037{bottom:81.657627pt;}
.yc1_c00037{bottom:82.630747pt;}
.yc0_c00037{bottom:82.886027pt;}
.ybf_c00037{bottom:83.203413pt;}
.ybe_c00037{bottom:95.488160pt;}
.ybd_c00037{bottom:95.689707pt;}
.ybc_c00037{bottom:96.421867pt;}
.ybb_c00037{bottom:96.540160pt;}
.yba_c00037{bottom:97.332427pt;}
.yb9_c00037{bottom:97.793840pt;}
.yb8_c00037{bottom:98.568853pt;}
.yb7_c00037{bottom:110.981120pt;}
.yb6_c00037{bottom:112.302427pt;}
.yb5_c00037{bottom:112.593787pt;}
.yb4_c00037{bottom:113.638320pt;}
.yb3_c00037{bottom:115.159600pt;}
.yb2_c00037{bottom:116.333040pt;}
.yb1_c00037{bottom:126.986240pt;}
.yb0_c00037{bottom:128.021573pt;}
.yaf_c00037{bottom:129.685040pt;}
.yae_c00037{bottom:130.128240pt;}
.yad_c00037{bottom:131.019520pt;}
.yac_c00037{bottom:131.353787pt;}
.yab_c00037{bottom:132.187467pt;}
.yaa_c00037{bottom:132.657120pt;}
.ya9_c00037{bottom:143.404827pt;}
.ya8_c00037{bottom:144.866507pt;}
.ya7_c00037{bottom:145.196000pt;}
.ya6_c00037{bottom:146.157733pt;}
.ya5_c00037{bottom:146.565653pt;}
.ya4_c00037{bottom:147.086933pt;}
.ya3_c00037{bottom:148.019680pt;}
.ya2_c00037{bottom:158.339067pt;}
.ya1_c00037{bottom:158.606160pt;}
.ya0_c00037{bottom:159.804160pt;}
.y9f_c00037{bottom:161.135733pt;}
.y9e_c00037{bottom:161.844480pt;}
.y9d_c00037{bottom:163.470187pt;}
.y9c_c00037{bottom:163.758800pt;}
.y9b_c00037{bottom:164.585840pt;}
.y9a_c00037{bottom:174.430293pt;}
.y99_c00037{bottom:174.865760pt;}
.y98_c00037{bottom:175.169947pt;}
.y97_c00037{bottom:176.024107pt;}
.y96_c00037{bottom:176.504347pt;}
.y95_c00037{bottom:178.118000pt;}
.y94_c00037{bottom:178.597973pt;}
.y93_c00037{bottom:180.068480pt;}
.y92_c00037{bottom:180.910907pt;}
.y91_c00037{bottom:190.861360pt;}
.y90_c00037{bottom:192.868747pt;}
.y8f_c00037{bottom:193.094800pt;}
.y8e_c00037{bottom:193.903413pt;}
.y8d_c00037{bottom:194.348000pt;}
.y8c_c00037{bottom:205.562027pt;}
.y8b_c00037{bottom:205.741840pt;}
.y8a_c00037{bottom:206.720907pt;}
.y89_c00037{bottom:206.903467pt;}
.y88_c00037{bottom:207.866480pt;}
.y87_c00037{bottom:208.478453pt;}
.y86_c00037{bottom:209.230080pt;}
.y85_c00037{bottom:221.353440pt;}
.y84_c00037{bottom:221.796480pt;}
.y83_c00037{bottom:222.906293pt;}
.y82_c00037{bottom:223.696507pt;}
.y81_c00037{bottom:225.426187pt;}
.y80_c00037{bottom:226.515760pt;}
.y7f_c00037{bottom:237.660667pt;}
.y7e_c00037{bottom:240.110747pt;}
.y7d_c00037{bottom:240.833707pt;}
.y7c_c00037{bottom:242.287120pt;}
.y7b_c00037{bottom:242.617573pt;}
.y7a_c00037{bottom:244.521227pt;}
.y79_c00037{bottom:252.727680pt;}
.y78_c00037{bottom:253.240347pt;}
.y77_c00037{bottom:253.644587pt;}
.y76_c00037{bottom:255.151920pt;}
.y75_c00037{bottom:256.684800pt;}
.y74_c00037{bottom:257.483120pt;}
.y73_c00037{bottom:269.787013pt;}
.y72_c00037{bottom:270.537867pt;}
.y71_c00037{bottom:270.804080pt;}
.y70_c00037{bottom:271.036480pt;}
.y6f_c00037{bottom:271.837360pt;}
.y6e_c00037{bottom:272.783440pt;}
.y6d_c00037{bottom:273.325547pt;}
.y6c_c00037{bottom:284.342800pt;}
.y6b_c00037{bottom:285.035733pt;}
.y6a_c00037{bottom:285.730693pt;}
.y69_c00037{bottom:285.925760pt;}
.y68_c00037{bottom:286.633040pt;}
.y67_c00037{bottom:286.993600pt;}
.y66_c00037{bottom:287.968800pt;}
.y65_c00037{bottom:300.079120pt;}
.y64_c00037{bottom:301.363920pt;}
.y63_c00037{bottom:302.177973pt;}
.y62_c00037{bottom:303.357333pt;}
.y61_c00037{bottom:304.906187pt;}
.y60_c00037{bottom:305.514667pt;}
.y5f_c00037{bottom:306.013973pt;}
.y5e_c00037{bottom:306.693253pt;}
.y5d_c00037{bottom:310.994213pt;}
.y5c_c00037{bottom:311.340373pt;}
.y5b_c00037{bottom:313.425573pt;}
.y5a_c00037{bottom:315.054187pt;}
.y59_c00037{bottom:315.331493pt;}
.y58_c00037{bottom:317.498987pt;}
.y57_c00037{bottom:331.578080pt;}
.y56_c00037{bottom:332.267413pt;}
.y55_c00037{bottom:332.356133pt;}
.y54_c00037{bottom:332.830960pt;}
.y53_c00037{bottom:333.006640pt;}
.y52_c00037{bottom:333.770320pt;}
.y51_c00037{bottom:334.054880pt;}
.y50_c00037{bottom:346.713360pt;}
.y4f_c00037{bottom:349.778453pt;}
.y4e_c00037{bottom:351.024453pt;}
.y4d_c00037{bottom:352.732053pt;}
.y4c_c00037{bottom:353.145147pt;}
.y4b_c00037{bottom:354.703733pt;}
.y4a_c00037{bottom:362.167067pt;}
.y49_c00037{bottom:362.356800pt;}
.y48_c00037{bottom:362.989093pt;}
.y47_c00037{bottom:363.184613pt;}
.y46_c00037{bottom:363.790373pt;}
.y45_c00037{bottom:363.983173pt;}
.y44_c00037{bottom:365.138667pt;}
.y43_c00037{bottom:365.433493pt;}
.y42_c00037{bottom:365.829227pt;}
.y41_c00037{bottom:366.221440pt;}
.y40_c00037{bottom:378.883867pt;}
.y3f_c00037{bottom:379.044773pt;}
.y3e_c00037{bottom:380.113920pt;}
.y3d_c00037{bottom:381.104560pt;}
.y3c_c00037{bottom:393.167973pt;}
.y3b_c00037{bottom:393.444213pt;}
.y3a_c00037{bottom:393.649707pt;}
.y39_c00037{bottom:394.335200pt;}
.y38_c00037{bottom:394.546960pt;}
.y37_c00037{bottom:394.697600pt;}
.y36_c00037{bottom:395.505600pt;}
.y35_c00037{bottom:395.737413pt;}
.y34_c00037{bottom:396.006107pt;}
.y33_c00037{bottom:396.707867pt;}
.y32_c00037{bottom:408.883467pt;}
.y31_c00037{bottom:410.308560pt;}
.y30_c00037{bottom:410.672533pt;}
.y2f_c00037{bottom:411.049813pt;}
.y2e_c00037{bottom:411.502267pt;}
.y2d_c00037{bottom:411.607600pt;}
.y2c_c00037{bottom:412.685067pt;}
.y2b_c00037{bottom:413.028880pt;}
.y2a_c00037{bottom:425.212960pt;}
.y29_c00037{bottom:425.579333pt;}
.y28_c00037{bottom:425.884080pt;}
.y27_c00037{bottom:426.829947pt;}
.y26_c00037{bottom:428.719253pt;}
.y25_c00037{bottom:429.114400pt;}
.y24_c00037{bottom:440.053493pt;}
.y23_c00037{bottom:441.535573pt;}
.y22_c00037{bottom:442.134293pt;}
.y21_c00037{bottom:443.270107pt;}
.y20_c00037{bottom:443.511760pt;}
.y1f_c00037{bottom:444.888187pt;}
.y1e_c00037{bottom:446.155307pt;}
.y1d_c00037{bottom:453.472133pt;}
.y1c_c00037{bottom:454.631547pt;}
.y1b_c00037{bottom:455.026907pt;}
.y1a_c00037{bottom:455.422507pt;}
.y19_c00037{bottom:456.527467pt;}
.y18_c00037{bottom:457.433840pt;}
.y17_c00037{bottom:457.991733pt;}
.y16_c00037{bottom:458.294427pt;}
.y15_c00037{bottom:459.603867pt;}
.y14_c00037{bottom:471.592747pt;}
.y13_c00037{bottom:472.768800pt;}
.y12_c00037{bottom:473.841573pt;}
.y11_c00037{bottom:474.614133pt;}
.y10_c00037{bottom:474.950453pt;}
.yf_c00037{bottom:475.188293pt;}
.ye_c00037{bottom:475.967280pt;}
.yd_c00037{bottom:476.404000pt;}
.yc_c00037{bottom:486.959148pt;}
.yb_c00037{bottom:487.389849pt;}
.ya_c00037{bottom:487.536780pt;}
.y9_c00037{bottom:487.821885pt;}
.y8_c00037{bottom:488.134021pt;}
.y7_c00037{bottom:488.720204pt;}
.y6_c00037{bottom:488.912909pt;}
.y5_c00037{bottom:489.435483pt;}
.y4_c00037{bottom:489.601333pt;}
.y3_c00037{bottom:502.677333pt;}
.y2_c00037{bottom:519.005333pt;}
.y1_c00037{bottom:532.320000pt;}
.h7_c00037{height:53.210639pt;}
.h9_c00037{height:54.144159pt;}
.hf_c00037{height:55.077679pt;}
.h8_c00037{height:56.011199pt;}
.ha_c00037{height:56.944719pt;}
.h6_c00037{height:58.811759pt;}
.hd_c00037{height:60.678799pt;}
.hc_c00037{height:61.612319pt;}
.h4_c00037{height:62.537116pt;}
.h5_c00037{height:62.545839pt;}
.he_c00037{height:63.479359pt;}
.hb_c00037{height:64.412879pt;}
.h3_c00037{height:69.066667pt;}
.h2_c00037{height:70.933333pt;}
.h0_c00037{height:568.533333pt;}
.h1_c00037{height:568.666667pt;}
.w1_c00037{width:323.333333pt;}
.w0_c00037{width:323.466667pt;}
.x0_c00037{left:0.000000pt;}
.x27_c00037{left:25.444640pt;}
.x6d_c00037{left:33.900880pt;}
.x1f_c00037{left:35.022667pt;}
.x2_c00037{left:36.000000pt;}
.xf_c00037{left:37.604000pt;}
.x74_c00037{left:42.050507pt;}
.x10_c00037{left:52.681333pt;}
.x67_c00037{left:55.972000pt;}
.x18_c00037{left:57.188000pt;}
.x3_c00037{left:58.560000pt;}
.x39_c00037{left:60.623493pt;}
.x4d_c00037{left:63.653867pt;}
.x5d_c00037{left:65.482373pt;}
.x60_c00037{left:67.641173pt;}
.x7a_c00037{left:68.678400pt;}
.xb_c00037{left:74.640000pt;}
.x52_c00037{left:76.602533pt;}
.x4_c00037{left:78.720000pt;}
.x64_c00037{left:80.773120pt;}
.x75_c00037{left:82.427600pt;}
.x3e_c00037{left:84.516800pt;}
.x2f_c00037{left:85.526080pt;}
.x20_c00037{left:87.422773pt;}
.x58_c00037{left:89.313360pt;}
.x68_c00037{left:93.854480pt;}
.x19_c00037{left:96.137333pt;}
.x3f_c00037{left:97.435040pt;}
.x6f_c00037{left:98.982933pt;}
.x11_c00037{left:100.188000pt;}
.x49_c00037{left:101.307120pt;}
.x76_c00037{left:102.375467pt;}
.x3a_c00037{left:103.754933pt;}
.x30_c00037{left:104.763067pt;}
.x37_c00037{left:106.892907pt;}
.x1a_c00037{left:108.029333pt;}
.x69_c00037{left:109.033867pt;}
.x72_c00037{left:109.972747pt;}
.x55_c00037{left:112.079547pt;}
.x4e_c00037{left:113.425520pt;}
.x12_c00037{left:117.706667pt;}
.x46_c00037{left:119.057307pt;}
.x77_c00037{left:120.048533pt;}
.x21_c00037{left:121.848667pt;}
.x41_c00037{left:123.521787pt;}
.x1b_c00037{left:124.845333pt;}
.x5_c00037{left:126.000000pt;}
.x65_c00037{left:127.233120pt;}
.x47_c00037{left:129.721360pt;}
.x2b_c00037{left:131.379547pt;}
.xc_c00037{left:135.840000pt;}
.x42_c00037{left:138.108107pt;}
.x61_c00037{left:144.216187pt;}
.x6_c00037{left:145.920000pt;}
.x6a_c00037{left:149.529573pt;}
.x40_c00037{left:150.802240pt;}
.x4f_c00037{left:155.603707pt;}
.x22_c00037{left:158.097040pt;}
.x1_c00037{left:159.360000pt;}
.xd_c00037{left:160.800000pt;}
.x56_c00037{left:162.207867pt;}
.x1c_c00037{left:163.473333pt;}
.x7_c00037{left:166.560000pt;}
.x50_c00037{left:167.823947pt;}
.x6b_c00037{left:169.688773pt;}
.x13_c00037{left:170.996000pt;}
.x62_c00037{left:172.584027pt;}
.x4b_c00037{left:174.794480pt;}
.x3b_c00037{left:176.002053pt;}
.x43_c00037{left:177.722453pt;}
.x31_c00037{left:178.962613pt;}
.x51_c00037{left:181.801547pt;}
.x2c_c00037{left:183.270373pt;}
.x44_c00037{left:185.159653pt;}
.x57_c00037{left:187.151387pt;}
.x3c_c00037{left:188.043013pt;}
.x32_c00037{left:189.695893pt;}
.x66_c00037{left:191.794453pt;}
.x28_c00037{left:193.015253pt;}
.x38_c00037{left:194.739440pt;}
.x5e_c00037{left:197.470560pt;}
.x14_c00037{left:199.372000pt;}
.x23_c00037{left:202.273947pt;}
.xe_c00037{left:203.520000pt;}
.x33_c00037{left:204.819040pt;}
.x2d_c00037{left:206.004187pt;}
.x6e_c00037{left:211.993333pt;}
.x70_c00037{left:213.266533pt;}
.x59_c00037{left:215.308027pt;}
.x1d_c00037{left:217.112000pt;}
.x24_c00037{left:218.119040pt;}
.x73_c00037{left:219.373973pt;}
.x8_c00037{left:220.800000pt;}
.x15_c00037{left:225.290667pt;}
.x78_c00037{left:230.544507pt;}
.x4a_c00037{left:232.535440pt;}
.x25_c00037{left:233.952133pt;}
.x53_c00037{left:236.549707pt;}
.x16_c00037{left:238.648000pt;}
.x45_c00037{left:242.568827pt;}
.x29_c00037{left:243.785920pt;}
.x6c_c00037{left:245.325760pt;}
.x5f_c00037{left:246.916987pt;}
.x79_c00037{left:248.697600pt;}
.x34_c00037{left:253.766240pt;}
.x54_c00037{left:257.828800pt;}
.x4c_c00037{left:261.529413pt;}
.x2a_c00037{left:265.305867pt;}
.x5c_c00037{left:267.475067pt;}
.x35_c00037{left:268.442667pt;}
.x5a_c00037{left:270.798693pt;}
.x48_c00037{left:272.528213pt;}
.x9_c00037{left:274.320000pt;}
.x1e_c00037{left:275.914667pt;}
.x17_c00037{left:277.802667pt;}
.x26_c00037{left:280.318160pt;}
.x63_c00037{left:284.406160pt;}
.xa_c00037{left:285.360000pt;}
.x36_c00037{left:288.190373pt;}
.x3d_c00037{left:289.549813pt;}
.x71_c00037{left:291.030960pt;}
.x5b_c00037{left:292.950693pt;}
.x2e_c00037{left:295.065973pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00038 {
    display:none;
  }
  .loading-indicator_c00038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00038 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00038 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00038" -> "#page-container .classname_c00038")
 */
.pf_c00038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00038 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00038 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00038 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00038 {overflow:visible;}
  }
}
.c_c00038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00038 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00038:after { /* webkit #35443 */
  content: '';
}
.t_c00038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00038 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00038 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00038 { /* info for Javascript */
  display:none;
}
.l_c00038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00038:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00038 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00038.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00038;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.041060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041060,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.064520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064520,0.000000,0.000000,0.250000,0,0);}
.m20_c00038{transform:matrix(0.085960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085960,0.000000,0.000000,0.250000,0,0);}
.m39_c00038{transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00038{transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);}
.mb4_c00038{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m35_c00038{transform:matrix(0.144660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144660,0.000000,0.000000,0.250000,0,0);}
.mbb_c00038{transform:matrix(0.144920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144920,0.000000,0.000000,0.250000,0,0);}
.mc6_c00038{transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);}
.mea_c00038{transform:matrix(0.147070,0.005300,-0.009003,0.249838,0,0);-ms-transform:matrix(0.147070,0.005300,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.147070,0.005300,-0.009003,0.249838,0,0);}
.m5_c00038{transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);}
.m55_c00038{transform:matrix(0.148970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148970,0.000000,0.000000,0.250000,0,0);}
.m3b_c00038{transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);}
.m7a_c00038{transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);}
.m38_c00038{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00038{transform:matrix(0.155735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155735,0.000000,0.000000,0.250000,0,0);}
.m36_c00038{transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);}
.me4_c00038{transform:matrix(0.159262,0.005739,-0.009003,0.249838,0,0);-ms-transform:matrix(0.159262,0.005739,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.159262,0.005739,-0.009003,0.249838,0,0);}
.m5d_c00038{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m80_c00038{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m97_c00038{transform:matrix(0.163490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163490,0.000000,0.000000,0.250000,0,0);}
.m94_c00038{transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);}
.m45_c00038{transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);}
.mf1_c00038{transform:matrix(0.164628,0.005933,-0.009003,0.249838,0,0);-ms-transform:matrix(0.164628,0.005933,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.164628,0.005933,-0.009003,0.249838,0,0);}
.m2e_c00038{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.m83_c00038{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.m69_c00038{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m95_c00038{transform:matrix(0.167035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167035,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.167320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167320,0.000000,0.000000,0.250000,0,0);}
.md9_c00038{transform:matrix(0.167331,0.006030,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167331,0.006030,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167331,0.006030,-0.009003,0.249838,0,0);}
.m99_c00038{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m8b_c00038{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00038{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m63_c00038{transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);}
.m88_c00038{transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);}
.mac_c00038{transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);}
.m59_c00038{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m3e_c00038{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m29_c00038{transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);}
.m92_c00038{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m7e_c00038{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.m56_c00038{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00038{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.m5b_c00038{transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);}
.m53_c00038{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.mef_c00038{transform:matrix(0.175501,0.006324,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175501,0.006324,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175501,0.006324,-0.009003,0.249838,0,0);}
.mbf_c00038{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.m8e_c00038{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m81_c00038{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);}
.m61_c00038{transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);}
.m4e_c00038{transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);}
.m90_c00038{transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);}
.mdb_c00038{transform:matrix(0.177230,0.006387,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177230,0.006387,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177230,0.006387,-0.009003,0.249838,0,0);}
.meb_c00038{transform:matrix(0.177570,0.006399,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177570,0.006399,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177570,0.006399,-0.009003,0.249838,0,0);}
.mab_c00038{transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);}
.m68_c00038{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.mf0_c00038{transform:matrix(0.180018,0.006487,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180018,0.006487,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180018,0.006487,-0.009003,0.249838,0,0);}
.md6_c00038{transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);}
.m86_c00038{transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);}
.me9_c00038{transform:matrix(0.180133,0.006491,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180133,0.006491,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180133,0.006491,-0.009003,0.249838,0,0);}
.m12_c00038{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m89_c00038{transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);}
.m79_c00038{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.mc8_c00038{transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);}
.mbe_c00038{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);}
.m4d_c00038{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.m9a_c00038{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.mc9_c00038{transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.mb8_c00038{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.mda_c00038{transform:matrix(0.184125,0.006635,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184125,0.006635,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184125,0.006635,-0.009003,0.249838,0,0);}
.m8a_c00038{transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m43_c00038{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.mde_c00038{transform:matrix(0.185430,0.006682,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185430,0.006682,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185430,0.006682,-0.009003,0.249838,0,0);}
.m24_c00038{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.me6_c00038{transform:matrix(0.186449,0.006719,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186449,0.006719,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186449,0.006719,-0.009003,0.249838,0,0);}
.m98_c00038{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.md2_c00038{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.mcc_c00038{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m87_c00038{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m30_c00038{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.m2f_c00038{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.m5a_c00038{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m77_c00038{transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00038{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m52_c00038{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m4b_c00038{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.m5e_c00038{transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);}
.m37_c00038{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.med_c00038{transform:matrix(0.190087,0.006850,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190087,0.006850,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190087,0.006850,-0.009003,0.249838,0,0);}
.ma_c00038{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00038{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m7b_c00038{transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);}
.me0_c00038{transform:matrix(0.191541,0.006902,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191541,0.006902,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191541,0.006902,-0.009003,0.249838,0,0);}
.m1b_c00038{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m9b_c00038{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.mb5_c00038{transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);}
.m4c_c00038{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.maf_c00038{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00038{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m76_c00038{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m4a_c00038{transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);}
.m82_c00038{transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);}
.m7c_c00038{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.me8_c00038{transform:matrix(0.193704,0.006980,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193704,0.006980,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193704,0.006980,-0.009003,0.249838,0,0);}
.mca_c00038{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m18_c00038{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00038{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.m66_c00038{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.mae_c00038{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m16_c00038{transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);}
.m2b_c00038{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.mb2_c00038{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.m7d_c00038{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.m96_c00038{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m40_c00038{transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);}
.m6a_c00038{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.mb6_c00038{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.m26_c00038{transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);}
.mba_c00038{transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.md0_c00038{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m58_c00038{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m33_c00038{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m7f_c00038{transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);}
.m60_c00038{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.ma7_c00038{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.mad_c00038{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m84_c00038{transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);}
.m34_c00038{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.m47_c00038{transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);}
.m8f_c00038{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m64_c00038{transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00038{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.md7_c00038{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m85_c00038{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.me2_c00038{transform:matrix(0.204063,0.007354,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204063,0.007354,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204063,0.007354,-0.009003,0.249838,0,0);}
.mbc_c00038{transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);}
.mc1_c00038{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.mc3_c00038{transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);}
.mec_c00038{transform:matrix(0.204677,0.007376,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204677,0.007376,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204677,0.007376,-0.009003,0.249838,0,0);}
.mb_c00038{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.mbd_c00038{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m75_c00038{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m6b_c00038{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m51_c00038{transform:matrix(0.205690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205690,0.000000,0.000000,0.250000,0,0);}
.mce_c00038{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);}
.me1_c00038{transform:matrix(0.206896,0.007456,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206896,0.007456,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206896,0.007456,-0.009003,0.249838,0,0);}
.m4f_c00038{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m65_c00038{transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);}
.m91_c00038{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.mee_c00038{transform:matrix(0.209979,0.007567,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209979,0.007567,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209979,0.007567,-0.009003,0.249838,0,0);}
.m15_c00038{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00038{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);}
.m14_c00038{transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);}
.ma8_c00038{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.mb3_c00038{transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);}
.m6e_c00038{transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);}
.md4_c00038{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mb1_c00038{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.mdf_c00038{transform:matrix(0.213267,0.007685,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213267,0.007685,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213267,0.007685,-0.009003,0.249838,0,0);}
.m2d_c00038{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m57_c00038{transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);}
.m73_c00038{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.md_c00038{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.m78_c00038{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m67_c00038{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.mc4_c00038{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m42_c00038{transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);}
.m41_c00038{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.maa_c00038{transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);}
.me7_c00038{transform:matrix(0.216734,0.007810,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216734,0.007810,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216734,0.007810,-0.009003,0.249838,0,0);}
.m71_c00038{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m6d_c00038{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.mb0_c00038{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.me5_c00038{transform:matrix(0.219697,0.007917,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219697,0.007917,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219697,0.007917,-0.009003,0.249838,0,0);}
.md1_c00038{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.me3_c00038{transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);}
.mcf_c00038{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.mdd_c00038{transform:matrix(0.220962,0.007963,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220962,0.007963,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220962,0.007963,-0.009003,0.249838,0,0);}
.ma9_c00038{transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);}
.md5_c00038{transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);}
.mdc_c00038{transform:matrix(0.224010,0.008072,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224010,0.008072,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224010,0.008072,-0.009003,0.249838,0,0);}
.m32_c00038{transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);}
.m1f_c00038{transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);}
.ma6_c00038{transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);}
.m72_c00038{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m49_c00038{transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);}
.m48_c00038{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00038{transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);}
.md3_c00038{transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);}
.m62_c00038{transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00038{transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);}
.m70_c00038{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m19_c00038{transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);}
.m1c_c00038{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m8d_c00038{transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);}
.mc5_c00038{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);}
.ma5_c00038{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.ma0_c00038{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.m93_c00038{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m74_c00038{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m21_c00038{transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);}
.m3f_c00038{transform:matrix(0.257435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257435,0.000000,0.000000,0.250000,0,0);}
.m54_c00038{transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);}
.mc7_c00038{transform:matrix(0.263830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263830,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00038{transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);}
.md8_c00038{transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);}
.m9c_c00038{transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);}
.m6c_c00038{transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);}
.mb9_c00038{transform:matrix(0.286660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286660,0.000000,0.000000,0.250000,0,0);}
.ma1_c00038{transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);}
.m23_c00038{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00038{transform:matrix(0.293445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293445,0.000000,0.000000,0.250000,0,0);}
.m9e_c00038{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m9d_c00038{transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);}
.ma4_c00038{transform:matrix(0.324260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324260,0.000000,0.000000,0.250000,0,0);}
.ma2_c00038{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.ma3_c00038{transform:matrix(0.327570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327570,0.000000,0.000000,0.250000,0,0);}
.m9f_c00038{transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);}
.m31_c00038{transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.616775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616775,0.000000,0.000000,0.250000,0,0);}
.v1_c00038{vertical-align:-3.426000px;}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
._0_c00038{width:19.196301px;}
.fc0_c00038{color:transparent;}
.fs9_c00038{font-size:42.000000px;}
.fs7_c00038{font-size:60.900000px;}
.fsb_c00038{font-size:61.928221px;}
.fs3_c00038{font-size:61.950000px;}
.fsc_c00038{font-size:62.977852px;}
.fsa_c00038{font-size:63.000000px;}
.fs2_c00038{font-size:64.050000px;}
.fs0_c00038{font-size:65.100000px;}
.fsd_c00038{font-size:66.126744px;}
.fs5_c00038{font-size:66.150000px;}
.fs8_c00038{font-size:67.200000px;}
.fs4_c00038{font-size:68.250000px;}
.fs1_c00038{font-size:70.350000px;}
.fs6_c00038{font-size:71.400000px;}
.y0_c00038{bottom:0.000000px;}
.yd5_c00038{bottom:34.292957px;}
.yd4_c00038{bottom:36.105089px;}
.yd3_c00038{bottom:37.402425px;}
.yd2_c00038{bottom:38.153606px;}
.yd1_c00038{bottom:39.766410px;}
.yd0_c00038{bottom:43.048692px;}
.ycf_c00038{bottom:44.029643px;}
.yce_c00038{bottom:44.931078px;}
.ycd_c00038{bottom:46.084194px;}
.ycc_c00038{bottom:48.631887px;}
.ycb_c00038{bottom:53.145963px;}
.yca_c00038{bottom:53.682817px;}
.yc9_c00038{bottom:54.950063px;}
.yc8_c00038{bottom:55.591650px;}
.yc7_c00038{bottom:55.920051px;}
.yc6_c00038{bottom:57.753486px;}
.yc5_c00038{bottom:58.612262px;}
.yc4_c00038{bottom:59.415390px;}
.yc3_c00038{bottom:71.054064px;}
.yc2_c00038{bottom:72.047664px;}
.yc1_c00038{bottom:75.304890px;}
.yc0_c00038{bottom:76.845510px;}
.ybf_c00038{bottom:78.846966px;}
.ybe_c00038{bottom:79.462080px;}
.ybd_c00038{bottom:79.933500px;}
.ybc_c00038{bottom:89.481000px;}
.ybb_c00038{bottom:93.442500px;}
.yba_c00038{bottom:94.314000px;}
.yb9_c00038{bottom:96.531000px;}
.yb8_c00038{bottom:98.695500px;}
.yb7_c00038{bottom:99.646500px;}
.yb6_c00038{bottom:108.607500px;}
.yb5_c00038{bottom:110.916000px;}
.yb4_c00038{bottom:113.242500px;}
.yb3_c00038{bottom:115.183500px;}
.yb2_c00038{bottom:116.022000px;}
.yb1_c00038{bottom:116.922000px;}
.yb0_c00038{bottom:122.326500px;}
.yaf_c00038{bottom:122.914500px;}
.yae_c00038{bottom:124.917000px;}
.yad_c00038{bottom:125.937000px;}
.yac_c00038{bottom:127.536000px;}
.yab_c00038{bottom:128.898000px;}
.yaa_c00038{bottom:129.618000px;}
.ya9_c00038{bottom:140.503500px;}
.ya8_c00038{bottom:140.826000px;}
.ya7_c00038{bottom:142.921500px;}
.ya6_c00038{bottom:145.294500px;}
.ya5_c00038{bottom:147.163500px;}
.ya4_c00038{bottom:156.183000px;}
.ya3_c00038{bottom:157.245000px;}
.ya2_c00038{bottom:158.508000px;}
.ya1_c00038{bottom:158.863500px;}
.ya0_c00038{bottom:160.284000px;}
.y9f_c00038{bottom:160.695000px;}
.y9e_c00038{bottom:161.490000px;}
.y9d_c00038{bottom:163.365000px;}
.y9c_c00038{bottom:173.817000px;}
.y9b_c00038{bottom:174.673500px;}
.y9a_c00038{bottom:176.530500px;}
.y99_c00038{bottom:178.657500px;}
.y98_c00038{bottom:178.945500px;}
.y97_c00038{bottom:179.949000px;}
.y96_c00038{bottom:181.183500px;}
.y95_c00038{bottom:192.513000px;}
.y94_c00038{bottom:193.753500px;}
.y93_c00038{bottom:196.699500px;}
.y92_c00038{bottom:199.626000px;}
.y91_c00038{bottom:201.588000px;}
.y90_c00038{bottom:203.331000px;}
.y8f_c00038{bottom:209.572500px;}
.y8e_c00038{bottom:210.201000px;}
.y8d_c00038{bottom:212.284500px;}
.y8c_c00038{bottom:213.277500px;}
.y8b_c00038{bottom:215.077500px;}
.y8a_c00038{bottom:216.606000px;}
.y89_c00038{bottom:218.985000px;}
.y88_c00038{bottom:231.135000px;}
.y87_c00038{bottom:232.006500px;}
.y86_c00038{bottom:233.226000px;}
.y85_c00038{bottom:233.932500px;}
.y84_c00038{bottom:234.384000px;}
.y83_c00038{bottom:234.664500px;}
.y82_c00038{bottom:236.005500px;}
.y81_c00038{bottom:236.704500px;}
.y80_c00038{bottom:237.882000px;}
.y7f_c00038{bottom:246.529500px;}
.y7e_c00038{bottom:247.977000px;}
.y7d_c00038{bottom:248.631000px;}
.y7c_c00038{bottom:249.433500px;}
.y7b_c00038{bottom:250.503000px;}
.y7a_c00038{bottom:251.329500px;}
.y79_c00038{bottom:252.463500px;}
.y78_c00038{bottom:253.288500px;}
.y77_c00038{bottom:253.614000px;}
.y76_c00038{bottom:254.352000px;}
.y75_c00038{bottom:264.819000px;}
.y74_c00038{bottom:265.959000px;}
.y73_c00038{bottom:268.219500px;}
.y72_c00038{bottom:269.335500px;}
.y71_c00038{bottom:270.115500px;}
.y70_c00038{bottom:271.632000px;}
.y6f_c00038{bottom:281.067000px;}
.y6e_c00038{bottom:281.640000px;}
.y6d_c00038{bottom:283.671000px;}
.y6c_c00038{bottom:284.604000px;}
.y6b_c00038{bottom:285.190500px;}
.y6a_c00038{bottom:286.455000px;}
.y69_c00038{bottom:288.642000px;}
.y68_c00038{bottom:299.680500px;}
.y67_c00038{bottom:300.918000px;}
.y66_c00038{bottom:301.350000px;}
.y65_c00038{bottom:302.241000px;}
.y64_c00038{bottom:302.659500px;}
.y63_c00038{bottom:303.142500px;}
.y62_c00038{bottom:304.563000px;}
.y61_c00038{bottom:305.535000px;}
.y60_c00038{bottom:306.220500px;}
.y5f_c00038{bottom:306.730500px;}
.y5e_c00038{bottom:317.187000px;}
.y5d_c00038{bottom:317.490000px;}
.y5c_c00038{bottom:319.041000px;}
.y5b_c00038{bottom:319.336500px;}
.y5a_c00038{bottom:321.676500px;}
.y59_c00038{bottom:323.739000px;}
.y58_c00038{bottom:334.369500px;}
.y57_c00038{bottom:335.220000px;}
.y56_c00038{bottom:335.733000px;}
.y55_c00038{bottom:336.922500px;}
.y54_c00038{bottom:337.389000px;}
.y53_c00038{bottom:338.314500px;}
.y52_c00038{bottom:339.033000px;}
.y51_c00038{bottom:339.664500px;}
.y50_c00038{bottom:351.216000px;}
.y4f_c00038{bottom:351.717000px;}
.y4e_c00038{bottom:352.482000px;}
.y4d_c00038{bottom:353.614500px;}
.y4c_c00038{bottom:355.095000px;}
.y4b_c00038{bottom:355.576500px;}
.y4a_c00038{bottom:356.215500px;}
.y49_c00038{bottom:356.482500px;}
.y48_c00038{bottom:357.217500px;}
.y47_c00038{bottom:368.394000px;}
.y46_c00038{bottom:370.051500px;}
.y45_c00038{bottom:371.242500px;}
.y44_c00038{bottom:371.814000px;}
.y43_c00038{bottom:373.341000px;}
.y42_c00038{bottom:374.497500px;}
.y41_c00038{bottom:385.875000px;}
.y40_c00038{bottom:386.358000px;}
.y3f_c00038{bottom:387.772500px;}
.y3e_c00038{bottom:388.470000px;}
.y3d_c00038{bottom:389.169000px;}
.y3c_c00038{bottom:391.779000px;}
.y3b_c00038{bottom:402.786000px;}
.y3a_c00038{bottom:403.401000px;}
.y39_c00038{bottom:404.178000px;}
.y38_c00038{bottom:405.133500px;}
.y37_c00038{bottom:406.357500px;}
.y36_c00038{bottom:407.745000px;}
.y35_c00038{bottom:409.599000px;}
.y34_c00038{bottom:420.090000px;}
.y33_c00038{bottom:420.477000px;}
.y32_c00038{bottom:421.416000px;}
.y31_c00038{bottom:422.076000px;}
.y30_c00038{bottom:423.000000px;}
.y2f_c00038{bottom:423.583500px;}
.y2e_c00038{bottom:424.755000px;}
.y2d_c00038{bottom:425.080500px;}
.y2c_c00038{bottom:425.254500px;}
.y2b_c00038{bottom:438.132000px;}
.y2a_c00038{bottom:438.372000px;}
.y29_c00038{bottom:438.526500px;}
.y28_c00038{bottom:439.441500px;}
.y27_c00038{bottom:440.109000px;}
.y26_c00038{bottom:440.394000px;}
.y25_c00038{bottom:440.536500px;}
.y24_c00038{bottom:440.911500px;}
.y23_c00038{bottom:455.283000px;}
.y22_c00038{bottom:456.022500px;}
.y21_c00038{bottom:456.517500px;}
.y20_c00038{bottom:457.114500px;}
.y1f_c00038{bottom:457.321500px;}
.y1e_c00038{bottom:457.560000px;}
.y1d_c00038{bottom:458.259000px;}
.y1c_c00038{bottom:458.463000px;}
.y1b_c00038{bottom:473.104500px;}
.y1a_c00038{bottom:473.292000px;}
.y19_c00038{bottom:474.165000px;}
.y18_c00038{bottom:475.455000px;}
.y17_c00038{bottom:475.858500px;}
.y16_c00038{bottom:476.349000px;}
.y15_c00038{bottom:477.094500px;}
.y14_c00038{bottom:491.295000px;}
.y13_c00038{bottom:492.115500px;}
.y12_c00038{bottom:492.396000px;}
.y11_c00038{bottom:492.888000px;}
.y10_c00038{bottom:493.828500px;}
.yf_c00038{bottom:494.176500px;}
.ye_c00038{bottom:495.453000px;}
.yd_c00038{bottom:508.569000px;}
.yc_c00038{bottom:508.845000px;}
.yb_c00038{bottom:509.143500px;}
.ya_c00038{bottom:509.856000px;}
.y9_c00038{bottom:510.859500px;}
.y8_c00038{bottom:511.723500px;}
.y7_c00038{bottom:512.181000px;}
.y6_c00038{bottom:513.001500px;}
.y5_c00038{bottom:526.782000px;}
.y4_c00038{bottom:544.179000px;}
.y3_c00038{bottom:560.907000px;}
.y2_c00038{bottom:579.009000px;}
.y1_c00038{bottom:596.139000px;}
.hb_c00038{height:42.000000px;}
.h9_c00038{height:60.900000px;}
.hd_c00038{height:61.928221px;}
.h5_c00038{height:61.950000px;}
.he_c00038{height:62.977852px;}
.hc_c00038{height:63.000000px;}
.h4_c00038{height:64.050000px;}
.h2_c00038{height:65.100000px;}
.hf_c00038{height:66.126744px;}
.h7_c00038{height:66.150000px;}
.ha_c00038{height:67.200000px;}
.h6_c00038{height:68.250000px;}
.h3_c00038{height:70.350000px;}
.h8_c00038{height:71.400000px;}
.h0_c00038{height:639.600000px;}
.h1_c00038{height:639.750000px;}
.w1_c00038{width:363.750000px;}
.w0_c00038{width:363.900000px;}
.x0_c00038{left:0.000000px;}
.x78_c00038{left:27.489000px;}
.x72_c00038{left:28.777500px;}
.x55_c00038{left:29.892000px;}
.x49_c00038{left:31.321500px;}
.x41_c00038{left:32.625000px;}
.x32_c00038{left:33.858000px;}
.x24_c00038{left:35.154000px;}
.x4_c00038{left:36.720000px;}
.x2d_c00038{left:39.570000px;}
.x38_c00038{left:43.227000px;}
.x7a_c00038{left:48.883905px;}
.x11_c00038{left:50.760000px;}
.x79_c00038{left:52.512000px;}
.x75_c00038{left:53.793000px;}
.x5b_c00038{left:54.867000px;}
.x2e_c00038{left:56.538000px;}
.xb_c00038{left:61.020000px;}
.x4a_c00038{left:66.289500px;}
.x33_c00038{left:67.897500px;}
.x69_c00038{left:73.648500px;}
.x28_c00038{left:78.666000px;}
.x61_c00038{left:79.782000px;}
.x34_c00038{left:80.916000px;}
.x44_c00038{left:82.128000px;}
.x1f_c00038{left:87.058500px;}
.x5_c00038{left:88.830000px;}
.x5c_c00038{left:91.983000px;}
.x7e_c00038{left:96.854103px;}
.x19_c00038{left:100.440000px;}
.x67_c00038{left:102.763500px;}
.x6d_c00038{left:103.974000px;}
.x1_c00038{left:105.030000px;}
.x4e_c00038{left:106.405500px;}
.x29_c00038{left:107.547000px;}
.x1a_c00038{left:109.890000px;}
.x6_c00038{left:111.240000px;}
.x12_c00038{left:112.590000px;}
.x20_c00038{left:115.671000px;}
.x51_c00038{left:116.985000px;}
.x58_c00038{left:119.581500px;}
.x7b_c00038{left:121.493723px;}
.x6a_c00038{left:122.698500px;}
.x39_c00038{left:126.442500px;}
.x5d_c00038{left:128.581500px;}
.xc_c00038{left:131.760000px;}
.x2f_c00038{left:134.650500px;}
.x6e_c00038{left:135.766500px;}
.x42_c00038{left:141.348000px;}
.x77_c00038{left:142.798500px;}
.x45_c00038{left:148.531500px;}
.x30_c00038{left:151.869000px;}
.x5e_c00038{left:155.253000px;}
.x13_c00038{left:158.490000px;}
.x76_c00038{left:159.537000px;}
.x59_c00038{left:162.510000px;}
.x62_c00038{left:164.751000px;}
.xd_c00038{left:165.780000px;}
.x35_c00038{left:167.539500px;}
.x7_c00038{left:169.830000px;}
.x46_c00038{left:173.371500px;}
.x53_c00038{left:174.757500px;}
.x63_c00038{left:176.458500px;}
.x1b_c00038{left:180.090000px;}
.x2_c00038{left:181.170000px;}
.x4f_c00038{left:183.741000px;}
.x25_c00038{left:186.108000px;}
.x14_c00038{left:190.620000px;}
.x73_c00038{left:191.922000px;}
.x54_c00038{left:194.070000px;}
.x64_c00038{left:195.244500px;}
.x43_c00038{left:199.531500px;}
.x31_c00038{left:201.577500px;}
.x4b_c00038{left:202.849500px;}
.x8_c00038{left:205.200000px;}
.x2a_c00038{left:207.208500px;}
.x6f_c00038{left:209.046000px;}
.x3a_c00038{left:210.178500px;}
.x7f_c00038{left:213.496776px;}
.x26_c00038{left:215.008500px;}
.x6c_c00038{left:216.210000px;}
.x3e_c00038{left:218.967000px;}
.x70_c00038{left:223.239000px;}
.x47_c00038{left:225.184500px;}
.x52_c00038{left:226.779000px;}
.xe_c00038{left:227.880000px;}
.x21_c00038{left:232.359000px;}
.x68_c00038{left:233.722500px;}
.x5f_c00038{left:236.697000px;}
.x81_c00038{left:240.823800px;}
.x1c_c00038{left:243.810000px;}
.x15_c00038{left:245.160000px;}
.x3b_c00038{left:246.838500px;}
.x5a_c00038{left:249.475500px;}
.x36_c00038{left:250.749000px;}
.x1d_c00038{left:253.260000px;}
.x7c_c00038{left:254.633949px;}
.x4c_c00038{left:256.803000px;}
.x2b_c00038{left:258.526500px;}
.x16_c00038{left:262.980000px;}
.x37_c00038{left:264.784500px;}
.x80_c00038{left:266.233797px;}
.xf_c00038{left:267.570000px;}
.x2c_c00038{left:269.593500px;}
.x1e_c00038{left:272.430000px;}
.x71_c00038{left:273.738000px;}
.x65_c00038{left:275.479500px;}
.x9_c00038{left:277.830000px;}
.x27_c00038{left:279.784500px;}
.x7d_c00038{left:282.206349px;}
.x60_c00038{left:283.413000px;}
.x74_c00038{left:284.935500px;}
.x10_c00038{left:287.280000px;}
.x56_c00038{left:289.245000px;}
.x3f_c00038{left:291.157500px;}
.x4d_c00038{left:293.232000px;}
.x22_c00038{left:295.540500px;}
.x48_c00038{left:297.261000px;}
.x3c_c00038{left:299.019000px;}
.x6b_c00038{left:300.526500px;}
.xa_c00038{left:304.830000px;}
.x57_c00038{left:310.471500px;}
.x66_c00038{left:311.767500px;}
.x23_c00038{left:312.807000px;}
.x17_c00038{left:315.360000px;}
.x40_c00038{left:316.792500px;}
.x3d_c00038{left:320.529000px;}
.x50_c00038{left:325.675500px;}
.x18_c00038{left:329.130000px;}
.x3_c00038{left:330.480000px;}
@media print{
.v1_c00038{vertical-align:-3.045333pt;}
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
._0_c00038{width:17.063379pt;}
.fs9_c00038{font-size:37.333333pt;}
.fs7_c00038{font-size:54.133333pt;}
.fsb_c00038{font-size:55.047307pt;}
.fs3_c00038{font-size:55.066667pt;}
.fsc_c00038{font-size:55.980313pt;}
.fsa_c00038{font-size:56.000000pt;}
.fs2_c00038{font-size:56.933333pt;}
.fs0_c00038{font-size:57.866667pt;}
.fsd_c00038{font-size:58.779328pt;}
.fs5_c00038{font-size:58.800000pt;}
.fs8_c00038{font-size:59.733333pt;}
.fs4_c00038{font-size:60.666667pt;}
.fs1_c00038{font-size:62.533333pt;}
.fs6_c00038{font-size:63.466667pt;}
.y0_c00038{bottom:0.000000pt;}
.yd5_c00038{bottom:30.482628pt;}
.yd4_c00038{bottom:32.093412pt;}
.yd3_c00038{bottom:33.246600pt;}
.yd2_c00038{bottom:33.914316pt;}
.yd1_c00038{bottom:35.347920pt;}
.yd0_c00038{bottom:38.265504pt;}
.ycf_c00038{bottom:39.137460pt;}
.yce_c00038{bottom:39.938736pt;}
.ycd_c00038{bottom:40.963728pt;}
.ycc_c00038{bottom:43.228344pt;}
.ycb_c00038{bottom:47.240856pt;}
.yca_c00038{bottom:47.718060pt;}
.yc9_c00038{bottom:48.844500pt;}
.yc8_c00038{bottom:49.414800pt;}
.yc7_c00038{bottom:49.706712pt;}
.yc6_c00038{bottom:51.336432pt;}
.yc5_c00038{bottom:52.099788pt;}
.yc4_c00038{bottom:52.813680pt;}
.yc3_c00038{bottom:63.159168pt;}
.yc2_c00038{bottom:64.042368pt;}
.yc1_c00038{bottom:66.937680pt;}
.yc0_c00038{bottom:68.307120pt;}
.ybf_c00038{bottom:70.086192pt;}
.ybe_c00038{bottom:70.632960pt;}
.ybd_c00038{bottom:71.052000pt;}
.ybc_c00038{bottom:79.538667pt;}
.ybb_c00038{bottom:83.060000pt;}
.yba_c00038{bottom:83.834667pt;}
.yb9_c00038{bottom:85.805333pt;}
.yb8_c00038{bottom:87.729333pt;}
.yb7_c00038{bottom:88.574667pt;}
.yb6_c00038{bottom:96.540000pt;}
.yb5_c00038{bottom:98.592000pt;}
.yb4_c00038{bottom:100.660000pt;}
.yb3_c00038{bottom:102.385333pt;}
.yb2_c00038{bottom:103.130667pt;}
.yb1_c00038{bottom:103.930667pt;}
.yb0_c00038{bottom:108.734667pt;}
.yaf_c00038{bottom:109.257333pt;}
.yae_c00038{bottom:111.037333pt;}
.yad_c00038{bottom:111.944000pt;}
.yac_c00038{bottom:113.365333pt;}
.yab_c00038{bottom:114.576000pt;}
.yaa_c00038{bottom:115.216000pt;}
.ya9_c00038{bottom:124.892000pt;}
.ya8_c00038{bottom:125.178667pt;}
.ya7_c00038{bottom:127.041333pt;}
.ya6_c00038{bottom:129.150667pt;}
.ya5_c00038{bottom:130.812000pt;}
.ya4_c00038{bottom:138.829333pt;}
.ya3_c00038{bottom:139.773333pt;}
.ya2_c00038{bottom:140.896000pt;}
.ya1_c00038{bottom:141.212000pt;}
.ya0_c00038{bottom:142.474667pt;}
.y9f_c00038{bottom:142.840000pt;}
.y9e_c00038{bottom:143.546667pt;}
.y9d_c00038{bottom:145.213333pt;}
.y9c_c00038{bottom:154.504000pt;}
.y9b_c00038{bottom:155.265333pt;}
.y9a_c00038{bottom:156.916000pt;}
.y99_c00038{bottom:158.806667pt;}
.y98_c00038{bottom:159.062667pt;}
.y97_c00038{bottom:159.954667pt;}
.y96_c00038{bottom:161.052000pt;}
.y95_c00038{bottom:171.122667pt;}
.y94_c00038{bottom:172.225333pt;}
.y93_c00038{bottom:174.844000pt;}
.y92_c00038{bottom:177.445333pt;}
.y91_c00038{bottom:179.189333pt;}
.y90_c00038{bottom:180.738667pt;}
.y8f_c00038{bottom:186.286667pt;}
.y8e_c00038{bottom:186.845333pt;}
.y8d_c00038{bottom:188.697333pt;}
.y8c_c00038{bottom:189.580000pt;}
.y8b_c00038{bottom:191.180000pt;}
.y8a_c00038{bottom:192.538667pt;}
.y89_c00038{bottom:194.653333pt;}
.y88_c00038{bottom:205.453333pt;}
.y87_c00038{bottom:206.228000pt;}
.y86_c00038{bottom:207.312000pt;}
.y85_c00038{bottom:207.940000pt;}
.y84_c00038{bottom:208.341333pt;}
.y83_c00038{bottom:208.590667pt;}
.y82_c00038{bottom:209.782667pt;}
.y81_c00038{bottom:210.404000pt;}
.y80_c00038{bottom:211.450667pt;}
.y7f_c00038{bottom:219.137333pt;}
.y7e_c00038{bottom:220.424000pt;}
.y7d_c00038{bottom:221.005333pt;}
.y7c_c00038{bottom:221.718667pt;}
.y7b_c00038{bottom:222.669333pt;}
.y7a_c00038{bottom:223.404000pt;}
.y79_c00038{bottom:224.412000pt;}
.y78_c00038{bottom:225.145333pt;}
.y77_c00038{bottom:225.434667pt;}
.y76_c00038{bottom:226.090667pt;}
.y75_c00038{bottom:235.394667pt;}
.y74_c00038{bottom:236.408000pt;}
.y73_c00038{bottom:238.417333pt;}
.y72_c00038{bottom:239.409333pt;}
.y71_c00038{bottom:240.102667pt;}
.y70_c00038{bottom:241.450667pt;}
.y6f_c00038{bottom:249.837333pt;}
.y6e_c00038{bottom:250.346667pt;}
.y6d_c00038{bottom:252.152000pt;}
.y6c_c00038{bottom:252.981333pt;}
.y6b_c00038{bottom:253.502667pt;}
.y6a_c00038{bottom:254.626667pt;}
.y69_c00038{bottom:256.570667pt;}
.y68_c00038{bottom:266.382667pt;}
.y67_c00038{bottom:267.482667pt;}
.y66_c00038{bottom:267.866667pt;}
.y65_c00038{bottom:268.658667pt;}
.y64_c00038{bottom:269.030667pt;}
.y63_c00038{bottom:269.460000pt;}
.y62_c00038{bottom:270.722667pt;}
.y61_c00038{bottom:271.586667pt;}
.y60_c00038{bottom:272.196000pt;}
.y5f_c00038{bottom:272.649333pt;}
.y5e_c00038{bottom:281.944000pt;}
.y5d_c00038{bottom:282.213333pt;}
.y5c_c00038{bottom:283.592000pt;}
.y5b_c00038{bottom:283.854667pt;}
.y5a_c00038{bottom:285.934667pt;}
.y59_c00038{bottom:287.768000pt;}
.y58_c00038{bottom:297.217333pt;}
.y57_c00038{bottom:297.973333pt;}
.y56_c00038{bottom:298.429333pt;}
.y55_c00038{bottom:299.486667pt;}
.y54_c00038{bottom:299.901333pt;}
.y53_c00038{bottom:300.724000pt;}
.y52_c00038{bottom:301.362667pt;}
.y51_c00038{bottom:301.924000pt;}
.y50_c00038{bottom:312.192000pt;}
.y4f_c00038{bottom:312.637333pt;}
.y4e_c00038{bottom:313.317333pt;}
.y4d_c00038{bottom:314.324000pt;}
.y4c_c00038{bottom:315.640000pt;}
.y4b_c00038{bottom:316.068000pt;}
.y4a_c00038{bottom:316.636000pt;}
.y49_c00038{bottom:316.873333pt;}
.y48_c00038{bottom:317.526667pt;}
.y47_c00038{bottom:327.461333pt;}
.y46_c00038{bottom:328.934667pt;}
.y45_c00038{bottom:329.993333pt;}
.y44_c00038{bottom:330.501333pt;}
.y43_c00038{bottom:331.858667pt;}
.y42_c00038{bottom:332.886667pt;}
.y41_c00038{bottom:343.000000pt;}
.y40_c00038{bottom:343.429333pt;}
.y3f_c00038{bottom:344.686667pt;}
.y3e_c00038{bottom:345.306667pt;}
.y3d_c00038{bottom:345.928000pt;}
.y3c_c00038{bottom:348.248000pt;}
.y3b_c00038{bottom:358.032000pt;}
.y3a_c00038{bottom:358.578667pt;}
.y39_c00038{bottom:359.269333pt;}
.y38_c00038{bottom:360.118667pt;}
.y37_c00038{bottom:361.206667pt;}
.y36_c00038{bottom:362.440000pt;}
.y35_c00038{bottom:364.088000pt;}
.y34_c00038{bottom:373.413333pt;}
.y33_c00038{bottom:373.757333pt;}
.y32_c00038{bottom:374.592000pt;}
.y31_c00038{bottom:375.178667pt;}
.y30_c00038{bottom:376.000000pt;}
.y2f_c00038{bottom:376.518667pt;}
.y2e_c00038{bottom:377.560000pt;}
.y2d_c00038{bottom:377.849333pt;}
.y2c_c00038{bottom:378.004000pt;}
.y2b_c00038{bottom:389.450667pt;}
.y2a_c00038{bottom:389.664000pt;}
.y29_c00038{bottom:389.801333pt;}
.y28_c00038{bottom:390.614667pt;}
.y27_c00038{bottom:391.208000pt;}
.y26_c00038{bottom:391.461333pt;}
.y25_c00038{bottom:391.588000pt;}
.y24_c00038{bottom:391.921333pt;}
.y23_c00038{bottom:404.696000pt;}
.y22_c00038{bottom:405.353333pt;}
.y21_c00038{bottom:405.793333pt;}
.y20_c00038{bottom:406.324000pt;}
.y1f_c00038{bottom:406.508000pt;}
.y1e_c00038{bottom:406.720000pt;}
.y1d_c00038{bottom:407.341333pt;}
.y1c_c00038{bottom:407.522667pt;}
.y1b_c00038{bottom:420.537333pt;}
.y1a_c00038{bottom:420.704000pt;}
.y19_c00038{bottom:421.480000pt;}
.y18_c00038{bottom:422.626667pt;}
.y17_c00038{bottom:422.985333pt;}
.y16_c00038{bottom:423.421333pt;}
.y15_c00038{bottom:424.084000pt;}
.y14_c00038{bottom:436.706667pt;}
.y13_c00038{bottom:437.436000pt;}
.y12_c00038{bottom:437.685333pt;}
.y11_c00038{bottom:438.122667pt;}
.y10_c00038{bottom:438.958667pt;}
.yf_c00038{bottom:439.268000pt;}
.ye_c00038{bottom:440.402667pt;}
.yd_c00038{bottom:452.061333pt;}
.yc_c00038{bottom:452.306667pt;}
.yb_c00038{bottom:452.572000pt;}
.ya_c00038{bottom:453.205333pt;}
.y9_c00038{bottom:454.097333pt;}
.y8_c00038{bottom:454.865333pt;}
.y7_c00038{bottom:455.272000pt;}
.y6_c00038{bottom:456.001333pt;}
.y5_c00038{bottom:468.250667pt;}
.y4_c00038{bottom:483.714667pt;}
.y3_c00038{bottom:498.584000pt;}
.y2_c00038{bottom:514.674667pt;}
.y1_c00038{bottom:529.901333pt;}
.hb_c00038{height:37.333333pt;}
.h9_c00038{height:54.133333pt;}
.hd_c00038{height:55.047307pt;}
.h5_c00038{height:55.066667pt;}
.he_c00038{height:55.980313pt;}
.hc_c00038{height:56.000000pt;}
.h4_c00038{height:56.933333pt;}
.h2_c00038{height:57.866667pt;}
.hf_c00038{height:58.779328pt;}
.h7_c00038{height:58.800000pt;}
.ha_c00038{height:59.733333pt;}
.h6_c00038{height:60.666667pt;}
.h3_c00038{height:62.533333pt;}
.h8_c00038{height:63.466667pt;}
.h0_c00038{height:568.533333pt;}
.h1_c00038{height:568.666667pt;}
.w1_c00038{width:323.333333pt;}
.w0_c00038{width:323.466667pt;}
.x0_c00038{left:0.000000pt;}
.x78_c00038{left:24.434667pt;}
.x72_c00038{left:25.580000pt;}
.x55_c00038{left:26.570667pt;}
.x49_c00038{left:27.841333pt;}
.x41_c00038{left:29.000000pt;}
.x32_c00038{left:30.096000pt;}
.x24_c00038{left:31.248000pt;}
.x4_c00038{left:32.640000pt;}
.x2d_c00038{left:35.173333pt;}
.x38_c00038{left:38.424000pt;}
.x7a_c00038{left:43.452360pt;}
.x11_c00038{left:45.120000pt;}
.x79_c00038{left:46.677333pt;}
.x75_c00038{left:47.816000pt;}
.x5b_c00038{left:48.770667pt;}
.x2e_c00038{left:50.256000pt;}
.xb_c00038{left:54.240000pt;}
.x4a_c00038{left:58.924000pt;}
.x33_c00038{left:60.353333pt;}
.x69_c00038{left:65.465333pt;}
.x28_c00038{left:69.925333pt;}
.x61_c00038{left:70.917333pt;}
.x34_c00038{left:71.925333pt;}
.x44_c00038{left:73.002667pt;}
.x1f_c00038{left:77.385333pt;}
.x5_c00038{left:78.960000pt;}
.x5c_c00038{left:81.762667pt;}
.x7e_c00038{left:86.092536pt;}
.x19_c00038{left:89.280000pt;}
.x67_c00038{left:91.345333pt;}
.x6d_c00038{left:92.421333pt;}
.x1_c00038{left:93.360000pt;}
.x4e_c00038{left:94.582667pt;}
.x29_c00038{left:95.597333pt;}
.x1a_c00038{left:97.680000pt;}
.x6_c00038{left:98.880000pt;}
.x12_c00038{left:100.080000pt;}
.x20_c00038{left:102.818667pt;}
.x51_c00038{left:103.986667pt;}
.x58_c00038{left:106.294667pt;}
.x7b_c00038{left:107.994420pt;}
.x6a_c00038{left:109.065333pt;}
.x39_c00038{left:112.393333pt;}
.x5d_c00038{left:114.294667pt;}
.xc_c00038{left:117.120000pt;}
.x2f_c00038{left:119.689333pt;}
.x6e_c00038{left:120.681333pt;}
.x42_c00038{left:125.642667pt;}
.x77_c00038{left:126.932000pt;}
.x45_c00038{left:132.028000pt;}
.x30_c00038{left:134.994667pt;}
.x5e_c00038{left:138.002667pt;}
.x13_c00038{left:140.880000pt;}
.x76_c00038{left:141.810667pt;}
.x59_c00038{left:144.453333pt;}
.x62_c00038{left:146.445333pt;}
.xd_c00038{left:147.360000pt;}
.x35_c00038{left:148.924000pt;}
.x7_c00038{left:150.960000pt;}
.x46_c00038{left:154.108000pt;}
.x53_c00038{left:155.340000pt;}
.x63_c00038{left:156.852000pt;}
.x1b_c00038{left:160.080000pt;}
.x2_c00038{left:161.040000pt;}
.x4f_c00038{left:163.325333pt;}
.x25_c00038{left:165.429333pt;}
.x14_c00038{left:169.440000pt;}
.x73_c00038{left:170.597333pt;}
.x54_c00038{left:172.506667pt;}
.x64_c00038{left:173.550667pt;}
.x43_c00038{left:177.361333pt;}
.x31_c00038{left:179.180000pt;}
.x4b_c00038{left:180.310667pt;}
.x8_c00038{left:182.400000pt;}
.x2a_c00038{left:184.185333pt;}
.x6f_c00038{left:185.818667pt;}
.x3a_c00038{left:186.825333pt;}
.x7f_c00038{left:189.774912pt;}
.x26_c00038{left:191.118667pt;}
.x6c_c00038{left:192.186667pt;}
.x3e_c00038{left:194.637333pt;}
.x70_c00038{left:198.434667pt;}
.x47_c00038{left:200.164000pt;}
.x52_c00038{left:201.581333pt;}
.xe_c00038{left:202.560000pt;}
.x21_c00038{left:206.541333pt;}
.x68_c00038{left:207.753333pt;}
.x5f_c00038{left:210.397333pt;}
.x81_c00038{left:214.065600pt;}
.x1c_c00038{left:216.720000pt;}
.x15_c00038{left:217.920000pt;}
.x3b_c00038{left:219.412000pt;}
.x5a_c00038{left:221.756000pt;}
.x36_c00038{left:222.888000pt;}
.x1d_c00038{left:225.120000pt;}
.x7c_c00038{left:226.341288pt;}
.x4c_c00038{left:228.269333pt;}
.x2b_c00038{left:229.801333pt;}
.x16_c00038{left:233.760000pt;}
.x37_c00038{left:235.364000pt;}
.x80_c00038{left:236.652264pt;}
.xf_c00038{left:237.840000pt;}
.x2c_c00038{left:239.638667pt;}
.x1e_c00038{left:242.160000pt;}
.x71_c00038{left:243.322667pt;}
.x65_c00038{left:244.870667pt;}
.x9_c00038{left:246.960000pt;}
.x27_c00038{left:248.697333pt;}
.x7d_c00038{left:250.850088pt;}
.x60_c00038{left:251.922667pt;}
.x74_c00038{left:253.276000pt;}
.x10_c00038{left:255.360000pt;}
.x56_c00038{left:257.106667pt;}
.x3f_c00038{left:258.806667pt;}
.x4d_c00038{left:260.650667pt;}
.x22_c00038{left:262.702667pt;}
.x48_c00038{left:264.232000pt;}
.x3c_c00038{left:265.794667pt;}
.x6b_c00038{left:267.134667pt;}
.xa_c00038{left:270.960000pt;}
.x57_c00038{left:275.974667pt;}
.x66_c00038{left:277.126667pt;}
.x23_c00038{left:278.050667pt;}
.x17_c00038{left:280.320000pt;}
.x40_c00038{left:281.593333pt;}
.x3d_c00038{left:284.914667pt;}
.x50_c00038{left:289.489333pt;}
.x18_c00038{left:292.560000pt;}
.x3_c00038{left:293.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00039 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00039.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00039{transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);}
.me6_c00039{transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{transform:matrix(0.088330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088330,0.000000,0.000000,0.250000,0,0);}
.m95_c00039{transform:matrix(0.126960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126960,0.000000,0.000000,0.250000,0,0);}
.m91_c00039{transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);}
.m93_c00039{transform:matrix(0.137765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137765,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);}
.mbc_c00039{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m62_c00039{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.md0_c00039{transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);}
.m77_c00039{transform:matrix(0.141665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141665,0.000000,0.000000,0.250000,0,0);}
.maa_c00039{transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);}
.m6c_c00039{transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);}
.m28_c00039{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.me4_c00039{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);}
.md8_c00039{transform:matrix(0.151860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00039{transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);}
.m47_c00039{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.mca_c00039{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.mc3_c00039{transform:matrix(0.153765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00039{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00039{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.mc9_c00039{transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.mae_c00039{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m87_c00039{transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);}
.me1_c00039{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);}
.m3a_c00039{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.m92_c00039{transform:matrix(0.162030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162030,0.000000,0.000000,0.250000,0,0);}
.mdd_c00039{transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);}
.mbe_c00039{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.m79_c00039{transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);}
.m40_c00039{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00039{transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);}
.mab_c00039{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.mb2_c00039{transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);}
.m8f_c00039{transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);}
.me5_c00039{transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);}
.m9a_c00039{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00039{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);}
.mb1_c00039{transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);}
.me3_c00039{transform:matrix(0.167580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167580,0.000000,0.000000,0.250000,0,0);}
.mc8_c00039{transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);}
.mde_c00039{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00039{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00039{transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);}
.m8e_c00039{transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);}
.m73_c00039{transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);}
.m6d_c00039{transform:matrix(0.168730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168730,0.000000,0.000000,0.250000,0,0);}
.mb0_c00039{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.m66_c00039{transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);}
.m6a_c00039{transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);}
.mce_c00039{transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);}
.md3_c00039{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);}
.m9d_c00039{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);}
.m97_c00039{transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);}
.mc4_c00039{transform:matrix(0.170545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170545,0.000000,0.000000,0.250000,0,0);}
.m94_c00039{transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);}
.m9f_c00039{transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);}
.md6_c00039{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00039{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m43_c00039{transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);}
.m78_c00039{transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);}
.md4_c00039{transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);}
.ma1_c00039{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.mc1_c00039{transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00039{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.md5_c00039{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);}
.m53_c00039{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.m19_c00039{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);}
.m36_c00039{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m76_c00039{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.mc7_c00039{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.m34_c00039{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.md7_c00039{transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.mb5_c00039{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.mcb_c00039{transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);}
.mba_c00039{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m51_c00039{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.mc5_c00039{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.mac_c00039{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m64_c00039{transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);}
.m33_c00039{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.m61_c00039{transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);}
.m9b_c00039{transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);}
.m90_c00039{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m45_c00039{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.mbd_c00039{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.me2_c00039{transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);}
.m3e_c00039{transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m81_c00039{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m50_c00039{transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00039{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m71_c00039{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m59_c00039{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m4a_c00039{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);}
.m4f_c00039{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m96_c00039{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m46_c00039{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00039{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m52_c00039{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.mb9_c00039{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.m4c_c00039{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m68_c00039{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.mcd_c00039{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.m5d_c00039{transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);}
.m75_c00039{transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m83_c00039{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.mad_c00039{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.maf_c00039{transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);}
.m70_c00039{transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);}
.mdc_c00039{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.m60_c00039{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m99_c00039{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.mc6_c00039{transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);}
.me0_c00039{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m80_c00039{transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);}
.m88_c00039{transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);}
.ma0_c00039{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m48_c00039{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00039{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);}
.md9_c00039{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00039{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00039{transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);}
.m5f_c00039{transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00039{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.m7d_c00039{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.ma4_c00039{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.mb4_c00039{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m6e_c00039{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.mb6_c00039{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.mb3_c00039{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m74_c00039{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.m3c_c00039{transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);}
.m72_c00039{transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);}
.m42_c00039{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m9e_c00039{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.mc2_c00039{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m89_c00039{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.m54_c00039{transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);}
.m6f_c00039{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.ma6_c00039{transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00039{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.m82_c00039{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m7c_c00039{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.mdb_c00039{transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);}
.m58_c00039{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00039{transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00039{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m31_c00039{transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);}
.m35_c00039{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);}
.m5b_c00039{transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);}
.m63_c00039{transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);}
.m7f_c00039{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.md1_c00039{transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);}
.m7_c00039{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.md2_c00039{transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);}
.md_c00039{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma5_c00039{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);}
.mb8_c00039{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m67_c00039{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m32_c00039{transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);}
.ma8_c00039{transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00039{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m98_c00039{transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);}
.m4e_c00039{transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);}
.mda_c00039{transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m41_c00039{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m8c_c00039{transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);}
.mbb_c00039{transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.m69_c00039{transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);}
.m65_c00039{transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m2f_c00039{transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);}
.m86_c00039{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.mbf_c00039{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00039{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00039{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m85_c00039{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m7a_c00039{transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);}
.m49_c00039{transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);}
.m7e_c00039{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00039{transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);}
.m84_c00039{transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);}
.m5c_c00039{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.m57_c00039{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.m37_c00039{transform:matrix(0.289340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289340,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.291535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291535,0.000000,0.000000,0.250000,0,0);}
.m56_c00039{transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);}
.m2d_c00039{transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{transform:matrix(0.388010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388010,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{transform:matrix(0.497760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497760,0.000000,0.000000,0.250000,0,0);}
.me9_c00039{transform:matrix(0.540475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540475,0.000000,0.000000,0.250000,0,0);}
.me7_c00039{transform:matrix(0.573480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573480,0.000000,0.000000,0.250000,0,0);}
.me8_c00039{transform:matrix(0.949945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.949945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.949945,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
.fc0_c00039{color:transparent;}
.fsd_c00039{font-size:22.050000px;}
.fs7_c00039{font-size:60.900000px;}
.fs5_c00039{font-size:61.950000px;}
.fs1_c00039{font-size:63.000000px;}
.fsb_c00039{font-size:64.050000px;}
.fs2_c00039{font-size:65.100000px;}
.fs4_c00039{font-size:66.150000px;}
.fs0_c00039{font-size:67.200000px;}
.fs9_c00039{font-size:68.250000px;}
.fs6_c00039{font-size:69.300000px;}
.fs8_c00039{font-size:70.350000px;}
.fs3_c00039{font-size:71.400000px;}
.fsa_c00039{font-size:72.450000px;}
.fsc_c00039{font-size:73.500000px;}
.y0_c00039{bottom:0.000000px;}
.y24_c00039{bottom:30.780000px;}
.y23_c00039{bottom:48.600000px;}
.y22_c00039{bottom:66.547500px;}
.y21_c00039{bottom:83.779500px;}
.y20_c00039{bottom:101.790000px;}
.y1f_c00039{bottom:119.413500px;}
.y25_c00039{bottom:120.690000px;}
.y1e_c00039{bottom:137.232000px;}
.y1d_c00039{bottom:154.704000px;}
.y1c_c00039{bottom:173.340000px;}
.y18_c00039{bottom:190.083000px;}
.y19_c00039{bottom:190.645500px;}
.y1a_c00039{bottom:192.787500px;}
.y1b_c00039{bottom:193.740000px;}
.y17_c00039{bottom:208.171500px;}
.y16_c00039{bottom:225.568500px;}
.y15_c00039{bottom:243.811500px;}
.y14_c00039{bottom:261.327000px;}
.y13_c00039{bottom:279.064500px;}
.y12_c00039{bottom:296.380500px;}
.y11_c00039{bottom:313.777500px;}
.y10_c00039{bottom:331.395000px;}
.yf_c00039{bottom:349.677000px;}
.ye_c00039{bottom:366.931500px;}
.yd_c00039{bottom:384.820500px;}
.yc_c00039{bottom:401.914500px;}
.yb_c00039{bottom:419.278500px;}
.ya_c00039{bottom:437.131500px;}
.y9_c00039{bottom:454.645500px;}
.y8_c00039{bottom:473.476500px;}
.y7_c00039{bottom:490.638000px;}
.y6_c00039{bottom:506.190000px;}
.y5_c00039{bottom:524.037000px;}
.y4_c00039{bottom:541.300500px;}
.y3_c00039{bottom:559.117500px;}
.y2_c00039{bottom:576.904500px;}
.y1_c00039{bottom:607.362000px;}
.hf_c00039{height:22.050000px;}
.h9_c00039{height:60.900000px;}
.h7_c00039{height:61.950000px;}
.h3_c00039{height:63.000000px;}
.hd_c00039{height:64.050000px;}
.h4_c00039{height:65.100000px;}
.h6_c00039{height:66.150000px;}
.h2_c00039{height:67.200000px;}
.hb_c00039{height:68.250000px;}
.h8_c00039{height:69.300000px;}
.ha_c00039{height:70.350000px;}
.h5_c00039{height:71.400000px;}
.hc_c00039{height:72.450000px;}
.he_c00039{height:73.500000px;}
.h0_c00039{height:639.600000px;}
.h1_c00039{height:639.750000px;}
.w1_c00039{width:363.750000px;}
.w0_c00039{width:363.900000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:39.420000px;}
.x1d_c00039{left:41.310000px;}
.x5f_c00039{left:42.390000px;}
.x59_c00039{left:43.470000px;}
.x72_c00039{left:44.550000px;}
.x32_c00039{left:60.480000px;}
.x25_c00039{left:64.260000px;}
.xc_c00039{left:65.880000px;}
.x67_c00039{left:67.770000px;}
.x73_c00039{left:69.930000px;}
.x18_c00039{left:75.330000px;}
.x4b_c00039{left:78.030000px;}
.x26_c00039{left:80.190000px;}
.xd_c00039{left:83.430000px;}
.x3_c00039{left:85.320000px;}
.x1f_c00039{left:88.290000px;}
.x2b_c00039{left:89.910000px;}
.x37_c00039{left:91.530000px;}
.x50_c00039{left:94.230000px;}
.x13_c00039{left:96.930000px;}
.x57_c00039{left:98.280000px;}
.x44_c00039{left:99.630000px;}
.x2c_c00039{left:103.680000px;}
.x6e_c00039{left:107.190000px;}
.x38_c00039{left:108.270000px;}
.x78_c00039{left:110.700000px;}
.x4_c00039{left:111.780000px;}
.x45_c00039{left:113.400000px;}
.x14_c00039{left:115.290000px;}
.x62_c00039{left:116.640000px;}
.x3e_c00039{left:121.500000px;}
.x5b_c00039{left:125.010000px;}
.x74_c00039{left:127.980000px;}
.x7a_c00039{left:130.410000px;}
.x54_c00039{left:131.760000px;}
.x68_c00039{left:132.840000px;}
.x4c_c00039{left:135.270000px;}
.x19_c00039{left:136.350000px;}
.x7c_c00039{left:138.240000px;}
.x15_c00039{left:141.750000px;}
.x27_c00039{left:143.100000px;}
.x3f_c00039{left:146.070000px;}
.x5_c00039{left:147.960000px;}
.x1a_c00039{left:149.310000px;}
.xe_c00039{left:150.660000px;}
.x6b_c00039{left:153.090000px;}
.x4d_c00039{left:155.520000px;}
.x20_c00039{left:157.680000px;}
.x6_c00039{left:159.300000px;}
.x60_c00039{left:166.590000px;}
.x2d_c00039{left:167.670000px;}
.x6c_c00039{left:171.180000px;}
.xf_c00039{left:172.260000px;}
.x21_c00039{left:176.310000px;}
.x1_c00039{left:177.930000px;}
.x46_c00039{left:179.820000px;}
.x69_c00039{left:180.900000px;}
.x51_c00039{left:182.250000px;}
.x75_c00039{left:185.220000px;}
.x33_c00039{left:187.110000px;}
.x5c_c00039{left:188.190000px;}
.x40_c00039{left:192.510000px;}
.x70_c00039{left:194.940000px;}
.x47_c00039{left:197.910000px;}
.x28_c00039{left:199.530000px;}
.x7_c00039{left:201.420000px;}
.x64_c00039{left:202.770000px;}
.x7d_c00039{left:204.120000px;}
.x39_c00039{left:206.550000px;}
.x5d_c00039{left:208.170000px;}
.x8_c00039{left:210.600000px;}
.x79_c00039{left:212.760000px;}
.x41_c00039{left:214.380000px;}
.x34_c00039{left:215.460000px;}
.x48_c00039{left:217.350000px;}
.x22_c00039{left:219.780000px;}
.x4e_c00039{left:223.560000px;}
.x3a_c00039{left:224.910000px;}
.x1b_c00039{left:228.150000px;}
.x2e_c00039{left:230.040000px;}
.x35_c00039{left:231.390000px;}
.x49_c00039{left:234.360000px;}
.x16_c00039{left:235.980000px;}
.x23_c00039{left:238.410000px;}
.x9_c00039{left:239.760000px;}
.x10_c00039{left:242.190000px;}
.x52_c00039{left:244.080000px;}
.x6f_c00039{left:245.430000px;}
.x63_c00039{left:246.780000px;}
.x42_c00039{left:249.210000px;}
.x66_c00039{left:252.187500px;}
.x29_c00039{left:255.960000px;}
.x3b_c00039{left:258.660000px;}
.x6a_c00039{left:260.820000px;}
.x76_c00039{left:262.980000px;}
.x65_c00039{left:264.060000px;}
.x6d_c00039{left:271.350000px;}
.x4f_c00039{left:273.780000px;}
.x11_c00039{left:275.670000px;}
.x7b_c00039{left:276.750000px;}
.x2f_c00039{left:278.640000px;}
.x17_c00039{left:280.800000px;}
.x24_c00039{left:282.960000px;}
.x7e_c00039{left:285.930000px;}
.x58_c00039{left:287.550000px;}
.x30_c00039{left:288.630000px;}
.x3c_c00039{left:292.680000px;}
.x55_c00039{left:295.650000px;}
.xa_c00039{left:297.270000px;}
.x61_c00039{left:300.510000px;}
.x43_c00039{left:302.940000px;}
.x31_c00039{left:304.560000px;}
.x4a_c00039{left:306.450000px;}
.x77_c00039{left:309.960000px;}
.xb_c00039{left:316.170000px;}
.x5a_c00039{left:318.060000px;}
.x12_c00039{left:319.410000px;}
.x71_c00039{left:320.760000px;}
.x1e_c00039{left:322.920000px;}
.x1c_c00039{left:324.540000px;}
.x36_c00039{left:326.430000px;}
.x56_c00039{left:328.590000px;}
.x3d_c00039{left:330.480000px;}
.x2a_c00039{left:333.990000px;}
.x5e_c00039{left:336.690000px;}
.x53_c00039{left:338.310000px;}
.x80_c00039{left:358.020000px;}
.x7f_c00039{left:362.070000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:0.000000pt;}
.fsd_c00039{font-size:19.600000pt;}
.fs7_c00039{font-size:54.133333pt;}
.fs5_c00039{font-size:55.066667pt;}
.fs1_c00039{font-size:56.000000pt;}
.fsb_c00039{font-size:56.933333pt;}
.fs2_c00039{font-size:57.866667pt;}
.fs4_c00039{font-size:58.800000pt;}
.fs0_c00039{font-size:59.733333pt;}
.fs9_c00039{font-size:60.666667pt;}
.fs6_c00039{font-size:61.600000pt;}
.fs8_c00039{font-size:62.533333pt;}
.fs3_c00039{font-size:63.466667pt;}
.fsa_c00039{font-size:64.400000pt;}
.fsc_c00039{font-size:65.333333pt;}
.y0_c00039{bottom:0.000000pt;}
.y24_c00039{bottom:27.360000pt;}
.y23_c00039{bottom:43.200000pt;}
.y22_c00039{bottom:59.153333pt;}
.y21_c00039{bottom:74.470667pt;}
.y20_c00039{bottom:90.480000pt;}
.y1f_c00039{bottom:106.145333pt;}
.y25_c00039{bottom:107.280000pt;}
.y1e_c00039{bottom:121.984000pt;}
.y1d_c00039{bottom:137.514667pt;}
.y1c_c00039{bottom:154.080000pt;}
.y18_c00039{bottom:168.962667pt;}
.y19_c00039{bottom:169.462667pt;}
.y1a_c00039{bottom:171.366667pt;}
.y1b_c00039{bottom:172.213333pt;}
.y17_c00039{bottom:185.041333pt;}
.y16_c00039{bottom:200.505333pt;}
.y15_c00039{bottom:216.721333pt;}
.y14_c00039{bottom:232.290667pt;}
.y13_c00039{bottom:248.057333pt;}
.y12_c00039{bottom:263.449333pt;}
.y11_c00039{bottom:278.913333pt;}
.y10_c00039{bottom:294.573333pt;}
.yf_c00039{bottom:310.824000pt;}
.ye_c00039{bottom:326.161333pt;}
.yd_c00039{bottom:342.062667pt;}
.yc_c00039{bottom:357.257333pt;}
.yb_c00039{bottom:372.692000pt;}
.ya_c00039{bottom:388.561333pt;}
.y9_c00039{bottom:404.129333pt;}
.y8_c00039{bottom:420.868000pt;}
.y7_c00039{bottom:436.122667pt;}
.y6_c00039{bottom:449.946667pt;}
.y5_c00039{bottom:465.810667pt;}
.y4_c00039{bottom:481.156000pt;}
.y3_c00039{bottom:496.993333pt;}
.y2_c00039{bottom:512.804000pt;}
.y1_c00039{bottom:539.877333pt;}
.hf_c00039{height:19.600000pt;}
.h9_c00039{height:54.133333pt;}
.h7_c00039{height:55.066667pt;}
.h3_c00039{height:56.000000pt;}
.hd_c00039{height:56.933333pt;}
.h4_c00039{height:57.866667pt;}
.h6_c00039{height:58.800000pt;}
.h2_c00039{height:59.733333pt;}
.hb_c00039{height:60.666667pt;}
.h8_c00039{height:61.600000pt;}
.ha_c00039{height:62.533333pt;}
.h5_c00039{height:63.466667pt;}
.hc_c00039{height:64.400000pt;}
.he_c00039{height:65.333333pt;}
.h0_c00039{height:568.533333pt;}
.h1_c00039{height:568.666667pt;}
.w1_c00039{width:323.333333pt;}
.w0_c00039{width:323.466667pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:35.040000pt;}
.x1d_c00039{left:36.720000pt;}
.x5f_c00039{left:37.680000pt;}
.x59_c00039{left:38.640000pt;}
.x72_c00039{left:39.600000pt;}
.x32_c00039{left:53.760000pt;}
.x25_c00039{left:57.120000pt;}
.xc_c00039{left:58.560000pt;}
.x67_c00039{left:60.240000pt;}
.x73_c00039{left:62.160000pt;}
.x18_c00039{left:66.960000pt;}
.x4b_c00039{left:69.360000pt;}
.x26_c00039{left:71.280000pt;}
.xd_c00039{left:74.160000pt;}
.x3_c00039{left:75.840000pt;}
.x1f_c00039{left:78.480000pt;}
.x2b_c00039{left:79.920000pt;}
.x37_c00039{left:81.360000pt;}
.x50_c00039{left:83.760000pt;}
.x13_c00039{left:86.160000pt;}
.x57_c00039{left:87.360000pt;}
.x44_c00039{left:88.560000pt;}
.x2c_c00039{left:92.160000pt;}
.x6e_c00039{left:95.280000pt;}
.x38_c00039{left:96.240000pt;}
.x78_c00039{left:98.400000pt;}
.x4_c00039{left:99.360000pt;}
.x45_c00039{left:100.800000pt;}
.x14_c00039{left:102.480000pt;}
.x62_c00039{left:103.680000pt;}
.x3e_c00039{left:108.000000pt;}
.x5b_c00039{left:111.120000pt;}
.x74_c00039{left:113.760000pt;}
.x7a_c00039{left:115.920000pt;}
.x54_c00039{left:117.120000pt;}
.x68_c00039{left:118.080000pt;}
.x4c_c00039{left:120.240000pt;}
.x19_c00039{left:121.200000pt;}
.x7c_c00039{left:122.880000pt;}
.x15_c00039{left:126.000000pt;}
.x27_c00039{left:127.200000pt;}
.x3f_c00039{left:129.840000pt;}
.x5_c00039{left:131.520000pt;}
.x1a_c00039{left:132.720000pt;}
.xe_c00039{left:133.920000pt;}
.x6b_c00039{left:136.080000pt;}
.x4d_c00039{left:138.240000pt;}
.x20_c00039{left:140.160000pt;}
.x6_c00039{left:141.600000pt;}
.x60_c00039{left:148.080000pt;}
.x2d_c00039{left:149.040000pt;}
.x6c_c00039{left:152.160000pt;}
.xf_c00039{left:153.120000pt;}
.x21_c00039{left:156.720000pt;}
.x1_c00039{left:158.160000pt;}
.x46_c00039{left:159.840000pt;}
.x69_c00039{left:160.800000pt;}
.x51_c00039{left:162.000000pt;}
.x75_c00039{left:164.640000pt;}
.x33_c00039{left:166.320000pt;}
.x5c_c00039{left:167.280000pt;}
.x40_c00039{left:171.120000pt;}
.x70_c00039{left:173.280000pt;}
.x47_c00039{left:175.920000pt;}
.x28_c00039{left:177.360000pt;}
.x7_c00039{left:179.040000pt;}
.x64_c00039{left:180.240000pt;}
.x7d_c00039{left:181.440000pt;}
.x39_c00039{left:183.600000pt;}
.x5d_c00039{left:185.040000pt;}
.x8_c00039{left:187.200000pt;}
.x79_c00039{left:189.120000pt;}
.x41_c00039{left:190.560000pt;}
.x34_c00039{left:191.520000pt;}
.x48_c00039{left:193.200000pt;}
.x22_c00039{left:195.360000pt;}
.x4e_c00039{left:198.720000pt;}
.x3a_c00039{left:199.920000pt;}
.x1b_c00039{left:202.800000pt;}
.x2e_c00039{left:204.480000pt;}
.x35_c00039{left:205.680000pt;}
.x49_c00039{left:208.320000pt;}
.x16_c00039{left:209.760000pt;}
.x23_c00039{left:211.920000pt;}
.x9_c00039{left:213.120000pt;}
.x10_c00039{left:215.280000pt;}
.x52_c00039{left:216.960000pt;}
.x6f_c00039{left:218.160000pt;}
.x63_c00039{left:219.360000pt;}
.x42_c00039{left:221.520000pt;}
.x66_c00039{left:224.166667pt;}
.x29_c00039{left:227.520000pt;}
.x3b_c00039{left:229.920000pt;}
.x6a_c00039{left:231.840000pt;}
.x76_c00039{left:233.760000pt;}
.x65_c00039{left:234.720000pt;}
.x6d_c00039{left:241.200000pt;}
.x4f_c00039{left:243.360000pt;}
.x11_c00039{left:245.040000pt;}
.x7b_c00039{left:246.000000pt;}
.x2f_c00039{left:247.680000pt;}
.x17_c00039{left:249.600000pt;}
.x24_c00039{left:251.520000pt;}
.x7e_c00039{left:254.160000pt;}
.x58_c00039{left:255.600000pt;}
.x30_c00039{left:256.560000pt;}
.x3c_c00039{left:260.160000pt;}
.x55_c00039{left:262.800000pt;}
.xa_c00039{left:264.240000pt;}
.x61_c00039{left:267.120000pt;}
.x43_c00039{left:269.280000pt;}
.x31_c00039{left:270.720000pt;}
.x4a_c00039{left:272.400000pt;}
.x77_c00039{left:275.520000pt;}
.xb_c00039{left:281.040000pt;}
.x5a_c00039{left:282.720000pt;}
.x12_c00039{left:283.920000pt;}
.x71_c00039{left:285.120000pt;}
.x1e_c00039{left:287.040000pt;}
.x1c_c00039{left:288.480000pt;}
.x36_c00039{left:290.160000pt;}
.x56_c00039{left:292.080000pt;}
.x3d_c00039{left:293.760000pt;}
.x2a_c00039{left:296.880000pt;}
.x5e_c00039{left:299.280000pt;}
.x53_c00039{left:300.720000pt;}
.x80_c00039{left:318.240000pt;}
.x7f_c00039{left:321.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00040 {
    display:none;
  }
  .loading-indicator_c00040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00040 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00040 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00040" -> "#page-container .classname_c00040")
 */
.pf_c00040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00040 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00040 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00040 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00040 {overflow:visible;}
  }
}
.c_c00040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00040 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00040:after { /* webkit #35443 */
  content: '';
}
.t_c00040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00040 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00040 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00040 { /* info for Javascript */
  display:none;
}
.l_c00040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00040:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00040 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00040.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00040{transform:matrix(0.070212,0.001966,-0.006997,0.249902,0,0);-ms-transform:matrix(0.070212,0.001966,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.070212,0.001966,-0.006997,0.249902,0,0);}
.mec_c00040{transform:matrix(0.087098,0.004708,-0.013494,0.249636,0,0);-ms-transform:matrix(0.087098,0.004708,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.087098,0.004708,-0.013494,0.249636,0,0);}
.me6_c00040{transform:matrix(0.117349,0.006343,-0.013494,0.249636,0,0);-ms-transform:matrix(0.117349,0.006343,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.117349,0.006343,-0.013494,0.249636,0,0);}
.m13_c00040{transform:matrix(0.136102,0.003811,-0.006997,0.249902,0,0);-ms-transform:matrix(0.136102,0.003811,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.136102,0.003811,-0.006997,0.249902,0,0);}
.m89_c00040{transform:matrix(0.137768,0.003582,-0.006498,0.249916,0,0);-ms-transform:matrix(0.137768,0.003582,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.137768,0.003582,-0.006498,0.249916,0,0);}
.m9e_c00040{transform:matrix(0.139003,0.003614,-0.006498,0.249916,0,0);-ms-transform:matrix(0.139003,0.003614,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.139003,0.003614,-0.006498,0.249916,0,0);}
.mef_c00040{transform:matrix(0.143141,0.007737,-0.013494,0.249636,0,0);-ms-transform:matrix(0.143141,0.007737,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.143141,0.007737,-0.013494,0.249636,0,0);}
.m1c_c00040{transform:matrix(0.147012,0.004116,-0.006997,0.249902,0,0);-ms-transform:matrix(0.147012,0.004116,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.147012,0.004116,-0.006997,0.249902,0,0);}
.m75_c00040{transform:matrix(0.147320,0.003830,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147320,0.003830,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147320,0.003830,-0.006498,0.249916,0,0);}
.m54_c00040{transform:matrix(0.147975,0.003847,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147975,0.003847,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147975,0.003847,-0.006498,0.249916,0,0);}
.mde_c00040{transform:matrix(0.148814,0.009394,-0.015750,0.249503,0,0);-ms-transform:matrix(0.148814,0.009394,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.148814,0.009394,-0.015750,0.249503,0,0);}
.m87_c00040{transform:matrix(0.156132,0.004059,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156132,0.004059,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156132,0.004059,-0.006498,0.249916,0,0);}
.m63_c00040{transform:matrix(0.156592,0.004071,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156592,0.004071,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156592,0.004071,-0.006498,0.249916,0,0);}
.ma1_c00040{transform:matrix(0.157877,0.004105,-0.006498,0.249916,0,0);-ms-transform:matrix(0.157877,0.004105,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.157877,0.004105,-0.006498,0.249916,0,0);}
.m4c_c00040{transform:matrix(0.158132,0.004111,-0.006498,0.249916,0,0);-ms-transform:matrix(0.158132,0.004111,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.158132,0.004111,-0.006498,0.249916,0,0);}
.m11_c00040{transform:matrix(0.158508,0.004438,-0.006997,0.249902,0,0);-ms-transform:matrix(0.158508,0.004438,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.158508,0.004438,-0.006997,0.249902,0,0);}
.ma8_c00040{transform:matrix(0.159151,0.004138,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159151,0.004138,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159151,0.004138,-0.006498,0.249916,0,0);}
.m8e_c00040{transform:matrix(0.159281,0.004141,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159281,0.004141,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159281,0.004141,-0.006498,0.249916,0,0);}
.m3b_c00040{transform:matrix(0.159577,0.004468,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159577,0.004468,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159577,0.004468,-0.006997,0.249902,0,0);}
.ma6_c00040{transform:matrix(0.160056,0.004161,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160056,0.004161,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160056,0.004161,-0.006498,0.249916,0,0);}
.m65_c00040{transform:matrix(0.160421,0.004171,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160421,0.004171,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160421,0.004171,-0.006498,0.249916,0,0);}
.me9_c00040{transform:matrix(0.162118,0.008763,-0.013494,0.249636,0,0);-ms-transform:matrix(0.162118,0.008763,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.162118,0.008763,-0.013494,0.249636,0,0);}
.m85_c00040{transform:matrix(0.163425,0.004249,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163425,0.004249,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163425,0.004249,-0.006498,0.249916,0,0);}
.m86_c00040{transform:matrix(0.164634,0.004280,-0.006498,0.249916,0,0);-ms-transform:matrix(0.164634,0.004280,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.164634,0.004280,-0.006498,0.249916,0,0);}
.m62_c00040{transform:matrix(0.165404,0.004301,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165404,0.004301,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165404,0.004301,-0.006498,0.249916,0,0);}
.ma3_c00040{transform:matrix(0.165864,0.004312,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165864,0.004312,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165864,0.004312,-0.006498,0.249916,0,0);}
.m44_c00040{transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);}
.ma9_c00040{transform:matrix(0.167438,0.004353,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167438,0.004353,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167438,0.004353,-0.006498,0.249916,0,0);}
.mf0_c00040{transform:matrix(0.167885,0.009075,-0.013494,0.249636,0,0);-ms-transform:matrix(0.167885,0.009075,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.167885,0.009075,-0.013494,0.249636,0,0);}
.maf_c00040{transform:matrix(0.168043,0.004369,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168043,0.004369,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168043,0.004369,-0.006498,0.249916,0,0);}
.md2_c00040{transform:matrix(0.168310,0.010625,-0.015750,0.249503,0,0);-ms-transform:matrix(0.168310,0.010625,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.168310,0.010625,-0.015750,0.249503,0,0);}
.m93_c00040{transform:matrix(0.169068,0.004396,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169068,0.004396,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169068,0.004396,-0.006498,0.249916,0,0);}
.m4_c00040{transform:matrix(0.169359,0.004742,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169359,0.004742,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169359,0.004742,-0.006997,0.249902,0,0);}
.md3_c00040{transform:matrix(0.169383,0.010693,-0.015750,0.249503,0,0);-ms-transform:matrix(0.169383,0.010693,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.169383,0.010693,-0.015750,0.249503,0,0);}
.mcc_c00040{transform:matrix(0.169402,0.006444,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169402,0.006444,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169402,0.006444,-0.009503,0.249819,0,0);}
.m39_c00040{transform:matrix(0.170008,0.004760,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170008,0.004760,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170008,0.004760,-0.006997,0.249902,0,0);}
.mb4_c00040{transform:matrix(0.170207,0.004425,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170207,0.004425,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170207,0.004425,-0.006498,0.249916,0,0);}
.m2_c00040{transform:matrix(0.170423,0.004772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170423,0.004772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170423,0.004772,-0.006997,0.249902,0,0);}
.m97_c00040{transform:matrix(0.170582,0.004435,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170582,0.004435,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170582,0.004435,-0.006498,0.249916,0,0);}
.m19_c00040{transform:matrix(0.170798,0.004782,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170798,0.004782,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170798,0.004782,-0.006997,0.249902,0,0);}
.me7_c00040{transform:matrix(0.170801,0.009232,-0.013494,0.249636,0,0);-ms-transform:matrix(0.170801,0.009232,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.170801,0.009232,-0.013494,0.249636,0,0);}
.m16_c00040{transform:matrix(0.170988,0.004788,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170988,0.004788,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170988,0.004788,-0.006997,0.249902,0,0);}
.m29_c00040{transform:matrix(0.171288,0.004796,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171288,0.004796,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171288,0.004796,-0.006997,0.249902,0,0);}
.m71_c00040{transform:matrix(0.171482,0.004459,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171482,0.004459,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171482,0.004459,-0.006498,0.249916,0,0);}
.m2e_c00040{transform:matrix(0.171578,0.004804,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171578,0.004804,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171578,0.004804,-0.006997,0.249902,0,0);}
.m3_c00040{transform:matrix(0.171863,0.004812,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171863,0.004812,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171863,0.004812,-0.006997,0.249902,0,0);}
.md9_c00040{transform:matrix(0.171998,0.010858,-0.015750,0.249503,0,0);-ms-transform:matrix(0.171998,0.010858,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.171998,0.010858,-0.015750,0.249503,0,0);}
.m84_c00040{transform:matrix(0.172172,0.004476,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172172,0.004476,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172172,0.004476,-0.006498,0.249916,0,0);}
.m5e_c00040{transform:matrix(0.172542,0.004486,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172542,0.004486,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172542,0.004486,-0.006498,0.249916,0,0);}
.m1a_c00040{transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);}
.m59_c00040{transform:matrix(0.172737,0.004491,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172737,0.004491,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172737,0.004491,-0.006498,0.249916,0,0);}
.mdd_c00040{transform:matrix(0.173350,0.010943,-0.015750,0.249503,0,0);-ms-transform:matrix(0.173350,0.010943,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.173350,0.010943,-0.015750,0.249503,0,0);}
.m8b_c00040{transform:matrix(0.173646,0.004515,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173646,0.004515,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173646,0.004515,-0.006498,0.249916,0,0);}
.m0_c00040{transform:matrix(0.174102,0.004875,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174102,0.004875,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174102,0.004875,-0.006997,0.249902,0,0);}
.m36_c00040{transform:matrix(0.174192,0.004877,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174192,0.004877,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174192,0.004877,-0.006997,0.249902,0,0);}
.m2a_c00040{transform:matrix(0.174222,0.004878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174222,0.004878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174222,0.004878,-0.006997,0.249902,0,0);}
.m6b_c00040{transform:matrix(0.174921,0.004548,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174921,0.004548,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174921,0.004548,-0.006498,0.249916,0,0);}
.m45_c00040{transform:matrix(0.174976,0.004899,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174976,0.004899,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174976,0.004899,-0.006997,0.249902,0,0);}
.mb9_c00040{transform:matrix(0.175061,0.004552,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175061,0.004552,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175061,0.004552,-0.006498,0.249916,0,0);}
.m78_c00040{transform:matrix(0.175171,0.004554,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175171,0.004554,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175171,0.004554,-0.006498,0.249916,0,0);}
.mda_c00040{transform:matrix(0.175341,0.011069,-0.015750,0.249503,0,0);-ms-transform:matrix(0.175341,0.011069,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.175341,0.011069,-0.015750,0.249503,0,0);}
.m57_c00040{transform:matrix(0.176001,0.004576,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176001,0.004576,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176001,0.004576,-0.006498,0.249916,0,0);}
.m1e_c00040{transform:matrix(0.176386,0.004939,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176386,0.004939,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176386,0.004939,-0.006997,0.249902,0,0);}
.m2d_c00040{transform:matrix(0.176751,0.004949,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176751,0.004949,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176751,0.004949,-0.006997,0.249902,0,0);}
.mbf_c00040{transform:matrix(0.177125,0.004605,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177125,0.004605,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177125,0.004605,-0.006498,0.249916,0,0);}
.maa_c00040{transform:matrix(0.177180,0.004607,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177180,0.004607,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177180,0.004607,-0.006498,0.249916,0,0);}
.m55_c00040{transform:matrix(0.177415,0.004613,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177415,0.004613,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177415,0.004613,-0.006498,0.249916,0,0);}
.m82_c00040{transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);}
.m9a_c00040{transform:matrix(0.178460,0.004640,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178460,0.004640,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178460,0.004640,-0.006498,0.249916,0,0);}
.m31_c00040{transform:matrix(0.178825,0.005007,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178825,0.005007,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178825,0.005007,-0.006997,0.249902,0,0);}
.mdc_c00040{transform:matrix(0.179133,0.011308,-0.015750,0.249503,0,0);-ms-transform:matrix(0.179133,0.011308,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.179133,0.011308,-0.015750,0.249503,0,0);}
.mcb_c00040{transform:matrix(0.179520,0.006829,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179520,0.006829,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179520,0.006829,-0.009503,0.249819,0,0);}
.mae_c00040{transform:matrix(0.179589,0.004669,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179589,0.004669,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179589,0.004669,-0.006498,0.249916,0,0);}
.m88_c00040{transform:matrix(0.179664,0.004671,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179664,0.004671,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179664,0.004671,-0.006498,0.249916,0,0);}
.m2c_c00040{transform:matrix(0.180114,0.005043,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180114,0.005043,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180114,0.005043,-0.006997,0.249902,0,0);}
.m46_c00040{transform:matrix(0.180184,0.005045,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180184,0.005045,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180184,0.005045,-0.006997,0.249902,0,0);}
.m5_c00040{transform:matrix(0.180194,0.005045,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180194,0.005045,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180194,0.005045,-0.006997,0.249902,0,0);}
.m64_c00040{transform:matrix(0.180294,0.004688,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180294,0.004688,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180294,0.004688,-0.006498,0.249916,0,0);}
.mb3_c00040{transform:matrix(0.180459,0.004692,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180459,0.004692,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180459,0.004692,-0.006498,0.249916,0,0);}
.m4d_c00040{transform:matrix(0.180839,0.004702,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180839,0.004702,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180839,0.004702,-0.006498,0.249916,0,0);}
.me1_c00040{transform:matrix(0.180860,0.011417,-0.015750,0.249503,0,0);-ms-transform:matrix(0.180860,0.011417,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.180860,0.011417,-0.015750,0.249503,0,0);}
.md8_c00040{transform:matrix(0.180920,0.011421,-0.015750,0.249503,0,0);-ms-transform:matrix(0.180920,0.011421,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.180920,0.011421,-0.015750,0.249503,0,0);}
.ma2_c00040{transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);}
.m1d_c00040{transform:matrix(0.181704,0.005088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181704,0.005088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181704,0.005088,-0.006997,0.249902,0,0);}
.ma4_c00040{transform:matrix(0.182373,0.004742,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182373,0.004742,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182373,0.004742,-0.006498,0.249916,0,0);}
.ma7_c00040{transform:matrix(0.182778,0.004752,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182778,0.004752,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182778,0.004752,-0.006498,0.249916,0,0);}
.m60_c00040{transform:matrix(0.182988,0.004758,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182988,0.004758,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182988,0.004758,-0.006498,0.249916,0,0);}
.me0_c00040{transform:matrix(0.183026,0.011554,-0.015750,0.249503,0,0);-ms-transform:matrix(0.183026,0.011554,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.183026,0.011554,-0.015750,0.249503,0,0);}
.m20_c00040{transform:matrix(0.183213,0.005130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183213,0.005130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183213,0.005130,-0.006997,0.249902,0,0);}
.m40_c00040{transform:matrix(0.183228,0.005130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183228,0.005130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183228,0.005130,-0.006997,0.249902,0,0);}
.m12_c00040{transform:matrix(0.183423,0.005136,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183423,0.005136,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183423,0.005136,-0.006997,0.249902,0,0);}
.mb8_c00040{transform:matrix(0.183673,0.004775,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183673,0.004775,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183673,0.004775,-0.006498,0.249916,0,0);}
.m7e_c00040{transform:matrix(0.183723,0.004777,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183723,0.004777,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183723,0.004777,-0.006498,0.249916,0,0);}
.m5f_c00040{transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);}
.mf4_c00040{transform:matrix(0.184231,0.009958,-0.013494,0.249636,0,0);-ms-transform:matrix(0.184231,0.009958,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.184231,0.009958,-0.013494,0.249636,0,0);}
.m7d_c00040{transform:matrix(0.184783,0.004804,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184783,0.004804,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184783,0.004804,-0.006498,0.249916,0,0);}
.mba_c00040{transform:matrix(0.185027,0.004811,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185027,0.004811,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185027,0.004811,-0.006498,0.249916,0,0);}
.ma0_c00040{transform:matrix(0.185217,0.004816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185217,0.004816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185217,0.004816,-0.006498,0.249916,0,0);}
.m6f_c00040{transform:matrix(0.185242,0.004816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185242,0.004816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185242,0.004816,-0.006498,0.249916,0,0);}
.m4e_c00040{transform:matrix(0.185882,0.004833,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185882,0.004833,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185882,0.004833,-0.006498,0.249916,0,0);}
.m4a_c00040{transform:matrix(0.186022,0.004837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186022,0.004837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186022,0.004837,-0.006498,0.249916,0,0);}
.m9d_c00040{transform:matrix(0.186717,0.004855,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186717,0.004855,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186717,0.004855,-0.006498,0.249916,0,0);}
.m80_c00040{transform:matrix(0.187002,0.004862,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187002,0.004862,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187002,0.004862,-0.006498,0.249916,0,0);}
.mb6_c00040{transform:matrix(0.187052,0.004863,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187052,0.004863,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187052,0.004863,-0.006498,0.249916,0,0);}
.mdb_c00040{transform:matrix(0.187602,0.011843,-0.015750,0.249503,0,0);-ms-transform:matrix(0.187602,0.011843,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.187602,0.011843,-0.015750,0.249503,0,0);}
.m23_c00040{transform:matrix(0.187826,0.005259,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187826,0.005259,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187826,0.005259,-0.006997,0.249902,0,0);}
.m8_c00040{transform:matrix(0.188031,0.005265,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188031,0.005265,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188031,0.005265,-0.006997,0.249902,0,0);}
.mab_c00040{transform:matrix(0.188496,0.004901,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188496,0.004901,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188496,0.004901,-0.006498,0.249916,0,0);}
.mb2_c00040{transform:matrix(0.188591,0.004903,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188591,0.004903,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188591,0.004903,-0.006498,0.249916,0,0);}
.mf_c00040{transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);}
.m7_c00040{transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);}
.m73_c00040{transform:matrix(0.189191,0.004919,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189191,0.004919,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189191,0.004919,-0.006498,0.249916,0,0);}
.m10_c00040{transform:matrix(0.189321,0.005301,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189321,0.005301,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189321,0.005301,-0.006997,0.249902,0,0);}
.mb5_c00040{transform:matrix(0.189356,0.004923,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189356,0.004923,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189356,0.004923,-0.006498,0.249916,0,0);}
.me2_c00040{transform:matrix(0.189378,0.011955,-0.015750,0.249503,0,0);-ms-transform:matrix(0.189378,0.011955,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.189378,0.011955,-0.015750,0.249503,0,0);}
.ma5_c00040{transform:matrix(0.189481,0.004927,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189481,0.004927,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189481,0.004927,-0.006498,0.249916,0,0);}
.m1f_c00040{transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);}
.m2b_c00040{transform:matrix(0.189671,0.005311,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189671,0.005311,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189671,0.005311,-0.006997,0.249902,0,0);}
.m77_c00040{transform:matrix(0.189811,0.004935,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189811,0.004935,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189811,0.004935,-0.006498,0.249916,0,0);}
.m53_c00040{transform:matrix(0.189961,0.004939,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189961,0.004939,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189961,0.004939,-0.006498,0.249916,0,0);}
.m9b_c00040{transform:matrix(0.190071,0.004942,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190071,0.004942,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190071,0.004942,-0.006498,0.249916,0,0);}
.m8f_c00040{transform:matrix(0.190126,0.004943,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190126,0.004943,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190126,0.004943,-0.006498,0.249916,0,0);}
.m5d_c00040{transform:matrix(0.190816,0.004961,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190816,0.004961,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190816,0.004961,-0.006498,0.249916,0,0);}
.m7a_c00040{transform:matrix(0.191285,0.004973,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191285,0.004973,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191285,0.004973,-0.006498,0.249916,0,0);}
.md5_c00040{transform:matrix(0.191399,0.012082,-0.015750,0.249503,0,0);-ms-transform:matrix(0.191399,0.012082,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.191399,0.012082,-0.015750,0.249503,0,0);}
.m8d_c00040{transform:matrix(0.191440,0.004977,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191440,0.004977,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191440,0.004977,-0.006498,0.249916,0,0);}
.m61_c00040{transform:matrix(0.191600,0.004982,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191600,0.004982,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191600,0.004982,-0.006498,0.249916,0,0);}
.me_c00040{transform:matrix(0.191950,0.005375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191950,0.005375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191950,0.005375,-0.006997,0.249902,0,0);}
.mf2_c00040{transform:matrix(0.192030,0.010380,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192030,0.010380,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192030,0.010380,-0.013494,0.249636,0,0);}
.m8a_c00040{transform:matrix(0.192340,0.005001,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192340,0.005001,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192340,0.005001,-0.006498,0.249916,0,0);}
.m3d_c00040{transform:matrix(0.192809,0.005399,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192809,0.005399,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192809,0.005399,-0.006997,0.249902,0,0);}
.m9f_c00040{transform:matrix(0.192965,0.005017,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192965,0.005017,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192965,0.005017,-0.006498,0.249916,0,0);}
.m6e_c00040{transform:matrix(0.192995,0.005018,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192995,0.005018,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192995,0.005018,-0.006498,0.249916,0,0);}
.m24_c00040{transform:matrix(0.193589,0.005420,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193589,0.005420,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193589,0.005420,-0.006997,0.249902,0,0);}
.m81_c00040{transform:matrix(0.193635,0.005034,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193635,0.005034,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193635,0.005034,-0.006498,0.249916,0,0);}
.m56_c00040{transform:matrix(0.194049,0.005045,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194049,0.005045,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194049,0.005045,-0.006498,0.249916,0,0);}
.me8_c00040{transform:matrix(0.194586,0.010518,-0.013494,0.249636,0,0);-ms-transform:matrix(0.194586,0.010518,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.194586,0.010518,-0.013494,0.249636,0,0);}
.mc1_c00040{transform:matrix(0.194734,0.005063,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194734,0.005063,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194734,0.005063,-0.006498,0.249916,0,0);}
.m70_c00040{transform:matrix(0.194989,0.005070,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194989,0.005070,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194989,0.005070,-0.006498,0.249916,0,0);}
.mdf_c00040{transform:matrix(0.195496,0.012341,-0.015750,0.249503,0,0);-ms-transform:matrix(0.195496,0.012341,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.195496,0.012341,-0.015750,0.249503,0,0);}
.m30_c00040{transform:matrix(0.196243,0.005495,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196243,0.005495,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196243,0.005495,-0.006997,0.249902,0,0);}
.m7b_c00040{transform:matrix(0.196619,0.005112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196619,0.005112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196619,0.005112,-0.006498,0.249916,0,0);}
.m14_c00040{transform:matrix(0.197138,0.005520,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197138,0.005520,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197138,0.005520,-0.006997,0.249902,0,0);}
.m5b_c00040{transform:matrix(0.198143,0.005152,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198143,0.005152,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198143,0.005152,-0.006498,0.249916,0,0);}
.m95_c00040{transform:matrix(0.198523,0.005162,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198523,0.005162,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198523,0.005162,-0.006498,0.249916,0,0);}
.m7c_c00040{transform:matrix(0.199213,0.005180,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199213,0.005180,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199213,0.005180,-0.006498,0.249916,0,0);}
.m72_c00040{transform:matrix(0.199323,0.005182,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199323,0.005182,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199323,0.005182,-0.006498,0.249916,0,0);}
.mb0_c00040{transform:matrix(0.199937,0.005198,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199937,0.005198,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199937,0.005198,-0.006498,0.249916,0,0);}
.m4b_c00040{transform:matrix(0.200267,0.005207,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200267,0.005207,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200267,0.005207,-0.006498,0.249916,0,0);}
.mad_c00040{transform:matrix(0.200477,0.005212,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200477,0.005212,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200477,0.005212,-0.006498,0.249916,0,0);}
.m33_c00040{transform:matrix(0.200871,0.005624,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200871,0.005624,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200871,0.005624,-0.006997,0.249902,0,0);}
.mc7_c00040{transform:matrix(0.201579,0.007668,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201579,0.007668,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201579,0.007668,-0.009503,0.249819,0,0);}
.mcd_c00040{transform:matrix(0.202703,0.007710,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202703,0.007710,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202703,0.007710,-0.009503,0.249819,0,0);}
.m98_c00040{transform:matrix(0.202951,0.005277,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202951,0.005277,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202951,0.005277,-0.006498,0.249916,0,0);}
.md6_c00040{transform:matrix(0.203001,0.012815,-0.015750,0.249503,0,0);-ms-transform:matrix(0.203001,0.012815,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.203001,0.012815,-0.015750,0.249503,0,0);}
.m3c_c00040{transform:matrix(0.203005,0.005684,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203005,0.005684,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203005,0.005684,-0.006997,0.249902,0,0);}
.m25_c00040{transform:matrix(0.203085,0.005686,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203085,0.005686,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203085,0.005686,-0.006997,0.249902,0,0);}
.m47_c00040{transform:matrix(0.203475,0.005697,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203475,0.005697,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203475,0.005697,-0.006997,0.249902,0,0);}
.m35_c00040{transform:matrix(0.203835,0.005707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203835,0.005707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203835,0.005707,-0.006997,0.249902,0,0);}
.mf3_c00040{transform:matrix(0.204591,0.011059,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204591,0.011059,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204591,0.011059,-0.013494,0.249636,0,0);}
.mb1_c00040{transform:matrix(0.204851,0.005326,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204851,0.005326,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204851,0.005326,-0.006498,0.249916,0,0);}
.mbc_c00040{transform:matrix(0.204911,0.005328,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204911,0.005328,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204911,0.005328,-0.006498,0.249916,0,0);}
.m28_c00040{transform:matrix(0.205070,0.005742,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205070,0.005742,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205070,0.005742,-0.006997,0.249902,0,0);}
.m76_c00040{transform:matrix(0.205071,0.005332,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205071,0.005332,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205071,0.005332,-0.006498,0.249916,0,0);}
.mbb_c00040{transform:matrix(0.205336,0.005339,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205336,0.005339,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205336,0.005339,-0.006498,0.249916,0,0);}
.mac_c00040{transform:matrix(0.205496,0.005343,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205496,0.005343,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205496,0.005343,-0.006498,0.249916,0,0);}
.m8c_c00040{transform:matrix(0.205660,0.005347,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205660,0.005347,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205660,0.005347,-0.006498,0.249916,0,0);}
.mf5_c00040{transform:matrix(0.205830,0.011126,-0.013494,0.249636,0,0);-ms-transform:matrix(0.205830,0.011126,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.205830,0.011126,-0.013494,0.249636,0,0);}
.mbe_c00040{transform:matrix(0.205985,0.005356,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205985,0.005356,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205985,0.005356,-0.006498,0.249916,0,0);}
.m27_c00040{transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);}
.m96_c00040{transform:matrix(0.206160,0.005360,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206160,0.005360,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206160,0.005360,-0.006498,0.249916,0,0);}
.m90_c00040{transform:matrix(0.206350,0.005365,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206350,0.005365,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206350,0.005365,-0.006498,0.249916,0,0);}
.m94_c00040{transform:matrix(0.206355,0.005365,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206355,0.005365,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206355,0.005365,-0.006498,0.249916,0,0);}
.m3a_c00040{transform:matrix(0.206474,0.005781,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206474,0.005781,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206474,0.005781,-0.006997,0.249902,0,0);}
.md_c00040{transform:matrix(0.207269,0.005804,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207269,0.005804,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207269,0.005804,-0.006997,0.249902,0,0);}
.md7_c00040{transform:matrix(0.207352,0.013089,-0.015750,0.249503,0,0);-ms-transform:matrix(0.207352,0.013089,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.207352,0.013089,-0.015750,0.249503,0,0);}
.mca_c00040{transform:matrix(0.208464,0.007930,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208464,0.007930,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208464,0.007930,-0.009503,0.249819,0,0);}
.mea_c00040{transform:matrix(0.208675,0.011280,-0.013494,0.249636,0,0);-ms-transform:matrix(0.208675,0.011280,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.208675,0.011280,-0.013494,0.249636,0,0);}
.mbd_c00040{transform:matrix(0.208734,0.005427,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208734,0.005427,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208734,0.005427,-0.006498,0.249916,0,0);}
.m99_c00040{transform:matrix(0.209109,0.005437,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209109,0.005437,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209109,0.005437,-0.006498,0.249916,0,0);}
.m9c_c00040{transform:matrix(0.209739,0.005453,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209739,0.005453,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209739,0.005453,-0.006498,0.249916,0,0);}
.m66_c00040{transform:matrix(0.209859,0.005456,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209859,0.005456,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209859,0.005456,-0.006498,0.249916,0,0);}
.m52_c00040{transform:matrix(0.209949,0.005459,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209949,0.005459,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209949,0.005459,-0.006498,0.249916,0,0);}
.mf1_c00040{transform:matrix(0.210258,0.011365,-0.013494,0.249636,0,0);-ms-transform:matrix(0.210258,0.011365,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.210258,0.011365,-0.013494,0.249636,0,0);}
.m4f_c00040{transform:matrix(0.210269,0.005467,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210269,0.005467,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210269,0.005467,-0.006498,0.249916,0,0);}
.m5c_c00040{transform:matrix(0.210864,0.005482,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210864,0.005482,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210864,0.005482,-0.006498,0.249916,0,0);}
.m3e_c00040{transform:matrix(0.211612,0.005925,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211612,0.005925,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211612,0.005925,-0.006997,0.249902,0,0);}
.m34_c00040{transform:matrix(0.211727,0.005928,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211727,0.005928,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211727,0.005928,-0.006997,0.249902,0,0);}
.m50_c00040{transform:matrix(0.211793,0.005507,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211793,0.005507,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211793,0.005507,-0.006498,0.249916,0,0);}
.m79_c00040{transform:matrix(0.212163,0.005516,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212163,0.005516,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212163,0.005516,-0.006498,0.249916,0,0);}
.md1_c00040{transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);}
.m67_c00040{transform:matrix(0.214812,0.005585,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214812,0.005585,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214812,0.005585,-0.006498,0.249916,0,0);}
.m15_c00040{transform:matrix(0.215086,0.006022,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215086,0.006022,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215086,0.006022,-0.006997,0.249902,0,0);}
.meb_c00040{transform:matrix(0.215091,0.011627,-0.013494,0.249636,0,0);-ms-transform:matrix(0.215091,0.011627,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.215091,0.011627,-0.013494,0.249636,0,0);}
.m26_c00040{transform:matrix(0.215251,0.006027,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215251,0.006027,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215251,0.006027,-0.006997,0.249902,0,0);}
.m58_c00040{transform:matrix(0.216267,0.005623,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216267,0.005623,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216267,0.005623,-0.006498,0.249916,0,0);}
.mc9_c00040{transform:matrix(0.216314,0.008228,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216314,0.008228,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216314,0.008228,-0.009503,0.249819,0,0);}
.m6_c00040{transform:matrix(0.216385,0.006059,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216385,0.006059,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216385,0.006059,-0.006997,0.249902,0,0);}
.m7f_c00040{transform:matrix(0.217287,0.005649,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217287,0.005649,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217287,0.005649,-0.006498,0.249916,0,0);}
.m9_c00040{transform:matrix(0.217585,0.006092,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217585,0.006092,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217585,0.006092,-0.006997,0.249902,0,0);}
.m42_c00040{transform:matrix(0.217985,0.006104,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217985,0.006104,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217985,0.006104,-0.006997,0.249902,0,0);}
.m43_c00040{transform:matrix(0.218025,0.006105,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218025,0.006105,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218025,0.006105,-0.006997,0.249902,0,0);}
.m2f_c00040{transform:matrix(0.218719,0.006124,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218719,0.006124,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218719,0.006124,-0.006997,0.249902,0,0);}
.m37_c00040{transform:matrix(0.218919,0.006130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218919,0.006130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218919,0.006130,-0.006997,0.249902,0,0);}
.m5a_c00040{transform:matrix(0.219376,0.005704,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219376,0.005704,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219376,0.005704,-0.006498,0.249916,0,0);}
.m3f_c00040{transform:matrix(0.219719,0.006152,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219719,0.006152,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219719,0.006152,-0.006997,0.249902,0,0);}
.mc8_c00040{transform:matrix(0.220516,0.008388,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220516,0.008388,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220516,0.008388,-0.009503,0.249819,0,0);}
.m74_c00040{transform:matrix(0.221025,0.005747,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221025,0.005747,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221025,0.005747,-0.006498,0.249916,0,0);}
.mb7_c00040{transform:matrix(0.221905,0.005770,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221905,0.005770,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221905,0.005770,-0.006498,0.249916,0,0);}
.md0_c00040{transform:matrix(0.221984,0.008444,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221984,0.008444,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221984,0.008444,-0.009503,0.249819,0,0);}
.mee_c00040{transform:matrix(0.222915,0.012049,-0.013494,0.249636,0,0);-ms-transform:matrix(0.222915,0.012049,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.222915,0.012049,-0.013494,0.249636,0,0);}
.mc2_c00040{transform:matrix(0.223434,0.005809,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223434,0.005809,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223434,0.005809,-0.006498,0.249916,0,0);}
.me3_c00040{transform:matrix(0.224403,0.014166,-0.015750,0.249503,0,0);-ms-transform:matrix(0.224403,0.014166,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.224403,0.014166,-0.015750,0.249503,0,0);}
.mcf_c00040{transform:matrix(0.224523,0.008540,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224523,0.008540,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224523,0.008540,-0.009503,0.249819,0,0);}
.m68_c00040{transform:matrix(0.224809,0.005845,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224809,0.005845,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224809,0.005845,-0.006498,0.249916,0,0);}
.m49_c00040{transform:matrix(0.225082,0.006302,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225082,0.006302,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225082,0.006302,-0.006997,0.249902,0,0);}
.m32_c00040{transform:matrix(0.226771,0.006350,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226771,0.006350,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226771,0.006350,-0.006997,0.249902,0,0);}
.mb_c00040{transform:matrix(0.226781,0.006350,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226781,0.006350,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226781,0.006350,-0.006997,0.249902,0,0);}
.mc4_c00040{transform:matrix(0.228633,0.005944,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228633,0.005944,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228633,0.005944,-0.006498,0.249916,0,0);}
.mce_c00040{transform:matrix(0.229084,0.008714,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229084,0.008714,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229084,0.008714,-0.009503,0.249819,0,0);}
.mc3_c00040{transform:matrix(0.229372,0.005964,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229372,0.005964,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229372,0.005964,-0.006498,0.249916,0,0);}
.med_c00040{transform:matrix(0.230289,0.012448,-0.013494,0.249636,0,0);-ms-transform:matrix(0.230289,0.012448,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.230289,0.012448,-0.013494,0.249636,0,0);}
.m6d_c00040{transform:matrix(0.231452,0.006018,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231452,0.006018,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231452,0.006018,-0.006498,0.249916,0,0);}
.m6a_c00040{transform:matrix(0.232296,0.006040,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232296,0.006040,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232296,0.006040,-0.006498,0.249916,0,0);}
.m92_c00040{transform:matrix(0.232336,0.006041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232336,0.006041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232336,0.006041,-0.006498,0.249916,0,0);}
.m6c_c00040{transform:matrix(0.232731,0.006051,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232731,0.006051,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232731,0.006051,-0.006498,0.249916,0,0);}
.m1b_c00040{transform:matrix(0.233084,0.006526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233084,0.006526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233084,0.006526,-0.006997,0.249902,0,0);}
.m41_c00040{transform:matrix(0.233973,0.006551,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233973,0.006551,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233973,0.006551,-0.006997,0.249902,0,0);}
.md4_c00040{transform:matrix(0.234553,0.014806,-0.015750,0.249503,0,0);-ms-transform:matrix(0.234553,0.014806,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.234553,0.014806,-0.015750,0.249503,0,0);}
.mc0_c00040{transform:matrix(0.234671,0.006101,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234671,0.006101,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234671,0.006101,-0.006498,0.249916,0,0);}
.mc6_c00040{transform:matrix(0.236324,0.008989,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236324,0.008989,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236324,0.008989,-0.009503,0.249819,0,0);}
.ma_c00040{transform:matrix(0.236592,0.006625,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236592,0.006625,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236592,0.006625,-0.006997,0.249902,0,0);}
.me5_c00040{transform:matrix(0.236913,0.014955,-0.015750,0.249503,0,0);-ms-transform:matrix(0.236913,0.014955,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.236913,0.014955,-0.015750,0.249503,0,0);}
.mc5_c00040{transform:matrix(0.240164,0.006244,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240164,0.006244,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240164,0.006244,-0.006498,0.249916,0,0);}
.m21_c00040{transform:matrix(0.240486,0.006734,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240486,0.006734,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240486,0.006734,-0.006997,0.249902,0,0);}
.m51_c00040{transform:matrix(0.243588,0.006333,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243588,0.006333,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243588,0.006333,-0.006498,0.249916,0,0);}
.m83_c00040{transform:matrix(0.244372,0.006354,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244372,0.006354,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244372,0.006354,-0.006498,0.249916,0,0);}
.m69_c00040{transform:matrix(0.252105,0.006555,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252105,0.006555,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252105,0.006555,-0.006498,0.249916,0,0);}
.m91_c00040{transform:matrix(0.266385,0.006926,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266385,0.006926,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266385,0.006926,-0.006498,0.249916,0,0);}
.m48_c00040{transform:matrix(0.282104,0.007899,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282104,0.007899,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282104,0.007899,-0.006997,0.249902,0,0);}
.me4_c00040{transform:matrix(0.283855,0.017919,-0.015750,0.249503,0,0);-ms-transform:matrix(0.283855,0.017919,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.283855,0.017919,-0.015750,0.249503,0,0);}
.m38_c00040{transform:matrix(0.284578,0.007968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284578,0.007968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284578,0.007968,-0.006997,0.249902,0,0);}
.m17_c00040{transform:matrix(0.289427,0.008104,-0.006997,0.249902,0,0);-ms-transform:matrix(0.289427,0.008104,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.289427,0.008104,-0.006997,0.249902,0,0);}
.m22_c00040{transform:matrix(0.366561,0.010264,-0.006997,0.249902,0,0);-ms-transform:matrix(0.366561,0.010264,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.366561,0.010264,-0.006997,0.249902,0,0);}
.mc_c00040{transform:matrix(0.532361,0.014906,-0.006997,0.249902,0,0);-ms-transform:matrix(0.532361,0.014906,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.532361,0.014906,-0.006997,0.249902,0,0);}
.m1_c00040{transform:matrix(0.588005,0.016464,-0.006997,0.249902,0,0);-ms-transform:matrix(0.588005,0.016464,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.588005,0.016464,-0.006997,0.249902,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:0.000000px;}
.fc0_c00040{color:transparent;}
.fs19_c00040{font-size:47.271659px;}
.fs13_c00040{font-size:55.668807px;}
.fs17_c00040{font-size:57.749220px;}
.fsc_c00040{font-size:59.870226px;}
.fs14_c00040{font-size:61.932806px;}
.fs16_c00040{font-size:61.949164px;}
.fsd_c00040{font-size:61.970936px;}
.fsf_c00040{font-size:63.021290px;}
.fs2_c00040{font-size:63.024691px;}
.fs15_c00040{font-size:64.032224px;}
.fs11_c00040{font-size:64.071645px;}
.fs6_c00040{font-size:64.075103px;}
.fsa_c00040{font-size:65.122000px;}
.fs8_c00040{font-size:65.125514px;}
.fs12_c00040{font-size:66.172355px;}
.fs7_c00040{font-size:66.175926px;}
.fs18_c00040{font-size:66.180323px;}
.fsb_c00040{font-size:67.222710px;}
.fs5_c00040{font-size:67.226337px;}
.fse_c00040{font-size:68.273065px;}
.fs1a_c00040{font-size:68.281285px;}
.fs9_c00040{font-size:69.323419px;}
.fs3_c00040{font-size:69.327160px;}
.fs1_c00040{font-size:71.427983px;}
.fs10_c00040{font-size:72.474484px;}
.fs0_c00040{font-size:73.528806px;}
.fs4_c00040{font-size:74.579218px;}
.y0_c00040{bottom:0.000000px;}
.yf7_c00040{bottom:22.556173px;}
.yf6_c00040{bottom:26.306149px;}
.yf5_c00040{bottom:30.784639px;}
.yf4_c00040{bottom:32.197846px;}
.yf0_c00040{bottom:32.763267px;}
.yf3_c00040{bottom:35.120286px;}
.yef_c00040{bottom:35.672342px;}
.yf2_c00040{bottom:36.791964px;}
.yf1_c00040{bottom:37.572601px;}
.yee_c00040{bottom:40.626382px;}
.yec_c00040{bottom:40.820175px;}
.yeb_c00040{bottom:41.801085px;}
.yed_c00040{bottom:41.867910px;}
.yea_c00040{bottom:45.165744px;}
.ye9_c00040{bottom:46.518525px;}
.ye8_c00040{bottom:47.002500px;}
.ye7_c00040{bottom:48.578701px;}
.ye6_c00040{bottom:54.161664px;}
.ye3_c00040{bottom:54.965587px;}
.ye5_c00040{bottom:54.983547px;}
.ye2_c00040{bottom:56.290728px;}
.ye4_c00040{bottom:56.447256px;}
.ye1_c00040{bottom:59.731315px;}
.ye0_c00040{bottom:60.850557px;}
.ydf_c00040{bottom:62.048001px;}
.yde_c00040{bottom:63.036333px;}
.ydd_c00040{bottom:64.530114px;}
.ydc_c00040{bottom:65.080208px;}
.ydb_c00040{bottom:75.283227px;}
.yda_c00040{bottom:77.023255px;}
.yd9_c00040{bottom:78.459939px;}
.yd8_c00040{bottom:82.066437px;}
.yd7_c00040{bottom:83.832075px;}
.yd6_c00040{bottom:87.053297px;}
.yd5_c00040{bottom:88.284254px;}
.yd4_c00040{bottom:89.941500px;}
.yd3_c00040{bottom:92.972386px;}
.yd2_c00040{bottom:93.781705px;}
.yd1_c00040{bottom:97.089469px;}
.yd0_c00040{bottom:100.313057px;}
.ycf_c00040{bottom:101.540622px;}
.yce_c00040{bottom:102.929953px;}
.ycd_c00040{bottom:104.697426px;}
.ycc_c00040{bottom:108.312770px;}
.ycb_c00040{bottom:108.828474px;}
.yca_c00040{bottom:111.023715px;}
.yc9_c00040{bottom:111.762264px;}
.yc8_c00040{bottom:113.418000px;}
.yc7_c00040{bottom:126.649236px;}
.yc6_c00040{bottom:128.190660px;}
.yc5_c00040{bottom:130.593123px;}
.yc4_c00040{bottom:144.418560px;}
.yc3_c00040{bottom:145.393668px;}
.yc2_c00040{bottom:147.679419px;}
.yc1_c00040{bottom:148.491252px;}
.yc0_c00040{bottom:150.240147px;}
.ybf_c00040{bottom:152.321283px;}
.ybe_c00040{bottom:153.618945px;}
.ybd_c00040{bottom:156.286464px;}
.ybc_c00040{bottom:161.046396px;}
.ybb_c00040{bottom:162.058725px;}
.yba_c00040{bottom:163.026714px;}
.yb9_c00040{bottom:165.158829px;}
.yb8_c00040{bottom:166.082712px;}
.yb7_c00040{bottom:166.658487px;}
.yb6_c00040{bottom:167.737872px;}
.yb5_c00040{bottom:169.223100px;}
.yb4_c00040{bottom:179.419092px;}
.yb3_c00040{bottom:180.560859px;}
.yb2_c00040{bottom:182.858133px;}
.yb1_c00040{bottom:183.797226px;}
.yb0_c00040{bottom:185.326020px;}
.yaf_c00040{bottom:190.096716px;}
.yae_c00040{bottom:190.791252px;}
.yad_c00040{bottom:194.353176px;}
.yac_c00040{bottom:195.710349px;}
.yab_c00040{bottom:197.438853px;}
.yaa_c00040{bottom:198.370521px;}
.ya9_c00040{bottom:199.582833px;}
.ya8_c00040{bottom:200.480481px;}
.ya7_c00040{bottom:202.413399px;}
.ya6_c00040{bottom:203.727225px;}
.ya5_c00040{bottom:204.607347px;}
.ya4_c00040{bottom:213.776493px;}
.ya3_c00040{bottom:214.670286px;}
.ya2_c00040{bottom:217.808853px;}
.ya1_c00040{bottom:220.738980px;}
.ya0_c00040{bottom:221.468481px;}
.y9f_c00040{bottom:222.725202px;}
.y9e_c00040{bottom:223.246146px;}
.y9d_c00040{bottom:226.492110px;}
.y9c_c00040{bottom:230.589198px;}
.y9b_c00040{bottom:231.936720px;}
.y9a_c00040{bottom:234.838500px;}
.y99_c00040{bottom:236.189940px;}
.y98_c00040{bottom:237.079023px;}
.y97_c00040{bottom:239.664930px;}
.y96_c00040{bottom:240.552492px;}
.y95_c00040{bottom:241.729164px;}
.y94_c00040{bottom:242.696430px;}
.y93_c00040{bottom:243.231708px;}
.y92_c00040{bottom:250.898658px;}
.y91_c00040{bottom:253.639455px;}
.y90_c00040{bottom:254.470467px;}
.y8f_c00040{bottom:257.482005px;}
.y8e_c00040{bottom:260.765862px;}
.y8d_c00040{bottom:261.598122px;}
.y8c_c00040{bottom:269.495676px;}
.y8b_c00040{bottom:270.479979px;}
.y8a_c00040{bottom:272.061912px;}
.y89_c00040{bottom:273.056994px;}
.y88_c00040{bottom:277.155459px;}
.y87_c00040{bottom:278.673654px;}
.y86_c00040{bottom:279.432381px;}
.y85_c00040{bottom:285.538449px;}
.y84_c00040{bottom:288.510087px;}
.y83_c00040{bottom:289.266150px;}
.y82_c00040{bottom:291.345624px;}
.y81_c00040{bottom:292.118919px;}
.y80_c00040{bottom:294.126600px;}
.y7f_c00040{bottom:294.918627px;}
.y7e_c00040{bottom:296.441727px;}
.y7d_c00040{bottom:303.195264px;}
.y7c_c00040{bottom:305.042928px;}
.y7b_c00040{bottom:305.967072px;}
.y7a_c00040{bottom:307.634379px;}
.y79_c00040{bottom:308.896023px;}
.y78_c00040{bottom:310.161819px;}
.y77_c00040{bottom:313.869213px;}
.y76_c00040{bottom:315.077859px;}
.y75_c00040{bottom:321.029100px;}
.y74_c00040{bottom:321.756903px;}
.y73_c00040{bottom:324.813831px;}
.y72_c00040{bottom:326.464707px;}
.y71_c00040{bottom:327.880779px;}
.y70_c00040{bottom:329.938296px;}
.y6f_c00040{bottom:331.278498px;}
.y6e_c00040{bottom:339.529026px;}
.y6d_c00040{bottom:341.894853px;}
.y6c_c00040{bottom:342.638856px;}
.y6b_c00040{bottom:344.793255px;}
.y6a_c00040{bottom:345.310839px;}
.y69_c00040{bottom:347.595624px;}
.y68_c00040{bottom:348.295236px;}
.y67_c00040{bottom:355.924452px;}
.y66_c00040{bottom:356.760942px;}
.y65_c00040{bottom:358.789467px;}
.y64_c00040{bottom:359.660835px;}
.y63_c00040{bottom:360.246003px;}
.y62_c00040{bottom:361.449561px;}
.y61_c00040{bottom:362.991957px;}
.y60_c00040{bottom:363.651795px;}
.y5f_c00040{bottom:364.500879px;}
.y5e_c00040{bottom:371.751735px;}
.y5d_c00040{bottom:375.472461px;}
.y5c_c00040{bottom:378.252138px;}
.y5b_c00040{bottom:380.949513px;}
.y5a_c00040{bottom:382.868376px;}
.y59_c00040{bottom:389.486106px;}
.y58_c00040{bottom:391.681983px;}
.y57_c00040{bottom:392.748495px;}
.y56_c00040{bottom:394.530045px;}
.y55_c00040{bottom:395.148621px;}
.y54_c00040{bottom:396.405639px;}
.y53_c00040{bottom:399.066861px;}
.y52_c00040{bottom:406.899684px;}
.y51_c00040{bottom:407.317452px;}
.y50_c00040{bottom:408.689706px;}
.y4f_c00040{bottom:409.223226px;}
.y4e_c00040{bottom:410.963952px;}
.y4d_c00040{bottom:411.551604px;}
.y4c_c00040{bottom:413.507961px;}
.y4b_c00040{bottom:414.190500px;}
.y4a_c00040{bottom:424.720032px;}
.y49_c00040{bottom:425.083698px;}
.y48_c00040{bottom:426.077628px;}
.y47_c00040{bottom:426.358692px;}
.y46_c00040{bottom:427.037112px;}
.y45_c00040{bottom:427.355994px;}
.y44_c00040{bottom:427.990944px;}
.y43_c00040{bottom:428.972412px;}
.y42_c00040{bottom:442.052184px;}
.y41_c00040{bottom:444.091458px;}
.y40_c00040{bottom:444.514638px;}
.y3f_c00040{bottom:446.026818px;}
.y3e_c00040{bottom:446.947896px;}
.y3d_c00040{bottom:448.098354px;}
.y3c_c00040{bottom:448.756248px;}
.y3b_c00040{bottom:449.189412px;}
.y3a_c00040{bottom:450.437988px;}
.y39_c00040{bottom:451.404996px;}
.y38_c00040{bottom:460.741440px;}
.y37_c00040{bottom:461.326926px;}
.y36_c00040{bottom:462.233346px;}
.y35_c00040{bottom:464.280732px;}
.y34_c00040{bottom:464.917002px;}
.y33_c00040{bottom:466.324128px;}
.y32_c00040{bottom:467.161716px;}
.y31_c00040{bottom:468.419946px;}
.y30_c00040{bottom:478.176888px;}
.y2f_c00040{bottom:479.700000px;}
.y2e_c00040{bottom:480.761112px;}
.y2d_c00040{bottom:483.321366px;}
.y2c_c00040{bottom:483.946368px;}
.y2b_c00040{bottom:484.554288px;}
.y2a_c00040{bottom:485.704938px;}
.y29_c00040{bottom:495.244536px;}
.y28_c00040{bottom:495.737916px;}
.y27_c00040{bottom:496.966962px;}
.y26_c00040{bottom:497.986854px;}
.y25_c00040{bottom:499.613604px;}
.y24_c00040{bottom:500.132166px;}
.y23_c00040{bottom:501.223530px;}
.y22_c00040{bottom:501.669078px;}
.y21_c00040{bottom:512.511684px;}
.y20_c00040{bottom:512.887014px;}
.y1f_c00040{bottom:513.888774px;}
.y1e_c00040{bottom:514.500756px;}
.y1d_c00040{bottom:515.329860px;}
.y1c_c00040{bottom:515.855052px;}
.y1b_c00040{bottom:517.680330px;}
.y1a_c00040{bottom:518.267250px;}
.y19_c00040{bottom:518.802522px;}
.y18_c00040{bottom:520.281858px;}
.y17_c00040{bottom:529.378590px;}
.y16_c00040{bottom:529.754634px;}
.y15_c00040{bottom:531.534300px;}
.y14_c00040{bottom:532.032480px;}
.y13_c00040{bottom:534.215430px;}
.y12_c00040{bottom:534.833466px;}
.y11_c00040{bottom:535.381356px;}
.y10_c00040{bottom:537.025572px;}
.yf_c00040{bottom:547.488696px;}
.ye_c00040{bottom:549.162966px;}
.yd_c00040{bottom:550.344864px;}
.yc_c00040{bottom:552.114198px;}
.yb_c00040{bottom:552.482304px;}
.ya_c00040{bottom:554.032548px;}
.y9_c00040{bottom:555.118584px;}
.y8_c00040{bottom:565.773546px;}
.y7_c00040{bottom:566.954076px;}
.y6_c00040{bottom:567.407166px;}
.y5_c00040{bottom:569.102340px;}
.y4_c00040{bottom:570.811302px;}
.y3_c00040{bottom:571.593228px;}
.y2_c00040{bottom:573.799296px;}
.y1_c00040{bottom:577.542000px;}
.h1b_c00040{height:47.271659px;}
.h15_c00040{height:55.668807px;}
.h19_c00040{height:57.749220px;}
.he_c00040{height:59.870226px;}
.h16_c00040{height:61.932806px;}
.h18_c00040{height:61.949164px;}
.hf_c00040{height:61.970936px;}
.h11_c00040{height:63.021290px;}
.h4_c00040{height:63.024691px;}
.h17_c00040{height:64.032224px;}
.h13_c00040{height:64.071645px;}
.h8_c00040{height:64.075103px;}
.hc_c00040{height:65.122000px;}
.ha_c00040{height:65.125514px;}
.h14_c00040{height:66.172355px;}
.h9_c00040{height:66.175926px;}
.h1a_c00040{height:66.180323px;}
.hd_c00040{height:67.222710px;}
.h7_c00040{height:67.226337px;}
.h10_c00040{height:68.273065px;}
.h1c_c00040{height:68.281285px;}
.hb_c00040{height:69.323419px;}
.h5_c00040{height:69.327160px;}
.h3_c00040{height:71.427983px;}
.h12_c00040{height:72.474484px;}
.h2_c00040{height:73.528806px;}
.h6_c00040{height:74.579218px;}
.h0_c00040{height:639.600000px;}
.h1_c00040{height:639.750000px;}
.w1_c00040{width:363.750000px;}
.w0_c00040{width:363.900000px;}
.x0_c00040{left:0.000000px;}
.x86_c00040{left:29.614167px;}
.x7f_c00040{left:31.046236px;}
.x6c_c00040{left:32.116275px;}
.x55_c00040{left:33.832608px;}
.x1d_c00040{left:35.241768px;}
.x3_c00040{left:36.711762px;}
.x5f_c00040{left:39.062985px;}
.x48_c00040{left:40.851480px;}
.x3a_c00040{left:45.237000px;}
.x8a_c00040{left:46.618725px;}
.x3e_c00040{left:50.699241px;}
.x63_c00040{left:51.818100px;}
.x1e_c00040{left:53.084280px;}
.x4e_c00040{left:55.489629px;}
.x72_c00040{left:58.865358px;}
.x56_c00040{left:60.690348px;}
.x30_c00040{left:64.423782px;}
.x49_c00040{left:66.580800px;}
.x67_c00040{left:67.957383px;}
.x50_c00040{left:69.668427px;}
.x4_c00040{left:70.696008px;}
.x25_c00040{left:74.160918px;}
.x2a_c00040{left:75.499356px;}
.x9_c00040{left:77.937744px;}
.x44_c00040{left:84.649443px;}
.x14_c00040{left:87.013686px;}
.x60_c00040{left:88.534245px;}
.x5b_c00040{left:91.048395px;}
.x80_c00040{left:92.281542px;}
.x26_c00040{left:94.424784px;}
.x1f_c00040{left:96.725934px;}
.xf_c00040{left:99.296652px;}
.x6d_c00040{left:101.192601px;}
.x2b_c00040{left:102.518088px;}
.x15_c00040{left:105.487182px;}
.x76_c00040{left:109.892175px;}
.x6e_c00040{left:112.280556px;}
.x78_c00040{left:113.333502px;}
.x27_c00040{left:115.245108px;}
.x20_c00040{left:117.444156px;}
.x10_c00040{left:120.365328px;}
.x4f_c00040{left:122.698167px;}
.x51_c00040{left:123.806040px;}
.x16_c00040{left:125.751636px;}
.x4a_c00040{left:133.327671px;}
.x31_c00040{left:135.329370px;}
.xa_c00040{left:137.539062px;}
.x6f_c00040{left:139.024470px;}
.x5c_c00040{left:141.248643px;}
.x57_c00040{left:143.068671px;}
.x5_c00040{left:144.972882px;}
.x3b_c00040{left:146.733000px;}
.x2c_c00040{left:147.893766px;}
.xb_c00040{left:151.704360px;}
.x45_c00040{left:153.813582px;}
.x36_c00040{left:156.658326px;}
.x87_c00040{left:159.393486px;}
.x52_c00040{left:161.066418px;}
.x3f_c00040{left:162.663072px;}
.x81_c00040{left:166.553913px;}
.x2d_c00040{left:168.419544px;}
.x32_c00040{left:170.197998px;}
.x58_c00040{left:171.200787px;}
.x89_c00040{left:174.012812px;}
.x68_c00040{left:176.088108px;}
.x1_c00040{left:177.514500px;}
.x40_c00040{left:180.334938px;}
.x21_c00040{left:182.512116px;}
.x73_c00040{left:184.434504px;}
.x7c_c00040{left:186.369000px;}
.x4b_c00040{left:187.518804px;}
.x17_c00040{left:188.688372px;}
.x64_c00040{left:191.706531px;}
.x69_c00040{left:196.774482px;}
.x33_c00040{left:198.107592px;}
.x59_c00040{left:199.230942px;}
.x28_c00040{left:200.570820px;}
.x85_c00040{left:201.687092px;}
.x8b_c00040{left:202.988496px;}
.x53_c00040{left:204.528885px;}
.x18_c00040{left:206.801868px;}
.x79_c00040{left:208.040874px;}
.x65_c00040{left:210.159405px;}
.x5d_c00040{left:212.579208px;}
.x4c_c00040{left:213.932007px;}
.x37_c00040{left:216.606444px;}
.x6_c00040{left:218.703714px;}
.xc_c00040{left:219.773682px;}
.x74_c00040{left:221.189835px;}
.x22_c00040{left:223.279518px;}
.x46_c00040{left:225.104019px;}
.x11_c00040{left:228.120876px;}
.x7d_c00040{left:229.897428px;}
.x41_c00040{left:231.248043px;}
.x61_c00040{left:233.688858px;}
.x19_c00040{left:235.394070px;}
.x7_c00040{left:238.423986px;}
.x88_c00040{left:239.786513px;}
.x77_c00040{left:241.488498px;}
.x34_c00040{left:243.911166px;}
.x83_c00040{left:245.982897px;}
.x12_c00040{left:247.306968px;}
.x75_c00040{left:249.402687px;}
.x62_c00040{left:255.093243px;}
.x1a_c00040{left:256.499982px;}
.x8c_c00040{left:258.906279px;}
.x42_c00040{left:261.702906px;}
.x2e_c00040{left:263.726064px;}
.xd_c00040{left:265.254744px;}
.x7a_c00040{left:266.795700px;}
.x66_c00040{left:271.063836px;}
.x23_c00040{left:272.428134px;}
.x84_c00040{left:273.547158px;}
.x4d_c00040{left:275.383314px;}
.x82_c00040{left:277.188343px;}
.x38_c00040{left:278.749818px;}
.x2f_c00040{left:282.598968px;}
.x70_c00040{left:283.703073px;}
.x54_c00040{left:284.981808px;}
.x29_c00040{left:286.698990px;}
.x8_c00040{left:289.753668px;}
.x1b_c00040{left:291.044016px;}
.x24_c00040{left:292.139772px;}
.x6a_c00040{left:295.700802px;}
.x5a_c00040{left:297.859731px;}
.x39_c00040{left:301.441920px;}
.x71_c00040{left:302.723199px;}
.x1c_c00040{left:303.966138px;}
.x5e_c00040{left:305.783817px;}
.x7e_c00040{left:307.025223px;}
.x3c_c00040{left:309.585000px;}
.x2_c00040{left:311.182500px;}
.x13_c00040{left:315.745290px;}
.x35_c00040{left:318.506208px;}
.x47_c00040{left:320.522805px;}
.x7b_c00040{left:321.866853px;}
.x43_c00040{left:324.452742px;}
.x3d_c00040{left:325.653000px;}
.x6b_c00040{left:327.033957px;}
.xe_c00040{left:329.660856px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.fs19_c00040{font-size:42.019253pt;}
.fs13_c00040{font-size:49.483384pt;}
.fs17_c00040{font-size:51.332640pt;}
.fsc_c00040{font-size:53.217979pt;}
.fs14_c00040{font-size:55.051384pt;}
.fs16_c00040{font-size:55.065923pt;}
.fsd_c00040{font-size:55.085276pt;}
.fsf_c00040{font-size:56.018925pt;}
.fs2_c00040{font-size:56.021948pt;}
.fs15_c00040{font-size:56.917532pt;}
.fs11_c00040{font-size:56.952574pt;}
.fs6_c00040{font-size:56.955647pt;}
.fsa_c00040{font-size:57.886222pt;}
.fs8_c00040{font-size:57.889346pt;}
.fs12_c00040{font-size:58.819871pt;}
.fs7_c00040{font-size:58.823045pt;}
.fs18_c00040{font-size:58.826954pt;}
.fsb_c00040{font-size:59.753520pt;}
.fs5_c00040{font-size:59.756744pt;}
.fse_c00040{font-size:60.687169pt;}
.fs1a_c00040{font-size:60.694476pt;}
.fs9_c00040{font-size:61.620817pt;}
.fs3_c00040{font-size:61.624142pt;}
.fs1_c00040{font-size:63.491541pt;}
.fs10_c00040{font-size:64.421764pt;}
.fs0_c00040{font-size:65.358939pt;}
.fs4_c00040{font-size:66.292638pt;}
.y0_c00040{bottom:0.000000pt;}
.yf7_c00040{bottom:20.049932pt;}
.yf6_c00040{bottom:23.383244pt;}
.yf5_c00040{bottom:27.364124pt;}
.yf4_c00040{bottom:28.620308pt;}
.yf0_c00040{bottom:29.122904pt;}
.yf3_c00040{bottom:31.218032pt;}
.yef_c00040{bottom:31.708748pt;}
.yf2_c00040{bottom:32.703968pt;}
.yf1_c00040{bottom:33.397868pt;}
.yee_c00040{bottom:36.112340pt;}
.yec_c00040{bottom:36.284600pt;}
.yeb_c00040{bottom:37.156520pt;}
.yed_c00040{bottom:37.215920pt;}
.yea_c00040{bottom:40.147328pt;}
.ye9_c00040{bottom:41.349800pt;}
.ye8_c00040{bottom:41.780000pt;}
.ye7_c00040{bottom:43.181068pt;}
.ye6_c00040{bottom:48.143701pt;}
.ye3_c00040{bottom:48.858300pt;}
.ye5_c00040{bottom:48.874264pt;}
.ye2_c00040{bottom:50.036203pt;}
.ye4_c00040{bottom:50.175339pt;}
.ye1_c00040{bottom:53.094503pt;}
.ye0_c00040{bottom:54.089384pt;}
.ydf_c00040{bottom:55.153779pt;}
.yde_c00040{bottom:56.032296pt;}
.ydd_c00040{bottom:57.360101pt;}
.ydc_c00040{bottom:57.849073pt;}
.ydb_c00040{bottom:66.918424pt;}
.yda_c00040{bottom:68.465116pt;}
.yd9_c00040{bottom:69.742168pt;}
.yd8_c00040{bottom:72.947944pt;}
.yd7_c00040{bottom:74.517400pt;}
.yd6_c00040{bottom:77.380708pt;}
.yd5_c00040{bottom:78.474892pt;}
.yd4_c00040{bottom:79.948000pt;}
.yd3_c00040{bottom:82.642121pt;}
.yd2_c00040{bottom:83.361516pt;}
.yd1_c00040{bottom:86.301751pt;}
.yd0_c00040{bottom:89.167161pt;}
.ycf_c00040{bottom:90.258331pt;}
.yce_c00040{bottom:91.493292pt;}
.ycd_c00040{bottom:93.064379pt;}
.ycc_c00040{bottom:96.278017pt;}
.ycb_c00040{bottom:96.736421pt;}
.yca_c00040{bottom:98.687747pt;}
.yc9_c00040{bottom:99.344235pt;}
.yc8_c00040{bottom:100.816000pt;}
.yc7_c00040{bottom:112.577099pt;}
.yc6_c00040{bottom:113.947253pt;}
.yc5_c00040{bottom:116.082776pt;}
.yc4_c00040{bottom:128.372053pt;}
.yc3_c00040{bottom:129.238816pt;}
.yc2_c00040{bottom:131.270595pt;}
.yc1_c00040{bottom:131.992224pt;}
.yc0_c00040{bottom:133.546797pt;}
.ybf_c00040{bottom:135.396696pt;}
.ybe_c00040{bottom:136.550173pt;}
.ybd_c00040{bottom:138.921301pt;}
.ybc_c00040{bottom:143.152352pt;}
.ybb_c00040{bottom:144.052200pt;}
.yba_c00040{bottom:144.912635pt;}
.yb9_c00040{bottom:146.807848pt;}
.yb8_c00040{bottom:147.629077pt;}
.yb7_c00040{bottom:148.140877pt;}
.yb6_c00040{bottom:149.100331pt;}
.yb5_c00040{bottom:150.420533pt;}
.yb4_c00040{bottom:159.483637pt;}
.yb3_c00040{bottom:160.498541pt;}
.yb2_c00040{bottom:162.540563pt;}
.yb1_c00040{bottom:163.375312pt;}
.yb0_c00040{bottom:164.734240pt;}
.yaf_c00040{bottom:168.974859pt;}
.yae_c00040{bottom:169.592224pt;}
.yad_c00040{bottom:172.758379pt;}
.yac_c00040{bottom:173.964755pt;}
.yab_c00040{bottom:175.501203pt;}
.yaa_c00040{bottom:176.329352pt;}
.ya9_c00040{bottom:177.406963pt;}
.ya8_c00040{bottom:178.204872pt;}
.ya7_c00040{bottom:179.923021pt;}
.ya6_c00040{bottom:181.090867pt;}
.ya5_c00040{bottom:181.873197pt;}
.ya4_c00040{bottom:190.023549pt;}
.ya3_c00040{bottom:190.818032pt;}
.ya2_c00040{bottom:193.607869pt;}
.ya1_c00040{bottom:196.212427pt;}
.ya0_c00040{bottom:196.860872pt;}
.y9f_c00040{bottom:197.977957pt;}
.y9e_c00040{bottom:198.441019pt;}
.y9d_c00040{bottom:201.326320pt;}
.y9c_c00040{bottom:204.968176pt;}
.y9b_c00040{bottom:206.165973pt;}
.y9a_c00040{bottom:208.745333pt;}
.y99_c00040{bottom:209.946613pt;}
.y98_c00040{bottom:210.736909pt;}
.y97_c00040{bottom:213.035493pt;}
.y96_c00040{bottom:213.824437pt;}
.y95_c00040{bottom:214.870368pt;}
.y94_c00040{bottom:215.730160pt;}
.y93_c00040{bottom:216.205963pt;}
.y92_c00040{bottom:223.021029pt;}
.y91_c00040{bottom:225.457293pt;}
.y90_c00040{bottom:226.195971pt;}
.y8f_c00040{bottom:228.872893pt;}
.y8e_c00040{bottom:231.791877pt;}
.y8d_c00040{bottom:232.531664pt;}
.y8c_c00040{bottom:239.551712pt;}
.y8b_c00040{bottom:240.426648pt;}
.y8a_c00040{bottom:241.832811pt;}
.y89_c00040{bottom:242.717328pt;}
.y88_c00040{bottom:246.360408pt;}
.y87_c00040{bottom:247.709915pt;}
.y86_c00040{bottom:248.384339pt;}
.y85_c00040{bottom:253.811955pt;}
.y84_c00040{bottom:256.453411pt;}
.y83_c00040{bottom:257.125467pt;}
.y82_c00040{bottom:258.973888pt;}
.y81_c00040{bottom:259.661261pt;}
.y80_c00040{bottom:261.445867pt;}
.y7f_c00040{bottom:262.149891pt;}
.y7e_c00040{bottom:263.503757pt;}
.y7d_c00040{bottom:269.506901pt;}
.y7c_c00040{bottom:271.149269pt;}
.y7b_c00040{bottom:271.970731pt;}
.y7a_c00040{bottom:273.452781pt;}
.y79_c00040{bottom:274.574243pt;}
.y78_c00040{bottom:275.699395pt;}
.y77_c00040{bottom:278.994856pt;}
.y76_c00040{bottom:280.069208pt;}
.y75_c00040{bottom:285.359200pt;}
.y74_c00040{bottom:286.006136pt;}
.y73_c00040{bottom:288.723405pt;}
.y72_c00040{bottom:290.190851pt;}
.y71_c00040{bottom:291.449581pt;}
.y70_c00040{bottom:293.278485pt;}
.y6f_c00040{bottom:294.469776pt;}
.y6e_c00040{bottom:301.803579pt;}
.y6d_c00040{bottom:303.906536pt;}
.y6c_c00040{bottom:304.567872pt;}
.y6b_c00040{bottom:306.482893pt;}
.y6a_c00040{bottom:306.942968pt;}
.y69_c00040{bottom:308.973888pt;}
.y68_c00040{bottom:309.595765pt;}
.y67_c00040{bottom:316.377291pt;}
.y66_c00040{bottom:317.120837pt;}
.y65_c00040{bottom:318.923971pt;}
.y64_c00040{bottom:319.698520pt;}
.y63_c00040{bottom:320.218669pt;}
.y62_c00040{bottom:321.288499pt;}
.y61_c00040{bottom:322.659517pt;}
.y60_c00040{bottom:323.246040pt;}
.y5f_c00040{bottom:324.000781pt;}
.y5e_c00040{bottom:330.445987pt;}
.y5d_c00040{bottom:333.753299pt;}
.y5c_c00040{bottom:336.224123pt;}
.y5b_c00040{bottom:338.621789pt;}
.y5a_c00040{bottom:340.327445pt;}
.y59_c00040{bottom:346.209872pt;}
.y58_c00040{bottom:348.161763pt;}
.y57_c00040{bottom:349.109773pt;}
.y56_c00040{bottom:350.693373pt;}
.y55_c00040{bottom:351.243219pt;}
.y54_c00040{bottom:352.360568pt;}
.y53_c00040{bottom:354.726099pt;}
.y52_c00040{bottom:361.688608pt;}
.y51_c00040{bottom:362.059957pt;}
.y50_c00040{bottom:363.279739pt;}
.y4f_c00040{bottom:363.753979pt;}
.y4e_c00040{bottom:365.301291pt;}
.y4d_c00040{bottom:365.823648pt;}
.y4c_c00040{bottom:367.562632pt;}
.y4b_c00040{bottom:368.169333pt;}
.y4a_c00040{bottom:377.528917pt;}
.y49_c00040{bottom:377.852176pt;}
.y48_c00040{bottom:378.735669pt;}
.y47_c00040{bottom:378.985504pt;}
.y46_c00040{bottom:379.588544pt;}
.y45_c00040{bottom:379.871995pt;}
.y44_c00040{bottom:380.436395pt;}
.y43_c00040{bottom:381.308811pt;}
.y42_c00040{bottom:392.935275pt;}
.y41_c00040{bottom:394.747963pt;}
.y40_c00040{bottom:395.124123pt;}
.y3f_c00040{bottom:396.468283pt;}
.y3e_c00040{bottom:397.287019pt;}
.y3d_c00040{bottom:398.309648pt;}
.y3c_c00040{bottom:398.894443pt;}
.y3b_c00040{bottom:399.279477pt;}
.y3a_c00040{bottom:400.389323pt;}
.y39_c00040{bottom:401.248885pt;}
.y38_c00040{bottom:409.547947pt;}
.y37_c00040{bottom:410.068379pt;}
.y36_c00040{bottom:410.874085pt;}
.y35_c00040{bottom:412.693984pt;}
.y34_c00040{bottom:413.259557pt;}
.y33_c00040{bottom:414.510336pt;}
.y32_c00040{bottom:415.254859pt;}
.y31_c00040{bottom:416.373285pt;}
.y30_c00040{bottom:425.046123pt;}
.y2f_c00040{bottom:426.400000pt;}
.y2e_c00040{bottom:427.343211pt;}
.y2d_c00040{bottom:429.618992pt;}
.y2c_c00040{bottom:430.174549pt;}
.y2b_c00040{bottom:430.714923pt;}
.y2a_c00040{bottom:431.737723pt;}
.y29_c00040{bottom:440.217365pt;}
.y28_c00040{bottom:440.655925pt;}
.y27_c00040{bottom:441.748411pt;}
.y26_c00040{bottom:442.654981pt;}
.y25_c00040{bottom:444.100981pt;}
.y24_c00040{bottom:444.561925pt;}
.y23_c00040{bottom:445.532027pt;}
.y22_c00040{bottom:445.928069pt;}
.y21_c00040{bottom:455.565941pt;}
.y20_c00040{bottom:455.899568pt;}
.y1f_c00040{bottom:456.790021pt;}
.y1e_c00040{bottom:457.334005pt;}
.y1d_c00040{bottom:458.070987pt;}
.y1c_c00040{bottom:458.537824pt;}
.y1b_c00040{bottom:460.160293pt;}
.y1a_c00040{bottom:460.682000pt;}
.y19_c00040{bottom:461.157797pt;}
.y18_c00040{bottom:462.472763pt;}
.y17_c00040{bottom:470.558747pt;}
.y16_c00040{bottom:470.893008pt;}
.y15_c00040{bottom:472.474933pt;}
.y14_c00040{bottom:472.917760pt;}
.y13_c00040{bottom:474.858160pt;}
.y12_c00040{bottom:475.407525pt;}
.y11_c00040{bottom:475.894539pt;}
.y10_c00040{bottom:477.356064pt;}
.yf_c00040{bottom:486.656619pt;}
.ye_c00040{bottom:488.144859pt;}
.yd_c00040{bottom:489.195435pt;}
.yc_c00040{bottom:490.768176pt;}
.yb_c00040{bottom:491.095381pt;}
.ya_c00040{bottom:492.473376pt;}
.y9_c00040{bottom:493.438741pt;}
.y8_c00040{bottom:502.909819pt;}
.y7_c00040{bottom:503.959179pt;}
.y6_c00040{bottom:504.361925pt;}
.y5_c00040{bottom:505.868747pt;}
.y4_c00040{bottom:507.387824pt;}
.y3_c00040{bottom:508.082869pt;}
.y2_c00040{bottom:510.043819pt;}
.y1_c00040{bottom:513.370667pt;}
.h1b_c00040{height:42.019253pt;}
.h15_c00040{height:49.483384pt;}
.h19_c00040{height:51.332640pt;}
.he_c00040{height:53.217979pt;}
.h16_c00040{height:55.051384pt;}
.h18_c00040{height:55.065923pt;}
.hf_c00040{height:55.085276pt;}
.h11_c00040{height:56.018925pt;}
.h4_c00040{height:56.021948pt;}
.h17_c00040{height:56.917532pt;}
.h13_c00040{height:56.952574pt;}
.h8_c00040{height:56.955647pt;}
.hc_c00040{height:57.886222pt;}
.ha_c00040{height:57.889346pt;}
.h14_c00040{height:58.819871pt;}
.h9_c00040{height:58.823045pt;}
.h1a_c00040{height:58.826954pt;}
.hd_c00040{height:59.753520pt;}
.h7_c00040{height:59.756744pt;}
.h10_c00040{height:60.687169pt;}
.h1c_c00040{height:60.694476pt;}
.hb_c00040{height:61.620817pt;}
.h5_c00040{height:61.624142pt;}
.h3_c00040{height:63.491541pt;}
.h12_c00040{height:64.421764pt;}
.h2_c00040{height:65.358939pt;}
.h6_c00040{height:66.292638pt;}
.h0_c00040{height:568.533333pt;}
.h1_c00040{height:568.666667pt;}
.w1_c00040{width:323.333333pt;}
.w0_c00040{width:323.466667pt;}
.x0_c00040{left:0.000000pt;}
.x86_c00040{left:26.323704pt;}
.x7f_c00040{left:27.596655pt;}
.x6c_c00040{left:28.547800pt;}
.x55_c00040{left:30.073429pt;}
.x1d_c00040{left:31.326016pt;}
.x3_c00040{left:32.632677pt;}
.x5f_c00040{left:34.722653pt;}
.x48_c00040{left:36.312427pt;}
.x3a_c00040{left:40.210667pt;}
.x8a_c00040{left:41.438867pt;}
.x3e_c00040{left:45.065992pt;}
.x63_c00040{left:46.060533pt;}
.x1e_c00040{left:47.186027pt;}
.x4e_c00040{left:49.324115pt;}
.x72_c00040{left:52.324763pt;}
.x56_c00040{left:53.946976pt;}
.x30_c00040{left:57.265584pt;}
.x49_c00040{left:59.182933pt;}
.x67_c00040{left:60.406563pt;}
.x50_c00040{left:61.927491pt;}
.x4_c00040{left:62.840896pt;}
.x25_c00040{left:65.920816pt;}
.x2a_c00040{left:67.110539pt;}
.x9_c00040{left:69.277995pt;}
.x44_c00040{left:75.243949pt;}
.x14_c00040{left:77.345499pt;}
.x60_c00040{left:78.697107pt;}
.x5b_c00040{left:80.931907pt;}
.x80_c00040{left:82.028037pt;}
.x26_c00040{left:83.933141pt;}
.x1f_c00040{left:85.978608pt;}
.xf_c00040{left:88.263691pt;}
.x6d_c00040{left:89.948979pt;}
.x2b_c00040{left:91.127189pt;}
.x15_c00040{left:93.766384pt;}
.x76_c00040{left:97.681933pt;}
.x6e_c00040{left:99.804939pt;}
.x78_c00040{left:100.740891pt;}
.x27_c00040{left:102.440096pt;}
.x20_c00040{left:104.394805pt;}
.x10_c00040{left:106.991403pt;}
.x4f_c00040{left:109.065037pt;}
.x51_c00040{left:110.049813pt;}
.x16_c00040{left:111.779232pt;}
.x4a_c00040{left:118.513485pt;}
.x31_c00040{left:120.292773pt;}
.xa_c00040{left:122.256944pt;}
.x6f_c00040{left:123.577307pt;}
.x5c_c00040{left:125.554349pt;}
.x57_c00040{left:127.172152pt;}
.x5_c00040{left:128.864784pt;}
.x3b_c00040{left:130.429333pt;}
.x2c_c00040{left:131.461125pt;}
.xb_c00040{left:134.848320pt;}
.x45_c00040{left:136.723184pt;}
.x36_c00040{left:139.251845pt;}
.x87_c00040{left:141.683099pt;}
.x52_c00040{left:143.170149pt;}
.x3f_c00040{left:144.589397pt;}
.x81_c00040{left:148.047923pt;}
.x2d_c00040{left:149.706261pt;}
.x32_c00040{left:151.287109pt;}
.x58_c00040{left:152.178477pt;}
.x89_c00040{left:154.678055pt;}
.x68_c00040{left:156.522763pt;}
.x1_c00040{left:157.790667pt;}
.x40_c00040{left:160.297723pt;}
.x21_c00040{left:162.232992pt;}
.x73_c00040{left:163.941781pt;}
.x7c_c00040{left:165.661333pt;}
.x4b_c00040{left:166.683381pt;}
.x17_c00040{left:167.722997pt;}
.x64_c00040{left:170.405805pt;}
.x69_c00040{left:174.910651pt;}
.x33_c00040{left:176.095637pt;}
.x59_c00040{left:177.094171pt;}
.x28_c00040{left:178.285173pt;}
.x85_c00040{left:179.277415pt;}
.x8b_c00040{left:180.434219pt;}
.x53_c00040{left:181.803453pt;}
.x18_c00040{left:183.823883pt;}
.x79_c00040{left:184.925221pt;}
.x65_c00040{left:186.808360pt;}
.x5d_c00040{left:188.959296pt;}
.x4c_c00040{left:190.161784pt;}
.x37_c00040{left:192.539061pt;}
.x6_c00040{left:194.403301pt;}
.xc_c00040{left:195.354384pt;}
.x74_c00040{left:196.613187pt;}
.x22_c00040{left:198.470683pt;}
.x46_c00040{left:200.092461pt;}
.x11_c00040{left:202.774112pt;}
.x7d_c00040{left:204.353269pt;}
.x41_c00040{left:205.553816pt;}
.x61_c00040{left:207.723429pt;}
.x19_c00040{left:209.239173pt;}
.x7_c00040{left:211.932432pt;}
.x88_c00040{left:213.143567pt;}
.x77_c00040{left:214.656443pt;}
.x34_c00040{left:216.809925pt;}
.x83_c00040{left:218.651464pt;}
.x12_c00040{left:219.828416pt;}
.x75_c00040{left:221.691277pt;}
.x62_c00040{left:226.749549pt;}
.x1a_c00040{left:227.999984pt;}
.x8c_c00040{left:230.138915pt;}
.x42_c00040{left:232.624805pt;}
.x2e_c00040{left:234.423168pt;}
.xd_c00040{left:235.781995pt;}
.x7a_c00040{left:237.151733pt;}
.x66_c00040{left:240.945632pt;}
.x23_c00040{left:242.158341pt;}
.x84_c00040{left:243.153029pt;}
.x4d_c00040{left:244.785168pt;}
.x82_c00040{left:246.389639pt;}
.x38_c00040{left:247.777616pt;}
.x2f_c00040{left:251.199083pt;}
.x70_c00040{left:252.180509pt;}
.x54_c00040{left:253.317163pt;}
.x29_c00040{left:254.843547pt;}
.x8_c00040{left:257.558816pt;}
.x1b_c00040{left:258.705792pt;}
.x24_c00040{left:259.679797pt;}
.x6a_c00040{left:262.845157pt;}
.x5a_c00040{left:264.764205pt;}
.x39_c00040{left:267.948373pt;}
.x71_c00040{left:269.087288pt;}
.x1c_c00040{left:270.192123pt;}
.x5e_c00040{left:271.807837pt;}
.x7e_c00040{left:272.911309pt;}
.x3c_c00040{left:275.186667pt;}
.x2_c00040{left:276.606667pt;}
.x13_c00040{left:280.662480pt;}
.x35_c00040{left:283.116629pt;}
.x47_c00040{left:284.909160pt;}
.x7b_c00040{left:286.103869pt;}
.x43_c00040{left:288.402437pt;}
.x3d_c00040{left:289.469333pt;}
.x6b_c00040{left:290.696851pt;}
.xe_c00040{left:293.031872pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00041 {
    display:none;
  }
  .loading-indicator_c00041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00041 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00041 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00041" -> "#page-container .classname_c00041")
 */
.pf_c00041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00041 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00041 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00041 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00041 {overflow:visible;}
  }
}
.c_c00041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00041 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00041:after { /* webkit #35443 */
  content: '';
}
.t_c00041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00041 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00041 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00041 { /* info for Javascript */
  display:none;
}
.l_c00041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00041:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00041 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00041.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7d_c00041{transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);}
.m2b_c00041{transform:matrix(0.017100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017100,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.047955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047955,0.000000,0.000000,0.250000,0,0);}
.mcf_c00041{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);}
.mfe_c00041{transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);}
.m8d_c00041{transform:matrix(0.144185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144185,0.000000,0.000000,0.250000,0,0);}
.m2f_c00041{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mfb_c00041{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m1e_c00041{transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);}
.m54_c00041{transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);}
.mdb_c00041{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00041{transform:matrix(0.153905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153905,0.000000,0.000000,0.250000,0,0);}
.md4_c00041{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m55_c00041{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.md1_c00041{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m28_c00041{transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);}
.m39_c00041{transform:matrix(0.159645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159645,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00041{transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);}
.m8e_c00041{transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00041{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.mf9_c00041{transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);}
.maa_c00041{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m78_c00041{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.m90_c00041{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m20_c00041{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.m67_c00041{transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m61_c00041{transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00041{transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);}
.m25_c00041{transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);}
.m5b_c00041{transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m85_c00041{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.mc5_c00041{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m36_c00041{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m31_c00041{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m33_c00041{transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);}
.m29_c00041{transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);}
.m53_c00041{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00041{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.mf3_c00041{transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);}
.me7_c00041{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m26_c00041{transform:matrix(0.171955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171955,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);}
.mad_c00041{transform:matrix(0.172815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00041{transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173190,0.000000,0.000000,0.250000,0,0);}
.m62_c00041{transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);}
.m1f_c00041{transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);}
.mc7_c00041{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m37_c00041{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m30_c00041{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.mea_c00041{transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);}
.md7_c00041{transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);}
.ma9_c00041{transform:matrix(0.174610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174610,0.000000,0.000000,0.250000,0,0);}
.m50_c00041{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00041{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m7e_c00041{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.m9b_c00041{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.mab_c00041{transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);}
.m5c_c00041{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m2a_c00041{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.ma0_c00041{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.mdd_c00041{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.mff_c00041{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m93_c00041{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.mce_c00041{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m76_c00041{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.md2_c00041{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m4d_c00041{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m1b_c00041{transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);}
.mdc_c00041{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m77_c00041{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m9c_c00041{transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);}
.me9_c00041{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m86_c00041{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m8f_c00041{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m46_c00041{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.mfd_c00041{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.ma6_c00041{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00041{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.md9_c00041{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00041{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.mf8_c00041{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m3a_c00041{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.mf0_c00041{transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.mc0_c00041{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m52_c00041{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.m74_c00041{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.m45_c00041{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.mcb_c00041{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.m38_c00041{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.m57_c00041{transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);}
.m24_c00041{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m32_c00041{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.mb4_c00041{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m51_c00041{transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);}
.mee_c00041{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00041{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m7c_c00041{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.mda_c00041{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m23_c00041{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.m22_c00041{transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);}
.m66_c00041{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.me8_c00041{transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);}
.md3_c00041{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m99_c00041{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00041{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.mf5_c00041{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m69_c00041{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00041{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mef_c00041{transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);}
.m21_c00041{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.mf1_c00041{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00041{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.mae_c00041{transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00041{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.mc3_c00041{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);}
.m40_c00041{transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);}
.md5_c00041{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.m98_c00041{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.m43_c00041{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.m4e_c00041{transform:matrix(0.197315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197315,0.000000,0.000000,0.250000,0,0);}
.m35_c00041{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m48_c00041{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m9e_c00041{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.mb5_c00041{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00041{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m96_c00041{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m6f_c00041{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.m97_c00041{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.mdf_c00041{transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);}
.mc4_c00041{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.mb6_c00041{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00041{transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);}
.m6e_c00041{transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.mfc_c00041{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.mc9_c00041{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.me6_c00041{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mbc_c00041{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.mf7_c00041{transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.md6_c00041{transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m6b_c00041{transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);}
.m81_c00041{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.md0_c00041{transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);}
.ma3_c00041{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.meb_c00041{transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);}
.m89_c00041{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m34_c00041{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m8b_c00041{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.m83_c00041{transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);}
.m56_c00041{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.me3_c00041{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mca_c00041{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.mb8_c00041{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m3c_c00041{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m8a_c00041{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me2_c00041{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00041{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m9a_c00041{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.mb9_c00041{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.mf2_c00041{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m87_c00041{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m68_c00041{transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);}
.mac_c00041{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.ma5_c00041{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);}
.m88_c00041{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m60_c00041{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.mfa_c00041{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.m72_c00041{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.md8_c00041{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.maf_c00041{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.mbf_c00041{transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);}
.m41_c00041{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m80_c00041{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.m91_c00041{transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);}
.m84_c00041{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.m64_c00041{transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);}
.m7f_c00041{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.mba_c00041{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m71_c00041{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.mc2_c00041{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.mbe_c00041{transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);}
.med_c00041{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.219040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219040,0.000000,0.000000,0.250000,0,0);}
.mc6_c00041{transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);}
.m75_c00041{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m7b_c00041{transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.mb7_c00041{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.me1_c00041{transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m79_c00041{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m82_c00041{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mb1_c00041{transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);}
.mde_c00041{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.me5_c00041{transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);}
.m73_c00041{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.mbd_c00041{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m6a_c00041{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m94_c00041{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m59_c00041{transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);}
.m47_c00041{transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);}
.m92_c00041{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m58_c00041{transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);}
.mcd_c00041{transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);}
.mf4_c00041{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.m65_c00041{transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);}
.m70_c00041{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m49_c00041{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.m8c_c00041{transform:matrix(0.239315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239315,0.000000,0.000000,0.250000,0,0);}
.mc1_c00041{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m7_c00041{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m6d_c00041{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mf6_c00041{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.mb3_c00041{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.me4_c00041{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.ma1_c00041{transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);}
.me0_c00041{transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);}
.mcc_c00041{transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);}
.mec_c00041{transform:matrix(0.266930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266930,0.000000,0.000000,0.250000,0,0);}
.m9d_c00041{transform:matrix(0.323185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323185,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.331905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331905,0.000000,0.000000,0.250000,0,0);}
.m95_c00041{transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);}
.ma2_c00041{transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352370,0.000000,0.000000,0.250000,0,0);}
.m2c_c00041{transform:matrix(0.391810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391810,0.000000,0.000000,0.250000,0,0);}
.m42_c00041{transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);}
.m6_c00041{transform:matrix(0.605985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605985,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fsc_c00041{font-size:57.750000px;}
.fsb_c00041{font-size:58.800000px;}
.fs8_c00041{font-size:59.850000px;}
.fs1_c00041{font-size:60.900000px;}
.fs0_c00041{font-size:61.950000px;}
.fs2_c00041{font-size:63.000000px;}
.fsa_c00041{font-size:64.050000px;}
.fs5_c00041{font-size:65.100000px;}
.fsd_c00041{font-size:66.150000px;}
.fs9_c00041{font-size:67.200000px;}
.fs7_c00041{font-size:68.250000px;}
.fs4_c00041{font-size:69.300000px;}
.fs6_c00041{font-size:70.350000px;}
.fs3_c00041{font-size:71.400000px;}
.y0_c00041{bottom:0.000000px;}
.y31_c00041{bottom:26.731500px;}
.y30_c00041{bottom:44.052000px;}
.y2f_c00041{bottom:60.751500px;}
.y2e_c00041{bottom:79.071000px;}
.y2d_c00041{bottom:95.194500px;}
.y2c_c00041{bottom:112.444500px;}
.y2b_c00041{bottom:128.602500px;}
.y2a_c00041{bottom:145.951500px;}
.y29_c00041{bottom:163.048500px;}
.y28_c00041{bottom:181.021500px;}
.y27_c00041{bottom:197.986500px;}
.y26_c00041{bottom:214.351500px;}
.y25_c00041{bottom:231.816000px;}
.y24_c00041{bottom:248.869500px;}
.y23_c00041{bottom:266.304000px;}
.y22_c00041{bottom:282.889500px;}
.y21_c00041{bottom:299.626500px;}
.y20_c00041{bottom:316.413000px;}
.y16_c00041{bottom:332.371500px;}
.y17_c00041{bottom:332.602500px;}
.y18_c00041{bottom:332.821500px;}
.y19_c00041{bottom:333.042000px;}
.y1a_c00041{bottom:333.505500px;}
.y1b_c00041{bottom:334.024500px;}
.y1c_c00041{bottom:334.381500px;}
.y1d_c00041{bottom:335.148000px;}
.y1e_c00041{bottom:335.356500px;}
.y1f_c00041{bottom:335.760000px;}
.y15_c00041{bottom:350.668500px;}
.y14_c00041{bottom:368.190000px;}
.y13_c00041{bottom:384.928500px;}
.y12_c00041{bottom:401.847000px;}
.y11_c00041{bottom:419.070000px;}
.y10_c00041{bottom:435.958500px;}
.yf_c00041{bottom:453.970500px;}
.ye_c00041{bottom:470.053500px;}
.yd_c00041{bottom:486.721500px;}
.yc_c00041{bottom:503.077500px;}
.yb_c00041{bottom:520.308000px;}
.y3_c00041{bottom:535.411500px;}
.y4_c00041{bottom:535.663500px;}
.y5_c00041{bottom:536.293500px;}
.y6_c00041{bottom:536.923500px;}
.y7_c00041{bottom:537.354000px;}
.y8_c00041{bottom:537.978000px;}
.y9_c00041{bottom:538.200000px;}
.ya_c00041{bottom:538.467000px;}
.y2_c00041{bottom:555.823500px;}
.y1_c00041{bottom:572.808000px;}
.he_c00041{height:57.750000px;}
.hd_c00041{height:58.800000px;}
.ha_c00041{height:59.850000px;}
.h3_c00041{height:60.900000px;}
.h2_c00041{height:61.950000px;}
.h4_c00041{height:63.000000px;}
.hc_c00041{height:64.050000px;}
.h7_c00041{height:65.100000px;}
.hf_c00041{height:66.150000px;}
.hb_c00041{height:67.200000px;}
.h9_c00041{height:68.250000px;}
.h6_c00041{height:69.300000px;}
.h8_c00041{height:70.350000px;}
.h5_c00041{height:71.400000px;}
.h1_c00041{height:616.500000px;}
.h0_c00041{height:616.650000px;}
.w1_c00041{width:363.750000px;}
.w0_c00041{width:363.900000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:30.240000px;}
.x17_c00041{left:40.498500px;}
.x80_c00041{left:42.927000px;}
.x77_c00041{left:44.547000px;}
.x67_c00041{left:45.897000px;}
.x50_c00041{left:47.247000px;}
.x20_c00041{left:48.328500px;}
.x3_c00041{left:49.410000px;}
.x42_c00041{left:61.018500px;}
.x27_c00041{left:63.718500px;}
.x4_c00041{left:66.150000px;}
.x4a_c00041{left:68.445000px;}
.xc_c00041{left:72.259500px;}
.x25_c00041{left:73.978500px;}
.x5d_c00041{left:76.407000px;}
.x5_c00041{left:79.380000px;}
.x7a_c00041{left:80.457000px;}
.x2c_c00041{left:83.428500px;}
.x18_c00041{left:86.128500px;}
.x4b_c00041{left:88.375500px;}
.x32_c00041{left:91.258500px;}
.x2d_c00041{left:96.118500px;}
.x51_c00041{left:97.737000px;}
.x7b_c00041{left:100.167000px;}
.x45_c00041{left:101.788500px;}
.x19_c00041{left:103.948500px;}
.x4c_c00041{left:108.415500px;}
.x28_c00041{left:111.778500px;}
.x13_c00041{left:115.018500px;}
.x5a_c00041{left:117.987000px;}
.x21_c00041{left:119.608500px;}
.x33_c00041{left:120.958500px;}
.x46_c00041{left:122.038500px;}
.x6_c00041{left:124.200000px;}
.x55_c00041{left:125.277000px;}
.x3c_c00041{left:126.628500px;}
.xd_c00041{left:129.495000px;}
.x7c_c00041{left:133.107000px;}
.x38_c00041{left:134.458500px;}
.x81_c00041{left:135.537000px;}
.x60_c00041{left:137.697000px;}
.x1a_c00041{left:142.018500px;}
.x7_c00041{left:143.640000px;}
.x5b_c00041{left:148.227000px;}
.x4d_c00041{left:150.543000px;}
.x6b_c00041{left:153.357000px;}
.x2e_c00041{left:154.708500px;}
.x68_c00041{left:156.597000px;}
.x52_c00041{left:157.677000px;}
.x34_c00041{left:162.268500px;}
.x5e_c00041{left:163.617000px;}
.x70_c00041{left:165.237000px;}
.x61_c00041{left:168.747000px;}
.x3d_c00041{left:169.828500px;}
.x22_c00041{left:176.848500px;}
.x82_c00041{left:181.167000px;}
.x65_c00041{left:184.137000px;}
.xe_c00041{left:186.727500px;}
.x14_c00041{left:188.998500px;}
.x1_c00041{left:190.890000px;}
.x3e_c00041{left:192.778500px;}
.x29_c00041{left:197.908500px;}
.x53_c00041{left:199.527000px;}
.x1b_c00041{left:201.148500px;}
.x75_c00041{left:204.387000px;}
.x2f_c00041{left:206.548500px;}
.x73_c00041{left:208.167000px;}
.x1c_c00041{left:211.408500px;}
.x71_c00041{left:213.027000px;}
.x8_c00041{left:217.080000px;}
.x39_c00041{left:219.508500px;}
.x30_c00041{left:221.128500px;}
.x66_c00041{left:222.477000px;}
.x7d_c00041{left:224.637000px;}
.xf_c00041{left:225.843000px;}
.x9_c00041{left:230.310000px;}
.x56_c00041{left:231.927000px;}
.x1d_c00041{left:235.168500px;}
.x47_c00041{left:236.788500px;}
.x62_c00041{left:238.137000px;}
.x43_c00041{left:239.488500px;}
.x3f_c00041{left:242.728500px;}
.x7e_c00041{left:244.077000px;}
.x83_c00041{left:245.427000px;}
.x6e_c00041{left:246.507000px;}
.x15_c00041{left:248.398500px;}
.x5f_c00041{left:251.907000px;}
.x35_c00041{left:254.338500px;}
.x78_c00041{left:255.417000px;}
.xa_c00041{left:257.580000px;}
.x6c_c00041{left:260.547000px;}
.x40_c00041{left:263.248500px;}
.x48_c00041{left:267.568500px;}
.x26_c00041{left:270.268500px;}
.x63_c00041{left:272.697000px;}
.x57_c00041{left:274.047000px;}
.xb_c00041{left:275.940000px;}
.x72_c00041{left:277.827000px;}
.x36_c00041{left:280.528500px;}
.x10_c00041{left:282.574500px;}
.x1e_c00041{left:284.848500px;}
.x76_c00041{left:285.927000px;}
.x23_c00041{left:287.548500px;}
.x64_c00041{left:291.867000px;}
.x16_c00041{left:294.028500px;}
.x6f_c00041{left:297.267000px;}
.x2a_c00041{left:299.428500px;}
.x11_c00041{left:302.818500px;}
.x6d_c00041{left:304.557000px;}
.x54_c00041{left:306.177000px;}
.x44_c00041{left:307.258500px;}
.x3a_c00041{left:309.688500px;}
.x1f_c00041{left:312.118500px;}
.x24_c00041{left:315.088500px;}
.x49_c00041{left:316.168500px;}
.x4e_c00041{left:318.718500px;}
.x74_c00041{left:319.947000px;}
.x37_c00041{left:321.028500px;}
.x31_c00041{left:324.268500px;}
.x58_c00041{left:325.617000px;}
.x12_c00041{left:327.112500px;}
.x2b_c00041{left:331.288500px;}
.x7f_c00041{left:335.337000px;}
.x69_c00041{left:336.417000px;}
.x79_c00041{left:338.577000px;}
.x5c_c00041{left:351.537000px;}
.x6a_c00041{left:352.887000px;}
.x59_c00041{left:353.967000px;}
.x4f_c00041{left:355.428000px;}
.x41_c00041{left:356.668500px;}
.x3b_c00041{left:359.368500px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.fsc_c00041{font-size:51.333333pt;}
.fsb_c00041{font-size:52.266667pt;}
.fs8_c00041{font-size:53.200000pt;}
.fs1_c00041{font-size:54.133333pt;}
.fs0_c00041{font-size:55.066667pt;}
.fs2_c00041{font-size:56.000000pt;}
.fsa_c00041{font-size:56.933333pt;}
.fs5_c00041{font-size:57.866667pt;}
.fsd_c00041{font-size:58.800000pt;}
.fs9_c00041{font-size:59.733333pt;}
.fs7_c00041{font-size:60.666667pt;}
.fs4_c00041{font-size:61.600000pt;}
.fs6_c00041{font-size:62.533333pt;}
.fs3_c00041{font-size:63.466667pt;}
.y0_c00041{bottom:0.000000pt;}
.y31_c00041{bottom:23.761333pt;}
.y30_c00041{bottom:39.157333pt;}
.y2f_c00041{bottom:54.001333pt;}
.y2e_c00041{bottom:70.285333pt;}
.y2d_c00041{bottom:84.617333pt;}
.y2c_c00041{bottom:99.950667pt;}
.y2b_c00041{bottom:114.313333pt;}
.y2a_c00041{bottom:129.734667pt;}
.y29_c00041{bottom:144.932000pt;}
.y28_c00041{bottom:160.908000pt;}
.y27_c00041{bottom:175.988000pt;}
.y26_c00041{bottom:190.534667pt;}
.y25_c00041{bottom:206.058667pt;}
.y24_c00041{bottom:221.217333pt;}
.y23_c00041{bottom:236.714667pt;}
.y22_c00041{bottom:251.457333pt;}
.y21_c00041{bottom:266.334667pt;}
.y20_c00041{bottom:281.256000pt;}
.y16_c00041{bottom:295.441333pt;}
.y17_c00041{bottom:295.646667pt;}
.y18_c00041{bottom:295.841333pt;}
.y19_c00041{bottom:296.037333pt;}
.y1a_c00041{bottom:296.449333pt;}
.y1b_c00041{bottom:296.910667pt;}
.y1c_c00041{bottom:297.228000pt;}
.y1d_c00041{bottom:297.909333pt;}
.y1e_c00041{bottom:298.094667pt;}
.y1f_c00041{bottom:298.453333pt;}
.y15_c00041{bottom:311.705333pt;}
.y14_c00041{bottom:327.280000pt;}
.y13_c00041{bottom:342.158667pt;}
.y12_c00041{bottom:357.197333pt;}
.y11_c00041{bottom:372.506667pt;}
.y10_c00041{bottom:387.518667pt;}
.yf_c00041{bottom:403.529333pt;}
.ye_c00041{bottom:417.825333pt;}
.yd_c00041{bottom:432.641333pt;}
.yc_c00041{bottom:447.180000pt;}
.yb_c00041{bottom:462.496000pt;}
.y3_c00041{bottom:475.921333pt;}
.y4_c00041{bottom:476.145333pt;}
.y5_c00041{bottom:476.705333pt;}
.y6_c00041{bottom:477.265333pt;}
.y7_c00041{bottom:477.648000pt;}
.y8_c00041{bottom:478.202667pt;}
.y9_c00041{bottom:478.400000pt;}
.ya_c00041{bottom:478.637333pt;}
.y2_c00041{bottom:494.065333pt;}
.y1_c00041{bottom:509.162667pt;}
.he_c00041{height:51.333333pt;}
.hd_c00041{height:52.266667pt;}
.ha_c00041{height:53.200000pt;}
.h3_c00041{height:54.133333pt;}
.h2_c00041{height:55.066667pt;}
.h4_c00041{height:56.000000pt;}
.hc_c00041{height:56.933333pt;}
.h7_c00041{height:57.866667pt;}
.hf_c00041{height:58.800000pt;}
.hb_c00041{height:59.733333pt;}
.h9_c00041{height:60.666667pt;}
.h6_c00041{height:61.600000pt;}
.h8_c00041{height:62.533333pt;}
.h5_c00041{height:63.466667pt;}
.h1_c00041{height:548.000000pt;}
.h0_c00041{height:548.133333pt;}
.w1_c00041{width:323.333333pt;}
.w0_c00041{width:323.466667pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:26.880000pt;}
.x17_c00041{left:35.998667pt;}
.x80_c00041{left:38.157333pt;}
.x77_c00041{left:39.597333pt;}
.x67_c00041{left:40.797333pt;}
.x50_c00041{left:41.997333pt;}
.x20_c00041{left:42.958667pt;}
.x3_c00041{left:43.920000pt;}
.x42_c00041{left:54.238667pt;}
.x27_c00041{left:56.638667pt;}
.x4_c00041{left:58.800000pt;}
.x4a_c00041{left:60.840000pt;}
.xc_c00041{left:64.230667pt;}
.x25_c00041{left:65.758667pt;}
.x5d_c00041{left:67.917333pt;}
.x5_c00041{left:70.560000pt;}
.x7a_c00041{left:71.517333pt;}
.x2c_c00041{left:74.158667pt;}
.x18_c00041{left:76.558667pt;}
.x4b_c00041{left:78.556000pt;}
.x32_c00041{left:81.118667pt;}
.x2d_c00041{left:85.438667pt;}
.x51_c00041{left:86.877333pt;}
.x7b_c00041{left:89.037333pt;}
.x45_c00041{left:90.478667pt;}
.x19_c00041{left:92.398667pt;}
.x4c_c00041{left:96.369333pt;}
.x28_c00041{left:99.358667pt;}
.x13_c00041{left:102.238667pt;}
.x5a_c00041{left:104.877333pt;}
.x21_c00041{left:106.318667pt;}
.x33_c00041{left:107.518667pt;}
.x46_c00041{left:108.478667pt;}
.x6_c00041{left:110.400000pt;}
.x55_c00041{left:111.357333pt;}
.x3c_c00041{left:112.558667pt;}
.xd_c00041{left:115.106667pt;}
.x7c_c00041{left:118.317333pt;}
.x38_c00041{left:119.518667pt;}
.x81_c00041{left:120.477333pt;}
.x60_c00041{left:122.397333pt;}
.x1a_c00041{left:126.238667pt;}
.x7_c00041{left:127.680000pt;}
.x5b_c00041{left:131.757333pt;}
.x4d_c00041{left:133.816000pt;}
.x6b_c00041{left:136.317333pt;}
.x2e_c00041{left:137.518667pt;}
.x68_c00041{left:139.197333pt;}
.x52_c00041{left:140.157333pt;}
.x34_c00041{left:144.238667pt;}
.x5e_c00041{left:145.437333pt;}
.x70_c00041{left:146.877333pt;}
.x61_c00041{left:149.997333pt;}
.x3d_c00041{left:150.958667pt;}
.x22_c00041{left:157.198667pt;}
.x82_c00041{left:161.037333pt;}
.x65_c00041{left:163.677333pt;}
.xe_c00041{left:165.980000pt;}
.x14_c00041{left:167.998667pt;}
.x1_c00041{left:169.680000pt;}
.x3e_c00041{left:171.358667pt;}
.x29_c00041{left:175.918667pt;}
.x53_c00041{left:177.357333pt;}
.x1b_c00041{left:178.798667pt;}
.x75_c00041{left:181.677333pt;}
.x2f_c00041{left:183.598667pt;}
.x73_c00041{left:185.037333pt;}
.x1c_c00041{left:187.918667pt;}
.x71_c00041{left:189.357333pt;}
.x8_c00041{left:192.960000pt;}
.x39_c00041{left:195.118667pt;}
.x30_c00041{left:196.558667pt;}
.x66_c00041{left:197.757333pt;}
.x7d_c00041{left:199.677333pt;}
.xf_c00041{left:200.749333pt;}
.x9_c00041{left:204.720000pt;}
.x56_c00041{left:206.157333pt;}
.x1d_c00041{left:209.038667pt;}
.x47_c00041{left:210.478667pt;}
.x62_c00041{left:211.677333pt;}
.x43_c00041{left:212.878667pt;}
.x3f_c00041{left:215.758667pt;}
.x7e_c00041{left:216.957333pt;}
.x83_c00041{left:218.157333pt;}
.x6e_c00041{left:219.117333pt;}
.x15_c00041{left:220.798667pt;}
.x5f_c00041{left:223.917333pt;}
.x35_c00041{left:226.078667pt;}
.x78_c00041{left:227.037333pt;}
.xa_c00041{left:228.960000pt;}
.x6c_c00041{left:231.597333pt;}
.x40_c00041{left:233.998667pt;}
.x48_c00041{left:237.838667pt;}
.x26_c00041{left:240.238667pt;}
.x63_c00041{left:242.397333pt;}
.x57_c00041{left:243.597333pt;}
.xb_c00041{left:245.280000pt;}
.x72_c00041{left:246.957333pt;}
.x36_c00041{left:249.358667pt;}
.x10_c00041{left:251.177333pt;}
.x1e_c00041{left:253.198667pt;}
.x76_c00041{left:254.157333pt;}
.x23_c00041{left:255.598667pt;}
.x64_c00041{left:259.437333pt;}
.x16_c00041{left:261.358667pt;}
.x6f_c00041{left:264.237333pt;}
.x2a_c00041{left:266.158667pt;}
.x11_c00041{left:269.172000pt;}
.x6d_c00041{left:270.717333pt;}
.x54_c00041{left:272.157333pt;}
.x44_c00041{left:273.118667pt;}
.x3a_c00041{left:275.278667pt;}
.x1f_c00041{left:277.438667pt;}
.x24_c00041{left:280.078667pt;}
.x49_c00041{left:281.038667pt;}
.x4e_c00041{left:283.305333pt;}
.x74_c00041{left:284.397333pt;}
.x37_c00041{left:285.358667pt;}
.x31_c00041{left:288.238667pt;}
.x58_c00041{left:289.437333pt;}
.x12_c00041{left:290.766667pt;}
.x2b_c00041{left:294.478667pt;}
.x7f_c00041{left:298.077333pt;}
.x69_c00041{left:299.037333pt;}
.x79_c00041{left:300.957333pt;}
.x5c_c00041{left:312.477333pt;}
.x6a_c00041{left:313.677333pt;}
.x59_c00041{left:314.637333pt;}
.x4f_c00041{left:315.936000pt;}
.x41_c00041{left:317.038667pt;}
.x3b_c00041{left:319.438667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00042 {
    display:none;
  }
  .loading-indicator_c00042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00042 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00042 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00042" -> "#page-container .classname_c00042")
 */
.pf_c00042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00042 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00042 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00042 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00042 {overflow:visible;}
  }
}
.c_c00042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00042 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00042:after { /* webkit #35443 */
  content: '';
}
.t_c00042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00042 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00042 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00042 { /* info for Javascript */
  display:none;
}
.l_c00042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00042:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00042 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00042.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00042{transform:matrix(0.012972,0.000688,-0.013245,0.249649,0,0);-ms-transform:matrix(0.012972,0.000688,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.012972,0.000688,-0.013245,0.249649,0,0);}
.m28_c00042{transform:matrix(0.133805,0.007233,-0.013494,0.249636,0,0);-ms-transform:matrix(0.133805,0.007233,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.133805,0.007233,-0.013494,0.249636,0,0);}
.m1c_c00042{transform:matrix(0.138248,0.007473,-0.013494,0.249636,0,0);-ms-transform:matrix(0.138248,0.007473,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.138248,0.007473,-0.013494,0.249636,0,0);}
.m2d_c00042{transform:matrix(0.141883,0.007669,-0.013494,0.249636,0,0);-ms-transform:matrix(0.141883,0.007669,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.141883,0.007669,-0.013494,0.249636,0,0);}
.m26_c00042{transform:matrix(0.144065,0.007787,-0.013494,0.249636,0,0);-ms-transform:matrix(0.144065,0.007787,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.144065,0.007787,-0.013494,0.249636,0,0);}
.mb4_c00042{transform:matrix(0.148092,0.007857,-0.013245,0.249649,0,0);-ms-transform:matrix(0.148092,0.007857,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.148092,0.007857,-0.013245,0.249649,0,0);}
.m66_c00042{transform:matrix(0.148631,0.007885,-0.013245,0.249649,0,0);-ms-transform:matrix(0.148631,0.007885,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.148631,0.007885,-0.013245,0.249649,0,0);}
.m86_c00042{transform:matrix(0.150294,0.007974,-0.013245,0.249649,0,0);-ms-transform:matrix(0.150294,0.007974,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.150294,0.007974,-0.013245,0.249649,0,0);}
.m68_c00042{transform:matrix(0.150588,0.007989,-0.013245,0.249649,0,0);-ms-transform:matrix(0.150588,0.007989,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.150588,0.007989,-0.013245,0.249649,0,0);}
.m23_c00042{transform:matrix(0.152482,0.008242,-0.013494,0.249636,0,0);-ms-transform:matrix(0.152482,0.008242,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.152482,0.008242,-0.013494,0.249636,0,0);}
.m1f_c00042{transform:matrix(0.153067,0.008274,-0.013494,0.249636,0,0);-ms-transform:matrix(0.153067,0.008274,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.153067,0.008274,-0.013494,0.249636,0,0);}
.m20_c00042{transform:matrix(0.153636,0.008305,-0.013494,0.249636,0,0);-ms-transform:matrix(0.153636,0.008305,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.153636,0.008305,-0.013494,0.249636,0,0);}
.m2c_c00042{transform:matrix(0.154749,0.008365,-0.013494,0.249636,0,0);-ms-transform:matrix(0.154749,0.008365,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.154749,0.008365,-0.013494,0.249636,0,0);}
.m24_c00042{transform:matrix(0.154994,0.008378,-0.013494,0.249636,0,0);-ms-transform:matrix(0.154994,0.008378,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.154994,0.008378,-0.013494,0.249636,0,0);}
.m6a_c00042{transform:matrix(0.157139,0.008337,-0.013245,0.249649,0,0);-ms-transform:matrix(0.157139,0.008337,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.157139,0.008337,-0.013245,0.249649,0,0);}
.m80_c00042{transform:matrix(0.158267,0.008397,-0.013245,0.249649,0,0);-ms-transform:matrix(0.158267,0.008397,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.158267,0.008397,-0.013245,0.249649,0,0);}
.m6_c00042{transform:matrix(0.159922,0.006403,-0.010002,0.249800,0,0);-ms-transform:matrix(0.159922,0.006403,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.159922,0.006403,-0.010002,0.249800,0,0);}
.m36_c00042{transform:matrix(0.160807,0.007566,-0.011749,0.249724,0,0);-ms-transform:matrix(0.160807,0.007566,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.160807,0.007566,-0.011749,0.249724,0,0);}
.m81_c00042{transform:matrix(0.161703,0.008579,-0.013245,0.249649,0,0);-ms-transform:matrix(0.161703,0.008579,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.161703,0.008579,-0.013245,0.249649,0,0);}
.m29_c00042{transform:matrix(0.162063,0.008760,-0.013494,0.249636,0,0);-ms-transform:matrix(0.162063,0.008760,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.162063,0.008760,-0.013494,0.249636,0,0);}
.m1b_c00042{transform:matrix(0.162225,0.008444,-0.012995,0.249662,0,0);-ms-transform:matrix(0.162225,0.008444,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.162225,0.008444,-0.012995,0.249662,0,0);}
.m3_c00042{transform:matrix(0.162535,0.006508,-0.010002,0.249800,0,0);-ms-transform:matrix(0.162535,0.006508,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.162535,0.006508,-0.010002,0.249800,0,0);}
.m83_c00042{transform:matrix(0.163715,0.008686,-0.013245,0.249649,0,0);-ms-transform:matrix(0.163715,0.008686,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.163715,0.008686,-0.013245,0.249649,0,0);}
.m7_c00042{transform:matrix(0.164358,0.006581,-0.010002,0.249800,0,0);-ms-transform:matrix(0.164358,0.006581,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.164358,0.006581,-0.010002,0.249800,0,0);}
.m25_c00042{transform:matrix(0.164455,0.008889,-0.013494,0.249636,0,0);-ms-transform:matrix(0.164455,0.008889,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.164455,0.008889,-0.013494,0.249636,0,0);}
.m55_c00042{transform:matrix(0.165502,0.008780,-0.013245,0.249649,0,0);-ms-transform:matrix(0.165502,0.008780,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.165502,0.008780,-0.013245,0.249649,0,0);}
.m2_c00042{transform:matrix(0.165637,0.006632,-0.010002,0.249800,0,0);-ms-transform:matrix(0.165637,0.006632,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.165637,0.006632,-0.010002,0.249800,0,0);}
.m73_c00042{transform:matrix(0.165642,0.008788,-0.013245,0.249649,0,0);-ms-transform:matrix(0.165642,0.008788,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.165642,0.008788,-0.013245,0.249649,0,0);}
.mb_c00042{transform:matrix(0.167351,0.006701,-0.010002,0.249800,0,0);-ms-transform:matrix(0.167351,0.006701,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.167351,0.006701,-0.010002,0.249800,0,0);}
.md2_c00042{transform:matrix(0.167525,0.007211,-0.010751,0.249769,0,0);-ms-transform:matrix(0.167525,0.007211,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.167525,0.007211,-0.010751,0.249769,0,0);}
.m35_c00042{transform:matrix(0.167535,0.007882,-0.011749,0.249724,0,0);-ms-transform:matrix(0.167535,0.007882,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.167535,0.007882,-0.011749,0.249724,0,0);}
.m21_c00042{transform:matrix(0.167650,0.009062,-0.013494,0.249636,0,0);-ms-transform:matrix(0.167650,0.009062,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.167650,0.009062,-0.013494,0.249636,0,0);}
.m22_c00042{transform:matrix(0.168135,0.009088,-0.013494,0.249636,0,0);-ms-transform:matrix(0.168135,0.009088,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.168135,0.009088,-0.013494,0.249636,0,0);}
.mc_c00042{transform:matrix(0.168680,0.006754,-0.010002,0.249800,0,0);-ms-transform:matrix(0.168680,0.006754,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.168680,0.006754,-0.010002,0.249800,0,0);}
.maa_c00042{transform:matrix(0.169312,0.008983,-0.013245,0.249649,0,0);-ms-transform:matrix(0.169312,0.008983,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.169312,0.008983,-0.013245,0.249649,0,0);}
.m4f_c00042{transform:matrix(0.169866,0.009012,-0.013245,0.249649,0,0);-ms-transform:matrix(0.169866,0.009012,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.169866,0.009012,-0.013245,0.249649,0,0);}
.mb1_c00042{transform:matrix(0.172208,0.009136,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172208,0.009136,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172208,0.009136,-0.013245,0.249649,0,0);}
.m32_c00042{transform:matrix(0.172424,0.008112,-0.011749,0.249724,0,0);-ms-transform:matrix(0.172424,0.008112,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.172424,0.008112,-0.011749,0.249724,0,0);}
.m82_c00042{transform:matrix(0.172877,0.009172,-0.013245,0.249649,0,0);-ms-transform:matrix(0.172877,0.009172,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.172877,0.009172,-0.013245,0.249649,0,0);}
.mb0_c00042{transform:matrix(0.173077,0.009182,-0.013245,0.249649,0,0);-ms-transform:matrix(0.173077,0.009182,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.173077,0.009182,-0.013245,0.249649,0,0);}
.m2b_c00042{transform:matrix(0.173422,0.009374,-0.013494,0.249636,0,0);-ms-transform:matrix(0.173422,0.009374,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.173422,0.009374,-0.013494,0.249636,0,0);}
.m63_c00042{transform:matrix(0.173856,0.009224,-0.013245,0.249649,0,0);-ms-transform:matrix(0.173856,0.009224,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.173856,0.009224,-0.013245,0.249649,0,0);}
.m3c_c00042{transform:matrix(0.174930,0.010342,-0.014754,0.249564,0,0);-ms-transform:matrix(0.174930,0.010342,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.174930,0.010342,-0.014754,0.249564,0,0);}
.mc1_c00042{transform:matrix(0.175263,0.007544,-0.010751,0.249769,0,0);-ms-transform:matrix(0.175263,0.007544,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.175263,0.007544,-0.010751,0.249769,0,0);}
.m8f_c00042{transform:matrix(0.175503,0.009311,-0.013245,0.249649,0,0);-ms-transform:matrix(0.175503,0.009311,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.175503,0.009311,-0.013245,0.249649,0,0);}
.m27_c00042{transform:matrix(0.176213,0.009525,-0.013494,0.249636,0,0);-ms-transform:matrix(0.176213,0.009525,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.176213,0.009525,-0.013494,0.249636,0,0);}
.m3d_c00042{transform:matrix(0.176766,0.010450,-0.014754,0.249564,0,0);-ms-transform:matrix(0.176766,0.010450,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.176766,0.010450,-0.014754,0.249564,0,0);}
.mba_c00042{transform:matrix(0.176797,0.015088,-0.021258,0.249095,0,0);-ms-transform:matrix(0.176797,0.015088,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.176797,0.015088,-0.021258,0.249095,0,0);}
.m67_c00042{transform:matrix(0.176901,0.009385,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176901,0.009385,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176901,0.009385,-0.013245,0.249649,0,0);}
.m0_c00042{transform:matrix(0.177013,0.007088,-0.010002,0.249800,0,0);-ms-transform:matrix(0.177013,0.007088,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.177013,0.007088,-0.010002,0.249800,0,0);}
.m34_c00042{transform:matrix(0.177334,0.008343,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177334,0.008343,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177334,0.008343,-0.011749,0.249724,0,0);}
.m95_c00042{transform:matrix(0.177695,0.009427,-0.013245,0.249649,0,0);-ms-transform:matrix(0.177695,0.009427,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.177695,0.009427,-0.013245,0.249649,0,0);}
.m2a_c00042{transform:matrix(0.177970,0.009620,-0.013494,0.249636,0,0);-ms-transform:matrix(0.177970,0.009620,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.177970,0.009620,-0.013494,0.249636,0,0);}
.m2f_c00042{transform:matrix(0.179117,0.008427,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179117,0.008427,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179117,0.008427,-0.011749,0.249724,0,0);}
.m42_c00042{transform:matrix(0.179162,0.010592,-0.014754,0.249564,0,0);-ms-transform:matrix(0.179162,0.010592,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.179162,0.010592,-0.014754,0.249564,0,0);}
.mcd_c00042{transform:matrix(0.179384,0.007721,-0.010751,0.249769,0,0);-ms-transform:matrix(0.179384,0.007721,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.179384,0.007721,-0.010751,0.249769,0,0);}
.m33_c00042{transform:matrix(0.180460,0.008490,-0.011749,0.249724,0,0);-ms-transform:matrix(0.180460,0.008490,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.180460,0.008490,-0.011749,0.249724,0,0);}
.m1e_c00042{transform:matrix(0.180472,0.009755,-0.013494,0.249636,0,0);-ms-transform:matrix(0.180472,0.009755,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.180472,0.009755,-0.013494,0.249636,0,0);}
.me_c00042{transform:matrix(0.180925,0.007244,-0.010002,0.249800,0,0);-ms-transform:matrix(0.180925,0.007244,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.180925,0.007244,-0.010002,0.249800,0,0);}
.mf_c00042{transform:matrix(0.181135,0.007253,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181135,0.007253,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181135,0.007253,-0.010002,0.249800,0,0);}
.m9d_c00042{transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181305,0.009619,-0.013245,0.249649,0,0);}
.m3b_c00042{transform:matrix(0.181358,0.010722,-0.014754,0.249564,0,0);-ms-transform:matrix(0.181358,0.010722,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.181358,0.010722,-0.014754,0.249564,0,0);}
.m5c_c00042{transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);}
.m92_c00042{transform:matrix(0.182174,0.009665,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182174,0.009665,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182174,0.009665,-0.013245,0.249649,0,0);}
.m31_c00042{transform:matrix(0.182353,0.008579,-0.011749,0.249724,0,0);-ms-transform:matrix(0.182353,0.008579,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.182353,0.008579,-0.011749,0.249724,0,0);}
.m47_c00042{transform:matrix(0.183055,0.010822,-0.014754,0.249564,0,0);-ms-transform:matrix(0.183055,0.010822,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.183055,0.010822,-0.014754,0.249564,0,0);}
.m11_c00042{transform:matrix(0.183342,0.009543,-0.012995,0.249662,0,0);-ms-transform:matrix(0.183342,0.009543,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.183342,0.009543,-0.012995,0.249662,0,0);}
.mcc_c00042{transform:matrix(0.183445,0.007896,-0.010751,0.249769,0,0);-ms-transform:matrix(0.183445,0.007896,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.183445,0.007896,-0.010751,0.249769,0,0);}
.m6d_c00042{transform:matrix(0.184401,0.009783,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184401,0.009783,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184401,0.009783,-0.013245,0.249649,0,0);}
.m53_c00042{transform:matrix(0.185070,0.009819,-0.013245,0.249649,0,0);-ms-transform:matrix(0.185070,0.009819,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.185070,0.009819,-0.013245,0.249649,0,0);}
.m75_c00042{transform:matrix(0.185729,0.009853,-0.013245,0.249649,0,0);-ms-transform:matrix(0.185729,0.009853,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.185729,0.009853,-0.013245,0.249649,0,0);}
.m54_c00042{transform:matrix(0.185958,0.009866,-0.013245,0.249649,0,0);-ms-transform:matrix(0.185958,0.009866,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.185958,0.009866,-0.013245,0.249649,0,0);}
.m38_c00042{transform:matrix(0.186019,0.008752,-0.011749,0.249724,0,0);-ms-transform:matrix(0.186019,0.008752,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.186019,0.008752,-0.011749,0.249724,0,0);}
.mb7_c00042{transform:matrix(0.186328,0.015901,-0.021258,0.249095,0,0);-ms-transform:matrix(0.186328,0.015901,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.186328,0.015901,-0.021258,0.249095,0,0);}
.m97_c00042{transform:matrix(0.186463,0.009892,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186463,0.009892,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186463,0.009892,-0.013245,0.249649,0,0);}
.m77_c00042{transform:matrix(0.186623,0.009901,-0.013245,0.249649,0,0);-ms-transform:matrix(0.186623,0.009901,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.186623,0.009901,-0.013245,0.249649,0,0);}
.m1d_c00042{transform:matrix(0.187152,0.010116,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187152,0.010116,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187152,0.010116,-0.013494,0.249636,0,0);}
.m58_c00042{transform:matrix(0.187352,0.009940,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187352,0.009940,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187352,0.009940,-0.013245,0.249649,0,0);}
.m9b_c00042{transform:matrix(0.187491,0.009947,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187491,0.009947,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187491,0.009947,-0.013245,0.249649,0,0);}
.m76_c00042{transform:matrix(0.187746,0.009960,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187746,0.009960,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187746,0.009960,-0.013245,0.249649,0,0);}
.md_c00042{transform:matrix(0.187879,0.007523,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187879,0.007523,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187879,0.007523,-0.010002,0.249800,0,0);}
.m6c_c00042{transform:matrix(0.187926,0.009970,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187926,0.009970,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187926,0.009970,-0.013245,0.249649,0,0);}
.m74_c00042{transform:matrix(0.188280,0.009989,-0.013245,0.249649,0,0);-ms-transform:matrix(0.188280,0.009989,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.188280,0.009989,-0.013245,0.249649,0,0);}
.m17_c00042{transform:matrix(0.188320,0.009802,-0.012995,0.249662,0,0);-ms-transform:matrix(0.188320,0.009802,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.188320,0.009802,-0.012995,0.249662,0,0);}
.m6b_c00042{transform:matrix(0.189733,0.010066,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189733,0.010066,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189733,0.010066,-0.013245,0.249649,0,0);}
.m51_c00042{transform:matrix(0.189753,0.010067,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189753,0.010067,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189753,0.010067,-0.013245,0.249649,0,0);}
.mc5_c00042{transform:matrix(0.190034,0.008180,-0.010751,0.249769,0,0);-ms-transform:matrix(0.190034,0.008180,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.190034,0.008180,-0.010751,0.249769,0,0);}
.m3a_c00042{transform:matrix(0.190627,0.011270,-0.014754,0.249564,0,0);-ms-transform:matrix(0.190627,0.011270,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.190627,0.011270,-0.014754,0.249564,0,0);}
.m8d_c00042{transform:matrix(0.190727,0.010119,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190727,0.010119,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190727,0.010119,-0.013245,0.249649,0,0);}
.m8_c00042{transform:matrix(0.190757,0.007638,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190757,0.007638,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190757,0.007638,-0.010002,0.249800,0,0);}
.m52_c00042{transform:matrix(0.190912,0.010128,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190912,0.010128,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190912,0.010128,-0.013245,0.249649,0,0);}
.m90_c00042{transform:matrix(0.190976,0.010132,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190976,0.010132,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190976,0.010132,-0.013245,0.249649,0,0);}
.mab_c00042{transform:matrix(0.191001,0.010133,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191001,0.010133,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191001,0.010133,-0.013245,0.249649,0,0);}
.m56_c00042{transform:matrix(0.191066,0.010137,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191066,0.010137,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191066,0.010137,-0.013245,0.249649,0,0);}
.m5a_c00042{transform:matrix(0.191481,0.010159,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191481,0.010159,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191481,0.010159,-0.013245,0.249649,0,0);}
.m84_c00042{transform:matrix(0.192919,0.010235,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192919,0.010235,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192919,0.010235,-0.013245,0.249649,0,0);}
.m3e_c00042{transform:matrix(0.192993,0.011409,-0.014754,0.249564,0,0);-ms-transform:matrix(0.192993,0.011409,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.192993,0.011409,-0.014754,0.249564,0,0);}
.m87_c00042{transform:matrix(0.193029,0.010241,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193029,0.010241,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193029,0.010241,-0.013245,0.249649,0,0);}
.mce_c00042{transform:matrix(0.193046,0.008309,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193046,0.008309,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193046,0.008309,-0.010751,0.249769,0,0);}
.mcf_c00042{transform:matrix(0.193081,0.008311,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193081,0.008311,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193081,0.008311,-0.010751,0.249769,0,0);}
.m19_c00042{transform:matrix(0.193144,0.010054,-0.012995,0.249662,0,0);-ms-transform:matrix(0.193144,0.010054,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.193144,0.010054,-0.012995,0.249662,0,0);}
.m9f_c00042{transform:matrix(0.193588,0.010270,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193588,0.010270,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193588,0.010270,-0.013245,0.249649,0,0);}
.m72_c00042{transform:matrix(0.194856,0.010338,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194856,0.010338,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194856,0.010338,-0.013245,0.249649,0,0);}
.ma7_c00042{transform:matrix(0.194916,0.010341,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194916,0.010341,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194916,0.010341,-0.013245,0.249649,0,0);}
.maf_c00042{transform:matrix(0.195001,0.010345,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195001,0.010345,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195001,0.010345,-0.013245,0.249649,0,0);}
.mc3_c00042{transform:matrix(0.195099,0.008398,-0.010751,0.249769,0,0);-ms-transform:matrix(0.195099,0.008398,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.195099,0.008398,-0.010751,0.249769,0,0);}
.m65_c00042{transform:matrix(0.196139,0.010406,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196139,0.010406,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196139,0.010406,-0.013245,0.249649,0,0);}
.mb9_c00042{transform:matrix(0.196257,0.016749,-0.021258,0.249095,0,0);-ms-transform:matrix(0.196257,0.016749,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.196257,0.016749,-0.021258,0.249095,0,0);}
.m50_c00042{transform:matrix(0.196439,0.010422,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196439,0.010422,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196439,0.010422,-0.013245,0.249649,0,0);}
.m7b_c00042{transform:matrix(0.196893,0.010446,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196893,0.010446,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196893,0.010446,-0.013245,0.249649,0,0);}
.md1_c00042{transform:matrix(0.196968,0.008478,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196968,0.008478,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196968,0.008478,-0.010751,0.249769,0,0);}
.mbb_c00042{transform:matrix(0.198095,0.016906,-0.021258,0.249095,0,0);-ms-transform:matrix(0.198095,0.016906,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.198095,0.016906,-0.021258,0.249095,0,0);}
.m59_c00042{transform:matrix(0.198156,0.010513,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198156,0.010513,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198156,0.010513,-0.013245,0.249649,0,0);}
.m9_c00042{transform:matrix(0.198741,0.007958,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198741,0.007958,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198741,0.007958,-0.010002,0.249800,0,0);}
.m64_c00042{transform:matrix(0.199514,0.010585,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199514,0.010585,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199514,0.010585,-0.013245,0.249649,0,0);}
.m5_c00042{transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);}
.m60_c00042{transform:matrix(0.200643,0.010645,-0.013245,0.249649,0,0);-ms-transform:matrix(0.200643,0.010645,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.200643,0.010645,-0.013245,0.249649,0,0);}
.mc6_c00042{transform:matrix(0.201169,0.008659,-0.010751,0.249769,0,0);-ms-transform:matrix(0.201169,0.008659,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.201169,0.008659,-0.010751,0.249769,0,0);}
.m93_c00042{transform:matrix(0.201577,0.010694,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201577,0.010694,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201577,0.010694,-0.013245,0.249649,0,0);}
.m61_c00042{transform:matrix(0.202300,0.010733,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202300,0.010733,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202300,0.010733,-0.013245,0.249649,0,0);}
.m30_c00042{transform:matrix(0.202466,0.009525,-0.011749,0.249724,0,0);-ms-transform:matrix(0.202466,0.009525,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.202466,0.009525,-0.011749,0.249724,0,0);}
.m88_c00042{transform:matrix(0.202490,0.010743,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202490,0.010743,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202490,0.010743,-0.013245,0.249649,0,0);}
.mb2_c00042{transform:matrix(0.202750,0.010756,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202750,0.010756,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202750,0.010756,-0.013245,0.249649,0,0);}
.m41_c00042{transform:matrix(0.202901,0.011995,-0.014754,0.249564,0,0);-ms-transform:matrix(0.202901,0.011995,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.202901,0.011995,-0.014754,0.249564,0,0);}
.mc0_c00042{transform:matrix(0.203427,0.008756,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203427,0.008756,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203427,0.008756,-0.010751,0.249769,0,0);}
.ma4_c00042{transform:matrix(0.203559,0.010799,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203559,0.010799,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203559,0.010799,-0.013245,0.249649,0,0);}
.m69_c00042{transform:matrix(0.203674,0.010806,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203674,0.010806,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203674,0.010806,-0.013245,0.249649,0,0);}
.m8e_c00042{transform:matrix(0.204368,0.010842,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204368,0.010842,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204368,0.010842,-0.013245,0.249649,0,0);}
.m5f_c00042{transform:matrix(0.204702,0.010860,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204702,0.010860,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204702,0.010860,-0.013245,0.249649,0,0);}
.ma1_c00042{transform:matrix(0.205047,0.010878,-0.013245,0.249649,0,0);-ms-transform:matrix(0.205047,0.010878,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.205047,0.010878,-0.013245,0.249649,0,0);}
.m4_c00042{transform:matrix(0.205440,0.008226,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205440,0.008226,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205440,0.008226,-0.010002,0.249800,0,0);}
.m39_c00042{transform:matrix(0.205476,0.012147,-0.014754,0.249564,0,0);-ms-transform:matrix(0.205476,0.012147,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.205476,0.012147,-0.014754,0.249564,0,0);}
.m6f_c00042{transform:matrix(0.205646,0.010910,-0.013245,0.249649,0,0);-ms-transform:matrix(0.205646,0.010910,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.205646,0.010910,-0.013245,0.249649,0,0);}
.mb3_c00042{transform:matrix(0.206495,0.010955,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206495,0.010955,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206495,0.010955,-0.013245,0.249649,0,0);}
.mc2_c00042{transform:matrix(0.206584,0.008892,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206584,0.008892,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206584,0.008892,-0.010751,0.249769,0,0);}
.mae_c00042{transform:matrix(0.206664,0.010964,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206664,0.010964,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206664,0.010964,-0.013245,0.249649,0,0);}
.m7c_c00042{transform:matrix(0.206684,0.010965,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206684,0.010965,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206684,0.010965,-0.013245,0.249649,0,0);}
.m91_c00042{transform:matrix(0.206694,0.010966,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206694,0.010966,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206694,0.010966,-0.013245,0.249649,0,0);}
.m8b_c00042{transform:matrix(0.206879,0.010976,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206879,0.010976,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206879,0.010976,-0.013245,0.249649,0,0);}
.m37_c00042{transform:matrix(0.207865,0.009779,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207865,0.009779,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207865,0.009779,-0.011749,0.249724,0,0);}
.m85_c00042{transform:matrix(0.208212,0.011046,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208212,0.011046,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208212,0.011046,-0.013245,0.249649,0,0);}
.md0_c00042{transform:matrix(0.208262,0.008964,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208262,0.008964,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208262,0.008964,-0.010751,0.249769,0,0);}
.m44_c00042{transform:matrix(0.208800,0.012344,-0.014754,0.249564,0,0);-ms-transform:matrix(0.208800,0.012344,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.208800,0.012344,-0.014754,0.249564,0,0);}
.mc8_c00042{transform:matrix(0.209376,0.009012,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209376,0.009012,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209376,0.009012,-0.010751,0.249769,0,0);}
.m2e_c00042{transform:matrix(0.209743,0.009868,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209743,0.009868,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209743,0.009868,-0.011749,0.249724,0,0);}
.mca_c00042{transform:matrix(0.209926,0.009036,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209926,0.009036,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209926,0.009036,-0.010751,0.249769,0,0);}
.m71_c00042{transform:matrix(0.210304,0.011157,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210304,0.011157,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210304,0.011157,-0.013245,0.249649,0,0);}
.mbe_c00042{transform:matrix(0.210480,0.009060,-0.010751,0.249769,0,0);-ms-transform:matrix(0.210480,0.009060,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.210480,0.009060,-0.010751,0.249769,0,0);}
.ma3_c00042{transform:matrix(0.211218,0.011206,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211218,0.011206,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211218,0.011206,-0.013245,0.249649,0,0);}
.m9e_c00042{transform:matrix(0.211642,0.011228,-0.013245,0.249649,0,0);-ms-transform:matrix(0.211642,0.011228,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.211642,0.011228,-0.013245,0.249649,0,0);}
.ma5_c00042{transform:matrix(0.212746,0.011287,-0.013245,0.249649,0,0);-ms-transform:matrix(0.212746,0.011287,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.212746,0.011287,-0.013245,0.249649,0,0);}
.m40_c00042{transform:matrix(0.213747,0.012636,-0.014754,0.249564,0,0);-ms-transform:matrix(0.213747,0.012636,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.213747,0.012636,-0.014754,0.249564,0,0);}
.m12_c00042{transform:matrix(0.213761,0.011127,-0.012995,0.249662,0,0);-ms-transform:matrix(0.213761,0.011127,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.213761,0.011127,-0.012995,0.249662,0,0);}
.m89_c00042{transform:matrix(0.214653,0.011388,-0.013245,0.249649,0,0);-ms-transform:matrix(0.214653,0.011388,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.214653,0.011388,-0.013245,0.249649,0,0);}
.m1_c00042{transform:matrix(0.215497,0.008629,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215497,0.008629,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215497,0.008629,-0.010002,0.249800,0,0);}
.m5d_c00042{transform:matrix(0.215687,0.011443,-0.013245,0.249649,0,0);-ms-transform:matrix(0.215687,0.011443,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.215687,0.011443,-0.013245,0.249649,0,0);}
.m8a_c00042{transform:matrix(0.215737,0.011445,-0.013245,0.249649,0,0);-ms-transform:matrix(0.215737,0.011445,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.215737,0.011445,-0.013245,0.249649,0,0);}
.m16_c00042{transform:matrix(0.215888,0.011237,-0.012995,0.249662,0,0);-ms-transform:matrix(0.215888,0.011237,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.215888,0.011237,-0.012995,0.249662,0,0);}
.m4a_c00042{transform:matrix(0.215894,0.014710,-0.016995,0.249422,0,0);-ms-transform:matrix(0.215894,0.014710,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.215894,0.014710,-0.016995,0.249422,0,0);}
.m46_c00042{transform:matrix(0.215973,0.012768,-0.014754,0.249564,0,0);-ms-transform:matrix(0.215973,0.012768,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.215973,0.012768,-0.014754,0.249564,0,0);}
.m3f_c00042{transform:matrix(0.216038,0.012772,-0.014754,0.249564,0,0);-ms-transform:matrix(0.216038,0.012772,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.216038,0.012772,-0.014754,0.249564,0,0);}
.m9c_c00042{transform:matrix(0.217419,0.011535,-0.013245,0.249649,0,0);-ms-transform:matrix(0.217419,0.011535,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.217419,0.011535,-0.013245,0.249649,0,0);}
.m70_c00042{transform:matrix(0.217564,0.011542,-0.013245,0.249649,0,0);-ms-transform:matrix(0.217564,0.011542,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.217564,0.011542,-0.013245,0.249649,0,0);}
.mb8_c00042{transform:matrix(0.217659,0.018575,-0.021258,0.249095,0,0);-ms-transform:matrix(0.217659,0.018575,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.217659,0.018575,-0.021258,0.249095,0,0);}
.m14_c00042{transform:matrix(0.217840,0.011339,-0.012995,0.249662,0,0);-ms-transform:matrix(0.217840,0.011339,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.217840,0.011339,-0.012995,0.249662,0,0);}
.m5b_c00042{transform:matrix(0.218018,0.011567,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218018,0.011567,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218018,0.011567,-0.013245,0.249649,0,0);}
.m98_c00042{transform:matrix(0.218413,0.011587,-0.013245,0.249649,0,0);-ms-transform:matrix(0.218413,0.011587,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.218413,0.011587,-0.013245,0.249649,0,0);}
.m57_c00042{transform:matrix(0.219017,0.011620,-0.013245,0.249649,0,0);-ms-transform:matrix(0.219017,0.011620,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.219017,0.011620,-0.013245,0.249649,0,0);}
.m4d_c00042{transform:matrix(0.220284,0.015009,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220284,0.015009,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220284,0.015009,-0.016995,0.249422,0,0);}
.m7a_c00042{transform:matrix(0.220989,0.011724,-0.013245,0.249649,0,0);-ms-transform:matrix(0.220989,0.011724,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.220989,0.011724,-0.013245,0.249649,0,0);}
.m48_c00042{transform:matrix(0.221339,0.013085,-0.014754,0.249564,0,0);-ms-transform:matrix(0.221339,0.013085,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.221339,0.013085,-0.014754,0.249564,0,0);}
.m78_c00042{transform:matrix(0.222222,0.011790,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222222,0.011790,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222222,0.011790,-0.013245,0.249649,0,0);}
.mad_c00042{transform:matrix(0.222467,0.011803,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222467,0.011803,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222467,0.011803,-0.013245,0.249649,0,0);}
.ma_c00042{transform:matrix(0.222667,0.008916,-0.010002,0.249800,0,0);-ms-transform:matrix(0.222667,0.008916,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.222667,0.008916,-0.010002,0.249800,0,0);}
.m62_c00042{transform:matrix(0.223076,0.011835,-0.013245,0.249649,0,0);-ms-transform:matrix(0.223076,0.011835,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.223076,0.011835,-0.013245,0.249649,0,0);}
.ma6_c00042{transform:matrix(0.224929,0.011933,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224929,0.011933,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224929,0.011933,-0.013245,0.249649,0,0);}
.ma9_c00042{transform:matrix(0.224989,0.011936,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224989,0.011936,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224989,0.011936,-0.013245,0.249649,0,0);}
.m7d_c00042{transform:matrix(0.225653,0.011972,-0.013245,0.249649,0,0);-ms-transform:matrix(0.225653,0.011972,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.225653,0.011972,-0.013245,0.249649,0,0);}
.m94_c00042{transform:matrix(0.226307,0.012006,-0.013245,0.249649,0,0);-ms-transform:matrix(0.226307,0.012006,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.226307,0.012006,-0.013245,0.249649,0,0);}
.ma8_c00042{transform:matrix(0.227156,0.012051,-0.013245,0.249649,0,0);-ms-transform:matrix(0.227156,0.012051,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.227156,0.012051,-0.013245,0.249649,0,0);}
.mc7_c00042{transform:matrix(0.227704,0.009801,-0.010751,0.249769,0,0);-ms-transform:matrix(0.227704,0.009801,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.227704,0.009801,-0.010751,0.249769,0,0);}
.m45_c00042{transform:matrix(0.227932,0.013475,-0.014754,0.249564,0,0);-ms-transform:matrix(0.227932,0.013475,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.227932,0.013475,-0.014754,0.249564,0,0);}
.mac_c00042{transform:matrix(0.228149,0.012104,-0.013245,0.249649,0,0);-ms-transform:matrix(0.228149,0.012104,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.228149,0.012104,-0.013245,0.249649,0,0);}
.m99_c00042{transform:matrix(0.228559,0.012126,-0.013245,0.249649,0,0);-ms-transform:matrix(0.228559,0.012126,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.228559,0.012126,-0.013245,0.249649,0,0);}
.mb5_c00042{transform:matrix(0.229037,0.019546,-0.021258,0.249095,0,0);-ms-transform:matrix(0.229037,0.019546,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.229037,0.019546,-0.021258,0.249095,0,0);}
.mc9_c00042{transform:matrix(0.229058,0.009859,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229058,0.009859,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229058,0.009859,-0.010751,0.249769,0,0);}
.mc4_c00042{transform:matrix(0.229113,0.009862,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229113,0.009862,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229113,0.009862,-0.010751,0.249769,0,0);}
.m7f_c00042{transform:matrix(0.229492,0.012175,-0.013245,0.249649,0,0);-ms-transform:matrix(0.229492,0.012175,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.229492,0.012175,-0.013245,0.249649,0,0);}
.m8c_c00042{transform:matrix(0.230381,0.012222,-0.013245,0.249649,0,0);-ms-transform:matrix(0.230381,0.012222,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.230381,0.012222,-0.013245,0.249649,0,0);}
.m7e_c00042{transform:matrix(0.230556,0.012232,-0.013245,0.249649,0,0);-ms-transform:matrix(0.230556,0.012232,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.230556,0.012232,-0.013245,0.249649,0,0);}
.m43_c00042{transform:matrix(0.230822,0.013646,-0.014754,0.249564,0,0);-ms-transform:matrix(0.230822,0.013646,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.230822,0.013646,-0.014754,0.249564,0,0);}
.ma0_c00042{transform:matrix(0.231265,0.012269,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231265,0.012269,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231265,0.012269,-0.013245,0.249649,0,0);}
.mbc_c00042{transform:matrix(0.231673,0.019771,-0.021258,0.249095,0,0);-ms-transform:matrix(0.231673,0.019771,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.231673,0.019771,-0.021258,0.249095,0,0);}
.m18_c00042{transform:matrix(0.231761,0.012064,-0.012995,0.249662,0,0);-ms-transform:matrix(0.231761,0.012064,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.231761,0.012064,-0.012995,0.249662,0,0);}
.m4c_c00042{transform:matrix(0.232900,0.015869,-0.016995,0.249422,0,0);-ms-transform:matrix(0.232900,0.015869,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.232900,0.015869,-0.016995,0.249422,0,0);}
.m5e_c00042{transform:matrix(0.233307,0.012378,-0.013245,0.249649,0,0);-ms-transform:matrix(0.233307,0.012378,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.233307,0.012378,-0.013245,0.249649,0,0);}
.m79_c00042{transform:matrix(0.234730,0.012453,-0.013245,0.249649,0,0);-ms-transform:matrix(0.234730,0.012453,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.234730,0.012453,-0.013245,0.249649,0,0);}
.m6e_c00042{transform:matrix(0.236213,0.012532,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236213,0.012532,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236213,0.012532,-0.013245,0.249649,0,0);}
.m10_c00042{transform:matrix(0.236785,0.009481,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236785,0.009481,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236785,0.009481,-0.010002,0.249800,0,0);}
.m49_c00042{transform:matrix(0.236841,0.014002,-0.014754,0.249564,0,0);-ms-transform:matrix(0.236841,0.014002,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.236841,0.014002,-0.014754,0.249564,0,0);}
.m9a_c00042{transform:matrix(0.237531,0.012602,-0.013245,0.249649,0,0);-ms-transform:matrix(0.237531,0.012602,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.237531,0.012602,-0.013245,0.249649,0,0);}
.mbf_c00042{transform:matrix(0.237910,0.010240,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237910,0.010240,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237910,0.010240,-0.010751,0.249769,0,0);}
.m15_c00042{transform:matrix(0.238342,0.012406,-0.012995,0.249662,0,0);-ms-transform:matrix(0.238342,0.012406,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.238342,0.012406,-0.012995,0.249662,0,0);}
.m1a_c00042{transform:matrix(0.240350,0.012511,-0.012995,0.249662,0,0);-ms-transform:matrix(0.240350,0.012511,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.240350,0.012511,-0.012995,0.249662,0,0);}
.mb6_c00042{transform:matrix(0.243365,0.020769,-0.021258,0.249095,0,0);-ms-transform:matrix(0.243365,0.020769,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.243365,0.020769,-0.021258,0.249095,0,0);}
.m4b_c00042{transform:matrix(0.249162,0.016977,-0.016995,0.249422,0,0);-ms-transform:matrix(0.249162,0.016977,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.249162,0.016977,-0.016995,0.249422,0,0);}
.mbd_c00042{transform:matrix(0.251815,0.021490,-0.021258,0.249095,0,0);-ms-transform:matrix(0.251815,0.021490,-0.021258,0.249095,0,0);-webkit-transform:matrix(0.251815,0.021490,-0.021258,0.249095,0,0);}
.m96_c00042{transform:matrix(0.252375,0.013389,-0.013245,0.249649,0,0);-ms-transform:matrix(0.252375,0.013389,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.252375,0.013389,-0.013245,0.249649,0,0);}
.m13_c00042{transform:matrix(0.253801,0.013211,-0.012995,0.249662,0,0);-ms-transform:matrix(0.253801,0.013211,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.253801,0.013211,-0.012995,0.249662,0,0);}
.mcb_c00042{transform:matrix(0.272603,0.011734,-0.010751,0.249769,0,0);-ms-transform:matrix(0.272603,0.011734,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.272603,0.011734,-0.010751,0.249769,0,0);}
.m4e_c00042{transform:matrix(0.281303,0.019167,-0.016995,0.249422,0,0);-ms-transform:matrix(0.281303,0.019167,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.281303,0.019167,-0.016995,0.249422,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:0.000000px;}
.fc0_c00042{color:transparent;}
.fs1a_c00042{font-size:53.529674px;}
.fs19_c00042{font-size:54.579275px;}
.fs1d_c00042{font-size:54.595905px;}
.fs16_c00042{font-size:54.622109px;}
.fsa_c00042{font-size:55.635668px;}
.fs1c_c00042{font-size:55.645826px;}
.fs13_c00042{font-size:55.672534px;}
.fs0_c00042{font-size:56.688687px;}
.fs3_c00042{font-size:56.719983px;}
.fsb_c00042{font-size:57.735127px;}
.fsc_c00042{font-size:57.768131px;}
.fs4_c00042{font-size:57.770353px;}
.fs1b_c00042{font-size:58.795590px;}
.fs11_c00042{font-size:58.823809px;}
.fs17_c00042{font-size:59.874234px;}
.fs9_c00042{font-size:60.884316px;}
.fsf_c00042{font-size:60.924660px;}
.fs18_c00042{font-size:61.975085px;}
.fs1e_c00042{font-size:64.045196px;}
.fs15_c00042{font-size:64.075935px;}
.fse_c00042{font-size:65.126360px;}
.fs8_c00042{font-size:66.132964px;}
.fs12_c00042{font-size:66.176785px;}
.fs7_c00042{font-size:67.207056px;}
.fs14_c00042{font-size:67.227210px;}
.fs10_c00042{font-size:68.277636px;}
.fs1_c00042{font-size:69.286173px;}
.fs6_c00042{font-size:69.331767px;}
.fs2_c00042{font-size:70.335964px;}
.fsd_c00042{font-size:71.428911px;}
.fs5_c00042{font-size:75.634655px;}
.y0_c00042{bottom:0.000000px;}
.yd6_c00042{bottom:28.547586px;}
.yd5_c00042{bottom:29.734833px;}
.yd4_c00042{bottom:32.369981px;}
.yd3_c00042{bottom:33.187436px;}
.yd2_c00042{bottom:35.142002px;}
.yd1_c00042{bottom:35.782688px;}
.yd0_c00042{bottom:36.746433px;}
.yc1_c00042{bottom:39.257897px;}
.yc0_c00042{bottom:42.920231px;}
.ybf_c00042{bottom:44.367711px;}
.ybe_c00042{bottom:45.967227px;}
.ycf_c00042{bottom:47.616230px;}
.yce_c00042{bottom:49.270513px;}
.ycd_c00042{bottom:50.918154px;}
.ycc_c00042{bottom:53.168424px;}
.ycb_c00042{bottom:54.289689px;}
.ybd_c00042{bottom:59.355532px;}
.yca_c00042{bottom:62.871777px;}
.yc9_c00042{bottom:63.771246px;}
.ybc_c00042{bottom:63.806144px;}
.yc8_c00042{bottom:66.027329px;}
.yc7_c00042{bottom:66.809210px;}
.yc6_c00042{bottom:68.594667px;}
.ybb_c00042{bottom:71.373255px;}
.yba_c00042{bottom:74.390798px;}
.yc5_c00042{bottom:79.119156px;}
.yc4_c00042{bottom:80.224106px;}
.yb9_c00042{bottom:80.527500px;}
.yc3_c00042{bottom:83.692142px;}
.yc2_c00042{bottom:85.612500px;}
.yb8_c00042{bottom:87.637524px;}
.yb7_c00042{bottom:90.448788px;}
.yb6_c00042{bottom:93.702962px;}
.yb5_c00042{bottom:95.251998px;}
.yb4_c00042{bottom:97.376372px;}
.yb3_c00042{bottom:98.897192px;}
.yb2_c00042{bottom:100.016687px;}
.yb1_c00042{bottom:103.734092px;}
.yb0_c00042{bottom:104.435976px;}
.yaf_c00042{bottom:108.081120px;}
.yae_c00042{bottom:109.235559px;}
.yad_c00042{bottom:110.674908px;}
.yac_c00042{bottom:111.920346px;}
.yaa_c00042{bottom:112.126937px;}
.ya9_c00042{bottom:113.740248px;}
.yab_c00042{bottom:114.168149px;}
.ya8_c00042{bottom:115.955591px;}
.ya7_c00042{bottom:119.593940px;}
.ya6_c00042{bottom:121.119321px;}
.ya5_c00042{bottom:125.300502px;}
.ya4_c00042{bottom:129.302166px;}
.ya3_c00042{bottom:134.483447px;}
.ya2_c00042{bottom:142.997538px;}
.ya1_c00042{bottom:145.647497px;}
.ya0_c00042{bottom:147.948149px;}
.y9f_c00042{bottom:148.092839px;}
.y9e_c00042{bottom:149.050538px;}
.y9d_c00042{bottom:150.816750px;}
.y9c_c00042{bottom:152.083211px;}
.y9b_c00042{bottom:156.206630px;}
.y9a_c00042{bottom:157.186418px;}
.y99_c00042{bottom:159.919869px;}
.y98_c00042{bottom:160.761773px;}
.y97_c00042{bottom:161.344101px;}
.y96_c00042{bottom:162.779213px;}
.y95_c00042{bottom:164.884521px;}
.y94_c00042{bottom:165.618041px;}
.y93_c00042{bottom:168.914705px;}
.y92_c00042{bottom:172.602960px;}
.y91_c00042{bottom:174.213719px;}
.y90_c00042{bottom:175.735815px;}
.y8f_c00042{bottom:176.411018px;}
.y8e_c00042{bottom:179.522897px;}
.y8d_c00042{bottom:181.982876px;}
.y8c_c00042{bottom:183.065346px;}
.y8b_c00042{bottom:189.173861px;}
.y8a_c00042{bottom:193.994088px;}
.y89_c00042{bottom:196.804677px;}
.y88_c00042{bottom:200.831484px;}
.y87_c00042{bottom:202.550904px;}
.y86_c00042{bottom:203.469231px;}
.y85_c00042{bottom:207.490334px;}
.y84_c00042{bottom:209.014125px;}
.y83_c00042{bottom:212.030171px;}
.y82_c00042{bottom:213.428154px;}
.y81_c00042{bottom:214.629396px;}
.y80_c00042{bottom:216.846165px;}
.y7f_c00042{bottom:219.446651px;}
.y7e_c00042{bottom:221.221457px;}
.y7d_c00042{bottom:223.918940px;}
.y7c_c00042{bottom:224.938547px;}
.y7b_c00042{bottom:228.732465px;}
.y7a_c00042{bottom:231.118286px;}
.y79_c00042{bottom:231.968906px;}
.y78_c00042{bottom:233.049998px;}
.y77_c00042{bottom:236.459798px;}
.y76_c00042{bottom:238.768404px;}
.y75_c00042{bottom:243.649127px;}
.y74_c00042{bottom:244.590474px;}
.y73_c00042{bottom:248.126583px;}
.y72_c00042{bottom:248.293175px;}
.y71_c00042{bottom:249.977321px;}
.y70_c00042{bottom:253.440054px;}
.y6f_c00042{bottom:257.901179px;}
.y6e_c00042{bottom:259.241175px;}
.y6d_c00042{bottom:263.841372px;}
.y6b_c00042{bottom:265.292303px;}
.y6c_c00042{bottom:265.683182px;}
.y6a_c00042{bottom:267.436320px;}
.y69_c00042{bottom:269.779758px;}
.y68_c00042{bottom:272.949053px;}
.y67_c00042{bottom:273.748619px;}
.y66_c00042{bottom:274.524120px;}
.y65_c00042{bottom:280.949348px;}
.y64_c00042{bottom:282.983616px;}
.y63_c00042{bottom:285.067644px;}
.y62_c00042{bottom:287.144079px;}
.y61_c00042{bottom:289.798197px;}
.y60_c00042{bottom:290.956334px;}
.y5f_c00042{bottom:291.778692px;}
.y5e_c00042{bottom:295.595864px;}
.y5d_c00042{bottom:296.596599px;}
.y5c_c00042{bottom:297.252426px;}
.y5b_c00042{bottom:300.270747px;}
.y5a_c00042{bottom:306.747746px;}
.y59_c00042{bottom:309.799638px;}
.y58_c00042{bottom:314.967482px;}
.y57_c00042{bottom:317.276883px;}
.y56_c00042{bottom:317.825370px;}
.y55_c00042{bottom:318.596361px;}
.y54_c00042{bottom:323.488950px;}
.y53_c00042{bottom:327.074956px;}
.y52_c00042{bottom:328.568682px;}
.y51_c00042{bottom:331.794554px;}
.y50_c00042{bottom:332.941500px;}
.y4f_c00042{bottom:376.007568px;}
.y4e_c00042{bottom:377.404662px;}
.y4d_c00042{bottom:378.282270px;}
.y4c_c00042{bottom:381.012300px;}
.y4b_c00042{bottom:382.374000px;}
.y4a_c00042{bottom:394.147785px;}
.y49_c00042{bottom:399.116937px;}
.y48_c00042{bottom:407.294770px;}
.y47_c00042{bottom:409.314379px;}
.y46_c00042{bottom:416.387959px;}
.y45_c00042{bottom:416.737512px;}
.y44_c00042{bottom:417.506269px;}
.y43_c00042{bottom:420.869677px;}
.y42_c00042{bottom:422.005858px;}
.y41_c00042{bottom:425.937276px;}
.y40_c00042{bottom:428.835453px;}
.y3f_c00042{bottom:431.630416px;}
.y3e_c00042{bottom:433.120753px;}
.y3d_c00042{bottom:442.140098px;}
.y3c_c00042{bottom:446.657314px;}
.y3b_c00042{bottom:447.868702px;}
.y3a_c00042{bottom:449.305500px;}
.y39_c00042{bottom:459.084834px;}
.y38_c00042{bottom:460.927380px;}
.y37_c00042{bottom:462.745461px;}
.y36_c00042{bottom:464.361652px;}
.y35_c00042{bottom:466.336659px;}
.y34_c00042{bottom:468.980423px;}
.y33_c00042{bottom:469.939434px;}
.y32_c00042{bottom:472.738425px;}
.y31_c00042{bottom:475.834785px;}
.y30_c00042{bottom:478.289031px;}
.y2f_c00042{bottom:480.363000px;}
.y2e_c00042{bottom:487.857369px;}
.y2d_c00042{bottom:488.732128px;}
.y2c_c00042{bottom:491.522619px;}
.y2b_c00042{bottom:495.196374px;}
.y2a_c00042{bottom:497.388963px;}
.y29_c00042{bottom:498.578003px;}
.y28_c00042{bottom:499.569280px;}
.y27_c00042{bottom:500.869492px;}
.y26_c00042{bottom:503.470605px;}
.y25_c00042{bottom:504.316164px;}
.y24_c00042{bottom:505.933734px;}
.y23_c00042{bottom:508.187559px;}
.y22_c00042{bottom:509.715057px;}
.y21_c00042{bottom:513.132447px;}
.y20_c00042{bottom:514.081929px;}
.y1f_c00042{bottom:514.766217px;}
.y1e_c00042{bottom:515.469378px;}
.y1d_c00042{bottom:517.345500px;}
.y1c_c00042{bottom:520.677868px;}
.y19_c00042{bottom:521.421072px;}
.y18_c00042{bottom:522.607608px;}
.y1b_c00042{bottom:524.364570px;}
.y17_c00042{bottom:526.300986px;}
.y16_c00042{bottom:526.893552px;}
.y1a_c00042{bottom:528.662905px;}
.y15_c00042{bottom:529.340490px;}
.y14_c00042{bottom:530.877012px;}
.y13_c00042{bottom:532.871472px;}
.y12_c00042{bottom:534.355500px;}
.y11_c00042{bottom:537.966774px;}
.y10_c00042{bottom:540.785327px;}
.yf_c00042{bottom:541.617539px;}
.ye_c00042{bottom:544.462188px;}
.yd_c00042{bottom:547.904600px;}
.yc_c00042{bottom:550.829939px;}
.yb_c00042{bottom:555.282483px;}
.ya_c00042{bottom:556.301396px;}
.y9_c00042{bottom:560.424500px;}
.y8_c00042{bottom:561.977795px;}
.y7_c00042{bottom:562.941818px;}
.y6_c00042{bottom:563.565524px;}
.y5_c00042{bottom:565.749963px;}
.y4_c00042{bottom:566.507323px;}
.y3_c00042{bottom:567.829481px;}
.y2_c00042{bottom:576.875940px;}
.y1_c00042{bottom:581.053500px;}
.h1c_c00042{height:53.529674px;}
.h1b_c00042{height:54.579275px;}
.h1f_c00042{height:54.595905px;}
.h18_c00042{height:54.622109px;}
.hc_c00042{height:55.635668px;}
.h1e_c00042{height:55.645826px;}
.h15_c00042{height:55.672534px;}
.h2_c00042{height:56.688687px;}
.h5_c00042{height:56.719983px;}
.hd_c00042{height:57.735127px;}
.he_c00042{height:57.768131px;}
.h6_c00042{height:57.770353px;}
.h1d_c00042{height:58.795590px;}
.h13_c00042{height:58.823809px;}
.h19_c00042{height:59.874234px;}
.hb_c00042{height:60.884316px;}
.h11_c00042{height:60.924660px;}
.h1a_c00042{height:61.975085px;}
.h20_c00042{height:64.045196px;}
.h17_c00042{height:64.075935px;}
.h10_c00042{height:65.126360px;}
.ha_c00042{height:66.132964px;}
.h14_c00042{height:66.176785px;}
.h9_c00042{height:67.207056px;}
.h16_c00042{height:67.227210px;}
.h12_c00042{height:68.277636px;}
.h3_c00042{height:69.286173px;}
.h8_c00042{height:69.331767px;}
.h4_c00042{height:70.335964px;}
.hf_c00042{height:71.428911px;}
.h7_c00042{height:75.634655px;}
.h1_c00042{height:616.500000px;}
.h0_c00042{height:616.650000px;}
.w1_c00042{width:363.750000px;}
.w0_c00042{width:363.900000px;}
.x0_c00042{left:0.000000px;}
.x6b_c00042{left:17.338309px;}
.x18_c00042{left:18.543976px;}
.x50_c00042{left:20.252631px;}
.x45_c00042{left:21.560496px;}
.x3b_c00042{left:22.583436px;}
.x2e_c00042{left:23.821767px;}
.x3_c00042{left:25.866529px;}
.x1b_c00042{left:27.600000px;}
.x57_c00042{left:40.064433px;}
.x66_c00042{left:41.326647px;}
.x3d_c00042{left:42.670950px;}
.x61_c00042{left:45.131877px;}
.x2a_c00042{left:47.904000px;}
.x32_c00042{left:49.227807px;}
.x24_c00042{left:50.429688px;}
.x4_c00042{left:52.814825px;}
.x11_c00042{left:54.224961px;}
.x62_c00042{left:55.711672px;}
.x1_c00042{left:57.964500px;}
.x54_c00042{left:60.644625px;}
.x1c_c00042{left:62.308257px;}
.x58_c00042{left:63.356023px;}
.x70_c00042{left:64.882875px;}
.x5_c00042{left:68.243795px;}
.x47_c00042{left:70.604757px;}
.x5d_c00042{left:73.019212px;}
.x1d_c00042{left:75.316735px;}
.x2f_c00042{left:80.777418px;}
.x3e_c00042{left:82.738155px;}
.x5e_c00042{left:84.641475px;}
.x1e_c00042{left:87.976063px;}
.xc_c00042{left:89.188788px;}
.x25_c00042{left:91.516250px;}
.x12_c00042{left:92.541606px;}
.x3f_c00042{left:95.618343px;}
.x3c_c00042{left:96.626115px;}
.x33_c00042{left:98.157017px;}
.x67_c00042{left:100.127574px;}
.x41_c00042{left:104.233494px;}
.x1f_c00042{left:105.541480px;}
.x73_c00042{left:107.656548px;}
.x30_c00042{left:109.621380px;}
.x5f_c00042{left:110.867299px;}
.x6_c00042{left:112.791666px;}
.x19_c00042{left:113.967202px;}
.x40_c00042{left:116.122752px;}
.x63_c00042{left:120.667807px;}
.x13_c00042{left:122.060558px;}
.x7_c00042{left:125.519860px;}
.x39_c00042{left:128.845776px;}
.x74_c00042{left:130.694212px;}
.x26_c00042{left:132.857637px;}
.x6f_c00042{left:137.523183px;}
.x31_c00042{left:138.857667px;}
.x2b_c00042{left:144.152655px;}
.x8_c00042{left:145.173100px;}
.x75_c00042{left:146.311435px;}
.x34_c00042{left:148.908341px;}
.x46_c00042{left:150.376491px;}
.x71_c00042{left:153.378000px;}
.x5b_c00042{left:156.544153px;}
.x3a_c00042{left:158.942274px;}
.x48_c00042{left:160.268544px;}
.x2_c00042{left:162.299061px;}
.xd_c00042{left:163.954989px;}
.x14_c00042{left:169.070001px;}
.x4c_c00042{left:172.173754px;}
.x49_c00042{left:173.729840px;}
.x9_c00042{left:176.844486px;}
.x15_c00042{left:180.454105px;}
.x68_c00042{left:183.983026px;}
.x4d_c00042{left:185.262082px;}
.x55_c00042{left:190.040380px;}
.x4a_c00042{left:192.698814px;}
.x76_c00042{left:193.918348px;}
.x1a_c00042{left:195.792543px;}
.x20_c00042{left:197.021908px;}
.x42_c00042{left:199.981650px;}
.x27_c00042{left:202.101054px;}
.x59_c00042{left:205.913982px;}
.x2c_c00042{left:209.966775px;}
.x64_c00042{left:213.346168px;}
.x72_c00042{left:215.590100px;}
.x35_c00042{left:217.747046px;}
.x51_c00042{left:221.211232px;}
.x4f_c00042{left:224.448813px;}
.xe_c00042{left:225.741306px;}
.x4b_c00042{left:236.183403px;}
.x36_c00042{left:237.626512px;}
.x21_c00042{left:238.717671px;}
.xf_c00042{left:243.826878px;}
.x6c_c00042{left:245.388325px;}
.x5a_c00042{left:249.854763px;}
.x16_c00042{left:251.409579px;}
.x28_c00042{left:254.698242px;}
.x60_c00042{left:258.951913px;}
.xa_c00042{left:260.926549px;}
.x6d_c00042{left:263.430670px;}
.x56_c00042{left:265.400970px;}
.x22_c00042{left:268.642716px;}
.x69_c00042{left:269.988576px;}
.x29_c00042{left:271.187129px;}
.x17_c00042{left:274.204761px;}
.x4e_c00042{left:275.575980px;}
.x5c_c00042{left:278.321578px;}
.x52_c00042{left:279.959407px;}
.xb_c00042{left:281.688260px;}
.x23_c00042{left:284.285557px;}
.x65_c00042{left:285.813409px;}
.x6e_c00042{left:287.932945px;}
.x2d_c00042{left:289.844318px;}
.x43_c00042{left:292.202337px;}
.x6a_c00042{left:293.684996px;}
.x37_c00042{left:296.501443px;}
.x53_c00042{left:298.580833px;}
.x10_c00042{left:305.036393px;}
.x44_c00042{left:306.734790px;}
.x38_c00042{left:309.962563px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs1a_c00042{font-size:47.581932pt;}
.fs19_c00042{font-size:48.514911pt;}
.fs1d_c00042{font-size:48.529693pt;}
.fs16_c00042{font-size:48.552985pt;}
.fsa_c00042{font-size:49.453927pt;}
.fs1c_c00042{font-size:49.462957pt;}
.fs13_c00042{font-size:49.486697pt;}
.fs0_c00042{font-size:50.389944pt;}
.fs3_c00042{font-size:50.417763pt;}
.fsb_c00042{font-size:51.320113pt;}
.fsc_c00042{font-size:51.349449pt;}
.fs4_c00042{font-size:51.351425pt;}
.fs1b_c00042{font-size:52.262747pt;}
.fs11_c00042{font-size:52.287830pt;}
.fs17_c00042{font-size:53.221542pt;}
.fs9_c00042{font-size:54.119392pt;}
.fsf_c00042{font-size:54.155253pt;}
.fs18_c00042{font-size:55.088964pt;}
.fs1e_c00042{font-size:56.929063pt;}
.fs15_c00042{font-size:56.956387pt;}
.fse_c00042{font-size:57.890098pt;}
.fs8_c00042{font-size:58.784857pt;}
.fs12_c00042{font-size:58.823809pt;}
.fs7_c00042{font-size:59.739605pt;}
.fs14_c00042{font-size:59.757520pt;}
.fs10_c00042{font-size:60.691232pt;}
.fs1_c00042{font-size:61.587710pt;}
.fs6_c00042{font-size:61.628237pt;}
.fs2_c00042{font-size:62.520857pt;}
.fsd_c00042{font-size:63.492365pt;}
.fs5_c00042{font-size:67.230804pt;}
.y0_c00042{bottom:0.000000pt;}
.yd6_c00042{bottom:25.375632pt;}
.yd5_c00042{bottom:26.430963pt;}
.yd4_c00042{bottom:28.773316pt;}
.yd3_c00042{bottom:29.499943pt;}
.yd2_c00042{bottom:31.237335pt;}
.yd1_c00042{bottom:31.806833pt;}
.yd0_c00042{bottom:32.663496pt;}
.yc1_c00042{bottom:34.895908pt;}
.yc0_c00042{bottom:38.151316pt;}
.ybf_c00042{bottom:39.437965pt;}
.ybe_c00042{bottom:40.859757pt;}
.ycf_c00042{bottom:42.325537pt;}
.yce_c00042{bottom:43.796012pt;}
.ycd_c00042{bottom:45.260581pt;}
.ycc_c00042{bottom:47.260821pt;}
.ycb_c00042{bottom:48.257501pt;}
.ybd_c00042{bottom:52.760473pt;}
.yca_c00042{bottom:55.886024pt;}
.yc9_c00042{bottom:56.685552pt;}
.ybc_c00042{bottom:56.716572pt;}
.yc8_c00042{bottom:58.690959pt;}
.yc7_c00042{bottom:59.385964pt;}
.yc6_c00042{bottom:60.973037pt;}
.ybb_c00042{bottom:63.442893pt;}
.yba_c00042{bottom:66.125153pt;}
.yc5_c00042{bottom:70.328139pt;}
.yc4_c00042{bottom:71.310316pt;}
.yb9_c00042{bottom:71.580000pt;}
.yc3_c00042{bottom:74.393015pt;}
.yc2_c00042{bottom:76.100000pt;}
.yb8_c00042{bottom:77.900021pt;}
.yb7_c00042{bottom:80.398923pt;}
.yb6_c00042{bottom:83.291521pt;}
.yb5_c00042{bottom:84.668443pt;}
.yb4_c00042{bottom:86.556775pt;}
.yb3_c00042{bottom:87.908615pt;}
.yb2_c00042{bottom:88.903721pt;}
.yb1_c00042{bottom:92.208081pt;}
.yb0_c00042{bottom:92.831979pt;}
.yaf_c00042{bottom:96.072107pt;}
.yae_c00042{bottom:97.098275pt;}
.yad_c00042{bottom:98.377696pt;}
.yac_c00042{bottom:99.484752pt;}
.yaa_c00042{bottom:99.668388pt;}
.ya9_c00042{bottom:101.102443pt;}
.yab_c00042{bottom:101.482799pt;}
.ya8_c00042{bottom:103.071636pt;}
.ya7_c00042{bottom:106.305724pt;}
.ya6_c00042{bottom:107.661619pt;}
.ya5_c00042{bottom:111.378224pt;}
.ya4_c00042{bottom:114.935259pt;}
.ya3_c00042{bottom:119.540841pt;}
.ya2_c00042{bottom:127.108923pt;}
.ya1_c00042{bottom:129.464441pt;}
.ya0_c00042{bottom:131.509465pt;}
.y9f_c00042{bottom:131.638079pt;}
.y9e_c00042{bottom:132.489367pt;}
.y9d_c00042{bottom:134.059333pt;}
.y9c_c00042{bottom:135.185076pt;}
.y9b_c00042{bottom:138.850337pt;}
.y9a_c00042{bottom:139.721260pt;}
.y99_c00042{bottom:142.150995pt;}
.y98_c00042{bottom:142.899353pt;}
.y97_c00042{bottom:143.416979pt;}
.y96_c00042{bottom:144.692633pt;}
.y95_c00042{bottom:146.564019pt;}
.y94_c00042{bottom:147.216036pt;}
.y93_c00042{bottom:150.146404pt;}
.y92_c00042{bottom:153.424853pt;}
.y91_c00042{bottom:154.856639pt;}
.y90_c00042{bottom:156.209613pt;}
.y8f_c00042{bottom:156.809793pt;}
.y8e_c00042{bottom:159.575908pt;}
.y8d_c00042{bottom:161.762556pt;}
.y8c_c00042{bottom:162.724752pt;}
.y8b_c00042{bottom:168.154543pt;}
.y8a_c00042{bottom:172.439189pt;}
.y89_c00042{bottom:174.937491pt;}
.y88_c00042{bottom:178.516875pt;}
.y87_c00042{bottom:180.045248pt;}
.y86_c00042{bottom:180.861539pt;}
.y85_c00042{bottom:184.435852pt;}
.y84_c00042{bottom:185.790333pt;}
.y83_c00042{bottom:188.471263pt;}
.y82_c00042{bottom:189.713915pt;}
.y81_c00042{bottom:190.781685pt;}
.y80_c00042{bottom:192.752147pt;}
.y7f_c00042{bottom:195.063689pt;}
.y7e_c00042{bottom:196.641295pt;}
.y7d_c00042{bottom:199.039057pt;}
.y7c_c00042{bottom:199.945375pt;}
.y7b_c00042{bottom:203.317747pt;}
.y7a_c00042{bottom:205.438476pt;}
.y79_c00042{bottom:206.194583pt;}
.y78_c00042{bottom:207.155553pt;}
.y77_c00042{bottom:210.186487pt;}
.y76_c00042{bottom:212.238581pt;}
.y75_c00042{bottom:216.577001pt;}
.y74_c00042{bottom:217.413755pt;}
.y73_c00042{bottom:220.556963pt;}
.y72_c00042{bottom:220.705044pt;}
.y71_c00042{bottom:222.202063pt;}
.y70_c00042{bottom:225.280048pt;}
.y6f_c00042{bottom:229.245492pt;}
.y6e_c00042{bottom:230.436600pt;}
.y6d_c00042{bottom:234.525664pt;}
.y6b_c00042{bottom:235.815380pt;}
.y6c_c00042{bottom:236.162828pt;}
.y6a_c00042{bottom:237.721173pt;}
.y69_c00042{bottom:239.804229pt;}
.y68_c00042{bottom:242.621380pt;}
.y67_c00042{bottom:243.332105pt;}
.y66_c00042{bottom:244.021440pt;}
.y65_c00042{bottom:249.732753pt;}
.y64_c00042{bottom:251.540992pt;}
.y63_c00042{bottom:253.393461pt;}
.y62_c00042{bottom:255.239181pt;}
.y61_c00042{bottom:257.598397pt;}
.y60_c00042{bottom:258.627852pt;}
.y5f_c00042{bottom:259.358837pt;}
.y5e_c00042{bottom:262.751879pt;}
.y5d_c00042{bottom:263.641421pt;}
.y5c_c00042{bottom:264.224379pt;}
.y5b_c00042{bottom:266.907331pt;}
.y5a_c00042{bottom:272.664663pt;}
.y59_c00042{bottom:275.377456pt;}
.y58_c00042{bottom:279.971095pt;}
.y57_c00042{bottom:282.023896pt;}
.y56_c00042{bottom:282.511440pt;}
.y55_c00042{bottom:283.196765pt;}
.y54_c00042{bottom:287.545733pt;}
.y53_c00042{bottom:290.733295pt;}
.y52_c00042{bottom:292.061051pt;}
.y51_c00042{bottom:294.928492pt;}
.y50_c00042{bottom:295.948000pt;}
.y4f_c00042{bottom:334.228949pt;}
.y4e_c00042{bottom:335.470811pt;}
.y4d_c00042{bottom:336.250907pt;}
.y4c_c00042{bottom:338.677600pt;}
.y4b_c00042{bottom:339.888000pt;}
.y4a_c00042{bottom:350.353587pt;}
.y49_c00042{bottom:354.770611pt;}
.y48_c00042{bottom:362.039796pt;}
.y47_c00042{bottom:363.835004pt;}
.y46_c00042{bottom:370.122631pt;}
.y45_c00042{bottom:370.433344pt;}
.y44_c00042{bottom:371.116684pt;}
.y43_c00042{bottom:374.106380pt;}
.y42_c00042{bottom:375.116319pt;}
.y41_c00042{bottom:378.610912pt;}
.y40_c00042{bottom:381.187069pt;}
.y3f_c00042{bottom:383.671481pt;}
.y3e_c00042{bottom:384.996225pt;}
.y3d_c00042{bottom:393.013420pt;}
.y3c_c00042{bottom:397.028724pt;}
.y3b_c00042{bottom:398.105513pt;}
.y3a_c00042{bottom:399.382667pt;}
.y39_c00042{bottom:408.075408pt;}
.y38_c00042{bottom:409.713227pt;}
.y37_c00042{bottom:411.329299pt;}
.y36_c00042{bottom:412.765913pt;}
.y35_c00042{bottom:414.521475pt;}
.y34_c00042{bottom:416.871487pt;}
.y33_c00042{bottom:417.723941pt;}
.y32_c00042{bottom:420.211933pt;}
.y31_c00042{bottom:422.964253pt;}
.y30_c00042{bottom:425.145805pt;}
.y2f_c00042{bottom:426.989333pt;}
.y2e_c00042{bottom:433.650995pt;}
.y2d_c00042{bottom:434.428559pt;}
.y2c_c00042{bottom:436.908995pt;}
.y2b_c00042{bottom:440.174555pt;}
.y2a_c00042{bottom:442.123523pt;}
.y29_c00042{bottom:443.180447pt;}
.y28_c00042{bottom:444.061583pt;}
.y27_c00042{bottom:445.217327pt;}
.y26_c00042{bottom:447.529427pt;}
.y25_c00042{bottom:448.281035pt;}
.y24_c00042{bottom:449.718875pt;}
.y23_c00042{bottom:451.722275pt;}
.y22_c00042{bottom:453.080051pt;}
.y21_c00042{bottom:456.117731pt;}
.y20_c00042{bottom:456.961715pt;}
.y1f_c00042{bottom:457.569971pt;}
.y1e_c00042{bottom:458.195003pt;}
.y1d_c00042{bottom:459.862667pt;}
.y1c_c00042{bottom:462.824772pt;}
.y19_c00042{bottom:463.485397pt;}
.y18_c00042{bottom:464.540096pt;}
.y1b_c00042{bottom:466.101840pt;}
.y17_c00042{bottom:467.823099pt;}
.y16_c00042{bottom:468.349824pt;}
.y1a_c00042{bottom:469.922583pt;}
.y15_c00042{bottom:470.524880pt;}
.y14_c00042{bottom:471.890677pt;}
.y13_c00042{bottom:473.663531pt;}
.y12_c00042{bottom:474.982667pt;}
.y11_c00042{bottom:478.192688pt;}
.y10_c00042{bottom:480.698068pt;}
.yf_c00042{bottom:481.437812pt;}
.ye_c00042{bottom:483.966389pt;}
.yd_c00042{bottom:487.026311pt;}
.yc_c00042{bottom:489.626612pt;}
.yb_c00042{bottom:493.584429pt;}
.ya_c00042{bottom:494.490129pt;}
.y9_c00042{bottom:498.155111pt;}
.y8_c00042{bottom:499.535817pt;}
.y7_c00042{bottom:500.392727pt;}
.y6_c00042{bottom:500.947132pt;}
.y5_c00042{bottom:502.888856pt;}
.y4_c00042{bottom:503.562065pt;}
.y3_c00042{bottom:504.737316pt;}
.y2_c00042{bottom:512.778613pt;}
.y1_c00042{bottom:516.492000pt;}
.h1c_c00042{height:47.581932pt;}
.h1b_c00042{height:48.514911pt;}
.h1f_c00042{height:48.529693pt;}
.h18_c00042{height:48.552985pt;}
.hc_c00042{height:49.453927pt;}
.h1e_c00042{height:49.462957pt;}
.h15_c00042{height:49.486697pt;}
.h2_c00042{height:50.389944pt;}
.h5_c00042{height:50.417763pt;}
.hd_c00042{height:51.320113pt;}
.he_c00042{height:51.349449pt;}
.h6_c00042{height:51.351425pt;}
.h1d_c00042{height:52.262747pt;}
.h13_c00042{height:52.287830pt;}
.h19_c00042{height:53.221542pt;}
.hb_c00042{height:54.119392pt;}
.h11_c00042{height:54.155253pt;}
.h1a_c00042{height:55.088964pt;}
.h20_c00042{height:56.929063pt;}
.h17_c00042{height:56.956387pt;}
.h10_c00042{height:57.890098pt;}
.ha_c00042{height:58.784857pt;}
.h14_c00042{height:58.823809pt;}
.h9_c00042{height:59.739605pt;}
.h16_c00042{height:59.757520pt;}
.h12_c00042{height:60.691232pt;}
.h3_c00042{height:61.587710pt;}
.h8_c00042{height:61.628237pt;}
.h4_c00042{height:62.520857pt;}
.hf_c00042{height:63.492365pt;}
.h7_c00042{height:67.230804pt;}
.h1_c00042{height:548.000000pt;}
.h0_c00042{height:548.133333pt;}
.w1_c00042{width:323.333333pt;}
.w0_c00042{width:323.466667pt;}
.x0_c00042{left:0.000000pt;}
.x6b_c00042{left:15.411831pt;}
.x18_c00042{left:16.483535pt;}
.x50_c00042{left:18.002339pt;}
.x45_c00042{left:19.164885pt;}
.x3b_c00042{left:20.074165pt;}
.x2e_c00042{left:21.174904pt;}
.x3_c00042{left:22.992471pt;}
.x1b_c00042{left:24.533333pt;}
.x57_c00042{left:35.612829pt;}
.x66_c00042{left:36.734797pt;}
.x3d_c00042{left:37.929733pt;}
.x61_c00042{left:40.117224pt;}
.x2a_c00042{left:42.581333pt;}
.x32_c00042{left:43.758051pt;}
.x24_c00042{left:44.826389pt;}
.x4_c00042{left:46.946511pt;}
.x11_c00042{left:48.199965pt;}
.x62_c00042{left:49.521487pt;}
.x1_c00042{left:51.524000pt;}
.x54_c00042{left:53.906333pt;}
.x1c_c00042{left:55.385117pt;}
.x58_c00042{left:56.316465pt;}
.x70_c00042{left:57.673667pt;}
.x5_c00042{left:60.661151pt;}
.x47_c00042{left:62.759784pt;}
.x5d_c00042{left:64.905967pt;}
.x1d_c00042{left:66.948209pt;}
.x2f_c00042{left:71.802149pt;}
.x3e_c00042{left:73.545027pt;}
.x5e_c00042{left:75.236867pt;}
.x1e_c00042{left:78.200945pt;}
.xc_c00042{left:79.278923pt;}
.x25_c00042{left:81.347777pt;}
.x12_c00042{left:82.259205pt;}
.x3f_c00042{left:84.994083pt;}
.x3c_c00042{left:85.889880pt;}
.x33_c00042{left:87.250681pt;}
.x67_c00042{left:89.002288pt;}
.x41_c00042{left:92.651995pt;}
.x1f_c00042{left:93.814649pt;}
.x73_c00042{left:95.694709pt;}
.x30_c00042{left:97.441227pt;}
.x5f_c00042{left:98.548711pt;}
.x6_c00042{left:100.259259pt;}
.x19_c00042{left:101.304180pt;}
.x40_c00042{left:103.220224pt;}
.x63_c00042{left:107.260273pt;}
.x13_c00042{left:108.498273pt;}
.x7_c00042{left:111.573209pt;}
.x39_c00042{left:114.529579pt;}
.x74_c00042{left:116.172633pt;}
.x26_c00042{left:118.095677pt;}
.x6f_c00042{left:122.242829pt;}
.x31_c00042{left:123.429037pt;}
.x2b_c00042{left:128.135693pt;}
.x8_c00042{left:129.042756pt;}
.x75_c00042{left:130.054609pt;}
.x34_c00042{left:132.362969pt;}
.x46_c00042{left:133.667992pt;}
.x71_c00042{left:136.336000pt;}
.x5b_c00042{left:139.150359pt;}
.x3a_c00042{left:141.282021pt;}
.x48_c00042{left:142.460928pt;}
.x2_c00042{left:144.265832pt;}
.xd_c00042{left:145.737768pt;}
.x14_c00042{left:150.284445pt;}
.x4c_c00042{left:153.043337pt;}
.x49_c00042{left:154.426524pt;}
.x9_c00042{left:157.195099pt;}
.x15_c00042{left:160.403649pt;}
.x68_c00042{left:163.540468pt;}
.x4d_c00042{left:164.677407pt;}
.x55_c00042{left:168.924783pt;}
.x4a_c00042{left:171.287835pt;}
.x76_c00042{left:172.371865pt;}
.x1a_c00042{left:174.037816pt;}
.x20_c00042{left:175.130585pt;}
.x42_c00042{left:177.761467pt;}
.x27_c00042{left:179.645381pt;}
.x59_c00042{left:183.034651pt;}
.x2c_c00042{left:186.637133pt;}
.x64_c00042{left:189.641039pt;}
.x72_c00042{left:191.635644pt;}
.x35_c00042{left:193.552929pt;}
.x51_c00042{left:196.632207pt;}
.x4f_c00042{left:199.510056pt;}
.xe_c00042{left:200.658939pt;}
.x4b_c00042{left:209.940803pt;}
.x36_c00042{left:211.223567pt;}
.x21_c00042{left:212.193485pt;}
.xf_c00042{left:216.735003pt;}
.x6c_c00042{left:218.122956pt;}
.x5a_c00042{left:222.093123pt;}
.x16_c00042{left:223.475181pt;}
.x28_c00042{left:226.398437pt;}
.x60_c00042{left:230.179479pt;}
.xa_c00042{left:231.934711pt;}
.x6d_c00042{left:234.160596pt;}
.x56_c00042{left:235.911973pt;}
.x22_c00042{left:238.793525pt;}
.x69_c00042{left:239.989845pt;}
.x29_c00042{left:241.055225pt;}
.x17_c00042{left:243.737565pt;}
.x4e_c00042{left:244.956427pt;}
.x5c_c00042{left:247.396959pt;}
.x52_c00042{left:248.852807pt;}
.xb_c00042{left:250.389564pt;}
.x23_c00042{left:252.698273pt;}
.x65_c00042{left:254.056364pt;}
.x6e_c00042{left:255.940396pt;}
.x2d_c00042{left:257.639393pt;}
.x43_c00042{left:259.735411pt;}
.x6a_c00042{left:261.053329pt;}
.x37_c00042{left:263.556839pt;}
.x53_c00042{left:265.405185pt;}
.x10_c00042{left:271.143460pt;}
.x44_c00042{left:272.653147pt;}
.x38_c00042{left:275.522279pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00043 {
    display:none;
  }
  .loading-indicator_c00043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00043 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00043 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00043" -> "#page-container .classname_c00043")
 */
.pf_c00043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00043 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00043 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00043 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00043 {overflow:visible;}
  }
}
.c_c00043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00043 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00043:after { /* webkit #35443 */
  content: '';
}
.t_c00043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00043 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00043 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00043 { /* info for Javascript */
  display:none;
}
.l_c00043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00043:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00043 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00043.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00043{transform:matrix(0.027373,0.000602,-0.005499,0.249940,0,0);-ms-transform:matrix(0.027373,0.000602,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.027373,0.000602,-0.005499,0.249940,0,0);}
.mc_c00043{transform:matrix(0.132393,0.002913,-0.005499,0.249940,0,0);-ms-transform:matrix(0.132393,0.002913,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.132393,0.002913,-0.005499,0.249940,0,0);}
.mda_c00043{transform:matrix(0.145310,0.003197,-0.005499,0.249940,0,0);-ms-transform:matrix(0.145310,0.003197,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.145310,0.003197,-0.005499,0.249940,0,0);}
.m5_c00043{transform:matrix(0.145685,0.003205,-0.005499,0.249940,0,0);-ms-transform:matrix(0.145685,0.003205,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.145685,0.003205,-0.005499,0.249940,0,0);}
.m8_c00043{transform:matrix(0.146964,0.003233,-0.005499,0.249940,0,0);-ms-transform:matrix(0.146964,0.003233,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.146964,0.003233,-0.005499,0.249940,0,0);}
.m1b_c00043{transform:matrix(0.147399,0.003243,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147399,0.003243,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147399,0.003243,-0.005499,0.249940,0,0);}
.ma2_c00043{transform:matrix(0.151283,0.003328,-0.005499,0.249940,0,0);-ms-transform:matrix(0.151283,0.003328,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.151283,0.003328,-0.005499,0.249940,0,0);}
.m42_c00043{transform:matrix(0.151691,0.004247,-0.006997,0.249902,0,0);-ms-transform:matrix(0.151691,0.004247,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.151691,0.004247,-0.006997,0.249902,0,0);}
.me_c00043{transform:matrix(0.152143,0.003347,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152143,0.003347,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152143,0.003347,-0.005499,0.249940,0,0);}
.m43_c00043{transform:matrix(0.152960,0.004283,-0.006997,0.249902,0,0);-ms-transform:matrix(0.152960,0.004283,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.152960,0.004283,-0.006997,0.249902,0,0);}
.ma8_c00043{transform:matrix(0.153078,0.003368,-0.005499,0.249940,0,0);-ms-transform:matrix(0.153078,0.003368,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.153078,0.003368,-0.005499,0.249940,0,0);}
.m3b_c00043{transform:matrix(0.156234,0.004375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156234,0.004375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156234,0.004375,-0.006997,0.249902,0,0);}
.m59_c00043{transform:matrix(0.157018,0.004397,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157018,0.004397,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157018,0.004397,-0.006997,0.249902,0,0);}
.m91_c00043{transform:matrix(0.157357,0.003462,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157357,0.003462,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157357,0.003462,-0.005499,0.249940,0,0);}
.m13_c00043{transform:matrix(0.157742,0.003470,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157742,0.003470,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157742,0.003470,-0.005499,0.249940,0,0);}
.m53_c00043{transform:matrix(0.157938,0.004422,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157938,0.004422,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157938,0.004422,-0.006997,0.249902,0,0);}
.m7e_c00043{transform:matrix(0.158192,0.003480,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158192,0.003480,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158192,0.003480,-0.005499,0.249940,0,0);}
.m30_c00043{transform:matrix(0.158277,0.003482,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158277,0.003482,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158277,0.003482,-0.005499,0.249940,0,0);}
.m23_c00043{transform:matrix(0.159291,0.003504,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159291,0.003504,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159291,0.003504,-0.005499,0.249940,0,0);}
.mec_c00043{transform:matrix(0.159396,0.003507,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159396,0.003507,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159396,0.003507,-0.005499,0.249940,0,0);}
.ma7_c00043{transform:matrix(0.160246,0.003525,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160246,0.003525,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160246,0.003525,-0.005499,0.249940,0,0);}
.m31_c00043{transform:matrix(0.161166,0.003546,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161166,0.003546,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161166,0.003546,-0.005499,0.249940,0,0);}
.me2_c00043{transform:matrix(0.164060,0.003609,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164060,0.003609,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164060,0.003609,-0.005499,0.249940,0,0);}
.m2d_c00043{transform:matrix(0.164425,0.003617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164425,0.003617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164425,0.003617,-0.005499,0.249940,0,0);}
.m66_c00043{transform:matrix(0.165200,0.004626,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165200,0.004626,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165200,0.004626,-0.006997,0.249902,0,0);}
.m47_c00043{transform:matrix(0.165600,0.004637,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165600,0.004637,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165600,0.004637,-0.006997,0.249902,0,0);}
.m3a_c00043{transform:matrix(0.165880,0.004645,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165880,0.004645,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165880,0.004645,-0.006997,0.249902,0,0);}
.m4a_c00043{transform:matrix(0.166685,0.004667,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166685,0.004667,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166685,0.004667,-0.006997,0.249902,0,0);}
.md7_c00043{transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);}
.mbb_c00043{transform:matrix(0.167904,0.003694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167904,0.003694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167904,0.003694,-0.005499,0.249940,0,0);}
.med_c00043{transform:matrix(0.169129,0.003721,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169129,0.003721,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169129,0.003721,-0.005499,0.249940,0,0);}
.m3_c00043{transform:matrix(0.170049,0.003741,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170049,0.003741,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170049,0.003741,-0.005499,0.249940,0,0);}
.m76_c00043{transform:matrix(0.170339,0.003747,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170339,0.003747,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170339,0.003747,-0.005499,0.249940,0,0);}
.m73_c00043{transform:matrix(0.170824,0.003758,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170824,0.003758,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170824,0.003758,-0.005499,0.249940,0,0);}
.mf3_c00043{transform:matrix(0.171299,0.003769,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171299,0.003769,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171299,0.003769,-0.005499,0.249940,0,0);}
.md4_c00043{transform:matrix(0.171384,0.003770,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171384,0.003770,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171384,0.003770,-0.005499,0.249940,0,0);}
.m3d_c00043{transform:matrix(0.172128,0.004820,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172128,0.004820,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172128,0.004820,-0.006997,0.249902,0,0);}
.mb9_c00043{transform:matrix(0.172253,0.003790,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172253,0.003790,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172253,0.003790,-0.005499,0.249940,0,0);}
.m45_c00043{transform:matrix(0.172742,0.004837,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172742,0.004837,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172742,0.004837,-0.006997,0.249902,0,0);}
.mca_c00043{transform:matrix(0.173323,0.003813,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173323,0.003813,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173323,0.003813,-0.005499,0.249940,0,0);}
.m4_c00043{transform:matrix(0.173508,0.003817,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173508,0.003817,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173508,0.003817,-0.005499,0.249940,0,0);}
.m44_c00043{transform:matrix(0.173832,0.004867,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173832,0.004867,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173832,0.004867,-0.006997,0.249902,0,0);}
.m1f_c00043{transform:matrix(0.174043,0.003829,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174043,0.003829,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174043,0.003829,-0.005499,0.249940,0,0);}
.mcd_c00043{transform:matrix(0.174068,0.003829,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174068,0.003829,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174068,0.003829,-0.005499,0.249940,0,0);}
.m8f_c00043{transform:matrix(0.174403,0.003837,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174403,0.003837,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174403,0.003837,-0.005499,0.249940,0,0);}
.m3e_c00043{transform:matrix(0.174432,0.004884,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174432,0.004884,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174432,0.004884,-0.006997,0.249902,0,0);}
.m9e_c00043{transform:matrix(0.174583,0.003841,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174583,0.003841,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174583,0.003841,-0.005499,0.249940,0,0);}
.ma4_c00043{transform:matrix(0.174678,0.003843,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174678,0.003843,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174678,0.003843,-0.005499,0.249940,0,0);}
.m60_c00043{transform:matrix(0.175211,0.004906,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175211,0.004906,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175211,0.004906,-0.006997,0.249902,0,0);}
.m9b_c00043{transform:matrix(0.175238,0.003855,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175238,0.003855,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175238,0.003855,-0.005499,0.249940,0,0);}
.m81_c00043{transform:matrix(0.175533,0.003862,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175533,0.003862,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175533,0.003862,-0.005499,0.249940,0,0);}
.m40_c00043{transform:matrix(0.175561,0.004916,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175561,0.004916,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175561,0.004916,-0.006997,0.249902,0,0);}
.m50_c00043{transform:matrix(0.175886,0.004925,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175886,0.004925,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175886,0.004925,-0.006997,0.249902,0,0);}
.m5b_c00043{transform:matrix(0.176876,0.004953,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176876,0.004953,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176876,0.004953,-0.006997,0.249902,0,0);}
.mcf_c00043{transform:matrix(0.177137,0.003897,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177137,0.003897,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177137,0.003897,-0.005499,0.249940,0,0);}
.mde_c00043{transform:matrix(0.177152,0.003897,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177152,0.003897,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177152,0.003897,-0.005499,0.249940,0,0);}
.mcb_c00043{transform:matrix(0.177327,0.003901,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177327,0.003901,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177327,0.003901,-0.005499,0.249940,0,0);}
.m33_c00043{transform:matrix(0.177352,0.003902,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177352,0.003902,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177352,0.003902,-0.005499,0.249940,0,0);}
.m93_c00043{transform:matrix(0.177797,0.003912,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177797,0.003912,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177797,0.003912,-0.005499,0.249940,0,0);}
.m90_c00043{transform:matrix(0.178157,0.003919,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178157,0.003919,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178157,0.003919,-0.005499,0.249940,0,0);}
.mee_c00043{transform:matrix(0.178522,0.003927,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178522,0.003927,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178522,0.003927,-0.005499,0.249940,0,0);}
.mf_c00043{transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);}
.m75_c00043{transform:matrix(0.178817,0.003934,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178817,0.003934,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178817,0.003934,-0.005499,0.249940,0,0);}
.mb4_c00043{transform:matrix(0.179282,0.003944,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179282,0.003944,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179282,0.003944,-0.005499,0.249940,0,0);}
.mae_c00043{transform:matrix(0.180021,0.003960,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180021,0.003960,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180021,0.003960,-0.005499,0.249940,0,0);}
.m87_c00043{transform:matrix(0.180481,0.003971,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180481,0.003971,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180481,0.003971,-0.005499,0.249940,0,0);}
.ma3_c00043{transform:matrix(0.181496,0.003993,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181496,0.003993,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181496,0.003993,-0.005499,0.249940,0,0);}
.me6_c00043{transform:matrix(0.182636,0.004018,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182636,0.004018,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182636,0.004018,-0.005499,0.249940,0,0);}
.m4b_c00043{transform:matrix(0.182688,0.005115,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182688,0.005115,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182688,0.005115,-0.006997,0.249902,0,0);}
.mf7_c00043{transform:matrix(0.183291,0.004032,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183291,0.004032,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183291,0.004032,-0.005499,0.249940,0,0);}
.mc2_c00043{transform:matrix(0.183361,0.004034,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183361,0.004034,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183361,0.004034,-0.005499,0.249940,0,0);}
.mab_c00043{transform:matrix(0.183631,0.004040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183631,0.004040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183631,0.004040,-0.005499,0.249940,0,0);}
.m21_c00043{transform:matrix(0.184480,0.004059,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184480,0.004059,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184480,0.004059,-0.005499,0.249940,0,0);}
.mf0_c00043{transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);}
.me3_c00043{transform:matrix(0.185535,0.004082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185535,0.004082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185535,0.004082,-0.005499,0.249940,0,0);}
.m39_c00043{transform:matrix(0.185667,0.005199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185667,0.005199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185667,0.005199,-0.006997,0.249902,0,0);}
.ma_c00043{transform:matrix(0.185735,0.004086,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185735,0.004086,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185735,0.004086,-0.005499,0.249940,0,0);}
.m65_c00043{transform:matrix(0.185767,0.005201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185767,0.005201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185767,0.005201,-0.006997,0.249902,0,0);}
.m9c_c00043{transform:matrix(0.186055,0.004093,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186055,0.004093,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186055,0.004093,-0.005499,0.249940,0,0);}
.ma9_c00043{transform:matrix(0.186110,0.004094,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186110,0.004094,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186110,0.004094,-0.005499,0.249940,0,0);}
.m61_c00043{transform:matrix(0.186482,0.005221,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186482,0.005221,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186482,0.005221,-0.006997,0.249902,0,0);}
.mf8_c00043{transform:matrix(0.186660,0.004107,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186660,0.004107,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186660,0.004107,-0.005499,0.249940,0,0);}
.m79_c00043{transform:matrix(0.186675,0.004107,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186675,0.004107,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186675,0.004107,-0.005499,0.249940,0,0);}
.m0_c00043{transform:matrix(0.186715,0.004108,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186715,0.004108,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186715,0.004108,-0.005499,0.249940,0,0);}
.me4_c00043{transform:matrix(0.186840,0.004110,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186840,0.004110,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186840,0.004110,-0.005499,0.249940,0,0);}
.md_c00043{transform:matrix(0.186845,0.004111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186845,0.004111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186845,0.004111,-0.005499,0.249940,0,0);}
.md3_c00043{transform:matrix(0.187080,0.004116,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187080,0.004116,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187080,0.004116,-0.005499,0.249940,0,0);}
.m46_c00043{transform:matrix(0.187087,0.005238,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187087,0.005238,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187087,0.005238,-0.006997,0.249902,0,0);}
.me1_c00043{transform:matrix(0.187395,0.004123,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187395,0.004123,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187395,0.004123,-0.005499,0.249940,0,0);}
.m6f_c00043{transform:matrix(0.187985,0.004136,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187985,0.004136,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187985,0.004136,-0.005499,0.249940,0,0);}
.me5_c00043{transform:matrix(0.188054,0.004137,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188054,0.004137,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188054,0.004137,-0.005499,0.249940,0,0);}
.m7a_c00043{transform:matrix(0.188479,0.004147,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188479,0.004147,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188479,0.004147,-0.005499,0.249940,0,0);}
.m1c_c00043{transform:matrix(0.188584,0.004149,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188584,0.004149,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188584,0.004149,-0.005499,0.249940,0,0);}
.m27_c00043{transform:matrix(0.188884,0.004155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188884,0.004155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188884,0.004155,-0.005499,0.249940,0,0);}
.m12_c00043{transform:matrix(0.189354,0.004166,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189354,0.004166,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189354,0.004166,-0.005499,0.249940,0,0);}
.mef_c00043{transform:matrix(0.189424,0.004167,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189424,0.004167,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189424,0.004167,-0.005499,0.249940,0,0);}
.meb_c00043{transform:matrix(0.189954,0.004179,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189954,0.004179,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189954,0.004179,-0.005499,0.249940,0,0);}
.m2f_c00043{transform:matrix(0.190024,0.004181,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190024,0.004181,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190024,0.004181,-0.005499,0.249940,0,0);}
.md0_c00043{transform:matrix(0.190094,0.004182,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190094,0.004182,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190094,0.004182,-0.005499,0.249940,0,0);}
.md9_c00043{transform:matrix(0.190844,0.004199,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190844,0.004199,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190844,0.004199,-0.005499,0.249940,0,0);}
.m22_c00043{transform:matrix(0.191224,0.004207,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191224,0.004207,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191224,0.004207,-0.005499,0.249940,0,0);}
.mf5_c00043{transform:matrix(0.191399,0.004211,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191399,0.004211,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191399,0.004211,-0.005499,0.249940,0,0);}
.m77_c00043{transform:matrix(0.191679,0.004217,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191679,0.004217,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191679,0.004217,-0.005499,0.249940,0,0);}
.m72_c00043{transform:matrix(0.191769,0.004219,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191769,0.004219,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191769,0.004219,-0.005499,0.249940,0,0);}
.m9a_c00043{transform:matrix(0.191909,0.004222,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191909,0.004222,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191909,0.004222,-0.005499,0.249940,0,0);}
.m94_c00043{transform:matrix(0.192134,0.004227,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192134,0.004227,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192134,0.004227,-0.005499,0.249940,0,0);}
.ma5_c00043{transform:matrix(0.193013,0.004246,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193013,0.004246,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193013,0.004246,-0.005499,0.249940,0,0);}
.m9d_c00043{transform:matrix(0.193213,0.004251,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193213,0.004251,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193213,0.004251,-0.005499,0.249940,0,0);}
.m48_c00043{transform:matrix(0.193239,0.005411,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193239,0.005411,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193239,0.005411,-0.006997,0.249902,0,0);}
.mb3_c00043{transform:matrix(0.193358,0.004254,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193358,0.004254,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193358,0.004254,-0.005499,0.249940,0,0);}
.m92_c00043{transform:matrix(0.193913,0.004266,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193913,0.004266,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193913,0.004266,-0.005499,0.249940,0,0);}
.mb5_c00043{transform:matrix(0.194598,0.004281,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194598,0.004281,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194598,0.004281,-0.005499,0.249940,0,0);}
.mc3_c00043{transform:matrix(0.194683,0.004283,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194683,0.004283,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194683,0.004283,-0.005499,0.249940,0,0);}
.m1a_c00043{transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);}
.m2c_c00043{transform:matrix(0.195403,0.004299,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195403,0.004299,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195403,0.004299,-0.005499,0.249940,0,0);}
.m16_c00043{transform:matrix(0.195948,0.004311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195948,0.004311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195948,0.004311,-0.005499,0.249940,0,0);}
.mf2_c00043{transform:matrix(0.196887,0.004332,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196887,0.004332,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196887,0.004332,-0.005499,0.249940,0,0);}
.m67_c00043{transform:matrix(0.197188,0.005521,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197188,0.005521,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197188,0.005521,-0.006997,0.249902,0,0);}
.mc5_c00043{transform:matrix(0.197572,0.004347,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197572,0.004347,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197572,0.004347,-0.005499,0.249940,0,0);}
.m82_c00043{transform:matrix(0.198082,0.004358,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198082,0.004358,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198082,0.004358,-0.005499,0.249940,0,0);}
.m35_c00043{transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);}
.me8_c00043{transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);}
.me7_c00043{transform:matrix(0.198907,0.004376,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198907,0.004376,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198907,0.004376,-0.005499,0.249940,0,0);}
.m97_c00043{transform:matrix(0.199107,0.004380,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199107,0.004380,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199107,0.004380,-0.005499,0.249940,0,0);}
.m8d_c00043{transform:matrix(0.199162,0.004382,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199162,0.004382,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199162,0.004382,-0.005499,0.249940,0,0);}
.m69_c00043{transform:matrix(0.199397,0.005583,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199397,0.005583,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199397,0.005583,-0.006997,0.249902,0,0);}
.m5e_c00043{transform:matrix(0.199412,0.005584,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199412,0.005584,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199412,0.005584,-0.006997,0.249902,0,0);}
.m95_c00043{transform:matrix(0.199762,0.004395,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199762,0.004395,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199762,0.004395,-0.005499,0.249940,0,0);}
.mea_c00043{transform:matrix(0.199847,0.004397,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199847,0.004397,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199847,0.004397,-0.005499,0.249940,0,0);}
.m98_c00043{transform:matrix(0.199997,0.004400,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199997,0.004400,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199997,0.004400,-0.005499,0.249940,0,0);}
.m36_c00043{transform:matrix(0.200022,0.005601,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200022,0.005601,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200022,0.005601,-0.006997,0.249902,0,0);}
.me9_c00043{transform:matrix(0.200327,0.004407,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200327,0.004407,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200327,0.004407,-0.005499,0.249940,0,0);}
.mce_c00043{transform:matrix(0.200332,0.004407,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200332,0.004407,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200332,0.004407,-0.005499,0.249940,0,0);}
.ma6_c00043{transform:matrix(0.200536,0.004412,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200536,0.004412,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200536,0.004412,-0.005499,0.249940,0,0);}
.mc9_c00043{transform:matrix(0.200781,0.004417,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200781,0.004417,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200781,0.004417,-0.005499,0.249940,0,0);}
.m5f_c00043{transform:matrix(0.200786,0.005622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200786,0.005622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200786,0.005622,-0.006997,0.249902,0,0);}
.m7c_c00043{transform:matrix(0.201236,0.004427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201236,0.004427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201236,0.004427,-0.005499,0.249940,0,0);}
.m7_c00043{transform:matrix(0.201261,0.004428,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201261,0.004428,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201261,0.004428,-0.005499,0.249940,0,0);}
.m80_c00043{transform:matrix(0.201286,0.004428,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201286,0.004428,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201286,0.004428,-0.005499,0.249940,0,0);}
.mf4_c00043{transform:matrix(0.201316,0.004429,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201316,0.004429,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201316,0.004429,-0.005499,0.249940,0,0);}
.md6_c00043{transform:matrix(0.201571,0.004435,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201571,0.004435,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201571,0.004435,-0.005499,0.249940,0,0);}
.mb6_c00043{transform:matrix(0.201676,0.004437,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201676,0.004437,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201676,0.004437,-0.005499,0.249940,0,0);}
.m8a_c00043{transform:matrix(0.201971,0.004443,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201971,0.004443,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201971,0.004443,-0.005499,0.249940,0,0);}
.mcc_c00043{transform:matrix(0.202256,0.004450,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202256,0.004450,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202256,0.004450,-0.005499,0.249940,0,0);}
.mc6_c00043{transform:matrix(0.202346,0.004452,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202346,0.004452,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202346,0.004452,-0.005499,0.249940,0,0);}
.mc4_c00043{transform:matrix(0.202641,0.004458,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202641,0.004458,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202641,0.004458,-0.005499,0.249940,0,0);}
.m38_c00043{transform:matrix(0.202736,0.005677,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202736,0.005677,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202736,0.005677,-0.006997,0.249902,0,0);}
.m3c_c00043{transform:matrix(0.202791,0.005678,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202791,0.005678,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202791,0.005678,-0.006997,0.249902,0,0);}
.mb2_c00043{transform:matrix(0.203051,0.004467,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203051,0.004467,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203051,0.004467,-0.005499,0.249940,0,0);}
.m3f_c00043{transform:matrix(0.203250,0.005691,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203250,0.005691,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203250,0.005691,-0.006997,0.249902,0,0);}
.md5_c00043{transform:matrix(0.203881,0.004485,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203881,0.004485,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203881,0.004485,-0.005499,0.249940,0,0);}
.m5a_c00043{transform:matrix(0.203910,0.005709,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203910,0.005709,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203910,0.005709,-0.006997,0.249902,0,0);}
.m6b_c00043{transform:matrix(0.204095,0.005715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204095,0.005715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204095,0.005715,-0.006997,0.249902,0,0);}
.m19_c00043{transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);}
.m58_c00043{transform:matrix(0.204980,0.005739,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204980,0.005739,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204980,0.005739,-0.006997,0.249902,0,0);}
.me0_c00043{transform:matrix(0.205240,0.004515,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205240,0.004515,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205240,0.004515,-0.005499,0.249940,0,0);}
.m62_c00043{transform:matrix(0.205484,0.005754,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205484,0.005754,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205484,0.005754,-0.006997,0.249902,0,0);}
.mf6_c00043{transform:matrix(0.205510,0.004521,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205510,0.004521,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205510,0.004521,-0.005499,0.249940,0,0);}
.m54_c00043{transform:matrix(0.205529,0.005755,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205529,0.005755,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205529,0.005755,-0.006997,0.249902,0,0);}
.mc7_c00043{transform:matrix(0.205570,0.004523,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205570,0.004523,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205570,0.004523,-0.005499,0.249940,0,0);}
.m2b_c00043{transform:matrix(0.205585,0.004523,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205585,0.004523,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205585,0.004523,-0.005499,0.249940,0,0);}
.m4c_c00043{transform:matrix(0.205669,0.005759,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205669,0.005759,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205669,0.005759,-0.006997,0.249902,0,0);}
.maf_c00043{transform:matrix(0.206175,0.004536,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206175,0.004536,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206175,0.004536,-0.005499,0.249940,0,0);}
.m6_c00043{transform:matrix(0.206665,0.004547,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206665,0.004547,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206665,0.004547,-0.005499,0.249940,0,0);}
.m55_c00043{transform:matrix(0.207109,0.005799,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207109,0.005799,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207109,0.005799,-0.006997,0.249902,0,0);}
.m99_c00043{transform:matrix(0.207260,0.004560,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207260,0.004560,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207260,0.004560,-0.005499,0.249940,0,0);}
.md8_c00043{transform:matrix(0.207660,0.004569,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207660,0.004569,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207660,0.004569,-0.005499,0.249940,0,0);}
.m5c_c00043{transform:matrix(0.208278,0.005832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208278,0.005832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208278,0.005832,-0.006997,0.249902,0,0);}
.m70_c00043{transform:matrix(0.208475,0.004586,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208475,0.004586,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208475,0.004586,-0.005499,0.249940,0,0);}
.m9f_c00043{transform:matrix(0.208480,0.004587,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208480,0.004587,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208480,0.004587,-0.005499,0.249940,0,0);}
.m9_c00043{transform:matrix(0.208929,0.004596,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208929,0.004596,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208929,0.004596,-0.005499,0.249940,0,0);}
.m37_c00043{transform:matrix(0.209058,0.005854,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209058,0.005854,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209058,0.005854,-0.006997,0.249902,0,0);}
.m6d_c00043{transform:matrix(0.209778,0.005874,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209778,0.005874,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209778,0.005874,-0.006997,0.249902,0,0);}
.m26_c00043{transform:matrix(0.210224,0.004625,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210224,0.004625,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210224,0.004625,-0.005499,0.249940,0,0);}
.m4d_c00043{transform:matrix(0.210722,0.005900,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210722,0.005900,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210722,0.005900,-0.006997,0.249902,0,0);}
.mb8_c00043{transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);}
.m7d_c00043{transform:matrix(0.211164,0.004646,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211164,0.004646,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211164,0.004646,-0.005499,0.249940,0,0);}
.mac_c00043{transform:matrix(0.211304,0.004649,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211304,0.004649,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211304,0.004649,-0.005499,0.249940,0,0);}
.m2e_c00043{transform:matrix(0.211714,0.004658,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211714,0.004658,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211714,0.004658,-0.005499,0.249940,0,0);}
.m56_c00043{transform:matrix(0.212317,0.005945,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212317,0.005945,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212317,0.005945,-0.006997,0.249902,0,0);}
.mad_c00043{transform:matrix(0.212479,0.004675,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212479,0.004675,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212479,0.004675,-0.005499,0.249940,0,0);}
.m68_c00043{transform:matrix(0.213261,0.005971,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213261,0.005971,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213261,0.005971,-0.006997,0.249902,0,0);}
.mba_c00043{transform:matrix(0.213278,0.004692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213278,0.004692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213278,0.004692,-0.005499,0.249940,0,0);}
.mb1_c00043{transform:matrix(0.213603,0.004699,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213603,0.004699,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213603,0.004699,-0.005499,0.249940,0,0);}
.m78_c00043{transform:matrix(0.214148,0.004711,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214148,0.004711,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214148,0.004711,-0.005499,0.249940,0,0);}
.mc0_c00043{transform:matrix(0.214288,0.004714,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214288,0.004714,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214288,0.004714,-0.005499,0.249940,0,0);}
.m2a_c00043{transform:matrix(0.214603,0.004721,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214603,0.004721,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214603,0.004721,-0.005499,0.249940,0,0);}
.m6a_c00043{transform:matrix(0.214836,0.006015,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214836,0.006015,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214836,0.006015,-0.006997,0.249902,0,0);}
.mdf_c00043{transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);}
.m96_c00043{transform:matrix(0.215353,0.004738,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215353,0.004738,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215353,0.004738,-0.005499,0.249940,0,0);}
.m84_c00043{transform:matrix(0.216043,0.004753,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216043,0.004753,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216043,0.004753,-0.005499,0.249940,0,0);}
.m71_c00043{transform:matrix(0.216333,0.004759,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216333,0.004759,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216333,0.004759,-0.005499,0.249940,0,0);}
.m51_c00043{transform:matrix(0.216765,0.006069,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216765,0.006069,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216765,0.006069,-0.006997,0.249902,0,0);}
.md1_c00043{transform:matrix(0.217012,0.004774,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217012,0.004774,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217012,0.004774,-0.005499,0.249940,0,0);}
.md2_c00043{transform:matrix(0.217122,0.004777,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217122,0.004777,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217122,0.004777,-0.005499,0.249940,0,0);}
.m63_c00043{transform:matrix(0.217225,0.006082,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217225,0.006082,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217225,0.006082,-0.006997,0.249902,0,0);}
.m32_c00043{transform:matrix(0.217312,0.004781,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217312,0.004781,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217312,0.004781,-0.005499,0.249940,0,0);}
.m6c_c00043{transform:matrix(0.217430,0.006088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217430,0.006088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217430,0.006088,-0.006997,0.249902,0,0);}
.mf1_c00043{transform:matrix(0.217887,0.004794,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217887,0.004794,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217887,0.004794,-0.005499,0.249940,0,0);}
.mb0_c00043{transform:matrix(0.218542,0.004808,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218542,0.004808,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218542,0.004808,-0.005499,0.249940,0,0);}
.m14_c00043{transform:matrix(0.218552,0.004808,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218552,0.004808,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218552,0.004808,-0.005499,0.249940,0,0);}
.m7f_c00043{transform:matrix(0.218672,0.004811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218672,0.004811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218672,0.004811,-0.005499,0.249940,0,0);}
.m25_c00043{transform:matrix(0.219172,0.004822,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219172,0.004822,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219172,0.004822,-0.005499,0.249940,0,0);}
.mdc_c00043{transform:matrix(0.219477,0.004828,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219477,0.004828,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219477,0.004828,-0.005499,0.249940,0,0);}
.m85_c00043{transform:matrix(0.219497,0.004829,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219497,0.004829,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219497,0.004829,-0.005499,0.249940,0,0);}
.m74_c00043{transform:matrix(0.220052,0.004841,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220052,0.004841,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220052,0.004841,-0.005499,0.249940,0,0);}
.mbf_c00043{transform:matrix(0.220742,0.004856,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220742,0.004856,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220742,0.004856,-0.005499,0.249940,0,0);}
.mdb_c00043{transform:matrix(0.220962,0.004861,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220962,0.004861,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220962,0.004861,-0.005499,0.249940,0,0);}
.m28_c00043{transform:matrix(0.221946,0.004883,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221946,0.004883,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221946,0.004883,-0.005499,0.249940,0,0);}
.m89_c00043{transform:matrix(0.222176,0.004888,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222176,0.004888,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222176,0.004888,-0.005499,0.249940,0,0);}
.m20_c00043{transform:matrix(0.222466,0.004894,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222466,0.004894,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222466,0.004894,-0.005499,0.249940,0,0);}
.mbd_c00043{transform:matrix(0.223256,0.004912,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223256,0.004912,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223256,0.004912,-0.005499,0.249940,0,0);}
.mb7_c00043{transform:matrix(0.223511,0.004917,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223511,0.004917,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223511,0.004917,-0.005499,0.249940,0,0);}
.mc8_c00043{transform:matrix(0.224051,0.004929,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224051,0.004929,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224051,0.004929,-0.005499,0.249940,0,0);}
.m4e_c00043{transform:matrix(0.224517,0.006286,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224517,0.006286,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224517,0.006286,-0.006997,0.249902,0,0);}
.ma0_c00043{transform:matrix(0.225785,0.004967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225785,0.004967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225785,0.004967,-0.005499,0.249940,0,0);}
.mbe_c00043{transform:matrix(0.225830,0.004968,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225830,0.004968,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225830,0.004968,-0.005499,0.249940,0,0);}
.m34_c00043{transform:matrix(0.226386,0.006339,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226386,0.006339,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226386,0.006339,-0.006997,0.249902,0,0);}
.m4f_c00043{transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);}
.m88_c00043{transform:matrix(0.231854,0.005101,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231854,0.005101,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231854,0.005101,-0.005499,0.249940,0,0);}
.m1d_c00043{transform:matrix(0.231984,0.005104,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231984,0.005104,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231984,0.005104,-0.005499,0.249940,0,0);}
.m8e_c00043{transform:matrix(0.232544,0.005116,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232544,0.005116,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232544,0.005116,-0.005499,0.249940,0,0);}
.m6e_c00043{transform:matrix(0.232619,0.005118,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232619,0.005118,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232619,0.005118,-0.005499,0.249940,0,0);}
.ma1_c00043{transform:matrix(0.232674,0.005119,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232674,0.005119,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232674,0.005119,-0.005499,0.249940,0,0);}
.m64_c00043{transform:matrix(0.234428,0.006564,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234428,0.006564,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234428,0.006564,-0.006997,0.249902,0,0);}
.mdd_c00043{transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);}
.m5d_c00043{transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);}
.m1e_c00043{transform:matrix(0.242901,0.005344,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242901,0.005344,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242901,0.005344,-0.005499,0.249940,0,0);}
.maa_c00043{transform:matrix(0.249410,0.005487,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249410,0.005487,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249410,0.005487,-0.005499,0.249940,0,0);}
.mbc_c00043{transform:matrix(0.251464,0.005532,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251464,0.005532,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251464,0.005532,-0.005499,0.249940,0,0);}
.m15_c00043{transform:matrix(0.251874,0.005541,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251874,0.005541,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251874,0.005541,-0.005499,0.249940,0,0);}
.m83_c00043{transform:matrix(0.254203,0.005592,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254203,0.005592,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254203,0.005592,-0.005499,0.249940,0,0);}
.m11_c00043{transform:matrix(0.254353,0.005596,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254353,0.005596,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254353,0.005596,-0.005499,0.249940,0,0);}
.m10_c00043{transform:matrix(0.254863,0.005607,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254863,0.005607,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254863,0.005607,-0.005499,0.249940,0,0);}
.m41_c00043{transform:matrix(0.256115,0.007171,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256115,0.007171,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256115,0.007171,-0.006997,0.249902,0,0);}
.m18_c00043{transform:matrix(0.260342,0.005728,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260342,0.005728,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260342,0.005728,-0.005499,0.249940,0,0);}
.m8c_c00043{transform:matrix(0.261467,0.005752,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261467,0.005752,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261467,0.005752,-0.005499,0.249940,0,0);}
.m49_c00043{transform:matrix(0.262762,0.007357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262762,0.007357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262762,0.007357,-0.006997,0.249902,0,0);}
.m7b_c00043{transform:matrix(0.262811,0.005782,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262811,0.005782,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262811,0.005782,-0.005499,0.249940,0,0);}
.m86_c00043{transform:matrix(0.263916,0.005806,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263916,0.005806,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263916,0.005806,-0.005499,0.249940,0,0);}
.m8b_c00043{transform:matrix(0.265756,0.005847,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265756,0.005847,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265756,0.005847,-0.005499,0.249940,0,0);}
.m57_c00043{transform:matrix(0.265951,0.007447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265951,0.007447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265951,0.007447,-0.006997,0.249902,0,0);}
.m2_c00043{transform:matrix(0.270979,0.005962,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270979,0.005962,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270979,0.005962,-0.005499,0.249940,0,0);}
.mc1_c00043{transform:matrix(0.272334,0.005991,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272334,0.005991,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272334,0.005991,-0.005499,0.249940,0,0);}
.m17_c00043{transform:matrix(0.291634,0.006416,-0.005499,0.249940,0,0);-ms-transform:matrix(0.291634,0.006416,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.291634,0.006416,-0.005499,0.249940,0,0);}
.m52_c00043{transform:matrix(0.335798,0.009402,-0.006997,0.249902,0,0);-ms-transform:matrix(0.335798,0.009402,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.335798,0.009402,-0.006997,0.249902,0,0);}
.mb_c00043{transform:matrix(0.351455,0.007732,-0.005499,0.249940,0,0);-ms-transform:matrix(0.351455,0.007732,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.351455,0.007732,-0.005499,0.249940,0,0);}
.m29_c00043{transform:matrix(0.618945,0.013617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.618945,0.013617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.618945,0.013617,-0.005499,0.249940,0,0);}
.m24_c00043{transform:matrix(0.649408,0.014287,-0.005499,0.249940,0,0);-ms-transform:matrix(0.649408,0.014287,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.649408,0.014287,-0.005499,0.249940,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:0.000000px;}
.fc0_c00043{color:transparent;}
.fse_c00043{font-size:57.763974px;}
.fs5_c00043{font-size:58.814228px;}
.fsb_c00043{font-size:58.823045px;}
.fs12_c00043{font-size:59.864482px;}
.fs9_c00043{font-size:59.873457px;}
.fs4_c00043{font-size:60.914736px;}
.fsd_c00043{font-size:61.964990px;}
.fsa_c00043{font-size:61.974280px;}
.fs6_c00043{font-size:63.024691px;}
.fs10_c00043{font-size:64.065498px;}
.fsc_c00043{font-size:64.075103px;}
.fs11_c00043{font-size:65.115752px;}
.fs0_c00043{font-size:66.166006px;}
.fs7_c00043{font-size:67.226337px;}
.fs3_c00043{font-size:68.266515px;}
.fs2_c00043{font-size:69.316769px;}
.fs8_c00043{font-size:69.327160px;}
.fsf_c00043{font-size:70.367023px;}
.fs1_c00043{font-size:71.417277px;}
.y0_c00043{bottom:0.000000px;}
.yfc_c00043{bottom:13.608285px;}
.yfb_c00043{bottom:14.018193px;}
.yfa_c00043{bottom:15.132708px;}
.yf9_c00043{bottom:15.547962px;}
.yf8_c00043{bottom:16.960509px;}
.yf7_c00043{bottom:17.578746px;}
.yf6_c00043{bottom:18.800271px;}
.yf5_c00043{bottom:19.740033px;}
.yf4_c00043{bottom:20.187426px;}
.yf3_c00043{bottom:32.617644px;}
.yf2_c00043{bottom:33.572433px;}
.yf1_c00043{bottom:34.058622px;}
.yf0_c00043{bottom:34.569594px;}
.yef_c00043{bottom:35.668362px;}
.yee_c00043{bottom:36.371328px;}
.yed_c00043{bottom:37.008063px;}
.yec_c00043{bottom:37.471152px;}
.yeb_c00043{bottom:47.523720px;}
.yea_c00043{bottom:48.296844px;}
.ye9_c00043{bottom:50.132142px;}
.ye8_c00043{bottom:50.567475px;}
.ye7_c00043{bottom:52.193991px;}
.ye6_c00043{bottom:52.536153px;}
.ye5_c00043{bottom:53.405583px;}
.ye4_c00043{bottom:65.340882px;}
.ye3_c00043{bottom:66.887607px;}
.ye2_c00043{bottom:67.247160px;}
.ye1_c00043{bottom:69.259710px;}
.ye0_c00043{bottom:70.079592px;}
.ydf_c00043{bottom:71.769168px;}
.yde_c00043{bottom:83.107941px;}
.ydd_c00043{bottom:83.670564px;}
.ydc_c00043{bottom:85.083072px;}
.ydb_c00043{bottom:85.548198px;}
.yda_c00043{bottom:85.809303px;}
.yd9_c00043{bottom:87.211332px;}
.yd8_c00043{bottom:88.118991px;}
.yd7_c00043{bottom:88.510317px;}
.yd6_c00043{bottom:100.067751px;}
.yd5_c00043{bottom:101.212701px;}
.yd4_c00043{bottom:101.567094px;}
.yd3_c00043{bottom:102.047370px;}
.yd2_c00043{bottom:102.449967px;}
.yd1_c00043{bottom:103.382826px;}
.yd0_c00043{bottom:104.445297px;}
.ycf_c00043{bottom:116.970759px;}
.yce_c00043{bottom:117.242577px;}
.ycd_c00043{bottom:118.055985px;}
.ycc_c00043{bottom:119.107443px;}
.ycb_c00043{bottom:119.470731px;}
.yca_c00043{bottom:120.196515px;}
.yc9_c00043{bottom:120.550428px;}
.yc8_c00043{bottom:121.275816px;}
.yc7_c00043{bottom:121.730079px;}
.yc6_c00043{bottom:133.864008px;}
.yc5_c00043{bottom:135.205311px;}
.yc4_c00043{bottom:135.569943px;}
.yc3_c00043{bottom:136.333188px;}
.yc2_c00043{bottom:136.721850px;}
.yc1_c00043{bottom:137.619567px;}
.yc0_c00043{bottom:138.744192px;}
.ybf_c00043{bottom:150.567093px;}
.ybe_c00043{bottom:151.675344px;}
.ybd_c00043{bottom:152.058249px;}
.ybc_c00043{bottom:152.770758px;}
.ybb_c00043{bottom:153.029949px;}
.yba_c00043{bottom:154.208661px;}
.yb9_c00043{bottom:154.564866px;}
.yb8_c00043{bottom:155.471169px;}
.yb7_c00043{bottom:155.791944px;}
.yb6_c00043{bottom:156.299205px;}
.yb5_c00043{bottom:169.112595px;}
.yb4_c00043{bottom:169.758426px;}
.yb3_c00043{bottom:171.040536px;}
.yb2_c00043{bottom:172.087779px;}
.yb1_c00043{bottom:172.546707px;}
.yb0_c00043{bottom:172.984779px;}
.yaf_c00043{bottom:174.394989px;}
.yae_c00043{bottom:174.935637px;}
.yad_c00043{bottom:183.677058px;}
.yac_c00043{bottom:184.884453px;}
.yab_c00043{bottom:185.454687px;}
.yaa_c00043{bottom:186.151155px;}
.ya9_c00043{bottom:187.736841px;}
.ya8_c00043{bottom:188.650326px;}
.ya7_c00043{bottom:189.145746px;}
.ya6_c00043{bottom:190.216926px;}
.ya5_c00043{bottom:190.625094px;}
.ya4_c00043{bottom:191.952075px;}
.ya3_c00043{bottom:202.766814px;}
.ya2_c00043{bottom:203.298894px;}
.ya1_c00043{bottom:204.796260px;}
.ya0_c00043{bottom:205.217454px;}
.y9f_c00043{bottom:205.736286px;}
.y9e_c00043{bottom:206.764134px;}
.y9d_c00043{bottom:207.220173px;}
.y9c_c00043{bottom:208.963500px;}
.y9b_c00043{bottom:218.443596px;}
.y9a_c00043{bottom:220.770393px;}
.y99_c00043{bottom:221.825544px;}
.y98_c00043{bottom:223.756782px;}
.y97_c00043{bottom:224.336172px;}
.y96_c00043{bottom:225.847257px;}
.y95_c00043{bottom:226.520559px;}
.y94_c00043{bottom:235.345812px;}
.y93_c00043{bottom:236.814651px;}
.y92_c00043{bottom:238.273971px;}
.y91_c00043{bottom:239.413695px;}
.y90_c00043{bottom:239.856951px;}
.y8f_c00043{bottom:241.661139px;}
.y8e_c00043{bottom:242.172726px;}
.y8d_c00043{bottom:243.265236px;}
.y8c_c00043{bottom:253.032300px;}
.y8b_c00043{bottom:254.577288px;}
.y8a_c00043{bottom:255.145905px;}
.y89_c00043{bottom:256.727847px;}
.y88_c00043{bottom:257.650554px;}
.y87_c00043{bottom:259.549848px;}
.y86_c00043{bottom:260.819007px;}
.y85_c00043{bottom:271.049898px;}
.y84_c00043{bottom:272.380794px;}
.y83_c00043{bottom:273.121440px;}
.y82_c00043{bottom:273.595890px;}
.y81_c00043{bottom:275.310117px;}
.y80_c00043{bottom:275.734017px;}
.y7f_c00043{bottom:276.614253px;}
.y7e_c00043{bottom:277.827435px;}
.y7d_c00043{bottom:286.327188px;}
.y7c_c00043{bottom:287.946165px;}
.y7b_c00043{bottom:289.827378px;}
.y7a_c00043{bottom:290.239290px;}
.y79_c00043{bottom:292.408803px;}
.y78_c00043{bottom:293.146134px;}
.y77_c00043{bottom:294.574902px;}
.y76_c00043{bottom:305.235339px;}
.y75_c00043{bottom:305.723343px;}
.y74_c00043{bottom:306.596457px;}
.y73_c00043{bottom:306.881247px;}
.y72_c00043{bottom:308.117262px;}
.y71_c00043{bottom:308.681430px;}
.y70_c00043{bottom:310.506000px;}
.y6f_c00043{bottom:320.895528px;}
.y6e_c00043{bottom:322.424262px;}
.y6d_c00043{bottom:324.325848px;}
.y6c_c00043{bottom:325.127700px;}
.y6b_c00043{bottom:326.714346px;}
.y6a_c00043{bottom:327.196206px;}
.y69_c00043{bottom:339.381552px;}
.y68_c00043{bottom:339.959304px;}
.y67_c00043{bottom:340.866606px;}
.y66_c00043{bottom:341.332320px;}
.y65_c00043{bottom:342.270258px;}
.y64_c00043{bottom:343.015374px;}
.y63_c00043{bottom:343.633728px;}
.y62_c00043{bottom:344.039778px;}
.y61_c00043{bottom:345.018486px;}
.y60_c00043{bottom:355.600152px;}
.y5f_c00043{bottom:355.974204px;}
.y5e_c00043{bottom:358.034808px;}
.y5d_c00043{bottom:358.599246px;}
.y5c_c00043{bottom:360.387354px;}
.y5b_c00043{bottom:360.928272px;}
.y5a_c00043{bottom:362.580342px;}
.y59_c00043{bottom:372.545070px;}
.y58_c00043{bottom:374.587362px;}
.y57_c00043{bottom:377.401032px;}
.y56_c00043{bottom:379.395324px;}
.y55_c00043{bottom:379.862316px;}
.y54_c00043{bottom:388.889730px;}
.y53_c00043{bottom:390.203832px;}
.y52_c00043{bottom:390.807450px;}
.y51_c00043{bottom:392.379126px;}
.y50_c00043{bottom:393.730590px;}
.y4f_c00043{bottom:394.236120px;}
.y4e_c00043{bottom:395.759262px;}
.y4d_c00043{bottom:396.427596px;}
.y4c_c00043{bottom:396.882354px;}
.y4b_c00043{bottom:407.087298px;}
.y4a_c00043{bottom:408.153300px;}
.y49_c00043{bottom:408.565956px;}
.y48_c00043{bottom:409.681770px;}
.y47_c00043{bottom:411.430746px;}
.y46_c00043{bottom:413.040126px;}
.y45_c00043{bottom:413.628558px;}
.y44_c00043{bottom:414.170832px;}
.y43_c00043{bottom:423.300126px;}
.y42_c00043{bottom:425.014524px;}
.y41_c00043{bottom:425.363148px;}
.y40_c00043{bottom:426.388584px;}
.y3f_c00043{bottom:427.616856px;}
.y3e_c00043{bottom:428.872860px;}
.y3d_c00043{bottom:429.493758px;}
.y3c_c00043{bottom:430.652676px;}
.y3b_c00043{bottom:441.382986px;}
.y3a_c00043{bottom:442.355286px;}
.y39_c00043{bottom:444.332310px;}
.y38_c00043{bottom:444.832362px;}
.y37_c00043{bottom:446.821776px;}
.y36_c00043{bottom:447.669000px;}
.y35_c00043{bottom:458.225565px;}
.y34_c00043{bottom:458.422038px;}
.y33_c00043{bottom:459.093159px;}
.y32_c00043{bottom:459.375756px;}
.y31_c00043{bottom:460.378887px;}
.y30_c00043{bottom:461.756217px;}
.y2f_c00043{bottom:461.999895px;}
.y2e_c00043{bottom:462.485121px;}
.y2d_c00043{bottom:476.312724px;}
.y2c_c00043{bottom:477.010443px;}
.y2b_c00043{bottom:478.122084px;}
.y2a_c00043{bottom:479.005602px;}
.y29_c00043{bottom:479.331591px;}
.y28_c00043{bottom:479.852190px;}
.y27_c00043{bottom:481.124697px;}
.y26_c00043{bottom:490.310907px;}
.y25_c00043{bottom:491.689119px;}
.y24_c00043{bottom:492.049545px;}
.y23_c00043{bottom:492.655293px;}
.y22_c00043{bottom:493.731225px;}
.y21_c00043{bottom:494.297472px;}
.y20_c00043{bottom:494.660109px;}
.y1f_c00043{bottom:495.177549px;}
.y1e_c00043{bottom:496.484679px;}
.y1d_c00043{bottom:497.057856px;}
.y1c_c00043{bottom:507.933081px;}
.y1b_c00043{bottom:509.692428px;}
.y1a_c00043{bottom:511.405044px;}
.y19_c00043{bottom:511.849641px;}
.y18_c00043{bottom:512.336859px;}
.y17_c00043{bottom:513.151272px;}
.y16_c00043{bottom:513.516105px;}
.y15_c00043{bottom:514.343652px;}
.y14_c00043{bottom:525.486399px;}
.y13_c00043{bottom:526.339572px;}
.y12_c00043{bottom:526.659522px;}
.y11_c00043{bottom:527.853585px;}
.y10_c00043{bottom:529.203234px;}
.yf_c00043{bottom:530.156682px;}
.ye_c00043{bottom:530.876397px;}
.yd_c00043{bottom:531.356817px;}
.yc_c00043{bottom:541.881390px;}
.yb_c00043{bottom:542.886174px;}
.ya_c00043{bottom:544.258512px;}
.y9_c00043{bottom:544.672134px;}
.y8_c00043{bottom:544.953327px;}
.y7_c00043{bottom:546.171258px;}
.y6_c00043{bottom:546.550032px;}
.y5_c00043{bottom:547.120140px;}
.y4_c00043{bottom:548.642628px;}
.y3_c00043{bottom:559.509597px;}
.y2_c00043{bottom:560.404623px;}
.y1_c00043{bottom:562.146000px;}
.hf_c00043{height:57.763974px;}
.h6_c00043{height:58.814228px;}
.hc_c00043{height:58.823045px;}
.h13_c00043{height:59.864482px;}
.ha_c00043{height:59.873457px;}
.h5_c00043{height:60.914736px;}
.he_c00043{height:61.964990px;}
.hb_c00043{height:61.974280px;}
.h7_c00043{height:63.024691px;}
.h11_c00043{height:64.065498px;}
.hd_c00043{height:64.075103px;}
.h12_c00043{height:65.115752px;}
.h1_c00043{height:66.166006px;}
.h8_c00043{height:67.226337px;}
.h4_c00043{height:68.266515px;}
.h3_c00043{height:69.316769px;}
.h9_c00043{height:69.327160px;}
.h10_c00043{height:70.367023px;}
.h2_c00043{height:71.417277px;}
.h0_c00043{height:600.750000px;}
.w1_c00043{width:363.750000px;}
.w0_c00043{width:363.900000px;}
.x0_c00043{left:0.000000px;}
.x4e_c00043{left:35.901000px;}
.x7d_c00043{left:37.257987px;}
.x70_c00043{left:38.389272px;}
.x63_c00043{left:39.871635px;}
.x53_c00043{left:41.262279px;}
.x42_c00043{left:42.586230px;}
.x2f_c00043{left:43.926312px;}
.x14_c00043{left:45.606960px;}
.x4_c00043{left:46.703703px;}
.x84_c00043{left:54.264627px;}
.x78_c00043{left:58.431252px;}
.x3c_c00043{left:60.967110px;}
.x4a_c00043{left:63.706314px;}
.x6f_c00043{left:64.810923px;}
.x36_c00043{left:67.061634px;}
.xd_c00043{left:68.834241px;}
.x1a_c00043{left:71.748399px;}
.x26_c00043{left:73.162785px;}
.x80_c00043{left:75.035841px;}
.x5f_c00043{left:80.887158px;}
.x15_c00043{left:84.996318px;}
.x27_c00043{left:87.513369px;}
.x69_c00043{left:88.763469px;}
.x56_c00043{left:90.170496px;}
.x37_c00043{left:92.634204px;}
.x54_c00043{left:94.200471px;}
.x2c_c00043{left:99.847500px;}
.x43_c00043{left:101.588730px;}
.xe_c00043{left:103.117500px;}
.x22_c00043{left:105.648561px;}
.x74_c00043{left:107.784774px;}
.x30_c00043{left:109.850160px;}
.x65_c00043{left:112.295268px;}
.x5_c00043{left:115.907703px;}
.x4f_c00043{left:118.836000px;}
.x44_c00043{left:120.907230px;}
.x57_c00043{left:125.406186px;}
.x48_c00043{left:129.337800px;}
.x1b_c00043{left:131.163399px;}
.x4b_c00043{left:135.812910px;}
.x40_c00043{left:137.657862px;}
.x6_c00043{left:141.821703px;}
.x75_c00043{left:143.129355px;}
.x50_c00043{left:144.480000px;}
.x23_c00043{left:145.903419px;}
.xf_c00043{left:148.502490px;}
.x71_c00043{left:150.710139px;}
.x1c_c00043{left:154.683399px;}
.x31_c00043{left:156.369462px;}
.x7_c00043{left:159.038703px;}
.x81_c00043{left:160.632960px;}
.x38_c00043{left:162.603990px;}
.x16_c00043{left:164.360067px;}
.x60_c00043{left:166.640220px;}
.x28_c00043{left:168.537279px;}
.x85_c00043{left:170.101545px;}
.x1d_c00043{left:171.166899px;}
.x4c_c00043{left:172.278042px;}
.x66_c00043{left:174.151062px;}
.x79_c00043{left:179.993271px;}
.x1_c00043{left:183.891000px;}
.x17_c00043{left:185.524029px;}
.x24_c00043{left:187.973343px;}
.x76_c00043{left:189.603924px;}
.x5b_c00043{left:192.505713px;}
.x7a_c00043{left:193.771695px;}
.x67_c00043{left:195.756105px;}
.x1e_c00043{left:196.905399px;}
.x51_c00043{left:200.662500px;}
.x32_c00043{left:201.844722px;}
.x45_c00043{left:204.926730px;}
.x6d_c00043{left:209.029998px;}
.x58_c00043{left:210.929043px;}
.x10_c00043{left:212.783409px;}
.x8_c00043{left:214.399203px;}
.x3d_c00043{left:216.653304px;}
.x7b_c00043{left:218.256312px;}
.x49_c00043{left:222.806904px;}
.x61_c00043{left:225.223752px;}
.x9_c00043{left:227.180703px;}
.x59_c00043{left:229.902789px;}
.x7e_c00043{left:233.867664px;}
.x72_c00043{left:234.992064px;}
.x39_c00043{left:238.631616px;}
.x33_c00043{left:239.807772px;}
.x25_c00043{left:240.889998px;}
.x29_c00043{left:244.169595px;}
.xa_c00043{left:245.981703px;}
.x7f_c00043{left:249.528834px;}
.x5c_c00043{left:251.110278px;}
.x34_c00043{left:252.741150px;}
.x6a_c00043{left:254.469753px;}
.x83_c00043{left:257.345541px;}
.x2d_c00043{left:259.365000px;}
.x2_c00043{left:263.044500px;}
.x6e_c00043{left:264.783777px;}
.x18_c00043{left:267.053811px;}
.x77_c00043{left:268.465605px;}
.x11_c00043{left:269.651163px;}
.x5d_c00043{left:272.181468px;}
.x1f_c00043{left:273.345399px;}
.x52_c00043{left:275.476500px;}
.x3e_c00043{left:277.073664px;}
.x46_c00043{left:278.519730px;}
.x6b_c00043{left:280.260915px;}
.x2a_c00043{left:283.679451px;}
.x12_c00043{left:284.876493px;}
.x3a_c00043{left:287.113878px;}
.x20_c00043{left:289.728399px;}
.x47_c00043{left:291.878730px;}
.x82_c00043{left:292.982556px;}
.x2e_c00043{left:294.090000px;}
.x2b_c00043{left:295.202205px;}
.x68_c00043{left:297.871617px;}
.x3f_c00043{left:300.293466px;}
.x6c_c00043{left:301.405605px;}
.x3_c00043{left:303.727500px;}
.x3b_c00043{left:305.068398px;}
.xb_c00043{left:308.360703px;}
.x73_c00043{left:309.535131px;}
.x5a_c00043{left:312.808344px;}
.x35_c00043{left:316.221414px;}
.x64_c00043{left:318.395268px;}
.x7c_c00043{left:322.223676px;}
.x41_c00043{left:324.434820px;}
.x13_c00043{left:325.498884px;}
.x4d_c00043{left:328.244250px;}
.x5e_c00043{left:329.379165px;}
.x62_c00043{left:333.696339px;}
.x55_c00043{left:346.715685px;}
.x19_c00043{left:350.844159px;}
.x21_c00043{left:352.374399px;}
.xc_c00043{left:354.032703px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.fse_c00043{font-size:51.345754pt;}
.fs5_c00043{font-size:52.279314pt;}
.fsb_c00043{font-size:52.287151pt;}
.fs12_c00043{font-size:53.212873pt;}
.fs9_c00043{font-size:53.220850pt;}
.fs4_c00043{font-size:54.146432pt;}
.fsd_c00043{font-size:55.079991pt;}
.fsa_c00043{font-size:55.088249pt;}
.fs6_c00043{font-size:56.021948pt;}
.fs10_c00043{font-size:56.947110pt;}
.fsc_c00043{font-size:56.955647pt;}
.fs11_c00043{font-size:57.880669pt;}
.fs0_c00043{font-size:58.814228pt;}
.fs7_c00043{font-size:59.756744pt;}
.fs3_c00043{font-size:60.681346pt;}
.fs2_c00043{font-size:61.614905pt;}
.fs8_c00043{font-size:61.624142pt;}
.fsf_c00043{font-size:62.548465pt;}
.fs1_c00043{font-size:63.482024pt;}
.y0_c00043{bottom:0.000000pt;}
.yfc_c00043{bottom:12.096253pt;}
.yfb_c00043{bottom:12.460616pt;}
.yfa_c00043{bottom:13.451296pt;}
.yf9_c00043{bottom:13.820411pt;}
.yf8_c00043{bottom:15.076008pt;}
.yf7_c00043{bottom:15.625552pt;}
.yf6_c00043{bottom:16.711352pt;}
.yf5_c00043{bottom:17.546696pt;}
.yf4_c00043{bottom:17.944379pt;}
.yf3_c00043{bottom:28.993461pt;}
.yf2_c00043{bottom:29.842163pt;}
.yf1_c00043{bottom:30.274331pt;}
.yf0_c00043{bottom:30.728528pt;}
.yef_c00043{bottom:31.705211pt;}
.yee_c00043{bottom:32.330069pt;}
.yed_c00043{bottom:32.896056pt;}
.yec_c00043{bottom:33.307691pt;}
.yeb_c00043{bottom:42.243307pt;}
.yea_c00043{bottom:42.930528pt;}
.ye9_c00043{bottom:44.561904pt;}
.ye8_c00043{bottom:44.948867pt;}
.ye7_c00043{bottom:46.394659pt;}
.ye6_c00043{bottom:46.698803pt;}
.ye5_c00043{bottom:47.471629pt;}
.ye4_c00043{bottom:58.080784pt;}
.ye3_c00043{bottom:59.455651pt;}
.ye2_c00043{bottom:59.775253pt;}
.ye1_c00043{bottom:61.564187pt;}
.ye0_c00043{bottom:62.292971pt;}
.ydf_c00043{bottom:63.794816pt;}
.yde_c00043{bottom:73.873725pt;}
.ydd_c00043{bottom:74.373835pt;}
.ydc_c00043{bottom:75.629397pt;}
.ydb_c00043{bottom:76.042843pt;}
.yda_c00043{bottom:76.274936pt;}
.yd9_c00043{bottom:77.521184pt;}
.yd8_c00043{bottom:78.327992pt;}
.yd7_c00043{bottom:78.675837pt;}
.yd6_c00043{bottom:88.949112pt;}
.yd5_c00043{bottom:89.966845pt;}
.yd4_c00043{bottom:90.281861pt;}
.yd3_c00043{bottom:90.708773pt;}
.yd2_c00043{bottom:91.066637pt;}
.yd1_c00043{bottom:91.895845pt;}
.yd0_c00043{bottom:92.840264pt;}
.ycf_c00043{bottom:103.974008pt;}
.yce_c00043{bottom:104.215624pt;}
.ycd_c00043{bottom:104.938653pt;}
.ycc_c00043{bottom:105.873283pt;}
.ycb_c00043{bottom:106.196205pt;}
.yca_c00043{bottom:106.841347pt;}
.yc9_c00043{bottom:107.155936pt;}
.yc8_c00043{bottom:107.800725pt;}
.yc7_c00043{bottom:108.204515pt;}
.yc6_c00043{bottom:118.990229pt;}
.yc5_c00043{bottom:120.182499pt;}
.yc4_c00043{bottom:120.506616pt;}
.yc3_c00043{bottom:121.185056pt;}
.yc2_c00043{bottom:121.530533pt;}
.yc1_c00043{bottom:122.328504pt;}
.yc0_c00043{bottom:123.328171pt;}
.ybf_c00043{bottom:133.837416pt;}
.ybe_c00043{bottom:134.822528pt;}
.ybd_c00043{bottom:135.162888pt;}
.ybc_c00043{bottom:135.796229pt;}
.ybb_c00043{bottom:136.026621pt;}
.yba_c00043{bottom:137.074365pt;}
.yb9_c00043{bottom:137.390992pt;}
.yb8_c00043{bottom:138.196595pt;}
.yb7_c00043{bottom:138.481728pt;}
.yb6_c00043{bottom:138.932627pt;}
.yb5_c00043{bottom:150.322307pt;}
.yb4_c00043{bottom:150.896379pt;}
.yb3_c00043{bottom:152.036032pt;}
.yb2_c00043{bottom:152.966915pt;}
.yb1_c00043{bottom:153.374851pt;}
.yb0_c00043{bottom:153.764248pt;}
.yaf_c00043{bottom:155.017768pt;}
.yae_c00043{bottom:155.498344pt;}
.yad_c00043{bottom:163.268496pt;}
.yac_c00043{bottom:164.341736pt;}
.yab_c00043{bottom:164.848611pt;}
.yaa_c00043{bottom:165.467693pt;}
.ya9_c00043{bottom:166.877192pt;}
.ya8_c00043{bottom:167.689179pt;}
.ya7_c00043{bottom:168.129552pt;}
.ya6_c00043{bottom:169.081712pt;}
.ya5_c00043{bottom:169.444528pt;}
.ya4_c00043{bottom:170.624067pt;}
.ya3_c00043{bottom:180.237168pt;}
.ya2_c00043{bottom:180.710128pt;}
.ya1_c00043{bottom:182.041120pt;}
.ya0_c00043{bottom:182.415515pt;}
.y9f_c00043{bottom:182.876699pt;}
.y9e_c00043{bottom:183.790341pt;}
.y9d_c00043{bottom:184.195709pt;}
.y9c_c00043{bottom:185.745333pt;}
.y9b_c00043{bottom:194.172085pt;}
.y9a_c00043{bottom:196.240349pt;}
.y99_c00043{bottom:197.178261pt;}
.y98_c00043{bottom:198.894917pt;}
.y97_c00043{bottom:199.409931pt;}
.y96_c00043{bottom:200.753117pt;}
.y95_c00043{bottom:201.351608pt;}
.y94_c00043{bottom:209.196277pt;}
.y93_c00043{bottom:210.501912pt;}
.y92_c00043{bottom:211.799085pt;}
.y91_c00043{bottom:212.812173pt;}
.y90_c00043{bottom:213.206179pt;}
.y8f_c00043{bottom:214.809901pt;}
.y8e_c00043{bottom:215.264645pt;}
.y8d_c00043{bottom:216.235765pt;}
.y8c_c00043{bottom:224.917600pt;}
.y8b_c00043{bottom:226.290923pt;}
.y8a_c00043{bottom:226.796360pt;}
.y89_c00043{bottom:228.202531pt;}
.y88_c00043{bottom:229.022715pt;}
.y87_c00043{bottom:230.710976pt;}
.y86_c00043{bottom:231.839117pt;}
.y85_c00043{bottom:240.933243pt;}
.y84_c00043{bottom:242.116261pt;}
.y83_c00043{bottom:242.774613pt;}
.y82_c00043{bottom:243.196347pt;}
.y81_c00043{bottom:244.720104pt;}
.y80_c00043{bottom:245.096904pt;}
.y7f_c00043{bottom:245.879336pt;}
.y7e_c00043{bottom:246.957720pt;}
.y7d_c00043{bottom:254.513056pt;}
.y7c_c00043{bottom:255.952147pt;}
.y7b_c00043{bottom:257.624336pt;}
.y7a_c00043{bottom:257.990480pt;}
.y79_c00043{bottom:259.918936pt;}
.y78_c00043{bottom:260.574341pt;}
.y77_c00043{bottom:261.844357pt;}
.y76_c00043{bottom:271.320301pt;}
.y75_c00043{bottom:271.754083pt;}
.y74_c00043{bottom:272.530184pt;}
.y73_c00043{bottom:272.783331pt;}
.y72_c00043{bottom:273.882011pt;}
.y71_c00043{bottom:274.383493pt;}
.y70_c00043{bottom:276.005333pt;}
.y6f_c00043{bottom:285.240469pt;}
.y6e_c00043{bottom:286.599344pt;}
.y6d_c00043{bottom:288.289643pt;}
.y6c_c00043{bottom:289.002400pt;}
.y6b_c00043{bottom:290.412752pt;}
.y6a_c00043{bottom:290.841072pt;}
.y69_c00043{bottom:301.672491pt;}
.y68_c00043{bottom:302.186048pt;}
.y67_c00043{bottom:302.992539pt;}
.y66_c00043{bottom:303.406507pt;}
.y65_c00043{bottom:304.240229pt;}
.y64_c00043{bottom:304.902555pt;}
.y63_c00043{bottom:305.452203pt;}
.y62_c00043{bottom:305.813136pt;}
.y61_c00043{bottom:306.683099pt;}
.y60_c00043{bottom:316.089024pt;}
.y5f_c00043{bottom:316.421515pt;}
.y5e_c00043{bottom:318.253163pt;}
.y5d_c00043{bottom:318.754885pt;}
.y5c_c00043{bottom:320.344315pt;}
.y5b_c00043{bottom:320.825131pt;}
.y5a_c00043{bottom:322.293637pt;}
.y59_c00043{bottom:331.151173pt;}
.y58_c00043{bottom:332.966544pt;}
.y57_c00043{bottom:335.467584pt;}
.y56_c00043{bottom:337.240288pt;}
.y55_c00043{bottom:337.655392pt;}
.y54_c00043{bottom:345.679760pt;}
.y53_c00043{bottom:346.847851pt;}
.y52_c00043{bottom:347.384400pt;}
.y51_c00043{bottom:348.781445pt;}
.y50_c00043{bottom:349.982747pt;}
.y4f_c00043{bottom:350.432107pt;}
.y4e_c00043{bottom:351.786011pt;}
.y4d_c00043{bottom:352.380085pt;}
.y4c_c00043{bottom:352.784315pt;}
.y4b_c00043{bottom:361.855376pt;}
.y4a_c00043{bottom:362.802933pt;}
.y49_c00043{bottom:363.169739pt;}
.y48_c00043{bottom:364.161573pt;}
.y47_c00043{bottom:365.716219pt;}
.y46_c00043{bottom:367.146779pt;}
.y45_c00043{bottom:367.669829pt;}
.y44_c00043{bottom:368.151851pt;}
.y43_c00043{bottom:376.266779pt;}
.y42_c00043{bottom:377.790688pt;}
.y41_c00043{bottom:378.100576pt;}
.y40_c00043{bottom:379.012075pt;}
.y3f_c00043{bottom:380.103872pt;}
.y3e_c00043{bottom:381.220320pt;}
.y3d_c00043{bottom:381.772229pt;}
.y3c_c00043{bottom:382.802379pt;}
.y3b_c00043{bottom:392.340432pt;}
.y3a_c00043{bottom:393.204699pt;}
.y39_c00043{bottom:394.962053pt;}
.y38_c00043{bottom:395.406544pt;}
.y37_c00043{bottom:397.174912pt;}
.y36_c00043{bottom:397.928000pt;}
.y35_c00043{bottom:407.311613pt;}
.y34_c00043{bottom:407.486256pt;}
.y33_c00043{bottom:408.082808pt;}
.y32_c00043{bottom:408.334005pt;}
.y31_c00043{bottom:409.225677pt;}
.y30_c00043{bottom:410.449971pt;}
.y2f_c00043{bottom:410.666573pt;}
.y2e_c00043{bottom:411.097885pt;}
.y2d_c00043{bottom:423.389088pt;}
.y2c_c00043{bottom:424.009283pt;}
.y2b_c00043{bottom:424.997408pt;}
.y2a_c00043{bottom:425.782757pt;}
.y29_c00043{bottom:426.072525pt;}
.y28_c00043{bottom:426.535280pt;}
.y27_c00043{bottom:427.666397pt;}
.y26_c00043{bottom:435.831917pt;}
.y25_c00043{bottom:437.056995pt;}
.y24_c00043{bottom:437.377373pt;}
.y23_c00043{bottom:437.915816pt;}
.y22_c00043{bottom:438.872200pt;}
.y21_c00043{bottom:439.375531pt;}
.y20_c00043{bottom:439.697875pt;}
.y1f_c00043{bottom:440.157821pt;}
.y1e_c00043{bottom:441.319715pt;}
.y1d_c00043{bottom:441.829205pt;}
.y1c_c00043{bottom:451.496072pt;}
.y1b_c00043{bottom:453.059936pt;}
.y1a_c00043{bottom:454.582261pt;}
.y19_c00043{bottom:454.977459pt;}
.y18_c00043{bottom:455.410541pt;}
.y17_c00043{bottom:456.134464pt;}
.y16_c00043{bottom:456.458760pt;}
.y15_c00043{bottom:457.194357pt;}
.y14_c00043{bottom:467.099021pt;}
.y13_c00043{bottom:467.857397pt;}
.y12_c00043{bottom:468.141797pt;}
.y11_c00043{bottom:469.203187pt;}
.y10_c00043{bottom:470.402875pt;}
.yf_c00043{bottom:471.250384pt;}
.ye_c00043{bottom:471.890131pt;}
.yd_c00043{bottom:472.317171pt;}
.yc_c00043{bottom:481.672347pt;}
.yb_c00043{bottom:482.565488pt;}
.ya_c00043{bottom:483.785344pt;}
.y9_c00043{bottom:484.153008pt;}
.y8_c00043{bottom:484.402957pt;}
.y7_c00043{bottom:485.485563pt;}
.y6_c00043{bottom:485.822251pt;}
.y5_c00043{bottom:486.329013pt;}
.y4_c00043{bottom:487.682336pt;}
.y3_c00043{bottom:497.341864pt;}
.y2_c00043{bottom:498.137443pt;}
.y1_c00043{bottom:499.685333pt;}
.hf_c00043{height:51.345754pt;}
.h6_c00043{height:52.279314pt;}
.hc_c00043{height:52.287151pt;}
.h13_c00043{height:53.212873pt;}
.ha_c00043{height:53.220850pt;}
.h5_c00043{height:54.146432pt;}
.he_c00043{height:55.079991pt;}
.hb_c00043{height:55.088249pt;}
.h7_c00043{height:56.021948pt;}
.h11_c00043{height:56.947110pt;}
.hd_c00043{height:56.955647pt;}
.h12_c00043{height:57.880669pt;}
.h1_c00043{height:58.814228pt;}
.h8_c00043{height:59.756744pt;}
.h4_c00043{height:60.681346pt;}
.h3_c00043{height:61.614905pt;}
.h9_c00043{height:61.624142pt;}
.h10_c00043{height:62.548465pt;}
.h2_c00043{height:63.482024pt;}
.h0_c00043{height:534.000000pt;}
.w1_c00043{width:323.333333pt;}
.w0_c00043{width:323.466667pt;}
.x0_c00043{left:0.000000pt;}
.x4e_c00043{left:31.912000pt;}
.x7d_c00043{left:33.118211pt;}
.x70_c00043{left:34.123797pt;}
.x63_c00043{left:35.441453pt;}
.x53_c00043{left:36.677581pt;}
.x42_c00043{left:37.854427pt;}
.x2f_c00043{left:39.045611pt;}
.x14_c00043{left:40.539520pt;}
.x4_c00043{left:41.514403pt;}
.x84_c00043{left:48.235224pt;}
.x78_c00043{left:51.938891pt;}
.x3c_c00043{left:54.192987pt;}
.x4a_c00043{left:56.627835pt;}
.x6f_c00043{left:57.609709pt;}
.x36_c00043{left:59.610341pt;}
.xd_c00043{left:61.185992pt;}
.x1a_c00043{left:63.776355pt;}
.x26_c00043{left:65.033587pt;}
.x80_c00043{left:66.698525pt;}
.x5f_c00043{left:71.899696pt;}
.x15_c00043{left:75.552283pt;}
.x27_c00043{left:77.789661pt;}
.x69_c00043{left:78.900861pt;}
.x56_c00043{left:80.151552pt;}
.x37_c00043{left:82.341515pt;}
.x54_c00043{left:83.733752pt;}
.x2c_c00043{left:88.753333pt;}
.x43_c00043{left:90.301093pt;}
.xe_c00043{left:91.660000pt;}
.x22_c00043{left:93.909832pt;}
.x74_c00043{left:95.808688pt;}
.x30_c00043{left:97.644587pt;}
.x65_c00043{left:99.818016pt;}
.x5_c00043{left:103.029069pt;}
.x4f_c00043{left:105.632000pt;}
.x44_c00043{left:107.473093pt;}
.x57_c00043{left:111.472165pt;}
.x48_c00043{left:114.966933pt;}
.x1b_c00043{left:116.589688pt;}
.x4b_c00043{left:120.722587pt;}
.x40_c00043{left:122.362544pt;}
.x6_c00043{left:126.063736pt;}
.x75_c00043{left:127.226093pt;}
.x50_c00043{left:128.426667pt;}
.x23_c00043{left:129.691928pt;}
.xf_c00043{left:132.002213pt;}
.x71_c00043{left:133.964568pt;}
.x1c_c00043{left:137.496355pt;}
.x31_c00043{left:138.995077pt;}
.x7_c00043{left:141.367736pt;}
.x81_c00043{left:142.784853pt;}
.x38_c00043{left:144.536880pt;}
.x16_c00043{left:146.097837pt;}
.x60_c00043{left:148.124640pt;}
.x28_c00043{left:149.810915pt;}
.x85_c00043{left:151.201373pt;}
.x1d_c00043{left:152.148355pt;}
.x4c_c00043{left:153.136037pt;}
.x66_c00043{left:154.800944pt;}
.x79_c00043{left:159.994019pt;}
.x1_c00043{left:163.458667pt;}
.x17_c00043{left:164.910248pt;}
.x24_c00043{left:167.087416pt;}
.x76_c00043{left:168.536821pt;}
.x5b_c00043{left:171.116189pt;}
.x7a_c00043{left:172.241507pt;}
.x67_c00043{left:174.005427pt;}
.x1e_c00043{left:175.027021pt;}
.x51_c00043{left:178.366667pt;}
.x32_c00043{left:179.417531pt;}
.x45_c00043{left:182.157093pt;}
.x6d_c00043{left:185.804443pt;}
.x58_c00043{left:187.492483pt;}
.x10_c00043{left:189.140808pt;}
.x8_c00043{left:190.577069pt;}
.x3d_c00043{left:192.580715pt;}
.x7b_c00043{left:194.005611pt;}
.x49_c00043{left:198.050581pt;}
.x61_c00043{left:200.198891pt;}
.x9_c00043{left:201.938403pt;}
.x59_c00043{left:204.358035pt;}
.x7e_c00043{left:207.882368pt;}
.x72_c00043{left:208.881835pt;}
.x39_c00043{left:212.116992pt;}
.x33_c00043{left:213.162464pt;}
.x25_c00043{left:214.124443pt;}
.x29_c00043{left:217.039640pt;}
.xa_c00043{left:218.650403pt;}
.x7f_c00043{left:221.803408pt;}
.x5c_c00043{left:223.209136pt;}
.x34_c00043{left:224.658800pt;}
.x6a_c00043{left:226.195336pt;}
.x83_c00043{left:228.751592pt;}
.x2d_c00043{left:230.546667pt;}
.x2_c00043{left:233.817333pt;}
.x6e_c00043{left:235.363357pt;}
.x18_c00043{left:237.381165pt;}
.x77_c00043{left:238.636093pt;}
.x11_c00043{left:239.689923pt;}
.x5d_c00043{left:241.939083pt;}
.x1f_c00043{left:242.973688pt;}
.x52_c00043{left:244.868000pt;}
.x3e_c00043{left:246.287701pt;}
.x46_c00043{left:247.573093pt;}
.x6b_c00043{left:249.120813pt;}
.x2a_c00043{left:252.159512pt;}
.x12_c00043{left:253.223549pt;}
.x3a_c00043{left:255.212336pt;}
.x20_c00043{left:257.536355pt;}
.x47_c00043{left:259.447760pt;}
.x82_c00043{left:260.428939pt;}
.x2e_c00043{left:261.413333pt;}
.x2b_c00043{left:262.401960pt;}
.x68_c00043{left:264.774771pt;}
.x3f_c00043{left:266.927525pt;}
.x6c_c00043{left:267.916093pt;}
.x3_c00043{left:269.980000pt;}
.x3b_c00043{left:271.171909pt;}
.xb_c00043{left:274.098403pt;}
.x73_c00043{left:275.142339pt;}
.x5a_c00043{left:278.051861pt;}
.x35_c00043{left:281.085701pt;}
.x64_c00043{left:283.018016pt;}
.x7c_c00043{left:286.421045pt;}
.x41_c00043{left:288.386507pt;}
.x13_c00043{left:289.332341pt;}
.x4d_c00043{left:291.772667pt;}
.x5e_c00043{left:292.781480pt;}
.x62_c00043{left:296.618968pt;}
.x55_c00043{left:308.191720pt;}
.x19_c00043{left:311.861475pt;}
.x21_c00043{left:313.221688pt;}
.xc_c00043{left:314.695736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00044 {
    display:none;
  }
  .loading-indicator_c00044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00044 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00044 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00044" -> "#page-container .classname_c00044")
 */
.pf_c00044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00044 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00044 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00044 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00044 {overflow:visible;}
  }
}
.c_c00044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00044 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00044:after { /* webkit #35443 */
  content: '';
}
.t_c00044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00044 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00044 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00044 { /* info for Javascript */
  display:none;
}
.l_c00044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00044:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00044 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00044.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00044{transform:matrix(0.053952,0.001890,-0.008753,0.249847,0,0);-ms-transform:matrix(0.053952,0.001890,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.053952,0.001890,-0.008753,0.249847,0,0);}
.me4_c00044{transform:matrix(0.068353,0.002395,-0.008753,0.249847,0,0);-ms-transform:matrix(0.068353,0.002395,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.068353,0.002395,-0.008753,0.249847,0,0);}
.mbb_c00044{transform:matrix(0.071386,0.002501,-0.008753,0.249847,0,0);-ms-transform:matrix(0.071386,0.002501,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.071386,0.002501,-0.008753,0.249847,0,0);}
.m65_c00044{transform:matrix(0.123601,0.003090,-0.006248,0.249922,0,0);-ms-transform:matrix(0.123601,0.003090,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.123601,0.003090,-0.006248,0.249922,0,0);}
.ma3_c00044{transform:matrix(0.138125,0.004839,-0.008753,0.249847,0,0);-ms-transform:matrix(0.138125,0.004839,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.138125,0.004839,-0.008753,0.249847,0,0);}
.m2e_c00044{transform:matrix(0.141911,0.003548,-0.006248,0.249922,0,0);-ms-transform:matrix(0.141911,0.003548,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.141911,0.003548,-0.006248,0.249922,0,0);}
.mb2_c00044{transform:matrix(0.148799,0.005213,-0.008753,0.249847,0,0);-ms-transform:matrix(0.148799,0.005213,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.148799,0.005213,-0.008753,0.249847,0,0);}
.m5_c00044{transform:matrix(0.150263,0.003757,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150263,0.003757,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150263,0.003757,-0.006248,0.249922,0,0);}
.m6c_c00044{transform:matrix(0.152087,0.003802,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152087,0.003802,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152087,0.003802,-0.006248,0.249922,0,0);}
.mef_c00044{transform:matrix(0.152112,0.005329,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152112,0.005329,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152112,0.005329,-0.008753,0.249847,0,0);}
.maf_c00044{transform:matrix(0.153376,0.005374,-0.008753,0.249847,0,0);-ms-transform:matrix(0.153376,0.005374,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.153376,0.005374,-0.008753,0.249847,0,0);}
.m99_c00044{transform:matrix(0.155525,0.005449,-0.008753,0.249847,0,0);-ms-transform:matrix(0.155525,0.005449,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.155525,0.005449,-0.008753,0.249847,0,0);}
.m5d_c00044{transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155796,0.003895,-0.006248,0.249922,0,0);}
.m39_c00044{transform:matrix(0.156296,0.003907,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156296,0.003907,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156296,0.003907,-0.006248,0.249922,0,0);}
.m19_c00044{transform:matrix(0.157036,0.003926,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157036,0.003926,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157036,0.003926,-0.006248,0.249922,0,0);}
.m33_c00044{transform:matrix(0.157161,0.003929,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157161,0.003929,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157161,0.003929,-0.006248,0.249922,0,0);}
.m8d_c00044{transform:matrix(0.157643,0.005523,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157643,0.005523,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157643,0.005523,-0.008753,0.249847,0,0);}
.ma2_c00044{transform:matrix(0.157703,0.005525,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157703,0.005525,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157703,0.005525,-0.008753,0.249847,0,0);}
.me3_c00044{transform:matrix(0.159322,0.005582,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159322,0.005582,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159322,0.005582,-0.008753,0.249847,0,0);}
.m49_c00044{transform:matrix(0.159640,0.003991,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159640,0.003991,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159640,0.003991,-0.006248,0.249922,0,0);}
.m11_c00044{transform:matrix(0.160250,0.004006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160250,0.004006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160250,0.004006,-0.006248,0.249922,0,0);}
.m82_c00044{transform:matrix(0.160285,0.004007,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160285,0.004007,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160285,0.004007,-0.006248,0.249922,0,0);}
.m1e_c00044{transform:matrix(0.161964,0.004049,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161964,0.004049,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161964,0.004049,-0.006248,0.249922,0,0);}
.m6e_c00044{transform:matrix(0.162899,0.004072,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162899,0.004072,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162899,0.004072,-0.006248,0.249922,0,0);}
.mba_c00044{transform:matrix(0.163745,0.005737,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163745,0.005737,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163745,0.005737,-0.008753,0.249847,0,0);}
.m8e_c00044{transform:matrix(0.164309,0.005757,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164309,0.005757,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164309,0.005757,-0.008753,0.249847,0,0);}
.mc0_c00044{transform:matrix(0.165548,0.005800,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165548,0.005800,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165548,0.005800,-0.008753,0.249847,0,0);}
.mf3_c00044{transform:matrix(0.165563,0.005801,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165563,0.005801,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165563,0.005801,-0.008753,0.249847,0,0);}
.m95_c00044{transform:matrix(0.166228,0.005824,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166228,0.005824,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166228,0.005824,-0.008753,0.249847,0,0);}
.m30_c00044{transform:matrix(0.166438,0.004161,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166438,0.004161,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166438,0.004161,-0.006248,0.249922,0,0);}
.m92_c00044{transform:matrix(0.166513,0.005834,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166513,0.005834,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166513,0.005834,-0.008753,0.249847,0,0);}
.m47_c00044{transform:matrix(0.166973,0.004174,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166973,0.004174,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166973,0.004174,-0.006248,0.249922,0,0);}
.m3a_c00044{transform:matrix(0.167593,0.004190,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167593,0.004190,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167593,0.004190,-0.006248,0.249922,0,0);}
.m14_c00044{transform:matrix(0.167968,0.004199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167968,0.004199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167968,0.004199,-0.006248,0.249922,0,0);}
.m89_c00044{transform:matrix(0.167973,0.004199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167973,0.004199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167973,0.004199,-0.006248,0.249922,0,0);}
.m5e_c00044{transform:matrix(0.168032,0.004201,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168032,0.004201,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168032,0.004201,-0.006248,0.249922,0,0);}
.m56_c00044{transform:matrix(0.168227,0.004206,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168227,0.004206,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168227,0.004206,-0.006248,0.249922,0,0);}
.m9a_c00044{transform:matrix(0.168692,0.005910,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168692,0.005910,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168692,0.005910,-0.008753,0.249847,0,0);}
.meb_c00044{transform:matrix(0.168986,0.005920,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168986,0.005920,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168986,0.005920,-0.008753,0.249847,0,0);}
.md9_c00044{transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);}
.m0_c00044{transform:matrix(0.170152,0.007324,-0.010751,0.249769,0,0);-ms-transform:matrix(0.170152,0.007324,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.170152,0.007324,-0.010751,0.249769,0,0);}
.m63_c00044{transform:matrix(0.170212,0.004255,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170212,0.004255,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170212,0.004255,-0.006248,0.249922,0,0);}
.m60_c00044{transform:matrix(0.170247,0.004256,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170247,0.004256,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170247,0.004256,-0.006248,0.249922,0,0);}
.m27_c00044{transform:matrix(0.170562,0.004264,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170562,0.004264,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170562,0.004264,-0.006248,0.249922,0,0);}
.m3b_c00044{transform:matrix(0.170627,0.004266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170627,0.004266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170627,0.004266,-0.006248,0.249922,0,0);}
.m52_c00044{transform:matrix(0.170777,0.004269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170777,0.004269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170777,0.004269,-0.006248,0.249922,0,0);}
.me7_c00044{transform:matrix(0.170980,0.005990,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170980,0.005990,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170980,0.005990,-0.008753,0.249847,0,0);}
.md3_c00044{transform:matrix(0.171410,0.006005,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171410,0.006005,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171410,0.006005,-0.008753,0.249847,0,0);}
.m1b_c00044{transform:matrix(0.171571,0.004289,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171571,0.004289,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171571,0.004289,-0.006248,0.249922,0,0);}
.mad_c00044{transform:matrix(0.171620,0.006013,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171620,0.006013,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171620,0.006013,-0.008753,0.249847,0,0);}
.m46_c00044{transform:matrix(0.171841,0.004296,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171841,0.004296,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171841,0.004296,-0.006248,0.249922,0,0);}
.m98_c00044{transform:matrix(0.171920,0.006023,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171920,0.006023,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171920,0.006023,-0.008753,0.249847,0,0);}
.md_c00044{transform:matrix(0.172751,0.004319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172751,0.004319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172751,0.004319,-0.006248,0.249922,0,0);}
.m7f_c00044{transform:matrix(0.172866,0.004322,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172866,0.004322,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172866,0.004322,-0.006248,0.249922,0,0);}
.ma5_c00044{transform:matrix(0.172924,0.006058,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172924,0.006058,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172924,0.006058,-0.008753,0.249847,0,0);}
.mb0_c00044{transform:matrix(0.173039,0.006062,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173039,0.006062,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173039,0.006062,-0.008753,0.249847,0,0);}
.mae_c00044{transform:matrix(0.173189,0.006068,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173189,0.006068,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173189,0.006068,-0.008753,0.249847,0,0);}
.mde_c00044{transform:matrix(0.173339,0.006073,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173339,0.006073,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173339,0.006073,-0.008753,0.249847,0,0);}
.m43_c00044{transform:matrix(0.174106,0.004353,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174106,0.004353,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174106,0.004353,-0.006248,0.249922,0,0);}
.m8_c00044{transform:matrix(0.174316,0.004358,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174316,0.004358,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174316,0.004358,-0.006248,0.249922,0,0);}
.m85_c00044{transform:matrix(0.175330,0.004383,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175330,0.004383,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175330,0.004383,-0.006248,0.249922,0,0);}
.m2f_c00044{transform:matrix(0.175785,0.004395,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175785,0.004395,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175785,0.004395,-0.006248,0.249922,0,0);}
.mf4_c00044{transform:matrix(0.176737,0.006192,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176737,0.006192,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176737,0.006192,-0.008753,0.249847,0,0);}
.md6_c00044{transform:matrix(0.176817,0.006195,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176817,0.006195,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176817,0.006195,-0.008753,0.249847,0,0);}
.m3d_c00044{transform:matrix(0.177310,0.004433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177310,0.004433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177310,0.004433,-0.006248,0.249922,0,0);}
.m1f_c00044{transform:matrix(0.177684,0.004442,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177684,0.004442,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177684,0.004442,-0.006248,0.249922,0,0);}
.m41_c00044{transform:matrix(0.178049,0.004451,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178049,0.004451,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178049,0.004451,-0.006248,0.249922,0,0);}
.mb5_c00044{transform:matrix(0.178236,0.006244,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178236,0.006244,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178236,0.006244,-0.008753,0.249847,0,0);}
.m8f_c00044{transform:matrix(0.178256,0.006245,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178256,0.006245,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178256,0.006245,-0.008753,0.249847,0,0);}
.mdf_c00044{transform:matrix(0.178520,0.006254,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178520,0.006254,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178520,0.006254,-0.008753,0.249847,0,0);}
.mab_c00044{transform:matrix(0.178665,0.006260,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178665,0.006260,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178665,0.006260,-0.008753,0.249847,0,0);}
.m7d_c00044{transform:matrix(0.178829,0.004471,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178829,0.004471,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178829,0.004471,-0.006248,0.249922,0,0);}
.m80_c00044{transform:matrix(0.179009,0.004475,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179009,0.004475,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179009,0.004475,-0.006248,0.249922,0,0);}
.m23_c00044{transform:matrix(0.179249,0.004481,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179249,0.004481,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179249,0.004481,-0.006248,0.249922,0,0);}
.m8b_c00044{transform:matrix(0.179689,0.004492,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179689,0.004492,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179689,0.004492,-0.006248,0.249922,0,0);}
.m9c_c00044{transform:matrix(0.179980,0.006306,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179980,0.006306,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179980,0.006306,-0.008753,0.249847,0,0);}
.m62_c00044{transform:matrix(0.180274,0.004507,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180274,0.004507,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180274,0.004507,-0.006248,0.249922,0,0);}
.m10_c00044{transform:matrix(0.180399,0.004510,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180399,0.004510,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180399,0.004510,-0.006248,0.249922,0,0);}
.m71_c00044{transform:matrix(0.180569,0.004514,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180569,0.004514,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180569,0.004514,-0.006248,0.249922,0,0);}
.m1c_c00044{transform:matrix(0.180644,0.004516,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180644,0.004516,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180644,0.004516,-0.006248,0.249922,0,0);}
.m78_c00044{transform:matrix(0.180824,0.004521,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180824,0.004521,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180824,0.004521,-0.006248,0.249922,0,0);}
.mf0_c00044{transform:matrix(0.180929,0.006339,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180929,0.006339,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180929,0.006339,-0.008753,0.249847,0,0);}
.md1_c00044{transform:matrix(0.181084,0.006344,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181084,0.006344,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181084,0.006344,-0.008753,0.249847,0,0);}
.mb_c00044{transform:matrix(0.181108,0.004528,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181108,0.004528,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181108,0.004528,-0.006248,0.249922,0,0);}
.m5b_c00044{transform:matrix(0.181168,0.004529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181168,0.004529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181168,0.004529,-0.006248,0.249922,0,0);}
.m5c_c00044{transform:matrix(0.181403,0.004535,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181403,0.004535,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181403,0.004535,-0.006248,0.249922,0,0);}
.mea_c00044{transform:matrix(0.181564,0.006361,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181564,0.006361,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181564,0.006361,-0.008753,0.249847,0,0);}
.m72_c00044{transform:matrix(0.181693,0.004542,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181693,0.004542,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181693,0.004542,-0.006248,0.249922,0,0);}
.m12_c00044{transform:matrix(0.182208,0.004555,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182208,0.004555,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182208,0.004555,-0.006248,0.249922,0,0);}
.m45_c00044{transform:matrix(0.182478,0.004562,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182478,0.004562,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182478,0.004562,-0.006248,0.249922,0,0);}
.m93_c00044{transform:matrix(0.182953,0.006410,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182953,0.006410,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182953,0.006410,-0.008753,0.249847,0,0);}
.mb3_c00044{transform:matrix(0.183098,0.006415,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183098,0.006415,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183098,0.006415,-0.008753,0.249847,0,0);}
.m58_c00044{transform:matrix(0.183343,0.004584,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183343,0.004584,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183343,0.004584,-0.006248,0.249922,0,0);}
.m38_c00044{transform:matrix(0.183598,0.004590,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183598,0.004590,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183598,0.004590,-0.006248,0.249922,0,0);}
.m1_c00044{transform:matrix(0.183823,0.004596,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183823,0.004596,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183823,0.004596,-0.006248,0.249922,0,0);}
.m22_c00044{transform:matrix(0.184607,0.004615,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184607,0.004615,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184607,0.004615,-0.006248,0.249922,0,0);}
.md2_c00044{transform:matrix(0.185246,0.006490,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185246,0.006490,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185246,0.006490,-0.008753,0.249847,0,0);}
.m97_c00044{transform:matrix(0.185406,0.006496,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185406,0.006496,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185406,0.006496,-0.008753,0.249847,0,0);}
.m5f_c00044{transform:matrix(0.185527,0.004638,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185527,0.004638,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185527,0.004638,-0.006248,0.249922,0,0);}
.mec_c00044{transform:matrix(0.185566,0.006501,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185566,0.006501,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185566,0.006501,-0.008753,0.249847,0,0);}
.ma9_c00044{transform:matrix(0.185881,0.006512,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185881,0.006512,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185881,0.006512,-0.008753,0.249847,0,0);}
.m4b_c00044{transform:matrix(0.185937,0.004648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185937,0.004648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185937,0.004648,-0.006248,0.249922,0,0);}
.mee_c00044{transform:matrix(0.186121,0.006521,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186121,0.006521,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186121,0.006521,-0.008753,0.249847,0,0);}
.mb7_c00044{transform:matrix(0.186226,0.006524,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186226,0.006524,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186226,0.006524,-0.008753,0.249847,0,0);}
.me9_c00044{transform:matrix(0.186286,0.006527,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186286,0.006527,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186286,0.006527,-0.008753,0.249847,0,0);}
.me2_c00044{transform:matrix(0.186331,0.006528,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186331,0.006528,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186331,0.006528,-0.008753,0.249847,0,0);}
.md7_c00044{transform:matrix(0.186675,0.006540,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186675,0.006540,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186675,0.006540,-0.008753,0.249847,0,0);}
.mcd_c00044{transform:matrix(0.186770,0.006544,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186770,0.006544,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186770,0.006544,-0.008753,0.249847,0,0);}
.m6d_c00044{transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186872,0.004672,-0.006248,0.249922,0,0);}
.mf2_c00044{transform:matrix(0.186990,0.006551,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186990,0.006551,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186990,0.006551,-0.008753,0.249847,0,0);}
.mdd_c00044{transform:matrix(0.187080,0.006554,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187080,0.006554,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187080,0.006554,-0.008753,0.249847,0,0);}
.mdc_c00044{transform:matrix(0.187250,0.006560,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187250,0.006560,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187250,0.006560,-0.008753,0.249847,0,0);}
.mb4_c00044{transform:matrix(0.187340,0.006563,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187340,0.006563,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187340,0.006563,-0.008753,0.249847,0,0);}
.m4e_c00044{transform:matrix(0.187401,0.004685,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187401,0.004685,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187401,0.004685,-0.006248,0.249922,0,0);}
.m34_c00044{transform:matrix(0.187431,0.004686,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187431,0.004686,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187431,0.004686,-0.006248,0.249922,0,0);}
.m51_c00044{transform:matrix(0.187711,0.004693,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187711,0.004693,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187711,0.004693,-0.006248,0.249922,0,0);}
.m7c_c00044{transform:matrix(0.187846,0.004696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187846,0.004696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187846,0.004696,-0.006248,0.249922,0,0);}
.mbd_c00044{transform:matrix(0.188005,0.006587,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188005,0.006587,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188005,0.006587,-0.008753,0.249847,0,0);}
.m3_c00044{transform:matrix(0.188186,0.004705,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188186,0.004705,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188186,0.004705,-0.006248,0.249922,0,0);}
.mb9_c00044{transform:matrix(0.188409,0.006601,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188409,0.006601,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188409,0.006601,-0.008753,0.249847,0,0);}
.m17_c00044{transform:matrix(0.188831,0.004721,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188831,0.004721,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188831,0.004721,-0.006248,0.249922,0,0);}
.m9b_c00044{transform:matrix(0.189259,0.006631,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189259,0.006631,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189259,0.006631,-0.008753,0.249847,0,0);}
.m9_c00044{transform:matrix(0.190286,0.004757,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190286,0.004757,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190286,0.004757,-0.006248,0.249922,0,0);}
.m20_c00044{transform:matrix(0.190341,0.004759,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190341,0.004759,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190341,0.004759,-0.006248,0.249922,0,0);}
.m81_c00044{transform:matrix(0.190440,0.004761,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190440,0.004761,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190440,0.004761,-0.006248,0.249922,0,0);}
.m7e_c00044{transform:matrix(0.190540,0.004764,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190540,0.004764,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190540,0.004764,-0.006248,0.249922,0,0);}
.m1a_c00044{transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);}
.mda_c00044{transform:matrix(0.190633,0.006679,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190633,0.006679,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190633,0.006679,-0.008753,0.249847,0,0);}
.m37_c00044{transform:matrix(0.190790,0.004770,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190790,0.004770,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190790,0.004770,-0.006248,0.249922,0,0);}
.m4f_c00044{transform:matrix(0.191310,0.004783,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191310,0.004783,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191310,0.004783,-0.006248,0.249922,0,0);}
.m4c_c00044{transform:matrix(0.191525,0.004788,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191525,0.004788,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191525,0.004788,-0.006248,0.249922,0,0);}
.m2_c00044{transform:matrix(0.191715,0.004793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191715,0.004793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191715,0.004793,-0.006248,0.249922,0,0);}
.mbe_c00044{transform:matrix(0.191932,0.006724,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191932,0.006724,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191932,0.006724,-0.008753,0.249847,0,0);}
.m18_c00044{transform:matrix(0.192420,0.004810,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192420,0.004810,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192420,0.004810,-0.006248,0.249922,0,0);}
.mce_c00044{transform:matrix(0.192637,0.006749,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192637,0.006749,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192637,0.006749,-0.008753,0.249847,0,0);}
.m53_c00044{transform:matrix(0.192790,0.004820,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192790,0.004820,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192790,0.004820,-0.006248,0.249922,0,0);}
.m25_c00044{transform:matrix(0.192820,0.004820,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192820,0.004820,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192820,0.004820,-0.006248,0.249922,0,0);}
.m3f_c00044{transform:matrix(0.192935,0.004823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192935,0.004823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192935,0.004823,-0.006248,0.249922,0,0);}
.m6a_c00044{transform:matrix(0.193929,0.004848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193929,0.004848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193929,0.004848,-0.006248,0.249922,0,0);}
.m4_c00044{transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);}
.m8a_c00044{transform:matrix(0.194329,0.004858,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194329,0.004858,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194329,0.004858,-0.006248,0.249922,0,0);}
.m4a_c00044{transform:matrix(0.194584,0.004865,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194584,0.004865,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194584,0.004865,-0.006248,0.249922,0,0);}
.ma0_c00044{transform:matrix(0.194676,0.006820,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194676,0.006820,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194676,0.006820,-0.008753,0.249847,0,0);}
.m5a_c00044{transform:matrix(0.194884,0.004872,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194884,0.004872,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194884,0.004872,-0.006248,0.249922,0,0);}
.m35_c00044{transform:matrix(0.194914,0.004873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194914,0.004873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194914,0.004873,-0.006248,0.249922,0,0);}
.mc9_c00044{transform:matrix(0.195300,0.006842,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195300,0.006842,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195300,0.006842,-0.008753,0.249847,0,0);}
.ma_c00044{transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195529,0.004888,-0.006248,0.249922,0,0);}
.m13_c00044{transform:matrix(0.195979,0.004899,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195979,0.004899,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195979,0.004899,-0.006248,0.249922,0,0);}
.m9d_c00044{transform:matrix(0.196060,0.006869,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196060,0.006869,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196060,0.006869,-0.008753,0.249847,0,0);}
.m9e_c00044{transform:matrix(0.196110,0.006871,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196110,0.006871,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196110,0.006871,-0.008753,0.249847,0,0);}
.m2b_c00044{transform:matrix(0.196204,0.004905,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196204,0.004905,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196204,0.004905,-0.006248,0.249922,0,0);}
.m90_c00044{transform:matrix(0.196215,0.006874,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196215,0.006874,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196215,0.006874,-0.008753,0.249847,0,0);}
.m54_c00044{transform:matrix(0.196799,0.004920,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196799,0.004920,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196799,0.004920,-0.006248,0.249922,0,0);}
.mc1_c00044{transform:matrix(0.197009,0.006902,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197009,0.006902,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197009,0.006902,-0.008753,0.249847,0,0);}
.ma6_c00044{transform:matrix(0.197434,0.006917,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197434,0.006917,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197434,0.006917,-0.008753,0.249847,0,0);}
.m36_c00044{transform:matrix(0.197548,0.004939,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197548,0.004939,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197548,0.004939,-0.006248,0.249922,0,0);}
.m31_c00044{transform:matrix(0.197638,0.004941,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197638,0.004941,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197638,0.004941,-0.006248,0.249922,0,0);}
.m3e_c00044{transform:matrix(0.197663,0.004942,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197663,0.004942,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197663,0.004942,-0.006248,0.249922,0,0);}
.m96_c00044{transform:matrix(0.197919,0.006934,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197919,0.006934,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197919,0.006934,-0.008753,0.249847,0,0);}
.me6_c00044{transform:matrix(0.197994,0.006937,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197994,0.006937,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197994,0.006937,-0.008753,0.249847,0,0);}
.mcb_c00044{transform:matrix(0.198029,0.006938,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198029,0.006938,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198029,0.006938,-0.008753,0.249847,0,0);}
.m50_c00044{transform:matrix(0.198553,0.004964,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198553,0.004964,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198553,0.004964,-0.006248,0.249922,0,0);}
.mbf_c00044{transform:matrix(0.199413,0.006986,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199413,0.006986,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199413,0.006986,-0.008753,0.249847,0,0);}
.mc_c00044{transform:matrix(0.199438,0.004986,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199438,0.004986,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199438,0.004986,-0.006248,0.249922,0,0);}
.md0_c00044{transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199453,0.006988,-0.008753,0.249847,0,0);}
.m9f_c00044{transform:matrix(0.199628,0.006994,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199628,0.006994,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199628,0.006994,-0.008753,0.249847,0,0);}
.mcc_c00044{transform:matrix(0.200947,0.007040,-0.008753,0.249847,0,0);-ms-transform:matrix(0.200947,0.007040,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.200947,0.007040,-0.008753,0.249847,0,0);}
.m32_c00044{transform:matrix(0.201012,0.005025,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201012,0.005025,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201012,0.005025,-0.006248,0.249922,0,0);}
.md4_c00044{transform:matrix(0.201391,0.007056,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201391,0.007056,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201391,0.007056,-0.008753,0.249847,0,0);}
.m1d_c00044{transform:matrix(0.201642,0.005041,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201642,0.005041,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201642,0.005041,-0.006248,0.249922,0,0);}
.mf7_c00044{transform:matrix(0.202036,0.007078,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202036,0.007078,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202036,0.007078,-0.008753,0.249847,0,0);}
.ma7_c00044{transform:matrix(0.202126,0.007081,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202126,0.007081,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202126,0.007081,-0.008753,0.249847,0,0);}
.m61_c00044{transform:matrix(0.202437,0.005061,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202437,0.005061,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202437,0.005061,-0.006248,0.249922,0,0);}
.ma4_c00044{transform:matrix(0.202591,0.007098,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202591,0.007098,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202591,0.007098,-0.008753,0.249847,0,0);}
.m68_c00044{transform:matrix(0.202857,0.005071,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202857,0.005071,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202857,0.005071,-0.006248,0.249922,0,0);}
.mcf_c00044{transform:matrix(0.202896,0.007108,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202896,0.007108,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202896,0.007108,-0.008753,0.249847,0,0);}
.m2a_c00044{transform:matrix(0.203062,0.005077,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203062,0.005077,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203062,0.005077,-0.006248,0.249922,0,0);}
.m28_c00044{transform:matrix(0.203381,0.005085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203381,0.005085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203381,0.005085,-0.006248,0.249922,0,0);}
.m21_c00044{transform:matrix(0.203691,0.005092,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203691,0.005092,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203691,0.005092,-0.006248,0.249922,0,0);}
.m79_c00044{transform:matrix(0.204036,0.005101,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204036,0.005101,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204036,0.005101,-0.006248,0.249922,0,0);}
.m48_c00044{transform:matrix(0.204176,0.005104,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204176,0.005104,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204176,0.005104,-0.006248,0.249922,0,0);}
.mf_c00044{transform:matrix(0.204581,0.005115,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204581,0.005115,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204581,0.005115,-0.006248,0.249922,0,0);}
.md8_c00044{transform:matrix(0.204864,0.007177,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204864,0.007177,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204864,0.007177,-0.008753,0.249847,0,0);}
.mb1_c00044{transform:matrix(0.204874,0.007178,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204874,0.007178,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204874,0.007178,-0.008753,0.249847,0,0);}
.mf5_c00044{transform:matrix(0.204939,0.007180,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204939,0.007180,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204939,0.007180,-0.008753,0.249847,0,0);}
.m6b_c00044{transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);}
.mb6_c00044{transform:matrix(0.205069,0.007185,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205069,0.007185,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205069,0.007185,-0.008753,0.249847,0,0);}
.m77_c00044{transform:matrix(0.205186,0.005130,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205186,0.005130,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205186,0.005130,-0.006248,0.249922,0,0);}
.mf6_c00044{transform:matrix(0.205199,0.007189,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205199,0.007189,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205199,0.007189,-0.008753,0.249847,0,0);}
.m94_c00044{transform:matrix(0.205274,0.007192,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205274,0.007192,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205274,0.007192,-0.008753,0.249847,0,0);}
.m4d_c00044{transform:matrix(0.205976,0.005149,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205976,0.005149,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205976,0.005149,-0.006248,0.249922,0,0);}
.m59_c00044{transform:matrix(0.206146,0.005154,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206146,0.005154,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206146,0.005154,-0.006248,0.249922,0,0);}
.med_c00044{transform:matrix(0.206363,0.007230,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206363,0.007230,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206363,0.007230,-0.008753,0.249847,0,0);}
.m70_c00044{transform:matrix(0.206455,0.005161,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206455,0.005161,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206455,0.005161,-0.006248,0.249922,0,0);}
.m3c_c00044{transform:matrix(0.206860,0.005172,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206860,0.005172,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206860,0.005172,-0.006248,0.249922,0,0);}
.md5_c00044{transform:matrix(0.207468,0.007269,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207468,0.007269,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207468,0.007269,-0.008753,0.249847,0,0);}
.m69_c00044{transform:matrix(0.207650,0.005191,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207650,0.005191,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207650,0.005191,-0.006248,0.249922,0,0);}
.ma1_c00044{transform:matrix(0.207992,0.007287,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207992,0.007287,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207992,0.007287,-0.008753,0.249847,0,0);}
.ma8_c00044{transform:matrix(0.208282,0.007297,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208282,0.007297,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208282,0.007297,-0.008753,0.249847,0,0);}
.m44_c00044{transform:matrix(0.208345,0.005209,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208345,0.005209,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208345,0.005209,-0.006248,0.249922,0,0);}
.m29_c00044{transform:matrix(0.208425,0.005211,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208425,0.005211,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208425,0.005211,-0.006248,0.249922,0,0);}
.me1_c00044{transform:matrix(0.209676,0.007346,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209676,0.007346,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209676,0.007346,-0.008753,0.249847,0,0);}
.mc8_c00044{transform:matrix(0.210071,0.007360,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210071,0.007360,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210071,0.007360,-0.008753,0.249847,0,0);}
.me8_c00044{transform:matrix(0.210951,0.007391,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210951,0.007391,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210951,0.007391,-0.008753,0.249847,0,0);}
.mb8_c00044{transform:matrix(0.211500,0.007410,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211500,0.007410,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211500,0.007410,-0.008753,0.249847,0,0);}
.m66_c00044{transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212389,0.005310,-0.006248,0.249922,0,0);}
.me0_c00044{transform:matrix(0.212595,0.007448,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212595,0.007448,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212595,0.007448,-0.008753,0.249847,0,0);}
.m75_c00044{transform:matrix(0.212769,0.005319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212769,0.005319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212769,0.005319,-0.006248,0.249922,0,0);}
.m7_c00044{transform:matrix(0.213138,0.005328,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213138,0.005328,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213138,0.005328,-0.006248,0.249922,0,0);}
.mf1_c00044{transform:matrix(0.213854,0.007492,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213854,0.007492,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213854,0.007492,-0.008753,0.249847,0,0);}
.m74_c00044{transform:matrix(0.213893,0.005347,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213893,0.005347,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213893,0.005347,-0.006248,0.249922,0,0);}
.mdb_c00044{transform:matrix(0.215178,0.007539,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215178,0.007539,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215178,0.007539,-0.008753,0.249847,0,0);}
.m86_c00044{transform:matrix(0.215378,0.005384,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215378,0.005384,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215378,0.005384,-0.006248,0.249922,0,0);}
.m87_c00044{transform:matrix(0.215483,0.005387,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215483,0.005387,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215483,0.005387,-0.006248,0.249922,0,0);}
.m67_c00044{transform:matrix(0.216527,0.005413,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216527,0.005413,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216527,0.005413,-0.006248,0.249922,0,0);}
.m88_c00044{transform:matrix(0.216992,0.005425,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216992,0.005425,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216992,0.005425,-0.006248,0.249922,0,0);}
.m57_c00044{transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);}
.m2c_c00044{transform:matrix(0.217872,0.005447,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217872,0.005447,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217872,0.005447,-0.006248,0.249922,0,0);}
.m7b_c00044{transform:matrix(0.218742,0.005469,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218742,0.005469,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218742,0.005469,-0.006248,0.249922,0,0);}
.m7a_c00044{transform:matrix(0.220051,0.005501,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220051,0.005501,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220051,0.005501,-0.006248,0.249922,0,0);}
.me5_c00044{transform:matrix(0.221269,0.007752,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221269,0.007752,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221269,0.007752,-0.008753,0.249847,0,0);}
.me_c00044{transform:matrix(0.223820,0.005596,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223820,0.005596,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223820,0.005596,-0.006248,0.249922,0,0);}
.mc6_c00044{transform:matrix(0.225911,0.007915,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225911,0.007915,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225911,0.007915,-0.008753,0.249847,0,0);}
.m73_c00044{transform:matrix(0.226514,0.005663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226514,0.005663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226514,0.005663,-0.006248,0.249922,0,0);}
.m91_c00044{transform:matrix(0.227061,0.007955,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227061,0.007955,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227061,0.007955,-0.008753,0.249847,0,0);}
.maa_c00044{transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);}
.mc3_c00044{transform:matrix(0.228930,0.008021,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228930,0.008021,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228930,0.008021,-0.008753,0.249847,0,0);}
.m24_c00044{transform:matrix(0.228978,0.005724,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228978,0.005724,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228978,0.005724,-0.006248,0.249922,0,0);}
.m6f_c00044{transform:matrix(0.229658,0.005741,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229658,0.005741,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229658,0.005741,-0.006248,0.249922,0,0);}
.m42_c00044{transform:matrix(0.229813,0.005745,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229813,0.005745,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229813,0.005745,-0.006248,0.249922,0,0);}
.mc2_c00044{transform:matrix(0.231788,0.008121,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231788,0.008121,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231788,0.008121,-0.008753,0.249847,0,0);}
.m15_c00044{transform:matrix(0.231998,0.005800,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231998,0.005800,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231998,0.005800,-0.006248,0.249922,0,0);}
.m6_c00044{transform:matrix(0.232822,0.005821,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232822,0.005821,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232822,0.005821,-0.006248,0.249922,0,0);}
.m40_c00044{transform:matrix(0.233927,0.005848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233927,0.005848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233927,0.005848,-0.006248,0.249922,0,0);}
.m55_c00044{transform:matrix(0.234712,0.005868,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234712,0.005868,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234712,0.005868,-0.006248,0.249922,0,0);}
.m64_c00044{transform:matrix(0.235546,0.005889,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235546,0.005889,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235546,0.005889,-0.006248,0.249922,0,0);}
.mc5_c00044{transform:matrix(0.236680,0.008292,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236680,0.008292,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236680,0.008292,-0.008753,0.249847,0,0);}
.m84_c00044{transform:matrix(0.236931,0.005923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236931,0.005923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236931,0.005923,-0.006248,0.249922,0,0);}
.m2d_c00044{transform:matrix(0.237176,0.005929,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237176,0.005929,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237176,0.005929,-0.006248,0.249922,0,0);}
.m83_c00044{transform:matrix(0.241684,0.006042,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241684,0.006042,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241684,0.006042,-0.006248,0.249922,0,0);}
.mc7_c00044{transform:matrix(0.244635,0.008571,-0.008753,0.249847,0,0);-ms-transform:matrix(0.244635,0.008571,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.244635,0.008571,-0.008753,0.249847,0,0);}
.mca_c00044{transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);}
.m26_c00044{transform:matrix(0.256205,0.006405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256205,0.006405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256205,0.006405,-0.006248,0.249922,0,0);}
.mbc_c00044{transform:matrix(0.258132,0.009044,-0.008753,0.249847,0,0);-ms-transform:matrix(0.258132,0.009044,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.258132,0.009044,-0.008753,0.249847,0,0);}
.m76_c00044{transform:matrix(0.268691,0.006717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268691,0.006717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268691,0.006717,-0.006248,0.249922,0,0);}
.mc4_c00044{transform:matrix(0.269759,0.009451,-0.008753,0.249847,0,0);-ms-transform:matrix(0.269759,0.009451,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.269759,0.009451,-0.008753,0.249847,0,0);}
.mac_c00044{transform:matrix(0.318620,0.011163,-0.008753,0.249847,0,0);-ms-transform:matrix(0.318620,0.011163,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.318620,0.011163,-0.008753,0.249847,0,0);}
.m16_c00044{transform:matrix(0.354364,0.008859,-0.006248,0.249922,0,0);-ms-transform:matrix(0.354364,0.008859,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.354364,0.008859,-0.006248,0.249922,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:0.000000px;}
.fc0_c00044{color:transparent;}
.fs12_c00044{font-size:53.529272px;}
.fs5_c00044{font-size:57.768044px;}
.fs7_c00044{font-size:58.818372px;}
.fs13_c00044{font-size:60.876427px;}
.fsa_c00044{font-size:60.919028px;}
.fs10_c00044{font-size:61.926021px;}
.fs4_c00044{font-size:61.969356px;}
.fsd_c00044{font-size:62.975614px;}
.fs3_c00044{font-size:63.019684px;}
.fsc_c00044{font-size:64.025208px;}
.fs9_c00044{font-size:64.070012px;}
.fse_c00044{font-size:65.074801px;}
.fs1_c00044{font-size:65.120341px;}
.fs11_c00044{font-size:66.124395px;}
.fs2_c00044{font-size:66.170669px;}
.fs14_c00044{font-size:67.173989px;}
.fsb_c00044{font-size:67.220997px;}
.fs6_c00044{font-size:68.271325px;}
.fs8_c00044{font-size:69.321653px;}
.fsf_c00044{font-size:71.372363px;}
.fs0_c00044{font-size:72.444566px;}
.y0_c00044{bottom:0.000000px;}
.yfa_c00044{bottom:17.962272px;}
.yf9_c00044{bottom:20.637056px;}
.yf8_c00044{bottom:22.431414px;}
.yf7_c00044{bottom:25.387725px;}
.yf6_c00044{bottom:26.428071px;}
.yf5_c00044{bottom:28.643342px;}
.yf4_c00044{bottom:29.266713px;}
.yf3_c00044{bottom:34.163142px;}
.yf2_c00044{bottom:35.220117px;}
.yf1_c00044{bottom:35.967014px;}
.yf0_c00044{bottom:38.082878px;}
.yef_c00044{bottom:40.254945px;}
.yee_c00044{bottom:40.878672px;}
.yed_c00044{bottom:42.309986px;}
.yec_c00044{bottom:43.297499px;}
.yeb_c00044{bottom:54.658415px;}
.yea_c00044{bottom:55.194200px;}
.ye9_c00044{bottom:58.344438px;}
.ye8_c00044{bottom:60.621818px;}
.ye7_c00044{bottom:61.133171px;}
.ye6_c00044{bottom:61.914411px;}
.ye5_c00044{bottom:71.216161px;}
.ye4_c00044{bottom:72.673918px;}
.ye3_c00044{bottom:74.873615px;}
.ye2_c00044{bottom:76.514485px;}
.ye1_c00044{bottom:77.206621px;}
.ye0_c00044{bottom:79.647582px;}
.ydf_c00044{bottom:81.617564px;}
.yde_c00044{bottom:88.432720px;}
.ydd_c00044{bottom:90.064176px;}
.ydc_c00044{bottom:91.053222px;}
.ydb_c00044{bottom:91.623289px;}
.yda_c00044{bottom:92.884497px;}
.yd9_c00044{bottom:93.547010px;}
.yd8_c00044{bottom:94.331172px;}
.yd7_c00044{bottom:96.190106px;}
.yd6_c00044{bottom:100.942628px;}
.yd5_c00044{bottom:102.595035px;}
.yd4_c00044{bottom:104.276384px;}
.yd3_c00044{bottom:107.904966px;}
.yd2_c00044{bottom:108.510116px;}
.yd1_c00044{bottom:111.670904px;}
.yd0_c00044{bottom:112.654080px;}
.ycf_c00044{bottom:115.911017px;}
.yce_c00044{bottom:121.445792px;}
.ycd_c00044{bottom:123.018362px;}
.ycc_c00044{bottom:123.674801px;}
.ycb_c00044{bottom:125.229053px;}
.yca_c00044{bottom:125.652699px;}
.yc9_c00044{bottom:127.242303px;}
.yc8_c00044{bottom:128.109881px;}
.yc7_c00044{bottom:128.563262px;}
.yc6_c00044{bottom:130.200551px;}
.yc5_c00044{bottom:137.101134px;}
.yc4_c00044{bottom:139.253109px;}
.yc3_c00044{bottom:139.879749px;}
.yc2_c00044{bottom:142.118349px;}
.yc1_c00044{bottom:143.332149px;}
.yc0_c00044{bottom:144.273264px;}
.ybf_c00044{bottom:145.316072px;}
.ybe_c00044{bottom:145.856349px;}
.ybd_c00044{bottom:155.580909px;}
.ybc_c00044{bottom:156.346554px;}
.ybb_c00044{bottom:159.471251px;}
.yba_c00044{bottom:160.671936px;}
.yb9_c00044{bottom:162.777725px;}
.yb8_c00044{bottom:163.712256px;}
.yb7_c00044{bottom:165.825289px;}
.yb6_c00044{bottom:171.544466px;}
.yb5_c00044{bottom:172.454517px;}
.yb4_c00044{bottom:175.062501px;}
.yb3_c00044{bottom:175.904103px;}
.yb2_c00044{bottom:177.466792px;}
.yb1_c00044{bottom:180.718752px;}
.yb0_c00044{bottom:181.966584px;}
.yaf_c00044{bottom:183.098364px;}
.yae_c00044{bottom:189.410850px;}
.yad_c00044{bottom:191.653286px;}
.yac_c00044{bottom:192.432216px;}
.yab_c00044{bottom:192.950549px;}
.yaa_c00044{bottom:195.202567px;}
.ya9_c00044{bottom:196.078088px;}
.ya8_c00044{bottom:197.524764px;}
.ya7_c00044{bottom:198.650301px;}
.ya6_c00044{bottom:199.561053px;}
.ya5_c00044{bottom:205.527483px;}
.ya4_c00044{bottom:206.656719px;}
.ya3_c00044{bottom:208.101846px;}
.ya2_c00044{bottom:210.759087px;}
.ya1_c00044{bottom:211.409850px;}
.ya0_c00044{bottom:213.818195px;}
.y9f_c00044{bottom:214.380515px;}
.y9e_c00044{bottom:215.756914px;}
.y9d_c00044{bottom:222.674615px;}
.y9c_c00044{bottom:223.512984px;}
.y9b_c00044{bottom:224.133419px;}
.y9a_c00044{bottom:226.345242px;}
.y99_c00044{bottom:229.409953px;}
.y98_c00044{bottom:230.200568px;}
.y97_c00044{bottom:230.561902px;}
.y96_c00044{bottom:233.576864px;}
.y95_c00044{bottom:239.693655px;}
.y94_c00044{bottom:242.725583px;}
.y93_c00044{bottom:243.818475px;}
.y92_c00044{bottom:245.662747px;}
.y91_c00044{bottom:247.026697px;}
.y90_c00044{bottom:248.250945px;}
.y8f_c00044{bottom:249.205500px;}
.y8e_c00044{bottom:259.654125px;}
.y8d_c00044{bottom:260.158838px;}
.y8c_c00044{bottom:262.696275px;}
.y8b_c00044{bottom:263.594662px;}
.y8a_c00044{bottom:266.186625px;}
.y89_c00044{bottom:266.611913px;}
.y88_c00044{bottom:268.042500px;}
.y87_c00044{bottom:274.320075px;}
.y86_c00044{bottom:275.123587px;}
.y85_c00044{bottom:277.105875px;}
.y84_c00044{bottom:277.993238px;}
.y83_c00044{bottom:278.445450px;}
.y82_c00044{bottom:280.034738px;}
.y81_c00044{bottom:281.715712px;}
.y80_c00044{bottom:283.145700px;}
.y7f_c00044{bottom:284.215462px;}
.y7e_c00044{bottom:285.320587px;}
.y7d_c00044{bottom:292.426950px;}
.y7c_c00044{bottom:292.908450px;}
.y7b_c00044{bottom:294.748163px;}
.y7a_c00044{bottom:296.581838px;}
.y79_c00044{bottom:297.652163px;}
.y78_c00044{bottom:299.025338px;}
.y77_c00044{bottom:300.420113px;}
.y76_c00044{bottom:300.901613px;}
.y75_c00044{bottom:302.340938px;}
.y74_c00044{bottom:309.493200px;}
.y73_c00044{bottom:311.016863px;}
.y72_c00044{bottom:312.335850px;}
.y71_c00044{bottom:313.611525px;}
.y70_c00044{bottom:314.056500px;}
.y6f_c00044{bottom:314.943525px;}
.y6e_c00044{bottom:315.478725px;}
.y6d_c00044{bottom:316.419075px;}
.y6c_c00044{bottom:316.916700px;}
.y6b_c00044{bottom:326.338725px;}
.y6a_c00044{bottom:328.149525px;}
.y69_c00044{bottom:328.402050px;}
.y68_c00044{bottom:329.925825px;}
.y67_c00044{bottom:332.084400px;}
.y66_c00044{bottom:332.471663px;}
.y65_c00044{bottom:332.848688px;}
.y64_c00044{bottom:343.485563px;}
.y63_c00044{bottom:344.075438px;}
.y62_c00044{bottom:345.625500px;}
.y61_c00044{bottom:347.236313px;}
.y60_c00044{bottom:347.805188px;}
.y5f_c00044{bottom:348.519675px;}
.y5e_c00044{bottom:349.038525px;}
.y5d_c00044{bottom:349.866975px;}
.y5c_c00044{bottom:359.489850px;}
.y5b_c00044{bottom:360.346125px;}
.y5a_c00044{bottom:361.668375px;}
.y59_c00044{bottom:362.623537px;}
.y58_c00044{bottom:364.365000px;}
.y57_c00044{bottom:364.709625px;}
.y56_c00044{bottom:365.578162px;}
.y55_c00044{bottom:366.613725px;}
.y54_c00044{bottom:376.056263px;}
.y53_c00044{bottom:376.834125px;}
.y52_c00044{bottom:378.657375px;}
.y51_c00044{bottom:380.205938px;}
.y50_c00044{bottom:381.057225px;}
.y4f_c00044{bottom:382.925962px;}
.y4e_c00044{bottom:383.902575px;}
.y4d_c00044{bottom:392.679787px;}
.y4c_c00044{bottom:393.223125px;}
.y4b_c00044{bottom:394.862400px;}
.y4a_c00044{bottom:395.482500px;}
.y49_c00044{bottom:395.816250px;}
.y48_c00044{bottom:397.398825px;}
.y47_c00044{bottom:397.980450px;}
.y46_c00044{bottom:399.133050px;}
.y45_c00044{bottom:399.472537px;}
.y44_c00044{bottom:400.917187px;}
.y43_c00044{bottom:409.371337px;}
.y42_c00044{bottom:409.933162px;}
.y41_c00044{bottom:412.293563px;}
.y40_c00044{bottom:413.039588px;}
.y3f_c00044{bottom:415.446150px;}
.y3e_c00044{bottom:416.195475px;}
.y3d_c00044{bottom:417.391425px;}
.y3c_c00044{bottom:425.991262px;}
.y3b_c00044{bottom:427.505662px;}
.y3a_c00044{bottom:428.167537px;}
.y39_c00044{bottom:429.415388px;}
.y38_c00044{bottom:430.341600px;}
.y37_c00044{bottom:432.041663px;}
.y36_c00044{bottom:432.369450px;}
.y35_c00044{bottom:433.863075px;}
.y34_c00044{bottom:442.425150px;}
.y33_c00044{bottom:445.076025px;}
.y32_c00044{bottom:447.514762px;}
.y31_c00044{bottom:448.035375px;}
.y30_c00044{bottom:450.027637px;}
.y2f_c00044{bottom:450.607387px;}
.y2e_c00044{bottom:459.861038px;}
.y2d_c00044{bottom:462.683587px;}
.y2c_c00044{bottom:463.349850px;}
.y2b_c00044{bottom:465.622575px;}
.y2a_c00044{bottom:466.741500px;}
.y29_c00044{bottom:467.895525px;}
.y28_c00044{bottom:476.299350px;}
.y27_c00044{bottom:477.089625px;}
.y26_c00044{bottom:477.890850px;}
.y25_c00044{bottom:479.656462px;}
.y24_c00044{bottom:480.454650px;}
.y23_c00044{bottom:483.003150px;}
.y22_c00044{bottom:484.640025px;}
.y21_c00044{bottom:494.819363px;}
.y20_c00044{bottom:495.751312px;}
.y1f_c00044{bottom:496.116337px;}
.y1e_c00044{bottom:497.168513px;}
.y1d_c00044{bottom:497.976150px;}
.y1c_c00044{bottom:498.526350px;}
.y1b_c00044{bottom:499.274887px;}
.y1a_c00044{bottom:499.762462px;}
.y19_c00044{bottom:513.088088px;}
.y18_c00044{bottom:514.299675px;}
.y17_c00044{bottom:514.590862px;}
.y16_c00044{bottom:516.287625px;}
.y15_c00044{bottom:516.871050px;}
.y14_c00044{bottom:518.173875px;}
.y13_c00044{bottom:519.748875px;}
.y12_c00044{bottom:529.017150px;}
.y11_c00044{bottom:530.281687px;}
.y10_c00044{bottom:531.623062px;}
.yf_c00044{bottom:532.866450px;}
.ye_c00044{bottom:533.481787px;}
.yd_c00044{bottom:533.821650px;}
.yc_c00044{bottom:534.966450px;}
.yb_c00044{bottom:536.223862px;}
.ya_c00044{bottom:545.524425px;}
.y9_c00044{bottom:546.058200px;}
.y8_c00044{bottom:547.026187px;}
.y7_c00044{bottom:547.855838px;}
.y6_c00044{bottom:548.801212px;}
.y5_c00044{bottom:549.348450px;}
.y4_c00044{bottom:550.386262px;}
.y3_c00044{bottom:551.142187px;}
.y2_c00044{bottom:552.427500px;}
.y1_c00044{bottom:561.625500px;}
.h13_c00044{height:53.529272px;}
.h6_c00044{height:57.768044px;}
.h8_c00044{height:58.818372px;}
.h14_c00044{height:60.876427px;}
.hb_c00044{height:60.919028px;}
.h11_c00044{height:61.926021px;}
.h5_c00044{height:61.969356px;}
.he_c00044{height:62.975614px;}
.h4_c00044{height:63.019684px;}
.hd_c00044{height:64.025208px;}
.ha_c00044{height:64.070012px;}
.hf_c00044{height:65.074801px;}
.h2_c00044{height:65.120341px;}
.h12_c00044{height:66.124395px;}
.h3_c00044{height:66.170669px;}
.h15_c00044{height:67.173989px;}
.hc_c00044{height:67.220997px;}
.h7_c00044{height:68.271325px;}
.h9_c00044{height:69.321653px;}
.h10_c00044{height:71.372363px;}
.h1_c00044{height:72.444566px;}
.h0_c00044{height:600.750000px;}
.w1_c00044{width:363.750000px;}
.w0_c00044{width:363.900000px;}
.x0_c00044{left:0.000000px;}
.x7b_c00044{left:15.757926px;}
.x6c_c00044{left:16.871099px;}
.x54_c00044{left:18.138825px;}
.x3f_c00044{left:19.933688px;}
.x31_c00044{left:20.974988px;}
.x2_c00044{left:22.126500px;}
.x68_c00044{left:23.703476px;}
.x26_c00044{left:27.030150px;}
.x7c_c00044{left:29.311157px;}
.x46_c00044{left:35.192700px;}
.x49_c00044{left:37.776750px;}
.x61_c00044{left:40.859121px;}
.x75_c00044{left:42.116078px;}
.x78_c00044{left:43.441556px;}
.x64_c00044{left:44.840139px;}
.x27_c00044{left:46.377750px;}
.x18_c00044{left:49.740263px;}
.x3c_c00044{left:51.631538px;}
.x55_c00044{left:54.829500px;}
.x4d_c00044{left:57.139650px;}
.x22_c00044{left:58.648500px;}
.x32_c00044{left:60.828000px;}
.x56_c00044{left:65.717175px;}
.x38_c00044{left:67.051575px;}
.x42_c00044{left:68.153738px;}
.x4e_c00044{left:69.795525px;}
.xb_c00044{left:71.022788px;}
.x3_c00044{left:73.539000px;}
.x65_c00044{left:75.232305px;}
.x1e_c00044{left:77.180363px;}
.x69_c00044{left:79.262028px;}
.x12_c00044{left:83.273888px;}
.x2b_c00044{left:84.451163px;}
.x33_c00044{left:85.817888px;}
.x58_c00044{left:90.122249px;}
.x19_c00044{left:91.329038px;}
.x4a_c00044{left:92.476050px;}
.x23_c00044{left:93.619388px;}
.x5b_c00044{left:94.792090px;}
.x6e_c00044{left:97.949897px;}
.x79_c00044{left:100.470972px;}
.x4_c00044{left:103.776000px;}
.x4f_c00044{left:106.494600px;}
.x53_c00044{left:109.288875px;}
.x71_c00044{left:110.619935px;}
.x28_c00044{left:112.799963px;}
.x43_c00044{left:113.964788px;}
.xc_c00044{left:115.073700px;}
.x1a_c00044{left:121.862363px;}
.x5c_c00044{left:124.288912px;}
.x4b_c00044{left:125.315400px;}
.xd_c00044{left:128.127863px;}
.x29_c00044{left:130.142288px;}
.x57_c00044{left:132.172425px;}
.x13_c00044{left:133.405650px;}
.x5f_c00044{left:134.838807px;}
.x3d_c00044{left:139.359375px;}
.x47_c00044{left:141.288863px;}
.x2c_c00044{left:143.087813px;}
.x5_c00044{left:145.288500px;}
.x74_c00044{left:150.593876px;}
.xe_c00044{left:151.780763px;}
.x66_c00044{left:154.477322px;}
.x14_c00044{left:155.842088px;}
.x6a_c00044{left:159.189612px;}
.x7a_c00044{left:160.755026px;}
.x1_c00044{left:162.771000px;}
.x24_c00044{left:164.655975px;}
.x34_c00044{left:166.050375px;}
.x6_c00044{left:167.178000px;}
.x6f_c00044{left:170.324856px;}
.x44_c00044{left:171.492975px;}
.x2d_c00044{left:175.033125px;}
.x6d_c00044{left:177.057692px;}
.x72_c00044{left:179.232071px;}
.x59_c00044{left:181.694085px;}
.x25_c00044{left:185.482838px;}
.x62_c00044{left:186.844994px;}
.x1f_c00044{left:188.713913px;}
.x35_c00044{left:190.908263px;}
.x67_c00044{left:192.571701px;}
.x6b_c00044{left:193.933680px;}
.x39_c00044{left:195.733763px;}
.xf_c00044{left:199.595063px;}
.x40_c00044{left:203.098538px;}
.x7_c00044{left:204.993000px;}
.x2a_c00044{left:211.421625px;}
.x5a_c00044{left:212.888359px;}
.x3a_c00044{left:215.734763px;}
.x2e_c00044{left:218.042813px;}
.x50_c00044{left:219.045038px;}
.x63_c00044{left:220.104077px;}
.x15_c00044{left:221.130975px;}
.x1b_c00044{left:225.132900px;}
.x45_c00044{left:226.831313px;}
.x16_c00044{left:232.358213px;}
.x73_c00044{left:234.825033px;}
.x8_c00044{left:238.179000px;}
.x76_c00044{left:239.852276px;}
.x2f_c00044{left:240.855525px;}
.x1c_c00044{left:245.377425px;}
.x20_c00044{left:247.571063px;}
.x10_c00044{left:251.208788px;}
.x77_c00044{left:257.714549px;}
.x5d_c00044{left:259.479668px;}
.x7d_c00044{left:261.292998px;}
.x60_c00044{left:263.183847px;}
.x51_c00044{left:267.477825px;}
.x36_c00044{left:269.594438px;}
.x3e_c00044{left:273.226313px;}
.x21_c00044{left:274.276725px;}
.x5e_c00044{left:275.390034px;}
.x9_c00044{left:276.898500px;}
.x17_c00044{left:278.960550px;}
.x52_c00044{left:280.133700px;}
.x41_c00044{left:283.815525px;}
.x3b_c00044{left:286.168725px;}
.x37_c00044{left:288.345113px;}
.x48_c00044{left:290.716575px;}
.x30_c00044{left:293.086313px;}
.x4c_c00044{left:294.338963px;}
.x1d_c00044{left:297.124463px;}
.xa_c00044{left:298.249500px;}
.x11_c00044{left:299.869088px;}
.x70_c00044{left:304.128749px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.fs12_c00044{font-size:47.581575pt;}
.fs5_c00044{font-size:51.349372pt;}
.fs7_c00044{font-size:52.282997pt;}
.fs13_c00044{font-size:54.112380pt;}
.fsa_c00044{font-size:54.150247pt;}
.fs10_c00044{font-size:55.045352pt;}
.fs4_c00044{font-size:55.083872pt;}
.fsd_c00044{font-size:55.978324pt;}
.fs3_c00044{font-size:56.017497pt;}
.fsc_c00044{font-size:56.911296pt;}
.fs9_c00044{font-size:56.951122pt;}
.fse_c00044{font-size:57.844268pt;}
.fs1_c00044{font-size:57.884747pt;}
.fs11_c00044{font-size:58.777240pt;}
.fs2_c00044{font-size:58.818372pt;}
.fs14_c00044{font-size:59.710212pt;}
.fsb_c00044{font-size:59.751997pt;}
.fs6_c00044{font-size:60.685622pt;}
.fs8_c00044{font-size:61.619247pt;}
.fsf_c00044{font-size:63.442100pt;}
.fs0_c00044{font-size:64.395170pt;}
.y0_c00044{bottom:0.000000pt;}
.yfa_c00044{bottom:15.966464pt;}
.yf9_c00044{bottom:18.344049pt;}
.yf8_c00044{bottom:19.939035pt;}
.yf7_c00044{bottom:22.566867pt;}
.yf6_c00044{bottom:23.491619pt;}
.yf5_c00044{bottom:25.460748pt;}
.yf4_c00044{bottom:26.014856pt;}
.yf3_c00044{bottom:30.367237pt;}
.yf2_c00044{bottom:31.306771pt;}
.yf1_c00044{bottom:31.970679pt;}
.yf0_c00044{bottom:33.851447pt;}
.yef_c00044{bottom:35.782173pt;}
.yee_c00044{bottom:36.336597pt;}
.yed_c00044{bottom:37.608876pt;}
.yec_c00044{bottom:38.486665pt;}
.yeb_c00044{bottom:48.585257pt;}
.yea_c00044{bottom:49.061511pt;}
.ye9_c00044{bottom:51.861723pt;}
.ye8_c00044{bottom:53.886060pt;}
.ye7_c00044{bottom:54.340596pt;}
.ye6_c00044{bottom:55.035032pt;}
.ye5_c00044{bottom:63.303255pt;}
.ye4_c00044{bottom:64.599039pt;}
.ye3_c00044{bottom:66.554324pt;}
.ye2_c00044{bottom:68.012876pt;}
.ye1_c00044{bottom:68.628108pt;}
.ye0_c00044{bottom:70.797851pt;}
.ydf_c00044{bottom:72.548945pt;}
.yde_c00044{bottom:78.606863pt;}
.ydd_c00044{bottom:80.057045pt;}
.ydc_c00044{bottom:80.936197pt;}
.ydb_c00044{bottom:81.442924pt;}
.yda_c00044{bottom:82.563997pt;}
.yd9_c00044{bottom:83.152897pt;}
.yd8_c00044{bottom:83.849931pt;}
.yd7_c00044{bottom:85.502316pt;}
.yd6_c00044{bottom:89.726780pt;}
.yd5_c00044{bottom:91.195587pt;}
.yd4_c00044{bottom:92.690119pt;}
.yd3_c00044{bottom:95.915525pt;}
.yd2_c00044{bottom:96.453436pt;}
.yd1_c00044{bottom:99.263025pt;}
.yd0_c00044{bottom:100.136960pt;}
.ycf_c00044{bottom:103.032015pt;}
.yce_c00044{bottom:107.951815pt;}
.ycd_c00044{bottom:109.349655pt;}
.ycc_c00044{bottom:109.933156pt;}
.ycb_c00044{bottom:111.314713pt;}
.yca_c00044{bottom:111.691288pt;}
.yc9_c00044{bottom:113.104269pt;}
.yc8_c00044{bottom:113.875449pt;}
.yc7_c00044{bottom:114.278455pt;}
.yc6_c00044{bottom:115.733823pt;}
.yc5_c00044{bottom:121.867675pt;}
.yc4_c00044{bottom:123.780541pt;}
.yc3_c00044{bottom:124.337555pt;}
.yc2_c00044{bottom:126.327421pt;}
.yc1_c00044{bottom:127.406355pt;}
.yc0_c00044{bottom:128.242901pt;}
.ybf_c00044{bottom:129.169841pt;}
.ybe_c00044{bottom:129.650088pt;}
.ybd_c00044{bottom:138.294141pt;}
.ybc_c00044{bottom:138.974715pt;}
.ybb_c00044{bottom:141.752223pt;}
.yba_c00044{bottom:142.819499pt;}
.yb9_c00044{bottom:144.691311pt;}
.yb8_c00044{bottom:145.522005pt;}
.yb7_c00044{bottom:147.400257pt;}
.yb6_c00044{bottom:152.483969pt;}
.yb5_c00044{bottom:153.292904pt;}
.yb4_c00044{bottom:155.611112pt;}
.yb3_c00044{bottom:156.359203pt;}
.yb2_c00044{bottom:157.748260pt;}
.yb1_c00044{bottom:160.638891pt;}
.yb0_c00044{bottom:161.748075pt;}
.yaf_c00044{bottom:162.754101pt;}
.yae_c00044{bottom:168.365200pt;}
.yad_c00044{bottom:170.358476pt;}
.yac_c00044{bottom:171.050859pt;}
.yab_c00044{bottom:171.511599pt;}
.yaa_c00044{bottom:173.513393pt;}
.ya9_c00044{bottom:174.291633pt;}
.ya8_c00044{bottom:175.577568pt;}
.ya7_c00044{bottom:176.578045pt;}
.ya6_c00044{bottom:177.387603pt;}
.ya5_c00044{bottom:182.691096pt;}
.ya4_c00044{bottom:183.694861pt;}
.ya3_c00044{bottom:184.979419pt;}
.ya2_c00044{bottom:187.341411pt;}
.ya1_c00044{bottom:187.919867pt;}
.ya0_c00044{bottom:190.060617pt;}
.y9f_c00044{bottom:190.560457pt;}
.y9e_c00044{bottom:191.783924pt;}
.y9d_c00044{bottom:197.932991pt;}
.y9c_c00044{bottom:198.678208pt;}
.y9b_c00044{bottom:199.229705pt;}
.y9a_c00044{bottom:201.195771pt;}
.y99_c00044{bottom:203.919959pt;}
.y98_c00044{bottom:204.622727pt;}
.y97_c00044{bottom:204.943913pt;}
.y96_c00044{bottom:207.623879pt;}
.y95_c00044{bottom:213.061027pt;}
.y94_c00044{bottom:215.756073pt;}
.y93_c00044{bottom:216.727533pt;}
.y92_c00044{bottom:218.366887pt;}
.y91_c00044{bottom:219.579287pt;}
.y90_c00044{bottom:220.667507pt;}
.y8f_c00044{bottom:221.516000pt;}
.y8e_c00044{bottom:230.803667pt;}
.y8d_c00044{bottom:231.252300pt;}
.y8c_c00044{bottom:233.507800pt;}
.y8b_c00044{bottom:234.306367pt;}
.y8a_c00044{bottom:236.610333pt;}
.y89_c00044{bottom:236.988367pt;}
.y88_c00044{bottom:238.260000pt;}
.y87_c00044{bottom:243.840067pt;}
.y86_c00044{bottom:244.554300pt;}
.y85_c00044{bottom:246.316333pt;}
.y84_c00044{bottom:247.105100pt;}
.y83_c00044{bottom:247.507067pt;}
.y82_c00044{bottom:248.919767pt;}
.y81_c00044{bottom:250.413967pt;}
.y80_c00044{bottom:251.685067pt;}
.y7f_c00044{bottom:252.635967pt;}
.y7e_c00044{bottom:253.618300pt;}
.y7d_c00044{bottom:259.935067pt;}
.y7c_c00044{bottom:260.363067pt;}
.y7b_c00044{bottom:261.998367pt;}
.y7a_c00044{bottom:263.628300pt;}
.y79_c00044{bottom:264.579700pt;}
.y78_c00044{bottom:265.800300pt;}
.y77_c00044{bottom:267.040100pt;}
.y76_c00044{bottom:267.468100pt;}
.y75_c00044{bottom:268.747500pt;}
.y74_c00044{bottom:275.105067pt;}
.y73_c00044{bottom:276.459433pt;}
.y72_c00044{bottom:277.631867pt;}
.y71_c00044{bottom:278.765800pt;}
.y70_c00044{bottom:279.161333pt;}
.y6f_c00044{bottom:279.949800pt;}
.y6e_c00044{bottom:280.425533pt;}
.y6d_c00044{bottom:281.261400pt;}
.y6c_c00044{bottom:281.703733pt;}
.y6b_c00044{bottom:290.078867pt;}
.y6a_c00044{bottom:291.688467pt;}
.y69_c00044{bottom:291.912933pt;}
.y68_c00044{bottom:293.267400pt;}
.y67_c00044{bottom:295.186133pt;}
.y66_c00044{bottom:295.530367pt;}
.y65_c00044{bottom:295.865500pt;}
.y64_c00044{bottom:305.320500pt;}
.y63_c00044{bottom:305.844833pt;}
.y62_c00044{bottom:307.222667pt;}
.y61_c00044{bottom:308.654500pt;}
.y60_c00044{bottom:309.160167pt;}
.y5f_c00044{bottom:309.795267pt;}
.y5e_c00044{bottom:310.256467pt;}
.y5d_c00044{bottom:310.992867pt;}
.y5c_c00044{bottom:319.546533pt;}
.y5b_c00044{bottom:320.307667pt;}
.y5a_c00044{bottom:321.483000pt;}
.y59_c00044{bottom:322.332033pt;}
.y58_c00044{bottom:323.880000pt;}
.y57_c00044{bottom:324.186333pt;}
.y56_c00044{bottom:324.958367pt;}
.y55_c00044{bottom:325.878867pt;}
.y54_c00044{bottom:334.272233pt;}
.y53_c00044{bottom:334.963667pt;}
.y52_c00044{bottom:336.584333pt;}
.y51_c00044{bottom:337.960833pt;}
.y50_c00044{bottom:338.717533pt;}
.y4f_c00044{bottom:340.378633pt;}
.y4e_c00044{bottom:341.246733pt;}
.y4d_c00044{bottom:349.048700pt;}
.y4c_c00044{bottom:349.531667pt;}
.y4b_c00044{bottom:350.988800pt;}
.y4a_c00044{bottom:351.540000pt;}
.y49_c00044{bottom:351.836667pt;}
.y48_c00044{bottom:353.243400pt;}
.y47_c00044{bottom:353.760400pt;}
.y46_c00044{bottom:354.784933pt;}
.y45_c00044{bottom:355.086700pt;}
.y44_c00044{bottom:356.370833pt;}
.y43_c00044{bottom:363.885633pt;}
.y42_c00044{bottom:364.385033pt;}
.y41_c00044{bottom:366.483167pt;}
.y40_c00044{bottom:367.146300pt;}
.y3f_c00044{bottom:369.285467pt;}
.y3e_c00044{bottom:369.951533pt;}
.y3d_c00044{bottom:371.014600pt;}
.y3c_c00044{bottom:378.658900pt;}
.y3b_c00044{bottom:380.005033pt;}
.y3a_c00044{bottom:380.593367pt;}
.y39_c00044{bottom:381.702567pt;}
.y38_c00044{bottom:382.525867pt;}
.y37_c00044{bottom:384.037033pt;}
.y36_c00044{bottom:384.328400pt;}
.y35_c00044{bottom:385.656067pt;}
.y34_c00044{bottom:393.266800pt;}
.y33_c00044{bottom:395.623133pt;}
.y32_c00044{bottom:397.790900pt;}
.y31_c00044{bottom:398.253667pt;}
.y30_c00044{bottom:400.024567pt;}
.y2f_c00044{bottom:400.539900pt;}
.y2e_c00044{bottom:408.765367pt;}
.y2d_c00044{bottom:411.274300pt;}
.y2c_c00044{bottom:411.866533pt;}
.y2b_c00044{bottom:413.886733pt;}
.y2a_c00044{bottom:414.881333pt;}
.y29_c00044{bottom:415.907133pt;}
.y28_c00044{bottom:423.377200pt;}
.y27_c00044{bottom:424.079667pt;}
.y26_c00044{bottom:424.791867pt;}
.y25_c00044{bottom:426.361300pt;}
.y24_c00044{bottom:427.070800pt;}
.y23_c00044{bottom:429.336133pt;}
.y22_c00044{bottom:430.791133pt;}
.y21_c00044{bottom:439.839433pt;}
.y20_c00044{bottom:440.667833pt;}
.y1f_c00044{bottom:440.992300pt;}
.y1e_c00044{bottom:441.927567pt;}
.y1d_c00044{bottom:442.645467pt;}
.y1c_c00044{bottom:443.134533pt;}
.y1b_c00044{bottom:443.799900pt;}
.y1a_c00044{bottom:444.233300pt;}
.y19_c00044{bottom:456.078300pt;}
.y18_c00044{bottom:457.155267pt;}
.y17_c00044{bottom:457.414100pt;}
.y16_c00044{bottom:458.922333pt;}
.y15_c00044{bottom:459.440933pt;}
.y14_c00044{bottom:460.599000pt;}
.y13_c00044{bottom:461.999000pt;}
.y12_c00044{bottom:470.237467pt;}
.y11_c00044{bottom:471.361500pt;}
.y10_c00044{bottom:472.553833pt;}
.yf_c00044{bottom:473.659067pt;}
.ye_c00044{bottom:474.206033pt;}
.yd_c00044{bottom:474.508133pt;}
.yc_c00044{bottom:475.525733pt;}
.yb_c00044{bottom:476.643433pt;}
.ya_c00044{bottom:484.910600pt;}
.y9_c00044{bottom:485.385067pt;}
.y8_c00044{bottom:486.245500pt;}
.y7_c00044{bottom:486.982967pt;}
.y6_c00044{bottom:487.823300pt;}
.y5_c00044{bottom:488.309733pt;}
.y4_c00044{bottom:489.232233pt;}
.y3_c00044{bottom:489.904167pt;}
.y2_c00044{bottom:491.046667pt;}
.y1_c00044{bottom:499.222667pt;}
.h13_c00044{height:47.581575pt;}
.h6_c00044{height:51.349372pt;}
.h8_c00044{height:52.282997pt;}
.h14_c00044{height:54.112380pt;}
.hb_c00044{height:54.150247pt;}
.h11_c00044{height:55.045352pt;}
.h5_c00044{height:55.083872pt;}
.he_c00044{height:55.978324pt;}
.h4_c00044{height:56.017497pt;}
.hd_c00044{height:56.911296pt;}
.ha_c00044{height:56.951122pt;}
.hf_c00044{height:57.844268pt;}
.h2_c00044{height:57.884747pt;}
.h12_c00044{height:58.777240pt;}
.h3_c00044{height:58.818372pt;}
.h15_c00044{height:59.710212pt;}
.hc_c00044{height:59.751997pt;}
.h7_c00044{height:60.685622pt;}
.h9_c00044{height:61.619247pt;}
.h10_c00044{height:63.442100pt;}
.h1_c00044{height:64.395170pt;}
.h0_c00044{height:534.000000pt;}
.w1_c00044{width:323.333333pt;}
.w0_c00044{width:323.466667pt;}
.x0_c00044{left:0.000000pt;}
.x7b_c00044{left:14.007045pt;}
.x6c_c00044{left:14.996532pt;}
.x54_c00044{left:16.123400pt;}
.x3f_c00044{left:17.718833pt;}
.x31_c00044{left:18.644433pt;}
.x2_c00044{left:19.668000pt;}
.x68_c00044{left:21.069756pt;}
.x26_c00044{left:24.026800pt;}
.x7c_c00044{left:26.054361pt;}
.x46_c00044{left:31.282400pt;}
.x49_c00044{left:33.579333pt;}
.x61_c00044{left:36.319219pt;}
.x75_c00044{left:37.436513pt;}
.x78_c00044{left:38.614716pt;}
.x64_c00044{left:39.857901pt;}
.x27_c00044{left:41.224667pt;}
.x18_c00044{left:44.213567pt;}
.x3c_c00044{left:45.894700pt;}
.x55_c00044{left:48.737333pt;}
.x4d_c00044{left:50.790800pt;}
.x22_c00044{left:52.132000pt;}
.x32_c00044{left:54.069333pt;}
.x56_c00044{left:58.415267pt;}
.x38_c00044{left:59.601400pt;}
.x42_c00044{left:60.581100pt;}
.x4e_c00044{left:62.040467pt;}
.xb_c00044{left:63.131367pt;}
.x3_c00044{left:65.368000pt;}
.x65_c00044{left:66.873160pt;}
.x1e_c00044{left:68.604767pt;}
.x69_c00044{left:70.455136pt;}
.x12_c00044{left:74.021233pt;}
.x2b_c00044{left:75.067700pt;}
.x33_c00044{left:76.282567pt;}
.x58_c00044{left:80.108665pt;}
.x19_c00044{left:81.181367pt;}
.x4a_c00044{left:82.200933pt;}
.x23_c00044{left:83.217233pt;}
.x5b_c00044{left:84.259636pt;}
.x6e_c00044{left:87.066575pt;}
.x79_c00044{left:89.307531pt;}
.x4_c00044{left:92.245333pt;}
.x4f_c00044{left:94.661867pt;}
.x53_c00044{left:97.145667pt;}
.x71_c00044{left:98.328831pt;}
.x28_c00044{left:100.266633pt;}
.x43_c00044{left:101.302033pt;}
.xc_c00044{left:102.287733pt;}
.x1a_c00044{left:108.322100pt;}
.x5c_c00044{left:110.479033pt;}
.x4b_c00044{left:111.391467pt;}
.xd_c00044{left:113.891433pt;}
.x29_c00044{left:115.682033pt;}
.x57_c00044{left:117.486600pt;}
.x13_c00044{left:118.582800pt;}
.x5f_c00044{left:119.856717pt;}
.x3d_c00044{left:123.875000pt;}
.x47_c00044{left:125.590100pt;}
.x2c_c00044{left:127.189167pt;}
.x5_c00044{left:129.145333pt;}
.x74_c00044{left:133.861223pt;}
.xe_c00044{left:134.916233pt;}
.x66_c00044{left:137.313175pt;}
.x14_c00044{left:138.526300pt;}
.x6a_c00044{left:141.501877pt;}
.x7a_c00044{left:142.893356pt;}
.x1_c00044{left:144.685333pt;}
.x24_c00044{left:146.360867pt;}
.x34_c00044{left:147.600333pt;}
.x6_c00044{left:148.602667pt;}
.x6f_c00044{left:151.399872pt;}
.x44_c00044{left:152.438200pt;}
.x2d_c00044{left:155.585000pt;}
.x6d_c00044{left:157.384615pt;}
.x72_c00044{left:159.317396pt;}
.x59_c00044{left:161.505853pt;}
.x25_c00044{left:164.873633pt;}
.x62_c00044{left:166.084439pt;}
.x1f_c00044{left:167.745700pt;}
.x35_c00044{left:169.696233pt;}
.x67_c00044{left:171.174845pt;}
.x6b_c00044{left:172.385493pt;}
.x39_c00044{left:173.985567pt;}
.xf_c00044{left:177.417833pt;}
.x40_c00044{left:180.532033pt;}
.x7_c00044{left:182.216000pt;}
.x2a_c00044{left:187.930333pt;}
.x5a_c00044{left:189.234097pt;}
.x3a_c00044{left:191.764233pt;}
.x2e_c00044{left:193.815833pt;}
.x50_c00044{left:194.706700pt;}
.x63_c00044{left:195.648068pt;}
.x15_c00044{left:196.560867pt;}
.x1b_c00044{left:200.118133pt;}
.x45_c00044{left:201.627833pt;}
.x16_c00044{left:206.540633pt;}
.x73_c00044{left:208.733363pt;}
.x8_c00044{left:211.714667pt;}
.x76_c00044{left:213.202023pt;}
.x2f_c00044{left:214.093800pt;}
.x1c_c00044{left:218.113267pt;}
.x20_c00044{left:220.063167pt;}
.x10_c00044{left:223.296700pt;}
.x77_c00044{left:229.079599pt;}
.x5d_c00044{left:230.648593pt;}
.x7d_c00044{left:232.260443pt;}
.x60_c00044{left:233.941197pt;}
.x51_c00044{left:237.758067pt;}
.x36_c00044{left:239.639500pt;}
.x3e_c00044{left:242.867833pt;}
.x21_c00044{left:243.801533pt;}
.x5e_c00044{left:244.791141pt;}
.x9_c00044{left:246.132000pt;}
.x17_c00044{left:247.964933pt;}
.x52_c00044{left:249.007733pt;}
.x41_c00044{left:252.280467pt;}
.x3b_c00044{left:254.372200pt;}
.x37_c00044{left:256.306767pt;}
.x48_c00044{left:258.414733pt;}
.x30_c00044{left:260.521167pt;}
.x4c_c00044{left:261.634633pt;}
.x1d_c00044{left:264.110633pt;}
.xa_c00044{left:265.110667pt;}
.x11_c00044{left:266.550300pt;}
.x70_c00044{left:270.336665pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00045 {
    display:none;
  }
  .loading-indicator_c00045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00045 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00045 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00045" -> "#page-container .classname_c00045")
 */
.pf_c00045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00045 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00045 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00045 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00045 {overflow:visible;}
  }
}
.c_c00045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00045 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00045:after { /* webkit #35443 */
  content: '';
}
.t_c00045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00045 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00045 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00045 { /* info for Javascript */
  display:none;
}
.l_c00045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00045:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00045 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00045.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c00045{transform:matrix(0.012317,0.000456,-0.009253,0.249829,0,0);-ms-transform:matrix(0.012317,0.000456,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.012317,0.000456,-0.009253,0.249829,0,0);}
.m3d_c00045{transform:matrix(0.073689,0.002729,-0.009253,0.249829,0,0);-ms-transform:matrix(0.073689,0.002729,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.073689,0.002729,-0.009253,0.249829,0,0);}
.mc0_c00045{transform:matrix(0.133841,0.004287,-0.008004,0.249872,0,0);-ms-transform:matrix(0.133841,0.004287,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.133841,0.004287,-0.008004,0.249872,0,0);}
.m71_c00045{transform:matrix(0.146470,0.005425,-0.009253,0.249829,0,0);-ms-transform:matrix(0.146470,0.005425,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.146470,0.005425,-0.009253,0.249829,0,0);}
.m2_c00045{transform:matrix(0.147040,0.004710,-0.008004,0.249872,0,0);-ms-transform:matrix(0.147040,0.004710,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.147040,0.004710,-0.008004,0.249872,0,0);}
.m0_c00045{transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.152341,0.005642,-0.009253,0.249829,0,0);-ms-transform:matrix(0.152341,0.005642,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.152341,0.005642,-0.009253,0.249829,0,0);}
.m69_c00045{transform:matrix(0.154044,0.005705,-0.009253,0.249829,0,0);-ms-transform:matrix(0.154044,0.005705,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.154044,0.005705,-0.009253,0.249829,0,0);}
.m82_c00045{transform:matrix(0.154589,0.005726,-0.009253,0.249829,0,0);-ms-transform:matrix(0.154589,0.005726,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.154589,0.005726,-0.009253,0.249829,0,0);}
.m3a_c00045{transform:matrix(0.154664,0.005728,-0.009253,0.249829,0,0);-ms-transform:matrix(0.154664,0.005728,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.154664,0.005728,-0.009253,0.249829,0,0);}
.mc9_c00045{transform:matrix(0.155350,0.004976,-0.008004,0.249872,0,0);-ms-transform:matrix(0.155350,0.004976,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.155350,0.004976,-0.008004,0.249872,0,0);}
.m83_c00045{transform:matrix(0.155653,0.005765,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155653,0.005765,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155653,0.005765,-0.009253,0.249829,0,0);}
.m5a_c00045{transform:matrix(0.156043,0.005779,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156043,0.005779,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156043,0.005779,-0.009253,0.249829,0,0);}
.mf_c00045{transform:matrix(0.156538,0.005798,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156538,0.005798,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156538,0.005798,-0.009253,0.249829,0,0);}
.m52_c00045{transform:matrix(0.157412,0.005830,-0.009253,0.249829,0,0);-ms-transform:matrix(0.157412,0.005830,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.157412,0.005830,-0.009253,0.249829,0,0);}
.m4f_c00045{transform:matrix(0.157792,0.005844,-0.009253,0.249829,0,0);-ms-transform:matrix(0.157792,0.005844,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.157792,0.005844,-0.009253,0.249829,0,0);}
.m80_c00045{transform:matrix(0.158022,0.005853,-0.009253,0.249829,0,0);-ms-transform:matrix(0.158022,0.005853,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.158022,0.005853,-0.009253,0.249829,0,0);}
.m3_c00045{transform:matrix(0.158254,0.005069,-0.008004,0.249872,0,0);-ms-transform:matrix(0.158254,0.005069,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.158254,0.005069,-0.008004,0.249872,0,0);}
.m14_c00045{transform:matrix(0.159910,0.005923,-0.009253,0.249829,0,0);-ms-transform:matrix(0.159910,0.005923,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.159910,0.005923,-0.009253,0.249829,0,0);}
.mf4_c00045{transform:matrix(0.160623,0.005145,-0.008004,0.249872,0,0);-ms-transform:matrix(0.160623,0.005145,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.160623,0.005145,-0.008004,0.249872,0,0);}
.m5e_c00045{transform:matrix(0.161774,0.005992,-0.009253,0.249829,0,0);-ms-transform:matrix(0.161774,0.005992,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.161774,0.005992,-0.009253,0.249829,0,0);}
.ma6_c00045{transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);}
.m42_c00045{transform:matrix(0.162244,0.006009,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162244,0.006009,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162244,0.006009,-0.009253,0.249829,0,0);}
.m90_c00045{transform:matrix(0.162255,0.005685,-0.008753,0.249847,0,0);-ms-transform:matrix(0.162255,0.005685,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.162255,0.005685,-0.008753,0.249847,0,0);}
.m9d_c00045{transform:matrix(0.162449,0.006017,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162449,0.006017,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162449,0.006017,-0.009253,0.249829,0,0);}
.m45_c00045{transform:matrix(0.163328,0.006049,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163328,0.006049,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163328,0.006049,-0.009253,0.249829,0,0);}
.m11_c00045{transform:matrix(0.163363,0.006050,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163363,0.006050,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163363,0.006050,-0.009253,0.249829,0,0);}
.mbd_c00045{transform:matrix(0.163951,0.005252,-0.008004,0.249872,0,0);-ms-transform:matrix(0.163951,0.005252,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.163951,0.005252,-0.008004,0.249872,0,0);}
.mef_c00045{transform:matrix(0.165565,0.005303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.165565,0.005303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.165565,0.005303,-0.008004,0.249872,0,0);}
.m8_c00045{transform:matrix(0.166675,0.005339,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166675,0.005339,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166675,0.005339,-0.008004,0.249872,0,0);}
.mca_c00045{transform:matrix(0.167534,0.005366,-0.008004,0.249872,0,0);-ms-transform:matrix(0.167534,0.005366,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.167534,0.005366,-0.008004,0.249872,0,0);}
.mf2_c00045{transform:matrix(0.167854,0.005377,-0.008004,0.249872,0,0);-ms-transform:matrix(0.167854,0.005377,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.167854,0.005377,-0.008004,0.249872,0,0);}
.m41_c00045{transform:matrix(0.169014,0.006260,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169014,0.006260,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169014,0.006260,-0.009253,0.249829,0,0);}
.mac_c00045{transform:matrix(0.169089,0.006263,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169089,0.006263,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169089,0.006263,-0.009253,0.249829,0,0);}
.m18_c00045{transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);}
.m4c_c00045{transform:matrix(0.169604,0.006282,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169604,0.006282,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169604,0.006282,-0.009253,0.249829,0,0);}
.m3e_c00045{transform:matrix(0.170018,0.006297,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170018,0.006297,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170018,0.006297,-0.009253,0.249829,0,0);}
.m7e_c00045{transform:matrix(0.170168,0.006303,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170168,0.006303,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170168,0.006303,-0.009253,0.249829,0,0);}
.m8d_c00045{transform:matrix(0.170261,0.005965,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170261,0.005965,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170261,0.005965,-0.008753,0.249847,0,0);}
.m6d_c00045{transform:matrix(0.170828,0.006327,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170828,0.006327,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170828,0.006327,-0.009253,0.249829,0,0);}
.m5d_c00045{transform:matrix(0.171437,0.006350,-0.009253,0.249829,0,0);-ms-transform:matrix(0.171437,0.006350,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.171437,0.006350,-0.009253,0.249829,0,0);}
.mb2_c00045{transform:matrix(0.172067,0.006373,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172067,0.006373,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172067,0.006373,-0.009253,0.249829,0,0);}
.m1f_c00045{transform:matrix(0.172347,0.006383,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172347,0.006383,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172347,0.006383,-0.009253,0.249829,0,0);}
.mcd_c00045{transform:matrix(0.173276,0.005550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173276,0.005550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173276,0.005550,-0.008004,0.249872,0,0);}
.m9e_c00045{transform:matrix(0.173661,0.006432,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173661,0.006432,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173661,0.006432,-0.009253,0.249829,0,0);}
.m23_c00045{transform:matrix(0.174765,0.006473,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174765,0.006473,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174765,0.006473,-0.009253,0.249829,0,0);}
.md3_c00045{transform:matrix(0.175140,0.005610,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175140,0.005610,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175140,0.005610,-0.008004,0.249872,0,0);}
.m30_c00045{transform:matrix(0.175215,0.006489,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175215,0.006489,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175215,0.006489,-0.009253,0.249829,0,0);}
.m36_c00045{transform:matrix(0.175749,0.006509,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175749,0.006509,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175749,0.006509,-0.009253,0.249829,0,0);}
.md4_c00045{transform:matrix(0.175805,0.005631,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175805,0.005631,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175805,0.005631,-0.008004,0.249872,0,0);}
.m6_c00045{transform:matrix(0.175955,0.005636,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175955,0.005636,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175955,0.005636,-0.008004,0.249872,0,0);}
.mc_c00045{transform:matrix(0.176349,0.006531,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176349,0.006531,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176349,0.006531,-0.009253,0.249829,0,0);}
.m91_c00045{transform:matrix(0.176642,0.006189,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176642,0.006189,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176642,0.006189,-0.008753,0.249847,0,0);}
.m62_c00045{transform:matrix(0.176939,0.006553,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176939,0.006553,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176939,0.006553,-0.009253,0.249829,0,0);}
.md0_c00045{transform:matrix(0.177029,0.005671,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177029,0.005671,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177029,0.005671,-0.008004,0.249872,0,0);}
.mfa_c00045{transform:matrix(0.177379,0.005682,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177379,0.005682,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177379,0.005682,-0.008004,0.249872,0,0);}
.m53_c00045{transform:matrix(0.177958,0.006591,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177958,0.006591,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177958,0.006591,-0.009253,0.249829,0,0);}
.m9_c00045{transform:matrix(0.178133,0.006598,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178133,0.006598,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178133,0.006598,-0.009253,0.249829,0,0);}
.mdd_c00045{transform:matrix(0.178154,0.005707,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178154,0.005707,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178154,0.005707,-0.008004,0.249872,0,0);}
.mdf_c00045{transform:matrix(0.178249,0.005710,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178249,0.005710,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178249,0.005710,-0.008004,0.249872,0,0);}
.mf5_c00045{transform:matrix(0.178423,0.005715,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178423,0.005715,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178423,0.005715,-0.008004,0.249872,0,0);}
.ma_c00045{transform:matrix(0.178493,0.006611,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178493,0.006611,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178493,0.006611,-0.009253,0.249829,0,0);}
.mad_c00045{transform:matrix(0.178508,0.006611,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178508,0.006611,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178508,0.006611,-0.009253,0.249829,0,0);}
.m6c_c00045{transform:matrix(0.178653,0.006617,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178653,0.006617,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178653,0.006617,-0.009253,0.249829,0,0);}
.m35_c00045{transform:matrix(0.178767,0.006621,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178767,0.006621,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178767,0.006621,-0.009253,0.249829,0,0);}
.mb4_c00045{transform:matrix(0.179472,0.006647,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179472,0.006647,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179472,0.006647,-0.009253,0.249829,0,0);}
.m48_c00045{transform:matrix(0.179482,0.006647,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179482,0.006647,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179482,0.006647,-0.009253,0.249829,0,0);}
.m4_c00045{transform:matrix(0.179543,0.005751,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179543,0.005751,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179543,0.005751,-0.008004,0.249872,0,0);}
.mbb_c00045{transform:matrix(0.180100,0.006310,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180100,0.006310,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180100,0.006310,-0.008753,0.249847,0,0);}
.me5_c00045{transform:matrix(0.180208,0.005772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180208,0.005772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180208,0.005772,-0.008004,0.249872,0,0);}
.m1_c00045{transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);}
.m4a_c00045{transform:matrix(0.180936,0.006701,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180936,0.006701,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180936,0.006701,-0.009253,0.249829,0,0);}
.m3b_c00045{transform:matrix(0.181391,0.006718,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181391,0.006718,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181391,0.006718,-0.009253,0.249829,0,0);}
.m8f_c00045{transform:matrix(0.181599,0.006362,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181599,0.006362,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181599,0.006362,-0.008753,0.249847,0,0);}
.m3f_c00045{transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181885,0.006736,-0.009253,0.249829,0,0);}
.mc2_c00045{transform:matrix(0.182411,0.005843,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182411,0.005843,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182411,0.005843,-0.008004,0.249872,0,0);}
.m7f_c00045{transform:matrix(0.182640,0.006764,-0.009253,0.249829,0,0);-ms-transform:matrix(0.182640,0.006764,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.182640,0.006764,-0.009253,0.249829,0,0);}
.m74_c00045{transform:matrix(0.182695,0.006766,-0.009253,0.249829,0,0);-ms-transform:matrix(0.182695,0.006766,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.182695,0.006766,-0.009253,0.249829,0,0);}
.mb8_c00045{transform:matrix(0.182998,0.006411,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182998,0.006411,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182998,0.006411,-0.008753,0.249847,0,0);}
.m2c_c00045{transform:matrix(0.183020,0.006779,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183020,0.006779,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183020,0.006779,-0.009253,0.249829,0,0);}
.m2d_c00045{transform:matrix(0.183094,0.006781,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183094,0.006781,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183094,0.006781,-0.009253,0.249829,0,0);}
.m5_c00045{transform:matrix(0.183716,0.005885,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183716,0.005885,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183716,0.005885,-0.008004,0.249872,0,0);}
.mbe_c00045{transform:matrix(0.183726,0.005885,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183726,0.005885,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183726,0.005885,-0.008004,0.249872,0,0);}
.m27_c00045{transform:matrix(0.184508,0.006834,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184508,0.006834,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184508,0.006834,-0.009253,0.249829,0,0);}
.mc4_c00045{transform:matrix(0.184520,0.005911,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184520,0.005911,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184520,0.005911,-0.008004,0.249872,0,0);}
.m44_c00045{transform:matrix(0.184628,0.006838,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184628,0.006838,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184628,0.006838,-0.009253,0.249829,0,0);}
.m6a_c00045{transform:matrix(0.184943,0.006850,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184943,0.006850,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184943,0.006850,-0.009253,0.249829,0,0);}
.m12_c00045{transform:matrix(0.185483,0.006870,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185483,0.006870,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185483,0.006870,-0.009253,0.249829,0,0);}
.m1a_c00045{transform:matrix(0.185803,0.006882,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185803,0.006882,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185803,0.006882,-0.009253,0.249829,0,0);}
.m60_c00045{transform:matrix(0.185848,0.006883,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185848,0.006883,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185848,0.006883,-0.009253,0.249829,0,0);}
.m57_c00045{transform:matrix(0.185878,0.006884,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185878,0.006884,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185878,0.006884,-0.009253,0.249829,0,0);}
.m81_c00045{transform:matrix(0.186202,0.006896,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186202,0.006896,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186202,0.006896,-0.009253,0.249829,0,0);}
.mc1_c00045{transform:matrix(0.186239,0.005966,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186239,0.005966,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186239,0.005966,-0.008004,0.249872,0,0);}
.m22_c00045{transform:matrix(0.186452,0.006906,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186452,0.006906,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186452,0.006906,-0.009253,0.249829,0,0);}
.mf3_c00045{transform:matrix(0.186529,0.005975,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186529,0.005975,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186529,0.005975,-0.008004,0.249872,0,0);}
.md8_c00045{transform:matrix(0.187239,0.005998,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187239,0.005998,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187239,0.005998,-0.008004,0.249872,0,0);}
.mcc_c00045{transform:matrix(0.187364,0.006002,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187364,0.006002,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187364,0.006002,-0.008004,0.249872,0,0);}
.m6f_c00045{transform:matrix(0.187451,0.006943,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187451,0.006943,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187451,0.006943,-0.009253,0.249829,0,0);}
.mab_c00045{transform:matrix(0.187606,0.006948,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187606,0.006948,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187606,0.006948,-0.009253,0.249829,0,0);}
.m85_c00045{transform:matrix(0.187736,0.006953,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187736,0.006953,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187736,0.006953,-0.009253,0.249829,0,0);}
.mee_c00045{transform:matrix(0.187809,0.006016,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187809,0.006016,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187809,0.006016,-0.008004,0.249872,0,0);}
.mce_c00045{transform:matrix(0.187964,0.006021,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187964,0.006021,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187964,0.006021,-0.008004,0.249872,0,0);}
.m50_c00045{transform:matrix(0.187991,0.006963,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187991,0.006963,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187991,0.006963,-0.009253,0.249829,0,0);}
.m92_c00045{transform:matrix(0.188604,0.006608,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188604,0.006608,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188604,0.006608,-0.008753,0.249847,0,0);}
.mae_c00045{transform:matrix(0.188915,0.006997,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188915,0.006997,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188915,0.006997,-0.009253,0.249829,0,0);}
.med_c00045{transform:matrix(0.188938,0.006052,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188938,0.006052,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188938,0.006052,-0.008004,0.249872,0,0);}
.m13_c00045{transform:matrix(0.189055,0.007002,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189055,0.007002,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189055,0.007002,-0.009253,0.249829,0,0);}
.m26_c00045{transform:matrix(0.189270,0.007010,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189270,0.007010,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189270,0.007010,-0.009253,0.249829,0,0);}
.mdc_c00045{transform:matrix(0.189323,0.006064,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189323,0.006064,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189323,0.006064,-0.008004,0.249872,0,0);}
.mb_c00045{transform:matrix(0.189335,0.007012,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189335,0.007012,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189335,0.007012,-0.009253,0.249829,0,0);}
.mcb_c00045{transform:matrix(0.189488,0.006070,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189488,0.006070,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189488,0.006070,-0.008004,0.249872,0,0);}
.m51_c00045{transform:matrix(0.189745,0.007028,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189745,0.007028,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189745,0.007028,-0.009253,0.249829,0,0);}
.mf7_c00045{transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);}
.ma2_c00045{transform:matrix(0.190020,0.007038,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190020,0.007038,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190020,0.007038,-0.009253,0.249829,0,0);}
.m17_c00045{transform:matrix(0.190334,0.007049,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190334,0.007049,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190334,0.007049,-0.009253,0.249829,0,0);}
.m19_c00045{transform:matrix(0.190784,0.007066,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190784,0.007066,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190784,0.007066,-0.009253,0.249829,0,0);}
.ma4_c00045{transform:matrix(0.191074,0.007077,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191074,0.007077,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191074,0.007077,-0.009253,0.249829,0,0);}
.mbc_c00045{transform:matrix(0.191382,0.006130,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191382,0.006130,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191382,0.006130,-0.008004,0.249872,0,0);}
.mb5_c00045{transform:matrix(0.191483,0.006709,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191483,0.006709,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191483,0.006709,-0.008753,0.249847,0,0);}
.m4e_c00045{transform:matrix(0.191624,0.007097,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191624,0.007097,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191624,0.007097,-0.009253,0.249829,0,0);}
.m9b_c00045{transform:matrix(0.192233,0.007120,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192233,0.007120,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192233,0.007120,-0.009253,0.249829,0,0);}
.m5f_c00045{transform:matrix(0.192328,0.007123,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192328,0.007123,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192328,0.007123,-0.009253,0.249829,0,0);}
.mc5_c00045{transform:matrix(0.192521,0.006167,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192521,0.006167,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192521,0.006167,-0.008004,0.249872,0,0);}
.md1_c00045{transform:matrix(0.192531,0.006167,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192531,0.006167,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192531,0.006167,-0.008004,0.249872,0,0);}
.m1c_c00045{transform:matrix(0.192653,0.007135,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192653,0.007135,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192653,0.007135,-0.009253,0.249829,0,0);}
.ma1_c00045{transform:matrix(0.192848,0.007143,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192848,0.007143,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192848,0.007143,-0.009253,0.249829,0,0);}
.me_c00045{transform:matrix(0.192868,0.007143,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192868,0.007143,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192868,0.007143,-0.009253,0.249829,0,0);}
.m7_c00045{transform:matrix(0.193241,0.006190,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193241,0.006190,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193241,0.006190,-0.008004,0.249872,0,0);}
.m5c_c00045{transform:matrix(0.193402,0.007163,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193402,0.007163,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193402,0.007163,-0.009253,0.249829,0,0);}
.ma3_c00045{transform:matrix(0.193597,0.007170,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193597,0.007170,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193597,0.007170,-0.009253,0.249829,0,0);}
.m40_c00045{transform:matrix(0.194192,0.007192,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194192,0.007192,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194192,0.007192,-0.009253,0.249829,0,0);}
.m5b_c00045{transform:matrix(0.194721,0.007212,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194721,0.007212,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194721,0.007212,-0.009253,0.249829,0,0);}
.ma8_c00045{transform:matrix(0.194771,0.007214,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194771,0.007214,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194771,0.007214,-0.009253,0.249829,0,0);}
.m16_c00045{transform:matrix(0.194906,0.007219,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194906,0.007219,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194906,0.007219,-0.009253,0.249829,0,0);}
.m47_c00045{transform:matrix(0.195026,0.007223,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195026,0.007223,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195026,0.007223,-0.009253,0.249829,0,0);}
.m7d_c00045{transform:matrix(0.195281,0.007233,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195281,0.007233,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195281,0.007233,-0.009253,0.249829,0,0);}
.mc7_c00045{transform:matrix(0.195430,0.006260,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195430,0.006260,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195430,0.006260,-0.008004,0.249872,0,0);}
.m29_c00045{transform:matrix(0.196270,0.007269,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196270,0.007269,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196270,0.007269,-0.009253,0.249829,0,0);}
.m79_c00045{transform:matrix(0.196345,0.007272,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196345,0.007272,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196345,0.007272,-0.009253,0.249829,0,0);}
.m32_c00045{transform:matrix(0.196405,0.007274,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196405,0.007274,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196405,0.007274,-0.009253,0.249829,0,0);}
.m37_c00045{transform:matrix(0.196685,0.007285,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196685,0.007285,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196685,0.007285,-0.009253,0.249829,0,0);}
.md_c00045{transform:matrix(0.197020,0.007297,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197020,0.007297,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197020,0.007297,-0.009253,0.249829,0,0);}
.mb3_c00045{transform:matrix(0.197914,0.007330,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197914,0.007330,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197914,0.007330,-0.009253,0.249829,0,0);}
.mcf_c00045{transform:matrix(0.198108,0.006346,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198108,0.006346,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198108,0.006346,-0.008004,0.249872,0,0);}
.m4b_c00045{transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);}
.m72_c00045{transform:matrix(0.198464,0.007351,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198464,0.007351,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198464,0.007351,-0.009253,0.249829,0,0);}
.m8c_c00045{transform:matrix(0.198776,0.007561,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198776,0.007561,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198776,0.007561,-0.009503,0.249819,0,0);}
.m77_c00045{transform:matrix(0.199173,0.007377,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199173,0.007377,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199173,0.007377,-0.009253,0.249829,0,0);}
.m28_c00045{transform:matrix(0.199178,0.007377,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199178,0.007377,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199178,0.007377,-0.009253,0.249829,0,0);}
.m86_c00045{transform:matrix(0.199251,0.007579,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199251,0.007579,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199251,0.007579,-0.009503,0.249819,0,0);}
.m59_c00045{transform:matrix(0.199388,0.007385,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199388,0.007385,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199388,0.007385,-0.009253,0.249829,0,0);}
.mbf_c00045{transform:matrix(0.199588,0.006393,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199588,0.006393,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199588,0.006393,-0.008004,0.249872,0,0);}
.mfe_c00045{transform:matrix(0.199803,0.006400,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199803,0.006400,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199803,0.006400,-0.008004,0.249872,0,0);}
.m8e_c00045{transform:matrix(0.199847,0.007002,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199847,0.007002,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199847,0.007002,-0.008753,0.249847,0,0);}
.m1b_c00045{transform:matrix(0.200413,0.007423,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200413,0.007423,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200413,0.007423,-0.009253,0.249829,0,0);}
.m65_c00045{transform:matrix(0.200892,0.007440,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200892,0.007440,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200892,0.007440,-0.009253,0.249829,0,0);}
.ma9_c00045{transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);}
.mde_c00045{transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);}
.m63_c00045{transform:matrix(0.202196,0.007489,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202196,0.007489,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202196,0.007489,-0.009253,0.249829,0,0);}
.me6_c00045{transform:matrix(0.202236,0.006478,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202236,0.006478,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202236,0.006478,-0.008004,0.249872,0,0);}
.me2_c00045{transform:matrix(0.202441,0.006485,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202441,0.006485,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202441,0.006485,-0.008004,0.249872,0,0);}
.m21_c00045{transform:matrix(0.202856,0.007513,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202856,0.007513,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202856,0.007513,-0.009253,0.249829,0,0);}
.mf6_c00045{transform:matrix(0.203471,0.006518,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203471,0.006518,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203471,0.006518,-0.008004,0.249872,0,0);}
.m73_c00045{transform:matrix(0.203775,0.007547,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203775,0.007547,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203775,0.007547,-0.009253,0.249829,0,0);}
.m54_c00045{transform:matrix(0.204420,0.007571,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204420,0.007571,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204420,0.007571,-0.009253,0.249829,0,0);}
.m2f_c00045{transform:matrix(0.204620,0.007579,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204620,0.007579,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204620,0.007579,-0.009253,0.249829,0,0);}
.m87_c00045{transform:matrix(0.204927,0.007795,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204927,0.007795,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204927,0.007795,-0.009503,0.249819,0,0);}
.mb7_c00045{transform:matrix(0.205374,0.007195,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205374,0.007195,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205374,0.007195,-0.008753,0.249847,0,0);}
.maf_c00045{transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205464,0.007610,-0.009253,0.249829,0,0);}
.ma7_c00045{transform:matrix(0.205629,0.007616,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205629,0.007616,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205629,0.007616,-0.009253,0.249829,0,0);}
.m39_c00045{transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);}
.m84_c00045{transform:matrix(0.206059,0.007632,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206059,0.007632,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206059,0.007632,-0.009253,0.249829,0,0);}
.m58_c00045{transform:matrix(0.206154,0.007635,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206154,0.007635,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206154,0.007635,-0.009253,0.249829,0,0);}
.mec_c00045{transform:matrix(0.206559,0.006617,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206559,0.006617,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206559,0.006617,-0.008004,0.249872,0,0);}
.me8_c00045{transform:matrix(0.206894,0.006627,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206894,0.006627,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206894,0.006627,-0.008004,0.249872,0,0);}
.me7_c00045{transform:matrix(0.207064,0.006633,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207064,0.006633,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207064,0.006633,-0.008004,0.249872,0,0);}
.m68_c00045{transform:matrix(0.207683,0.007692,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207683,0.007692,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207683,0.007692,-0.009253,0.249829,0,0);}
.m8a_c00045{transform:matrix(0.208274,0.007922,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208274,0.007922,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208274,0.007922,-0.009503,0.249819,0,0);}
.m33_c00045{transform:matrix(0.208662,0.007728,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208662,0.007728,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208662,0.007728,-0.009253,0.249829,0,0);}
.md2_c00045{transform:matrix(0.209183,0.006701,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209183,0.006701,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209183,0.006701,-0.008004,0.249872,0,0);}
.mba_c00045{transform:matrix(0.209292,0.007333,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209292,0.007333,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209292,0.007333,-0.008753,0.249847,0,0);}
.m55_c00045{transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209581,0.007762,-0.009253,0.249829,0,0);}
.ma5_c00045{transform:matrix(0.209646,0.007765,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209646,0.007765,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209646,0.007765,-0.009253,0.249829,0,0);}
.m9c_c00045{transform:matrix(0.209746,0.007768,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209746,0.007768,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209746,0.007768,-0.009253,0.249829,0,0);}
.m10_c00045{transform:matrix(0.209881,0.007773,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209881,0.007773,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209881,0.007773,-0.009253,0.249829,0,0);}
.m43_c00045{transform:matrix(0.209896,0.007774,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209896,0.007774,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209896,0.007774,-0.009253,0.249829,0,0);}
.m20_c00045{transform:matrix(0.210136,0.007783,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210136,0.007783,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210136,0.007783,-0.009253,0.249829,0,0);}
.m75_c00045{transform:matrix(0.210721,0.007804,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210721,0.007804,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210721,0.007804,-0.009253,0.249829,0,0);}
.md9_c00045{transform:matrix(0.211402,0.006772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211402,0.006772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211402,0.006772,-0.008004,0.249872,0,0);}
.m1d_c00045{transform:matrix(0.211610,0.007837,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211610,0.007837,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211610,0.007837,-0.009253,0.249829,0,0);}
.me1_c00045{transform:matrix(0.212421,0.006804,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212421,0.006804,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212421,0.006804,-0.008004,0.249872,0,0);}
.mb9_c00045{transform:matrix(0.212680,0.007451,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212680,0.007451,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212680,0.007451,-0.008753,0.249847,0,0);}
.m93_c00045{transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);}
.me3_c00045{transform:matrix(0.213545,0.006840,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213545,0.006840,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213545,0.006840,-0.008004,0.249872,0,0);}
.maa_c00045{transform:matrix(0.213888,0.007922,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213888,0.007922,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213888,0.007922,-0.009253,0.249829,0,0);}
.m1e_c00045{transform:matrix(0.214318,0.007938,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214318,0.007938,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214318,0.007938,-0.009253,0.249829,0,0);}
.me0_c00045{transform:matrix(0.214380,0.006867,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214380,0.006867,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214380,0.006867,-0.008004,0.249872,0,0);}
.mb0_c00045{transform:matrix(0.214573,0.007947,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214573,0.007947,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214573,0.007947,-0.009253,0.249829,0,0);}
.ma0_c00045{transform:matrix(0.214788,0.007955,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214788,0.007955,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214788,0.007955,-0.009253,0.249829,0,0);}
.m6b_c00045{transform:matrix(0.214828,0.007957,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214828,0.007957,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214828,0.007957,-0.009253,0.249829,0,0);}
.mf9_c00045{transform:matrix(0.216284,0.006928,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216284,0.006928,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216284,0.006928,-0.008004,0.249872,0,0);}
.m7a_c00045{transform:matrix(0.216412,0.008015,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216412,0.008015,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216412,0.008015,-0.009253,0.249829,0,0);}
.m64_c00045{transform:matrix(0.216826,0.008031,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216826,0.008031,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216826,0.008031,-0.009253,0.249829,0,0);}
.mb6_c00045{transform:matrix(0.217442,0.007618,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217442,0.007618,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217442,0.007618,-0.008753,0.249847,0,0);}
.mdb_c00045{transform:matrix(0.217513,0.006967,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217513,0.006967,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217513,0.006967,-0.008004,0.249872,0,0);}
.m34_c00045{transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217526,0.008057,-0.009253,0.249829,0,0);}
.mc3_c00045{transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);}
.mc8_c00045{transform:matrix(0.218808,0.007009,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218808,0.007009,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218808,0.007009,-0.008004,0.249872,0,0);}
.m76_c00045{transform:matrix(0.219844,0.008142,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219844,0.008142,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219844,0.008142,-0.009253,0.249829,0,0);}
.m7b_c00045{transform:matrix(0.220174,0.008155,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220174,0.008155,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220174,0.008155,-0.009253,0.249829,0,0);}
.meb_c00045{transform:matrix(0.220592,0.007066,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220592,0.007066,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220592,0.007066,-0.008004,0.249872,0,0);}
.m3c_c00045{transform:matrix(0.221823,0.008216,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221823,0.008216,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221823,0.008216,-0.009253,0.249829,0,0);}
.m99_c00045{transform:matrix(0.221871,0.008662,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221871,0.008662,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221871,0.008662,-0.009752,0.249810,0,0);}
.m97_c00045{transform:matrix(0.221976,0.008666,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221976,0.008666,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221976,0.008666,-0.009752,0.249810,0,0);}
.m6e_c00045{transform:matrix(0.222592,0.008244,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222592,0.008244,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222592,0.008244,-0.009253,0.249829,0,0);}
.m15_c00045{transform:matrix(0.223192,0.008266,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223192,0.008266,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223192,0.008266,-0.009253,0.249829,0,0);}
.mda_c00045{transform:matrix(0.223535,0.007160,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223535,0.007160,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223535,0.007160,-0.008004,0.249872,0,0);}
.md7_c00045{transform:matrix(0.223780,0.007168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223780,0.007168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223780,0.007168,-0.008004,0.249872,0,0);}
.m31_c00045{transform:matrix(0.223936,0.008294,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223936,0.008294,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223936,0.008294,-0.009253,0.249829,0,0);}
.m46_c00045{transform:matrix(0.224001,0.008296,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224001,0.008296,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224001,0.008296,-0.009253,0.249829,0,0);}
.m56_c00045{transform:matrix(0.224236,0.008305,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224236,0.008305,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224236,0.008305,-0.009253,0.249829,0,0);}
.mc6_c00045{transform:matrix(0.224895,0.007204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224895,0.007204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224895,0.007204,-0.008004,0.249872,0,0);}
.m4d_c00045{transform:matrix(0.225660,0.008358,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225660,0.008358,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225660,0.008358,-0.009253,0.249829,0,0);}
.mb1_c00045{transform:matrix(0.226080,0.008373,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226080,0.008373,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226080,0.008373,-0.009253,0.249829,0,0);}
.m89_c00045{transform:matrix(0.226701,0.008623,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226701,0.008623,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226701,0.008623,-0.009503,0.249819,0,0);}
.m2a_c00045{transform:matrix(0.227179,0.008414,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227179,0.008414,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227179,0.008414,-0.009253,0.249829,0,0);}
.me4_c00045{transform:matrix(0.227658,0.007292,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227658,0.007292,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227658,0.007292,-0.008004,0.249872,0,0);}
.mfc_c00045{transform:matrix(0.228478,0.007319,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228478,0.007319,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228478,0.007319,-0.008004,0.249872,0,0);}
.m49_c00045{transform:matrix(0.229862,0.008513,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229862,0.008513,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229862,0.008513,-0.009253,0.249829,0,0);}
.m38_c00045{transform:matrix(0.229932,0.008516,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229932,0.008516,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229932,0.008516,-0.009253,0.249829,0,0);}
.m88_c00045{transform:matrix(0.232747,0.008853,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232747,0.008853,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232747,0.008853,-0.009503,0.249819,0,0);}
.m96_c00045{transform:matrix(0.233307,0.009108,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233307,0.009108,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233307,0.009108,-0.009752,0.249810,0,0);}
.m78_c00045{transform:matrix(0.233525,0.008649,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233525,0.008649,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233525,0.008649,-0.009253,0.249829,0,0);}
.mfd_c00045{transform:matrix(0.233945,0.007494,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233945,0.007494,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233945,0.007494,-0.008004,0.249872,0,0);}
.md5_c00045{transform:matrix(0.234340,0.007506,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234340,0.007506,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234340,0.007506,-0.008004,0.249872,0,0);}
.m94_c00045{transform:matrix(0.234981,0.009173,-0.009752,0.249810,0,0);-ms-transform:matrix(0.234981,0.009173,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.234981,0.009173,-0.009752,0.249810,0,0);}
.m98_c00045{transform:matrix(0.235690,0.009201,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235690,0.009201,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235690,0.009201,-0.009752,0.249810,0,0);}
.m9f_c00045{transform:matrix(0.236078,0.008744,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236078,0.008744,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236078,0.008744,-0.009253,0.249829,0,0);}
.m2e_c00045{transform:matrix(0.239691,0.008877,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239691,0.008877,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239691,0.008877,-0.009253,0.249829,0,0);}
.mfb_c00045{transform:matrix(0.241361,0.007731,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241361,0.007731,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241361,0.007731,-0.008004,0.249872,0,0);}
.me9_c00045{transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);}
.mea_c00045{transform:matrix(0.244744,0.007840,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244744,0.007840,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244744,0.007840,-0.008004,0.249872,0,0);}
.m7c_c00045{transform:matrix(0.244877,0.009070,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244877,0.009070,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244877,0.009070,-0.009253,0.249829,0,0);}
.m70_c00045{transform:matrix(0.246196,0.009118,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246196,0.009118,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246196,0.009118,-0.009253,0.249829,0,0);}
.m95_c00045{transform:matrix(0.249515,0.009741,-0.009752,0.249810,0,0);-ms-transform:matrix(0.249515,0.009741,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.249515,0.009741,-0.009752,0.249810,0,0);}
.m66_c00045{transform:matrix(0.252427,0.009349,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252427,0.009349,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252427,0.009349,-0.009253,0.249829,0,0);}
.m67_c00045{transform:matrix(0.255590,0.009466,-0.009253,0.249829,0,0);-ms-transform:matrix(0.255590,0.009466,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.255590,0.009466,-0.009253,0.249829,0,0);}
.mf1_c00045{transform:matrix(0.259797,0.008322,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259797,0.008322,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259797,0.008322,-0.008004,0.249872,0,0);}
.m8b_c00045{transform:matrix(0.268691,0.010220,-0.009503,0.249819,0,0);-ms-transform:matrix(0.268691,0.010220,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.268691,0.010220,-0.009503,0.249819,0,0);}
.m25_c00045{transform:matrix(0.271994,0.010074,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271994,0.010074,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271994,0.010074,-0.009253,0.249829,0,0);}
.md6_c00045{transform:matrix(0.272690,0.008735,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272690,0.008735,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272690,0.008735,-0.008004,0.249872,0,0);}
.mf0_c00045{transform:matrix(0.274244,0.008785,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274244,0.008785,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274244,0.008785,-0.008004,0.249872,0,0);}
.m9a_c00045{transform:matrix(0.274441,0.010714,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274441,0.010714,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274441,0.010714,-0.009752,0.249810,0,0);}
.m24_c00045{transform:matrix(0.307319,0.011382,-0.009253,0.249829,0,0);-ms-transform:matrix(0.307319,0.011382,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.307319,0.011382,-0.009253,0.249829,0,0);}
.mf8_c00045{transform:matrix(0.596559,0.019109,-0.008004,0.249872,0,0);-ms-transform:matrix(0.596559,0.019109,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.596559,0.019109,-0.008004,0.249872,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:0.000000px;}
.fc0_c00045{color:transparent;}
.fs15_c00045{font-size:54.573376px;}
.fsc_c00045{font-size:55.632467px;}
.fsf_c00045{font-size:55.636698px;}
.fs18_c00045{font-size:57.721840px;}
.fsd_c00045{font-size:57.733972px;}
.fs13_c00045{font-size:58.771328px;}
.fs11_c00045{font-size:58.777240px;}
.fs6_c00045{font-size:58.781475px;}
.fsa_c00045{font-size:59.831144px;}
.fs16_c00045{font-size:60.870304px;}
.fs5_c00045{font-size:60.880813px;}
.fs14_c00045{font-size:61.919792px;}
.fs4_c00045{font-size:61.930483px;}
.fs8_c00045{font-size:62.980152px;}
.fs7_c00045{font-size:64.029821px;}
.fs10_c00045{font-size:65.079490px;}
.fs17_c00045{font-size:66.117744px;}
.fse_c00045{font-size:66.124395px;}
.fs3_c00045{font-size:66.129159px;}
.fs9_c00045{font-size:67.178829px;}
.fs12_c00045{font-size:68.216720px;}
.fsb_c00045{font-size:68.228498px;}
.fs1_c00045{font-size:69.266208px;}
.fs2_c00045{font-size:69.278167px;}
.fs0_c00045{font-size:78.750000px;}
.y0_c00045{bottom:0.000000px;}
.yee_c00045{bottom:18.488355px;}
.yed_c00045{bottom:21.060675px;}
.yec_c00045{bottom:22.532019px;}
.yeb_c00045{bottom:23.707299px;}
.yea_c00045{bottom:26.282643px;}
.ye9_c00045{bottom:26.914419px;}
.ye8_c00045{bottom:27.571299px;}
.ye7_c00045{bottom:35.241348px;}
.ye6_c00045{bottom:35.809437px;}
.ye5_c00045{bottom:38.161536px;}
.ye4_c00045{bottom:39.138708px;}
.ye3_c00045{bottom:40.735275px;}
.ye2_c00045{bottom:41.409384px;}
.ye1_c00045{bottom:43.045870px;}
.ye0_c00045{bottom:43.568472px;}
.ydf_c00045{bottom:45.114645px;}
.yde_c00045{bottom:52.198956px;}
.ydd_c00045{bottom:52.988940px;}
.ydc_c00045{bottom:54.497964px;}
.ydb_c00045{bottom:55.859004px;}
.yda_c00045{bottom:57.083868px;}
.yd9_c00045{bottom:57.747996px;}
.yd8_c00045{bottom:58.611276px;}
.yd7_c00045{bottom:59.344956px;}
.yd6_c00045{bottom:60.493500px;}
.yd5_c00045{bottom:70.689904px;}
.yd4_c00045{bottom:71.258551px;}
.yd3_c00045{bottom:71.665807px;}
.yd2_c00045{bottom:72.728536px;}
.yd1_c00045{bottom:73.234618px;}
.yd0_c00045{bottom:74.997087px;}
.ycf_c00045{bottom:76.265388px;}
.yce_c00045{bottom:76.787550px;}
.ycd_c00045{bottom:77.175451px;}
.ycc_c00045{bottom:79.139172px;}
.ycb_c00045{bottom:87.315715px;}
.yca_c00045{bottom:87.843024px;}
.yc9_c00045{bottom:90.818448px;}
.yc8_c00045{bottom:93.050328px;}
.yc7_c00045{bottom:93.911787px;}
.yc6_c00045{bottom:95.225637px;}
.yc5_c00045{bottom:95.720546px;}
.yc4_c00045{bottom:96.138579px;}
.yc3_c00045{bottom:104.007612px;}
.yc2_c00045{bottom:106.572396px;}
.yc1_c00045{bottom:107.108364px;}
.yc0_c00045{bottom:107.549052px;}
.ybf_c00045{bottom:109.508988px;}
.ybe_c00045{bottom:110.294844px;}
.ybd_c00045{bottom:112.597500px;}
.ybc_c00045{bottom:121.267365px;}
.ybb_c00045{bottom:123.357180px;}
.yba_c00045{bottom:125.712435px;}
.yb9_c00045{bottom:126.308100px;}
.yb8_c00045{bottom:127.698038px;}
.yb7_c00045{bottom:130.117080px;}
.yb6_c00045{bottom:131.230500px;}
.yb5_c00045{bottom:139.076163px;}
.yb4_c00045{bottom:140.467881px;}
.yb3_c00045{bottom:141.035590px;}
.yb2_c00045{bottom:141.899836px;}
.yb1_c00045{bottom:143.602354px;}
.yb0_c00045{bottom:144.846387px;}
.yaf_c00045{bottom:145.434964px;}
.yae_c00045{bottom:146.699532px;}
.yad_c00045{bottom:147.169561px;}
.yac_c00045{bottom:155.768509px;}
.yab_c00045{bottom:156.161227px;}
.yaa_c00045{bottom:157.413252px;}
.ya9_c00045{bottom:158.085190px;}
.ya8_c00045{bottom:159.787264px;}
.ya7_c00045{bottom:160.557493px;}
.ya6_c00045{bottom:162.393433px;}
.ya5_c00045{bottom:164.983896px;}
.ya4_c00045{bottom:172.419009px;}
.ya3_c00045{bottom:174.077349px;}
.ya2_c00045{bottom:174.497373px;}
.ya1_c00045{bottom:177.235354px;}
.ya0_c00045{bottom:178.148274px;}
.y9f_c00045{bottom:179.932654px;}
.y9e_c00045{bottom:180.871049px;}
.y9d_c00045{bottom:181.306224px;}
.y9c_c00045{bottom:182.529000px;}
.y9b_c00045{bottom:189.172707px;}
.y9a_c00045{bottom:190.803629px;}
.y99_c00045{bottom:193.292570px;}
.y98_c00045{bottom:194.073252px;}
.y97_c00045{bottom:195.968418px;}
.y96_c00045{bottom:198.065994px;}
.y95_c00045{bottom:200.080500px;}
.y94_c00045{bottom:208.710382px;}
.y93_c00045{bottom:209.496255px;}
.y92_c00045{bottom:210.426922px;}
.y91_c00045{bottom:211.057185px;}
.y90_c00045{bottom:213.893760px;}
.y8f_c00045{bottom:216.492248px;}
.y8e_c00045{bottom:217.357500px;}
.y8d_c00045{bottom:223.672242px;}
.y8c_c00045{bottom:224.634288px;}
.y8b_c00045{bottom:226.630827px;}
.y8a_c00045{bottom:228.803097px;}
.y89_c00045{bottom:231.275529px;}
.y88_c00045{bottom:231.985692px;}
.y87_c00045{bottom:234.376500px;}
.y86_c00045{bottom:242.650086px;}
.y85_c00045{bottom:245.007948px;}
.y84_c00045{bottom:245.852824px;}
.y83_c00045{bottom:246.378576px;}
.y82_c00045{bottom:247.351380px;}
.y81_c00045{bottom:248.852544px;}
.y80_c00045{bottom:249.771346px;}
.y7f_c00045{bottom:251.116500px;}
.y7e_c00045{bottom:257.714193px;}
.y7d_c00045{bottom:259.669014px;}
.y7c_c00045{bottom:260.478759px;}
.y7b_c00045{bottom:262.646201px;}
.y7a_c00045{bottom:263.657466px;}
.y79_c00045{bottom:265.545021px;}
.y78_c00045{bottom:266.208357px;}
.y77_c00045{bottom:266.947839px;}
.y76_c00045{bottom:268.396500px;}
.y75_c00045{bottom:274.478351px;}
.y74_c00045{bottom:274.928067px;}
.y73_c00045{bottom:277.061432px;}
.y72_c00045{bottom:277.734092px;}
.y71_c00045{bottom:279.464859px;}
.y70_c00045{bottom:281.741358px;}
.y6f_c00045{bottom:283.524795px;}
.y6e_c00045{bottom:284.260614px;}
.y6d_c00045{bottom:285.481170px;}
.y6c_c00045{bottom:292.437262px;}
.y6b_c00045{bottom:293.357952px;}
.y6a_c00045{bottom:294.021288px;}
.y69_c00045{bottom:297.024726px;}
.y68_c00045{bottom:297.702825px;}
.y67_c00045{bottom:299.452851px;}
.y66_c00045{bottom:300.205264px;}
.y65_c00045{bottom:302.213754px;}
.y64_c00045{bottom:309.647701px;}
.y63_c00045{bottom:310.802379px;}
.y62_c00045{bottom:311.507062px;}
.y61_c00045{bottom:312.397948px;}
.y60_c00045{bottom:315.522820px;}
.y5f_c00045{bottom:316.314528px;}
.y5e_c00045{bottom:318.136704px;}
.y5d_c00045{bottom:325.554390px;}
.y5c_c00045{bottom:327.556497px;}
.y5b_c00045{bottom:328.503327px;}
.y5a_c00045{bottom:329.664665px;}
.y59_c00045{bottom:332.158613px;}
.y58_c00045{bottom:332.811903px;}
.y57_c00045{bottom:333.325389px;}
.y56_c00045{bottom:335.411023px;}
.y55_c00045{bottom:343.262386px;}
.y54_c00045{bottom:346.541659px;}
.y53_c00045{bottom:347.412787px;}
.y52_c00045{bottom:348.465068px;}
.y51_c00045{bottom:351.298453px;}
.y50_c00045{bottom:352.190283px;}
.y4f_c00045{bottom:352.959346px;}
.y4e_c00045{bottom:361.378253px;}
.y4d_c00045{bottom:362.291616px;}
.y4c_c00045{bottom:363.011340px;}
.y4b_c00045{bottom:365.452341px;}
.y4a_c00045{bottom:367.077381px;}
.y49_c00045{bottom:368.055735px;}
.y48_c00045{bottom:370.496736px;}
.y47_c00045{bottom:375.770901px;}
.y46_c00045{bottom:378.230439px;}
.y45_c00045{bottom:378.959431px;}
.y44_c00045{bottom:382.415139px;}
.y43_c00045{bottom:383.058606px;}
.y42_c00045{bottom:384.052056px;}
.y41_c00045{bottom:386.187640px;}
.y40_c00045{bottom:387.240198px;}
.y3f_c00045{bottom:394.195791px;}
.y3e_c00045{bottom:394.622253px;}
.y3d_c00045{bottom:397.152165px;}
.y3c_c00045{bottom:398.373886px;}
.y3b_c00045{bottom:399.126411px;}
.y3a_c00045{bottom:399.588005px;}
.y39_c00045{bottom:401.718983px;}
.y38_c00045{bottom:402.469509px;}
.y37_c00045{bottom:403.863891px;}
.y36_c00045{bottom:404.510022px;}
.y35_c00045{bottom:410.893576px;}
.y34_c00045{bottom:413.063016px;}
.y33_c00045{bottom:413.862438px;}
.y32_c00045{bottom:416.665521px;}
.y31_c00045{bottom:418.489640px;}
.y30_c00045{bottom:419.563953px;}
.y2f_c00045{bottom:421.507674px;}
.y2e_c00045{bottom:427.059617px;}
.y2d_c00045{bottom:427.648194px;}
.y2c_c00045{bottom:428.058395px;}
.y2b_c00045{bottom:430.111950px;}
.y2a_c00045{bottom:432.556447px;}
.y29_c00045{bottom:435.578922px;}
.y28_c00045{bottom:437.708013px;}
.y27_c00045{bottom:444.793920px;}
.y26_c00045{bottom:445.578523px;}
.y25_c00045{bottom:447.801687px;}
.y24_c00045{bottom:449.034120px;}
.y23_c00045{bottom:449.711331px;}
.y22_c00045{bottom:450.472958px;}
.y21_c00045{bottom:453.281646px;}
.y20_c00045{bottom:454.106154px;}
.y1f_c00045{bottom:454.597662px;}
.y1e_c00045{bottom:455.522347px;}
.y1d_c00045{bottom:462.350402px;}
.y1c_c00045{bottom:463.604147px;}
.y1b_c00045{bottom:465.593599px;}
.y1a_c00045{bottom:467.900291px;}
.y19_c00045{bottom:468.680177px;}
.y18_c00045{bottom:470.099867px;}
.y17_c00045{bottom:471.987088px;}
.y16_c00045{bottom:478.330350px;}
.y15_c00045{bottom:479.159409px;}
.y14_c00045{bottom:480.943623px;}
.y13_c00045{bottom:484.618278px;}
.y12_c00045{bottom:485.953941px;}
.y11_c00045{bottom:488.990568px;}
.y10_c00045{bottom:495.557550px;}
.yf_c00045{bottom:497.978627px;}
.ye_c00045{bottom:500.097617px;}
.yd_c00045{bottom:500.818229px;}
.yc_c00045{bottom:503.118815px;}
.yb_c00045{bottom:503.817615px;}
.ya_c00045{bottom:506.263500px;}
.yff_c00045{bottom:513.114818px;}
.yfe_c00045{bottom:514.421148px;}
.yfd_c00045{bottom:516.148716px;}
.yfc_c00045{bottom:517.791645px;}
.yfb_c00045{bottom:518.458064px;}
.yfa_c00045{bottom:519.184439px;}
.yf9_c00045{bottom:522.279147px;}
.yf8_c00045{bottom:523.012914px;}
.yf7_c00045{bottom:530.343540px;}
.yf6_c00045{bottom:531.743076px;}
.yf5_c00045{bottom:532.395780px;}
.yf4_c00045{bottom:533.951268px;}
.yf3_c00045{bottom:534.449316px;}
.yf2_c00045{bottom:535.024260px;}
.yf1_c00045{bottom:536.853636px;}
.yf0_c00045{bottom:537.406020px;}
.yef_c00045{bottom:539.470500px;}
.y9_c00045{bottom:547.224696px;}
.y8_c00045{bottom:549.510840px;}
.y7_c00045{bottom:551.369976px;}
.y6_c00045{bottom:552.002328px;}
.y5_c00045{bottom:553.902696px;}
.y4_c00045{bottom:554.404104px;}
.y3_c00045{bottom:554.895768px;}
.y2_c00045{bottom:555.939000px;}
.y1_c00045{bottom:565.243500px;}
.h16_c00045{height:54.573376px;}
.hd_c00045{height:55.632467px;}
.h10_c00045{height:55.636698px;}
.h19_c00045{height:57.721840px;}
.he_c00045{height:57.733972px;}
.h14_c00045{height:58.771328px;}
.h12_c00045{height:58.777240px;}
.h7_c00045{height:58.781475px;}
.hb_c00045{height:59.831144px;}
.h17_c00045{height:60.870304px;}
.h6_c00045{height:60.880813px;}
.h15_c00045{height:61.919792px;}
.h5_c00045{height:61.930483px;}
.h9_c00045{height:62.980152px;}
.h8_c00045{height:64.029821px;}
.h11_c00045{height:65.079490px;}
.h18_c00045{height:66.117744px;}
.hf_c00045{height:66.124395px;}
.h4_c00045{height:66.129159px;}
.ha_c00045{height:67.178829px;}
.h13_c00045{height:68.216720px;}
.hc_c00045{height:68.228498px;}
.h2_c00045{height:69.266208px;}
.h3_c00045{height:69.278167px;}
.h1_c00045{height:78.750000px;}
.h0_c00045{height:600.750000px;}
.w1_c00045{width:358.500000px;}
.w0_c00045{width:358.800000px;}
.x0_c00045{left:0.000000px;}
.x75_c00045{left:33.867248px;}
.x69_c00045{left:35.589000px;}
.x60_c00045{left:36.746628px;}
.x47_c00045{left:38.174580px;}
.x3d_c00045{left:39.299066px;}
.x2a_c00045{left:40.314216px;}
.xa_c00045{left:41.751000px;}
.x2_c00045{left:43.743000px;}
.x6e_c00045{left:48.221731px;}
.x68_c00045{left:51.739731px;}
.x78_c00045{left:54.152780px;}
.x2b_c00045{left:57.314088px;}
.x71_c00045{left:59.796000px;}
.x38_c00045{left:60.811254px;}
.x55_c00045{left:63.080278px;}
.x1b_c00045{left:65.174331px;}
.x30_c00045{left:67.272842px;}
.x48_c00045{left:70.278777px;}
.x4e_c00045{left:74.489644px;}
.x3_c00045{left:76.311399px;}
.x1c_c00045{left:78.080412px;}
.x5d_c00045{left:82.305191px;}
.x39_c00045{left:84.890651px;}
.x49_c00045{left:89.619195px;}
.x4_c00045{left:91.660534px;}
.x15_c00045{left:93.495259px;}
.x72_c00045{left:95.652108px;}
.x22_c00045{left:97.929321px;}
.x1d_c00045{left:99.774918px;}
.x6f_c00045{left:103.793175px;}
.x5_c00045{left:107.313865px;}
.x61_c00045{left:108.633836px;}
.x35_c00045{left:110.156415px;}
.x2c_c00045{left:113.727563px;}
.x3e_c00045{left:115.633599px;}
.x27_c00045{left:118.293659px;}
.x52_c00045{left:119.432395px;}
.x10_c00045{left:122.079813px;}
.x79_c00045{left:125.639223px;}
.xb_c00045{left:126.657509px;}
.x6b_c00045{left:131.808984px;}
.x16_c00045{left:132.880279px;}
.x3f_c00045{left:134.812013px;}
.x4a_c00045{left:136.516029px;}
.x36_c00045{left:138.071028px;}
.x4f_c00045{left:139.828740px;}
.x59_c00045{left:142.880562px;}
.x73_c00045{left:145.507203px;}
.x31_c00045{left:147.421668px;}
.x7b_c00045{left:149.061843px;}
.x17_c00045{left:154.504412px;}
.x5e_c00045{left:155.820102px;}
.x11_c00045{left:157.210869px;}
.x62_c00045{left:159.581725px;}
.x3a_c00045{left:161.392073px;}
.x28_c00045{left:163.857993px;}
.x6_c00045{left:166.640979px;}
.x2d_c00045{left:169.764914px;}
.x1e_c00045{left:173.624273px;}
.x6a_c00045{left:176.088360px;}
.x23_c00045{left:177.388838px;}
.x44_c00045{left:179.658843px;}
.x63_c00045{left:180.945118px;}
.x1_c00045{left:182.250000px;}
.x37_c00045{left:184.459038px;}
.x7_c00045{left:186.382218px;}
.x7c_c00045{left:187.719697px;}
.xc_c00045{left:188.773331px;}
.x3b_c00045{left:189.803633px;}
.x5a_c00045{left:191.425968px;}
.x1f_c00045{left:193.661493px;}
.x4b_c00045{left:196.360902px;}
.x76_c00045{left:199.729982px;}
.x2e_c00045{left:201.695285px;}
.x50_c00045{left:203.101404px;}
.x74_c00045{left:204.479172px;}
.x6c_c00045{left:206.753464px;}
.xd_c00045{left:208.229855px;}
.x20_c00045{left:211.460010px;}
.x3c_c00045{left:213.324089px;}
.x7a_c00045{left:216.247524px;}
.x18_c00045{left:218.527214px;}
.x6d_c00045{left:223.485715px;}
.x77_c00045{left:226.864361px;}
.x64_c00045{left:228.157081px;}
.x29_c00045{left:233.869134px;}
.x56_c00045{left:236.201983px;}
.x42_c00045{left:239.689253px;}
.x24_c00045{left:241.648125px;}
.x8_c00045{left:244.422120px;}
.x65_c00045{left:246.785601px;}
.x32_c00045{left:252.427280px;}
.x12_c00045{left:253.833594px;}
.x4c_c00045{left:259.551815px;}
.x43_c00045{left:261.025062px;}
.x57_c00045{left:262.765893px;}
.xe_c00045{left:265.442584px;}
.x51_c00045{left:266.763678px;}
.x40_c00045{left:270.048696px;}
.x33_c00045{left:271.097202px;}
.x19_c00045{left:273.741500px;}
.x5b_c00045{left:275.178632px;}
.x45_c00045{left:278.661741px;}
.x66_c00045{left:281.522108px;}
.x70_c00045{left:282.961843px;}
.x58_c00045{left:285.196939px;}
.x67_c00045{left:292.409098px;}
.x53_c00045{left:294.027126px;}
.x25_c00045{left:295.635584px;}
.x13_c00045{left:300.751407px;}
.x21_c00045{left:302.289701px;}
.x46_c00045{left:303.520358px;}
.x26_c00045{left:306.427392px;}
.x1a_c00045{left:308.524460px;}
.x5f_c00045{left:310.510257px;}
.x2f_c00045{left:311.586783px;}
.x9_c00045{left:315.792678px;}
.x5c_c00045{left:316.955313px;}
.x54_c00045{left:319.318809px;}
.x14_c00045{left:322.528275px;}
.x4d_c00045{left:327.471827px;}
.x41_c00045{left:328.886355px;}
.xf_c00045{left:330.811650px;}
.x34_c00045{left:334.101468px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:0.000000pt;}
.fs15_c00045{font-size:48.509668pt;}
.fsc_c00045{font-size:49.451082pt;}
.fsf_c00045{font-size:49.454843pt;}
.fs18_c00045{font-size:51.308302pt;}
.fsd_c00045{font-size:51.319086pt;}
.fs13_c00045{font-size:52.241180pt;}
.fs11_c00045{font-size:52.246436pt;}
.fs6_c00045{font-size:52.250200pt;}
.fsa_c00045{font-size:53.183239pt;}
.fs16_c00045{font-size:54.106937pt;}
.fs5_c00045{font-size:54.116279pt;}
.fs14_c00045{font-size:55.039815pt;}
.fs4_c00045{font-size:55.049318pt;}
.fs8_c00045{font-size:55.982357pt;}
.fs7_c00045{font-size:56.915397pt;}
.fs10_c00045{font-size:57.848436pt;}
.fs17_c00045{font-size:58.771328pt;}
.fse_c00045{font-size:58.777240pt;}
.fs3_c00045{font-size:58.781475pt;}
.fs9_c00045{font-size:59.714514pt;}
.fs12_c00045{font-size:60.637084pt;}
.fsb_c00045{font-size:60.647554pt;}
.fs1_c00045{font-size:61.569963pt;}
.fs2_c00045{font-size:61.580593pt;}
.fs0_c00045{font-size:70.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.yee_c00045{bottom:16.434093pt;}
.yed_c00045{bottom:18.720600pt;}
.yec_c00045{bottom:20.028461pt;}
.yeb_c00045{bottom:21.073155pt;}
.yea_c00045{bottom:23.362349pt;}
.ye9_c00045{bottom:23.923928pt;}
.ye8_c00045{bottom:24.507821pt;}
.ye7_c00045{bottom:31.325643pt;}
.ye6_c00045{bottom:31.830611pt;}
.ye5_c00045{bottom:33.921365pt;}
.ye4_c00045{bottom:34.789963pt;}
.ye3_c00045{bottom:36.209133pt;}
.ye2_c00045{bottom:36.808341pt;}
.ye1_c00045{bottom:38.262996pt;}
.ye0_c00045{bottom:38.727531pt;}
.ydf_c00045{bottom:40.101907pt;}
.yde_c00045{bottom:46.399072pt;}
.ydd_c00045{bottom:47.101280pt;}
.ydc_c00045{bottom:48.442635pt;}
.ydb_c00045{bottom:49.652448pt;}
.yda_c00045{bottom:50.741216pt;}
.yd9_c00045{bottom:51.331552pt;}
.yd8_c00045{bottom:52.098912pt;}
.yd7_c00045{bottom:52.751072pt;}
.yd6_c00045{bottom:53.772000pt;}
.yd5_c00045{bottom:62.835471pt;}
.yd4_c00045{bottom:63.340935pt;}
.yd3_c00045{bottom:63.702940pt;}
.yd2_c00045{bottom:64.647588pt;}
.yd1_c00045{bottom:65.097439pt;}
.yd0_c00045{bottom:66.664077pt;}
.ycf_c00045{bottom:67.791456pt;}
.yce_c00045{bottom:68.255600pt;}
.ycd_c00045{bottom:68.600401pt;}
.ycc_c00045{bottom:70.345931pt;}
.ycb_c00045{bottom:77.613969pt;}
.yca_c00045{bottom:78.082688pt;}
.yc9_c00045{bottom:80.727509pt;}
.yc8_c00045{bottom:82.711403pt;}
.yc7_c00045{bottom:83.477144pt;}
.yc6_c00045{bottom:84.645011pt;}
.yc5_c00045{bottom:85.084929pt;}
.yc4_c00045{bottom:85.456515pt;}
.yc3_c00045{bottom:92.451211pt;}
.yc2_c00045{bottom:94.731019pt;}
.yc1_c00045{bottom:95.207435pt;}
.yc0_c00045{bottom:95.599157pt;}
.ybf_c00045{bottom:97.341323pt;}
.ybe_c00045{bottom:98.039861pt;}
.ybd_c00045{bottom:100.086667pt;}
.ybc_c00045{bottom:107.793213pt;}
.ybb_c00045{bottom:109.650827pt;}
.yba_c00045{bottom:111.744387pt;}
.yb9_c00045{bottom:112.273867pt;}
.yb8_c00045{bottom:113.509367pt;}
.yb7_c00045{bottom:115.659627pt;}
.yb6_c00045{bottom:116.649333pt;}
.yb5_c00045{bottom:123.623256pt;}
.yb4_c00045{bottom:124.860339pt;}
.yb3_c00045{bottom:125.364969pt;}
.yb2_c00045{bottom:126.133188pt;}
.yb1_c00045{bottom:127.646537pt;}
.yb0_c00045{bottom:128.752344pt;}
.yaf_c00045{bottom:129.275524pt;}
.yae_c00045{bottom:130.399584pt;}
.yad_c00045{bottom:130.817388pt;}
.yac_c00045{bottom:138.460897pt;}
.yab_c00045{bottom:138.809980pt;}
.yaa_c00045{bottom:139.922891pt;}
.ya9_c00045{bottom:140.520169pt;}
.ya8_c00045{bottom:142.033124pt;}
.ya7_c00045{bottom:142.717772pt;}
.ya6_c00045{bottom:144.349719pt;}
.ya5_c00045{bottom:146.652352pt;}
.ya4_c00045{bottom:153.261341pt;}
.ya3_c00045{bottom:154.735421pt;}
.ya2_c00045{bottom:155.108776pt;}
.ya1_c00045{bottom:157.542537pt;}
.ya0_c00045{bottom:158.354021pt;}
.y9f_c00045{bottom:159.940137pt;}
.y9e_c00045{bottom:160.774265pt;}
.y9d_c00045{bottom:161.161088pt;}
.y9c_c00045{bottom:162.248000pt;}
.y9b_c00045{bottom:168.153517pt;}
.y9a_c00045{bottom:169.603225pt;}
.y99_c00045{bottom:171.815617pt;}
.y98_c00045{bottom:172.509557pt;}
.y97_c00045{bottom:174.194149pt;}
.y96_c00045{bottom:176.058661pt;}
.y95_c00045{bottom:177.849333pt;}
.y94_c00045{bottom:185.520340pt;}
.y93_c00045{bottom:186.218893pt;}
.y92_c00045{bottom:187.046153pt;}
.y91_c00045{bottom:187.606387pt;}
.y90_c00045{bottom:190.127787pt;}
.y8f_c00045{bottom:192.437553pt;}
.y8e_c00045{bottom:193.206667pt;}
.y8d_c00045{bottom:198.819771pt;}
.y8c_c00045{bottom:199.674923pt;}
.y8b_c00045{bottom:201.449624pt;}
.y8a_c00045{bottom:203.380531pt;}
.y89_c00045{bottom:205.578248pt;}
.y88_c00045{bottom:206.209504pt;}
.y87_c00045{bottom:208.334667pt;}
.y86_c00045{bottom:215.688965pt;}
.y85_c00045{bottom:217.784843pt;}
.y84_c00045{bottom:218.535844pt;}
.y83_c00045{bottom:219.003179pt;}
.y82_c00045{bottom:219.867893pt;}
.y81_c00045{bottom:221.202261pt;}
.y80_c00045{bottom:222.018975pt;}
.y7f_c00045{bottom:223.214667pt;}
.y7e_c00045{bottom:229.079283pt;}
.y7d_c00045{bottom:230.816901pt;}
.y7c_c00045{bottom:231.536675pt;}
.y7b_c00045{bottom:233.463289pt;}
.y7a_c00045{bottom:234.362192pt;}
.y79_c00045{bottom:236.040019pt;}
.y78_c00045{bottom:236.629651pt;}
.y77_c00045{bottom:237.286968pt;}
.y76_c00045{bottom:238.574667pt;}
.y75_c00045{bottom:243.980756pt;}
.y74_c00045{bottom:244.380504pt;}
.y73_c00045{bottom:246.276828pt;}
.y72_c00045{bottom:246.874748pt;}
.y71_c00045{bottom:248.413208pt;}
.y70_c00045{bottom:250.436763pt;}
.y6f_c00045{bottom:252.022040pt;}
.y6e_c00045{bottom:252.676101pt;}
.y6d_c00045{bottom:253.761040pt;}
.y6c_c00045{bottom:259.944233pt;}
.y6b_c00045{bottom:260.762624pt;}
.y6a_c00045{bottom:261.352256pt;}
.y69_c00045{bottom:264.021979pt;}
.y68_c00045{bottom:264.624733pt;}
.y67_c00045{bottom:266.180312pt;}
.y66_c00045{bottom:266.849124pt;}
.y65_c00045{bottom:268.634448pt;}
.y64_c00045{bottom:275.242401pt;}
.y63_c00045{bottom:276.268781pt;}
.y62_c00045{bottom:276.895167pt;}
.y61_c00045{bottom:277.687065pt;}
.y60_c00045{bottom:280.464729pt;}
.y5f_c00045{bottom:281.168469pt;}
.y5e_c00045{bottom:282.788181pt;}
.y5d_c00045{bottom:289.381680pt;}
.y5c_c00045{bottom:291.161331pt;}
.y5b_c00045{bottom:292.002957pt;}
.y5a_c00045{bottom:293.035257pt;}
.y59_c00045{bottom:295.252100pt;}
.y58_c00045{bottom:295.832803pt;}
.y57_c00045{bottom:296.289235pt;}
.y56_c00045{bottom:298.143132pt;}
.y55_c00045{bottom:305.122121pt;}
.y54_c00045{bottom:308.037031pt;}
.y53_c00045{bottom:308.811367pt;}
.y52_c00045{bottom:309.746727pt;}
.y51_c00045{bottom:312.265292pt;}
.y50_c00045{bottom:313.058029pt;}
.y4f_c00045{bottom:313.741641pt;}
.y4e_c00045{bottom:321.225113pt;}
.y4d_c00045{bottom:322.036992pt;}
.y4c_c00045{bottom:322.676747pt;}
.y4b_c00045{bottom:324.846525pt;}
.y4a_c00045{bottom:326.291005pt;}
.y49_c00045{bottom:327.160653pt;}
.y48_c00045{bottom:329.330432pt;}
.y47_c00045{bottom:334.018579pt;}
.y46_c00045{bottom:336.204835pt;}
.y45_c00045{bottom:336.852828pt;}
.y44_c00045{bottom:339.924568pt;}
.y43_c00045{bottom:340.496539pt;}
.y42_c00045{bottom:341.379605pt;}
.y41_c00045{bottom:343.277903pt;}
.y40_c00045{bottom:344.213509pt;}
.y3f_c00045{bottom:350.396259pt;}
.y3e_c00045{bottom:350.775336pt;}
.y3d_c00045{bottom:353.024147pt;}
.y3c_c00045{bottom:354.110121pt;}
.y3b_c00045{bottom:354.779032pt;}
.y3a_c00045{bottom:355.189337pt;}
.y39_c00045{bottom:357.083540pt;}
.y38_c00045{bottom:357.750675pt;}
.y37_c00045{bottom:358.990125pt;}
.y36_c00045{bottom:359.564464pt;}
.y35_c00045{bottom:365.238735pt;}
.y34_c00045{bottom:367.167125pt;}
.y33_c00045{bottom:367.877723pt;}
.y32_c00045{bottom:370.369352pt;}
.y31_c00045{bottom:371.990791pt;}
.y30_c00045{bottom:372.945736pt;}
.y2f_c00045{bottom:374.673488pt;}
.y2e_c00045{bottom:379.608548pt;}
.y2d_c00045{bottom:380.131728pt;}
.y2c_c00045{bottom:380.496351pt;}
.y2b_c00045{bottom:382.321733pt;}
.y2a_c00045{bottom:384.494620pt;}
.y29_c00045{bottom:387.181264pt;}
.y28_c00045{bottom:389.073789pt;}
.y27_c00045{bottom:395.372373pt;}
.y26_c00045{bottom:396.069799pt;}
.y25_c00045{bottom:398.045944pt;}
.y24_c00045{bottom:399.141440pt;}
.y23_c00045{bottom:399.743405pt;}
.y22_c00045{bottom:400.420407pt;}
.y21_c00045{bottom:402.917019pt;}
.y20_c00045{bottom:403.649915pt;}
.y1f_c00045{bottom:404.086811pt;}
.y1e_c00045{bottom:404.908753pt;}
.y1d_c00045{bottom:410.978135pt;}
.y1c_c00045{bottom:412.092575pt;}
.y1b_c00045{bottom:413.860977pt;}
.y1a_c00045{bottom:415.911369pt;}
.y19_c00045{bottom:416.604601pt;}
.y18_c00045{bottom:417.866548pt;}
.y17_c00045{bottom:419.544079pt;}
.y16_c00045{bottom:425.182533pt;}
.y15_c00045{bottom:425.919475pt;}
.y14_c00045{bottom:427.505443pt;}
.y13_c00045{bottom:430.771803pt;}
.y12_c00045{bottom:431.959059pt;}
.y11_c00045{bottom:434.658283pt;}
.y10_c00045{bottom:440.495600pt;}
.yf_c00045{bottom:442.647668pt;}
.ye_c00045{bottom:444.531215pt;}
.yd_c00045{bottom:445.171759pt;}
.yc_c00045{bottom:447.216724pt;}
.yb_c00045{bottom:447.837880pt;}
.ya_c00045{bottom:450.012000pt;}
.yff_c00045{bottom:456.102060pt;}
.yfe_c00045{bottom:457.263243pt;}
.yfd_c00045{bottom:458.798859pt;}
.yfc_c00045{bottom:460.259240pt;}
.yfb_c00045{bottom:460.851612pt;}
.yfa_c00045{bottom:461.497279pt;}
.yf9_c00045{bottom:464.248131pt;}
.yf8_c00045{bottom:464.900368pt;}
.yf7_c00045{bottom:471.416480pt;}
.yf6_c00045{bottom:472.660512pt;}
.yf5_c00045{bottom:473.240693pt;}
.yf4_c00045{bottom:474.623349pt;}
.yf3_c00045{bottom:475.066059pt;}
.yf2_c00045{bottom:475.577120pt;}
.yf1_c00045{bottom:477.203232pt;}
.yf0_c00045{bottom:477.694240pt;}
.yef_c00045{bottom:479.529333pt;}
.y9_c00045{bottom:486.421952pt;}
.y8_c00045{bottom:488.454080pt;}
.y7_c00045{bottom:490.106645pt;}
.y6_c00045{bottom:490.668736pt;}
.y5_c00045{bottom:492.357952pt;}
.y4_c00045{bottom:492.803648pt;}
.y3_c00045{bottom:493.240683pt;}
.y2_c00045{bottom:494.168000pt;}
.y1_c00045{bottom:502.438667pt;}
.h16_c00045{height:48.509668pt;}
.hd_c00045{height:49.451082pt;}
.h10_c00045{height:49.454843pt;}
.h19_c00045{height:51.308302pt;}
.he_c00045{height:51.319086pt;}
.h14_c00045{height:52.241180pt;}
.h12_c00045{height:52.246436pt;}
.h7_c00045{height:52.250200pt;}
.hb_c00045{height:53.183239pt;}
.h17_c00045{height:54.106937pt;}
.h6_c00045{height:54.116279pt;}
.h15_c00045{height:55.039815pt;}
.h5_c00045{height:55.049318pt;}
.h9_c00045{height:55.982357pt;}
.h8_c00045{height:56.915397pt;}
.h11_c00045{height:57.848436pt;}
.h18_c00045{height:58.771328pt;}
.hf_c00045{height:58.777240pt;}
.h4_c00045{height:58.781475pt;}
.ha_c00045{height:59.714514pt;}
.h13_c00045{height:60.637084pt;}
.hc_c00045{height:60.647554pt;}
.h2_c00045{height:61.569963pt;}
.h3_c00045{height:61.580593pt;}
.h1_c00045{height:70.000000pt;}
.h0_c00045{height:534.000000pt;}
.w1_c00045{width:318.666667pt;}
.w0_c00045{width:318.933333pt;}
.x0_c00045{left:0.000000pt;}
.x75_c00045{left:30.104220pt;}
.x69_c00045{left:31.634667pt;}
.x60_c00045{left:32.663669pt;}
.x47_c00045{left:33.932960pt;}
.x3d_c00045{left:34.932503pt;}
.x2a_c00045{left:35.834859pt;}
.xa_c00045{left:37.112000pt;}
.x2_c00045{left:38.882667pt;}
.x6e_c00045{left:42.863761pt;}
.x68_c00045{left:45.990872pt;}
.x78_c00045{left:48.135804pt;}
.x2b_c00045{left:50.945856pt;}
.x71_c00045{left:53.152000pt;}
.x38_c00045{left:54.054448pt;}
.x55_c00045{left:56.071359pt;}
.x1b_c00045{left:57.932739pt;}
.x30_c00045{left:59.798081pt;}
.x48_c00045{left:62.470024pt;}
.x4e_c00045{left:66.213017pt;}
.x3_c00045{left:67.832355pt;}
.x1c_c00045{left:69.404811pt;}
.x5d_c00045{left:73.160169pt;}
.x39_c00045{left:75.458356pt;}
.x49_c00045{left:79.661507pt;}
.x4_c00045{left:81.476031pt;}
.x15_c00045{left:83.106897pt;}
.x72_c00045{left:85.024096pt;}
.x22_c00045{left:87.048285pt;}
.x1d_c00045{left:88.688816pt;}
.x6f_c00045{left:92.260600pt;}
.x5_c00045{left:95.390103pt;}
.x61_c00045{left:96.563409pt;}
.x35_c00045{left:97.916813pt;}
.x2c_c00045{left:101.091167pt;}
.x3e_c00045{left:102.785421pt;}
.x27_c00045{left:105.149919pt;}
.x52_c00045{left:106.162129pt;}
.x10_c00045{left:108.515389pt;}
.x79_c00045{left:111.679309pt;}
.xb_c00045{left:112.584452pt;}
.x6b_c00045{left:117.163541pt;}
.x16_c00045{left:118.115804pt;}
.x3f_c00045{left:119.832900pt;}
.x4a_c00045{left:121.347581pt;}
.x36_c00045{left:122.729803pt;}
.x4f_c00045{left:124.292213pt;}
.x59_c00045{left:127.004944pt;}
.x73_c00045{left:129.339736pt;}
.x31_c00045{left:131.041483pt;}
.x7b_c00045{left:132.499416pt;}
.x17_c00045{left:137.337255pt;}
.x5e_c00045{left:138.506757pt;}
.x11_c00045{left:139.742995pt;}
.x62_c00045{left:141.850423pt;}
.x3a_c00045{left:143.459620pt;}
.x28_c00045{left:145.651549pt;}
.x6_c00045{left:148.125315pt;}
.x2d_c00045{left:150.902145pt;}
.x1e_c00045{left:154.332687pt;}
.x6a_c00045{left:156.522987pt;}
.x23_c00045{left:157.678967pt;}
.x44_c00045{left:159.696749pt;}
.x63_c00045{left:160.840105pt;}
.x1_c00045{left:162.000000pt;}
.x37_c00045{left:163.963589pt;}
.x7_c00045{left:165.673083pt;}
.x7c_c00045{left:166.861953pt;}
.xc_c00045{left:167.798516pt;}
.x3b_c00045{left:168.714340pt;}
.x5a_c00045{left:170.156416pt;}
.x1f_c00045{left:172.143549pt;}
.x4b_c00045{left:174.543024pt;}
.x76_c00045{left:177.537761pt;}
.x2e_c00045{left:179.284697pt;}
.x50_c00045{left:180.534581pt;}
.x74_c00045{left:181.759264pt;}
.x6c_c00045{left:183.780857pt;}
.xd_c00045{left:185.093204pt;}
.x20_c00045{left:187.964453pt;}
.x3c_c00045{left:189.621412pt;}
.x7a_c00045{left:192.220021pt;}
.x18_c00045{left:194.246412pt;}
.x6d_c00045{left:198.653969pt;}
.x77_c00045{left:201.657209pt;}
.x64_c00045{left:202.806295pt;}
.x29_c00045{left:207.883675pt;}
.x56_c00045{left:209.957319pt;}
.x42_c00045{left:213.057113pt;}
.x24_c00045{left:214.798333pt;}
.x8_c00045{left:217.264107pt;}
.x65_c00045{left:219.364979pt;}
.x32_c00045{left:224.379804pt;}
.x12_c00045{left:225.629861pt;}
.x4c_c00045{left:230.712724pt;}
.x43_c00045{left:232.022277pt;}
.x57_c00045{left:233.569683pt;}
.xe_c00045{left:235.948964pt;}
.x51_c00045{left:237.123269pt;}
.x40_c00045{left:240.043285pt;}
.x33_c00045{left:240.975291pt;}
.x19_c00045{left:243.325777pt;}
.x5b_c00045{left:244.603228pt;}
.x45_c00045{left:247.699325pt;}
.x66_c00045{left:250.241873pt;}
.x70_c00045{left:251.521639pt;}
.x58_c00045{left:253.508391pt;}
.x67_c00045{left:259.919199pt;}
.x53_c00045{left:261.357445pt;}
.x25_c00045{left:262.787185pt;}
.x13_c00045{left:267.334584pt;}
.x21_c00045{left:268.701956pt;}
.x46_c00045{left:269.795873pt;}
.x26_c00045{left:272.379904pt;}
.x1a_c00045{left:274.243964pt;}
.x5f_c00045{left:276.009117pt;}
.x2f_c00045{left:276.966029pt;}
.x9_c00045{left:280.704603pt;}
.x5c_c00045{left:281.738056pt;}
.x54_c00045{left:283.838941pt;}
.x14_c00045{left:286.691800pt;}
.x4d_c00045{left:291.086068pt;}
.x41_c00045{left:292.343427pt;}
.xf_c00045{left:294.054800pt;}
.x34_c00045{left:296.979083pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00046 {
    display:none;
  }
  .loading-indicator_c00046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00046" -> "#page-container .classname_c00046")
 */
.pf_c00046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00046 {overflow:visible;}
  }
}
.c_c00046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00046:after { /* webkit #35443 */
  content: '';
}
.t_c00046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00046 { /* info for Javascript */
  display:none;
}
.l_c00046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00046:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00046 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00046.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00046{transform:matrix(0.071233,0.002710,-0.009503,0.249819,0,0);-ms-transform:matrix(0.071233,0.002710,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.071233,0.002710,-0.009503,0.249819,0,0);}
.mea_c00046{transform:matrix(0.076080,0.002894,-0.009503,0.249819,0,0);-ms-transform:matrix(0.076080,0.002894,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.076080,0.002894,-0.009503,0.249819,0,0);}
.mec_c00046{transform:matrix(0.140289,0.005336,-0.009503,0.249819,0,0);-ms-transform:matrix(0.140289,0.005336,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.140289,0.005336,-0.009503,0.249819,0,0);}
.m2d_c00046{transform:matrix(0.141028,0.005364,-0.009503,0.249819,0,0);-ms-transform:matrix(0.141028,0.005364,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.141028,0.005364,-0.009503,0.249819,0,0);}
.m22_c00046{transform:matrix(0.142542,0.005422,-0.009503,0.249819,0,0);-ms-transform:matrix(0.142542,0.005422,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.142542,0.005422,-0.009503,0.249819,0,0);}
.m65_c00046{transform:matrix(0.143941,0.005475,-0.009503,0.249819,0,0);-ms-transform:matrix(0.143941,0.005475,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.143941,0.005475,-0.009503,0.249819,0,0);}
.m8_c00046{transform:matrix(0.145560,0.005537,-0.009503,0.249819,0,0);-ms-transform:matrix(0.145560,0.005537,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.145560,0.005537,-0.009503,0.249819,0,0);}
.m21_c00046{transform:matrix(0.148113,0.005634,-0.009503,0.249819,0,0);-ms-transform:matrix(0.148113,0.005634,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.148113,0.005634,-0.009503,0.249819,0,0);}
.mef_c00046{transform:matrix(0.151156,0.005750,-0.009503,0.249819,0,0);-ms-transform:matrix(0.151156,0.005750,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.151156,0.005750,-0.009503,0.249819,0,0);}
.mdd_c00046{transform:matrix(0.151236,0.005753,-0.009503,0.249819,0,0);-ms-transform:matrix(0.151236,0.005753,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.151236,0.005753,-0.009503,0.249819,0,0);}
.m6c_c00046{transform:matrix(0.152010,0.005782,-0.009503,0.249819,0,0);-ms-transform:matrix(0.152010,0.005782,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.152010,0.005782,-0.009503,0.249819,0,0);}
.m8e_c00046{transform:matrix(0.153004,0.005820,-0.009503,0.249819,0,0);-ms-transform:matrix(0.153004,0.005820,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.153004,0.005820,-0.009503,0.249819,0,0);}
.m4_c00046{transform:matrix(0.154179,0.005865,-0.009503,0.249819,0,0);-ms-transform:matrix(0.154179,0.005865,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.154179,0.005865,-0.009503,0.249819,0,0);}
.m44_c00046{transform:matrix(0.154658,0.005883,-0.009503,0.249819,0,0);-ms-transform:matrix(0.154658,0.005883,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.154658,0.005883,-0.009503,0.249819,0,0);}
.mda_c00046{transform:matrix(0.155423,0.005912,-0.009503,0.249819,0,0);-ms-transform:matrix(0.155423,0.005912,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.155423,0.005912,-0.009503,0.249819,0,0);}
.m2c_c00046{transform:matrix(0.155617,0.005919,-0.009503,0.249819,0,0);-ms-transform:matrix(0.155617,0.005919,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.155617,0.005919,-0.009503,0.249819,0,0);}
.mcd_c00046{transform:matrix(0.156582,0.005956,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156582,0.005956,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156582,0.005956,-0.009503,0.249819,0,0);}
.m25_c00046{transform:matrix(0.157281,0.005983,-0.009503,0.249819,0,0);-ms-transform:matrix(0.157281,0.005983,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.157281,0.005983,-0.009503,0.249819,0,0);}
.ma7_c00046{transform:matrix(0.158271,0.006020,-0.009503,0.249819,0,0);-ms-transform:matrix(0.158271,0.006020,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.158271,0.006020,-0.009503,0.249819,0,0);}
.md9_c00046{transform:matrix(0.158940,0.006046,-0.009503,0.249819,0,0);-ms-transform:matrix(0.158940,0.006046,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.158940,0.006046,-0.009503,0.249819,0,0);}
.m7d_c00046{transform:matrix(0.159050,0.006050,-0.009503,0.249819,0,0);-ms-transform:matrix(0.159050,0.006050,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.159050,0.006050,-0.009503,0.249819,0,0);}
.me8_c00046{transform:matrix(0.159440,0.006065,-0.009503,0.249819,0,0);-ms-transform:matrix(0.159440,0.006065,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.159440,0.006065,-0.009503,0.249819,0,0);}
.mc8_c00046{transform:matrix(0.161308,0.006136,-0.009503,0.249819,0,0);-ms-transform:matrix(0.161308,0.006136,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.161308,0.006136,-0.009503,0.249819,0,0);}
.mde_c00046{transform:matrix(0.161543,0.006145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.161543,0.006145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.161543,0.006145,-0.009503,0.249819,0,0);}
.mc7_c00046{transform:matrix(0.162178,0.006169,-0.009503,0.249819,0,0);-ms-transform:matrix(0.162178,0.006169,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.162178,0.006169,-0.009503,0.249819,0,0);}
.mb0_c00046{transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);-ms-transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);}
.mba_c00046{transform:matrix(0.162902,0.006196,-0.009503,0.249819,0,0);-ms-transform:matrix(0.162902,0.006196,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.162902,0.006196,-0.009503,0.249819,0,0);}
.m20_c00046{transform:matrix(0.164131,0.006243,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164131,0.006243,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164131,0.006243,-0.009503,0.249819,0,0);}
.mb8_c00046{transform:matrix(0.164191,0.006246,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164191,0.006246,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164191,0.006246,-0.009503,0.249819,0,0);}
.m24_c00046{transform:matrix(0.164486,0.006257,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164486,0.006257,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164486,0.006257,-0.009503,0.249819,0,0);}
.m5f_c00046{transform:matrix(0.164791,0.006268,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164791,0.006268,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164791,0.006268,-0.009503,0.249819,0,0);}
.mf_c00046{transform:matrix(0.165071,0.006279,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165071,0.006279,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165071,0.006279,-0.009503,0.249819,0,0);}
.m89_c00046{transform:matrix(0.165305,0.006288,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165305,0.006288,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165305,0.006288,-0.009503,0.249819,0,0);}
.m23_c00046{transform:matrix(0.167674,0.006378,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167674,0.006378,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167674,0.006378,-0.009503,0.249819,0,0);}
.ma9_c00046{transform:matrix(0.167884,0.006386,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167884,0.006386,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167884,0.006386,-0.009503,0.249819,0,0);}
.m83_c00046{transform:matrix(0.168088,0.006394,-0.009503,0.249819,0,0);-ms-transform:matrix(0.168088,0.006394,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.168088,0.006394,-0.009503,0.249819,0,0);}
.mc6_c00046{transform:matrix(0.168093,0.006394,-0.009503,0.249819,0,0);-ms-transform:matrix(0.168093,0.006394,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.168093,0.006394,-0.009503,0.249819,0,0);}
.m96_c00046{transform:matrix(0.168928,0.006426,-0.009503,0.249819,0,0);-ms-transform:matrix(0.168928,0.006426,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.168928,0.006426,-0.009503,0.249819,0,0);}
.md2_c00046{transform:matrix(0.169597,0.006451,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169597,0.006451,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169597,0.006451,-0.009503,0.249819,0,0);}
.m5_c00046{transform:matrix(0.169667,0.006454,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169667,0.006454,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169667,0.006454,-0.009503,0.249819,0,0);}
.mb1_c00046{transform:matrix(0.169822,0.006460,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169822,0.006460,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169822,0.006460,-0.009503,0.249819,0,0);}
.mb2_c00046{transform:matrix(0.170517,0.006486,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170517,0.006486,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170517,0.006486,-0.009503,0.249819,0,0);}
.mbe_c00046{transform:matrix(0.170562,0.006488,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170562,0.006488,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170562,0.006488,-0.009503,0.249819,0,0);}
.mf0_c00046{transform:matrix(0.170602,0.006489,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170602,0.006489,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170602,0.006489,-0.009503,0.249819,0,0);}
.m5e_c00046{transform:matrix(0.170926,0.006502,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170926,0.006502,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170926,0.006502,-0.009503,0.249819,0,0);}
.m4c_c00046{transform:matrix(0.170961,0.006503,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170961,0.006503,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170961,0.006503,-0.009503,0.249819,0,0);}
.m37_c00046{transform:matrix(0.171631,0.006529,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171631,0.006529,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171631,0.006529,-0.009503,0.249819,0,0);}
.mae_c00046{transform:matrix(0.171821,0.006536,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171821,0.006536,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171821,0.006536,-0.009503,0.249819,0,0);}
.md_c00046{transform:matrix(0.172475,0.006561,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172475,0.006561,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172475,0.006561,-0.009503,0.249819,0,0);}
.m41_c00046{transform:matrix(0.172865,0.006575,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172865,0.006575,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172865,0.006575,-0.009503,0.249819,0,0);}
.m27_c00046{transform:matrix(0.173594,0.006603,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173594,0.006603,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173594,0.006603,-0.009503,0.249819,0,0);}
.m2a_c00046{transform:matrix(0.174104,0.006623,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174104,0.006623,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174104,0.006623,-0.009503,0.249819,0,0);}
.mce_c00046{transform:matrix(0.174504,0.006638,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174504,0.006638,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174504,0.006638,-0.009503,0.249819,0,0);}
.ma6_c00046{transform:matrix(0.174958,0.006655,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174958,0.006655,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174958,0.006655,-0.009503,0.249819,0,0);}
.m5d_c00046{transform:matrix(0.175643,0.006681,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175643,0.006681,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175643,0.006681,-0.009503,0.249819,0,0);}
.mac_c00046{transform:matrix(0.177162,0.006739,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177162,0.006739,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177162,0.006739,-0.009503,0.249819,0,0);}
.m86_c00046{transform:matrix(0.177217,0.006741,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177217,0.006741,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177217,0.006741,-0.009503,0.249819,0,0);}
.m2_c00046{transform:matrix(0.177367,0.006747,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177367,0.006747,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177367,0.006747,-0.009503,0.249819,0,0);}
.mb6_c00046{transform:matrix(0.177517,0.006752,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177517,0.006752,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177517,0.006752,-0.009503,0.249819,0,0);}
.md1_c00046{transform:matrix(0.178036,0.006772,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178036,0.006772,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178036,0.006772,-0.009503,0.249819,0,0);}
.med_c00046{transform:matrix(0.178141,0.006776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178141,0.006776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178141,0.006776,-0.009503,0.249819,0,0);}
.m1_c00046{transform:matrix(0.178216,0.006779,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178216,0.006779,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178216,0.006779,-0.009503,0.249819,0,0);}
.m99_c00046{transform:matrix(0.178371,0.006785,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178371,0.006785,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178371,0.006785,-0.009503,0.249819,0,0);}
.mc9_c00046{transform:matrix(0.179185,0.006816,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179185,0.006816,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179185,0.006816,-0.009503,0.249819,0,0);}
.m91_c00046{transform:matrix(0.179195,0.006816,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179195,0.006816,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179195,0.006816,-0.009503,0.249819,0,0);}
.m9e_c00046{transform:matrix(0.179235,0.006818,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179235,0.006818,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179235,0.006818,-0.009503,0.249819,0,0);}
.mca_c00046{transform:matrix(0.179250,0.006818,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179250,0.006818,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179250,0.006818,-0.009503,0.249819,0,0);}
.mbd_c00046{transform:matrix(0.179700,0.006835,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179700,0.006835,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179700,0.006835,-0.009503,0.249819,0,0);}
.m78_c00046{transform:matrix(0.179890,0.006843,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179890,0.006843,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179890,0.006843,-0.009503,0.249819,0,0);}
.m6_c00046{transform:matrix(0.180010,0.006847,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180010,0.006847,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180010,0.006847,-0.009503,0.249819,0,0);}
.m85_c00046{transform:matrix(0.180035,0.006848,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180035,0.006848,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180035,0.006848,-0.009503,0.249819,0,0);}
.m4e_c00046{transform:matrix(0.180050,0.006849,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180050,0.006849,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180050,0.006849,-0.009503,0.249819,0,0);}
.mad_c00046{transform:matrix(0.180694,0.006873,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180694,0.006873,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180694,0.006873,-0.009503,0.249819,0,0);}
.m11_c00046{transform:matrix(0.180714,0.006874,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180714,0.006874,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180714,0.006874,-0.009503,0.249819,0,0);}
.md0_c00046{transform:matrix(0.181089,0.006888,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181089,0.006888,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181089,0.006888,-0.009503,0.249819,0,0);}
.mdf_c00046{transform:matrix(0.181234,0.006894,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181234,0.006894,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181234,0.006894,-0.009503,0.249819,0,0);}
.m1c_c00046{transform:matrix(0.181454,0.006902,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181454,0.006902,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181454,0.006902,-0.009503,0.249819,0,0);}
.m4d_c00046{transform:matrix(0.181704,0.006912,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181704,0.006912,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181704,0.006912,-0.009503,0.249819,0,0);}
.m51_c00046{transform:matrix(0.181804,0.006915,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181804,0.006915,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181804,0.006915,-0.009503,0.249819,0,0);}
.m82_c00046{transform:matrix(0.182208,0.006931,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182208,0.006931,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182208,0.006931,-0.009503,0.249819,0,0);}
.me0_c00046{transform:matrix(0.182773,0.006952,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182773,0.006952,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182773,0.006952,-0.009503,0.249819,0,0);}
.mdb_c00046{transform:matrix(0.182778,0.006953,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182778,0.006953,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182778,0.006953,-0.009503,0.249819,0,0);}
.m19_c00046{transform:matrix(0.182913,0.006958,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182913,0.006958,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182913,0.006958,-0.009503,0.249819,0,0);}
.md7_c00046{transform:matrix(0.183013,0.006961,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183013,0.006961,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183013,0.006961,-0.009503,0.249819,0,0);}
.mee_c00046{transform:matrix(0.183028,0.006962,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183028,0.006962,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183028,0.006962,-0.009503,0.249819,0,0);}
.mdc_c00046{transform:matrix(0.183357,0.006975,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183357,0.006975,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183357,0.006975,-0.009503,0.249819,0,0);}
.m26_c00046{transform:matrix(0.183387,0.006976,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183387,0.006976,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183387,0.006976,-0.009503,0.249819,0,0);}
.maa_c00046{transform:matrix(0.183427,0.006977,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183427,0.006977,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183427,0.006977,-0.009503,0.249819,0,0);}
.mb3_c00046{transform:matrix(0.183462,0.006979,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183462,0.006979,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183462,0.006979,-0.009503,0.249819,0,0);}
.m18_c00046{transform:matrix(0.184292,0.007010,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184292,0.007010,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184292,0.007010,-0.009503,0.249819,0,0);}
.m74_c00046{transform:matrix(0.184367,0.007013,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184367,0.007013,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184367,0.007013,-0.009503,0.249819,0,0);}
.ma8_c00046{transform:matrix(0.184881,0.007033,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184881,0.007033,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184881,0.007033,-0.009503,0.249819,0,0);}
.m9_c00046{transform:matrix(0.185571,0.007059,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185571,0.007059,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185571,0.007059,-0.009503,0.249819,0,0);}
.m50_c00046{transform:matrix(0.186195,0.007083,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186195,0.007083,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186195,0.007083,-0.009503,0.249819,0,0);}
.m1a_c00046{transform:matrix(0.186255,0.007085,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186255,0.007085,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186255,0.007085,-0.009503,0.249819,0,0);}
.m2f_c00046{transform:matrix(0.187025,0.007114,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187025,0.007114,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187025,0.007114,-0.009503,0.249819,0,0);}
.mc0_c00046{transform:matrix(0.187095,0.007117,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187095,0.007117,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187095,0.007117,-0.009503,0.249819,0,0);}
.m40_c00046{transform:matrix(0.187175,0.007120,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187175,0.007120,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187175,0.007120,-0.009503,0.249819,0,0);}
.m2e_c00046{transform:matrix(0.187939,0.007149,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187939,0.007149,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187939,0.007149,-0.009503,0.249819,0,0);}
.m69_c00046{transform:matrix(0.188299,0.007163,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188299,0.007163,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188299,0.007163,-0.009503,0.249819,0,0);}
.m45_c00046{transform:matrix(0.188334,0.007164,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188334,0.007164,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188334,0.007164,-0.009503,0.249819,0,0);}
.ma4_c00046{transform:matrix(0.188389,0.007166,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188389,0.007166,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188389,0.007166,-0.009503,0.249819,0,0);}
.mcb_c00046{transform:matrix(0.188599,0.007174,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188599,0.007174,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188599,0.007174,-0.009503,0.249819,0,0);}
.ma_c00046{transform:matrix(0.188744,0.007179,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188744,0.007179,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188744,0.007179,-0.009503,0.249819,0,0);}
.m9b_c00046{transform:matrix(0.188793,0.007181,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188793,0.007181,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188793,0.007181,-0.009503,0.249819,0,0);}
.me7_c00046{transform:matrix(0.188808,0.007182,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188808,0.007182,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188808,0.007182,-0.009503,0.249819,0,0);}
.mc_c00046{transform:matrix(0.189013,0.007190,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189013,0.007190,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189013,0.007190,-0.009503,0.249819,0,0);}
.m5c_c00046{transform:matrix(0.189378,0.007204,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189378,0.007204,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189378,0.007204,-0.009503,0.249819,0,0);}
.m38_c00046{transform:matrix(0.189443,0.007206,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189443,0.007206,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189443,0.007206,-0.009503,0.249819,0,0);}
.ma5_c00046{transform:matrix(0.189663,0.007214,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189663,0.007214,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189663,0.007214,-0.009503,0.249819,0,0);}
.me6_c00046{transform:matrix(0.189668,0.007215,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189668,0.007215,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189668,0.007215,-0.009503,0.249819,0,0);}
.meb_c00046{transform:matrix(0.190048,0.007229,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190048,0.007229,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190048,0.007229,-0.009503,0.249819,0,0);}
.m84_c00046{transform:matrix(0.190157,0.007233,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190157,0.007233,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190157,0.007233,-0.009503,0.249819,0,0);}
.mf2_c00046{transform:matrix(0.190282,0.008571,-0.011250,0.249747,0,0);-ms-transform:matrix(0.190282,0.008571,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.190282,0.008571,-0.011250,0.249747,0,0);}
.ma2_c00046{transform:matrix(0.190292,0.007238,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190292,0.007238,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190292,0.007238,-0.009503,0.249819,0,0);}
.m62_c00046{transform:matrix(0.190432,0.007244,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190432,0.007244,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190432,0.007244,-0.009503,0.249819,0,0);}
.m6f_c00046{transform:matrix(0.190682,0.007253,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190682,0.007253,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190682,0.007253,-0.009503,0.249819,0,0);}
.m8d_c00046{transform:matrix(0.190752,0.007256,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190752,0.007256,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190752,0.007256,-0.009503,0.249819,0,0);}
.mab_c00046{transform:matrix(0.190942,0.007263,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190942,0.007263,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190942,0.007263,-0.009503,0.249819,0,0);}
.m43_c00046{transform:matrix(0.191002,0.007265,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191002,0.007265,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191002,0.007265,-0.009503,0.249819,0,0);}
.md4_c00046{transform:matrix(0.191826,0.007297,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191826,0.007297,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191826,0.007297,-0.009503,0.249819,0,0);}
.md8_c00046{transform:matrix(0.192261,0.007313,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192261,0.007313,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192261,0.007313,-0.009503,0.249819,0,0);}
.m3c_c00046{transform:matrix(0.192621,0.007327,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192621,0.007327,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192621,0.007327,-0.009503,0.249819,0,0);}
.m67_c00046{transform:matrix(0.192651,0.007328,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192651,0.007328,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192651,0.007328,-0.009503,0.249819,0,0);}
.md3_c00046{transform:matrix(0.192970,0.007340,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192970,0.007340,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192970,0.007340,-0.009503,0.249819,0,0);}
.mf5_c00046{transform:matrix(0.193014,0.008694,-0.011250,0.249747,0,0);-ms-transform:matrix(0.193014,0.008694,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.193014,0.008694,-0.011250,0.249747,0,0);}
.m8c_c00046{transform:matrix(0.193385,0.007356,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193385,0.007356,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193385,0.007356,-0.009503,0.249819,0,0);}
.mb7_c00046{transform:matrix(0.193800,0.007372,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193800,0.007372,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193800,0.007372,-0.009503,0.249819,0,0);}
.m28_c00046{transform:matrix(0.194205,0.007387,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194205,0.007387,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194205,0.007387,-0.009503,0.249819,0,0);}
.m73_c00046{transform:matrix(0.194434,0.007396,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194434,0.007396,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194434,0.007396,-0.009503,0.249819,0,0);}
.m47_c00046{transform:matrix(0.194589,0.007402,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194589,0.007402,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194589,0.007402,-0.009503,0.249819,0,0);}
.mb4_c00046{transform:matrix(0.194674,0.007405,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194674,0.007405,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194674,0.007405,-0.009503,0.249819,0,0);}
.m4b_c00046{transform:matrix(0.195639,0.007442,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195639,0.007442,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195639,0.007442,-0.009503,0.249819,0,0);}
.ma1_c00046{transform:matrix(0.196038,0.007457,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196038,0.007457,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196038,0.007457,-0.009503,0.249819,0,0);}
.m4f_c00046{transform:matrix(0.196088,0.007459,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196088,0.007459,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196088,0.007459,-0.009503,0.249819,0,0);}
.m33_c00046{transform:matrix(0.197697,0.007520,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197697,0.007520,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197697,0.007520,-0.009503,0.249819,0,0);}
.m12_c00046{transform:matrix(0.197867,0.007526,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197867,0.007526,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197867,0.007526,-0.009503,0.249819,0,0);}
.m1b_c00046{transform:matrix(0.198242,0.007541,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198242,0.007541,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198242,0.007541,-0.009503,0.249819,0,0);}
.m1f_c00046{transform:matrix(0.198961,0.007568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198961,0.007568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198961,0.007568,-0.009503,0.249819,0,0);}
.me3_c00046{transform:matrix(0.199116,0.007574,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199116,0.007574,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199116,0.007574,-0.009503,0.249819,0,0);}
.me5_c00046{transform:matrix(0.199291,0.007581,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199291,0.007581,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199291,0.007581,-0.009503,0.249819,0,0);}
.me4_c00046{transform:matrix(0.199431,0.007586,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199431,0.007586,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199431,0.007586,-0.009503,0.249819,0,0);}
.m75_c00046{transform:matrix(0.199641,0.007594,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199641,0.007594,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199641,0.007594,-0.009503,0.249819,0,0);}
.m87_c00046{transform:matrix(0.200180,0.007614,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200180,0.007614,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200180,0.007614,-0.009503,0.249819,0,0);}
.m31_c00046{transform:matrix(0.200380,0.007622,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200380,0.007622,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200380,0.007622,-0.009503,0.249819,0,0);}
.me_c00046{transform:matrix(0.200620,0.007631,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200620,0.007631,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200620,0.007631,-0.009503,0.249819,0,0);}
.m7b_c00046{transform:matrix(0.201025,0.007647,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201025,0.007647,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201025,0.007647,-0.009503,0.249819,0,0);}
.m7_c00046{transform:matrix(0.201180,0.007652,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201180,0.007652,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201180,0.007652,-0.009503,0.249819,0,0);}
.m54_c00046{transform:matrix(0.201289,0.007657,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201289,0.007657,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201289,0.007657,-0.009503,0.249819,0,0);}
.m13_c00046{transform:matrix(0.201369,0.007660,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201369,0.007660,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201369,0.007660,-0.009503,0.249819,0,0);}
.m29_c00046{transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);}
.mc5_c00046{transform:matrix(0.201859,0.007678,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201859,0.007678,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201859,0.007678,-0.009503,0.249819,0,0);}
.m2b_c00046{transform:matrix(0.202504,0.007703,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202504,0.007703,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202504,0.007703,-0.009503,0.249819,0,0);}
.mb_c00046{transform:matrix(0.202549,0.007705,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202549,0.007705,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202549,0.007705,-0.009503,0.249819,0,0);}
.m0_c00046{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{transform:matrix(0.204327,0.007772,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204327,0.007772,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204327,0.007772,-0.009503,0.249819,0,0);}
.m8f_c00046{transform:matrix(0.204742,0.007788,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204742,0.007788,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204742,0.007788,-0.009503,0.249819,0,0);}
.m7a_c00046{transform:matrix(0.205022,0.007799,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205022,0.007799,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205022,0.007799,-0.009503,0.249819,0,0);}
.m4a_c00046{transform:matrix(0.205077,0.007801,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205077,0.007801,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205077,0.007801,-0.009503,0.249819,0,0);}
.m32_c00046{transform:matrix(0.205576,0.007820,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205576,0.007820,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205576,0.007820,-0.009503,0.249819,0,0);}
.m56_c00046{transform:matrix(0.206051,0.007838,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206051,0.007838,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206051,0.007838,-0.009503,0.249819,0,0);}
.mb5_c00046{transform:matrix(0.207225,0.007882,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207225,0.007882,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207225,0.007882,-0.009503,0.249819,0,0);}
.mc1_c00046{transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);}
.m9f_c00046{transform:matrix(0.208035,0.007913,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208035,0.007913,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208035,0.007913,-0.009503,0.249819,0,0);}
.m49_c00046{transform:matrix(0.208184,0.007919,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208184,0.007919,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208184,0.007919,-0.009503,0.249819,0,0);}
.ma0_c00046{transform:matrix(0.208374,0.007926,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208374,0.007926,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208374,0.007926,-0.009503,0.249819,0,0);}
.mb9_c00046{transform:matrix(0.208859,0.007945,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208859,0.007945,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208859,0.007945,-0.009503,0.249819,0,0);}
.me2_c00046{transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);}
.mf4_c00046{transform:matrix(0.209163,0.009422,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209163,0.009422,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209163,0.009422,-0.011250,0.249747,0,0);}
.m64_c00046{transform:matrix(0.209419,0.007966,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209419,0.007966,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209419,0.007966,-0.009503,0.249819,0,0);}
.mc4_c00046{transform:matrix(0.209718,0.007977,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209718,0.007977,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209718,0.007977,-0.009503,0.249819,0,0);}
.m30_c00046{transform:matrix(0.209963,0.007987,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209963,0.007987,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209963,0.007987,-0.009503,0.249819,0,0);}
.m90_c00046{transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);}
.mbc_c00046{transform:matrix(0.210703,0.008015,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210703,0.008015,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210703,0.008015,-0.009503,0.249819,0,0);}
.m59_c00046{transform:matrix(0.210718,0.008015,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210718,0.008015,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210718,0.008015,-0.009503,0.249819,0,0);}
.mf3_c00046{transform:matrix(0.210836,0.009497,-0.011250,0.249747,0,0);-ms-transform:matrix(0.210836,0.009497,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.210836,0.009497,-0.011250,0.249747,0,0);}
.m6d_c00046{transform:matrix(0.211432,0.008042,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211432,0.008042,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211432,0.008042,-0.009503,0.249819,0,0);}
.me9_c00046{transform:matrix(0.211587,0.008048,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211587,0.008048,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211587,0.008048,-0.009503,0.249819,0,0);}
.m7c_c00046{transform:matrix(0.212147,0.008070,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212147,0.008070,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212147,0.008070,-0.009503,0.249819,0,0);}
.ma3_c00046{transform:matrix(0.212486,0.008083,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212486,0.008083,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212486,0.008083,-0.009503,0.249819,0,0);}
.m66_c00046{transform:matrix(0.212881,0.008098,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212881,0.008098,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212881,0.008098,-0.009503,0.249819,0,0);}
.m35_c00046{transform:matrix(0.213336,0.008115,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213336,0.008115,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213336,0.008115,-0.009503,0.249819,0,0);}
.m42_c00046{transform:matrix(0.213690,0.008128,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213690,0.008128,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213690,0.008128,-0.009503,0.249819,0,0);}
.m14_c00046{transform:matrix(0.214120,0.008145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214120,0.008145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214120,0.008145,-0.009503,0.249819,0,0);}
.m10_c00046{transform:matrix(0.214465,0.008158,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214465,0.008158,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214465,0.008158,-0.009503,0.249819,0,0);}
.m95_c00046{transform:matrix(0.214470,0.008158,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214470,0.008158,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214470,0.008158,-0.009503,0.249819,0,0);}
.m7e_c00046{transform:matrix(0.214910,0.008175,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214910,0.008175,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214910,0.008175,-0.009503,0.249819,0,0);}
.m63_c00046{transform:matrix(0.215000,0.008178,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215000,0.008178,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215000,0.008178,-0.009503,0.249819,0,0);}
.m94_c00046{transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);}
.m55_c00046{transform:matrix(0.215794,0.008208,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215794,0.008208,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215794,0.008208,-0.009503,0.249819,0,0);}
.m9c_c00046{transform:matrix(0.215919,0.008213,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215919,0.008213,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215919,0.008213,-0.009503,0.249819,0,0);}
.m52_c00046{transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);}
.m17_c00046{transform:matrix(0.216753,0.008245,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216753,0.008245,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216753,0.008245,-0.009503,0.249819,0,0);}
.m88_c00046{transform:matrix(0.218127,0.008297,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218127,0.008297,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218127,0.008297,-0.009503,0.249819,0,0);}
.m80_c00046{transform:matrix(0.218167,0.008299,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218167,0.008299,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218167,0.008299,-0.009503,0.249819,0,0);}
.maf_c00046{transform:matrix(0.218552,0.008313,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218552,0.008313,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218552,0.008313,-0.009503,0.249819,0,0);}
.m72_c00046{transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);}
.m3b_c00046{transform:matrix(0.219167,0.008337,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219167,0.008337,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219167,0.008337,-0.009503,0.249819,0,0);}
.mbb_c00046{transform:matrix(0.220001,0.008368,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220001,0.008368,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220001,0.008368,-0.009503,0.249819,0,0);}
.mc2_c00046{transform:matrix(0.220156,0.008374,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220156,0.008374,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220156,0.008374,-0.009503,0.249819,0,0);}
.m36_c00046{transform:matrix(0.220401,0.008384,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220401,0.008384,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220401,0.008384,-0.009503,0.249819,0,0);}
.m6b_c00046{transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);}
.md6_c00046{transform:matrix(0.221130,0.008411,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221130,0.008411,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221130,0.008411,-0.009503,0.249819,0,0);}
.mcc_c00046{transform:matrix(0.222379,0.008459,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222379,0.008459,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222379,0.008459,-0.009503,0.249819,0,0);}
.m79_c00046{transform:matrix(0.222514,0.008464,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222514,0.008464,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222514,0.008464,-0.009503,0.249819,0,0);}
.md5_c00046{transform:matrix(0.223628,0.008506,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223628,0.008506,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223628,0.008506,-0.009503,0.249819,0,0);}
.mbf_c00046{transform:matrix(0.223718,0.008510,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223718,0.008510,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223718,0.008510,-0.009503,0.249819,0,0);}
.m77_c00046{transform:matrix(0.223758,0.008511,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223758,0.008511,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223758,0.008511,-0.009503,0.249819,0,0);}
.m48_c00046{transform:matrix(0.225257,0.008568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225257,0.008568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225257,0.008568,-0.009503,0.249819,0,0);}
.m76_c00046{transform:matrix(0.225957,0.008595,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225957,0.008595,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225957,0.008595,-0.009503,0.249819,0,0);}
.mcf_c00046{transform:matrix(0.226136,0.008602,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226136,0.008602,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226136,0.008602,-0.009503,0.249819,0,0);}
.m3e_c00046{transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);}
.mf1_c00046{transform:matrix(0.228119,0.010276,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228119,0.010276,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228119,0.010276,-0.011250,0.249747,0,0);}
.m5a_c00046{transform:matrix(0.228230,0.008681,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228230,0.008681,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228230,0.008681,-0.009503,0.249819,0,0);}
.m5b_c00046{transform:matrix(0.228420,0.008689,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228420,0.008689,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228420,0.008689,-0.009503,0.249819,0,0);}
.m3f_c00046{transform:matrix(0.228425,0.008689,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228425,0.008689,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228425,0.008689,-0.009503,0.249819,0,0);}
.me1_c00046{transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);}
.mc3_c00046{transform:matrix(0.231138,0.008792,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231138,0.008792,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231138,0.008792,-0.009503,0.249819,0,0);}
.m3d_c00046{transform:matrix(0.231233,0.008796,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231233,0.008796,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231233,0.008796,-0.009503,0.249819,0,0);}
.m81_c00046{transform:matrix(0.231343,0.008800,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231343,0.008800,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231343,0.008800,-0.009503,0.249819,0,0);}
.m8b_c00046{transform:matrix(0.232172,0.008831,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232172,0.008831,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232172,0.008831,-0.009503,0.249819,0,0);}
.m53_c00046{transform:matrix(0.232292,0.008836,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232292,0.008836,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232292,0.008836,-0.009503,0.249819,0,0);}
.m16_c00046{transform:matrix(0.232662,0.008850,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232662,0.008850,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232662,0.008850,-0.009503,0.249819,0,0);}
.m70_c00046{transform:matrix(0.233756,0.008892,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233756,0.008892,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233756,0.008892,-0.009503,0.249819,0,0);}
.m9d_c00046{transform:matrix(0.237104,0.009019,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237104,0.009019,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237104,0.009019,-0.009503,0.249819,0,0);}
.m7f_c00046{transform:matrix(0.239567,0.009113,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239567,0.009113,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239567,0.009113,-0.009503,0.249819,0,0);}
.m8a_c00046{transform:matrix(0.243314,0.009255,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243314,0.009255,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243314,0.009255,-0.009503,0.249819,0,0);}
.m15_c00046{transform:matrix(0.244393,0.009296,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244393,0.009296,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244393,0.009296,-0.009503,0.249819,0,0);}
.m9a_c00046{transform:matrix(0.245992,0.009357,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245992,0.009357,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245992,0.009357,-0.009503,0.249819,0,0);}
.m6a_c00046{transform:matrix(0.247021,0.009396,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247021,0.009396,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247021,0.009396,-0.009503,0.249819,0,0);}
.m93_c00046{transform:matrix(0.258998,0.009852,-0.009503,0.249819,0,0);-ms-transform:matrix(0.258998,0.009852,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.258998,0.009852,-0.009503,0.249819,0,0);}
.m98_c00046{transform:matrix(0.259302,0.009863,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259302,0.009863,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259302,0.009863,-0.009503,0.249819,0,0);}
.m58_c00046{transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);}
.m61_c00046{transform:matrix(0.259742,0.009880,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259742,0.009880,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259742,0.009880,-0.009503,0.249819,0,0);}
.m68_c00046{transform:matrix(0.266737,0.010146,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266737,0.010146,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266737,0.010146,-0.009503,0.249819,0,0);}
.m1e_c00046{transform:matrix(0.275586,0.010483,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275586,0.010483,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275586,0.010483,-0.009503,0.249819,0,0);}
.m39_c00046{transform:matrix(0.283920,0.010800,-0.009503,0.249819,0,0);-ms-transform:matrix(0.283920,0.010800,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.283920,0.010800,-0.009503,0.249819,0,0);}
.m92_c00046{transform:matrix(0.285803,0.010871,-0.009503,0.249819,0,0);-ms-transform:matrix(0.285803,0.010871,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.285803,0.010871,-0.009503,0.249819,0,0);}
.m97_c00046{transform:matrix(0.292244,0.011116,-0.009503,0.249819,0,0);-ms-transform:matrix(0.292244,0.011116,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.292244,0.011116,-0.009503,0.249819,0,0);}
.m3a_c00046{transform:matrix(0.314508,0.011963,-0.009503,0.249819,0,0);-ms-transform:matrix(0.314508,0.011963,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.314508,0.011963,-0.009503,0.249819,0,0);}
.m60_c00046{transform:matrix(0.318974,0.012133,-0.009503,0.249819,0,0);-ms-transform:matrix(0.318974,0.012133,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.318974,0.012133,-0.009503,0.249819,0,0);}
.m71_c00046{transform:matrix(0.337551,0.012840,-0.009503,0.249819,0,0);-ms-transform:matrix(0.337551,0.012840,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.337551,0.012840,-0.009503,0.249819,0,0);}
.m57_c00046{transform:matrix(0.374499,0.014245,-0.009503,0.249819,0,0);-ms-transform:matrix(0.374499,0.014245,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.374499,0.014245,-0.009503,0.249819,0,0);}
.m1d_c00046{transform:matrix(0.424108,0.016132,-0.009503,0.249819,0,0);-ms-transform:matrix(0.424108,0.016132,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.424108,0.016132,-0.009503,0.249819,0,0);}
.m6e_c00046{transform:matrix(0.555193,0.021118,-0.009503,0.249819,0,0);-ms-transform:matrix(0.555193,0.021118,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.555193,0.021118,-0.009503,0.249819,0,0);}
.m3_c00046{transform:matrix(0.627111,0.023854,-0.009503,0.249819,0,0);-ms-transform:matrix(0.627111,0.023854,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.627111,0.023854,-0.009503,0.249819,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
.fc0_c00046{color:transparent;}
.fs0_c00046{font-size:16.800000px;}
.fsb_c00046{font-size:56.684264px;}
.fs4_c00046{font-size:57.733972px;}
.fs7_c00046{font-size:58.783681px;}
.fse_c00046{font-size:59.833389px;}
.fsc_c00046{font-size:60.883098px;}
.fsf_c00046{font-size:60.900792px;}
.fs3_c00046{font-size:61.932806px;}
.fs9_c00046{font-size:62.982515px;}
.fs8_c00046{font-size:64.032224px;}
.fsa_c00046{font-size:65.081932px;}
.fs6_c00046{font-size:66.131641px;}
.fs2_c00046{font-size:67.181349px;}
.fsd_c00046{font-size:68.231058px;}
.fs1_c00046{font-size:69.280767px;}
.fs5_c00046{font-size:72.429892px;}
.y0_c00046{bottom:0.000000px;}
.yf8_c00046{bottom:24.640620px;}
.yf7_c00046{bottom:25.564155px;}
.yf6_c00046{bottom:28.079948px;}
.yf5_c00046{bottom:28.910198px;}
.yf4_c00046{bottom:31.335000px;}
.yf3_c00046{bottom:38.729607px;}
.yf2_c00046{bottom:39.413751px;}
.yf1_c00046{bottom:40.413576px;}
.yf0_c00046{bottom:41.818726px;}
.yef_c00046{bottom:42.511990px;}
.yee_c00046{bottom:44.021988px;}
.yed_c00046{bottom:44.344509px;}
.yec_c00046{bottom:47.304499px;}
.yeb_c00046{bottom:48.481716px;}
.yea_c00046{bottom:55.347529px;}
.ye9_c00046{bottom:58.109008px;}
.ye8_c00046{bottom:58.815637px;}
.ye7_c00046{bottom:60.076306px;}
.ye6_c00046{bottom:61.053400px;}
.ye5_c00046{bottom:61.773025px;}
.ye4_c00046{bottom:64.022245px;}
.ye3_c00046{bottom:66.025396px;}
.ye2_c00046{bottom:72.732901px;}
.ye1_c00046{bottom:74.228490px;}
.ye0_c00046{bottom:74.842543px;}
.ydf_c00046{bottom:75.940635px;}
.yde_c00046{bottom:77.573860px;}
.ydd_c00046{bottom:78.302254px;}
.ydc_c00046{bottom:80.108139px;}
.ydb_c00046{bottom:80.743323px;}
.yda_c00046{bottom:82.757914px;}
.yd9_c00046{bottom:89.968596px;}
.yd8_c00046{bottom:90.360973px;}
.yd7_c00046{bottom:91.835719px;}
.yd6_c00046{bottom:92.490892px;}
.yd5_c00046{bottom:93.925593px;}
.yd4_c00046{bottom:94.515291px;}
.yd3_c00046{bottom:96.063304px;}
.yd2_c00046{bottom:96.636351px;}
.yd1_c00046{bottom:98.600917px;}
.yd0_c00046{bottom:99.223324px;}
.ycf_c00046{bottom:107.604997px;}
.yce_c00046{bottom:108.219742px;}
.ycd_c00046{bottom:109.152718px;}
.ycc_c00046{bottom:110.991025px;}
.ycb_c00046{bottom:111.689389px;}
.yca_c00046{bottom:113.845927px;}
.yc9_c00046{bottom:114.741796px;}
.yc8_c00046{bottom:116.358202px;}
.yc7_c00046{bottom:117.042658px;}
.yc6_c00046{bottom:123.942354px;}
.yc5_c00046{bottom:126.229479px;}
.yc4_c00046{bottom:128.973915px;}
.yc3_c00046{bottom:132.107604px;}
.yc2_c00046{bottom:133.600833px;}
.yc1_c00046{bottom:134.579637px;}
.yc0_c00046{bottom:142.146117px;}
.ybf_c00046{bottom:143.383383px;}
.ybe_c00046{bottom:144.671377px;}
.ybd_c00046{bottom:145.977864px;}
.ybc_c00046{bottom:147.170695px;}
.ybb_c00046{bottom:147.630429px;}
.yba_c00046{bottom:148.484478px;}
.yb9_c00046{bottom:149.700231px;}
.yb8_c00046{bottom:156.703764px;}
.yb7_c00046{bottom:157.456318px;}
.yb6_c00046{bottom:159.871303px;}
.yb5_c00046{bottom:160.345752px;}
.yb4_c00046{bottom:162.739972px;}
.yb3_c00046{bottom:163.692175px;}
.yb2_c00046{bottom:165.175021px;}
.yb1_c00046{bottom:167.788458px;}
.yb0_c00046{bottom:173.774046px;}
.yaf_c00046{bottom:175.553191px;}
.yae_c00046{bottom:176.713101px;}
.yad_c00046{bottom:178.600726px;}
.yac_c00046{bottom:179.161863px;}
.yab_c00046{bottom:181.832356px;}
.yaa_c00046{bottom:182.514741px;}
.ya9_c00046{bottom:183.717132px;}
.ya8_c00046{bottom:185.061535px;}
.ya7_c00046{bottom:191.490457px;}
.ya6_c00046{bottom:193.204848px;}
.ya5_c00046{bottom:195.414990px;}
.ya4_c00046{bottom:197.328831px;}
.ya3_c00046{bottom:198.701320px;}
.ya2_c00046{bottom:201.255643px;}
.ya1_c00046{bottom:207.641581px;}
.ya0_c00046{bottom:209.150257px;}
.y9f_c00046{bottom:209.892454px;}
.y9e_c00046{bottom:212.681806px;}
.y9d_c00046{bottom:214.806025px;}
.y9c_c00046{bottom:215.454685px;}
.y9b_c00046{bottom:217.786726px;}
.y9a_c00046{bottom:218.529721px;}
.y99_c00046{bottom:224.635579px;}
.y98_c00046{bottom:226.105324px;}
.y97_c00046{bottom:226.898821px;}
.y96_c00046{bottom:227.325010px;}
.y95_c00046{bottom:229.770595px;}
.y94_c00046{bottom:230.486572px;}
.y93_c00046{bottom:232.214584px;}
.y92_c00046{bottom:232.810006px;}
.y91_c00046{bottom:233.260363px;}
.y90_c00046{bottom:235.539565px;}
.y8f_c00046{bottom:242.100105px;}
.y8e_c00046{bottom:243.229047px;}
.y8d_c00046{bottom:247.404069px;}
.y8c_c00046{bottom:248.418954px;}
.y8b_c00046{bottom:250.936017px;}
.y8a_c00046{bottom:252.815763px;}
.y89_c00046{bottom:260.762478px;}
.y88_c00046{bottom:261.088503px;}
.y87_c00046{bottom:262.607355px;}
.y86_c00046{bottom:264.629437px;}
.y85_c00046{bottom:268.245229px;}
.y84_c00046{bottom:269.627818px;}
.y83_c00046{bottom:270.367380px;}
.y82_c00046{bottom:277.194600px;}
.y81_c00046{bottom:278.312577px;}
.y80_c00046{bottom:280.195266px;}
.y7f_c00046{bottom:282.698667px;}
.y7e_c00046{bottom:283.444251px;}
.y7d_c00046{bottom:283.916020px;}
.y7c_c00046{bottom:286.781725px;}
.y7b_c00046{bottom:288.174844px;}
.y7a_c00046{bottom:295.597555px;}
.y79_c00046{bottom:296.516514px;}
.y78_c00046{bottom:297.054429px;}
.y77_c00046{bottom:297.538039px;}
.y76_c00046{bottom:299.691939px;}
.y75_c00046{bottom:301.110810px;}
.y74_c00046{bottom:303.218784px;}
.y73_c00046{bottom:304.635733px;}
.y72_c00046{bottom:312.203238px;}
.y71_c00046{bottom:314.368606px;}
.y70_c00046{bottom:314.957614px;}
.y6f_c00046{bottom:315.747839px;}
.y6e_c00046{bottom:317.272201px;}
.y6d_c00046{bottom:317.787919px;}
.y6c_c00046{bottom:320.021025px;}
.y6b_c00046{bottom:328.514365px;}
.y6a_c00046{bottom:330.343351px;}
.y69_c00046{bottom:330.900708px;}
.y68_c00046{bottom:332.438008px;}
.y67_c00046{bottom:333.308310px;}
.y66_c00046{bottom:334.216423px;}
.y65_c00046{bottom:335.403936px;}
.y64_c00046{bottom:344.471538px;}
.y63_c00046{bottom:345.905782px;}
.y62_c00046{bottom:346.484799px;}
.y61_c00046{bottom:347.931322px;}
.y60_c00046{bottom:348.434988px;}
.y5f_c00046{bottom:349.266073px;}
.y5e_c00046{bottom:350.810413px;}
.y5d_c00046{bottom:351.870874px;}
.y5c_c00046{bottom:361.664988px;}
.y5b_c00046{bottom:362.126361px;}
.y5a_c00046{bottom:363.943110px;}
.y59_c00046{bottom:364.552254px;}
.y58_c00046{bottom:365.360760px;}
.y57_c00046{bottom:367.218075px;}
.y56_c00046{bottom:368.560716px;}
.y55_c00046{bottom:369.147240px;}
.y54_c00046{bottom:378.104398px;}
.y53_c00046{bottom:381.052513px;}
.y52_c00046{bottom:382.342030px;}
.y51_c00046{bottom:382.638144px;}
.y50_c00046{bottom:383.041600px;}
.y4f_c00046{bottom:383.448843px;}
.y4e_c00046{bottom:394.687593px;}
.y4d_c00046{bottom:395.249598px;}
.y4c_c00046{bottom:396.424621px;}
.y4b_c00046{bottom:398.845330px;}
.y4a_c00046{bottom:401.136514px;}
.y49_c00046{bottom:401.882022px;}
.y48_c00046{bottom:403.429351px;}
.y47_c00046{bottom:411.492040px;}
.y46_c00046{bottom:412.416268px;}
.y45_c00046{bottom:412.971769px;}
.y44_c00046{bottom:413.535046px;}
.y43_c00046{bottom:417.183087px;}
.y42_c00046{bottom:417.679872px;}
.y41_c00046{bottom:419.626543px;}
.y40_c00046{bottom:427.858056px;}
.y3f_c00046{bottom:428.993494px;}
.y3e_c00046{bottom:430.572544px;}
.y3d_c00046{bottom:431.073910px;}
.y3c_c00046{bottom:433.675764px;}
.y3b_c00046{bottom:434.070732px;}
.y3a_c00046{bottom:435.017021px;}
.y39_c00046{bottom:436.090543px;}
.y38_c00046{bottom:445.467271px;}
.y37_c00046{bottom:445.842030px;}
.y36_c00046{bottom:448.647592px;}
.y35_c00046{bottom:448.859306px;}
.y34_c00046{bottom:450.058654px;}
.y33_c00046{bottom:450.678811px;}
.y32_c00046{bottom:452.483050px;}
.y31_c00046{bottom:452.827869px;}
.y30_c00046{bottom:462.374958px;}
.y2f_c00046{bottom:463.558470px;}
.y2e_c00046{bottom:464.016436px;}
.y2d_c00046{bottom:464.819392px;}
.y2c_c00046{bottom:465.152217px;}
.y2b_c00046{bottom:466.888384px;}
.y2a_c00046{bottom:469.070101px;}
.y29_c00046{bottom:469.563350px;}
.y28_c00046{bottom:478.899435px;}
.y27_c00046{bottom:479.279605px;}
.y26_c00046{bottom:480.823209px;}
.y25_c00046{bottom:482.608977px;}
.y24_c00046{bottom:483.408459px;}
.y23_c00046{bottom:485.062157px;}
.y22_c00046{bottom:486.296998px;}
.y21_c00046{bottom:494.883897px;}
.y20_c00046{bottom:496.637250px;}
.y1f_c00046{bottom:497.258668px;}
.y1e_c00046{bottom:498.311473px;}
.y1d_c00046{bottom:498.697546px;}
.y1c_c00046{bottom:499.556061px;}
.y1b_c00046{bottom:501.219528px;}
.y1a_c00046{bottom:502.846842px;}
.y19_c00046{bottom:503.841656px;}
.y18_c00046{bottom:511.994025px;}
.y17_c00046{bottom:514.586946px;}
.y16_c00046{bottom:515.282751px;}
.y15_c00046{bottom:516.516437px;}
.y14_c00046{bottom:517.172986px;}
.y13_c00046{bottom:518.493577px;}
.y12_c00046{bottom:519.061341px;}
.y11_c00046{bottom:520.579657px;}
.y10_c00046{bottom:528.160746px;}
.yf_c00046{bottom:530.751294px;}
.ye_c00046{bottom:532.140340px;}
.yd_c00046{bottom:533.891505px;}
.yc_c00046{bottom:534.950320px;}
.yb_c00046{bottom:535.937138px;}
.ya_c00046{bottom:537.589188px;}
.y9_c00046{bottom:542.925939px;}
.y8_c00046{bottom:545.098950px;}
.y7_c00046{bottom:545.847417px;}
.y6_c00046{bottom:547.274982px;}
.y5_c00046{bottom:548.154264px;}
.y4_c00046{bottom:549.602349px;}
.y3_c00046{bottom:552.074268px;}
.y2_c00046{bottom:554.056500px;}
.y1_c00046{bottom:572.400000px;}
.h1_c00046{height:16.800000px;}
.hc_c00046{height:56.684264px;}
.h5_c00046{height:57.733972px;}
.h8_c00046{height:58.783681px;}
.hf_c00046{height:59.833389px;}
.hd_c00046{height:60.883098px;}
.h10_c00046{height:60.900792px;}
.h4_c00046{height:61.932806px;}
.ha_c00046{height:62.982515px;}
.h9_c00046{height:64.032224px;}
.hb_c00046{height:65.081932px;}
.h7_c00046{height:66.131641px;}
.h3_c00046{height:67.181349px;}
.he_c00046{height:68.231058px;}
.h2_c00046{height:69.280767px;}
.h6_c00046{height:72.429892px;}
.h0_c00046{height:600.750000px;}
.w1_c00046{width:358.500000px;}
.w0_c00046{width:358.800000px;}
.x0_c00046{left:0.000000px;}
.x63_c00046{left:27.666599px;}
.x41_c00046{left:28.945813px;}
.x2_c00046{left:30.058500px;}
.x1e_c00046{left:31.474340px;}
.x5e_c00046{left:34.194965px;}
.x75_c00046{left:35.841000px;}
.xa_c00046{left:42.498434px;}
.x6a_c00046{left:45.047902px;}
.x24_c00046{left:46.840196px;}
.x42_c00046{left:48.291944px;}
.x69_c00046{left:53.531263px;}
.x18_c00046{left:62.510402px;}
.x46_c00046{left:63.673827px;}
.x30_c00046{left:66.090531px;}
.x43_c00046{left:67.459638px;}
.x1f_c00046{left:75.536508px;}
.x3b_c00046{left:77.656352px;}
.x11_c00046{left:80.387855px;}
.x3_c00046{left:82.170336px;}
.x6d_c00046{left:84.644916px;}
.xb_c00046{left:88.336530px;}
.x76_c00046{left:89.671616px;}
.x64_c00046{left:91.362093px;}
.x44_c00046{left:92.530012px;}
.x36_c00046{left:93.862719px;}
.x12_c00046{left:99.298688px;}
.x3c_c00046{left:100.924367px;}
.x6e_c00046{left:102.763833px;}
.x2a_c00046{left:103.863828px;}
.x67_c00046{left:106.572321px;}
.x4c_c00046{left:108.774857px;}
.x37_c00046{left:110.394692px;}
.x31_c00046{left:112.279601px;}
.xc_c00046{left:115.699694px;}
.x25_c00046{left:121.949687px;}
.x2b_c00046{left:125.217257px;}
.x4d_c00046{left:127.145928px;}
.x52_c00046{left:132.888246px;}
.x20_c00046{left:134.515893px;}
.x70_c00046{left:138.624178px;}
.x5f_c00046{left:140.229875px;}
.x13_c00046{left:143.248046px;}
.xd_c00046{left:145.074015px;}
.x4_c00046{left:147.155786px;}
.x65_c00046{left:150.722940px;}
.x49_c00046{left:151.999115px;}
.x45_c00046{left:154.376932px;}
.x71_c00046{left:157.542741px;}
.x47_c00046{left:159.484020px;}
.x58_c00046{left:161.047838px;}
.x21_c00046{left:163.029691px;}
.x14_c00046{left:165.084806px;}
.x2c_c00046{left:166.531551px;}
.x19_c00046{left:168.512480px;}
.x56_c00046{left:170.977481px;}
.x3d_c00046{left:172.441596px;}
.x2d_c00046{left:173.833253px;}
.x55_c00046{left:175.574955px;}
.x59_c00046{left:179.870496px;}
.x26_c00046{left:181.755804px;}
.x72_c00046{left:183.230028px;}
.x5_c00046{left:185.225178px;}
.x62_c00046{left:189.341178px;}
.x60_c00046{left:191.885108px;}
.xe_c00046{left:193.675574px;}
.x1a_c00046{left:196.171653px;}
.x32_c00046{left:201.866564px;}
.x15_c00046{left:206.157687px;}
.x6_c00046{left:208.341039px;}
.x4e_c00046{left:209.693679px;}
.x74_c00046{left:212.041683px;}
.x4a_c00046{left:215.966646px;}
.x33_c00046{left:219.150197px;}
.x27_c00046{left:220.886043px;}
.x53_c00046{left:223.564152px;}
.x68_c00046{left:224.799464px;}
.x22_c00046{left:226.704146px;}
.x16_c00046{left:229.342055px;}
.x4f_c00046{left:230.701638px;}
.xf_c00046{left:232.204915px;}
.x51_c00046{left:233.883251px;}
.x73_c00046{left:234.949257px;}
.x28_c00046{left:236.673660px;}
.x4b_c00046{left:239.180291px;}
.x1b_c00046{left:242.520582px;}
.x5a_c00046{left:244.163639px;}
.x7_c00046{left:245.870971px;}
.x3e_c00046{left:247.995198px;}
.x38_c00046{left:250.578489px;}
.x6f_c00046{left:253.068552px;}
.x5b_c00046{left:255.367923px;}
.x6c_c00046{left:257.970834px;}
.x6b_c00046{left:259.003732px;}
.x1c_c00046{left:262.526363px;}
.x8_c00046{left:265.547775px;}
.x39_c00046{left:269.048592px;}
.x2e_c00046{left:270.432593px;}
.x34_c00046{left:273.523869px;}
.x48_c00046{left:274.702776px;}
.x5c_c00046{left:276.228542px;}
.x29_c00046{left:277.413801px;}
.x66_c00046{left:279.448865px;}
.x1_c00046{left:280.800000px;}
.x2f_c00046{left:283.322583px;}
.x3f_c00046{left:284.685359px;}
.x23_c00046{left:295.348065px;}
.x54_c00046{left:296.690123px;}
.x61_c00046{left:297.860078px;}
.x3a_c00046{left:299.816151px;}
.x40_c00046{left:302.221798px;}
.x10_c00046{left:304.096429px;}
.x50_c00046{left:307.945701px;}
.x57_c00046{left:310.415903px;}
.x35_c00046{left:312.645117px;}
.x5d_c00046{left:314.563098px;}
.x17_c00046{left:315.656400px;}
.x1d_c00046{left:319.036359px;}
.x9_c00046{left:322.675091px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs0_c00046{font-size:14.933333pt;}
.fsb_c00046{font-size:50.386012pt;}
.fs4_c00046{font-size:51.319086pt;}
.fs7_c00046{font-size:52.252161pt;}
.fse_c00046{font-size:53.185235pt;}
.fsc_c00046{font-size:54.118309pt;}
.fsf_c00046{font-size:54.134037pt;}
.fs3_c00046{font-size:55.051384pt;}
.fs9_c00046{font-size:55.984458pt;}
.fs8_c00046{font-size:56.917532pt;}
.fsa_c00046{font-size:57.850606pt;}
.fs6_c00046{font-size:58.783681pt;}
.fs2_c00046{font-size:59.716755pt;}
.fsd_c00046{font-size:60.649829pt;}
.fs1_c00046{font-size:61.582904pt;}
.fs5_c00046{font-size:64.382127pt;}
.y0_c00046{bottom:0.000000pt;}
.yf8_c00046{bottom:21.902773pt;}
.yf7_c00046{bottom:22.723693pt;}
.yf6_c00046{bottom:24.959953pt;}
.yf5_c00046{bottom:25.697953pt;}
.yf4_c00046{bottom:27.853333pt;}
.yf3_c00046{bottom:34.426317pt;}
.yf2_c00046{bottom:35.034445pt;}
.yf1_c00046{bottom:35.923179pt;}
.yf0_c00046{bottom:37.172201pt;}
.yef_c00046{bottom:37.788436pt;}
.yee_c00046{bottom:39.130656pt;}
.yed_c00046{bottom:39.417341pt;}
.yec_c00046{bottom:42.048444pt;}
.yeb_c00046{bottom:43.094859pt;}
.yea_c00046{bottom:49.197804pt;}
.ye9_c00046{bottom:51.652452pt;}
.ye8_c00046{bottom:52.280567pt;}
.ye7_c00046{bottom:53.401161pt;}
.ye6_c00046{bottom:54.269689pt;}
.ye5_c00046{bottom:54.909356pt;}
.ye4_c00046{bottom:56.908663pt;}
.ye3_c00046{bottom:58.689241pt;}
.ye2_c00046{bottom:64.651468pt;}
.ye1_c00046{bottom:65.980880pt;}
.ye0_c00046{bottom:66.526705pt;}
.ydf_c00046{bottom:67.502787pt;}
.yde_c00046{bottom:68.954543pt;}
.ydd_c00046{bottom:69.602004pt;}
.ydc_c00046{bottom:71.207235pt;}
.ydb_c00046{bottom:71.771843pt;}
.yda_c00046{bottom:73.562591pt;}
.yd9_c00046{bottom:79.972085pt;}
.yd8_c00046{bottom:80.320865pt;}
.yd7_c00046{bottom:81.631751pt;}
.yd6_c00046{bottom:82.214127pt;}
.yd5_c00046{bottom:83.489416pt;}
.yd4_c00046{bottom:84.013592pt;}
.yd3_c00046{bottom:85.389604pt;}
.yd2_c00046{bottom:85.898979pt;}
.yd1_c00046{bottom:87.645260pt;}
.yd0_c00046{bottom:88.198511pt;}
.ycf_c00046{bottom:95.648887pt;}
.yce_c00046{bottom:96.195327pt;}
.ycd_c00046{bottom:97.024639pt;}
.ycc_c00046{bottom:98.658689pt;}
.ycb_c00046{bottom:99.279457pt;}
.yca_c00046{bottom:101.196380pt;}
.yc9_c00046{bottom:101.992708pt;}
.yc8_c00046{bottom:103.429513pt;}
.yc7_c00046{bottom:104.037919pt;}
.yc6_c00046{bottom:110.170981pt;}
.yc5_c00046{bottom:112.203981pt;}
.yc4_c00046{bottom:114.643480pt;}
.yc3_c00046{bottom:117.428981pt;}
.yc2_c00046{bottom:118.756296pt;}
.yc1_c00046{bottom:119.626344pt;}
.yc0_c00046{bottom:126.352104pt;}
.ybf_c00046{bottom:127.451896pt;}
.ybe_c00046{bottom:128.596780pt;}
.ybd_c00046{bottom:129.758101pt;}
.ybc_c00046{bottom:130.818396pt;}
.ybb_c00046{bottom:131.227048pt;}
.yba_c00046{bottom:131.986203pt;}
.yb9_c00046{bottom:133.066872pt;}
.yb8_c00046{bottom:139.292235pt;}
.yb7_c00046{bottom:139.961172pt;}
.yb6_c00046{bottom:142.107825pt;}
.yb5_c00046{bottom:142.529557pt;}
.yb4_c00046{bottom:144.657753pt;}
.yb3_c00046{bottom:145.504156pt;}
.yb2_c00046{bottom:146.822241pt;}
.yb1_c00046{bottom:149.145296pt;}
.yb0_c00046{bottom:154.465819pt;}
.yaf_c00046{bottom:156.047281pt;}
.yae_c00046{bottom:157.078312pt;}
.yad_c00046{bottom:158.756201pt;}
.yac_c00046{bottom:159.254989pt;}
.yab_c00046{bottom:161.628761pt;}
.yaa_c00046{bottom:162.235325pt;}
.ya9_c00046{bottom:163.304117pt;}
.ya8_c00046{bottom:164.499143pt;}
.ya7_c00046{bottom:170.213740pt;}
.ya6_c00046{bottom:171.737643pt;}
.ya5_c00046{bottom:173.702213pt;}
.ya4_c00046{bottom:175.403405pt;}
.ya3_c00046{bottom:176.623396pt;}
.ya2_c00046{bottom:178.893905pt;}
.ya1_c00046{bottom:184.570295pt;}
.ya0_c00046{bottom:185.911340pt;}
.y9f_c00046{bottom:186.571071pt;}
.y9e_c00046{bottom:189.050495pt;}
.y9d_c00046{bottom:190.938689pt;}
.y9c_c00046{bottom:191.515276pt;}
.y9b_c00046{bottom:193.588201pt;}
.y9a_c00046{bottom:194.248641pt;}
.y99_c00046{bottom:199.676071pt;}
.y98_c00046{bottom:200.982511pt;}
.y97_c00046{bottom:201.687841pt;}
.y96_c00046{bottom:202.066676pt;}
.y95_c00046{bottom:204.240529pt;}
.y94_c00046{bottom:204.876953pt;}
.y93_c00046{bottom:206.412964pt;}
.y92_c00046{bottom:206.942228pt;}
.y91_c00046{bottom:207.342545pt;}
.y90_c00046{bottom:209.368503pt;}
.y8f_c00046{bottom:215.200093pt;}
.y8e_c00046{bottom:216.203597pt;}
.y8d_c00046{bottom:219.914728pt;}
.y8c_c00046{bottom:220.816848pt;}
.y8b_c00046{bottom:223.054237pt;}
.y8a_c00046{bottom:224.725123pt;}
.y89_c00046{bottom:231.788869pt;}
.y88_c00046{bottom:232.078669pt;}
.y87_c00046{bottom:233.428760pt;}
.y86_c00046{bottom:235.226167pt;}
.y85_c00046{bottom:238.440204pt;}
.y84_c00046{bottom:239.669172pt;}
.y83_c00046{bottom:240.326560pt;}
.y82_c00046{bottom:246.395200pt;}
.y81_c00046{bottom:247.388957pt;}
.y80_c00046{bottom:249.062459pt;}
.y7f_c00046{bottom:251.287704pt;}
.y7e_c00046{bottom:251.950445pt;}
.y7d_c00046{bottom:252.369796pt;}
.y7c_c00046{bottom:254.917089pt;}
.y7b_c00046{bottom:256.155417pt;}
.y7a_c00046{bottom:262.753383pt;}
.y79_c00046{bottom:263.570235pt;}
.y78_c00046{bottom:264.048381pt;}
.y77_c00046{bottom:264.478257pt;}
.y76_c00046{bottom:266.392835pt;}
.y75_c00046{bottom:267.654053pt;}
.y74_c00046{bottom:269.527808pt;}
.y73_c00046{bottom:270.787319pt;}
.y72_c00046{bottom:277.513989pt;}
.y71_c00046{bottom:279.438761pt;}
.y70_c00046{bottom:279.962324pt;}
.y6f_c00046{bottom:280.664745pt;}
.y6e_c00046{bottom:282.019735pt;}
.y6d_c00046{bottom:282.478151pt;}
.y6c_c00046{bottom:284.463133pt;}
.y6b_c00046{bottom:292.012769pt;}
.y6a_c00046{bottom:293.638535pt;}
.y69_c00046{bottom:294.133963pt;}
.y68_c00046{bottom:295.500452pt;}
.y67_c00046{bottom:296.274053pt;}
.y66_c00046{bottom:297.081265pt;}
.y65_c00046{bottom:298.136832pt;}
.y64_c00046{bottom:306.196923pt;}
.y63_c00046{bottom:307.471807pt;}
.y62_c00046{bottom:307.986488pt;}
.y61_c00046{bottom:309.272287pt;}
.y60_c00046{bottom:309.719989pt;}
.y5f_c00046{bottom:310.458732pt;}
.y5e_c00046{bottom:311.831479pt;}
.y5d_c00046{bottom:312.774111pt;}
.y5c_c00046{bottom:321.479989pt;}
.y5b_c00046{bottom:321.890099pt;}
.y5a_c00046{bottom:323.504987pt;}
.y59_c00046{bottom:324.046448pt;}
.y58_c00046{bottom:324.765120pt;}
.y57_c00046{bottom:326.416067pt;}
.y56_c00046{bottom:327.609525pt;}
.y55_c00046{bottom:328.130880pt;}
.y54_c00046{bottom:336.092799pt;}
.y53_c00046{bottom:338.713345pt;}
.y52_c00046{bottom:339.859583pt;}
.y51_c00046{bottom:340.122795pt;}
.y50_c00046{bottom:340.481423pt;}
.y4f_c00046{bottom:340.843416pt;}
.y4e_c00046{bottom:350.833416pt;}
.y4d_c00046{bottom:351.332976pt;}
.y4c_c00046{bottom:352.377441pt;}
.y4b_c00046{bottom:354.529183pt;}
.y4a_c00046{bottom:356.565791pt;}
.y49_c00046{bottom:357.228464pt;}
.y48_c00046{bottom:358.603868pt;}
.y47_c00046{bottom:365.770703pt;}
.y46_c00046{bottom:366.592239pt;}
.y45_c00046{bottom:367.086017pt;}
.y44_c00046{bottom:367.586708pt;}
.y43_c00046{bottom:370.829411pt;}
.y42_c00046{bottom:371.270997pt;}
.y41_c00046{bottom:373.001372pt;}
.y40_c00046{bottom:380.318272pt;}
.y3f_c00046{bottom:381.327551pt;}
.y3e_c00046{bottom:382.731151pt;}
.y3d_c00046{bottom:383.176809pt;}
.y3c_c00046{bottom:385.489568pt;}
.y3b_c00046{bottom:385.840651pt;}
.y3a_c00046{bottom:386.681796pt;}
.y39_c00046{bottom:387.636039pt;}
.y38_c00046{bottom:395.970908pt;}
.y37_c00046{bottom:396.304027pt;}
.y36_c00046{bottom:398.797860pt;}
.y35_c00046{bottom:398.986049pt;}
.y34_c00046{bottom:400.052137pt;}
.y33_c00046{bottom:400.603388pt;}
.y32_c00046{bottom:402.207156pt;}
.y31_c00046{bottom:402.513661pt;}
.y30_c00046{bottom:410.999963pt;}
.y2f_c00046{bottom:412.051973pt;}
.y2e_c00046{bottom:412.459055pt;}
.y2d_c00046{bottom:413.172793pt;}
.y2c_c00046{bottom:413.468637pt;}
.y2b_c00046{bottom:415.011897pt;}
.y2a_c00046{bottom:416.951201pt;}
.y29_c00046{bottom:417.389644pt;}
.y28_c00046{bottom:425.688387pt;}
.y27_c00046{bottom:426.026316pt;}
.y26_c00046{bottom:427.398408pt;}
.y25_c00046{bottom:428.985757pt;}
.y24_c00046{bottom:429.696408pt;}
.y23_c00046{bottom:431.166361pt;}
.y22_c00046{bottom:432.263999pt;}
.y21_c00046{bottom:439.896797pt;}
.y20_c00046{bottom:441.455333pt;}
.y1f_c00046{bottom:442.007705pt;}
.y1e_c00046{bottom:442.943532pt;}
.y1d_c00046{bottom:443.286708pt;}
.y1c_c00046{bottom:444.049832pt;}
.y1b_c00046{bottom:445.528469pt;}
.y1a_c00046{bottom:446.974971pt;}
.y19_c00046{bottom:447.859249pt;}
.y18_c00046{bottom:455.105800pt;}
.y17_c00046{bottom:457.410619pt;}
.y16_c00046{bottom:458.029112pt;}
.y15_c00046{bottom:459.125721pt;}
.y14_c00046{bottom:459.709321pt;}
.y13_c00046{bottom:460.883180pt;}
.y12_c00046{bottom:461.387859pt;}
.y11_c00046{bottom:462.737473pt;}
.y10_c00046{bottom:469.476219pt;}
.yf_c00046{bottom:471.778928pt;}
.ye_c00046{bottom:473.013636pt;}
.yd_c00046{bottom:474.570227pt;}
.yc_c00046{bottom:475.511396pt;}
.yb_c00046{bottom:476.388567pt;}
.ya_c00046{bottom:477.857056pt;}
.y9_c00046{bottom:482.600835pt;}
.y8_c00046{bottom:484.532400pt;}
.y7_c00046{bottom:485.197704pt;}
.y6_c00046{bottom:486.466651pt;}
.y5_c00046{bottom:487.248235pt;}
.y4_c00046{bottom:488.535421pt;}
.y3_c00046{bottom:490.732683pt;}
.y2_c00046{bottom:492.494667pt;}
.y1_c00046{bottom:508.800000pt;}
.h1_c00046{height:14.933333pt;}
.hc_c00046{height:50.386012pt;}
.h5_c00046{height:51.319086pt;}
.h8_c00046{height:52.252161pt;}
.hf_c00046{height:53.185235pt;}
.hd_c00046{height:54.118309pt;}
.h10_c00046{height:54.134037pt;}
.h4_c00046{height:55.051384pt;}
.ha_c00046{height:55.984458pt;}
.h9_c00046{height:56.917532pt;}
.hb_c00046{height:57.850606pt;}
.h7_c00046{height:58.783681pt;}
.h3_c00046{height:59.716755pt;}
.he_c00046{height:60.649829pt;}
.h2_c00046{height:61.582904pt;}
.h6_c00046{height:64.382127pt;}
.h0_c00046{height:534.000000pt;}
.w1_c00046{width:318.666667pt;}
.w0_c00046{width:318.933333pt;}
.x0_c00046{left:0.000000pt;}
.x63_c00046{left:24.592532pt;}
.x41_c00046{left:25.729612pt;}
.x2_c00046{left:26.718667pt;}
.x1e_c00046{left:27.977191pt;}
.x5e_c00046{left:30.395524pt;}
.x75_c00046{left:31.858667pt;}
.xa_c00046{left:37.776385pt;}
.x6a_c00046{left:40.042580pt;}
.x24_c00046{left:41.635729pt;}
.x42_c00046{left:42.926172pt;}
.x69_c00046{left:47.583345pt;}
.x18_c00046{left:55.564801pt;}
.x46_c00046{left:56.598957pt;}
.x30_c00046{left:58.747139pt;}
.x43_c00046{left:59.964123pt;}
.x1f_c00046{left:67.143563pt;}
.x3b_c00046{left:69.027868pt;}
.x11_c00046{left:71.455871pt;}
.x3_c00046{left:73.040299pt;}
.x6d_c00046{left:75.239925pt;}
.xb_c00046{left:78.521360pt;}
.x76_c00046{left:79.708103pt;}
.x64_c00046{left:81.210749pt;}
.x44_c00046{left:82.248900pt;}
.x36_c00046{left:83.433528pt;}
.x12_c00046{left:88.265500pt;}
.x3c_c00046{left:89.710548pt;}
.x6e_c00046{left:91.345629pt;}
.x2a_c00046{left:92.323403pt;}
.x67_c00046{left:94.730952pt;}
.x4c_c00046{left:96.688761pt;}
.x37_c00046{left:98.128615pt;}
.x31_c00046{left:99.804089pt;}
.xc_c00046{left:102.844172pt;}
.x25_c00046{left:108.399721pt;}
.x2b_c00046{left:111.304228pt;}
.x4d_c00046{left:113.018603pt;}
.x52_c00046{left:118.122885pt;}
.x20_c00046{left:119.569683pt;}
.x70_c00046{left:123.221492pt;}
.x5f_c00046{left:124.648777pt;}
.x13_c00046{left:127.331596pt;}
.xd_c00046{left:128.954680pt;}
.x4_c00046{left:130.805143pt;}
.x65_c00046{left:133.975947pt;}
.x49_c00046{left:135.110324pt;}
.x45_c00046{left:137.223940pt;}
.x71_c00046{left:140.037992pt;}
.x47_c00046{left:141.763573pt;}
.x58_c00046{left:143.153633pt;}
.x21_c00046{left:144.915281pt;}
.x14_c00046{left:146.742049pt;}
.x2c_c00046{left:148.028045pt;}
.x19_c00046{left:149.788871pt;}
.x56_c00046{left:151.979983pt;}
.x3d_c00046{left:153.281419pt;}
.x2d_c00046{left:154.518447pt;}
.x55_c00046{left:156.066627pt;}
.x59_c00046{left:159.884885pt;}
.x26_c00046{left:161.560715pt;}
.x72_c00046{left:162.871136pt;}
.x5_c00046{left:164.644603pt;}
.x62_c00046{left:168.303269pt;}
.x60_c00046{left:170.564540pt;}
.xe_c00046{left:172.156065pt;}
.x1a_c00046{left:174.374803pt;}
.x32_c00046{left:179.436945pt;}
.x15_c00046{left:183.251277pt;}
.x6_c00046{left:185.192035pt;}
.x4e_c00046{left:186.394381pt;}
.x74_c00046{left:188.481496pt;}
.x4a_c00046{left:191.970352pt;}
.x33_c00046{left:194.800175pt;}
.x27_c00046{left:196.343149pt;}
.x53_c00046{left:198.723691pt;}
.x68_c00046{left:199.821745pt;}
.x22_c00046{left:201.514796pt;}
.x16_c00046{left:203.859604pt;}
.x4f_c00046{left:205.068123pt;}
.xf_c00046{left:206.404369pt;}
.x51_c00046{left:207.896223pt;}
.x73_c00046{left:208.843784pt;}
.x28_c00046{left:210.376587pt;}
.x4b_c00046{left:212.604703pt;}
.x1b_c00046{left:215.573851pt;}
.x5a_c00046{left:217.034345pt;}
.x7_c00046{left:218.551975pt;}
.x3e_c00046{left:220.440176pt;}
.x38_c00046{left:222.736435pt;}
.x6f_c00046{left:224.949824pt;}
.x5b_c00046{left:226.993709pt;}
.x6c_c00046{left:229.307408pt;}
.x6b_c00046{left:230.225540pt;}
.x1c_c00046{left:233.356767pt;}
.x8_c00046{left:236.042467pt;}
.x39_c00046{left:239.154304pt;}
.x2e_c00046{left:240.384527pt;}
.x34_c00046{left:243.132328pt;}
.x48_c00046{left:244.180245pt;}
.x5c_c00046{left:245.536481pt;}
.x29_c00046{left:246.590045pt;}
.x66_c00046{left:248.398991pt;}
.x1_c00046{left:249.600000pt;}
.x2f_c00046{left:251.842296pt;}
.x3f_c00046{left:253.053652pt;}
.x23_c00046{left:262.531613pt;}
.x54_c00046{left:263.724553pt;}
.x61_c00046{left:264.764513pt;}
.x3a_c00046{left:266.503245pt;}
.x40_c00046{left:268.641599pt;}
.x10_c00046{left:270.307937pt;}
.x50_c00046{left:273.729512pt;}
.x57_c00046{left:275.925247pt;}
.x35_c00046{left:277.906771pt;}
.x5d_c00046{left:279.611643pt;}
.x17_c00046{left:280.583467pt;}
.x1d_c00046{left:283.587875pt;}
.x9_c00046{left:286.822303pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00047 {
    display:none;
  }
  .loading-indicator_c00047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00047 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00047 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00047" -> "#page-container .classname_c00047")
 */
.pf_c00047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00047 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00047 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00047 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00047 {overflow:visible;}
  }
}
.c_c00047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00047 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00047:after { /* webkit #35443 */
  content: '';
}
.t_c00047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00047 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00047 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00047 { /* info for Javascript */
  display:none;
}
.l_c00047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00047:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00047 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00047.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00047{transform:matrix(0.008966,0.000503,-0.014006,0.249607,0,0);-ms-transform:matrix(0.008966,0.000503,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.008966,0.000503,-0.014006,0.249607,0,0);}
.m7c_c00047{transform:matrix(0.031016,0.001740,-0.014006,0.249607,0,0);-ms-transform:matrix(0.031016,0.001740,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.031016,0.001740,-0.014006,0.249607,0,0);}
.m12_c00047{transform:matrix(0.096754,0.005230,-0.013494,0.249636,0,0);-ms-transform:matrix(0.096754,0.005230,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.096754,0.005230,-0.013494,0.249636,0,0);}
.m71_c00047{transform:matrix(0.114894,0.006447,-0.014006,0.249607,0,0);-ms-transform:matrix(0.114894,0.006447,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.114894,0.006447,-0.014006,0.249607,0,0);}
.mc3_c00047{transform:matrix(0.117733,0.008975,-0.019002,0.249277,0,0);-ms-transform:matrix(0.117733,0.008975,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.117733,0.008975,-0.019002,0.249277,0,0);}
.md8_c00047{transform:matrix(0.142990,0.010900,-0.019002,0.249277,0,0);-ms-transform:matrix(0.142990,0.010900,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.142990,0.010900,-0.019002,0.249277,0,0);}
.mce_c00047{transform:matrix(0.145403,0.011084,-0.019002,0.249277,0,0);-ms-transform:matrix(0.145403,0.011084,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.145403,0.011084,-0.019002,0.249277,0,0);}
.md_c00047{transform:matrix(0.145443,0.007862,-0.013494,0.249636,0,0);-ms-transform:matrix(0.145443,0.007862,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.145443,0.007862,-0.013494,0.249636,0,0);}
.m6a_c00047{transform:matrix(0.148764,0.008198,-0.013757,0.249621,0,0);-ms-transform:matrix(0.148764,0.008198,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.148764,0.008198,-0.013757,0.249621,0,0);}
.mbc_c00047{transform:matrix(0.149302,0.011381,-0.019002,0.249277,0,0);-ms-transform:matrix(0.149302,0.011381,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.149302,0.011381,-0.019002,0.249277,0,0);}
.maf_c00047{transform:matrix(0.156421,0.011924,-0.019002,0.249277,0,0);-ms-transform:matrix(0.156421,0.011924,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.156421,0.011924,-0.019002,0.249277,0,0);}
.mb7_c00047{transform:matrix(0.157064,0.011973,-0.019002,0.249277,0,0);-ms-transform:matrix(0.157064,0.011973,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.157064,0.011973,-0.019002,0.249277,0,0);}
.m8_c00047{transform:matrix(0.157086,0.008491,-0.013494,0.249636,0,0);-ms-transform:matrix(0.157086,0.008491,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.157086,0.008491,-0.013494,0.249636,0,0);}
.m1f_c00047{transform:matrix(0.158213,0.009195,-0.014505,0.249579,0,0);-ms-transform:matrix(0.158213,0.009195,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.158213,0.009195,-0.014505,0.249579,0,0);}
.mc4_c00047{transform:matrix(0.159727,0.012176,-0.019002,0.249277,0,0);-ms-transform:matrix(0.159727,0.012176,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.159727,0.012176,-0.019002,0.249277,0,0);}
.m6b_c00047{transform:matrix(0.159758,0.008804,-0.013757,0.249621,0,0);-ms-transform:matrix(0.159758,0.008804,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.159758,0.008804,-0.013757,0.249621,0,0);}
.m1a_c00047{transform:matrix(0.159787,0.008637,-0.013494,0.249636,0,0);-ms-transform:matrix(0.159787,0.008637,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.159787,0.008637,-0.013494,0.249636,0,0);}
.mb4_c00047{transform:matrix(0.160076,0.012202,-0.019002,0.249277,0,0);-ms-transform:matrix(0.160076,0.012202,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.160076,0.012202,-0.019002,0.249277,0,0);}
.mc0_c00047{transform:matrix(0.160499,0.012235,-0.019002,0.249277,0,0);-ms-transform:matrix(0.160499,0.012235,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.160499,0.012235,-0.019002,0.249277,0,0);}
.mdc_c00047{transform:matrix(0.161496,0.012311,-0.019002,0.249277,0,0);-ms-transform:matrix(0.161496,0.012311,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.161496,0.012311,-0.019002,0.249277,0,0);}
.m19_c00047{transform:matrix(0.162313,0.008774,-0.013494,0.249636,0,0);-ms-transform:matrix(0.162313,0.008774,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.162313,0.008774,-0.013494,0.249636,0,0);}
.m13_c00047{transform:matrix(0.163027,0.008812,-0.013494,0.249636,0,0);-ms-transform:matrix(0.163027,0.008812,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.163027,0.008812,-0.013494,0.249636,0,0);}
.m1c_c00047{transform:matrix(0.163117,0.008817,-0.013494,0.249636,0,0);-ms-transform:matrix(0.163117,0.008817,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.163117,0.008817,-0.013494,0.249636,0,0);}
.mb1_c00047{transform:matrix(0.164164,0.012514,-0.019002,0.249277,0,0);-ms-transform:matrix(0.164164,0.012514,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.164164,0.012514,-0.019002,0.249277,0,0);}
.md4_c00047{transform:matrix(0.164667,0.012552,-0.019002,0.249277,0,0);-ms-transform:matrix(0.164667,0.012552,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.164667,0.012552,-0.019002,0.249277,0,0);}
.md2_c00047{transform:matrix(0.165849,0.012642,-0.019002,0.249277,0,0);-ms-transform:matrix(0.165849,0.012642,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.165849,0.012642,-0.019002,0.249277,0,0);}
.ma_c00047{transform:matrix(0.166247,0.008986,-0.013494,0.249636,0,0);-ms-transform:matrix(0.166247,0.008986,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.166247,0.008986,-0.013494,0.249636,0,0);}
.m5a_c00047{transform:matrix(0.166613,0.010518,-0.015750,0.249503,0,0);-ms-transform:matrix(0.166613,0.010518,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.166613,0.010518,-0.015750,0.249503,0,0);}
.md5_c00047{transform:matrix(0.167055,0.012734,-0.019002,0.249277,0,0);-ms-transform:matrix(0.167055,0.012734,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.167055,0.012734,-0.019002,0.249277,0,0);}
.m0_c00047{transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(0.169050,0.012886,-0.019002,0.249277,0,0);-ms-transform:matrix(0.169050,0.012886,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.169050,0.012886,-0.019002,0.249277,0,0);}
.me_c00047{transform:matrix(0.169208,0.009146,-0.013494,0.249636,0,0);-ms-transform:matrix(0.169208,0.009146,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.169208,0.009146,-0.013494,0.249636,0,0);}
.mae_c00047{transform:matrix(0.169214,0.012899,-0.019002,0.249277,0,0);-ms-transform:matrix(0.169214,0.012899,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.169214,0.012899,-0.019002,0.249277,0,0);}
.m23_c00047{transform:matrix(0.169229,0.009835,-0.014505,0.249579,0,0);-ms-transform:matrix(0.169229,0.009835,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.169229,0.009835,-0.014505,0.249579,0,0);}
.m10_c00047{transform:matrix(0.169927,0.009185,-0.013494,0.249636,0,0);-ms-transform:matrix(0.169927,0.009185,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.169927,0.009185,-0.013494,0.249636,0,0);}
.mcf_c00047{transform:matrix(0.170411,0.012990,-0.019002,0.249277,0,0);-ms-transform:matrix(0.170411,0.012990,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.170411,0.012990,-0.019002,0.249277,0,0);}
.mb_c00047{transform:matrix(0.171180,0.009253,-0.013494,0.249636,0,0);-ms-transform:matrix(0.171180,0.009253,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.171180,0.009253,-0.013494,0.249636,0,0);}
.m22_c00047{transform:matrix(0.172080,0.010001,-0.014505,0.249579,0,0);-ms-transform:matrix(0.172080,0.010001,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.172080,0.010001,-0.014505,0.249579,0,0);}
.m31_c00047{transform:matrix(0.173657,0.010092,-0.014505,0.249579,0,0);-ms-transform:matrix(0.173657,0.010092,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.173657,0.010092,-0.014505,0.249579,0,0);}
.m28_c00047{transform:matrix(0.173792,0.010100,-0.014505,0.249579,0,0);-ms-transform:matrix(0.173792,0.010100,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.173792,0.010100,-0.014505,0.249579,0,0);}
.m7d_c00047{transform:matrix(0.174135,0.013274,-0.019002,0.249277,0,0);-ms-transform:matrix(0.174135,0.013274,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.174135,0.013274,-0.019002,0.249277,0,0);}
.mbb_c00047{transform:matrix(0.175286,0.013362,-0.019002,0.249277,0,0);-ms-transform:matrix(0.175286,0.013362,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.175286,0.013362,-0.019002,0.249277,0,0);}
.m68_c00047{transform:matrix(0.175509,0.009672,-0.013757,0.249621,0,0);-ms-transform:matrix(0.175509,0.009672,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.175509,0.009672,-0.013757,0.249621,0,0);}
.m54_c00047{transform:matrix(0.175635,0.011087,-0.015750,0.249503,0,0);-ms-transform:matrix(0.175635,0.011087,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.175635,0.011087,-0.015750,0.249503,0,0);}
.m1d_c00047{transform:matrix(0.175654,0.009495,-0.013494,0.249636,0,0);-ms-transform:matrix(0.175654,0.009495,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.175654,0.009495,-0.013494,0.249636,0,0);}
.mdd_c00047{transform:matrix(0.175670,0.013391,-0.019002,0.249277,0,0);-ms-transform:matrix(0.175670,0.013391,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.175670,0.013391,-0.019002,0.249277,0,0);}
.m61_c00047{transform:matrix(0.175820,0.011099,-0.015750,0.249503,0,0);-ms-transform:matrix(0.175820,0.011099,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.175820,0.011099,-0.015750,0.249503,0,0);}
.m4_c00047{transform:matrix(0.176677,0.009550,-0.013494,0.249636,0,0);-ms-transform:matrix(0.176677,0.009550,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.176677,0.009550,-0.013494,0.249636,0,0);}
.mda_c00047{transform:matrix(0.176837,0.013480,-0.019002,0.249277,0,0);-ms-transform:matrix(0.176837,0.013480,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.176837,0.013480,-0.019002,0.249277,0,0);}
.m8e_c00047{transform:matrix(0.177031,0.013495,-0.019002,0.249277,0,0);-ms-transform:matrix(0.177031,0.013495,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.177031,0.013495,-0.019002,0.249277,0,0);}
.m3f_c00047{transform:matrix(0.177457,0.011202,-0.015750,0.249503,0,0);-ms-transform:matrix(0.177457,0.011202,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.177457,0.011202,-0.015750,0.249503,0,0);}
.m92_c00047{transform:matrix(0.177889,0.013560,-0.019002,0.249277,0,0);-ms-transform:matrix(0.177889,0.013560,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.177889,0.013560,-0.019002,0.249277,0,0);}
.mb8_c00047{transform:matrix(0.178786,0.013629,-0.019002,0.249277,0,0);-ms-transform:matrix(0.178786,0.013629,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.178786,0.013629,-0.019002,0.249277,0,0);}
.md7_c00047{transform:matrix(0.179195,0.013660,-0.019002,0.249277,0,0);-ms-transform:matrix(0.179195,0.013660,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.179195,0.013660,-0.019002,0.249277,0,0);}
.m85_c00047{transform:matrix(0.179499,0.013683,-0.019002,0.249277,0,0);-ms-transform:matrix(0.179499,0.013683,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.179499,0.013683,-0.019002,0.249277,0,0);}
.ma3_c00047{transform:matrix(0.179654,0.013695,-0.019002,0.249277,0,0);-ms-transform:matrix(0.179654,0.013695,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.179654,0.013695,-0.019002,0.249277,0,0);}
.m35_c00047{transform:matrix(0.179996,0.010461,-0.014505,0.249579,0,0);-ms-transform:matrix(0.179996,0.010461,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.179996,0.010461,-0.014505,0.249579,0,0);}
.m14_c00047{transform:matrix(0.180432,0.009753,-0.013494,0.249636,0,0);-ms-transform:matrix(0.180432,0.009753,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.180432,0.009753,-0.013494,0.249636,0,0);}
.mba_c00047{transform:matrix(0.181025,0.013799,-0.019002,0.249277,0,0);-ms-transform:matrix(0.181025,0.013799,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.181025,0.013799,-0.019002,0.249277,0,0);}
.mb3_c00047{transform:matrix(0.181035,0.013800,-0.019002,0.249277,0,0);-ms-transform:matrix(0.181035,0.013800,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.181035,0.013800,-0.019002,0.249277,0,0);}
.mb9_c00047{transform:matrix(0.181459,0.013832,-0.019002,0.249277,0,0);-ms-transform:matrix(0.181459,0.013832,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.181459,0.013832,-0.019002,0.249277,0,0);}
.m50_c00047{transform:matrix(0.181479,0.011456,-0.015750,0.249503,0,0);-ms-transform:matrix(0.181479,0.011456,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.181479,0.011456,-0.015750,0.249503,0,0);}
.m7b_c00047{transform:matrix(0.182024,0.010214,-0.014006,0.249607,0,0);-ms-transform:matrix(0.182024,0.010214,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.182024,0.010214,-0.014006,0.249607,0,0);}
.m63_c00047{transform:matrix(0.182397,0.011514,-0.015750,0.249503,0,0);-ms-transform:matrix(0.182397,0.011514,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.182397,0.011514,-0.015750,0.249503,0,0);}
.m7f_c00047{transform:matrix(0.182416,0.013905,-0.019002,0.249277,0,0);-ms-transform:matrix(0.182416,0.013905,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.182416,0.013905,-0.019002,0.249277,0,0);}
.ma1_c00047{transform:matrix(0.184031,0.014028,-0.019002,0.249277,0,0);-ms-transform:matrix(0.184031,0.014028,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.184031,0.014028,-0.019002,0.249277,0,0);}
.m30_c00047{transform:matrix(0.184124,0.010701,-0.014505,0.249579,0,0);-ms-transform:matrix(0.184124,0.010701,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.184124,0.010701,-0.014505,0.249579,0,0);}
.m43_c00047{transform:matrix(0.184368,0.011638,-0.015750,0.249503,0,0);-ms-transform:matrix(0.184368,0.011638,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.184368,0.011638,-0.015750,0.249503,0,0);}
.mc6_c00047{transform:matrix(0.184530,0.014066,-0.019002,0.249277,0,0);-ms-transform:matrix(0.184530,0.014066,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.184530,0.014066,-0.019002,0.249277,0,0);}
.mb2_c00047{transform:matrix(0.184754,0.014084,-0.019002,0.249277,0,0);-ms-transform:matrix(0.184754,0.014084,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.184754,0.014084,-0.019002,0.249277,0,0);}
.m40_c00047{transform:matrix(0.184782,0.011665,-0.015750,0.249503,0,0);-ms-transform:matrix(0.184782,0.011665,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.184782,0.011665,-0.015750,0.249503,0,0);}
.m6d_c00047{transform:matrix(0.184959,0.010193,-0.013757,0.249621,0,0);-ms-transform:matrix(0.184959,0.010193,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.184959,0.010193,-0.013757,0.249621,0,0);}
.m2d_c00047{transform:matrix(0.185367,0.010773,-0.014505,0.249579,0,0);-ms-transform:matrix(0.185367,0.010773,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.185367,0.010773,-0.014505,0.249579,0,0);}
.mcc_c00047{transform:matrix(0.185821,0.014165,-0.019002,0.249277,0,0);-ms-transform:matrix(0.185821,0.014165,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.185821,0.014165,-0.019002,0.249277,0,0);}
.mbd_c00047{transform:matrix(0.186344,0.014205,-0.019002,0.249277,0,0);-ms-transform:matrix(0.186344,0.014205,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.186344,0.014205,-0.019002,0.249277,0,0);}
.m17_c00047{transform:matrix(0.186363,0.010074,-0.013494,0.249636,0,0);-ms-transform:matrix(0.186363,0.010074,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.186363,0.010074,-0.013494,0.249636,0,0);}
.m18_c00047{transform:matrix(0.186568,0.010085,-0.013494,0.249636,0,0);-ms-transform:matrix(0.186568,0.010085,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.186568,0.010085,-0.013494,0.249636,0,0);}
.m89_c00047{transform:matrix(0.187257,0.014274,-0.019002,0.249277,0,0);-ms-transform:matrix(0.187257,0.014274,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.187257,0.014274,-0.019002,0.249277,0,0);}
.m3_c00047{transform:matrix(0.187496,0.010135,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187496,0.010135,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187496,0.010135,-0.013494,0.249636,0,0);}
.m5d_c00047{transform:matrix(0.188021,0.011869,-0.015750,0.249503,0,0);-ms-transform:matrix(0.188021,0.011869,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.188021,0.011869,-0.015750,0.249503,0,0);}
.m79_c00047{transform:matrix(0.188439,0.010574,-0.014006,0.249607,0,0);-ms-transform:matrix(0.188439,0.010574,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.188439,0.010574,-0.014006,0.249607,0,0);}
.m99_c00047{transform:matrix(0.188648,0.014380,-0.019002,0.249277,0,0);-ms-transform:matrix(0.188648,0.014380,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.188648,0.014380,-0.019002,0.249277,0,0);}
.m2f_c00047{transform:matrix(0.188737,0.010969,-0.014505,0.249579,0,0);-ms-transform:matrix(0.188737,0.010969,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.188737,0.010969,-0.014505,0.249579,0,0);}
.mbe_c00047{transform:matrix(0.189590,0.014452,-0.019002,0.249277,0,0);-ms-transform:matrix(0.189590,0.014452,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.189590,0.014452,-0.019002,0.249277,0,0);}
.m1b_c00047{transform:matrix(0.189798,0.010259,-0.013494,0.249636,0,0);-ms-transform:matrix(0.189798,0.010259,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.189798,0.010259,-0.013494,0.249636,0,0);}
.m6c_c00047{transform:matrix(0.189882,0.010464,-0.013757,0.249621,0,0);-ms-transform:matrix(0.189882,0.010464,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.189882,0.010464,-0.013757,0.249621,0,0);}
.m29_c00047{transform:matrix(0.190134,0.011050,-0.014505,0.249579,0,0);-ms-transform:matrix(0.190134,0.011050,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.190134,0.011050,-0.014505,0.249579,0,0);}
.m21_c00047{transform:matrix(0.190414,0.011066,-0.014505,0.249579,0,0);-ms-transform:matrix(0.190414,0.011066,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.190414,0.011066,-0.014505,0.249579,0,0);}
.m4d_c00047{transform:matrix(0.190665,0.012036,-0.015750,0.249503,0,0);-ms-transform:matrix(0.190665,0.012036,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.190665,0.012036,-0.015750,0.249503,0,0);}
.m27_c00047{transform:matrix(0.190683,0.011082,-0.014505,0.249579,0,0);-ms-transform:matrix(0.190683,0.011082,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.190683,0.011082,-0.014505,0.249579,0,0);}
.m1e_c00047{transform:matrix(0.190826,0.010315,-0.013494,0.249636,0,0);-ms-transform:matrix(0.190826,0.010315,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.190826,0.010315,-0.013494,0.249636,0,0);}
.m15_c00047{transform:matrix(0.190841,0.010316,-0.013494,0.249636,0,0);-ms-transform:matrix(0.190841,0.010316,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.190841,0.010316,-0.013494,0.249636,0,0);}
.m88_c00047{transform:matrix(0.191260,0.014580,-0.019002,0.249277,0,0);-ms-transform:matrix(0.191260,0.014580,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.191260,0.014580,-0.019002,0.249277,0,0);}
.m34_c00047{transform:matrix(0.191547,0.011132,-0.014505,0.249579,0,0);-ms-transform:matrix(0.191547,0.011132,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.191547,0.011132,-0.014505,0.249579,0,0);}
.m65_c00047{transform:matrix(0.191713,0.012102,-0.015750,0.249503,0,0);-ms-transform:matrix(0.191713,0.012102,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.191713,0.012102,-0.015750,0.249503,0,0);}
.m9a_c00047{transform:matrix(0.192781,0.014695,-0.019002,0.249277,0,0);-ms-transform:matrix(0.192781,0.014695,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.192781,0.014695,-0.019002,0.249277,0,0);}
.md3_c00047{transform:matrix(0.192796,0.014697,-0.019002,0.249277,0,0);-ms-transform:matrix(0.192796,0.014697,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.192796,0.014697,-0.019002,0.249277,0,0);}
.mf_c00047{transform:matrix(0.192943,0.010429,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192943,0.010429,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192943,0.010429,-0.013494,0.249636,0,0);}
.m9b_c00047{transform:matrix(0.193090,0.014719,-0.019002,0.249277,0,0);-ms-transform:matrix(0.193090,0.014719,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.193090,0.014719,-0.019002,0.249277,0,0);}
.m72_c00047{transform:matrix(0.193216,0.010842,-0.014006,0.249607,0,0);-ms-transform:matrix(0.193216,0.010842,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.193216,0.010842,-0.014006,0.249607,0,0);}
.m98_c00047{transform:matrix(0.193244,0.014731,-0.019002,0.249277,0,0);-ms-transform:matrix(0.193244,0.014731,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.193244,0.014731,-0.019002,0.249277,0,0);}
.m16_c00047{transform:matrix(0.194446,0.010511,-0.013494,0.249636,0,0);-ms-transform:matrix(0.194446,0.010511,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.194446,0.010511,-0.013494,0.249636,0,0);}
.m5c_c00047{transform:matrix(0.194498,0.012278,-0.015750,0.249503,0,0);-ms-transform:matrix(0.194498,0.012278,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.194498,0.012278,-0.015750,0.249503,0,0);}
.m9d_c00047{transform:matrix(0.194551,0.014830,-0.019002,0.249277,0,0);-ms-transform:matrix(0.194551,0.014830,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.194551,0.014830,-0.019002,0.249277,0,0);}
.m4f_c00047{transform:matrix(0.194982,0.012308,-0.015750,0.249503,0,0);-ms-transform:matrix(0.194982,0.012308,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.194982,0.012308,-0.015750,0.249503,0,0);}
.m9f_c00047{transform:matrix(0.195268,0.014885,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195268,0.014885,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195268,0.014885,-0.019002,0.249277,0,0);}
.mc5_c00047{transform:matrix(0.195458,0.014900,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195458,0.014900,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195458,0.014900,-0.019002,0.249277,0,0);}
.mab_c00047{transform:matrix(0.195473,0.014901,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195473,0.014901,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195473,0.014901,-0.019002,0.249277,0,0);}
.mac_c00047{transform:matrix(0.195568,0.014908,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195568,0.014908,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195568,0.014908,-0.019002,0.249277,0,0);}
.mb6_c00047{transform:matrix(0.195812,0.014926,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195812,0.014926,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195812,0.014926,-0.019002,0.249277,0,0);}
.md6_c00047{transform:matrix(0.195912,0.014934,-0.019002,0.249277,0,0);-ms-transform:matrix(0.195912,0.014934,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.195912,0.014934,-0.019002,0.249277,0,0);}
.m24_c00047{transform:matrix(0.196049,0.011394,-0.014505,0.249579,0,0);-ms-transform:matrix(0.196049,0.011394,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.196049,0.011394,-0.014505,0.249579,0,0);}
.mcd_c00047{transform:matrix(0.196954,0.015014,-0.019002,0.249277,0,0);-ms-transform:matrix(0.196954,0.015014,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.196954,0.015014,-0.019002,0.249277,0,0);}
.m91_c00047{transform:matrix(0.197013,0.015018,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197013,0.015018,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197013,0.015018,-0.019002,0.249277,0,0);}
.m7e_c00047{transform:matrix(0.197178,0.015031,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197178,0.015031,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197178,0.015031,-0.019002,0.249277,0,0);}
.md0_c00047{transform:matrix(0.197342,0.015043,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197342,0.015043,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197342,0.015043,-0.019002,0.249277,0,0);}
.m32_c00047{transform:matrix(0.197407,0.011473,-0.014505,0.249579,0,0);-ms-transform:matrix(0.197407,0.011473,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.197407,0.011473,-0.014505,0.249579,0,0);}
.ma7_c00047{transform:matrix(0.197527,0.015057,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197527,0.015057,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197527,0.015057,-0.019002,0.249277,0,0);}
.m82_c00047{transform:matrix(0.197552,0.015059,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197552,0.015059,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197552,0.015059,-0.019002,0.249277,0,0);}
.m67_c00047{transform:matrix(0.197652,0.012477,-0.015750,0.249503,0,0);-ms-transform:matrix(0.197652,0.012477,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.197652,0.012477,-0.015750,0.249503,0,0);}
.ma8_c00047{transform:matrix(0.197861,0.015083,-0.019002,0.249277,0,0);-ms-transform:matrix(0.197861,0.015083,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.197861,0.015083,-0.019002,0.249277,0,0);}
.m20_c00047{transform:matrix(0.198136,0.011515,-0.014505,0.249579,0,0);-ms-transform:matrix(0.198136,0.011515,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.198136,0.011515,-0.014505,0.249579,0,0);}
.m37_c00047{transform:matrix(0.198340,0.011527,-0.014505,0.249579,0,0);-ms-transform:matrix(0.198340,0.011527,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.198340,0.011527,-0.014505,0.249579,0,0);}
.mc2_c00047{transform:matrix(0.198449,0.015128,-0.019002,0.249277,0,0);-ms-transform:matrix(0.198449,0.015128,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.198449,0.015128,-0.019002,0.249277,0,0);}
.m9c_c00047{transform:matrix(0.198808,0.015155,-0.019002,0.249277,0,0);-ms-transform:matrix(0.198808,0.015155,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.198808,0.015155,-0.019002,0.249277,0,0);}
.m94_c00047{transform:matrix(0.198978,0.015168,-0.019002,0.249277,0,0);-ms-transform:matrix(0.198978,0.015168,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.198978,0.015168,-0.019002,0.249277,0,0);}
.m55_c00047{transform:matrix(0.199653,0.012603,-0.015750,0.249503,0,0);-ms-transform:matrix(0.199653,0.012603,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.199653,0.012603,-0.015750,0.249503,0,0);}
.mc_c00047{transform:matrix(0.200572,0.010842,-0.013494,0.249636,0,0);-ms-transform:matrix(0.200572,0.010842,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.200572,0.010842,-0.013494,0.249636,0,0);}
.m86_c00047{transform:matrix(0.200628,0.015294,-0.019002,0.249277,0,0);-ms-transform:matrix(0.200628,0.015294,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.200628,0.015294,-0.019002,0.249277,0,0);}
.mbf_c00047{transform:matrix(0.200673,0.015297,-0.019002,0.249277,0,0);-ms-transform:matrix(0.200673,0.015297,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.200673,0.015297,-0.019002,0.249277,0,0);}
.m26_c00047{transform:matrix(0.201036,0.011683,-0.014505,0.249579,0,0);-ms-transform:matrix(0.201036,0.011683,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.201036,0.011683,-0.014505,0.249579,0,0);}
.m97_c00047{transform:matrix(0.201077,0.015328,-0.019002,0.249277,0,0);-ms-transform:matrix(0.201077,0.015328,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.201077,0.015328,-0.019002,0.249277,0,0);}
.mc9_c00047{transform:matrix(0.201107,0.015330,-0.019002,0.249277,0,0);-ms-transform:matrix(0.201107,0.015330,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.201107,0.015330,-0.019002,0.249277,0,0);}
.ma9_c00047{transform:matrix(0.201141,0.015333,-0.019002,0.249277,0,0);-ms-transform:matrix(0.201141,0.015333,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.201141,0.015333,-0.019002,0.249277,0,0);}
.m47_c00047{transform:matrix(0.201304,0.012708,-0.015750,0.249503,0,0);-ms-transform:matrix(0.201304,0.012708,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.201304,0.012708,-0.015750,0.249503,0,0);}
.m2_c00047{transform:matrix(0.201800,0.010908,-0.013494,0.249636,0,0);-ms-transform:matrix(0.201800,0.010908,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.201800,0.010908,-0.013494,0.249636,0,0);}
.m2a_c00047{transform:matrix(0.202653,0.011777,-0.014505,0.249579,0,0);-ms-transform:matrix(0.202653,0.011777,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.202653,0.011777,-0.014505,0.249579,0,0);}
.m45_c00047{transform:matrix(0.202826,0.012804,-0.015750,0.249503,0,0);-ms-transform:matrix(0.202826,0.012804,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.202826,0.012804,-0.015750,0.249503,0,0);}
.m41_c00047{transform:matrix(0.202891,0.012808,-0.015750,0.249503,0,0);-ms-transform:matrix(0.202891,0.012808,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.202891,0.012808,-0.015750,0.249503,0,0);}
.mad_c00047{transform:matrix(0.202981,0.015473,-0.019002,0.249277,0,0);-ms-transform:matrix(0.202981,0.015473,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.202981,0.015473,-0.019002,0.249277,0,0);}
.m73_c00047{transform:matrix(0.203110,0.011397,-0.014006,0.249607,0,0);-ms-transform:matrix(0.203110,0.011397,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.203110,0.011397,-0.014006,0.249607,0,0);}
.md1_c00047{transform:matrix(0.203235,0.015492,-0.019002,0.249277,0,0);-ms-transform:matrix(0.203235,0.015492,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.203235,0.015492,-0.019002,0.249277,0,0);}
.mc8_c00047{transform:matrix(0.203435,0.015508,-0.019002,0.249277,0,0);-ms-transform:matrix(0.203435,0.015508,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.203435,0.015508,-0.019002,0.249277,0,0);}
.mcb_c00047{transform:matrix(0.203619,0.015522,-0.019002,0.249277,0,0);-ms-transform:matrix(0.203619,0.015522,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.203619,0.015522,-0.019002,0.249277,0,0);}
.m33_c00047{transform:matrix(0.203736,0.011840,-0.014505,0.249579,0,0);-ms-transform:matrix(0.203736,0.011840,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.203736,0.011840,-0.014505,0.249579,0,0);}
.m5f_c00047{transform:matrix(0.203879,0.012870,-0.015750,0.249503,0,0);-ms-transform:matrix(0.203879,0.012870,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.203879,0.012870,-0.015750,0.249503,0,0);}
.m58_c00047{transform:matrix(0.204318,0.012898,-0.015750,0.249503,0,0);-ms-transform:matrix(0.204318,0.012898,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.204318,0.012898,-0.015750,0.249503,0,0);}
.ma2_c00047{transform:matrix(0.204606,0.015597,-0.019002,0.249277,0,0);-ms-transform:matrix(0.204606,0.015597,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.204606,0.015597,-0.019002,0.249277,0,0);}
.md9_c00047{transform:matrix(0.204841,0.015615,-0.019002,0.249277,0,0);-ms-transform:matrix(0.204841,0.015615,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.204841,0.015615,-0.019002,0.249277,0,0);}
.m69_c00047{transform:matrix(0.204869,0.011290,-0.013757,0.249621,0,0);-ms-transform:matrix(0.204869,0.011290,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.204869,0.011290,-0.013757,0.249621,0,0);}
.m42_c00047{transform:matrix(0.204882,0.012933,-0.015750,0.249503,0,0);-ms-transform:matrix(0.204882,0.012933,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.204882,0.012933,-0.015750,0.249503,0,0);}
.m7a_c00047{transform:matrix(0.205347,0.011522,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205347,0.011522,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205347,0.011522,-0.014006,0.249607,0,0);}
.m6e_c00047{transform:matrix(0.205473,0.011324,-0.013757,0.249621,0,0);-ms-transform:matrix(0.205473,0.011324,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.205473,0.011324,-0.013757,0.249621,0,0);}
.m44_c00047{transform:matrix(0.205980,0.013003,-0.015750,0.249503,0,0);-ms-transform:matrix(0.205980,0.013003,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.205980,0.013003,-0.015750,0.249503,0,0);}
.m4a_c00047{transform:matrix(0.206155,0.013014,-0.015750,0.249503,0,0);-ms-transform:matrix(0.206155,0.013014,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.206155,0.013014,-0.015750,0.249503,0,0);}
.m25_c00047{transform:matrix(0.206252,0.011987,-0.014505,0.249579,0,0);-ms-transform:matrix(0.206252,0.011987,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.206252,0.011987,-0.014505,0.249579,0,0);}
.m52_c00047{transform:matrix(0.206893,0.013060,-0.015750,0.249503,0,0);-ms-transform:matrix(0.206893,0.013060,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.206893,0.013060,-0.015750,0.249503,0,0);}
.m6_c00047{transform:matrix(0.207043,0.011191,-0.013494,0.249636,0,0);-ms-transform:matrix(0.207043,0.011191,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.207043,0.011191,-0.013494,0.249636,0,0);}
.m38_c00047{transform:matrix(0.207066,0.012034,-0.014505,0.249579,0,0);-ms-transform:matrix(0.207066,0.012034,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.207066,0.012034,-0.014505,0.249579,0,0);}
.m9e_c00047{transform:matrix(0.207109,0.015788,-0.019002,0.249277,0,0);-ms-transform:matrix(0.207109,0.015788,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.207109,0.015788,-0.019002,0.249277,0,0);}
.mc1_c00047{transform:matrix(0.207478,0.015816,-0.019002,0.249277,0,0);-ms-transform:matrix(0.207478,0.015816,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.207478,0.015816,-0.019002,0.249277,0,0);}
.m51_c00047{transform:matrix(0.207572,0.013103,-0.015750,0.249503,0,0);-ms-transform:matrix(0.207572,0.013103,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.207572,0.013103,-0.015750,0.249503,0,0);}
.m81_c00047{transform:matrix(0.207967,0.015853,-0.019002,0.249277,0,0);-ms-transform:matrix(0.207967,0.015853,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.207967,0.015853,-0.019002,0.249277,0,0);}
.m8f_c00047{transform:matrix(0.208196,0.015871,-0.019002,0.249277,0,0);-ms-transform:matrix(0.208196,0.015871,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.208196,0.015871,-0.019002,0.249277,0,0);}
.mb5_c00047{transform:matrix(0.208281,0.015877,-0.019002,0.249277,0,0);-ms-transform:matrix(0.208281,0.015877,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.208281,0.015877,-0.019002,0.249277,0,0);}
.m59_c00047{transform:matrix(0.208285,0.013148,-0.015750,0.249503,0,0);-ms-transform:matrix(0.208285,0.013148,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.208285,0.013148,-0.015750,0.249503,0,0);}
.m8d_c00047{transform:matrix(0.208405,0.015886,-0.019002,0.249277,0,0);-ms-transform:matrix(0.208405,0.015886,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.208405,0.015886,-0.019002,0.249277,0,0);}
.m2e_c00047{transform:matrix(0.208813,0.012135,-0.014505,0.249579,0,0);-ms-transform:matrix(0.208813,0.012135,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.208813,0.012135,-0.014505,0.249579,0,0);}
.m2b_c00047{transform:matrix(0.209432,0.012171,-0.014505,0.249579,0,0);-ms-transform:matrix(0.209432,0.012171,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.209432,0.012171,-0.014505,0.249579,0,0);}
.m5e_c00047{transform:matrix(0.210087,0.013262,-0.015750,0.249503,0,0);-ms-transform:matrix(0.210087,0.013262,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.210087,0.013262,-0.015750,0.249503,0,0);}
.m64_c00047{transform:matrix(0.210386,0.013281,-0.015750,0.249503,0,0);-ms-transform:matrix(0.210386,0.013281,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.210386,0.013281,-0.015750,0.249503,0,0);}
.m93_c00047{transform:matrix(0.210644,0.016057,-0.019002,0.249277,0,0);-ms-transform:matrix(0.210644,0.016057,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.210644,0.016057,-0.019002,0.249277,0,0);}
.m36_c00047{transform:matrix(0.211039,0.012265,-0.014505,0.249579,0,0);-ms-transform:matrix(0.211039,0.012265,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.211039,0.012265,-0.014505,0.249579,0,0);}
.mdb_c00047{transform:matrix(0.211357,0.016111,-0.019002,0.249277,0,0);-ms-transform:matrix(0.211357,0.016111,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.211357,0.016111,-0.019002,0.249277,0,0);}
.m4c_c00047{transform:matrix(0.211574,0.013356,-0.015750,0.249503,0,0);-ms-transform:matrix(0.211574,0.013356,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.211574,0.013356,-0.015750,0.249503,0,0);}
.m62_c00047{transform:matrix(0.212662,0.013425,-0.015750,0.249503,0,0);-ms-transform:matrix(0.212662,0.013425,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.212662,0.013425,-0.015750,0.249503,0,0);}
.ma5_c00047{transform:matrix(0.213341,0.016263,-0.019002,0.249277,0,0);-ms-transform:matrix(0.213341,0.016263,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.213341,0.016263,-0.019002,0.249277,0,0);}
.mca_c00047{transform:matrix(0.213585,0.016281,-0.019002,0.249277,0,0);-ms-transform:matrix(0.213585,0.016281,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.213585,0.016281,-0.019002,0.249277,0,0);}
.m48_c00047{transform:matrix(0.213645,0.013487,-0.015750,0.249503,0,0);-ms-transform:matrix(0.213645,0.013487,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.213645,0.013487,-0.015750,0.249503,0,0);}
.m4e_c00047{transform:matrix(0.213740,0.013493,-0.015750,0.249503,0,0);-ms-transform:matrix(0.213740,0.013493,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.213740,0.013493,-0.015750,0.249503,0,0);}
.m56_c00047{transform:matrix(0.214144,0.013518,-0.015750,0.249503,0,0);-ms-transform:matrix(0.214144,0.013518,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.214144,0.013518,-0.015750,0.249503,0,0);}
.m5b_c00047{transform:matrix(0.214199,0.013522,-0.015750,0.249503,0,0);-ms-transform:matrix(0.214199,0.013522,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.214199,0.013522,-0.015750,0.249503,0,0);}
.m60_c00047{transform:matrix(0.215217,0.013586,-0.015750,0.249503,0,0);-ms-transform:matrix(0.215217,0.013586,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.215217,0.013586,-0.015750,0.249503,0,0);}
.m11_c00047{transform:matrix(0.215790,0.011664,-0.013494,0.249636,0,0);-ms-transform:matrix(0.215790,0.011664,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.215790,0.011664,-0.013494,0.249636,0,0);}
.m3c_c00047{transform:matrix(0.215816,0.012542,-0.014505,0.249579,0,0);-ms-transform:matrix(0.215816,0.012542,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.215816,0.012542,-0.014505,0.249579,0,0);}
.m96_c00047{transform:matrix(0.215884,0.016457,-0.019002,0.249277,0,0);-ms-transform:matrix(0.215884,0.016457,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.215884,0.016457,-0.019002,0.249277,0,0);}
.m7_c00047{transform:matrix(0.216319,0.011693,-0.013494,0.249636,0,0);-ms-transform:matrix(0.216319,0.011693,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.216319,0.011693,-0.013494,0.249636,0,0);}
.m75_c00047{transform:matrix(0.216834,0.012167,-0.014006,0.249607,0,0);-ms-transform:matrix(0.216834,0.012167,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.216834,0.012167,-0.014006,0.249607,0,0);}
.m77_c00047{transform:matrix(0.216864,0.012169,-0.014006,0.249607,0,0);-ms-transform:matrix(0.216864,0.012169,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.216864,0.012169,-0.014006,0.249607,0,0);}
.m84_c00047{transform:matrix(0.217085,0.016548,-0.019002,0.249277,0,0);-ms-transform:matrix(0.217085,0.016548,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.217085,0.016548,-0.019002,0.249277,0,0);}
.m78_c00047{transform:matrix(0.217523,0.012206,-0.014006,0.249607,0,0);-ms-transform:matrix(0.217523,0.012206,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.217523,0.012206,-0.014006,0.249607,0,0);}
.m4b_c00047{transform:matrix(0.217537,0.013732,-0.015750,0.249503,0,0);-ms-transform:matrix(0.217537,0.013732,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.217537,0.013732,-0.015750,0.249503,0,0);}
.m3b_c00047{transform:matrix(0.217847,0.012660,-0.014505,0.249579,0,0);-ms-transform:matrix(0.217847,0.012660,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.217847,0.012660,-0.014505,0.249579,0,0);}
.m46_c00047{transform:matrix(0.219713,0.013870,-0.015750,0.249503,0,0);-ms-transform:matrix(0.219713,0.013870,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.219713,0.013870,-0.015750,0.249503,0,0);}
.m74_c00047{transform:matrix(0.219824,0.012335,-0.014006,0.249607,0,0);-ms-transform:matrix(0.219824,0.012335,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.219824,0.012335,-0.014006,0.249607,0,0);}
.mb0_c00047{transform:matrix(0.219932,0.016765,-0.019002,0.249277,0,0);-ms-transform:matrix(0.219932,0.016765,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.219932,0.016765,-0.019002,0.249277,0,0);}
.ma6_c00047{transform:matrix(0.220246,0.016789,-0.019002,0.249277,0,0);-ms-transform:matrix(0.220246,0.016789,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.220246,0.016789,-0.019002,0.249277,0,0);}
.m2c_c00047{transform:matrix(0.220278,0.012802,-0.014505,0.249579,0,0);-ms-transform:matrix(0.220278,0.012802,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.220278,0.012802,-0.014505,0.249579,0,0);}
.m95_c00047{transform:matrix(0.220819,0.016833,-0.019002,0.249277,0,0);-ms-transform:matrix(0.220819,0.016833,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.220819,0.016833,-0.019002,0.249277,0,0);}
.m8a_c00047{transform:matrix(0.221512,0.016886,-0.019002,0.249277,0,0);-ms-transform:matrix(0.221512,0.016886,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.221512,0.016886,-0.019002,0.249277,0,0);}
.m66_c00047{transform:matrix(0.221714,0.013996,-0.015750,0.249503,0,0);-ms-transform:matrix(0.221714,0.013996,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.221714,0.013996,-0.015750,0.249503,0,0);}
.ma0_c00047{transform:matrix(0.223028,0.017001,-0.019002,0.249277,0,0);-ms-transform:matrix(0.223028,0.017001,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.223028,0.017001,-0.019002,0.249277,0,0);}
.m8c_c00047{transform:matrix(0.224598,0.017121,-0.019002,0.249277,0,0);-ms-transform:matrix(0.224598,0.017121,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.224598,0.017121,-0.019002,0.249277,0,0);}
.m49_c00047{transform:matrix(0.225292,0.014222,-0.015750,0.249503,0,0);-ms-transform:matrix(0.225292,0.014222,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.225292,0.014222,-0.015750,0.249503,0,0);}
.m3d_c00047{transform:matrix(0.226039,0.013137,-0.014505,0.249579,0,0);-ms-transform:matrix(0.226039,0.013137,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.226039,0.013137,-0.014505,0.249579,0,0);}
.m8b_c00047{transform:matrix(0.226064,0.017233,-0.019002,0.249277,0,0);-ms-transform:matrix(0.226064,0.017233,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.226064,0.017233,-0.019002,0.249277,0,0);}
.m1_c00047{transform:matrix(0.228287,0.012340,-0.013494,0.249636,0,0);-ms-transform:matrix(0.228287,0.012340,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.228287,0.012340,-0.013494,0.249636,0,0);}
.m3e_c00047{transform:matrix(0.228969,0.013307,-0.014505,0.249579,0,0);-ms-transform:matrix(0.228969,0.013307,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.228969,0.013307,-0.014505,0.249579,0,0);}
.m53_c00047{transform:matrix(0.229468,0.014485,-0.015750,0.249503,0,0);-ms-transform:matrix(0.229468,0.014485,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.229468,0.014485,-0.015750,0.249503,0,0);}
.m80_c00047{transform:matrix(0.230362,0.017560,-0.019002,0.249277,0,0);-ms-transform:matrix(0.230362,0.017560,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.230362,0.017560,-0.019002,0.249277,0,0);}
.m83_c00047{transform:matrix(0.231060,0.017613,-0.019002,0.249277,0,0);-ms-transform:matrix(0.231060,0.017613,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.231060,0.017613,-0.019002,0.249277,0,0);}
.m5_c00047{transform:matrix(0.232051,0.012543,-0.013494,0.249636,0,0);-ms-transform:matrix(0.232051,0.012543,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.232051,0.012543,-0.013494,0.249636,0,0);}
.m87_c00047{transform:matrix(0.232471,0.017721,-0.019002,0.249277,0,0);-ms-transform:matrix(0.232471,0.017721,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.232471,0.017721,-0.019002,0.249277,0,0);}
.mc7_c00047{transform:matrix(0.236025,0.017992,-0.019002,0.249277,0,0);-ms-transform:matrix(0.236025,0.017992,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.236025,0.017992,-0.019002,0.249277,0,0);}
.m57_c00047{transform:matrix(0.240431,0.015178,-0.015750,0.249503,0,0);-ms-transform:matrix(0.240431,0.015178,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.240431,0.015178,-0.015750,0.249503,0,0);}
.ma4_c00047{transform:matrix(0.242307,0.018471,-0.019002,0.249277,0,0);-ms-transform:matrix(0.242307,0.018471,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.242307,0.018471,-0.019002,0.249277,0,0);}
.m90_c00047{transform:matrix(0.245353,0.018703,-0.019002,0.249277,0,0);-ms-transform:matrix(0.245353,0.018703,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.245353,0.018703,-0.019002,0.249277,0,0);}
.m3a_c00047{transform:matrix(0.248366,0.014434,-0.014505,0.249579,0,0);-ms-transform:matrix(0.248366,0.014434,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.248366,0.014434,-0.014505,0.249579,0,0);}
.m76_c00047{transform:matrix(0.251155,0.014093,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251155,0.014093,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251155,0.014093,-0.014006,0.249607,0,0);}
.m39_c00047{transform:matrix(0.252654,0.014683,-0.014505,0.249579,0,0);-ms-transform:matrix(0.252654,0.014683,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.252654,0.014683,-0.014505,0.249579,0,0);}
.m9_c00047{transform:matrix(0.263985,0.014269,-0.013494,0.249636,0,0);-ms-transform:matrix(0.263985,0.014269,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.263985,0.014269,-0.013494,0.249636,0,0);}
.m6f_c00047{transform:matrix(0.334662,0.018443,-0.013757,0.249621,0,0);-ms-transform:matrix(0.334662,0.018443,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.334662,0.018443,-0.013757,0.249621,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:0.000000px;}
.fc0_c00047{color:transparent;}
.fs7_c00047{font-size:54.582744px;}
.fse_c00047{font-size:55.626065px;}
.fsd_c00047{font-size:56.675614px;}
.fs8_c00047{font-size:57.749220px;}
.fs6_c00047{font-size:58.781416px;}
.fs10_c00047{font-size:58.793679px;}
.fs9_c00047{font-size:58.799206px;}
.fs11_c00047{font-size:59.843566px;}
.fsb_c00047{font-size:59.849192px;}
.fs1_c00047{font-size:59.877435px;}
.fs5_c00047{font-size:60.880753px;}
.fs13_c00047{font-size:60.893453px;}
.fs12_c00047{font-size:61.943340px;}
.fsa_c00047{font-size:61.949164px;}
.fsf_c00047{font-size:62.993227px;}
.fs16_c00047{font-size:65.093001px;}
.fs3_c00047{font-size:66.180323px;}
.fs4_c00047{font-size:67.178761px;}
.fs15_c00047{font-size:67.192776px;}
.fsc_c00047{font-size:68.216857px;}
.fs14_c00047{font-size:68.242663px;}
.fs2_c00047{font-size:68.281285px;}
.fs0_c00047{font-size:75.600000px;}
.y0_c00047{bottom:0.000000px;}
.yde_c00047{bottom:34.223041px;}
.ydd_c00047{bottom:35.527305px;}
.ydc_c00047{bottom:36.397992px;}
.ydb_c00047{bottom:38.534377px;}
.yda_c00047{bottom:43.786590px;}
.yd9_c00047{bottom:44.779798px;}
.yd7_c00047{bottom:47.848378px;}
.yd8_c00047{bottom:48.981441px;}
.yd6_c00047{bottom:49.914871px;}
.yd5_c00047{bottom:51.478215px;}
.yd4_c00047{bottom:56.704468px;}
.yd3_c00047{bottom:58.494357px;}
.yd2_c00047{bottom:61.861624px;}
.yd1_c00047{bottom:65.022867px;}
.ycd_c00047{bottom:65.231523px;}
.yd0_c00047{bottom:66.276331px;}
.ycc_c00047{bottom:66.626728px;}
.ycf_c00047{bottom:67.600590px;}
.yce_c00047{bottom:69.742665px;}
.ycb_c00047{bottom:72.374412px;}
.yca_c00047{bottom:75.606678px;}
.yc9_c00047{bottom:77.712690px;}
.yc8_c00047{bottom:80.514031px;}
.yc6_c00047{bottom:83.815966px;}
.yc7_c00047{bottom:85.427085px;}
.yc5_c00047{bottom:86.264064px;}
.yc4_c00047{bottom:87.646401px;}
.yc3_c00047{bottom:91.549386px;}
.yc2_c00047{bottom:95.817471px;}
.yc1_c00047{bottom:97.314625px;}
.ybe_c00047{bottom:100.522981px;}
.yc0_c00047{bottom:100.739530px;}
.ybd_c00047{bottom:101.915590px;}
.ybf_c00047{bottom:102.166515px;}
.ybc_c00047{bottom:104.214360px;}
.ybb_c00047{bottom:107.343675px;}
.yba_c00047{bottom:108.856332px;}
.yb9_c00047{bottom:111.711834px;}
.yb8_c00047{bottom:113.490552px;}
.yb6_c00047{bottom:116.177826px;}
.yb5_c00047{bottom:118.722597px;}
.yb7_c00047{bottom:118.901094px;}
.yb4_c00047{bottom:120.798858px;}
.yb3_c00047{bottom:125.572602px;}
.yb2_c00047{bottom:127.680642px;}
.yb1_c00047{bottom:131.539810px;}
.yb0_c00047{bottom:132.930976px;}
.yaf_c00047{bottom:134.810575px;}
.yae_c00047{bottom:135.217957px;}
.yad_c00047{bottom:140.460714px;}
.yac_c00047{bottom:143.383518px;}
.yab_c00047{bottom:144.846744px;}
.yaa_c00047{bottom:146.125969px;}
.ya9_c00047{bottom:151.557501px;}
.ya8_c00047{bottom:152.073729px;}
.ya7_c00047{bottom:153.853239px;}
.ya6_c00047{bottom:157.790350px;}
.ya5_c00047{bottom:160.746850px;}
.ya4_c00047{bottom:161.772042px;}
.ya3_c00047{bottom:163.018497px;}
.ya2_c00047{bottom:165.210204px;}
.ya1_c00047{bottom:167.472402px;}
.ya0_c00047{bottom:170.541864px;}
.y9f_c00047{bottom:175.596115px;}
.y9e_c00047{bottom:179.237250px;}
.y9d_c00047{bottom:180.461431px;}
.y9c_c00047{bottom:182.840517px;}
.y9a_c00047{bottom:185.564809px;}
.y9b_c00047{bottom:185.584162px;}
.y99_c00047{bottom:189.967546px;}
.y98_c00047{bottom:191.443443px;}
.y97_c00047{bottom:193.998298px;}
.y96_c00047{bottom:198.578163px;}
.y95_c00047{bottom:199.986552px;}
.y94_c00047{bottom:202.729452px;}
.y92_c00047{bottom:204.158304px;}
.y93_c00047{bottom:204.189516px;}
.y91_c00047{bottom:207.795438px;}
.y90_c00047{bottom:209.135193px;}
.y8f_c00047{bottom:210.208707px;}
.y8e_c00047{bottom:212.053624px;}
.y8d_c00047{bottom:212.932026px;}
.y8c_c00047{bottom:217.338297px;}
.y8b_c00047{bottom:218.249148px;}
.y8a_c00047{bottom:220.678692px;}
.y89_c00047{bottom:221.114919px;}
.y88_c00047{bottom:221.920489px;}
.y87_c00047{bottom:226.468519px;}
.y86_c00047{bottom:227.919364px;}
.y85_c00047{bottom:228.753394px;}
.y84_c00047{bottom:234.118153px;}
.y82_c00047{bottom:236.374968px;}
.y83_c00047{bottom:237.961810px;}
.y81_c00047{bottom:238.293360px;}
.y80_c00047{bottom:239.423328px;}
.y7f_c00047{bottom:241.408296px;}
.y7e_c00047{bottom:244.678500px;}
.y7d_c00047{bottom:290.082645px;}
.y7c_c00047{bottom:294.524226px;}
.y7b_c00047{bottom:297.521862px;}
.y7a_c00047{bottom:299.125122px;}
.y79_c00047{bottom:300.521094px;}
.y78_c00047{bottom:302.484252px;}
.y77_c00047{bottom:305.169627px;}
.y76_c00047{bottom:306.469488px;}
.y75_c00047{bottom:307.680600px;}
.y74_c00047{bottom:309.225360px;}
.y73_c00047{bottom:310.241172px;}
.y72_c00047{bottom:311.406840px;}
.y71_c00047{bottom:313.201500px;}
.y70_c00047{bottom:321.894660px;}
.y6f_c00047{bottom:325.478708px;}
.y6e_c00047{bottom:326.912888px;}
.y6d_c00047{bottom:330.316590px;}
.y6c_c00047{bottom:332.323898px;}
.y6b_c00047{bottom:333.934380px;}
.y6a_c00047{bottom:334.627875px;}
.y69_c00047{bottom:336.727500px;}
.y68_c00047{bottom:340.067875px;}
.y67_c00047{bottom:340.716631px;}
.y66_c00047{bottom:344.130721px;}
.y65_c00047{bottom:345.207162px;}
.y64_c00047{bottom:346.563244px;}
.y63_c00047{bottom:350.046190px;}
.y62_c00047{bottom:351.359703px;}
.y61_c00047{bottom:354.547981px;}
.y60_c00047{bottom:355.365085px;}
.y5f_c00047{bottom:357.348969px;}
.y5e_c00047{bottom:358.777569px;}
.y5d_c00047{bottom:362.883366px;}
.y5c_c00047{bottom:365.450788px;}
.y5b_c00047{bottom:366.714694px;}
.y5a_c00047{bottom:367.378887px;}
.y59_c00047{bottom:372.097075px;}
.y58_c00047{bottom:374.570749px;}
.y57_c00047{bottom:375.692446px;}
.y56_c00047{bottom:377.162212px;}
.y55_c00047{bottom:378.087856px;}
.y54_c00047{bottom:381.868708px;}
.y53_c00047{bottom:385.220584px;}
.y52_c00047{bottom:386.652346px;}
.y51_c00047{bottom:388.007344px;}
.y50_c00047{bottom:389.637238px;}
.y4f_c00047{bottom:391.017093px;}
.y4e_c00047{bottom:392.214745px;}
.y4d_c00047{bottom:393.412492px;}
.y4c_c00047{bottom:395.823405px;}
.y4b_c00047{bottom:398.633362px;}
.y4a_c00047{bottom:402.036145px;}
.y49_c00047{bottom:403.248366px;}
.y48_c00047{bottom:404.859080px;}
.y47_c00047{bottom:406.390920px;}
.y46_c00047{bottom:408.165352px;}
.y45_c00047{bottom:411.111862px;}
.y44_c00047{bottom:412.574061px;}
.y43_c00047{bottom:414.683301px;}
.y42_c00047{bottom:419.993917px;}
.y41_c00047{bottom:421.518675px;}
.y40_c00047{bottom:423.394500px;}
.y3f_c00047{bottom:443.448864px;}
.y3e_c00047{bottom:444.814416px;}
.y3d_c00047{bottom:448.388898px;}
.y3c_c00047{bottom:450.263139px;}
.y3b_c00047{bottom:453.676497px;}
.y39_c00047{bottom:456.869049px;}
.y3a_c00047{bottom:457.162587px;}
.y38_c00047{bottom:458.521353px;}
.y37_c00047{bottom:462.767853px;}
.y36_c00047{bottom:463.859007px;}
.y35_c00047{bottom:465.663618px;}
.y34_c00047{bottom:469.053663px;}
.y33_c00047{bottom:472.640160px;}
.y32_c00047{bottom:473.884665px;}
.y31_c00047{bottom:475.354308px;}
.y30_c00047{bottom:478.827873px;}
.y2f_c00047{bottom:479.937351px;}
.y2e_c00047{bottom:481.241619px;}
.y2d_c00047{bottom:482.499795px;}
.y2c_c00047{bottom:486.683583px;}
.y2b_c00047{bottom:487.801047px;}
.y2a_c00047{bottom:489.964080px;}
.y29_c00047{bottom:490.629864px;}
.y28_c00047{bottom:492.650616px;}
.y27_c00047{bottom:493.510437px;}
.y26_c00047{bottom:495.739464px;}
.y25_c00047{bottom:497.437008px;}
.y24_c00047{bottom:498.895737px;}
.y23_c00047{bottom:499.821504px;}
.y22_c00047{bottom:503.742594px;}
.y21_c00047{bottom:504.510717px;}
.y20_c00047{bottom:506.817000px;}
.y1f_c00047{bottom:510.016859px;}
.y1e_c00047{bottom:512.349011px;}
.y1d_c00047{bottom:513.361024px;}
.y1c_c00047{bottom:517.279319px;}
.y1b_c00047{bottom:518.519591px;}
.y1a_c00047{bottom:519.135433px;}
.y19_c00047{bottom:522.745604px;}
.y18_c00047{bottom:526.802448px;}
.y17_c00047{bottom:529.464756px;}
.y16_c00047{bottom:530.983992px;}
.y15_c00047{bottom:533.366121px;}
.y14_c00047{bottom:534.623646px;}
.y13_c00047{bottom:535.237059px;}
.y12_c00047{bottom:538.559193px;}
.y11_c00047{bottom:540.021000px;}
.y10_c00047{bottom:543.684080px;}
.yf_c00047{bottom:545.675627px;}
.ye_c00047{bottom:546.745839px;}
.yd_c00047{bottom:547.413765px;}
.yc_c00047{bottom:549.526245px;}
.yb_c00047{bottom:550.393593px;}
.ya_c00047{bottom:553.866306px;}
.y9_c00047{bottom:556.498239px;}
.y8_c00047{bottom:558.946626px;}
.y7_c00047{bottom:560.419854px;}
.y6_c00047{bottom:565.297026px;}
.y5_c00047{bottom:566.233953px;}
.y4_c00047{bottom:567.302262px;}
.y3_c00047{bottom:570.841962px;}
.y2_c00047{bottom:572.437500px;}
.y1_c00047{bottom:580.090500px;}
.h9_c00047{height:54.582744px;}
.h10_c00047{height:55.626065px;}
.hf_c00047{height:56.675614px;}
.ha_c00047{height:57.749220px;}
.h8_c00047{height:58.781416px;}
.h12_c00047{height:58.793679px;}
.hb_c00047{height:58.799206px;}
.h13_c00047{height:59.843566px;}
.hd_c00047{height:59.849192px;}
.h3_c00047{height:59.877435px;}
.h7_c00047{height:60.880753px;}
.h15_c00047{height:60.893453px;}
.h14_c00047{height:61.943340px;}
.hc_c00047{height:61.949164px;}
.h11_c00047{height:62.993227px;}
.h18_c00047{height:65.093001px;}
.h5_c00047{height:66.180323px;}
.h6_c00047{height:67.178761px;}
.h17_c00047{height:67.192776px;}
.he_c00047{height:68.216857px;}
.h16_c00047{height:68.242663px;}
.h4_c00047{height:68.281285px;}
.h2_c00047{height:75.600000px;}
.h0_c00047{height:618.570000px;}
.h1_c00047{height:618.750000px;}
.w0_c00047{width:361.200000px;}
.w1_c00047{width:361.500000px;}
.x0_c00047{left:0.000000px;}
.x79_c00047{left:27.576925px;}
.x71_c00047{left:28.969770px;}
.x32_c00047{left:30.238500px;}
.x56_c00047{left:32.175331px;}
.x38_c00047{left:34.413483px;}
.x23_c00047{left:35.559474px;}
.x10_c00047{left:36.612000px;}
.x4b_c00047{left:43.059000px;}
.x9_c00047{left:44.188488px;}
.x24_c00047{left:47.429082px;}
.x6e_c00047{left:49.829874px;}
.x5f_c00047{left:54.666748px;}
.x29_c00047{left:55.763568px;}
.x68_c00047{left:57.620652px;}
.x33_c00047{left:59.953950px;}
.x3e_c00047{left:61.068378px;}
.x2_c00047{left:62.766000px;}
.x5a_c00047{left:69.473244px;}
.x4f_c00047{left:73.271334px;}
.x75_c00047{left:74.564007px;}
.x1b_c00047{left:75.665973px;}
.x69_c00047{left:78.001674px;}
.x4c_c00047{left:81.157650px;}
.x34_c00047{left:84.108045px;}
.x25_c00047{left:85.966299px;}
.x39_c00047{left:87.576390px;}
.x1c_c00047{left:88.882986px;}
.x57_c00047{left:90.214825px;}
.x3_c00047{left:92.283453px;}
.x4d_c00047{left:93.741432px;}
.x2e_c00047{left:95.233509px;}
.x60_c00047{left:96.726906px;}
.x6f_c00047{left:98.587344px;}
.x17_c00047{left:102.896163px;}
.x26_c00047{left:105.892221px;}
.x3a_c00047{left:108.088991px;}
.x7a_c00047{left:111.077130px;}
.x2a_c00047{left:112.591209px;}
.x18_c00047{left:114.289258px;}
.x66_c00047{left:116.065491px;}
.x61_c00047{left:118.320496px;}
.x70_c00047{left:119.904918px;}
.x50_c00047{left:122.591334px;}
.x43_c00047{left:123.735551px;}
.x11_c00047{left:125.114908px;}
.x64_c00047{left:127.142203px;}
.x76_c00047{left:131.728153px;}
.x6c_c00047{left:133.387707px;}
.x63_c00047{left:134.738505px;}
.x12_c00047{left:136.463049px;}
.x72_c00047{left:138.813330px;}
.x44_c00047{left:144.757400px;}
.x51_c00047{left:146.132334px;}
.x5b_c00047{left:150.986118px;}
.x2f_c00047{left:153.966807px;}
.xa_c00047{left:155.066998px;}
.x1d_c00047{left:156.352776px;}
.x4_c00047{left:157.767903px;}
.x13_c00047{left:159.727261px;}
.x3f_c00047{left:161.478749px;}
.x5c_c00047{left:164.462886px;}
.x2b_c00047{left:166.296978px;}
.x35_c00047{left:168.234954px;}
.xb_c00047{left:170.834904px;}
.x1e_c00047{left:172.282353px;}
.x47_c00047{left:173.395958px;}
.x6d_c00047{left:174.636043px;}
.x5_c00047{left:177.531619px;}
.x1_c00047{left:181.440000px;}
.x58_c00047{left:183.806826px;}
.x30_c00047{left:186.216678px;}
.x45_c00047{left:187.452387px;}
.x4e_c00047{left:189.378405px;}
.x5d_c00047{left:192.749938px;}
.x6_c00047{left:194.864769px;}
.x1f_c00047{left:197.382552px;}
.x77_c00047{left:198.513663px;}
.x36_c00047{left:201.647994px;}
.x14_c00047{left:203.796648px;}
.x59_c00047{left:205.720581px;}
.x52_c00047{left:207.394500px;}
.xc_c00047{left:209.192899px;}
.x2c_c00047{left:212.169711px;}
.x73_c00047{left:214.841818px;}
.x48_c00047{left:215.977721px;}
.xd_c00047{left:221.327104px;}
.x40_c00047{left:223.324574px;}
.x37_c00047{left:224.811075px;}
.x20_c00047{left:226.592016px;}
.x19_c00047{left:228.444988px;}
.x5e_c00047{left:229.736019px;}
.x15_c00047{left:231.902514px;}
.x6a_c00047{left:235.422196px;}
.x41_c00047{left:238.464128px;}
.xe_c00047{left:240.764593px;}
.x7b_c00047{left:243.775935px;}
.x27_c00047{left:245.871915px;}
.x31_c00047{left:247.722420px;}
.x53_c00047{left:250.294413px;}
.x3b_c00047{left:253.936451px;}
.x46_c00047{left:255.731433px;}
.x65_c00047{left:260.820619px;}
.x42_c00047{left:262.508972px;}
.x21_c00047{left:264.946653px;}
.x78_c00047{left:266.185890px;}
.x1a_c00047{left:271.589800px;}
.x3c_c00047{left:274.195964px;}
.x49_c00047{left:275.751564px;}
.xf_c00047{left:276.940935px;}
.x22_c00047{left:279.741504px;}
.x16_c00047{left:281.155212px;}
.x7_c00047{left:285.092451px;}
.x4a_c00047{left:287.100083px;}
.x67_c00047{left:288.602422px;}
.x54_c00047{left:291.157455px;}
.x3d_c00047{left:294.453980px;}
.x74_c00047{left:296.694910px;}
.x6b_c00047{left:303.146575px;}
.x2d_c00047{left:305.631801px;}
.x28_c00047{left:307.760538px;}
.x8_c00047{left:312.347169px;}
.x55_c00047{left:316.323729px;}
.x62_c00047{left:317.825008px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
.fs7_c00047{font-size:48.517994pt;}
.fse_c00047{font-size:49.445391pt;}
.fsd_c00047{font-size:50.378323pt;}
.fs8_c00047{font-size:51.332640pt;}
.fs6_c00047{font-size:52.250148pt;}
.fs10_c00047{font-size:52.261048pt;}
.fs9_c00047{font-size:52.265961pt;}
.fs11_c00047{font-size:53.194281pt;}
.fsb_c00047{font-size:53.199282pt;}
.fs1_c00047{font-size:53.224387pt;}
.fs5_c00047{font-size:54.116224pt;}
.fs13_c00047{font-size:54.127514pt;}
.fs12_c00047{font-size:55.060747pt;}
.fsa_c00047{font-size:55.065923pt;}
.fsf_c00047{font-size:55.993980pt;}
.fs16_c00047{font-size:57.860446pt;}
.fs3_c00047{font-size:58.826954pt;}
.fs4_c00047{font-size:59.714455pt;}
.fs15_c00047{font-size:59.726912pt;}
.fsc_c00047{font-size:60.637206pt;}
.fs14_c00047{font-size:60.660145pt;}
.fs2_c00047{font-size:60.694476pt;}
.fs0_c00047{font-size:67.200000pt;}
.y0_c00047{bottom:0.000000pt;}
.yde_c00047{bottom:30.420481pt;}
.ydd_c00047{bottom:31.579827pt;}
.ydc_c00047{bottom:32.353771pt;}
.ydb_c00047{bottom:34.252780pt;}
.yda_c00047{bottom:38.921413pt;}
.yd9_c00047{bottom:39.804265pt;}
.yd7_c00047{bottom:42.531892pt;}
.yd8_c00047{bottom:43.539059pt;}
.yd6_c00047{bottom:44.368775pt;}
.yd5_c00047{bottom:45.758413pt;}
.yd4_c00047{bottom:50.403972pt;}
.yd3_c00047{bottom:51.994984pt;}
.yd2_c00047{bottom:54.988111pt;}
.yd1_c00047{bottom:57.798104pt;}
.ycd_c00047{bottom:57.983576pt;}
.yd0_c00047{bottom:58.912295pt;}
.ycc_c00047{bottom:59.223759pt;}
.ycf_c00047{bottom:60.089413pt;}
.yce_c00047{bottom:61.993480pt;}
.ycb_c00047{bottom:64.332811pt;}
.yca_c00047{bottom:67.205936pt;}
.yc9_c00047{bottom:69.077947pt;}
.yc8_c00047{bottom:71.568028pt;}
.yc6_c00047{bottom:74.503081pt;}
.yc7_c00047{bottom:75.935187pt;}
.yc5_c00047{bottom:76.679168pt;}
.yc4_c00047{bottom:77.907912pt;}
.yc3_c00047{bottom:81.377232pt;}
.yc2_c00047{bottom:85.171085pt;}
.yc1_c00047{bottom:86.501889pt;}
.ybe_c00047{bottom:89.353761pt;}
.yc0_c00047{bottom:89.546249pt;}
.ybd_c00047{bottom:90.591636pt;}
.ybf_c00047{bottom:90.814680pt;}
.ybc_c00047{bottom:92.634987pt;}
.ybb_c00047{bottom:95.416600pt;}
.yba_c00047{bottom:96.761184pt;}
.yb9_c00047{bottom:99.299408pt;}
.yb8_c00047{bottom:100.880491pt;}
.yb6_c00047{bottom:103.269179pt;}
.yb5_c00047{bottom:105.531197pt;}
.yb7_c00047{bottom:105.689861pt;}
.yb4_c00047{bottom:107.376763pt;}
.yb3_c00047{bottom:111.620091pt;}
.yb2_c00047{bottom:113.493904pt;}
.yb1_c00047{bottom:116.924276pt;}
.yb0_c00047{bottom:118.160868pt;}
.yaf_c00047{bottom:119.831623pt;}
.yae_c00047{bottom:120.193740pt;}
.yad_c00047{bottom:124.853968pt;}
.yac_c00047{bottom:127.452016pt;}
.yab_c00047{bottom:128.752661pt;}
.yaa_c00047{bottom:129.889751pt;}
.ya9_c00047{bottom:134.717779pt;}
.ya8_c00047{bottom:135.176648pt;}
.ya7_c00047{bottom:136.758435pt;}
.ya6_c00047{bottom:140.258089pt;}
.ya5_c00047{bottom:142.886089pt;}
.ya4_c00047{bottom:143.797371pt;}
.ya3_c00047{bottom:144.905331pt;}
.ya2_c00047{bottom:146.853515pt;}
.ya1_c00047{bottom:148.864357pt;}
.ya0_c00047{bottom:151.592768pt;}
.y9f_c00047{bottom:156.085436pt;}
.y9e_c00047{bottom:159.322000pt;}
.y9d_c00047{bottom:160.410161pt;}
.y9c_c00047{bottom:162.524904pt;}
.y9a_c00047{bottom:164.946497pt;}
.y9b_c00047{bottom:164.963700pt;}
.y99_c00047{bottom:168.860041pt;}
.y98_c00047{bottom:170.171949pt;}
.y97_c00047{bottom:172.442932pt;}
.y96_c00047{bottom:176.513923pt;}
.y95_c00047{bottom:177.765824pt;}
.y94_c00047{bottom:180.203957pt;}
.y92_c00047{bottom:181.474048pt;}
.y93_c00047{bottom:181.501792pt;}
.y91_c00047{bottom:184.707056pt;}
.y90_c00047{bottom:185.897949pt;}
.y8f_c00047{bottom:186.852184pt;}
.y8e_c00047{bottom:188.492111pt;}
.y8d_c00047{bottom:189.272912pt;}
.y8c_c00047{bottom:193.189597pt;}
.y8b_c00047{bottom:193.999243pt;}
.y8a_c00047{bottom:196.158837pt;}
.y89_c00047{bottom:196.546595pt;}
.y88_c00047{bottom:197.262657pt;}
.y87_c00047{bottom:201.305351pt;}
.y86_c00047{bottom:202.594991pt;}
.y85_c00047{bottom:203.336351pt;}
.y84_c00047{bottom:208.105025pt;}
.y82_c00047{bottom:210.111083pt;}
.y83_c00047{bottom:211.521609pt;}
.y81_c00047{bottom:211.816320pt;}
.y80_c00047{bottom:212.820736pt;}
.y7f_c00047{bottom:214.585152pt;}
.y7e_c00047{bottom:217.492000pt;}
.y7d_c00047{bottom:257.851240pt;}
.y7c_c00047{bottom:261.799312pt;}
.y7b_c00047{bottom:264.463877pt;}
.y7a_c00047{bottom:265.888997pt;}
.y79_c00047{bottom:267.129861pt;}
.y78_c00047{bottom:268.874891pt;}
.y77_c00047{bottom:271.261891pt;}
.y76_c00047{bottom:272.417323pt;}
.y75_c00047{bottom:273.493867pt;}
.y74_c00047{bottom:274.866987pt;}
.y73_c00047{bottom:275.769931pt;}
.y72_c00047{bottom:276.806080pt;}
.y71_c00047{bottom:278.401333pt;}
.y70_c00047{bottom:286.128587pt;}
.y6f_c00047{bottom:289.314407pt;}
.y6e_c00047{bottom:290.589233pt;}
.y6d_c00047{bottom:293.614747pt;}
.y6c_c00047{bottom:295.399020pt;}
.y6b_c00047{bottom:296.830560pt;}
.y6a_c00047{bottom:297.447000pt;}
.y69_c00047{bottom:299.313333pt;}
.y68_c00047{bottom:302.282556pt;}
.y67_c00047{bottom:302.859228pt;}
.y66_c00047{bottom:305.893975pt;}
.y65_c00047{bottom:306.850811pt;}
.y64_c00047{bottom:308.056217pt;}
.y63_c00047{bottom:311.152169pt;}
.y62_c00047{bottom:312.319736pt;}
.y61_c00047{bottom:315.153761pt;}
.y60_c00047{bottom:315.880076pt;}
.y5f_c00047{bottom:317.643528pt;}
.y5e_c00047{bottom:318.913395pt;}
.y5d_c00047{bottom:322.562992pt;}
.y5c_c00047{bottom:324.845145pt;}
.y5b_c00047{bottom:325.968617pt;}
.y5a_c00047{bottom:326.559011pt;}
.y59_c00047{bottom:330.752956pt;}
.y58_c00047{bottom:332.951777pt;}
.y57_c00047{bottom:333.948841pt;}
.y56_c00047{bottom:335.255300pt;}
.y55_c00047{bottom:336.078095pt;}
.y54_c00047{bottom:339.438852pt;}
.y53_c00047{bottom:342.418297pt;}
.y52_c00047{bottom:343.690975pt;}
.y51_c00047{bottom:344.895417pt;}
.y50_c00047{bottom:346.344212pt;}
.y4f_c00047{bottom:347.570749pt;}
.y4e_c00047{bottom:348.635329pt;}
.y4d_c00047{bottom:349.699993pt;}
.y4c_c00047{bottom:351.843027pt;}
.y4b_c00047{bottom:354.340767pt;}
.y4a_c00047{bottom:357.365463pt;}
.y49_c00047{bottom:358.442992pt;}
.y48_c00047{bottom:359.874737pt;}
.y47_c00047{bottom:361.236373pt;}
.y46_c00047{bottom:362.813647pt;}
.y45_c00047{bottom:365.432767pt;}
.y44_c00047{bottom:366.732499pt;}
.y43_c00047{bottom:368.607379pt;}
.y42_c00047{bottom:373.327927pt;}
.y41_c00047{bottom:374.683267pt;}
.y40_c00047{bottom:376.350667pt;}
.y3f_c00047{bottom:394.176768pt;}
.y3e_c00047{bottom:395.390592pt;}
.y3d_c00047{bottom:398.567909pt;}
.y3c_c00047{bottom:400.233901pt;}
.y3b_c00047{bottom:403.267997pt;}
.y39_c00047{bottom:406.105821pt;}
.y3a_c00047{bottom:406.366744pt;}
.y38_c00047{bottom:407.574536pt;}
.y37_c00047{bottom:411.349203pt;}
.y36_c00047{bottom:412.319117pt;}
.y35_c00047{bottom:413.923216pt;}
.y34_c00047{bottom:416.936589pt;}
.y33_c00047{bottom:420.124587pt;}
.y32_c00047{bottom:421.230813pt;}
.y31_c00047{bottom:422.537163pt;}
.y30_c00047{bottom:425.624776pt;}
.y2f_c00047{bottom:426.610979pt;}
.y2e_c00047{bottom:427.770328pt;}
.y2d_c00047{bottom:428.888707pt;}
.y2c_c00047{bottom:432.607629pt;}
.y2b_c00047{bottom:433.600931pt;}
.y2a_c00047{bottom:435.523627pt;}
.y29_c00047{bottom:436.115435pt;}
.y28_c00047{bottom:437.911659pt;}
.y27_c00047{bottom:438.675944pt;}
.y26_c00047{bottom:440.657301pt;}
.y25_c00047{bottom:442.166229pt;}
.y24_c00047{bottom:443.462877pt;}
.y23_c00047{bottom:444.285781pt;}
.y22_c00047{bottom:447.771195pt;}
.y21_c00047{bottom:448.453971pt;}
.y20_c00047{bottom:450.504000pt;}
.y1f_c00047{bottom:453.348319pt;}
.y1e_c00047{bottom:455.421343pt;}
.y1d_c00047{bottom:456.320911pt;}
.y1c_c00047{bottom:459.803839pt;}
.y1b_c00047{bottom:460.906303pt;}
.y1a_c00047{bottom:461.453719pt;}
.y19_c00047{bottom:464.662759pt;}
.y18_c00047{bottom:468.268843pt;}
.y17_c00047{bottom:470.635339pt;}
.y16_c00047{bottom:471.985771pt;}
.y15_c00047{bottom:474.103219pt;}
.y14_c00047{bottom:475.221019pt;}
.y13_c00047{bottom:475.766275pt;}
.y12_c00047{bottom:478.719283pt;}
.y11_c00047{bottom:480.018667pt;}
.y10_c00047{bottom:483.274737pt;}
.yf_c00047{bottom:485.045001pt;}
.ye_c00047{bottom:485.996301pt;}
.yd_c00047{bottom:486.590013pt;}
.yc_c00047{bottom:488.467773pt;}
.yb_c00047{bottom:489.238749pt;}
.ya_c00047{bottom:492.325605pt;}
.y9_c00047{bottom:494.665101pt;}
.y8_c00047{bottom:496.841445pt;}
.y7_c00047{bottom:498.150981pt;}
.y6_c00047{bottom:502.486245pt;}
.y5_c00047{bottom:503.319069pt;}
.y4_c00047{bottom:504.268677pt;}
.y3_c00047{bottom:507.415077pt;}
.y2_c00047{bottom:508.833333pt;}
.y1_c00047{bottom:515.636000pt;}
.h9_c00047{height:48.517994pt;}
.h10_c00047{height:49.445391pt;}
.hf_c00047{height:50.378323pt;}
.ha_c00047{height:51.332640pt;}
.h8_c00047{height:52.250148pt;}
.h12_c00047{height:52.261048pt;}
.hb_c00047{height:52.265961pt;}
.h13_c00047{height:53.194281pt;}
.hd_c00047{height:53.199282pt;}
.h3_c00047{height:53.224387pt;}
.h7_c00047{height:54.116224pt;}
.h15_c00047{height:54.127514pt;}
.h14_c00047{height:55.060747pt;}
.hc_c00047{height:55.065923pt;}
.h11_c00047{height:55.993980pt;}
.h18_c00047{height:57.860446pt;}
.h5_c00047{height:58.826954pt;}
.h6_c00047{height:59.714455pt;}
.h17_c00047{height:59.726912pt;}
.he_c00047{height:60.637206pt;}
.h16_c00047{height:60.660145pt;}
.h4_c00047{height:60.694476pt;}
.h2_c00047{height:67.200000pt;}
.h0_c00047{height:549.840000pt;}
.h1_c00047{height:550.000000pt;}
.w0_c00047{width:321.066667pt;}
.w1_c00047{width:321.333333pt;}
.x0_c00047{left:0.000000pt;}
.x79_c00047{left:24.512823pt;}
.x71_c00047{left:25.750907pt;}
.x32_c00047{left:26.878667pt;}
.x56_c00047{left:28.600295pt;}
.x38_c00047{left:30.589763pt;}
.x23_c00047{left:31.608421pt;}
.x10_c00047{left:32.544000pt;}
.x4b_c00047{left:38.274667pt;}
.x9_c00047{left:39.278656pt;}
.x24_c00047{left:42.159184pt;}
.x6e_c00047{left:44.293221pt;}
.x5f_c00047{left:48.592665pt;}
.x29_c00047{left:49.567616pt;}
.x68_c00047{left:51.218357pt;}
.x33_c00047{left:53.292400pt;}
.x3e_c00047{left:54.283003pt;}
.x2_c00047{left:55.792000pt;}
.x5a_c00047{left:61.753995pt;}
.x4f_c00047{left:65.130075pt;}
.x75_c00047{left:66.279117pt;}
.x1b_c00047{left:67.258643pt;}
.x69_c00047{left:69.334821pt;}
.x4c_c00047{left:72.140133pt;}
.x34_c00047{left:74.762707pt;}
.x25_c00047{left:76.414488pt;}
.x39_c00047{left:77.845680pt;}
.x1c_c00047{left:79.007099pt;}
.x57_c00047{left:80.190956pt;}
.x3_c00047{left:82.029736pt;}
.x4d_c00047{left:83.325717pt;}
.x2e_c00047{left:84.652008pt;}
.x60_c00047{left:85.979472pt;}
.x6f_c00047{left:87.633195pt;}
.x17_c00047{left:91.463256pt;}
.x26_c00047{left:94.126419pt;}
.x3a_c00047{left:96.079103pt;}
.x7a_c00047{left:98.735227pt;}
.x2a_c00047{left:100.081075pt;}
.x18_c00047{left:101.590452pt;}
.x66_c00047{left:103.169325pt;}
.x61_c00047{left:105.173775pt;}
.x70_c00047{left:106.582149pt;}
.x50_c00047{left:108.970075pt;}
.x43_c00047{left:109.987156pt;}
.x11_c00047{left:111.213252pt;}
.x64_c00047{left:113.015292pt;}
.x76_c00047{left:117.091692pt;}
.x6c_c00047{left:118.566851pt;}
.x63_c00047{left:119.767560pt;}
.x12_c00047{left:121.300488pt;}
.x72_c00047{left:123.389627pt;}
.x44_c00047{left:128.673244pt;}
.x51_c00047{left:129.895408pt;}
.x5b_c00047{left:134.209883pt;}
.x2f_c00047{left:136.859384pt;}
.xa_c00047{left:137.837332pt;}
.x1d_c00047{left:138.980245pt;}
.x4_c00047{left:140.238136pt;}
.x13_c00047{left:141.979788pt;}
.x3f_c00047{left:143.536665pt;}
.x5c_c00047{left:146.189232pt;}
.x2b_c00047{left:147.819536pt;}
.x35_c00047{left:149.542181pt;}
.xb_c00047{left:151.853248pt;}
.x1e_c00047{left:153.139869pt;}
.x47_c00047{left:154.129740pt;}
.x6d_c00047{left:155.232039pt;}
.x5_c00047{left:157.805884pt;}
.x1_c00047{left:161.280000pt;}
.x58_c00047{left:163.383845pt;}
.x30_c00047{left:165.525936pt;}
.x45_c00047{left:166.624344pt;}
.x4e_c00047{left:168.336360pt;}
.x5d_c00047{left:171.333279pt;}
.x6_c00047{left:173.213128pt;}
.x1f_c00047{left:175.451157pt;}
.x77_c00047{left:176.456589pt;}
.x36_c00047{left:179.242661pt;}
.x14_c00047{left:181.152576pt;}
.x59_c00047{left:182.862739pt;}
.x52_c00047{left:184.350667pt;}
.xc_c00047{left:185.949244pt;}
.x2c_c00047{left:188.595299pt;}
.x73_c00047{left:190.970505pt;}
.x48_c00047{left:191.980196pt;}
.xd_c00047{left:196.735204pt;}
.x40_c00047{left:198.510732pt;}
.x37_c00047{left:199.832067pt;}
.x20_c00047{left:201.415125pt;}
.x19_c00047{left:203.062212pt;}
.x5e_c00047{left:204.209795pt;}
.x15_c00047{left:206.135568pt;}
.x6a_c00047{left:209.264175pt;}
.x41_c00047{left:211.968113pt;}
.xe_c00047{left:214.012972pt;}
.x7b_c00047{left:216.689720pt;}
.x27_c00047{left:218.552813pt;}
.x31_c00047{left:220.197707pt;}
.x53_c00047{left:222.483923pt;}
.x3b_c00047{left:225.721289pt;}
.x46_c00047{left:227.316829pt;}
.x65_c00047{left:231.840551pt;}
.x42_c00047{left:233.341308pt;}
.x21_c00047{left:235.508136pt;}
.x78_c00047{left:236.609680pt;}
.x1a_c00047{left:241.413156pt;}
.x3c_c00047{left:243.729745pt;}
.x49_c00047{left:245.112501pt;}
.xf_c00047{left:246.169720pt;}
.x22_c00047{left:248.659115pt;}
.x16_c00047{left:249.915744pt;}
.x7_c00047{left:253.415512pt;}
.x4a_c00047{left:255.200073pt;}
.x67_c00047{left:256.535487pt;}
.x54_c00047{left:258.806627pt;}
.x3d_c00047{left:261.736871pt;}
.x74_c00047{left:263.728809pt;}
.x6b_c00047{left:269.463623pt;}
.x2d_c00047{left:271.672712pt;}
.x28_c00047{left:273.564923pt;}
.x8_c00047{left:277.641928pt;}
.x55_c00047{left:281.176648pt;}
.x62_c00047{left:282.511119pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00048 {
    display:none;
  }
  .loading-indicator_c00048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00048 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00048 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00048" -> "#page-container .classname_c00048")
 */
.pf_c00048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00048 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00048 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00048 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00048 {overflow:visible;}
  }
}
.c_c00048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00048 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00048:after { /* webkit #35443 */
  content: '';
}
.t_c00048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00048 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00048 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00048 { /* info for Javascript */
  display:none;
}
.l_c00048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00048:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00048 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00048.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00048{transform:matrix(0.012699,0.000381,-0.007497,0.249888,0,0);-ms-transform:matrix(0.012699,0.000381,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.012699,0.000381,-0.007497,0.249888,0,0);}
.med_c00048{transform:matrix(0.095817,0.002875,-0.007497,0.249888,0,0);-ms-transform:matrix(0.095817,0.002875,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.095817,0.002875,-0.007497,0.249888,0,0);}
.m8f_c00048{transform:matrix(0.138818,0.004165,-0.007497,0.249888,0,0);-ms-transform:matrix(0.138818,0.004165,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.138818,0.004165,-0.007497,0.249888,0,0);}
.m4d_c00048{transform:matrix(0.140507,0.004215,-0.007497,0.249888,0,0);-ms-transform:matrix(0.140507,0.004215,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.140507,0.004215,-0.007497,0.249888,0,0);}
.mf2_c00048{transform:matrix(0.144845,0.004345,-0.007497,0.249888,0,0);-ms-transform:matrix(0.144845,0.004345,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.144845,0.004345,-0.007497,0.249888,0,0);}
.m66_c00048{transform:matrix(0.147429,0.004423,-0.007497,0.249888,0,0);-ms-transform:matrix(0.147429,0.004423,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.147429,0.004423,-0.007497,0.249888,0,0);}
.mb3_c00048{transform:matrix(0.150632,0.004519,-0.007497,0.249888,0,0);-ms-transform:matrix(0.150632,0.004519,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.150632,0.004519,-0.007497,0.249888,0,0);}
.m95_c00048{transform:matrix(0.150802,0.004524,-0.007497,0.249888,0,0);-ms-transform:matrix(0.150802,0.004524,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.150802,0.004524,-0.007497,0.249888,0,0);}
.mab_c00048{transform:matrix(0.152556,0.004577,-0.007497,0.249888,0,0);-ms-transform:matrix(0.152556,0.004577,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.152556,0.004577,-0.007497,0.249888,0,0);}
.m3_c00048{transform:matrix(0.152847,0.005049,-0.008254,0.249864,0,0);-ms-transform:matrix(0.152847,0.005049,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.152847,0.005049,-0.008254,0.249864,0,0);}
.mc1_c00048{transform:matrix(0.154081,0.004622,-0.007497,0.249888,0,0);-ms-transform:matrix(0.154081,0.004622,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.154081,0.004622,-0.007497,0.249888,0,0);}
.mb5_c00048{transform:matrix(0.155325,0.004660,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155325,0.004660,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155325,0.004660,-0.007497,0.249888,0,0);}
.mbb_c00048{transform:matrix(0.155475,0.004664,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155475,0.004664,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155475,0.004664,-0.007497,0.249888,0,0);}
.mb9_c00048{transform:matrix(0.155480,0.004664,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155480,0.004664,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155480,0.004664,-0.007497,0.249888,0,0);}
.m2e_c00048{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m4a_c00048{transform:matrix(0.155865,0.004676,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155865,0.004676,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155865,0.004676,-0.007497,0.249888,0,0);}
.m7a_c00048{transform:matrix(0.158419,0.004753,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158419,0.004753,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158419,0.004753,-0.007497,0.249888,0,0);}
.m2f_c00048{transform:matrix(0.158559,0.004757,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158559,0.004757,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158559,0.004757,-0.007497,0.249888,0,0);}
.m2_c00048{transform:matrix(0.159018,0.005253,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159018,0.005253,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159018,0.005253,-0.008254,0.249864,0,0);}
.m30_c00048{transform:matrix(0.159368,0.004781,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159368,0.004781,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159368,0.004781,-0.007497,0.249888,0,0);}
.m4e_c00048{transform:matrix(0.159433,0.004783,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159433,0.004783,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159433,0.004783,-0.007497,0.249888,0,0);}
.ma_c00048{transform:matrix(0.160213,0.005292,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160213,0.005292,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160213,0.005292,-0.008254,0.249864,0,0);}
.m20_c00048{transform:matrix(0.160437,0.005300,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160437,0.005300,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160437,0.005300,-0.008254,0.249864,0,0);}
.m10_c00048{transform:matrix(0.160982,0.005318,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160982,0.005318,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160982,0.005318,-0.008254,0.249864,0,0);}
.mf3_c00048{transform:matrix(0.161897,0.004857,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161897,0.004857,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161897,0.004857,-0.007497,0.249888,0,0);}
.m8d_c00048{transform:matrix(0.162152,0.004865,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162152,0.004865,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162152,0.004865,-0.007497,0.249888,0,0);}
.m3d_c00048{transform:matrix(0.162702,0.004881,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162702,0.004881,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162702,0.004881,-0.007497,0.249888,0,0);}
.m46_c00048{transform:matrix(0.162857,0.004886,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162857,0.004886,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162857,0.004886,-0.007497,0.249888,0,0);}
.m4_c00048{transform:matrix(0.162886,0.005381,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162886,0.005381,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162886,0.005381,-0.008254,0.249864,0,0);}
.mec_c00048{transform:matrix(0.163072,0.004892,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163072,0.004892,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163072,0.004892,-0.007497,0.249888,0,0);}
.m99_c00048{transform:matrix(0.163621,0.004909,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163621,0.004909,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163621,0.004909,-0.007497,0.249888,0,0);}
.mee_c00048{transform:matrix(0.164136,0.004924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164136,0.004924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164136,0.004924,-0.007497,0.249888,0,0);}
.m83_c00048{transform:matrix(0.165071,0.004952,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165071,0.004952,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165071,0.004952,-0.007497,0.249888,0,0);}
.m80_c00048{transform:matrix(0.166710,0.005001,-0.007497,0.249888,0,0);-ms-transform:matrix(0.166710,0.005001,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.166710,0.005001,-0.007497,0.249888,0,0);}
.m23_c00048{transform:matrix(0.166844,0.005511,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166844,0.005511,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166844,0.005511,-0.008254,0.249864,0,0);}
.m3f_c00048{transform:matrix(0.167225,0.005017,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167225,0.005017,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167225,0.005017,-0.007497,0.249888,0,0);}
.me_c00048{transform:matrix(0.167259,0.005525,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167259,0.005525,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167259,0.005525,-0.008254,0.249864,0,0);}
.md9_c00048{transform:matrix(0.167365,0.005021,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167365,0.005021,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167365,0.005021,-0.007497,0.249888,0,0);}
.m56_c00048{transform:matrix(0.167445,0.005023,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167445,0.005023,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167445,0.005023,-0.007497,0.249888,0,0);}
.m92_c00048{transform:matrix(0.167864,0.005036,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167864,0.005036,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167864,0.005036,-0.007497,0.249888,0,0);}
.m87_c00048{transform:matrix(0.167944,0.005038,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167944,0.005038,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167944,0.005038,-0.007497,0.249888,0,0);}
.m49_c00048{transform:matrix(0.168504,0.005055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168504,0.005055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168504,0.005055,-0.007497,0.249888,0,0);}
.m85_c00048{transform:matrix(0.168684,0.005061,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168684,0.005061,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168684,0.005061,-0.007497,0.249888,0,0);}
.m24_c00048{transform:matrix(0.169043,0.005584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169043,0.005584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169043,0.005584,-0.008254,0.249864,0,0);}
.m7c_c00048{transform:matrix(0.169074,0.005072,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169074,0.005072,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169074,0.005072,-0.007497,0.249888,0,0);}
.m96_c00048{transform:matrix(0.169419,0.005083,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169419,0.005083,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169419,0.005083,-0.007497,0.249888,0,0);}
.mad_c00048{transform:matrix(0.169904,0.005097,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169904,0.005097,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169904,0.005097,-0.007497,0.249888,0,0);}
.m62_c00048{transform:matrix(0.170063,0.005102,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170063,0.005102,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170063,0.005102,-0.007497,0.249888,0,0);}
.mbc_c00048{transform:matrix(0.170793,0.005124,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170793,0.005124,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170793,0.005124,-0.007497,0.249888,0,0);}
.m7f_c00048{transform:matrix(0.171448,0.005143,-0.007497,0.249888,0,0);-ms-transform:matrix(0.171448,0.005143,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.171448,0.005143,-0.007497,0.249888,0,0);}
.me2_c00048{transform:matrix(0.171523,0.005146,-0.007497,0.249888,0,0);-ms-transform:matrix(0.171523,0.005146,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.171523,0.005146,-0.007497,0.249888,0,0);}
.mb0_c00048{transform:matrix(0.172517,0.005176,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172517,0.005176,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172517,0.005176,-0.007497,0.249888,0,0);}
.m5a_c00048{transform:matrix(0.172942,0.005188,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172942,0.005188,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172942,0.005188,-0.007497,0.249888,0,0);}
.m5e_c00048{transform:matrix(0.173287,0.005199,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173287,0.005199,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173287,0.005199,-0.007497,0.249888,0,0);}
.m32_c00048{transform:matrix(0.173547,0.005206,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173547,0.005206,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173547,0.005206,-0.007497,0.249888,0,0);}
.m4f_c00048{transform:matrix(0.174062,0.005222,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174062,0.005222,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174062,0.005222,-0.007497,0.249888,0,0);}
.m90_c00048{transform:matrix(0.174387,0.005232,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174387,0.005232,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174387,0.005232,-0.007497,0.249888,0,0);}
.m48_c00048{transform:matrix(0.174576,0.005237,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174576,0.005237,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174576,0.005237,-0.007497,0.249888,0,0);}
.m1_c00048{transform:matrix(0.174670,0.005770,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174670,0.005770,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174670,0.005770,-0.008254,0.249864,0,0);}
.m9c_c00048{transform:matrix(0.174956,0.005249,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174956,0.005249,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174956,0.005249,-0.007497,0.249888,0,0);}
.m93_c00048{transform:matrix(0.175121,0.005254,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175121,0.005254,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175121,0.005254,-0.007497,0.249888,0,0);}
.m4b_c00048{transform:matrix(0.175431,0.005263,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175431,0.005263,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175431,0.005263,-0.007497,0.249888,0,0);}
.m60_c00048{transform:matrix(0.175781,0.005273,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175781,0.005273,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175781,0.005273,-0.007497,0.249888,0,0);}
.m5_c00048{transform:matrix(0.175899,0.005810,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175899,0.005810,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175899,0.005810,-0.008254,0.249864,0,0);}
.m2a_c00048{transform:matrix(0.176614,0.005834,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176614,0.005834,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176614,0.005834,-0.008254,0.249864,0,0);}
.m8b_c00048{transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);}
.mac_c00048{transform:matrix(0.178770,0.005363,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178770,0.005363,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178770,0.005363,-0.007497,0.249888,0,0);}
.mb2_c00048{transform:matrix(0.179244,0.005377,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179244,0.005377,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179244,0.005377,-0.007497,0.249888,0,0);}
.mc_c00048{transform:matrix(0.179292,0.005923,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179292,0.005923,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179292,0.005923,-0.008254,0.249864,0,0);}
.mc7_c00048{transform:matrix(0.179519,0.005386,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179519,0.005386,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179519,0.005386,-0.007497,0.249888,0,0);}
.me8_c00048{transform:matrix(0.179909,0.005397,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179909,0.005397,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179909,0.005397,-0.007497,0.249888,0,0);}
.mc4_c00048{transform:matrix(0.180994,0.005430,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180994,0.005430,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180994,0.005430,-0.007497,0.249888,0,0);}
.mda_c00048{transform:matrix(0.181433,0.005443,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181433,0.005443,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181433,0.005443,-0.007497,0.249888,0,0);}
.m42_c00048{transform:matrix(0.182378,0.005471,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182378,0.005471,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182378,0.005471,-0.007497,0.249888,0,0);}
.mdf_c00048{transform:matrix(0.183088,0.005493,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183088,0.005493,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183088,0.005493,-0.007497,0.249888,0,0);}
.mba_c00048{transform:matrix(0.183822,0.005515,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183822,0.005515,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183822,0.005515,-0.007497,0.249888,0,0);}
.md2_c00048{transform:matrix(0.183952,0.005519,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183952,0.005519,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183952,0.005519,-0.007497,0.249888,0,0);}
.mc8_c00048{transform:matrix(0.184077,0.005522,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184077,0.005522,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184077,0.005522,-0.007497,0.249888,0,0);}
.m3b_c00048{transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);}
.mc3_c00048{transform:matrix(0.185182,0.005555,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185182,0.005555,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185182,0.005555,-0.007497,0.249888,0,0);}
.mc9_c00048{transform:matrix(0.185786,0.005574,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185786,0.005574,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185786,0.005574,-0.007497,0.249888,0,0);}
.m31_c00048{transform:matrix(0.186171,0.005585,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186171,0.005585,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186171,0.005585,-0.007497,0.249888,0,0);}
.ma9_c00048{transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);}
.md_c00048{transform:matrix(0.186738,0.006169,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186738,0.006169,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186738,0.006169,-0.008254,0.249864,0,0);}
.mde_c00048{transform:matrix(0.187081,0.005612,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187081,0.005612,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187081,0.005612,-0.007497,0.249888,0,0);}
.m8e_c00048{transform:matrix(0.187231,0.005617,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187231,0.005617,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187231,0.005617,-0.007497,0.249888,0,0);}
.m6d_c00048{transform:matrix(0.187496,0.005625,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187496,0.005625,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187496,0.005625,-0.007497,0.249888,0,0);}
.md0_c00048{transform:matrix(0.187666,0.005630,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187666,0.005630,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187666,0.005630,-0.007497,0.249888,0,0);}
.m7e_c00048{transform:matrix(0.187845,0.005635,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187845,0.005635,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187845,0.005635,-0.007497,0.249888,0,0);}
.ma7_c00048{transform:matrix(0.188870,0.005666,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188870,0.005666,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188870,0.005666,-0.007497,0.249888,0,0);}
.m7b_c00048{transform:matrix(0.189125,0.005674,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189125,0.005674,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189125,0.005674,-0.007497,0.249888,0,0);}
.mdc_c00048{transform:matrix(0.189240,0.005677,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189240,0.005677,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189240,0.005677,-0.007497,0.249888,0,0);}
.m88_c00048{transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);}
.m84_c00048{transform:matrix(0.189675,0.005690,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189675,0.005690,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189675,0.005690,-0.007497,0.249888,0,0);}
.m35_c00048{transform:matrix(0.189690,0.005691,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189690,0.005691,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189690,0.005691,-0.007497,0.249888,0,0);}
.mb1_c00048{transform:matrix(0.189725,0.005692,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189725,0.005692,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189725,0.005692,-0.007497,0.249888,0,0);}
.mca_c00048{transform:matrix(0.189740,0.005692,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189740,0.005692,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189740,0.005692,-0.007497,0.249888,0,0);}
.m51_c00048{transform:matrix(0.189880,0.005696,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189880,0.005696,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189880,0.005696,-0.007497,0.249888,0,0);}
.mef_c00048{transform:matrix(0.190644,0.005719,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190644,0.005719,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190644,0.005719,-0.007497,0.249888,0,0);}
.m44_c00048{transform:matrix(0.190794,0.005724,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190794,0.005724,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190794,0.005724,-0.007497,0.249888,0,0);}
.m3e_c00048{transform:matrix(0.190839,0.005725,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190839,0.005725,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190839,0.005725,-0.007497,0.249888,0,0);}
.m41_c00048{transform:matrix(0.190919,0.005728,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190919,0.005728,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190919,0.005728,-0.007497,0.249888,0,0);}
.mb8_c00048{transform:matrix(0.191804,0.005754,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191804,0.005754,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191804,0.005754,-0.007497,0.249888,0,0);}
.m8a_c00048{transform:matrix(0.191919,0.005758,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191919,0.005758,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191919,0.005758,-0.007497,0.249888,0,0);}
.mae_c00048{transform:matrix(0.192823,0.005785,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192823,0.005785,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192823,0.005785,-0.007497,0.249888,0,0);}
.m8_c00048{transform:matrix(0.192910,0.006372,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192910,0.006372,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192910,0.006372,-0.008254,0.249864,0,0);}
.m39_c00048{transform:matrix(0.193093,0.005793,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193093,0.005793,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193093,0.005793,-0.007497,0.249888,0,0);}
.m25_c00048{transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);}
.mb6_c00048{transform:matrix(0.193253,0.005798,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193253,0.005798,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193253,0.005798,-0.007497,0.249888,0,0);}
.m45_c00048{transform:matrix(0.193318,0.005800,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193318,0.005800,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193318,0.005800,-0.007497,0.249888,0,0);}
.mf_c00048{transform:matrix(0.193594,0.006395,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193594,0.006395,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193594,0.006395,-0.008254,0.249864,0,0);}
.m97_c00048{transform:matrix(0.194033,0.005821,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194033,0.005821,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194033,0.005821,-0.007497,0.249888,0,0);}
.m2b_c00048{transform:matrix(0.194064,0.006411,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194064,0.006411,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194064,0.006411,-0.008254,0.249864,0,0);}
.ma3_c00048{transform:matrix(0.194118,0.005824,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194118,0.005824,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194118,0.005824,-0.007497,0.249888,0,0);}
.m81_c00048{transform:matrix(0.194243,0.005827,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194243,0.005827,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194243,0.005827,-0.007497,0.249888,0,0);}
.m6b_c00048{transform:matrix(0.194428,0.005833,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194428,0.005833,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194428,0.005833,-0.007497,0.249888,0,0);}
.maa_c00048{transform:matrix(0.195332,0.005860,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195332,0.005860,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195332,0.005860,-0.007497,0.249888,0,0);}
.m91_c00048{transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);}
.m55_c00048{transform:matrix(0.195477,0.005864,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195477,0.005864,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195477,0.005864,-0.007497,0.249888,0,0);}
.mbe_c00048{transform:matrix(0.195712,0.005871,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195712,0.005871,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195712,0.005871,-0.007497,0.249888,0,0);}
.mdb_c00048{transform:matrix(0.195967,0.005879,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195967,0.005879,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195967,0.005879,-0.007497,0.249888,0,0);}
.m3c_c00048{transform:matrix(0.196112,0.005883,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196112,0.005883,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196112,0.005883,-0.007497,0.249888,0,0);}
.m50_c00048{transform:matrix(0.196247,0.005887,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196247,0.005887,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196247,0.005887,-0.007497,0.249888,0,0);}
.m89_c00048{transform:matrix(0.196731,0.005902,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196731,0.005902,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196731,0.005902,-0.007497,0.249888,0,0);}
.mf0_c00048{transform:matrix(0.197281,0.005918,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197281,0.005918,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197281,0.005918,-0.007497,0.249888,0,0);}
.m6_c00048{transform:matrix(0.197422,0.006521,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197422,0.006521,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197422,0.006521,-0.008254,0.249864,0,0);}
.m82_c00048{transform:matrix(0.198096,0.005943,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198096,0.005943,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198096,0.005943,-0.007497,0.249888,0,0);}
.m29_c00048{transform:matrix(0.198217,0.006548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198217,0.006548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198217,0.006548,-0.008254,0.249864,0,0);}
.mb7_c00048{transform:matrix(0.199335,0.005980,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199335,0.005980,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199335,0.005980,-0.007497,0.249888,0,0);}
.mb4_c00048{transform:matrix(0.199425,0.005983,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199425,0.005983,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199425,0.005983,-0.007497,0.249888,0,0);}
.m5c_c00048{transform:matrix(0.199720,0.005992,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199720,0.005992,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199720,0.005992,-0.007497,0.249888,0,0);}
.me0_c00048{transform:matrix(0.200205,0.006006,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200205,0.006006,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200205,0.006006,-0.007497,0.249888,0,0);}
.m36_c00048{transform:matrix(0.200420,0.006013,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200420,0.006013,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200420,0.006013,-0.007497,0.249888,0,0);}
.m9a_c00048{transform:matrix(0.200875,0.006026,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200875,0.006026,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200875,0.006026,-0.007497,0.249888,0,0);}
.m13_c00048{transform:matrix(0.201260,0.006648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201260,0.006648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201260,0.006648,-0.008254,0.249864,0,0);}
.mbd_c00048{transform:matrix(0.201344,0.006040,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201344,0.006040,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201344,0.006040,-0.007497,0.249888,0,0);}
.maf_c00048{transform:matrix(0.201634,0.006049,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201634,0.006049,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201634,0.006049,-0.007497,0.249888,0,0);}
.m94_c00048{transform:matrix(0.202099,0.006063,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202099,0.006063,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202099,0.006063,-0.007497,0.249888,0,0);}
.mce_c00048{transform:matrix(0.202254,0.006068,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202254,0.006068,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202254,0.006068,-0.007497,0.249888,0,0);}
.m37_c00048{transform:matrix(0.202514,0.006075,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202514,0.006075,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202514,0.006075,-0.007497,0.249888,0,0);}
.m28_c00048{transform:matrix(0.202580,0.006692,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202580,0.006692,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202580,0.006692,-0.008254,0.249864,0,0);}
.md4_c00048{transform:matrix(0.202624,0.006079,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202624,0.006079,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202624,0.006079,-0.007497,0.249888,0,0);}
.mc5_c00048{transform:matrix(0.203199,0.006096,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203199,0.006096,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203199,0.006096,-0.007497,0.249888,0,0);}
.ma1_c00048{transform:matrix(0.203388,0.006102,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203388,0.006102,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203388,0.006102,-0.007497,0.249888,0,0);}
.m2d_c00048{transform:matrix(0.203709,0.006729,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203709,0.006729,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203709,0.006729,-0.008254,0.249864,0,0);}
.m9d_c00048{transform:matrix(0.204073,0.006122,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204073,0.006122,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204073,0.006122,-0.007497,0.249888,0,0);}
.m68_c00048{transform:matrix(0.204438,0.006133,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204438,0.006133,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204438,0.006133,-0.007497,0.249888,0,0);}
.m5b_c00048{transform:matrix(0.204668,0.006140,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204668,0.006140,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204668,0.006140,-0.007497,0.249888,0,0);}
.m9e_c00048{transform:matrix(0.204838,0.006145,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204838,0.006145,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204838,0.006145,-0.007497,0.249888,0,0);}
.m65_c00048{transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);}
.m86_c00048{transform:matrix(0.205133,0.006154,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205133,0.006154,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205133,0.006154,-0.007497,0.249888,0,0);}
.m54_c00048{transform:matrix(0.205752,0.006173,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205752,0.006173,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205752,0.006173,-0.007497,0.249888,0,0);}
.me9_c00048{transform:matrix(0.205842,0.006175,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205842,0.006175,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205842,0.006175,-0.007497,0.249888,0,0);}
.mf1_c00048{transform:matrix(0.206017,0.006181,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206017,0.006181,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206017,0.006181,-0.007497,0.249888,0,0);}
.m79_c00048{transform:matrix(0.206197,0.006186,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206197,0.006186,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206197,0.006186,-0.007497,0.249888,0,0);}
.m53_c00048{transform:matrix(0.206272,0.006188,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206272,0.006188,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206272,0.006188,-0.007497,0.249888,0,0);}
.mcf_c00048{transform:matrix(0.206507,0.006195,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206507,0.006195,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206507,0.006195,-0.007497,0.249888,0,0);}
.m57_c00048{transform:matrix(0.206532,0.006196,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206532,0.006196,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206532,0.006196,-0.007497,0.249888,0,0);}
.m75_c00048{transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207032,0.006211,-0.007497,0.249888,0,0);}
.md5_c00048{transform:matrix(0.207037,0.006211,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207037,0.006211,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207037,0.006211,-0.007497,0.249888,0,0);}
.m4c_c00048{transform:matrix(0.207697,0.006231,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207697,0.006231,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207697,0.006231,-0.007497,0.249888,0,0);}
.mcd_c00048{transform:matrix(0.207747,0.006232,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207747,0.006232,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207747,0.006232,-0.007497,0.249888,0,0);}
.ma2_c00048{transform:matrix(0.207906,0.006237,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207906,0.006237,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207906,0.006237,-0.007497,0.249888,0,0);}
.m1c_c00048{transform:matrix(0.208526,0.006888,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208526,0.006888,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208526,0.006888,-0.008254,0.249864,0,0);}
.m40_c00048{transform:matrix(0.208741,0.006262,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208741,0.006262,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208741,0.006262,-0.007497,0.249888,0,0);}
.m67_c00048{transform:matrix(0.209006,0.006270,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209006,0.006270,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209006,0.006270,-0.007497,0.249888,0,0);}
.m63_c00048{transform:matrix(0.209046,0.006271,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209046,0.006271,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209046,0.006271,-0.007497,0.249888,0,0);}
.m7d_c00048{transform:matrix(0.209316,0.006279,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209316,0.006279,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209316,0.006279,-0.007497,0.249888,0,0);}
.ma0_c00048{transform:matrix(0.209391,0.006282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209391,0.006282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209391,0.006282,-0.007497,0.249888,0,0);}
.m47_c00048{transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);}
.m52_c00048{transform:matrix(0.209901,0.006297,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209901,0.006297,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209901,0.006297,-0.007497,0.249888,0,0);}
.m14_c00048{transform:matrix(0.210130,0.006941,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210130,0.006941,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210130,0.006941,-0.008254,0.249864,0,0);}
.ma8_c00048{transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);}
.m5d_c00048{transform:matrix(0.210735,0.006322,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210735,0.006322,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210735,0.006322,-0.007497,0.249888,0,0);}
.m78_c00048{transform:matrix(0.210830,0.006325,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210830,0.006325,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210830,0.006325,-0.007497,0.249888,0,0);}
.m27_c00048{transform:matrix(0.210920,0.006967,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210920,0.006967,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210920,0.006967,-0.008254,0.249864,0,0);}
.m74_c00048{transform:matrix(0.211325,0.006340,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211325,0.006340,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211325,0.006340,-0.007497,0.249888,0,0);}
.me4_c00048{transform:matrix(0.211590,0.006348,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211590,0.006348,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211590,0.006348,-0.007497,0.249888,0,0);}
.m38_c00048{transform:matrix(0.212270,0.006368,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212270,0.006368,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212270,0.006368,-0.007497,0.249888,0,0);}
.mc6_c00048{transform:matrix(0.212324,0.006370,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212324,0.006370,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212324,0.006370,-0.007497,0.249888,0,0);}
.m64_c00048{transform:matrix(0.212684,0.006381,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212684,0.006381,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212684,0.006381,-0.007497,0.249888,0,0);}
.m98_c00048{transform:matrix(0.213424,0.006403,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213424,0.006403,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213424,0.006403,-0.007497,0.249888,0,0);}
.me3_c00048{transform:matrix(0.213444,0.006403,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213444,0.006403,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213444,0.006403,-0.007497,0.249888,0,0);}
.mc2_c00048{transform:matrix(0.213459,0.006404,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213459,0.006404,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213459,0.006404,-0.007497,0.249888,0,0);}
.me1_c00048{transform:matrix(0.213859,0.006416,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213859,0.006416,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213859,0.006416,-0.007497,0.249888,0,0);}
.m3a_c00048{transform:matrix(0.214369,0.006431,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214369,0.006431,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214369,0.006431,-0.007497,0.249888,0,0);}
.m6a_c00048{transform:matrix(0.214623,0.006439,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214623,0.006439,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214623,0.006439,-0.007497,0.249888,0,0);}
.m6f_c00048{transform:matrix(0.215543,0.006466,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215543,0.006466,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215543,0.006466,-0.007497,0.249888,0,0);}
.md1_c00048{transform:matrix(0.215583,0.006467,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215583,0.006467,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215583,0.006467,-0.007497,0.249888,0,0);}
.m76_c00048{transform:matrix(0.216193,0.006486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216193,0.006486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216193,0.006486,-0.007497,0.249888,0,0);}
.m8c_c00048{transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);}
.me5_c00048{transform:matrix(0.216752,0.006503,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216752,0.006503,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216752,0.006503,-0.007497,0.249888,0,0);}
.me7_c00048{transform:matrix(0.216857,0.006506,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216857,0.006506,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216857,0.006506,-0.007497,0.249888,0,0);}
.m9b_c00048{transform:matrix(0.217532,0.006526,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217532,0.006526,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217532,0.006526,-0.007497,0.249888,0,0);}
.mc0_c00048{transform:matrix(0.217642,0.006529,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217642,0.006529,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217642,0.006529,-0.007497,0.249888,0,0);}
.m26_c00048{transform:matrix(0.217666,0.007190,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217666,0.007190,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217666,0.007190,-0.008254,0.249864,0,0);}
.mcb_c00048{transform:matrix(0.218057,0.006542,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218057,0.006542,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218057,0.006542,-0.007497,0.249888,0,0);}
.mb_c00048{transform:matrix(0.218961,0.007233,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218961,0.007233,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218961,0.007233,-0.008254,0.249864,0,0);}
.md7_c00048{transform:matrix(0.219016,0.006570,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219016,0.006570,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219016,0.006570,-0.007497,0.249888,0,0);}
.m69_c00048{transform:matrix(0.219201,0.006576,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219201,0.006576,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219201,0.006576,-0.007497,0.249888,0,0);}
.m16_c00048{transform:matrix(0.219465,0.007250,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219465,0.007250,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219465,0.007250,-0.008254,0.249864,0,0);}
.m71_c00048{transform:matrix(0.219856,0.006596,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219856,0.006596,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219856,0.006596,-0.007497,0.249888,0,0);}
.ma4_c00048{transform:matrix(0.220026,0.006601,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220026,0.006601,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220026,0.006601,-0.007497,0.249888,0,0);}
.mbf_c00048{transform:matrix(0.221265,0.006638,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221265,0.006638,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221265,0.006638,-0.007497,0.249888,0,0);}
.m6e_c00048{transform:matrix(0.221610,0.006648,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221610,0.006648,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221610,0.006648,-0.007497,0.249888,0,0);}
.m6c_c00048{transform:matrix(0.222740,0.006682,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222740,0.006682,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222740,0.006682,-0.007497,0.249888,0,0);}
.me6_c00048{transform:matrix(0.223809,0.006714,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223809,0.006714,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223809,0.006714,-0.007497,0.249888,0,0);}
.m12_c00048{transform:matrix(0.224023,0.007400,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224023,0.007400,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224023,0.007400,-0.008254,0.249864,0,0);}
.m43_c00048{transform:matrix(0.224439,0.006733,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224439,0.006733,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224439,0.006733,-0.007497,0.249888,0,0);}
.m1e_c00048{transform:matrix(0.224767,0.007425,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224767,0.007425,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224767,0.007425,-0.008254,0.249864,0,0);}
.m9_c00048{transform:matrix(0.224857,0.007428,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224857,0.007428,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224857,0.007428,-0.008254,0.249864,0,0);}
.m58_c00048{transform:matrix(0.225903,0.006777,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225903,0.006777,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225903,0.006777,-0.007497,0.249888,0,0);}
.md8_c00048{transform:matrix(0.226273,0.006788,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226273,0.006788,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226273,0.006788,-0.007497,0.249888,0,0);}
.mcc_c00048{transform:matrix(0.226703,0.006801,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226703,0.006801,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226703,0.006801,-0.007497,0.249888,0,0);}
.m2c_c00048{transform:matrix(0.227066,0.007501,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227066,0.007501,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227066,0.007501,-0.008254,0.249864,0,0);}
.m15_c00048{transform:matrix(0.227581,0.007518,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227581,0.007518,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227581,0.007518,-0.008254,0.249864,0,0);}
.md3_c00048{transform:matrix(0.227718,0.006832,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227718,0.006832,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227718,0.006832,-0.007497,0.249888,0,0);}
.m19_c00048{transform:matrix(0.229155,0.007570,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229155,0.007570,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229155,0.007570,-0.008254,0.249864,0,0);}
.m70_c00048{transform:matrix(0.229692,0.006891,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229692,0.006891,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229692,0.006891,-0.007497,0.249888,0,0);}
.m34_c00048{transform:matrix(0.230391,0.006912,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230391,0.006912,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230391,0.006912,-0.007497,0.249888,0,0);}
.m0_c00048{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.md6_c00048{transform:matrix(0.230891,0.006927,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230891,0.006927,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230891,0.006927,-0.007497,0.249888,0,0);}
.m72_c00048{transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);}
.m1b_c00048{transform:matrix(0.232108,0.007667,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232108,0.007667,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232108,0.007667,-0.008254,0.249864,0,0);}
.m1d_c00048{transform:matrix(0.232203,0.007670,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232203,0.007670,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232203,0.007670,-0.008254,0.249864,0,0);}
.m1a_c00048{transform:matrix(0.232238,0.007672,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232238,0.007672,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232238,0.007672,-0.008254,0.249864,0,0);}
.m7_c00048{transform:matrix(0.234937,0.007761,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234937,0.007761,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234937,0.007761,-0.008254,0.249864,0,0);}
.m11_c00048{transform:matrix(0.236081,0.007798,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236081,0.007798,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236081,0.007798,-0.008254,0.249864,0,0);}
.m73_c00048{transform:matrix(0.236214,0.007086,-0.007497,0.249888,0,0);-ms-transform:matrix(0.236214,0.007086,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.236214,0.007086,-0.007497,0.249888,0,0);}
.m1f_c00048{transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);}
.meb_c00048{transform:matrix(0.240022,0.007201,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240022,0.007201,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240022,0.007201,-0.007497,0.249888,0,0);}
.mea_c00048{transform:matrix(0.243256,0.007298,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243256,0.007298,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243256,0.007298,-0.007497,0.249888,0,0);}
.m21_c00048{transform:matrix(0.245241,0.008101,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245241,0.008101,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245241,0.008101,-0.008254,0.249864,0,0);}
.m18_c00048{transform:matrix(0.248150,0.008197,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248150,0.008197,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248150,0.008197,-0.008254,0.249864,0,0);}
.ma6_c00048{transform:matrix(0.249538,0.007486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249538,0.007486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249538,0.007486,-0.007497,0.249888,0,0);}
.m17_c00048{transform:matrix(0.253007,0.008358,-0.008254,0.249864,0,0);-ms-transform:matrix(0.253007,0.008358,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.253007,0.008358,-0.008254,0.249864,0,0);}
.m77_c00048{transform:matrix(0.259253,0.007778,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259253,0.007778,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259253,0.007778,-0.007497,0.249888,0,0);}
.mdd_c00048{transform:matrix(0.260298,0.007809,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260298,0.007809,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260298,0.007809,-0.007497,0.249888,0,0);}
.m22_c00048{transform:matrix(0.271332,0.008963,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271332,0.008963,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271332,0.008963,-0.008254,0.249864,0,0);}
.m5f_c00048{transform:matrix(0.273597,0.008208,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273597,0.008208,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273597,0.008208,-0.007497,0.249888,0,0);}
.ma5_c00048{transform:matrix(0.293788,0.008814,-0.007497,0.249888,0,0);-ms-transform:matrix(0.293788,0.008814,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.293788,0.008814,-0.007497,0.249888,0,0);}
.m61_c00048{transform:matrix(0.305623,0.009169,-0.007497,0.249888,0,0);-ms-transform:matrix(0.305623,0.009169,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.305623,0.009169,-0.007497,0.249888,0,0);}
.m59_c00048{transform:matrix(0.332830,0.009985,-0.007497,0.249888,0,0);-ms-transform:matrix(0.332830,0.009985,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.332830,0.009985,-0.007497,0.249888,0,0);}
.m33_c00048{transform:matrix(0.450043,0.013501,-0.007497,0.249888,0,0);-ms-transform:matrix(0.450043,0.013501,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.450043,0.013501,-0.007497,0.249888,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
.fc0_c00048{color:transparent;}
.fs0_c00048{font-size:22.050000px;}
.fsb_c00048{font-size:53.574092px;}
.fs4_c00048{font-size:55.624673px;}
.fs3_c00048{font-size:58.773240px;}
.fse_c00048{font-size:58.826454px;}
.fsa_c00048{font-size:59.876926px;}
.fs6_c00048{font-size:60.927399px;}
.fs9_c00048{font-size:61.977871px;}
.fs5_c00048{font-size:63.028344px;}
.fs2_c00048{font-size:64.020851px;}
.fs8_c00048{font-size:64.078816px;}
.fsd_c00048{font-size:65.129288px;}
.fsc_c00048{font-size:66.179761px;}
.fs7_c00048{font-size:67.230233px;}
.fs1_c00048{font-size:72.417028px;}
.y0_c00048{bottom:0.000000px;}
.yf8_c00048{bottom:27.024210px;}
.yf7_c00048{bottom:27.860520px;}
.yf6_c00048{bottom:29.920260px;}
.yf5_c00048{bottom:32.834370px;}
.yf4_c00048{bottom:33.780720px;}
.yf3_c00048{bottom:36.240600px;}
.yf2_c00048{bottom:36.995130px;}
.yf1_c00048{bottom:38.428365px;}
.yf0_c00048{bottom:43.624020px;}
.yef_c00048{bottom:44.209665px;}
.yee_c00048{bottom:46.953990px;}
.yed_c00048{bottom:47.747400px;}
.yec_c00048{bottom:49.270545px;}
.yeb_c00048{bottom:53.687205px;}
.yea_c00048{bottom:55.033785px;}
.ye9_c00048{bottom:56.258895px;}
.ye8_c00048{bottom:58.247565px;}
.ye7_c00048{bottom:59.429550px;}
.ye6_c00048{bottom:62.317410px;}
.ye5_c00048{bottom:67.198575px;}
.ye4_c00048{bottom:68.643120px;}
.ye3_c00048{bottom:72.158055px;}
.ye2_c00048{bottom:73.301475px;}
.ye1_c00048{bottom:76.723425px;}
.ye0_c00048{bottom:80.372685px;}
.ydf_c00048{bottom:81.401430px;}
.yde_c00048{bottom:83.093685px;}
.ydd_c00048{bottom:83.947110px;}
.ydc_c00048{bottom:85.783740px;}
.ydb_c00048{bottom:88.452420px;}
.yda_c00048{bottom:89.134005px;}
.yd9_c00048{bottom:91.653615px;}
.yd8_c00048{bottom:96.318540px;}
.yd7_c00048{bottom:99.715335px;}
.yd6_c00048{bottom:100.300980px;}
.yd5_c00048{bottom:101.953125px;}
.yd4_c00048{bottom:102.929235px;}
.yd3_c00048{bottom:104.595960px;}
.yd2_c00048{bottom:105.970290px;}
.yd1_c00048{bottom:107.588520px;}
.yd0_c00048{bottom:112.014705px;}
.ycf_c00048{bottom:115.132335px;}
.yce_c00048{bottom:116.517270px;}
.ycd_c00048{bottom:118.916205px;}
.ycc_c00048{bottom:120.137580px;}
.ycb_c00048{bottom:121.205610px;}
.yca_c00048{bottom:125.145135px;}
.yc9_c00048{bottom:129.250530px;}
.yc8_c00048{bottom:131.007270px;}
.yc7_c00048{bottom:131.939175px;}
.yc6_c00048{bottom:135.741165px;}
.yc5_c00048{bottom:136.457175px;}
.yc4_c00048{bottom:139.054875px;}
.yc3_c00048{bottom:139.617210px;}
.yc2_c00048{bottom:142.167945px;}
.yc1_c00048{bottom:144.512235px;}
.yc0_c00048{bottom:145.963005px;}
.ybf_c00048{bottom:146.878920px;}
.ybe_c00048{bottom:148.770750px;}
.ybd_c00048{bottom:149.994570px;}
.ybc_c00048{bottom:151.755780px;}
.ybb_c00048{bottom:154.024140px;}
.yba_c00048{bottom:156.210525px;}
.yb9_c00048{bottom:161.904540px;}
.yb8_c00048{bottom:164.540820px;}
.yb7_c00048{bottom:165.383400px;}
.yb6_c00048{bottom:166.443465px;}
.yb5_c00048{bottom:168.697020px;}
.yb4_c00048{bottom:169.884870px;}
.yb3_c00048{bottom:170.930880px;}
.yb2_c00048{bottom:173.914140px;}
.yb1_c00048{bottom:175.748010px;}
.yb0_c00048{bottom:176.465700px;}
.yaf_c00048{bottom:179.297490px;}
.yae_c00048{bottom:181.079490px;}
.yad_c00048{bottom:183.818355px;}
.yac_c00048{bottom:185.125200px;}
.yab_c00048{bottom:187.790100px;}
.yaa_c00048{bottom:190.040130px;}
.ya9_c00048{bottom:191.322915px;}
.ya8_c00048{bottom:198.146520px;}
.ya7_c00048{bottom:201.084570px;}
.ya6_c00048{bottom:201.800460px;}
.ya5_c00048{bottom:203.191515px;}
.ya4_c00048{bottom:203.979135px;}
.ya3_c00048{bottom:207.526350px;}
.ya2_c00048{bottom:219.404895px;}
.ya1_c00048{bottom:225.634590px;}
.ya0_c00048{bottom:231.231135px;}
.y9f_c00048{bottom:233.065215px;}
.y9e_c00048{bottom:235.273800px;}
.y9d_c00048{bottom:237.910035px;}
.y9c_c00048{bottom:238.565010px;}
.y9b_c00048{bottom:240.143610px;}
.y9a_c00048{bottom:242.375070px;}
.y99_c00048{bottom:248.381775px;}
.y98_c00048{bottom:249.294000px;}
.y97_c00048{bottom:251.775075px;}
.y96_c00048{bottom:253.461060px;}
.y95_c00048{bottom:254.190885px;}
.y94_c00048{bottom:254.639670px;}
.y93_c00048{bottom:256.263915px;}
.y92_c00048{bottom:256.868085px;}
.y91_c00048{bottom:259.118910px;}
.y90_c00048{bottom:265.831440px;}
.y8f_c00048{bottom:266.356050px;}
.y8e_c00048{bottom:268.534350px;}
.y8d_c00048{bottom:272.569215px;}
.y8c_c00048{bottom:273.360795px;}
.y8b_c00048{bottom:276.678420px;}
.y8a_c00048{bottom:282.352140px;}
.y89_c00048{bottom:283.325865px;}
.y88_c00048{bottom:283.892685px;}
.y87_c00048{bottom:286.134060px;}
.y86_c00048{bottom:289.187490px;}
.y85_c00048{bottom:290.041830px;}
.y84_c00048{bottom:292.558500px;}
.y83_c00048{bottom:293.417850px;}
.y82_c00048{bottom:294.499905px;}
.y81_c00048{bottom:299.590245px;}
.y80_c00048{bottom:301.900650px;}
.y7f_c00048{bottom:303.370740px;}
.y7e_c00048{bottom:305.627505px;}
.y7d_c00048{bottom:308.010630px;}
.y7c_c00048{bottom:308.774115px;}
.y7b_c00048{bottom:309.645870px;}
.y7a_c00048{bottom:311.255670px;}
.y79_c00048{bottom:316.375905px;}
.y78_c00048{bottom:317.839815px;}
.y77_c00048{bottom:318.598395px;}
.y76_c00048{bottom:319.645095px;}
.y75_c00048{bottom:321.008715px;}
.y74_c00048{bottom:323.367720px;}
.y73_c00048{bottom:324.086715px;}
.y72_c00048{bottom:326.920425px;}
.y71_c00048{bottom:332.236740px;}
.y70_c00048{bottom:334.134060px;}
.y6f_c00048{bottom:334.912995px;}
.y6e_c00048{bottom:337.560765px;}
.y6d_c00048{bottom:339.737790px;}
.y6c_c00048{bottom:342.005670px;}
.y6b_c00048{bottom:342.853005px;}
.y6a_c00048{bottom:350.265330px;}
.y69_c00048{bottom:351.270960px;}
.y68_c00048{bottom:351.853230px;}
.y67_c00048{bottom:354.256635px;}
.y66_c00048{bottom:354.758835px;}
.y65_c00048{bottom:357.372735px;}
.y64_c00048{bottom:358.032960px;}
.y63_c00048{bottom:358.662300px;}
.y62_c00048{bottom:360.143130px;}
.y61_c00048{bottom:367.213275px;}
.y60_c00048{bottom:367.773495px;}
.y5f_c00048{bottom:368.923620px;}
.y5e_c00048{bottom:369.547305px;}
.y5d_c00048{bottom:371.337315px;}
.y5c_c00048{bottom:371.863755px;}
.y5b_c00048{bottom:372.324795px;}
.y5a_c00048{bottom:375.654450px;}
.y59_c00048{bottom:376.345965px;}
.y58_c00048{bottom:384.311775px;}
.y57_c00048{bottom:385.198245px;}
.y56_c00048{bottom:385.812570px;}
.y55_c00048{bottom:386.936025px;}
.y54_c00048{bottom:389.856195px;}
.y53_c00048{bottom:391.128375px;}
.y52_c00048{bottom:392.032320px;}
.y51_c00048{bottom:393.370065px;}
.y50_c00048{bottom:399.581940px;}
.y4f_c00048{bottom:400.251915px;}
.y4e_c00048{bottom:403.888320px;}
.y4d_c00048{bottom:406.525605px;}
.y4c_c00048{bottom:407.504745px;}
.y4b_c00048{bottom:408.301800px;}
.y4a_c00048{bottom:410.927085px;}
.y49_c00048{bottom:419.672280px;}
.y48_c00048{bottom:420.253230px;}
.y47_c00048{bottom:421.304775px;}
.y46_c00048{bottom:422.187465px;}
.y45_c00048{bottom:423.389220px;}
.y44_c00048{bottom:423.992145px;}
.y43_c00048{bottom:427.134705px;}
.y42_c00048{bottom:435.236295px;}
.y41_c00048{bottom:436.245255px;}
.y40_c00048{bottom:438.155355px;}
.y3f_c00048{bottom:439.147185px;}
.y3e_c00048{bottom:441.489465px;}
.y3d_c00048{bottom:442.074090px;}
.y3c_c00048{bottom:442.540035px;}
.y3b_c00048{bottom:444.157830px;}
.y3a_c00048{bottom:451.934625px;}
.y39_c00048{bottom:453.040815px;}
.y38_c00048{bottom:453.575190px;}
.y37_c00048{bottom:454.953495px;}
.y36_c00048{bottom:455.702475px;}
.y35_c00048{bottom:457.107105px;}
.y34_c00048{bottom:457.804605px;}
.y33_c00048{bottom:459.125760px;}
.y32_c00048{bottom:459.757740px;}
.y31_c00048{bottom:460.087500px;}
.y30_c00048{bottom:469.530000px;}
.y2f_c00048{bottom:470.036519px;}
.y2e_c00048{bottom:471.144095px;}
.y2d_c00048{bottom:472.343106px;}
.y2c_c00048{bottom:473.230753px;}
.y2b_c00048{bottom:474.487572px;}
.y2a_c00048{bottom:476.594288px;}
.y29_c00048{bottom:486.428659px;}
.y28_c00048{bottom:487.407783px;}
.y27_c00048{bottom:487.757815px;}
.y26_c00048{bottom:488.467614px;}
.y25_c00048{bottom:488.870062px;}
.y24_c00048{bottom:489.178969px;}
.y23_c00048{bottom:490.246999px;}
.y22_c00048{bottom:490.897024px;}
.y21_c00048{bottom:503.262264px;}
.y20_c00048{bottom:503.612423px;}
.y1f_c00048{bottom:505.442757px;}
.y1e_c00048{bottom:505.797073px;}
.y1d_c00048{bottom:507.898915px;}
.y1c_c00048{bottom:509.155783px;}
.y1b_c00048{bottom:509.792731px;}
.y1a_c00048{bottom:510.625479px;}
.y19_c00048{bottom:511.956012px;}
.y18_c00048{bottom:520.846730px;}
.y17_c00048{bottom:522.660360px;}
.y16_c00048{bottom:524.767715px;}
.y15_c00048{bottom:525.310986px;}
.y14_c00048{bottom:526.826104px;}
.y13_c00048{bottom:528.303891px;}
.y12_c00048{bottom:529.227070px;}
.y11_c00048{bottom:537.520989px;}
.y10_c00048{bottom:538.695183px;}
.yf_c00048{bottom:539.105632px;}
.ye_c00048{bottom:540.869664px;}
.yd_c00048{bottom:542.439264px;}
.yc_c00048{bottom:542.720950px;}
.yb_c00048{bottom:543.845906px;}
.ya_c00048{bottom:544.605888px;}
.y9_c00048{bottom:553.567444px;}
.y8_c00048{bottom:554.549970px;}
.y7_c00048{bottom:556.088776px;}
.y6_c00048{bottom:556.890528px;}
.y5_c00048{bottom:557.767420px;}
.y4_c00048{bottom:558.315930px;}
.y3_c00048{bottom:560.935520px;}
.y2_c00048{bottom:562.962000px;}
.y1_c00048{bottom:594.676500px;}
.h2_c00048{height:22.050000px;}
.hd_c00048{height:53.574092px;}
.h6_c00048{height:55.624673px;}
.h5_c00048{height:58.773240px;}
.h10_c00048{height:58.826454px;}
.hc_c00048{height:59.876926px;}
.h8_c00048{height:60.927399px;}
.hb_c00048{height:61.977871px;}
.h7_c00048{height:63.028344px;}
.h4_c00048{height:64.020851px;}
.ha_c00048{height:64.078816px;}
.hf_c00048{height:65.129288px;}
.he_c00048{height:66.179761px;}
.h9_c00048{height:67.230233px;}
.h3_c00048{height:72.417028px;}
.h0_c00048{height:618.570000px;}
.h1_c00048{height:618.750000px;}
.w0_c00048{width:361.200000px;}
.w1_c00048{width:361.500000px;}
.x0_c00048{left:0.000000px;}
.x36_c00048{left:23.178690px;}
.x50_c00048{left:25.724025px;}
.x62_c00048{left:26.944800px;}
.x3a_c00048{left:29.041725px;}
.x2b_c00048{left:30.089430px;}
.x2_c00048{left:31.207500px;}
.x24_c00048{left:35.370000px;}
.x7d_c00048{left:37.100295px;}
.x63_c00048{left:41.673285px;}
.x25_c00048{left:42.871500px;}
.x79_c00048{left:47.897985px;}
.x3f_c00048{left:50.650665px;}
.x4b_c00048{left:52.019340px;}
.x56_c00048{left:54.309075px;}
.x65_c00048{left:57.837705px;}
.x10_c00048{left:61.194942px;}
.x9_c00048{left:63.446998px;}
.x51_c00048{left:65.971965px;}
.x46_c00048{left:69.012870px;}
.x3b_c00048{left:70.830705px;}
.x1c_c00048{left:72.138406px;}
.x15_c00048{left:74.071683px;}
.x73_c00048{left:75.866955px;}
.x69_c00048{left:76.904505px;}
.x5f_c00048{left:82.545675px;}
.x7e_c00048{left:84.652980px;}
.x47_c00048{left:86.037315px;}
.x2c_c00048{left:87.936990px;}
.x74_c00048{left:89.228040px;}
.x3_c00048{left:92.554592px;}
.x72_c00048{left:93.747975px;}
.x6f_c00048{left:95.401800px;}
.x3c_c00048{left:99.060495px;}
.x16_c00048{left:100.916095px;}
.x2d_c00048{left:104.171565px;}
.x52_c00048{left:106.867725px;}
.x26_c00048{left:107.976000px;}
.xa_c00048{left:110.263558px;}
.x66_c00048{left:111.419445px;}
.x37_c00048{left:113.235090px;}
.xb_c00048{left:122.015313px;}
.x27_c00048{left:131.226000px;}
.x30_c00048{left:132.316425px;}
.x58_c00048{left:134.310615px;}
.x6a_c00048{left:135.409695px;}
.x60_c00048{left:137.030220px;}
.x1d_c00048{left:138.712126px;}
.x75_c00048{left:141.551100px;}
.x5b_c00048{left:143.533005px;}
.x64_c00048{left:150.035295px;}
.x31_c00048{left:151.763340px;}
.x5c_c00048{left:155.039400px;}
.x21_c00048{left:156.068419px;}
.x1e_c00048{left:157.963657px;}
.x11_c00048{left:160.835562px;}
.x17_c00048{left:161.925538px;}
.x40_c00048{left:165.496815px;}
.x70_c00048{left:167.424240px;}
.x2e_c00048{left:169.235865px;}
.x4_c00048{left:171.856710px;}
.x48_c00048{left:174.556275px;}
.x76_c00048{left:177.549420px;}
.x12_c00048{left:178.916746px;}
.x6c_c00048{left:180.149400px;}
.x41_c00048{left:181.443375px;}
.x1f_c00048{left:183.089628px;}
.x4d_c00048{left:184.557675px;}
.xc_c00048{left:187.333353px;}
.x5_c00048{left:188.461589px;}
.x32_c00048{left:190.520670px;}
.x77_c00048{left:194.286390px;}
.x2f_c00048{left:196.791915px;}
.x61_c00048{left:201.333525px;}
.x28_c00048{left:203.013000px;}
.x67_c00048{left:205.976925px;}
.x38_c00048{left:208.409775px;}
.x6d_c00048{left:209.983545px;}
.x7b_c00048{left:211.051530px;}
.x6_c00048{left:215.007516px;}
.x5d_c00048{left:216.999705px;}
.x33_c00048{left:218.992815px;}
.x4e_c00048{left:220.453080px;}
.x53_c00048{left:222.845940px;}
.x20_c00048{left:227.329168px;}
.x18_c00048{left:229.641214px;}
.x22_c00048{left:233.269951px;}
.x42_c00048{left:235.705515px;}
.x59_c00048{left:237.778215px;}
.x7_c00048{left:239.278721px;}
.x19_c00048{left:241.048539px;}
.x4c_c00048{left:243.701610px;}
.x4f_c00048{left:247.986465px;}
.x13_c00048{left:249.069960px;}
.x34_c00048{left:252.893280px;}
.x43_c00048{left:254.593305px;}
.x6e_c00048{left:256.129335px;}
.x54_c00048{left:259.587915px;}
.xd_c00048{left:260.717197px;}
.x3d_c00048{left:265.144005px;}
.x29_c00048{left:266.769000px;}
.x49_c00048{left:268.849020px;}
.x71_c00048{left:270.321375px;}
.x35_c00048{left:271.657740px;}
.x23_c00048{left:274.247059px;}
.x57_c00048{left:275.828265px;}
.xe_c00048{left:277.820181px;}
.x5e_c00048{left:280.635060px;}
.x3e_c00048{left:284.320335px;}
.x8_c00048{left:285.862590px;}
.x7c_c00048{left:287.939130px;}
.x44_c00048{left:289.427655px;}
.x7a_c00048{left:291.933480px;}
.x5a_c00048{left:293.623140px;}
.x4a_c00048{left:296.014305px;}
.x1a_c00048{left:300.045397px;}
.x2a_c00048{left:303.642000px;}
.x45_c00048{left:306.400125px;}
.x14_c00048{left:309.468496px;}
.x1b_c00048{left:311.326848px;}
.x6b_c00048{left:312.376275px;}
.x68_c00048{left:313.633725px;}
.x1_c00048{left:315.090000px;}
.x55_c00048{left:317.334090px;}
.x78_c00048{left:319.199775px;}
.x39_c00048{left:321.728595px;}
.xf_c00048{left:326.672298px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs0_c00048{font-size:19.600000pt;}
.fsb_c00048{font-size:47.621415pt;}
.fs4_c00048{font-size:49.444154pt;}
.fs3_c00048{font-size:52.242880pt;}
.fse_c00048{font-size:52.290181pt;}
.fsa_c00048{font-size:53.223935pt;}
.fs6_c00048{font-size:54.157688pt;}
.fs9_c00048{font-size:55.091441pt;}
.fs5_c00048{font-size:56.025194pt;}
.fs2_c00048{font-size:56.907423pt;}
.fs8_c00048{font-size:56.958948pt;}
.fsd_c00048{font-size:57.892701pt;}
.fsc_c00048{font-size:58.826454pt;}
.fs7_c00048{font-size:59.760207pt;}
.fs1_c00048{font-size:64.370691pt;}
.y0_c00048{bottom:0.000000pt;}
.yf8_c00048{bottom:24.021520pt;}
.yf7_c00048{bottom:24.764907pt;}
.yf6_c00048{bottom:26.595787pt;}
.yf5_c00048{bottom:29.186107pt;}
.yf4_c00048{bottom:30.027307pt;}
.yf3_c00048{bottom:32.213867pt;}
.yf2_c00048{bottom:32.884560pt;}
.yf1_c00048{bottom:34.158547pt;}
.yf0_c00048{bottom:38.776907pt;}
.yef_c00048{bottom:39.297480pt;}
.yee_c00048{bottom:41.736880pt;}
.yed_c00048{bottom:42.442133pt;}
.yec_c00048{bottom:43.796040pt;}
.yeb_c00048{bottom:47.721960pt;}
.yea_c00048{bottom:48.918920pt;}
.ye9_c00048{bottom:50.007907pt;}
.ye8_c00048{bottom:51.775613pt;}
.ye7_c00048{bottom:52.826267pt;}
.ye6_c00048{bottom:55.393253pt;}
.ye5_c00048{bottom:59.732067pt;}
.ye4_c00048{bottom:61.016107pt;}
.ye3_c00048{bottom:64.140493pt;}
.ye2_c00048{bottom:65.156867pt;}
.ye1_c00048{bottom:68.198600pt;}
.ye0_c00048{bottom:71.442387pt;}
.ydf_c00048{bottom:72.356827pt;}
.yde_c00048{bottom:73.861053pt;}
.ydd_c00048{bottom:74.619653pt;}
.ydc_c00048{bottom:76.252213pt;}
.ydb_c00048{bottom:78.624373pt;}
.yda_c00048{bottom:79.230227pt;}
.yd9_c00048{bottom:81.469880pt;}
.yd8_c00048{bottom:85.616480pt;}
.yd7_c00048{bottom:88.635853pt;}
.yd6_c00048{bottom:89.156427pt;}
.yd5_c00048{bottom:90.625000pt;}
.yd4_c00048{bottom:91.492653pt;}
.yd3_c00048{bottom:92.974187pt;}
.yd2_c00048{bottom:94.195813pt;}
.yd1_c00048{bottom:95.634240pt;}
.yd0_c00048{bottom:99.568627pt;}
.ycf_c00048{bottom:102.339853pt;}
.yce_c00048{bottom:103.570907pt;}
.ycd_c00048{bottom:105.703293pt;}
.ycc_c00048{bottom:106.788960pt;}
.ycb_c00048{bottom:107.738320pt;}
.yca_c00048{bottom:111.240120pt;}
.yc9_c00048{bottom:114.889360pt;}
.yc8_c00048{bottom:116.450907pt;}
.yc7_c00048{bottom:117.279267pt;}
.yc6_c00048{bottom:120.658813pt;}
.yc5_c00048{bottom:121.295267pt;}
.yc4_c00048{bottom:123.604333pt;}
.yc3_c00048{bottom:124.104187pt;}
.yc2_c00048{bottom:126.371507pt;}
.yc1_c00048{bottom:128.455320pt;}
.yc0_c00048{bottom:129.744893pt;}
.ybf_c00048{bottom:130.559040pt;}
.ybe_c00048{bottom:132.240667pt;}
.ybd_c00048{bottom:133.328507pt;}
.ybc_c00048{bottom:134.894027pt;}
.ybb_c00048{bottom:136.910347pt;}
.yba_c00048{bottom:138.853800pt;}
.yb9_c00048{bottom:143.915147pt;}
.yb8_c00048{bottom:146.258507pt;}
.yb7_c00048{bottom:147.007467pt;}
.yb6_c00048{bottom:147.949747pt;}
.yb5_c00048{bottom:149.952907pt;}
.yb4_c00048{bottom:151.008773pt;}
.yb3_c00048{bottom:151.938560pt;}
.yb2_c00048{bottom:154.590347pt;}
.yb1_c00048{bottom:156.220453pt;}
.yb0_c00048{bottom:156.858400pt;}
.yaf_c00048{bottom:159.375547pt;}
.yae_c00048{bottom:160.959547pt;}
.yad_c00048{bottom:163.394093pt;}
.yac_c00048{bottom:164.555733pt;}
.yab_c00048{bottom:166.924533pt;}
.yaa_c00048{bottom:168.924560pt;}
.ya9_c00048{bottom:170.064813pt;}
.ya8_c00048{bottom:176.130240pt;}
.ya7_c00048{bottom:178.741840pt;}
.ya6_c00048{bottom:179.378187pt;}
.ya5_c00048{bottom:180.614680pt;}
.ya4_c00048{bottom:181.314787pt;}
.ya3_c00048{bottom:184.467867pt;}
.ya2_c00048{bottom:195.026573pt;}
.ya1_c00048{bottom:200.564080pt;}
.ya0_c00048{bottom:205.538787pt;}
.y9f_c00048{bottom:207.169080pt;}
.y9e_c00048{bottom:209.132267pt;}
.y9d_c00048{bottom:211.475587pt;}
.y9c_c00048{bottom:212.057787pt;}
.y9b_c00048{bottom:213.460987pt;}
.y9a_c00048{bottom:215.444507pt;}
.y99_c00048{bottom:220.783800pt;}
.y98_c00048{bottom:221.594667pt;}
.y97_c00048{bottom:223.800067pt;}
.y96_c00048{bottom:225.298720pt;}
.y95_c00048{bottom:225.947453pt;}
.y94_c00048{bottom:226.346373pt;}
.y93_c00048{bottom:227.790147pt;}
.y92_c00048{bottom:228.327187pt;}
.y91_c00048{bottom:230.327920pt;}
.y90_c00048{bottom:236.294613pt;}
.y8f_c00048{bottom:236.760933pt;}
.y8e_c00048{bottom:238.697200pt;}
.y8d_c00048{bottom:242.283747pt;}
.y8c_c00048{bottom:242.987373pt;}
.y8b_c00048{bottom:245.936373pt;}
.y8a_c00048{bottom:250.979680pt;}
.y89_c00048{bottom:251.845213pt;}
.y88_c00048{bottom:252.349053pt;}
.y87_c00048{bottom:254.341387pt;}
.y86_c00048{bottom:257.055547pt;}
.y85_c00048{bottom:257.814960pt;}
.y84_c00048{bottom:260.052000pt;}
.y83_c00048{bottom:260.815867pt;}
.y82_c00048{bottom:261.777693pt;}
.y81_c00048{bottom:266.302440pt;}
.y80_c00048{bottom:268.356133pt;}
.y7f_c00048{bottom:269.662880pt;}
.y7e_c00048{bottom:271.668893pt;}
.y7d_c00048{bottom:273.787227pt;}
.y7c_c00048{bottom:274.465880pt;}
.y7b_c00048{bottom:275.240773pt;}
.y7a_c00048{bottom:276.671707pt;}
.y79_c00048{bottom:281.223027pt;}
.y78_c00048{bottom:282.524280pt;}
.y77_c00048{bottom:283.198573pt;}
.y76_c00048{bottom:284.128973pt;}
.y75_c00048{bottom:285.341080pt;}
.y74_c00048{bottom:287.437973pt;}
.y73_c00048{bottom:288.077080pt;}
.y72_c00048{bottom:290.595933pt;}
.y71_c00048{bottom:295.321547pt;}
.y70_c00048{bottom:297.008053pt;}
.y6f_c00048{bottom:297.700440pt;}
.y6e_c00048{bottom:300.054013pt;}
.y6d_c00048{bottom:301.989147pt;}
.y6c_c00048{bottom:304.005040pt;}
.y6b_c00048{bottom:304.758227pt;}
.y6a_c00048{bottom:311.346960pt;}
.y69_c00048{bottom:312.240853pt;}
.y68_c00048{bottom:312.758427pt;}
.y67_c00048{bottom:314.894787pt;}
.y66_c00048{bottom:315.341187pt;}
.y65_c00048{bottom:317.664653pt;}
.y64_c00048{bottom:318.251520pt;}
.y63_c00048{bottom:318.810933pt;}
.y62_c00048{bottom:320.127227pt;}
.y61_c00048{bottom:326.411800pt;}
.y60_c00048{bottom:326.909773pt;}
.y5f_c00048{bottom:327.932107pt;}
.y5e_c00048{bottom:328.486493pt;}
.y5d_c00048{bottom:330.077613pt;}
.y5c_c00048{bottom:330.545560pt;}
.y5b_c00048{bottom:330.955373pt;}
.y5a_c00048{bottom:333.915067pt;}
.y59_c00048{bottom:334.529747pt;}
.y58_c00048{bottom:341.610467pt;}
.y57_c00048{bottom:342.398440pt;}
.y56_c00048{bottom:342.944507pt;}
.y55_c00048{bottom:343.943133pt;}
.y54_c00048{bottom:346.538840pt;}
.y53_c00048{bottom:347.669667pt;}
.y52_c00048{bottom:348.473173pt;}
.y51_c00048{bottom:349.662280pt;}
.y50_c00048{bottom:355.183947pt;}
.y4f_c00048{bottom:355.779480pt;}
.y4e_c00048{bottom:359.011840pt;}
.y4d_c00048{bottom:361.356093pt;}
.y4c_c00048{bottom:362.226440pt;}
.y4b_c00048{bottom:362.934933pt;}
.y4a_c00048{bottom:365.268520pt;}
.y49_c00048{bottom:373.042027pt;}
.y48_c00048{bottom:373.558427pt;}
.y47_c00048{bottom:374.493133pt;}
.y46_c00048{bottom:375.277747pt;}
.y45_c00048{bottom:376.345973pt;}
.y44_c00048{bottom:376.881907pt;}
.y43_c00048{bottom:379.675293pt;}
.y42_c00048{bottom:386.876707pt;}
.y41_c00048{bottom:387.773560pt;}
.y40_c00048{bottom:389.471427pt;}
.y3f_c00048{bottom:390.353053pt;}
.y3e_c00048{bottom:392.435080pt;}
.y3d_c00048{bottom:392.954747pt;}
.y3c_c00048{bottom:393.368920pt;}
.y3b_c00048{bottom:394.806960pt;}
.y3a_c00048{bottom:401.719667pt;}
.y39_c00048{bottom:402.702947pt;}
.y38_c00048{bottom:403.177947pt;}
.y37_c00048{bottom:404.403107pt;}
.y36_c00048{bottom:405.068867pt;}
.y35_c00048{bottom:406.317427pt;}
.y34_c00048{bottom:406.937427pt;}
.y33_c00048{bottom:408.111787pt;}
.y32_c00048{bottom:408.673547pt;}
.y31_c00048{bottom:408.966667pt;}
.y30_c00048{bottom:417.360000pt;}
.y2f_c00048{bottom:417.810239pt;}
.y2e_c00048{bottom:418.794751pt;}
.y2d_c00048{bottom:419.860539pt;}
.y2c_c00048{bottom:420.649559pt;}
.y2b_c00048{bottom:421.766731pt;}
.y2a_c00048{bottom:423.639367pt;}
.y29_c00048{bottom:432.381031pt;}
.y28_c00048{bottom:433.251363pt;}
.y27_c00048{bottom:433.562503pt;}
.y26_c00048{bottom:434.193435pt;}
.y25_c00048{bottom:434.551167pt;}
.y24_c00048{bottom:434.825751pt;}
.y23_c00048{bottom:435.775111pt;}
.y22_c00048{bottom:436.352911pt;}
.y21_c00048{bottom:447.344235pt;}
.y20_c00048{bottom:447.655487pt;}
.y1f_c00048{bottom:449.282451pt;}
.y1e_c00048{bottom:449.597399pt;}
.y1d_c00048{bottom:451.465703pt;}
.y1c_c00048{bottom:452.582919pt;}
.y1b_c00048{bottom:453.149095pt;}
.y1a_c00048{bottom:453.889315pt;}
.y19_c00048{bottom:455.072011pt;}
.y18_c00048{bottom:462.974871pt;}
.y17_c00048{bottom:464.586987pt;}
.y16_c00048{bottom:466.460191pt;}
.y15_c00048{bottom:466.943099pt;}
.y14_c00048{bottom:468.289871pt;}
.y13_c00048{bottom:469.603459pt;}
.y12_c00048{bottom:470.424063pt;}
.y11_c00048{bottom:477.796435pt;}
.y10_c00048{bottom:478.840163pt;}
.yf_c00048{bottom:479.205007pt;}
.ye_c00048{bottom:480.773035pt;}
.yd_c00048{bottom:482.168235pt;}
.yc_c00048{bottom:482.418623pt;}
.yb_c00048{bottom:483.418583pt;}
.ya_c00048{bottom:484.094123pt;}
.y9_c00048{bottom:492.059951pt;}
.y8_c00048{bottom:492.933307pt;}
.y7_c00048{bottom:494.301135pt;}
.y6_c00048{bottom:495.013803pt;}
.y5_c00048{bottom:495.793263pt;}
.y4_c00048{bottom:496.280827pt;}
.y3_c00048{bottom:498.609351pt;}
.y2_c00048{bottom:500.410667pt;}
.y1_c00048{bottom:528.601333pt;}
.h2_c00048{height:19.600000pt;}
.hd_c00048{height:47.621415pt;}
.h6_c00048{height:49.444154pt;}
.h5_c00048{height:52.242880pt;}
.h10_c00048{height:52.290181pt;}
.hc_c00048{height:53.223935pt;}
.h8_c00048{height:54.157688pt;}
.hb_c00048{height:55.091441pt;}
.h7_c00048{height:56.025194pt;}
.h4_c00048{height:56.907423pt;}
.ha_c00048{height:56.958948pt;}
.hf_c00048{height:57.892701pt;}
.he_c00048{height:58.826454pt;}
.h9_c00048{height:59.760207pt;}
.h3_c00048{height:64.370691pt;}
.h0_c00048{height:549.840000pt;}
.h1_c00048{height:550.000000pt;}
.w0_c00048{width:321.066667pt;}
.w1_c00048{width:321.333333pt;}
.x0_c00048{left:0.000000pt;}
.x36_c00048{left:20.603280pt;}
.x50_c00048{left:22.865800pt;}
.x62_c00048{left:23.950933pt;}
.x3a_c00048{left:25.814867pt;}
.x2b_c00048{left:26.746160pt;}
.x2_c00048{left:27.740000pt;}
.x24_c00048{left:31.440000pt;}
.x7d_c00048{left:32.978040pt;}
.x63_c00048{left:37.042920pt;}
.x25_c00048{left:38.108000pt;}
.x79_c00048{left:42.575987pt;}
.x3f_c00048{left:45.022813pt;}
.x4b_c00048{left:46.239413pt;}
.x56_c00048{left:48.274733pt;}
.x65_c00048{left:51.411293pt;}
.x10_c00048{left:54.395504pt;}
.x9_c00048{left:56.397332pt;}
.x51_c00048{left:58.641747pt;}
.x46_c00048{left:61.344773pt;}
.x3b_c00048{left:62.960627pt;}
.x1c_c00048{left:64.123028pt;}
.x15_c00048{left:65.841496pt;}
.x73_c00048{left:67.437293pt;}
.x69_c00048{left:68.359560pt;}
.x5f_c00048{left:73.373933pt;}
.x7e_c00048{left:75.247093pt;}
.x47_c00048{left:76.477613pt;}
.x2c_c00048{left:78.166213pt;}
.x74_c00048{left:79.313813pt;}
.x3_c00048{left:82.270748pt;}
.x72_c00048{left:83.331533pt;}
.x6f_c00048{left:84.801600pt;}
.x3c_c00048{left:88.053773pt;}
.x16_c00048{left:89.703196pt;}
.x2d_c00048{left:92.596947pt;}
.x52_c00048{left:94.993533pt;}
.x26_c00048{left:95.978667pt;}
.xa_c00048{left:98.012052pt;}
.x66_c00048{left:99.039507pt;}
.x37_c00048{left:100.653413pt;}
.xb_c00048{left:108.458056pt;}
.x27_c00048{left:116.645333pt;}
.x30_c00048{left:117.614600pt;}
.x58_c00048{left:119.387213pt;}
.x6a_c00048{left:120.364173pt;}
.x60_c00048{left:121.804640pt;}
.x1d_c00048{left:123.299668pt;}
.x75_c00048{left:125.823200pt;}
.x5b_c00048{left:127.584893pt;}
.x64_c00048{left:133.364707pt;}
.x31_c00048{left:134.900747pt;}
.x5c_c00048{left:137.812800pt;}
.x21_c00048{left:138.727484pt;}
.x1e_c00048{left:140.412140pt;}
.x11_c00048{left:142.964944pt;}
.x17_c00048{left:143.933812pt;}
.x40_c00048{left:147.108280pt;}
.x70_c00048{left:148.821547pt;}
.x2e_c00048{left:150.431880pt;}
.x4_c00048{left:152.761520pt;}
.x48_c00048{left:155.161133pt;}
.x76_c00048{left:157.821707pt;}
.x12_c00048{left:159.037108pt;}
.x6c_c00048{left:160.132800pt;}
.x41_c00048{left:161.283000pt;}
.x1f_c00048{left:162.746336pt;}
.x4d_c00048{left:164.051267pt;}
.xc_c00048{left:166.518536pt;}
.x5_c00048{left:167.521412pt;}
.x32_c00048{left:169.351707pt;}
.x77_c00048{left:172.699013pt;}
.x2f_c00048{left:174.926147pt;}
.x61_c00048{left:178.963133pt;}
.x28_c00048{left:180.456000pt;}
.x67_c00048{left:183.090600pt;}
.x38_c00048{left:185.253133pt;}
.x6d_c00048{left:186.652040pt;}
.x7b_c00048{left:187.601360pt;}
.x6_c00048{left:191.117792pt;}
.x5d_c00048{left:192.888627pt;}
.x33_c00048{left:194.660280pt;}
.x4e_c00048{left:195.958293pt;}
.x53_c00048{left:198.085280pt;}
.x20_c00048{left:202.070372pt;}
.x18_c00048{left:204.125524pt;}
.x22_c00048{left:207.351068pt;}
.x42_c00048{left:209.516013pt;}
.x59_c00048{left:211.358413pt;}
.x7_c00048{left:212.692196pt;}
.x19_c00048{left:214.265368pt;}
.x4c_c00048{left:216.623653pt;}
.x4f_c00048{left:220.432413pt;}
.x13_c00048{left:221.395520pt;}
.x34_c00048{left:224.794027pt;}
.x43_c00048{left:226.305160pt;}
.x6e_c00048{left:227.670520pt;}
.x54_c00048{left:230.744813pt;}
.xd_c00048{left:231.748620pt;}
.x3d_c00048{left:235.683560pt;}
.x29_c00048{left:237.128000pt;}
.x49_c00048{left:238.976907pt;}
.x71_c00048{left:240.285667pt;}
.x35_c00048{left:241.473547pt;}
.x23_c00048{left:243.775164pt;}
.x57_c00048{left:245.180680pt;}
.xe_c00048{left:246.951272pt;}
.x5e_c00048{left:249.453387pt;}
.x3e_c00048{left:252.729187pt;}
.x8_c00048{left:254.100080pt;}
.x7c_c00048{left:255.945893pt;}
.x44_c00048{left:257.269027pt;}
.x7a_c00048{left:259.496427pt;}
.x5a_c00048{left:260.998347pt;}
.x4a_c00048{left:263.123827pt;}
.x1a_c00048{left:266.707020pt;}
.x2a_c00048{left:269.904000pt;}
.x45_c00048{left:272.355667pt;}
.x14_c00048{left:275.083108pt;}
.x1b_c00048{left:276.734976pt;}
.x6b_c00048{left:277.667800pt;}
.x68_c00048{left:278.785533pt;}
.x1_c00048{left:280.080000pt;}
.x55_c00048{left:282.074747pt;}
.x78_c00048{left:283.733133pt;}
.x39_c00048{left:285.980973pt;}
.xf_c00048{left:290.375376pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00049 {
    display:none;
  }
  .loading-indicator_c00049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00049 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00049 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00049" -> "#page-container .classname_c00049")
 */
.pf_c00049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00049 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00049 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00049 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00049 {overflow:visible;}
  }
}
.c_c00049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00049 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00049:after { /* webkit #35443 */
  content: '';
}
.t_c00049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00049 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00049 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00049 { /* info for Javascript */
  display:none;
}
.l_c00049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00049:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00049 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00049.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00049{transform:matrix(0.041650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041650,0.000000,0.000000,0.250000,0,0);}
.m101_c00049{transform:matrix(0.145369,0.006839,-0.011749,0.249724,0,0);-ms-transform:matrix(0.145369,0.006839,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.145369,0.006839,-0.011749,0.249724,0,0);}
.mb5_c00049{transform:matrix(0.147509,0.005168,-0.008753,0.249847,0,0);-ms-transform:matrix(0.147509,0.005168,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.147509,0.005168,-0.008753,0.249847,0,0);}
.mc5_c00049{transform:matrix(0.149308,0.005530,-0.009253,0.249829,0,0);-ms-transform:matrix(0.149308,0.005530,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.149308,0.005530,-0.009253,0.249829,0,0);}
.m2f_c00049{transform:matrix(0.150906,0.004225,-0.006997,0.249902,0,0);-ms-transform:matrix(0.150906,0.004225,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.150906,0.004225,-0.006997,0.249902,0,0);}
.m12_c00049{transform:matrix(0.152291,0.005488,-0.009003,0.249838,0,0);-ms-transform:matrix(0.152291,0.005488,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.152291,0.005488,-0.009003,0.249838,0,0);}
.m5a_c00049{transform:matrix(0.153200,0.005674,-0.009253,0.249829,0,0);-ms-transform:matrix(0.153200,0.005674,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.153200,0.005674,-0.009253,0.249829,0,0);}
.mf2_c00049{transform:matrix(0.153801,0.004927,-0.008004,0.249872,0,0);-ms-transform:matrix(0.153801,0.004927,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.153801,0.004927,-0.008004,0.249872,0,0);}
.m7_c00049{transform:matrix(0.157404,0.005200,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157404,0.005200,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157404,0.005200,-0.008254,0.249864,0,0);}
.ma2_c00049{transform:matrix(0.158438,0.005551,-0.008753,0.249847,0,0);-ms-transform:matrix(0.158438,0.005551,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.158438,0.005551,-0.008753,0.249847,0,0);}
.me5_c00049{transform:matrix(0.159288,0.005262,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159288,0.005262,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159288,0.005262,-0.008254,0.249864,0,0);}
.mdd_c00049{transform:matrix(0.159408,0.005266,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159408,0.005266,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159408,0.005266,-0.008254,0.249864,0,0);}
.mad_c00049{transform:matrix(0.159552,0.005590,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159552,0.005590,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159552,0.005590,-0.008753,0.249847,0,0);}
.m5c_c00049{transform:matrix(0.159760,0.005917,-0.009253,0.249829,0,0);-ms-transform:matrix(0.159760,0.005917,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.159760,0.005917,-0.009253,0.249829,0,0);}
.mb4_c00049{transform:matrix(0.160377,0.005619,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160377,0.005619,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160377,0.005619,-0.008753,0.249847,0,0);}
.mb2_c00049{transform:matrix(0.160616,0.005627,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160616,0.005627,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160616,0.005627,-0.008753,0.249847,0,0);}
.mc0_c00049{transform:matrix(0.160626,0.005628,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160626,0.005628,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160626,0.005628,-0.008753,0.249847,0,0);}
.mfe_c00049{transform:matrix(0.161227,0.007585,-0.011749,0.249724,0,0);-ms-transform:matrix(0.161227,0.007585,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.161227,0.007585,-0.011749,0.249724,0,0);}
.m71_c00049{transform:matrix(0.161641,0.004364,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161641,0.004364,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161641,0.004364,-0.006748,0.249909,0,0);}
.m81_c00049{transform:matrix(0.161836,0.004370,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161836,0.004370,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161836,0.004370,-0.006748,0.249909,0,0);}
.mf8_c00049{transform:matrix(0.162251,0.007633,-0.011749,0.249724,0,0);-ms-transform:matrix(0.162251,0.007633,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.162251,0.007633,-0.011749,0.249724,0,0);}
.m55_c00049{transform:matrix(0.162956,0.004563,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162956,0.004563,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162956,0.004563,-0.006997,0.249902,0,0);}
.mda_c00049{transform:matrix(0.163106,0.005388,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163106,0.005388,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163106,0.005388,-0.008254,0.249864,0,0);}
.mf4_c00049{transform:matrix(0.163769,0.007705,-0.011749,0.249724,0,0);-ms-transform:matrix(0.163769,0.007705,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.163769,0.007705,-0.011749,0.249724,0,0);}
.ma3_c00049{transform:matrix(0.164069,0.005748,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164069,0.005748,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164069,0.005748,-0.008753,0.249847,0,0);}
.ma6_c00049{transform:matrix(0.164949,0.005779,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164949,0.005779,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164949,0.005779,-0.008753,0.249847,0,0);}
.m2b_c00049{transform:matrix(0.165075,0.004622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165075,0.004622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165075,0.004622,-0.006997,0.249902,0,0);}
.m86_c00049{transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);}
.m14_c00049{transform:matrix(0.165238,0.005955,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165238,0.005955,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165238,0.005955,-0.009003,0.249838,0,0);}
.mac_c00049{transform:matrix(0.165773,0.005808,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165773,0.005808,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165773,0.005808,-0.008753,0.249847,0,0);}
.me9_c00049{transform:matrix(0.165964,0.005482,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165964,0.005482,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165964,0.005482,-0.008254,0.249864,0,0);}
.mbe_c00049{transform:matrix(0.166173,0.005822,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166173,0.005822,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166173,0.005822,-0.008753,0.249847,0,0);}
.mb7_c00049{transform:matrix(0.167072,0.005853,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167072,0.005853,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167072,0.005853,-0.008753,0.249847,0,0);}
.me7_c00049{transform:matrix(0.167144,0.005521,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167144,0.005521,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167144,0.005521,-0.008254,0.249864,0,0);}
.me1_c00049{transform:matrix(0.167449,0.005531,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167449,0.005531,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167449,0.005531,-0.008254,0.249864,0,0);}
.m20_c00049{transform:matrix(0.167784,0.004698,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167784,0.004698,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167784,0.004698,-0.006997,0.249902,0,0);}
.ma8_c00049{transform:matrix(0.167837,0.005880,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167837,0.005880,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167837,0.005880,-0.008753,0.249847,0,0);}
.m17_c00049{transform:matrix(0.167889,0.004701,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167889,0.004701,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167889,0.004701,-0.006997,0.249902,0,0);}
.m7a_c00049{transform:matrix(0.168604,0.004552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168604,0.004552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168604,0.004552,-0.006748,0.249909,0,0);}
.mcb_c00049{transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169424,0.006275,-0.009253,0.249829,0,0);}
.mfa_c00049{transform:matrix(0.169692,0.007984,-0.011749,0.249724,0,0);-ms-transform:matrix(0.169692,0.007984,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.169692,0.007984,-0.011749,0.249724,0,0);}
.mb0_c00049{transform:matrix(0.169736,0.005947,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169736,0.005947,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169736,0.005947,-0.008753,0.249847,0,0);}
.m66_c00049{transform:matrix(0.169768,0.004584,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169768,0.004584,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169768,0.004584,-0.006748,0.249909,0,0);}
.ma5_c00049{transform:matrix(0.169786,0.005948,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169786,0.005948,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169786,0.005948,-0.008753,0.249847,0,0);}
.m80_c00049{transform:matrix(0.170143,0.004594,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170143,0.004594,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170143,0.004594,-0.006748,0.249909,0,0);}
.mcd_c00049{transform:matrix(0.170173,0.006303,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170173,0.006303,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170173,0.006303,-0.009253,0.249829,0,0);}
.meb_c00049{transform:matrix(0.170322,0.005626,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170322,0.005626,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170322,0.005626,-0.008254,0.249864,0,0);}
.m2e_c00049{transform:matrix(0.170608,0.004777,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170608,0.004777,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170608,0.004777,-0.006997,0.249902,0,0);}
.med_c00049{transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00049{transform:matrix(0.172464,0.006042,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172464,0.006042,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172464,0.006042,-0.008753,0.249847,0,0);}
.m34_c00049{transform:matrix(0.172737,0.004837,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172737,0.004837,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172737,0.004837,-0.006997,0.249902,0,0);}
.m75_c00049{transform:matrix(0.173257,0.004678,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173257,0.004678,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173257,0.004678,-0.006748,0.249909,0,0);}
.ma1_c00049{transform:matrix(0.173259,0.006070,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173259,0.006070,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173259,0.006070,-0.008753,0.249847,0,0);}
.m4_c00049{transform:matrix(0.173755,0.005740,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173755,0.005740,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173755,0.005740,-0.008254,0.249864,0,0);}
.m56_c00049{transform:matrix(0.173977,0.004871,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173977,0.004871,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173977,0.004871,-0.006997,0.249902,0,0);}
.m2a_c00049{transform:matrix(0.174127,0.004876,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174127,0.004876,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174127,0.004876,-0.006997,0.249902,0,0);}
.m6_c00049{transform:matrix(0.174445,0.005762,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174445,0.005762,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174445,0.005762,-0.008254,0.249864,0,0);}
.mb3_c00049{transform:matrix(0.174768,0.006123,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174768,0.006123,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174768,0.006123,-0.008753,0.249847,0,0);}
.me6_c00049{transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);}
.mf1_c00049{transform:matrix(0.175075,0.005608,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175075,0.005608,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175075,0.005608,-0.008004,0.249872,0,0);}
.m3e_c00049{transform:matrix(0.175241,0.004907,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175241,0.004907,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175241,0.004907,-0.006997,0.249902,0,0);}
.mbb_c00049{transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);}
.m5e_c00049{transform:matrix(0.176164,0.006525,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176164,0.006525,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176164,0.006525,-0.009253,0.249829,0,0);}
.m28_c00049{transform:matrix(0.176341,0.004938,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176341,0.004938,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176341,0.004938,-0.006997,0.249902,0,0);}
.m0_c00049{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.md1_c00049{transform:matrix(0.176734,0.005838,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176734,0.005838,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176734,0.005838,-0.008254,0.249864,0,0);}
.m52_c00049{transform:matrix(0.176761,0.004949,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176761,0.004949,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176761,0.004949,-0.006997,0.249902,0,0);}
.m29_c00049{transform:matrix(0.177106,0.004959,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177106,0.004959,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177106,0.004959,-0.006997,0.249902,0,0);}
.mb9_c00049{transform:matrix(0.177411,0.006216,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177411,0.006216,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177411,0.006216,-0.008753,0.249847,0,0);}
.m91_c00049{transform:matrix(0.178336,0.006248,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178336,0.006248,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178336,0.006248,-0.008753,0.249847,0,0);}
.mbd_c00049{transform:matrix(0.178720,0.006261,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178720,0.006261,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178720,0.006261,-0.008753,0.249847,0,0);}
.maa_c00049{transform:matrix(0.178825,0.006265,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178825,0.006265,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178825,0.006265,-0.008753,0.249847,0,0);}
.mec_c00049{transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);}
.m51_c00049{transform:matrix(0.179035,0.005013,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179035,0.005013,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179035,0.005013,-0.006997,0.249902,0,0);}
.m64_c00049{transform:matrix(0.179182,0.006636,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179182,0.006636,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179182,0.006636,-0.009253,0.249829,0,0);}
.mea_c00049{transform:matrix(0.179227,0.005920,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179227,0.005920,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179227,0.005920,-0.008254,0.249864,0,0);}
.m4e_c00049{transform:matrix(0.179425,0.005024,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179425,0.005024,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179425,0.005024,-0.006997,0.249902,0,0);}
.mfb_c00049{transform:matrix(0.179571,0.008448,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179571,0.008448,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179571,0.008448,-0.011749,0.249724,0,0);}
.m103_c00049{transform:matrix(0.179771,0.008458,-0.011749,0.249724,0,0);-ms-transform:matrix(0.179771,0.008458,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.179771,0.008458,-0.011749,0.249724,0,0);}
.m37_c00049{transform:matrix(0.180039,0.005041,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180039,0.005041,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180039,0.005041,-0.006997,0.249902,0,0);}
.m7e_c00049{transform:matrix(0.180119,0.004863,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180119,0.004863,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180119,0.004863,-0.006748,0.249909,0,0);}
.mfd_c00049{transform:matrix(0.180131,0.008475,-0.011749,0.249724,0,0);-ms-transform:matrix(0.180131,0.008475,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.180131,0.008475,-0.011749,0.249724,0,0);}
.ma7_c00049{transform:matrix(0.180139,0.006311,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180139,0.006311,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180139,0.006311,-0.008753,0.249847,0,0);}
.m10_c00049{transform:matrix(0.180473,0.006504,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180473,0.006504,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180473,0.006504,-0.009003,0.249838,0,0);}
.m3b_c00049{transform:matrix(0.180774,0.005062,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180774,0.005062,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180774,0.005062,-0.006997,0.249902,0,0);}
.m76_c00049{transform:matrix(0.180809,0.004882,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180809,0.004882,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180809,0.004882,-0.006748,0.249909,0,0);}
.m65_c00049{transform:matrix(0.180841,0.006698,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180841,0.006698,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180841,0.006698,-0.009253,0.249829,0,0);}
.m88_c00049{transform:matrix(0.181084,0.004889,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181084,0.004889,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181084,0.004889,-0.006748,0.249909,0,0);}
.m7c_c00049{transform:matrix(0.181309,0.004895,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181309,0.004895,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181309,0.004895,-0.006748,0.249909,0,0);}
.m3c_c00049{transform:matrix(0.181759,0.005089,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181759,0.005089,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181759,0.005089,-0.006997,0.249902,0,0);}
.m60_c00049{transform:matrix(0.181910,0.006737,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181910,0.006737,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181910,0.006737,-0.009253,0.249829,0,0);}
.mff_c00049{transform:matrix(0.182208,0.008572,-0.011749,0.249724,0,0);-ms-transform:matrix(0.182208,0.008572,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.182208,0.008572,-0.011749,0.249724,0,0);}
.mc2_c00049{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mf0_c00049{transform:matrix(0.182611,0.005849,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182611,0.005849,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182611,0.005849,-0.008004,0.249872,0,0);}
.m2d_c00049{transform:matrix(0.182728,0.005116,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182728,0.005116,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182728,0.005116,-0.006997,0.249902,0,0);}
.mef_c00049{transform:matrix(0.182781,0.005855,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182781,0.005855,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182781,0.005855,-0.008004,0.249872,0,0);}
.m87_c00049{transform:matrix(0.182913,0.004939,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182913,0.004939,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182913,0.004939,-0.006748,0.249909,0,0);}
.mb6_c00049{transform:matrix(0.183228,0.006419,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183228,0.006419,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183228,0.006419,-0.008753,0.249847,0,0);}
.mc1_c00049{transform:matrix(0.183328,0.006423,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183328,0.006423,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183328,0.006423,-0.008753,0.249847,0,0);}
.md7_c00049{transform:matrix(0.183800,0.006071,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183800,0.006071,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183800,0.006071,-0.008254,0.249864,0,0);}
.mb8_c00049{transform:matrix(0.183852,0.006441,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183852,0.006441,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183852,0.006441,-0.008753,0.249847,0,0);}
.mde_c00049{transform:matrix(0.184235,0.006086,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184235,0.006086,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184235,0.006086,-0.008254,0.249864,0,0);}
.m15_c00049{transform:matrix(0.184235,0.006639,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184235,0.006639,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184235,0.006639,-0.009003,0.249838,0,0);}
.m49_c00049{transform:matrix(0.184548,0.005167,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184548,0.005167,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184548,0.005167,-0.006997,0.249902,0,0);}
.mf5_c00049{transform:matrix(0.184671,0.008688,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184671,0.008688,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184671,0.008688,-0.011749,0.249724,0,0);}
.mdc_c00049{transform:matrix(0.184854,0.006106,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184854,0.006106,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184854,0.006106,-0.008254,0.249864,0,0);}
.mab_c00049{transform:matrix(0.184962,0.006480,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184962,0.006480,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184962,0.006480,-0.008753,0.249847,0,0);}
.mba_c00049{transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);}
.mca_c00049{transform:matrix(0.185918,0.006886,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185918,0.006886,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185918,0.006886,-0.009253,0.249829,0,0);}
.m1c_c00049{transform:matrix(0.185987,0.005208,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185987,0.005208,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185987,0.005208,-0.006997,0.249902,0,0);}
.m93_c00049{transform:matrix(0.186191,0.006523,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186191,0.006523,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186191,0.006523,-0.008753,0.249847,0,0);}
.m72_c00049{transform:matrix(0.186567,0.005037,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186567,0.005037,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186567,0.005037,-0.006748,0.249909,0,0);}
.mae_c00049{transform:matrix(0.186611,0.006538,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186611,0.006538,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186611,0.006538,-0.008753,0.249847,0,0);}
.ma0_c00049{transform:matrix(0.187110,0.006555,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187110,0.006555,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187110,0.006555,-0.008753,0.249847,0,0);}
.md4_c00049{transform:matrix(0.187163,0.006183,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187163,0.006183,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187163,0.006183,-0.008254,0.249864,0,0);}
.ma9_c00049{transform:matrix(0.187205,0.006559,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187205,0.006559,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187205,0.006559,-0.008753,0.249847,0,0);}
.m4b_c00049{transform:matrix(0.187262,0.005243,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187262,0.005243,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187262,0.005243,-0.006997,0.249902,0,0);}
.me8_c00049{transform:matrix(0.187418,0.006191,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187418,0.006191,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187418,0.006191,-0.008254,0.249864,0,0);}
.m2c_c00049{transform:matrix(0.187462,0.005249,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187462,0.005249,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187462,0.005249,-0.006997,0.249902,0,0);}
.m83_c00049{transform:matrix(0.187682,0.005067,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187682,0.005067,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187682,0.005067,-0.006748,0.249909,0,0);}
.ma4_c00049{transform:matrix(0.187755,0.006578,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187755,0.006578,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187755,0.006578,-0.008753,0.249847,0,0);}
.m63_c00049{transform:matrix(0.188041,0.006964,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188041,0.006964,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188041,0.006964,-0.009253,0.249829,0,0);}
.m82_c00049{transform:matrix(0.188256,0.005083,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188256,0.005083,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188256,0.005083,-0.006748,0.249909,0,0);}
.mee_c00049{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188861,0.005288,-0.006997,0.249902,0,0);}
.m74_c00049{transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);}
.mdf_c00049{transform:matrix(0.189592,0.006263,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189592,0.006263,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189592,0.006263,-0.008254,0.249864,0,0);}
.mf3_c00049{transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189758,0.006078,-0.008004,0.249872,0,0);}
.m7f_c00049{transform:matrix(0.190026,0.005131,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190026,0.005131,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190026,0.005131,-0.006748,0.249909,0,0);}
.m45_c00049{transform:matrix(0.190110,0.005323,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190110,0.005323,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190110,0.005323,-0.006997,0.249902,0,0);}
.m26_c00049{transform:matrix(0.190195,0.005325,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190195,0.005325,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190195,0.005325,-0.006997,0.249902,0,0);}
.m40_c00049{transform:matrix(0.190215,0.005326,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190215,0.005326,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190215,0.005326,-0.006997,0.249902,0,0);}
.m42_c00049{transform:matrix(0.190235,0.005327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190235,0.005327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190235,0.005327,-0.006997,0.249902,0,0);}
.mf_c00049{transform:matrix(0.190871,0.006878,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190871,0.006878,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190871,0.006878,-0.009003,0.249838,0,0);}
.m50_c00049{transform:matrix(0.190940,0.005346,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190940,0.005346,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190940,0.005346,-0.006997,0.249902,0,0);}
.m8_c00049{transform:matrix(0.191111,0.006313,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191111,0.006313,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191111,0.006313,-0.008254,0.249864,0,0);}
.me0_c00049{transform:matrix(0.191216,0.006316,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191216,0.006316,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191216,0.006316,-0.008254,0.249864,0,0);}
.mbf_c00049{transform:matrix(0.191692,0.006716,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191692,0.006716,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191692,0.006716,-0.008753,0.249847,0,0);}
.m35_c00049{transform:matrix(0.192190,0.005381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192190,0.005381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192190,0.005381,-0.006997,0.249902,0,0);}
.mf9_c00049{transform:matrix(0.192317,0.009048,-0.011749,0.249724,0,0);-ms-transform:matrix(0.192317,0.009048,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.192317,0.009048,-0.011749,0.249724,0,0);}
.mc3_c00049{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.m85_c00049{transform:matrix(0.193065,0.005213,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193065,0.005213,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193065,0.005213,-0.006748,0.249909,0,0);}
.m1e_c00049{transform:matrix(0.193134,0.005408,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193134,0.005408,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193134,0.005408,-0.006997,0.249902,0,0);}
.mfc_c00049{transform:matrix(0.193221,0.009090,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193221,0.009090,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193221,0.009090,-0.011749,0.249724,0,0);}
.mf7_c00049{transform:matrix(0.193256,0.009092,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193256,0.009092,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193256,0.009092,-0.011749,0.249724,0,0);}
.m13_c00049{transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);}
.m11_c00049{transform:matrix(0.193779,0.006983,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193779,0.006983,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193779,0.006983,-0.009003,0.249838,0,0);}
.m61_c00049{transform:matrix(0.195186,0.007229,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195186,0.007229,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195186,0.007229,-0.009253,0.249829,0,0);}
.me3_c00049{transform:matrix(0.195283,0.006451,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195283,0.006451,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195283,0.006451,-0.008254,0.249864,0,0);}
.m30_c00049{transform:matrix(0.195453,0.005473,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195453,0.005473,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195453,0.005473,-0.006997,0.249902,0,0);}
.m7d_c00049{transform:matrix(0.195454,0.005277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195454,0.005277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195454,0.005277,-0.006748,0.249909,0,0);}
.m38_c00049{transform:matrix(0.196173,0.005493,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196173,0.005493,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196173,0.005493,-0.006997,0.249902,0,0);}
.m48_c00049{transform:matrix(0.196423,0.005500,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196423,0.005500,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196423,0.005500,-0.006997,0.249902,0,0);}
.mdb_c00049{transform:matrix(0.196523,0.006492,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196523,0.006492,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196523,0.006492,-0.008254,0.249864,0,0);}
.m3d_c00049{transform:matrix(0.196788,0.005510,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196788,0.005510,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196788,0.005510,-0.006997,0.249902,0,0);}
.mcf_c00049{transform:matrix(0.197038,0.006509,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197038,0.006509,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197038,0.006509,-0.008254,0.249864,0,0);}
.me2_c00049{transform:matrix(0.197617,0.006528,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197617,0.006528,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197617,0.006528,-0.008254,0.249864,0,0);}
.md5_c00049{transform:matrix(0.198057,0.006542,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198057,0.006542,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198057,0.006542,-0.008254,0.249864,0,0);}
.md9_c00049{transform:matrix(0.198252,0.006549,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198252,0.006549,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198252,0.006549,-0.008254,0.249864,0,0);}
.m4d_c00049{transform:matrix(0.198382,0.005555,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198382,0.005555,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198382,0.005555,-0.006997,0.249902,0,0);}
.m3f_c00049{transform:matrix(0.198767,0.005565,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198767,0.005565,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198767,0.005565,-0.006997,0.249902,0,0);}
.m24_c00049{transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);}
.m5_c00049{transform:matrix(0.199371,0.006586,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199371,0.006586,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199371,0.006586,-0.008254,0.249864,0,0);}
.mc6_c00049{transform:matrix(0.200438,0.007424,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200438,0.007424,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200438,0.007424,-0.009253,0.249829,0,0);}
.m9c_c00049{transform:matrix(0.200872,0.007038,-0.008753,0.249847,0,0);-ms-transform:matrix(0.200872,0.007038,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.200872,0.007038,-0.008753,0.249847,0,0);}
.m77_c00049{transform:matrix(0.201122,0.005430,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201122,0.005430,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201122,0.005430,-0.006748,0.249909,0,0);}
.md6_c00049{transform:matrix(0.201130,0.006644,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201130,0.006644,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201130,0.006644,-0.008254,0.249864,0,0);}
.m9e_c00049{transform:matrix(0.202656,0.007100,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202656,0.007100,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202656,0.007100,-0.008753,0.249847,0,0);}
.m5d_c00049{transform:matrix(0.202911,0.007515,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202911,0.007515,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202911,0.007515,-0.009253,0.249829,0,0);}
.m1b_c00049{transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);}
.m5f_c00049{transform:matrix(0.203076,0.007521,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203076,0.007521,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203076,0.007521,-0.009253,0.249829,0,0);}
.m84_c00049{transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);}
.m9_c00049{transform:matrix(0.203899,0.006735,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203899,0.006735,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203899,0.006735,-0.008254,0.249864,0,0);}
.m1a_c00049{transform:matrix(0.204025,0.005713,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204025,0.005713,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204025,0.005713,-0.006997,0.249902,0,0);}
.m96_c00049{transform:matrix(0.204105,0.007151,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204105,0.007151,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204105,0.007151,-0.008753,0.249847,0,0);}
.m18_c00049{transform:matrix(0.204285,0.005720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204285,0.005720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204285,0.005720,-0.006997,0.249902,0,0);}
.m53_c00049{transform:matrix(0.204405,0.005723,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204405,0.005723,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204405,0.005723,-0.006997,0.249902,0,0);}
.m44_c00049{transform:matrix(0.204475,0.005725,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204475,0.005725,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204475,0.005725,-0.006997,0.249902,0,0);}
.m4f_c00049{transform:matrix(0.204995,0.005740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204995,0.005740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204995,0.005740,-0.006997,0.249902,0,0);}
.m31_c00049{transform:matrix(0.205100,0.005743,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205100,0.005743,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205100,0.005743,-0.006997,0.249902,0,0);}
.m70_c00049{transform:matrix(0.205125,0.005538,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205125,0.005538,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205125,0.005538,-0.006748,0.249909,0,0);}
.mb1_c00049{transform:matrix(0.205219,0.007190,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205219,0.007190,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205219,0.007190,-0.008753,0.249847,0,0);}
.m23_c00049{transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205639,0.005758,-0.006997,0.249902,0,0);}
.m100_c00049{transform:matrix(0.206267,0.009704,-0.011749,0.249724,0,0);-ms-transform:matrix(0.206267,0.009704,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.206267,0.009704,-0.011749,0.249724,0,0);}
.m19_c00049{transform:matrix(0.206399,0.005779,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206399,0.005779,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206399,0.005779,-0.006997,0.249902,0,0);}
.m79_c00049{transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);}
.m68_c00049{transform:matrix(0.207254,0.005596,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207254,0.005596,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207254,0.005596,-0.006748,0.249909,0,0);}
.m25_c00049{transform:matrix(0.207539,0.005811,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207539,0.005811,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207539,0.005811,-0.006997,0.249902,0,0);}
.mf6_c00049{transform:matrix(0.207725,0.009773,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207725,0.009773,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207725,0.009773,-0.011749,0.249724,0,0);}
.m6c_c00049{transform:matrix(0.207864,0.005612,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207864,0.005612,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207864,0.005612,-0.006748,0.249909,0,0);}
.m94_c00049{transform:matrix(0.208002,0.007287,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208002,0.007287,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208002,0.007287,-0.008753,0.249847,0,0);}
.mcc_c00049{transform:matrix(0.208192,0.007711,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208192,0.007711,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208192,0.007711,-0.009253,0.249829,0,0);}
.m36_c00049{transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208503,0.005838,-0.006997,0.249902,0,0);}
.m8e_c00049{transform:matrix(0.209477,0.008387,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209477,0.008387,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209477,0.008387,-0.010002,0.249800,0,0);}
.m4a_c00049{transform:matrix(0.210982,0.005908,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210982,0.005908,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210982,0.005908,-0.006997,0.249902,0,0);}
.m95_c00049{transform:matrix(0.212325,0.007439,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212325,0.007439,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212325,0.007439,-0.008753,0.249847,0,0);}
.m102_c00049{transform:matrix(0.212340,0.009990,-0.011749,0.249724,0,0);-ms-transform:matrix(0.212340,0.009990,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.212340,0.009990,-0.011749,0.249724,0,0);}
.md8_c00049{transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);}
.m8c_c00049{transform:matrix(0.213304,0.008541,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213304,0.008541,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213304,0.008541,-0.010002,0.249800,0,0);}
.m69_c00049{transform:matrix(0.213382,0.005761,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213382,0.005761,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213382,0.005761,-0.006748,0.249909,0,0);}
.m6e_c00049{transform:matrix(0.213477,0.005764,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213477,0.005764,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213477,0.005764,-0.006748,0.249909,0,0);}
.m97_c00049{transform:matrix(0.213499,0.007480,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213499,0.007480,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213499,0.007480,-0.008753,0.249847,0,0);}
.m21_c00049{transform:matrix(0.213881,0.005989,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213881,0.005989,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213881,0.005989,-0.006997,0.249902,0,0);}
.me4_c00049{transform:matrix(0.213903,0.007066,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213903,0.007066,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213903,0.007066,-0.008254,0.249864,0,0);}
.md0_c00049{transform:matrix(0.214203,0.007076,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214203,0.007076,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214203,0.007076,-0.008254,0.249864,0,0);}
.m22_c00049{transform:matrix(0.214381,0.006003,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214381,0.006003,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214381,0.006003,-0.006997,0.249902,0,0);}
.m7b_c00049{transform:matrix(0.215981,0.005831,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215981,0.005831,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215981,0.005831,-0.006748,0.249909,0,0);}
.mc8_c00049{transform:matrix(0.217371,0.008051,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217371,0.008051,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217371,0.008051,-0.009253,0.249829,0,0);}
.m92_c00049{transform:matrix(0.218966,0.007671,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218966,0.007671,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218966,0.007671,-0.008753,0.249847,0,0);}
.ma_c00049{transform:matrix(0.219051,0.007236,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219051,0.007236,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219051,0.007236,-0.008254,0.249864,0,0);}
.m3_c00049{transform:matrix(0.219100,0.007238,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219100,0.007238,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219100,0.007238,-0.008254,0.249864,0,0);}
.m57_c00049{transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);}
.maf_c00049{transform:matrix(0.220155,0.007713,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220155,0.007713,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220155,0.007713,-0.008753,0.249847,0,0);}
.m78_c00049{transform:matrix(0.220175,0.005945,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220175,0.005945,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220175,0.005945,-0.006748,0.249909,0,0);}
.m46_c00049{transform:matrix(0.220968,0.006187,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220968,0.006187,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220968,0.006187,-0.006997,0.249902,0,0);}
.m47_c00049{transform:matrix(0.221378,0.006199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221378,0.006199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221378,0.006199,-0.006997,0.249902,0,0);}
.mc9_c00049{transform:matrix(0.221973,0.008221,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221973,0.008221,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221973,0.008221,-0.009253,0.249829,0,0);}
.mb_c00049{transform:matrix(0.222034,0.007334,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222034,0.007334,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222034,0.007334,-0.008254,0.249864,0,0);}
.mc_c00049{transform:matrix(0.222254,0.007342,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222254,0.007342,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222254,0.007342,-0.008254,0.249864,0,0);}
.m2_c00049{transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(0.223552,0.006259,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223552,0.006259,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223552,0.006259,-0.006997,0.249902,0,0);}
.m9f_c00049{transform:matrix(0.223578,0.007833,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223578,0.007833,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223578,0.007833,-0.008753,0.249847,0,0);}
.m9b_c00049{transform:matrix(0.224332,0.007859,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224332,0.007859,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224332,0.007859,-0.008753,0.249847,0,0);}
.m9a_c00049{transform:matrix(0.225107,0.007887,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225107,0.007887,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225107,0.007887,-0.008753,0.249847,0,0);}
.m89_c00049{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m39_c00049{transform:matrix(0.225447,0.006313,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225447,0.006313,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225447,0.006313,-0.006997,0.249902,0,0);}
.md3_c00049{transform:matrix(0.227616,0.007519,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227616,0.007519,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227616,0.007519,-0.008254,0.249864,0,0);}
.m27_c00049{transform:matrix(0.228535,0.006399,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228535,0.006399,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228535,0.006399,-0.006997,0.249902,0,0);}
.m9d_c00049{transform:matrix(0.229304,0.008034,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229304,0.008034,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229304,0.008034,-0.008753,0.249847,0,0);}
.m73_c00049{transform:matrix(0.229871,0.006207,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229871,0.006207,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229871,0.006207,-0.006748,0.249909,0,0);}
.m43_c00049{transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);}
.m6b_c00049{transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);}
.m6f_c00049{transform:matrix(0.231141,0.006241,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231141,0.006241,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231141,0.006241,-0.006748,0.249909,0,0);}
.m54_c00049{transform:matrix(0.231394,0.006479,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231394,0.006479,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231394,0.006479,-0.006997,0.249902,0,0);}
.m3a_c00049{transform:matrix(0.234003,0.006552,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234003,0.006552,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234003,0.006552,-0.006997,0.249902,0,0);}
.mce_c00049{transform:matrix(0.234094,0.008670,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234094,0.008670,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234094,0.008670,-0.009253,0.249829,0,0);}
.md2_c00049{transform:matrix(0.237421,0.007843,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237421,0.007843,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237421,0.007843,-0.008254,0.249864,0,0);}
.m5b_c00049{transform:matrix(0.238182,0.008822,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238182,0.008822,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238182,0.008822,-0.009253,0.249829,0,0);}
.m62_c00049{transform:matrix(0.239051,0.008854,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239051,0.008854,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239051,0.008854,-0.009253,0.249829,0,0);}
.mc7_c00049{transform:matrix(0.240105,0.008893,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240105,0.008893,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240105,0.008893,-0.009253,0.249829,0,0);}
.m8f_c00049{transform:matrix(0.242681,0.009717,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242681,0.009717,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242681,0.009717,-0.010002,0.249800,0,0);}
.m67_c00049{transform:matrix(0.244831,0.006610,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244831,0.006610,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244831,0.006610,-0.006748,0.249909,0,0);}
.m1d_c00049{transform:matrix(0.245714,0.006880,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245714,0.006880,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245714,0.006880,-0.006997,0.249902,0,0);}
.m6d_c00049{transform:matrix(0.246670,0.006660,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246670,0.006660,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246670,0.006660,-0.006748,0.249909,0,0);}
.m90_c00049{transform:matrix(0.247097,0.009894,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247097,0.009894,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247097,0.009894,-0.010002,0.249800,0,0);}
.m6a_c00049{transform:matrix(0.247325,0.006678,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247325,0.006678,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247325,0.006678,-0.006748,0.249909,0,0);}
.m16_c00049{transform:matrix(0.253211,0.007090,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253211,0.007090,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253211,0.007090,-0.006997,0.249902,0,0);}
.m99_c00049{transform:matrix(0.254649,0.008922,-0.008753,0.249847,0,0);-ms-transform:matrix(0.254649,0.008922,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.254649,0.008922,-0.008753,0.249847,0,0);}
.m59_c00049{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{transform:matrix(0.270989,0.007588,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270989,0.007588,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270989,0.007588,-0.006997,0.249902,0,0);}
.m1f_c00049{transform:matrix(0.277871,0.007780,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277871,0.007780,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277871,0.007780,-0.006997,0.249902,0,0);}
.m8d_c00049{transform:matrix(0.285171,0.011418,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285171,0.011418,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285171,0.011418,-0.010002,0.249800,0,0);}
.m58_c00049{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m32_c00049{transform:matrix(0.295894,0.008285,-0.006997,0.249902,0,0);-ms-transform:matrix(0.295894,0.008285,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.295894,0.008285,-0.006997,0.249902,0,0);}
.m8a_c00049{transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);}
.m98_c00049{transform:matrix(0.305268,0.010695,-0.008753,0.249847,0,0);-ms-transform:matrix(0.305268,0.010695,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.305268,0.010695,-0.008753,0.249847,0,0);}
.m8b_c00049{transform:matrix(0.313275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313275,0.000000,0.000000,0.250000,0,0);}
.mc4_c00049{transform:matrix(0.355115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355115,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.356080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356080,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.403245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403245,0.000000,0.000000,0.250000,0,0);}
.m104_c00049{transform:matrix(0.651860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651860,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
.fc0_c00049{color:transparent;}
.fs0_c00049{font-size:22.050000px;}
.fs4_c00049{font-size:29.400000px;}
.fs1c_c00049{font-size:35.700000px;}
.fs1_c00049{font-size:37.800000px;}
.fs14_c00049{font-size:53.539316px;}
.fsb_c00049{font-size:53.550000px;}
.fsc_c00049{font-size:54.600000px;}
.fs13_c00049{font-size:56.700000px;}
.fs7_c00049{font-size:57.772634px;}
.fs1d_c00049{font-size:58.781475px;}
.fs1b_c00049{font-size:58.800000px;}
.fsf_c00049{font-size:58.821429px;}
.fs3_c00049{font-size:59.822762px;}
.fs16_c00049{font-size:59.826834px;}
.fs11_c00049{font-size:59.871811px;}
.fs9_c00049{font-size:59.873457px;}
.fs15_c00049{font-size:60.876427px;}
.fs10_c00049{font-size:60.922194px;}
.fs6_c00049{font-size:60.923868px;}
.fse_c00049{font-size:61.930483px;}
.fsa_c00049{font-size:61.974280px;}
.fs1e_c00049{font-size:62.971328px;}
.fs1f_c00049{font-size:64.020851px;}
.fsd_c00049{font-size:64.029821px;}
.fs18_c00049{font-size:66.124395px;}
.fs22_c00049{font-size:66.156945px;}
.fs2_c00049{font-size:67.169417px;}
.fs19_c00049{font-size:67.173989px;}
.fs12_c00049{font-size:67.224490px;}
.fs8_c00049{font-size:68.276749px;}
.fs5_c00049{font-size:69.275637px;}
.fs23_c00049{font-size:69.307276px;}
.fs21_c00049{font-size:70.315696px;}
.fs20_c00049{font-size:70.317983px;}
.fs1a_c00049{font-size:70.322769px;}
.fs17_c00049{font-size:71.372363px;}
.y0_c00049{bottom:0.000000px;}
.yfd_c00049{bottom:34.392003px;}
.yfc_c00049{bottom:35.064443px;}
.yfb_c00049{bottom:37.093640px;}
.yfa_c00049{bottom:37.495010px;}
.yf9_c00049{bottom:38.781524px;}
.yf8_c00049{bottom:39.555011px;}
.yf7_c00049{bottom:40.184046px;}
.yf6_c00049{bottom:41.563536px;}
.yf5_c00049{bottom:42.395142px;}
.yf4_c00049{bottom:52.382192px;}
.yf3_c00049{bottom:53.005271px;}
.yf2_c00049{bottom:54.972855px;}
.yf1_c00049{bottom:58.883631px;}
.yf0_c00049{bottom:61.892641px;}
.yef_c00049{bottom:62.769098px;}
.yee_c00049{bottom:64.539000px;}
.yed_c00049{bottom:66.999948px;}
.yec_c00049{bottom:67.552332px;}
.yeb_c00049{bottom:70.345500px;}
.yea_c00049{bottom:71.438604px;}
.ye9_c00049{bottom:73.987500px;}
.ye8_c00049{bottom:75.883500px;}
.ye7_c00049{bottom:85.379073px;}
.ye6_c00049{bottom:86.021030px;}
.ye5_c00049{bottom:87.170195px;}
.ye4_c00049{bottom:87.895712px;}
.ye3_c00049{bottom:88.973048px;}
.ye2_c00049{bottom:91.681188px;}
.ye1_c00049{bottom:93.624185px;}
.ye0_c00049{bottom:94.268369px;}
.ydf_c00049{bottom:104.386853px;}
.yde_c00049{bottom:105.032549px;}
.ydd_c00049{bottom:106.929618px;}
.ydc_c00049{bottom:108.022736px;}
.ydb_c00049{bottom:109.011228px;}
.yda_c00049{bottom:110.995625px;}
.yd9_c00049{bottom:120.764612px;}
.yd8_c00049{bottom:121.269768px;}
.yd7_c00049{bottom:121.848297px;}
.yd6_c00049{bottom:123.074718px;}
.yd5_c00049{bottom:123.719667px;}
.yd4_c00049{bottom:124.188230px;}
.yd3_c00049{bottom:125.487627px;}
.yd2_c00049{bottom:126.696345px;}
.yd1_c00049{bottom:127.183700px;}
.yfe_c00049{bottom:131.490000px;}
.yd0_c00049{bottom:137.321124px;}
.ycf_c00049{bottom:138.021400px;}
.yce_c00049{bottom:140.469076px;}
.ycd_c00049{bottom:142.742513px;}
.ycc_c00049{bottom:143.303545px;}
.ycb_c00049{bottom:144.235036px;}
.yca_c00049{bottom:145.540500px;}
.yc9_c00049{bottom:151.939187px;}
.yc8_c00049{bottom:154.644645px;}
.yc7_c00049{bottom:157.133098px;}
.yc6_c00049{bottom:158.224784px;}
.ybf_c00049{bottom:160.929000px;}
.yc5_c00049{bottom:161.486408px;}
.yc4_c00049{bottom:170.399263px;}
.yc3_c00049{bottom:174.147734px;}
.yc2_c00049{bottom:175.231815px;}
.yc1_c00049{bottom:177.187413px;}
.ybe_c00049{bottom:177.666000px;}
.yc0_c00049{bottom:178.210500px;}
.ybd_c00049{bottom:188.141927px;}
.ybc_c00049{bottom:189.097710px;}
.ybb_c00049{bottom:189.678285px;}
.yba_c00049{bottom:191.020035px;}
.yb9_c00049{bottom:192.147470px;}
.yb8_c00049{bottom:193.733394px;}
.yb7_c00049{bottom:194.780382px;}
.yb6_c00049{bottom:195.520251px;}
.yb5_c00049{bottom:207.314307px;}
.yb4_c00049{bottom:207.719276px;}
.yb3_c00049{bottom:208.276412px;}
.yb2_c00049{bottom:208.844879px;}
.yb1_c00049{bottom:209.517807px;}
.yb0_c00049{bottom:210.064767px;}
.yaf_c00049{bottom:211.575851px;}
.yae_c00049{bottom:212.099337px;}
.yad_c00049{bottom:212.393706px;}
.yac_c00049{bottom:213.061623px;}
.yab_c00049{bottom:222.587921px;}
.yaa_c00049{bottom:223.168128px;}
.ya9_c00049{bottom:224.231817px;}
.ya8_c00049{bottom:224.800217px;}
.ya7_c00049{bottom:225.379899px;}
.ya6_c00049{bottom:226.911558px;}
.ya5_c00049{bottom:229.046859px;}
.ya4_c00049{bottom:229.549103px;}
.ya3_c00049{bottom:230.339534px;}
.ya2_c00049{bottom:239.033004px;}
.ya1_c00049{bottom:241.944129px;}
.ya0_c00049{bottom:242.891859px;}
.y9f_c00049{bottom:244.697702px;}
.y9e_c00049{bottom:246.508322px;}
.y9d_c00049{bottom:247.211822px;}
.y9c_c00049{bottom:248.153934px;}
.y9b_c00049{bottom:257.607643px;}
.y9a_c00049{bottom:258.330405px;}
.y99_c00049{bottom:259.885280px;}
.y98_c00049{bottom:261.101390px;}
.y97_c00049{bottom:262.297430px;}
.y96_c00049{bottom:263.611111px;}
.y95_c00049{bottom:264.005208px;}
.y94_c00049{bottom:264.614757px;}
.y93_c00049{bottom:273.816885px;}
.y92_c00049{bottom:274.796745px;}
.y91_c00049{bottom:276.532658px;}
.y90_c00049{bottom:278.443342px;}
.y8f_c00049{bottom:279.975293px;}
.y8e_c00049{bottom:281.103623px;}
.y8d_c00049{bottom:281.887500px;}
.y8c_c00049{bottom:290.868420px;}
.y8b_c00049{bottom:294.682080px;}
.y8a_c00049{bottom:295.321380px;}
.y89_c00049{bottom:296.305140px;}
.y88_c00049{bottom:297.556500px;}
.y87_c00049{bottom:297.820500px;}
.y86_c00049{bottom:306.797725px;}
.y85_c00049{bottom:307.736136px;}
.y84_c00049{bottom:308.565543px;}
.y83_c00049{bottom:310.124955px;}
.y82_c00049{bottom:311.221542px;}
.y81_c00049{bottom:311.880419px;}
.y80_c00049{bottom:312.255062px;}
.y7f_c00049{bottom:313.458140px;}
.y7e_c00049{bottom:314.282362px;}
.y7d_c00049{bottom:315.085725px;}
.y7c_c00049{bottom:323.138111px;}
.y7b_c00049{bottom:324.602327px;}
.y7a_c00049{bottom:325.151180px;}
.y79_c00049{bottom:326.966879px;}
.y78_c00049{bottom:327.542382px;}
.y77_c00049{bottom:328.133398px;}
.y76_c00049{bottom:329.644112px;}
.y75_c00049{bottom:330.818774px;}
.y74_c00049{bottom:331.289417px;}
.y73_c00049{bottom:340.188226px;}
.y72_c00049{bottom:341.292984px;}
.y71_c00049{bottom:341.955264px;}
.y70_c00049{bottom:343.474189px;}
.y6f_c00049{bottom:344.015896px;}
.y6e_c00049{bottom:344.578745px;}
.y6d_c00049{bottom:344.960025px;}
.y6c_c00049{bottom:345.962841px;}
.y6b_c00049{bottom:346.725847px;}
.y6a_c00049{bottom:348.033234px;}
.y69_c00049{bottom:359.288050px;}
.y68_c00049{bottom:360.505238px;}
.y67_c00049{bottom:362.208506px;}
.y66_c00049{bottom:364.255052px;}
.y65_c00049{bottom:364.601286px;}
.y64_c00049{bottom:365.589000px;}
.y63_c00049{bottom:375.620535px;}
.y62_c00049{bottom:376.506814px;}
.y61_c00049{bottom:378.160881px;}
.y60_c00049{bottom:379.228146px;}
.y5f_c00049{bottom:381.423060px;}
.y5e_c00049{bottom:382.062698px;}
.y57_c00049{bottom:382.317000px;}
.y5d_c00049{bottom:392.199273px;}
.y5c_c00049{bottom:394.559355px;}
.y5b_c00049{bottom:395.899292px;}
.y5a_c00049{bottom:397.086936px;}
.y59_c00049{bottom:397.937695px;}
.y58_c00049{bottom:399.076500px;}
.y56_c00049{bottom:399.454500px;}
.y55_c00049{bottom:409.479858px;}
.y54_c00049{bottom:410.068446px;}
.y53_c00049{bottom:410.461608px;}
.y52_c00049{bottom:412.144548px;}
.y51_c00049{bottom:412.675218px;}
.y50_c00049{bottom:413.333526px;}
.y4f_c00049{bottom:414.754680px;}
.y4e_c00049{bottom:415.552974px;}
.y4d_c00049{bottom:416.105694px;}
.y4c_c00049{bottom:416.849682px;}
.y4b_c00049{bottom:426.276222px;}
.y4a_c00049{bottom:426.712194px;}
.y49_c00049{bottom:427.209954px;}
.y48_c00049{bottom:428.129856px;}
.y47_c00049{bottom:428.700270px;}
.y46_c00049{bottom:429.026436px;}
.y45_c00049{bottom:431.207118px;}
.y44_c00049{bottom:431.741556px;}
.y43_c00049{bottom:432.254436px;}
.y42_c00049{bottom:433.594602px;}
.y41_c00049{bottom:441.553572px;}
.y40_c00049{bottom:442.028886px;}
.y3f_c00049{bottom:444.255396px;}
.y3e_c00049{bottom:446.167746px;}
.y3d_c00049{bottom:447.029088px;}
.y3c_c00049{bottom:448.019586px;}
.y3b_c00049{bottom:449.325588px;}
.y3a_c00049{bottom:449.968878px;}
.y39_c00049{bottom:451.157556px;}
.y38_c00049{bottom:460.164102px;}
.y37_c00049{bottom:462.009408px;}
.y36_c00049{bottom:462.790332px;}
.y35_c00049{bottom:463.374936px;}
.y34_c00049{bottom:464.755068px;}
.y33_c00049{bottom:465.459480px;}
.y32_c00049{bottom:466.111032px;}
.y31_c00049{bottom:467.628336px;}
.y30_c00049{bottom:474.785256px;}
.y2f_c00049{bottom:476.229312px;}
.y2e_c00049{bottom:477.083652px;}
.y2d_c00049{bottom:479.211900px;}
.y2c_c00049{bottom:479.854644px;}
.y2b_c00049{bottom:480.753276px;}
.y2a_c00049{bottom:481.593264px;}
.y29_c00049{bottom:482.882112px;}
.y28_c00049{bottom:483.517812px;}
.y27_c00049{bottom:484.380708px;}
.y26_c00049{bottom:492.971688px;}
.y25_c00049{bottom:493.896312px;}
.y24_c00049{bottom:494.986110px;}
.y23_c00049{bottom:495.736290px;}
.y22_c00049{bottom:497.118780px;}
.y21_c00049{bottom:499.183056px;}
.y20_c00049{bottom:500.630370px;}
.y1f_c00049{bottom:501.258060px;}
.y1e_c00049{bottom:502.206546px;}
.y1d_c00049{bottom:509.812008px;}
.y1c_c00049{bottom:510.178710px;}
.y1b_c00049{bottom:510.844788px;}
.y1a_c00049{bottom:511.407798px;}
.y19_c00049{bottom:513.200316px;}
.y18_c00049{bottom:514.690728px;}
.y17_c00049{bottom:516.172950px;}
.y16_c00049{bottom:516.667920px;}
.y15_c00049{bottom:517.329000px;}
.y14_c00049{bottom:528.622524px;}
.y13_c00049{bottom:529.381926px;}
.y12_c00049{bottom:529.802316px;}
.y11_c00049{bottom:531.136224px;}
.y10_c00049{bottom:531.859230px;}
.yd_c00049{bottom:532.180500px;}
.yf_c00049{bottom:532.581912px;}
.ye_c00049{bottom:534.613500px;}
.yc_c00049{bottom:544.775361px;}
.yb_c00049{bottom:547.593243px;}
.ya_c00049{bottom:551.111213px;}
.y9_c00049{bottom:552.976935px;}
.y8_c00049{bottom:562.796394px;}
.y7_c00049{bottom:563.403710px;}
.y6_c00049{bottom:565.989144px;}
.y5_c00049{bottom:567.016170px;}
.y4_c00049{bottom:569.539284px;}
.y3_c00049{bottom:570.250500px;}
.y2_c00049{bottom:590.220000px;}
.y1_c00049{bottom:598.860000px;}
.h2_c00049{height:22.050000px;}
.h6_c00049{height:29.400000px;}
.h1e_c00049{height:35.700000px;}
.h3_c00049{height:37.800000px;}
.h16_c00049{height:53.539316px;}
.hd_c00049{height:53.550000px;}
.he_c00049{height:54.600000px;}
.h15_c00049{height:56.700000px;}
.h9_c00049{height:57.772634px;}
.h1f_c00049{height:58.781475px;}
.h1d_c00049{height:58.800000px;}
.h11_c00049{height:58.821429px;}
.h5_c00049{height:59.822762px;}
.h18_c00049{height:59.826834px;}
.h13_c00049{height:59.871811px;}
.hb_c00049{height:59.873457px;}
.h17_c00049{height:60.876427px;}
.h12_c00049{height:60.922194px;}
.h8_c00049{height:60.923868px;}
.h10_c00049{height:61.930483px;}
.hc_c00049{height:61.974280px;}
.h20_c00049{height:62.971328px;}
.h21_c00049{height:64.020851px;}
.hf_c00049{height:64.029821px;}
.h1a_c00049{height:66.124395px;}
.h24_c00049{height:66.156945px;}
.h4_c00049{height:67.169417px;}
.h1b_c00049{height:67.173989px;}
.h14_c00049{height:67.224490px;}
.ha_c00049{height:68.276749px;}
.h7_c00049{height:69.275637px;}
.h25_c00049{height:69.307276px;}
.h23_c00049{height:70.315696px;}
.h22_c00049{height:70.317983px;}
.h1c_c00049{height:70.322769px;}
.h19_c00049{height:71.372363px;}
.h0_c00049{height:618.570000px;}
.h1_c00049{height:618.750000px;}
.w0_c00049{width:361.200000px;}
.w1_c00049{width:361.500000px;}
.x0_c00049{left:0.000000px;}
.x63_c00049{left:26.655553px;}
.x7c_c00049{left:29.077906px;}
.x71_c00049{left:30.240000px;}
.x70_c00049{left:31.590000px;}
.x59_c00049{left:32.670000px;}
.x5d_c00049{left:33.979272px;}
.x47_c00049{left:35.049000px;}
.x16_c00049{left:36.132000px;}
.x4_c00049{left:37.462500px;}
.x24_c00049{left:38.776242px;}
.xd_c00049{left:39.960000px;}
.x7e_c00049{left:46.058656px;}
.x51_c00049{left:51.242184px;}
.x64_c00049{left:53.884526px;}
.x5c_c00049{left:55.087604px;}
.x5e_c00049{left:57.415722px;}
.x5_c00049{left:58.992948px;}
.x61_c00049{left:60.587216px;}
.x68_c00049{left:62.464062px;}
.x1c_c00049{left:64.309440px;}
.x5a_c00049{left:67.230000px;}
.xe_c00049{left:69.120000px;}
.x42_c00049{left:72.090000px;}
.x2_c00049{left:73.170000px;}
.x69_c00049{left:75.833775px;}
.x1_c00049{left:77.490000px;}
.x3_c00049{left:78.570000px;}
.x4a_c00049{left:80.930989px;}
.x1d_c00049{left:82.223412px;}
.x25_c00049{left:84.201900px;}
.x55_c00049{left:85.340628px;}
.x31_c00049{left:87.873930px;}
.x72_c00049{left:90.720000px;}
.x52_c00049{left:91.745997px;}
.x43_c00049{left:93.531000px;}
.x80_c00049{left:94.537500px;}
.xa_c00049{left:96.289627px;}
.x6e_c00049{left:98.453085px;}
.x6a_c00049{left:99.597314px;}
.xf_c00049{left:102.481500px;}
.x2c_c00049{left:103.823820px;}
.x36_c00049{left:107.416272px;}
.x3d_c00049{left:112.011612px;}
.x77_c00049{left:114.605212px;}
.x46_c00049{left:116.081760px;}
.x73_c00049{left:118.343349px;}
.x85_c00049{left:121.051681px;}
.x1e_c00049{left:123.565806px;}
.x2d_c00049{left:125.174838px;}
.x37_c00049{left:127.950906px;}
.x17_c00049{left:130.356000px;}
.x62_c00049{left:132.347384px;}
.x6_c00049{left:135.374490px;}
.x4b_c00049{left:143.996788px;}
.x44_c00049{left:147.249228px;}
.x26_c00049{left:148.704870px;}
.x32_c00049{left:153.486078px;}
.x56_c00049{left:155.223692px;}
.x4c_c00049{left:157.617924px;}
.x10_c00049{left:158.858067px;}
.x48_c00049{left:160.252500px;}
.x3e_c00049{left:162.767112px;}
.x53_c00049{left:164.250609px;}
.x7_c00049{left:166.465368px;}
.x5f_c00049{left:168.948236px;}
.x74_c00049{left:171.144495px;}
.x81_c00049{left:174.110847px;}
.x27_c00049{left:175.920048px;}
.x4d_c00049{left:177.741397px;}
.x11_c00049{left:178.912493px;}
.x79_c00049{left:180.125289px;}
.x1f_c00049{left:182.546256px;}
.x18_c00049{left:183.585000px;}
.x2e_c00049{left:184.728522px;}
.x3f_c00049{left:186.278112px;}
.x57_c00049{left:189.500074px;}
.x6b_c00049{left:192.984348px;}
.x28_c00049{left:195.390318px;}
.x4e_c00049{left:197.081871px;}
.x12_c00049{left:198.975909px;}
.x75_c00049{left:200.414695px;}
.x86_c00049{left:202.992149px;}
.x7f_c00049{left:205.033765px;}
.xb_c00049{left:206.103321px;}
.x2f_c00049{left:208.383204px;}
.x38_c00049{left:211.837110px;}
.x45_c00049{left:215.493915px;}
.x65_c00049{left:217.438177px;}
.x20_c00049{left:222.056028px;}
.x49_c00049{left:223.336500px;}
.x39_c00049{left:224.397324px;}
.x83_c00049{left:230.410965px;}
.x33_c00049{left:232.709538px;}
.x13_c00049{left:235.991856px;}
.x66_c00049{left:237.002193px;}
.x58_c00049{left:238.249514px;}
.x7d_c00049{left:242.040802px;}
.x21_c00049{left:243.486828px;}
.x8_c00049{left:244.733521px;}
.x3a_c00049{left:246.324042px;}
.x14_c00049{left:247.657679px;}
.x6c_c00049{left:249.272597px;}
.x4f_c00049{left:251.336913px;}
.x76_c00049{left:252.729495px;}
.x78_c00049{left:257.526148px;}
.x5b_c00049{left:258.705798px;}
.x29_c00049{left:259.872288px;}
.x7a_c00049{left:261.345294px;}
.x9_c00049{left:263.118618px;}
.x30_c00049{left:264.314892px;}
.x40_c00049{left:265.335612px;}
.x19_c00049{left:267.711000px;}
.x15_c00049{left:268.731084px;}
.x6f_c00049{left:269.995509px;}
.x84_c00049{left:272.232601px;}
.x67_c00049{left:273.615216px;}
.x22_c00049{left:274.634238px;}
.x41_c00049{left:279.377112px;}
.x3b_c00049{left:281.697516px;}
.x2a_c00049{left:285.773676px;}
.x1a_c00049{left:291.499500px;}
.x6d_c00049{left:292.921269px;}
.xc_c00049{left:294.087672px;}
.x34_c00049{left:296.304564px;}
.x23_c00049{left:301.062072px;}
.x60_c00049{left:303.100202px;}
.x1b_c00049{left:304.596000px;}
.x7b_c00049{left:308.365736px;}
.x35_c00049{left:309.902418px;}
.x82_c00049{left:312.680139px;}
.x50_c00049{left:314.447712px;}
.x54_c00049{left:316.196969px;}
.x3c_c00049{left:317.618532px;}
.x2b_c00049{left:329.519544px;}
.x87_c00049{left:351.000000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.fs0_c00049{font-size:19.600000pt;}
.fs4_c00049{font-size:26.133333pt;}
.fs1c_c00049{font-size:31.733333pt;}
.fs1_c00049{font-size:33.600000pt;}
.fs14_c00049{font-size:47.590503pt;}
.fsb_c00049{font-size:47.600000pt;}
.fsc_c00049{font-size:48.533333pt;}
.fs13_c00049{font-size:50.400000pt;}
.fs7_c00049{font-size:51.353452pt;}
.fs1d_c00049{font-size:52.250200pt;}
.fs1b_c00049{font-size:52.266667pt;}
.fsf_c00049{font-size:52.285714pt;}
.fs3_c00049{font-size:53.175788pt;}
.fs16_c00049{font-size:53.179408pt;}
.fs11_c00049{font-size:53.219388pt;}
.fs9_c00049{font-size:53.220850pt;}
.fs15_c00049{font-size:54.112380pt;}
.fs10_c00049{font-size:54.153061pt;}
.fs6_c00049{font-size:54.154549pt;}
.fse_c00049{font-size:55.049318pt;}
.fsa_c00049{font-size:55.088249pt;}
.fs1e_c00049{font-size:55.974514pt;}
.fs1f_c00049{font-size:56.907423pt;}
.fsd_c00049{font-size:56.915397pt;}
.fs18_c00049{font-size:58.777240pt;}
.fs22_c00049{font-size:58.806174pt;}
.fs2_c00049{font-size:59.706148pt;}
.fs19_c00049{font-size:59.710212pt;}
.fs12_c00049{font-size:59.755102pt;}
.fs8_c00049{font-size:60.690443pt;}
.fs5_c00049{font-size:61.578344pt;}
.fs23_c00049{font-size:61.606468pt;}
.fs21_c00049{font-size:62.502841pt;}
.fs20_c00049{font-size:62.504874pt;}
.fs1a_c00049{font-size:62.509128pt;}
.fs17_c00049{font-size:63.442100pt;}
.y0_c00049{bottom:0.000000pt;}
.yfd_c00049{bottom:30.570669pt;}
.yfc_c00049{bottom:31.168393pt;}
.yfb_c00049{bottom:32.972124pt;}
.yfa_c00049{bottom:33.328897pt;}
.yf9_c00049{bottom:34.472465pt;}
.yf8_c00049{bottom:35.160009pt;}
.yf7_c00049{bottom:35.719152pt;}
.yf6_c00049{bottom:36.945365pt;}
.yf5_c00049{bottom:37.684571pt;}
.yf4_c00049{bottom:46.561948pt;}
.yf3_c00049{bottom:47.115796pt;}
.yf2_c00049{bottom:48.864760pt;}
.yf1_c00049{bottom:52.341005pt;}
.yf0_c00049{bottom:55.015681pt;}
.yef_c00049{bottom:55.794753pt;}
.yee_c00049{bottom:57.368000pt;}
.yed_c00049{bottom:59.555509pt;}
.yec_c00049{bottom:60.046517pt;}
.yeb_c00049{bottom:62.529333pt;}
.yea_c00049{bottom:63.500981pt;}
.ye9_c00049{bottom:65.766667pt;}
.ye8_c00049{bottom:67.452000pt;}
.ye7_c00049{bottom:75.892509pt;}
.ye6_c00049{bottom:76.463137pt;}
.ye5_c00049{bottom:77.484617pt;}
.ye4_c00049{bottom:78.129521pt;}
.ye3_c00049{bottom:79.087153pt;}
.ye2_c00049{bottom:81.494389pt;}
.ye1_c00049{bottom:83.221497pt;}
.ye0_c00049{bottom:83.794105pt;}
.ydf_c00049{bottom:92.788313pt;}
.yde_c00049{bottom:93.362265pt;}
.ydd_c00049{bottom:95.048549pt;}
.ydc_c00049{bottom:96.020209pt;}
.ydb_c00049{bottom:96.898869pt;}
.yda_c00049{bottom:98.662777pt;}
.yd9_c00049{bottom:107.346321pt;}
.yd8_c00049{bottom:107.795349pt;}
.yd7_c00049{bottom:108.309597pt;}
.yd6_c00049{bottom:109.399749pt;}
.yd5_c00049{bottom:109.973037pt;}
.yd4_c00049{bottom:110.389537pt;}
.yd3_c00049{bottom:111.544557pt;}
.yd2_c00049{bottom:112.618973pt;}
.yd1_c00049{bottom:113.052177pt;}
.yfe_c00049{bottom:116.880000pt;}
.yd0_c00049{bottom:122.063221pt;}
.ycf_c00049{bottom:122.685689pt;}
.yce_c00049{bottom:124.861401pt;}
.ycd_c00049{bottom:126.882233pt;}
.ycc_c00049{bottom:127.380929pt;}
.ycb_c00049{bottom:128.208921pt;}
.yca_c00049{bottom:129.369333pt;}
.yc9_c00049{bottom:135.057055pt;}
.yc8_c00049{bottom:137.461907pt;}
.yc7_c00049{bottom:139.673865pt;}
.yc6_c00049{bottom:140.644252pt;}
.ybf_c00049{bottom:143.048000pt;}
.yc5_c00049{bottom:143.543473pt;}
.yc4_c00049{bottom:151.466012pt;}
.yc3_c00049{bottom:154.797985pt;}
.yc2_c00049{bottom:155.761613pt;}
.yc1_c00049{bottom:157.499923pt;}
.ybe_c00049{bottom:157.925333pt;}
.yc0_c00049{bottom:158.409333pt;}
.ybd_c00049{bottom:167.237268pt;}
.ybc_c00049{bottom:168.086853pt;}
.ybb_c00049{bottom:168.602920pt;}
.yba_c00049{bottom:169.795587pt;}
.yb9_c00049{bottom:170.797751pt;}
.yb8_c00049{bottom:172.207461pt;}
.yb7_c00049{bottom:173.138117pt;}
.yb6_c00049{bottom:173.795779pt;}
.yb5_c00049{bottom:184.279384pt;}
.yb4_c00049{bottom:184.639356pt;}
.yb3_c00049{bottom:185.134588pt;}
.yb2_c00049{bottom:185.639892pt;}
.yb1_c00049{bottom:186.238051pt;}
.yb0_c00049{bottom:186.724237pt;}
.yaf_c00049{bottom:188.067423pt;}
.yae_c00049{bottom:188.532744pt;}
.yad_c00049{bottom:188.794405pt;}
.yac_c00049{bottom:189.388109pt;}
.yab_c00049{bottom:197.855929pt;}
.yaa_c00049{bottom:198.371669pt;}
.ya9_c00049{bottom:199.317171pt;}
.ya8_c00049{bottom:199.822415pt;}
.ya7_c00049{bottom:200.337688pt;}
.ya6_c00049{bottom:201.699163pt;}
.ya5_c00049{bottom:203.597208pt;}
.ya4_c00049{bottom:204.043647pt;}
.ya3_c00049{bottom:204.746252pt;}
.ya2_c00049{bottom:212.473781pt;}
.ya1_c00049{bottom:215.061448pt;}
.ya0_c00049{bottom:215.903875pt;}
.y9f_c00049{bottom:217.509068pt;}
.y9e_c00049{bottom:219.118508pt;}
.y9d_c00049{bottom:219.743841pt;}
.y9c_c00049{bottom:220.581275pt;}
.y9b_c00049{bottom:228.984572pt;}
.y9a_c00049{bottom:229.627027pt;}
.y99_c00049{bottom:231.009137pt;}
.y98_c00049{bottom:232.090124pt;}
.y97_c00049{bottom:233.153271pt;}
.y96_c00049{bottom:234.320988pt;}
.y95_c00049{bottom:234.671296pt;}
.y94_c00049{bottom:235.213117pt;}
.y93_c00049{bottom:243.392787pt;}
.y92_c00049{bottom:244.263773pt;}
.y91_c00049{bottom:245.806807pt;}
.y90_c00049{bottom:247.505193pt;}
.y8f_c00049{bottom:248.866927pt;}
.y8e_c00049{bottom:249.869887pt;}
.y8d_c00049{bottom:250.566667pt;}
.y8c_c00049{bottom:258.549707pt;}
.y8b_c00049{bottom:261.939627pt;}
.y8a_c00049{bottom:262.507893pt;}
.y89_c00049{bottom:263.382347pt;}
.y88_c00049{bottom:264.494667pt;}
.y87_c00049{bottom:264.729333pt;}
.y86_c00049{bottom:272.709089pt;}
.y85_c00049{bottom:273.543232pt;}
.y84_c00049{bottom:274.280483pt;}
.y83_c00049{bottom:275.666627pt;}
.y82_c00049{bottom:276.641371pt;}
.y81_c00049{bottom:277.227039pt;}
.y80_c00049{bottom:277.560055pt;}
.y7f_c00049{bottom:278.629457pt;}
.y7e_c00049{bottom:279.362100pt;}
.y7d_c00049{bottom:280.076200pt;}
.y7c_c00049{bottom:287.233876pt;}
.y7b_c00049{bottom:288.535401pt;}
.y7a_c00049{bottom:289.023271pt;}
.y79_c00049{bottom:290.637225pt;}
.y78_c00049{bottom:291.148784pt;}
.y77_c00049{bottom:291.674132pt;}
.y76_c00049{bottom:293.016988pt;}
.y75_c00049{bottom:294.061132pt;}
.y74_c00049{bottom:294.479481pt;}
.y73_c00049{bottom:302.389535pt;}
.y72_c00049{bottom:303.371541pt;}
.y71_c00049{bottom:303.960235pt;}
.y70_c00049{bottom:305.310391pt;}
.y6f_c00049{bottom:305.791908pt;}
.y6e_c00049{bottom:306.292217pt;}
.y6d_c00049{bottom:306.631133pt;}
.y6c_c00049{bottom:307.522525pt;}
.y6b_c00049{bottom:308.200753pt;}
.y6a_c00049{bottom:309.362875pt;}
.y69_c00049{bottom:319.367156pt;}
.y68_c00049{bottom:320.449100pt;}
.y67_c00049{bottom:321.963116pt;}
.y66_c00049{bottom:323.782268pt;}
.y65_c00049{bottom:324.090032pt;}
.y64_c00049{bottom:324.968000pt;}
.y63_c00049{bottom:333.884920pt;}
.y62_c00049{bottom:334.672724pt;}
.y61_c00049{bottom:336.143005pt;}
.y60_c00049{bottom:337.091685pt;}
.y5f_c00049{bottom:339.042720pt;}
.y5e_c00049{bottom:339.611287pt;}
.y57_c00049{bottom:339.837333pt;}
.y5d_c00049{bottom:348.621576pt;}
.y5c_c00049{bottom:350.719427pt;}
.y5b_c00049{bottom:351.910481pt;}
.y5a_c00049{bottom:352.966165pt;}
.y59_c00049{bottom:353.722396pt;}
.y58_c00049{bottom:354.734667pt;}
.y56_c00049{bottom:355.070667pt;}
.y55_c00049{bottom:363.982096pt;}
.y54_c00049{bottom:364.505285pt;}
.y53_c00049{bottom:364.854763pt;}
.y52_c00049{bottom:366.350709pt;}
.y51_c00049{bottom:366.822416pt;}
.y50_c00049{bottom:367.407579pt;}
.y4f_c00049{bottom:368.670827pt;}
.y4e_c00049{bottom:369.380421pt;}
.y4d_c00049{bottom:369.871728pt;}
.y4c_c00049{bottom:370.533051pt;}
.y4b_c00049{bottom:378.912197pt;}
.y4a_c00049{bottom:379.299728pt;}
.y49_c00049{bottom:379.742181pt;}
.y48_c00049{bottom:380.559872pt;}
.y47_c00049{bottom:381.066907pt;}
.y46_c00049{bottom:381.356832pt;}
.y45_c00049{bottom:383.295216pt;}
.y44_c00049{bottom:383.770272pt;}
.y43_c00049{bottom:384.226165pt;}
.y42_c00049{bottom:385.417424pt;}
.y41_c00049{bottom:392.492064pt;}
.y40_c00049{bottom:392.914565pt;}
.y3f_c00049{bottom:394.893685pt;}
.y3e_c00049{bottom:396.593552pt;}
.y3d_c00049{bottom:397.359189pt;}
.y3c_c00049{bottom:398.239632pt;}
.y3b_c00049{bottom:399.400523pt;}
.y3a_c00049{bottom:399.972336pt;}
.y39_c00049{bottom:401.028939pt;}
.y38_c00049{bottom:409.034757pt;}
.y37_c00049{bottom:410.675029pt;}
.y36_c00049{bottom:411.369184pt;}
.y35_c00049{bottom:411.888832pt;}
.y34_c00049{bottom:413.115616pt;}
.y33_c00049{bottom:413.741760pt;}
.y32_c00049{bottom:414.320917pt;}
.y31_c00049{bottom:415.669632pt;}
.y30_c00049{bottom:422.031339pt;}
.y2f_c00049{bottom:423.314944pt;}
.y2e_c00049{bottom:424.074357pt;}
.y2d_c00049{bottom:425.966133pt;}
.y2c_c00049{bottom:426.537461pt;}
.y2b_c00049{bottom:427.336245pt;}
.y2a_c00049{bottom:428.082901pt;}
.y29_c00049{bottom:429.228544pt;}
.y28_c00049{bottom:429.793611pt;}
.y27_c00049{bottom:430.560629pt;}
.y26_c00049{bottom:438.197056pt;}
.y25_c00049{bottom:439.018944pt;}
.y24_c00049{bottom:439.987653pt;}
.y23_c00049{bottom:440.654480pt;}
.y22_c00049{bottom:441.883360pt;}
.y21_c00049{bottom:443.718272pt;}
.y20_c00049{bottom:445.004773pt;}
.y1f_c00049{bottom:445.562720pt;}
.y1e_c00049{bottom:446.405819pt;}
.y1d_c00049{bottom:453.166229pt;}
.y1c_c00049{bottom:453.492187pt;}
.y1b_c00049{bottom:454.084256pt;}
.y1a_c00049{bottom:454.584709pt;}
.y19_c00049{bottom:456.178059pt;}
.y18_c00049{bottom:457.502869pt;}
.y17_c00049{bottom:458.820400pt;}
.y16_c00049{bottom:459.260373pt;}
.y15_c00049{bottom:459.848000pt;}
.y14_c00049{bottom:469.886688pt;}
.y13_c00049{bottom:470.561712pt;}
.y12_c00049{bottom:470.935392pt;}
.y11_c00049{bottom:472.121088pt;}
.y10_c00049{bottom:472.763760pt;}
.yd_c00049{bottom:473.049333pt;}
.yf_c00049{bottom:473.406144pt;}
.ye_c00049{bottom:475.212000pt;}
.yc_c00049{bottom:484.244765pt;}
.yb_c00049{bottom:486.749549pt;}
.ya_c00049{bottom:489.876633pt;}
.y9_c00049{bottom:491.535053pt;}
.y8_c00049{bottom:500.263461pt;}
.y7_c00049{bottom:500.803297pt;}
.y6_c00049{bottom:503.101461pt;}
.y5_c00049{bottom:504.014373pt;}
.y4_c00049{bottom:506.257141pt;}
.y3_c00049{bottom:506.889333pt;}
.y2_c00049{bottom:524.640000pt;}
.y1_c00049{bottom:532.320000pt;}
.h2_c00049{height:19.600000pt;}
.h6_c00049{height:26.133333pt;}
.h1e_c00049{height:31.733333pt;}
.h3_c00049{height:33.600000pt;}
.h16_c00049{height:47.590503pt;}
.hd_c00049{height:47.600000pt;}
.he_c00049{height:48.533333pt;}
.h15_c00049{height:50.400000pt;}
.h9_c00049{height:51.353452pt;}
.h1f_c00049{height:52.250200pt;}
.h1d_c00049{height:52.266667pt;}
.h11_c00049{height:52.285714pt;}
.h5_c00049{height:53.175788pt;}
.h18_c00049{height:53.179408pt;}
.h13_c00049{height:53.219388pt;}
.hb_c00049{height:53.220850pt;}
.h17_c00049{height:54.112380pt;}
.h12_c00049{height:54.153061pt;}
.h8_c00049{height:54.154549pt;}
.h10_c00049{height:55.049318pt;}
.hc_c00049{height:55.088249pt;}
.h20_c00049{height:55.974514pt;}
.h21_c00049{height:56.907423pt;}
.hf_c00049{height:56.915397pt;}
.h1a_c00049{height:58.777240pt;}
.h24_c00049{height:58.806174pt;}
.h4_c00049{height:59.706148pt;}
.h1b_c00049{height:59.710212pt;}
.h14_c00049{height:59.755102pt;}
.ha_c00049{height:60.690443pt;}
.h7_c00049{height:61.578344pt;}
.h25_c00049{height:61.606468pt;}
.h23_c00049{height:62.502841pt;}
.h22_c00049{height:62.504874pt;}
.h1c_c00049{height:62.509128pt;}
.h19_c00049{height:63.442100pt;}
.h0_c00049{height:549.840000pt;}
.h1_c00049{height:550.000000pt;}
.w0_c00049{width:321.066667pt;}
.w1_c00049{width:321.333333pt;}
.x0_c00049{left:0.000000pt;}
.x63_c00049{left:23.693825pt;}
.x7c_c00049{left:25.847028pt;}
.x71_c00049{left:26.880000pt;}
.x70_c00049{left:28.080000pt;}
.x59_c00049{left:29.040000pt;}
.x5d_c00049{left:30.203797pt;}
.x47_c00049{left:31.154667pt;}
.x16_c00049{left:32.117333pt;}
.x4_c00049{left:33.300000pt;}
.x24_c00049{left:34.467771pt;}
.xd_c00049{left:35.520000pt;}
.x7e_c00049{left:40.941028pt;}
.x51_c00049{left:45.548608pt;}
.x64_c00049{left:47.897356pt;}
.x5c_c00049{left:48.966759pt;}
.x5e_c00049{left:51.036197pt;}
.x5_c00049{left:52.438176pt;}
.x61_c00049{left:53.855303pt;}
.x68_c00049{left:55.523611pt;}
.x1c_c00049{left:57.163947pt;}
.x5a_c00049{left:59.760000pt;}
.xe_c00049{left:61.440000pt;}
.x42_c00049{left:64.080000pt;}
.x2_c00049{left:65.040000pt;}
.x69_c00049{left:67.407800pt;}
.x1_c00049{left:68.880000pt;}
.x3_c00049{left:69.840000pt;}
.x4a_c00049{left:71.938657pt;}
.x1d_c00049{left:73.087477pt;}
.x25_c00049{left:74.846133pt;}
.x55_c00049{left:75.858336pt;}
.x31_c00049{left:78.110160pt;}
.x72_c00049{left:80.640000pt;}
.x52_c00049{left:81.551997pt;}
.x43_c00049{left:83.138667pt;}
.x80_c00049{left:84.033333pt;}
.xa_c00049{left:85.590780pt;}
.x6e_c00049{left:87.513853pt;}
.x6a_c00049{left:88.530945pt;}
.xf_c00049{left:91.094667pt;}
.x2c_c00049{left:92.287840pt;}
.x36_c00049{left:95.481131pt;}
.x3d_c00049{left:99.565877pt;}
.x77_c00049{left:101.871300pt;}
.x46_c00049{left:103.183787pt;}
.x73_c00049{left:105.194088pt;}
.x85_c00049{left:107.601495pt;}
.x1e_c00049{left:109.836272pt;}
.x2d_c00049{left:111.266523pt;}
.x37_c00049{left:113.734139pt;}
.x17_c00049{left:115.872000pt;}
.x62_c00049{left:117.642119pt;}
.x6_c00049{left:120.332880pt;}
.x4b_c00049{left:127.997145pt;}
.x44_c00049{left:130.888203pt;}
.x26_c00049{left:132.182107pt;}
.x32_c00049{left:136.432069pt;}
.x56_c00049{left:137.976615pt;}
.x4c_c00049{left:140.104821pt;}
.x10_c00049{left:141.207171pt;}
.x48_c00049{left:142.446667pt;}
.x3e_c00049{left:144.681877pt;}
.x53_c00049{left:146.000541pt;}
.x7_c00049{left:147.969216pt;}
.x5f_c00049{left:150.176209pt;}
.x74_c00049{left:152.128440pt;}
.x81_c00049{left:154.765197pt;}
.x27_c00049{left:156.373376pt;}
.x4d_c00049{left:157.992353pt;}
.x11_c00049{left:159.033327pt;}
.x79_c00049{left:160.111368pt;}
.x1f_c00049{left:162.263339pt;}
.x18_c00049{left:163.186667pt;}
.x2e_c00049{left:164.203131pt;}
.x3f_c00049{left:165.580544pt;}
.x57_c00049{left:168.444511pt;}
.x6b_c00049{left:171.541643pt;}
.x28_c00049{left:173.680283pt;}
.x4e_c00049{left:175.183885pt;}
.x12_c00049{left:176.867475pt;}
.x75_c00049{left:178.146396pt;}
.x86_c00049{left:180.437465pt;}
.x7f_c00049{left:182.252236pt;}
.xb_c00049{left:183.202952pt;}
.x2f_c00049{left:185.229515pt;}
.x38_c00049{left:188.299653pt;}
.x45_c00049{left:191.550147pt;}
.x65_c00049{left:193.278380pt;}
.x20_c00049{left:197.383136pt;}
.x49_c00049{left:198.521333pt;}
.x39_c00049{left:199.464288pt;}
.x83_c00049{left:204.809747pt;}
.x33_c00049{left:206.852923pt;}
.x13_c00049{left:209.770539pt;}
.x66_c00049{left:210.668616pt;}
.x58_c00049{left:211.777345pt;}
.x7d_c00049{left:215.147380pt;}
.x21_c00049{left:216.432736pt;}
.x8_c00049{left:217.540908pt;}
.x3a_c00049{left:218.954704pt;}
.x14_c00049{left:220.140159pt;}
.x6c_c00049{left:221.575641pt;}
.x4f_c00049{left:223.410589pt;}
.x76_c00049{left:224.648440pt;}
.x78_c00049{left:228.912132pt;}
.x5b_c00049{left:229.960709pt;}
.x29_c00049{left:230.997589pt;}
.x7a_c00049{left:232.306928pt;}
.x9_c00049{left:233.883216pt;}
.x30_c00049{left:234.946571pt;}
.x40_c00049{left:235.853877pt;}
.x19_c00049{left:237.965333pt;}
.x15_c00049{left:238.872075pt;}
.x6f_c00049{left:239.996008pt;}
.x84_c00049{left:241.984535pt;}
.x67_c00049{left:243.213525pt;}
.x22_c00049{left:244.119323pt;}
.x41_c00049{left:248.335211pt;}
.x3b_c00049{left:250.397792pt;}
.x2a_c00049{left:254.021045pt;}
.x1a_c00049{left:259.110667pt;}
.x6d_c00049{left:260.374461pt;}
.xc_c00049{left:261.411264pt;}
.x34_c00049{left:263.381835pt;}
.x23_c00049{left:267.610731pt;}
.x60_c00049{left:269.422401pt;}
.x1b_c00049{left:270.752000pt;}
.x7b_c00049{left:274.102876pt;}
.x35_c00049{left:275.468816pt;}
.x82_c00049{left:277.937901pt;}
.x50_c00049{left:279.509077pt;}
.x54_c00049{left:281.063972pt;}
.x3c_c00049{left:282.327584pt;}
.x2b_c00049{left:292.906261pt;}
.x87_c00049{left:312.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00050 {
    display:none;
  }
  .loading-indicator_c00050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00050 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00050 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00050" -> "#page-container .classname_c00050")
 */
.pf_c00050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00050 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00050 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00050 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00050 {overflow:visible;}
  }
}
.c_c00050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00050 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00050:after { /* webkit #35443 */
  content: '';
}
.t_c00050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00050 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00050 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00050 { /* info for Javascript */
  display:none;
}
.l_c00050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00050:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00050 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00050.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00050{transform:matrix(0.119820,0.003958,-0.008254,0.249864,0,0);-ms-transform:matrix(0.119820,0.003958,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.119820,0.003958,-0.008254,0.249864,0,0);}
.m74_c00050{transform:matrix(0.136076,0.004495,-0.008254,0.249864,0,0);-ms-transform:matrix(0.136076,0.004495,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.136076,0.004495,-0.008254,0.249864,0,0);}
.ma2_c00050{transform:matrix(0.140608,0.004645,-0.008254,0.249864,0,0);-ms-transform:matrix(0.140608,0.004645,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.140608,0.004645,-0.008254,0.249864,0,0);}
.mbb_c00050{transform:matrix(0.140833,0.004652,-0.008254,0.249864,0,0);-ms-transform:matrix(0.140833,0.004652,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.140833,0.004652,-0.008254,0.249864,0,0);}
.mb8_c00050{transform:matrix(0.145785,0.004816,-0.008254,0.249864,0,0);-ms-transform:matrix(0.145785,0.004816,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.145785,0.004816,-0.008254,0.249864,0,0);}
.me9_c00050{transform:matrix(0.147165,0.004861,-0.008254,0.249864,0,0);-ms-transform:matrix(0.147165,0.004861,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.147165,0.004861,-0.008254,0.249864,0,0);}
.m1c_c00050{transform:matrix(0.150513,0.004972,-0.008254,0.249864,0,0);-ms-transform:matrix(0.150513,0.004972,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.150513,0.004972,-0.008254,0.249864,0,0);}
.mc0_c00050{transform:matrix(0.152667,0.005043,-0.008254,0.249864,0,0);-ms-transform:matrix(0.152667,0.005043,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.152667,0.005043,-0.008254,0.249864,0,0);}
.mc8_c00050{transform:matrix(0.153696,0.005077,-0.008254,0.249864,0,0);-ms-transform:matrix(0.153696,0.005077,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.153696,0.005077,-0.008254,0.249864,0,0);}
.m44_c00050{transform:matrix(0.154241,0.005095,-0.008254,0.249864,0,0);-ms-transform:matrix(0.154241,0.005095,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.154241,0.005095,-0.008254,0.249864,0,0);}
.md_c00050{transform:matrix(0.156030,0.005154,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156030,0.005154,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156030,0.005154,-0.008254,0.249864,0,0);}
.m90_c00050{transform:matrix(0.156899,0.005183,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156899,0.005183,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156899,0.005183,-0.008254,0.249864,0,0);}
.m9a_c00050{transform:matrix(0.157679,0.005209,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157679,0.005209,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157679,0.005209,-0.008254,0.249864,0,0);}
.m99_c00050{transform:matrix(0.158319,0.005230,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158319,0.005230,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158319,0.005230,-0.008254,0.249864,0,0);}
.m77_c00050{transform:matrix(0.158968,0.005251,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158968,0.005251,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158968,0.005251,-0.008254,0.249864,0,0);}
.m86_c00050{transform:matrix(0.160078,0.005288,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160078,0.005288,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160078,0.005288,-0.008254,0.249864,0,0);}
.m55_c00050{transform:matrix(0.160557,0.005304,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160557,0.005304,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160557,0.005304,-0.008254,0.249864,0,0);}
.m4e_c00050{transform:matrix(0.161482,0.005334,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161482,0.005334,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161482,0.005334,-0.008254,0.249864,0,0);}
.mc9_c00050{transform:matrix(0.161792,0.005344,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161792,0.005344,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161792,0.005344,-0.008254,0.249864,0,0);}
.ma_c00050{transform:matrix(0.162426,0.005365,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162426,0.005365,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162426,0.005365,-0.008254,0.249864,0,0);}
.m4b_c00050{transform:matrix(0.162501,0.005368,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162501,0.005368,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162501,0.005368,-0.008254,0.249864,0,0);}
.m9f_c00050{transform:matrix(0.162841,0.005379,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162841,0.005379,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162841,0.005379,-0.008254,0.249864,0,0);}
.mc5_c00050{transform:matrix(0.163416,0.005398,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163416,0.005398,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163416,0.005398,-0.008254,0.249864,0,0);}
.m91_c00050{transform:matrix(0.164210,0.005424,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164210,0.005424,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164210,0.005424,-0.008254,0.249864,0,0);}
.m16_c00050{transform:matrix(0.164310,0.005428,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164310,0.005428,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164310,0.005428,-0.008254,0.249864,0,0);}
.me1_c00050{transform:matrix(0.165000,0.005450,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165000,0.005450,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165000,0.005450,-0.008254,0.249864,0,0);}
.m66_c00050{transform:matrix(0.165565,0.005469,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165565,0.005469,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165565,0.005469,-0.008254,0.249864,0,0);}
.m21_c00050{transform:matrix(0.166459,0.005499,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166459,0.005499,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166459,0.005499,-0.008254,0.249864,0,0);}
.m14_c00050{transform:matrix(0.166889,0.005513,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166889,0.005513,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166889,0.005513,-0.008254,0.249864,0,0);}
.m1b_c00050{transform:matrix(0.167084,0.005519,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167084,0.005519,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167084,0.005519,-0.008254,0.249864,0,0);}
.m35_c00050{transform:matrix(0.167404,0.005530,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167404,0.005530,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167404,0.005530,-0.008254,0.249864,0,0);}
.m8d_c00050{transform:matrix(0.167943,0.005548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167943,0.005548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167943,0.005548,-0.008254,0.249864,0,0);}
.m9d_c00050{transform:matrix(0.168848,0.005578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168848,0.005578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168848,0.005578,-0.008254,0.249864,0,0);}
.mbc_c00050{transform:matrix(0.169842,0.005610,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169842,0.005610,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169842,0.005610,-0.008254,0.249864,0,0);}
.mb7_c00050{transform:matrix(0.170522,0.005633,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170522,0.005633,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170522,0.005633,-0.008254,0.249864,0,0);}
.m52_c00050{transform:matrix(0.170912,0.005646,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170912,0.005646,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170912,0.005646,-0.008254,0.249864,0,0);}
.mab_c00050{transform:matrix(0.171337,0.005660,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171337,0.005660,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171337,0.005660,-0.008254,0.249864,0,0);}
.m33_c00050{transform:matrix(0.171456,0.005664,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171456,0.005664,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171456,0.005664,-0.008254,0.249864,0,0);}
.mbf_c00050{transform:matrix(0.172246,0.005690,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172246,0.005690,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172246,0.005690,-0.008254,0.249864,0,0);}
.m78_c00050{transform:matrix(0.172471,0.005697,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172471,0.005697,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172471,0.005697,-0.008254,0.249864,0,0);}
.m9b_c00050{transform:matrix(0.172796,0.005708,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172796,0.005708,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172796,0.005708,-0.008254,0.249864,0,0);}
.m2f_c00050{transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);}
.m9c_c00050{transform:matrix(0.173750,0.005739,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173750,0.005739,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173750,0.005739,-0.008254,0.249864,0,0);}
.m73_c00050{transform:matrix(0.174125,0.005752,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174125,0.005752,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174125,0.005752,-0.008254,0.249864,0,0);}
.md6_c00050{transform:matrix(0.174200,0.005754,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174200,0.005754,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174200,0.005754,-0.008254,0.249864,0,0);}
.m7e_c00050{transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174945,0.005779,-0.008254,0.249864,0,0);}
.m22_c00050{transform:matrix(0.174995,0.005781,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174995,0.005781,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174995,0.005781,-0.008254,0.249864,0,0);}
.mba_c00050{transform:matrix(0.175484,0.005797,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175484,0.005797,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175484,0.005797,-0.008254,0.249864,0,0);}
.me5_c00050{transform:matrix(0.175499,0.005797,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175499,0.005797,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175499,0.005797,-0.008254,0.249864,0,0);}
.mdf_c00050{transform:matrix(0.175594,0.005800,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175594,0.005800,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175594,0.005800,-0.008254,0.249864,0,0);}
.m7f_c00050{transform:matrix(0.176129,0.005818,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176129,0.005818,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176129,0.005818,-0.008254,0.249864,0,0);}
.m48_c00050{transform:matrix(0.176264,0.005823,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176264,0.005823,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176264,0.005823,-0.008254,0.249864,0,0);}
.m40_c00050{transform:matrix(0.176384,0.005826,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176384,0.005826,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176384,0.005826,-0.008254,0.249864,0,0);}
.me_c00050{transform:matrix(0.177703,0.005870,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177703,0.005870,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177703,0.005870,-0.008254,0.249864,0,0);}
.m50_c00050{transform:matrix(0.178078,0.005882,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178078,0.005882,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178078,0.005882,-0.008254,0.249864,0,0);}
.m32_c00050{transform:matrix(0.178368,0.005892,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178368,0.005892,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178368,0.005892,-0.008254,0.249864,0,0);}
.mbe_c00050{transform:matrix(0.178483,0.005896,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178483,0.005896,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178483,0.005896,-0.008254,0.249864,0,0);}
.m7_c00050{transform:matrix(0.178972,0.005912,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178972,0.005912,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178972,0.005912,-0.008254,0.249864,0,0);}
.m2b_c00050{transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178997,0.005913,-0.008254,0.249864,0,0);}
.mcd_c00050{transform:matrix(0.179342,0.005924,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179342,0.005924,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179342,0.005924,-0.008254,0.249864,0,0);}
.m18_c00050{transform:matrix(0.179832,0.005940,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179832,0.005940,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179832,0.005940,-0.008254,0.249864,0,0);}
.m7c_c00050{transform:matrix(0.180032,0.005947,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180032,0.005947,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180032,0.005947,-0.008254,0.249864,0,0);}
.m1a_c00050{transform:matrix(0.180042,0.005947,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180042,0.005947,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180042,0.005947,-0.008254,0.249864,0,0);}
.mb_c00050{transform:matrix(0.180172,0.005952,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180172,0.005952,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180172,0.005952,-0.008254,0.249864,0,0);}
.m8e_c00050{transform:matrix(0.180332,0.005957,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180332,0.005957,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180332,0.005957,-0.008254,0.249864,0,0);}
.md1_c00050{transform:matrix(0.180696,0.005969,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180696,0.005969,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180696,0.005969,-0.008254,0.249864,0,0);}
.m51_c00050{transform:matrix(0.180981,0.005978,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180981,0.005978,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180981,0.005978,-0.008254,0.249864,0,0);}
.m98_c00050{transform:matrix(0.181191,0.005985,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181191,0.005985,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181191,0.005985,-0.008254,0.249864,0,0);}
.ma6_c00050{transform:matrix(0.181321,0.005990,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181321,0.005990,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181321,0.005990,-0.008254,0.249864,0,0);}
.me7_c00050{transform:matrix(0.181656,0.006001,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181656,0.006001,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181656,0.006001,-0.008254,0.249864,0,0);}
.m8a_c00050{transform:matrix(0.181851,0.006007,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181851,0.006007,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181851,0.006007,-0.008254,0.249864,0,0);}
.m5f_c00050{transform:matrix(0.182191,0.006018,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182191,0.006018,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182191,0.006018,-0.008254,0.249864,0,0);}
.m17_c00050{transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182765,0.006037,-0.008254,0.249864,0,0);}
.m19_c00050{transform:matrix(0.182925,0.006043,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182925,0.006043,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182925,0.006043,-0.008254,0.249864,0,0);}
.m82_c00050{transform:matrix(0.183500,0.006062,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183500,0.006062,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183500,0.006062,-0.008254,0.249864,0,0);}
.m1f_c00050{transform:matrix(0.184095,0.006081,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184095,0.006081,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184095,0.006081,-0.008254,0.249864,0,0);}
.m97_c00050{transform:matrix(0.184419,0.006092,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184419,0.006092,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184419,0.006092,-0.008254,0.249864,0,0);}
.m59_c00050{transform:matrix(0.184594,0.006098,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184594,0.006098,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184594,0.006098,-0.008254,0.249864,0,0);}
.m75_c00050{transform:matrix(0.184739,0.006102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184739,0.006102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184739,0.006102,-0.008254,0.249864,0,0);}
.mc_c00050{transform:matrix(0.184759,0.006103,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184759,0.006103,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184759,0.006103,-0.008254,0.249864,0,0);}
.m36_c00050{transform:matrix(0.184909,0.006108,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184909,0.006108,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184909,0.006108,-0.008254,0.249864,0,0);}
.m8f_c00050{transform:matrix(0.184994,0.006111,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184994,0.006111,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184994,0.006111,-0.008254,0.249864,0,0);}
.me2_c00050{transform:matrix(0.185789,0.006137,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185789,0.006137,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185789,0.006137,-0.008254,0.249864,0,0);}
.m31_c00050{transform:matrix(0.185929,0.006142,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185929,0.006142,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185929,0.006142,-0.008254,0.249864,0,0);}
.m46_c00050{transform:matrix(0.186828,0.006171,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186828,0.006171,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186828,0.006171,-0.008254,0.249864,0,0);}
.m53_c00050{transform:matrix(0.186873,0.006173,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186873,0.006173,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186873,0.006173,-0.008254,0.249864,0,0);}
.m37_c00050{transform:matrix(0.187023,0.006178,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187023,0.006178,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187023,0.006178,-0.008254,0.249864,0,0);}
.m76_c00050{transform:matrix(0.187843,0.006205,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187843,0.006205,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187843,0.006205,-0.008254,0.249864,0,0);}
.m80_c00050{transform:matrix(0.188297,0.006220,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188297,0.006220,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188297,0.006220,-0.008254,0.249864,0,0);}
.m79_c00050{transform:matrix(0.188337,0.006221,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188337,0.006221,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188337,0.006221,-0.008254,0.249864,0,0);}
.m9_c00050{transform:matrix(0.188437,0.006225,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188437,0.006225,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188437,0.006225,-0.008254,0.249864,0,0);}
.m7a_c00050{transform:matrix(0.188512,0.006227,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188512,0.006227,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188512,0.006227,-0.008254,0.249864,0,0);}
.m8c_c00050{transform:matrix(0.188532,0.006228,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188532,0.006228,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188532,0.006228,-0.008254,0.249864,0,0);}
.m1e_c00050{transform:matrix(0.189642,0.006264,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189642,0.006264,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189642,0.006264,-0.008254,0.249864,0,0);}
.m4f_c00050{transform:matrix(0.189796,0.006270,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189796,0.006270,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189796,0.006270,-0.008254,0.249864,0,0);}
.mf_c00050{transform:matrix(0.190056,0.006278,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190056,0.006278,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190056,0.006278,-0.008254,0.249864,0,0);}
.mce_c00050{transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190106,0.006280,-0.008254,0.249864,0,0);}
.m20_c00050{transform:matrix(0.190146,0.006281,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190146,0.006281,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190146,0.006281,-0.008254,0.249864,0,0);}
.m4c_c00050{transform:matrix(0.190366,0.006288,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190366,0.006288,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190366,0.006288,-0.008254,0.249864,0,0);}
.m34_c00050{transform:matrix(0.190571,0.006295,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190571,0.006295,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190571,0.006295,-0.008254,0.249864,0,0);}
.m26_c00050{transform:matrix(0.190676,0.006299,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190676,0.006299,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190676,0.006299,-0.008254,0.249864,0,0);}
.mde_c00050{transform:matrix(0.190941,0.006307,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190941,0.006307,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190941,0.006307,-0.008254,0.249864,0,0);}
.m56_c00050{transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);}
.m57_c00050{transform:matrix(0.191326,0.006320,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191326,0.006320,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191326,0.006320,-0.008254,0.249864,0,0);}
.mbd_c00050{transform:matrix(0.191526,0.006327,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191526,0.006327,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191526,0.006327,-0.008254,0.249864,0,0);}
.md5_c00050{transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);}
.m58_c00050{transform:matrix(0.191576,0.006328,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191576,0.006328,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191576,0.006328,-0.008254,0.249864,0,0);}
.m10_c00050{transform:matrix(0.191835,0.006337,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191835,0.006337,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191835,0.006337,-0.008254,0.249864,0,0);}
.m5_c00050{transform:matrix(0.191955,0.006341,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191955,0.006341,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191955,0.006341,-0.008254,0.249864,0,0);}
.m11_c00050{transform:matrix(0.192735,0.006367,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192735,0.006367,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192735,0.006367,-0.008254,0.249864,0,0);}
.mb9_c00050{transform:matrix(0.193005,0.006376,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193005,0.006376,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193005,0.006376,-0.008254,0.249864,0,0);}
.mc2_c00050{transform:matrix(0.194044,0.006410,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194044,0.006410,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194044,0.006410,-0.008254,0.249864,0,0);}
.mc4_c00050{transform:matrix(0.194539,0.006426,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194539,0.006426,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194539,0.006426,-0.008254,0.249864,0,0);}
.m54_c00050{transform:matrix(0.194799,0.006435,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194799,0.006435,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194799,0.006435,-0.008254,0.249864,0,0);}
.me8_c00050{transform:matrix(0.194869,0.006437,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194869,0.006437,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194869,0.006437,-0.008254,0.249864,0,0);}
.m3c_c00050{transform:matrix(0.195263,0.006450,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195263,0.006450,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195263,0.006450,-0.008254,0.249864,0,0);}
.maf_c00050{transform:matrix(0.195928,0.006472,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195928,0.006472,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195928,0.006472,-0.008254,0.249864,0,0);}
.mad_c00050{transform:matrix(0.196728,0.006499,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196728,0.006499,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196728,0.006499,-0.008254,0.249864,0,0);}
.mae_c00050{transform:matrix(0.197642,0.006529,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197642,0.006529,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197642,0.006529,-0.008254,0.249864,0,0);}
.md0_c00050{transform:matrix(0.197932,0.006538,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197932,0.006538,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197932,0.006538,-0.008254,0.249864,0,0);}
.m72_c00050{transform:matrix(0.198257,0.006549,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198257,0.006549,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198257,0.006549,-0.008254,0.249864,0,0);}
.m85_c00050{transform:matrix(0.198437,0.006555,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198437,0.006555,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198437,0.006555,-0.008254,0.249864,0,0);}
.m39_c00050{transform:matrix(0.198572,0.006559,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198572,0.006559,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198572,0.006559,-0.008254,0.249864,0,0);}
.ma9_c00050{transform:matrix(0.198867,0.006569,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198867,0.006569,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198867,0.006569,-0.008254,0.249864,0,0);}
.m25_c00050{transform:matrix(0.199201,0.006580,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199201,0.006580,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199201,0.006580,-0.008254,0.249864,0,0);}
.mcf_c00050{transform:matrix(0.199256,0.006582,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199256,0.006582,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199256,0.006582,-0.008254,0.249864,0,0);}
.m47_c00050{transform:matrix(0.199301,0.006584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199301,0.006584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199301,0.006584,-0.008254,0.249864,0,0);}
.mca_c00050{transform:matrix(0.199906,0.006604,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199906,0.006604,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199906,0.006604,-0.008254,0.249864,0,0);}
.m92_c00050{transform:matrix(0.200041,0.006608,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200041,0.006608,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200041,0.006608,-0.008254,0.249864,0,0);}
.mac_c00050{transform:matrix(0.200156,0.006612,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200156,0.006612,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200156,0.006612,-0.008254,0.249864,0,0);}
.m81_c00050{transform:matrix(0.201015,0.006640,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201015,0.006640,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201015,0.006640,-0.008254,0.249864,0,0);}
.m27_c00050{transform:matrix(0.201125,0.006644,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201125,0.006644,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201125,0.006644,-0.008254,0.249864,0,0);}
.mc6_c00050{transform:matrix(0.201230,0.006647,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201230,0.006647,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201230,0.006647,-0.008254,0.249864,0,0);}
.m83_c00050{transform:matrix(0.201255,0.006648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201255,0.006648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201255,0.006648,-0.008254,0.249864,0,0);}
.m5e_c00050{transform:matrix(0.201970,0.006672,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201970,0.006672,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201970,0.006672,-0.008254,0.249864,0,0);}
.mcb_c00050{transform:matrix(0.202080,0.006675,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202080,0.006675,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202080,0.006675,-0.008254,0.249864,0,0);}
.m9e_c00050{transform:matrix(0.202654,0.006694,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202654,0.006694,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202654,0.006694,-0.008254,0.249864,0,0);}
.m96_c00050{transform:matrix(0.202849,0.006701,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202849,0.006701,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202849,0.006701,-0.008254,0.249864,0,0);}
.m2c_c00050{transform:matrix(0.203154,0.006711,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203154,0.006711,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203154,0.006711,-0.008254,0.249864,0,0);}
.m7b_c00050{transform:matrix(0.203234,0.006713,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203234,0.006713,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203234,0.006713,-0.008254,0.249864,0,0);}
.m4d_c00050{transform:matrix(0.203394,0.006719,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203394,0.006719,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203394,0.006719,-0.008254,0.249864,0,0);}
.mb0_c00050{transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);}
.m94_c00050{transform:matrix(0.204538,0.006757,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204538,0.006757,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204538,0.006757,-0.008254,0.249864,0,0);}
.me6_c00050{transform:matrix(0.204758,0.006764,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204758,0.006764,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204758,0.006764,-0.008254,0.249864,0,0);}
.me3_c00050{transform:matrix(0.204808,0.006765,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204808,0.006765,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204808,0.006765,-0.008254,0.249864,0,0);}
.ma0_c00050{transform:matrix(0.204908,0.006769,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204908,0.006769,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204908,0.006769,-0.008254,0.249864,0,0);}
.me0_c00050{transform:matrix(0.205713,0.006795,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205713,0.006795,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205713,0.006795,-0.008254,0.249864,0,0);}
.m2d_c00050{transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);}
.m43_c00050{transform:matrix(0.206862,0.006833,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206862,0.006833,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206862,0.006833,-0.008254,0.249864,0,0);}
.mb1_c00050{transform:matrix(0.206962,0.006837,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206962,0.006837,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206962,0.006837,-0.008254,0.249864,0,0);}
.m3d_c00050{transform:matrix(0.207232,0.006846,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207232,0.006846,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207232,0.006846,-0.008254,0.249864,0,0);}
.m15_c00050{transform:matrix(0.207472,0.006853,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207472,0.006853,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207472,0.006853,-0.008254,0.249864,0,0);}
.m7d_c00050{transform:matrix(0.207732,0.006862,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207732,0.006862,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207732,0.006862,-0.008254,0.249864,0,0);}
.m4a_c00050{transform:matrix(0.207757,0.006863,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207757,0.006863,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207757,0.006863,-0.008254,0.249864,0,0);}
.ma8_c00050{transform:matrix(0.207922,0.006868,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207922,0.006868,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207922,0.006868,-0.008254,0.249864,0,0);}
.mc1_c00050{transform:matrix(0.208181,0.006877,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208181,0.006877,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208181,0.006877,-0.008254,0.249864,0,0);}
.m5d_c00050{transform:matrix(0.208201,0.006878,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208201,0.006878,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208201,0.006878,-0.008254,0.249864,0,0);}
.m30_c00050{transform:matrix(0.208606,0.006891,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208606,0.006891,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208606,0.006891,-0.008254,0.249864,0,0);}
.md4_c00050{transform:matrix(0.208741,0.006895,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208741,0.006895,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208741,0.006895,-0.008254,0.249864,0,0);}
.m8_c00050{transform:matrix(0.208876,0.006900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208876,0.006900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208876,0.006900,-0.008254,0.249864,0,0);}
.ma1_c00050{transform:matrix(0.209711,0.006927,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209711,0.006927,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209711,0.006927,-0.008254,0.249864,0,0);}
.m62_c00050{transform:matrix(0.209741,0.006928,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209741,0.006928,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209741,0.006928,-0.008254,0.249864,0,0);}
.m24_c00050{transform:matrix(0.209831,0.006931,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209831,0.006931,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209831,0.006931,-0.008254,0.249864,0,0);}
.m13_c00050{transform:matrix(0.210955,0.006968,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210955,0.006968,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210955,0.006968,-0.008254,0.249864,0,0);}
.ma7_c00050{transform:matrix(0.211015,0.006970,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211015,0.006970,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211015,0.006970,-0.008254,0.249864,0,0);}
.m41_c00050{transform:matrix(0.211420,0.006984,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211420,0.006984,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211420,0.006984,-0.008254,0.249864,0,0);}
.md3_c00050{transform:matrix(0.212059,0.007005,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212059,0.007005,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212059,0.007005,-0.008254,0.249864,0,0);}
.m23_c00050{transform:matrix(0.212754,0.007028,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212754,0.007028,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212754,0.007028,-0.008254,0.249864,0,0);}
.mc7_c00050{transform:matrix(0.213214,0.007043,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213214,0.007043,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213214,0.007043,-0.008254,0.249864,0,0);}
.m61_c00050{transform:matrix(0.213788,0.007062,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213788,0.007062,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213788,0.007062,-0.008254,0.249864,0,0);}
.m45_c00050{transform:matrix(0.214353,0.007081,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214353,0.007081,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214353,0.007081,-0.008254,0.249864,0,0);}
.mc3_c00050{transform:matrix(0.214468,0.007085,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214468,0.007085,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214468,0.007085,-0.008254,0.249864,0,0);}
.m67_c00050{transform:matrix(0.214713,0.007093,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214713,0.007093,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214713,0.007093,-0.008254,0.249864,0,0);}
.mdd_c00050{transform:matrix(0.214853,0.007097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214853,0.007097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214853,0.007097,-0.008254,0.249864,0,0);}
.mb5_c00050{transform:matrix(0.215517,0.007119,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215517,0.007119,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215517,0.007119,-0.008254,0.249864,0,0);}
.mda_c00050{transform:matrix(0.215747,0.007127,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215747,0.007127,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215747,0.007127,-0.008254,0.249864,0,0);}
.m3b_c00050{transform:matrix(0.215787,0.007128,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215787,0.007128,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215787,0.007128,-0.008254,0.249864,0,0);}
.mea_c00050{transform:matrix(0.215872,0.007131,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215872,0.007131,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215872,0.007131,-0.008254,0.249864,0,0);}
.m60_c00050{transform:matrix(0.216552,0.007153,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216552,0.007153,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216552,0.007153,-0.008254,0.249864,0,0);}
.m88_c00050{transform:matrix(0.217237,0.007176,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217237,0.007176,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217237,0.007176,-0.008254,0.249864,0,0);}
.m65_c00050{transform:matrix(0.217296,0.007178,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217296,0.007178,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217296,0.007178,-0.008254,0.249864,0,0);}
.m12_c00050{transform:matrix(0.217496,0.007185,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217496,0.007185,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217496,0.007185,-0.008254,0.249864,0,0);}
.m93_c00050{transform:matrix(0.217636,0.007189,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217636,0.007189,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217636,0.007189,-0.008254,0.249864,0,0);}
.mb3_c00050{transform:matrix(0.218166,0.007207,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218166,0.007207,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218166,0.007207,-0.008254,0.249864,0,0);}
.m63_c00050{transform:matrix(0.218436,0.007216,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218436,0.007216,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218436,0.007216,-0.008254,0.249864,0,0);}
.m42_c00050{transform:matrix(0.219760,0.007259,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219760,0.007259,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219760,0.007259,-0.008254,0.249864,0,0);}
.m38_c00050{transform:matrix(0.220450,0.007282,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220450,0.007282,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220450,0.007282,-0.008254,0.249864,0,0);}
.m1d_c00050{transform:matrix(0.220959,0.007299,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220959,0.007299,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220959,0.007299,-0.008254,0.249864,0,0);}
.m64_c00050{transform:matrix(0.221204,0.007307,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221204,0.007307,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221204,0.007307,-0.008254,0.249864,0,0);}
.m87_c00050{transform:matrix(0.221444,0.007315,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221444,0.007315,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221444,0.007315,-0.008254,0.249864,0,0);}
.m6_c00050{transform:matrix(0.221514,0.007317,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221514,0.007317,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221514,0.007317,-0.008254,0.249864,0,0);}
.m2a_c00050{transform:matrix(0.222009,0.007334,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222009,0.007334,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222009,0.007334,-0.008254,0.249864,0,0);}
.m49_c00050{transform:matrix(0.223133,0.007371,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223133,0.007371,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223133,0.007371,-0.008254,0.249864,0,0);}
.ma4_c00050{transform:matrix(0.223903,0.007396,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223903,0.007396,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223903,0.007396,-0.008254,0.249864,0,0);}
.m3a_c00050{transform:matrix(0.224982,0.007432,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224982,0.007432,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224982,0.007432,-0.008254,0.249864,0,0);}
.mdc_c00050{transform:matrix(0.225892,0.007462,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225892,0.007462,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225892,0.007462,-0.008254,0.249864,0,0);}
.m95_c00050{transform:matrix(0.226287,0.007475,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226287,0.007475,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226287,0.007475,-0.008254,0.249864,0,0);}
.m6a_c00050{transform:matrix(0.226826,0.007493,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226826,0.007493,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226826,0.007493,-0.008254,0.249864,0,0);}
.mb2_c00050{transform:matrix(0.228081,0.007534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228081,0.007534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228081,0.007534,-0.008254,0.249864,0,0);}
.m6c_c00050{transform:matrix(0.228955,0.007563,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228955,0.007563,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228955,0.007563,-0.008254,0.249864,0,0);}
.m3f_c00050{transform:matrix(0.229230,0.007572,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229230,0.007572,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229230,0.007572,-0.008254,0.249864,0,0);}
.m4_c00050{transform:matrix(0.229645,0.007586,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229645,0.007586,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229645,0.007586,-0.008254,0.249864,0,0);}
.me4_c00050{transform:matrix(0.230914,0.007628,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230914,0.007628,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230914,0.007628,-0.008254,0.249864,0,0);}
.mb4_c00050{transform:matrix(0.230949,0.007629,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230949,0.007629,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230949,0.007629,-0.008254,0.249864,0,0);}
.mb6_c00050{transform:matrix(0.232148,0.007669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232148,0.007669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232148,0.007669,-0.008254,0.249864,0,0);}
.m6b_c00050{transform:matrix(0.232533,0.007681,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232533,0.007681,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232533,0.007681,-0.008254,0.249864,0,0);}
.md8_c00050{transform:matrix(0.232853,0.007692,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232853,0.007692,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232853,0.007692,-0.008254,0.249864,0,0);}
.md7_c00050{transform:matrix(0.233947,0.007728,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233947,0.007728,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233947,0.007728,-0.008254,0.249864,0,0);}
.md2_c00050{transform:matrix(0.234247,0.007738,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234247,0.007738,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234247,0.007738,-0.008254,0.249864,0,0);}
.m5b_c00050{transform:matrix(0.234392,0.007743,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234392,0.007743,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234392,0.007743,-0.008254,0.249864,0,0);}
.ma5_c00050{transform:matrix(0.235152,0.007768,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235152,0.007768,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235152,0.007768,-0.008254,0.249864,0,0);}
.m5a_c00050{transform:matrix(0.236026,0.007797,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236026,0.007797,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236026,0.007797,-0.008254,0.249864,0,0);}
.mdb_c00050{transform:matrix(0.237500,0.007845,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237500,0.007845,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237500,0.007845,-0.008254,0.249864,0,0);}
.m5c_c00050{transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);}
.m6e_c00050{transform:matrix(0.238515,0.007879,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238515,0.007879,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238515,0.007879,-0.008254,0.249864,0,0);}
.m84_c00050{transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);}
.m2_c00050{transform:matrix(0.239899,0.007925,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239899,0.007925,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239899,0.007925,-0.008254,0.249864,0,0);}
.m0_c00050{transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);}
.md9_c00050{transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);}
.m2e_c00050{transform:matrix(0.240954,0.007959,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240954,0.007959,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240954,0.007959,-0.008254,0.249864,0,0);}
.m68_c00050{transform:matrix(0.241278,0.007970,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241278,0.007970,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241278,0.007970,-0.008254,0.249864,0,0);}
.m69_c00050{transform:matrix(0.241733,0.007985,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241733,0.007985,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241733,0.007985,-0.008254,0.249864,0,0);}
.m6d_c00050{transform:matrix(0.242783,0.008020,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242783,0.008020,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242783,0.008020,-0.008254,0.249864,0,0);}
.m1_c00050{transform:matrix(0.243397,0.008040,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243397,0.008040,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243397,0.008040,-0.008254,0.249864,0,0);}
.m3e_c00050{transform:matrix(0.243962,0.008059,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243962,0.008059,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243962,0.008059,-0.008254,0.249864,0,0);}
.ma3_c00050{transform:matrix(0.244866,0.008089,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244866,0.008089,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244866,0.008089,-0.008254,0.249864,0,0);}
.m29_c00050{transform:matrix(0.246351,0.008138,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246351,0.008138,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246351,0.008138,-0.008254,0.249864,0,0);}
.m6f_c00050{transform:matrix(0.249649,0.008247,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249649,0.008247,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249649,0.008247,-0.008254,0.249864,0,0);}
.mcc_c00050{transform:matrix(0.256210,0.008463,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256210,0.008463,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256210,0.008463,-0.008254,0.249864,0,0);}
.m70_c00050{transform:matrix(0.259369,0.008568,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259369,0.008568,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259369,0.008568,-0.008254,0.249864,0,0);}
.m89_c00050{transform:matrix(0.287433,0.009495,-0.008254,0.249864,0,0);-ms-transform:matrix(0.287433,0.009495,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.287433,0.009495,-0.008254,0.249864,0,0);}
.m71_c00050{transform:matrix(0.309106,0.010211,-0.008254,0.249864,0,0);-ms-transform:matrix(0.309106,0.010211,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.309106,0.010211,-0.008254,0.249864,0,0);}
.m3_c00050{transform:matrix(0.357880,0.011822,-0.008254,0.249864,0,0);-ms-transform:matrix(0.357880,0.011822,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.357880,0.011822,-0.008254,0.249864,0,0);}
.m8b_c00050{transform:matrix(0.516203,0.017052,-0.008254,0.249864,0,0);-ms-transform:matrix(0.516203,0.017052,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.516203,0.017052,-0.008254,0.249864,0,0);}
.m28_c00050{transform:matrix(0.580873,0.019188,-0.008254,0.249864,0,0);-ms-transform:matrix(0.580873,0.019188,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.580873,0.019188,-0.008254,0.249864,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
.fc0_c00050{color:transparent;}
.fsb_c00050{font-size:37.782797px;}
.fs9_c00050{font-size:54.575151px;}
.fs0_c00050{font-size:57.723718px;}
.fs5_c00050{font-size:58.773240px;}
.fs6_c00050{font-size:59.822762px;}
.fs7_c00050{font-size:60.872284px;}
.fsd_c00050{font-size:61.921806px;}
.fsa_c00050{font-size:62.971328px;}
.fs2_c00050{font-size:64.020851px;}
.fs8_c00050{font-size:65.070373px;}
.fs4_c00050{font-size:66.119895px;}
.fs3_c00050{font-size:67.169417px;}
.fs1_c00050{font-size:68.218939px;}
.fsc_c00050{font-size:69.268461px;}
.fse_c00050{font-size:70.317983px;}
.y0_c00050{bottom:0.000000px;}
.yec_c00050{bottom:29.718004px;}
.yeb_c00050{bottom:32.227722px;}
.yea_c00050{bottom:32.830371px;}
.ye9_c00050{bottom:33.870735px;}
.ye8_c00050{bottom:35.962515px;}
.ye7_c00050{bottom:36.352359px;}
.ye6_c00050{bottom:38.327791px;}
.ye5_c00050{bottom:46.768288px;}
.ye4_c00050{bottom:48.533445px;}
.ye3_c00050{bottom:49.603365px;}
.ye2_c00050{bottom:51.318873px;}
.ye1_c00050{bottom:53.305942px;}
.ye0_c00050{bottom:54.617431px;}
.ydf_c00050{bottom:57.366369px;}
.yde_c00050{bottom:59.113404px;}
.ydd_c00050{bottom:66.033635px;}
.ydc_c00050{bottom:68.900342px;}
.ydb_c00050{bottom:70.258860px;}
.yda_c00050{bottom:70.880823px;}
.yd9_c00050{bottom:74.026570px;}
.yd8_c00050{bottom:75.579169px;}
.yd7_c00050{bottom:81.179838px;}
.yd6_c00050{bottom:82.128001px;}
.yd5_c00050{bottom:85.534272px;}
.yd4_c00050{bottom:86.341239px;}
.yd3_c00050{bottom:89.123053px;}
.yd2_c00050{bottom:89.908398px;}
.yd1_c00050{bottom:92.569797px;}
.yd0_c00050{bottom:97.782655px;}
.ycf_c00050{bottom:98.842077px;}
.yce_c00050{bottom:101.823516px;}
.ycd_c00050{bottom:104.866376px;}
.ycc_c00050{bottom:105.852308px;}
.ycb_c00050{bottom:108.620348px;}
.yca_c00050{bottom:110.086812px;}
.yc9_c00050{bottom:110.921657px;}
.yc8_c00050{bottom:113.863676px;}
.yc7_c00050{bottom:115.678134px;}
.yc6_c00050{bottom:116.985254px;}
.yc5_c00050{bottom:119.522007px;}
.yc4_c00050{bottom:122.941067px;}
.yc3_c00050{bottom:124.411181px;}
.yc2_c00050{bottom:127.136291px;}
.yc1_c00050{bottom:127.922927px;}
.yc0_c00050{bottom:132.849167px;}
.ybf_c00050{bottom:133.945223px;}
.ybe_c00050{bottom:134.471642px;}
.ybd_c00050{bottom:136.762704px;}
.ybc_c00050{bottom:137.465388px;}
.ybb_c00050{bottom:138.230573px;}
.yba_c00050{bottom:140.741217px;}
.yb9_c00050{bottom:141.279084px;}
.yb8_c00050{bottom:143.033567px;}
.yb7_c00050{bottom:147.881394px;}
.yb6_c00050{bottom:150.659118px;}
.yb5_c00050{bottom:151.736391px;}
.yb4_c00050{bottom:154.527422px;}
.yb3_c00050{bottom:158.827046px;}
.yb2_c00050{bottom:161.119346px;}
.yb1_c00050{bottom:165.906761px;}
.yb0_c00050{bottom:168.630129px;}
.yaf_c00050{bottom:169.345247px;}
.yae_c00050{bottom:171.369293px;}
.yad_c00050{bottom:172.333598px;}
.yac_c00050{bottom:173.519078px;}
.yab_c00050{bottom:174.428163px;}
.yaa_c00050{bottom:178.080534px;}
.ya9_c00050{bottom:179.739198px;}
.ya8_c00050{bottom:182.075355px;}
.ya7_c00050{bottom:183.061827px;}
.ya6_c00050{bottom:183.645553px;}
.ya5_c00050{bottom:187.381895px;}
.ya4_c00050{bottom:189.523728px;}
.ya3_c00050{bottom:190.297917px;}
.ya2_c00050{bottom:191.506203px;}
.ya1_c00050{bottom:193.506043px;}
.ya0_c00050{bottom:198.451786px;}
.y9f_c00050{bottom:201.770725px;}
.y9e_c00050{bottom:202.716265px;}
.y9d_c00050{bottom:205.651282px;}
.y9c_c00050{bottom:207.863644px;}
.y9b_c00050{bottom:208.544985px;}
.y9a_c00050{bottom:210.507579px;}
.y99_c00050{bottom:216.054846px;}
.y98_c00050{bottom:216.913027px;}
.y97_c00050{bottom:219.225717px;}
.y96_c00050{bottom:221.844708px;}
.y95_c00050{bottom:222.768576px;}
.y94_c00050{bottom:225.525685px;}
.y93_c00050{bottom:227.513223px;}
.y92_c00050{bottom:233.352724px;}
.y91_c00050{bottom:234.132214px;}
.y90_c00050{bottom:237.366396px;}
.y8f_c00050{bottom:239.952307px;}
.y8e_c00050{bottom:241.325361px;}
.y8d_c00050{bottom:243.162675px;}
.y8c_c00050{bottom:250.061512px;}
.y8b_c00050{bottom:250.984885px;}
.y8a_c00050{bottom:262.054156px;}
.y89_c00050{bottom:268.223512px;}
.y88_c00050{bottom:271.422346px;}
.y87_c00050{bottom:272.369916px;}
.y86_c00050{bottom:274.296668px;}
.y85_c00050{bottom:274.908722px;}
.y84_c00050{bottom:277.601193px;}
.y83_c00050{bottom:279.595724px;}
.y82_c00050{bottom:284.145557px;}
.y81_c00050{bottom:285.414921px;}
.y80_c00050{bottom:288.353390px;}
.y7f_c00050{bottom:291.264714px;}
.y7e_c00050{bottom:294.806525px;}
.y7d_c00050{bottom:295.896362px;}
.y7c_c00050{bottom:297.130190px;}
.y7b_c00050{bottom:302.356922px;}
.y7a_c00050{bottom:303.097203px;}
.y79_c00050{bottom:305.411729px;}
.y78_c00050{bottom:306.032711px;}
.y77_c00050{bottom:306.507708px;}
.y76_c00050{bottom:308.622695px;}
.y75_c00050{bottom:309.290981px;}
.y74_c00050{bottom:312.119775px;}
.y73_c00050{bottom:313.321712px;}
.y72_c00050{bottom:318.317558px;}
.y71_c00050{bottom:319.386393px;}
.y70_c00050{bottom:321.789348px;}
.y6f_c00050{bottom:322.242863px;}
.y6e_c00050{bottom:324.711473px;}
.y6d_c00050{bottom:325.140656px;}
.y6c_c00050{bottom:327.921840px;}
.y6b_c00050{bottom:328.976096px;}
.y6a_c00050{bottom:336.758067px;}
.y69_c00050{bottom:337.690539px;}
.y68_c00050{bottom:339.489414px;}
.y67_c00050{bottom:340.055483px;}
.y66_c00050{bottom:341.369492px;}
.y65_c00050{bottom:342.533408px;}
.y64_c00050{bottom:344.037641px;}
.y63_c00050{bottom:344.541465px;}
.y62_c00050{bottom:345.169494px;}
.y61_c00050{bottom:352.940675px;}
.y60_c00050{bottom:353.507747px;}
.y5f_c00050{bottom:355.077513px;}
.y5e_c00050{bottom:356.868549px;}
.y5d_c00050{bottom:358.907499px;}
.y5c_c00050{bottom:360.660506px;}
.y5b_c00050{bottom:361.636209px;}
.y5a_c00050{bottom:370.637528px;}
.y59_c00050{bottom:372.801794px;}
.y58_c00050{bottom:373.532189px;}
.y57_c00050{bottom:375.898109px;}
.y56_c00050{bottom:376.740729px;}
.y55_c00050{bottom:377.500851px;}
.y54_c00050{bottom:379.177664px;}
.y53_c00050{bottom:385.730582px;}
.y52_c00050{bottom:386.579151px;}
.y51_c00050{bottom:388.932516px;}
.y50_c00050{bottom:389.784006px;}
.y4f_c00050{bottom:391.066718px;}
.y4e_c00050{bottom:391.770045px;}
.y4d_c00050{bottom:394.740144px;}
.y4c_c00050{bottom:395.770662px;}
.y4b_c00050{bottom:396.183902px;}
.y4a_c00050{bottom:403.810655px;}
.y49_c00050{bottom:404.566106px;}
.y48_c00050{bottom:405.833054px;}
.y47_c00050{bottom:406.683716px;}
.y46_c00050{bottom:408.005433px;}
.y45_c00050{bottom:408.575759px;}
.y44_c00050{bottom:411.210545px;}
.y43_c00050{bottom:411.833673px;}
.y42_c00050{bottom:419.486175px;}
.y41_c00050{bottom:420.348947px;}
.y40_c00050{bottom:421.567002px;}
.y3f_c00050{bottom:423.966429px;}
.y3e_c00050{bottom:425.037393px;}
.y3d_c00050{bottom:426.308418px;}
.y3c_c00050{bottom:428.728217px;}
.y3b_c00050{bottom:429.194119px;}
.y3a_c00050{bottom:430.182621px;}
.y39_c00050{bottom:437.763443px;}
.y38_c00050{bottom:438.371456px;}
.y37_c00050{bottom:440.165547px;}
.y36_c00050{bottom:440.720784px;}
.y35_c00050{bottom:442.728923px;}
.y34_c00050{bottom:443.492069px;}
.y33_c00050{bottom:445.023806px;}
.y32_c00050{bottom:453.620997px;}
.y31_c00050{bottom:454.658837px;}
.y30_c00050{bottom:455.217988px;}
.y2f_c00050{bottom:456.221281px;}
.y2e_c00050{bottom:456.780978px;}
.y2d_c00050{bottom:458.059392px;}
.y2c_c00050{bottom:458.535555px;}
.y2b_c00050{bottom:459.320954px;}
.y2a_c00050{bottom:460.687378px;}
.y29_c00050{bottom:470.272752px;}
.y28_c00050{bottom:478.357785px;}
.y27_c00050{bottom:479.307186px;}
.y26_c00050{bottom:487.189597px;}
.y25_c00050{bottom:489.158226px;}
.y24_c00050{bottom:489.567425px;}
.y23_c00050{bottom:491.630121px;}
.y22_c00050{bottom:492.328440px;}
.y21_c00050{bottom:494.549289px;}
.y20_c00050{bottom:495.766737px;}
.y1f_c00050{bottom:503.490416px;}
.y1e_c00050{bottom:505.397754px;}
.y1d_c00050{bottom:505.976162px;}
.y1c_c00050{bottom:506.898292px;}
.y1b_c00050{bottom:508.397792px;}
.y1a_c00050{bottom:510.850026px;}
.y19_c00050{bottom:513.039546px;}
.y18_c00050{bottom:523.574519px;}
.y17_c00050{bottom:524.511212px;}
.y16_c00050{bottom:524.893793px;}
.y15_c00050{bottom:526.312827px;}
.y14_c00050{bottom:528.071715px;}
.y13_c00050{bottom:528.439113px;}
.y12_c00050{bottom:529.798342px;}
.y11_c00050{bottom:530.577018px;}
.y10_c00050{bottom:538.778520px;}
.yf_c00050{bottom:539.754003px;}
.ye_c00050{bottom:540.680094px;}
.yd_c00050{bottom:541.473381px;}
.yc_c00050{bottom:542.969946px;}
.yb_c00050{bottom:543.612546px;}
.ya_c00050{bottom:545.671057px;}
.y9_c00050{bottom:547.270466px;}
.y8_c00050{bottom:547.852968px;}
.y7_c00050{bottom:556.774902px;}
.y6_c00050{bottom:557.346875px;}
.y5_c00050{bottom:558.319896px;}
.y4_c00050{bottom:560.589521px;}
.y3_c00050{bottom:562.269947px;}
.y2_c00050{bottom:564.238462px;}
.y1_c00050{bottom:564.853500px;}
.hd_c00050{height:37.782797px;}
.hb_c00050{height:54.575151px;}
.h2_c00050{height:57.723718px;}
.h7_c00050{height:58.773240px;}
.h8_c00050{height:59.822762px;}
.h9_c00050{height:60.872284px;}
.hf_c00050{height:61.921806px;}
.hc_c00050{height:62.971328px;}
.h4_c00050{height:64.020851px;}
.ha_c00050{height:65.070373px;}
.h6_c00050{height:66.119895px;}
.h5_c00050{height:67.169417px;}
.h3_c00050{height:68.218939px;}
.he_c00050{height:69.268461px;}
.h10_c00050{height:70.317983px;}
.h0_c00050{height:618.570000px;}
.h1_c00050{height:618.750000px;}
.w0_c00050{width:361.200000px;}
.w1_c00050{width:361.500000px;}
.x0_c00050{left:0.000000px;}
.x6a_c00050{left:18.493511px;}
.x56_c00050{left:20.526350px;}
.x4a_c00050{left:21.830504px;}
.x3d_c00050{left:22.888760px;}
.x2f_c00050{left:24.285582px;}
.x20_c00050{left:25.704297px;}
.x1_c00050{left:26.851500px;}
.x2a_c00050{left:29.906294px;}
.x16_c00050{left:32.234067px;}
.x38_c00050{left:34.786899px;}
.x71_c00050{left:39.770694px;}
.x8_c00050{left:42.472139px;}
.x34_c00050{left:43.582172px;}
.x2_c00050{left:45.470363px;}
.x52_c00050{left:47.224166px;}
.x22_c00050{left:48.414830px;}
.x30_c00050{left:50.259272px;}
.xf_c00050{left:52.010393px;}
.x77_c00050{left:54.293643px;}
.x45_c00050{left:57.701219px;}
.x75_c00050{left:60.933029px;}
.x31_c00050{left:62.501486px;}
.x57_c00050{left:64.829961px;}
.x1b_c00050{left:66.871953px;}
.x3e_c00050{left:68.155452px;}
.x53_c00050{left:70.407257px;}
.x5e_c00050{left:75.314849px;}
.x63_c00050{left:77.567886px;}
.x2b_c00050{left:80.908295px;}
.x60_c00050{left:82.655132px;}
.x9_c00050{left:86.848808px;}
.x3f_c00050{left:88.668693px;}
.x73_c00050{left:90.681786px;}
.x10_c00050{left:97.290576px;}
.x6d_c00050{left:99.047669px;}
.x43_c00050{left:102.462903px;}
.x3_c00050{left:105.062711px;}
.x2c_c00050{left:106.326878px;}
.x11_c00050{left:109.548045px;}
.x40_c00050{left:111.406910px;}
.x4e_c00050{left:119.524604px;}
.x5c_c00050{left:121.460018px;}
.x4b_c00050{left:122.680904px;}
.x23_c00050{left:125.182170px;}
.x6e_c00050{left:129.019811px;}
.x4c_c00050{left:133.947743px;}
.x4f_c00050{left:135.804497px;}
.x78_c00050{left:137.113988px;}
.x58_c00050{left:138.209423px;}
.x1c_c00050{left:140.824260px;}
.x24_c00050{left:142.185474px;}
.xa_c00050{left:143.988462px;}
.x39_c00050{left:145.814760px;}
.x7a_c00050{left:147.088440px;}
.x4_c00050{left:155.933789px;}
.x32_c00050{left:159.564321px;}
.xb_c00050{left:161.806842px;}
.x1d_c00050{left:164.053287px;}
.x3a_c00050{left:165.335288px;}
.x12_c00050{left:168.107724px;}
.x64_c00050{left:171.223097px;}
.x2d_c00050{left:173.204073px;}
.x41_c00050{left:175.309520px;}
.x79_c00050{left:177.649506px;}
.x6b_c00050{left:179.174358px;}
.x46_c00050{left:181.975883px;}
.x5d_c00050{left:182.985147px;}
.x35_c00050{left:184.935884px;}
.x25_c00050{left:187.789356px;}
.x2e_c00050{left:191.692899px;}
.x42_c00050{left:195.013670px;}
.x47_c00050{left:199.657278px;}
.x3b_c00050{left:200.942127px;}
.x59_c00050{left:202.062236px;}
.xc_c00050{left:203.342652px;}
.x61_c00050{left:205.101644px;}
.x26_c00050{left:207.730166px;}
.x36_c00050{left:211.505180px;}
.x17_c00050{left:212.696978px;}
.x50_c00050{left:214.026485px;}
.x13_c00050{left:215.334608px;}
.x5f_c00050{left:218.393649px;}
.x66_c00050{left:223.237031px;}
.x5_c00050{left:224.641512px;}
.x14_c00050{left:228.097121px;}
.x1e_c00050{left:232.718342px;}
.x76_c00050{left:234.554162px;}
.x67_c00050{left:237.256173px;}
.x18_c00050{left:239.794961px;}
.x68_c00050{left:240.825411px;}
.x27_c00050{left:243.506750px;}
.x1f_c00050{left:246.332052px;}
.xd_c00050{left:251.078661px;}
.x6_c00050{left:254.097527px;}
.x48_c00050{left:255.794418px;}
.x19_c00050{left:256.805388px;}
.x15_c00050{left:259.268990px;}
.x44_c00050{left:261.114341px;}
.x28_c00050{left:263.431076px;}
.x72_c00050{left:264.557529px;}
.x54_c00050{left:270.066537px;}
.x7_c00050{left:271.412694px;}
.x5a_c00050{left:273.104978px;}
.x37_c00050{left:274.636067px;}
.x74_c00050{left:275.806976px;}
.x6f_c00050{left:277.135758px;}
.xe_c00050{left:278.156880px;}
.x6c_c00050{left:279.437126px;}
.x21_c00050{left:283.579119px;}
.x49_c00050{left:284.885739px;}
.x51_c00050{left:288.474791px;}
.x3c_c00050{left:289.878282px;}
.x65_c00050{left:291.766680px;}
.x5b_c00050{left:293.718443px;}
.x55_c00050{left:297.049541px;}
.x69_c00050{left:298.665873px;}
.x29_c00050{left:300.435129px;}
.x4d_c00050{left:302.032193px;}
.x33_c00050{left:305.498610px;}
.x62_c00050{left:306.542426px;}
.x1a_c00050{left:312.865439px;}
.x70_c00050{left:314.126159px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.fsb_c00050{font-size:33.584709pt;}
.fs9_c00050{font-size:48.511246pt;}
.fs0_c00050{font-size:51.309971pt;}
.fs5_c00050{font-size:52.242880pt;}
.fs6_c00050{font-size:53.175788pt;}
.fs7_c00050{font-size:54.108697pt;}
.fsd_c00050{font-size:55.041606pt;}
.fsa_c00050{font-size:55.974514pt;}
.fs2_c00050{font-size:56.907423pt;}
.fs8_c00050{font-size:57.840331pt;}
.fs4_c00050{font-size:58.773240pt;}
.fs3_c00050{font-size:59.706148pt;}
.fs1_c00050{font-size:60.639057pt;}
.fsc_c00050{font-size:61.571966pt;}
.fse_c00050{font-size:62.504874pt;}
.y0_c00050{bottom:0.000000pt;}
.yec_c00050{bottom:26.416004pt;}
.yeb_c00050{bottom:28.646864pt;}
.yea_c00050{bottom:29.182552pt;}
.ye9_c00050{bottom:30.107320pt;}
.ye8_c00050{bottom:31.966680pt;}
.ye7_c00050{bottom:32.313208pt;}
.ye6_c00050{bottom:34.069148pt;}
.ye5_c00050{bottom:41.571812pt;}
.ye4_c00050{bottom:43.140840pt;}
.ye3_c00050{bottom:44.091880pt;}
.ye2_c00050{bottom:45.616776pt;}
.ye1_c00050{bottom:47.383060pt;}
.ye0_c00050{bottom:48.548828pt;}
.ydf_c00050{bottom:50.992328pt;}
.yde_c00050{bottom:52.545248pt;}
.ydd_c00050{bottom:58.696564pt;}
.ydc_c00050{bottom:61.244748pt;}
.ydb_c00050{bottom:62.452320pt;}
.yda_c00050{bottom:63.005176pt;}
.yd9_c00050{bottom:65.801396pt;}
.yd8_c00050{bottom:67.181484pt;}
.yd7_c00050{bottom:72.159856pt;}
.yd6_c00050{bottom:73.002668pt;}
.yd5_c00050{bottom:76.030464pt;}
.yd4_c00050{bottom:76.747768pt;}
.yd3_c00050{bottom:79.220492pt;}
.yd2_c00050{bottom:79.918576pt;}
.yd1_c00050{bottom:82.284264pt;}
.yd0_c00050{bottom:86.917916pt;}
.ycf_c00050{bottom:87.859624pt;}
.yce_c00050{bottom:90.509792pt;}
.ycd_c00050{bottom:93.214556pt;}
.ycc_c00050{bottom:94.090940pt;}
.ycb_c00050{bottom:96.551420pt;}
.yca_c00050{bottom:97.854944pt;}
.yc9_c00050{bottom:98.597028pt;}
.yc8_c00050{bottom:101.212156pt;}
.yc7_c00050{bottom:102.825008pt;}
.yc6_c00050{bottom:103.986892pt;}
.yc5_c00050{bottom:106.241784pt;}
.yc4_c00050{bottom:109.280948pt;}
.yc3_c00050{bottom:110.587716pt;}
.yc2_c00050{bottom:113.010036pt;}
.yc1_c00050{bottom:113.709268pt;}
.yc0_c00050{bottom:118.088148pt;}
.ybf_c00050{bottom:119.062420pt;}
.ybe_c00050{bottom:119.530348pt;}
.ybd_c00050{bottom:121.566848pt;}
.ybc_c00050{bottom:122.191456pt;}
.ybb_c00050{bottom:122.871620pt;}
.yba_c00050{bottom:125.103304pt;}
.yb9_c00050{bottom:125.581408pt;}
.yb8_c00050{bottom:127.140948pt;}
.yb7_c00050{bottom:131.450128pt;}
.yb6_c00050{bottom:133.919216pt;}
.yb5_c00050{bottom:134.876792pt;}
.yb4_c00050{bottom:137.357708pt;}
.yb3_c00050{bottom:141.179596pt;}
.yb2_c00050{bottom:143.217196pt;}
.yb1_c00050{bottom:147.472676pt;}
.yb0_c00050{bottom:149.893448pt;}
.yaf_c00050{bottom:150.529108pt;}
.yae_c00050{bottom:152.328260pt;}
.yad_c00050{bottom:153.185420pt;}
.yac_c00050{bottom:154.239180pt;}
.yab_c00050{bottom:155.047256pt;}
.yaa_c00050{bottom:158.293808pt;}
.ya9_c00050{bottom:159.768176pt;}
.ya8_c00050{bottom:161.844760pt;}
.ya7_c00050{bottom:162.721624pt;}
.ya6_c00050{bottom:163.240492pt;}
.ya5_c00050{bottom:166.561684pt;}
.ya4_c00050{bottom:168.465536pt;}
.ya3_c00050{bottom:169.153704pt;}
.ya2_c00050{bottom:170.227736pt;}
.ya1_c00050{bottom:172.005372pt;}
.ya0_c00050{bottom:176.401588pt;}
.y9f_c00050{bottom:179.351756pt;}
.y9e_c00050{bottom:180.192236pt;}
.y9d_c00050{bottom:182.801140pt;}
.y9c_c00050{bottom:184.767684pt;}
.y9b_c00050{bottom:185.373320pt;}
.y9a_c00050{bottom:187.117848pt;}
.y99_c00050{bottom:192.048752pt;}
.y98_c00050{bottom:192.811580pt;}
.y97_c00050{bottom:194.867304pt;}
.y96_c00050{bottom:197.195296pt;}
.y95_c00050{bottom:198.016512pt;}
.y94_c00050{bottom:200.467276pt;}
.y93_c00050{bottom:202.233976pt;}
.y92_c00050{bottom:207.424644pt;}
.y91_c00050{bottom:208.117524pt;}
.y90_c00050{bottom:210.992352pt;}
.y8f_c00050{bottom:213.290940pt;}
.y8e_c00050{bottom:214.511432pt;}
.y8d_c00050{bottom:216.144600pt;}
.y8c_c00050{bottom:222.276900pt;}
.y8b_c00050{bottom:223.097676pt;}
.y8a_c00050{bottom:232.937028pt;}
.y89_c00050{bottom:238.420900pt;}
.y88_c00050{bottom:241.264308pt;}
.y87_c00050{bottom:242.106592pt;}
.y86_c00050{bottom:243.819260pt;}
.y85_c00050{bottom:244.363308pt;}
.y84_c00050{bottom:246.756616pt;}
.y83_c00050{bottom:248.529532pt;}
.y82_c00050{bottom:252.573828pt;}
.y81_c00050{bottom:253.702152pt;}
.y80_c00050{bottom:256.314124pt;}
.y7f_c00050{bottom:258.901968pt;}
.y7e_c00050{bottom:262.050244pt;}
.y7d_c00050{bottom:263.018988pt;}
.y7c_c00050{bottom:264.115724pt;}
.y7b_c00050{bottom:268.761708pt;}
.y7a_c00050{bottom:269.419736pt;}
.y79_c00050{bottom:271.477092pt;}
.y78_c00050{bottom:272.029076pt;}
.y77_c00050{bottom:272.451296pt;}
.y76_c00050{bottom:274.331284pt;}
.y75_c00050{bottom:274.925316pt;}
.y74_c00050{bottom:277.439800pt;}
.y73_c00050{bottom:278.508188pt;}
.y72_c00050{bottom:282.948940pt;}
.y71_c00050{bottom:283.899016pt;}
.y70_c00050{bottom:286.034976pt;}
.y6f_c00050{bottom:286.438100pt;}
.y6e_c00050{bottom:288.632420pt;}
.y6d_c00050{bottom:289.013916pt;}
.y6c_c00050{bottom:291.486080pt;}
.y6b_c00050{bottom:292.423196pt;}
.y6a_c00050{bottom:299.340504pt;}
.y69_c00050{bottom:300.169368pt;}
.y68_c00050{bottom:301.768368pt;}
.y67_c00050{bottom:302.271540pt;}
.y66_c00050{bottom:303.439548pt;}
.y65_c00050{bottom:304.474140pt;}
.y64_c00050{bottom:305.811236pt;}
.y63_c00050{bottom:306.259080pt;}
.y62_c00050{bottom:306.817328pt;}
.y61_c00050{bottom:313.725044pt;}
.y60_c00050{bottom:314.229108pt;}
.y5f_c00050{bottom:315.624456pt;}
.y5e_c00050{bottom:317.216488pt;}
.y5d_c00050{bottom:319.028888pt;}
.y5c_c00050{bottom:320.587116pt;}
.y5b_c00050{bottom:321.454408pt;}
.y5a_c00050{bottom:329.455580pt;}
.y59_c00050{bottom:331.379372pt;}
.y58_c00050{bottom:332.028612pt;}
.y57_c00050{bottom:334.131652pt;}
.y56_c00050{bottom:334.880648pt;}
.y55_c00050{bottom:335.556312pt;}
.y54_c00050{bottom:337.046812pt;}
.y53_c00050{bottom:342.871628pt;}
.y52_c00050{bottom:343.625912pt;}
.y51_c00050{bottom:345.717792pt;}
.y50_c00050{bottom:346.474672pt;}
.y4f_c00050{bottom:347.614860pt;}
.y4e_c00050{bottom:348.240040pt;}
.y4d_c00050{bottom:350.880128pt;}
.y4c_c00050{bottom:351.796144pt;}
.y4b_c00050{bottom:352.163468pt;}
.y4a_c00050{bottom:358.942804pt;}
.y49_c00050{bottom:359.614316pt;}
.y48_c00050{bottom:360.740492pt;}
.y47_c00050{bottom:361.496636pt;}
.y46_c00050{bottom:362.671496pt;}
.y45_c00050{bottom:363.178452pt;}
.y44_c00050{bottom:365.520484pt;}
.y43_c00050{bottom:366.074376pt;}
.y42_c00050{bottom:372.876600pt;}
.y41_c00050{bottom:373.643508pt;}
.y40_c00050{bottom:374.726224pt;}
.y3f_c00050{bottom:376.859048pt;}
.y3e_c00050{bottom:377.811016pt;}
.y3d_c00050{bottom:378.940816pt;}
.y3c_c00050{bottom:381.091748pt;}
.y3b_c00050{bottom:381.505884pt;}
.y3a_c00050{bottom:382.384552pt;}
.y39_c00050{bottom:389.123060pt;}
.y38_c00050{bottom:389.663516pt;}
.y37_c00050{bottom:391.258264pt;}
.y36_c00050{bottom:391.751808pt;}
.y35_c00050{bottom:393.536820pt;}
.y34_c00050{bottom:394.215172pt;}
.y33_c00050{bottom:395.576716pt;}
.y32_c00050{bottom:403.218664pt;}
.y31_c00050{bottom:404.141188pt;}
.y30_c00050{bottom:404.638212pt;}
.y2f_c00050{bottom:405.530028pt;}
.y2e_c00050{bottom:406.027536pt;}
.y2d_c00050{bottom:407.163904pt;}
.y2c_c00050{bottom:407.587160pt;}
.y2b_c00050{bottom:408.285292pt;}
.y2a_c00050{bottom:409.499892pt;}
.y29_c00050{bottom:418.020224pt;}
.y28_c00050{bottom:425.206920pt;}
.y27_c00050{bottom:426.050832pt;}
.y26_c00050{bottom:433.057420pt;}
.y25_c00050{bottom:434.807312pt;}
.y24_c00050{bottom:435.171044pt;}
.y23_c00050{bottom:437.004552pt;}
.y22_c00050{bottom:437.625280pt;}
.y21_c00050{bottom:439.599368pt;}
.y20_c00050{bottom:440.681544pt;}
.y1f_c00050{bottom:447.547036pt;}
.y1e_c00050{bottom:449.242448pt;}
.y1d_c00050{bottom:449.756588pt;}
.y1c_c00050{bottom:450.576260pt;}
.y1b_c00050{bottom:451.909148pt;}
.y1a_c00050{bottom:454.088912pt;}
.y19_c00050{bottom:456.035152pt;}
.y18_c00050{bottom:465.399572pt;}
.y17_c00050{bottom:466.232188pt;}
.y16_c00050{bottom:466.572260pt;}
.y15_c00050{bottom:467.833624pt;}
.y14_c00050{bottom:469.397080pt;}
.y13_c00050{bottom:469.723656pt;}
.y12_c00050{bottom:470.931860pt;}
.y11_c00050{bottom:471.624016pt;}
.y10_c00050{bottom:478.914240pt;}
.yf_c00050{bottom:479.781336pt;}
.ye_c00050{bottom:480.604528pt;}
.yd_c00050{bottom:481.309672pt;}
.yc_c00050{bottom:482.639952pt;}
.yb_c00050{bottom:483.211152pt;}
.ya_c00050{bottom:485.040940pt;}
.y9_c00050{bottom:486.462636pt;}
.y8_c00050{bottom:486.980416pt;}
.y7_c00050{bottom:494.911024pt;}
.y6_c00050{bottom:495.419444pt;}
.y5_c00050{bottom:496.284352pt;}
.y4_c00050{bottom:498.301796pt;}
.y3_c00050{bottom:499.795508pt;}
.y2_c00050{bottom:501.545300pt;}
.y1_c00050{bottom:502.092000pt;}
.hd_c00050{height:33.584709pt;}
.hb_c00050{height:48.511246pt;}
.h2_c00050{height:51.309971pt;}
.h7_c00050{height:52.242880pt;}
.h8_c00050{height:53.175788pt;}
.h9_c00050{height:54.108697pt;}
.hf_c00050{height:55.041606pt;}
.hc_c00050{height:55.974514pt;}
.h4_c00050{height:56.907423pt;}
.ha_c00050{height:57.840331pt;}
.h6_c00050{height:58.773240pt;}
.h5_c00050{height:59.706148pt;}
.h3_c00050{height:60.639057pt;}
.he_c00050{height:61.571966pt;}
.h10_c00050{height:62.504874pt;}
.h0_c00050{height:549.840000pt;}
.h1_c00050{height:550.000000pt;}
.w0_c00050{width:321.066667pt;}
.w1_c00050{width:321.333333pt;}
.x0_c00050{left:0.000000pt;}
.x6a_c00050{left:16.438676pt;}
.x56_c00050{left:18.245644pt;}
.x4a_c00050{left:19.404892pt;}
.x3d_c00050{left:20.345564pt;}
.x2f_c00050{left:21.587184pt;}
.x20_c00050{left:22.848264pt;}
.x1_c00050{left:23.868000pt;}
.x2a_c00050{left:26.583372pt;}
.x16_c00050{left:28.652504pt;}
.x38_c00050{left:30.921688pt;}
.x71_c00050{left:35.351728pt;}
.x8_c00050{left:37.753012pt;}
.x34_c00050{left:38.739708pt;}
.x2_c00050{left:40.418100pt;}
.x52_c00050{left:41.977036pt;}
.x22_c00050{left:43.035404pt;}
.x30_c00050{left:44.674908pt;}
.xf_c00050{left:46.231460pt;}
.x77_c00050{left:48.261016pt;}
.x45_c00050{left:51.289972pt;}
.x75_c00050{left:54.162692pt;}
.x31_c00050{left:55.556876pt;}
.x57_c00050{left:57.626632pt;}
.x1b_c00050{left:59.441736pt;}
.x3e_c00050{left:60.582624pt;}
.x53_c00050{left:62.584228pt;}
.x5e_c00050{left:66.946532pt;}
.x63_c00050{left:68.949232pt;}
.x2b_c00050{left:71.918484pt;}
.x60_c00050{left:73.471228pt;}
.x9_c00050{left:77.198940pt;}
.x3f_c00050{left:78.816616pt;}
.x73_c00050{left:80.606032pt;}
.x10_c00050{left:86.480512pt;}
.x6d_c00050{left:88.042372pt;}
.x43_c00050{left:91.078136pt;}
.x3_c00050{left:93.389076pt;}
.x2c_c00050{left:94.512780pt;}
.x11_c00050{left:97.376040pt;}
.x40_c00050{left:99.028364pt;}
.x4e_c00050{left:106.244092pt;}
.x5c_c00050{left:107.964460pt;}
.x4b_c00050{left:109.049692pt;}
.x23_c00050{left:111.273040pt;}
.x6e_c00050{left:114.684276pt;}
.x4c_c00050{left:119.064660pt;}
.x4f_c00050{left:120.715108pt;}
.x78_c00050{left:121.879100pt;}
.x58_c00050{left:122.852820pt;}
.x1c_c00050{left:125.177120pt;}
.x24_c00050{left:126.387088pt;}
.xa_c00050{left:127.989744pt;}
.x39_c00050{left:129.613120pt;}
.x7a_c00050{left:130.745280pt;}
.x4_c00050{left:138.607812pt;}
.x32_c00050{left:141.834952pt;}
.xb_c00050{left:143.828304pt;}
.x1d_c00050{left:145.825144pt;}
.x3a_c00050{left:146.964700pt;}
.x12_c00050{left:149.429088pt;}
.x64_c00050{left:152.198308pt;}
.x2d_c00050{left:153.959176pt;}
.x41_c00050{left:155.830684pt;}
.x79_c00050{left:157.910672pt;}
.x6b_c00050{left:159.266096pt;}
.x46_c00050{left:161.756340pt;}
.x5d_c00050{left:162.653464pt;}
.x35_c00050{left:164.387452pt;}
.x25_c00050{left:166.923872pt;}
.x2e_c00050{left:170.393688pt;}
.x42_c00050{left:173.345484pt;}
.x47_c00050{left:177.473136pt;}
.x3b_c00050{left:178.615224pt;}
.x59_c00050{left:179.610876pt;}
.xc_c00050{left:180.749024pt;}
.x61_c00050{left:182.312572pt;}
.x26_c00050{left:184.649036pt;}
.x36_c00050{left:188.004604pt;}
.x17_c00050{left:189.063980pt;}
.x50_c00050{left:190.245764pt;}
.x13_c00050{left:191.408540pt;}
.x5f_c00050{left:194.127688pt;}
.x66_c00050{left:198.432916pt;}
.x5_c00050{left:199.681344pt;}
.x14_c00050{left:202.752996pt;}
.x1e_c00050{left:206.860748pt;}
.x76_c00050{left:208.492588pt;}
.x67_c00050{left:210.894376pt;}
.x18_c00050{left:213.151076pt;}
.x68_c00050{left:214.067032pt;}
.x27_c00050{left:216.450444pt;}
.x1f_c00050{left:218.961824pt;}
.xd_c00050{left:223.181032pt;}
.x6_c00050{left:225.864468pt;}
.x48_c00050{left:227.372816pt;}
.x19_c00050{left:228.271456pt;}
.x15_c00050{left:230.461324pt;}
.x44_c00050{left:232.101636pt;}
.x28_c00050{left:234.160956pt;}
.x72_c00050{left:235.162248pt;}
.x54_c00050{left:240.059144pt;}
.x7_c00050{left:241.255728pt;}
.x5a_c00050{left:242.759980pt;}
.x37_c00050{left:244.120948pt;}
.x74_c00050{left:245.161756pt;}
.x6f_c00050{left:246.342896pt;}
.xe_c00050{left:247.250560pt;}
.x6c_c00050{left:248.388556pt;}
.x21_c00050{left:252.070328pt;}
.x49_c00050{left:253.231768pt;}
.x51_c00050{left:256.422036pt;}
.x3c_c00050{left:257.669584pt;}
.x65_c00050{left:259.348160pt;}
.x5b_c00050{left:261.083060pt;}
.x55_c00050{left:264.044036pt;}
.x69_c00050{left:265.480776pt;}
.x29_c00050{left:267.053448pt;}
.x4d_c00050{left:268.473060pt;}
.x33_c00050{left:271.554320pt;}
.x62_c00050{left:272.482156pt;}
.x1a_c00050{left:278.102612pt;}
.x70_c00050{left:279.223252pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00051 {
    display:none;
  }
  .loading-indicator_c00051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00051 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00051 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00051" -> "#page-container .classname_c00051")
 */
.pf_c00051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00051 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00051 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00051 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00051 {overflow:visible;}
  }
}
.c_c00051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00051 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00051:after { /* webkit #35443 */
  content: '';
}
.t_c00051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00051 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00051 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00051 { /* info for Javascript */
  display:none;
}
.l_c00051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00051:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00051 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00051.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf0_c00051{transform:matrix(0.129304,0.004271,-0.008254,0.249864,0,0);-ms-transform:matrix(0.129304,0.004271,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.129304,0.004271,-0.008254,0.249864,0,0);}
.mca_c00051{transform:matrix(0.144981,0.004789,-0.008254,0.249864,0,0);-ms-transform:matrix(0.144981,0.004789,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.144981,0.004789,-0.008254,0.249864,0,0);}
.m7c_c00051{transform:matrix(0.148033,0.002221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148033,0.002221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148033,0.002221,-0.003750,0.249972,0,0);}
.mc7_c00051{transform:matrix(0.149603,0.004942,-0.008254,0.249864,0,0);-ms-transform:matrix(0.149603,0.004942,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.149603,0.004942,-0.008254,0.249864,0,0);}
.mcb_c00051{transform:matrix(0.149803,0.004948,-0.008254,0.249864,0,0);-ms-transform:matrix(0.149803,0.004948,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.149803,0.004948,-0.008254,0.249864,0,0);}
.m1f_c00051{transform:matrix(0.149858,0.002248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149858,0.002248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149858,0.002248,-0.003750,0.249972,0,0);}
.mef_c00051{transform:matrix(0.151702,0.005011,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151702,0.005011,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151702,0.005011,-0.008254,0.249864,0,0);}
.mb2_c00051{transform:matrix(0.152897,0.005051,-0.008254,0.249864,0,0);-ms-transform:matrix(0.152897,0.005051,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.152897,0.005051,-0.008254,0.249864,0,0);}
.md3_c00051{transform:matrix(0.153042,0.005055,-0.008254,0.249864,0,0);-ms-transform:matrix(0.153042,0.005055,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.153042,0.005055,-0.008254,0.249864,0,0);}
.m37_c00051{transform:matrix(0.153633,0.002304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153633,0.002304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153633,0.002304,-0.003750,0.249972,0,0);}
.m34_c00051{transform:matrix(0.155318,0.002330,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155318,0.002330,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155318,0.002330,-0.003750,0.249972,0,0);}
.mc4_c00051{transform:matrix(0.155730,0.005144,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155730,0.005144,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155730,0.005144,-0.008254,0.249864,0,0);}
.m28_c00051{transform:matrix(0.156792,0.002352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156792,0.002352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156792,0.002352,-0.003750,0.249972,0,0);}
.mbb_c00051{transform:matrix(0.156969,0.005185,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156969,0.005185,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156969,0.005185,-0.008254,0.249864,0,0);}
.mea_c00051{transform:matrix(0.156989,0.005186,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156989,0.005186,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156989,0.005186,-0.008254,0.249864,0,0);}
.ma3_c00051{transform:matrix(0.157062,0.002356,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157062,0.002356,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157062,0.002356,-0.003750,0.249972,0,0);}
.mcd_c00051{transform:matrix(0.157414,0.005200,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157414,0.005200,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157414,0.005200,-0.008254,0.249864,0,0);}
.m79_c00051{transform:matrix(0.157627,0.002364,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157627,0.002364,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157627,0.002364,-0.003750,0.249972,0,0);}
.mec_c00051{transform:matrix(0.158054,0.005221,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158054,0.005221,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158054,0.005221,-0.008254,0.249864,0,0);}
.m27_c00051{transform:matrix(0.158297,0.002374,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158297,0.002374,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158297,0.002374,-0.003750,0.249972,0,0);}
.meb_c00051{transform:matrix(0.159403,0.005266,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159403,0.005266,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159403,0.005266,-0.008254,0.249864,0,0);}
.mbd_c00051{transform:matrix(0.159478,0.005268,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159478,0.005268,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159478,0.005268,-0.008254,0.249864,0,0);}
.mc3_c00051{transform:matrix(0.159608,0.005272,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159608,0.005272,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159608,0.005272,-0.008254,0.249864,0,0);}
.m5c_c00051{transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);}
.mb1_c00051{transform:matrix(0.160707,0.005309,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160707,0.005309,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160707,0.005309,-0.008254,0.249864,0,0);}
.mb3_c00051{transform:matrix(0.161427,0.005332,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161427,0.005332,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161427,0.005332,-0.008254,0.249864,0,0);}
.m24_c00051{transform:matrix(0.162017,0.002430,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162017,0.002430,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162017,0.002430,-0.003750,0.249972,0,0);}
.mba_c00051{transform:matrix(0.163171,0.005390,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163171,0.005390,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163171,0.005390,-0.008254,0.249864,0,0);}
.maa_c00051{transform:matrix(0.163685,0.003601,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163685,0.003601,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163685,0.003601,-0.005499,0.249940,0,0);}
.m2e_c00051{transform:matrix(0.163967,0.002459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163967,0.002459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163967,0.002459,-0.003750,0.249972,0,0);}
.m58_c00051{transform:matrix(0.164432,0.002466,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164432,0.002466,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164432,0.002466,-0.003750,0.249972,0,0);}
.m6d_c00051{transform:matrix(0.164556,0.002468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164556,0.002468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164556,0.002468,-0.003750,0.249972,0,0);}
.mc0_c00051{transform:matrix(0.165145,0.005455,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165145,0.005455,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165145,0.005455,-0.008254,0.249864,0,0);}
.m67_c00051{transform:matrix(0.165221,0.002478,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165221,0.002478,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165221,0.002478,-0.003750,0.249972,0,0);}
.m7a_c00051{transform:matrix(0.165501,0.002483,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165501,0.002483,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165501,0.002483,-0.003750,0.249972,0,0);}
.md2_c00051{transform:matrix(0.166739,0.005508,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166739,0.005508,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166739,0.005508,-0.008254,0.249864,0,0);}
.m21_c00051{transform:matrix(0.167001,0.002505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167001,0.002505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167001,0.002505,-0.003750,0.249972,0,0);}
.m23_c00051{transform:matrix(0.167901,0.002519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167901,0.002519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167901,0.002519,-0.003750,0.249972,0,0);}
.m62_c00051{transform:matrix(0.168146,0.002522,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168146,0.002522,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168146,0.002522,-0.003750,0.249972,0,0);}
.mcf_c00051{transform:matrix(0.168443,0.005564,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168443,0.005564,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168443,0.005564,-0.008254,0.249864,0,0);}
.mde_c00051{transform:matrix(0.168458,0.005565,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168458,0.005565,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168458,0.005565,-0.008254,0.249864,0,0);}
.mad_c00051{transform:matrix(0.169164,0.003722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169164,0.003722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169164,0.003722,-0.005499,0.249940,0,0);}
.m6c_c00051{transform:matrix(0.169321,0.002540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169321,0.002540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169321,0.002540,-0.003750,0.249972,0,0);}
.m4a_c00051{transform:matrix(0.169696,0.002545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169696,0.002545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169696,0.002545,-0.003750,0.249972,0,0);}
.m30_c00051{transform:matrix(0.171296,0.002569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171296,0.002569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171296,0.002569,-0.003750,0.249972,0,0);}
.mb6_c00051{transform:matrix(0.171302,0.005659,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171302,0.005659,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171302,0.005659,-0.008254,0.249864,0,0);}
.m78_c00051{transform:matrix(0.172331,0.002585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172331,0.002585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172331,0.002585,-0.003750,0.249972,0,0);}
.m13_c00051{transform:matrix(0.172706,0.002591,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172706,0.002591,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172706,0.002591,-0.003750,0.249972,0,0);}
.m2_c00051{transform:matrix(0.172951,0.002594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172951,0.002594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172951,0.002594,-0.003750,0.249972,0,0);}
.m56_c00051{transform:matrix(0.173186,0.002598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173186,0.002598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173186,0.002598,-0.003750,0.249972,0,0);}
.mc9_c00051{transform:matrix(0.173325,0.005725,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173325,0.005725,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173325,0.005725,-0.008254,0.249864,0,0);}
.m20_c00051{transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);}
.m65_c00051{transform:matrix(0.174615,0.002619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174615,0.002619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174615,0.002619,-0.003750,0.249972,0,0);}
.mc6_c00051{transform:matrix(0.174940,0.005779,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174940,0.005779,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174940,0.005779,-0.008254,0.249864,0,0);}
.m1b_c00051{transform:matrix(0.175235,0.002629,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175235,0.002629,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175235,0.002629,-0.003750,0.249972,0,0);}
.m29_c00051{transform:matrix(0.175320,0.002630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175320,0.002630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175320,0.002630,-0.003750,0.249972,0,0);}
.m61_c00051{transform:matrix(0.175405,0.002631,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175405,0.002631,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175405,0.002631,-0.003750,0.249972,0,0);}
.m77_c00051{transform:matrix(0.175615,0.002634,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175615,0.002634,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175615,0.002634,-0.003750,0.249972,0,0);}
.m6b_c00051{transform:matrix(0.175625,0.002634,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175625,0.002634,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175625,0.002634,-0.003750,0.249972,0,0);}
.m7e_c00051{transform:matrix(0.175635,0.002635,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175635,0.002635,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175635,0.002635,-0.003750,0.249972,0,0);}
.maf_c00051{transform:matrix(0.175664,0.005803,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175664,0.005803,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175664,0.005803,-0.008254,0.249864,0,0);}
.m54_c00051{transform:matrix(0.175665,0.002635,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175665,0.002635,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175665,0.002635,-0.003750,0.249972,0,0);}
.m6_c00051{transform:matrix(0.176035,0.002641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176035,0.002641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176035,0.002641,-0.003750,0.249972,0,0);}
.m92_c00051{transform:matrix(0.176205,0.002643,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176205,0.002643,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176205,0.002643,-0.003750,0.249972,0,0);}
.m3_c00051{transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);}
.m25_c00051{transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);}
.med_c00051{transform:matrix(0.177218,0.005854,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177218,0.005854,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177218,0.005854,-0.008254,0.249864,0,0);}
.m22_c00051{transform:matrix(0.177485,0.002662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177485,0.002662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177485,0.002662,-0.003750,0.249972,0,0);}
.m5b_c00051{transform:matrix(0.178380,0.002676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178380,0.002676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178380,0.002676,-0.003750,0.249972,0,0);}
.me9_c00051{transform:matrix(0.178433,0.005894,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178433,0.005894,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178433,0.005894,-0.008254,0.249864,0,0);}
.m76_c00051{transform:matrix(0.178705,0.002681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178705,0.002681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178705,0.002681,-0.003750,0.249972,0,0);}
.m18_c00051{transform:matrix(0.179020,0.002685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179020,0.002685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179020,0.002685,-0.003750,0.249972,0,0);}
.m98_c00051{transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);}
.mdb_c00051{transform:matrix(0.179402,0.005926,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179402,0.005926,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179402,0.005926,-0.008254,0.249864,0,0);}
.m93_c00051{transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);}
.m5f_c00051{transform:matrix(0.180325,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180325,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180325,0.002705,-0.003750,0.249972,0,0);}
.m10_c00051{transform:matrix(0.180340,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180340,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180340,0.002705,-0.003750,0.249972,0,0);}
.m6a_c00051{transform:matrix(0.180370,0.002706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180370,0.002706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180370,0.002706,-0.003750,0.249972,0,0);}
.m31_c00051{transform:matrix(0.180395,0.002706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180395,0.002706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180395,0.002706,-0.003750,0.249972,0,0);}
.mb4_c00051{transform:matrix(0.180402,0.005959,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180402,0.005959,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180402,0.005959,-0.008254,0.249864,0,0);}
.m73_c00051{transform:matrix(0.180450,0.002707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180450,0.002707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180450,0.002707,-0.003750,0.249972,0,0);}
.mbc_c00051{transform:matrix(0.180532,0.005964,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180532,0.005964,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180532,0.005964,-0.008254,0.249864,0,0);}
.m3b_c00051{transform:matrix(0.180745,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180745,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180745,0.002711,-0.003750,0.249972,0,0);}
.m49_c00051{transform:matrix(0.180980,0.002715,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180980,0.002715,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180980,0.002715,-0.003750,0.249972,0,0);}
.m5d_c00051{transform:matrix(0.181355,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181355,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181355,0.002720,-0.003750,0.249972,0,0);}
.m53_c00051{transform:matrix(0.181565,0.002723,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181565,0.002723,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181565,0.002723,-0.003750,0.249972,0,0);}
.m7b_c00051{transform:matrix(0.182829,0.002742,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182829,0.002742,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182829,0.002742,-0.003750,0.249972,0,0);}
.md5_c00051{transform:matrix(0.183225,0.006052,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183225,0.006052,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183225,0.006052,-0.008254,0.249864,0,0);}
.m46_c00051{transform:matrix(0.183909,0.002759,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183909,0.002759,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183909,0.002759,-0.003750,0.249972,0,0);}
.mb7_c00051{transform:matrix(0.183925,0.006076,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183925,0.006076,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183925,0.006076,-0.008254,0.249864,0,0);}
.mc_c00051{transform:matrix(0.183929,0.002759,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183929,0.002759,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183929,0.002759,-0.003750,0.249972,0,0);}
.m8d_c00051{transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);}
.me_c00051{transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);}
.m9f_c00051{transform:matrix(0.185504,0.002783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185504,0.002783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185504,0.002783,-0.003750,0.249972,0,0);}
.mb_c00051{transform:matrix(0.185899,0.002788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185899,0.002788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185899,0.002788,-0.003750,0.249972,0,0);}
.me5_c00051{transform:matrix(0.185949,0.006142,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185949,0.006142,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185949,0.006142,-0.008254,0.249864,0,0);}
.m7_c00051{transform:matrix(0.186009,0.002790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186009,0.002790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186009,0.002790,-0.003750,0.249972,0,0);}
.m4d_c00051{transform:matrix(0.186254,0.002794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186254,0.002794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186254,0.002794,-0.003750,0.249972,0,0);}
.m1c_c00051{transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);}
.m11_c00051{transform:matrix(0.187709,0.002816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187709,0.002816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187709,0.002816,-0.003750,0.249972,0,0);}
.ma5_c00051{transform:matrix(0.188089,0.002821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188089,0.002821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188089,0.002821,-0.003750,0.249972,0,0);}
.m9b_c00051{transform:matrix(0.188189,0.002823,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188189,0.002823,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188189,0.002823,-0.003750,0.249972,0,0);}
.m26_c00051{transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);}
.m63_c00051{transform:matrix(0.188759,0.002831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188759,0.002831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188759,0.002831,-0.003750,0.249972,0,0);}
.ma1_c00051{transform:matrix(0.188909,0.002834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188909,0.002834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188909,0.002834,-0.003750,0.249972,0,0);}
.m86_c00051{transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);}
.ma9_c00051{transform:matrix(0.189484,0.004169,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189484,0.004169,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189484,0.004169,-0.005499,0.249940,0,0);}
.md0_c00051{transform:matrix(0.189781,0.006269,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189781,0.006269,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189781,0.006269,-0.008254,0.249864,0,0);}
.ma0_c00051{transform:matrix(0.189959,0.002849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189959,0.002849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189959,0.002849,-0.003750,0.249972,0,0);}
.m85_c00051{transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);}
.m2b_c00051{transform:matrix(0.190629,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190629,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190629,0.002859,-0.003750,0.249972,0,0);}
.m45_c00051{transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);}
.m4b_c00051{transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);}
.mb9_c00051{transform:matrix(0.191016,0.006310,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191016,0.006310,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191016,0.006310,-0.008254,0.249864,0,0);}
.mc5_c00051{transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);}
.me2_c00051{transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);}
.md_c00051{transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);}
.mdd_c00051{transform:matrix(0.191471,0.006325,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191471,0.006325,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191471,0.006325,-0.008254,0.249864,0,0);}
.m35_c00051{transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);}
.m60_c00051{transform:matrix(0.192193,0.002883,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192193,0.002883,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192193,0.002883,-0.003750,0.249972,0,0);}
.m39_c00051{transform:matrix(0.192248,0.002884,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192248,0.002884,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192248,0.002884,-0.003750,0.249972,0,0);}
.m1_c00051{transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);}
.md4_c00051{transform:matrix(0.192935,0.006373,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192935,0.006373,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192935,0.006373,-0.008254,0.249864,0,0);}
.mc2_c00051{transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);}
.mbf_c00051{transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193155,0.006380,-0.008254,0.249864,0,0);}
.mb0_c00051{transform:matrix(0.193449,0.006390,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193449,0.006390,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193449,0.006390,-0.008254,0.249864,0,0);}
.ma8_c00051{transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);}
.m8_c00051{transform:matrix(0.194023,0.002910,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194023,0.002910,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194023,0.002910,-0.003750,0.249972,0,0);}
.me0_c00051{transform:matrix(0.194449,0.006423,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194449,0.006423,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194449,0.006423,-0.008254,0.249864,0,0);}
.m84_c00051{transform:matrix(0.194508,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194508,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194508,0.002918,-0.003750,0.249972,0,0);}
.m69_c00051{transform:matrix(0.194648,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194648,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194648,0.002920,-0.003750,0.249972,0,0);}
.ma2_c00051{transform:matrix(0.194673,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194673,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194673,0.002920,-0.003750,0.249972,0,0);}
.mae_c00051{transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194858,0.004287,-0.005499,0.249940,0,0);}
.m9d_c00051{transform:matrix(0.195178,0.002928,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195178,0.002928,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195178,0.002928,-0.003750,0.249972,0,0);}
.m4f_c00051{transform:matrix(0.195248,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195248,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195248,0.002929,-0.003750,0.249972,0,0);}
.m36_c00051{transform:matrix(0.195393,0.002931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195393,0.002931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195393,0.002931,-0.003750,0.249972,0,0);}
.mc1_c00051{transform:matrix(0.195493,0.006458,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195493,0.006458,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195493,0.006458,-0.008254,0.249864,0,0);}
.mb5_c00051{transform:matrix(0.195668,0.006464,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195668,0.006464,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195668,0.006464,-0.008254,0.249864,0,0);}
.m3c_c00051{transform:matrix(0.196783,0.002952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196783,0.002952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196783,0.002952,-0.003750,0.249972,0,0);}
.m0_c00051{transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);}
.m7d_c00051{transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);}
.m33_c00051{transform:matrix(0.197368,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197368,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197368,0.002961,-0.003750,0.249972,0,0);}
.m47_c00051{transform:matrix(0.197378,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197378,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197378,0.002961,-0.003750,0.249972,0,0);}
.ma7_c00051{transform:matrix(0.197597,0.004347,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197597,0.004347,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197597,0.004347,-0.005499,0.249940,0,0);}
.mab_c00051{transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);}
.mdf_c00051{transform:matrix(0.199041,0.006575,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199041,0.006575,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199041,0.006575,-0.008254,0.249864,0,0);}
.m14_c00051{transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);}
.m66_c00051{transform:matrix(0.199223,0.002988,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199223,0.002988,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199223,0.002988,-0.003750,0.249972,0,0);}
.m99_c00051{transform:matrix(0.199753,0.002996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199753,0.002996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199753,0.002996,-0.003750,0.249972,0,0);}
.md1_c00051{transform:matrix(0.200141,0.006611,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200141,0.006611,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200141,0.006611,-0.008254,0.249864,0,0);}
.mce_c00051{transform:matrix(0.200271,0.006616,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200271,0.006616,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200271,0.006616,-0.008254,0.249864,0,0);}
.m75_c00051{transform:matrix(0.200487,0.003007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200487,0.003007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200487,0.003007,-0.003750,0.249972,0,0);}
.mdc_c00051{transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);}
.md8_c00051{transform:matrix(0.200711,0.006630,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200711,0.006630,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200711,0.006630,-0.008254,0.249864,0,0);}
.m44_c00051{transform:matrix(0.200822,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200822,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200822,0.003012,-0.003750,0.249972,0,0);}
.md9_c00051{transform:matrix(0.201390,0.006653,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201390,0.006653,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201390,0.006653,-0.008254,0.249864,0,0);}
.m12_c00051{transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);}
.mac_c00051{transform:matrix(0.202381,0.004452,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202381,0.004452,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202381,0.004452,-0.005499,0.249940,0,0);}
.m57_c00051{transform:matrix(0.202392,0.003036,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202392,0.003036,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202392,0.003036,-0.003750,0.249972,0,0);}
.m6e_c00051{transform:matrix(0.202627,0.003039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202627,0.003039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202627,0.003039,-0.003750,0.249972,0,0);}
.m16_c00051{transform:matrix(0.203807,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203807,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203807,0.003057,-0.003750,0.249972,0,0);}
.m59_c00051{transform:matrix(0.203982,0.003060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203982,0.003060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203982,0.003060,-0.003750,0.249972,0,0);}
.md7_c00051{transform:matrix(0.204199,0.006745,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204199,0.006745,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204199,0.006745,-0.008254,0.249864,0,0);}
.m5_c00051{transform:matrix(0.204277,0.003064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204277,0.003064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204277,0.003064,-0.003750,0.249972,0,0);}
.mee_c00051{transform:matrix(0.204309,0.006749,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204309,0.006749,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204309,0.006749,-0.008254,0.249864,0,0);}
.m19_c00051{transform:matrix(0.204487,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204487,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204487,0.003067,-0.003750,0.249972,0,0);}
.mc8_c00051{transform:matrix(0.204608,0.006759,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204608,0.006759,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204608,0.006759,-0.008254,0.249864,0,0);}
.m1d_c00051{transform:matrix(0.205577,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205577,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205577,0.003084,-0.003750,0.249972,0,0);}
.m95_c00051{transform:matrix(0.206202,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206202,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206202,0.003093,-0.003750,0.249972,0,0);}
.mda_c00051{transform:matrix(0.206572,0.006824,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206572,0.006824,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206572,0.006824,-0.008254,0.249864,0,0);}
.m1e_c00051{transform:matrix(0.206622,0.003099,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206622,0.003099,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206622,0.003099,-0.003750,0.249972,0,0);}
.me6_c00051{transform:matrix(0.206997,0.006838,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206997,0.006838,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206997,0.006838,-0.008254,0.249864,0,0);}
.m80_c00051{transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);}
.m17_c00051{transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);}
.mbe_c00051{transform:matrix(0.207857,0.006866,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207857,0.006866,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207857,0.006866,-0.008254,0.249864,0,0);}
.m89_c00051{transform:matrix(0.207897,0.003118,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207897,0.003118,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207897,0.003118,-0.003750,0.249972,0,0);}
.m64_c00051{transform:matrix(0.208162,0.003122,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208162,0.003122,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208162,0.003122,-0.003750,0.249972,0,0);}
.m8f_c00051{transform:matrix(0.208172,0.003123,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208172,0.003123,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208172,0.003123,-0.003750,0.249972,0,0);}
.m97_c00051{transform:matrix(0.208267,0.003124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208267,0.003124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208267,0.003124,-0.003750,0.249972,0,0);}
.m2d_c00051{transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);}
.md6_c00051{transform:matrix(0.209366,0.006916,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209366,0.006916,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209366,0.006916,-0.008254,0.249864,0,0);}
.m41_c00051{transform:matrix(0.209641,0.003145,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209641,0.003145,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209641,0.003145,-0.003750,0.249972,0,0);}
.m1a_c00051{transform:matrix(0.209901,0.003149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209901,0.003149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209901,0.003149,-0.003750,0.249972,0,0);}
.m70_c00051{transform:matrix(0.209921,0.003149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209921,0.003149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209921,0.003149,-0.003750,0.249972,0,0);}
.m9a_c00051{transform:matrix(0.210701,0.003161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210701,0.003161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210701,0.003161,-0.003750,0.249972,0,0);}
.mb8_c00051{transform:matrix(0.210750,0.006962,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210750,0.006962,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210750,0.006962,-0.008254,0.249864,0,0);}
.me8_c00051{transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);}
.m48_c00051{transform:matrix(0.210866,0.003163,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210866,0.003163,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210866,0.003163,-0.003750,0.249972,0,0);}
.m5a_c00051{transform:matrix(0.211021,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211021,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211021,0.003165,-0.003750,0.249972,0,0);}
.mcc_c00051{transform:matrix(0.211360,0.006982,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211360,0.006982,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211360,0.006982,-0.008254,0.249864,0,0);}
.m38_c00051{transform:matrix(0.211921,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211921,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211921,0.003179,-0.003750,0.249972,0,0);}
.m55_c00051{transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);}
.m94_c00051{transform:matrix(0.212716,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212716,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212716,0.003191,-0.003750,0.249972,0,0);}
.m4_c00051{transform:matrix(0.213046,0.003196,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213046,0.003196,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213046,0.003196,-0.003750,0.249972,0,0);}
.m91_c00051{transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);}
.m88_c00051{transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);}
.m74_c00051{transform:matrix(0.213541,0.003203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213541,0.003203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213541,0.003203,-0.003750,0.249972,0,0);}
.m51_c00051{transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);}
.me1_c00051{transform:matrix(0.213743,0.007061,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213743,0.007061,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213743,0.007061,-0.008254,0.249864,0,0);}
.m2a_c00051{transform:matrix(0.214631,0.003219,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214631,0.003219,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214631,0.003219,-0.003750,0.249972,0,0);}
.m2f_c00051{transform:matrix(0.214971,0.003225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214971,0.003225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214971,0.003225,-0.003750,0.249972,0,0);}
.m87_c00051{transform:matrix(0.214991,0.003225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214991,0.003225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214991,0.003225,-0.003750,0.249972,0,0);}
.ma4_c00051{transform:matrix(0.215316,0.003230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215316,0.003230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215316,0.003230,-0.003750,0.249972,0,0);}
.m40_c00051{transform:matrix(0.215636,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215636,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215636,0.003235,-0.003750,0.249972,0,0);}
.ma_c00051{transform:matrix(0.216771,0.003252,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216771,0.003252,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216771,0.003252,-0.003750,0.249972,0,0);}
.me7_c00051{transform:matrix(0.216812,0.007162,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216812,0.007162,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216812,0.007162,-0.008254,0.249864,0,0);}
.m2c_c00051{transform:matrix(0.218555,0.003278,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218555,0.003278,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218555,0.003278,-0.003750,0.249972,0,0);}
.m8c_c00051{transform:matrix(0.218715,0.003281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218715,0.003281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218715,0.003281,-0.003750,0.249972,0,0);}
.mf_c00051{transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);}
.m3d_c00051{transform:matrix(0.220890,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220890,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220890,0.003313,-0.003750,0.249972,0,0);}
.m90_c00051{transform:matrix(0.221030,0.003315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221030,0.003315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221030,0.003315,-0.003750,0.249972,0,0);}
.m9_c00051{transform:matrix(0.221085,0.003316,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221085,0.003316,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221085,0.003316,-0.003750,0.249972,0,0);}
.m42_c00051{transform:matrix(0.221515,0.003323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221515,0.003323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221515,0.003323,-0.003750,0.249972,0,0);}
.m52_c00051{transform:matrix(0.221765,0.003326,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221765,0.003326,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221765,0.003326,-0.003750,0.249972,0,0);}
.m72_c00051{transform:matrix(0.222090,0.003331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222090,0.003331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222090,0.003331,-0.003750,0.249972,0,0);}
.m6f_c00051{transform:matrix(0.223720,0.003356,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223720,0.003356,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223720,0.003356,-0.003750,0.249972,0,0);}
.m9c_c00051{transform:matrix(0.224330,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224330,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224330,0.003365,-0.003750,0.249972,0,0);}
.m4e_c00051{transform:matrix(0.224345,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224345,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224345,0.003365,-0.003750,0.249972,0,0);}
.m32_c00051{transform:matrix(0.225280,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225280,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225280,0.003379,-0.003750,0.249972,0,0);}
.m68_c00051{transform:matrix(0.226889,0.003403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226889,0.003403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226889,0.003403,-0.003750,0.249972,0,0);}
.m81_c00051{transform:matrix(0.227014,0.003405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227014,0.003405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227014,0.003405,-0.003750,0.249972,0,0);}
.m71_c00051{transform:matrix(0.227689,0.003415,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227689,0.003415,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227689,0.003415,-0.003750,0.249972,0,0);}
.m96_c00051{transform:matrix(0.227849,0.003418,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227849,0.003418,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227849,0.003418,-0.003750,0.249972,0,0);}
.ma6_c00051{transform:matrix(0.227954,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227954,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227954,0.003419,-0.003750,0.249972,0,0);}
.m83_c00051{transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);}
.m3e_c00051{transform:matrix(0.228799,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228799,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228799,0.003432,-0.003750,0.249972,0,0);}
.m8a_c00051{transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);}
.m4c_c00051{transform:matrix(0.229029,0.003435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229029,0.003435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229029,0.003435,-0.003750,0.249972,0,0);}
.m50_c00051{transform:matrix(0.231569,0.003474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231569,0.003474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231569,0.003474,-0.003750,0.249972,0,0);}
.m82_c00051{transform:matrix(0.232474,0.003487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232474,0.003487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232474,0.003487,-0.003750,0.249972,0,0);}
.m3a_c00051{transform:matrix(0.236038,0.003541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236038,0.003541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236038,0.003541,-0.003750,0.249972,0,0);}
.m3f_c00051{transform:matrix(0.236288,0.003544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236288,0.003544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236288,0.003544,-0.003750,0.249972,0,0);}
.me4_c00051{transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236466,0.007811,-0.008254,0.249864,0,0);}
.m8e_c00051{transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);}
.m15_c00051{transform:matrix(0.239573,0.003594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239573,0.003594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239573,0.003594,-0.003750,0.249972,0,0);}
.me3_c00051{transform:matrix(0.239919,0.007925,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239919,0.007925,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239919,0.007925,-0.008254,0.249864,0,0);}
.m7f_c00051{transform:matrix(0.239943,0.003599,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239943,0.003599,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239943,0.003599,-0.003750,0.249972,0,0);}
.m43_c00051{transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);}
.m8b_c00051{transform:matrix(0.246347,0.003695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246347,0.003695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246347,0.003695,-0.003750,0.249972,0,0);}
.m5e_c00051{transform:matrix(0.250892,0.003763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250892,0.003763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250892,0.003763,-0.003750,0.249972,0,0);}
.mf1_c00051{transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{transform:matrix(0.280833,0.004213,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280833,0.004213,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280833,0.004213,-0.003750,0.249972,0,0);}
.mf3_c00051{transform:matrix(1.242535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.242535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.242535,0.000000,0.000000,0.250000,0,0);}
.mf2_c00051{transform:matrix(4.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.176660,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:0.000000px;}
.fc0_c00051{color:transparent;}
.fs12_c00051{font-size:22.050000px;}
.fs10_c00051{font-size:55.624673px;}
.fs7_c00051{font-size:57.756497px;}
.fs9_c00051{font-size:58.806615px;}
.fs0_c00051{font-size:59.850000px;}
.fs6_c00051{font-size:59.856733px;}
.fs2_c00051{font-size:61.956969px;}
.fs1_c00051{font-size:63.007087px;}
.fse_c00051{font-size:64.020851px;}
.fs5_c00051{font-size:64.057205px;}
.fsb_c00051{font-size:64.065498px;}
.fsf_c00051{font-size:65.070373px;}
.fsd_c00051{font-size:66.119895px;}
.fs4_c00051{font-size:66.157441px;}
.fs8_c00051{font-size:67.207560px;}
.fs3_c00051{font-size:68.257678px;}
.fsc_c00051{font-size:69.268461px;}
.fsa_c00051{font-size:69.307796px;}
.fs11_c00051{font-size:75.565594px;}
.y0_c00051{bottom:0.000000px;}
.yf8_c00051{bottom:27.047349px;}
.yf7_c00051{bottom:27.735593px;}
.yf6_c00051{bottom:29.047968px;}
.yf5_c00051{bottom:29.411829px;}
.yf4_c00051{bottom:30.761829px;}
.yf3_c00051{bottom:32.923013px;}
.yf2_c00051{bottom:34.098268px;}
.yf1_c00051{bottom:52.364133px;}
.yf0_c00051{bottom:53.569381px;}
.yef_c00051{bottom:54.331888px;}
.yee_c00051{bottom:55.499386px;}
.yed_c00051{bottom:57.034881px;}
.yec_c00051{bottom:57.730995px;}
.yeb_c00051{bottom:58.083723px;}
.yea_c00051{bottom:59.644804px;}
.ye9_c00051{bottom:60.272149px;}
.ye8_c00051{bottom:68.675476px;}
.ye7_c00051{bottom:70.518694px;}
.ye6_c00051{bottom:74.012310px;}
.ye5_c00051{bottom:74.726735px;}
.ye4_c00051{bottom:77.276889px;}
.ye3_c00051{bottom:77.825560px;}
.ye2_c00051{bottom:79.708955px;}
.ye1_c00051{bottom:88.141419px;}
.ye0_c00051{bottom:88.693380px;}
.ydf_c00051{bottom:91.078655px;}
.yde_c00051{bottom:92.787998px;}
.ydd_c00051{bottom:93.910694px;}
.ydc_c00051{bottom:94.813565px;}
.ydb_c00051{bottom:102.349453px;}
.yda_c00051{bottom:104.083398px;}
.yd9_c00051{bottom:104.978488px;}
.yd8_c00051{bottom:108.488641px;}
.yd7_c00051{bottom:110.439558px;}
.yd6_c00051{bottom:111.342272px;}
.yd5_c00051{bottom:112.091773px;}
.yd4_c00051{bottom:122.026999px;}
.yd3_c00051{bottom:122.518989px;}
.yd2_c00051{bottom:124.040205px;}
.yd1_c00051{bottom:124.618374px;}
.yd0_c00051{bottom:125.299093px;}
.ycf_c00051{bottom:126.792679px;}
.yce_c00051{bottom:127.472854px;}
.ycd_c00051{bottom:129.090596px;}
.yfa_c00051{bottom:132.300000px;}
.ycc_c00051{bottom:138.879945px;}
.ycb_c00051{bottom:139.418910px;}
.yca_c00051{bottom:140.086615px;}
.yc9_c00051{bottom:140.619159px;}
.yc8_c00051{bottom:142.249703px;}
.yc7_c00051{bottom:144.000634px;}
.yc6_c00051{bottom:144.429975px;}
.yc5_c00051{bottom:144.961281px;}
.yc4_c00051{bottom:145.817847px;}
.yc3_c00051{bottom:152.907894px;}
.yc2_c00051{bottom:153.445104px;}
.yc1_c00051{bottom:154.158300px;}
.yc0_c00051{bottom:155.451600px;}
.ybf_c00051{bottom:156.016899px;}
.ybe_c00051{bottom:157.559571px;}
.ybd_c00051{bottom:158.505489px;}
.ybc_c00051{bottom:170.903930px;}
.ybb_c00051{bottom:171.343589px;}
.yba_c00051{bottom:173.532379px;}
.yb9_c00051{bottom:175.360860px;}
.yb8_c00051{bottom:175.940307px;}
.yb7_c00051{bottom:176.861155px;}
.yb6_c00051{bottom:178.135187px;}
.yb5_c00051{bottom:180.099000px;}
.yb4_c00051{bottom:188.517762px;}
.yb3_c00051{bottom:188.939139px;}
.yb2_c00051{bottom:189.221982px;}
.yb1_c00051{bottom:190.590723px;}
.yb0_c00051{bottom:191.001540px;}
.yaf_c00051{bottom:191.807235px;}
.yae_c00051{bottom:193.197261px;}
.yad_c00051{bottom:194.404500px;}
.yac_c00051{bottom:205.474845px;}
.yab_c00051{bottom:206.095703px;}
.yaa_c00051{bottom:207.539040px;}
.ya9_c00051{bottom:207.974040px;}
.ya8_c00051{bottom:208.860038px;}
.ya7_c00051{bottom:209.301353px;}
.ya6_c00051{bottom:210.231750px;}
.ya5_c00051{bottom:210.584385px;}
.ya4_c00051{bottom:211.366493px;}
.ya3_c00051{bottom:223.868865px;}
.ya2_c00051{bottom:225.057863px;}
.ya1_c00051{bottom:225.789195px;}
.ya0_c00051{bottom:226.456898px;}
.y9f_c00051{bottom:227.728028px;}
.y9e_c00051{bottom:228.113115px;}
.y9d_c00051{bottom:228.918353px;}
.y9c_c00051{bottom:240.307095px;}
.y9b_c00051{bottom:241.486943px;}
.y9a_c00051{bottom:242.588393px;}
.y99_c00051{bottom:243.227655px;}
.y98_c00051{bottom:244.183350px;}
.y97_c00051{bottom:245.030843px;}
.y96_c00051{bottom:246.743055px;}
.y95_c00051{bottom:257.056335px;}
.y94_c00051{bottom:257.438535px;}
.y93_c00051{bottom:258.920535px;}
.y92_c00051{bottom:260.940825px;}
.y91_c00051{bottom:261.827295px;}
.y90_c00051{bottom:262.264935px;}
.y8f_c00051{bottom:262.674668px;}
.y8e_c00051{bottom:273.569595px;}
.y8d_c00051{bottom:274.950225px;}
.y8c_c00051{bottom:275.389515px;}
.y8b_c00051{bottom:276.720008px;}
.y8a_c00051{bottom:277.177538px;}
.y89_c00051{bottom:278.555160px;}
.y88_c00051{bottom:279.153450px;}
.y87_c00051{bottom:279.958253px;}
.y86_c00051{bottom:290.540018px;}
.y85_c00051{bottom:290.884080px;}
.y84_c00051{bottom:292.392870px;}
.y83_c00051{bottom:293.633955px;}
.y82_c00051{bottom:294.217373px;}
.y81_c00051{bottom:295.032105px;}
.y80_c00051{bottom:295.480808px;}
.y7f_c00051{bottom:296.701200px;}
.y7e_c00051{bottom:307.844880px;}
.y7d_c00051{bottom:308.659073px;}
.y7c_c00051{bottom:309.659250px;}
.y7b_c00051{bottom:310.357958px;}
.y7a_c00051{bottom:310.947645px;}
.y79_c00051{bottom:312.348968px;}
.y78_c00051{bottom:312.961095px;}
.y77_c00051{bottom:313.442505px;}
.y76_c00051{bottom:326.323290px;}
.y75_c00051{bottom:326.685060px;}
.y74_c00051{bottom:327.152558px;}
.y73_c00051{bottom:327.957022px;}
.y72_c00051{bottom:328.233405px;}
.y71_c00051{bottom:328.714080px;}
.y70_c00051{bottom:329.339460px;}
.y6f_c00051{bottom:329.913345px;}
.y6e_c00051{bottom:342.258135px;}
.y6d_c00051{bottom:343.346025px;}
.y6c_c00051{bottom:344.115840px;}
.y6b_c00051{bottom:344.878320px;}
.y6a_c00051{bottom:346.003110px;}
.y69_c00051{bottom:346.654980px;}
.y68_c00051{bottom:359.158740px;}
.y67_c00051{bottom:359.763097px;}
.y66_c00051{bottom:360.985500px;}
.y65_c00051{bottom:361.861027px;}
.y64_c00051{bottom:362.287567px;}
.y63_c00051{bottom:362.690378px;}
.y62_c00051{bottom:363.717683px;}
.y61_c00051{bottom:364.192177px;}
.y60_c00051{bottom:364.476225px;}
.y5f_c00051{bottom:377.364150px;}
.y5e_c00051{bottom:377.710868px;}
.y5d_c00051{bottom:378.131700px;}
.y5c_c00051{bottom:379.077697px;}
.y5b_c00051{bottom:379.383540px;}
.y5a_c00051{bottom:380.962170px;}
.y59_c00051{bottom:381.490102px;}
.y58_c00051{bottom:394.119578px;}
.y57_c00051{bottom:394.468597px;}
.y56_c00051{bottom:394.825575px;}
.y55_c00051{bottom:395.434185px;}
.y54_c00051{bottom:395.730758px;}
.y53_c00051{bottom:396.343327px;}
.y52_c00051{bottom:396.967950px;}
.y51_c00051{bottom:397.275517px;}
.y50_c00051{bottom:397.662577px;}
.y4f_c00051{bottom:398.770545px;}
.y4e_c00051{bottom:410.071493px;}
.y4d_c00051{bottom:410.365238px;}
.y4c_c00051{bottom:411.175770px;}
.y4b_c00051{bottom:411.690540px;}
.y4a_c00051{bottom:412.386975px;}
.y49_c00051{bottom:413.197057px;}
.y48_c00051{bottom:414.716768px;}
.y47_c00051{bottom:415.263368px;}
.y46_c00051{bottom:415.786268px;}
.yf9_c00051{bottom:427.410000px;}
.y45_c00051{bottom:427.493385px;}
.y44_c00051{bottom:427.767360px;}
.y43_c00051{bottom:428.709113px;}
.y42_c00051{bottom:429.109740px;}
.y41_c00051{bottom:430.465245px;}
.y40_c00051{bottom:432.798615px;}
.y3f_c00051{bottom:445.120605px;}
.y3e_c00051{bottom:446.058495px;}
.y3d_c00051{bottom:447.190207px;}
.y3c_c00051{bottom:447.760223px;}
.y3b_c00051{bottom:448.262445px;}
.y3a_c00051{bottom:448.727962px;}
.y39_c00051{bottom:460.860412px;}
.y38_c00051{bottom:461.206478px;}
.y37_c00051{bottom:461.469353px;}
.y36_c00051{bottom:462.767490px;}
.y35_c00051{bottom:463.134503px;}
.y34_c00051{bottom:464.344995px;}
.y33_c00051{bottom:464.836478px;}
.y32_c00051{bottom:466.013198px;}
.y31_c00051{bottom:477.285173px;}
.y30_c00051{bottom:478.461893px;}
.y2f_c00051{bottom:478.920142px;}
.y2e_c00051{bottom:480.492255px;}
.y2d_c00051{bottom:481.879718px;}
.y2c_c00051{bottom:482.657783px;}
.y2b_c00051{bottom:483.025200px;}
.y2a_c00051{bottom:495.202853px;}
.y29_c00051{bottom:495.445830px;}
.y28_c00051{bottom:495.744405px;}
.y27_c00051{bottom:496.652663px;}
.y26_c00051{bottom:497.843903px;}
.y25_c00051{bottom:498.070860px;}
.y24_c00051{bottom:498.482813px;}
.y23_c00051{bottom:499.225223px;}
.y22_c00051{bottom:512.102805px;}
.y21_c00051{bottom:513.371010px;}
.y20_c00051{bottom:513.930315px;}
.y1f_c00051{bottom:515.719282px;}
.y1e_c00051{bottom:516.025935px;}
.y1d_c00051{bottom:517.107150px;}
.y1c_c00051{bottom:517.587600px;}
.y1b_c00051{bottom:529.043363px;}
.y1a_c00051{bottom:530.132663px;}
.y19_c00051{bottom:530.372475px;}
.y18_c00051{bottom:531.082560px;}
.y17_c00051{bottom:531.457185px;}
.y16_c00051{bottom:531.681990px;}
.y15_c00051{bottom:532.436325px;}
.y14_c00051{bottom:547.417680px;}
.y13_c00051{bottom:547.417785px;}
.y12_c00051{bottom:547.417823px;}
.yf_c00051{bottom:547.418310px;}
.y10_c00051{bottom:547.418378px;}
.y11_c00051{bottom:547.418400px;}
.yd_c00051{bottom:547.418993px;}
.ye_c00051{bottom:547.419015px;}
.yc_c00051{bottom:547.419180px;}
.yb_c00051{bottom:563.553593px;}
.ya_c00051{bottom:563.800665px;}
.y9_c00051{bottom:564.200603px;}
.y8_c00051{bottom:564.930728px;}
.y7_c00051{bottom:565.193888px;}
.y6_c00051{bottom:565.489695px;}
.y5_c00051{bottom:566.639895px;}
.y4_c00051{bottom:566.866605px;}
.y3_c00051{bottom:567.140948px;}
.y2_c00051{bottom:567.543000px;}
.y1_c00051{bottom:579.552000px;}
.h14_c00051{height:22.050000px;}
.h12_c00051{height:55.624673px;}
.h9_c00051{height:57.756497px;}
.hb_c00051{height:58.806615px;}
.h2_c00051{height:59.850000px;}
.h8_c00051{height:59.856733px;}
.h4_c00051{height:61.956969px;}
.h3_c00051{height:63.007087px;}
.h10_c00051{height:64.020851px;}
.h7_c00051{height:64.057205px;}
.hd_c00051{height:64.065498px;}
.h11_c00051{height:65.070373px;}
.hf_c00051{height:66.119895px;}
.h6_c00051{height:66.157441px;}
.ha_c00051{height:67.207560px;}
.h5_c00051{height:68.257678px;}
.he_c00051{height:69.268461px;}
.hc_c00051{height:69.307796px;}
.h13_c00051{height:75.565594px;}
.h0_c00051{height:618.570000px;}
.h1_c00051{height:618.750000px;}
.w0_c00051{width:361.200000px;}
.w1_c00051{width:361.500000px;}
.x0_c00051{left:0.000000px;}
.x63_c00051{left:32.149620px;}
.x7c_c00051{left:34.978337px;}
.x70_c00051{left:36.183693px;}
.x67_c00051{left:37.839000px;}
.x55_c00051{left:39.150428px;}
.x4b_c00051{left:40.305758px;}
.x38_c00051{left:41.458643px;}
.x16_c00051{left:42.703778px;}
.x22_c00051{left:43.745693px;}
.x2_c00051{left:45.193500px;}
.x41_c00051{left:54.867600px;}
.x7a_c00051{left:56.679236px;}
.x83_c00051{left:58.081292px;}
.x5b_c00051{left:59.689620px;}
.x23_c00051{left:62.138820px;}
.x7d_c00051{left:63.173555px;}
.x4f_c00051{left:64.820265px;}
.x17_c00051{left:66.731977px;}
.x74_c00051{left:68.320722px;}
.x64_c00051{left:69.386768px;}
.x3_c00051{left:71.997000px;}
.x4c_c00051{left:74.063745px;}
.x59_c00051{left:76.245615px;}
.x42_c00051{left:78.598823px;}
.x80_c00051{left:80.178794px;}
.x5c_c00051{left:81.563978px;}
.x71_c00051{left:83.393202px;}
.x50_c00051{left:86.711970px;}
.x75_c00051{left:87.992445px;}
.x4_c00051{left:90.286500px;}
.x1d_c00051{left:91.680788px;}
.x68_c00051{left:92.713500px;}
.x56_c00051{left:94.604100px;}
.x6c_c00051{left:96.433990px;}
.x7e_c00051{left:98.205128px;}
.x24_c00051{left:101.006895px;}
.x2d_c00051{left:103.528785px;}
.x5_c00051{left:105.400500px;}
.x13_c00051{left:107.303678px;}
.x5d_c00051{left:109.681913px;}
.x4d_c00051{left:110.854643px;}
.xb_c00051{left:113.407553px;}
.x51_c00051{left:114.517545px;}
.x84_c00051{left:115.829931px;}
.x77_c00051{left:117.381032px;}
.x1e_c00051{left:119.144288px;}
.x18_c00051{left:120.808928px;}
.x39_c00051{left:124.523408px;}
.x14_c00051{left:125.991510px;}
.xc_c00051{left:129.609698px;}
.x1f_c00051{left:134.274788px;}
.x19_c00051{left:136.151280px;}
.x2e_c00051{left:139.129245px;}
.x3a_c00051{left:141.627143px;}
.x48_c00051{left:145.088753px;}
.x3e_c00051{left:146.458523px;}
.x43_c00051{left:150.134468px;}
.x57_c00051{left:152.027070px;}
.x81_c00051{left:153.916082px;}
.x4e_c00051{left:155.323793px;}
.xd_c00051{left:157.963065px;}
.x30_c00051{left:159.080415px;}
.x72_c00051{left:160.384683px;}
.x3f_c00051{left:161.746875px;}
.x6d_c00051{left:162.878979px;}
.x5a_c00051{left:166.063688px;}
.x61_c00051{left:167.979480px;}
.x25_c00051{left:170.399198px;}
.x44_c00051{left:171.468870px;}
.x3b_c00051{left:176.367090px;}
.x52_c00051{left:178.232363px;}
.x6e_c00051{left:180.420420px;}
.x1_c00051{left:181.980000px;}
.x5e_c00051{left:184.784265px;}
.x29_c00051{left:186.325973px;}
.x73_c00051{left:188.624055px;}
.x49_c00051{left:189.919403px;}
.x69_c00051{left:192.519000px;}
.x65_c00051{left:193.698585px;}
.x78_c00051{left:194.965203px;}
.x34_c00051{left:196.635750px;}
.x6_c00051{left:201.801000px;}
.xe_c00051{left:203.868893px;}
.x53_c00051{left:205.042050px;}
.x2f_c00051{left:209.875688px;}
.x5f_c00051{left:211.398165px;}
.x20_c00051{left:213.690788px;}
.x45_c00051{left:215.234085px;}
.xf_c00051{left:217.370430px;}
.x7_c00051{left:219.345000px;}
.x86_c00051{left:221.636928px;}
.x1a_c00051{left:225.609075px;}
.x31_c00051{left:226.842330px;}
.x35_c00051{left:228.261420px;}
.x40_c00051{left:230.063745px;}
.x7b_c00051{left:233.297450px;}
.x4a_c00051{left:235.239053px;}
.x10_c00051{left:236.813295px;}
.x62_c00051{left:241.544048px;}
.x7f_c00051{left:243.320223px;}
.x32_c00051{left:246.849323px;}
.x26_c00051{left:249.000803px;}
.x36_c00051{left:251.676968px;}
.x1b_c00051{left:253.593983px;}
.x85_c00051{left:254.612510px;}
.x60_c00051{left:257.321978px;}
.x3c_c00051{left:260.646788px;}
.x8_c00051{left:268.020000px;}
.x2a_c00051{left:269.629740px;}
.x27_c00051{left:271.949093px;}
.x21_c00051{left:274.241288px;}
.x46_c00051{left:276.322995px;}
.x3d_c00051{left:280.444388px;}
.x2b_c00051{left:282.753750px;}
.x6a_c00051{left:286.264500px;}
.x79_c00051{left:287.400437px;}
.x37_c00051{left:288.508598px;}
.x76_c00051{left:293.336625px;}
.x9_c00051{left:294.682500px;}
.x82_c00051{left:297.867176px;}
.x2c_c00051{left:300.023445px;}
.x11_c00051{left:302.430555px;}
.x58_c00051{left:303.530663px;}
.x6b_c00051{left:305.418000px;}
.x47_c00051{left:306.511223px;}
.x33_c00051{left:307.593255px;}
.xa_c00051{left:311.154000px;}
.x66_c00051{left:312.700875px;}
.x6f_c00051{left:315.343862px;}
.x1c_c00051{left:317.036235px;}
.x54_c00051{left:319.268558px;}
.x12_c00051{left:324.842595px;}
.x15_c00051{left:327.122055px;}
.x28_c00051{left:330.792683px;}
.x88_c00051{left:350.730000px;}
.x89_c00051{left:351.810000px;}
.x87_c00051{left:356.130000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.fs12_c00051{font-size:19.600000pt;}
.fs10_c00051{font-size:49.444154pt;}
.fs7_c00051{font-size:51.339108pt;}
.fs9_c00051{font-size:52.272546pt;}
.fs0_c00051{font-size:53.200000pt;}
.fs6_c00051{font-size:53.205985pt;}
.fs2_c00051{font-size:55.072861pt;}
.fs1_c00051{font-size:56.006300pt;}
.fse_c00051{font-size:56.907423pt;}
.fs5_c00051{font-size:56.939738pt;}
.fsb_c00051{font-size:56.947110pt;}
.fsf_c00051{font-size:57.840331pt;}
.fsd_c00051{font-size:58.773240pt;}
.fs4_c00051{font-size:58.806615pt;}
.fs8_c00051{font-size:59.740053pt;}
.fs3_c00051{font-size:60.673491pt;}
.fsc_c00051{font-size:61.571966pt;}
.fsa_c00051{font-size:61.606930pt;}
.fs11_c00051{font-size:67.169417pt;}
.y0_c00051{bottom:0.000000pt;}
.yf8_c00051{bottom:24.042088pt;}
.yf7_c00051{bottom:24.653860pt;}
.yf6_c00051{bottom:25.820416pt;}
.yf5_c00051{bottom:26.143848pt;}
.yf4_c00051{bottom:27.343848pt;}
.yf3_c00051{bottom:29.264900pt;}
.yf2_c00051{bottom:30.309572pt;}
.yf1_c00051{bottom:46.545896pt;}
.yf0_c00051{bottom:47.617228pt;}
.yef_c00051{bottom:48.295012pt;}
.yee_c00051{bottom:49.332788pt;}
.yed_c00051{bottom:50.697672pt;}
.yec_c00051{bottom:51.316440pt;}
.yeb_c00051{bottom:51.629976pt;}
.yea_c00051{bottom:53.017604pt;}
.ye9_c00051{bottom:53.575244pt;}
.ye8_c00051{bottom:61.044868pt;}
.ye7_c00051{bottom:62.683284pt;}
.ye6_c00051{bottom:65.788720pt;}
.ye5_c00051{bottom:66.423764pt;}
.ye4_c00051{bottom:68.690568pt;}
.ye3_c00051{bottom:69.178276pt;}
.ye2_c00051{bottom:70.852404pt;}
.ye1_c00051{bottom:78.347928pt;}
.ye0_c00051{bottom:78.838560pt;}
.ydf_c00051{bottom:80.958804pt;}
.yde_c00051{bottom:82.478220pt;}
.ydd_c00051{bottom:83.476172pt;}
.ydc_c00051{bottom:84.278724pt;}
.ydb_c00051{bottom:90.977292pt;}
.yda_c00051{bottom:92.518576pt;}
.yd9_c00051{bottom:93.314212pt;}
.yd8_c00051{bottom:96.434348pt;}
.yd7_c00051{bottom:98.168496pt;}
.yd6_c00051{bottom:98.970908pt;}
.yd5_c00051{bottom:99.637132pt;}
.yd4_c00051{bottom:108.468444pt;}
.yd3_c00051{bottom:108.905768pt;}
.yd2_c00051{bottom:110.257960pt;}
.yd1_c00051{bottom:110.771888pt;}
.yd0_c00051{bottom:111.376972pt;}
.ycf_c00051{bottom:112.704604pt;}
.yce_c00051{bottom:113.309204pt;}
.ycd_c00051{bottom:114.747196pt;}
.yfa_c00051{bottom:117.600000pt;}
.ycc_c00051{bottom:123.448840pt;}
.ycb_c00051{bottom:123.927920pt;}
.yca_c00051{bottom:124.521436pt;}
.yc9_c00051{bottom:124.994808pt;}
.yc8_c00051{bottom:126.444180pt;}
.yc7_c00051{bottom:128.000564pt;}
.yc6_c00051{bottom:128.382200pt;}
.yc5_c00051{bottom:128.854472pt;}
.yc4_c00051{bottom:129.615864pt;}
.yc3_c00051{bottom:135.918128pt;}
.yc2_c00051{bottom:136.395648pt;}
.yc1_c00051{bottom:137.029600pt;}
.yc0_c00051{bottom:138.179200pt;}
.ybf_c00051{bottom:138.681688pt;}
.ybe_c00051{bottom:140.052952pt;}
.ybd_c00051{bottom:140.893768pt;}
.ybc_c00051{bottom:151.914604pt;}
.ybb_c00051{bottom:152.305412pt;}
.yba_c00051{bottom:154.251004pt;}
.yb9_c00051{bottom:155.876320pt;}
.yb8_c00051{bottom:156.391384pt;}
.yb7_c00051{bottom:157.209916pt;}
.yb6_c00051{bottom:158.342388pt;}
.yb5_c00051{bottom:160.088000pt;}
.yb4_c00051{bottom:167.571344pt;}
.yb3_c00051{bottom:167.945901pt;}
.yb2_c00051{bottom:168.197317pt;}
.yb1_c00051{bottom:169.413976pt;}
.yb0_c00051{bottom:169.779147pt;}
.yaf_c00051{bottom:170.495320pt;}
.yae_c00051{bottom:171.730899pt;}
.yad_c00051{bottom:172.804000pt;}
.yac_c00051{bottom:182.644307pt;}
.yab_c00051{bottom:183.196180pt;}
.yaa_c00051{bottom:184.479147pt;}
.ya9_c00051{bottom:184.865813pt;}
.ya8_c00051{bottom:185.653367pt;}
.ya7_c00051{bottom:186.045647pt;}
.ya6_c00051{bottom:186.872667pt;}
.ya5_c00051{bottom:187.186120pt;}
.ya4_c00051{bottom:187.881327pt;}
.ya3_c00051{bottom:198.994547pt;}
.ya2_c00051{bottom:200.051433pt;}
.ya1_c00051{bottom:200.701507pt;}
.ya0_c00051{bottom:201.295020pt;}
.y9f_c00051{bottom:202.424913pt;}
.y9e_c00051{bottom:202.767213pt;}
.y9d_c00051{bottom:203.482980pt;}
.y9c_c00051{bottom:213.606307pt;}
.y9b_c00051{bottom:214.655060pt;}
.y9a_c00051{bottom:215.634127pt;}
.y99_c00051{bottom:216.202360pt;}
.y98_c00051{bottom:217.051867pt;}
.y97_c00051{bottom:217.805193pt;}
.y96_c00051{bottom:219.327160pt;}
.y95_c00051{bottom:228.494520pt;}
.y94_c00051{bottom:228.834253pt;}
.y93_c00051{bottom:230.151587pt;}
.y92_c00051{bottom:231.947400pt;}
.y91_c00051{bottom:232.735373pt;}
.y90_c00051{bottom:233.124387pt;}
.y8f_c00051{bottom:233.488593pt;}
.y8e_c00051{bottom:243.172973pt;}
.y8d_c00051{bottom:244.400200pt;}
.y8c_c00051{bottom:244.790680pt;}
.y8b_c00051{bottom:245.973340pt;}
.y8a_c00051{bottom:246.380033pt;}
.y89_c00051{bottom:247.604587pt;}
.y88_c00051{bottom:248.136400pt;}
.y87_c00051{bottom:248.851780pt;}
.y86_c00051{bottom:258.257793pt;}
.y85_c00051{bottom:258.563627pt;}
.y84_c00051{bottom:259.904773pt;}
.y83_c00051{bottom:261.007960pt;}
.y82_c00051{bottom:261.526553pt;}
.y81_c00051{bottom:262.250760pt;}
.y80_c00051{bottom:262.649607pt;}
.y7f_c00051{bottom:263.734400pt;}
.y7e_c00051{bottom:273.639893pt;}
.y7d_c00051{bottom:274.363620pt;}
.y7c_c00051{bottom:275.252667pt;}
.y7b_c00051{bottom:275.873740pt;}
.y7a_c00051{bottom:276.397907pt;}
.y79_c00051{bottom:277.643527pt;}
.y78_c00051{bottom:278.187640pt;}
.y77_c00051{bottom:278.615560pt;}
.y76_c00051{bottom:290.065147pt;}
.y75_c00051{bottom:290.386720pt;}
.y74_c00051{bottom:290.802273pt;}
.y73_c00051{bottom:291.517353pt;}
.y72_c00051{bottom:291.763027pt;}
.y71_c00051{bottom:292.190293pt;}
.y70_c00051{bottom:292.746187pt;}
.y6f_c00051{bottom:293.256307pt;}
.y6e_c00051{bottom:304.229453pt;}
.y6d_c00051{bottom:305.196467pt;}
.y6c_c00051{bottom:305.880747pt;}
.y6b_c00051{bottom:306.558507pt;}
.y6a_c00051{bottom:307.558320pt;}
.y69_c00051{bottom:308.137760pt;}
.y68_c00051{bottom:319.252213pt;}
.y67_c00051{bottom:319.789420pt;}
.y66_c00051{bottom:320.876000pt;}
.y65_c00051{bottom:321.654247pt;}
.y64_c00051{bottom:322.033393pt;}
.y63_c00051{bottom:322.391447pt;}
.y62_c00051{bottom:323.304607pt;}
.y61_c00051{bottom:323.726380pt;}
.y60_c00051{bottom:323.978867pt;}
.y5f_c00051{bottom:335.434800pt;}
.y5e_c00051{bottom:335.742993pt;}
.y5d_c00051{bottom:336.117067pt;}
.y5c_c00051{bottom:336.957953pt;}
.y5b_c00051{bottom:337.229813pt;}
.y5a_c00051{bottom:338.633040pt;}
.y59_c00051{bottom:339.102313pt;}
.y58_c00051{bottom:350.328513pt;}
.y57_c00051{bottom:350.638753pt;}
.y56_c00051{bottom:350.956067pt;}
.y55_c00051{bottom:351.497053pt;}
.y54_c00051{bottom:351.760673pt;}
.y53_c00051{bottom:352.305180pt;}
.y52_c00051{bottom:352.860400pt;}
.y51_c00051{bottom:353.133793pt;}
.y50_c00051{bottom:353.477847pt;}
.y4f_c00051{bottom:354.462707pt;}
.y4e_c00051{bottom:364.507993pt;}
.y4d_c00051{bottom:364.769100pt;}
.y4c_c00051{bottom:365.489573pt;}
.y4b_c00051{bottom:365.947147pt;}
.y4a_c00051{bottom:366.566200pt;}
.y49_c00051{bottom:367.286273pt;}
.y48_c00051{bottom:368.637127pt;}
.y47_c00051{bottom:369.122993pt;}
.y46_c00051{bottom:369.587793pt;}
.yf9_c00051{bottom:379.920000pt;}
.y45_c00051{bottom:379.994120pt;}
.y44_c00051{bottom:380.237653pt;}
.y43_c00051{bottom:381.074767pt;}
.y42_c00051{bottom:381.430880pt;}
.y41_c00051{bottom:382.635773pt;}
.y40_c00051{bottom:384.709880pt;}
.y3f_c00051{bottom:395.662760pt;}
.y3e_c00051{bottom:396.496440pt;}
.y3d_c00051{bottom:397.502407pt;}
.y3c_c00051{bottom:398.009087pt;}
.y3b_c00051{bottom:398.455507pt;}
.y3a_c00051{bottom:398.869300pt;}
.y39_c00051{bottom:409.653700pt;}
.y38_c00051{bottom:409.961313pt;}
.y37_c00051{bottom:410.194980pt;}
.y36_c00051{bottom:411.348880pt;}
.y35_c00051{bottom:411.675113pt;}
.y34_c00051{bottom:412.751107pt;}
.y33_c00051{bottom:413.187980pt;}
.y32_c00051{bottom:414.233953pt;}
.y31_c00051{bottom:424.253487pt;}
.y30_c00051{bottom:425.299460pt;}
.y2f_c00051{bottom:425.706793pt;}
.y2e_c00051{bottom:427.104227pt;}
.y2d_c00051{bottom:428.337527pt;}
.y2c_c00051{bottom:429.029140pt;}
.y2b_c00051{bottom:429.355733pt;}
.y2a_c00051{bottom:440.180313pt;}
.y29_c00051{bottom:440.396293pt;}
.y28_c00051{bottom:440.661693pt;}
.y27_c00051{bottom:441.469033pt;}
.y26_c00051{bottom:442.527913pt;}
.y25_c00051{bottom:442.729653pt;}
.y24_c00051{bottom:443.095833pt;}
.y23_c00051{bottom:443.755753pt;}
.y22_c00051{bottom:455.202493pt;}
.y21_c00051{bottom:456.329787pt;}
.y20_c00051{bottom:456.826947pt;}
.y1f_c00051{bottom:458.417140pt;}
.y1e_c00051{bottom:458.689720pt;}
.y1d_c00051{bottom:459.650800pt;}
.y1c_c00051{bottom:460.077867pt;}
.y1b_c00051{bottom:470.260767pt;}
.y1a_c00051{bottom:471.229033pt;}
.y19_c00051{bottom:471.442200pt;}
.y18_c00051{bottom:472.073387pt;}
.y17_c00051{bottom:472.406387pt;}
.y16_c00051{bottom:472.606213pt;}
.y15_c00051{bottom:473.276733pt;}
.y14_c00051{bottom:486.593493pt;}
.y13_c00051{bottom:486.593587pt;}
.y12_c00051{bottom:486.593620pt;}
.yf_c00051{bottom:486.594053pt;}
.y10_c00051{bottom:486.594113pt;}
.y11_c00051{bottom:486.594133pt;}
.yd_c00051{bottom:486.594660pt;}
.ye_c00051{bottom:486.594680pt;}
.yc_c00051{bottom:486.594827pt;}
.yb_c00051{bottom:500.936527pt;}
.ya_c00051{bottom:501.156147pt;}
.y9_c00051{bottom:501.511647pt;}
.y8_c00051{bottom:502.160647pt;}
.y7_c00051{bottom:502.394567pt;}
.y6_c00051{bottom:502.657507pt;}
.y5_c00051{bottom:503.679907pt;}
.y4_c00051{bottom:503.881427pt;}
.y3_c00051{bottom:504.125287pt;}
.y2_c00051{bottom:504.482667pt;}
.y1_c00051{bottom:515.157333pt;}
.h14_c00051{height:19.600000pt;}
.h12_c00051{height:49.444154pt;}
.h9_c00051{height:51.339108pt;}
.hb_c00051{height:52.272546pt;}
.h2_c00051{height:53.200000pt;}
.h8_c00051{height:53.205985pt;}
.h4_c00051{height:55.072861pt;}
.h3_c00051{height:56.006300pt;}
.h10_c00051{height:56.907423pt;}
.h7_c00051{height:56.939738pt;}
.hd_c00051{height:56.947110pt;}
.h11_c00051{height:57.840331pt;}
.hf_c00051{height:58.773240pt;}
.h6_c00051{height:58.806615pt;}
.ha_c00051{height:59.740053pt;}
.h5_c00051{height:60.673491pt;}
.he_c00051{height:61.571966pt;}
.hc_c00051{height:61.606930pt;}
.h13_c00051{height:67.169417pt;}
.h0_c00051{height:549.840000pt;}
.h1_c00051{height:550.000000pt;}
.w0_c00051{width:321.066667pt;}
.w1_c00051{width:321.333333pt;}
.x0_c00051{left:0.000000pt;}
.x63_c00051{left:28.577440pt;}
.x7c_c00051{left:31.091855pt;}
.x70_c00051{left:32.163283pt;}
.x67_c00051{left:33.634667pt;}
.x55_c00051{left:34.800380pt;}
.x4b_c00051{left:35.827340pt;}
.x38_c00051{left:36.852127pt;}
.x16_c00051{left:37.958913pt;}
.x22_c00051{left:38.885060pt;}
.x2_c00051{left:40.172000pt;}
.x41_c00051{left:48.771200pt;}
.x7a_c00051{left:50.381543pt;}
.x83_c00051{left:51.627815pt;}
.x5b_c00051{left:53.057440pt;}
.x23_c00051{left:55.234507pt;}
.x7d_c00051{left:56.154271pt;}
.x4f_c00051{left:57.618013pt;}
.x17_c00051{left:59.317313pt;}
.x74_c00051{left:60.729531pt;}
.x64_c00051{left:61.677127pt;}
.x3_c00051{left:63.997333pt;}
.x4c_c00051{left:65.834440pt;}
.x59_c00051{left:67.773880pt;}
.x42_c00051{left:69.865620pt;}
.x80_c00051{left:71.270039pt;}
.x5c_c00051{left:72.501313pt;}
.x71_c00051{left:74.127291pt;}
.x50_c00051{left:77.077307pt;}
.x75_c00051{left:78.215507pt;}
.x4_c00051{left:80.254667pt;}
.x1d_c00051{left:81.494033pt;}
.x68_c00051{left:82.412000pt;}
.x56_c00051{left:84.092533pt;}
.x6c_c00051{left:85.719103pt;}
.x7e_c00051{left:87.293447pt;}
.x24_c00051{left:89.783907pt;}
.x2d_c00051{left:92.025587pt;}
.x5_c00051{left:93.689333pt;}
.x13_c00051{left:95.381047pt;}
.x5d_c00051{left:97.495033pt;}
.x4d_c00051{left:98.537460pt;}
.xb_c00051{left:100.806713pt;}
.x51_c00051{left:101.793373pt;}
.x84_c00051{left:102.959939pt;}
.x77_c00051{left:104.338695pt;}
.x1e_c00051{left:105.906033pt;}
.x18_c00051{left:107.385713pt;}
.x39_c00051{left:110.687473pt;}
.x14_c00051{left:111.992453pt;}
.xc_c00051{left:115.208620pt;}
.x1f_c00051{left:119.355367pt;}
.x19_c00051{left:121.023360pt;}
.x2e_c00051{left:123.670440pt;}
.x3a_c00051{left:125.890793pt;}
.x48_c00051{left:128.967780pt;}
.x3e_c00051{left:130.185353pt;}
.x43_c00051{left:133.452860pt;}
.x57_c00051{left:135.135173pt;}
.x81_c00051{left:136.814295pt;}
.x4e_c00051{left:138.065593pt;}
.xd_c00051{left:140.411613pt;}
.x30_c00051{left:141.404813pt;}
.x72_c00051{left:142.564163pt;}
.x3f_c00051{left:143.775000pt;}
.x6d_c00051{left:144.781315pt;}
.x5a_c00051{left:147.612167pt;}
.x61_c00051{left:149.315093pt;}
.x25_c00051{left:151.465953pt;}
.x44_c00051{left:152.416773pt;}
.x3b_c00051{left:156.770747pt;}
.x52_c00051{left:158.428767pt;}
.x6e_c00051{left:160.373707pt;}
.x1_c00051{left:161.760000pt;}
.x5e_c00051{left:164.252680pt;}
.x29_c00051{left:165.623087pt;}
.x73_c00051{left:167.665827pt;}
.x49_c00051{left:168.817247pt;}
.x69_c00051{left:171.128000pt;}
.x65_c00051{left:172.176520pt;}
.x78_c00051{left:173.302403pt;}
.x34_c00051{left:174.787333pt;}
.x6_c00051{left:179.378667pt;}
.xe_c00051{left:181.216793pt;}
.x53_c00051{left:182.259600pt;}
.x2f_c00051{left:186.556167pt;}
.x5f_c00051{left:187.909480pt;}
.x20_c00051{left:189.947367pt;}
.x45_c00051{left:191.319187pt;}
.xf_c00051{left:193.218160pt;}
.x7_c00051{left:194.973333pt;}
.x86_c00051{left:197.010603pt;}
.x1a_c00051{left:200.541400pt;}
.x31_c00051{left:201.637627pt;}
.x35_c00051{left:202.899040pt;}
.x40_c00051{left:204.501107pt;}
.x7b_c00051{left:207.375511pt;}
.x4a_c00051{left:209.101380pt;}
.x10_c00051{left:210.500707pt;}
.x62_c00051{left:214.705820pt;}
.x7f_c00051{left:216.284643pt;}
.x32_c00051{left:219.421620pt;}
.x26_c00051{left:221.334047pt;}
.x36_c00051{left:223.712860pt;}
.x1b_c00051{left:225.416873pt;}
.x85_c00051{left:226.322231pt;}
.x60_c00051{left:228.730647pt;}
.x3c_c00051{left:231.686033pt;}
.x8_c00051{left:238.240000pt;}
.x2a_c00051{left:239.670880pt;}
.x27_c00051{left:241.732527pt;}
.x21_c00051{left:243.770033pt;}
.x46_c00051{left:245.620440pt;}
.x3d_c00051{left:249.283900pt;}
.x2b_c00051{left:251.336667pt;}
.x6a_c00051{left:254.457333pt;}
.x79_c00051{left:255.467055pt;}
.x37_c00051{left:256.452087pt;}
.x76_c00051{left:260.743667pt;}
.x9_c00051{left:261.940000pt;}
.x82_c00051{left:264.770823pt;}
.x2c_c00051{left:266.687507pt;}
.x11_c00051{left:268.827160pt;}
.x58_c00051{left:269.805033pt;}
.x6b_c00051{left:271.482667pt;}
.x47_c00051{left:272.454420pt;}
.x33_c00051{left:273.416227pt;}
.xa_c00051{left:276.581333pt;}
.x66_c00051{left:277.956333pt;}
.x6f_c00051{left:280.305655pt;}
.x1c_c00051{left:281.809987pt;}
.x54_c00051{left:283.794273pt;}
.x12_c00051{left:288.748973pt;}
.x15_c00051{left:290.775160pt;}
.x28_c00051{left:294.037940pt;}
.x88_c00051{left:311.760000pt;}
.x89_c00051{left:312.720000pt;}
.x87_c00051{left:316.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00052 {
    display:none;
  }
  .loading-indicator_c00052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00052 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00052 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00052" -> "#page-container .classname_c00052")
 */
.pf_c00052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00052 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00052 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00052 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00052 {overflow:visible;}
  }
}
.c_c00052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00052 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00052:after { /* webkit #35443 */
  content: '';
}
.t_c00052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00052 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00052 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00052 { /* info for Javascript */
  display:none;
}
.l_c00052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00052:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00052 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00052.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.010699,0.000171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.010699,0.000171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.010699,0.000171,-0.003999,0.249968,0,0);}
.mb2_c00052{transform:matrix(0.025972,0.000416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.025972,0.000416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.025972,0.000416,-0.003999,0.249968,0,0);}
.mc0_c00052{transform:matrix(0.059476,0.001844,-0.007746,0.249880,0,0);-ms-transform:matrix(0.059476,0.001844,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.059476,0.001844,-0.007746,0.249880,0,0);}
.m65_c00052{transform:matrix(0.118850,0.001902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.118850,0.001902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.118850,0.001902,-0.003999,0.249968,0,0);}
.m66_c00052{transform:matrix(0.143552,0.002297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143552,0.002297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143552,0.002297,-0.003999,0.249968,0,0);}
.m12_c00052{transform:matrix(0.143727,0.002300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143727,0.002300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143727,0.002300,-0.003999,0.249968,0,0);}
.m22_c00052{transform:matrix(0.145066,0.002321,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145066,0.002321,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145066,0.002321,-0.003999,0.249968,0,0);}
.m8d_c00052{transform:matrix(0.147471,0.002360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147471,0.002360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147471,0.002360,-0.003999,0.249968,0,0);}
.mc_c00052{transform:matrix(0.148651,0.002378,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148651,0.002378,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148651,0.002378,-0.003999,0.249968,0,0);}
.m26_c00052{transform:matrix(0.152301,0.002437,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152301,0.002437,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152301,0.002437,-0.003999,0.249968,0,0);}
.m1_c00052{transform:matrix(0.153510,0.002456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153510,0.002456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153510,0.002456,-0.003999,0.249968,0,0);}
.m8_c00052{transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153630,0.002458,-0.003999,0.249968,0,0);}
.m4e_c00052{transform:matrix(0.153645,0.002458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153645,0.002458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153645,0.002458,-0.003999,0.249968,0,0);}
.ma_c00052{transform:matrix(0.154395,0.002470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154395,0.002470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154395,0.002470,-0.003999,0.249968,0,0);}
.m29_c00052{transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);}
.m16_c00052{transform:matrix(0.155915,0.002495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155915,0.002495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155915,0.002495,-0.003999,0.249968,0,0);}
.md1_c00052{transform:matrix(0.157005,0.004867,-0.007746,0.249880,0,0);-ms-transform:matrix(0.157005,0.004867,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.157005,0.004867,-0.007746,0.249880,0,0);}
.m23_c00052{transform:matrix(0.157890,0.002526,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157890,0.002526,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157890,0.002526,-0.003999,0.249968,0,0);}
.m11_c00052{transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);}
.md6_c00052{transform:matrix(0.158869,0.004925,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158869,0.004925,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158869,0.004925,-0.007746,0.249880,0,0);}
.m30_c00052{transform:matrix(0.158905,0.002542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158905,0.002542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158905,0.002542,-0.003999,0.249968,0,0);}
.mbf_c00052{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.162899,0.002606,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162899,0.002606,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162899,0.002606,-0.003999,0.249968,0,0);}
.m18_c00052{transform:matrix(0.163264,0.002612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163264,0.002612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163264,0.002612,-0.003999,0.249968,0,0);}
.m99_c00052{transform:matrix(0.164854,0.002638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164854,0.002638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164854,0.002638,-0.003999,0.249968,0,0);}
.m80_c00052{transform:matrix(0.166729,0.002668,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166729,0.002668,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166729,0.002668,-0.003999,0.249968,0,0);}
.m98_c00052{transform:matrix(0.170863,0.002734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170863,0.002734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170863,0.002734,-0.003999,0.249968,0,0);}
.m2a_c00052{transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);}
.m69_c00052{transform:matrix(0.171713,0.002747,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171713,0.002747,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171713,0.002747,-0.003999,0.249968,0,0);}
.mf_c00052{transform:matrix(0.172023,0.002752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172023,0.002752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172023,0.002752,-0.003999,0.249968,0,0);}
.m2e_c00052{transform:matrix(0.172513,0.002760,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172513,0.002760,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172513,0.002760,-0.003999,0.249968,0,0);}
.m1c_c00052{transform:matrix(0.173073,0.002769,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173073,0.002769,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173073,0.002769,-0.003999,0.249968,0,0);}
.mdc_c00052{transform:matrix(0.173347,0.005374,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173347,0.005374,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173347,0.005374,-0.007746,0.249880,0,0);}
.m5_c00052{transform:matrix(0.173523,0.002776,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173523,0.002776,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173523,0.002776,-0.003999,0.249968,0,0);}
.m2_c00052{transform:matrix(0.173733,0.002780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173733,0.002780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173733,0.002780,-0.003999,0.249968,0,0);}
.maf_c00052{transform:matrix(0.174493,0.002792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174493,0.002792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174493,0.002792,-0.003999,0.249968,0,0);}
.m1b_c00052{transform:matrix(0.175688,0.002811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175688,0.002811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175688,0.002811,-0.003999,0.249968,0,0);}
.mae_c00052{transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175987,0.002816,-0.003999,0.249968,0,0);}
.m92_c00052{transform:matrix(0.176347,0.002822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176347,0.002822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176347,0.002822,-0.003999,0.249968,0,0);}
.md3_c00052{transform:matrix(0.177255,0.005495,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177255,0.005495,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177255,0.005495,-0.007746,0.249880,0,0);}
.ma9_c00052{transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);}
.m3_c00052{transform:matrix(0.177622,0.002842,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177622,0.002842,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177622,0.002842,-0.003999,0.249968,0,0);}
.mf5_c00052{transform:matrix(0.178116,0.006775,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178116,0.006775,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178116,0.006775,-0.009503,0.249819,0,0);}
.me8_c00052{transform:matrix(0.178219,0.005525,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178219,0.005525,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178219,0.005525,-0.007746,0.249880,0,0);}
.mb_c00052{transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);}
.m5f_c00052{transform:matrix(0.179967,0.002879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179967,0.002879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179967,0.002879,-0.003999,0.249968,0,0);}
.md8_c00052{transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180088,0.005583,-0.007746,0.249880,0,0);}
.m57_c00052{transform:matrix(0.180567,0.002889,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180567,0.002889,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180567,0.002889,-0.003999,0.249968,0,0);}
.m10_c00052{transform:matrix(0.181047,0.002897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181047,0.002897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181047,0.002897,-0.003999,0.249968,0,0);}
.m55_c00052{transform:matrix(0.181187,0.002899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181187,0.002899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181187,0.002899,-0.003999,0.249968,0,0);}
.m3f_c00052{transform:matrix(0.181252,0.002900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181252,0.002900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181252,0.002900,-0.003999,0.249968,0,0);}
.md_c00052{transform:matrix(0.181267,0.002900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181267,0.002900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181267,0.002900,-0.003999,0.249968,0,0);}
.m24_c00052{transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);}
.mc7_c00052{transform:matrix(0.182038,0.005643,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182038,0.005643,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182038,0.005643,-0.007746,0.249880,0,0);}
.m7_c00052{transform:matrix(0.182182,0.002915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182182,0.002915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182182,0.002915,-0.003999,0.249968,0,0);}
.m78_c00052{transform:matrix(0.183172,0.002931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183172,0.002931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183172,0.002931,-0.003999,0.249968,0,0);}
.m13_c00052{transform:matrix(0.184176,0.002947,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184176,0.002947,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184176,0.002947,-0.003999,0.249968,0,0);}
.md0_c00052{transform:matrix(0.184731,0.005727,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184731,0.005727,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184731,0.005727,-0.007746,0.249880,0,0);}
.m25_c00052{transform:matrix(0.184836,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184836,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184836,0.002957,-0.003999,0.249968,0,0);}
.m4_c00052{transform:matrix(0.186331,0.002981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186331,0.002981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186331,0.002981,-0.003999,0.249968,0,0);}
.m84_c00052{transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);}
.m82_c00052{transform:matrix(0.188486,0.003016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188486,0.003016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188486,0.003016,-0.003999,0.249968,0,0);}
.m21_c00052{transform:matrix(0.189031,0.003024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189031,0.003024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189031,0.003024,-0.003999,0.249968,0,0);}
.m8b_c00052{transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);}
.me0_c00052{transform:matrix(0.189189,0.005865,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189189,0.005865,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189189,0.005865,-0.007746,0.249880,0,0);}
.m59_c00052{transform:matrix(0.189721,0.003036,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189721,0.003036,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189721,0.003036,-0.003999,0.249968,0,0);}
.m68_c00052{transform:matrix(0.189811,0.003037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189811,0.003037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189811,0.003037,-0.003999,0.249968,0,0);}
.m6_c00052{transform:matrix(0.189891,0.003038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189891,0.003038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189891,0.003038,-0.003999,0.249968,0,0);}
.m8f_c00052{transform:matrix(0.190171,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190171,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190171,0.003043,-0.003999,0.249968,0,0);}
.m14_c00052{transform:matrix(0.190361,0.003046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190361,0.003046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190361,0.003046,-0.003999,0.249968,0,0);}
.m51_c00052{transform:matrix(0.190481,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190481,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190481,0.003048,-0.003999,0.249968,0,0);}
.m89_c00052{transform:matrix(0.190511,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190511,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190511,0.003048,-0.003999,0.249968,0,0);}
.m88_c00052{transform:matrix(0.192150,0.003074,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192150,0.003074,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192150,0.003074,-0.003999,0.249968,0,0);}
.me_c00052{transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);}
.m1a_c00052{transform:matrix(0.193345,0.003094,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193345,0.003094,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193345,0.003094,-0.003999,0.249968,0,0);}
.m6a_c00052{transform:matrix(0.193655,0.003098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193655,0.003098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193655,0.003098,-0.003999,0.249968,0,0);}
.mb6_c00052{transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);}
.m94_c00052{transform:matrix(0.194095,0.003106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194095,0.003106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194095,0.003106,-0.003999,0.249968,0,0);}
.m9a_c00052{transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);}
.m32_c00052{transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);}
.ma5_c00052{transform:matrix(0.194590,0.003113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194590,0.003113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194590,0.003113,-0.003999,0.249968,0,0);}
.md5_c00052{transform:matrix(0.194636,0.006034,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194636,0.006034,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194636,0.006034,-0.007746,0.249880,0,0);}
.m46_c00052{transform:matrix(0.194720,0.003116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194720,0.003116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194720,0.003116,-0.003999,0.249968,0,0);}
.m64_c00052{transform:matrix(0.195390,0.003126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195390,0.003126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195390,0.003126,-0.003999,0.249968,0,0);}
.m9c_c00052{transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196140,0.003138,-0.003999,0.249968,0,0);}
.m83_c00052{transform:matrix(0.196865,0.003150,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196865,0.003150,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196865,0.003150,-0.003999,0.249968,0,0);}
.m91_c00052{transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197235,0.003156,-0.003999,0.249968,0,0);}
.m97_c00052{transform:matrix(0.197265,0.003156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197265,0.003156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197265,0.003156,-0.003999,0.249968,0,0);}
.m72_c00052{transform:matrix(0.197825,0.003165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197825,0.003165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197825,0.003165,-0.003999,0.249968,0,0);}
.m3d_c00052{transform:matrix(0.198290,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198290,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198290,0.003173,-0.003999,0.249968,0,0);}
.mdb_c00052{transform:matrix(0.199499,0.006184,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199499,0.006184,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199499,0.006184,-0.007746,0.249880,0,0);}
.m85_c00052{transform:matrix(0.200274,0.003204,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200274,0.003204,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200274,0.003204,-0.003999,0.249968,0,0);}
.mb0_c00052{transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);}
.m67_c00052{transform:matrix(0.200804,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200804,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200804,0.003213,-0.003999,0.249968,0,0);}
.m6c_c00052{transform:matrix(0.201209,0.003219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201209,0.003219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201209,0.003219,-0.003999,0.249968,0,0);}
.m8c_c00052{transform:matrix(0.202094,0.003234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202094,0.003234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202094,0.003234,-0.003999,0.249968,0,0);}
.m81_c00052{transform:matrix(0.202204,0.003235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202204,0.003235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202204,0.003235,-0.003999,0.249968,0,0);}
.mbd_c00052{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.202624,0.003242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202624,0.003242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202624,0.003242,-0.003999,0.249968,0,0);}
.m17_c00052{transform:matrix(0.202724,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202724,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202724,0.003244,-0.003999,0.249968,0,0);}
.m36_c00052{transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);}
.mcd_c00052{transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);}
.m8a_c00052{transform:matrix(0.204254,0.003268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204254,0.003268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204254,0.003268,-0.003999,0.249968,0,0);}
.m73_c00052{transform:matrix(0.204389,0.003270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204389,0.003270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204389,0.003270,-0.003999,0.249968,0,0);}
.m7e_c00052{transform:matrix(0.204939,0.003279,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204939,0.003279,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204939,0.003279,-0.003999,0.249968,0,0);}
.m7f_c00052{transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);}
.mc6_c00052{transform:matrix(0.205646,0.006375,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205646,0.006375,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205646,0.006375,-0.007746,0.249880,0,0);}
.md4_c00052{transform:matrix(0.205976,0.006385,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205976,0.006385,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205976,0.006385,-0.007746,0.249880,0,0);}
.mc2_c00052{transform:matrix(0.206086,0.006389,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206086,0.006389,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206086,0.006389,-0.007746,0.249880,0,0);}
.m61_c00052{transform:matrix(0.206169,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206169,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206169,0.003299,-0.003999,0.249968,0,0);}
.m63_c00052{transform:matrix(0.206259,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206259,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206259,0.003300,-0.003999,0.249968,0,0);}
.m1e_c00052{transform:matrix(0.206274,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206274,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206274,0.003300,-0.003999,0.249968,0,0);}
.m34_c00052{transform:matrix(0.206299,0.003301,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206299,0.003301,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206299,0.003301,-0.003999,0.249968,0,0);}
.me9_c00052{transform:matrix(0.206371,0.006397,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206371,0.006397,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206371,0.006397,-0.007746,0.249880,0,0);}
.mf0_c00052{transform:matrix(0.206820,0.007867,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206820,0.007867,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206820,0.007867,-0.009503,0.249819,0,0);}
.m4c_c00052{transform:matrix(0.207163,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207163,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207163,0.003315,-0.003999,0.249968,0,0);}
.m90_c00052{transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);}
.me7_c00052{transform:matrix(0.207270,0.006425,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207270,0.006425,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207270,0.006425,-0.007746,0.249880,0,0);}
.mbe_c00052{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.207793,0.003325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207793,0.003325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207793,0.003325,-0.003999,0.249968,0,0);}
.m5e_c00052{transform:matrix(0.208348,0.003334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208348,0.003334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208348,0.003334,-0.003999,0.249968,0,0);}
.m7d_c00052{transform:matrix(0.208583,0.003337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208583,0.003337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208583,0.003337,-0.003999,0.249968,0,0);}
.m1f_c00052{transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);}
.m44_c00052{transform:matrix(0.209228,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209228,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209228,0.003348,-0.003999,0.249968,0,0);}
.m96_c00052{transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);}
.mce_c00052{transform:matrix(0.209589,0.006497,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209589,0.006497,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209589,0.006497,-0.007746,0.249880,0,0);}
.m50_c00052{transform:matrix(0.209893,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209893,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209893,0.003358,-0.003999,0.249968,0,0);}
.m7b_c00052{transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209983,0.003360,-0.003999,0.249968,0,0);}
.md9_c00052{transform:matrix(0.210229,0.006517,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210229,0.006517,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210229,0.006517,-0.007746,0.249880,0,0);}
.mb1_c00052{transform:matrix(0.210463,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210463,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210463,0.003367,-0.003999,0.249968,0,0);}
.mab_c00052{transform:matrix(0.210843,0.003373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210843,0.003373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210843,0.003373,-0.003999,0.249968,0,0);}
.m2c_c00052{transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);}
.m4f_c00052{transform:matrix(0.211408,0.003383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211408,0.003383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211408,0.003383,-0.003999,0.249968,0,0);}
.ma1_c00052{transform:matrix(0.211658,0.003387,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211658,0.003387,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211658,0.003387,-0.003999,0.249968,0,0);}
.m2b_c00052{transform:matrix(0.211838,0.003389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211838,0.003389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211838,0.003389,-0.003999,0.249968,0,0);}
.m3c_c00052{transform:matrix(0.211968,0.003391,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211968,0.003391,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211968,0.003391,-0.003999,0.249968,0,0);}
.maa_c00052{transform:matrix(0.211983,0.003392,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211983,0.003392,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211983,0.003392,-0.003999,0.249968,0,0);}
.m87_c00052{transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);}
.me6_c00052{transform:matrix(0.212608,0.006591,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212608,0.006591,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212608,0.006591,-0.007746,0.249880,0,0);}
.m5b_c00052{transform:matrix(0.212613,0.003402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212613,0.003402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212613,0.003402,-0.003999,0.249968,0,0);}
.m38_c00052{transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);}
.mac_c00052{transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);}
.mbb_c00052{transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);}
.m95_c00052{transform:matrix(0.212818,0.003405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212818,0.003405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212818,0.003405,-0.003999,0.249968,0,0);}
.mc5_c00052{transform:matrix(0.212893,0.006600,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212893,0.006600,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212893,0.006600,-0.007746,0.249880,0,0);}
.m3b_c00052{transform:matrix(0.212958,0.003407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212958,0.003407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212958,0.003407,-0.003999,0.249968,0,0);}
.m74_c00052{transform:matrix(0.213263,0.003412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213263,0.003412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213263,0.003412,-0.003999,0.249968,0,0);}
.m8e_c00052{transform:matrix(0.213268,0.003412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213268,0.003412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213268,0.003412,-0.003999,0.249968,0,0);}
.m39_c00052{transform:matrix(0.213608,0.003418,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213608,0.003418,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213608,0.003418,-0.003999,0.249968,0,0);}
.mf2_c00052{transform:matrix(0.213810,0.008133,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213810,0.008133,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213810,0.008133,-0.009503,0.249819,0,0);}
.mea_c00052{transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);}
.m9e_c00052{transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);}
.m41_c00052{transform:matrix(0.214803,0.003437,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214803,0.003437,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214803,0.003437,-0.003999,0.249968,0,0);}
.mcf_c00052{transform:matrix(0.215761,0.006689,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215761,0.006689,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215761,0.006689,-0.007746,0.249880,0,0);}
.m93_c00052{transform:matrix(0.216177,0.003459,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216177,0.003459,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216177,0.003459,-0.003999,0.249968,0,0);}
.ma8_c00052{transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);}
.m58_c00052{transform:matrix(0.216462,0.003463,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216462,0.003463,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216462,0.003463,-0.003999,0.249968,0,0);}
.ma6_c00052{transform:matrix(0.216557,0.003465,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216557,0.003465,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216557,0.003465,-0.003999,0.249968,0,0);}
.mc3_c00052{transform:matrix(0.216581,0.006714,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216581,0.006714,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216581,0.006714,-0.007746,0.249880,0,0);}
.mda_c00052{transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);}
.me4_c00052{transform:matrix(0.217386,0.006739,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217386,0.006739,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217386,0.006739,-0.007746,0.249880,0,0);}
.m20_c00052{transform:matrix(0.217432,0.003479,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217432,0.003479,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217432,0.003479,-0.003999,0.249968,0,0);}
.m45_c00052{transform:matrix(0.217747,0.003484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217747,0.003484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217747,0.003484,-0.003999,0.249968,0,0);}
.m9d_c00052{transform:matrix(0.218292,0.003493,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218292,0.003493,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218292,0.003493,-0.003999,0.249968,0,0);}
.meb_c00052{transform:matrix(0.218990,0.006789,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218990,0.006789,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218990,0.006789,-0.007746,0.249880,0,0);}
.m33_c00052{transform:matrix(0.219002,0.003504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219002,0.003504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219002,0.003504,-0.003999,0.249968,0,0);}
.mad_c00052{transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);}
.md2_c00052{transform:matrix(0.219225,0.006796,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219225,0.006796,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219225,0.006796,-0.007746,0.249880,0,0);}
.ma3_c00052{transform:matrix(0.219417,0.003511,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219417,0.003511,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219417,0.003511,-0.003999,0.249968,0,0);}
.m60_c00052{transform:matrix(0.219787,0.003517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219787,0.003517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219787,0.003517,-0.003999,0.249968,0,0);}
.m48_c00052{transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);}
.md7_c00052{transform:matrix(0.220414,0.006833,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220414,0.006833,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220414,0.006833,-0.007746,0.249880,0,0);}
.m15_c00052{transform:matrix(0.220717,0.003531,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220717,0.003531,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220717,0.003531,-0.003999,0.249968,0,0);}
.mca_c00052{transform:matrix(0.221179,0.006857,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221179,0.006857,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221179,0.006857,-0.007746,0.249880,0,0);}
.m37_c00052{transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);}
.m4a_c00052{transform:matrix(0.223071,0.003569,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223071,0.003569,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223071,0.003569,-0.003999,0.249968,0,0);}
.m79_c00052{transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);}
.m6b_c00052{transform:matrix(0.223681,0.003579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223681,0.003579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223681,0.003579,-0.003999,0.249968,0,0);}
.mc4_c00052{transform:matrix(0.223773,0.006937,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223773,0.006937,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223773,0.006937,-0.007746,0.249880,0,0);}
.m3a_c00052{transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);}
.m43_c00052{transform:matrix(0.223966,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223966,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223966,0.003583,-0.003999,0.249968,0,0);}
.mb8_c00052{transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);}
.m7c_c00052{transform:matrix(0.224821,0.003597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224821,0.003597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224821,0.003597,-0.003999,0.249968,0,0);}
.mcb_c00052{transform:matrix(0.224997,0.006975,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224997,0.006975,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224997,0.006975,-0.007746,0.249880,0,0);}
.m77_c00052{transform:matrix(0.225161,0.003603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225161,0.003603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225161,0.003603,-0.003999,0.249968,0,0);}
.mc9_c00052{transform:matrix(0.225252,0.006983,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225252,0.006983,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225252,0.006983,-0.007746,0.249880,0,0);}
.me3_c00052{transform:matrix(0.225657,0.006995,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225657,0.006995,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225657,0.006995,-0.007746,0.249880,0,0);}
.m2d_c00052{transform:matrix(0.225806,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225806,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225806,0.003613,-0.003999,0.249968,0,0);}
.m2f_c00052{transform:matrix(0.226201,0.003619,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226201,0.003619,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226201,0.003619,-0.003999,0.249968,0,0);}
.mcc_c00052{transform:matrix(0.226331,0.007016,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226331,0.007016,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226331,0.007016,-0.007746,0.249880,0,0);}
.me1_c00052{transform:matrix(0.226676,0.007027,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226676,0.007027,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226676,0.007027,-0.007746,0.249880,0,0);}
.mb9_c00052{transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);}
.mef_c00052{transform:matrix(0.226881,0.008630,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226881,0.008630,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226881,0.008630,-0.009503,0.249819,0,0);}
.mdf_c00052{transform:matrix(0.228255,0.007076,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228255,0.007076,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228255,0.007076,-0.007746,0.249880,0,0);}
.m5d_c00052{transform:matrix(0.228366,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228366,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228366,0.003654,-0.003999,0.249968,0,0);}
.m42_c00052{transform:matrix(0.228401,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228401,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228401,0.003654,-0.003999,0.249968,0,0);}
.m75_c00052{transform:matrix(0.228631,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228631,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228631,0.003658,-0.003999,0.249968,0,0);}
.ma0_c00052{transform:matrix(0.229601,0.003674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229601,0.003674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229601,0.003674,-0.003999,0.249968,0,0);}
.m62_c00052{transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);}
.m9b_c00052{transform:matrix(0.230091,0.003681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230091,0.003681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230091,0.003681,-0.003999,0.249968,0,0);}
.mee_c00052{transform:matrix(0.230693,0.008775,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230693,0.008775,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230693,0.008775,-0.009503,0.249819,0,0);}
.mbc_c00052{transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);}
.mf3_c00052{transform:matrix(0.231028,0.008788,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231028,0.008788,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231028,0.008788,-0.009503,0.249819,0,0);}
.m19_c00052{transform:matrix(0.231045,0.003697,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231045,0.003697,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231045,0.003697,-0.003999,0.249968,0,0);}
.m31_c00052{transform:matrix(0.231055,0.003697,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231055,0.003697,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231055,0.003697,-0.003999,0.249968,0,0);}
.m4b_c00052{transform:matrix(0.232170,0.003715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232170,0.003715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232170,0.003715,-0.003999,0.249968,0,0);}
.m76_c00052{transform:matrix(0.232320,0.003717,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232320,0.003717,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232320,0.003717,-0.003999,0.249968,0,0);}
.m4d_c00052{transform:matrix(0.232430,0.003719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232430,0.003719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232430,0.003719,-0.003999,0.249968,0,0);}
.ma2_c00052{transform:matrix(0.232440,0.003719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232440,0.003719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232440,0.003719,-0.003999,0.249968,0,0);}
.m35_c00052{transform:matrix(0.232535,0.003721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232535,0.003721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232535,0.003721,-0.003999,0.249968,0,0);}
.mf1_c00052{transform:matrix(0.232982,0.008862,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232982,0.008862,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232982,0.008862,-0.009503,0.249819,0,0);}
.m9_c00052{transform:matrix(0.233160,0.003731,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233160,0.003731,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233160,0.003731,-0.003999,0.249968,0,0);}
.mba_c00052{transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);}
.mb7_c00052{transform:matrix(0.233995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233995,0.000000,0.000000,0.250000,0,0);}
.m5a_c00052{transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);}
.ma7_c00052{transform:matrix(0.234670,0.003755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234670,0.003755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234670,0.003755,-0.003999,0.249968,0,0);}
.mf4_c00052{transform:matrix(0.235025,0.008940,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235025,0.008940,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235025,0.008940,-0.009503,0.249819,0,0);}
.mc8_c00052{transform:matrix(0.235687,0.007306,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235687,0.007306,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235687,0.007306,-0.007746,0.249880,0,0);}
.ma4_c00052{transform:matrix(0.236805,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236805,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236805,0.003789,-0.003999,0.249968,0,0);}
.m53_c00052{transform:matrix(0.236885,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236885,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236885,0.003790,-0.003999,0.249968,0,0);}
.m86_c00052{transform:matrix(0.236940,0.003791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236940,0.003791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236940,0.003791,-0.003999,0.249968,0,0);}
.m71_c00052{transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);}
.m7a_c00052{transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);}
.m1d_c00052{transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);}
.med_c00052{transform:matrix(0.246262,0.009367,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246262,0.009367,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246262,0.009367,-0.009503,0.249819,0,0);}
.mb3_c00052{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00052{transform:matrix(0.247928,0.003967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247928,0.003967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247928,0.003967,-0.003999,0.249968,0,0);}
.m70_c00052{transform:matrix(0.247963,0.003967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247963,0.003967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247963,0.003967,-0.003999,0.249968,0,0);}
.m40_c00052{transform:matrix(0.249573,0.003993,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249573,0.003993,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249573,0.003993,-0.003999,0.249968,0,0);}
.m54_c00052{transform:matrix(0.252153,0.004034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252153,0.004034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252153,0.004034,-0.003999,0.249968,0,0);}
.mb4_c00052{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.m9f_c00052{transform:matrix(0.252568,0.004041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252568,0.004041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252568,0.004041,-0.003999,0.249968,0,0);}
.m47_c00052{transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);}
.mb5_c00052{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.me2_c00052{transform:matrix(0.254778,0.007898,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254778,0.007898,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254778,0.007898,-0.007746,0.249880,0,0);}
.m5c_c00052{transform:matrix(0.256482,0.004104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256482,0.004104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256482,0.004104,-0.003999,0.249968,0,0);}
.m49_c00052{transform:matrix(0.256797,0.004109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256797,0.004109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256797,0.004109,-0.003999,0.249968,0,0);}
.me5_c00052{transform:matrix(0.261444,0.008105,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261444,0.008105,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261444,0.008105,-0.007746,0.249880,0,0);}
.m3e_c00052{transform:matrix(0.262766,0.004204,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262766,0.004204,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262766,0.004204,-0.003999,0.249968,0,0);}
.m6d_c00052{transform:matrix(0.266481,0.004264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266481,0.004264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266481,0.004264,-0.003999,0.249968,0,0);}
.mde_c00052{transform:matrix(0.267437,0.008291,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267437,0.008291,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267437,0.008291,-0.007746,0.249880,0,0);}
.mdd_c00052{transform:matrix(0.283209,0.008779,-0.007746,0.249880,0,0);-ms-transform:matrix(0.283209,0.008779,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.283209,0.008779,-0.007746,0.249880,0,0);}
.mc1_c00052{transform:matrix(0.293074,0.009085,-0.007746,0.249880,0,0);-ms-transform:matrix(0.293074,0.009085,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.293074,0.009085,-0.007746,0.249880,0,0);}
.m6e_c00052{transform:matrix(0.390385,0.006246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.390385,0.006246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.390385,0.006246,-0.003999,0.249968,0,0);}
.mec_c00052{transform:matrix(0.569483,0.021662,-0.009503,0.249819,0,0);-ms-transform:matrix(0.569483,0.021662,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.569483,0.021662,-0.009503,0.249819,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:0.000000px;}
.fc0_c00052{color:transparent;}
.fs10_c00052{font-size:51.450000px;}
.fsa_c00052{font-size:52.506720px;}
.fs15_c00052{font-size:53.535138px;}
.fs16_c00052{font-size:54.584846px;}
.fsb_c00052{font-size:54.606988px;}
.fs6_c00052{font-size:55.657123px;}
.fsf_c00052{font-size:56.700000px;}
.fse_c00052{font-size:57.750000px;}
.fs7_c00052{font-size:57.757392px;}
.fs11_c00052{font-size:57.777742px;}
.fs8_c00052{font-size:58.807526px;}
.fs13_c00052{font-size:58.828247px;}
.fs4_c00052{font-size:59.857660px;}
.fs5_c00052{font-size:60.907795px;}
.fs12_c00052{font-size:60.929255px;}
.fs14_c00052{font-size:61.979760px;}
.fs9_c00052{font-size:63.008063px;}
.fsc_c00052{font-size:65.108332px;}
.fsd_c00052{font-size:66.158467px;}
.fs3_c00052{font-size:67.208601px;}
.fs1_c00052{font-size:68.258735px;}
.fs2_c00052{font-size:70.359004px;}
.fs0_c00052{font-size:79.810214px;}
.y0_c00052{bottom:0.000000px;}
.yf5_c00052{bottom:24.780347px;}
.yf4_c00052{bottom:27.581151px;}
.yf3_c00052{bottom:39.479295px;}
.yf2_c00052{bottom:40.204392px;}
.yf1_c00052{bottom:42.442212px;}
.yf0_c00052{bottom:43.394511px;}
.yef_c00052{bottom:46.422522px;}
.yee_c00052{bottom:47.181990px;}
.yed_c00052{bottom:47.719158px;}
.yec_c00052{bottom:49.686000px;}
.yeb_c00052{bottom:51.463644px;}
.yea_c00052{bottom:53.497125px;}
.ye9_c00052{bottom:54.562100px;}
.ye8_c00052{bottom:55.508157px;}
.ye7_c00052{bottom:57.516725px;}
.ye6_c00052{bottom:59.075375px;}
.ye5_c00052{bottom:60.354200px;}
.ye4_c00052{bottom:62.074328px;}
.ye3_c00052{bottom:68.203023px;}
.ye2_c00052{bottom:69.447060px;}
.ye1_c00052{bottom:71.712156px;}
.ye0_c00052{bottom:74.141033px;}
.ydf_c00052{bottom:75.927680px;}
.yde_c00052{bottom:76.734899px;}
.ydd_c00052{bottom:78.823821px;}
.ydc_c00052{bottom:86.885739px;}
.ydb_c00052{bottom:88.650522px;}
.yda_c00052{bottom:89.072295px;}
.yd9_c00052{bottom:90.928964px;}
.yd8_c00052{bottom:91.518732px;}
.yd7_c00052{bottom:92.025264px;}
.yd6_c00052{bottom:92.784749px;}
.yd5_c00052{bottom:94.684314px;}
.yd4_c00052{bottom:95.621327px;}
.yd3_c00052{bottom:96.380532px;}
.yd2_c00052{bottom:106.093269px;}
.yd1_c00052{bottom:106.691342px;}
.yd0_c00052{bottom:107.379344px;}
.ycf_c00052{bottom:108.326393px;}
.yce_c00052{bottom:110.164227px;}
.ycd_c00052{bottom:111.069543px;}
.ycc_c00052{bottom:112.852997px;}
.ycb_c00052{bottom:118.940976px;}
.yca_c00052{bottom:123.022527px;}
.yc9_c00052{bottom:125.619939px;}
.yc8_c00052{bottom:127.170111px;}
.yc7_c00052{bottom:127.828779px;}
.yc6_c00052{bottom:130.149015px;}
.yc5_c00052{bottom:139.527524px;}
.yc4_c00052{bottom:140.521275px;}
.yc3_c00052{bottom:143.287235px;}
.yc2_c00052{bottom:145.466783px;}
.yc1_c00052{bottom:146.523495px;}
.yc0_c00052{bottom:146.875500px;}
.ybf_c00052{bottom:157.116000px;}
.ybe_c00052{bottom:158.916000px;}
.ybd_c00052{bottom:160.179000px;}
.ybc_c00052{bottom:162.795000px;}
.ybb_c00052{bottom:164.190000px;}
.yba_c00052{bottom:172.011000px;}
.yb9_c00052{bottom:173.803500px;}
.yb8_c00052{bottom:174.247500px;}
.yb7_c00052{bottom:177.328500px;}
.yb6_c00052{bottom:179.286000px;}
.yb5_c00052{bottom:183.600000px;}
.yb4_c00052{bottom:188.203536px;}
.yb3_c00052{bottom:189.648000px;}
.yb2_c00052{bottom:190.333848px;}
.yb1_c00052{bottom:190.786344px;}
.yb0_c00052{bottom:191.458344px;}
.yaf_c00052{bottom:191.926224px;}
.yae_c00052{bottom:193.873716px;}
.yad_c00052{bottom:194.414952px;}
.yac_c00052{bottom:195.503244px;}
.yab_c00052{bottom:195.974640px;}
.yaa_c00052{bottom:205.881024px;}
.ya9_c00052{bottom:208.046700px;}
.ya8_c00052{bottom:208.757196px;}
.ya7_c00052{bottom:209.320632px;}
.ya6_c00052{bottom:210.768768px;}
.ya5_c00052{bottom:211.528164px;}
.ya4_c00052{bottom:212.176740px;}
.ya3_c00052{bottom:222.461076px;}
.ya2_c00052{bottom:222.952896px;}
.ya1_c00052{bottom:224.339184px;}
.ya0_c00052{bottom:226.018140px;}
.y9f_c00052{bottom:226.562496px;}
.y9e_c00052{bottom:227.585436px;}
.y9d_c00052{bottom:228.007452px;}
.y9c_c00052{bottom:229.186956px;}
.y9b_c00052{bottom:239.301420px;}
.y9a_c00052{bottom:239.814396px;}
.y99_c00052{bottom:240.648600px;}
.y98_c00052{bottom:242.330988px;}
.y97_c00052{bottom:242.706852px;}
.y96_c00052{bottom:244.101048px;}
.y95_c00052{bottom:244.560228px;}
.y94_c00052{bottom:245.926344px;}
.y93_c00052{bottom:256.520100px;}
.y92_c00052{bottom:257.924136px;}
.y91_c00052{bottom:258.282540px;}
.y90_c00052{bottom:259.756680px;}
.y8f_c00052{bottom:261.191508px;}
.y8e_c00052{bottom:261.691032px;}
.y8d_c00052{bottom:262.742580px;}
.y8c_c00052{bottom:263.207676px;}
.y8b_c00052{bottom:273.807240px;}
.y8a_c00052{bottom:274.300128px;}
.y89_c00052{bottom:276.042384px;}
.y88_c00052{bottom:276.575640px;}
.y87_c00052{bottom:278.276208px;}
.y86_c00052{bottom:279.289020px;}
.y85_c00052{bottom:279.734544px;}
.y84_c00052{bottom:280.489812px;}
.y83_c00052{bottom:293.498760px;}
.y82_c00052{bottom:294.284628px;}
.y81_c00052{bottom:294.596556px;}
.y80_c00052{bottom:295.589172px;}
.y7f_c00052{bottom:296.046180px;}
.y7e_c00052{bottom:296.784120px;}
.y7d_c00052{bottom:297.496560px;}
.y7c_c00052{bottom:308.184480px;}
.y7b_c00052{bottom:308.642196px;}
.y7a_c00052{bottom:309.858504px;}
.y79_c00052{bottom:310.248072px;}
.y78_c00052{bottom:310.980864px;}
.y77_c00052{bottom:312.012384px;}
.y76_c00052{bottom:313.292172px;}
.y75_c00052{bottom:314.241672px;}
.y74_c00052{bottom:325.746456px;}
.y73_c00052{bottom:326.109144px;}
.y72_c00052{bottom:326.623440px;}
.y71_c00052{bottom:327.207600px;}
.y70_c00052{bottom:328.218288px;}
.y6f_c00052{bottom:328.593000px;}
.y6e_c00052{bottom:329.315616px;}
.y6d_c00052{bottom:329.643960px;}
.y6c_c00052{bottom:330.171288px;}
.y6b_c00052{bottom:342.718512px;}
.y6a_c00052{bottom:343.093200px;}
.y69_c00052{bottom:343.426716px;}
.y68_c00052{bottom:344.073984px;}
.y67_c00052{bottom:344.308440px;}
.y66_c00052{bottom:344.543856px;}
.y65_c00052{bottom:345.338160px;}
.y64_c00052{bottom:345.832776px;}
.y63_c00052{bottom:359.105748px;}
.y62_c00052{bottom:359.436072px;}
.y61_c00052{bottom:360.343944px;}
.y60_c00052{bottom:360.578808px;}
.y5f_c00052{bottom:360.990108px;}
.y5e_c00052{bottom:361.174644px;}
.y5d_c00052{bottom:362.510640px;}
.y5c_c00052{bottom:362.846184px;}
.y5b_c00052{bottom:375.522252px;}
.y5a_c00052{bottom:375.852744px;}
.y59_c00052{bottom:376.922376px;}
.y58_c00052{bottom:377.411724px;}
.y57_c00052{bottom:378.074028px;}
.y56_c00052{bottom:378.349752px;}
.y55_c00052{bottom:379.860492px;}
.y54_c00052{bottom:392.169696px;}
.y53_c00052{bottom:393.223704px;}
.y52_c00052{bottom:393.543552px;}
.y51_c00052{bottom:394.100688px;}
.y50_c00052{bottom:394.479480px;}
.y4f_c00052{bottom:394.705200px;}
.y4e_c00052{bottom:395.638488px;}
.y4d_c00052{bottom:396.602424px;}
.y4c_c00052{bottom:409.428360px;}
.y4b_c00052{bottom:410.531136px;}
.y4a_c00052{bottom:411.676008px;}
.y49_c00052{bottom:412.051800px;}
.y48_c00052{bottom:412.768824px;}
.y47_c00052{bottom:413.097240px;}
.y46_c00052{bottom:413.883648px;}
.y45_c00052{bottom:426.190584px;}
.y44_c00052{bottom:426.625464px;}
.y43_c00052{bottom:427.412748px;}
.y42_c00052{bottom:428.004996px;}
.y41_c00052{bottom:428.579328px;}
.y40_c00052{bottom:428.973912px;}
.y3f_c00052{bottom:429.275964px;}
.y3b_c00052{bottom:444.456876px;}
.y3d_c00052{bottom:444.456948px;}
.y3c_c00052{bottom:444.457008px;}
.y3e_c00052{bottom:444.457416px;}
.y3a_c00052{bottom:444.457572px;}
.y39_c00052{bottom:444.458280px;}
.y38_c00052{bottom:444.458364px;}
.y35_c00052{bottom:461.709540px;}
.y37_c00052{bottom:461.709636px;}
.y34_c00052{bottom:461.709816px;}
.y33_c00052{bottom:461.709828px;}
.y36_c00052{bottom:461.710104px;}
.y32_c00052{bottom:477.877836px;}
.y31_c00052{bottom:477.878064px;}
.y2f_c00052{bottom:477.878400px;}
.y2e_c00052{bottom:477.878628px;}
.y30_c00052{bottom:477.878796px;}
.y2d_c00052{bottom:477.878940px;}
.y2c_c00052{bottom:493.615152px;}
.y2b_c00052{bottom:493.843404px;}
.y2a_c00052{bottom:494.904984px;}
.y29_c00052{bottom:495.133284px;}
.y28_c00052{bottom:495.374496px;}
.y27_c00052{bottom:495.606528px;}
.y26_c00052{bottom:495.935160px;}
.y25_c00052{bottom:496.521588px;}
.y24_c00052{bottom:496.788480px;}
.y23_c00052{bottom:511.002720px;}
.y22_c00052{bottom:511.308792px;}
.y21_c00052{bottom:511.920600px;}
.y20_c00052{bottom:512.149668px;}
.y1f_c00052{bottom:512.675808px;}
.y1e_c00052{bottom:513.270264px;}
.y1d_c00052{bottom:513.658344px;}
.y1c_c00052{bottom:513.801228px;}
.y1b_c00052{bottom:528.018120px;}
.y1a_c00052{bottom:528.568908px;}
.y19_c00052{bottom:528.829452px;}
.y18_c00052{bottom:529.524240px;}
.y17_c00052{bottom:529.860024px;}
.y16_c00052{bottom:530.709660px;}
.y15_c00052{bottom:531.363732px;}
.y14_c00052{bottom:531.623556px;}
.y13_c00052{bottom:544.809948px;}
.y12_c00052{bottom:545.034528px;}
.y11_c00052{bottom:545.301372px;}
.y10_c00052{bottom:545.834844px;}
.yf_c00052{bottom:546.000264px;}
.ye_c00052{bottom:547.250280px;}
.yd_c00052{bottom:547.604544px;}
.yc_c00052{bottom:547.858356px;}
.yb_c00052{bottom:548.367756px;}
.ya_c00052{bottom:561.524244px;}
.y9_c00052{bottom:561.766440px;}
.y8_c00052{bottom:562.129200px;}
.y7_c00052{bottom:562.621212px;}
.y6_c00052{bottom:563.164692px;}
.y5_c00052{bottom:564.034248px;}
.y4_c00052{bottom:564.672804px;}
.y3_c00052{bottom:565.380432px;}
.y2_c00052{bottom:577.569792px;}
.y1_c00052{bottom:579.420000px;}
.h12_c00052{height:51.450000px;}
.hc_c00052{height:52.506720px;}
.h17_c00052{height:53.535138px;}
.h18_c00052{height:54.584846px;}
.hd_c00052{height:54.606988px;}
.h8_c00052{height:55.657123px;}
.h11_c00052{height:56.700000px;}
.h10_c00052{height:57.750000px;}
.h9_c00052{height:57.757392px;}
.h13_c00052{height:57.777742px;}
.ha_c00052{height:58.807526px;}
.h15_c00052{height:58.828247px;}
.h6_c00052{height:59.857660px;}
.h7_c00052{height:60.907795px;}
.h14_c00052{height:60.929255px;}
.h16_c00052{height:61.979760px;}
.hb_c00052{height:63.008063px;}
.he_c00052{height:65.108332px;}
.hf_c00052{height:66.158467px;}
.h5_c00052{height:67.208601px;}
.h3_c00052{height:68.258735px;}
.h4_c00052{height:70.359004px;}
.h2_c00052{height:79.810214px;}
.h0_c00052{height:618.570000px;}
.h1_c00052{height:618.750000px;}
.w0_c00052{width:361.200000px;}
.w1_c00052{width:361.500000px;}
.x0_c00052{left:0.000000px;}
.x46_c00052{left:20.687724px;}
.x3_c00052{left:21.974772px;}
.x1e_c00052{left:23.124876px;}
.x36_c00052{left:24.413568px;}
.x17_c00052{left:27.445116px;}
.x3d_c00052{left:33.028344px;}
.x71_c00052{left:35.806500px;}
.x18_c00052{left:40.407648px;}
.x1_c00052{left:42.106500px;}
.x47_c00052{left:44.659992px;}
.x6d_c00052{left:46.317000px;}
.x1f_c00052{left:47.401320px;}
.x66_c00052{left:50.494884px;}
.x29_c00052{left:52.925388px;}
.x59_c00052{left:54.782004px;}
.x4f_c00052{left:56.804868px;}
.xb_c00052{left:61.678152px;}
.x32_c00052{left:65.523972px;}
.x2a_c00052{left:70.478376px;}
.x4_c00052{left:72.484380px;}
.x37_c00052{left:73.564068px;}
.x19_c00052{left:75.727980px;}
.x50_c00052{left:77.326368px;}
.xc_c00052{left:81.198588px;}
.x5f_c00052{left:83.715264px;}
.x79_c00052{left:84.753741px;}
.x6e_c00052{left:85.956000px;}
.x5c_c00052{left:90.034404px;}
.x62_c00052{left:91.557744px;}
.x13_c00052{left:92.767800px;}
.x38_c00052{left:94.090068px;}
.x33_c00052{left:98.437584px;}
.x20_c00052{left:100.651068px;}
.x60_c00052{left:103.693032px;}
.x2e_c00052{left:105.584400px;}
.xd_c00052{left:108.403884px;}
.x5d_c00052{left:111.783480px;}
.x42_c00052{left:113.236404px;}
.x6f_c00052{left:116.910000px;}
.x5_c00052{left:118.114344px;}
.x51_c00052{left:122.489868px;}
.x1a_c00052{left:129.760800px;}
.x55_c00052{left:131.015328px;}
.x4d_c00052{left:132.506580px;}
.x63_c00052{left:134.204796px;}
.x39_c00052{left:138.904068px;}
.x48_c00052{left:140.069040px;}
.x2b_c00052{left:143.117976px;}
.x72_c00052{left:144.383453px;}
.x26_c00052{left:145.546224px;}
.x2f_c00052{left:149.599656px;}
.x77_c00052{left:150.609758px;}
.x21_c00052{left:151.634148px;}
.x49_c00052{left:153.290472px;}
.x74_c00052{left:155.278478px;}
.x2_c00052{left:157.744500px;}
.x3a_c00052{left:162.391068px;}
.x61_c00052{left:164.292240px;}
.x3e_c00052{left:165.712344px;}
.x43_c00052{left:168.393516px;}
.x75_c00052{left:170.649548px;}
.x22_c00052{left:173.555400px;}
.x1b_c00052{left:177.554616px;}
.x6_c00052{left:180.244836px;}
.x73_c00052{left:181.384892px;}
.x2c_c00052{left:182.813628px;}
.x14_c00052{left:184.017192px;}
.x27_c00052{left:188.751288px;}
.x23_c00052{left:194.294556px;}
.x34_c00052{left:195.636300px;}
.x44_c00052{left:197.196060px;}
.x1c_c00052{left:198.341772px;}
.x4a_c00052{left:199.395936px;}
.x5a_c00052{left:202.458240px;}
.xe_c00052{left:204.534492px;}
.x52_c00052{left:209.077368px;}
.x30_c00052{left:210.087636px;}
.x70_c00052{left:213.570000px;}
.x56_c00052{left:215.028108px;}
.xf_c00052{left:217.217592px;}
.x7_c00052{left:219.088584px;}
.x3f_c00052{left:224.207844px;}
.x64_c00052{left:226.837440px;}
.x31_c00052{left:228.719412px;}
.x78_c00052{left:230.469924px;}
.x3b_c00052{left:233.945568px;}
.x6c_c00052{left:235.461000px;}
.x15_c00052{left:237.475260px;}
.x58_c00052{left:239.087916px;}
.x68_c00052{left:241.505748px;}
.x40_c00052{left:244.198344px;}
.x53_c00052{left:245.587368px;}
.x8_c00052{left:254.246712px;}
.x10_c00052{left:258.249060px;}
.x45_c00052{left:260.109552px;}
.x35_c00052{left:261.252000px;}
.x4b_c00052{left:264.202500px;}
.x69_c00052{left:267.867024px;}
.x4e_c00052{left:272.847300px;}
.x76_c00052{left:273.877089px;}
.x54_c00052{left:277.730868px;}
.x11_c00052{left:278.771544px;}
.x9_c00052{left:280.107528px;}
.x1d_c00052{left:281.778444px;}
.x2d_c00052{left:284.077548px;}
.x67_c00052{left:285.754764px;}
.x4c_c00052{left:287.754744px;}
.x24_c00052{left:290.744760px;}
.x5b_c00052{left:291.891876px;}
.x12_c00052{left:296.089884px;}
.xa_c00052{left:297.401580px;}
.x16_c00052{left:299.905260px;}
.x7a_c00052{left:301.375403px;}
.x3c_c00052{left:302.869068px;}
.x65_c00052{left:305.115432px;}
.x28_c00052{left:306.216336px;}
.x41_c00052{left:310.073844px;}
.x25_c00052{left:311.480916px;}
.x57_c00052{left:313.244736px;}
.x5e_c00052{left:314.848728px;}
.x6b_c00052{left:319.140000px;}
.x6a_c00052{left:323.449644px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
.fs10_c00052{font-size:45.733333pt;}
.fsa_c00052{font-size:46.672640pt;}
.fs15_c00052{font-size:47.586789pt;}
.fs16_c00052{font-size:48.519863pt;}
.fsb_c00052{font-size:48.539545pt;}
.fs6_c00052{font-size:49.472998pt;}
.fsf_c00052{font-size:50.400000pt;}
.fse_c00052{font-size:51.333333pt;}
.fs7_c00052{font-size:51.339904pt;}
.fs11_c00052{font-size:51.357993pt;}
.fs8_c00052{font-size:52.273356pt;}
.fs13_c00052{font-size:52.291775pt;}
.fs4_c00052{font-size:53.206809pt;}
.fs5_c00052{font-size:54.140262pt;}
.fs12_c00052{font-size:54.159338pt;}
.fs14_c00052{font-size:55.093120pt;}
.fs9_c00052{font-size:56.007168pt;}
.fsc_c00052{font-size:57.874073pt;}
.fsd_c00052{font-size:58.807526pt;}
.fs3_c00052{font-size:59.740979pt;}
.fs1_c00052{font-size:60.674432pt;}
.fs2_c00052{font-size:62.541337pt;}
.fs0_c00052{font-size:70.942412pt;}
.y0_c00052{bottom:0.000000pt;}
.yf5_c00052{bottom:22.026975pt;}
.yf4_c00052{bottom:24.516579pt;}
.yf3_c00052{bottom:35.092707pt;}
.yf2_c00052{bottom:35.737237pt;}
.yf1_c00052{bottom:37.726411pt;}
.yf0_c00052{bottom:38.572899pt;}
.yef_c00052{bottom:41.264464pt;}
.yee_c00052{bottom:41.939547pt;}
.yed_c00052{bottom:42.417029pt;}
.yec_c00052{bottom:44.165333pt;}
.yeb_c00052{bottom:45.745461pt;}
.yea_c00052{bottom:47.553000pt;}
.ye9_c00052{bottom:48.499644pt;}
.ye8_c00052{bottom:49.340584pt;}
.ye7_c00052{bottom:51.125977pt;}
.ye6_c00052{bottom:52.511444pt;}
.ye5_c00052{bottom:53.648177pt;}
.ye4_c00052{bottom:55.177180pt;}
.ye3_c00052{bottom:60.624909pt;}
.ye2_c00052{bottom:61.730720pt;}
.ye1_c00052{bottom:63.744139pt;}
.ye0_c00052{bottom:65.903140pt;}
.ydf_c00052{bottom:67.491271pt;}
.yde_c00052{bottom:68.208799pt;}
.ydd_c00052{bottom:70.065619pt;}
.ydc_c00052{bottom:77.231768pt;}
.ydb_c00052{bottom:78.800464pt;}
.yda_c00052{bottom:79.175373pt;}
.yd9_c00052{bottom:80.825745pt;}
.yd8_c00052{bottom:81.349984pt;}
.yd7_c00052{bottom:81.800235pt;}
.yd6_c00052{bottom:82.475332pt;}
.yd5_c00052{bottom:84.163835pt;}
.yd4_c00052{bottom:84.996735pt;}
.yd3_c00052{bottom:85.671584pt;}
.yd2_c00052{bottom:94.305128pt;}
.yd1_c00052{bottom:94.836748pt;}
.yd0_c00052{bottom:95.448305pt;}
.ycf_c00052{bottom:96.290127pt;}
.yce_c00052{bottom:97.923757pt;}
.ycd_c00052{bottom:98.728483pt;}
.ycc_c00052{bottom:100.313775pt;}
.ycb_c00052{bottom:105.725312pt;}
.yca_c00052{bottom:109.353357pt;}
.yc9_c00052{bottom:111.662168pt;}
.yc8_c00052{bottom:113.040099pt;}
.yc7_c00052{bottom:113.625581pt;}
.yc6_c00052{bottom:115.688013pt;}
.yc5_c00052{bottom:124.024465pt;}
.yc4_c00052{bottom:124.907800pt;}
.yc3_c00052{bottom:127.366431pt;}
.yc2_c00052{bottom:129.303807pt;}
.yc1_c00052{bottom:130.243107pt;}
.yc0_c00052{bottom:130.556000pt;}
.ybf_c00052{bottom:139.658667pt;}
.ybe_c00052{bottom:141.258667pt;}
.ybd_c00052{bottom:142.381333pt;}
.ybc_c00052{bottom:144.706667pt;}
.ybb_c00052{bottom:145.946667pt;}
.yba_c00052{bottom:152.898667pt;}
.yb9_c00052{bottom:154.492000pt;}
.yb8_c00052{bottom:154.886667pt;}
.yb7_c00052{bottom:157.625333pt;}
.yb6_c00052{bottom:159.365333pt;}
.yb5_c00052{bottom:163.200000pt;}
.yb4_c00052{bottom:167.292032pt;}
.yb3_c00052{bottom:168.576000pt;}
.yb2_c00052{bottom:169.185643pt;}
.yb1_c00052{bottom:169.587861pt;}
.yb0_c00052{bottom:170.185195pt;}
.yaf_c00052{bottom:170.601088pt;}
.yae_c00052{bottom:172.332192pt;}
.yad_c00052{bottom:172.813291pt;}
.yac_c00052{bottom:173.780661pt;}
.yab_c00052{bottom:174.199680pt;}
.yaa_c00052{bottom:183.005355pt;}
.ya9_c00052{bottom:184.930400pt;}
.ya8_c00052{bottom:185.561952pt;}
.ya7_c00052{bottom:186.062784pt;}
.ya6_c00052{bottom:187.350016pt;}
.ya5_c00052{bottom:188.025035pt;}
.ya4_c00052{bottom:188.601547pt;}
.ya3_c00052{bottom:197.743179pt;}
.ya2_c00052{bottom:198.180352pt;}
.ya1_c00052{bottom:199.412608pt;}
.ya0_c00052{bottom:200.905013pt;}
.y9f_c00052{bottom:201.388885pt;}
.y9e_c00052{bottom:202.298165pt;}
.y9d_c00052{bottom:202.673291pt;}
.y9c_c00052{bottom:203.721739pt;}
.y9b_c00052{bottom:212.712373pt;}
.y9a_c00052{bottom:213.168352pt;}
.y99_c00052{bottom:213.909867pt;}
.y98_c00052{bottom:215.405323pt;}
.y97_c00052{bottom:215.739424pt;}
.y96_c00052{bottom:216.978709pt;}
.y95_c00052{bottom:217.386869pt;}
.y94_c00052{bottom:218.601195pt;}
.y93_c00052{bottom:228.017867pt;}
.y92_c00052{bottom:229.265899pt;}
.y91_c00052{bottom:229.584480pt;}
.y90_c00052{bottom:230.894827pt;}
.y8f_c00052{bottom:232.170229pt;}
.y8e_c00052{bottom:232.614251pt;}
.y8d_c00052{bottom:233.548960pt;}
.y8c_c00052{bottom:233.962379pt;}
.y8b_c00052{bottom:243.384213pt;}
.y8a_c00052{bottom:243.822336pt;}
.y89_c00052{bottom:245.371008pt;}
.y88_c00052{bottom:245.845013pt;}
.y87_c00052{bottom:247.356629pt;}
.y86_c00052{bottom:248.256907pt;}
.y85_c00052{bottom:248.652928pt;}
.y84_c00052{bottom:249.324277pt;}
.y83_c00052{bottom:260.887787pt;}
.y82_c00052{bottom:261.586336pt;}
.y81_c00052{bottom:261.863605pt;}
.y80_c00052{bottom:262.745931pt;}
.y7f_c00052{bottom:263.152160pt;}
.y7e_c00052{bottom:263.808107pt;}
.y7d_c00052{bottom:264.441387pt;}
.y7c_c00052{bottom:273.941760pt;}
.y7b_c00052{bottom:274.348619pt;}
.y7a_c00052{bottom:275.429781pt;}
.y79_c00052{bottom:275.776064pt;}
.y78_c00052{bottom:276.427435pt;}
.y77_c00052{bottom:277.344341pt;}
.y76_c00052{bottom:278.481931pt;}
.y75_c00052{bottom:279.325931pt;}
.y74_c00052{bottom:289.552405pt;}
.y73_c00052{bottom:289.874795pt;}
.y72_c00052{bottom:290.331947pt;}
.y71_c00052{bottom:290.851200pt;}
.y70_c00052{bottom:291.749589pt;}
.y6f_c00052{bottom:292.082667pt;}
.y6e_c00052{bottom:292.724992pt;}
.y6d_c00052{bottom:293.016853pt;}
.y6c_c00052{bottom:293.485589pt;}
.y6b_c00052{bottom:304.638677pt;}
.y6a_c00052{bottom:304.971733pt;}
.y69_c00052{bottom:305.268192pt;}
.y68_c00052{bottom:305.843541pt;}
.y67_c00052{bottom:306.051947pt;}
.y66_c00052{bottom:306.261205pt;}
.y65_c00052{bottom:306.967253pt;}
.y64_c00052{bottom:307.406912pt;}
.y63_c00052{bottom:319.205109pt;}
.y62_c00052{bottom:319.498731pt;}
.y61_c00052{bottom:320.305728pt;}
.y60_c00052{bottom:320.514496pt;}
.y5f_c00052{bottom:320.880096pt;}
.y5e_c00052{bottom:321.044128pt;}
.y5d_c00052{bottom:322.231680pt;}
.y5c_c00052{bottom:322.529941pt;}
.y5b_c00052{bottom:333.797557pt;}
.y5a_c00052{bottom:334.091328pt;}
.y59_c00052{bottom:335.042112pt;}
.y58_c00052{bottom:335.477088pt;}
.y57_c00052{bottom:336.065803pt;}
.y56_c00052{bottom:336.310891pt;}
.y55_c00052{bottom:337.653771pt;}
.y54_c00052{bottom:348.595285pt;}
.y53_c00052{bottom:349.532181pt;}
.y52_c00052{bottom:349.816491pt;}
.y51_c00052{bottom:350.311723pt;}
.y50_c00052{bottom:350.648427pt;}
.y4f_c00052{bottom:350.849067pt;}
.y4e_c00052{bottom:351.678656pt;}
.y4d_c00052{bottom:352.535488pt;}
.y4c_c00052{bottom:363.936320pt;}
.y4b_c00052{bottom:364.916565pt;}
.y4a_c00052{bottom:365.934229pt;}
.y49_c00052{bottom:366.268267pt;}
.y48_c00052{bottom:366.905621pt;}
.y47_c00052{bottom:367.197547pt;}
.y46_c00052{bottom:367.896576pt;}
.y45_c00052{bottom:378.836075pt;}
.y44_c00052{bottom:379.222635pt;}
.y43_c00052{bottom:379.922443pt;}
.y42_c00052{bottom:380.448885pt;}
.y41_c00052{bottom:380.959403pt;}
.y40_c00052{bottom:381.310144pt;}
.y3f_c00052{bottom:381.578635pt;}
.y3b_c00052{bottom:395.072779pt;}
.y3d_c00052{bottom:395.072843pt;}
.y3c_c00052{bottom:395.072896pt;}
.y3e_c00052{bottom:395.073259pt;}
.y3a_c00052{bottom:395.073397pt;}
.y39_c00052{bottom:395.074027pt;}
.y38_c00052{bottom:395.074101pt;}
.y35_c00052{bottom:410.408480pt;}
.y37_c00052{bottom:410.408565pt;}
.y34_c00052{bottom:410.408725pt;}
.y33_c00052{bottom:410.408736pt;}
.y36_c00052{bottom:410.408981pt;}
.y32_c00052{bottom:424.780299pt;}
.y31_c00052{bottom:424.780501pt;}
.y2f_c00052{bottom:424.780800pt;}
.y2e_c00052{bottom:424.781003pt;}
.y30_c00052{bottom:424.781152pt;}
.y2d_c00052{bottom:424.781280pt;}
.y2c_c00052{bottom:438.769024pt;}
.y2b_c00052{bottom:438.971915pt;}
.y2a_c00052{bottom:439.915541pt;}
.y29_c00052{bottom:440.118475pt;}
.y28_c00052{bottom:440.332885pt;}
.y27_c00052{bottom:440.539136pt;}
.y26_c00052{bottom:440.831253pt;}
.y25_c00052{bottom:441.352523pt;}
.y24_c00052{bottom:441.589760pt;}
.y23_c00052{bottom:454.224640pt;}
.y22_c00052{bottom:454.496704pt;}
.y21_c00052{bottom:455.040533pt;}
.y20_c00052{bottom:455.244149pt;}
.y1f_c00052{bottom:455.711829pt;}
.y1e_c00052{bottom:456.240235pt;}
.y1d_c00052{bottom:456.585195pt;}
.y1c_c00052{bottom:456.712203pt;}
.y1b_c00052{bottom:469.349440pt;}
.y1a_c00052{bottom:469.839029pt;}
.y19_c00052{bottom:470.070624pt;}
.y18_c00052{bottom:470.688213pt;}
.y17_c00052{bottom:470.986688pt;}
.y16_c00052{bottom:471.741920pt;}
.y15_c00052{bottom:472.323317pt;}
.y14_c00052{bottom:472.554272pt;}
.y13_c00052{bottom:484.275509pt;}
.y12_c00052{bottom:484.475136pt;}
.y11_c00052{bottom:484.712331pt;}
.y10_c00052{bottom:485.186528pt;}
.yf_c00052{bottom:485.333568pt;}
.ye_c00052{bottom:486.444693pt;}
.yd_c00052{bottom:486.759595pt;}
.yc_c00052{bottom:486.985205pt;}
.yb_c00052{bottom:487.438005pt;}
.ya_c00052{bottom:499.132661pt;}
.y9_c00052{bottom:499.347947pt;}
.y8_c00052{bottom:499.670400pt;}
.y7_c00052{bottom:500.107744pt;}
.y6_c00052{bottom:500.590837pt;}
.y5_c00052{bottom:501.363776pt;}
.y4_c00052{bottom:501.931381pt;}
.y3_c00052{bottom:502.560384pt;}
.y2_c00052{bottom:513.395371pt;}
.y1_c00052{bottom:515.040000pt;}
.h12_c00052{height:45.733333pt;}
.hc_c00052{height:46.672640pt;}
.h17_c00052{height:47.586789pt;}
.h18_c00052{height:48.519863pt;}
.hd_c00052{height:48.539545pt;}
.h8_c00052{height:49.472998pt;}
.h11_c00052{height:50.400000pt;}
.h10_c00052{height:51.333333pt;}
.h9_c00052{height:51.339904pt;}
.h13_c00052{height:51.357993pt;}
.ha_c00052{height:52.273356pt;}
.h15_c00052{height:52.291775pt;}
.h6_c00052{height:53.206809pt;}
.h7_c00052{height:54.140262pt;}
.h14_c00052{height:54.159338pt;}
.h16_c00052{height:55.093120pt;}
.hb_c00052{height:56.007168pt;}
.he_c00052{height:57.874073pt;}
.hf_c00052{height:58.807526pt;}
.h5_c00052{height:59.740979pt;}
.h3_c00052{height:60.674432pt;}
.h4_c00052{height:62.541337pt;}
.h2_c00052{height:70.942412pt;}
.h0_c00052{height:549.840000pt;}
.h1_c00052{height:550.000000pt;}
.w0_c00052{width:321.066667pt;}
.w1_c00052{width:321.333333pt;}
.x0_c00052{left:0.000000pt;}
.x46_c00052{left:18.389088pt;}
.x3_c00052{left:19.533131pt;}
.x1e_c00052{left:20.555445pt;}
.x36_c00052{left:21.700949pt;}
.x17_c00052{left:24.395659pt;}
.x3d_c00052{left:29.358528pt;}
.x71_c00052{left:31.828000pt;}
.x18_c00052{left:35.917909pt;}
.x1_c00052{left:37.428000pt;}
.x47_c00052{left:39.697771pt;}
.x6d_c00052{left:41.170667pt;}
.x1f_c00052{left:42.134507pt;}
.x66_c00052{left:44.884341pt;}
.x29_c00052{left:47.044789pt;}
.x59_c00052{left:48.695115pt;}
.x4f_c00052{left:50.493216pt;}
.xb_c00052{left:54.825024pt;}
.x32_c00052{left:58.243531pt;}
.x2a_c00052{left:62.647445pt;}
.x4_c00052{left:64.430560pt;}
.x37_c00052{left:65.390283pt;}
.x19_c00052{left:67.313760pt;}
.x50_c00052{left:68.734549pt;}
.xc_c00052{left:72.176523pt;}
.x5f_c00052{left:74.413568pt;}
.x79_c00052{left:75.336659pt;}
.x6e_c00052{left:76.405333pt;}
.x5c_c00052{left:80.030581pt;}
.x62_c00052{left:81.384661pt;}
.x13_c00052{left:82.460267pt;}
.x38_c00052{left:83.635616pt;}
.x33_c00052{left:87.500075pt;}
.x20_c00052{left:89.467616pt;}
.x60_c00052{left:92.171584pt;}
.x2e_c00052{left:93.852800pt;}
.xd_c00052{left:96.359008pt;}
.x5d_c00052{left:99.363093pt;}
.x42_c00052{left:100.654581pt;}
.x6f_c00052{left:103.920000pt;}
.x5_c00052{left:104.990528pt;}
.x51_c00052{left:108.879883pt;}
.x1a_c00052{left:115.342933pt;}
.x55_c00052{left:116.458069pt;}
.x4d_c00052{left:117.783627pt;}
.x63_c00052{left:119.293152pt;}
.x39_c00052{left:123.470283pt;}
.x48_c00052{left:124.505813pt;}
.x2b_c00052{left:127.215979pt;}
.x72_c00052{left:128.340847pt;}
.x26_c00052{left:129.374421pt;}
.x2f_c00052{left:132.977472pt;}
.x77_c00052{left:133.875340pt;}
.x21_c00052{left:134.785909pt;}
.x49_c00052{left:136.258197pt;}
.x74_c00052{left:138.025313pt;}
.x2_c00052{left:140.217333pt;}
.x3a_c00052{left:144.347616pt;}
.x61_c00052{left:146.037547pt;}
.x3e_c00052{left:147.299861pt;}
.x43_c00052{left:149.683125pt;}
.x75_c00052{left:151.688487pt;}
.x22_c00052{left:154.271467pt;}
.x1b_c00052{left:157.826325pt;}
.x6_c00052{left:160.217632pt;}
.x73_c00052{left:161.231015pt;}
.x2c_c00052{left:162.501003pt;}
.x14_c00052{left:163.570837pt;}
.x27_c00052{left:167.778923pt;}
.x23_c00052{left:172.706272pt;}
.x34_c00052{left:173.898933pt;}
.x44_c00052{left:175.285387pt;}
.x1c_c00052{left:176.303797pt;}
.x4a_c00052{left:177.240832pt;}
.x5a_c00052{left:179.962880pt;}
.xe_c00052{left:181.808437pt;}
.x52_c00052{left:185.846549pt;}
.x30_c00052{left:186.744565pt;}
.x70_c00052{left:189.840000pt;}
.x56_c00052{left:191.136096pt;}
.xf_c00052{left:193.082304pt;}
.x7_c00052{left:194.745408pt;}
.x3f_c00052{left:199.295861pt;}
.x64_c00052{left:201.633280pt;}
.x31_c00052{left:203.306144pt;}
.x78_c00052{left:204.862155pt;}
.x3b_c00052{left:207.951616pt;}
.x6c_c00052{left:209.298667pt;}
.x15_c00052{left:211.089120pt;}
.x58_c00052{left:212.522592pt;}
.x68_c00052{left:214.671776pt;}
.x40_c00052{left:217.065195pt;}
.x53_c00052{left:218.299883pt;}
.x8_c00052{left:225.997077pt;}
.x10_c00052{left:229.554720pt;}
.x45_c00052{left:231.208491pt;}
.x35_c00052{left:232.224000pt;}
.x4b_c00052{left:234.846667pt;}
.x69_c00052{left:238.104021pt;}
.x4e_c00052{left:242.530933pt;}
.x76_c00052{left:243.446301pt;}
.x54_c00052{left:246.871883pt;}
.x11_c00052{left:247.796928pt;}
.x9_c00052{left:248.984469pt;}
.x1d_c00052{left:250.469728pt;}
.x2d_c00052{left:252.513376pt;}
.x67_c00052{left:254.004235pt;}
.x4c_c00052{left:255.781995pt;}
.x24_c00052{left:258.439787pt;}
.x5b_c00052{left:259.459445pt;}
.x12_c00052{left:263.191008pt;}
.xa_c00052{left:264.356960pt;}
.x16_c00052{left:266.582453pt;}
.x7a_c00052{left:267.889247pt;}
.x3c_c00052{left:269.216949pt;}
.x65_c00052{left:271.213717pt;}
.x28_c00052{left:272.192299pt;}
.x41_c00052{left:275.621195pt;}
.x25_c00052{left:276.871925pt;}
.x57_c00052{left:278.439765pt;}
.x5e_c00052{left:279.865536pt;}
.x6b_c00052{left:283.680000pt;}
.x6a_c00052{left:287.510795pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00053 {
    display:none;
  }
  .loading-indicator_c00053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00053 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00053 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00053" -> "#page-container .classname_c00053")
 */
.pf_c00053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00053 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00053 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00053 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00053 {overflow:visible;}
  }
}
.c_c00053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00053 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00053:after { /* webkit #35443 */
  content: '';
}
.t_c00053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00053 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00053 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00053 { /* info for Javascript */
  display:none;
}
.l_c00053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00053:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00053 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00053.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00053{transform:matrix(0.075810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075810,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.099145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099145,0.000000,0.000000,0.250000,0,0);}
.m91_c00053{transform:matrix(0.129247,0.003877,-0.007497,0.249888,0,0);-ms-transform:matrix(0.129247,0.003877,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.129247,0.003877,-0.007497,0.249888,0,0);}
.mb2_c00053{transform:matrix(0.143398,0.007608,-0.013245,0.249649,0,0);-ms-transform:matrix(0.143398,0.007608,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.143398,0.007608,-0.013245,0.249649,0,0);}
.m32_c00053{transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.mf5_c00053{transform:matrix(0.160216,0.004166,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160216,0.004166,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160216,0.004166,-0.006498,0.249916,0,0);}
.maf_c00053{transform:matrix(0.160409,0.008510,-0.013245,0.249649,0,0);-ms-transform:matrix(0.160409,0.008510,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.160409,0.008510,-0.013245,0.249649,0,0);}
.m84_c00053{transform:matrix(0.160563,0.004817,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160563,0.004817,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160563,0.004817,-0.007497,0.249888,0,0);}
.m9_c00053{transform:matrix(0.161940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161940,0.000000,0.000000,0.250000,0,0);}
.m83_c00053{transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);}
.m63_c00053{transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);}
.mef_c00053{transform:matrix(0.163056,0.008651,-0.013245,0.249649,0,0);-ms-transform:matrix(0.163056,0.008651,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.163056,0.008651,-0.013245,0.249649,0,0);}
.me4_c00053{transform:matrix(0.164419,0.008723,-0.013245,0.249649,0,0);-ms-transform:matrix(0.164419,0.008723,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.164419,0.008723,-0.013245,0.249649,0,0);}
.ma7_c00053{transform:matrix(0.164823,0.008744,-0.013245,0.249649,0,0);-ms-transform:matrix(0.164823,0.008744,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.164823,0.008744,-0.013245,0.249649,0,0);}
.me7_c00053{transform:matrix(0.165198,0.008764,-0.013245,0.249649,0,0);-ms-transform:matrix(0.165198,0.008764,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.165198,0.008764,-0.013245,0.249649,0,0);}
.m19_c00053{transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);}
.mf8_c00053{transform:matrix(0.166434,0.004327,-0.006498,0.249916,0,0);-ms-transform:matrix(0.166434,0.004327,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.166434,0.004327,-0.006498,0.249916,0,0);}
.m45_c00053{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m80_c00053{transform:matrix(0.167939,0.005038,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167939,0.005038,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167939,0.005038,-0.007497,0.249888,0,0);}
.mb0_c00053{transform:matrix(0.168188,0.008923,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168188,0.008923,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168188,0.008923,-0.013245,0.249649,0,0);}
.m4a_c00053{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.me0_c00053{transform:matrix(0.168288,0.008928,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168288,0.008928,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168288,0.008928,-0.013245,0.249649,0,0);}
.m6a_c00053{transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168845,0.000000,0.000000,0.250000,0,0);}
.m1d_c00053{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);}
.meb_c00053{transform:matrix(0.170785,0.009061,-0.013245,0.249649,0,0);-ms-transform:matrix(0.170785,0.009061,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.170785,0.009061,-0.013245,0.249649,0,0);}
.m6d_c00053{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m60_c00053{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.172670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172670,0.000000,0.000000,0.250000,0,0);}
.m46_c00053{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);}
.m27_c00053{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.med_c00053{transform:matrix(0.174854,0.009277,-0.013245,0.249649,0,0);-ms-transform:matrix(0.174854,0.009277,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.174854,0.009277,-0.013245,0.249649,0,0);}
.m54_c00053{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m30_c00053{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.mcf_c00053{transform:matrix(0.176697,0.009374,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176697,0.009374,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176697,0.009374,-0.013245,0.249649,0,0);}
.md9_c00053{transform:matrix(0.176866,0.009383,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176866,0.009383,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176866,0.009383,-0.013245,0.249649,0,0);}
.m4c_c00053{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.mbb_c00053{transform:matrix(0.177251,0.009404,-0.013245,0.249649,0,0);-ms-transform:matrix(0.177251,0.009404,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.177251,0.009404,-0.013245,0.249649,0,0);}
.m51_c00053{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.mcb_c00053{transform:matrix(0.177855,0.009436,-0.013245,0.249649,0,0);-ms-transform:matrix(0.177855,0.009436,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.177855,0.009436,-0.013245,0.249649,0,0);}
.m85_c00053{transform:matrix(0.178075,0.005342,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178075,0.005342,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178075,0.005342,-0.007497,0.249888,0,0);}
.m2c_c00053{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.mcc_c00053{transform:matrix(0.178449,0.009467,-0.013245,0.249649,0,0);-ms-transform:matrix(0.178449,0.009467,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.178449,0.009467,-0.013245,0.249649,0,0);}
.mc9_c00053{transform:matrix(0.178819,0.009487,-0.013245,0.249649,0,0);-ms-transform:matrix(0.178819,0.009487,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.178819,0.009487,-0.013245,0.249649,0,0);}
.m81_c00053{transform:matrix(0.178920,0.005368,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178920,0.005368,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178920,0.005368,-0.007497,0.249888,0,0);}
.m8b_c00053{transform:matrix(0.179199,0.005376,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179199,0.005376,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179199,0.005376,-0.007497,0.249888,0,0);}
.mda_c00053{transform:matrix(0.179368,0.009516,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179368,0.009516,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179368,0.009516,-0.013245,0.249649,0,0);}
.md6_c00053{transform:matrix(0.179612,0.009529,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179612,0.009529,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179612,0.009529,-0.013245,0.249649,0,0);}
.mf6_c00053{transform:matrix(0.179704,0.004672,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179704,0.004672,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179704,0.004672,-0.006498,0.249916,0,0);}
.md0_c00053{transform:matrix(0.179722,0.009535,-0.013245,0.249649,0,0);-ms-transform:matrix(0.179722,0.009535,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.179722,0.009535,-0.013245,0.249649,0,0);}
.m6c_c00053{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m76_c00053{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.mba_c00053{transform:matrix(0.180911,0.009598,-0.013245,0.249649,0,0);-ms-transform:matrix(0.180911,0.009598,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.180911,0.009598,-0.013245,0.249649,0,0);}
.mf9_c00053{transform:matrix(0.181149,0.004710,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181149,0.004710,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181149,0.004710,-0.006498,0.249916,0,0);}
.me3_c00053{transform:matrix(0.181190,0.009613,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181190,0.009613,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181190,0.009613,-0.013245,0.249649,0,0);}
.m57_c00053{transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m7c_c00053{transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);}
.mc8_c00053{transform:matrix(0.182014,0.009656,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182014,0.009656,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182014,0.009656,-0.013245,0.249649,0,0);}
.mf_c00053{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.mbf_c00053{transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);-ms-transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.182159,0.009664,-0.013245,0.249649,0,0);}
.m7e_c00053{transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);}
.ma6_c00053{transform:matrix(0.183287,0.009724,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183287,0.009724,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183287,0.009724,-0.013245,0.249649,0,0);}
.md2_c00053{transform:matrix(0.183517,0.009736,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183517,0.009736,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183517,0.009736,-0.013245,0.249649,0,0);}
.m89_c00053{transform:matrix(0.183527,0.005506,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183527,0.005506,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183527,0.005506,-0.007497,0.249888,0,0);}
.mc6_c00053{transform:matrix(0.184416,0.009784,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184416,0.009784,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184416,0.009784,-0.013245,0.249649,0,0);}
.m62_c00053{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.mf7_c00053{transform:matrix(0.184798,0.004805,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184798,0.004805,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184798,0.004805,-0.006498,0.249916,0,0);}
.m8e_c00053{transform:matrix(0.185137,0.005554,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185137,0.005554,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185137,0.005554,-0.007497,0.249888,0,0);}
.mdd_c00053{transform:matrix(0.185344,0.009833,-0.013245,0.249649,0,0);-ms-transform:matrix(0.185344,0.009833,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.185344,0.009833,-0.013245,0.249649,0,0);}
.m8a_c00053{transform:matrix(0.185472,0.005564,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185472,0.005564,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185472,0.005564,-0.007497,0.249888,0,0);}
.m1f_c00053{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.m43_c00053{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.mf4_c00053{transform:matrix(0.186577,0.004851,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186577,0.004851,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186577,0.004851,-0.006498,0.249916,0,0);}
.m42_c00053{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.mae_c00053{transform:matrix(0.187337,0.009939,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187337,0.009939,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187337,0.009939,-0.013245,0.249649,0,0);}
.m8c_c00053{transform:matrix(0.187356,0.005621,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187356,0.005621,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187356,0.005621,-0.007497,0.249888,0,0);}
.mee_c00053{transform:matrix(0.187486,0.009947,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187486,0.009947,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187486,0.009947,-0.013245,0.249649,0,0);}
.m97_c00053{transform:matrix(0.187501,0.005625,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187501,0.005625,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187501,0.005625,-0.007497,0.249888,0,0);}
.md_c00053{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m33_c00053{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.188230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188230,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.mc2_c00053{transform:matrix(0.188824,0.010018,-0.013245,0.249649,0,0);-ms-transform:matrix(0.188824,0.010018,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.188824,0.010018,-0.013245,0.249649,0,0);}
.m93_c00053{transform:matrix(0.189045,0.005671,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189045,0.005671,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189045,0.005671,-0.007497,0.249888,0,0);}
.m87_c00053{transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189520,0.005686,-0.007497,0.249888,0,0);}
.m37_c00053{transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00053{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.mac_c00053{transform:matrix(0.189838,0.010071,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189838,0.010071,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189838,0.010071,-0.013245,0.249649,0,0);}
.m5c_c00053{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);}
.mdb_c00053{transform:matrix(0.190757,0.010120,-0.013245,0.249649,0,0);-ms-transform:matrix(0.190757,0.010120,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.190757,0.010120,-0.013245,0.249649,0,0);}
.m15_c00053{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.mbd_c00053{transform:matrix(0.191211,0.010144,-0.013245,0.249649,0,0);-ms-transform:matrix(0.191211,0.010144,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.191211,0.010144,-0.013245,0.249649,0,0);}
.m11_c00053{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.mc4_c00053{transform:matrix(0.192045,0.010189,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192045,0.010189,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192045,0.010189,-0.013245,0.249649,0,0);}
.mab_c00053{transform:matrix(0.192125,0.010193,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192125,0.010193,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192125,0.010193,-0.013245,0.249649,0,0);}
.m5d_c00053{transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);}
.m9e_c00053{transform:matrix(0.192594,0.010218,-0.013245,0.249649,0,0);-ms-transform:matrix(0.192594,0.010218,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.192594,0.010218,-0.013245,0.249649,0,0);}
.m20_c00053{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);}
.m66_c00053{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.me8_c00053{transform:matrix(0.193063,0.010243,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193063,0.010243,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193063,0.010243,-0.013245,0.249649,0,0);}
.md1_c00053{transform:matrix(0.193118,0.010246,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193118,0.010246,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193118,0.010246,-0.013245,0.249649,0,0);}
.m61_c00053{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m71_c00053{transform:matrix(0.193685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193685,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m86_c00053{transform:matrix(0.194178,0.005825,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194178,0.005825,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194178,0.005825,-0.007497,0.249888,0,0);}
.m16_c00053{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m73_c00053{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00053{transform:matrix(0.195096,0.010350,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195096,0.010350,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195096,0.010350,-0.013245,0.249649,0,0);}
.m88_c00053{transform:matrix(0.195502,0.005865,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195502,0.005865,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195502,0.005865,-0.007497,0.249888,0,0);}
.m2f_c00053{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.me6_c00053{transform:matrix(0.195954,0.010396,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195954,0.010396,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195954,0.010396,-0.013245,0.249649,0,0);}
.md3_c00053{transform:matrix(0.195989,0.010398,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195989,0.010398,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195989,0.010398,-0.013245,0.249649,0,0);}
.m48_c00053{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00053{transform:matrix(0.196497,0.005895,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196497,0.005895,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196497,0.005895,-0.007497,0.249888,0,0);}
.mbe_c00053{transform:matrix(0.196539,0.010427,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196539,0.010427,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196539,0.010427,-0.013245,0.249649,0,0);}
.ma8_c00053{transform:matrix(0.196948,0.010449,-0.013245,0.249649,0,0);-ms-transform:matrix(0.196948,0.010449,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.196948,0.010449,-0.013245,0.249649,0,0);}
.m5f_c00053{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.mf3_c00053{transform:matrix(0.197413,0.005133,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197413,0.005133,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197413,0.005133,-0.006498,0.249916,0,0);}
.m1e_c00053{transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);}
.m64_c00053{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.mea_c00053{transform:matrix(0.198081,0.010509,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198081,0.010509,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198081,0.010509,-0.013245,0.249649,0,0);}
.m55_c00053{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.mc5_c00053{transform:matrix(0.198681,0.010541,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198681,0.010541,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198681,0.010541,-0.013245,0.249649,0,0);}
.m70_c00053{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.mb8_c00053{transform:matrix(0.199814,0.010601,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199814,0.010601,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199814,0.010601,-0.013245,0.249649,0,0);}
.mf1_c00053{transform:matrix(0.199894,0.010605,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199894,0.010605,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199894,0.010605,-0.013245,0.249649,0,0);}
.m26_c00053{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.maa_c00053{transform:matrix(0.200338,0.010629,-0.013245,0.249649,0,0);-ms-transform:matrix(0.200338,0.010629,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.200338,0.010629,-0.013245,0.249649,0,0);}
.m9d_c00053{transform:matrix(0.200635,0.006019,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200635,0.006019,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200635,0.006019,-0.007497,0.249888,0,0);}
.m52_c00053{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m69_c00053{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.ma5_c00053{transform:matrix(0.201092,0.010669,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201092,0.010669,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201092,0.010669,-0.013245,0.249649,0,0);}
.mb5_c00053{transform:matrix(0.201572,0.010694,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201572,0.010694,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201572,0.010694,-0.013245,0.249649,0,0);}
.m13_c00053{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00053{transform:matrix(0.202066,0.010720,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202066,0.010720,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202066,0.010720,-0.013245,0.249649,0,0);}
.m1a_c00053{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.mad_c00053{transform:matrix(0.202565,0.010747,-0.013245,0.249649,0,0);-ms-transform:matrix(0.202565,0.010747,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.202565,0.010747,-0.013245,0.249649,0,0);}
.m1c_c00053{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m7a_c00053{transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);}
.ma3_c00053{transform:matrix(0.203209,0.010781,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203209,0.010781,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203209,0.010781,-0.013245,0.249649,0,0);}
.mbc_c00053{transform:matrix(0.203274,0.010784,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203274,0.010784,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203274,0.010784,-0.013245,0.249649,0,0);}
.mc0_c00053{transform:matrix(0.203684,0.010806,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203684,0.010806,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203684,0.010806,-0.013245,0.249649,0,0);}
.m29_c00053{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m58_c00053{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00053{transform:matrix(0.205631,0.010909,-0.013245,0.249649,0,0);-ms-transform:matrix(0.205631,0.010909,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.205631,0.010909,-0.013245,0.249649,0,0);}
.m98_c00053{transform:matrix(0.205662,0.006170,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205662,0.006170,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205662,0.006170,-0.007497,0.249888,0,0);}
.m14_c00053{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m6b_c00053{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.mcd_c00053{transform:matrix(0.206894,0.010976,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206894,0.010976,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206894,0.010976,-0.013245,0.249649,0,0);}
.m5b_c00053{transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);}
.md7_c00053{transform:matrix(0.207293,0.010998,-0.013245,0.249649,0,0);-ms-transform:matrix(0.207293,0.010998,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.207293,0.010998,-0.013245,0.249649,0,0);}
.mc3_c00053{transform:matrix(0.208132,0.011042,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208132,0.011042,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208132,0.011042,-0.013245,0.249649,0,0);}
.m3a_c00053{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.ma9_c00053{transform:matrix(0.208761,0.011075,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208761,0.011075,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208761,0.011075,-0.013245,0.249649,0,0);}
.m72_c00053{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mb1_c00053{transform:matrix(0.209146,0.011096,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209146,0.011096,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209146,0.011096,-0.013245,0.249649,0,0);}
.m68_c00053{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m79_c00053{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mde_c00053{transform:matrix(0.209535,0.011116,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209535,0.011116,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209535,0.011116,-0.013245,0.249649,0,0);}
.me9_c00053{transform:matrix(0.210100,0.011146,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210100,0.011146,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210100,0.011146,-0.013245,0.249649,0,0);}
.m3b_c00053{transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);}
.m3c_c00053{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00053{transform:matrix(0.211490,0.006345,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211490,0.006345,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211490,0.006345,-0.007497,0.249888,0,0);}
.m9a_c00053{transform:matrix(0.211900,0.006357,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211900,0.006357,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211900,0.006357,-0.007497,0.249888,0,0);}
.m6e_c00053{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m65_c00053{transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.md4_c00053{transform:matrix(0.212621,0.011280,-0.013245,0.249649,0,0);-ms-transform:matrix(0.212621,0.011280,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.212621,0.011280,-0.013245,0.249649,0,0);}
.m2_c00053{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.ma1_c00053{transform:matrix(0.213175,0.011310,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213175,0.011310,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213175,0.011310,-0.013245,0.249649,0,0);}
.mf2_c00053{transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);}
.m90_c00053{transform:matrix(0.213759,0.006413,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213759,0.006413,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213759,0.006413,-0.007497,0.249888,0,0);}
.mdf_c00053{transform:matrix(0.213769,0.011341,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213769,0.011341,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213769,0.011341,-0.013245,0.249649,0,0);}
.m96_c00053{transform:matrix(0.214244,0.006427,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214244,0.006427,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214244,0.006427,-0.007497,0.249888,0,0);}
.ma2_c00053{transform:matrix(0.214983,0.011405,-0.013245,0.249649,0,0);-ms-transform:matrix(0.214983,0.011405,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.214983,0.011405,-0.013245,0.249649,0,0);}
.m6_c00053{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.mec_c00053{transform:matrix(0.215392,0.011427,-0.013245,0.249649,0,0);-ms-transform:matrix(0.215392,0.011427,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.215392,0.011427,-0.013245,0.249649,0,0);}
.m82_c00053{transform:matrix(0.215593,0.006468,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215593,0.006468,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215593,0.006468,-0.007497,0.249888,0,0);}
.m35_c00053{transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);}
.m36_c00053{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00053{transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.mf0_c00053{transform:matrix(0.219696,0.011656,-0.013245,0.249649,0,0);-ms-transform:matrix(0.219696,0.011656,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.219696,0.011656,-0.013245,0.249649,0,0);}
.m75_c00053{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m8f_c00053{transform:matrix(0.221615,0.006648,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221615,0.006648,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221615,0.006648,-0.007497,0.249888,0,0);}
.mca_c00053{transform:matrix(0.222078,0.011782,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222078,0.011782,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222078,0.011782,-0.013245,0.249649,0,0);}
.m8_c00053{transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);}
.mb7_c00053{transform:matrix(0.223665,0.011866,-0.013245,0.249649,0,0);-ms-transform:matrix(0.223665,0.011866,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.223665,0.011866,-0.013245,0.249649,0,0);}
.me1_c00053{transform:matrix(0.223920,0.011880,-0.013245,0.249649,0,0);-ms-transform:matrix(0.223920,0.011880,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.223920,0.011880,-0.013245,0.249649,0,0);}
.mdc_c00053{transform:matrix(0.224489,0.011910,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224489,0.011910,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224489,0.011910,-0.013245,0.249649,0,0);}
.me5_c00053{transform:matrix(0.224819,0.011927,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224819,0.011927,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224819,0.011927,-0.013245,0.249649,0,0);}
.mb3_c00053{transform:matrix(0.226501,0.012017,-0.013245,0.249649,0,0);-ms-transform:matrix(0.226501,0.012017,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.226501,0.012017,-0.013245,0.249649,0,0);}
.mc1_c00053{transform:matrix(0.226816,0.012033,-0.013245,0.249649,0,0);-ms-transform:matrix(0.226816,0.012033,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.226816,0.012033,-0.013245,0.249649,0,0);}
.m24_c00053{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m7f_c00053{transform:matrix(0.227418,0.006823,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227418,0.006823,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227418,0.006823,-0.007497,0.249888,0,0);}
.m39_c00053{transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);}
.m40_c00053{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);}
.m4e_c00053{transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);}
.me2_c00053{transform:matrix(0.229772,0.012190,-0.013245,0.249649,0,0);-ms-transform:matrix(0.229772,0.012190,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.229772,0.012190,-0.013245,0.249649,0,0);}
.m28_c00053{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.mce_c00053{transform:matrix(0.230411,0.012224,-0.013245,0.249649,0,0);-ms-transform:matrix(0.230411,0.012224,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.230411,0.012224,-0.013245,0.249649,0,0);}
.m9b_c00053{transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230931,0.006928,-0.007497,0.249888,0,0);}
.m7d_c00053{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.mb9_c00053{transform:matrix(0.231669,0.012291,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231669,0.012291,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231669,0.012291,-0.013245,0.249649,0,0);}
.m78_c00053{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.md8_c00053{transform:matrix(0.232922,0.012357,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232922,0.012357,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232922,0.012357,-0.013245,0.249649,0,0);}
.m3e_c00053{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.m92_c00053{transform:matrix(0.234455,0.007034,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234455,0.007034,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234455,0.007034,-0.007497,0.249888,0,0);}
.m94_c00053{transform:matrix(0.235219,0.007057,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235219,0.007057,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235219,0.007057,-0.007497,0.249888,0,0);}
.mb6_c00053{transform:matrix(0.236178,0.012530,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236178,0.012530,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236178,0.012530,-0.013245,0.249649,0,0);}
.md5_c00053{transform:matrix(0.236268,0.012535,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236268,0.012535,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236268,0.012535,-0.013245,0.249649,0,0);}
.m12_c00053{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m99_c00053{transform:matrix(0.239797,0.007194,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239797,0.007194,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239797,0.007194,-0.007497,0.249888,0,0);}
.m1b_c00053{transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);}
.mc7_c00053{transform:matrix(0.242669,0.012874,-0.013245,0.249649,0,0);-ms-transform:matrix(0.242669,0.012874,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.242669,0.012874,-0.013245,0.249649,0,0);}
.m3d_c00053{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.ma0_c00053{transform:matrix(0.267519,0.014193,-0.013245,0.249649,0,0);-ms-transform:matrix(0.267519,0.014193,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.267519,0.014193,-0.013245,0.249649,0,0);}
.m49_c00053{transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
.fc0_c00053{color:transparent;}
.fs12_c00053{font-size:57.773384px;}
.fsb_c00053{font-size:57.775982px;}
.fs3_c00053{font-size:58.800000px;}
.fs11_c00053{font-size:58.823809px;}
.fsa_c00053{font-size:58.826454px;}
.fs8_c00053{font-size:59.850000px;}
.fsf_c00053{font-size:59.874234px;}
.fs7_c00053{font-size:60.900000px;}
.fs10_c00053{font-size:60.924660px;}
.fs1_c00053{font-size:61.950000px;}
.fsc_c00053{font-size:61.975085px;}
.fs13_c00053{font-size:63.025510px;}
.fs6_c00053{font-size:65.100000px;}
.fs4_c00053{font-size:66.150000px;}
.fse_c00053{font-size:66.176785px;}
.fs9_c00053{font-size:66.179761px;}
.fs2_c00053{font-size:67.200000px;}
.fsd_c00053{font-size:67.227210px;}
.fs14_c00053{font-size:68.273065px;}
.fs5_c00053{font-size:69.300000px;}
.fs0_c00053{font-size:123.900000px;}
.y0_c00053{bottom:0.000000px;}
.yfb_c00053{bottom:38.570574px;}
.yfa_c00053{bottom:39.076014px;}
.yf9_c00053{bottom:39.623925px;}
.yf8_c00053{bottom:41.316447px;}
.yf7_c00053{bottom:41.949144px;}
.yf6_c00053{bottom:42.482859px;}
.yf5_c00053{bottom:44.180958px;}
.yf4_c00053{bottom:44.827500px;}
.yf3_c00053{bottom:59.254047px;}
.yf2_c00053{bottom:60.548562px;}
.yf1_c00053{bottom:60.928466px;}
.yf0_c00053{bottom:61.377606px;}
.yef_c00053{bottom:62.295923px;}
.yee_c00053{bottom:72.206117px;}
.yed_c00053{bottom:72.920438px;}
.yec_c00053{bottom:73.572500px;}
.yeb_c00053{bottom:74.023617px;}
.yea_c00053{bottom:75.424835px;}
.ye9_c00053{bottom:76.193190px;}
.ye8_c00053{bottom:76.804682px;}
.ye7_c00053{bottom:78.402209px;}
.ye6_c00053{bottom:78.913904px;}
.ye5_c00053{bottom:79.584939px;}
.ye4_c00053{bottom:91.221275px;}
.ye3_c00053{bottom:92.964633px;}
.ye2_c00053{bottom:93.782990px;}
.ye1_c00053{bottom:94.476980px;}
.ye0_c00053{bottom:95.831513px;}
.ydf_c00053{bottom:96.349364px;}
.yde_c00053{bottom:98.223668px;}
.ydd_c00053{bottom:105.646908px;}
.ydc_c00053{bottom:106.281356px;}
.ydb_c00053{bottom:107.025102px;}
.yda_c00053{bottom:108.427230px;}
.yd9_c00053{bottom:109.322066px;}
.yd8_c00053{bottom:111.657083px;}
.yd7_c00053{bottom:112.400738px;}
.yd6_c00053{bottom:112.876349px;}
.yd5_c00053{bottom:114.824856px;}
.yd4_c00053{bottom:115.516986px;}
.yd3_c00053{bottom:122.853660px;}
.yd2_c00053{bottom:124.226015px;}
.yd1_c00053{bottom:124.834710px;}
.yd0_c00053{bottom:125.270613px;}
.ycf_c00053{bottom:125.575404px;}
.yce_c00053{bottom:126.948884px;}
.ycd_c00053{bottom:127.549955px;}
.ycc_c00053{bottom:128.023515px;}
.ycb_c00053{bottom:128.871458px;}
.yca_c00053{bottom:129.555834px;}
.yc9_c00053{bottom:139.068291px;}
.yc8_c00053{bottom:140.420243px;}
.yc7_c00053{bottom:140.921496px;}
.yc6_c00053{bottom:141.990723px;}
.yc5_c00053{bottom:143.199818px;}
.yc4_c00053{bottom:145.128321px;}
.yc3_c00053{bottom:146.032001px;}
.yc2_c00053{bottom:159.200601px;}
.yc1_c00053{bottom:160.658778px;}
.yc0_c00053{bottom:161.123400px;}
.ybf_c00053{bottom:162.017137px;}
.ybe_c00053{bottom:163.220870px;}
.ybd_c00053{bottom:164.346362px;}
.ybc_c00053{bottom:165.181254px;}
.ybb_c00053{bottom:165.749534px;}
.yba_c00053{bottom:175.708971px;}
.yb9_c00053{bottom:177.222591px;}
.yb8_c00053{bottom:177.484698px;}
.yb7_c00053{bottom:178.416593px;}
.yb6_c00053{bottom:179.319526px;}
.yb5_c00053{bottom:180.337575px;}
.yb4_c00053{bottom:193.048528px;}
.yb3_c00053{bottom:193.606792px;}
.yb2_c00053{bottom:194.149779px;}
.yb1_c00053{bottom:194.721786px;}
.yb0_c00053{bottom:195.009245px;}
.yaf_c00053{bottom:195.930437px;}
.yae_c00053{bottom:196.690791px;}
.yad_c00053{bottom:197.624442px;}
.yac_c00053{bottom:209.249775px;}
.yab_c00053{bottom:210.076510px;}
.yaa_c00053{bottom:211.584214px;}
.ya9_c00053{bottom:213.581970px;}
.ya8_c00053{bottom:214.067760px;}
.ya7_c00053{bottom:215.592939px;}
.ya6_c00053{bottom:216.534387px;}
.ya5_c00053{bottom:225.770666px;}
.ya4_c00053{bottom:226.919202px;}
.ya3_c00053{bottom:227.620789px;}
.ya2_c00053{bottom:230.785048px;}
.ya1_c00053{bottom:232.089962px;}
.ya0_c00053{bottom:236.408560px;}
.y9f_c00053{bottom:240.310500px;}
.y9e_c00053{bottom:242.553165px;}
.y9d_c00053{bottom:244.332885px;}
.y9c_c00053{bottom:245.570370px;}
.y9b_c00053{bottom:246.151170px;}
.y9a_c00053{bottom:246.507630px;}
.y99_c00053{bottom:247.871115px;}
.y98_c00053{bottom:248.788800px;}
.y97_c00053{bottom:249.332265px;}
.y96_c00053{bottom:250.545450px;}
.y95_c00053{bottom:260.789895px;}
.y94_c00053{bottom:261.368055px;}
.y93_c00053{bottom:262.962090px;}
.y92_c00053{bottom:263.262990px;}
.y91_c00053{bottom:264.366540px;}
.y90_c00053{bottom:265.939050px;}
.y8f_c00053{bottom:275.169960px;}
.y8e_c00053{bottom:276.698970px;}
.y8d_c00053{bottom:277.276365px;}
.y8c_c00053{bottom:278.666325px;}
.y8b_c00053{bottom:279.767745px;}
.y8a_c00053{bottom:280.409070px;}
.y89_c00053{bottom:281.915880px;}
.y88_c00053{bottom:283.773720px;}
.y87_c00053{bottom:292.432335px;}
.y86_c00053{bottom:293.625420px;}
.y85_c00053{bottom:294.146745px;}
.y84_c00053{bottom:294.750330px;}
.y83_c00053{bottom:297.029535px;}
.y82_c00053{bottom:297.829365px;}
.y81_c00053{bottom:298.967955px;}
.y80_c00053{bottom:299.980500px;}
.y7f_c00053{bottom:313.620000px;}
.y7e_c00053{bottom:313.926000px;}
.y7d_c00053{bottom:314.854500px;}
.y7c_c00053{bottom:315.948000px;}
.y7b_c00053{bottom:316.450500px;}
.y7a_c00053{bottom:325.773000px;}
.y79_c00053{bottom:327.943500px;}
.y78_c00053{bottom:329.526000px;}
.y77_c00053{bottom:330.064500px;}
.y76_c00053{bottom:330.439500px;}
.y75_c00053{bottom:332.655000px;}
.y74_c00053{bottom:342.807000px;}
.y73_c00053{bottom:343.380000px;}
.y72_c00053{bottom:344.955000px;}
.y71_c00053{bottom:345.954000px;}
.y70_c00053{bottom:346.395000px;}
.y6f_c00053{bottom:347.727000px;}
.y6e_c00053{bottom:348.199500px;}
.y6d_c00053{bottom:348.697500px;}
.y6c_c00053{bottom:349.663500px;}
.y6b_c00053{bottom:361.962000px;}
.y6a_c00053{bottom:362.728500px;}
.y69_c00053{bottom:363.150000px;}
.y68_c00053{bottom:364.171500px;}
.y67_c00053{bottom:364.800000px;}
.y66_c00053{bottom:366.088500px;}
.y65_c00053{bottom:367.212000px;}
.y64_c00053{bottom:376.963500px;}
.y63_c00053{bottom:377.644500px;}
.y62_c00053{bottom:378.904500px;}
.y61_c00053{bottom:379.327500px;}
.y60_c00053{bottom:379.629000px;}
.y5f_c00053{bottom:381.153000px;}
.y5e_c00053{bottom:382.594500px;}
.y5d_c00053{bottom:383.116500px;}
.y5c_c00053{bottom:383.449500px;}
.y5b_c00053{bottom:384.225000px;}
.y5a_c00053{bottom:393.676500px;}
.y59_c00053{bottom:394.281000px;}
.y58_c00053{bottom:395.331000px;}
.y57_c00053{bottom:396.162000px;}
.y56_c00053{bottom:398.086500px;}
.y55_c00053{bottom:398.706000px;}
.y54_c00053{bottom:399.040500px;}
.y53_c00053{bottom:400.312500px;}
.y52_c00053{bottom:400.965000px;}
.y51_c00053{bottom:410.508000px;}
.y50_c00053{bottom:412.173000px;}
.y4f_c00053{bottom:412.803000px;}
.y4e_c00053{bottom:414.337500px;}
.y4d_c00053{bottom:414.837000px;}
.y4c_c00053{bottom:417.028500px;}
.y4b_c00053{bottom:417.784500px;}
.y4a_c00053{bottom:418.245000px;}
.y49_c00053{bottom:427.830000px;}
.y48_c00053{bottom:428.961000px;}
.y47_c00053{bottom:429.568500px;}
.y46_c00053{bottom:431.166000px;}
.y45_c00053{bottom:432.475500px;}
.y44_c00053{bottom:433.264500px;}
.y43_c00053{bottom:434.833500px;}
.y42_c00053{bottom:435.252000px;}
.y41_c00053{bottom:446.622000px;}
.y40_c00053{bottom:447.114000px;}
.y3f_c00053{bottom:447.429000px;}
.y3e_c00053{bottom:449.397000px;}
.y3d_c00053{bottom:449.869500px;}
.y3c_c00053{bottom:450.984000px;}
.y3b_c00053{bottom:451.456500px;}
.y3a_c00053{bottom:452.530500px;}
.y39_c00053{bottom:463.882500px;}
.y38_c00053{bottom:465.024000px;}
.y37_c00053{bottom:465.343500px;}
.y36_c00053{bottom:466.603500px;}
.y35_c00053{bottom:466.996500px;}
.y34_c00053{bottom:468.187500px;}
.y33_c00053{bottom:477.861000px;}
.y32_c00053{bottom:478.410000px;}
.y31_c00053{bottom:479.127000px;}
.y30_c00053{bottom:479.562000px;}
.y2f_c00053{bottom:481.380000px;}
.y2e_c00053{bottom:482.118000px;}
.y2d_c00053{bottom:482.739000px;}
.y2c_c00053{bottom:484.518000px;}
.y2b_c00053{bottom:486.822000px;}
.y2a_c00053{bottom:495.945000px;}
.y29_c00053{bottom:497.050500px;}
.y28_c00053{bottom:497.436000px;}
.y27_c00053{bottom:498.103500px;}
.y26_c00053{bottom:500.062500px;}
.y25_c00053{bottom:501.658500px;}
.y24_c00053{bottom:502.477500px;}
.y23_c00053{bottom:511.794000px;}
.y22_c00053{bottom:513.201000px;}
.y21_c00053{bottom:513.820500px;}
.y20_c00053{bottom:516.060000px;}
.y1f_c00053{bottom:517.594500px;}
.y1e_c00053{bottom:518.113500px;}
.y1d_c00053{bottom:518.514000px;}
.y1c_c00053{bottom:518.929500px;}
.y1b_c00053{bottom:519.828000px;}
.y1a_c00053{bottom:520.570500px;}
.y19_c00053{bottom:529.188000px;}
.y18_c00053{bottom:529.765500px;}
.y17_c00053{bottom:530.871000px;}
.y16_c00053{bottom:531.357000px;}
.y15_c00053{bottom:533.155500px;}
.y14_c00053{bottom:535.423500px;}
.y13_c00053{bottom:535.779000px;}
.y12_c00053{bottom:537.580500px;}
.y11_c00053{bottom:545.412000px;}
.y10_c00053{bottom:546.097500px;}
.yf_c00053{bottom:547.026000px;}
.ye_c00053{bottom:547.432500px;}
.yd_c00053{bottom:548.518500px;}
.yc_c00053{bottom:548.736000px;}
.yb_c00053{bottom:549.862500px;}
.ya_c00053{bottom:551.076000px;}
.y9_c00053{bottom:562.615500px;}
.y8_c00053{bottom:564.046500px;}
.y7_c00053{bottom:565.419000px;}
.y6_c00053{bottom:566.202000px;}
.y5_c00053{bottom:566.707500px;}
.y4_c00053{bottom:567.420000px;}
.y3_c00053{bottom:568.165500px;}
.y2_c00053{bottom:568.624500px;}
.y1_c00053{bottom:579.561000px;}
.h14_c00053{height:57.773384px;}
.hd_c00053{height:57.775982px;}
.h5_c00053{height:58.800000px;}
.h13_c00053{height:58.823809px;}
.hc_c00053{height:58.826454px;}
.ha_c00053{height:59.850000px;}
.h11_c00053{height:59.874234px;}
.h9_c00053{height:60.900000px;}
.h12_c00053{height:60.924660px;}
.h3_c00053{height:61.950000px;}
.he_c00053{height:61.975085px;}
.h15_c00053{height:63.025510px;}
.h8_c00053{height:65.100000px;}
.h6_c00053{height:66.150000px;}
.h10_c00053{height:66.176785px;}
.hb_c00053{height:66.179761px;}
.h4_c00053{height:67.200000px;}
.hf_c00053{height:67.227210px;}
.h16_c00053{height:68.273065px;}
.h7_c00053{height:69.300000px;}
.h2_c00053{height:123.900000px;}
.h0_c00053{height:618.570000px;}
.h1_c00053{height:618.750000px;}
.w0_c00053{width:361.200000px;}
.w1_c00053{width:361.500000px;}
.x0_c00053{left:0.000000px;}
.x65_c00053{left:22.750500px;}
.x76_c00053{left:24.638698px;}
.x72_c00053{left:25.792969px;}
.x6c_c00053{left:27.109854px;}
.x69_c00053{left:28.162674px;}
.x5f_c00053{left:29.980455px;}
.x5b_c00053{left:31.227135px;}
.x4e_c00053{left:32.448000px;}
.x49_c00053{left:33.511500px;}
.x40_c00053{left:34.756500px;}
.x36_c00053{left:36.253500px;}
.x26_c00053{left:38.565000px;}
.x11_c00053{left:39.952500px;}
.x2_c00053{left:42.181500px;}
.x81_c00053{left:45.017675px;}
.x73_c00053{left:47.607828px;}
.x37_c00053{left:50.665500px;}
.x3b_c00053{left:51.754500px;}
.x79_c00053{left:53.464057px;}
.x53_c00053{left:54.817500px;}
.x55_c00053{left:56.359500px;}
.x41_c00053{left:58.908000px;}
.x3_c00053{left:63.015000px;}
.x19_c00053{left:64.422000px;}
.x61_c00053{left:71.479515px;}
.x4f_c00053{left:72.700500px;}
.x21_c00053{left:74.770500px;}
.x85_c00053{left:76.122000px;}
.x3c_c00053{left:78.733500px;}
.x32_c00053{left:82.590000px;}
.x7f_c00053{left:85.306370px;}
.x56_c00053{left:90.111000px;}
.x5c_c00053{left:91.153335px;}
.x1a_c00053{left:93.409500px;}
.x7b_c00053{left:94.935005px;}
.x4_c00053{left:96.924000px;}
.x12_c00053{left:98.071500px;}
.x84_c00053{left:100.999344px;}
.xa_c00053{left:102.040500px;}
.x2d_c00053{left:103.983000px;}
.x1b_c00053{left:106.830000px;}
.x13_c00053{left:109.519500px;}
.x27_c00053{left:110.581500px;}
.x50_c00053{left:113.184000px;}
.x42_c00053{left:118.419000px;}
.x1c_c00053{left:119.752500px;}
.x62_c00053{left:121.836000px;}
.x6a_c00053{left:122.836770px;}
.x2e_c00053{left:125.845500px;}
.x6f_c00053{left:127.041892px;}
.x57_c00053{left:128.064000px;}
.x5_c00053{left:129.297000px;}
.x38_c00053{left:131.976000px;}
.x77_c00053{left:133.369357px;}
.x1d_c00053{left:136.518000px;}
.x82_c00053{left:138.674475px;}
.x5d_c00053{left:139.778895px;}
.x43_c00053{left:141.373500px;}
.x22_c00053{left:144.154500px;}
.x54_c00053{left:146.727000px;}
.x33_c00053{left:148.722000px;}
.x6_c00053{left:152.301000px;}
.x47_c00053{left:153.795000px;}
.x3d_c00053{left:157.002000px;}
.xb_c00053{left:158.388000px;}
.x4a_c00053{left:160.483500px;}
.x86_c00053{left:161.961000px;}
.x52_c00053{left:163.021500px;}
.x83_c00053{left:165.138647px;}
.x28_c00053{left:166.170000px;}
.xc_c00053{left:169.270500px;}
.x80_c00053{left:170.728952px;}
.x3e_c00053{left:174.831000px;}
.x70_c00053{left:175.934466px;}
.x1_c00053{left:177.930000px;}
.x78_c00053{left:179.754216px;}
.x63_c00053{left:181.119255px;}
.x14_c00053{left:182.703000px;}
.x1e_c00053{left:186.022500px;}
.x7_c00053{left:187.888500px;}
.x71_c00053{left:189.683952px;}
.x7c_c00053{left:190.821194px;}
.x4b_c00053{left:193.599000px;}
.x2f_c00053{left:195.874500px;}
.x6d_c00053{left:197.302437px;}
.x64_c00053{left:201.129840px;}
.x66_c00053{left:202.296274px;}
.x74_c00053{left:203.319045px;}
.x29_c00053{left:208.654500px;}
.x44_c00053{left:212.638500px;}
.x30_c00053{left:213.654000px;}
.x7d_c00053{left:214.967475px;}
.x6b_c00053{left:218.169661px;}
.x75_c00053{left:221.140671px;}
.xd_c00053{left:223.557000px;}
.x23_c00053{left:229.345500px;}
.x58_c00053{left:230.698500px;}
.x39_c00053{left:232.218000px;}
.x15_c00053{left:240.730500px;}
.xe_c00053{left:243.864000px;}
.x4c_c00053{left:247.350000px;}
.x8_c00053{left:250.293000px;}
.x3f_c00053{left:252.142500px;}
.x3a_c00053{left:253.182000px;}
.x7a_c00053{left:254.976991px;}
.x16_c00053{left:256.392000px;}
.x1f_c00053{left:258.279000px;}
.x5e_c00053{left:259.445295px;}
.x67_c00053{left:261.939571px;}
.x34_c00053{left:263.529000px;}
.x2a_c00053{left:265.468500px;}
.x59_c00053{left:268.195500px;}
.x4d_c00053{left:269.497500px;}
.x7e_c00053{left:272.891594px;}
.x24_c00053{left:275.134500px;}
.x31_c00053{left:277.107000px;}
.x20_c00053{left:278.239500px;}
.x45_c00053{left:282.349500px;}
.x35_c00053{left:284.056500px;}
.x60_c00053{left:287.396085px;}
.x48_c00053{left:288.706500px;}
.xf_c00053{left:290.280000px;}
.x17_c00053{left:292.039500px;}
.x51_c00053{left:294.262500px;}
.x6e_c00053{left:295.320094px;}
.x68_c00053{left:296.812663px;}
.x2b_c00053{left:301.456500px;}
.x46_c00053{left:304.743000px;}
.x5a_c00053{left:307.965000px;}
.x18_c00053{left:310.668000px;}
.x9_c00053{left:315.349500px;}
.x2c_c00053{left:318.621000px;}
.x25_c00053{left:323.200500px;}
.x10_c00053{left:324.561000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs12_c00053{font-size:51.354119pt;}
.fsb_c00053{font-size:51.356428pt;}
.fs3_c00053{font-size:52.266667pt;}
.fs11_c00053{font-size:52.287830pt;}
.fsa_c00053{font-size:52.290181pt;}
.fs8_c00053{font-size:53.200000pt;}
.fsf_c00053{font-size:53.221542pt;}
.fs7_c00053{font-size:54.133333pt;}
.fs10_c00053{font-size:54.155253pt;}
.fs1_c00053{font-size:55.066667pt;}
.fsc_c00053{font-size:55.088964pt;}
.fs13_c00053{font-size:56.022675pt;}
.fs6_c00053{font-size:57.866667pt;}
.fs4_c00053{font-size:58.800000pt;}
.fse_c00053{font-size:58.823809pt;}
.fs9_c00053{font-size:58.826454pt;}
.fs2_c00053{font-size:59.733333pt;}
.fsd_c00053{font-size:59.757520pt;}
.fs14_c00053{font-size:60.687169pt;}
.fs5_c00053{font-size:61.600000pt;}
.fs0_c00053{font-size:110.133333pt;}
.y0_c00053{bottom:0.000000pt;}
.yfb_c00053{bottom:34.284955pt;}
.yfa_c00053{bottom:34.734235pt;}
.yf9_c00053{bottom:35.221267pt;}
.yf8_c00053{bottom:36.725731pt;}
.yf7_c00053{bottom:37.288128pt;}
.yf6_c00053{bottom:37.762541pt;}
.yf5_c00053{bottom:39.271963pt;}
.yf4_c00053{bottom:39.846667pt;}
.yf3_c00053{bottom:52.670264pt;}
.yf2_c00053{bottom:53.820944pt;}
.yf1_c00053{bottom:54.158636pt;}
.yf0_c00053{bottom:54.557872pt;}
.yef_c00053{bottom:55.374153pt;}
.yee_c00053{bottom:64.183215pt;}
.yed_c00053{bottom:64.818167pt;}
.yec_c00053{bottom:65.397777pt;}
.yeb_c00053{bottom:65.798771pt;}
.yea_c00053{bottom:67.044297pt;}
.ye9_c00053{bottom:67.727280pt;}
.ye8_c00053{bottom:68.270828pt;}
.ye7_c00053{bottom:69.690852pt;}
.ye6_c00053{bottom:70.145692pt;}
.ye5_c00053{bottom:70.742168pt;}
.ye4_c00053{bottom:81.085577pt;}
.ye3_c00053{bottom:82.635229pt;}
.ye2_c00053{bottom:83.362657pt;}
.ye1_c00053{bottom:83.979537pt;}
.ye0_c00053{bottom:85.183567pt;}
.ydf_c00053{bottom:85.643879pt;}
.yde_c00053{bottom:87.309927pt;}
.ydd_c00053{bottom:93.908363pt;}
.ydc_c00053{bottom:94.472316pt;}
.ydb_c00053{bottom:95.133424pt;}
.yda_c00053{bottom:96.379760pt;}
.yd9_c00053{bottom:97.175169pt;}
.yd8_c00053{bottom:99.250740pt;}
.yd7_c00053{bottom:99.911767pt;}
.yd6_c00053{bottom:100.334532pt;}
.yd5_c00053{bottom:102.066539pt;}
.yd4_c00053{bottom:102.681765pt;}
.yd3_c00053{bottom:109.203253pt;}
.yd2_c00053{bottom:110.423124pt;}
.yd1_c00053{bottom:110.964187pt;}
.yd0_c00053{bottom:111.351656pt;}
.ycf_c00053{bottom:111.622581pt;}
.yce_c00053{bottom:112.843452pt;}
.ycd_c00053{bottom:113.377737pt;}
.ycc_c00053{bottom:113.798680pt;}
.ycb_c00053{bottom:114.552407pt;}
.yca_c00053{bottom:115.160741pt;}
.yc9_c00053{bottom:123.616259pt;}
.yc8_c00053{bottom:124.817993pt;}
.yc7_c00053{bottom:125.263552pt;}
.yc6_c00053{bottom:126.213976pt;}
.yc5_c00053{bottom:127.288727pt;}
.yc4_c00053{bottom:129.002952pt;}
.yc3_c00053{bottom:129.806223pt;}
.yc2_c00053{bottom:141.511645pt;}
.yc1_c00053{bottom:142.807803pt;}
.yc0_c00053{bottom:143.220800pt;}
.ybf_c00053{bottom:144.015233pt;}
.ybe_c00053{bottom:145.085217pt;}
.ybd_c00053{bottom:146.085655pt;}
.ybc_c00053{bottom:146.827781pt;}
.ybb_c00053{bottom:147.332919pt;}
.yba_c00053{bottom:156.185752pt;}
.yb9_c00053{bottom:157.531192pt;}
.yb8_c00053{bottom:157.764176pt;}
.yb7_c00053{bottom:158.592527pt;}
.yb6_c00053{bottom:159.395135pt;}
.yb5_c00053{bottom:160.300067pt;}
.yb4_c00053{bottom:171.598692pt;}
.yb3_c00053{bottom:172.094927pt;}
.yb2_c00053{bottom:172.577581pt;}
.yb1_c00053{bottom:173.086032pt;}
.yb0_c00053{bottom:173.341551pt;}
.yaf_c00053{bottom:174.160388pt;}
.yae_c00053{bottom:174.836259pt;}
.yad_c00053{bottom:175.666171pt;}
.yac_c00053{bottom:185.999800pt;}
.yab_c00053{bottom:186.734676pt;}
.yaa_c00053{bottom:188.074857pt;}
.ya9_c00053{bottom:189.850640pt;}
.ya8_c00053{bottom:190.282453pt;}
.ya7_c00053{bottom:191.638168pt;}
.ya6_c00053{bottom:192.475011pt;}
.ya5_c00053{bottom:200.685036pt;}
.ya4_c00053{bottom:201.705957pt;}
.ya3_c00053{bottom:202.329591pt;}
.ya2_c00053{bottom:205.142265pt;}
.ya1_c00053{bottom:206.302188pt;}
.ya0_c00053{bottom:210.140943pt;}
.y9f_c00053{bottom:213.609333pt;}
.y9e_c00053{bottom:215.602813pt;}
.y9d_c00053{bottom:217.184787pt;}
.y9c_c00053{bottom:218.284773pt;}
.y9b_c00053{bottom:218.801040pt;}
.y9a_c00053{bottom:219.117893pt;}
.y99_c00053{bottom:220.329880pt;}
.y98_c00053{bottom:221.145600pt;}
.y97_c00053{bottom:221.628680pt;}
.y96_c00053{bottom:222.707067pt;}
.y95_c00053{bottom:231.813240pt;}
.y94_c00053{bottom:232.327160pt;}
.y93_c00053{bottom:233.744080pt;}
.y92_c00053{bottom:234.011547pt;}
.y91_c00053{bottom:234.992480pt;}
.y90_c00053{bottom:236.390267pt;}
.y8f_c00053{bottom:244.595520pt;}
.y8e_c00053{bottom:245.954640pt;}
.y8d_c00053{bottom:246.467880pt;}
.y8c_c00053{bottom:247.703400pt;}
.y8b_c00053{bottom:248.682440pt;}
.y8a_c00053{bottom:249.252507pt;}
.y89_c00053{bottom:250.591893pt;}
.y88_c00053{bottom:252.243307pt;}
.y87_c00053{bottom:259.939853pt;}
.y86_c00053{bottom:261.000373pt;}
.y85_c00053{bottom:261.463773pt;}
.y84_c00053{bottom:262.000293pt;}
.y83_c00053{bottom:264.026253pt;}
.y82_c00053{bottom:264.737213pt;}
.y81_c00053{bottom:265.749293pt;}
.y80_c00053{bottom:266.649333pt;}
.y7f_c00053{bottom:278.773333pt;}
.y7e_c00053{bottom:279.045333pt;}
.y7d_c00053{bottom:279.870667pt;}
.y7c_c00053{bottom:280.842667pt;}
.y7b_c00053{bottom:281.289333pt;}
.y7a_c00053{bottom:289.576000pt;}
.y79_c00053{bottom:291.505333pt;}
.y78_c00053{bottom:292.912000pt;}
.y77_c00053{bottom:293.390667pt;}
.y76_c00053{bottom:293.724000pt;}
.y75_c00053{bottom:295.693333pt;}
.y74_c00053{bottom:304.717333pt;}
.y73_c00053{bottom:305.226667pt;}
.y72_c00053{bottom:306.626667pt;}
.y71_c00053{bottom:307.514667pt;}
.y70_c00053{bottom:307.906667pt;}
.y6f_c00053{bottom:309.090667pt;}
.y6e_c00053{bottom:309.510667pt;}
.y6d_c00053{bottom:309.953333pt;}
.y6c_c00053{bottom:310.812000pt;}
.y6b_c00053{bottom:321.744000pt;}
.y6a_c00053{bottom:322.425333pt;}
.y69_c00053{bottom:322.800000pt;}
.y68_c00053{bottom:323.708000pt;}
.y67_c00053{bottom:324.266667pt;}
.y66_c00053{bottom:325.412000pt;}
.y65_c00053{bottom:326.410667pt;}
.y64_c00053{bottom:335.078667pt;}
.y63_c00053{bottom:335.684000pt;}
.y62_c00053{bottom:336.804000pt;}
.y61_c00053{bottom:337.180000pt;}
.y60_c00053{bottom:337.448000pt;}
.y5f_c00053{bottom:338.802667pt;}
.y5e_c00053{bottom:340.084000pt;}
.y5d_c00053{bottom:340.548000pt;}
.y5c_c00053{bottom:340.844000pt;}
.y5b_c00053{bottom:341.533333pt;}
.y5a_c00053{bottom:349.934667pt;}
.y59_c00053{bottom:350.472000pt;}
.y58_c00053{bottom:351.405333pt;}
.y57_c00053{bottom:352.144000pt;}
.y56_c00053{bottom:353.854667pt;}
.y55_c00053{bottom:354.405333pt;}
.y54_c00053{bottom:354.702667pt;}
.y53_c00053{bottom:355.833333pt;}
.y52_c00053{bottom:356.413333pt;}
.y51_c00053{bottom:364.896000pt;}
.y50_c00053{bottom:366.376000pt;}
.y4f_c00053{bottom:366.936000pt;}
.y4e_c00053{bottom:368.300000pt;}
.y4d_c00053{bottom:368.744000pt;}
.y4c_c00053{bottom:370.692000pt;}
.y4b_c00053{bottom:371.364000pt;}
.y4a_c00053{bottom:371.773333pt;}
.y49_c00053{bottom:380.293333pt;}
.y48_c00053{bottom:381.298667pt;}
.y47_c00053{bottom:381.838667pt;}
.y46_c00053{bottom:383.258667pt;}
.y45_c00053{bottom:384.422667pt;}
.y44_c00053{bottom:385.124000pt;}
.y43_c00053{bottom:386.518667pt;}
.y42_c00053{bottom:386.890667pt;}
.y41_c00053{bottom:396.997333pt;}
.y40_c00053{bottom:397.434667pt;}
.y3f_c00053{bottom:397.714667pt;}
.y3e_c00053{bottom:399.464000pt;}
.y3d_c00053{bottom:399.884000pt;}
.y3c_c00053{bottom:400.874667pt;}
.y3b_c00053{bottom:401.294667pt;}
.y3a_c00053{bottom:402.249333pt;}
.y39_c00053{bottom:412.340000pt;}
.y38_c00053{bottom:413.354667pt;}
.y37_c00053{bottom:413.638667pt;}
.y36_c00053{bottom:414.758667pt;}
.y35_c00053{bottom:415.108000pt;}
.y34_c00053{bottom:416.166667pt;}
.y33_c00053{bottom:424.765333pt;}
.y32_c00053{bottom:425.253333pt;}
.y31_c00053{bottom:425.890667pt;}
.y30_c00053{bottom:426.277333pt;}
.y2f_c00053{bottom:427.893333pt;}
.y2e_c00053{bottom:428.549333pt;}
.y2d_c00053{bottom:429.101333pt;}
.y2c_c00053{bottom:430.682667pt;}
.y2b_c00053{bottom:432.730667pt;}
.y2a_c00053{bottom:440.840000pt;}
.y29_c00053{bottom:441.822667pt;}
.y28_c00053{bottom:442.165333pt;}
.y27_c00053{bottom:442.758667pt;}
.y26_c00053{bottom:444.500000pt;}
.y25_c00053{bottom:445.918667pt;}
.y24_c00053{bottom:446.646667pt;}
.y23_c00053{bottom:454.928000pt;}
.y22_c00053{bottom:456.178667pt;}
.y21_c00053{bottom:456.729333pt;}
.y20_c00053{bottom:458.720000pt;}
.y1f_c00053{bottom:460.084000pt;}
.y1e_c00053{bottom:460.545333pt;}
.y1d_c00053{bottom:460.901333pt;}
.y1c_c00053{bottom:461.270667pt;}
.y1b_c00053{bottom:462.069333pt;}
.y1a_c00053{bottom:462.729333pt;}
.y19_c00053{bottom:470.389333pt;}
.y18_c00053{bottom:470.902667pt;}
.y17_c00053{bottom:471.885333pt;}
.y16_c00053{bottom:472.317333pt;}
.y15_c00053{bottom:473.916000pt;}
.y14_c00053{bottom:475.932000pt;}
.y13_c00053{bottom:476.248000pt;}
.y12_c00053{bottom:477.849333pt;}
.y11_c00053{bottom:484.810667pt;}
.y10_c00053{bottom:485.420000pt;}
.yf_c00053{bottom:486.245333pt;}
.ye_c00053{bottom:486.606667pt;}
.yd_c00053{bottom:487.572000pt;}
.yc_c00053{bottom:487.765333pt;}
.yb_c00053{bottom:488.766667pt;}
.ya_c00053{bottom:489.845333pt;}
.y9_c00053{bottom:500.102667pt;}
.y8_c00053{bottom:501.374667pt;}
.y7_c00053{bottom:502.594667pt;}
.y6_c00053{bottom:503.290667pt;}
.y5_c00053{bottom:503.740000pt;}
.y4_c00053{bottom:504.373333pt;}
.y3_c00053{bottom:505.036000pt;}
.y2_c00053{bottom:505.444000pt;}
.y1_c00053{bottom:515.165333pt;}
.h14_c00053{height:51.354119pt;}
.hd_c00053{height:51.356428pt;}
.h5_c00053{height:52.266667pt;}
.h13_c00053{height:52.287830pt;}
.hc_c00053{height:52.290181pt;}
.ha_c00053{height:53.200000pt;}
.h11_c00053{height:53.221542pt;}
.h9_c00053{height:54.133333pt;}
.h12_c00053{height:54.155253pt;}
.h3_c00053{height:55.066667pt;}
.he_c00053{height:55.088964pt;}
.h15_c00053{height:56.022675pt;}
.h8_c00053{height:57.866667pt;}
.h6_c00053{height:58.800000pt;}
.h10_c00053{height:58.823809pt;}
.hb_c00053{height:58.826454pt;}
.h4_c00053{height:59.733333pt;}
.hf_c00053{height:59.757520pt;}
.h16_c00053{height:60.687169pt;}
.h7_c00053{height:61.600000pt;}
.h2_c00053{height:110.133333pt;}
.h0_c00053{height:549.840000pt;}
.h1_c00053{height:550.000000pt;}
.w0_c00053{width:321.066667pt;}
.w1_c00053{width:321.333333pt;}
.x0_c00053{left:0.000000pt;}
.x65_c00053{left:20.222667pt;}
.x76_c00053{left:21.901065pt;}
.x72_c00053{left:22.927084pt;}
.x6c_c00053{left:24.097648pt;}
.x69_c00053{left:25.033488pt;}
.x5f_c00053{left:26.649293pt;}
.x5b_c00053{left:27.757453pt;}
.x4e_c00053{left:28.842667pt;}
.x49_c00053{left:29.788000pt;}
.x40_c00053{left:30.894667pt;}
.x36_c00053{left:32.225333pt;}
.x26_c00053{left:34.280000pt;}
.x11_c00053{left:35.513333pt;}
.x2_c00053{left:37.494667pt;}
.x81_c00053{left:40.015711pt;}
.x73_c00053{left:42.318069pt;}
.x37_c00053{left:45.036000pt;}
.x3b_c00053{left:46.004000pt;}
.x79_c00053{left:47.523607pt;}
.x53_c00053{left:48.726667pt;}
.x55_c00053{left:50.097333pt;}
.x41_c00053{left:52.362667pt;}
.x3_c00053{left:56.013333pt;}
.x19_c00053{left:57.264000pt;}
.x61_c00053{left:63.537347pt;}
.x4f_c00053{left:64.622667pt;}
.x21_c00053{left:66.462667pt;}
.x85_c00053{left:67.664000pt;}
.x3c_c00053{left:69.985333pt;}
.x32_c00053{left:73.413333pt;}
.x7f_c00053{left:75.827884pt;}
.x56_c00053{left:80.098667pt;}
.x5c_c00053{left:81.025187pt;}
.x1a_c00053{left:83.030667pt;}
.x7b_c00053{left:84.386671pt;}
.x4_c00053{left:86.154667pt;}
.x12_c00053{left:87.174667pt;}
.x84_c00053{left:89.777195pt;}
.xa_c00053{left:90.702667pt;}
.x2d_c00053{left:92.429333pt;}
.x1b_c00053{left:94.960000pt;}
.x13_c00053{left:97.350667pt;}
.x27_c00053{left:98.294667pt;}
.x50_c00053{left:100.608000pt;}
.x42_c00053{left:105.261333pt;}
.x1c_c00053{left:106.446667pt;}
.x62_c00053{left:108.298667pt;}
.x6a_c00053{left:109.188240pt;}
.x2e_c00053{left:111.862667pt;}
.x6f_c00053{left:112.926127pt;}
.x57_c00053{left:113.834667pt;}
.x5_c00053{left:114.930667pt;}
.x38_c00053{left:117.312000pt;}
.x77_c00053{left:118.550540pt;}
.x1d_c00053{left:121.349333pt;}
.x82_c00053{left:123.266200pt;}
.x5d_c00053{left:124.247907pt;}
.x43_c00053{left:125.665333pt;}
.x22_c00053{left:128.137333pt;}
.x54_c00053{left:130.424000pt;}
.x33_c00053{left:132.197333pt;}
.x6_c00053{left:135.378667pt;}
.x47_c00053{left:136.706667pt;}
.x3d_c00053{left:139.557333pt;}
.xb_c00053{left:140.789333pt;}
.x4a_c00053{left:142.652000pt;}
.x86_c00053{left:143.965333pt;}
.x52_c00053{left:144.908000pt;}
.x83_c00053{left:146.789908pt;}
.x28_c00053{left:147.706667pt;}
.xc_c00053{left:150.462667pt;}
.x80_c00053{left:151.759068pt;}
.x3e_c00053{left:155.405333pt;}
.x70_c00053{left:156.386192pt;}
.x1_c00053{left:158.160000pt;}
.x78_c00053{left:159.781525pt;}
.x63_c00053{left:160.994893pt;}
.x14_c00053{left:162.402667pt;}
.x1e_c00053{left:165.353333pt;}
.x7_c00053{left:167.012000pt;}
.x71_c00053{left:168.607957pt;}
.x7c_c00053{left:169.618839pt;}
.x4b_c00053{left:172.088000pt;}
.x2f_c00053{left:174.110667pt;}
.x6d_c00053{left:175.379944pt;}
.x64_c00053{left:178.782080pt;}
.x66_c00053{left:179.818911pt;}
.x74_c00053{left:180.728040pt;}
.x29_c00053{left:185.470667pt;}
.x44_c00053{left:189.012000pt;}
.x30_c00053{left:189.914667pt;}
.x7d_c00053{left:191.082200pt;}
.x6b_c00053{left:193.928588pt;}
.x75_c00053{left:196.569485pt;}
.xd_c00053{left:198.717333pt;}
.x23_c00053{left:203.862667pt;}
.x58_c00053{left:205.065333pt;}
.x39_c00053{left:206.416000pt;}
.x15_c00053{left:213.982667pt;}
.xe_c00053{left:216.768000pt;}
.x4c_c00053{left:219.866667pt;}
.x8_c00053{left:222.482667pt;}
.x3f_c00053{left:224.126667pt;}
.x3a_c00053{left:225.050667pt;}
.x7a_c00053{left:226.646215pt;}
.x16_c00053{left:227.904000pt;}
.x1f_c00053{left:229.581333pt;}
.x5e_c00053{left:230.618040pt;}
.x67_c00053{left:232.835175pt;}
.x34_c00053{left:234.248000pt;}
.x2a_c00053{left:235.972000pt;}
.x59_c00053{left:238.396000pt;}
.x4d_c00053{left:239.553333pt;}
.x7e_c00053{left:242.570305pt;}
.x24_c00053{left:244.564000pt;}
.x31_c00053{left:246.317333pt;}
.x20_c00053{left:247.324000pt;}
.x45_c00053{left:250.977333pt;}
.x35_c00053{left:252.494667pt;}
.x60_c00053{left:255.463187pt;}
.x48_c00053{left:256.628000pt;}
.xf_c00053{left:258.026667pt;}
.x17_c00053{left:259.590667pt;}
.x51_c00053{left:261.566667pt;}
.x6e_c00053{left:262.506751pt;}
.x68_c00053{left:263.833479pt;}
.x2b_c00053{left:267.961333pt;}
.x46_c00053{left:270.882667pt;}
.x5a_c00053{left:273.746667pt;}
.x18_c00053{left:276.149333pt;}
.x9_c00053{left:280.310667pt;}
.x2c_c00053{left:283.218667pt;}
.x25_c00053{left:287.289333pt;}
.x10_c00053{left:288.498667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00054 {
    display:none;
  }
  .loading-indicator_c00054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00054 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00054 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00054" -> "#page-container .classname_c00054")
 */
.pf_c00054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00054 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00054 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00054 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00054 {overflow:visible;}
  }
}
.c_c00054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00054 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00054:after { /* webkit #35443 */
  content: '';
}
.t_c00054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00054 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00054 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00054 { /* info for Javascript */
  display:none;
}
.l_c00054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00054:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00054 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00054.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c00054{transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.md0_c00054{transform:matrix(0.142592,0.005281,-0.009253,0.249829,0,0);-ms-transform:matrix(0.142592,0.005281,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.142592,0.005281,-0.009253,0.249829,0,0);}
.m9e_c00054{transform:matrix(0.143274,0.005880,-0.010252,0.249790,0,0);-ms-transform:matrix(0.143274,0.005880,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.143274,0.005880,-0.010252,0.249790,0,0);}
.me9_c00054{transform:matrix(0.145920,0.005404,-0.009253,0.249829,0,0);-ms-transform:matrix(0.145920,0.005404,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.145920,0.005404,-0.009253,0.249829,0,0);}
.ma8_c00054{transform:matrix(0.149003,0.005519,-0.009253,0.249829,0,0);-ms-transform:matrix(0.149003,0.005519,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.149003,0.005519,-0.009253,0.249829,0,0);}
.m59_c00054{transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.m9a_c00054{transform:matrix(0.153246,0.006289,-0.010252,0.249790,0,0);-ms-transform:matrix(0.153246,0.006289,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.153246,0.006289,-0.010252,0.249790,0,0);}
.m31_c00054{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);}
.mf9_c00054{transform:matrix(0.156293,0.005789,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156293,0.005789,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156293,0.005789,-0.009253,0.249829,0,0);}
.m4a_c00054{transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.ma1_c00054{transform:matrix(0.159686,0.006554,-0.010252,0.249790,0,0);-ms-transform:matrix(0.159686,0.006554,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.159686,0.006554,-0.010252,0.249790,0,0);}
.m97_c00054{transform:matrix(0.160380,0.006582,-0.010252,0.249790,0,0);-ms-transform:matrix(0.160380,0.006582,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.160380,0.006582,-0.010252,0.249790,0,0);}
.m95_c00054{transform:matrix(0.160959,0.006606,-0.010252,0.249790,0,0);-ms-transform:matrix(0.160959,0.006606,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.160959,0.006606,-0.010252,0.249790,0,0);}
.m57_c00054{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.161260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161260,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.md3_c00054{transform:matrix(0.161359,0.005976,-0.009253,0.249829,0,0);-ms-transform:matrix(0.161359,0.005976,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.161359,0.005976,-0.009253,0.249829,0,0);}
.m11_c00054{transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);}
.mb1_c00054{transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162199,0.006007,-0.009253,0.249829,0,0);}
.m2e_c00054{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m4f_c00054{transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);}
.m92_c00054{transform:matrix(0.163692,0.006718,-0.010252,0.249790,0,0);-ms-transform:matrix(0.163692,0.006718,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.163692,0.006718,-0.010252,0.249790,0,0);}
.mb6_c00054{transform:matrix(0.163873,0.006069,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163873,0.006069,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163873,0.006069,-0.009253,0.249829,0,0);}
.mcc_c00054{transform:matrix(0.164043,0.006076,-0.009253,0.249829,0,0);-ms-transform:matrix(0.164043,0.006076,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.164043,0.006076,-0.009253,0.249829,0,0);}
.mb3_c00054{transform:matrix(0.165152,0.006117,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165152,0.006117,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165152,0.006117,-0.009253,0.249829,0,0);}
.md5_c00054{transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165447,0.006128,-0.009253,0.249829,0,0);}
.mf2_c00054{transform:matrix(0.166336,0.006161,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166336,0.006161,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166336,0.006161,-0.009253,0.249829,0,0);}
.m47_c00054{transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);}
.mb9_c00054{transform:matrix(0.166821,0.006179,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166821,0.006179,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166821,0.006179,-0.009253,0.249829,0,0);}
.mf7_c00054{transform:matrix(0.166926,0.006182,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166926,0.006182,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166926,0.006182,-0.009253,0.249829,0,0);}
.m75_c00054{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m76_c00054{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.mf0_c00054{transform:matrix(0.167905,0.006219,-0.009253,0.249829,0,0);-ms-transform:matrix(0.167905,0.006219,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.167905,0.006219,-0.009253,0.249829,0,0);}
.m8_c00054{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);}
.m73_c00054{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.ma2_c00054{transform:matrix(0.171925,0.007056,-0.010252,0.249790,0,0);-ms-transform:matrix(0.171925,0.007056,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.171925,0.007056,-0.010252,0.249790,0,0);}
.m64_c00054{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.me8_c00054{transform:matrix(0.172377,0.006384,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172377,0.006384,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172377,0.006384,-0.009253,0.249829,0,0);}
.ma4_c00054{transform:matrix(0.172615,0.007084,-0.010252,0.249790,0,0);-ms-transform:matrix(0.172615,0.007084,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.172615,0.007084,-0.010252,0.249790,0,0);}
.md1_c00054{transform:matrix(0.173406,0.006422,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173406,0.006422,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173406,0.006422,-0.009253,0.249829,0,0);}
.ma5_c00054{transform:matrix(0.173441,0.006424,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173441,0.006424,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173441,0.006424,-0.009253,0.249829,0,0);}
.ma0_c00054{transform:matrix(0.173514,0.007121,-0.010252,0.249790,0,0);-ms-transform:matrix(0.173514,0.007121,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.173514,0.007121,-0.010252,0.249790,0,0);}
.m90_c00054{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.me5_c00054{transform:matrix(0.174755,0.006472,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174755,0.006472,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174755,0.006472,-0.009253,0.249829,0,0);}
.m81_c00054{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00054{transform:matrix(0.176159,0.006524,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176159,0.006524,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176159,0.006524,-0.009253,0.249829,0,0);}
.m40_c00054{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);}
.m61_c00054{transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);}
.mbc_c00054{transform:matrix(0.176539,0.006538,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176539,0.006538,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176539,0.006538,-0.009253,0.249829,0,0);}
.m50_c00054{transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);}
.mc3_c00054{transform:matrix(0.177014,0.006556,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177014,0.006556,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177014,0.006556,-0.009253,0.249829,0,0);}
.m8c_c00054{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.mfa_c00054{transform:matrix(0.177458,0.006573,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177458,0.006573,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177458,0.006573,-0.009253,0.249829,0,0);}
.m58_c00054{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.m8b_c00054{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.maa_c00054{transform:matrix(0.178253,0.006602,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178253,0.006602,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178253,0.006602,-0.009253,0.249829,0,0);}
.m39_c00054{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.mba_c00054{transform:matrix(0.179077,0.006632,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179077,0.006632,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179077,0.006632,-0.009253,0.249829,0,0);}
.mb5_c00054{transform:matrix(0.179382,0.006644,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179382,0.006644,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179382,0.006644,-0.009253,0.249829,0,0);}
.mc0_c00054{transform:matrix(0.179492,0.006648,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179492,0.006648,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179492,0.006648,-0.009253,0.249829,0,0);}
.ma3_c00054{transform:matrix(0.179579,0.007370,-0.010252,0.249790,0,0);-ms-transform:matrix(0.179579,0.007370,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.179579,0.007370,-0.010252,0.249790,0,0);}
.mf5_c00054{transform:matrix(0.179712,0.006656,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179712,0.006656,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179712,0.006656,-0.009253,0.249829,0,0);}
.m3b_c00054{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.me0_c00054{transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180981,0.006703,-0.009253,0.249829,0,0);}
.m52_c00054{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.me6_c00054{transform:matrix(0.183119,0.006782,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183119,0.006782,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183119,0.006782,-0.009253,0.249829,0,0);}
.m1a_c00054{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m8a_c00054{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.mf3_c00054{transform:matrix(0.183524,0.006797,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183524,0.006797,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183524,0.006797,-0.009253,0.249829,0,0);}
.m6e_c00054{transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);}
.mc7_c00054{transform:matrix(0.184154,0.006821,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184154,0.006821,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184154,0.006821,-0.009253,0.249829,0,0);}
.m49_c00054{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.me4_c00054{transform:matrix(0.184329,0.006827,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184329,0.006827,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184329,0.006827,-0.009253,0.249829,0,0);}
.m99_c00054{transform:matrix(0.184650,0.007578,-0.010252,0.249790,0,0);-ms-transform:matrix(0.184650,0.007578,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.184650,0.007578,-0.010252,0.249790,0,0);}
.m96_c00054{transform:matrix(0.184859,0.007587,-0.010252,0.249790,0,0);-ms-transform:matrix(0.184859,0.007587,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.184859,0.007587,-0.010252,0.249790,0,0);}
.m3_c00054{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.mf6_c00054{transform:matrix(0.185808,0.006882,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185808,0.006882,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185808,0.006882,-0.009253,0.249829,0,0);}
.m94_c00054{transform:matrix(0.185993,0.007633,-0.010252,0.249790,0,0);-ms-transform:matrix(0.185993,0.007633,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.185993,0.007633,-0.010252,0.249790,0,0);}
.m3f_c00054{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);}
.m9c_c00054{transform:matrix(0.187712,0.007704,-0.010252,0.249790,0,0);-ms-transform:matrix(0.187712,0.007704,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.187712,0.007704,-0.010252,0.249790,0,0);}
.m15_c00054{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.mcd_c00054{transform:matrix(0.188061,0.006965,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188061,0.006965,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188061,0.006965,-0.009253,0.249829,0,0);}
.mea_c00054{transform:matrix(0.188296,0.006974,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188296,0.006974,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188296,0.006974,-0.009253,0.249829,0,0);}
.mc5_c00054{transform:matrix(0.188521,0.006982,-0.009253,0.249829,0,0);-ms-transform:matrix(0.188521,0.006982,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.188521,0.006982,-0.009253,0.249829,0,0);}
.m1c_c00054{transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m98_c00054{transform:matrix(0.188756,0.007747,-0.010252,0.249790,0,0);-ms-transform:matrix(0.188756,0.007747,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.188756,0.007747,-0.010252,0.249790,0,0);}
.m4_c00054{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m91_c00054{transform:matrix(0.189121,0.007762,-0.010252,0.249790,0,0);-ms-transform:matrix(0.189121,0.007762,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.189121,0.007762,-0.010252,0.249790,0,0);}
.m26_c00054{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.mb0_c00054{transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189665,0.007025,-0.009253,0.249829,0,0);}
.m6f_c00054{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{transform:matrix(0.191719,0.007868,-0.010252,0.249790,0,0);-ms-transform:matrix(0.191719,0.007868,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.191719,0.007868,-0.010252,0.249790,0,0);}
.m66_c00054{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.mf1_c00054{transform:matrix(0.191878,0.007107,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191878,0.007107,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191878,0.007107,-0.009253,0.249829,0,0);}
.m4e_c00054{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);}
.mcb_c00054{transform:matrix(0.192883,0.007144,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192883,0.007144,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192883,0.007144,-0.009253,0.249829,0,0);}
.m37_c00054{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.mfb_c00054{transform:matrix(0.193652,0.007172,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193652,0.007172,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193652,0.007172,-0.009253,0.249829,0,0);}
.md8_c00054{transform:matrix(0.193927,0.007182,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193927,0.007182,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193927,0.007182,-0.009253,0.249829,0,0);}
.m74_c00054{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);}
.m8e_c00054{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.mce_c00054{transform:matrix(0.195171,0.007229,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195171,0.007229,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195171,0.007229,-0.009253,0.249829,0,0);}
.m9b_c00054{transform:matrix(0.195311,0.008016,-0.010252,0.249790,0,0);-ms-transform:matrix(0.195311,0.008016,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.195311,0.008016,-0.010252,0.249790,0,0);}
.meb_c00054{transform:matrix(0.195376,0.007236,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195376,0.007236,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195376,0.007236,-0.009253,0.249829,0,0);}
.m2d_c00054{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m51_c00054{transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);}
.mab_c00054{transform:matrix(0.195931,0.007257,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195931,0.007257,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195931,0.007257,-0.009253,0.249829,0,0);}
.md_c00054{transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);}
.m72_c00054{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.me3_c00054{transform:matrix(0.196330,0.007271,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196330,0.007271,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196330,0.007271,-0.009253,0.249829,0,0);}
.m34_c00054{transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);}
.mec_c00054{transform:matrix(0.196555,0.007280,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196555,0.007280,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196555,0.007280,-0.009253,0.249829,0,0);}
.mac_c00054{transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196640,0.007283,-0.009253,0.249829,0,0);}
.ma7_c00054{transform:matrix(0.197000,0.007296,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197000,0.007296,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197000,0.007296,-0.009253,0.249829,0,0);}
.m45_c00054{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);}
.mf4_c00054{transform:matrix(0.197959,0.007332,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197959,0.007332,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197959,0.007332,-0.009253,0.249829,0,0);}
.mef_c00054{transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198224,0.007342,-0.009253,0.249829,0,0);}
.m5f_c00054{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.mad_c00054{transform:matrix(0.198784,0.007362,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198784,0.007362,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198784,0.007362,-0.009253,0.249829,0,0);}
.mbd_c00054{transform:matrix(0.198979,0.007370,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198979,0.007370,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198979,0.007370,-0.009253,0.249829,0,0);}
.mbf_c00054{transform:matrix(0.199318,0.007382,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199318,0.007382,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199318,0.007382,-0.009253,0.249829,0,0);}
.m7a_c00054{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.md4_c00054{transform:matrix(0.199873,0.007403,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199873,0.007403,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199873,0.007403,-0.009253,0.249829,0,0);}
.md2_c00054{transform:matrix(0.200128,0.007412,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200128,0.007412,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200128,0.007412,-0.009253,0.249829,0,0);}
.m7_c00054{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mbb_c00054{transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);}
.m80_c00054{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.mb4_c00054{transform:matrix(0.202106,0.007485,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202106,0.007485,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202106,0.007485,-0.009253,0.249829,0,0);}
.md6_c00054{transform:matrix(0.203570,0.007540,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203570,0.007540,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203570,0.007540,-0.009253,0.249829,0,0);}
.mdc_c00054{transform:matrix(0.203630,0.007542,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203630,0.007542,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203630,0.007542,-0.009253,0.249829,0,0);}
.m2a_c00054{transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.mc8_c00054{transform:matrix(0.204835,0.007586,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204835,0.007586,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204835,0.007586,-0.009253,0.249829,0,0);}
.m18_c00054{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mde_c00054{transform:matrix(0.205764,0.007621,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205764,0.007621,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205764,0.007621,-0.009253,0.249829,0,0);}
.m93_c00054{transform:matrix(0.205832,0.008448,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205832,0.008448,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205832,0.008448,-0.010252,0.249790,0,0);}
.mb7_c00054{transform:matrix(0.205989,0.007629,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205989,0.007629,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205989,0.007629,-0.009253,0.249829,0,0);}
.mc9_c00054{transform:matrix(0.206014,0.007630,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206014,0.007630,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206014,0.007630,-0.009253,0.249829,0,0);}
.mc1_c00054{transform:matrix(0.206064,0.007632,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206064,0.007632,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206064,0.007632,-0.009253,0.249829,0,0);}
.mdb_c00054{transform:matrix(0.206084,0.007633,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206084,0.007633,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206084,0.007633,-0.009253,0.249829,0,0);}
.m42_c00054{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.mcf_c00054{transform:matrix(0.206224,0.007638,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206224,0.007638,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206224,0.007638,-0.009253,0.249829,0,0);}
.mdd_c00054{transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);}
.mf8_c00054{transform:matrix(0.208292,0.007715,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208292,0.007715,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208292,0.007715,-0.009253,0.249829,0,0);}
.m7d_c00054{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);}
.m8d_c00054{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.mb2_c00054{transform:matrix(0.209147,0.007746,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209147,0.007746,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209147,0.007746,-0.009253,0.249829,0,0);}
.m24_c00054{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m79_c00054{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.md7_c00054{transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);}
.m71_c00054{transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m9d_c00054{transform:matrix(0.210273,0.008630,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210273,0.008630,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210273,0.008630,-0.010252,0.249790,0,0);}
.m54_c00054{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.me2_c00054{transform:matrix(0.211260,0.007824,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211260,0.007824,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211260,0.007824,-0.009253,0.249829,0,0);}
.m48_c00054{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m87_c00054{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.mc2_c00054{transform:matrix(0.212899,0.007885,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212899,0.007885,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212899,0.007885,-0.009253,0.249829,0,0);}
.mb_c00054{transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);}
.m89_c00054{transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);}
.mee_c00054{transform:matrix(0.213798,0.007918,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213798,0.007918,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213798,0.007918,-0.009253,0.249829,0,0);}
.m7f_c00054{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.mc4_c00054{transform:matrix(0.215187,0.007970,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215187,0.007970,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215187,0.007970,-0.009253,0.249829,0,0);}
.mbe_c00054{transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);}
.m7b_c00054{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.mda_c00054{transform:matrix(0.215927,0.007997,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215927,0.007997,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215927,0.007997,-0.009253,0.249829,0,0);}
.mb8_c00054{transform:matrix(0.216157,0.008006,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216157,0.008006,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216157,0.008006,-0.009253,0.249829,0,0);}
.ma6_c00054{transform:matrix(0.216287,0.008011,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216287,0.008011,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216287,0.008011,-0.009253,0.249829,0,0);}
.m82_c00054{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);}
.me7_c00054{transform:matrix(0.219759,0.008139,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219759,0.008139,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219759,0.008139,-0.009253,0.249829,0,0);}
.m83_c00054{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.med_c00054{transform:matrix(0.220904,0.008182,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220904,0.008182,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220904,0.008182,-0.009253,0.249829,0,0);}
.m6c_c00054{transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);}
.mca_c00054{transform:matrix(0.221883,0.008218,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221883,0.008218,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221883,0.008218,-0.009253,0.249829,0,0);}
.m69_c00054{transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223580,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);}
.m6d_c00054{transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.224495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224495,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.mdf_c00054{transform:matrix(0.229837,0.008512,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229837,0.008512,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229837,0.008512,-0.009253,0.249829,0,0);}
.m28_c00054{transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);}
.me1_c00054{transform:matrix(0.231846,0.008587,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231846,0.008587,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231846,0.008587,-0.009253,0.249829,0,0);}
.m36_c00054{transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);}
.m78_c00054{transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);}
.m8f_c00054{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.235360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235360,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);}
.m77_c00054{transform:matrix(0.241565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241565,0.000000,0.000000,0.250000,0,0);}
.mae_c00054{transform:matrix(0.242404,0.008978,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242404,0.008978,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242404,0.008978,-0.009253,0.249829,0,0);}
.m6a_c00054{transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);}
.md9_c00054{transform:matrix(0.246576,0.009132,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246576,0.009132,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246576,0.009132,-0.009253,0.249829,0,0);}
.m7e_c00054{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.maf_c00054{transform:matrix(0.250074,0.009262,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250074,0.009262,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250074,0.009262,-0.009253,0.249829,0,0);}
.m6b_c00054{transform:matrix(0.299215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299215,0.000000,0.000000,0.250000,0,0);}
.mc6_c00054{transform:matrix(0.532940,0.019739,-0.009253,0.249829,0,0);-ms-transform:matrix(0.532940,0.019739,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.532940,0.019739,-0.009253,0.249829,0,0);}
.m6_c00054{transform:matrix(0.690890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690890,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:0.000000px;}
.fc0_c00054{color:transparent;}
.fs9_c00054{font-size:52.500000px;}
.fs7_c00054{font-size:54.600000px;}
.fs11_c00054{font-size:57.731806px;}
.fs10_c00054{font-size:58.781475px;}
.fs4_c00054{font-size:58.800000px;}
.fse_c00054{font-size:59.831144px;}
.fs6_c00054{font-size:59.850000px;}
.fs0_c00054{font-size:60.900000px;}
.fs2_c00054{font-size:61.950000px;}
.fsc_c00054{font-size:62.980152px;}
.fs1_c00054{font-size:63.000000px;}
.fsd_c00054{font-size:64.029821px;}
.fsf_c00054{font-size:65.079490px;}
.fsb_c00054{font-size:65.089648px;}
.fsa_c00054{font-size:66.139481px;}
.fs8_c00054{font-size:66.150000px;}
.fs12_c00054{font-size:67.178829px;}
.fs5_c00054{font-size:67.200000px;}
.fs3_c00054{font-size:68.250000px;}
.y0_c00054{bottom:0.000000px;}
.yfe_c00054{bottom:24.119059px;}
.yfd_c00054{bottom:26.574990px;}
.yfc_c00054{bottom:28.412095px;}
.yfb_c00054{bottom:30.109008px;}
.yfa_c00054{bottom:33.427908px;}
.yf9_c00054{bottom:35.307304px;}
.yf8_c00054{bottom:39.247305px;}
.yf7_c00054{bottom:43.244803px;}
.yf6_c00054{bottom:44.566092px;}
.yf5_c00054{bottom:45.491776px;}
.yf4_c00054{bottom:47.392707px;}
.yf3_c00054{bottom:48.482449px;}
.yf2_c00054{bottom:49.458972px;}
.yf1_c00054{bottom:53.165040px;}
.yf0_c00054{bottom:53.920228px;}
.yef_c00054{bottom:55.159987px;}
.yee_c00054{bottom:59.487988px;}
.yed_c00054{bottom:62.329311px;}
.yec_c00054{bottom:63.263154px;}
.yeb_c00054{bottom:64.409173px;}
.yea_c00054{bottom:65.178514px;}
.ye9_c00054{bottom:69.038817px;}
.ye8_c00054{bottom:70.474047px;}
.ye7_c00054{bottom:74.329521px;}
.ye6_c00054{bottom:75.084765px;}
.ye5_c00054{bottom:77.031316px;}
.ye4_c00054{bottom:80.562504px;}
.ye3_c00054{bottom:81.772404px;}
.ye2_c00054{bottom:82.380351px;}
.ye1_c00054{bottom:84.832840px;}
.ye0_c00054{bottom:88.903654px;}
.ydf_c00054{bottom:92.744310px;}
.yde_c00054{bottom:95.186976px;}
.ydd_c00054{bottom:98.139076px;}
.ydc_c00054{bottom:99.450985px;}
.ydb_c00054{bottom:102.182529px;}
.yda_c00054{bottom:103.371172px;}
.yd9_c00054{bottom:105.680583px;}
.yd8_c00054{bottom:106.713049px;}
.yd7_c00054{bottom:110.923335px;}
.yd6_c00054{bottom:112.036720px;}
.yd5_c00054{bottom:112.758387px;}
.yd4_c00054{bottom:114.598267px;}
.yd3_c00054{bottom:115.441978px;}
.yd2_c00054{bottom:118.267872px;}
.yd1_c00054{bottom:119.763153px;}
.yd0_c00054{bottom:122.301223px;}
.ycf_c00054{bottom:123.264648px;}
.yce_c00054{bottom:124.263093px;}
.ycd_c00054{bottom:127.339846px;}
.ycc_c00054{bottom:129.806044px;}
.ycb_c00054{bottom:131.413935px;}
.yca_c00054{bottom:132.425145px;}
.yc9_c00054{bottom:134.850717px;}
.yc8_c00054{bottom:136.392840px;}
.yc7_c00054{bottom:145.155513px;}
.yc6_c00054{bottom:145.880787px;}
.yc5_c00054{bottom:146.816461px;}
.yc4_c00054{bottom:149.195913px;}
.yc3_c00054{bottom:150.327059px;}
.yc2_c00054{bottom:154.080135px;}
.yc1_c00054{bottom:155.705453px;}
.yc0_c00054{bottom:157.192075px;}
.ybf_c00054{bottom:160.312119px;}
.ybe_c00054{bottom:161.998320px;}
.ybd_c00054{bottom:164.938987px;}
.ybc_c00054{bottom:166.018795px;}
.ybb_c00054{bottom:166.781810px;}
.yba_c00054{bottom:169.817104px;}
.yb9_c00054{bottom:170.997090px;}
.yb8_c00054{bottom:173.378040px;}
.yb7_c00054{bottom:179.553303px;}
.yb6_c00054{bottom:180.636441px;}
.yb5_c00054{bottom:183.942132px;}
.yb4_c00054{bottom:185.019775px;}
.yb3_c00054{bottom:189.441405px;}
.yb2_c00054{bottom:190.108792px;}
.yb1_c00054{bottom:196.593412px;}
.yb0_c00054{bottom:200.323013px;}
.yaf_c00054{bottom:201.973804px;}
.yae_c00054{bottom:202.807359px;}
.yad_c00054{bottom:204.991617px;}
.yac_c00054{bottom:206.849424px;}
.yab_c00054{bottom:211.132137px;}
.yaa_c00054{bottom:212.718327px;}
.ya9_c00054{bottom:215.496990px;}
.ya8_c00054{bottom:217.096500px;}
.ya7_c00054{bottom:218.073409px;}
.ya6_c00054{bottom:220.028146px;}
.ya5_c00054{bottom:223.228800px;}
.ya4_c00054{bottom:224.402586px;}
.ya3_c00054{bottom:228.424149px;}
.ya2_c00054{bottom:231.593840px;}
.ya1_c00054{bottom:232.392981px;}
.ya0_c00054{bottom:235.112449px;}
.y9f_c00054{bottom:237.526216px;}
.y9e_c00054{bottom:239.416448px;}
.y9d_c00054{bottom:240.587309px;}
.y9c_c00054{bottom:245.629380px;}
.y9b_c00054{bottom:246.435276px;}
.y9a_c00054{bottom:248.162565px;}
.y99_c00054{bottom:249.617163px;}
.y98_c00054{bottom:250.312420px;}
.y97_c00054{bottom:252.515289px;}
.y96_c00054{bottom:254.979533px;}
.y95_c00054{bottom:255.796929px;}
.y94_c00054{bottom:257.061000px;}
.y93_c00054{bottom:262.870500px;}
.y92_c00054{bottom:263.475000px;}
.y91_c00054{bottom:266.539500px;}
.y90_c00054{bottom:267.408000px;}
.y8f_c00054{bottom:269.142000px;}
.y8e_c00054{bottom:269.937000px;}
.y8d_c00054{bottom:271.231500px;}
.y8c_c00054{bottom:274.345500px;}
.y8b_c00054{bottom:279.280500px;}
.y8a_c00054{bottom:280.300500px;}
.y89_c00054{bottom:282.922500px;}
.y88_c00054{bottom:283.668000px;}
.y87_c00054{bottom:286.642500px;}
.y86_c00054{bottom:287.187000px;}
.y85_c00054{bottom:289.689000px;}
.y84_c00054{bottom:290.409000px;}
.y83_c00054{bottom:292.167000px;}
.y82_c00054{bottom:297.253500px;}
.y81_c00054{bottom:298.227000px;}
.y80_c00054{bottom:300.829500px;}
.y7f_c00054{bottom:301.612500px;}
.y7e_c00054{bottom:303.819000px;}
.y7d_c00054{bottom:304.603500px;}
.y7c_c00054{bottom:305.901000px;}
.y7b_c00054{bottom:307.915500px;}
.y7a_c00054{bottom:309.166500px;}
.y79_c00054{bottom:315.262500px;}
.y78_c00054{bottom:316.168500px;}
.y77_c00054{bottom:318.013500px;}
.y76_c00054{bottom:318.867000px;}
.y75_c00054{bottom:319.338000px;}
.y74_c00054{bottom:321.183000px;}
.y73_c00054{bottom:321.978000px;}
.y72_c00054{bottom:322.528500px;}
.y71_c00054{bottom:324.558000px;}
.y70_c00054{bottom:333.180000px;}
.y6f_c00054{bottom:334.158000px;}
.y6e_c00054{bottom:335.221500px;}
.y6d_c00054{bottom:337.318500px;}
.y6c_c00054{bottom:338.043000px;}
.y6b_c00054{bottom:340.411500px;}
.y6a_c00054{bottom:341.026500px;}
.y69_c00054{bottom:348.103500px;}
.y68_c00054{bottom:350.203500px;}
.y67_c00054{bottom:350.820000px;}
.y66_c00054{bottom:351.037500px;}
.y65_c00054{bottom:353.323500px;}
.y64_c00054{bottom:354.027000px;}
.y63_c00054{bottom:355.536000px;}
.y62_c00054{bottom:357.766500px;}
.y61_c00054{bottom:363.900000px;}
.y60_c00054{bottom:364.612500px;}
.y5f_c00054{bottom:366.207000px;}
.y5e_c00054{bottom:366.829500px;}
.y5d_c00054{bottom:370.351500px;}
.y5c_c00054{bottom:371.251500px;}
.y5b_c00054{bottom:372.130500px;}
.y5a_c00054{bottom:373.899000px;}
.y59_c00054{bottom:374.511000px;}
.y58_c00054{bottom:382.150500px;}
.y57_c00054{bottom:384.774000px;}
.y56_c00054{bottom:385.582500px;}
.y55_c00054{bottom:387.289500px;}
.y54_c00054{bottom:387.990000px;}
.y53_c00054{bottom:388.950000px;}
.y52_c00054{bottom:390.405000px;}
.y51_c00054{bottom:390.975000px;}
.y50_c00054{bottom:398.386500px;}
.y4f_c00054{bottom:401.071500px;}
.y4e_c00054{bottom:402.852000px;}
.y4d_c00054{bottom:403.503000px;}
.y4c_c00054{bottom:405.468000px;}
.y4b_c00054{bottom:406.138500px;}
.y4a_c00054{bottom:407.719500px;}
.y49_c00054{bottom:415.530000px;}
.y48_c00054{bottom:416.202000px;}
.y47_c00054{bottom:418.728000px;}
.y46_c00054{bottom:419.316000px;}
.y45_c00054{bottom:419.947500px;}
.y44_c00054{bottom:420.802500px;}
.y43_c00054{bottom:421.843500px;}
.y42_c00054{bottom:423.648000px;}
.y41_c00054{bottom:431.958000px;}
.y40_c00054{bottom:432.744000px;}
.y3f_c00054{bottom:433.170000px;}
.y3e_c00054{bottom:435.151500px;}
.y3d_c00054{bottom:436.389000px;}
.y3c_c00054{bottom:437.907000px;}
.y3b_c00054{bottom:438.796500px;}
.y3a_c00054{bottom:439.576500px;}
.y39_c00054{bottom:448.507500px;}
.y38_c00054{bottom:450.019500px;}
.y37_c00054{bottom:450.589500px;}
.y36_c00054{bottom:452.575500px;}
.y35_c00054{bottom:454.623000px;}
.y34_c00054{bottom:456.739500px;}
.y33_c00054{bottom:457.393500px;}
.y32_c00054{bottom:465.631500px;}
.y31_c00054{bottom:468.387000px;}
.y30_c00054{bottom:469.017000px;}
.y2f_c00054{bottom:469.624500px;}
.y2e_c00054{bottom:471.157500px;}
.y2d_c00054{bottom:471.789000px;}
.y2c_c00054{bottom:473.940000px;}
.y2b_c00054{bottom:474.672000px;}
.y2a_c00054{bottom:483.559500px;}
.y29_c00054{bottom:484.125000px;}
.y28_c00054{bottom:485.578500px;}
.y27_c00054{bottom:486.465000px;}
.y26_c00054{bottom:488.652000px;}
.y25_c00054{bottom:489.252000px;}
.y24_c00054{bottom:490.605000px;}
.y23_c00054{bottom:499.318500px;}
.y22_c00054{bottom:501.033000px;}
.y21_c00054{bottom:502.297500px;}
.y20_c00054{bottom:502.798500px;}
.y1f_c00054{bottom:503.671500px;}
.y1e_c00054{bottom:505.446000px;}
.y1d_c00054{bottom:505.860000px;}
.y1c_c00054{bottom:506.487000px;}
.y1b_c00054{bottom:508.153500px;}
.y1a_c00054{bottom:516.418500px;}
.y19_c00054{bottom:517.074000px;}
.y18_c00054{bottom:519.292500px;}
.y17_c00054{bottom:520.555500px;}
.y16_c00054{bottom:521.313000px;}
.y15_c00054{bottom:522.564000px;}
.y14_c00054{bottom:523.219500px;}
.y13_c00054{bottom:524.253000px;}
.y12_c00054{bottom:524.617500px;}
.y11_c00054{bottom:535.174500px;}
.y10_c00054{bottom:536.446500px;}
.yf_c00054{bottom:536.980500px;}
.ye_c00054{bottom:538.000500px;}
.yd_c00054{bottom:539.305500px;}
.yc_c00054{bottom:542.436000px;}
.yb_c00054{bottom:551.239500px;}
.ya_c00054{bottom:552.976500px;}
.y9_c00054{bottom:553.539000px;}
.y8_c00054{bottom:554.073000px;}
.y7_c00054{bottom:555.142500px;}
.y6_c00054{bottom:555.925500px;}
.y5_c00054{bottom:556.375500px;}
.y4_c00054{bottom:557.028000px;}
.y3_c00054{bottom:557.785500px;}
.y2_c00054{bottom:558.369000px;}
.y1_c00054{bottom:573.750000px;}
.hb_c00054{height:52.500000px;}
.h9_c00054{height:54.600000px;}
.h13_c00054{height:57.731806px;}
.h12_c00054{height:58.781475px;}
.h6_c00054{height:58.800000px;}
.h10_c00054{height:59.831144px;}
.h8_c00054{height:59.850000px;}
.h2_c00054{height:60.900000px;}
.h4_c00054{height:61.950000px;}
.he_c00054{height:62.980152px;}
.h3_c00054{height:63.000000px;}
.hf_c00054{height:64.029821px;}
.h11_c00054{height:65.079490px;}
.hd_c00054{height:65.089648px;}
.hc_c00054{height:66.139481px;}
.ha_c00054{height:66.150000px;}
.h14_c00054{height:67.178829px;}
.h7_c00054{height:67.200000px;}
.h5_c00054{height:68.250000px;}
.h0_c00054{height:618.570000px;}
.h1_c00054{height:618.750000px;}
.w0_c00054{width:361.200000px;}
.w1_c00054{width:361.500000px;}
.x0_c00054{left:0.000000px;}
.x61_c00054{left:21.702891px;}
.x47_c00054{left:22.807500px;}
.x2_c00054{left:23.949000px;}
.x20_c00054{left:29.088000px;}
.x11_c00054{left:36.198000px;}
.x3d_c00054{left:39.841500px;}
.x48_c00054{left:42.027000px;}
.x68_c00054{left:43.084650px;}
.x39_c00054{left:44.532000px;}
.x3_c00054{left:46.399500px;}
.x12_c00054{left:48.369000px;}
.x2c_c00054{left:49.605000px;}
.x51_c00054{left:51.385500px;}
.x5d_c00054{left:53.511669px;}
.x6d_c00054{left:54.846488px;}
.x56_c00054{left:61.528500px;}
.x31_c00054{left:64.063500px;}
.x77_c00054{left:65.743635px;}
.x37_c00054{left:70.108500px;}
.x6b_c00054{left:72.403635px;}
.x21_c00054{left:74.185500px;}
.x4_c00054{left:75.561000px;}
.x19_c00054{left:77.431500px;}
.x13_c00054{left:82.842000px;}
.x3a_c00054{left:83.857500px;}
.x3e_c00054{left:87.646500px;}
.x38_c00054{left:89.832000px;}
.x5f_c00054{left:91.846985px;}
.x22_c00054{left:94.164000px;}
.x5a_c00054{left:96.622500px;}
.x1a_c00054{left:97.678500px;}
.x4c_c00054{left:98.719500px;}
.x5_c00054{left:100.675500px;}
.x14_c00054{left:104.709000px;}
.x74_c00054{left:107.472032px;}
.x3b_c00054{left:109.792500px;}
.x1b_c00054{left:111.054000px;}
.x26_c00054{left:113.611500px;}
.x2d_c00054{left:115.765500px;}
.x6_c00054{left:117.979500px;}
.x4d_c00054{left:122.095500px;}
.x62_c00054{left:123.691391px;}
.x52_c00054{left:126.652500px;}
.xc_c00054{left:128.182500px;}
.x42_c00054{left:130.234500px;}
.x27_c00054{left:133.344000px;}
.x3f_c00054{left:135.709500px;}
.x49_c00054{left:138.691500px;}
.x63_c00054{left:141.580500px;}
.x53_c00054{left:144.474000px;}
.x15_c00054{left:146.421000px;}
.x7_c00054{left:148.117500px;}
.x43_c00054{left:150.337500px;}
.x75_c00054{left:158.536638px;}
.x69_c00054{left:162.556281px;}
.x78_c00054{left:165.312134px;}
.x23_c00054{left:167.071500px;}
.x1c_c00054{left:168.289500px;}
.x66_c00054{left:169.907978px;}
.xd_c00054{left:171.678000px;}
.x1_c00054{left:175.230000px;}
.x4e_c00054{left:176.349000px;}
.x6c_c00054{left:178.254512px;}
.x2e_c00054{left:179.751000px;}
.x28_c00054{left:181.257000px;}
.x70_c00054{left:182.482890px;}
.x64_c00054{left:184.767270px;}
.x76_c00054{left:186.356069px;}
.x35_c00054{left:187.623000px;}
.x8_c00054{left:189.232500px;}
.x54_c00054{left:194.632500px;}
.x1d_c00054{left:196.470000px;}
.x29_c00054{left:200.244000px;}
.x4a_c00054{left:204.244500px;}
.xe_c00054{left:205.659000px;}
.x5b_c00054{left:208.353000px;}
.x9_c00054{left:209.745000px;}
.x57_c00054{left:211.327500px;}
.x1e_c00054{left:212.646000px;}
.x16_c00054{left:213.787500px;}
.x44_c00054{left:215.644500px;}
.x2a_c00054{left:219.951000px;}
.x45_c00054{left:221.838000px;}
.xf_c00054{left:223.479000px;}
.x60_c00054{left:226.556081px;}
.x58_c00054{left:227.901000px;}
.x79_c00054{left:228.922460px;}
.xa_c00054{left:231.351000px;}
.x6a_c00054{left:234.347973px;}
.x4b_c00054{left:237.487500px;}
.x46_c00054{left:239.451000px;}
.x2f_c00054{left:241.822500px;}
.x24_c00054{left:245.071500px;}
.x40_c00054{left:247.716000px;}
.x6e_c00054{left:252.227464px;}
.x1f_c00054{left:253.452000px;}
.x67_c00054{left:254.603753px;}
.x32_c00054{left:258.069000px;}
.x30_c00054{left:259.633500px;}
.x72_c00054{left:260.856216px;}
.x7a_c00054{left:261.882300px;}
.x25_c00054{left:263.929500px;}
.x10_c00054{left:265.863000px;}
.x3c_c00054{left:267.616500px;}
.x4f_c00054{left:269.578500px;}
.x55_c00054{left:271.588500px;}
.x33_c00054{left:272.778000px;}
.x73_c00054{left:275.884562px;}
.x5c_c00054{left:281.305500px;}
.x59_c00054{left:286.176000px;}
.x17_c00054{left:287.725500px;}
.x6f_c00054{left:289.091619px;}
.x41_c00054{left:290.797500px;}
.x36_c00054{left:294.217500px;}
.x50_c00054{left:296.218500px;}
.xb_c00054{left:298.164000px;}
.x34_c00054{left:299.892000px;}
.x5e_c00054{left:301.252680px;}
.x65_c00054{left:302.618301px;}
.x2b_c00054{left:306.079500px;}
.x7b_c00054{left:308.178014px;}
.x18_c00054{left:309.576000px;}
.x71_c00054{left:313.753655px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.fs9_c00054{font-size:46.666667pt;}
.fs7_c00054{font-size:48.533333pt;}
.fs11_c00054{font-size:51.317161pt;}
.fs10_c00054{font-size:52.250200pt;}
.fs4_c00054{font-size:52.266667pt;}
.fse_c00054{font-size:53.183239pt;}
.fs6_c00054{font-size:53.200000pt;}
.fs0_c00054{font-size:54.133333pt;}
.fs2_c00054{font-size:55.066667pt;}
.fsc_c00054{font-size:55.982357pt;}
.fs1_c00054{font-size:56.000000pt;}
.fsd_c00054{font-size:56.915397pt;}
.fsf_c00054{font-size:57.848436pt;}
.fsb_c00054{font-size:57.857465pt;}
.fsa_c00054{font-size:58.790650pt;}
.fs8_c00054{font-size:58.800000pt;}
.fs12_c00054{font-size:59.714514pt;}
.fs5_c00054{font-size:59.733333pt;}
.fs3_c00054{font-size:60.666667pt;}
.y0_c00054{bottom:0.000000pt;}
.yfe_c00054{bottom:21.439164pt;}
.yfd_c00054{bottom:23.622213pt;}
.yfc_c00054{bottom:25.255196pt;}
.yfb_c00054{bottom:26.763563pt;}
.yfa_c00054{bottom:29.713696pt;}
.yf9_c00054{bottom:31.384271pt;}
.yf8_c00054{bottom:34.886493pt;}
.yf7_c00054{bottom:38.439825pt;}
.yf6_c00054{bottom:39.614304pt;}
.yf5_c00054{bottom:40.437135pt;}
.yf4_c00054{bottom:42.126851pt;}
.yf3_c00054{bottom:43.095511pt;}
.yf2_c00054{bottom:43.963531pt;}
.yf1_c00054{bottom:47.257813pt;}
.yf0_c00054{bottom:47.929092pt;}
.yef_c00054{bottom:49.031100pt;}
.yee_c00054{bottom:52.878212pt;}
.yed_c00054{bottom:55.403832pt;}
.yec_c00054{bottom:56.233915pt;}
.yeb_c00054{bottom:57.252599pt;}
.yea_c00054{bottom:57.936457pt;}
.ye9_c00054{bottom:61.367837pt;}
.ye8_c00054{bottom:62.643597pt;}
.ye7_c00054{bottom:66.070685pt;}
.ye6_c00054{bottom:66.742013pt;}
.ye5_c00054{bottom:68.472281pt;}
.ye4_c00054{bottom:71.611115pt;}
.ye3_c00054{bottom:72.686581pt;}
.ye2_c00054{bottom:73.226979pt;}
.ye1_c00054{bottom:75.406969pt;}
.ye0_c00054{bottom:79.025471pt;}
.ydf_c00054{bottom:82.439387pt;}
.yde_c00054{bottom:84.610645pt;}
.ydd_c00054{bottom:87.234735pt;}
.ydc_c00054{bottom:88.400876pt;}
.ydb_c00054{bottom:90.828915pt;}
.yda_c00054{bottom:91.885487pt;}
.yd9_c00054{bottom:93.938296pt;}
.yd8_c00054{bottom:94.856044pt;}
.yd7_c00054{bottom:98.598520pt;}
.yd6_c00054{bottom:99.588196pt;}
.yd5_c00054{bottom:100.229677pt;}
.yd4_c00054{bottom:101.865127pt;}
.yd3_c00054{bottom:102.615092pt;}
.yd2_c00054{bottom:105.126997pt;}
.yd1_c00054{bottom:106.456136pt;}
.yd0_c00054{bottom:108.712199pt;}
.ycf_c00054{bottom:109.568576pt;}
.yce_c00054{bottom:110.456083pt;}
.ycd_c00054{bottom:113.190975pt;}
.ycc_c00054{bottom:115.383151pt;}
.ycb_c00054{bottom:116.812387pt;}
.yca_c00054{bottom:117.711240pt;}
.yc9_c00054{bottom:119.867304pt;}
.yc8_c00054{bottom:121.238080pt;}
.yc7_c00054{bottom:129.027123pt;}
.yc6_c00054{bottom:129.671811pt;}
.yc5_c00054{bottom:130.503521pt;}
.yc4_c00054{bottom:132.618589pt;}
.yc3_c00054{bottom:133.624052pt;}
.yc2_c00054{bottom:136.960120pt;}
.yc1_c00054{bottom:138.404847pt;}
.yc0_c00054{bottom:139.726289pt;}
.ybf_c00054{bottom:142.499661pt;}
.ybe_c00054{bottom:143.998507pt;}
.ybd_c00054{bottom:146.612433pt;}
.ybc_c00054{bottom:147.572263pt;}
.ybb_c00054{bottom:148.250497pt;}
.yba_c00054{bottom:150.948537pt;}
.yb9_c00054{bottom:151.997413pt;}
.yb8_c00054{bottom:154.113813pt;}
.yb7_c00054{bottom:159.602936pt;}
.yb6_c00054{bottom:160.565725pt;}
.yb5_c00054{bottom:163.504117pt;}
.yb4_c00054{bottom:164.462023pt;}
.yb3_c00054{bottom:168.392360pt;}
.yb2_c00054{bottom:168.985593pt;}
.yb1_c00054{bottom:174.749700pt;}
.yb0_c00054{bottom:178.064900pt;}
.yaf_c00054{bottom:179.532271pt;}
.yae_c00054{bottom:180.273208pt;}
.yad_c00054{bottom:182.214771pt;}
.yac_c00054{bottom:183.866155pt;}
.yab_c00054{bottom:187.673011pt;}
.yaa_c00054{bottom:189.082957pt;}
.ya9_c00054{bottom:191.552880pt;}
.ya8_c00054{bottom:192.974667pt;}
.ya7_c00054{bottom:193.843031pt;}
.ya6_c00054{bottom:195.580575pt;}
.ya5_c00054{bottom:198.425600pt;}
.ya4_c00054{bottom:199.468965pt;}
.ya3_c00054{bottom:203.043688pt;}
.ya2_c00054{bottom:205.861191pt;}
.ya1_c00054{bottom:206.571539pt;}
.ya0_c00054{bottom:208.988844pt;}
.y9f_c00054{bottom:211.134415pt;}
.y9e_c00054{bottom:212.814620pt;}
.y9d_c00054{bottom:213.855385pt;}
.y9c_c00054{bottom:218.337227pt;}
.y9b_c00054{bottom:219.053579pt;}
.y9a_c00054{bottom:220.588947pt;}
.y99_c00054{bottom:221.881923pt;}
.y98_c00054{bottom:222.499929pt;}
.y97_c00054{bottom:224.458035pt;}
.y96_c00054{bottom:226.648473pt;}
.y95_c00054{bottom:227.375048pt;}
.y94_c00054{bottom:228.498667pt;}
.y93_c00054{bottom:233.662667pt;}
.y92_c00054{bottom:234.200000pt;}
.y91_c00054{bottom:236.924000pt;}
.y90_c00054{bottom:237.696000pt;}
.y8f_c00054{bottom:239.237333pt;}
.y8e_c00054{bottom:239.944000pt;}
.y8d_c00054{bottom:241.094667pt;}
.y8c_c00054{bottom:243.862667pt;}
.y8b_c00054{bottom:248.249333pt;}
.y8a_c00054{bottom:249.156000pt;}
.y89_c00054{bottom:251.486667pt;}
.y88_c00054{bottom:252.149333pt;}
.y87_c00054{bottom:254.793333pt;}
.y86_c00054{bottom:255.277333pt;}
.y85_c00054{bottom:257.501333pt;}
.y84_c00054{bottom:258.141333pt;}
.y83_c00054{bottom:259.704000pt;}
.y82_c00054{bottom:264.225333pt;}
.y81_c00054{bottom:265.090667pt;}
.y80_c00054{bottom:267.404000pt;}
.y7f_c00054{bottom:268.100000pt;}
.y7e_c00054{bottom:270.061333pt;}
.y7d_c00054{bottom:270.758667pt;}
.y7c_c00054{bottom:271.912000pt;}
.y7b_c00054{bottom:273.702667pt;}
.y7a_c00054{bottom:274.814667pt;}
.y79_c00054{bottom:280.233333pt;}
.y78_c00054{bottom:281.038667pt;}
.y77_c00054{bottom:282.678667pt;}
.y76_c00054{bottom:283.437333pt;}
.y75_c00054{bottom:283.856000pt;}
.y74_c00054{bottom:285.496000pt;}
.y73_c00054{bottom:286.202667pt;}
.y72_c00054{bottom:286.692000pt;}
.y71_c00054{bottom:288.496000pt;}
.y70_c00054{bottom:296.160000pt;}
.y6f_c00054{bottom:297.029333pt;}
.y6e_c00054{bottom:297.974667pt;}
.y6d_c00054{bottom:299.838667pt;}
.y6c_c00054{bottom:300.482667pt;}
.y6b_c00054{bottom:302.588000pt;}
.y6a_c00054{bottom:303.134667pt;}
.y69_c00054{bottom:309.425333pt;}
.y68_c00054{bottom:311.292000pt;}
.y67_c00054{bottom:311.840000pt;}
.y66_c00054{bottom:312.033333pt;}
.y65_c00054{bottom:314.065333pt;}
.y64_c00054{bottom:314.690667pt;}
.y63_c00054{bottom:316.032000pt;}
.y62_c00054{bottom:318.014667pt;}
.y61_c00054{bottom:323.466667pt;}
.y60_c00054{bottom:324.100000pt;}
.y5f_c00054{bottom:325.517333pt;}
.y5e_c00054{bottom:326.070667pt;}
.y5d_c00054{bottom:329.201333pt;}
.y5c_c00054{bottom:330.001333pt;}
.y5b_c00054{bottom:330.782667pt;}
.y5a_c00054{bottom:332.354667pt;}
.y59_c00054{bottom:332.898667pt;}
.y58_c00054{bottom:339.689333pt;}
.y57_c00054{bottom:342.021333pt;}
.y56_c00054{bottom:342.740000pt;}
.y55_c00054{bottom:344.257333pt;}
.y54_c00054{bottom:344.880000pt;}
.y53_c00054{bottom:345.733333pt;}
.y52_c00054{bottom:347.026667pt;}
.y51_c00054{bottom:347.533333pt;}
.y50_c00054{bottom:354.121333pt;}
.y4f_c00054{bottom:356.508000pt;}
.y4e_c00054{bottom:358.090667pt;}
.y4d_c00054{bottom:358.669333pt;}
.y4c_c00054{bottom:360.416000pt;}
.y4b_c00054{bottom:361.012000pt;}
.y4a_c00054{bottom:362.417333pt;}
.y49_c00054{bottom:369.360000pt;}
.y48_c00054{bottom:369.957333pt;}
.y47_c00054{bottom:372.202667pt;}
.y46_c00054{bottom:372.725333pt;}
.y45_c00054{bottom:373.286667pt;}
.y44_c00054{bottom:374.046667pt;}
.y43_c00054{bottom:374.972000pt;}
.y42_c00054{bottom:376.576000pt;}
.y41_c00054{bottom:383.962667pt;}
.y40_c00054{bottom:384.661333pt;}
.y3f_c00054{bottom:385.040000pt;}
.y3e_c00054{bottom:386.801333pt;}
.y3d_c00054{bottom:387.901333pt;}
.y3c_c00054{bottom:389.250667pt;}
.y3b_c00054{bottom:390.041333pt;}
.y3a_c00054{bottom:390.734667pt;}
.y39_c00054{bottom:398.673333pt;}
.y38_c00054{bottom:400.017333pt;}
.y37_c00054{bottom:400.524000pt;}
.y36_c00054{bottom:402.289333pt;}
.y35_c00054{bottom:404.109333pt;}
.y34_c00054{bottom:405.990667pt;}
.y33_c00054{bottom:406.572000pt;}
.y32_c00054{bottom:413.894667pt;}
.y31_c00054{bottom:416.344000pt;}
.y30_c00054{bottom:416.904000pt;}
.y2f_c00054{bottom:417.444000pt;}
.y2e_c00054{bottom:418.806667pt;}
.y2d_c00054{bottom:419.368000pt;}
.y2c_c00054{bottom:421.280000pt;}
.y2b_c00054{bottom:421.930667pt;}
.y2a_c00054{bottom:429.830667pt;}
.y29_c00054{bottom:430.333333pt;}
.y28_c00054{bottom:431.625333pt;}
.y27_c00054{bottom:432.413333pt;}
.y26_c00054{bottom:434.357333pt;}
.y25_c00054{bottom:434.890667pt;}
.y24_c00054{bottom:436.093333pt;}
.y23_c00054{bottom:443.838667pt;}
.y22_c00054{bottom:445.362667pt;}
.y21_c00054{bottom:446.486667pt;}
.y20_c00054{bottom:446.932000pt;}
.y1f_c00054{bottom:447.708000pt;}
.y1e_c00054{bottom:449.285333pt;}
.y1d_c00054{bottom:449.653333pt;}
.y1c_c00054{bottom:450.210667pt;}
.y1b_c00054{bottom:451.692000pt;}
.y1a_c00054{bottom:459.038667pt;}
.y19_c00054{bottom:459.621333pt;}
.y18_c00054{bottom:461.593333pt;}
.y17_c00054{bottom:462.716000pt;}
.y16_c00054{bottom:463.389333pt;}
.y15_c00054{bottom:464.501333pt;}
.y14_c00054{bottom:465.084000pt;}
.y13_c00054{bottom:466.002667pt;}
.y12_c00054{bottom:466.326667pt;}
.y11_c00054{bottom:475.710667pt;}
.y10_c00054{bottom:476.841333pt;}
.yf_c00054{bottom:477.316000pt;}
.ye_c00054{bottom:478.222667pt;}
.yd_c00054{bottom:479.382667pt;}
.yc_c00054{bottom:482.165333pt;}
.yb_c00054{bottom:489.990667pt;}
.ya_c00054{bottom:491.534667pt;}
.y9_c00054{bottom:492.034667pt;}
.y8_c00054{bottom:492.509333pt;}
.y7_c00054{bottom:493.460000pt;}
.y6_c00054{bottom:494.156000pt;}
.y5_c00054{bottom:494.556000pt;}
.y4_c00054{bottom:495.136000pt;}
.y3_c00054{bottom:495.809333pt;}
.y2_c00054{bottom:496.328000pt;}
.y1_c00054{bottom:510.000000pt;}
.hb_c00054{height:46.666667pt;}
.h9_c00054{height:48.533333pt;}
.h13_c00054{height:51.317161pt;}
.h12_c00054{height:52.250200pt;}
.h6_c00054{height:52.266667pt;}
.h10_c00054{height:53.183239pt;}
.h8_c00054{height:53.200000pt;}
.h2_c00054{height:54.133333pt;}
.h4_c00054{height:55.066667pt;}
.he_c00054{height:55.982357pt;}
.h3_c00054{height:56.000000pt;}
.hf_c00054{height:56.915397pt;}
.h11_c00054{height:57.848436pt;}
.hd_c00054{height:57.857465pt;}
.hc_c00054{height:58.790650pt;}
.ha_c00054{height:58.800000pt;}
.h14_c00054{height:59.714514pt;}
.h7_c00054{height:59.733333pt;}
.h5_c00054{height:60.666667pt;}
.h0_c00054{height:549.840000pt;}
.h1_c00054{height:550.000000pt;}
.w0_c00054{width:321.066667pt;}
.w1_c00054{width:321.333333pt;}
.x0_c00054{left:0.000000pt;}
.x61_c00054{left:19.291459pt;}
.x47_c00054{left:20.273333pt;}
.x2_c00054{left:21.288000pt;}
.x20_c00054{left:25.856000pt;}
.x11_c00054{left:32.176000pt;}
.x3d_c00054{left:35.414667pt;}
.x48_c00054{left:37.357333pt;}
.x68_c00054{left:38.297467pt;}
.x39_c00054{left:39.584000pt;}
.x3_c00054{left:41.244000pt;}
.x12_c00054{left:42.994667pt;}
.x2c_c00054{left:44.093333pt;}
.x51_c00054{left:45.676000pt;}
.x5d_c00054{left:47.565928pt;}
.x6d_c00054{left:48.752433pt;}
.x56_c00054{left:54.692000pt;}
.x31_c00054{left:56.945333pt;}
.x77_c00054{left:58.438787pt;}
.x37_c00054{left:62.318667pt;}
.x6b_c00054{left:64.358787pt;}
.x21_c00054{left:65.942667pt;}
.x4_c00054{left:67.165333pt;}
.x19_c00054{left:68.828000pt;}
.x13_c00054{left:73.637333pt;}
.x3a_c00054{left:74.540000pt;}
.x3e_c00054{left:77.908000pt;}
.x38_c00054{left:79.850667pt;}
.x5f_c00054{left:81.641764pt;}
.x22_c00054{left:83.701333pt;}
.x5a_c00054{left:85.886667pt;}
.x1a_c00054{left:86.825333pt;}
.x4c_c00054{left:87.750667pt;}
.x5_c00054{left:89.489333pt;}
.x14_c00054{left:93.074667pt;}
.x74_c00054{left:95.530695pt;}
.x3b_c00054{left:97.593333pt;}
.x1b_c00054{left:98.714667pt;}
.x26_c00054{left:100.988000pt;}
.x2d_c00054{left:102.902667pt;}
.x6_c00054{left:104.870667pt;}
.x4d_c00054{left:108.529333pt;}
.x62_c00054{left:109.947903pt;}
.x52_c00054{left:112.580000pt;}
.xc_c00054{left:113.940000pt;}
.x42_c00054{left:115.764000pt;}
.x27_c00054{left:118.528000pt;}
.x3f_c00054{left:120.630667pt;}
.x49_c00054{left:123.281333pt;}
.x63_c00054{left:125.849333pt;}
.x53_c00054{left:128.421333pt;}
.x15_c00054{left:130.152000pt;}
.x7_c00054{left:131.660000pt;}
.x43_c00054{left:133.633333pt;}
.x75_c00054{left:140.921456pt;}
.x69_c00054{left:144.494472pt;}
.x78_c00054{left:146.944119pt;}
.x23_c00054{left:148.508000pt;}
.x1c_c00054{left:149.590667pt;}
.x66_c00054{left:151.029313pt;}
.xd_c00054{left:152.602667pt;}
.x1_c00054{left:155.760000pt;}
.x4e_c00054{left:156.754667pt;}
.x6c_c00054{left:158.448455pt;}
.x2e_c00054{left:159.778667pt;}
.x28_c00054{left:161.117333pt;}
.x70_c00054{left:162.207013pt;}
.x64_c00054{left:164.237573pt;}
.x76_c00054{left:165.649839pt;}
.x35_c00054{left:166.776000pt;}
.x8_c00054{left:168.206667pt;}
.x54_c00054{left:173.006667pt;}
.x1d_c00054{left:174.640000pt;}
.x29_c00054{left:177.994667pt;}
.x4a_c00054{left:181.550667pt;}
.xe_c00054{left:182.808000pt;}
.x5b_c00054{left:185.202667pt;}
.x9_c00054{left:186.440000pt;}
.x57_c00054{left:187.846667pt;}
.x1e_c00054{left:189.018667pt;}
.x16_c00054{left:190.033333pt;}
.x44_c00054{left:191.684000pt;}
.x2a_c00054{left:195.512000pt;}
.x45_c00054{left:197.189333pt;}
.xf_c00054{left:198.648000pt;}
.x60_c00054{left:201.383183pt;}
.x58_c00054{left:202.578667pt;}
.x79_c00054{left:203.486631pt;}
.xa_c00054{left:205.645333pt;}
.x6a_c00054{left:208.309309pt;}
.x4b_c00054{left:211.100000pt;}
.x46_c00054{left:212.845333pt;}
.x2f_c00054{left:214.953333pt;}
.x24_c00054{left:217.841333pt;}
.x40_c00054{left:220.192000pt;}
.x6e_c00054{left:224.202191pt;}
.x1f_c00054{left:225.290667pt;}
.x67_c00054{left:226.314447pt;}
.x32_c00054{left:229.394667pt;}
.x30_c00054{left:230.785333pt;}
.x72_c00054{left:231.872192pt;}
.x7a_c00054{left:232.784267pt;}
.x25_c00054{left:234.604000pt;}
.x10_c00054{left:236.322667pt;}
.x3c_c00054{left:237.881333pt;}
.x4f_c00054{left:239.625333pt;}
.x55_c00054{left:241.412000pt;}
.x33_c00054{left:242.469333pt;}
.x73_c00054{left:245.230721pt;}
.x5c_c00054{left:250.049333pt;}
.x59_c00054{left:254.378667pt;}
.x17_c00054{left:255.756000pt;}
.x6f_c00054{left:256.970328pt;}
.x41_c00054{left:258.486667pt;}
.x36_c00054{left:261.526667pt;}
.x50_c00054{left:263.305333pt;}
.xb_c00054{left:265.034667pt;}
.x34_c00054{left:266.570667pt;}
.x5e_c00054{left:267.780160pt;}
.x65_c00054{left:268.994045pt;}
.x2b_c00054{left:272.070667pt;}
.x7b_c00054{left:273.936012pt;}
.x18_c00054{left:275.178667pt;}
.x71_c00054{left:278.892137pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00055 {
    display:none;
  }
  .loading-indicator_c00055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00055 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00055 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00055" -> "#page-container .classname_c00055")
 */
.pf_c00055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00055 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00055 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00055 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00055 {overflow:visible;}
  }
}
.c_c00055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00055 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00055:after { /* webkit #35443 */
  content: '';
}
.t_c00055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00055 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00055 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00055 { /* info for Javascript */
  display:none;
}
.l_c00055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00055:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00055 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00055.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5d_c00055{transform:matrix(0.033050,0.000793,-0.005998,0.249928,0,0);-ms-transform:matrix(0.033050,0.000793,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.033050,0.000793,-0.005998,0.249928,0,0);}
.m1_c00055{transform:matrix(0.054610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054610,0.000000,0.000000,0.250000,0,0);}
.mad_c00055{transform:matrix(0.072529,0.001741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.072529,0.001741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.072529,0.001741,-0.005998,0.249928,0,0);}
.ma1_c00055{transform:matrix(0.085805,0.002059,-0.005998,0.249928,0,0);-ms-transform:matrix(0.085805,0.002059,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.085805,0.002059,-0.005998,0.249928,0,0);}
.mdf_c00055{transform:matrix(0.131702,0.003161,-0.005998,0.249928,0,0);-ms-transform:matrix(0.131702,0.003161,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.131702,0.003161,-0.005998,0.249928,0,0);}
.mca_c00055{transform:matrix(0.144243,0.003462,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144243,0.003462,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144243,0.003462,-0.005998,0.249928,0,0);}
.m26_c00055{transform:matrix(0.147321,0.002652,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147321,0.002652,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147321,0.002652,-0.004499,0.249960,0,0);}
.me8_c00055{transform:matrix(0.154316,0.003704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154316,0.003704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154316,0.003704,-0.005998,0.249928,0,0);}
.m14_c00055{transform:matrix(0.154910,0.002788,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154910,0.002788,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154910,0.002788,-0.004499,0.249960,0,0);}
.mb_c00055{transform:matrix(0.155910,0.002806,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155910,0.002806,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155910,0.002806,-0.004499,0.249960,0,0);}
.mab_c00055{transform:matrix(0.157390,0.003777,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157390,0.003777,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157390,0.003777,-0.005998,0.249928,0,0);}
.ma8_c00055{transform:matrix(0.158009,0.003792,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158009,0.003792,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158009,0.003792,-0.005998,0.249928,0,0);}
.m86_c00055{transform:matrix(0.158734,0.003810,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158734,0.003810,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158734,0.003810,-0.005998,0.249928,0,0);}
.m92_c00055{transform:matrix(0.159889,0.003837,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159889,0.003837,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159889,0.003837,-0.005998,0.249928,0,0);}
.m0_c00055{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m67_c00055{transform:matrix(0.161274,0.003871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161274,0.003871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161274,0.003871,-0.005998,0.249928,0,0);}
.m40_c00055{transform:matrix(0.161929,0.002915,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161929,0.002915,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161929,0.002915,-0.004499,0.249960,0,0);}
.mc7_c00055{transform:matrix(0.162723,0.003905,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162723,0.003905,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162723,0.003905,-0.005998,0.249928,0,0);}
.m10_c00055{transform:matrix(0.164298,0.002957,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164298,0.002957,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164298,0.002957,-0.004499,0.249960,0,0);}
.mda_c00055{transform:matrix(0.165147,0.003964,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165147,0.003964,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165147,0.003964,-0.005998,0.249928,0,0);}
.md5_c00055{transform:matrix(0.165247,0.003966,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165247,0.003966,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165247,0.003966,-0.005998,0.249928,0,0);}
.m49_c00055{transform:matrix(0.165493,0.002979,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165493,0.002979,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165493,0.002979,-0.004499,0.249960,0,0);}
.m4_c00055{transform:matrix(0.165623,0.002981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165623,0.002981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165623,0.002981,-0.004499,0.249960,0,0);}
.me6_c00055{transform:matrix(0.165717,0.003977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165717,0.003977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165717,0.003977,-0.005998,0.249928,0,0);}
.mac_c00055{transform:matrix(0.165732,0.003978,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165732,0.003978,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165732,0.003978,-0.005998,0.249928,0,0);}
.md2_c00055{transform:matrix(0.166242,0.003990,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166242,0.003990,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166242,0.003990,-0.005998,0.249928,0,0);}
.m1f_c00055{transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);}
.mc6_c00055{transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167902,0.004030,-0.005998,0.249928,0,0);}
.m55_c00055{transform:matrix(0.168088,0.003026,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168088,0.003026,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168088,0.003026,-0.004499,0.249960,0,0);}
.m29_c00055{transform:matrix(0.168343,0.003030,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168343,0.003030,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168343,0.003030,-0.004499,0.249960,0,0);}
.m24_c00055{transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);}
.me9_c00055{transform:matrix(0.169511,0.004068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169511,0.004068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169511,0.004068,-0.005998,0.249928,0,0);}
.m6b_c00055{transform:matrix(0.169736,0.004074,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169736,0.004074,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169736,0.004074,-0.005998,0.249928,0,0);}
.md9_c00055{transform:matrix(0.170426,0.004090,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170426,0.004090,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170426,0.004090,-0.005998,0.249928,0,0);}
.m59_c00055{transform:matrix(0.171112,0.003080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171112,0.003080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171112,0.003080,-0.004499,0.249960,0,0);}
.m2_c00055{transform:matrix(0.173822,0.003129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173822,0.003129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173822,0.003129,-0.004499,0.249960,0,0);}
.m18_c00055{transform:matrix(0.175976,0.003168,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175976,0.003168,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175976,0.003168,-0.004499,0.249960,0,0);}
.m95_c00055{transform:matrix(0.176164,0.004228,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176164,0.004228,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176164,0.004228,-0.005998,0.249928,0,0);}
.md8_c00055{transform:matrix(0.176519,0.004236,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176519,0.004236,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176519,0.004236,-0.005998,0.249928,0,0);}
.ma7_c00055{transform:matrix(0.176704,0.004241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176704,0.004241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176704,0.004241,-0.005998,0.249928,0,0);}
.m51_c00055{transform:matrix(0.176746,0.003181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176746,0.003181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176746,0.003181,-0.004499,0.249960,0,0);}
.m3_c00055{transform:matrix(0.176761,0.003182,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176761,0.003182,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176761,0.003182,-0.004499,0.249960,0,0);}
.m65_c00055{transform:matrix(0.176894,0.004245,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176894,0.004245,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176894,0.004245,-0.005998,0.249928,0,0);}
.mb6_c00055{transform:matrix(0.177314,0.004256,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177314,0.004256,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177314,0.004256,-0.005998,0.249928,0,0);}
.mec_c00055{transform:matrix(0.177639,0.004263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177639,0.004263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177639,0.004263,-0.005998,0.249928,0,0);}
.m23_c00055{transform:matrix(0.177691,0.003198,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177691,0.003198,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177691,0.003198,-0.004499,0.249960,0,0);}
.m7b_c00055{transform:matrix(0.177979,0.004271,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177979,0.004271,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177979,0.004271,-0.005998,0.249928,0,0);}
.mbd_c00055{transform:matrix(0.178084,0.004274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178084,0.004274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178084,0.004274,-0.005998,0.249928,0,0);}
.mcb_c00055{transform:matrix(0.178194,0.004277,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178194,0.004277,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178194,0.004277,-0.005998,0.249928,0,0);}
.m15_c00055{transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);}
.m6d_c00055{transform:matrix(0.178649,0.004288,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178649,0.004288,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178649,0.004288,-0.005998,0.249928,0,0);}
.md6_c00055{transform:matrix(0.179378,0.004305,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179378,0.004305,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179378,0.004305,-0.005998,0.249928,0,0);}
.md4_c00055{transform:matrix(0.179588,0.004310,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179588,0.004310,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179588,0.004310,-0.005998,0.249928,0,0);}
.m4c_c00055{transform:matrix(0.179766,0.003236,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179766,0.003236,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179766,0.003236,-0.004499,0.249960,0,0);}
.m54_c00055{transform:matrix(0.180141,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180141,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180141,0.003243,-0.004499,0.249960,0,0);}
.m5a_c00055{transform:matrix(0.180496,0.003249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180496,0.003249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180496,0.003249,-0.004499,0.249960,0,0);}
.m1b_c00055{transform:matrix(0.180921,0.003257,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180921,0.003257,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180921,0.003257,-0.004499,0.249960,0,0);}
.m3d_c00055{transform:matrix(0.180956,0.003257,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180956,0.003257,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180956,0.003257,-0.004499,0.249960,0,0);}
.m9_c00055{transform:matrix(0.180986,0.003258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180986,0.003258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180986,0.003258,-0.004499,0.249960,0,0);}
.mee_c00055{transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);}
.mc8_c00055{transform:matrix(0.182607,0.004383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182607,0.004383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182607,0.004383,-0.005998,0.249928,0,0);}
.m74_c00055{transform:matrix(0.182642,0.004383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182642,0.004383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182642,0.004383,-0.005998,0.249928,0,0);}
.ma2_c00055{transform:matrix(0.182812,0.004387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182812,0.004387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182812,0.004387,-0.005998,0.249928,0,0);}
.me3_c00055{transform:matrix(0.182837,0.004388,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182837,0.004388,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182837,0.004388,-0.005998,0.249928,0,0);}
.m98_c00055{transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);}
.m11_c00055{transform:matrix(0.182935,0.003293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182935,0.003293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182935,0.003293,-0.004499,0.249960,0,0);}
.m6f_c00055{transform:matrix(0.183037,0.004393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183037,0.004393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183037,0.004393,-0.005998,0.249928,0,0);}
.mf2_c00055{transform:matrix(0.183567,0.004406,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183567,0.004406,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183567,0.004406,-0.005998,0.249928,0,0);}
.m85_c00055{transform:matrix(0.183722,0.004409,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183722,0.004409,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183722,0.004409,-0.005998,0.249928,0,0);}
.m34_c00055{transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);}
.m13_c00055{transform:matrix(0.183970,0.003311,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183970,0.003311,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183970,0.003311,-0.004499,0.249960,0,0);}
.m8c_c00055{transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);}
.mc9_c00055{transform:matrix(0.184657,0.004432,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184657,0.004432,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184657,0.004432,-0.005998,0.249928,0,0);}
.m8b_c00055{transform:matrix(0.184902,0.004438,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184902,0.004438,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184902,0.004438,-0.005998,0.249928,0,0);}
.m2d_c00055{transform:matrix(0.185005,0.003330,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185005,0.003330,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185005,0.003330,-0.004499,0.249960,0,0);}
.m81_c00055{transform:matrix(0.185302,0.004447,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185302,0.004447,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185302,0.004447,-0.005998,0.249928,0,0);}
.mcc_c00055{transform:matrix(0.185762,0.004458,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185762,0.004458,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185762,0.004458,-0.005998,0.249928,0,0);}
.mde_c00055{transform:matrix(0.185791,0.004459,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185791,0.004459,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185791,0.004459,-0.005998,0.249928,0,0);}
.m61_c00055{transform:matrix(0.185811,0.004459,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185811,0.004459,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185811,0.004459,-0.005998,0.249928,0,0);}
.mea_c00055{transform:matrix(0.186281,0.004471,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186281,0.004471,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186281,0.004471,-0.005998,0.249928,0,0);}
.m28_c00055{transform:matrix(0.186310,0.003354,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186310,0.003354,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186310,0.003354,-0.004499,0.249960,0,0);}
.m9d_c00055{transform:matrix(0.186386,0.004473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186386,0.004473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186386,0.004473,-0.005998,0.249928,0,0);}
.mdd_c00055{transform:matrix(0.187456,0.004499,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187456,0.004499,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187456,0.004499,-0.005998,0.249928,0,0);}
.m68_c00055{transform:matrix(0.187486,0.004500,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187486,0.004500,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187486,0.004500,-0.005998,0.249928,0,0);}
.maa_c00055{transform:matrix(0.188006,0.004512,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188006,0.004512,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188006,0.004512,-0.005998,0.249928,0,0);}
.mc0_c00055{transform:matrix(0.188381,0.004521,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188381,0.004521,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188381,0.004521,-0.005998,0.249928,0,0);}
.m47_c00055{transform:matrix(0.188594,0.003395,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188594,0.003395,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188594,0.003395,-0.004499,0.249960,0,0);}
.m6a_c00055{transform:matrix(0.188876,0.004533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188876,0.004533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188876,0.004533,-0.005998,0.249928,0,0);}
.mb1_c00055{transform:matrix(0.188986,0.004536,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188986,0.004536,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188986,0.004536,-0.005998,0.249928,0,0);}
.m2e_c00055{transform:matrix(0.189009,0.003402,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189009,0.003402,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189009,0.003402,-0.004499,0.249960,0,0);}
.m5f_c00055{transform:matrix(0.189131,0.004539,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189131,0.004539,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189131,0.004539,-0.005998,0.249928,0,0);}
.ma9_c00055{transform:matrix(0.189285,0.004543,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189285,0.004543,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189285,0.004543,-0.005998,0.249928,0,0);}
.m3e_c00055{transform:matrix(0.189304,0.003407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189304,0.003407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189304,0.003407,-0.004499,0.249960,0,0);}
.m22_c00055{transform:matrix(0.189639,0.003414,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189639,0.003414,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189639,0.003414,-0.004499,0.249960,0,0);}
.m3a_c00055{transform:matrix(0.189969,0.003419,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189969,0.003419,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189969,0.003419,-0.004499,0.249960,0,0);}
.m58_c00055{transform:matrix(0.190254,0.003425,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190254,0.003425,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190254,0.003425,-0.004499,0.249960,0,0);}
.mf8_c00055{transform:matrix(0.190305,0.004567,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190305,0.004567,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190305,0.004567,-0.005998,0.249928,0,0);}
.m6_c00055{transform:matrix(0.190464,0.003428,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190464,0.003428,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190464,0.003428,-0.004499,0.249960,0,0);}
.mba_c00055{transform:matrix(0.190875,0.004581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190875,0.004581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190875,0.004581,-0.005998,0.249928,0,0);}
.mce_c00055{transform:matrix(0.190965,0.004583,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190965,0.004583,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190965,0.004583,-0.005998,0.249928,0,0);}
.m9e_c00055{transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);}
.mc3_c00055{transform:matrix(0.191435,0.004594,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191435,0.004594,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191435,0.004594,-0.005998,0.249928,0,0);}
.m3b_c00055{transform:matrix(0.191774,0.003452,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191774,0.003452,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191774,0.003452,-0.004499,0.249960,0,0);}
.mb8_c00055{transform:matrix(0.191885,0.004605,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191885,0.004605,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191885,0.004605,-0.005998,0.249928,0,0);}
.m87_c00055{transform:matrix(0.191930,0.004606,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191930,0.004606,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191930,0.004606,-0.005998,0.249928,0,0);}
.m9f_c00055{transform:matrix(0.192005,0.004608,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192005,0.004608,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192005,0.004608,-0.005998,0.249928,0,0);}
.md3_c00055{transform:matrix(0.192180,0.004612,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192180,0.004612,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192180,0.004612,-0.005998,0.249928,0,0);}
.m69_c00055{transform:matrix(0.192380,0.004617,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192380,0.004617,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192380,0.004617,-0.005998,0.249928,0,0);}
.mc_c00055{transform:matrix(0.192484,0.003465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192484,0.003465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192484,0.003465,-0.004499,0.249960,0,0);}
.m89_c00055{transform:matrix(0.192710,0.004625,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192710,0.004625,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192710,0.004625,-0.005998,0.249928,0,0);}
.m42_c00055{transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);}
.m2a_c00055{transform:matrix(0.193719,0.003487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193719,0.003487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193719,0.003487,-0.004499,0.249960,0,0);}
.m77_c00055{transform:matrix(0.193719,0.004649,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193719,0.004649,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193719,0.004649,-0.005998,0.249928,0,0);}
.m25_c00055{transform:matrix(0.194034,0.003493,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194034,0.003493,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194034,0.003493,-0.004499,0.249960,0,0);}
.m46_c00055{transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);}
.me_c00055{transform:matrix(0.194533,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194533,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194533,0.003502,-0.004499,0.249960,0,0);}
.m5b_c00055{transform:matrix(0.194548,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194548,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194548,0.003502,-0.004499,0.249960,0,0);}
.m20_c00055{transform:matrix(0.194813,0.003507,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194813,0.003507,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194813,0.003507,-0.004499,0.249960,0,0);}
.m64_c00055{transform:matrix(0.194829,0.004676,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194829,0.004676,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194829,0.004676,-0.005998,0.249928,0,0);}
.m84_c00055{transform:matrix(0.194844,0.004676,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194844,0.004676,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194844,0.004676,-0.005998,0.249928,0,0);}
.md0_c00055{transform:matrix(0.195084,0.004682,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195084,0.004682,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195084,0.004682,-0.005998,0.249928,0,0);}
.m4b_c00055{transform:matrix(0.195358,0.003516,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195358,0.003516,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195358,0.003516,-0.004499,0.249960,0,0);}
.m56_c00055{transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);}
.m1e_c00055{transform:matrix(0.196218,0.003532,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196218,0.003532,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196218,0.003532,-0.004499,0.249960,0,0);}
.m4d_c00055{transform:matrix(0.196498,0.003537,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196498,0.003537,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196498,0.003537,-0.004499,0.249960,0,0);}
.mf4_c00055{transform:matrix(0.196758,0.004722,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196758,0.004722,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196758,0.004722,-0.005998,0.249928,0,0);}
.md_c00055{transform:matrix(0.196828,0.003543,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196828,0.003543,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196828,0.003543,-0.004499,0.249960,0,0);}
.m12_c00055{transform:matrix(0.197413,0.003553,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197413,0.003553,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197413,0.003553,-0.004499,0.249960,0,0);}
.mf_c00055{transform:matrix(0.197518,0.003555,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197518,0.003555,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197518,0.003555,-0.004499,0.249960,0,0);}
.ma6_c00055{transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);}
.m19_c00055{transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);}
.me7_c00055{transform:matrix(0.197798,0.004747,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197798,0.004747,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197798,0.004747,-0.005998,0.249928,0,0);}
.m27_c00055{transform:matrix(0.197813,0.003561,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197813,0.003561,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197813,0.003561,-0.004499,0.249960,0,0);}
.mc1_c00055{transform:matrix(0.198693,0.004769,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198693,0.004769,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198693,0.004769,-0.005998,0.249928,0,0);}
.mbf_c00055{transform:matrix(0.198703,0.004769,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198703,0.004769,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198703,0.004769,-0.005998,0.249928,0,0);}
.m41_c00055{transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);}
.ma3_c00055{transform:matrix(0.199278,0.004783,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199278,0.004783,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199278,0.004783,-0.005998,0.249928,0,0);}
.m21_c00055{transform:matrix(0.199313,0.003588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199313,0.003588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199313,0.003588,-0.004499,0.249960,0,0);}
.mef_c00055{transform:matrix(0.199328,0.004784,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199328,0.004784,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199328,0.004784,-0.005998,0.249928,0,0);}
.m52_c00055{transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);}
.m88_c00055{transform:matrix(0.200317,0.004808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200317,0.004808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200317,0.004808,-0.005998,0.249928,0,0);}
.m50_c00055{transform:matrix(0.200448,0.003608,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200448,0.003608,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200448,0.003608,-0.004499,0.249960,0,0);}
.m45_c00055{transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);}
.ma_c00055{transform:matrix(0.200962,0.003617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200962,0.003617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200962,0.003617,-0.004499,0.249960,0,0);}
.m1a_c00055{transform:matrix(0.200997,0.003618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200997,0.003618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200997,0.003618,-0.004499,0.249960,0,0);}
.m1c_c00055{transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);}
.md1_c00055{transform:matrix(0.201407,0.004834,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201407,0.004834,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201407,0.004834,-0.005998,0.249928,0,0);}
.mb7_c00055{transform:matrix(0.201777,0.004843,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201777,0.004843,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201777,0.004843,-0.005998,0.249928,0,0);}
.mae_c00055{transform:matrix(0.202397,0.004858,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202397,0.004858,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202397,0.004858,-0.005998,0.249928,0,0);}
.m1d_c00055{transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);}
.ma4_c00055{transform:matrix(0.202757,0.004866,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202757,0.004866,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202757,0.004866,-0.005998,0.249928,0,0);}
.md7_c00055{transform:matrix(0.203506,0.004884,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203506,0.004884,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203506,0.004884,-0.005998,0.249928,0,0);}
.mc4_c00055{transform:matrix(0.203556,0.004885,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203556,0.004885,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203556,0.004885,-0.005998,0.249928,0,0);}
.m6e_c00055{transform:matrix(0.203966,0.004895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203966,0.004895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203966,0.004895,-0.005998,0.249928,0,0);}
.m5c_c00055{transform:matrix(0.203971,0.004895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203971,0.004895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203971,0.004895,-0.005998,0.249928,0,0);}
.meb_c00055{transform:matrix(0.204791,0.004915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204791,0.004915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204791,0.004915,-0.005998,0.249928,0,0);}
.m53_c00055{transform:matrix(0.205067,0.003691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205067,0.003691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205067,0.003691,-0.004499,0.249960,0,0);}
.m7c_c00055{transform:matrix(0.205271,0.004927,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205271,0.004927,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205271,0.004927,-0.005998,0.249928,0,0);}
.m44_c00055{transform:matrix(0.205532,0.003700,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205532,0.003700,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205532,0.003700,-0.004499,0.249960,0,0);}
.m16_c00055{transform:matrix(0.206027,0.003708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206027,0.003708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206027,0.003708,-0.004499,0.249960,0,0);}
.m75_c00055{transform:matrix(0.206411,0.004954,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206411,0.004954,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206411,0.004954,-0.005998,0.249928,0,0);}
.m63_c00055{transform:matrix(0.206431,0.004954,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206431,0.004954,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206431,0.004954,-0.005998,0.249928,0,0);}
.m93_c00055{transform:matrix(0.206725,0.004961,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206725,0.004961,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206725,0.004961,-0.005998,0.249928,0,0);}
.m62_c00055{transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);}
.mcd_c00055{transform:matrix(0.207575,0.004982,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207575,0.004982,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207575,0.004982,-0.005998,0.249928,0,0);}
.m6c_c00055{transform:matrix(0.208150,0.004996,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208150,0.004996,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208150,0.004996,-0.005998,0.249928,0,0);}
.m8a_c00055{transform:matrix(0.208515,0.005004,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208515,0.005004,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208515,0.005004,-0.005998,0.249928,0,0);}
.m71_c00055{transform:matrix(0.208525,0.005005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208525,0.005005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208525,0.005005,-0.005998,0.249928,0,0);}
.m4e_c00055{transform:matrix(0.208991,0.003762,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208991,0.003762,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208991,0.003762,-0.004499,0.249960,0,0);}
.m2c_c00055{transform:matrix(0.209276,0.003767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209276,0.003767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209276,0.003767,-0.004499,0.249960,0,0);}
.me0_c00055{transform:matrix(0.209780,0.005035,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209780,0.005035,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209780,0.005035,-0.005998,0.249928,0,0);}
.m35_c00055{transform:matrix(0.209991,0.003780,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209991,0.003780,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209991,0.003780,-0.004499,0.249960,0,0);}
.mfc_c00055{transform:matrix(0.210209,0.005045,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210209,0.005045,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210209,0.005045,-0.005998,0.249928,0,0);}
.m82_c00055{transform:matrix(0.211039,0.005065,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211039,0.005065,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211039,0.005065,-0.005998,0.249928,0,0);}
.m57_c00055{transform:matrix(0.211661,0.003810,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211661,0.003810,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211661,0.003810,-0.004499,0.249960,0,0);}
.m38_c00055{transform:matrix(0.211731,0.003811,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211731,0.003811,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211731,0.003811,-0.004499,0.249960,0,0);}
.m3c_c00055{transform:matrix(0.211961,0.003815,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211961,0.003815,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211961,0.003815,-0.004499,0.249960,0,0);}
.mb2_c00055{transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);}
.mc5_c00055{transform:matrix(0.212244,0.005094,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212244,0.005094,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212244,0.005094,-0.005998,0.249928,0,0);}
.m97_c00055{transform:matrix(0.212304,0.005095,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212304,0.005095,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212304,0.005095,-0.005998,0.249928,0,0);}
.m9b_c00055{transform:matrix(0.212349,0.005096,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212349,0.005096,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212349,0.005096,-0.005998,0.249928,0,0);}
.ma0_c00055{transform:matrix(0.212399,0.005098,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212399,0.005098,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212399,0.005098,-0.005998,0.249928,0,0);}
.m5_c00055{transform:matrix(0.212441,0.003824,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212441,0.003824,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212441,0.003824,-0.004499,0.249960,0,0);}
.mbb_c00055{transform:matrix(0.212854,0.005108,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212854,0.005108,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212854,0.005108,-0.005998,0.249928,0,0);}
.m3f_c00055{transform:matrix(0.213320,0.003840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213320,0.003840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213320,0.003840,-0.004499,0.249960,0,0);}
.m76_c00055{transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);}
.m30_c00055{transform:matrix(0.213800,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213800,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213800,0.003848,-0.004499,0.249960,0,0);}
.m2b_c00055{transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);}
.mfa_c00055{transform:matrix(0.214008,0.005136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214008,0.005136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214008,0.005136,-0.005998,0.249928,0,0);}
.m8_c00055{transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);}
.m90_c00055{transform:matrix(0.214278,0.005143,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214278,0.005143,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214278,0.005143,-0.005998,0.249928,0,0);}
.m4f_c00055{transform:matrix(0.214660,0.003864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214660,0.003864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214660,0.003864,-0.004499,0.249960,0,0);}
.mb0_c00055{transform:matrix(0.215543,0.005173,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215543,0.005173,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215543,0.005173,-0.005998,0.249928,0,0);}
.mb4_c00055{transform:matrix(0.215938,0.005183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215938,0.005183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215938,0.005183,-0.005998,0.249928,0,0);}
.m7a_c00055{transform:matrix(0.216108,0.005187,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216108,0.005187,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216108,0.005187,-0.005998,0.249928,0,0);}
.m78_c00055{transform:matrix(0.216648,0.005200,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216648,0.005200,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216648,0.005200,-0.005998,0.249928,0,0);}
.m94_c00055{transform:matrix(0.217317,0.005216,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217317,0.005216,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217317,0.005216,-0.005998,0.249928,0,0);}
.m9c_c00055{transform:matrix(0.217692,0.005225,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217692,0.005225,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217692,0.005225,-0.005998,0.249928,0,0);}
.m83_c00055{transform:matrix(0.217892,0.005229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217892,0.005229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217892,0.005229,-0.005998,0.249928,0,0);}
.m8d_c00055{transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);}
.mdc_c00055{transform:matrix(0.219032,0.005257,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219032,0.005257,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219032,0.005257,-0.005998,0.249928,0,0);}
.m7_c00055{transform:matrix(0.220039,0.003961,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220039,0.003961,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220039,0.003961,-0.004499,0.249960,0,0);}
.mb3_c00055{transform:matrix(0.222451,0.005339,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222451,0.005339,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222451,0.005339,-0.005998,0.249928,0,0);}
.m73_c00055{transform:matrix(0.222586,0.005342,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222586,0.005342,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222586,0.005342,-0.005998,0.249928,0,0);}
.m39_c00055{transform:matrix(0.222609,0.004007,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222609,0.004007,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222609,0.004007,-0.004499,0.249960,0,0);}
.mf0_c00055{transform:matrix(0.223421,0.005362,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223421,0.005362,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223421,0.005362,-0.005998,0.249928,0,0);}
.m99_c00055{transform:matrix(0.223646,0.005367,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223646,0.005367,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223646,0.005367,-0.005998,0.249928,0,0);}
.m8e_c00055{transform:matrix(0.223851,0.005372,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223851,0.005372,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223851,0.005372,-0.005998,0.249928,0,0);}
.mc2_c00055{transform:matrix(0.224260,0.005382,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224260,0.005382,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224260,0.005382,-0.005998,0.249928,0,0);}
.mbc_c00055{transform:matrix(0.224460,0.005387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224460,0.005387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224460,0.005387,-0.005998,0.249928,0,0);}
.med_c00055{transform:matrix(0.224765,0.005394,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224765,0.005394,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224765,0.005394,-0.005998,0.249928,0,0);}
.m96_c00055{transform:matrix(0.225830,0.005420,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225830,0.005420,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225830,0.005420,-0.005998,0.249928,0,0);}
.m60_c00055{transform:matrix(0.225945,0.005423,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225945,0.005423,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225945,0.005423,-0.005998,0.249928,0,0);}
.mb9_c00055{transform:matrix(0.226040,0.005425,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226040,0.005425,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226040,0.005425,-0.005998,0.249928,0,0);}
.m37_c00055{transform:matrix(0.226203,0.004072,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226203,0.004072,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226203,0.004072,-0.004499,0.249960,0,0);}
.m5e_c00055{transform:matrix(0.226405,0.005434,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226405,0.005434,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226405,0.005434,-0.005998,0.249928,0,0);}
.m70_c00055{transform:matrix(0.226425,0.005434,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226425,0.005434,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226425,0.005434,-0.005998,0.249928,0,0);}
.m80_c00055{transform:matrix(0.228019,0.005472,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228019,0.005472,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228019,0.005472,-0.005998,0.249928,0,0);}
.m48_c00055{transform:matrix(0.228678,0.004116,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228678,0.004116,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228678,0.004116,-0.004499,0.249960,0,0);}
.me2_c00055{transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);}
.mf6_c00055{transform:matrix(0.228809,0.005491,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228809,0.005491,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228809,0.005491,-0.005998,0.249928,0,0);}
.m32_c00055{transform:matrix(0.229188,0.004125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229188,0.004125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229188,0.004125,-0.004499,0.249960,0,0);}
.m66_c00055{transform:matrix(0.229209,0.005501,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229209,0.005501,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229209,0.005501,-0.005998,0.249928,0,0);}
.mf5_c00055{transform:matrix(0.229824,0.005516,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229824,0.005516,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229824,0.005516,-0.005998,0.249928,0,0);}
.me1_c00055{transform:matrix(0.230169,0.005524,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230169,0.005524,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230169,0.005524,-0.005998,0.249928,0,0);}
.m4a_c00055{transform:matrix(0.230243,0.004144,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230243,0.004144,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230243,0.004144,-0.004499,0.249960,0,0);}
.m7f_c00055{transform:matrix(0.230549,0.005533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230549,0.005533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230549,0.005533,-0.005998,0.249928,0,0);}
.maf_c00055{transform:matrix(0.233433,0.005602,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233433,0.005602,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233433,0.005602,-0.005998,0.249928,0,0);}
.mbe_c00055{transform:matrix(0.234457,0.005627,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234457,0.005627,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234457,0.005627,-0.005998,0.249928,0,0);}
.mdb_c00055{transform:matrix(0.234932,0.005638,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234932,0.005638,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234932,0.005638,-0.005998,0.249928,0,0);}
.m9a_c00055{transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);}
.m17_c00055{transform:matrix(0.236082,0.004249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236082,0.004249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236082,0.004249,-0.004499,0.249960,0,0);}
.mcf_c00055{transform:matrix(0.236897,0.005686,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236897,0.005686,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236897,0.005686,-0.005998,0.249928,0,0);}
.m36_c00055{transform:matrix(0.237347,0.004272,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237347,0.004272,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237347,0.004272,-0.004499,0.249960,0,0);}
.mf9_c00055{transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);}
.mb5_c00055{transform:matrix(0.240131,0.005763,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240131,0.005763,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240131,0.005763,-0.005998,0.249928,0,0);}
.mf3_c00055{transform:matrix(0.240606,0.005775,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240606,0.005775,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240606,0.005775,-0.005998,0.249928,0,0);}
.m7d_c00055{transform:matrix(0.241131,0.005787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241131,0.005787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241131,0.005787,-0.005998,0.249928,0,0);}
.mf7_c00055{transform:matrix(0.242330,0.005816,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242330,0.005816,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242330,0.005816,-0.005998,0.249928,0,0);}
.me5_c00055{transform:matrix(0.242485,0.005820,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242485,0.005820,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242485,0.005820,-0.005998,0.249928,0,0);}
.mfb_c00055{transform:matrix(0.243195,0.005837,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243195,0.005837,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243195,0.005837,-0.005998,0.249928,0,0);}
.mf1_c00055{transform:matrix(0.243310,0.005839,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243310,0.005839,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243310,0.005839,-0.005998,0.249928,0,0);}
.m8f_c00055{transform:matrix(0.243455,0.005843,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243455,0.005843,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243455,0.005843,-0.005998,0.249928,0,0);}
.m33_c00055{transform:matrix(0.243516,0.004383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243516,0.004383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243516,0.004383,-0.004499,0.249960,0,0);}
.m43_c00055{transform:matrix(0.244900,0.004408,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244900,0.004408,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244900,0.004408,-0.004499,0.249960,0,0);}
.m7e_c00055{transform:matrix(0.244989,0.005880,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244989,0.005880,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244989,0.005880,-0.005998,0.249928,0,0);}
.m79_c00055{transform:matrix(0.245514,0.005892,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245514,0.005892,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245514,0.005892,-0.005998,0.249928,0,0);}
.m2f_c00055{transform:matrix(0.248640,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248640,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248640,0.004476,-0.004499,0.249960,0,0);}
.m91_c00055{transform:matrix(0.250338,0.006008,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250338,0.006008,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250338,0.006008,-0.005998,0.249928,0,0);}
.me4_c00055{transform:matrix(0.251088,0.006026,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251088,0.006026,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251088,0.006026,-0.005998,0.249928,0,0);}
.m31_c00055{transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);}
.m72_c00055{transform:matrix(0.256816,0.006164,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256816,0.006164,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256816,0.006164,-0.005998,0.249928,0,0);}
.ma5_c00055{transform:matrix(0.286847,0.006884,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286847,0.006884,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286847,0.006884,-0.005998,0.249928,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
.fc0_c00055{color:transparent;}
.fsb_c00055{font-size:55.666025px;}
.fs5_c00055{font-size:56.709185px;}
.fse_c00055{font-size:56.716327px;}
.fs6_c00055{font-size:57.759355px;}
.fs7_c00055{font-size:57.766630px;}
.fs9_c00055{font-size:58.816932px;}
.fsa_c00055{font-size:59.867234px;}
.fs2_c00055{font-size:60.909865px;}
.fs8_c00055{font-size:60.917537px;}
.fs4_c00055{font-size:64.060375px;}
.fsd_c00055{font-size:65.118746px;}
.fs1_c00055{font-size:66.160715px;}
.fsc_c00055{font-size:66.169048px;}
.fs10_c00055{font-size:67.219351px;}
.fs3_c00055{font-size:68.261056px;}
.fsf_c00055{font-size:68.269653px;}
.fs0_c00055{font-size:73.500000px;}
.y0_c00055{bottom:0.000000px;}
.yfd_c00055{bottom:31.651740px;}
.yfc_c00055{bottom:33.007140px;}
.yfb_c00055{bottom:33.447900px;}
.yfa_c00055{bottom:34.683384px;}
.yf9_c00055{bottom:35.092956px;}
.yf8_c00055{bottom:36.328440px;}
.yf7_c00055{bottom:36.973392px;}
.yf6_c00055{bottom:37.440192px;}
.yf5_c00055{bottom:48.468444px;}
.yf4_c00055{bottom:49.220844px;}
.yf3_c00055{bottom:49.859520px;}
.yf2_c00055{bottom:50.932284px;}
.yf1_c00055{bottom:51.463968px;}
.yf0_c00055{bottom:53.277684px;}
.yef_c00055{bottom:53.842380px;}
.yee_c00055{bottom:54.558960px;}
.yed_c00055{bottom:54.994560px;}
.yec_c00055{bottom:65.161632px;}
.yeb_c00055{bottom:66.360576px;}
.yea_c00055{bottom:67.571352px;}
.ye9_c00055{bottom:68.187000px;}
.ye8_c00055{bottom:68.573292px;}
.ye7_c00055{bottom:70.142316px;}
.ye6_c00055{bottom:70.676508px;}
.ye5_c00055{bottom:72.014364px;}
.ye4_c00055{bottom:80.997552px;}
.ye3_c00055{bottom:81.740400px;}
.ye2_c00055{bottom:82.185900px;}
.ye1_c00055{bottom:84.142716px;}
.ye0_c00055{bottom:84.822864px;}
.ydf_c00055{bottom:86.147964px;}
.yde_c00055{bottom:86.862660px;}
.ydd_c00055{bottom:87.531444px;}
.ydc_c00055{bottom:88.773852px;}
.ydb_c00055{bottom:89.295204px;}
.yda_c00055{bottom:97.967148px;}
.yd9_c00055{bottom:99.843708px;}
.yd8_c00055{bottom:101.746740px;}
.yd7_c00055{bottom:102.466140px;}
.yd6_c00055{bottom:103.158528px;}
.yd5_c00055{bottom:104.487444px;}
.yd4_c00055{bottom:105.770352px;}
.yd3_c00055{bottom:115.841568px;}
.yd2_c00055{bottom:117.485124px;}
.yd1_c00055{bottom:118.376388px;}
.yd0_c00055{bottom:118.773168px;}
.ycf_c00055{bottom:119.913084px;}
.yce_c00055{bottom:121.239792px;}
.ycd_c00055{bottom:121.970124px;}
.ycc_c00055{bottom:132.938328px;}
.ycb_c00055{bottom:133.510812px;}
.yca_c00055{bottom:134.139024px;}
.yc9_c00055{bottom:136.415340px;}
.yc8_c00055{bottom:136.969764px;}
.yc7_c00055{bottom:138.682668px;}
.yc6_c00055{bottom:139.797804px;}
.yc5_c00055{bottom:148.957380px;}
.yc4_c00055{bottom:149.351160px;}
.yc3_c00055{bottom:149.835960px;}
.yc2_c00055{bottom:150.931848px;}
.yc1_c00055{bottom:151.353504px;}
.yc0_c00055{bottom:152.032008px;}
.ybf_c00055{bottom:153.986364px;}
.ybe_c00055{bottom:154.489404px;}
.ybd_c00055{bottom:155.734848px;}
.ybc_c00055{bottom:166.998492px;}
.ybb_c00055{bottom:167.664492px;}
.yba_c00055{bottom:170.731608px;}
.yb9_c00055{bottom:171.985860px;}
.yb8_c00055{bottom:173.886816px;}
.yb7_c00055{bottom:174.911520px;}
.yb6_c00055{bottom:184.758624px;}
.yb5_c00055{bottom:186.830028px;}
.yb4_c00055{bottom:187.442172px;}
.yb3_c00055{bottom:188.871324px;}
.yb2_c00055{bottom:189.425664px;}
.yb1_c00055{bottom:190.172544px;}
.yb0_c00055{bottom:191.117352px;}
.yaf_c00055{bottom:200.428476px;}
.yae_c00055{bottom:200.685996px;}
.yad_c00055{bottom:201.681492px;}
.yac_c00055{bottom:202.279980px;}
.yab_c00055{bottom:202.935300px;}
.yaa_c00055{bottom:204.905028px;}
.ya9_c00055{bottom:205.663152px;}
.ya8_c00055{bottom:207.302400px;}
.ya7_c00055{bottom:208.250160px;}
.ya6_c00055{bottom:209.216808px;}
.ya5_c00055{bottom:217.810068px;}
.ya4_c00055{bottom:218.462676px;}
.ya3_c00055{bottom:219.062736px;}
.ya2_c00055{bottom:219.349416px;}
.ya1_c00055{bottom:220.755096px;}
.ya0_c00055{bottom:221.302428px;}
.y9f_c00055{bottom:222.412548px;}
.y9e_c00055{bottom:222.899064px;}
.y9d_c00055{bottom:223.777428px;}
.y9c_c00055{bottom:225.150216px;}
.y9b_c00055{bottom:233.421444px;}
.y9a_c00055{bottom:236.261088px;}
.y99_c00055{bottom:236.969892px;}
.y98_c00055{bottom:238.896948px;}
.y97_c00055{bottom:241.127148px;}
.y96_c00055{bottom:241.816164px;}
.y95_c00055{bottom:243.245340px;}
.y94_c00055{bottom:251.500344px;}
.y93_c00055{bottom:252.140304px;}
.y92_c00055{bottom:253.361016px;}
.y91_c00055{bottom:254.034180px;}
.y90_c00055{bottom:255.378648px;}
.y8f_c00055{bottom:256.018428px;}
.y8e_c00055{bottom:257.514000px;}
.y8d_c00055{bottom:258.306960px;}
.y8c_c00055{bottom:258.922584px;}
.y8b_c00055{bottom:259.716516px;}
.y8a_c00055{bottom:269.058048px;}
.y89_c00055{bottom:270.236976px;}
.y88_c00055{bottom:270.636036px;}
.y87_c00055{bottom:273.252396px;}
.y86_c00055{bottom:273.982884px;}
.y85_c00055{bottom:274.965924px;}
.y84_c00055{bottom:276.735732px;}
.y83_c00055{bottom:284.989080px;}
.y82_c00055{bottom:286.729992px;}
.y81_c00055{bottom:287.402412px;}
.y80_c00055{bottom:287.914260px;}
.y7f_c00055{bottom:289.443408px;}
.y7e_c00055{bottom:291.321396px;}
.y7d_c00055{bottom:294.019548px;}
.y7c_c00055{bottom:304.107024px;}
.y7b_c00055{bottom:304.720704px;}
.y7a_c00055{bottom:305.208528px;}
.y79_c00055{bottom:306.555756px;}
.y78_c00055{bottom:307.458876px;}
.y77_c00055{bottom:307.992180px;}
.y76_c00055{bottom:309.242916px;}
.y75_c00055{bottom:309.947400px;}
.y74_c00055{bottom:319.272960px;}
.y73_c00055{bottom:320.429436px;}
.y72_c00055{bottom:322.223484px;}
.y71_c00055{bottom:322.820988px;}
.y70_c00055{bottom:324.474768px;}
.y6f_c00055{bottom:324.905484px;}
.y6e_c00055{bottom:326.688744px;}
.y6d_c00055{bottom:336.107460px;}
.y6c_c00055{bottom:336.658080px;}
.y6b_c00055{bottom:337.367736px;}
.y6a_c00055{bottom:337.854120px;}
.y69_c00055{bottom:338.607072px;}
.y68_c00055{bottom:339.669348px;}
.y67_c00055{bottom:340.180416px;}
.y66_c00055{bottom:341.654364px;}
.y65_c00055{bottom:342.259116px;}
.y64_c00055{bottom:343.163652px;}
.y63_c00055{bottom:352.872612px;}
.y62_c00055{bottom:353.792688px;}
.y61_c00055{bottom:355.096776px;}
.y60_c00055{bottom:357.026148px;}
.y5f_c00055{bottom:357.718536px;}
.y5e_c00055{bottom:359.914296px;}
.y5d_c00055{bottom:371.015904px;}
.y5c_c00055{bottom:377.737500px;}
.y5b_c00055{bottom:387.607809px;}
.y5a_c00055{bottom:388.677153px;}
.y59_c00055{bottom:390.172824px;}
.y58_c00055{bottom:391.812981px;}
.y57_c00055{bottom:393.795972px;}
.y56_c00055{bottom:394.227513px;}
.y55_c00055{bottom:394.996269px;}
.y54_c00055{bottom:403.059549px;}
.y53_c00055{bottom:403.447452px;}
.y52_c00055{bottom:405.449946px;}
.y51_c00055{bottom:406.907193px;}
.y50_c00055{bottom:410.021142px;}
.y4f_c00055{bottom:411.739809px;}
.y4e_c00055{bottom:422.000004px;}
.y4d_c00055{bottom:423.492081px;}
.y4c_c00055{bottom:424.164042px;}
.y4b_c00055{bottom:424.775904px;}
.y4a_c00055{bottom:426.193701px;}
.y49_c00055{bottom:426.712011px;}
.y48_c00055{bottom:429.019314px;}
.y47_c00055{bottom:437.738310px;}
.y46_c00055{bottom:438.861774px;}
.y45_c00055{bottom:440.075493px;}
.y44_c00055{bottom:440.372997px;}
.y43_c00055{bottom:442.316181px;}
.y42_c00055{bottom:442.910514px;}
.y41_c00055{bottom:444.132228px;}
.y40_c00055{bottom:444.602598px;}
.y3f_c00055{bottom:445.757421px;}
.y3e_c00055{bottom:453.306609px;}
.y3d_c00055{bottom:454.010172px;}
.y3c_c00055{bottom:454.665951px;}
.y3b_c00055{bottom:456.018108px;}
.y3a_c00055{bottom:456.567042px;}
.y39_c00055{bottom:457.928235px;}
.y38_c00055{bottom:458.580786px;}
.y37_c00055{bottom:460.117650px;}
.y36_c00055{bottom:460.570584px;}
.y35_c00055{bottom:462.230838px;}
.y34_c00055{bottom:471.702543px;}
.y33_c00055{bottom:473.095740px;}
.y32_c00055{bottom:474.905904px;}
.y31_c00055{bottom:475.954164px;}
.y30_c00055{bottom:476.480772px;}
.y2f_c00055{bottom:477.688881px;}
.y2e_c00055{bottom:478.172856px;}
.y2d_c00055{bottom:478.971438px;}
.y2c_c00055{bottom:488.091651px;}
.y2b_c00055{bottom:488.419824px;}
.y2a_c00055{bottom:489.421113px;}
.y29_c00055{bottom:490.016841px;}
.y28_c00055{bottom:491.450238px;}
.y27_c00055{bottom:492.462600px;}
.y26_c00055{bottom:492.906861px;}
.y25_c00055{bottom:494.366859px;}
.y24_c00055{bottom:504.831681px;}
.y23_c00055{bottom:505.874769px;}
.y22_c00055{bottom:508.347510px;}
.y21_c00055{bottom:510.008766px;}
.y20_c00055{bottom:510.697401px;}
.y1f_c00055{bottom:511.816938px;}
.y1e_c00055{bottom:512.460252px;}
.y1d_c00055{bottom:522.027501px;}
.y1c_c00055{bottom:523.794552px;}
.y1b_c00055{bottom:524.119638px;}
.y1a_c00055{bottom:524.528085px;}
.y19_c00055{bottom:525.559713px;}
.y18_c00055{bottom:525.900177px;}
.y17_c00055{bottom:526.636950px;}
.y16_c00055{bottom:527.851368px;}
.y15_c00055{bottom:538.997568px;}
.y14_c00055{bottom:539.383467px;}
.y13_c00055{bottom:539.981103px;}
.y12_c00055{bottom:540.241920px;}
.y11_c00055{bottom:541.092771px;}
.y10_c00055{bottom:541.722420px;}
.yf_c00055{bottom:542.321946px;}
.ye_c00055{bottom:543.501204px;}
.yd_c00055{bottom:543.904722px;}
.yc_c00055{bottom:544.860834px;}
.yb_c00055{bottom:557.043579px;}
.ya_c00055{bottom:557.278047px;}
.y9_c00055{bottom:558.410670px;}
.y8_c00055{bottom:558.657099px;}
.y7_c00055{bottom:559.514430px;}
.y6_c00055{bottom:559.845126px;}
.y5_c00055{bottom:560.642571px;}
.y4_c00055{bottom:560.953395px;}
.y3_c00055{bottom:561.847392px;}
.y2_c00055{bottom:562.144500px;}
.y1_c00055{bottom:572.806500px;}
.hd_c00055{height:55.666025px;}
.h7_c00055{height:56.709185px;}
.h10_c00055{height:56.716327px;}
.h8_c00055{height:57.759355px;}
.h9_c00055{height:57.766630px;}
.hb_c00055{height:58.816932px;}
.hc_c00055{height:59.867234px;}
.h4_c00055{height:60.909865px;}
.ha_c00055{height:60.917537px;}
.h6_c00055{height:64.060375px;}
.hf_c00055{height:65.118746px;}
.h3_c00055{height:66.160715px;}
.he_c00055{height:66.169048px;}
.h12_c00055{height:67.219351px;}
.h5_c00055{height:68.261056px;}
.h11_c00055{height:68.269653px;}
.h2_c00055{height:73.500000px;}
.h0_c00055{height:618.570000px;}
.h1_c00055{height:618.750000px;}
.w0_c00055{width:361.200000px;}
.w1_c00055{width:361.500000px;}
.x0_c00055{left:0.000000px;}
.x68_c00055{left:17.746860px;}
.x75_c00055{left:21.036468px;}
.x61_c00055{left:22.898040px;}
.x6d_c00055{left:24.210444px;}
.x65_c00055{left:25.554036px;}
.x5e_c00055{left:27.059016px;}
.x4e_c00055{left:28.159728px;}
.x48_c00055{left:30.726000px;}
.x3f_c00055{left:31.807332px;}
.x23_c00055{left:33.981411px;}
.xd_c00055{left:35.753082px;}
.x3_c00055{left:37.027500px;}
.x78_c00055{left:38.826528px;}
.x7f_c00055{left:40.562532px;}
.x69_c00055{left:47.017524px;}
.x4_c00055{left:53.533500px;}
.x44_c00055{left:54.983289px;}
.x6f_c00055{left:56.066988px;}
.x49_c00055{left:57.447372px;}
.x1e_c00055{left:58.937994px;}
.x2a_c00055{left:65.033571px;}
.x62_c00055{left:66.187680px;}
.x45_c00055{left:68.454387px;}
.x66_c00055{left:71.309448px;}
.x37_c00055{left:73.363200px;}
.x6a_c00055{left:75.751332px;}
.xe_c00055{left:81.284625px;}
.x2b_c00055{left:83.668398px;}
.x31_c00055{left:85.627503px;}
.x63_c00055{left:87.079680px;}
.x4f_c00055{left:88.545288px;}
.x38_c00055{left:89.574987px;}
.x7c_c00055{left:91.574976px;}
.x17_c00055{left:92.881662px;}
.x24_c00055{left:94.835850px;}
.xf_c00055{left:100.534599px;}
.x5_c00055{left:103.200000px;}
.x79_c00055{left:104.701608px;}
.x6e_c00055{left:107.413968px;}
.x40_c00055{left:108.724227px;}
.x51_c00055{left:110.962620px;}
.x25_c00055{left:113.348352px;}
.x5a_c00055{left:116.270568px;}
.x76_c00055{left:117.793020px;}
.x6_c00055{left:120.468000px;}
.x80_c00055{left:122.353512px;}
.x54_c00055{left:124.057512px;}
.x1f_c00055{left:125.881140px;}
.x18_c00055{left:127.978272px;}
.x2c_c00055{left:130.112202px;}
.x39_c00055{left:131.689644px;}
.x4a_c00055{left:135.867348px;}
.x5b_c00055{left:139.828608px;}
.x19_c00055{left:144.225408px;}
.x32_c00055{left:147.822843px;}
.x2d_c00055{left:150.365286px;}
.x3a_c00055{left:152.204094px;}
.x67_c00055{left:153.797568px;}
.x26_c00055{left:155.502789px;}
.x10_c00055{left:156.712575px;}
.x55_c00055{left:158.810856px;}
.x4b_c00055{left:160.589472px;}
.x7_c00055{left:164.770500px;}
.x57_c00055{left:166.419276px;}
.x33_c00055{left:168.237213px;}
.x77_c00055{left:170.113776px;}
.x1_c00055{left:171.990000px;}
.x41_c00055{left:173.271795px;}
.x73_c00055{left:174.465180px;}
.x46_c00055{left:181.711875px;}
.x8_c00055{left:183.142500px;}
.x11_c00055{left:185.268036px;}
.x20_c00055{left:187.413177px;}
.x7d_c00055{left:189.299976px;}
.x2e_c00055{left:190.679481px;}
.x1a_c00055{left:193.368762px;}
.x52_c00055{left:194.385144px;}
.x7a_c00055{left:198.521376px;}
.x2_c00055{left:207.360000px;}
.x34_c00055{left:210.764994px;}
.x1b_c00055{left:212.809209px;}
.x12_c00055{left:215.246916px;}
.x5f_c00055{left:216.483264px;}
.x3b_c00055{left:219.228837px;}
.x5c_c00055{left:224.204424px;}
.x1c_c00055{left:228.285372px;}
.x3c_c00055{left:229.504812px;}
.x9_c00055{left:230.772000px;}
.x64_c00055{left:234.550356px;}
.x74_c00055{left:235.825608px;}
.x5d_c00055{left:237.079764px;}
.x60_c00055{left:238.903524px;}
.x27_c00055{left:240.056163px;}
.xa_c00055{left:244.462500px;}
.x6b_c00055{left:246.044040px;}
.x58_c00055{left:248.648028px;}
.x70_c00055{left:250.480656px;}
.x56_c00055{left:253.024356px;}
.x13_c00055{left:255.764229px;}
.x7b_c00055{left:257.040780px;}
.x2f_c00055{left:260.317464px;}
.x47_c00055{left:261.859179px;}
.x71_c00055{left:264.489504px;}
.x42_c00055{left:265.801815px;}
.x14_c00055{left:268.170054px;}
.x35_c00055{left:270.199536px;}
.x3d_c00055{left:271.342023px;}
.x4c_c00055{left:276.055884px;}
.x21_c00055{left:279.022854px;}
.x28_c00055{left:281.762154px;}
.x6c_c00055{left:283.994832px;}
.x72_c00055{left:286.529460px;}
.x50_c00055{left:288.406500px;}
.x36_c00055{left:290.709879px;}
.x7e_c00055{left:291.959976px;}
.x29_c00055{left:295.409169px;}
.x15_c00055{left:296.620515px;}
.x59_c00055{left:301.424652px;}
.x43_c00055{left:302.470374px;}
.x53_c00055{left:303.628260px;}
.xb_c00055{left:307.386000px;}
.x4d_c00055{left:308.889216px;}
.x3e_c00055{left:310.082355px;}
.x1d_c00055{left:312.450336px;}
.x30_c00055{left:313.876242px;}
.x16_c00055{left:314.975016px;}
.x22_c00055{left:317.632590px;}
.xc_c00055{left:320.412000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fsb_c00055{font-size:49.480911pt;}
.fs5_c00055{font-size:50.408164pt;}
.fse_c00055{font-size:50.414513pt;}
.fs6_c00055{font-size:51.341649pt;}
.fs7_c00055{font-size:51.348115pt;}
.fs9_c00055{font-size:52.281717pt;}
.fsa_c00055{font-size:53.215319pt;}
.fs2_c00055{font-size:54.142102pt;}
.fs8_c00055{font-size:54.148921pt;}
.fs4_c00055{font-size:56.942556pt;}
.fsd_c00055{font-size:57.883330pt;}
.fs1_c00055{font-size:58.809525pt;}
.fsc_c00055{font-size:58.816932pt;}
.fs10_c00055{font-size:59.750534pt;}
.fs3_c00055{font-size:60.676494pt;}
.fsf_c00055{font-size:60.684136pt;}
.fs0_c00055{font-size:65.333333pt;}
.y0_c00055{bottom:0.000000pt;}
.yfd_c00055{bottom:28.134880pt;}
.yfc_c00055{bottom:29.339680pt;}
.yfb_c00055{bottom:29.731467pt;}
.yfa_c00055{bottom:30.829675pt;}
.yf9_c00055{bottom:31.193739pt;}
.yf8_c00055{bottom:32.291947pt;}
.yf7_c00055{bottom:32.865237pt;}
.yf6_c00055{bottom:33.280171pt;}
.yf5_c00055{bottom:43.083061pt;}
.yf4_c00055{bottom:43.751861pt;}
.yf3_c00055{bottom:44.319573pt;}
.yf2_c00055{bottom:45.273141pt;}
.yf1_c00055{bottom:45.745749pt;}
.yf0_c00055{bottom:47.357941pt;}
.yef_c00055{bottom:47.859893pt;}
.yee_c00055{bottom:48.496853pt;}
.yed_c00055{bottom:48.884053pt;}
.yec_c00055{bottom:57.921451pt;}
.yeb_c00055{bottom:58.987179pt;}
.yea_c00055{bottom:60.063424pt;}
.ye9_c00055{bottom:60.610667pt;}
.ye8_c00055{bottom:60.954037pt;}
.ye7_c00055{bottom:62.348725pt;}
.ye6_c00055{bottom:62.823563pt;}
.ye5_c00055{bottom:64.012768pt;}
.ye4_c00055{bottom:71.997824pt;}
.ye3_c00055{bottom:72.658133pt;}
.ye2_c00055{bottom:73.054133pt;}
.ye1_c00055{bottom:74.793525pt;}
.ye0_c00055{bottom:75.398101pt;}
.ydf_c00055{bottom:76.575968pt;}
.yde_c00055{bottom:77.211253pt;}
.ydd_c00055{bottom:77.805728pt;}
.ydc_c00055{bottom:78.910091pt;}
.ydb_c00055{bottom:79.373515pt;}
.yda_c00055{bottom:87.081909pt;}
.yd9_c00055{bottom:88.749963pt;}
.yd8_c00055{bottom:90.441547pt;}
.yd7_c00055{bottom:91.081013pt;}
.yd6_c00055{bottom:91.696469pt;}
.yd5_c00055{bottom:92.877728pt;}
.yd4_c00055{bottom:94.018091pt;}
.yd3_c00055{bottom:102.970283pt;}
.yd2_c00055{bottom:104.431221pt;}
.yd1_c00055{bottom:105.223456pt;}
.yd0_c00055{bottom:105.576149pt;}
.ycf_c00055{bottom:106.589408pt;}
.yce_c00055{bottom:107.768704pt;}
.ycd_c00055{bottom:108.417888pt;}
.ycc_c00055{bottom:118.167403pt;}
.ycb_c00055{bottom:118.676277pt;}
.yca_c00055{bottom:119.234688pt;}
.yc9_c00055{bottom:121.258080pt;}
.yc8_c00055{bottom:121.750901pt;}
.yc7_c00055{bottom:123.273483pt;}
.yc6_c00055{bottom:124.264715pt;}
.yc5_c00055{bottom:132.406560pt;}
.yc4_c00055{bottom:132.756587pt;}
.yc3_c00055{bottom:133.187520pt;}
.yc2_c00055{bottom:134.161643pt;}
.yc1_c00055{bottom:134.536448pt;}
.yc0_c00055{bottom:135.139563pt;}
.ybf_c00055{bottom:136.876768pt;}
.ybe_c00055{bottom:137.323915pt;}
.ybd_c00055{bottom:138.430976pt;}
.ybc_c00055{bottom:148.443104pt;}
.ybb_c00055{bottom:149.035104pt;}
.yba_c00055{bottom:151.761429pt;}
.yb9_c00055{bottom:152.876320pt;}
.yb8_c00055{bottom:154.566059pt;}
.yb7_c00055{bottom:155.476907pt;}
.yb6_c00055{bottom:164.229888pt;}
.yb5_c00055{bottom:166.071136pt;}
.yb4_c00055{bottom:166.615264pt;}
.yb3_c00055{bottom:167.885621pt;}
.yb2_c00055{bottom:168.378368pt;}
.yb1_c00055{bottom:169.042261pt;}
.yb0_c00055{bottom:169.882091pt;}
.yaf_c00055{bottom:178.158645pt;}
.yae_c00055{bottom:178.387552pt;}
.yad_c00055{bottom:179.272437pt;}
.yac_c00055{bottom:179.804427pt;}
.yab_c00055{bottom:180.386933pt;}
.yaa_c00055{bottom:182.137803pt;}
.ya9_c00055{bottom:182.811691pt;}
.ya8_c00055{bottom:184.268800pt;}
.ya7_c00055{bottom:185.111253pt;}
.ya6_c00055{bottom:185.970496pt;}
.ya5_c00055{bottom:193.608949pt;}
.ya4_c00055{bottom:194.189045pt;}
.ya3_c00055{bottom:194.722432pt;}
.ya2_c00055{bottom:194.977259pt;}
.ya1_c00055{bottom:196.226752pt;}
.ya0_c00055{bottom:196.713269pt;}
.y9f_c00055{bottom:197.700043pt;}
.y9e_c00055{bottom:198.132501pt;}
.y9d_c00055{bottom:198.913269pt;}
.y9c_c00055{bottom:200.133525pt;}
.y9b_c00055{bottom:207.485728pt;}
.y9a_c00055{bottom:210.009856pt;}
.y99_c00055{bottom:210.639904pt;}
.y98_c00055{bottom:212.352843pt;}
.y97_c00055{bottom:214.335243pt;}
.y96_c00055{bottom:214.947701pt;}
.y95_c00055{bottom:216.218080pt;}
.y94_c00055{bottom:223.555861pt;}
.y93_c00055{bottom:224.124715pt;}
.y92_c00055{bottom:225.209792pt;}
.y91_c00055{bottom:225.808160pt;}
.y90_c00055{bottom:227.003243pt;}
.y8f_c00055{bottom:227.571936pt;}
.y8e_c00055{bottom:228.901333pt;}
.y8d_c00055{bottom:229.606187pt;}
.y8c_c00055{bottom:230.153408pt;}
.y8b_c00055{bottom:230.859125pt;}
.y8a_c00055{bottom:239.162709pt;}
.y89_c00055{bottom:240.210645pt;}
.y88_c00055{bottom:240.565365pt;}
.y87_c00055{bottom:242.891019pt;}
.y86_c00055{bottom:243.540341pt;}
.y85_c00055{bottom:244.414155pt;}
.y84_c00055{bottom:245.987317pt;}
.y83_c00055{bottom:253.323627pt;}
.y82_c00055{bottom:254.871104pt;}
.y81_c00055{bottom:255.468811pt;}
.y80_c00055{bottom:255.923787pt;}
.y7f_c00055{bottom:257.283029pt;}
.y7e_c00055{bottom:258.952352pt;}
.y7d_c00055{bottom:261.350709pt;}
.y7c_c00055{bottom:270.317355pt;}
.y7b_c00055{bottom:270.862848pt;}
.y7a_c00055{bottom:271.296469pt;}
.y79_c00055{bottom:272.494005pt;}
.y78_c00055{bottom:273.296779pt;}
.y77_c00055{bottom:273.770827pt;}
.y76_c00055{bottom:274.882592pt;}
.y75_c00055{bottom:275.508800pt;}
.y74_c00055{bottom:283.798187pt;}
.y73_c00055{bottom:284.826165pt;}
.y72_c00055{bottom:286.420875pt;}
.y71_c00055{bottom:286.951989pt;}
.y70_c00055{bottom:288.422016pt;}
.y6f_c00055{bottom:288.804875pt;}
.y6e_c00055{bottom:290.389995pt;}
.y6d_c00055{bottom:298.762187pt;}
.y6c_c00055{bottom:299.251627pt;}
.y6b_c00055{bottom:299.882432pt;}
.y6a_c00055{bottom:300.314773pt;}
.y69_c00055{bottom:300.984064pt;}
.y68_c00055{bottom:301.928309pt;}
.y67_c00055{bottom:302.382592pt;}
.y66_c00055{bottom:303.692768pt;}
.y65_c00055{bottom:304.230325pt;}
.y64_c00055{bottom:305.034357pt;}
.y63_c00055{bottom:313.664544pt;}
.y62_c00055{bottom:314.482389pt;}
.y61_c00055{bottom:315.641579pt;}
.y60_c00055{bottom:317.356576pt;}
.y5f_c00055{bottom:317.972032pt;}
.y5e_c00055{bottom:319.923819pt;}
.y5d_c00055{bottom:329.791915pt;}
.y5c_c00055{bottom:335.766667pt;}
.y5b_c00055{bottom:344.540275pt;}
.y5a_c00055{bottom:345.490803pt;}
.y59_c00055{bottom:346.820288pt;}
.y58_c00055{bottom:348.278205pt;}
.y57_c00055{bottom:350.040864pt;}
.y56_c00055{bottom:350.424456pt;}
.y55_c00055{bottom:351.107795pt;}
.y54_c00055{bottom:358.275155pt;}
.y53_c00055{bottom:358.619957pt;}
.y52_c00055{bottom:360.399952pt;}
.y51_c00055{bottom:361.695283pt;}
.y50_c00055{bottom:364.463237pt;}
.y4f_c00055{bottom:365.990941pt;}
.y4e_c00055{bottom:375.111115pt;}
.y4d_c00055{bottom:376.437405pt;}
.y4c_c00055{bottom:377.034704pt;}
.y4b_c00055{bottom:377.578581pt;}
.y4a_c00055{bottom:378.838845pt;}
.y49_c00055{bottom:379.299565pt;}
.y48_c00055{bottom:381.350501pt;}
.y47_c00055{bottom:389.100720pt;}
.y46_c00055{bottom:390.099355pt;}
.y45_c00055{bottom:391.178216pt;}
.y44_c00055{bottom:391.442664pt;}
.y43_c00055{bottom:393.169939pt;}
.y42_c00055{bottom:393.698235pt;}
.y41_c00055{bottom:394.784203pt;}
.y40_c00055{bottom:395.202309pt;}
.y3f_c00055{bottom:396.228819pt;}
.y3e_c00055{bottom:402.939208pt;}
.y3d_c00055{bottom:403.564597pt;}
.y3c_c00055{bottom:404.147512pt;}
.y3b_c00055{bottom:405.349429pt;}
.y3a_c00055{bottom:405.837371pt;}
.y39_c00055{bottom:407.047320pt;}
.y38_c00055{bottom:407.627365pt;}
.y37_c00055{bottom:408.993467pt;}
.y36_c00055{bottom:409.396075pt;}
.y35_c00055{bottom:410.871856pt;}
.y34_c00055{bottom:419.291149pt;}
.y33_c00055{bottom:420.529547pt;}
.y32_c00055{bottom:422.138581pt;}
.y31_c00055{bottom:423.070368pt;}
.y30_c00055{bottom:423.538464pt;}
.y2f_c00055{bottom:424.612339pt;}
.y2e_c00055{bottom:425.042539pt;}
.y2d_c00055{bottom:425.752389pt;}
.y2c_c00055{bottom:433.859245pt;}
.y2b_c00055{bottom:434.150955pt;}
.y2a_c00055{bottom:435.040989pt;}
.y29_c00055{bottom:435.570525pt;}
.y28_c00055{bottom:436.844656pt;}
.y27_c00055{bottom:437.744533pt;}
.y26_c00055{bottom:438.139432pt;}
.y25_c00055{bottom:439.437208pt;}
.y24_c00055{bottom:448.739272pt;}
.y23_c00055{bottom:449.666461pt;}
.y22_c00055{bottom:451.864453pt;}
.y21_c00055{bottom:453.341125pt;}
.y20_c00055{bottom:453.953245pt;}
.y1f_c00055{bottom:454.948389pt;}
.y1e_c00055{bottom:455.520224pt;}
.y1d_c00055{bottom:464.024445pt;}
.y1c_c00055{bottom:465.595157pt;}
.y1b_c00055{bottom:465.884123pt;}
.y1a_c00055{bottom:466.247187pt;}
.y19_c00055{bottom:467.164189pt;}
.y18_c00055{bottom:467.466824pt;}
.y17_c00055{bottom:468.121733pt;}
.y16_c00055{bottom:469.201216pt;}
.y15_c00055{bottom:479.108949pt;}
.y14_c00055{bottom:479.451971pt;}
.y13_c00055{bottom:479.983203pt;}
.y12_c00055{bottom:480.215040pt;}
.y11_c00055{bottom:480.971352pt;}
.y10_c00055{bottom:481.531040pt;}
.yf_c00055{bottom:482.063952pt;}
.ye_c00055{bottom:483.112181pt;}
.yd_c00055{bottom:483.470864pt;}
.yc_c00055{bottom:484.320741pt;}
.yb_c00055{bottom:495.149848pt;}
.ya_c00055{bottom:495.358264pt;}
.y9_c00055{bottom:496.365040pt;}
.y8_c00055{bottom:496.584088pt;}
.y7_c00055{bottom:497.346160pt;}
.y6_c00055{bottom:497.640112pt;}
.y5_c00055{bottom:498.348952pt;}
.y4_c00055{bottom:498.625240pt;}
.y3_c00055{bottom:499.419904pt;}
.y2_c00055{bottom:499.684000pt;}
.y1_c00055{bottom:509.161333pt;}
.hd_c00055{height:49.480911pt;}
.h7_c00055{height:50.408164pt;}
.h10_c00055{height:50.414513pt;}
.h8_c00055{height:51.341649pt;}
.h9_c00055{height:51.348115pt;}
.hb_c00055{height:52.281717pt;}
.hc_c00055{height:53.215319pt;}
.h4_c00055{height:54.142102pt;}
.ha_c00055{height:54.148921pt;}
.h6_c00055{height:56.942556pt;}
.hf_c00055{height:57.883330pt;}
.h3_c00055{height:58.809525pt;}
.he_c00055{height:58.816932pt;}
.h12_c00055{height:59.750534pt;}
.h5_c00055{height:60.676494pt;}
.h11_c00055{height:60.684136pt;}
.h2_c00055{height:65.333333pt;}
.h0_c00055{height:549.840000pt;}
.h1_c00055{height:550.000000pt;}
.w0_c00055{width:321.066667pt;}
.w1_c00055{width:321.333333pt;}
.x0_c00055{left:0.000000pt;}
.x68_c00055{left:15.774987pt;}
.x75_c00055{left:18.699083pt;}
.x61_c00055{left:20.353813pt;}
.x6d_c00055{left:21.520395pt;}
.x65_c00055{left:22.714699pt;}
.x5e_c00055{left:24.052459pt;}
.x4e_c00055{left:25.030869pt;}
.x48_c00055{left:27.312000pt;}
.x3f_c00055{left:28.273184pt;}
.x23_c00055{left:30.205699pt;}
.xd_c00055{left:31.780517pt;}
.x3_c00055{left:32.913333pt;}
.x78_c00055{left:34.512469pt;}
.x7f_c00055{left:36.055584pt;}
.x69_c00055{left:41.793355pt;}
.x4_c00055{left:47.585333pt;}
.x44_c00055{left:48.874035pt;}
.x6f_c00055{left:49.837323pt;}
.x49_c00055{left:51.064331pt;}
.x1e_c00055{left:52.389328pt;}
.x2a_c00055{left:57.807619pt;}
.x62_c00055{left:58.833493pt;}
.x45_c00055{left:60.848344pt;}
.x66_c00055{left:63.386176pt;}
.x37_c00055{left:65.211733pt;}
.x6a_c00055{left:67.334517pt;}
.xe_c00055{left:72.253000pt;}
.x2b_c00055{left:74.371909pt;}
.x31_c00055{left:76.113336pt;}
.x63_c00055{left:77.404160pt;}
.x4f_c00055{left:78.706923pt;}
.x38_c00055{left:79.622211pt;}
.x7c_c00055{left:81.399979pt;}
.x17_c00055{left:82.561477pt;}
.x24_c00055{left:84.298533pt;}
.xf_c00055{left:89.364088pt;}
.x5_c00055{left:91.733333pt;}
.x79_c00055{left:93.068096pt;}
.x6e_c00055{left:95.479083pt;}
.x40_c00055{left:96.643757pt;}
.x51_c00055{left:98.633440pt;}
.x25_c00055{left:100.754091pt;}
.x5a_c00055{left:103.351616pt;}
.x76_c00055{left:104.704907pt;}
.x6_c00055{left:107.082667pt;}
.x80_c00055{left:108.758677pt;}
.x54_c00055{left:110.273344pt;}
.x1f_c00055{left:111.894347pt;}
.x18_c00055{left:113.758464pt;}
.x2c_c00055{left:115.655291pt;}
.x39_c00055{left:117.057461pt;}
.x4a_c00055{left:120.770976pt;}
.x5b_c00055{left:124.292096pt;}
.x19_c00055{left:128.200363pt;}
.x32_c00055{left:131.398083pt;}
.x2d_c00055{left:133.658032pt;}
.x3a_c00055{left:135.292528pt;}
.x67_c00055{left:136.708949pt;}
.x26_c00055{left:138.224701pt;}
.x10_c00055{left:139.300067pt;}
.x55_c00055{left:141.165205pt;}
.x4b_c00055{left:142.746197pt;}
.x7_c00055{left:146.462667pt;}
.x57_c00055{left:147.928245pt;}
.x33_c00055{left:149.544189pt;}
.x77_c00055{left:151.212245pt;}
.x1_c00055{left:152.880000pt;}
.x41_c00055{left:154.019373pt;}
.x73_c00055{left:155.080160pt;}
.x46_c00055{left:161.521667pt;}
.x8_c00055{left:162.793333pt;}
.x11_c00055{left:164.682699pt;}
.x20_c00055{left:166.589491pt;}
.x7d_c00055{left:168.266645pt;}
.x2e_c00055{left:169.492872pt;}
.x1a_c00055{left:171.883344pt;}
.x52_c00055{left:172.786795pt;}
.x7a_c00055{left:176.463445pt;}
.x2_c00055{left:184.320000pt;}
.x34_c00055{left:187.346661pt;}
.x1b_c00055{left:189.163741pt;}
.x12_c00055{left:191.330592pt;}
.x5f_c00055{left:192.429568pt;}
.x3b_c00055{left:194.870077pt;}
.x5c_c00055{left:199.292821pt;}
.x1c_c00055{left:202.920331pt;}
.x3c_c00055{left:204.004277pt;}
.x9_c00055{left:205.130667pt;}
.x64_c00055{left:208.489205pt;}
.x74_c00055{left:209.622763pt;}
.x5d_c00055{left:210.737568pt;}
.x60_c00055{left:212.358688pt;}
.x27_c00055{left:213.383256pt;}
.xa_c00055{left:217.300000pt;}
.x6b_c00055{left:218.705813pt;}
.x58_c00055{left:221.020469pt;}
.x70_c00055{left:222.649472pt;}
.x56_c00055{left:224.910539pt;}
.x13_c00055{left:227.345981pt;}
.x7b_c00055{left:228.480693pt;}
.x2f_c00055{left:231.393301pt;}
.x47_c00055{left:232.763715pt;}
.x71_c00055{left:235.101781pt;}
.x42_c00055{left:236.268280pt;}
.x14_c00055{left:238.373381pt;}
.x35_c00055{left:240.177365pt;}
.x3d_c00055{left:241.192909pt;}
.x4c_c00055{left:245.383008pt;}
.x21_c00055{left:248.020315pt;}
.x28_c00055{left:250.455248pt;}
.x6c_c00055{left:252.439851pt;}
.x72_c00055{left:254.692853pt;}
.x50_c00055{left:256.361333pt;}
.x36_c00055{left:258.408781pt;}
.x7e_c00055{left:259.519979pt;}
.x29_c00055{left:262.585928pt;}
.x15_c00055{left:263.662680pt;}
.x59_c00055{left:267.933024pt;}
.x43_c00055{left:268.862555pt;}
.x53_c00055{left:269.891787pt;}
.xb_c00055{left:273.232000pt;}
.x4d_c00055{left:274.568192pt;}
.x3e_c00055{left:275.628760pt;}
.x1d_c00055{left:277.733632pt;}
.x30_c00055{left:279.001104pt;}
.x16_c00055{left:279.977792pt;}
.x22_c00055{left:282.340080pt;}
.xc_c00055{left:284.810667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00056 {
    display:none;
  }
  .loading-indicator_c00056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00056 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00056 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00056" -> "#page-container .classname_c00056")
 */
.pf_c00056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00056 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00056 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00056 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00056 {overflow:visible;}
  }
}
.c_c00056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00056 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00056:after { /* webkit #35443 */
  content: '';
}
.t_c00056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00056 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00056 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00056 { /* info for Javascript */
  display:none;
}
.l_c00056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00056:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00056 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00056.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m67_c00056{transform:matrix(0.063495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063495,0.000000,0.000000,0.250000,0,0);}
.mb1_c00056{transform:matrix(0.090510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090510,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.098420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098420,0.000000,0.000000,0.250000,0,0);}
.mb4_c00056{transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.133327,-0.001467,0.002750,0.249985,0,0);-ms-transform:matrix(0.133327,-0.001467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.133327,-0.001467,0.002750,0.249985,0,0);}
.m65_c00056{transform:matrix(0.142155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142155,0.000000,0.000000,0.250000,0,0);}
.m90_c00056{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{transform:matrix(0.144276,-0.001587,0.002750,0.249985,0,0);-ms-transform:matrix(0.144276,-0.001587,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144276,-0.001587,0.002750,0.249985,0,0);}
.m7_c00056{transform:matrix(0.144606,-0.001591,0.002750,0.249985,0,0);-ms-transform:matrix(0.144606,-0.001591,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144606,-0.001591,0.002750,0.249985,0,0);}
.m94_c00056{transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.154516,-0.001700,0.002750,0.249985,0,0);-ms-transform:matrix(0.154516,-0.001700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154516,-0.001700,0.002750,0.249985,0,0);}
.m32_c00056{transform:matrix(0.154966,-0.001705,0.002750,0.249985,0,0);-ms-transform:matrix(0.154966,-0.001705,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154966,-0.001705,0.002750,0.249985,0,0);}
.m13_c00056{transform:matrix(0.155471,-0.001710,0.002750,0.249985,0,0);-ms-transform:matrix(0.155471,-0.001710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155471,-0.001710,0.002750,0.249985,0,0);}
.ma0_c00056{transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);}
.m95_c00056{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.maa_c00056{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.158385,-0.001742,0.002750,0.249985,0,0);-ms-transform:matrix(0.158385,-0.001742,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158385,-0.001742,0.002750,0.249985,0,0);}
.mc6_c00056{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.159590,-0.001755,0.002750,0.249985,0,0);-ms-transform:matrix(0.159590,-0.001755,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159590,-0.001755,0.002750,0.249985,0,0);}
.m63_c00056{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(0.160895,-0.001770,0.002750,0.249985,0,0);-ms-transform:matrix(0.160895,-0.001770,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160895,-0.001770,0.002750,0.249985,0,0);}
.maf_c00056{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.161405,-0.001775,0.002750,0.249985,0,0);-ms-transform:matrix(0.161405,-0.001775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161405,-0.001775,0.002750,0.249985,0,0);}
.m16_c00056{transform:matrix(0.161530,-0.001777,0.002750,0.249985,0,0);-ms-transform:matrix(0.161530,-0.001777,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161530,-0.001777,0.002750,0.249985,0,0);}
.m60_c00056{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.162470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162470,0.000000,0.000000,0.250000,0,0);}
.mdb_c00056{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.mac_c00056{transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.165635,-0.001822,0.002750,0.249985,0,0);-ms-transform:matrix(0.165635,-0.001822,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165635,-0.001822,0.002750,0.249985,0,0);}
.m8_c00056{transform:matrix(0.165860,-0.001824,0.002750,0.249985,0,0);-ms-transform:matrix(0.165860,-0.001824,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165860,-0.001824,0.002750,0.249985,0,0);}
.m4_c00056{transform:matrix(0.166040,-0.001826,0.002750,0.249985,0,0);-ms-transform:matrix(0.166040,-0.001826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166040,-0.001826,0.002750,0.249985,0,0);}
.m3_c00056{transform:matrix(0.166185,-0.001828,0.002750,0.249985,0,0);-ms-transform:matrix(0.166185,-0.001828,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166185,-0.001828,0.002750,0.249985,0,0);}
.m1a_c00056{transform:matrix(0.166430,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166430,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166430,-0.001831,0.002750,0.249985,0,0);}
.m6c_c00056{transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);}
.mae_c00056{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.mc0_c00056{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m8d_c00056{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.mad_c00056{transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);}
.me4_c00056{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.m83_c00056{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.md8_c00056{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.171830,-0.001890,0.002750,0.249985,0,0);-ms-transform:matrix(0.171830,-0.001890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171830,-0.001890,0.002750,0.249985,0,0);}
.m9_c00056{transform:matrix(0.173355,-0.001907,0.002750,0.249985,0,0);-ms-transform:matrix(0.173355,-0.001907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173355,-0.001907,0.002750,0.249985,0,0);}
.ma1_c00056{transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);}
.mb5_c00056{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.175604,-0.001932,0.002750,0.249985,0,0);-ms-transform:matrix(0.175604,-0.001932,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175604,-0.001932,0.002750,0.249985,0,0);}
.mc8_c00056{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.mb2_c00056{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.175974,-0.001936,0.002750,0.249985,0,0);-ms-transform:matrix(0.175974,-0.001936,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175974,-0.001936,0.002750,0.249985,0,0);}
.mbc_c00056{transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);}
.med_c00056{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.178179,-0.001960,0.002750,0.249985,0,0);-ms-transform:matrix(0.178179,-0.001960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178179,-0.001960,0.002750,0.249985,0,0);}
.m7f_c00056{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.me1_c00056{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.mb7_c00056{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.mf5_c00056{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.179769,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179769,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179769,-0.001977,0.002750,0.249985,0,0);}
.mba_c00056{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.md7_c00056{transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{transform:matrix(0.181424,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181424,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181424,-0.001996,0.002750,0.249985,0,0);}
.m85_c00056{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);-ms-transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);}
.m8b_c00056{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.mab_c00056{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.m9b_c00056{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.m69_c00056{transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.183569,-0.002019,0.002750,0.249985,0,0);-ms-transform:matrix(0.183569,-0.002019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183569,-0.002019,0.002750,0.249985,0,0);}
.m96_c00056{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.183954,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183954,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183954,-0.002023,0.002750,0.249985,0,0);}
.m44_c00056{transform:matrix(0.184604,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184604,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184604,-0.002031,0.002750,0.249985,0,0);}
.m6_c00056{transform:matrix(0.185754,-0.002043,0.002750,0.249985,0,0);-ms-transform:matrix(0.185754,-0.002043,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185754,-0.002043,0.002750,0.249985,0,0);}
.m1_c00056{transform:matrix(0.185929,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185929,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185929,-0.002045,0.002750,0.249985,0,0);}
.m6b_c00056{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.mef_c00056{transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);}
.md6_c00056{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.mbf_c00056{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m31_c00056{transform:matrix(0.187404,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187404,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187404,-0.002061,0.002750,0.249985,0,0);}
.md_c00056{transform:matrix(0.187649,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187649,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187649,-0.002064,0.002750,0.249985,0,0);}
.m50_c00056{transform:matrix(0.187704,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187704,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187704,-0.002065,0.002750,0.249985,0,0);}
.mf3_c00056{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.188749,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188749,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188749,-0.002076,0.002750,0.249985,0,0);}
.m21_c00056{transform:matrix(0.188899,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188899,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188899,-0.002078,0.002750,0.249985,0,0);}
.m99_c00056{transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);}
.mde_c00056{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.190493,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190493,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190493,-0.002095,0.002750,0.249985,0,0);}
.mda_c00056{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00056{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.mee_c00056{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{transform:matrix(0.191308,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191308,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191308,-0.002104,0.002750,0.249985,0,0);}
.m14_c00056{transform:matrix(0.191718,-0.002109,0.002750,0.249985,0,0);-ms-transform:matrix(0.191718,-0.002109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191718,-0.002109,0.002750,0.249985,0,0);}
.m6a_c00056{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m34_c00056{transform:matrix(0.191878,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191878,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191878,-0.002111,0.002750,0.249985,0,0);}
.m17_c00056{transform:matrix(0.192508,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192508,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192508,-0.002118,0.002750,0.249985,0,0);}
.m91_c00056{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.mc9_c00056{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.ma4_c00056{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m88_c00056{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);}
.mf6_c00056{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.m9c_c00056{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.mc5_c00056{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{transform:matrix(0.193948,-0.002133,0.002750,0.249985,0,0);-ms-transform:matrix(0.193948,-0.002133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193948,-0.002133,0.002750,0.249985,0,0);}
.mbe_c00056{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.194233,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194233,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194233,-0.002137,0.002750,0.249985,0,0);}
.m7c_c00056{transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);}
.me0_c00056{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m47_c00056{transform:matrix(0.194923,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194923,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194923,-0.002144,0.002750,0.249985,0,0);}
.m80_c00056{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.195208,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195208,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195208,-0.002147,0.002750,0.249985,0,0);}
.m2a_c00056{transform:matrix(0.195378,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195378,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195378,-0.002149,0.002750,0.249985,0,0);}
.md9_c00056{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.196403,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196403,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196403,-0.002160,0.002750,0.249985,0,0);}
.m1b_c00056{transform:matrix(0.196758,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196758,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196758,-0.002164,0.002750,0.249985,0,0);}
.m82_c00056{transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);}
.me3_c00056{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.197003,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.197003,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197003,-0.002167,0.002750,0.249985,0,0);}
.m3f_c00056{transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);}
.m5d_c00056{transform:matrix(0.197888,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197888,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197888,-0.002177,0.002750,0.249985,0,0);}
.m72_c00056{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.mf9_c00056{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m84_c00056{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.me8_c00056{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mb8_c00056{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.ma8_c00056{transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.199383,-0.002193,0.002750,0.249985,0,0);-ms-transform:matrix(0.199383,-0.002193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199383,-0.002193,0.002750,0.249985,0,0);}
.m8f_c00056{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.199638,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199638,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199638,-0.002196,0.002750,0.249985,0,0);}
.m5_c00056{transform:matrix(0.199803,-0.002198,0.002750,0.249985,0,0);-ms-transform:matrix(0.199803,-0.002198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199803,-0.002198,0.002750,0.249985,0,0);}
.ma9_c00056{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.mb3_c00056{transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(0.200733,-0.002208,0.002750,0.249985,0,0);-ms-transform:matrix(0.200733,-0.002208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200733,-0.002208,0.002750,0.249985,0,0);}
.md5_c00056{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.201018,-0.002211,0.002750,0.249985,0,0);-ms-transform:matrix(0.201018,-0.002211,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201018,-0.002211,0.002750,0.249985,0,0);}
.m5a_c00056{transform:matrix(0.201088,-0.002212,0.002750,0.249985,0,0);-ms-transform:matrix(0.201088,-0.002212,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201088,-0.002212,0.002750,0.249985,0,0);}
.mdd_c00056{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.mc4_c00056{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{transform:matrix(0.201748,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201748,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201748,-0.002219,0.002750,0.249985,0,0);}
.m8a_c00056{transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);}
.me2_c00056{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00056{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m8c_c00056{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m89_c00056{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.mc1_c00056{transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);}
.md1_c00056{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m97_c00056{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m93_c00056{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.ma5_c00056{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.206103,-0.002267,0.002750,0.249985,0,0);-ms-transform:matrix(0.206103,-0.002267,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206103,-0.002267,0.002750,0.249985,0,0);}
.mfa_c00056{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.206827,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206827,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206827,-0.002275,0.002750,0.249985,0,0);}
.m7a_c00056{transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);}
.mc3_c00056{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.207557,-0.002283,0.002750,0.249985,0,0);-ms-transform:matrix(0.207557,-0.002283,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207557,-0.002283,0.002750,0.249985,0,0);}
.mce_c00056{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.mb0_c00056{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.208072,-0.002289,0.002750,0.249985,0,0);-ms-transform:matrix(0.208072,-0.002289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208072,-0.002289,0.002750,0.249985,0,0);}
.m20_c00056{transform:matrix(0.208222,-0.002290,0.002750,0.249985,0,0);-ms-transform:matrix(0.208222,-0.002290,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208222,-0.002290,0.002750,0.249985,0,0);}
.m45_c00056{transform:matrix(0.208792,-0.002297,0.002750,0.249985,0,0);-ms-transform:matrix(0.208792,-0.002297,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208792,-0.002297,0.002750,0.249985,0,0);}
.m59_c00056{transform:matrix(0.209457,-0.002304,0.002750,0.249985,0,0);-ms-transform:matrix(0.209457,-0.002304,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209457,-0.002304,0.002750,0.249985,0,0);}
.m79_c00056{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.209662,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209662,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209662,-0.002306,0.002750,0.249985,0,0);}
.mf4_c00056{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00056{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.mdc_c00056{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.me5_c00056{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(0.211022,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.211022,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211022,-0.002321,0.002750,0.249985,0,0);}
.ma7_c00056{transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.211412,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211412,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211412,-0.002326,0.002750,0.249985,0,0);}
.md2_c00056{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.212062,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212062,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212062,-0.002333,0.002750,0.249985,0,0);}
.m86_c00056{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.mf7_c00056{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.212482,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212482,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212482,-0.002337,0.002750,0.249985,0,0);}
.m42_c00056{transform:matrix(0.212572,-0.002338,0.002750,0.249985,0,0);-ms-transform:matrix(0.212572,-0.002338,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212572,-0.002338,0.002750,0.249985,0,0);}
.m56_c00056{transform:matrix(0.212672,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212672,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212672,-0.002339,0.002750,0.249985,0,0);}
.ma_c00056{transform:matrix(0.212712,-0.002340,0.002750,0.249985,0,0);-ms-transform:matrix(0.212712,-0.002340,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212712,-0.002340,0.002750,0.249985,0,0);}
.m4a_c00056{transform:matrix(0.212727,-0.002340,0.002750,0.249985,0,0);-ms-transform:matrix(0.212727,-0.002340,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212727,-0.002340,0.002750,0.249985,0,0);}
.m7e_c00056{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.mb9_c00056{transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.213222,-0.002345,0.002750,0.249985,0,0);-ms-transform:matrix(0.213222,-0.002345,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213222,-0.002345,0.002750,0.249985,0,0);}
.mcb_c00056{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.213907,-0.002353,0.002750,0.249985,0,0);-ms-transform:matrix(0.213907,-0.002353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213907,-0.002353,0.002750,0.249985,0,0);}
.mc2_c00056{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00056{transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);}
.m87_c00056{transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.mbb_c00056{transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.216157,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216157,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216157,-0.002378,0.002750,0.249985,0,0);}
.mc7_c00056{transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.217527,-0.002393,0.002750,0.249985,0,0);-ms-transform:matrix(0.217527,-0.002393,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217527,-0.002393,0.002750,0.249985,0,0);}
.mec_c00056{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m9d_c00056{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.ma2_c00056{transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.218282,-0.002401,0.002750,0.249985,0,0);-ms-transform:matrix(0.218282,-0.002401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218282,-0.002401,0.002750,0.249985,0,0);}
.md4_c00056{transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.219392,-0.002413,0.002750,0.249985,0,0);-ms-transform:matrix(0.219392,-0.002413,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219392,-0.002413,0.002750,0.249985,0,0);}
.mc_c00056{transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);}
.m6d_c00056{transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);}
.md0_c00056{transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);}
.mdf_c00056{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.mca_c00056{transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.221837,-0.002440,0.002750,0.249985,0,0);-ms-transform:matrix(0.221837,-0.002440,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221837,-0.002440,0.002750,0.249985,0,0);}
.m9e_c00056{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00056{transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);}
.mea_c00056{transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.224501,-0.002470,0.002750,0.249985,0,0);-ms-transform:matrix(0.224501,-0.002470,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224501,-0.002470,0.002750,0.249985,0,0);}
.m26_c00056{transform:matrix(0.225966,-0.002486,0.002750,0.249985,0,0);-ms-transform:matrix(0.225966,-0.002486,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225966,-0.002486,0.002750,0.249985,0,0);}
.m9a_c00056{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.226196,-0.002488,0.002750,0.249985,0,0);-ms-transform:matrix(0.226196,-0.002488,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226196,-0.002488,0.002750,0.249985,0,0);}
.m3c_c00056{transform:matrix(0.227066,-0.002498,0.002750,0.249985,0,0);-ms-transform:matrix(0.227066,-0.002498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227066,-0.002498,0.002750,0.249985,0,0);}
.mcd_c00056{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00056{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.me7_c00056{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);}
.mf1_c00056{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.md3_c00056{transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);}
.mb6_c00056{transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);}
.m3e_c00056{transform:matrix(0.232606,-0.002559,0.002750,0.249985,0,0);-ms-transform:matrix(0.232606,-0.002559,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232606,-0.002559,0.002750,0.249985,0,0);}
.mf2_c00056{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);}
.mf0_c00056{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{transform:matrix(0.237146,-0.002609,0.002750,0.249985,0,0);-ms-transform:matrix(0.237146,-0.002609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237146,-0.002609,0.002750,0.249985,0,0);}
.m76_c00056{transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);}
.m68_c00056{transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);}
.me6_c00056{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.mcf_c00056{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.mfb_c00056{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.247950,-0.002727,0.002750,0.249985,0,0);-ms-transform:matrix(0.247950,-0.002727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247950,-0.002727,0.002750,0.249985,0,0);}
.m74_c00056{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.meb_c00056{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.me9_c00056{transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.255400,-0.002809,0.002750,0.249985,0,0);-ms-transform:matrix(0.255400,-0.002809,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255400,-0.002809,0.002750,0.249985,0,0);}
.m4d_c00056{transform:matrix(0.267654,-0.002944,0.002750,0.249985,0,0);-ms-transform:matrix(0.267654,-0.002944,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267654,-0.002944,0.002750,0.249985,0,0);}
.mf8_c00056{transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.315081,-0.003466,0.002750,0.249985,0,0);-ms-transform:matrix(0.315081,-0.003466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.315081,-0.003466,0.002750,0.249985,0,0);}
.m78_c00056{transform:matrix(0.331170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331170,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.358643,-0.003945,0.002750,0.249985,0,0);-ms-transform:matrix(0.358643,-0.003945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.358643,-0.003945,0.002750,0.249985,0,0);}
.m4c_c00056{transform:matrix(0.482306,-0.005305,0.002750,0.249985,0,0);-ms-transform:matrix(0.482306,-0.005305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.482306,-0.005305,0.002750,0.249985,0,0);}
.mbd_c00056{transform:matrix(0.550005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550005,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
.fc0_c00056{color:transparent;}
.fsc_c00056{font-size:54.600000px;}
.fs12_c00056{font-size:55.650000px;}
.fs2_c00056{font-size:57.753494px;}
.fsb_c00056{font-size:58.800000px;}
.fs5_c00056{font-size:58.803557px;}
.fsd_c00056{font-size:59.850000px;}
.fse_c00056{font-size:60.900000px;}
.fs8_c00056{font-size:60.903684px;}
.fs9_c00056{font-size:61.953748px;}
.fs11_c00056{font-size:64.050000px;}
.fs6_c00056{font-size:64.053875px;}
.fsa_c00056{font-size:66.150000px;}
.fs3_c00056{font-size:67.204065px;}
.fsf_c00056{font-size:68.250000px;}
.fs4_c00056{font-size:68.254129px;}
.fs10_c00056{font-size:69.300000px;}
.fs7_c00056{font-size:69.304193px;}
.fs1_c00056{font-size:71.404320px;}
.fs0_c00056{font-size:126.000000px;}
.y0_c00056{bottom:0.000000px;}
.y8a_c00056{bottom:37.408500px;}
.y89_c00056{bottom:51.051000px;}
.y88_c00056{bottom:52.123500px;}
.y87_c00056{bottom:52.621500px;}
.y86_c00056{bottom:52.861500px;}
.y85_c00056{bottom:54.217500px;}
.y84_c00056{bottom:54.984000px;}
.y83_c00056{bottom:55.594500px;}
.y82_c00056{bottom:56.137500px;}
.y81_c00056{bottom:56.701500px;}
.y80_c00056{bottom:70.341000px;}
.y7f_c00056{bottom:88.497000px;}
.y7e_c00056{bottom:105.238500px;}
.y7d_c00056{bottom:122.788500px;}
.y7c_c00056{bottom:137.619000px;}
.y7b_c00056{bottom:138.144000px;}
.y7a_c00056{bottom:138.381000px;}
.y79_c00056{bottom:139.126500px;}
.y78_c00056{bottom:139.900500px;}
.y77_c00056{bottom:140.403000px;}
.y76_c00056{bottom:140.607000px;}
.y75_c00056{bottom:140.941500px;}
.y74_c00056{bottom:157.203000px;}
.y73_c00056{bottom:173.673000px;}
.y72_c00056{bottom:189.901500px;}
.y71_c00056{bottom:206.155500px;}
.y70_c00056{bottom:223.197000px;}
.y6f_c00056{bottom:240.028500px;}
.y6e_c00056{bottom:257.487000px;}
.y6d_c00056{bottom:274.497000px;}
.y6c_c00056{bottom:291.628500px;}
.y6b_c00056{bottom:308.937000px;}
.y6a_c00056{bottom:325.465500px;}
.y63_c00056{bottom:339.663000px;}
.y64_c00056{bottom:340.683000px;}
.y65_c00056{bottom:341.248500px;}
.y66_c00056{bottom:341.713500px;}
.y67_c00056{bottom:342.076500px;}
.y68_c00056{bottom:342.415500px;}
.y69_c00056{bottom:343.783500px;}
.y62_c00056{bottom:356.656500px;}
.y61_c00056{bottom:374.472204px;}
.y5f_c00056{bottom:374.472707px;}
.y60_c00056{bottom:374.472897px;}
.y5e_c00056{bottom:374.473220px;}
.y5c_c00056{bottom:374.473403px;}
.y5d_c00056{bottom:374.473476px;}
.y5b_c00056{bottom:391.843727px;}
.y5a_c00056{bottom:391.843776px;}
.y58_c00056{bottom:391.844156px;}
.y59_c00056{bottom:391.844512px;}
.y57_c00056{bottom:391.844712px;}
.y56_c00056{bottom:391.845418px;}
.y54_c00056{bottom:391.845515px;}
.y55_c00056{bottom:391.845572px;}
.y53_c00056{bottom:408.917305px;}
.y52_c00056{bottom:408.917832px;}
.y51_c00056{bottom:408.918058px;}
.y50_c00056{bottom:408.918075px;}
.y4f_c00056{bottom:408.918678px;}
.y4b_c00056{bottom:408.919153px;}
.y4e_c00056{bottom:408.919328px;}
.y4d_c00056{bottom:408.919734px;}
.y4c_c00056{bottom:408.919840px;}
.y46_c00056{bottom:425.655908px;}
.y47_c00056{bottom:425.656055px;}
.y45_c00056{bottom:425.656224px;}
.y4a_c00056{bottom:425.656395px;}
.y44_c00056{bottom:425.656480px;}
.y41_c00056{bottom:425.656623px;}
.y48_c00056{bottom:425.656638px;}
.y49_c00056{bottom:425.656771px;}
.y43_c00056{bottom:425.656830px;}
.y42_c00056{bottom:425.657056px;}
.y38_c00056{bottom:439.825001px;}
.y39_c00056{bottom:440.081899px;}
.y3a_c00056{bottom:440.920794px;}
.y3b_c00056{bottom:441.377581px;}
.y3c_c00056{bottom:441.613497px;}
.y3d_c00056{bottom:441.828726px;}
.y3e_c00056{bottom:442.633853px;}
.y3f_c00056{bottom:442.926351px;}
.y40_c00056{bottom:443.549521px;}
.y34_c00056{bottom:458.238057px;}
.y33_c00056{bottom:458.238434px;}
.y35_c00056{bottom:458.238607px;}
.y32_c00056{bottom:458.238676px;}
.y31_c00056{bottom:458.239143px;}
.y36_c00056{bottom:458.239161px;}
.y37_c00056{bottom:458.239292px;}
.y29_c00056{bottom:476.512854px;}
.y2b_c00056{bottom:476.513044px;}
.y2a_c00056{bottom:476.513241px;}
.y2f_c00056{bottom:476.513666px;}
.y30_c00056{bottom:476.513709px;}
.y2d_c00056{bottom:476.513745px;}
.y2c_c00056{bottom:476.513778px;}
.y2e_c00056{bottom:476.514329px;}
.y21_c00056{bottom:490.316729px;}
.y22_c00056{bottom:490.678826px;}
.y23_c00056{bottom:491.072333px;}
.y24_c00056{bottom:491.283801px;}
.y25_c00056{bottom:492.115668px;}
.y26_c00056{bottom:492.463925px;}
.y27_c00056{bottom:493.126406px;}
.y28_c00056{bottom:494.247819px;}
.y19_c00056{bottom:508.137873px;}
.y1a_c00056{bottom:508.662695px;}
.y1b_c00056{bottom:508.799567px;}
.y1c_c00056{bottom:509.381490px;}
.y1d_c00056{bottom:509.544117px;}
.y1e_c00056{bottom:509.692902px;}
.y1f_c00056{bottom:510.573648px;}
.y20_c00056{bottom:510.794417px;}
.y12_c00056{bottom:524.340414px;}
.y13_c00056{bottom:524.729446px;}
.y14_c00056{bottom:525.473151px;}
.y15_c00056{bottom:526.020261px;}
.y16_c00056{bottom:526.854180px;}
.y17_c00056{bottom:527.899522px;}
.y18_c00056{bottom:528.207891px;}
.yc_c00056{bottom:540.274699px;}
.yd_c00056{bottom:541.899991px;}
.ye_c00056{bottom:542.909235px;}
.yf_c00056{bottom:543.212213px;}
.y10_c00056{bottom:544.520013px;}
.y11_c00056{bottom:544.900359px;}
.y2_c00056{bottom:559.711500px;}
.y3_c00056{bottom:559.945982px;}
.y4_c00056{bottom:560.079648px;}
.y5_c00056{bottom:560.474542px;}
.y6_c00056{bottom:560.969988px;}
.y7_c00056{bottom:561.101476px;}
.y8_c00056{bottom:561.923688px;}
.y9_c00056{bottom:562.176716px;}
.ya_c00056{bottom:562.637033px;}
.yb_c00056{bottom:562.859766px;}
.y1_c00056{bottom:572.533500px;}
.he_c00056{height:54.600000px;}
.h14_c00056{height:55.650000px;}
.h4_c00056{height:57.753494px;}
.hd_c00056{height:58.800000px;}
.h7_c00056{height:58.803557px;}
.hf_c00056{height:59.850000px;}
.h10_c00056{height:60.900000px;}
.ha_c00056{height:60.903684px;}
.hb_c00056{height:61.953748px;}
.h13_c00056{height:64.050000px;}
.h8_c00056{height:64.053875px;}
.hc_c00056{height:66.150000px;}
.h5_c00056{height:67.204065px;}
.h11_c00056{height:68.250000px;}
.h6_c00056{height:68.254129px;}
.h12_c00056{height:69.300000px;}
.h9_c00056{height:69.304193px;}
.h3_c00056{height:71.404320px;}
.h2_c00056{height:126.000000px;}
.h0_c00056{height:618.570000px;}
.h1_c00056{height:618.750000px;}
.w0_c00056{width:361.200000px;}
.w1_c00056{width:361.500000px;}
.x0_c00056{left:0.000000px;}
.xc_c00056{left:16.766916px;}
.x2_c00056{left:23.899500px;}
.x3f_c00056{left:25.380000px;}
.x61_c00056{left:26.730000px;}
.x7b_c00056{left:28.389000px;}
.x6b_c00056{left:34.957500px;}
.x40_c00056{left:41.580000px;}
.x2c_c00056{left:43.072086px;}
.x3_c00056{left:45.216000px;}
.x57_c00056{left:46.440000px;}
.x2e_c00056{left:47.518278px;}
.x4e_c00056{left:49.140000px;}
.x12_c00056{left:50.418964px;}
.x66_c00056{left:52.650000px;}
.x28_c00056{left:55.080839px;}
.x4_c00056{left:57.367500px;}
.x4b_c00056{left:62.100000px;}
.x3a_c00056{left:64.257184px;}
.x18_c00056{left:68.165824px;}
.x37_c00056{left:71.549272px;}
.x46_c00056{left:72.630000px;}
.x23_c00056{left:74.251662px;}
.x2f_c00056{left:76.410276px;}
.x1f_c00056{left:77.918475px;}
.x19_c00056{left:79.517692px;}
.x41_c00056{left:82.350000px;}
.x7c_c00056{left:83.764500px;}
.x78_c00056{left:85.861500px;}
.x5f_c00056{left:92.070000px;}
.x5_c00056{left:93.267000px;}
.x5d_c00056{left:94.500000px;}
.x29_c00056{left:97.472970px;}
.x4f_c00056{left:98.550000px;}
.x13_c00056{left:100.026286px;}
.x64_c00056{left:101.250000px;}
.xd_c00056{left:102.331392px;}
.x58_c00056{left:106.110000px;}
.x79_c00056{left:107.461500px;}
.x52_c00056{left:109.080000px;}
.x62_c00056{left:112.590000px;}
.x2a_c00056{left:114.213500px;}
.x38_c00056{left:116.371701px;}
.x3b_c00056{left:119.340850px;}
.x6c_c00056{left:121.654500px;}
.x24_c00056{left:123.124569px;}
.x47_c00056{left:126.900000px;}
.x1a_c00056{left:128.055664px;}
.x50_c00056{left:134.460000px;}
.x14_c00056{left:136.534686px;}
.x6_c00056{left:138.307500px;}
.x1b_c00056{left:141.612516px;}
.x4c_c00056{left:142.830000px;}
.x53_c00056{left:144.180000px;}
.x71_c00056{left:145.261500px;}
.x30_c00056{left:146.614274px;}
.x44_c00056{left:149.217000px;}
.x7_c00056{left:150.261000px;}
.x20_c00056{left:152.446516px;}
.x1c_c00056{left:154.047384px;}
.xe_c00056{left:155.485222px;}
.x1_c00056{left:157.140000px;}
.x31_c00056{left:162.274671px;}
.x48_c00056{left:164.160000px;}
.x59_c00056{left:165.240000px;}
.x2d_c00056{left:167.779461px;}
.xf_c00056{left:171.436320px;}
.x21_c00056{left:177.287191px;}
.x32_c00056{left:178.475135px;}
.x74_c00056{left:180.361500px;}
.x54_c00056{left:182.790000px;}
.x6d_c00056{left:186.181500px;}
.x67_c00056{left:187.920000px;}
.x15_c00056{left:192.161244px;}
.x63_c00056{left:195.750000px;}
.x25_c00056{left:198.729210px;}
.x42_c00056{left:200.880000px;}
.x39_c00056{left:202.777662px;}
.x3c_c00056{left:207.905575px;}
.x5a_c00056{left:208.980000px;}
.x55_c00056{left:212.490000px;}
.x51_c00056{left:214.110000px;}
.x3e_c00056{left:217.087251px;}
.x7d_c00056{left:220.432500px;}
.x45_c00056{left:222.129000px;}
.x8_c00056{left:225.007500px;}
.x1d_c00056{left:227.432575px;}
.x5b_c00056{left:228.960000px;}
.x33_c00056{left:230.858471px;}
.x75_c00056{left:232.201500px;}
.x49_c00056{left:235.170000px;}
.x68_c00056{left:237.600000px;}
.x10_c00056{left:240.275764px;}
.x1e_c00056{left:245.865877px;}
.x9_c00056{left:248.010000px;}
.x56_c00056{left:253.530000px;}
.x7e_c00056{left:257.391000px;}
.x26_c00056{left:258.403437px;}
.x11_c00056{left:260.259999px;}
.x16_c00056{left:261.825675px;}
.x4d_c00056{left:262.980000px;}
.x34_c00056{left:265.961211px;}
.x6e_c00056{left:267.970500px;}
.x4a_c00056{left:269.190000px;}
.x27_c00056{left:271.363504px;}
.x76_c00056{left:272.431500px;}
.x70_c00056{left:276.481500px;}
.x2b_c00056{left:277.572750px;}
.x43_c00056{left:279.180000px;}
.x69_c00056{left:280.800000px;}
.x17_c00056{left:282.358267px;}
.x72_c00056{left:284.851500px;}
.x7a_c00056{left:286.741500px;}
.x5e_c00056{left:288.360000px;}
.xa_c00056{left:289.857000px;}
.x35_c00056{left:291.612813px;}
.x3d_c00056{left:295.390168px;}
.x60_c00056{left:297.810000px;}
.x65_c00056{left:301.320000px;}
.x73_c00056{left:302.941500px;}
.x22_c00056{left:304.682484px;}
.x5c_c00056{left:306.450000px;}
.x36_c00056{left:308.353342px;}
.xb_c00056{left:310.105500px;}
.x6f_c00056{left:311.682000px;}
.x6a_c00056{left:313.200000px;}
.x77_c00056{left:319.681500px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fsc_c00056{font-size:48.533333pt;}
.fs12_c00056{font-size:49.466667pt;}
.fs2_c00056{font-size:51.336439pt;}
.fsb_c00056{font-size:52.266667pt;}
.fs5_c00056{font-size:52.269829pt;}
.fsd_c00056{font-size:53.200000pt;}
.fse_c00056{font-size:54.133333pt;}
.fs8_c00056{font-size:54.136608pt;}
.fs9_c00056{font-size:55.069998pt;}
.fs11_c00056{font-size:56.933333pt;}
.fs6_c00056{font-size:56.936778pt;}
.fsa_c00056{font-size:58.800000pt;}
.fs3_c00056{font-size:59.736947pt;}
.fsf_c00056{font-size:60.666667pt;}
.fs4_c00056{font-size:60.670337pt;}
.fs10_c00056{font-size:61.600000pt;}
.fs7_c00056{font-size:61.603727pt;}
.fs1_c00056{font-size:63.470506pt;}
.fs0_c00056{font-size:112.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y8a_c00056{bottom:33.252000pt;}
.y89_c00056{bottom:45.378667pt;}
.y88_c00056{bottom:46.332000pt;}
.y87_c00056{bottom:46.774667pt;}
.y86_c00056{bottom:46.988000pt;}
.y85_c00056{bottom:48.193333pt;}
.y84_c00056{bottom:48.874667pt;}
.y83_c00056{bottom:49.417333pt;}
.y82_c00056{bottom:49.900000pt;}
.y81_c00056{bottom:50.401333pt;}
.y80_c00056{bottom:62.525333pt;}
.y7f_c00056{bottom:78.664000pt;}
.y7e_c00056{bottom:93.545333pt;}
.y7d_c00056{bottom:109.145333pt;}
.y7c_c00056{bottom:122.328000pt;}
.y7b_c00056{bottom:122.794667pt;}
.y7a_c00056{bottom:123.005333pt;}
.y79_c00056{bottom:123.668000pt;}
.y78_c00056{bottom:124.356000pt;}
.y77_c00056{bottom:124.802667pt;}
.y76_c00056{bottom:124.984000pt;}
.y75_c00056{bottom:125.281333pt;}
.y74_c00056{bottom:139.736000pt;}
.y73_c00056{bottom:154.376000pt;}
.y72_c00056{bottom:168.801333pt;}
.y71_c00056{bottom:183.249333pt;}
.y70_c00056{bottom:198.397333pt;}
.y6f_c00056{bottom:213.358667pt;}
.y6e_c00056{bottom:228.877333pt;}
.y6d_c00056{bottom:243.997333pt;}
.y6c_c00056{bottom:259.225333pt;}
.y6b_c00056{bottom:274.610667pt;}
.y6a_c00056{bottom:289.302667pt;}
.y63_c00056{bottom:301.922667pt;}
.y64_c00056{bottom:302.829333pt;}
.y65_c00056{bottom:303.332000pt;}
.y66_c00056{bottom:303.745333pt;}
.y67_c00056{bottom:304.068000pt;}
.y68_c00056{bottom:304.369333pt;}
.y69_c00056{bottom:305.585333pt;}
.y62_c00056{bottom:317.028000pt;}
.y61_c00056{bottom:332.864181pt;}
.y5f_c00056{bottom:332.864628pt;}
.y60_c00056{bottom:332.864797pt;}
.y5e_c00056{bottom:332.865084pt;}
.y5c_c00056{bottom:332.865247pt;}
.y5d_c00056{bottom:332.865312pt;}
.y5b_c00056{bottom:348.305535pt;}
.y5a_c00056{bottom:348.305579pt;}
.y58_c00056{bottom:348.305916pt;}
.y59_c00056{bottom:348.306233pt;}
.y57_c00056{bottom:348.306411pt;}
.y56_c00056{bottom:348.307039pt;}
.y54_c00056{bottom:348.307124pt;}
.y55_c00056{bottom:348.307175pt;}
.y53_c00056{bottom:363.482049pt;}
.y52_c00056{bottom:363.482517pt;}
.y51_c00056{bottom:363.482719pt;}
.y50_c00056{bottom:363.482733pt;}
.y4f_c00056{bottom:363.483269pt;}
.y4b_c00056{bottom:363.483692pt;}
.y4e_c00056{bottom:363.483847pt;}
.y4d_c00056{bottom:363.484208pt;}
.y4c_c00056{bottom:363.484303pt;}
.y46_c00056{bottom:378.360807pt;}
.y47_c00056{bottom:378.360937pt;}
.y45_c00056{bottom:378.361088pt;}
.y4a_c00056{bottom:378.361240pt;}
.y44_c00056{bottom:378.361316pt;}
.y41_c00056{bottom:378.361443pt;}
.y48_c00056{bottom:378.361456pt;}
.y49_c00056{bottom:378.361575pt;}
.y43_c00056{bottom:378.361627pt;}
.y42_c00056{bottom:378.361828pt;}
.y38_c00056{bottom:390.955556pt;}
.y39_c00056{bottom:391.183911pt;}
.y3a_c00056{bottom:391.929595pt;}
.y3b_c00056{bottom:392.335628pt;}
.y3c_c00056{bottom:392.545331pt;}
.y3d_c00056{bottom:392.736645pt;}
.y3e_c00056{bottom:393.452313pt;}
.y3f_c00056{bottom:393.712312pt;}
.y40_c00056{bottom:394.266241pt;}
.y34_c00056{bottom:407.322717pt;}
.y33_c00056{bottom:407.323052pt;}
.y35_c00056{bottom:407.323207pt;}
.y32_c00056{bottom:407.323268pt;}
.y31_c00056{bottom:407.323683pt;}
.y36_c00056{bottom:407.323699pt;}
.y37_c00056{bottom:407.323815pt;}
.y29_c00056{bottom:423.566981pt;}
.y2b_c00056{bottom:423.567151pt;}
.y2a_c00056{bottom:423.567325pt;}
.y2f_c00056{bottom:423.567703pt;}
.y30_c00056{bottom:423.567741pt;}
.y2d_c00056{bottom:423.567773pt;}
.y2c_c00056{bottom:423.567803pt;}
.y2e_c00056{bottom:423.568292pt;}
.y21_c00056{bottom:435.837092pt;}
.y22_c00056{bottom:436.158956pt;}
.y23_c00056{bottom:436.508740pt;}
.y24_c00056{bottom:436.696712pt;}
.y25_c00056{bottom:437.436149pt;}
.y26_c00056{bottom:437.745711pt;}
.y27_c00056{bottom:438.334583pt;}
.y28_c00056{bottom:439.331395pt;}
.y19_c00056{bottom:451.678109pt;}
.y1a_c00056{bottom:452.144617pt;}
.y1b_c00056{bottom:452.266281pt;}
.y1c_c00056{bottom:452.783547pt;}
.y1d_c00056{bottom:452.928104pt;}
.y1e_c00056{bottom:453.060357pt;}
.y1f_c00056{bottom:453.843243pt;}
.y20_c00056{bottom:454.039481pt;}
.y12_c00056{bottom:466.080368pt;}
.y13_c00056{bottom:466.426175pt;}
.y14_c00056{bottom:467.087245pt;}
.y15_c00056{bottom:467.573565pt;}
.y16_c00056{bottom:468.314827pt;}
.y17_c00056{bottom:469.244020pt;}
.y18_c00056{bottom:469.518125pt;}
.yc_c00056{bottom:480.244177pt;}
.yd_c00056{bottom:481.688881pt;}
.ye_c00056{bottom:482.585987pt;}
.yf_c00056{bottom:482.855300pt;}
.y10_c00056{bottom:484.017789pt;}
.y11_c00056{bottom:484.355875pt;}
.y2_c00056{bottom:497.521333pt;}
.y3_c00056{bottom:497.729761pt;}
.y4_c00056{bottom:497.848576pt;}
.y5_c00056{bottom:498.199593pt;}
.y6_c00056{bottom:498.639989pt;}
.y7_c00056{bottom:498.756868pt;}
.y8_c00056{bottom:499.487723pt;}
.y9_c00056{bottom:499.712636pt;}
.ya_c00056{bottom:500.121807pt;}
.yb_c00056{bottom:500.319792pt;}
.y1_c00056{bottom:508.918667pt;}
.he_c00056{height:48.533333pt;}
.h14_c00056{height:49.466667pt;}
.h4_c00056{height:51.336439pt;}
.hd_c00056{height:52.266667pt;}
.h7_c00056{height:52.269829pt;}
.hf_c00056{height:53.200000pt;}
.h10_c00056{height:54.133333pt;}
.ha_c00056{height:54.136608pt;}
.hb_c00056{height:55.069998pt;}
.h13_c00056{height:56.933333pt;}
.h8_c00056{height:56.936778pt;}
.hc_c00056{height:58.800000pt;}
.h5_c00056{height:59.736947pt;}
.h11_c00056{height:60.666667pt;}
.h6_c00056{height:60.670337pt;}
.h12_c00056{height:61.600000pt;}
.h9_c00056{height:61.603727pt;}
.h3_c00056{height:63.470506pt;}
.h2_c00056{height:112.000000pt;}
.h0_c00056{height:549.840000pt;}
.h1_c00056{height:550.000000pt;}
.w0_c00056{width:321.066667pt;}
.w1_c00056{width:321.333333pt;}
.x0_c00056{left:0.000000pt;}
.xc_c00056{left:14.903925pt;}
.x2_c00056{left:21.244000pt;}
.x3f_c00056{left:22.560000pt;}
.x61_c00056{left:23.760000pt;}
.x7b_c00056{left:25.234667pt;}
.x6b_c00056{left:31.073333pt;}
.x40_c00056{left:36.960000pt;}
.x2c_c00056{left:38.286299pt;}
.x3_c00056{left:40.192000pt;}
.x57_c00056{left:41.280000pt;}
.x2e_c00056{left:42.238469pt;}
.x4e_c00056{left:43.680000pt;}
.x12_c00056{left:44.816857pt;}
.x66_c00056{left:46.800000pt;}
.x28_c00056{left:48.960745pt;}
.x4_c00056{left:50.993333pt;}
.x4b_c00056{left:55.200000pt;}
.x3a_c00056{left:57.117497pt;}
.x18_c00056{left:60.591844pt;}
.x37_c00056{left:63.599353pt;}
.x46_c00056{left:64.560000pt;}
.x23_c00056{left:66.001477pt;}
.x2f_c00056{left:67.920245pt;}
.x1f_c00056{left:69.260867pt;}
.x19_c00056{left:70.682393pt;}
.x41_c00056{left:73.200000pt;}
.x7c_c00056{left:74.457333pt;}
.x78_c00056{left:76.321333pt;}
.x5f_c00056{left:81.840000pt;}
.x5_c00056{left:82.904000pt;}
.x5d_c00056{left:84.000000pt;}
.x29_c00056{left:86.642640pt;}
.x4f_c00056{left:87.600000pt;}
.x13_c00056{left:88.912255pt;}
.x64_c00056{left:90.000000pt;}
.xd_c00056{left:90.961237pt;}
.x58_c00056{left:94.320000pt;}
.x79_c00056{left:95.521333pt;}
.x52_c00056{left:96.960000pt;}
.x62_c00056{left:100.080000pt;}
.x2a_c00056{left:101.523111pt;}
.x38_c00056{left:103.441512pt;}
.x3b_c00056{left:106.080756pt;}
.x6c_c00056{left:108.137333pt;}
.x24_c00056{left:109.444061pt;}
.x47_c00056{left:112.800000pt;}
.x1a_c00056{left:113.827257pt;}
.x50_c00056{left:119.520000pt;}
.x14_c00056{left:121.364165pt;}
.x6_c00056{left:122.940000pt;}
.x1b_c00056{left:125.877792pt;}
.x4c_c00056{left:126.960000pt;}
.x53_c00056{left:128.160000pt;}
.x71_c00056{left:129.121333pt;}
.x30_c00056{left:130.323799pt;}
.x44_c00056{left:132.637333pt;}
.x7_c00056{left:133.565333pt;}
.x20_c00056{left:135.508015pt;}
.x1c_c00056{left:136.931008pt;}
.xe_c00056{left:138.209087pt;}
.x1_c00056{left:139.680000pt;}
.x31_c00056{left:144.244152pt;}
.x48_c00056{left:145.920000pt;}
.x59_c00056{left:146.880000pt;}
.x2d_c00056{left:149.137299pt;}
.xf_c00056{left:152.387840pt;}
.x21_c00056{left:157.588615pt;}
.x32_c00056{left:158.644564pt;}
.x74_c00056{left:160.321333pt;}
.x54_c00056{left:162.480000pt;}
.x6d_c00056{left:165.494667pt;}
.x67_c00056{left:167.040000pt;}
.x15_c00056{left:170.809995pt;}
.x63_c00056{left:174.000000pt;}
.x25_c00056{left:176.648187pt;}
.x42_c00056{left:178.560000pt;}
.x39_c00056{left:180.246811pt;}
.x3c_c00056{left:184.804956pt;}
.x5a_c00056{left:185.760000pt;}
.x55_c00056{left:188.880000pt;}
.x51_c00056{left:190.320000pt;}
.x3e_c00056{left:192.966445pt;}
.x7d_c00056{left:195.940000pt;}
.x45_c00056{left:197.448000pt;}
.x8_c00056{left:200.006667pt;}
.x1d_c00056{left:202.162289pt;}
.x5b_c00056{left:203.520000pt;}
.x33_c00056{left:205.207529pt;}
.x75_c00056{left:206.401333pt;}
.x49_c00056{left:209.040000pt;}
.x68_c00056{left:211.200000pt;}
.x10_c00056{left:213.578457pt;}
.x1e_c00056{left:218.547447pt;}
.x9_c00056{left:220.453333pt;}
.x56_c00056{left:225.360000pt;}
.x7e_c00056{left:228.792000pt;}
.x26_c00056{left:229.691944pt;}
.x11_c00056{left:231.342221pt;}
.x16_c00056{left:232.733933pt;}
.x4d_c00056{left:233.760000pt;}
.x34_c00056{left:236.409965pt;}
.x6e_c00056{left:238.196000pt;}
.x4a_c00056{left:239.280000pt;}
.x27_c00056{left:241.212004pt;}
.x76_c00056{left:242.161333pt;}
.x70_c00056{left:245.761333pt;}
.x2b_c00056{left:246.731333pt;}
.x43_c00056{left:248.160000pt;}
.x69_c00056{left:249.600000pt;}
.x17_c00056{left:250.985127pt;}
.x72_c00056{left:253.201333pt;}
.x7a_c00056{left:254.881333pt;}
.x5e_c00056{left:256.320000pt;}
.xa_c00056{left:257.650667pt;}
.x35_c00056{left:259.211389pt;}
.x3d_c00056{left:262.569039pt;}
.x60_c00056{left:264.720000pt;}
.x65_c00056{left:267.840000pt;}
.x73_c00056{left:269.281333pt;}
.x22_c00056{left:270.828875pt;}
.x5c_c00056{left:272.400000pt;}
.x36_c00056{left:274.091860pt;}
.xb_c00056{left:275.649333pt;}
.x6f_c00056{left:277.050667pt;}
.x6a_c00056{left:278.400000pt;}
.x77_c00056{left:284.161333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00057 {
    display:none;
  }
  .loading-indicator_c00057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00057" -> "#page-container .classname_c00057")
 */
.pf_c00057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00057 {overflow:visible;}
  }
}
.c_c00057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00057:after { /* webkit #35443 */
  content: '';
}
.t_c00057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00057 { /* info for Javascript */
  display:none;
}
.l_c00057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00057:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00057 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00057.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00057{transform:matrix(0.078855,0.003078,-0.009752,0.249810,0,0);-ms-transform:matrix(0.078855,0.003078,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.078855,0.003078,-0.009752,0.249810,0,0);}
.m81_c00057{transform:matrix(0.117308,0.004110,-0.008753,0.249847,0,0);-ms-transform:matrix(0.117308,0.004110,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.117308,0.004110,-0.008753,0.249847,0,0);}
.m28_c00057{transform:matrix(0.143940,0.005619,-0.009752,0.249810,0,0);-ms-transform:matrix(0.143940,0.005619,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.143940,0.005619,-0.009752,0.249810,0,0);}
.m4b_c00057{transform:matrix(0.148202,0.005786,-0.009752,0.249810,0,0);-ms-transform:matrix(0.148202,0.005786,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.148202,0.005786,-0.009752,0.249810,0,0);}
.m3_c00057{transform:matrix(0.148209,0.004594,-0.007746,0.249880,0,0);-ms-transform:matrix(0.148209,0.004594,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.148209,0.004594,-0.007746,0.249880,0,0);}
.m5_c00057{transform:matrix(0.151282,0.004690,-0.007746,0.249880,0,0);-ms-transform:matrix(0.151282,0.004690,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.151282,0.004690,-0.007746,0.249880,0,0);}
.m66_c00057{transform:matrix(0.152421,0.005340,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152421,0.005340,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152421,0.005340,-0.008753,0.249847,0,0);}
.m91_c00057{transform:matrix(0.152921,0.005358,-0.008753,0.249847,0,0);-ms-transform:matrix(0.152921,0.005358,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.152921,0.005358,-0.008753,0.249847,0,0);}
.mbb_c00057{transform:matrix(0.155060,0.005433,-0.008753,0.249847,0,0);-ms-transform:matrix(0.155060,0.005433,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.155060,0.005433,-0.008753,0.249847,0,0);}
.m10_c00057{transform:matrix(0.155975,0.004835,-0.007746,0.249880,0,0);-ms-transform:matrix(0.155975,0.004835,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.155975,0.004835,-0.007746,0.249880,0,0);}
.mb9_c00057{transform:matrix(0.157848,0.005530,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157848,0.005530,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157848,0.005530,-0.008753,0.249847,0,0);}
.mce_c00057{transform:matrix(0.159777,0.005598,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159777,0.005598,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159777,0.005598,-0.008753,0.249847,0,0);}
.m9_c00057{transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160263,0.004968,-0.007746,0.249880,0,0);}
.m7b_c00057{transform:matrix(0.161556,0.005660,-0.008753,0.249847,0,0);-ms-transform:matrix(0.161556,0.005660,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.161556,0.005660,-0.008753,0.249847,0,0);}
.mc_c00057{transform:matrix(0.161577,0.005009,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161577,0.005009,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161577,0.005009,-0.007746,0.249880,0,0);}
.me2_c00057{transform:matrix(0.162175,0.005682,-0.008753,0.249847,0,0);-ms-transform:matrix(0.162175,0.005682,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.162175,0.005682,-0.008753,0.249847,0,0);}
.m0_c00057{transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);}
.mde_c00057{transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);}
.m95_c00057{transform:matrix(0.163700,0.005735,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163700,0.005735,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163700,0.005735,-0.008753,0.249847,0,0);}
.mc3_c00057{transform:matrix(0.164054,0.005748,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164054,0.005748,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164054,0.005748,-0.008753,0.249847,0,0);}
.m5f_c00057{transform:matrix(0.164125,0.006407,-0.009752,0.249810,0,0);-ms-transform:matrix(0.164125,0.006407,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.164125,0.006407,-0.009752,0.249810,0,0);}
.mec_c00057{transform:matrix(0.165129,0.005785,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165129,0.005785,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165129,0.005785,-0.008753,0.249847,0,0);}
.m7e_c00057{transform:matrix(0.165688,0.005805,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165688,0.005805,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165688,0.005805,-0.008753,0.249847,0,0);}
.mb7_c00057{transform:matrix(0.165713,0.005806,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165713,0.005806,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165713,0.005806,-0.008753,0.249847,0,0);}
.m69_c00057{transform:matrix(0.165933,0.005813,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165933,0.005813,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165933,0.005813,-0.008753,0.249847,0,0);}
.me8_c00057{transform:matrix(0.166688,0.005840,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166688,0.005840,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166688,0.005840,-0.008753,0.249847,0,0);}
.m7c_c00057{transform:matrix(0.166718,0.005841,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166718,0.005841,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166718,0.005841,-0.008753,0.249847,0,0);}
.m29_c00057{transform:matrix(0.167008,0.006520,-0.009752,0.249810,0,0);-ms-transform:matrix(0.167008,0.006520,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.167008,0.006520,-0.009752,0.249810,0,0);}
.mba_c00057{transform:matrix(0.167197,0.005858,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167197,0.005858,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167197,0.005858,-0.008753,0.249847,0,0);}
.mcb_c00057{transform:matrix(0.167622,0.005873,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167622,0.005873,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167622,0.005873,-0.008753,0.249847,0,0);}
.ma1_c00057{transform:matrix(0.168122,0.005890,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168122,0.005890,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168122,0.005890,-0.008753,0.249847,0,0);}
.m45_c00057{transform:matrix(0.168262,0.006569,-0.009752,0.249810,0,0);-ms-transform:matrix(0.168262,0.006569,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.168262,0.006569,-0.009752,0.249810,0,0);}
.m8d_c00057{transform:matrix(0.168447,0.005902,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168447,0.005902,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168447,0.005902,-0.008753,0.249847,0,0);}
.mdb_c00057{transform:matrix(0.168562,0.005906,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168562,0.005906,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168562,0.005906,-0.008753,0.249847,0,0);}
.m1_c00057{transform:matrix(0.169014,0.005239,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169014,0.005239,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169014,0.005239,-0.007746,0.249880,0,0);}
.m6f_c00057{transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169616,0.005943,-0.008753,0.249847,0,0);}
.mb5_c00057{transform:matrix(0.169726,0.005946,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169726,0.005946,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169726,0.005946,-0.008753,0.249847,0,0);}
.m64_c00057{transform:matrix(0.170006,0.005956,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170006,0.005956,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170006,0.005956,-0.008753,0.249847,0,0);}
.m9d_c00057{transform:matrix(0.170375,0.005969,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170375,0.005969,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170375,0.005969,-0.008753,0.249847,0,0);}
.med_c00057{transform:matrix(0.170430,0.005971,-0.008753,0.249847,0,0);-ms-transform:matrix(0.170430,0.005971,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.170430,0.005971,-0.008753,0.249847,0,0);}
.m48_c00057{transform:matrix(0.170875,0.006671,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170875,0.006671,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170875,0.006671,-0.009752,0.249810,0,0);}
.m51_c00057{transform:matrix(0.171324,0.006688,-0.009752,0.249810,0,0);-ms-transform:matrix(0.171324,0.006688,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.171324,0.006688,-0.009752,0.249810,0,0);}
.mb0_c00057{transform:matrix(0.171325,0.006002,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171325,0.006002,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171325,0.006002,-0.008753,0.249847,0,0);}
.m84_c00057{transform:matrix(0.172194,0.006033,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172194,0.006033,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172194,0.006033,-0.008753,0.249847,0,0);}
.mbf_c00057{transform:matrix(0.172509,0.006044,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172509,0.006044,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172509,0.006044,-0.008753,0.249847,0,0);}
.m58_c00057{transform:matrix(0.172633,0.006739,-0.009752,0.249810,0,0);-ms-transform:matrix(0.172633,0.006739,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.172633,0.006739,-0.009752,0.249810,0,0);}
.m6e_c00057{transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);}
.mea_c00057{transform:matrix(0.173264,0.006070,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173264,0.006070,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173264,0.006070,-0.008753,0.249847,0,0);}
.m20_c00057{transform:matrix(0.173322,0.005373,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173322,0.005373,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173322,0.005373,-0.007746,0.249880,0,0);}
.me_c00057{transform:matrix(0.173826,0.005389,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173826,0.005389,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173826,0.005389,-0.007746,0.249880,0,0);}
.m88_c00057{transform:matrix(0.174263,0.006105,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174263,0.006105,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174263,0.006105,-0.008753,0.249847,0,0);}
.m67_c00057{transform:matrix(0.174613,0.006118,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174613,0.006118,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174613,0.006118,-0.008753,0.249847,0,0);}
.md2_c00057{transform:matrix(0.174678,0.006120,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174678,0.006120,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174678,0.006120,-0.008753,0.249847,0,0);}
.m26_c00057{transform:matrix(0.174892,0.006828,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174892,0.006828,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174892,0.006828,-0.009752,0.249810,0,0);}
.m3f_c00057{transform:matrix(0.174922,0.006829,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174922,0.006829,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174922,0.006829,-0.009752,0.249810,0,0);}
.mef_c00057{transform:matrix(0.174978,0.006130,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174978,0.006130,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174978,0.006130,-0.008753,0.249847,0,0);}
.mb_c00057{transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175186,0.005431,-0.007746,0.249880,0,0);}
.md4_c00057{transform:matrix(0.175507,0.006149,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175507,0.006149,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175507,0.006149,-0.008753,0.249847,0,0);}
.mf1_c00057{transform:matrix(0.175752,0.006157,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175752,0.006157,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175752,0.006157,-0.008753,0.249847,0,0);}
.m33_c00057{transform:matrix(0.175871,0.006866,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175871,0.006866,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175871,0.006866,-0.009752,0.249810,0,0);}
.mdc_c00057{transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175887,0.006162,-0.008753,0.249847,0,0);}
.m44_c00057{transform:matrix(0.175906,0.006867,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175906,0.006867,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175906,0.006867,-0.009752,0.249810,0,0);}
.ma8_c00057{transform:matrix(0.176132,0.006171,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176132,0.006171,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176132,0.006171,-0.008753,0.249847,0,0);}
.m3a_c00057{transform:matrix(0.176216,0.006879,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176216,0.006879,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176216,0.006879,-0.009752,0.249810,0,0);}
.m21_c00057{transform:matrix(0.176265,0.005464,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176265,0.005464,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176265,0.005464,-0.007746,0.249880,0,0);}
.me1_c00057{transform:matrix(0.176712,0.006191,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176712,0.006191,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176712,0.006191,-0.008753,0.249847,0,0);}
.m37_c00057{transform:matrix(0.176870,0.006905,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176870,0.006905,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176870,0.006905,-0.009752,0.249810,0,0);}
.md9_c00057{transform:matrix(0.176876,0.006197,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176876,0.006197,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176876,0.006197,-0.008753,0.249847,0,0);}
.m71_c00057{transform:matrix(0.176901,0.006198,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176901,0.006198,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176901,0.006198,-0.008753,0.249847,0,0);}
.m5b_c00057{transform:matrix(0.177085,0.006913,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177085,0.006913,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177085,0.006913,-0.009752,0.249810,0,0);}
.mf0_c00057{transform:matrix(0.177201,0.006208,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177201,0.006208,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177201,0.006208,-0.008753,0.249847,0,0);}
.m31_c00057{transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);}
.mb2_c00057{transform:matrix(0.177861,0.006231,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177861,0.006231,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177861,0.006231,-0.008753,0.249847,0,0);}
.mcc_c00057{transform:matrix(0.177916,0.006233,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177916,0.006233,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177916,0.006233,-0.008753,0.249847,0,0);}
.m18_c00057{transform:matrix(0.177970,0.005517,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177970,0.005517,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177970,0.005517,-0.007746,0.249880,0,0);}
.m24_c00057{transform:matrix(0.178004,0.006949,-0.009752,0.249810,0,0);-ms-transform:matrix(0.178004,0.006949,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.178004,0.006949,-0.009752,0.249810,0,0);}
.m76_c00057{transform:matrix(0.178411,0.006251,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178411,0.006251,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178411,0.006251,-0.008753,0.249847,0,0);}
.mbc_c00057{transform:matrix(0.178580,0.006257,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178580,0.006257,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178580,0.006257,-0.008753,0.249847,0,0);}
.m14_c00057{transform:matrix(0.178754,0.005541,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178754,0.005541,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178754,0.005541,-0.007746,0.249880,0,0);}
.m6d_c00057{transform:matrix(0.179175,0.006277,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179175,0.006277,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179175,0.006277,-0.008753,0.249847,0,0);}
.mc7_c00057{transform:matrix(0.179215,0.006279,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179215,0.006279,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179215,0.006279,-0.008753,0.249847,0,0);}
.m6_c00057{transform:matrix(0.179414,0.005562,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179414,0.005562,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179414,0.005562,-0.007746,0.249880,0,0);}
.m87_c00057{transform:matrix(0.180065,0.006309,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180065,0.006309,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180065,0.006309,-0.008753,0.249847,0,0);}
.ma_c00057{transform:matrix(0.180433,0.005593,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180433,0.005593,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180433,0.005593,-0.007746,0.249880,0,0);}
.m96_c00057{transform:matrix(0.180709,0.006331,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180709,0.006331,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180709,0.006331,-0.008753,0.249847,0,0);}
.m38_c00057{transform:matrix(0.180727,0.007055,-0.009752,0.249810,0,0);-ms-transform:matrix(0.180727,0.007055,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.180727,0.007055,-0.009752,0.249810,0,0);}
.md7_c00057{transform:matrix(0.180774,0.006333,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180774,0.006333,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180774,0.006333,-0.008753,0.249847,0,0);}
.m25_c00057{transform:matrix(0.180892,0.007062,-0.009752,0.249810,0,0);-ms-transform:matrix(0.180892,0.007062,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.180892,0.007062,-0.009752,0.249810,0,0);}
.m9a_c00057{transform:matrix(0.181434,0.006357,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181434,0.006357,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181434,0.006357,-0.008753,0.249847,0,0);}
.me3_c00057{transform:matrix(0.181644,0.006364,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181644,0.006364,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181644,0.006364,-0.008753,0.249847,0,0);}
.ma7_c00057{transform:matrix(0.182118,0.006381,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182118,0.006381,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182118,0.006381,-0.008753,0.249847,0,0);}
.m5c_c00057{transform:matrix(0.182141,0.007111,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182141,0.007111,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182141,0.007111,-0.009752,0.249810,0,0);}
.m3d_c00057{transform:matrix(0.182276,0.007116,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182276,0.007116,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182276,0.007116,-0.009752,0.249810,0,0);}
.m11_c00057{transform:matrix(0.182947,0.005671,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182947,0.005671,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182947,0.005671,-0.007746,0.249880,0,0);}
.mf_c00057{transform:matrix(0.183157,0.005678,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183157,0.005678,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183157,0.005678,-0.007746,0.249880,0,0);}
.mee_c00057{transform:matrix(0.183278,0.006421,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183278,0.006421,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183278,0.006421,-0.008753,0.249847,0,0);}
.m2e_c00057{transform:matrix(0.183885,0.007179,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183885,0.007179,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183885,0.007179,-0.009752,0.249810,0,0);}
.m80_c00057{transform:matrix(0.184437,0.006462,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184437,0.006462,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184437,0.006462,-0.008753,0.249847,0,0);}
.m7d_c00057{transform:matrix(0.184682,0.006470,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184682,0.006470,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184682,0.006470,-0.008753,0.249847,0,0);}
.mb1_c00057{transform:matrix(0.185156,0.006487,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185156,0.006487,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185156,0.006487,-0.008753,0.249847,0,0);}
.m3b_c00057{transform:matrix(0.185179,0.007229,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185179,0.007229,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185179,0.007229,-0.009752,0.249810,0,0);}
.m5d_c00057{transform:matrix(0.187492,0.007320,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187492,0.007320,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187492,0.007320,-0.009752,0.249810,0,0);}
.m61_c00057{transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187517,0.007320,-0.009752,0.249810,0,0);}
.m1d_c00057{transform:matrix(0.187635,0.005817,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187635,0.005817,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187635,0.005817,-0.007746,0.249880,0,0);}
.m9b_c00057{transform:matrix(0.188045,0.006588,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188045,0.006588,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188045,0.006588,-0.008753,0.249847,0,0);}
.mbe_c00057{transform:matrix(0.188264,0.006596,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188264,0.006596,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188264,0.006596,-0.008753,0.249847,0,0);}
.m13_c00057{transform:matrix(0.188414,0.005841,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188414,0.005841,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188414,0.005841,-0.007746,0.249880,0,0);}
.md_c00057{transform:matrix(0.188579,0.005846,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188579,0.005846,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188579,0.005846,-0.007746,0.249880,0,0);}
.m65_c00057{transform:matrix(0.188944,0.006620,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188944,0.006620,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188944,0.006620,-0.008753,0.249847,0,0);}
.m7a_c00057{transform:matrix(0.189204,0.006629,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189204,0.006629,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189204,0.006629,-0.008753,0.249847,0,0);}
.ma6_c00057{transform:matrix(0.189359,0.006634,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189359,0.006634,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189359,0.006634,-0.008753,0.249847,0,0);}
.m86_c00057{transform:matrix(0.189694,0.006646,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189694,0.006646,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189694,0.006646,-0.008753,0.249847,0,0);}
.m2a_c00057{transform:matrix(0.190000,0.007417,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190000,0.007417,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190000,0.007417,-0.009752,0.249810,0,0);}
.m9f_c00057{transform:matrix(0.190168,0.006663,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190168,0.006663,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190168,0.006663,-0.008753,0.249847,0,0);}
.mf4_c00057{transform:matrix(0.190468,0.006673,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190468,0.006673,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190468,0.006673,-0.008753,0.249847,0,0);}
.me0_c00057{transform:matrix(0.190573,0.006677,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190573,0.006677,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190573,0.006677,-0.008753,0.249847,0,0);}
.meb_c00057{transform:matrix(0.190688,0.006681,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190688,0.006681,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190688,0.006681,-0.008753,0.249847,0,0);}
.mf3_c00057{transform:matrix(0.190813,0.006685,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190813,0.006685,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190813,0.006685,-0.008753,0.249847,0,0);}
.m34_c00057{transform:matrix(0.190915,0.007453,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190915,0.007453,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190915,0.007453,-0.009752,0.249810,0,0);}
.m4d_c00057{transform:matrix(0.191259,0.007467,-0.009752,0.249810,0,0);-ms-transform:matrix(0.191259,0.007467,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.191259,0.007467,-0.009752,0.249810,0,0);}
.m6a_c00057{transform:matrix(0.191283,0.006702,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191283,0.006702,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191283,0.006702,-0.008753,0.249847,0,0);}
.m27_c00057{transform:matrix(0.191504,0.007476,-0.009752,0.249810,0,0);-ms-transform:matrix(0.191504,0.007476,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.191504,0.007476,-0.009752,0.249810,0,0);}
.m1f_c00057{transform:matrix(0.192283,0.005961,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192283,0.005961,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192283,0.005961,-0.007746,0.249880,0,0);}
.m1a_c00057{transform:matrix(0.192627,0.005971,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192627,0.005971,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192627,0.005971,-0.007746,0.249880,0,0);}
.m82_c00057{transform:matrix(0.192807,0.006755,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192807,0.006755,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192807,0.006755,-0.008753,0.249847,0,0);}
.me4_c00057{transform:matrix(0.192977,0.006761,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192977,0.006761,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192977,0.006761,-0.008753,0.249847,0,0);}
.mdf_c00057{transform:matrix(0.193221,0.006770,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193221,0.006770,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193221,0.006770,-0.008753,0.249847,0,0);}
.mb3_c00057{transform:matrix(0.193276,0.006771,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193276,0.006771,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193276,0.006771,-0.008753,0.249847,0,0);}
.mc2_c00057{transform:matrix(0.193286,0.006772,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193286,0.006772,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193286,0.006772,-0.008753,0.249847,0,0);}
.md0_c00057{transform:matrix(0.193896,0.006793,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193896,0.006793,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193896,0.006793,-0.008753,0.249847,0,0);}
.m40_c00057{transform:matrix(0.193957,0.007572,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193957,0.007572,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193957,0.007572,-0.009752,0.249810,0,0);}
.md8_c00057{transform:matrix(0.194136,0.006802,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194136,0.006802,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194136,0.006802,-0.008753,0.249847,0,0);}
.m68_c00057{transform:matrix(0.194166,0.006803,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194166,0.006803,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194166,0.006803,-0.008753,0.249847,0,0);}
.m42_c00057{transform:matrix(0.194432,0.007590,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194432,0.007590,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194432,0.007590,-0.009752,0.249810,0,0);}
.m6b_c00057{transform:matrix(0.194766,0.006824,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194766,0.006824,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194766,0.006824,-0.008753,0.249847,0,0);}
.mc8_c00057{transform:matrix(0.194805,0.006825,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194805,0.006825,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194805,0.006825,-0.008753,0.249847,0,0);}
.m2_c00057{transform:matrix(0.195016,0.006046,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195016,0.006046,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195016,0.006046,-0.007746,0.249880,0,0);}
.m8a_c00057{transform:matrix(0.195330,0.006843,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195330,0.006843,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195330,0.006843,-0.008753,0.249847,0,0);}
.m3c_c00057{transform:matrix(0.195371,0.007627,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195371,0.007627,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195371,0.007627,-0.009752,0.249810,0,0);}
.m47_c00057{transform:matrix(0.195716,0.007641,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195716,0.007641,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195716,0.007641,-0.009752,0.249810,0,0);}
.m93_c00057{transform:matrix(0.195930,0.006864,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195930,0.006864,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195930,0.006864,-0.008753,0.249847,0,0);}
.m8e_c00057{transform:matrix(0.195945,0.006865,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195945,0.006865,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195945,0.006865,-0.008753,0.249847,0,0);}
.m5a_c00057{transform:matrix(0.196016,0.007652,-0.009752,0.249810,0,0);-ms-transform:matrix(0.196016,0.007652,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.196016,0.007652,-0.009752,0.249810,0,0);}
.m2b_c00057{transform:matrix(0.197085,0.007694,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197085,0.007694,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197085,0.007694,-0.009752,0.249810,0,0);}
.md5_c00057{transform:matrix(0.197369,0.006915,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197369,0.006915,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197369,0.006915,-0.008753,0.249847,0,0);}
.m77_c00057{transform:matrix(0.197374,0.006915,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197374,0.006915,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197374,0.006915,-0.008753,0.249847,0,0);}
.m39_c00057{transform:matrix(0.197560,0.007713,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197560,0.007713,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197560,0.007713,-0.009752,0.249810,0,0);}
.m49_c00057{transform:matrix(0.197914,0.007726,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197914,0.007726,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197914,0.007726,-0.009752,0.249810,0,0);}
.mc6_c00057{transform:matrix(0.197949,0.006935,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197949,0.006935,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197949,0.006935,-0.008753,0.249847,0,0);}
.mb4_c00057{transform:matrix(0.198163,0.006943,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198163,0.006943,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198163,0.006943,-0.008753,0.249847,0,0);}
.m92_c00057{transform:matrix(0.198213,0.006944,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198213,0.006944,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198213,0.006944,-0.008753,0.249847,0,0);}
.m94_c00057{transform:matrix(0.198613,0.006958,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198613,0.006958,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198613,0.006958,-0.008753,0.249847,0,0);}
.me7_c00057{transform:matrix(0.198708,0.006962,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198708,0.006962,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198708,0.006962,-0.008753,0.249847,0,0);}
.m32_c00057{transform:matrix(0.198794,0.007761,-0.009752,0.249810,0,0);-ms-transform:matrix(0.198794,0.007761,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.198794,0.007761,-0.009752,0.249810,0,0);}
.md3_c00057{transform:matrix(0.199098,0.006975,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199098,0.006975,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199098,0.006975,-0.008753,0.249847,0,0);}
.m50_c00057{transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);-ms-transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);}
.m52_c00057{transform:matrix(0.199488,0.007788,-0.009752,0.249810,0,0);-ms-transform:matrix(0.199488,0.007788,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.199488,0.007788,-0.009752,0.249810,0,0);}
.m4_c00057{transform:matrix(0.200554,0.006217,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200554,0.006217,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200554,0.006217,-0.007746,0.249880,0,0);}
.mb8_c00057{transform:matrix(0.201656,0.007065,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201656,0.007065,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201656,0.007065,-0.008753,0.249847,0,0);}
.m3e_c00057{transform:matrix(0.201731,0.007875,-0.009752,0.249810,0,0);-ms-transform:matrix(0.201731,0.007875,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.201731,0.007875,-0.009752,0.249810,0,0);}
.m9e_c00057{transform:matrix(0.201756,0.007069,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201756,0.007069,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201756,0.007069,-0.008753,0.249847,0,0);}
.m83_c00057{transform:matrix(0.202021,0.007078,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202021,0.007078,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202021,0.007078,-0.008753,0.249847,0,0);}
.m6c_c00057{transform:matrix(0.202411,0.007091,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202411,0.007091,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202411,0.007091,-0.008753,0.249847,0,0);}
.m8_c00057{transform:matrix(0.202553,0.006279,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202553,0.006279,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202553,0.006279,-0.007746,0.249880,0,0);}
.maa_c00057{transform:matrix(0.202736,0.007103,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202736,0.007103,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202736,0.007103,-0.008753,0.249847,0,0);}
.m90_c00057{transform:matrix(0.203315,0.007123,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203315,0.007123,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203315,0.007123,-0.008753,0.249847,0,0);}
.m15_c00057{transform:matrix(0.204067,0.006326,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204067,0.006326,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204067,0.006326,-0.007746,0.249880,0,0);}
.m8f_c00057{transform:matrix(0.204145,0.007152,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204145,0.007152,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204145,0.007152,-0.008753,0.249847,0,0);}
.mab_c00057{transform:matrix(0.204175,0.007153,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204175,0.007153,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204175,0.007153,-0.008753,0.249847,0,0);}
.mc5_c00057{transform:matrix(0.204320,0.007158,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204320,0.007158,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204320,0.007158,-0.008753,0.249847,0,0);}
.me9_c00057{transform:matrix(0.204969,0.007181,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204969,0.007181,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204969,0.007181,-0.008753,0.249847,0,0);}
.m97_c00057{transform:matrix(0.205474,0.007199,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205474,0.007199,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205474,0.007199,-0.008753,0.249847,0,0);}
.m62_c00057{transform:matrix(0.205598,0.008026,-0.009752,0.249810,0,0);-ms-transform:matrix(0.205598,0.008026,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.205598,0.008026,-0.009752,0.249810,0,0);}
.m60_c00057{transform:matrix(0.206108,0.008046,-0.009752,0.249810,0,0);-ms-transform:matrix(0.206108,0.008046,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.206108,0.008046,-0.009752,0.249810,0,0);}
.m1b_c00057{transform:matrix(0.206196,0.006392,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206196,0.006392,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206196,0.006392,-0.007746,0.249880,0,0);}
.m78_c00057{transform:matrix(0.206298,0.007228,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206298,0.007228,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206298,0.007228,-0.008753,0.249847,0,0);}
.m99_c00057{transform:matrix(0.207638,0.007275,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207638,0.007275,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207638,0.007275,-0.008753,0.249847,0,0);}
.m8b_c00057{transform:matrix(0.207897,0.007284,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207897,0.007284,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207897,0.007284,-0.008753,0.249847,0,0);}
.m5e_c00057{transform:matrix(0.208421,0.008137,-0.009752,0.249810,0,0);-ms-transform:matrix(0.208421,0.008137,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.208421,0.008137,-0.009752,0.249810,0,0);}
.m72_c00057{transform:matrix(0.208442,0.007303,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208442,0.007303,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208442,0.007303,-0.008753,0.249847,0,0);}
.m2f_c00057{transform:matrix(0.209016,0.008160,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209016,0.008160,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209016,0.008160,-0.009752,0.249810,0,0);}
.m55_c00057{transform:matrix(0.209081,0.008162,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209081,0.008162,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209081,0.008162,-0.009752,0.249810,0,0);}
.ma0_c00057{transform:matrix(0.209546,0.007341,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209546,0.007341,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209546,0.007341,-0.008753,0.249847,0,0);}
.mc9_c00057{transform:matrix(0.209596,0.007343,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209596,0.007343,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209596,0.007343,-0.008753,0.249847,0,0);}
.maf_c00057{transform:matrix(0.209616,0.007344,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209616,0.007344,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209616,0.007344,-0.008753,0.249847,0,0);}
.m22_c00057{transform:matrix(0.209939,0.006508,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209939,0.006508,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209939,0.006508,-0.007746,0.249880,0,0);}
.mda_c00057{transform:matrix(0.209961,0.007356,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209961,0.007356,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209961,0.007356,-0.008753,0.249847,0,0);}
.m7f_c00057{transform:matrix(0.210436,0.007373,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210436,0.007373,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210436,0.007373,-0.008753,0.249847,0,0);}
.m16_c00057{transform:matrix(0.210704,0.006532,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210704,0.006532,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210704,0.006532,-0.007746,0.249880,0,0);}
.m46_c00057{transform:matrix(0.210784,0.008229,-0.009752,0.249810,0,0);-ms-transform:matrix(0.210784,0.008229,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.210784,0.008229,-0.009752,0.249810,0,0);}
.me5_c00057{transform:matrix(0.211390,0.007406,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211390,0.007406,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211390,0.007406,-0.008753,0.249847,0,0);}
.m2d_c00057{transform:matrix(0.211434,0.008254,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211434,0.008254,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211434,0.008254,-0.009752,0.249810,0,0);}
.me6_c00057{transform:matrix(0.211730,0.007418,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211730,0.007418,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211730,0.007418,-0.008753,0.249847,0,0);}
.m7_c00057{transform:matrix(0.212403,0.006584,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212403,0.006584,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212403,0.006584,-0.007746,0.249880,0,0);}
.m4a_c00057{transform:matrix(0.212758,0.008306,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212758,0.008306,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212758,0.008306,-0.009752,0.249810,0,0);}
.ma9_c00057{transform:matrix(0.212779,0.007455,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212779,0.007455,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212779,0.007455,-0.008753,0.249847,0,0);}
.m98_c00057{transform:matrix(0.213184,0.007469,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213184,0.007469,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213184,0.007469,-0.008753,0.249847,0,0);}
.m85_c00057{transform:matrix(0.213934,0.007495,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213934,0.007495,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213934,0.007495,-0.008753,0.249847,0,0);}
.ma2_c00057{transform:matrix(0.214244,0.007506,-0.008753,0.249847,0,0);-ms-transform:matrix(0.214244,0.007506,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.214244,0.007506,-0.008753,0.249847,0,0);}
.m17_c00057{transform:matrix(0.214697,0.006656,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214697,0.006656,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214697,0.006656,-0.007746,0.249880,0,0);}
.ma5_c00057{transform:matrix(0.214953,0.007531,-0.008753,0.249847,0,0);-ms-transform:matrix(0.214953,0.007531,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.214953,0.007531,-0.008753,0.249847,0,0);}
.md6_c00057{transform:matrix(0.215208,0.007540,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215208,0.007540,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215208,0.007540,-0.008753,0.249847,0,0);}
.m75_c00057{transform:matrix(0.215563,0.007552,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215563,0.007552,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215563,0.007552,-0.008753,0.249847,0,0);}
.m1e_c00057{transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216596,0.006714,-0.007746,0.249880,0,0);}
.m35_c00057{transform:matrix(0.216750,0.008462,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216750,0.008462,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216750,0.008462,-0.009752,0.249810,0,0);}
.m4f_c00057{transform:matrix(0.216850,0.008466,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216850,0.008466,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216850,0.008466,-0.009752,0.249810,0,0);}
.m41_c00057{transform:matrix(0.216925,0.008469,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216925,0.008469,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216925,0.008469,-0.009752,0.249810,0,0);}
.mb6_c00057{transform:matrix(0.217237,0.007611,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217237,0.007611,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217237,0.007611,-0.008753,0.249847,0,0);}
.mc0_c00057{transform:matrix(0.217407,0.007617,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217407,0.007617,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217407,0.007617,-0.008753,0.249847,0,0);}
.mf2_c00057{transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);}
.m4e_c00057{transform:matrix(0.218858,0.008544,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218858,0.008544,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218858,0.008544,-0.009752,0.249810,0,0);}
.ma4_c00057{transform:matrix(0.219585,0.007693,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219585,0.007693,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219585,0.007693,-0.008753,0.249847,0,0);}
.mca_c00057{transform:matrix(0.220220,0.007715,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220220,0.007715,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220220,0.007715,-0.008753,0.249847,0,0);}
.m59_c00057{transform:matrix(0.221301,0.008639,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221301,0.008639,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221301,0.008639,-0.009752,0.249810,0,0);}
.md1_c00057{transform:matrix(0.222069,0.007780,-0.008753,0.249847,0,0);-ms-transform:matrix(0.222069,0.007780,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.222069,0.007780,-0.008753,0.249847,0,0);}
.mc4_c00057{transform:matrix(0.222578,0.007798,-0.008753,0.249847,0,0);-ms-transform:matrix(0.222578,0.007798,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.222578,0.007798,-0.008753,0.249847,0,0);}
.m2c_c00057{transform:matrix(0.222590,0.008690,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222590,0.008690,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222590,0.008690,-0.009752,0.249810,0,0);}
.mdd_c00057{transform:matrix(0.223133,0.007817,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223133,0.007817,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223133,0.007817,-0.008753,0.249847,0,0);}
.m89_c00057{transform:matrix(0.224023,0.007849,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224023,0.007849,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224023,0.007849,-0.008753,0.249847,0,0);}
.m54_c00057{transform:matrix(0.224059,0.008747,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224059,0.008747,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224059,0.008747,-0.009752,0.249810,0,0);}
.mcf_c00057{transform:matrix(0.224502,0.007865,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224502,0.007865,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224502,0.007865,-0.008753,0.249847,0,0);}
.m9c_c00057{transform:matrix(0.224857,0.007878,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224857,0.007878,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224857,0.007878,-0.008753,0.249847,0,0);}
.m43_c00057{transform:matrix(0.224859,0.008778,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224859,0.008778,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224859,0.008778,-0.009752,0.249810,0,0);}
.m63_c00057{transform:matrix(0.225007,0.007883,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225007,0.007883,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225007,0.007883,-0.008753,0.249847,0,0);}
.m1c_c00057{transform:matrix(0.225367,0.006986,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225367,0.006986,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225367,0.006986,-0.007746,0.249880,0,0);}
.ma3_c00057{transform:matrix(0.225537,0.007902,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225537,0.007902,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225537,0.007902,-0.008753,0.249847,0,0);}
.m79_c00057{transform:matrix(0.226241,0.007926,-0.008753,0.249847,0,0);-ms-transform:matrix(0.226241,0.007926,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.226241,0.007926,-0.008753,0.249847,0,0);}
.mad_c00057{transform:matrix(0.227006,0.007953,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227006,0.007953,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227006,0.007953,-0.008753,0.249847,0,0);}
.m36_c00057{transform:matrix(0.228701,0.008928,-0.009752,0.249810,0,0);-ms-transform:matrix(0.228701,0.008928,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.228701,0.008928,-0.009752,0.249810,0,0);}
.mc1_c00057{transform:matrix(0.229294,0.008033,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229294,0.008033,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229294,0.008033,-0.008753,0.249847,0,0);}
.mbd_c00057{transform:matrix(0.229319,0.008034,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229319,0.008034,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229319,0.008034,-0.008753,0.249847,0,0);}
.mae_c00057{transform:matrix(0.229344,0.008035,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229344,0.008035,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229344,0.008035,-0.008753,0.249847,0,0);}
.m70_c00057{transform:matrix(0.229744,0.008049,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229744,0.008049,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229744,0.008049,-0.008753,0.249847,0,0);}
.m56_c00057{transform:matrix(0.230559,0.009001,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230559,0.009001,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230559,0.009001,-0.009752,0.249810,0,0);}
.mcd_c00057{transform:matrix(0.230853,0.008088,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230853,0.008088,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230853,0.008088,-0.008753,0.249847,0,0);}
.m30_c00057{transform:matrix(0.231049,0.009020,-0.009752,0.249810,0,0);-ms-transform:matrix(0.231049,0.009020,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.231049,0.009020,-0.009752,0.249810,0,0);}
.m74_c00057{transform:matrix(0.232907,0.008160,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232907,0.008160,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232907,0.008160,-0.008753,0.249847,0,0);}
.m57_c00057{transform:matrix(0.234856,0.009169,-0.009752,0.249810,0,0);-ms-transform:matrix(0.234856,0.009169,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.234856,0.009169,-0.009752,0.249810,0,0);}
.m12_c00057{transform:matrix(0.236941,0.007345,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236941,0.007345,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236941,0.007345,-0.007746,0.249880,0,0);}
.m19_c00057{transform:matrix(0.240509,0.007456,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240509,0.007456,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240509,0.007456,-0.007746,0.249880,0,0);}
.m73_c00057{transform:matrix(0.254324,0.008910,-0.008753,0.249847,0,0);-ms-transform:matrix(0.254324,0.008910,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.254324,0.008910,-0.008753,0.249847,0,0);}
.mac_c00057{transform:matrix(0.265427,0.009299,-0.008753,0.249847,0,0);-ms-transform:matrix(0.265427,0.009299,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.265427,0.009299,-0.008753,0.249847,0,0);}
.m8c_c00057{transform:matrix(0.267341,0.009366,-0.008753,0.249847,0,0);-ms-transform:matrix(0.267341,0.009366,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.267341,0.009366,-0.008753,0.249847,0,0);}
.m53_c00057{transform:matrix(0.351332,0.013716,-0.009752,0.249810,0,0);-ms-transform:matrix(0.351332,0.013716,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.351332,0.013716,-0.009752,0.249810,0,0);}
.m23_c00057{transform:matrix(0.419126,0.016362,-0.009752,0.249810,0,0);-ms-transform:matrix(0.419126,0.016362,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.419126,0.016362,-0.009752,0.249810,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
.fc0_c00057{color:transparent;}
.fs14_c00057{font-size:58.777240px;}
.fsa_c00057{font-size:58.785945px;}
.fs9_c00057{font-size:59.835694px;}
.fs3_c00057{font-size:59.878751px;}
.fs13_c00057{font-size:60.876427px;}
.fs6_c00057{font-size:60.885443px;}
.fs4_c00057{font-size:60.929255px;}
.fs11_c00057{font-size:61.926021px;}
.fsd_c00057{font-size:62.975614px;}
.fs12_c00057{font-size:64.025208px;}
.fs7_c00057{font-size:64.034690px;}
.fsf_c00057{font-size:65.074801px;}
.fs8_c00057{font-size:65.084439px;}
.fsc_c00057{font-size:67.173989px;}
.fse_c00057{font-size:68.223582px;}
.fs2_c00057{font-size:68.282786px;}
.fsb_c00057{font-size:69.283435px;}
.fs10_c00057{font-size:70.322769px;}
.fs5_c00057{font-size:71.382933px;}
.fs1_c00057{font-size:72.484804px;}
.fs0_c00057{font-size:76.650000px;}
.y0_c00057{bottom:0.000000px;}
.yf9_c00057{bottom:24.180056px;}
.yf8_c00057{bottom:24.181052px;}
.yf7_c00057{bottom:24.182163px;}
.yf6_c00057{bottom:35.497209px;}
.yf5_c00057{bottom:36.648089px;}
.yf4_c00057{bottom:37.840802px;}
.yf3_c00057{bottom:40.045697px;}
.yf2_c00057{bottom:40.555632px;}
.yf1_c00057{bottom:41.191565px;}
.yf0_c00057{bottom:42.083921px;}
.yef_c00057{bottom:43.331664px;}
.yee_c00057{bottom:52.331039px;}
.yed_c00057{bottom:53.223143px;}
.yec_c00057{bottom:54.172415px;}
.yeb_c00057{bottom:56.595069px;}
.yea_c00057{bottom:57.040019px;}
.ye9_c00057{bottom:58.314840px;}
.ye8_c00057{bottom:60.880649px;}
.ye7_c00057{bottom:68.860586px;}
.ye6_c00057{bottom:70.340058px;}
.ye5_c00057{bottom:71.936334px;}
.ye4_c00057{bottom:73.765688px;}
.ye3_c00057{bottom:74.422456px;}
.ye2_c00057{bottom:75.553046px;}
.ye1_c00057{bottom:76.018599px;}
.ye0_c00057{bottom:77.544792px;}
.ydf_c00057{bottom:78.153605px;}
.yde_c00057{bottom:87.643323px;}
.ydd_c00057{bottom:88.372433px;}
.ydc_c00057{bottom:89.000526px;}
.ydb_c00057{bottom:91.566126px;}
.yda_c00057{bottom:92.424020px;}
.yd9_c00057{bottom:93.967929px;}
.yd8_c00057{bottom:95.424392px;}
.yd7_c00057{bottom:104.334793px;}
.yd6_c00057{bottom:106.524678px;}
.yd5_c00057{bottom:107.640391px;}
.yd4_c00057{bottom:108.033021px;}
.yd3_c00057{bottom:110.157270px;}
.yd2_c00057{bottom:112.157965px;}
.yd1_c00057{bottom:122.215254px;}
.yd0_c00057{bottom:122.630236px;}
.ycf_c00057{bottom:123.611740px;}
.yce_c00057{bottom:124.303751px;}
.ycd_c00057{bottom:125.097953px;}
.ycc_c00057{bottom:125.621342px;}
.ycb_c00057{bottom:126.900759px;}
.yca_c00057{bottom:127.349243px;}
.yc9_c00057{bottom:128.540376px;}
.yc8_c00057{bottom:129.428637px;}
.yc7_c00057{bottom:139.112435px;}
.yc6_c00057{bottom:139.720215px;}
.yc5_c00057{bottom:141.024326px;}
.yc4_c00057{bottom:141.505737px;}
.yc3_c00057{bottom:143.338080px;}
.yc2_c00057{bottom:144.045144px;}
.yc1_c00057{bottom:145.227897px;}
.yc0_c00057{bottom:147.246736px;}
.ybf_c00057{bottom:156.101694px;}
.ybe_c00057{bottom:156.713549px;}
.ybd_c00057{bottom:158.871861px;}
.ybc_c00057{bottom:159.671428px;}
.ybb_c00057{bottom:161.620111px;}
.yba_c00057{bottom:162.987204px;}
.yb9_c00057{bottom:163.757113px;}
.yb8_c00057{bottom:165.056227px;}
.yb7_c00057{bottom:175.854748px;}
.yb6_c00057{bottom:177.753985px;}
.yb5_c00057{bottom:178.317310px;}
.yb4_c00057{bottom:180.106416px;}
.yb3_c00057{bottom:180.599557px;}
.yb2_c00057{bottom:182.457954px;}
.yb1_c00057{bottom:183.952603px;}
.yb0_c00057{bottom:191.055205px;}
.yaf_c00057{bottom:191.535102px;}
.yae_c00057{bottom:193.867852px;}
.yad_c00057{bottom:194.762832px;}
.yac_c00057{bottom:196.297627px;}
.yab_c00057{bottom:197.076181px;}
.yaa_c00057{bottom:199.068666px;}
.ya9_c00057{bottom:199.702210px;}
.ya8_c00057{bottom:201.495028px;}
.ya7_c00057{bottom:210.917673px;}
.ya6_c00057{bottom:213.093687px;}
.ya5_c00057{bottom:213.714862px;}
.ya4_c00057{bottom:216.260784px;}
.ya3_c00057{bottom:217.110099px;}
.ya2_c00057{bottom:217.630724px;}
.ya1_c00057{bottom:219.312706px;}
.ya0_c00057{bottom:227.163553px;}
.y9f_c00057{bottom:228.042726px;}
.y9e_c00057{bottom:228.471826px;}
.y9d_c00057{bottom:230.587384px;}
.y9c_c00057{bottom:231.140629px;}
.y9b_c00057{bottom:231.815002px;}
.y9a_c00057{bottom:233.526603px;}
.y99_c00057{bottom:236.041078px;}
.y98_c00057{bottom:244.030368px;}
.y97_c00057{bottom:245.342238px;}
.y96_c00057{bottom:247.914055px;}
.y95_c00057{bottom:250.429173px;}
.y94_c00057{bottom:251.526003px;}
.y93_c00057{bottom:252.896096px;}
.y92_c00057{bottom:253.585840px;}
.y91_c00057{bottom:261.225818px;}
.y90_c00057{bottom:263.981473px;}
.y8f_c00057{bottom:264.578687px;}
.y8e_c00057{bottom:265.017907px;}
.y8d_c00057{bottom:267.954207px;}
.y8c_c00057{bottom:271.126747px;}
.y8b_c00057{bottom:278.363248px;}
.y8a_c00057{bottom:279.161038px;}
.y89_c00057{bottom:281.226179px;}
.y88_c00057{bottom:282.721693px;}
.y87_c00057{bottom:283.516333px;}
.y86_c00057{bottom:285.253086px;}
.y85_c00057{bottom:286.117814px;}
.y84_c00057{bottom:287.833671px;}
.y83_c00057{bottom:288.119848px;}
.y82_c00057{bottom:295.583679px;}
.y81_c00057{bottom:297.325132px;}
.y80_c00057{bottom:298.308808px;}
.y7f_c00057{bottom:300.071338px;}
.y7e_c00057{bottom:300.723700px;}
.y7d_c00057{bottom:301.480008px;}
.y7c_c00057{bottom:303.032786px;}
.y7b_c00057{bottom:305.131460px;}
.y7a_c00057{bottom:313.010472px;}
.y79_c00057{bottom:314.703265px;}
.y78_c00057{bottom:315.208224px;}
.y77_c00057{bottom:317.273419px;}
.y76_c00057{bottom:317.700528px;}
.y75_c00057{bottom:319.091109px;}
.y74_c00057{bottom:319.645710px;}
.y73_c00057{bottom:320.784403px;}
.y72_c00057{bottom:330.886173px;}
.y71_c00057{bottom:331.603967px;}
.y70_c00057{bottom:332.290507px;}
.y6f_c00057{bottom:333.768162px;}
.y6e_c00057{bottom:336.196872px;}
.y6d_c00057{bottom:337.967621px;}
.y6c_c00057{bottom:338.864514px;}
.y6b_c00057{bottom:347.890987px;}
.y6a_c00057{bottom:350.086695px;}
.y69_c00057{bottom:351.608880px;}
.y68_c00057{bottom:352.331437px;}
.y67_c00057{bottom:354.472755px;}
.y66_c00057{bottom:355.815495px;}
.y65_c00057{bottom:356.685000px;}
.y64_c00057{bottom:367.441126px;}
.y63_c00057{bottom:368.181480px;}
.y62_c00057{bottom:369.672073px;}
.y61_c00057{bottom:370.518546px;}
.y60_c00057{bottom:370.977838px;}
.y5f_c00057{bottom:373.283283px;}
.y5e_c00057{bottom:373.933182px;}
.y5d_c00057{bottom:374.806749px;}
.y5c_c00057{bottom:382.212219px;}
.y5b_c00057{bottom:384.296740px;}
.y5a_c00057{bottom:384.951018px;}
.y59_c00057{bottom:387.638233px;}
.y58_c00057{bottom:388.126119px;}
.y57_c00057{bottom:389.655610px;}
.y56_c00057{bottom:391.744812px;}
.y55_c00057{bottom:392.641167px;}
.y54_c00057{bottom:402.409560px;}
.y53_c00057{bottom:403.003011px;}
.y52_c00057{bottom:404.070964px;}
.y51_c00057{bottom:406.518951px;}
.y50_c00057{bottom:408.284530px;}
.y4f_c00057{bottom:409.606234px;}
.y4e_c00057{bottom:410.155887px;}
.y4d_c00057{bottom:417.448924px;}
.y4c_c00057{bottom:418.607818px;}
.y4b_c00057{bottom:419.356933px;}
.y4a_c00057{bottom:421.182156px;}
.y49_c00057{bottom:421.818802px;}
.y48_c00057{bottom:422.588239px;}
.y47_c00057{bottom:425.080200px;}
.y46_c00057{bottom:425.840254px;}
.y45_c00057{bottom:427.443991px;}
.y44_c00057{bottom:434.613252px;}
.y43_c00057{bottom:436.314247px;}
.y42_c00057{bottom:437.863939px;}
.y41_c00057{bottom:440.494639px;}
.y40_c00057{bottom:441.085156px;}
.y3f_c00057{bottom:443.637579px;}
.y3e_c00057{bottom:451.595658px;}
.y3d_c00057{bottom:453.170388px;}
.y3c_c00057{bottom:454.629387px;}
.y3b_c00057{bottom:455.291796px;}
.y3a_c00057{bottom:456.580803px;}
.y39_c00057{bottom:458.049945px;}
.y38_c00057{bottom:459.139746px;}
.y37_c00057{bottom:459.670584px;}
.y36_c00057{bottom:461.994181px;}
.y35_c00057{bottom:470.429427px;}
.y34_c00057{bottom:471.097681px;}
.y33_c00057{bottom:472.416537px;}
.y32_c00057{bottom:472.944009px;}
.y31_c00057{bottom:473.367175px;}
.y30_c00057{bottom:475.354321px;}
.y2f_c00057{bottom:476.423818px;}
.y2e_c00057{bottom:477.207925px;}
.y2d_c00057{bottom:478.562848px;}
.y2c_c00057{bottom:479.261671px;}
.y2b_c00057{bottom:486.227005px;}
.y2a_c00057{bottom:487.661718px;}
.y29_c00057{bottom:488.433391px;}
.y28_c00057{bottom:490.982353px;}
.y27_c00057{bottom:491.708806px;}
.y26_c00057{bottom:493.352305px;}
.y25_c00057{bottom:494.921334px;}
.y24_c00057{bottom:496.816500px;}
.y23_c00057{bottom:509.578932px;}
.y22_c00057{bottom:510.147353px;}
.y21_c00057{bottom:510.831573px;}
.y20_c00057{bottom:512.159988px;}
.y1f_c00057{bottom:513.155675px;}
.y1e_c00057{bottom:513.798846px;}
.y1d_c00057{bottom:521.290110px;}
.y1c_c00057{bottom:521.767208px;}
.y1b_c00057{bottom:522.541089px;}
.y1a_c00057{bottom:522.937533px;}
.y19_c00057{bottom:524.668551px;}
.y18_c00057{bottom:525.249413px;}
.y17_c00057{bottom:525.861138px;}
.y16_c00057{bottom:527.011143px;}
.y15_c00057{bottom:527.488008px;}
.y14_c00057{bottom:528.318189px;}
.y13_c00057{bottom:529.196753px;}
.y12_c00057{bottom:538.685385px;}
.y11_c00057{bottom:539.256854px;}
.y10_c00057{bottom:541.229600px;}
.yf_c00057{bottom:541.960295px;}
.ye_c00057{bottom:542.847833px;}
.yd_c00057{bottom:543.552441px;}
.yc_c00057{bottom:545.426306px;}
.yb_c00057{bottom:546.213858px;}
.ya_c00057{bottom:554.862588px;}
.y9_c00057{bottom:555.276206px;}
.y8_c00057{bottom:557.584373px;}
.y7_c00057{bottom:558.220446px;}
.y6_c00057{bottom:559.380202px;}
.y5_c00057{bottom:561.285494px;}
.y4_c00057{bottom:561.858606px;}
.y3_c00057{bottom:562.255716px;}
.y2_c00057{bottom:563.770500px;}
.y1_c00057{bottom:573.618000px;}
.h16_c00057{height:58.777240px;}
.hc_c00057{height:58.785945px;}
.hb_c00057{height:59.835694px;}
.h5_c00057{height:59.878751px;}
.h15_c00057{height:60.876427px;}
.h8_c00057{height:60.885443px;}
.h6_c00057{height:60.929255px;}
.h13_c00057{height:61.926021px;}
.hf_c00057{height:62.975614px;}
.h14_c00057{height:64.025208px;}
.h9_c00057{height:64.034690px;}
.h11_c00057{height:65.074801px;}
.ha_c00057{height:65.084439px;}
.he_c00057{height:67.173989px;}
.h10_c00057{height:68.223582px;}
.h4_c00057{height:68.282786px;}
.hd_c00057{height:69.283435px;}
.h12_c00057{height:70.322769px;}
.h7_c00057{height:71.382933px;}
.h3_c00057{height:72.484804px;}
.h2_c00057{height:76.650000px;}
.h1_c00057{height:620.250000px;}
.h0_c00057{height:620.400000px;}
.w0_c00057{width:373.140000px;}
.w1_c00057{width:373.500000px;}
.x0_c00057{left:0.000000px;}
.x56_c00057{left:33.659377px;}
.x59_c00057{left:37.949128px;}
.x69_c00057{left:39.319279px;}
.x53_c00057{left:40.403770px;}
.x3f_c00057{left:41.769915px;}
.x11_c00057{left:43.635362px;}
.x26_c00057{left:44.851340px;}
.x2_c00057{left:46.636500px;}
.x71_c00057{left:57.752991px;}
.x3a_c00057{left:60.371084px;}
.x1b_c00057{left:61.593807px;}
.x27_c00057{left:66.019628px;}
.x44_c00057{left:68.160237px;}
.xb_c00057{left:72.002229px;}
.x4b_c00057{left:73.599934px;}
.x65_c00057{left:80.540413px;}
.x79_c00057{left:83.423584px;}
.x50_c00057{left:84.684678px;}
.x37_c00057{left:86.357585px;}
.x45_c00057{left:87.844659px;}
.x1c_c00057{left:90.031773px;}
.x20_c00057{left:91.854906px;}
.x49_c00057{left:93.774657px;}
.x3_c00057{left:95.500500px;}
.x5e_c00057{left:98.842854px;}
.x12_c00057{left:100.596629px;}
.x3b_c00057{left:101.646569px;}
.x72_c00057{left:103.969986px;}
.x51_c00057{left:105.182388px;}
.x28_c00057{left:107.031179px;}
.x4_c00057{left:108.310500px;}
.x2d_c00057{left:109.432149px;}
.x57_c00057{left:115.484970px;}
.x13_c00057{left:116.512140px;}
.x73_c00057{left:118.071868px;}
.x32_c00057{left:120.189089px;}
.x40_c00057{left:122.359511px;}
.x2e_c00057{left:124.144620px;}
.x5_c00057{left:126.798000px;}
.x1d_c00057{left:127.992077px;}
.x29_c00057{left:130.768481px;}
.x21_c00057{left:132.046175px;}
.xc_c00057{left:134.483682px;}
.x70_c00057{left:136.024870px;}
.x33_c00057{left:137.545112px;}
.x6a_c00057{left:142.478469px;}
.x61_c00057{left:145.343512px;}
.x1e_c00057{left:147.545159px;}
.x74_c00057{left:152.312011px;}
.x14_c00057{left:154.868349px;}
.x3c_c00057{left:156.752457px;}
.xd_c00057{left:157.987926px;}
.x62_c00057{left:160.746723px;}
.x1f_c00057{left:163.798659px;}
.x58_c00057{left:165.056848px;}
.x76_c00057{left:168.252675px;}
.x54_c00057{left:169.896667px;}
.x46_c00057{left:171.504474px;}
.x5d_c00057{left:173.140228px;}
.x22_c00057{left:174.145034px;}
.x15_c00057{left:175.279500px;}
.x41_c00057{left:176.841749px;}
.x1_c00057{left:182.790000px;}
.x5f_c00057{left:185.254897px;}
.x6_c00057{left:188.259000px;}
.x6f_c00057{left:189.985060px;}
.x23_c00057{left:192.753407px;}
.x16_c00057{left:194.646604px;}
.x47_c00057{left:197.146837px;}
.x5c_c00057{left:203.876083px;}
.x6d_c00057{left:206.269231px;}
.x66_c00057{left:208.077649px;}
.xe_c00057{left:211.932600px;}
.x4a_c00057{left:213.843468px;}
.x34_c00057{left:214.849838px;}
.x63_c00057{left:216.609190px;}
.x4c_c00057{left:218.259558px;}
.x78_c00057{left:221.783374px;}
.x2a_c00057{left:223.289534px;}
.x6b_c00057{left:224.296026px;}
.x7_c00057{left:225.670500px;}
.x60_c00057{left:227.863275px;}
.x2f_c00057{left:230.899731px;}
.x3d_c00057{left:233.144336px;}
.x64_c00057{left:234.186934px;}
.x2b_c00057{left:236.089707px;}
.x6c_c00057{left:239.792668px;}
.x55_c00057{left:240.880135px;}
.x48_c00057{left:242.248731px;}
.x8_c00057{left:246.189000px;}
.x5a_c00057{left:247.933843px;}
.x30_c00057{left:249.289989px;}
.x17_c00057{left:252.326371px;}
.x24_c00057{left:258.046048px;}
.x35_c00057{left:260.389154px;}
.x38_c00057{left:261.426044px;}
.x6e_c00057{left:263.378590px;}
.x18_c00057{left:265.550790px;}
.x42_c00057{left:267.086999px;}
.x4d_c00057{left:269.129306px;}
.x77_c00057{left:270.321151px;}
.x75_c00057{left:275.858460px;}
.xf_c00057{left:277.700646px;}
.x39_c00057{left:281.652878px;}
.x3e_c00057{left:285.005094px;}
.x31_c00057{left:289.776705px;}
.x19_c00057{left:291.338081px;}
.x4e_c00057{left:292.750601px;}
.x10_c00057{left:296.764751px;}
.x67_c00057{left:300.426430px;}
.x1a_c00057{left:307.261092px;}
.x36_c00057{left:310.342371px;}
.x2c_c00057{left:312.226854px;}
.x25_c00057{left:314.563475px;}
.x4f_c00057{left:317.478051px;}
.x68_c00057{left:319.517817px;}
.x9_c00057{left:320.646000px;}
.x43_c00057{left:323.366055px;}
.x5b_c00057{left:328.900633px;}
.x52_c00057{left:330.044259px;}
.xa_c00057{left:333.988500px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.fs14_c00057{font-size:52.246436pt;}
.fsa_c00057{font-size:52.254173pt;}
.fs9_c00057{font-size:53.187284pt;}
.fs3_c00057{font-size:53.225556pt;}
.fs13_c00057{font-size:54.112380pt;}
.fs6_c00057{font-size:54.120394pt;}
.fs4_c00057{font-size:54.159338pt;}
.fs11_c00057{font-size:55.045352pt;}
.fsd_c00057{font-size:55.978324pt;}
.fs12_c00057{font-size:56.911296pt;}
.fs7_c00057{font-size:56.919725pt;}
.fsf_c00057{font-size:57.844268pt;}
.fs8_c00057{font-size:57.852835pt;}
.fsc_c00057{font-size:59.710212pt;}
.fse_c00057{font-size:60.643184pt;}
.fs2_c00057{font-size:60.695810pt;}
.fsb_c00057{font-size:61.585276pt;}
.fs10_c00057{font-size:62.509128pt;}
.fs5_c00057{font-size:63.451496pt;}
.fs1_c00057{font-size:64.430937pt;}
.fs0_c00057{font-size:68.133333pt;}
.y0_c00057{bottom:0.000000pt;}
.yf9_c00057{bottom:21.493383pt;}
.yf8_c00057{bottom:21.494268pt;}
.yf7_c00057{bottom:21.495256pt;}
.yf6_c00057{bottom:31.553075pt;}
.yf5_c00057{bottom:32.576079pt;}
.yf4_c00057{bottom:33.636268pt;}
.yf3_c00057{bottom:35.596175pt;}
.yf2_c00057{bottom:36.049451pt;}
.yf1_c00057{bottom:36.614724pt;}
.yf0_c00057{bottom:37.407929pt;}
.yef_c00057{bottom:38.517035pt;}
.yee_c00057{bottom:46.516479pt;}
.yed_c00057{bottom:47.309460pt;}
.yec_c00057{bottom:48.153257pt;}
.yeb_c00057{bottom:50.306728pt;}
.yea_c00057{bottom:50.702239pt;}
.ye9_c00057{bottom:51.835413pt;}
.ye8_c00057{bottom:54.116132pt;}
.ye7_c00057{bottom:61.209409pt;}
.ye6_c00057{bottom:62.524496pt;}
.ye5_c00057{bottom:63.943408pt;}
.ye4_c00057{bottom:65.569500pt;}
.ye3_c00057{bottom:66.153295pt;}
.ye2_c00057{bottom:67.158263pt;}
.ye1_c00057{bottom:67.572088pt;}
.ye0_c00057{bottom:68.928704pt;}
.ydf_c00057{bottom:69.469871pt;}
.yde_c00057{bottom:77.905176pt;}
.ydd_c00057{bottom:78.553273pt;}
.ydc_c00057{bottom:79.111579pt;}
.ydb_c00057{bottom:81.392112pt;}
.yda_c00057{bottom:82.154684pt;}
.yd9_c00057{bottom:83.527048pt;}
.yd8_c00057{bottom:84.821681pt;}
.yd7_c00057{bottom:92.742039pt;}
.yd6_c00057{bottom:94.688603pt;}
.yd5_c00057{bottom:95.680348pt;}
.yd4_c00057{bottom:96.029352pt;}
.yd3_c00057{bottom:97.917573pt;}
.yd2_c00057{bottom:99.695969pt;}
.yd1_c00057{bottom:108.635781pt;}
.yd0_c00057{bottom:109.004655pt;}
.ycf_c00057{bottom:109.877103pt;}
.yce_c00057{bottom:110.492223pt;}
.ycd_c00057{bottom:111.198180pt;}
.ycc_c00057{bottom:111.663415pt;}
.ycb_c00057{bottom:112.800675pt;}
.yca_c00057{bottom:113.199327pt;}
.yc9_c00057{bottom:114.258112pt;}
.yc8_c00057{bottom:115.047677pt;}
.yc7_c00057{bottom:123.655497pt;}
.yc6_c00057{bottom:124.195747pt;}
.yc5_c00057{bottom:125.354956pt;}
.yc4_c00057{bottom:125.782877pt;}
.yc3_c00057{bottom:127.411627pt;}
.yc2_c00057{bottom:128.040128pt;}
.yc1_c00057{bottom:129.091464pt;}
.yc0_c00057{bottom:130.885988pt;}
.ybf_c00057{bottom:138.757061pt;}
.ybe_c00057{bottom:139.300932pt;}
.ybd_c00057{bottom:141.219432pt;}
.ybc_c00057{bottom:141.930159pt;}
.ybb_c00057{bottom:143.662321pt;}
.yba_c00057{bottom:144.877515pt;}
.yb9_c00057{bottom:145.561879pt;}
.yb8_c00057{bottom:146.716647pt;}
.yb7_c00057{bottom:156.315332pt;}
.yb6_c00057{bottom:158.003543pt;}
.yb5_c00057{bottom:158.504276pt;}
.yb4_c00057{bottom:160.094592pt;}
.yb3_c00057{bottom:160.532940pt;}
.yb2_c00057{bottom:162.184848pt;}
.yb1_c00057{bottom:163.513425pt;}
.yb0_c00057{bottom:169.826849pt;}
.yaf_c00057{bottom:170.253424pt;}
.yae_c00057{bottom:172.326980pt;}
.yad_c00057{bottom:173.122517pt;}
.yac_c00057{bottom:174.486780pt;}
.yab_c00057{bottom:175.178828pt;}
.yaa_c00057{bottom:176.949925pt;}
.ya9_c00057{bottom:177.513076pt;}
.ya8_c00057{bottom:179.106692pt;}
.ya7_c00057{bottom:187.482376pt;}
.ya6_c00057{bottom:189.416611pt;}
.ya5_c00057{bottom:189.968767pt;}
.ya4_c00057{bottom:192.231808pt;}
.ya3_c00057{bottom:192.986755pt;}
.ya2_c00057{bottom:193.449532pt;}
.ya1_c00057{bottom:194.944628pt;}
.ya0_c00057{bottom:201.923159pt;}
.y9f_c00057{bottom:202.704645pt;}
.y9e_c00057{bottom:203.086068pt;}
.y9d_c00057{bottom:204.966564pt;}
.y9c_c00057{bottom:205.458337pt;}
.y9b_c00057{bottom:206.057780pt;}
.y9a_c00057{bottom:207.579203pt;}
.y99_c00057{bottom:209.814292pt;}
.y98_c00057{bottom:216.915883pt;}
.y97_c00057{bottom:218.081989pt;}
.y96_c00057{bottom:220.368049pt;}
.y95_c00057{bottom:222.603709pt;}
.y94_c00057{bottom:223.578669pt;}
.y93_c00057{bottom:224.796529pt;}
.y92_c00057{bottom:225.409636pt;}
.y91_c00057{bottom:232.200727pt;}
.y90_c00057{bottom:234.650199pt;}
.y8f_c00057{bottom:235.181055pt;}
.y8e_c00057{bottom:235.571473pt;}
.y8d_c00057{bottom:238.181517pt;}
.y8c_c00057{bottom:241.001553pt;}
.y8b_c00057{bottom:247.433999pt;}
.y8a_c00057{bottom:248.143145pt;}
.y89_c00057{bottom:249.978825pt;}
.y88_c00057{bottom:251.308172pt;}
.y87_c00057{bottom:252.014519pt;}
.y86_c00057{bottom:253.558299pt;}
.y85_c00057{bottom:254.326945pt;}
.y84_c00057{bottom:255.852152pt;}
.y83_c00057{bottom:256.106532pt;}
.y82_c00057{bottom:262.741048pt;}
.y81_c00057{bottom:264.289007pt;}
.y80_c00057{bottom:265.163385pt;}
.y7f_c00057{bottom:266.730079pt;}
.y7e_c00057{bottom:267.309956pt;}
.y7d_c00057{bottom:267.982229pt;}
.y7c_c00057{bottom:269.362476pt;}
.y7b_c00057{bottom:271.227964pt;}
.y7a_c00057{bottom:278.231531pt;}
.y79_c00057{bottom:279.736236pt;}
.y78_c00057{bottom:280.185088pt;}
.y77_c00057{bottom:282.020817pt;}
.y76_c00057{bottom:282.400469pt;}
.y75_c00057{bottom:283.636541pt;}
.y74_c00057{bottom:284.129520pt;}
.y73_c00057{bottom:285.141692pt;}
.y72_c00057{bottom:294.121043pt;}
.y71_c00057{bottom:294.759081pt;}
.y70_c00057{bottom:295.369340pt;}
.y6f_c00057{bottom:296.682811pt;}
.y6e_c00057{bottom:298.841664pt;}
.y6d_c00057{bottom:300.415663pt;}
.y6c_c00057{bottom:301.212901pt;}
.y6b_c00057{bottom:309.236433pt;}
.y6a_c00057{bottom:311.188173pt;}
.y69_c00057{bottom:312.541227pt;}
.y68_c00057{bottom:313.183500pt;}
.y67_c00057{bottom:315.086893pt;}
.y66_c00057{bottom:316.280440pt;}
.y65_c00057{bottom:317.053333pt;}
.y64_c00057{bottom:326.614335pt;}
.y63_c00057{bottom:327.272427pt;}
.y62_c00057{bottom:328.597399pt;}
.y61_c00057{bottom:329.349819pt;}
.y60_c00057{bottom:329.758079pt;}
.y5f_c00057{bottom:331.807363pt;}
.y5e_c00057{bottom:332.385051pt;}
.y5d_c00057{bottom:333.161555pt;}
.y5c_c00057{bottom:339.744195pt;}
.y5b_c00057{bottom:341.597103pt;}
.y5a_c00057{bottom:342.178683pt;}
.y59_c00057{bottom:344.567319pt;}
.y58_c00057{bottom:345.000995pt;}
.y57_c00057{bottom:346.360543pt;}
.y56_c00057{bottom:348.217611pt;}
.y55_c00057{bottom:349.014371pt;}
.y54_c00057{bottom:357.697387pt;}
.y53_c00057{bottom:358.224899pt;}
.y52_c00057{bottom:359.174191pt;}
.y51_c00057{bottom:361.350179pt;}
.y50_c00057{bottom:362.919583pt;}
.y4f_c00057{bottom:364.094431pt;}
.y4e_c00057{bottom:364.583011pt;}
.y4d_c00057{bottom:371.065711pt;}
.y4c_c00057{bottom:372.095839pt;}
.y4b_c00057{bottom:372.761719pt;}
.y4a_c00057{bottom:374.384139pt;}
.y49_c00057{bottom:374.950047pt;}
.y48_c00057{bottom:375.633991pt;}
.y47_c00057{bottom:377.849067pt;}
.y46_c00057{bottom:378.524671pt;}
.y45_c00057{bottom:379.950215pt;}
.y44_c00057{bottom:386.322891pt;}
.y43_c00057{bottom:387.834887pt;}
.y42_c00057{bottom:389.212391pt;}
.y41_c00057{bottom:391.550791pt;}
.y40_c00057{bottom:392.075695pt;}
.y3f_c00057{bottom:394.344515pt;}
.y3e_c00057{bottom:401.418363pt;}
.y3d_c00057{bottom:402.818123pt;}
.y3c_c00057{bottom:404.115011pt;}
.y3b_c00057{bottom:404.703819pt;}
.y3a_c00057{bottom:405.849603pt;}
.y39_c00057{bottom:407.155507pt;}
.y38_c00057{bottom:408.124219pt;}
.y37_c00057{bottom:408.596075pt;}
.y36_c00057{bottom:410.661495pt;}
.y35_c00057{bottom:418.159491pt;}
.y34_c00057{bottom:418.753495pt;}
.y33_c00057{bottom:419.925811pt;}
.y32_c00057{bottom:420.394675pt;}
.y31_c00057{bottom:420.770823pt;}
.y30_c00057{bottom:422.537175pt;}
.y2f_c00057{bottom:423.487839pt;}
.y2e_c00057{bottom:424.184823pt;}
.y2d_c00057{bottom:425.389199pt;}
.y2c_c00057{bottom:426.010375pt;}
.y2b_c00057{bottom:432.201783pt;}
.y2a_c00057{bottom:433.477083pt;}
.y29_c00057{bottom:434.163015pt;}
.y28_c00057{bottom:436.428759pt;}
.y27_c00057{bottom:437.074495pt;}
.y26_c00057{bottom:438.535383pt;}
.y25_c00057{bottom:439.930075pt;}
.y24_c00057{bottom:441.614667pt;}
.y23_c00057{bottom:452.959051pt;}
.y22_c00057{bottom:453.464313pt;}
.y21_c00057{bottom:454.072509pt;}
.y20_c00057{bottom:455.253323pt;}
.y1f_c00057{bottom:456.138377pt;}
.y1e_c00057{bottom:456.710085pt;}
.y1d_c00057{bottom:463.368987pt;}
.y1c_c00057{bottom:463.793073pt;}
.y1b_c00057{bottom:464.480968pt;}
.y1a_c00057{bottom:464.833363pt;}
.y19_c00057{bottom:466.372045pt;}
.y18_c00057{bottom:466.888367pt;}
.y17_c00057{bottom:467.432123pt;}
.y16_c00057{bottom:468.454349pt;}
.y15_c00057{bottom:468.878229pt;}
.y14_c00057{bottom:469.616168pt;}
.y13_c00057{bottom:470.397113pt;}
.y12_c00057{bottom:478.831453pt;}
.y11_c00057{bottom:479.339425pt;}
.y10_c00057{bottom:481.092977pt;}
.yf_c00057{bottom:481.742484pt;}
.ye_c00057{bottom:482.531407pt;}
.yd_c00057{bottom:483.157725pt;}
.yc_c00057{bottom:484.823383pt;}
.yb_c00057{bottom:485.523429pt;}
.ya_c00057{bottom:493.211189pt;}
.y9_c00057{bottom:493.578849pt;}
.y8_c00057{bottom:495.630553pt;}
.y7_c00057{bottom:496.195952pt;}
.y6_c00057{bottom:497.226847pt;}
.y5_c00057{bottom:498.920439pt;}
.y4_c00057{bottom:499.429872pt;}
.y3_c00057{bottom:499.782859pt;}
.y2_c00057{bottom:501.129333pt;}
.y1_c00057{bottom:509.882667pt;}
.h16_c00057{height:52.246436pt;}
.hc_c00057{height:52.254173pt;}
.hb_c00057{height:53.187284pt;}
.h5_c00057{height:53.225556pt;}
.h15_c00057{height:54.112380pt;}
.h8_c00057{height:54.120394pt;}
.h6_c00057{height:54.159338pt;}
.h13_c00057{height:55.045352pt;}
.hf_c00057{height:55.978324pt;}
.h14_c00057{height:56.911296pt;}
.h9_c00057{height:56.919725pt;}
.h11_c00057{height:57.844268pt;}
.ha_c00057{height:57.852835pt;}
.he_c00057{height:59.710212pt;}
.h10_c00057{height:60.643184pt;}
.h4_c00057{height:60.695810pt;}
.hd_c00057{height:61.585276pt;}
.h12_c00057{height:62.509128pt;}
.h7_c00057{height:63.451496pt;}
.h3_c00057{height:64.430937pt;}
.h2_c00057{height:68.133333pt;}
.h1_c00057{height:551.333333pt;}
.h0_c00057{height:551.466667pt;}
.w0_c00057{width:331.680000pt;}
.w1_c00057{width:332.000000pt;}
.x0_c00057{left:0.000000pt;}
.x56_c00057{left:29.919447pt;}
.x59_c00057{left:33.732559pt;}
.x69_c00057{left:34.950471pt;}
.x53_c00057{left:35.914463pt;}
.x3f_c00057{left:37.128813pt;}
.x11_c00057{left:38.786988pt;}
.x26_c00057{left:39.867857pt;}
.x2_c00057{left:41.454667pt;}
.x71_c00057{left:51.335992pt;}
.x3a_c00057{left:53.663185pt;}
.x1b_c00057{left:54.750051pt;}
.x27_c00057{left:58.684113pt;}
.x44_c00057{left:60.586877pt;}
.xb_c00057{left:64.001981pt;}
.x4b_c00057{left:65.422164pt;}
.x65_c00057{left:71.591479pt;}
.x79_c00057{left:74.154297pt;}
.x50_c00057{left:75.275269pt;}
.x37_c00057{left:76.762297pt;}
.x45_c00057{left:78.084141pt;}
.x1c_c00057{left:80.028243pt;}
.x20_c00057{left:81.648805pt;}
.x49_c00057{left:83.355251pt;}
.x3_c00057{left:84.889333pt;}
.x5e_c00057{left:87.860315pt;}
.x12_c00057{left:89.419225pt;}
.x3b_c00057{left:90.352505pt;}
.x72_c00057{left:92.417765pt;}
.x51_c00057{left:93.495456pt;}
.x28_c00057{left:95.138825pt;}
.x4_c00057{left:96.276000pt;}
.x2d_c00057{left:97.273021pt;}
.x57_c00057{left:102.653307pt;}
.x13_c00057{left:103.566347pt;}
.x73_c00057{left:104.952772pt;}
.x32_c00057{left:106.834745pt;}
.x40_c00057{left:108.764009pt;}
.x2e_c00057{left:110.350773pt;}
.x5_c00057{left:112.709333pt;}
.x1d_c00057{left:113.770735pt;}
.x29_c00057{left:116.238649pt;}
.x21_c00057{left:117.374377pt;}
.xc_c00057{left:119.541051pt;}
.x70_c00057{left:120.910996pt;}
.x33_c00057{left:122.262321pt;}
.x6a_c00057{left:126.647528pt;}
.x61_c00057{left:129.194233pt;}
.x1e_c00057{left:131.151252pt;}
.x74_c00057{left:135.388455pt;}
.x14_c00057{left:137.660755pt;}
.x3c_c00057{left:139.335517pt;}
.xd_c00057{left:140.433712pt;}
.x62_c00057{left:142.885976pt;}
.x1f_c00057{left:145.598808pt;}
.x58_c00057{left:146.717199pt;}
.x76_c00057{left:149.557933pt;}
.x54_c00057{left:151.019260pt;}
.x46_c00057{left:152.448421pt;}
.x5d_c00057{left:153.902425pt;}
.x22_c00057{left:154.795585pt;}
.x15_c00057{left:155.804000pt;}
.x41_c00057{left:157.192665pt;}
.x1_c00057{left:162.480000pt;}
.x5f_c00057{left:164.671020pt;}
.x6_c00057{left:167.341333pt;}
.x6f_c00057{left:168.875609pt;}
.x23_c00057{left:171.336361pt;}
.x16_c00057{left:173.019204pt;}
.x47_c00057{left:175.241633pt;}
.x5c_c00057{left:181.223185pt;}
.x6d_c00057{left:183.350428pt;}
.x66_c00057{left:184.957911pt;}
.xe_c00057{left:188.384533pt;}
.x4a_c00057{left:190.083083pt;}
.x34_c00057{left:190.977633pt;}
.x63_c00057{left:192.541503pt;}
.x4c_c00057{left:194.008496pt;}
.x78_c00057{left:197.140777pt;}
.x2a_c00057{left:198.479585pt;}
.x6b_c00057{left:199.374245pt;}
.x7_c00057{left:200.596000pt;}
.x60_c00057{left:202.545133pt;}
.x2f_c00057{left:205.244205pt;}
.x3d_c00057{left:207.239409pt;}
.x64_c00057{left:208.166164pt;}
.x2b_c00057{left:209.857517pt;}
.x6c_c00057{left:213.149039pt;}
.x55_c00057{left:214.115676pt;}
.x48_c00057{left:215.332205pt;}
.x8_c00057{left:218.834667pt;}
.x5a_c00057{left:220.385639pt;}
.x30_c00057{left:221.591101pt;}
.x17_c00057{left:224.290108pt;}
.x24_c00057{left:229.374265pt;}
.x35_c00057{left:231.457025pt;}
.x38_c00057{left:232.378705pt;}
.x6e_c00057{left:234.114303pt;}
.x18_c00057{left:236.045147pt;}
.x42_c00057{left:237.410665pt;}
.x4d_c00057{left:239.226049pt;}
.x77_c00057{left:240.285468pt;}
.x75_c00057{left:245.207520pt;}
.xf_c00057{left:246.845019pt;}
.x39_c00057{left:250.358113pt;}
.x3e_c00057{left:253.337861pt;}
.x31_c00057{left:257.579293pt;}
.x19_c00057{left:258.967183pt;}
.x4e_c00057{left:260.222756pt;}
.x10_c00057{left:263.790889pt;}
.x67_c00057{left:267.045716pt;}
.x1a_c00057{left:273.120971pt;}
.x36_c00057{left:275.859885pt;}
.x2c_c00057{left:277.534981pt;}
.x25_c00057{left:279.611977pt;}
.x4f_c00057{left:282.202712pt;}
.x68_c00057{left:284.015837pt;}
.x9_c00057{left:285.018667pt;}
.x43_c00057{left:287.436493pt;}
.x5b_c00057{left:292.356119pt;}
.x52_c00057{left:293.372675pt;}
.xa_c00057{left:296.878667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00058 {
    display:none;
  }
  .loading-indicator_c00058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00058 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00058 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00058" -> "#page-container .classname_c00058")
 */
.pf_c00058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00058 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00058 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00058 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00058 {overflow:visible;}
  }
}
.c_c00058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00058 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00058:after { /* webkit #35443 */
  content: '';
}
.t_c00058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00058 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00058 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00058 { /* info for Javascript */
  display:none;
}
.l_c00058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00058:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00058 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00058.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00058{transform:matrix(0.043611,-0.002270,0.012995,0.249662,0,0);-ms-transform:matrix(0.043611,-0.002270,0.012995,0.249662,0,0);-webkit-transform:matrix(0.043611,-0.002270,0.012995,0.249662,0,0);}
.mb_c00058{transform:matrix(0.068091,-0.003272,0.011998,0.249712,0,0);-ms-transform:matrix(0.068091,-0.003272,0.011998,0.249712,0,0);-webkit-transform:matrix(0.068091,-0.003272,0.011998,0.249712,0,0);}
.m29_c00058{transform:matrix(0.072466,-0.003482,0.011998,0.249712,0,0);-ms-transform:matrix(0.072466,-0.003482,0.011998,0.249712,0,0);-webkit-transform:matrix(0.072466,-0.003482,0.011998,0.249712,0,0);}
.m3b_c00058{transform:matrix(0.145537,-0.006993,0.011998,0.249712,0,0);-ms-transform:matrix(0.145537,-0.006993,0.011998,0.249712,0,0);-webkit-transform:matrix(0.145537,-0.006993,0.011998,0.249712,0,0);}
.m94_c00058{transform:matrix(0.148536,-0.004010,0.006748,0.249909,0,0);-ms-transform:matrix(0.148536,-0.004010,0.006748,0.249909,0,0);-webkit-transform:matrix(0.148536,-0.004010,0.006748,0.249909,0,0);}
.m5b_c00058{transform:matrix(0.149597,-0.007188,0.011998,0.249712,0,0);-ms-transform:matrix(0.149597,-0.007188,0.011998,0.249712,0,0);-webkit-transform:matrix(0.149597,-0.007188,0.011998,0.249712,0,0);}
.mc7_c00058{transform:matrix(0.150382,-0.004511,0.007497,0.249888,0,0);-ms-transform:matrix(0.150382,-0.004511,0.007497,0.249888,0,0);-webkit-transform:matrix(0.150382,-0.004511,0.007497,0.249888,0,0);}
.m90_c00058{transform:matrix(0.152150,-0.004108,0.006748,0.249909,0,0);-ms-transform:matrix(0.152150,-0.004108,0.006748,0.249909,0,0);-webkit-transform:matrix(0.152150,-0.004108,0.006748,0.249909,0,0);}
.m4_c00058{transform:matrix(0.152214,-0.007923,0.012995,0.249662,0,0);-ms-transform:matrix(0.152214,-0.007923,0.012995,0.249662,0,0);-webkit-transform:matrix(0.152214,-0.007923,0.012995,0.249662,0,0);}
.m58_c00058{transform:matrix(0.152254,-0.007316,0.011998,0.249712,0,0);-ms-transform:matrix(0.152254,-0.007316,0.011998,0.249712,0,0);-webkit-transform:matrix(0.152254,-0.007316,0.011998,0.249712,0,0);}
.m93_c00058{transform:matrix(0.153479,-0.004144,0.006748,0.249909,0,0);-ms-transform:matrix(0.153479,-0.004144,0.006748,0.249909,0,0);-webkit-transform:matrix(0.153479,-0.004144,0.006748,0.249909,0,0);}
.mc5_c00058{transform:matrix(0.153676,-0.004610,0.007497,0.249888,0,0);-ms-transform:matrix(0.153676,-0.004610,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153676,-0.004610,0.007497,0.249888,0,0);}
.m6f_c00058{transform:matrix(0.153992,-0.007399,0.011998,0.249712,0,0);-ms-transform:matrix(0.153992,-0.007399,0.011998,0.249712,0,0);-webkit-transform:matrix(0.153992,-0.007399,0.011998,0.249712,0,0);}
.m97_c00058{transform:matrix(0.159407,-0.004304,0.006748,0.249909,0,0);-ms-transform:matrix(0.159407,-0.004304,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159407,-0.004304,0.006748,0.249909,0,0);}
.m1a_c00058{transform:matrix(0.160335,-0.007704,0.011998,0.249712,0,0);-ms-transform:matrix(0.160335,-0.007704,0.011998,0.249712,0,0);-webkit-transform:matrix(0.160335,-0.007704,0.011998,0.249712,0,0);}
.m6c_c00058{transform:matrix(0.160685,-0.007721,0.011998,0.249712,0,0);-ms-transform:matrix(0.160685,-0.007721,0.011998,0.249712,0,0);-webkit-transform:matrix(0.160685,-0.007721,0.011998,0.249712,0,0);}
.m20_c00058{transform:matrix(0.162577,-0.007812,0.011998,0.249712,0,0);-ms-transform:matrix(0.162577,-0.007812,0.011998,0.249712,0,0);-webkit-transform:matrix(0.162577,-0.007812,0.011998,0.249712,0,0);}
.m54_c00058{transform:matrix(0.162732,-0.007819,0.011998,0.249712,0,0);-ms-transform:matrix(0.162732,-0.007819,0.011998,0.249712,0,0);-webkit-transform:matrix(0.162732,-0.007819,0.011998,0.249712,0,0);}
.m35_c00058{transform:matrix(0.162757,-0.007820,0.011998,0.249712,0,0);-ms-transform:matrix(0.162757,-0.007820,0.011998,0.249712,0,0);-webkit-transform:matrix(0.162757,-0.007820,0.011998,0.249712,0,0);}
.mef_c00058{transform:matrix(0.163701,-0.004911,0.007497,0.249888,0,0);-ms-transform:matrix(0.163701,-0.004911,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163701,-0.004911,0.007497,0.249888,0,0);}
.m51_c00058{transform:matrix(0.163856,-0.007873,0.011998,0.249712,0,0);-ms-transform:matrix(0.163856,-0.007873,0.011998,0.249712,0,0);-webkit-transform:matrix(0.163856,-0.007873,0.011998,0.249712,0,0);}
.mac_c00058{transform:matrix(0.163881,-0.004916,0.007497,0.249888,0,0);-ms-transform:matrix(0.163881,-0.004916,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163881,-0.004916,0.007497,0.249888,0,0);}
.md1_c00058{transform:matrix(0.164981,-0.004949,0.007497,0.249888,0,0);-ms-transform:matrix(0.164981,-0.004949,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164981,-0.004949,0.007497,0.249888,0,0);}
.m27_c00058{transform:matrix(0.165399,-0.007947,0.011998,0.249712,0,0);-ms-transform:matrix(0.165399,-0.007947,0.011998,0.249712,0,0);-webkit-transform:matrix(0.165399,-0.007947,0.011998,0.249712,0,0);}
.m6_c00058{transform:matrix(0.165559,-0.007955,0.011998,0.249712,0,0);-ms-transform:matrix(0.165559,-0.007955,0.011998,0.249712,0,0);-webkit-transform:matrix(0.165559,-0.007955,0.011998,0.249712,0,0);}
.m91_c00058{transform:matrix(0.165690,-0.004474,0.006748,0.249909,0,0);-ms-transform:matrix(0.165690,-0.004474,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165690,-0.004474,0.006748,0.249909,0,0);}
.me6_c00058{transform:matrix(0.165995,-0.004980,0.007497,0.249888,0,0);-ms-transform:matrix(0.165995,-0.004980,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165995,-0.004980,0.007497,0.249888,0,0);}
.mf1_c00058{transform:matrix(0.166915,-0.005007,0.007497,0.249888,0,0);-ms-transform:matrix(0.166915,-0.005007,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166915,-0.005007,0.007497,0.249888,0,0);}
.m15_c00058{transform:matrix(0.167432,-0.008045,0.011998,0.249712,0,0);-ms-transform:matrix(0.167432,-0.008045,0.011998,0.249712,0,0);-webkit-transform:matrix(0.167432,-0.008045,0.011998,0.249712,0,0);}
.m8_c00058{transform:matrix(0.167731,-0.008059,0.011998,0.249712,0,0);-ms-transform:matrix(0.167731,-0.008059,0.011998,0.249712,0,0);-webkit-transform:matrix(0.167731,-0.008059,0.011998,0.249712,0,0);}
.mce_c00058{transform:matrix(0.167765,-0.005033,0.007497,0.249888,0,0);-ms-transform:matrix(0.167765,-0.005033,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167765,-0.005033,0.007497,0.249888,0,0);}
.mc1_c00058{transform:matrix(0.168759,-0.005063,0.007497,0.249888,0,0);-ms-transform:matrix(0.168759,-0.005063,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168759,-0.005063,0.007497,0.249888,0,0);}
.mf3_c00058{transform:matrix(0.168824,-0.005065,0.007497,0.249888,0,0);-ms-transform:matrix(0.168824,-0.005065,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168824,-0.005065,0.007497,0.249888,0,0);}
.md0_c00058{transform:matrix(0.169369,-0.005081,0.007497,0.249888,0,0);-ms-transform:matrix(0.169369,-0.005081,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169369,-0.005081,0.007497,0.249888,0,0);}
.m42_c00058{transform:matrix(0.170458,-0.008190,0.011998,0.249712,0,0);-ms-transform:matrix(0.170458,-0.008190,0.011998,0.249712,0,0);-webkit-transform:matrix(0.170458,-0.008190,0.011998,0.249712,0,0);}
.m57_c00058{transform:matrix(0.171008,-0.008217,0.011998,0.249712,0,0);-ms-transform:matrix(0.171008,-0.008217,0.011998,0.249712,0,0);-webkit-transform:matrix(0.171008,-0.008217,0.011998,0.249712,0,0);}
.m3a_c00058{transform:matrix(0.171417,-0.008236,0.011998,0.249712,0,0);-ms-transform:matrix(0.171417,-0.008236,0.011998,0.249712,0,0);-webkit-transform:matrix(0.171417,-0.008236,0.011998,0.249712,0,0);}
.m81_c00058{transform:matrix(0.171807,-0.004639,0.006748,0.249909,0,0);-ms-transform:matrix(0.171807,-0.004639,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171807,-0.004639,0.006748,0.249909,0,0);}
.m59_c00058{transform:matrix(0.172451,-0.008286,0.011998,0.249712,0,0);-ms-transform:matrix(0.172451,-0.008286,0.011998,0.249712,0,0);-webkit-transform:matrix(0.172451,-0.008286,0.011998,0.249712,0,0);}
.m46_c00058{transform:matrix(0.172696,-0.008298,0.011998,0.249712,0,0);-ms-transform:matrix(0.172696,-0.008298,0.011998,0.249712,0,0);-webkit-transform:matrix(0.172696,-0.008298,0.011998,0.249712,0,0);}
.m95_c00058{transform:matrix(0.172797,-0.004666,0.006748,0.249909,0,0);-ms-transform:matrix(0.172797,-0.004666,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172797,-0.004666,0.006748,0.249909,0,0);}
.m48_c00058{transform:matrix(0.172931,-0.008309,0.011998,0.249712,0,0);-ms-transform:matrix(0.172931,-0.008309,0.011998,0.249712,0,0);-webkit-transform:matrix(0.172931,-0.008309,0.011998,0.249712,0,0);}
.m26_c00058{transform:matrix(0.173165,-0.008320,0.011998,0.249712,0,0);-ms-transform:matrix(0.173165,-0.008320,0.011998,0.249712,0,0);-webkit-transform:matrix(0.173165,-0.008320,0.011998,0.249712,0,0);}
.m31_c00058{transform:matrix(0.173330,-0.008328,0.011998,0.249712,0,0);-ms-transform:matrix(0.173330,-0.008328,0.011998,0.249712,0,0);-webkit-transform:matrix(0.173330,-0.008328,0.011998,0.249712,0,0);}
.m80_c00058{transform:matrix(0.173600,-0.005735,0.008254,0.249864,0,0);-ms-transform:matrix(0.173600,-0.005735,0.008254,0.249864,0,0);-webkit-transform:matrix(0.173600,-0.005735,0.008254,0.249864,0,0);}
.m7e_c00058{transform:matrix(0.174335,-0.005759,0.008254,0.249864,0,0);-ms-transform:matrix(0.174335,-0.005759,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174335,-0.005759,0.008254,0.249864,0,0);}
.md7_c00058{transform:matrix(0.174417,-0.005232,0.007497,0.249888,0,0);-ms-transform:matrix(0.174417,-0.005232,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174417,-0.005232,0.007497,0.249888,0,0);}
.m16_c00058{transform:matrix(0.174838,-0.008401,0.011998,0.249712,0,0);-ms-transform:matrix(0.174838,-0.008401,0.011998,0.249712,0,0);-webkit-transform:matrix(0.174838,-0.008401,0.011998,0.249712,0,0);}
.mee_c00058{transform:matrix(0.175051,-0.005252,0.007497,0.249888,0,0);-ms-transform:matrix(0.175051,-0.005252,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175051,-0.005252,0.007497,0.249888,0,0);}
.m98_c00058{transform:matrix(0.175506,-0.004739,0.006748,0.249909,0,0);-ms-transform:matrix(0.175506,-0.004739,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175506,-0.004739,0.006748,0.249909,0,0);}
.m5a_c00058{transform:matrix(0.175607,-0.008438,0.011998,0.249712,0,0);-ms-transform:matrix(0.175607,-0.008438,0.011998,0.249712,0,0);-webkit-transform:matrix(0.175607,-0.008438,0.011998,0.249712,0,0);}
.mb5_c00058{transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);-ms-transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);}
.m65_c00058{transform:matrix(0.176257,-0.008469,0.011998,0.249712,0,0);-ms-transform:matrix(0.176257,-0.008469,0.011998,0.249712,0,0);-webkit-transform:matrix(0.176257,-0.008469,0.011998,0.249712,0,0);}
.m96_c00058{transform:matrix(0.176711,-0.004771,0.006748,0.249909,0,0);-ms-transform:matrix(0.176711,-0.004771,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176711,-0.004771,0.006748,0.249909,0,0);}
.ma1_c00058{transform:matrix(0.176810,-0.005304,0.007497,0.249888,0,0);-ms-transform:matrix(0.176810,-0.005304,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176810,-0.005304,0.007497,0.249888,0,0);}
.mf4_c00058{transform:matrix(0.177805,-0.005334,0.007497,0.249888,0,0);-ms-transform:matrix(0.177805,-0.005334,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177805,-0.005334,0.007497,0.249888,0,0);}
.m7_c00058{transform:matrix(0.177860,-0.008546,0.011998,0.249712,0,0);-ms-transform:matrix(0.177860,-0.008546,0.011998,0.249712,0,0);-webkit-transform:matrix(0.177860,-0.008546,0.011998,0.249712,0,0);}
.mdb_c00058{transform:matrix(0.177940,-0.005338,0.007497,0.249888,0,0);-ms-transform:matrix(0.177940,-0.005338,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177940,-0.005338,0.007497,0.249888,0,0);}
.m41_c00058{transform:matrix(0.178239,-0.008564,0.011998,0.249712,0,0);-ms-transform:matrix(0.178239,-0.008564,0.011998,0.249712,0,0);-webkit-transform:matrix(0.178239,-0.008564,0.011998,0.249712,0,0);}
.mb3_c00058{transform:matrix(0.178245,-0.005347,0.007497,0.249888,0,0);-ms-transform:matrix(0.178245,-0.005347,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178245,-0.005347,0.007497,0.249888,0,0);}
.m4b_c00058{transform:matrix(0.178569,-0.008580,0.011998,0.249712,0,0);-ms-transform:matrix(0.178569,-0.008580,0.011998,0.249712,0,0);-webkit-transform:matrix(0.178569,-0.008580,0.011998,0.249712,0,0);}
.mcb_c00058{transform:matrix(0.179469,-0.005384,0.007497,0.249888,0,0);-ms-transform:matrix(0.179469,-0.005384,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179469,-0.005384,0.007497,0.249888,0,0);}
.m3c_c00058{transform:matrix(0.180397,-0.008668,0.011998,0.249712,0,0);-ms-transform:matrix(0.180397,-0.008668,0.011998,0.249712,0,0);-webkit-transform:matrix(0.180397,-0.008668,0.011998,0.249712,0,0);}
.m1c_c00058{transform:matrix(0.180751,-0.008685,0.011998,0.249712,0,0);-ms-transform:matrix(0.180751,-0.008685,0.011998,0.249712,0,0);-webkit-transform:matrix(0.180751,-0.008685,0.011998,0.249712,0,0);}
.mf0_c00058{transform:matrix(0.180774,-0.005423,0.007497,0.249888,0,0);-ms-transform:matrix(0.180774,-0.005423,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180774,-0.005423,0.007497,0.249888,0,0);}
.m2e_c00058{transform:matrix(0.180776,-0.008686,0.011998,0.249712,0,0);-ms-transform:matrix(0.180776,-0.008686,0.011998,0.249712,0,0);-webkit-transform:matrix(0.180776,-0.008686,0.011998,0.249712,0,0);}
.m87_c00058{transform:matrix(0.180884,-0.004884,0.006748,0.249909,0,0);-ms-transform:matrix(0.180884,-0.004884,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180884,-0.004884,0.006748,0.249909,0,0);}
.m69_c00058{transform:matrix(0.181106,-0.008702,0.011998,0.249712,0,0);-ms-transform:matrix(0.181106,-0.008702,0.011998,0.249712,0,0);-webkit-transform:matrix(0.181106,-0.008702,0.011998,0.249712,0,0);}
.m7c_c00058{transform:matrix(0.181246,-0.005987,0.008254,0.249864,0,0);-ms-transform:matrix(0.181246,-0.005987,0.008254,0.249864,0,0);-webkit-transform:matrix(0.181246,-0.005987,0.008254,0.249864,0,0);}
.m61_c00058{transform:matrix(0.181795,-0.008735,0.011998,0.249712,0,0);-ms-transform:matrix(0.181795,-0.008735,0.011998,0.249712,0,0);-webkit-transform:matrix(0.181795,-0.008735,0.011998,0.249712,0,0);}
.m71_c00058{transform:matrix(0.181875,-0.008739,0.011998,0.249712,0,0);-ms-transform:matrix(0.181875,-0.008739,0.011998,0.249712,0,0);-webkit-transform:matrix(0.181875,-0.008739,0.011998,0.249712,0,0);}
.mbe_c00058{transform:matrix(0.181928,-0.005458,0.007497,0.249888,0,0);-ms-transform:matrix(0.181928,-0.005458,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181928,-0.005458,0.007497,0.249888,0,0);}
.mb8_c00058{transform:matrix(0.182623,-0.005479,0.007497,0.249888,0,0);-ms-transform:matrix(0.182623,-0.005479,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182623,-0.005479,0.007497,0.249888,0,0);}
.m44_c00058{transform:matrix(0.182669,-0.008777,0.011998,0.249712,0,0);-ms-transform:matrix(0.182669,-0.008777,0.011998,0.249712,0,0);-webkit-transform:matrix(0.182669,-0.008777,0.011998,0.249712,0,0);}
.m4d_c00058{transform:matrix(0.182799,-0.008783,0.011998,0.249712,0,0);-ms-transform:matrix(0.182799,-0.008783,0.011998,0.249712,0,0);-webkit-transform:matrix(0.182799,-0.008783,0.011998,0.249712,0,0);}
.m7f_c00058{transform:matrix(0.183045,-0.006047,0.008254,0.249864,0,0);-ms-transform:matrix(0.183045,-0.006047,0.008254,0.249864,0,0);-webkit-transform:matrix(0.183045,-0.006047,0.008254,0.249864,0,0);}
.mde_c00058{transform:matrix(0.183787,-0.005514,0.007497,0.249888,0,0);-ms-transform:matrix(0.183787,-0.005514,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183787,-0.005514,0.007497,0.249888,0,0);}
.m72_c00058{transform:matrix(0.183818,-0.008832,0.011998,0.249712,0,0);-ms-transform:matrix(0.183818,-0.008832,0.011998,0.249712,0,0);-webkit-transform:matrix(0.183818,-0.008832,0.011998,0.249712,0,0);}
.m68_c00058{transform:matrix(0.184048,-0.008843,0.011998,0.249712,0,0);-ms-transform:matrix(0.184048,-0.008843,0.011998,0.249712,0,0);-webkit-transform:matrix(0.184048,-0.008843,0.011998,0.249712,0,0);}
.m9b_c00058{transform:matrix(0.184278,-0.004976,0.006748,0.249909,0,0);-ms-transform:matrix(0.184278,-0.004976,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184278,-0.004976,0.006748,0.249909,0,0);}
.mbc_c00058{transform:matrix(0.184967,-0.005549,0.007497,0.249888,0,0);-ms-transform:matrix(0.184967,-0.005549,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184967,-0.005549,0.007497,0.249888,0,0);}
.ma6_c00058{transform:matrix(0.186031,-0.005581,0.007497,0.249888,0,0);-ms-transform:matrix(0.186031,-0.005581,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186031,-0.005581,0.007497,0.249888,0,0);}
.m5c_c00058{transform:matrix(0.186260,-0.008949,0.011998,0.249712,0,0);-ms-transform:matrix(0.186260,-0.008949,0.011998,0.249712,0,0);-webkit-transform:matrix(0.186260,-0.008949,0.011998,0.249712,0,0);}
.m75_c00058{transform:matrix(0.186310,-0.008952,0.011998,0.249712,0,0);-ms-transform:matrix(0.186310,-0.008952,0.011998,0.249712,0,0);-webkit-transform:matrix(0.186310,-0.008952,0.011998,0.249712,0,0);}
.m22_c00058{transform:matrix(0.186670,-0.008969,0.011998,0.249712,0,0);-ms-transform:matrix(0.186670,-0.008969,0.011998,0.249712,0,0);-webkit-transform:matrix(0.186670,-0.008969,0.011998,0.249712,0,0);}
.mf_c00058{transform:matrix(0.186680,-0.008970,0.011998,0.249712,0,0);-ms-transform:matrix(0.186680,-0.008970,0.011998,0.249712,0,0);-webkit-transform:matrix(0.186680,-0.008970,0.011998,0.249712,0,0);}
.mc3_c00058{transform:matrix(0.186811,-0.005604,0.007497,0.249888,0,0);-ms-transform:matrix(0.186811,-0.005604,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186811,-0.005604,0.007497,0.249888,0,0);}
.m92_c00058{transform:matrix(0.187022,-0.005050,0.006748,0.249909,0,0);-ms-transform:matrix(0.187022,-0.005050,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187022,-0.005050,0.006748,0.249909,0,0);}
.m40_c00058{transform:matrix(0.188033,-0.009035,0.011998,0.249712,0,0);-ms-transform:matrix(0.188033,-0.009035,0.011998,0.249712,0,0);-webkit-transform:matrix(0.188033,-0.009035,0.011998,0.249712,0,0);}
.m66_c00058{transform:matrix(0.188133,-0.009039,0.011998,0.249712,0,0);-ms-transform:matrix(0.188133,-0.009039,0.011998,0.249712,0,0);-webkit-transform:matrix(0.188133,-0.009039,0.011998,0.249712,0,0);}
.mf5_c00058{transform:matrix(0.188570,-0.005657,0.007497,0.249888,0,0);-ms-transform:matrix(0.188570,-0.005657,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188570,-0.005657,0.007497,0.249888,0,0);}
.m85_c00058{transform:matrix(0.188681,-0.005094,0.006748,0.249909,0,0);-ms-transform:matrix(0.188681,-0.005094,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188681,-0.005094,0.006748,0.249909,0,0);}
.m12_c00058{transform:matrix(0.188832,-0.009073,0.011998,0.249712,0,0);-ms-transform:matrix(0.188832,-0.009073,0.011998,0.249712,0,0);-webkit-transform:matrix(0.188832,-0.009073,0.011998,0.249712,0,0);}
.mb2_c00058{transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);-ms-transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);}
.m47_c00058{transform:matrix(0.189766,-0.009118,0.011998,0.249712,0,0);-ms-transform:matrix(0.189766,-0.009118,0.011998,0.249712,0,0);-webkit-transform:matrix(0.189766,-0.009118,0.011998,0.249712,0,0);}
.ma2_c00058{transform:matrix(0.189880,-0.005696,0.007497,0.249888,0,0);-ms-transform:matrix(0.189880,-0.005696,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189880,-0.005696,0.007497,0.249888,0,0);}
.m14_c00058{transform:matrix(0.189886,-0.009124,0.011998,0.249712,0,0);-ms-transform:matrix(0.189886,-0.009124,0.011998,0.249712,0,0);-webkit-transform:matrix(0.189886,-0.009124,0.011998,0.249712,0,0);}
.mc2_c00058{transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);-ms-transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);}
.m4e_c00058{transform:matrix(0.190031,-0.009131,0.011998,0.249712,0,0);-ms-transform:matrix(0.190031,-0.009131,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190031,-0.009131,0.011998,0.249712,0,0);}
.m4f_c00058{transform:matrix(0.190066,-0.009132,0.011998,0.249712,0,0);-ms-transform:matrix(0.190066,-0.009132,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190066,-0.009132,0.011998,0.249712,0,0);}
.m38_c00058{transform:matrix(0.190156,-0.009137,0.011998,0.249712,0,0);-ms-transform:matrix(0.190156,-0.009137,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190156,-0.009137,0.011998,0.249712,0,0);}
.m74_c00058{transform:matrix(0.190176,-0.009138,0.011998,0.249712,0,0);-ms-transform:matrix(0.190176,-0.009138,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190176,-0.009138,0.011998,0.249712,0,0);}
.md4_c00058{transform:matrix(0.190309,-0.005709,0.007497,0.249888,0,0);-ms-transform:matrix(0.190309,-0.005709,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190309,-0.005709,0.007497,0.249888,0,0);}
.m32_c00058{transform:matrix(0.190320,-0.009145,0.011998,0.249712,0,0);-ms-transform:matrix(0.190320,-0.009145,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190320,-0.009145,0.011998,0.249712,0,0);}
.me0_c00058{transform:matrix(0.190894,-0.005727,0.007497,0.249888,0,0);-ms-transform:matrix(0.190894,-0.005727,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190894,-0.005727,0.007497,0.249888,0,0);}
.m5e_c00058{transform:matrix(0.191065,-0.009180,0.011998,0.249712,0,0);-ms-transform:matrix(0.191065,-0.009180,0.011998,0.249712,0,0);-webkit-transform:matrix(0.191065,-0.009180,0.011998,0.249712,0,0);}
.m56_c00058{transform:matrix(0.191314,-0.009192,0.011998,0.249712,0,0);-ms-transform:matrix(0.191314,-0.009192,0.011998,0.249712,0,0);-webkit-transform:matrix(0.191314,-0.009192,0.011998,0.249712,0,0);}
.m86_c00058{transform:matrix(0.191405,-0.005168,0.006748,0.249909,0,0);-ms-transform:matrix(0.191405,-0.005168,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191405,-0.005168,0.006748,0.249909,0,0);}
.mb6_c00058{transform:matrix(0.191649,-0.005749,0.007497,0.249888,0,0);-ms-transform:matrix(0.191649,-0.005749,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191649,-0.005749,0.007497,0.249888,0,0);}
.m6d_c00058{transform:matrix(0.191959,-0.009223,0.011998,0.249712,0,0);-ms-transform:matrix(0.191959,-0.009223,0.011998,0.249712,0,0);-webkit-transform:matrix(0.191959,-0.009223,0.011998,0.249712,0,0);}
.mbf_c00058{transform:matrix(0.191969,-0.005759,0.007497,0.249888,0,0);-ms-transform:matrix(0.191969,-0.005759,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191969,-0.005759,0.007497,0.249888,0,0);}
.me2_c00058{transform:matrix(0.192054,-0.005762,0.007497,0.249888,0,0);-ms-transform:matrix(0.192054,-0.005762,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192054,-0.005762,0.007497,0.249888,0,0);}
.mcf_c00058{transform:matrix(0.192593,-0.005778,0.007497,0.249888,0,0);-ms-transform:matrix(0.192593,-0.005778,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192593,-0.005778,0.007497,0.249888,0,0);}
.m7a_c00058{transform:matrix(0.192850,-0.006370,0.008254,0.249864,0,0);-ms-transform:matrix(0.192850,-0.006370,0.008254,0.249864,0,0);-webkit-transform:matrix(0.192850,-0.006370,0.008254,0.249864,0,0);}
.mc6_c00058{transform:matrix(0.193033,-0.005791,0.007497,0.249888,0,0);-ms-transform:matrix(0.193033,-0.005791,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193033,-0.005791,0.007497,0.249888,0,0);}
.m1e_c00058{transform:matrix(0.193577,-0.009301,0.011998,0.249712,0,0);-ms-transform:matrix(0.193577,-0.009301,0.011998,0.249712,0,0);-webkit-transform:matrix(0.193577,-0.009301,0.011998,0.249712,0,0);}
.m83_c00058{transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);-ms-transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);}
.mae_c00058{transform:matrix(0.193943,-0.005818,0.007497,0.249888,0,0);-ms-transform:matrix(0.193943,-0.005818,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193943,-0.005818,0.007497,0.249888,0,0);}
.m4a_c00058{transform:matrix(0.194131,-0.009328,0.011998,0.249712,0,0);-ms-transform:matrix(0.194131,-0.009328,0.011998,0.249712,0,0);-webkit-transform:matrix(0.194131,-0.009328,0.011998,0.249712,0,0);}
.m33_c00058{transform:matrix(0.194306,-0.009336,0.011998,0.249712,0,0);-ms-transform:matrix(0.194306,-0.009336,0.011998,0.249712,0,0);-webkit-transform:matrix(0.194306,-0.009336,0.011998,0.249712,0,0);}
.m67_c00058{transform:matrix(0.194531,-0.009347,0.011998,0.249712,0,0);-ms-transform:matrix(0.194531,-0.009347,0.011998,0.249712,0,0);-webkit-transform:matrix(0.194531,-0.009347,0.011998,0.249712,0,0);}
.m49_c00058{transform:matrix(0.194581,-0.009349,0.011998,0.249712,0,0);-ms-transform:matrix(0.194581,-0.009349,0.011998,0.249712,0,0);-webkit-transform:matrix(0.194581,-0.009349,0.011998,0.249712,0,0);}
.m52_c00058{transform:matrix(0.194591,-0.009350,0.011998,0.249712,0,0);-ms-transform:matrix(0.194591,-0.009350,0.011998,0.249712,0,0);-webkit-transform:matrix(0.194591,-0.009350,0.011998,0.249712,0,0);}
.me8_c00058{transform:matrix(0.194747,-0.005842,0.007497,0.249888,0,0);-ms-transform:matrix(0.194747,-0.005842,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194747,-0.005842,0.007497,0.249888,0,0);}
.md2_c00058{transform:matrix(0.195227,-0.005857,0.007497,0.249888,0,0);-ms-transform:matrix(0.195227,-0.005857,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195227,-0.005857,0.007497,0.249888,0,0);}
.m36_c00058{transform:matrix(0.195235,-0.009381,0.011998,0.249712,0,0);-ms-transform:matrix(0.195235,-0.009381,0.011998,0.249712,0,0);-webkit-transform:matrix(0.195235,-0.009381,0.011998,0.249712,0,0);}
.ma4_c00058{transform:matrix(0.195402,-0.005862,0.007497,0.249888,0,0);-ms-transform:matrix(0.195402,-0.005862,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195402,-0.005862,0.007497,0.249888,0,0);}
.m21_c00058{transform:matrix(0.195639,-0.009400,0.011998,0.249712,0,0);-ms-transform:matrix(0.195639,-0.009400,0.011998,0.249712,0,0);-webkit-transform:matrix(0.195639,-0.009400,0.011998,0.249712,0,0);}
.m5f_c00058{transform:matrix(0.196089,-0.009422,0.011998,0.249712,0,0);-ms-transform:matrix(0.196089,-0.009422,0.011998,0.249712,0,0);-webkit-transform:matrix(0.196089,-0.009422,0.011998,0.249712,0,0);}
.m1f_c00058{transform:matrix(0.196478,-0.009440,0.011998,0.249712,0,0);-ms-transform:matrix(0.196478,-0.009440,0.011998,0.249712,0,0);-webkit-transform:matrix(0.196478,-0.009440,0.011998,0.249712,0,0);}
.md_c00058{transform:matrix(0.196588,-0.009446,0.011998,0.249712,0,0);-ms-transform:matrix(0.196588,-0.009446,0.011998,0.249712,0,0);-webkit-transform:matrix(0.196588,-0.009446,0.011998,0.249712,0,0);}
.ma_c00058{transform:matrix(0.196973,-0.009464,0.011998,0.249712,0,0);-ms-transform:matrix(0.196973,-0.009464,0.011998,0.249712,0,0);-webkit-transform:matrix(0.196973,-0.009464,0.011998,0.249712,0,0);}
.mea_c00058{transform:matrix(0.197056,-0.005912,0.007497,0.249888,0,0);-ms-transform:matrix(0.197056,-0.005912,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197056,-0.005912,0.007497,0.249888,0,0);}
.m13_c00058{transform:matrix(0.197237,-0.009477,0.011998,0.249712,0,0);-ms-transform:matrix(0.197237,-0.009477,0.011998,0.249712,0,0);-webkit-transform:matrix(0.197237,-0.009477,0.011998,0.249712,0,0);}
.m30_c00058{transform:matrix(0.197247,-0.009477,0.011998,0.249712,0,0);-ms-transform:matrix(0.197247,-0.009477,0.011998,0.249712,0,0);-webkit-transform:matrix(0.197247,-0.009477,0.011998,0.249712,0,0);}
.me1_c00058{transform:matrix(0.197641,-0.005929,0.007497,0.249888,0,0);-ms-transform:matrix(0.197641,-0.005929,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197641,-0.005929,0.007497,0.249888,0,0);}
.me5_c00058{transform:matrix(0.198126,-0.005944,0.007497,0.249888,0,0);-ms-transform:matrix(0.198126,-0.005944,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198126,-0.005944,0.007497,0.249888,0,0);}
.m19_c00058{transform:matrix(0.198131,-0.009520,0.011998,0.249712,0,0);-ms-transform:matrix(0.198131,-0.009520,0.011998,0.249712,0,0);-webkit-transform:matrix(0.198131,-0.009520,0.011998,0.249712,0,0);}
.mc0_c00058{transform:matrix(0.198281,-0.005948,0.007497,0.249888,0,0);-ms-transform:matrix(0.198281,-0.005948,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198281,-0.005948,0.007497,0.249888,0,0);}
.m9f_c00058{transform:matrix(0.198311,-0.005949,0.007497,0.249888,0,0);-ms-transform:matrix(0.198311,-0.005949,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198311,-0.005949,0.007497,0.249888,0,0);}
.md6_c00058{transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);-ms-transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);}
.mdf_c00058{transform:matrix(0.199245,-0.005977,0.007497,0.249888,0,0);-ms-transform:matrix(0.199245,-0.005977,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199245,-0.005977,0.007497,0.249888,0,0);}
.mb1_c00058{transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);-ms-transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);}
.m3f_c00058{transform:matrix(0.199675,-0.009594,0.011998,0.249712,0,0);-ms-transform:matrix(0.199675,-0.009594,0.011998,0.249712,0,0);-webkit-transform:matrix(0.199675,-0.009594,0.011998,0.249712,0,0);}
.mec_c00058{transform:matrix(0.200155,-0.006005,0.007497,0.249888,0,0);-ms-transform:matrix(0.200155,-0.006005,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200155,-0.006005,0.007497,0.249888,0,0);}
.m8f_c00058{transform:matrix(0.200472,-0.005413,0.006748,0.249909,0,0);-ms-transform:matrix(0.200472,-0.005413,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200472,-0.005413,0.006748,0.249909,0,0);}
.m18_c00058{transform:matrix(0.201003,-0.009658,0.011998,0.249712,0,0);-ms-transform:matrix(0.201003,-0.009658,0.011998,0.249712,0,0);-webkit-transform:matrix(0.201003,-0.009658,0.011998,0.249712,0,0);}
.m55_c00058{transform:matrix(0.201073,-0.009661,0.011998,0.249712,0,0);-ms-transform:matrix(0.201073,-0.009661,0.011998,0.249712,0,0);-webkit-transform:matrix(0.201073,-0.009661,0.011998,0.249712,0,0);}
.mc4_c00058{transform:matrix(0.201095,-0.006033,0.007497,0.249888,0,0);-ms-transform:matrix(0.201095,-0.006033,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201095,-0.006033,0.007497,0.249888,0,0);}
.m45_c00058{transform:matrix(0.201273,-0.009671,0.011998,0.249712,0,0);-ms-transform:matrix(0.201273,-0.009671,0.011998,0.249712,0,0);-webkit-transform:matrix(0.201273,-0.009671,0.011998,0.249712,0,0);}
.m5d_c00058{transform:matrix(0.201732,-0.009693,0.011998,0.249712,0,0);-ms-transform:matrix(0.201732,-0.009693,0.011998,0.249712,0,0);-webkit-transform:matrix(0.201732,-0.009693,0.011998,0.249712,0,0);}
.mca_c00058{transform:matrix(0.201734,-0.006052,0.007497,0.249888,0,0);-ms-transform:matrix(0.201734,-0.006052,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201734,-0.006052,0.007497,0.249888,0,0);}
.ma0_c00058{transform:matrix(0.201924,-0.006058,0.007497,0.249888,0,0);-ms-transform:matrix(0.201924,-0.006058,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201924,-0.006058,0.007497,0.249888,0,0);}
.m6b_c00058{transform:matrix(0.202481,-0.009729,0.011998,0.249712,0,0);-ms-transform:matrix(0.202481,-0.009729,0.011998,0.249712,0,0);-webkit-transform:matrix(0.202481,-0.009729,0.011998,0.249712,0,0);}
.m4c_c00058{transform:matrix(0.202651,-0.009737,0.011998,0.249712,0,0);-ms-transform:matrix(0.202651,-0.009737,0.011998,0.249712,0,0);-webkit-transform:matrix(0.202651,-0.009737,0.011998,0.249712,0,0);}
.m7d_c00058{transform:matrix(0.203079,-0.006708,0.008254,0.249864,0,0);-ms-transform:matrix(0.203079,-0.006708,0.008254,0.249864,0,0);-webkit-transform:matrix(0.203079,-0.006708,0.008254,0.249864,0,0);}
.mc_c00058{transform:matrix(0.203405,-0.009773,0.011998,0.249712,0,0);-ms-transform:matrix(0.203405,-0.009773,0.011998,0.249712,0,0);-webkit-transform:matrix(0.203405,-0.009773,0.011998,0.249712,0,0);}
.m34_c00058{transform:matrix(0.203675,-0.009786,0.011998,0.249712,0,0);-ms-transform:matrix(0.203675,-0.009786,0.011998,0.249712,0,0);-webkit-transform:matrix(0.203675,-0.009786,0.011998,0.249712,0,0);}
.m50_c00058{transform:matrix(0.203990,-0.009801,0.011998,0.249712,0,0);-ms-transform:matrix(0.203990,-0.009801,0.011998,0.249712,0,0);-webkit-transform:matrix(0.203990,-0.009801,0.011998,0.249712,0,0);}
.m11_c00058{transform:matrix(0.203995,-0.009802,0.011998,0.249712,0,0);-ms-transform:matrix(0.203995,-0.009802,0.011998,0.249712,0,0);-webkit-transform:matrix(0.203995,-0.009802,0.011998,0.249712,0,0);}
.mda_c00058{transform:matrix(0.204208,-0.006126,0.007497,0.249888,0,0);-ms-transform:matrix(0.204208,-0.006126,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204208,-0.006126,0.007497,0.249888,0,0);}
.m60_c00058{transform:matrix(0.204304,-0.009816,0.011998,0.249712,0,0);-ms-transform:matrix(0.204304,-0.009816,0.011998,0.249712,0,0);-webkit-transform:matrix(0.204304,-0.009816,0.011998,0.249712,0,0);}
.mba_c00058{transform:matrix(0.205108,-0.006153,0.007497,0.249888,0,0);-ms-transform:matrix(0.205108,-0.006153,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205108,-0.006153,0.007497,0.249888,0,0);}
.m9a_c00058{transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-ms-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);}
.mdc_c00058{transform:matrix(0.205538,-0.006166,0.007497,0.249888,0,0);-ms-transform:matrix(0.205538,-0.006166,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205538,-0.006166,0.007497,0.249888,0,0);}
.m10_c00058{transform:matrix(0.205648,-0.009881,0.011998,0.249712,0,0);-ms-transform:matrix(0.205648,-0.009881,0.011998,0.249712,0,0);-webkit-transform:matrix(0.205648,-0.009881,0.011998,0.249712,0,0);}
.mcc_c00058{transform:matrix(0.205657,-0.006170,0.007497,0.249888,0,0);-ms-transform:matrix(0.205657,-0.006170,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205657,-0.006170,0.007497,0.249888,0,0);}
.m7b_c00058{transform:matrix(0.205713,-0.006795,0.008254,0.249864,0,0);-ms-transform:matrix(0.205713,-0.006795,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205713,-0.006795,0.008254,0.249864,0,0);}
.m8b_c00058{transform:matrix(0.205890,-0.005559,0.006748,0.249909,0,0);-ms-transform:matrix(0.205890,-0.005559,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205890,-0.005559,0.006748,0.249909,0,0);}
.maa_c00058{transform:matrix(0.206262,-0.006188,0.007497,0.249888,0,0);-ms-transform:matrix(0.206262,-0.006188,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206262,-0.006188,0.007497,0.249888,0,0);}
.md8_c00058{transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);-ms-transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);}
.mc8_c00058{transform:matrix(0.206687,-0.006201,0.007497,0.249888,0,0);-ms-transform:matrix(0.206687,-0.006201,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206687,-0.006201,0.007497,0.249888,0,0);}
.me9_c00058{transform:matrix(0.207722,-0.006232,0.007497,0.249888,0,0);-ms-transform:matrix(0.207722,-0.006232,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207722,-0.006232,0.007497,0.249888,0,0);}
.me3_c00058{transform:matrix(0.207831,-0.006235,0.007497,0.249888,0,0);-ms-transform:matrix(0.207831,-0.006235,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207831,-0.006235,0.007497,0.249888,0,0);}
.md5_c00058{transform:matrix(0.208286,-0.006249,0.007497,0.249888,0,0);-ms-transform:matrix(0.208286,-0.006249,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208286,-0.006249,0.007497,0.249888,0,0);}
.mf2_c00058{transform:matrix(0.208356,-0.006251,0.007497,0.249888,0,0);-ms-transform:matrix(0.208356,-0.006251,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208356,-0.006251,0.007497,0.249888,0,0);}
.md3_c00058{transform:matrix(0.208461,-0.006254,0.007497,0.249888,0,0);-ms-transform:matrix(0.208461,-0.006254,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208461,-0.006254,0.007497,0.249888,0,0);}
.m1d_c00058{transform:matrix(0.208465,-0.010016,0.011998,0.249712,0,0);-ms-transform:matrix(0.208465,-0.010016,0.011998,0.249712,0,0);-webkit-transform:matrix(0.208465,-0.010016,0.011998,0.249712,0,0);}
.mab_c00058{transform:matrix(0.208511,-0.006255,0.007497,0.249888,0,0);-ms-transform:matrix(0.208511,-0.006255,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208511,-0.006255,0.007497,0.249888,0,0);}
.ma9_c00058{transform:matrix(0.208606,-0.006258,0.007497,0.249888,0,0);-ms-transform:matrix(0.208606,-0.006258,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208606,-0.006258,0.007497,0.249888,0,0);}
.m1b_c00058{transform:matrix(0.208644,-0.010025,0.011998,0.249712,0,0);-ms-transform:matrix(0.208644,-0.010025,0.011998,0.249712,0,0);-webkit-transform:matrix(0.208644,-0.010025,0.011998,0.249712,0,0);}
.m53_c00058{transform:matrix(0.208739,-0.010030,0.011998,0.249712,0,0);-ms-transform:matrix(0.208739,-0.010030,0.011998,0.249712,0,0);-webkit-transform:matrix(0.208739,-0.010030,0.011998,0.249712,0,0);}
.ma8_c00058{transform:matrix(0.209281,-0.006278,0.007497,0.249888,0,0);-ms-transform:matrix(0.209281,-0.006278,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209281,-0.006278,0.007497,0.249888,0,0);}
.ma5_c00058{transform:matrix(0.209571,-0.006287,0.007497,0.249888,0,0);-ms-transform:matrix(0.209571,-0.006287,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209571,-0.006287,0.007497,0.249888,0,0);}
.m3d_c00058{transform:matrix(0.209648,-0.010073,0.011998,0.249712,0,0);-ms-transform:matrix(0.209648,-0.010073,0.011998,0.249712,0,0);-webkit-transform:matrix(0.209648,-0.010073,0.011998,0.249712,0,0);}
.m70_c00058{transform:matrix(0.209948,-0.010088,0.011998,0.249712,0,0);-ms-transform:matrix(0.209948,-0.010088,0.011998,0.249712,0,0);-webkit-transform:matrix(0.209948,-0.010088,0.011998,0.249712,0,0);}
.m6a_c00058{transform:matrix(0.210342,-0.010107,0.011998,0.249712,0,0);-ms-transform:matrix(0.210342,-0.010107,0.011998,0.249712,0,0);-webkit-transform:matrix(0.210342,-0.010107,0.011998,0.249712,0,0);}
.m2a_c00058{transform:matrix(0.210682,-0.010123,0.011998,0.249712,0,0);-ms-transform:matrix(0.210682,-0.010123,0.011998,0.249712,0,0);-webkit-transform:matrix(0.210682,-0.010123,0.011998,0.249712,0,0);}
.m6e_c00058{transform:matrix(0.211726,-0.010173,0.011998,0.249712,0,0);-ms-transform:matrix(0.211726,-0.010173,0.011998,0.249712,0,0);-webkit-transform:matrix(0.211726,-0.010173,0.011998,0.249712,0,0);}
.mb0_c00058{transform:matrix(0.212270,-0.006368,0.007497,0.249888,0,0);-ms-transform:matrix(0.212270,-0.006368,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212270,-0.006368,0.007497,0.249888,0,0);}
.mc9_c00058{transform:matrix(0.213234,-0.006397,0.007497,0.249888,0,0);-ms-transform:matrix(0.213234,-0.006397,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213234,-0.006397,0.007497,0.249888,0,0);}
.m64_c00058{transform:matrix(0.213609,-0.010263,0.011998,0.249712,0,0);-ms-transform:matrix(0.213609,-0.010263,0.011998,0.249712,0,0);-webkit-transform:matrix(0.213609,-0.010263,0.011998,0.249712,0,0);}
.m2d_c00058{transform:matrix(0.214158,-0.010290,0.011998,0.249712,0,0);-ms-transform:matrix(0.214158,-0.010290,0.011998,0.249712,0,0);-webkit-transform:matrix(0.214158,-0.010290,0.011998,0.249712,0,0);}
.m99_c00058{transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);-ms-transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);}
.m62_c00058{transform:matrix(0.215926,-0.010375,0.011998,0.249712,0,0);-ms-transform:matrix(0.215926,-0.010375,0.011998,0.249712,0,0);-webkit-transform:matrix(0.215926,-0.010375,0.011998,0.249712,0,0);}
.me7_c00058{transform:matrix(0.216423,-0.006493,0.007497,0.249888,0,0);-ms-transform:matrix(0.216423,-0.006493,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216423,-0.006493,0.007497,0.249888,0,0);}
.mcd_c00058{transform:matrix(0.217267,-0.006518,0.007497,0.249888,0,0);-ms-transform:matrix(0.217267,-0.006518,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217267,-0.006518,0.007497,0.249888,0,0);}
.m8c_c00058{transform:matrix(0.217641,-0.005876,0.006748,0.249909,0,0);-ms-transform:matrix(0.217641,-0.005876,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217641,-0.005876,0.006748,0.249909,0,0);}
.m2c_c00058{transform:matrix(0.217884,-0.010469,0.011998,0.249712,0,0);-ms-transform:matrix(0.217884,-0.010469,0.011998,0.249712,0,0);-webkit-transform:matrix(0.217884,-0.010469,0.011998,0.249712,0,0);}
.mb7_c00058{transform:matrix(0.218287,-0.006549,0.007497,0.249888,0,0);-ms-transform:matrix(0.218287,-0.006549,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218287,-0.006549,0.007497,0.249888,0,0);}
.m73_c00058{transform:matrix(0.218848,-0.010515,0.011998,0.249712,0,0);-ms-transform:matrix(0.218848,-0.010515,0.011998,0.249712,0,0);-webkit-transform:matrix(0.218848,-0.010515,0.011998,0.249712,0,0);}
.m17_c00058{transform:matrix(0.218858,-0.010516,0.011998,0.249712,0,0);-ms-transform:matrix(0.218858,-0.010516,0.011998,0.249712,0,0);-webkit-transform:matrix(0.218858,-0.010516,0.011998,0.249712,0,0);}
.m9_c00058{transform:matrix(0.218987,-0.010522,0.011998,0.249712,0,0);-ms-transform:matrix(0.218987,-0.010522,0.011998,0.249712,0,0);-webkit-transform:matrix(0.218987,-0.010522,0.011998,0.249712,0,0);}
.m3e_c00058{transform:matrix(0.219117,-0.010528,0.011998,0.249712,0,0);-ms-transform:matrix(0.219117,-0.010528,0.011998,0.249712,0,0);-webkit-transform:matrix(0.219117,-0.010528,0.011998,0.249712,0,0);}
.m89_c00058{transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);-ms-transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);}
.mbb_c00058{transform:matrix(0.219761,-0.006593,0.007497,0.249888,0,0);-ms-transform:matrix(0.219761,-0.006593,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219761,-0.006593,0.007497,0.249888,0,0);}
.ma3_c00058{transform:matrix(0.219911,-0.006597,0.007497,0.249888,0,0);-ms-transform:matrix(0.219911,-0.006597,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219911,-0.006597,0.007497,0.249888,0,0);}
.maf_c00058{transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);-ms-transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);}
.m2b_c00058{transform:matrix(0.220740,-0.010606,0.011998,0.249712,0,0);-ms-transform:matrix(0.220740,-0.010606,0.011998,0.249712,0,0);-webkit-transform:matrix(0.220740,-0.010606,0.011998,0.249712,0,0);}
.m25_c00058{transform:matrix(0.221430,-0.010639,0.011998,0.249712,0,0);-ms-transform:matrix(0.221430,-0.010639,0.011998,0.249712,0,0);-webkit-transform:matrix(0.221430,-0.010639,0.011998,0.249712,0,0);}
.m2f_c00058{transform:matrix(0.221729,-0.010654,0.011998,0.249712,0,0);-ms-transform:matrix(0.221729,-0.010654,0.011998,0.249712,0,0);-webkit-transform:matrix(0.221729,-0.010654,0.011998,0.249712,0,0);}
.m8e_c00058{transform:matrix(0.221784,-0.005988,0.006748,0.249909,0,0);-ms-transform:matrix(0.221784,-0.005988,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221784,-0.005988,0.006748,0.249909,0,0);}
.m28_c00058{transform:matrix(0.222114,-0.010672,0.011998,0.249712,0,0);-ms-transform:matrix(0.222114,-0.010672,0.011998,0.249712,0,0);-webkit-transform:matrix(0.222114,-0.010672,0.011998,0.249712,0,0);}
.mb4_c00058{transform:matrix(0.222340,-0.006670,0.007497,0.249888,0,0);-ms-transform:matrix(0.222340,-0.006670,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222340,-0.006670,0.007497,0.249888,0,0);}
.ma7_c00058{transform:matrix(0.223030,-0.006691,0.007497,0.249888,0,0);-ms-transform:matrix(0.223030,-0.006691,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223030,-0.006691,0.007497,0.249888,0,0);}
.med_c00058{transform:matrix(0.223809,-0.006714,0.007497,0.249888,0,0);-ms-transform:matrix(0.223809,-0.006714,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223809,-0.006714,0.007497,0.249888,0,0);}
.m8d_c00058{transform:matrix(0.223953,-0.006047,0.006748,0.249909,0,0);-ms-transform:matrix(0.223953,-0.006047,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223953,-0.006047,0.006748,0.249909,0,0);}
.m37_c00058{transform:matrix(0.224101,-0.010768,0.011998,0.249712,0,0);-ms-transform:matrix(0.224101,-0.010768,0.011998,0.249712,0,0);-webkit-transform:matrix(0.224101,-0.010768,0.011998,0.249712,0,0);}
.m77_c00058{transform:matrix(0.224401,-0.010782,0.011998,0.249712,0,0);-ms-transform:matrix(0.224401,-0.010782,0.011998,0.249712,0,0);-webkit-transform:matrix(0.224401,-0.010782,0.011998,0.249712,0,0);}
.m43_c00058{transform:matrix(0.224456,-0.010785,0.011998,0.249712,0,0);-ms-transform:matrix(0.224456,-0.010785,0.011998,0.249712,0,0);-webkit-transform:matrix(0.224456,-0.010785,0.011998,0.249712,0,0);}
.mbd_c00058{transform:matrix(0.224474,-0.006734,0.007497,0.249888,0,0);-ms-transform:matrix(0.224474,-0.006734,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224474,-0.006734,0.007497,0.249888,0,0);}
.mb9_c00058{transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);-ms-transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);}
.m24_c00058{transform:matrix(0.226594,-0.010887,0.011998,0.249712,0,0);-ms-transform:matrix(0.226594,-0.010887,0.011998,0.249712,0,0);-webkit-transform:matrix(0.226594,-0.010887,0.011998,0.249712,0,0);}
.m5_c00058{transform:matrix(0.227413,-0.010927,0.011998,0.249712,0,0);-ms-transform:matrix(0.227413,-0.010927,0.011998,0.249712,0,0);-webkit-transform:matrix(0.227413,-0.010927,0.011998,0.249712,0,0);}
.m23_c00058{transform:matrix(0.227647,-0.010938,0.011998,0.249712,0,0);-ms-transform:matrix(0.227647,-0.010938,0.011998,0.249712,0,0);-webkit-transform:matrix(0.227647,-0.010938,0.011998,0.249712,0,0);}
.m76_c00058{transform:matrix(0.227857,-0.010948,0.011998,0.249712,0,0);-ms-transform:matrix(0.227857,-0.010948,0.011998,0.249712,0,0);-webkit-transform:matrix(0.227857,-0.010948,0.011998,0.249712,0,0);}
.m9e_c00058{transform:matrix(0.228802,-0.006864,0.007497,0.249888,0,0);-ms-transform:matrix(0.228802,-0.006864,0.007497,0.249888,0,0);-webkit-transform:matrix(0.228802,-0.006864,0.007497,0.249888,0,0);}
.m39_c00058{transform:matrix(0.231403,-0.011118,0.011998,0.249712,0,0);-ms-transform:matrix(0.231403,-0.011118,0.011998,0.249712,0,0);-webkit-transform:matrix(0.231403,-0.011118,0.011998,0.249712,0,0);}
.md9_c00058{transform:matrix(0.232325,-0.006970,0.007497,0.249888,0,0);-ms-transform:matrix(0.232325,-0.006970,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232325,-0.006970,0.007497,0.249888,0,0);}
.m84_c00058{transform:matrix(0.233745,-0.006311,0.006748,0.249909,0,0);-ms-transform:matrix(0.233745,-0.006311,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233745,-0.006311,0.006748,0.249909,0,0);}
.mdd_c00058{transform:matrix(0.234460,-0.007034,0.007497,0.249888,0,0);-ms-transform:matrix(0.234460,-0.007034,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234460,-0.007034,0.007497,0.249888,0,0);}
.me4_c00058{transform:matrix(0.236504,-0.007095,0.007497,0.249888,0,0);-ms-transform:matrix(0.236504,-0.007095,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236504,-0.007095,0.007497,0.249888,0,0);}
.m88_c00058{transform:matrix(0.238463,-0.006439,0.006748,0.249909,0,0);-ms-transform:matrix(0.238463,-0.006439,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238463,-0.006439,0.006748,0.249909,0,0);}
.m79_c00058{transform:matrix(0.238540,-0.007880,0.008254,0.249864,0,0);-ms-transform:matrix(0.238540,-0.007880,0.008254,0.249864,0,0);-webkit-transform:matrix(0.238540,-0.007880,0.008254,0.249864,0,0);}
.m82_c00058{transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);-ms-transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);}
.me_c00058{transform:matrix(0.241342,-0.011596,0.011998,0.249712,0,0);-ms-transform:matrix(0.241342,-0.011596,0.011998,0.249712,0,0);-webkit-transform:matrix(0.241342,-0.011596,0.011998,0.249712,0,0);}
.m9d_c00058{transform:matrix(0.242466,-0.007274,0.007497,0.249888,0,0);-ms-transform:matrix(0.242466,-0.007274,0.007497,0.249888,0,0);-webkit-transform:matrix(0.242466,-0.007274,0.007497,0.249888,0,0);}
.m9c_c00058{transform:matrix(0.242607,-0.006550,0.006748,0.249909,0,0);-ms-transform:matrix(0.242607,-0.006550,0.006748,0.249909,0,0);-webkit-transform:matrix(0.242607,-0.006550,0.006748,0.249909,0,0);}
.meb_c00058{transform:matrix(0.246694,-0.007401,0.007497,0.249888,0,0);-ms-transform:matrix(0.246694,-0.007401,0.007497,0.249888,0,0);-webkit-transform:matrix(0.246694,-0.007401,0.007497,0.249888,0,0);}
.m63_c00058{transform:matrix(0.250856,-0.012053,0.011998,0.249712,0,0);-ms-transform:matrix(0.250856,-0.012053,0.011998,0.249712,0,0);-webkit-transform:matrix(0.250856,-0.012053,0.011998,0.249712,0,0);}
.mad_c00058{transform:matrix(0.260963,-0.007829,0.007497,0.249888,0,0);-ms-transform:matrix(0.260963,-0.007829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.260963,-0.007829,0.007497,0.249888,0,0);}
.m8a_c00058{transform:matrix(0.261795,-0.007068,0.006748,0.249909,0,0);-ms-transform:matrix(0.261795,-0.007068,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261795,-0.007068,0.006748,0.249909,0,0);}
.m78_c00058{transform:matrix(0.266550,-0.008805,0.008254,0.249864,0,0);-ms-transform:matrix(0.266550,-0.008805,0.008254,0.249864,0,0);-webkit-transform:matrix(0.266550,-0.008805,0.008254,0.249864,0,0);}
.m0_c00058{transform:matrix(1.372100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.372100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.372100,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(1.584430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.584430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.584430,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(3.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.184150,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:0.000000px;}
.fc0_c00058{color:transparent;}
.fs0_c00058{font-size:22.050000px;}
.fsa_c00058{font-size:58.808966px;}
.fs10_c00058{font-size:59.876926px;}
.fsc_c00058{font-size:60.922194px;}
.fsf_c00058{font-size:60.927399px;}
.fsb_c00058{font-size:61.921806px;}
.fs7_c00058{font-size:61.959447px;}
.fse_c00058{font-size:61.977871px;}
.fs4_c00058{font-size:63.009607px;}
.fs13_c00058{font-size:63.028344px;}
.fs3_c00058{font-size:64.059767px;}
.fs12_c00058{font-size:64.078816px;}
.fs6_c00058{font-size:65.109927px;}
.fs5_c00058{font-size:66.160087px;}
.fs11_c00058{font-size:67.230233px;}
.fs8_c00058{font-size:68.260407px;}
.fs14_c00058{font-size:70.381650px;}
.fs2_c00058{font-size:71.410888px;}
.fsd_c00058{font-size:71.426021px;}
.fs9_c00058{font-size:73.511208px;}
.fs1_c00058{font-size:82.979235px;}
.y0_c00058{bottom:0.000000px;}
.yef_c00058{bottom:20.970390px;}
.yf0_c00058{bottom:21.383070px;}
.yf1_c00058{bottom:21.715500px;}
.yf2_c00058{bottom:22.174260px;}
.yf3_c00058{bottom:22.961640px;}
.yf4_c00058{bottom:23.921700px;}
.yf5_c00058{bottom:24.447600px;}
.yf6_c00058{bottom:24.903120px;}
.ye7_c00058{bottom:38.255940px;}
.ye8_c00058{bottom:38.476185px;}
.ye9_c00058{bottom:39.130545px;}
.yea_c00058{bottom:39.500655px;}
.yeb_c00058{bottom:39.986475px;}
.yec_c00058{bottom:40.452435px;}
.yed_c00058{bottom:40.611945px;}
.yee_c00058{bottom:41.529705px;}
.ye6_c00058{bottom:57.536265px;}
.ye4_c00058{bottom:57.536445px;}
.ye2_c00058{bottom:57.536835px;}
.ye5_c00058{bottom:57.536940px;}
.ye1_c00058{bottom:57.537000px;}
.ye3_c00058{bottom:57.537030px;}
.ye0_c00058{bottom:57.537375px;}
.yd8_c00058{bottom:72.835095px;}
.yd9_c00058{bottom:73.170345px;}
.yda_c00058{bottom:73.569930px;}
.ydb_c00058{bottom:74.985405px;}
.ydc_c00058{bottom:75.438990px;}
.ydd_c00058{bottom:76.264665px;}
.yde_c00058{bottom:77.340720px;}
.ydf_c00058{bottom:77.876250px;}
.yd1_c00058{bottom:89.856180px;}
.yd2_c00058{bottom:90.252765px;}
.yd3_c00058{bottom:90.792465px;}
.yd4_c00058{bottom:92.524830px;}
.yd5_c00058{bottom:93.952650px;}
.yd6_c00058{bottom:94.431435px;}
.yd7_c00058{bottom:95.501700px;}
.ycb_c00058{bottom:109.300950px;}
.ycc_c00058{bottom:109.586190px;}
.ycd_c00058{bottom:110.644470px;}
.yce_c00058{bottom:112.321455px;}
.ycf_c00058{bottom:112.766340px;}
.yd0_c00058{bottom:113.229390px;}
.yc3_c00058{bottom:126.861090px;}
.yc4_c00058{bottom:127.861050px;}
.yc5_c00058{bottom:128.243310px;}
.yc6_c00058{bottom:128.588850px;}
.yc7_c00058{bottom:129.736005px;}
.yc8_c00058{bottom:130.067145px;}
.yc9_c00058{bottom:131.232525px;}
.yca_c00058{bottom:131.448930px;}
.ybc_c00058{bottom:142.263390px;}
.ybd_c00058{bottom:142.901880px;}
.ybe_c00058{bottom:144.615585px;}
.ybf_c00058{bottom:145.907250px;}
.yc0_c00058{bottom:146.501820px;}
.yc1_c00058{bottom:147.758760px;}
.yc2_c00058{bottom:148.235655px;}
.yb6_c00058{bottom:161.977800px;}
.yb7_c00058{bottom:163.173870px;}
.yb8_c00058{bottom:164.072940px;}
.yb9_c00058{bottom:164.453730px;}
.yba_c00058{bottom:165.970830px;}
.ybb_c00058{bottom:166.330395px;}
.yad_c00058{bottom:175.764585px;}
.yae_c00058{bottom:176.632155px;}
.yaf_c00058{bottom:178.252185px;}
.yb0_c00058{bottom:179.251695px;}
.yb1_c00058{bottom:180.290070px;}
.yb2_c00058{bottom:181.836360px;}
.yb3_c00058{bottom:182.639655px;}
.yb4_c00058{bottom:183.317250px;}
.yb5_c00058{bottom:184.156035px;}
.ya4_c00058{bottom:193.590030px;}
.y1_c00058{bottom:194.400000px;}
.ya5_c00058{bottom:194.808885px;}
.ya6_c00058{bottom:195.406740px;}
.ya7_c00058{bottom:195.994470px;}
.ya8_c00058{bottom:197.554590px;}
.ya9_c00058{bottom:198.220920px;}
.yaa_c00058{bottom:199.619460px;}
.yab_c00058{bottom:200.681910px;}
.yac_c00058{bottom:201.702180px;}
.y9d_c00058{bottom:211.152000px;}
.y9e_c00058{bottom:211.908945px;}
.y9f_c00058{bottom:213.304170px;}
.ya0_c00058{bottom:214.594635px;}
.ya1_c00058{bottom:215.208255px;}
.ya2_c00058{bottom:216.342480px;}
.ya3_c00058{bottom:217.875360px;}
.y99_c00058{bottom:228.944029px;}
.y9a_c00058{bottom:229.998307px;}
.y9b_c00058{bottom:230.423598px;}
.y9c_c00058{bottom:230.770260px;}
.y90_c00058{bottom:245.694100px;}
.y91_c00058{bottom:246.564492px;}
.y92_c00058{bottom:247.343749px;}
.y93_c00058{bottom:249.241201px;}
.y94_c00058{bottom:249.858442px;}
.y95_c00058{bottom:250.786269px;}
.y96_c00058{bottom:252.361593px;}
.y97_c00058{bottom:253.192371px;}
.y98_c00058{bottom:253.691664px;}
.y2_c00058{bottom:257.040000px;}
.y8a_c00058{bottom:263.805210px;}
.y8b_c00058{bottom:265.634761px;}
.y8c_c00058{bottom:266.433720px;}
.y8d_c00058{bottom:267.068074px;}
.y8e_c00058{bottom:269.534653px;}
.y8f_c00058{bottom:271.205029px;}
.y81_c00058{bottom:282.159000px;}
.y82_c00058{bottom:283.044330px;}
.y83_c00058{bottom:283.434507px;}
.y84_c00058{bottom:284.114016px;}
.y85_c00058{bottom:286.333902px;}
.y86_c00058{bottom:287.019486px;}
.y87_c00058{bottom:287.774203px;}
.y88_c00058{bottom:288.227196px;}
.y89_c00058{bottom:289.678149px;}
.y78_c00058{bottom:298.635000px;}
.y79_c00058{bottom:299.552235px;}
.y7a_c00058{bottom:301.199991px;}
.y7b_c00058{bottom:302.515602px;}
.y7c_c00058{bottom:303.830817px;}
.y7d_c00058{bottom:304.644696px;}
.y7e_c00058{bottom:306.920607px;}
.y7f_c00058{bottom:307.603261px;}
.y80_c00058{bottom:308.177709px;}
.y70_c00058{bottom:315.074317px;}
.y71_c00058{bottom:317.110441px;}
.y72_c00058{bottom:317.971687px;}
.y73_c00058{bottom:318.900978px;}
.y74_c00058{bottom:321.852613px;}
.y75_c00058{bottom:322.915230px;}
.y76_c00058{bottom:324.606132px;}
.y77_c00058{bottom:325.450863px;}
.y64_c00058{bottom:330.742422px;}
.y65_c00058{bottom:332.683407px;}
.y66_c00058{bottom:333.876825px;}
.y67_c00058{bottom:335.293096px;}
.y68_c00058{bottom:335.670264px;}
.y69_c00058{bottom:336.806028px;}
.y6a_c00058{bottom:338.110519px;}
.y6b_c00058{bottom:338.698444px;}
.y6c_c00058{bottom:339.343015px;}
.y6d_c00058{bottom:340.207416px;}
.y6e_c00058{bottom:342.577318px;}
.y6f_c00058{bottom:343.205316px;}
.y5d_c00058{bottom:349.366860px;}
.y5e_c00058{bottom:352.956487px;}
.y5f_c00058{bottom:354.420850px;}
.y60_c00058{bottom:355.997038px;}
.y61_c00058{bottom:356.828548px;}
.y62_c00058{bottom:357.481818px;}
.y63_c00058{bottom:359.712283px;}
.y57_c00058{bottom:365.842345px;}
.y58_c00058{bottom:368.775351px;}
.y59_c00058{bottom:369.569155px;}
.y5a_c00058{bottom:372.520071px;}
.y5b_c00058{bottom:373.630410px;}
.y5c_c00058{bottom:374.776542px;}
.y50_c00058{bottom:380.706115px;}
.y51_c00058{bottom:381.291345px;}
.y52_c00058{bottom:382.258179px;}
.y53_c00058{bottom:385.862103px;}
.y54_c00058{bottom:388.783498px;}
.y55_c00058{bottom:389.729511px;}
.y56_c00058{bottom:392.918265px;}
.y49_c00058{bottom:397.719765px;}
.y4a_c00058{bottom:400.062802px;}
.y4b_c00058{bottom:401.034991px;}
.y4c_c00058{bottom:403.227378px;}
.y4d_c00058{bottom:406.620666px;}
.y4e_c00058{bottom:407.716420px;}
.y4f_c00058{bottom:409.701262px;}
.y41_c00058{bottom:415.541682px;}
.y42_c00058{bottom:416.489449px;}
.y43_c00058{bottom:419.013535px;}
.y44_c00058{bottom:420.169423px;}
.y45_c00058{bottom:422.321620px;}
.y46_c00058{bottom:423.955755px;}
.y47_c00058{bottom:426.691561px;}
.y48_c00058{bottom:428.861844px;}
.y3a_c00058{bottom:433.088671px;}
.y3b_c00058{bottom:435.846847px;}
.y3c_c00058{bottom:436.691947px;}
.y3d_c00058{bottom:438.988702px;}
.y3e_c00058{bottom:439.593241px;}
.y3f_c00058{bottom:442.364521px;}
.y40_c00058{bottom:445.080204px;}
.y33_c00058{bottom:450.104971px;}
.y34_c00058{bottom:452.499574px;}
.y35_c00058{bottom:453.594249px;}
.y36_c00058{bottom:454.661491px;}
.y37_c00058{bottom:457.506391px;}
.y38_c00058{bottom:458.322241px;}
.y39_c00058{bottom:461.300944px;}
.y2b_c00058{bottom:467.387532px;}
.y2c_c00058{bottom:468.503964px;}
.y2d_c00058{bottom:471.901500px;}
.y2e_c00058{bottom:472.538317px;}
.y2f_c00058{bottom:473.387071px;}
.y30_c00058{bottom:476.619124px;}
.y31_c00058{bottom:478.587406px;}
.y32_c00058{bottom:479.777004px;}
.y24_c00058{bottom:486.550710px;}
.y25_c00058{bottom:489.208896px;}
.y26_c00058{bottom:491.214082px;}
.y27_c00058{bottom:492.237360px;}
.y28_c00058{bottom:494.181409px;}
.y29_c00058{bottom:496.738026px;}
.y2a_c00058{bottom:497.098341px;}
.y1c_c00058{bottom:503.017780px;}
.y1d_c00058{bottom:505.250307px;}
.y1e_c00058{bottom:508.378954px;}
.y1f_c00058{bottom:509.830078px;}
.y20_c00058{bottom:510.980071px;}
.y21_c00058{bottom:511.648627px;}
.y22_c00058{bottom:513.431149px;}
.y23_c00058{bottom:514.224013px;}
.y14_c00058{bottom:520.311082px;}
.y15_c00058{bottom:522.949446px;}
.y16_c00058{bottom:523.846242px;}
.y17_c00058{bottom:525.757909px;}
.y18_c00058{bottom:527.902344px;}
.y19_c00058{bottom:530.952646px;}
.y1a_c00058{bottom:531.882288px;}
.y1b_c00058{bottom:533.204932px;}
.yd_c00058{bottom:537.591690px;}
.ye_c00058{bottom:540.098356px;}
.yf_c00058{bottom:541.643458px;}
.y10_c00058{bottom:544.503933px;}
.y11_c00058{bottom:546.180876px;}
.y12_c00058{bottom:547.565251px;}
.y13_c00058{bottom:548.861746px;}
.y5_c00058{bottom:554.890500px;}
.y6_c00058{bottom:556.383420px;}
.y7_c00058{bottom:557.644068px;}
.y8_c00058{bottom:560.512908px;}
.y9_c00058{bottom:562.147092px;}
.ya_c00058{bottom:563.815260px;}
.y3_c00058{bottom:565.948500px;}
.yb_c00058{bottom:567.336852px;}
.yc_c00058{bottom:567.802980px;}
.y4_c00058{bottom:572.800644px;}
.h2_c00058{height:22.050000px;}
.hc_c00058{height:58.808966px;}
.h12_c00058{height:59.876926px;}
.he_c00058{height:60.922194px;}
.h11_c00058{height:60.927399px;}
.hd_c00058{height:61.921806px;}
.h9_c00058{height:61.959447px;}
.h10_c00058{height:61.977871px;}
.h6_c00058{height:63.009607px;}
.h15_c00058{height:63.028344px;}
.h5_c00058{height:64.059767px;}
.h14_c00058{height:64.078816px;}
.h8_c00058{height:65.109927px;}
.h7_c00058{height:66.160087px;}
.h13_c00058{height:67.230233px;}
.ha_c00058{height:68.260407px;}
.h16_c00058{height:70.381650px;}
.h4_c00058{height:71.410888px;}
.hf_c00058{height:71.426021px;}
.hb_c00058{height:73.511208px;}
.h3_c00058{height:82.979235px;}
.h1_c00058{height:620.250000px;}
.h0_c00058{height:620.400000px;}
.w0_c00058{width:373.140000px;}
.w1_c00058{width:373.500000px;}
.x0_c00058{left:0.000000px;}
.x4e_c00058{left:35.806500px;}
.xb_c00058{left:38.109382px;}
.x21_c00058{left:39.306216px;}
.x2c_c00058{left:40.335402px;}
.x41_c00058{left:41.573357px;}
.x1_c00058{left:43.206000px;}
.x5e_c00058{left:44.265676px;}
.x69_c00058{left:46.057095px;}
.x72_c00058{left:47.207415px;}
.x78_c00058{left:49.412220px;}
.x7d_c00058{left:50.444190px;}
.x51_c00058{left:51.927000px;}
.x3b_c00058{left:53.917635px;}
.x33_c00058{left:60.850686px;}
.x3_c00058{left:62.413500px;}
.x4f_c00058{left:63.573705px;}
.x74_c00058{left:65.261430px;}
.x7a_c00058{left:68.462190px;}
.x61_c00058{left:70.048500px;}
.x5a_c00058{left:72.198118px;}
.x3c_c00058{left:74.915135px;}
.x6a_c00058{left:75.976995px;}
.x52_c00058{left:84.717000px;}
.x47_c00058{left:86.708383px;}
.x76_c00058{left:88.337985px;}
.x18_c00058{left:89.412726px;}
.x27_c00058{left:91.029598px;}
.x4_c00058{left:93.484898px;}
.x5f_c00058{left:94.487817px;}
.x11_c00058{left:97.228623px;}
.x53_c00058{left:99.168000px;}
.x2d_c00058{left:100.240702px;}
.x1d_c00058{left:102.094023px;}
.x56_c00058{left:106.236892px;}
.x65_c00058{left:109.964325px;}
.x37_c00058{left:111.443277px;}
.x28_c00058{left:114.281404px;}
.x4c_c00058{left:115.716675px;}
.x12_c00058{left:117.143571px;}
.x2e_c00058{left:118.579575px;}
.x5_c00058{left:119.722134px;}
.x6e_c00058{left:120.861240px;}
.x7b_c00058{left:122.953575px;}
.x54_c00058{left:124.335000px;}
.x7e_c00058{left:125.754825px;}
.xc_c00058{left:128.032271px;}
.x60_c00058{left:131.251270px;}
.x57_c00058{left:133.770894px;}
.x22_c00058{left:135.253785px;}
.x29_c00058{left:136.962282px;}
.x34_c00058{left:139.065641px;}
.x62_c00058{left:141.787500px;}
.x48_c00058{left:147.305712px;}
.x23_c00058{left:148.788885px;}
.x1e_c00058{left:149.797538px;}
.x3d_c00058{left:153.172794px;}
.x49_c00058{left:156.062037px;}
.x38_c00058{left:158.041367px;}
.x13_c00058{left:159.587211px;}
.x5b_c00058{left:161.439409px;}
.x77_c00058{left:163.649280px;}
.x24_c00058{left:166.828692px;}
.x2f_c00058{left:168.443918px;}
.x2_c00058{left:174.846228px;}
.x6f_c00058{left:177.053820px;}
.x43_c00058{left:178.165119px;}
.x6_c00058{left:179.429867px;}
.x30_c00058{left:181.588557px;}
.x35_c00058{left:184.796027px;}
.x66_c00058{left:186.663915px;}
.xd_c00058{left:191.535857px;}
.x19_c00058{left:193.388110px;}
.x2a_c00058{left:197.422144px;}
.x73_c00058{left:198.587865px;}
.x70_c00058{left:200.856810px;}
.x6b_c00058{left:202.111275px;}
.x63_c00058{left:205.257000px;}
.x14_c00058{left:207.187909px;}
.x67_c00058{left:210.476355px;}
.x7_c00058{left:213.441321px;}
.x2b_c00058{left:214.777137px;}
.x3e_c00058{left:216.631398px;}
.x50_c00058{left:217.736388px;}
.x1a_c00058{left:219.510507px;}
.x44_c00058{left:220.722506px;}
.x4a_c00058{left:226.432033px;}
.xe_c00058{left:228.750438px;}
.x39_c00058{left:230.164631px;}
.x55_c00058{left:231.945000px;}
.x7c_c00058{left:233.176065px;}
.x1b_c00058{left:234.675210px;}
.x3f_c00058{left:237.164291px;}
.x58_c00058{left:240.725643px;}
.x31_c00058{left:241.766585px;}
.x45_c00058{left:243.154870px;}
.x42_c00058{left:246.269190px;}
.x8_c00058{left:248.160067px;}
.x3a_c00058{left:253.438914px;}
.x6c_c00058{left:255.455895px;}
.xf_c00058{left:259.469584px;}
.x46_c00058{left:260.783522px;}
.x75_c00058{left:264.049860px;}
.x5c_c00058{left:265.445485px;}
.x7f_c00058{left:267.792405px;}
.x15_c00058{left:274.892367px;}
.x25_c00058{left:277.373869px;}
.x1f_c00058{left:281.175865px;}
.x6d_c00058{left:283.133205px;}
.x4d_c00058{left:285.649514px;}
.x10_c00058{left:288.265940px;}
.x20_c00058{left:289.737745px;}
.x1c_c00058{left:293.151918px;}
.x64_c00058{left:294.160500px;}
.x16_c00058{left:295.522171px;}
.x59_c00058{left:298.310524px;}
.x32_c00058{left:300.756230px;}
.x26_c00058{left:302.663779px;}
.x40_c00058{left:306.406110px;}
.x5d_c00058{left:309.814921px;}
.x79_c00058{left:312.496335px;}
.x4b_c00058{left:316.538958px;}
.x71_c00058{left:318.111495px;}
.x9_c00058{left:321.453201px;}
.x36_c00058{left:323.821565px;}
.x17_c00058{left:324.894023px;}
.xa_c00058{left:331.154490px;}
.x68_c00058{left:334.875870px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.fs0_c00058{font-size:19.600000pt;}
.fsa_c00058{font-size:52.274637pt;}
.fs10_c00058{font-size:53.223935pt;}
.fsc_c00058{font-size:54.153061pt;}
.fsf_c00058{font-size:54.157688pt;}
.fsb_c00058{font-size:55.041606pt;}
.fs7_c00058{font-size:55.075064pt;}
.fse_c00058{font-size:55.091441pt;}
.fs4_c00058{font-size:56.008539pt;}
.fs13_c00058{font-size:56.025194pt;}
.fs3_c00058{font-size:56.942015pt;}
.fs12_c00058{font-size:56.958948pt;}
.fs6_c00058{font-size:57.875491pt;}
.fs5_c00058{font-size:58.808966pt;}
.fs11_c00058{font-size:59.760207pt;}
.fs8_c00058{font-size:60.675918pt;}
.fs14_c00058{font-size:62.561467pt;}
.fs2_c00058{font-size:63.476345pt;}
.fsd_c00058{font-size:63.489796pt;}
.fs9_c00058{font-size:65.343296pt;}
.fs1_c00058{font-size:73.759320pt;}
.y0_c00058{bottom:0.000000pt;}
.yef_c00058{bottom:18.640347pt;}
.yf0_c00058{bottom:19.007173pt;}
.yf1_c00058{bottom:19.302667pt;}
.yf2_c00058{bottom:19.710453pt;}
.yf3_c00058{bottom:20.410347pt;}
.yf4_c00058{bottom:21.263733pt;}
.yf5_c00058{bottom:21.731200pt;}
.yf6_c00058{bottom:22.136107pt;}
.ye7_c00058{bottom:34.005280pt;}
.ye8_c00058{bottom:34.201053pt;}
.ye9_c00058{bottom:34.782707pt;}
.yea_c00058{bottom:35.111693pt;}
.yeb_c00058{bottom:35.543533pt;}
.yec_c00058{bottom:35.957720pt;}
.yed_c00058{bottom:36.099507pt;}
.yee_c00058{bottom:36.915293pt;}
.ye6_c00058{bottom:51.143347pt;}
.ye4_c00058{bottom:51.143507pt;}
.ye2_c00058{bottom:51.143853pt;}
.ye5_c00058{bottom:51.143947pt;}
.ye1_c00058{bottom:51.144000pt;}
.ye3_c00058{bottom:51.144027pt;}
.ye0_c00058{bottom:51.144333pt;}
.yd8_c00058{bottom:64.742307pt;}
.yd9_c00058{bottom:65.040307pt;}
.yda_c00058{bottom:65.395493pt;}
.ydb_c00058{bottom:66.653693pt;}
.ydc_c00058{bottom:67.056880pt;}
.ydd_c00058{bottom:67.790813pt;}
.yde_c00058{bottom:68.747307pt;}
.ydf_c00058{bottom:69.223333pt;}
.yd1_c00058{bottom:79.872160pt;}
.yd2_c00058{bottom:80.224680pt;}
.yd3_c00058{bottom:80.704413pt;}
.yd4_c00058{bottom:82.244293pt;}
.yd5_c00058{bottom:83.513467pt;}
.yd6_c00058{bottom:83.939053pt;}
.yd7_c00058{bottom:84.890400pt;}
.ycb_c00058{bottom:97.156400pt;}
.ycc_c00058{bottom:97.409947pt;}
.ycd_c00058{bottom:98.350640pt;}
.yce_c00058{bottom:99.841293pt;}
.ycf_c00058{bottom:100.236747pt;}
.yd0_c00058{bottom:100.648347pt;}
.yc3_c00058{bottom:112.765413pt;}
.yc4_c00058{bottom:113.654267pt;}
.yc5_c00058{bottom:113.994053pt;}
.yc6_c00058{bottom:114.301200pt;}
.yc7_c00058{bottom:115.320893pt;}
.yc8_c00058{bottom:115.615240pt;}
.yc9_c00058{bottom:116.651133pt;}
.yca_c00058{bottom:116.843493pt;}
.ybc_c00058{bottom:126.456347pt;}
.ybd_c00058{bottom:127.023893pt;}
.ybe_c00058{bottom:128.547187pt;}
.ybf_c00058{bottom:129.695333pt;}
.yc0_c00058{bottom:130.223840pt;}
.yc1_c00058{bottom:131.341120pt;}
.yc2_c00058{bottom:131.765027pt;}
.yb6_c00058{bottom:143.980267pt;}
.yb7_c00058{bottom:145.043440pt;}
.yb8_c00058{bottom:145.842613pt;}
.yb9_c00058{bottom:146.181093pt;}
.yba_c00058{bottom:147.529627pt;}
.ybb_c00058{bottom:147.849240pt;}
.yad_c00058{bottom:156.235187pt;}
.yae_c00058{bottom:157.006360pt;}
.yaf_c00058{bottom:158.446387pt;}
.yb0_c00058{bottom:159.334840pt;}
.yb1_c00058{bottom:160.257840pt;}
.yb2_c00058{bottom:161.632320pt;}
.yb3_c00058{bottom:162.346360pt;}
.yb4_c00058{bottom:162.948667pt;}
.yb5_c00058{bottom:163.694253pt;}
.ya4_c00058{bottom:172.080027pt;}
.y1_c00058{bottom:172.800000pt;}
.ya5_c00058{bottom:173.163453pt;}
.ya6_c00058{bottom:173.694880pt;}
.ya7_c00058{bottom:174.217307pt;}
.ya8_c00058{bottom:175.604080pt;}
.ya9_c00058{bottom:176.196373pt;}
.yaa_c00058{bottom:177.439520pt;}
.yab_c00058{bottom:178.383920pt;}
.yac_c00058{bottom:179.290827pt;}
.y9d_c00058{bottom:187.690667pt;}
.y9e_c00058{bottom:188.363507pt;}
.y9f_c00058{bottom:189.603707pt;}
.ya0_c00058{bottom:190.750787pt;}
.ya1_c00058{bottom:191.296227pt;}
.ya2_c00058{bottom:192.304427pt;}
.ya3_c00058{bottom:193.666987pt;}
.y99_c00058{bottom:203.505804pt;}
.y9a_c00058{bottom:204.442940pt;}
.y9b_c00058{bottom:204.820976pt;}
.y9c_c00058{bottom:205.129120pt;}
.y90_c00058{bottom:218.394756pt;}
.y91_c00058{bottom:219.168437pt;}
.y92_c00058{bottom:219.861111pt;}
.y93_c00058{bottom:221.547735pt;}
.y94_c00058{bottom:222.096393pt;}
.y95_c00058{bottom:222.921128pt;}
.y96_c00058{bottom:224.321416pt;}
.y97_c00058{bottom:225.059885pt;}
.y98_c00058{bottom:225.503701pt;}
.y2_c00058{bottom:228.480000pt;}
.y8a_c00058{bottom:234.493520pt;}
.y8b_c00058{bottom:236.119788pt;}
.y8c_c00058{bottom:236.829973pt;}
.y8d_c00058{bottom:237.393844pt;}
.y8e_c00058{bottom:239.586359pt;}
.y8f_c00058{bottom:241.071137pt;}
.y81_c00058{bottom:250.808000pt;}
.y82_c00058{bottom:251.594960pt;}
.y83_c00058{bottom:251.941784pt;}
.y84_c00058{bottom:252.545792pt;}
.y85_c00058{bottom:254.519024pt;}
.y86_c00058{bottom:255.128432pt;}
.y87_c00058{bottom:255.799292pt;}
.y88_c00058{bottom:256.201952pt;}
.y89_c00058{bottom:257.491688pt;}
.y78_c00058{bottom:265.453333pt;}
.y79_c00058{bottom:266.268653pt;}
.y7a_c00058{bottom:267.733325pt;}
.y7b_c00058{bottom:268.902757pt;}
.y7c_c00058{bottom:270.071837pt;}
.y7d_c00058{bottom:270.795285pt;}
.y7e_c00058{bottom:272.818317pt;}
.y7f_c00058{bottom:273.425121pt;}
.y80_c00058{bottom:273.935741pt;}
.y70_c00058{bottom:280.066060pt;}
.y71_c00058{bottom:281.875948pt;}
.y72_c00058{bottom:282.641500pt;}
.y73_c00058{bottom:283.467536pt;}
.y74_c00058{bottom:286.091212pt;}
.y75_c00058{bottom:287.035760pt;}
.y76_c00058{bottom:288.538784pt;}
.y77_c00058{bottom:289.289656pt;}
.y64_c00058{bottom:293.993264pt;}
.y65_c00058{bottom:295.718584pt;}
.y66_c00058{bottom:296.779400pt;}
.y67_c00058{bottom:298.038308pt;}
.y68_c00058{bottom:298.373568pt;}
.y69_c00058{bottom:299.383136pt;}
.y6a_c00058{bottom:300.542684pt;}
.y6b_c00058{bottom:301.065284pt;}
.y6c_c00058{bottom:301.638236pt;}
.y6d_c00058{bottom:302.406592pt;}
.y6e_c00058{bottom:304.513172pt;}
.y6f_c00058{bottom:305.071392pt;}
.y5d_c00058{bottom:310.548320pt;}
.y5e_c00058{bottom:313.739100pt;}
.y5f_c00058{bottom:315.040756pt;}
.y60_c00058{bottom:316.441812pt;}
.y61_c00058{bottom:317.180932pt;}
.y62_c00058{bottom:317.761616pt;}
.y63_c00058{bottom:319.744252pt;}
.y57_c00058{bottom:325.193196pt;}
.y58_c00058{bottom:327.800312pt;}
.y59_c00058{bottom:328.505916pt;}
.y5a_c00058{bottom:331.128952pt;}
.y5b_c00058{bottom:332.115920pt;}
.y5c_c00058{bottom:333.134704pt;}
.y50_c00058{bottom:338.405436pt;}
.y51_c00058{bottom:338.925640pt;}
.y52_c00058{bottom:339.785048pt;}
.y53_c00058{bottom:342.988536pt;}
.y54_c00058{bottom:345.585332pt;}
.y55_c00058{bottom:346.426232pt;}
.y56_c00058{bottom:349.260680pt;}
.y49_c00058{bottom:353.528680pt;}
.y4a_c00058{bottom:355.611380pt;}
.y4b_c00058{bottom:356.475548pt;}
.y4c_c00058{bottom:358.424336pt;}
.y4d_c00058{bottom:361.440592pt;}
.y4e_c00058{bottom:362.414596pt;}
.y4f_c00058{bottom:364.178900pt;}
.y41_c00058{bottom:369.370384pt;}
.y42_c00058{bottom:370.212844pt;}
.y43_c00058{bottom:372.456476pt;}
.y44_c00058{bottom:373.483932pt;}
.y45_c00058{bottom:375.396996pt;}
.y46_c00058{bottom:376.849560pt;}
.y47_c00058{bottom:379.281388pt;}
.y48_c00058{bottom:381.210528pt;}
.y3a_c00058{bottom:384.967708pt;}
.y3b_c00058{bottom:387.419420pt;}
.y3c_c00058{bottom:388.170620pt;}
.y3d_c00058{bottom:390.212180pt;}
.y3e_c00058{bottom:390.749548pt;}
.y3f_c00058{bottom:393.212908pt;}
.y40_c00058{bottom:395.626848pt;}
.y33_c00058{bottom:400.093308pt;}
.y34_c00058{bottom:402.221844pt;}
.y35_c00058{bottom:403.194888pt;}
.y36_c00058{bottom:404.143548pt;}
.y37_c00058{bottom:406.672348pt;}
.y38_c00058{bottom:407.397548pt;}
.y39_c00058{bottom:410.045284pt;}
.y2b_c00058{bottom:415.455584pt;}
.y2c_c00058{bottom:416.447968pt;}
.y2d_c00058{bottom:419.468000pt;}
.y2e_c00058{bottom:420.034060pt;}
.y2f_c00058{bottom:420.788508pt;}
.y30_c00058{bottom:423.661444pt;}
.y31_c00058{bottom:425.411028pt;}
.y32_c00058{bottom:426.468448pt;}
.y24_c00058{bottom:432.489520pt;}
.y25_c00058{bottom:434.852352pt;}
.y26_c00058{bottom:436.634740pt;}
.y27_c00058{bottom:437.544320pt;}
.y28_c00058{bottom:439.272364pt;}
.y29_c00058{bottom:441.544912pt;}
.y2a_c00058{bottom:441.865192pt;}
.y1c_c00058{bottom:447.126916pt;}
.y1d_c00058{bottom:449.111384pt;}
.y1e_c00058{bottom:451.892404pt;}
.y1f_c00058{bottom:453.182292pt;}
.y20_c00058{bottom:454.204508pt;}
.y21_c00058{bottom:454.798780pt;}
.y22_c00058{bottom:456.383244pt;}
.y23_c00058{bottom:457.088012pt;}
.y14_c00058{bottom:462.498740pt;}
.y15_c00058{bottom:464.843952pt;}
.y16_c00058{bottom:465.641104pt;}
.y17_c00058{bottom:467.340364pt;}
.y18_c00058{bottom:469.246528pt;}
.y19_c00058{bottom:471.957908pt;}
.y1a_c00058{bottom:472.784256pt;}
.y1b_c00058{bottom:473.959940pt;}
.yd_c00058{bottom:477.859280pt;}
.ye_c00058{bottom:480.087428pt;}
.yf_c00058{bottom:481.460852pt;}
.y10_c00058{bottom:484.003496pt;}
.y11_c00058{bottom:485.494112pt;}
.y12_c00058{bottom:486.724668pt;}
.y13_c00058{bottom:487.877108pt;}
.y5_c00058{bottom:493.236000pt;}
.y6_c00058{bottom:494.563040pt;}
.y7_c00058{bottom:495.683616pt;}
.y8_c00058{bottom:498.233696pt;}
.y9_c00058{bottom:499.686304pt;}
.ya_c00058{bottom:501.169120pt;}
.y3_c00058{bottom:503.065333pt;}
.yb_c00058{bottom:504.299424pt;}
.yc_c00058{bottom:504.713760pt;}
.y4_c00058{bottom:509.156128pt;}
.h2_c00058{height:19.600000pt;}
.hc_c00058{height:52.274637pt;}
.h12_c00058{height:53.223935pt;}
.he_c00058{height:54.153061pt;}
.h11_c00058{height:54.157688pt;}
.hd_c00058{height:55.041606pt;}
.h9_c00058{height:55.075064pt;}
.h10_c00058{height:55.091441pt;}
.h6_c00058{height:56.008539pt;}
.h15_c00058{height:56.025194pt;}
.h5_c00058{height:56.942015pt;}
.h14_c00058{height:56.958948pt;}
.h8_c00058{height:57.875491pt;}
.h7_c00058{height:58.808966pt;}
.h13_c00058{height:59.760207pt;}
.ha_c00058{height:60.675918pt;}
.h16_c00058{height:62.561467pt;}
.h4_c00058{height:63.476345pt;}
.hf_c00058{height:63.489796pt;}
.hb_c00058{height:65.343296pt;}
.h3_c00058{height:73.759320pt;}
.h1_c00058{height:551.333333pt;}
.h0_c00058{height:551.466667pt;}
.w0_c00058{width:331.680000pt;}
.w1_c00058{width:332.000000pt;}
.x0_c00058{left:0.000000pt;}
.x4e_c00058{left:31.828000pt;}
.xb_c00058{left:33.875007pt;}
.x21_c00058{left:34.938859pt;}
.x2c_c00058{left:35.853691pt;}
.x41_c00058{left:36.954095pt;}
.x1_c00058{left:38.405333pt;}
.x5e_c00058{left:39.347268pt;}
.x69_c00058{left:40.939640pt;}
.x72_c00058{left:41.962147pt;}
.x78_c00058{left:43.921973pt;}
.x7d_c00058{left:44.839280pt;}
.x51_c00058{left:46.157333pt;}
.x3b_c00058{left:47.926787pt;}
.x33_c00058{left:54.089499pt;}
.x3_c00058{left:55.478667pt;}
.x4f_c00058{left:56.509960pt;}
.x74_c00058{left:58.010160pt;}
.x7a_c00058{left:60.855280pt;}
.x61_c00058{left:62.265333pt;}
.x5a_c00058{left:64.176105pt;}
.x3c_c00058{left:66.591231pt;}
.x6a_c00058{left:67.535107pt;}
.x52_c00058{left:75.304000pt;}
.x47_c00058{left:77.074119pt;}
.x76_c00058{left:78.522653pt;}
.x18_c00058{left:79.477979pt;}
.x27_c00058{left:80.915199pt;}
.x4_c00058{left:83.097687pt;}
.x5f_c00058{left:83.989171pt;}
.x11_c00058{left:86.425443pt;}
.x53_c00058{left:88.149333pt;}
.x2d_c00058{left:89.102847pt;}
.x1d_c00058{left:90.750243pt;}
.x56_c00058{left:94.432793pt;}
.x65_c00058{left:97.746067pt;}
.x37_c00058{left:99.060691pt;}
.x28_c00058{left:101.583471pt;}
.x4c_c00058{left:102.859267pt;}
.x12_c00058{left:104.127619pt;}
.x2e_c00058{left:105.404067pt;}
.x5_c00058{left:106.419675pt;}
.x6e_c00058{left:107.432213pt;}
.x7b_c00058{left:109.292067pt;}
.x54_c00058{left:110.520000pt;}
.x7e_c00058{left:111.782067pt;}
.xc_c00058{left:113.806463pt;}
.x60_c00058{left:116.667796pt;}
.x57_c00058{left:118.907461pt;}
.x22_c00058{left:120.225587pt;}
.x29_c00058{left:121.744251pt;}
.x34_c00058{left:123.613903pt;}
.x62_c00058{left:126.033333pt;}
.x48_c00058{left:130.938411pt;}
.x23_c00058{left:132.256787pt;}
.x1e_c00058{left:133.153367pt;}
.x3d_c00058{left:136.153595pt;}
.x49_c00058{left:138.721811pt;}
.x38_c00058{left:140.481215pt;}
.x13_c00058{left:141.855299pt;}
.x5b_c00058{left:143.501697pt;}
.x77_c00058{left:145.466027pt;}
.x24_c00058{left:148.292171pt;}
.x2f_c00058{left:149.727927pt;}
.x2_c00058{left:155.418869pt;}
.x6f_c00058{left:157.381173pt;}
.x43_c00058{left:158.368995pt;}
.x6_c00058{left:159.493215pt;}
.x30_c00058{left:161.412051pt;}
.x35_c00058{left:164.263135pt;}
.x66_c00058{left:165.923480pt;}
.xd_c00058{left:170.254095pt;}
.x19_c00058{left:171.900543pt;}
.x2a_c00058{left:175.486351pt;}
.x73_c00058{left:176.522547pt;}
.x70_c00058{left:178.539387pt;}
.x6b_c00058{left:179.654467pt;}
.x63_c00058{left:182.450667pt;}
.x14_c00058{left:184.167031pt;}
.x67_c00058{left:187.090093pt;}
.x7_c00058{left:189.725619pt;}
.x2b_c00058{left:190.913011pt;}
.x3e_c00058{left:192.561243pt;}
.x50_c00058{left:193.543456pt;}
.x1a_c00058{left:195.120451pt;}
.x44_c00058{left:196.197783pt;}
.x4a_c00058{left:201.272919pt;}
.xe_c00058{left:203.333723pt;}
.x39_c00058{left:204.590783pt;}
.x55_c00058{left:206.173333pt;}
.x7c_c00058{left:207.267613pt;}
.x1b_c00058{left:208.600187pt;}
.x3f_c00058{left:210.812703pt;}
.x58_c00058{left:213.978349pt;}
.x31_c00058{left:214.903631pt;}
.x45_c00058{left:216.137663pt;}
.x42_c00058{left:218.905947pt;}
.x8_c00058{left:220.586727pt;}
.x3a_c00058{left:225.279035pt;}
.x6c_c00058{left:227.071907pt;}
.xf_c00058{left:230.639631pt;}
.x46_c00058{left:231.807575pt;}
.x75_c00058{left:234.710987pt;}
.x5c_c00058{left:235.951543pt;}
.x7f_c00058{left:238.037693pt;}
.x15_c00058{left:244.348771pt;}
.x25_c00058{left:246.554551pt;}
.x1f_c00058{left:249.934103pt;}
.x6d_c00058{left:251.673960pt;}
.x4d_c00058{left:253.910679pt;}
.x10_c00058{left:256.236391pt;}
.x20_c00058{left:257.544663pt;}
.x1c_c00058{left:260.579483pt;}
.x64_c00058{left:261.476000pt;}
.x16_c00058{left:262.686375pt;}
.x59_c00058{left:265.164911pt;}
.x32_c00058{left:267.338871pt;}
.x26_c00058{left:269.034471pt;}
.x40_c00058{left:272.360987pt;}
.x5d_c00058{left:275.391041pt;}
.x79_c00058{left:277.774520pt;}
.x4b_c00058{left:281.367963pt;}
.x71_c00058{left:282.765773pt;}
.x9_c00058{left:285.736179pt;}
.x36_c00058{left:287.841391pt;}
.x17_c00058{left:288.794687pt;}
.xa_c00058{left:294.359547pt;}
.x68_c00058{left:297.667440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00059 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00059 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00059 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00059 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md4_c00059{transform:matrix(0.078960,0.002529,-0.008004,0.249872,0,0);-ms-transform:matrix(0.078960,0.002529,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.078960,0.002529,-0.008004,0.249872,0,0);}
.m8d_c00059{transform:matrix(0.081743,0.002618,-0.008004,0.249872,0,0);-ms-transform:matrix(0.081743,0.002618,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.081743,0.002618,-0.008004,0.249872,0,0);}
.m6c_c00059{transform:matrix(0.136710,0.004516,-0.008254,0.249864,0,0);-ms-transform:matrix(0.136710,0.004516,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.136710,0.004516,-0.008254,0.249864,0,0);}
.ma9_c00059{transform:matrix(0.139064,0.004454,-0.008004,0.249872,0,0);-ms-transform:matrix(0.139064,0.004454,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.139064,0.004454,-0.008004,0.249872,0,0);}
.m7a_c00059{transform:matrix(0.143762,0.004749,-0.008254,0.249864,0,0);-ms-transform:matrix(0.143762,0.004749,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.143762,0.004749,-0.008254,0.249864,0,0);}
.m64_c00059{transform:matrix(0.145681,0.004812,-0.008254,0.249864,0,0);-ms-transform:matrix(0.145681,0.004812,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.145681,0.004812,-0.008254,0.249864,0,0);}
.ma4_c00059{transform:matrix(0.146065,0.004679,-0.008004,0.249872,0,0);-ms-transform:matrix(0.146065,0.004679,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.146065,0.004679,-0.008004,0.249872,0,0);}
.m80_c00059{transform:matrix(0.151447,0.005003,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151447,0.005003,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151447,0.005003,-0.008254,0.249864,0,0);}
.ma7_c00059{transform:matrix(0.153746,0.004925,-0.008004,0.249872,0,0);-ms-transform:matrix(0.153746,0.004925,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.153746,0.004925,-0.008004,0.249872,0,0);}
.m41_c00059{transform:matrix(0.154216,0.005094,-0.008254,0.249864,0,0);-ms-transform:matrix(0.154216,0.005094,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.154216,0.005094,-0.008254,0.249864,0,0);}
.ma3_c00059{transform:matrix(0.154821,0.004959,-0.008004,0.249872,0,0);-ms-transform:matrix(0.154821,0.004959,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.154821,0.004959,-0.008004,0.249872,0,0);}
.m7d_c00059{transform:matrix(0.155070,0.005122,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155070,0.005122,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155070,0.005122,-0.008254,0.249864,0,0);}
.me4_c00059{transform:matrix(0.157319,0.005039,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157319,0.005039,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157319,0.005039,-0.008004,0.249872,0,0);}
.m29_c00059{transform:matrix(0.158344,0.005231,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158344,0.005231,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158344,0.005231,-0.008254,0.249864,0,0);}
.m45_c00059{transform:matrix(0.158773,0.005245,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158773,0.005245,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158773,0.005245,-0.008254,0.249864,0,0);}
.m59_c00059{transform:matrix(0.159763,0.005277,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159763,0.005277,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159763,0.005277,-0.008254,0.249864,0,0);}
.m6a_c00059{transform:matrix(0.160452,0.005300,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160452,0.005300,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160452,0.005300,-0.008254,0.249864,0,0);}
.m6e_c00059{transform:matrix(0.160532,0.005303,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160532,0.005303,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160532,0.005303,-0.008254,0.249864,0,0);}
.m62_c00059{transform:matrix(0.161722,0.005342,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161722,0.005342,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161722,0.005342,-0.008254,0.249864,0,0);}
.m81_c00059{transform:matrix(0.162756,0.005376,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162756,0.005376,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162756,0.005376,-0.008254,0.249864,0,0);}
.m27_c00059{transform:matrix(0.162856,0.005380,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162856,0.005380,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162856,0.005380,-0.008254,0.249864,0,0);}
.m69_c00059{transform:matrix(0.163021,0.005385,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163021,0.005385,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163021,0.005385,-0.008254,0.249864,0,0);}
.mb4_c00059{transform:matrix(0.163176,0.005227,-0.008004,0.249872,0,0);-ms-transform:matrix(0.163176,0.005227,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.163176,0.005227,-0.008004,0.249872,0,0);}
.m57_c00059{transform:matrix(0.164011,0.005418,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164011,0.005418,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164011,0.005418,-0.008254,0.249864,0,0);}
.m42_c00059{transform:matrix(0.164115,0.005421,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164115,0.005421,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164115,0.005421,-0.008254,0.249864,0,0);}
.mee_c00059{transform:matrix(0.166395,0.005330,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166395,0.005330,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166395,0.005330,-0.008004,0.249872,0,0);}
.m6_c00059{transform:matrix(0.166909,0.005514,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166909,0.005514,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166909,0.005514,-0.008254,0.249864,0,0);}
.ma2_c00059{transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);-ms-transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);}
.m73_c00059{transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);}
.m2d_c00059{transform:matrix(0.170022,0.005616,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170022,0.005616,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170022,0.005616,-0.008254,0.249864,0,0);}
.m66_c00059{transform:matrix(0.170527,0.005633,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170527,0.005633,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170527,0.005633,-0.008254,0.249864,0,0);}
.mfe_c00059{transform:matrix(0.170757,0.005470,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170757,0.005470,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170757,0.005470,-0.008004,0.249872,0,0);}
.m8e_c00059{transform:matrix(0.172047,0.005511,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172047,0.005511,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172047,0.005511,-0.008004,0.249872,0,0);}
.mfb_c00059{transform:matrix(0.172127,0.005514,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172127,0.005514,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172127,0.005514,-0.008004,0.249872,0,0);}
.m2e_c00059{transform:matrix(0.172211,0.005689,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172211,0.005689,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172211,0.005689,-0.008254,0.249864,0,0);}
.mc4_c00059{transform:matrix(0.172761,0.005534,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172761,0.005534,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172761,0.005534,-0.008004,0.249872,0,0);}
.m9f_c00059{transform:matrix(0.172906,0.005539,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172906,0.005539,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172906,0.005539,-0.008004,0.249872,0,0);}
.m54_c00059{transform:matrix(0.173465,0.005730,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173465,0.005730,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173465,0.005730,-0.008254,0.249864,0,0);}
.m68_c00059{transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);}
.md5_c00059{transform:matrix(0.174545,0.005591,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174545,0.005591,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174545,0.005591,-0.008004,0.249872,0,0);}
.ma8_c00059{transform:matrix(0.174600,0.005593,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174600,0.005593,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174600,0.005593,-0.008004,0.249872,0,0);}
.mda_c00059{transform:matrix(0.174760,0.005598,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174760,0.005598,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174760,0.005598,-0.008004,0.249872,0,0);}
.ma6_c00059{transform:matrix(0.174950,0.005604,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174950,0.005604,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174950,0.005604,-0.008004,0.249872,0,0);}
.m8_c00059{transform:matrix(0.175005,0.005781,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175005,0.005781,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175005,0.005781,-0.008254,0.249864,0,0);}
.m76_c00059{transform:matrix(0.175444,0.005795,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175444,0.005795,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175444,0.005795,-0.008254,0.249864,0,0);}
.me7_c00059{transform:matrix(0.175550,0.005623,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175550,0.005623,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175550,0.005623,-0.008004,0.249872,0,0);}
.m38_c00059{transform:matrix(0.175859,0.005809,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175859,0.005809,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175859,0.005809,-0.008254,0.249864,0,0);}
.me9_c00059{transform:matrix(0.175930,0.005635,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175930,0.005635,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175930,0.005635,-0.008004,0.249872,0,0);}
.m51_c00059{transform:matrix(0.175984,0.005813,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175984,0.005813,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175984,0.005813,-0.008254,0.249864,0,0);}
.me0_c00059{transform:matrix(0.176325,0.005648,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176325,0.005648,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176325,0.005648,-0.008004,0.249872,0,0);}
.m65_c00059{transform:matrix(0.176719,0.005838,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176719,0.005838,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176719,0.005838,-0.008254,0.249864,0,0);}
.m4d_c00059{transform:matrix(0.176754,0.005839,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176754,0.005839,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176754,0.005839,-0.008254,0.249864,0,0);}
.mce_c00059{transform:matrix(0.176854,0.005665,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176854,0.005665,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176854,0.005665,-0.008004,0.249872,0,0);}
.m4f_c00059{transform:matrix(0.177023,0.005848,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177023,0.005848,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177023,0.005848,-0.008254,0.249864,0,0);}
.m1b_c00059{transform:matrix(0.177588,0.005866,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177588,0.005866,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177588,0.005866,-0.008254,0.249864,0,0);}
.m101_c00059{transform:matrix(0.177669,0.005691,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177669,0.005691,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177669,0.005691,-0.008004,0.249872,0,0);}
.m49_c00059{transform:matrix(0.177983,0.005879,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177983,0.005879,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177983,0.005879,-0.008254,0.249864,0,0);}
.m77_c00059{transform:matrix(0.178608,0.005900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178608,0.005900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178608,0.005900,-0.008254,0.249864,0,0);}
.m3f_c00059{transform:matrix(0.179742,0.005937,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179742,0.005937,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179742,0.005937,-0.008254,0.249864,0,0);}
.m4_c00059{transform:matrix(0.179982,0.005945,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179982,0.005945,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179982,0.005945,-0.008254,0.249864,0,0);}
.m31_c00059{transform:matrix(0.180766,0.005971,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180766,0.005971,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180766,0.005971,-0.008254,0.249864,0,0);}
.md2_c00059{transform:matrix(0.181037,0.005799,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181037,0.005799,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181037,0.005799,-0.008004,0.249872,0,0);}
.m11_c00059{transform:matrix(0.181276,0.005988,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181276,0.005988,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181276,0.005988,-0.008254,0.249864,0,0);}
.maf_c00059{transform:matrix(0.181502,0.005814,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181502,0.005814,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181502,0.005814,-0.008004,0.249872,0,0);}
.mbd_c00059{transform:matrix(0.181722,0.005821,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181722,0.005821,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181722,0.005821,-0.008004,0.249872,0,0);}
.mb1_c00059{transform:matrix(0.181912,0.005827,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181912,0.005827,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181912,0.005827,-0.008004,0.249872,0,0);}
.ma1_c00059{transform:matrix(0.182866,0.005858,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182866,0.005858,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182866,0.005858,-0.008004,0.249872,0,0);}
.mf1_c00059{transform:matrix(0.183766,0.005886,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183766,0.005886,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183766,0.005886,-0.008004,0.249872,0,0);}
.m4c_c00059{transform:matrix(0.183830,0.006072,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183830,0.006072,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183830,0.006072,-0.008254,0.249864,0,0);}
.me8_c00059{transform:matrix(0.183911,0.005891,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183911,0.005891,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183911,0.005891,-0.008004,0.249872,0,0);}
.m1_c00059{transform:matrix(0.183935,0.006076,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183935,0.006076,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183935,0.006076,-0.008254,0.249864,0,0);}
.mac_c00059{transform:matrix(0.184206,0.005900,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184206,0.005900,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184206,0.005900,-0.008004,0.249872,0,0);}
.mdb_c00059{transform:matrix(0.184590,0.005913,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184590,0.005913,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184590,0.005913,-0.008004,0.249872,0,0);}
.me_c00059{transform:matrix(0.185129,0.006115,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185129,0.006115,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185129,0.006115,-0.008254,0.249864,0,0);}
.m98_c00059{transform:matrix(0.185230,0.005933,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185230,0.005933,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185230,0.005933,-0.008004,0.249872,0,0);}
.m48_c00059{transform:matrix(0.185414,0.006125,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185414,0.006125,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185414,0.006125,-0.008254,0.249864,0,0);}
.m3a_c00059{transform:matrix(0.185464,0.006126,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185464,0.006126,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185464,0.006126,-0.008254,0.249864,0,0);}
.m84_c00059{transform:matrix(0.185524,0.006128,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185524,0.006128,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185524,0.006128,-0.008254,0.249864,0,0);}
.m3e_c00059{transform:matrix(0.185674,0.006133,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185674,0.006133,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185674,0.006133,-0.008254,0.249864,0,0);}
.m4a_c00059{transform:matrix(0.185764,0.006136,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185764,0.006136,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185764,0.006136,-0.008254,0.249864,0,0);}
.mc_c00059{transform:matrix(0.185944,0.006142,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185944,0.006142,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185944,0.006142,-0.008254,0.249864,0,0);}
.mec_c00059{transform:matrix(0.187039,0.005991,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187039,0.005991,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187039,0.005991,-0.008004,0.249872,0,0);}
.m5a_c00059{transform:matrix(0.187073,0.006180,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187073,0.006180,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187073,0.006180,-0.008254,0.249864,0,0);}
.md0_c00059{transform:matrix(0.187314,0.006000,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187314,0.006000,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187314,0.006000,-0.008004,0.249872,0,0);}
.m52_c00059{transform:matrix(0.187468,0.006193,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187468,0.006193,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187468,0.006193,-0.008254,0.249864,0,0);}
.mc0_c00059{transform:matrix(0.187484,0.006005,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187484,0.006005,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187484,0.006005,-0.008004,0.249872,0,0);}
.m6d_c00059{transform:matrix(0.187733,0.006201,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187733,0.006201,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187733,0.006201,-0.008254,0.249864,0,0);}
.mb8_c00059{transform:matrix(0.187754,0.006014,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187754,0.006014,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187754,0.006014,-0.008004,0.249872,0,0);}
.m6f_c00059{transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);}
.m2_c00059{transform:matrix(0.188037,0.006211,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188037,0.006211,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188037,0.006211,-0.008254,0.249864,0,0);}
.m7c_c00059{transform:matrix(0.188392,0.006223,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188392,0.006223,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188392,0.006223,-0.008254,0.249864,0,0);}
.m3b_c00059{transform:matrix(0.188482,0.006226,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188482,0.006226,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188482,0.006226,-0.008254,0.249864,0,0);}
.me1_c00059{transform:matrix(0.188533,0.006039,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188533,0.006039,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188533,0.006039,-0.008004,0.249872,0,0);}
.mff_c00059{transform:matrix(0.189053,0.006056,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189053,0.006056,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189053,0.006056,-0.008004,0.249872,0,0);}
.m40_c00059{transform:matrix(0.189552,0.006261,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189552,0.006261,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189552,0.006261,-0.008254,0.249864,0,0);}
.m2a_c00059{transform:matrix(0.189687,0.006266,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189687,0.006266,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189687,0.006266,-0.008254,0.249864,0,0);}
.mbe_c00059{transform:matrix(0.189693,0.006076,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189693,0.006076,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189693,0.006076,-0.008004,0.249872,0,0);}
.me5_c00059{transform:matrix(0.190237,0.006094,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190237,0.006094,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190237,0.006094,-0.008004,0.249872,0,0);}
.m50_c00059{transform:matrix(0.190361,0.006288,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190361,0.006288,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190361,0.006288,-0.008254,0.249864,0,0);}
.m70_c00059{transform:matrix(0.190701,0.006299,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190701,0.006299,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190701,0.006299,-0.008254,0.249864,0,0);}
.ma5_c00059{transform:matrix(0.190797,0.006112,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190797,0.006112,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190797,0.006112,-0.008004,0.249872,0,0);}
.mc8_c00059{transform:matrix(0.190832,0.006113,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190832,0.006113,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190832,0.006113,-0.008004,0.249872,0,0);}
.m44_c00059{transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191036,0.006310,-0.008254,0.249864,0,0);}
.m9c_c00059{transform:matrix(0.191117,0.006122,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191117,0.006122,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191117,0.006122,-0.008004,0.249872,0,0);}
.m72_c00059{transform:matrix(0.192170,0.006348,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192170,0.006348,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192170,0.006348,-0.008254,0.249864,0,0);}
.m9e_c00059{transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);}
.m100_c00059{transform:matrix(0.192341,0.006161,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192341,0.006161,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192341,0.006161,-0.008004,0.249872,0,0);}
.m2c_c00059{transform:matrix(0.192390,0.006355,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192390,0.006355,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192390,0.006355,-0.008254,0.249864,0,0);}
.m8a_c00059{transform:matrix(0.194089,0.006411,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194089,0.006411,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194089,0.006411,-0.008254,0.249864,0,0);}
.m63_c00059{transform:matrix(0.194349,0.006420,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194349,0.006420,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194349,0.006420,-0.008254,0.249864,0,0);}
.m82_c00059{transform:matrix(0.194489,0.006425,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194489,0.006425,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194489,0.006425,-0.008254,0.249864,0,0);}
.mad_c00059{transform:matrix(0.194570,0.006232,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194570,0.006232,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194570,0.006232,-0.008004,0.249872,0,0);}
.maa_c00059{transform:matrix(0.195060,0.006248,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195060,0.006248,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195060,0.006248,-0.008004,0.249872,0,0);}
.mb9_c00059{transform:matrix(0.195185,0.006252,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195185,0.006252,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195185,0.006252,-0.008004,0.249872,0,0);}
.mef_c00059{transform:matrix(0.195275,0.006255,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195275,0.006255,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195275,0.006255,-0.008004,0.249872,0,0);}
.m99_c00059{transform:matrix(0.195545,0.006264,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195545,0.006264,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195545,0.006264,-0.008004,0.249872,0,0);}
.ma_c00059{transform:matrix(0.195778,0.006467,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195778,0.006467,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195778,0.006467,-0.008254,0.249864,0,0);}
.m97_c00059{transform:matrix(0.195964,0.006277,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195964,0.006277,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195964,0.006277,-0.008004,0.249872,0,0);}
.mb5_c00059{transform:matrix(0.196049,0.006280,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196049,0.006280,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196049,0.006280,-0.008004,0.249872,0,0);}
.m5_c00059{transform:matrix(0.196093,0.006478,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196093,0.006478,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196093,0.006478,-0.008254,0.249864,0,0);}
.m28_c00059{transform:matrix(0.196128,0.006479,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196128,0.006479,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196128,0.006479,-0.008254,0.249864,0,0);}
.md_c00059{transform:matrix(0.196368,0.006487,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196368,0.006487,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196368,0.006487,-0.008254,0.249864,0,0);}
.m20_c00059{transform:matrix(0.196488,0.006491,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196488,0.006491,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196488,0.006491,-0.008254,0.249864,0,0);}
.mc3_c00059{transform:matrix(0.196944,0.006309,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196944,0.006309,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196944,0.006309,-0.008004,0.249872,0,0);}
.m67_c00059{transform:matrix(0.197167,0.006513,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197167,0.006513,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197167,0.006513,-0.008254,0.249864,0,0);}
.mc7_c00059{transform:matrix(0.198148,0.006347,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198148,0.006347,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198148,0.006347,-0.008004,0.249872,0,0);}
.m1f_c00059{transform:matrix(0.199151,0.006579,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199151,0.006579,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199151,0.006579,-0.008254,0.249864,0,0);}
.m33_c00059{transform:matrix(0.199306,0.006584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199306,0.006584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199306,0.006584,-0.008254,0.249864,0,0);}
.m1e_c00059{transform:matrix(0.199311,0.006584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199311,0.006584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199311,0.006584,-0.008254,0.249864,0,0);}
.m39_c00059{transform:matrix(0.199616,0.006594,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199616,0.006594,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199616,0.006594,-0.008254,0.249864,0,0);}
.mab_c00059{transform:matrix(0.199678,0.006396,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199678,0.006396,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199678,0.006396,-0.008004,0.249872,0,0);}
.mf0_c00059{transform:matrix(0.199932,0.006404,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199932,0.006404,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199932,0.006404,-0.008004,0.249872,0,0);}
.m10_c00059{transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);}
.m87_c00059{transform:matrix(0.200436,0.006621,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200436,0.006621,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200436,0.006621,-0.008254,0.249864,0,0);}
.mb2_c00059{transform:matrix(0.200517,0.006423,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200517,0.006423,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200517,0.006423,-0.008004,0.249872,0,0);}
.m1c_c00059{transform:matrix(0.200536,0.006624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200536,0.006624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200536,0.006624,-0.008254,0.249864,0,0);}
.m32_c00059{transform:matrix(0.200556,0.006625,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200556,0.006625,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200556,0.006625,-0.008254,0.249864,0,0);}
.m34_c00059{transform:matrix(0.201340,0.006651,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201340,0.006651,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201340,0.006651,-0.008254,0.249864,0,0);}
.md9_c00059{transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201552,0.006456,-0.008004,0.249872,0,0);}
.mf7_c00059{transform:matrix(0.201831,0.006465,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201831,0.006465,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201831,0.006465,-0.008004,0.249872,0,0);}
.m2b_c00059{transform:matrix(0.201920,0.006670,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201920,0.006670,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201920,0.006670,-0.008254,0.249864,0,0);}
.mc9_c00059{transform:matrix(0.202221,0.006478,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202221,0.006478,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202221,0.006478,-0.008004,0.249872,0,0);}
.mb0_c00059{transform:matrix(0.202291,0.006480,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202291,0.006480,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202291,0.006480,-0.008004,0.249872,0,0);}
.m8c_c00059{transform:matrix(0.202771,0.006495,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202771,0.006495,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202771,0.006495,-0.008004,0.249872,0,0);}
.m85_c00059{transform:matrix(0.202969,0.006705,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202969,0.006705,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202969,0.006705,-0.008254,0.249864,0,0);}
.m12_c00059{transform:matrix(0.203179,0.006712,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203179,0.006712,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203179,0.006712,-0.008254,0.249864,0,0);}
.m30_c00059{transform:matrix(0.203194,0.006712,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203194,0.006712,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203194,0.006712,-0.008254,0.249864,0,0);}
.m89_c00059{transform:matrix(0.203349,0.006717,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203349,0.006717,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203349,0.006717,-0.008254,0.249864,0,0);}
.mbb_c00059{transform:matrix(0.203945,0.006533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203945,0.006533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203945,0.006533,-0.008004,0.249872,0,0);}
.mb3_c00059{transform:matrix(0.204195,0.006541,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204195,0.006541,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204195,0.006541,-0.008004,0.249872,0,0);}
.m23_c00059{transform:matrix(0.204394,0.006752,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204394,0.006752,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204394,0.006752,-0.008254,0.249864,0,0);}
.mfc_c00059{transform:matrix(0.204645,0.006555,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204645,0.006555,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204645,0.006555,-0.008004,0.249872,0,0);}
.m2f_c00059{transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);}
.m22_c00059{transform:matrix(0.204803,0.006765,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204803,0.006765,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204803,0.006765,-0.008254,0.249864,0,0);}
.md7_c00059{transform:matrix(0.204855,0.006562,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204855,0.006562,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204855,0.006562,-0.008004,0.249872,0,0);}
.m5f_c00059{transform:matrix(0.205268,0.006781,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205268,0.006781,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205268,0.006781,-0.008254,0.249864,0,0);}
.mcf_c00059{transform:matrix(0.205290,0.006576,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205290,0.006576,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205290,0.006576,-0.008004,0.249872,0,0);}
.mae_c00059{transform:matrix(0.205360,0.006578,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205360,0.006578,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205360,0.006578,-0.008004,0.249872,0,0);}
.m21_c00059{transform:matrix(0.205473,0.006787,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205473,0.006787,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205473,0.006787,-0.008254,0.249864,0,0);}
.mb_c00059{transform:matrix(0.205508,0.006789,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205508,0.006789,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205508,0.006789,-0.008254,0.249864,0,0);}
.m36_c00059{transform:matrix(0.205993,0.006805,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205993,0.006805,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205993,0.006805,-0.008254,0.249864,0,0);}
.mf5_c00059{transform:matrix(0.206124,0.006603,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206124,0.006603,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206124,0.006603,-0.008004,0.249872,0,0);}
.m3c_c00059{transform:matrix(0.206382,0.006817,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206382,0.006817,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206382,0.006817,-0.008254,0.249864,0,0);}
.m4e_c00059{transform:matrix(0.206592,0.006824,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206592,0.006824,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206592,0.006824,-0.008254,0.249864,0,0);}
.m8f_c00059{transform:matrix(0.206794,0.006624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206794,0.006624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206794,0.006624,-0.008004,0.249872,0,0);}
.med_c00059{transform:matrix(0.207294,0.006640,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207294,0.006640,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207294,0.006640,-0.008004,0.249872,0,0);}
.m60_c00059{transform:matrix(0.207737,0.006862,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207737,0.006862,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207737,0.006862,-0.008254,0.249864,0,0);}
.m5e_c00059{transform:matrix(0.208461,0.006886,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208461,0.006886,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208461,0.006886,-0.008254,0.249864,0,0);}
.m91_c00059{transform:matrix(0.208788,0.006688,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208788,0.006688,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208788,0.006688,-0.008004,0.249872,0,0);}
.mea_c00059{transform:matrix(0.208868,0.006690,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208868,0.006690,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208868,0.006690,-0.008004,0.249872,0,0);}
.m53_c00059{transform:matrix(0.208881,0.006900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208881,0.006900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208881,0.006900,-0.008254,0.249864,0,0);}
.m25_c00059{transform:matrix(0.208966,0.006903,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208966,0.006903,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208966,0.006903,-0.008254,0.249864,0,0);}
.m19_c00059{transform:matrix(0.208971,0.006903,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208971,0.006903,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208971,0.006903,-0.008254,0.249864,0,0);}
.m3d_c00059{transform:matrix(0.209556,0.006922,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209556,0.006922,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209556,0.006922,-0.008254,0.249864,0,0);}
.m74_c00059{transform:matrix(0.209611,0.006924,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209611,0.006924,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209611,0.006924,-0.008254,0.249864,0,0);}
.m79_c00059{transform:matrix(0.209811,0.006931,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209811,0.006931,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209811,0.006931,-0.008254,0.249864,0,0);}
.m1d_c00059{transform:matrix(0.210245,0.006945,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210245,0.006945,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210245,0.006945,-0.008254,0.249864,0,0);}
.m26_c00059{transform:matrix(0.210400,0.006950,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210400,0.006950,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210400,0.006950,-0.008254,0.249864,0,0);}
.m13_c00059{transform:matrix(0.210435,0.006951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210435,0.006951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210435,0.006951,-0.008254,0.249864,0,0);}
.mf8_c00059{transform:matrix(0.210557,0.006745,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210557,0.006745,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210557,0.006745,-0.008004,0.249872,0,0);}
.mdf_c00059{transform:matrix(0.210627,0.006747,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210627,0.006747,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210627,0.006747,-0.008004,0.249872,0,0);}
.mb6_c00059{transform:matrix(0.210797,0.006752,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210797,0.006752,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210797,0.006752,-0.008004,0.249872,0,0);}
.m96_c00059{transform:matrix(0.210957,0.006757,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210957,0.006757,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210957,0.006757,-0.008004,0.249872,0,0);}
.m78_c00059{transform:matrix(0.211070,0.006972,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211070,0.006972,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211070,0.006972,-0.008254,0.249864,0,0);}
.md1_c00059{transform:matrix(0.211097,0.006762,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211097,0.006762,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211097,0.006762,-0.008004,0.249872,0,0);}
.mc1_c00059{transform:matrix(0.211127,0.006763,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211127,0.006763,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211127,0.006763,-0.008004,0.249872,0,0);}
.m17_c00059{transform:matrix(0.211325,0.006981,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211325,0.006981,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211325,0.006981,-0.008254,0.249864,0,0);}
.mde_c00059{transform:matrix(0.211497,0.006775,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211497,0.006775,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211497,0.006775,-0.008004,0.249872,0,0);}
.m0_c00059{transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);}
.mb7_c00059{transform:matrix(0.212261,0.006799,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212261,0.006799,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212261,0.006799,-0.008004,0.249872,0,0);}
.m86_c00059{transform:matrix(0.212424,0.007017,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212424,0.007017,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212424,0.007017,-0.008254,0.249864,0,0);}
.m9b_c00059{transform:matrix(0.212431,0.006805,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212431,0.006805,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212431,0.006805,-0.008004,0.249872,0,0);}
.m7e_c00059{transform:matrix(0.212599,0.007023,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212599,0.007023,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212599,0.007023,-0.008254,0.249864,0,0);}
.m5d_c00059{transform:matrix(0.212724,0.007027,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212724,0.007027,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212724,0.007027,-0.008254,0.249864,0,0);}
.m18_c00059{transform:matrix(0.214348,0.007081,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214348,0.007081,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214348,0.007081,-0.008254,0.249864,0,0);}
.me2_c00059{transform:matrix(0.214355,0.006866,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214355,0.006866,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214355,0.006866,-0.008004,0.249872,0,0);}
.m5b_c00059{transform:matrix(0.214498,0.007086,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214498,0.007086,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214498,0.007086,-0.008254,0.249864,0,0);}
.mf6_c00059{transform:matrix(0.214595,0.006874,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214595,0.006874,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214595,0.006874,-0.008004,0.249872,0,0);}
.mbf_c00059{transform:matrix(0.214775,0.006880,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214775,0.006880,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214775,0.006880,-0.008004,0.249872,0,0);}
.m7f_c00059{transform:matrix(0.215008,0.007102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215008,0.007102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215008,0.007102,-0.008254,0.249864,0,0);}
.m94_c00059{transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);}
.md8_c00059{transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);}
.m16_c00059{transform:matrix(0.215532,0.007120,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215532,0.007120,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215532,0.007120,-0.008254,0.249864,0,0);}
.mcc_c00059{transform:matrix(0.215549,0.006904,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215549,0.006904,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215549,0.006904,-0.008004,0.249872,0,0);}
.m43_c00059{transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);}
.m4b_c00059{transform:matrix(0.216492,0.007151,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216492,0.007151,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216492,0.007151,-0.008254,0.249864,0,0);}
.m61_c00059{transform:matrix(0.216527,0.007153,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216527,0.007153,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216527,0.007153,-0.008254,0.249864,0,0);}
.m8b_c00059{transform:matrix(0.216739,0.006943,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216739,0.006943,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216739,0.006943,-0.008004,0.249872,0,0);}
.mfd_c00059{transform:matrix(0.216894,0.006948,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216894,0.006948,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216894,0.006948,-0.008004,0.249872,0,0);}
.m5c_c00059{transform:matrix(0.217157,0.007173,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217157,0.007173,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217157,0.007173,-0.008254,0.249864,0,0);}
.m35_c00059{transform:matrix(0.217821,0.007195,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217821,0.007195,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217821,0.007195,-0.008254,0.249864,0,0);}
.mc6_c00059{transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218038,0.006984,-0.008004,0.249872,0,0);}
.me6_c00059{transform:matrix(0.218213,0.006990,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218213,0.006990,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218213,0.006990,-0.008004,0.249872,0,0);}
.m24_c00059{transform:matrix(0.218736,0.007226,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218736,0.007226,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218736,0.007226,-0.008254,0.249864,0,0);}
.m9_c00059{transform:matrix(0.220440,0.007282,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220440,0.007282,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220440,0.007282,-0.008254,0.249864,0,0);}
.mc5_c00059{transform:matrix(0.221706,0.007102,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221706,0.007102,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221706,0.007102,-0.008004,0.249872,0,0);}
.m95_c00059{transform:matrix(0.221996,0.007111,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221996,0.007111,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221996,0.007111,-0.008004,0.249872,0,0);}
.m88_c00059{transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);}
.ma0_c00059{transform:matrix(0.223660,0.007164,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223660,0.007164,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223660,0.007164,-0.008004,0.249872,0,0);}
.m9d_c00059{transform:matrix(0.224230,0.007183,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224230,0.007183,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224230,0.007183,-0.008004,0.249872,0,0);}
.m1a_c00059{transform:matrix(0.224243,0.007407,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224243,0.007407,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224243,0.007407,-0.008254,0.249864,0,0);}
.m58_c00059{transform:matrix(0.225957,0.007464,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225957,0.007464,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225957,0.007464,-0.008254,0.249864,0,0);}
.m37_c00059{transform:matrix(0.225982,0.007465,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225982,0.007465,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225982,0.007465,-0.008254,0.249864,0,0);}
.mca_c00059{transform:matrix(0.226839,0.007266,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226839,0.007266,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226839,0.007266,-0.008004,0.249872,0,0);}
.mf4_c00059{transform:matrix(0.227883,0.007300,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227883,0.007300,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227883,0.007300,-0.008004,0.249872,0,0);}
.md3_c00059{transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);}
.mbc_c00059{transform:matrix(0.228938,0.007333,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228938,0.007333,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228938,0.007333,-0.008004,0.249872,0,0);}
.m55_c00059{transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);}
.m14_c00059{transform:matrix(0.229430,0.007579,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229430,0.007579,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229430,0.007579,-0.008254,0.249864,0,0);}
.mdd_c00059{transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);}
.m56_c00059{transform:matrix(0.231099,0.007634,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231099,0.007634,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231099,0.007634,-0.008254,0.249864,0,0);}
.mc2_c00059{transform:matrix(0.231731,0.007423,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231731,0.007423,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231731,0.007423,-0.008004,0.249872,0,0);}
.mcd_c00059{transform:matrix(0.232286,0.007441,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232286,0.007441,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232286,0.007441,-0.008004,0.249872,0,0);}
.m90_c00059{transform:matrix(0.232426,0.007445,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232426,0.007445,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232426,0.007445,-0.008004,0.249872,0,0);}
.me3_c00059{transform:matrix(0.233955,0.007494,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233955,0.007494,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233955,0.007494,-0.008004,0.249872,0,0);}
.m7b_c00059{transform:matrix(0.234422,0.007744,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234422,0.007744,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234422,0.007744,-0.008254,0.249864,0,0);}
.mf_c00059{transform:matrix(0.234557,0.007748,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234557,0.007748,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234557,0.007748,-0.008254,0.249864,0,0);}
.md6_c00059{transform:matrix(0.235069,0.007530,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235069,0.007530,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235069,0.007530,-0.008004,0.249872,0,0);}
.m75_c00059{transform:matrix(0.239030,0.007896,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239030,0.007896,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239030,0.007896,-0.008254,0.249864,0,0);}
.m6b_c00059{transform:matrix(0.239869,0.007924,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239869,0.007924,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239869,0.007924,-0.008254,0.249864,0,0);}
.mba_c00059{transform:matrix(0.245519,0.007864,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245519,0.007864,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245519,0.007864,-0.008004,0.249872,0,0);}
.mdc_c00059{transform:matrix(0.247153,0.007917,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247153,0.007917,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247153,0.007917,-0.008004,0.249872,0,0);}
.m15_c00059{transform:matrix(0.247270,0.008168,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247270,0.008168,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247270,0.008168,-0.008254,0.249864,0,0);}
.m93_c00059{transform:matrix(0.248772,0.007969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248772,0.007969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248772,0.007969,-0.008004,0.249872,0,0);}
.m7_c00059{transform:matrix(0.249839,0.008253,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249839,0.008253,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249839,0.008253,-0.008254,0.249864,0,0);}
.m9a_c00059{transform:matrix(0.250117,0.008012,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250117,0.008012,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250117,0.008012,-0.008004,0.249872,0,0);}
.mcb_c00059{transform:matrix(0.259957,0.008327,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259957,0.008327,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259957,0.008327,-0.008004,0.249872,0,0);}
.mf9_c00059{transform:matrix(0.284649,0.009118,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284649,0.009118,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284649,0.009118,-0.008004,0.249872,0,0);}
.m47_c00059{transform:matrix(0.312679,0.010329,-0.008254,0.249864,0,0);-ms-transform:matrix(0.312679,0.010329,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.312679,0.010329,-0.008254,0.249864,0,0);}
.m71_c00059{transform:matrix(0.323858,0.010698,-0.008254,0.249864,0,0);-ms-transform:matrix(0.323858,0.010698,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.323858,0.010698,-0.008254,0.249864,0,0);}
.m92_c00059{transform:matrix(0.325298,0.010420,-0.008004,0.249872,0,0);-ms-transform:matrix(0.325298,0.010420,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.325298,0.010420,-0.008004,0.249872,0,0);}
.m46_c00059{transform:matrix(0.354766,0.011719,-0.008254,0.249864,0,0);-ms-transform:matrix(0.354766,0.011719,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.354766,0.011719,-0.008254,0.249864,0,0);}
.mf2_c00059{transform:matrix(0.357547,0.011453,-0.008004,0.249872,0,0);-ms-transform:matrix(0.357547,0.011453,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.357547,0.011453,-0.008004,0.249872,0,0);}
.mfa_c00059{transform:matrix(0.369930,0.011850,-0.008004,0.249872,0,0);-ms-transform:matrix(0.369930,0.011850,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.369930,0.011850,-0.008004,0.249872,0,0);}
.mf3_c00059{transform:matrix(0.376097,0.012047,-0.008004,0.249872,0,0);-ms-transform:matrix(0.376097,0.012047,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.376097,0.012047,-0.008004,0.249872,0,0);}
.m83_c00059{transform:matrix(0.409032,0.013512,-0.008254,0.249864,0,0);-ms-transform:matrix(0.409032,0.013512,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.409032,0.013512,-0.008254,0.249864,0,0);}
.m3_c00059{transform:matrix(0.758991,0.025072,-0.008254,0.249864,0,0);-ms-transform:matrix(0.758991,0.025072,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.758991,0.025072,-0.008254,0.249864,0,0);}
.meb_c00059{transform:matrix(0.871358,0.027911,-0.008004,0.249872,0,0);-ms-transform:matrix(0.871358,0.027911,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.871358,0.027911,-0.008004,0.249872,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
.fc0_c00059{color:transparent;}
.fsa_c00059{font-size:57.721840px;}
.fse_c00059{font-size:58.771328px;}
.fs8_c00059{font-size:58.773240px;}
.fsb_c00059{font-size:59.820816px;}
.fs3_c00059{font-size:59.822762px;}
.fsf_c00059{font-size:60.870304px;}
.fs4_c00059{font-size:60.872284px;}
.fs2_c00059{font-size:61.921806px;}
.fs0_c00059{font-size:61.950000px;}
.fsd_c00059{font-size:62.969280px;}
.fs5_c00059{font-size:62.971328px;}
.fs11_c00059{font-size:64.018768px;}
.fs10_c00059{font-size:65.068256px;}
.fs7_c00059{font-size:65.070373px;}
.fs6_c00059{font-size:68.218939px;}
.fsc_c00059{font-size:70.315696px;}
.fs1_c00059{font-size:71.367506px;}
.fs9_c00059{font-size:72.417028px;}
.y0_c00059{bottom:0.000000px;}
.y107_c00059{bottom:10.568523px;}
.y106_c00059{bottom:11.456854px;}
.y105_c00059{bottom:13.189527px;}
.y104_c00059{bottom:13.826342px;}
.y103_c00059{bottom:14.237613px;}
.y102_c00059{bottom:16.325944px;}
.y101_c00059{bottom:17.000413px;}
.y100_c00059{bottom:17.273382px;}
.yff_c00059{bottom:17.961702px;}
.yfe_c00059{bottom:30.312387px;}
.yfd_c00059{bottom:31.796580px;}
.yfc_c00059{bottom:33.609524px;}
.yfb_c00059{bottom:34.164484px;}
.yfa_c00059{bottom:34.802086px;}
.yf9_c00059{bottom:35.028575px;}
.yf8_c00059{bottom:36.154315px;}
.yf7_c00059{bottom:36.586384px;}
.yf6_c00059{bottom:46.067299px;}
.yf5_c00059{bottom:47.583825px;}
.yf4_c00059{bottom:48.155467px;}
.yf3_c00059{bottom:50.122479px;}
.yf2_c00059{bottom:51.585418px;}
.yf1_c00059{bottom:53.039451px;}
.yf0_c00059{bottom:63.738804px;}
.yef_c00059{bottom:64.632619px;}
.yee_c00059{bottom:65.714902px;}
.yed_c00059{bottom:67.868946px;}
.yec_c00059{bottom:68.427858px;}
.yeb_c00059{bottom:70.317216px;}
.yea_c00059{bottom:71.023524px;}
.ye9_c00059{bottom:71.753133px;}
.ye8_c00059{bottom:72.747283px;}
.ye7_c00059{bottom:80.163343px;}
.ye6_c00059{bottom:82.045000px;}
.ye5_c00059{bottom:82.651156px;}
.ye4_c00059{bottom:83.554644px;}
.ye3_c00059{bottom:85.836250px;}
.ye2_c00059{bottom:88.191424px;}
.ye1_c00059{bottom:88.647517px;}
.ye0_c00059{bottom:90.021220px;}
.ydf_c00059{bottom:98.014485px;}
.yde_c00059{bottom:98.779413px;}
.ydd_c00059{bottom:100.317909px;}
.ydc_c00059{bottom:100.714293px;}
.ydb_c00059{bottom:102.567573px;}
.yda_c00059{bottom:104.710005px;}
.yd9_c00059{bottom:105.688293px;}
.yd8_c00059{bottom:105.991989px;}
.yd7_c00059{bottom:107.022309px;}
.yd6_c00059{bottom:115.335609px;}
.yd5_c00059{bottom:116.039661px;}
.yd4_c00059{bottom:117.885163px;}
.yd3_c00059{bottom:118.496859px;}
.yd2_c00059{bottom:119.649792px;}
.yd1_c00059{bottom:120.354324px;}
.yd0_c00059{bottom:121.699756px;}
.ycf_c00059{bottom:124.086448px;}
.yce_c00059{bottom:125.377993px;}
.ycd_c00059{bottom:134.877321px;}
.ycc_c00059{bottom:135.612834px;}
.ycb_c00059{bottom:137.071945px;}
.yca_c00059{bottom:137.654772px;}
.yc9_c00059{bottom:139.619532px;}
.yc8_c00059{bottom:140.058706px;}
.yc7_c00059{bottom:141.290929px;}
.yc6_c00059{bottom:141.747874px;}
.yc5_c00059{bottom:142.909447px;}
.yc4_c00059{bottom:150.855592px;}
.yc3_c00059{bottom:152.420899px;}
.yc2_c00059{bottom:152.969317px;}
.yc1_c00059{bottom:153.605218px;}
.yc0_c00059{bottom:154.853655px;}
.ybf_c00059{bottom:155.632900px;}
.ybe_c00059{bottom:156.139185px;}
.ybd_c00059{bottom:157.368816px;}
.ybc_c00059{bottom:158.226195px;}
.ybb_c00059{bottom:159.369724px;}
.yba_c00059{bottom:168.362580px;}
.yb9_c00059{bottom:169.280106px;}
.yb8_c00059{bottom:172.027068px;}
.yb7_c00059{bottom:175.361016px;}
.yb6_c00059{bottom:176.189680px;}
.yb5_c00059{bottom:177.058738px;}
.yb4_c00059{bottom:180.422739px;}
.yb3_c00059{bottom:185.937115px;}
.yb2_c00059{bottom:186.802411px;}
.yb1_c00059{bottom:188.931958px;}
.yb0_c00059{bottom:190.308373px;}
.yaf_c00059{bottom:192.528031px;}
.yae_c00059{bottom:193.537155px;}
.yad_c00059{bottom:193.960792px;}
.yac_c00059{bottom:196.342432px;}
.yab_c00059{bottom:202.754821px;}
.yaa_c00059{bottom:205.078168px;}
.ya9_c00059{bottom:206.686233px;}
.ya8_c00059{bottom:208.461162px;}
.ya7_c00059{bottom:208.775344px;}
.ya6_c00059{bottom:209.895700px;}
.ya5_c00059{bottom:210.831874px;}
.ya4_c00059{bottom:211.719867px;}
.ya3_c00059{bottom:220.719553px;}
.ya2_c00059{bottom:222.770065px;}
.ya1_c00059{bottom:223.497649px;}
.ya0_c00059{bottom:224.192161px;}
.y9f_c00059{bottom:226.879153px;}
.y9e_c00059{bottom:228.435505px;}
.y9d_c00059{bottom:229.531105px;}
.y9c_c00059{bottom:238.041855px;}
.y9b_c00059{bottom:239.314840px;}
.y9a_c00059{bottom:239.792917px;}
.y99_c00059{bottom:240.844027px;}
.y98_c00059{bottom:241.418730px;}
.y97_c00059{bottom:242.984173px;}
.y96_c00059{bottom:243.790245px;}
.y95_c00059{bottom:244.561606px;}
.y94_c00059{bottom:245.991586px;}
.y93_c00059{bottom:257.599164px;}
.y92_c00059{bottom:258.030108px;}
.y91_c00059{bottom:260.087580px;}
.y90_c00059{bottom:260.679852px;}
.y8f_c00059{bottom:260.942604px;}
.y8e_c00059{bottom:262.875468px;}
.y8d_c00059{bottom:264.343500px;}
.y8c_c00059{bottom:272.823373px;}
.y8b_c00059{bottom:274.923694px;}
.y8a_c00059{bottom:275.530141px;}
.y89_c00059{bottom:277.657359px;}
.y88_c00059{bottom:279.203491px;}
.y87_c00059{bottom:282.080944px;}
.y86_c00059{bottom:284.513563px;}
.y85_c00059{bottom:285.589401px;}
.y84_c00059{bottom:291.496690px;}
.y83_c00059{bottom:292.636797px;}
.y82_c00059{bottom:293.332578px;}
.y81_c00059{bottom:293.773551px;}
.y80_c00059{bottom:295.286694px;}
.y7f_c00059{bottom:295.995876px;}
.y7e_c00059{bottom:297.963393px;}
.y7d_c00059{bottom:299.533236px;}
.y7c_c00059{bottom:299.831392px;}
.y7b_c00059{bottom:308.135764px;}
.y7a_c00059{bottom:310.152754px;}
.y79_c00059{bottom:310.948651px;}
.y78_c00059{bottom:311.647087px;}
.y77_c00059{bottom:313.729489px;}
.y76_c00059{bottom:314.357231px;}
.y75_c00059{bottom:315.396569px;}
.y74_c00059{bottom:316.496121px;}
.y73_c00059{bottom:317.375916px;}
.y72_c00059{bottom:325.839885px;}
.y71_c00059{bottom:326.832526px;}
.y70_c00059{bottom:327.334636px;}
.y6f_c00059{bottom:328.184016px;}
.y6e_c00059{bottom:328.631419px;}
.y6d_c00059{bottom:331.029591px;}
.y6c_c00059{bottom:331.877152px;}
.y6b_c00059{bottom:332.483307px;}
.y6a_c00059{bottom:343.993290px;}
.y69_c00059{bottom:344.889024px;}
.y68_c00059{bottom:347.503790px;}
.y67_c00059{bottom:349.038645px;}
.y66_c00059{bottom:349.857488px;}
.y65_c00059{bottom:352.386303px;}
.y64_c00059{bottom:353.271926px;}
.y63_c00059{bottom:361.383540px;}
.y62_c00059{bottom:362.027994px;}
.y61_c00059{bottom:363.097176px;}
.y60_c00059{bottom:364.889499px;}
.y5f_c00059{bottom:365.561250px;}
.y5e_c00059{bottom:367.814197px;}
.y5d_c00059{bottom:368.919573px;}
.y5c_c00059{bottom:378.441150px;}
.y5b_c00059{bottom:379.644639px;}
.y5a_c00059{bottom:382.125408px;}
.y59_c00059{bottom:383.043867px;}
.y58_c00059{bottom:383.680923px;}
.y57_c00059{bottom:386.464619px;}
.y56_c00059{bottom:387.515747px;}
.y55_c00059{bottom:388.354758px;}
.y54_c00059{bottom:389.970487px;}
.y53_c00059{bottom:395.183378px;}
.y52_c00059{bottom:396.720839px;}
.y51_c00059{bottom:398.207643px;}
.y50_c00059{bottom:398.866083px;}
.y4f_c00059{bottom:400.999929px;}
.y4e_c00059{bottom:402.070893px;}
.y4d_c00059{bottom:403.053688px;}
.y4c_c00059{bottom:405.894439px;}
.y4b_c00059{bottom:414.063901px;}
.y4a_c00059{bottom:415.068945px;}
.y49_c00059{bottom:416.518705px;}
.y48_c00059{bottom:416.850288px;}
.y47_c00059{bottom:418.633759px;}
.y46_c00059{bottom:419.412187px;}
.y45_c00059{bottom:422.405462px;}
.y44_c00059{bottom:424.788481px;}
.y43_c00059{bottom:430.534117px;}
.y42_c00059{bottom:431.378817px;}
.y41_c00059{bottom:432.437510px;}
.y40_c00059{bottom:434.307277px;}
.y3f_c00059{bottom:435.405782px;}
.y3e_c00059{bottom:435.928637px;}
.y3d_c00059{bottom:438.234409px;}
.y3c_c00059{bottom:438.905162px;}
.y3b_c00059{bottom:439.907262px;}
.y3a_c00059{bottom:448.602792px;}
.y39_c00059{bottom:449.321658px;}
.y38_c00059{bottom:449.822202px;}
.y37_c00059{bottom:451.079070px;}
.y36_c00059{bottom:452.464458px;}
.y35_c00059{bottom:453.265899px;}
.y34_c00059{bottom:455.167077px;}
.y33_c00059{bottom:456.635881px;}
.y32_c00059{bottom:466.427513px;}
.y31_c00059{bottom:467.644348px;}
.y30_c00059{bottom:469.864360px;}
.y2f_c00059{bottom:470.425839px;}
.y2e_c00059{bottom:471.108619px;}
.y2d_c00059{bottom:472.668189px;}
.y2c_c00059{bottom:473.322359px;}
.y2b_c00059{bottom:474.623111px;}
.y2a_c00059{bottom:475.527917px;}
.y29_c00059{bottom:483.240327px;}
.y28_c00059{bottom:483.911304px;}
.y27_c00059{bottom:484.357331px;}
.y26_c00059{bottom:486.208243px;}
.y25_c00059{bottom:487.641385px;}
.y24_c00059{bottom:489.224193px;}
.y23_c00059{bottom:491.051121px;}
.y22_c00059{bottom:491.533174px;}
.y21_c00059{bottom:493.334929px;}
.y20_c00059{bottom:500.713278px;}
.y1f_c00059{bottom:502.112967px;}
.y1e_c00059{bottom:502.791558px;}
.y1d_c00059{bottom:503.764962px;}
.y1c_c00059{bottom:504.307293px;}
.y1b_c00059{bottom:504.669493px;}
.y1a_c00059{bottom:506.128974px;}
.y19_c00059{bottom:506.421276px;}
.y18_c00059{bottom:507.095659px;}
.y17_c00059{bottom:517.608150px;}
.y16_c00059{bottom:519.268713px;}
.y15_c00059{bottom:520.975698px;}
.y14_c00059{bottom:521.481548px;}
.y13_c00059{bottom:522.803909px;}
.y12_c00059{bottom:523.260429px;}
.y11_c00059{bottom:524.636956px;}
.y10_c00059{bottom:535.286310px;}
.yf_c00059{bottom:535.953336px;}
.ye_c00059{bottom:538.208646px;}
.yd_c00059{bottom:538.694254px;}
.yc_c00059{bottom:539.305233px;}
.yb_c00059{bottom:540.433977px;}
.ya_c00059{bottom:540.822201px;}
.y9_c00059{bottom:541.638712px;}
.y8_c00059{bottom:551.595426px;}
.y7_c00059{bottom:553.291296px;}
.y6_c00059{bottom:553.716006px;}
.y5_c00059{bottom:555.314807px;}
.y4_c00059{bottom:558.046662px;}
.y3_c00059{bottom:560.143383px;}
.y2_c00059{bottom:560.805000px;}
.y1_c00059{bottom:572.133000px;}
.hc_c00059{height:57.721840px;}
.h10_c00059{height:58.771328px;}
.ha_c00059{height:58.773240px;}
.hd_c00059{height:59.820816px;}
.h5_c00059{height:59.822762px;}
.h11_c00059{height:60.870304px;}
.h6_c00059{height:60.872284px;}
.h4_c00059{height:61.921806px;}
.h2_c00059{height:61.950000px;}
.hf_c00059{height:62.969280px;}
.h7_c00059{height:62.971328px;}
.h13_c00059{height:64.018768px;}
.h12_c00059{height:65.068256px;}
.h9_c00059{height:65.070373px;}
.h8_c00059{height:68.218939px;}
.he_c00059{height:70.315696px;}
.h3_c00059{height:71.367506px;}
.hb_c00059{height:72.417028px;}
.h1_c00059{height:620.250000px;}
.h0_c00059{height:620.400000px;}
.w0_c00059{width:373.140000px;}
.w1_c00059{width:373.500000px;}
.x0_c00059{left:0.000000px;}
.x55_c00059{left:28.147257px;}
.x5a_c00059{left:30.113438px;}
.x89_c00059{left:31.691399px;}
.x33_c00059{left:33.146051px;}
.x5f_c00059{left:36.644112px;}
.x81_c00059{left:37.803707px;}
.x5b_c00059{left:39.411927px;}
.x41_c00059{left:40.998218px;}
.x2_c00059{left:42.205500px;}
.x29_c00059{left:43.287386px;}
.x48_c00059{left:47.341476px;}
.x51_c00059{left:49.006134px;}
.x56_c00059{left:56.506752px;}
.x88_c00059{left:58.613304px;}
.x60_c00059{left:60.538730px;}
.x3_c00059{left:62.234451px;}
.x4e_c00059{left:65.379006px;}
.x24_c00059{left:67.973729px;}
.x16_c00059{left:69.841692px;}
.x77_c00059{left:71.915429px;}
.x9_c00059{left:73.343772px;}
.x73_c00059{left:75.836348px;}
.x82_c00059{left:78.160215px;}
.x42_c00059{left:79.420311px;}
.x7e_c00059{left:80.537612px;}
.x17_c00059{left:82.005633px;}
.x49_c00059{left:84.164783px;}
.x84_c00059{left:87.059420px;}
.xa_c00059{left:88.275294px;}
.x1d_c00059{left:89.483207px;}
.x2a_c00059{left:90.613134px;}
.x34_c00059{left:92.661701px;}
.x10_c00059{left:94.905648px;}
.x69_c00059{left:97.261922px;}
.x43_c00059{left:99.369896px;}
.x1e_c00059{left:102.168927px;}
.x74_c00059{left:103.445576px;}
.x6d_c00059{left:105.082703px;}
.x25_c00059{left:106.215710px;}
.x85_c00059{left:107.236301px;}
.x52_c00059{left:109.499067px;}
.x7f_c00059{left:111.078540px;}
.x11_c00059{left:112.449650px;}
.x61_c00059{left:114.562247px;}
.x3b_c00059{left:116.186630px;}
.x70_c00059{left:117.434118px;}
.x78_c00059{left:120.153530px;}
.x68_c00059{left:122.361551px;}
.x44_c00059{left:124.378430px;}
.x4_c00059{left:125.707914px;}
.x65_c00059{left:126.914348px;}
.xb_c00059{left:131.618916px;}
.x6a_c00059{left:133.361939px;}
.x4f_c00059{left:135.575303px;}
.x71_c00059{left:137.634287px;}
.x18_c00059{left:142.763900px;}
.x57_c00059{left:145.664402px;}
.x1f_c00059{left:150.208911px;}
.x2b_c00059{left:151.890858px;}
.x62_c00059{left:153.632511px;}
.xc_c00059{left:155.110352px;}
.x19_c00059{left:157.861296px;}
.x4a_c00059{left:159.179625px;}
.x83_c00059{left:160.773234px;}
.x12_c00059{left:163.244048px;}
.x35_c00059{left:167.427068px;}
.x3c_c00059{left:170.185158px;}
.x26_c00059{left:171.233447px;}
.xd_c00059{left:173.761992px;}
.x2c_c00059{left:177.696711px;}
.x1a_c00059{left:180.409914px;}
.x4b_c00059{left:181.558953px;}
.x13_c00059{left:182.690091px;}
.x1_c00059{left:184.410000px;}
.x36_c00059{left:186.859607px;}
.x79_c00059{left:188.785746px;}
.x45_c00059{left:190.619451px;}
.x20_c00059{left:191.812379px;}
.x8a_c00059{left:196.897572px;}
.x50_c00059{left:200.924447px;}
.x7c_c00059{left:202.039356px;}
.x30_c00059{left:205.884518px;}
.x5_c00059{left:208.408631px;}
.x66_c00059{left:211.533503px;}
.x58_c00059{left:212.746163px;}
.x5c_c00059{left:219.222882px;}
.x1b_c00059{left:220.912911px;}
.x2d_c00059{left:222.360975px;}
.x75_c00059{left:224.733558px;}
.x3d_c00059{left:226.290231px;}
.x46_c00059{left:227.627406px;}
.x21_c00059{left:229.475435px;}
.x37_c00059{left:231.404211px;}
.x5d_c00059{left:232.981056px;}
.x59_c00059{left:235.252121px;}
.x63_c00059{left:236.354206px;}
.x86_c00059{left:238.598670px;}
.x38_c00059{left:239.671004px;}
.x4c_c00059{left:241.221627px;}
.x3e_c00059{left:243.589041px;}
.x6e_c00059{left:244.656116px;}
.x7a_c00059{left:247.100300px;}
.x14_c00059{left:248.261616px;}
.x64_c00059{left:249.807739px;}
.x6b_c00059{left:252.529496px;}
.x5e_c00059{left:254.680029px;}
.x6_c00059{left:256.808682px;}
.xe_c00059{left:260.383302px;}
.x2e_c00059{left:262.862109px;}
.x7b_c00059{left:268.095266px;}
.x7_c00059{left:269.665812px;}
.x27_c00059{left:273.063695px;}
.x39_c00059{left:275.884380px;}
.x22_c00059{left:278.150684px;}
.x3f_c00059{left:282.694955px;}
.x53_c00059{left:284.148671px;}
.xf_c00059{left:286.025580px;}
.x23_c00059{left:289.882008px;}
.x31_c00059{left:291.903039px;}
.x87_c00059{left:294.998285px;}
.x80_c00059{left:296.224209px;}
.x4d_c00059{left:298.275165px;}
.x3a_c00059{left:300.996446px;}
.x2f_c00059{left:302.183874px;}
.x6f_c00059{left:303.738882px;}
.x7d_c00059{left:305.096298px;}
.x1c_c00059{left:307.397556px;}
.x28_c00059{left:308.810723px;}
.x15_c00059{left:312.064515px;}
.x76_c00059{left:313.383203px;}
.x47_c00059{left:315.272610px;}
.x32_c00059{left:316.702373px;}
.x72_c00059{left:319.563128px;}
.x8_c00059{left:321.004422px;}
.x40_c00059{left:323.107313px;}
.x54_c00059{left:325.461105px;}
.x6c_c00059{left:327.402950px;}
.x67_c00059{left:332.034353px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
.fsa_c00059{font-size:51.308302pt;}
.fse_c00059{font-size:52.241180pt;}
.fs8_c00059{font-size:52.242880pt;}
.fsb_c00059{font-size:53.174059pt;}
.fs3_c00059{font-size:53.175788pt;}
.fsf_c00059{font-size:54.106937pt;}
.fs4_c00059{font-size:54.108697pt;}
.fs2_c00059{font-size:55.041606pt;}
.fs0_c00059{font-size:55.066667pt;}
.fsd_c00059{font-size:55.972693pt;}
.fs5_c00059{font-size:55.974514pt;}
.fs11_c00059{font-size:56.905572pt;}
.fs10_c00059{font-size:57.838450pt;}
.fs7_c00059{font-size:57.840331pt;}
.fs6_c00059{font-size:60.639057pt;}
.fsc_c00059{font-size:62.502841pt;}
.fs1_c00059{font-size:63.437783pt;}
.fs9_c00059{font-size:64.370691pt;}
.y0_c00059{bottom:0.000000pt;}
.y107_c00059{bottom:9.394243pt;}
.y106_c00059{bottom:10.183871pt;}
.y105_c00059{bottom:11.724024pt;}
.y104_c00059{bottom:12.290081pt;}
.y103_c00059{bottom:12.655656pt;}
.y102_c00059{bottom:14.511951pt;}
.y101_c00059{bottom:15.111479pt;}
.y100_c00059{bottom:15.354117pt;}
.yff_c00059{bottom:15.965957pt;}
.yfe_c00059{bottom:26.944344pt;}
.yfd_c00059{bottom:28.263627pt;}
.yfc_c00059{bottom:29.875132pt;}
.yfb_c00059{bottom:30.368431pt;}
.yfa_c00059{bottom:30.935188pt;}
.yf9_c00059{bottom:31.136511pt;}
.yf8_c00059{bottom:32.137169pt;}
.yf7_c00059{bottom:32.521231pt;}
.yf6_c00059{bottom:40.948711pt;}
.yf5_c00059{bottom:42.296733pt;}
.yf4_c00059{bottom:42.804860pt;}
.yf3_c00059{bottom:44.553315pt;}
.yf2_c00059{bottom:45.853705pt;}
.yf1_c00059{bottom:47.146179pt;}
.yf0_c00059{bottom:56.656715pt;}
.yef_c00059{bottom:57.451217pt;}
.yee_c00059{bottom:58.413247pt;}
.yed_c00059{bottom:60.327952pt;}
.yec_c00059{bottom:60.824763pt;}
.yeb_c00059{bottom:62.504192pt;}
.yea_c00059{bottom:63.132021pt;}
.ye9_c00059{bottom:63.780563pt;}
.ye8_c00059{bottom:64.664252pt;}
.ye7_c00059{bottom:71.256305pt;}
.ye6_c00059{bottom:72.928889pt;}
.ye5_c00059{bottom:73.467695pt;}
.ye4_c00059{bottom:74.270795pt;}
.ye3_c00059{bottom:76.298889pt;}
.ye2_c00059{bottom:78.392377pt;}
.ye1_c00059{bottom:78.797793pt;}
.ye0_c00059{bottom:80.018863pt;}
.ydf_c00059{bottom:87.123987pt;}
.yde_c00059{bottom:87.803923pt;}
.ydd_c00059{bottom:89.171475pt;}
.ydc_c00059{bottom:89.523816pt;}
.ydb_c00059{bottom:91.171176pt;}
.yda_c00059{bottom:93.075560pt;}
.yd9_c00059{bottom:93.945149pt;}
.yd8_c00059{bottom:94.215101pt;}
.yd7_c00059{bottom:95.130941pt;}
.yd6_c00059{bottom:102.520541pt;}
.yd5_c00059{bottom:103.146365pt;}
.yd4_c00059{bottom:104.786812pt;}
.yd3_c00059{bottom:105.330541pt;}
.yd2_c00059{bottom:106.355371pt;}
.yd1_c00059{bottom:106.981621pt;}
.yd0_c00059{bottom:108.177561pt;}
.ycf_c00059{bottom:110.299065pt;}
.yce_c00059{bottom:111.447105pt;}
.ycd_c00059{bottom:119.890952pt;}
.ycc_c00059{bottom:120.544741pt;}
.ycb_c00059{bottom:121.841729pt;}
.yca_c00059{bottom:122.359797pt;}
.yc9_c00059{bottom:124.106251pt;}
.yc8_c00059{bottom:124.496628pt;}
.yc7_c00059{bottom:125.591937pt;}
.yc6_c00059{bottom:125.998111pt;}
.yc5_c00059{bottom:127.030620pt;}
.yc4_c00059{bottom:134.093860pt;}
.yc3_c00059{bottom:135.485244pt;}
.yc2_c00059{bottom:135.972727pt;}
.yc1_c00059{bottom:136.537972pt;}
.yc0_c00059{bottom:137.647693pt;}
.ybf_c00059{bottom:138.340356pt;}
.ybe_c00059{bottom:138.790387pt;}
.ybd_c00059{bottom:139.883392pt;}
.ybc_c00059{bottom:140.645507pt;}
.ybb_c00059{bottom:141.661977pt;}
.yba_c00059{bottom:149.655627pt;}
.yb9_c00059{bottom:150.471205pt;}
.yb8_c00059{bottom:152.912949pt;}
.yb7_c00059{bottom:155.876459pt;}
.yb6_c00059{bottom:156.613049pt;}
.yb5_c00059{bottom:157.385545pt;}
.yb4_c00059{bottom:160.375768pt;}
.yb3_c00059{bottom:165.277436pt;}
.yb2_c00059{bottom:166.046588pt;}
.yb1_c00059{bottom:167.939519pt;}
.yb0_c00059{bottom:169.162999pt;}
.yaf_c00059{bottom:171.136028pt;}
.yae_c00059{bottom:172.033027pt;}
.yad_c00059{bottom:172.409593pt;}
.yac_c00059{bottom:174.526607pt;}
.yab_c00059{bottom:180.226508pt;}
.yaa_c00059{bottom:182.291705pt;}
.ya9_c00059{bottom:183.721096pt;}
.ya8_c00059{bottom:185.298811pt;}
.ya7_c00059{bottom:185.578084pt;}
.ya6_c00059{bottom:186.573956pt;}
.ya5_c00059{bottom:187.406111pt;}
.ya4_c00059{bottom:188.195437pt;}
.ya3_c00059{bottom:196.195159pt;}
.ya2_c00059{bottom:198.017836pt;}
.ya1_c00059{bottom:198.664577pt;}
.ya0_c00059{bottom:199.281921pt;}
.y9f_c00059{bottom:201.670359pt;}
.y9e_c00059{bottom:203.053783pt;}
.y9d_c00059{bottom:204.027649pt;}
.y9c_c00059{bottom:211.592760pt;}
.y9b_c00059{bottom:212.724303pt;}
.y9a_c00059{bottom:213.149260pt;}
.y99_c00059{bottom:214.083580pt;}
.y98_c00059{bottom:214.594427pt;}
.y97_c00059{bottom:215.985932pt;}
.y96_c00059{bottom:216.702440pt;}
.y95_c00059{bottom:217.388095pt;}
.y94_c00059{bottom:218.659188pt;}
.y93_c00059{bottom:228.977035pt;}
.y92_c00059{bottom:229.360096pt;}
.y91_c00059{bottom:231.188960pt;}
.y90_c00059{bottom:231.715424pt;}
.y8f_c00059{bottom:231.948981pt;}
.y8e_c00059{bottom:233.667083pt;}
.y8d_c00059{bottom:234.972000pt;}
.y8c_c00059{bottom:242.509665pt;}
.y8b_c00059{bottom:244.376617pt;}
.y8a_c00059{bottom:244.915681pt;}
.y89_c00059{bottom:246.806541pt;}
.y88_c00059{bottom:248.180881pt;}
.y87_c00059{bottom:250.738617pt;}
.y86_c00059{bottom:252.900945pt;}
.y85_c00059{bottom:253.857245pt;}
.y84_c00059{bottom:259.108169pt;}
.y83_c00059{bottom:260.121597pt;}
.y82_c00059{bottom:260.740069pt;}
.y81_c00059{bottom:261.132045pt;}
.y80_c00059{bottom:262.477061pt;}
.y7f_c00059{bottom:263.107445pt;}
.y7e_c00059{bottom:264.856349pt;}
.y7d_c00059{bottom:266.251765pt;}
.y7c_c00059{bottom:266.516793pt;}
.y7b_c00059{bottom:273.898457pt;}
.y7a_c00059{bottom:275.691337pt;}
.y79_c00059{bottom:276.398801pt;}
.y78_c00059{bottom:277.019633pt;}
.y77_c00059{bottom:278.870657pt;}
.y76_c00059{bottom:279.428649pt;}
.y75_c00059{bottom:280.352505pt;}
.y74_c00059{bottom:281.329885pt;}
.y73_c00059{bottom:282.111925pt;}
.y72_c00059{bottom:289.635453pt;}
.y71_c00059{bottom:290.517801pt;}
.y70_c00059{bottom:290.964121pt;}
.y6f_c00059{bottom:291.719125pt;}
.y6e_c00059{bottom:292.116817pt;}
.y6d_c00059{bottom:294.248525pt;}
.y6c_c00059{bottom:295.001913pt;}
.y6b_c00059{bottom:295.540717pt;}
.y6a_c00059{bottom:305.771813pt;}
.y69_c00059{bottom:306.568021pt;}
.y68_c00059{bottom:308.892257pt;}
.y67_c00059{bottom:310.256573pt;}
.y66_c00059{bottom:310.984433pt;}
.y65_c00059{bottom:313.232269pt;}
.y64_c00059{bottom:314.019489pt;}
.y63_c00059{bottom:321.229813pt;}
.y62_c00059{bottom:321.802661pt;}
.y61_c00059{bottom:322.753045pt;}
.y60_c00059{bottom:324.346221pt;}
.y5f_c00059{bottom:324.943333pt;}
.y5e_c00059{bottom:326.945953pt;}
.y5d_c00059{bottom:327.928509pt;}
.y5c_c00059{bottom:336.392133pt;}
.y5b_c00059{bottom:337.461901pt;}
.y5a_c00059{bottom:339.667029pt;}
.y59_c00059{bottom:340.483437pt;}
.y58_c00059{bottom:341.049709pt;}
.y57_c00059{bottom:343.524105pt;}
.y56_c00059{bottom:344.458441pt;}
.y55_c00059{bottom:345.204229pt;}
.y54_c00059{bottom:346.640433pt;}
.y53_c00059{bottom:351.274113pt;}
.y52_c00059{bottom:352.640745pt;}
.y51_c00059{bottom:353.962349pt;}
.y50_c00059{bottom:354.547629pt;}
.y4f_c00059{bottom:356.444381pt;}
.y4e_c00059{bottom:357.396349pt;}
.y4d_c00059{bottom:358.269945pt;}
.y4c_c00059{bottom:360.795057pt;}
.y4b_c00059{bottom:368.056801pt;}
.y4a_c00059{bottom:368.950173pt;}
.y49_c00059{bottom:370.238849pt;}
.y48_c00059{bottom:370.533589pt;}
.y47_c00059{bottom:372.118897pt;}
.y46_c00059{bottom:372.810833pt;}
.y45_c00059{bottom:375.471521pt;}
.y44_c00059{bottom:377.589761pt;}
.y43_c00059{bottom:382.696993pt;}
.y42_c00059{bottom:383.447837pt;}
.y41_c00059{bottom:384.388897pt;}
.y40_c00059{bottom:386.050913pt;}
.y3f_c00059{bottom:387.027361pt;}
.y3e_c00059{bottom:387.492121pt;}
.y3d_c00059{bottom:389.541697pt;}
.y3c_c00059{bottom:390.137921pt;}
.y3b_c00059{bottom:391.028677pt;}
.y3a_c00059{bottom:398.758037pt;}
.y39_c00059{bottom:399.397029pt;}
.y38_c00059{bottom:399.841957pt;}
.y37_c00059{bottom:400.959173pt;}
.y36_c00059{bottom:402.190629pt;}
.y35_c00059{bottom:402.903021pt;}
.y34_c00059{bottom:404.592957pt;}
.y33_c00059{bottom:405.898561pt;}
.y32_c00059{bottom:414.602233pt;}
.y31_c00059{bottom:415.683865pt;}
.y30_c00059{bottom:417.657209pt;}
.y2f_c00059{bottom:418.156301pt;}
.y2e_c00059{bottom:418.763217pt;}
.y2d_c00059{bottom:420.149501pt;}
.y2c_c00059{bottom:420.730985pt;}
.y2b_c00059{bottom:421.887209pt;}
.y2a_c00059{bottom:422.691481pt;}
.y29_c00059{bottom:429.546957pt;}
.y28_c00059{bottom:430.143381pt;}
.y27_c00059{bottom:430.539849pt;}
.y26_c00059{bottom:432.185105pt;}
.y25_c00059{bottom:433.459009pt;}
.y24_c00059{bottom:434.865949pt;}
.y23_c00059{bottom:436.489885pt;}
.y22_c00059{bottom:436.918377pt;}
.y21_c00059{bottom:438.519937pt;}
.y20_c00059{bottom:445.078469pt;}
.y1f_c00059{bottom:446.322637pt;}
.y1e_c00059{bottom:446.925829pt;}
.y1d_c00059{bottom:447.791077pt;}
.y1c_c00059{bottom:448.273149pt;}
.y1b_c00059{bottom:448.595105pt;}
.y1a_c00059{bottom:449.892421pt;}
.y19_c00059{bottom:450.152245pt;}
.y18_c00059{bottom:450.751697pt;}
.y17_c00059{bottom:460.096133pt;}
.y16_c00059{bottom:461.572189pt;}
.y15_c00059{bottom:463.089509pt;}
.y14_c00059{bottom:463.539153pt;}
.y13_c00059{bottom:464.714585pt;}
.y12_c00059{bottom:465.120381pt;}
.y11_c00059{bottom:466.343961pt;}
.y10_c00059{bottom:475.810053pt;}
.yf_c00059{bottom:476.402965pt;}
.ye_c00059{bottom:478.407685pt;}
.yd_c00059{bottom:478.839337pt;}
.yc_c00059{bottom:479.382429pt;}
.yb_c00059{bottom:480.385757pt;}
.ya_c00059{bottom:480.730845pt;}
.y9_c00059{bottom:481.456633pt;}
.y8_c00059{bottom:490.307045pt;}
.y7_c00059{bottom:491.814485pt;}
.y6_c00059{bottom:492.192005pt;}
.y5_c00059{bottom:493.613161pt;}
.y4_c00059{bottom:496.041477pt;}
.y3_c00059{bottom:497.905229pt;}
.y2_c00059{bottom:498.493333pt;}
.y1_c00059{bottom:508.562667pt;}
.hc_c00059{height:51.308302pt;}
.h10_c00059{height:52.241180pt;}
.ha_c00059{height:52.242880pt;}
.hd_c00059{height:53.174059pt;}
.h5_c00059{height:53.175788pt;}
.h11_c00059{height:54.106937pt;}
.h6_c00059{height:54.108697pt;}
.h4_c00059{height:55.041606pt;}
.h2_c00059{height:55.066667pt;}
.hf_c00059{height:55.972693pt;}
.h7_c00059{height:55.974514pt;}
.h13_c00059{height:56.905572pt;}
.h12_c00059{height:57.838450pt;}
.h9_c00059{height:57.840331pt;}
.h8_c00059{height:60.639057pt;}
.he_c00059{height:62.502841pt;}
.h3_c00059{height:63.437783pt;}
.hb_c00059{height:64.370691pt;}
.h1_c00059{height:551.333333pt;}
.h0_c00059{height:551.466667pt;}
.w0_c00059{width:331.680000pt;}
.w1_c00059{width:332.000000pt;}
.x0_c00059{left:0.000000pt;}
.x55_c00059{left:25.019784pt;}
.x5a_c00059{left:26.767500pt;}
.x89_c00059{left:28.170132pt;}
.x33_c00059{left:29.463156pt;}
.x5f_c00059{left:32.572544pt;}
.x81_c00059{left:33.603295pt;}
.x5b_c00059{left:35.032824pt;}
.x41_c00059{left:36.442860pt;}
.x2_c00059{left:37.516000pt;}
.x29_c00059{left:38.477676pt;}
.x48_c00059{left:42.081312pt;}
.x51_c00059{left:43.561008pt;}
.x56_c00059{left:50.228224pt;}
.x88_c00059{left:52.100715pt;}
.x60_c00059{left:53.812204pt;}
.x3_c00059{left:55.319512pt;}
.x4e_c00059{left:58.114672pt;}
.x24_c00059{left:60.421092pt;}
.x16_c00059{left:62.081504pt;}
.x77_c00059{left:63.924825pt;}
.x9_c00059{left:65.194464pt;}
.x73_c00059{left:67.410087pt;}
.x82_c00059{left:69.475747pt;}
.x42_c00059{left:70.595832pt;}
.x7e_c00059{left:71.588988pt;}
.x17_c00059{left:72.893896pt;}
.x49_c00059{left:74.813140pt;}
.x84_c00059{left:77.386151pt;}
.xa_c00059{left:78.466928pt;}
.x1d_c00059{left:79.540628pt;}
.x2a_c00059{left:80.545008pt;}
.x34_c00059{left:82.365956pt;}
.x10_c00059{left:84.360576pt;}
.x69_c00059{left:86.455041pt;}
.x43_c00059{left:88.328796pt;}
.x1e_c00059{left:90.816824pt;}
.x74_c00059{left:91.951623pt;}
.x6d_c00059{left:93.406847pt;}
.x25_c00059{left:94.413964pt;}
.x85_c00059{left:95.321156pt;}
.x52_c00059{left:97.332504pt;}
.x7f_c00059{left:98.736480pt;}
.x11_c00059{left:99.955244pt;}
.x61_c00059{left:101.833108pt;}
.x3b_c00059{left:103.277004pt;}
.x70_c00059{left:104.385883pt;}
.x78_c00059{left:106.803137pt;}
.x68_c00059{left:108.765823pt;}
.x44_c00059{left:110.558604pt;}
.x4_c00059{left:111.740368pt;}
.x65_c00059{left:112.812753pt;}
.xb_c00059{left:116.994592pt;}
.x6a_c00059{left:118.543945pt;}
.x4f_c00059{left:120.511380pt;}
.x71_c00059{left:122.341588pt;}
.x18_c00059{left:126.901244pt;}
.x57_c00059{left:129.479468pt;}
.x1f_c00059{left:133.519032pt;}
.x2b_c00059{left:135.014096pt;}
.x62_c00059{left:136.562232pt;}
.xc_c00059{left:137.875868pt;}
.x19_c00059{left:140.321152pt;}
.x4a_c00059{left:141.493000pt;}
.x83_c00059{left:142.909541pt;}
.x12_c00059{left:145.105820pt;}
.x35_c00059{left:148.824060pt;}
.x3c_c00059{left:151.275696pt;}
.x26_c00059{left:152.207508pt;}
.xd_c00059{left:154.455104pt;}
.x2c_c00059{left:157.952632pt;}
.x1a_c00059{left:160.364368pt;}
.x4b_c00059{left:161.385736pt;}
.x13_c00059{left:162.391192pt;}
.x1_c00059{left:163.920000pt;}
.x36_c00059{left:166.097428pt;}
.x79_c00059{left:167.809552pt;}
.x45_c00059{left:169.439512pt;}
.x20_c00059{left:170.499892pt;}
.x8a_c00059{left:175.020064pt;}
.x50_c00059{left:178.599508pt;}
.x7c_c00059{left:179.590539pt;}
.x30_c00059{left:183.008460pt;}
.x5_c00059{left:185.252116pt;}
.x66_c00059{left:188.029780pt;}
.x58_c00059{left:189.107700pt;}
.x5c_c00059{left:194.864784pt;}
.x1b_c00059{left:196.367032pt;}
.x2d_c00059{left:197.654200pt;}
.x75_c00059{left:199.763163pt;}
.x3d_c00059{left:201.146872pt;}
.x46_c00059{left:202.335472pt;}
.x21_c00059{left:203.978164pt;}
.x37_c00059{left:205.692632pt;}
.x5d_c00059{left:207.094272pt;}
.x59_c00059{left:209.112996pt;}
.x63_c00059{left:210.092628pt;}
.x86_c00059{left:212.087707pt;}
.x38_c00059{left:213.040892pt;}
.x4c_c00059{left:214.419224pt;}
.x3e_c00059{left:216.523592pt;}
.x6e_c00059{left:217.472103pt;}
.x7a_c00059{left:219.644711pt;}
.x14_c00059{left:220.676992pt;}
.x64_c00059{left:222.051324pt;}
.x6b_c00059{left:224.470663pt;}
.x5e_c00059{left:226.382248pt;}
.x6_c00059{left:228.274384pt;}
.xe_c00059{left:231.451824pt;}
.x2e_c00059{left:233.655208pt;}
.x7b_c00059{left:238.306903pt;}
.x7_c00059{left:239.702944pt;}
.x27_c00059{left:242.723284pt;}
.x39_c00059{left:245.230560pt;}
.x22_c00059{left:247.245052pt;}
.x3f_c00059{left:251.284404pt;}
.x53_c00059{left:252.576596pt;}
.xf_c00059{left:254.244960pt;}
.x23_c00059{left:257.672896pt;}
.x31_c00059{left:259.469368pt;}
.x87_c00059{left:262.220697pt;}
.x80_c00059{left:263.310408pt;}
.x4d_c00059{left:265.133480pt;}
.x3a_c00059{left:267.552396pt;}
.x2f_c00059{left:268.607888pt;}
.x6f_c00059{left:269.990117pt;}
.x7d_c00059{left:271.196709pt;}
.x1c_c00059{left:273.242272pt;}
.x28_c00059{left:274.498420pt;}
.x15_c00059{left:277.390680pt;}
.x76_c00059{left:278.562847pt;}
.x47_c00059{left:280.242320pt;}
.x32_c00059{left:281.513220pt;}
.x72_c00059{left:284.056113pt;}
.x8_c00059{left:285.337264pt;}
.x40_c00059{left:287.206500pt;}
.x54_c00059{left:289.298760pt;}
.x6c_c00059{left:291.024844pt;}
.x67_c00059{left:295.141647pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00060 {
    display:none;
  }
  .loading-indicator_c00060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00060 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00060 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00060" -> "#page-container .classname_c00060")
 */
.pf_c00060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00060 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00060 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00060 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00060 {overflow:visible;}
  }
}
.c_c00060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00060 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00060:after { /* webkit #35443 */
  content: '';
}
.t_c00060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00060 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00060 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00060 { /* info for Javascript */
  display:none;
}
.l_c00060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00060:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00060 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00060.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00060{transform:matrix(0.055785,-0.001843,0.008254,0.249864,0,0);-ms-transform:matrix(0.055785,-0.001843,0.008254,0.249864,0,0);-webkit-transform:matrix(0.055785,-0.001843,0.008254,0.249864,0,0);}
.m44_c00060{transform:matrix(0.067763,-0.002238,0.008254,0.249864,0,0);-ms-transform:matrix(0.067763,-0.002238,0.008254,0.249864,0,0);-webkit-transform:matrix(0.067763,-0.002238,0.008254,0.249864,0,0);}
.md1_c00060{transform:matrix(0.128377,-0.003851,0.007497,0.249888,0,0);-ms-transform:matrix(0.128377,-0.003851,0.007497,0.249888,0,0);-webkit-transform:matrix(0.128377,-0.003851,0.007497,0.249888,0,0);}
.m24_c00060{transform:matrix(0.132043,-0.004362,0.008254,0.249864,0,0);-ms-transform:matrix(0.132043,-0.004362,0.008254,0.249864,0,0);-webkit-transform:matrix(0.132043,-0.004362,0.008254,0.249864,0,0);}
.m0_c00060{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.148219,-0.004896,0.008254,0.249864,0,0);-ms-transform:matrix(0.148219,-0.004896,0.008254,0.249864,0,0);-webkit-transform:matrix(0.148219,-0.004896,0.008254,0.249864,0,0);}
.ma2_c00060{transform:matrix(0.150102,-0.004503,0.007497,0.249888,0,0);-ms-transform:matrix(0.150102,-0.004503,0.007497,0.249888,0,0);-webkit-transform:matrix(0.150102,-0.004503,0.007497,0.249888,0,0);}
.mf0_c00060{transform:matrix(0.151907,-0.004557,0.007497,0.249888,0,0);-ms-transform:matrix(0.151907,-0.004557,0.007497,0.249888,0,0);-webkit-transform:matrix(0.151907,-0.004557,0.007497,0.249888,0,0);}
.me3_c00060{transform:matrix(0.154500,-0.004635,0.007497,0.249888,0,0);-ms-transform:matrix(0.154500,-0.004635,0.007497,0.249888,0,0);-webkit-transform:matrix(0.154500,-0.004635,0.007497,0.249888,0,0);}
.m94_c00060{transform:matrix(0.156100,-0.004683,0.007497,0.249888,0,0);-ms-transform:matrix(0.156100,-0.004683,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156100,-0.004683,0.007497,0.249888,0,0);}
.m5_c00060{transform:matrix(0.156625,-0.005174,0.008254,0.249864,0,0);-ms-transform:matrix(0.156625,-0.005174,0.008254,0.249864,0,0);-webkit-transform:matrix(0.156625,-0.005174,0.008254,0.249864,0,0);}
.m26_c00060{transform:matrix(0.157139,-0.005191,0.008254,0.249864,0,0);-ms-transform:matrix(0.157139,-0.005191,0.008254,0.249864,0,0);-webkit-transform:matrix(0.157139,-0.005191,0.008254,0.249864,0,0);}
.m50_c00060{transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);-ms-transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);}
.m1c_c00060{transform:matrix(0.158404,-0.005233,0.008254,0.249864,0,0);-ms-transform:matrix(0.158404,-0.005233,0.008254,0.249864,0,0);-webkit-transform:matrix(0.158404,-0.005233,0.008254,0.249864,0,0);}
.m28_c00060{transform:matrix(0.160228,-0.005293,0.008254,0.249864,0,0);-ms-transform:matrix(0.160228,-0.005293,0.008254,0.249864,0,0);-webkit-transform:matrix(0.160228,-0.005293,0.008254,0.249864,0,0);}
.meb_c00060{transform:matrix(0.160413,-0.004812,0.007497,0.249888,0,0);-ms-transform:matrix(0.160413,-0.004812,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160413,-0.004812,0.007497,0.249888,0,0);}
.mbd_c00060{transform:matrix(0.160958,-0.004829,0.007497,0.249888,0,0);-ms-transform:matrix(0.160958,-0.004829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160958,-0.004829,0.007497,0.249888,0,0);}
.me5_c00060{transform:matrix(0.161068,-0.004832,0.007497,0.249888,0,0);-ms-transform:matrix(0.161068,-0.004832,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161068,-0.004832,0.007497,0.249888,0,0);}
.m78_c00060{transform:matrix(0.161767,-0.004853,0.007497,0.249888,0,0);-ms-transform:matrix(0.161767,-0.004853,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161767,-0.004853,0.007497,0.249888,0,0);}
.ma4_c00060{transform:matrix(0.162232,-0.004867,0.007497,0.249888,0,0);-ms-transform:matrix(0.162232,-0.004867,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162232,-0.004867,0.007497,0.249888,0,0);}
.m89_c00060{transform:matrix(0.163561,-0.004907,0.007497,0.249888,0,0);-ms-transform:matrix(0.163561,-0.004907,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163561,-0.004907,0.007497,0.249888,0,0);}
.m54_c00060{transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);-ms-transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);}
.m20_c00060{transform:matrix(0.164785,-0.005443,0.008254,0.249864,0,0);-ms-transform:matrix(0.164785,-0.005443,0.008254,0.249864,0,0);-webkit-transform:matrix(0.164785,-0.005443,0.008254,0.249864,0,0);}
.ma8_c00060{transform:matrix(0.166515,-0.004995,0.007497,0.249888,0,0);-ms-transform:matrix(0.166515,-0.004995,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166515,-0.004995,0.007497,0.249888,0,0);}
.m97_c00060{transform:matrix(0.166980,-0.005009,0.007497,0.249888,0,0);-ms-transform:matrix(0.166980,-0.005009,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166980,-0.005009,0.007497,0.249888,0,0);}
.mb4_c00060{transform:matrix(0.167210,-0.005016,0.007497,0.249888,0,0);-ms-transform:matrix(0.167210,-0.005016,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167210,-0.005016,0.007497,0.249888,0,0);}
.m8a_c00060{transform:matrix(0.167790,-0.005034,0.007497,0.249888,0,0);-ms-transform:matrix(0.167790,-0.005034,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167790,-0.005034,0.007497,0.249888,0,0);}
.mac_c00060{transform:matrix(0.167864,-0.005036,0.007497,0.249888,0,0);-ms-transform:matrix(0.167864,-0.005036,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167864,-0.005036,0.007497,0.249888,0,0);}
.m92_c00060{transform:matrix(0.168024,-0.005041,0.007497,0.249888,0,0);-ms-transform:matrix(0.168024,-0.005041,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168024,-0.005041,0.007497,0.249888,0,0);}
.m9b_c00060{transform:matrix(0.169114,-0.005073,0.007497,0.249888,0,0);-ms-transform:matrix(0.169114,-0.005073,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169114,-0.005073,0.007497,0.249888,0,0);}
.m27_c00060{transform:matrix(0.169398,-0.005596,0.008254,0.249864,0,0);-ms-transform:matrix(0.169398,-0.005596,0.008254,0.249864,0,0);-webkit-transform:matrix(0.169398,-0.005596,0.008254,0.249864,0,0);}
.m96_c00060{transform:matrix(0.169779,-0.005093,0.007497,0.249888,0,0);-ms-transform:matrix(0.169779,-0.005093,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169779,-0.005093,0.007497,0.249888,0,0);}
.m40_c00060{transform:matrix(0.170107,-0.005619,0.008254,0.249864,0,0);-ms-transform:matrix(0.170107,-0.005619,0.008254,0.249864,0,0);-webkit-transform:matrix(0.170107,-0.005619,0.008254,0.249864,0,0);}
.m55_c00060{transform:matrix(0.170308,-0.005109,0.007497,0.249888,0,0);-ms-transform:matrix(0.170308,-0.005109,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170308,-0.005109,0.007497,0.249888,0,0);}
.m98_c00060{transform:matrix(0.170553,-0.005117,0.007497,0.249888,0,0);-ms-transform:matrix(0.170553,-0.005117,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170553,-0.005117,0.007497,0.249888,0,0);}
.m88_c00060{transform:matrix(0.170648,-0.005119,0.007497,0.249888,0,0);-ms-transform:matrix(0.170648,-0.005119,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170648,-0.005119,0.007497,0.249888,0,0);}
.m8d_c00060{transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);-ms-transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);}
.mb0_c00060{transform:matrix(0.171588,-0.005148,0.007497,0.249888,0,0);-ms-transform:matrix(0.171588,-0.005148,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171588,-0.005148,0.007497,0.249888,0,0);}
.m1b_c00060{transform:matrix(0.172166,-0.005687,0.008254,0.249864,0,0);-ms-transform:matrix(0.172166,-0.005687,0.008254,0.249864,0,0);-webkit-transform:matrix(0.172166,-0.005687,0.008254,0.249864,0,0);}
.m3c_c00060{transform:matrix(0.172901,-0.005711,0.008254,0.249864,0,0);-ms-transform:matrix(0.172901,-0.005711,0.008254,0.249864,0,0);-webkit-transform:matrix(0.172901,-0.005711,0.008254,0.249864,0,0);}
.m87_c00060{transform:matrix(0.173037,-0.005191,0.007497,0.249888,0,0);-ms-transform:matrix(0.173037,-0.005191,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173037,-0.005191,0.007497,0.249888,0,0);}
.m4e_c00060{transform:matrix(0.173042,-0.005191,0.007497,0.249888,0,0);-ms-transform:matrix(0.173042,-0.005191,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173042,-0.005191,0.007497,0.249888,0,0);}
.m4b_c00060{transform:matrix(0.173617,-0.005209,0.007497,0.249888,0,0);-ms-transform:matrix(0.173617,-0.005209,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173617,-0.005209,0.007497,0.249888,0,0);}
.mb6_c00060{transform:matrix(0.174851,-0.005246,0.007497,0.249888,0,0);-ms-transform:matrix(0.174851,-0.005246,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174851,-0.005246,0.007497,0.249888,0,0);}
.m5a_c00060{transform:matrix(0.175346,-0.005260,0.007497,0.249888,0,0);-ms-transform:matrix(0.175346,-0.005260,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175346,-0.005260,0.007497,0.249888,0,0);}
.mec_c00060{transform:matrix(0.175916,-0.005277,0.007497,0.249888,0,0);-ms-transform:matrix(0.175916,-0.005277,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175916,-0.005277,0.007497,0.249888,0,0);}
.mda_c00060{transform:matrix(0.175946,-0.005278,0.007497,0.249888,0,0);-ms-transform:matrix(0.175946,-0.005278,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175946,-0.005278,0.007497,0.249888,0,0);}
.m7b_c00060{transform:matrix(0.176995,-0.005310,0.007497,0.249888,0,0);-ms-transform:matrix(0.176995,-0.005310,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176995,-0.005310,0.007497,0.249888,0,0);}
.m16_c00060{transform:matrix(0.177453,-0.005862,0.008254,0.249864,0,0);-ms-transform:matrix(0.177453,-0.005862,0.008254,0.249864,0,0);-webkit-transform:matrix(0.177453,-0.005862,0.008254,0.249864,0,0);}
.mcb_c00060{transform:matrix(0.177540,-0.005326,0.007497,0.249888,0,0);-ms-transform:matrix(0.177540,-0.005326,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177540,-0.005326,0.007497,0.249888,0,0);}
.m25_c00060{transform:matrix(0.178133,-0.005884,0.008254,0.249864,0,0);-ms-transform:matrix(0.178133,-0.005884,0.008254,0.249864,0,0);-webkit-transform:matrix(0.178133,-0.005884,0.008254,0.249864,0,0);}
.m3_c00060{transform:matrix(0.178937,-0.005911,0.008254,0.249864,0,0);-ms-transform:matrix(0.178937,-0.005911,0.008254,0.249864,0,0);-webkit-transform:matrix(0.178937,-0.005911,0.008254,0.249864,0,0);}
.ma1_c00060{transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);-ms-transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);}
.m31_c00060{transform:matrix(0.180062,-0.005948,0.008254,0.249864,0,0);-ms-transform:matrix(0.180062,-0.005948,0.008254,0.249864,0,0);-webkit-transform:matrix(0.180062,-0.005948,0.008254,0.249864,0,0);}
.ma9_c00060{transform:matrix(0.180169,-0.005405,0.007497,0.249888,0,0);-ms-transform:matrix(0.180169,-0.005405,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180169,-0.005405,0.007497,0.249888,0,0);}
.mcc_c00060{transform:matrix(0.180994,-0.005430,0.007497,0.249888,0,0);-ms-transform:matrix(0.180994,-0.005430,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180994,-0.005430,0.007497,0.249888,0,0);}
.m48_c00060{transform:matrix(0.181303,-0.005439,0.007497,0.249888,0,0);-ms-transform:matrix(0.181303,-0.005439,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181303,-0.005439,0.007497,0.249888,0,0);}
.mb3_c00060{transform:matrix(0.181378,-0.005441,0.007497,0.249888,0,0);-ms-transform:matrix(0.181378,-0.005441,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181378,-0.005441,0.007497,0.249888,0,0);}
.m18_c00060{transform:matrix(0.181951,-0.006010,0.008254,0.249864,0,0);-ms-transform:matrix(0.181951,-0.006010,0.008254,0.249864,0,0);-webkit-transform:matrix(0.181951,-0.006010,0.008254,0.249864,0,0);}
.m8e_c00060{transform:matrix(0.182018,-0.005461,0.007497,0.249888,0,0);-ms-transform:matrix(0.182018,-0.005461,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182018,-0.005461,0.007497,0.249888,0,0);}
.m8b_c00060{transform:matrix(0.182873,-0.005486,0.007497,0.249888,0,0);-ms-transform:matrix(0.182873,-0.005486,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182873,-0.005486,0.007497,0.249888,0,0);}
.m2b_c00060{transform:matrix(0.183070,-0.006047,0.008254,0.249864,0,0);-ms-transform:matrix(0.183070,-0.006047,0.008254,0.249864,0,0);-webkit-transform:matrix(0.183070,-0.006047,0.008254,0.249864,0,0);}
.m29_c00060{transform:matrix(0.183080,-0.006048,0.008254,0.249864,0,0);-ms-transform:matrix(0.183080,-0.006048,0.008254,0.249864,0,0);-webkit-transform:matrix(0.183080,-0.006048,0.008254,0.249864,0,0);}
.m21_c00060{transform:matrix(0.183640,-0.006066,0.008254,0.249864,0,0);-ms-transform:matrix(0.183640,-0.006066,0.008254,0.249864,0,0);-webkit-transform:matrix(0.183640,-0.006066,0.008254,0.249864,0,0);}
.md3_c00060{transform:matrix(0.183997,-0.005520,0.007497,0.249888,0,0);-ms-transform:matrix(0.183997,-0.005520,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183997,-0.005520,0.007497,0.249888,0,0);}
.m7a_c00060{transform:matrix(0.184387,-0.005532,0.007497,0.249888,0,0);-ms-transform:matrix(0.184387,-0.005532,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184387,-0.005532,0.007497,0.249888,0,0);}
.m5b_c00060{transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);-ms-transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);}
.me6_c00060{transform:matrix(0.184612,-0.005538,0.007497,0.249888,0,0);-ms-transform:matrix(0.184612,-0.005538,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184612,-0.005538,0.007497,0.249888,0,0);}
.m4c_c00060{transform:matrix(0.185147,-0.005554,0.007497,0.249888,0,0);-ms-transform:matrix(0.185147,-0.005554,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185147,-0.005554,0.007497,0.249888,0,0);}
.mdc_c00060{transform:matrix(0.185537,-0.005566,0.007497,0.249888,0,0);-ms-transform:matrix(0.185537,-0.005566,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185537,-0.005566,0.007497,0.249888,0,0);}
.mef_c00060{transform:matrix(0.185861,-0.005576,0.007497,0.249888,0,0);-ms-transform:matrix(0.185861,-0.005576,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185861,-0.005576,0.007497,0.249888,0,0);}
.mb1_c00060{transform:matrix(0.186176,-0.005585,0.007497,0.249888,0,0);-ms-transform:matrix(0.186176,-0.005585,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186176,-0.005585,0.007497,0.249888,0,0);}
.m72_c00060{transform:matrix(0.186486,-0.005595,0.007497,0.249888,0,0);-ms-transform:matrix(0.186486,-0.005595,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186486,-0.005595,0.007497,0.249888,0,0);}
.mea_c00060{transform:matrix(0.186506,-0.005595,0.007497,0.249888,0,0);-ms-transform:matrix(0.186506,-0.005595,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186506,-0.005595,0.007497,0.249888,0,0);}
.m6d_c00060{transform:matrix(0.186971,-0.005609,0.007497,0.249888,0,0);-ms-transform:matrix(0.186971,-0.005609,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186971,-0.005609,0.007497,0.249888,0,0);}
.m4a_c00060{transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);-ms-transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);}
.m2a_c00060{transform:matrix(0.187108,-0.006181,0.008254,0.249864,0,0);-ms-transform:matrix(0.187108,-0.006181,0.008254,0.249864,0,0);-webkit-transform:matrix(0.187108,-0.006181,0.008254,0.249864,0,0);}
.m46_c00060{transform:matrix(0.187161,-0.005615,0.007497,0.249888,0,0);-ms-transform:matrix(0.187161,-0.005615,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187161,-0.005615,0.007497,0.249888,0,0);}
.mad_c00060{transform:matrix(0.187321,-0.005620,0.007497,0.249888,0,0);-ms-transform:matrix(0.187321,-0.005620,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187321,-0.005620,0.007497,0.249888,0,0);}
.mbe_c00060{transform:matrix(0.187426,-0.005623,0.007497,0.249888,0,0);-ms-transform:matrix(0.187426,-0.005623,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187426,-0.005623,0.007497,0.249888,0,0);}
.mb5_c00060{transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-ms-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);}
.m73_c00060{transform:matrix(0.187801,-0.005634,0.007497,0.249888,0,0);-ms-transform:matrix(0.187801,-0.005634,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187801,-0.005634,0.007497,0.249888,0,0);}
.m49_c00060{transform:matrix(0.187945,-0.005638,0.007497,0.249888,0,0);-ms-transform:matrix(0.187945,-0.005638,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187945,-0.005638,0.007497,0.249888,0,0);}
.m1_c00060{transform:matrix(0.187997,-0.006210,0.008254,0.249864,0,0);-ms-transform:matrix(0.187997,-0.006210,0.008254,0.249864,0,0);-webkit-transform:matrix(0.187997,-0.006210,0.008254,0.249864,0,0);}
.m61_c00060{transform:matrix(0.188035,-0.005641,0.007497,0.249888,0,0);-ms-transform:matrix(0.188035,-0.005641,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188035,-0.005641,0.007497,0.249888,0,0);}
.m15_c00060{transform:matrix(0.188317,-0.006221,0.008254,0.249864,0,0);-ms-transform:matrix(0.188317,-0.006221,0.008254,0.249864,0,0);-webkit-transform:matrix(0.188317,-0.006221,0.008254,0.249864,0,0);}
.m47_c00060{transform:matrix(0.188430,-0.005653,0.007497,0.249888,0,0);-ms-transform:matrix(0.188430,-0.005653,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188430,-0.005653,0.007497,0.249888,0,0);}
.m9f_c00060{transform:matrix(0.188500,-0.005655,0.007497,0.249888,0,0);-ms-transform:matrix(0.188500,-0.005655,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188500,-0.005655,0.007497,0.249888,0,0);}
.ma5_c00060{transform:matrix(0.188650,-0.005660,0.007497,0.249888,0,0);-ms-transform:matrix(0.188650,-0.005660,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188650,-0.005660,0.007497,0.249888,0,0);}
.md4_c00060{transform:matrix(0.188735,-0.005662,0.007497,0.249888,0,0);-ms-transform:matrix(0.188735,-0.005662,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188735,-0.005662,0.007497,0.249888,0,0);}
.m41_c00060{transform:matrix(0.188962,-0.006242,0.008254,0.249864,0,0);-ms-transform:matrix(0.188962,-0.006242,0.008254,0.249864,0,0);-webkit-transform:matrix(0.188962,-0.006242,0.008254,0.249864,0,0);}
.m51_c00060{transform:matrix(0.188985,-0.005670,0.007497,0.249888,0,0);-ms-transform:matrix(0.188985,-0.005670,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188985,-0.005670,0.007497,0.249888,0,0);}
.maf_c00060{transform:matrix(0.189225,-0.005677,0.007497,0.249888,0,0);-ms-transform:matrix(0.189225,-0.005677,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189225,-0.005677,0.007497,0.249888,0,0);}
.m99_c00060{transform:matrix(0.189230,-0.005677,0.007497,0.249888,0,0);-ms-transform:matrix(0.189230,-0.005677,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189230,-0.005677,0.007497,0.249888,0,0);}
.mb9_c00060{transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);-ms-transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189925,-0.005698,0.007497,0.249888,0,0);}
.ma0_c00060{transform:matrix(0.190049,-0.005701,0.007497,0.249888,0,0);-ms-transform:matrix(0.190049,-0.005701,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190049,-0.005701,0.007497,0.249888,0,0);}
.m95_c00060{transform:matrix(0.190084,-0.005703,0.007497,0.249888,0,0);-ms-transform:matrix(0.190084,-0.005703,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190084,-0.005703,0.007497,0.249888,0,0);}
.m53_c00060{transform:matrix(0.190344,-0.005710,0.007497,0.249888,0,0);-ms-transform:matrix(0.190344,-0.005710,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190344,-0.005710,0.007497,0.249888,0,0);}
.m3d_c00060{transform:matrix(0.190361,-0.006288,0.008254,0.249864,0,0);-ms-transform:matrix(0.190361,-0.006288,0.008254,0.249864,0,0);-webkit-transform:matrix(0.190361,-0.006288,0.008254,0.249864,0,0);}
.me9_c00060{transform:matrix(0.190414,-0.005712,0.007497,0.249888,0,0);-ms-transform:matrix(0.190414,-0.005712,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190414,-0.005712,0.007497,0.249888,0,0);}
.m7f_c00060{transform:matrix(0.190804,-0.005724,0.007497,0.249888,0,0);-ms-transform:matrix(0.190804,-0.005724,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190804,-0.005724,0.007497,0.249888,0,0);}
.m9a_c00060{transform:matrix(0.191669,-0.005750,0.007497,0.249888,0,0);-ms-transform:matrix(0.191669,-0.005750,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191669,-0.005750,0.007497,0.249888,0,0);}
.mdb_c00060{transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);-ms-transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);}
.m60_c00060{transform:matrix(0.192673,-0.005780,0.007497,0.249888,0,0);-ms-transform:matrix(0.192673,-0.005780,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192673,-0.005780,0.007497,0.249888,0,0);}
.m9d_c00060{transform:matrix(0.193543,-0.005806,0.007497,0.249888,0,0);-ms-transform:matrix(0.193543,-0.005806,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193543,-0.005806,0.007497,0.249888,0,0);}
.me8_c00060{transform:matrix(0.193603,-0.005808,0.007497,0.249888,0,0);-ms-transform:matrix(0.193603,-0.005808,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193603,-0.005808,0.007497,0.249888,0,0);}
.m9_c00060{transform:matrix(0.193694,-0.006398,0.008254,0.249864,0,0);-ms-transform:matrix(0.193694,-0.006398,0.008254,0.249864,0,0);-webkit-transform:matrix(0.193694,-0.006398,0.008254,0.249864,0,0);}
.me4_c00060{transform:matrix(0.194642,-0.005839,0.007497,0.249888,0,0);-ms-transform:matrix(0.194642,-0.005839,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194642,-0.005839,0.007497,0.249888,0,0);}
.maa_c00060{transform:matrix(0.194712,-0.005841,0.007497,0.249888,0,0);-ms-transform:matrix(0.194712,-0.005841,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194712,-0.005841,0.007497,0.249888,0,0);}
.m70_c00060{transform:matrix(0.194827,-0.005845,0.007497,0.249888,0,0);-ms-transform:matrix(0.194827,-0.005845,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194827,-0.005845,0.007497,0.249888,0,0);}
.m90_c00060{transform:matrix(0.194872,-0.005846,0.007497,0.249888,0,0);-ms-transform:matrix(0.194872,-0.005846,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194872,-0.005846,0.007497,0.249888,0,0);}
.m7d_c00060{transform:matrix(0.194937,-0.005848,0.007497,0.249888,0,0);-ms-transform:matrix(0.194937,-0.005848,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194937,-0.005848,0.007497,0.249888,0,0);}
.mc3_c00060{transform:matrix(0.194977,-0.005849,0.007497,0.249888,0,0);-ms-transform:matrix(0.194977,-0.005849,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194977,-0.005849,0.007497,0.249888,0,0);}
.m14_c00060{transform:matrix(0.195558,-0.006460,0.008254,0.249864,0,0);-ms-transform:matrix(0.195558,-0.006460,0.008254,0.249864,0,0);-webkit-transform:matrix(0.195558,-0.006460,0.008254,0.249864,0,0);}
.m86_c00060{transform:matrix(0.195607,-0.005868,0.007497,0.249888,0,0);-ms-transform:matrix(0.195607,-0.005868,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195607,-0.005868,0.007497,0.249888,0,0);}
.m8c_c00060{transform:matrix(0.196127,-0.005884,0.007497,0.249888,0,0);-ms-transform:matrix(0.196127,-0.005884,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196127,-0.005884,0.007497,0.249888,0,0);}
.m9e_c00060{transform:matrix(0.196327,-0.005890,0.007497,0.249888,0,0);-ms-transform:matrix(0.196327,-0.005890,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196327,-0.005890,0.007497,0.249888,0,0);}
.mb8_c00060{transform:matrix(0.196442,-0.005893,0.007497,0.249888,0,0);-ms-transform:matrix(0.196442,-0.005893,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196442,-0.005893,0.007497,0.249888,0,0);}
.mae_c00060{transform:matrix(0.196552,-0.005897,0.007497,0.249888,0,0);-ms-transform:matrix(0.196552,-0.005897,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196552,-0.005897,0.007497,0.249888,0,0);}
.m4d_c00060{transform:matrix(0.196697,-0.005901,0.007497,0.249888,0,0);-ms-transform:matrix(0.196697,-0.005901,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196697,-0.005901,0.007497,0.249888,0,0);}
.m3b_c00060{transform:matrix(0.196943,-0.006506,0.008254,0.249864,0,0);-ms-transform:matrix(0.196943,-0.006506,0.008254,0.249864,0,0);-webkit-transform:matrix(0.196943,-0.006506,0.008254,0.249864,0,0);}
.m2_c00060{transform:matrix(0.197307,-0.006518,0.008254,0.249864,0,0);-ms-transform:matrix(0.197307,-0.006518,0.008254,0.249864,0,0);-webkit-transform:matrix(0.197307,-0.006518,0.008254,0.249864,0,0);}
.m4_c00060{transform:matrix(0.197747,-0.006532,0.008254,0.249864,0,0);-ms-transform:matrix(0.197747,-0.006532,0.008254,0.249864,0,0);-webkit-transform:matrix(0.197747,-0.006532,0.008254,0.249864,0,0);}
.m5f_c00060{transform:matrix(0.198011,-0.005940,0.007497,0.249888,0,0);-ms-transform:matrix(0.198011,-0.005940,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198011,-0.005940,0.007497,0.249888,0,0);}
.m33_c00060{transform:matrix(0.198082,-0.006543,0.008254,0.249864,0,0);-ms-transform:matrix(0.198082,-0.006543,0.008254,0.249864,0,0);-webkit-transform:matrix(0.198082,-0.006543,0.008254,0.249864,0,0);}
.mcf_c00060{transform:matrix(0.198346,-0.005950,0.007497,0.249888,0,0);-ms-transform:matrix(0.198346,-0.005950,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198346,-0.005950,0.007497,0.249888,0,0);}
.m7e_c00060{transform:matrix(0.198786,-0.005964,0.007497,0.249888,0,0);-ms-transform:matrix(0.198786,-0.005964,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198786,-0.005964,0.007497,0.249888,0,0);}
.mab_c00060{transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);-ms-transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199145,-0.005974,0.007497,0.249888,0,0);}
.m12_c00060{transform:matrix(0.199851,-0.006602,0.008254,0.249864,0,0);-ms-transform:matrix(0.199851,-0.006602,0.008254,0.249864,0,0);-webkit-transform:matrix(0.199851,-0.006602,0.008254,0.249864,0,0);}
.m19_c00060{transform:matrix(0.199901,-0.006603,0.008254,0.249864,0,0);-ms-transform:matrix(0.199901,-0.006603,0.008254,0.249864,0,0);-webkit-transform:matrix(0.199901,-0.006603,0.008254,0.249864,0,0);}
.ma7_c00060{transform:matrix(0.200770,-0.006023,0.007497,0.249888,0,0);-ms-transform:matrix(0.200770,-0.006023,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200770,-0.006023,0.007497,0.249888,0,0);}
.mce_c00060{transform:matrix(0.201874,-0.006056,0.007497,0.249888,0,0);-ms-transform:matrix(0.201874,-0.006056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201874,-0.006056,0.007497,0.249888,0,0);}
.m91_c00060{transform:matrix(0.201999,-0.006060,0.007497,0.249888,0,0);-ms-transform:matrix(0.201999,-0.006060,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201999,-0.006060,0.007497,0.249888,0,0);}
.mb2_c00060{transform:matrix(0.202394,-0.006072,0.007497,0.249888,0,0);-ms-transform:matrix(0.202394,-0.006072,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202394,-0.006072,0.007497,0.249888,0,0);}
.m57_c00060{transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);-ms-transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);}
.m52_c00060{transform:matrix(0.203294,-0.006099,0.007497,0.249888,0,0);-ms-transform:matrix(0.203294,-0.006099,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203294,-0.006099,0.007497,0.249888,0,0);}
.m2c_c00060{transform:matrix(0.203354,-0.006717,0.008254,0.249864,0,0);-ms-transform:matrix(0.203354,-0.006717,0.008254,0.249864,0,0);-webkit-transform:matrix(0.203354,-0.006717,0.008254,0.249864,0,0);}
.ma_c00060{transform:matrix(0.203574,-0.006725,0.008254,0.249864,0,0);-ms-transform:matrix(0.203574,-0.006725,0.008254,0.249864,0,0);-webkit-transform:matrix(0.203574,-0.006725,0.008254,0.249864,0,0);}
.m6e_c00060{transform:matrix(0.203763,-0.006113,0.007497,0.249888,0,0);-ms-transform:matrix(0.203763,-0.006113,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203763,-0.006113,0.007497,0.249888,0,0);}
.m6_c00060{transform:matrix(0.204134,-0.006743,0.008254,0.249864,0,0);-ms-transform:matrix(0.204134,-0.006743,0.008254,0.249864,0,0);-webkit-transform:matrix(0.204134,-0.006743,0.008254,0.249864,0,0);}
.mba_c00060{transform:matrix(0.204748,-0.006142,0.007497,0.249888,0,0);-ms-transform:matrix(0.204748,-0.006142,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204748,-0.006142,0.007497,0.249888,0,0);}
.m22_c00060{transform:matrix(0.205578,-0.006791,0.008254,0.249864,0,0);-ms-transform:matrix(0.205578,-0.006791,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205578,-0.006791,0.008254,0.249864,0,0);}
.m13_c00060{transform:matrix(0.206093,-0.006808,0.008254,0.249864,0,0);-ms-transform:matrix(0.206093,-0.006808,0.008254,0.249864,0,0);-webkit-transform:matrix(0.206093,-0.006808,0.008254,0.249864,0,0);}
.m93_c00060{transform:matrix(0.206422,-0.006193,0.007497,0.249888,0,0);-ms-transform:matrix(0.206422,-0.006193,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206422,-0.006193,0.007497,0.249888,0,0);}
.md0_c00060{transform:matrix(0.206492,-0.006195,0.007497,0.249888,0,0);-ms-transform:matrix(0.206492,-0.006195,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206492,-0.006195,0.007497,0.249888,0,0);}
.md5_c00060{transform:matrix(0.206727,-0.006202,0.007497,0.249888,0,0);-ms-transform:matrix(0.206727,-0.006202,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206727,-0.006202,0.007497,0.249888,0,0);}
.me1_c00060{transform:matrix(0.207037,-0.006211,0.007497,0.249888,0,0);-ms-transform:matrix(0.207037,-0.006211,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207037,-0.006211,0.007497,0.249888,0,0);}
.m7_c00060{transform:matrix(0.207302,-0.006848,0.008254,0.249864,0,0);-ms-transform:matrix(0.207302,-0.006848,0.008254,0.249864,0,0);-webkit-transform:matrix(0.207302,-0.006848,0.008254,0.249864,0,0);}
.md9_c00060{transform:matrix(0.207672,-0.006230,0.007497,0.249888,0,0);-ms-transform:matrix(0.207672,-0.006230,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207672,-0.006230,0.007497,0.249888,0,0);}
.m81_c00060{transform:matrix(0.208491,-0.006255,0.007497,0.249888,0,0);-ms-transform:matrix(0.208491,-0.006255,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208491,-0.006255,0.007497,0.249888,0,0);}
.m62_c00060{transform:matrix(0.208546,-0.006256,0.007497,0.249888,0,0);-ms-transform:matrix(0.208546,-0.006256,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208546,-0.006256,0.007497,0.249888,0,0);}
.m3a_c00060{transform:matrix(0.208626,-0.006892,0.008254,0.249864,0,0);-ms-transform:matrix(0.208626,-0.006892,0.008254,0.249864,0,0);-webkit-transform:matrix(0.208626,-0.006892,0.008254,0.249864,0,0);}
.m5e_c00060{transform:matrix(0.209146,-0.006274,0.007497,0.249888,0,0);-ms-transform:matrix(0.209146,-0.006274,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209146,-0.006274,0.007497,0.249888,0,0);}
.med_c00060{transform:matrix(0.209236,-0.006277,0.007497,0.249888,0,0);-ms-transform:matrix(0.209236,-0.006277,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209236,-0.006277,0.007497,0.249888,0,0);}
.m5c_c00060{transform:matrix(0.209456,-0.006284,0.007497,0.249888,0,0);-ms-transform:matrix(0.209456,-0.006284,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209456,-0.006284,0.007497,0.249888,0,0);}
.mde_c00060{transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);-ms-transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);}
.mbc_c00060{transform:matrix(0.210755,-0.006323,0.007497,0.249888,0,0);-ms-transform:matrix(0.210755,-0.006323,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210755,-0.006323,0.007497,0.249888,0,0);}
.m1e_c00060{transform:matrix(0.211100,-0.006973,0.008254,0.249864,0,0);-ms-transform:matrix(0.211100,-0.006973,0.008254,0.249864,0,0);-webkit-transform:matrix(0.211100,-0.006973,0.008254,0.249864,0,0);}
.m4f_c00060{transform:matrix(0.211125,-0.006334,0.007497,0.249888,0,0);-ms-transform:matrix(0.211125,-0.006334,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211125,-0.006334,0.007497,0.249888,0,0);}
.mc2_c00060{transform:matrix(0.211615,-0.006348,0.007497,0.249888,0,0);-ms-transform:matrix(0.211615,-0.006348,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211615,-0.006348,0.007497,0.249888,0,0);}
.m64_c00060{transform:matrix(0.211665,-0.006350,0.007497,0.249888,0,0);-ms-transform:matrix(0.211665,-0.006350,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211665,-0.006350,0.007497,0.249888,0,0);}
.mca_c00060{transform:matrix(0.211735,-0.006352,0.007497,0.249888,0,0);-ms-transform:matrix(0.211735,-0.006352,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211735,-0.006352,0.007497,0.249888,0,0);}
.m2d_c00060{transform:matrix(0.211804,-0.006997,0.008254,0.249864,0,0);-ms-transform:matrix(0.211804,-0.006997,0.008254,0.249864,0,0);-webkit-transform:matrix(0.211804,-0.006997,0.008254,0.249864,0,0);}
.mc_c00060{transform:matrix(0.212069,-0.007005,0.008254,0.249864,0,0);-ms-transform:matrix(0.212069,-0.007005,0.008254,0.249864,0,0);-webkit-transform:matrix(0.212069,-0.007005,0.008254,0.249864,0,0);}
.m74_c00060{transform:matrix(0.212100,-0.006363,0.007497,0.249888,0,0);-ms-transform:matrix(0.212100,-0.006363,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212100,-0.006363,0.007497,0.249888,0,0);}
.mc6_c00060{transform:matrix(0.212719,-0.006382,0.007497,0.249888,0,0);-ms-transform:matrix(0.212719,-0.006382,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212719,-0.006382,0.007497,0.249888,0,0);}
.mc8_c00060{transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);-ms-transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);}
.m85_c00060{transform:matrix(0.213094,-0.006393,0.007497,0.249888,0,0);-ms-transform:matrix(0.213094,-0.006393,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213094,-0.006393,0.007497,0.249888,0,0);}
.m42_c00060{transform:matrix(0.214003,-0.007069,0.008254,0.249864,0,0);-ms-transform:matrix(0.214003,-0.007069,0.008254,0.249864,0,0);-webkit-transform:matrix(0.214003,-0.007069,0.008254,0.249864,0,0);}
.mdd_c00060{transform:matrix(0.214179,-0.006425,0.007497,0.249888,0,0);-ms-transform:matrix(0.214179,-0.006425,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214179,-0.006425,0.007497,0.249888,0,0);}
.ma3_c00060{transform:matrix(0.214753,-0.006443,0.007497,0.249888,0,0);-ms-transform:matrix(0.214753,-0.006443,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214753,-0.006443,0.007497,0.249888,0,0);}
.me2_c00060{transform:matrix(0.215068,-0.006452,0.007497,0.249888,0,0);-ms-transform:matrix(0.215068,-0.006452,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215068,-0.006452,0.007497,0.249888,0,0);}
.ma6_c00060{transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);-ms-transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);}
.md8_c00060{transform:matrix(0.215398,-0.006462,0.007497,0.249888,0,0);-ms-transform:matrix(0.215398,-0.006462,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215398,-0.006462,0.007497,0.249888,0,0);}
.m35_c00060{transform:matrix(0.215462,-0.007117,0.008254,0.249864,0,0);-ms-transform:matrix(0.215462,-0.007117,0.008254,0.249864,0,0);-webkit-transform:matrix(0.215462,-0.007117,0.008254,0.249864,0,0);}
.md7_c00060{transform:matrix(0.215623,-0.006469,0.007497,0.249888,0,0);-ms-transform:matrix(0.215623,-0.006469,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215623,-0.006469,0.007497,0.249888,0,0);}
.me0_c00060{transform:matrix(0.215928,-0.006478,0.007497,0.249888,0,0);-ms-transform:matrix(0.215928,-0.006478,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215928,-0.006478,0.007497,0.249888,0,0);}
.m38_c00060{transform:matrix(0.216267,-0.007144,0.008254,0.249864,0,0);-ms-transform:matrix(0.216267,-0.007144,0.008254,0.249864,0,0);-webkit-transform:matrix(0.216267,-0.007144,0.008254,0.249864,0,0);}
.m2e_c00060{transform:matrix(0.216277,-0.007144,0.008254,0.249864,0,0);-ms-transform:matrix(0.216277,-0.007144,0.008254,0.249864,0,0);-webkit-transform:matrix(0.216277,-0.007144,0.008254,0.249864,0,0);}
.m45_c00060{transform:matrix(0.217147,-0.006514,0.007497,0.249888,0,0);-ms-transform:matrix(0.217147,-0.006514,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217147,-0.006514,0.007497,0.249888,0,0);}
.m7c_c00060{transform:matrix(0.217192,-0.006516,0.007497,0.249888,0,0);-ms-transform:matrix(0.217192,-0.006516,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217192,-0.006516,0.007497,0.249888,0,0);}
.mb7_c00060{transform:matrix(0.217197,-0.006516,0.007497,0.249888,0,0);-ms-transform:matrix(0.217197,-0.006516,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217197,-0.006516,0.007497,0.249888,0,0);}
.m8_c00060{transform:matrix(0.217431,-0.007182,0.008254,0.249864,0,0);-ms-transform:matrix(0.217431,-0.007182,0.008254,0.249864,0,0);-webkit-transform:matrix(0.217431,-0.007182,0.008254,0.249864,0,0);}
.mc0_c00060{transform:matrix(0.217797,-0.006534,0.007497,0.249888,0,0);-ms-transform:matrix(0.217797,-0.006534,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217797,-0.006534,0.007497,0.249888,0,0);}
.m6f_c00060{transform:matrix(0.218147,-0.006544,0.007497,0.249888,0,0);-ms-transform:matrix(0.218147,-0.006544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218147,-0.006544,0.007497,0.249888,0,0);}
.m82_c00060{transform:matrix(0.218732,-0.006562,0.007497,0.249888,0,0);-ms-transform:matrix(0.218732,-0.006562,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218732,-0.006562,0.007497,0.249888,0,0);}
.mf_c00060{transform:matrix(0.218976,-0.007233,0.008254,0.249864,0,0);-ms-transform:matrix(0.218976,-0.007233,0.008254,0.249864,0,0);-webkit-transform:matrix(0.218976,-0.007233,0.008254,0.249864,0,0);}
.m10_c00060{transform:matrix(0.219750,-0.007259,0.008254,0.249864,0,0);-ms-transform:matrix(0.219750,-0.007259,0.008254,0.249864,0,0);-webkit-transform:matrix(0.219750,-0.007259,0.008254,0.249864,0,0);}
.m32_c00060{transform:matrix(0.220090,-0.007270,0.008254,0.249864,0,0);-ms-transform:matrix(0.220090,-0.007270,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220090,-0.007270,0.008254,0.249864,0,0);}
.m37_c00060{transform:matrix(0.220280,-0.007277,0.008254,0.249864,0,0);-ms-transform:matrix(0.220280,-0.007277,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220280,-0.007277,0.008254,0.249864,0,0);}
.m56_c00060{transform:matrix(0.220436,-0.006613,0.007497,0.249888,0,0);-ms-transform:matrix(0.220436,-0.006613,0.007497,0.249888,0,0);-webkit-transform:matrix(0.220436,-0.006613,0.007497,0.249888,0,0);}
.m36_c00060{transform:matrix(0.220440,-0.007282,0.008254,0.249864,0,0);-ms-transform:matrix(0.220440,-0.007282,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220440,-0.007282,0.008254,0.249864,0,0);}
.m23_c00060{transform:matrix(0.221099,-0.007304,0.008254,0.249864,0,0);-ms-transform:matrix(0.221099,-0.007304,0.008254,0.249864,0,0);-webkit-transform:matrix(0.221099,-0.007304,0.008254,0.249864,0,0);}
.m9c_c00060{transform:matrix(0.221111,-0.006633,0.007497,0.249888,0,0);-ms-transform:matrix(0.221111,-0.006633,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221111,-0.006633,0.007497,0.249888,0,0);}
.m2f_c00060{transform:matrix(0.221284,-0.007310,0.008254,0.249864,0,0);-ms-transform:matrix(0.221284,-0.007310,0.008254,0.249864,0,0);-webkit-transform:matrix(0.221284,-0.007310,0.008254,0.249864,0,0);}
.m69_c00060{transform:matrix(0.221995,-0.006660,0.007497,0.249888,0,0);-ms-transform:matrix(0.221995,-0.006660,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221995,-0.006660,0.007497,0.249888,0,0);}
.m39_c00060{transform:matrix(0.223193,-0.007373,0.008254,0.249864,0,0);-ms-transform:matrix(0.223193,-0.007373,0.008254,0.249864,0,0);-webkit-transform:matrix(0.223193,-0.007373,0.008254,0.249864,0,0);}
.m84_c00060{transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);-ms-transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);}
.m30_c00060{transform:matrix(0.223948,-0.007398,0.008254,0.249864,0,0);-ms-transform:matrix(0.223948,-0.007398,0.008254,0.249864,0,0);-webkit-transform:matrix(0.223948,-0.007398,0.008254,0.249864,0,0);}
.m79_c00060{transform:matrix(0.223949,-0.006718,0.007497,0.249888,0,0);-ms-transform:matrix(0.223949,-0.006718,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223949,-0.006718,0.007497,0.249888,0,0);}
.m75_c00060{transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);-ms-transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);}
.m34_c00060{transform:matrix(0.224872,-0.007428,0.008254,0.249864,0,0);-ms-transform:matrix(0.224872,-0.007428,0.008254,0.249864,0,0);-webkit-transform:matrix(0.224872,-0.007428,0.008254,0.249864,0,0);}
.mc9_c00060{transform:matrix(0.225294,-0.006759,0.007497,0.249888,0,0);-ms-transform:matrix(0.225294,-0.006759,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225294,-0.006759,0.007497,0.249888,0,0);}
.mee_c00060{transform:matrix(0.225948,-0.006778,0.007497,0.249888,0,0);-ms-transform:matrix(0.225948,-0.006778,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225948,-0.006778,0.007497,0.249888,0,0);}
.m77_c00060{transform:matrix(0.226008,-0.006780,0.007497,0.249888,0,0);-ms-transform:matrix(0.226008,-0.006780,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226008,-0.006780,0.007497,0.249888,0,0);}
.mcd_c00060{transform:matrix(0.226768,-0.006803,0.007497,0.249888,0,0);-ms-transform:matrix(0.226768,-0.006803,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226768,-0.006803,0.007497,0.249888,0,0);}
.m76_c00060{transform:matrix(0.226898,-0.006807,0.007497,0.249888,0,0);-ms-transform:matrix(0.226898,-0.006807,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226898,-0.006807,0.007497,0.249888,0,0);}
.m71_c00060{transform:matrix(0.227882,-0.006836,0.007497,0.249888,0,0);-ms-transform:matrix(0.227882,-0.006836,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227882,-0.006836,0.007497,0.249888,0,0);}
.m63_c00060{transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);-ms-transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);}
.m3f_c00060{transform:matrix(0.228315,-0.007542,0.008254,0.249864,0,0);-ms-transform:matrix(0.228315,-0.007542,0.008254,0.249864,0,0);-webkit-transform:matrix(0.228315,-0.007542,0.008254,0.249864,0,0);}
.m5d_c00060{transform:matrix(0.228737,-0.006862,0.007497,0.249888,0,0);-ms-transform:matrix(0.228737,-0.006862,0.007497,0.249888,0,0);-webkit-transform:matrix(0.228737,-0.006862,0.007497,0.249888,0,0);}
.m3e_c00060{transform:matrix(0.230169,-0.007603,0.008254,0.249864,0,0);-ms-transform:matrix(0.230169,-0.007603,0.008254,0.249864,0,0);-webkit-transform:matrix(0.230169,-0.007603,0.008254,0.249864,0,0);}
.md_c00060{transform:matrix(0.232138,-0.007668,0.008254,0.249864,0,0);-ms-transform:matrix(0.232138,-0.007668,0.008254,0.249864,0,0);-webkit-transform:matrix(0.232138,-0.007668,0.008254,0.249864,0,0);}
.mdf_c00060{transform:matrix(0.232176,-0.006965,0.007497,0.249888,0,0);-ms-transform:matrix(0.232176,-0.006965,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232176,-0.006965,0.007497,0.249888,0,0);}
.mb_c00060{transform:matrix(0.234002,-0.007730,0.008254,0.249864,0,0);-ms-transform:matrix(0.234002,-0.007730,0.008254,0.249864,0,0);-webkit-transform:matrix(0.234002,-0.007730,0.008254,0.249864,0,0);}
.m1d_c00060{transform:matrix(0.234792,-0.007756,0.008254,0.249864,0,0);-ms-transform:matrix(0.234792,-0.007756,0.008254,0.249864,0,0);-webkit-transform:matrix(0.234792,-0.007756,0.008254,0.249864,0,0);}
.m17_c00060{transform:matrix(0.234852,-0.007758,0.008254,0.249864,0,0);-ms-transform:matrix(0.234852,-0.007758,0.008254,0.249864,0,0);-webkit-transform:matrix(0.234852,-0.007758,0.008254,0.249864,0,0);}
.m6b_c00060{transform:matrix(0.235014,-0.007050,0.007497,0.249888,0,0);-ms-transform:matrix(0.235014,-0.007050,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235014,-0.007050,0.007497,0.249888,0,0);}
.m59_c00060{transform:matrix(0.235194,-0.007056,0.007497,0.249888,0,0);-ms-transform:matrix(0.235194,-0.007056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235194,-0.007056,0.007497,0.249888,0,0);}
.md2_c00060{transform:matrix(0.235899,-0.007077,0.007497,0.249888,0,0);-ms-transform:matrix(0.235899,-0.007077,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235899,-0.007077,0.007497,0.249888,0,0);}
.m83_c00060{transform:matrix(0.236639,-0.007099,0.007497,0.249888,0,0);-ms-transform:matrix(0.236639,-0.007099,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236639,-0.007099,0.007497,0.249888,0,0);}
.m1f_c00060{transform:matrix(0.237580,-0.007848,0.008254,0.249864,0,0);-ms-transform:matrix(0.237580,-0.007848,0.008254,0.249864,0,0);-webkit-transform:matrix(0.237580,-0.007848,0.008254,0.249864,0,0);}
.m80_c00060{transform:matrix(0.240087,-0.007203,0.007497,0.249888,0,0);-ms-transform:matrix(0.240087,-0.007203,0.007497,0.249888,0,0);-webkit-transform:matrix(0.240087,-0.007203,0.007497,0.249888,0,0);}
.md6_c00060{transform:matrix(0.243166,-0.007295,0.007497,0.249888,0,0);-ms-transform:matrix(0.243166,-0.007295,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243166,-0.007295,0.007497,0.249888,0,0);}
.mc5_c00060{transform:matrix(0.243191,-0.007296,0.007497,0.249888,0,0);-ms-transform:matrix(0.243191,-0.007296,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243191,-0.007296,0.007497,0.249888,0,0);}
.me_c00060{transform:matrix(0.243587,-0.008046,0.008254,0.249864,0,0);-ms-transform:matrix(0.243587,-0.008046,0.008254,0.249864,0,0);-webkit-transform:matrix(0.243587,-0.008046,0.008254,0.249864,0,0);}
.mc7_c00060{transform:matrix(0.244085,-0.007323,0.007497,0.249888,0,0);-ms-transform:matrix(0.244085,-0.007323,0.007497,0.249888,0,0);-webkit-transform:matrix(0.244085,-0.007323,0.007497,0.249888,0,0);}
.mbf_c00060{transform:matrix(0.245480,-0.007364,0.007497,0.249888,0,0);-ms-transform:matrix(0.245480,-0.007364,0.007497,0.249888,0,0);-webkit-transform:matrix(0.245480,-0.007364,0.007497,0.249888,0,0);}
.mc1_c00060{transform:matrix(0.246234,-0.007387,0.007497,0.249888,0,0);-ms-transform:matrix(0.246234,-0.007387,0.007497,0.249888,0,0);-webkit-transform:matrix(0.246234,-0.007387,0.007497,0.249888,0,0);}
.m67_c00060{transform:matrix(0.249148,-0.007474,0.007497,0.249888,0,0);-ms-transform:matrix(0.249148,-0.007474,0.007497,0.249888,0,0);-webkit-transform:matrix(0.249148,-0.007474,0.007497,0.249888,0,0);}
.m66_c00060{transform:matrix(0.260543,-0.007816,0.007497,0.249888,0,0);-ms-transform:matrix(0.260543,-0.007816,0.007497,0.249888,0,0);-webkit-transform:matrix(0.260543,-0.007816,0.007497,0.249888,0,0);}
.m8f_c00060{transform:matrix(0.262192,-0.007866,0.007497,0.249888,0,0);-ms-transform:matrix(0.262192,-0.007866,0.007497,0.249888,0,0);-webkit-transform:matrix(0.262192,-0.007866,0.007497,0.249888,0,0);}
.m68_c00060{transform:matrix(0.265551,-0.007967,0.007497,0.249888,0,0);-ms-transform:matrix(0.265551,-0.007967,0.007497,0.249888,0,0);-webkit-transform:matrix(0.265551,-0.007967,0.007497,0.249888,0,0);}
.mc4_c00060{transform:matrix(0.268019,-0.008041,0.007497,0.249888,0,0);-ms-transform:matrix(0.268019,-0.008041,0.007497,0.249888,0,0);-webkit-transform:matrix(0.268019,-0.008041,0.007497,0.249888,0,0);}
.m65_c00060{transform:matrix(0.269749,-0.008092,0.007497,0.249888,0,0);-ms-transform:matrix(0.269749,-0.008092,0.007497,0.249888,0,0);-webkit-transform:matrix(0.269749,-0.008092,0.007497,0.249888,0,0);}
.m6c_c00060{transform:matrix(0.282048,-0.008461,0.007497,0.249888,0,0);-ms-transform:matrix(0.282048,-0.008461,0.007497,0.249888,0,0);-webkit-transform:matrix(0.282048,-0.008461,0.007497,0.249888,0,0);}
.m6a_c00060{transform:matrix(0.285851,-0.008576,0.007497,0.249888,0,0);-ms-transform:matrix(0.285851,-0.008576,0.007497,0.249888,0,0);-webkit-transform:matrix(0.285851,-0.008576,0.007497,0.249888,0,0);}
.m1a_c00060{transform:matrix(0.316188,-0.010445,0.008254,0.249864,0,0);-ms-transform:matrix(0.316188,-0.010445,0.008254,0.249864,0,0);-webkit-transform:matrix(0.316188,-0.010445,0.008254,0.249864,0,0);}
.mbb_c00060{transform:matrix(0.347729,-0.010432,0.007497,0.249888,0,0);-ms-transform:matrix(0.347729,-0.010432,0.007497,0.249888,0,0);-webkit-transform:matrix(0.347729,-0.010432,0.007497,0.249888,0,0);}
.me7_c00060{transform:matrix(0.362002,-0.010860,0.007497,0.249888,0,0);-ms-transform:matrix(0.362002,-0.010860,0.007497,0.249888,0,0);-webkit-transform:matrix(0.362002,-0.010860,0.007497,0.249888,0,0);}
.m58_c00060{transform:matrix(0.563786,-0.016914,0.007497,0.249888,0,0);-ms-transform:matrix(0.563786,-0.016914,0.007497,0.249888,0,0);-webkit-transform:matrix(0.563786,-0.016914,0.007497,0.249888,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
.fc0_c00060{color:transparent;}
.fs0_c00060{font-size:22.050000px;}
.fsa_c00060{font-size:46.220785px;}
.fs12_c00060{font-size:55.675037px;}
.fs2_c00060{font-size:57.723718px;}
.fs9_c00060{font-size:58.826454px;}
.fs4_c00060{font-size:59.822762px;}
.fsb_c00060{font-size:59.876926px;}
.fsc_c00060{font-size:60.927399px;}
.fs3_c00060{font-size:61.921806px;}
.fs7_c00060{font-size:61.977871px;}
.fs5_c00060{font-size:64.020851px;}
.fse_c00060{font-size:64.078816px;}
.fs11_c00060{font-size:66.179761px;}
.fs1_c00060{font-size:67.169417px;}
.fsf_c00060{font-size:67.230233px;}
.fs10_c00060{font-size:68.280706px;}
.fs8_c00060{font-size:69.331178px;}
.fs6_c00060{font-size:70.317983px;}
.fsd_c00060{font-size:70.381650px;}
.fs13_c00060{font-size:72.482595px;}
.y0_c00060{bottom:0.000000px;}
.yed_c00060{bottom:14.422455px;}
.yee_c00060{bottom:15.049560px;}
.yef_c00060{bottom:15.275025px;}
.yf0_c00060{bottom:16.290225px;}
.yf1_c00060{bottom:16.862745px;}
.yf2_c00060{bottom:17.513070px;}
.ye5_c00060{bottom:35.335575px;}
.ye6_c00060{bottom:35.335770px;}
.ye7_c00060{bottom:35.336025px;}
.yea_c00060{bottom:35.336265px;}
.ye8_c00060{bottom:35.336610px;}
.ye9_c00060{bottom:35.336745px;}
.yeb_c00060{bottom:35.336955px;}
.yec_c00060{bottom:35.337675px;}
.ydf_c00060{bottom:50.616420px;}
.ye0_c00060{bottom:51.205275px;}
.ye1_c00060{bottom:51.678015px;}
.ye2_c00060{bottom:52.555830px;}
.ye3_c00060{bottom:52.678140px;}
.ye4_c00060{bottom:53.196210px;}
.ydc_c00060{bottom:70.402305px;}
.yd9_c00060{bottom:70.402875px;}
.ydb_c00060{bottom:70.402920px;}
.ydd_c00060{bottom:70.403010px;}
.yda_c00060{bottom:70.403190px;}
.yde_c00060{bottom:70.403730px;}
.yd2_c00060{bottom:88.534665px;}
.yd4_c00060{bottom:88.535055px;}
.yd3_c00060{bottom:88.535325px;}
.yd7_c00060{bottom:88.535565px;}
.yd6_c00060{bottom:88.535595px;}
.yd5_c00060{bottom:88.535655px;}
.yd8_c00060{bottom:88.535850px;}
.ycd_c00060{bottom:106.210800px;}
.ycc_c00060{bottom:106.211295px;}
.yce_c00060{bottom:106.211430px;}
.ycf_c00060{bottom:106.211505px;}
.ycb_c00060{bottom:106.211595px;}
.yd0_c00060{bottom:106.211700px;}
.yc9_c00060{bottom:106.211850px;}
.yca_c00060{bottom:106.211865px;}
.yd1_c00060{bottom:106.211895px;}
.yc1_c00060{bottom:120.577650px;}
.yc2_c00060{bottom:120.904905px;}
.yc3_c00060{bottom:122.062800px;}
.yc4_c00060{bottom:122.318730px;}
.yc5_c00060{bottom:123.105120px;}
.yc6_c00060{bottom:123.388755px;}
.yc7_c00060{bottom:124.162215px;}
.yc8_c00060{bottom:124.960545px;}
.yb8_c00060{bottom:136.788960px;}
.yb9_c00060{bottom:137.884365px;}
.yba_c00060{bottom:138.246615px;}
.ybb_c00060{bottom:139.061265px;}
.ybc_c00060{bottom:139.476645px;}
.ybd_c00060{bottom:140.887005px;}
.ybe_c00060{bottom:141.063030px;}
.ybf_c00060{bottom:141.334185px;}
.yc0_c00060{bottom:141.816840px;}
.yb0_c00060{bottom:153.534090px;}
.yb1_c00060{bottom:154.179180px;}
.yb2_c00060{bottom:155.118960px;}
.yb3_c00060{bottom:156.145470px;}
.yb4_c00060{bottom:157.261860px;}
.yb5_c00060{bottom:157.487430px;}
.yb6_c00060{bottom:157.986210px;}
.yb7_c00060{bottom:158.391705px;}
.ya8_c00060{bottom:171.901350px;}
.ya9_c00060{bottom:172.381530px;}
.yaa_c00060{bottom:173.816505px;}
.yab_c00060{bottom:174.087240px;}
.yac_c00060{bottom:174.511470px;}
.yad_c00060{bottom:174.839430px;}
.yae_c00060{bottom:175.773030px;}
.yaf_c00060{bottom:176.050200px;}
.ya0_c00060{bottom:189.460275px;}
.ya1_c00060{bottom:190.372245px;}
.ya2_c00060{bottom:190.678710px;}
.ya3_c00060{bottom:191.243880px;}
.ya4_c00060{bottom:191.672370px;}
.ya5_c00060{bottom:192.014700px;}
.ya6_c00060{bottom:192.765075px;}
.ya7_c00060{bottom:193.789935px;}
.y99_c00060{bottom:207.826845px;}
.y9a_c00060{bottom:208.826940px;}
.y9b_c00060{bottom:209.107395px;}
.y9c_c00060{bottom:209.679105px;}
.y9d_c00060{bottom:209.992050px;}
.y9e_c00060{bottom:210.607455px;}
.y9f_c00060{bottom:211.495320px;}
.y91_c00060{bottom:224.305800px;}
.y92_c00060{bottom:224.737890px;}
.y93_c00060{bottom:225.933525px;}
.y94_c00060{bottom:226.453410px;}
.y95_c00060{bottom:226.760280px;}
.y96_c00060{bottom:227.955915px;}
.y97_c00060{bottom:228.275850px;}
.y98_c00060{bottom:229.106760px;}
.y89_c00060{bottom:241.591710px;}
.y8a_c00060{bottom:242.041860px;}
.y8b_c00060{bottom:242.948385px;}
.y8c_c00060{bottom:243.298845px;}
.y8d_c00060{bottom:244.156395px;}
.y8e_c00060{bottom:244.496955px;}
.y8f_c00060{bottom:245.255205px;}
.y90_c00060{bottom:246.101850px;}
.y7e_c00060{bottom:259.418925px;}
.y7f_c00060{bottom:259.785450px;}
.y80_c00060{bottom:260.150280px;}
.y81_c00060{bottom:260.664495px;}
.y82_c00060{bottom:261.101415px;}
.y83_c00060{bottom:261.862470px;}
.y84_c00060{bottom:262.183005px;}
.y85_c00060{bottom:263.214615px;}
.y86_c00060{bottom:263.431230px;}
.y87_c00060{bottom:263.621715px;}
.y88_c00060{bottom:264.097260px;}
.y76_c00060{bottom:277.515180px;}
.y77_c00060{bottom:278.400165px;}
.y78_c00060{bottom:278.611665px;}
.y79_c00060{bottom:279.742800px;}
.y7a_c00060{bottom:279.919200px;}
.y7b_c00060{bottom:280.283505px;}
.y7c_c00060{bottom:281.088510px;}
.y7d_c00060{bottom:281.452815px;}
.y6f_c00060{bottom:295.071885px;}
.y70_c00060{bottom:295.465575px;}
.y71_c00060{bottom:297.000075px;}
.y72_c00060{bottom:297.997830px;}
.y73_c00060{bottom:298.595430px;}
.y74_c00060{bottom:298.786005px;}
.y75_c00060{bottom:299.519850px;}
.y67_c00060{bottom:311.819400px;}
.y68_c00060{bottom:313.130895px;}
.y69_c00060{bottom:314.490510px;}
.y6a_c00060{bottom:314.950470px;}
.y6b_c00060{bottom:315.513705px;}
.y6c_c00060{bottom:316.006230px;}
.y6d_c00060{bottom:317.065845px;}
.y6e_c00060{bottom:317.747115px;}
.y5f_c00060{bottom:327.756885px;}
.y60_c00060{bottom:328.732770px;}
.y61_c00060{bottom:329.502135px;}
.y62_c00060{bottom:330.010170px;}
.y63_c00060{bottom:330.363885px;}
.y64_c00060{bottom:330.954345px;}
.y65_c00060{bottom:332.324505px;}
.y66_c00060{bottom:332.884125px;}
.y59_c00060{bottom:343.429875px;}
.y5a_c00060{bottom:344.137905px;}
.y5b_c00060{bottom:345.597435px;}
.y5c_c00060{bottom:349.788690px;}
.y5d_c00060{bottom:350.457705px;}
.y5e_c00060{bottom:350.958240px;}
.y50_c00060{bottom:361.796910px;}
.y51_c00060{bottom:362.414520px;}
.y52_c00060{bottom:363.294210px;}
.y53_c00060{bottom:363.586110px;}
.y54_c00060{bottom:364.877145px;}
.y55_c00060{bottom:365.440605px;}
.y56_c00060{bottom:365.956905px;}
.y57_c00060{bottom:366.287655px;}
.y58_c00060{bottom:367.185540px;}
.y47_c00060{bottom:378.552000px;}
.y48_c00060{bottom:379.653600px;}
.y49_c00060{bottom:380.181090px;}
.y4a_c00060{bottom:381.906570px;}
.y4b_c00060{bottom:382.647540px;}
.y4c_c00060{bottom:383.441700px;}
.y4d_c00060{bottom:384.171600px;}
.y4e_c00060{bottom:384.966975px;}
.y4f_c00060{bottom:385.788855px;}
.y44_c00060{bottom:396.440934px;}
.y45_c00060{bottom:399.410628px;}
.y46_c00060{bottom:400.583823px;}
.y3c_c00060{bottom:413.717302px;}
.y3d_c00060{bottom:415.175924px;}
.y3e_c00060{bottom:417.075851px;}
.y3f_c00060{bottom:417.714913px;}
.y40_c00060{bottom:418.908259px;}
.y41_c00060{bottom:419.424063px;}
.y42_c00060{bottom:421.157314px;}
.y43_c00060{bottom:421.598621px;}
.y35_c00060{bottom:430.988195px;}
.y36_c00060{bottom:432.613248px;}
.y37_c00060{bottom:433.042431px;}
.y38_c00060{bottom:435.108966px;}
.y39_c00060{bottom:435.557526px;}
.y3a_c00060{bottom:437.272958px;}
.y3b_c00060{bottom:437.667680px;}
.y2d_c00060{bottom:447.449545px;}
.y2e_c00060{bottom:448.893897px;}
.y2f_c00060{bottom:449.915748px;}
.y30_c00060{bottom:450.527410px;}
.y31_c00060{bottom:451.536949px;}
.y32_c00060{bottom:453.175809px;}
.y33_c00060{bottom:455.460607px;}
.y34_c00060{bottom:455.933841px;}
.y26_c00060{bottom:464.991436px;}
.y27_c00060{bottom:466.122089px;}
.y28_c00060{bottom:466.879362px;}
.y29_c00060{bottom:467.511207px;}
.y2a_c00060{bottom:469.033165px;}
.y2b_c00060{bottom:471.490908px;}
.y2c_c00060{bottom:473.065206px;}
.y1f_c00060{bottom:483.074416px;}
.y20_c00060{bottom:485.464686px;}
.y21_c00060{bottom:486.955806px;}
.y22_c00060{bottom:487.584465px;}
.y23_c00060{bottom:489.004832px;}
.y24_c00060{bottom:491.061084px;}
.y25_c00060{bottom:491.562690px;}
.y17_c00060{bottom:499.804341px;}
.y18_c00060{bottom:500.642016px;}
.y19_c00060{bottom:502.755990px;}
.y1a_c00060{bottom:503.526412px;}
.y1b_c00060{bottom:505.216019px;}
.y1c_c00060{bottom:505.891680px;}
.y1d_c00060{bottom:506.887125px;}
.y1e_c00060{bottom:507.549237px;}
.y11_c00060{bottom:517.080988px;}
.y12_c00060{bottom:518.968541px;}
.y13_c00060{bottom:519.467415px;}
.y14_c00060{bottom:520.799181px;}
.y15_c00060{bottom:523.235229px;}
.y16_c00060{bottom:525.888775px;}
.y9_c00060{bottom:534.347327px;}
.ya_c00060{bottom:536.159616px;}
.yb_c00060{bottom:536.703382px;}
.yc_c00060{bottom:537.416250px;}
.yd_c00060{bottom:538.667093px;}
.ye_c00060{bottom:540.455528px;}
.yf_c00060{bottom:541.047066px;}
.y10_c00060{bottom:542.244457px;}
.y2_c00060{bottom:551.355000px;}
.y3_c00060{bottom:554.210012px;}
.y4_c00060{bottom:555.221890px;}
.y5_c00060{bottom:556.415187px;}
.y6_c00060{bottom:556.950975px;}
.y7_c00060{bottom:557.773467px;}
.y8_c00060{bottom:560.705600px;}
.y1_c00060{bottom:593.460000px;}
.h2_c00060{height:22.050000px;}
.hc_c00060{height:46.220785px;}
.h14_c00060{height:55.675037px;}
.h4_c00060{height:57.723718px;}
.hb_c00060{height:58.826454px;}
.h6_c00060{height:59.822762px;}
.hd_c00060{height:59.876926px;}
.he_c00060{height:60.927399px;}
.h5_c00060{height:61.921806px;}
.h9_c00060{height:61.977871px;}
.h7_c00060{height:64.020851px;}
.h10_c00060{height:64.078816px;}
.h13_c00060{height:66.179761px;}
.h3_c00060{height:67.169417px;}
.h11_c00060{height:67.230233px;}
.h12_c00060{height:68.280706px;}
.ha_c00060{height:69.331178px;}
.h8_c00060{height:70.317983px;}
.hf_c00060{height:70.381650px;}
.h15_c00060{height:72.482595px;}
.h1_c00060{height:620.250000px;}
.h0_c00060{height:620.400000px;}
.w0_c00060{width:373.140000px;}
.w1_c00060{width:373.500000px;}
.x0_c00060{left:0.000000px;}
.x9_c00060{left:29.526440px;}
.x2_c00060{left:33.133500px;}
.x11_c00060{left:34.165166px;}
.x20_c00060{left:35.198780px;}
.x2d_c00060{left:36.253004px;}
.x42_c00060{left:37.531275px;}
.x4e_c00060{left:38.798850px;}
.x55_c00060{left:39.886455px;}
.x62_c00060{left:40.979310px;}
.x6a_c00060{left:42.067605px;}
.x70_c00060{left:43.158390px;}
.x79_c00060{left:44.434830px;}
.x16_c00060{left:61.943148px;}
.x4f_c00060{left:63.382155px;}
.x71_c00060{left:64.976700px;}
.x3d_c00060{left:67.710885px;}
.x65_c00060{left:69.325200px;}
.x76_c00060{left:73.995075px;}
.x21_c00060{left:75.512066px;}
.x6b_c00060{left:77.933520px;}
.x27_c00060{left:84.030381px;}
.x56_c00060{left:85.534080px;}
.x73_c00060{left:87.769590px;}
.x46_c00060{left:89.064630px;}
.x32_c00060{left:90.223646px;}
.x12_c00060{left:93.077627px;}
.xa_c00060{left:96.560118px;}
.x63_c00060{left:97.952205px;}
.x38_c00060{left:99.208500px;}
.x4b_c00060{left:100.680210px;}
.x22_c00060{left:102.523986px;}
.x2e_c00060{left:106.978023px;}
.x13_c00060{left:108.634050px;}
.x43_c00060{left:109.783275px;}
.x6d_c00060{left:115.559400px;}
.xb_c00060{left:116.654468px;}
.x28_c00060{left:118.052694px;}
.x3_c00060{left:119.562485px;}
.x7a_c00060{left:121.947975px;}
.x23_c00060{left:125.057646px;}
.x47_c00060{left:129.573495px;}
.x17_c00060{left:132.342165px;}
.x5d_c00060{left:136.496985px;}
.x29_c00060{left:138.431327px;}
.xc_c00060{left:143.003295px;}
.x57_c00060{left:144.963510px;}
.x5b_c00060{left:146.779740px;}
.x4_c00060{left:150.194821px;}
.x64_c00060{left:152.429565px;}
.x48_c00060{left:156.316815px;}
.x18_c00060{left:157.981027px;}
.x50_c00060{left:159.272385px;}
.x33_c00060{left:160.500722px;}
.x4c_c00060{left:165.418170px;}
.x1d_c00060{left:168.331788px;}
.x2a_c00060{left:172.035509px;}
.x39_c00060{left:174.307500px;}
.x66_c00060{left:175.926930px;}
.x6e_c00060{left:177.128895px;}
.x2f_c00060{left:178.166178px;}
.x24_c00060{left:179.351267px;}
.x34_c00060{left:184.115741px;}
.x5_c00060{left:186.319161px;}
.x5e_c00060{left:188.177175px;}
.xd_c00060{left:189.271148px;}
.x58_c00060{left:192.501945px;}
.x30_c00060{left:193.607253px;}
.x3a_c00060{left:199.006500px;}
.x5c_c00060{left:200.337195px;}
.x6_c00060{left:202.538925px;}
.x3e_c00060{left:204.597660px;}
.x49_c00060{left:206.005695px;}
.x61_c00060{left:207.305970px;}
.x1_c00060{left:209.790000px;}
.x53_c00060{left:211.318650px;}
.x59_c00060{left:212.494815px;}
.x19_c00060{left:214.216285px;}
.x51_c00060{left:221.607030px;}
.x67_c00060{left:223.019730px;}
.x14_c00060{left:226.283697px;}
.x7_c00060{left:227.438001px;}
.x72_c00060{left:230.546130px;}
.x77_c00060{left:235.256565px;}
.x1a_c00060{left:236.713995px;}
.x1e_c00060{left:238.944469px;}
.x35_c00060{left:247.300479px;}
.x3b_c00060{left:249.808500px;}
.x31_c00060{left:252.667912px;}
.xe_c00060{left:255.401033px;}
.x6f_c00060{left:256.432155px;}
.x52_c00060{left:258.942690px;}
.x6c_c00060{left:261.674580px;}
.x5f_c00060{left:262.913040px;}
.x3f_c00060{left:264.661305px;}
.x25_c00060{left:267.014484px;}
.x1b_c00060{left:269.846100px;}
.x44_c00060{left:271.792275px;}
.xf_c00060{left:277.259463px;}
.x74_c00060{left:279.286305px;}
.x68_c00060{left:281.364210px;}
.x40_c00060{left:283.042920px;}
.x45_c00060{left:288.476775px;}
.x5a_c00060{left:290.535075px;}
.x1c_c00060{left:291.888216px;}
.x54_c00060{left:294.785655px;}
.x78_c00060{left:296.034195px;}
.x69_c00060{left:298.660455px;}
.x75_c00060{left:301.562370px;}
.x2b_c00060{left:302.668178px;}
.x3c_c00060{left:303.717000px;}
.x4a_c00060{left:307.565175px;}
.x15_c00060{left:309.111512px;}
.x36_c00060{left:311.396504px;}
.x8_c00060{left:316.201649px;}
.x2c_c00060{left:318.447468px;}
.x4d_c00060{left:320.513520px;}
.x10_c00060{left:321.545903px;}
.x26_c00060{left:323.165043px;}
.x7b_c00060{left:325.315260px;}
.x1f_c00060{left:327.049920px;}
.x37_c00060{left:331.676874px;}
.x41_c00060{left:332.940375px;}
.x60_c00060{left:334.854735px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs0_c00060{font-size:19.600000pt;}
.fsa_c00060{font-size:41.085143pt;}
.fs12_c00060{font-size:49.488922pt;}
.fs2_c00060{font-size:51.309971pt;}
.fs9_c00060{font-size:52.290181pt;}
.fs4_c00060{font-size:53.175788pt;}
.fsb_c00060{font-size:53.223935pt;}
.fsc_c00060{font-size:54.157688pt;}
.fs3_c00060{font-size:55.041606pt;}
.fs7_c00060{font-size:55.091441pt;}
.fs5_c00060{font-size:56.907423pt;}
.fse_c00060{font-size:56.958948pt;}
.fs11_c00060{font-size:58.826454pt;}
.fs1_c00060{font-size:59.706148pt;}
.fsf_c00060{font-size:59.760207pt;}
.fs10_c00060{font-size:60.693961pt;}
.fs8_c00060{font-size:61.627714pt;}
.fs6_c00060{font-size:62.504874pt;}
.fsd_c00060{font-size:62.561467pt;}
.fs13_c00060{font-size:64.428973pt;}
.y0_c00060{bottom:0.000000pt;}
.yed_c00060{bottom:12.819960pt;}
.yee_c00060{bottom:13.377387pt;}
.yef_c00060{bottom:13.577800pt;}
.yf0_c00060{bottom:14.480200pt;}
.yf1_c00060{bottom:14.989107pt;}
.yf2_c00060{bottom:15.567173pt;}
.ye5_c00060{bottom:31.409400pt;}
.ye6_c00060{bottom:31.409573pt;}
.ye7_c00060{bottom:31.409800pt;}
.yea_c00060{bottom:31.410013pt;}
.ye8_c00060{bottom:31.410320pt;}
.ye9_c00060{bottom:31.410440pt;}
.yeb_c00060{bottom:31.410627pt;}
.yec_c00060{bottom:31.411267pt;}
.ydf_c00060{bottom:44.992373pt;}
.ye0_c00060{bottom:45.515800pt;}
.ye1_c00060{bottom:45.936013pt;}
.ye2_c00060{bottom:46.716293pt;}
.ye3_c00060{bottom:46.825013pt;}
.ye4_c00060{bottom:47.285520pt;}
.ydc_c00060{bottom:62.579827pt;}
.yd9_c00060{bottom:62.580333pt;}
.ydb_c00060{bottom:62.580373pt;}
.ydd_c00060{bottom:62.580453pt;}
.yda_c00060{bottom:62.580613pt;}
.yde_c00060{bottom:62.581093pt;}
.yd2_c00060{bottom:78.697480pt;}
.yd4_c00060{bottom:78.697827pt;}
.yd3_c00060{bottom:78.698067pt;}
.yd7_c00060{bottom:78.698280pt;}
.yd6_c00060{bottom:78.698307pt;}
.yd5_c00060{bottom:78.698360pt;}
.yd8_c00060{bottom:78.698533pt;}
.ycd_c00060{bottom:94.409600pt;}
.ycc_c00060{bottom:94.410040pt;}
.yce_c00060{bottom:94.410160pt;}
.ycf_c00060{bottom:94.410227pt;}
.ycb_c00060{bottom:94.410307pt;}
.yd0_c00060{bottom:94.410400pt;}
.yc9_c00060{bottom:94.410533pt;}
.yca_c00060{bottom:94.410547pt;}
.yd1_c00060{bottom:94.410573pt;}
.yc1_c00060{bottom:107.180133pt;}
.yc2_c00060{bottom:107.471027pt;}
.yc3_c00060{bottom:108.500267pt;}
.yc4_c00060{bottom:108.727760pt;}
.yc5_c00060{bottom:109.426773pt;}
.yc6_c00060{bottom:109.678893pt;}
.yc7_c00060{bottom:110.366413pt;}
.yc8_c00060{bottom:111.076040pt;}
.yb8_c00060{bottom:121.590187pt;}
.yb9_c00060{bottom:122.563880pt;}
.yba_c00060{bottom:122.885880pt;}
.ybb_c00060{bottom:123.610013pt;}
.ybc_c00060{bottom:123.979240pt;}
.ybd_c00060{bottom:125.232893pt;}
.ybe_c00060{bottom:125.389360pt;}
.ybf_c00060{bottom:125.630387pt;}
.yc0_c00060{bottom:126.059413pt;}
.yb0_c00060{bottom:136.474747pt;}
.yb1_c00060{bottom:137.048160pt;}
.yb2_c00060{bottom:137.883520pt;}
.yb3_c00060{bottom:138.795973pt;}
.yb4_c00060{bottom:139.788320pt;}
.yb5_c00060{bottom:139.988827pt;}
.yb6_c00060{bottom:140.432187pt;}
.yb7_c00060{bottom:140.792627pt;}
.ya8_c00060{bottom:152.801200pt;}
.ya9_c00060{bottom:153.228027pt;}
.yaa_c00060{bottom:154.503560pt;}
.yab_c00060{bottom:154.744213pt;}
.yac_c00060{bottom:155.121307pt;}
.yad_c00060{bottom:155.412827pt;}
.yae_c00060{bottom:156.242693pt;}
.yaf_c00060{bottom:156.489067pt;}
.ya0_c00060{bottom:168.409133pt;}
.ya1_c00060{bottom:169.219773pt;}
.ya2_c00060{bottom:169.492187pt;}
.ya3_c00060{bottom:169.994560pt;}
.ya4_c00060{bottom:170.375440pt;}
.ya5_c00060{bottom:170.679733pt;}
.ya6_c00060{bottom:171.346733pt;}
.ya7_c00060{bottom:172.257720pt;}
.y99_c00060{bottom:184.734973pt;}
.y9a_c00060{bottom:185.623947pt;}
.y9b_c00060{bottom:185.873240pt;}
.y9c_c00060{bottom:186.381427pt;}
.y9d_c00060{bottom:186.659600pt;}
.y9e_c00060{bottom:187.206627pt;}
.y9f_c00060{bottom:187.995840pt;}
.y91_c00060{bottom:199.382933pt;}
.y92_c00060{bottom:199.767013pt;}
.y93_c00060{bottom:200.829800pt;}
.y94_c00060{bottom:201.291920pt;}
.y95_c00060{bottom:201.564693pt;}
.y96_c00060{bottom:202.627480pt;}
.y97_c00060{bottom:202.911867pt;}
.y98_c00060{bottom:203.650453pt;}
.y89_c00060{bottom:214.748187pt;}
.y8a_c00060{bottom:215.148320pt;}
.y8b_c00060{bottom:215.954120pt;}
.y8c_c00060{bottom:216.265640pt;}
.y8d_c00060{bottom:217.027907pt;}
.y8e_c00060{bottom:217.330627pt;}
.y8f_c00060{bottom:218.004627pt;}
.y90_c00060{bottom:218.757200pt;}
.y7e_c00060{bottom:230.594600pt;}
.y7f_c00060{bottom:230.920400pt;}
.y80_c00060{bottom:231.244693pt;}
.y81_c00060{bottom:231.701773pt;}
.y82_c00060{bottom:232.090147pt;}
.y83_c00060{bottom:232.766640pt;}
.y84_c00060{bottom:233.051560pt;}
.y85_c00060{bottom:233.968547pt;}
.y86_c00060{bottom:234.161093pt;}
.y87_c00060{bottom:234.330413pt;}
.y88_c00060{bottom:234.753120pt;}
.y76_c00060{bottom:246.680160pt;}
.y77_c00060{bottom:247.466813pt;}
.y78_c00060{bottom:247.654813pt;}
.y79_c00060{bottom:248.660267pt;}
.y7a_c00060{bottom:248.817067pt;}
.y7b_c00060{bottom:249.140893pt;}
.y7c_c00060{bottom:249.856453pt;}
.y7d_c00060{bottom:250.180280pt;}
.y6f_c00060{bottom:262.286120pt;}
.y70_c00060{bottom:262.636067pt;}
.y71_c00060{bottom:264.000067pt;}
.y72_c00060{bottom:264.886960pt;}
.y73_c00060{bottom:265.418160pt;}
.y74_c00060{bottom:265.587560pt;}
.y75_c00060{bottom:266.239867pt;}
.y67_c00060{bottom:277.172800pt;}
.y68_c00060{bottom:278.338573pt;}
.y69_c00060{bottom:279.547120pt;}
.y6a_c00060{bottom:279.955973pt;}
.y6b_c00060{bottom:280.456627pt;}
.y6c_c00060{bottom:280.894427pt;}
.y6d_c00060{bottom:281.836307pt;}
.y6e_c00060{bottom:282.441880pt;}
.y5f_c00060{bottom:291.339453pt;}
.y60_c00060{bottom:292.206907pt;}
.y61_c00060{bottom:292.890787pt;}
.y62_c00060{bottom:293.342373pt;}
.y63_c00060{bottom:293.656787pt;}
.y64_c00060{bottom:294.181640pt;}
.y65_c00060{bottom:295.399560pt;}
.y66_c00060{bottom:295.897000pt;}
.y59_c00060{bottom:305.271000pt;}
.y5a_c00060{bottom:305.900360pt;}
.y5b_c00060{bottom:307.197720pt;}
.y5c_c00060{bottom:310.923280pt;}
.y5d_c00060{bottom:311.517960pt;}
.y5e_c00060{bottom:311.962880pt;}
.y50_c00060{bottom:321.597253pt;}
.y51_c00060{bottom:322.146240pt;}
.y52_c00060{bottom:322.928187pt;}
.y53_c00060{bottom:323.187653pt;}
.y54_c00060{bottom:324.335240pt;}
.y55_c00060{bottom:324.836093pt;}
.y56_c00060{bottom:325.295027pt;}
.y57_c00060{bottom:325.589027pt;}
.y58_c00060{bottom:326.387147pt;}
.y47_c00060{bottom:336.490667pt;}
.y48_c00060{bottom:337.469867pt;}
.y49_c00060{bottom:337.938747pt;}
.y4a_c00060{bottom:339.472507pt;}
.y4b_c00060{bottom:340.131147pt;}
.y4c_c00060{bottom:340.837067pt;}
.y4d_c00060{bottom:341.485867pt;}
.y4e_c00060{bottom:342.192867pt;}
.y4f_c00060{bottom:342.923427pt;}
.y44_c00060{bottom:352.391941pt;}
.y45_c00060{bottom:355.031669pt;}
.y46_c00060{bottom:356.074509pt;}
.y3c_c00060{bottom:367.748713pt;}
.y3d_c00060{bottom:369.045265pt;}
.y3e_c00060{bottom:370.734089pt;}
.y3f_c00060{bottom:371.302145pt;}
.y40_c00060{bottom:372.362897pt;}
.y41_c00060{bottom:372.821389pt;}
.y42_c00060{bottom:374.362057pt;}
.y43_c00060{bottom:374.754329pt;}
.y35_c00060{bottom:383.100617pt;}
.y36_c00060{bottom:384.545109pt;}
.y37_c00060{bottom:384.926605pt;}
.y38_c00060{bottom:386.763525pt;}
.y39_c00060{bottom:387.162245pt;}
.y3a_c00060{bottom:388.687073pt;}
.y3b_c00060{bottom:389.037937pt;}
.y2d_c00060{bottom:397.732929pt;}
.y2e_c00060{bottom:399.016797pt;}
.y2f_c00060{bottom:399.925109pt;}
.y30_c00060{bottom:400.468809pt;}
.y31_c00060{bottom:401.366177pt;}
.y32_c00060{bottom:402.822941pt;}
.y33_c00060{bottom:404.853873pt;}
.y34_c00060{bottom:405.274525pt;}
.y26_c00060{bottom:413.325721pt;}
.y27_c00060{bottom:414.330745pt;}
.y28_c00060{bottom:415.003877pt;}
.y29_c00060{bottom:415.565517pt;}
.y2a_c00060{bottom:416.918369pt;}
.y2b_c00060{bottom:419.103029pt;}
.y2c_c00060{bottom:420.502405pt;}
.y1f_c00060{bottom:429.399481pt;}
.y20_c00060{bottom:431.524165pt;}
.y21_c00060{bottom:432.849605pt;}
.y22_c00060{bottom:433.408413pt;}
.y23_c00060{bottom:434.670961pt;}
.y24_c00060{bottom:436.498741pt;}
.y25_c00060{bottom:436.944613pt;}
.y17_c00060{bottom:444.270525pt;}
.y18_c00060{bottom:445.015125pt;}
.y19_c00060{bottom:446.894213pt;}
.y1a_c00060{bottom:447.579033pt;}
.y1b_c00060{bottom:449.080905pt;}
.y1c_c00060{bottom:449.681493pt;}
.y1d_c00060{bottom:450.566333pt;}
.y1e_c00060{bottom:451.154877pt;}
.y11_c00060{bottom:459.627545pt;}
.y12_c00060{bottom:461.305369pt;}
.y13_c00060{bottom:461.748813pt;}
.y14_c00060{bottom:462.932605pt;}
.y15_c00060{bottom:465.097981pt;}
.y16_c00060{bottom:467.456689pt;}
.y9_c00060{bottom:474.975401pt;}
.ya_c00060{bottom:476.586325pt;}
.yb_c00060{bottom:477.069673pt;}
.yc_c00060{bottom:477.703333pt;}
.yd_c00060{bottom:478.815193pt;}
.ye_c00060{bottom:480.404913pt;}
.yf_c00060{bottom:480.930725pt;}
.y10_c00060{bottom:481.995073pt;}
.y2_c00060{bottom:490.093333pt;}
.y3_c00060{bottom:492.631121pt;}
.y4_c00060{bottom:493.530569pt;}
.y5_c00060{bottom:494.591277pt;}
.y6_c00060{bottom:495.067533pt;}
.y7_c00060{bottom:495.798637pt;}
.y8_c00060{bottom:498.404977pt;}
.y1_c00060{bottom:527.520000pt;}
.h2_c00060{height:19.600000pt;}
.hc_c00060{height:41.085143pt;}
.h14_c00060{height:49.488922pt;}
.h4_c00060{height:51.309971pt;}
.hb_c00060{height:52.290181pt;}
.h6_c00060{height:53.175788pt;}
.hd_c00060{height:53.223935pt;}
.he_c00060{height:54.157688pt;}
.h5_c00060{height:55.041606pt;}
.h9_c00060{height:55.091441pt;}
.h7_c00060{height:56.907423pt;}
.h10_c00060{height:56.958948pt;}
.h13_c00060{height:58.826454pt;}
.h3_c00060{height:59.706148pt;}
.h11_c00060{height:59.760207pt;}
.h12_c00060{height:60.693961pt;}
.ha_c00060{height:61.627714pt;}
.h8_c00060{height:62.504874pt;}
.hf_c00060{height:62.561467pt;}
.h15_c00060{height:64.428973pt;}
.h1_c00060{height:551.333333pt;}
.h0_c00060{height:551.466667pt;}
.w0_c00060{width:331.680000pt;}
.w1_c00060{width:332.000000pt;}
.x0_c00060{left:0.000000pt;}
.x9_c00060{left:26.245724pt;}
.x2_c00060{left:29.452000pt;}
.x11_c00060{left:30.369036pt;}
.x20_c00060{left:31.287804pt;}
.x2d_c00060{left:32.224892pt;}
.x42_c00060{left:33.361133pt;}
.x4e_c00060{left:34.487867pt;}
.x55_c00060{left:35.454627pt;}
.x62_c00060{left:36.426053pt;}
.x6a_c00060{left:37.393427pt;}
.x70_c00060{left:38.363013pt;}
.x79_c00060{left:39.497627pt;}
.x16_c00060{left:55.060576pt;}
.x4f_c00060{left:56.339693pt;}
.x71_c00060{left:57.757067pt;}
.x3d_c00060{left:60.187453pt;}
.x65_c00060{left:61.622400pt;}
.x76_c00060{left:65.773400pt;}
.x21_c00060{left:67.121836pt;}
.x6b_c00060{left:69.274240pt;}
.x27_c00060{left:74.693672pt;}
.x56_c00060{left:76.030293pt;}
.x73_c00060{left:78.017413pt;}
.x46_c00060{left:79.168560pt;}
.x32_c00060{left:80.198796pt;}
.x12_c00060{left:82.735668pt;}
.xa_c00060{left:85.831216pt;}
.x63_c00060{left:87.068627pt;}
.x38_c00060{left:88.185333pt;}
.x4b_c00060{left:89.493520pt;}
.x22_c00060{left:91.132432pt;}
.x2e_c00060{left:95.091576pt;}
.x13_c00060{left:96.563600pt;}
.x43_c00060{left:97.585133pt;}
.x6d_c00060{left:102.719467pt;}
.xb_c00060{left:103.692860pt;}
.x28_c00060{left:104.935728pt;}
.x3_c00060{left:106.277764pt;}
.x7a_c00060{left:108.398200pt;}
.x23_c00060{left:111.162352pt;}
.x47_c00060{left:115.176440pt;}
.x17_c00060{left:117.637480pt;}
.x5d_c00060{left:121.330653pt;}
.x29_c00060{left:123.050068pt;}
.xc_c00060{left:127.114040pt;}
.x57_c00060{left:128.856453pt;}
.x5b_c00060{left:130.470880pt;}
.x4_c00060{left:133.506508pt;}
.x64_c00060{left:135.492947pt;}
.x48_c00060{left:138.948280pt;}
.x18_c00060{left:140.427580pt;}
.x50_c00060{left:141.575453pt;}
.x33_c00060{left:142.667308pt;}
.x4c_c00060{left:147.038373pt;}
.x1d_c00060{left:149.628256pt;}
.x2a_c00060{left:152.920452pt;}
.x39_c00060{left:154.940000pt;}
.x66_c00060{left:156.379493pt;}
.x6e_c00060{left:157.447907pt;}
.x2f_c00060{left:158.369936pt;}
.x24_c00060{left:159.423348pt;}
.x34_c00060{left:163.658436pt;}
.x5_c00060{left:165.617032pt;}
.x5e_c00060{left:167.268600pt;}
.xd_c00060{left:168.241020pt;}
.x58_c00060{left:171.112840pt;}
.x30_c00060{left:172.095336pt;}
.x3a_c00060{left:176.894667pt;}
.x5c_c00060{left:178.077507pt;}
.x6_c00060{left:180.034600pt;}
.x3e_c00060{left:181.864587pt;}
.x49_c00060{left:183.116173pt;}
.x61_c00060{left:184.271973pt;}
.x1_c00060{left:186.480000pt;}
.x53_c00060{left:187.838800pt;}
.x59_c00060{left:188.884280pt;}
.x19_c00060{left:190.414476pt;}
.x51_c00060{left:196.984027pt;}
.x67_c00060{left:198.239760pt;}
.x14_c00060{left:201.141064pt;}
.x7_c00060{left:202.167112pt;}
.x72_c00060{left:204.929893pt;}
.x77_c00060{left:209.116947pt;}
.x1a_c00060{left:210.412440pt;}
.x1e_c00060{left:212.395084pt;}
.x35_c00060{left:219.822648pt;}
.x3b_c00060{left:222.052000pt;}
.x31_c00060{left:224.593700pt;}
.xe_c00060{left:227.023140pt;}
.x6f_c00060{left:227.939693pt;}
.x52_c00060{left:230.171280pt;}
.x6c_c00060{left:232.599627pt;}
.x5f_c00060{left:233.700480pt;}
.x3f_c00060{left:235.254493pt;}
.x25_c00060{left:237.346208pt;}
.x1b_c00060{left:239.863200pt;}
.x44_c00060{left:241.593133pt;}
.xf_c00060{left:246.452856pt;}
.x74_c00060{left:248.254493pt;}
.x68_c00060{left:250.101520pt;}
.x40_c00060{left:251.593707pt;}
.x45_c00060{left:256.423800pt;}
.x5a_c00060{left:258.253400pt;}
.x1c_c00060{left:259.456192pt;}
.x54_c00060{left:262.031693pt;}
.x78_c00060{left:263.141507pt;}
.x69_c00060{left:265.475960pt;}
.x75_c00060{left:268.055440pt;}
.x2b_c00060{left:269.038380pt;}
.x3c_c00060{left:269.970667pt;}
.x4a_c00060{left:273.391267pt;}
.x15_c00060{left:274.765788pt;}
.x36_c00060{left:276.796892pt;}
.x8_c00060{left:281.068132pt;}
.x2c_c00060{left:283.064416pt;}
.x4d_c00060{left:284.900907pt;}
.x10_c00060{left:285.818580pt;}
.x26_c00060{left:287.257816pt;}
.x7b_c00060{left:289.169120pt;}
.x1f_c00060{left:290.711040pt;}
.x37_c00060{left:294.823888pt;}
.x41_c00060{left:295.947000pt;}
.x60_c00060{left:297.648653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00061 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00061 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00061 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00061 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00061{transform:matrix(0.014741,0.000324,-0.005499,0.249940,0,0);-ms-transform:matrix(0.014741,0.000324,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.014741,0.000324,-0.005499,0.249940,0,0);}
.m43_c00061{transform:matrix(0.024567,0.000787,-0.008004,0.249872,0,0);-ms-transform:matrix(0.024567,0.000787,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.024567,0.000787,-0.008004,0.249872,0,0);}
.m26_c00061{transform:matrix(0.029231,0.000497,-0.004249,0.249964,0,0);-ms-transform:matrix(0.029231,0.000497,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.029231,0.000497,-0.004249,0.249964,0,0);}
.m36_c00061{transform:matrix(0.055487,0.001777,-0.008004,0.249872,0,0);-ms-transform:matrix(0.055487,0.001777,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.055487,0.001777,-0.008004,0.249872,0,0);}
.m0_c00061{transform:matrix(0.111198,0.002446,-0.005499,0.249940,0,0);-ms-transform:matrix(0.111198,0.002446,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.111198,0.002446,-0.005499,0.249940,0,0);}
.mcf_c00061{transform:matrix(0.145407,0.003926,-0.006748,0.249909,0,0);-ms-transform:matrix(0.145407,0.003926,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.145407,0.003926,-0.006748,0.249909,0,0);}
.m1_c00061{transform:matrix(0.146630,0.003226,-0.005499,0.249940,0,0);-ms-transform:matrix(0.146630,0.003226,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.146630,0.003226,-0.005499,0.249940,0,0);}
.mae_c00061{transform:matrix(0.147495,0.004872,-0.008254,0.249864,0,0);-ms-transform:matrix(0.147495,0.004872,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.147495,0.004872,-0.008254,0.249864,0,0);}
.m18_c00061{transform:matrix(0.149059,0.003279,-0.005499,0.249940,0,0);-ms-transform:matrix(0.149059,0.003279,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.149059,0.003279,-0.005499,0.249940,0,0);}
.m34_c00061{transform:matrix(0.149792,0.004344,-0.007247,0.249895,0,0);-ms-transform:matrix(0.149792,0.004344,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.149792,0.004344,-0.007247,0.249895,0,0);}
.m6e_c00061{transform:matrix(0.152652,0.003816,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152652,0.003816,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152652,0.003816,-0.006248,0.249922,0,0);}
.m4_c00061{transform:matrix(0.153498,0.003377,-0.005499,0.249940,0,0);-ms-transform:matrix(0.153498,0.003377,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.153498,0.003377,-0.005499,0.249940,0,0);}
.m73_c00061{transform:matrix(0.158176,0.003954,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158176,0.003954,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158176,0.003954,-0.006248,0.249922,0,0);}
.mf_c00061{transform:matrix(0.158617,0.003490,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158617,0.003490,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158617,0.003490,-0.005499,0.249940,0,0);}
.m11_c00061{transform:matrix(0.159007,0.003498,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159007,0.003498,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159007,0.003498,-0.005499,0.249940,0,0);}
.m77_c00061{transform:matrix(0.159050,0.003976,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159050,0.003976,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159050,0.003976,-0.006248,0.249922,0,0);}
.m53_c00061{transform:matrix(0.159623,0.005273,-0.008254,0.249864,0,0);-ms-transform:matrix(0.159623,0.005273,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.159623,0.005273,-0.008254,0.249864,0,0);}
.m49_c00061{transform:matrix(0.160467,0.005301,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160467,0.005301,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160467,0.005301,-0.008254,0.249864,0,0);}
.m33_c00061{transform:matrix(0.161472,0.004683,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161472,0.004683,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161472,0.004683,-0.007247,0.249895,0,0);}
.ma7_c00061{transform:matrix(0.161562,0.005337,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161562,0.005337,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161562,0.005337,-0.008254,0.249864,0,0);}
.m70_c00061{transform:matrix(0.161774,0.004044,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161774,0.004044,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161774,0.004044,-0.006248,0.249922,0,0);}
.m9f_c00061{transform:matrix(0.161922,0.005349,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161922,0.005349,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161922,0.005349,-0.008254,0.249864,0,0);}
.m98_c00061{transform:matrix(0.162336,0.005362,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162336,0.005362,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162336,0.005362,-0.008254,0.249864,0,0);}
.m6c_c00061{transform:matrix(0.162659,0.004066,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162659,0.004066,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162659,0.004066,-0.006248,0.249922,0,0);}
.mbf_c00061{transform:matrix(0.163611,0.005405,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163611,0.005405,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163611,0.005405,-0.008254,0.249864,0,0);}
.m6d_c00061{transform:matrix(0.163879,0.004097,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163879,0.004097,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163879,0.004097,-0.006248,0.249922,0,0);}
.m96_c00061{transform:matrix(0.164036,0.005419,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164036,0.005419,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164036,0.005419,-0.008254,0.249864,0,0);}
.m40_c00061{transform:matrix(0.164311,0.005263,-0.008004,0.249872,0,0);-ms-transform:matrix(0.164311,0.005263,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.164311,0.005263,-0.008004,0.249872,0,0);}
.mba_c00061{transform:matrix(0.164445,0.005432,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164445,0.005432,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164445,0.005432,-0.008254,0.249864,0,0);}
.mb1_c00061{transform:matrix(0.164450,0.005432,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164450,0.005432,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164450,0.005432,-0.008254,0.249864,0,0);}
.m5_c00061{transform:matrix(0.164970,0.003629,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164970,0.003629,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164970,0.003629,-0.005499,0.249940,0,0);}
.m99_c00061{transform:matrix(0.166249,0.005492,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166249,0.005492,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166249,0.005492,-0.008254,0.249864,0,0);}
.m7d_c00061{transform:matrix(0.166838,0.004171,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166838,0.004171,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166838,0.004171,-0.006248,0.249922,0,0);}
.m13_c00061{transform:matrix(0.167469,0.003684,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167469,0.003684,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167469,0.003684,-0.005499,0.249940,0,0);}
.m4a_c00061{transform:matrix(0.167639,0.005538,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167639,0.005538,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167639,0.005538,-0.008254,0.249864,0,0);}
.m62_c00061{transform:matrix(0.168188,0.005556,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168188,0.005556,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168188,0.005556,-0.008254,0.249864,0,0);}
.m87_c00061{transform:matrix(0.168297,0.004207,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168297,0.004207,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168297,0.004207,-0.006248,0.249922,0,0);}
.mc8_c00061{transform:matrix(0.168439,0.004548,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168439,0.004548,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168439,0.004548,-0.006748,0.249909,0,0);}
.m65_c00061{transform:matrix(0.168748,0.005574,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168748,0.005574,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168748,0.005574,-0.008254,0.249864,0,0);}
.m6_c00061{transform:matrix(0.169319,0.003725,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169319,0.003725,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169319,0.003725,-0.005499,0.249940,0,0);}
.mde_c00061{transform:matrix(0.169478,0.004576,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169478,0.004576,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169478,0.004576,-0.006748,0.249909,0,0);}
.m12_c00061{transform:matrix(0.169879,0.003737,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169879,0.003737,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169879,0.003737,-0.005499,0.249940,0,0);}
.mb5_c00061{transform:matrix(0.169967,0.005615,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169967,0.005615,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169967,0.005615,-0.008254,0.249864,0,0);}
.m80_c00061{transform:matrix(0.170092,0.004252,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170092,0.004252,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170092,0.004252,-0.006248,0.249922,0,0);}
.mb4_c00061{transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);}
.md0_c00061{transform:matrix(0.172122,0.004647,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172122,0.004647,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172122,0.004647,-0.006748,0.249909,0,0);}
.m55_c00061{transform:matrix(0.172511,0.005699,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172511,0.005699,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172511,0.005699,-0.008254,0.249864,0,0);}
.m72_c00061{transform:matrix(0.172681,0.004317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172681,0.004317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172681,0.004317,-0.006248,0.249922,0,0);}
.m3d_c00061{transform:matrix(0.173251,0.005550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173251,0.005550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173251,0.005550,-0.008004,0.249872,0,0);}
.m7e_c00061{transform:matrix(0.173506,0.004338,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173506,0.004338,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173506,0.004338,-0.006248,0.249922,0,0);}
.m50_c00061{transform:matrix(0.173515,0.005732,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173515,0.005732,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173515,0.005732,-0.008254,0.249864,0,0);}
.m2c_c00061{transform:matrix(0.173646,0.004341,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173646,0.004341,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173646,0.004341,-0.006248,0.249922,0,0);}
.ma2_c00061{transform:matrix(0.173700,0.005738,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173700,0.005738,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173700,0.005738,-0.008254,0.249864,0,0);}
.m3_c00061{transform:matrix(0.173763,0.003823,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173763,0.003823,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173763,0.003823,-0.005499,0.249940,0,0);}
.m59_c00061{transform:matrix(0.173780,0.005740,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173780,0.005740,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173780,0.005740,-0.008254,0.249864,0,0);}
.mbe_c00061{transform:matrix(0.173835,0.005742,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173835,0.005742,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173835,0.005742,-0.008254,0.249864,0,0);}
.m2f_c00061{transform:matrix(0.174187,0.005051,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174187,0.005051,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174187,0.005051,-0.007247,0.249895,0,0);}
.m4f_c00061{transform:matrix(0.174885,0.005777,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174885,0.005777,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174885,0.005777,-0.008254,0.249864,0,0);}
.me6_c00061{transform:matrix(0.175836,0.004748,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175836,0.004748,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175836,0.004748,-0.006748,0.249909,0,0);}
.mac_c00061{transform:matrix(0.175909,0.005811,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175909,0.005811,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175909,0.005811,-0.008254,0.249864,0,0);}
.m69_c00061{transform:matrix(0.176055,0.004401,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176055,0.004401,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176055,0.004401,-0.006248,0.249922,0,0);}
.m38_c00061{transform:matrix(0.176070,0.005640,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176070,0.005640,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176070,0.005640,-0.008004,0.249872,0,0);}
.m57_c00061{transform:matrix(0.176324,0.005825,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176324,0.005825,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176324,0.005825,-0.008254,0.249864,0,0);}
.m6a_c00061{transform:matrix(0.177005,0.004425,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177005,0.004425,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177005,0.004425,-0.006248,0.249922,0,0);}
.m20_c00061{transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);}
.me4_c00061{transform:matrix(0.177775,0.004800,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177775,0.004800,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177775,0.004800,-0.006748,0.249909,0,0);}
.m21_c00061{transform:matrix(0.177829,0.003023,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177829,0.003023,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177829,0.003023,-0.004249,0.249964,0,0);}
.mea_c00061{transform:matrix(0.178205,0.004812,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178205,0.004812,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178205,0.004812,-0.006748,0.249909,0,0);}
.md2_c00061{transform:matrix(0.178520,0.004820,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178520,0.004820,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178520,0.004820,-0.006748,0.249909,0,0);}
.m8a_c00061{transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179554,0.004489,-0.006248,0.249922,0,0);}
.m44_c00061{transform:matrix(0.179732,0.005937,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179732,0.005937,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179732,0.005937,-0.008254,0.249864,0,0);}
.m58_c00061{transform:matrix(0.179957,0.005945,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179957,0.005945,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179957,0.005945,-0.008254,0.249864,0,0);}
.mb6_c00061{transform:matrix(0.180217,0.005953,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180217,0.005953,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180217,0.005953,-0.008254,0.249864,0,0);}
.m47_c00061{transform:matrix(0.180497,0.005962,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180497,0.005962,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180497,0.005962,-0.008254,0.249864,0,0);}
.m7b_c00061{transform:matrix(0.180609,0.004515,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180609,0.004515,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180609,0.004515,-0.006248,0.249922,0,0);}
.m23_c00061{transform:matrix(0.180609,0.003070,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180609,0.003070,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180609,0.003070,-0.004249,0.249964,0,0);}
.m2e_c00061{transform:matrix(0.181718,0.004543,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181718,0.004543,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181718,0.004543,-0.006248,0.249922,0,0);}
.mbb_c00061{transform:matrix(0.181741,0.006003,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181741,0.006003,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181741,0.006003,-0.008254,0.249864,0,0);}
.mcd_c00061{transform:matrix(0.181759,0.004907,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181759,0.004907,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181759,0.004907,-0.006748,0.249909,0,0);}
.maa_c00061{transform:matrix(0.181886,0.006008,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181886,0.006008,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181886,0.006008,-0.008254,0.249864,0,0);}
.m6f_c00061{transform:matrix(0.182058,0.004551,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182058,0.004551,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182058,0.004551,-0.006248,0.249922,0,0);}
.m66_c00061{transform:matrix(0.182510,0.006029,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182510,0.006029,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182510,0.006029,-0.008254,0.249864,0,0);}
.m35_c00061{transform:matrix(0.182563,0.005294,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182563,0.005294,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182563,0.005294,-0.007247,0.249895,0,0);}
.mbc_c00061{transform:matrix(0.183565,0.006064,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183565,0.006064,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183565,0.006064,-0.008254,0.249864,0,0);}
.mcc_c00061{transform:matrix(0.183598,0.004957,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183598,0.004957,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183598,0.004957,-0.006748,0.249909,0,0);}
.m68_c00061{transform:matrix(0.183753,0.004594,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183753,0.004594,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183753,0.004594,-0.006248,0.249922,0,0);}
.md_c00061{transform:matrix(0.184095,0.004050,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184095,0.004050,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184095,0.004050,-0.005499,0.249940,0,0);}
.m46_c00061{transform:matrix(0.184200,0.006085,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184200,0.006085,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184200,0.006085,-0.008254,0.249864,0,0);}
.m93_c00061{transform:matrix(0.184604,0.006098,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184604,0.006098,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184604,0.006098,-0.008254,0.249864,0,0);}
.mcb_c00061{transform:matrix(0.184608,0.004984,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184608,0.004984,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184608,0.004984,-0.006748,0.249909,0,0);}
.mad_c00061{transform:matrix(0.184714,0.006102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184714,0.006102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184714,0.006102,-0.008254,0.249864,0,0);}
.m9c_c00061{transform:matrix(0.184749,0.006103,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184749,0.006103,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184749,0.006103,-0.008254,0.249864,0,0);}
.mdf_c00061{transform:matrix(0.184773,0.004989,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184773,0.004989,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184773,0.004989,-0.006748,0.249909,0,0);}
.ma9_c00061{transform:matrix(0.184804,0.006105,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184804,0.006105,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184804,0.006105,-0.008254,0.249864,0,0);}
.m45_c00061{transform:matrix(0.184914,0.006108,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184914,0.006108,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184914,0.006108,-0.008254,0.249864,0,0);}
.m39_c00061{transform:matrix(0.184915,0.005923,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184915,0.005923,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184915,0.005923,-0.008004,0.249872,0,0);}
.m1c_c00061{transform:matrix(0.185063,0.003146,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185063,0.003146,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185063,0.003146,-0.004249,0.249964,0,0);}
.m29_c00061{transform:matrix(0.185067,0.004627,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185067,0.004627,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185067,0.004627,-0.006248,0.249922,0,0);}
.mb8_c00061{transform:matrix(0.186039,0.006145,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186039,0.006145,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186039,0.006145,-0.008254,0.249864,0,0);}
.m71_c00061{transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);}
.m5e_c00061{transform:matrix(0.186468,0.006160,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186468,0.006160,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186468,0.006160,-0.008254,0.249864,0,0);}
.ma4_c00061{transform:matrix(0.186563,0.006163,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186563,0.006163,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186563,0.006163,-0.008254,0.249864,0,0);}
.md8_c00061{transform:matrix(0.186722,0.005041,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186722,0.005041,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186722,0.005041,-0.006748,0.249909,0,0);}
.m19_c00061{transform:matrix(0.187640,0.004128,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187640,0.004128,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187640,0.004128,-0.005499,0.249940,0,0);}
.m79_c00061{transform:matrix(0.187691,0.004692,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187691,0.004692,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187691,0.004692,-0.006248,0.249922,0,0);}
.m88_c00061{transform:matrix(0.187731,0.004693,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187731,0.004693,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187731,0.004693,-0.006248,0.249922,0,0);}
.m37_c00061{transform:matrix(0.188233,0.006030,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188233,0.006030,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188233,0.006030,-0.008004,0.249872,0,0);}
.md5_c00061{transform:matrix(0.188311,0.005084,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188311,0.005084,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188311,0.005084,-0.006748,0.249909,0,0);}
.m2a_c00061{transform:matrix(0.188366,0.004709,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188366,0.004709,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188366,0.004709,-0.006248,0.249922,0,0);}
.m3e_c00061{transform:matrix(0.188598,0.006041,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188598,0.006041,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188598,0.006041,-0.008004,0.249872,0,0);}
.m9_c00061{transform:matrix(0.188624,0.004150,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188624,0.004150,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188624,0.004150,-0.005499,0.249940,0,0);}
.md3_c00061{transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);}
.ma6_c00061{transform:matrix(0.189357,0.006255,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189357,0.006255,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189357,0.006255,-0.008254,0.249864,0,0);}
.m74_c00061{transform:matrix(0.189496,0.004737,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189496,0.004737,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189496,0.004737,-0.006248,0.249922,0,0);}
.me5_c00061{transform:matrix(0.189606,0.005119,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189606,0.005119,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189606,0.005119,-0.006748,0.249909,0,0);}
.m3b_c00061{transform:matrix(0.190632,0.006106,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190632,0.006106,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190632,0.006106,-0.008004,0.249872,0,0);}
.me8_c00061{transform:matrix(0.190706,0.005149,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190706,0.005149,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190706,0.005149,-0.006748,0.249909,0,0);}
.m10_c00061{transform:matrix(0.191109,0.004204,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191109,0.004204,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191109,0.004204,-0.005499,0.249940,0,0);}
.m1b_c00061{transform:matrix(0.191124,0.004205,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191124,0.004205,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191124,0.004205,-0.005499,0.249940,0,0);}
.m7_c00061{transform:matrix(0.191239,0.004207,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191239,0.004207,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191239,0.004207,-0.005499,0.249940,0,0);}
.m8_c00061{transform:matrix(0.191369,0.004210,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191369,0.004210,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191369,0.004210,-0.005499,0.249940,0,0);}
.m8d_c00061{transform:matrix(0.191715,0.006333,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191715,0.006333,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191715,0.006333,-0.008254,0.249864,0,0);}
.m14_c00061{transform:matrix(0.191759,0.004219,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191759,0.004219,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191759,0.004219,-0.005499,0.249940,0,0);}
.m90_c00061{transform:matrix(0.192200,0.006349,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192200,0.006349,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192200,0.006349,-0.008254,0.249864,0,0);}
.m2d_c00061{transform:matrix(0.192735,0.004818,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192735,0.004818,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192735,0.004818,-0.006248,0.249922,0,0);}
.m75_c00061{transform:matrix(0.192900,0.004822,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192900,0.004822,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192900,0.004822,-0.006248,0.249922,0,0);}
.m8b_c00061{transform:matrix(0.193200,0.004830,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193200,0.004830,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193200,0.004830,-0.006248,0.249922,0,0);}
.ma0_c00061{transform:matrix(0.193335,0.006386,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193335,0.006386,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193335,0.006386,-0.008254,0.249864,0,0);}
.m3a_c00061{transform:matrix(0.193556,0.006200,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193556,0.006200,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193556,0.006200,-0.008004,0.249872,0,0);}
.m3c_c00061{transform:matrix(0.193601,0.006201,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193601,0.006201,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193601,0.006201,-0.008004,0.249872,0,0);}
.mb9_c00061{transform:matrix(0.193804,0.006402,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193804,0.006402,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193804,0.006402,-0.008254,0.249864,0,0);}
.m30_c00061{transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);}
.m64_c00061{transform:matrix(0.194514,0.006425,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194514,0.006425,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194514,0.006425,-0.008254,0.249864,0,0);}
.ma3_c00061{transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);}
.m54_c00061{transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);}
.me_c00061{transform:matrix(0.195818,0.004308,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195818,0.004308,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195818,0.004308,-0.005499,0.249940,0,0);}
.m56_c00061{transform:matrix(0.196208,0.006481,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196208,0.006481,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196208,0.006481,-0.008254,0.249864,0,0);}
.m7a_c00061{transform:matrix(0.196454,0.004911,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196454,0.004911,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196454,0.004911,-0.006248,0.249922,0,0);}
.me0_c00061{transform:matrix(0.197183,0.005324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197183,0.005324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197183,0.005324,-0.006748,0.249909,0,0);}
.m78_c00061{transform:matrix(0.197193,0.004930,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197193,0.004930,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197193,0.004930,-0.006248,0.249922,0,0);}
.m8e_c00061{transform:matrix(0.197302,0.006517,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197302,0.006517,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197302,0.006517,-0.008254,0.249864,0,0);}
.mdd_c00061{transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);}
.mda_c00061{transform:matrix(0.197548,0.005334,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197548,0.005334,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197548,0.005334,-0.006748,0.249909,0,0);}
.m51_c00061{transform:matrix(0.197707,0.006531,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197707,0.006531,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197707,0.006531,-0.008254,0.249864,0,0);}
.m86_c00061{transform:matrix(0.197858,0.004946,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197858,0.004946,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197858,0.004946,-0.006248,0.249922,0,0);}
.ma_c00061{transform:matrix(0.197892,0.004354,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197892,0.004354,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197892,0.004354,-0.005499,0.249940,0,0);}
.m4e_c00061{transform:matrix(0.197962,0.006539,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197962,0.006539,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197962,0.006539,-0.008254,0.249864,0,0);}
.m7f_c00061{transform:matrix(0.198093,0.004952,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198093,0.004952,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198093,0.004952,-0.006248,0.249922,0,0);}
.m5b_c00061{transform:matrix(0.198222,0.006548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198222,0.006548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198222,0.006548,-0.008254,0.249864,0,0);}
.m63_c00061{transform:matrix(0.198337,0.006552,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198337,0.006552,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198337,0.006552,-0.008254,0.249864,0,0);}
.m31_c00061{transform:matrix(0.198941,0.005769,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198941,0.005769,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198941,0.005769,-0.007247,0.249895,0,0);}
.me3_c00061{transform:matrix(0.199737,0.005393,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199737,0.005393,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199737,0.005393,-0.006748,0.249909,0,0);}
.mc6_c00061{transform:matrix(0.199947,0.005399,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199947,0.005399,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199947,0.005399,-0.006748,0.249909,0,0);}
.m82_c00061{transform:matrix(0.200037,0.005001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200037,0.005001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200037,0.005001,-0.006248,0.249922,0,0);}
.mef_c00061{transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);}
.m7c_c00061{transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);}
.m61_c00061{transform:matrix(0.200341,0.006618,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200341,0.006618,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200341,0.006618,-0.008254,0.249864,0,0);}
.mb_c00061{transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);}
.m85_c00061{transform:matrix(0.200777,0.005019,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200777,0.005019,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200777,0.005019,-0.006248,0.249922,0,0);}
.m3f_c00061{transform:matrix(0.200892,0.006435,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200892,0.006435,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200892,0.006435,-0.008004,0.249872,0,0);}
.m52_c00061{transform:matrix(0.201330,0.006651,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201330,0.006651,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201330,0.006651,-0.008254,0.249864,0,0);}
.mbd_c00061{transform:matrix(0.201510,0.006656,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201510,0.006656,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201510,0.006656,-0.008254,0.249864,0,0);}
.m92_c00061{transform:matrix(0.201580,0.006659,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201580,0.006659,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201580,0.006659,-0.008254,0.249864,0,0);}
.m1e_c00061{transform:matrix(0.201896,0.003432,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201896,0.003432,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201896,0.003432,-0.004249,0.249964,0,0);}
.m32_c00061{transform:matrix(0.202470,0.005872,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202470,0.005872,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202470,0.005872,-0.007247,0.249895,0,0);}
.mc_c00061{transform:matrix(0.202666,0.004459,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202666,0.004459,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202666,0.004459,-0.005499,0.249940,0,0);}
.m24_c00061{transform:matrix(0.202856,0.003449,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202856,0.003449,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202856,0.003449,-0.004249,0.249964,0,0);}
.mc5_c00061{transform:matrix(0.202951,0.005480,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202951,0.005480,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202951,0.005480,-0.006748,0.249909,0,0);}
.ma8_c00061{transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);}
.m6b_c00061{transform:matrix(0.203661,0.005092,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203661,0.005092,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203661,0.005092,-0.006248,0.249922,0,0);}
.m76_c00061{transform:matrix(0.203941,0.005099,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203941,0.005099,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203941,0.005099,-0.006248,0.249922,0,0);}
.mec_c00061{transform:matrix(0.203946,0.005507,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203946,0.005507,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203946,0.005507,-0.006748,0.249909,0,0);}
.m5c_c00061{transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204778,0.006764,-0.008254,0.249864,0,0);}
.mca_c00061{transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);}
.m27_c00061{transform:matrix(0.204931,0.005123,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204931,0.005123,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204931,0.005123,-0.006248,0.249922,0,0);}
.m83_c00061{transform:matrix(0.205106,0.005128,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205106,0.005128,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205106,0.005128,-0.006248,0.249922,0,0);}
.md1_c00061{transform:matrix(0.206650,0.005580,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206650,0.005580,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206650,0.005580,-0.006748,0.249909,0,0);}
.m41_c00061{transform:matrix(0.207339,0.006641,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207339,0.006641,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207339,0.006641,-0.008004,0.249872,0,0);}
.meb_c00061{transform:matrix(0.207914,0.005614,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207914,0.005614,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207914,0.005614,-0.006748,0.249909,0,0);}
.m25_c00061{transform:matrix(0.207975,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207975,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207975,0.003536,-0.004249,0.249964,0,0);}
.me2_c00061{transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);}
.maf_c00061{transform:matrix(0.208441,0.006885,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208441,0.006885,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208441,0.006885,-0.008254,0.249864,0,0);}
.m15_c00061{transform:matrix(0.208650,0.004590,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208650,0.004590,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208650,0.004590,-0.005499,0.249940,0,0);}
.m2b_c00061{transform:matrix(0.208735,0.005218,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208735,0.005218,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208735,0.005218,-0.006248,0.249922,0,0);}
.m4d_c00061{transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);}
.md9_c00061{transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);}
.m94_c00061{transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);}
.m1a_c00061{transform:matrix(0.210159,0.004624,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210159,0.004624,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210159,0.004624,-0.005499,0.249940,0,0);}
.m9a_c00061{transform:matrix(0.210535,0.006955,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210535,0.006955,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210535,0.006955,-0.008254,0.249864,0,0);}
.m5f_c00061{transform:matrix(0.211115,0.006974,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211115,0.006974,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211115,0.006974,-0.008254,0.249864,0,0);}
.m67_c00061{transform:matrix(0.212114,0.005303,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212114,0.005303,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212114,0.005303,-0.006248,0.249922,0,0);}
.m22_c00061{transform:matrix(0.212714,0.003616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212714,0.003616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212714,0.003616,-0.004249,0.249964,0,0);}
.m1f_c00061{transform:matrix(0.212994,0.003621,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212994,0.003621,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212994,0.003621,-0.004249,0.249964,0,0);}
.mdc_c00061{transform:matrix(0.213162,0.005755,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213162,0.005755,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213162,0.005755,-0.006748,0.249909,0,0);}
.ma5_c00061{transform:matrix(0.213374,0.007048,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213374,0.007048,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213374,0.007048,-0.008254,0.249864,0,0);}
.m9b_c00061{transform:matrix(0.213429,0.007050,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213429,0.007050,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213429,0.007050,-0.008254,0.249864,0,0);}
.m28_c00061{transform:matrix(0.213458,0.005336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213458,0.005336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213458,0.005336,-0.006248,0.249922,0,0);}
.m4b_c00061{transform:matrix(0.213838,0.007064,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213838,0.007064,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213838,0.007064,-0.008254,0.249864,0,0);}
.m97_c00061{transform:matrix(0.213843,0.007064,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213843,0.007064,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213843,0.007064,-0.008254,0.249864,0,0);}
.me1_c00061{transform:matrix(0.213882,0.005775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213882,0.005775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213882,0.005775,-0.006748,0.249909,0,0);}
.m4c_c00061{transform:matrix(0.214983,0.007102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214983,0.007102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214983,0.007102,-0.008254,0.249864,0,0);}
.m5d_c00061{transform:matrix(0.215622,0.007123,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215622,0.007123,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215622,0.007123,-0.008254,0.249864,0,0);}
.m48_c00061{transform:matrix(0.215992,0.007135,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215992,0.007135,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215992,0.007135,-0.008254,0.249864,0,0);}
.mc2_c00061{transform:matrix(0.216606,0.005848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216606,0.005848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216606,0.005848,-0.006748,0.249909,0,0);}
.mc9_c00061{transform:matrix(0.217271,0.005866,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217271,0.005866,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217271,0.005866,-0.006748,0.249909,0,0);}
.ma1_c00061{transform:matrix(0.217486,0.007184,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217486,0.007184,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217486,0.007184,-0.008254,0.249864,0,0);}
.m42_c00061{transform:matrix(0.217553,0.006969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217553,0.006969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217553,0.006969,-0.008004,0.249872,0,0);}
.m17_c00061{transform:matrix(0.218137,0.004799,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218137,0.004799,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218137,0.004799,-0.005499,0.249940,0,0);}
.mc0_c00061{transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);}
.mce_c00061{transform:matrix(0.220105,0.005943,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220105,0.005943,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220105,0.005943,-0.006748,0.249909,0,0);}
.m5a_c00061{transform:matrix(0.220235,0.007275,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220235,0.007275,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220235,0.007275,-0.008254,0.249864,0,0);}
.m89_c00061{transform:matrix(0.221156,0.005529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221156,0.005529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221156,0.005529,-0.006248,0.249922,0,0);}
.m81_c00061{transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);}
.m95_c00061{transform:matrix(0.222444,0.007348,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222444,0.007348,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222444,0.007348,-0.008254,0.249864,0,0);}
.m16_c00061{transform:matrix(0.222611,0.004897,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222611,0.004897,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222611,0.004897,-0.005499,0.249940,0,0);}
.mb2_c00061{transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222719,0.007357,-0.008254,0.249864,0,0);}
.mab_c00061{transform:matrix(0.223358,0.007378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223358,0.007378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223358,0.007378,-0.008254,0.249864,0,0);}
.m91_c00061{transform:matrix(0.223638,0.007387,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223638,0.007387,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223638,0.007387,-0.008254,0.249864,0,0);}
.m84_c00061{transform:matrix(0.223885,0.005597,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223885,0.005597,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223885,0.005597,-0.006248,0.249922,0,0);}
.mc7_c00061{transform:matrix(0.224868,0.006071,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224868,0.006071,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224868,0.006071,-0.006748,0.249909,0,0);}
.m9d_c00061{transform:matrix(0.225622,0.007453,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225622,0.007453,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225622,0.007453,-0.008254,0.249864,0,0);}
.mee_c00061{transform:matrix(0.226023,0.006103,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226023,0.006103,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226023,0.006103,-0.006748,0.249909,0,0);}
.md6_c00061{transform:matrix(0.227712,0.006148,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227712,0.006148,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227712,0.006148,-0.006748,0.249909,0,0);}
.md4_c00061{transform:matrix(0.228132,0.006160,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228132,0.006160,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228132,0.006160,-0.006748,0.249909,0,0);}
.m8f_c00061{transform:matrix(0.228670,0.007554,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228670,0.007554,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228670,0.007554,-0.008254,0.249864,0,0);}
.mf0_c00061{transform:matrix(0.229486,0.006196,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229486,0.006196,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229486,0.006196,-0.006748,0.249909,0,0);}
.m60_c00061{transform:matrix(0.231449,0.007645,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231449,0.007645,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231449,0.007645,-0.008254,0.249864,0,0);}
.mc1_c00061{transform:matrix(0.231691,0.006256,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231691,0.006256,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231691,0.006256,-0.006748,0.249909,0,0);}
.mf3_c00061{transform:matrix(0.232025,0.006265,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232025,0.006265,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232025,0.006265,-0.006748,0.249909,0,0);}
.mc4_c00061{transform:matrix(0.232415,0.006275,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232415,0.006275,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232415,0.006275,-0.006748,0.249909,0,0);}
.mf2_c00061{transform:matrix(0.233965,0.006317,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233965,0.006317,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233965,0.006317,-0.006748,0.249909,0,0);}
.mb0_c00061{transform:matrix(0.234957,0.007761,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234957,0.007761,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234957,0.007761,-0.008254,0.249864,0,0);}
.md7_c00061{transform:matrix(0.235239,0.006351,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235239,0.006351,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235239,0.006351,-0.006748,0.249909,0,0);}
.me9_c00061{transform:matrix(0.237523,0.006413,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237523,0.006413,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237523,0.006413,-0.006748,0.249909,0,0);}
.me7_c00061{transform:matrix(0.240407,0.006491,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240407,0.006491,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240407,0.006491,-0.006748,0.249909,0,0);}
.mb3_c00061{transform:matrix(0.243762,0.008052,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243762,0.008052,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243762,0.008052,-0.008254,0.249864,0,0);}
.m1d_c00061{transform:matrix(0.245375,0.004171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245375,0.004171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245375,0.004171,-0.004249,0.249964,0,0);}
.mf1_c00061{transform:matrix(0.250154,0.006754,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250154,0.006754,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250154,0.006754,-0.006748,0.249909,0,0);}
.mdb_c00061{transform:matrix(0.251223,0.006783,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251223,0.006783,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251223,0.006783,-0.006748,0.249909,0,0);}
.m8c_c00061{transform:matrix(0.251668,0.008313,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251668,0.008313,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251668,0.008313,-0.008254,0.249864,0,0);}
.med_c00061{transform:matrix(0.253753,0.006851,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253753,0.006851,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253753,0.006851,-0.006748,0.249909,0,0);}
.mb7_c00061{transform:matrix(0.263027,0.008689,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263027,0.008689,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263027,0.008689,-0.008254,0.249864,0,0);}
.mc3_c00061{transform:matrix(0.269332,0.007272,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269332,0.007272,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269332,0.007272,-0.006748,0.249909,0,0);}
.m9e_c00061{transform:matrix(0.314823,0.010400,-0.008254,0.249864,0,0);-ms-transform:matrix(0.314823,0.010400,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.314823,0.010400,-0.008254,0.249864,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
.fc0_c00061{color:transparent;}
.fs14_c00061{font-size:57.771046px;}
.fsa_c00061{font-size:59.822762px;}
.fs5_c00061{font-size:59.868700px;}
.fs19_c00061{font-size:59.871811px;}
.fs12_c00061{font-size:60.872284px;}
.fs15_c00061{font-size:60.922194px;}
.fsc_c00061{font-size:61.921806px;}
.fs4_c00061{font-size:61.958951px;}
.fs3_c00061{font-size:61.964990px;}
.fs10_c00061{font-size:61.969356px;}
.fs17_c00061{font-size:61.972577px;}
.fsd_c00061{font-size:62.971328px;}
.fsf_c00061{font-size:63.019684px;}
.fs18_c00061{font-size:63.022959px;}
.fs8_c00061{font-size:64.018768px;}
.fs11_c00061{font-size:64.020851px;}
.fs2_c00061{font-size:65.115752px;}
.fs7_c00061{font-size:66.117744px;}
.fs13_c00061{font-size:66.119895px;}
.fsb_c00061{font-size:67.169417px;}
.fse_c00061{font-size:67.220997px;}
.fs6_c00061{font-size:67.228252px;}
.fs9_c00061{font-size:68.218939px;}
.fs16_c00061{font-size:68.274873px;}
.fs1_c00061{font-size:71.417277px;}
.fs0_c00061{font-size:81.919817px;}
.y0_c00061{bottom:0.000000px;}
.yf4_c00061{bottom:26.593974px;}
.yf3_c00061{bottom:28.503754px;}
.yf2_c00061{bottom:29.018130px;}
.yf1_c00061{bottom:31.256569px;}
.yf0_c00061{bottom:33.651522px;}
.yef_c00061{bottom:34.044544px;}
.yee_c00061{bottom:34.798509px;}
.yed_c00061{bottom:44.320111px;}
.yec_c00061{bottom:45.305331px;}
.yeb_c00061{bottom:46.248139px;}
.yea_c00061{bottom:49.725210px;}
.ye9_c00061{bottom:51.559828px;}
.ye8_c00061{bottom:52.352760px;}
.ye7_c00061{bottom:60.463615px;}
.ye6_c00061{bottom:62.967040px;}
.ye5_c00061{bottom:64.104103px;}
.ye4_c00061{bottom:64.694265px;}
.ye3_c00061{bottom:66.401196px;}
.ye2_c00061{bottom:66.814998px;}
.ye1_c00061{bottom:68.829322px;}
.ye0_c00061{bottom:77.915919px;}
.ydf_c00061{bottom:78.586726px;}
.yde_c00061{bottom:80.252139px;}
.ydd_c00061{bottom:81.534655px;}
.ydc_c00061{bottom:83.593536px;}
.ydb_c00061{bottom:84.186695px;}
.yda_c00061{bottom:85.845708px;}
.yd9_c00061{bottom:95.228989px;}
.yd8_c00061{bottom:96.981286px;}
.yd7_c00061{bottom:100.272053px;}
.yd6_c00061{bottom:101.408873px;}
.yd5_c00061{bottom:103.401810px;}
.yd4_c00061{bottom:111.043103px;}
.yd3_c00061{bottom:112.678494px;}
.yd2_c00061{bottom:114.916829px;}
.yd1_c00061{bottom:117.007242px;}
.yd0_c00061{bottom:118.008867px;}
.ycf_c00061{bottom:118.829723px;}
.yce_c00061{bottom:119.603756px;}
.ycd_c00061{bottom:128.940965px;}
.ycc_c00061{bottom:129.468205px;}
.ycb_c00061{bottom:130.077063px;}
.yca_c00061{bottom:131.158399px;}
.yc9_c00061{bottom:131.608764px;}
.yc8_c00061{bottom:133.771639px;}
.yc7_c00061{bottom:135.553858px;}
.yc6_c00061{bottom:136.355190px;}
.yc5_c00061{bottom:146.169870px;}
.yc4_c00061{bottom:146.605326px;}
.yc3_c00061{bottom:149.009163px;}
.yc2_c00061{bottom:150.685660px;}
.yc1_c00061{bottom:152.830500px;}
.yc0_c00061{bottom:162.542798px;}
.ybf_c00061{bottom:164.161375px;}
.ybe_c00061{bottom:164.530547px;}
.ybd_c00061{bottom:165.847534px;}
.ybc_c00061{bottom:167.108214px;}
.ybb_c00061{bottom:168.190252px;}
.yba_c00061{bottom:168.531708px;}
.yb9_c00061{bottom:170.157945px;}
.yb8_c00061{bottom:181.139048px;}
.yb7_c00061{bottom:182.641886px;}
.yb6_c00061{bottom:183.307143px;}
.yb5_c00061{bottom:184.045930px;}
.yb4_c00061{bottom:187.041549px;}
.yb3_c00061{bottom:187.346617px;}
.yb2_c00061{bottom:187.965948px;}
.yb1_c00061{bottom:197.931167px;}
.yb0_c00061{bottom:199.711213px;}
.yaf_c00061{bottom:200.153289px;}
.yae_c00061{bottom:201.081999px;}
.yad_c00061{bottom:201.576688px;}
.yac_c00061{bottom:203.726622px;}
.yab_c00061{bottom:205.242119px;}
.yaa_c00061{bottom:213.721280px;}
.ya9_c00061{bottom:215.750460px;}
.ya8_c00061{bottom:216.576188px;}
.ya7_c00061{bottom:217.653753px;}
.ya6_c00061{bottom:219.961290px;}
.ya5_c00061{bottom:221.447406px;}
.ya4_c00061{bottom:222.786646px;}
.ya3_c00061{bottom:231.738951px;}
.ya2_c00061{bottom:232.130307px;}
.ya1_c00061{bottom:235.059551px;}
.ya0_c00061{bottom:235.708576px;}
.y9f_c00061{bottom:236.063541px;}
.y9e_c00061{bottom:237.274842px;}
.y9d_c00061{bottom:238.597172px;}
.y9c_c00061{bottom:240.054722px;}
.y9b_c00061{bottom:247.882152px;}
.y9a_c00061{bottom:249.398359px;}
.y99_c00061{bottom:249.932226px;}
.y98_c00061{bottom:250.398048px;}
.y97_c00061{bottom:251.747738px;}
.y96_c00061{bottom:253.417111px;}
.y95_c00061{bottom:255.143901px;}
.y94_c00061{bottom:255.974511px;}
.y93_c00061{bottom:265.200312px;}
.y92_c00061{bottom:267.197686px;}
.y91_c00061{bottom:268.351531px;}
.y90_c00061{bottom:270.674814px;}
.y8f_c00061{bottom:271.388109px;}
.y8e_c00061{bottom:272.891325px;}
.y8d_c00061{bottom:274.062000px;}
.y8c_c00061{bottom:281.611200px;}
.y8b_c00061{bottom:282.960188px;}
.y8a_c00061{bottom:283.814700px;}
.y89_c00061{bottom:286.074787px;}
.y88_c00061{bottom:286.798463px;}
.y87_c00061{bottom:287.369962px;}
.y86_c00061{bottom:288.896813px;}
.y85_c00061{bottom:289.434000px;}
.y84_c00061{bottom:299.088037px;}
.y83_c00061{bottom:299.688600px;}
.y82_c00061{bottom:300.062887px;}
.y81_c00061{bottom:301.049400px;}
.y80_c00061{bottom:301.549087px;}
.y7f_c00061{bottom:302.660213px;}
.y7e_c00061{bottom:303.098250px;}
.y7d_c00061{bottom:303.910763px;}
.y7c_c00061{bottom:305.631825px;}
.y7b_c00061{bottom:306.444900px;}
.y7a_c00061{bottom:315.222750px;}
.y79_c00061{bottom:316.739812px;}
.y78_c00061{bottom:317.203613px;}
.y77_c00061{bottom:317.626463px;}
.y76_c00061{bottom:319.350750px;}
.y75_c00061{bottom:319.941338px;}
.y74_c00061{bottom:320.951325px;}
.y73_c00061{bottom:321.640238px;}
.y72_c00061{bottom:322.394550px;}
.y71_c00061{bottom:322.920113px;}
.y70_c00061{bottom:333.366000px;}
.y6f_c00061{bottom:333.752475px;}
.y6e_c00061{bottom:334.481925px;}
.y6d_c00061{bottom:335.120288px;}
.y6c_c00061{bottom:335.987887px;}
.y6b_c00061{bottom:337.425862px;}
.y6a_c00061{bottom:338.094225px;}
.y69_c00061{bottom:338.566913px;}
.y68_c00061{bottom:340.207500px;}
.y67_c00061{bottom:351.813353px;}
.y66_c00061{bottom:352.495413px;}
.y65_c00061{bottom:352.975865px;}
.y64_c00061{bottom:354.374118px;}
.y63_c00061{bottom:354.772872px;}
.y62_c00061{bottom:356.619339px;}
.y61_c00061{bottom:357.520181px;}
.y60_c00061{bottom:366.464952px;}
.y5f_c00061{bottom:367.356627px;}
.y5e_c00061{bottom:369.587844px;}
.y5d_c00061{bottom:369.922788px;}
.y5c_c00061{bottom:372.390120px;}
.y5b_c00061{bottom:374.253813px;}
.y5a_c00061{bottom:383.614299px;}
.y59_c00061{bottom:384.442592px;}
.y58_c00061{bottom:385.268472px;}
.y57_c00061{bottom:387.710968px;}
.y56_c00061{bottom:389.343771px;}
.y55_c00061{bottom:390.339675px;}
.y54_c00061{bottom:391.525650px;}
.y53_c00061{bottom:400.846293px;}
.y52_c00061{bottom:402.643984px;}
.y51_c00061{bottom:403.511382px;}
.y50_c00061{bottom:404.098168px;}
.y4f_c00061{bottom:405.934119px;}
.y4e_c00061{bottom:406.761426px;}
.y4d_c00061{bottom:408.527478px;}
.y4c_c00061{bottom:416.217299px;}
.y4b_c00061{bottom:418.324514px;}
.y4a_c00061{bottom:418.975488px;}
.y49_c00061{bottom:420.651113px;}
.y48_c00061{bottom:421.326441px;}
.y47_c00061{bottom:422.489097px;}
.y46_c00061{bottom:423.437517px;}
.y45_c00061{bottom:424.993500px;}
.y44_c00061{bottom:439.846721px;}
.y43_c00061{bottom:439.850721px;}
.y42_c00061{bottom:439.852946px;}
.y41_c00061{bottom:449.797428px;}
.y40_c00061{bottom:450.207444px;}
.y3f_c00061{bottom:451.732644px;}
.y3e_c00061{bottom:452.316756px;}
.y3d_c00061{bottom:453.747780px;}
.y3c_c00061{bottom:454.418532px;}
.y3b_c00061{bottom:456.345924px;}
.y3a_c00061{bottom:457.447428px;}
.y39_c00061{bottom:458.514564px;}
.y38_c00061{bottom:458.936052px;}
.y37_c00061{bottom:459.544500px;}
.y36_c00061{bottom:467.971509px;}
.y35_c00061{bottom:468.527221px;}
.y34_c00061{bottom:469.302522px;}
.y33_c00061{bottom:471.407095px;}
.y32_c00061{bottom:473.662309px;}
.y31_c00061{bottom:474.030145px;}
.y30_c00061{bottom:475.479000px;}
.y2f_c00061{bottom:484.517850px;}
.y2e_c00061{bottom:485.701950px;}
.y2d_c00061{bottom:486.363562px;}
.y2c_c00061{bottom:486.917062px;}
.y2b_c00061{bottom:488.085975px;}
.y2a_c00061{bottom:488.639962px;}
.y29_c00061{bottom:490.787137px;}
.y28_c00061{bottom:491.674500px;}
.y27_c00061{bottom:500.757923px;}
.y26_c00061{bottom:501.135272px;}
.y25_c00061{bottom:501.964761px;}
.y24_c00061{bottom:502.359527px;}
.y23_c00061{bottom:503.118483px;}
.y22_c00061{bottom:503.963706px;}
.y21_c00061{bottom:504.294364px;}
.y20_c00061{bottom:504.523609px;}
.y1f_c00061{bottom:505.027413px;}
.y1e_c00061{bottom:505.708187px;}
.y1d_c00061{bottom:505.983000px;}
.y1c_c00061{bottom:518.601039px;}
.y1b_c00061{bottom:519.168564px;}
.y1a_c00061{bottom:520.232289px;}
.y19_c00061{bottom:520.528428px;}
.y18_c00061{bottom:521.073360px;}
.y17_c00061{bottom:522.747714px;}
.y16_c00061{bottom:522.895527px;}
.y15_c00061{bottom:523.790034px;}
.y14_c00061{bottom:535.757094px;}
.y13_c00061{bottom:536.262783px;}
.y12_c00061{bottom:536.752794px;}
.y11_c00061{bottom:537.726939px;}
.y10_c00061{bottom:538.271031px;}
.yf_c00061{bottom:538.637478px;}
.ye_c00061{bottom:539.390244px;}
.yd_c00061{bottom:539.666730px;}
.yc_c00061{bottom:540.430173px;}
.yb_c00061{bottom:540.805086px;}
.ya_c00061{bottom:553.239810px;}
.y9_c00061{bottom:553.727136px;}
.y8_c00061{bottom:555.391080px;}
.y7_c00061{bottom:555.709974px;}
.y6_c00061{bottom:556.863225px;}
.y5_c00061{bottom:557.274066px;}
.y4_c00061{bottom:557.820237px;}
.y3_c00061{bottom:566.138127px;}
.y2_c00061{bottom:569.231019px;}
.y1_c00061{bottom:570.246000px;}
.h16_c00061{height:57.771046px;}
.hc_c00061{height:59.822762px;}
.h7_c00061{height:59.868700px;}
.h1b_c00061{height:59.871811px;}
.h14_c00061{height:60.872284px;}
.h17_c00061{height:60.922194px;}
.he_c00061{height:61.921806px;}
.h6_c00061{height:61.958951px;}
.h5_c00061{height:61.964990px;}
.h12_c00061{height:61.969356px;}
.h19_c00061{height:61.972577px;}
.hf_c00061{height:62.971328px;}
.h11_c00061{height:63.019684px;}
.h1a_c00061{height:63.022959px;}
.ha_c00061{height:64.018768px;}
.h13_c00061{height:64.020851px;}
.h4_c00061{height:65.115752px;}
.h9_c00061{height:66.117744px;}
.h15_c00061{height:66.119895px;}
.hd_c00061{height:67.169417px;}
.h10_c00061{height:67.220997px;}
.h8_c00061{height:67.228252px;}
.hb_c00061{height:68.218939px;}
.h18_c00061{height:68.274873px;}
.h3_c00061{height:71.417277px;}
.h2_c00061{height:81.919817px;}
.h1_c00061{height:612.000000px;}
.h0_c00061{height:612.300000px;}
.w1_c00061{width:375.750000px;}
.w0_c00061{width:376.050000px;}
.x0_c00061{left:0.000000px;}
.x2b_c00061{left:21.732000px;}
.x5f_c00061{left:27.427500px;}
.x4c_c00061{left:30.199500px;}
.x7d_c00061{left:31.759160px;}
.x47_c00061{left:34.291994px;}
.x65_c00061{left:36.395545px;}
.x51_c00061{left:38.408213px;}
.x39_c00061{left:39.659751px;}
.x4_c00061{left:40.856436px;}
.x22_c00061{left:42.222000px;}
.x2c_c00061{left:53.885314px;}
.x5c_c00061{left:56.661563px;}
.x18_c00061{left:57.799500px;}
.x7a_c00061{left:59.052768px;}
.x6c_c00061{left:61.080817px;}
.xb_c00061{left:62.396460px;}
.x34_c00061{left:66.028500px;}
.x5_c00061{left:68.138124px;}
.x48_c00061{left:73.415763px;}
.x23_c00061{left:77.716500px;}
.x3f_c00061{left:78.992550px;}
.x52_c00061{left:85.820850px;}
.x2d_c00061{left:87.199967px;}
.x6_c00061{left:88.654515px;}
.x29_c00061{left:91.212000px;}
.x13_c00061{left:96.408588px;}
.x19_c00061{left:97.845000px;}
.x75_c00061{left:99.054852px;}
.x3a_c00061{left:100.479897px;}
.x42_c00061{left:103.301865px;}
.xc_c00061{left:104.806689px;}
.x60_c00061{left:108.373473px;}
.x71_c00061{left:109.548000px;}
.x40_c00061{left:111.094047px;}
.x35_c00061{left:113.132349px;}
.x4d_c00061{left:114.730500px;}
.xd_c00061{left:120.171042px;}
.x2e_c00061{left:121.587545px;}
.x62_c00061{left:122.977705px;}
.x68_c00061{left:124.833825px;}
.x1a_c00061{left:127.480500px;}
.x3b_c00061{left:128.976138px;}
.x1_c00061{left:131.457000px;}
.x76_c00061{left:135.710883px;}
.x1b_c00061{left:140.965500px;}
.x7_c00061{left:146.327556px;}
.x53_c00061{left:148.733700px;}
.x49_c00061{left:153.563994px;}
.x56_c00061{left:158.202300px;}
.x1c_c00061{left:160.416000px;}
.x8_c00061{left:162.255249px;}
.x24_c00061{left:163.603500px;}
.x79_c00061{left:168.637469px;}
.x4a_c00061{left:170.857881px;}
.x57_c00061{left:173.862638px;}
.x2_c00061{left:177.592500px;}
.x6a_c00061{left:180.195228px;}
.xe_c00061{left:182.368020px;}
.x14_c00061{left:184.521396px;}
.x25_c00061{left:185.763000px;}
.x43_c00061{left:188.303526px;}
.x3c_c00061{left:192.230195px;}
.x6e_c00061{left:195.568816px;}
.x36_c00061{left:197.484412px;}
.x44_c00061{left:199.851003px;}
.x2f_c00061{left:202.698352px;}
.x73_c00061{left:207.435456px;}
.x66_c00061{left:208.503058px;}
.x1d_c00061{left:210.135000px;}
.xf_c00061{left:212.556660px;}
.x58_c00061{left:213.564675px;}
.x6d_c00061{left:216.245871px;}
.x33_c00061{left:218.064969px;}
.x7b_c00061{left:220.033727px;}
.x63_c00061{left:223.501041px;}
.x6b_c00061{left:227.414704px;}
.x15_c00061{left:228.754800px;}
.x59_c00061{left:231.390825px;}
.x26_c00061{left:232.519500px;}
.x4e_c00061{left:233.688000px;}
.x61_c00061{left:235.228990px;}
.x5d_c00061{left:238.152450px;}
.x3d_c00061{left:242.337676px;}
.x6f_c00061{left:244.293205px;}
.x9_c00061{left:245.460912px;}
.x30_c00061{left:247.373133px;}
.x7c_c00061{left:248.614610px;}
.x54_c00061{left:250.137638px;}
.x4b_c00061{left:252.436176px;}
.x1e_c00061{left:254.779500px;}
.x64_c00061{left:256.807021px;}
.x70_c00061{left:257.966743px;}
.x4f_c00061{left:259.222500px;}
.x72_c00061{left:260.671500px;}
.x74_c00061{left:263.752880px;}
.x31_c00061{left:265.608380px;}
.x10_c00061{left:266.658912px;}
.x37_c00061{left:267.916910px;}
.xa_c00061{left:269.794968px;}
.x45_c00061{left:276.705729px;}
.x1f_c00061{left:278.001000px;}
.x5a_c00061{left:279.999188px;}
.x27_c00061{left:281.124000px;}
.x16_c00061{left:284.745996px;}
.x50_c00061{left:288.400500px;}
.x78_c00061{left:290.781171px;}
.x11_c00061{left:293.911821px;}
.x41_c00061{left:295.712433px;}
.x77_c00061{left:298.362306px;}
.x2a_c00061{left:300.130500px;}
.x5b_c00061{left:301.440075px;}
.x3e_c00061{left:304.251876px;}
.x46_c00061{left:307.423044px;}
.x67_c00061{left:309.395394px;}
.x32_c00061{left:313.223217px;}
.x17_c00061{left:314.635476px;}
.x5e_c00061{left:316.866563px;}
.x3_c00061{left:318.178500px;}
.x69_c00061{left:319.594261px;}
.x12_c00061{left:322.013796px;}
.x55_c00061{left:323.488462px;}
.x20_c00061{left:326.794500px;}
.x28_c00061{left:328.488000px;}
.x38_c00061{left:331.708055px;}
.x21_c00061{left:348.991500px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
.fs14_c00061{font-size:51.352041pt;}
.fsa_c00061{font-size:53.175788pt;}
.fs5_c00061{font-size:53.216622pt;}
.fs19_c00061{font-size:53.219388pt;}
.fs12_c00061{font-size:54.108697pt;}
.fs15_c00061{font-size:54.153061pt;}
.fsc_c00061{font-size:55.041606pt;}
.fs4_c00061{font-size:55.074623pt;}
.fs3_c00061{font-size:55.079991pt;}
.fs10_c00061{font-size:55.083872pt;}
.fs17_c00061{font-size:55.086735pt;}
.fsd_c00061{font-size:55.974514pt;}
.fsf_c00061{font-size:56.017497pt;}
.fs18_c00061{font-size:56.020408pt;}
.fs8_c00061{font-size:56.905572pt;}
.fs11_c00061{font-size:56.907423pt;}
.fs2_c00061{font-size:57.880669pt;}
.fs7_c00061{font-size:58.771328pt;}
.fs13_c00061{font-size:58.773240pt;}
.fsb_c00061{font-size:59.706148pt;}
.fse_c00061{font-size:59.751997pt;}
.fs6_c00061{font-size:59.758446pt;}
.fs9_c00061{font-size:60.639057pt;}
.fs16_c00061{font-size:60.688776pt;}
.fs1_c00061{font-size:63.482024pt;}
.fs0_c00061{font-size:72.817615pt;}
.y0_c00061{bottom:0.000000pt;}
.yf4_c00061{bottom:23.639088pt;}
.yf3_c00061{bottom:25.336671pt;}
.yf2_c00061{bottom:25.793893pt;}
.yf1_c00061{bottom:27.783617pt;}
.yf0_c00061{bottom:29.912464pt;}
.yef_c00061{bottom:30.261817pt;}
.yee_c00061{bottom:30.932008pt;}
.yed_c00061{bottom:39.395655pt;}
.yec_c00061{bottom:40.271405pt;}
.yeb_c00061{bottom:41.109457pt;}
.yea_c00061{bottom:44.200187pt;}
.ye9_c00061{bottom:45.830959pt;}
.ye8_c00061{bottom:46.535787pt;}
.ye7_c00061{bottom:53.745436pt;}
.ye6_c00061{bottom:55.970703pt;}
.ye5_c00061{bottom:56.981425pt;}
.ye4_c00061{bottom:57.506013pt;}
.ye3_c00061{bottom:59.023285pt;}
.ye2_c00061{bottom:59.391109pt;}
.ye1_c00061{bottom:61.181620pt;}
.ye0_c00061{bottom:69.258595pt;}
.ydf_c00061{bottom:69.854868pt;}
.yde_c00061{bottom:71.335235pt;}
.ydd_c00061{bottom:72.475249pt;}
.ydc_c00061{bottom:74.305365pt;}
.ydb_c00061{bottom:74.832617pt;}
.yda_c00061{bottom:76.307296pt;}
.yd9_c00061{bottom:84.647991pt;}
.yd8_c00061{bottom:86.205588pt;}
.yd7_c00061{bottom:89.130713pt;}
.yd6_c00061{bottom:90.141220pt;}
.yd5_c00061{bottom:91.912720pt;}
.yd4_c00061{bottom:98.704980pt;}
.yd3_c00061{bottom:100.158661pt;}
.yd2_c00061{bottom:102.148292pt;}
.yd1_c00061{bottom:104.006437pt;}
.yd0_c00061{bottom:104.896771pt;}
.ycf_c00061{bottom:105.626420pt;}
.yce_c00061{bottom:106.314449pt;}
.ycd_c00061{bottom:114.614191pt;}
.ycc_c00061{bottom:115.082849pt;}
.ycb_c00061{bottom:115.624056pt;}
.yca_c00061{bottom:116.585244pt;}
.yc9_c00061{bottom:116.985568pt;}
.yc8_c00061{bottom:118.908124pt;}
.yc7_c00061{bottom:120.492319pt;}
.yc6_c00061{bottom:121.204613pt;}
.yc5_c00061{bottom:129.928773pt;}
.yc4_c00061{bottom:130.315845pt;}
.yc3_c00061{bottom:132.452589pt;}
.yc2_c00061{bottom:133.942809pt;}
.yc1_c00061{bottom:135.849333pt;}
.yc0_c00061{bottom:144.482487pt;}
.ybf_c00061{bottom:145.921223pt;}
.ybe_c00061{bottom:146.249375pt;}
.ybd_c00061{bottom:147.420031pt;}
.ybc_c00061{bottom:148.540635pt;}
.ybb_c00061{bottom:149.502447pt;}
.yba_c00061{bottom:149.805963pt;}
.yb9_c00061{bottom:151.251507pt;}
.yb8_c00061{bottom:161.012487pt;}
.yb7_c00061{bottom:162.348343pt;}
.yb6_c00061{bottom:162.939683pt;}
.yb5_c00061{bottom:163.596383pt;}
.yb4_c00061{bottom:166.259155pt;}
.yb3_c00061{bottom:166.530327pt;}
.yb2_c00061{bottom:167.080843pt;}
.yb1_c00061{bottom:175.938815pt;}
.yb0_c00061{bottom:177.521079pt;}
.yaf_c00061{bottom:177.914035pt;}
.yae_c00061{bottom:178.739555pt;}
.yad_c00061{bottom:179.179279pt;}
.yac_c00061{bottom:181.090331pt;}
.yab_c00061{bottom:182.437439pt;}
.yaa_c00061{bottom:189.974471pt;}
.ya9_c00061{bottom:191.778187pt;}
.ya8_c00061{bottom:192.512167pt;}
.ya7_c00061{bottom:193.470003pt;}
.ya6_c00061{bottom:195.521147pt;}
.ya5_c00061{bottom:196.842139pt;}
.ya4_c00061{bottom:198.032575pt;}
.ya3_c00061{bottom:205.990179pt;}
.ya2_c00061{bottom:206.338051pt;}
.ya1_c00061{bottom:208.941823pt;}
.ya0_c00061{bottom:209.518735pt;}
.y9f_c00061{bottom:209.834259pt;}
.y9e_c00061{bottom:210.910971pt;}
.y9d_c00061{bottom:212.086375pt;}
.y9c_c00061{bottom:213.381975pt;}
.y9b_c00061{bottom:220.339691pt;}
.y9a_c00061{bottom:221.687431pt;}
.y99_c00061{bottom:222.161979pt;}
.y98_c00061{bottom:222.576043pt;}
.y97_c00061{bottom:223.775767pt;}
.y96_c00061{bottom:225.259655pt;}
.y95_c00061{bottom:226.794579pt;}
.y94_c00061{bottom:227.532899pt;}
.y93_c00061{bottom:235.733611pt;}
.y92_c00061{bottom:237.509055pt;}
.y91_c00061{bottom:238.534695pt;}
.y90_c00061{bottom:240.599835pt;}
.y8f_c00061{bottom:241.233875pt;}
.y8e_c00061{bottom:242.570067pt;}
.y8d_c00061{bottom:243.610667pt;}
.y8c_c00061{bottom:250.321067pt;}
.y8b_c00061{bottom:251.520167pt;}
.y8a_c00061{bottom:252.279733pt;}
.y89_c00061{bottom:254.288700pt;}
.y88_c00061{bottom:254.931967pt;}
.y87_c00061{bottom:255.439967pt;}
.y86_c00061{bottom:256.797167pt;}
.y85_c00061{bottom:257.274667pt;}
.y84_c00061{bottom:265.856033pt;}
.y83_c00061{bottom:266.389867pt;}
.y82_c00061{bottom:266.722567pt;}
.y81_c00061{bottom:267.599467pt;}
.y80_c00061{bottom:268.043633pt;}
.y7f_c00061{bottom:269.031300pt;}
.y7e_c00061{bottom:269.420667pt;}
.y7d_c00061{bottom:270.142900pt;}
.y7c_c00061{bottom:271.672733pt;}
.y7b_c00061{bottom:272.395467pt;}
.y7a_c00061{bottom:280.198000pt;}
.y79_c00061{bottom:281.546500pt;}
.y78_c00061{bottom:281.958767pt;}
.y77_c00061{bottom:282.334633pt;}
.y76_c00061{bottom:283.867333pt;}
.y75_c00061{bottom:284.392300pt;}
.y74_c00061{bottom:285.290067pt;}
.y73_c00061{bottom:285.902433pt;}
.y72_c00061{bottom:286.572933pt;}
.y71_c00061{bottom:287.040100pt;}
.y70_c00061{bottom:296.325333pt;}
.y6f_c00061{bottom:296.668867pt;}
.y6e_c00061{bottom:297.317267pt;}
.y6d_c00061{bottom:297.884700pt;}
.y6c_c00061{bottom:298.655900pt;}
.y6b_c00061{bottom:299.934100pt;}
.y6a_c00061{bottom:300.528200pt;}
.y69_c00061{bottom:300.948367pt;}
.y68_c00061{bottom:302.406667pt;}
.y67_c00061{bottom:312.722980pt;}
.y66_c00061{bottom:313.329256pt;}
.y65_c00061{bottom:313.756324pt;}
.y64_c00061{bottom:314.999216pt;}
.y63_c00061{bottom:315.353664pt;}
.y62_c00061{bottom:316.994968pt;}
.y61_c00061{bottom:317.795716pt;}
.y60_c00061{bottom:325.746624pt;}
.y5f_c00061{bottom:326.539224pt;}
.y5e_c00061{bottom:328.522528pt;}
.y5d_c00061{bottom:328.820256pt;}
.y5c_c00061{bottom:331.013440pt;}
.y5b_c00061{bottom:332.670056pt;}
.y5a_c00061{bottom:340.990488pt;}
.y59_c00061{bottom:341.726748pt;}
.y58_c00061{bottom:342.460864pt;}
.y57_c00061{bottom:344.631972pt;}
.y56_c00061{bottom:346.083352pt;}
.y55_c00061{bottom:346.968600pt;}
.y54_c00061{bottom:348.022800pt;}
.y53_c00061{bottom:356.307816pt;}
.y52_c00061{bottom:357.905764pt;}
.y51_c00061{bottom:358.676784pt;}
.y50_c00061{bottom:359.198372pt;}
.y4f_c00061{bottom:360.830328pt;}
.y4e_c00061{bottom:361.565712pt;}
.y4d_c00061{bottom:363.135536pt;}
.y4c_c00061{bottom:369.970932pt;}
.y4b_c00061{bottom:371.844012pt;}
.y4a_c00061{bottom:372.422656pt;}
.y49_c00061{bottom:373.912100pt;}
.y48_c00061{bottom:374.512392pt;}
.y47_c00061{bottom:375.545864pt;}
.y46_c00061{bottom:376.388904pt;}
.y45_c00061{bottom:377.772000pt;}
.y44_c00061{bottom:390.974863pt;}
.y43_c00061{bottom:390.978419pt;}
.y42_c00061{bottom:390.980396pt;}
.y41_c00061{bottom:399.819936pt;}
.y40_c00061{bottom:400.184395pt;}
.y3f_c00061{bottom:401.540128pt;}
.y3e_c00061{bottom:402.059339pt;}
.y3d_c00061{bottom:403.331360pt;}
.y3c_c00061{bottom:403.927584pt;}
.y3b_c00061{bottom:405.640821pt;}
.y3a_c00061{bottom:406.619936pt;}
.y39_c00061{bottom:407.568501pt;}
.y38_c00061{bottom:407.943157pt;}
.y37_c00061{bottom:408.484000pt;}
.y36_c00061{bottom:415.974675pt;}
.y35_c00061{bottom:416.468641pt;}
.y34_c00061{bottom:417.157797pt;}
.y33_c00061{bottom:419.028529pt;}
.y32_c00061{bottom:421.033164pt;}
.y31_c00061{bottom:421.360129pt;}
.y30_c00061{bottom:422.648000pt;}
.y2f_c00061{bottom:430.682533pt;}
.y2e_c00061{bottom:431.735067pt;}
.y2d_c00061{bottom:432.323167pt;}
.y2c_c00061{bottom:432.815167pt;}
.y2b_c00061{bottom:433.854200pt;}
.y2a_c00061{bottom:434.346633pt;}
.y29_c00061{bottom:436.255233pt;}
.y28_c00061{bottom:437.044000pt;}
.y27_c00061{bottom:445.118153pt;}
.y26_c00061{bottom:445.453575pt;}
.y25_c00061{bottom:446.190899pt;}
.y24_c00061{bottom:446.541801pt;}
.y23_c00061{bottom:447.216429pt;}
.y22_c00061{bottom:447.967739pt;}
.y21_c00061{bottom:448.261657pt;}
.y20_c00061{bottom:448.465431pt;}
.y1f_c00061{bottom:448.913256pt;}
.y1e_c00061{bottom:449.518388pt;}
.y1d_c00061{bottom:449.762667pt;}
.y1c_c00061{bottom:460.978701pt;}
.y1b_c00061{bottom:461.483168pt;}
.y1a_c00061{bottom:462.428701pt;}
.y19_c00061{bottom:462.691936pt;}
.y18_c00061{bottom:463.176320pt;}
.y17_c00061{bottom:464.664635pt;}
.y16_c00061{bottom:464.796024pt;}
.y15_c00061{bottom:465.591141pt;}
.y14_c00061{bottom:476.228528pt;}
.y13_c00061{bottom:476.678029pt;}
.y12_c00061{bottom:477.113595pt;}
.y11_c00061{bottom:477.979501pt;}
.y10_c00061{bottom:478.463139pt;}
.yf_c00061{bottom:478.788869pt;}
.ye_c00061{bottom:479.457995pt;}
.yd_c00061{bottom:479.703760pt;}
.yc_c00061{bottom:480.382376pt;}
.yb_c00061{bottom:480.715632pt;}
.ya_c00061{bottom:491.768720pt;}
.y9_c00061{bottom:492.201899pt;}
.y8_c00061{bottom:493.680960pt;}
.y7_c00061{bottom:493.964421pt;}
.y6_c00061{bottom:494.989533pt;}
.y5_c00061{bottom:495.354725pt;}
.y4_c00061{bottom:495.840211pt;}
.y3_c00061{bottom:503.233891pt;}
.y2_c00061{bottom:505.983128pt;}
.y1_c00061{bottom:506.885333pt;}
.h16_c00061{height:51.352041pt;}
.hc_c00061{height:53.175788pt;}
.h7_c00061{height:53.216622pt;}
.h1b_c00061{height:53.219388pt;}
.h14_c00061{height:54.108697pt;}
.h17_c00061{height:54.153061pt;}
.he_c00061{height:55.041606pt;}
.h6_c00061{height:55.074623pt;}
.h5_c00061{height:55.079991pt;}
.h12_c00061{height:55.083872pt;}
.h19_c00061{height:55.086735pt;}
.hf_c00061{height:55.974514pt;}
.h11_c00061{height:56.017497pt;}
.h1a_c00061{height:56.020408pt;}
.ha_c00061{height:56.905572pt;}
.h13_c00061{height:56.907423pt;}
.h4_c00061{height:57.880669pt;}
.h9_c00061{height:58.771328pt;}
.h15_c00061{height:58.773240pt;}
.hd_c00061{height:59.706148pt;}
.h10_c00061{height:59.751997pt;}
.h8_c00061{height:59.758446pt;}
.hb_c00061{height:60.639057pt;}
.h18_c00061{height:60.688776pt;}
.h3_c00061{height:63.482024pt;}
.h2_c00061{height:72.817615pt;}
.h1_c00061{height:544.000000pt;}
.h0_c00061{height:544.266667pt;}
.w1_c00061{width:334.000000pt;}
.w0_c00061{width:334.266667pt;}
.x0_c00061{left:0.000000pt;}
.x2b_c00061{left:19.317333pt;}
.x5f_c00061{left:24.380000pt;}
.x4c_c00061{left:26.844000pt;}
.x7d_c00061{left:28.230364pt;}
.x47_c00061{left:30.481772pt;}
.x65_c00061{left:32.351596pt;}
.x51_c00061{left:34.140633pt;}
.x39_c00061{left:35.253112pt;}
.x4_c00061{left:36.316832pt;}
.x22_c00061{left:37.530667pt;}
.x2c_c00061{left:47.898057pt;}
.x5c_c00061{left:50.365833pt;}
.x18_c00061{left:51.377333pt;}
.x7a_c00061{left:52.491349pt;}
.x6c_c00061{left:54.294060pt;}
.xb_c00061{left:55.463520pt;}
.x34_c00061{left:58.692000pt;}
.x5_c00061{left:60.567221pt;}
.x48_c00061{left:65.258456pt;}
.x23_c00061{left:69.081333pt;}
.x3f_c00061{left:70.215600pt;}
.x52_c00061{left:76.285200pt;}
.x2d_c00061{left:77.511081pt;}
.x6_c00061{left:78.804013pt;}
.x29_c00061{left:81.077333pt;}
.x13_c00061{left:85.696523pt;}
.x19_c00061{left:86.973333pt;}
.x75_c00061{left:88.048757pt;}
.x3a_c00061{left:89.315464pt;}
.x42_c00061{left:91.823880pt;}
.xc_c00061{left:93.161501pt;}
.x60_c00061{left:96.331976pt;}
.x71_c00061{left:97.376000pt;}
.x40_c00061{left:98.750264pt;}
.x35_c00061{left:100.562088pt;}
.x4d_c00061{left:101.982667pt;}
.xd_c00061{left:106.818704pt;}
.x2e_c00061{left:108.077817pt;}
.x62_c00061{left:109.313516pt;}
.x68_c00061{left:110.963400pt;}
.x1a_c00061{left:113.316000pt;}
.x3b_c00061{left:114.645456pt;}
.x1_c00061{left:116.850667pt;}
.x76_c00061{left:120.631896pt;}
.x1b_c00061{left:125.302667pt;}
.x7_c00061{left:130.068939pt;}
.x53_c00061{left:132.207733pt;}
.x49_c00061{left:136.501328pt;}
.x56_c00061{left:140.624267pt;}
.x1c_c00061{left:142.592000pt;}
.x8_c00061{left:144.226888pt;}
.x24_c00061{left:145.425333pt;}
.x79_c00061{left:149.899972pt;}
.x4a_c00061{left:151.873672pt;}
.x57_c00061{left:154.544567pt;}
.x2_c00061{left:157.860000pt;}
.x6a_c00061{left:160.173536pt;}
.xe_c00061{left:162.104907pt;}
.x14_c00061{left:164.019019pt;}
.x25_c00061{left:165.122667pt;}
.x43_c00061{left:167.380912pt;}
.x3c_c00061{left:170.871284pt;}
.x6e_c00061{left:173.838948pt;}
.x36_c00061{left:175.541700pt;}
.x44_c00061{left:177.645336pt;}
.x2f_c00061{left:180.176313pt;}
.x73_c00061{left:184.387072pt;}
.x66_c00061{left:185.336052pt;}
.x1d_c00061{left:186.786667pt;}
.xf_c00061{left:188.939253pt;}
.x58_c00061{left:189.835267pt;}
.x6d_c00061{left:192.218552pt;}
.x33_c00061{left:193.835528pt;}
.x7b_c00061{left:195.585535pt;}
.x63_c00061{left:198.667592pt;}
.x6b_c00061{left:202.146404pt;}
.x15_c00061{left:203.337600pt;}
.x59_c00061{left:205.680733pt;}
.x26_c00061{left:206.684000pt;}
.x4e_c00061{left:207.722667pt;}
.x61_c00061{left:209.092436pt;}
.x5d_c00061{left:211.691067pt;}
.x3d_c00061{left:215.411268pt;}
.x6f_c00061{left:217.149516pt;}
.x9_c00061{left:218.187477pt;}
.x30_c00061{left:219.887229pt;}
.x7c_c00061{left:220.990764pt;}
.x54_c00061{left:222.344567pt;}
.x4b_c00061{left:224.387712pt;}
.x1e_c00061{left:226.470667pt;}
.x64_c00061{left:228.272908pt;}
.x70_c00061{left:229.303772pt;}
.x4f_c00061{left:230.420000pt;}
.x72_c00061{left:231.708000pt;}
.x74_c00061{left:234.447004pt;}
.x31_c00061{left:236.096337pt;}
.x10_c00061{left:237.030144pt;}
.x37_c00061{left:238.148364pt;}
.xa_c00061{left:239.817749pt;}
.x45_c00061{left:245.960648pt;}
.x1f_c00061{left:247.112000pt;}
.x5a_c00061{left:248.888167pt;}
.x27_c00061{left:249.888000pt;}
.x16_c00061{left:253.107552pt;}
.x50_c00061{left:256.356000pt;}
.x78_c00061{left:258.472152pt;}
.x11_c00061{left:261.254952pt;}
.x41_c00061{left:262.855496pt;}
.x77_c00061{left:265.210939pt;}
.x2a_c00061{left:266.782667pt;}
.x5b_c00061{left:267.946733pt;}
.x3e_c00061{left:270.446112pt;}
.x46_c00061{left:273.264928pt;}
.x67_c00061{left:275.018128pt;}
.x32_c00061{left:278.420637pt;}
.x17_c00061{left:279.675979pt;}
.x5e_c00061{left:281.659167pt;}
.x3_c00061{left:282.825333pt;}
.x69_c00061{left:284.083788pt;}
.x12_c00061{left:286.234485pt;}
.x55_c00061{left:287.545300pt;}
.x20_c00061{left:290.484000pt;}
.x28_c00061{left:291.989333pt;}
.x38_c00061{left:294.851604pt;}
.x21_c00061{left:310.214667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00062 {
    display:none;
  }
  .loading-indicator_c00062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00062 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00062 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00062" -> "#page-container .classname_c00062")
 */
.pf_c00062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00062 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00062 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00062 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00062 {overflow:visible;}
  }
}
.c_c00062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00062 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00062:after { /* webkit #35443 */
  content: '';
}
.t_c00062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00062 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00062 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00062 { /* info for Javascript */
  display:none;
}
.l_c00062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00062:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00062 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00062.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma5_c00062{transform:matrix(0.012312,-0.000567,0.011499,0.249735,0,0);-ms-transform:matrix(0.012312,-0.000567,0.011499,0.249735,0,0);-webkit-transform:matrix(0.012312,-0.000567,0.011499,0.249735,0,0);}
.m75_c00062{transform:matrix(0.134038,-0.006172,0.011499,0.249735,0,0);-ms-transform:matrix(0.134038,-0.006172,0.011499,0.249735,0,0);-webkit-transform:matrix(0.134038,-0.006172,0.011499,0.249735,0,0);}
.m50_c00062{transform:matrix(0.138283,-0.006367,0.011499,0.249735,0,0);-ms-transform:matrix(0.138283,-0.006367,0.011499,0.249735,0,0);-webkit-transform:matrix(0.138283,-0.006367,0.011499,0.249735,0,0);}
.m0_c00062{transform:matrix(0.139545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139545,0.000000,0.000000,0.250000,0,0);}
.mcd_c00062{transform:matrix(0.140166,-0.006454,0.011499,0.249735,0,0);-ms-transform:matrix(0.140166,-0.006454,0.011499,0.249735,0,0);-webkit-transform:matrix(0.140166,-0.006454,0.011499,0.249735,0,0);}
.ma0_c00062{transform:matrix(0.143253,-0.006596,0.011499,0.249735,0,0);-ms-transform:matrix(0.143253,-0.006596,0.011499,0.249735,0,0);-webkit-transform:matrix(0.143253,-0.006596,0.011499,0.249735,0,0);}
.m80_c00062{transform:matrix(0.144792,-0.006667,0.011499,0.249735,0,0);-ms-transform:matrix(0.144792,-0.006667,0.011499,0.249735,0,0);-webkit-transform:matrix(0.144792,-0.006667,0.011499,0.249735,0,0);}
.m8a_c00062{transform:matrix(0.149811,-0.006898,0.011499,0.249735,0,0);-ms-transform:matrix(0.149811,-0.006898,0.011499,0.249735,0,0);-webkit-transform:matrix(0.149811,-0.006898,0.011499,0.249735,0,0);}
.mcc_c00062{transform:matrix(0.150196,-0.006916,0.011499,0.249735,0,0);-ms-transform:matrix(0.150196,-0.006916,0.011499,0.249735,0,0);-webkit-transform:matrix(0.150196,-0.006916,0.011499,0.249735,0,0);}
.ma_c00062{transform:matrix(0.150296,-0.006921,0.011499,0.249735,0,0);-ms-transform:matrix(0.150296,-0.006921,0.011499,0.249735,0,0);-webkit-transform:matrix(0.150296,-0.006921,0.011499,0.249735,0,0);}
.md2_c00062{transform:matrix(0.150600,-0.006935,0.011499,0.249735,0,0);-ms-transform:matrix(0.150600,-0.006935,0.011499,0.249735,0,0);-webkit-transform:matrix(0.150600,-0.006935,0.011499,0.249735,0,0);}
.m2c_c00062{transform:matrix(0.151150,-0.006960,0.011499,0.249735,0,0);-ms-transform:matrix(0.151150,-0.006960,0.011499,0.249735,0,0);-webkit-transform:matrix(0.151150,-0.006960,0.011499,0.249735,0,0);}
.ma3_c00062{transform:matrix(0.151410,-0.006972,0.011499,0.249735,0,0);-ms-transform:matrix(0.151410,-0.006972,0.011499,0.249735,0,0);-webkit-transform:matrix(0.151410,-0.006972,0.011499,0.249735,0,0);}
.m94_c00062{transform:matrix(0.152538,-0.007024,0.011499,0.249735,0,0);-ms-transform:matrix(0.152538,-0.007024,0.011499,0.249735,0,0);-webkit-transform:matrix(0.152538,-0.007024,0.011499,0.249735,0,0);}
.m98_c00062{transform:matrix(0.153487,-0.007067,0.011499,0.249735,0,0);-ms-transform:matrix(0.153487,-0.007067,0.011499,0.249735,0,0);-webkit-transform:matrix(0.153487,-0.007067,0.011499,0.249735,0,0);}
.m9e_c00062{transform:matrix(0.153872,-0.007085,0.011499,0.249735,0,0);-ms-transform:matrix(0.153872,-0.007085,0.011499,0.249735,0,0);-webkit-transform:matrix(0.153872,-0.007085,0.011499,0.249735,0,0);}
.m3c_c00062{transform:matrix(0.154591,-0.007118,0.011499,0.249735,0,0);-ms-transform:matrix(0.154591,-0.007118,0.011499,0.249735,0,0);-webkit-transform:matrix(0.154591,-0.007118,0.011499,0.249735,0,0);}
.ma4_c00062{transform:matrix(0.156634,-0.007212,0.011499,0.249735,0,0);-ms-transform:matrix(0.156634,-0.007212,0.011499,0.249735,0,0);-webkit-transform:matrix(0.156634,-0.007212,0.011499,0.249735,0,0);}
.mef_c00062{transform:matrix(0.157323,-0.007244,0.011499,0.249735,0,0);-ms-transform:matrix(0.157323,-0.007244,0.011499,0.249735,0,0);-webkit-transform:matrix(0.157323,-0.007244,0.011499,0.249735,0,0);}
.m31_c00062{transform:matrix(0.157623,-0.007258,0.011499,0.249735,0,0);-ms-transform:matrix(0.157623,-0.007258,0.011499,0.249735,0,0);-webkit-transform:matrix(0.157623,-0.007258,0.011499,0.249735,0,0);}
.m6e_c00062{transform:matrix(0.159351,-0.007337,0.011499,0.249735,0,0);-ms-transform:matrix(0.159351,-0.007337,0.011499,0.249735,0,0);-webkit-transform:matrix(0.159351,-0.007337,0.011499,0.249735,0,0);}
.m83_c00062{transform:matrix(0.160075,-0.007371,0.011499,0.249735,0,0);-ms-transform:matrix(0.160075,-0.007371,0.011499,0.249735,0,0);-webkit-transform:matrix(0.160075,-0.007371,0.011499,0.249735,0,0);}
.md5_c00062{transform:matrix(0.160095,-0.007372,0.011499,0.249735,0,0);-ms-transform:matrix(0.160095,-0.007372,0.011499,0.249735,0,0);-webkit-transform:matrix(0.160095,-0.007372,0.011499,0.249735,0,0);}
.m1a_c00062{transform:matrix(0.161534,-0.007438,0.011499,0.249735,0,0);-ms-transform:matrix(0.161534,-0.007438,0.011499,0.249735,0,0);-webkit-transform:matrix(0.161534,-0.007438,0.011499,0.249735,0,0);}
.m26_c00062{transform:matrix(0.161639,-0.007443,0.011499,0.249735,0,0);-ms-transform:matrix(0.161639,-0.007443,0.011499,0.249735,0,0);-webkit-transform:matrix(0.161639,-0.007443,0.011499,0.249735,0,0);}
.mc9_c00062{transform:matrix(0.162398,-0.007478,0.011499,0.249735,0,0);-ms-transform:matrix(0.162398,-0.007478,0.011499,0.249735,0,0);-webkit-transform:matrix(0.162398,-0.007478,0.011499,0.249735,0,0);}
.m3b_c00062{transform:matrix(0.163112,-0.007511,0.011499,0.249735,0,0);-ms-transform:matrix(0.163112,-0.007511,0.011499,0.249735,0,0);-webkit-transform:matrix(0.163112,-0.007511,0.011499,0.249735,0,0);}
.md7_c00062{transform:matrix(0.163831,-0.007544,0.011499,0.249735,0,0);-ms-transform:matrix(0.163831,-0.007544,0.011499,0.249735,0,0);-webkit-transform:matrix(0.163831,-0.007544,0.011499,0.249735,0,0);}
.md0_c00062{transform:matrix(0.163936,-0.007549,0.011499,0.249735,0,0);-ms-transform:matrix(0.163936,-0.007549,0.011499,0.249735,0,0);-webkit-transform:matrix(0.163936,-0.007549,0.011499,0.249735,0,0);}
.m1f_c00062{transform:matrix(0.164241,-0.007563,0.011499,0.249735,0,0);-ms-transform:matrix(0.164241,-0.007563,0.011499,0.249735,0,0);-webkit-transform:matrix(0.164241,-0.007563,0.011499,0.249735,0,0);}
.m7d_c00062{transform:matrix(0.164451,-0.007572,0.011499,0.249735,0,0);-ms-transform:matrix(0.164451,-0.007572,0.011499,0.249735,0,0);-webkit-transform:matrix(0.164451,-0.007572,0.011499,0.249735,0,0);}
.md1_c00062{transform:matrix(0.164476,-0.007573,0.011499,0.249735,0,0);-ms-transform:matrix(0.164476,-0.007573,0.011499,0.249735,0,0);-webkit-transform:matrix(0.164476,-0.007573,0.011499,0.249735,0,0);}
.m27_c00062{transform:matrix(0.164676,-0.007583,0.011499,0.249735,0,0);-ms-transform:matrix(0.164676,-0.007583,0.011499,0.249735,0,0);-webkit-transform:matrix(0.164676,-0.007583,0.011499,0.249735,0,0);}
.m7e_c00062{transform:matrix(0.165215,-0.007607,0.011499,0.249735,0,0);-ms-transform:matrix(0.165215,-0.007607,0.011499,0.249735,0,0);-webkit-transform:matrix(0.165215,-0.007607,0.011499,0.249735,0,0);}
.m7a_c00062{transform:matrix(0.165475,-0.007619,0.011499,0.249735,0,0);-ms-transform:matrix(0.165475,-0.007619,0.011499,0.249735,0,0);-webkit-transform:matrix(0.165475,-0.007619,0.011499,0.249735,0,0);}
.m76_c00062{transform:matrix(0.165570,-0.007624,0.011499,0.249735,0,0);-ms-transform:matrix(0.165570,-0.007624,0.011499,0.249735,0,0);-webkit-transform:matrix(0.165570,-0.007624,0.011499,0.249735,0,0);}
.m3a_c00062{transform:matrix(0.166349,-0.007660,0.011499,0.249735,0,0);-ms-transform:matrix(0.166349,-0.007660,0.011499,0.249735,0,0);-webkit-transform:matrix(0.166349,-0.007660,0.011499,0.249735,0,0);}
.m9b_c00062{transform:matrix(0.166574,-0.007670,0.011499,0.249735,0,0);-ms-transform:matrix(0.166574,-0.007670,0.011499,0.249735,0,0);-webkit-transform:matrix(0.166574,-0.007670,0.011499,0.249735,0,0);}
.me3_c00062{transform:matrix(0.166728,-0.007677,0.011499,0.249735,0,0);-ms-transform:matrix(0.166728,-0.007677,0.011499,0.249735,0,0);-webkit-transform:matrix(0.166728,-0.007677,0.011499,0.249735,0,0);}
.m62_c00062{transform:matrix(0.167937,-0.007733,0.011499,0.249735,0,0);-ms-transform:matrix(0.167937,-0.007733,0.011499,0.249735,0,0);-webkit-transform:matrix(0.167937,-0.007733,0.011499,0.249735,0,0);}
.m64_c00062{transform:matrix(0.168017,-0.007737,0.011499,0.249735,0,0);-ms-transform:matrix(0.168017,-0.007737,0.011499,0.249735,0,0);-webkit-transform:matrix(0.168017,-0.007737,0.011499,0.249735,0,0);}
.mb_c00062{transform:matrix(0.168062,-0.007739,0.011499,0.249735,0,0);-ms-transform:matrix(0.168062,-0.007739,0.011499,0.249735,0,0);-webkit-transform:matrix(0.168062,-0.007739,0.011499,0.249735,0,0);}
.mf4_c00062{transform:matrix(0.169096,-0.007786,0.011499,0.249735,0,0);-ms-transform:matrix(0.169096,-0.007786,0.011499,0.249735,0,0);-webkit-transform:matrix(0.169096,-0.007786,0.011499,0.249735,0,0);}
.m10_c00062{transform:matrix(0.169306,-0.007796,0.011499,0.249735,0,0);-ms-transform:matrix(0.169306,-0.007796,0.011499,0.249735,0,0);-webkit-transform:matrix(0.169306,-0.007796,0.011499,0.249735,0,0);}
.m14_c00062{transform:matrix(0.169530,-0.007806,0.011499,0.249735,0,0);-ms-transform:matrix(0.169530,-0.007806,0.011499,0.249735,0,0);-webkit-transform:matrix(0.169530,-0.007806,0.011499,0.249735,0,0);}
.m53_c00062{transform:matrix(0.169605,-0.007810,0.011499,0.249735,0,0);-ms-transform:matrix(0.169605,-0.007810,0.011499,0.249735,0,0);-webkit-transform:matrix(0.169605,-0.007810,0.011499,0.249735,0,0);}
.m8d_c00062{transform:matrix(0.171838,-0.007912,0.011499,0.249735,0,0);-ms-transform:matrix(0.171838,-0.007912,0.011499,0.249735,0,0);-webkit-transform:matrix(0.171838,-0.007912,0.011499,0.249735,0,0);}
.mb7_c00062{transform:matrix(0.171843,-0.007913,0.011499,0.249735,0,0);-ms-transform:matrix(0.171843,-0.007913,0.011499,0.249735,0,0);-webkit-transform:matrix(0.171843,-0.007913,0.011499,0.249735,0,0);}
.meb_c00062{transform:matrix(0.171938,-0.007917,0.011499,0.249735,0,0);-ms-transform:matrix(0.171938,-0.007917,0.011499,0.249735,0,0);-webkit-transform:matrix(0.171938,-0.007917,0.011499,0.249735,0,0);}
.m5b_c00062{transform:matrix(0.172098,-0.007924,0.011499,0.249735,0,0);-ms-transform:matrix(0.172098,-0.007924,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172098,-0.007924,0.011499,0.249735,0,0);}
.m9c_c00062{transform:matrix(0.172337,-0.007935,0.011499,0.249735,0,0);-ms-transform:matrix(0.172337,-0.007935,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172337,-0.007935,0.011499,0.249735,0,0);}
.m34_c00062{transform:matrix(0.172357,-0.007936,0.011499,0.249735,0,0);-ms-transform:matrix(0.172357,-0.007936,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172357,-0.007936,0.011499,0.249735,0,0);}
.md6_c00062{transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);-ms-transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);}
.m99_c00062{transform:matrix(0.172472,-0.007942,0.011499,0.249735,0,0);-ms-transform:matrix(0.172472,-0.007942,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172472,-0.007942,0.011499,0.249735,0,0);}
.m36_c00062{transform:matrix(0.173441,-0.007986,0.011499,0.249735,0,0);-ms-transform:matrix(0.173441,-0.007986,0.011499,0.249735,0,0);-webkit-transform:matrix(0.173441,-0.007986,0.011499,0.249735,0,0);}
.m8e_c00062{transform:matrix(0.174470,-0.008034,0.011499,0.249735,0,0);-ms-transform:matrix(0.174470,-0.008034,0.011499,0.249735,0,0);-webkit-transform:matrix(0.174470,-0.008034,0.011499,0.249735,0,0);}
.m87_c00062{transform:matrix(0.175154,-0.008065,0.011499,0.249735,0,0);-ms-transform:matrix(0.175154,-0.008065,0.011499,0.249735,0,0);-webkit-transform:matrix(0.175154,-0.008065,0.011499,0.249735,0,0);}
.m13_c00062{transform:matrix(0.175249,-0.008070,0.011499,0.249735,0,0);-ms-transform:matrix(0.175249,-0.008070,0.011499,0.249735,0,0);-webkit-transform:matrix(0.175249,-0.008070,0.011499,0.249735,0,0);}
.m7f_c00062{transform:matrix(0.176198,-0.008113,0.011499,0.249735,0,0);-ms-transform:matrix(0.176198,-0.008113,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176198,-0.008113,0.011499,0.249735,0,0);}
.m3d_c00062{transform:matrix(0.176228,-0.008115,0.011499,0.249735,0,0);-ms-transform:matrix(0.176228,-0.008115,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176228,-0.008115,0.011499,0.249735,0,0);}
.mbf_c00062{transform:matrix(0.176288,-0.008117,0.011499,0.249735,0,0);-ms-transform:matrix(0.176288,-0.008117,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176288,-0.008117,0.011499,0.249735,0,0);}
.m59_c00062{transform:matrix(0.176693,-0.008136,0.011499,0.249735,0,0);-ms-transform:matrix(0.176693,-0.008136,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176693,-0.008136,0.011499,0.249735,0,0);}
.m72_c00062{transform:matrix(0.176788,-0.008140,0.011499,0.249735,0,0);-ms-transform:matrix(0.176788,-0.008140,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176788,-0.008140,0.011499,0.249735,0,0);}
.m30_c00062{transform:matrix(0.176893,-0.008145,0.011499,0.249735,0,0);-ms-transform:matrix(0.176893,-0.008145,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176893,-0.008145,0.011499,0.249735,0,0);}
.maa_c00062{transform:matrix(0.176933,-0.008147,0.011499,0.249735,0,0);-ms-transform:matrix(0.176933,-0.008147,0.011499,0.249735,0,0);-webkit-transform:matrix(0.176933,-0.008147,0.011499,0.249735,0,0);}
.m7b_c00062{transform:matrix(0.178616,-0.008225,0.011499,0.249735,0,0);-ms-transform:matrix(0.178616,-0.008225,0.011499,0.249735,0,0);-webkit-transform:matrix(0.178616,-0.008225,0.011499,0.249735,0,0);}
.m37_c00062{transform:matrix(0.178696,-0.008228,0.011499,0.249735,0,0);-ms-transform:matrix(0.178696,-0.008228,0.011499,0.249735,0,0);-webkit-transform:matrix(0.178696,-0.008228,0.011499,0.249735,0,0);}
.mf7_c00062{transform:matrix(0.178746,-0.008231,0.011499,0.249735,0,0);-ms-transform:matrix(0.178746,-0.008231,0.011499,0.249735,0,0);-webkit-transform:matrix(0.178746,-0.008231,0.011499,0.249735,0,0);}
.m1c_c00062{transform:matrix(0.178771,-0.008232,0.011499,0.249735,0,0);-ms-transform:matrix(0.178771,-0.008232,0.011499,0.249735,0,0);-webkit-transform:matrix(0.178771,-0.008232,0.011499,0.249735,0,0);}
.mff_c00062{transform:matrix(0.179325,-0.008257,0.011499,0.249735,0,0);-ms-transform:matrix(0.179325,-0.008257,0.011499,0.249735,0,0);-webkit-transform:matrix(0.179325,-0.008257,0.011499,0.249735,0,0);}
.m49_c00062{transform:matrix(0.179675,-0.008273,0.011499,0.249735,0,0);-ms-transform:matrix(0.179675,-0.008273,0.011499,0.249735,0,0);-webkit-transform:matrix(0.179675,-0.008273,0.011499,0.249735,0,0);}
.md_c00062{transform:matrix(0.180044,-0.008290,0.011499,0.249735,0,0);-ms-transform:matrix(0.180044,-0.008290,0.011499,0.249735,0,0);-webkit-transform:matrix(0.180044,-0.008290,0.011499,0.249735,0,0);}
.m3f_c00062{transform:matrix(0.180389,-0.008306,0.011499,0.249735,0,0);-ms-transform:matrix(0.180389,-0.008306,0.011499,0.249735,0,0);-webkit-transform:matrix(0.180389,-0.008306,0.011499,0.249735,0,0);}
.mc2_c00062{transform:matrix(0.180684,-0.008320,0.011499,0.249735,0,0);-ms-transform:matrix(0.180684,-0.008320,0.011499,0.249735,0,0);-webkit-transform:matrix(0.180684,-0.008320,0.011499,0.249735,0,0);}
.m5e_c00062{transform:matrix(0.181028,-0.008336,0.011499,0.249735,0,0);-ms-transform:matrix(0.181028,-0.008336,0.011499,0.249735,0,0);-webkit-transform:matrix(0.181028,-0.008336,0.011499,0.249735,0,0);}
.ma6_c00062{transform:matrix(0.181423,-0.008354,0.011499,0.249735,0,0);-ms-transform:matrix(0.181423,-0.008354,0.011499,0.249735,0,0);-webkit-transform:matrix(0.181423,-0.008354,0.011499,0.249735,0,0);}
.m85_c00062{transform:matrix(0.181598,-0.008362,0.011499,0.249735,0,0);-ms-transform:matrix(0.181598,-0.008362,0.011499,0.249735,0,0);-webkit-transform:matrix(0.181598,-0.008362,0.011499,0.249735,0,0);}
.m89_c00062{transform:matrix(0.181638,-0.008364,0.011499,0.249735,0,0);-ms-transform:matrix(0.181638,-0.008364,0.011499,0.249735,0,0);-webkit-transform:matrix(0.181638,-0.008364,0.011499,0.249735,0,0);}
.mb8_c00062{transform:matrix(0.181857,-0.008374,0.011499,0.249735,0,0);-ms-transform:matrix(0.181857,-0.008374,0.011499,0.249735,0,0);-webkit-transform:matrix(0.181857,-0.008374,0.011499,0.249735,0,0);}
.ma1_c00062{transform:matrix(0.182482,-0.008403,0.011499,0.249735,0,0);-ms-transform:matrix(0.182482,-0.008403,0.011499,0.249735,0,0);-webkit-transform:matrix(0.182482,-0.008403,0.011499,0.249735,0,0);}
.mdc_c00062{transform:matrix(0.182607,-0.008408,0.011499,0.249735,0,0);-ms-transform:matrix(0.182607,-0.008408,0.011499,0.249735,0,0);-webkit-transform:matrix(0.182607,-0.008408,0.011499,0.249735,0,0);}
.mfd_c00062{transform:matrix(0.182766,-0.008416,0.011499,0.249735,0,0);-ms-transform:matrix(0.182766,-0.008416,0.011499,0.249735,0,0);-webkit-transform:matrix(0.182766,-0.008416,0.011499,0.249735,0,0);}
.me6_c00062{transform:matrix(0.183580,-0.008453,0.011499,0.249735,0,0);-ms-transform:matrix(0.183580,-0.008453,0.011499,0.249735,0,0);-webkit-transform:matrix(0.183580,-0.008453,0.011499,0.249735,0,0);}
.m68_c00062{transform:matrix(0.183930,-0.008469,0.011499,0.249735,0,0);-ms-transform:matrix(0.183930,-0.008469,0.011499,0.249735,0,0);-webkit-transform:matrix(0.183930,-0.008469,0.011499,0.249735,0,0);}
.m20_c00062{transform:matrix(0.184180,-0.008481,0.011499,0.249735,0,0);-ms-transform:matrix(0.184180,-0.008481,0.011499,0.249735,0,0);-webkit-transform:matrix(0.184180,-0.008481,0.011499,0.249735,0,0);}
.m44_c00062{transform:matrix(0.184624,-0.008501,0.011499,0.249735,0,0);-ms-transform:matrix(0.184624,-0.008501,0.011499,0.249735,0,0);-webkit-transform:matrix(0.184624,-0.008501,0.011499,0.249735,0,0);}
.mda_c00062{transform:matrix(0.184939,-0.008516,0.011499,0.249735,0,0);-ms-transform:matrix(0.184939,-0.008516,0.011499,0.249735,0,0);-webkit-transform:matrix(0.184939,-0.008516,0.011499,0.249735,0,0);}
.me8_c00062{transform:matrix(0.185094,-0.008523,0.011499,0.249735,0,0);-ms-transform:matrix(0.185094,-0.008523,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185094,-0.008523,0.011499,0.249735,0,0);}
.m21_c00062{transform:matrix(0.185159,-0.008526,0.011499,0.249735,0,0);-ms-transform:matrix(0.185159,-0.008526,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185159,-0.008526,0.011499,0.249735,0,0);}
.m3_c00062{transform:matrix(0.185264,-0.008531,0.011499,0.249735,0,0);-ms-transform:matrix(0.185264,-0.008531,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185264,-0.008531,0.011499,0.249735,0,0);}
.m7_c00062{transform:matrix(0.185329,-0.008534,0.011499,0.249735,0,0);-ms-transform:matrix(0.185329,-0.008534,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185329,-0.008534,0.011499,0.249735,0,0);}
.m48_c00062{transform:matrix(0.185618,-0.008547,0.011499,0.249735,0,0);-ms-transform:matrix(0.185618,-0.008547,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185618,-0.008547,0.011499,0.249735,0,0);}
.m95_c00062{transform:matrix(0.185668,-0.008549,0.011499,0.249735,0,0);-ms-transform:matrix(0.185668,-0.008549,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185668,-0.008549,0.011499,0.249735,0,0);}
.md3_c00062{transform:matrix(0.185683,-0.008550,0.011499,0.249735,0,0);-ms-transform:matrix(0.185683,-0.008550,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185683,-0.008550,0.011499,0.249735,0,0);}
.m71_c00062{transform:matrix(0.185808,-0.008556,0.011499,0.249735,0,0);-ms-transform:matrix(0.185808,-0.008556,0.011499,0.249735,0,0);-webkit-transform:matrix(0.185808,-0.008556,0.011499,0.249735,0,0);}
.ma2_c00062{transform:matrix(0.186043,-0.008567,0.011499,0.249735,0,0);-ms-transform:matrix(0.186043,-0.008567,0.011499,0.249735,0,0);-webkit-transform:matrix(0.186043,-0.008567,0.011499,0.249735,0,0);}
.md8_c00062{transform:matrix(0.186313,-0.008579,0.011499,0.249735,0,0);-ms-transform:matrix(0.186313,-0.008579,0.011499,0.249735,0,0);-webkit-transform:matrix(0.186313,-0.008579,0.011499,0.249735,0,0);}
.m9_c00062{transform:matrix(0.186887,-0.008605,0.011499,0.249735,0,0);-ms-transform:matrix(0.186887,-0.008605,0.011499,0.249735,0,0);-webkit-transform:matrix(0.186887,-0.008605,0.011499,0.249735,0,0);}
.mdd_c00062{transform:matrix(0.186927,-0.008607,0.011499,0.249735,0,0);-ms-transform:matrix(0.186927,-0.008607,0.011499,0.249735,0,0);-webkit-transform:matrix(0.186927,-0.008607,0.011499,0.249735,0,0);}
.m17_c00062{transform:matrix(0.186977,-0.008610,0.011499,0.249735,0,0);-ms-transform:matrix(0.186977,-0.008610,0.011499,0.249735,0,0);-webkit-transform:matrix(0.186977,-0.008610,0.011499,0.249735,0,0);}
.mce_c00062{transform:matrix(0.187007,-0.008611,0.011499,0.249735,0,0);-ms-transform:matrix(0.187007,-0.008611,0.011499,0.249735,0,0);-webkit-transform:matrix(0.187007,-0.008611,0.011499,0.249735,0,0);}
.m2e_c00062{transform:matrix(0.187082,-0.008614,0.011499,0.249735,0,0);-ms-transform:matrix(0.187082,-0.008614,0.011499,0.249735,0,0);-webkit-transform:matrix(0.187082,-0.008614,0.011499,0.249735,0,0);}
.m12_c00062{transform:matrix(0.187202,-0.008620,0.011499,0.249735,0,0);-ms-transform:matrix(0.187202,-0.008620,0.011499,0.249735,0,0);-webkit-transform:matrix(0.187202,-0.008620,0.011499,0.249735,0,0);}
.m1d_c00062{transform:matrix(0.187671,-0.008642,0.011499,0.249735,0,0);-ms-transform:matrix(0.187671,-0.008642,0.011499,0.249735,0,0);-webkit-transform:matrix(0.187671,-0.008642,0.011499,0.249735,0,0);}
.mdb_c00062{transform:matrix(0.188131,-0.008663,0.011499,0.249735,0,0);-ms-transform:matrix(0.188131,-0.008663,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188131,-0.008663,0.011499,0.249735,0,0);}
.m6a_c00062{transform:matrix(0.188385,-0.008674,0.011499,0.249735,0,0);-ms-transform:matrix(0.188385,-0.008674,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188385,-0.008674,0.011499,0.249735,0,0);}
.m9f_c00062{transform:matrix(0.188460,-0.008678,0.011499,0.249735,0,0);-ms-transform:matrix(0.188460,-0.008678,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188460,-0.008678,0.011499,0.249735,0,0);}
.mc_c00062{transform:matrix(0.188480,-0.008679,0.011499,0.249735,0,0);-ms-transform:matrix(0.188480,-0.008679,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188480,-0.008679,0.011499,0.249735,0,0);}
.m69_c00062{transform:matrix(0.188520,-0.008681,0.011499,0.249735,0,0);-ms-transform:matrix(0.188520,-0.008681,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188520,-0.008681,0.011499,0.249735,0,0);}
.m91_c00062{transform:matrix(0.188700,-0.008689,0.011499,0.249735,0,0);-ms-transform:matrix(0.188700,-0.008689,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188700,-0.008689,0.011499,0.249735,0,0);}
.m82_c00062{transform:matrix(0.188845,-0.008696,0.011499,0.249735,0,0);-ms-transform:matrix(0.188845,-0.008696,0.011499,0.249735,0,0);-webkit-transform:matrix(0.188845,-0.008696,0.011499,0.249735,0,0);}
.m6b_c00062{transform:matrix(0.189110,-0.008708,0.011499,0.249735,0,0);-ms-transform:matrix(0.189110,-0.008708,0.011499,0.249735,0,0);-webkit-transform:matrix(0.189110,-0.008708,0.011499,0.249735,0,0);}
.m84_c00062{transform:matrix(0.189309,-0.008717,0.011499,0.249735,0,0);-ms-transform:matrix(0.189309,-0.008717,0.011499,0.249735,0,0);-webkit-transform:matrix(0.189309,-0.008717,0.011499,0.249735,0,0);}
.mde_c00062{transform:matrix(0.189744,-0.008737,0.011499,0.249735,0,0);-ms-transform:matrix(0.189744,-0.008737,0.011499,0.249735,0,0);-webkit-transform:matrix(0.189744,-0.008737,0.011499,0.249735,0,0);}
.m97_c00062{transform:matrix(0.189939,-0.008746,0.011499,0.249735,0,0);-ms-transform:matrix(0.189939,-0.008746,0.011499,0.249735,0,0);-webkit-transform:matrix(0.189939,-0.008746,0.011499,0.249735,0,0);}
.m40_c00062{transform:matrix(0.190338,-0.008764,0.011499,0.249735,0,0);-ms-transform:matrix(0.190338,-0.008764,0.011499,0.249735,0,0);-webkit-transform:matrix(0.190338,-0.008764,0.011499,0.249735,0,0);}
.md9_c00062{transform:matrix(0.190688,-0.008780,0.011499,0.249735,0,0);-ms-transform:matrix(0.190688,-0.008780,0.011499,0.249735,0,0);-webkit-transform:matrix(0.190688,-0.008780,0.011499,0.249735,0,0);}
.m2d_c00062{transform:matrix(0.190828,-0.008787,0.011499,0.249735,0,0);-ms-transform:matrix(0.190828,-0.008787,0.011499,0.249735,0,0);-webkit-transform:matrix(0.190828,-0.008787,0.011499,0.249735,0,0);}
.m1_c00062{transform:matrix(0.190858,-0.008788,0.011499,0.249735,0,0);-ms-transform:matrix(0.190858,-0.008788,0.011499,0.249735,0,0);-webkit-transform:matrix(0.190858,-0.008788,0.011499,0.249735,0,0);}
.m60_c00062{transform:matrix(0.190868,-0.008789,0.011499,0.249735,0,0);-ms-transform:matrix(0.190868,-0.008789,0.011499,0.249735,0,0);-webkit-transform:matrix(0.190868,-0.008789,0.011499,0.249735,0,0);}
.m19_c00062{transform:matrix(0.191068,-0.008798,0.011499,0.249735,0,0);-ms-transform:matrix(0.191068,-0.008798,0.011499,0.249735,0,0);-webkit-transform:matrix(0.191068,-0.008798,0.011499,0.249735,0,0);}
.m39_c00062{transform:matrix(0.191103,-0.008800,0.011499,0.249735,0,0);-ms-transform:matrix(0.191103,-0.008800,0.011499,0.249735,0,0);-webkit-transform:matrix(0.191103,-0.008800,0.011499,0.249735,0,0);}
.mb6_c00062{transform:matrix(0.191382,-0.008812,0.011499,0.249735,0,0);-ms-transform:matrix(0.191382,-0.008812,0.011499,0.249735,0,0);-webkit-transform:matrix(0.191382,-0.008812,0.011499,0.249735,0,0);}
.m32_c00062{transform:matrix(0.191462,-0.008816,0.011499,0.249735,0,0);-ms-transform:matrix(0.191462,-0.008816,0.011499,0.249735,0,0);-webkit-transform:matrix(0.191462,-0.008816,0.011499,0.249735,0,0);}
.mb4_c00062{transform:matrix(0.191767,-0.008830,0.011499,0.249735,0,0);-ms-transform:matrix(0.191767,-0.008830,0.011499,0.249735,0,0);-webkit-transform:matrix(0.191767,-0.008830,0.011499,0.249735,0,0);}
.mc6_c00062{transform:matrix(0.192037,-0.008843,0.011499,0.249735,0,0);-ms-transform:matrix(0.192037,-0.008843,0.011499,0.249735,0,0);-webkit-transform:matrix(0.192037,-0.008843,0.011499,0.249735,0,0);}
.m1e_c00062{transform:matrix(0.192166,-0.008849,0.011499,0.249735,0,0);-ms-transform:matrix(0.192166,-0.008849,0.011499,0.249735,0,0);-webkit-transform:matrix(0.192166,-0.008849,0.011499,0.249735,0,0);}
.m56_c00062{transform:matrix(0.192331,-0.008856,0.011499,0.249735,0,0);-ms-transform:matrix(0.192331,-0.008856,0.011499,0.249735,0,0);-webkit-transform:matrix(0.192331,-0.008856,0.011499,0.249735,0,0);}
.mdf_c00062{transform:matrix(0.192811,-0.008878,0.011499,0.249735,0,0);-ms-transform:matrix(0.192811,-0.008878,0.011499,0.249735,0,0);-webkit-transform:matrix(0.192811,-0.008878,0.011499,0.249735,0,0);}
.m16_c00062{transform:matrix(0.193165,-0.008894,0.011499,0.249735,0,0);-ms-transform:matrix(0.193165,-0.008894,0.011499,0.249735,0,0);-webkit-transform:matrix(0.193165,-0.008894,0.011499,0.249735,0,0);}
.m2f_c00062{transform:matrix(0.193580,-0.008914,0.011499,0.249735,0,0);-ms-transform:matrix(0.193580,-0.008914,0.011499,0.249735,0,0);-webkit-transform:matrix(0.193580,-0.008914,0.011499,0.249735,0,0);}
.mc8_c00062{transform:matrix(0.193635,-0.008916,0.011499,0.249735,0,0);-ms-transform:matrix(0.193635,-0.008916,0.011499,0.249735,0,0);-webkit-transform:matrix(0.193635,-0.008916,0.011499,0.249735,0,0);}
.m93_c00062{transform:matrix(0.193835,-0.008925,0.011499,0.249735,0,0);-ms-transform:matrix(0.193835,-0.008925,0.011499,0.249735,0,0);-webkit-transform:matrix(0.193835,-0.008925,0.011499,0.249735,0,0);}
.m77_c00062{transform:matrix(0.193935,-0.008930,0.011499,0.249735,0,0);-ms-transform:matrix(0.193935,-0.008930,0.011499,0.249735,0,0);-webkit-transform:matrix(0.193935,-0.008930,0.011499,0.249735,0,0);}
.m5f_c00062{transform:matrix(0.194054,-0.008935,0.011499,0.249735,0,0);-ms-transform:matrix(0.194054,-0.008935,0.011499,0.249735,0,0);-webkit-transform:matrix(0.194054,-0.008935,0.011499,0.249735,0,0);}
.m92_c00062{transform:matrix(0.194469,-0.008955,0.011499,0.249735,0,0);-ms-transform:matrix(0.194469,-0.008955,0.011499,0.249735,0,0);-webkit-transform:matrix(0.194469,-0.008955,0.011499,0.249735,0,0);}
.m33_c00062{transform:matrix(0.194529,-0.008957,0.011499,0.249735,0,0);-ms-transform:matrix(0.194529,-0.008957,0.011499,0.249735,0,0);-webkit-transform:matrix(0.194529,-0.008957,0.011499,0.249735,0,0);}
.mcf_c00062{transform:matrix(0.194903,-0.008975,0.011499,0.249735,0,0);-ms-transform:matrix(0.194903,-0.008975,0.011499,0.249735,0,0);-webkit-transform:matrix(0.194903,-0.008975,0.011499,0.249735,0,0);}
.m55_c00062{transform:matrix(0.195183,-0.008987,0.011499,0.249735,0,0);-ms-transform:matrix(0.195183,-0.008987,0.011499,0.249735,0,0);-webkit-transform:matrix(0.195183,-0.008987,0.011499,0.249735,0,0);}
.m5c_c00062{transform:matrix(0.195358,-0.008995,0.011499,0.249735,0,0);-ms-transform:matrix(0.195358,-0.008995,0.011499,0.249735,0,0);-webkit-transform:matrix(0.195358,-0.008995,0.011499,0.249735,0,0);}
.m25_c00062{transform:matrix(0.195798,-0.009016,0.011499,0.249735,0,0);-ms-transform:matrix(0.195798,-0.009016,0.011499,0.249735,0,0);-webkit-transform:matrix(0.195798,-0.009016,0.011499,0.249735,0,0);}
.m57_c00062{transform:matrix(0.196237,-0.009036,0.011499,0.249735,0,0);-ms-transform:matrix(0.196237,-0.009036,0.011499,0.249735,0,0);-webkit-transform:matrix(0.196237,-0.009036,0.011499,0.249735,0,0);}
.mb3_c00062{transform:matrix(0.196697,-0.009057,0.011499,0.249735,0,0);-ms-transform:matrix(0.196697,-0.009057,0.011499,0.249735,0,0);-webkit-transform:matrix(0.196697,-0.009057,0.011499,0.249735,0,0);}
.m24_c00062{transform:matrix(0.197001,-0.009071,0.011499,0.249735,0,0);-ms-transform:matrix(0.197001,-0.009071,0.011499,0.249735,0,0);-webkit-transform:matrix(0.197001,-0.009071,0.011499,0.249735,0,0);}
.m51_c00062{transform:matrix(0.197321,-0.009086,0.011499,0.249735,0,0);-ms-transform:matrix(0.197321,-0.009086,0.011499,0.249735,0,0);-webkit-transform:matrix(0.197321,-0.009086,0.011499,0.249735,0,0);}
.m8f_c00062{transform:matrix(0.197411,-0.009090,0.011499,0.249735,0,0);-ms-transform:matrix(0.197411,-0.009090,0.011499,0.249735,0,0);-webkit-transform:matrix(0.197411,-0.009090,0.011499,0.249735,0,0);}
.m28_c00062{transform:matrix(0.197945,-0.009115,0.011499,0.249735,0,0);-ms-transform:matrix(0.197945,-0.009115,0.011499,0.249735,0,0);-webkit-transform:matrix(0.197945,-0.009115,0.011499,0.249735,0,0);}
.mf0_c00062{transform:matrix(0.198060,-0.009120,0.011499,0.249735,0,0);-ms-transform:matrix(0.198060,-0.009120,0.011499,0.249735,0,0);-webkit-transform:matrix(0.198060,-0.009120,0.011499,0.249735,0,0);}
.me_c00062{transform:matrix(0.198065,-0.009120,0.011499,0.249735,0,0);-ms-transform:matrix(0.198065,-0.009120,0.011499,0.249735,0,0);-webkit-transform:matrix(0.198065,-0.009120,0.011499,0.249735,0,0);}
.mf3_c00062{transform:matrix(0.198345,-0.009133,0.011499,0.249735,0,0);-ms-transform:matrix(0.198345,-0.009133,0.011499,0.249735,0,0);-webkit-transform:matrix(0.198345,-0.009133,0.011499,0.249735,0,0);}
.m7c_c00062{transform:matrix(0.198979,-0.009162,0.011499,0.249735,0,0);-ms-transform:matrix(0.198979,-0.009162,0.011499,0.249735,0,0);-webkit-transform:matrix(0.198979,-0.009162,0.011499,0.249735,0,0);}
.m4f_c00062{transform:matrix(0.199194,-0.009172,0.011499,0.249735,0,0);-ms-transform:matrix(0.199194,-0.009172,0.011499,0.249735,0,0);-webkit-transform:matrix(0.199194,-0.009172,0.011499,0.249735,0,0);}
.me2_c00062{transform:matrix(0.199279,-0.009176,0.011499,0.249735,0,0);-ms-transform:matrix(0.199279,-0.009176,0.011499,0.249735,0,0);-webkit-transform:matrix(0.199279,-0.009176,0.011499,0.249735,0,0);}
.mea_c00062{transform:matrix(0.200523,-0.009233,0.011499,0.249735,0,0);-ms-transform:matrix(0.200523,-0.009233,0.011499,0.249735,0,0);-webkit-transform:matrix(0.200523,-0.009233,0.011499,0.249735,0,0);}
.mc3_c00062{transform:matrix(0.200627,-0.009238,0.011499,0.249735,0,0);-ms-transform:matrix(0.200627,-0.009238,0.011499,0.249735,0,0);-webkit-transform:matrix(0.200627,-0.009238,0.011499,0.249735,0,0);}
.mfe_c00062{transform:matrix(0.201132,-0.009261,0.011499,0.249735,0,0);-ms-transform:matrix(0.201132,-0.009261,0.011499,0.249735,0,0);-webkit-transform:matrix(0.201132,-0.009261,0.011499,0.249735,0,0);}
.mf_c00062{transform:matrix(0.201282,-0.009268,0.011499,0.249735,0,0);-ms-transform:matrix(0.201282,-0.009268,0.011499,0.249735,0,0);-webkit-transform:matrix(0.201282,-0.009268,0.011499,0.249735,0,0);}
.m67_c00062{transform:matrix(0.201317,-0.009270,0.011499,0.249735,0,0);-ms-transform:matrix(0.201317,-0.009270,0.011499,0.249735,0,0);-webkit-transform:matrix(0.201317,-0.009270,0.011499,0.249735,0,0);}
.me4_c00062{transform:matrix(0.202835,-0.009340,0.011499,0.249735,0,0);-ms-transform:matrix(0.202835,-0.009340,0.011499,0.249735,0,0);-webkit-transform:matrix(0.202835,-0.009340,0.011499,0.249735,0,0);}
.m29_c00062{transform:matrix(0.202875,-0.009342,0.011499,0.249735,0,0);-ms-transform:matrix(0.202875,-0.009342,0.011499,0.249735,0,0);-webkit-transform:matrix(0.202875,-0.009342,0.011499,0.249735,0,0);}
.m8b_c00062{transform:matrix(0.203210,-0.009357,0.011499,0.249735,0,0);-ms-transform:matrix(0.203210,-0.009357,0.011499,0.249735,0,0);-webkit-transform:matrix(0.203210,-0.009357,0.011499,0.249735,0,0);}
.mac_c00062{transform:matrix(0.203265,-0.009360,0.011499,0.249735,0,0);-ms-transform:matrix(0.203265,-0.009360,0.011499,0.249735,0,0);-webkit-transform:matrix(0.203265,-0.009360,0.011499,0.249735,0,0);}
.m11_c00062{transform:matrix(0.203394,-0.009366,0.011499,0.249735,0,0);-ms-transform:matrix(0.203394,-0.009366,0.011499,0.249735,0,0);-webkit-transform:matrix(0.203394,-0.009366,0.011499,0.249735,0,0);}
.m4b_c00062{transform:matrix(0.204928,-0.009436,0.011499,0.249735,0,0);-ms-transform:matrix(0.204928,-0.009436,0.011499,0.249735,0,0);-webkit-transform:matrix(0.204928,-0.009436,0.011499,0.249735,0,0);}
.m100_c00062{transform:matrix(0.205322,-0.009454,0.011499,0.249735,0,0);-ms-transform:matrix(0.205322,-0.009454,0.011499,0.249735,0,0);-webkit-transform:matrix(0.205322,-0.009454,0.011499,0.249735,0,0);}
.me1_c00062{transform:matrix(0.205977,-0.009484,0.011499,0.249735,0,0);-ms-transform:matrix(0.205977,-0.009484,0.011499,0.249735,0,0);-webkit-transform:matrix(0.205977,-0.009484,0.011499,0.249735,0,0);}
.mf6_c00062{transform:matrix(0.206386,-0.009503,0.011499,0.249735,0,0);-ms-transform:matrix(0.206386,-0.009503,0.011499,0.249735,0,0);-webkit-transform:matrix(0.206386,-0.009503,0.011499,0.249735,0,0);}
.m52_c00062{transform:matrix(0.206631,-0.009515,0.011499,0.249735,0,0);-ms-transform:matrix(0.206631,-0.009515,0.011499,0.249735,0,0);-webkit-transform:matrix(0.206631,-0.009515,0.011499,0.249735,0,0);}
.mb2_c00062{transform:matrix(0.207046,-0.009534,0.011499,0.249735,0,0);-ms-transform:matrix(0.207046,-0.009534,0.011499,0.249735,0,0);-webkit-transform:matrix(0.207046,-0.009534,0.011499,0.249735,0,0);}
.m58_c00062{transform:matrix(0.207635,-0.009561,0.011499,0.249735,0,0);-ms-transform:matrix(0.207635,-0.009561,0.011499,0.249735,0,0);-webkit-transform:matrix(0.207635,-0.009561,0.011499,0.249735,0,0);}
.mab_c00062{transform:matrix(0.207710,-0.009564,0.011499,0.249735,0,0);-ms-transform:matrix(0.207710,-0.009564,0.011499,0.249735,0,0);-webkit-transform:matrix(0.207710,-0.009564,0.011499,0.249735,0,0);}
.m5a_c00062{transform:matrix(0.208070,-0.009581,0.011499,0.249735,0,0);-ms-transform:matrix(0.208070,-0.009581,0.011499,0.249735,0,0);-webkit-transform:matrix(0.208070,-0.009581,0.011499,0.249735,0,0);}
.m54_c00062{transform:matrix(0.208424,-0.009597,0.011499,0.249735,0,0);-ms-transform:matrix(0.208424,-0.009597,0.011499,0.249735,0,0);-webkit-transform:matrix(0.208424,-0.009597,0.011499,0.249735,0,0);}
.m63_c00062{transform:matrix(0.208444,-0.009598,0.011499,0.249735,0,0);-ms-transform:matrix(0.208444,-0.009598,0.011499,0.249735,0,0);-webkit-transform:matrix(0.208444,-0.009598,0.011499,0.249735,0,0);}
.m66_c00062{transform:matrix(0.208699,-0.009610,0.011499,0.249735,0,0);-ms-transform:matrix(0.208699,-0.009610,0.011499,0.249735,0,0);-webkit-transform:matrix(0.208699,-0.009610,0.011499,0.249735,0,0);}
.m45_c00062{transform:matrix(0.209123,-0.009629,0.011499,0.249735,0,0);-ms-transform:matrix(0.209123,-0.009629,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209123,-0.009629,0.011499,0.249735,0,0);}
.m86_c00062{transform:matrix(0.209148,-0.009630,0.011499,0.249735,0,0);-ms-transform:matrix(0.209148,-0.009630,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209148,-0.009630,0.011499,0.249735,0,0);}
.mee_c00062{transform:matrix(0.209713,-0.009656,0.011499,0.249735,0,0);-ms-transform:matrix(0.209713,-0.009656,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209713,-0.009656,0.011499,0.249735,0,0);}
.m4d_c00062{transform:matrix(0.209723,-0.009657,0.011499,0.249735,0,0);-ms-transform:matrix(0.209723,-0.009657,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209723,-0.009657,0.011499,0.249735,0,0);}
.mbd_c00062{transform:matrix(0.209778,-0.009659,0.011499,0.249735,0,0);-ms-transform:matrix(0.209778,-0.009659,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209778,-0.009659,0.011499,0.249735,0,0);}
.m2b_c00062{transform:matrix(0.209843,-0.009662,0.011499,0.249735,0,0);-ms-transform:matrix(0.209843,-0.009662,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209843,-0.009662,0.011499,0.249735,0,0);}
.m4e_c00062{transform:matrix(0.210132,-0.009676,0.011499,0.249735,0,0);-ms-transform:matrix(0.210132,-0.009676,0.011499,0.249735,0,0);-webkit-transform:matrix(0.210132,-0.009676,0.011499,0.249735,0,0);}
.m38_c00062{transform:matrix(0.210327,-0.009685,0.011499,0.249735,0,0);-ms-transform:matrix(0.210327,-0.009685,0.011499,0.249735,0,0);-webkit-transform:matrix(0.210327,-0.009685,0.011499,0.249735,0,0);}
.mf2_c00062{transform:matrix(0.210407,-0.009688,0.011499,0.249735,0,0);-ms-transform:matrix(0.210407,-0.009688,0.011499,0.249735,0,0);-webkit-transform:matrix(0.210407,-0.009688,0.011499,0.249735,0,0);}
.mbe_c00062{transform:matrix(0.210762,-0.009705,0.011499,0.249735,0,0);-ms-transform:matrix(0.210762,-0.009705,0.011499,0.249735,0,0);-webkit-transform:matrix(0.210762,-0.009705,0.011499,0.249735,0,0);}
.m90_c00062{transform:matrix(0.211336,-0.009731,0.011499,0.249735,0,0);-ms-transform:matrix(0.211336,-0.009731,0.011499,0.249735,0,0);-webkit-transform:matrix(0.211336,-0.009731,0.011499,0.249735,0,0);}
.m1b_c00062{transform:matrix(0.211731,-0.009749,0.011499,0.249735,0,0);-ms-transform:matrix(0.211731,-0.009749,0.011499,0.249735,0,0);-webkit-transform:matrix(0.211731,-0.009749,0.011499,0.249735,0,0);}
.m18_c00062{transform:matrix(0.211915,-0.009758,0.011499,0.249735,0,0);-ms-transform:matrix(0.211915,-0.009758,0.011499,0.249735,0,0);-webkit-transform:matrix(0.211915,-0.009758,0.011499,0.249735,0,0);}
.m47_c00062{transform:matrix(0.212085,-0.009766,0.011499,0.249735,0,0);-ms-transform:matrix(0.212085,-0.009766,0.011499,0.249735,0,0);-webkit-transform:matrix(0.212085,-0.009766,0.011499,0.249735,0,0);}
.mbc_c00062{transform:matrix(0.212355,-0.009778,0.011499,0.249735,0,0);-ms-transform:matrix(0.212355,-0.009778,0.011499,0.249735,0,0);-webkit-transform:matrix(0.212355,-0.009778,0.011499,0.249735,0,0);}
.m73_c00062{transform:matrix(0.212655,-0.009792,0.011499,0.249735,0,0);-ms-transform:matrix(0.212655,-0.009792,0.011499,0.249735,0,0);-webkit-transform:matrix(0.212655,-0.009792,0.011499,0.249735,0,0);}
.m8_c00062{transform:matrix(0.212904,-0.009803,0.011499,0.249735,0,0);-ms-transform:matrix(0.212904,-0.009803,0.011499,0.249735,0,0);-webkit-transform:matrix(0.212904,-0.009803,0.011499,0.249735,0,0);}
.m3e_c00062{transform:matrix(0.212914,-0.009804,0.011499,0.249735,0,0);-ms-transform:matrix(0.212914,-0.009804,0.011499,0.249735,0,0);-webkit-transform:matrix(0.212914,-0.009804,0.011499,0.249735,0,0);}
.mae_c00062{transform:matrix(0.213719,-0.009841,0.011499,0.249735,0,0);-ms-transform:matrix(0.213719,-0.009841,0.011499,0.249735,0,0);-webkit-transform:matrix(0.213719,-0.009841,0.011499,0.249735,0,0);}
.m9a_c00062{transform:matrix(0.213878,-0.009848,0.011499,0.249735,0,0);-ms-transform:matrix(0.213878,-0.009848,0.011499,0.249735,0,0);-webkit-transform:matrix(0.213878,-0.009848,0.011499,0.249735,0,0);}
.mf9_c00062{transform:matrix(0.214343,-0.009870,0.011499,0.249735,0,0);-ms-transform:matrix(0.214343,-0.009870,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214343,-0.009870,0.011499,0.249735,0,0);}
.m8c_c00062{transform:matrix(0.214348,-0.009870,0.011499,0.249735,0,0);-ms-transform:matrix(0.214348,-0.009870,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214348,-0.009870,0.011499,0.249735,0,0);}
.mf8_c00062{transform:matrix(0.214363,-0.009871,0.011499,0.249735,0,0);-ms-transform:matrix(0.214363,-0.009871,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214363,-0.009871,0.011499,0.249735,0,0);}
.mcb_c00062{transform:matrix(0.214378,-0.009871,0.011499,0.249735,0,0);-ms-transform:matrix(0.214378,-0.009871,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214378,-0.009871,0.011499,0.249735,0,0);}
.m5d_c00062{transform:matrix(0.214398,-0.009872,0.011499,0.249735,0,0);-ms-transform:matrix(0.214398,-0.009872,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214398,-0.009872,0.011499,0.249735,0,0);}
.m61_c00062{transform:matrix(0.214453,-0.009875,0.011499,0.249735,0,0);-ms-transform:matrix(0.214453,-0.009875,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214453,-0.009875,0.011499,0.249735,0,0);}
.m22_c00062{transform:matrix(0.214742,-0.009888,0.011499,0.249735,0,0);-ms-transform:matrix(0.214742,-0.009888,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214742,-0.009888,0.011499,0.249735,0,0);}
.m96_c00062{transform:matrix(0.214962,-0.009898,0.011499,0.249735,0,0);-ms-transform:matrix(0.214962,-0.009898,0.011499,0.249735,0,0);-webkit-transform:matrix(0.214962,-0.009898,0.011499,0.249735,0,0);}
.mfb_c00062{transform:matrix(0.215057,-0.009903,0.011499,0.249735,0,0);-ms-transform:matrix(0.215057,-0.009903,0.011499,0.249735,0,0);-webkit-transform:matrix(0.215057,-0.009903,0.011499,0.249735,0,0);}
.mec_c00062{transform:matrix(0.215287,-0.009913,0.011499,0.249735,0,0);-ms-transform:matrix(0.215287,-0.009913,0.011499,0.249735,0,0);-webkit-transform:matrix(0.215287,-0.009913,0.011499,0.249735,0,0);}
.m6_c00062{transform:matrix(0.215826,-0.009938,0.011499,0.249735,0,0);-ms-transform:matrix(0.215826,-0.009938,0.011499,0.249735,0,0);-webkit-transform:matrix(0.215826,-0.009938,0.011499,0.249735,0,0);}
.me9_c00062{transform:matrix(0.216411,-0.009965,0.011499,0.249735,0,0);-ms-transform:matrix(0.216411,-0.009965,0.011499,0.249735,0,0);-webkit-transform:matrix(0.216411,-0.009965,0.011499,0.249735,0,0);}
.m43_c00062{transform:matrix(0.216466,-0.009967,0.011499,0.249735,0,0);-ms-transform:matrix(0.216466,-0.009967,0.011499,0.249735,0,0);-webkit-transform:matrix(0.216466,-0.009967,0.011499,0.249735,0,0);}
.me7_c00062{transform:matrix(0.216885,-0.009987,0.011499,0.249735,0,0);-ms-transform:matrix(0.216885,-0.009987,0.011499,0.249735,0,0);-webkit-transform:matrix(0.216885,-0.009987,0.011499,0.249735,0,0);}
.m2a_c00062{transform:matrix(0.216930,-0.009989,0.011499,0.249735,0,0);-ms-transform:matrix(0.216930,-0.009989,0.011499,0.249735,0,0);-webkit-transform:matrix(0.216930,-0.009989,0.011499,0.249735,0,0);}
.mc0_c00062{transform:matrix(0.217325,-0.010007,0.011499,0.249735,0,0);-ms-transform:matrix(0.217325,-0.010007,0.011499,0.249735,0,0);-webkit-transform:matrix(0.217325,-0.010007,0.011499,0.249735,0,0);}
.mc4_c00062{transform:matrix(0.217355,-0.010008,0.011499,0.249735,0,0);-ms-transform:matrix(0.217355,-0.010008,0.011499,0.249735,0,0);-webkit-transform:matrix(0.217355,-0.010008,0.011499,0.249735,0,0);}
.m23_c00062{transform:matrix(0.217480,-0.010014,0.011499,0.249735,0,0);-ms-transform:matrix(0.217480,-0.010014,0.011499,0.249735,0,0);-webkit-transform:matrix(0.217480,-0.010014,0.011499,0.249735,0,0);}
.m46_c00062{transform:matrix(0.217919,-0.010034,0.011499,0.249735,0,0);-ms-transform:matrix(0.217919,-0.010034,0.011499,0.249735,0,0);-webkit-transform:matrix(0.217919,-0.010034,0.011499,0.249735,0,0);}
.m9d_c00062{transform:matrix(0.218174,-0.010046,0.011499,0.249735,0,0);-ms-transform:matrix(0.218174,-0.010046,0.011499,0.249735,0,0);-webkit-transform:matrix(0.218174,-0.010046,0.011499,0.249735,0,0);}
.m6d_c00062{transform:matrix(0.218244,-0.010049,0.011499,0.249735,0,0);-ms-transform:matrix(0.218244,-0.010049,0.011499,0.249735,0,0);-webkit-transform:matrix(0.218244,-0.010049,0.011499,0.249735,0,0);}
.mf1_c00062{transform:matrix(0.218773,-0.010074,0.011499,0.249735,0,0);-ms-transform:matrix(0.218773,-0.010074,0.011499,0.249735,0,0);-webkit-transform:matrix(0.218773,-0.010074,0.011499,0.249735,0,0);}
.m70_c00062{transform:matrix(0.218948,-0.010082,0.011499,0.249735,0,0);-ms-transform:matrix(0.218948,-0.010082,0.011499,0.249735,0,0);-webkit-transform:matrix(0.218948,-0.010082,0.011499,0.249735,0,0);}
.mbb_c00062{transform:matrix(0.219452,-0.010105,0.011499,0.249735,0,0);-ms-transform:matrix(0.219452,-0.010105,0.011499,0.249735,0,0);-webkit-transform:matrix(0.219452,-0.010105,0.011499,0.249735,0,0);}
.mc7_c00062{transform:matrix(0.219822,-0.010122,0.011499,0.249735,0,0);-ms-transform:matrix(0.219822,-0.010122,0.011499,0.249735,0,0);-webkit-transform:matrix(0.219822,-0.010122,0.011499,0.249735,0,0);}
.mca_c00062{transform:matrix(0.220037,-0.010132,0.011499,0.249735,0,0);-ms-transform:matrix(0.220037,-0.010132,0.011499,0.249735,0,0);-webkit-transform:matrix(0.220037,-0.010132,0.011499,0.249735,0,0);}
.m35_c00062{transform:matrix(0.220386,-0.010148,0.011499,0.249735,0,0);-ms-transform:matrix(0.220386,-0.010148,0.011499,0.249735,0,0);-webkit-transform:matrix(0.220386,-0.010148,0.011499,0.249735,0,0);}
.mb9_c00062{transform:matrix(0.220866,-0.010170,0.011499,0.249735,0,0);-ms-transform:matrix(0.220866,-0.010170,0.011499,0.249735,0,0);-webkit-transform:matrix(0.220866,-0.010170,0.011499,0.249735,0,0);}
.maf_c00062{transform:matrix(0.221276,-0.010189,0.011499,0.249735,0,0);-ms-transform:matrix(0.221276,-0.010189,0.011499,0.249735,0,0);-webkit-transform:matrix(0.221276,-0.010189,0.011499,0.249735,0,0);}
.m65_c00062{transform:matrix(0.221800,-0.010213,0.011499,0.249735,0,0);-ms-transform:matrix(0.221800,-0.010213,0.011499,0.249735,0,0);-webkit-transform:matrix(0.221800,-0.010213,0.011499,0.249735,0,0);}
.m6f_c00062{transform:matrix(0.222250,-0.010234,0.011499,0.249735,0,0);-ms-transform:matrix(0.222250,-0.010234,0.011499,0.249735,0,0);-webkit-transform:matrix(0.222250,-0.010234,0.011499,0.249735,0,0);}
.me0_c00062{transform:matrix(0.222579,-0.010249,0.011499,0.249735,0,0);-ms-transform:matrix(0.222579,-0.010249,0.011499,0.249735,0,0);-webkit-transform:matrix(0.222579,-0.010249,0.011499,0.249735,0,0);}
.mb0_c00062{transform:matrix(0.222619,-0.010251,0.011499,0.249735,0,0);-ms-transform:matrix(0.222619,-0.010251,0.011499,0.249735,0,0);-webkit-transform:matrix(0.222619,-0.010251,0.011499,0.249735,0,0);}
.med_c00062{transform:matrix(0.222714,-0.010255,0.011499,0.249735,0,0);-ms-transform:matrix(0.222714,-0.010255,0.011499,0.249735,0,0);-webkit-transform:matrix(0.222714,-0.010255,0.011499,0.249735,0,0);}
.m4c_c00062{transform:matrix(0.223323,-0.010283,0.011499,0.249735,0,0);-ms-transform:matrix(0.223323,-0.010283,0.011499,0.249735,0,0);-webkit-transform:matrix(0.223323,-0.010283,0.011499,0.249735,0,0);}
.m74_c00062{transform:matrix(0.223433,-0.010288,0.011499,0.249735,0,0);-ms-transform:matrix(0.223433,-0.010288,0.011499,0.249735,0,0);-webkit-transform:matrix(0.223433,-0.010288,0.011499,0.249735,0,0);}
.mc1_c00062{transform:matrix(0.223743,-0.010302,0.011499,0.249735,0,0);-ms-transform:matrix(0.223743,-0.010302,0.011499,0.249735,0,0);-webkit-transform:matrix(0.223743,-0.010302,0.011499,0.249735,0,0);}
.mfa_c00062{transform:matrix(0.223883,-0.010309,0.011499,0.249735,0,0);-ms-transform:matrix(0.223883,-0.010309,0.011499,0.249735,0,0);-webkit-transform:matrix(0.223883,-0.010309,0.011499,0.249735,0,0);}
.mfc_c00062{transform:matrix(0.224757,-0.010349,0.011499,0.249735,0,0);-ms-transform:matrix(0.224757,-0.010349,0.011499,0.249735,0,0);-webkit-transform:matrix(0.224757,-0.010349,0.011499,0.249735,0,0);}
.m15_c00062{transform:matrix(0.224867,-0.010354,0.011499,0.249735,0,0);-ms-transform:matrix(0.224867,-0.010354,0.011499,0.249735,0,0);-webkit-transform:matrix(0.224867,-0.010354,0.011499,0.249735,0,0);}
.mba_c00062{transform:matrix(0.225166,-0.010368,0.011499,0.249735,0,0);-ms-transform:matrix(0.225166,-0.010368,0.011499,0.249735,0,0);-webkit-transform:matrix(0.225166,-0.010368,0.011499,0.249735,0,0);}
.ma7_c00062{transform:matrix(0.225241,-0.010371,0.011499,0.249735,0,0);-ms-transform:matrix(0.225241,-0.010371,0.011499,0.249735,0,0);-webkit-transform:matrix(0.225241,-0.010371,0.011499,0.249735,0,0);}
.ma8_c00062{transform:matrix(0.226925,-0.010449,0.011499,0.249735,0,0);-ms-transform:matrix(0.226925,-0.010449,0.011499,0.249735,0,0);-webkit-transform:matrix(0.226925,-0.010449,0.011499,0.249735,0,0);}
.ma9_c00062{transform:matrix(0.226965,-0.010451,0.011499,0.249735,0,0);-ms-transform:matrix(0.226965,-0.010451,0.011499,0.249735,0,0);-webkit-transform:matrix(0.226965,-0.010451,0.011499,0.249735,0,0);}
.m4_c00062{transform:matrix(0.228153,-0.010506,0.011499,0.249735,0,0);-ms-transform:matrix(0.228153,-0.010506,0.011499,0.249735,0,0);-webkit-transform:matrix(0.228153,-0.010506,0.011499,0.249735,0,0);}
.m42_c00062{transform:matrix(0.230491,-0.010613,0.011499,0.249735,0,0);-ms-transform:matrix(0.230491,-0.010613,0.011499,0.249735,0,0);-webkit-transform:matrix(0.230491,-0.010613,0.011499,0.249735,0,0);}
.m2_c00062{transform:matrix(0.230636,-0.010620,0.011499,0.249735,0,0);-ms-transform:matrix(0.230636,-0.010620,0.011499,0.249735,0,0);-webkit-transform:matrix(0.230636,-0.010620,0.011499,0.249735,0,0);}
.m5_c00062{transform:matrix(0.231899,-0.010678,0.011499,0.249735,0,0);-ms-transform:matrix(0.231899,-0.010678,0.011499,0.249735,0,0);-webkit-transform:matrix(0.231899,-0.010678,0.011499,0.249735,0,0);}
.mc5_c00062{transform:matrix(0.233538,-0.010753,0.011499,0.249735,0,0);-ms-transform:matrix(0.233538,-0.010753,0.011499,0.249735,0,0);-webkit-transform:matrix(0.233538,-0.010753,0.011499,0.249735,0,0);}
.me5_c00062{transform:matrix(0.233667,-0.010759,0.011499,0.249735,0,0);-ms-transform:matrix(0.233667,-0.010759,0.011499,0.249735,0,0);-webkit-transform:matrix(0.233667,-0.010759,0.011499,0.249735,0,0);}
.m88_c00062{transform:matrix(0.235176,-0.010829,0.011499,0.249735,0,0);-ms-transform:matrix(0.235176,-0.010829,0.011499,0.249735,0,0);-webkit-transform:matrix(0.235176,-0.010829,0.011499,0.249735,0,0);}
.m4a_c00062{transform:matrix(0.237538,-0.010938,0.011499,0.249735,0,0);-ms-transform:matrix(0.237538,-0.010938,0.011499,0.249735,0,0);-webkit-transform:matrix(0.237538,-0.010938,0.011499,0.249735,0,0);}
.m81_c00062{transform:matrix(0.239436,-0.011025,0.011499,0.249735,0,0);-ms-transform:matrix(0.239436,-0.011025,0.011499,0.249735,0,0);-webkit-transform:matrix(0.239436,-0.011025,0.011499,0.249735,0,0);}
.mf5_c00062{transform:matrix(0.239496,-0.011028,0.011499,0.249735,0,0);-ms-transform:matrix(0.239496,-0.011028,0.011499,0.249735,0,0);-webkit-transform:matrix(0.239496,-0.011028,0.011499,0.249735,0,0);}
.m41_c00062{transform:matrix(0.239991,-0.011051,0.011499,0.249735,0,0);-ms-transform:matrix(0.239991,-0.011051,0.011499,0.249735,0,0);-webkit-transform:matrix(0.239991,-0.011051,0.011499,0.249735,0,0);}
.mb1_c00062{transform:matrix(0.242913,-0.011185,0.011499,0.249735,0,0);-ms-transform:matrix(0.242913,-0.011185,0.011499,0.249735,0,0);-webkit-transform:matrix(0.242913,-0.011185,0.011499,0.249735,0,0);}
.m6c_c00062{transform:matrix(0.244381,-0.011253,0.011499,0.249735,0,0);-ms-transform:matrix(0.244381,-0.011253,0.011499,0.249735,0,0);-webkit-transform:matrix(0.244381,-0.011253,0.011499,0.249735,0,0);}
.mad_c00062{transform:matrix(0.246084,-0.011331,0.011499,0.249735,0,0);-ms-transform:matrix(0.246084,-0.011331,0.011499,0.249735,0,0);-webkit-transform:matrix(0.246084,-0.011331,0.011499,0.249735,0,0);}
.mb5_c00062{transform:matrix(0.261773,-0.012054,0.011499,0.249735,0,0);-ms-transform:matrix(0.261773,-0.012054,0.011499,0.249735,0,0);-webkit-transform:matrix(0.261773,-0.012054,0.011499,0.249735,0,0);}
.m79_c00062{transform:matrix(0.263845,-0.012149,0.011499,0.249735,0,0);-ms-transform:matrix(0.263845,-0.012149,0.011499,0.249735,0,0);-webkit-transform:matrix(0.263845,-0.012149,0.011499,0.249735,0,0);}
.m78_c00062{transform:matrix(0.360533,-0.016601,0.011499,0.249735,0,0);-ms-transform:matrix(0.360533,-0.016601,0.011499,0.249735,0,0);-webkit-transform:matrix(0.360533,-0.016601,0.011499,0.249735,0,0);}
.md4_c00062{transform:matrix(0.396190,-0.018243,0.011499,0.249735,0,0);-ms-transform:matrix(0.396190,-0.018243,0.011499,0.249735,0,0);-webkit-transform:matrix(0.396190,-0.018243,0.011499,0.249735,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
.fc0_c00062{color:transparent;}
.fsb_c00062{font-size:55.653255px;}
.fs9_c00062{font-size:56.703317px;}
.fs7_c00062{font-size:57.753378px;}
.fs1_c00062{font-size:58.803440px;}
.fsc_c00062{font-size:59.853501px;}
.fsd_c00062{font-size:60.903563px;}
.fs8_c00062{font-size:61.953624px;}
.fs5_c00062{font-size:63.003685px;}
.fs3_c00062{font-size:64.053747px;}
.fsa_c00062{font-size:65.103808px;}
.fs4_c00062{font-size:66.153870px;}
.fs6_c00062{font-size:67.203931px;}
.fs2_c00062{font-size:68.253993px;}
.fs0_c00062{font-size:87.150000px;}
.y0_c00062{bottom:0.000000px;}
.yff_c00062{bottom:31.582456px;}
.y100_c00062{bottom:32.864527px;}
.y101_c00062{bottom:33.305851px;}
.y102_c00062{bottom:33.863238px;}
.y103_c00062{bottom:36.623656px;}
.y104_c00062{bottom:37.505683px;}
.yf9_c00062{bottom:50.205831px;}
.yfa_c00062{bottom:51.949516px;}
.yfb_c00062{bottom:54.670332px;}
.yfc_c00062{bottom:55.284897px;}
.yfd_c00062{bottom:56.901340px;}
.yfe_c00062{bottom:57.478137px;}
.yf1_c00062{bottom:67.753576px;}
.yf2_c00062{bottom:69.159448px;}
.yf3_c00062{bottom:69.591691px;}
.yf4_c00062{bottom:70.024122px;}
.yf5_c00062{bottom:71.414688px;}
.yf6_c00062{bottom:71.734861px;}
.yf7_c00062{bottom:73.054614px;}
.yf8_c00062{bottom:74.462920px;}
.ye9_c00062{bottom:85.841848px;}
.yea_c00062{bottom:86.396676px;}
.yeb_c00062{bottom:87.426939px;}
.yec_c00062{bottom:88.820749px;}
.yed_c00062{bottom:90.201628px;}
.yee_c00062{bottom:90.955315px;}
.yef_c00062{bottom:91.955379px;}
.yf0_c00062{bottom:93.397761px;}
.ye1_c00062{bottom:106.899298px;}
.ye2_c00062{bottom:107.767353px;}
.ye3_c00062{bottom:108.118446px;}
.ye4_c00062{bottom:109.072849px;}
.ye5_c00062{bottom:109.833426px;}
.ye6_c00062{bottom:110.477053px;}
.ye7_c00062{bottom:111.267717px;}
.ye8_c00062{bottom:111.910171px;}
.yd6_c00062{bottom:119.325346px;}
.yd7_c00062{bottom:119.849881px;}
.yd8_c00062{bottom:120.334113px;}
.yd9_c00062{bottom:121.137834px;}
.yda_c00062{bottom:122.680114px;}
.ydb_c00062{bottom:123.786391px;}
.ydc_c00062{bottom:124.720918px;}
.ydd_c00062{bottom:126.212674px;}
.yde_c00062{bottom:126.579130px;}
.ydf_c00062{bottom:127.253563px;}
.ye0_c00062{bottom:128.502573px;}
.yce_c00062{bottom:134.448232px;}
.ycf_c00062{bottom:135.080329px;}
.yd0_c00062{bottom:135.513204px;}
.yd1_c00062{bottom:136.436220px;}
.yd2_c00062{bottom:138.575970px;}
.yd3_c00062{bottom:139.238632px;}
.yd4_c00062{bottom:140.906604px;}
.yd5_c00062{bottom:142.057545px;}
.yc7_c00062{bottom:147.701259px;}
.yc8_c00062{bottom:148.590851px;}
.yc9_c00062{bottom:151.510232px;}
.yca_c00062{bottom:154.229327px;}
.ycb_c00062{bottom:154.970540px;}
.ycc_c00062{bottom:157.323099px;}
.ycd_c00062{bottom:158.233962px;}
.ybe_c00062{bottom:170.894451px;}
.ybf_c00062{bottom:172.290489px;}
.yc0_c00062{bottom:173.080851px;}
.yc1_c00062{bottom:173.686823px;}
.yc2_c00062{bottom:175.207838px;}
.yc3_c00062{bottom:175.564496px;}
.yc4_c00062{bottom:176.050379px;}
.yc5_c00062{bottom:177.709578px;}
.yc6_c00062{bottom:178.247640px;}
.yb6_c00062{bottom:186.828371px;}
.yb7_c00062{bottom:187.183110px;}
.yb8_c00062{bottom:187.731462px;}
.yb9_c00062{bottom:188.778501px;}
.yba_c00062{bottom:189.499295px;}
.ybb_c00062{bottom:190.579076px;}
.ybc_c00062{bottom:191.788760px;}
.ybd_c00062{bottom:194.038179px;}
.yad_c00062{bottom:202.219934px;}
.yae_c00062{bottom:203.385810px;}
.yaf_c00062{bottom:203.978940px;}
.yb0_c00062{bottom:204.938939px;}
.yb1_c00062{bottom:207.078396px;}
.yb2_c00062{bottom:208.990439px;}
.yb3_c00062{bottom:209.465012px;}
.yb4_c00062{bottom:211.323680px;}
.yb5_c00062{bottom:211.976571px;}
.ya6_c00062{bottom:218.422818px;}
.ya7_c00062{bottom:218.677095px;}
.ya8_c00062{bottom:220.996796px;}
.ya9_c00062{bottom:222.700236px;}
.yaa_c00062{bottom:224.868969px;}
.yab_c00062{bottom:227.785482px;}
.yac_c00062{bottom:228.455580px;}
.y9b_c00062{bottom:236.782976px;}
.y9c_c00062{bottom:237.289778px;}
.y9d_c00062{bottom:237.856587px;}
.y9e_c00062{bottom:239.266007px;}
.y9f_c00062{bottom:241.371428px;}
.ya0_c00062{bottom:242.369015px;}
.ya1_c00062{bottom:243.527345px;}
.ya2_c00062{bottom:244.101350px;}
.ya3_c00062{bottom:245.104496px;}
.ya4_c00062{bottom:245.782292px;}
.ya5_c00062{bottom:246.416492px;}
.y92_c00062{bottom:253.530414px;}
.y93_c00062{bottom:255.204555px;}
.y94_c00062{bottom:256.840590px;}
.y95_c00062{bottom:257.628959px;}
.y96_c00062{bottom:258.429806px;}
.y97_c00062{bottom:260.126450px;}
.y98_c00062{bottom:260.596871px;}
.y99_c00062{bottom:261.310821px;}
.y9a_c00062{bottom:262.064553px;}
.y89_c00062{bottom:270.811823px;}
.y8a_c00062{bottom:271.740053px;}
.y8b_c00062{bottom:273.149553px;}
.y8c_c00062{bottom:273.899634px;}
.y8d_c00062{bottom:276.092216px;}
.y8e_c00062{bottom:277.466282px;}
.y8f_c00062{bottom:278.155232px;}
.y90_c00062{bottom:279.285809px;}
.y91_c00062{bottom:280.109016px;}
.y81_c00062{bottom:288.632655px;}
.y82_c00062{bottom:289.432443px;}
.y83_c00062{bottom:290.663450px;}
.y84_c00062{bottom:291.417276px;}
.y85_c00062{bottom:292.272104px;}
.y86_c00062{bottom:294.358283px;}
.y87_c00062{bottom:295.747745px;}
.y88_c00062{bottom:297.284012px;}
.y77_c00062{bottom:305.371473px;}
.y78_c00062{bottom:306.267022px;}
.y79_c00062{bottom:307.767267px;}
.y7a_c00062{bottom:308.820279px;}
.y7b_c00062{bottom:309.647787px;}
.y7c_c00062{bottom:310.546944px;}
.y7d_c00062{bottom:312.497664px;}
.y7e_c00062{bottom:313.862654px;}
.y7f_c00062{bottom:314.700600px;}
.y80_c00062{bottom:315.413907px;}
.y6e_c00062{bottom:320.237035px;}
.y6f_c00062{bottom:322.243864px;}
.y70_c00062{bottom:322.981344px;}
.y71_c00062{bottom:325.063264px;}
.y72_c00062{bottom:327.789407px;}
.y73_c00062{bottom:328.612742px;}
.y74_c00062{bottom:329.597526px;}
.y75_c00062{bottom:331.654449px;}
.y76_c00062{bottom:333.095027px;}
.y67_c00062{bottom:336.438053px;}
.y68_c00062{bottom:339.384865px;}
.y69_c00062{bottom:340.568478px;}
.y6a_c00062{bottom:341.346135px;}
.y6b_c00062{bottom:345.471041px;}
.y6c_c00062{bottom:346.640025px;}
.y6d_c00062{bottom:348.418662px;}
.y60_c00062{bottom:352.897654px;}
.y61_c00062{bottom:354.286620px;}
.y62_c00062{bottom:356.184156px;}
.y63_c00062{bottom:357.355973px;}
.y64_c00062{bottom:359.128768px;}
.y65_c00062{bottom:361.724020px;}
.y66_c00062{bottom:362.662177px;}
.y57_c00062{bottom:369.099384px;}
.y58_c00062{bottom:370.497915px;}
.y59_c00062{bottom:372.922050px;}
.y5a_c00062{bottom:374.085996px;}
.y5b_c00062{bottom:374.768904px;}
.y5c_c00062{bottom:377.364628px;}
.y5d_c00062{bottom:378.423913px;}
.y5e_c00062{bottom:380.007923px;}
.y5f_c00062{bottom:380.568811px;}
.y50_c00062{bottom:387.458649px;}
.y51_c00062{bottom:389.707071px;}
.y52_c00062{bottom:390.626666px;}
.y53_c00062{bottom:393.135112px;}
.y54_c00062{bottom:394.325969px;}
.y55_c00062{bottom:395.127964px;}
.y56_c00062{bottom:396.512442px;}
.y49_c00062{bottom:404.477061px;}
.y4a_c00062{bottom:405.953405px;}
.y4b_c00062{bottom:406.880052px;}
.y4c_c00062{bottom:409.385231px;}
.y4d_c00062{bottom:411.321906px;}
.y4e_c00062{bottom:413.648072px;}
.y4f_c00062{bottom:414.501965px;}
.y42_c00062{bottom:419.056722px;}
.y43_c00062{bottom:421.784600px;}
.y44_c00062{bottom:422.380039px;}
.y45_c00062{bottom:424.900655px;}
.y46_c00062{bottom:425.789399px;}
.y47_c00062{bottom:429.387439px;}
.y48_c00062{bottom:429.935192px;}
.y3a_c00062{bottom:437.141903px;}
.y3b_c00062{bottom:437.909655px;}
.y3c_c00062{bottom:438.895356px;}
.y3d_c00062{bottom:440.993272px;}
.y3e_c00062{bottom:442.502933px;}
.y3f_c00062{bottom:445.164315px;}
.y40_c00062{bottom:447.800680px;}
.y41_c00062{bottom:448.944656px;}
.y30_c00062{bottom:452.805134px;}
.y31_c00062{bottom:454.643903px;}
.y32_c00062{bottom:455.844791px;}
.y33_c00062{bottom:456.697172px;}
.y34_c00062{bottom:458.378316px;}
.y35_c00062{bottom:459.861452px;}
.y36_c00062{bottom:461.183582px;}
.y37_c00062{bottom:461.777126px;}
.y38_c00062{bottom:462.780281px;}
.y39_c00062{bottom:463.721434px;}
.y29_c00062{bottom:469.290770px;}
.y2a_c00062{bottom:470.214836px;}
.y2b_c00062{bottom:473.261114px;}
.y2c_c00062{bottom:477.154581px;}
.y2d_c00062{bottom:478.636014px;}
.y2e_c00062{bottom:480.490839px;}
.y2f_c00062{bottom:482.324500px;}
.y21_c00062{bottom:485.764796px;}
.y22_c00062{bottom:488.849235px;}
.y23_c00062{bottom:489.993471px;}
.y24_c00062{bottom:493.527887px;}
.y25_c00062{bottom:494.252606px;}
.y26_c00062{bottom:497.856525px;}
.y27_c00062{bottom:498.646352px;}
.y28_c00062{bottom:499.651560px;}
.y19_c00062{bottom:504.378794px;}
.y1a_c00062{bottom:505.667243px;}
.y1b_c00062{bottom:507.643035px;}
.y1c_c00062{bottom:509.308896px;}
.y1d_c00062{bottom:511.621934px;}
.y1e_c00062{bottom:512.709015px;}
.y1f_c00062{bottom:514.386280px;}
.y20_c00062{bottom:515.605268px;}
.y11_c00062{bottom:520.841573px;}
.y12_c00062{bottom:521.924283px;}
.y13_c00062{bottom:523.578950px;}
.y14_c00062{bottom:525.492990px;}
.y15_c00062{bottom:526.301285px;}
.y16_c00062{bottom:527.489612px;}
.y17_c00062{bottom:530.027889px;}
.y18_c00062{bottom:531.690717px;}
.ya_c00062{bottom:537.591923px;}
.yb_c00062{bottom:538.528782px;}
.yc_c00062{bottom:539.894727px;}
.yd_c00062{bottom:541.543371px;}
.ye_c00062{bottom:543.646532px;}
.yf_c00062{bottom:546.901828px;}
.y10_c00062{bottom:547.578384px;}
.y2_c00062{bottom:554.328000px;}
.y3_c00062{bottom:555.692337px;}
.y4_c00062{bottom:558.451095px;}
.y5_c00062{bottom:559.752849px;}
.y6_c00062{bottom:560.393031px;}
.y7_c00062{bottom:563.366655px;}
.y8_c00062{bottom:564.993813px;}
.y9_c00062{bottom:565.878117px;}
.y1_c00062{bottom:572.538000px;}
.hd_c00062{height:55.653255px;}
.hb_c00062{height:56.703317px;}
.h9_c00062{height:57.753378px;}
.h3_c00062{height:58.803440px;}
.he_c00062{height:59.853501px;}
.hf_c00062{height:60.903563px;}
.ha_c00062{height:61.953624px;}
.h7_c00062{height:63.003685px;}
.h5_c00062{height:64.053747px;}
.hc_c00062{height:65.103808px;}
.h6_c00062{height:66.153870px;}
.h8_c00062{height:67.203931px;}
.h4_c00062{height:68.253993px;}
.h2_c00062{height:87.150000px;}
.h1_c00062{height:612.000000px;}
.h0_c00062{height:612.300000px;}
.w1_c00062{width:375.750000px;}
.w0_c00062{width:376.050000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:19.014000px;}
.x10_c00062{left:20.567931px;}
.x17_c00062{left:21.581262px;}
.x26_c00062{left:22.819255px;}
.x2d_c00062{left:23.846828px;}
.x3a_c00062{left:26.580543px;}
.x4d_c00062{left:27.840783px;}
.x58_c00062{left:29.306552px;}
.x61_c00062{left:30.436328px;}
.x77_c00062{left:33.502824px;}
.x84_c00062{left:34.789461px;}
.x80_c00062{left:38.984117px;}
.xa_c00062{left:42.265148px;}
.x67_c00062{left:44.981555px;}
.x3_c00062{left:48.643840px;}
.x7c_c00062{left:49.814055px;}
.x53_c00062{left:52.530404px;}
.x18_c00062{left:53.737414px;}
.x5c_c00062{left:57.413412px;}
.x35_c00062{left:59.880075px;}
.x40_c00062{left:62.045756px;}
.x6f_c00062{left:63.166264px;}
.x27_c00062{left:64.578822px;}
.x72_c00062{left:65.626027px;}
.x4e_c00062{left:72.402249px;}
.xb_c00062{left:74.734586px;}
.x62_c00062{left:78.208682px;}
.x70_c00062{left:79.634877px;}
.x1f_c00062{left:81.050958px;}
.x89_c00062{left:84.723104px;}
.x81_c00062{left:87.089418px;}
.x4f_c00062{left:88.777118px;}
.x11_c00062{left:90.648297px;}
.x28_c00062{left:91.833027px;}
.x54_c00062{left:93.036641px;}
.x3b_c00062{left:96.738986px;}
.x5d_c00062{left:98.818827px;}
.x68_c00062{left:101.401673px;}
.x19_c00062{left:103.071138px;}
.x31_c00062{left:105.761282px;}
.x47_c00062{left:107.447319px;}
.x4_c00062{left:108.556867px;}
.x29_c00062{left:111.192444px;}
.xc_c00062{left:113.930534px;}
.x2e_c00062{left:115.445990px;}
.x49_c00062{left:118.182546px;}
.x78_c00062{left:119.974209px;}
.x55_c00062{left:121.449441px;}
.x41_c00062{left:122.583872px;}
.x3c_c00062{left:125.417720px;}
.x76_c00062{left:130.406357px;}
.x73_c00062{left:133.533060px;}
.x4a_c00062{left:135.462578px;}
.x5_c00062{left:136.827568px;}
.x7d_c00062{left:138.152042px;}
.x12_c00062{left:139.684529px;}
.x36_c00062{left:141.519911px;}
.x1a_c00062{left:144.662970px;}
.x63_c00062{left:147.394944px;}
.x2a_c00062{left:149.365755px;}
.x6_c00062{left:150.730652px;}
.x1_c00062{left:154.170000px;}
.x13_c00062{left:160.401990px;}
.x69_c00062{left:161.475429px;}
.xd_c00062{left:163.943157px;}
.x71_c00062{left:165.601332px;}
.x32_c00062{left:167.155416px;}
.x42_c00062{left:168.693425px;}
.x20_c00062{left:170.951172px;}
.x7e_c00062{left:172.678720px;}
.x74_c00062{left:174.985192px;}
.x48_c00062{left:179.191011px;}
.x79_c00062{left:181.700085px;}
.x24_c00062{left:182.876074px;}
.x21_c00062{left:184.863878px;}
.x37_c00062{left:187.590789px;}
.x33_c00062{left:188.804718px;}
.x14_c00062{left:190.840329px;}
.x6e_c00062{left:193.815573px;}
.x50_c00062{left:195.511181px;}
.x59_c00062{left:197.516072px;}
.x1b_c00062{left:202.429600px;}
.x3d_c00062{left:203.701778px;}
.x88_c00062{left:206.566035px;}
.x86_c00062{left:207.891639px;}
.x25_c00062{left:213.092184px;}
.x7_c00062{left:215.310007px;}
.x85_c00062{left:217.066349px;}
.x64_c00062{left:218.657664px;}
.x56_c00062{left:220.749707px;}
.x6a_c00062{left:222.971952px;}
.x2b_c00062{left:226.538119px;}
.x1c_c00062{left:229.592939px;}
.x65_c00062{left:232.070007px;}
.x43_c00062{left:233.512430px;}
.x51_c00062{left:235.659357px;}
.x82_c00062{left:237.219462px;}
.x5a_c00062{left:238.323240px;}
.x6b_c00062{left:239.351345px;}
.xe_c00062{left:241.357893px;}
.x38_c00062{left:242.903075px;}
.x5e_c00062{left:245.848806px;}
.x2c_c00062{left:249.302405px;}
.x8_c00062{left:250.647634px;}
.x7a_c00062{left:251.921717px;}
.x4b_c00062{left:252.975834px;}
.x22_c00062{left:254.097942px;}
.x15_c00062{left:255.846686px;}
.xf_c00062{left:257.453252px;}
.x44_c00062{left:259.974263px;}
.x39_c00062{left:263.208479px;}
.x3e_c00062{left:265.896581px;}
.x6c_c00062{left:267.985686px;}
.x9_c00062{left:269.852410px;}
.x1d_c00062{left:271.465059px;}
.x7b_c00062{left:272.616435px;}
.x66_c00062{left:273.956283px;}
.x2f_c00062{left:277.373738px;}
.x5f_c00062{left:279.076917px;}
.x57_c00062{left:280.201784px;}
.x52_c00062{left:281.308734px;}
.x5b_c00062{left:283.427456px;}
.x6d_c00062{left:287.336623px;}
.x23_c00062{left:288.580893px;}
.x34_c00062{left:289.798331px;}
.x4c_c00062{left:292.451115px;}
.x16_c00062{left:298.416249px;}
.x45_c00062{left:299.527583px;}
.x1e_c00062{left:301.917003px;}
.x60_c00062{left:303.249051px;}
.x30_c00062{left:304.565991px;}
.x75_c00062{left:307.799428px;}
.x3f_c00062{left:309.106662px;}
.x46_c00062{left:313.534929px;}
.x83_c00062{left:316.674788px;}
.x7f_c00062{left:319.813632px;}
.x87_c00062{left:326.231834px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
.fsb_c00062{font-size:49.469560pt;}
.fs9_c00062{font-size:50.402948pt;}
.fs7_c00062{font-size:51.336336pt;}
.fs1_c00062{font-size:52.269724pt;}
.fsc_c00062{font-size:53.203112pt;}
.fsd_c00062{font-size:54.136500pt;}
.fs8_c00062{font-size:55.069888pt;}
.fs5_c00062{font-size:56.003276pt;}
.fs3_c00062{font-size:56.936664pt;}
.fsa_c00062{font-size:57.870052pt;}
.fs4_c00062{font-size:58.803440pt;}
.fs6_c00062{font-size:59.736828pt;}
.fs2_c00062{font-size:60.670216pt;}
.fs0_c00062{font-size:77.466667pt;}
.y0_c00062{bottom:0.000000pt;}
.yff_c00062{bottom:28.073295pt;}
.y100_c00062{bottom:29.212913pt;}
.y101_c00062{bottom:29.605201pt;}
.y102_c00062{bottom:30.100656pt;}
.y103_c00062{bottom:32.554361pt;}
.y104_c00062{bottom:33.338385pt;}
.yf9_c00062{bottom:44.627405pt;}
.yfa_c00062{bottom:46.177348pt;}
.yfb_c00062{bottom:48.595851pt;}
.yfc_c00062{bottom:49.142131pt;}
.yfd_c00062{bottom:50.578969pt;}
.yfe_c00062{bottom:51.091677pt;}
.yf1_c00062{bottom:60.225401pt;}
.yf2_c00062{bottom:61.475065pt;}
.yf3_c00062{bottom:61.859281pt;}
.yf4_c00062{bottom:62.243664pt;}
.yf5_c00062{bottom:63.479723pt;}
.yf6_c00062{bottom:63.764321pt;}
.yf7_c00062{bottom:64.937435pt;}
.yf8_c00062{bottom:66.189263pt;}
.ye9_c00062{bottom:76.303865pt;}
.yea_c00062{bottom:76.797045pt;}
.yeb_c00062{bottom:77.712835pt;}
.yec_c00062{bottom:78.951777pt;}
.yed_c00062{bottom:80.179225pt;}
.yee_c00062{bottom:80.849169pt;}
.yef_c00062{bottom:81.738115pt;}
.yf0_c00062{bottom:83.020232pt;}
.ye1_c00062{bottom:95.021599pt;}
.ye2_c00062{bottom:95.793203pt;}
.ye3_c00062{bottom:96.105285pt;}
.ye4_c00062{bottom:96.953644pt;}
.ye5_c00062{bottom:97.629712pt;}
.ye6_c00062{bottom:98.201825pt;}
.ye7_c00062{bottom:98.904637pt;}
.ye8_c00062{bottom:99.475708pt;}
.yd6_c00062{bottom:106.066975pt;}
.yd7_c00062{bottom:106.533228pt;}
.yd8_c00062{bottom:106.963656pt;}
.yd9_c00062{bottom:107.678075pt;}
.yda_c00062{bottom:109.048991pt;}
.ydb_c00062{bottom:110.032348pt;}
.ydc_c00062{bottom:110.863039pt;}
.ydd_c00062{bottom:112.189044pt;}
.yde_c00062{bottom:112.514783pt;}
.ydf_c00062{bottom:113.114279pt;}
.ye0_c00062{bottom:114.224509pt;}
.yce_c00062{bottom:119.509540pt;}
.ycf_c00062{bottom:120.071404pt;}
.yd0_c00062{bottom:120.456181pt;}
.yd1_c00062{bottom:121.276640pt;}
.yd2_c00062{bottom:123.178640pt;}
.yd3_c00062{bottom:123.767673pt;}
.yd4_c00062{bottom:125.250315pt;}
.yd5_c00062{bottom:126.273373pt;}
.yc7_c00062{bottom:131.290008pt;}
.yc8_c00062{bottom:132.080756pt;}
.yc9_c00062{bottom:134.675761pt;}
.yca_c00062{bottom:137.092735pt;}
.ycb_c00062{bottom:137.751591pt;}
.ycc_c00062{bottom:139.842755pt;}
.ycd_c00062{bottom:140.652411pt;}
.ybe_c00062{bottom:151.906179pt;}
.ybf_c00062{bottom:153.147101pt;}
.yc0_c00062{bottom:153.849645pt;}
.yc1_c00062{bottom:154.388287pt;}
.yc2_c00062{bottom:155.740300pt;}
.yc3_c00062{bottom:156.057329pt;}
.yc4_c00062{bottom:156.489225pt;}
.yc5_c00062{bottom:157.964069pt;}
.yc6_c00062{bottom:158.442347pt;}
.yb6_c00062{bottom:166.069663pt;}
.yb7_c00062{bottom:166.384987pt;}
.yb8_c00062{bottom:166.872411pt;}
.yb9_c00062{bottom:167.803112pt;}
.yba_c00062{bottom:168.443817pt;}
.ybb_c00062{bottom:169.403623pt;}
.ybc_c00062{bottom:170.478897pt;}
.ybd_c00062{bottom:172.478381pt;}
.yad_c00062{bottom:179.751052pt;}
.yae_c00062{bottom:180.787387pt;}
.yaf_c00062{bottom:181.314613pt;}
.yb0_c00062{bottom:182.167945pt;}
.yb1_c00062{bottom:184.069685pt;}
.yb2_c00062{bottom:185.769279pt;}
.yb3_c00062{bottom:186.191121pt;}
.yb4_c00062{bottom:187.843271pt;}
.yb5_c00062{bottom:188.423619pt;}
.ya6_c00062{bottom:194.153616pt;}
.ya7_c00062{bottom:194.379640pt;}
.ya8_c00062{bottom:196.441596pt;}
.ya9_c00062{bottom:197.955765pt;}
.yaa_c00062{bottom:199.883528pt;}
.yab_c00062{bottom:202.475984pt;}
.yac_c00062{bottom:203.071627pt;}
.y9b_c00062{bottom:210.473756pt;}
.y9c_c00062{bottom:210.924247pt;}
.y9d_c00062{bottom:211.428077pt;}
.y9e_c00062{bottom:212.680895pt;}
.y9f_c00062{bottom:214.552380pt;}
.ya0_c00062{bottom:215.439124pt;}
.ya1_c00062{bottom:216.468751pt;}
.ya2_c00062{bottom:216.978977pt;}
.ya3_c00062{bottom:217.870663pt;}
.ya4_c00062{bottom:218.473148pt;}
.ya5_c00062{bottom:219.036881pt;}
.y92_c00062{bottom:225.360368pt;}
.y93_c00062{bottom:226.848493pt;}
.y94_c00062{bottom:228.302747pt;}
.y95_c00062{bottom:229.003519pt;}
.y96_c00062{bottom:229.715383pt;}
.y97_c00062{bottom:231.223511pt;}
.y98_c00062{bottom:231.641663pt;}
.y99_c00062{bottom:232.276285pt;}
.y9a_c00062{bottom:232.946269pt;}
.y89_c00062{bottom:240.721620pt;}
.y8a_c00062{bottom:241.546713pt;}
.y8b_c00062{bottom:242.799603pt;}
.y8c_c00062{bottom:243.466341pt;}
.y8d_c00062{bottom:245.415303pt;}
.y8e_c00062{bottom:246.636695pt;}
.y8f_c00062{bottom:247.249095pt;}
.y90_c00062{bottom:248.254052pt;}
.y91_c00062{bottom:248.985792pt;}
.y81_c00062{bottom:256.562360pt;}
.y82_c00062{bottom:257.273283pt;}
.y83_c00062{bottom:258.367511pt;}
.y84_c00062{bottom:259.037579pt;}
.y85_c00062{bottom:259.797425pt;}
.y86_c00062{bottom:261.651807pt;}
.y87_c00062{bottom:262.886884pt;}
.y88_c00062{bottom:264.252455pt;}
.y77_c00062{bottom:271.441309pt;}
.y78_c00062{bottom:272.237353pt;}
.y79_c00062{bottom:273.570904pt;}
.y7a_c00062{bottom:274.506915pt;}
.y7b_c00062{bottom:275.242477pt;}
.y7c_c00062{bottom:276.041728pt;}
.y7d_c00062{bottom:277.775701pt;}
.y7e_c00062{bottom:278.989025pt;}
.y7f_c00062{bottom:279.733867pt;}
.y80_c00062{bottom:280.367917pt;}
.y6e_c00062{bottom:284.655143pt;}
.y6f_c00062{bottom:286.438991pt;}
.y70_c00062{bottom:287.094528pt;}
.y71_c00062{bottom:288.945124pt;}
.y72_c00062{bottom:291.368361pt;}
.y73_c00062{bottom:292.100215pt;}
.y74_c00062{bottom:292.975579pt;}
.y75_c00062{bottom:294.803955pt;}
.y76_c00062{bottom:296.084468pt;}
.y67_c00062{bottom:299.056047pt;}
.y68_c00062{bottom:301.675436pt;}
.y69_c00062{bottom:302.727536pt;}
.y6a_c00062{bottom:303.418787pt;}
.y6b_c00062{bottom:307.085369pt;}
.y6c_c00062{bottom:308.124467pt;}
.y6d_c00062{bottom:309.705477pt;}
.y60_c00062{bottom:313.686804pt;}
.y61_c00062{bottom:314.921440pt;}
.y62_c00062{bottom:316.608139pt;}
.y63_c00062{bottom:317.649753pt;}
.y64_c00062{bottom:319.225572pt;}
.y65_c00062{bottom:321.532463pt;}
.y66_c00062{bottom:322.366380pt;}
.y57_c00062{bottom:328.088341pt;}
.y58_c00062{bottom:329.331480pt;}
.y59_c00062{bottom:331.486267pt;}
.y5a_c00062{bottom:332.520885pt;}
.y5b_c00062{bottom:333.127915pt;}
.y5c_c00062{bottom:335.435225pt;}
.y5d_c00062{bottom:336.376812pt;}
.y5e_c00062{bottom:337.784820pt;}
.y5f_c00062{bottom:338.283388pt;}
.y50_c00062{bottom:344.407688pt;}
.y51_c00062{bottom:346.406285pt;}
.y52_c00062{bottom:347.223703pt;}
.y53_c00062{bottom:349.453433pt;}
.y54_c00062{bottom:350.511972pt;}
.y55_c00062{bottom:351.224857pt;}
.y56_c00062{bottom:352.455504pt;}
.y49_c00062{bottom:359.535165pt;}
.y4a_c00062{bottom:360.847471pt;}
.y4b_c00062{bottom:361.671157pt;}
.y4c_c00062{bottom:363.897983pt;}
.y4d_c00062{bottom:365.619472pt;}
.y4e_c00062{bottom:367.687175pt;}
.y4f_c00062{bottom:368.446191pt;}
.y42_c00062{bottom:372.494864pt;}
.y43_c00062{bottom:374.919644pt;}
.y44_c00062{bottom:375.448924pt;}
.y45_c00062{bottom:377.689471pt;}
.y46_c00062{bottom:378.479465pt;}
.y47_c00062{bottom:381.677724pt;}
.y48_c00062{bottom:382.164615pt;}
.y3a_c00062{bottom:388.570580pt;}
.y3b_c00062{bottom:389.253027pt;}
.y3c_c00062{bottom:390.129205pt;}
.y3d_c00062{bottom:391.994020pt;}
.y3e_c00062{bottom:393.335940pt;}
.y3f_c00062{bottom:395.701613pt;}
.y40_c00062{bottom:398.045049pt;}
.y41_c00062{bottom:399.061916pt;}
.y30_c00062{bottom:402.493452pt;}
.y31_c00062{bottom:404.127913pt;}
.y32_c00062{bottom:405.195369pt;}
.y33_c00062{bottom:405.953041pt;}
.y34_c00062{bottom:407.447392pt;}
.y35_c00062{bottom:408.765735pt;}
.y36_c00062{bottom:409.940961pt;}
.y37_c00062{bottom:410.468556pt;}
.y38_c00062{bottom:411.360249pt;}
.y39_c00062{bottom:412.196831pt;}
.y29_c00062{bottom:417.147351pt;}
.y2a_c00062{bottom:417.968743pt;}
.y2b_c00062{bottom:420.676545pt;}
.y2c_c00062{bottom:424.137405pt;}
.y2d_c00062{bottom:425.454235pt;}
.y2e_c00062{bottom:427.102968pt;}
.y2f_c00062{bottom:428.732889pt;}
.y21_c00062{bottom:431.790929pt;}
.y22_c00062{bottom:434.532653pt;}
.y23_c00062{bottom:435.549752pt;}
.y24_c00062{bottom:438.691455pt;}
.y25_c00062{bottom:439.335649pt;}
.y26_c00062{bottom:442.539133pt;}
.y27_c00062{bottom:443.241201pt;}
.y28_c00062{bottom:444.134720pt;}
.y19_c00062{bottom:448.336705pt;}
.y1a_c00062{bottom:449.481993pt;}
.y1b_c00062{bottom:451.238253pt;}
.y1c_c00062{bottom:452.719019pt;}
.y1d_c00062{bottom:454.775052pt;}
.y1e_c00062{bottom:455.741347pt;}
.y1f_c00062{bottom:457.232249pt;}
.y20_c00062{bottom:458.315793pt;}
.y11_c00062{bottom:462.970287pt;}
.y12_c00062{bottom:463.932696pt;}
.y13_c00062{bottom:465.403511pt;}
.y14_c00062{bottom:467.104880pt;}
.y15_c00062{bottom:467.823364pt;}
.y16_c00062{bottom:468.879655pt;}
.y17_c00062{bottom:471.135901pt;}
.y18_c00062{bottom:472.613971pt;}
.ya_c00062{bottom:477.859487pt;}
.yb_c00062{bottom:478.692251pt;}
.yc_c00062{bottom:479.906424pt;}
.yd_c00062{bottom:481.371885pt;}
.ye_c00062{bottom:483.241361pt;}
.yf_c00062{bottom:486.134959pt;}
.y10_c00062{bottom:486.736341pt;}
.y2_c00062{bottom:492.736000pt;}
.y3_c00062{bottom:493.948744pt;}
.y4_c00062{bottom:496.400973pt;}
.y5_c00062{bottom:497.558088pt;}
.y6_c00062{bottom:498.127139pt;}
.y7_c00062{bottom:500.770360pt;}
.y8_c00062{bottom:502.216723pt;}
.y9_c00062{bottom:503.002771pt;}
.y1_c00062{bottom:508.922667pt;}
.hd_c00062{height:49.469560pt;}
.hb_c00062{height:50.402948pt;}
.h9_c00062{height:51.336336pt;}
.h3_c00062{height:52.269724pt;}
.he_c00062{height:53.203112pt;}
.hf_c00062{height:54.136500pt;}
.ha_c00062{height:55.069888pt;}
.h7_c00062{height:56.003276pt;}
.h5_c00062{height:56.936664pt;}
.hc_c00062{height:57.870052pt;}
.h6_c00062{height:58.803440pt;}
.h8_c00062{height:59.736828pt;}
.h4_c00062{height:60.670216pt;}
.h2_c00062{height:77.466667pt;}
.h1_c00062{height:544.000000pt;}
.h0_c00062{height:544.266667pt;}
.w1_c00062{width:334.000000pt;}
.w0_c00062{width:334.266667pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:16.901333pt;}
.x10_c00062{left:18.282605pt;}
.x17_c00062{left:19.183344pt;}
.x26_c00062{left:20.283783pt;}
.x2d_c00062{left:21.197180pt;}
.x3a_c00062{left:23.627149pt;}
.x4d_c00062{left:24.747363pt;}
.x58_c00062{left:26.050268pt;}
.x61_c00062{left:27.054513pt;}
.x77_c00062{left:29.780288pt;}
.x84_c00062{left:30.923965pt;}
.x80_c00062{left:34.652548pt;}
.xa_c00062{left:37.569020pt;}
.x67_c00062{left:39.983604pt;}
.x3_c00062{left:43.238969pt;}
.x7c_c00062{left:44.279160pt;}
.x53_c00062{left:46.693692pt;}
.x18_c00062{left:47.766591pt;}
.x5c_c00062{left:51.034144pt;}
.x35_c00062{left:53.226733pt;}
.x40_c00062{left:55.151783pt;}
.x6f_c00062{left:56.147791pt;}
.x27_c00062{left:57.403397pt;}
.x72_c00062{left:58.334247pt;}
.x4e_c00062{left:64.357555pt;}
.xb_c00062{left:66.430743pt;}
.x62_c00062{left:69.518828pt;}
.x70_c00062{left:70.786557pt;}
.x1f_c00062{left:72.045296pt;}
.x89_c00062{left:75.309425pt;}
.x81_c00062{left:77.412816pt;}
.x4f_c00062{left:78.912993pt;}
.x11_c00062{left:80.576264pt;}
.x28_c00062{left:81.629357pt;}
.x54_c00062{left:82.699236pt;}
.x3b_c00062{left:85.990209pt;}
.x5d_c00062{left:87.838957pt;}
.x68_c00062{left:90.134820pt;}
.x19_c00062{left:91.618789pt;}
.x31_c00062{left:94.010028pt;}
.x47_c00062{left:95.508728pt;}
.x4_c00062{left:96.494993pt;}
.x29_c00062{left:98.837728pt;}
.xc_c00062{left:101.271585pt;}
.x2e_c00062{left:102.618657pt;}
.x49_c00062{left:105.051152pt;}
.x78_c00062{left:106.643741pt;}
.x55_c00062{left:107.955059pt;}
.x41_c00062{left:108.963441pt;}
.x3c_c00062{left:111.482417pt;}
.x76_c00062{left:115.916761pt;}
.x73_c00062{left:118.696053pt;}
.x4a_c00062{left:120.411180pt;}
.x5_c00062{left:121.624505pt;}
.x7d_c00062{left:122.801815pt;}
.x12_c00062{left:124.164025pt;}
.x36_c00062{left:125.795476pt;}
.x1a_c00062{left:128.589307pt;}
.x63_c00062{left:131.017728pt;}
.x2a_c00062{left:132.769560pt;}
.x6_c00062{left:133.982801pt;}
.x1_c00062{left:137.040000pt;}
.x13_c00062{left:142.579547pt;}
.x69_c00062{left:143.533715pt;}
.xd_c00062{left:145.727251pt;}
.x71_c00062{left:147.201184pt;}
.x32_c00062{left:148.582592pt;}
.x42_c00062{left:149.949711pt;}
.x20_c00062{left:151.956597pt;}
.x7e_c00062{left:153.492196pt;}
.x74_c00062{left:155.542393pt;}
.x48_c00062{left:159.280899pt;}
.x79_c00062{left:161.511187pt;}
.x24_c00062{left:162.556511pt;}
.x21_c00062{left:164.323447pt;}
.x37_c00062{left:166.747368pt;}
.x33_c00062{left:167.826416pt;}
.x14_c00062{left:169.635848pt;}
.x6e_c00062{left:172.280509pt;}
.x50_c00062{left:173.787716pt;}
.x59_c00062{left:175.569841pt;}
.x1b_c00062{left:179.937423pt;}
.x3d_c00062{left:181.068247pt;}
.x88_c00062{left:183.614253pt;}
.x86_c00062{left:184.792568pt;}
.x25_c00062{left:189.415275pt;}
.x7_c00062{left:191.386673pt;}
.x85_c00062{left:192.947865pt;}
.x64_c00062{left:194.362368pt;}
.x56_c00062{left:196.221961pt;}
.x6a_c00062{left:198.197291pt;}
.x2b_c00062{left:201.367217pt;}
.x1c_c00062{left:204.082612pt;}
.x65_c00062{left:206.284451pt;}
.x43_c00062{left:207.566604pt;}
.x51_c00062{left:209.474984pt;}
.x82_c00062{left:210.861744pt;}
.x5a_c00062{left:211.842880pt;}
.x6b_c00062{left:212.756751pt;}
.xe_c00062{left:214.540349pt;}
.x38_c00062{left:215.913844pt;}
.x5e_c00062{left:218.532272pt;}
.x2c_c00062{left:221.602137pt;}
.x8_c00062{left:222.797897pt;}
.x7a_c00062{left:223.930415pt;}
.x4b_c00062{left:224.867408pt;}
.x22_c00062{left:225.864837pt;}
.x15_c00062{left:227.419276pt;}
.xf_c00062{left:228.847335pt;}
.x44_c00062{left:231.088233pt;}
.x39_c00062{left:233.963092pt;}
.x3e_c00062{left:236.352516pt;}
.x6c_c00062{left:238.209499pt;}
.x9_c00062{left:239.868809pt;}
.x1d_c00062{left:241.302275pt;}
.x7b_c00062{left:242.325720pt;}
.x66_c00062{left:243.516696pt;}
.x2f_c00062{left:246.554433pt;}
.x5f_c00062{left:248.068371pt;}
.x57_c00062{left:249.068252pt;}
.x52_c00062{left:250.052208pt;}
.x5b_c00062{left:251.935516pt;}
.x6d_c00062{left:255.410332pt;}
.x23_c00062{left:256.516349pt;}
.x34_c00062{left:257.598516pt;}
.x4c_c00062{left:259.956547pt;}
.x16_c00062{left:265.258888pt;}
.x45_c00062{left:266.246740pt;}
.x1e_c00062{left:268.370669pt;}
.x60_c00062{left:269.554712pt;}
.x30_c00062{left:270.725325pt;}
.x75_c00062{left:273.599492pt;}
.x3f_c00062{left:274.761477pt;}
.x46_c00062{left:278.697715pt;}
.x83_c00062{left:281.488700pt;}
.x7f_c00062{left:284.278784pt;}
.x87_c00062{left:289.983852pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00063 {
    display:none;
  }
  .loading-indicator_c00063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00063 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00063 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00063" -> "#page-container .classname_c00063")
 */
.pf_c00063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00063 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00063 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00063 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00063 {overflow:visible;}
  }
}
.c_c00063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00063 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00063:after { /* webkit #35443 */
  content: '';
}
.t_c00063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00063 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00063 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00063 { /* info for Javascript */
  display:none;
}
.l_c00063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00063:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00063 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00063.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00063{transform:matrix(0.033170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033170,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.054724,0.001972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.054724,0.001972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.054724,0.001972,-0.009003,0.249838,0,0);}
.m4_c00063{transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);}
.m96_c00063{transform:matrix(0.141807,0.004542,-0.008004,0.249872,0,0);-ms-transform:matrix(0.141807,0.004542,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.141807,0.004542,-0.008004,0.249872,0,0);}
.m9_c00063{transform:matrix(0.144891,0.005221,-0.009003,0.249838,0,0);-ms-transform:matrix(0.144891,0.005221,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.144891,0.005221,-0.009003,0.249838,0,0);}
.mae_c00063{transform:matrix(0.149948,0.004498,-0.007497,0.249888,0,0);-ms-transform:matrix(0.149948,0.004498,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.149948,0.004498,-0.007497,0.249888,0,0);}
.ma9_c00063{transform:matrix(0.155775,0.004673,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155775,0.004673,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155775,0.004673,-0.007497,0.249888,0,0);}
.ma_c00063{transform:matrix(0.156139,0.005627,-0.009003,0.249838,0,0);-ms-transform:matrix(0.156139,0.005627,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.156139,0.005627,-0.009003,0.249838,0,0);}
.m6b_c00063{transform:matrix(0.156375,0.005166,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156375,0.005166,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156375,0.005166,-0.008254,0.249864,0,0);}
.m7f_c00063{transform:matrix(0.159583,0.005112,-0.008004,0.249872,0,0);-ms-transform:matrix(0.159583,0.005112,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.159583,0.005112,-0.008004,0.249872,0,0);}
.m92_c00063{transform:matrix(0.159738,0.005117,-0.008004,0.249872,0,0);-ms-transform:matrix(0.159738,0.005117,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.159738,0.005117,-0.008004,0.249872,0,0);}
.m2_c00063{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.mb2_c00063{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00063{transform:matrix(0.165615,0.004968,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165615,0.004968,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165615,0.004968,-0.007497,0.249888,0,0);}
.m0_c00063{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m98_c00063{transform:matrix(0.168793,0.005407,-0.008004,0.249872,0,0);-ms-transform:matrix(0.168793,0.005407,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.168793,0.005407,-0.008004,0.249872,0,0);}
.m81_c00063{transform:matrix(0.169858,0.005441,-0.008004,0.249872,0,0);-ms-transform:matrix(0.169858,0.005441,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.169858,0.005441,-0.008004,0.249872,0,0);}
.mac_c00063{transform:matrix(0.170298,0.005109,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170298,0.005109,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170298,0.005109,-0.007497,0.249888,0,0);}
.m62_c00063{transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);}
.m5c_c00063{transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173455,0.005730,-0.008254,0.249864,0,0);}
.ma5_c00063{transform:matrix(0.174211,0.005580,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174211,0.005580,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174211,0.005580,-0.008004,0.249872,0,0);}
.m97_c00063{transform:matrix(0.174520,0.005590,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174520,0.005590,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174520,0.005590,-0.008004,0.249872,0,0);}
.maa_c00063{transform:matrix(0.175251,0.005258,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175251,0.005258,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175251,0.005258,-0.007497,0.249888,0,0);}
.m7_c00063{transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);}
.m24_c00063{transform:matrix(0.176717,0.006191,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176717,0.006191,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176717,0.006191,-0.008753,0.249847,0,0);}
.ma2_c00063{transform:matrix(0.177274,0.005678,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177274,0.005678,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177274,0.005678,-0.008004,0.249872,0,0);}
.m1_c00063{transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00063{transform:matrix(0.177884,0.005698,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177884,0.005698,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177884,0.005698,-0.008004,0.249872,0,0);}
.m72_c00063{transform:matrix(0.178318,0.005890,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178318,0.005890,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178318,0.005890,-0.008254,0.249864,0,0);}
.m93_c00063{transform:matrix(0.179408,0.005747,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179408,0.005747,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179408,0.005747,-0.008004,0.249872,0,0);}
.m90_c00063{transform:matrix(0.179843,0.005761,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179843,0.005761,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179843,0.005761,-0.008004,0.249872,0,0);}
.m9a_c00063{transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180487,0.005781,-0.008004,0.249872,0,0);}
.m88_c00063{transform:matrix(0.180622,0.005786,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180622,0.005786,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180622,0.005786,-0.008004,0.249872,0,0);}
.m63_c00063{transform:matrix(0.181676,0.006001,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181676,0.006001,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181676,0.006001,-0.008254,0.249864,0,0);}
.mb_c00063{transform:matrix(0.181837,0.006553,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181837,0.006553,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181837,0.006553,-0.009003,0.249838,0,0);}
.m39_c00063{transform:matrix(0.182153,0.006382,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182153,0.006382,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182153,0.006382,-0.008753,0.249847,0,0);}
.m7e_c00063{transform:matrix(0.182441,0.005844,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182441,0.005844,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182441,0.005844,-0.008004,0.249872,0,0);}
.m45_c00063{transform:matrix(0.183510,0.006062,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183510,0.006062,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183510,0.006062,-0.008254,0.249864,0,0);}
.m8b_c00063{transform:matrix(0.183581,0.005880,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183581,0.005880,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183581,0.005880,-0.008004,0.249872,0,0);}
.m11_c00063{transform:matrix(0.183796,0.006623,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183796,0.006623,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183796,0.006623,-0.009003,0.249838,0,0);}
.m7c_c00063{transform:matrix(0.183946,0.005892,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183946,0.005892,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183946,0.005892,-0.008004,0.249872,0,0);}
.m8e_c00063{transform:matrix(0.184011,0.005894,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184011,0.005894,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184011,0.005894,-0.008004,0.249872,0,0);}
.m80_c00063{transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);}
.m6e_c00063{transform:matrix(0.184569,0.006097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184569,0.006097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184569,0.006097,-0.008254,0.249864,0,0);}
.m87_c00063{transform:matrix(0.184610,0.005913,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184610,0.005913,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184610,0.005913,-0.008004,0.249872,0,0);}
.m79_c00063{transform:matrix(0.184980,0.005925,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184980,0.005925,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184980,0.005925,-0.008004,0.249872,0,0);}
.m76_c00063{transform:matrix(0.186049,0.006146,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186049,0.006146,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186049,0.006146,-0.008254,0.249864,0,0);}
.ma8_c00063{transform:matrix(0.186481,0.005594,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186481,0.005594,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186481,0.005594,-0.007497,0.249888,0,0);}
.m6d_c00063{transform:matrix(0.186513,0.006161,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186513,0.006161,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186513,0.006161,-0.008254,0.249864,0,0);}
.m73_c00063{transform:matrix(0.186728,0.006168,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186728,0.006168,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186728,0.006168,-0.008254,0.249864,0,0);}
.m83_c00063{transform:matrix(0.186814,0.005984,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186814,0.005984,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186814,0.005984,-0.008004,0.249872,0,0);}
.m94_c00063{transform:matrix(0.187119,0.005994,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187119,0.005994,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187119,0.005994,-0.008004,0.249872,0,0);}
.m6f_c00063{transform:matrix(0.187368,0.006189,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187368,0.006189,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187368,0.006189,-0.008254,0.249864,0,0);}
.m69_c00063{transform:matrix(0.187493,0.006193,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187493,0.006193,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187493,0.006193,-0.008254,0.249864,0,0);}
.m4a_c00063{transform:matrix(0.188232,0.006218,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188232,0.006218,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188232,0.006218,-0.008254,0.249864,0,0);}
.m57_c00063{transform:matrix(0.188787,0.006236,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188787,0.006236,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188787,0.006236,-0.008254,0.249864,0,0);}
.m37_c00063{transform:matrix(0.189279,0.006631,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189279,0.006631,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189279,0.006631,-0.008753,0.249847,0,0);}
.m60_c00063{transform:matrix(0.189507,0.006260,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189507,0.006260,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189507,0.006260,-0.008254,0.249864,0,0);}
.m49_c00063{transform:matrix(0.190166,0.006282,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190166,0.006282,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190166,0.006282,-0.008254,0.249864,0,0);}
.mad_c00063{transform:matrix(0.190344,0.005710,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190344,0.005710,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190344,0.005710,-0.007497,0.249888,0,0);}
.maf_c00063{transform:matrix(0.191304,0.005739,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191304,0.005739,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191304,0.005739,-0.007497,0.249888,0,0);}
.m32_c00063{transform:matrix(0.191328,0.006703,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191328,0.006703,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191328,0.006703,-0.008753,0.249847,0,0);}
.ma3_c00063{transform:matrix(0.192566,0.006168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192566,0.006168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192566,0.006168,-0.008004,0.249872,0,0);}
.m3d_c00063{transform:matrix(0.192837,0.006756,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192837,0.006756,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192837,0.006756,-0.008753,0.249847,0,0);}
.m55_c00063{transform:matrix(0.193370,0.006388,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193370,0.006388,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193370,0.006388,-0.008254,0.249864,0,0);}
.m6a_c00063{transform:matrix(0.193424,0.006389,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193424,0.006389,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193424,0.006389,-0.008254,0.249864,0,0);}
.m15_c00063{transform:matrix(0.193604,0.006977,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193604,0.006977,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193604,0.006977,-0.009003,0.249838,0,0);}
.m16_c00063{transform:matrix(0.193824,0.006985,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193824,0.006985,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193824,0.006985,-0.009003,0.249838,0,0);}
.m3_c00063{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.m77_c00063{transform:matrix(0.194469,0.006424,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194469,0.006424,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194469,0.006424,-0.008254,0.249864,0,0);}
.m46_c00063{transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);}
.m95_c00063{transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);}
.m1f_c00063{transform:matrix(0.197257,0.007108,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197257,0.007108,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197257,0.007108,-0.009003,0.249838,0,0);}
.m12_c00063{transform:matrix(0.198121,0.007140,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198121,0.007140,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198121,0.007140,-0.009003,0.249838,0,0);}
.m58_c00063{transform:matrix(0.198527,0.006558,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198527,0.006558,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198527,0.006558,-0.008254,0.249864,0,0);}
.m9e_c00063{transform:matrix(0.198883,0.006371,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198883,0.006371,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198883,0.006371,-0.008004,0.249872,0,0);}
.m84_c00063{transform:matrix(0.198993,0.006374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198993,0.006374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198993,0.006374,-0.008004,0.249872,0,0);}
.m7b_c00063{transform:matrix(0.199398,0.006387,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199398,0.006387,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199398,0.006387,-0.008004,0.249872,0,0);}
.m8f_c00063{transform:matrix(0.199493,0.006390,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199493,0.006390,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199493,0.006390,-0.008004,0.249872,0,0);}
.m7d_c00063{transform:matrix(0.199598,0.006394,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199598,0.006394,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199598,0.006394,-0.008004,0.249872,0,0);}
.m7a_c00063{transform:matrix(0.200187,0.006412,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200187,0.006412,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200187,0.006412,-0.008004,0.249872,0,0);}
.m47_c00063{transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200521,0.006624,-0.008254,0.249864,0,0);}
.m13_c00063{transform:matrix(0.200740,0.007234,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200740,0.007234,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200740,0.007234,-0.009003,0.249838,0,0);}
.m89_c00063{transform:matrix(0.200897,0.006435,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200897,0.006435,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200897,0.006435,-0.008004,0.249872,0,0);}
.m20_c00063{transform:matrix(0.202678,0.007304,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202678,0.007304,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202678,0.007304,-0.009003,0.249838,0,0);}
.m65_c00063{transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203009,0.006706,-0.008254,0.249864,0,0);}
.mab_c00063{transform:matrix(0.203104,0.006093,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203104,0.006093,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203104,0.006093,-0.007497,0.249888,0,0);}
.m1e_c00063{transform:matrix(0.203138,0.007320,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203138,0.007320,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203138,0.007320,-0.009003,0.249838,0,0);}
.m52_c00063{transform:matrix(0.203214,0.006713,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203214,0.006713,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203214,0.006713,-0.008254,0.249864,0,0);}
.m21_c00063{transform:matrix(0.203293,0.007326,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203293,0.007326,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203293,0.007326,-0.009003,0.249838,0,0);}
.m6_c00063{transform:matrix(0.203318,0.007327,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203318,0.007327,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203318,0.007327,-0.009003,0.249838,0,0);}
.m91_c00063{transform:matrix(0.203501,0.006519,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203501,0.006519,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203501,0.006519,-0.008004,0.249872,0,0);}
.m6c_c00063{transform:matrix(0.204239,0.006747,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204239,0.006747,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204239,0.006747,-0.008254,0.249864,0,0);}
.m86_c00063{transform:matrix(0.204385,0.006547,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204385,0.006547,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204385,0.006547,-0.008004,0.249872,0,0);}
.m5a_c00063{transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);}
.m1c_c00063{transform:matrix(0.204752,0.007378,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204752,0.007378,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204752,0.007378,-0.009003,0.249838,0,0);}
.m8d_c00063{transform:matrix(0.206089,0.006601,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206089,0.006601,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206089,0.006601,-0.008004,0.249872,0,0);}
.m82_c00063{transform:matrix(0.206439,0.006613,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206439,0.006613,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206439,0.006613,-0.008004,0.249872,0,0);}
.m67_c00063{transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206447,0.006820,-0.008254,0.249864,0,0);}
.m8c_c00063{transform:matrix(0.206784,0.006624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206784,0.006624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206784,0.006624,-0.008004,0.249872,0,0);}
.m31_c00063{transform:matrix(0.207343,0.007264,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207343,0.007264,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207343,0.007264,-0.008753,0.249847,0,0);}
.m74_c00063{transform:matrix(0.208111,0.006875,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208111,0.006875,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208111,0.006875,-0.008254,0.249864,0,0);}
.ma1_c00063{transform:matrix(0.208393,0.006675,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208393,0.006675,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208393,0.006675,-0.008004,0.249872,0,0);}
.m3e_c00063{transform:matrix(0.209836,0.007352,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209836,0.007352,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209836,0.007352,-0.008753,0.249847,0,0);}
.m53_c00063{transform:matrix(0.210575,0.006956,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210575,0.006956,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210575,0.006956,-0.008254,0.249864,0,0);}
.m59_c00063{transform:matrix(0.210590,0.006956,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210590,0.006956,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210590,0.006956,-0.008254,0.249864,0,0);}
.m40_c00063{transform:matrix(0.210776,0.007385,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210776,0.007385,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210776,0.007385,-0.008753,0.249847,0,0);}
.m35_c00063{transform:matrix(0.211705,0.007417,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211705,0.007417,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211705,0.007417,-0.008753,0.249847,0,0);}
.m4c_c00063{transform:matrix(0.211730,0.006994,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211730,0.006994,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211730,0.006994,-0.008254,0.249864,0,0);}
.m33_c00063{transform:matrix(0.211895,0.007424,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211895,0.007424,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211895,0.007424,-0.008753,0.249847,0,0);}
.m8a_c00063{transform:matrix(0.212201,0.006797,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212201,0.006797,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212201,0.006797,-0.008004,0.249872,0,0);}
.mf_c00063{transform:matrix(0.212442,0.007656,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212442,0.007656,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212442,0.007656,-0.009003,0.249838,0,0);}
.ma0_c00063{transform:matrix(0.212541,0.006808,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212541,0.006808,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212541,0.006808,-0.008004,0.249872,0,0);}
.m5d_c00063{transform:matrix(0.212879,0.007032,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212879,0.007032,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212879,0.007032,-0.008254,0.249864,0,0);}
.m5b_c00063{transform:matrix(0.213009,0.007036,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213009,0.007036,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213009,0.007036,-0.008254,0.249864,0,0);}
.m2a_c00063{transform:matrix(0.213444,0.007478,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213444,0.007478,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213444,0.007478,-0.008753,0.249847,0,0);}
.m61_c00063{transform:matrix(0.213933,0.007067,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213933,0.007067,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213933,0.007067,-0.008254,0.249864,0,0);}
.m50_c00063{transform:matrix(0.214453,0.007084,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214453,0.007084,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214453,0.007084,-0.008254,0.249864,0,0);}
.m5f_c00063{transform:matrix(0.214578,0.007088,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214578,0.007088,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214578,0.007088,-0.008254,0.249864,0,0);}
.m85_c00063{transform:matrix(0.214720,0.006878,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214720,0.006878,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214720,0.006878,-0.008004,0.249872,0,0);}
.m41_c00063{transform:matrix(0.215173,0.007539,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215173,0.007539,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215173,0.007539,-0.008753,0.249847,0,0);}
.m4f_c00063{transform:matrix(0.215288,0.007112,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215288,0.007112,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215288,0.007112,-0.008254,0.249864,0,0);}
.m78_c00063{transform:matrix(0.216644,0.006940,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216644,0.006940,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216644,0.006940,-0.008004,0.249872,0,0);}
.m42_c00063{transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217676,0.007626,-0.008753,0.249847,0,0);}
.m3f_c00063{transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218016,0.007638,-0.008753,0.249847,0,0);}
.ma4_c00063{transform:matrix(0.219507,0.007031,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219507,0.007031,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219507,0.007031,-0.008004,0.249872,0,0);}
.m28_c00063{transform:matrix(0.219555,0.007692,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219555,0.007692,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219555,0.007692,-0.008753,0.249847,0,0);}
.m9f_c00063{transform:matrix(0.219597,0.007034,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219597,0.007034,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219597,0.007034,-0.008004,0.249872,0,0);}
.m4e_c00063{transform:matrix(0.219800,0.007261,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219800,0.007261,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219800,0.007261,-0.008254,0.249864,0,0);}
.m9b_c00063{transform:matrix(0.220002,0.007047,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220002,0.007047,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220002,0.007047,-0.008004,0.249872,0,0);}
.m3c_c00063{transform:matrix(0.220580,0.007728,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220580,0.007728,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220580,0.007728,-0.008753,0.249847,0,0);}
.m71_c00063{transform:matrix(0.220994,0.007300,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220994,0.007300,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220994,0.007300,-0.008254,0.249864,0,0);}
.m27_c00063{transform:matrix(0.221899,0.007774,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221899,0.007774,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221899,0.007774,-0.008753,0.249847,0,0);}
.m1b_c00063{transform:matrix(0.222401,0.008014,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222401,0.008014,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222401,0.008014,-0.009003,0.249838,0,0);}
.m25_c00063{transform:matrix(0.223013,0.007813,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223013,0.007813,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223013,0.007813,-0.008753,0.249847,0,0);}
.m44_c00063{transform:matrix(0.223458,0.007381,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223458,0.007381,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223458,0.007381,-0.008254,0.249864,0,0);}
.m2c_c00063{transform:matrix(0.223463,0.007829,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223463,0.007829,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223463,0.007829,-0.008753,0.249847,0,0);}
.m18_c00063{transform:matrix(0.223770,0.008064,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223770,0.008064,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223770,0.008064,-0.009003,0.249838,0,0);}
.m2e_c00063{transform:matrix(0.224557,0.007867,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224557,0.007867,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224557,0.007867,-0.008753,0.249847,0,0);}
.m22_c00063{transform:matrix(0.224894,0.008104,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224894,0.008104,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224894,0.008104,-0.009003,0.249838,0,0);}
.m99_c00063{transform:matrix(0.225999,0.007239,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225999,0.007239,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225999,0.007239,-0.008004,0.249872,0,0);}
.m2f_c00063{transform:matrix(0.230209,0.008065,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230209,0.008065,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230209,0.008065,-0.008753,0.249847,0,0);}
.m5e_c00063{transform:matrix(0.230434,0.007612,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230434,0.007612,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230434,0.007612,-0.008254,0.249864,0,0);}
.m56_c00063{transform:matrix(0.232173,0.007669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232173,0.007669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232173,0.007669,-0.008254,0.249864,0,0);}
.m34_c00063{transform:matrix(0.232857,0.008158,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232857,0.008158,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232857,0.008158,-0.008753,0.249847,0,0);}
.m68_c00063{transform:matrix(0.232903,0.007693,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232903,0.007693,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232903,0.007693,-0.008254,0.249864,0,0);}
.m2b_c00063{transform:matrix(0.233242,0.008172,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233242,0.008172,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233242,0.008172,-0.008753,0.249847,0,0);}
.ma6_c00063{transform:matrix(0.233290,0.007473,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233290,0.007473,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233290,0.007473,-0.008004,0.249872,0,0);}
.me_c00063{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00063{transform:matrix(0.234857,0.007758,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234857,0.007758,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234857,0.007758,-0.008254,0.249864,0,0);}
.m30_c00063{transform:matrix(0.234896,0.008230,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234896,0.008230,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234896,0.008230,-0.008753,0.249847,0,0);}
.m10_c00063{transform:matrix(0.235122,0.008473,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235122,0.008473,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235122,0.008473,-0.009003,0.249838,0,0);}
.m26_c00063{transform:matrix(0.235341,0.008245,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235341,0.008245,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235341,0.008245,-0.008753,0.249847,0,0);}
.m66_c00063{transform:matrix(0.235981,0.007795,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235981,0.007795,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235981,0.007795,-0.008254,0.249864,0,0);}
.m4d_c00063{transform:matrix(0.236891,0.007825,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236891,0.007825,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236891,0.007825,-0.008254,0.249864,0,0);}
.m3b_c00063{transform:matrix(0.237080,0.008306,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237080,0.008306,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237080,0.008306,-0.008753,0.249847,0,0);}
.m29_c00063{transform:matrix(0.237544,0.008322,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237544,0.008322,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237544,0.008322,-0.008753,0.249847,0,0);}
.m54_c00063{transform:matrix(0.239624,0.007916,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239624,0.007916,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239624,0.007916,-0.008254,0.249864,0,0);}
.m17_c00063{transform:matrix(0.239889,0.008645,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239889,0.008645,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239889,0.008645,-0.009003,0.249838,0,0);}
.mb0_c00063{transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);}
.m64_c00063{transform:matrix(0.244332,0.008071,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244332,0.008071,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244332,0.008071,-0.008254,0.249864,0,0);}
.m75_c00063{transform:matrix(0.245221,0.008100,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245221,0.008100,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245221,0.008100,-0.008254,0.249864,0,0);}
.m19_c00063{transform:matrix(0.246450,0.008881,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246450,0.008881,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246450,0.008881,-0.009003,0.249838,0,0);}
.m36_c00063{transform:matrix(0.248617,0.008710,-0.008753,0.249847,0,0);-ms-transform:matrix(0.248617,0.008710,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.248617,0.008710,-0.008753,0.249847,0,0);}
.m3a_c00063{transform:matrix(0.250082,0.008762,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250082,0.008762,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250082,0.008762,-0.008753,0.249847,0,0);}
.m1a_c00063{transform:matrix(0.255349,0.009202,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255349,0.009202,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255349,0.009202,-0.009003,0.249838,0,0);}
.m1d_c00063{transform:matrix(0.255764,0.009217,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255764,0.009217,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255764,0.009217,-0.009003,0.249838,0,0);}
.m9c_c00063{transform:matrix(0.257603,0.008252,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257603,0.008252,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257603,0.008252,-0.008004,0.249872,0,0);}
.m23_c00063{transform:matrix(0.263069,0.009217,-0.008753,0.249847,0,0);-ms-transform:matrix(0.263069,0.009217,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.263069,0.009217,-0.008753,0.249847,0,0);}
.m51_c00063{transform:matrix(0.266645,0.008808,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266645,0.008808,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266645,0.008808,-0.008254,0.249864,0,0);}
.m38_c00063{transform:matrix(0.268400,0.009403,-0.008753,0.249847,0,0);-ms-transform:matrix(0.268400,0.009403,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.268400,0.009403,-0.008753,0.249847,0,0);}
.m2d_c00063{transform:matrix(0.274217,0.009607,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274217,0.009607,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274217,0.009607,-0.008753,0.249847,0,0);}
.m14_c00063{transform:matrix(0.274377,0.009887,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274377,0.009887,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274377,0.009887,-0.009003,0.249838,0,0);}
.m48_c00063{transform:matrix(0.274405,0.009064,-0.008254,0.249864,0,0);-ms-transform:matrix(0.274405,0.009064,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.274405,0.009064,-0.008254,0.249864,0,0);}
.m70_c00063{transform:matrix(0.278278,0.009192,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278278,0.009192,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278278,0.009192,-0.008254,0.249864,0,0);}
.m8_c00063{transform:matrix(0.328637,0.011843,-0.009003,0.249838,0,0);-ms-transform:matrix(0.328637,0.011843,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.328637,0.011843,-0.009003,0.249838,0,0);}
.mc_c00063{transform:matrix(0.363655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363655,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.397320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397320,0.000000,0.000000,0.250000,0,0);}
.mb3_c00063{transform:matrix(0.981255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.981255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.981255,0.000000,0.000000,0.250000,0,0);}
.m43_c00063{transform:matrix(1.651984,0.054570,-0.008254,0.249864,0,0);-ms-transform:matrix(1.651984,0.054570,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.651984,0.054570,-0.008254,0.249864,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
.fc0_c00063{color:transparent;}
.fs2_c00063{font-size:22.050000px;}
.fs4_c00063{font-size:26.250000px;}
.fs15_c00063{font-size:54.600000px;}
.fs5_c00063{font-size:55.650000px;}
.fs8_c00063{font-size:56.678053px;}
.fsd_c00063{font-size:57.723718px;}
.fs7_c00063{font-size:57.729697px;}
.fs12_c00063{font-size:58.771328px;}
.fsc_c00063{font-size:58.773240px;}
.fsa_c00063{font-size:58.777240px;}
.fse_c00063{font-size:59.822762px;}
.fs9_c00063{font-size:59.826834px;}
.fs11_c00063{font-size:62.969280px;}
.fs13_c00063{font-size:65.068256px;}
.fsb_c00063{font-size:65.070373px;}
.fs6_c00063{font-size:65.077113px;}
.fs10_c00063{font-size:66.117744px;}
.fsf_c00063{font-size:67.169417px;}
.fs14_c00063{font-size:69.331178px;}
.fs0_c00063{font-size:72.450000px;}
.fs3_c00063{font-size:88.168992px;}
.fs1_c00063{font-size:110.250000px;}
.y0_c00063{bottom:0.000000px;}
.yb2_c00063{bottom:31.571025px;}
.yb1_c00063{bottom:32.284005px;}
.yb0_c00063{bottom:32.769555px;}
.yaf_c00063{bottom:34.213155px;}
.yae_c00063{bottom:34.726965px;}
.yad_c00063{bottom:36.031200px;}
.yac_c00063{bottom:36.877830px;}
.yab_c00063{bottom:37.363875px;}
.yaa_c00063{bottom:38.620500px;}
.ya9_c00063{bottom:48.331825px;}
.ya8_c00063{bottom:49.134277px;}
.ya7_c00063{bottom:50.449804px;}
.ya6_c00063{bottom:51.956368px;}
.ya5_c00063{bottom:53.002219px;}
.ya4_c00063{bottom:55.560058px;}
.ya3_c00063{bottom:57.834195px;}
.ya2_c00063{bottom:64.965159px;}
.ya1_c00063{bottom:66.235542px;}
.ya0_c00063{bottom:66.940383px;}
.y9f_c00063{bottom:68.203891px;}
.y9e_c00063{bottom:71.856835px;}
.y9d_c00063{bottom:73.444653px;}
.y9c_c00063{bottom:75.376240px;}
.y9b_c00063{bottom:81.796861px;}
.y9a_c00063{bottom:84.178405px;}
.y99_c00063{bottom:84.718233px;}
.y98_c00063{bottom:85.627158px;}
.y97_c00063{bottom:86.952193px;}
.y96_c00063{bottom:88.877547px;}
.y95_c00063{bottom:89.465193px;}
.y94_c00063{bottom:89.914231px;}
.y93_c00063{bottom:91.020527px;}
.y92_c00063{bottom:99.326203px;}
.y91_c00063{bottom:99.883867px;}
.y90_c00063{bottom:100.488379px;}
.y8f_c00063{bottom:102.545035px;}
.y8e_c00063{bottom:103.290475px;}
.y8d_c00063{bottom:103.930604px;}
.y8c_c00063{bottom:105.149323px;}
.y8b_c00063{bottom:105.711212px;}
.y8a_c00063{bottom:106.488139px;}
.y89_c00063{bottom:107.355643px;}
.y88_c00063{bottom:108.026923px;}
.yb3_c00063{bottom:116.506500px;}
.y87_c00063{bottom:118.351021px;}
.y86_c00063{bottom:120.718686px;}
.y85_c00063{bottom:122.445144px;}
.y84_c00063{bottom:123.144644px;}
.y83_c00063{bottom:124.485936px;}
.y82_c00063{bottom:132.738144px;}
.y81_c00063{bottom:134.627136px;}
.y80_c00063{bottom:135.997104px;}
.y7f_c00063{bottom:137.666544px;}
.y7e_c00063{bottom:138.084720px;}
.y7d_c00063{bottom:139.672224px;}
.y7c_c00063{bottom:140.302608px;}
.y7b_c00063{bottom:141.762000px;}
.y7a_c00063{bottom:150.991700px;}
.y79_c00063{bottom:151.617807px;}
.y78_c00063{bottom:151.979877px;}
.y77_c00063{bottom:153.740596px;}
.y76_c00063{bottom:154.859382px;}
.y75_c00063{bottom:155.548827px;}
.y74_c00063{bottom:157.186782px;}
.y73_c00063{bottom:158.812524px;}
.y72_c00063{bottom:167.605088px;}
.y71_c00063{bottom:168.536034px;}
.y70_c00063{bottom:170.181612px;}
.y6f_c00063{bottom:172.820160px;}
.y6e_c00063{bottom:173.382678px;}
.y6d_c00063{bottom:174.630573px;}
.y6c_c00063{bottom:176.353767px;}
.y6b_c00063{bottom:184.291551px;}
.y6a_c00063{bottom:184.998798px;}
.y69_c00063{bottom:186.579009px;}
.y68_c00063{bottom:187.087806px;}
.y67_c00063{bottom:188.006472px;}
.y66_c00063{bottom:189.911583px;}
.y65_c00063{bottom:190.528614px;}
.y64_c00063{bottom:192.924405px;}
.y63_c00063{bottom:193.627098px;}
.y62_c00063{bottom:201.199981px;}
.y61_c00063{bottom:202.041072px;}
.y60_c00063{bottom:204.430082px;}
.y5f_c00063{bottom:204.849463px;}
.y5e_c00063{bottom:206.982770px;}
.y5d_c00063{bottom:207.657558px;}
.y5c_c00063{bottom:208.845522px;}
.y5b_c00063{bottom:209.497725px;}
.y5a_c00063{bottom:210.906679px;}
.y59_c00063{bottom:217.884398px;}
.y58_c00063{bottom:218.806087px;}
.y57_c00063{bottom:222.039751px;}
.y56_c00063{bottom:223.099731px;}
.y55_c00063{bottom:225.621491px;}
.y54_c00063{bottom:227.132267px;}
.y53_c00063{bottom:228.174611px;}
.y52_c00063{bottom:235.996092px;}
.y51_c00063{bottom:236.657637px;}
.y50_c00063{bottom:238.043358px;}
.y4f_c00063{bottom:238.705497px;}
.y4e_c00063{bottom:240.900611px;}
.y4d_c00063{bottom:241.560918px;}
.y4c_c00063{bottom:243.003033px;}
.y4b_c00063{bottom:243.499505px;}
.y4a_c00063{bottom:244.366677px;}
.y49_c00063{bottom:252.531185px;}
.y48_c00063{bottom:253.681119px;}
.y47_c00063{bottom:254.349864px;}
.y46_c00063{bottom:257.442327px;}
.y45_c00063{bottom:258.009003px;}
.y44_c00063{bottom:261.652500px;}
.y43_c00063{bottom:305.037315px;}
.y42_c00063{bottom:305.704608px;}
.y41_c00063{bottom:307.512833px;}
.y40_c00063{bottom:309.162835px;}
.y3f_c00063{bottom:309.830759px;}
.y3e_c00063{bottom:311.079674px;}
.y3d_c00063{bottom:320.104302px;}
.y3c_c00063{bottom:321.867651px;}
.y3b_c00063{bottom:324.477403px;}
.y3a_c00063{bottom:325.065021px;}
.y39_c00063{bottom:326.856267px;}
.y38_c00063{bottom:327.539804px;}
.y37_c00063{bottom:337.569958px;}
.y36_c00063{bottom:338.197737px;}
.y35_c00063{bottom:339.563760px;}
.y34_c00063{bottom:341.883419px;}
.y33_c00063{bottom:342.378318px;}
.y32_c00063{bottom:343.844202px;}
.y31_c00063{bottom:344.815501px;}
.y30_c00063{bottom:354.934174px;}
.y2f_c00063{bottom:355.846213px;}
.y2e_c00063{bottom:358.339734px;}
.y2d_c00063{bottom:359.044896px;}
.y2c_c00063{bottom:361.241839px;}
.y2b_c00063{bottom:362.628280px;}
.y2a_c00063{bottom:370.330447px;}
.y29_c00063{bottom:371.047230px;}
.y28_c00063{bottom:372.956970px;}
.y27_c00063{bottom:374.737455px;}
.y26_c00063{bottom:375.455865px;}
.y25_c00063{bottom:376.609710px;}
.y24_c00063{bottom:379.633500px;}
.y23_c00063{bottom:386.547081px;}
.y22_c00063{bottom:388.539465px;}
.y21_c00063{bottom:390.718473px;}
.y20_c00063{bottom:391.907067px;}
.y1f_c00063{bottom:392.888841px;}
.y1e_c00063{bottom:394.366713px;}
.y1d_c00063{bottom:396.116907px;}
.y1c_c00063{bottom:403.261350px;}
.y1b_c00063{bottom:405.963510px;}
.y1a_c00063{bottom:408.514092px;}
.y19_c00063{bottom:409.369938px;}
.y18_c00063{bottom:411.081306px;}
.y17_c00063{bottom:411.771318px;}
.y16_c00063{bottom:412.844622px;}
.y15_c00063{bottom:420.186138px;}
.y14_c00063{bottom:421.546398px;}
.y13_c00063{bottom:422.382102px;}
.y12_c00063{bottom:425.834646px;}
.y11_c00063{bottom:426.444144px;}
.y10_c00063{bottom:430.125000px;}
.yb4_c00063{bottom:430.650000px;}
.yf_c00063{bottom:466.641000px;}
.ye_c00063{bottom:468.745500px;}
.yc_c00063{bottom:489.011760px;}
.yd_c00063{bottom:490.185000px;}
.yb_c00063{bottom:490.691538px;}
.ya_c00063{bottom:492.120054px;}
.y9_c00063{bottom:493.835364px;}
.y8_c00063{bottom:494.671446px;}
.y7_c00063{bottom:497.472480px;}
.y6_c00063{bottom:497.884500px;}
.y5_c00063{bottom:517.320000px;}
.y4_c00063{bottom:537.336000px;}
.y3_c00063{bottom:540.244500px;}
.y2_c00063{bottom:544.615500px;}
.y1_c00063{bottom:572.268000px;}
.h4_c00063{height:22.050000px;}
.h6_c00063{height:26.250000px;}
.h17_c00063{height:54.600000px;}
.h7_c00063{height:55.650000px;}
.ha_c00063{height:56.678053px;}
.hf_c00063{height:57.723718px;}
.h9_c00063{height:57.729697px;}
.h14_c00063{height:58.771328px;}
.he_c00063{height:58.773240px;}
.hc_c00063{height:58.777240px;}
.h10_c00063{height:59.822762px;}
.hb_c00063{height:59.826834px;}
.h13_c00063{height:62.969280px;}
.h15_c00063{height:65.068256px;}
.hd_c00063{height:65.070373px;}
.h8_c00063{height:65.077113px;}
.h12_c00063{height:66.117744px;}
.h11_c00063{height:67.169417px;}
.h16_c00063{height:69.331178px;}
.h2_c00063{height:72.450000px;}
.h5_c00063{height:88.168992px;}
.h3_c00063{height:110.250000px;}
.h1_c00063{height:612.000000px;}
.h0_c00063{height:612.300000px;}
.w1_c00063{width:375.750000px;}
.w0_c00063{width:376.050000px;}
.x0_c00063{left:0.000000px;}
.x51_c00063{left:36.943203px;}
.x67_c00063{left:41.713967px;}
.x6a_c00063{left:44.683147px;}
.x5d_c00063{left:45.807911px;}
.x44_c00063{left:46.829267px;}
.x36_c00063{left:47.896500px;}
.x10_c00063{left:49.533000px;}
.x6_c00063{left:50.614500px;}
.x6d_c00063{left:53.644500px;}
.x25_c00063{left:60.905300px;}
.x7_c00063{left:62.048055px;}
.x29_c00063{left:64.695226px;}
.x16_c00063{left:65.889330px;}
.x48_c00063{left:67.633185px;}
.x3a_c00063{left:73.550716px;}
.x40_c00063{left:75.935320px;}
.x62_c00063{left:78.908067px;}
.x2f_c00063{left:84.527652px;}
.x5c_c00063{left:85.602146px;}
.x45_c00063{left:87.029850px;}
.x3b_c00063{left:88.126131px;}
.x57_c00063{left:91.907394px;}
.x5e_c00063{left:93.846824px;}
.x17_c00063{left:95.673516px;}
.x52_c00063{left:97.103424px;}
.x4e_c00063{left:99.185781px;}
.x31_c00063{left:101.947237px;}
.x46_c00063{left:105.638484px;}
.x26_c00063{left:107.073179px;}
.x63_c00063{left:110.288646px;}
.x58_c00063{left:111.587195px;}
.x18_c00063{left:114.821349px;}
.x41_c00063{left:116.720593px;}
.x5f_c00063{left:118.101545px;}
.x32_c00063{left:122.167916px;}
.x2_c00063{left:124.710000px;}
.x3c_c00063{left:130.511316px;}
.x68_c00063{left:134.258552px;}
.x20_c00063{left:136.410606px;}
.x49_c00063{left:138.025893px;}
.x8_c00063{left:139.776748px;}
.x2a_c00063{left:143.209617px;}
.xe_c00063{left:148.917000px;}
.x11_c00063{left:151.676754px;}
.x4f_c00063{left:153.991920px;}
.x1c_c00063{left:155.572071px;}
.x53_c00063{left:157.678779px;}
.x2b_c00063{left:159.176893px;}
.x59_c00063{left:161.147085px;}
.x9_c00063{left:162.978024px;}
.x12_c00063{left:168.590323px;}
.x33_c00063{left:172.132922px;}
.x5a_c00063{left:174.202017px;}
.x37_c00063{left:175.349919px;}
.x27_c00063{left:180.229272px;}
.x1d_c00063{left:182.816300px;}
.x42_c00063{left:184.795932px;}
.x19_c00063{left:186.061538px;}
.x1_c00063{left:188.460000px;}
.x21_c00063{left:189.850113px;}
.x60_c00063{left:193.673897px;}
.x6e_c00063{left:200.556000px;}
.xf_c00063{left:202.870500px;}
.x64_c00063{left:208.670994px;}
.xa_c00063{left:210.577877px;}
.x4a_c00063{left:212.152764px;}
.x3d_c00063{left:214.409559px;}
.x1e_c00063{left:215.799783px;}
.x61_c00063{left:216.945602px;}
.x3_c00063{left:219.747000px;}
.x54_c00063{left:224.589581px;}
.x34_c00063{left:226.870965px;}
.x69_c00063{left:230.316447px;}
.x47_c00063{left:231.676496px;}
.x2c_c00063{left:233.908545px;}
.x65_c00063{left:236.203569px;}
.x4b_c00063{left:239.145852px;}
.x22_c00063{left:240.670242px;}
.x6b_c00063{left:244.073106px;}
.x35_c00063{left:247.073661px;}
.x6f_c00063{left:248.676000px;}
.xb_c00063{left:250.219195px;}
.x66_c00063{left:252.541187px;}
.x4c_c00063{left:254.094393px;}
.x1a_c00063{left:256.840188px;}
.x13_c00063{left:264.398420px;}
.x38_c00063{left:268.967208px;}
.x3e_c00063{left:274.587339px;}
.x1f_c00063{left:276.267255px;}
.x2d_c00063{left:277.909149px;}
.x6c_c00063{left:279.616357px;}
.xd_c00063{left:281.610000px;}
.x4_c00063{left:282.985500px;}
.x14_c00063{left:287.589205px;}
.x5_c00063{left:288.630000px;}
.x55_c00063{left:289.698789px;}
.x3f_c00063{left:294.023739px;}
.x23_c00063{left:295.179678px;}
.xc_c00063{left:296.833035px;}
.x2e_c00063{left:298.140236px;}
.x43_c00063{left:300.743558px;}
.x56_c00063{left:303.066534px;}
.x30_c00063{left:309.366003px;}
.x50_c00063{left:311.866388px;}
.x24_c00063{left:315.638698px;}
.x28_c00063{left:317.088739px;}
.x4d_c00063{left:321.298392px;}
.x39_c00063{left:324.023596px;}
.x15_c00063{left:325.336420px;}
.x5b_c00063{left:328.060504px;}
.x1b_c00063{left:331.825128px;}
.x70_c00063{left:354.780000px;}
.x71_c00063{left:365.580000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
.fs2_c00063{font-size:19.600000pt;}
.fs4_c00063{font-size:23.333333pt;}
.fs15_c00063{font-size:48.533333pt;}
.fs5_c00063{font-size:49.466667pt;}
.fs8_c00063{font-size:50.380491pt;}
.fsd_c00063{font-size:51.309971pt;}
.fs7_c00063{font-size:51.315286pt;}
.fs12_c00063{font-size:52.241180pt;}
.fsc_c00063{font-size:52.242880pt;}
.fsa_c00063{font-size:52.246436pt;}
.fse_c00063{font-size:53.175788pt;}
.fs9_c00063{font-size:53.179408pt;}
.fs11_c00063{font-size:55.972693pt;}
.fs13_c00063{font-size:57.838450pt;}
.fsb_c00063{font-size:57.840331pt;}
.fs6_c00063{font-size:57.846323pt;}
.fs10_c00063{font-size:58.771328pt;}
.fsf_c00063{font-size:59.706148pt;}
.fs14_c00063{font-size:61.627714pt;}
.fs0_c00063{font-size:64.400000pt;}
.fs3_c00063{font-size:78.372438pt;}
.fs1_c00063{font-size:98.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.yb2_c00063{bottom:28.063133pt;}
.yb1_c00063{bottom:28.696893pt;}
.yb0_c00063{bottom:29.128493pt;}
.yaf_c00063{bottom:30.411693pt;}
.yae_c00063{bottom:30.868413pt;}
.yad_c00063{bottom:32.027733pt;}
.yac_c00063{bottom:32.780293pt;}
.yab_c00063{bottom:33.212333pt;}
.yaa_c00063{bottom:34.329333pt;}
.ya9_c00063{bottom:42.961623pt;}
.ya8_c00063{bottom:43.674913pt;}
.ya7_c00063{bottom:44.844271pt;}
.ya6_c00063{bottom:46.183439pt;}
.ya5_c00063{bottom:47.113084pt;}
.ya4_c00063{bottom:49.386719pt;}
.ya3_c00063{bottom:51.408173pt;}
.ya2_c00063{bottom:57.746808pt;}
.ya1_c00063{bottom:58.876037pt;}
.ya0_c00063{bottom:59.502563pt;}
.y9f_c00063{bottom:60.625681pt;}
.y9e_c00063{bottom:63.872743pt;}
.y9d_c00063{bottom:65.284136pt;}
.y9c_c00063{bottom:67.001103pt;}
.y9b_c00063{bottom:72.708321pt;}
.y9a_c00063{bottom:74.825249pt;}
.y99_c00063{bottom:75.305096pt;}
.y98_c00063{bottom:76.113029pt;}
.y97_c00063{bottom:77.290839pt;}
.y96_c00063{bottom:79.002264pt;}
.y95_c00063{bottom:79.524616pt;}
.y94_c00063{bottom:79.923761pt;}
.y93_c00063{bottom:80.907135pt;}
.y92_c00063{bottom:88.289959pt;}
.y91_c00063{bottom:88.785660pt;}
.y90_c00063{bottom:89.323004pt;}
.y8f_c00063{bottom:91.151143pt;}
.y8e_c00063{bottom:91.813756pt;}
.y8d_c00063{bottom:92.382759pt;}
.y8c_c00063{bottom:93.466065pt;}
.y8b_c00063{bottom:93.965521pt;}
.y8a_c00063{bottom:94.656124pt;}
.y89_c00063{bottom:95.427239pt;}
.y88_c00063{bottom:96.023932pt;}
.yb3_c00063{bottom:103.561333pt;}
.y87_c00063{bottom:105.200908pt;}
.y86_c00063{bottom:107.305499pt;}
.y85_c00063{bottom:108.840128pt;}
.y84_c00063{bottom:109.461905pt;}
.y83_c00063{bottom:110.654165pt;}
.y82_c00063{bottom:117.989461pt;}
.y81_c00063{bottom:119.668565pt;}
.y80_c00063{bottom:120.886315pt;}
.y7f_c00063{bottom:122.370261pt;}
.y7e_c00063{bottom:122.741973pt;}
.y7d_c00063{bottom:124.153088pt;}
.y7c_c00063{bottom:124.713429pt;}
.y7b_c00063{bottom:126.010667pt;}
.y7a_c00063{bottom:134.214844pt;}
.y79_c00063{bottom:134.771384pt;}
.y78_c00063{bottom:135.093224pt;}
.y77_c00063{bottom:136.658308pt;}
.y76_c00063{bottom:137.652784pt;}
.y75_c00063{bottom:138.265624pt;}
.y74_c00063{bottom:139.721584pt;}
.y73_c00063{bottom:141.166688pt;}
.y72_c00063{bottom:148.982300pt;}
.y71_c00063{bottom:149.809808pt;}
.y70_c00063{bottom:151.272544pt;}
.y6f_c00063{bottom:153.617920pt;}
.y6e_c00063{bottom:154.117936pt;}
.y6d_c00063{bottom:155.227176pt;}
.y6c_c00063{bottom:156.758904pt;}
.y6b_c00063{bottom:163.814712pt;}
.y6a_c00063{bottom:164.443376pt;}
.y69_c00063{bottom:165.848008pt;}
.y68_c00063{bottom:166.300272pt;}
.y67_c00063{bottom:167.116864pt;}
.y66_c00063{bottom:168.810296pt;}
.y65_c00063{bottom:169.358768pt;}
.y64_c00063{bottom:171.488360pt;}
.y63_c00063{bottom:172.112976pt;}
.y62_c00063{bottom:178.844428pt;}
.y61_c00063{bottom:179.592064pt;}
.y60_c00063{bottom:181.715628pt;}
.y5f_c00063{bottom:182.088412pt;}
.y5e_c00063{bottom:183.984684pt;}
.y5d_c00063{bottom:184.584496pt;}
.y5c_c00063{bottom:185.640464pt;}
.y5b_c00063{bottom:186.220200pt;}
.y5a_c00063{bottom:187.472604pt;}
.y59_c00063{bottom:193.675020pt;}
.y58_c00063{bottom:194.494300pt;}
.y57_c00063{bottom:197.368668pt;}
.y56_c00063{bottom:198.310872pt;}
.y55_c00063{bottom:200.552436pt;}
.y54_c00063{bottom:201.895348pt;}
.y53_c00063{bottom:202.821876pt;}
.y52_c00063{bottom:209.774304pt;}
.y51_c00063{bottom:210.362344pt;}
.y50_c00063{bottom:211.594096pt;}
.y4f_c00063{bottom:212.182664pt;}
.y4e_c00063{bottom:214.133876pt;}
.y4d_c00063{bottom:214.720816pt;}
.y4c_c00063{bottom:216.002696pt;}
.y4b_c00063{bottom:216.444004pt;}
.y4a_c00063{bottom:217.214824pt;}
.y49_c00063{bottom:224.472164pt;}
.y48_c00063{bottom:225.494328pt;}
.y47_c00063{bottom:226.088768pt;}
.y46_c00063{bottom:228.837624pt;}
.y45_c00063{bottom:229.341336pt;}
.y44_c00063{bottom:232.580000pt;}
.y43_c00063{bottom:271.144280pt;}
.y42_c00063{bottom:271.737429pt;}
.y41_c00063{bottom:273.344740pt;}
.y40_c00063{bottom:274.811409pt;}
.y3f_c00063{bottom:275.405119pt;}
.y3e_c00063{bottom:276.515265pt;}
.y3d_c00063{bottom:284.537157pt;}
.y3c_c00063{bottom:286.104579pt;}
.y3b_c00063{bottom:288.424359pt;}
.y3a_c00063{bottom:288.946685pt;}
.y39_c00063{bottom:290.538904pt;}
.y38_c00063{bottom:291.146492pt;}
.y37_c00063{bottom:300.062185pt;}
.y36_c00063{bottom:300.620211pt;}
.y35_c00063{bottom:301.834453pt;}
.y34_c00063{bottom:303.896372pt;}
.y33_c00063{bottom:304.336283pt;}
.y32_c00063{bottom:305.639291pt;}
.y31_c00063{bottom:306.502668pt;}
.y30_c00063{bottom:315.497044pt;}
.y2f_c00063{bottom:316.307745pt;}
.y2e_c00063{bottom:318.524208pt;}
.y2d_c00063{bottom:319.151019pt;}
.y2c_c00063{bottom:321.103857pt;}
.y2b_c00063{bottom:322.336249pt;}
.y2a_c00063{bottom:329.182620pt;}
.y29_c00063{bottom:329.819760pt;}
.y28_c00063{bottom:331.517307pt;}
.y27_c00063{bottom:333.099960pt;}
.y26_c00063{bottom:333.738547pt;}
.y25_c00063{bottom:334.764187pt;}
.y24_c00063{bottom:337.452000pt;}
.y23_c00063{bottom:343.597405pt;}
.y22_c00063{bottom:345.368413pt;}
.y21_c00063{bottom:347.305309pt;}
.y20_c00063{bottom:348.361837pt;}
.y1f_c00063{bottom:349.234525pt;}
.y1e_c00063{bottom:350.548189pt;}
.y1d_c00063{bottom:352.103917pt;}
.y1c_c00063{bottom:358.454533pt;}
.y1b_c00063{bottom:360.856453pt;}
.y1a_c00063{bottom:363.123637pt;}
.y19_c00063{bottom:363.884389pt;}
.y18_c00063{bottom:365.405605pt;}
.y17_c00063{bottom:366.018949pt;}
.y16_c00063{bottom:366.972997pt;}
.y15_c00063{bottom:373.498789pt;}
.y14_c00063{bottom:374.707909pt;}
.y13_c00063{bottom:375.450757pt;}
.y12_c00063{bottom:378.519685pt;}
.y11_c00063{bottom:379.061461pt;}
.y10_c00063{bottom:382.333333pt;}
.yb4_c00063{bottom:382.800000pt;}
.yf_c00063{bottom:414.792000pt;}
.ye_c00063{bottom:416.662667pt;}
.yc_c00063{bottom:434.677120pt;}
.yd_c00063{bottom:435.720000pt;}
.yb_c00063{bottom:436.170256pt;}
.ya_c00063{bottom:437.440048pt;}
.y9_c00063{bottom:438.964768pt;}
.y8_c00063{bottom:439.707952pt;}
.y7_c00063{bottom:442.197760pt;}
.y6_c00063{bottom:442.564000pt;}
.y5_c00063{bottom:459.840000pt;}
.y4_c00063{bottom:477.632000pt;}
.y3_c00063{bottom:480.217333pt;}
.y2_c00063{bottom:484.102667pt;}
.y1_c00063{bottom:508.682667pt;}
.h4_c00063{height:19.600000pt;}
.h6_c00063{height:23.333333pt;}
.h17_c00063{height:48.533333pt;}
.h7_c00063{height:49.466667pt;}
.ha_c00063{height:50.380491pt;}
.hf_c00063{height:51.309971pt;}
.h9_c00063{height:51.315286pt;}
.h14_c00063{height:52.241180pt;}
.he_c00063{height:52.242880pt;}
.hc_c00063{height:52.246436pt;}
.h10_c00063{height:53.175788pt;}
.hb_c00063{height:53.179408pt;}
.h13_c00063{height:55.972693pt;}
.h15_c00063{height:57.838450pt;}
.hd_c00063{height:57.840331pt;}
.h8_c00063{height:57.846323pt;}
.h12_c00063{height:58.771328pt;}
.h11_c00063{height:59.706148pt;}
.h16_c00063{height:61.627714pt;}
.h2_c00063{height:64.400000pt;}
.h5_c00063{height:78.372438pt;}
.h3_c00063{height:98.000000pt;}
.h1_c00063{height:544.000000pt;}
.h0_c00063{height:544.266667pt;}
.w1_c00063{width:334.000000pt;}
.w0_c00063{width:334.266667pt;}
.x0_c00063{left:0.000000pt;}
.x51_c00063{left:32.838403pt;}
.x67_c00063{left:37.079081pt;}
.x6a_c00063{left:39.718353pt;}
.x5d_c00063{left:40.718143pt;}
.x44_c00063{left:41.626015pt;}
.x36_c00063{left:42.574667pt;}
.x10_c00063{left:44.029333pt;}
.x6_c00063{left:44.990667pt;}
.x6d_c00063{left:47.684000pt;}
.x25_c00063{left:54.138044pt;}
.x7_c00063{left:55.153827pt;}
.x29_c00063{left:57.506868pt;}
.x16_c00063{left:58.568293pt;}
.x48_c00063{left:60.118387pt;}
.x3a_c00063{left:65.378415pt;}
.x40_c00063{left:67.498063pt;}
.x62_c00063{left:70.140504pt;}
.x2f_c00063{left:75.135691pt;}
.x5c_c00063{left:76.090796pt;}
.x45_c00063{left:77.359867pt;}
.x3b_c00063{left:78.334339pt;}
.x57_c00063{left:81.695461pt;}
.x5e_c00063{left:83.419399pt;}
.x17_c00063{left:85.043125pt;}
.x52_c00063{left:86.314155pt;}
.x4e_c00063{left:88.165139pt;}
.x31_c00063{left:90.619767pt;}
.x46_c00063{left:93.900875pt;}
.x26_c00063{left:95.176159pt;}
.x63_c00063{left:98.034352pt;}
.x58_c00063{left:99.188617pt;}
.x18_c00063{left:102.063421pt;}
.x41_c00063{left:103.751639pt;}
.x5f_c00063{left:104.979151pt;}
.x32_c00063{left:108.593703pt;}
.x2_c00063{left:110.853333pt;}
.x3c_c00063{left:116.010059pt;}
.x68_c00063{left:119.340935pt;}
.x20_c00063{left:121.253872pt;}
.x49_c00063{left:122.689683pt;}
.x8_c00063{left:124.245999pt;}
.x2a_c00063{left:127.297437pt;}
.xe_c00063{left:132.370667pt;}
.x11_c00063{left:134.823781pt;}
.x4f_c00063{left:136.881707pt;}
.x1c_c00063{left:138.286285pt;}
.x53_c00063{left:140.158915pt;}
.x2b_c00063{left:141.490572pt;}
.x59_c00063{left:143.241853pt;}
.x9_c00063{left:144.869355pt;}
.x12_c00063{left:149.858065pt;}
.x33_c00063{left:153.007041pt;}
.x5a_c00063{left:154.846237pt;}
.x37_c00063{left:155.866595pt;}
.x27_c00063{left:160.203797pt;}
.x1d_c00063{left:162.503377pt;}
.x42_c00063{left:164.263051pt;}
.x19_c00063{left:165.388033pt;}
.x1_c00063{left:167.520000pt;}
.x21_c00063{left:168.755656pt;}
.x60_c00063{left:172.154575pt;}
.x6e_c00063{left:178.272000pt;}
.xf_c00063{left:180.329333pt;}
.x64_c00063{left:185.485328pt;}
.xa_c00063{left:187.180335pt;}
.x4a_c00063{left:188.580235pt;}
.x3d_c00063{left:190.586275pt;}
.x1e_c00063{left:191.822029pt;}
.x61_c00063{left:192.840535pt;}
.x3_c00063{left:195.330667pt;}
.x54_c00063{left:199.635183pt;}
.x34_c00063{left:201.663080pt;}
.x69_c00063{left:204.725731pt;}
.x47_c00063{left:205.934663pt;}
.x2c_c00063{left:207.918707pt;}
.x65_c00063{left:209.958728pt;}
.x4b_c00063{left:212.574091pt;}
.x22_c00063{left:213.929104pt;}
.x6b_c00063{left:216.953872pt;}
.x35_c00063{left:219.621032pt;}
.x6f_c00063{left:221.045333pt;}
.xb_c00063{left:222.417063pt;}
.x66_c00063{left:224.481055pt;}
.x4c_c00063{left:225.861683pt;}
.x1a_c00063{left:228.302389pt;}
.x13_c00063{left:235.020817pt;}
.x38_c00063{left:239.081963pt;}
.x3e_c00063{left:244.077635pt;}
.x1f_c00063{left:245.570893pt;}
.x2d_c00063{left:247.030355pt;}
.x6c_c00063{left:248.547873pt;}
.xd_c00063{left:250.320000pt;}
.x4_c00063{left:251.542667pt;}
.x14_c00063{left:255.634849pt;}
.x5_c00063{left:256.560000pt;}
.x55_c00063{left:257.510035pt;}
.x3f_c00063{left:261.354435pt;}
.x23_c00063{left:262.381936pt;}
.xc_c00063{left:263.851587pt;}
.x2e_c00063{left:265.013543pt;}
.x43_c00063{left:267.327607pt;}
.x56_c00063{left:269.392475pt;}
.x30_c00063{left:274.992003pt;}
.x50_c00063{left:277.214567pt;}
.x24_c00063{left:280.567732pt;}
.x28_c00063{left:281.856657pt;}
.x4d_c00063{left:285.598571pt;}
.x39_c00063{left:288.020975pt;}
.x15_c00063{left:289.187929pt;}
.x5b_c00063{left:291.609337pt;}
.x1b_c00063{left:294.955669pt;}
.x70_c00063{left:315.360000pt;}
.x71_c00063{left:324.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00064 {
    display:none;
  }
  .loading-indicator_c00064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00064 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00064 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00064" -> "#page-container .classname_c00064")
 */
.pf_c00064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00064 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00064 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00064 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00064 {overflow:visible;}
  }
}
.c_c00064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00064 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00064:after { /* webkit #35443 */
  content: '';
}
.t_c00064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00064 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00064 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00064 { /* info for Javascript */
  display:none;
}
.l_c00064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00064:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00064 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00064.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127880,0.000000,0.000000,0.250000,0,0);}
.m76_c00064{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.mac_c00064{transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m91_c00064{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m74_c00064{transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);}
.m72_c00064{transform:matrix(0.153785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153785,0.000000,0.000000,0.250000,0,0);}
.me5_c00064{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.m8b_c00064{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.mcf_c00064{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m92_c00064{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);}
.mb4_c00064{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.mcb_c00064{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m8e_c00064{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);}
.mc7_c00064{transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00064{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m78_c00064{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);}
.mb8_c00064{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.m8f_c00064{transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);}
.m88_c00064{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.m2a_c00064{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);}
.m99_c00064{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.me0_c00064{transform:matrix(0.170233,0.002043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170233,0.002043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170233,0.002043,-0.003000,0.249982,0,0);}
.m9a_c00064{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m7f_c00064{transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);}
.me1_c00064{transform:matrix(0.170368,0.002044,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170368,0.002044,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170368,0.002044,-0.003000,0.249982,0,0);}
.m4e_c00064{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.mb9_c00064{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mec_c00064{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);}
.md2_c00064{transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);}
.me9_c00064{transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m43_c00064{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);}
.mb7_c00064{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m79_c00064{transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m84_c00064{transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);}
.me6_c00064{transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m6f_c00064{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.178835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178835,0.000000,0.000000,0.250000,0,0);}
.mb1_c00064{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m90_c00064{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.me8_c00064{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m75_c00064{transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.me7_c00064{transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00064{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.mbb_c00064{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);}
.m46_c00064{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.m93_c00064{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md5_c00064{transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m7c_c00064{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);}
.m50_c00064{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.mb5_c00064{transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);}
.m96_c00064{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m8c_c00064{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.ma7_c00064{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m26_c00064{transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);}
.mc5_c00064{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m8d_c00064{transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);}
.m83_c00064{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.me4_c00064{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.me2_c00064{transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);}
.m1e_c00064{transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.mc3_c00064{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);}
.mca_c00064{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);}
.mbc_c00064{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m69_c00064{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.mb3_c00064{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m73_c00064{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.maf_c00064{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m7d_c00064{transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);}
.mc6_c00064{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.me3_c00064{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.mcd_c00064{transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);}
.m9f_c00064{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.mde_c00064{transform:matrix(0.195726,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195726,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195726,0.002349,-0.003000,0.249982,0,0);}
.m4f_c00064{transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);}
.ma8_c00064{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.mdd_c00064{transform:matrix(0.196191,0.002354,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196191,0.002354,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196191,0.002354,-0.003000,0.249982,0,0);}
.md6_c00064{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m45_c00064{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.mc9_c00064{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00064{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.mb0_c00064{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mea_c00064{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m42_c00064{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m7a_c00064{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m97_c00064{transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);}
.mf0_c00064{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.mcc_c00064{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);}
.mee_c00064{transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.m9e_c00064{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.m54_c00064{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m85_c00064{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m89_c00064{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.mc1_c00064{transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.m5d_c00064{transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);}
.mf1_c00064{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00064{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m9b_c00064{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.ma4_c00064{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.mdf_c00064{transform:matrix(0.207415,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207415,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207415,0.002489,-0.003000,0.249982,0,0);}
.mbd_c00064{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.mb2_c00064{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.ma3_c00064{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);}
.m81_c00064{transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);}
.m9c_c00064{transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.mce_c00064{transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m5f_c00064{transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);}
.ma6_c00064{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);}
.m94_c00064{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.mae_c00064{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m7b_c00064{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.maa_c00064{transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);}
.ma5_c00064{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);}
.mc8_c00064{transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);}
.md3_c00064{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m30_c00064{transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.md7_c00064{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.mef_c00064{transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);}
.ma1_c00064{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);}
.mda_c00064{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.md8_c00064{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.meb_c00064{transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00064{transform:matrix(0.219844,0.002638,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219844,0.002638,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219844,0.002638,-0.003000,0.249982,0,0);}
.m62_c00064{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00064{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.med_c00064{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.mba_c00064{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);}
.m77_c00064{transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);}
.m82_c00064{transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);}
.mb6_c00064{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.mc2_c00064{transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{transform:matrix(0.227670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227670,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.mdb_c00064{transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);}
.ma2_c00064{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.md4_c00064{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.md9_c00064{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m80_c00064{transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00064{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.mbe_c00064{transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);}
.m7e_c00064{transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.md0_c00064{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m86_c00064{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.mad_c00064{transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);}
.m71_c00064{transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);}
.md1_c00064{transform:matrix(0.339240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339240,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
.fc0_c00064{color:transparent;}
.fs0_c00064{font-size:30.450000px;}
.fsc_c00064{font-size:55.650000px;}
.fs9_c00064{font-size:58.800000px;}
.fsa_c00064{font-size:59.850000px;}
.fs6_c00064{font-size:60.900000px;}
.fsd_c00064{font-size:61.954460px;}
.fs7_c00064{font-size:63.000000px;}
.fsb_c00064{font-size:64.050000px;}
.fs3_c00064{font-size:65.100000px;}
.fs2_c00064{font-size:66.150000px;}
.fs5_c00064{font-size:67.200000px;}
.fs4_c00064{font-size:68.250000px;}
.fs1_c00064{font-size:69.300000px;}
.fs8_c00064{font-size:70.350000px;}
.y0_c00064{bottom:0.000000px;}
.y8d_c00064{bottom:32.482500px;}
.y8c_c00064{bottom:32.832000px;}
.y8b_c00064{bottom:33.258000px;}
.y8a_c00064{bottom:33.795000px;}
.y89_c00064{bottom:34.302000px;}
.y88_c00064{bottom:34.564500px;}
.y87_c00064{bottom:34.983000px;}
.y86_c00064{bottom:35.371500px;}
.y85_c00064{bottom:51.000000px;}
.y84_c00064{bottom:66.615972px;}
.y83_c00064{bottom:66.971922px;}
.y82_c00064{bottom:67.243938px;}
.y81_c00064{bottom:68.008956px;}
.y80_c00064{bottom:68.595504px;}
.y7f_c00064{bottom:69.194904px;}
.y7e_c00064{bottom:69.661500px;}
.y7d_c00064{bottom:85.335000px;}
.y7c_c00064{bottom:101.293500px;}
.y7b_c00064{bottom:101.479500px;}
.y7a_c00064{bottom:101.979000px;}
.y79_c00064{bottom:102.175500px;}
.y78_c00064{bottom:103.171500px;}
.y77_c00064{bottom:103.693500px;}
.y76_c00064{bottom:103.996500px;}
.y75_c00064{bottom:104.223000px;}
.y74_c00064{bottom:120.352500px;}
.y73_c00064{bottom:137.431500px;}
.y72_c00064{bottom:154.407000px;}
.y71_c00064{bottom:170.898000px;}
.y70_c00064{bottom:186.987000px;}
.y6f_c00064{bottom:204.235500px;}
.y6e_c00064{bottom:221.160000px;}
.y6d_c00064{bottom:238.981500px;}
.y6c_c00064{bottom:255.568500px;}
.y6b_c00064{bottom:272.460000px;}
.y6a_c00064{bottom:289.740000px;}
.y69_c00064{bottom:307.021500px;}
.y62_c00064{bottom:322.108500px;}
.y63_c00064{bottom:322.390500px;}
.y64_c00064{bottom:323.350500px;}
.y65_c00064{bottom:323.920500px;}
.y66_c00064{bottom:324.301500px;}
.y67_c00064{bottom:325.144500px;}
.y68_c00064{bottom:325.290000px;}
.y5a_c00064{bottom:338.580000px;}
.y5b_c00064{bottom:338.917500px;}
.y5c_c00064{bottom:339.157500px;}
.y5d_c00064{bottom:339.333000px;}
.y5e_c00064{bottom:339.951000px;}
.y5f_c00064{bottom:340.536000px;}
.y60_c00064{bottom:340.728000px;}
.y61_c00064{bottom:340.954500px;}
.y54_c00064{bottom:354.780000px;}
.y55_c00064{bottom:355.386000px;}
.y56_c00064{bottom:355.809000px;}
.y57_c00064{bottom:356.676000px;}
.y58_c00064{bottom:356.895000px;}
.y59_c00064{bottom:357.628500px;}
.y53_c00064{bottom:373.687500px;}
.y4c_c00064{bottom:387.993000px;}
.y4d_c00064{bottom:388.518000px;}
.y4e_c00064{bottom:389.836500px;}
.y4f_c00064{bottom:390.127500px;}
.y50_c00064{bottom:390.369000px;}
.y51_c00064{bottom:391.500000px;}
.y52_c00064{bottom:391.911000px;}
.y45_c00064{bottom:403.926000px;}
.y46_c00064{bottom:404.341500px;}
.y47_c00064{bottom:404.773500px;}
.y48_c00064{bottom:405.751500px;}
.y49_c00064{bottom:407.055000px;}
.y4a_c00064{bottom:407.572500px;}
.y4b_c00064{bottom:408.189000px;}
.y3c_c00064{bottom:421.744500px;}
.y3d_c00064{bottom:422.145000px;}
.y3e_c00064{bottom:422.448000px;}
.y3f_c00064{bottom:422.800500px;}
.y40_c00064{bottom:423.723000px;}
.y41_c00064{bottom:424.530000px;}
.y42_c00064{bottom:424.845000px;}
.y43_c00064{bottom:425.505000px;}
.y44_c00064{bottom:425.688000px;}
.y35_c00064{bottom:438.216000px;}
.y36_c00064{bottom:438.936000px;}
.y37_c00064{bottom:440.118000px;}
.y38_c00064{bottom:440.521500px;}
.y39_c00064{bottom:441.711000px;}
.y3a_c00064{bottom:442.212000px;}
.y3b_c00064{bottom:442.776000px;}
.y2e_c00064{bottom:456.036000px;}
.y2f_c00064{bottom:456.810000px;}
.y30_c00064{bottom:457.293000px;}
.y31_c00064{bottom:457.767000px;}
.y32_c00064{bottom:458.791500px;}
.y33_c00064{bottom:459.210000px;}
.y34_c00064{bottom:459.981000px;}
.y25_c00064{bottom:471.964500px;}
.y26_c00064{bottom:472.687500px;}
.y27_c00064{bottom:472.957500px;}
.y28_c00064{bottom:473.590500px;}
.y29_c00064{bottom:473.850000px;}
.y2a_c00064{bottom:474.271500px;}
.y2b_c00064{bottom:474.787500px;}
.y2c_c00064{bottom:475.075500px;}
.y2d_c00064{bottom:475.546500px;}
.y1d_c00064{bottom:488.976000px;}
.y1e_c00064{bottom:489.948000px;}
.y1f_c00064{bottom:490.633500px;}
.y20_c00064{bottom:491.088000px;}
.y21_c00064{bottom:491.700000px;}
.y22_c00064{bottom:492.189000px;}
.y23_c00064{bottom:492.531000px;}
.y24_c00064{bottom:493.218000px;}
.y16_c00064{bottom:505.717500px;}
.y17_c00064{bottom:506.523000px;}
.y18_c00064{bottom:507.963000px;}
.y19_c00064{bottom:508.200000px;}
.y1a_c00064{bottom:509.370000px;}
.y1b_c00064{bottom:509.860500px;}
.y1c_c00064{bottom:510.502500px;}
.yf_c00064{bottom:522.726000px;}
.y10_c00064{bottom:523.137000px;}
.y11_c00064{bottom:523.596000px;}
.y12_c00064{bottom:524.806500px;}
.y13_c00064{bottom:526.231500px;}
.y14_c00064{bottom:527.842500px;}
.y15_c00064{bottom:528.294000px;}
.ya_c00064{bottom:539.464500px;}
.yb_c00064{bottom:540.775500px;}
.yc_c00064{bottom:541.335000px;}
.yd_c00064{bottom:542.259000px;}
.ye_c00064{bottom:543.304500px;}
.y2_c00064{bottom:556.476000px;}
.y3_c00064{bottom:557.757000px;}
.y4_c00064{bottom:558.172500px;}
.y5_c00064{bottom:558.573000px;}
.y6_c00064{bottom:560.103000px;}
.y7_c00064{bottom:560.367000px;}
.y8_c00064{bottom:560.904000px;}
.y9_c00064{bottom:562.507500px;}
.y1_c00064{bottom:576.894000px;}
.h2_c00064{height:30.450000px;}
.he_c00064{height:55.650000px;}
.hb_c00064{height:58.800000px;}
.hc_c00064{height:59.850000px;}
.h8_c00064{height:60.900000px;}
.hf_c00064{height:61.954460px;}
.h9_c00064{height:63.000000px;}
.hd_c00064{height:64.050000px;}
.h5_c00064{height:65.100000px;}
.h4_c00064{height:66.150000px;}
.h7_c00064{height:67.200000px;}
.h6_c00064{height:68.250000px;}
.h3_c00064{height:69.300000px;}
.ha_c00064{height:70.350000px;}
.h1_c00064{height:612.000000px;}
.h0_c00064{height:612.300000px;}
.w1_c00064{width:375.750000px;}
.w0_c00064{width:376.050000px;}
.x0_c00064{left:0.000000px;}
.x5_c00064{left:17.013000px;}
.x16_c00064{left:18.061500px;}
.x21_c00064{left:20.638500px;}
.x33_c00064{left:21.799500px;}
.x45_c00064{left:23.346000px;}
.x52_c00064{left:24.567000px;}
.x59_c00064{left:25.647000px;}
.x5f_c00064{left:27.267000px;}
.x65_c00064{left:28.347000px;}
.x72_c00064{left:29.430000px;}
.x7a_c00064{left:30.508500px;}
.x81_c00064{left:32.842500px;}
.x11_c00064{left:37.501500px;}
.x66_c00064{left:42.927000px;}
.x3b_c00064{left:46.296000px;}
.x34_c00064{left:48.490500px;}
.x68_c00064{left:49.680000px;}
.x6c_c00064{left:51.030000px;}
.x75_c00064{left:52.531500px;}
.x5b_c00064{left:55.887000px;}
.x46_c00064{left:57.076500px;}
.x12_c00064{left:60.436500px;}
.x2d_c00064{left:63.652500px;}
.x40_c00064{left:64.798500px;}
.x35_c00064{left:68.731500px;}
.x7e_c00064{left:70.339500px;}
.x3c_c00064{left:71.751000px;}
.x56_c00064{left:73.437000px;}
.x6_c00064{left:75.216000px;}
.x22_c00064{left:76.284000px;}
.x42_c00064{left:77.559000px;}
.x1c_c00064{left:79.020000px;}
.x47_c00064{left:81.063000px;}
.x73_c00064{left:82.350000px;}
.x4e_c00064{left:85.857000px;}
.x36_c00064{left:92.232000px;}
.x7_c00064{left:94.101000px;}
.x6d_c00064{left:95.310000px;}
.x23_c00064{left:97.024500px;}
.x48_c00064{left:98.656500px;}
.x53_c00064{left:100.167000px;}
.xd_c00064{left:104.064000px;}
.x5a_c00064{left:106.377000px;}
.x1_c00064{left:108.000000px;}
.x29_c00064{left:110.235000px;}
.x8_c00064{left:112.300500px;}
.x60_c00064{left:113.937000px;}
.x43_c00064{left:115.954500px;}
.x13_c00064{left:120.930000px;}
.x7b_c00064{left:122.038500px;}
.x61_c00064{left:126.087000px;}
.x3d_c00064{left:129.262500px;}
.x54_c00064{left:132.027000px;}
.x2e_c00064{left:133.219500px;}
.x76_c00064{left:134.898000px;}
.x17_c00064{left:136.207500px;}
.x67_c00064{left:139.047000px;}
.xe_c00064{left:141.352500px;}
.x2a_c00064{left:144.054000px;}
.x24_c00064{left:145.675500px;}
.x18_c00064{left:148.710000px;}
.x1d_c00064{left:150.303000px;}
.x37_c00064{left:153.733500px;}
.x2f_c00064{left:156.996000px;}
.x49_c00064{left:160.485000px;}
.x6e_c00064{left:162.810000px;}
.x25_c00064{left:165.600000px;}
.x2_c00064{left:166.860000px;}
.x7f_c00064{left:169.168500px;}
.x3f_c00064{left:174.570000px;}
.x69_c00064{left:176.580000px;}
.x9_c00064{left:181.861500px;}
.x62_c00064{left:184.407000px;}
.x4f_c00064{left:185.487000px;}
.x1e_c00064{left:188.572500px;}
.x14_c00064{left:192.165000px;}
.xa_c00064{left:193.842000px;}
.x5c_c00064{left:195.747000px;}
.x26_c00064{left:198.012000px;}
.xf_c00064{left:202.915500px;}
.x3e_c00064{left:205.938000px;}
.x38_c00064{left:207.528000px;}
.x19_c00064{left:210.268500px;}
.x44_c00064{left:214.753500px;}
.x74_c00064{left:217.080000px;}
.xb_c00064{left:218.220000px;}
.x4b_c00064{left:222.898500px;}
.x6a_c00064{left:225.180000px;}
.x30_c00064{left:226.924500px;}
.x39_c00064{left:228.531000px;}
.x3_c00064{left:232.740000px;}
.x57_c00064{left:234.087000px;}
.x1a_c00064{left:236.122500px;}
.x27_c00064{left:237.706500px;}
.x1f_c00064{left:240.502500px;}
.x50_c00064{left:243.537000px;}
.x6b_c00064{left:245.700000px;}
.x2b_c00064{left:247.159500px;}
.x55_c00064{left:250.287000px;}
.x6f_c00064{left:252.990000px;}
.x77_c00064{left:254.203500px;}
.x31_c00064{left:256.365000px;}
.x63_c00064{left:258.387000px;}
.x28_c00064{left:259.912500px;}
.x4a_c00064{left:260.941500px;}
.x51_c00064{left:262.437000px;}
.x82_c00064{left:263.691000px;}
.x5d_c00064{left:265.947000px;}
.x1b_c00064{left:269.890500px;}
.x10_c00064{left:272.653500px;}
.x80_c00064{left:275.400000px;}
.x7c_c00064{left:277.558500px;}
.x4_c00064{left:280.800000px;}
.x20_c00064{left:283.429500px;}
.x3a_c00064{left:284.695500px;}
.x70_c00064{left:288.090000px;}
.x32_c00064{left:289.570500px;}
.xc_c00064{left:291.073500px;}
.x15_c00064{left:295.279500px;}
.x4c_c00064{left:299.554500px;}
.x5e_c00064{left:300.777000px;}
.x2c_c00064{left:302.232000px;}
.x78_c00064{left:304.126500px;}
.x64_c00064{left:305.367000px;}
.x58_c00064{left:309.147000px;}
.x7d_c00064{left:311.038500px;}
.x4d_c00064{left:312.741000px;}
.x71_c00064{left:314.010000px;}
.x41_c00064{left:316.978500px;}
.x79_c00064{left:322.789500px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
.fs0_c00064{font-size:27.066667pt;}
.fsc_c00064{font-size:49.466667pt;}
.fs9_c00064{font-size:52.266667pt;}
.fsa_c00064{font-size:53.200000pt;}
.fs6_c00064{font-size:54.133333pt;}
.fsd_c00064{font-size:55.070631pt;}
.fs7_c00064{font-size:56.000000pt;}
.fsb_c00064{font-size:56.933333pt;}
.fs3_c00064{font-size:57.866667pt;}
.fs2_c00064{font-size:58.800000pt;}
.fs5_c00064{font-size:59.733333pt;}
.fs4_c00064{font-size:60.666667pt;}
.fs1_c00064{font-size:61.600000pt;}
.fs8_c00064{font-size:62.533333pt;}
.y0_c00064{bottom:0.000000pt;}
.y8d_c00064{bottom:28.873333pt;}
.y8c_c00064{bottom:29.184000pt;}
.y8b_c00064{bottom:29.562667pt;}
.y8a_c00064{bottom:30.040000pt;}
.y89_c00064{bottom:30.490667pt;}
.y88_c00064{bottom:30.724000pt;}
.y87_c00064{bottom:31.096000pt;}
.y86_c00064{bottom:31.441333pt;}
.y85_c00064{bottom:45.333333pt;}
.y84_c00064{bottom:59.214197pt;}
.y83_c00064{bottom:59.530597pt;}
.y82_c00064{bottom:59.772389pt;}
.y81_c00064{bottom:60.452405pt;}
.y80_c00064{bottom:60.973781pt;}
.y7f_c00064{bottom:61.506581pt;}
.y7e_c00064{bottom:61.921333pt;}
.y7d_c00064{bottom:75.853333pt;}
.y7c_c00064{bottom:90.038667pt;}
.y7b_c00064{bottom:90.204000pt;}
.y7a_c00064{bottom:90.648000pt;}
.y79_c00064{bottom:90.822667pt;}
.y78_c00064{bottom:91.708000pt;}
.y77_c00064{bottom:92.172000pt;}
.y76_c00064{bottom:92.441333pt;}
.y75_c00064{bottom:92.642667pt;}
.y74_c00064{bottom:106.980000pt;}
.y73_c00064{bottom:122.161333pt;}
.y72_c00064{bottom:137.250667pt;}
.y71_c00064{bottom:151.909333pt;}
.y70_c00064{bottom:166.210667pt;}
.y6f_c00064{bottom:181.542667pt;}
.y6e_c00064{bottom:196.586667pt;}
.y6d_c00064{bottom:212.428000pt;}
.y6c_c00064{bottom:227.172000pt;}
.y6b_c00064{bottom:242.186667pt;}
.y6a_c00064{bottom:257.546667pt;}
.y69_c00064{bottom:272.908000pt;}
.y62_c00064{bottom:286.318667pt;}
.y63_c00064{bottom:286.569333pt;}
.y64_c00064{bottom:287.422667pt;}
.y65_c00064{bottom:287.929333pt;}
.y66_c00064{bottom:288.268000pt;}
.y67_c00064{bottom:289.017333pt;}
.y68_c00064{bottom:289.146667pt;}
.y5a_c00064{bottom:300.960000pt;}
.y5b_c00064{bottom:301.260000pt;}
.y5c_c00064{bottom:301.473333pt;}
.y5d_c00064{bottom:301.629333pt;}
.y5e_c00064{bottom:302.178667pt;}
.y5f_c00064{bottom:302.698667pt;}
.y60_c00064{bottom:302.869333pt;}
.y61_c00064{bottom:303.070667pt;}
.y54_c00064{bottom:315.360000pt;}
.y55_c00064{bottom:315.898667pt;}
.y56_c00064{bottom:316.274667pt;}
.y57_c00064{bottom:317.045333pt;}
.y58_c00064{bottom:317.240000pt;}
.y59_c00064{bottom:317.892000pt;}
.y53_c00064{bottom:332.166667pt;}
.y4c_c00064{bottom:344.882667pt;}
.y4d_c00064{bottom:345.349333pt;}
.y4e_c00064{bottom:346.521333pt;}
.y4f_c00064{bottom:346.780000pt;}
.y50_c00064{bottom:346.994667pt;}
.y51_c00064{bottom:348.000000pt;}
.y52_c00064{bottom:348.365333pt;}
.y45_c00064{bottom:359.045333pt;}
.y46_c00064{bottom:359.414667pt;}
.y47_c00064{bottom:359.798667pt;}
.y48_c00064{bottom:360.668000pt;}
.y49_c00064{bottom:361.826667pt;}
.y4a_c00064{bottom:362.286667pt;}
.y4b_c00064{bottom:362.834667pt;}
.y3c_c00064{bottom:374.884000pt;}
.y3d_c00064{bottom:375.240000pt;}
.y3e_c00064{bottom:375.509333pt;}
.y3f_c00064{bottom:375.822667pt;}
.y40_c00064{bottom:376.642667pt;}
.y41_c00064{bottom:377.360000pt;}
.y42_c00064{bottom:377.640000pt;}
.y43_c00064{bottom:378.226667pt;}
.y44_c00064{bottom:378.389333pt;}
.y35_c00064{bottom:389.525333pt;}
.y36_c00064{bottom:390.165333pt;}
.y37_c00064{bottom:391.216000pt;}
.y38_c00064{bottom:391.574667pt;}
.y39_c00064{bottom:392.632000pt;}
.y3a_c00064{bottom:393.077333pt;}
.y3b_c00064{bottom:393.578667pt;}
.y2e_c00064{bottom:405.365333pt;}
.y2f_c00064{bottom:406.053333pt;}
.y30_c00064{bottom:406.482667pt;}
.y31_c00064{bottom:406.904000pt;}
.y32_c00064{bottom:407.814667pt;}
.y33_c00064{bottom:408.186667pt;}
.y34_c00064{bottom:408.872000pt;}
.y25_c00064{bottom:419.524000pt;}
.y26_c00064{bottom:420.166667pt;}
.y27_c00064{bottom:420.406667pt;}
.y28_c00064{bottom:420.969333pt;}
.y29_c00064{bottom:421.200000pt;}
.y2a_c00064{bottom:421.574667pt;}
.y2b_c00064{bottom:422.033333pt;}
.y2c_c00064{bottom:422.289333pt;}
.y2d_c00064{bottom:422.708000pt;}
.y1d_c00064{bottom:434.645333pt;}
.y1e_c00064{bottom:435.509333pt;}
.y1f_c00064{bottom:436.118667pt;}
.y20_c00064{bottom:436.522667pt;}
.y21_c00064{bottom:437.066667pt;}
.y22_c00064{bottom:437.501333pt;}
.y23_c00064{bottom:437.805333pt;}
.y24_c00064{bottom:438.416000pt;}
.y16_c00064{bottom:449.526667pt;}
.y17_c00064{bottom:450.242667pt;}
.y18_c00064{bottom:451.522667pt;}
.y19_c00064{bottom:451.733333pt;}
.y1a_c00064{bottom:452.773333pt;}
.y1b_c00064{bottom:453.209333pt;}
.y1c_c00064{bottom:453.780000pt;}
.yf_c00064{bottom:464.645333pt;}
.y10_c00064{bottom:465.010667pt;}
.y11_c00064{bottom:465.418667pt;}
.y12_c00064{bottom:466.494667pt;}
.y13_c00064{bottom:467.761333pt;}
.y14_c00064{bottom:469.193333pt;}
.y15_c00064{bottom:469.594667pt;}
.ya_c00064{bottom:479.524000pt;}
.yb_c00064{bottom:480.689333pt;}
.yc_c00064{bottom:481.186667pt;}
.yd_c00064{bottom:482.008000pt;}
.ye_c00064{bottom:482.937333pt;}
.y2_c00064{bottom:494.645333pt;}
.y3_c00064{bottom:495.784000pt;}
.y4_c00064{bottom:496.153333pt;}
.y5_c00064{bottom:496.509333pt;}
.y6_c00064{bottom:497.869333pt;}
.y7_c00064{bottom:498.104000pt;}
.y8_c00064{bottom:498.581333pt;}
.y9_c00064{bottom:500.006667pt;}
.y1_c00064{bottom:512.794667pt;}
.h2_c00064{height:27.066667pt;}
.he_c00064{height:49.466667pt;}
.hb_c00064{height:52.266667pt;}
.hc_c00064{height:53.200000pt;}
.h8_c00064{height:54.133333pt;}
.hf_c00064{height:55.070631pt;}
.h9_c00064{height:56.000000pt;}
.hd_c00064{height:56.933333pt;}
.h5_c00064{height:57.866667pt;}
.h4_c00064{height:58.800000pt;}
.h7_c00064{height:59.733333pt;}
.h6_c00064{height:60.666667pt;}
.h3_c00064{height:61.600000pt;}
.ha_c00064{height:62.533333pt;}
.h1_c00064{height:544.000000pt;}
.h0_c00064{height:544.266667pt;}
.w1_c00064{width:334.000000pt;}
.w0_c00064{width:334.266667pt;}
.x0_c00064{left:0.000000pt;}
.x5_c00064{left:15.122667pt;}
.x16_c00064{left:16.054667pt;}
.x21_c00064{left:18.345333pt;}
.x33_c00064{left:19.377333pt;}
.x45_c00064{left:20.752000pt;}
.x52_c00064{left:21.837333pt;}
.x59_c00064{left:22.797333pt;}
.x5f_c00064{left:24.237333pt;}
.x65_c00064{left:25.197333pt;}
.x72_c00064{left:26.160000pt;}
.x7a_c00064{left:27.118667pt;}
.x81_c00064{left:29.193333pt;}
.x11_c00064{left:33.334667pt;}
.x66_c00064{left:38.157333pt;}
.x3b_c00064{left:41.152000pt;}
.x34_c00064{left:43.102667pt;}
.x68_c00064{left:44.160000pt;}
.x6c_c00064{left:45.360000pt;}
.x75_c00064{left:46.694667pt;}
.x5b_c00064{left:49.677333pt;}
.x46_c00064{left:50.734667pt;}
.x12_c00064{left:53.721333pt;}
.x2d_c00064{left:56.580000pt;}
.x40_c00064{left:57.598667pt;}
.x35_c00064{left:61.094667pt;}
.x7e_c00064{left:62.524000pt;}
.x3c_c00064{left:63.778667pt;}
.x56_c00064{left:65.277333pt;}
.x6_c00064{left:66.858667pt;}
.x22_c00064{left:67.808000pt;}
.x42_c00064{left:68.941333pt;}
.x1c_c00064{left:70.240000pt;}
.x47_c00064{left:72.056000pt;}
.x73_c00064{left:73.200000pt;}
.x4e_c00064{left:76.317333pt;}
.x36_c00064{left:81.984000pt;}
.x7_c00064{left:83.645333pt;}
.x6d_c00064{left:84.720000pt;}
.x23_c00064{left:86.244000pt;}
.x48_c00064{left:87.694667pt;}
.x53_c00064{left:89.037333pt;}
.xd_c00064{left:92.501333pt;}
.x5a_c00064{left:94.557333pt;}
.x1_c00064{left:96.000000pt;}
.x29_c00064{left:97.986667pt;}
.x8_c00064{left:99.822667pt;}
.x60_c00064{left:101.277333pt;}
.x43_c00064{left:103.070667pt;}
.x13_c00064{left:107.493333pt;}
.x7b_c00064{left:108.478667pt;}
.x61_c00064{left:112.077333pt;}
.x3d_c00064{left:114.900000pt;}
.x54_c00064{left:117.357333pt;}
.x2e_c00064{left:118.417333pt;}
.x76_c00064{left:119.909333pt;}
.x17_c00064{left:121.073333pt;}
.x67_c00064{left:123.597333pt;}
.xe_c00064{left:125.646667pt;}
.x2a_c00064{left:128.048000pt;}
.x24_c00064{left:129.489333pt;}
.x18_c00064{left:132.186667pt;}
.x1d_c00064{left:133.602667pt;}
.x37_c00064{left:136.652000pt;}
.x2f_c00064{left:139.552000pt;}
.x49_c00064{left:142.653333pt;}
.x6e_c00064{left:144.720000pt;}
.x25_c00064{left:147.200000pt;}
.x2_c00064{left:148.320000pt;}
.x7f_c00064{left:150.372000pt;}
.x3f_c00064{left:155.173333pt;}
.x69_c00064{left:156.960000pt;}
.x9_c00064{left:161.654667pt;}
.x62_c00064{left:163.917333pt;}
.x4f_c00064{left:164.877333pt;}
.x1e_c00064{left:167.620000pt;}
.x14_c00064{left:170.813333pt;}
.xa_c00064{left:172.304000pt;}
.x5c_c00064{left:173.997333pt;}
.x26_c00064{left:176.010667pt;}
.xf_c00064{left:180.369333pt;}
.x3e_c00064{left:183.056000pt;}
.x38_c00064{left:184.469333pt;}
.x19_c00064{left:186.905333pt;}
.x44_c00064{left:190.892000pt;}
.x74_c00064{left:192.960000pt;}
.xb_c00064{left:193.973333pt;}
.x4b_c00064{left:198.132000pt;}
.x6a_c00064{left:200.160000pt;}
.x30_c00064{left:201.710667pt;}
.x39_c00064{left:203.138667pt;}
.x3_c00064{left:206.880000pt;}
.x57_c00064{left:208.077333pt;}
.x1a_c00064{left:209.886667pt;}
.x27_c00064{left:211.294667pt;}
.x1f_c00064{left:213.780000pt;}
.x50_c00064{left:216.477333pt;}
.x6b_c00064{left:218.400000pt;}
.x2b_c00064{left:219.697333pt;}
.x55_c00064{left:222.477333pt;}
.x6f_c00064{left:224.880000pt;}
.x77_c00064{left:225.958667pt;}
.x31_c00064{left:227.880000pt;}
.x63_c00064{left:229.677333pt;}
.x28_c00064{left:231.033333pt;}
.x4a_c00064{left:231.948000pt;}
.x51_c00064{left:233.277333pt;}
.x82_c00064{left:234.392000pt;}
.x5d_c00064{left:236.397333pt;}
.x1b_c00064{left:239.902667pt;}
.x10_c00064{left:242.358667pt;}
.x80_c00064{left:244.800000pt;}
.x7c_c00064{left:246.718667pt;}
.x4_c00064{left:249.600000pt;}
.x20_c00064{left:251.937333pt;}
.x3a_c00064{left:253.062667pt;}
.x70_c00064{left:256.080000pt;}
.x32_c00064{left:257.396000pt;}
.xc_c00064{left:258.732000pt;}
.x15_c00064{left:262.470667pt;}
.x4c_c00064{left:266.270667pt;}
.x5e_c00064{left:267.357333pt;}
.x2c_c00064{left:268.650667pt;}
.x78_c00064{left:270.334667pt;}
.x64_c00064{left:271.437333pt;}
.x58_c00064{left:274.797333pt;}
.x7d_c00064{left:276.478667pt;}
.x4d_c00064{left:277.992000pt;}
.x71_c00064{left:279.120000pt;}
.x41_c00064{left:281.758667pt;}
.x79_c00064{left:286.924000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00065 {
    display:none;
  }
  .loading-indicator_c00065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00065 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00065 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00065" -> "#page-container .classname_c00065")
 */
.pf_c00065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00065 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00065 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00065 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00065 {overflow:visible;}
  }
}
.c_c00065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00065 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00065:after { /* webkit #35443 */
  content: '';
}
.t_c00065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00065 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00065 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00065 { /* info for Javascript */
  display:none;
}
.l_c00065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00065:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00065 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00065.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb8_c00065{transform:matrix(0.131630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131630,0.000000,0.000000,0.250000,0,0);}
.m76_c00065{transform:matrix(0.135195,0.002028,-0.003750,0.249972,0,0);-ms-transform:matrix(0.135195,0.002028,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.135195,0.002028,-0.003750,0.249972,0,0);}
.m62_c00065{transform:matrix(0.140370,0.002386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.140370,0.002386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.140370,0.002386,-0.004249,0.249964,0,0);}
.m6c_c00065{transform:matrix(0.141864,0.002128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.141864,0.002128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.141864,0.002128,-0.003750,0.249972,0,0);}
.m8_c00065{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m65_c00065{transform:matrix(0.153908,0.002616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153908,0.002616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153908,0.002616,-0.004249,0.249964,0,0);}
.m2b_c00065{transform:matrix(0.154030,0.002773,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154030,0.002773,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154030,0.002773,-0.004499,0.249960,0,0);}
.m8f_c00065{transform:matrix(0.155607,0.002334,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155607,0.002334,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155607,0.002334,-0.003750,0.249972,0,0);}
.m77_c00065{transform:matrix(0.156947,0.002354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156947,0.002354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156947,0.002354,-0.003750,0.249972,0,0);}
.md4_c00065{transform:matrix(0.157990,0.002212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157990,0.002212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157990,0.002212,-0.003500,0.249976,0,0);}
.m68_c00065{transform:matrix(0.158642,0.002697,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158642,0.002697,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158642,0.002697,-0.004249,0.249964,0,0);}
.md_c00065{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m89_c00065{transform:matrix(0.159402,0.002391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159402,0.002391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159402,0.002391,-0.003750,0.249972,0,0);}
.m13_c00065{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m87_c00065{transform:matrix(0.161542,0.002423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161542,0.002423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161542,0.002423,-0.003750,0.249972,0,0);}
.m1a_c00065{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m85_c00065{transform:matrix(0.163202,0.002448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163202,0.002448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163202,0.002448,-0.003750,0.249972,0,0);}
.m9d_c00065{transform:matrix(0.163212,0.002448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163212,0.002448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163212,0.002448,-0.003750,0.249972,0,0);}
.ma6_c00065{transform:matrix(0.163527,0.002453,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163527,0.002453,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163527,0.002453,-0.003750,0.249972,0,0);}
.m8a_c00065{transform:matrix(0.163707,0.002456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163707,0.002456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163707,0.002456,-0.003750,0.249972,0,0);}
.m55_c00065{transform:matrix(0.165961,0.002821,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165961,0.002821,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165961,0.002821,-0.004249,0.249964,0,0);}
.m19_c00065{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.md0_c00065{transform:matrix(0.166364,0.002329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166364,0.002329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166364,0.002329,-0.003500,0.249976,0,0);}
.m27_c00065{transform:matrix(0.166423,0.002996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166423,0.002996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166423,0.002996,-0.004499,0.249960,0,0);}
.m4_c00065{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m78_c00065{transform:matrix(0.166701,0.002501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166701,0.002501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166701,0.002501,-0.003750,0.249972,0,0);}
.m61_c00065{transform:matrix(0.166906,0.002837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166906,0.002837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166906,0.002837,-0.004249,0.249964,0,0);}
.m22_c00065{transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);}
.mf1_c00065{transform:matrix(0.170228,0.002383,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170228,0.002383,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170228,0.002383,-0.003500,0.249976,0,0);}
.ma_c00065{transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);}
.m69_c00065{transform:matrix(0.170620,0.002901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170620,0.002901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170620,0.002901,-0.004249,0.249964,0,0);}
.m72_c00065{transform:matrix(0.170986,0.002565,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170986,0.002565,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170986,0.002565,-0.003750,0.249972,0,0);}
.m2a_c00065{transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);}
.m18_c00065{transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);}
.mc5_c00065{transform:matrix(0.174123,0.002438,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174123,0.002438,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174123,0.002438,-0.003500,0.249976,0,0);}
.me_c00065{transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.me6_c00065{transform:matrix(0.174923,0.002449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174923,0.002449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174923,0.002449,-0.003500,0.249976,0,0);}
.m88_c00065{transform:matrix(0.174985,0.002625,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174985,0.002625,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174985,0.002625,-0.003750,0.249972,0,0);}
.m6_c00065{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.md5_c00065{transform:matrix(0.175673,0.002459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175673,0.002459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175673,0.002459,-0.003500,0.249976,0,0);}
.mda_c00065{transform:matrix(0.175863,0.002462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175863,0.002462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175863,0.002462,-0.003500,0.249976,0,0);}
.mbd_c00065{transform:matrix(0.175868,0.002462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175868,0.002462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175868,0.002462,-0.003500,0.249976,0,0);}
.m25_c00065{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m74_c00065{transform:matrix(0.176340,0.002645,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176340,0.002645,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176340,0.002645,-0.003750,0.249972,0,0);}
.m30_c00065{transform:matrix(0.176390,0.002999,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176390,0.002999,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176390,0.002999,-0.004249,0.249964,0,0);}
.mc1_c00065{transform:matrix(0.176483,0.002471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176483,0.002471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176483,0.002471,-0.003500,0.249976,0,0);}
.m17_c00065{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00065{transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);}
.mf4_c00065{transform:matrix(0.179307,0.002510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179307,0.002510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179307,0.002510,-0.003500,0.249976,0,0);}
.m29_c00065{transform:matrix(0.179376,0.003229,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179376,0.003229,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179376,0.003229,-0.004499,0.249960,0,0);}
.m86_c00065{transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179660,0.002695,-0.003750,0.249972,0,0);}
.mf6_c00065{transform:matrix(0.180697,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180697,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180697,0.002530,-0.003500,0.249976,0,0);}
.mc8_c00065{transform:matrix(0.180827,0.002532,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180827,0.002532,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180827,0.002532,-0.003500,0.249976,0,0);}
.me9_c00065{transform:matrix(0.181082,0.002535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181082,0.002535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181082,0.002535,-0.003500,0.249976,0,0);}
.me5_c00065{transform:matrix(0.181272,0.002538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181272,0.002538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181272,0.002538,-0.003500,0.249976,0,0);}
.m39_c00065{transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);}
.m4c_c00065{transform:matrix(0.181559,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181559,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181559,0.003086,-0.004249,0.249964,0,0);}
.m1_c00065{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.md8_c00065{transform:matrix(0.181912,0.002547,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181912,0.002547,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181912,0.002547,-0.003500,0.249976,0,0);}
.mc9_c00065{transform:matrix(0.182052,0.002549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182052,0.002549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182052,0.002549,-0.003500,0.249976,0,0);}
.mc2_c00065{transform:matrix(0.182577,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182577,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182577,0.002556,-0.003500,0.249976,0,0);}
.m6a_c00065{transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);}
.m63_c00065{transform:matrix(0.182664,0.003105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182664,0.003105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182664,0.003105,-0.004249,0.249964,0,0);}
.m9e_c00065{transform:matrix(0.182834,0.002743,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182834,0.002743,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182834,0.002743,-0.003750,0.249972,0,0);}
.mce_c00065{transform:matrix(0.182852,0.002560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182852,0.002560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182852,0.002560,-0.003500,0.249976,0,0);}
.ma5_c00065{transform:matrix(0.182919,0.002744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182919,0.002744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182919,0.002744,-0.003750,0.249972,0,0);}
.m79_c00065{transform:matrix(0.183629,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183629,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183629,0.002754,-0.003750,0.249972,0,0);}
.m2_c00065{transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);}
.m82_c00065{transform:matrix(0.184009,0.002760,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184009,0.002760,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184009,0.002760,-0.003750,0.249972,0,0);}
.m5c_c00065{transform:matrix(0.184678,0.003140,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184678,0.003140,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184678,0.003140,-0.004249,0.249964,0,0);}
.m7a_c00065{transform:matrix(0.184764,0.002771,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184764,0.002771,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184764,0.002771,-0.003750,0.249972,0,0);}
.m66_c00065{transform:matrix(0.185088,0.003147,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185088,0.003147,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185088,0.003147,-0.004249,0.249964,0,0);}
.m95_c00065{transform:matrix(0.186469,0.002797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186469,0.002797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186469,0.002797,-0.003750,0.249972,0,0);}
.mc3_c00065{transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);}
.meb_c00065{transform:matrix(0.186527,0.002611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186527,0.002611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186527,0.002611,-0.003500,0.249976,0,0);}
.m35_c00065{transform:matrix(0.186648,0.003173,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186648,0.003173,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186648,0.003173,-0.004249,0.249964,0,0);}
.m4f_c00065{transform:matrix(0.186708,0.003174,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186708,0.003174,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186708,0.003174,-0.004249,0.249964,0,0);}
.m9a_c00065{transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);}
.me0_c00065{transform:matrix(0.187037,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187037,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187037,0.002619,-0.003500,0.249976,0,0);}
.m26_c00065{transform:matrix(0.187085,0.003368,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187085,0.003368,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187085,0.003368,-0.004499,0.249960,0,0);}
.m31_c00065{transform:matrix(0.187088,0.003180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187088,0.003180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187088,0.003180,-0.004249,0.249964,0,0);}
.me4_c00065{transform:matrix(0.187747,0.002628,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187747,0.002628,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187747,0.002628,-0.003500,0.249976,0,0);}
.m12_c00065{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.md7_c00065{transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);}
.m90_c00065{transform:matrix(0.188084,0.002821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188084,0.002821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188084,0.002821,-0.003750,0.249972,0,0);}
.mf5_c00065{transform:matrix(0.188432,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188432,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188432,0.002638,-0.003500,0.249976,0,0);}
.m75_c00065{transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);}
.m84_c00065{transform:matrix(0.189274,0.002839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189274,0.002839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189274,0.002839,-0.003750,0.249972,0,0);}
.ma4_c00065{transform:matrix(0.189669,0.002845,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189669,0.002845,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189669,0.002845,-0.003750,0.249972,0,0);}
.m3c_c00065{transform:matrix(0.189738,0.003226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189738,0.003226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189738,0.003226,-0.004249,0.249964,0,0);}
.m28_c00065{transform:matrix(0.189759,0.003416,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189759,0.003416,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189759,0.003416,-0.004499,0.249960,0,0);}
.m1d_c00065{transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m98_c00065{transform:matrix(0.190734,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190734,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190734,0.002861,-0.003750,0.249972,0,0);}
.m70_c00065{transform:matrix(0.190929,0.002864,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190929,0.002864,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190929,0.002864,-0.003750,0.249972,0,0);}
.mcd_c00065{transform:matrix(0.191121,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191121,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191121,0.002676,-0.003500,0.249976,0,0);}
.me2_c00065{transform:matrix(0.191151,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191151,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191151,0.002676,-0.003500,0.249976,0,0);}
.m40_c00065{transform:matrix(0.191462,0.003255,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191462,0.003255,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191462,0.003255,-0.004249,0.249964,0,0);}
.m14_c00065{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mf0_c00065{transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);}
.maa_c00065{transform:matrix(0.191838,0.002878,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191838,0.002878,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191838,0.002878,-0.003750,0.249972,0,0);}
.m64_c00065{transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191932,0.003263,-0.004249,0.249964,0,0);}
.m45_c00065{transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);}
.me3_c00065{transform:matrix(0.192121,0.002690,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192121,0.002690,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192121,0.002690,-0.003500,0.249976,0,0);}
.m67_c00065{transform:matrix(0.192127,0.003266,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192127,0.003266,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192127,0.003266,-0.004249,0.249964,0,0);}
.mdd_c00065{transform:matrix(0.192151,0.002690,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192151,0.002690,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192151,0.002690,-0.003500,0.249976,0,0);}
.mca_c00065{transform:matrix(0.192281,0.002692,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192281,0.002692,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192281,0.002692,-0.003500,0.249976,0,0);}
.m58_c00065{transform:matrix(0.192732,0.003276,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192732,0.003276,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192732,0.003276,-0.004249,0.249964,0,0);}
.m38_c00065{transform:matrix(0.193657,0.003292,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193657,0.003292,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193657,0.003292,-0.004249,0.249964,0,0);}
.md1_c00065{transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);}
.m16_c00065{transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);}
.mcc_c00065{transform:matrix(0.194666,0.002725,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194666,0.002725,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194666,0.002725,-0.003500,0.249976,0,0);}
.m7_c00065{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.ma3_c00065{transform:matrix(0.195333,0.002930,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195333,0.002930,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195333,0.002930,-0.003750,0.249972,0,0);}
.m96_c00065{transform:matrix(0.195408,0.002931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195408,0.002931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195408,0.002931,-0.003750,0.249972,0,0);}
.m11_c00065{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.m54_c00065{transform:matrix(0.195802,0.003329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195802,0.003329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195802,0.003329,-0.004249,0.249964,0,0);}
.m0_c00065{transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.mcb_c00065{transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);}
.m6e_c00065{transform:matrix(0.197308,0.002960,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197308,0.002960,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197308,0.002960,-0.003750,0.249972,0,0);}
.med_c00065{transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);}
.m6b_c00065{transform:matrix(0.198753,0.002981,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198753,0.002981,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198753,0.002981,-0.003750,0.249972,0,0);}
.md6_c00065{transform:matrix(0.198981,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198981,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198981,0.002786,-0.003500,0.249976,0,0);}
.mb6_c00065{transform:matrix(0.199080,0.003185,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199080,0.003185,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199080,0.003185,-0.003999,0.249968,0,0);}
.mb3_c00065{transform:matrix(0.199569,0.003193,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199569,0.003193,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199569,0.003193,-0.003999,0.249968,0,0);}
.m50_c00065{transform:matrix(0.200251,0.003404,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200251,0.003404,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200251,0.003404,-0.004249,0.249964,0,0);}
.m60_c00065{transform:matrix(0.200396,0.003407,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200396,0.003407,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200396,0.003407,-0.004249,0.249964,0,0);}
.md9_c00065{transform:matrix(0.200665,0.002809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200665,0.002809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200665,0.002809,-0.003500,0.249976,0,0);}
.m5b_c00065{transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);}
.mef_c00065{transform:matrix(0.201080,0.002815,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201080,0.002815,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201080,0.002815,-0.003500,0.249976,0,0);}
.m3a_c00065{transform:matrix(0.201126,0.003419,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201126,0.003419,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201126,0.003419,-0.004249,0.249964,0,0);}
.mf2_c00065{transform:matrix(0.201130,0.002816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201130,0.002816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201130,0.002816,-0.003500,0.249976,0,0);}
.mc0_c00065{transform:matrix(0.201220,0.002817,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201220,0.002817,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201220,0.002817,-0.003500,0.249976,0,0);}
.m1b_c00065{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m8b_c00065{transform:matrix(0.201712,0.003026,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201712,0.003026,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201712,0.003026,-0.003750,0.249972,0,0);}
.md3_c00065{transform:matrix(0.202410,0.002834,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202410,0.002834,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202410,0.002834,-0.003500,0.249976,0,0);}
.m4d_c00065{transform:matrix(0.203121,0.003453,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203121,0.003453,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203121,0.003453,-0.004249,0.249964,0,0);}
.m2f_c00065{transform:matrix(0.203331,0.003457,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203331,0.003457,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203331,0.003457,-0.004249,0.249964,0,0);}
.ma2_c00065{transform:matrix(0.203387,0.003051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203387,0.003051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203387,0.003051,-0.003750,0.249972,0,0);}
.m37_c00065{transform:matrix(0.203531,0.003460,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203531,0.003460,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203531,0.003460,-0.004249,0.249964,0,0);}
.mdf_c00065{transform:matrix(0.203735,0.002852,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203735,0.002852,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203735,0.002852,-0.003500,0.249976,0,0);}
.m99_c00065{transform:matrix(0.203887,0.003058,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203887,0.003058,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203887,0.003058,-0.003750,0.249972,0,0);}
.m4e_c00065{transform:matrix(0.204011,0.003468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204011,0.003468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204011,0.003468,-0.004249,0.249964,0,0);}
.m46_c00065{transform:matrix(0.204086,0.003469,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204086,0.003469,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204086,0.003469,-0.004249,0.249964,0,0);}
.m9_c00065{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00065{transform:matrix(0.204482,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204482,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204482,0.003067,-0.003750,0.249972,0,0);}
.ma8_c00065{transform:matrix(0.204512,0.003068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204512,0.003068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204512,0.003068,-0.003750,0.249972,0,0);}
.m5d_c00065{transform:matrix(0.204740,0.003481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204740,0.003481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204740,0.003481,-0.004249,0.249964,0,0);}
.m2c_c00065{transform:matrix(0.204742,0.003685,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204742,0.003685,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204742,0.003685,-0.004499,0.249960,0,0);}
.m44_c00065{transform:matrix(0.205045,0.003486,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205045,0.003486,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205045,0.003486,-0.004249,0.249964,0,0);}
.mb1_c00065{transform:matrix(0.205792,0.003087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205792,0.003087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205792,0.003087,-0.003750,0.249972,0,0);}
.m20_c00065{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.me1_c00065{transform:matrix(0.206625,0.002893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206625,0.002893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206625,0.002893,-0.003500,0.249976,0,0);}
.m5f_c00065{transform:matrix(0.206875,0.003517,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206875,0.003517,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206875,0.003517,-0.004249,0.249964,0,0);}
.m2d_c00065{transform:matrix(0.207066,0.003727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207066,0.003727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207066,0.003727,-0.004499,0.249960,0,0);}
.m32_c00065{transform:matrix(0.208180,0.003539,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208180,0.003539,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208180,0.003539,-0.004249,0.249964,0,0);}
.mea_c00065{transform:matrix(0.208545,0.002920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208545,0.002920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208545,0.002920,-0.003500,0.249976,0,0);}
.mb_c00065{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00065{transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);}
.m73_c00065{transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);}
.m80_c00065{transform:matrix(0.208847,0.003133,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208847,0.003133,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208847,0.003133,-0.003750,0.249972,0,0);}
.m34_c00065{transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);}
.md2_c00065{transform:matrix(0.209175,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209175,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209175,0.002928,-0.003500,0.249976,0,0);}
.ma7_c00065{transform:matrix(0.209506,0.003143,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209506,0.003143,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209506,0.003143,-0.003750,0.249972,0,0);}
.ma0_c00065{transform:matrix(0.209886,0.003148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209886,0.003148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209886,0.003148,-0.003750,0.249972,0,0);}
.mbe_c00065{transform:matrix(0.209959,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209959,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209959,0.002939,-0.003500,0.249976,0,0);}
.m21_c00065{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.me8_c00065{transform:matrix(0.210184,0.002943,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210184,0.002943,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210184,0.002943,-0.003500,0.249976,0,0);}
.me7_c00065{transform:matrix(0.210414,0.002946,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210414,0.002946,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210414,0.002946,-0.003500,0.249976,0,0);}
.mf7_c00065{transform:matrix(0.210694,0.002950,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210694,0.002950,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210694,0.002950,-0.003500,0.249976,0,0);}
.m92_c00065{transform:matrix(0.210751,0.003161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210751,0.003161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210751,0.003161,-0.003750,0.249972,0,0);}
.m52_c00065{transform:matrix(0.210790,0.003583,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210790,0.003583,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210790,0.003583,-0.004249,0.249964,0,0);}
.mbf_c00065{transform:matrix(0.210809,0.002951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210809,0.002951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210809,0.002951,-0.003500,0.249976,0,0);}
.mdc_c00065{transform:matrix(0.210989,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210989,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210989,0.002954,-0.003500,0.249976,0,0);}
.m3b_c00065{transform:matrix(0.211035,0.003588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211035,0.003588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211035,0.003588,-0.004249,0.249964,0,0);}
.m1c_c00065{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m6f_c00065{transform:matrix(0.211496,0.003172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211496,0.003172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211496,0.003172,-0.003750,0.249972,0,0);}
.m36_c00065{transform:matrix(0.211579,0.003597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211579,0.003597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211579,0.003597,-0.004249,0.249964,0,0);}
.mcf_c00065{transform:matrix(0.211839,0.002966,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211839,0.002966,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211839,0.002966,-0.003500,0.249976,0,0);}
.m24_c00065{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.213004,0.003621,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213004,0.003621,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213004,0.003621,-0.004249,0.249964,0,0);}
.m7d_c00065{transform:matrix(0.213286,0.003199,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213286,0.003199,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213286,0.003199,-0.003750,0.249972,0,0);}
.mde_c00065{transform:matrix(0.214009,0.002996,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214009,0.002996,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214009,0.002996,-0.003500,0.249976,0,0);}
.m47_c00065{transform:matrix(0.214039,0.003639,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214039,0.003639,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214039,0.003639,-0.004249,0.249964,0,0);}
.m8d_c00065{transform:matrix(0.214316,0.003215,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214316,0.003215,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214316,0.003215,-0.003750,0.249972,0,0);}
.m7f_c00065{transform:matrix(0.215016,0.003225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215016,0.003225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215016,0.003225,-0.003750,0.249972,0,0);}
.ma9_c00065{transform:matrix(0.215621,0.003234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215621,0.003234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215621,0.003234,-0.003750,0.249972,0,0);}
.m51_c00065{transform:matrix(0.217749,0.003702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217749,0.003702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217749,0.003702,-0.004249,0.249964,0,0);}
.mb4_c00065{transform:matrix(0.217912,0.003487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217912,0.003487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217912,0.003487,-0.003999,0.249968,0,0);}
.m7b_c00065{transform:matrix(0.218205,0.003273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218205,0.003273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218205,0.003273,-0.003750,0.249972,0,0);}
.mec_c00065{transform:matrix(0.218209,0.003055,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218209,0.003055,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218209,0.003055,-0.003500,0.249976,0,0);}
.m71_c00065{transform:matrix(0.218535,0.003278,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218535,0.003278,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218535,0.003278,-0.003750,0.249972,0,0);}
.mac_c00065{transform:matrix(0.218685,0.003280,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218685,0.003280,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218685,0.003280,-0.003750,0.249972,0,0);}
.m7e_c00065{transform:matrix(0.219630,0.003294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219630,0.003294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219630,0.003294,-0.003750,0.249972,0,0);}
.m53_c00065{transform:matrix(0.219758,0.003736,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219758,0.003736,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219758,0.003736,-0.004249,0.249964,0,0);}
.m41_c00065{transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);}
.ma1_c00065{transform:matrix(0.220285,0.003304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220285,0.003304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220285,0.003304,-0.003750,0.249972,0,0);}
.m83_c00065{transform:matrix(0.220435,0.003307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220435,0.003307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220435,0.003307,-0.003750,0.249972,0,0);}
.mad_c00065{transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);}
.mb9_c00065{transform:matrix(0.220498,0.003087,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220498,0.003087,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220498,0.003087,-0.003500,0.249976,0,0);}
.mee_c00065{transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);}
.m8c_c00065{transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);}
.m4b_c00065{transform:matrix(0.223463,0.003799,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223463,0.003799,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223463,0.003799,-0.004249,0.249964,0,0);}
.mc6_c00065{transform:matrix(0.224643,0.003145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224643,0.003145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224643,0.003145,-0.003500,0.249976,0,0);}
.m3e_c00065{transform:matrix(0.224853,0.003822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224853,0.003822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224853,0.003822,-0.004249,0.249964,0,0);}
.mb2_c00065{transform:matrix(0.225626,0.003610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225626,0.003610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225626,0.003610,-0.003999,0.249968,0,0);}
.m59_c00065{transform:matrix(0.225932,0.003841,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225932,0.003841,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225932,0.003841,-0.004249,0.249964,0,0);}
.mc7_c00065{transform:matrix(0.226238,0.003167,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226238,0.003167,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226238,0.003167,-0.003500,0.249976,0,0);}
.mab_c00065{transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);}
.mdb_c00065{transform:matrix(0.226993,0.003178,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226993,0.003178,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226993,0.003178,-0.003500,0.249976,0,0);}
.mbb_c00065{transform:matrix(0.228263,0.003196,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228263,0.003196,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228263,0.003196,-0.003500,0.249976,0,0);}
.mb5_c00065{transform:matrix(0.228271,0.003652,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228271,0.003652,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228271,0.003652,-0.003999,0.249968,0,0);}
.m23_c00065{transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);}
.m7c_c00065{transform:matrix(0.228829,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228829,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228829,0.003432,-0.003750,0.249972,0,0);}
.m5e_c00065{transform:matrix(0.229237,0.003897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229237,0.003897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229237,0.003897,-0.004249,0.249964,0,0);}
.m3d_c00065{transform:matrix(0.229822,0.003907,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229822,0.003907,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229822,0.003907,-0.004249,0.249964,0,0);}
.m56_c00065{transform:matrix(0.230107,0.003912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230107,0.003912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230107,0.003912,-0.004249,0.249964,0,0);}
.m93_c00065{transform:matrix(0.230124,0.003452,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230124,0.003452,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230124,0.003452,-0.003750,0.249972,0,0);}
.m4a_c00065{transform:matrix(0.231752,0.003940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231752,0.003940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231752,0.003940,-0.004249,0.249964,0,0);}
.mba_c00065{transform:matrix(0.232677,0.003257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232677,0.003257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232677,0.003257,-0.003500,0.249976,0,0);}
.m49_c00065{transform:matrix(0.233406,0.003968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233406,0.003968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233406,0.003968,-0.004249,0.249964,0,0);}
.m43_c00065{transform:matrix(0.234231,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234231,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234231,0.003982,-0.004249,0.249964,0,0);}
.m9b_c00065{transform:matrix(0.235144,0.003527,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235144,0.003527,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235144,0.003527,-0.003750,0.249972,0,0);}
.m2e_c00065{transform:matrix(0.235361,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235361,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235361,0.004001,-0.004249,0.249964,0,0);}
.maf_c00065{transform:matrix(0.238823,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238823,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238823,0.003582,-0.003750,0.249972,0,0);}
.mf3_c00065{transform:matrix(0.239727,0.003356,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239727,0.003356,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239727,0.003356,-0.003500,0.249976,0,0);}
.mb0_c00065{transform:matrix(0.240598,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240598,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240598,0.003609,-0.003750,0.249972,0,0);}
.m97_c00065{transform:matrix(0.241823,0.003627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241823,0.003627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241823,0.003627,-0.003750,0.249972,0,0);}
.m57_c00065{transform:matrix(0.242420,0.004121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242420,0.004121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242420,0.004121,-0.004249,0.249964,0,0);}
.m5a_c00065{transform:matrix(0.242780,0.004127,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242780,0.004127,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242780,0.004127,-0.004249,0.249964,0,0);}
.m48_c00065{transform:matrix(0.250979,0.004267,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250979,0.004267,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250979,0.004267,-0.004249,0.249964,0,0);}
.m3f_c00065{transform:matrix(0.251199,0.004270,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251199,0.004270,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251199,0.004270,-0.004249,0.249964,0,0);}
.mb7_c00065{transform:matrix(0.252058,0.004033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252058,0.004033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252058,0.004033,-0.003999,0.249968,0,0);}
.mae_c00065{transform:matrix(0.254531,0.003818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254531,0.003818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254531,0.003818,-0.003750,0.249972,0,0);}
.m9f_c00065{transform:matrix(0.259776,0.003897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259776,0.003897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259776,0.003897,-0.003750,0.249972,0,0);}
.m33_c00065{transform:matrix(0.261762,0.004450,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261762,0.004450,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261762,0.004450,-0.004249,0.249964,0,0);}
.m8e_c00065{transform:matrix(0.263050,0.003946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263050,0.003946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263050,0.003946,-0.003750,0.249972,0,0);}
.mbc_c00065{transform:matrix(0.270883,0.003792,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270883,0.003792,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270883,0.003792,-0.003500,0.249976,0,0);}
.m15_c00065{transform:matrix(0.295065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295065,0.000000,0.000000,0.250000,0,0);}
.m94_c00065{transform:matrix(0.304976,0.004575,-0.003750,0.249972,0,0);-ms-transform:matrix(0.304976,0.004575,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.304976,0.004575,-0.003750,0.249972,0,0);}
.m91_c00065{transform:matrix(0.315879,0.004738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315879,0.004738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315879,0.004738,-0.003750,0.249972,0,0);}
.m81_c00065{transform:matrix(0.344126,0.005162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.344126,0.005162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.344126,0.005162,-0.003750,0.249972,0,0);}
.m3_c00065{transform:matrix(1.304940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.304940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.304940,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:0.000000px;}
.fc0_c00065{color:transparent;}
.fs16_c00065{font-size:22.050000px;}
.fs14_c00065{font-size:54.606142px;}
.fs17_c00065{font-size:55.655453px;}
.fse_c00065{font-size:55.656260px;}
.fs9_c00065{font-size:55.658041px;}
.fs10_c00065{font-size:57.756497px;}
.fs15_c00065{font-size:57.757392px;}
.fsa_c00065{font-size:57.758344px;}
.fs11_c00065{font-size:58.806615px;}
.fs7_c00065{font-size:58.808496px;}
.fs5_c00065{font-size:59.850000px;}
.fs13_c00065{font-size:59.856733px;}
.fs8_c00065{font-size:59.858648px;}
.fs12_c00065{font-size:60.906851px;}
.fs18_c00065{font-size:61.956071px;}
.fs4_c00065{font-size:63.000000px;}
.fs6_c00065{font-size:63.010205px;}
.fs3_c00065{font-size:64.050000px;}
.fs19_c00065{font-size:64.056277px;}
.fsf_c00065{font-size:64.057205px;}
.fs0_c00065{font-size:65.100000px;}
.fsc_c00065{font-size:65.107323px;}
.fsb_c00065{font-size:65.109406px;}
.fs2_c00065{font-size:66.150000px;}
.fsd_c00065{font-size:67.207560px;}
.fs1_c00065{font-size:68.250000px;}
.y0_c00065{bottom:0.000000px;}
.ye0_c00065{bottom:23.581536px;}
.ydf_c00065{bottom:24.102525px;}
.yde_c00065{bottom:25.074672px;}
.ydd_c00065{bottom:25.419993px;}
.ydc_c00065{bottom:25.653702px;}
.ydb_c00065{bottom:26.560827px;}
.yda_c00065{bottom:26.963769px;}
.yd9_c00065{bottom:27.809556px;}
.yd8_c00065{bottom:28.340832px;}
.yd7_c00065{bottom:41.261217px;}
.yd6_c00065{bottom:41.499726px;}
.yd5_c00065{bottom:42.234243px;}
.yd4_c00065{bottom:42.616296px;}
.yd3_c00065{bottom:43.151826px;}
.yd2_c00065{bottom:43.475031px;}
.yd1_c00065{bottom:44.042721px;}
.yd0_c00065{bottom:44.270844px;}
.ycf_c00065{bottom:56.829843px;}
.yce_c00065{bottom:57.115812px;}
.ycd_c00065{bottom:57.768177px;}
.ycc_c00065{bottom:58.345680px;}
.ycb_c00065{bottom:59.044500px;}
.yca_c00065{bottom:59.628186px;}
.yc9_c00065{bottom:59.843073px;}
.yc8_c00065{bottom:60.609165px;}
.yc7_c00065{bottom:61.554492px;}
.yc6_c00065{bottom:73.926420px;}
.yc5_c00065{bottom:74.954343px;}
.yc4_c00065{bottom:75.477798px;}
.yc3_c00065{bottom:76.505553px;}
.yc2_c00065{bottom:77.099784px;}
.yc1_c00065{bottom:78.625887px;}
.yc0_c00065{bottom:79.276818px;}
.ybf_c00065{bottom:80.188338px;}
.ybe_c00065{bottom:92.399781px;}
.ybd_c00065{bottom:92.947929px;}
.ybc_c00065{bottom:93.284898px;}
.ybb_c00065{bottom:93.542892px;}
.yba_c00065{bottom:95.042202px;}
.yb9_c00065{bottom:96.425274px;}
.yb8_c00065{bottom:96.776487px;}
.yb7_c00065{bottom:98.278620px;}
.yb6_c00065{bottom:108.592311px;}
.yb5_c00065{bottom:108.937275px;}
.yb4_c00065{bottom:109.748913px;}
.yb3_c00065{bottom:110.099157px;}
.yb2_c00065{bottom:110.308029px;}
.yb1_c00065{bottom:111.426618px;}
.yb0_c00065{bottom:111.748392px;}
.yaf_c00065{bottom:113.400882px;}
.ya7_c00065{bottom:127.828431px;}
.ya8_c00065{bottom:127.828932px;}
.yaa_c00065{bottom:127.829217px;}
.yab_c00065{bottom:127.829220px;}
.yad_c00065{bottom:127.829526px;}
.ya9_c00065{bottom:127.829535px;}
.yac_c00065{bottom:127.829685px;}
.yae_c00065{bottom:127.830087px;}
.ya6_c00065{bottom:143.939763px;}
.ya5_c00065{bottom:144.199827px;}
.ya4_c00065{bottom:144.991044px;}
.ya3_c00065{bottom:146.098794px;}
.ya2_c00065{bottom:146.873673px;}
.ya1_c00065{bottom:147.421500px;}
.ya0_c00065{bottom:153.090000px;}
.y9f_c00065{bottom:160.618056px;}
.y9e_c00065{bottom:161.516904px;}
.y9d_c00065{bottom:161.875752px;}
.y9c_c00065{bottom:163.262496px;}
.y9b_c00065{bottom:164.083392px;}
.y9a_c00065{bottom:164.973000px;}
.y99_c00065{bottom:179.235240px;}
.y98_c00065{bottom:180.384855px;}
.y97_c00065{bottom:180.622762px;}
.y96_c00065{bottom:182.182447px;}
.y95_c00065{bottom:182.730195px;}
.y94_c00065{bottom:183.312810px;}
.y93_c00065{bottom:194.172510px;}
.y92_c00065{bottom:195.226995px;}
.y91_c00065{bottom:195.479415px;}
.y90_c00065{bottom:196.587810px;}
.y8f_c00065{bottom:197.603918px;}
.y8e_c00065{bottom:197.933603px;}
.y8d_c00065{bottom:198.212078px;}
.y8c_c00065{bottom:198.780428px;}
.y8b_c00065{bottom:199.247025px;}
.y8a_c00065{bottom:210.758123px;}
.y89_c00065{bottom:211.935968px;}
.y88_c00065{bottom:213.434355px;}
.y87_c00065{bottom:213.730140px;}
.y86_c00065{bottom:214.747927px;}
.y85_c00065{bottom:215.156640px;}
.y84_c00065{bottom:215.916495px;}
.y83_c00065{bottom:216.801788px;}
.y82_c00065{bottom:228.530205px;}
.y81_c00065{bottom:229.162215px;}
.y80_c00065{bottom:230.039288px;}
.y7f_c00065{bottom:230.835375px;}
.y7e_c00065{bottom:232.291350px;}
.y7d_c00065{bottom:233.024348px;}
.y7c_c00065{bottom:233.814660px;}
.y7b_c00065{bottom:246.348630px;}
.y7a_c00065{bottom:247.377300px;}
.y79_c00065{bottom:247.730730px;}
.y78_c00065{bottom:248.350208px;}
.y77_c00065{bottom:248.652263px;}
.y76_c00065{bottom:249.668453px;}
.y75_c00065{bottom:250.048538px;}
.y74_c00065{bottom:250.556700px;}
.y73_c00065{bottom:262.333388px;}
.y72_c00065{bottom:262.640910px;}
.y71_c00065{bottom:262.974683px;}
.y70_c00065{bottom:263.989200px;}
.y6f_c00065{bottom:264.446348px;}
.y6e_c00065{bottom:265.389570px;}
.y6d_c00065{bottom:265.937790px;}
.y6c_c00065{bottom:266.293185px;}
.y6b_c00065{bottom:267.570090px;}
.y6a_c00065{bottom:279.361853px;}
.y69_c00065{bottom:279.721695px;}
.y68_c00065{bottom:280.545120px;}
.y67_c00065{bottom:280.883348px;}
.y66_c00065{bottom:282.183623px;}
.y65_c00065{bottom:282.648488px;}
.y64_c00065{bottom:282.851715px;}
.y63_c00065{bottom:283.767585px;}
.y62_c00065{bottom:296.618663px;}
.y61_c00065{bottom:297.038122px;}
.y60_c00065{bottom:297.568747px;}
.y5f_c00065{bottom:297.788625px;}
.y5e_c00065{bottom:298.026240px;}
.y5d_c00065{bottom:298.423058px;}
.y5c_c00065{bottom:299.036670px;}
.y5b_c00065{bottom:299.971155px;}
.y5a_c00065{bottom:313.307850px;}
.y59_c00065{bottom:313.561808px;}
.y58_c00065{bottom:314.697383px;}
.y57_c00065{bottom:314.940225px;}
.y56_c00065{bottom:315.888060px;}
.y55_c00065{bottom:316.297065px;}
.y54_c00065{bottom:316.599690px;}
.y53_c00065{bottom:317.253000px;}
.y52_c00065{bottom:333.578981px;}
.y51_c00065{bottom:347.748907px;}
.y50_c00065{bottom:348.140993px;}
.y4f_c00065{bottom:348.361962px;}
.y4e_c00065{bottom:348.749967px;}
.y4d_c00065{bottom:349.321459px;}
.y4c_c00065{bottom:349.707216px;}
.y4b_c00065{bottom:349.986901px;}
.y4a_c00065{bottom:350.795846px;}
.y49_c00065{bottom:351.041288px;}
.y48_c00065{bottom:351.362386px;}
.y47_c00065{bottom:351.797109px;}
.y46_c00065{bottom:366.273559px;}
.y45_c00065{bottom:366.396909px;}
.y44_c00065{bottom:366.729259px;}
.y43_c00065{bottom:366.978483px;}
.y42_c00065{bottom:367.441979px;}
.y41_c00065{bottom:367.680240px;}
.y40_c00065{bottom:368.150374px;}
.y3f_c00065{bottom:368.328610px;}
.y3e_c00065{bottom:368.452776px;}
.y3d_c00065{bottom:368.809325px;}
.y3c_c00065{bottom:381.513912px;}
.y3b_c00065{bottom:382.278586px;}
.y3a_c00065{bottom:382.464420px;}
.y39_c00065{bottom:382.933590px;}
.y38_c00065{bottom:383.972671px;}
.y37_c00065{bottom:384.509003px;}
.y36_c00065{bottom:384.840871px;}
.y35_c00065{bottom:385.552215px;}
.y34_c00065{bottom:400.226886px;}
.y33_c00065{bottom:400.387231px;}
.y32_c00065{bottom:400.744239px;}
.y31_c00065{bottom:401.129997px;}
.y30_c00065{bottom:401.260291px;}
.y2f_c00065{bottom:401.882063px;}
.y2e_c00065{bottom:402.082197px;}
.y2d_c00065{bottom:402.473069px;}
.y2c_c00065{bottom:402.645481px;}
.y2b_c00065{bottom:402.834705px;}
.y2a_c00065{bottom:415.481112px;}
.y29_c00065{bottom:416.209126px;}
.y28_c00065{bottom:417.120436px;}
.y27_c00065{bottom:417.436140px;}
.y26_c00065{bottom:418.386667px;}
.y25_c00065{bottom:418.867957px;}
.y24_c00065{bottom:420.232780px;}
.y23_c00065{bottom:420.659970px;}
.y22_c00065{bottom:431.436744px;}
.y21_c00065{bottom:432.733038px;}
.y20_c00065{bottom:433.046166px;}
.y1f_c00065{bottom:434.270510px;}
.y1e_c00065{bottom:435.084870px;}
.y1d_c00065{bottom:435.607998px;}
.y1c_c00065{bottom:436.591959px;}
.y1b_c00065{bottom:437.130582px;}
.y1a_c00065{bottom:449.527304px;}
.y19_c00065{bottom:449.848476px;}
.y18_c00065{bottom:450.541846px;}
.y17_c00065{bottom:450.937071px;}
.y16_c00065{bottom:452.121342px;}
.y15_c00065{bottom:453.333000px;}
.y14_c00065{bottom:466.566954px;}
.y13_c00065{bottom:467.625030px;}
.y12_c00065{bottom:468.263499px;}
.y11_c00065{bottom:468.729465px;}
.y10_c00065{bottom:469.308858px;}
.yf_c00065{bottom:470.037750px;}
.ye_c00065{bottom:470.377977px;}
.yd_c00065{bottom:470.881500px;}
.yc_c00065{bottom:485.614500px;}
.yb_c00065{bottom:500.341500px;}
.ya_c00065{bottom:500.565000px;}
.y9_c00065{bottom:500.805000px;}
.y8_c00065{bottom:501.259500px;}
.y7_c00065{bottom:501.697500px;}
.y6_c00065{bottom:502.401000px;}
.y5_c00065{bottom:503.013000px;}
.y4_c00065{bottom:518.106000px;}
.y3_c00065{bottom:534.486000px;}
.y2_c00065{bottom:551.794500px;}
.y1_c00065{bottom:570.102000px;}
.h18_c00065{height:22.050000px;}
.h16_c00065{height:54.606142px;}
.h19_c00065{height:55.655453px;}
.h10_c00065{height:55.656260px;}
.hb_c00065{height:55.658041px;}
.h12_c00065{height:57.756497px;}
.h17_c00065{height:57.757392px;}
.hc_c00065{height:57.758344px;}
.h13_c00065{height:58.806615px;}
.h9_c00065{height:58.808496px;}
.h7_c00065{height:59.850000px;}
.h15_c00065{height:59.856733px;}
.ha_c00065{height:59.858648px;}
.h14_c00065{height:60.906851px;}
.h1a_c00065{height:61.956071px;}
.h6_c00065{height:63.000000px;}
.h8_c00065{height:63.010205px;}
.h5_c00065{height:64.050000px;}
.h1b_c00065{height:64.056277px;}
.h11_c00065{height:64.057205px;}
.h2_c00065{height:65.100000px;}
.he_c00065{height:65.107323px;}
.hd_c00065{height:65.109406px;}
.h4_c00065{height:66.150000px;}
.hf_c00065{height:67.207560px;}
.h3_c00065{height:68.250000px;}
.h1_c00065{height:612.000000px;}
.h0_c00065{height:612.300000px;}
.w0_c00065{width:368.820000px;}
.w1_c00065{width:369.000000px;}
.x0_c00065{left:0.000000px;}
.x65_c00065{left:35.460630px;}
.x7b_c00065{left:40.582494px;}
.x86_c00065{left:42.195873px;}
.x7d_c00065{left:43.242801px;}
.x70_c00065{left:44.377500px;}
.x5d_c00065{left:45.407085px;}
.x4f_c00065{left:46.430937px;}
.x1b_c00065{left:47.518500px;}
.x2_c00065{left:48.600000px;}
.x14_c00065{left:56.814000px;}
.x74_c00065{left:59.941911px;}
.x84_c00065{left:63.856401px;}
.x31_c00065{left:66.509427px;}
.x1c_c00065{left:68.038500px;}
.x8_c00065{left:69.390000px;}
.x50_c00065{left:71.364000px;}
.x2d_c00065{left:74.279197px;}
.x24_c00065{left:75.657000px;}
.x61_c00065{left:76.754872px;}
.x49_c00065{left:77.924266px;}
.x6e_c00065{left:81.435877px;}
.x36_c00065{left:83.048377px;}
.x67_c00065{left:85.414455px;}
.x9_c00065{left:89.100000px;}
.x25_c00065{left:94.558500px;}
.x3e_c00065{left:97.293832px;}
.x7f_c00065{left:98.349045px;}
.x4a_c00065{left:100.872439px;}
.x11_c00065{left:103.140000px;}
.x15_c00065{left:107.836500px;}
.x3_c00065{left:109.350000px;}
.x44_c00065{left:112.455556px;}
.x51_c00065{left:114.918000px;}
.x58_c00065{left:116.522707px;}
.x1d_c00065{left:118.528500px;}
.x68_c00065{left:119.967832px;}
.x3f_c00065{left:121.052056px;}
.x37_c00065{left:122.192544px;}
.x2e_c00065{left:123.509698px;}
.xa_c00065{left:127.170000px;}
.x32_c00065{left:128.523148px;}
.x4_c00065{left:129.870000px;}
.x5e_c00065{left:131.321933px;}
.x1e_c00065{left:134.728500px;}
.x6c_c00065{left:136.389795px;}
.x69_c00065{left:138.513375px;}
.x87_c00065{left:141.047829px;}
.x38_c00065{left:142.173415px;}
.x80_c00065{left:143.425155px;}
.x59_c00065{left:145.613280px;}
.x12_c00065{left:150.390000px;}
.x78_c00065{left:153.681693px;}
.x54_c00065{left:156.230205px;}
.x1f_c00065{left:158.218500px;}
.x40_c00065{left:159.397020px;}
.x52_c00065{left:162.360000px;}
.x62_c00065{left:164.038567px;}
.x16_c00065{left:166.425000px;}
.x13_c00065{left:169.830000px;}
.x4b_c00065{left:176.134264px;}
.x20_c00065{left:178.468500px;}
.x75_c00065{left:180.373515px;}
.xb_c00065{left:181.980000px;}
.x45_c00065{left:183.251971px;}
.x55_c00065{left:184.585132px;}
.x29_c00065{left:188.520000px;}
.x81_c00065{left:190.392681px;}
.x1_c00065{left:191.430000px;}
.x26_c00065{left:193.128000px;}
.x7c_c00065{left:194.704395px;}
.xc_c00065{left:195.750000px;}
.x6a_c00065{left:198.178597px;}
.x56_c00065{left:201.526380px;}
.x17_c00065{left:202.921500px;}
.x39_c00065{left:204.343810px;}
.x33_c00065{left:207.929391px;}
.x5f_c00065{left:209.846730px;}
.x2a_c00065{left:211.768500px;}
.x6f_c00065{left:213.129397px;}
.xd_c00065{left:215.730000px;}
.x3a_c00065{left:217.303840px;}
.x63_c00065{left:221.573190px;}
.x4c_c00065{left:223.662687px;}
.x21_c00065{left:224.908500px;}
.x5a_c00065{left:226.897065px;}
.x27_c00065{left:228.598500px;}
.x46_c00065{left:229.669005px;}
.x82_c00065{left:231.520959px;}
.x41_c00065{left:233.670319px;}
.xe_c00065{left:236.520000px;}
.x71_c00065{left:237.955500px;}
.x18_c00065{left:240.754500px;}
.x22_c00065{left:241.918500px;}
.x64_c00065{left:243.634852px;}
.x79_c00065{left:246.833964px;}
.x5b_c00065{left:248.045250px;}
.x34_c00065{left:249.355872px;}
.x76_c00065{left:251.389938px;}
.x2b_c00065{left:252.555000px;}
.x47_c00065{left:254.567463px;}
.x3b_c00065{left:255.882430px;}
.x7e_c00065{left:257.328819px;}
.x19_c00065{left:260.731500px;}
.x4d_c00065{left:264.517278px;}
.x5_c00065{left:266.220000px;}
.x2f_c00065{left:267.382406px;}
.x6d_c00065{left:268.445355px;}
.x2c_c00065{left:271.447500px;}
.x72_c00065{left:273.970500px;}
.x88_c00065{left:277.633185px;}
.x1a_c00065{left:279.300000px;}
.x42_c00065{left:280.408191px;}
.x35_c00065{left:282.471567px;}
.x6_c00065{left:283.770000px;}
.x57_c00065{left:285.025117px;}
.x28_c00065{left:287.380500px;}
.x77_c00065{left:288.654246px;}
.x3c_c00065{left:291.534163px;}
.x73_c00065{left:292.546500px;}
.x23_c00065{left:293.758500px;}
.x85_c00065{left:295.008603px;}
.xf_c00065{left:298.620000px;}
.x48_c00065{left:300.172894px;}
.x83_c00065{left:303.829914px;}
.x60_c00065{left:304.903537px;}
.x3d_c00065{left:307.497550px;}
.x7a_c00065{left:311.123373px;}
.x66_c00065{left:313.540935px;}
.x53_c00065{left:317.443500px;}
.x6b_c00065{left:319.781317px;}
.x5c_c00065{left:322.028647px;}
.x7_c00065{left:326.970000px;}
.x10_c00065{left:329.670000px;}
.x30_c00065{left:332.161091px;}
.x43_c00065{left:335.009470px;}
.x4e_c00065{left:336.024424px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
.fs16_c00065{font-size:19.600000pt;}
.fs14_c00065{font-size:48.538793pt;}
.fs17_c00065{font-size:49.471514pt;}
.fse_c00065{font-size:49.472231pt;}
.fs9_c00065{font-size:49.473814pt;}
.fs10_c00065{font-size:51.339108pt;}
.fs15_c00065{font-size:51.339904pt;}
.fsa_c00065{font-size:51.340750pt;}
.fs11_c00065{font-size:52.272546pt;}
.fs7_c00065{font-size:52.274219pt;}
.fs5_c00065{font-size:53.200000pt;}
.fs13_c00065{font-size:53.205985pt;}
.fs8_c00065{font-size:53.207687pt;}
.fs12_c00065{font-size:54.139423pt;}
.fs18_c00065{font-size:55.072063pt;}
.fs4_c00065{font-size:56.000000pt;}
.fs6_c00065{font-size:56.009071pt;}
.fs3_c00065{font-size:56.933333pt;}
.fs19_c00065{font-size:56.938913pt;}
.fsf_c00065{font-size:56.939738pt;}
.fs0_c00065{font-size:57.866667pt;}
.fsc_c00065{font-size:57.873176pt;}
.fsb_c00065{font-size:57.875028pt;}
.fs2_c00065{font-size:58.800000pt;}
.fsd_c00065{font-size:59.740053pt;}
.fs1_c00065{font-size:60.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.ye0_c00065{bottom:20.961365pt;}
.ydf_c00065{bottom:21.424467pt;}
.yde_c00065{bottom:22.288597pt;}
.ydd_c00065{bottom:22.595549pt;}
.ydc_c00065{bottom:22.803291pt;}
.ydb_c00065{bottom:23.609624pt;}
.yda_c00065{bottom:23.967795pt;}
.yd9_c00065{bottom:24.719605pt;}
.yd8_c00065{bottom:25.191851pt;}
.yd7_c00065{bottom:36.676637pt;}
.yd6_c00065{bottom:36.888645pt;}
.yd5_c00065{bottom:37.541549pt;}
.yd4_c00065{bottom:37.881152pt;}
.yd3_c00065{bottom:38.357179pt;}
.yd2_c00065{bottom:38.644472pt;}
.yd1_c00065{bottom:39.149085pt;}
.yd0_c00065{bottom:39.351861pt;}
.ycf_c00065{bottom:50.515416pt;}
.yce_c00065{bottom:50.769611pt;}
.ycd_c00065{bottom:51.349491pt;}
.ycc_c00065{bottom:51.862827pt;}
.ycb_c00065{bottom:52.484000pt;}
.yca_c00065{bottom:53.002832pt;}
.yc9_c00065{bottom:53.193843pt;}
.yc8_c00065{bottom:53.874813pt;}
.yc7_c00065{bottom:54.715104pt;}
.yc6_c00065{bottom:65.712373pt;}
.yc5_c00065{bottom:66.626083pt;}
.yc4_c00065{bottom:67.091376pt;}
.yc3_c00065{bottom:68.004936pt;}
.yc2_c00065{bottom:68.533141pt;}
.yc1_c00065{bottom:69.889677pt;}
.yc0_c00065{bottom:70.468283pt;}
.ybf_c00065{bottom:71.278523pt;}
.ybe_c00065{bottom:82.133139pt;}
.ybd_c00065{bottom:82.620381pt;}
.ybc_c00065{bottom:82.919909pt;}
.ybb_c00065{bottom:83.149237pt;}
.yba_c00065{bottom:84.481957pt;}
.yb9_c00065{bottom:85.711355pt;}
.yb8_c00065{bottom:86.023544pt;}
.yb7_c00065{bottom:87.358773pt;}
.yb6_c00065{bottom:96.526499pt;}
.yb5_c00065{bottom:96.833133pt;}
.yb4_c00065{bottom:97.554589pt;}
.yb3_c00065{bottom:97.865917pt;}
.yb2_c00065{bottom:98.051581pt;}
.yb1_c00065{bottom:99.045883pt;}
.yb0_c00065{bottom:99.331904pt;}
.yaf_c00065{bottom:100.800784pt;}
.ya7_c00065{bottom:113.625272pt;}
.ya8_c00065{bottom:113.625717pt;}
.yaa_c00065{bottom:113.625971pt;}
.yab_c00065{bottom:113.625973pt;}
.yad_c00065{bottom:113.626245pt;}
.ya9_c00065{bottom:113.626253pt;}
.yac_c00065{bottom:113.626387pt;}
.yae_c00065{bottom:113.626744pt;}
.ya6_c00065{bottom:127.946456pt;}
.ya5_c00065{bottom:128.177624pt;}
.ya4_c00065{bottom:128.880928pt;}
.ya3_c00065{bottom:129.865595pt;}
.ya2_c00065{bottom:130.554376pt;}
.ya1_c00065{bottom:131.041333pt;}
.ya0_c00065{bottom:136.080000pt;}
.y9f_c00065{bottom:142.771605pt;}
.y9e_c00065{bottom:143.570581pt;}
.y9d_c00065{bottom:143.889557pt;}
.y9c_c00065{bottom:145.122219pt;}
.y9b_c00065{bottom:145.851904pt;}
.y9a_c00065{bottom:146.642667pt;}
.y99_c00065{bottom:159.320213pt;}
.y98_c00065{bottom:160.342093pt;}
.y97_c00065{bottom:160.553567pt;}
.y96_c00065{bottom:161.939953pt;}
.y95_c00065{bottom:162.426840pt;}
.y94_c00065{bottom:162.944720pt;}
.y93_c00065{bottom:172.597787pt;}
.y92_c00065{bottom:173.535107pt;}
.y91_c00065{bottom:173.759480pt;}
.y90_c00065{bottom:174.744720pt;}
.y8f_c00065{bottom:175.647927pt;}
.y8e_c00065{bottom:175.940980pt;}
.y8d_c00065{bottom:176.188513pt;}
.y8c_c00065{bottom:176.693713pt;}
.y8b_c00065{bottom:177.108467pt;}
.y8a_c00065{bottom:187.340553pt;}
.y89_c00065{bottom:188.387527pt;}
.y88_c00065{bottom:189.719427pt;}
.y87_c00065{bottom:189.982347pt;}
.y86_c00065{bottom:190.887047pt;}
.y85_c00065{bottom:191.250347pt;}
.y84_c00065{bottom:191.925773pt;}
.y83_c00065{bottom:192.712700pt;}
.y82_c00065{bottom:203.137960pt;}
.y81_c00065{bottom:203.699747pt;}
.y80_c00065{bottom:204.479367pt;}
.y7f_c00065{bottom:205.187000pt;}
.y7e_c00065{bottom:206.481200pt;}
.y7d_c00065{bottom:207.132753pt;}
.y7c_c00065{bottom:207.835253pt;}
.y7b_c00065{bottom:218.976560pt;}
.y7a_c00065{bottom:219.890933pt;}
.y79_c00065{bottom:220.205093pt;}
.y78_c00065{bottom:220.755740pt;}
.y77_c00065{bottom:221.024233pt;}
.y76_c00065{bottom:221.927513pt;}
.y75_c00065{bottom:222.265367pt;}
.y74_c00065{bottom:222.717067pt;}
.y73_c00065{bottom:233.185233pt;}
.y72_c00065{bottom:233.458587pt;}
.y71_c00065{bottom:233.755273pt;}
.y70_c00065{bottom:234.657067pt;}
.y6f_c00065{bottom:235.063420pt;}
.y6e_c00065{bottom:235.901840pt;}
.y6d_c00065{bottom:236.389147pt;}
.y6c_c00065{bottom:236.705053pt;}
.y6b_c00065{bottom:237.840080pt;}
.y6a_c00065{bottom:248.321647pt;}
.y69_c00065{bottom:248.641507pt;}
.y68_c00065{bottom:249.373440pt;}
.y67_c00065{bottom:249.674087pt;}
.y66_c00065{bottom:250.829887pt;}
.y65_c00065{bottom:251.243100pt;}
.y64_c00065{bottom:251.423747pt;}
.y63_c00065{bottom:252.237853pt;}
.y62_c00065{bottom:263.661033pt;}
.y61_c00065{bottom:264.033887pt;}
.y60_c00065{bottom:264.505553pt;}
.y5f_c00065{bottom:264.701000pt;}
.y5e_c00065{bottom:264.912213pt;}
.y5d_c00065{bottom:265.264940pt;}
.y5c_c00065{bottom:265.810373pt;}
.y5b_c00065{bottom:266.641027pt;}
.y5a_c00065{bottom:278.495867pt;}
.y59_c00065{bottom:278.721607pt;}
.y58_c00065{bottom:279.731007pt;}
.y57_c00065{bottom:279.946867pt;}
.y56_c00065{bottom:280.789387pt;}
.y55_c00065{bottom:281.152947pt;}
.y54_c00065{bottom:281.421947pt;}
.y53_c00065{bottom:282.002667pt;}
.y52_c00065{bottom:296.514649pt;}
.y51_c00065{bottom:309.110140pt;}
.y50_c00065{bottom:309.458660pt;}
.y4f_c00065{bottom:309.655077pt;}
.y4e_c00065{bottom:309.999971pt;}
.y4d_c00065{bottom:310.507964pt;}
.y4c_c00065{bottom:310.850859pt;}
.y4b_c00065{bottom:311.099468pt;}
.y4a_c00065{bottom:311.818529pt;}
.y49_c00065{bottom:312.036700pt;}
.y48_c00065{bottom:312.322121pt;}
.y47_c00065{bottom:312.708541pt;}
.y46_c00065{bottom:325.576497pt;}
.y45_c00065{bottom:325.686141pt;}
.y44_c00065{bottom:325.981564pt;}
.y43_c00065{bottom:326.203096pt;}
.y42_c00065{bottom:326.615092pt;}
.y41_c00065{bottom:326.826880pt;}
.y40_c00065{bottom:327.244777pt;}
.y3f_c00065{bottom:327.403209pt;}
.y3e_c00065{bottom:327.513579pt;}
.y3d_c00065{bottom:327.830511pt;}
.y3c_c00065{bottom:339.123477pt;}
.y3b_c00065{bottom:339.803188pt;}
.y3a_c00065{bottom:339.968373pt;}
.y39_c00065{bottom:340.385413pt;}
.y38_c00065{bottom:341.309041pt;}
.y37_c00065{bottom:341.785780pt;}
.y36_c00065{bottom:342.080775pt;}
.y35_c00065{bottom:342.713080pt;}
.y34_c00065{bottom:355.757232pt;}
.y33_c00065{bottom:355.899761pt;}
.y32_c00065{bottom:356.217101pt;}
.y31_c00065{bottom:356.559997pt;}
.y30_c00065{bottom:356.675815pt;}
.y2f_c00065{bottom:357.228500pt;}
.y2e_c00065{bottom:357.406397pt;}
.y2d_c00065{bottom:357.753839pt;}
.y2c_c00065{bottom:357.907095pt;}
.y2b_c00065{bottom:358.075293pt;}
.y2a_c00065{bottom:369.316544pt;}
.y29_c00065{bottom:369.963668pt;}
.y28_c00065{bottom:370.773721pt;}
.y27_c00065{bottom:371.054347pt;}
.y26_c00065{bottom:371.899260pt;}
.y25_c00065{bottom:372.327073pt;}
.y24_c00065{bottom:373.540249pt;}
.y23_c00065{bottom:373.919973pt;}
.y22_c00065{bottom:383.499328pt;}
.y21_c00065{bottom:384.651589pt;}
.y20_c00065{bottom:384.929925pt;}
.y1f_c00065{bottom:386.018231pt;}
.y1e_c00065{bottom:386.742107pt;}
.y1d_c00065{bottom:387.207109pt;}
.y1c_c00065{bottom:388.081741pt;}
.y1b_c00065{bottom:388.560517pt;}
.y1a_c00065{bottom:399.579825pt;}
.y19_c00065{bottom:399.865312pt;}
.y18_c00065{bottom:400.481641pt;}
.y17_c00065{bottom:400.832952pt;}
.y16_c00065{bottom:401.885637pt;}
.y15_c00065{bottom:402.962667pt;}
.y14_c00065{bottom:414.726181pt;}
.y13_c00065{bottom:415.666693pt;}
.y12_c00065{bottom:416.234221pt;}
.y11_c00065{bottom:416.648413pt;}
.y10_c00065{bottom:417.163429pt;}
.yf_c00065{bottom:417.811333pt;}
.ye_c00065{bottom:418.113757pt;}
.yd_c00065{bottom:418.561333pt;}
.yc_c00065{bottom:431.657333pt;}
.yb_c00065{bottom:444.748000pt;}
.ya_c00065{bottom:444.946667pt;}
.y9_c00065{bottom:445.160000pt;}
.y8_c00065{bottom:445.564000pt;}
.y7_c00065{bottom:445.953333pt;}
.y6_c00065{bottom:446.578667pt;}
.y5_c00065{bottom:447.122667pt;}
.y4_c00065{bottom:460.538667pt;}
.y3_c00065{bottom:475.098667pt;}
.y2_c00065{bottom:490.484000pt;}
.y1_c00065{bottom:506.757333pt;}
.h18_c00065{height:19.600000pt;}
.h16_c00065{height:48.538793pt;}
.h19_c00065{height:49.471514pt;}
.h10_c00065{height:49.472231pt;}
.hb_c00065{height:49.473814pt;}
.h12_c00065{height:51.339108pt;}
.h17_c00065{height:51.339904pt;}
.hc_c00065{height:51.340750pt;}
.h13_c00065{height:52.272546pt;}
.h9_c00065{height:52.274219pt;}
.h7_c00065{height:53.200000pt;}
.h15_c00065{height:53.205985pt;}
.ha_c00065{height:53.207687pt;}
.h14_c00065{height:54.139423pt;}
.h1a_c00065{height:55.072063pt;}
.h6_c00065{height:56.000000pt;}
.h8_c00065{height:56.009071pt;}
.h5_c00065{height:56.933333pt;}
.h1b_c00065{height:56.938913pt;}
.h11_c00065{height:56.939738pt;}
.h2_c00065{height:57.866667pt;}
.he_c00065{height:57.873176pt;}
.hd_c00065{height:57.875028pt;}
.h4_c00065{height:58.800000pt;}
.hf_c00065{height:59.740053pt;}
.h3_c00065{height:60.666667pt;}
.h1_c00065{height:544.000000pt;}
.h0_c00065{height:544.266667pt;}
.w0_c00065{width:327.840000pt;}
.w1_c00065{width:328.000000pt;}
.x0_c00065{left:0.000000pt;}
.x65_c00065{left:31.520560pt;}
.x7b_c00065{left:36.073328pt;}
.x86_c00065{left:37.507443pt;}
.x7d_c00065{left:38.438045pt;}
.x70_c00065{left:39.446667pt;}
.x5d_c00065{left:40.361853pt;}
.x4f_c00065{left:41.271944pt;}
.x1b_c00065{left:42.238667pt;}
.x2_c00065{left:43.200000pt;}
.x14_c00065{left:50.501333pt;}
.x74_c00065{left:53.281699pt;}
.x84_c00065{left:56.761245pt;}
.x31_c00065{left:59.119491pt;}
.x1c_c00065{left:60.478667pt;}
.x8_c00065{left:61.680000pt;}
.x50_c00065{left:63.434667pt;}
.x2d_c00065{left:66.025953pt;}
.x24_c00065{left:67.250667pt;}
.x61_c00065{left:68.226553pt;}
.x49_c00065{left:69.266015pt;}
.x6e_c00065{left:72.387447pt;}
.x36_c00065{left:73.820780pt;}
.x67_c00065{left:75.923960pt;}
.x9_c00065{left:79.200000pt;}
.x25_c00065{left:84.052000pt;}
.x3e_c00065{left:86.483407pt;}
.x7f_c00065{left:87.421373pt;}
.x4a_c00065{left:89.664391pt;}
.x11_c00065{left:91.680000pt;}
.x15_c00065{left:95.854667pt;}
.x3_c00065{left:97.200000pt;}
.x44_c00065{left:99.960495pt;}
.x51_c00065{left:102.149333pt;}
.x58_c00065{left:103.575740pt;}
.x1d_c00065{left:105.358667pt;}
.x68_c00065{left:106.638073pt;}
.x3f_c00065{left:107.601828pt;}
.x37_c00065{left:108.615595pt;}
.x2e_c00065{left:109.786399pt;}
.xa_c00065{left:113.040000pt;}
.x32_c00065{left:114.242799pt;}
.x4_c00065{left:115.440000pt;}
.x5e_c00065{left:116.730607pt;}
.x1e_c00065{left:119.758667pt;}
.x6c_c00065{left:121.235373pt;}
.x69_c00065{left:123.123000pt;}
.x87_c00065{left:125.375848pt;}
.x38_c00065{left:126.376369pt;}
.x80_c00065{left:127.489027pt;}
.x59_c00065{left:129.434027pt;}
.x12_c00065{left:133.680000pt;}
.x78_c00065{left:136.605949pt;}
.x54_c00065{left:138.871293pt;}
.x1f_c00065{left:140.638667pt;}
.x40_c00065{left:141.686240pt;}
.x52_c00065{left:144.320000pt;}
.x62_c00065{left:145.812060pt;}
.x16_c00065{left:147.933333pt;}
.x13_c00065{left:150.960000pt;}
.x4b_c00065{left:156.563791pt;}
.x20_c00065{left:158.638667pt;}
.x75_c00065{left:160.332013pt;}
.xb_c00065{left:161.760000pt;}
.x45_c00065{left:162.890641pt;}
.x55_c00065{left:164.075673pt;}
.x29_c00065{left:167.573333pt;}
.x81_c00065{left:169.237939pt;}
.x1_c00065{left:170.160000pt;}
.x26_c00065{left:171.669333pt;}
.x7c_c00065{left:173.070573pt;}
.xc_c00065{left:174.000000pt;}
.x6a_c00065{left:176.158753pt;}
.x56_c00065{left:179.134560pt;}
.x17_c00065{left:180.374667pt;}
.x39_c00065{left:181.638943pt;}
.x33_c00065{left:184.826125pt;}
.x5f_c00065{left:186.530427pt;}
.x2a_c00065{left:188.238667pt;}
.x6f_c00065{left:189.448353pt;}
.xd_c00065{left:191.760000pt;}
.x3a_c00065{left:193.158969pt;}
.x63_c00065{left:196.953947pt;}
.x4c_c00065{left:198.811277pt;}
.x21_c00065{left:199.918667pt;}
.x5a_c00065{left:201.686280pt;}
.x27_c00065{left:203.198667pt;}
.x46_c00065{left:204.150227pt;}
.x82_c00065{left:205.796408pt;}
.x41_c00065{left:207.706951pt;}
.xe_c00065{left:210.240000pt;}
.x71_c00065{left:211.516000pt;}
.x18_c00065{left:214.004000pt;}
.x22_c00065{left:215.038667pt;}
.x64_c00065{left:216.564313pt;}
.x79_c00065{left:219.407968pt;}
.x5b_c00065{left:220.484667pt;}
.x34_c00065{left:221.649664pt;}
.x76_c00065{left:223.457723pt;}
.x2b_c00065{left:224.493333pt;}
.x47_c00065{left:226.282189pt;}
.x3b_c00065{left:227.451049pt;}
.x7e_c00065{left:228.736728pt;}
.x19_c00065{left:231.761333pt;}
.x4d_c00065{left:235.126469pt;}
.x5_c00065{left:236.640000pt;}
.x2f_c00065{left:237.673249pt;}
.x6d_c00065{left:238.618093pt;}
.x2c_c00065{left:241.286667pt;}
.x72_c00065{left:243.529333pt;}
.x88_c00065{left:246.785053pt;}
.x1a_c00065{left:248.266667pt;}
.x42_c00065{left:249.251725pt;}
.x35_c00065{left:251.085837pt;}
.x6_c00065{left:252.240000pt;}
.x57_c00065{left:253.355660pt;}
.x28_c00065{left:255.449333pt;}
.x77_c00065{left:256.581552pt;}
.x3c_c00065{left:259.141479pt;}
.x73_c00065{left:260.041333pt;}
.x23_c00065{left:261.118667pt;}
.x85_c00065{left:262.229869pt;}
.xf_c00065{left:265.440000pt;}
.x48_c00065{left:266.820351pt;}
.x83_c00065{left:270.071035pt;}
.x60_c00065{left:271.025367pt;}
.x3d_c00065{left:273.331156pt;}
.x7a_c00065{left:276.554109pt;}
.x66_c00065{left:278.703053pt;}
.x53_c00065{left:282.172000pt;}
.x6b_c00065{left:284.250060pt;}
.x5c_c00065{left:286.247687pt;}
.x7_c00065{left:290.640000pt;}
.x10_c00065{left:293.040000pt;}
.x30_c00065{left:295.254303pt;}
.x43_c00065{left:297.786196pt;}
.x4e_c00065{left:298.688377pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00066 {
    display:none;
  }
  .loading-indicator_c00066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00066 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00066 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00066" -> "#page-container .classname_c00066")
 */
.pf_c00066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00066 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00066 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00066 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00066 {overflow:visible;}
  }
}
.c_c00066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00066 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00066:after { /* webkit #35443 */
  content: '';
}
.t_c00066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00066 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00066 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00066 { /* info for Javascript */
  display:none;
}
.l_c00066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00066:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00066 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00066.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00066{transform:matrix(0.048210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048210,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);}
.m49_c00066{transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);}
.mef_c00066{transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.mee_c00066{transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);}
.mca_c00066{transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);}
.mf3_c00066{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m6e_c00066{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.maa_c00066{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.ma7_c00066{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m78_c00066{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.ma3_c00066{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);}
.m8f_c00066{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.175110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175110,0.000000,0.000000,0.250000,0,0);}
.m4e_c00066{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.mea_c00066{transform:matrix(0.175795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175795,0.000000,0.000000,0.250000,0,0);}
.mc0_c00066{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.mf2_c00066{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m83_c00066{transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);}
.mbe_c00066{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m7b_c00066{transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);}
.mbf_c00066{transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);}
.m71_c00066{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00066{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m14_c00066{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.ma4_c00066{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m29_c00066{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m95_c00066{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m42_c00066{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.mb9_c00066{transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);}
.mf5_c00066{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);}
.m99_c00066{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.me1_c00066{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.mc4_c00066{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m34_c00066{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.mb0_c00066{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m9a_c00066{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.mcd_c00066{transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);}
.mc3_c00066{transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);}
.mae_c00066{transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.mc6_c00066{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.ma1_c00066{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00066{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00066{transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);}
.m70_c00066{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m6d_c00066{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m9c_c00066{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m76_c00066{transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);}
.mbd_c00066{transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m56_c00066{transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m86_c00066{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m7f_c00066{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.md1_c00066{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m94_c00066{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m3b_c00066{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00066{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.me3_c00066{transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);}
.m6c_c00066{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.mf1_c00066{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.mc1_c00066{transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);}
.m64_c00066{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.mce_c00066{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);}
.md3_c00066{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m72_c00066{transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);}
.mab_c00066{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00066{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m4a_c00066{transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);}
.me6_c00066{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.m79_c00066{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m8a_c00066{transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);}
.m41_c00066{transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);}
.m8e_c00066{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);}
.m61_c00066{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.me9_c00066{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m54_c00066{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.m7e_c00066{transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);}
.m9f_c00066{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.maf_c00066{transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);}
.m4d_c00066{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.mde_c00066{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.m89_c00066{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.mc2_c00066{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mbc_c00066{transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);}
.md5_c00066{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.m5d_c00066{transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);}
.m62_c00066{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m52_c00066{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m65_c00066{transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);}
.m66_c00066{transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);}
.ma5_c00066{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);}
.m5f_c00066{transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);}
.m97_c00066{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.m80_c00066{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);}
.me7_c00066{transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);}
.m8c_c00066{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.m51_c00066{transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.mf4_c00066{transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m96_c00066{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m77_c00066{transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);}
.m7c_c00066{transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);}
.mb6_c00066{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m87_c00066{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00066{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.mc5_c00066{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.ma9_c00066{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.m88_c00066{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m6b_c00066{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.mf6_c00066{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00066{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m93_c00066{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.m9d_c00066{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m5e_c00066{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.mec_c00066{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m45_c00066{transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);}
.mb2_c00066{transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);}
.mdf_c00066{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m21_c00066{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m8d_c00066{transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m60_c00066{transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00066{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m67_c00066{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00066{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.me8_c00066{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.md6_c00066{transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);}
.m59_c00066{transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);}
.md0_c00066{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m6f_c00066{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.ma0_c00066{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m90_c00066{transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);}
.m69_c00066{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);}
.m68_c00066{transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);}
.m9b_c00066{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.m84_c00066{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.mc7_c00066{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00066{transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m75_c00066{transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);}
.mac_c00066{transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);}
.m98_c00066{transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);}
.med_c00066{transform:matrix(0.225980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225980,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);}
.mbb_c00066{transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);}
.mb7_c00066{transform:matrix(0.226520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226520,0.000000,0.000000,0.250000,0,0);}
.md9_c00066{transform:matrix(0.226765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226765,0.000000,0.000000,0.250000,0,0);}
.m82_c00066{transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);}
.m85_c00066{transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);}
.mcf_c00066{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mda_c00066{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.mba_c00066{transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);}
.me0_c00066{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.me5_c00066{transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.229970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229970,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.230135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.md7_c00066{transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);}
.m73_c00066{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.mb4_c00066{transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.me4_c00066{transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);}
.mcb_c00066{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.meb_c00066{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m91_c00066{transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.md2_c00066{transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);}
.m81_c00066{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00066{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m35_c00066{transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);}
.me2_c00066{transform:matrix(0.239345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.mdb_c00066{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m38_c00066{transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);}
.mad_c00066{transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);}
.mb1_c00066{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m63_c00066{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00066{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.m6a_c00066{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.mb3_c00066{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00066{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.mcc_c00066{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.md4_c00066{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m40_c00066{transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);}
.md8_c00066{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.mdd_c00066{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:0.000000px;}
.fc0_c00066{color:transparent;}
.fs9_c00066{font-size:55.650000px;}
.fsb_c00066{font-size:56.700000px;}
.fs6_c00066{font-size:57.750000px;}
.fs7_c00066{font-size:58.800000px;}
.fs4_c00066{font-size:59.850000px;}
.fsa_c00066{font-size:60.900000px;}
.fs8_c00066{font-size:61.950000px;}
.fs5_c00066{font-size:63.000000px;}
.fs2_c00066{font-size:66.150000px;}
.fs3_c00066{font-size:68.250000px;}
.fs1_c00066{font-size:69.300000px;}
.fs0_c00066{font-size:113.400000px;}
.y0_c00066{bottom:0.000000px;}
.y56_c00066{bottom:35.160000px;}
.y55_c00066{bottom:51.747000px;}
.y54_c00066{bottom:67.773000px;}
.y53_c00066{bottom:68.398500px;}
.y52_c00066{bottom:68.665500px;}
.y51_c00066{bottom:69.354000px;}
.y50_c00066{bottom:69.655500px;}
.y4f_c00066{bottom:69.969000px;}
.y4e_c00066{bottom:70.456500px;}
.y4d_c00066{bottom:70.737000px;}
.y4c_c00066{bottom:71.551500px;}
.y4b_c00066{bottom:85.894500px;}
.y4a_c00066{bottom:102.612000px;}
.y49_c00066{bottom:119.896500px;}
.y48_c00066{bottom:135.975000px;}
.y47_c00066{bottom:136.161000px;}
.y46_c00066{bottom:136.978500px;}
.y45_c00066{bottom:137.590500px;}
.y44_c00066{bottom:137.916000px;}
.y43_c00066{bottom:138.136500px;}
.y42_c00066{bottom:138.781500px;}
.y3b_c00066{bottom:148.773000px;}
.y3c_c00066{bottom:149.262000px;}
.y3d_c00066{bottom:150.228000px;}
.y3e_c00066{bottom:150.667500px;}
.y3f_c00066{bottom:151.092000px;}
.y40_c00066{bottom:151.494000px;}
.y41_c00066{bottom:152.287500px;}
.y3a_c00066{bottom:168.198000px;}
.y39_c00066{bottom:186.976500px;}
.y38_c00066{bottom:202.972500px;}
.y37_c00066{bottom:203.340000px;}
.y36_c00066{bottom:203.664000px;}
.y35_c00066{bottom:204.045000px;}
.y34_c00066{bottom:204.463500px;}
.y33_c00066{bottom:205.063500px;}
.y32_c00066{bottom:205.357500px;}
.y31_c00066{bottom:205.530000px;}
.y30_c00066{bottom:205.744500px;}
.y2f_c00066{bottom:220.879500px;}
.y2e_c00066{bottom:238.281000px;}
.y2d_c00066{bottom:255.051000px;}
.y2c_c00066{bottom:272.364000px;}
.y2b_c00066{bottom:290.133000px;}
.y2a_c00066{bottom:306.957000px;}
.y29_c00066{bottom:323.377500px;}
.y28_c00066{bottom:340.267500px;}
.y27_c00066{bottom:355.962000px;}
.y1f_c00066{bottom:370.171500px;}
.y20_c00066{bottom:370.407000px;}
.y21_c00066{bottom:370.522500px;}
.y22_c00066{bottom:371.283000px;}
.y23_c00066{bottom:371.562000px;}
.y24_c00066{bottom:371.950500px;}
.y25_c00066{bottom:372.547500px;}
.y26_c00066{bottom:372.748500px;}
.y17_c00066{bottom:387.180000px;}
.y18_c00066{bottom:387.490500px;}
.y19_c00066{bottom:387.672000px;}
.y1a_c00066{bottom:388.239000px;}
.y1b_c00066{bottom:388.444500px;}
.y1c_c00066{bottom:388.644000px;}
.y1d_c00066{bottom:389.386500px;}
.y1e_c00066{bottom:389.787000px;}
.y10_c00066{bottom:404.191500px;}
.y11_c00066{bottom:404.827500px;}
.y12_c00066{bottom:405.061500px;}
.y13_c00066{bottom:405.877500px;}
.y14_c00066{bottom:406.225500px;}
.y15_c00066{bottom:406.887000px;}
.y16_c00066{bottom:407.427000px;}
.yf_c00066{bottom:422.587500px;}
.ye_c00066{bottom:439.833000px;}
.yd_c00066{bottom:456.703500px;}
.yc_c00066{bottom:473.596500px;}
.yb_c00066{bottom:490.843500px;}
.ya_c00066{bottom:507.697500px;}
.y4_c00066{bottom:523.261500px;}
.y5_c00066{bottom:524.155500px;}
.y6_c00066{bottom:524.655000px;}
.y7_c00066{bottom:525.160500px;}
.y8_c00066{bottom:525.603000px;}
.y9_c00066{bottom:525.879000px;}
.y3_c00066{bottom:542.286000px;}
.y2_c00066{bottom:558.907500px;}
.y1_c00066{bottom:572.826000px;}
.hb_c00066{height:55.650000px;}
.hd_c00066{height:56.700000px;}
.h8_c00066{height:57.750000px;}
.h9_c00066{height:58.800000px;}
.h6_c00066{height:59.850000px;}
.hc_c00066{height:60.900000px;}
.ha_c00066{height:61.950000px;}
.h7_c00066{height:63.000000px;}
.h4_c00066{height:66.150000px;}
.h5_c00066{height:68.250000px;}
.h3_c00066{height:69.300000px;}
.h2_c00066{height:113.400000px;}
.h1_c00066{height:612.000000px;}
.h0_c00066{height:612.300000px;}
.w0_c00066{width:368.820000px;}
.w1_c00066{width:369.000000px;}
.x0_c00066{left:0.000000px;}
.x3_c00066{left:21.870000px;}
.x29_c00066{left:23.218500px;}
.x2f_c00066{left:24.840000px;}
.x57_c00066{left:26.458500px;}
.x63_c00066{left:27.810000px;}
.x74_c00066{left:29.431500px;}
.x7e_c00066{left:36.180000px;}
.xd_c00066{left:39.960000px;}
.x1f_c00066{left:41.038500px;}
.x4_c00066{left:44.010000px;}
.x49_c00066{left:45.358500px;}
.x30_c00066{left:46.440000px;}
.x3e_c00066{left:47.907000px;}
.x1a_c00066{left:51.838500px;}
.x5b_c00066{left:53.728500px;}
.x3a_c00066{left:55.425000px;}
.x58_c00066{left:56.968500px;}
.xe_c00066{left:60.480000px;}
.x61_c00066{left:62.304000px;}
.x5_c00066{left:68.580000px;}
.x2a_c00066{left:74.248500px;}
.x24_c00066{left:75.868500px;}
.x5c_c00066{left:77.218500px;}
.x4b_c00066{left:80.728500px;}
.x31_c00066{left:82.620000px;}
.x43_c00066{left:83.968500px;}
.x59_c00066{left:86.398500px;}
.x53_c00066{left:89.638500px;}
.x7a_c00066{left:91.944000px;}
.x20_c00066{left:95.308500px;}
.x5d_c00066{left:98.008500px;}
.x32_c00066{left:100.710000px;}
.x15_c00066{left:103.005000px;}
.x64_c00066{left:106.920000px;}
.x4c_c00066{left:107.998500px;}
.x2b_c00066{left:109.348500px;}
.x44_c00066{left:110.968500px;}
.x72_c00066{left:112.321500px;}
.x7b_c00066{left:113.544000px;}
.x75_c00066{left:115.561500px;}
.x6f_c00066{left:122.851500px;}
.x5e_c00066{left:124.738500px;}
.x6_c00066{left:127.170000px;}
.xf_c00066{left:128.790000px;}
.x3b_c00066{left:130.251000px;}
.x3f_c00066{left:135.609000px;}
.x69_c00066{left:136.890000px;}
.x50_c00066{left:142.288500px;}
.x62_c00066{left:143.520000px;}
.x7_c00066{left:146.340000px;}
.x16_c00066{left:148.368000px;}
.x21_c00066{left:150.658500px;}
.x76_c00066{left:151.741500px;}
.x6a_c00066{left:153.630000px;}
.x45_c00066{left:155.518500px;}
.x65_c00066{left:156.870000px;}
.x4a_c00066{left:157.948500px;}
.x25_c00066{left:159.298500px;}
.x54_c00066{left:162.538500px;}
.x1_c00066{left:163.620000px;}
.x70_c00066{left:166.051500px;}
.x3c_c00066{left:170.760000px;}
.x33_c00066{left:171.990000px;}
.x77_c00066{left:175.501500px;}
.x37_c00066{left:177.195000px;}
.x66_c00066{left:178.470000px;}
.x8_c00066{left:180.630000px;}
.x26_c00066{left:183.058500px;}
.x2c_c00066{left:184.408500px;}
.x6d_c00066{left:185.607000px;}
.x81_c00066{left:188.730000px;}
.x10_c00066{left:190.350000px;}
.x9_c00066{left:192.240000px;}
.x17_c00066{left:194.262000px;}
.x67_c00066{left:196.290000px;}
.x34_c00066{left:198.720000px;}
.x11_c00066{left:202.770000px;}
.x1b_c00066{left:203.848500px;}
.xa_c00066{left:207.630000px;}
.x38_c00066{left:208.837500px;}
.x52_c00066{left:210.058500px;}
.x5f_c00066{left:211.948500px;}
.x6b_c00066{left:214.110000px;}
.x73_c00066{left:215.191500px;}
.x1c_c00066{left:216.808500px;}
.x78_c00066{left:220.321500px;}
.x22_c00066{left:221.398500px;}
.x55_c00066{left:227.068500px;}
.x4d_c00066{left:228.148500px;}
.x46_c00066{left:229.228500px;}
.x18_c00066{left:234.436500px;}
.x1d_c00066{left:235.438500px;}
.x12_c00066{left:238.950000px;}
.x7f_c00066{left:240.030000px;}
.x41_c00066{left:241.108500px;}
.x35_c00066{left:245.700000px;}
.x56_c00066{left:247.588500px;}
.x7c_c00066{left:251.212500px;}
.x47_c00066{left:252.988500px;}
.x2d_c00066{left:254.338500px;}
.x71_c00066{left:255.691500px;}
.x4e_c00066{left:257.848500px;}
.x19_c00066{left:259.567500px;}
.x40_c00066{left:261.975000px;}
.x42_c00066{left:265.138500px;}
.x36_c00066{left:268.920000px;}
.xb_c00066{left:270.270000px;}
.x7d_c00066{left:271.743000px;}
.x13_c00066{left:273.780000px;}
.x2e_c00066{left:279.178500px;}
.x48_c00066{left:280.258500px;}
.x27_c00066{left:281.338500px;}
.x6e_c00066{left:282.556500px;}
.x79_c00066{left:283.771500px;}
.x3d_c00066{left:284.970000px;}
.x2_c00066{left:287.280000px;}
.x6c_c00066{left:288.630000px;}
.x80_c00066{left:291.600000px;}
.xc_c00066{left:294.300000px;}
.x68_c00066{left:297.270000px;}
.x14_c00066{left:300.240000px;}
.x5a_c00066{left:304.828500px;}
.x28_c00066{left:306.988500px;}
.x23_c00066{left:308.608500px;}
.x60_c00066{left:311.578500px;}
.x1e_c00066{left:316.438500px;}
.x39_c00066{left:318.135000px;}
.x51_c00066{left:319.948500px;}
.x4f_c00066{left:321.298500px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fs9_c00066{font-size:49.466667pt;}
.fsb_c00066{font-size:50.400000pt;}
.fs6_c00066{font-size:51.333333pt;}
.fs7_c00066{font-size:52.266667pt;}
.fs4_c00066{font-size:53.200000pt;}
.fsa_c00066{font-size:54.133333pt;}
.fs8_c00066{font-size:55.066667pt;}
.fs5_c00066{font-size:56.000000pt;}
.fs2_c00066{font-size:58.800000pt;}
.fs3_c00066{font-size:60.666667pt;}
.fs1_c00066{font-size:61.600000pt;}
.fs0_c00066{font-size:100.800000pt;}
.y0_c00066{bottom:0.000000pt;}
.y56_c00066{bottom:31.253333pt;}
.y55_c00066{bottom:45.997333pt;}
.y54_c00066{bottom:60.242667pt;}
.y53_c00066{bottom:60.798667pt;}
.y52_c00066{bottom:61.036000pt;}
.y51_c00066{bottom:61.648000pt;}
.y50_c00066{bottom:61.916000pt;}
.y4f_c00066{bottom:62.194667pt;}
.y4e_c00066{bottom:62.628000pt;}
.y4d_c00066{bottom:62.877333pt;}
.y4c_c00066{bottom:63.601333pt;}
.y4b_c00066{bottom:76.350667pt;}
.y4a_c00066{bottom:91.210667pt;}
.y49_c00066{bottom:106.574667pt;}
.y48_c00066{bottom:120.866667pt;}
.y47_c00066{bottom:121.032000pt;}
.y46_c00066{bottom:121.758667pt;}
.y45_c00066{bottom:122.302667pt;}
.y44_c00066{bottom:122.592000pt;}
.y43_c00066{bottom:122.788000pt;}
.y42_c00066{bottom:123.361333pt;}
.y3b_c00066{bottom:132.242667pt;}
.y3c_c00066{bottom:132.677333pt;}
.y3d_c00066{bottom:133.536000pt;}
.y3e_c00066{bottom:133.926667pt;}
.y3f_c00066{bottom:134.304000pt;}
.y40_c00066{bottom:134.661333pt;}
.y41_c00066{bottom:135.366667pt;}
.y3a_c00066{bottom:149.509333pt;}
.y39_c00066{bottom:166.201333pt;}
.y38_c00066{bottom:180.420000pt;}
.y37_c00066{bottom:180.746667pt;}
.y36_c00066{bottom:181.034667pt;}
.y35_c00066{bottom:181.373333pt;}
.y34_c00066{bottom:181.745333pt;}
.y33_c00066{bottom:182.278667pt;}
.y32_c00066{bottom:182.540000pt;}
.y31_c00066{bottom:182.693333pt;}
.y30_c00066{bottom:182.884000pt;}
.y2f_c00066{bottom:196.337333pt;}
.y2e_c00066{bottom:211.805333pt;}
.y2d_c00066{bottom:226.712000pt;}
.y2c_c00066{bottom:242.101333pt;}
.y2b_c00066{bottom:257.896000pt;}
.y2a_c00066{bottom:272.850667pt;}
.y29_c00066{bottom:287.446667pt;}
.y28_c00066{bottom:302.460000pt;}
.y27_c00066{bottom:316.410667pt;}
.y1f_c00066{bottom:329.041333pt;}
.y20_c00066{bottom:329.250667pt;}
.y21_c00066{bottom:329.353333pt;}
.y22_c00066{bottom:330.029333pt;}
.y23_c00066{bottom:330.277333pt;}
.y24_c00066{bottom:330.622667pt;}
.y25_c00066{bottom:331.153333pt;}
.y26_c00066{bottom:331.332000pt;}
.y17_c00066{bottom:344.160000pt;}
.y18_c00066{bottom:344.436000pt;}
.y19_c00066{bottom:344.597333pt;}
.y1a_c00066{bottom:345.101333pt;}
.y1b_c00066{bottom:345.284000pt;}
.y1c_c00066{bottom:345.461333pt;}
.y1d_c00066{bottom:346.121333pt;}
.y1e_c00066{bottom:346.477333pt;}
.y10_c00066{bottom:359.281333pt;}
.y11_c00066{bottom:359.846667pt;}
.y12_c00066{bottom:360.054667pt;}
.y13_c00066{bottom:360.780000pt;}
.y14_c00066{bottom:361.089333pt;}
.y15_c00066{bottom:361.677333pt;}
.y16_c00066{bottom:362.157333pt;}
.yf_c00066{bottom:375.633333pt;}
.ye_c00066{bottom:390.962667pt;}
.yd_c00066{bottom:405.958667pt;}
.yc_c00066{bottom:420.974667pt;}
.yb_c00066{bottom:436.305333pt;}
.ya_c00066{bottom:451.286667pt;}
.y4_c00066{bottom:465.121333pt;}
.y5_c00066{bottom:465.916000pt;}
.y6_c00066{bottom:466.360000pt;}
.y7_c00066{bottom:466.809333pt;}
.y8_c00066{bottom:467.202667pt;}
.y9_c00066{bottom:467.448000pt;}
.y3_c00066{bottom:482.032000pt;}
.y2_c00066{bottom:496.806667pt;}
.y1_c00066{bottom:509.178667pt;}
.hb_c00066{height:49.466667pt;}
.hd_c00066{height:50.400000pt;}
.h8_c00066{height:51.333333pt;}
.h9_c00066{height:52.266667pt;}
.h6_c00066{height:53.200000pt;}
.hc_c00066{height:54.133333pt;}
.ha_c00066{height:55.066667pt;}
.h7_c00066{height:56.000000pt;}
.h4_c00066{height:58.800000pt;}
.h5_c00066{height:60.666667pt;}
.h3_c00066{height:61.600000pt;}
.h2_c00066{height:100.800000pt;}
.h1_c00066{height:544.000000pt;}
.h0_c00066{height:544.266667pt;}
.w0_c00066{width:327.840000pt;}
.w1_c00066{width:328.000000pt;}
.x0_c00066{left:0.000000pt;}
.x3_c00066{left:19.440000pt;}
.x29_c00066{left:20.638667pt;}
.x2f_c00066{left:22.080000pt;}
.x57_c00066{left:23.518667pt;}
.x63_c00066{left:24.720000pt;}
.x74_c00066{left:26.161333pt;}
.x7e_c00066{left:32.160000pt;}
.xd_c00066{left:35.520000pt;}
.x1f_c00066{left:36.478667pt;}
.x4_c00066{left:39.120000pt;}
.x49_c00066{left:40.318667pt;}
.x30_c00066{left:41.280000pt;}
.x3e_c00066{left:42.584000pt;}
.x1a_c00066{left:46.078667pt;}
.x5b_c00066{left:47.758667pt;}
.x3a_c00066{left:49.266667pt;}
.x58_c00066{left:50.638667pt;}
.xe_c00066{left:53.760000pt;}
.x61_c00066{left:55.381333pt;}
.x5_c00066{left:60.960000pt;}
.x2a_c00066{left:65.998667pt;}
.x24_c00066{left:67.438667pt;}
.x5c_c00066{left:68.638667pt;}
.x4b_c00066{left:71.758667pt;}
.x31_c00066{left:73.440000pt;}
.x43_c00066{left:74.638667pt;}
.x59_c00066{left:76.798667pt;}
.x53_c00066{left:79.678667pt;}
.x7a_c00066{left:81.728000pt;}
.x20_c00066{left:84.718667pt;}
.x5d_c00066{left:87.118667pt;}
.x32_c00066{left:89.520000pt;}
.x15_c00066{left:91.560000pt;}
.x64_c00066{left:95.040000pt;}
.x4c_c00066{left:95.998667pt;}
.x2b_c00066{left:97.198667pt;}
.x44_c00066{left:98.638667pt;}
.x72_c00066{left:99.841333pt;}
.x7b_c00066{left:100.928000pt;}
.x75_c00066{left:102.721333pt;}
.x6f_c00066{left:109.201333pt;}
.x5e_c00066{left:110.878667pt;}
.x6_c00066{left:113.040000pt;}
.xf_c00066{left:114.480000pt;}
.x3b_c00066{left:115.778667pt;}
.x3f_c00066{left:120.541333pt;}
.x69_c00066{left:121.680000pt;}
.x50_c00066{left:126.478667pt;}
.x62_c00066{left:127.573333pt;}
.x7_c00066{left:130.080000pt;}
.x16_c00066{left:131.882667pt;}
.x21_c00066{left:133.918667pt;}
.x76_c00066{left:134.881333pt;}
.x6a_c00066{left:136.560000pt;}
.x45_c00066{left:138.238667pt;}
.x65_c00066{left:139.440000pt;}
.x4a_c00066{left:140.398667pt;}
.x25_c00066{left:141.598667pt;}
.x54_c00066{left:144.478667pt;}
.x1_c00066{left:145.440000pt;}
.x70_c00066{left:147.601333pt;}
.x3c_c00066{left:151.786667pt;}
.x33_c00066{left:152.880000pt;}
.x77_c00066{left:156.001333pt;}
.x37_c00066{left:157.506667pt;}
.x66_c00066{left:158.640000pt;}
.x8_c00066{left:160.560000pt;}
.x26_c00066{left:162.718667pt;}
.x2c_c00066{left:163.918667pt;}
.x6d_c00066{left:164.984000pt;}
.x81_c00066{left:167.760000pt;}
.x10_c00066{left:169.200000pt;}
.x9_c00066{left:170.880000pt;}
.x17_c00066{left:172.677333pt;}
.x67_c00066{left:174.480000pt;}
.x34_c00066{left:176.640000pt;}
.x11_c00066{left:180.240000pt;}
.x1b_c00066{left:181.198667pt;}
.xa_c00066{left:184.560000pt;}
.x38_c00066{left:185.633333pt;}
.x52_c00066{left:186.718667pt;}
.x5f_c00066{left:188.398667pt;}
.x6b_c00066{left:190.320000pt;}
.x73_c00066{left:191.281333pt;}
.x1c_c00066{left:192.718667pt;}
.x78_c00066{left:195.841333pt;}
.x22_c00066{left:196.798667pt;}
.x55_c00066{left:201.838667pt;}
.x4d_c00066{left:202.798667pt;}
.x46_c00066{left:203.758667pt;}
.x18_c00066{left:208.388000pt;}
.x1d_c00066{left:209.278667pt;}
.x12_c00066{left:212.400000pt;}
.x7f_c00066{left:213.360000pt;}
.x41_c00066{left:214.318667pt;}
.x35_c00066{left:218.400000pt;}
.x56_c00066{left:220.078667pt;}
.x7c_c00066{left:223.300000pt;}
.x47_c00066{left:224.878667pt;}
.x2d_c00066{left:226.078667pt;}
.x71_c00066{left:227.281333pt;}
.x4e_c00066{left:229.198667pt;}
.x19_c00066{left:230.726667pt;}
.x40_c00066{left:232.866667pt;}
.x42_c00066{left:235.678667pt;}
.x36_c00066{left:239.040000pt;}
.xb_c00066{left:240.240000pt;}
.x7d_c00066{left:241.549333pt;}
.x13_c00066{left:243.360000pt;}
.x2e_c00066{left:248.158667pt;}
.x48_c00066{left:249.118667pt;}
.x27_c00066{left:250.078667pt;}
.x6e_c00066{left:251.161333pt;}
.x79_c00066{left:252.241333pt;}
.x3d_c00066{left:253.306667pt;}
.x2_c00066{left:255.360000pt;}
.x6c_c00066{left:256.560000pt;}
.x80_c00066{left:259.200000pt;}
.xc_c00066{left:261.600000pt;}
.x68_c00066{left:264.240000pt;}
.x14_c00066{left:266.880000pt;}
.x5a_c00066{left:270.958667pt;}
.x28_c00066{left:272.878667pt;}
.x23_c00066{left:274.318667pt;}
.x60_c00066{left:276.958667pt;}
.x1e_c00066{left:281.278667pt;}
.x39_c00066{left:282.786667pt;}
.x51_c00066{left:284.398667pt;}
.x4f_c00066{left:285.598667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00067 {
    display:none;
  }
  .loading-indicator_c00067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00067 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00067 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00067" -> "#page-container .classname_c00067")
 */
.pf_c00067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00067 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00067 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00067 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00067 {overflow:visible;}
  }
}
.c_c00067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00067 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00067:after { /* webkit #35443 */
  content: '';
}
.t_c00067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00067 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00067 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00067 { /* info for Javascript */
  display:none;
}
.l_c00067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00067:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00067 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00067.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mff_c00067{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.128640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128640,0.000000,0.000000,0.250000,0,0);}
.mf6_c00067{transform:matrix(0.132426,0.002251,-0.004249,0.249964,0,0);-ms-transform:matrix(0.132426,0.002251,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.132426,0.002251,-0.004249,0.249964,0,0);}
.m41_c00067{transform:matrix(0.139927,0.001539,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139927,0.001539,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139927,0.001539,-0.002750,0.249985,0,0);}
.mb2_c00067{transform:matrix(0.144199,0.002451,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144199,0.002451,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144199,0.002451,-0.004249,0.249964,0,0);}
.mb7_c00067{transform:matrix(0.145049,0.002466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145049,0.002466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145049,0.002466,-0.004249,0.249964,0,0);}
.mae_c00067{transform:matrix(0.150953,0.002566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150953,0.002566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150953,0.002566,-0.004249,0.249964,0,0);}
.mf9_c00067{transform:matrix(0.151313,0.002572,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151313,0.002572,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151313,0.002572,-0.004249,0.249964,0,0);}
.mda_c00067{transform:matrix(0.154303,0.002623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154303,0.002623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154303,0.002623,-0.004249,0.249964,0,0);}
.m45_c00067{transform:matrix(0.154691,0.001702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154691,0.001702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154691,0.001702,-0.002750,0.249985,0,0);}
.m43_c00067{transform:matrix(0.155716,0.001713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155716,0.001713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155716,0.001713,-0.002750,0.249985,0,0);}
.mf8_c00067{transform:matrix(0.156117,0.002654,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156117,0.002654,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156117,0.002654,-0.004249,0.249964,0,0);}
.m8a_c00067{transform:matrix(0.157340,0.001731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157340,0.001731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157340,0.001731,-0.002750,0.249985,0,0);}
.ma1_c00067{transform:matrix(0.157847,0.002683,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157847,0.002683,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157847,0.002683,-0.004249,0.249964,0,0);}
.md4_c00067{transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);}
.m85_c00067{transform:matrix(0.158500,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158500,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158500,0.001744,-0.002750,0.249985,0,0);}
.mf0_c00067{transform:matrix(0.159612,0.002713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159612,0.002713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159612,0.002713,-0.004249,0.249964,0,0);}
.me2_c00067{transform:matrix(0.160627,0.002731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160627,0.002731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160627,0.002731,-0.004249,0.249964,0,0);}
.m11_c00067{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.maf_c00067{transform:matrix(0.161222,0.002741,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161222,0.002741,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161222,0.002741,-0.004249,0.249964,0,0);}
.me_c00067{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{transform:matrix(0.163310,0.001796,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163310,0.001796,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163310,0.001796,-0.002750,0.249985,0,0);}
.mdf_c00067{transform:matrix(0.163581,0.002781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163581,0.002781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163581,0.002781,-0.004249,0.249964,0,0);}
.m71_c00067{transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);}
.m35_c00067{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{transform:matrix(0.165835,0.001824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165835,0.001824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165835,0.001824,-0.002750,0.249985,0,0);}
.me6_c00067{transform:matrix(0.166021,0.002822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166021,0.002822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166021,0.002822,-0.004249,0.249964,0,0);}
.mdd_c00067{transform:matrix(0.166421,0.002829,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166421,0.002829,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166421,0.002829,-0.004249,0.249964,0,0);}
.m8e_c00067{transform:matrix(0.168565,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168565,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168565,0.001854,-0.002750,0.249985,0,0);}
.m9_c00067{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{transform:matrix(0.169155,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169155,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169155,0.001861,-0.002750,0.249985,0,0);}
.m8_c00067{transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);}
.mba_c00067{transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);}
.ma3_c00067{transform:matrix(0.170305,0.002895,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170305,0.002895,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170305,0.002895,-0.004249,0.249964,0,0);}
.med_c00067{transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);}
.m8d_c00067{transform:matrix(0.170655,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170655,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170655,0.001877,-0.002750,0.249985,0,0);}
.mb_c00067{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.m5c_c00067{transform:matrix(0.171175,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171175,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171175,0.001883,-0.002750,0.249985,0,0);}
.me8_c00067{transform:matrix(0.171225,0.002911,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171225,0.002911,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171225,0.002911,-0.004249,0.249964,0,0);}
.ma0_c00067{transform:matrix(0.171940,0.002923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171940,0.002923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171940,0.002923,-0.004249,0.249964,0,0);}
.mcb_c00067{transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);}
.mb8_c00067{transform:matrix(0.172565,0.002934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172565,0.002934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172565,0.002934,-0.004249,0.249964,0,0);}
.mf7_c00067{transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);}
.m17_c00067{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mf4_c00067{transform:matrix(0.175160,0.002978,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175160,0.002978,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175160,0.002978,-0.004249,0.249964,0,0);}
.m9a_c00067{transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);}
.m31_c00067{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.mc9_c00067{transform:matrix(0.176030,0.002993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176030,0.002993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176030,0.002993,-0.004249,0.249964,0,0);}
.m7e_c00067{transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);}
.m6e_c00067{transform:matrix(0.176769,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176769,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176769,0.001944,-0.002750,0.249985,0,0);}
.m76_c00067{transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);}
.m40_c00067{transform:matrix(0.178459,0.001963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178459,0.001963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178459,0.001963,-0.002750,0.249985,0,0);}
.m69_c00067{transform:matrix(0.178559,0.001964,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178559,0.001964,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178559,0.001964,-0.002750,0.249985,0,0);}
.mef_c00067{transform:matrix(0.178884,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178884,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178884,0.003041,-0.004249,0.249964,0,0);}
.mbd_c00067{transform:matrix(0.179059,0.003044,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179059,0.003044,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179059,0.003044,-0.004249,0.249964,0,0);}
.mf2_c00067{transform:matrix(0.179159,0.003046,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179159,0.003046,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179159,0.003046,-0.004249,0.249964,0,0);}
.m44_c00067{transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);}
.md0_c00067{transform:matrix(0.179659,0.003054,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179659,0.003054,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179659,0.003054,-0.004249,0.249964,0,0);}
.m47_c00067{transform:matrix(0.179899,0.001979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179899,0.001979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179899,0.001979,-0.002750,0.249985,0,0);}
.me3_c00067{transform:matrix(0.180214,0.003064,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180214,0.003064,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180214,0.003064,-0.004249,0.249964,0,0);}
.m4_c00067{transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);}
.mca_c00067{transform:matrix(0.181259,0.003081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181259,0.003081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181259,0.003081,-0.004249,0.249964,0,0);}
.mf1_c00067{transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);}
.mf5_c00067{transform:matrix(0.181534,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181534,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181534,0.003086,-0.004249,0.249964,0,0);}
.m6_c00067{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m63_c00067{transform:matrix(0.182394,0.002006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182394,0.002006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182394,0.002006,-0.002750,0.249985,0,0);}
.m6c_c00067{transform:matrix(0.182449,0.002007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182449,0.002007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182449,0.002007,-0.002750,0.249985,0,0);}
.m84_c00067{transform:matrix(0.182934,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182934,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182934,0.002012,-0.002750,0.249985,0,0);}
.m16_c00067{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.183144,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183144,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183144,0.002015,-0.002750,0.249985,0,0);}
.m8b_c00067{transform:matrix(0.183174,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183174,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183174,0.002015,-0.002750,0.249985,0,0);}
.m68_c00067{transform:matrix(0.183244,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183244,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183244,0.002016,-0.002750,0.249985,0,0);}
.mc3_c00067{transform:matrix(0.183553,0.003120,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183553,0.003120,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183553,0.003120,-0.004249,0.249964,0,0);}
.mbb_c00067{transform:matrix(0.183778,0.003124,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183778,0.003124,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183778,0.003124,-0.004249,0.249964,0,0);}
.me0_c00067{transform:matrix(0.184558,0.003137,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184558,0.003137,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184558,0.003137,-0.004249,0.249964,0,0);}
.m49_c00067{transform:matrix(0.184954,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184954,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184954,0.002034,-0.002750,0.249985,0,0);}
.mad_c00067{transform:matrix(0.185398,0.003152,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185398,0.003152,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185398,0.003152,-0.004249,0.249964,0,0);}
.m6a_c00067{transform:matrix(0.185469,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185469,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185469,0.002040,-0.002750,0.249985,0,0);}
.m21_c00067{transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{transform:matrix(0.186139,0.002048,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186139,0.002048,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186139,0.002048,-0.002750,0.249985,0,0);}
.m92_c00067{transform:matrix(0.187444,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187444,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187444,0.002062,-0.002750,0.249985,0,0);}
.m5b_c00067{transform:matrix(0.188274,0.002071,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188274,0.002071,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188274,0.002071,-0.002750,0.249985,0,0);}
.md2_c00067{transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);}
.m1a_c00067{transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00067{transform:matrix(0.189028,0.003213,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189028,0.003213,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189028,0.003213,-0.004249,0.249964,0,0);}
.m7f_c00067{transform:matrix(0.189174,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189174,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189174,0.002081,-0.002750,0.249985,0,0);}
.m32_c00067{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.me4_c00067{transform:matrix(0.189503,0.003222,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189503,0.003222,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189503,0.003222,-0.004249,0.249964,0,0);}
.m48_c00067{transform:matrix(0.190678,0.002097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190678,0.002097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190678,0.002097,-0.002750,0.249985,0,0);}
.mde_c00067{transform:matrix(0.191602,0.003257,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191602,0.003257,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191602,0.003257,-0.004249,0.249964,0,0);}
.m33_c00067{transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);}
.ma6_c00067{transform:matrix(0.191747,0.003260,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191747,0.003260,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191747,0.003260,-0.004249,0.249964,0,0);}
.m8c_c00067{transform:matrix(0.192438,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192438,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192438,0.002117,-0.002750,0.249985,0,0);}
.mbf_c00067{transform:matrix(0.192542,0.003273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192542,0.003273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192542,0.003273,-0.004249,0.249964,0,0);}
.me5_c00067{transform:matrix(0.192597,0.003274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192597,0.003274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192597,0.003274,-0.004249,0.249964,0,0);}
.ma2_c00067{transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);}
.m80_c00067{transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);}
.m1e_c00067{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.md5_c00067{transform:matrix(0.193202,0.003284,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193202,0.003284,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193202,0.003284,-0.004249,0.249964,0,0);}
.mab_c00067{transform:matrix(0.193207,0.003285,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193207,0.003285,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193207,0.003285,-0.004249,0.249964,0,0);}
.m5f_c00067{transform:matrix(0.193413,0.002128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193413,0.002128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193413,0.002128,-0.002750,0.249985,0,0);}
.m38_c00067{transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);}
.mc7_c00067{transform:matrix(0.194277,0.003303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194277,0.003303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194277,0.003303,-0.004249,0.249964,0,0);}
.mcd_c00067{transform:matrix(0.194302,0.003303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194302,0.003303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194302,0.003303,-0.004249,0.249964,0,0);}
.m70_c00067{transform:matrix(0.194508,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194508,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194508,0.002140,-0.002750,0.249985,0,0);}
.m3_c00067{transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);}
.meb_c00067{transform:matrix(0.195947,0.003331,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195947,0.003331,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195947,0.003331,-0.004249,0.249964,0,0);}
.mb9_c00067{transform:matrix(0.196202,0.003335,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196202,0.003335,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196202,0.003335,-0.004249,0.249964,0,0);}
.m89_c00067{transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);}
.m9f_c00067{transform:matrix(0.197901,0.003364,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197901,0.003364,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197901,0.003364,-0.004249,0.249964,0,0);}
.m4e_c00067{transform:matrix(0.198173,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198173,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198173,0.002180,-0.002750,0.249985,0,0);}
.mc_c00067{transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00067{transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);}
.m7_c00067{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{transform:matrix(0.199608,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199608,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199608,0.002196,-0.002750,0.249985,0,0);}
.m54_c00067{transform:matrix(0.199823,0.002198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199823,0.002198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199823,0.002198,-0.002750,0.249985,0,0);}
.mc6_c00067{transform:matrix(0.199831,0.003397,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199831,0.003397,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199831,0.003397,-0.004249,0.249964,0,0);}
.me1_c00067{transform:matrix(0.199881,0.003398,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199881,0.003398,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199881,0.003398,-0.004249,0.249964,0,0);}
.m5d_c00067{transform:matrix(0.200598,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200598,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200598,0.002207,-0.002750,0.249985,0,0);}
.m7d_c00067{transform:matrix(0.200658,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200658,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200658,0.002207,-0.002750,0.249985,0,0);}
.mc8_c00067{transform:matrix(0.200946,0.003416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200946,0.003416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200946,0.003416,-0.004249,0.249964,0,0);}
.ma8_c00067{transform:matrix(0.201066,0.003418,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201066,0.003418,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201066,0.003418,-0.004249,0.249964,0,0);}
.mee_c00067{transform:matrix(0.201351,0.003423,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201351,0.003423,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201351,0.003423,-0.004249,0.249964,0,0);}
.m42_c00067{transform:matrix(0.201883,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201883,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201883,0.002221,-0.002750,0.249985,0,0);}
.md_c00067{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m9c_c00067{transform:matrix(0.202983,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202983,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202983,0.002233,-0.002750,0.249985,0,0);}
.mc5_c00067{transform:matrix(0.203011,0.003451,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203011,0.003451,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203011,0.003451,-0.004249,0.249964,0,0);}
.m3b_c00067{transform:matrix(0.203113,0.002234,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203113,0.002234,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203113,0.002234,-0.002750,0.249985,0,0);}
.m99_c00067{transform:matrix(0.203308,0.002236,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203308,0.002236,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203308,0.002236,-0.002750,0.249985,0,0);}
.m98_c00067{transform:matrix(0.203588,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203588,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203588,0.002239,-0.002750,0.249985,0,0);}
.m1_c00067{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m97_c00067{transform:matrix(0.203778,0.002242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203778,0.002242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203778,0.002242,-0.002750,0.249985,0,0);}
.m77_c00067{transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);}
.m6d_c00067{transform:matrix(0.204318,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204318,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204318,0.002247,-0.002750,0.249985,0,0);}
.m8f_c00067{transform:matrix(0.204393,0.002248,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204393,0.002248,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204393,0.002248,-0.002750,0.249985,0,0);}
.maa_c00067{transform:matrix(0.204525,0.003477,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204525,0.003477,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204525,0.003477,-0.004249,0.249964,0,0);}
.m20_c00067{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.m34_c00067{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m96_c00067{transform:matrix(0.205173,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205173,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205173,0.002257,-0.002750,0.249985,0,0);}
.m18_c00067{transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.205488,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205488,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205488,0.002260,-0.002750,0.249985,0,0);}
.mcf_c00067{transform:matrix(0.205905,0.003500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205905,0.003500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205905,0.003500,-0.004249,0.249964,0,0);}
.m10_c00067{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m90_c00067{transform:matrix(0.206178,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206178,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206178,0.002268,-0.002750,0.249985,0,0);}
.mb3_c00067{transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);}
.mec_c00067{transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);}
.m1b_c00067{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.mb5_c00067{transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);}
.me7_c00067{transform:matrix(0.206780,0.003515,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206780,0.003515,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206780,0.003515,-0.004249,0.249964,0,0);}
.md8_c00067{transform:matrix(0.206790,0.003515,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206790,0.003515,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206790,0.003515,-0.004249,0.249964,0,0);}
.m15_c00067{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.207507,0.002283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207507,0.002283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207507,0.002283,-0.002750,0.249985,0,0);}
.m5e_c00067{transform:matrix(0.207682,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207682,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207682,0.002285,-0.002750,0.249985,0,0);}
.m95_c00067{transform:matrix(0.207807,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207807,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207807,0.002286,-0.002750,0.249985,0,0);}
.ma5_c00067{transform:matrix(0.208390,0.003543,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208390,0.003543,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208390,0.003543,-0.004249,0.249964,0,0);}
.m4b_c00067{transform:matrix(0.209502,0.002305,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209502,0.002305,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209502,0.002305,-0.002750,0.249985,0,0);}
.m1f_c00067{transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);}
.mb1_c00067{transform:matrix(0.209925,0.003569,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209925,0.003569,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209925,0.003569,-0.004249,0.249964,0,0);}
.m4f_c00067{transform:matrix(0.210612,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210612,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210612,0.002317,-0.002750,0.249985,0,0);}
.mc4_c00067{transform:matrix(0.210635,0.003581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210635,0.003581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210635,0.003581,-0.004249,0.249964,0,0);}
.m9b_c00067{transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);}
.m7b_c00067{transform:matrix(0.210852,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210852,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210852,0.002319,-0.002750,0.249985,0,0);}
.m93_c00067{transform:matrix(0.211962,0.002332,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211962,0.002332,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211962,0.002332,-0.002750,0.249985,0,0);}
.md1_c00067{transform:matrix(0.212014,0.003604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212014,0.003604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212014,0.003604,-0.004249,0.249964,0,0);}
.mbe_c00067{transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);}
.mea_c00067{transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);}
.ma7_c00067{transform:matrix(0.212899,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212899,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212899,0.003619,-0.004249,0.249964,0,0);}
.mb6_c00067{transform:matrix(0.213804,0.003635,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213804,0.003635,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213804,0.003635,-0.004249,0.249964,0,0);}
.m83_c00067{transform:matrix(0.213822,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213822,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213822,0.002352,-0.002750,0.249985,0,0);}
.ma_c00067{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.md9_c00067{transform:matrix(0.214289,0.003643,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214289,0.003643,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214289,0.003643,-0.004249,0.249964,0,0);}
.mbc_c00067{transform:matrix(0.214309,0.003643,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214309,0.003643,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214309,0.003643,-0.004249,0.249964,0,0);}
.m51_c00067{transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);}
.md7_c00067{transform:matrix(0.214524,0.003647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214524,0.003647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214524,0.003647,-0.004249,0.249964,0,0);}
.mc1_c00067{transform:matrix(0.214539,0.003647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214539,0.003647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214539,0.003647,-0.004249,0.249964,0,0);}
.mb4_c00067{transform:matrix(0.214704,0.003650,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214704,0.003650,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214704,0.003650,-0.004249,0.249964,0,0);}
.m78_c00067{transform:matrix(0.215167,0.002367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215167,0.002367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215167,0.002367,-0.002750,0.249985,0,0);}
.m52_c00067{transform:matrix(0.215192,0.002367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215192,0.002367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215192,0.002367,-0.002750,0.249985,0,0);}
.mdb_c00067{transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);}
.m64_c00067{transform:matrix(0.216102,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216102,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216102,0.002377,-0.002750,0.249985,0,0);}
.mce_c00067{transform:matrix(0.216454,0.003680,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216454,0.003680,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216454,0.003680,-0.004249,0.249964,0,0);}
.mfa_c00067{transform:matrix(0.216634,0.003683,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216634,0.003683,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216634,0.003683,-0.004249,0.249964,0,0);}
.m73_c00067{transform:matrix(0.216982,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216982,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216982,0.002387,-0.002750,0.249985,0,0);}
.m81_c00067{transform:matrix(0.217117,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217117,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217117,0.002388,-0.002750,0.249985,0,0);}
.m75_c00067{transform:matrix(0.217182,0.002389,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217182,0.002389,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217182,0.002389,-0.002750,0.249985,0,0);}
.m1c_c00067{transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m74_c00067{transform:matrix(0.217742,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217742,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217742,0.002395,-0.002750,0.249985,0,0);}
.mc2_c00067{transform:matrix(0.218288,0.003711,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218288,0.003711,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218288,0.003711,-0.004249,0.249964,0,0);}
.m79_c00067{transform:matrix(0.218982,0.002409,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218982,0.002409,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218982,0.002409,-0.002750,0.249985,0,0);}
.mb0_c00067{transform:matrix(0.219358,0.003729,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219358,0.003729,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219358,0.003729,-0.004249,0.249964,0,0);}
.m2c_c00067{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m94_c00067{transform:matrix(0.220257,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220257,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220257,0.002423,-0.002750,0.249985,0,0);}
.m56_c00067{transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);}
.md6_c00067{transform:matrix(0.221508,0.003766,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221508,0.003766,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221508,0.003766,-0.004249,0.249964,0,0);}
.m7a_c00067{transform:matrix(0.221687,0.002439,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221687,0.002439,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221687,0.002439,-0.002750,0.249985,0,0);}
.m9d_c00067{transform:matrix(0.221772,0.002439,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221772,0.002439,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221772,0.002439,-0.002750,0.249985,0,0);}
.mf3_c00067{transform:matrix(0.221823,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221823,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221823,0.003771,-0.004249,0.249964,0,0);}
.md3_c00067{transform:matrix(0.222483,0.003782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222483,0.003782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222483,0.003782,-0.004249,0.249964,0,0);}
.m65_c00067{transform:matrix(0.222777,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222777,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222777,0.002451,-0.002750,0.249985,0,0);}
.m50_c00067{transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);}
.m82_c00067{transform:matrix(0.223656,0.002460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223656,0.002460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223656,0.002460,-0.002750,0.249985,0,0);}
.m7c_c00067{transform:matrix(0.223906,0.002463,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223906,0.002463,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223906,0.002463,-0.002750,0.249985,0,0);}
.m2b_c00067{transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);}
.m9e_c00067{transform:matrix(0.224333,0.003814,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224333,0.003814,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224333,0.003814,-0.004249,0.249964,0,0);}
.me9_c00067{transform:matrix(0.224498,0.003816,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224498,0.003816,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224498,0.003816,-0.004249,0.249964,0,0);}
.ma4_c00067{transform:matrix(0.224823,0.003822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224823,0.003822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224823,0.003822,-0.004249,0.249964,0,0);}
.m30_c00067{transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m37_c00067{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);}
.mcc_c00067{transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);}
.m91_c00067{transform:matrix(0.227696,0.002505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227696,0.002505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227696,0.002505,-0.002750,0.249985,0,0);}
.m86_c00067{transform:matrix(0.228041,0.002508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228041,0.002508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228041,0.002508,-0.002750,0.249985,0,0);}
.m55_c00067{transform:matrix(0.229111,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229111,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229111,0.002520,-0.002750,0.249985,0,0);}
.m59_c00067{transform:matrix(0.229641,0.002526,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229641,0.002526,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229641,0.002526,-0.002750,0.249985,0,0);}
.m12_c00067{transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);}
.m88_c00067{transform:matrix(0.230611,0.002537,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230611,0.002537,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230611,0.002537,-0.002750,0.249985,0,0);}
.ma9_c00067{transform:matrix(0.231817,0.003941,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231817,0.003941,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231817,0.003941,-0.004249,0.249964,0,0);}
.m3e_c00067{transform:matrix(0.231906,0.002551,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231906,0.002551,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231906,0.002551,-0.002750,0.249985,0,0);}
.m61_c00067{transform:matrix(0.232131,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232131,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232131,0.002553,-0.002750,0.249985,0,0);}
.m62_c00067{transform:matrix(0.232201,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232201,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232201,0.002554,-0.002750,0.249985,0,0);}
.m22_c00067{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00067{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.m3f_c00067{transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);}
.m5a_c00067{transform:matrix(0.234731,0.002582,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234731,0.002582,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234731,0.002582,-0.002750,0.249985,0,0);}
.m2d_c00067{transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);}
.mac_c00067{transform:matrix(0.237731,0.004041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237731,0.004041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237731,0.004041,-0.004249,0.249964,0,0);}
.m67_c00067{transform:matrix(0.237746,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237746,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237746,0.002615,-0.002750,0.249985,0,0);}
.m87_c00067{transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);}
.m3a_c00067{transform:matrix(0.239401,0.002633,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239401,0.002633,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239401,0.002633,-0.002750,0.249985,0,0);}
.m1d_c00067{transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.m66_c00067{transform:matrix(0.245620,0.002702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245620,0.002702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245620,0.002702,-0.002750,0.249985,0,0);}
.m72_c00067{transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);}
.m3d_c00067{transform:matrix(0.250675,0.002757,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250675,0.002757,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250675,0.002757,-0.002750,0.249985,0,0);}
.m27_c00067{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00067{transform:matrix(0.257233,0.004373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257233,0.004373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257233,0.004373,-0.004249,0.249964,0,0);}
.m58_c00067{transform:matrix(0.258524,0.002844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258524,0.002844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258524,0.002844,-0.002750,0.249985,0,0);}
.m57_c00067{transform:matrix(0.265944,0.002925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265944,0.002925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265944,0.002925,-0.002750,0.249985,0,0);}
.m23_c00067{transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);}
.mfd_c00067{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);}
.m24_c00067{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);}
.m28_c00067{transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);}
.m26_c00067{transform:matrix(0.350570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350570,0.000000,0.000000,0.250000,0,0);}
.mfe_c00067{transform:matrix(0.548840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548840,0.000000,0.000000,0.250000,0,0);}
.m101_c00067{transform:matrix(1.286895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.286895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.286895,0.000000,0.000000,0.250000,0,0);}
.mfb_c00067{transform:matrix(2.522925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.522925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.522925,0.000000,0.000000,0.250000,0,0);}
.m100_c00067{transform:matrix(2.707480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707480,0.000000,0.000000,0.250000,0,0);}
.mfc_c00067{transform:matrix(4.053965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.053965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.053965,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:0.000000px;}
.fc0_c00067{color:transparent;}
.fs18_c00067{font-size:22.050000px;}
.fs5_c00067{font-size:42.000000px;}
.fs17_c00067{font-size:51.457434px;}
.fs8_c00067{font-size:54.603303px;}
.fsb_c00067{font-size:55.653367px;}
.fs6_c00067{font-size:56.700000px;}
.fsc_c00067{font-size:56.703430px;}
.fs4_c00067{font-size:57.750000px;}
.fse_c00067{font-size:57.753494px;}
.fs13_c00067{font-size:57.758344px;}
.fsf_c00067{font-size:58.803557px;}
.fs3_c00067{font-size:59.850000px;}
.fs11_c00067{font-size:59.858648px;}
.fs7_c00067{font-size:60.900000px;}
.fsa_c00067{font-size:60.903684px;}
.fs10_c00067{font-size:60.908799px;}
.fsd_c00067{font-size:63.003811px;}
.fs12_c00067{font-size:63.009103px;}
.fs2_c00067{font-size:64.050000px;}
.fs15_c00067{font-size:64.059255px;}
.fs1_c00067{font-size:65.100000px;}
.fs14_c00067{font-size:65.109406px;}
.fs9_c00067{font-size:67.204065px;}
.fs16_c00067{font-size:68.259861px;}
.fs0_c00067{font-size:113.400000px;}
.y0_c00067{bottom:0.000000px;}
.yc9_c00067{bottom:32.640678px;}
.ycc_c00067{bottom:34.020000px;}
.yc8_c00067{bottom:45.431897px;}
.yc7_c00067{bottom:45.719895px;}
.yc6_c00067{bottom:46.847775px;}
.yc5_c00067{bottom:47.167670px;}
.yc4_c00067{bottom:47.673453px;}
.yc3_c00067{bottom:48.874331px;}
.yc2_c00067{bottom:49.719363px;}
.yc1_c00067{bottom:49.977914px;}
.yc0_c00067{bottom:50.468351px;}
.ybf_c00067{bottom:63.470238px;}
.ybe_c00067{bottom:63.902901px;}
.ybd_c00067{bottom:64.875447px;}
.ybc_c00067{bottom:65.281943px;}
.ybb_c00067{bottom:65.485494px;}
.yba_c00067{bottom:66.098708px;}
.yb9_c00067{bottom:66.304176px;}
.yb8_c00067{bottom:67.374843px;}
.yb7_c00067{bottom:67.797612px;}
.yb6_c00067{bottom:68.019197px;}
.yb5_c00067{bottom:79.724771px;}
.yb4_c00067{bottom:80.549900px;}
.yb3_c00067{bottom:81.079940px;}
.yb2_c00067{bottom:81.888621px;}
.yb1_c00067{bottom:82.358498px;}
.yb0_c00067{bottom:82.540068px;}
.yaf_c00067{bottom:83.360760px;}
.yae_c00067{bottom:83.791383px;}
.yad_c00067{bottom:84.220272px;}
.yac_c00067{bottom:96.973469px;}
.yab_c00067{bottom:97.347818px;}
.yaa_c00067{bottom:97.925715px;}
.ya9_c00067{bottom:98.179271px;}
.ya8_c00067{bottom:99.148789px;}
.ya7_c00067{bottom:99.428603px;}
.ya6_c00067{bottom:100.021733px;}
.ya5_c00067{bottom:100.316523px;}
.ya4_c00067{bottom:100.963005px;}
.ycb_c00067{bottom:104.220000px;}
.ya3_c00067{bottom:113.650605px;}
.ya2_c00067{bottom:114.812169px;}
.ya1_c00067{bottom:115.229160px;}
.ya0_c00067{bottom:116.059194px;}
.y9f_c00067{bottom:116.637324px;}
.y9e_c00067{bottom:117.951158px;}
.y9d_c00067{bottom:119.327715px;}
.y9c_c00067{bottom:130.685655px;}
.y9b_c00067{bottom:132.006574px;}
.y9a_c00067{bottom:132.515052px;}
.y99_c00067{bottom:133.309641px;}
.y98_c00067{bottom:133.893428px;}
.y97_c00067{bottom:135.738561px;}
.y96_c00067{bottom:136.993466px;}
.y95_c00067{bottom:138.432302px;}
.y94_c00067{bottom:139.041888px;}
.y93_c00067{bottom:148.748075px;}
.y92_c00067{bottom:149.046374px;}
.y91_c00067{bottom:149.807344px;}
.y90_c00067{bottom:150.289371px;}
.y8f_c00067{bottom:151.121768px;}
.y8e_c00067{bottom:151.543997px;}
.y8d_c00067{bottom:152.315015px;}
.y8c_c00067{bottom:152.727809px;}
.y8b_c00067{bottom:153.080958px;}
.y8a_c00067{bottom:166.516239px;}
.y89_c00067{bottom:166.769051px;}
.y88_c00067{bottom:167.067777px;}
.y87_c00067{bottom:167.572431px;}
.y86_c00067{bottom:167.838133px;}
.y85_c00067{bottom:168.527268px;}
.y84_c00067{bottom:169.552293px;}
.y83_c00067{bottom:183.152793px;}
.y82_c00067{bottom:184.280564px;}
.y81_c00067{bottom:184.569252px;}
.y80_c00067{bottom:186.246549px;}
.y7f_c00067{bottom:186.993711px;}
.y7e_c00067{bottom:187.312800px;}
.y7d_c00067{bottom:187.645485px;}
.y7c_c00067{bottom:200.051067px;}
.y7b_c00067{bottom:200.482629px;}
.y7a_c00067{bottom:201.658128px;}
.y79_c00067{bottom:201.997814px;}
.y78_c00067{bottom:202.998536px;}
.y77_c00067{bottom:203.879841px;}
.y76_c00067{bottom:204.659963px;}
.y75_c00067{bottom:216.540762px;}
.y74_c00067{bottom:217.077562px;}
.y73_c00067{bottom:218.138312px;}
.y72_c00067{bottom:218.438192px;}
.y71_c00067{bottom:219.258986px;}
.y70_c00067{bottom:219.622488px;}
.y6f_c00067{bottom:219.970027px;}
.y6e_c00067{bottom:221.183012px;}
.y6d_c00067{bottom:221.403000px;}
.y6c_c00067{bottom:235.249007px;}
.y6b_c00067{bottom:235.465734px;}
.y6a_c00067{bottom:235.955817px;}
.y69_c00067{bottom:236.142944px;}
.y68_c00067{bottom:236.737010px;}
.y67_c00067{bottom:236.962746px;}
.y66_c00067{bottom:237.417156px;}
.y65_c00067{bottom:237.871500px;}
.yca_c00067{bottom:247.860000px;}
.y64_c00067{bottom:251.857090px;}
.y63_c00067{bottom:252.324909px;}
.y62_c00067{bottom:253.111672px;}
.y61_c00067{bottom:253.336351px;}
.y60_c00067{bottom:254.420614px;}
.y5f_c00067{bottom:255.411237px;}
.y5e_c00067{bottom:269.308606px;}
.y5d_c00067{bottom:269.764827px;}
.y5c_c00067{bottom:270.568435px;}
.y5b_c00067{bottom:271.228828px;}
.y5a_c00067{bottom:271.801158px;}
.y59_c00067{bottom:272.064160px;}
.y58_c00067{bottom:272.422617px;}
.y57_c00067{bottom:285.403014px;}
.y56_c00067{bottom:285.620966px;}
.y55_c00067{bottom:286.650048px;}
.y54_c00067{bottom:286.917274px;}
.y53_c00067{bottom:287.163600px;}
.y52_c00067{bottom:287.473156px;}
.y51_c00067{bottom:287.872816px;}
.y50_c00067{bottom:288.788601px;}
.y4f_c00067{bottom:289.161636px;}
.y4e_c00067{bottom:304.005957px;}
.y4b_c00067{bottom:304.006371px;}
.y4d_c00067{bottom:304.006390px;}
.y4c_c00067{bottom:304.006447px;}
.y4a_c00067{bottom:304.006545px;}
.y49_c00067{bottom:304.006918px;}
.y48_c00067{bottom:304.007352px;}
.y47_c00067{bottom:304.007905px;}
.y42_c00067{bottom:320.356482px;}
.y41_c00067{bottom:320.356765px;}
.y40_c00067{bottom:320.356809px;}
.y43_c00067{bottom:320.357238px;}
.y44_c00067{bottom:320.357374px;}
.y45_c00067{bottom:320.357394px;}
.y46_c00067{bottom:320.357740px;}
.y3f_c00067{bottom:336.765411px;}
.y3e_c00067{bottom:337.090242px;}
.y3d_c00067{bottom:337.563286px;}
.y3c_c00067{bottom:338.390211px;}
.y3b_c00067{bottom:338.766970px;}
.y3a_c00067{bottom:339.791199px;}
.y39_c00067{bottom:340.467090px;}
.y38_c00067{bottom:352.992231px;}
.y37_c00067{bottom:353.364868px;}
.y36_c00067{bottom:353.523717px;}
.y35_c00067{bottom:354.318423px;}
.y34_c00067{bottom:354.565060px;}
.y33_c00067{bottom:355.345314px;}
.y32_c00067{bottom:355.630657px;}
.y31_c00067{bottom:355.786635px;}
.y30_c00067{bottom:356.398569px;}
.y2f_c00067{bottom:370.065315px;}
.y2e_c00067{bottom:370.566261px;}
.y2d_c00067{bottom:372.143335px;}
.y2c_c00067{bottom:372.364318px;}
.y2b_c00067{bottom:373.371868px;}
.y2a_c00067{bottom:373.681129px;}
.y29_c00067{bottom:387.807324px;}
.y28_c00067{bottom:388.309287px;}
.y27_c00067{bottom:388.546969px;}
.y26_c00067{bottom:389.343309px;}
.y25_c00067{bottom:389.577757px;}
.y24_c00067{bottom:390.061868px;}
.y23_c00067{bottom:390.335091px;}
.y22_c00067{bottom:390.691408px;}
.y21_c00067{bottom:404.394900px;}
.y20_c00067{bottom:405.153012px;}
.y1f_c00067{bottom:405.606460px;}
.y1e_c00067{bottom:405.735678px;}
.y1d_c00067{bottom:406.205328px;}
.y1c_c00067{bottom:406.435929px;}
.y1b_c00067{bottom:407.031909px;}
.y1a_c00067{bottom:407.374602px;}
.y19_c00067{bottom:407.702116px;}
.y18_c00067{bottom:421.099266px;}
.y17_c00067{bottom:421.528653px;}
.y16_c00067{bottom:421.918612px;}
.y15_c00067{bottom:422.525171px;}
.y14_c00067{bottom:422.842381px;}
.y13_c00067{bottom:423.326008px;}
.y12_c00067{bottom:423.559665px;}
.y11_c00067{bottom:423.747906px;}
.y10_c00067{bottom:424.050732px;}
.yf_c00067{bottom:424.710971px;}
.ye_c00067{bottom:438.924036px;}
.yd_c00067{bottom:439.493979px;}
.yc_c00067{bottom:440.397519px;}
.yb_c00067{bottom:440.613801px;}
.ya_c00067{bottom:440.920189px;}
.y9_c00067{bottom:441.181500px;}
.y8_c00067{bottom:457.698000px;}
.y7_c00067{bottom:471.838500px;}
.y6_c00067{bottom:491.308500px;}
.y5_c00067{bottom:507.238500px;}
.y4_c00067{bottom:523.713000px;}
.y3_c00067{bottom:540.633000px;}
.y2_c00067{bottom:558.123000px;}
.y1_c00067{bottom:571.999500px;}
.h1a_c00067{height:22.050000px;}
.h7_c00067{height:42.000000px;}
.h19_c00067{height:51.457434px;}
.ha_c00067{height:54.603303px;}
.hd_c00067{height:55.653367px;}
.h8_c00067{height:56.700000px;}
.he_c00067{height:56.703430px;}
.h6_c00067{height:57.750000px;}
.h10_c00067{height:57.753494px;}
.h15_c00067{height:57.758344px;}
.h11_c00067{height:58.803557px;}
.h5_c00067{height:59.850000px;}
.h13_c00067{height:59.858648px;}
.h9_c00067{height:60.900000px;}
.hc_c00067{height:60.903684px;}
.h12_c00067{height:60.908799px;}
.hf_c00067{height:63.003811px;}
.h14_c00067{height:63.009103px;}
.h4_c00067{height:64.050000px;}
.h17_c00067{height:64.059255px;}
.h3_c00067{height:65.100000px;}
.h16_c00067{height:65.109406px;}
.hb_c00067{height:67.204065px;}
.h18_c00067{height:68.259861px;}
.h2_c00067{height:113.400000px;}
.h1_c00067{height:612.000000px;}
.h0_c00067{height:612.300000px;}
.w0_c00067{width:368.820000px;}
.w1_c00067{width:369.000000px;}
.x0_c00067{left:0.000000px;}
.x6a_c00067{left:44.888372px;}
.x4b_c00067{left:45.901475px;}
.x1b_c00067{left:47.250000px;}
.x2_c00067{left:48.600000px;}
.x5c_c00067{left:59.193000px;}
.x14_c00067{left:61.290000px;}
.x2a_c00067{left:64.260000px;}
.x63_c00067{left:65.778776px;}
.x50_c00067{left:68.311364px;}
.x26_c00067{left:69.930000px;}
.x4c_c00067{left:72.363176px;}
.x36_c00067{left:74.699039px;}
.x3a_c00067{left:79.513209px;}
.xa_c00067{left:85.590000px;}
.x5b_c00067{left:87.067500px;}
.x68_c00067{left:89.972475px;}
.x21_c00067{left:91.260000px;}
.x30_c00067{left:94.054796px;}
.x4d_c00067{left:96.664613px;}
.xb_c00067{left:98.280000px;}
.x37_c00067{left:103.261725px;}
.x3b_c00067{left:104.351709px;}
.x15_c00067{left:108.000000px;}
.x43_c00067{left:111.083826px;}
.x72_c00067{left:112.136150px;}
.x6d_c00067{left:113.416232px;}
.xc_c00067{left:115.830000px;}
.x3_c00067{left:118.260000px;}
.x2b_c00067{left:120.420000px;}
.x1c_c00067{left:122.040000px;}
.x66_c00067{left:123.772269px;}
.x31_c00067{left:129.150641px;}
.x5d_c00067{left:130.545000px;}
.x64_c00067{left:132.382898px;}
.x44_c00067{left:134.842062px;}
.x54_c00067{left:137.872821px;}
.x4_c00067{left:142.020000px;}
.x61_c00067{left:143.436293px;}
.x32_c00067{left:145.891596px;}
.x3f_c00067{left:148.121355px;}
.x1d_c00067{left:149.310000px;}
.x5e_c00067{left:150.988500px;}
.x38_c00067{left:152.941181px;}
.x73_c00067{left:154.528317px;}
.x6b_c00067{left:158.796141px;}
.x48_c00067{left:159.921257px;}
.x16_c00067{left:161.190000px;}
.x40_c00067{left:165.073976px;}
.x55_c00067{left:166.431881px;}
.x3c_c00067{left:169.675209px;}
.x22_c00067{left:171.450000px;}
.x74_c00067{left:174.518337px;}
.xd_c00067{left:176.850000px;}
.x6e_c00067{left:179.138391px;}
.x33_c00067{left:180.447458px;}
.x4e_c00067{left:183.879173px;}
.x1_c00067{left:185.220000px;}
.xe_c00067{left:189.270000px;}
.x78_c00067{left:190.710177px;}
.x5_c00067{left:195.750000px;}
.x67_c00067{left:197.238267px;}
.x45_c00067{left:199.909853px;}
.x27_c00067{left:201.150000px;}
.x34_c00067{left:203.147715px;}
.xf_c00067{left:205.740000px;}
.x6f_c00067{left:208.026912px;}
.x69_c00067{left:209.127975px;}
.x39_c00067{left:211.281537px;}
.x2c_c00067{left:212.760000px;}
.x1e_c00067{left:215.190000px;}
.x79_c00067{left:217.446170px;}
.x10_c00067{left:218.970000px;}
.x46_c00067{left:220.422122px;}
.x17_c00067{left:222.210000px;}
.x56_c00067{left:225.303450px;}
.x7a_c00067{left:228.010368px;}
.x11_c00067{left:233.820000px;}
.x23_c00067{left:235.980000px;}
.x65_c00067{left:237.225683px;}
.x5f_c00067{left:238.293000px;}
.x28_c00067{left:240.570000px;}
.x6_c00067{left:242.460000px;}
.x75_c00067{left:243.728856px;}
.x18_c00067{left:245.700000px;}
.x51_c00067{left:248.142611px;}
.x70_c00067{left:249.526796px;}
.x58_c00067{left:250.731811px;}
.x2f_c00067{left:252.073500px;}
.x12_c00067{left:254.070000px;}
.x1f_c00067{left:256.230000px;}
.x2d_c00067{left:258.930000px;}
.x7_c00067{left:260.820000px;}
.x76_c00067{left:261.821274px;}
.x3d_c00067{left:263.677209px;}
.x6c_c00067{left:269.950472px;}
.x49_c00067{left:271.709840px;}
.x35_c00067{left:274.237856px;}
.x4f_c00067{left:279.194706px;}
.x24_c00067{left:280.530000px;}
.x59_c00067{left:283.081909px;}
.x29_c00067{left:284.580000px;}
.x41_c00067{left:286.350803px;}
.x52_c00067{left:287.834412px;}
.x62_c00067{left:291.430793px;}
.x4a_c00067{left:293.329883px;}
.x20_c00067{left:294.840000px;}
.x19_c00067{left:297.810000px;}
.x25_c00067{left:300.780000px;}
.x8_c00067{left:302.670000px;}
.x13_c00067{left:305.100000px;}
.x3e_c00067{left:309.310209px;}
.x53_c00067{left:310.785684px;}
.x57_c00067{left:314.394513px;}
.x1a_c00067{left:316.710000px;}
.x5a_c00067{left:319.064617px;}
.x2e_c00067{left:323.190000px;}
.x42_c00067{left:324.935961px;}
.x9_c00067{left:326.430000px;}
.x71_c00067{left:328.437767px;}
.x77_c00067{left:329.839242px;}
.x47_c00067{left:330.892901px;}
.x60_c00067{left:332.266500px;}
.x7c_c00067{left:359.100000px;}
.x7b_c00067{left:362.610000px;}
.x7d_c00067{left:364.500000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
.fs18_c00067{font-size:19.600000pt;}
.fs5_c00067{font-size:37.333333pt;}
.fs17_c00067{font-size:45.739941pt;}
.fs8_c00067{font-size:48.536270pt;}
.fsb_c00067{font-size:49.469659pt;}
.fs6_c00067{font-size:50.400000pt;}
.fsc_c00067{font-size:50.403049pt;}
.fs4_c00067{font-size:51.333333pt;}
.fse_c00067{font-size:51.336439pt;}
.fs13_c00067{font-size:51.340750pt;}
.fsf_c00067{font-size:52.269829pt;}
.fs3_c00067{font-size:53.200000pt;}
.fs11_c00067{font-size:53.207687pt;}
.fs7_c00067{font-size:54.133333pt;}
.fsa_c00067{font-size:54.136608pt;}
.fs10_c00067{font-size:54.141155pt;}
.fsd_c00067{font-size:56.003388pt;}
.fs12_c00067{font-size:56.008091pt;}
.fs2_c00067{font-size:56.933333pt;}
.fs15_c00067{font-size:56.941560pt;}
.fs1_c00067{font-size:57.866667pt;}
.fs14_c00067{font-size:57.875028pt;}
.fs9_c00067{font-size:59.736947pt;}
.fs16_c00067{font-size:60.675432pt;}
.fs0_c00067{font-size:100.800000pt;}
.y0_c00067{bottom:0.000000pt;}
.yc9_c00067{bottom:29.013936pt;}
.ycc_c00067{bottom:30.240000pt;}
.yc8_c00067{bottom:40.383908pt;}
.yc7_c00067{bottom:40.639907pt;}
.yc6_c00067{bottom:41.642467pt;}
.yc5_c00067{bottom:41.926817pt;}
.yc4_c00067{bottom:42.376403pt;}
.yc3_c00067{bottom:43.443849pt;}
.yc2_c00067{bottom:44.194989pt;}
.yc1_c00067{bottom:44.424812pt;}
.yc0_c00067{bottom:44.860756pt;}
.ybf_c00067{bottom:56.417989pt;}
.ybe_c00067{bottom:56.802579pt;}
.ybd_c00067{bottom:57.667064pt;}
.ybc_c00067{bottom:58.028393pt;}
.ybb_c00067{bottom:58.209328pt;}
.yba_c00067{bottom:58.754407pt;}
.yb9_c00067{bottom:58.937045pt;}
.yb8_c00067{bottom:59.888749pt;}
.yb7_c00067{bottom:60.264544pt;}
.yb6_c00067{bottom:60.461508pt;}
.yb5_c00067{bottom:70.866463pt;}
.yb4_c00067{bottom:71.599911pt;}
.yb3_c00067{bottom:72.071057pt;}
.yb2_c00067{bottom:72.789885pt;}
.yb1_c00067{bottom:73.207553pt;}
.yb0_c00067{bottom:73.368949pt;}
.yaf_c00067{bottom:74.098453pt;}
.yae_c00067{bottom:74.481229pt;}
.yad_c00067{bottom:74.862464pt;}
.yac_c00067{bottom:86.198639pt;}
.yab_c00067{bottom:86.531393pt;}
.yaa_c00067{bottom:87.045080pt;}
.ya9_c00067{bottom:87.270463pt;}
.ya8_c00067{bottom:88.132257pt;}
.ya7_c00067{bottom:88.380980pt;}
.ya6_c00067{bottom:88.908207pt;}
.ya5_c00067{bottom:89.170243pt;}
.ya4_c00067{bottom:89.744893pt;}
.ycb_c00067{bottom:92.640000pt;}
.ya3_c00067{bottom:101.022760pt;}
.ya2_c00067{bottom:102.055261pt;}
.ya1_c00067{bottom:102.425920pt;}
.ya0_c00067{bottom:103.163728pt;}
.y9f_c00067{bottom:103.677621pt;}
.y9e_c00067{bottom:104.845473pt;}
.y9d_c00067{bottom:106.069080pt;}
.y9c_c00067{bottom:116.165027pt;}
.y9b_c00067{bottom:117.339177pt;}
.y9a_c00067{bottom:117.791157pt;}
.y99_c00067{bottom:118.497459pt;}
.y98_c00067{bottom:119.016380pt;}
.y97_c00067{bottom:120.656499pt;}
.y96_c00067{bottom:121.771969pt;}
.y95_c00067{bottom:123.050935pt;}
.y94_c00067{bottom:123.592789pt;}
.y93_c00067{bottom:132.220511pt;}
.y92_c00067{bottom:132.485665pt;}
.y91_c00067{bottom:133.162084pt;}
.y90_c00067{bottom:133.590552pt;}
.y8f_c00067{bottom:134.330460pt;}
.y8e_c00067{bottom:134.705775pt;}
.y8d_c00067{bottom:135.391124pt;}
.y8c_c00067{bottom:135.758052pt;}
.y8b_c00067{bottom:136.071963pt;}
.y8a_c00067{bottom:148.014435pt;}
.y89_c00067{bottom:148.239156pt;}
.y88_c00067{bottom:148.504691pt;}
.y87_c00067{bottom:148.953272pt;}
.y86_c00067{bottom:149.189452pt;}
.y85_c00067{bottom:149.802016pt;}
.y84_c00067{bottom:150.713149pt;}
.y83_c00067{bottom:162.802483pt;}
.y82_c00067{bottom:163.804945pt;}
.y81_c00067{bottom:164.061557pt;}
.y80_c00067{bottom:165.552488pt;}
.y7f_c00067{bottom:166.216632pt;}
.y7e_c00067{bottom:166.500267pt;}
.y7d_c00067{bottom:166.795987pt;}
.y7c_c00067{bottom:177.823171pt;}
.y7b_c00067{bottom:178.206781pt;}
.y7a_c00067{bottom:179.251669pt;}
.y79_c00067{bottom:179.553612pt;}
.y78_c00067{bottom:180.443143pt;}
.y77_c00067{bottom:181.226525pt;}
.y76_c00067{bottom:181.919967pt;}
.y75_c00067{bottom:192.480677pt;}
.y74_c00067{bottom:192.957833pt;}
.y73_c00067{bottom:193.900721pt;}
.y72_c00067{bottom:194.167281pt;}
.y71_c00067{bottom:194.896876pt;}
.y70_c00067{bottom:195.219989pt;}
.y6f_c00067{bottom:195.528913pt;}
.y6e_c00067{bottom:196.607121pt;}
.y6d_c00067{bottom:196.802667pt;}
.y6c_c00067{bottom:209.110228pt;}
.y6b_c00067{bottom:209.302875pt;}
.y6a_c00067{bottom:209.738504pt;}
.y69_c00067{bottom:209.904839pt;}
.y68_c00067{bottom:210.432897pt;}
.y67_c00067{bottom:210.633552pt;}
.y66_c00067{bottom:211.037472pt;}
.y65_c00067{bottom:211.441333pt;}
.yca_c00067{bottom:220.320000pt;}
.y64_c00067{bottom:223.872969pt;}
.y63_c00067{bottom:224.288808pt;}
.y62_c00067{bottom:224.988153pt;}
.y61_c00067{bottom:225.187868pt;}
.y60_c00067{bottom:226.151657pt;}
.y5f_c00067{bottom:227.032211pt;}
.y5e_c00067{bottom:239.385428pt;}
.y5d_c00067{bottom:239.790957pt;}
.y5c_c00067{bottom:240.505276pt;}
.y5b_c00067{bottom:241.092292pt;}
.y5a_c00067{bottom:241.601029pt;}
.y59_c00067{bottom:241.834809pt;}
.y58_c00067{bottom:242.153437pt;}
.y57_c00067{bottom:253.691568pt;}
.y56_c00067{bottom:253.885303pt;}
.y55_c00067{bottom:254.800043pt;}
.y54_c00067{bottom:255.037577pt;}
.y53_c00067{bottom:255.256533pt;}
.y52_c00067{bottom:255.531695pt;}
.y51_c00067{bottom:255.886948pt;}
.y50_c00067{bottom:256.700979pt;}
.y4f_c00067{bottom:257.032565pt;}
.y4e_c00067{bottom:270.227517pt;}
.y4b_c00067{bottom:270.227885pt;}
.y4d_c00067{bottom:270.227903pt;}
.y4c_c00067{bottom:270.227953pt;}
.y4a_c00067{bottom:270.228040pt;}
.y49_c00067{bottom:270.228372pt;}
.y48_c00067{bottom:270.228757pt;}
.y47_c00067{bottom:270.229249pt;}
.y42_c00067{bottom:284.761317pt;}
.y41_c00067{bottom:284.761569pt;}
.y40_c00067{bottom:284.761608pt;}
.y43_c00067{bottom:284.761989pt;}
.y44_c00067{bottom:284.762111pt;}
.y45_c00067{bottom:284.762128pt;}
.y46_c00067{bottom:284.762436pt;}
.y3f_c00067{bottom:299.347032pt;}
.y3e_c00067{bottom:299.635771pt;}
.y3d_c00067{bottom:300.056255pt;}
.y3c_c00067{bottom:300.791299pt;}
.y3b_c00067{bottom:301.126196pt;}
.y3a_c00067{bottom:302.036621pt;}
.y39_c00067{bottom:302.637413pt;}
.y38_c00067{bottom:313.770872pt;}
.y37_c00067{bottom:314.102105pt;}
.y36_c00067{bottom:314.243304pt;}
.y35_c00067{bottom:314.949709pt;}
.y34_c00067{bottom:315.168943pt;}
.y33_c00067{bottom:315.862501pt;}
.y32_c00067{bottom:316.116140pt;}
.y31_c00067{bottom:316.254787pt;}
.y30_c00067{bottom:316.798728pt;}
.y2f_c00067{bottom:328.946947pt;}
.y2e_c00067{bottom:329.392232pt;}
.y2d_c00067{bottom:330.794076pt;}
.y2c_c00067{bottom:330.990505pt;}
.y2b_c00067{bottom:331.886105pt;}
.y2a_c00067{bottom:332.161004pt;}
.y29_c00067{bottom:344.717621pt;}
.y28_c00067{bottom:345.163811pt;}
.y27_c00067{bottom:345.375084pt;}
.y26_c00067{bottom:346.082941pt;}
.y25_c00067{bottom:346.291340pt;}
.y24_c00067{bottom:346.721660pt;}
.y23_c00067{bottom:346.964525pt;}
.y22_c00067{bottom:347.281252pt;}
.y21_c00067{bottom:359.462133pt;}
.y20_c00067{bottom:360.136011pt;}
.y1f_c00067{bottom:360.539076pt;}
.y1e_c00067{bottom:360.653936pt;}
.y1d_c00067{bottom:361.071403pt;}
.y1c_c00067{bottom:361.276381pt;}
.y1b_c00067{bottom:361.806141pt;}
.y1a_c00067{bottom:362.110757pt;}
.y19_c00067{bottom:362.401881pt;}
.y18_c00067{bottom:374.310459pt;}
.y17_c00067{bottom:374.692136pt;}
.y16_c00067{bottom:375.038767pt;}
.y15_c00067{bottom:375.577929pt;}
.y14_c00067{bottom:375.859895pt;}
.y13_c00067{bottom:376.289785pt;}
.y12_c00067{bottom:376.497480pt;}
.y11_c00067{bottom:376.664805pt;}
.y10_c00067{bottom:376.933984pt;}
.yf_c00067{bottom:377.520863pt;}
.ye_c00067{bottom:390.154699pt;}
.yd_c00067{bottom:390.661315pt;}
.yc_c00067{bottom:391.464461pt;}
.yb_c00067{bottom:391.656712pt;}
.ya_c00067{bottom:391.929057pt;}
.y9_c00067{bottom:392.161333pt;}
.y8_c00067{bottom:406.842667pt;}
.y7_c00067{bottom:419.412000pt;}
.y6_c00067{bottom:436.718667pt;}
.y5_c00067{bottom:450.878667pt;}
.y4_c00067{bottom:465.522667pt;}
.y3_c00067{bottom:480.562667pt;}
.y2_c00067{bottom:496.109333pt;}
.y1_c00067{bottom:508.444000pt;}
.h1a_c00067{height:19.600000pt;}
.h7_c00067{height:37.333333pt;}
.h19_c00067{height:45.739941pt;}
.ha_c00067{height:48.536270pt;}
.hd_c00067{height:49.469659pt;}
.h8_c00067{height:50.400000pt;}
.he_c00067{height:50.403049pt;}
.h6_c00067{height:51.333333pt;}
.h10_c00067{height:51.336439pt;}
.h15_c00067{height:51.340750pt;}
.h11_c00067{height:52.269829pt;}
.h5_c00067{height:53.200000pt;}
.h13_c00067{height:53.207687pt;}
.h9_c00067{height:54.133333pt;}
.hc_c00067{height:54.136608pt;}
.h12_c00067{height:54.141155pt;}
.hf_c00067{height:56.003388pt;}
.h14_c00067{height:56.008091pt;}
.h4_c00067{height:56.933333pt;}
.h17_c00067{height:56.941560pt;}
.h3_c00067{height:57.866667pt;}
.h16_c00067{height:57.875028pt;}
.hb_c00067{height:59.736947pt;}
.h18_c00067{height:60.675432pt;}
.h2_c00067{height:100.800000pt;}
.h1_c00067{height:544.000000pt;}
.h0_c00067{height:544.266667pt;}
.w0_c00067{width:327.840000pt;}
.w1_c00067{width:328.000000pt;}
.x0_c00067{left:0.000000pt;}
.x6a_c00067{left:39.900775pt;}
.x4b_c00067{left:40.801311pt;}
.x1b_c00067{left:42.000000pt;}
.x2_c00067{left:43.200000pt;}
.x5c_c00067{left:52.616000pt;}
.x14_c00067{left:54.480000pt;}
.x2a_c00067{left:57.120000pt;}
.x63_c00067{left:58.470023pt;}
.x50_c00067{left:60.721212pt;}
.x26_c00067{left:62.160000pt;}
.x4c_c00067{left:64.322823pt;}
.x36_c00067{left:66.399145pt;}
.x3a_c00067{left:70.678408pt;}
.xa_c00067{left:76.080000pt;}
.x5b_c00067{left:77.393333pt;}
.x68_c00067{left:79.975533pt;}
.x21_c00067{left:81.120000pt;}
.x30_c00067{left:83.604263pt;}
.x4d_c00067{left:85.924100pt;}
.xb_c00067{left:87.360000pt;}
.x37_c00067{left:91.788200pt;}
.x3b_c00067{left:92.757075pt;}
.x15_c00067{left:96.000000pt;}
.x43_c00067{left:98.741179pt;}
.x72_c00067{left:99.676577pt;}
.x6d_c00067{left:100.814428pt;}
.xc_c00067{left:102.960000pt;}
.x3_c00067{left:105.120000pt;}
.x2b_c00067{left:107.040000pt;}
.x1c_c00067{left:108.480000pt;}
.x66_c00067{left:110.019795pt;}
.x31_c00067{left:114.800569pt;}
.x5d_c00067{left:116.040000pt;}
.x64_c00067{left:117.673687pt;}
.x44_c00067{left:119.859611pt;}
.x54_c00067{left:122.553619pt;}
.x4_c00067{left:126.240000pt;}
.x61_c00067{left:127.498927pt;}
.x32_c00067{left:129.681419pt;}
.x3f_c00067{left:131.663427pt;}
.x1d_c00067{left:132.720000pt;}
.x5e_c00067{left:134.212000pt;}
.x38_c00067{left:135.947716pt;}
.x73_c00067{left:137.358504pt;}
.x6b_c00067{left:141.152125pt;}
.x48_c00067{left:142.152228pt;}
.x16_c00067{left:143.280000pt;}
.x40_c00067{left:146.732423pt;}
.x55_c00067{left:147.939449pt;}
.x3c_c00067{left:150.822408pt;}
.x22_c00067{left:152.400000pt;}
.x74_c00067{left:155.127411pt;}
.xd_c00067{left:157.200000pt;}
.x6e_c00067{left:159.234125pt;}
.x33_c00067{left:160.397740pt;}
.x4e_c00067{left:163.448153pt;}
.x1_c00067{left:164.640000pt;}
.xe_c00067{left:168.240000pt;}
.x78_c00067{left:169.520157pt;}
.x5_c00067{left:174.000000pt;}
.x67_c00067{left:175.322904pt;}
.x45_c00067{left:177.697647pt;}
.x27_c00067{left:178.800000pt;}
.x34_c00067{left:180.575747pt;}
.xf_c00067{left:182.880000pt;}
.x6f_c00067{left:184.912811pt;}
.x69_c00067{left:185.891533pt;}
.x39_c00067{left:187.805811pt;}
.x2c_c00067{left:189.120000pt;}
.x1e_c00067{left:191.280000pt;}
.x79_c00067{left:193.285484pt;}
.x10_c00067{left:194.640000pt;}
.x46_c00067{left:195.930775pt;}
.x17_c00067{left:197.520000pt;}
.x56_c00067{left:200.269733pt;}
.x7a_c00067{left:202.675883pt;}
.x11_c00067{left:207.840000pt;}
.x23_c00067{left:209.760000pt;}
.x65_c00067{left:210.867273pt;}
.x5f_c00067{left:211.816000pt;}
.x28_c00067{left:213.840000pt;}
.x6_c00067{left:215.520000pt;}
.x75_c00067{left:216.647872pt;}
.x18_c00067{left:218.400000pt;}
.x51_c00067{left:220.571209pt;}
.x70_c00067{left:221.801596pt;}
.x58_c00067{left:222.872721pt;}
.x2f_c00067{left:224.065333pt;}
.x12_c00067{left:225.840000pt;}
.x1f_c00067{left:227.760000pt;}
.x2d_c00067{left:230.160000pt;}
.x7_c00067{left:231.840000pt;}
.x76_c00067{left:232.730021pt;}
.x3d_c00067{left:234.379741pt;}
.x6c_c00067{left:239.955975pt;}
.x49_c00067{left:241.519857pt;}
.x35_c00067{left:243.766983pt;}
.x4f_c00067{left:248.173072pt;}
.x24_c00067{left:249.360000pt;}
.x59_c00067{left:251.628364pt;}
.x29_c00067{left:252.960000pt;}
.x41_c00067{left:254.534047pt;}
.x52_c00067{left:255.852811pt;}
.x62_c00067{left:259.049593pt;}
.x4a_c00067{left:260.737673pt;}
.x20_c00067{left:262.080000pt;}
.x19_c00067{left:264.720000pt;}
.x25_c00067{left:267.360000pt;}
.x8_c00067{left:269.040000pt;}
.x13_c00067{left:271.200000pt;}
.x3e_c00067{left:274.942408pt;}
.x53_c00067{left:276.253941pt;}
.x57_c00067{left:279.461789pt;}
.x1a_c00067{left:281.520000pt;}
.x5a_c00067{left:283.612993pt;}
.x2e_c00067{left:287.280000pt;}
.x42_c00067{left:288.831965pt;}
.x9_c00067{left:290.160000pt;}
.x71_c00067{left:291.944681pt;}
.x77_c00067{left:293.190437pt;}
.x47_c00067{left:294.127023pt;}
.x60_c00067{left:295.348000pt;}
.x7c_c00067{left:319.200000pt;}
.x7b_c00067{left:322.320000pt;}
.x7d_c00067{left:324.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00068 {
    display:none;
  }
  .loading-indicator_c00068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00068 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00068 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00068" -> "#page-container .classname_c00068")
 */
.pf_c00068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00068 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00068 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00068 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00068 {overflow:visible;}
  }
}
.c_c00068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00068 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00068:after { /* webkit #35443 */
  content: '';
}
.t_c00068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00068 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00068 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00068 { /* info for Javascript */
  display:none;
}
.l_c00068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00068:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00068 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00068.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.010241,0.000277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.010241,0.000277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.010241,0.000277,-0.006748,0.249909,0,0);}
.ma1_c00068{transform:matrix(0.023366,0.000631,-0.006748,0.249909,0,0);-ms-transform:matrix(0.023366,0.000631,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.023366,0.000631,-0.006748,0.249909,0,0);}
.m2_c00068{transform:matrix(0.071404,0.001928,-0.006748,0.249909,0,0);-ms-transform:matrix(0.071404,0.001928,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.071404,0.001928,-0.006748,0.249909,0,0);}
.m70_c00068{transform:matrix(0.114958,0.003104,-0.006748,0.249909,0,0);-ms-transform:matrix(0.114958,0.003104,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.114958,0.003104,-0.006748,0.249909,0,0);}
.mb4_c00068{transform:matrix(0.117362,0.003169,-0.006748,0.249909,0,0);-ms-transform:matrix(0.117362,0.003169,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.117362,0.003169,-0.006748,0.249909,0,0);}
.me1_c00068{transform:matrix(0.127094,0.003432,-0.006748,0.249909,0,0);-ms-transform:matrix(0.127094,0.003432,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.127094,0.003432,-0.006748,0.249909,0,0);}
.m34_c00068{transform:matrix(0.133671,0.003609,-0.006748,0.249909,0,0);-ms-transform:matrix(0.133671,0.003609,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.133671,0.003609,-0.006748,0.249909,0,0);}
.m93_c00068{transform:matrix(0.136660,0.003690,-0.006748,0.249909,0,0);-ms-transform:matrix(0.136660,0.003690,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.136660,0.003690,-0.006748,0.249909,0,0);}
.m5d_c00068{transform:matrix(0.139874,0.003777,-0.006748,0.249909,0,0);-ms-transform:matrix(0.139874,0.003777,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.139874,0.003777,-0.006748,0.249909,0,0);}
.mb3_c00068{transform:matrix(0.139884,0.003777,-0.006748,0.249909,0,0);-ms-transform:matrix(0.139884,0.003777,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.139884,0.003777,-0.006748,0.249909,0,0);}
.m12_c00068{transform:matrix(0.146981,0.003968,-0.006748,0.249909,0,0);-ms-transform:matrix(0.146981,0.003968,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.146981,0.003968,-0.006748,0.249909,0,0);}
.m52_c00068{transform:matrix(0.151155,0.004081,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151155,0.004081,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151155,0.004081,-0.006748,0.249909,0,0);}
.me8_c00068{transform:matrix(0.152020,0.004105,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152020,0.004105,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152020,0.004105,-0.006748,0.249909,0,0);}
.m5b_c00068{transform:matrix(0.153084,0.004133,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153084,0.004133,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153084,0.004133,-0.006748,0.249909,0,0);}
.mb7_c00068{transform:matrix(0.154019,0.004159,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154019,0.004159,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154019,0.004159,-0.006748,0.249909,0,0);}
.m57_c00068{transform:matrix(0.154229,0.004164,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154229,0.004164,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154229,0.004164,-0.006748,0.249909,0,0);}
.m60_c00068{transform:matrix(0.154634,0.004175,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154634,0.004175,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154634,0.004175,-0.006748,0.249909,0,0);}
.mab_c00068{transform:matrix(0.154719,0.004177,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154719,0.004177,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154719,0.004177,-0.006748,0.249909,0,0);}
.m1b_c00068{transform:matrix(0.155068,0.004187,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155068,0.004187,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155068,0.004187,-0.006748,0.249909,0,0);}
.m58_c00068{transform:matrix(0.156993,0.004239,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156993,0.004239,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156993,0.004239,-0.006748,0.249909,0,0);}
.m15_c00068{transform:matrix(0.161606,0.004363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161606,0.004363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161606,0.004363,-0.006748,0.249909,0,0);}
.m98_c00068{transform:matrix(0.162871,0.004398,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162871,0.004398,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162871,0.004398,-0.006748,0.249909,0,0);}
.mba_c00068{transform:matrix(0.163086,0.004403,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163086,0.004403,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163086,0.004403,-0.006748,0.249909,0,0);}
.m63_c00068{transform:matrix(0.164355,0.004438,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164355,0.004438,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164355,0.004438,-0.006748,0.249909,0,0);}
.m4e_c00068{transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165235,0.004461,-0.006748,0.249909,0,0);}
.m3a_c00068{transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);}
.m7a_c00068{transform:matrix(0.165570,0.004470,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165570,0.004470,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165570,0.004470,-0.006748,0.249909,0,0);}
.m9_c00068{transform:matrix(0.165870,0.004478,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165870,0.004478,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165870,0.004478,-0.006748,0.249909,0,0);}
.m55_c00068{transform:matrix(0.166014,0.004482,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166014,0.004482,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166014,0.004482,-0.006748,0.249909,0,0);}
.ma2_c00068{transform:matrix(0.166124,0.004485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166124,0.004485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166124,0.004485,-0.006748,0.249909,0,0);}
.m14_c00068{transform:matrix(0.166994,0.004509,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166994,0.004509,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166994,0.004509,-0.006748,0.249909,0,0);}
.ma9_c00068{transform:matrix(0.167494,0.004522,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167494,0.004522,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167494,0.004522,-0.006748,0.249909,0,0);}
.m1e_c00068{transform:matrix(0.168029,0.004537,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168029,0.004537,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168029,0.004537,-0.006748,0.249909,0,0);}
.mb1_c00068{transform:matrix(0.168124,0.004539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168124,0.004539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168124,0.004539,-0.006748,0.249909,0,0);}
.mbd_c00068{transform:matrix(0.168404,0.004547,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168404,0.004547,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168404,0.004547,-0.006748,0.249909,0,0);}
.mfc_c00068{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.med_c00068{transform:matrix(0.168938,0.004561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168938,0.004561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168938,0.004561,-0.006748,0.249909,0,0);}
.m76_c00068{transform:matrix(0.169103,0.004566,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169103,0.004566,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169103,0.004566,-0.006748,0.249909,0,0);}
.mbb_c00068{transform:matrix(0.169258,0.004570,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169258,0.004570,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169258,0.004570,-0.006748,0.249909,0,0);}
.m6a_c00068{transform:matrix(0.169958,0.004589,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169958,0.004589,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169958,0.004589,-0.006748,0.249909,0,0);}
.m2b_c00068{transform:matrix(0.170138,0.004594,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170138,0.004594,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170138,0.004594,-0.006748,0.249909,0,0);}
.m71_c00068{transform:matrix(0.170213,0.004596,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170213,0.004596,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170213,0.004596,-0.006748,0.249909,0,0);}
.m3c_c00068{transform:matrix(0.170303,0.004598,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170303,0.004598,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170303,0.004598,-0.006748,0.249909,0,0);}
.m40_c00068{transform:matrix(0.171143,0.004621,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171143,0.004621,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171143,0.004621,-0.006748,0.249909,0,0);}
.m49_c00068{transform:matrix(0.171947,0.004643,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171947,0.004643,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171947,0.004643,-0.006748,0.249909,0,0);}
.m1d_c00068{transform:matrix(0.172087,0.004646,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172087,0.004646,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172087,0.004646,-0.006748,0.249909,0,0);}
.m99_c00068{transform:matrix(0.172552,0.004659,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172552,0.004659,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172552,0.004659,-0.006748,0.249909,0,0);}
.m6d_c00068{transform:matrix(0.172812,0.004666,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172812,0.004666,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172812,0.004666,-0.006748,0.249909,0,0);}
.m6f_c00068{transform:matrix(0.173042,0.004672,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173042,0.004672,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173042,0.004672,-0.006748,0.249909,0,0);}
.m47_c00068{transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);}
.m88_c00068{transform:matrix(0.173707,0.004690,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173707,0.004690,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173707,0.004690,-0.006748,0.249909,0,0);}
.m10_c00068{transform:matrix(0.174217,0.004704,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174217,0.004704,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174217,0.004704,-0.006748,0.249909,0,0);}
.md0_c00068{transform:matrix(0.174396,0.004709,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174396,0.004709,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174396,0.004709,-0.006748,0.249909,0,0);}
.mea_c00068{transform:matrix(0.174481,0.004711,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174481,0.004711,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174481,0.004711,-0.006748,0.249909,0,0);}
.m96_c00068{transform:matrix(0.174771,0.004719,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174771,0.004719,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174771,0.004719,-0.006748,0.249909,0,0);}
.mf3_c00068{transform:matrix(0.174821,0.004720,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174821,0.004720,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174821,0.004720,-0.006748,0.249909,0,0);}
.m7c_c00068{transform:matrix(0.175146,0.004729,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175146,0.004729,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175146,0.004729,-0.006748,0.249909,0,0);}
.m3b_c00068{transform:matrix(0.175211,0.004731,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175211,0.004731,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175211,0.004731,-0.006748,0.249909,0,0);}
.m8_c00068{transform:matrix(0.175876,0.004749,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175876,0.004749,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175876,0.004749,-0.006748,0.249909,0,0);}
.m87_c00068{transform:matrix(0.175916,0.004750,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175916,0.004750,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175916,0.004750,-0.006748,0.249909,0,0);}
.m92_c00068{transform:matrix(0.176231,0.004758,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176231,0.004758,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176231,0.004758,-0.006748,0.249909,0,0);}
.mb5_c00068{transform:matrix(0.176811,0.004774,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176811,0.004774,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176811,0.004774,-0.006748,0.249909,0,0);}
.mae_c00068{transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);}
.m73_c00068{transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);}
.m35_c00068{transform:matrix(0.178900,0.004830,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178900,0.004830,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178900,0.004830,-0.006748,0.249909,0,0);}
.m8b_c00068{transform:matrix(0.179285,0.004841,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179285,0.004841,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179285,0.004841,-0.006748,0.249909,0,0);}
.me5_c00068{transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);}
.m8f_c00068{transform:matrix(0.180384,0.004870,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180384,0.004870,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180384,0.004870,-0.006748,0.249909,0,0);}
.mf6_c00068{transform:matrix(0.180449,0.004872,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180449,0.004872,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180449,0.004872,-0.006748,0.249909,0,0);}
.m97_c00068{transform:matrix(0.180459,0.004872,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180459,0.004872,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180459,0.004872,-0.006748,0.249909,0,0);}
.m84_c00068{transform:matrix(0.180839,0.004883,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180839,0.004883,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180839,0.004883,-0.006748,0.249909,0,0);}
.m42_c00068{transform:matrix(0.182004,0.004914,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182004,0.004914,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182004,0.004914,-0.006748,0.249909,0,0);}
.m2f_c00068{transform:matrix(0.182668,0.004932,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182668,0.004932,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182668,0.004932,-0.006748,0.249909,0,0);}
.m5a_c00068{transform:matrix(0.183033,0.004942,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183033,0.004942,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183033,0.004942,-0.006748,0.249909,0,0);}
.m19_c00068{transform:matrix(0.184868,0.004991,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184868,0.004991,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184868,0.004991,-0.006748,0.249909,0,0);}
.m61_c00068{transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);}
.m20_c00068{transform:matrix(0.185083,0.004997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185083,0.004997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185083,0.004997,-0.006748,0.249909,0,0);}
.m54_c00068{transform:matrix(0.185452,0.005007,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185452,0.005007,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185452,0.005007,-0.006748,0.249909,0,0);}
.m4f_c00068{transform:matrix(0.185477,0.005008,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185477,0.005008,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185477,0.005008,-0.006748,0.249909,0,0);}
.mb6_c00068{transform:matrix(0.185702,0.005014,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185702,0.005014,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185702,0.005014,-0.006748,0.249909,0,0);}
.m51_c00068{transform:matrix(0.186442,0.005034,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186442,0.005034,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186442,0.005034,-0.006748,0.249909,0,0);}
.mac_c00068{transform:matrix(0.186672,0.005040,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186672,0.005040,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186672,0.005040,-0.006748,0.249909,0,0);}
.m1f_c00068{transform:matrix(0.186937,0.005047,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186937,0.005047,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186937,0.005047,-0.006748,0.249909,0,0);}
.mc9_c00068{transform:matrix(0.186987,0.005049,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186987,0.005049,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186987,0.005049,-0.006748,0.249909,0,0);}
.m75_c00068{transform:matrix(0.187007,0.005049,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187007,0.005049,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187007,0.005049,-0.006748,0.249909,0,0);}
.ma4_c00068{transform:matrix(0.187352,0.005058,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187352,0.005058,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187352,0.005058,-0.006748,0.249909,0,0);}
.mec_c00068{transform:matrix(0.187787,0.005070,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187787,0.005070,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187787,0.005070,-0.006748,0.249909,0,0);}
.m9d_c00068{transform:matrix(0.188236,0.005082,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188236,0.005082,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188236,0.005082,-0.006748,0.249909,0,0);}
.m13_c00068{transform:matrix(0.188266,0.005083,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188266,0.005083,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188266,0.005083,-0.006748,0.249909,0,0);}
.m66_c00068{transform:matrix(0.188276,0.005083,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188276,0.005083,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188276,0.005083,-0.006748,0.249909,0,0);}
.m53_c00068{transform:matrix(0.188396,0.005087,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188396,0.005087,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188396,0.005087,-0.006748,0.249909,0,0);}
.m38_c00068{transform:matrix(0.188581,0.005092,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188581,0.005092,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188581,0.005092,-0.006748,0.249909,0,0);}
.m56_c00068{transform:matrix(0.188881,0.005100,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188881,0.005100,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188881,0.005100,-0.006748,0.249909,0,0);}
.mc8_c00068{transform:matrix(0.189316,0.005112,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189316,0.005112,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189316,0.005112,-0.006748,0.249909,0,0);}
.meb_c00068{transform:matrix(0.189536,0.005117,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189536,0.005117,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189536,0.005117,-0.006748,0.249909,0,0);}
.ma5_c00068{transform:matrix(0.189931,0.005128,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189931,0.005128,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189931,0.005128,-0.006748,0.249909,0,0);}
.mb8_c00068{transform:matrix(0.190161,0.005134,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190161,0.005134,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190161,0.005134,-0.006748,0.249909,0,0);}
.mf8_c00068{transform:matrix(0.190311,0.005138,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190311,0.005138,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190311,0.005138,-0.006748,0.249909,0,0);}
.mc7_c00068{transform:matrix(0.190785,0.005151,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190785,0.005151,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190785,0.005151,-0.006748,0.249909,0,0);}
.ma7_c00068{transform:matrix(0.191030,0.005158,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191030,0.005158,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191030,0.005158,-0.006748,0.249909,0,0);}
.m29_c00068{transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);}
.m59_c00068{transform:matrix(0.191475,0.005170,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191475,0.005170,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191475,0.005170,-0.006748,0.249909,0,0);}
.md8_c00068{transform:matrix(0.191515,0.005171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191515,0.005171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191515,0.005171,-0.006748,0.249909,0,0);}
.m68_c00068{transform:matrix(0.191865,0.005180,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191865,0.005180,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191865,0.005180,-0.006748,0.249909,0,0);}
.mf7_c00068{transform:matrix(0.191885,0.005181,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191885,0.005181,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191885,0.005181,-0.006748,0.249909,0,0);}
.m2d_c00068{transform:matrix(0.191890,0.005181,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191890,0.005181,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191890,0.005181,-0.006748,0.249909,0,0);}
.mfa_c00068{transform:matrix(0.192100,0.005187,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192100,0.005187,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192100,0.005187,-0.006748,0.249909,0,0);}
.mc0_c00068{transform:matrix(0.192305,0.005192,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192305,0.005192,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192305,0.005192,-0.006748,0.249909,0,0);}
.md7_c00068{transform:matrix(0.192340,0.005193,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192340,0.005193,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192340,0.005193,-0.006748,0.249909,0,0);}
.m7f_c00068{transform:matrix(0.192435,0.005196,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192435,0.005196,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192435,0.005196,-0.006748,0.249909,0,0);}
.mb_c00068{transform:matrix(0.192530,0.005198,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192530,0.005198,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192530,0.005198,-0.006748,0.249909,0,0);}
.m1a_c00068{transform:matrix(0.192845,0.005207,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192845,0.005207,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192845,0.005207,-0.006748,0.249909,0,0);}
.m85_c00068{transform:matrix(0.192990,0.005211,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192990,0.005211,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192990,0.005211,-0.006748,0.249909,0,0);}
.m9a_c00068{transform:matrix(0.193060,0.005213,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193060,0.005213,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193060,0.005213,-0.006748,0.249909,0,0);}
.mbe_c00068{transform:matrix(0.193454,0.005223,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193454,0.005223,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193454,0.005223,-0.006748,0.249909,0,0);}
.m3e_c00068{transform:matrix(0.193989,0.005238,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193989,0.005238,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193989,0.005238,-0.006748,0.249909,0,0);}
.m65_c00068{transform:matrix(0.194129,0.005241,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194129,0.005241,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194129,0.005241,-0.006748,0.249909,0,0);}
.m39_c00068{transform:matrix(0.194234,0.005244,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194234,0.005244,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194234,0.005244,-0.006748,0.249909,0,0);}
.m8c_c00068{transform:matrix(0.194704,0.005257,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194704,0.005257,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194704,0.005257,-0.006748,0.249909,0,0);}
.ma3_c00068{transform:matrix(0.195229,0.005271,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195229,0.005271,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195229,0.005271,-0.006748,0.249909,0,0);}
.m69_c00068{transform:matrix(0.195504,0.005279,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195504,0.005279,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195504,0.005279,-0.006748,0.249909,0,0);}
.m2e_c00068{transform:matrix(0.195824,0.005287,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195824,0.005287,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195824,0.005287,-0.006748,0.249909,0,0);}
.me3_c00068{transform:matrix(0.195919,0.005290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195919,0.005290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195919,0.005290,-0.006748,0.249909,0,0);}
.mc_c00068{transform:matrix(0.195934,0.005290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195934,0.005290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195934,0.005290,-0.006748,0.249909,0,0);}
.m86_c00068{transform:matrix(0.195939,0.005290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195939,0.005290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195939,0.005290,-0.006748,0.249909,0,0);}
.m16_c00068{transform:matrix(0.196308,0.005300,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196308,0.005300,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196308,0.005300,-0.006748,0.249909,0,0);}
.mca_c00068{transform:matrix(0.196353,0.005302,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196353,0.005302,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196353,0.005302,-0.006748,0.249909,0,0);}
.me4_c00068{transform:matrix(0.196688,0.005311,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196688,0.005311,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196688,0.005311,-0.006748,0.249909,0,0);}
.mf0_c00068{transform:matrix(0.196808,0.005314,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196808,0.005314,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196808,0.005314,-0.006748,0.249909,0,0);}
.m5c_c00068{transform:matrix(0.197043,0.005320,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197043,0.005320,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197043,0.005320,-0.006748,0.249909,0,0);}
.m25_c00068{transform:matrix(0.197168,0.005324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197168,0.005324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197168,0.005324,-0.006748,0.249909,0,0);}
.m8d_c00068{transform:matrix(0.197453,0.005331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197453,0.005331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197453,0.005331,-0.006748,0.249909,0,0);}
.mc1_c00068{transform:matrix(0.197748,0.005339,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197748,0.005339,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197748,0.005339,-0.006748,0.249909,0,0);}
.m5f_c00068{transform:matrix(0.197868,0.005342,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197868,0.005342,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197868,0.005342,-0.006748,0.249909,0,0);}
.md_c00068{transform:matrix(0.198803,0.005368,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198803,0.005368,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198803,0.005368,-0.006748,0.249909,0,0);}
.m6_c00068{transform:matrix(0.198883,0.005370,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198883,0.005370,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198883,0.005370,-0.006748,0.249909,0,0);}
.m50_c00068{transform:matrix(0.198928,0.005371,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198928,0.005371,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198928,0.005371,-0.006748,0.249909,0,0);}
.m4b_c00068{transform:matrix(0.199582,0.005389,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199582,0.005389,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199582,0.005389,-0.006748,0.249909,0,0);}
.m95_c00068{transform:matrix(0.199772,0.005394,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199772,0.005394,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199772,0.005394,-0.006748,0.249909,0,0);}
.m62_c00068{transform:matrix(0.199802,0.005395,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199802,0.005395,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199802,0.005395,-0.006748,0.249909,0,0);}
.mbf_c00068{transform:matrix(0.200367,0.005410,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200367,0.005410,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200367,0.005410,-0.006748,0.249909,0,0);}
.mad_c00068{transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);}
.m3d_c00068{transform:matrix(0.200642,0.005417,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200642,0.005417,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200642,0.005417,-0.006748,0.249909,0,0);}
.m90_c00068{transform:matrix(0.201267,0.005434,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201267,0.005434,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201267,0.005434,-0.006748,0.249909,0,0);}
.m89_c00068{transform:matrix(0.201352,0.005436,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201352,0.005436,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201352,0.005436,-0.006748,0.249909,0,0);}
.m7e_c00068{transform:matrix(0.201821,0.005449,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201821,0.005449,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201821,0.005449,-0.006748,0.249909,0,0);}
.m44_c00068{transform:matrix(0.202041,0.005455,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202041,0.005455,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202041,0.005455,-0.006748,0.249909,0,0);}
.m6e_c00068{transform:matrix(0.202071,0.005456,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202071,0.005456,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202071,0.005456,-0.006748,0.249909,0,0);}
.m28_c00068{transform:matrix(0.202676,0.005472,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202676,0.005472,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202676,0.005472,-0.006748,0.249909,0,0);}
.m46_c00068{transform:matrix(0.202806,0.005476,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202806,0.005476,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202806,0.005476,-0.006748,0.249909,0,0);}
.maf_c00068{transform:matrix(0.202901,0.005478,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202901,0.005478,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202901,0.005478,-0.006748,0.249909,0,0);}
.m30_c00068{transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);}
.m9c_c00068{transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);}
.m94_c00068{transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203376,0.005491,-0.006748,0.249909,0,0);}
.ma_c00068{transform:matrix(0.203681,0.005499,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203681,0.005499,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203681,0.005499,-0.006748,0.249909,0,0);}
.mef_c00068{transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);}
.m7_c00068{transform:matrix(0.204460,0.005520,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204460,0.005520,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204460,0.005520,-0.006748,0.249909,0,0);}
.m5e_c00068{transform:matrix(0.204790,0.005529,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204790,0.005529,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204790,0.005529,-0.006748,0.249909,0,0);}
.mf2_c00068{transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204915,0.005533,-0.006748,0.249909,0,0);}
.m74_c00068{transform:matrix(0.205740,0.005555,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205740,0.005555,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205740,0.005555,-0.006748,0.249909,0,0);}
.m48_c00068{transform:matrix(0.206120,0.005565,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206120,0.005565,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206120,0.005565,-0.006748,0.249909,0,0);}
.mcc_c00068{transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);}
.md4_c00068{transform:matrix(0.206385,0.005572,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206385,0.005572,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206385,0.005572,-0.006748,0.249909,0,0);}
.mdb_c00068{transform:matrix(0.206535,0.005576,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206535,0.005576,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206535,0.005576,-0.006748,0.249909,0,0);}
.m31_c00068{transform:matrix(0.206980,0.005588,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206980,0.005588,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206980,0.005588,-0.006748,0.249909,0,0);}
.mb2_c00068{transform:matrix(0.206985,0.005589,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206985,0.005589,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206985,0.005589,-0.006748,0.249909,0,0);}
.m17_c00068{transform:matrix(0.207015,0.005589,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207015,0.005589,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207015,0.005589,-0.006748,0.249909,0,0);}
.m4d_c00068{transform:matrix(0.207879,0.005613,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207879,0.005613,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207879,0.005613,-0.006748,0.249909,0,0);}
.me9_c00068{transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);}
.md5_c00068{transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208079,0.005618,-0.006748,0.249909,0,0);}
.m2a_c00068{transform:matrix(0.208754,0.005636,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208754,0.005636,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208754,0.005636,-0.006748,0.249909,0,0);}
.m72_c00068{transform:matrix(0.209079,0.005645,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209079,0.005645,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209079,0.005645,-0.006748,0.249909,0,0);}
.mb9_c00068{transform:matrix(0.209784,0.005664,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209784,0.005664,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209784,0.005664,-0.006748,0.249909,0,0);}
.maa_c00068{transform:matrix(0.209819,0.005665,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209819,0.005665,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209819,0.005665,-0.006748,0.249909,0,0);}
.mc4_c00068{transform:matrix(0.209889,0.005667,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209889,0.005667,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209889,0.005667,-0.006748,0.249909,0,0);}
.md1_c00068{transform:matrix(0.210728,0.005690,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210728,0.005690,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210728,0.005690,-0.006748,0.249909,0,0);}
.m2c_c00068{transform:matrix(0.210903,0.005694,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210903,0.005694,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210903,0.005694,-0.006748,0.249909,0,0);}
.m8a_c00068{transform:matrix(0.210973,0.005696,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210973,0.005696,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210973,0.005696,-0.006748,0.249909,0,0);}
.m18_c00068{transform:matrix(0.211328,0.005706,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211328,0.005706,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211328,0.005706,-0.006748,0.249909,0,0);}
.mc3_c00068{transform:matrix(0.211798,0.005719,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211798,0.005719,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211798,0.005719,-0.006748,0.249909,0,0);}
.me7_c00068{transform:matrix(0.211888,0.005721,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211888,0.005721,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211888,0.005721,-0.006748,0.249909,0,0);}
.mc5_c00068{transform:matrix(0.212008,0.005724,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212008,0.005724,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212008,0.005724,-0.006748,0.249909,0,0);}
.m23_c00068{transform:matrix(0.212363,0.005734,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212363,0.005734,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212363,0.005734,-0.006748,0.249909,0,0);}
.md6_c00068{transform:matrix(0.212498,0.005737,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212498,0.005737,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212498,0.005737,-0.006748,0.249909,0,0);}
.me2_c00068{transform:matrix(0.213457,0.005763,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213457,0.005763,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213457,0.005763,-0.006748,0.249909,0,0);}
.mee_c00068{transform:matrix(0.213677,0.005769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213677,0.005769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213677,0.005769,-0.006748,0.249909,0,0);}
.me_c00068{transform:matrix(0.214027,0.005779,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214027,0.005779,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214027,0.005779,-0.006748,0.249909,0,0);}
.m32_c00068{transform:matrix(0.214262,0.005785,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214262,0.005785,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214262,0.005785,-0.006748,0.249909,0,0);}
.me6_c00068{transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);}
.m80_c00068{transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);}
.m3f_c00068{transform:matrix(0.215646,0.005822,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215646,0.005822,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215646,0.005822,-0.006748,0.249909,0,0);}
.m36_c00068{transform:matrix(0.216231,0.005838,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216231,0.005838,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216231,0.005838,-0.006748,0.249909,0,0);}
.m7b_c00068{transform:matrix(0.216836,0.005855,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216836,0.005855,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216836,0.005855,-0.006748,0.249909,0,0);}
.mf_c00068{transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);}
.m6c_c00068{transform:matrix(0.217331,0.005868,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217331,0.005868,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217331,0.005868,-0.006748,0.249909,0,0);}
.m91_c00068{transform:matrix(0.217876,0.005883,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217876,0.005883,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217876,0.005883,-0.006748,0.249909,0,0);}
.me0_c00068{transform:matrix(0.217946,0.005885,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217946,0.005885,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217946,0.005885,-0.006748,0.249909,0,0);}
.m9b_c00068{transform:matrix(0.218016,0.005886,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218016,0.005886,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218016,0.005886,-0.006748,0.249909,0,0);}
.md2_c00068{transform:matrix(0.218195,0.005891,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218195,0.005891,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218195,0.005891,-0.006748,0.249909,0,0);}
.m1c_c00068{transform:matrix(0.219250,0.005920,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219250,0.005920,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219250,0.005920,-0.006748,0.249909,0,0);}
.m3_c00068{transform:matrix(0.219470,0.005926,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219470,0.005926,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219470,0.005926,-0.006748,0.249909,0,0);}
.mcb_c00068{transform:matrix(0.220700,0.005959,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220700,0.005959,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220700,0.005959,-0.006748,0.249909,0,0);}
.m45_c00068{transform:matrix(0.221419,0.005978,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221419,0.005978,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221419,0.005978,-0.006748,0.249909,0,0);}
.m81_c00068{transform:matrix(0.221844,0.005990,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221844,0.005990,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221844,0.005990,-0.006748,0.249909,0,0);}
.m21_c00068{transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);}
.mbc_c00068{transform:matrix(0.222544,0.006009,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222544,0.006009,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222544,0.006009,-0.006748,0.249909,0,0);}
.m67_c00068{transform:matrix(0.223968,0.006047,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223968,0.006047,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223968,0.006047,-0.006748,0.249909,0,0);}
.m41_c00068{transform:matrix(0.224578,0.006064,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224578,0.006064,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224578,0.006064,-0.006748,0.249909,0,0);}
.mf4_c00068{transform:matrix(0.225208,0.006081,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225208,0.006081,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225208,0.006081,-0.006748,0.249909,0,0);}
.md9_c00068{transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);}
.m33_c00068{transform:matrix(0.226288,0.006110,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226288,0.006110,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226288,0.006110,-0.006748,0.249909,0,0);}
.mdf_c00068{transform:matrix(0.226737,0.006122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226737,0.006122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226737,0.006122,-0.006748,0.249909,0,0);}
.ma6_c00068{transform:matrix(0.227502,0.006143,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227502,0.006143,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227502,0.006143,-0.006748,0.249909,0,0);}
.m4_c00068{transform:matrix(0.227582,0.006145,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227582,0.006145,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227582,0.006145,-0.006748,0.249909,0,0);}
.m22_c00068{transform:matrix(0.227837,0.006152,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227837,0.006152,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227837,0.006152,-0.006748,0.249909,0,0);}
.m4a_c00068{transform:matrix(0.228522,0.006170,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228522,0.006170,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228522,0.006170,-0.006748,0.249909,0,0);}
.mb0_c00068{transform:matrix(0.228527,0.006170,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228527,0.006170,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228527,0.006170,-0.006748,0.249909,0,0);}
.m24_c00068{transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);}
.md3_c00068{transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);}
.m64_c00068{transform:matrix(0.231481,0.006250,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231481,0.006250,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231481,0.006250,-0.006748,0.249909,0,0);}
.mf5_c00068{transform:matrix(0.232030,0.006265,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232030,0.006265,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232030,0.006265,-0.006748,0.249909,0,0);}
.m7d_c00068{transform:matrix(0.232565,0.006279,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232565,0.006279,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232565,0.006279,-0.006748,0.249909,0,0);}
.mcf_c00068{transform:matrix(0.234180,0.006323,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234180,0.006323,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234180,0.006323,-0.006748,0.249909,0,0);}
.ma8_c00068{transform:matrix(0.234565,0.006333,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234565,0.006333,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234565,0.006333,-0.006748,0.249909,0,0);}
.m37_c00068{transform:matrix(0.234999,0.006345,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234999,0.006345,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234999,0.006345,-0.006748,0.249909,0,0);}
.mc2_c00068{transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);}
.m6b_c00068{transform:matrix(0.237848,0.006422,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237848,0.006422,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237848,0.006422,-0.006748,0.249909,0,0);}
.m83_c00068{transform:matrix(0.238338,0.006435,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238338,0.006435,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238338,0.006435,-0.006748,0.249909,0,0);}
.mf1_c00068{transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);}
.mda_c00068{transform:matrix(0.239393,0.006464,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239393,0.006464,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239393,0.006464,-0.006748,0.249909,0,0);}
.mc6_c00068{transform:matrix(0.241807,0.006529,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241807,0.006529,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241807,0.006529,-0.006748,0.249909,0,0);}
.m27_c00068{transform:matrix(0.242916,0.006559,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242916,0.006559,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242916,0.006559,-0.006748,0.249909,0,0);}
.ma0_c00068{transform:matrix(0.243126,0.006564,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243126,0.006564,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243126,0.006564,-0.006748,0.249909,0,0);}
.mde_c00068{transform:matrix(0.243431,0.006573,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243431,0.006573,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243431,0.006573,-0.006748,0.249909,0,0);}
.mdc_c00068{transform:matrix(0.244241,0.006595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244241,0.006595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244241,0.006595,-0.006748,0.249909,0,0);}
.mf9_c00068{transform:matrix(0.245266,0.006622,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245266,0.006622,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245266,0.006622,-0.006748,0.249909,0,0);}
.m8e_c00068{transform:matrix(0.248409,0.006707,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248409,0.006707,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248409,0.006707,-0.006748,0.249909,0,0);}
.mdd_c00068{transform:matrix(0.251118,0.006780,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251118,0.006780,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251118,0.006780,-0.006748,0.249909,0,0);}
.m9e_c00068{transform:matrix(0.251628,0.006794,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251628,0.006794,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251628,0.006794,-0.006748,0.249909,0,0);}
.m82_c00068{transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);}
.mfb_c00068{transform:matrix(0.253163,0.006835,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253163,0.006835,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253163,0.006835,-0.006748,0.249909,0,0);}
.mce_c00068{transform:matrix(0.254147,0.006862,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254147,0.006862,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254147,0.006862,-0.006748,0.249909,0,0);}
.m77_c00068{transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);}
.m78_c00068{transform:matrix(0.264274,0.007135,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264274,0.007135,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264274,0.007135,-0.006748,0.249909,0,0);}
.m79_c00068{transform:matrix(0.264409,0.007139,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264409,0.007139,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264409,0.007139,-0.006748,0.249909,0,0);}
.m26_c00068{transform:matrix(0.267577,0.007225,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267577,0.007225,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267577,0.007225,-0.006748,0.249909,0,0);}
.m4c_c00068{transform:matrix(0.274925,0.007423,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274925,0.007423,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274925,0.007423,-0.006748,0.249909,0,0);}
.m11_c00068{transform:matrix(0.286306,0.007730,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286306,0.007730,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286306,0.007730,-0.006748,0.249909,0,0);}
.m43_c00068{transform:matrix(0.294288,0.007946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.294288,0.007946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.294288,0.007946,-0.006748,0.249909,0,0);}
.m9f_c00068{transform:matrix(0.344215,0.009294,-0.006748,0.249909,0,0);-ms-transform:matrix(0.344215,0.009294,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.344215,0.009294,-0.006748,0.249909,0,0);}
.m1_c00068{transform:matrix(0.348333,0.009405,-0.006748,0.249909,0,0);-ms-transform:matrix(0.348333,0.009405,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.348333,0.009405,-0.006748,0.249909,0,0);}
.mcd_c00068{transform:matrix(0.360524,0.009734,-0.006748,0.249909,0,0);-ms-transform:matrix(0.360524,0.009734,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.360524,0.009734,-0.006748,0.249909,0,0);}
.m5_c00068{transform:matrix(0.438755,0.011846,-0.006748,0.249909,0,0);-ms-transform:matrix(0.438755,0.011846,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.438755,0.011846,-0.006748,0.249909,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:0.000000px;}
.fc0_c00068{color:transparent;}
.fsd_c00068{font-size:24.150000px;}
.fsc_c00068{font-size:52.519133px;}
.fs9_c00068{font-size:54.619898px;}
.fs5_c00068{font-size:57.771046px;}
.fsb_c00068{font-size:58.821429px;}
.fs1_c00068{font-size:59.871811px;}
.fsa_c00068{font-size:60.922194px;}
.fs6_c00068{font-size:64.073342px;}
.fs2_c00068{font-size:65.123725px;}
.fs4_c00068{font-size:66.174107px;}
.fs8_c00068{font-size:67.224490px;}
.fs7_c00068{font-size:68.274873px;}
.fs3_c00068{font-size:69.325255px;}
.fs0_c00068{font-size:74.577169px;}
.y0_c00068{bottom:0.000000px;}
.y102_c00068{bottom:5.400000px;}
.y101_c00068{bottom:10.028454px;}
.y100_c00068{bottom:13.810548px;}
.yff_c00068{bottom:14.936026px;}
.yfe_c00068{bottom:22.276755px;}
.yfd_c00068{bottom:23.743689px;}
.yfc_c00068{bottom:24.384313px;}
.yfb_c00068{bottom:24.853308px;}
.yfa_c00068{bottom:28.413864px;}
.yf9_c00068{bottom:29.076928px;}
.yf8_c00068{bottom:29.795812px;}
.yf7_c00068{bottom:31.124575px;}
.yf6_c00068{bottom:31.692124px;}
.yf5_c00068{bottom:42.029571px;}
.yf4_c00068{bottom:42.990409px;}
.yf3_c00068{bottom:44.429581px;}
.yf2_c00068{bottom:45.081537px;}
.yf1_c00068{bottom:47.565604px;}
.yf0_c00068{bottom:48.117988px;}
.yef_c00068{bottom:49.263063px;}
.yee_c00068{bottom:49.780731px;}
.yed_c00068{bottom:58.107295px;}
.yec_c00068{bottom:60.813291px;}
.yeb_c00068{bottom:61.834101px;}
.yea_c00068{bottom:64.647739px;}
.ye9_c00068{bottom:65.544741px;}
.ye8_c00068{bottom:67.513153px;}
.ye7_c00068{bottom:68.417529px;}
.ye6_c00068{bottom:73.778344px;}
.ye5_c00068{bottom:74.941321px;}
.ye4_c00068{bottom:75.805888px;}
.ye3_c00068{bottom:76.846009px;}
.ye2_c00068{bottom:78.726921px;}
.ye1_c00068{bottom:80.472906px;}
.ye0_c00068{bottom:80.986080px;}
.ydf_c00068{bottom:82.458889px;}
.yde_c00068{bottom:91.020262px;}
.ydd_c00068{bottom:92.694999px;}
.ydc_c00068{bottom:93.737901px;}
.ydb_c00068{bottom:94.630237px;}
.yda_c00068{bottom:95.937004px;}
.yd9_c00068{bottom:97.855311px;}
.yd8_c00068{bottom:99.284248px;}
.yd7_c00068{bottom:99.950433px;}
.yd6_c00068{bottom:100.553709px;}
.yd5_c00068{bottom:110.265910px;}
.yd4_c00068{bottom:110.808547px;}
.yd3_c00068{bottom:111.697198px;}
.yd2_c00068{bottom:113.381211px;}
.yd1_c00068{bottom:114.084540px;}
.yd0_c00068{bottom:116.168157px;}
.ycf_c00068{bottom:118.382572px;}
.yce_c00068{bottom:122.863242px;}
.ycd_c00068{bottom:124.207438px;}
.ycc_c00068{bottom:126.067941px;}
.ycb_c00068{bottom:126.783706px;}
.yca_c00068{bottom:128.539741px;}
.yc9_c00068{bottom:129.191059px;}
.yc8_c00068{bottom:131.695548px;}
.yc7_c00068{bottom:132.157210px;}
.yc6_c00068{bottom:142.975567px;}
.yc5_c00068{bottom:144.373678px;}
.yc4_c00068{bottom:144.901692px;}
.yc3_c00068{bottom:145.785238px;}
.yc2_c00068{bottom:146.888173px;}
.yc1_c00068{bottom:149.217103px;}
.yc0_c00068{bottom:149.779062px;}
.ybf_c00068{bottom:150.793690px;}
.ybe_c00068{bottom:159.842131px;}
.ybd_c00068{bottom:162.729957px;}
.ybc_c00068{bottom:163.785544px;}
.ybb_c00068{bottom:164.612755px;}
.yba_c00068{bottom:168.000886px;}
.yb9_c00068{bottom:169.138353px;}
.yb8_c00068{bottom:169.969899px;}
.yb7_c00068{bottom:175.824477px;}
.yb6_c00068{bottom:176.610778px;}
.yb5_c00068{bottom:177.511237px;}
.yb4_c00068{bottom:178.259946px;}
.yb3_c00068{bottom:179.581507px;}
.yb2_c00068{bottom:180.037368px;}
.yb1_c00068{bottom:181.485888px;}
.yb0_c00068{bottom:182.459224px;}
.yaf_c00068{bottom:184.074120px;}
.yae_c00068{bottom:185.363679px;}
.yad_c00068{bottom:191.846187px;}
.yac_c00068{bottom:193.184272px;}
.yab_c00068{bottom:193.613964px;}
.yaa_c00068{bottom:195.214491px;}
.ya9_c00068{bottom:197.162359px;}
.ya8_c00068{bottom:198.571453px;}
.ya7_c00068{bottom:199.740871px;}
.ya6_c00068{bottom:200.223909px;}
.ya5_c00068{bottom:208.840953px;}
.ya4_c00068{bottom:209.504730px;}
.ya3_c00068{bottom:210.184022px;}
.ya2_c00068{bottom:214.939747px;}
.ya1_c00068{bottom:215.591981px;}
.ya0_c00068{bottom:217.436598px;}
.y9f_c00068{bottom:218.318016px;}
.y9e_c00068{bottom:226.959522px;}
.y9d_c00068{bottom:227.559572px;}
.y9c_c00068{bottom:228.251576px;}
.y9b_c00068{bottom:230.051523px;}
.y9a_c00068{bottom:231.351233px;}
.y99_c00068{bottom:231.790707px;}
.y98_c00068{bottom:232.964760px;}
.y97_c00068{bottom:233.540505px;}
.y96_c00068{bottom:235.335146px;}
.y95_c00068{bottom:243.453606px;}
.y94_c00068{bottom:244.947234px;}
.y93_c00068{bottom:245.725947px;}
.y92_c00068{bottom:248.558100px;}
.y91_c00068{bottom:250.422978px;}
.y90_c00068{bottom:252.151629px;}
.y8f_c00068{bottom:252.893522px;}
.y8e_c00068{bottom:261.528543px;}
.y8d_c00068{bottom:263.388524px;}
.y8c_c00068{bottom:264.269702px;}
.y8b_c00068{bottom:264.967904px;}
.y8a_c00068{bottom:266.530188px;}
.y89_c00068{bottom:267.410597px;}
.y88_c00068{bottom:268.279379px;}
.y87_c00068{bottom:270.179504px;}
.y86_c00068{bottom:277.523346px;}
.y85_c00068{bottom:277.882178px;}
.y84_c00068{bottom:280.083936px;}
.y83_c00068{bottom:280.892663px;}
.y82_c00068{bottom:282.287193px;}
.y81_c00068{bottom:284.177801px;}
.y80_c00068{bottom:284.840046px;}
.y7f_c00068{bottom:286.611354px;}
.y7e_c00068{bottom:287.464601px;}
.y7d_c00068{bottom:297.286989px;}
.y7c_c00068{bottom:299.629365px;}
.y7b_c00068{bottom:301.179945px;}
.y7a_c00068{bottom:301.668155px;}
.y79_c00068{bottom:303.329679px;}
.y78_c00068{bottom:304.205888px;}
.y77_c00068{bottom:313.360116px;}
.y76_c00068{bottom:314.661531px;}
.y75_c00068{bottom:315.682911px;}
.y74_c00068{bottom:316.508478px;}
.y73_c00068{bottom:316.940597px;}
.y72_c00068{bottom:318.369437px;}
.y71_c00068{bottom:319.077014px;}
.y70_c00068{bottom:319.600682px;}
.y6f_c00068{bottom:329.900015px;}
.y6e_c00068{bottom:330.369639px;}
.y6d_c00068{bottom:330.936477px;}
.y6c_c00068{bottom:332.221134px;}
.y6b_c00068{bottom:332.953449px;}
.y6a_c00068{bottom:334.259768px;}
.y69_c00068{bottom:334.679552px;}
.y68_c00068{bottom:335.262990px;}
.y67_c00068{bottom:345.673113px;}
.y66_c00068{bottom:346.069454px;}
.y65_c00068{bottom:346.639449px;}
.y64_c00068{bottom:348.671199px;}
.y63_c00068{bottom:349.117462px;}
.y62_c00068{bottom:349.590449px;}
.y61_c00068{bottom:351.116459px;}
.y60_c00068{bottom:351.468141px;}
.y5f_c00068{bottom:362.520929px;}
.y5e_c00068{bottom:363.022386px;}
.y5d_c00068{bottom:363.460038px;}
.y5c_c00068{bottom:365.123722px;}
.y5b_c00068{bottom:365.458743px;}
.y5a_c00068{bottom:365.975017px;}
.y59_c00068{bottom:366.543156px;}
.y58_c00068{bottom:367.403277px;}
.y57_c00068{bottom:379.168797px;}
.y56_c00068{bottom:380.805420px;}
.y55_c00068{bottom:381.315495px;}
.y54_c00068{bottom:381.867368px;}
.y53_c00068{bottom:382.797078px;}
.y52_c00068{bottom:383.949505px;}
.y51_c00068{bottom:384.667677px;}
.y50_c00068{bottom:385.340649px;}
.y4f_c00068{bottom:386.581371px;}
.y4e_c00068{bottom:395.660554px;}
.y4d_c00068{bottom:396.302133px;}
.y4c_c00068{bottom:396.780472px;}
.y4b_c00068{bottom:397.569744px;}
.y4a_c00068{bottom:398.412982px;}
.y49_c00068{bottom:398.826504px;}
.y48_c00068{bottom:399.459177px;}
.y47_c00068{bottom:399.915170px;}
.y46_c00068{bottom:400.623753px;}
.y45_c00068{bottom:411.472914px;}
.y44_c00068{bottom:415.281048px;}
.y43_c00068{bottom:416.473044px;}
.y42_c00068{bottom:417.312650px;}
.y41_c00068{bottom:418.388613px;}
.y40_c00068{bottom:418.724034px;}
.y3f_c00068{bottom:429.919634px;}
.y3e_c00068{bottom:431.263728px;}
.y3d_c00068{bottom:431.709708px;}
.y3c_c00068{bottom:432.401169px;}
.y3b_c00068{bottom:432.771314px;}
.y3a_c00068{bottom:434.081844px;}
.y39_c00068{bottom:434.654755px;}
.y38_c00068{bottom:446.016468px;}
.y37_c00068{bottom:447.645494px;}
.y36_c00068{bottom:448.196372px;}
.y35_c00068{bottom:448.407693px;}
.y34_c00068{bottom:449.743971px;}
.y33_c00068{bottom:450.182972px;}
.y32_c00068{bottom:451.215649px;}
.y31_c00068{bottom:451.943351px;}
.y30_c00068{bottom:462.800322px;}
.y2f_c00068{bottom:463.801296px;}
.y2e_c00068{bottom:464.205718px;}
.y2d_c00068{bottom:465.351486px;}
.y2c_c00068{bottom:465.719669px;}
.y2b_c00068{bottom:466.573418px;}
.y2a_c00068{bottom:467.304803px;}
.y29_c00068{bottom:468.721901px;}
.y28_c00068{bottom:468.957840px;}
.y27_c00068{bottom:480.268971px;}
.y26_c00068{bottom:481.020146px;}
.y25_c00068{bottom:481.311117px;}
.y24_c00068{bottom:482.493991px;}
.y23_c00068{bottom:483.590266px;}
.y22_c00068{bottom:484.691440px;}
.y21_c00068{bottom:485.162412px;}
.y20_c00068{bottom:497.986357px;}
.y1f_c00068{bottom:498.525210px;}
.y1e_c00068{bottom:499.369565px;}
.y1d_c00068{bottom:500.867441px;}
.y1c_c00068{bottom:501.224529px;}
.y1b_c00068{bottom:502.989564px;}
.y1a_c00068{bottom:515.266583px;}
.y19_c00068{bottom:516.301398px;}
.y18_c00068{bottom:517.259185px;}
.y17_c00068{bottom:518.361877px;}
.y16_c00068{bottom:518.769738px;}
.y15_c00068{bottom:519.429093px;}
.y14_c00068{bottom:520.733548px;}
.y13_c00068{bottom:521.628929px;}
.y12_c00068{bottom:530.095849px;}
.y11_c00068{bottom:530.617339px;}
.y10_c00068{bottom:530.996457px;}
.yf_c00068{bottom:531.388576px;}
.ye_c00068{bottom:532.162529px;}
.yd_c00068{bottom:534.578068px;}
.yc_c00068{bottom:535.249910px;}
.yb_c00068{bottom:536.966997px;}
.ya_c00068{bottom:538.378725px;}
.y9_c00068{bottom:547.792725px;}
.y8_c00068{bottom:549.091999px;}
.y7_c00068{bottom:549.673010px;}
.y6_c00068{bottom:551.018684px;}
.y5_c00068{bottom:552.718347px;}
.y4_c00068{bottom:553.229879px;}
.y3_c00068{bottom:561.284559px;}
.y2_c00068{bottom:564.611310px;}
.y1_c00068{bottom:567.000000px;}
.hf_c00068{height:24.150000px;}
.he_c00068{height:52.519133px;}
.hb_c00068{height:54.619898px;}
.h7_c00068{height:57.771046px;}
.hd_c00068{height:58.821429px;}
.h3_c00068{height:59.871811px;}
.hc_c00068{height:60.922194px;}
.h8_c00068{height:64.073342px;}
.h4_c00068{height:65.123725px;}
.h6_c00068{height:66.174107px;}
.ha_c00068{height:67.224490px;}
.h9_c00068{height:68.274873px;}
.h5_c00068{height:69.325255px;}
.h2_c00068{height:74.577169px;}
.h1_c00068{height:612.000000px;}
.h0_c00068{height:612.300000px;}
.w0_c00068{width:368.820000px;}
.w1_c00068{width:369.000000px;}
.x0_c00068{left:0.000000px;}
.x55_c00068{left:20.522313px;}
.x4c_c00068{left:21.653568px;}
.xa_c00068{left:22.829555px;}
.x6d_c00068{left:25.329584px;}
.x5e_c00068{left:31.217949px;}
.x24_c00068{left:33.451428px;}
.x1e_c00068{left:34.821497px;}
.x86_c00068{left:36.372263px;}
.x84_c00068{left:37.622946px;}
.x48_c00068{left:38.928384px;}
.x5c_c00068{left:43.069797px;}
.x51_c00068{left:45.103448px;}
.x4_c00068{left:46.426934px;}
.x62_c00068{left:47.989758px;}
.x31_c00068{left:49.437974px;}
.x71_c00068{left:50.834408px;}
.x2b_c00068{left:55.708317px;}
.x12_c00068{left:57.348128px;}
.x1f_c00068{left:58.380452px;}
.x44_c00068{left:65.171219px;}
.x40_c00068{left:66.420291px;}
.x69_c00068{left:67.918145px;}
.x4d_c00068{left:69.428804px;}
.x5_c00068{left:70.765362px;}
.x87_c00068{left:72.663834px;}
.x36_c00068{left:74.307152px;}
.x1_c00068{left:75.315000px;}
.x52_c00068{left:77.258781px;}
.x39_c00068{left:81.583062px;}
.x5f_c00068{left:84.009486px;}
.x78_c00068{left:87.469262px;}
.x41_c00068{left:90.455643px;}
.x80_c00068{left:92.214882px;}
.x45_c00068{left:93.552065px;}
.x56_c00068{left:95.418876px;}
.x25_c00068{left:97.834095px;}
.x85_c00068{left:99.673902px;}
.x60_c00068{left:100.941287px;}
.x19_c00068{left:102.633257px;}
.x3a_c00068{left:104.364855px;}
.x37_c00068{left:105.403652px;}
.x13_c00068{left:107.495964px;}
.x75_c00068{left:109.729340px;}
.x32_c00068{left:111.819558px;}
.x20_c00068{left:113.452860px;}
.x81_c00068{left:114.651525px;}
.x42_c00068{left:116.109455px;}
.x1a_c00068{left:118.860944px;}
.x2c_c00068{left:122.612849px;}
.x63_c00068{left:126.010728px;}
.xb_c00068{left:127.147631px;}
.x33_c00068{left:129.475934px;}
.x26_c00068{left:131.093591px;}
.x14_c00068{left:132.861653px;}
.x49_c00068{left:134.091774px;}
.x3b_c00068{left:135.969809px;}
.x72_c00068{left:138.445733px;}
.x6a_c00068{left:139.816689px;}
.x53_c00068{left:142.187529px;}
.x66_c00068{left:145.189059px;}
.x15_c00068{left:148.523558px;}
.xc_c00068{left:149.528808px;}
.x79_c00068{left:150.630056px;}
.x6_c00068{left:151.728984px;}
.x4a_c00068{left:155.345717px;}
.x3c_c00068{left:156.678237px;}
.x7b_c00068{left:160.333998px;}
.x34_c00068{left:162.424280px;}
.x2_c00068{left:163.785000px;}
.x4e_c00068{left:166.505018px;}
.x21_c00068{left:168.288228px;}
.x27_c00068{left:169.885815px;}
.x73_c00068{left:171.845306px;}
.x59_c00068{left:173.667221px;}
.x6e_c00068{left:176.156100px;}
.x6b_c00068{left:180.066929px;}
.x2d_c00068{left:183.335030px;}
.x82_c00068{left:185.002361px;}
.x1b_c00068{left:186.958137px;}
.x16_c00068{left:190.920692px;}
.x2e_c00068{left:192.940826px;}
.x5a_c00068{left:194.189333px;}
.x7f_c00068{left:195.529556px;}
.x3d_c00068{left:198.861716px;}
.x7c_c00068{left:199.948599px;}
.x6f_c00068{left:201.908880px;}
.x76_c00068{left:204.329490px;}
.x67_c00068{left:206.046338px;}
.x57_c00068{left:208.205036px;}
.x43_c00068{left:210.218444px;}
.x74_c00068{left:214.618380px;}
.x7_c00068{left:215.801352px;}
.x2f_c00068{left:217.958187px;}
.x46_c00068{left:219.334338px;}
.x7a_c00068{left:222.982851px;}
.x1c_c00068{left:225.346821px;}
.x17_c00068{left:227.784204px;}
.xd_c00068{left:230.042287px;}
.x58_c00068{left:231.319554px;}
.x28_c00068{left:238.745130px;}
.x22_c00068{left:242.000160px;}
.x8_c00068{left:243.435807px;}
.x54_c00068{left:245.778002px;}
.x35_c00068{left:247.681590px;}
.x1d_c00068{left:249.807602px;}
.x4b_c00068{left:252.111390px;}
.x4f_c00068{left:254.704314px;}
.xe_c00068{left:255.816181px;}
.x29_c00068{left:257.115101px;}
.x7d_c00068{left:258.614622px;}
.x61_c00068{left:259.936776px;}
.x3e_c00068{left:262.266704px;}
.x47_c00068{left:266.291708px;}
.x18_c00068{left:267.611798px;}
.xf_c00068{left:268.893628px;}
.x70_c00068{left:272.338772px;}
.x5b_c00068{left:274.809605px;}
.x50_c00068{left:277.101459px;}
.x83_c00068{left:278.166177px;}
.x23_c00068{left:279.550748px;}
.x10_c00068{left:281.545116px;}
.x3_c00068{left:286.998000px;}
.x38_c00068{left:290.593652px;}
.x30_c00068{left:292.024691px;}
.x3f_c00068{left:294.368279px;}
.x64_c00068{left:295.840305px;}
.x6c_c00068{left:297.071498px;}
.x11_c00068{left:298.913699px;}
.x77_c00068{left:301.450776px;}
.x2a_c00068{left:302.583216px;}
.x9_c00068{left:305.289311px;}
.x5d_c00068{left:306.676151px;}
.x7e_c00068{left:309.355901px;}
.x68_c00068{left:311.284122px;}
.x65_c00068{left:316.588511px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.fsd_c00068{font-size:21.466667pt;}
.fsc_c00068{font-size:46.683674pt;}
.fs9_c00068{font-size:48.551021pt;}
.fs5_c00068{font-size:51.352041pt;}
.fsb_c00068{font-size:52.285714pt;}
.fs1_c00068{font-size:53.219388pt;}
.fsa_c00068{font-size:54.153061pt;}
.fs6_c00068{font-size:56.954082pt;}
.fs2_c00068{font-size:57.887755pt;}
.fs4_c00068{font-size:58.821429pt;}
.fs8_c00068{font-size:59.755102pt;}
.fs7_c00068{font-size:60.688776pt;}
.fs3_c00068{font-size:61.622449pt;}
.fs0_c00068{font-size:66.290816pt;}
.y0_c00068{bottom:0.000000pt;}
.y102_c00068{bottom:4.800000pt;}
.y101_c00068{bottom:8.914181pt;}
.y100_c00068{bottom:12.276043pt;}
.yff_c00068{bottom:13.276468pt;}
.yfe_c00068{bottom:19.801560pt;}
.yfd_c00068{bottom:21.105501pt;}
.yfc_c00068{bottom:21.674945pt;}
.yfb_c00068{bottom:22.091829pt;}
.yfa_c00068{bottom:25.256768pt;}
.yf9_c00068{bottom:25.846159pt;}
.yf8_c00068{bottom:26.485167pt;}
.yf7_c00068{bottom:27.666289pt;}
.yf6_c00068{bottom:28.170777pt;}
.yf5_c00068{bottom:37.359619pt;}
.yf4_c00068{bottom:38.213697pt;}
.yf3_c00068{bottom:39.492961pt;}
.yf2_c00068{bottom:40.072477pt;}
.yf1_c00068{bottom:42.280537pt;}
.yf0_c00068{bottom:42.771545pt;}
.yef_c00068{bottom:43.789389pt;}
.yee_c00068{bottom:44.249539pt;}
.yed_c00068{bottom:51.650929pt;}
.yec_c00068{bottom:54.056259pt;}
.yeb_c00068{bottom:54.963645pt;}
.yea_c00068{bottom:57.464657pt;}
.ye9_c00068{bottom:58.261992pt;}
.ye8_c00068{bottom:60.011692pt;}
.ye7_c00068{bottom:60.815581pt;}
.ye6_c00068{bottom:65.580751pt;}
.ye5_c00068{bottom:66.614508pt;}
.ye4_c00068{bottom:67.383012pt;}
.ye3_c00068{bottom:68.307564pt;}
.ye2_c00068{bottom:69.979485pt;}
.ye1_c00068{bottom:71.531472pt;}
.ye0_c00068{bottom:71.987627pt;}
.ydf_c00068{bottom:73.296791pt;}
.yde_c00068{bottom:80.906900pt;}
.ydd_c00068{bottom:82.395555pt;}
.ydc_c00068{bottom:83.322579pt;}
.ydb_c00068{bottom:84.115767pt;}
.yda_c00068{bottom:85.277337pt;}
.yd9_c00068{bottom:86.982499pt;}
.yd8_c00068{bottom:88.252665pt;}
.yd7_c00068{bottom:88.844829pt;}
.yd6_c00068{bottom:89.381075pt;}
.yd5_c00068{bottom:98.014143pt;}
.yd4_c00068{bottom:98.496487pt;}
.yd3_c00068{bottom:99.286399pt;}
.yd2_c00068{bottom:100.783299pt;}
.yd1_c00068{bottom:101.408480pt;}
.yd0_c00068{bottom:103.260584pt;}
.ycf_c00068{bottom:105.228953pt;}
.yce_c00068{bottom:109.211771pt;}
.ycd_c00068{bottom:110.406612pt;}
.ycc_c00068{bottom:112.060392pt;}
.ycb_c00068{bottom:112.696628pt;}
.yca_c00068{bottom:114.257548pt;}
.yc9_c00068{bottom:114.836497pt;}
.yc8_c00068{bottom:117.062709pt;}
.yc7_c00068{bottom:117.473076pt;}
.yc6_c00068{bottom:127.089393pt;}
.yc5_c00068{bottom:128.332159pt;}
.yc4_c00068{bottom:128.801504pt;}
.yc3_c00068{bottom:129.586879pt;}
.yc2_c00068{bottom:130.567265pt;}
.yc1_c00068{bottom:132.637425pt;}
.yc0_c00068{bottom:133.136944pt;}
.ybf_c00068{bottom:134.038836pt;}
.ybe_c00068{bottom:142.081895pt;}
.ybd_c00068{bottom:144.648851pt;}
.ybc_c00068{bottom:145.587151pt;}
.ybb_c00068{bottom:146.322449pt;}
.yba_c00068{bottom:149.334121pt;}
.yb9_c00068{bottom:150.345203pt;}
.yb8_c00068{bottom:151.084355pt;}
.yb7_c00068{bottom:156.288424pt;}
.yb6_c00068{bottom:156.987359pt;}
.yb5_c00068{bottom:157.787767pt;}
.yb4_c00068{bottom:158.453285pt;}
.yb3_c00068{bottom:159.628007pt;}
.yb2_c00068{bottom:160.033216pt;}
.yb1_c00068{bottom:161.320789pt;}
.yb0_c00068{bottom:162.185977pt;}
.yaf_c00068{bottom:163.621440pt;}
.yae_c00068{bottom:164.767715pt;}
.yad_c00068{bottom:170.529944pt;}
.yac_c00068{bottom:171.719353pt;}
.yab_c00068{bottom:172.101301pt;}
.yaa_c00068{bottom:173.523992pt;}
.ya9_c00068{bottom:175.255431pt;}
.ya8_c00068{bottom:176.507959pt;}
.ya7_c00068{bottom:177.547441pt;}
.ya6_c00068{bottom:177.976808pt;}
.ya5_c00068{bottom:185.636403pt;}
.ya4_c00068{bottom:186.226427pt;}
.ya3_c00068{bottom:186.830241pt;}
.ya2_c00068{bottom:191.057553pt;}
.ya1_c00068{bottom:191.637316pt;}
.ya0_c00068{bottom:193.276976pt;}
.y9f_c00068{bottom:194.060459pt;}
.y9e_c00068{bottom:201.741797pt;}
.y9d_c00068{bottom:202.275175pt;}
.y9c_c00068{bottom:202.890289pt;}
.y9b_c00068{bottom:204.490243pt;}
.y9a_c00068{bottom:205.645540pt;}
.y99_c00068{bottom:206.036184pt;}
.y98_c00068{bottom:207.079787pt;}
.y97_c00068{bottom:207.591560pt;}
.y96_c00068{bottom:209.186796pt;}
.y95_c00068{bottom:216.403205pt;}
.y94_c00068{bottom:217.730875pt;}
.y93_c00068{bottom:218.423064pt;}
.y92_c00068{bottom:220.940533pt;}
.y91_c00068{bottom:222.598203pt;}
.y90_c00068{bottom:224.134781pt;}
.y8f_c00068{bottom:224.794241pt;}
.y8e_c00068{bottom:232.469816pt;}
.y8d_c00068{bottom:234.123132pt;}
.y8c_c00068{bottom:234.906401pt;}
.y8b_c00068{bottom:235.527025pt;}
.y8a_c00068{bottom:236.915723pt;}
.y89_c00068{bottom:237.698308pt;}
.y88_c00068{bottom:238.470559pt;}
.y87_c00068{bottom:240.159559pt;}
.y86_c00068{bottom:246.687419pt;}
.y85_c00068{bottom:247.006380pt;}
.y84_c00068{bottom:248.963499pt;}
.y83_c00068{bottom:249.682367pt;}
.y82_c00068{bottom:250.921949pt;}
.y81_c00068{bottom:252.602489pt;}
.y80_c00068{bottom:253.191152pt;}
.y7f_c00068{bottom:254.765648pt;}
.y7e_c00068{bottom:255.524089pt;}
.y7d_c00068{bottom:264.255101pt;}
.y7c_c00068{bottom:266.337213pt;}
.y7b_c00068{bottom:267.715507pt;}
.y7a_c00068{bottom:268.149471pt;}
.y79_c00068{bottom:269.626381pt;}
.y78_c00068{bottom:270.405233pt;}
.y77_c00068{bottom:278.542325pt;}
.y76_c00068{bottom:279.699139pt;}
.y75_c00068{bottom:280.607032pt;}
.y74_c00068{bottom:281.340869pt;}
.y73_c00068{bottom:281.724975pt;}
.y72_c00068{bottom:282.995055pt;}
.y71_c00068{bottom:283.624012pt;}
.y70_c00068{bottom:284.089495pt;}
.y6f_c00068{bottom:293.244457pt;}
.y6e_c00068{bottom:293.661901pt;}
.y6d_c00068{bottom:294.165757pt;}
.y6c_c00068{bottom:295.307675pt;}
.y6b_c00068{bottom:295.958621pt;}
.y6a_c00068{bottom:297.119793pt;}
.y69_c00068{bottom:297.492935pt;}
.y68_c00068{bottom:298.011547pt;}
.y67_c00068{bottom:307.264989pt;}
.y66_c00068{bottom:307.617292pt;}
.y65_c00068{bottom:308.123955pt;}
.y64_c00068{bottom:309.929955pt;}
.y63_c00068{bottom:310.326633pt;}
.y62_c00068{bottom:310.747065pt;}
.y61_c00068{bottom:312.103519pt;}
.y60_c00068{bottom:312.416125pt;}
.y5f_c00068{bottom:322.240825pt;}
.y5e_c00068{bottom:322.686565pt;}
.y5d_c00068{bottom:323.075589pt;}
.y5c_c00068{bottom:324.554420pt;}
.y5b_c00068{bottom:324.852216pt;}
.y5a_c00068{bottom:325.311127pt;}
.y59_c00068{bottom:325.816139pt;}
.y58_c00068{bottom:326.580691pt;}
.y57_c00068{bottom:337.038931pt;}
.y56_c00068{bottom:338.493707pt;}
.y55_c00068{bottom:338.947107pt;}
.y54_c00068{bottom:339.437660pt;}
.y53_c00068{bottom:340.264069pt;}
.y52_c00068{bottom:341.288449pt;}
.y51_c00068{bottom:341.926824pt;}
.y50_c00068{bottom:342.525021pt;}
.y4f_c00068{bottom:343.627885pt;}
.y4e_c00068{bottom:351.698271pt;}
.y4d_c00068{bottom:352.268563pt;}
.y4c_c00068{bottom:352.693753pt;}
.y4b_c00068{bottom:353.395328pt;}
.y4a_c00068{bottom:354.144873pt;}
.y49_c00068{bottom:354.512448pt;}
.y48_c00068{bottom:355.074824pt;}
.y47_c00068{bottom:355.480151pt;}
.y46_c00068{bottom:356.110003pt;}
.y45_c00068{bottom:365.753701pt;}
.y44_c00068{bottom:369.138709pt;}
.y43_c00068{bottom:370.198261pt;}
.y42_c00068{bottom:370.944577pt;}
.y41_c00068{bottom:371.900989pt;}
.y40_c00068{bottom:372.199141pt;}
.y3f_c00068{bottom:382.150785pt;}
.y3e_c00068{bottom:383.345536pt;}
.y3d_c00068{bottom:383.741963pt;}
.y3c_c00068{bottom:384.356595pt;}
.y3b_c00068{bottom:384.685612pt;}
.y3a_c00068{bottom:385.850528pt;}
.y39_c00068{bottom:386.359783pt;}
.y38_c00068{bottom:396.459083pt;}
.y37_c00068{bottom:397.907105pt;}
.y36_c00068{bottom:398.396775pt;}
.y35_c00068{bottom:398.584616pt;}
.y34_c00068{bottom:399.772419pt;}
.y33_c00068{bottom:400.162641pt;}
.y32_c00068{bottom:401.080577pt;}
.y31_c00068{bottom:401.727423pt;}
.y30_c00068{bottom:411.378064pt;}
.y2f_c00068{bottom:412.267819pt;}
.y2e_c00068{bottom:412.627305pt;}
.y2d_c00068{bottom:413.645765pt;}
.y2c_c00068{bottom:413.973039pt;}
.y2b_c00068{bottom:414.731927pt;}
.y2a_c00068{bottom:415.382047pt;}
.y29_c00068{bottom:416.641689pt;}
.y28_c00068{bottom:416.851413pt;}
.y27_c00068{bottom:426.905752pt;}
.y26_c00068{bottom:427.573463pt;}
.y25_c00068{bottom:427.832104pt;}
.y24_c00068{bottom:428.883548pt;}
.y23_c00068{bottom:429.858015pt;}
.y22_c00068{bottom:430.836836pt;}
.y21_c00068{bottom:431.255477pt;}
.y20_c00068{bottom:442.654540pt;}
.y1f_c00068{bottom:443.133520pt;}
.y1e_c00068{bottom:443.884057pt;}
.y1d_c00068{bottom:445.215503pt;}
.y1c_c00068{bottom:445.532915pt;}
.y1b_c00068{bottom:447.101835pt;}
.y1a_c00068{bottom:458.014740pt;}
.y19_c00068{bottom:458.934576pt;}
.y18_c00068{bottom:459.785943pt;}
.y17_c00068{bottom:460.766113pt;}
.y16_c00068{bottom:461.128656pt;}
.y15_c00068{bottom:461.714749pt;}
.y14_c00068{bottom:462.874265pt;}
.y13_c00068{bottom:463.670159pt;}
.y12_c00068{bottom:471.196311pt;}
.y11_c00068{bottom:471.659857pt;}
.y10_c00068{bottom:471.996851pt;}
.yf_c00068{bottom:472.345401pt;}
.ye_c00068{bottom:473.033359pt;}
.yd_c00068{bottom:475.180505pt;}
.yc_c00068{bottom:475.777697pt;}
.yb_c00068{bottom:477.303997pt;}
.ya_c00068{bottom:478.558867pt;}
.y9_c00068{bottom:486.926867pt;}
.y8_c00068{bottom:488.081777pt;}
.y7_c00068{bottom:488.598231pt;}
.y6_c00068{bottom:489.794385pt;}
.y5_c00068{bottom:491.305197pt;}
.y4_c00068{bottom:491.759892pt;}
.y3_c00068{bottom:498.919608pt;}
.y2_c00068{bottom:501.876720pt;}
.y1_c00068{bottom:504.000000pt;}
.hf_c00068{height:21.466667pt;}
.he_c00068{height:46.683674pt;}
.hb_c00068{height:48.551021pt;}
.h7_c00068{height:51.352041pt;}
.hd_c00068{height:52.285714pt;}
.h3_c00068{height:53.219388pt;}
.hc_c00068{height:54.153061pt;}
.h8_c00068{height:56.954082pt;}
.h4_c00068{height:57.887755pt;}
.h6_c00068{height:58.821429pt;}
.ha_c00068{height:59.755102pt;}
.h9_c00068{height:60.688776pt;}
.h5_c00068{height:61.622449pt;}
.h2_c00068{height:66.290816pt;}
.h1_c00068{height:544.000000pt;}
.h0_c00068{height:544.266667pt;}
.w0_c00068{width:327.840000pt;}
.w1_c00068{width:328.000000pt;}
.x0_c00068{left:0.000000pt;}
.x55_c00068{left:18.242056pt;}
.x4c_c00068{left:19.247616pt;}
.xa_c00068{left:20.292937pt;}
.x6d_c00068{left:22.515185pt;}
.x5e_c00068{left:27.749288pt;}
.x24_c00068{left:29.734603pt;}
.x1e_c00068{left:30.952441pt;}
.x86_c00068{left:32.330900pt;}
.x84_c00068{left:33.442619pt;}
.x48_c00068{left:34.603008pt;}
.x5c_c00068{left:38.284264pt;}
.x51_c00068{left:40.091953pt;}
.x4_c00068{left:41.268385pt;}
.x62_c00068{left:42.657563pt;}
.x31_c00068{left:43.944865pt;}
.x71_c00068{left:45.186140pt;}
.x2b_c00068{left:49.518504pt;}
.x12_c00068{left:50.976113pt;}
.x1f_c00068{left:51.893735pt;}
.x44_c00068{left:57.929972pt;}
.x40_c00068{left:59.040259pt;}
.x69_c00068{left:60.371684pt;}
.x4d_c00068{left:61.714492pt;}
.x5_c00068{left:62.902544pt;}
.x87_c00068{left:64.590075pt;}
.x36_c00068{left:66.050801pt;}
.x1_c00068{left:66.946667pt;}
.x52_c00068{left:68.674472pt;}
.x39_c00068{left:72.518277pt;}
.x5f_c00068{left:74.675099pt;}
.x78_c00068{left:77.750455pt;}
.x41_c00068{left:80.405016pt;}
.x80_c00068{left:81.968784pt;}
.x45_c00068{left:83.157391pt;}
.x56_c00068{left:84.816779pt;}
.x25_c00068{left:86.963640pt;}
.x85_c00068{left:88.599024pt;}
.x60_c00068{left:89.725588pt;}
.x19_c00068{left:91.229561pt;}
.x3a_c00068{left:92.768760pt;}
.x37_c00068{left:93.692135pt;}
.x13_c00068{left:95.551968pt;}
.x75_c00068{left:97.537191pt;}
.x32_c00068{left:99.395163pt;}
.x20_c00068{left:100.846987pt;}
.x81_c00068{left:101.912467pt;}
.x42_c00068{left:103.208404pt;}
.x1a_c00068{left:105.654172pt;}
.x2c_c00068{left:108.989199pt;}
.x63_c00068{left:112.009536pt;}
.xb_c00068{left:113.020116pt;}
.x33_c00068{left:115.089719pt;}
.x26_c00068{left:116.527636pt;}
.x14_c00068{left:118.099247pt;}
.x49_c00068{left:119.192688pt;}
.x3b_c00068{left:120.862052pt;}
.x72_c00068{left:123.062873pt;}
.x6a_c00068{left:124.281501pt;}
.x53_c00068{left:126.388915pt;}
.x66_c00068{left:129.056941pt;}
.x15_c00068{left:132.020940pt;}
.xc_c00068{left:132.914496pt;}
.x79_c00068{left:133.893383pt;}
.x6_c00068{left:134.870208pt;}
.x4a_c00068{left:138.085081pt;}
.x3c_c00068{left:139.269544pt;}
.x7b_c00068{left:142.519109pt;}
.x34_c00068{left:144.377137pt;}
.x2_c00068{left:145.586667pt;}
.x4e_c00068{left:148.004460pt;}
.x21_c00068{left:149.589536pt;}
.x27_c00068{left:151.009613pt;}
.x73_c00068{left:152.751383pt;}
.x59_c00068{left:154.370863pt;}
.x6e_c00068{left:156.583200pt;}
.x6b_c00068{left:160.059492pt;}
.x2d_c00068{left:162.964471pt;}
.x82_c00068{left:164.446543pt;}
.x1b_c00068{left:166.185011pt;}
.x16_c00068{left:169.707281pt;}
.x2e_c00068{left:171.502956pt;}
.x5a_c00068{left:172.612740pt;}
.x7f_c00068{left:173.804049pt;}
.x3d_c00068{left:176.765969pt;}
.x7c_c00068{left:177.732088pt;}
.x6f_c00068{left:179.474560pt;}
.x76_c00068{left:181.626213pt;}
.x67_c00068{left:183.152300pt;}
.x57_c00068{left:185.071143pt;}
.x43_c00068{left:186.860839pt;}
.x74_c00068{left:190.771893pt;}
.x7_c00068{left:191.823424pt;}
.x2f_c00068{left:193.740611pt;}
.x46_c00068{left:194.963856pt;}
.x7a_c00068{left:198.206979pt;}
.x1c_c00068{left:200.308285pt;}
.x17_c00068{left:202.474848pt;}
.xd_c00068{left:204.482033pt;}
.x58_c00068{left:205.617381pt;}
.x28_c00068{left:212.217893pt;}
.x22_c00068{left:215.111253pt;}
.x8_c00068{left:216.387384pt;}
.x54_c00068{left:218.469335pt;}
.x35_c00068{left:220.161413pt;}
.x1d_c00068{left:222.051201pt;}
.x4b_c00068{left:224.099013pt;}
.x4f_c00068{left:226.403835pt;}
.xe_c00068{left:227.392161pt;}
.x29_c00068{left:228.546756pt;}
.x7d_c00068{left:229.879664pt;}
.x61_c00068{left:231.054912pt;}
.x3e_c00068{left:233.125959pt;}
.x47_c00068{left:236.703740pt;}
.x18_c00068{left:237.877153pt;}
.xf_c00068{left:239.016559pt;}
.x70_c00068{left:242.078908pt;}
.x5b_c00068{left:244.275204pt;}
.x50_c00068{left:246.312408pt;}
.x83_c00068{left:247.258824pt;}
.x23_c00068{left:248.489553pt;}
.x10_c00068{left:250.262325pt;}
.x3_c00068{left:255.109333pt;}
.x38_c00068{left:258.305468pt;}
.x30_c00068{left:259.577503pt;}
.x3f_c00068{left:261.660692pt;}
.x64_c00068{left:262.969160pt;}
.x6c_c00068{left:264.063553pt;}
.x11_c00068{left:265.701065pt;}
.x77_c00068{left:267.956245pt;}
.x2a_c00068{left:268.962859pt;}
.x9_c00068{left:271.368276pt;}
.x5d_c00068{left:272.601023pt;}
.x7e_c00068{left:274.983023pt;}
.x68_c00068{left:276.696997pt;}
.x65_c00068{left:281.412009pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00069 {
    display:none;
  }
  .loading-indicator_c00069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00069 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00069 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00069" -> "#page-container .classname_c00069")
 */
.pf_c00069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00069 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00069 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00069 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00069 {overflow:visible;}
  }
}
.c_c00069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00069 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00069:after { /* webkit #35443 */
  content: '';
}
.t_c00069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00069 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00069 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00069 { /* info for Javascript */
  display:none;
}
.l_c00069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00069:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00069 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00069.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.015540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015540,0.000000,0.000000,0.250000,0,0);}
.md2_c00069{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m87_c00069{transform:matrix(0.080105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080105,0.000000,0.000000,0.250000,0,0);}
.ma5_c00069{transform:matrix(0.134490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134490,0.000000,0.000000,0.250000,0,0);}
.m7b_c00069{transform:matrix(0.142905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142905,0.000000,0.000000,0.250000,0,0);}
.mba_c00069{transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);}
.mc9_c00069{transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);}
.m89_c00069{transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);}
.m7f_c00069{transform:matrix(0.154105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154105,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{transform:matrix(0.154430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154430,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{transform:matrix(0.154440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154440,0.000000,0.000000,0.250000,0,0);}
.m60_c00069{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.mf5_c00069{transform:matrix(0.154840,-0.005270,0.008504,0.249855,0,0);-ms-transform:matrix(0.154840,-0.005270,0.008504,0.249855,0,0);-webkit-transform:matrix(0.154840,-0.005270,0.008504,0.249855,0,0);}
.m7c_c00069{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m107_c00069{transform:matrix(0.155950,-0.005308,0.008504,0.249855,0,0);-ms-transform:matrix(0.155950,-0.005308,0.008504,0.249855,0,0);-webkit-transform:matrix(0.155950,-0.005308,0.008504,0.249855,0,0);}
.ma3_c00069{transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);}
.m90_c00069{transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.157680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157680,0.000000,0.000000,0.250000,0,0);}
.md5_c00069{transform:matrix(0.157809,-0.005371,0.008504,0.249855,0,0);-ms-transform:matrix(0.157809,-0.005371,0.008504,0.249855,0,0);-webkit-transform:matrix(0.157809,-0.005371,0.008504,0.249855,0,0);}
.m1f_c00069{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.m95_c00069{transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);}
.mc6_c00069{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m31_c00069{transform:matrix(0.160970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160970,0.000000,0.000000,0.250000,0,0);}
.m5b_c00069{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m7e_c00069{transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m88_c00069{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m17_c00069{transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);}
.m69_c00069{transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);}
.mc8_c00069{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m38_c00069{transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);}
.m105_c00069{transform:matrix(0.166089,-0.005653,0.008504,0.249855,0,0);-ms-transform:matrix(0.166089,-0.005653,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166089,-0.005653,0.008504,0.249855,0,0);}
.m85_c00069{transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);}
.m45_c00069{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.m6c_c00069{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00069{transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);}
.m73_c00069{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.mbd_c00069{transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);}
.m2e_c00069{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.maa_c00069{transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);}
.m106_c00069{transform:matrix(0.168842,-0.005746,0.008504,0.249855,0,0);-ms-transform:matrix(0.168842,-0.005746,0.008504,0.249855,0,0);-webkit-transform:matrix(0.168842,-0.005746,0.008504,0.249855,0,0);}
.m64_c00069{transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);}
.m94_c00069{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m53_c00069{transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);}
.m6f_c00069{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m35_c00069{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m50_c00069{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.m42_c00069{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m59_c00069{transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);}
.md8_c00069{transform:matrix(0.171870,-0.005849,0.008504,0.249855,0,0);-ms-transform:matrix(0.171870,-0.005849,0.008504,0.249855,0,0);-webkit-transform:matrix(0.171870,-0.005849,0.008504,0.249855,0,0);}
.m32_c00069{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.172555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172555,0.000000,0.000000,0.250000,0,0);}
.mc7_c00069{transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);}
.m43_c00069{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m82_c00069{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.mc0_c00069{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00069{transform:matrix(0.175463,-0.005972,0.008504,0.249855,0,0);-ms-transform:matrix(0.175463,-0.005972,0.008504,0.249855,0,0);-webkit-transform:matrix(0.175463,-0.005972,0.008504,0.249855,0,0);}
.m48_c00069{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00069{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.ma8_c00069{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.m62_c00069{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.mb6_c00069{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m47_c00069{transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00069{transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);}
.mea_c00069{transform:matrix(0.177772,-0.006050,0.008504,0.249855,0,0);-ms-transform:matrix(0.177772,-0.006050,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177772,-0.006050,0.008504,0.249855,0,0);}
.mb8_c00069{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.mb3_c00069{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00069{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.ma0_c00069{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m9b_c00069{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m92_c00069{transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);}
.m74_c00069{transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.md6_c00069{transform:matrix(0.180985,-0.006160,0.008504,0.249855,0,0);-ms-transform:matrix(0.180985,-0.006160,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180985,-0.006160,0.008504,0.249855,0,0);}
.m100_c00069{transform:matrix(0.181045,-0.006162,0.008504,0.249855,0,0);-ms-transform:matrix(0.181045,-0.006162,0.008504,0.249855,0,0);-webkit-transform:matrix(0.181045,-0.006162,0.008504,0.249855,0,0);}
.m8d_c00069{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m6a_c00069{transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.mc5_c00069{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mbe_c00069{transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);}
.mac_c00069{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m46_c00069{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.ma9_c00069{transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);}
.mec_c00069{transform:matrix(0.184933,-0.006294,0.008504,0.249855,0,0);-ms-transform:matrix(0.184933,-0.006294,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184933,-0.006294,0.008504,0.249855,0,0);}
.mca_c00069{transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);}
.m9c_c00069{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m81_c00069{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.m12_c00069{transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);}
.m26_c00069{transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);}
.me1_c00069{transform:matrix(0.186802,-0.006358,0.008504,0.249855,0,0);-ms-transform:matrix(0.186802,-0.006358,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186802,-0.006358,0.008504,0.249855,0,0);}
.m3e_c00069{transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);}
.m67_c00069{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.me9_c00069{transform:matrix(0.187362,-0.006377,0.008504,0.249855,0,0);-ms-transform:matrix(0.187362,-0.006377,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187362,-0.006377,0.008504,0.249855,0,0);}
.m80_c00069{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.mef_c00069{transform:matrix(0.187846,-0.006393,0.008504,0.249855,0,0);-ms-transform:matrix(0.187846,-0.006393,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187846,-0.006393,0.008504,0.249855,0,0);}
.med_c00069{transform:matrix(0.187951,-0.006397,0.008504,0.249855,0,0);-ms-transform:matrix(0.187951,-0.006397,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187951,-0.006397,0.008504,0.249855,0,0);}
.mbf_c00069{transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);}
.m8c_c00069{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m84_c00069{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m86_c00069{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m99_c00069{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.mc3_c00069{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.m91_c00069{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m6d_c00069{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.mf2_c00069{transform:matrix(0.189765,-0.006458,0.008504,0.249855,0,0);-ms-transform:matrix(0.189765,-0.006458,0.008504,0.249855,0,0);-webkit-transform:matrix(0.189765,-0.006458,0.008504,0.249855,0,0);}
.m7_c00069{transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);}
.ma2_c00069{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m5c_c00069{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.mb9_c00069{transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);}
.m96_c00069{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.m22_c00069{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);}
.m36_c00069{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.mcf_c00069{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00069{transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);}
.m1b_c00069{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mf3_c00069{transform:matrix(0.193073,-0.006571,0.008504,0.249855,0,0);-ms-transform:matrix(0.193073,-0.006571,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193073,-0.006571,0.008504,0.249855,0,0);}
.md4_c00069{transform:matrix(0.193173,-0.006574,0.008504,0.249855,0,0);-ms-transform:matrix(0.193173,-0.006574,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193173,-0.006574,0.008504,0.249855,0,0);}
.mb7_c00069{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00069{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.mab_c00069{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m66_c00069{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.maf_c00069{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00069{transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00069{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.m61_c00069{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);}
.mf8_c00069{transform:matrix(0.195982,-0.006670,0.008504,0.249855,0,0);-ms-transform:matrix(0.195982,-0.006670,0.008504,0.249855,0,0);-webkit-transform:matrix(0.195982,-0.006670,0.008504,0.249855,0,0);}
.m97_c00069{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.m76_c00069{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.mf1_c00069{transform:matrix(0.197436,-0.006720,0.008504,0.249855,0,0);-ms-transform:matrix(0.197436,-0.006720,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197436,-0.006720,0.008504,0.249855,0,0);}
.m3c_c00069{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m101_c00069{transform:matrix(0.198770,-0.006765,0.008504,0.249855,0,0);-ms-transform:matrix(0.198770,-0.006765,0.008504,0.249855,0,0);-webkit-transform:matrix(0.198770,-0.006765,0.008504,0.249855,0,0);}
.m37_c00069{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.ma4_c00069{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.m5e_c00069{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.mf0_c00069{transform:matrix(0.200259,-0.006816,0.008504,0.249855,0,0);-ms-transform:matrix(0.200259,-0.006816,0.008504,0.249855,0,0);-webkit-transform:matrix(0.200259,-0.006816,0.008504,0.249855,0,0);}
.m30_c00069{transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);}
.m5d_c00069{transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);}
.mce_c00069{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.m77_c00069{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.mfb_c00069{transform:matrix(0.200694,-0.006830,0.008504,0.249855,0,0);-ms-transform:matrix(0.200694,-0.006830,0.008504,0.249855,0,0);-webkit-transform:matrix(0.200694,-0.006830,0.008504,0.249855,0,0);}
.m6b_c00069{transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);}
.m65_c00069{transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);}
.mfe_c00069{transform:matrix(0.201218,-0.006848,0.008504,0.249855,0,0);-ms-transform:matrix(0.201218,-0.006848,0.008504,0.249855,0,0);-webkit-transform:matrix(0.201218,-0.006848,0.008504,0.249855,0,0);}
.m71_c00069{transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);}
.mbb_c00069{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.mae_c00069{transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);}
.m8b_c00069{transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);}
.m8f_c00069{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.mc1_c00069{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00069{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.mfa_c00069{transform:matrix(0.203137,-0.006914,0.008504,0.249855,0,0);-ms-transform:matrix(0.203137,-0.006914,0.008504,0.249855,0,0);-webkit-transform:matrix(0.203137,-0.006914,0.008504,0.249855,0,0);}
.me3_c00069{transform:matrix(0.203202,-0.006916,0.008504,0.249855,0,0);-ms-transform:matrix(0.203202,-0.006916,0.008504,0.249855,0,0);-webkit-transform:matrix(0.203202,-0.006916,0.008504,0.249855,0,0);}
.m6_c00069{transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m102_c00069{transform:matrix(0.204142,-0.006948,0.008504,0.249855,0,0);-ms-transform:matrix(0.204142,-0.006948,0.008504,0.249855,0,0);-webkit-transform:matrix(0.204142,-0.006948,0.008504,0.249855,0,0);}
.m9e_c00069{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.mb5_c00069{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.m103_c00069{transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);-ms-transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);}
.m104_c00069{transform:matrix(0.205416,-0.006991,0.008504,0.249855,0,0);-ms-transform:matrix(0.205416,-0.006991,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205416,-0.006991,0.008504,0.249855,0,0);}
.mb1_c00069{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.md3_c00069{transform:matrix(0.205776,-0.007003,0.008504,0.249855,0,0);-ms-transform:matrix(0.205776,-0.007003,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205776,-0.007003,0.008504,0.249855,0,0);}
.me8_c00069{transform:matrix(0.205846,-0.007006,0.008504,0.249855,0,0);-ms-transform:matrix(0.205846,-0.007006,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205846,-0.007006,0.008504,0.249855,0,0);}
.mad_c00069{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.mee_c00069{transform:matrix(0.206041,-0.007012,0.008504,0.249855,0,0);-ms-transform:matrix(0.206041,-0.007012,0.008504,0.249855,0,0);-webkit-transform:matrix(0.206041,-0.007012,0.008504,0.249855,0,0);}
.m7a_c00069{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.meb_c00069{transform:matrix(0.207160,-0.007050,0.008504,0.249855,0,0);-ms-transform:matrix(0.207160,-0.007050,0.008504,0.249855,0,0);-webkit-transform:matrix(0.207160,-0.007050,0.008504,0.249855,0,0);}
.m4b_c00069{transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);}
.me7_c00069{transform:matrix(0.207595,-0.007065,0.008504,0.249855,0,0);-ms-transform:matrix(0.207595,-0.007065,0.008504,0.249855,0,0);-webkit-transform:matrix(0.207595,-0.007065,0.008504,0.249855,0,0);}
.m1e_c00069{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.md1_c00069{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.mc4_c00069{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m8e_c00069{transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);}
.me6_c00069{transform:matrix(0.210143,-0.007152,0.008504,0.249855,0,0);-ms-transform:matrix(0.210143,-0.007152,0.008504,0.249855,0,0);-webkit-transform:matrix(0.210143,-0.007152,0.008504,0.249855,0,0);}
.m4_c00069{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m18_c00069{transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m68_c00069{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);}
.m78_c00069{transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);}
.m2f_c00069{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m79_c00069{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m98_c00069{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.ma1_c00069{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00069{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m70_c00069{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.mbc_c00069{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.md7_c00069{transform:matrix(0.213661,-0.007272,0.008504,0.249855,0,0);-ms-transform:matrix(0.213661,-0.007272,0.008504,0.249855,0,0);-webkit-transform:matrix(0.213661,-0.007272,0.008504,0.249855,0,0);}
.m14_c00069{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m33_c00069{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.me2_c00069{transform:matrix(0.214066,-0.007286,0.008504,0.249855,0,0);-ms-transform:matrix(0.214066,-0.007286,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214066,-0.007286,0.008504,0.249855,0,0);}
.m39_c00069{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.mb0_c00069{transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.mf4_c00069{transform:matrix(0.215925,-0.007349,0.008504,0.249855,0,0);-ms-transform:matrix(0.215925,-0.007349,0.008504,0.249855,0,0);-webkit-transform:matrix(0.215925,-0.007349,0.008504,0.249855,0,0);}
.me4_c00069{transform:matrix(0.216055,-0.007353,0.008504,0.249855,0,0);-ms-transform:matrix(0.216055,-0.007353,0.008504,0.249855,0,0);-webkit-transform:matrix(0.216055,-0.007353,0.008504,0.249855,0,0);}
.mf_c00069{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.mb2_c00069{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.mfc_c00069{transform:matrix(0.218154,-0.007425,0.008504,0.249855,0,0);-ms-transform:matrix(0.218154,-0.007425,0.008504,0.249855,0,0);-webkit-transform:matrix(0.218154,-0.007425,0.008504,0.249855,0,0);}
.m44_c00069{transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);}
.m93_c00069{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);}
.mf7_c00069{transform:matrix(0.219308,-0.007464,0.008504,0.249855,0,0);-ms-transform:matrix(0.219308,-0.007464,0.008504,0.249855,0,0);-webkit-transform:matrix(0.219308,-0.007464,0.008504,0.249855,0,0);}
.mb_c00069{transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);}
.ma6_c00069{transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m72_c00069{transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.mfd_c00069{transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);-ms-transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);-webkit-transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);}
.m9f_c00069{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.ma7_c00069{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.mc2_c00069{transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);}
.m75_c00069{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m4a_c00069{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);}
.m63_c00069{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.me5_c00069{transform:matrix(0.228158,-0.007765,0.008504,0.249855,0,0);-ms-transform:matrix(0.228158,-0.007765,0.008504,0.249855,0,0);-webkit-transform:matrix(0.228158,-0.007765,0.008504,0.249855,0,0);}
.ma_c00069{transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m9a_c00069{transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);}
.m9d_c00069{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.mcc_c00069{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);}
.mf6_c00069{transform:matrix(0.236558,-0.008051,0.008504,0.249855,0,0);-ms-transform:matrix(0.236558,-0.008051,0.008504,0.249855,0,0);-webkit-transform:matrix(0.236558,-0.008051,0.008504,0.249855,0,0);}
.m49_c00069{transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);}
.md0_c00069{transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);}
.mcd_c00069{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.mdc_c00069{transform:matrix(0.260399,-0.008862,0.008504,0.249855,0,0);-ms-transform:matrix(0.260399,-0.008862,0.008504,0.249855,0,0);-webkit-transform:matrix(0.260399,-0.008862,0.008504,0.249855,0,0);}
.mdf_c00069{transform:matrix(0.271158,-0.009229,0.008504,0.249855,0,0);-ms-transform:matrix(0.271158,-0.009229,0.008504,0.249855,0,0);-webkit-transform:matrix(0.271158,-0.009229,0.008504,0.249855,0,0);}
.mff_c00069{transform:matrix(0.286229,-0.009742,0.008504,0.249855,0,0);-ms-transform:matrix(0.286229,-0.009742,0.008504,0.249855,0,0);-webkit-transform:matrix(0.286229,-0.009742,0.008504,0.249855,0,0);}
.m52_c00069{transform:matrix(0.286760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286760,0.000000,0.000000,0.250000,0,0);}
.md9_c00069{transform:matrix(0.299117,-0.010180,0.008504,0.249855,0,0);-ms-transform:matrix(0.299117,-0.010180,0.008504,0.249855,0,0);-webkit-transform:matrix(0.299117,-0.010180,0.008504,0.249855,0,0);}
.mde_c00069{transform:matrix(0.301395,-0.010258,0.008504,0.249855,0,0);-ms-transform:matrix(0.301395,-0.010258,0.008504,0.249855,0,0);-webkit-transform:matrix(0.301395,-0.010258,0.008504,0.249855,0,0);}
.mdb_c00069{transform:matrix(0.307437,-0.010463,0.008504,0.249855,0,0);-ms-transform:matrix(0.307437,-0.010463,0.008504,0.249855,0,0);-webkit-transform:matrix(0.307437,-0.010463,0.008504,0.249855,0,0);}
.mdd_c00069{transform:matrix(0.308921,-0.010514,0.008504,0.249855,0,0);-ms-transform:matrix(0.308921,-0.010514,0.008504,0.249855,0,0);-webkit-transform:matrix(0.308921,-0.010514,0.008504,0.249855,0,0);}
.mda_c00069{transform:matrix(0.327960,-0.011162,0.008504,0.249855,0,0);-ms-transform:matrix(0.327960,-0.011162,0.008504,0.249855,0,0);-webkit-transform:matrix(0.327960,-0.011162,0.008504,0.249855,0,0);}
.m19_c00069{transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);}
.me0_c00069{transform:matrix(0.342252,-0.011648,0.008504,0.249855,0,0);-ms-transform:matrix(0.342252,-0.011648,0.008504,0.249855,0,0);-webkit-transform:matrix(0.342252,-0.011648,0.008504,0.249855,0,0);}
.m83_c00069{transform:matrix(0.602990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602990,0.000000,0.000000,0.250000,0,0);}
.m15_c00069{transform:matrix(0.670130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670130,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:0.000000px;}
.fc0_c00069{color:transparent;}
.fsd_c00069{font-size:39.883179px;}
.fs4_c00069{font-size:58.800000px;}
.fs2_c00069{font-size:59.850000px;}
.fs11_c00069{font-size:60.874325px;}
.fs6_c00069{font-size:60.900000px;}
.fs1_c00069{font-size:61.950000px;}
.fse_c00069{font-size:62.973440px;}
.fs3_c00069{font-size:63.000000px;}
.fs8_c00069{font-size:64.050000px;}
.fsf_c00069{font-size:65.072555px;}
.fsb_c00069{font-size:65.100000px;}
.fs10_c00069{font-size:66.122112px;}
.fs7_c00069{font-size:66.150000px;}
.fsc_c00069{font-size:67.171669px;}
.fs5_c00069{font-size:67.200000px;}
.fsa_c00069{font-size:68.250000px;}
.fs9_c00069{font-size:69.300000px;}
.fs0_c00069{font-size:77.700000px;}
.y0_c00069{bottom:0.000000px;}
.y55_c00069{bottom:27.854836px;}
.y56_c00069{bottom:28.590649px;}
.y57_c00069{bottom:28.924332px;}
.y58_c00069{bottom:29.836275px;}
.y59_c00069{bottom:30.031747px;}
.y5a_c00069{bottom:30.944232px;}
.y5b_c00069{bottom:31.521931px;}
.y5c_c00069{bottom:32.025721px;}
.y4b_c00069{bottom:41.890884px;}
.y4c_c00069{bottom:42.554935px;}
.y4d_c00069{bottom:43.071288px;}
.y4e_c00069{bottom:44.043096px;}
.y4f_c00069{bottom:45.087943px;}
.y50_c00069{bottom:45.489799px;}
.y51_c00069{bottom:45.824269px;}
.y52_c00069{bottom:47.036397px;}
.y53_c00069{bottom:47.367214px;}
.y54_c00069{bottom:47.788620px;}
.y44_c00069{bottom:61.869045px;}
.y45_c00069{bottom:62.748480px;}
.y46_c00069{bottom:63.137946px;}
.y47_c00069{bottom:64.656931px;}
.y48_c00069{bottom:65.511811px;}
.y49_c00069{bottom:67.653933px;}
.y4a_c00069{bottom:69.609646px;}
.y3d_c00069{bottom:73.472514px;}
.y3e_c00069{bottom:74.805985px;}
.y3f_c00069{bottom:75.268596px;}
.y40_c00069{bottom:76.648051px;}
.y41_c00069{bottom:77.126068px;}
.y42_c00069{bottom:79.076643px;}
.y43_c00069{bottom:79.512450px;}
.y36_c00069{bottom:88.326690px;}
.y37_c00069{bottom:89.864877px;}
.y38_c00069{bottom:90.617542px;}
.y39_c00069{bottom:92.438443px;}
.y3a_c00069{bottom:93.128418px;}
.y3b_c00069{bottom:95.494437px;}
.y3c_c00069{bottom:96.775900px;}
.y2e_c00069{bottom:107.211034px;}
.y2f_c00069{bottom:108.263224px;}
.y30_c00069{bottom:110.219076px;}
.y31_c00069{bottom:111.111313px;}
.y32_c00069{bottom:111.803073px;}
.y33_c00069{bottom:114.061458px;}
.y34_c00069{bottom:115.549908px;}
.y35_c00069{bottom:116.074269px;}
.y28_c00069{bottom:124.762500px;}
.y29_c00069{bottom:126.826827px;}
.y2a_c00069{bottom:128.999988px;}
.y2b_c00069{bottom:129.816549px;}
.y2c_c00069{bottom:132.246597px;}
.y2d_c00069{bottom:134.571840px;}
.y27_c00069{bottom:146.496000px;}
.y26_c00069{bottom:164.757000px;}
.y25_c00069{bottom:181.528500px;}
.y24_c00069{bottom:198.411000px;}
.y23_c00069{bottom:215.934000px;}
.y22_c00069{bottom:232.644000px;}
.y21_c00069{bottom:249.867000px;}
.y20_c00069{bottom:266.487000px;}
.y1f_c00069{bottom:282.274500px;}
.y1e_c00069{bottom:299.071500px;}
.y1d_c00069{bottom:316.587000px;}
.y1c_c00069{bottom:333.330000px;}
.y1b_c00069{bottom:351.519000px;}
.y14_c00069{bottom:367.741500px;}
.y15_c00069{bottom:368.046000px;}
.y16_c00069{bottom:368.610000px;}
.y17_c00069{bottom:369.193500px;}
.y18_c00069{bottom:369.403500px;}
.y19_c00069{bottom:369.988500px;}
.y1a_c00069{bottom:370.248000px;}
.y13_c00069{bottom:384.870000px;}
.y12_c00069{bottom:402.093000px;}
.y11_c00069{bottom:418.771500px;}
.y10_c00069{bottom:435.661500px;}
.yf_c00069{bottom:451.413000px;}
.ye_c00069{bottom:469.863000px;}
.yd_c00069{bottom:486.300000px;}
.yc_c00069{bottom:502.852500px;}
.yb_c00069{bottom:519.712500px;}
.ya_c00069{bottom:536.791500px;}
.y2_c00069{bottom:551.341500px;}
.y3_c00069{bottom:551.779500px;}
.y4_c00069{bottom:552.606000px;}
.y5_c00069{bottom:552.975000px;}
.y6_c00069{bottom:553.443000px;}
.y7_c00069{bottom:554.088000px;}
.y8_c00069{bottom:554.382000px;}
.y9_c00069{bottom:554.739000px;}
.y1_c00069{bottom:566.476500px;}
.hf_c00069{height:39.883179px;}
.h6_c00069{height:58.800000px;}
.h4_c00069{height:59.850000px;}
.h13_c00069{height:60.874325px;}
.h8_c00069{height:60.900000px;}
.h3_c00069{height:61.950000px;}
.h10_c00069{height:62.973440px;}
.h5_c00069{height:63.000000px;}
.ha_c00069{height:64.050000px;}
.h11_c00069{height:65.072555px;}
.hd_c00069{height:65.100000px;}
.h12_c00069{height:66.122112px;}
.h9_c00069{height:66.150000px;}
.he_c00069{height:67.171669px;}
.h7_c00069{height:67.200000px;}
.hc_c00069{height:68.250000px;}
.hb_c00069{height:69.300000px;}
.h2_c00069{height:77.700000px;}
.h1_c00069{height:612.000000px;}
.h0_c00069{height:612.300000px;}
.w0_c00069{width:368.820000px;}
.w1_c00069{width:369.000000px;}
.x0_c00069{left:0.000000px;}
.x3_c00069{left:46.543500px;}
.x62_c00069{left:47.790000px;}
.x1_c00069{left:49.950000px;}
.x57_c00069{left:51.300000px;}
.x16_c00069{left:53.460000px;}
.x3a_c00069{left:62.910000px;}
.x73_c00069{left:66.150000px;}
.x24_c00069{left:67.500000px;}
.x66_c00069{left:69.660000px;}
.x32_c00069{left:71.010000px;}
.x46_c00069{left:76.950000px;}
.x2b_c00069{left:79.650000px;}
.x1d_c00069{left:81.000000px;}
.x4_c00069{left:83.056500px;}
.x58_c00069{left:86.130000px;}
.x52_c00069{left:87.480000px;}
.x6b_c00069{left:90.180000px;}
.x5d_c00069{left:91.800000px;}
.x4e_c00069{left:93.690000px;}
.x3f_c00069{left:95.310000px;}
.x11_c00069{left:97.740000px;}
.x2c_c00069{left:98.820000px;}
.x59_c00069{left:102.330000px;}
.x77_c00069{left:103.950000px;}
.x17_c00069{left:105.300000px;}
.x1e_c00069{left:108.000000px;}
.x5f_c00069{left:110.430000px;}
.x63_c00069{left:111.510000px;}
.x40_c00069{left:113.940000px;}
.x12_c00069{left:115.020000px;}
.x83_c00069{left:116.266650px;}
.x7f_c00069{left:120.469471px;}
.x25_c00069{left:122.310000px;}
.xa_c00069{left:127.710000px;}
.x18_c00069{left:128.790000px;}
.x5a_c00069{left:132.300000px;}
.x2d_c00069{left:133.380000px;}
.x33_c00069{left:135.270000px;}
.x41_c00069{left:137.430000px;}
.x26_c00069{left:141.750000px;}
.xb_c00069{left:143.910000px;}
.x6c_c00069{left:145.530000px;}
.x82_c00069{left:149.546946px;}
.x53_c00069{left:150.660000px;}
.x5_c00069{left:151.912500px;}
.x3b_c00069{left:154.440000px;}
.x34_c00069{left:155.520000px;}
.x64_c00069{left:157.950000px;}
.x27_c00069{left:159.840000px;}
.x6f_c00069{left:161.460000px;}
.x2e_c00069{left:164.970000px;}
.x1f_c00069{left:166.320000px;}
.x6d_c00069{left:168.480000px;}
.x7e_c00069{left:170.208411px;}
.x4f_c00069{left:172.530000px;}
.x67_c00069{left:173.610000px;}
.x35_c00069{left:175.230000px;}
.x13_c00069{left:177.930000px;}
.x2f_c00069{left:180.090000px;}
.x2_c00069{left:183.330000px;}
.x78_c00069{left:184.680000px;}
.x68_c00069{left:186.030000px;}
.x80_c00069{left:187.139811px;}
.x60_c00069{left:190.890000px;}
.x4a_c00069{left:192.627000px;}
.x54_c00069{left:195.750000px;}
.x14_c00069{left:198.720000px;}
.x3c_c00069{left:202.230000px;}
.x42_c00069{left:206.550000px;}
.x81_c00069{left:207.885304px;}
.x47_c00069{left:209.250000px;}
.x74_c00069{left:211.950000px;}
.x4b_c00069{left:213.685500px;}
.x70_c00069{left:215.190000px;}
.x36_c00069{left:216.270000px;}
.xc_c00069{left:218.970000px;}
.x6_c00069{left:221.563500px;}
.x15_c00069{left:223.560000px;}
.x48_c00069{left:225.450000px;}
.x71_c00069{left:226.530000px;}
.x20_c00069{left:228.150000px;}
.xd_c00069{left:230.850000px;}
.x3d_c00069{left:234.090000px;}
.x19_c00069{left:236.250000px;}
.x50_c00069{left:238.680000px;}
.x5b_c00069{left:240.840000px;}
.x84_c00069{left:242.265714px;}
.x61_c00069{left:243.810000px;}
.x6e_c00069{left:245.700000px;}
.x37_c00069{left:247.050000px;}
.x21_c00069{left:249.750000px;}
.x43_c00069{left:251.640000px;}
.x28_c00069{left:253.800000px;}
.x75_c00069{left:255.420000px;}
.x69_c00069{left:257.040000px;}
.x65_c00069{left:261.360000px;}
.x55_c00069{left:263.250000px;}
.x44_c00069{left:264.330000px;}
.xe_c00069{left:265.410000px;}
.x38_c00069{left:266.490000px;}
.x7c_c00069{left:269.961379px;}
.x4c_c00069{left:272.209500px;}
.x1a_c00069{left:273.240000px;}
.x7_c00069{left:275.275500px;}
.x79_c00069{left:276.480000px;}
.x22_c00069{left:278.910000px;}
.x56_c00069{left:284.310000px;}
.x45_c00069{left:286.740000px;}
.x1b_c00069{left:291.060000px;}
.x30_c00069{left:292.950000px;}
.x29_c00069{left:295.110000px;}
.x3e_c00069{left:296.730000px;}
.x4d_c00069{left:298.176000px;}
.x8_c00069{left:299.790000px;}
.xf_c00069{left:301.320000px;}
.x5c_c00069{left:302.670000px;}
.x6a_c00069{left:305.370000px;}
.x1c_c00069{left:307.800000px;}
.x85_c00069{left:309.703509px;}
.x49_c00069{left:310.770000px;}
.x51_c00069{left:312.120000px;}
.x31_c00069{left:313.740000px;}
.x5e_c00069{left:314.820000px;}
.x72_c00069{left:317.790000px;}
.x10_c00069{left:319.680000px;}
.x23_c00069{left:322.650000px;}
.x2a_c00069{left:324.540000px;}
.x7a_c00069{left:325.620000px;}
.x39_c00069{left:327.240000px;}
.x9_c00069{left:329.550000px;}
.x76_c00069{left:331.020000px;}
.x7d_c00069{left:338.282490px;}
.x7b_c00069{left:358.830000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fsd_c00069{font-size:35.451714pt;}
.fs4_c00069{font-size:52.266667pt;}
.fs2_c00069{font-size:53.200000pt;}
.fs11_c00069{font-size:54.110511pt;}
.fs6_c00069{font-size:54.133333pt;}
.fs1_c00069{font-size:55.066667pt;}
.fse_c00069{font-size:55.976391pt;}
.fs3_c00069{font-size:56.000000pt;}
.fs8_c00069{font-size:56.933333pt;}
.fsf_c00069{font-size:57.842271pt;}
.fsb_c00069{font-size:57.866667pt;}
.fs10_c00069{font-size:58.775211pt;}
.fs7_c00069{font-size:58.800000pt;}
.fsc_c00069{font-size:59.708150pt;}
.fs5_c00069{font-size:59.733333pt;}
.fsa_c00069{font-size:60.666667pt;}
.fs9_c00069{font-size:61.600000pt;}
.fs0_c00069{font-size:69.066667pt;}
.y0_c00069{bottom:0.000000pt;}
.y55_c00069{bottom:24.759855pt;}
.y56_c00069{bottom:25.413911pt;}
.y57_c00069{bottom:25.710517pt;}
.y58_c00069{bottom:26.521133pt;}
.y59_c00069{bottom:26.694887pt;}
.y5a_c00069{bottom:27.505984pt;}
.y5b_c00069{bottom:28.019495pt;}
.y5c_c00069{bottom:28.467308pt;}
.y4b_c00069{bottom:37.236341pt;}
.y4c_c00069{bottom:37.826609pt;}
.y4d_c00069{bottom:38.285589pt;}
.y4e_c00069{bottom:39.149419pt;}
.y4f_c00069{bottom:40.078172pt;}
.y50_c00069{bottom:40.435377pt;}
.y51_c00069{bottom:40.732684pt;}
.y52_c00069{bottom:41.810131pt;}
.y53_c00069{bottom:42.104191pt;}
.y54_c00069{bottom:42.478773pt;}
.y44_c00069{bottom:54.994707pt;}
.y45_c00069{bottom:55.776427pt;}
.y46_c00069{bottom:56.122619pt;}
.y47_c00069{bottom:57.472828pt;}
.y48_c00069{bottom:58.232721pt;}
.y49_c00069{bottom:60.136829pt;}
.y4a_c00069{bottom:61.875241pt;}
.y3d_c00069{bottom:65.308901pt;}
.y3e_c00069{bottom:66.494209pt;}
.y3f_c00069{bottom:66.905419pt;}
.y40_c00069{bottom:68.131601pt;}
.y41_c00069{bottom:68.556505pt;}
.y42_c00069{bottom:70.290349pt;}
.y43_c00069{bottom:70.677733pt;}
.y36_c00069{bottom:78.512613pt;}
.y37_c00069{bottom:79.879891pt;}
.y38_c00069{bottom:80.548927pt;}
.y39_c00069{bottom:82.167505pt;}
.y3a_c00069{bottom:82.780816pt;}
.y3b_c00069{bottom:84.883944pt;}
.y3c_c00069{bottom:86.023023pt;}
.y2e_c00069{bottom:95.298697pt;}
.y2f_c00069{bottom:96.233977pt;}
.y30_c00069{bottom:97.972512pt;}
.y31_c00069{bottom:98.765612pt;}
.y32_c00069{bottom:99.380509pt;}
.y33_c00069{bottom:101.387963pt;}
.y34_c00069{bottom:102.711029pt;}
.y35_c00069{bottom:103.177128pt;}
.y28_c00069{bottom:110.900000pt;}
.y29_c00069{bottom:112.734957pt;}
.y2a_c00069{bottom:114.666656pt;}
.y2b_c00069{bottom:115.392488pt;}
.y2c_c00069{bottom:117.552531pt;}
.y2d_c00069{bottom:119.619413pt;}
.y27_c00069{bottom:130.218667pt;}
.y26_c00069{bottom:146.450667pt;}
.y25_c00069{bottom:161.358667pt;}
.y24_c00069{bottom:176.365333pt;}
.y23_c00069{bottom:191.941333pt;}
.y22_c00069{bottom:206.794667pt;}
.y21_c00069{bottom:222.104000pt;}
.y20_c00069{bottom:236.877333pt;}
.y1f_c00069{bottom:250.910667pt;}
.y1e_c00069{bottom:265.841333pt;}
.y1d_c00069{bottom:281.410667pt;}
.y1c_c00069{bottom:296.293333pt;}
.y1b_c00069{bottom:312.461333pt;}
.y14_c00069{bottom:326.881333pt;}
.y15_c00069{bottom:327.152000pt;}
.y16_c00069{bottom:327.653333pt;}
.y17_c00069{bottom:328.172000pt;}
.y18_c00069{bottom:328.358667pt;}
.y19_c00069{bottom:328.878667pt;}
.y1a_c00069{bottom:329.109333pt;}
.y13_c00069{bottom:342.106667pt;}
.y12_c00069{bottom:357.416000pt;}
.y11_c00069{bottom:372.241333pt;}
.y10_c00069{bottom:387.254667pt;}
.yf_c00069{bottom:401.256000pt;}
.ye_c00069{bottom:417.656000pt;}
.yd_c00069{bottom:432.266667pt;}
.yc_c00069{bottom:446.980000pt;}
.yb_c00069{bottom:461.966667pt;}
.ya_c00069{bottom:477.148000pt;}
.y2_c00069{bottom:490.081333pt;}
.y3_c00069{bottom:490.470667pt;}
.y4_c00069{bottom:491.205333pt;}
.y5_c00069{bottom:491.533333pt;}
.y6_c00069{bottom:491.949333pt;}
.y7_c00069{bottom:492.522667pt;}
.y8_c00069{bottom:492.784000pt;}
.y9_c00069{bottom:493.101333pt;}
.y1_c00069{bottom:503.534667pt;}
.hf_c00069{height:35.451714pt;}
.h6_c00069{height:52.266667pt;}
.h4_c00069{height:53.200000pt;}
.h13_c00069{height:54.110511pt;}
.h8_c00069{height:54.133333pt;}
.h3_c00069{height:55.066667pt;}
.h10_c00069{height:55.976391pt;}
.h5_c00069{height:56.000000pt;}
.ha_c00069{height:56.933333pt;}
.h11_c00069{height:57.842271pt;}
.hd_c00069{height:57.866667pt;}
.h12_c00069{height:58.775211pt;}
.h9_c00069{height:58.800000pt;}
.he_c00069{height:59.708150pt;}
.h7_c00069{height:59.733333pt;}
.hc_c00069{height:60.666667pt;}
.hb_c00069{height:61.600000pt;}
.h2_c00069{height:69.066667pt;}
.h1_c00069{height:544.000000pt;}
.h0_c00069{height:544.266667pt;}
.w0_c00069{width:327.840000pt;}
.w1_c00069{width:328.000000pt;}
.x0_c00069{left:0.000000pt;}
.x3_c00069{left:41.372000pt;}
.x62_c00069{left:42.480000pt;}
.x1_c00069{left:44.400000pt;}
.x57_c00069{left:45.600000pt;}
.x16_c00069{left:47.520000pt;}
.x3a_c00069{left:55.920000pt;}
.x73_c00069{left:58.800000pt;}
.x24_c00069{left:60.000000pt;}
.x66_c00069{left:61.920000pt;}
.x32_c00069{left:63.120000pt;}
.x46_c00069{left:68.400000pt;}
.x2b_c00069{left:70.800000pt;}
.x1d_c00069{left:72.000000pt;}
.x4_c00069{left:73.828000pt;}
.x58_c00069{left:76.560000pt;}
.x52_c00069{left:77.760000pt;}
.x6b_c00069{left:80.160000pt;}
.x5d_c00069{left:81.600000pt;}
.x4e_c00069{left:83.280000pt;}
.x3f_c00069{left:84.720000pt;}
.x11_c00069{left:86.880000pt;}
.x2c_c00069{left:87.840000pt;}
.x59_c00069{left:90.960000pt;}
.x77_c00069{left:92.400000pt;}
.x17_c00069{left:93.600000pt;}
.x1e_c00069{left:96.000000pt;}
.x5f_c00069{left:98.160000pt;}
.x63_c00069{left:99.120000pt;}
.x40_c00069{left:101.280000pt;}
.x12_c00069{left:102.240000pt;}
.x83_c00069{left:103.348133pt;}
.x7f_c00069{left:107.083975pt;}
.x25_c00069{left:108.720000pt;}
.xa_c00069{left:113.520000pt;}
.x18_c00069{left:114.480000pt;}
.x5a_c00069{left:117.600000pt;}
.x2d_c00069{left:118.560000pt;}
.x33_c00069{left:120.240000pt;}
.x41_c00069{left:122.160000pt;}
.x26_c00069{left:126.000000pt;}
.xb_c00069{left:127.920000pt;}
.x6c_c00069{left:129.360000pt;}
.x82_c00069{left:132.930619pt;}
.x53_c00069{left:133.920000pt;}
.x5_c00069{left:135.033333pt;}
.x3b_c00069{left:137.280000pt;}
.x34_c00069{left:138.240000pt;}
.x64_c00069{left:140.400000pt;}
.x27_c00069{left:142.080000pt;}
.x6f_c00069{left:143.520000pt;}
.x2e_c00069{left:146.640000pt;}
.x1f_c00069{left:147.840000pt;}
.x6d_c00069{left:149.760000pt;}
.x7e_c00069{left:151.296365pt;}
.x4f_c00069{left:153.360000pt;}
.x67_c00069{left:154.320000pt;}
.x35_c00069{left:155.760000pt;}
.x13_c00069{left:158.160000pt;}
.x2f_c00069{left:160.080000pt;}
.x2_c00069{left:162.960000pt;}
.x78_c00069{left:164.160000pt;}
.x68_c00069{left:165.360000pt;}
.x80_c00069{left:166.346499pt;}
.x60_c00069{left:169.680000pt;}
.x4a_c00069{left:171.224000pt;}
.x54_c00069{left:174.000000pt;}
.x14_c00069{left:176.640000pt;}
.x3c_c00069{left:179.760000pt;}
.x42_c00069{left:183.600000pt;}
.x81_c00069{left:184.786937pt;}
.x47_c00069{left:186.000000pt;}
.x74_c00069{left:188.400000pt;}
.x4b_c00069{left:189.942667pt;}
.x70_c00069{left:191.280000pt;}
.x36_c00069{left:192.240000pt;}
.xc_c00069{left:194.640000pt;}
.x6_c00069{left:196.945333pt;}
.x15_c00069{left:198.720000pt;}
.x48_c00069{left:200.400000pt;}
.x71_c00069{left:201.360000pt;}
.x20_c00069{left:202.800000pt;}
.xd_c00069{left:205.200000pt;}
.x3d_c00069{left:208.080000pt;}
.x19_c00069{left:210.000000pt;}
.x50_c00069{left:212.160000pt;}
.x5b_c00069{left:214.080000pt;}
.x84_c00069{left:215.347301pt;}
.x61_c00069{left:216.720000pt;}
.x6e_c00069{left:218.400000pt;}
.x37_c00069{left:219.600000pt;}
.x21_c00069{left:222.000000pt;}
.x43_c00069{left:223.680000pt;}
.x28_c00069{left:225.600000pt;}
.x75_c00069{left:227.040000pt;}
.x69_c00069{left:228.480000pt;}
.x65_c00069{left:232.320000pt;}
.x55_c00069{left:234.000000pt;}
.x44_c00069{left:234.960000pt;}
.xe_c00069{left:235.920000pt;}
.x38_c00069{left:236.880000pt;}
.x7c_c00069{left:239.965671pt;}
.x4c_c00069{left:241.964000pt;}
.x1a_c00069{left:242.880000pt;}
.x7_c00069{left:244.689333pt;}
.x79_c00069{left:245.760000pt;}
.x22_c00069{left:247.920000pt;}
.x56_c00069{left:252.720000pt;}
.x45_c00069{left:254.880000pt;}
.x1b_c00069{left:258.720000pt;}
.x30_c00069{left:260.400000pt;}
.x29_c00069{left:262.320000pt;}
.x3e_c00069{left:263.760000pt;}
.x4d_c00069{left:265.045333pt;}
.x8_c00069{left:266.480000pt;}
.xf_c00069{left:267.840000pt;}
.x5c_c00069{left:269.040000pt;}
.x6a_c00069{left:271.440000pt;}
.x1c_c00069{left:273.600000pt;}
.x85_c00069{left:275.292008pt;}
.x49_c00069{left:276.240000pt;}
.x51_c00069{left:277.440000pt;}
.x31_c00069{left:278.880000pt;}
.x5e_c00069{left:279.840000pt;}
.x72_c00069{left:282.480000pt;}
.x10_c00069{left:284.160000pt;}
.x23_c00069{left:286.800000pt;}
.x2a_c00069{left:288.480000pt;}
.x7a_c00069{left:289.440000pt;}
.x39_c00069{left:290.880000pt;}
.x9_c00069{left:292.933333pt;}
.x76_c00069{left:294.240000pt;}
.x7d_c00069{left:300.695547pt;}
.x7b_c00069{left:318.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00070 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00070 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00070 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00070 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00070.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00070{transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00070{transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);}
.me6_c00070{transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.088335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00070{transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);}
.m4c_c00070{transform:matrix(0.146010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146010,0.000000,0.000000,0.250000,0,0);}
.mc2_c00070{transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);}
.m27_c00070{transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(0.153170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153170,0.000000,0.000000,0.250000,0,0);}
.m9e_c00070{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.mb2_c00070{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.me9_c00070{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);}
.mc5_c00070{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.me0_c00070{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m32_c00070{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);}
.m9f_c00070{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163630,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);}
.m9b_c00070{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m2e_c00070{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);}
.mbe_c00070{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m78_c00070{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.m7e_c00070{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m64_c00070{transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);}
.mde_c00070{transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m80_c00070{transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);}
.m6e_c00070{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.me1_c00070{transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);}
.m31_c00070{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00070{transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);}
.m92_c00070{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.mac_c00070{transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);}
.me3_c00070{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.me7_c00070{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m7d_c00070{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.m8c_c00070{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m6f_c00070{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.maa_c00070{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.m85_c00070{transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);}
.m3e_c00070{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.m4b_c00070{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m97_c00070{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m69_c00070{transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);}
.mea_c00070{transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);}
.mdf_c00070{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.mbb_c00070{transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);}
.m9d_c00070{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);}
.ma1_c00070{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m77_c00070{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.mbc_c00070{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.ma5_c00070{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);}
.m99_c00070{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.mdd_c00070{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);}
.ma0_c00070{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m9a_c00070{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.me2_c00070{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.mb7_c00070{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.m67_c00070{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m71_c00070{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.m41_c00070{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m98_c00070{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m45_c00070{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);}
.m6a_c00070{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.mcf_c00070{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00070{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m70_c00070{transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);}
.mca_c00070{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.md5_c00070{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m86_c00070{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.mab_c00070{transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);}
.m61_c00070{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mdb_c00070{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.mb6_c00070{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m8a_c00070{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.mcb_c00070{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m76_c00070{transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);}
.m93_c00070{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m6b_c00070{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m29_c00070{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);}
.ma9_c00070{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m72_c00070{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.meb_c00070{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);}
.m6d_c00070{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.mc6_c00070{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.m91_c00070{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00070{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.mec_c00070{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m75_c00070{transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);}
.mba_c00070{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);}
.m82_c00070{transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00070{transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);}
.me8_c00070{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.md8_c00070{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.m73_c00070{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.mce_c00070{transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);}
.md3_c00070{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m74_c00070{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.me5_c00070{transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);}
.m96_c00070{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.ma8_c00070{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m7a_c00070{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.md2_c00070{transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);}
.maf_c00070{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m84_c00070{transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00070{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00070{transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.md9_c00070{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.mb9_c00070{transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);}
.ma6_c00070{transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);}
.m5d_c00070{transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m8b_c00070{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m37_c00070{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00070{transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);}
.mdc_c00070{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00070{transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);}
.m81_c00070{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.m62_c00070{transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);}
.mae_c00070{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.md0_c00070{transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);}
.md7_c00070{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.ma4_c00070{transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m68_c00070{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m79_c00070{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m87_c00070{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.md4_c00070{transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);}
.m95_c00070{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m94_c00070{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.mbf_c00070{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.mb5_c00070{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m90_c00070{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);}
.m35_c00070{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.mcc_c00070{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m88_c00070{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m55_c00070{transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m89_c00070{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.mc0_c00070{transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m42_c00070{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m8f_c00070{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.mb0_c00070{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);}
.m7b_c00070{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m8e_c00070{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m83_c00070{transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);}
.m5e_c00070{transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);}
.m5b_c00070{transform:matrix(0.228855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228855,0.000000,0.000000,0.250000,0,0);}
.md6_c00070{transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);}
.mb8_c00070{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m43_c00070{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m63_c00070{transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00070{transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);}
.mda_c00070{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.mb1_c00070{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m33_c00070{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);}
.md1_c00070{transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);}
.mad_c00070{transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);}
.m66_c00070{transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);}
.m4a_c00070{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.mb3_c00070{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);}
.m34_c00070{transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);}
.m65_c00070{transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);}
.mc7_c00070{transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.m5c_c00070{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.m26_c00070{transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);}
.mc9_c00070{transform:matrix(0.264885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264885,0.000000,0.000000,0.250000,0,0);}
.m5f_c00070{transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);}
.m59_c00070{transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);}
.mcd_c00070{transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);}
.mc4_c00070{transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);}
.mc8_c00070{transform:matrix(0.277825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277825,0.000000,0.000000,0.250000,0,0);}
.m60_c00070{transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);}
.mc3_c00070{transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);}
.mc1_c00070{transform:matrix(0.411445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00070{transform:matrix(0.441175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441175,0.000000,0.000000,0.250000,0,0);}
.me4_c00070{transform:matrix(0.448500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448500,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.538880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538880,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:0.000000px;}
.fc0_c00070{color:transparent;}
.fse_c00070{font-size:49.350000px;}
.fsa_c00070{font-size:50.400000px;}
.fs9_c00070{font-size:55.650000px;}
.fs7_c00070{font-size:57.750000px;}
.fsb_c00070{font-size:58.800000px;}
.fsd_c00070{font-size:59.850000px;}
.fs6_c00070{font-size:60.900000px;}
.fs5_c00070{font-size:61.950000px;}
.fs1_c00070{font-size:63.000000px;}
.fsf_c00070{font-size:64.050000px;}
.fsc_c00070{font-size:66.150000px;}
.fs3_c00070{font-size:67.200000px;}
.fs8_c00070{font-size:68.250000px;}
.fs2_c00070{font-size:70.350000px;}
.fs4_c00070{font-size:72.450000px;}
.fs0_c00070{font-size:78.750000px;}
.y0_c00070{bottom:0.000000px;}
.yda_c00070{bottom:26.263500px;}
.yd9_c00070{bottom:27.435000px;}
.yd8_c00070{bottom:28.302000px;}
.yd7_c00070{bottom:28.632000px;}
.yd6_c00070{bottom:29.715000px;}
.yd5_c00070{bottom:30.243000px;}
.yd4_c00070{bottom:43.575000px;}
.yd3_c00070{bottom:45.859500px;}
.yd2_c00070{bottom:48.043500px;}
.yd1_c00070{bottom:48.610500px;}
.yd0_c00070{bottom:59.803500px;}
.ycf_c00070{bottom:61.734000px;}
.yce_c00070{bottom:62.154000px;}
.ycd_c00070{bottom:62.859000px;}
.ycc_c00070{bottom:64.153500px;}
.ycb_c00070{bottom:64.990500px;}
.yca_c00070{bottom:66.156000px;}
.yc9_c00070{bottom:66.570000px;}
.yc8_c00070{bottom:67.234500px;}
.yc7_c00070{bottom:76.729500px;}
.yc6_c00070{bottom:77.758500px;}
.yc5_c00070{bottom:78.442500px;}
.yc4_c00070{bottom:79.465500px;}
.yc3_c00070{bottom:79.918500px;}
.yc2_c00070{bottom:81.736500px;}
.yc1_c00070{bottom:82.624500px;}
.yc0_c00070{bottom:83.976000px;}
.ybf_c00070{bottom:94.479000px;}
.ybe_c00070{bottom:95.517000px;}
.ybd_c00070{bottom:95.872500px;}
.ybc_c00070{bottom:96.927000px;}
.ybb_c00070{bottom:97.486500px;}
.yba_c00070{bottom:98.911500px;}
.yb9_c00070{bottom:100.143000px;}
.yb8_c00070{bottom:100.711500px;}
.yb7_c00070{bottom:110.779500px;}
.yb6_c00070{bottom:111.730500px;}
.yb5_c00070{bottom:112.764000px;}
.yb4_c00070{bottom:113.107500px;}
.yb3_c00070{bottom:113.472000px;}
.yb2_c00070{bottom:114.828000px;}
.yb1_c00070{bottom:115.083000px;}
.yb0_c00070{bottom:115.455000px;}
.yaf_c00070{bottom:116.101500px;}
.yae_c00070{bottom:129.339000px;}
.yad_c00070{bottom:130.282500px;}
.yac_c00070{bottom:130.714500px;}
.yab_c00070{bottom:131.176500px;}
.yaa_c00070{bottom:132.033000px;}
.ya9_c00070{bottom:132.537000px;}
.ya8_c00070{bottom:133.611000px;}
.ya7_c00070{bottom:134.617500px;}
.ya6_c00070{bottom:135.544500px;}
.ya5_c00070{bottom:144.532500px;}
.ya4_c00070{bottom:145.593000px;}
.ya3_c00070{bottom:146.542500px;}
.ya2_c00070{bottom:146.883000px;}
.ya1_c00070{bottom:148.150500px;}
.ya0_c00070{bottom:149.313000px;}
.y9f_c00070{bottom:149.634000px;}
.y9e_c00070{bottom:150.391500px;}
.y9d_c00070{bottom:162.700500px;}
.y9c_c00070{bottom:163.050000px;}
.y9b_c00070{bottom:163.944000px;}
.y9a_c00070{bottom:164.395500px;}
.y99_c00070{bottom:165.162000px;}
.y98_c00070{bottom:165.630000px;}
.y97_c00070{bottom:166.938000px;}
.y96_c00070{bottom:167.400000px;}
.y95_c00070{bottom:178.665000px;}
.y94_c00070{bottom:179.824500px;}
.y93_c00070{bottom:180.192000px;}
.y92_c00070{bottom:180.988500px;}
.y91_c00070{bottom:181.927500px;}
.y90_c00070{bottom:182.752500px;}
.y8f_c00070{bottom:183.601500px;}
.y8e_c00070{bottom:196.080000px;}
.y8d_c00070{bottom:199.575000px;}
.y8c_c00070{bottom:200.275500px;}
.y8b_c00070{bottom:201.423000px;}
.y8a_c00070{bottom:211.156500px;}
.y89_c00070{bottom:211.863000px;}
.y88_c00070{bottom:212.973000px;}
.y87_c00070{bottom:213.361500px;}
.y86_c00070{bottom:214.722000px;}
.y85_c00070{bottom:215.155500px;}
.y84_c00070{bottom:216.616500px;}
.y83_c00070{bottom:217.351500px;}
.y82_c00070{bottom:228.597000px;}
.y81_c00070{bottom:229.038000px;}
.y80_c00070{bottom:231.205500px;}
.y7f_c00070{bottom:232.612500px;}
.y7e_c00070{bottom:233.491500px;}
.y7d_c00070{bottom:233.854500px;}
.y7c_c00070{bottom:234.633000px;}
.y7b_c00070{bottom:246.139500px;}
.y7a_c00070{bottom:246.787500px;}
.y79_c00070{bottom:247.114500px;}
.y78_c00070{bottom:248.350500px;}
.y77_c00070{bottom:248.943000px;}
.y76_c00070{bottom:249.585000px;}
.y75_c00070{bottom:250.090500px;}
.y74_c00070{bottom:251.239500px;}
.y73_c00070{bottom:251.916000px;}
.y72_c00070{bottom:262.369500px;}
.y71_c00070{bottom:263.530500px;}
.y70_c00070{bottom:264.064500px;}
.y6f_c00070{bottom:265.306500px;}
.y6e_c00070{bottom:266.527500px;}
.y6d_c00070{bottom:267.498000px;}
.y6c_c00070{bottom:268.923000px;}
.y6b_c00070{bottom:279.865500px;}
.y6a_c00070{bottom:280.540500px;}
.y69_c00070{bottom:281.397000px;}
.y68_c00070{bottom:281.793000px;}
.y67_c00070{bottom:283.153500px;}
.y66_c00070{bottom:283.474500px;}
.y65_c00070{bottom:285.129000px;}
.y64_c00070{bottom:285.615000px;}
.y63_c00070{bottom:286.476000px;}
.y62_c00070{bottom:297.525000px;}
.y61_c00070{bottom:297.805500px;}
.y60_c00070{bottom:299.025000px;}
.y5f_c00070{bottom:300.618000px;}
.y5e_c00070{bottom:301.302000px;}
.y5d_c00070{bottom:302.533500px;}
.y5c_c00070{bottom:303.213000px;}
.y5b_c00070{bottom:315.331500px;}
.y5a_c00070{bottom:316.321500px;}
.y59_c00070{bottom:316.539000px;}
.y58_c00070{bottom:316.840500px;}
.y57_c00070{bottom:317.016000px;}
.y56_c00070{bottom:317.442000px;}
.y55_c00070{bottom:317.934000px;}
.y54_c00070{bottom:318.198000px;}
.y53_c00070{bottom:318.871500px;}
.y52_c00070{bottom:331.110000px;}
.y51_c00070{bottom:331.683000px;}
.y50_c00070{bottom:332.199000px;}
.y4f_c00070{bottom:332.587500px;}
.y4e_c00070{bottom:333.027000px;}
.y4d_c00070{bottom:333.540000px;}
.y4c_c00070{bottom:334.021500px;}
.y4b_c00070{bottom:334.260000px;}
.y4a_c00070{bottom:347.506500px;}
.y49_c00070{bottom:348.304500px;}
.y48_c00070{bottom:348.570000px;}
.y47_c00070{bottom:348.810000px;}
.y46_c00070{bottom:349.429500px;}
.y45_c00070{bottom:349.738500px;}
.y44_c00070{bottom:350.155500px;}
.y43_c00070{bottom:350.859000px;}
.y42_c00070{bottom:351.001500px;}
.y41_c00070{bottom:363.949500px;}
.y40_c00070{bottom:364.471500px;}
.y3f_c00070{bottom:365.947500px;}
.y3e_c00070{bottom:366.222000px;}
.y3d_c00070{bottom:366.912000px;}
.y3c_c00070{bottom:368.013000px;}
.y3b_c00070{bottom:380.659500px;}
.y3a_c00070{bottom:381.376500px;}
.y39_c00070{bottom:382.029000px;}
.y38_c00070{bottom:382.815000px;}
.y37_c00070{bottom:383.317500px;}
.y36_c00070{bottom:383.964000px;}
.y35_c00070{bottom:384.213000px;}
.y34_c00070{bottom:399.181500px;}
.y33_c00070{bottom:414.621000px;}
.y32_c00070{bottom:414.921000px;}
.y31_c00070{bottom:415.474500px;}
.y30_c00070{bottom:415.992000px;}
.y2f_c00070{bottom:416.610000px;}
.y2e_c00070{bottom:416.844000px;}
.y2d_c00070{bottom:417.292500px;}
.y2c_c00070{bottom:417.423000px;}
.y2b_c00070{bottom:432.711000px;}
.y2a_c00070{bottom:449.673000px;}
.y29_c00070{bottom:464.503500px;}
.y28_c00070{bottom:465.453000px;}
.y27_c00070{bottom:466.120500px;}
.y26_c00070{bottom:466.696500px;}
.y25_c00070{bottom:466.926000px;}
.y24_c00070{bottom:467.808000px;}
.y23_c00070{bottom:467.911500px;}
.y22_c00070{bottom:480.747000px;}
.y21_c00070{bottom:481.917000px;}
.y20_c00070{bottom:486.003000px;}
.y1f_c00070{bottom:498.532500px;}
.y1e_c00070{bottom:499.341000px;}
.y1d_c00070{bottom:499.651500px;}
.y1c_c00070{bottom:499.866000px;}
.y1b_c00070{bottom:500.797500px;}
.y1a_c00070{bottom:501.138000px;}
.y19_c00070{bottom:501.618000px;}
.y18_c00070{bottom:502.180500px;}
.y17_c00070{bottom:502.471500px;}
.y16_c00070{bottom:517.287000px;}
.y15_c00070{bottom:518.250000px;}
.y14_c00070{bottom:518.634000px;}
.y13_c00070{bottom:519.553500px;}
.y12_c00070{bottom:520.291500px;}
.y11_c00070{bottom:533.538000px;}
.y10_c00070{bottom:534.529500px;}
.yf_c00070{bottom:535.303500px;}
.ye_c00070{bottom:535.566000px;}
.yd_c00070{bottom:535.893000px;}
.yc_c00070{bottom:536.275500px;}
.yb_c00070{bottom:537.031500px;}
.ya_c00070{bottom:550.197000px;}
.y9_c00070{bottom:550.477500px;}
.y8_c00070{bottom:551.097000px;}
.y7_c00070{bottom:551.779500px;}
.y6_c00070{bottom:552.010500px;}
.y5_c00070{bottom:552.585000px;}
.y4_c00070{bottom:552.813000px;}
.y3_c00070{bottom:552.979500px;}
.y2_c00070{bottom:553.773000px;}
.y1_c00070{bottom:564.549000px;}
.h10_c00070{height:49.350000px;}
.hc_c00070{height:50.400000px;}
.hb_c00070{height:55.650000px;}
.h9_c00070{height:57.750000px;}
.hd_c00070{height:58.800000px;}
.hf_c00070{height:59.850000px;}
.h8_c00070{height:60.900000px;}
.h7_c00070{height:61.950000px;}
.h3_c00070{height:63.000000px;}
.h11_c00070{height:64.050000px;}
.he_c00070{height:66.150000px;}
.h5_c00070{height:67.200000px;}
.ha_c00070{height:68.250000px;}
.h4_c00070{height:70.350000px;}
.h6_c00070{height:72.450000px;}
.h2_c00070{height:78.750000px;}
.h1_c00070{height:612.000000px;}
.h0_c00070{height:612.300000px;}
.w0_c00070{width:368.820000px;}
.w1_c00070{width:369.000000px;}
.x0_c00070{left:0.000000px;}
.x3_c00070{left:26.545500px;}
.x15_c00070{left:27.687000px;}
.x79_c00070{left:28.942500px;}
.x1e_c00070{left:30.417000px;}
.x70_c00070{left:33.489000px;}
.x29_c00070{left:35.100000px;}
.x1f_c00070{left:39.004500px;}
.x2a_c00070{left:45.900000px;}
.x16_c00070{left:48.442500px;}
.x47_c00070{left:49.821000px;}
.x33_c00070{left:51.300000px;}
.x67_c00070{left:53.803500px;}
.x5a_c00070{left:58.860000px;}
.x50_c00070{left:59.971500px;}
.x5f_c00070{left:61.830000px;}
.x54_c00070{left:63.415500px;}
.x7f_c00070{left:64.851000px;}
.x71_c00070{left:67.501500px;}
.x6e_c00070{left:68.613000px;}
.x7a_c00070{left:70.453500px;}
.x6b_c00070{left:75.048000px;}
.x12_c00070{left:76.251000px;}
.x2e_c00070{left:79.792500px;}
.x4_c00070{left:83.268000px;}
.x63_c00070{left:85.467000px;}
.x72_c00070{left:87.042000px;}
.x17_c00070{left:88.672500px;}
.xc_c00070{left:90.379500px;}
.x48_c00070{left:93.570000px;}
.x5_c00070{left:95.145000px;}
.x3a_c00070{left:96.511500px;}
.x41_c00070{left:98.206500px;}
.x4a_c00070{left:99.763500px;}
.x2f_c00070{left:101.119500px;}
.x75_c00070{left:103.161000px;}
.x24_c00070{left:104.490000px;}
.x2b_c00070{left:106.110000px;}
.x6_c00070{left:111.391500px;}
.x20_c00070{left:112.447500px;}
.x77_c00070{left:114.751500px;}
.x7d_c00070{left:117.048000px;}
.x51_c00070{left:118.632000px;}
.x5e_c00070{left:119.911500px;}
.xd_c00070{left:122.238000px;}
.x6c_c00070{left:125.592000px;}
.x25_c00070{left:126.900000px;}
.x60_c00070{left:128.253000px;}
.x21_c00070{left:131.611500px;}
.x42_c00070{left:132.976500px;}
.x5b_c00070{left:134.026500px;}
.x3b_c00070{left:135.118500px;}
.x13_c00070{left:137.592000px;}
.x2c_c00070{left:139.320000px;}
.x18_c00070{left:147.246000px;}
.xe_c00070{left:149.464500px;}
.x52_c00070{left:151.213500px;}
.x7_c00070{left:152.442000px;}
.x30_c00070{left:157.275000px;}
.x43_c00070{left:158.671500px;}
.x1_c00070{left:162.270000px;}
.x34_c00070{left:163.350000px;}
.x3f_c00070{left:165.307500px;}
.x8_c00070{left:168.952500px;}
.x4b_c00070{left:170.284500px;}
.xf_c00070{left:171.301500px;}
.x65_c00070{left:172.578000px;}
.x22_c00070{left:179.671500px;}
.x6d_c00070{left:180.673500px;}
.x4c_c00070{left:183.775500px;}
.x58_c00070{left:185.176500px;}
.x7e_c00070{left:186.277500px;}
.x5c_c00070{left:190.095000px;}
.x26_c00070{left:191.160000px;}
.x3c_c00070{left:195.603000px;}
.x7b_c00070{left:197.250000px;}
.x35_c00070{left:203.040000px;}
.x31_c00070{left:204.255000px;}
.x4d_c00070{left:206.935500px;}
.x73_c00070{left:209.151000px;}
.x44_c00070{left:210.250500px;}
.x19_c00070{left:213.732000px;}
.x49_c00070{left:215.598000px;}
.x9_c00070{left:217.717500px;}
.x68_c00070{left:220.134000px;}
.x36_c00070{left:222.210000px;}
.x4e_c00070{left:223.690500px;}
.x14_c00070{left:227.425500px;}
.x1a_c00070{left:229.051500px;}
.x45_c00070{left:230.227500px;}
.x66_c00070{left:233.871000px;}
.x10_c00070{left:235.831500px;}
.x55_c00070{left:239.175000px;}
.x7c_c00070{left:240.529500px;}
.x2d_c00070{left:241.920000px;}
.x76_c00070{left:244.638000px;}
.x3d_c00070{left:245.811000px;}
.x37_c00070{left:248.130000px;}
.x1b_c00070{left:251.259000px;}
.x46_c00070{left:252.319500px;}
.x1d_c00070{left:253.522500px;}
.x32_c00070{left:254.526000px;}
.x6f_c00070{left:257.085000px;}
.xa_c00070{left:261.981000px;}
.x74_c00070{left:263.548500px;}
.x27_c00070{left:264.600000px;}
.x38_c00070{left:267.570000px;}
.x69_c00070{left:269.803500px;}
.x56_c00070{left:274.833000px;}
.x61_c00070{left:277.927500px;}
.xb_c00070{left:281.964000px;}
.x53_c00070{left:285.120000px;}
.x2_c00070{left:287.280000px;}
.x6a_c00070{left:289.246500px;}
.x5d_c00070{left:290.521500px;}
.x64_c00070{left:295.233000px;}
.x40_c00070{left:298.444500px;}
.x4f_c00070{left:299.877000px;}
.x3e_c00070{left:300.934500px;}
.x57_c00070{left:302.980500px;}
.x28_c00070{left:304.830000px;}
.x78_c00070{left:307.335000px;}
.x1c_c00070{left:308.964000px;}
.x62_c00070{left:310.054500px;}
.x59_c00070{left:312.906000px;}
.x23_c00070{left:314.395500px;}
.x11_c00070{left:318.459000px;}
.x39_c00070{left:319.680000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.fse_c00070{font-size:43.866667pt;}
.fsa_c00070{font-size:44.800000pt;}
.fs9_c00070{font-size:49.466667pt;}
.fs7_c00070{font-size:51.333333pt;}
.fsb_c00070{font-size:52.266667pt;}
.fsd_c00070{font-size:53.200000pt;}
.fs6_c00070{font-size:54.133333pt;}
.fs5_c00070{font-size:55.066667pt;}
.fs1_c00070{font-size:56.000000pt;}
.fsf_c00070{font-size:56.933333pt;}
.fsc_c00070{font-size:58.800000pt;}
.fs3_c00070{font-size:59.733333pt;}
.fs8_c00070{font-size:60.666667pt;}
.fs2_c00070{font-size:62.533333pt;}
.fs4_c00070{font-size:64.400000pt;}
.fs0_c00070{font-size:70.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.yda_c00070{bottom:23.345333pt;}
.yd9_c00070{bottom:24.386667pt;}
.yd8_c00070{bottom:25.157333pt;}
.yd7_c00070{bottom:25.450667pt;}
.yd6_c00070{bottom:26.413333pt;}
.yd5_c00070{bottom:26.882667pt;}
.yd4_c00070{bottom:38.733333pt;}
.yd3_c00070{bottom:40.764000pt;}
.yd2_c00070{bottom:42.705333pt;}
.yd1_c00070{bottom:43.209333pt;}
.yd0_c00070{bottom:53.158667pt;}
.ycf_c00070{bottom:54.874667pt;}
.yce_c00070{bottom:55.248000pt;}
.ycd_c00070{bottom:55.874667pt;}
.ycc_c00070{bottom:57.025333pt;}
.ycb_c00070{bottom:57.769333pt;}
.yca_c00070{bottom:58.805333pt;}
.yc9_c00070{bottom:59.173333pt;}
.yc8_c00070{bottom:59.764000pt;}
.yc7_c00070{bottom:68.204000pt;}
.yc6_c00070{bottom:69.118667pt;}
.yc5_c00070{bottom:69.726667pt;}
.yc4_c00070{bottom:70.636000pt;}
.yc3_c00070{bottom:71.038667pt;}
.yc2_c00070{bottom:72.654667pt;}
.yc1_c00070{bottom:73.444000pt;}
.yc0_c00070{bottom:74.645333pt;}
.ybf_c00070{bottom:83.981333pt;}
.ybe_c00070{bottom:84.904000pt;}
.ybd_c00070{bottom:85.220000pt;}
.ybc_c00070{bottom:86.157333pt;}
.ybb_c00070{bottom:86.654667pt;}
.yba_c00070{bottom:87.921333pt;}
.yb9_c00070{bottom:89.016000pt;}
.yb8_c00070{bottom:89.521333pt;}
.yb7_c00070{bottom:98.470667pt;}
.yb6_c00070{bottom:99.316000pt;}
.yb5_c00070{bottom:100.234667pt;}
.yb4_c00070{bottom:100.540000pt;}
.yb3_c00070{bottom:100.864000pt;}
.yb2_c00070{bottom:102.069333pt;}
.yb1_c00070{bottom:102.296000pt;}
.yb0_c00070{bottom:102.626667pt;}
.yaf_c00070{bottom:103.201333pt;}
.yae_c00070{bottom:114.968000pt;}
.yad_c00070{bottom:115.806667pt;}
.yac_c00070{bottom:116.190667pt;}
.yab_c00070{bottom:116.601333pt;}
.yaa_c00070{bottom:117.362667pt;}
.ya9_c00070{bottom:117.810667pt;}
.ya8_c00070{bottom:118.765333pt;}
.ya7_c00070{bottom:119.660000pt;}
.ya6_c00070{bottom:120.484000pt;}
.ya5_c00070{bottom:128.473333pt;}
.ya4_c00070{bottom:129.416000pt;}
.ya3_c00070{bottom:130.260000pt;}
.ya2_c00070{bottom:130.562667pt;}
.ya1_c00070{bottom:131.689333pt;}
.ya0_c00070{bottom:132.722667pt;}
.y9f_c00070{bottom:133.008000pt;}
.y9e_c00070{bottom:133.681333pt;}
.y9d_c00070{bottom:144.622667pt;}
.y9c_c00070{bottom:144.933333pt;}
.y9b_c00070{bottom:145.728000pt;}
.y9a_c00070{bottom:146.129333pt;}
.y99_c00070{bottom:146.810667pt;}
.y98_c00070{bottom:147.226667pt;}
.y97_c00070{bottom:148.389333pt;}
.y96_c00070{bottom:148.800000pt;}
.y95_c00070{bottom:158.813333pt;}
.y94_c00070{bottom:159.844000pt;}
.y93_c00070{bottom:160.170667pt;}
.y92_c00070{bottom:160.878667pt;}
.y91_c00070{bottom:161.713333pt;}
.y90_c00070{bottom:162.446667pt;}
.y8f_c00070{bottom:163.201333pt;}
.y8e_c00070{bottom:174.293333pt;}
.y8d_c00070{bottom:177.400000pt;}
.y8c_c00070{bottom:178.022667pt;}
.y8b_c00070{bottom:179.042667pt;}
.y8a_c00070{bottom:187.694667pt;}
.y89_c00070{bottom:188.322667pt;}
.y88_c00070{bottom:189.309333pt;}
.y87_c00070{bottom:189.654667pt;}
.y86_c00070{bottom:190.864000pt;}
.y85_c00070{bottom:191.249333pt;}
.y84_c00070{bottom:192.548000pt;}
.y83_c00070{bottom:193.201333pt;}
.y82_c00070{bottom:203.197333pt;}
.y81_c00070{bottom:203.589333pt;}
.y80_c00070{bottom:205.516000pt;}
.y7f_c00070{bottom:206.766667pt;}
.y7e_c00070{bottom:207.548000pt;}
.y7d_c00070{bottom:207.870667pt;}
.y7c_c00070{bottom:208.562667pt;}
.y7b_c00070{bottom:218.790667pt;}
.y7a_c00070{bottom:219.366667pt;}
.y79_c00070{bottom:219.657333pt;}
.y78_c00070{bottom:220.756000pt;}
.y77_c00070{bottom:221.282667pt;}
.y76_c00070{bottom:221.853333pt;}
.y75_c00070{bottom:222.302667pt;}
.y74_c00070{bottom:223.324000pt;}
.y73_c00070{bottom:223.925333pt;}
.y72_c00070{bottom:233.217333pt;}
.y71_c00070{bottom:234.249333pt;}
.y70_c00070{bottom:234.724000pt;}
.y6f_c00070{bottom:235.828000pt;}
.y6e_c00070{bottom:236.913333pt;}
.y6d_c00070{bottom:237.776000pt;}
.y6c_c00070{bottom:239.042667pt;}
.y6b_c00070{bottom:248.769333pt;}
.y6a_c00070{bottom:249.369333pt;}
.y69_c00070{bottom:250.130667pt;}
.y68_c00070{bottom:250.482667pt;}
.y67_c00070{bottom:251.692000pt;}
.y66_c00070{bottom:251.977333pt;}
.y65_c00070{bottom:253.448000pt;}
.y64_c00070{bottom:253.880000pt;}
.y63_c00070{bottom:254.645333pt;}
.y62_c00070{bottom:264.466667pt;}
.y61_c00070{bottom:264.716000pt;}
.y60_c00070{bottom:265.800000pt;}
.y5f_c00070{bottom:267.216000pt;}
.y5e_c00070{bottom:267.824000pt;}
.y5d_c00070{bottom:268.918667pt;}
.y5c_c00070{bottom:269.522667pt;}
.y5b_c00070{bottom:280.294667pt;}
.y5a_c00070{bottom:281.174667pt;}
.y59_c00070{bottom:281.368000pt;}
.y58_c00070{bottom:281.636000pt;}
.y57_c00070{bottom:281.792000pt;}
.y56_c00070{bottom:282.170667pt;}
.y55_c00070{bottom:282.608000pt;}
.y54_c00070{bottom:282.842667pt;}
.y53_c00070{bottom:283.441333pt;}
.y52_c00070{bottom:294.320000pt;}
.y51_c00070{bottom:294.829333pt;}
.y50_c00070{bottom:295.288000pt;}
.y4f_c00070{bottom:295.633333pt;}
.y4e_c00070{bottom:296.024000pt;}
.y4d_c00070{bottom:296.480000pt;}
.y4c_c00070{bottom:296.908000pt;}
.y4b_c00070{bottom:297.120000pt;}
.y4a_c00070{bottom:308.894667pt;}
.y49_c00070{bottom:309.604000pt;}
.y48_c00070{bottom:309.840000pt;}
.y47_c00070{bottom:310.053333pt;}
.y46_c00070{bottom:310.604000pt;}
.y45_c00070{bottom:310.878667pt;}
.y44_c00070{bottom:311.249333pt;}
.y43_c00070{bottom:311.874667pt;}
.y42_c00070{bottom:312.001333pt;}
.y41_c00070{bottom:323.510667pt;}
.y40_c00070{bottom:323.974667pt;}
.y3f_c00070{bottom:325.286667pt;}
.y3e_c00070{bottom:325.530667pt;}
.y3d_c00070{bottom:326.144000pt;}
.y3c_c00070{bottom:327.122667pt;}
.y3b_c00070{bottom:338.364000pt;}
.y3a_c00070{bottom:339.001333pt;}
.y39_c00070{bottom:339.581333pt;}
.y38_c00070{bottom:340.280000pt;}
.y37_c00070{bottom:340.726667pt;}
.y36_c00070{bottom:341.301333pt;}
.y35_c00070{bottom:341.522667pt;}
.y34_c00070{bottom:354.828000pt;}
.y33_c00070{bottom:368.552000pt;}
.y32_c00070{bottom:368.818667pt;}
.y31_c00070{bottom:369.310667pt;}
.y30_c00070{bottom:369.770667pt;}
.y2f_c00070{bottom:370.320000pt;}
.y2e_c00070{bottom:370.528000pt;}
.y2d_c00070{bottom:370.926667pt;}
.y2c_c00070{bottom:371.042667pt;}
.y2b_c00070{bottom:384.632000pt;}
.y2a_c00070{bottom:399.709333pt;}
.y29_c00070{bottom:412.892000pt;}
.y28_c00070{bottom:413.736000pt;}
.y27_c00070{bottom:414.329333pt;}
.y26_c00070{bottom:414.841333pt;}
.y25_c00070{bottom:415.045333pt;}
.y24_c00070{bottom:415.829333pt;}
.y23_c00070{bottom:415.921333pt;}
.y22_c00070{bottom:427.330667pt;}
.y21_c00070{bottom:428.370667pt;}
.y20_c00070{bottom:432.002667pt;}
.y1f_c00070{bottom:443.140000pt;}
.y1e_c00070{bottom:443.858667pt;}
.y1d_c00070{bottom:444.134667pt;}
.y1c_c00070{bottom:444.325333pt;}
.y1b_c00070{bottom:445.153333pt;}
.y1a_c00070{bottom:445.456000pt;}
.y19_c00070{bottom:445.882667pt;}
.y18_c00070{bottom:446.382667pt;}
.y17_c00070{bottom:446.641333pt;}
.y16_c00070{bottom:459.810667pt;}
.y15_c00070{bottom:460.666667pt;}
.y14_c00070{bottom:461.008000pt;}
.y13_c00070{bottom:461.825333pt;}
.y12_c00070{bottom:462.481333pt;}
.y11_c00070{bottom:474.256000pt;}
.y10_c00070{bottom:475.137333pt;}
.yf_c00070{bottom:475.825333pt;}
.ye_c00070{bottom:476.058667pt;}
.yd_c00070{bottom:476.349333pt;}
.yc_c00070{bottom:476.689333pt;}
.yb_c00070{bottom:477.361333pt;}
.ya_c00070{bottom:489.064000pt;}
.y9_c00070{bottom:489.313333pt;}
.y8_c00070{bottom:489.864000pt;}
.y7_c00070{bottom:490.470667pt;}
.y6_c00070{bottom:490.676000pt;}
.y5_c00070{bottom:491.186667pt;}
.y4_c00070{bottom:491.389333pt;}
.y3_c00070{bottom:491.537333pt;}
.y2_c00070{bottom:492.242667pt;}
.y1_c00070{bottom:501.821333pt;}
.h10_c00070{height:43.866667pt;}
.hc_c00070{height:44.800000pt;}
.hb_c00070{height:49.466667pt;}
.h9_c00070{height:51.333333pt;}
.hd_c00070{height:52.266667pt;}
.hf_c00070{height:53.200000pt;}
.h8_c00070{height:54.133333pt;}
.h7_c00070{height:55.066667pt;}
.h3_c00070{height:56.000000pt;}
.h11_c00070{height:56.933333pt;}
.he_c00070{height:58.800000pt;}
.h5_c00070{height:59.733333pt;}
.ha_c00070{height:60.666667pt;}
.h4_c00070{height:62.533333pt;}
.h6_c00070{height:64.400000pt;}
.h2_c00070{height:70.000000pt;}
.h1_c00070{height:544.000000pt;}
.h0_c00070{height:544.266667pt;}
.w0_c00070{width:327.840000pt;}
.w1_c00070{width:328.000000pt;}
.x0_c00070{left:0.000000pt;}
.x3_c00070{left:23.596000pt;}
.x15_c00070{left:24.610667pt;}
.x79_c00070{left:25.726667pt;}
.x1e_c00070{left:27.037333pt;}
.x70_c00070{left:29.768000pt;}
.x29_c00070{left:31.200000pt;}
.x1f_c00070{left:34.670667pt;}
.x2a_c00070{left:40.800000pt;}
.x16_c00070{left:43.060000pt;}
.x47_c00070{left:44.285333pt;}
.x33_c00070{left:45.600000pt;}
.x67_c00070{left:47.825333pt;}
.x5a_c00070{left:52.320000pt;}
.x50_c00070{left:53.308000pt;}
.x5f_c00070{left:54.960000pt;}
.x54_c00070{left:56.369333pt;}
.x7f_c00070{left:57.645333pt;}
.x71_c00070{left:60.001333pt;}
.x6e_c00070{left:60.989333pt;}
.x7a_c00070{left:62.625333pt;}
.x6b_c00070{left:66.709333pt;}
.x12_c00070{left:67.778667pt;}
.x2e_c00070{left:70.926667pt;}
.x4_c00070{left:74.016000pt;}
.x63_c00070{left:75.970667pt;}
.x72_c00070{left:77.370667pt;}
.x17_c00070{left:78.820000pt;}
.xc_c00070{left:80.337333pt;}
.x48_c00070{left:83.173333pt;}
.x5_c00070{left:84.573333pt;}
.x3a_c00070{left:85.788000pt;}
.x41_c00070{left:87.294667pt;}
.x4a_c00070{left:88.678667pt;}
.x2f_c00070{left:89.884000pt;}
.x75_c00070{left:91.698667pt;}
.x24_c00070{left:92.880000pt;}
.x2b_c00070{left:94.320000pt;}
.x6_c00070{left:99.014667pt;}
.x20_c00070{left:99.953333pt;}
.x77_c00070{left:102.001333pt;}
.x7d_c00070{left:104.042667pt;}
.x51_c00070{left:105.450667pt;}
.x5e_c00070{left:106.588000pt;}
.xd_c00070{left:108.656000pt;}
.x6c_c00070{left:111.637333pt;}
.x25_c00070{left:112.800000pt;}
.x60_c00070{left:114.002667pt;}
.x21_c00070{left:116.988000pt;}
.x42_c00070{left:118.201333pt;}
.x5b_c00070{left:119.134667pt;}
.x3b_c00070{left:120.105333pt;}
.x13_c00070{left:122.304000pt;}
.x2c_c00070{left:123.840000pt;}
.x18_c00070{left:130.885333pt;}
.xe_c00070{left:132.857333pt;}
.x52_c00070{left:134.412000pt;}
.x7_c00070{left:135.504000pt;}
.x30_c00070{left:139.800000pt;}
.x43_c00070{left:141.041333pt;}
.x1_c00070{left:144.240000pt;}
.x34_c00070{left:145.200000pt;}
.x3f_c00070{left:146.940000pt;}
.x8_c00070{left:150.180000pt;}
.x4b_c00070{left:151.364000pt;}
.xf_c00070{left:152.268000pt;}
.x65_c00070{left:153.402667pt;}
.x22_c00070{left:159.708000pt;}
.x6d_c00070{left:160.598667pt;}
.x4c_c00070{left:163.356000pt;}
.x58_c00070{left:164.601333pt;}
.x7e_c00070{left:165.580000pt;}
.x5c_c00070{left:168.973333pt;}
.x26_c00070{left:169.920000pt;}
.x3c_c00070{left:173.869333pt;}
.x7b_c00070{left:175.333333pt;}
.x35_c00070{left:180.480000pt;}
.x31_c00070{left:181.560000pt;}
.x4d_c00070{left:183.942667pt;}
.x73_c00070{left:185.912000pt;}
.x44_c00070{left:186.889333pt;}
.x19_c00070{left:189.984000pt;}
.x49_c00070{left:191.642667pt;}
.x9_c00070{left:193.526667pt;}
.x68_c00070{left:195.674667pt;}
.x36_c00070{left:197.520000pt;}
.x4e_c00070{left:198.836000pt;}
.x14_c00070{left:202.156000pt;}
.x1a_c00070{left:203.601333pt;}
.x45_c00070{left:204.646667pt;}
.x66_c00070{left:207.885333pt;}
.x10_c00070{left:209.628000pt;}
.x55_c00070{left:212.600000pt;}
.x7c_c00070{left:213.804000pt;}
.x2d_c00070{left:215.040000pt;}
.x76_c00070{left:217.456000pt;}
.x3d_c00070{left:218.498667pt;}
.x37_c00070{left:220.560000pt;}
.x1b_c00070{left:223.341333pt;}
.x46_c00070{left:224.284000pt;}
.x1d_c00070{left:225.353333pt;}
.x32_c00070{left:226.245333pt;}
.x6f_c00070{left:228.520000pt;}
.xa_c00070{left:232.872000pt;}
.x74_c00070{left:234.265333pt;}
.x27_c00070{left:235.200000pt;}
.x38_c00070{left:237.840000pt;}
.x69_c00070{left:239.825333pt;}
.x56_c00070{left:244.296000pt;}
.x61_c00070{left:247.046667pt;}
.xb_c00070{left:250.634667pt;}
.x53_c00070{left:253.440000pt;}
.x2_c00070{left:255.360000pt;}
.x6a_c00070{left:257.108000pt;}
.x5d_c00070{left:258.241333pt;}
.x64_c00070{left:262.429333pt;}
.x40_c00070{left:265.284000pt;}
.x4f_c00070{left:266.557333pt;}
.x3e_c00070{left:267.497333pt;}
.x57_c00070{left:269.316000pt;}
.x28_c00070{left:270.960000pt;}
.x78_c00070{left:273.186667pt;}
.x1c_c00070{left:274.634667pt;}
.x62_c00070{left:275.604000pt;}
.x59_c00070{left:278.138667pt;}
.x23_c00070{left:279.462667pt;}
.x11_c00070{left:283.074667pt;}
.x39_c00070{left:284.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00071 {
    display:none;
  }
  .loading-indicator_c00071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00071 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00071 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00071" -> "#page-container .classname_c00071")
 */
.pf_c00071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00071 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00071 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00071 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00071 {overflow:visible;}
  }
}
.c_c00071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00071 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00071:after { /* webkit #35443 */
  content: '';
}
.t_c00071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00071 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00071 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00071 { /* info for Javascript */
  display:none;
}
.l_c00071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00071:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00071 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00071.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.104780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104780,0.000000,0.000000,0.250000,0,0);}
.mcb_c00071{transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133910,0.000000,0.000000,0.250000,0,0);}
.mec_c00071{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.mdd_c00071{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.ma0_c00071{transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);}
.m6e_c00071{transform:matrix(0.146559,-0.001759,0.003000,0.249982,0,0);-ms-transform:matrix(0.146559,-0.001759,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146559,-0.001759,0.003000,0.249982,0,0);}
.m8f_c00071{transform:matrix(0.147134,-0.001766,0.003000,0.249982,0,0);-ms-transform:matrix(0.147134,-0.001766,0.003000,0.249982,0,0);-webkit-transform:matrix(0.147134,-0.001766,0.003000,0.249982,0,0);}
.m8c_c00071{transform:matrix(0.150109,-0.001801,0.003000,0.249982,0,0);-ms-transform:matrix(0.150109,-0.001801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150109,-0.001801,0.003000,0.249982,0,0);}
.ma2_c00071{transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);}
.m97_c00071{transform:matrix(0.152219,-0.001827,0.003000,0.249982,0,0);-ms-transform:matrix(0.152219,-0.001827,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152219,-0.001827,0.003000,0.249982,0,0);}
.me1_c00071{transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);}
.ma5_c00071{transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);}
.mc9_c00071{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.mc7_c00071{transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);}
.m86_c00071{transform:matrix(0.154514,-0.001854,0.003000,0.249982,0,0);-ms-transform:matrix(0.154514,-0.001854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154514,-0.001854,0.003000,0.249982,0,0);}
.m94_c00071{transform:matrix(0.155444,-0.001865,0.003000,0.249982,0,0);-ms-transform:matrix(0.155444,-0.001865,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155444,-0.001865,0.003000,0.249982,0,0);}
.m61_c00071{transform:matrix(0.157039,-0.001884,0.003000,0.249982,0,0);-ms-transform:matrix(0.157039,-0.001884,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157039,-0.001884,0.003000,0.249982,0,0);}
.me3_c00071{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m35_c00071{transform:matrix(0.157714,-0.001893,0.003000,0.249982,0,0);-ms-transform:matrix(0.157714,-0.001893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157714,-0.001893,0.003000,0.249982,0,0);}
.m48_c00071{transform:matrix(0.158944,-0.001907,0.003000,0.249982,0,0);-ms-transform:matrix(0.158944,-0.001907,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158944,-0.001907,0.003000,0.249982,0,0);}
.m59_c00071{transform:matrix(0.159424,-0.001913,0.003000,0.249982,0,0);-ms-transform:matrix(0.159424,-0.001913,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159424,-0.001913,0.003000,0.249982,0,0);}
.m56_c00071{transform:matrix(0.160538,-0.001926,0.003000,0.249982,0,0);-ms-transform:matrix(0.160538,-0.001926,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160538,-0.001926,0.003000,0.249982,0,0);}
.m7c_c00071{transform:matrix(0.160863,-0.001930,0.003000,0.249982,0,0);-ms-transform:matrix(0.160863,-0.001930,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160863,-0.001930,0.003000,0.249982,0,0);}
.m93_c00071{transform:matrix(0.160953,-0.001931,0.003000,0.249982,0,0);-ms-transform:matrix(0.160953,-0.001931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160953,-0.001931,0.003000,0.249982,0,0);}
.ma_c00071{transform:matrix(0.162548,-0.001951,0.003000,0.249982,0,0);-ms-transform:matrix(0.162548,-0.001951,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162548,-0.001951,0.003000,0.249982,0,0);}
.mf1_c00071{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m65_c00071{transform:matrix(0.162983,-0.001956,0.003000,0.249982,0,0);-ms-transform:matrix(0.162983,-0.001956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162983,-0.001956,0.003000,0.249982,0,0);}
.m46_c00071{transform:matrix(0.163213,-0.001959,0.003000,0.249982,0,0);-ms-transform:matrix(0.163213,-0.001959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163213,-0.001959,0.003000,0.249982,0,0);}
.m1a_c00071{transform:matrix(0.163258,-0.001959,0.003000,0.249982,0,0);-ms-transform:matrix(0.163258,-0.001959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163258,-0.001959,0.003000,0.249982,0,0);}
.mc2_c00071{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.mcd_c00071{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.mef_c00071{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m74_c00071{transform:matrix(0.165328,-0.001984,0.003000,0.249982,0,0);-ms-transform:matrix(0.165328,-0.001984,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165328,-0.001984,0.003000,0.249982,0,0);}
.m42_c00071{transform:matrix(0.165528,-0.001986,0.003000,0.249982,0,0);-ms-transform:matrix(0.165528,-0.001986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165528,-0.001986,0.003000,0.249982,0,0);}
.ma3_c00071{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m82_c00071{transform:matrix(0.168033,-0.002016,0.003000,0.249982,0,0);-ms-transform:matrix(0.168033,-0.002016,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168033,-0.002016,0.003000,0.249982,0,0);}
.me5_c00071{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00071{transform:matrix(0.168533,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168533,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168533,-0.002022,0.003000,0.249982,0,0);}
.m21_c00071{transform:matrix(0.168618,-0.002023,0.003000,0.249982,0,0);-ms-transform:matrix(0.168618,-0.002023,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168618,-0.002023,0.003000,0.249982,0,0);}
.me_c00071{transform:matrix(0.168648,-0.002024,0.003000,0.249982,0,0);-ms-transform:matrix(0.168648,-0.002024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168648,-0.002024,0.003000,0.249982,0,0);}
.m7d_c00071{transform:matrix(0.168908,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168908,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168908,-0.002027,0.003000,0.249982,0,0);}
.m90_c00071{transform:matrix(0.168933,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168933,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168933,-0.002027,0.003000,0.249982,0,0);}
.m22_c00071{transform:matrix(0.169013,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.169013,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169013,-0.002028,0.003000,0.249982,0,0);}
.m6c_c00071{transform:matrix(0.169033,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.169033,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169033,-0.002028,0.003000,0.249982,0,0);}
.m2b_c00071{transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);-ms-transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);}
.m5f_c00071{transform:matrix(0.170013,-0.002040,0.003000,0.249982,0,0);-ms-transform:matrix(0.170013,-0.002040,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170013,-0.002040,0.003000,0.249982,0,0);}
.m2_c00071{transform:matrix(0.170463,-0.002046,0.003000,0.249982,0,0);-ms-transform:matrix(0.170463,-0.002046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170463,-0.002046,0.003000,0.249982,0,0);}
.m6a_c00071{transform:matrix(0.171073,-0.002053,0.003000,0.249982,0,0);-ms-transform:matrix(0.171073,-0.002053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171073,-0.002053,0.003000,0.249982,0,0);}
.m53_c00071{transform:matrix(0.171618,-0.002059,0.003000,0.249982,0,0);-ms-transform:matrix(0.171618,-0.002059,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171618,-0.002059,0.003000,0.249982,0,0);}
.m1f_c00071{transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);-ms-transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);}
.md1_c00071{transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);}
.m91_c00071{transform:matrix(0.172113,-0.002065,0.003000,0.249982,0,0);-ms-transform:matrix(0.172113,-0.002065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172113,-0.002065,0.003000,0.249982,0,0);}
.m8e_c00071{transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);-ms-transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);}
.m9b_c00071{transform:matrix(0.172498,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172498,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172498,-0.002070,0.003000,0.249982,0,0);}
.med_c00071{transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);}
.mc3_c00071{transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);}
.m62_c00071{transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);}
.mb7_c00071{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m7e_c00071{transform:matrix(0.173573,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173573,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173573,-0.002083,0.003000,0.249982,0,0);}
.m67_c00071{transform:matrix(0.173687,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173687,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173687,-0.002084,0.003000,0.249982,0,0);}
.m45_c00071{transform:matrix(0.173797,-0.002086,0.003000,0.249982,0,0);-ms-transform:matrix(0.173797,-0.002086,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173797,-0.002086,0.003000,0.249982,0,0);}
.md8_c00071{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.ma6_c00071{transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);}
.m84_c00071{transform:matrix(0.174132,-0.002090,0.003000,0.249982,0,0);-ms-transform:matrix(0.174132,-0.002090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174132,-0.002090,0.003000,0.249982,0,0);}
.me9_c00071{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.m77_c00071{transform:matrix(0.174637,-0.002096,0.003000,0.249982,0,0);-ms-transform:matrix(0.174637,-0.002096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174637,-0.002096,0.003000,0.249982,0,0);}
.m2a_c00071{transform:matrix(0.174662,-0.002096,0.003000,0.249982,0,0);-ms-transform:matrix(0.174662,-0.002096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174662,-0.002096,0.003000,0.249982,0,0);}
.m98_c00071{transform:matrix(0.174697,-0.002096,0.003000,0.249982,0,0);-ms-transform:matrix(0.174697,-0.002096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174697,-0.002096,0.003000,0.249982,0,0);}
.m11_c00071{transform:matrix(0.175422,-0.002105,0.003000,0.249982,0,0);-ms-transform:matrix(0.175422,-0.002105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175422,-0.002105,0.003000,0.249982,0,0);}
.m80_c00071{transform:matrix(0.175612,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175612,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175612,-0.002107,0.003000,0.249982,0,0);}
.mf2_c00071{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.mce_c00071{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.175842,-0.002110,0.003000,0.249982,0,0);-ms-transform:matrix(0.175842,-0.002110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175842,-0.002110,0.003000,0.249982,0,0);}
.m33_c00071{transform:matrix(0.175942,-0.002111,0.003000,0.249982,0,0);-ms-transform:matrix(0.175942,-0.002111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175942,-0.002111,0.003000,0.249982,0,0);}
.mcc_c00071{transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.176947,-0.002123,0.003000,0.249982,0,0);-ms-transform:matrix(0.176947,-0.002123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176947,-0.002123,0.003000,0.249982,0,0);}
.mb3_c00071{transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);}
.m37_c00071{transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);}
.m71_c00071{transform:matrix(0.177677,-0.002132,0.003000,0.249982,0,0);-ms-transform:matrix(0.177677,-0.002132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177677,-0.002132,0.003000,0.249982,0,0);}
.m3b_c00071{transform:matrix(0.177857,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177857,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177857,-0.002134,0.003000,0.249982,0,0);}
.m1e_c00071{transform:matrix(0.178107,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178107,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178107,-0.002137,0.003000,0.249982,0,0);}
.md4_c00071{transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);}
.m27_c00071{transform:matrix(0.178567,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178567,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178567,-0.002143,0.003000,0.249982,0,0);}
.m63_c00071{transform:matrix(0.179012,-0.002148,0.003000,0.249982,0,0);-ms-transform:matrix(0.179012,-0.002148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179012,-0.002148,0.003000,0.249982,0,0);}
.me0_c00071{transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);}
.m66_c00071{transform:matrix(0.179227,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179227,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179227,-0.002151,0.003000,0.249982,0,0);}
.m5d_c00071{transform:matrix(0.179367,-0.002152,0.003000,0.249982,0,0);-ms-transform:matrix(0.179367,-0.002152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179367,-0.002152,0.003000,0.249982,0,0);}
.m3a_c00071{transform:matrix(0.179897,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179897,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179897,-0.002159,0.003000,0.249982,0,0);}
.m57_c00071{transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);}
.mb0_c00071{transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);}
.mde_c00071{transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);}
.mbf_c00071{transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);}
.m40_c00071{transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);-ms-transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);}
.m8b_c00071{transform:matrix(0.182447,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182447,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182447,-0.002189,0.003000,0.249982,0,0);}
.m5e_c00071{transform:matrix(0.182837,-0.002194,0.003000,0.249982,0,0);-ms-transform:matrix(0.182837,-0.002194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182837,-0.002194,0.003000,0.249982,0,0);}
.mb1_c00071{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m15_c00071{transform:matrix(0.183592,-0.002203,0.003000,0.249982,0,0);-ms-transform:matrix(0.183592,-0.002203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183592,-0.002203,0.003000,0.249982,0,0);}
.m73_c00071{transform:matrix(0.183817,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183817,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183817,-0.002206,0.003000,0.249982,0,0);}
.ma4_c00071{transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);}
.m5c_c00071{transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);}
.m60_c00071{transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);}
.mdb_c00071{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.mc5_c00071{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m6f_c00071{transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);}
.m24_c00071{transform:matrix(0.185532,-0.002226,0.003000,0.249982,0,0);-ms-transform:matrix(0.185532,-0.002226,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185532,-0.002226,0.003000,0.249982,0,0);}
.mae_c00071{transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);}
.m47_c00071{transform:matrix(0.185907,-0.002231,0.003000,0.249982,0,0);-ms-transform:matrix(0.185907,-0.002231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185907,-0.002231,0.003000,0.249982,0,0);}
.m76_c00071{transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);-ms-transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);}
.m8_c00071{transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);}
.m8a_c00071{transform:matrix(0.187052,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187052,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187052,-0.002245,0.003000,0.249982,0,0);}
.mc_c00071{transform:matrix(0.187841,-0.002254,0.003000,0.249982,0,0);-ms-transform:matrix(0.187841,-0.002254,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187841,-0.002254,0.003000,0.249982,0,0);}
.m92_c00071{transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);}
.m28_c00071{transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);-ms-transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);}
.m1c_c00071{transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);-ms-transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);}
.m13_c00071{transform:matrix(0.188331,-0.002260,0.003000,0.249982,0,0);-ms-transform:matrix(0.188331,-0.002260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188331,-0.002260,0.003000,0.249982,0,0);}
.m20_c00071{transform:matrix(0.188476,-0.002262,0.003000,0.249982,0,0);-ms-transform:matrix(0.188476,-0.002262,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188476,-0.002262,0.003000,0.249982,0,0);}
.md_c00071{transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);}
.m29_c00071{transform:matrix(0.189196,-0.002270,0.003000,0.249982,0,0);-ms-transform:matrix(0.189196,-0.002270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189196,-0.002270,0.003000,0.249982,0,0);}
.m43_c00071{transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);}
.m39_c00071{transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);}
.m51_c00071{transform:matrix(0.189586,-0.002275,0.003000,0.249982,0,0);-ms-transform:matrix(0.189586,-0.002275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189586,-0.002275,0.003000,0.249982,0,0);}
.m3f_c00071{transform:matrix(0.190026,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.190026,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190026,-0.002280,0.003000,0.249982,0,0);}
.m4a_c00071{transform:matrix(0.190126,-0.002282,0.003000,0.249982,0,0);-ms-transform:matrix(0.190126,-0.002282,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190126,-0.002282,0.003000,0.249982,0,0);}
.mb9_c00071{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.mf0_c00071{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m4c_c00071{transform:matrix(0.191031,-0.002292,0.003000,0.249982,0,0);-ms-transform:matrix(0.191031,-0.002292,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191031,-0.002292,0.003000,0.249982,0,0);}
.m7a_c00071{transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);}
.m5_c00071{transform:matrix(0.191486,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191486,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191486,-0.002298,0.003000,0.249982,0,0);}
.m38_c00071{transform:matrix(0.191641,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191641,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191641,-0.002300,0.003000,0.249982,0,0);}
.m25_c00071{transform:matrix(0.191866,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191866,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191866,-0.002302,0.003000,0.249982,0,0);}
.mb8_c00071{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m30_c00071{transform:matrix(0.192566,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192566,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192566,-0.002311,0.003000,0.249982,0,0);}
.m4f_c00071{transform:matrix(0.192761,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192761,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192761,-0.002313,0.003000,0.249982,0,0);}
.m49_c00071{transform:matrix(0.192786,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192786,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192786,-0.002313,0.003000,0.249982,0,0);}
.m36_c00071{transform:matrix(0.193081,-0.002317,0.003000,0.249982,0,0);-ms-transform:matrix(0.193081,-0.002317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193081,-0.002317,0.003000,0.249982,0,0);}
.ma1_c00071{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.mab_c00071{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.193451,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193451,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193451,-0.002321,0.003000,0.249982,0,0);}
.m64_c00071{transform:matrix(0.193751,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193751,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193751,-0.002325,0.003000,0.249982,0,0);}
.md9_c00071{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m50_c00071{transform:matrix(0.193851,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193851,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193851,-0.002326,0.003000,0.249982,0,0);}
.m44_c00071{transform:matrix(0.193876,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193876,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193876,-0.002327,0.003000,0.249982,0,0);}
.m10_c00071{transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);-ms-transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);}
.m69_c00071{transform:matrix(0.194061,-0.002329,0.003000,0.249982,0,0);-ms-transform:matrix(0.194061,-0.002329,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194061,-0.002329,0.003000,0.249982,0,0);}
.m41_c00071{transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);}
.m5b_c00071{transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);}
.m75_c00071{transform:matrix(0.194711,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194711,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194711,-0.002337,0.003000,0.249982,0,0);}
.me6_c00071{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00071{transform:matrix(0.194826,-0.002338,0.003000,0.249982,0,0);-ms-transform:matrix(0.194826,-0.002338,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194826,-0.002338,0.003000,0.249982,0,0);}
.m6_c00071{transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);}
.m6b_c00071{transform:matrix(0.195256,-0.002343,0.003000,0.249982,0,0);-ms-transform:matrix(0.195256,-0.002343,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195256,-0.002343,0.003000,0.249982,0,0);}
.m96_c00071{transform:matrix(0.195366,-0.002344,0.003000,0.249982,0,0);-ms-transform:matrix(0.195366,-0.002344,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195366,-0.002344,0.003000,0.249982,0,0);}
.mb2_c00071{transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.195421,-0.002345,0.003000,0.249982,0,0);-ms-transform:matrix(0.195421,-0.002345,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195421,-0.002345,0.003000,0.249982,0,0);}
.m14_c00071{transform:matrix(0.195456,-0.002345,0.003000,0.249982,0,0);-ms-transform:matrix(0.195456,-0.002345,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195456,-0.002345,0.003000,0.249982,0,0);}
.mac_c00071{transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);}
.mee_c00071{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m83_c00071{transform:matrix(0.196356,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196356,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196356,-0.002356,0.003000,0.249982,0,0);}
.m4d_c00071{transform:matrix(0.196986,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.196986,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196986,-0.002364,0.003000,0.249982,0,0);}
.m55_c00071{transform:matrix(0.197021,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.197021,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197021,-0.002364,0.003000,0.249982,0,0);}
.m2d_c00071{transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);-ms-transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);}
.m7_c00071{transform:matrix(0.197436,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197436,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197436,-0.002369,0.003000,0.249982,0,0);}
.mca_c00071{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m78_c00071{transform:matrix(0.197951,-0.002375,0.003000,0.249982,0,0);-ms-transform:matrix(0.197951,-0.002375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197951,-0.002375,0.003000,0.249982,0,0);}
.mbc_c00071{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m7f_c00071{transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);}
.m4_c00071{transform:matrix(0.198346,-0.002380,0.003000,0.249982,0,0);-ms-transform:matrix(0.198346,-0.002380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198346,-0.002380,0.003000,0.249982,0,0);}
.md3_c00071{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.ma8_c00071{transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);}
.mb4_c00071{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.199236,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199236,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199236,-0.002391,0.003000,0.249982,0,0);}
.m81_c00071{transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);}
.mc0_c00071{transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);}
.m99_c00071{transform:matrix(0.200156,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200156,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200156,-0.002402,0.003000,0.249982,0,0);}
.m34_c00071{transform:matrix(0.200226,-0.002403,0.003000,0.249982,0,0);-ms-transform:matrix(0.200226,-0.002403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200226,-0.002403,0.003000,0.249982,0,0);}
.m3d_c00071{transform:matrix(0.200661,-0.002408,0.003000,0.249982,0,0);-ms-transform:matrix(0.200661,-0.002408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200661,-0.002408,0.003000,0.249982,0,0);}
.m70_c00071{transform:matrix(0.200696,-0.002408,0.003000,0.249982,0,0);-ms-transform:matrix(0.200696,-0.002408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200696,-0.002408,0.003000,0.249982,0,0);}
.me4_c00071{transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);}
.md5_c00071{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mc1_c00071{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m68_c00071{transform:matrix(0.201895,-0.002423,0.003000,0.249982,0,0);-ms-transform:matrix(0.201895,-0.002423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201895,-0.002423,0.003000,0.249982,0,0);}
.m58_c00071{transform:matrix(0.202390,-0.002429,0.003000,0.249982,0,0);-ms-transform:matrix(0.202390,-0.002429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202390,-0.002429,0.003000,0.249982,0,0);}
.mb6_c00071{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.meb_c00071{transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.203550,-0.002443,0.003000,0.249982,0,0);-ms-transform:matrix(0.203550,-0.002443,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203550,-0.002443,0.003000,0.249982,0,0);}
.m16_c00071{transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-ms-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);}
.m85_c00071{transform:matrix(0.203635,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203635,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203635,-0.002444,0.003000,0.249982,0,0);}
.m52_c00071{transform:matrix(0.203655,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203655,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203655,-0.002444,0.003000,0.249982,0,0);}
.m31_c00071{transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);-ms-transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);}
.me2_c00071{transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);}
.m72_c00071{transform:matrix(0.205365,-0.002464,0.003000,0.249982,0,0);-ms-transform:matrix(0.205365,-0.002464,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205365,-0.002464,0.003000,0.249982,0,0);}
.m95_c00071{transform:matrix(0.205470,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205470,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205470,-0.002466,0.003000,0.249982,0,0);}
.m9d_c00071{transform:matrix(0.205735,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205735,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205735,-0.002469,0.003000,0.249982,0,0);}
.mc8_c00071{transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.205825,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205825,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205825,-0.002470,0.003000,0.249982,0,0);}
.md0_c00071{transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);}
.m4e_c00071{transform:matrix(0.207070,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207070,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207070,-0.002485,0.003000,0.249982,0,0);}
.m23_c00071{transform:matrix(0.208450,-0.002501,0.003000,0.249982,0,0);-ms-transform:matrix(0.208450,-0.002501,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208450,-0.002501,0.003000,0.249982,0,0);}
.m1b_c00071{transform:matrix(0.208575,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208575,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208575,-0.002503,0.003000,0.249982,0,0);}
.me7_c00071{transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00071{transform:matrix(0.209170,-0.002510,0.003000,0.249982,0,0);-ms-transform:matrix(0.209170,-0.002510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209170,-0.002510,0.003000,0.249982,0,0);}
.m3c_c00071{transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);}
.md6_c00071{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m79_c00071{transform:matrix(0.209725,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209725,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209725,-0.002517,0.003000,0.249982,0,0);}
.m54_c00071{transform:matrix(0.210215,-0.002523,0.003000,0.249982,0,0);-ms-transform:matrix(0.210215,-0.002523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210215,-0.002523,0.003000,0.249982,0,0);}
.mc4_c00071{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.mc6_c00071{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m9e_c00071{transform:matrix(0.210565,-0.002527,0.003000,0.249982,0,0);-ms-transform:matrix(0.210565,-0.002527,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210565,-0.002527,0.003000,0.249982,0,0);}
.m19_c00071{transform:matrix(0.211070,-0.002533,0.003000,0.249982,0,0);-ms-transform:matrix(0.211070,-0.002533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211070,-0.002533,0.003000,0.249982,0,0);}
.mba_c00071{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.md2_c00071{transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);}
.mda_c00071{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.mdc_c00071{transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.211955,-0.002543,0.003000,0.249982,0,0);-ms-transform:matrix(0.211955,-0.002543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211955,-0.002543,0.003000,0.249982,0,0);}
.md7_c00071{transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);}
.m87_c00071{transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);-ms-transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);}
.m5a_c00071{transform:matrix(0.214085,-0.002569,0.003000,0.249982,0,0);-ms-transform:matrix(0.214085,-0.002569,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214085,-0.002569,0.003000,0.249982,0,0);}
.m9_c00071{transform:matrix(0.215344,-0.002584,0.003000,0.249982,0,0);-ms-transform:matrix(0.215344,-0.002584,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215344,-0.002584,0.003000,0.249982,0,0);}
.m7b_c00071{transform:matrix(0.215964,-0.002592,0.003000,0.249982,0,0);-ms-transform:matrix(0.215964,-0.002592,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215964,-0.002592,0.003000,0.249982,0,0);}
.mbd_c00071{transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);}
.m2c_c00071{transform:matrix(0.217564,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217564,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217564,-0.002611,0.003000,0.249982,0,0);}
.maa_c00071{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m6d_c00071{transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);}
.m1d_c00071{transform:matrix(0.218599,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218599,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218599,-0.002623,0.003000,0.249982,0,0);}
.m9a_c00071{transform:matrix(0.220484,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220484,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220484,-0.002646,0.003000,0.249982,0,0);}
.ma9_c00071{transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);}
.m3e_c00071{transform:matrix(0.222249,-0.002667,0.003000,0.249982,0,0);-ms-transform:matrix(0.222249,-0.002667,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222249,-0.002667,0.003000,0.249982,0,0);}
.m2e_c00071{transform:matrix(0.222769,-0.002673,0.003000,0.249982,0,0);-ms-transform:matrix(0.222769,-0.002673,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222769,-0.002673,0.003000,0.249982,0,0);}
.mdf_c00071{transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);}
.m9c_c00071{transform:matrix(0.224099,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224099,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224099,-0.002689,0.003000,0.249982,0,0);}
.m9f_c00071{transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);}
.mb5_c00071{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.mbb_c00071{transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);}
.mbe_c00071{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.me8_c00071{transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);}
.ma7_c00071{transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);}
.mcf_c00071{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.m88_c00071{transform:matrix(0.235433,-0.002825,0.003000,0.249982,0,0);-ms-transform:matrix(0.235433,-0.002825,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235433,-0.002825,0.003000,0.249982,0,0);}
.mea_c00071{transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);}
.maf_c00071{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.mad_c00071{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m18_c00071{transform:matrix(0.254452,-0.003053,0.003000,0.249982,0,0);-ms-transform:matrix(0.254452,-0.003053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254452,-0.003053,0.003000,0.249982,0,0);}
.mf8_c00071{transform:matrix(0.264330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264330,0.000000,0.000000,0.250000,0,0);}
.mf4_c00071{transform:matrix(0.279225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279225,0.000000,0.000000,0.250000,0,0);}
.m89_c00071{transform:matrix(0.306943,-0.003683,0.003000,0.249982,0,0);-ms-transform:matrix(0.306943,-0.003683,0.003000,0.249982,0,0);-webkit-transform:matrix(0.306943,-0.003683,0.003000,0.249982,0,0);}
.mf7_c00071{transform:matrix(0.326735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326735,0.000000,0.000000,0.250000,0,0);}
.mf3_c00071{transform:matrix(0.684510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684510,0.000000,0.000000,0.250000,0,0);}
.mf9_c00071{transform:matrix(0.713995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713995,0.000000,0.000000,0.250000,0,0);}
.mf6_c00071{transform:matrix(0.739780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739780,0.000000,0.000000,0.250000,0,0);}
.mfa_c00071{transform:matrix(1.752090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.752090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.752090,0.000000,0.000000,0.250000,0,0);}
.mf5_c00071{transform:matrix(2.683420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.683420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.683420,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:0.000000px;}
.fc0_c00071{color:transparent;}
.fs13_c00071{font-size:22.050000px;}
.fsb_c00071{font-size:55.650000px;}
.fs4_c00071{font-size:55.654007px;}
.fs11_c00071{font-size:58.800000px;}
.fs9_c00071{font-size:59.854309px;}
.fs10_c00071{font-size:60.900000px;}
.fse_c00071{font-size:61.950000px;}
.fsd_c00071{font-size:63.000000px;}
.fs1_c00071{font-size:63.004536px;}
.fsc_c00071{font-size:64.050000px;}
.fs6_c00071{font-size:64.054611px;}
.fs3_c00071{font-size:65.104687px;}
.fs5_c00071{font-size:66.154763px;}
.fs2_c00071{font-size:67.204838px;}
.fsf_c00071{font-size:68.250000px;}
.fs7_c00071{font-size:68.254914px;}
.fsa_c00071{font-size:69.300000px;}
.fs8_c00071{font-size:69.304989px;}
.fs12_c00071{font-size:70.350000px;}
.fs0_c00071{font-size:115.500000px;}
.y0_c00071{bottom:0.000000px;}
.yb9_c00071{bottom:23.404500px;}
.yba_c00071{bottom:35.370000px;}
.yb2_c00071{bottom:39.424500px;}
.yb3_c00071{bottom:39.867000px;}
.yb4_c00071{bottom:41.106000px;}
.yb5_c00071{bottom:42.444000px;}
.yb6_c00071{bottom:43.374000px;}
.yb7_c00071{bottom:43.797000px;}
.yb8_c00071{bottom:44.965500px;}
.yb1_c00071{bottom:57.871500px;}
.yb0_c00071{bottom:74.760000px;}
.yaf_c00071{bottom:91.495500px;}
.yae_c00071{bottom:108.663000px;}
.ya6_c00071{bottom:123.673500px;}
.ya7_c00071{bottom:125.656500px;}
.ya8_c00071{bottom:126.426000px;}
.ya9_c00071{bottom:127.704000px;}
.yaa_c00071{bottom:128.410500px;}
.yab_c00071{bottom:129.076500px;}
.yac_c00071{bottom:129.787500px;}
.yad_c00071{bottom:132.606000px;}
.ya5_c00071{bottom:142.288500px;}
.ya4_c00071{bottom:158.973000px;}
.ya3_c00071{bottom:177.006000px;}
.ya2_c00071{bottom:193.716000px;}
.y9d_c00071{bottom:210.857580px;}
.y9c_c00071{bottom:210.858036px;}
.y9e_c00071{bottom:210.858102px;}
.y9f_c00071{bottom:210.858684px;}
.ya0_c00071{bottom:210.859248px;}
.ya1_c00071{bottom:210.859254px;}
.y95_c00071{bottom:227.709750px;}
.y94_c00071{bottom:227.709966px;}
.y98_c00071{bottom:227.710140px;}
.y99_c00071{bottom:227.710146px;}
.y9a_c00071{bottom:227.710290px;}
.y96_c00071{bottom:227.710296px;}
.y97_c00071{bottom:227.710758px;}
.y9b_c00071{bottom:227.710872px;}
.y93_c00071{bottom:245.053374px;}
.y90_c00071{bottom:245.053542px;}
.y91_c00071{bottom:245.053686px;}
.y8f_c00071{bottom:245.053920px;}
.y92_c00071{bottom:245.053932px;}
.y8b_c00071{bottom:245.053950px;}
.y8c_c00071{bottom:245.054052px;}
.y8e_c00071{bottom:245.054178px;}
.y8d_c00071{bottom:245.054472px;}
.y8a_c00071{bottom:261.583608px;}
.y89_c00071{bottom:261.583686px;}
.y86_c00071{bottom:261.583788px;}
.y87_c00071{bottom:261.583914px;}
.y85_c00071{bottom:261.584346px;}
.y88_c00071{bottom:261.584418px;}
.y84_c00071{bottom:278.625480px;}
.y82_c00071{bottom:278.625492px;}
.y83_c00071{bottom:278.625594px;}
.y81_c00071{bottom:278.625606px;}
.y7e_c00071{bottom:278.625978px;}
.y80_c00071{bottom:278.625984px;}
.y7f_c00071{bottom:278.626242px;}
.y7d_c00071{bottom:278.626476px;}
.y7c_c00071{bottom:278.626812px;}
.y73_c00071{bottom:295.485444px;}
.y74_c00071{bottom:295.485528px;}
.y75_c00071{bottom:295.486050px;}
.y77_c00071{bottom:295.486218px;}
.y76_c00071{bottom:295.486776px;}
.y78_c00071{bottom:295.486800px;}
.y7a_c00071{bottom:295.487286px;}
.y79_c00071{bottom:295.487424px;}
.y7b_c00071{bottom:295.487730px;}
.y72_c00071{bottom:312.105942px;}
.y71_c00071{bottom:312.106080px;}
.y70_c00071{bottom:312.106218px;}
.y6f_c00071{bottom:312.106914px;}
.y6c_c00071{bottom:312.107358px;}
.y6e_c00071{bottom:312.107388px;}
.y6d_c00071{bottom:312.107946px;}
.y69_c00071{bottom:328.848684px;}
.y6b_c00071{bottom:328.848852px;}
.y68_c00071{bottom:328.849002px;}
.y6a_c00071{bottom:328.849050px;}
.y67_c00071{bottom:328.849074px;}
.y66_c00071{bottom:328.849272px;}
.y5e_c00071{bottom:345.980064px;}
.y60_c00071{bottom:345.980430px;}
.y65_c00071{bottom:345.980664px;}
.y5f_c00071{bottom:345.980706px;}
.y5c_c00071{bottom:345.980718px;}
.y5d_c00071{bottom:345.980820px;}
.y61_c00071{bottom:345.981072px;}
.y64_c00071{bottom:345.981102px;}
.y63_c00071{bottom:345.981420px;}
.y62_c00071{bottom:345.981756px;}
.y54_c00071{bottom:363.232422px;}
.y55_c00071{bottom:363.233124px;}
.y5b_c00071{bottom:363.233268px;}
.y5a_c00071{bottom:363.233286px;}
.y59_c00071{bottom:363.233760px;}
.y56_c00071{bottom:363.233766px;}
.y58_c00071{bottom:363.234198px;}
.y57_c00071{bottom:363.234456px;}
.y53_c00071{bottom:380.393130px;}
.y52_c00071{bottom:380.393466px;}
.y4f_c00071{bottom:380.393832px;}
.y51_c00071{bottom:380.394000px;}
.y50_c00071{bottom:380.394018px;}
.y4e_c00071{bottom:380.394408px;}
.y46_c00071{bottom:397.014042px;}
.y47_c00071{bottom:397.014690px;}
.y49_c00071{bottom:397.014714px;}
.y4a_c00071{bottom:397.014978px;}
.y48_c00071{bottom:397.015092px;}
.y4c_c00071{bottom:397.015224px;}
.y4b_c00071{bottom:397.015260px;}
.y4d_c00071{bottom:397.015746px;}
.y40_c00071{bottom:413.903682px;}
.y44_c00071{bottom:413.903916px;}
.y43_c00071{bottom:413.903934px;}
.y3f_c00071{bottom:413.903940px;}
.y45_c00071{bottom:413.903958px;}
.y42_c00071{bottom:413.904090px;}
.y41_c00071{bottom:413.904348px;}
.y3d_c00071{bottom:413.904456px;}
.y3e_c00071{bottom:413.904678px;}
.y3c_c00071{bottom:413.904714px;}
.y3a_c00071{bottom:430.645926px;}
.y36_c00071{bottom:430.646508px;}
.y39_c00071{bottom:430.646520px;}
.y3b_c00071{bottom:430.646670px;}
.y38_c00071{bottom:430.647036px;}
.y37_c00071{bottom:430.647210px;}
.y2f_c00071{bottom:447.412518px;}
.y31_c00071{bottom:447.412848px;}
.y30_c00071{bottom:447.412944px;}
.y32_c00071{bottom:447.413136px;}
.y33_c00071{bottom:447.413658px;}
.y34_c00071{bottom:447.414120px;}
.y35_c00071{bottom:447.414582px;}
.y27_c00071{bottom:464.301468px;}
.y28_c00071{bottom:464.301810px;}
.y29_c00071{bottom:464.302176px;}
.y2e_c00071{bottom:464.302734px;}
.y2c_c00071{bottom:464.302788px;}
.y2b_c00071{bottom:464.302806px;}
.y2a_c00071{bottom:464.302818px;}
.y2d_c00071{bottom:464.303190px;}
.y1f_c00071{bottom:481.283154px;}
.y21_c00071{bottom:481.283202px;}
.y20_c00071{bottom:481.283376px;}
.y23_c00071{bottom:481.283490px;}
.y25_c00071{bottom:481.283760px;}
.y22_c00071{bottom:481.283826px;}
.y24_c00071{bottom:481.284054px;}
.y26_c00071{bottom:481.284222px;}
.y1e_c00071{bottom:497.598036px;}
.y1d_c00071{bottom:497.598054px;}
.y18_c00071{bottom:497.598330px;}
.y1a_c00071{bottom:497.598438px;}
.y19_c00071{bottom:497.598492px;}
.y1b_c00071{bottom:497.598504px;}
.y1c_c00071{bottom:497.598606px;}
.y15_c00071{bottom:515.575680px;}
.y14_c00071{bottom:515.575938px;}
.y16_c00071{bottom:515.576202px;}
.y17_c00071{bottom:515.576208px;}
.y11_c00071{bottom:515.576442px;}
.y13_c00071{bottom:515.576568px;}
.y12_c00071{bottom:515.576766px;}
.y10_c00071{bottom:515.577180px;}
.yc_c00071{bottom:531.290436px;}
.yb_c00071{bottom:531.290670px;}
.ye_c00071{bottom:531.290904px;}
.yd_c00071{bottom:531.291102px;}
.ya_c00071{bottom:531.291168px;}
.yf_c00071{bottom:531.291630px;}
.y2_c00071{bottom:546.211500px;}
.y3_c00071{bottom:546.694890px;}
.y4_c00071{bottom:546.879588px;}
.y5_c00071{bottom:547.382148px;}
.y6_c00071{bottom:547.605528px;}
.y7_c00071{bottom:548.201724px;}
.y8_c00071{bottom:548.762208px;}
.y9_c00071{bottom:549.543030px;}
.y1_c00071{bottom:562.009500px;}
.h15_c00071{height:22.050000px;}
.hd_c00071{height:55.650000px;}
.h6_c00071{height:55.654007px;}
.h13_c00071{height:58.800000px;}
.hb_c00071{height:59.854309px;}
.h12_c00071{height:60.900000px;}
.h10_c00071{height:61.950000px;}
.hf_c00071{height:63.000000px;}
.h3_c00071{height:63.004536px;}
.he_c00071{height:64.050000px;}
.h8_c00071{height:64.054611px;}
.h5_c00071{height:65.104687px;}
.h7_c00071{height:66.154763px;}
.h4_c00071{height:67.204838px;}
.h11_c00071{height:68.250000px;}
.h9_c00071{height:68.254914px;}
.hc_c00071{height:69.300000px;}
.ha_c00071{height:69.304989px;}
.h14_c00071{height:70.350000px;}
.h2_c00071{height:115.500000px;}
.h1_c00071{height:612.000000px;}
.h0_c00071{height:612.300000px;}
.w0_c00071{width:368.820000px;}
.w1_c00071{width:369.000000px;}
.x0_c00071{left:0.000000px;}
.x60_c00071{left:39.150000px;}
.x29_c00071{left:42.112482px;}
.x63_c00071{left:45.090000px;}
.x2_c00071{left:46.267500px;}
.xe_c00071{left:58.590342px;}
.xa_c00071{left:59.670954px;}
.x15_c00071{left:61.018896px;}
.x77_c00071{left:63.180000px;}
.x2e_c00071{left:66.145818px;}
.x1a_c00071{left:67.497582px;}
.x2a_c00071{left:69.924978px;}
.x79_c00071{left:71.010000px;}
.x54_c00071{left:73.710492px;}
.x1f_c00071{left:76.947192px;}
.x57_c00071{left:78.841554px;}
.x39_c00071{left:80.998026px;}
.x61_c00071{left:85.320000px;}
.x3_c00071{left:86.550000px;}
.x6e_c00071{left:89.100000px;}
.x4a_c00071{left:90.451140px;}
.x2f_c00071{left:93.418242px;}
.xf_c00071{left:96.122742px;}
.x3c_c00071{left:97.200750px;}
.x4_c00071{left:101.941500px;}
.x62_c00071{left:105.030000px;}
.x30_c00071{left:106.108578px;}
.x24_c00071{left:107.998800px;}
.x4b_c00071{left:109.622394px;}
.x72_c00071{left:110.970000px;}
.x64_c00071{left:112.050000px;}
.x10_c00071{left:121.234860px;}
.x46_c00071{left:122.582826px;}
.xb_c00071{left:125.285904px;}
.x16_c00071{left:128.524116px;}
.x55_c00071{left:129.604038px;}
.x1b_c00071{left:131.492298px;}
.x20_c00071{left:133.110774px;}
.x5d_c00071{left:134.735892px;}
.x2b_c00071{left:140.670666px;}
.x5_c00071{left:143.821500px;}
.x6f_c00071{left:144.990000px;}
.x58_c00071{left:146.076738px;}
.x3a_c00071{left:148.773282px;}
.x44_c00071{left:151.474122px;}
.x4f_c00071{left:153.096942px;}
.x65_c00071{left:155.250000px;}
.x35_c00071{left:157.414602px;}
.x6_c00071{left:162.436500px;}
.x59_c00071{left:166.058118px;}
.x1c_c00071{left:167.674500px;}
.x4c_c00071{left:169.566516px;}
.x5e_c00071{left:172.538328px;}
.x36_c00071{left:173.885478px;}
.x56_c00071{left:175.777680px;}
.x66_c00071{left:177.390000px;}
.x41_c00071{left:179.016540px;}
.x7a_c00071{left:181.440000px;}
.x1_c00071{left:183.060000px;}
.x73_c00071{left:184.410000px;}
.xc_c00071{left:186.850260px;}
.x50_c00071{left:189.549198px;}
.x68_c00071{left:194.130000px;}
.x5a_c00071{left:196.030938px;}
.x3d_c00071{left:197.647704px;}
.x31_c00071{left:201.156258px;}
.x17_c00071{left:203.048844px;}
.x74_c00071{left:207.090000px;}
.x3e_c00071{left:210.878112px;}
.x7_c00071{left:212.119500px;}
.x47_c00071{left:216.010290px;}
.x69_c00071{left:217.890000px;}
.x37_c00071{left:219.789084px;}
.x25_c00071{left:221.406126px;}
.x11_c00071{left:223.572102px;}
.x78_c00071{left:224.773500px;}
.x32_c00071{left:227.888610px;}
.x3b_c00071{left:229.238874px;}
.x70_c00071{left:230.310000px;}
.x5f_c00071{left:231.672342px;}
.x26_c00071{left:233.826408px;}
.x3f_c00071{left:235.720194px;}
.x38_c00071{left:238.690302px;}
.x1d_c00071{left:240.578994px;}
.x21_c00071{left:241.928934px;}
.x12_c00071{left:243.553482px;}
.x51_c00071{left:245.172708px;}
.x67_c00071{left:247.860000px;}
.x2c_c00071{left:249.218808px;}
.x48_c00071{left:254.082780px;}
.x75_c00071{left:257.040000px;}
.x8_c00071{left:258.826500px;}
.x27_c00071{left:261.368868px;}
.x4d_c00071{left:264.884232px;}
.x76_c00071{left:266.490000px;}
.x45_c00071{left:267.853380px;}
.x13_c00071{left:269.475708px;}
.x49_c00071{left:270.823692px;}
.xd_c00071{left:271.906500px;}
.x52_c00071{left:275.685600px;}
.x18_c00071{left:276.763464px;}
.x33_c00071{left:278.382882px;}
.x28_c00071{left:282.160356px;}
.x22_c00071{left:284.592072px;}
.x6a_c00071{left:286.470000px;}
.x4e_c00071{left:288.376116px;}
.x5b_c00071{left:291.077118px;}
.x71_c00071{left:293.220000px;}
.x1e_c00071{left:294.312234px;}
.x2d_c00071{left:295.662486px;}
.x19_c00071{left:297.014880px;}
.x34_c00071{left:298.634298px;}
.x42_c00071{left:299.714910px;}
.x6c_c00071{left:309.150000px;}
.x5c_c00071{left:312.408696px;}
.x40_c00071{left:314.565552px;}
.x43_c00071{left:317.806020px;}
.x14_c00071{left:321.858750px;}
.x9_c00071{left:323.895000px;}
.x6d_c00071{left:325.080000px;}
.x23_c00071{left:329.685570px;}
.x53_c00071{left:331.309110px;}
.x6b_c00071{left:333.912000px;}
.x7b_c00071{left:362.070000px;}
.x7d_c00071{left:365.850000px;}
.x7c_c00071{left:366.930000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs13_c00071{font-size:19.600000pt;}
.fsb_c00071{font-size:49.466667pt;}
.fs4_c00071{font-size:49.470228pt;}
.fs11_c00071{font-size:52.266667pt;}
.fs9_c00071{font-size:53.203830pt;}
.fs10_c00071{font-size:54.133333pt;}
.fse_c00071{font-size:55.066667pt;}
.fsd_c00071{font-size:56.000000pt;}
.fs1_c00071{font-size:56.004032pt;}
.fsc_c00071{font-size:56.933333pt;}
.fs6_c00071{font-size:56.937432pt;}
.fs3_c00071{font-size:57.870833pt;}
.fs5_c00071{font-size:58.804233pt;}
.fs2_c00071{font-size:59.737634pt;}
.fsf_c00071{font-size:60.666667pt;}
.fs7_c00071{font-size:60.671035pt;}
.fsa_c00071{font-size:61.600000pt;}
.fs8_c00071{font-size:61.604435pt;}
.fs12_c00071{font-size:62.533333pt;}
.fs0_c00071{font-size:102.666667pt;}
.y0_c00071{bottom:0.000000pt;}
.yb9_c00071{bottom:20.804000pt;}
.yba_c00071{bottom:31.440000pt;}
.yb2_c00071{bottom:35.044000pt;}
.yb3_c00071{bottom:35.437333pt;}
.yb4_c00071{bottom:36.538667pt;}
.yb5_c00071{bottom:37.728000pt;}
.yb6_c00071{bottom:38.554667pt;}
.yb7_c00071{bottom:38.930667pt;}
.yb8_c00071{bottom:39.969333pt;}
.yb1_c00071{bottom:51.441333pt;}
.yb0_c00071{bottom:66.453333pt;}
.yaf_c00071{bottom:81.329333pt;}
.yae_c00071{bottom:96.589333pt;}
.ya6_c00071{bottom:109.932000pt;}
.ya7_c00071{bottom:111.694667pt;}
.ya8_c00071{bottom:112.378667pt;}
.ya9_c00071{bottom:113.514667pt;}
.yaa_c00071{bottom:114.142667pt;}
.yab_c00071{bottom:114.734667pt;}
.yac_c00071{bottom:115.366667pt;}
.yad_c00071{bottom:117.872000pt;}
.ya5_c00071{bottom:126.478667pt;}
.ya4_c00071{bottom:141.309333pt;}
.ya3_c00071{bottom:157.338667pt;}
.ya2_c00071{bottom:172.192000pt;}
.y9d_c00071{bottom:187.428960pt;}
.y9c_c00071{bottom:187.429365pt;}
.y9e_c00071{bottom:187.429424pt;}
.y9f_c00071{bottom:187.429941pt;}
.ya0_c00071{bottom:187.430443pt;}
.ya1_c00071{bottom:187.430448pt;}
.y95_c00071{bottom:202.408667pt;}
.y94_c00071{bottom:202.408859pt;}
.y98_c00071{bottom:202.409013pt;}
.y99_c00071{bottom:202.409019pt;}
.y9a_c00071{bottom:202.409147pt;}
.y96_c00071{bottom:202.409152pt;}
.y97_c00071{bottom:202.409563pt;}
.y9b_c00071{bottom:202.409664pt;}
.y93_c00071{bottom:217.825221pt;}
.y90_c00071{bottom:217.825371pt;}
.y91_c00071{bottom:217.825499pt;}
.y8f_c00071{bottom:217.825707pt;}
.y92_c00071{bottom:217.825717pt;}
.y8b_c00071{bottom:217.825733pt;}
.y8c_c00071{bottom:217.825824pt;}
.y8e_c00071{bottom:217.825936pt;}
.y8d_c00071{bottom:217.826197pt;}
.y8a_c00071{bottom:232.518763pt;}
.y89_c00071{bottom:232.518832pt;}
.y86_c00071{bottom:232.518923pt;}
.y87_c00071{bottom:232.519035pt;}
.y85_c00071{bottom:232.519419pt;}
.y88_c00071{bottom:232.519483pt;}
.y84_c00071{bottom:247.667093pt;}
.y82_c00071{bottom:247.667104pt;}
.y83_c00071{bottom:247.667195pt;}
.y81_c00071{bottom:247.667205pt;}
.y7e_c00071{bottom:247.667536pt;}
.y80_c00071{bottom:247.667541pt;}
.y7f_c00071{bottom:247.667771pt;}
.y7d_c00071{bottom:247.667979pt;}
.y7c_c00071{bottom:247.668277pt;}
.y73_c00071{bottom:262.653728pt;}
.y74_c00071{bottom:262.653803pt;}
.y75_c00071{bottom:262.654267pt;}
.y77_c00071{bottom:262.654416pt;}
.y76_c00071{bottom:262.654912pt;}
.y78_c00071{bottom:262.654933pt;}
.y7a_c00071{bottom:262.655365pt;}
.y79_c00071{bottom:262.655488pt;}
.y7b_c00071{bottom:262.655760pt;}
.y72_c00071{bottom:277.427504pt;}
.y71_c00071{bottom:277.427627pt;}
.y70_c00071{bottom:277.427749pt;}
.y6f_c00071{bottom:277.428368pt;}
.y6c_c00071{bottom:277.428763pt;}
.y6e_c00071{bottom:277.428789pt;}
.y6d_c00071{bottom:277.429285pt;}
.y69_c00071{bottom:292.309941pt;}
.y6b_c00071{bottom:292.310091pt;}
.y68_c00071{bottom:292.310224pt;}
.y6a_c00071{bottom:292.310267pt;}
.y67_c00071{bottom:292.310288pt;}
.y66_c00071{bottom:292.310464pt;}
.y5e_c00071{bottom:307.537835pt;}
.y60_c00071{bottom:307.538160pt;}
.y65_c00071{bottom:307.538368pt;}
.y5f_c00071{bottom:307.538405pt;}
.y5c_c00071{bottom:307.538416pt;}
.y5d_c00071{bottom:307.538507pt;}
.y61_c00071{bottom:307.538731pt;}
.y64_c00071{bottom:307.538757pt;}
.y63_c00071{bottom:307.539040pt;}
.y62_c00071{bottom:307.539339pt;}
.y54_c00071{bottom:322.873264pt;}
.y55_c00071{bottom:322.873888pt;}
.y5b_c00071{bottom:322.874016pt;}
.y5a_c00071{bottom:322.874032pt;}
.y59_c00071{bottom:322.874453pt;}
.y56_c00071{bottom:322.874459pt;}
.y58_c00071{bottom:322.874843pt;}
.y57_c00071{bottom:322.875072pt;}
.y53_c00071{bottom:338.127227pt;}
.y52_c00071{bottom:338.127525pt;}
.y4f_c00071{bottom:338.127851pt;}
.y51_c00071{bottom:338.128000pt;}
.y50_c00071{bottom:338.128016pt;}
.y4e_c00071{bottom:338.128363pt;}
.y46_c00071{bottom:352.901371pt;}
.y47_c00071{bottom:352.901947pt;}
.y49_c00071{bottom:352.901968pt;}
.y4a_c00071{bottom:352.902203pt;}
.y48_c00071{bottom:352.902304pt;}
.y4c_c00071{bottom:352.902421pt;}
.y4b_c00071{bottom:352.902453pt;}
.y4d_c00071{bottom:352.902885pt;}
.y40_c00071{bottom:367.914384pt;}
.y44_c00071{bottom:367.914592pt;}
.y43_c00071{bottom:367.914608pt;}
.y3f_c00071{bottom:367.914613pt;}
.y45_c00071{bottom:367.914629pt;}
.y42_c00071{bottom:367.914747pt;}
.y41_c00071{bottom:367.914976pt;}
.y3d_c00071{bottom:367.915072pt;}
.y3e_c00071{bottom:367.915269pt;}
.y3c_c00071{bottom:367.915301pt;}
.y3a_c00071{bottom:382.796379pt;}
.y36_c00071{bottom:382.796896pt;}
.y39_c00071{bottom:382.796907pt;}
.y3b_c00071{bottom:382.797040pt;}
.y38_c00071{bottom:382.797365pt;}
.y37_c00071{bottom:382.797520pt;}
.y2f_c00071{bottom:397.700016pt;}
.y31_c00071{bottom:397.700309pt;}
.y30_c00071{bottom:397.700395pt;}
.y32_c00071{bottom:397.700565pt;}
.y33_c00071{bottom:397.701029pt;}
.y34_c00071{bottom:397.701440pt;}
.y35_c00071{bottom:397.701851pt;}
.y27_c00071{bottom:412.712416pt;}
.y28_c00071{bottom:412.712720pt;}
.y29_c00071{bottom:412.713045pt;}
.y2e_c00071{bottom:412.713541pt;}
.y2c_c00071{bottom:412.713589pt;}
.y2b_c00071{bottom:412.713605pt;}
.y2a_c00071{bottom:412.713616pt;}
.y2d_c00071{bottom:412.713947pt;}
.y1f_c00071{bottom:427.807248pt;}
.y21_c00071{bottom:427.807291pt;}
.y20_c00071{bottom:427.807445pt;}
.y23_c00071{bottom:427.807547pt;}
.y25_c00071{bottom:427.807787pt;}
.y22_c00071{bottom:427.807845pt;}
.y24_c00071{bottom:427.808048pt;}
.y26_c00071{bottom:427.808197pt;}
.y1e_c00071{bottom:442.309365pt;}
.y1d_c00071{bottom:442.309381pt;}
.y18_c00071{bottom:442.309627pt;}
.y1a_c00071{bottom:442.309723pt;}
.y19_c00071{bottom:442.309771pt;}
.y1b_c00071{bottom:442.309781pt;}
.y1c_c00071{bottom:442.309872pt;}
.y15_c00071{bottom:458.289493pt;}
.y14_c00071{bottom:458.289723pt;}
.y16_c00071{bottom:458.289957pt;}
.y17_c00071{bottom:458.289963pt;}
.y11_c00071{bottom:458.290171pt;}
.y13_c00071{bottom:458.290283pt;}
.y12_c00071{bottom:458.290459pt;}
.y10_c00071{bottom:458.290827pt;}
.yc_c00071{bottom:472.258165pt;}
.yb_c00071{bottom:472.258373pt;}
.ye_c00071{bottom:472.258581pt;}
.yd_c00071{bottom:472.258757pt;}
.ya_c00071{bottom:472.258816pt;}
.yf_c00071{bottom:472.259227pt;}
.y2_c00071{bottom:485.521333pt;}
.y3_c00071{bottom:485.951013pt;}
.y4_c00071{bottom:486.115189pt;}
.y5_c00071{bottom:486.561909pt;}
.y6_c00071{bottom:486.760469pt;}
.y7_c00071{bottom:487.290421pt;}
.y8_c00071{bottom:487.788629pt;}
.y9_c00071{bottom:488.482693pt;}
.y1_c00071{bottom:499.564000pt;}
.h15_c00071{height:19.600000pt;}
.hd_c00071{height:49.466667pt;}
.h6_c00071{height:49.470228pt;}
.h13_c00071{height:52.266667pt;}
.hb_c00071{height:53.203830pt;}
.h12_c00071{height:54.133333pt;}
.h10_c00071{height:55.066667pt;}
.hf_c00071{height:56.000000pt;}
.h3_c00071{height:56.004032pt;}
.he_c00071{height:56.933333pt;}
.h8_c00071{height:56.937432pt;}
.h5_c00071{height:57.870833pt;}
.h7_c00071{height:58.804233pt;}
.h4_c00071{height:59.737634pt;}
.h11_c00071{height:60.666667pt;}
.h9_c00071{height:60.671035pt;}
.hc_c00071{height:61.600000pt;}
.ha_c00071{height:61.604435pt;}
.h14_c00071{height:62.533333pt;}
.h2_c00071{height:102.666667pt;}
.h1_c00071{height:544.000000pt;}
.h0_c00071{height:544.266667pt;}
.w0_c00071{width:327.840000pt;}
.w1_c00071{width:328.000000pt;}
.x0_c00071{left:0.000000pt;}
.x60_c00071{left:34.800000pt;}
.x29_c00071{left:37.433317pt;}
.x63_c00071{left:40.080000pt;}
.x2_c00071{left:41.126667pt;}
.xe_c00071{left:52.080304pt;}
.xa_c00071{left:53.040848pt;}
.x15_c00071{left:54.239019pt;}
.x77_c00071{left:56.160000pt;}
.x2e_c00071{left:58.796283pt;}
.x1a_c00071{left:59.997851pt;}
.x2a_c00071{left:62.155536pt;}
.x79_c00071{left:63.120000pt;}
.x54_c00071{left:65.520437pt;}
.x1f_c00071{left:68.397504pt;}
.x57_c00071{left:70.081381pt;}
.x39_c00071{left:71.998245pt;}
.x61_c00071{left:75.840000pt;}
.x3_c00071{left:76.933333pt;}
.x6e_c00071{left:79.200000pt;}
.x4a_c00071{left:80.401013pt;}
.x2f_c00071{left:83.038437pt;}
.xf_c00071{left:85.442437pt;}
.x3c_c00071{left:86.400667pt;}
.x4_c00071{left:90.614667pt;}
.x62_c00071{left:93.360000pt;}
.x30_c00071{left:94.318736pt;}
.x24_c00071{left:95.998933pt;}
.x4b_c00071{left:97.442128pt;}
.x72_c00071{left:98.640000pt;}
.x64_c00071{left:99.600000pt;}
.x10_c00071{left:107.764320pt;}
.x46_c00071{left:108.962512pt;}
.xb_c00071{left:111.365248pt;}
.x16_c00071{left:114.243659pt;}
.x55_c00071{left:115.203589pt;}
.x1b_c00071{left:116.882043pt;}
.x20_c00071{left:118.320688pt;}
.x5d_c00071{left:119.765237pt;}
.x2b_c00071{left:125.040592pt;}
.x5_c00071{left:127.841333pt;}
.x6f_c00071{left:128.880000pt;}
.x58_c00071{left:129.845989pt;}
.x3a_c00071{left:132.242917pt;}
.x44_c00071{left:134.643664pt;}
.x4f_c00071{left:136.086171pt;}
.x65_c00071{left:138.000000pt;}
.x35_c00071{left:139.924091pt;}
.x6_c00071{left:144.388000pt;}
.x59_c00071{left:147.607216pt;}
.x1c_c00071{left:149.044000pt;}
.x4c_c00071{left:150.725792pt;}
.x5e_c00071{left:153.367403pt;}
.x36_c00071{left:154.564869pt;}
.x56_c00071{left:156.246827pt;}
.x66_c00071{left:157.680000pt;}
.x41_c00071{left:159.125813pt;}
.x7a_c00071{left:161.280000pt;}
.x1_c00071{left:162.720000pt;}
.x73_c00071{left:163.920000pt;}
.xc_c00071{left:166.089120pt;}
.x50_c00071{left:168.488176pt;}
.x68_c00071{left:172.560000pt;}
.x5a_c00071{left:174.249723pt;}
.x3d_c00071{left:175.686848pt;}
.x31_c00071{left:178.805563pt;}
.x17_c00071{left:180.487861pt;}
.x74_c00071{left:184.080000pt;}
.x3e_c00071{left:187.447211pt;}
.x7_c00071{left:188.550667pt;}
.x47_c00071{left:192.009147pt;}
.x69_c00071{left:193.680000pt;}
.x37_c00071{left:195.368075pt;}
.x25_c00071{left:196.805445pt;}
.x11_c00071{left:198.730757pt;}
.x78_c00071{left:199.798667pt;}
.x32_c00071{left:202.567653pt;}
.x3b_c00071{left:203.767888pt;}
.x70_c00071{left:204.720000pt;}
.x5f_c00071{left:205.930971pt;}
.x26_c00071{left:207.845696pt;}
.x3f_c00071{left:209.529061pt;}
.x38_c00071{left:212.169157pt;}
.x1d_c00071{left:213.847995pt;}
.x21_c00071{left:215.047941pt;}
.x12_c00071{left:216.491984pt;}
.x51_c00071{left:217.931296pt;}
.x67_c00071{left:220.320000pt;}
.x2c_c00071{left:221.527829pt;}
.x48_c00071{left:225.851360pt;}
.x75_c00071{left:228.480000pt;}
.x8_c00071{left:230.068000pt;}
.x27_c00071{left:232.327883pt;}
.x4d_c00071{left:235.452651pt;}
.x76_c00071{left:236.880000pt;}
.x45_c00071{left:238.091893pt;}
.x13_c00071{left:239.533963pt;}
.x49_c00071{left:240.732171pt;}
.xd_c00071{left:241.694667pt;}
.x52_c00071{left:245.053867pt;}
.x18_c00071{left:246.011968pt;}
.x33_c00071{left:247.451451pt;}
.x28_c00071{left:250.809205pt;}
.x22_c00071{left:252.970731pt;}
.x6a_c00071{left:254.640000pt;}
.x4e_c00071{left:256.334325pt;}
.x5b_c00071{left:258.735216pt;}
.x71_c00071{left:260.640000pt;}
.x1e_c00071{left:261.610875pt;}
.x2d_c00071{left:262.811099pt;}
.x19_c00071{left:264.013227pt;}
.x34_c00071{left:265.452709pt;}
.x42_c00071{left:266.413253pt;}
.x6c_c00071{left:274.800000pt;}
.x5c_c00071{left:277.696619pt;}
.x40_c00071{left:279.613824pt;}
.x43_c00071{left:282.494240pt;}
.x14_c00071{left:286.096667pt;}
.x9_c00071{left:287.906667pt;}
.x6d_c00071{left:288.960000pt;}
.x23_c00071{left:293.053840pt;}
.x53_c00071{left:294.496987pt;}
.x6b_c00071{left:296.810667pt;}
.x7b_c00071{left:321.840000pt;}
.x7d_c00071{left:325.200000pt;}
.x7c_c00071{left:326.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00072 {
    display:none;
  }
  .loading-indicator_c00072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00072 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00072 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00072" -> "#page-container .classname_c00072")
 */
.pf_c00072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00072 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00072 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00072 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00072 {overflow:visible;}
  }
}
.c_c00072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00072 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00072:after { /* webkit #35443 */
  content: '';
}
.t_c00072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00072 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00072 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00072 { /* info for Javascript */
  display:none;
}
.l_c00072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00072:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00072 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00072.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7f_c00072{transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.144365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144365,0.000000,0.000000,0.250000,0,0);}
.mde_c00072{transform:matrix(0.146335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146335,0.000000,0.000000,0.250000,0,0);}
.m78_c00072{transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);}
.m8b_c00072{transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);}
.m83_c00072{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);}
.m72_c00072{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.mae_c00072{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m64_c00072{transform:matrix(0.155885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155885,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);}
.m89_c00072{transform:matrix(0.156210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156210,0.000000,0.000000,0.250000,0,0);}
.me2_c00072{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00072{transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);}
.m85_c00072{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.m8e_c00072{transform:matrix(0.163170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163170,0.000000,0.000000,0.250000,0,0);}
.m8d_c00072{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.m97_c00072{transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00072{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);}
.m91_c00072{transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);}
.ma9_c00072{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.mb6_c00072{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);}
.mc8_c00072{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);}
.m84_c00072{transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);}
.mcc_c00072{transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);}
.m95_c00072{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m7d_c00072{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.ma1_c00072{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m8c_c00072{transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);}
.me3_c00072{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m79_c00072{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m99_c00072{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.173945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173945,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.m77_c00072{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.mef_c00072{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m86_c00072{transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);}
.mbf_c00072{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.me7_c00072{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m44_c00072{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m42_c00072{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.m66_c00072{transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m94_c00072{transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00072{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.m81_c00072{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m82_c00072{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.mb5_c00072{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.m3f_c00072{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00072{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m7e_c00072{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.me4_c00072{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.m55_c00072{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.m8a_c00072{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.m92_c00072{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.m96_c00072{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m54_c00072{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.me0_c00072{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.mec_c00072{transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.ma2_c00072{transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);}
.m6c_c00072{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.mce_c00072{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.mc3_c00072{transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);}
.maa_c00072{transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);}
.m9b_c00072{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);}
.m63_c00072{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.m40_c00072{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.mca_c00072{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m3d_c00072{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.m87_c00072{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.mba_c00072{transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);}
.me1_c00072{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.mb1_c00072{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m93_c00072{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.mc1_c00072{transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00072{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m76_c00072{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mdd_c00072{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m56_c00072{transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);}
.m90_c00072{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m48_c00072{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.mb2_c00072{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.m9a_c00072{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.mb4_c00072{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.m5a_c00072{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m3b_c00072{transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);}
.m4a_c00072{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.mf2_c00072{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.m9d_c00072{transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);}
.m45_c00072{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.mb7_c00072{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.mad_c00072{transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);}
.m88_c00072{transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.meb_c00072{transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m5c_c00072{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00072{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mc7_c00072{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);}
.m70_c00072{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.ma0_c00072{transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);}
.mf0_c00072{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.m71_c00072{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);}
.m43_c00072{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.me6_c00072{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m47_c00072{transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);}
.mc0_c00072{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.mcf_c00072{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m9c_c00072{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mf1_c00072{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m52_c00072{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.mac_c00072{transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);}
.m41_c00072{transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);}
.m50_c00072{transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);}
.m39_c00072{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00072{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.mc5_c00072{transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);}
.mda_c00072{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.mc6_c00072{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m80_c00072{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.me5_c00072{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00072{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m67_c00072{transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00072{transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);}
.md4_c00072{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.207190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207190,0.000000,0.000000,0.250000,0,0);}
.m3a_c00072{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.m6e_c00072{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.mee_c00072{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.m73_c00072{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.mcb_c00072{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m74_c00072{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mab_c00072{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m98_c00072{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.mdf_c00072{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.ma6_c00072{transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);}
.m4c_c00072{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.m53_c00072{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.m62_c00072{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.md3_c00072{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m59_c00072{transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);}
.mdc_c00072{transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);}
.m6b_c00072{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00072{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.md0_c00072{transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);}
.m68_c00072{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00072{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m4d_c00072{transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);}
.ma8_c00072{transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.m7a_c00072{transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m5e_c00072{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m46_c00072{transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.mc4_c00072{transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);}
.m5d_c00072{transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);}
.m5f_c00072{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m49_c00072{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m69_c00072{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.mbe_c00072{transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);}
.mb0_c00072{transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);}
.m4b_c00072{transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);}
.mbb_c00072{transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);}
.m65_c00072{transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.maf_c00072{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.m27_c00072{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.ma7_c00072{transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);}
.med_c00072{transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);}
.m7b_c00072{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);}
.mb9_c00072{transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);}
.m13_c00072{transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);}
.md1_c00072{transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);}
.m75_c00072{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m6d_c00072{transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);}
.md2_c00072{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.mbc_c00072{transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);}
.m51_c00072{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.m3e_c00072{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);}
.mcd_c00072{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.me8_c00072{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.md5_c00072{transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);}
.m6a_c00072{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.md6_c00072{transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);}
.m61_c00072{transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);}
.md8_c00072{transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.242765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242765,0.000000,0.000000,0.250000,0,0);}
.mdb_c00072{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m57_c00072{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.md9_c00072{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m9e_c00072{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.md7_c00072{transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);}
.ma5_c00072{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.ma3_c00072{transform:matrix(0.263410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263410,0.000000,0.000000,0.250000,0,0);}
.me9_c00072{transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);}
.mea_c00072{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.mb8_c00072{transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);}
.m7c_c00072{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m58_c00072{transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);}
.m60_c00072{transform:matrix(0.373920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373920,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.380465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00072{transform:matrix(0.464895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464895,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:0.000000px;}
.fc0_c00072{color:transparent;}
.fsd_c00072{font-size:51.450000px;}
.fs5_c00072{font-size:55.650000px;}
.fs3_c00072{font-size:57.750000px;}
.fs6_c00072{font-size:58.800000px;}
.fs7_c00072{font-size:59.850000px;}
.fsb_c00072{font-size:60.900000px;}
.fs2_c00072{font-size:61.950000px;}
.fs1_c00072{font-size:63.000000px;}
.fs8_c00072{font-size:64.050000px;}
.fs4_c00072{font-size:65.100000px;}
.fsc_c00072{font-size:66.150000px;}
.fsa_c00072{font-size:67.200000px;}
.fse_c00072{font-size:68.250000px;}
.fs9_c00072{font-size:69.300000px;}
.fs0_c00072{font-size:78.750000px;}
.y0_c00072{bottom:0.000000px;}
.y27_c00072{bottom:28.951500px;}
.y26_c00072{bottom:46.212000px;}
.y25_c00072{bottom:62.401500px;}
.y24_c00072{bottom:63.588000px;}
.y23_c00072{bottom:63.834000px;}
.y22_c00072{bottom:64.219500px;}
.y21_c00072{bottom:64.852500px;}
.y20_c00072{bottom:65.776500px;}
.y1f_c00072{bottom:66.154500px;}
.y1e_c00072{bottom:79.798500px;}
.y1d_c00072{bottom:96.262500px;}
.y1c_c00072{bottom:114.358500px;}
.y1b_c00072{bottom:132.360000px;}
.y1a_c00072{bottom:147.963000px;}
.y19_c00072{bottom:160.365000px;}
.y18_c00072{bottom:180.936000px;}
.y17_c00072{bottom:198.981000px;}
.y16_c00072{bottom:215.872500px;}
.y15_c00072{bottom:232.677000px;}
.y14_c00072{bottom:249.082500px;}
.y13_c00072{bottom:266.698500px;}
.y12_c00072{bottom:284.248500px;}
.y11_c00072{bottom:301.533000px;}
.y10_c00072{bottom:318.096000px;}
.yf_c00072{bottom:333.334500px;}
.ye_c00072{bottom:350.016000px;}
.yd_c00072{bottom:366.069000px;}
.yc_c00072{bottom:384.603000px;}
.yb_c00072{bottom:401.164500px;}
.ya_c00072{bottom:417.508500px;}
.y9_c00072{bottom:434.494500px;}
.y8_c00072{bottom:450.994500px;}
.y7_c00072{bottom:468.249000px;}
.y6_c00072{bottom:484.498500px;}
.y5_c00072{bottom:503.067000px;}
.y4_c00072{bottom:518.191500px;}
.y3_c00072{bottom:536.127000px;}
.y2_c00072{bottom:552.001500px;}
.y1_c00072{bottom:564.735000px;}
.hf_c00072{height:51.450000px;}
.h7_c00072{height:55.650000px;}
.h5_c00072{height:57.750000px;}
.h8_c00072{height:58.800000px;}
.h9_c00072{height:59.850000px;}
.hd_c00072{height:60.900000px;}
.h4_c00072{height:61.950000px;}
.h3_c00072{height:63.000000px;}
.ha_c00072{height:64.050000px;}
.h6_c00072{height:65.100000px;}
.he_c00072{height:66.150000px;}
.hc_c00072{height:67.200000px;}
.h10_c00072{height:68.250000px;}
.hb_c00072{height:69.300000px;}
.h2_c00072{height:78.750000px;}
.h1_c00072{height:612.000000px;}
.h0_c00072{height:612.300000px;}
.w0_c00072{width:368.820000px;}
.w1_c00072{width:369.000000px;}
.x0_c00072{left:0.000000px;}
.x23_c00072{left:29.430000px;}
.x1d_c00072{left:33.210000px;}
.x10_c00072{left:34.290000px;}
.x4_c00072{left:35.370000px;}
.x74_c00072{left:39.150000px;}
.x5_c00072{left:48.870000px;}
.x17_c00072{left:50.220000px;}
.x1_c00072{left:51.570000px;}
.xa_c00072{left:53.730000px;}
.x51_c00072{left:56.700000px;}
.x6b_c00072{left:59.940000px;}
.x11_c00072{left:62.640000px;}
.x6d_c00072{left:65.610000px;}
.x29_c00072{left:67.770000px;}
.x36_c00072{left:71.010000px;}
.x68_c00072{left:72.900000px;}
.x18_c00072{left:75.330000px;}
.x3a_c00072{left:76.950000px;}
.x12_c00072{left:78.570000px;}
.x4a_c00072{left:81.000000px;}
.x40_c00072{left:83.430000px;}
.x24_c00072{left:85.320000px;}
.x42_c00072{left:88.020000px;}
.x75_c00072{left:90.990000px;}
.x32_c00072{left:94.770000px;}
.x65_c00072{left:98.820000px;}
.xb_c00072{left:99.900000px;}
.x4b_c00072{left:100.980000px;}
.x25_c00072{left:106.110000px;}
.x19_c00072{left:110.160000px;}
.x58_c00072{left:114.210000px;}
.x43_c00072{left:115.830000px;}
.x48_c00072{left:117.450000px;}
.x13_c00072{left:120.150000px;}
.x5f_c00072{left:126.630000px;}
.x3e_c00072{left:127.980000px;}
.x1a_c00072{left:129.600000px;}
.x6c_c00072{left:131.490000px;}
.x70_c00072{left:133.530000px;}
.x1e_c00072{left:135.000000px;}
.x4c_c00072{left:136.350000px;}
.x2a_c00072{left:137.700000px;}
.x59_c00072{left:139.320000px;}
.x37_c00072{left:142.290000px;}
.x66_c00072{left:146.070000px;}
.x2d_c00072{left:147.960000px;}
.x5b_c00072{left:150.930000px;}
.x6_c00072{left:152.820000px;}
.x1b_c00072{left:154.980000px;}
.x1f_c00072{left:156.870000px;}
.xc_c00072{left:159.300000px;}
.x69_c00072{left:160.650000px;}
.x67_c00072{left:162.270000px;}
.x7_c00072{left:165.780000px;}
.x26_c00072{left:166.860000px;}
.x2_c00072{left:168.210000px;}
.x33_c00072{left:169.560000px;}
.x38_c00072{left:172.800000px;}
.x3b_c00072{left:173.880000px;}
.x52_c00072{left:174.960000px;}
.x60_c00072{left:176.040000px;}
.x76_c00072{left:180.090000px;}
.x71_c00072{left:182.185500px;}
.x2b_c00072{left:184.410000px;}
.x8_c00072{left:185.760000px;}
.x34_c00072{left:187.650000px;}
.x44_c00072{left:189.270000px;}
.xd_c00072{left:190.620000px;}
.x57_c00072{left:193.860000px;}
.x61_c00072{left:196.560000px;}
.x14_c00072{left:200.070000px;}
.x27_c00072{left:201.420000px;}
.x20_c00072{left:203.850000px;}
.x49_c00072{left:205.200000px;}
.x53_c00072{left:207.900000px;}
.x4e_c00072{left:209.520000px;}
.x5c_c00072{left:212.220000px;}
.x41_c00072{left:213.570000px;}
.x3c_c00072{left:216.270000px;}
.x2c_c00072{left:218.970000px;}
.x2e_c00072{left:221.940000px;}
.x77_c00072{left:223.290000px;}
.x62_c00072{left:225.720000px;}
.x21_c00072{left:228.150000px;}
.x72_c00072{left:230.697000px;}
.x54_c00072{left:233.550000px;}
.x9_c00072{left:239.490000px;}
.x3f_c00072{left:241.920000px;}
.x63_c00072{left:244.620000px;}
.x6e_c00072{left:246.510000px;}
.x55_c00072{left:248.130000px;}
.x45_c00072{left:249.750000px;}
.x4d_c00072{left:251.910000px;}
.x3_c00072{left:253.800000px;}
.x15_c00072{left:259.200000px;}
.xe_c00072{left:261.630000px;}
.x1c_c00072{left:267.840000px;}
.x4f_c00072{left:270.000000px;}
.x2f_c00072{left:272.430000px;}
.x22_c00072{left:273.510000px;}
.x35_c00072{left:274.860000px;}
.x28_c00072{left:278.640000px;}
.x39_c00072{left:280.530000px;}
.xf_c00072{left:281.880000px;}
.x64_c00072{left:284.310000px;}
.x56_c00072{left:292.680000px;}
.x46_c00072{left:295.380000px;}
.x5a_c00072{left:296.460000px;}
.x78_c00072{left:298.080000px;}
.x6a_c00072{left:299.700000px;}
.x30_c00072{left:301.590000px;}
.x6f_c00072{left:302.670000px;}
.x5d_c00072{left:304.020000px;}
.x50_c00072{left:307.530000px;}
.x47_c00072{left:310.770000px;}
.x16_c00072{left:312.120000px;}
.x31_c00072{left:314.550000px;}
.x5e_c00072{left:315.630000px;}
.x3d_c00072{left:317.790000px;}
.x73_c00072{left:321.955500px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fsd_c00072{font-size:45.733333pt;}
.fs5_c00072{font-size:49.466667pt;}
.fs3_c00072{font-size:51.333333pt;}
.fs6_c00072{font-size:52.266667pt;}
.fs7_c00072{font-size:53.200000pt;}
.fsb_c00072{font-size:54.133333pt;}
.fs2_c00072{font-size:55.066667pt;}
.fs1_c00072{font-size:56.000000pt;}
.fs8_c00072{font-size:56.933333pt;}
.fs4_c00072{font-size:57.866667pt;}
.fsc_c00072{font-size:58.800000pt;}
.fsa_c00072{font-size:59.733333pt;}
.fse_c00072{font-size:60.666667pt;}
.fs9_c00072{font-size:61.600000pt;}
.fs0_c00072{font-size:70.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y27_c00072{bottom:25.734667pt;}
.y26_c00072{bottom:41.077333pt;}
.y25_c00072{bottom:55.468000pt;}
.y24_c00072{bottom:56.522667pt;}
.y23_c00072{bottom:56.741333pt;}
.y22_c00072{bottom:57.084000pt;}
.y21_c00072{bottom:57.646667pt;}
.y20_c00072{bottom:58.468000pt;}
.y1f_c00072{bottom:58.804000pt;}
.y1e_c00072{bottom:70.932000pt;}
.y1d_c00072{bottom:85.566667pt;}
.y1c_c00072{bottom:101.652000pt;}
.y1b_c00072{bottom:117.653333pt;}
.y1a_c00072{bottom:131.522667pt;}
.y19_c00072{bottom:142.546667pt;}
.y18_c00072{bottom:160.832000pt;}
.y17_c00072{bottom:176.872000pt;}
.y16_c00072{bottom:191.886667pt;}
.y15_c00072{bottom:206.824000pt;}
.y14_c00072{bottom:221.406667pt;}
.y13_c00072{bottom:237.065333pt;}
.y12_c00072{bottom:252.665333pt;}
.y11_c00072{bottom:268.029333pt;}
.y10_c00072{bottom:282.752000pt;}
.yf_c00072{bottom:296.297333pt;}
.ye_c00072{bottom:311.125333pt;}
.yd_c00072{bottom:325.394667pt;}
.yc_c00072{bottom:341.869333pt;}
.yb_c00072{bottom:356.590667pt;}
.ya_c00072{bottom:371.118667pt;}
.y9_c00072{bottom:386.217333pt;}
.y8_c00072{bottom:400.884000pt;}
.y7_c00072{bottom:416.221333pt;}
.y6_c00072{bottom:430.665333pt;}
.y5_c00072{bottom:447.170667pt;}
.y4_c00072{bottom:460.614667pt;}
.y3_c00072{bottom:476.557333pt;}
.y2_c00072{bottom:490.668000pt;}
.y1_c00072{bottom:501.986667pt;}
.hf_c00072{height:45.733333pt;}
.h7_c00072{height:49.466667pt;}
.h5_c00072{height:51.333333pt;}
.h8_c00072{height:52.266667pt;}
.h9_c00072{height:53.200000pt;}
.hd_c00072{height:54.133333pt;}
.h4_c00072{height:55.066667pt;}
.h3_c00072{height:56.000000pt;}
.ha_c00072{height:56.933333pt;}
.h6_c00072{height:57.866667pt;}
.he_c00072{height:58.800000pt;}
.hc_c00072{height:59.733333pt;}
.h10_c00072{height:60.666667pt;}
.hb_c00072{height:61.600000pt;}
.h2_c00072{height:70.000000pt;}
.h1_c00072{height:544.000000pt;}
.h0_c00072{height:544.266667pt;}
.w0_c00072{width:327.840000pt;}
.w1_c00072{width:328.000000pt;}
.x0_c00072{left:0.000000pt;}
.x23_c00072{left:26.160000pt;}
.x1d_c00072{left:29.520000pt;}
.x10_c00072{left:30.480000pt;}
.x4_c00072{left:31.440000pt;}
.x74_c00072{left:34.800000pt;}
.x5_c00072{left:43.440000pt;}
.x17_c00072{left:44.640000pt;}
.x1_c00072{left:45.840000pt;}
.xa_c00072{left:47.760000pt;}
.x51_c00072{left:50.400000pt;}
.x6b_c00072{left:53.280000pt;}
.x11_c00072{left:55.680000pt;}
.x6d_c00072{left:58.320000pt;}
.x29_c00072{left:60.240000pt;}
.x36_c00072{left:63.120000pt;}
.x68_c00072{left:64.800000pt;}
.x18_c00072{left:66.960000pt;}
.x3a_c00072{left:68.400000pt;}
.x12_c00072{left:69.840000pt;}
.x4a_c00072{left:72.000000pt;}
.x40_c00072{left:74.160000pt;}
.x24_c00072{left:75.840000pt;}
.x42_c00072{left:78.240000pt;}
.x75_c00072{left:80.880000pt;}
.x32_c00072{left:84.240000pt;}
.x65_c00072{left:87.840000pt;}
.xb_c00072{left:88.800000pt;}
.x4b_c00072{left:89.760000pt;}
.x25_c00072{left:94.320000pt;}
.x19_c00072{left:97.920000pt;}
.x58_c00072{left:101.520000pt;}
.x43_c00072{left:102.960000pt;}
.x48_c00072{left:104.400000pt;}
.x13_c00072{left:106.800000pt;}
.x5f_c00072{left:112.560000pt;}
.x3e_c00072{left:113.760000pt;}
.x1a_c00072{left:115.200000pt;}
.x6c_c00072{left:116.880000pt;}
.x70_c00072{left:118.693333pt;}
.x1e_c00072{left:120.000000pt;}
.x4c_c00072{left:121.200000pt;}
.x2a_c00072{left:122.400000pt;}
.x59_c00072{left:123.840000pt;}
.x37_c00072{left:126.480000pt;}
.x66_c00072{left:129.840000pt;}
.x2d_c00072{left:131.520000pt;}
.x5b_c00072{left:134.160000pt;}
.x6_c00072{left:135.840000pt;}
.x1b_c00072{left:137.760000pt;}
.x1f_c00072{left:139.440000pt;}
.xc_c00072{left:141.600000pt;}
.x69_c00072{left:142.800000pt;}
.x67_c00072{left:144.240000pt;}
.x7_c00072{left:147.360000pt;}
.x26_c00072{left:148.320000pt;}
.x2_c00072{left:149.520000pt;}
.x33_c00072{left:150.720000pt;}
.x38_c00072{left:153.600000pt;}
.x3b_c00072{left:154.560000pt;}
.x52_c00072{left:155.520000pt;}
.x60_c00072{left:156.480000pt;}
.x76_c00072{left:160.080000pt;}
.x71_c00072{left:161.942667pt;}
.x2b_c00072{left:163.920000pt;}
.x8_c00072{left:165.120000pt;}
.x34_c00072{left:166.800000pt;}
.x44_c00072{left:168.240000pt;}
.xd_c00072{left:169.440000pt;}
.x57_c00072{left:172.320000pt;}
.x61_c00072{left:174.720000pt;}
.x14_c00072{left:177.840000pt;}
.x27_c00072{left:179.040000pt;}
.x20_c00072{left:181.200000pt;}
.x49_c00072{left:182.400000pt;}
.x53_c00072{left:184.800000pt;}
.x4e_c00072{left:186.240000pt;}
.x5c_c00072{left:188.640000pt;}
.x41_c00072{left:189.840000pt;}
.x3c_c00072{left:192.240000pt;}
.x2c_c00072{left:194.640000pt;}
.x2e_c00072{left:197.280000pt;}
.x77_c00072{left:198.480000pt;}
.x62_c00072{left:200.640000pt;}
.x21_c00072{left:202.800000pt;}
.x72_c00072{left:205.064000pt;}
.x54_c00072{left:207.600000pt;}
.x9_c00072{left:212.880000pt;}
.x3f_c00072{left:215.040000pt;}
.x63_c00072{left:217.440000pt;}
.x6e_c00072{left:219.120000pt;}
.x55_c00072{left:220.560000pt;}
.x45_c00072{left:222.000000pt;}
.x4d_c00072{left:223.920000pt;}
.x3_c00072{left:225.600000pt;}
.x15_c00072{left:230.400000pt;}
.xe_c00072{left:232.560000pt;}
.x1c_c00072{left:238.080000pt;}
.x4f_c00072{left:240.000000pt;}
.x2f_c00072{left:242.160000pt;}
.x22_c00072{left:243.120000pt;}
.x35_c00072{left:244.320000pt;}
.x28_c00072{left:247.680000pt;}
.x39_c00072{left:249.360000pt;}
.xf_c00072{left:250.560000pt;}
.x64_c00072{left:252.720000pt;}
.x56_c00072{left:260.160000pt;}
.x46_c00072{left:262.560000pt;}
.x5a_c00072{left:263.520000pt;}
.x78_c00072{left:264.960000pt;}
.x6a_c00072{left:266.400000pt;}
.x30_c00072{left:268.080000pt;}
.x6f_c00072{left:269.040000pt;}
.x5d_c00072{left:270.240000pt;}
.x50_c00072{left:273.360000pt;}
.x47_c00072{left:276.240000pt;}
.x16_c00072{left:277.440000pt;}
.x31_c00072{left:279.600000pt;}
.x5e_c00072{left:280.560000pt;}
.x3d_c00072{left:282.480000pt;}
.x73_c00072{left:286.182667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00073 {
    display:none;
  }
  .loading-indicator_c00073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00073 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00073 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00073" -> "#page-container .classname_c00073")
 */
.pf_c00073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00073 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00073 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00073 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00073 {overflow:visible;}
  }
}
.c_c00073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00073 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00073:after { /* webkit #35443 */
  content: '';
}
.t_c00073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00073 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00073 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00073 { /* info for Javascript */
  display:none;
}
.l_c00073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00073:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00073 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00073.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_c00073{transform:matrix(0.082176,0.003126,-0.009503,0.249819,0,0);-ms-transform:matrix(0.082176,0.003126,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.082176,0.003126,-0.009503,0.249819,0,0);}
.m20_c00073{transform:matrix(0.084284,0.001349,-0.003999,0.249968,0,0);-ms-transform:matrix(0.084284,0.001349,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.084284,0.001349,-0.003999,0.249968,0,0);}
.m82_c00073{transform:matrix(0.120330,0.001925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.120330,0.001925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.120330,0.001925,-0.003999,0.249968,0,0);}
.m6e_c00073{transform:matrix(0.137337,0.002197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.137337,0.002197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.137337,0.002197,-0.003999,0.249968,0,0);}
.m86_c00073{transform:matrix(0.138042,0.002209,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138042,0.002209,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138042,0.002209,-0.003999,0.249968,0,0);}
.m28_c00073{transform:matrix(0.139607,0.002234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.139607,0.002234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.139607,0.002234,-0.003999,0.249968,0,0);}
.mf2_c00073{transform:matrix(0.143291,0.005451,-0.009503,0.249819,0,0);-ms-transform:matrix(0.143291,0.005451,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.143291,0.005451,-0.009503,0.249819,0,0);}
.m105_c00073{transform:matrix(0.146054,0.005556,-0.009503,0.249819,0,0);-ms-transform:matrix(0.146054,0.005556,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.146054,0.005556,-0.009503,0.249819,0,0);}
.md9_c00073{transform:matrix(0.148667,0.005655,-0.009503,0.249819,0,0);-ms-transform:matrix(0.148667,0.005655,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.148667,0.005655,-0.009503,0.249819,0,0);}
.m6c_c00073{transform:matrix(0.148846,0.002382,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148846,0.002382,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148846,0.002382,-0.003999,0.249968,0,0);}
.mcb_c00073{transform:matrix(0.153959,0.005856,-0.009503,0.249819,0,0);-ms-transform:matrix(0.153959,0.005856,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.153959,0.005856,-0.009503,0.249819,0,0);}
.m8d_c00073{transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);}
.mc9_c00073{transform:matrix(0.156961,0.005971,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156961,0.005971,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156961,0.005971,-0.009503,0.249819,0,0);}
.m70_c00073{transform:matrix(0.157640,0.002522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157640,0.002522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157640,0.002522,-0.003999,0.249968,0,0);}
.m0_c00073{transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);}
.mdd_c00073{transform:matrix(0.160364,0.006100,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160364,0.006100,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160364,0.006100,-0.009503,0.249819,0,0);}
.m17_c00073{transform:matrix(0.160384,0.002566,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160384,0.002566,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160384,0.002566,-0.003999,0.249968,0,0);}
.mcc_c00073{transform:matrix(0.160979,0.006123,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160979,0.006123,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160979,0.006123,-0.009503,0.249819,0,0);}
.mee_c00073{transform:matrix(0.161693,0.006150,-0.009503,0.249819,0,0);-ms-transform:matrix(0.161693,0.006150,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.161693,0.006150,-0.009503,0.249819,0,0);}
.md2_c00073{transform:matrix(0.162947,0.006198,-0.009503,0.249819,0,0);-ms-transform:matrix(0.162947,0.006198,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.162947,0.006198,-0.009503,0.249819,0,0);}
.me2_c00073{transform:matrix(0.163147,0.006206,-0.009503,0.249819,0,0);-ms-transform:matrix(0.163147,0.006206,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.163147,0.006206,-0.009503,0.249819,0,0);}
.m62_c00073{transform:matrix(0.163704,0.002619,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163704,0.002619,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163704,0.002619,-0.003999,0.249968,0,0);}
.m1a_c00073{transform:matrix(0.164489,0.002632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164489,0.002632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164489,0.002632,-0.003999,0.249968,0,0);}
.m76_c00073{transform:matrix(0.165034,0.002641,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165034,0.002641,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165034,0.002641,-0.003999,0.249968,0,0);}
.ma3_c00073{transform:matrix(0.165635,0.006300,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165635,0.006300,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165635,0.006300,-0.009503,0.249819,0,0);}
.me8_c00073{transform:matrix(0.165990,0.006314,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165990,0.006314,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165990,0.006314,-0.009503,0.249819,0,0);}
.md4_c00073{transform:matrix(0.166200,0.006322,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166200,0.006322,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166200,0.006322,-0.009503,0.249819,0,0);}
.m2a_c00073{transform:matrix(0.166764,0.002668,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166764,0.002668,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166764,0.002668,-0.003999,0.249968,0,0);}
.m106_c00073{transform:matrix(0.166899,0.006349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166899,0.006349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166899,0.006349,-0.009503,0.249819,0,0);}
.mef_c00073{transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);}
.mf4_c00073{transform:matrix(0.167374,0.006367,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167374,0.006367,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167374,0.006367,-0.009503,0.249819,0,0);}
.med_c00073{transform:matrix(0.168008,0.006391,-0.009503,0.249819,0,0);-ms-transform:matrix(0.168008,0.006391,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.168008,0.006391,-0.009503,0.249819,0,0);}
.m46_c00073{transform:matrix(0.168428,0.002695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168428,0.002695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168428,0.002695,-0.003999,0.249968,0,0);}
.mea_c00073{transform:matrix(0.168618,0.006414,-0.009503,0.249819,0,0);-ms-transform:matrix(0.168618,0.006414,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.168618,0.006414,-0.009503,0.249819,0,0);}
.m16_c00073{transform:matrix(0.168808,0.002701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168808,0.002701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168808,0.002701,-0.003999,0.249968,0,0);}
.m5e_c00073{transform:matrix(0.168993,0.002704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168993,0.002704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168993,0.002704,-0.003999,0.249968,0,0);}
.me1_c00073{transform:matrix(0.169008,0.006429,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169008,0.006429,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169008,0.006429,-0.009503,0.249819,0,0);}
.ma9_c00073{transform:matrix(0.169692,0.006455,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169692,0.006455,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169692,0.006455,-0.009503,0.249819,0,0);}
.m34_c00073{transform:matrix(0.169923,0.002719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169923,0.002719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169923,0.002719,-0.003999,0.249968,0,0);}
.ma_c00073{transform:matrix(0.171383,0.002742,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171383,0.002742,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171383,0.002742,-0.003999,0.249968,0,0);}
.mdc_c00073{transform:matrix(0.171621,0.006528,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171621,0.006528,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171621,0.006528,-0.009503,0.249819,0,0);}
.m57_c00073{transform:matrix(0.171898,0.002750,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171898,0.002750,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171898,0.002750,-0.003999,0.249968,0,0);}
.m5f_c00073{transform:matrix(0.171948,0.002751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171948,0.002751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171948,0.002751,-0.003999,0.249968,0,0);}
.mbc_c00073{transform:matrix(0.172106,0.006547,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172106,0.006547,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172106,0.006547,-0.009503,0.249819,0,0);}
.m26_c00073{transform:matrix(0.172463,0.002759,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172463,0.002759,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172463,0.002759,-0.003999,0.249968,0,0);}
.m60_c00073{transform:matrix(0.172578,0.002761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172578,0.002761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172578,0.002761,-0.003999,0.249968,0,0);}
.md3_c00073{transform:matrix(0.172610,0.006566,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172610,0.006566,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172610,0.006566,-0.009503,0.249819,0,0);}
.m35_c00073{transform:matrix(0.173773,0.002780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173773,0.002780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173773,0.002780,-0.003999,0.249968,0,0);}
.m2_c00073{transform:matrix(0.174148,0.002786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174148,0.002786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174148,0.002786,-0.003999,0.249968,0,0);}
.m102_c00073{transform:matrix(0.174359,0.006632,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174359,0.006632,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174359,0.006632,-0.009503,0.249819,0,0);}
.m6_c00073{transform:matrix(0.174893,0.002798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174893,0.002798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174893,0.002798,-0.003999,0.249968,0,0);}
.mc5_c00073{transform:matrix(0.175333,0.006669,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175333,0.006669,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175333,0.006669,-0.009503,0.249819,0,0);}
.m37_c00073{transform:matrix(0.175353,0.002806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175353,0.002806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175353,0.002806,-0.003999,0.249968,0,0);}
.m7f_c00073{transform:matrix(0.175723,0.002812,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175723,0.002812,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175723,0.002812,-0.003999,0.249968,0,0);}
.mff_c00073{transform:matrix(0.175868,0.006690,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175868,0.006690,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175868,0.006690,-0.009503,0.249819,0,0);}
.mca_c00073{transform:matrix(0.176153,0.006700,-0.009503,0.249819,0,0);-ms-transform:matrix(0.176153,0.006700,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.176153,0.006700,-0.009503,0.249819,0,0);}
.m32_c00073{transform:matrix(0.177087,0.002833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177087,0.002833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177087,0.002833,-0.003999,0.249968,0,0);}
.m7a_c00073{transform:matrix(0.177232,0.002836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177232,0.002836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177232,0.002836,-0.003999,0.249968,0,0);}
.m101_c00073{transform:matrix(0.177412,0.006748,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177412,0.006748,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177412,0.006748,-0.009503,0.249819,0,0);}
.mf5_c00073{transform:matrix(0.177691,0.006759,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177691,0.006759,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177691,0.006759,-0.009503,0.249819,0,0);}
.mb1_c00073{transform:matrix(0.177846,0.006765,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177846,0.006765,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177846,0.006765,-0.009503,0.249819,0,0);}
.m24_c00073{transform:matrix(0.177862,0.002846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177862,0.002846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177862,0.002846,-0.003999,0.249968,0,0);}
.m87_c00073{transform:matrix(0.178007,0.002848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178007,0.002848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178007,0.002848,-0.003999,0.249968,0,0);}
.me3_c00073{transform:matrix(0.178066,0.006773,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178066,0.006773,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178066,0.006773,-0.009503,0.249819,0,0);}
.m9b_c00073{transform:matrix(0.178196,0.006778,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178196,0.006778,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178196,0.006778,-0.009503,0.249819,0,0);}
.m71_c00073{transform:matrix(0.178677,0.002859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178677,0.002859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178677,0.002859,-0.003999,0.249968,0,0);}
.m42_c00073{transform:matrix(0.179442,0.002871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179442,0.002871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179442,0.002871,-0.003999,0.249968,0,0);}
.m77_c00073{transform:matrix(0.179982,0.002880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179982,0.002880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179982,0.002880,-0.003999,0.249968,0,0);}
.m4_c00073{transform:matrix(0.180362,0.002886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180362,0.002886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180362,0.002886,-0.003999,0.249968,0,0);}
.m5b_c00073{transform:matrix(0.180512,0.002888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180512,0.002888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180512,0.002888,-0.003999,0.249968,0,0);}
.m68_c00073{transform:matrix(0.180907,0.002895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180907,0.002895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180907,0.002895,-0.003999,0.249968,0,0);}
.m59_c00073{transform:matrix(0.180997,0.002896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180997,0.002896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180997,0.002896,-0.003999,0.249968,0,0);}
.m6a_c00073{transform:matrix(0.181067,0.002897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181067,0.002897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181067,0.002897,-0.003999,0.249968,0,0);}
.m7d_c00073{transform:matrix(0.181112,0.002898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181112,0.002898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181112,0.002898,-0.003999,0.249968,0,0);}
.mdb_c00073{transform:matrix(0.181319,0.006897,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181319,0.006897,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181319,0.006897,-0.009503,0.249819,0,0);}
.m23_c00073{transform:matrix(0.181427,0.002903,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181427,0.002903,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181427,0.002903,-0.003999,0.249968,0,0);}
.m73_c00073{transform:matrix(0.181587,0.002905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181587,0.002905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181587,0.002905,-0.003999,0.249968,0,0);}
.mc_c00073{transform:matrix(0.181982,0.002912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181982,0.002912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181982,0.002912,-0.003999,0.249968,0,0);}
.m31_c00073{transform:matrix(0.182037,0.002913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182037,0.002913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182037,0.002913,-0.003999,0.249968,0,0);}
.m41_c00073{transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);}
.m47_c00073{transform:matrix(0.183422,0.002935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183422,0.002935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183422,0.002935,-0.003999,0.249968,0,0);}
.m5_c00073{transform:matrix(0.183477,0.002936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183477,0.002936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183477,0.002936,-0.003999,0.249968,0,0);}
.m1_c00073{transform:matrix(0.183786,0.002941,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183786,0.002941,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183786,0.002941,-0.003999,0.249968,0,0);}
.m100_c00073{transform:matrix(0.183847,0.006993,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183847,0.006993,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183847,0.006993,-0.009503,0.249819,0,0);}
.mbd_c00073{transform:matrix(0.183977,0.006998,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183977,0.006998,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183977,0.006998,-0.009503,0.249819,0,0);}
.mc3_c00073{transform:matrix(0.184212,0.007007,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184212,0.007007,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184212,0.007007,-0.009503,0.249819,0,0);}
.m2f_c00073{transform:matrix(0.184556,0.002953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184556,0.002953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184556,0.002953,-0.003999,0.249968,0,0);}
.m7c_c00073{transform:matrix(0.184571,0.002953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184571,0.002953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184571,0.002953,-0.003999,0.249968,0,0);}
.m103_c00073{transform:matrix(0.184621,0.007023,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184621,0.007023,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184621,0.007023,-0.009503,0.249819,0,0);}
.m6b_c00073{transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184816,0.002957,-0.003999,0.249968,0,0);}
.m9f_c00073{transform:matrix(0.184946,0.007035,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184946,0.007035,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184946,0.007035,-0.009503,0.249819,0,0);}
.m99_c00073{transform:matrix(0.184991,0.007037,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184991,0.007037,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184991,0.007037,-0.009503,0.249819,0,0);}
.m4a_c00073{transform:matrix(0.185906,0.002974,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185906,0.002974,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185906,0.002974,-0.003999,0.249968,0,0);}
.mf1_c00073{transform:matrix(0.186200,0.007083,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186200,0.007083,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186200,0.007083,-0.009503,0.249819,0,0);}
.md5_c00073{transform:matrix(0.186275,0.007086,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186275,0.007086,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186275,0.007086,-0.009503,0.249819,0,0);}
.mfe_c00073{transform:matrix(0.186485,0.007094,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186485,0.007094,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186485,0.007094,-0.009503,0.249819,0,0);}
.m52_c00073{transform:matrix(0.186696,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186696,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186696,0.002987,-0.003999,0.249968,0,0);}
.m2e_c00073{transform:matrix(0.186701,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186701,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186701,0.002987,-0.003999,0.249968,0,0);}
.m3d_c00073{transform:matrix(0.186806,0.002989,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186806,0.002989,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186806,0.002989,-0.003999,0.249968,0,0);}
.me4_c00073{transform:matrix(0.187365,0.007127,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187365,0.007127,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187365,0.007127,-0.009503,0.249819,0,0);}
.mce_c00073{transform:matrix(0.187844,0.007145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187844,0.007145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187844,0.007145,-0.009503,0.249819,0,0);}
.mbb_c00073{transform:matrix(0.188224,0.007160,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188224,0.007160,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188224,0.007160,-0.009503,0.249819,0,0);}
.m27_c00073{transform:matrix(0.188376,0.003014,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188376,0.003014,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188376,0.003014,-0.003999,0.249968,0,0);}
.me0_c00073{transform:matrix(0.189103,0.007193,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189103,0.007193,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189103,0.007193,-0.009503,0.249819,0,0);}
.m2b_c00073{transform:matrix(0.189321,0.003029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189321,0.003029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189321,0.003029,-0.003999,0.249968,0,0);}
.m7b_c00073{transform:matrix(0.189351,0.003030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189351,0.003030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189351,0.003030,-0.003999,0.249968,0,0);}
.m75_c00073{transform:matrix(0.189561,0.003033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189561,0.003033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189561,0.003033,-0.003999,0.249968,0,0);}
.mfc_c00073{transform:matrix(0.189628,0.007213,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189628,0.007213,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189628,0.007213,-0.009503,0.249819,0,0);}
.md1_c00073{transform:matrix(0.189843,0.007221,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189843,0.007221,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189843,0.007221,-0.009503,0.249819,0,0);}
.m55_c00073{transform:matrix(0.190351,0.003046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190351,0.003046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190351,0.003046,-0.003999,0.249968,0,0);}
.md8_c00073{transform:matrix(0.190402,0.007243,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190402,0.007243,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190402,0.007243,-0.009503,0.249819,0,0);}
.m6f_c00073{transform:matrix(0.190471,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190471,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190471,0.003048,-0.003999,0.249968,0,0);}
.ma8_c00073{transform:matrix(0.190612,0.007251,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190612,0.007251,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190612,0.007251,-0.009503,0.249819,0,0);}
.mb2_c00073{transform:matrix(0.191032,0.007266,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191032,0.007266,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191032,0.007266,-0.009503,0.249819,0,0);}
.mf3_c00073{transform:matrix(0.191502,0.007284,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191502,0.007284,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191502,0.007284,-0.009503,0.249819,0,0);}
.m51_c00073{transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);}
.m104_c00073{transform:matrix(0.191706,0.007292,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191706,0.007292,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191706,0.007292,-0.009503,0.249819,0,0);}
.md0_c00073{transform:matrix(0.192256,0.007313,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192256,0.007313,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192256,0.007313,-0.009503,0.249819,0,0);}
.m8f_c00073{transform:matrix(0.192336,0.007316,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192336,0.007316,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192336,0.007316,-0.009503,0.249819,0,0);}
.mf_c00073{transform:matrix(0.192625,0.003082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192625,0.003082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192625,0.003082,-0.003999,0.249968,0,0);}
.m14_c00073{transform:matrix(0.192870,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192870,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192870,0.003086,-0.003999,0.249968,0,0);}
.m1c_c00073{transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192930,0.003087,-0.003999,0.249968,0,0);}
.m53_c00073{transform:matrix(0.192955,0.003087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192955,0.003087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192955,0.003087,-0.003999,0.249968,0,0);}
.m6d_c00073{transform:matrix(0.194225,0.003108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194225,0.003108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194225,0.003108,-0.003999,0.249968,0,0);}
.m2d_c00073{transform:matrix(0.194245,0.003108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194245,0.003108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194245,0.003108,-0.003999,0.249968,0,0);}
.m58_c00073{transform:matrix(0.194760,0.003116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194760,0.003116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194760,0.003116,-0.003999,0.249968,0,0);}
.m65_c00073{transform:matrix(0.194975,0.003120,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194975,0.003120,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194975,0.003120,-0.003999,0.249968,0,0);}
.mba_c00073{transform:matrix(0.195129,0.007422,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195129,0.007422,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195129,0.007422,-0.009503,0.249819,0,0);}
.m33_c00073{transform:matrix(0.195210,0.003123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195210,0.003123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195210,0.003123,-0.003999,0.249968,0,0);}
.m8e_c00073{transform:matrix(0.195705,0.003131,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195705,0.003131,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195705,0.003131,-0.003999,0.249968,0,0);}
.mc6_c00073{transform:matrix(0.195708,0.007444,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195708,0.007444,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195708,0.007444,-0.009503,0.249819,0,0);}
.m12_c00073{transform:matrix(0.195840,0.003133,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195840,0.003133,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195840,0.003133,-0.003999,0.249968,0,0);}
.m63_c00073{transform:matrix(0.195935,0.003135,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195935,0.003135,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195935,0.003135,-0.003999,0.249968,0,0);}
.m44_c00073{transform:matrix(0.196250,0.003140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196250,0.003140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196250,0.003140,-0.003999,0.249968,0,0);}
.m4c_c00073{transform:matrix(0.196830,0.003149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196830,0.003149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196830,0.003149,-0.003999,0.249968,0,0);}
.m69_c00073{transform:matrix(0.197295,0.003157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197295,0.003157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197295,0.003157,-0.003999,0.249968,0,0);}
.mf9_c00073{transform:matrix(0.197757,0.007522,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197757,0.007522,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197757,0.007522,-0.009503,0.249819,0,0);}
.m72_c00073{transform:matrix(0.197830,0.003165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197830,0.003165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197830,0.003165,-0.003999,0.249968,0,0);}
.mf6_c00073{transform:matrix(0.197982,0.007531,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197982,0.007531,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197982,0.007531,-0.009503,0.249819,0,0);}
.maa_c00073{transform:matrix(0.198072,0.007534,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198072,0.007534,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198072,0.007534,-0.009503,0.249819,0,0);}
.mc7_c00073{transform:matrix(0.198277,0.007542,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198277,0.007542,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198277,0.007542,-0.009503,0.249819,0,0);}
.m3b_c00073{transform:matrix(0.198330,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198330,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198330,0.003173,-0.003999,0.249968,0,0);}
.m5a_c00073{transform:matrix(0.198615,0.003178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198615,0.003178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198615,0.003178,-0.003999,0.249968,0,0);}
.mde_c00073{transform:matrix(0.198646,0.007556,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198646,0.007556,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198646,0.007556,-0.009503,0.249819,0,0);}
.m10_c00073{transform:matrix(0.198670,0.003179,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198670,0.003179,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198670,0.003179,-0.003999,0.249968,0,0);}
.md6_c00073{transform:matrix(0.198796,0.007562,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198796,0.007562,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198796,0.007562,-0.009503,0.249819,0,0);}
.mf8_c00073{transform:matrix(0.198846,0.007564,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198846,0.007564,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198846,0.007564,-0.009503,0.249819,0,0);}
.m19_c00073{transform:matrix(0.199025,0.003184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199025,0.003184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199025,0.003184,-0.003999,0.249968,0,0);}
.me6_c00073{transform:matrix(0.199466,0.007587,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199466,0.007587,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199466,0.007587,-0.009503,0.249819,0,0);}
.mf7_c00073{transform:matrix(0.199786,0.007599,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199786,0.007599,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199786,0.007599,-0.009503,0.249819,0,0);}
.m30_c00073{transform:matrix(0.200069,0.003201,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200069,0.003201,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200069,0.003201,-0.003999,0.249968,0,0);}
.m89_c00073{transform:matrix(0.200489,0.003208,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200489,0.003208,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200489,0.003208,-0.003999,0.249968,0,0);}
.m5d_c00073{transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);}
.m2c_c00073{transform:matrix(0.201614,0.003226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201614,0.003226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201614,0.003226,-0.003999,0.249968,0,0);}
.meb_c00073{transform:matrix(0.201749,0.007674,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201749,0.007674,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201749,0.007674,-0.009503,0.249819,0,0);}
.m8_c00073{transform:matrix(0.202044,0.003233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202044,0.003233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202044,0.003233,-0.003999,0.249968,0,0);}
.mae_c00073{transform:matrix(0.202154,0.007690,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202154,0.007690,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202154,0.007690,-0.009503,0.249819,0,0);}
.mec_c00073{transform:matrix(0.202529,0.007704,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202529,0.007704,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202529,0.007704,-0.009503,0.249819,0,0);}
.mda_c00073{transform:matrix(0.202658,0.007709,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202658,0.007709,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202658,0.007709,-0.009503,0.249819,0,0);}
.md7_c00073{transform:matrix(0.202988,0.007721,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202988,0.007721,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202988,0.007721,-0.009503,0.249819,0,0);}
.me5_c00073{transform:matrix(0.203198,0.007729,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203198,0.007729,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203198,0.007729,-0.009503,0.249819,0,0);}
.m84_c00073{transform:matrix(0.203324,0.003253,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203324,0.003253,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203324,0.003253,-0.003999,0.249968,0,0);}
.mc1_c00073{transform:matrix(0.203698,0.007748,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203698,0.007748,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203698,0.007748,-0.009503,0.249819,0,0);}
.m48_c00073{transform:matrix(0.204069,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204069,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204069,0.003265,-0.003999,0.249968,0,0);}
.m95_c00073{transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);}
.m7_c00073{transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);}
.m97_c00073{transform:matrix(0.205017,0.007798,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205017,0.007798,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205017,0.007798,-0.009503,0.249819,0,0);}
.m4f_c00073{transform:matrix(0.205379,0.003286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205379,0.003286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205379,0.003286,-0.003999,0.249968,0,0);}
.mb4_c00073{transform:matrix(0.205551,0.007819,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205551,0.007819,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205551,0.007819,-0.009503,0.249819,0,0);}
.me9_c00073{transform:matrix(0.205661,0.007823,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205661,0.007823,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205661,0.007823,-0.009503,0.249819,0,0);}
.mdf_c00073{transform:matrix(0.205881,0.007831,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205881,0.007831,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205881,0.007831,-0.009503,0.249819,0,0);}
.m3a_c00073{transform:matrix(0.205954,0.003295,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205954,0.003295,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205954,0.003295,-0.003999,0.249968,0,0);}
.mb6_c00073{transform:matrix(0.205961,0.007834,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205961,0.007834,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205961,0.007834,-0.009503,0.249819,0,0);}
.m3c_c00073{transform:matrix(0.206089,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206089,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206089,0.003297,-0.003999,0.249968,0,0);}
.mf0_c00073{transform:matrix(0.206406,0.007851,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206406,0.007851,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206406,0.007851,-0.009503,0.249819,0,0);}
.m98_c00073{transform:matrix(0.206671,0.007861,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206671,0.007861,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206671,0.007861,-0.009503,0.249819,0,0);}
.mc2_c00073{transform:matrix(0.207020,0.007875,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207020,0.007875,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207020,0.007875,-0.009503,0.249819,0,0);}
.m4b_c00073{transform:matrix(0.207044,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207044,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207044,0.003313,-0.003999,0.249968,0,0);}
.m22_c00073{transform:matrix(0.207088,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207088,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207088,0.003313,-0.003999,0.249968,0,0);}
.m25_c00073{transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);}
.m11_c00073{transform:matrix(0.207313,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207313,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207313,0.003317,-0.003999,0.249968,0,0);}
.m13_c00073{transform:matrix(0.207808,0.003325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207808,0.003325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207808,0.003325,-0.003999,0.249968,0,0);}
.m56_c00073{transform:matrix(0.207883,0.003326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207883,0.003326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207883,0.003326,-0.003999,0.249968,0,0);}
.m9a_c00073{transform:matrix(0.208289,0.007923,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208289,0.007923,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208289,0.007923,-0.009503,0.249819,0,0);}
.m4d_c00073{transform:matrix(0.208438,0.003335,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208438,0.003335,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208438,0.003335,-0.003999,0.249968,0,0);}
.mb5_c00073{transform:matrix(0.208854,0.007944,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208854,0.007944,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208854,0.007944,-0.009503,0.249819,0,0);}
.ma7_c00073{transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209014,0.007950,-0.009503,0.249819,0,0);}
.m9c_c00073{transform:matrix(0.209134,0.007955,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209134,0.007955,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209134,0.007955,-0.009503,0.249819,0,0);}
.mfb_c00073{transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);}
.m50_c00073{transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);}
.m29_c00073{transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);}
.m80_c00073{transform:matrix(0.210063,0.003361,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210063,0.003361,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210063,0.003361,-0.003999,0.249968,0,0);}
.m91_c00073{transform:matrix(0.210168,0.007994,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210168,0.007994,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210168,0.007994,-0.009503,0.249819,0,0);}
.mcd_c00073{transform:matrix(0.210223,0.007996,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210223,0.007996,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210223,0.007996,-0.009503,0.249819,0,0);}
.m5c_c00073{transform:matrix(0.210453,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210453,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210453,0.003367,-0.003999,0.249968,0,0);}
.m9d_c00073{transform:matrix(0.210653,0.008013,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210653,0.008013,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210653,0.008013,-0.009503,0.249819,0,0);}
.m78_c00073{transform:matrix(0.210713,0.003371,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210713,0.003371,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210713,0.003371,-0.003999,0.249968,0,0);}
.mcf_c00073{transform:matrix(0.211082,0.008029,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211082,0.008029,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211082,0.008029,-0.009503,0.249819,0,0);}
.mc8_c00073{transform:matrix(0.211112,0.008030,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211112,0.008030,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211112,0.008030,-0.009503,0.249819,0,0);}
.mb7_c00073{transform:matrix(0.211222,0.008034,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211222,0.008034,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211222,0.008034,-0.009503,0.249819,0,0);}
.mbe_c00073{transform:matrix(0.211287,0.008037,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211287,0.008037,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211287,0.008037,-0.009503,0.249819,0,0);}
.ma2_c00073{transform:matrix(0.211442,0.008043,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211442,0.008043,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211442,0.008043,-0.009503,0.249819,0,0);}
.m92_c00073{transform:matrix(0.211597,0.008049,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211597,0.008049,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211597,0.008049,-0.009503,0.249819,0,0);}
.m3f_c00073{transform:matrix(0.212133,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212133,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212133,0.003394,-0.003999,0.249968,0,0);}
.m9_c00073{transform:matrix(0.212258,0.003396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212258,0.003396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212258,0.003396,-0.003999,0.249968,0,0);}
.m90_c00073{transform:matrix(0.212811,0.008095,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212811,0.008095,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212811,0.008095,-0.009503,0.249819,0,0);}
.m88_c00073{transform:matrix(0.212913,0.003407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212913,0.003407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212913,0.003407,-0.003999,0.249968,0,0);}
.ma4_c00073{transform:matrix(0.213401,0.008117,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213401,0.008117,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213401,0.008117,-0.009503,0.249819,0,0);}
.mbf_c00073{transform:matrix(0.213680,0.008128,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213680,0.008128,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213680,0.008128,-0.009503,0.249819,0,0);}
.m40_c00073{transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);}
.m8a_c00073{transform:matrix(0.213878,0.003422,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213878,0.003422,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213878,0.003422,-0.003999,0.249968,0,0);}
.m1d_c00073{transform:matrix(0.214058,0.003425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214058,0.003425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214058,0.003425,-0.003999,0.249968,0,0);}
.m1e_c00073{transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);}
.ma1_c00073{transform:matrix(0.216134,0.008221,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216134,0.008221,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216134,0.008221,-0.009503,0.249819,0,0);}
.m18_c00073{transform:matrix(0.216277,0.003460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216277,0.003460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216277,0.003460,-0.003999,0.249968,0,0);}
.m43_c00073{transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);}
.ma5_c00073{transform:matrix(0.216808,0.008247,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216808,0.008247,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216808,0.008247,-0.009503,0.249819,0,0);}
.m39_c00073{transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);}
.m74_c00073{transform:matrix(0.217687,0.003483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217687,0.003483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217687,0.003483,-0.003999,0.249968,0,0);}
.mb0_c00073{transform:matrix(0.218067,0.008295,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218067,0.008295,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218067,0.008295,-0.009503,0.249819,0,0);}
.m96_c00073{transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);}
.mc0_c00073{transform:matrix(0.218842,0.008324,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218842,0.008324,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218842,0.008324,-0.009503,0.249819,0,0);}
.m45_c00073{transform:matrix(0.218857,0.003502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218857,0.003502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218857,0.003502,-0.003999,0.249968,0,0);}
.m7e_c00073{transform:matrix(0.219157,0.003507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219157,0.003507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219157,0.003507,-0.003999,0.249968,0,0);}
.m83_c00073{transform:matrix(0.219502,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219502,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219502,0.003512,-0.003999,0.249968,0,0);}
.mab_c00073{transform:matrix(0.219736,0.008358,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219736,0.008358,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219736,0.008358,-0.009503,0.249819,0,0);}
.m93_c00073{transform:matrix(0.220341,0.008381,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220341,0.008381,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220341,0.008381,-0.009503,0.249819,0,0);}
.m8b_c00073{transform:matrix(0.220472,0.003528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220472,0.003528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220472,0.003528,-0.003999,0.249968,0,0);}
.m54_c00073{transform:matrix(0.220592,0.003529,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220592,0.003529,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220592,0.003529,-0.003999,0.249968,0,0);}
.m15_c00073{transform:matrix(0.221192,0.003539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221192,0.003539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221192,0.003539,-0.003999,0.249968,0,0);}
.m8c_c00073{transform:matrix(0.221322,0.003541,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221322,0.003541,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221322,0.003541,-0.003999,0.249968,0,0);}
.mb_c00073{transform:matrix(0.223486,0.003576,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223486,0.003576,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223486,0.003576,-0.003999,0.249968,0,0);}
.m36_c00073{transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);}
.maf_c00073{transform:matrix(0.224633,0.008545,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224633,0.008545,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224633,0.008545,-0.009503,0.249819,0,0);}
.m3_c00073{transform:matrix(0.225466,0.003607,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225466,0.003607,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225466,0.003607,-0.003999,0.249968,0,0);}
.mac_c00073{transform:matrix(0.226261,0.008607,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226261,0.008607,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226261,0.008607,-0.009503,0.249819,0,0);}
.m64_c00073{transform:matrix(0.227381,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227381,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227381,0.003638,-0.003999,0.249968,0,0);}
.m38_c00073{transform:matrix(0.228701,0.003659,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228701,0.003659,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228701,0.003659,-0.003999,0.249968,0,0);}
.mc4_c00073{transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229419,0.008727,-0.009503,0.249819,0,0);}
.ma6_c00073{transform:matrix(0.231058,0.008789,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231058,0.008789,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231058,0.008789,-0.009503,0.249819,0,0);}
.m4e_c00073{transform:matrix(0.231405,0.003702,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231405,0.003702,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231405,0.003702,-0.003999,0.249968,0,0);}
.mfd_c00073{transform:matrix(0.231617,0.008810,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231617,0.008810,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231617,0.008810,-0.009503,0.249819,0,0);}
.mb8_c00073{transform:matrix(0.231732,0.008815,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231732,0.008815,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231732,0.008815,-0.009503,0.249819,0,0);}
.m49_c00073{transform:matrix(0.232010,0.003712,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232010,0.003712,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232010,0.003712,-0.003999,0.249968,0,0);}
.me7_c00073{transform:matrix(0.232132,0.008830,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232132,0.008830,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232132,0.008830,-0.009503,0.249819,0,0);}
.m1b_c00073{transform:matrix(0.233145,0.003730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233145,0.003730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233145,0.003730,-0.003999,0.249968,0,0);}
.mb3_c00073{transform:matrix(0.233156,0.008869,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233156,0.008869,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233156,0.008869,-0.009503,0.249819,0,0);}
.m94_c00073{transform:matrix(0.234525,0.008921,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234525,0.008921,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234525,0.008921,-0.009503,0.249819,0,0);}
.m21_c00073{transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241274,0.003860,-0.003999,0.249968,0,0);}
.m81_c00073{transform:matrix(0.245324,0.003925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245324,0.003925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245324,0.003925,-0.003999,0.249968,0,0);}
.m61_c00073{transform:matrix(0.245674,0.003931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245674,0.003931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245674,0.003931,-0.003999,0.249968,0,0);}
.mad_c00073{transform:matrix(0.246627,0.009381,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246627,0.009381,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246627,0.009381,-0.009503,0.249819,0,0);}
.ma0_c00073{transform:matrix(0.247571,0.009417,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247571,0.009417,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247571,0.009417,-0.009503,0.249819,0,0);}
.m3e_c00073{transform:matrix(0.253068,0.004049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253068,0.004049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253068,0.004049,-0.003999,0.249968,0,0);}
.mfa_c00073{transform:matrix(0.257474,0.009794,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257474,0.009794,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257474,0.009794,-0.009503,0.249819,0,0);}
.m9e_c00073{transform:matrix(0.262590,0.009988,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262590,0.009988,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262590,0.009988,-0.009503,0.249819,0,0);}
.me_c00073{transform:matrix(0.265436,0.004247,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265436,0.004247,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265436,0.004247,-0.003999,0.249968,0,0);}
.m66_c00073{transform:matrix(0.273485,0.004376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273485,0.004376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273485,0.004376,-0.003999,0.249968,0,0);}
.m85_c00073{transform:matrix(0.279484,0.004472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279484,0.004472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279484,0.004472,-0.003999,0.249968,0,0);}
.m67_c00073{transform:matrix(0.299972,0.004800,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299972,0.004800,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299972,0.004800,-0.003999,0.249968,0,0);}
.m1f_c00073{transform:matrix(0.301401,0.004822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301401,0.004822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301401,0.004822,-0.003999,0.249968,0,0);}
.m107_c00073{transform:matrix(0.302920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302920,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.351725,0.005628,-0.003999,0.249968,0,0);-ms-transform:matrix(0.351725,0.005628,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.351725,0.005628,-0.003999,0.249968,0,0);}
.m79_c00073{transform:matrix(0.360799,0.005773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.360799,0.005773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.360799,0.005773,-0.003999,0.249968,0,0);}
.m109_c00073{transform:matrix(0.474595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474595,0.000000,0.000000,0.250000,0,0);}
.m108_c00073{transform:matrix(0.850390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850390,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
.fc0_c00073{color:transparent;}
.fs14_c00073{font-size:22.050000px;}
.fs6_c00073{font-size:57.757392px;}
.fs3_c00073{font-size:58.807526px;}
.fsc_c00073{font-size:59.833389px;}
.fsb_c00073{font-size:59.857660px;}
.fsd_c00073{font-size:60.883098px;}
.fs7_c00073{font-size:60.907795px;}
.fse_c00073{font-size:61.932806px;}
.fs12_c00073{font-size:62.982515px;}
.fs1_c00073{font-size:63.008063px;}
.fs8_c00073{font-size:64.058198px;}
.fs2_c00073{font-size:65.108332px;}
.fsf_c00073{font-size:66.131641px;}
.fs4_c00073{font-size:66.158467px;}
.fs10_c00073{font-size:67.181349px;}
.fs9_c00073{font-size:67.208601px;}
.fs11_c00073{font-size:68.231058px;}
.fsa_c00073{font-size:68.258735px;}
.fs5_c00073{font-size:69.308870px;}
.fs13_c00073{font-size:72.429892px;}
.fs0_c00073{font-size:74.550000px;}
.y0_c00073{bottom:0.000000px;}
.y10b_c00073{bottom:22.233393px;}
.y10a_c00073{bottom:22.860816px;}
.y109_c00073{bottom:23.271913px;}
.y108_c00073{bottom:25.071966px;}
.y107_c00073{bottom:26.333676px;}
.y106_c00073{bottom:27.477643px;}
.y105_c00073{bottom:29.715078px;}
.y104_c00073{bottom:30.319335px;}
.y103_c00073{bottom:40.308421px;}
.y102_c00073{bottom:40.702933px;}
.y101_c00073{bottom:42.260178px;}
.y100_c00073{bottom:42.628284px;}
.yff_c00073{bottom:44.155401px;}
.yfe_c00073{bottom:45.516370px;}
.yfd_c00073{bottom:46.573869px;}
.yfc_c00073{bottom:48.129900px;}
.yfb_c00073{bottom:55.548334px;}
.yfa_c00073{bottom:56.455686px;}
.yf9_c00073{bottom:57.125872px;}
.yf8_c00073{bottom:59.247523px;}
.yf7_c00073{bottom:59.851746px;}
.yf6_c00073{bottom:61.321474px;}
.yf5_c00073{bottom:61.831078px;}
.yf4_c00073{bottom:62.898670px;}
.yf3_c00073{bottom:63.501696px;}
.yf2_c00073{bottom:65.138961px;}
.yf1_c00073{bottom:71.930982px;}
.yf0_c00073{bottom:73.252537px;}
.yef_c00073{bottom:74.010348px;}
.yee_c00073{bottom:75.642540px;}
.yed_c00073{bottom:76.175367px;}
.yec_c00073{bottom:77.200446px;}
.yeb_c00073{bottom:78.969729px;}
.yea_c00073{bottom:79.890858px;}
.ye9_c00073{bottom:81.605316px;}
.ye8_c00073{bottom:90.687201px;}
.ye7_c00073{bottom:91.484251px;}
.ye6_c00073{bottom:92.344440px;}
.ye5_c00073{bottom:93.612363px;}
.ye4_c00073{bottom:94.041382px;}
.ye3_c00073{bottom:95.581945px;}
.ye2_c00073{bottom:96.732622px;}
.ye1_c00073{bottom:97.602069px;}
.ye0_c00073{bottom:98.610315px;}
.y10c_c00073{bottom:102.330000px;}
.ydf_c00073{bottom:106.381042px;}
.yde_c00073{bottom:107.158917px;}
.ydd_c00073{bottom:108.915692px;}
.ydc_c00073{bottom:111.291282px;}
.ydb_c00073{bottom:112.082347px;}
.yda_c00073{bottom:113.862100px;}
.yd9_c00073{bottom:114.530806px;}
.yd8_c00073{bottom:122.281707px;}
.yd7_c00073{bottom:122.813283px;}
.yd6_c00073{bottom:124.756736px;}
.yd5_c00073{bottom:125.654747px;}
.yd4_c00073{bottom:127.572387px;}
.yd3_c00073{bottom:128.229498px;}
.yd2_c00073{bottom:129.611972px;}
.yd1_c00073{bottom:130.155428px;}
.yd0_c00073{bottom:131.270277px;}
.ycf_c00073{bottom:139.044638px;}
.yce_c00073{bottom:140.144061px;}
.ycd_c00073{bottom:144.350082px;}
.ycc_c00073{bottom:145.880333px;}
.ycb_c00073{bottom:149.086329px;}
.yca_c00073{bottom:156.233881px;}
.yc9_c00073{bottom:158.747925px;}
.yc8_c00073{bottom:159.474636px;}
.yc7_c00073{bottom:160.314323px;}
.yc6_c00073{bottom:162.844342px;}
.yc5_c00073{bottom:163.364499px;}
.yc4_c00073{bottom:165.675937px;}
.yc3_c00073{bottom:166.862091px;}
.yc2_c00073{bottom:168.244140px;}
.yc1_c00073{bottom:173.967003px;}
.yc0_c00073{bottom:175.573296px;}
.ybf_c00073{bottom:176.969778px;}
.ybe_c00073{bottom:177.335217px;}
.ybd_c00073{bottom:178.194900px;}
.ybc_c00073{bottom:179.646721px;}
.ybb_c00073{bottom:180.475534px;}
.yba_c00073{bottom:181.836587px;}
.yb9_c00073{bottom:184.050367px;}
.yb8_c00073{bottom:184.519344px;}
.yb7_c00073{bottom:185.257461px;}
.yb6_c00073{bottom:191.156974px;}
.yb5_c00073{bottom:191.623445px;}
.yb4_c00073{bottom:192.327351px;}
.yb3_c00073{bottom:194.871414px;}
.yb2_c00073{bottom:196.533381px;}
.yb1_c00073{bottom:198.263332px;}
.yb0_c00073{bottom:199.054261px;}
.yaf_c00073{bottom:200.912259px;}
.yae_c00073{bottom:207.768186px;}
.yad_c00073{bottom:208.556895px;}
.yac_c00073{bottom:209.406245px;}
.yab_c00073{bottom:210.117726px;}
.yaa_c00073{bottom:210.937533px;}
.ya9_c00073{bottom:211.428072px;}
.ya8_c00073{bottom:213.377444px;}
.ya7_c00073{bottom:215.100857px;}
.ya6_c00073{bottom:215.881016px;}
.ya5_c00073{bottom:216.719706px;}
.ya4_c00073{bottom:218.999486px;}
.ya3_c00073{bottom:224.037132px;}
.ya2_c00073{bottom:226.181892px;}
.ya1_c00073{bottom:226.960921px;}
.ya0_c00073{bottom:227.733111px;}
.y9f_c00073{bottom:229.468068px;}
.y9e_c00073{bottom:230.444703px;}
.y9d_c00073{bottom:232.649094px;}
.y9c_c00073{bottom:233.360284px;}
.y9b_c00073{bottom:234.119860px;}
.y9a_c00073{bottom:236.274555px;}
.y99_c00073{bottom:242.753796px;}
.y98_c00073{bottom:243.975819px;}
.y97_c00073{bottom:246.282894px;}
.y96_c00073{bottom:246.764772px;}
.y95_c00073{bottom:248.560899px;}
.y94_c00073{bottom:250.123212px;}
.y93_c00073{bottom:251.163120px;}
.y92_c00073{bottom:253.006500px;}
.y91_c00073{bottom:260.125080px;}
.y90_c00073{bottom:260.765340px;}
.y8f_c00073{bottom:263.631732px;}
.y8e_c00073{bottom:264.129732px;}
.y8d_c00073{bottom:266.983320px;}
.y8c_c00073{bottom:268.973568px;}
.y8b_c00073{bottom:269.984640px;}
.y8a_c00073{bottom:275.832084px;}
.y89_c00073{bottom:276.495624px;}
.y88_c00073{bottom:278.070684px;}
.y87_c00073{bottom:280.187796px;}
.y86_c00073{bottom:280.968936px;}
.y85_c00073{bottom:282.339804px;}
.y84_c00073{bottom:282.937176px;}
.y83_c00073{bottom:283.962588px;}
.y82_c00073{bottom:286.725972px;}
.y81_c00073{bottom:294.535476px;}
.y80_c00073{bottom:297.006192px;}
.y7f_c00073{bottom:297.715932px;}
.y7e_c00073{bottom:300.368220px;}
.y7d_c00073{bottom:302.555796px;}
.y7c_c00073{bottom:303.198612px;}
.y7b_c00073{bottom:309.557052px;}
.y7a_c00073{bottom:311.060208px;}
.y79_c00073{bottom:312.698472px;}
.y78_c00073{bottom:313.217148px;}
.y77_c00073{bottom:314.996688px;}
.y76_c00073{bottom:316.482156px;}
.y75_c00073{bottom:317.043696px;}
.y74_c00073{bottom:317.448828px;}
.y73_c00073{bottom:318.858924px;}
.y72_c00073{bottom:327.225780px;}
.y71_c00073{bottom:328.438104px;}
.y70_c00073{bottom:328.911276px;}
.y6f_c00073{bottom:330.332844px;}
.y6e_c00073{bottom:330.879636px;}
.y6d_c00073{bottom:332.981748px;}
.y6c_c00073{bottom:334.366944px;}
.y6b_c00073{bottom:335.599140px;}
.y6a_c00073{bottom:343.691748px;}
.y69_c00073{bottom:344.105892px;}
.y68_c00073{bottom:344.928228px;}
.y67_c00073{bottom:347.475408px;}
.y66_c00073{bottom:348.146484px;}
.y65_c00073{bottom:349.549608px;}
.y64_c00073{bottom:350.017860px;}
.y63_c00073{bottom:351.242724px;}
.y62_c00073{bottom:353.422512px;}
.y61_c00073{bottom:361.338996px;}
.y60_c00073{bottom:361.971864px;}
.y5f_c00073{bottom:364.616916px;}
.y5e_c00073{bottom:365.086836px;}
.y5d_c00073{bottom:366.632424px;}
.y5c_c00073{bottom:368.879580px;}
.y5b_c00073{bottom:370.070880px;}
.y5a_c00073{bottom:370.704204px;}
.y59_c00073{bottom:377.827152px;}
.y58_c00073{bottom:379.986960px;}
.y57_c00073{bottom:381.588084px;}
.y56_c00073{bottom:383.608320px;}
.y55_c00073{bottom:383.956572px;}
.y54_c00073{bottom:386.563428px;}
.y53_c00073{bottom:387.447156px;}
.y52_c00073{bottom:397.385256px;}
.y51_c00073{bottom:398.091108px;}
.y50_c00073{bottom:398.434932px;}
.y4f_c00073{bottom:399.527196px;}
.y4e_c00073{bottom:400.026252px;}
.y4d_c00073{bottom:400.860900px;}
.y4c_c00073{bottom:402.609516px;}
.y4b_c00073{bottom:404.182680px;}
.y4a_c00073{bottom:414.069972px;}
.y49_c00073{bottom:415.126776px;}
.y48_c00073{bottom:416.212764px;}
.y47_c00073{bottom:419.220120px;}
.y46_c00073{bottom:421.467972px;}
.y45_c00073{bottom:429.691116px;}
.y44_c00073{bottom:430.685112px;}
.y43_c00073{bottom:431.460816px;}
.y42_c00073{bottom:432.056592px;}
.y41_c00073{bottom:433.000536px;}
.y40_c00073{bottom:435.534444px;}
.y3f_c00073{bottom:436.187520px;}
.y3e_c00073{bottom:437.358384px;}
.y3d_c00073{bottom:437.937516px;}
.y3c_c00073{bottom:446.389620px;}
.y3b_c00073{bottom:446.773548px;}
.y3a_c00073{bottom:448.307232px;}
.y39_c00073{bottom:449.077788px;}
.y38_c00073{bottom:451.721616px;}
.y37_c00073{bottom:452.240556px;}
.y36_c00073{bottom:452.874312px;}
.y35_c00073{bottom:454.951488px;}
.y34_c00073{bottom:463.127412px;}
.y33_c00073{bottom:463.702848px;}
.y32_c00073{bottom:465.428532px;}
.y31_c00073{bottom:465.995028px;}
.y30_c00073{bottom:467.849904px;}
.y2f_c00073{bottom:469.518996px;}
.y2e_c00073{bottom:470.782704px;}
.y2d_c00073{bottom:471.418848px;}
.y2c_c00073{bottom:480.541320px;}
.y2b_c00073{bottom:482.244300px;}
.y2a_c00073{bottom:482.718684px;}
.y29_c00073{bottom:483.646560px;}
.y28_c00073{bottom:485.423820px;}
.y27_c00073{bottom:485.772612px;}
.y26_c00073{bottom:487.757280px;}
.y25_c00073{bottom:488.704116px;}
.y24_c00073{bottom:497.951460px;}
.y23_c00073{bottom:499.424316px;}
.y22_c00073{bottom:499.598232px;}
.y21_c00073{bottom:501.473820px;}
.y20_c00073{bottom:502.004244px;}
.y1f_c00073{bottom:503.643912px;}
.y1e_c00073{bottom:504.111012px;}
.y1d_c00073{bottom:505.444596px;}
.y1c_c00073{bottom:515.360724px;}
.y1b_c00073{bottom:516.819180px;}
.y1a_c00073{bottom:517.151412px;}
.y19_c00073{bottom:518.525184px;}
.y18_c00073{bottom:519.435444px;}
.y17_c00073{bottom:519.940536px;}
.y16_c00073{bottom:520.286712px;}
.y15_c00073{bottom:521.729952px;}
.y14_c00073{bottom:522.226908px;}
.y13_c00073{bottom:522.724104px;}
.y12_c00073{bottom:533.486304px;}
.y11_c00073{bottom:534.286416px;}
.y10_c00073{bottom:535.785864px;}
.yf_c00073{bottom:536.186184px;}
.ye_c00073{bottom:536.698536px;}
.yd_c00073{bottom:537.068028px;}
.yc_c00073{bottom:537.296676px;}
.yb_c00073{bottom:537.841992px;}
.ya_c00073{bottom:550.247424px;}
.y9_c00073{bottom:550.523808px;}
.y8_c00073{bottom:551.202096px;}
.y7_c00073{bottom:551.470032px;}
.y6_c00073{bottom:552.156888px;}
.y5_c00073{bottom:552.463080px;}
.y4_c00073{bottom:553.176696px;}
.y3_c00073{bottom:553.440120px;}
.y2_c00073{bottom:554.313000px;}
.y1_c00073{bottom:564.436500px;}
.h16_c00073{height:22.050000px;}
.h8_c00073{height:57.757392px;}
.h5_c00073{height:58.807526px;}
.he_c00073{height:59.833389px;}
.hd_c00073{height:59.857660px;}
.hf_c00073{height:60.883098px;}
.h9_c00073{height:60.907795px;}
.h10_c00073{height:61.932806px;}
.h14_c00073{height:62.982515px;}
.h3_c00073{height:63.008063px;}
.ha_c00073{height:64.058198px;}
.h4_c00073{height:65.108332px;}
.h11_c00073{height:66.131641px;}
.h6_c00073{height:66.158467px;}
.h12_c00073{height:67.181349px;}
.hb_c00073{height:67.208601px;}
.h13_c00073{height:68.231058px;}
.hc_c00073{height:68.258735px;}
.h7_c00073{height:69.308870px;}
.h15_c00073{height:72.429892px;}
.h2_c00073{height:74.550000px;}
.h1_c00073{height:612.000000px;}
.h0_c00073{height:612.300000px;}
.w0_c00073{width:368.820000px;}
.w1_c00073{width:369.000000px;}
.x0_c00073{left:0.000000px;}
.x69_c00073{left:42.483859px;}
.x2_c00073{left:43.545000px;}
.x22_c00073{left:45.332484px;}
.x45_c00073{left:61.422456px;}
.x12_c00073{left:62.698656px;}
.x28_c00073{left:64.982844px;}
.x41_c00073{left:69.560352px;}
.xb_c00073{left:71.706516px;}
.x72_c00073{left:73.765533px;}
.x6b_c00073{left:75.549169px;}
.x6f_c00073{left:76.780590px;}
.x23_c00073{left:77.971692px;}
.x13_c00073{left:81.098916px;}
.xc_c00073{left:83.746440px;}
.x4c_c00073{left:86.871732px;}
.x77_c00073{left:90.077262px;}
.x5c_c00073{left:91.500990px;}
.x1b_c00073{left:93.097656px;}
.x46_c00073{left:95.462112px;}
.x3_c00073{left:98.100000px;}
.x4d_c00073{left:99.532992px;}
.x73_c00073{left:100.923067px;}
.xd_c00073{left:103.182504px;}
.x3b_c00073{left:104.195388px;}
.x29_c00073{left:107.111412px;}
.x2f_c00073{left:108.857112px;}
.x1c_c00073{left:110.382108px;}
.x60_c00073{left:112.578992px;}
.x4_c00073{left:114.564000px;}
.x4e_c00073{left:117.093504px;}
.x5d_c00073{left:118.839624px;}
.x52_c00073{left:121.957992px;}
.x35_c00073{left:125.732064px;}
.x30_c00073{left:128.680548px;}
.xe_c00073{left:130.140708px;}
.x79_c00073{left:132.364768px;}
.x14_c00073{left:134.542008px;}
.x70_c00073{left:136.920141px;}
.x62_c00073{left:138.519798px;}
.x55_c00073{left:140.780484px;}
.x48_c00073{left:143.217624px;}
.x31_c00073{left:144.891396px;}
.x42_c00073{left:146.216772px;}
.x15_c00073{left:147.363252px;}
.xf_c00073{left:151.222200px;}
.x78_c00073{left:154.140391px;}
.x43_c00073{left:156.448320px;}
.x5_c00073{left:159.165000px;}
.x65_c00073{left:161.473062px;}
.x2a_c00073{left:162.760956px;}
.x16_c00073{left:166.084464px;}
.x1d_c00073{left:171.131928px;}
.x6d_c00073{left:173.126184px;}
.x6_c00073{left:178.302000px;}
.x63_c00073{left:180.513469px;}
.x1_c00073{left:182.250000px;}
.x74_c00073{left:184.930147px;}
.x1e_c00073{left:190.779972px;}
.x53_c00073{left:195.639924px;}
.x58_c00073{left:196.865496px;}
.x39_c00073{left:198.484116px;}
.x17_c00073{left:199.813536px;}
.x75_c00073{left:201.751351px;}
.x3c_c00073{left:203.571000px;}
.x61_c00073{left:205.158726px;}
.x5e_c00073{left:207.131244px;}
.x59_c00073{left:209.985888px;}
.x56_c00073{left:211.247040px;}
.x36_c00073{left:213.114396px;}
.x6a_c00073{left:214.583460px;}
.x44_c00073{left:215.852208px;}
.x47_c00073{left:217.279104px;}
.x4a_c00073{left:218.610540px;}
.x24_c00073{left:219.737220px;}
.x7_c00073{left:221.230500px;}
.x3d_c00073{left:222.758928px;}
.x2b_c00073{left:224.583108px;}
.x32_c00073{left:227.515752px;}
.x10_c00073{left:230.121408px;}
.x6c_c00073{left:231.314070px;}
.x4f_c00073{left:235.324740px;}
.x8_c00073{left:237.976500px;}
.x64_c00073{left:239.962671px;}
.x2c_c00073{left:243.484884px;}
.x7a_c00073{left:244.519401px;}
.x37_c00073{left:245.666628px;}
.x18_c00073{left:250.696584px;}
.x25_c00073{left:251.754072px;}
.x1f_c00073{left:260.273256px;}
.x3a_c00073{left:261.515472px;}
.x19_c00073{left:263.021424px;}
.x3e_c00073{left:264.768708px;}
.x20_c00073{left:266.735628px;}
.x26_c00073{left:268.087164px;}
.x11_c00073{left:272.251392px;}
.x66_c00073{left:275.045712px;}
.x3f_c00073{left:278.005596px;}
.x9_c00073{left:280.369500px;}
.x4b_c00073{left:281.798904px;}
.x54_c00073{left:283.952652px;}
.x5a_c00073{left:285.421344px;}
.x50_c00073{left:286.515636px;}
.x76_c00073{left:287.625457px;}
.x6e_c00073{left:289.854739px;}
.x38_c00073{left:292.936788px;}
.x67_c00073{left:294.063916px;}
.x71_c00073{left:296.548012px;}
.xa_c00073{left:297.643500px;}
.x33_c00073{left:299.512320px;}
.x2d_c00073{left:300.983496px;}
.x5b_c00073{left:302.275416px;}
.x40_c00073{left:305.148252px;}
.x68_c00073{left:306.642781px;}
.x34_c00073{left:311.504748px;}
.x5f_c00073{left:312.577692px;}
.x1a_c00073{left:317.040420px;}
.x2e_c00073{left:320.162700px;}
.x21_c00073{left:321.279528px;}
.x57_c00073{left:322.937952px;}
.x27_c00073{left:326.792448px;}
.x49_c00073{left:329.296056px;}
.x51_c00073{left:333.482112px;}
.x7b_c00073{left:364.500000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs14_c00073{font-size:19.600000pt;}
.fs6_c00073{font-size:51.339904pt;}
.fs3_c00073{font-size:52.273356pt;}
.fsc_c00073{font-size:53.185235pt;}
.fsb_c00073{font-size:53.206809pt;}
.fsd_c00073{font-size:54.118309pt;}
.fs7_c00073{font-size:54.140262pt;}
.fse_c00073{font-size:55.051384pt;}
.fs12_c00073{font-size:55.984458pt;}
.fs1_c00073{font-size:56.007168pt;}
.fs8_c00073{font-size:56.940620pt;}
.fs2_c00073{font-size:57.874073pt;}
.fsf_c00073{font-size:58.783681pt;}
.fs4_c00073{font-size:58.807526pt;}
.fs10_c00073{font-size:59.716755pt;}
.fs9_c00073{font-size:59.740979pt;}
.fs11_c00073{font-size:60.649829pt;}
.fsa_c00073{font-size:60.674432pt;}
.fs5_c00073{font-size:61.607884pt;}
.fs13_c00073{font-size:64.382127pt;}
.fs0_c00073{font-size:66.266667pt;}
.y0_c00073{bottom:0.000000pt;}
.y10b_c00073{bottom:19.763016pt;}
.y10a_c00073{bottom:20.320725pt;}
.y109_c00073{bottom:20.686145pt;}
.y108_c00073{bottom:22.286192pt;}
.y107_c00073{bottom:23.407712pt;}
.y106_c00073{bottom:24.424572pt;}
.y105_c00073{bottom:26.413403pt;}
.y104_c00073{bottom:26.950520pt;}
.y103_c00073{bottom:35.829708pt;}
.y102_c00073{bottom:36.180385pt;}
.y101_c00073{bottom:37.564603pt;}
.y100_c00073{bottom:37.891808pt;}
.yff_c00073{bottom:39.249245pt;}
.yfe_c00073{bottom:40.458996pt;}
.yfd_c00073{bottom:41.398995pt;}
.yfc_c00073{bottom:42.782133pt;}
.yfb_c00073{bottom:49.376297pt;}
.yfa_c00073{bottom:50.182832pt;}
.yf9_c00073{bottom:50.778553pt;}
.yf8_c00073{bottom:52.664465pt;}
.yf7_c00073{bottom:53.201552pt;}
.yf6_c00073{bottom:54.507977pt;}
.yf5_c00073{bottom:54.960959pt;}
.yf4_c00073{bottom:55.909929pt;}
.yf3_c00073{bottom:56.445952pt;}
.yf2_c00073{bottom:57.901299pt;}
.yf1_c00073{bottom:63.938651pt;}
.yf0_c00073{bottom:65.113367pt;}
.yef_c00073{bottom:65.786976pt;}
.yee_c00073{bottom:67.237813pt;}
.yed_c00073{bottom:67.711437pt;}
.yec_c00073{bottom:68.622619pt;}
.yeb_c00073{bottom:70.195315pt;}
.yea_c00073{bottom:71.014096pt;}
.ye9_c00073{bottom:72.538059pt;}
.ye8_c00073{bottom:80.610845pt;}
.ye7_c00073{bottom:81.319335pt;}
.ye6_c00073{bottom:82.083947pt;}
.ye5_c00073{bottom:83.210989pt;}
.ye4_c00073{bottom:83.592340pt;}
.ye3_c00073{bottom:84.961729pt;}
.ye2_c00073{bottom:85.984553pt;}
.ye1_c00073{bottom:86.757395pt;}
.ye0_c00073{bottom:87.653613pt;}
.y10c_c00073{bottom:90.960000pt;}
.ydf_c00073{bottom:94.560927pt;}
.yde_c00073{bottom:95.252371pt;}
.ydd_c00073{bottom:96.813948pt;}
.ydc_c00073{bottom:98.925584pt;}
.ydb_c00073{bottom:99.628753pt;}
.yda_c00073{bottom:101.210756pt;}
.yd9_c00073{bottom:101.805161pt;}
.yd8_c00073{bottom:108.694851pt;}
.yd7_c00073{bottom:109.167363pt;}
.yd6_c00073{bottom:110.894876pt;}
.yd5_c00073{bottom:111.693108pt;}
.yd4_c00073{bottom:113.397677pt;}
.yd3_c00073{bottom:113.981776pt;}
.yd2_c00073{bottom:115.210641pt;}
.yd1_c00073{bottom:115.693713pt;}
.yd0_c00073{bottom:116.684691pt;}
.ycf_c00073{bottom:123.595233pt;}
.yce_c00073{bottom:124.572499pt;}
.ycd_c00073{bottom:128.311184pt;}
.ycc_c00073{bottom:129.671407pt;}
.ycb_c00073{bottom:132.521181pt;}
.yca_c00073{bottom:138.874561pt;}
.yc9_c00073{bottom:141.109267pt;}
.yc8_c00073{bottom:141.755232pt;}
.yc7_c00073{bottom:142.501620pt;}
.yc6_c00073{bottom:144.750527pt;}
.yc5_c00073{bottom:145.212888pt;}
.yc4_c00073{bottom:147.267500pt;}
.yc3_c00073{bottom:148.321859pt;}
.yc2_c00073{bottom:149.550347pt;}
.yc1_c00073{bottom:154.637336pt;}
.yc0_c00073{bottom:156.065152pt;}
.ybf_c00073{bottom:157.306469pt;}
.ybe_c00073{bottom:157.631304pt;}
.ybd_c00073{bottom:158.395467pt;}
.ybc_c00073{bottom:159.685975pt;}
.ybb_c00073{bottom:160.422697pt;}
.yba_c00073{bottom:161.632521pt;}
.yb9_c00073{bottom:163.600327pt;}
.yb8_c00073{bottom:164.017195pt;}
.yb7_c00073{bottom:164.673299pt;}
.yb6_c00073{bottom:169.917311pt;}
.yb5_c00073{bottom:170.331951pt;}
.yb4_c00073{bottom:170.957645pt;}
.yb3_c00073{bottom:173.219035pt;}
.yb2_c00073{bottom:174.696339pt;}
.yb1_c00073{bottom:176.234073pt;}
.yb0_c00073{bottom:176.937121pt;}
.yaf_c00073{bottom:178.588675pt;}
.yae_c00073{bottom:184.682832pt;}
.yad_c00073{bottom:185.383907pt;}
.yac_c00073{bottom:186.138884pt;}
.yab_c00073{bottom:186.771312pt;}
.yaa_c00073{bottom:187.500029pt;}
.ya9_c00073{bottom:187.936064pt;}
.ya8_c00073{bottom:189.668839pt;}
.ya7_c00073{bottom:191.200761pt;}
.ya6_c00073{bottom:191.894236pt;}
.ya5_c00073{bottom:192.639739pt;}
.ya4_c00073{bottom:194.666209pt;}
.ya3_c00073{bottom:199.144117pt;}
.ya2_c00073{bottom:201.050571pt;}
.ya1_c00073{bottom:201.743041pt;}
.ya0_c00073{bottom:202.429432pt;}
.y9f_c00073{bottom:203.971616pt;}
.y9e_c00073{bottom:204.839736pt;}
.y9d_c00073{bottom:206.799195pt;}
.y9c_c00073{bottom:207.431364pt;}
.y9b_c00073{bottom:208.106543pt;}
.y9a_c00073{bottom:210.021827pt;}
.y99_c00073{bottom:215.781152pt;}
.y98_c00073{bottom:216.867395pt;}
.y97_c00073{bottom:218.918128pt;}
.y96_c00073{bottom:219.346464pt;}
.y95_c00073{bottom:220.943021pt;}
.y94_c00073{bottom:222.331744pt;}
.y93_c00073{bottom:223.256107pt;}
.y92_c00073{bottom:224.894667pt;}
.y91_c00073{bottom:231.222293pt;}
.y90_c00073{bottom:231.791413pt;}
.y8f_c00073{bottom:234.339317pt;}
.y8e_c00073{bottom:234.781984pt;}
.y8d_c00073{bottom:237.318507pt;}
.y8c_c00073{bottom:239.087616pt;}
.y8b_c00073{bottom:239.986347pt;}
.y8a_c00073{bottom:245.184075pt;}
.y89_c00073{bottom:245.773888pt;}
.y88_c00073{bottom:247.173941pt;}
.y87_c00073{bottom:249.055819pt;}
.y86_c00073{bottom:249.750165pt;}
.y85_c00073{bottom:250.968715pt;}
.y84_c00073{bottom:251.499712pt;}
.y83_c00073{bottom:252.411189pt;}
.y82_c00073{bottom:254.867531pt;}
.y81_c00073{bottom:261.809312pt;}
.y80_c00073{bottom:264.005504pt;}
.y7f_c00073{bottom:264.636384pt;}
.y7e_c00073{bottom:266.993973pt;}
.y7d_c00073{bottom:268.938485pt;}
.y7c_c00073{bottom:269.509877pt;}
.y7b_c00073{bottom:275.161824pt;}
.y7a_c00073{bottom:276.497963pt;}
.y79_c00073{bottom:277.954197pt;}
.y78_c00073{bottom:278.415243pt;}
.y77_c00073{bottom:279.997056pt;}
.y76_c00073{bottom:281.317472pt;}
.y75_c00073{bottom:281.816619pt;}
.y74_c00073{bottom:282.176736pt;}
.y73_c00073{bottom:283.430155pt;}
.y72_c00073{bottom:290.867360pt;}
.y71_c00073{bottom:291.944981pt;}
.y70_c00073{bottom:292.365579pt;}
.y6f_c00073{bottom:293.629195pt;}
.y6e_c00073{bottom:294.115232pt;}
.y6d_c00073{bottom:295.983776pt;}
.y6c_c00073{bottom:297.215061pt;}
.y6b_c00073{bottom:298.310347pt;}
.y6a_c00073{bottom:305.503776pt;}
.y69_c00073{bottom:305.871904pt;}
.y68_c00073{bottom:306.602869pt;}
.y67_c00073{bottom:308.867029pt;}
.y66_c00073{bottom:309.463541pt;}
.y65_c00073{bottom:310.710763pt;}
.y64_c00073{bottom:311.126987pt;}
.y63_c00073{bottom:312.215755pt;}
.y62_c00073{bottom:314.153344pt;}
.y61_c00073{bottom:321.190219pt;}
.y60_c00073{bottom:321.752768pt;}
.y5f_c00073{bottom:324.103925pt;}
.y5e_c00073{bottom:324.521632pt;}
.y5d_c00073{bottom:325.895488pt;}
.y5c_c00073{bottom:327.892960pt;}
.y5b_c00073{bottom:328.951893pt;}
.y5a_c00073{bottom:329.514848pt;}
.y59_c00073{bottom:335.846357pt;}
.y58_c00073{bottom:337.766187pt;}
.y57_c00073{bottom:339.189408pt;}
.y56_c00073{bottom:340.985173pt;}
.y55_c00073{bottom:341.294731pt;}
.y54_c00073{bottom:343.611936pt;}
.y53_c00073{bottom:344.397472pt;}
.y52_c00073{bottom:353.231339pt;}
.y51_c00073{bottom:353.858763pt;}
.y50_c00073{bottom:354.164384pt;}
.y4f_c00073{bottom:355.135285pt;}
.y4e_c00073{bottom:355.578891pt;}
.y4d_c00073{bottom:356.320800pt;}
.y4c_c00073{bottom:357.875125pt;}
.y4b_c00073{bottom:359.273493pt;}
.y4a_c00073{bottom:368.062197pt;}
.y49_c00073{bottom:369.001579pt;}
.y48_c00073{bottom:369.966901pt;}
.y47_c00073{bottom:372.640107pt;}
.y46_c00073{bottom:374.638197pt;}
.y45_c00073{bottom:381.947659pt;}
.y44_c00073{bottom:382.831211pt;}
.y43_c00073{bottom:383.520725pt;}
.y42_c00073{bottom:384.050304pt;}
.y41_c00073{bottom:384.889365pt;}
.y40_c00073{bottom:387.141728pt;}
.y3f_c00073{bottom:387.722240pt;}
.y3e_c00073{bottom:388.763008pt;}
.y3d_c00073{bottom:389.277792pt;}
.y3c_c00073{bottom:396.790773pt;}
.y3b_c00073{bottom:397.132043pt;}
.y3a_c00073{bottom:398.495317pt;}
.y39_c00073{bottom:399.180256pt;}
.y38_c00073{bottom:401.530325pt;}
.y37_c00073{bottom:401.991605pt;}
.y36_c00073{bottom:402.554944pt;}
.y35_c00073{bottom:404.401323pt;}
.y34_c00073{bottom:411.668811pt;}
.y33_c00073{bottom:412.180309pt;}
.y32_c00073{bottom:413.714251pt;}
.y31_c00073{bottom:414.217803pt;}
.y30_c00073{bottom:415.866581pt;}
.y2f_c00073{bottom:417.350219pt;}
.y2e_c00073{bottom:418.473515pt;}
.y2d_c00073{bottom:419.038976pt;}
.y2c_c00073{bottom:427.147840pt;}
.y2b_c00073{bottom:428.661600pt;}
.y2a_c00073{bottom:429.083275pt;}
.y29_c00073{bottom:429.908053pt;}
.y28_c00073{bottom:431.487840pt;}
.y27_c00073{bottom:431.797877pt;}
.y26_c00073{bottom:433.562027pt;}
.y25_c00073{bottom:434.403659pt;}
.y24_c00073{bottom:442.623520pt;}
.y23_c00073{bottom:443.932725pt;}
.y22_c00073{bottom:444.087317pt;}
.y21_c00073{bottom:445.754507pt;}
.y20_c00073{bottom:446.225995pt;}
.y1f_c00073{bottom:447.683477pt;}
.y1e_c00073{bottom:448.098677pt;}
.y1d_c00073{bottom:449.284085pt;}
.y1c_c00073{bottom:458.098421pt;}
.y1b_c00073{bottom:459.394827pt;}
.y1a_c00073{bottom:459.690144pt;}
.y19_c00073{bottom:460.911275pt;}
.y18_c00073{bottom:461.720395pt;}
.y17_c00073{bottom:462.169365pt;}
.y16_c00073{bottom:462.477077pt;}
.y15_c00073{bottom:463.759957pt;}
.y14_c00073{bottom:464.201696pt;}
.y13_c00073{bottom:464.643648pt;}
.y12_c00073{bottom:474.210048pt;}
.y11_c00073{bottom:474.921259pt;}
.y10_c00073{bottom:476.254101pt;}
.yf_c00073{bottom:476.609941pt;}
.ye_c00073{bottom:477.065365pt;}
.yd_c00073{bottom:477.393803pt;}
.yc_c00073{bottom:477.597045pt;}
.yb_c00073{bottom:478.081771pt;}
.ya_c00073{bottom:489.108821pt;}
.y9_c00073{bottom:489.354496pt;}
.y8_c00073{bottom:489.957419pt;}
.y7_c00073{bottom:490.195584pt;}
.y6_c00073{bottom:490.806123pt;}
.y5_c00073{bottom:491.078293pt;}
.y4_c00073{bottom:491.712619pt;}
.y3_c00073{bottom:491.946773pt;}
.y2_c00073{bottom:492.722667pt;}
.y1_c00073{bottom:501.721333pt;}
.h16_c00073{height:19.600000pt;}
.h8_c00073{height:51.339904pt;}
.h5_c00073{height:52.273356pt;}
.he_c00073{height:53.185235pt;}
.hd_c00073{height:53.206809pt;}
.hf_c00073{height:54.118309pt;}
.h9_c00073{height:54.140262pt;}
.h10_c00073{height:55.051384pt;}
.h14_c00073{height:55.984458pt;}
.h3_c00073{height:56.007168pt;}
.ha_c00073{height:56.940620pt;}
.h4_c00073{height:57.874073pt;}
.h11_c00073{height:58.783681pt;}
.h6_c00073{height:58.807526pt;}
.h12_c00073{height:59.716755pt;}
.hb_c00073{height:59.740979pt;}
.h13_c00073{height:60.649829pt;}
.hc_c00073{height:60.674432pt;}
.h7_c00073{height:61.607884pt;}
.h15_c00073{height:64.382127pt;}
.h2_c00073{height:66.266667pt;}
.h1_c00073{height:544.000000pt;}
.h0_c00073{height:544.266667pt;}
.w0_c00073{width:327.840000pt;}
.w1_c00073{width:328.000000pt;}
.x0_c00073{left:0.000000pt;}
.x69_c00073{left:37.763431pt;}
.x2_c00073{left:38.706667pt;}
.x22_c00073{left:40.295541pt;}
.x45_c00073{left:54.597739pt;}
.x12_c00073{left:55.732139pt;}
.x28_c00073{left:57.762528pt;}
.x41_c00073{left:61.831424pt;}
.xb_c00073{left:63.739125pt;}
.x72_c00073{left:65.569363pt;}
.x6b_c00073{left:67.154817pt;}
.x6f_c00073{left:68.249413pt;}
.x23_c00073{left:69.308171pt;}
.x13_c00073{left:72.087925pt;}
.xc_c00073{left:74.441280pt;}
.x4c_c00073{left:77.219317pt;}
.x77_c00073{left:80.068677pt;}
.x5c_c00073{left:81.334213pt;}
.x1b_c00073{left:82.753472pt;}
.x46_c00073{left:84.855211pt;}
.x3_c00073{left:87.200000pt;}
.x4d_c00073{left:88.473771pt;}
.x73_c00073{left:89.709393pt;}
.xd_c00073{left:91.717781pt;}
.x3b_c00073{left:92.618123pt;}
.x29_c00073{left:95.210144pt;}
.x2f_c00073{left:96.761877pt;}
.x1c_c00073{left:98.117429pt;}
.x60_c00073{left:100.070215pt;}
.x4_c00073{left:101.834667pt;}
.x4e_c00073{left:104.083115pt;}
.x5d_c00073{left:105.635221pt;}
.x52_c00073{left:108.407104pt;}
.x35_c00073{left:111.761835pt;}
.x30_c00073{left:114.382709pt;}
.xe_c00073{left:115.680629pt;}
.x79_c00073{left:117.657572pt;}
.x14_c00073{left:119.592896pt;}
.x70_c00073{left:121.706792pt;}
.x62_c00073{left:123.128709pt;}
.x55_c00073{left:125.138208pt;}
.x48_c00073{left:127.304555pt;}
.x31_c00073{left:128.792352pt;}
.x42_c00073{left:129.970464pt;}
.x15_c00073{left:130.989557pt;}
.xf_c00073{left:134.419733pt;}
.x78_c00073{left:137.013681pt;}
.x43_c00073{left:139.065173pt;}
.x5_c00073{left:141.480000pt;}
.x65_c00073{left:143.531611pt;}
.x2a_c00073{left:144.676405pt;}
.x16_c00073{left:147.630635pt;}
.x1d_c00073{left:152.117269pt;}
.x6d_c00073{left:153.889941pt;}
.x6_c00073{left:158.490667pt;}
.x63_c00073{left:160.456417pt;}
.x1_c00073{left:162.000000pt;}
.x74_c00073{left:164.382353pt;}
.x1e_c00073{left:169.582197pt;}
.x53_c00073{left:173.902155pt;}
.x58_c00073{left:174.991552pt;}
.x39_c00073{left:176.430325pt;}
.x17_c00073{left:177.612032pt;}
.x75_c00073{left:179.334535pt;}
.x3c_c00073{left:180.952000pt;}
.x61_c00073{left:182.363312pt;}
.x5e_c00073{left:184.116661pt;}
.x59_c00073{left:186.654123pt;}
.x56_c00073{left:187.775147pt;}
.x36_c00073{left:189.435019pt;}
.x6a_c00073{left:190.740853pt;}
.x44_c00073{left:191.868629pt;}
.x47_c00073{left:193.136981pt;}
.x4a_c00073{left:194.320480pt;}
.x24_c00073{left:195.321973pt;}
.x7_c00073{left:196.649333pt;}
.x3d_c00073{left:198.007936pt;}
.x2b_c00073{left:199.629429pt;}
.x32_c00073{left:202.236224pt;}
.x10_c00073{left:204.552363pt;}
.x6c_c00073{left:205.612507pt;}
.x4f_c00073{left:209.177547pt;}
.x8_c00073{left:211.534667pt;}
.x64_c00073{left:213.300152pt;}
.x2c_c00073{left:216.431008pt;}
.x7a_c00073{left:217.350579pt;}
.x37_c00073{left:218.370336pt;}
.x18_c00073{left:222.841408pt;}
.x25_c00073{left:223.781397pt;}
.x1f_c00073{left:231.354005pt;}
.x3a_c00073{left:232.458197pt;}
.x19_c00073{left:233.796821pt;}
.x3e_c00073{left:235.349963pt;}
.x20_c00073{left:237.098336pt;}
.x26_c00073{left:238.299701pt;}
.x11_c00073{left:242.001237pt;}
.x66_c00073{left:244.485077pt;}
.x3f_c00073{left:247.116085pt;}
.x9_c00073{left:249.217333pt;}
.x4b_c00073{left:250.487915pt;}
.x54_c00073{left:252.402357pt;}
.x5a_c00073{left:253.707861pt;}
.x50_c00073{left:254.680565pt;}
.x76_c00073{left:255.667073pt;}
.x6e_c00073{left:257.648657pt;}
.x38_c00073{left:260.388256pt;}
.x67_c00073{left:261.390148pt;}
.x71_c00073{left:263.598233pt;}
.xa_c00073{left:264.572000pt;}
.x33_c00073{left:266.233173pt;}
.x2d_c00073{left:267.540885pt;}
.x5b_c00073{left:268.689259pt;}
.x40_c00073{left:271.242891pt;}
.x68_c00073{left:272.571361pt;}
.x34_c00073{left:276.893109pt;}
.x5f_c00073{left:277.846837pt;}
.x1a_c00073{left:281.813707pt;}
.x2e_c00073{left:284.589067pt;}
.x21_c00073{left:285.581803pt;}
.x57_c00073{left:287.055957pt;}
.x27_c00073{left:290.482176pt;}
.x49_c00073{left:292.707605pt;}
.x51_c00073{left:296.428544pt;}
.x7b_c00073{left:324.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00074 {
    display:none;
  }
  .loading-indicator_c00074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00074 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00074 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00074" -> "#page-container .classname_c00074")
 */
.pf_c00074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00074 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00074 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00074 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00074 {overflow:visible;}
  }
}
.c_c00074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00074 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00074:after { /* webkit #35443 */
  content: '';
}
.t_c00074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00074 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00074 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00074 { /* info for Javascript */
  display:none;
}
.l_c00074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00074:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00074 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00074.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00074;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00074{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00074{transform:matrix(0.113340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113340,0.000000,0.000000,0.250000,0,0);}
.maa_c00074{transform:matrix(0.120855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120855,0.000000,0.000000,0.250000,0,0);}
.m75_c00074{transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);}
.m8d_c00074{transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);}
.me9_c00074{transform:matrix(0.150470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150470,0.000000,0.000000,0.250000,0,0);}
.m8f_c00074{transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00074{transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);}
.m61_c00074{transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);}
.m1a_c00074{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m73_c00074{transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);}
.m1d_c00074{transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);}
.mc4_c00074{transform:matrix(0.156795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156795,0.000000,0.000000,0.250000,0,0);}
.ma2_c00074{transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);}
.ma_c00074{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);}
.mc3_c00074{transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);}
.m71_c00074{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m72_c00074{transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00074{transform:matrix(0.164730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);}
.m8e_c00074{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m6e_c00074{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.m84_c00074{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m51_c00074{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00074{transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);}
.m29_c00074{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.mbe_c00074{transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);}
.m90_c00074{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m26_c00074{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m94_c00074{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m88_c00074{transform:matrix(0.172435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172435,0.000000,0.000000,0.250000,0,0);}
.ma6_c00074{transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);}
.m91_c00074{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m8b_c00074{transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);}
.mba_c00074{transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00074{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00074{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.ma5_c00074{transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);}
.m96_c00074{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.mc0_c00074{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.me_c00074{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.176040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176040,0.000000,0.000000,0.250000,0,0);}
.m56_c00074{transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.m65_c00074{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);}
.m4d_c00074{transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);}
.m19_c00074{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m5a_c00074{transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);}
.m3c_c00074{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00074{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00074{transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);}
.ma3_c00074{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.m87_c00074{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.me8_c00074{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m60_c00074{transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);}
.m2f_c00074{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.ma1_c00074{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m62_c00074{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.mbb_c00074{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.m4c_c00074{transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);}
.m64_c00074{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m38_c00074{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m70_c00074{transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);}
.ma8_c00074{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mb9_c00074{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.mb5_c00074{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.ma7_c00074{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.m86_c00074{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);}
.me5_c00074{transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);}
.mcf_c00074{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m7d_c00074{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.mbf_c00074{transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);}
.mac_c00074{transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);}
.m9f_c00074{transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);}
.m40_c00074{transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);}
.m93_c00074{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m74_c00074{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);}
.me3_c00074{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m50_c00074{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.mec_c00074{transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);}
.m83_c00074{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.mad_c00074{transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);}
.m2a_c00074{transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);}
.m66_c00074{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.md5_c00074{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.mdb_c00074{transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);}
.m36_c00074{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.m89_c00074{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.mdc_c00074{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m5f_c00074{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00074{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m31_c00074{transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);}
.m8c_c00074{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mbd_c00074{transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);}
.m85_c00074{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m30_c00074{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m5c_c00074{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m5d_c00074{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m2d_c00074{transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);}
.m98_c00074{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.m7f_c00074{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m4e_c00074{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);}
.m68_c00074{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m81_c00074{transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);}
.m7e_c00074{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.m22_c00074{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m20_c00074{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.m2e_c00074{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00074{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.mb4_c00074{transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);}
.m4b_c00074{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.med_c00074{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.m23_c00074{transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);}
.mce_c00074{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.md8_c00074{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m28_c00074{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m47_c00074{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.m9a_c00074{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.mc2_c00074{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00074{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00074{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.mee_c00074{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);}
.ma9_c00074{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00074{transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m67_c00074{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.m59_c00074{transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);}
.mca_c00074{transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);}
.m35_c00074{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00074{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.md3_c00074{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m45_c00074{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00074{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m6a_c00074{transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);}
.m54_c00074{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m3b_c00074{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.me6_c00074{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.md6_c00074{transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);}
.m33_c00074{transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00074{transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);}
.mef_c00074{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.mc5_c00074{transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207880,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);}
.m92_c00074{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m82_c00074{transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);}
.m63_c00074{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.maf_c00074{transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m52_c00074{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.m34_c00074{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.meb_c00074{transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);}
.me2_c00074{transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);}
.m76_c00074{transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);}
.mcd_c00074{transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);}
.m32_c00074{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);}
.m53_c00074{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.me1_c00074{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.md4_c00074{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00074{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m7c_c00074{transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);}
.m97_c00074{transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);}
.m41_c00074{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.mab_c00074{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.mda_c00074{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.me4_c00074{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.m49_c00074{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.md7_c00074{transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);}
.mdd_c00074{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.mb7_c00074{transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);}
.m95_c00074{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.m42_c00074{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m69_c00074{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mae_c00074{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m55_c00074{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.md0_c00074{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.m4a_c00074{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m99_c00074{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.mb2_c00074{transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);}
.mb1_c00074{transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);}
.m48_c00074{transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);}
.md2_c00074{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.mde_c00074{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m6b_c00074{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00074{transform:matrix(0.227885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227885,0.000000,0.000000,0.250000,0,0);}
.md9_c00074{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.m37_c00074{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m44_c00074{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m79_c00074{transform:matrix(0.231180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231180,0.000000,0.000000,0.250000,0,0);}
.m39_c00074{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00074{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.mb6_c00074{transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);}
.m46_c00074{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m78_c00074{transform:matrix(0.233070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233070,0.000000,0.000000,0.250000,0,0);}
.mcb_c00074{transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);}
.m58_c00074{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.m24_c00074{transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);}
.m80_c00074{transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);}
.md1_c00074{transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);}
.mc8_c00074{transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);}
.ma0_c00074{transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);}
.m43_c00074{transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me0_c00074{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.mc6_c00074{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.m6f_c00074{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.me7_c00074{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.mea_c00074{transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);}
.mc7_c00074{transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);}
.m77_c00074{transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.274180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274180,0.000000,0.000000,0.250000,0,0);}
.mc9_c00074{transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);}
.m7a_c00074{transform:matrix(0.323145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323145,0.000000,0.000000,0.250000,0,0);}
.m6c_c00074{transform:matrix(0.361855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361855,0.000000,0.000000,0.250000,0,0);}
.m57_c00074{transform:matrix(0.401955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401955,0.000000,0.000000,0.250000,0,0);}
.mcc_c00074{transform:matrix(0.434660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434660,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.438215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438215,0.000000,0.000000,0.250000,0,0);}
.m6d_c00074{transform:matrix(0.632615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632615,0.000000,0.000000,0.250000,0,0);}
.m9b_c00074{transform:matrix(0.795375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795375,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:0.000000px;}
.fc0_c00074{color:transparent;}
.fsf_c00074{font-size:54.600000px;}
.fsa_c00074{font-size:55.650000px;}
.fs7_c00074{font-size:58.800000px;}
.fs2_c00074{font-size:60.900000px;}
.fs6_c00074{font-size:61.950000px;}
.fs5_c00074{font-size:63.000000px;}
.fs3_c00074{font-size:64.050000px;}
.fs1_c00074{font-size:65.100000px;}
.fs8_c00074{font-size:66.150000px;}
.fs4_c00074{font-size:67.200000px;}
.fse_c00074{font-size:68.250000px;}
.fsd_c00074{font-size:69.300000px;}
.fsb_c00074{font-size:70.350000px;}
.fsc_c00074{font-size:71.400000px;}
.fs9_c00074{font-size:76.650000px;}
.fs0_c00074{font-size:82.950000px;}
.y0_c00074{bottom:0.000000px;}
.ydd_c00074{bottom:35.742000px;}
.yd5_c00074{bottom:49.959000px;}
.yd6_c00074{bottom:50.242500px;}
.yd7_c00074{bottom:50.938500px;}
.yd8_c00074{bottom:51.226500px;}
.yd9_c00074{bottom:51.849000px;}
.yda_c00074{bottom:52.161000px;}
.ydb_c00074{bottom:52.870500px;}
.ydc_c00074{bottom:54.081000px;}
.yd4_c00074{bottom:68.139000px;}
.ycd_c00074{bottom:81.819000px;}
.yce_c00074{bottom:82.621500px;}
.ycf_c00074{bottom:83.094000px;}
.yd0_c00074{bottom:83.937000px;}
.yd1_c00074{bottom:84.151500px;}
.yd2_c00074{bottom:84.769500px;}
.yd3_c00074{bottom:84.934500px;}
.yc7_c00074{bottom:100.452000px;}
.yc8_c00074{bottom:101.640000px;}
.yc9_c00074{bottom:102.891000px;}
.yca_c00074{bottom:104.062500px;}
.ycb_c00074{bottom:104.508000px;}
.ycc_c00074{bottom:105.243000px;}
.yc0_c00074{bottom:119.349000px;}
.yc1_c00074{bottom:119.682000px;}
.yc2_c00074{bottom:119.985000px;}
.yc3_c00074{bottom:120.496500px;}
.yc4_c00074{bottom:121.476000px;}
.yc5_c00074{bottom:121.642500px;}
.yc6_c00074{bottom:121.839000px;}
.yb7_c00074{bottom:135.550500px;}
.yb8_c00074{bottom:135.840000px;}
.yb9_c00074{bottom:136.366500px;}
.yba_c00074{bottom:136.746000px;}
.ybb_c00074{bottom:137.419500px;}
.ybc_c00074{bottom:137.734500px;}
.ybd_c00074{bottom:138.940500px;}
.ybe_c00074{bottom:139.515000px;}
.ybf_c00074{bottom:140.020500px;}
.yb0_c00074{bottom:150.940500px;}
.yb1_c00074{bottom:151.224000px;}
.yb2_c00074{bottom:151.503000px;}
.yb3_c00074{bottom:152.458500px;}
.yb4_c00074{bottom:153.271500px;}
.yb5_c00074{bottom:153.585000px;}
.yb6_c00074{bottom:154.567500px;}
.yaf_c00074{bottom:172.006500px;}
.ya8_c00074{bottom:183.073500px;}
.ya9_c00074{bottom:183.586500px;}
.yaa_c00074{bottom:184.888500px;}
.yab_c00074{bottom:187.225500px;}
.yac_c00074{bottom:187.629000px;}
.yad_c00074{bottom:188.796000px;}
.yae_c00074{bottom:189.826500px;}
.ya2_c00074{bottom:201.430500px;}
.ya3_c00074{bottom:202.107000px;}
.ya4_c00074{bottom:203.344500px;}
.ya5_c00074{bottom:204.958500px;}
.ya6_c00074{bottom:205.320000px;}
.ya7_c00074{bottom:205.951500px;}
.y9c_c00074{bottom:217.899000px;}
.y9d_c00074{bottom:218.365500px;}
.y9e_c00074{bottom:219.484500px;}
.y9f_c00074{bottom:221.176500px;}
.ya0_c00074{bottom:222.721500px;}
.ya1_c00074{bottom:222.907500px;}
.y94_c00074{bottom:235.446000px;}
.y95_c00074{bottom:235.942500px;}
.y96_c00074{bottom:236.635500px;}
.y97_c00074{bottom:237.109500px;}
.y98_c00074{bottom:238.531500px;}
.y99_c00074{bottom:238.947000px;}
.y9a_c00074{bottom:240.013500px;}
.y9b_c00074{bottom:240.454500px;}
.y8d_c00074{bottom:253.266000px;}
.y8e_c00074{bottom:254.266500px;}
.y8f_c00074{bottom:254.629500px;}
.y90_c00074{bottom:255.148500px;}
.y91_c00074{bottom:256.203000px;}
.y92_c00074{bottom:257.347500px;}
.y93_c00074{bottom:257.605500px;}
.y84_c00074{bottom:270.544500px;}
.y85_c00074{bottom:270.921000px;}
.y86_c00074{bottom:271.648500px;}
.y87_c00074{bottom:272.041500px;}
.y88_c00074{bottom:272.529000px;}
.y89_c00074{bottom:273.577500px;}
.y8a_c00074{bottom:273.868500px;}
.y8b_c00074{bottom:274.249500px;}
.y8c_c00074{bottom:274.546500px;}
.y7d_c00074{bottom:288.094500px;}
.y7e_c00074{bottom:288.537000px;}
.y7f_c00074{bottom:289.521000px;}
.y80_c00074{bottom:290.193000px;}
.y81_c00074{bottom:290.635500px;}
.y82_c00074{bottom:291.472500px;}
.y83_c00074{bottom:291.975000px;}
.y76_c00074{bottom:304.567500px;}
.y77_c00074{bottom:305.199000px;}
.y78_c00074{bottom:306.283500px;}
.y79_c00074{bottom:307.521000px;}
.y7a_c00074{bottom:308.329500px;}
.y7b_c00074{bottom:308.632500px;}
.y7c_c00074{bottom:309.459000px;}
.y6e_c00074{bottom:319.686000px;}
.y6f_c00074{bottom:320.133000px;}
.y70_c00074{bottom:320.400000px;}
.y71_c00074{bottom:321.192000px;}
.y72_c00074{bottom:321.528000px;}
.y73_c00074{bottom:323.001000px;}
.y74_c00074{bottom:324.079500px;}
.y75_c00074{bottom:324.634500px;}
.y67_c00074{bottom:335.883000px;}
.y68_c00074{bottom:336.319500px;}
.y69_c00074{bottom:336.540000px;}
.y6a_c00074{bottom:337.270500px;}
.y6b_c00074{bottom:337.864500px;}
.y6c_c00074{bottom:338.485500px;}
.y6d_c00074{bottom:338.595000px;}
.y5f_c00074{bottom:353.704500px;}
.y60_c00074{bottom:355.041000px;}
.y61_c00074{bottom:355.581000px;}
.y62_c00074{bottom:356.050500px;}
.y63_c00074{bottom:356.844000px;}
.y64_c00074{bottom:357.106500px;}
.y65_c00074{bottom:358.705500px;}
.y66_c00074{bottom:359.050500px;}
.y58_c00074{bottom:368.280000px;}
.y59_c00074{bottom:369.477000px;}
.y5a_c00074{bottom:371.323500px;}
.y5b_c00074{bottom:372.040500px;}
.y5c_c00074{bottom:372.432000px;}
.y5d_c00074{bottom:373.339500px;}
.y5e_c00074{bottom:373.798500px;}
.y51_c00074{bottom:385.024500px;}
.y52_c00074{bottom:385.539000px;}
.y53_c00074{bottom:386.418000px;}
.y54_c00074{bottom:386.656500px;}
.y55_c00074{bottom:387.030000px;}
.y56_c00074{bottom:388.363500px;}
.y57_c00074{bottom:389.895000px;}
.y4a_c00074{bottom:402.576000px;}
.y4b_c00074{bottom:403.897500px;}
.y4c_c00074{bottom:404.518500px;}
.y4d_c00074{bottom:405.855000px;}
.y4e_c00074{bottom:407.563500px;}
.y4f_c00074{bottom:408.127500px;}
.y50_c00074{bottom:408.438000px;}
.y43_c00074{bottom:418.512000px;}
.y44_c00074{bottom:420.864000px;}
.y45_c00074{bottom:421.194000px;}
.y46_c00074{bottom:422.307000px;}
.y47_c00074{bottom:424.678500px;}
.y48_c00074{bottom:425.184000px;}
.y49_c00074{bottom:426.484500px;}
.y3b_c00074{bottom:435.789000px;}
.y3c_c00074{bottom:437.436000px;}
.y3d_c00074{bottom:437.899500px;}
.y3e_c00074{bottom:438.676500px;}
.y3f_c00074{bottom:440.152500px;}
.y40_c00074{bottom:440.631000px;}
.y41_c00074{bottom:441.783000px;}
.y42_c00074{bottom:443.640000px;}
.y32_c00074{bottom:452.794500px;}
.y33_c00074{bottom:453.391500px;}
.y34_c00074{bottom:453.844500px;}
.y35_c00074{bottom:455.151000px;}
.y36_c00074{bottom:455.472000px;}
.y37_c00074{bottom:456.253500px;}
.y38_c00074{bottom:456.459000px;}
.y39_c00074{bottom:457.383000px;}
.y3a_c00074{bottom:457.755000px;}
.y2b_c00074{bottom:470.883000px;}
.y2c_c00074{bottom:471.601500px;}
.y2d_c00074{bottom:471.844500px;}
.y2e_c00074{bottom:472.545000px;}
.y2f_c00074{bottom:472.851000px;}
.y30_c00074{bottom:473.374500px;}
.y31_c00074{bottom:474.241500px;}
.y22_c00074{bottom:486.552000px;}
.y23_c00074{bottom:487.885500px;}
.y24_c00074{bottom:489.550500px;}
.y25_c00074{bottom:489.943500px;}
.y26_c00074{bottom:490.486500px;}
.y27_c00074{bottom:491.148000px;}
.y28_c00074{bottom:492.229500px;}
.y29_c00074{bottom:492.864000px;}
.y2a_c00074{bottom:493.584000px;}
.y19_c00074{bottom:504.634500px;}
.y1a_c00074{bottom:504.978000px;}
.y1b_c00074{bottom:505.224000px;}
.y1c_c00074{bottom:505.549500px;}
.y1d_c00074{bottom:506.329500px;}
.y1e_c00074{bottom:507.090000px;}
.y1f_c00074{bottom:507.291000px;}
.y20_c00074{bottom:507.993000px;}
.y21_c00074{bottom:508.281000px;}
.y12_c00074{bottom:521.914500px;}
.y13_c00074{bottom:523.044000px;}
.y14_c00074{bottom:523.240500px;}
.y15_c00074{bottom:524.584500px;}
.y16_c00074{bottom:526.198500px;}
.y17_c00074{bottom:527.791500px;}
.y18_c00074{bottom:528.238500px;}
.yb_c00074{bottom:537.850500px;}
.yc_c00074{bottom:539.028000px;}
.yd_c00074{bottom:540.298500px;}
.ye_c00074{bottom:541.965000px;}
.yf_c00074{bottom:542.526000px;}
.y10_c00074{bottom:543.043500px;}
.y11_c00074{bottom:545.757000px;}
.y2_c00074{bottom:555.397500px;}
.y3_c00074{bottom:555.786000px;}
.y4_c00074{bottom:556.873500px;}
.y5_c00074{bottom:557.385000px;}
.y6_c00074{bottom:558.538500px;}
.y7_c00074{bottom:558.975000px;}
.y8_c00074{bottom:560.290500px;}
.y9_c00074{bottom:560.763000px;}
.ya_c00074{bottom:562.372500px;}
.y1_c00074{bottom:571.345500px;}
.h11_c00074{height:54.600000px;}
.hc_c00074{height:55.650000px;}
.h9_c00074{height:58.800000px;}
.h4_c00074{height:60.900000px;}
.h8_c00074{height:61.950000px;}
.h7_c00074{height:63.000000px;}
.h5_c00074{height:64.050000px;}
.h3_c00074{height:65.100000px;}
.ha_c00074{height:66.150000px;}
.h6_c00074{height:67.200000px;}
.h10_c00074{height:68.250000px;}
.hf_c00074{height:69.300000px;}
.hd_c00074{height:70.350000px;}
.he_c00074{height:71.400000px;}
.hb_c00074{height:76.650000px;}
.h2_c00074{height:82.950000px;}
.h1_c00074{height:612.000000px;}
.h0_c00074{height:612.300000px;}
.w0_c00074{width:368.820000px;}
.w1_c00074{width:369.000000px;}
.x0_c00074{left:0.000000px;}
.x3_c00074{left:31.869000px;}
.x18_c00074{left:33.102000px;}
.x30_c00074{left:34.366500px;}
.x53_c00074{left:36.574500px;}
.x65_c00074{left:37.737000px;}
.x6e_c00074{left:38.827500px;}
.x7e_c00074{left:40.203000px;}
.x4_c00074{left:48.079500px;}
.x72_c00074{left:56.913000px;}
.x69_c00074{left:58.381500px;}
.x19_c00074{left:59.494500px;}
.x5e_c00074{left:61.711500px;}
.x6b_c00074{left:64.266000px;}
.x51_c00074{left:66.127500px;}
.x29_c00074{left:67.177500px;}
.x79_c00074{left:68.988000px;}
.x82_c00074{left:71.553000px;}
.x66_c00074{left:73.363500px;}
.xc_c00074{left:74.850000px;}
.x12_c00074{left:78.016500px;}
.x6f_c00074{left:79.030500px;}
.x1e_c00074{left:82.411500px;}
.x13_c00074{left:85.861500px;}
.x24_c00074{left:88.653000px;}
.x73_c00074{left:89.832000px;}
.x2a_c00074{left:92.317500px;}
.x5_c00074{left:93.420000px;}
.x31_c00074{left:95.349000px;}
.x7a_c00074{left:96.489000px;}
.x5f_c00074{left:98.163000px;}
.x59_c00074{left:99.210000px;}
.x49_c00074{left:101.359500px;}
.x1a_c00074{left:103.522500px;}
.x44_c00074{left:105.582000px;}
.x25_c00074{left:107.346000px;}
.x58_c00074{left:108.402000px;}
.x7f_c00074{left:110.107500px;}
.x32_c00074{left:112.500000px;}
.x74_c00074{left:113.565000px;}
.x6_c00074{left:114.744000px;}
.x40_c00074{left:116.079000px;}
.x37_c00074{left:118.447500px;}
.xd_c00074{left:120.235500px;}
.x5a_c00074{left:121.923000px;}
.x3c_c00074{left:123.123000px;}
.x4a_c00074{left:128.359500px;}
.x38_c00074{left:130.215000px;}
.x54_c00074{left:131.682000px;}
.x41_c00074{left:134.734500px;}
.x50_c00074{left:137.121000px;}
.x67_c00074{left:138.466500px;}
.x14_c00074{left:139.605000px;}
.x33_c00074{left:141.252000px;}
.x7b_c00074{left:142.941000px;}
.x1f_c00074{left:144.102000px;}
.x6c_c00074{left:145.806000px;}
.x70_c00074{left:147.307500px;}
.x4b_c00074{left:151.851000px;}
.x5b_c00074{left:154.375500px;}
.x75_c00074{left:155.670000px;}
.x20_c00074{left:158.679000px;}
.x26_c00074{left:161.287500px;}
.x7_c00074{left:162.808500px;}
.x2b_c00074{left:164.914500px;}
.x1_c00074{left:166.860000px;}
.x39_c00074{left:169.987500px;}
.x76_c00074{left:175.392000px;}
.x55_c00074{left:176.463000px;}
.x85_c00074{left:178.471500px;}
.xe_c00074{left:179.745000px;}
.x8_c00074{left:180.972000px;}
.x2c_c00074{left:182.743500px;}
.x27_c00074{left:184.843500px;}
.x4c_c00074{left:191.530500px;}
.x45_c00074{left:193.501500px;}
.x34_c00074{left:195.927000px;}
.x60_c00074{left:197.901000px;}
.xf_c00074{left:199.770000px;}
.x42_c00074{left:201.447000px;}
.x15_c00074{left:204.162000px;}
.x56_c00074{left:205.939500px;}
.x63_c00074{left:208.890000px;}
.x6a_c00074{left:210.046500px;}
.x35_c00074{left:213.646500px;}
.x4e_c00074{left:215.340000px;}
.x10_c00074{left:218.259000px;}
.x5c_c00074{left:220.273500px;}
.x1b_c00074{left:222.051000px;}
.x68_c00074{left:223.419000px;}
.x28_c00074{left:225.109500px;}
.x2d_c00074{left:226.141500px;}
.x46_c00074{left:227.631000px;}
.x7c_c00074{left:232.051500px;}
.x81_c00074{left:233.727000px;}
.x9_c00074{left:235.809000px;}
.x1c_c00074{left:237.526500px;}
.x21_c00074{left:243.325500px;}
.x47_c00074{left:246.286500px;}
.x77_c00074{left:250.737000px;}
.x80_c00074{left:252.654000px;}
.xa_c00074{left:255.481500px;}
.x83_c00074{left:256.773000px;}
.x3d_c00074{left:261.541500px;}
.x7d_c00074{left:265.020000px;}
.x22_c00074{left:266.812500px;}
.x16_c00074{left:267.855000px;}
.x3a_c00074{left:272.770500px;}
.x61_c00074{left:275.919000px;}
.x43_c00074{left:278.047500px;}
.x52_c00074{left:279.115500px;}
.x4f_c00074{left:281.769000px;}
.x4d_c00074{left:284.551500px;}
.x17_c00074{left:285.711000px;}
.x3e_c00074{left:287.191500px;}
.x2e_c00074{left:288.901500px;}
.x64_c00074{left:290.182500px;}
.x2_c00074{left:292.140000px;}
.x23_c00074{left:293.500500px;}
.x57_c00074{left:295.309500px;}
.x6d_c00074{left:296.466000px;}
.x71_c00074{left:297.969000px;}
.x62_c00074{left:299.130000px;}
.x3f_c00074{left:301.278000px;}
.x5d_c00074{left:307.945500px;}
.x2f_c00074{left:309.607500px;}
.x48_c00074{left:311.350500px;}
.x84_c00074{left:312.576000px;}
.x1d_c00074{left:313.683000px;}
.x11_c00074{left:315.159000px;}
.x78_c00074{left:318.189000px;}
.x3b_c00074{left:319.227000px;}
.xb_c00074{left:322.549500px;}
.x36_c00074{left:325.126500px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
.fsf_c00074{font-size:48.533333pt;}
.fsa_c00074{font-size:49.466667pt;}
.fs7_c00074{font-size:52.266667pt;}
.fs2_c00074{font-size:54.133333pt;}
.fs6_c00074{font-size:55.066667pt;}
.fs5_c00074{font-size:56.000000pt;}
.fs3_c00074{font-size:56.933333pt;}
.fs1_c00074{font-size:57.866667pt;}
.fs8_c00074{font-size:58.800000pt;}
.fs4_c00074{font-size:59.733333pt;}
.fse_c00074{font-size:60.666667pt;}
.fsd_c00074{font-size:61.600000pt;}
.fsb_c00074{font-size:62.533333pt;}
.fsc_c00074{font-size:63.466667pt;}
.fs9_c00074{font-size:68.133333pt;}
.fs0_c00074{font-size:73.733333pt;}
.y0_c00074{bottom:0.000000pt;}
.ydd_c00074{bottom:31.770667pt;}
.yd5_c00074{bottom:44.408000pt;}
.yd6_c00074{bottom:44.660000pt;}
.yd7_c00074{bottom:45.278667pt;}
.yd8_c00074{bottom:45.534667pt;}
.yd9_c00074{bottom:46.088000pt;}
.yda_c00074{bottom:46.365333pt;}
.ydb_c00074{bottom:46.996000pt;}
.ydc_c00074{bottom:48.072000pt;}
.yd4_c00074{bottom:60.568000pt;}
.ycd_c00074{bottom:72.728000pt;}
.yce_c00074{bottom:73.441333pt;}
.ycf_c00074{bottom:73.861333pt;}
.yd0_c00074{bottom:74.610667pt;}
.yd1_c00074{bottom:74.801333pt;}
.yd2_c00074{bottom:75.350667pt;}
.yd3_c00074{bottom:75.497333pt;}
.yc7_c00074{bottom:89.290667pt;}
.yc8_c00074{bottom:90.346667pt;}
.yc9_c00074{bottom:91.458667pt;}
.yca_c00074{bottom:92.500000pt;}
.ycb_c00074{bottom:92.896000pt;}
.ycc_c00074{bottom:93.549333pt;}
.yc0_c00074{bottom:106.088000pt;}
.yc1_c00074{bottom:106.384000pt;}
.yc2_c00074{bottom:106.653333pt;}
.yc3_c00074{bottom:107.108000pt;}
.yc4_c00074{bottom:107.978667pt;}
.yc5_c00074{bottom:108.126667pt;}
.yc6_c00074{bottom:108.301333pt;}
.yb7_c00074{bottom:120.489333pt;}
.yb8_c00074{bottom:120.746667pt;}
.yb9_c00074{bottom:121.214667pt;}
.yba_c00074{bottom:121.552000pt;}
.ybb_c00074{bottom:122.150667pt;}
.ybc_c00074{bottom:122.430667pt;}
.ybd_c00074{bottom:123.502667pt;}
.ybe_c00074{bottom:124.013333pt;}
.ybf_c00074{bottom:124.462667pt;}
.yb0_c00074{bottom:134.169333pt;}
.yb1_c00074{bottom:134.421333pt;}
.yb2_c00074{bottom:134.669333pt;}
.yb3_c00074{bottom:135.518667pt;}
.yb4_c00074{bottom:136.241333pt;}
.yb5_c00074{bottom:136.520000pt;}
.yb6_c00074{bottom:137.393333pt;}
.yaf_c00074{bottom:152.894667pt;}
.ya8_c00074{bottom:162.732000pt;}
.ya9_c00074{bottom:163.188000pt;}
.yaa_c00074{bottom:164.345333pt;}
.yab_c00074{bottom:166.422667pt;}
.yac_c00074{bottom:166.781333pt;}
.yad_c00074{bottom:167.818667pt;}
.yae_c00074{bottom:168.734667pt;}
.ya2_c00074{bottom:179.049333pt;}
.ya3_c00074{bottom:179.650667pt;}
.ya4_c00074{bottom:180.750667pt;}
.ya5_c00074{bottom:182.185333pt;}
.ya6_c00074{bottom:182.506667pt;}
.ya7_c00074{bottom:183.068000pt;}
.y9c_c00074{bottom:193.688000pt;}
.y9d_c00074{bottom:194.102667pt;}
.y9e_c00074{bottom:195.097333pt;}
.y9f_c00074{bottom:196.601333pt;}
.ya0_c00074{bottom:197.974667pt;}
.ya1_c00074{bottom:198.140000pt;}
.y94_c00074{bottom:209.285333pt;}
.y95_c00074{bottom:209.726667pt;}
.y96_c00074{bottom:210.342667pt;}
.y97_c00074{bottom:210.764000pt;}
.y98_c00074{bottom:212.028000pt;}
.y99_c00074{bottom:212.397333pt;}
.y9a_c00074{bottom:213.345333pt;}
.y9b_c00074{bottom:213.737333pt;}
.y8d_c00074{bottom:225.125333pt;}
.y8e_c00074{bottom:226.014667pt;}
.y8f_c00074{bottom:226.337333pt;}
.y90_c00074{bottom:226.798667pt;}
.y91_c00074{bottom:227.736000pt;}
.y92_c00074{bottom:228.753333pt;}
.y93_c00074{bottom:228.982667pt;}
.y84_c00074{bottom:240.484000pt;}
.y85_c00074{bottom:240.818667pt;}
.y86_c00074{bottom:241.465333pt;}
.y87_c00074{bottom:241.814667pt;}
.y88_c00074{bottom:242.248000pt;}
.y89_c00074{bottom:243.180000pt;}
.y8a_c00074{bottom:243.438667pt;}
.y8b_c00074{bottom:243.777333pt;}
.y8c_c00074{bottom:244.041333pt;}
.y7d_c00074{bottom:256.084000pt;}
.y7e_c00074{bottom:256.477333pt;}
.y7f_c00074{bottom:257.352000pt;}
.y80_c00074{bottom:257.949333pt;}
.y81_c00074{bottom:258.342667pt;}
.y82_c00074{bottom:259.086667pt;}
.y83_c00074{bottom:259.533333pt;}
.y76_c00074{bottom:270.726667pt;}
.y77_c00074{bottom:271.288000pt;}
.y78_c00074{bottom:272.252000pt;}
.y79_c00074{bottom:273.352000pt;}
.y7a_c00074{bottom:274.070667pt;}
.y7b_c00074{bottom:274.340000pt;}
.y7c_c00074{bottom:275.074667pt;}
.y6e_c00074{bottom:284.165333pt;}
.y6f_c00074{bottom:284.562667pt;}
.y70_c00074{bottom:284.800000pt;}
.y71_c00074{bottom:285.504000pt;}
.y72_c00074{bottom:285.802667pt;}
.y73_c00074{bottom:287.112000pt;}
.y74_c00074{bottom:288.070667pt;}
.y75_c00074{bottom:288.564000pt;}
.y67_c00074{bottom:298.562667pt;}
.y68_c00074{bottom:298.950667pt;}
.y69_c00074{bottom:299.146667pt;}
.y6a_c00074{bottom:299.796000pt;}
.y6b_c00074{bottom:300.324000pt;}
.y6c_c00074{bottom:300.876000pt;}
.y6d_c00074{bottom:300.973333pt;}
.y5f_c00074{bottom:314.404000pt;}
.y60_c00074{bottom:315.592000pt;}
.y61_c00074{bottom:316.072000pt;}
.y62_c00074{bottom:316.489333pt;}
.y63_c00074{bottom:317.194667pt;}
.y64_c00074{bottom:317.428000pt;}
.y65_c00074{bottom:318.849333pt;}
.y66_c00074{bottom:319.156000pt;}
.y58_c00074{bottom:327.360000pt;}
.y59_c00074{bottom:328.424000pt;}
.y5a_c00074{bottom:330.065333pt;}
.y5b_c00074{bottom:330.702667pt;}
.y5c_c00074{bottom:331.050667pt;}
.y5d_c00074{bottom:331.857333pt;}
.y5e_c00074{bottom:332.265333pt;}
.y51_c00074{bottom:342.244000pt;}
.y52_c00074{bottom:342.701333pt;}
.y53_c00074{bottom:343.482667pt;}
.y54_c00074{bottom:343.694667pt;}
.y55_c00074{bottom:344.026667pt;}
.y56_c00074{bottom:345.212000pt;}
.y57_c00074{bottom:346.573333pt;}
.y4a_c00074{bottom:357.845333pt;}
.y4b_c00074{bottom:359.020000pt;}
.y4c_c00074{bottom:359.572000pt;}
.y4d_c00074{bottom:360.760000pt;}
.y4e_c00074{bottom:362.278667pt;}
.y4f_c00074{bottom:362.780000pt;}
.y50_c00074{bottom:363.056000pt;}
.y43_c00074{bottom:372.010667pt;}
.y44_c00074{bottom:374.101333pt;}
.y45_c00074{bottom:374.394667pt;}
.y46_c00074{bottom:375.384000pt;}
.y47_c00074{bottom:377.492000pt;}
.y48_c00074{bottom:377.941333pt;}
.y49_c00074{bottom:379.097333pt;}
.y3b_c00074{bottom:387.368000pt;}
.y3c_c00074{bottom:388.832000pt;}
.y3d_c00074{bottom:389.244000pt;}
.y3e_c00074{bottom:389.934667pt;}
.y3f_c00074{bottom:391.246667pt;}
.y40_c00074{bottom:391.672000pt;}
.y41_c00074{bottom:392.696000pt;}
.y42_c00074{bottom:394.346667pt;}
.y32_c00074{bottom:402.484000pt;}
.y33_c00074{bottom:403.014667pt;}
.y34_c00074{bottom:403.417333pt;}
.y35_c00074{bottom:404.578667pt;}
.y36_c00074{bottom:404.864000pt;}
.y37_c00074{bottom:405.558667pt;}
.y38_c00074{bottom:405.741333pt;}
.y39_c00074{bottom:406.562667pt;}
.y3a_c00074{bottom:406.893333pt;}
.y2b_c00074{bottom:418.562667pt;}
.y2c_c00074{bottom:419.201333pt;}
.y2d_c00074{bottom:419.417333pt;}
.y2e_c00074{bottom:420.040000pt;}
.y2f_c00074{bottom:420.312000pt;}
.y30_c00074{bottom:420.777333pt;}
.y31_c00074{bottom:421.548000pt;}
.y22_c00074{bottom:432.490667pt;}
.y23_c00074{bottom:433.676000pt;}
.y24_c00074{bottom:435.156000pt;}
.y25_c00074{bottom:435.505333pt;}
.y26_c00074{bottom:435.988000pt;}
.y27_c00074{bottom:436.576000pt;}
.y28_c00074{bottom:437.537333pt;}
.y29_c00074{bottom:438.101333pt;}
.y2a_c00074{bottom:438.741333pt;}
.y19_c00074{bottom:448.564000pt;}
.y1a_c00074{bottom:448.869333pt;}
.y1b_c00074{bottom:449.088000pt;}
.y1c_c00074{bottom:449.377333pt;}
.y1d_c00074{bottom:450.070667pt;}
.y1e_c00074{bottom:450.746667pt;}
.y1f_c00074{bottom:450.925333pt;}
.y20_c00074{bottom:451.549333pt;}
.y21_c00074{bottom:451.805333pt;}
.y12_c00074{bottom:463.924000pt;}
.y13_c00074{bottom:464.928000pt;}
.y14_c00074{bottom:465.102667pt;}
.y15_c00074{bottom:466.297333pt;}
.y16_c00074{bottom:467.732000pt;}
.y17_c00074{bottom:469.148000pt;}
.y18_c00074{bottom:469.545333pt;}
.yb_c00074{bottom:478.089333pt;}
.yc_c00074{bottom:479.136000pt;}
.yd_c00074{bottom:480.265333pt;}
.ye_c00074{bottom:481.746667pt;}
.yf_c00074{bottom:482.245333pt;}
.y10_c00074{bottom:482.705333pt;}
.y11_c00074{bottom:485.117333pt;}
.y2_c00074{bottom:493.686667pt;}
.y3_c00074{bottom:494.032000pt;}
.y4_c00074{bottom:494.998667pt;}
.y5_c00074{bottom:495.453333pt;}
.y6_c00074{bottom:496.478667pt;}
.y7_c00074{bottom:496.866667pt;}
.y8_c00074{bottom:498.036000pt;}
.y9_c00074{bottom:498.456000pt;}
.ya_c00074{bottom:499.886667pt;}
.y1_c00074{bottom:507.862667pt;}
.h11_c00074{height:48.533333pt;}
.hc_c00074{height:49.466667pt;}
.h9_c00074{height:52.266667pt;}
.h4_c00074{height:54.133333pt;}
.h8_c00074{height:55.066667pt;}
.h7_c00074{height:56.000000pt;}
.h5_c00074{height:56.933333pt;}
.h3_c00074{height:57.866667pt;}
.ha_c00074{height:58.800000pt;}
.h6_c00074{height:59.733333pt;}
.h10_c00074{height:60.666667pt;}
.hf_c00074{height:61.600000pt;}
.hd_c00074{height:62.533333pt;}
.he_c00074{height:63.466667pt;}
.hb_c00074{height:68.133333pt;}
.h2_c00074{height:73.733333pt;}
.h1_c00074{height:544.000000pt;}
.h0_c00074{height:544.266667pt;}
.w0_c00074{width:327.840000pt;}
.w1_c00074{width:328.000000pt;}
.x0_c00074{left:0.000000pt;}
.x3_c00074{left:28.328000pt;}
.x18_c00074{left:29.424000pt;}
.x30_c00074{left:30.548000pt;}
.x53_c00074{left:32.510667pt;}
.x65_c00074{left:33.544000pt;}
.x6e_c00074{left:34.513333pt;}
.x7e_c00074{left:35.736000pt;}
.x4_c00074{left:42.737333pt;}
.x72_c00074{left:50.589333pt;}
.x69_c00074{left:51.894667pt;}
.x19_c00074{left:52.884000pt;}
.x5e_c00074{left:54.854667pt;}
.x6b_c00074{left:57.125333pt;}
.x51_c00074{left:58.780000pt;}
.x29_c00074{left:59.713333pt;}
.x79_c00074{left:61.322667pt;}
.x82_c00074{left:63.602667pt;}
.x66_c00074{left:65.212000pt;}
.xc_c00074{left:66.533333pt;}
.x12_c00074{left:69.348000pt;}
.x6f_c00074{left:70.249333pt;}
.x1e_c00074{left:73.254667pt;}
.x13_c00074{left:76.321333pt;}
.x24_c00074{left:78.802667pt;}
.x73_c00074{left:79.850667pt;}
.x2a_c00074{left:82.060000pt;}
.x5_c00074{left:83.040000pt;}
.x31_c00074{left:84.754667pt;}
.x7a_c00074{left:85.768000pt;}
.x5f_c00074{left:87.256000pt;}
.x59_c00074{left:88.186667pt;}
.x49_c00074{left:90.097333pt;}
.x1a_c00074{left:92.020000pt;}
.x44_c00074{left:93.850667pt;}
.x25_c00074{left:95.418667pt;}
.x58_c00074{left:96.357333pt;}
.x7f_c00074{left:97.873333pt;}
.x32_c00074{left:100.000000pt;}
.x74_c00074{left:100.946667pt;}
.x6_c00074{left:101.994667pt;}
.x40_c00074{left:103.181333pt;}
.x37_c00074{left:105.286667pt;}
.xd_c00074{left:106.876000pt;}
.x5a_c00074{left:108.376000pt;}
.x3c_c00074{left:109.442667pt;}
.x4a_c00074{left:114.097333pt;}
.x38_c00074{left:115.746667pt;}
.x54_c00074{left:117.050667pt;}
.x41_c00074{left:119.764000pt;}
.x50_c00074{left:121.885333pt;}
.x67_c00074{left:123.081333pt;}
.x14_c00074{left:124.093333pt;}
.x33_c00074{left:125.557333pt;}
.x7b_c00074{left:127.058667pt;}
.x1f_c00074{left:128.090667pt;}
.x6c_c00074{left:129.605333pt;}
.x70_c00074{left:130.940000pt;}
.x4b_c00074{left:134.978667pt;}
.x5b_c00074{left:137.222667pt;}
.x75_c00074{left:138.373333pt;}
.x20_c00074{left:141.048000pt;}
.x26_c00074{left:143.366667pt;}
.x7_c00074{left:144.718667pt;}
.x2b_c00074{left:146.590667pt;}
.x1_c00074{left:148.320000pt;}
.x39_c00074{left:151.100000pt;}
.x76_c00074{left:155.904000pt;}
.x55_c00074{left:156.856000pt;}
.x85_c00074{left:158.641333pt;}
.xe_c00074{left:159.773333pt;}
.x8_c00074{left:160.864000pt;}
.x2c_c00074{left:162.438667pt;}
.x27_c00074{left:164.305333pt;}
.x4c_c00074{left:170.249333pt;}
.x45_c00074{left:172.001333pt;}
.x34_c00074{left:174.157333pt;}
.x60_c00074{left:175.912000pt;}
.xf_c00074{left:177.573333pt;}
.x42_c00074{left:179.064000pt;}
.x15_c00074{left:181.477333pt;}
.x56_c00074{left:183.057333pt;}
.x63_c00074{left:185.680000pt;}
.x6a_c00074{left:186.708000pt;}
.x35_c00074{left:189.908000pt;}
.x4e_c00074{left:191.413333pt;}
.x10_c00074{left:194.008000pt;}
.x5c_c00074{left:195.798667pt;}
.x1b_c00074{left:197.378667pt;}
.x68_c00074{left:198.594667pt;}
.x28_c00074{left:200.097333pt;}
.x2d_c00074{left:201.014667pt;}
.x46_c00074{left:202.338667pt;}
.x7c_c00074{left:206.268000pt;}
.x81_c00074{left:207.757333pt;}
.x9_c00074{left:209.608000pt;}
.x1c_c00074{left:211.134667pt;}
.x21_c00074{left:216.289333pt;}
.x47_c00074{left:218.921333pt;}
.x77_c00074{left:222.877333pt;}
.x80_c00074{left:224.581333pt;}
.xa_c00074{left:227.094667pt;}
.x83_c00074{left:228.242667pt;}
.x3d_c00074{left:232.481333pt;}
.x7d_c00074{left:235.573333pt;}
.x22_c00074{left:237.166667pt;}
.x16_c00074{left:238.093333pt;}
.x3a_c00074{left:242.462667pt;}
.x61_c00074{left:245.261333pt;}
.x43_c00074{left:247.153333pt;}
.x52_c00074{left:248.102667pt;}
.x4f_c00074{left:250.461333pt;}
.x4d_c00074{left:252.934667pt;}
.x17_c00074{left:253.965333pt;}
.x3e_c00074{left:255.281333pt;}
.x2e_c00074{left:256.801333pt;}
.x64_c00074{left:257.940000pt;}
.x2_c00074{left:259.680000pt;}
.x23_c00074{left:260.889333pt;}
.x57_c00074{left:262.497333pt;}
.x6d_c00074{left:263.525333pt;}
.x71_c00074{left:264.861333pt;}
.x62_c00074{left:265.893333pt;}
.x3f_c00074{left:267.802667pt;}
.x5d_c00074{left:273.729333pt;}
.x2f_c00074{left:275.206667pt;}
.x48_c00074{left:276.756000pt;}
.x84_c00074{left:277.845333pt;}
.x1d_c00074{left:278.829333pt;}
.x11_c00074{left:280.141333pt;}
.x78_c00074{left:282.834667pt;}
.x3b_c00074{left:283.757333pt;}
.xb_c00074{left:286.710667pt;}
.x36_c00074{left:289.001333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00075 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00075 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00075 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00075 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00075.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.043434,0.002000,-0.011499,0.249735,0,0);-ms-transform:matrix(0.043434,0.002000,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.043434,0.002000,-0.011499,0.249735,0,0);}
.m1b_c00075{transform:matrix(0.059852,0.002756,-0.011499,0.249735,0,0);-ms-transform:matrix(0.059852,0.002756,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.059852,0.002756,-0.011499,0.249735,0,0);}
.m1_c00075{transform:matrix(0.112151,0.005164,-0.011499,0.249735,0,0);-ms-transform:matrix(0.112151,0.005164,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.112151,0.005164,-0.011499,0.249735,0,0);}
.mb8_c00075{transform:matrix(0.125338,0.006273,-0.012497,0.249687,0,0);-ms-transform:matrix(0.125338,0.006273,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.125338,0.006273,-0.012497,0.249687,0,0);}
.m6a_c00075{transform:matrix(0.135296,0.006772,-0.012497,0.249687,0,0);-ms-transform:matrix(0.135296,0.006772,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.135296,0.006772,-0.012497,0.249687,0,0);}
.m3c_c00075{transform:matrix(0.136600,0.007110,-0.012995,0.249662,0,0);-ms-transform:matrix(0.136600,0.007110,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.136600,0.007110,-0.012995,0.249662,0,0);}
.ma5_c00075{transform:matrix(0.139705,0.006992,-0.012497,0.249687,0,0);-ms-transform:matrix(0.139705,0.006992,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.139705,0.006992,-0.012497,0.249687,0,0);}
.m70_c00075{transform:matrix(0.141283,0.007071,-0.012497,0.249687,0,0);-ms-transform:matrix(0.141283,0.007071,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.141283,0.007071,-0.012497,0.249687,0,0);}
.mad_c00075{transform:matrix(0.141683,0.007091,-0.012497,0.249687,0,0);-ms-transform:matrix(0.141683,0.007091,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.141683,0.007091,-0.012497,0.249687,0,0);}
.m2c_c00075{transform:matrix(0.146340,0.006738,-0.011499,0.249735,0,0);-ms-transform:matrix(0.146340,0.006738,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.146340,0.006738,-0.011499,0.249735,0,0);}
.m34_c00075{transform:matrix(0.148309,0.007720,-0.012995,0.249662,0,0);-ms-transform:matrix(0.148309,0.007720,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.148309,0.007720,-0.012995,0.249662,0,0);}
.m7d_c00075{transform:matrix(0.148614,0.007438,-0.012497,0.249687,0,0);-ms-transform:matrix(0.148614,0.007438,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.148614,0.007438,-0.012497,0.249687,0,0);}
.m67_c00075{transform:matrix(0.148799,0.007447,-0.012497,0.249687,0,0);-ms-transform:matrix(0.148799,0.007447,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.148799,0.007447,-0.012497,0.249687,0,0);}
.m6f_c00075{transform:matrix(0.149947,0.007505,-0.012497,0.249687,0,0);-ms-transform:matrix(0.149947,0.007505,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.149947,0.007505,-0.012497,0.249687,0,0);}
.mb2_c00075{transform:matrix(0.151800,0.007598,-0.012497,0.249687,0,0);-ms-transform:matrix(0.151800,0.007598,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.151800,0.007598,-0.012497,0.249687,0,0);}
.m54_c00075{transform:matrix(0.155171,0.007766,-0.012497,0.249687,0,0);-ms-transform:matrix(0.155171,0.007766,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.155171,0.007766,-0.012497,0.249687,0,0);}
.m32_c00075{transform:matrix(0.156724,0.007217,-0.011499,0.249735,0,0);-ms-transform:matrix(0.156724,0.007217,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.156724,0.007217,-0.011499,0.249735,0,0);}
.m8e_c00075{transform:matrix(0.157408,0.007878,-0.012497,0.249687,0,0);-ms-transform:matrix(0.157408,0.007878,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.157408,0.007878,-0.012497,0.249687,0,0);}
.md7_c00075{transform:matrix(0.157872,0.007902,-0.012497,0.249687,0,0);-ms-transform:matrix(0.157872,0.007902,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.157872,0.007902,-0.012497,0.249687,0,0);}
.m14_c00075{transform:matrix(0.157883,0.007270,-0.011499,0.249735,0,0);-ms-transform:matrix(0.157883,0.007270,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.157883,0.007270,-0.011499,0.249735,0,0);}
.m2f_c00075{transform:matrix(0.158167,0.007283,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158167,0.007283,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158167,0.007283,-0.011499,0.249735,0,0);}
.m55_c00075{transform:matrix(0.158591,0.007938,-0.012497,0.249687,0,0);-ms-transform:matrix(0.158591,0.007938,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.158591,0.007938,-0.012497,0.249687,0,0);}
.me_c00075{transform:matrix(0.158692,0.007307,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158692,0.007307,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158692,0.007307,-0.011499,0.249735,0,0);}
.m25_c00075{transform:matrix(0.158777,0.007311,-0.011499,0.249735,0,0);-ms-transform:matrix(0.158777,0.007311,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.158777,0.007311,-0.011499,0.249735,0,0);}
.m3e_c00075{transform:matrix(0.158850,0.008268,-0.012995,0.249662,0,0);-ms-transform:matrix(0.158850,0.008268,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.158850,0.008268,-0.012995,0.249662,0,0);}
.maf_c00075{transform:matrix(0.158876,0.007952,-0.012497,0.249687,0,0);-ms-transform:matrix(0.158876,0.007952,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.158876,0.007952,-0.012497,0.249687,0,0);}
.maa_c00075{transform:matrix(0.159815,0.007999,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159815,0.007999,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159815,0.007999,-0.012497,0.249687,0,0);}
.m13_c00075{transform:matrix(0.160250,0.007379,-0.011499,0.249735,0,0);-ms-transform:matrix(0.160250,0.007379,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.160250,0.007379,-0.011499,0.249735,0,0);}
.mb9_c00075{transform:matrix(0.161653,0.008091,-0.012497,0.249687,0,0);-ms-transform:matrix(0.161653,0.008091,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.161653,0.008091,-0.012497,0.249687,0,0);}
.md5_c00075{transform:matrix(0.161942,0.008105,-0.012497,0.249687,0,0);-ms-transform:matrix(0.161942,0.008105,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.161942,0.008105,-0.012497,0.249687,0,0);}
.m94_c00075{transform:matrix(0.163026,0.008159,-0.012497,0.249687,0,0);-ms-transform:matrix(0.163026,0.008159,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.163026,0.008159,-0.012497,0.249687,0,0);}
.mcc_c00075{transform:matrix(0.165937,0.008305,-0.012497,0.249687,0,0);-ms-transform:matrix(0.165937,0.008305,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.165937,0.008305,-0.012497,0.249687,0,0);}
.md8_c00075{transform:matrix(0.166332,0.008325,-0.012497,0.249687,0,0);-ms-transform:matrix(0.166332,0.008325,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.166332,0.008325,-0.012497,0.249687,0,0);}
.m1c_c00075{transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);-ms-transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.166469,0.007665,-0.011499,0.249735,0,0);}
.m24_c00075{transform:matrix(0.167707,0.007722,-0.011499,0.249735,0,0);-ms-transform:matrix(0.167707,0.007722,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.167707,0.007722,-0.011499,0.249735,0,0);}
.mbc_c00075{transform:matrix(0.167730,0.008395,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167730,0.008395,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167730,0.008395,-0.012497,0.249687,0,0);}
.mb6_c00075{transform:matrix(0.167890,0.008403,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167890,0.008403,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167890,0.008403,-0.012497,0.249687,0,0);}
.mb4_c00075{transform:matrix(0.168015,0.008409,-0.012497,0.249687,0,0);-ms-transform:matrix(0.168015,0.008409,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.168015,0.008409,-0.012497,0.249687,0,0);}
.m26_c00075{transform:matrix(0.168172,0.007744,-0.011499,0.249735,0,0);-ms-transform:matrix(0.168172,0.007744,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.168172,0.007744,-0.011499,0.249735,0,0);}
.m5b_c00075{transform:matrix(0.168359,0.008426,-0.012497,0.249687,0,0);-ms-transform:matrix(0.168359,0.008426,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.168359,0.008426,-0.012497,0.249687,0,0);}
.mab_c00075{transform:matrix(0.168854,0.008451,-0.012497,0.249687,0,0);-ms-transform:matrix(0.168854,0.008451,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.168854,0.008451,-0.012497,0.249687,0,0);}
.m58_c00075{transform:matrix(0.169198,0.008468,-0.012497,0.249687,0,0);-ms-transform:matrix(0.169198,0.008468,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.169198,0.008468,-0.012497,0.249687,0,0);}
.mbf_c00075{transform:matrix(0.169283,0.008473,-0.012497,0.249687,0,0);-ms-transform:matrix(0.169283,0.008473,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.169283,0.008473,-0.012497,0.249687,0,0);}
.m61_c00075{transform:matrix(0.170716,0.008544,-0.012497,0.249687,0,0);-ms-transform:matrix(0.170716,0.008544,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.170716,0.008544,-0.012497,0.249687,0,0);}
.m46_c00075{transform:matrix(0.171460,0.008582,-0.012497,0.249687,0,0);-ms-transform:matrix(0.171460,0.008582,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.171460,0.008582,-0.012497,0.249687,0,0);}
.m2d_c00075{transform:matrix(0.171698,0.007906,-0.011499,0.249735,0,0);-ms-transform:matrix(0.171698,0.007906,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.171698,0.007906,-0.011499,0.249735,0,0);}
.m31_c00075{transform:matrix(0.171873,0.007914,-0.011499,0.249735,0,0);-ms-transform:matrix(0.171873,0.007914,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.171873,0.007914,-0.011499,0.249735,0,0);}
.m9_c00075{transform:matrix(0.172367,0.007937,-0.011499,0.249735,0,0);-ms-transform:matrix(0.172367,0.007937,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.172367,0.007937,-0.011499,0.249735,0,0);}
.m5c_c00075{transform:matrix(0.173568,0.008687,-0.012497,0.249687,0,0);-ms-transform:matrix(0.173568,0.008687,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.173568,0.008687,-0.012497,0.249687,0,0);}
.m17_c00075{transform:matrix(0.173986,0.008011,-0.011499,0.249735,0,0);-ms-transform:matrix(0.173986,0.008011,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.173986,0.008011,-0.011499,0.249735,0,0);}
.m2e_c00075{transform:matrix(0.174270,0.008024,-0.011499,0.249735,0,0);-ms-transform:matrix(0.174270,0.008024,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.174270,0.008024,-0.011499,0.249735,0,0);}
.mb7_c00075{transform:matrix(0.174711,0.008744,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174711,0.008744,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174711,0.008744,-0.012497,0.249687,0,0);}
.mc8_c00075{transform:matrix(0.174971,0.008757,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174971,0.008757,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174971,0.008757,-0.012497,0.249687,0,0);}
.m85_c00075{transform:matrix(0.175660,0.008792,-0.012497,0.249687,0,0);-ms-transform:matrix(0.175660,0.008792,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.175660,0.008792,-0.012497,0.249687,0,0);}
.m9a_c00075{transform:matrix(0.175850,0.008801,-0.012497,0.249687,0,0);-ms-transform:matrix(0.175850,0.008801,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.175850,0.008801,-0.012497,0.249687,0,0);}
.m4b_c00075{transform:matrix(0.176209,0.008819,-0.012497,0.249687,0,0);-ms-transform:matrix(0.176209,0.008819,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.176209,0.008819,-0.012497,0.249687,0,0);}
.mc7_c00075{transform:matrix(0.177273,0.008873,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177273,0.008873,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177273,0.008873,-0.012497,0.249687,0,0);}
.m6e_c00075{transform:matrix(0.177807,0.008899,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177807,0.008899,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177807,0.008899,-0.012497,0.249687,0,0);}
.m69_c00075{transform:matrix(0.177962,0.008907,-0.012497,0.249687,0,0);-ms-transform:matrix(0.177962,0.008907,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.177962,0.008907,-0.012497,0.249687,0,0);}
.m8c_c00075{transform:matrix(0.178077,0.008913,-0.012497,0.249687,0,0);-ms-transform:matrix(0.178077,0.008913,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.178077,0.008913,-0.012497,0.249687,0,0);}
.m6_c00075{transform:matrix(0.178216,0.008206,-0.011499,0.249735,0,0);-ms-transform:matrix(0.178216,0.008206,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.178216,0.008206,-0.011499,0.249735,0,0);}
.m36_c00075{transform:matrix(0.178413,0.009287,-0.012995,0.249662,0,0);-ms-transform:matrix(0.178413,0.009287,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.178413,0.009287,-0.012995,0.249662,0,0);}
.mda_c00075{transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179021,0.008960,-0.012497,0.249687,0,0);}
.m12_c00075{transform:matrix(0.179410,0.008261,-0.011499,0.249735,0,0);-ms-transform:matrix(0.179410,0.008261,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.179410,0.008261,-0.011499,0.249735,0,0);}
.mf_c00075{transform:matrix(0.179720,0.008275,-0.011499,0.249735,0,0);-ms-transform:matrix(0.179720,0.008275,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.179720,0.008275,-0.011499,0.249735,0,0);}
.md9_c00075{transform:matrix(0.179755,0.008997,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179755,0.008997,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179755,0.008997,-0.012497,0.249687,0,0);}
.m6c_c00075{transform:matrix(0.179805,0.008999,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179805,0.008999,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179805,0.008999,-0.012497,0.249687,0,0);}
.mc3_c00075{transform:matrix(0.179855,0.009002,-0.012497,0.249687,0,0);-ms-transform:matrix(0.179855,0.009002,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.179855,0.009002,-0.012497,0.249687,0,0);}
.m5a_c00075{transform:matrix(0.180449,0.009031,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180449,0.009031,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180449,0.009031,-0.012497,0.249687,0,0);}
.m30_c00075{transform:matrix(0.180559,0.008314,-0.011499,0.249735,0,0);-ms-transform:matrix(0.180559,0.008314,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.180559,0.008314,-0.011499,0.249735,0,0);}
.m91_c00075{transform:matrix(0.180724,0.009045,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180724,0.009045,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180724,0.009045,-0.012497,0.249687,0,0);}
.m6d_c00075{transform:matrix(0.180784,0.009048,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180784,0.009048,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180784,0.009048,-0.012497,0.249687,0,0);}
.m80_c00075{transform:matrix(0.181023,0.009060,-0.012497,0.249687,0,0);-ms-transform:matrix(0.181023,0.009060,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.181023,0.009060,-0.012497,0.249687,0,0);}
.m56_c00075{transform:matrix(0.181518,0.009085,-0.012497,0.249687,0,0);-ms-transform:matrix(0.181518,0.009085,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.181518,0.009085,-0.012497,0.249687,0,0);}
.m29_c00075{transform:matrix(0.181732,0.008368,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181732,0.008368,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181732,0.008368,-0.011499,0.249735,0,0);}
.m27_c00075{transform:matrix(0.182956,0.008424,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182956,0.008424,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182956,0.008424,-0.011499,0.249735,0,0);}
.m3_c00075{transform:matrix(0.183570,0.008453,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183570,0.008453,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183570,0.008453,-0.011499,0.249735,0,0);}
.m52_c00075{transform:matrix(0.183745,0.009196,-0.012497,0.249687,0,0);-ms-transform:matrix(0.183745,0.009196,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.183745,0.009196,-0.012497,0.249687,0,0);}
.m28_c00075{transform:matrix(0.183910,0.008468,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183910,0.008468,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183910,0.008468,-0.011499,0.249735,0,0);}
.mc0_c00075{transform:matrix(0.184369,0.009228,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184369,0.009228,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184369,0.009228,-0.012497,0.249687,0,0);}
.m2b_c00075{transform:matrix(0.184385,0.008490,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184385,0.008490,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184385,0.008490,-0.011499,0.249735,0,0);}
.mca_c00075{transform:matrix(0.184414,0.009230,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184414,0.009230,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184414,0.009230,-0.012497,0.249687,0,0);}
.ma0_c00075{transform:matrix(0.184429,0.009231,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184429,0.009231,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184429,0.009231,-0.012497,0.249687,0,0);}
.m15_c00075{transform:matrix(0.184594,0.008500,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184594,0.008500,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184594,0.008500,-0.011499,0.249735,0,0);}
.m68_c00075{transform:matrix(0.184794,0.009249,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184794,0.009249,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184794,0.009249,-0.012497,0.249687,0,0);}
.m51_c00075{transform:matrix(0.184864,0.009252,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184864,0.009252,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184864,0.009252,-0.012497,0.249687,0,0);}
.m3b_c00075{transform:matrix(0.184990,0.009629,-0.012995,0.249662,0,0);-ms-transform:matrix(0.184990,0.009629,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.184990,0.009629,-0.012995,0.249662,0,0);}
.m35_c00075{transform:matrix(0.185404,0.009651,-0.012995,0.249662,0,0);-ms-transform:matrix(0.185404,0.009651,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.185404,0.009651,-0.012995,0.249662,0,0);}
.m21_c00075{transform:matrix(0.185608,0.008547,-0.011499,0.249735,0,0);-ms-transform:matrix(0.185608,0.008547,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.185608,0.008547,-0.011499,0.249735,0,0);}
.m62_c00075{transform:matrix(0.186442,0.009331,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186442,0.009331,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186442,0.009331,-0.012497,0.249687,0,0);}
.m57_c00075{transform:matrix(0.186546,0.009337,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186546,0.009337,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186546,0.009337,-0.012497,0.249687,0,0);}
.mbb_c00075{transform:matrix(0.186651,0.009342,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186651,0.009342,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186651,0.009342,-0.012497,0.249687,0,0);}
.ma9_c00075{transform:matrix(0.186741,0.009346,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186741,0.009346,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186741,0.009346,-0.012497,0.249687,0,0);}
.m3d_c00075{transform:matrix(0.186832,0.009725,-0.012995,0.249662,0,0);-ms-transform:matrix(0.186832,0.009725,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.186832,0.009725,-0.012995,0.249662,0,0);}
.m18_c00075{transform:matrix(0.186847,0.008604,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186847,0.008604,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186847,0.008604,-0.011499,0.249735,0,0);}
.m3f_c00075{transform:matrix(0.187581,0.009764,-0.012995,0.249662,0,0);-ms-transform:matrix(0.187581,0.009764,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.187581,0.009764,-0.012995,0.249662,0,0);}
.m38_c00075{transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);-ms-transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);}
.m42_c00075{transform:matrix(0.187820,0.009400,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187820,0.009400,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187820,0.009400,-0.012497,0.249687,0,0);}
.m65_c00075{transform:matrix(0.188314,0.009425,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188314,0.009425,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188314,0.009425,-0.012497,0.249687,0,0);}
.m82_c00075{transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188424,0.009431,-0.012497,0.249687,0,0);}
.mc9_c00075{transform:matrix(0.188484,0.009434,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188484,0.009434,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188484,0.009434,-0.012497,0.249687,0,0);}
.mae_c00075{transform:matrix(0.188973,0.009458,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188973,0.009458,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188973,0.009458,-0.012497,0.249687,0,0);}
.ma3_c00075{transform:matrix(0.188993,0.009459,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188993,0.009459,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188993,0.009459,-0.012497,0.249687,0,0);}
.mdb_c00075{transform:matrix(0.189023,0.009461,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189023,0.009461,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189023,0.009461,-0.012497,0.249687,0,0);}
.m7_c00075{transform:matrix(0.189125,0.008708,-0.011499,0.249735,0,0);-ms-transform:matrix(0.189125,0.008708,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.189125,0.008708,-0.011499,0.249735,0,0);}
.md2_c00075{transform:matrix(0.189548,0.009487,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189548,0.009487,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189548,0.009487,-0.012497,0.249687,0,0);}
.m33_c00075{transform:matrix(0.190608,0.008777,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190608,0.008777,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190608,0.008777,-0.011499,0.249735,0,0);}
.m40_c00075{transform:matrix(0.191101,0.009565,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191101,0.009565,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191101,0.009565,-0.012497,0.249687,0,0);}
.mba_c00075{transform:matrix(0.191216,0.009570,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191216,0.009570,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191216,0.009570,-0.012497,0.249687,0,0);}
.m50_c00075{transform:matrix(0.191590,0.009589,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191590,0.009589,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191590,0.009589,-0.012497,0.249687,0,0);}
.m10_c00075{transform:matrix(0.191757,0.008830,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191757,0.008830,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191757,0.008830,-0.011499,0.249735,0,0);}
.m79_c00075{transform:matrix(0.192130,0.009616,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192130,0.009616,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192130,0.009616,-0.012497,0.249687,0,0);}
.m9c_c00075{transform:matrix(0.192714,0.009645,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192714,0.009645,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192714,0.009645,-0.012497,0.249687,0,0);}
.ma4_c00075{transform:matrix(0.192789,0.009649,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192789,0.009649,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192789,0.009649,-0.012497,0.249687,0,0);}
.m11_c00075{transform:matrix(0.193065,0.008890,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193065,0.008890,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193065,0.008890,-0.011499,0.249735,0,0);}
.m2a_c00075{transform:matrix(0.193460,0.008908,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193460,0.008908,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193460,0.008908,-0.011499,0.249735,0,0);}
.m76_c00075{transform:matrix(0.193463,0.009683,-0.012497,0.249687,0,0);-ms-transform:matrix(0.193463,0.009683,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.193463,0.009683,-0.012497,0.249687,0,0);}
.m1d_c00075{transform:matrix(0.193570,0.008913,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193570,0.008913,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193570,0.008913,-0.011499,0.249735,0,0);}
.m1a_c00075{transform:matrix(0.193715,0.008920,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193715,0.008920,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193715,0.008920,-0.011499,0.249735,0,0);}
.m89_c00075{transform:matrix(0.193733,0.009696,-0.012497,0.249687,0,0);-ms-transform:matrix(0.193733,0.009696,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.193733,0.009696,-0.012497,0.249687,0,0);}
.m39_c00075{transform:matrix(0.194427,0.010120,-0.012995,0.249662,0,0);-ms-transform:matrix(0.194427,0.010120,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.194427,0.010120,-0.012995,0.249662,0,0);}
.mc2_c00075{transform:matrix(0.194776,0.009749,-0.012497,0.249687,0,0);-ms-transform:matrix(0.194776,0.009749,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.194776,0.009749,-0.012497,0.249687,0,0);}
.mb0_c00075{transform:matrix(0.195141,0.009767,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195141,0.009767,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195141,0.009767,-0.012497,0.249687,0,0);}
.m87_c00075{transform:matrix(0.195246,0.009772,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195246,0.009772,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195246,0.009772,-0.012497,0.249687,0,0);}
.mbe_c00075{transform:matrix(0.195345,0.009777,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195345,0.009777,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195345,0.009777,-0.012497,0.249687,0,0);}
.m63_c00075{transform:matrix(0.195395,0.009780,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195395,0.009780,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195395,0.009780,-0.012497,0.249687,0,0);}
.m95_c00075{transform:matrix(0.196684,0.009844,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196684,0.009844,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196684,0.009844,-0.012497,0.249687,0,0);}
.m8d_c00075{transform:matrix(0.196734,0.009847,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196734,0.009847,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196734,0.009847,-0.012497,0.249687,0,0);}
.m92_c00075{transform:matrix(0.197108,0.009865,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197108,0.009865,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197108,0.009865,-0.012497,0.249687,0,0);}
.mdc_c00075{transform:matrix(0.197143,0.009867,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197143,0.009867,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197143,0.009867,-0.012497,0.249687,0,0);}
.mb5_c00075{transform:matrix(0.197493,0.009885,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197493,0.009885,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197493,0.009885,-0.012497,0.249687,0,0);}
.m7e_c00075{transform:matrix(0.197832,0.009902,-0.012497,0.249687,0,0);-ms-transform:matrix(0.197832,0.009902,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.197832,0.009902,-0.012497,0.249687,0,0);}
.m48_c00075{transform:matrix(0.198262,0.009923,-0.012497,0.249687,0,0);-ms-transform:matrix(0.198262,0.009923,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.198262,0.009923,-0.012497,0.249687,0,0);}
.mc6_c00075{transform:matrix(0.198512,0.009936,-0.012497,0.249687,0,0);-ms-transform:matrix(0.198512,0.009936,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.198512,0.009936,-0.012497,0.249687,0,0);}
.m81_c00075{transform:matrix(0.199016,0.009961,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199016,0.009961,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199016,0.009961,-0.012497,0.249687,0,0);}
.mb3_c00075{transform:matrix(0.199146,0.009967,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199146,0.009967,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199146,0.009967,-0.012497,0.249687,0,0);}
.m53_c00075{transform:matrix(0.199465,0.009983,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199465,0.009983,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199465,0.009983,-0.012497,0.249687,0,0);}
.mb_c00075{transform:matrix(0.199788,0.009199,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199788,0.009199,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199788,0.009199,-0.011499,0.249735,0,0);}
.mc_c00075{transform:matrix(0.200113,0.009214,-0.011499,0.249735,0,0);-ms-transform:matrix(0.200113,0.009214,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.200113,0.009214,-0.011499,0.249735,0,0);}
.mc1_c00075{transform:matrix(0.200504,0.010035,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200504,0.010035,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200504,0.010035,-0.012497,0.249687,0,0);}
.m93_c00075{transform:matrix(0.200559,0.010038,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200559,0.010038,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200559,0.010038,-0.012497,0.249687,0,0);}
.m3a_c00075{transform:matrix(0.200593,0.010441,-0.012995,0.249662,0,0);-ms-transform:matrix(0.200593,0.010441,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.200593,0.010441,-0.012995,0.249662,0,0);}
.m98_c00075{transform:matrix(0.200709,0.010045,-0.012497,0.249687,0,0);-ms-transform:matrix(0.200709,0.010045,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.200709,0.010045,-0.012497,0.249687,0,0);}
.m59_c00075{transform:matrix(0.201563,0.010088,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201563,0.010088,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201563,0.010088,-0.012497,0.249687,0,0);}
.m7b_c00075{transform:matrix(0.201722,0.010096,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201722,0.010096,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201722,0.010096,-0.012497,0.249687,0,0);}
.m4f_c00075{transform:matrix(0.201827,0.010101,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201827,0.010101,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201827,0.010101,-0.012497,0.249687,0,0);}
.ma8_c00075{transform:matrix(0.202087,0.010114,-0.012497,0.249687,0,0);-ms-transform:matrix(0.202087,0.010114,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.202087,0.010114,-0.012497,0.249687,0,0);}
.m86_c00075{transform:matrix(0.202586,0.010139,-0.012497,0.249687,0,0);-ms-transform:matrix(0.202586,0.010139,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.202586,0.010139,-0.012497,0.249687,0,0);}
.mc4_c00075{transform:matrix(0.203365,0.010178,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203365,0.010178,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203365,0.010178,-0.012497,0.249687,0,0);}
.m20_c00075{transform:matrix(0.203394,0.009366,-0.011499,0.249735,0,0);-ms-transform:matrix(0.203394,0.009366,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.203394,0.009366,-0.011499,0.249735,0,0);}
.mcb_c00075{transform:matrix(0.203825,0.010201,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203825,0.010201,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203825,0.010201,-0.012497,0.249687,0,0);}
.m7f_c00075{transform:matrix(0.204055,0.010213,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204055,0.010213,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204055,0.010213,-0.012497,0.249687,0,0);}
.m8b_c00075{transform:matrix(0.204539,0.010237,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204539,0.010237,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204539,0.010237,-0.012497,0.249687,0,0);}
.m7a_c00075{transform:matrix(0.204619,0.010241,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204619,0.010241,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204619,0.010241,-0.012497,0.249687,0,0);}
.m60_c00075{transform:matrix(0.204943,0.010257,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204943,0.010257,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204943,0.010257,-0.012497,0.249687,0,0);}
.m4e_c00075{transform:matrix(0.204963,0.010258,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204963,0.010258,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204963,0.010258,-0.012497,0.249687,0,0);}
.m19_c00075{transform:matrix(0.205597,0.009467,-0.011499,0.249735,0,0);-ms-transform:matrix(0.205597,0.009467,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.205597,0.009467,-0.011499,0.249735,0,0);}
.m1f_c00075{transform:matrix(0.205727,0.009473,-0.011499,0.249735,0,0);-ms-transform:matrix(0.205727,0.009473,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.205727,0.009473,-0.011499,0.249735,0,0);}
.md_c00075{transform:matrix(0.206127,0.009491,-0.011499,0.249735,0,0);-ms-transform:matrix(0.206127,0.009491,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.206127,0.009491,-0.011499,0.249735,0,0);}
.m43_c00075{transform:matrix(0.207950,0.010408,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207950,0.010408,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207950,0.010408,-0.012497,0.249687,0,0);}
.mbd_c00075{transform:matrix(0.208239,0.010422,-0.012497,0.249687,0,0);-ms-transform:matrix(0.208239,0.010422,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.208239,0.010422,-0.012497,0.249687,0,0);}
.m75_c00075{transform:matrix(0.209088,0.010465,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209088,0.010465,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209088,0.010465,-0.012497,0.249687,0,0);}
.m37_c00075{transform:matrix(0.209262,0.010893,-0.012995,0.249662,0,0);-ms-transform:matrix(0.209262,0.010893,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.209262,0.010893,-0.012995,0.249662,0,0);}
.mc5_c00075{transform:matrix(0.209323,0.010477,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209323,0.010477,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209323,0.010477,-0.012497,0.249687,0,0);}
.m99_c00075{transform:matrix(0.209882,0.010505,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209882,0.010505,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209882,0.010505,-0.012497,0.249687,0,0);}
.m9d_c00075{transform:matrix(0.210027,0.010512,-0.012497,0.249687,0,0);-ms-transform:matrix(0.210027,0.010512,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.210027,0.010512,-0.012497,0.249687,0,0);}
.m5e_c00075{transform:matrix(0.211176,0.010569,-0.012497,0.249687,0,0);-ms-transform:matrix(0.211176,0.010569,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.211176,0.010569,-0.012497,0.249687,0,0);}
.md1_c00075{transform:matrix(0.212105,0.010616,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212105,0.010616,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212105,0.010616,-0.012497,0.249687,0,0);}
.m5d_c00075{transform:matrix(0.212239,0.010623,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212239,0.010623,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212239,0.010623,-0.012497,0.249687,0,0);}
.m6b_c00075{transform:matrix(0.212564,0.010639,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212564,0.010639,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212564,0.010639,-0.012497,0.249687,0,0);}
.md0_c00075{transform:matrix(0.213443,0.010683,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213443,0.010683,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213443,0.010683,-0.012497,0.249687,0,0);}
.m9e_c00075{transform:matrix(0.213598,0.010691,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213598,0.010691,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213598,0.010691,-0.012497,0.249687,0,0);}
.md6_c00075{transform:matrix(0.213782,0.010700,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213782,0.010700,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213782,0.010700,-0.012497,0.249687,0,0);}
.m5_c00075{transform:matrix(0.213858,0.009847,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213858,0.009847,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213858,0.009847,-0.011499,0.249735,0,0);}
.ma2_c00075{transform:matrix(0.214811,0.010751,-0.012497,0.249687,0,0);-ms-transform:matrix(0.214811,0.010751,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.214811,0.010751,-0.012497,0.249687,0,0);}
.mcd_c00075{transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);}
.mcf_c00075{transform:matrix(0.216364,0.010829,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216364,0.010829,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216364,0.010829,-0.012497,0.249687,0,0);}
.m64_c00075{transform:matrix(0.216634,0.010843,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216634,0.010843,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216634,0.010843,-0.012497,0.249687,0,0);}
.ma7_c00075{transform:matrix(0.216729,0.010847,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216729,0.010847,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216729,0.010847,-0.012497,0.249687,0,0);}
.m5f_c00075{transform:matrix(0.216764,0.010849,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216764,0.010849,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216764,0.010849,-0.012497,0.249687,0,0);}
.mce_c00075{transform:matrix(0.217593,0.010891,-0.012497,0.249687,0,0);-ms-transform:matrix(0.217593,0.010891,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.217593,0.010891,-0.012497,0.249687,0,0);}
.m84_c00075{transform:matrix(0.218102,0.010916,-0.012497,0.249687,0,0);-ms-transform:matrix(0.218102,0.010916,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.218102,0.010916,-0.012497,0.249687,0,0);}
.mac_c00075{transform:matrix(0.218362,0.010929,-0.012497,0.249687,0,0);-ms-transform:matrix(0.218362,0.010929,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.218362,0.010929,-0.012497,0.249687,0,0);}
.md3_c00075{transform:matrix(0.218881,0.010955,-0.012497,0.249687,0,0);-ms-transform:matrix(0.218881,0.010955,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.218881,0.010955,-0.012497,0.249687,0,0);}
.m16_c00075{transform:matrix(0.218983,0.010083,-0.011499,0.249735,0,0);-ms-transform:matrix(0.218983,0.010083,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.218983,0.010083,-0.011499,0.249735,0,0);}
.m9f_c00075{transform:matrix(0.219620,0.010992,-0.012497,0.249687,0,0);-ms-transform:matrix(0.219620,0.010992,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.219620,0.010992,-0.012497,0.249687,0,0);}
.md4_c00075{transform:matrix(0.220174,0.011020,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220174,0.011020,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220174,0.011020,-0.012497,0.249687,0,0);}
.m4c_c00075{transform:matrix(0.220898,0.011056,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220898,0.011056,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220898,0.011056,-0.012497,0.249687,0,0);}
.m74_c00075{transform:matrix(0.221897,0.011106,-0.012497,0.249687,0,0);-ms-transform:matrix(0.221897,0.011106,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.221897,0.011106,-0.012497,0.249687,0,0);}
.m78_c00075{transform:matrix(0.223635,0.011193,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223635,0.011193,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223635,0.011193,-0.012497,0.249687,0,0);}
.m4d_c00075{transform:matrix(0.225697,0.011296,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225697,0.011296,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225697,0.011296,-0.012497,0.249687,0,0);}
.m8_c00075{transform:matrix(0.225726,0.010394,-0.011499,0.249735,0,0);-ms-transform:matrix(0.225726,0.010394,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.225726,0.010394,-0.011499,0.249735,0,0);}
.m96_c00075{transform:matrix(0.225782,0.011300,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225782,0.011300,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225782,0.011300,-0.012497,0.249687,0,0);}
.m47_c00075{transform:matrix(0.225922,0.011307,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225922,0.011307,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225922,0.011307,-0.012497,0.249687,0,0);}
.m4a_c00075{transform:matrix(0.227330,0.011378,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227330,0.011378,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227330,0.011378,-0.012497,0.249687,0,0);}
.ma1_c00075{transform:matrix(0.227765,0.011400,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227765,0.011400,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227765,0.011400,-0.012497,0.249687,0,0);}
.m9b_c00075{transform:matrix(0.228109,0.011417,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228109,0.011417,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228109,0.011417,-0.012497,0.249687,0,0);}
.m83_c00075{transform:matrix(0.228274,0.011425,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228274,0.011425,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228274,0.011425,-0.012497,0.249687,0,0);}
.m71_c00075{transform:matrix(0.228674,0.011445,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228674,0.011445,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228674,0.011445,-0.012497,0.249687,0,0);}
.m73_c00075{transform:matrix(0.228834,0.011453,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228834,0.011453,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228834,0.011453,-0.012497,0.249687,0,0);}
.mb1_c00075{transform:matrix(0.229048,0.011464,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229048,0.011464,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229048,0.011464,-0.012497,0.249687,0,0);}
.ma_c00075{transform:matrix(0.229762,0.010580,-0.011499,0.249735,0,0);-ms-transform:matrix(0.229762,0.010580,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.229762,0.010580,-0.011499,0.249735,0,0);}
.m88_c00075{transform:matrix(0.229852,0.011504,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229852,0.011504,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229852,0.011504,-0.012497,0.249687,0,0);}
.m1e_c00075{transform:matrix(0.230031,0.010592,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230031,0.010592,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230031,0.010592,-0.011499,0.249735,0,0);}
.m4_c00075{transform:matrix(0.230051,0.010593,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230051,0.010593,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230051,0.010593,-0.011499,0.249735,0,0);}
.m72_c00075{transform:matrix(0.230077,0.011515,-0.012497,0.249687,0,0);-ms-transform:matrix(0.230077,0.011515,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.230077,0.011515,-0.012497,0.249687,0,0);}
.m8f_c00075{transform:matrix(0.231216,0.011572,-0.012497,0.249687,0,0);-ms-transform:matrix(0.231216,0.011572,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.231216,0.011572,-0.012497,0.249687,0,0);}
.m97_c00075{transform:matrix(0.232384,0.011631,-0.012497,0.249687,0,0);-ms-transform:matrix(0.232384,0.011631,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.232384,0.011631,-0.012497,0.249687,0,0);}
.m22_c00075{transform:matrix(0.232808,0.010720,-0.011499,0.249735,0,0);-ms-transform:matrix(0.232808,0.010720,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.232808,0.010720,-0.011499,0.249735,0,0);}
.m90_c00075{transform:matrix(0.233048,0.011664,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233048,0.011664,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233048,0.011664,-0.012497,0.249687,0,0);}
.m8a_c00075{transform:matrix(0.235370,0.011780,-0.012497,0.249687,0,0);-ms-transform:matrix(0.235370,0.011780,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.235370,0.011780,-0.012497,0.249687,0,0);}
.m77_c00075{transform:matrix(0.240903,0.012057,-0.012497,0.249687,0,0);-ms-transform:matrix(0.240903,0.012057,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.240903,0.012057,-0.012497,0.249687,0,0);}
.m7c_c00075{transform:matrix(0.241268,0.012075,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241268,0.012075,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241268,0.012075,-0.012497,0.249687,0,0);}
.ma6_c00075{transform:matrix(0.241368,0.012080,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241368,0.012080,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241368,0.012080,-0.012497,0.249687,0,0);}
.m66_c00075{transform:matrix(0.241772,0.012101,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241772,0.012101,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241772,0.012101,-0.012497,0.249687,0,0);}
.m44_c00075{transform:matrix(0.252569,0.012641,-0.012497,0.249687,0,0);-ms-transform:matrix(0.252569,0.012641,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.252569,0.012641,-0.012497,0.249687,0,0);}
.m41_c00075{transform:matrix(0.254481,0.012737,-0.012497,0.249687,0,0);-ms-transform:matrix(0.254481,0.012737,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.254481,0.012737,-0.012497,0.249687,0,0);}
.m45_c00075{transform:matrix(0.257183,0.012872,-0.012497,0.249687,0,0);-ms-transform:matrix(0.257183,0.012872,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.257183,0.012872,-0.012497,0.249687,0,0);}
.m23_c00075{transform:matrix(0.341523,0.015726,-0.011499,0.249735,0,0);-ms-transform:matrix(0.341523,0.015726,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.341523,0.015726,-0.011499,0.249735,0,0);}
.m49_c00075{transform:matrix(0.357178,0.017877,-0.012497,0.249687,0,0);-ms-transform:matrix(0.357178,0.017877,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.357178,0.017877,-0.012497,0.249687,0,0);}
.m2_c00075{transform:matrix(0.694684,0.031987,-0.011499,0.249735,0,0);-ms-transform:matrix(0.694684,0.031987,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.694684,0.031987,-0.011499,0.249735,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:0.000000px;}
.fc0_c00075{color:transparent;}
.fsc_c00075{font-size:55.663939px;}
.fsd_c00075{font-size:57.764465px;}
.fs9_c00075{font-size:58.814728px;}
.fsb_c00075{font-size:60.915254px;}
.fs1_c00075{font-size:61.953624px;}
.fs11_c00075{font-size:61.965517px;}
.fs3_c00075{font-size:63.003685px;}
.fs4_c00075{font-size:64.053747px;}
.fsf_c00075{font-size:64.066043px;}
.fs2_c00075{font-size:65.103808px;}
.fse_c00075{font-size:65.116306px;}
.fs5_c00075{font-size:66.153870px;}
.fs10_c00075{font-size:66.166569px;}
.fs7_c00075{font-size:67.223684px;}
.fs8_c00075{font-size:68.274054px;}
.fs6_c00075{font-size:69.304054px;}
.fsa_c00075{font-size:69.317357px;}
.fs12_c00075{font-size:71.417883px;}
.fs0_c00075{font-size:96.605651px;}
.y0_c00075{bottom:0.000000px;}
.ye2_c00075{bottom:30.487365px;}
.ye1_c00075{bottom:31.480909px;}
.ye0_c00075{bottom:33.492600px;}
.ydf_c00075{bottom:36.752241px;}
.yde_c00075{bottom:38.025841px;}
.ydd_c00075{bottom:40.436016px;}
.ydc_c00075{bottom:41.520239px;}
.ydb_c00075{bottom:42.119951px;}
.yda_c00075{bottom:43.405026px;}
.yd9_c00075{bottom:47.772900px;}
.yd8_c00075{bottom:50.072150px;}
.yd7_c00075{bottom:51.207299px;}
.yd6_c00075{bottom:53.706216px;}
.yd5_c00075{bottom:57.122388px;}
.yd4_c00075{bottom:58.019766px;}
.yd3_c00075{bottom:59.884503px;}
.yd2_c00075{bottom:63.792312px;}
.yd1_c00075{bottom:66.616456px;}
.yd0_c00075{bottom:68.810913px;}
.ycf_c00075{bottom:70.301659px;}
.yce_c00075{bottom:71.333940px;}
.ycd_c00075{bottom:75.530558px;}
.ycc_c00075{bottom:77.710990px;}
.ycb_c00075{bottom:82.102814px;}
.yca_c00075{bottom:83.388874px;}
.yc9_c00075{bottom:86.825748px;}
.yc8_c00075{bottom:87.993375px;}
.yc7_c00075{bottom:89.396071px;}
.yc6_c00075{bottom:91.817207px;}
.yc5_c00075{bottom:93.363990px;}
.yc4_c00075{bottom:98.524981px;}
.yc3_c00075{bottom:99.517069px;}
.yc2_c00075{bottom:101.956299px;}
.yc1_c00075{bottom:105.517225px;}
.yc0_c00075{bottom:106.333503px;}
.ybf_c00075{bottom:107.272113px;}
.ybe_c00075{bottom:109.643089px;}
.ybd_c00075{bottom:110.918470px;}
.ybc_c00075{bottom:114.012682px;}
.ybb_c00075{bottom:117.768088px;}
.yba_c00075{bottom:118.539945px;}
.yb9_c00075{bottom:121.806856px;}
.yb8_c00075{bottom:122.890201px;}
.yb7_c00075{bottom:126.795463px;}
.yb6_c00075{bottom:127.662949px;}
.yb5_c00075{bottom:132.712699px;}
.yb4_c00075{bottom:135.402575px;}
.yb3_c00075{bottom:136.449575px;}
.yb2_c00075{bottom:138.801724px;}
.yb1_c00075{bottom:139.694299px;}
.yb0_c00075{bottom:140.396749px;}
.yaf_c00075{bottom:141.665525px;}
.yae_c00075{bottom:142.626200px;}
.yad_c00075{bottom:145.227125px;}
.yac_c00075{bottom:149.240779px;}
.yab_c00075{bottom:150.647077px;}
.yaa_c00075{bottom:154.946068px;}
.ya9_c00075{bottom:156.330616px;}
.ya8_c00075{bottom:158.398251px;}
.ya7_c00075{bottom:159.650802px;}
.ya6_c00075{bottom:163.050336px;}
.ya5_c00075{bottom:165.588846px;}
.ya4_c00075{bottom:166.784599px;}
.ya3_c00075{bottom:167.539671px;}
.ya2_c00075{bottom:168.837121px;}
.ya1_c00075{bottom:170.272791px;}
.ya0_c00075{bottom:173.812730px;}
.y9f_c00075{bottom:174.728445px;}
.y9e_c00075{bottom:175.386169px;}
.y9d_c00075{bottom:177.705381px;}
.y9c_c00075{bottom:179.797875px;}
.y9b_c00075{bottom:182.856184px;}
.y9a_c00075{bottom:183.573096px;}
.y99_c00075{bottom:185.792752px;}
.y98_c00075{bottom:186.844606px;}
.y97_c00075{bottom:189.061488px;}
.y96_c00075{bottom:190.001520px;}
.y95_c00075{bottom:191.019625px;}
.y94_c00075{bottom:193.222332px;}
.y93_c00075{bottom:194.039815px;}
.y92_c00075{bottom:197.081455px;}
.y91_c00075{bottom:198.956311px;}
.y90_c00075{bottom:203.647071px;}
.y8f_c00075{bottom:204.690937px;}
.y8e_c00075{bottom:205.863871px;}
.y8d_c00075{bottom:208.541895px;}
.y8c_c00075{bottom:214.364716px;}
.y8b_c00075{bottom:218.928273px;}
.y8a_c00075{bottom:221.244769px;}
.y89_c00075{bottom:221.881158px;}
.y88_c00075{bottom:223.114333px;}
.y87_c00075{bottom:224.571538px;}
.y86_c00075{bottom:225.447706px;}
.y85_c00075{bottom:228.489918px;}
.y84_c00075{bottom:231.368326px;}
.y83_c00075{bottom:234.974224px;}
.y82_c00075{bottom:237.122793px;}
.y81_c00075{bottom:238.909779px;}
.y80_c00075{bottom:241.930616px;}
.y7f_c00075{bottom:244.618519px;}
.y7e_c00075{bottom:245.869395px;}
.y7d_c00075{bottom:247.044519px;}
.y7c_c00075{bottom:258.579613px;}
.y7b_c00075{bottom:260.994616px;}
.y7a_c00075{bottom:262.221544px;}
.y79_c00075{bottom:265.134580px;}
.y78_c00075{bottom:268.861622px;}
.y77_c00075{bottom:270.269544px;}
.y76_c00075{bottom:272.391027px;}
.y75_c00075{bottom:273.133159px;}
.y74_c00075{bottom:276.838573px;}
.y73_c00075{bottom:279.070221px;}
.y72_c00075{bottom:282.425191px;}
.y71_c00075{bottom:284.023462px;}
.y70_c00075{bottom:284.946844px;}
.y6f_c00075{bottom:286.653736px;}
.y6e_c00075{bottom:289.723951px;}
.y6d_c00075{bottom:291.517767px;}
.y6c_c00075{bottom:293.227359px;}
.y6b_c00075{bottom:293.905645px;}
.y6a_c00075{bottom:294.953374px;}
.y69_c00075{bottom:297.090907px;}
.y68_c00075{bottom:298.350434px;}
.y67_c00075{bottom:302.071174px;}
.y66_c00075{bottom:304.585785px;}
.y65_c00075{bottom:306.832177px;}
.y64_c00075{bottom:308.068855px;}
.y63_c00075{bottom:309.781665px;}
.y62_c00075{bottom:311.069647px;}
.y61_c00075{bottom:311.903250px;}
.y60_c00075{bottom:313.554555px;}
.y5f_c00075{bottom:314.817036px;}
.y5e_c00075{bottom:319.130298px;}
.y5d_c00075{bottom:322.272396px;}
.y5c_c00075{bottom:323.428648px;}
.y5b_c00075{bottom:326.517940px;}
.y5a_c00075{bottom:328.742611px;}
.y59_c00075{bottom:331.033290px;}
.y58_c00075{bottom:335.370654px;}
.y57_c00075{bottom:335.926140px;}
.y56_c00075{bottom:338.246412px;}
.y55_c00075{bottom:339.008010px;}
.y54_c00075{bottom:342.130460px;}
.y53_c00075{bottom:344.813230px;}
.y52_c00075{bottom:346.213419px;}
.y51_c00075{bottom:348.310777px;}
.y50_c00075{bottom:352.737153px;}
.y4f_c00075{bottom:354.735676px;}
.y4e_c00075{bottom:357.985527px;}
.y4d_c00075{bottom:360.501156px;}
.y4c_c00075{bottom:362.619075px;}
.y4b_c00075{bottom:364.940537px;}
.y4a_c00075{bottom:366.180688px;}
.y49_c00075{bottom:369.224625px;}
.y48_c00075{bottom:373.440825px;}
.y47_c00075{bottom:374.264625px;}
.y46_c00075{bottom:375.298800px;}
.y45_c00075{bottom:375.956775px;}
.y44_c00075{bottom:377.036775px;}
.y43_c00075{bottom:379.283775px;}
.y42_c00075{bottom:380.497275px;}
.y41_c00075{bottom:382.888500px;}
.y40_c00075{bottom:386.102171px;}
.y3f_c00075{bottom:388.207169px;}
.y3e_c00075{bottom:391.977286px;}
.y3d_c00075{bottom:392.935416px;}
.y3c_c00075{bottom:394.327808px;}
.y3b_c00075{bottom:394.987937px;}
.y3a_c00075{bottom:399.634925px;}
.y39_c00075{bottom:402.482688px;}
.y38_c00075{bottom:403.171350px;}
.y37_c00075{bottom:406.206486px;}
.y36_c00075{bottom:407.247552px;}
.y35_c00075{bottom:408.528000px;}
.y34_c00075{bottom:469.398114px;}
.y33_c00075{bottom:471.471827px;}
.y32_c00075{bottom:472.374942px;}
.y31_c00075{bottom:474.153159px;}
.y30_c00075{bottom:474.847364px;}
.y2f_c00075{bottom:476.999085px;}
.y2e_c00075{bottom:479.931734px;}
.y2d_c00075{bottom:480.662597px;}
.y2c_c00075{bottom:481.436811px;}
.y2b_c00075{bottom:486.939834px;}
.y2a_c00075{bottom:489.159120px;}
.y29_c00075{bottom:490.459358px;}
.y28_c00075{bottom:492.365341px;}
.y27_c00075{bottom:495.306403px;}
.y26_c00075{bottom:496.102937px;}
.y25_c00075{bottom:498.180318px;}
.y24_c00075{bottom:500.362433px;}
.y23_c00075{bottom:503.847957px;}
.y22_c00075{bottom:505.772802px;}
.y21_c00075{bottom:506.240924px;}
.y20_c00075{bottom:508.902489px;}
.y1f_c00075{bottom:509.393390px;}
.y1e_c00075{bottom:511.360580px;}
.y1d_c00075{bottom:512.786067px;}
.y1c_c00075{bottom:513.065104px;}
.y1b_c00075{bottom:514.102242px;}
.y1a_c00075{bottom:522.124822px;}
.y19_c00075{bottom:524.722854px;}
.y18_c00075{bottom:525.473061px;}
.y17_c00075{bottom:527.586039px;}
.y16_c00075{bottom:529.890450px;}
.y15_c00075{bottom:530.995884px;}
.y14_c00075{bottom:532.192791px;}
.y13_c00075{bottom:537.550013px;}
.y12_c00075{bottom:540.090635px;}
.y11_c00075{bottom:540.796572px;}
.y10_c00075{bottom:542.409231px;}
.yf_c00075{bottom:543.122916px;}
.ye_c00075{bottom:545.554137px;}
.yd_c00075{bottom:545.936346px;}
.yc_c00075{bottom:548.107632px;}
.yb_c00075{bottom:554.367501px;}
.ya_c00075{bottom:556.527915px;}
.y9_c00075{bottom:558.486165px;}
.y8_c00075{bottom:559.536935px;}
.y7_c00075{bottom:560.061329px;}
.y6_c00075{bottom:562.390985px;}
.y5_c00075{bottom:562.846460px;}
.y4_c00075{bottom:564.314864px;}
.y3_c00075{bottom:566.829759px;}
.y2_c00075{bottom:570.268650px;}
.y1_c00075{bottom:571.866000px;}
.he_c00075{height:55.663939px;}
.hf_c00075{height:57.764465px;}
.hb_c00075{height:58.814728px;}
.hd_c00075{height:60.915254px;}
.h3_c00075{height:61.953624px;}
.h13_c00075{height:61.965517px;}
.h5_c00075{height:63.003685px;}
.h6_c00075{height:64.053747px;}
.h11_c00075{height:64.066043px;}
.h4_c00075{height:65.103808px;}
.h10_c00075{height:65.116306px;}
.h7_c00075{height:66.153870px;}
.h12_c00075{height:66.166569px;}
.h9_c00075{height:67.223684px;}
.ha_c00075{height:68.274054px;}
.h8_c00075{height:69.304054px;}
.hc_c00075{height:69.317357px;}
.h14_c00075{height:71.417883px;}
.h2_c00075{height:96.605651px;}
.h1_c00075{height:612.000000px;}
.h0_c00075{height:612.300000px;}
.w0_c00075{width:368.820000px;}
.w1_c00075{width:369.000000px;}
.x0_c00075{left:0.000000px;}
.x5f_c00075{left:31.826213px;}
.x69_c00075{left:36.979525px;}
.x65_c00075{left:38.320752px;}
.x5c_c00075{left:39.963651px;}
.x2f_c00075{left:41.738976px;}
.x3b_c00075{left:42.760845px;}
.xb_c00075{left:46.576317px;}
.x34_c00075{left:52.881000px;}
.x6c_c00075{left:56.289373px;}
.x4_c00075{left:57.476937px;}
.x78_c00075{left:62.522068px;}
.x26_c00075{left:63.669800px;}
.x71_c00075{left:64.806462px;}
.x3c_c00075{left:66.578601px;}
.x46_c00075{left:68.887552px;}
.x74_c00075{left:70.452084px;}
.x19_c00075{left:73.990167px;}
.x13_c00075{left:75.506580px;}
.x76_c00075{left:77.200182px;}
.x27_c00075{left:80.259713px;}
.x1a_c00075{left:81.322022px;}
.x41_c00075{left:87.919731px;}
.x53_c00075{left:89.770319px;}
.x20_c00075{left:91.506611px;}
.x44_c00075{left:93.464447px;}
.x5_c00075{left:96.085019px;}
.x35_c00075{left:100.657675px;}
.x14_c00075{left:101.796599px;}
.xc_c00075{left:103.645188px;}
.x66_c00075{left:104.922780px;}
.x6_c00075{left:108.063948px;}
.x3d_c00075{left:111.190515px;}
.xd_c00075{left:113.706846px;}
.x54_c00075{left:115.273067px;}
.x42_c00075{left:117.666384px;}
.x1b_c00075{left:118.769781px;}
.x47_c00075{left:121.687583px;}
.x62_c00075{left:123.847045px;}
.x36_c00075{left:124.903405px;}
.x4c_c00075{left:128.996277px;}
.x21_c00075{left:133.849854px;}
.x72_c00075{left:135.164119px;}
.x63_c00075{left:136.478125px;}
.x6d_c00075{left:137.558131px;}
.x45_c00075{left:142.835838px;}
.x28_c00075{left:146.851701px;}
.x48_c00075{left:149.072299px;}
.x22_c00075{left:150.104873px;}
.x3e_c00075{left:151.885725px;}
.x1_c00075{left:153.505500px;}
.x15_c00075{left:156.603821px;}
.x6e_c00075{left:160.103815px;}
.x57_c00075{left:161.897454px;}
.x6a_c00075{left:165.359017px;}
.x7_c00075{left:169.289678px;}
.x1c_c00075{left:170.493069px;}
.x79_c00075{left:171.960001px;}
.x30_c00075{left:175.613943px;}
.xe_c00075{left:177.594878px;}
.x75_c00075{left:178.855768px;}
.x52_c00075{left:180.122562px;}
.x8_c00075{left:183.091473px;}
.x49_c00075{left:185.485331px;}
.x2_c00075{left:188.195775px;}
.x37_c00075{left:191.376866px;}
.x31_c00075{left:194.742747px;}
.xf_c00075{left:196.355505px;}
.x3f_c00075{left:200.227031px;}
.x38_c00075{left:204.523206px;}
.x16_c00075{left:206.862267px;}
.x58_c00075{left:209.478728px;}
.x9_c00075{left:210.705485px;}
.x4a_c00075{left:211.754939px;}
.x5d_c00075{left:222.320285px;}
.x50_c00075{left:223.560454px;}
.x17_c00075{left:224.720207px;}
.x6f_c00075{left:228.108075px;}
.x55_c00075{left:231.644859px;}
.x6b_c00075{left:233.274034px;}
.x59_c00075{left:234.627830px;}
.x2b_c00075{left:236.199876px;}
.x10_c00075{left:238.748679px;}
.x39_c00075{left:241.645546px;}
.x70_c00075{left:244.160083px;}
.x5a_c00075{left:247.613007px;}
.x23_c00075{left:248.912790px;}
.x29_c00075{left:251.841776px;}
.x1d_c00075{left:253.371137px;}
.x2c_c00075{left:256.200356px;}
.x11_c00075{left:257.308439px;}
.x4b_c00075{left:259.489288px;}
.x3_c00075{left:262.879517px;}
.x1e_c00075{left:265.657328px;}
.x56_c00075{left:268.069200px;}
.x32_c00075{left:270.059163px;}
.x4d_c00075{left:271.068006px;}
.x2a_c00075{left:272.335626px;}
.x24_c00075{left:275.422094px;}
.x73_c00075{left:280.030804px;}
.x67_c00075{left:281.305437px;}
.x18_c00075{left:286.523738px;}
.x51_c00075{left:287.684775px;}
.x64_c00075{left:289.103107px;}
.x5b_c00075{left:294.827073px;}
.x60_c00075{left:296.410575px;}
.x77_c00075{left:299.761492px;}
.x40_c00075{left:301.067529px;}
.x4e_c00075{left:304.511377px;}
.x43_c00075{left:306.546119px;}
.x68_c00075{left:308.863000px;}
.x61_c00075{left:310.464331px;}
.x33_c00075{left:312.115937px;}
.x2d_c00075{left:314.509988px;}
.x1f_c00075{left:316.265318px;}
.xa_c00075{left:318.936929px;}
.x25_c00075{left:320.684070px;}
.x4f_c00075{left:322.600369px;}
.x12_c00075{left:324.094175px;}
.x3a_c00075{left:325.885222px;}
.x2e_c00075{left:327.740244px;}
.x5e_c00075{left:330.414866px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
.fsc_c00075{font-size:49.479057pt;}
.fsd_c00075{font-size:51.346191pt;}
.fs9_c00075{font-size:52.279758pt;}
.fsb_c00075{font-size:54.146892pt;}
.fs1_c00075{font-size:55.069888pt;}
.fs11_c00075{font-size:55.080459pt;}
.fs3_c00075{font-size:56.003276pt;}
.fs4_c00075{font-size:56.936664pt;}
.fsf_c00075{font-size:56.947593pt;}
.fs2_c00075{font-size:57.870052pt;}
.fse_c00075{font-size:57.881160pt;}
.fs5_c00075{font-size:58.803440pt;}
.fs10_c00075{font-size:58.814728pt;}
.fs7_c00075{font-size:59.754386pt;}
.fs8_c00075{font-size:60.688048pt;}
.fs6_c00075{font-size:61.603603pt;}
.fsa_c00075{font-size:61.615429pt;}
.fs12_c00075{font-size:63.482563pt;}
.fs0_c00075{font-size:85.871690pt;}
.y0_c00075{bottom:0.000000pt;}
.ye2_c00075{bottom:27.099880pt;}
.ye1_c00075{bottom:27.983031pt;}
.ye0_c00075{bottom:29.771200pt;}
.ydf_c00075{bottom:32.668659pt;}
.yde_c00075{bottom:33.800748pt;}
.ydd_c00075{bottom:35.943125pt;}
.ydc_c00075{bottom:36.906879pt;}
.ydb_c00075{bottom:37.439956pt;}
.yda_c00075{bottom:38.582245pt;}
.yd9_c00075{bottom:42.464800pt;}
.yd8_c00075{bottom:44.508577pt;}
.yd7_c00075{bottom:45.517599pt;}
.yd6_c00075{bottom:47.738859pt;}
.yd5_c00075{bottom:50.775456pt;}
.yd4_c00075{bottom:51.573125pt;}
.yd3_c00075{bottom:53.230669pt;}
.yd2_c00075{bottom:56.704277pt;}
.yd1_c00075{bottom:59.214628pt;}
.yd0_c00075{bottom:61.165256pt;}
.ycf_c00075{bottom:62.490364pt;}
.yce_c00075{bottom:63.407947pt;}
.ycd_c00075{bottom:67.138273pt;}
.ycc_c00075{bottom:69.076436pt;}
.ycb_c00075{bottom:72.980279pt;}
.yca_c00075{bottom:74.123444pt;}
.yc9_c00075{bottom:77.178443pt;}
.yc8_c00075{bottom:78.216333pt;}
.yc7_c00075{bottom:79.463175pt;}
.yc6_c00075{bottom:81.615295pt;}
.yc5_c00075{bottom:82.990213pt;}
.yc4_c00075{bottom:87.577761pt;}
.yc3_c00075{bottom:88.459617pt;}
.yc2_c00075{bottom:90.627821pt;}
.yc1_c00075{bottom:93.793089pt;}
.yc0_c00075{bottom:94.518669pt;}
.ybf_c00075{bottom:95.352989pt;}
.ybe_c00075{bottom:97.460524pt;}
.ybd_c00075{bottom:98.594196pt;}
.ybc_c00075{bottom:101.344607pt;}
.ybb_c00075{bottom:104.682745pt;}
.yba_c00075{bottom:105.368840pt;}
.yb9_c00075{bottom:108.272761pt;}
.yb8_c00075{bottom:109.235735pt;}
.yb7_c00075{bottom:112.707079pt;}
.yb6_c00075{bottom:113.478177pt;}
.yb5_c00075{bottom:117.966844pt;}
.yb4_c00075{bottom:120.357844pt;}
.yb3_c00075{bottom:121.288511pt;}
.yb2_c00075{bottom:123.379311pt;}
.yb1_c00075{bottom:124.172711pt;}
.yb0_c00075{bottom:124.797111pt;}
.yaf_c00075{bottom:125.924911pt;}
.yae_c00075{bottom:126.778844pt;}
.yad_c00075{bottom:129.090777pt;}
.yac_c00075{bottom:132.658471pt;}
.yab_c00075{bottom:133.908513pt;}
.yaa_c00075{bottom:137.729839pt;}
.ya9_c00075{bottom:138.960548pt;}
.ya8_c00075{bottom:140.798445pt;}
.ya7_c00075{bottom:141.911824pt;}
.ya6_c00075{bottom:144.933632pt;}
.ya5_c00075{bottom:147.190085pt;}
.ya4_c00075{bottom:148.252977pt;}
.ya3_c00075{bottom:148.924152pt;}
.ya2_c00075{bottom:150.077441pt;}
.ya1_c00075{bottom:151.353592pt;}
.ya0_c00075{bottom:154.500204pt;}
.y9f_c00075{bottom:155.314173pt;}
.y9e_c00075{bottom:155.898817pt;}
.y9d_c00075{bottom:157.960339pt;}
.y9c_c00075{bottom:159.820333pt;}
.y9b_c00075{bottom:162.538831pt;}
.y9a_c00075{bottom:163.176085pt;}
.y99_c00075{bottom:165.149113pt;}
.y98_c00075{bottom:166.084095pt;}
.y97_c00075{bottom:168.054656pt;}
.y96_c00075{bottom:168.890240pt;}
.y95_c00075{bottom:169.795223pt;}
.y94_c00075{bottom:171.753184pt;}
.y93_c00075{bottom:172.479836pt;}
.y92_c00075{bottom:175.183516pt;}
.y91_c00075{bottom:176.850055pt;}
.y90_c00075{bottom:181.019619pt;}
.y8f_c00075{bottom:181.947500pt;}
.y8e_c00075{bottom:182.990108pt;}
.y8d_c00075{bottom:185.370573pt;}
.y8c_c00075{bottom:190.546415pt;}
.y8b_c00075{bottom:194.602909pt;}
.y8a_c00075{bottom:196.662017pt;}
.y89_c00075{bottom:197.227696pt;}
.y88_c00075{bottom:198.323852pt;}
.y87_c00075{bottom:199.619145pt;}
.y86_c00075{bottom:200.397961pt;}
.y85_c00075{bottom:203.102149pt;}
.y84_c00075{bottom:205.660735pt;}
.y83_c00075{bottom:208.865977pt;}
.y82_c00075{bottom:210.775816pt;}
.y81_c00075{bottom:212.364248pt;}
.y80_c00075{bottom:215.049436pt;}
.y7f_c00075{bottom:217.438684pt;}
.y7e_c00075{bottom:218.550573pt;}
.y7d_c00075{bottom:219.595128pt;}
.y7c_c00075{bottom:229.848545pt;}
.y7b_c00075{bottom:231.995215pt;}
.y7a_c00075{bottom:233.085817pt;}
.y79_c00075{bottom:235.675183pt;}
.y78_c00075{bottom:238.988108pt;}
.y77_c00075{bottom:240.239595pt;}
.y76_c00075{bottom:242.125357pt;}
.y75_c00075{bottom:242.785031pt;}
.y74_c00075{bottom:246.078732pt;}
.y73_c00075{bottom:248.062419pt;}
.y72_c00075{bottom:251.044615pt;}
.y71_c00075{bottom:252.465300pt;}
.y70_c00075{bottom:253.286084pt;}
.y6f_c00075{bottom:254.803321pt;}
.y6e_c00075{bottom:257.532401pt;}
.y6d_c00075{bottom:259.126904pt;}
.y6c_c00075{bottom:260.646541pt;}
.y6b_c00075{bottom:261.249463pt;}
.y6a_c00075{bottom:262.180777pt;}
.y69_c00075{bottom:264.080807pt;}
.y68_c00075{bottom:265.200385pt;}
.y67_c00075{bottom:268.507711pt;}
.y66_c00075{bottom:270.742920pt;}
.y65_c00075{bottom:272.739713pt;}
.y64_c00075{bottom:273.838983pt;}
.y63_c00075{bottom:275.361480pt;}
.y62_c00075{bottom:276.506353pt;}
.y61_c00075{bottom:277.247333pt;}
.y60_c00075{bottom:278.715160pt;}
.y5f_c00075{bottom:279.837365pt;}
.y5e_c00075{bottom:283.671376pt;}
.y5d_c00075{bottom:286.464352pt;}
.y5c_c00075{bottom:287.492132pt;}
.y5b_c00075{bottom:290.238169pt;}
.y5a_c00075{bottom:292.215655pt;}
.y59_c00075{bottom:294.251813pt;}
.y58_c00075{bottom:298.107248pt;}
.y57_c00075{bottom:298.601013pt;}
.y56_c00075{bottom:300.663477pt;}
.y55_c00075{bottom:301.340453pt;}
.y54_c00075{bottom:304.115964pt;}
.y53_c00075{bottom:306.500649pt;}
.y52_c00075{bottom:307.745261pt;}
.y51_c00075{bottom:309.609580pt;}
.y50_c00075{bottom:313.544136pt;}
.y4f_c00075{bottom:315.320601pt;}
.y4e_c00075{bottom:318.209357pt;}
.y4d_c00075{bottom:320.445472pt;}
.y4c_c00075{bottom:322.328067pt;}
.y4b_c00075{bottom:324.391588pt;}
.y4a_c00075{bottom:325.493945pt;}
.y49_c00075{bottom:328.199667pt;}
.y48_c00075{bottom:331.947400pt;}
.y47_c00075{bottom:332.679667pt;}
.y46_c00075{bottom:333.598933pt;}
.y45_c00075{bottom:334.183800pt;}
.y44_c00075{bottom:335.143800pt;}
.y43_c00075{bottom:337.141133pt;}
.y42_c00075{bottom:338.219800pt;}
.y41_c00075{bottom:340.345333pt;}
.y40_c00075{bottom:343.201929pt;}
.y3f_c00075{bottom:345.073039pt;}
.y3e_c00075{bottom:348.424255pt;}
.y3d_c00075{bottom:349.275925pt;}
.y3c_c00075{bottom:350.513607pt;}
.y3b_c00075{bottom:351.100388pt;}
.y3a_c00075{bottom:355.231044pt;}
.y39_c00075{bottom:357.762389pt;}
.y38_c00075{bottom:358.374533pt;}
.y37_c00075{bottom:361.072432pt;}
.y36_c00075{bottom:361.997824pt;}
.y35_c00075{bottom:363.136000pt;}
.y34_c00075{bottom:417.242768pt;}
.y33_c00075{bottom:419.086068pt;}
.y32_c00075{bottom:419.888837pt;}
.y31_c00075{bottom:421.469475pt;}
.y30_c00075{bottom:422.086545pt;}
.y2f_c00075{bottom:423.999187pt;}
.y2e_c00075{bottom:426.605985pt;}
.y2d_c00075{bottom:427.255641pt;}
.y2c_c00075{bottom:427.943832pt;}
.y2b_c00075{bottom:432.835408pt;}
.y2a_c00075{bottom:434.808107pt;}
.y29_c00075{bottom:435.963873pt;}
.y28_c00075{bottom:437.658081pt;}
.y27_c00075{bottom:440.272359pt;}
.y26_c00075{bottom:440.980388pt;}
.y25_c00075{bottom:442.826949pt;}
.y24_c00075{bottom:444.766607pt;}
.y23_c00075{bottom:447.864851pt;}
.y22_c00075{bottom:449.575824pt;}
.y21_c00075{bottom:449.991932pt;}
.y20_c00075{bottom:452.357768pt;}
.y1f_c00075{bottom:452.794124pt;}
.y1e_c00075{bottom:454.542737pt;}
.y1d_c00075{bottom:455.809837pt;}
.y1c_c00075{bottom:456.057871pt;}
.y1b_c00075{bottom:456.979771pt;}
.y1a_c00075{bottom:464.110953pt;}
.y19_c00075{bottom:466.420315pt;}
.y18_c00075{bottom:467.087165pt;}
.y17_c00075{bottom:468.965368pt;}
.y16_c00075{bottom:471.013733pt;}
.y15_c00075{bottom:471.996341pt;}
.y14_c00075{bottom:473.060259pt;}
.y13_c00075{bottom:477.822233pt;}
.y12_c00075{bottom:480.080564pt;}
.y11_c00075{bottom:480.708064pt;}
.y10_c00075{bottom:482.141539pt;}
.yf_c00075{bottom:482.775925pt;}
.ye_c00075{bottom:484.937011pt;}
.yd_c00075{bottom:485.276752pt;}
.yc_c00075{bottom:487.206784pt;}
.yb_c00075{bottom:492.771112pt;}
.ya_c00075{bottom:494.691480pt;}
.y9_c00075{bottom:496.432147pt;}
.y8_c00075{bottom:497.366164pt;}
.y7_c00075{bottom:497.832292pt;}
.y6_c00075{bottom:499.903097pt;}
.y5_c00075{bottom:500.307964pt;}
.y4_c00075{bottom:501.613212pt;}
.y3_c00075{bottom:503.848675pt;}
.y2_c00075{bottom:506.905467pt;}
.y1_c00075{bottom:508.325333pt;}
.he_c00075{height:49.479057pt;}
.hf_c00075{height:51.346191pt;}
.hb_c00075{height:52.279758pt;}
.hd_c00075{height:54.146892pt;}
.h3_c00075{height:55.069888pt;}
.h13_c00075{height:55.080459pt;}
.h5_c00075{height:56.003276pt;}
.h6_c00075{height:56.936664pt;}
.h11_c00075{height:56.947593pt;}
.h4_c00075{height:57.870052pt;}
.h10_c00075{height:57.881160pt;}
.h7_c00075{height:58.803440pt;}
.h12_c00075{height:58.814728pt;}
.h9_c00075{height:59.754386pt;}
.ha_c00075{height:60.688048pt;}
.h8_c00075{height:61.603603pt;}
.hc_c00075{height:61.615429pt;}
.h14_c00075{height:63.482563pt;}
.h2_c00075{height:85.871690pt;}
.h1_c00075{height:544.000000pt;}
.h0_c00075{height:544.266667pt;}
.w0_c00075{width:327.840000pt;}
.w1_c00075{width:328.000000pt;}
.x0_c00075{left:0.000000pt;}
.x5f_c00075{left:28.289967pt;}
.x69_c00075{left:32.870689pt;}
.x65_c00075{left:34.062891pt;}
.x5c_c00075{left:35.523245pt;}
.x2f_c00075{left:37.101312pt;}
.x3b_c00075{left:38.009640pt;}
.xb_c00075{left:41.401171pt;}
.x34_c00075{left:47.005333pt;}
.x6c_c00075{left:50.034999pt;}
.x4_c00075{left:51.090611pt;}
.x78_c00075{left:55.575172pt;}
.x26_c00075{left:56.595377pt;}
.x71_c00075{left:57.605744pt;}
.x3c_c00075{left:59.180979pt;}
.x46_c00075{left:61.233380pt;}
.x74_c00075{left:62.624075pt;}
.x19_c00075{left:65.769037pt;}
.x13_c00075{left:67.116960pt;}
.x76_c00075{left:68.622384pt;}
.x27_c00075{left:71.341967pt;}
.x1a_c00075{left:72.286241pt;}
.x41_c00075{left:78.150872pt;}
.x53_c00075{left:79.795839pt;}
.x20_c00075{left:81.339209pt;}
.x44_c00075{left:83.079508pt;}
.x5_c00075{left:85.408905pt;}
.x35_c00075{left:89.473489pt;}
.x14_c00075{left:90.485865pt;}
.xc_c00075{left:92.129056pt;}
.x66_c00075{left:93.264693pt;}
.x6_c00075{left:96.056843pt;}
.x3d_c00075{left:98.836013pt;}
.xd_c00075{left:101.072752pt;}
.x54_c00075{left:102.464948pt;}
.x42_c00075{left:104.592341pt;}
.x1b_c00075{left:105.573139pt;}
.x47_c00075{left:108.166740pt;}
.x62_c00075{left:110.086263pt;}
.x36_c00075{left:111.025249pt;}
.x4c_c00075{left:114.663357pt;}
.x21_c00075{left:118.977648pt;}
.x72_c00075{left:120.145884pt;}
.x63_c00075{left:121.313889pt;}
.x6d_c00075{left:122.273895pt;}
.x45_c00075{left:126.965189pt;}
.x28_c00075{left:130.534845pt;}
.x48_c00075{left:132.508711pt;}
.x22_c00075{left:133.426553pt;}
.x3e_c00075{left:135.009533pt;}
.x1_c00075{left:136.449333pt;}
.x15_c00075{left:139.203396pt;}
.x6e_c00075{left:142.314503pt;}
.x57_c00075{left:143.908848pt;}
.x6a_c00075{left:146.985793pt;}
.x7_c00075{left:150.479713pt;}
.x1c_c00075{left:151.549395pt;}
.x79_c00075{left:152.853335pt;}
.x30_c00075{left:156.101283pt;}
.xe_c00075{left:157.862113pt;}
.x75_c00075{left:158.982905pt;}
.x52_c00075{left:160.108944pt;}
.x8_c00075{left:162.747976pt;}
.x49_c00075{left:164.875849pt;}
.x2_c00075{left:167.285133pt;}
.x37_c00075{left:170.112769pt;}
.x31_c00075{left:173.104664pt;}
.xf_c00075{left:174.538227pt;}
.x3f_c00075{left:177.979583pt;}
.x38_c00075{left:181.798405pt;}
.x16_c00075{left:183.877571pt;}
.x58_c00075{left:186.203313pt;}
.x9_c00075{left:187.293764pt;}
.x4a_c00075{left:188.226612pt;}
.x5d_c00075{left:197.618031pt;}
.x50_c00075{left:198.720404pt;}
.x17_c00075{left:199.751295pt;}
.x6f_c00075{left:202.762733pt;}
.x55_c00075{left:205.906541pt;}
.x6b_c00075{left:207.354697pt;}
.x59_c00075{left:208.558071pt;}
.x2b_c00075{left:209.955445pt;}
.x10_c00075{left:212.221048pt;}
.x39_c00075{left:214.796041pt;}
.x70_c00075{left:217.031185pt;}
.x5a_c00075{left:220.100451pt;}
.x23_c00075{left:221.255813pt;}
.x29_c00075{left:223.859356pt;}
.x1d_c00075{left:225.218788pt;}
.x2c_c00075{left:227.733649pt;}
.x11_c00075{left:228.718612pt;}
.x4b_c00075{left:230.657145pt;}
.x3_c00075{left:233.670681pt;}
.x1e_c00075{left:236.139847pt;}
.x56_c00075{left:238.283733pt;}
.x32_c00075{left:240.052589pt;}
.x4d_c00075{left:240.949339pt;}
.x2a_c00075{left:242.076112pt;}
.x24_c00075{left:244.819639pt;}
.x73_c00075{left:248.916271pt;}
.x67_c00075{left:250.049277pt;}
.x18_c00075{left:254.687767pt;}
.x51_c00075{left:255.719800pt;}
.x64_c00075{left:256.980540pt;}
.x5b_c00075{left:262.068509pt;}
.x60_c00075{left:263.476067pt;}
.x77_c00075{left:266.454660pt;}
.x40_c00075{left:267.615581pt;}
.x4e_c00075{left:270.676780pt;}
.x43_c00075{left:272.485439pt;}
.x68_c00075{left:274.544889pt;}
.x61_c00075{left:275.968295pt;}
.x33_c00075{left:277.436388pt;}
.x2d_c00075{left:279.564433pt;}
.x1f_c00075{left:281.124727pt;}
.xa_c00075{left:283.499492pt;}
.x25_c00075{left:285.052507pt;}
.x4f_c00075{left:286.755884pt;}
.x12_c00075{left:288.083711pt;}
.x3a_c00075{left:289.675753pt;}
.x2e_c00075{left:291.324661pt;}
.x5e_c00075{left:293.702103pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00076 {
    display:none;
  }
  .loading-indicator_c00076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00076 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00076 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00076" -> "#page-container .classname_c00076")
 */
.pf_c00076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00076 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00076 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00076 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00076 {overflow:visible;}
  }
}
.c_c00076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00076 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00076:after { /* webkit #35443 */
  content: '';
}
.t_c00076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00076 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00076 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00076 { /* info for Javascript */
  display:none;
}
.l_c00076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00076:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00076 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00076.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00076{transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);}
.mf0_c00076{transform:matrix(0.135940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135940,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.139805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139805,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);}
.md4_c00076{transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);}
.mb9_c00076{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.mbc_c00076{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00076{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.158445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158445,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.mde_c00076{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.maa_c00076{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.md0_c00076{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.ma7_c00076{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);}
.med_c00076{transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);}
.mbd_c00076{transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);}
.m90_c00076{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167685,0.000000,0.000000,0.250000,0,0);}
.m97_c00076{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m9e_c00076{transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);}
.m7a_c00076{transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);}
.mce_c00076{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.ma5_c00076{transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);}
.m81_c00076{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m93_c00076{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m91_c00076{transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171110,0.000000,0.000000,0.250000,0,0);}
.maf_c00076{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.174480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174480,0.000000,0.000000,0.250000,0,0);}
.mb4_c00076{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.mac_c00076{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m94_c00076{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.mb5_c00076{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.mec_c00076{transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m103_c00076{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.ma9_c00076{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00076{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.mb0_c00076{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);}
.mf5_c00076{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m100_c00076{transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.mc1_c00076{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);}
.m10d_c00076{transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);}
.mfb_c00076{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.mc5_c00076{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m59_c00076{transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);}
.m88_c00076{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.mc8_c00076{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.mcf_c00076{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.m95_c00076{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m85_c00076{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);}
.ma6_c00076{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m66_c00076{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00076{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m6f_c00076{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.md7_c00076{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);}
.md5_c00076{transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);}
.mea_c00076{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m109_c00076{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.mdc_c00076{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.mfa_c00076{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.md6_c00076{transform:matrix(0.190330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190330,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m9a_c00076{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m99_c00076{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m82_c00076{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.md2_c00076{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m8d_c00076{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m9f_c00076{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.mad_c00076{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.mf3_c00076{transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m80_c00076{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.mb1_c00076{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.mb3_c00076{transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.195285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195285,0.000000,0.000000,0.250000,0,0);}
.m8a_c00076{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.meb_c00076{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.mfd_c00076{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00076{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.mf9_c00076{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);}
.ma0_c00076{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.m105_c00076{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.m70_c00076{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m106_c00076{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.md1_c00076{transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00076{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mcb_c00076{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.mb6_c00076{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.mcc_c00076{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.ma3_c00076{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.mbf_c00076{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.mbb_c00076{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);}
.mc7_c00076{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.md3_c00076{transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.mc0_c00076{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.mdd_c00076{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.m83_c00076{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.m9c_c00076{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m108_c00076{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.mdb_c00076{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.ma8_c00076{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.ma2_c00076{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m101_c00076{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m77_c00076{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00076{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.mba_c00076{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.mab_c00076{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mf6_c00076{transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);}
.mda_c00076{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m89_c00076{transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);}
.m92_c00076{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.mfc_c00076{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.mcd_c00076{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.mfe_c00076{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.me9_c00076{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m84_c00076{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mf4_c00076{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.mf7_c00076{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.m104_c00076{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.mee_c00076{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00076{transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);}
.mc4_c00076{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m102_c00076{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.m6d_c00076{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.md8_c00076{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);}
.mef_c00076{transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.mdf_c00076{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00076{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.mb8_c00076{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.mae_c00076{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.mf1_c00076{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00076{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m10a_c00076{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.md9_c00076{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.m86_c00076{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.m8b_c00076{transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);}
.m7d_c00076{transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);}
.mca_c00076{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00076{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.mbe_c00076{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.me0_c00076{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.m7c_c00076{transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);}
.m107_c00076{transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.m7f_c00076{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);}
.m98_c00076{transform:matrix(0.229560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229560,0.000000,0.000000,0.250000,0,0);}
.mf8_c00076{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.mf2_c00076{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);}
.me8_c00076{transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);}
.mc2_c00076{transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);}
.mc9_c00076{transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);}
.m5d_c00076{transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mb2_c00076{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m10c_c00076{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.mff_c00076{transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258415,0.000000,0.000000,0.250000,0,0);}
.me3_c00076{transform:matrix(0.278745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278745,0.000000,0.000000,0.250000,0,0);}
.me6_c00076{transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);}
.me5_c00076{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.me4_c00076{transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);}
.me2_c00076{transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);}
.me7_c00076{transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);}
.me1_c00076{transform:matrix(0.324635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324635,0.000000,0.000000,0.250000,0,0);}
.m75_c00076{transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(1.061575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.061575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.061575,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
.fc0_c00076{color:transparent;}
.fsc_c00076{font-size:43.050000px;}
.fs8_c00076{font-size:55.650000px;}
.fs1_c00076{font-size:57.750000px;}
.fsd_c00076{font-size:58.800000px;}
.fsb_c00076{font-size:59.850000px;}
.fs6_c00076{font-size:60.900000px;}
.fs9_c00076{font-size:61.950000px;}
.fs0_c00076{font-size:63.000000px;}
.fs5_c00076{font-size:64.050000px;}
.fs7_c00076{font-size:65.100000px;}
.fs4_c00076{font-size:66.150000px;}
.fsa_c00076{font-size:67.200000px;}
.fs2_c00076{font-size:68.250000px;}
.fs3_c00076{font-size:72.450000px;}
.y0_c00076{bottom:0.000000px;}
.y72_c00076{bottom:32.739000px;}
.y71_c00076{bottom:49.243500px;}
.y70_c00076{bottom:49.578000px;}
.y6f_c00076{bottom:50.133000px;}
.y6e_c00076{bottom:50.532000px;}
.y6d_c00076{bottom:51.201000px;}
.y6c_c00076{bottom:52.402500px;}
.y6b_c00076{bottom:52.777500px;}
.y6a_c00076{bottom:53.466000px;}
.y69_c00076{bottom:64.252500px;}
.y68_c00076{bottom:64.569000px;}
.y67_c00076{bottom:65.058000px;}
.y66_c00076{bottom:65.595000px;}
.y65_c00076{bottom:65.976000px;}
.y64_c00076{bottom:66.316500px;}
.y63_c00076{bottom:66.991500px;}
.y62_c00076{bottom:67.330500px;}
.y61_c00076{bottom:68.236500px;}
.y60_c00076{bottom:68.857500px;}
.y5f_c00076{bottom:79.854000px;}
.y5e_c00076{bottom:80.215500px;}
.y5d_c00076{bottom:80.457000px;}
.y5c_c00076{bottom:80.898000px;}
.y5b_c00076{bottom:81.762000px;}
.y5a_c00076{bottom:82.051500px;}
.y59_c00076{bottom:82.539000px;}
.y58_c00076{bottom:82.791000px;}
.y57_c00076{bottom:83.122500px;}
.y56_c00076{bottom:83.460000px;}
.y55_c00076{bottom:84.247500px;}
.y54_c00076{bottom:100.483500px;}
.y53_c00076{bottom:101.434500px;}
.y52_c00076{bottom:101.758500px;}
.y51_c00076{bottom:102.174000px;}
.y50_c00076{bottom:103.090500px;}
.y4f_c00076{bottom:103.539000px;}
.y4e_c00076{bottom:104.227500px;}
.y4d_c00076{bottom:104.496000px;}
.y4c_c00076{bottom:115.512000px;}
.y4b_c00076{bottom:115.782000px;}
.y4a_c00076{bottom:116.062500px;}
.y49_c00076{bottom:116.508000px;}
.y48_c00076{bottom:116.923500px;}
.y47_c00076{bottom:117.211500px;}
.y46_c00076{bottom:118.221000px;}
.y45_c00076{bottom:118.543500px;}
.y44_c00076{bottom:118.782000px;}
.y43_c00076{bottom:119.076000px;}
.y42_c00076{bottom:134.418000px;}
.y41_c00076{bottom:134.736000px;}
.y40_c00076{bottom:135.864000px;}
.y3f_c00076{bottom:136.209000px;}
.y3e_c00076{bottom:136.870500px;}
.y3d_c00076{bottom:137.125500px;}
.y3c_c00076{bottom:137.440500px;}
.y3b_c00076{bottom:137.976000px;}
.y3a_c00076{bottom:150.819000px;}
.y39_c00076{bottom:167.302500px;}
.y38_c00076{bottom:167.655000px;}
.y37_c00076{bottom:168.636000px;}
.y36_c00076{bottom:168.760500px;}
.y35_c00076{bottom:169.714500px;}
.y34_c00076{bottom:170.115000px;}
.y33_c00076{bottom:170.568000px;}
.y32_c00076{bottom:171.199500px;}
.y31_c00076{bottom:171.538500px;}
.y30_c00076{bottom:171.723000px;}
.y2f_c00076{bottom:184.213500px;}
.y2e_c00076{bottom:184.525500px;}
.y2d_c00076{bottom:185.073000px;}
.y2c_c00076{bottom:185.265000px;}
.y2b_c00076{bottom:186.097500px;}
.y2a_c00076{bottom:186.322500px;}
.y29_c00076{bottom:186.985500px;}
.y28_c00076{bottom:187.176000px;}
.y27_c00076{bottom:187.384500px;}
.y26_c00076{bottom:202.386000px;}
.y25_c00076{bottom:219.009000px;}
.y24_c00076{bottom:236.161500px;}
.y23_c00076{bottom:253.291500px;}
.y22_c00076{bottom:270.460500px;}
.y21_c00076{bottom:287.860500px;}
.y20_c00076{bottom:305.043000px;}
.y1f_c00076{bottom:321.510000px;}
.y1e_c00076{bottom:333.345000px;}
.y1d_c00076{bottom:333.961500px;}
.y1c_c00076{bottom:335.065500px;}
.y1b_c00076{bottom:335.788500px;}
.y1a_c00076{bottom:336.016500px;}
.y19_c00076{bottom:336.736500px;}
.y18_c00076{bottom:336.969000px;}
.y17_c00076{bottom:337.638000px;}
.y16_c00076{bottom:338.314500px;}
.y15_c00076{bottom:349.306500px;}
.y14_c00076{bottom:350.019000px;}
.y13_c00076{bottom:350.608500px;}
.y12_c00076{bottom:350.952000px;}
.y11_c00076{bottom:351.769500px;}
.y10_c00076{bottom:351.961500px;}
.yf_c00076{bottom:352.657500px;}
.ye_c00076{bottom:352.893000px;}
.yd_c00076{bottom:369.757500px;}
.yc_c00076{bottom:385.851000px;}
.yb_c00076{bottom:403.353000px;}
.ya_c00076{bottom:419.350500px;}
.y9_c00076{bottom:437.275500px;}
.y8_c00076{bottom:453.519000px;}
.y7_c00076{bottom:470.407500px;}
.y6_c00076{bottom:488.460000px;}
.y5_c00076{bottom:503.728500px;}
.y4_c00076{bottom:522.654000px;}
.y3_c00076{bottom:539.530500px;}
.y2_c00076{bottom:554.524500px;}
.y1_c00076{bottom:570.391500px;}
.he_c00076{height:43.050000px;}
.ha_c00076{height:55.650000px;}
.h3_c00076{height:57.750000px;}
.hf_c00076{height:58.800000px;}
.hd_c00076{height:59.850000px;}
.h8_c00076{height:60.900000px;}
.hb_c00076{height:61.950000px;}
.h2_c00076{height:63.000000px;}
.h7_c00076{height:64.050000px;}
.h9_c00076{height:65.100000px;}
.h6_c00076{height:66.150000px;}
.hc_c00076{height:67.200000px;}
.h4_c00076{height:68.250000px;}
.h5_c00076{height:72.450000px;}
.h1_c00076{height:612.000000px;}
.h0_c00076{height:612.300000px;}
.w0_c00076{width:368.820000px;}
.w1_c00076{width:369.000000px;}
.x0_c00076{left:0.000000px;}
.x9_c00076{left:17.280000px;}
.x26_c00076{left:23.760000px;}
.x3_c00076{left:25.110000px;}
.x3d_c00076{left:26.190000px;}
.x83_c00076{left:27.543000px;}
.x75_c00076{left:30.394500px;}
.x35_c00076{left:32.400000px;}
.x30_c00076{left:33.750000px;}
.x6b_c00076{left:38.608500px;}
.x2a_c00076{left:42.390000px;}
.x70_c00076{left:44.008500px;}
.x5a_c00076{left:46.708500px;}
.x36_c00076{left:51.840000px;}
.x1b_c00076{left:54.270000px;}
.xa_c00076{left:58.050000px;}
.x71_c00076{left:59.128500px;}
.x5b_c00076{left:60.208500px;}
.x4_c00076{left:61.290000px;}
.x80_c00076{left:62.443500px;}
.x2b_c00076{left:63.990000px;}
.x20_c00076{left:66.150000px;}
.x82_c00076{left:67.332000px;}
.x49_c00076{left:69.120000px;}
.xb_c00076{left:70.470000px;}
.x5d_c00076{left:73.168500px;}
.x37_c00076{left:74.790000px;}
.x84_c00076{left:75.873000px;}
.x13_c00076{left:79.380000px;}
.x42_c00076{left:82.350000px;}
.x68_c00076{left:83.698500px;}
.x7b_c00076{left:86.791500px;}
.x77_c00076{left:89.373000px;}
.x3e_c00076{left:92.880000px;}
.x79_c00076{left:94.635000px;}
.x4f_c00076{left:96.852000px;}
.x52_c00076{left:100.285500px;}
.x76_c00076{left:102.544500px;}
.x27_c00076{left:104.220000px;}
.xc_c00076{left:109.080000px;}
.x43_c00076{left:110.970000px;}
.x53_c00076{left:113.226000px;}
.x85_c00076{left:114.483000px;}
.x64_c00076{left:116.098500px;}
.x31_c00076{left:118.530000px;}
.x61_c00076{left:119.608500px;}
.x21_c00076{left:121.500000px;}
.x14_c00076{left:127.170000px;}
.x5_c00076{left:128.250000px;}
.x1c_c00076{left:130.410000px;}
.x7e_c00076{left:132.454500px;}
.x38_c00076{left:134.460000px;}
.x7a_c00076{left:135.955500px;}
.x32_c00076{left:137.700000px;}
.xd_c00076{left:141.750000px;}
.x5c_c00076{left:144.448500px;}
.x44_c00076{left:146.610000px;}
.x15_c00076{left:148.230000px;}
.x6_c00076{left:150.390000px;}
.x39_c00076{left:152.820000px;}
.x4a_c00076{left:155.790000px;}
.x2c_c00076{left:158.220000px;}
.x72_c00076{left:159.838500px;}
.xe_c00076{left:161.190000px;}
.x6c_c00076{left:162.808500px;}
.x3f_c00076{left:165.240000px;}
.x69_c00076{left:168.208500px;}
.x5e_c00076{left:170.368500px;}
.x50_c00076{left:174.537000px;}
.x1_c00076{left:176.040000px;}
.x4b_c00076{left:178.470000px;}
.x62_c00076{left:180.088500px;}
.x22_c00076{left:181.170000px;}
.x16_c00076{left:182.250000px;}
.x55_c00076{left:184.948500px;}
.x28_c00076{left:186.840000px;}
.x5f_c00076{left:188.728500px;}
.x33_c00076{left:192.510000px;}
.x63_c00076{left:193.858500px;}
.x17_c00076{left:195.480000px;}
.xf_c00076{left:200.070000px;}
.x78_c00076{left:203.313000px;}
.x54_c00076{left:206.065500px;}
.x45_c00076{left:207.360000px;}
.x1d_c00076{left:208.440000px;}
.x6d_c00076{left:211.408500px;}
.x18_c00076{left:212.490000px;}
.x23_c00076{left:214.380000px;}
.x10_c00076{left:216.270000px;}
.x73_c00076{left:217.294500px;}
.x29_c00076{left:221.940000px;}
.x46_c00076{left:223.830000px;}
.x56_c00076{left:226.528500px;}
.x2d_c00076{left:227.610000px;}
.x6e_c00076{left:230.038500px;}
.x1e_c00076{left:235.170000px;}
.x65_c00076{left:236.518500px;}
.x86_c00076{left:237.873000px;}
.x3a_c00076{left:240.300000px;}
.x4c_c00076{left:241.650000px;}
.x2e_c00076{left:243.540000px;}
.x7_c00076{left:246.240000px;}
.x57_c00076{left:247.318500px;}
.x19_c00076{left:248.400000px;}
.x4d_c00076{left:251.370000px;}
.x66_c00076{left:254.608500px;}
.x47_c00076{left:256.230000px;}
.x7c_c00076{left:261.003000px;}
.x58_c00076{left:262.438500px;}
.x60_c00076{left:263.518500px;}
.x1f_c00076{left:265.410000px;}
.x2f_c00076{left:266.490000px;}
.x8_c00076{left:268.110000px;}
.x24_c00076{left:269.730000px;}
.x6f_c00076{left:274.318500px;}
.x11_c00076{left:275.400000px;}
.x7f_c00076{left:277.665000px;}
.x48_c00076{left:280.800000px;}
.x87_c00076{left:282.963000px;}
.x3b_c00076{left:285.120000px;}
.x40_c00076{left:288.630000px;}
.x6a_c00076{left:289.708500px;}
.x25_c00076{left:290.790000px;}
.x2_c00076{left:291.870000px;}
.x7d_c00076{left:293.305500px;}
.x12_c00076{left:295.380000px;}
.x81_c00076{left:296.766000px;}
.x1a_c00076{left:297.810000px;}
.x51_c00076{left:301.159500px;}
.x34_c00076{left:302.670000px;}
.x67_c00076{left:305.638500px;}
.x3c_c00076{left:306.720000px;}
.x4e_c00076{left:309.150000px;}
.x41_c00076{left:311.580000px;}
.x74_c00076{left:312.843000px;}
.x88_c00076{left:315.093000px;}
.x59_c00076{left:316.168500px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.fsc_c00076{font-size:38.266667pt;}
.fs8_c00076{font-size:49.466667pt;}
.fs1_c00076{font-size:51.333333pt;}
.fsd_c00076{font-size:52.266667pt;}
.fsb_c00076{font-size:53.200000pt;}
.fs6_c00076{font-size:54.133333pt;}
.fs9_c00076{font-size:55.066667pt;}
.fs0_c00076{font-size:56.000000pt;}
.fs5_c00076{font-size:56.933333pt;}
.fs7_c00076{font-size:57.866667pt;}
.fs4_c00076{font-size:58.800000pt;}
.fsa_c00076{font-size:59.733333pt;}
.fs2_c00076{font-size:60.666667pt;}
.fs3_c00076{font-size:64.400000pt;}
.y0_c00076{bottom:0.000000pt;}
.y72_c00076{bottom:29.101333pt;}
.y71_c00076{bottom:43.772000pt;}
.y70_c00076{bottom:44.069333pt;}
.y6f_c00076{bottom:44.562667pt;}
.y6e_c00076{bottom:44.917333pt;}
.y6d_c00076{bottom:45.512000pt;}
.y6c_c00076{bottom:46.580000pt;}
.y6b_c00076{bottom:46.913333pt;}
.y6a_c00076{bottom:47.525333pt;}
.y69_c00076{bottom:57.113333pt;}
.y68_c00076{bottom:57.394667pt;}
.y67_c00076{bottom:57.829333pt;}
.y66_c00076{bottom:58.306667pt;}
.y65_c00076{bottom:58.645333pt;}
.y64_c00076{bottom:58.948000pt;}
.y63_c00076{bottom:59.548000pt;}
.y62_c00076{bottom:59.849333pt;}
.y61_c00076{bottom:60.654667pt;}
.y60_c00076{bottom:61.206667pt;}
.y5f_c00076{bottom:70.981333pt;}
.y5e_c00076{bottom:71.302667pt;}
.y5d_c00076{bottom:71.517333pt;}
.y5c_c00076{bottom:71.909333pt;}
.y5b_c00076{bottom:72.677333pt;}
.y5a_c00076{bottom:72.934667pt;}
.y59_c00076{bottom:73.368000pt;}
.y58_c00076{bottom:73.592000pt;}
.y57_c00076{bottom:73.886667pt;}
.y56_c00076{bottom:74.186667pt;}
.y55_c00076{bottom:74.886667pt;}
.y54_c00076{bottom:89.318667pt;}
.y53_c00076{bottom:90.164000pt;}
.y52_c00076{bottom:90.452000pt;}
.y51_c00076{bottom:90.821333pt;}
.y50_c00076{bottom:91.636000pt;}
.y4f_c00076{bottom:92.034667pt;}
.y4e_c00076{bottom:92.646667pt;}
.y4d_c00076{bottom:92.885333pt;}
.y4c_c00076{bottom:102.677333pt;}
.y4b_c00076{bottom:102.917333pt;}
.y4a_c00076{bottom:103.166667pt;}
.y49_c00076{bottom:103.562667pt;}
.y48_c00076{bottom:103.932000pt;}
.y47_c00076{bottom:104.188000pt;}
.y46_c00076{bottom:105.085333pt;}
.y45_c00076{bottom:105.372000pt;}
.y44_c00076{bottom:105.584000pt;}
.y43_c00076{bottom:105.845333pt;}
.y42_c00076{bottom:119.482667pt;}
.y41_c00076{bottom:119.765333pt;}
.y40_c00076{bottom:120.768000pt;}
.y3f_c00076{bottom:121.074667pt;}
.y3e_c00076{bottom:121.662667pt;}
.y3d_c00076{bottom:121.889333pt;}
.y3c_c00076{bottom:122.169333pt;}
.y3b_c00076{bottom:122.645333pt;}
.y3a_c00076{bottom:134.061333pt;}
.y39_c00076{bottom:148.713333pt;}
.y38_c00076{bottom:149.026667pt;}
.y37_c00076{bottom:149.898667pt;}
.y36_c00076{bottom:150.009333pt;}
.y35_c00076{bottom:150.857333pt;}
.y34_c00076{bottom:151.213333pt;}
.y33_c00076{bottom:151.616000pt;}
.y32_c00076{bottom:152.177333pt;}
.y31_c00076{bottom:152.478667pt;}
.y30_c00076{bottom:152.642667pt;}
.y2f_c00076{bottom:163.745333pt;}
.y2e_c00076{bottom:164.022667pt;}
.y2d_c00076{bottom:164.509333pt;}
.y2c_c00076{bottom:164.680000pt;}
.y2b_c00076{bottom:165.420000pt;}
.y2a_c00076{bottom:165.620000pt;}
.y29_c00076{bottom:166.209333pt;}
.y28_c00076{bottom:166.378667pt;}
.y27_c00076{bottom:166.564000pt;}
.y26_c00076{bottom:179.898667pt;}
.y25_c00076{bottom:194.674667pt;}
.y24_c00076{bottom:209.921333pt;}
.y23_c00076{bottom:225.148000pt;}
.y22_c00076{bottom:240.409333pt;}
.y21_c00076{bottom:255.876000pt;}
.y20_c00076{bottom:271.149333pt;}
.y1f_c00076{bottom:285.786667pt;}
.y1e_c00076{bottom:296.306667pt;}
.y1d_c00076{bottom:296.854667pt;}
.y1c_c00076{bottom:297.836000pt;}
.y1b_c00076{bottom:298.478667pt;}
.y1a_c00076{bottom:298.681333pt;}
.y19_c00076{bottom:299.321333pt;}
.y18_c00076{bottom:299.528000pt;}
.y17_c00076{bottom:300.122667pt;}
.y16_c00076{bottom:300.724000pt;}
.y15_c00076{bottom:310.494667pt;}
.y14_c00076{bottom:311.128000pt;}
.y13_c00076{bottom:311.652000pt;}
.y12_c00076{bottom:311.957333pt;}
.y11_c00076{bottom:312.684000pt;}
.y10_c00076{bottom:312.854667pt;}
.yf_c00076{bottom:313.473333pt;}
.ye_c00076{bottom:313.682667pt;}
.yd_c00076{bottom:328.673333pt;}
.yc_c00076{bottom:342.978667pt;}
.yb_c00076{bottom:358.536000pt;}
.ya_c00076{bottom:372.756000pt;}
.y9_c00076{bottom:388.689333pt;}
.y8_c00076{bottom:403.128000pt;}
.y7_c00076{bottom:418.140000pt;}
.y6_c00076{bottom:434.186667pt;}
.y5_c00076{bottom:447.758667pt;}
.y4_c00076{bottom:464.581333pt;}
.y3_c00076{bottom:479.582667pt;}
.y2_c00076{bottom:492.910667pt;}
.y1_c00076{bottom:507.014667pt;}
.he_c00076{height:38.266667pt;}
.ha_c00076{height:49.466667pt;}
.h3_c00076{height:51.333333pt;}
.hf_c00076{height:52.266667pt;}
.hd_c00076{height:53.200000pt;}
.h8_c00076{height:54.133333pt;}
.hb_c00076{height:55.066667pt;}
.h2_c00076{height:56.000000pt;}
.h7_c00076{height:56.933333pt;}
.h9_c00076{height:57.866667pt;}
.h6_c00076{height:58.800000pt;}
.hc_c00076{height:59.733333pt;}
.h4_c00076{height:60.666667pt;}
.h5_c00076{height:64.400000pt;}
.h1_c00076{height:544.000000pt;}
.h0_c00076{height:544.266667pt;}
.w0_c00076{width:327.840000pt;}
.w1_c00076{width:328.000000pt;}
.x0_c00076{left:0.000000pt;}
.x9_c00076{left:15.360000pt;}
.x26_c00076{left:21.120000pt;}
.x3_c00076{left:22.320000pt;}
.x3d_c00076{left:23.280000pt;}
.x83_c00076{left:24.482667pt;}
.x75_c00076{left:27.017333pt;}
.x35_c00076{left:28.800000pt;}
.x30_c00076{left:30.000000pt;}
.x6b_c00076{left:34.318667pt;}
.x2a_c00076{left:37.680000pt;}
.x70_c00076{left:39.118667pt;}
.x5a_c00076{left:41.518667pt;}
.x36_c00076{left:46.080000pt;}
.x1b_c00076{left:48.240000pt;}
.xa_c00076{left:51.600000pt;}
.x71_c00076{left:52.558667pt;}
.x5b_c00076{left:53.518667pt;}
.x4_c00076{left:54.480000pt;}
.x80_c00076{left:55.505333pt;}
.x2b_c00076{left:56.880000pt;}
.x20_c00076{left:58.800000pt;}
.x82_c00076{left:59.850667pt;}
.x49_c00076{left:61.440000pt;}
.xb_c00076{left:62.640000pt;}
.x5d_c00076{left:65.038667pt;}
.x37_c00076{left:66.480000pt;}
.x84_c00076{left:67.442667pt;}
.x13_c00076{left:70.560000pt;}
.x42_c00076{left:73.200000pt;}
.x68_c00076{left:74.398667pt;}
.x7b_c00076{left:77.148000pt;}
.x77_c00076{left:79.442667pt;}
.x3e_c00076{left:82.560000pt;}
.x79_c00076{left:84.120000pt;}
.x4f_c00076{left:86.090667pt;}
.x52_c00076{left:89.142667pt;}
.x76_c00076{left:91.150667pt;}
.x27_c00076{left:92.640000pt;}
.xc_c00076{left:96.960000pt;}
.x43_c00076{left:98.640000pt;}
.x53_c00076{left:100.645333pt;}
.x85_c00076{left:101.762667pt;}
.x64_c00076{left:103.198667pt;}
.x31_c00076{left:105.360000pt;}
.x61_c00076{left:106.318667pt;}
.x21_c00076{left:108.000000pt;}
.x14_c00076{left:113.040000pt;}
.x5_c00076{left:114.000000pt;}
.x1c_c00076{left:115.920000pt;}
.x7e_c00076{left:117.737333pt;}
.x38_c00076{left:119.520000pt;}
.x7a_c00076{left:120.849333pt;}
.x32_c00076{left:122.400000pt;}
.xd_c00076{left:126.000000pt;}
.x5c_c00076{left:128.398667pt;}
.x44_c00076{left:130.320000pt;}
.x15_c00076{left:131.760000pt;}
.x6_c00076{left:133.680000pt;}
.x39_c00076{left:135.840000pt;}
.x4a_c00076{left:138.480000pt;}
.x2c_c00076{left:140.640000pt;}
.x72_c00076{left:142.078667pt;}
.xe_c00076{left:143.280000pt;}
.x6c_c00076{left:144.718667pt;}
.x3f_c00076{left:146.880000pt;}
.x69_c00076{left:149.518667pt;}
.x5e_c00076{left:151.438667pt;}
.x50_c00076{left:155.144000pt;}
.x1_c00076{left:156.480000pt;}
.x4b_c00076{left:158.640000pt;}
.x62_c00076{left:160.078667pt;}
.x22_c00076{left:161.040000pt;}
.x16_c00076{left:162.000000pt;}
.x55_c00076{left:164.398667pt;}
.x28_c00076{left:166.080000pt;}
.x5f_c00076{left:167.758667pt;}
.x33_c00076{left:171.120000pt;}
.x63_c00076{left:172.318667pt;}
.x17_c00076{left:173.760000pt;}
.xf_c00076{left:177.840000pt;}
.x78_c00076{left:180.722667pt;}
.x54_c00076{left:183.169333pt;}
.x45_c00076{left:184.320000pt;}
.x1d_c00076{left:185.280000pt;}
.x6d_c00076{left:187.918667pt;}
.x18_c00076{left:188.880000pt;}
.x23_c00076{left:190.560000pt;}
.x10_c00076{left:192.240000pt;}
.x73_c00076{left:193.150667pt;}
.x29_c00076{left:197.280000pt;}
.x46_c00076{left:198.960000pt;}
.x56_c00076{left:201.358667pt;}
.x2d_c00076{left:202.320000pt;}
.x6e_c00076{left:204.478667pt;}
.x1e_c00076{left:209.040000pt;}
.x65_c00076{left:210.238667pt;}
.x86_c00076{left:211.442667pt;}
.x3a_c00076{left:213.600000pt;}
.x4c_c00076{left:214.800000pt;}
.x2e_c00076{left:216.480000pt;}
.x7_c00076{left:218.880000pt;}
.x57_c00076{left:219.838667pt;}
.x19_c00076{left:220.800000pt;}
.x4d_c00076{left:223.440000pt;}
.x66_c00076{left:226.318667pt;}
.x47_c00076{left:227.760000pt;}
.x7c_c00076{left:232.002667pt;}
.x58_c00076{left:233.278667pt;}
.x60_c00076{left:234.238667pt;}
.x1f_c00076{left:235.920000pt;}
.x2f_c00076{left:236.880000pt;}
.x8_c00076{left:238.320000pt;}
.x24_c00076{left:239.760000pt;}
.x6f_c00076{left:243.838667pt;}
.x11_c00076{left:244.800000pt;}
.x7f_c00076{left:246.813333pt;}
.x48_c00076{left:249.600000pt;}
.x87_c00076{left:251.522667pt;}
.x3b_c00076{left:253.440000pt;}
.x40_c00076{left:256.560000pt;}
.x6a_c00076{left:257.518667pt;}
.x25_c00076{left:258.480000pt;}
.x2_c00076{left:259.440000pt;}
.x7d_c00076{left:260.716000pt;}
.x12_c00076{left:262.560000pt;}
.x81_c00076{left:263.792000pt;}
.x1a_c00076{left:264.720000pt;}
.x51_c00076{left:267.697333pt;}
.x34_c00076{left:269.040000pt;}
.x67_c00076{left:271.678667pt;}
.x3c_c00076{left:272.640000pt;}
.x4e_c00076{left:274.800000pt;}
.x41_c00076{left:276.960000pt;}
.x74_c00076{left:278.082667pt;}
.x88_c00076{left:280.082667pt;}
.x59_c00076{left:281.038667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00077 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00077 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00077 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00077 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00077.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb5_c00077{transform:matrix(0.123989,0.006702,-0.013494,0.249636,0,0);-ms-transform:matrix(0.123989,0.006702,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.123989,0.006702,-0.013494,0.249636,0,0);}
.m24_c00077{transform:matrix(0.131128,0.004332,-0.008254,0.249864,0,0);-ms-transform:matrix(0.131128,0.004332,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.131128,0.004332,-0.008254,0.249864,0,0);}
.m2_c00077{transform:matrix(0.136006,0.004493,-0.008254,0.249864,0,0);-ms-transform:matrix(0.136006,0.004493,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.136006,0.004493,-0.008254,0.249864,0,0);}
.mbc_c00077{transform:matrix(0.148588,0.008032,-0.013494,0.249636,0,0);-ms-transform:matrix(0.148588,0.008032,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.148588,0.008032,-0.013494,0.249636,0,0);}
.mfd_c00077{transform:matrix(0.151414,0.008185,-0.013494,0.249636,0,0);-ms-transform:matrix(0.151414,0.008185,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.151414,0.008185,-0.013494,0.249636,0,0);}
.m36_c00077{transform:matrix(0.152590,0.006873,-0.011250,0.249747,0,0);-ms-transform:matrix(0.152590,0.006873,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.152590,0.006873,-0.011250,0.249747,0,0);}
.m71_c00077{transform:matrix(0.152840,0.006885,-0.011250,0.249747,0,0);-ms-transform:matrix(0.152840,0.006885,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.152840,0.006885,-0.011250,0.249747,0,0);}
.mf8_c00077{transform:matrix(0.153027,0.008272,-0.013494,0.249636,0,0);-ms-transform:matrix(0.153027,0.008272,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.153027,0.008272,-0.013494,0.249636,0,0);}
.mf5_c00077{transform:matrix(0.153860,0.008317,-0.013494,0.249636,0,0);-ms-transform:matrix(0.153860,0.008317,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.153860,0.008317,-0.013494,0.249636,0,0);}
.m73_c00077{transform:matrix(0.154413,0.006956,-0.011250,0.249747,0,0);-ms-transform:matrix(0.154413,0.006956,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.154413,0.006956,-0.011250,0.249747,0,0);}
.m72_c00077{transform:matrix(0.155038,0.006984,-0.011250,0.249747,0,0);-ms-transform:matrix(0.155038,0.006984,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.155038,0.006984,-0.011250,0.249747,0,0);}
.mbd_c00077{transform:matrix(0.155059,0.008382,-0.013494,0.249636,0,0);-ms-transform:matrix(0.155059,0.008382,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.155059,0.008382,-0.013494,0.249636,0,0);}
.m7f_c00077{transform:matrix(0.156082,0.007031,-0.011250,0.249747,0,0);-ms-transform:matrix(0.156082,0.007031,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.156082,0.007031,-0.011250,0.249747,0,0);}
.m37_c00077{transform:matrix(0.156696,0.007058,-0.011250,0.249747,0,0);-ms-transform:matrix(0.156696,0.007058,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.156696,0.007058,-0.011250,0.249747,0,0);}
.mbe_c00077{transform:matrix(0.156756,0.008473,-0.013494,0.249636,0,0);-ms-transform:matrix(0.156756,0.008473,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.156756,0.008473,-0.013494,0.249636,0,0);}
.mf6_c00077{transform:matrix(0.156991,0.008486,-0.013494,0.249636,0,0);-ms-transform:matrix(0.156991,0.008486,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.156991,0.008486,-0.013494,0.249636,0,0);}
.mb1_c00077{transform:matrix(0.157206,0.008498,-0.013494,0.249636,0,0);-ms-transform:matrix(0.157206,0.008498,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.157206,0.008498,-0.013494,0.249636,0,0);}
.m4b_c00077{transform:matrix(0.157420,0.007091,-0.011250,0.249747,0,0);-ms-transform:matrix(0.157420,0.007091,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.157420,0.007091,-0.011250,0.249747,0,0);}
.m1e_c00077{transform:matrix(0.157599,0.005206,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157599,0.005206,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157599,0.005206,-0.008254,0.249864,0,0);}
.m11_c00077{transform:matrix(0.157769,0.005212,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157769,0.005212,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157769,0.005212,-0.008254,0.249864,0,0);}
.mec_c00077{transform:matrix(0.158628,0.008575,-0.013494,0.249636,0,0);-ms-transform:matrix(0.158628,0.008575,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.158628,0.008575,-0.013494,0.249636,0,0);}
.m59_c00077{transform:matrix(0.159733,0.007195,-0.011250,0.249747,0,0);-ms-transform:matrix(0.159733,0.007195,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.159733,0.007195,-0.011250,0.249747,0,0);}
.mc4_c00077{transform:matrix(0.160071,0.008653,-0.013494,0.249636,0,0);-ms-transform:matrix(0.160071,0.008653,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.160071,0.008653,-0.013494,0.249636,0,0);}
.m8_c00077{transform:matrix(0.160133,0.005290,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160133,0.005290,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160133,0.005290,-0.008254,0.249864,0,0);}
.m31_c00077{transform:matrix(0.162007,0.005352,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162007,0.005352,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162007,0.005352,-0.008254,0.249864,0,0);}
.me1_c00077{transform:matrix(0.162113,0.008763,-0.013494,0.249636,0,0);-ms-transform:matrix(0.162113,0.008763,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.162113,0.008763,-0.013494,0.249636,0,0);}
.mb4_c00077{transform:matrix(0.162613,0.008790,-0.013494,0.249636,0,0);-ms-transform:matrix(0.162613,0.008790,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.162613,0.008790,-0.013494,0.249636,0,0);}
.m46_c00077{transform:matrix(0.163100,0.007347,-0.011250,0.249747,0,0);-ms-transform:matrix(0.163100,0.007347,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.163100,0.007347,-0.011250,0.249747,0,0);}
.mef_c00077{transform:matrix(0.164735,0.008905,-0.013494,0.249636,0,0);-ms-transform:matrix(0.164735,0.008905,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.164735,0.008905,-0.013494,0.249636,0,0);}
.m53_c00077{transform:matrix(0.165148,0.007439,-0.011250,0.249747,0,0);-ms-transform:matrix(0.165148,0.007439,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.165148,0.007439,-0.011250,0.249747,0,0);}
.m35_c00077{transform:matrix(0.165173,0.007440,-0.011250,0.249747,0,0);-ms-transform:matrix(0.165173,0.007440,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.165173,0.007440,-0.011250,0.249747,0,0);}
.m33_c00077{transform:matrix(0.165317,0.007447,-0.011250,0.249747,0,0);-ms-transform:matrix(0.165317,0.007447,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.165317,0.007447,-0.011250,0.249747,0,0);}
.m4a_c00077{transform:matrix(0.165347,0.007448,-0.011250,0.249747,0,0);-ms-transform:matrix(0.165347,0.007448,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.165347,0.007448,-0.011250,0.249747,0,0);}
.me4_c00077{transform:matrix(0.165409,0.008941,-0.013494,0.249636,0,0);-ms-transform:matrix(0.165409,0.008941,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.165409,0.008941,-0.013494,0.249636,0,0);}
.md_c00077{transform:matrix(0.166729,0.005508,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166729,0.005508,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166729,0.005508,-0.008254,0.249864,0,0);}
.m3_c00077{transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167534,0.005534,-0.008254,0.249864,0,0);}
.m45_c00077{transform:matrix(0.167750,0.007556,-0.011250,0.249747,0,0);-ms-transform:matrix(0.167750,0.007556,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.167750,0.007556,-0.011250,0.249747,0,0);}
.m5_c00077{transform:matrix(0.167953,0.005548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167953,0.005548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167953,0.005548,-0.008254,0.249864,0,0);}
.m49_c00077{transform:matrix(0.168769,0.007602,-0.011250,0.249747,0,0);-ms-transform:matrix(0.168769,0.007602,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.168769,0.007602,-0.011250,0.249747,0,0);}
.m1_c00077{transform:matrix(0.169018,0.005583,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169018,0.005583,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169018,0.005583,-0.008254,0.249864,0,0);}
.m8e_c00077{transform:matrix(0.169723,0.007645,-0.011250,0.249747,0,0);-ms-transform:matrix(0.169723,0.007645,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.169723,0.007645,-0.011250,0.249747,0,0);}
.mc2_c00077{transform:matrix(0.169822,0.009180,-0.013494,0.249636,0,0);-ms-transform:matrix(0.169822,0.009180,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.169822,0.009180,-0.013494,0.249636,0,0);}
.m4c_c00077{transform:matrix(0.170312,0.007672,-0.011250,0.249747,0,0);-ms-transform:matrix(0.170312,0.007672,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.170312,0.007672,-0.011250,0.249747,0,0);}
.mfa_c00077{transform:matrix(0.170516,0.009217,-0.013494,0.249636,0,0);-ms-transform:matrix(0.170516,0.009217,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.170516,0.009217,-0.013494,0.249636,0,0);}
.m5a_c00077{transform:matrix(0.170907,0.007698,-0.011250,0.249747,0,0);-ms-transform:matrix(0.170907,0.007698,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.170907,0.007698,-0.011250,0.249747,0,0);}
.mf3_c00077{transform:matrix(0.171200,0.009254,-0.013494,0.249636,0,0);-ms-transform:matrix(0.171200,0.009254,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.171200,0.009254,-0.013494,0.249636,0,0);}
.m43_c00077{transform:matrix(0.171806,0.007739,-0.011250,0.249747,0,0);-ms-transform:matrix(0.171806,0.007739,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.171806,0.007739,-0.011250,0.249747,0,0);}
.m15_c00077{transform:matrix(0.171871,0.005677,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171871,0.005677,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171871,0.005677,-0.008254,0.249864,0,0);}
.mc9_c00077{transform:matrix(0.172513,0.009325,-0.013494,0.249636,0,0);-ms-transform:matrix(0.172513,0.009325,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.172513,0.009325,-0.013494,0.249636,0,0);}
.ma_c00077{transform:matrix(0.172806,0.005708,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172806,0.005708,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172806,0.005708,-0.008254,0.249864,0,0);}
.mee_c00077{transform:matrix(0.173052,0.009354,-0.013494,0.249636,0,0);-ms-transform:matrix(0.173052,0.009354,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.173052,0.009354,-0.013494,0.249636,0,0);}
.mf7_c00077{transform:matrix(0.173262,0.009366,-0.013494,0.249636,0,0);-ms-transform:matrix(0.173262,0.009366,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.173262,0.009366,-0.013494,0.249636,0,0);}
.m4e_c00077{transform:matrix(0.173664,0.007823,-0.011250,0.249747,0,0);-ms-transform:matrix(0.173664,0.007823,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.173664,0.007823,-0.011250,0.249747,0,0);}
.mae_c00077{transform:matrix(0.173951,0.009403,-0.013494,0.249636,0,0);-ms-transform:matrix(0.173951,0.009403,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.173951,0.009403,-0.013494,0.249636,0,0);}
.mf4_c00077{transform:matrix(0.174116,0.009412,-0.013494,0.249636,0,0);-ms-transform:matrix(0.174116,0.009412,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.174116,0.009412,-0.013494,0.249636,0,0);}
.m32_c00077{transform:matrix(0.174278,0.007850,-0.011250,0.249747,0,0);-ms-transform:matrix(0.174278,0.007850,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.174278,0.007850,-0.011250,0.249747,0,0);}
.mcc_c00077{transform:matrix(0.174850,0.009451,-0.013494,0.249636,0,0);-ms-transform:matrix(0.174850,0.009451,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.174850,0.009451,-0.013494,0.249636,0,0);}
.mf9_c00077{transform:matrix(0.174855,0.009452,-0.013494,0.249636,0,0);-ms-transform:matrix(0.174855,0.009452,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.174855,0.009452,-0.013494,0.249636,0,0);}
.m34_c00077{transform:matrix(0.175392,0.007901,-0.011250,0.249747,0,0);-ms-transform:matrix(0.175392,0.007901,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.175392,0.007901,-0.011250,0.249747,0,0);}
.m2c_c00077{transform:matrix(0.177378,0.005859,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177378,0.005859,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177378,0.005859,-0.008254,0.249864,0,0);}
.mfc_c00077{transform:matrix(0.177411,0.009590,-0.013494,0.249636,0,0);-ms-transform:matrix(0.177411,0.009590,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.177411,0.009590,-0.013494,0.249636,0,0);}
.m41_c00077{transform:matrix(0.177600,0.008000,-0.011250,0.249747,0,0);-ms-transform:matrix(0.177600,0.008000,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.177600,0.008000,-0.011250,0.249747,0,0);}
.m1c_c00077{transform:matrix(0.177858,0.005875,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177858,0.005875,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177858,0.005875,-0.008254,0.249864,0,0);}
.mcf_c00077{transform:matrix(0.178080,0.009626,-0.013494,0.249636,0,0);-ms-transform:matrix(0.178080,0.009626,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.178080,0.009626,-0.013494,0.249636,0,0);}
.m18_c00077{transform:matrix(0.178153,0.005885,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178153,0.005885,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178153,0.005885,-0.008254,0.249864,0,0);}
.m52_c00077{transform:matrix(0.179173,0.008071,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179173,0.008071,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179173,0.008071,-0.011250,0.249747,0,0);}
.m70_c00077{transform:matrix(0.179188,0.008072,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179188,0.008072,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179188,0.008072,-0.011250,0.249747,0,0);}
.mc3_c00077{transform:matrix(0.179508,0.009703,-0.013494,0.249636,0,0);-ms-transform:matrix(0.179508,0.009703,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.179508,0.009703,-0.013494,0.249636,0,0);}
.m4f_c00077{transform:matrix(0.179523,0.008087,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179523,0.008087,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179523,0.008087,-0.011250,0.249747,0,0);}
.mea_c00077{transform:matrix(0.179598,0.009708,-0.013494,0.249636,0,0);-ms-transform:matrix(0.179598,0.009708,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.179598,0.009708,-0.013494,0.249636,0,0);}
.m5b_c00077{transform:matrix(0.179848,0.008101,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179848,0.008101,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179848,0.008101,-0.011250,0.249747,0,0);}
.m58_c00077{transform:matrix(0.180117,0.008113,-0.011250,0.249747,0,0);-ms-transform:matrix(0.180117,0.008113,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.180117,0.008113,-0.011250,0.249747,0,0);}
.m68_c00077{transform:matrix(0.180692,0.008139,-0.011250,0.249747,0,0);-ms-transform:matrix(0.180692,0.008139,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.180692,0.008139,-0.011250,0.249747,0,0);}
.m6d_c00077{transform:matrix(0.180952,0.008151,-0.011250,0.249747,0,0);-ms-transform:matrix(0.180952,0.008151,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.180952,0.008151,-0.011250,0.249747,0,0);}
.m74_c00077{transform:matrix(0.181296,0.008166,-0.011250,0.249747,0,0);-ms-transform:matrix(0.181296,0.008166,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.181296,0.008166,-0.011250,0.249747,0,0);}
.m38_c00077{transform:matrix(0.181391,0.008171,-0.011250,0.249747,0,0);-ms-transform:matrix(0.181391,0.008171,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.181391,0.008171,-0.011250,0.249747,0,0);}
.mca_c00077{transform:matrix(0.181460,0.009809,-0.013494,0.249636,0,0);-ms-transform:matrix(0.181460,0.009809,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.181460,0.009809,-0.013494,0.249636,0,0);}
.m3a_c00077{transform:matrix(0.182020,0.008199,-0.011250,0.249747,0,0);-ms-transform:matrix(0.182020,0.008199,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.182020,0.008199,-0.011250,0.249747,0,0);}
.med_c00077{transform:matrix(0.182079,0.009842,-0.013494,0.249636,0,0);-ms-transform:matrix(0.182079,0.009842,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.182079,0.009842,-0.013494,0.249636,0,0);}
.m81_c00077{transform:matrix(0.182080,0.008202,-0.011250,0.249747,0,0);-ms-transform:matrix(0.182080,0.008202,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.182080,0.008202,-0.011250,0.249747,0,0);}
.m12_c00077{transform:matrix(0.182316,0.006022,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182316,0.006022,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182316,0.006022,-0.008254,0.249864,0,0);}
.me9_c00077{transform:matrix(0.182464,0.009863,-0.013494,0.249636,0,0);-ms-transform:matrix(0.182464,0.009863,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.182464,0.009863,-0.013494,0.249636,0,0);}
.mf_c00077{transform:matrix(0.182810,0.006039,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182810,0.006039,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182810,0.006039,-0.008254,0.249864,0,0);}
.m75_c00077{transform:matrix(0.183544,0.008268,-0.011250,0.249747,0,0);-ms-transform:matrix(0.183544,0.008268,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.183544,0.008268,-0.011250,0.249747,0,0);}
.me_c00077{transform:matrix(0.183890,0.006074,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183890,0.006074,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183890,0.006074,-0.008254,0.249864,0,0);}
.m4d_c00077{transform:matrix(0.184323,0.008303,-0.011250,0.249747,0,0);-ms-transform:matrix(0.184323,0.008303,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.184323,0.008303,-0.011250,0.249747,0,0);}
.m67_c00077{transform:matrix(0.185447,0.008353,-0.011250,0.249747,0,0);-ms-transform:matrix(0.185447,0.008353,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.185447,0.008353,-0.011250,0.249747,0,0);}
.mcd_c00077{transform:matrix(0.185684,0.010037,-0.013494,0.249636,0,0);-ms-transform:matrix(0.185684,0.010037,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.185684,0.010037,-0.013494,0.249636,0,0);}
.mc1_c00077{transform:matrix(0.185949,0.010051,-0.013494,0.249636,0,0);-ms-transform:matrix(0.185949,0.010051,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.185949,0.010051,-0.013494,0.249636,0,0);}
.m62_c00077{transform:matrix(0.186121,0.008384,-0.011250,0.249747,0,0);-ms-transform:matrix(0.186121,0.008384,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.186121,0.008384,-0.011250,0.249747,0,0);}
.mc_c00077{transform:matrix(0.186538,0.006162,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186538,0.006162,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186538,0.006162,-0.008254,0.249864,0,0);}
.m92_c00077{transform:matrix(0.187055,0.008426,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187055,0.008426,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187055,0.008426,-0.011250,0.249747,0,0);}
.m1b_c00077{transform:matrix(0.187088,0.006180,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187088,0.006180,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187088,0.006180,-0.008254,0.249864,0,0);}
.m90_c00077{transform:matrix(0.187250,0.008435,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187250,0.008435,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187250,0.008435,-0.011250,0.249747,0,0);}
.mb_c00077{transform:matrix(0.187268,0.006186,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187268,0.006186,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187268,0.006186,-0.008254,0.249864,0,0);}
.m50_c00077{transform:matrix(0.187560,0.008449,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187560,0.008449,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187560,0.008449,-0.011250,0.249747,0,0);}
.m40_c00077{transform:matrix(0.187570,0.008449,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187570,0.008449,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187570,0.008449,-0.011250,0.249747,0,0);}
.m98_c00077{transform:matrix(0.187620,0.008451,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187620,0.008451,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187620,0.008451,-0.011250,0.249747,0,0);}
.m6_c00077{transform:matrix(0.187648,0.006199,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187648,0.006199,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187648,0.006199,-0.008254,0.249864,0,0);}
.m79_c00077{transform:matrix(0.187680,0.008454,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187680,0.008454,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187680,0.008454,-0.011250,0.249747,0,0);}
.ma3_c00077{transform:matrix(0.187701,0.010146,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187701,0.010146,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187701,0.010146,-0.013494,0.249636,0,0);}
.md9_c00077{transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);}
.mc6_c00077{transform:matrix(0.187836,0.010153,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187836,0.010153,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187836,0.010153,-0.013494,0.249636,0,0);}
.m7_c00077{transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188032,0.006211,-0.008254,0.249864,0,0);}
.m9b_c00077{transform:matrix(0.188534,0.008493,-0.011250,0.249747,0,0);-ms-transform:matrix(0.188534,0.008493,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.188534,0.008493,-0.011250,0.249747,0,0);}
.m97_c00077{transform:matrix(0.188699,0.008500,-0.011250,0.249747,0,0);-ms-transform:matrix(0.188699,0.008500,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.188699,0.008500,-0.011250,0.249747,0,0);}
.m99_c00077{transform:matrix(0.188739,0.008502,-0.011250,0.249747,0,0);-ms-transform:matrix(0.188739,0.008502,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.188739,0.008502,-0.011250,0.249747,0,0);}
.m56_c00077{transform:matrix(0.189143,0.008520,-0.011250,0.249747,0,0);-ms-transform:matrix(0.189143,0.008520,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.189143,0.008520,-0.011250,0.249747,0,0);}
.m61_c00077{transform:matrix(0.189208,0.008523,-0.011250,0.249747,0,0);-ms-transform:matrix(0.189208,0.008523,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.189208,0.008523,-0.011250,0.249747,0,0);}
.mf1_c00077{transform:matrix(0.189623,0.010250,-0.013494,0.249636,0,0);-ms-transform:matrix(0.189623,0.010250,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.189623,0.010250,-0.013494,0.249636,0,0);}
.maf_c00077{transform:matrix(0.189663,0.010252,-0.013494,0.249636,0,0);-ms-transform:matrix(0.189663,0.010252,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.189663,0.010252,-0.013494,0.249636,0,0);}
.mb3_c00077{transform:matrix(0.189898,0.010265,-0.013494,0.249636,0,0);-ms-transform:matrix(0.189898,0.010265,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.189898,0.010265,-0.013494,0.249636,0,0);}
.me5_c00077{transform:matrix(0.190981,0.010323,-0.013494,0.249636,0,0);-ms-transform:matrix(0.190981,0.010323,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.190981,0.010323,-0.013494,0.249636,0,0);}
.md5_c00077{transform:matrix(0.190991,0.010324,-0.013494,0.249636,0,0);-ms-transform:matrix(0.190991,0.010324,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.190991,0.010324,-0.013494,0.249636,0,0);}
.m16_c00077{transform:matrix(0.191556,0.006328,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191556,0.006328,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191556,0.006328,-0.008254,0.249864,0,0);}
.me6_c00077{transform:matrix(0.191600,0.010357,-0.013494,0.249636,0,0);-ms-transform:matrix(0.191600,0.010357,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.191600,0.010357,-0.013494,0.249636,0,0);}
.ma5_c00077{transform:matrix(0.192065,0.010382,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192065,0.010382,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192065,0.010382,-0.013494,0.249636,0,0);}
.mad_c00077{transform:matrix(0.192130,0.010385,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192130,0.010385,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192130,0.010385,-0.013494,0.249636,0,0);}
.mc5_c00077{transform:matrix(0.192574,0.010409,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192574,0.010409,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192574,0.010409,-0.013494,0.249636,0,0);}
.ma8_c00077{transform:matrix(0.193173,0.010442,-0.013494,0.249636,0,0);-ms-transform:matrix(0.193173,0.010442,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.193173,0.010442,-0.013494,0.249636,0,0);}
.mce_c00077{transform:matrix(0.193717,0.010471,-0.013494,0.249636,0,0);-ms-transform:matrix(0.193717,0.010471,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.193717,0.010471,-0.013494,0.249636,0,0);}
.m80_c00077{transform:matrix(0.194208,0.008748,-0.011250,0.249747,0,0);-ms-transform:matrix(0.194208,0.008748,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.194208,0.008748,-0.011250,0.249747,0,0);}
.m6a_c00077{transform:matrix(0.194273,0.008751,-0.011250,0.249747,0,0);-ms-transform:matrix(0.194273,0.008751,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.194273,0.008751,-0.011250,0.249747,0,0);}
.m47_c00077{transform:matrix(0.194628,0.008767,-0.011250,0.249747,0,0);-ms-transform:matrix(0.194628,0.008767,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.194628,0.008767,-0.011250,0.249747,0,0);}
.mc0_c00077{transform:matrix(0.195175,0.010550,-0.013494,0.249636,0,0);-ms-transform:matrix(0.195175,0.010550,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.195175,0.010550,-0.013494,0.249636,0,0);}
.mb2_c00077{transform:matrix(0.195255,0.010554,-0.013494,0.249636,0,0);-ms-transform:matrix(0.195255,0.010554,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.195255,0.010554,-0.013494,0.249636,0,0);}
.m6f_c00077{transform:matrix(0.195627,0.008812,-0.011250,0.249747,0,0);-ms-transform:matrix(0.195627,0.008812,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.195627,0.008812,-0.011250,0.249747,0,0);}
.me8_c00077{transform:matrix(0.195634,0.010575,-0.013494,0.249636,0,0);-ms-transform:matrix(0.195634,0.010575,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.195634,0.010575,-0.013494,0.249636,0,0);}
.ma9_c00077{transform:matrix(0.195924,0.010590,-0.013494,0.249636,0,0);-ms-transform:matrix(0.195924,0.010590,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.195924,0.010590,-0.013494,0.249636,0,0);}
.m9_c00077{transform:matrix(0.196253,0.006483,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196253,0.006483,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196253,0.006483,-0.008254,0.249864,0,0);}
.m25_c00077{transform:matrix(0.196938,0.006505,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196938,0.006505,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196938,0.006505,-0.008254,0.249864,0,0);}
.m48_c00077{transform:matrix(0.197000,0.008874,-0.011250,0.249747,0,0);-ms-transform:matrix(0.197000,0.008874,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.197000,0.008874,-0.011250,0.249747,0,0);}
.m69_c00077{transform:matrix(0.197090,0.008878,-0.011250,0.249747,0,0);-ms-transform:matrix(0.197090,0.008878,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.197090,0.008878,-0.011250,0.249747,0,0);}
.mde_c00077{transform:matrix(0.197157,0.010657,-0.013494,0.249636,0,0);-ms-transform:matrix(0.197157,0.010657,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.197157,0.010657,-0.013494,0.249636,0,0);}
.m87_c00077{transform:matrix(0.197405,0.008892,-0.011250,0.249747,0,0);-ms-transform:matrix(0.197405,0.008892,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.197405,0.008892,-0.011250,0.249747,0,0);}
.m21_c00077{transform:matrix(0.197727,0.006532,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197727,0.006532,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197727,0.006532,-0.008254,0.249864,0,0);}
.m8f_c00077{transform:matrix(0.198064,0.008922,-0.011250,0.249747,0,0);-ms-transform:matrix(0.198064,0.008922,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.198064,0.008922,-0.011250,0.249747,0,0);}
.me2_c00077{transform:matrix(0.198251,0.010716,-0.013494,0.249636,0,0);-ms-transform:matrix(0.198251,0.010716,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.198251,0.010716,-0.013494,0.249636,0,0);}
.m95_c00077{transform:matrix(0.198284,0.008932,-0.011250,0.249747,0,0);-ms-transform:matrix(0.198284,0.008932,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.198284,0.008932,-0.011250,0.249747,0,0);}
.mbf_c00077{transform:matrix(0.199194,0.010767,-0.013494,0.249636,0,0);-ms-transform:matrix(0.199194,0.010767,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.199194,0.010767,-0.013494,0.249636,0,0);}
.mfb_c00077{transform:matrix(0.199464,0.010782,-0.013494,0.249636,0,0);-ms-transform:matrix(0.199464,0.010782,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.199464,0.010782,-0.013494,0.249636,0,0);}
.mb0_c00077{transform:matrix(0.200338,0.010829,-0.013494,0.249636,0,0);-ms-transform:matrix(0.200338,0.010829,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.200338,0.010829,-0.013494,0.249636,0,0);}
.m96_c00077{transform:matrix(0.200547,0.009034,-0.011250,0.249747,0,0);-ms-transform:matrix(0.200547,0.009034,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.200547,0.009034,-0.011250,0.249747,0,0);}
.m6c_c00077{transform:matrix(0.200831,0.009046,-0.011250,0.249747,0,0);-ms-transform:matrix(0.200831,0.009046,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.200831,0.009046,-0.011250,0.249747,0,0);}
.m22_c00077{transform:matrix(0.200885,0.006636,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200885,0.006636,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200885,0.006636,-0.008254,0.249864,0,0);}
.m44_c00077{transform:matrix(0.201491,0.009076,-0.011250,0.249747,0,0);-ms-transform:matrix(0.201491,0.009076,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.201491,0.009076,-0.011250,0.249747,0,0);}
.m1a_c00077{transform:matrix(0.201670,0.006662,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201670,0.006662,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201670,0.006662,-0.008254,0.249864,0,0);}
.me3_c00077{transform:matrix(0.201860,0.010911,-0.013494,0.249636,0,0);-ms-transform:matrix(0.201860,0.010911,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.201860,0.010911,-0.013494,0.249636,0,0);}
.m8c_c00077{transform:matrix(0.202105,0.009104,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202105,0.009104,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202105,0.009104,-0.011250,0.249747,0,0);}
.maa_c00077{transform:matrix(0.202170,0.010928,-0.013494,0.249636,0,0);-ms-transform:matrix(0.202170,0.010928,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.202170,0.010928,-0.013494,0.249636,0,0);}
.m78_c00077{transform:matrix(0.202170,0.009107,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202170,0.009107,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202170,0.009107,-0.011250,0.249747,0,0);}
.m88_c00077{transform:matrix(0.202375,0.009116,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202375,0.009116,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202375,0.009116,-0.011250,0.249747,0,0);}
.m4_c00077{transform:matrix(0.202515,0.006690,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202515,0.006690,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202515,0.006690,-0.008254,0.249864,0,0);}
.m94_c00077{transform:matrix(0.202899,0.009140,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202899,0.009140,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202899,0.009140,-0.011250,0.249747,0,0);}
.m10_c00077{transform:matrix(0.202984,0.006705,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202984,0.006705,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202984,0.006705,-0.008254,0.249864,0,0);}
.m7c_c00077{transform:matrix(0.203049,0.009146,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203049,0.009146,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203049,0.009146,-0.011250,0.249747,0,0);}
.m84_c00077{transform:matrix(0.203214,0.009154,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203214,0.009154,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203214,0.009154,-0.011250,0.249747,0,0);}
.m7b_c00077{transform:matrix(0.203399,0.009162,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203399,0.009162,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203399,0.009162,-0.011250,0.249747,0,0);}
.m65_c00077{transform:matrix(0.203594,0.009171,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203594,0.009171,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203594,0.009171,-0.011250,0.249747,0,0);}
.m2e_c00077{transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203629,0.006726,-0.008254,0.249864,0,0);}
.mf2_c00077{transform:matrix(0.203698,0.011011,-0.013494,0.249636,0,0);-ms-transform:matrix(0.203698,0.011011,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.203698,0.011011,-0.013494,0.249636,0,0);}
.mdf_c00077{transform:matrix(0.204237,0.011040,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204237,0.011040,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204237,0.011040,-0.013494,0.249636,0,0);}
.mdd_c00077{transform:matrix(0.204516,0.011055,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204516,0.011055,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204516,0.011055,-0.013494,0.249636,0,0);}
.m57_c00077{transform:matrix(0.205107,0.009239,-0.011250,0.249747,0,0);-ms-transform:matrix(0.205107,0.009239,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.205107,0.009239,-0.011250,0.249747,0,0);}
.mc8_c00077{transform:matrix(0.205630,0.011115,-0.013494,0.249636,0,0);-ms-transform:matrix(0.205630,0.011115,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.205630,0.011115,-0.013494,0.249636,0,0);}
.m27_c00077{transform:matrix(0.205683,0.006794,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205683,0.006794,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205683,0.006794,-0.008254,0.249864,0,0);}
.m5e_c00077{transform:matrix(0.206086,0.009283,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206086,0.009283,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206086,0.009283,-0.011250,0.249747,0,0);}
.m5d_c00077{transform:matrix(0.206246,0.009290,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206246,0.009290,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206246,0.009290,-0.011250,0.249747,0,0);}
.m5f_c00077{transform:matrix(0.206860,0.009318,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206860,0.009318,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206860,0.009318,-0.011250,0.249747,0,0);}
.m5c_c00077{transform:matrix(0.206960,0.009323,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206960,0.009323,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206960,0.009323,-0.011250,0.249747,0,0);}
.m9c_c00077{transform:matrix(0.207370,0.009341,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207370,0.009341,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207370,0.009341,-0.011250,0.249747,0,0);}
.mb6_c00077{transform:matrix(0.207507,0.011217,-0.013494,0.249636,0,0);-ms-transform:matrix(0.207507,0.011217,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.207507,0.011217,-0.013494,0.249636,0,0);}
.md8_c00077{transform:matrix(0.207682,0.011226,-0.013494,0.249636,0,0);-ms-transform:matrix(0.207682,0.011226,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.207682,0.011226,-0.013494,0.249636,0,0);}
.m3f_c00077{transform:matrix(0.207739,0.009358,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207739,0.009358,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207739,0.009358,-0.011250,0.249747,0,0);}
.m60_c00077{transform:matrix(0.207854,0.009363,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207854,0.009363,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207854,0.009363,-0.011250,0.249747,0,0);}
.meb_c00077{transform:matrix(0.207862,0.011236,-0.013494,0.249636,0,0);-ms-transform:matrix(0.207862,0.011236,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.207862,0.011236,-0.013494,0.249636,0,0);}
.md0_c00077{transform:matrix(0.208051,0.011246,-0.013494,0.249636,0,0);-ms-transform:matrix(0.208051,0.011246,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.208051,0.011246,-0.013494,0.249636,0,0);}
.md7_c00077{transform:matrix(0.208436,0.011267,-0.013494,0.249636,0,0);-ms-transform:matrix(0.208436,0.011267,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.208436,0.011267,-0.013494,0.249636,0,0);}
.m77_c00077{transform:matrix(0.208728,0.009402,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208728,0.009402,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208728,0.009402,-0.011250,0.249747,0,0);}
.m6b_c00077{transform:matrix(0.208918,0.009411,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208918,0.009411,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208918,0.009411,-0.011250,0.249747,0,0);}
.m86_c00077{transform:matrix(0.209028,0.009416,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209028,0.009416,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209028,0.009416,-0.011250,0.249747,0,0);}
.m51_c00077{transform:matrix(0.209338,0.009430,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209338,0.009430,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209338,0.009430,-0.011250,0.249747,0,0);}
.me7_c00077{transform:matrix(0.209764,0.011339,-0.013494,0.249636,0,0);-ms-transform:matrix(0.209764,0.011339,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.209764,0.011339,-0.013494,0.249636,0,0);}
.m8b_c00077{transform:matrix(0.209982,0.009459,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209982,0.009459,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209982,0.009459,-0.011250,0.249747,0,0);}
.mb7_c00077{transform:matrix(0.209988,0.011351,-0.013494,0.249636,0,0);-ms-transform:matrix(0.209988,0.011351,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.209988,0.011351,-0.013494,0.249636,0,0);}
.m91_c00077{transform:matrix(0.210157,0.009467,-0.011250,0.249747,0,0);-ms-transform:matrix(0.210157,0.009467,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.210157,0.009467,-0.011250,0.249747,0,0);}
.mab_c00077{transform:matrix(0.210912,0.011401,-0.013494,0.249636,0,0);-ms-transform:matrix(0.210912,0.011401,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.210912,0.011401,-0.013494,0.249636,0,0);}
.m93_c00077{transform:matrix(0.211066,0.009507,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211066,0.009507,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211066,0.009507,-0.011250,0.249747,0,0);}
.m85_c00077{transform:matrix(0.211191,0.009513,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211191,0.009513,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211191,0.009513,-0.011250,0.249747,0,0);}
.m20_c00077{transform:matrix(0.211375,0.006982,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211375,0.006982,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211375,0.006982,-0.008254,0.249864,0,0);}
.m7e_c00077{transform:matrix(0.211421,0.009523,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211421,0.009523,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211421,0.009523,-0.011250,0.249747,0,0);}
.me0_c00077{transform:matrix(0.211531,0.011434,-0.013494,0.249636,0,0);-ms-transform:matrix(0.211531,0.011434,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.211531,0.011434,-0.013494,0.249636,0,0);}
.md6_c00077{transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);-ms-transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);}
.m2d_c00077{transform:matrix(0.211715,0.006994,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211715,0.006994,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211715,0.006994,-0.008254,0.249864,0,0);}
.m6e_c00077{transform:matrix(0.212005,0.009550,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212005,0.009550,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212005,0.009550,-0.011250,0.249747,0,0);}
.md1_c00077{transform:matrix(0.212220,0.011471,-0.013494,0.249636,0,0);-ms-transform:matrix(0.212220,0.011471,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.212220,0.011471,-0.013494,0.249636,0,0);}
.m76_c00077{transform:matrix(0.212265,0.009561,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212265,0.009561,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212265,0.009561,-0.011250,0.249747,0,0);}
.m3b_c00077{transform:matrix(0.212619,0.009577,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212619,0.009577,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212619,0.009577,-0.011250,0.249747,0,0);}
.mdc_c00077{transform:matrix(0.213698,0.011551,-0.013494,0.249636,0,0);-ms-transform:matrix(0.213698,0.011551,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.213698,0.011551,-0.013494,0.249636,0,0);}
.mbb_c00077{transform:matrix(0.214257,0.011581,-0.013494,0.249636,0,0);-ms-transform:matrix(0.214257,0.011581,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.214257,0.011581,-0.013494,0.249636,0,0);}
.mf0_c00077{transform:matrix(0.215465,0.011647,-0.013494,0.249636,0,0);-ms-transform:matrix(0.215465,0.011647,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.215465,0.011647,-0.013494,0.249636,0,0);}
.m9a_c00077{transform:matrix(0.215781,0.009720,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215781,0.009720,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215781,0.009720,-0.011250,0.249747,0,0);}
.mda_c00077{transform:matrix(0.216274,0.011691,-0.013494,0.249636,0,0);-ms-transform:matrix(0.216274,0.011691,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.216274,0.011691,-0.013494,0.249636,0,0);}
.ma4_c00077{transform:matrix(0.216868,0.011723,-0.013494,0.249636,0,0);-ms-transform:matrix(0.216868,0.011723,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.216868,0.011723,-0.013494,0.249636,0,0);}
.m8a_c00077{transform:matrix(0.216925,0.009771,-0.011250,0.249747,0,0);-ms-transform:matrix(0.216925,0.009771,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.216925,0.009771,-0.011250,0.249747,0,0);}
.md3_c00077{transform:matrix(0.217962,0.011782,-0.013494,0.249636,0,0);-ms-transform:matrix(0.217962,0.011782,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.217962,0.011782,-0.013494,0.249636,0,0);}
.mb9_c00077{transform:matrix(0.218152,0.011792,-0.013494,0.249636,0,0);-ms-transform:matrix(0.218152,0.011792,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.218152,0.011792,-0.013494,0.249636,0,0);}
.md2_c00077{transform:matrix(0.218945,0.011835,-0.013494,0.249636,0,0);-ms-transform:matrix(0.218945,0.011835,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.218945,0.011835,-0.013494,0.249636,0,0);}
.m19_c00077{transform:matrix(0.219440,0.007249,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219440,0.007249,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219440,0.007249,-0.008254,0.249864,0,0);}
.m2a_c00077{transform:matrix(0.219900,0.007264,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219900,0.007264,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219900,0.007264,-0.008254,0.249864,0,0);}
.m13_c00077{transform:matrix(0.220060,0.007269,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220060,0.007269,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220060,0.007269,-0.008254,0.249864,0,0);}
.m66_c00077{transform:matrix(0.220277,0.009922,-0.011250,0.249747,0,0);-ms-transform:matrix(0.220277,0.009922,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.220277,0.009922,-0.011250,0.249747,0,0);}
.mcb_c00077{transform:matrix(0.222285,0.012015,-0.013494,0.249636,0,0);-ms-transform:matrix(0.222285,0.012015,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.222285,0.012015,-0.013494,0.249636,0,0);}
.ma1_c00077{transform:matrix(0.222474,0.010021,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222474,0.010021,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222474,0.010021,-0.011250,0.249747,0,0);}
.m9f_c00077{transform:matrix(0.222754,0.010034,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222754,0.010034,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222754,0.010034,-0.011250,0.249747,0,0);}
.m7d_c00077{transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);}
.m3e_c00077{transform:matrix(0.222939,0.010042,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222939,0.010042,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222939,0.010042,-0.011250,0.249747,0,0);}
.m1f_c00077{transform:matrix(0.223673,0.007389,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223673,0.007389,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223673,0.007389,-0.008254,0.249864,0,0);}
.m26_c00077{transform:matrix(0.224108,0.007403,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224108,0.007403,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224108,0.007403,-0.008254,0.249864,0,0);}
.mba_c00077{transform:matrix(0.224278,0.012123,-0.013494,0.249636,0,0);-ms-transform:matrix(0.224278,0.012123,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.224278,0.012123,-0.013494,0.249636,0,0);}
.m9d_c00077{transform:matrix(0.225536,0.010159,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225536,0.010159,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225536,0.010159,-0.011250,0.249747,0,0);}
.mc7_c00077{transform:matrix(0.225770,0.012204,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225770,0.012204,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225770,0.012204,-0.013494,0.249636,0,0);}
.m14_c00077{transform:matrix(0.225822,0.007460,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225822,0.007460,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225822,0.007460,-0.008254,0.249864,0,0);}
.m2b_c00077{transform:matrix(0.225897,0.007462,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225897,0.007462,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225897,0.007462,-0.008254,0.249864,0,0);}
.m89_c00077{transform:matrix(0.226925,0.010222,-0.011250,0.249747,0,0);-ms-transform:matrix(0.226925,0.010222,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.226925,0.010222,-0.011250,0.249747,0,0);}
.m9e_c00077{transform:matrix(0.227854,0.010264,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227854,0.010264,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227854,0.010264,-0.011250,0.249747,0,0);}
.m64_c00077{transform:matrix(0.228348,0.010286,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228348,0.010286,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228348,0.010286,-0.011250,0.249747,0,0);}
.ma0_c00077{transform:matrix(0.228528,0.010294,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228528,0.010294,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228528,0.010294,-0.011250,0.249747,0,0);}
.m63_c00077{transform:matrix(0.229797,0.010351,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229797,0.010351,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229797,0.010351,-0.011250,0.249747,0,0);}
.m0_c00077{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.232538,0.007681,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232538,0.007681,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232538,0.007681,-0.008254,0.249864,0,0);}
.m7a_c00077{transform:matrix(0.234737,0.010574,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234737,0.010574,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234737,0.010574,-0.011250,0.249747,0,0);}
.m8d_c00077{transform:matrix(0.237364,0.010692,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237364,0.010692,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237364,0.010692,-0.011250,0.249747,0,0);}
.ma2_c00077{transform:matrix(0.237769,0.010710,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237769,0.010710,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237769,0.010710,-0.011250,0.249747,0,0);}
.m42_c00077{transform:matrix(0.238343,0.010736,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238343,0.010736,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238343,0.010736,-0.011250,0.249747,0,0);}
.m3c_c00077{transform:matrix(0.244023,0.010992,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244023,0.010992,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244023,0.010992,-0.011250,0.249747,0,0);}
.m55_c00077{transform:matrix(0.246845,0.011119,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246845,0.011119,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246845,0.011119,-0.011250,0.249747,0,0);}
.md4_c00077{transform:matrix(0.247768,0.013393,-0.013494,0.249636,0,0);-ms-transform:matrix(0.247768,0.013393,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.247768,0.013393,-0.013494,0.249636,0,0);}
.mdb_c00077{transform:matrix(0.247853,0.013397,-0.013494,0.249636,0,0);-ms-transform:matrix(0.247853,0.013397,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.247853,0.013397,-0.013494,0.249636,0,0);}
.mb8_c00077{transform:matrix(0.249506,0.013487,-0.013494,0.249636,0,0);-ms-transform:matrix(0.249506,0.013487,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.249506,0.013487,-0.013494,0.249636,0,0);}
.m2f_c00077{transform:matrix(0.250523,0.008276,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250523,0.008276,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250523,0.008276,-0.008254,0.249864,0,0);}
.m23_c00077{transform:matrix(0.252727,0.008348,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252727,0.008348,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252727,0.008348,-0.008254,0.249864,0,0);}
.m29_c00077{transform:matrix(0.261362,0.008634,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261362,0.008634,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261362,0.008634,-0.008254,0.249864,0,0);}
.m83_c00077{transform:matrix(0.281365,0.012674,-0.011250,0.249747,0,0);-ms-transform:matrix(0.281365,0.012674,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.281365,0.012674,-0.011250,0.249747,0,0);}
.ma7_c00077{transform:matrix(0.294410,0.015914,-0.013494,0.249636,0,0);-ms-transform:matrix(0.294410,0.015914,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.294410,0.015914,-0.013494,0.249636,0,0);}
.m54_c00077{transform:matrix(0.295136,0.013294,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295136,0.013294,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295136,0.013294,-0.011250,0.249747,0,0);}
.mac_c00077{transform:matrix(0.299433,0.016186,-0.013494,0.249636,0,0);-ms-transform:matrix(0.299433,0.016186,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.299433,0.016186,-0.013494,0.249636,0,0);}
.m30_c00077{transform:matrix(0.304844,0.010070,-0.008254,0.249864,0,0);-ms-transform:matrix(0.304844,0.010070,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.304844,0.010070,-0.008254,0.249864,0,0);}
.m28_c00077{transform:matrix(0.307932,0.010172,-0.008254,0.249864,0,0);-ms-transform:matrix(0.307932,0.010172,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.307932,0.010172,-0.008254,0.249864,0,0);}
.m3d_c00077{transform:matrix(0.339231,0.015281,-0.011250,0.249747,0,0);-ms-transform:matrix(0.339231,0.015281,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.339231,0.015281,-0.011250,0.249747,0,0);}
.m39_c00077{transform:matrix(0.373931,0.016844,-0.011250,0.249747,0,0);-ms-transform:matrix(0.373931,0.016844,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.373931,0.016844,-0.011250,0.249747,0,0);}
.m82_c00077{transform:matrix(0.423965,0.019098,-0.011250,0.249747,0,0);-ms-transform:matrix(0.423965,0.019098,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.423965,0.019098,-0.011250,0.249747,0,0);}
.m1d_c00077{transform:matrix(0.458195,0.015136,-0.008254,0.249864,0,0);-ms-transform:matrix(0.458195,0.015136,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.458195,0.015136,-0.008254,0.249864,0,0);}
.ma6_c00077{transform:matrix(0.511249,0.027635,-0.013494,0.249636,0,0);-ms-transform:matrix(0.511249,0.027635,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.511249,0.027635,-0.013494,0.249636,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
.fc0_c00077{color:transparent;}
.fs0_c00077{font-size:54.600000px;}
.fs5_c00077{font-size:55.624673px;}
.fsf_c00077{font-size:55.650723px;}
.fs10_c00077{font-size:57.776472px;}
.fsd_c00077{font-size:58.800764px;}
.fs13_c00077{font-size:58.826954px;}
.fs4_c00077{font-size:59.822762px;}
.fs8_c00077{font-size:59.850778px;}
.fs14_c00077{font-size:59.877435px;}
.fs3_c00077{font-size:60.872284px;}
.fsb_c00077{font-size:60.900792px;}
.fs15_c00077{font-size:60.927916px;}
.fsc_c00077{font-size:61.950805px;}
.fs6_c00077{font-size:62.971328px;}
.fse_c00077{font-size:64.050833px;}
.fs11_c00077{font-size:65.129842px;}
.fs9_c00077{font-size:66.150860px;}
.fs16_c00077{font-size:66.180323px;}
.fs1_c00077{font-size:67.169417px;}
.fsa_c00077{font-size:67.200874px;}
.fs2_c00077{font-size:68.218939px;}
.fs7_c00077{font-size:69.300901px;}
.fs12_c00077{font-size:69.331767px;}
.fs17_c00077{font-size:74.584173px;}
.y0_c00077{bottom:0.000000px;}
.y100_c00077{bottom:24.477679px;}
.yff_c00077{bottom:25.694502px;}
.yfe_c00077{bottom:29.112904px;}
.yfd_c00077{bottom:29.950687px;}
.yfc_c00077{bottom:32.705173px;}
.yfb_c00077{bottom:33.784093px;}
.yfa_c00077{bottom:36.155976px;}
.yf9_c00077{bottom:36.938233px;}
.yf8_c00077{bottom:42.233203px;}
.yf7_c00077{bottom:43.217880px;}
.yf6_c00077{bottom:43.966198px;}
.yf5_c00077{bottom:46.674028px;}
.yf4_c00077{bottom:47.614924px;}
.yf3_c00077{bottom:49.723881px;}
.yf2_c00077{bottom:50.529790px;}
.yf1_c00077{bottom:51.746856px;}
.yf0_c00077{bottom:54.286206px;}
.yef_c00077{bottom:55.138731px;}
.yee_c00077{bottom:56.117859px;}
.yed_c00077{bottom:62.385274px;}
.yec_c00077{bottom:64.819891px;}
.yeb_c00077{bottom:66.840274px;}
.yea_c00077{bottom:68.965471px;}
.ye9_c00077{bottom:70.147018px;}
.ye8_c00077{bottom:71.892447px;}
.ye7_c00077{bottom:72.589938px;}
.ye6_c00077{bottom:77.728254px;}
.ye5_c00077{bottom:81.393990px;}
.ye4_c00077{bottom:82.758597px;}
.ye3_c00077{bottom:85.340877px;}
.ye2_c00077{bottom:89.073640px;}
.ye1_c00077{bottom:94.886524px;}
.ye0_c00077{bottom:97.184535px;}
.ydf_c00077{bottom:100.106893px;}
.yde_c00077{bottom:102.751219px;}
.ydd_c00077{bottom:103.488805px;}
.ydc_c00077{bottom:105.545922px;}
.ydb_c00077{bottom:109.808304px;}
.yda_c00077{bottom:111.333169px;}
.yd9_c00077{bottom:112.780599px;}
.yd8_c00077{bottom:113.681602px;}
.yd7_c00077{bottom:115.187878px;}
.yd6_c00077{bottom:117.730428px;}
.yd5_c00077{bottom:120.631038px;}
.yd4_c00077{bottom:121.668769px;}
.yd3_c00077{bottom:123.785704px;}
.yd2_c00077{bottom:124.720768px;}
.yd1_c00077{bottom:126.929800px;}
.yd0_c00077{bottom:128.807299px;}
.ycf_c00077{bottom:129.489846px;}
.yce_c00077{bottom:131.051161px;}
.ycd_c00077{bottom:132.499077px;}
.ycc_c00077{bottom:133.316326px;}
.ycb_c00077{bottom:134.521768px;}
.yca_c00077{bottom:137.655051px;}
.yc9_c00077{bottom:139.040394px;}
.yc8_c00077{bottom:144.859312px;}
.yc7_c00077{bottom:145.962694px;}
.yc6_c00077{bottom:147.353383px;}
.yc5_c00077{bottom:149.549455px;}
.yc4_c00077{bottom:150.691434px;}
.yc3_c00077{bottom:152.651755px;}
.yc2_c00077{bottom:155.258173px;}
.yc1_c00077{bottom:156.075139px;}
.yc0_c00077{bottom:157.681653px;}
.ybf_c00077{bottom:162.086716px;}
.ybe_c00077{bottom:163.261459px;}
.ybd_c00077{bottom:166.559172px;}
.ybc_c00077{bottom:167.426803px;}
.ybb_c00077{bottom:168.938385px;}
.yba_c00077{bottom:172.203454px;}
.yb9_c00077{bottom:174.428443px;}
.yb8_c00077{bottom:177.616765px;}
.yb7_c00077{bottom:179.016891px;}
.yb6_c00077{bottom:180.452940px;}
.yb5_c00077{bottom:182.658570px;}
.yb4_c00077{bottom:183.669450px;}
.yb3_c00077{bottom:184.299103px;}
.yb2_c00077{bottom:185.991193px;}
.yb1_c00077{bottom:188.767266px;}
.yb0_c00077{bottom:190.889749px;}
.yaf_c00077{bottom:192.023587px;}
.yae_c00077{bottom:196.174554px;}
.yad_c00077{bottom:198.905307px;}
.yac_c00077{bottom:200.382018px;}
.yab_c00077{bottom:202.044462px;}
.yaa_c00077{bottom:202.498953px;}
.ya9_c00077{bottom:203.835210px;}
.ya8_c00077{bottom:205.284786px;}
.ya7_c00077{bottom:207.856131px;}
.ya6_c00077{bottom:209.269500px;}
.ya5_c00077{bottom:212.478993px;}
.ya4_c00077{bottom:214.946874px;}
.ya3_c00077{bottom:216.006151px;}
.ya2_c00077{bottom:218.157552px;}
.ya1_c00077{bottom:220.685103px;}
.ya0_c00077{bottom:223.141901px;}
.y9f_c00077{bottom:226.555794px;}
.y9e_c00077{bottom:229.191845px;}
.y9d_c00077{bottom:231.929132px;}
.y9c_c00077{bottom:232.797492px;}
.y9b_c00077{bottom:234.764253px;}
.y9a_c00077{bottom:235.580517px;}
.y99_c00077{bottom:238.630815px;}
.y98_c00077{bottom:241.182652px;}
.y97_c00077{bottom:243.292702px;}
.y96_c00077{bottom:248.433705px;}
.y95_c00077{bottom:249.055029px;}
.y94_c00077{bottom:250.313944px;}
.y93_c00077{bottom:251.650755px;}
.y92_c00077{bottom:254.548422px;}
.y91_c00077{bottom:257.976153px;}
.y90_c00077{bottom:260.032095px;}
.y8f_c00077{bottom:264.507197px;}
.y8e_c00077{bottom:265.389044px;}
.y8d_c00077{bottom:267.344735px;}
.y8c_c00077{bottom:268.332611px;}
.y8b_c00077{bottom:271.484334px;}
.y8a_c00077{bottom:272.315259px;}
.y89_c00077{bottom:274.743045px;}
.y88_c00077{bottom:276.364489px;}
.y87_c00077{bottom:277.300094px;}
.y86_c00077{bottom:281.439099px;}
.y85_c00077{bottom:282.382816px;}
.y84_c00077{bottom:283.210515px;}
.y83_c00077{bottom:285.359013px;}
.y82_c00077{bottom:287.115322px;}
.y81_c00077{bottom:288.027544px;}
.y80_c00077{bottom:288.836086px;}
.y7f_c00077{bottom:290.018200px;}
.y7e_c00077{bottom:292.154157px;}
.y7d_c00077{bottom:297.410139px;}
.y7c_c00077{bottom:300.899146px;}
.y7b_c00077{bottom:301.411269px;}
.y7a_c00077{bottom:303.840864px;}
.y79_c00077{bottom:307.313874px;}
.y78_c00077{bottom:310.253837px;}
.y77_c00077{bottom:316.259716px;}
.y76_c00077{bottom:317.031282px;}
.y75_c00077{bottom:319.730634px;}
.y74_c00077{bottom:320.552257px;}
.y73_c00077{bottom:322.205278px;}
.y72_c00077{bottom:323.252136px;}
.y71_c00077{bottom:326.172807px;}
.y70_c00077{bottom:333.792005px;}
.y6f_c00077{bottom:336.841277px;}
.y6e_c00077{bottom:338.247072px;}
.y6d_c00077{bottom:341.165664px;}
.y6c_c00077{bottom:343.190894px;}
.y6b_c00077{bottom:348.518898px;}
.y6a_c00077{bottom:349.746548px;}
.y69_c00077{bottom:350.639127px;}
.y68_c00077{bottom:351.820822px;}
.y67_c00077{bottom:352.475302px;}
.y66_c00077{bottom:354.615646px;}
.y65_c00077{bottom:356.995305px;}
.y64_c00077{bottom:359.290156px;}
.y63_c00077{bottom:360.739044px;}
.y62_c00077{bottom:364.719519px;}
.y61_c00077{bottom:369.077198px;}
.y60_c00077{bottom:371.136973px;}
.y5f_c00077{bottom:373.783986px;}
.y5e_c00077{bottom:377.078823px;}
.y5d_c00077{bottom:378.024957px;}
.y5c_c00077{bottom:382.212954px;}
.y5b_c00077{bottom:384.204069px;}
.y5a_c00077{bottom:385.386466px;}
.y59_c00077{bottom:388.459944px;}
.y58_c00077{bottom:389.061909px;}
.y57_c00077{bottom:392.050944px;}
.y56_c00077{bottom:393.005327px;}
.y55_c00077{bottom:395.030124px;}
.y54_c00077{bottom:397.989013px;}
.y53_c00077{bottom:400.228501px;}
.y52_c00077{bottom:402.174945px;}
.y51_c00077{bottom:403.006410px;}
.y50_c00077{bottom:405.247653px;}
.y4f_c00077{bottom:406.406061px;}
.y4e_c00077{bottom:408.427470px;}
.y4d_c00077{bottom:410.812906px;}
.y4c_c00077{bottom:411.765669px;}
.y4b_c00077{bottom:415.475712px;}
.y4a_c00077{bottom:418.202766px;}
.y49_c00077{bottom:419.137358px;}
.y48_c00077{bottom:422.285909px;}
.y47_c00077{bottom:423.318591px;}
.y46_c00077{bottom:424.550912px;}
.y45_c00077{bottom:426.525408px;}
.y44_c00077{bottom:428.505777px;}
.y43_c00077{bottom:433.070329px;}
.y42_c00077{bottom:434.209527px;}
.y41_c00077{bottom:435.421084px;}
.y40_c00077{bottom:437.833670px;}
.y3f_c00077{bottom:438.831117px;}
.y3e_c00077{bottom:439.450024px;}
.y3d_c00077{bottom:441.750762px;}
.y3c_c00077{bottom:442.652224px;}
.y3b_c00077{bottom:443.834622px;}
.y3a_c00077{bottom:445.276490px;}
.y39_c00077{bottom:452.359035px;}
.y38_c00077{bottom:453.727868px;}
.y37_c00077{bottom:454.730783px;}
.y36_c00077{bottom:455.580945px;}
.y35_c00077{bottom:457.999605px;}
.y34_c00077{bottom:459.960345px;}
.y33_c00077{bottom:461.722500px;}
.y32_c00077{bottom:467.299660px;}
.y31_c00077{bottom:467.825139px;}
.y30_c00077{bottom:469.663483px;}
.y2f_c00077{bottom:471.291268px;}
.y2e_c00077{bottom:472.732528px;}
.y2d_c00077{bottom:474.206945px;}
.y2c_c00077{bottom:475.408633px;}
.y2b_c00077{bottom:476.325454px;}
.y2a_c00077{bottom:476.938323px;}
.y29_c00077{bottom:477.956358px;}
.y28_c00077{bottom:483.878376px;}
.y27_c00077{bottom:486.610911px;}
.y26_c00077{bottom:488.025464px;}
.y25_c00077{bottom:488.717060px;}
.y24_c00077{bottom:492.979045px;}
.y23_c00077{bottom:493.875823px;}
.y22_c00077{bottom:501.462981px;}
.y21_c00077{bottom:502.647575px;}
.y20_c00077{bottom:503.762202px;}
.y1f_c00077{bottom:504.414324px;}
.y1e_c00077{bottom:506.780901px;}
.y1d_c00077{bottom:507.736575px;}
.y1c_c00077{bottom:508.302297px;}
.y1b_c00077{bottom:509.527318px;}
.y1a_c00077{bottom:517.131306px;}
.y19_c00077{bottom:517.704417px;}
.y18_c00077{bottom:518.158008px;}
.y17_c00077{bottom:520.101445px;}
.y16_c00077{bottom:520.728723px;}
.y15_c00077{bottom:524.355111px;}
.y14_c00077{bottom:525.988449px;}
.y13_c00077{bottom:526.530919px;}
.y12_c00077{bottom:534.919932px;}
.y11_c00077{bottom:535.556583px;}
.y10_c00077{bottom:536.175958px;}
.yf_c00077{bottom:537.880000px;}
.ye_c00077{bottom:538.412409px;}
.yd_c00077{bottom:539.031784px;}
.yc_c00077{bottom:541.310877px;}
.yb_c00077{bottom:543.260587px;}
.ya_c00077{bottom:552.573509px;}
.y9_c00077{bottom:553.107812px;}
.y8_c00077{bottom:554.065735px;}
.y7_c00077{bottom:554.784030px;}
.y6_c00077{bottom:556.380405px;}
.y5_c00077{bottom:558.064642px;}
.y4_c00077{bottom:559.293827px;}
.y3_c00077{bottom:559.851048px;}
.y2_c00077{bottom:560.529000px;}
.y1_c00077{bottom:569.283000px;}
.h2_c00077{height:54.600000px;}
.h7_c00077{height:55.624673px;}
.h11_c00077{height:55.650723px;}
.h12_c00077{height:57.776472px;}
.hf_c00077{height:58.800764px;}
.h15_c00077{height:58.826954px;}
.h6_c00077{height:59.822762px;}
.ha_c00077{height:59.850778px;}
.h16_c00077{height:59.877435px;}
.h5_c00077{height:60.872284px;}
.hd_c00077{height:60.900792px;}
.h17_c00077{height:60.927916px;}
.he_c00077{height:61.950805px;}
.h8_c00077{height:62.971328px;}
.h10_c00077{height:64.050833px;}
.h13_c00077{height:65.129842px;}
.hb_c00077{height:66.150860px;}
.h18_c00077{height:66.180323px;}
.h3_c00077{height:67.169417px;}
.hc_c00077{height:67.200874px;}
.h4_c00077{height:68.218939px;}
.h9_c00077{height:69.300901px;}
.h14_c00077{height:69.331767px;}
.h19_c00077{height:74.584173px;}
.h1_c00077{height:612.000000px;}
.h0_c00077{height:612.300000px;}
.w0_c00077{width:368.820000px;}
.w1_c00077{width:369.000000px;}
.x0_c00077{left:0.000000px;}
.x6b_c00077{left:42.674676px;}
.x2_c00077{left:45.912000px;}
.x36_c00077{left:47.185365px;}
.x72_c00077{left:48.894383px;}
.x2a_c00077{left:55.393500px;}
.x11_c00077{left:61.668543px;}
.x76_c00077{left:63.777890px;}
.x7c_c00077{left:65.279225px;}
.x3_c00077{left:66.435456px;}
.x64_c00077{left:67.438199px;}
.x1e_c00077{left:70.582544px;}
.x22_c00077{left:72.619401px;}
.x6c_c00077{left:76.093008px;}
.x31_c00077{left:78.227994px;}
.x48_c00077{left:80.133047px;}
.x60_c00077{left:81.944327px;}
.x4_c00077{left:83.304070px;}
.x23_c00077{left:88.311572px;}
.x37_c00077{left:90.182865px;}
.x41_c00077{left:91.676033px;}
.x6d_c00077{left:93.097500px;}
.x2b_c00077{left:94.513341px;}
.x4d_c00077{left:96.986757px;}
.x56_c00077{left:99.897303px;}
.x18_c00077{left:101.714790px;}
.x32_c00077{left:104.477218px;}
.xb_c00077{left:108.351849px;}
.x12_c00077{left:109.660917px;}
.x24_c00077{left:111.797405px;}
.x42_c00077{left:112.863324px;}
.x3c_c00077{left:116.347323px;}
.x7f_c00077{left:119.110731px;}
.x5_c00077{left:120.514823px;}
.x33_c00077{left:124.489686px;}
.x51_c00077{left:125.507249px;}
.x78_c00077{left:126.885638px;}
.x61_c00077{left:129.514209px;}
.x19_c00077{left:131.553912px;}
.x38_c00077{left:133.049996px;}
.x45_c00077{left:134.946489px;}
.x2c_c00077{left:138.041769px;}
.x4f_c00077{left:140.464169px;}
.x25_c00077{left:142.589987px;}
.x52_c00077{left:144.723581px;}
.x6e_c00077{left:147.321735px;}
.x73_c00077{left:149.198708px;}
.x57_c00077{left:150.427398px;}
.x62_c00077{left:156.331365px;}
.x3d_c00077{left:158.422530px;}
.x39_c00077{left:159.807495px;}
.x65_c00077{left:163.399709px;}
.x53_c00077{left:166.408280px;}
.x58_c00077{left:167.707236px;}
.x4e_c00077{left:169.879710px;}
.x6_c00077{left:171.501285px;}
.x69_c00077{left:173.124325px;}
.x34_c00077{left:175.566058px;}
.x43_c00077{left:179.219901px;}
.x26_c00077{left:180.367190px;}
.xc_c00077{left:181.796687px;}
.x79_c00077{left:182.943186px;}
.x1f_c00077{left:185.662637px;}
.x1_c00077{left:188.730000px;}
.x46_c00077{left:190.043405px;}
.x2d_c00077{left:191.736021px;}
.x74_c00077{left:194.097575px;}
.x66_c00077{left:196.538388px;}
.x50_c00077{left:199.334712px;}
.x5c_c00077{left:200.518770px;}
.xd_c00077{left:201.773028px;}
.x20_c00077{left:204.328475px;}
.x1a_c00077{left:205.421898px;}
.x54_c00077{left:208.165089px;}
.x2e_c00077{left:210.609628px;}
.x6f_c00077{left:211.887524px;}
.x13_c00077{left:216.217236px;}
.x27_c00077{left:217.276910px;}
.x7d_c00077{left:218.677106px;}
.x7_c00077{left:219.827910px;}
.x1b_c00077{left:225.799194px;}
.x80_c00077{left:227.603508px;}
.x3e_c00077{left:229.194660px;}
.x7a_c00077{left:230.965859px;}
.x2f_c00077{left:232.874342px;}
.x14_c00077{left:234.661679px;}
.x49_c00077{left:238.456322px;}
.x8_c00077{left:241.572643px;}
.x5a_c00077{left:244.279655px;}
.x3f_c00077{left:246.486486px;}
.x63_c00077{left:247.534571px;}
.x3a_c00077{left:250.597493px;}
.x4a_c00077{left:253.652462px;}
.x5d_c00077{left:256.135098px;}
.x70_c00077{left:257.575047px;}
.x28_c00077{left:258.970400px;}
.x1c_c00077{left:260.586512px;}
.x30_c00077{left:263.262423px;}
.x35_c00077{left:265.008527px;}
.x9_c00077{left:270.571616px;}
.x67_c00077{left:271.890703px;}
.xe_c00077{left:273.836150px;}
.x75_c00077{left:276.046854px;}
.x55_c00077{left:278.936774px;}
.x4b_c00077{left:281.119467px;}
.x5b_c00077{left:282.620883px;}
.xa_c00077{left:286.746424px;}
.x7b_c00077{left:288.851375px;}
.x15_c00077{left:291.769131px;}
.xf_c00077{left:293.812491px;}
.x1d_c00077{left:297.582717px;}
.x68_c00077{left:300.014592px;}
.x4c_c00077{left:301.868089px;}
.x77_c00077{left:302.991221px;}
.x16_c00077{left:305.091849px;}
.x81_c00077{left:306.997643px;}
.x7e_c00077{left:308.335601px;}
.x71_c00077{left:309.498437px;}
.x59_c00077{left:312.932771px;}
.x10_c00077{left:314.311809px;}
.x21_c00077{left:316.293582px;}
.x5f_c00077{left:317.395641px;}
.x29_c00077{left:319.539779px;}
.x17_c00077{left:321.941937px;}
.x47_c00077{left:323.610663px;}
.x5e_c00077{left:328.180265px;}
.x3b_c00077{left:330.119310px;}
.x44_c00077{left:331.266702px;}
.x6a_c00077{left:332.270979px;}
.x40_c00077{left:333.614014px;}
.x82_c00077{left:335.264132px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.fs0_c00077{font-size:48.533333pt;}
.fs5_c00077{font-size:49.444154pt;}
.fsf_c00077{font-size:49.467310pt;}
.fs10_c00077{font-size:51.356864pt;}
.fsd_c00077{font-size:52.267346pt;}
.fs13_c00077{font-size:52.290625pt;}
.fs4_c00077{font-size:53.175788pt;}
.fs8_c00077{font-size:53.200692pt;}
.fs14_c00077{font-size:53.224387pt;}
.fs3_c00077{font-size:54.108697pt;}
.fsb_c00077{font-size:54.134037pt;}
.fs15_c00077{font-size:54.158148pt;}
.fsc_c00077{font-size:55.067383pt;}
.fs6_c00077{font-size:55.974514pt;}
.fse_c00077{font-size:56.934073pt;}
.fs11_c00077{font-size:57.893192pt;}
.fs9_c00077{font-size:58.800764pt;}
.fs16_c00077{font-size:58.826954pt;}
.fs1_c00077{font-size:59.706148pt;}
.fsa_c00077{font-size:59.734110pt;}
.fs2_c00077{font-size:60.639057pt;}
.fs7_c00077{font-size:61.600801pt;}
.fs12_c00077{font-size:61.628237pt;}
.fs17_c00077{font-size:66.297043pt;}
.y0_c00077{bottom:0.000000pt;}
.y100_c00077{bottom:21.757937pt;}
.yff_c00077{bottom:22.839557pt;}
.yfe_c00077{bottom:25.878137pt;}
.yfd_c00077{bottom:26.622833pt;}
.yfc_c00077{bottom:29.071265pt;}
.yfb_c00077{bottom:30.030305pt;}
.yfa_c00077{bottom:32.138645pt;}
.yf9_c00077{bottom:32.833985pt;}
.yf8_c00077{bottom:37.540625pt;}
.yf7_c00077{bottom:38.415893pt;}
.yf6_c00077{bottom:39.081065pt;}
.yf5_c00077{bottom:41.488025pt;}
.yf4_c00077{bottom:42.324377pt;}
.yf3_c00077{bottom:44.199005pt;}
.yf2_c00077{bottom:44.915369pt;}
.yf1_c00077{bottom:45.997205pt;}
.yf0_c00077{bottom:48.254405pt;}
.yef_c00077{bottom:49.012205pt;}
.yee_c00077{bottom:49.882541pt;}
.yed_c00077{bottom:55.453577pt;}
.yec_c00077{bottom:57.617681pt;}
.yeb_c00077{bottom:59.413577pt;}
.yea_c00077{bottom:61.302641pt;}
.ye9_c00077{bottom:62.352905pt;}
.ye8_c00077{bottom:63.904397pt;}
.ye7_c00077{bottom:64.524389pt;}
.ye6_c00077{bottom:69.091781pt;}
.ye5_c00077{bottom:72.350213pt;}
.ye4_c00077{bottom:73.563197pt;}
.ye3_c00077{bottom:75.858557pt;}
.ye2_c00077{bottom:79.176569pt;}
.ye1_c00077{bottom:84.343577pt;}
.ye0_c00077{bottom:86.386253pt;}
.ydf_c00077{bottom:88.983905pt;}
.yde_c00077{bottom:91.334417pt;}
.ydd_c00077{bottom:91.990049pt;}
.ydc_c00077{bottom:93.818597pt;}
.ydb_c00077{bottom:97.607381pt;}
.yda_c00077{bottom:98.962817pt;}
.yd9_c00077{bottom:100.249421pt;}
.yd8_c00077{bottom:101.050313pt;}
.yd7_c00077{bottom:102.389225pt;}
.yd6_c00077{bottom:104.649269pt;}
.yd5_c00077{bottom:107.227589pt;}
.yd4_c00077{bottom:108.150017pt;}
.yd3_c00077{bottom:110.031737pt;}
.yd2_c00077{bottom:110.862905pt;}
.yd1_c00077{bottom:112.826489pt;}
.yd0_c00077{bottom:114.495377pt;}
.ycf_c00077{bottom:115.102085pt;}
.yce_c00077{bottom:116.489921pt;}
.ycd_c00077{bottom:117.776957pt;}
.ycc_c00077{bottom:118.503401pt;}
.ycb_c00077{bottom:119.574905pt;}
.yca_c00077{bottom:122.360045pt;}
.yc9_c00077{bottom:123.591461pt;}
.yc8_c00077{bottom:128.763833pt;}
.yc7_c00077{bottom:129.744617pt;}
.yc6_c00077{bottom:130.980785pt;}
.yc5_c00077{bottom:132.932849pt;}
.yc4_c00077{bottom:133.947941pt;}
.yc3_c00077{bottom:135.690449pt;}
.yc2_c00077{bottom:138.007265pt;}
.yc1_c00077{bottom:138.733457pt;}
.yc0_c00077{bottom:140.161469pt;}
.ybf_c00077{bottom:144.077081pt;}
.ybe_c00077{bottom:145.121297pt;}
.ybd_c00077{bottom:148.052597pt;}
.ybc_c00077{bottom:148.823825pt;}
.ybb_c00077{bottom:150.167453pt;}
.yba_c00077{bottom:153.069737pt;}
.yb9_c00077{bottom:155.047505pt;}
.yb8_c00077{bottom:157.881569pt;}
.yb7_c00077{bottom:159.126125pt;}
.yb6_c00077{bottom:160.402613pt;}
.yb5_c00077{bottom:162.363173pt;}
.yb4_c00077{bottom:163.261733pt;}
.yb3_c00077{bottom:163.821425pt;}
.yb2_c00077{bottom:165.325505pt;}
.yb1_c00077{bottom:167.793125pt;}
.yb0_c00077{bottom:169.679777pt;}
.yaf_c00077{bottom:170.687633pt;}
.yae_c00077{bottom:174.377381pt;}
.yad_c00077{bottom:176.804717pt;}
.yac_c00077{bottom:178.117349pt;}
.yab_c00077{bottom:179.595077pt;}
.yaa_c00077{bottom:179.999069pt;}
.ya9_c00077{bottom:181.186853pt;}
.ya8_c00077{bottom:182.475365pt;}
.ya7_c00077{bottom:184.761005pt;}
.ya6_c00077{bottom:186.017333pt;}
.ya5_c00077{bottom:188.870216pt;}
.ya4_c00077{bottom:191.063888pt;}
.ya3_c00077{bottom:192.005468pt;}
.ya2_c00077{bottom:193.917824pt;}
.ya1_c00077{bottom:196.164536pt;}
.ya0_c00077{bottom:198.348356pt;}
.y9f_c00077{bottom:201.382928pt;}
.y9e_c00077{bottom:203.726084pt;}
.y9d_c00077{bottom:206.159228pt;}
.y9c_c00077{bottom:206.931104pt;}
.y9b_c00077{bottom:208.679336pt;}
.y9a_c00077{bottom:209.404904pt;}
.y99_c00077{bottom:212.116280pt;}
.y98_c00077{bottom:214.384580pt;}
.y97_c00077{bottom:216.260180pt;}
.y96_c00077{bottom:220.829960pt;}
.y95_c00077{bottom:221.382248pt;}
.y94_c00077{bottom:222.501284pt;}
.y93_c00077{bottom:223.689560pt;}
.y92_c00077{bottom:226.265264pt;}
.y91_c00077{bottom:229.312136pt;}
.y90_c00077{bottom:231.139640pt;}
.y8f_c00077{bottom:235.117508pt;}
.y8e_c00077{bottom:235.901372pt;}
.y8d_c00077{bottom:237.639764pt;}
.y8c_c00077{bottom:238.517876pt;}
.y8b_c00077{bottom:241.319408pt;}
.y8a_c00077{bottom:242.058008pt;}
.y89_c00077{bottom:244.216040pt;}
.y88_c00077{bottom:245.657324pt;}
.y87_c00077{bottom:246.488972pt;}
.y86_c00077{bottom:250.168088pt;}
.y85_c00077{bottom:251.006948pt;}
.y84_c00077{bottom:251.742680pt;}
.y83_c00077{bottom:253.652456pt;}
.y82_c00077{bottom:255.213620pt;}
.y81_c00077{bottom:256.024484pt;}
.y80_c00077{bottom:256.743188pt;}
.y7f_c00077{bottom:257.793956pt;}
.y7e_c00077{bottom:259.692584pt;}
.y7d_c00077{bottom:264.364568pt;}
.y7c_c00077{bottom:267.465908pt;}
.y7b_c00077{bottom:267.921128pt;}
.y7a_c00077{bottom:270.080768pt;}
.y79_c00077{bottom:273.167888pt;}
.y78_c00077{bottom:275.781188pt;}
.y77_c00077{bottom:281.119748pt;}
.y76_c00077{bottom:281.805584pt;}
.y75_c00077{bottom:284.205008pt;}
.y74_c00077{bottom:284.935340pt;}
.y73_c00077{bottom:286.404692pt;}
.y72_c00077{bottom:287.335232pt;}
.y71_c00077{bottom:289.931384pt;}
.y70_c00077{bottom:296.704004pt;}
.y6f_c00077{bottom:299.414468pt;}
.y6e_c00077{bottom:300.664064pt;}
.y6d_c00077{bottom:303.258368pt;}
.y6c_c00077{bottom:305.058572pt;}
.y6b_c00077{bottom:309.794576pt;}
.y6a_c00077{bottom:310.885820pt;}
.y69_c00077{bottom:311.679224pt;}
.y68_c00077{bottom:312.729620pt;}
.y67_c00077{bottom:313.311380pt;}
.y66_c00077{bottom:315.213908pt;}
.y65_c00077{bottom:317.329160pt;}
.y64_c00077{bottom:319.369028pt;}
.y63_c00077{bottom:320.656928pt;}
.y62_c00077{bottom:324.195128pt;}
.y61_c00077{bottom:328.068620pt;}
.y60_c00077{bottom:329.899532pt;}
.y5f_c00077{bottom:332.252432pt;}
.y5e_c00077{bottom:335.181176pt;}
.y5d_c00077{bottom:336.022184pt;}
.y5c_c00077{bottom:339.744848pt;}
.y5b_c00077{bottom:341.514728pt;}
.y5a_c00077{bottom:342.565748pt;}
.y59_c00077{bottom:345.297728pt;}
.y58_c00077{bottom:345.832808pt;}
.y57_c00077{bottom:348.489728pt;}
.y56_c00077{bottom:349.338068pt;}
.y55_c00077{bottom:351.137888pt;}
.y54_c00077{bottom:353.768012pt;}
.y53_c00077{bottom:355.758668pt;}
.y52_c00077{bottom:357.488840pt;}
.y51_c00077{bottom:358.227920pt;}
.y50_c00077{bottom:360.220136pt;}
.y4f_c00077{bottom:361.249832pt;}
.y4e_c00077{bottom:363.046640pt;}
.y4d_c00077{bottom:365.167028pt;}
.y4c_c00077{bottom:366.013928pt;}
.y4b_c00077{bottom:369.311744pt;}
.y4a_c00077{bottom:371.735792pt;}
.y49_c00077{bottom:372.566540pt;}
.y48_c00077{bottom:375.365252pt;}
.y47_c00077{bottom:376.283192pt;}
.y46_c00077{bottom:377.378588pt;}
.y45_c00077{bottom:379.133696pt;}
.y44_c00077{bottom:380.894024pt;}
.y43_c00077{bottom:384.951404pt;}
.y42_c00077{bottom:385.964024pt;}
.y41_c00077{bottom:387.040964pt;}
.y40_c00077{bottom:389.185484pt;}
.y3f_c00077{bottom:390.072104pt;}
.y3e_c00077{bottom:390.622244pt;}
.y3d_c00077{bottom:392.667344pt;}
.y3c_c00077{bottom:393.468644pt;}
.y3b_c00077{bottom:394.519664pt;}
.y3a_c00077{bottom:395.801324pt;}
.y39_c00077{bottom:402.096920pt;}
.y38_c00077{bottom:403.313660pt;}
.y37_c00077{bottom:404.205140pt;}
.y36_c00077{bottom:404.960840pt;}
.y35_c00077{bottom:407.110760pt;}
.y34_c00077{bottom:408.853640pt;}
.y33_c00077{bottom:410.420000pt;}
.y32_c00077{bottom:415.377476pt;}
.y31_c00077{bottom:415.844568pt;}
.y30_c00077{bottom:417.478652pt;}
.y2f_c00077{bottom:418.925572pt;}
.y2e_c00077{bottom:420.206692pt;}
.y2d_c00077{bottom:421.517284pt;}
.y2c_c00077{bottom:422.585452pt;}
.y2b_c00077{bottom:423.400404pt;}
.y2a_c00077{bottom:423.945176pt;}
.y29_c00077{bottom:424.850096pt;}
.y28_c00077{bottom:430.114112pt;}
.y27_c00077{bottom:432.543032pt;}
.y26_c00077{bottom:433.800412pt;}
.y25_c00077{bottom:434.415164pt;}
.y24_c00077{bottom:438.203596pt;}
.y23_c00077{bottom:439.000732pt;}
.y22_c00077{bottom:445.744872pt;}
.y21_c00077{bottom:446.797844pt;}
.y20_c00077{bottom:447.788624pt;}
.y1f_c00077{bottom:448.368288pt;}
.y1e_c00077{bottom:450.471912pt;}
.y1d_c00077{bottom:451.321400pt;}
.y1c_c00077{bottom:451.824264pt;}
.y1b_c00077{bottom:452.913172pt;}
.y1a_c00077{bottom:459.672272pt;}
.y19_c00077{bottom:460.181704pt;}
.y18_c00077{bottom:460.584896pt;}
.y17_c00077{bottom:462.312396pt;}
.y16_c00077{bottom:462.869976pt;}
.y15_c00077{bottom:466.093432pt;}
.y14_c00077{bottom:467.545288pt;}
.y13_c00077{bottom:468.027484pt;}
.y12_c00077{bottom:475.484384pt;}
.y11_c00077{bottom:476.050296pt;}
.y10_c00077{bottom:476.600852pt;}
.yf_c00077{bottom:478.115556pt;}
.ye_c00077{bottom:478.588808pt;}
.yd_c00077{bottom:479.139364pt;}
.yc_c00077{bottom:481.165224pt;}
.yb_c00077{bottom:482.898300pt;}
.ya_c00077{bottom:491.176452pt;}
.y9_c00077{bottom:491.651388pt;}
.y8_c00077{bottom:492.502876pt;}
.y7_c00077{bottom:493.141360pt;}
.y6_c00077{bottom:494.560360pt;}
.y5_c00077{bottom:496.057460pt;}
.y4_c00077{bottom:497.150068pt;}
.y3_c00077{bottom:497.645376pt;}
.y2_c00077{bottom:498.248000pt;}
.y1_c00077{bottom:506.029333pt;}
.h2_c00077{height:48.533333pt;}
.h7_c00077{height:49.444154pt;}
.h11_c00077{height:49.467310pt;}
.h12_c00077{height:51.356864pt;}
.hf_c00077{height:52.267346pt;}
.h15_c00077{height:52.290625pt;}
.h6_c00077{height:53.175788pt;}
.ha_c00077{height:53.200692pt;}
.h16_c00077{height:53.224387pt;}
.h5_c00077{height:54.108697pt;}
.hd_c00077{height:54.134037pt;}
.h17_c00077{height:54.158148pt;}
.he_c00077{height:55.067383pt;}
.h8_c00077{height:55.974514pt;}
.h10_c00077{height:56.934073pt;}
.h13_c00077{height:57.893192pt;}
.hb_c00077{height:58.800764pt;}
.h18_c00077{height:58.826954pt;}
.h3_c00077{height:59.706148pt;}
.hc_c00077{height:59.734110pt;}
.h4_c00077{height:60.639057pt;}
.h9_c00077{height:61.600801pt;}
.h14_c00077{height:61.628237pt;}
.h19_c00077{height:66.297043pt;}
.h1_c00077{height:544.000000pt;}
.h0_c00077{height:544.266667pt;}
.w0_c00077{width:327.840000pt;}
.w1_c00077{width:328.000000pt;}
.x0_c00077{left:0.000000pt;}
.x6b_c00077{left:37.933045pt;}
.x2_c00077{left:40.810667pt;}
.x36_c00077{left:41.942547pt;}
.x72_c00077{left:43.461673pt;}
.x2a_c00077{left:49.238667pt;}
.x11_c00077{left:54.816483pt;}
.x76_c00077{left:56.691457pt;}
.x7c_c00077{left:58.025977pt;}
.x3_c00077{left:59.053739pt;}
.x64_c00077{left:59.945065pt;}
.x1e_c00077{left:62.740039pt;}
.x22_c00077{left:64.550579pt;}
.x6c_c00077{left:67.638229pt;}
.x31_c00077{left:69.535995pt;}
.x48_c00077{left:71.229375pt;}
.x60_c00077{left:72.839401pt;}
.x4_c00077{left:74.048063pt;}
.x23_c00077{left:78.499175pt;}
.x37_c00077{left:80.162547pt;}
.x41_c00077{left:81.489807pt;}
.x6d_c00077{left:82.753333pt;}
.x2b_c00077{left:84.011859pt;}
.x4d_c00077{left:86.210451pt;}
.x56_c00077{left:88.797603pt;}
.x18_c00077{left:90.413147pt;}
.x32_c00077{left:92.868639pt;}
.xb_c00077{left:96.312755pt;}
.x12_c00077{left:97.476371pt;}
.x24_c00077{left:99.375471pt;}
.x42_c00077{left:100.322955pt;}
.x3c_c00077{left:103.419843pt;}
.x7f_c00077{left:105.876205pt;}
.x5_c00077{left:107.124287pt;}
.x33_c00077{left:110.657499pt;}
.x51_c00077{left:111.561999pt;}
.x78_c00077{left:112.787233pt;}
.x61_c00077{left:115.123741pt;}
.x19_c00077{left:116.936811pt;}
.x38_c00077{left:118.266663pt;}
.x45_c00077{left:119.952435pt;}
.x2c_c00077{left:122.703795pt;}
.x4f_c00077{left:124.857039pt;}
.x25_c00077{left:126.746655pt;}
.x52_c00077{left:128.643183pt;}
.x6e_c00077{left:130.952653pt;}
.x73_c00077{left:132.621073pt;}
.x57_c00077{left:133.713243pt;}
.x62_c00077{left:138.961213pt;}
.x3d_c00077{left:140.820027pt;}
.x39_c00077{left:142.051107pt;}
.x65_c00077{left:145.244185pt;}
.x53_c00077{left:147.918471pt;}
.x58_c00077{left:149.073099pt;}
.x4e_c00077{left:151.004187pt;}
.x6_c00077{left:152.445587pt;}
.x69_c00077{left:153.888289pt;}
.x34_c00077{left:156.058719pt;}
.x43_c00077{left:159.306579pt;}
.x26_c00077{left:160.326391pt;}
.xc_c00077{left:161.597055pt;}
.x79_c00077{left:162.616165pt;}
.x1f_c00077{left:165.033455pt;}
.x1_c00077{left:167.760000pt;}
.x46_c00077{left:168.927471pt;}
.x2d_c00077{left:170.432019pt;}
.x74_c00077{left:172.531177pt;}
.x66_c00077{left:174.700789pt;}
.x50_c00077{left:177.186411pt;}
.x5c_c00077{left:178.238907pt;}
.xd_c00077{left:179.353803pt;}
.x20_c00077{left:181.625311pt;}
.x1a_c00077{left:182.597243pt;}
.x54_c00077{left:185.035635pt;}
.x2e_c00077{left:187.208559pt;}
.x6f_c00077{left:188.344465pt;}
.x13_c00077{left:192.193099pt;}
.x27_c00077{left:193.135031pt;}
.x7d_c00077{left:194.379649pt;}
.x7_c00077{left:195.402587pt;}
.x1b_c00077{left:200.710395pt;}
.x80_c00077{left:202.314229pt;}
.x3e_c00077{left:203.728587pt;}
.x7a_c00077{left:205.302985pt;}
.x2f_c00077{left:206.999415pt;}
.x14_c00077{left:208.588159pt;}
.x49_c00077{left:211.961175pt;}
.x8_c00077{left:214.731239pt;}
.x5a_c00077{left:217.137471pt;}
.x3f_c00077{left:219.099099pt;}
.x63_c00077{left:220.030729pt;}
.x3a_c00077{left:222.753327pt;}
.x4a_c00077{left:225.468855pt;}
.x5d_c00077{left:227.675643pt;}
.x70_c00077{left:228.955597pt;}
.x28_c00077{left:230.195911pt;}
.x1c_c00077{left:231.632455pt;}
.x30_c00077{left:234.011043pt;}
.x35_c00077{left:235.563135pt;}
.x9_c00077{left:240.508103pt;}
.x67_c00077{left:241.680625pt;}
.xe_c00077{left:243.409911pt;}
.x75_c00077{left:245.374981pt;}
.x55_c00077{left:247.943799pt;}
.x4b_c00077{left:249.883971pt;}
.x5b_c00077{left:251.218563pt;}
.xa_c00077{left:254.885711pt;}
.x7b_c00077{left:256.756777pt;}
.x15_c00077{left:259.350339pt;}
.xf_c00077{left:261.166659pt;}
.x1d_c00077{left:264.517971pt;}
.x68_c00077{left:266.679637pt;}
.x4c_c00077{left:268.327191pt;}
.x77_c00077{left:269.325529pt;}
.x16_c00077{left:271.192755pt;}
.x81_c00077{left:272.886793pt;}
.x7e_c00077{left:274.076089pt;}
.x71_c00077{left:275.109721pt;}
.x59_c00077{left:278.162463pt;}
.x10_c00077{left:279.388275pt;}
.x21_c00077{left:281.149851pt;}
.x5f_c00077{left:282.129459pt;}
.x29_c00077{left:284.035359pt;}
.x17_c00077{left:286.170611pt;}
.x47_c00077{left:287.653923pt;}
.x5e_c00077{left:291.715791pt;}
.x3b_c00077{left:293.439387pt;}
.x44_c00077{left:294.459291pt;}
.x6a_c00077{left:295.351981pt;}
.x40_c00077{left:296.545791pt;}
.x82_c00077{left:298.012561pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00078 {
    display:none;
  }
  .loading-indicator_c00078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00078 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00078 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00078" -> "#page-container .classname_c00078")
 */
.pf_c00078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00078 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00078 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00078 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00078 {overflow:visible;}
  }
}
.c_c00078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00078 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00078:after { /* webkit #35443 */
  content: '';
}
.t_c00078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00078 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00078 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00078 { /* info for Javascript */
  display:none;
}
.l_c00078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00078:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00078 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00078.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00078{transform:matrix(0.144131,-0.004617,0.008004,0.249872,0,0);-ms-transform:matrix(0.144131,-0.004617,0.008004,0.249872,0,0);-webkit-transform:matrix(0.144131,-0.004617,0.008004,0.249872,0,0);}
.m5_c00078{transform:matrix(0.147284,-0.002504,0.004249,0.249964,0,0);-ms-transform:matrix(0.147284,-0.002504,0.004249,0.249964,0,0);-webkit-transform:matrix(0.147284,-0.002504,0.004249,0.249964,0,0);}
.m35_c00078{transform:matrix(0.147519,-0.004725,0.008004,0.249872,0,0);-ms-transform:matrix(0.147519,-0.004725,0.008004,0.249872,0,0);-webkit-transform:matrix(0.147519,-0.004725,0.008004,0.249872,0,0);}
.m47_c00078{transform:matrix(0.154856,-0.004960,0.008004,0.249872,0,0);-ms-transform:matrix(0.154856,-0.004960,0.008004,0.249872,0,0);-webkit-transform:matrix(0.154856,-0.004960,0.008004,0.249872,0,0);}
.me3_c00078{transform:matrix(0.154986,-0.004965,0.008004,0.249872,0,0);-ms-transform:matrix(0.154986,-0.004965,0.008004,0.249872,0,0);-webkit-transform:matrix(0.154986,-0.004965,0.008004,0.249872,0,0);}
.md8_c00078{transform:matrix(0.155905,-0.004994,0.008004,0.249872,0,0);-ms-transform:matrix(0.155905,-0.004994,0.008004,0.249872,0,0);-webkit-transform:matrix(0.155905,-0.004994,0.008004,0.249872,0,0);}
.m11_c00078{transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);}
.m23_c00078{transform:matrix(0.156295,-0.005006,0.008004,0.249872,0,0);-ms-transform:matrix(0.156295,-0.005006,0.008004,0.249872,0,0);-webkit-transform:matrix(0.156295,-0.005006,0.008004,0.249872,0,0);}
.m55_c00078{transform:matrix(0.156585,-0.005016,0.008004,0.249872,0,0);-ms-transform:matrix(0.156585,-0.005016,0.008004,0.249872,0,0);-webkit-transform:matrix(0.156585,-0.005016,0.008004,0.249872,0,0);}
.m84_c00078{transform:matrix(0.158679,-0.005083,0.008004,0.249872,0,0);-ms-transform:matrix(0.158679,-0.005083,0.008004,0.249872,0,0);-webkit-transform:matrix(0.158679,-0.005083,0.008004,0.249872,0,0);}
.m8_c00078{transform:matrix(0.158847,-0.002700,0.004249,0.249964,0,0);-ms-transform:matrix(0.158847,-0.002700,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158847,-0.002700,0.004249,0.249964,0,0);}
.m51_c00078{transform:matrix(0.159198,-0.005099,0.008004,0.249872,0,0);-ms-transform:matrix(0.159198,-0.005099,0.008004,0.249872,0,0);-webkit-transform:matrix(0.159198,-0.005099,0.008004,0.249872,0,0);}
.m1f_c00078{transform:matrix(0.161612,-0.005177,0.008004,0.249872,0,0);-ms-transform:matrix(0.161612,-0.005177,0.008004,0.249872,0,0);-webkit-transform:matrix(0.161612,-0.005177,0.008004,0.249872,0,0);}
.m37_c00078{transform:matrix(0.162727,-0.005212,0.008004,0.249872,0,0);-ms-transform:matrix(0.162727,-0.005212,0.008004,0.249872,0,0);-webkit-transform:matrix(0.162727,-0.005212,0.008004,0.249872,0,0);}
.m72_c00078{transform:matrix(0.163096,-0.005224,0.008004,0.249872,0,0);-ms-transform:matrix(0.163096,-0.005224,0.008004,0.249872,0,0);-webkit-transform:matrix(0.163096,-0.005224,0.008004,0.249872,0,0);}
.mb2_c00078{transform:matrix(0.163361,-0.005233,0.008004,0.249872,0,0);-ms-transform:matrix(0.163361,-0.005233,0.008004,0.249872,0,0);-webkit-transform:matrix(0.163361,-0.005233,0.008004,0.249872,0,0);}
.m42_c00078{transform:matrix(0.163476,-0.005236,0.008004,0.249872,0,0);-ms-transform:matrix(0.163476,-0.005236,0.008004,0.249872,0,0);-webkit-transform:matrix(0.163476,-0.005236,0.008004,0.249872,0,0);}
.m17_c00078{transform:matrix(0.163936,-0.002787,0.004249,0.249964,0,0);-ms-transform:matrix(0.163936,-0.002787,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163936,-0.002787,0.004249,0.249964,0,0);}
.me7_c00078{transform:matrix(0.165265,-0.005294,0.008004,0.249872,0,0);-ms-transform:matrix(0.165265,-0.005294,0.008004,0.249872,0,0);-webkit-transform:matrix(0.165265,-0.005294,0.008004,0.249872,0,0);}
.m12_c00078{transform:matrix(0.165511,-0.002814,0.004249,0.249964,0,0);-ms-transform:matrix(0.165511,-0.002814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165511,-0.002814,0.004249,0.249964,0,0);}
.ma_c00078{transform:matrix(0.165696,-0.002817,0.004249,0.249964,0,0);-ms-transform:matrix(0.165696,-0.002817,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165696,-0.002817,0.004249,0.249964,0,0);}
.m3b_c00078{transform:matrix(0.166205,-0.005324,0.008004,0.249872,0,0);-ms-transform:matrix(0.166205,-0.005324,0.008004,0.249872,0,0);-webkit-transform:matrix(0.166205,-0.005324,0.008004,0.249872,0,0);}
.m6b_c00078{transform:matrix(0.166904,-0.005346,0.008004,0.249872,0,0);-ms-transform:matrix(0.166904,-0.005346,0.008004,0.249872,0,0);-webkit-transform:matrix(0.166904,-0.005346,0.008004,0.249872,0,0);}
.m64_c00078{transform:matrix(0.166909,-0.005346,0.008004,0.249872,0,0);-ms-transform:matrix(0.166909,-0.005346,0.008004,0.249872,0,0);-webkit-transform:matrix(0.166909,-0.005346,0.008004,0.249872,0,0);}
.mea_c00078{transform:matrix(0.166974,-0.005349,0.008004,0.249872,0,0);-ms-transform:matrix(0.166974,-0.005349,0.008004,0.249872,0,0);-webkit-transform:matrix(0.166974,-0.005349,0.008004,0.249872,0,0);}
.m52_c00078{transform:matrix(0.167259,-0.005358,0.008004,0.249872,0,0);-ms-transform:matrix(0.167259,-0.005358,0.008004,0.249872,0,0);-webkit-transform:matrix(0.167259,-0.005358,0.008004,0.249872,0,0);}
.m46_c00078{transform:matrix(0.168004,-0.005382,0.008004,0.249872,0,0);-ms-transform:matrix(0.168004,-0.005382,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168004,-0.005382,0.008004,0.249872,0,0);}
.m67_c00078{transform:matrix(0.168504,-0.005398,0.008004,0.249872,0,0);-ms-transform:matrix(0.168504,-0.005398,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168504,-0.005398,0.008004,0.249872,0,0);}
.ma0_c00078{transform:matrix(0.168738,-0.005405,0.008004,0.249872,0,0);-ms-transform:matrix(0.168738,-0.005405,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168738,-0.005405,0.008004,0.249872,0,0);}
.m5c_c00078{transform:matrix(0.168858,-0.005409,0.008004,0.249872,0,0);-ms-transform:matrix(0.168858,-0.005409,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168858,-0.005409,0.008004,0.249872,0,0);}
.ma5_c00078{transform:matrix(0.170388,-0.005458,0.008004,0.249872,0,0);-ms-transform:matrix(0.170388,-0.005458,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170388,-0.005458,0.008004,0.249872,0,0);}
.m8b_c00078{transform:matrix(0.170498,-0.005461,0.008004,0.249872,0,0);-ms-transform:matrix(0.170498,-0.005461,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170498,-0.005461,0.008004,0.249872,0,0);}
.m20_c00078{transform:matrix(0.170583,-0.005464,0.008004,0.249872,0,0);-ms-transform:matrix(0.170583,-0.005464,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170583,-0.005464,0.008004,0.249872,0,0);}
.m2_c00078{transform:matrix(0.170615,-0.002900,0.004249,0.249964,0,0);-ms-transform:matrix(0.170615,-0.002900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170615,-0.002900,0.004249,0.249964,0,0);}
.m86_c00078{transform:matrix(0.170737,-0.005469,0.008004,0.249872,0,0);-ms-transform:matrix(0.170737,-0.005469,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170737,-0.005469,0.008004,0.249872,0,0);}
.m15_c00078{transform:matrix(0.170800,-0.002904,0.004249,0.249964,0,0);-ms-transform:matrix(0.170800,-0.002904,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170800,-0.002904,0.004249,0.249964,0,0);}
.m79_c00078{transform:matrix(0.171342,-0.005488,0.008004,0.249872,0,0);-ms-transform:matrix(0.171342,-0.005488,0.008004,0.249872,0,0);-webkit-transform:matrix(0.171342,-0.005488,0.008004,0.249872,0,0);}
.m4_c00078{transform:matrix(0.171920,-0.002923,0.004249,0.249964,0,0);-ms-transform:matrix(0.171920,-0.002923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171920,-0.002923,0.004249,0.249964,0,0);}
.m5f_c00078{transform:matrix(0.172042,-0.005511,0.008004,0.249872,0,0);-ms-transform:matrix(0.172042,-0.005511,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172042,-0.005511,0.008004,0.249872,0,0);}
.mc_c00078{transform:matrix(0.172525,-0.002933,0.004249,0.249964,0,0);-ms-transform:matrix(0.172525,-0.002933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172525,-0.002933,0.004249,0.249964,0,0);}
.m54_c00078{transform:matrix(0.172801,-0.005535,0.008004,0.249872,0,0);-ms-transform:matrix(0.172801,-0.005535,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172801,-0.005535,0.008004,0.249872,0,0);}
.m98_c00078{transform:matrix(0.173341,-0.005552,0.008004,0.249872,0,0);-ms-transform:matrix(0.173341,-0.005552,0.008004,0.249872,0,0);-webkit-transform:matrix(0.173341,-0.005552,0.008004,0.249872,0,0);}
.m60_c00078{transform:matrix(0.173961,-0.005572,0.008004,0.249872,0,0);-ms-transform:matrix(0.173961,-0.005572,0.008004,0.249872,0,0);-webkit-transform:matrix(0.173961,-0.005572,0.008004,0.249872,0,0);}
.mb5_c00078{transform:matrix(0.174016,-0.005574,0.008004,0.249872,0,0);-ms-transform:matrix(0.174016,-0.005574,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174016,-0.005574,0.008004,0.249872,0,0);}
.mdf_c00078{transform:matrix(0.174476,-0.005589,0.008004,0.249872,0,0);-ms-transform:matrix(0.174476,-0.005589,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174476,-0.005589,0.008004,0.249872,0,0);}
.me1_c00078{transform:matrix(0.174910,-0.005603,0.008004,0.249872,0,0);-ms-transform:matrix(0.174910,-0.005603,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174910,-0.005603,0.008004,0.249872,0,0);}
.mcc_c00078{transform:matrix(0.175470,-0.005621,0.008004,0.249872,0,0);-ms-transform:matrix(0.175470,-0.005621,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175470,-0.005621,0.008004,0.249872,0,0);}
.m0_c00078{transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);-ms-transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);}
.m6e_c00078{transform:matrix(0.176145,-0.005642,0.008004,0.249872,0,0);-ms-transform:matrix(0.176145,-0.005642,0.008004,0.249872,0,0);-webkit-transform:matrix(0.176145,-0.005642,0.008004,0.249872,0,0);}
.m13_c00078{transform:matrix(0.176210,-0.002996,0.004249,0.249964,0,0);-ms-transform:matrix(0.176210,-0.002996,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176210,-0.002996,0.004249,0.249964,0,0);}
.m41_c00078{transform:matrix(0.176604,-0.005657,0.008004,0.249872,0,0);-ms-transform:matrix(0.176604,-0.005657,0.008004,0.249872,0,0);-webkit-transform:matrix(0.176604,-0.005657,0.008004,0.249872,0,0);}
.m99_c00078{transform:matrix(0.176794,-0.005663,0.008004,0.249872,0,0);-ms-transform:matrix(0.176794,-0.005663,0.008004,0.249872,0,0);-webkit-transform:matrix(0.176794,-0.005663,0.008004,0.249872,0,0);}
.mf_c00078{transform:matrix(0.176879,-0.003007,0.004249,0.249964,0,0);-ms-transform:matrix(0.176879,-0.003007,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176879,-0.003007,0.004249,0.249964,0,0);}
.mdb_c00078{transform:matrix(0.177014,-0.005670,0.008004,0.249872,0,0);-ms-transform:matrix(0.177014,-0.005670,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177014,-0.005670,0.008004,0.249872,0,0);}
.m8a_c00078{transform:matrix(0.178004,-0.005702,0.008004,0.249872,0,0);-ms-transform:matrix(0.178004,-0.005702,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178004,-0.005702,0.008004,0.249872,0,0);}
.m8c_c00078{transform:matrix(0.178284,-0.005711,0.008004,0.249872,0,0);-ms-transform:matrix(0.178284,-0.005711,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178284,-0.005711,0.008004,0.249872,0,0);}
.ma3_c00078{transform:matrix(0.178988,-0.005733,0.008004,0.249872,0,0);-ms-transform:matrix(0.178988,-0.005733,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178988,-0.005733,0.008004,0.249872,0,0);}
.m93_c00078{transform:matrix(0.179158,-0.005739,0.008004,0.249872,0,0);-ms-transform:matrix(0.179158,-0.005739,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179158,-0.005739,0.008004,0.249872,0,0);}
.ma8_c00078{transform:matrix(0.179423,-0.005747,0.008004,0.249872,0,0);-ms-transform:matrix(0.179423,-0.005747,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179423,-0.005747,0.008004,0.249872,0,0);}
.m22_c00078{transform:matrix(0.179528,-0.005751,0.008004,0.249872,0,0);-ms-transform:matrix(0.179528,-0.005751,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179528,-0.005751,0.008004,0.249872,0,0);}
.m39_c00078{transform:matrix(0.180113,-0.005769,0.008004,0.249872,0,0);-ms-transform:matrix(0.180113,-0.005769,0.008004,0.249872,0,0);-webkit-transform:matrix(0.180113,-0.005769,0.008004,0.249872,0,0);}
.md4_c00078{transform:matrix(0.180118,-0.005770,0.008004,0.249872,0,0);-ms-transform:matrix(0.180118,-0.005770,0.008004,0.249872,0,0);-webkit-transform:matrix(0.180118,-0.005770,0.008004,0.249872,0,0);}
.me9_c00078{transform:matrix(0.180328,-0.005776,0.008004,0.249872,0,0);-ms-transform:matrix(0.180328,-0.005776,0.008004,0.249872,0,0);-webkit-transform:matrix(0.180328,-0.005776,0.008004,0.249872,0,0);}
.m19_c00078{transform:matrix(0.180819,-0.003074,0.004249,0.249964,0,0);-ms-transform:matrix(0.180819,-0.003074,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180819,-0.003074,0.004249,0.249964,0,0);}
.m9d_c00078{transform:matrix(0.181747,-0.005822,0.008004,0.249872,0,0);-ms-transform:matrix(0.181747,-0.005822,0.008004,0.249872,0,0);-webkit-transform:matrix(0.181747,-0.005822,0.008004,0.249872,0,0);}
.m27_c00078{transform:matrix(0.181842,-0.005825,0.008004,0.249872,0,0);-ms-transform:matrix(0.181842,-0.005825,0.008004,0.249872,0,0);-webkit-transform:matrix(0.181842,-0.005825,0.008004,0.249872,0,0);}
.maf_c00078{transform:matrix(0.182017,-0.005830,0.008004,0.249872,0,0);-ms-transform:matrix(0.182017,-0.005830,0.008004,0.249872,0,0);-webkit-transform:matrix(0.182017,-0.005830,0.008004,0.249872,0,0);}
.m78_c00078{transform:matrix(0.182032,-0.005831,0.008004,0.249872,0,0);-ms-transform:matrix(0.182032,-0.005831,0.008004,0.249872,0,0);-webkit-transform:matrix(0.182032,-0.005831,0.008004,0.249872,0,0);}
.m32_c00078{transform:matrix(0.182162,-0.005835,0.008004,0.249872,0,0);-ms-transform:matrix(0.182162,-0.005835,0.008004,0.249872,0,0);-webkit-transform:matrix(0.182162,-0.005835,0.008004,0.249872,0,0);}
.mc5_c00078{transform:matrix(0.183116,-0.005866,0.008004,0.249872,0,0);-ms-transform:matrix(0.183116,-0.005866,0.008004,0.249872,0,0);-webkit-transform:matrix(0.183116,-0.005866,0.008004,0.249872,0,0);}
.m2d_c00078{transform:matrix(0.183361,-0.005873,0.008004,0.249872,0,0);-ms-transform:matrix(0.183361,-0.005873,0.008004,0.249872,0,0);-webkit-transform:matrix(0.183361,-0.005873,0.008004,0.249872,0,0);}
.m38_c00078{transform:matrix(0.183966,-0.005893,0.008004,0.249872,0,0);-ms-transform:matrix(0.183966,-0.005893,0.008004,0.249872,0,0);-webkit-transform:matrix(0.183966,-0.005893,0.008004,0.249872,0,0);}
.m9c_c00078{transform:matrix(0.184046,-0.005895,0.008004,0.249872,0,0);-ms-transform:matrix(0.184046,-0.005895,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184046,-0.005895,0.008004,0.249872,0,0);}
.mec_c00078{transform:matrix(0.184106,-0.005897,0.008004,0.249872,0,0);-ms-transform:matrix(0.184106,-0.005897,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184106,-0.005897,0.008004,0.249872,0,0);}
.m73_c00078{transform:matrix(0.185545,-0.005943,0.008004,0.249872,0,0);-ms-transform:matrix(0.185545,-0.005943,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185545,-0.005943,0.008004,0.249872,0,0);}
.m77_c00078{transform:matrix(0.185655,-0.005947,0.008004,0.249872,0,0);-ms-transform:matrix(0.185655,-0.005947,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185655,-0.005947,0.008004,0.249872,0,0);}
.me5_c00078{transform:matrix(0.185920,-0.005955,0.008004,0.249872,0,0);-ms-transform:matrix(0.185920,-0.005955,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185920,-0.005955,0.008004,0.249872,0,0);}
.mc3_c00078{transform:matrix(0.186239,-0.005966,0.008004,0.249872,0,0);-ms-transform:matrix(0.186239,-0.005966,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186239,-0.005966,0.008004,0.249872,0,0);}
.m6f_c00078{transform:matrix(0.186474,-0.005973,0.008004,0.249872,0,0);-ms-transform:matrix(0.186474,-0.005973,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186474,-0.005973,0.008004,0.249872,0,0);}
.m89_c00078{transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);-ms-transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);}
.m18_c00078{transform:matrix(0.187098,-0.003181,0.004249,0.249964,0,0);-ms-transform:matrix(0.187098,-0.003181,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187098,-0.003181,0.004249,0.249964,0,0);}
.mcf_c00078{transform:matrix(0.187114,-0.005994,0.008004,0.249872,0,0);-ms-transform:matrix(0.187114,-0.005994,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187114,-0.005994,0.008004,0.249872,0,0);}
.mb0_c00078{transform:matrix(0.187119,-0.005994,0.008004,0.249872,0,0);-ms-transform:matrix(0.187119,-0.005994,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187119,-0.005994,0.008004,0.249872,0,0);}
.m1a_c00078{transform:matrix(0.187198,-0.003182,0.004249,0.249964,0,0);-ms-transform:matrix(0.187198,-0.003182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187198,-0.003182,0.004249,0.249964,0,0);}
.me_c00078{transform:matrix(0.187203,-0.003182,0.004249,0.249964,0,0);-ms-transform:matrix(0.187203,-0.003182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187203,-0.003182,0.004249,0.249964,0,0);}
.m7d_c00078{transform:matrix(0.187229,-0.005997,0.008004,0.249872,0,0);-ms-transform:matrix(0.187229,-0.005997,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187229,-0.005997,0.008004,0.249872,0,0);}
.m2f_c00078{transform:matrix(0.187739,-0.006014,0.008004,0.249872,0,0);-ms-transform:matrix(0.187739,-0.006014,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187739,-0.006014,0.008004,0.249872,0,0);}
.mb1_c00078{transform:matrix(0.187964,-0.006021,0.008004,0.249872,0,0);-ms-transform:matrix(0.187964,-0.006021,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187964,-0.006021,0.008004,0.249872,0,0);}
.mca_c00078{transform:matrix(0.187999,-0.006022,0.008004,0.249872,0,0);-ms-transform:matrix(0.187999,-0.006022,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187999,-0.006022,0.008004,0.249872,0,0);}
.m44_c00078{transform:matrix(0.188019,-0.006023,0.008004,0.249872,0,0);-ms-transform:matrix(0.188019,-0.006023,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188019,-0.006023,0.008004,0.249872,0,0);}
.m5e_c00078{transform:matrix(0.188203,-0.006029,0.008004,0.249872,0,0);-ms-transform:matrix(0.188203,-0.006029,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188203,-0.006029,0.008004,0.249872,0,0);}
.m5a_c00078{transform:matrix(0.188298,-0.006032,0.008004,0.249872,0,0);-ms-transform:matrix(0.188298,-0.006032,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188298,-0.006032,0.008004,0.249872,0,0);}
.m9_c00078{transform:matrix(0.188673,-0.003207,0.004249,0.249964,0,0);-ms-transform:matrix(0.188673,-0.003207,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188673,-0.003207,0.004249,0.249964,0,0);}
.m14_c00078{transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);}
.m87_c00078{transform:matrix(0.188763,-0.006046,0.008004,0.249872,0,0);-ms-transform:matrix(0.188763,-0.006046,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188763,-0.006046,0.008004,0.249872,0,0);}
.meb_c00078{transform:matrix(0.188823,-0.006048,0.008004,0.249872,0,0);-ms-transform:matrix(0.188823,-0.006048,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188823,-0.006048,0.008004,0.249872,0,0);}
.m8e_c00078{transform:matrix(0.189078,-0.006057,0.008004,0.249872,0,0);-ms-transform:matrix(0.189078,-0.006057,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189078,-0.006057,0.008004,0.249872,0,0);}
.m7f_c00078{transform:matrix(0.189533,-0.006071,0.008004,0.249872,0,0);-ms-transform:matrix(0.189533,-0.006071,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189533,-0.006071,0.008004,0.249872,0,0);}
.mee_c00078{transform:matrix(0.189718,-0.006077,0.008004,0.249872,0,0);-ms-transform:matrix(0.189718,-0.006077,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189718,-0.006077,0.008004,0.249872,0,0);}
.m63_c00078{transform:matrix(0.189843,-0.006081,0.008004,0.249872,0,0);-ms-transform:matrix(0.189843,-0.006081,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189843,-0.006081,0.008004,0.249872,0,0);}
.m8d_c00078{transform:matrix(0.189983,-0.006086,0.008004,0.249872,0,0);-ms-transform:matrix(0.189983,-0.006086,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189983,-0.006086,0.008004,0.249872,0,0);}
.m2e_c00078{transform:matrix(0.190182,-0.006092,0.008004,0.249872,0,0);-ms-transform:matrix(0.190182,-0.006092,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190182,-0.006092,0.008004,0.249872,0,0);}
.mae_c00078{transform:matrix(0.190262,-0.006094,0.008004,0.249872,0,0);-ms-transform:matrix(0.190262,-0.006094,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190262,-0.006094,0.008004,0.249872,0,0);}
.m25_c00078{transform:matrix(0.190517,-0.006103,0.008004,0.249872,0,0);-ms-transform:matrix(0.190517,-0.006103,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190517,-0.006103,0.008004,0.249872,0,0);}
.m82_c00078{transform:matrix(0.190537,-0.006103,0.008004,0.249872,0,0);-ms-transform:matrix(0.190537,-0.006103,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190537,-0.006103,0.008004,0.249872,0,0);}
.m61_c00078{transform:matrix(0.190767,-0.006111,0.008004,0.249872,0,0);-ms-transform:matrix(0.190767,-0.006111,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190767,-0.006111,0.008004,0.249872,0,0);}
.m43_c00078{transform:matrix(0.190792,-0.006111,0.008004,0.249872,0,0);-ms-transform:matrix(0.190792,-0.006111,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190792,-0.006111,0.008004,0.249872,0,0);}
.m70_c00078{transform:matrix(0.191522,-0.006135,0.008004,0.249872,0,0);-ms-transform:matrix(0.191522,-0.006135,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191522,-0.006135,0.008004,0.249872,0,0);}
.mc0_c00078{transform:matrix(0.191722,-0.006141,0.008004,0.249872,0,0);-ms-transform:matrix(0.191722,-0.006141,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191722,-0.006141,0.008004,0.249872,0,0);}
.m33_c00078{transform:matrix(0.191762,-0.006143,0.008004,0.249872,0,0);-ms-transform:matrix(0.191762,-0.006143,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191762,-0.006143,0.008004,0.249872,0,0);}
.m6_c00078{transform:matrix(0.191852,-0.003261,0.004249,0.249964,0,0);-ms-transform:matrix(0.191852,-0.003261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191852,-0.003261,0.004249,0.249964,0,0);}
.m56_c00078{transform:matrix(0.192286,-0.006159,0.008004,0.249872,0,0);-ms-transform:matrix(0.192286,-0.006159,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192286,-0.006159,0.008004,0.249872,0,0);}
.mb7_c00078{transform:matrix(0.192501,-0.006166,0.008004,0.249872,0,0);-ms-transform:matrix(0.192501,-0.006166,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192501,-0.006166,0.008004,0.249872,0,0);}
.me0_c00078{transform:matrix(0.192591,-0.006169,0.008004,0.249872,0,0);-ms-transform:matrix(0.192591,-0.006169,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192591,-0.006169,0.008004,0.249872,0,0);}
.m83_c00078{transform:matrix(0.192781,-0.006175,0.008004,0.249872,0,0);-ms-transform:matrix(0.192781,-0.006175,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192781,-0.006175,0.008004,0.249872,0,0);}
.m76_c00078{transform:matrix(0.192911,-0.006179,0.008004,0.249872,0,0);-ms-transform:matrix(0.192911,-0.006179,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192911,-0.006179,0.008004,0.249872,0,0);}
.mb3_c00078{transform:matrix(0.193071,-0.006184,0.008004,0.249872,0,0);-ms-transform:matrix(0.193071,-0.006184,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193071,-0.006184,0.008004,0.249872,0,0);}
.m36_c00078{transform:matrix(0.193306,-0.006192,0.008004,0.249872,0,0);-ms-transform:matrix(0.193306,-0.006192,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193306,-0.006192,0.008004,0.249872,0,0);}
.m1e_c00078{transform:matrix(0.193511,-0.006199,0.008004,0.249872,0,0);-ms-transform:matrix(0.193511,-0.006199,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193511,-0.006199,0.008004,0.249872,0,0);}
.m5d_c00078{transform:matrix(0.193856,-0.006210,0.008004,0.249872,0,0);-ms-transform:matrix(0.193856,-0.006210,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193856,-0.006210,0.008004,0.249872,0,0);}
.m75_c00078{transform:matrix(0.193946,-0.006212,0.008004,0.249872,0,0);-ms-transform:matrix(0.193946,-0.006212,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193946,-0.006212,0.008004,0.249872,0,0);}
.m62_c00078{transform:matrix(0.194040,-0.006216,0.008004,0.249872,0,0);-ms-transform:matrix(0.194040,-0.006216,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194040,-0.006216,0.008004,0.249872,0,0);}
.m31_c00078{transform:matrix(0.194230,-0.006222,0.008004,0.249872,0,0);-ms-transform:matrix(0.194230,-0.006222,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194230,-0.006222,0.008004,0.249872,0,0);}
.m40_c00078{transform:matrix(0.194255,-0.006222,0.008004,0.249872,0,0);-ms-transform:matrix(0.194255,-0.006222,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194255,-0.006222,0.008004,0.249872,0,0);}
.mda_c00078{transform:matrix(0.194670,-0.006236,0.008004,0.249872,0,0);-ms-transform:matrix(0.194670,-0.006236,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194670,-0.006236,0.008004,0.249872,0,0);}
.m7_c00078{transform:matrix(0.194742,-0.003311,0.004249,0.249964,0,0);-ms-transform:matrix(0.194742,-0.003311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194742,-0.003311,0.004249,0.249964,0,0);}
.m7e_c00078{transform:matrix(0.194850,-0.006241,0.008004,0.249872,0,0);-ms-transform:matrix(0.194850,-0.006241,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194850,-0.006241,0.008004,0.249872,0,0);}
.mbf_c00078{transform:matrix(0.194885,-0.006243,0.008004,0.249872,0,0);-ms-transform:matrix(0.194885,-0.006243,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194885,-0.006243,0.008004,0.249872,0,0);}
.mde_c00078{transform:matrix(0.195530,-0.006263,0.008004,0.249872,0,0);-ms-transform:matrix(0.195530,-0.006263,0.008004,0.249872,0,0);-webkit-transform:matrix(0.195530,-0.006263,0.008004,0.249872,0,0);}
.mef_c00078{transform:matrix(0.195605,-0.006266,0.008004,0.249872,0,0);-ms-transform:matrix(0.195605,-0.006266,0.008004,0.249872,0,0);-webkit-transform:matrix(0.195605,-0.006266,0.008004,0.249872,0,0);}
.ma6_c00078{transform:matrix(0.196379,-0.006290,0.008004,0.249872,0,0);-ms-transform:matrix(0.196379,-0.006290,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196379,-0.006290,0.008004,0.249872,0,0);}
.mb_c00078{transform:matrix(0.196412,-0.003339,0.004249,0.249964,0,0);-ms-transform:matrix(0.196412,-0.003339,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196412,-0.003339,0.004249,0.249964,0,0);}
.m80_c00078{transform:matrix(0.196699,-0.006301,0.008004,0.249872,0,0);-ms-transform:matrix(0.196699,-0.006301,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196699,-0.006301,0.008004,0.249872,0,0);}
.m7a_c00078{transform:matrix(0.196739,-0.006302,0.008004,0.249872,0,0);-ms-transform:matrix(0.196739,-0.006302,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196739,-0.006302,0.008004,0.249872,0,0);}
.me2_c00078{transform:matrix(0.196999,-0.006310,0.008004,0.249872,0,0);-ms-transform:matrix(0.196999,-0.006310,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196999,-0.006310,0.008004,0.249872,0,0);}
.mb6_c00078{transform:matrix(0.197149,-0.006315,0.008004,0.249872,0,0);-ms-transform:matrix(0.197149,-0.006315,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197149,-0.006315,0.008004,0.249872,0,0);}
.m88_c00078{transform:matrix(0.197204,-0.006317,0.008004,0.249872,0,0);-ms-transform:matrix(0.197204,-0.006317,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197204,-0.006317,0.008004,0.249872,0,0);}
.m34_c00078{transform:matrix(0.197334,-0.006321,0.008004,0.249872,0,0);-ms-transform:matrix(0.197334,-0.006321,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197334,-0.006321,0.008004,0.249872,0,0);}
.me4_c00078{transform:matrix(0.197354,-0.006322,0.008004,0.249872,0,0);-ms-transform:matrix(0.197354,-0.006322,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197354,-0.006322,0.008004,0.249872,0,0);}
.m71_c00078{transform:matrix(0.197459,-0.006325,0.008004,0.249872,0,0);-ms-transform:matrix(0.197459,-0.006325,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197459,-0.006325,0.008004,0.249872,0,0);}
.mac_c00078{transform:matrix(0.197674,-0.006332,0.008004,0.249872,0,0);-ms-transform:matrix(0.197674,-0.006332,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197674,-0.006332,0.008004,0.249872,0,0);}
.m10_c00078{transform:matrix(0.197826,-0.003363,0.004249,0.249964,0,0);-ms-transform:matrix(0.197826,-0.003363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197826,-0.003363,0.004249,0.249964,0,0);}
.m2c_c00078{transform:matrix(0.197928,-0.006340,0.008004,0.249872,0,0);-ms-transform:matrix(0.197928,-0.006340,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197928,-0.006340,0.008004,0.249872,0,0);}
.m45_c00078{transform:matrix(0.199123,-0.006378,0.008004,0.249872,0,0);-ms-transform:matrix(0.199123,-0.006378,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199123,-0.006378,0.008004,0.249872,0,0);}
.m57_c00078{transform:matrix(0.199133,-0.006379,0.008004,0.249872,0,0);-ms-transform:matrix(0.199133,-0.006379,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199133,-0.006379,0.008004,0.249872,0,0);}
.m95_c00078{transform:matrix(0.199158,-0.006379,0.008004,0.249872,0,0);-ms-transform:matrix(0.199158,-0.006379,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199158,-0.006379,0.008004,0.249872,0,0);}
.m97_c00078{transform:matrix(0.199333,-0.006385,0.008004,0.249872,0,0);-ms-transform:matrix(0.199333,-0.006385,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199333,-0.006385,0.008004,0.249872,0,0);}
.mc7_c00078{transform:matrix(0.199373,-0.006386,0.008004,0.249872,0,0);-ms-transform:matrix(0.199373,-0.006386,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199373,-0.006386,0.008004,0.249872,0,0);}
.m21_c00078{transform:matrix(0.199872,-0.006402,0.008004,0.249872,0,0);-ms-transform:matrix(0.199872,-0.006402,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199872,-0.006402,0.008004,0.249872,0,0);}
.mc6_c00078{transform:matrix(0.200432,-0.006420,0.008004,0.249872,0,0);-ms-transform:matrix(0.200432,-0.006420,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200432,-0.006420,0.008004,0.249872,0,0);}
.m26_c00078{transform:matrix(0.200907,-0.006435,0.008004,0.249872,0,0);-ms-transform:matrix(0.200907,-0.006435,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200907,-0.006435,0.008004,0.249872,0,0);}
.m29_c00078{transform:matrix(0.200927,-0.006436,0.008004,0.249872,0,0);-ms-transform:matrix(0.200927,-0.006436,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200927,-0.006436,0.008004,0.249872,0,0);}
.mc9_c00078{transform:matrix(0.201062,-0.006440,0.008004,0.249872,0,0);-ms-transform:matrix(0.201062,-0.006440,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201062,-0.006440,0.008004,0.249872,0,0);}
.me8_c00078{transform:matrix(0.201482,-0.006454,0.008004,0.249872,0,0);-ms-transform:matrix(0.201482,-0.006454,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201482,-0.006454,0.008004,0.249872,0,0);}
.m92_c00078{transform:matrix(0.201607,-0.006458,0.008004,0.249872,0,0);-ms-transform:matrix(0.201607,-0.006458,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201607,-0.006458,0.008004,0.249872,0,0);}
.m1b_c00078{transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);-ms-transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);}
.m59_c00078{transform:matrix(0.201821,-0.006465,0.008004,0.249872,0,0);-ms-transform:matrix(0.201821,-0.006465,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201821,-0.006465,0.008004,0.249872,0,0);}
.m7c_c00078{transform:matrix(0.201916,-0.006468,0.008004,0.249872,0,0);-ms-transform:matrix(0.201916,-0.006468,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201916,-0.006468,0.008004,0.249872,0,0);}
.mc1_c00078{transform:matrix(0.201921,-0.006468,0.008004,0.249872,0,0);-ms-transform:matrix(0.201921,-0.006468,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201921,-0.006468,0.008004,0.249872,0,0);}
.mc4_c00078{transform:matrix(0.202021,-0.006471,0.008004,0.249872,0,0);-ms-transform:matrix(0.202021,-0.006471,0.008004,0.249872,0,0);-webkit-transform:matrix(0.202021,-0.006471,0.008004,0.249872,0,0);}
.ma2_c00078{transform:matrix(0.202051,-0.006472,0.008004,0.249872,0,0);-ms-transform:matrix(0.202051,-0.006472,0.008004,0.249872,0,0);-webkit-transform:matrix(0.202051,-0.006472,0.008004,0.249872,0,0);}
.mcb_c00078{transform:matrix(0.202291,-0.006480,0.008004,0.249872,0,0);-ms-transform:matrix(0.202291,-0.006480,0.008004,0.249872,0,0);-webkit-transform:matrix(0.202291,-0.006480,0.008004,0.249872,0,0);}
.m3f_c00078{transform:matrix(0.202586,-0.006489,0.008004,0.249872,0,0);-ms-transform:matrix(0.202586,-0.006489,0.008004,0.249872,0,0);-webkit-transform:matrix(0.202586,-0.006489,0.008004,0.249872,0,0);}
.mce_c00078{transform:matrix(0.202866,-0.006498,0.008004,0.249872,0,0);-ms-transform:matrix(0.202866,-0.006498,0.008004,0.249872,0,0);-webkit-transform:matrix(0.202866,-0.006498,0.008004,0.249872,0,0);}
.m53_c00078{transform:matrix(0.203965,-0.006533,0.008004,0.249872,0,0);-ms-transform:matrix(0.203965,-0.006533,0.008004,0.249872,0,0);-webkit-transform:matrix(0.203965,-0.006533,0.008004,0.249872,0,0);}
.m48_c00078{transform:matrix(0.204120,-0.006538,0.008004,0.249872,0,0);-ms-transform:matrix(0.204120,-0.006538,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204120,-0.006538,0.008004,0.249872,0,0);}
.mab_c00078{transform:matrix(0.204155,-0.006540,0.008004,0.249872,0,0);-ms-transform:matrix(0.204155,-0.006540,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204155,-0.006540,0.008004,0.249872,0,0);}
.m4b_c00078{transform:matrix(0.204280,-0.006544,0.008004,0.249872,0,0);-ms-transform:matrix(0.204280,-0.006544,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204280,-0.006544,0.008004,0.249872,0,0);}
.md3_c00078{transform:matrix(0.204300,-0.006544,0.008004,0.249872,0,0);-ms-transform:matrix(0.204300,-0.006544,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204300,-0.006544,0.008004,0.249872,0,0);}
.mb4_c00078{transform:matrix(0.204740,-0.006558,0.008004,0.249872,0,0);-ms-transform:matrix(0.204740,-0.006558,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204740,-0.006558,0.008004,0.249872,0,0);}
.m3_c00078{transform:matrix(0.204745,-0.003481,0.004249,0.249964,0,0);-ms-transform:matrix(0.204745,-0.003481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204745,-0.003481,0.004249,0.249964,0,0);}
.m81_c00078{transform:matrix(0.204840,-0.006561,0.008004,0.249872,0,0);-ms-transform:matrix(0.204840,-0.006561,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204840,-0.006561,0.008004,0.249872,0,0);}
.mcd_c00078{transform:matrix(0.205080,-0.006569,0.008004,0.249872,0,0);-ms-transform:matrix(0.205080,-0.006569,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205080,-0.006569,0.008004,0.249872,0,0);}
.m9f_c00078{transform:matrix(0.205395,-0.006579,0.008004,0.249872,0,0);-ms-transform:matrix(0.205395,-0.006579,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205395,-0.006579,0.008004,0.249872,0,0);}
.m3d_c00078{transform:matrix(0.205480,-0.006582,0.008004,0.249872,0,0);-ms-transform:matrix(0.205480,-0.006582,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205480,-0.006582,0.008004,0.249872,0,0);}
.m2b_c00078{transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);-ms-transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);}
.m96_c00078{transform:matrix(0.205744,-0.006590,0.008004,0.249872,0,0);-ms-transform:matrix(0.205744,-0.006590,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205744,-0.006590,0.008004,0.249872,0,0);}
.m9e_c00078{transform:matrix(0.205969,-0.006598,0.008004,0.249872,0,0);-ms-transform:matrix(0.205969,-0.006598,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205969,-0.006598,0.008004,0.249872,0,0);}
.md0_c00078{transform:matrix(0.206174,-0.006604,0.008004,0.249872,0,0);-ms-transform:matrix(0.206174,-0.006604,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206174,-0.006604,0.008004,0.249872,0,0);}
.m3c_c00078{transform:matrix(0.206309,-0.006609,0.008004,0.249872,0,0);-ms-transform:matrix(0.206309,-0.006609,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206309,-0.006609,0.008004,0.249872,0,0);}
.mc2_c00078{transform:matrix(0.206854,-0.006626,0.008004,0.249872,0,0);-ms-transform:matrix(0.206854,-0.006626,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206854,-0.006626,0.008004,0.249872,0,0);}
.m24_c00078{transform:matrix(0.206984,-0.006630,0.008004,0.249872,0,0);-ms-transform:matrix(0.206984,-0.006630,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206984,-0.006630,0.008004,0.249872,0,0);}
.m94_c00078{transform:matrix(0.208358,-0.006674,0.008004,0.249872,0,0);-ms-transform:matrix(0.208358,-0.006674,0.008004,0.249872,0,0);-webkit-transform:matrix(0.208358,-0.006674,0.008004,0.249872,0,0);}
.me6_c00078{transform:matrix(0.208733,-0.006686,0.008004,0.249872,0,0);-ms-transform:matrix(0.208733,-0.006686,0.008004,0.249872,0,0);-webkit-transform:matrix(0.208733,-0.006686,0.008004,0.249872,0,0);}
.m5b_c00078{transform:matrix(0.209183,-0.006701,0.008004,0.249872,0,0);-ms-transform:matrix(0.209183,-0.006701,0.008004,0.249872,0,0);-webkit-transform:matrix(0.209183,-0.006701,0.008004,0.249872,0,0);}
.m28_c00078{transform:matrix(0.209747,-0.006719,0.008004,0.249872,0,0);-ms-transform:matrix(0.209747,-0.006719,0.008004,0.249872,0,0);-webkit-transform:matrix(0.209747,-0.006719,0.008004,0.249872,0,0);}
.m7b_c00078{transform:matrix(0.209807,-0.006721,0.008004,0.249872,0,0);-ms-transform:matrix(0.209807,-0.006721,0.008004,0.249872,0,0);-webkit-transform:matrix(0.209807,-0.006721,0.008004,0.249872,0,0);}
.md7_c00078{transform:matrix(0.210007,-0.006727,0.008004,0.249872,0,0);-ms-transform:matrix(0.210007,-0.006727,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210007,-0.006727,0.008004,0.249872,0,0);}
.m1c_c00078{transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);-ms-transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);}
.md5_c00078{transform:matrix(0.211297,-0.006768,0.008004,0.249872,0,0);-ms-transform:matrix(0.211297,-0.006768,0.008004,0.249872,0,0);-webkit-transform:matrix(0.211297,-0.006768,0.008004,0.249872,0,0);}
.maa_c00078{transform:matrix(0.212191,-0.006797,0.008004,0.249872,0,0);-ms-transform:matrix(0.212191,-0.006797,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212191,-0.006797,0.008004,0.249872,0,0);}
.m16_c00078{transform:matrix(0.212504,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212504,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212504,-0.003613,0.004249,0.249964,0,0);}
.m1_c00078{transform:matrix(0.213919,-0.003637,0.004249,0.249964,0,0);-ms-transform:matrix(0.213919,-0.003637,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213919,-0.003637,0.004249,0.249964,0,0);}
.mc8_c00078{transform:matrix(0.214355,-0.006866,0.008004,0.249872,0,0);-ms-transform:matrix(0.214355,-0.006866,0.008004,0.249872,0,0);-webkit-transform:matrix(0.214355,-0.006866,0.008004,0.249872,0,0);}
.m65_c00078{transform:matrix(0.214645,-0.006876,0.008004,0.249872,0,0);-ms-transform:matrix(0.214645,-0.006876,0.008004,0.249872,0,0);-webkit-transform:matrix(0.214645,-0.006876,0.008004,0.249872,0,0);}
.ma9_c00078{transform:matrix(0.215619,-0.006907,0.008004,0.249872,0,0);-ms-transform:matrix(0.215619,-0.006907,0.008004,0.249872,0,0);-webkit-transform:matrix(0.215619,-0.006907,0.008004,0.249872,0,0);}
.ma1_c00078{transform:matrix(0.216359,-0.006930,0.008004,0.249872,0,0);-ms-transform:matrix(0.216359,-0.006930,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216359,-0.006930,0.008004,0.249872,0,0);}
.md_c00078{transform:matrix(0.216504,-0.003681,0.004249,0.249964,0,0);-ms-transform:matrix(0.216504,-0.003681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216504,-0.003681,0.004249,0.249964,0,0);}
.ma7_c00078{transform:matrix(0.216614,-0.006939,0.008004,0.249872,0,0);-ms-transform:matrix(0.216614,-0.006939,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216614,-0.006939,0.008004,0.249872,0,0);}
.m74_c00078{transform:matrix(0.216774,-0.006944,0.008004,0.249872,0,0);-ms-transform:matrix(0.216774,-0.006944,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216774,-0.006944,0.008004,0.249872,0,0);}
.md6_c00078{transform:matrix(0.217239,-0.006959,0.008004,0.249872,0,0);-ms-transform:matrix(0.217239,-0.006959,0.008004,0.249872,0,0);-webkit-transform:matrix(0.217239,-0.006959,0.008004,0.249872,0,0);}
.m90_c00078{transform:matrix(0.217339,-0.006962,0.008004,0.249872,0,0);-ms-transform:matrix(0.217339,-0.006962,0.008004,0.249872,0,0);-webkit-transform:matrix(0.217339,-0.006962,0.008004,0.249872,0,0);}
.m9b_c00078{transform:matrix(0.217953,-0.006981,0.008004,0.249872,0,0);-ms-transform:matrix(0.217953,-0.006981,0.008004,0.249872,0,0);-webkit-transform:matrix(0.217953,-0.006981,0.008004,0.249872,0,0);}
.med_c00078{transform:matrix(0.218303,-0.006993,0.008004,0.249872,0,0);-ms-transform:matrix(0.218303,-0.006993,0.008004,0.249872,0,0);-webkit-transform:matrix(0.218303,-0.006993,0.008004,0.249872,0,0);}
.mdd_c00078{transform:matrix(0.218943,-0.007013,0.008004,0.249872,0,0);-ms-transform:matrix(0.218943,-0.007013,0.008004,0.249872,0,0);-webkit-transform:matrix(0.218943,-0.007013,0.008004,0.249872,0,0);}
.md1_c00078{transform:matrix(0.219203,-0.007022,0.008004,0.249872,0,0);-ms-transform:matrix(0.219203,-0.007022,0.008004,0.249872,0,0);-webkit-transform:matrix(0.219203,-0.007022,0.008004,0.249872,0,0);}
.m85_c00078{transform:matrix(0.220447,-0.007061,0.008004,0.249872,0,0);-ms-transform:matrix(0.220447,-0.007061,0.008004,0.249872,0,0);-webkit-transform:matrix(0.220447,-0.007061,0.008004,0.249872,0,0);}
.m9a_c00078{transform:matrix(0.221761,-0.007103,0.008004,0.249872,0,0);-ms-transform:matrix(0.221761,-0.007103,0.008004,0.249872,0,0);-webkit-transform:matrix(0.221761,-0.007103,0.008004,0.249872,0,0);}
.m4d_c00078{transform:matrix(0.221811,-0.007105,0.008004,0.249872,0,0);-ms-transform:matrix(0.221811,-0.007105,0.008004,0.249872,0,0);-webkit-transform:matrix(0.221811,-0.007105,0.008004,0.249872,0,0);}
.mdc_c00078{transform:matrix(0.222491,-0.007127,0.008004,0.249872,0,0);-ms-transform:matrix(0.222491,-0.007127,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222491,-0.007127,0.008004,0.249872,0,0);}
.ma4_c00078{transform:matrix(0.224230,-0.007183,0.008004,0.249872,0,0);-ms-transform:matrix(0.224230,-0.007183,0.008004,0.249872,0,0);-webkit-transform:matrix(0.224230,-0.007183,0.008004,0.249872,0,0);}
.md2_c00078{transform:matrix(0.224320,-0.007185,0.008004,0.249872,0,0);-ms-transform:matrix(0.224320,-0.007185,0.008004,0.249872,0,0);-webkit-transform:matrix(0.224320,-0.007185,0.008004,0.249872,0,0);}
.m3a_c00078{transform:matrix(0.224845,-0.007202,0.008004,0.249872,0,0);-ms-transform:matrix(0.224845,-0.007202,0.008004,0.249872,0,0);-webkit-transform:matrix(0.224845,-0.007202,0.008004,0.249872,0,0);}
.m2a_c00078{transform:matrix(0.224940,-0.007205,0.008004,0.249872,0,0);-ms-transform:matrix(0.224940,-0.007205,0.008004,0.249872,0,0);-webkit-transform:matrix(0.224940,-0.007205,0.008004,0.249872,0,0);}
.m30_c00078{transform:matrix(0.225389,-0.007220,0.008004,0.249872,0,0);-ms-transform:matrix(0.225389,-0.007220,0.008004,0.249872,0,0);-webkit-transform:matrix(0.225389,-0.007220,0.008004,0.249872,0,0);}
.m6a_c00078{transform:matrix(0.226039,-0.007240,0.008004,0.249872,0,0);-ms-transform:matrix(0.226039,-0.007240,0.008004,0.249872,0,0);-webkit-transform:matrix(0.226039,-0.007240,0.008004,0.249872,0,0);}
.m69_c00078{transform:matrix(0.226459,-0.007254,0.008004,0.249872,0,0);-ms-transform:matrix(0.226459,-0.007254,0.008004,0.249872,0,0);-webkit-transform:matrix(0.226459,-0.007254,0.008004,0.249872,0,0);}
.md9_c00078{transform:matrix(0.227203,-0.007278,0.008004,0.249872,0,0);-ms-transform:matrix(0.227203,-0.007278,0.008004,0.249872,0,0);-webkit-transform:matrix(0.227203,-0.007278,0.008004,0.249872,0,0);}
.m4c_c00078{transform:matrix(0.229922,-0.007365,0.008004,0.249872,0,0);-ms-transform:matrix(0.229922,-0.007365,0.008004,0.249872,0,0);-webkit-transform:matrix(0.229922,-0.007365,0.008004,0.249872,0,0);}
.m8f_c00078{transform:matrix(0.231236,-0.007407,0.008004,0.249872,0,0);-ms-transform:matrix(0.231236,-0.007407,0.008004,0.249872,0,0);-webkit-transform:matrix(0.231236,-0.007407,0.008004,0.249872,0,0);}
.m68_c00078{transform:matrix(0.231866,-0.007427,0.008004,0.249872,0,0);-ms-transform:matrix(0.231866,-0.007427,0.008004,0.249872,0,0);-webkit-transform:matrix(0.231866,-0.007427,0.008004,0.249872,0,0);}
.m91_c00078{transform:matrix(0.235524,-0.007544,0.008004,0.249872,0,0);-ms-transform:matrix(0.235524,-0.007544,0.008004,0.249872,0,0);-webkit-transform:matrix(0.235524,-0.007544,0.008004,0.249872,0,0);}
.mad_c00078{transform:matrix(0.236354,-0.007571,0.008004,0.249872,0,0);-ms-transform:matrix(0.236354,-0.007571,0.008004,0.249872,0,0);-webkit-transform:matrix(0.236354,-0.007571,0.008004,0.249872,0,0);}
.m4e_c00078{transform:matrix(0.237343,-0.007603,0.008004,0.249872,0,0);-ms-transform:matrix(0.237343,-0.007603,0.008004,0.249872,0,0);-webkit-transform:matrix(0.237343,-0.007603,0.008004,0.249872,0,0);}
.m58_c00078{transform:matrix(0.238373,-0.007636,0.008004,0.249872,0,0);-ms-transform:matrix(0.238373,-0.007636,0.008004,0.249872,0,0);-webkit-transform:matrix(0.238373,-0.007636,0.008004,0.249872,0,0);}
.m49_c00078{transform:matrix(0.240477,-0.007703,0.008004,0.249872,0,0);-ms-transform:matrix(0.240477,-0.007703,0.008004,0.249872,0,0);-webkit-transform:matrix(0.240477,-0.007703,0.008004,0.249872,0,0);}
.mbc_c00078{transform:matrix(0.250372,-0.008020,0.008004,0.249872,0,0);-ms-transform:matrix(0.250372,-0.008020,0.008004,0.249872,0,0);-webkit-transform:matrix(0.250372,-0.008020,0.008004,0.249872,0,0);}
.m4a_c00078{transform:matrix(0.254200,-0.008143,0.008004,0.249872,0,0);-ms-transform:matrix(0.254200,-0.008143,0.008004,0.249872,0,0);-webkit-transform:matrix(0.254200,-0.008143,0.008004,0.249872,0,0);}
.m1d_c00078{transform:matrix(0.257133,-0.004371,0.004249,0.249964,0,0);-ms-transform:matrix(0.257133,-0.004371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257133,-0.004371,0.004249,0.249964,0,0);}
.m4f_c00078{transform:matrix(0.262320,-0.008403,0.008004,0.249872,0,0);-ms-transform:matrix(0.262320,-0.008403,0.008004,0.249872,0,0);-webkit-transform:matrix(0.262320,-0.008403,0.008004,0.249872,0,0);}
.m50_c00078{transform:matrix(0.268562,-0.008603,0.008004,0.249872,0,0);-ms-transform:matrix(0.268562,-0.008603,0.008004,0.249872,0,0);-webkit-transform:matrix(0.268562,-0.008603,0.008004,0.249872,0,0);}
.m66_c00078{transform:matrix(0.273260,-0.008753,0.008004,0.249872,0,0);-ms-transform:matrix(0.273260,-0.008753,0.008004,0.249872,0,0);-webkit-transform:matrix(0.273260,-0.008753,0.008004,0.249872,0,0);}
.mbd_c00078{transform:matrix(0.284179,-0.009103,0.008004,0.249872,0,0);-ms-transform:matrix(0.284179,-0.009103,0.008004,0.249872,0,0);-webkit-transform:matrix(0.284179,-0.009103,0.008004,0.249872,0,0);}
.mb8_c00078{transform:matrix(0.284469,-0.009112,0.008004,0.249872,0,0);-ms-transform:matrix(0.284469,-0.009112,0.008004,0.249872,0,0);-webkit-transform:matrix(0.284469,-0.009112,0.008004,0.249872,0,0);}
.mbb_c00078{transform:matrix(0.287867,-0.009221,0.008004,0.249872,0,0);-ms-transform:matrix(0.287867,-0.009221,0.008004,0.249872,0,0);-webkit-transform:matrix(0.287867,-0.009221,0.008004,0.249872,0,0);}
.mb9_c00078{transform:matrix(0.291675,-0.009343,0.008004,0.249872,0,0);-ms-transform:matrix(0.291675,-0.009343,0.008004,0.249872,0,0);-webkit-transform:matrix(0.291675,-0.009343,0.008004,0.249872,0,0);}
.mbe_c00078{transform:matrix(0.306393,-0.009814,0.008004,0.249872,0,0);-ms-transform:matrix(0.306393,-0.009814,0.008004,0.249872,0,0);-webkit-transform:matrix(0.306393,-0.009814,0.008004,0.249872,0,0);}
.m6d_c00078{transform:matrix(0.315593,-0.010109,0.008004,0.249872,0,0);-ms-transform:matrix(0.315593,-0.010109,0.008004,0.249872,0,0);-webkit-transform:matrix(0.315593,-0.010109,0.008004,0.249872,0,0);}
.mba_c00078{transform:matrix(0.326782,-0.010468,0.008004,0.249872,0,0);-ms-transform:matrix(0.326782,-0.010468,0.008004,0.249872,0,0);-webkit-transform:matrix(0.326782,-0.010468,0.008004,0.249872,0,0);}
.m6c_c00078{transform:matrix(0.582146,-0.018647,0.008004,0.249872,0,0);-ms-transform:matrix(0.582146,-0.018647,0.008004,0.249872,0,0);-webkit-transform:matrix(0.582146,-0.018647,0.008004,0.249872,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:0.000000px;}
.fc0_c00078{color:transparent;}
.fs10_c00078{font-size:43.029008px;}
.fsa_c00078{font-size:54.573376px;}
.fsd_c00078{font-size:58.771328px;}
.fs11_c00078{font-size:59.820816px;}
.fs5_c00078{font-size:60.870304px;}
.fsf_c00078{font-size:61.919792px;}
.fs3_c00078{font-size:61.958951px;}
.fs6_c00078{font-size:62.969280px;}
.fsc_c00078{font-size:64.018768px;}
.fs8_c00078{font-size:65.068256px;}
.fs9_c00078{font-size:66.117744px;}
.fs1_c00078{font-size:66.159558px;}
.fse_c00078{font-size:67.167232px;}
.fs2_c00078{font-size:67.209710px;}
.fs4_c00078{font-size:68.216720px;}
.fs0_c00078{font-size:68.259861px;}
.fs7_c00078{font-size:69.266208px;}
.fsb_c00078{font-size:72.414672px;}
.y0_c00078{bottom:0.000000px;}
.yee_c00078{bottom:26.407531px;}
.yef_c00078{bottom:26.846346px;}
.yf0_c00078{bottom:27.248440px;}
.yf1_c00078{bottom:27.879768px;}
.yf2_c00078{bottom:28.103314px;}
.yf3_c00078{bottom:28.670947px;}
.yf4_c00078{bottom:28.936020px;}
.yf5_c00078{bottom:29.795337px;}
.yf6_c00078{bottom:30.268637px;}
.ye6_c00078{bottom:44.487204px;}
.ye7_c00078{bottom:45.013465px;}
.ye8_c00078{bottom:45.445516px;}
.ye9_c00078{bottom:46.399684px;}
.yea_c00078{bottom:46.857328px;}
.yeb_c00078{bottom:47.069641px;}
.yec_c00078{bottom:47.406841px;}
.yed_c00078{bottom:48.008308px;}
.yde_c00078{bottom:59.063992px;}
.ydf_c00078{bottom:59.657760px;}
.ye0_c00078{bottom:60.010519px;}
.ye1_c00078{bottom:60.905656px;}
.ye2_c00078{bottom:61.836118px;}
.ye3_c00078{bottom:62.317174px;}
.ye4_c00078{bottom:63.194251px;}
.ye5_c00078{bottom:64.602420px;}
.yd5_c00078{bottom:81.994863px;}
.yd6_c00078{bottom:81.996634px;}
.yd7_c00078{bottom:81.998025px;}
.yd8_c00078{bottom:81.999069px;}
.yda_c00078{bottom:82.000023px;}
.yd9_c00078{bottom:82.000087px;}
.ydb_c00078{bottom:82.001538px;}
.ydc_c00078{bottom:82.002577px;}
.ydd_c00078{bottom:82.003462px;}
.ycd_c00078{bottom:96.955512px;}
.yce_c00078{bottom:96.957314px;}
.ycf_c00078{bottom:96.959282px;}
.yd0_c00078{bottom:96.959333px;}
.yd1_c00078{bottom:96.961613px;}
.yd2_c00078{bottom:96.962580px;}
.yd3_c00078{bottom:96.962631px;}
.yd4_c00078{bottom:96.963761px;}
.yc6_c00078{bottom:114.383693px;}
.yc7_c00078{bottom:115.170156px;}
.yc8_c00078{bottom:115.515060px;}
.yc9_c00078{bottom:116.045802px;}
.yca_c00078{bottom:117.012828px;}
.ycb_c00078{bottom:117.536444px;}
.ycc_c00078{bottom:117.945987px;}
.ybf_c00078{bottom:131.388867px;}
.yc0_c00078{bottom:132.515001px;}
.yc1_c00078{bottom:132.961796px;}
.yc2_c00078{bottom:133.877660px;}
.yc3_c00078{bottom:134.221746px;}
.yc4_c00078{bottom:134.597192px;}
.yc5_c00078{bottom:135.483185px;}
.yb6_c00078{bottom:147.043578px;}
.yb7_c00078{bottom:147.513489px;}
.yb8_c00078{bottom:147.756078px;}
.yb9_c00078{bottom:148.225989px;}
.yba_c00078{bottom:148.504121px;}
.ybb_c00078{bottom:148.842663px;}
.ybc_c00078{bottom:149.767362px;}
.ybd_c00078{bottom:149.972003px;}
.ybe_c00078{bottom:150.465987px;}
.yae_c00078{bottom:160.815987px;}
.yaf_c00078{bottom:162.655170px;}
.yb0_c00078{bottom:162.985115px;}
.yb1_c00078{bottom:163.596128px;}
.yb2_c00078{bottom:165.336914px;}
.yb3_c00078{bottom:167.202012px;}
.yb4_c00078{bottom:167.554053px;}
.yb5_c00078{bottom:168.126249px;}
.ya5_c00078{bottom:181.856106px;}
.ya6_c00078{bottom:182.261552px;}
.ya7_c00078{bottom:182.619842px;}
.ya8_c00078{bottom:183.060147px;}
.ya9_c00078{bottom:183.463454px;}
.yaa_c00078{bottom:183.671903px;}
.yab_c00078{bottom:184.204556px;}
.yac_c00078{bottom:184.474056px;}
.yad_c00078{bottom:185.207072px;}
.y9d_c00078{bottom:198.048321px;}
.y9e_c00078{bottom:198.683313px;}
.y9f_c00078{bottom:199.118549px;}
.ya0_c00078{bottom:199.902314px;}
.ya1_c00078{bottom:200.293702px;}
.ya2_c00078{bottom:200.570094px;}
.ya3_c00078{bottom:201.702618px;}
.ya4_c00078{bottom:201.986109px;}
.y95_c00078{bottom:211.818290px;}
.y96_c00078{bottom:212.658630px;}
.y97_c00078{bottom:213.844109px;}
.y98_c00078{bottom:214.949856px;}
.y99_c00078{bottom:215.955083px;}
.y9a_c00078{bottom:217.336478px;}
.y9b_c00078{bottom:217.816554px;}
.y9c_c00078{bottom:218.419035px;}
.y8e_c00078{bottom:230.165402px;}
.y8f_c00078{bottom:230.601903px;}
.y90_c00078{bottom:231.470255px;}
.y91_c00078{bottom:232.297530px;}
.y92_c00078{bottom:232.730741px;}
.y93_c00078{bottom:233.712666px;}
.y94_c00078{bottom:234.408068px;}
.y86_c00078{bottom:247.706781px;}
.y87_c00078{bottom:248.195336px;}
.y88_c00078{bottom:248.775284px;}
.y89_c00078{bottom:249.056276px;}
.y8a_c00078{bottom:249.607176px;}
.y8b_c00078{bottom:250.779356px;}
.y8c_c00078{bottom:251.698620px;}
.y8d_c00078{bottom:253.140852px;}
.y7e_c00078{bottom:264.976260px;}
.y7f_c00078{bottom:265.216014px;}
.y80_c00078{bottom:265.473471px;}
.y81_c00078{bottom:266.542481px;}
.y82_c00078{bottom:267.035883px;}
.y83_c00078{bottom:268.106946px;}
.y84_c00078{bottom:268.720418px;}
.y85_c00078{bottom:269.752187px;}
.y77_c00078{bottom:282.250803px;}
.y78_c00078{bottom:282.533368px;}
.y79_c00078{bottom:282.994929px;}
.y7a_c00078{bottom:284.361294px;}
.y7b_c00078{bottom:285.361194px;}
.y7c_c00078{bottom:286.101991px;}
.y7d_c00078{bottom:286.569339px;}
.y6f_c00078{bottom:299.523699px;}
.y70_c00078{bottom:300.109317px;}
.y71_c00078{bottom:300.323521px;}
.y72_c00078{bottom:301.266205px;}
.y73_c00078{bottom:302.807980px;}
.y74_c00078{bottom:303.398330px;}
.y75_c00078{bottom:303.843054px;}
.y76_c00078{bottom:304.461954px;}
.y68_c00078{bottom:315.716874px;}
.y69_c00078{bottom:318.306615px;}
.y6a_c00078{bottom:318.676720px;}
.y6b_c00078{bottom:319.095328px;}
.y6c_c00078{bottom:320.789686px;}
.y6d_c00078{bottom:322.117961px;}
.y6e_c00078{bottom:323.073201px;}
.y61_c00078{bottom:331.369764px;}
.y62_c00078{bottom:333.087168px;}
.y63_c00078{bottom:333.663730px;}
.y64_c00078{bottom:334.454373px;}
.y65_c00078{bottom:334.888443px;}
.y66_c00078{bottom:335.779080px;}
.y67_c00078{bottom:337.538972px;}
.y5b_c00078{bottom:347.026893px;}
.y5c_c00078{bottom:347.644610px;}
.y5d_c00078{bottom:349.329054px;}
.y5e_c00078{bottom:351.717333px;}
.y5f_c00078{bottom:352.545617px;}
.y60_c00078{bottom:353.258657px;}
.y53_c00078{bottom:362.946468px;}
.y54_c00078{bottom:363.655310px;}
.y55_c00078{bottom:364.108822px;}
.y56_c00078{bottom:365.724642px;}
.y57_c00078{bottom:366.675510px;}
.y58_c00078{bottom:367.396128px;}
.y59_c00078{bottom:368.233311px;}
.y5a_c00078{bottom:368.597690px;}
.y4b_c00078{bottom:382.642391px;}
.y4c_c00078{bottom:383.022294px;}
.y4d_c00078{bottom:384.424476px;}
.y4e_c00078{bottom:384.857062px;}
.y4f_c00078{bottom:385.394274px;}
.y50_c00078{bottom:386.276879px;}
.y51_c00078{bottom:386.728433px;}
.y52_c00078{bottom:387.017632px;}
.y43_c00078{bottom:399.915972px;}
.y44_c00078{bottom:400.610343px;}
.y45_c00078{bottom:400.989258px;}
.y46_c00078{bottom:401.639510px;}
.y47_c00078{bottom:402.721922px;}
.y48_c00078{bottom:404.324781px;}
.y49_c00078{bottom:404.776319px;}
.y4a_c00078{bottom:405.213797px;}
.y3c_c00078{bottom:416.106146px;}
.y3d_c00078{bottom:417.256782px;}
.y3e_c00078{bottom:417.608784px;}
.y3f_c00078{bottom:418.420662px;}
.y40_c00078{bottom:420.143022px;}
.y41_c00078{bottom:420.469487px;}
.y42_c00078{bottom:421.778437px;}
.y34_c00078{bottom:430.413422px;}
.y35_c00078{bottom:430.662936px;}
.y36_c00078{bottom:432.476904px;}
.y37_c00078{bottom:432.875462px;}
.y38_c00078{bottom:433.454786px;}
.y39_c00078{bottom:434.630127px;}
.y3a_c00078{bottom:436.202394px;}
.y3b_c00078{bottom:437.236613px;}
.y2d_c00078{bottom:447.684584px;}
.y2e_c00078{bottom:448.117352px;}
.y2f_c00078{bottom:449.499179px;}
.y30_c00078{bottom:450.442622px;}
.y31_c00078{bottom:451.023603px;}
.y32_c00078{bottom:452.722445px;}
.y33_c00078{bottom:453.256358px;}
.y26_c00078{bottom:465.765581px;}
.y27_c00078{bottom:466.814190px;}
.y28_c00078{bottom:468.267225px;}
.y29_c00078{bottom:468.682755px;}
.y2a_c00078{bottom:469.739504px;}
.y2b_c00078{bottom:470.149572px;}
.y2c_c00078{bottom:471.950892px;}
.y1f_c00078{bottom:481.693500px;}
.y20_c00078{bottom:482.389644px;}
.y21_c00078{bottom:483.464604px;}
.y22_c00078{bottom:484.277724px;}
.y23_c00078{bottom:486.005676px;}
.y24_c00078{bottom:487.933644px;}
.y25_c00078{bottom:488.747868px;}
.y16_c00078{bottom:500.578002px;}
.y17_c00078{bottom:501.112508px;}
.y18_c00078{bottom:501.371567px;}
.y19_c00078{bottom:501.877224px;}
.y1a_c00078{bottom:502.484415px;}
.y1b_c00078{bottom:502.847303px;}
.y1c_c00078{bottom:504.038162px;}
.y1d_c00078{bottom:504.447050px;}
.y1e_c00078{bottom:505.195583px;}
.yf_c00078{bottom:517.323221px;}
.y10_c00078{bottom:518.875185px;}
.y11_c00078{bottom:519.633114px;}
.y12_c00078{bottom:519.950061px;}
.y13_c00078{bottom:520.521147px;}
.y14_c00078{bottom:521.545803px;}
.y15_c00078{bottom:522.337671px;}
.y6_c00078{bottom:534.877610px;}
.y7_c00078{bottom:535.423722px;}
.y8_c00078{bottom:536.160235px;}
.y9_c00078{bottom:537.601678px;}
.ya_c00078{bottom:538.421283px;}
.yb_c00078{bottom:540.151883px;}
.yc_c00078{bottom:540.669773px;}
.yd_c00078{bottom:541.439732px;}
.ye_c00078{bottom:541.884849px;}
.y1_c00078{bottom:551.613000px;}
.y2_c00078{bottom:552.091610px;}
.y3_c00078{bottom:552.761724px;}
.y4_c00078{bottom:553.811993px;}
.y5_c00078{bottom:556.003819px;}
.h12_c00078{height:43.029008px;}
.hc_c00078{height:54.573376px;}
.hf_c00078{height:58.771328px;}
.h13_c00078{height:59.820816px;}
.h7_c00078{height:60.870304px;}
.h11_c00078{height:61.919792px;}
.h5_c00078{height:61.958951px;}
.h8_c00078{height:62.969280px;}
.he_c00078{height:64.018768px;}
.ha_c00078{height:65.068256px;}
.hb_c00078{height:66.117744px;}
.h3_c00078{height:66.159558px;}
.h10_c00078{height:67.167232px;}
.h4_c00078{height:67.209710px;}
.h6_c00078{height:68.216720px;}
.h2_c00078{height:68.259861px;}
.h9_c00078{height:69.266208px;}
.hd_c00078{height:72.414672px;}
.h1_c00078{height:612.000000px;}
.h0_c00078{height:612.300000px;}
.w0_c00078{width:368.820000px;}
.w1_c00078{width:369.000000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:22.003500px;}
.x1f_c00078{left:23.021601px;}
.x28_c00078{left:24.074500px;}
.x2f_c00078{left:25.107306px;}
.x4e_c00078{left:26.153383px;}
.x57_c00078{left:27.990417px;}
.x59_c00078{left:29.350323px;}
.x63_c00078{left:30.362254px;}
.x69_c00078{left:31.496871px;}
.x29_c00078{left:33.315739px;}
.x78_c00078{left:34.999466px;}
.x7c_c00078{left:36.132108px;}
.x54_c00078{left:39.909873px;}
.x4f_c00078{left:41.015704px;}
.x6_c00078{left:42.150459px;}
.x19_c00078{left:46.593000px;}
.x12_c00078{left:48.016776px;}
.x2_c00078{left:50.157000px;}
.x48_c00078{left:53.753544px;}
.x5a_c00078{left:55.012483px;}
.x34_c00078{left:56.891451px;}
.x13_c00078{left:60.342934px;}
.x49_c00078{left:63.952938px;}
.x50_c00078{left:65.306028px;}
.x20_c00078{left:66.669105px;}
.x1a_c00078{left:68.325745px;}
.x7_c00078{left:69.411318px;}
.x6a_c00078{left:70.611798px;}
.x79_c00078{left:72.455046px;}
.x35_c00078{left:74.059243px;}
.x3c_c00078{left:75.588607px;}
.x30_c00078{left:82.523386px;}
.x14_c00078{left:84.438803px;}
.x3_c00078{left:89.575500px;}
.x6b_c00078{left:90.829034px;}
.x64_c00078{left:93.775878px;}
.x7d_c00078{left:96.007671px;}
.x23_c00078{left:99.072537px;}
.x2a_c00078{left:100.435315px;}
.x1b_c00078{left:101.884653px;}
.x36_c00078{left:103.584654px;}
.x5b_c00078{left:105.957444px;}
.x4a_c00078{left:108.742363px;}
.x15_c00078{left:113.359839px;}
.x2b_c00078{left:115.172418px;}
.x71_c00078{left:119.981483px;}
.x8_c00078{left:122.781240px;}
.x45_c00078{left:124.897942px;}
.x76_c00078{left:126.239846px;}
.x1c_c00078{left:127.269243px;}
.x41_c00078{left:129.525651px;}
.x16_c00078{left:130.646166px;}
.x73_c00078{left:134.150396px;}
.xe_c00078{left:136.607726px;}
.x24_c00078{left:138.359800px;}
.x31_c00078{left:140.587059px;}
.x21_c00078{left:144.390697px;}
.x3d_c00078{left:145.747606px;}
.x4_c00078{left:151.356000px;}
.x9_c00078{left:153.164589px;}
.x46_c00078{left:155.186937px;}
.x7e_c00078{left:156.974814px;}
.x5d_c00078{left:160.076967px;}
.xf_c00078{left:161.463201px;}
.x25_c00078{left:162.538296px;}
.x65_c00078{left:163.944612px;}
.x42_c00078{left:165.400723px;}
.x7a_c00078{left:171.270617px;}
.x77_c00078{left:172.708205px;}
.x74_c00078{left:178.948986px;}
.x2c_c00078{left:180.112839px;}
.x1d_c00078{left:181.213744px;}
.x43_c00078{left:185.133313px;}
.x17_c00078{left:187.369315px;}
.x22_c00078{left:188.385949px;}
.x51_c00078{left:189.659845px;}
.x39_c00078{left:196.358831px;}
.x7f_c00078{left:197.454645px;}
.x55_c00078{left:200.217784px;}
.x5e_c00078{left:201.901815px;}
.x67_c00078{left:204.589745px;}
.x10_c00078{left:206.026662px;}
.x40_c00078{left:208.929828px;}
.x4b_c00078{left:210.145606px;}
.xa_c00078{left:217.277201px;}
.x3e_c00078{left:218.346884px;}
.x47_c00078{left:220.258293px;}
.x37_c00078{left:225.487692px;}
.x32_c00078{left:226.575541px;}
.x52_c00078{left:228.568090px;}
.x4c_c00078{left:231.287890px;}
.x26_c00078{left:233.228649px;}
.x6f_c00078{left:234.376647px;}
.xb_c00078{left:236.443937px;}
.x2d_c00078{left:238.281933px;}
.x11_c00078{left:240.427143px;}
.x18_c00078{left:242.478567px;}
.x38_c00078{left:245.999742px;}
.x66_c00078{left:247.896342px;}
.x3a_c00078{left:251.401437px;}
.x53_c00078{left:253.132735px;}
.x27_c00078{left:255.422602px;}
.x6c_c00078{left:258.141797px;}
.x5f_c00078{left:259.357005px;}
.x4d_c00078{left:260.724303px;}
.xc_c00078{left:264.966092px;}
.x1e_c00078{left:266.821551px;}
.x72_c00078{left:269.085473px;}
.x3f_c00078{left:270.515701px;}
.x6d_c00078{left:275.160668px;}
.x2e_c00078{left:276.516262px;}
.x5c_c00078{left:278.499660px;}
.x5_c00078{left:280.287000px;}
.xd_c00078{left:281.440787px;}
.x7b_c00078{left:285.926960px;}
.x61_c00078{left:290.296551px;}
.x56_c00078{left:291.431868px;}
.x75_c00078{left:295.801800px;}
.x3b_c00078{left:297.566865px;}
.x60_c00078{left:304.438957px;}
.x44_c00078{left:305.483425px;}
.x33_c00078{left:308.210700px;}
.x62_c00078{left:310.479475px;}
.x68_c00078{left:311.759081px;}
.x58_c00078{left:313.491001px;}
.x6e_c00078{left:316.197872px;}
.x70_c00078{left:324.285992px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
.fs10_c00078{font-size:38.248007pt;}
.fsa_c00078{font-size:48.509668pt;}
.fsd_c00078{font-size:52.241180pt;}
.fs11_c00078{font-size:53.174059pt;}
.fs5_c00078{font-size:54.106937pt;}
.fsf_c00078{font-size:55.039815pt;}
.fs3_c00078{font-size:55.074623pt;}
.fs6_c00078{font-size:55.972693pt;}
.fsc_c00078{font-size:56.905572pt;}
.fs8_c00078{font-size:57.838450pt;}
.fs9_c00078{font-size:58.771328pt;}
.fs1_c00078{font-size:58.808496pt;}
.fse_c00078{font-size:59.704206pt;}
.fs2_c00078{font-size:59.741964pt;}
.fs4_c00078{font-size:60.637084pt;}
.fs0_c00078{font-size:60.675432pt;}
.fs7_c00078{font-size:61.569963pt;}
.fsb_c00078{font-size:64.368597pt;}
.y0_c00078{bottom:0.000000pt;}
.yee_c00078{bottom:23.473361pt;}
.yef_c00078{bottom:23.863419pt;}
.yf0_c00078{bottom:24.220836pt;}
.yf1_c00078{bottom:24.782016pt;}
.yf2_c00078{bottom:24.980724pt;}
.yf3_c00078{bottom:25.485287pt;}
.yf4_c00078{bottom:25.720907pt;}
.yf5_c00078{bottom:26.484744pt;}
.yf6_c00078{bottom:26.905455pt;}
.ye6_c00078{bottom:39.544181pt;}
.ye7_c00078{bottom:40.011969pt;}
.ye8_c00078{bottom:40.396015pt;}
.ye9_c00078{bottom:41.244164pt;}
.yea_c00078{bottom:41.650959pt;}
.yeb_c00078{bottom:41.839681pt;}
.yec_c00078{bottom:42.139415pt;}
.yed_c00078{bottom:42.674052pt;}
.yde_c00078{bottom:52.501327pt;}
.ydf_c00078{bottom:53.029120pt;}
.ye0_c00078{bottom:53.342684pt;}
.ye1_c00078{bottom:54.138361pt;}
.ye2_c00078{bottom:54.965439pt;}
.ye3_c00078{bottom:55.393044pt;}
.ye4_c00078{bottom:56.172668pt;}
.ye5_c00078{bottom:57.424373pt;}
.yd5_c00078{bottom:72.884323pt;}
.yd6_c00078{bottom:72.885897pt;}
.yd7_c00078{bottom:72.887133pt;}
.yd8_c00078{bottom:72.888061pt;}
.yda_c00078{bottom:72.888909pt;}
.yd9_c00078{bottom:72.888967pt;}
.ydb_c00078{bottom:72.890256pt;}
.ydc_c00078{bottom:72.891180pt;}
.ydd_c00078{bottom:72.891967pt;}
.ycd_c00078{bottom:86.182677pt;}
.yce_c00078{bottom:86.184279pt;}
.ycf_c00078{bottom:86.186028pt;}
.yd0_c00078{bottom:86.186073pt;}
.yd1_c00078{bottom:86.188100pt;}
.yd2_c00078{bottom:86.188960pt;}
.yd3_c00078{bottom:86.189005pt;}
.yd4_c00078{bottom:86.190009pt;}
.yc6_c00078{bottom:101.674393pt;}
.yc7_c00078{bottom:102.373472pt;}
.yc8_c00078{bottom:102.680053pt;}
.yc9_c00078{bottom:103.151824pt;}
.yca_c00078{bottom:104.011403pt;}
.ycb_c00078{bottom:104.476839pt;}
.ycc_c00078{bottom:104.840877pt;}
.ybf_c00078{bottom:116.790104pt;}
.yc0_c00078{bottom:117.791112pt;}
.yc1_c00078{bottom:118.188263pt;}
.yc2_c00078{bottom:119.002364pt;}
.yc3_c00078{bottom:119.308219pt;}
.yc4_c00078{bottom:119.641948pt;}
.yc5_c00078{bottom:120.429497pt;}
.yb6_c00078{bottom:130.705403pt;}
.yb7_c00078{bottom:131.123101pt;}
.yb8_c00078{bottom:131.338736pt;}
.yb9_c00078{bottom:131.756435pt;}
.yba_c00078{bottom:132.003663pt;}
.ybb_c00078{bottom:132.304589pt;}
.ybc_c00078{bottom:133.126544pt;}
.ybd_c00078{bottom:133.308447pt;}
.ybe_c00078{bottom:133.747544pt;}
.yae_c00078{bottom:142.947544pt;}
.yaf_c00078{bottom:144.582373pt;}
.yb0_c00078{bottom:144.875657pt;}
.yb1_c00078{bottom:145.418780pt;}
.yb2_c00078{bottom:146.966145pt;}
.yb3_c00078{bottom:148.624011pt;}
.yb4_c00078{bottom:148.936936pt;}
.yb5_c00078{bottom:149.445555pt;}
.ya5_c00078{bottom:161.649872pt;}
.ya6_c00078{bottom:162.010268pt;}
.ya7_c00078{bottom:162.328748pt;}
.ya8_c00078{bottom:162.720131pt;}
.ya9_c00078{bottom:163.078625pt;}
.yaa_c00078{bottom:163.263913pt;}
.yab_c00078{bottom:163.737383pt;}
.yac_c00078{bottom:163.976939pt;}
.yad_c00078{bottom:164.628508pt;}
.y9d_c00078{bottom:176.042952pt;}
.y9e_c00078{bottom:176.607389pt;}
.y9f_c00078{bottom:176.994265pt;}
.ya0_c00078{bottom:177.690945pt;}
.ya1_c00078{bottom:178.038847pt;}
.ya2_c00078{bottom:178.284528pt;}
.ya3_c00078{bottom:179.291216pt;}
.ya4_c00078{bottom:179.543208pt;}
.y95_c00078{bottom:188.282924pt;}
.y96_c00078{bottom:189.029893pt;}
.y97_c00078{bottom:190.083652pt;}
.y98_c00078{bottom:191.066539pt;}
.y99_c00078{bottom:191.960073pt;}
.y9a_c00078{bottom:193.187980pt;}
.y9b_c00078{bottom:193.614715pt;}
.y9c_c00078{bottom:194.150253pt;}
.y8e_c00078{bottom:204.591468pt;}
.y8f_c00078{bottom:204.979469pt;}
.y90_c00078{bottom:205.751337pt;}
.y91_c00078{bottom:206.486693pt;}
.y92_c00078{bottom:206.871769pt;}
.y93_c00078{bottom:207.744592pt;}
.y94_c00078{bottom:208.362727pt;}
.y86_c00078{bottom:220.183805pt;}
.y87_c00078{bottom:220.618076pt;}
.y88_c00078{bottom:221.133585pt;}
.y89_c00078{bottom:221.383356pt;}
.y8a_c00078{bottom:221.873045pt;}
.y8b_c00078{bottom:222.914983pt;}
.y8c_c00078{bottom:223.732107pt;}
.y8d_c00078{bottom:225.014091pt;}
.y7e_c00078{bottom:235.534453pt;}
.y7f_c00078{bottom:235.747568pt;}
.y80_c00078{bottom:235.976419pt;}
.y81_c00078{bottom:236.926649pt;}
.y82_c00078{bottom:237.365229pt;}
.y83_c00078{bottom:238.317285pt;}
.y84_c00078{bottom:238.862593pt;}
.y85_c00078{bottom:239.779721pt;}
.y77_c00078{bottom:250.889603pt;}
.y78_c00078{bottom:251.140772pt;}
.y79_c00078{bottom:251.551048pt;}
.y7a_c00078{bottom:252.765595pt;}
.y7b_c00078{bottom:253.654395pt;}
.y7c_c00078{bottom:254.312881pt;}
.y7d_c00078{bottom:254.728301pt;}
.y6f_c00078{bottom:266.243288pt;}
.y70_c00078{bottom:266.763837pt;}
.y71_c00078{bottom:266.954241pt;}
.y72_c00078{bottom:267.792183pt;}
.y73_c00078{bottom:269.162649pt;}
.y74_c00078{bottom:269.687404pt;}
.y75_c00078{bottom:270.082715pt;}
.y76_c00078{bottom:270.632848pt;}
.y68_c00078{bottom:280.637221pt;}
.y69_c00078{bottom:282.939213pt;}
.y6a_c00078{bottom:283.268196pt;}
.y6b_c00078{bottom:283.640292pt;}
.y6c_c00078{bottom:285.146388pt;}
.y6d_c00078{bottom:286.327076pt;}
.y6e_c00078{bottom:287.176179pt;}
.y61_c00078{bottom:294.550901pt;}
.y62_c00078{bottom:296.077483pt;}
.y63_c00078{bottom:296.589983pt;}
.y64_c00078{bottom:297.292776pt;}
.y65_c00078{bottom:297.678616pt;}
.y66_c00078{bottom:298.470293pt;}
.y67_c00078{bottom:300.034641pt;}
.y5b_c00078{bottom:308.468349pt;}
.y5c_c00078{bottom:309.017431pt;}
.y5d_c00078{bottom:310.514715pt;}
.y5e_c00078{bottom:312.637629pt;}
.y5f_c00078{bottom:313.373881pt;}
.y60_c00078{bottom:314.007695pt;}
.y53_c00078{bottom:322.619083pt;}
.y54_c00078{bottom:323.249164pt;}
.y55_c00078{bottom:323.652287pt;}
.y56_c00078{bottom:325.088571pt;}
.y57_c00078{bottom:325.933787pt;}
.y58_c00078{bottom:326.574336pt;}
.y59_c00078{bottom:327.318499pt;}
.y5a_c00078{bottom:327.642391pt;}
.y4b_c00078{bottom:340.126569pt;}
.y4c_c00078{bottom:340.464261pt;}
.y4d_c00078{bottom:341.710645pt;}
.y4e_c00078{bottom:342.095167pt;}
.y4f_c00078{bottom:342.572688pt;}
.y50_c00078{bottom:343.357225pt;}
.y51_c00078{bottom:343.758607pt;}
.y52_c00078{bottom:344.015673pt;}
.y43_c00078{bottom:355.480864pt;}
.y44_c00078{bottom:356.098083pt;}
.y45_c00078{bottom:356.434896pt;}
.y46_c00078{bottom:357.012897pt;}
.y47_c00078{bottom:357.975041pt;}
.y48_c00078{bottom:359.399805pt;}
.y49_c00078{bottom:359.801172pt;}
.y4a_c00078{bottom:360.190041pt;}
.y3c_c00078{bottom:369.872129pt;}
.y3d_c00078{bottom:370.894917pt;}
.y3e_c00078{bottom:371.207808pt;}
.y3f_c00078{bottom:371.929477pt;}
.y40_c00078{bottom:373.460464pt;}
.y41_c00078{bottom:373.750655pt;}
.y42_c00078{bottom:374.914167pt;}
.y34_c00078{bottom:382.589708pt;}
.y35_c00078{bottom:382.811499pt;}
.y36_c00078{bottom:384.423915pt;}
.y37_c00078{bottom:384.778188pt;}
.y38_c00078{bottom:385.293143pt;}
.y39_c00078{bottom:386.337891pt;}
.y3a_c00078{bottom:387.735461pt;}
.y3b_c00078{bottom:388.654767pt;}
.y2d_c00078{bottom:397.941852pt;}
.y2e_c00078{bottom:398.326535pt;}
.y2f_c00078{bottom:399.554825pt;}
.y30_c00078{bottom:400.393441pt;}
.y31_c00078{bottom:400.909869pt;}
.y32_c00078{bottom:402.419951pt;}
.y33_c00078{bottom:402.894540pt;}
.y26_c00078{bottom:414.013849pt;}
.y27_c00078{bottom:414.945947pt;}
.y28_c00078{bottom:416.237533pt;}
.y29_c00078{bottom:416.606893pt;}
.y2a_c00078{bottom:417.546225pt;}
.y2b_c00078{bottom:417.910731pt;}
.y2c_c00078{bottom:419.511904pt;}
.y1f_c00078{bottom:428.172000pt;}
.y20_c00078{bottom:428.790795pt;}
.y21_c00078{bottom:429.746315pt;}
.y22_c00078{bottom:430.469088pt;}
.y23_c00078{bottom:432.005045pt;}
.y24_c00078{bottom:433.718795pt;}
.y25_c00078{bottom:434.442549pt;}
.y16_c00078{bottom:444.958224pt;}
.y17_c00078{bottom:445.433340pt;}
.y18_c00078{bottom:445.663615pt;}
.y19_c00078{bottom:446.113088pt;}
.y1a_c00078{bottom:446.652813pt;}
.y1b_c00078{bottom:446.975380pt;}
.y1c_c00078{bottom:448.033921pt;}
.y1d_c00078{bottom:448.397377pt;}
.y1e_c00078{bottom:449.062740pt;}
.yf_c00078{bottom:459.842863pt;}
.y10_c00078{bottom:461.222387pt;}
.y11_c00078{bottom:461.896101pt;}
.y12_c00078{bottom:462.177832pt;}
.y13_c00078{bottom:462.685464pt;}
.y14_c00078{bottom:463.596269pt;}
.y15_c00078{bottom:464.300152pt;}
.y6_c00078{bottom:475.446764pt;}
.y7_c00078{bottom:475.932197pt;}
.y8_c00078{bottom:476.586876pt;}
.y9_c00078{bottom:477.868159pt;}
.ya_c00078{bottom:478.596696pt;}
.yb_c00078{bottom:480.135007pt;}
.yc_c00078{bottom:480.595353pt;}
.yd_c00078{bottom:481.279761pt;}
.ye_c00078{bottom:481.675421pt;}
.y1_c00078{bottom:490.322667pt;}
.y2_c00078{bottom:490.748097pt;}
.y3_c00078{bottom:491.343755pt;}
.y4_c00078{bottom:492.277327pt;}
.y5_c00078{bottom:494.225617pt;}
.h12_c00078{height:38.248007pt;}
.hc_c00078{height:48.509668pt;}
.hf_c00078{height:52.241180pt;}
.h13_c00078{height:53.174059pt;}
.h7_c00078{height:54.106937pt;}
.h11_c00078{height:55.039815pt;}
.h5_c00078{height:55.074623pt;}
.h8_c00078{height:55.972693pt;}
.he_c00078{height:56.905572pt;}
.ha_c00078{height:57.838450pt;}
.hb_c00078{height:58.771328pt;}
.h3_c00078{height:58.808496pt;}
.h10_c00078{height:59.704206pt;}
.h4_c00078{height:59.741964pt;}
.h6_c00078{height:60.637084pt;}
.h2_c00078{height:60.675432pt;}
.h9_c00078{height:61.569963pt;}
.hd_c00078{height:64.368597pt;}
.h1_c00078{height:544.000000pt;}
.h0_c00078{height:544.266667pt;}
.w0_c00078{width:327.840000pt;}
.w1_c00078{width:328.000000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:19.558667pt;}
.x1f_c00078{left:20.463645pt;}
.x28_c00078{left:21.399556pt;}
.x2f_c00078{left:22.317605pt;}
.x4e_c00078{left:23.247452pt;}
.x57_c00078{left:24.880371pt;}
.x59_c00078{left:26.089176pt;}
.x63_c00078{left:26.988671pt;}
.x69_c00078{left:27.997219pt;}
.x29_c00078{left:29.613991pt;}
.x78_c00078{left:31.110636pt;}
.x7c_c00078{left:32.117429pt;}
.x54_c00078{left:35.475443pt;}
.x4f_c00078{left:36.458404pt;}
.x6_c00078{left:37.467075pt;}
.x19_c00078{left:41.416000pt;}
.x12_c00078{left:42.681579pt;}
.x2_c00078{left:44.584000pt;}
.x48_c00078{left:47.780928pt;}
.x5a_c00078{left:48.899985pt;}
.x34_c00078{left:50.570179pt;}
.x13_c00078{left:53.638164pt;}
.x49_c00078{left:56.847056pt;}
.x50_c00078{left:58.049803pt;}
.x20_c00078{left:59.261427pt;}
.x1a_c00078{left:60.733996pt;}
.x7_c00078{left:61.698949pt;}
.x6a_c00078{left:62.766043pt;}
.x79_c00078{left:64.404485pt;}
.x35_c00078{left:65.830439pt;}
.x3c_c00078{left:67.189873pt;}
.x30_c00078{left:73.354121pt;}
.x14_c00078{left:75.056713pt;}
.x3_c00078{left:79.622667pt;}
.x6b_c00078{left:80.736919pt;}
.x64_c00078{left:83.356336pt;}
.x7d_c00078{left:85.340152pt;}
.x23_c00078{left:88.064477pt;}
.x2a_c00078{left:89.275836pt;}
.x1b_c00078{left:90.564136pt;}
.x36_c00078{left:92.075248pt;}
.x5b_c00078{left:94.184395pt;}
.x4a_c00078{left:96.659879pt;}
.x15_c00078{left:100.764301pt;}
.x2b_c00078{left:102.375483pt;}
.x71_c00078{left:106.650207pt;}
.x8_c00078{left:109.138880pt;}
.x45_c00078{left:111.020393pt;}
.x76_c00078{left:112.213196pt;}
.x1c_c00078{left:113.128216pt;}
.x41_c00078{left:115.133912pt;}
.x16_c00078{left:116.129925pt;}
.x73_c00078{left:119.244796pt;}
.xe_c00078{left:121.429089pt;}
.x24_c00078{left:122.986489pt;}
.x31_c00078{left:124.966275pt;}
.x21_c00078{left:128.347287pt;}
.x3d_c00078{left:129.553428pt;}
.x4_c00078{left:134.538667pt;}
.x9_c00078{left:136.146301pt;}
.x46_c00078{left:137.943944pt;}
.x7e_c00078{left:139.533168pt;}
.x5d_c00078{left:142.290637pt;}
.xf_c00078{left:143.522845pt;}
.x25_c00078{left:144.478485pt;}
.x65_c00078{left:145.728544pt;}
.x42_c00078{left:147.022865pt;}
.x7a_c00078{left:152.240548pt;}
.x77_c00078{left:153.518404pt;}
.x74_c00078{left:159.065765pt;}
.x2c_c00078{left:160.100301pt;}
.x1d_c00078{left:161.078884pt;}
.x43_c00078{left:164.562945pt;}
.x17_c00078{left:166.550503pt;}
.x22_c00078{left:167.454177pt;}
.x51_c00078{left:168.586529pt;}
.x39_c00078{left:174.541183pt;}
.x7f_c00078{left:175.515240pt;}
.x55_c00078{left:177.971364pt;}
.x5e_c00078{left:179.468280pt;}
.x67_c00078{left:181.857551pt;}
.x10_c00078{left:183.134811pt;}
.x40_c00078{left:185.715403pt;}
.x4b_c00078{left:186.796095pt;}
.xa_c00078{left:193.135289pt;}
.x3e_c00078{left:194.086119pt;}
.x47_c00078{left:195.785149pt;}
.x37_c00078{left:200.433504pt;}
.x32_c00078{left:201.400481pt;}
.x52_c00078{left:203.171636pt;}
.x4c_c00078{left:205.589236pt;}
.x26_c00078{left:207.314355pt;}
.x6f_c00078{left:208.334797pt;}
.xb_c00078{left:210.172388pt;}
.x2d_c00078{left:211.806163pt;}
.x11_c00078{left:213.713016pt;}
.x18_c00078{left:215.536504pt;}
.x38_c00078{left:218.666437pt;}
.x66_c00078{left:220.352304pt;}
.x3a_c00078{left:223.467944pt;}
.x53_c00078{left:225.006876pt;}
.x27_c00078{left:227.042313pt;}
.x6c_c00078{left:229.459375pt;}
.x5f_c00078{left:230.539560pt;}
.x4d_c00078{left:231.754936pt;}
.xc_c00078{left:235.525415pt;}
.x1e_c00078{left:237.174712pt;}
.x72_c00078{left:239.187087pt;}
.x3f_c00078{left:240.458401pt;}
.x6d_c00078{left:244.587260pt;}
.x2e_c00078{left:245.792233pt;}
.x5c_c00078{left:247.555253pt;}
.x5_c00078{left:249.144000pt;}
.xd_c00078{left:250.169588pt;}
.x7b_c00078{left:254.157297pt;}
.x61_c00078{left:258.041379pt;}
.x56_c00078{left:259.050549pt;}
.x75_c00078{left:262.934933pt;}
.x3b_c00078{left:264.503880pt;}
.x60_c00078{left:270.612407pt;}
.x44_c00078{left:271.540823pt;}
.x33_c00078{left:273.965067pt;}
.x62_c00078{left:275.981756pt;}
.x68_c00078{left:277.119183pt;}
.x58_c00078{left:278.658668pt;}
.x6e_c00078{left:281.064775pt;}
.x70_c00078{left:288.254215pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00079 {
    display:none;
  }
  .loading-indicator_c00079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00079 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00079 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00079" -> "#page-container .classname_c00079")
 */
.pf_c00079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00079 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00079 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00079 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00079 {overflow:visible;}
  }
}
.c_c00079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00079 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00079:after { /* webkit #35443 */
  content: '';
}
.t_c00079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00079 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00079 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00079 { /* info for Javascript */
  display:none;
}
.l_c00079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00079:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00079 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00079.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.029926,0.001709,-0.014255,0.249593,0,0);-ms-transform:matrix(0.029926,0.001709,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.029926,0.001709,-0.014255,0.249593,0,0);}
.me1_c00079{transform:matrix(0.082152,0.004939,-0.015003,0.249549,0,0);-ms-transform:matrix(0.082152,0.004939,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.082152,0.004939,-0.015003,0.249549,0,0);}
.m3f_c00079{transform:matrix(0.088126,0.003970,-0.011250,0.249747,0,0);-ms-transform:matrix(0.088126,0.003970,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.088126,0.003970,-0.011250,0.249747,0,0);}
.m102_c00079{transform:matrix(0.127935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127935,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.129994,0.005725,-0.011000,0.249758,0,0);-ms-transform:matrix(0.129994,0.005725,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.129994,0.005725,-0.011000,0.249758,0,0);}
.mc5_c00079{transform:matrix(0.136404,0.008201,-0.015003,0.249549,0,0);-ms-transform:matrix(0.136404,0.008201,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.136404,0.008201,-0.015003,0.249549,0,0);}
.m74_c00079{transform:matrix(0.138086,0.007326,-0.013245,0.249649,0,0);-ms-transform:matrix(0.138086,0.007326,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.138086,0.007326,-0.013245,0.249649,0,0);}
.m60_c00079{transform:matrix(0.141292,0.006364,-0.011250,0.249747,0,0);-ms-transform:matrix(0.141292,0.006364,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.141292,0.006364,-0.011250,0.249747,0,0);}
.m5_c00079{transform:matrix(0.145139,0.006393,-0.011000,0.249758,0,0);-ms-transform:matrix(0.145139,0.006393,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.145139,0.006393,-0.011000,0.249758,0,0);}
.ma_c00079{transform:matrix(0.146423,0.006449,-0.011000,0.249758,0,0);-ms-transform:matrix(0.146423,0.006449,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.146423,0.006449,-0.011000,0.249758,0,0);}
.m82_c00079{transform:matrix(0.147638,0.008876,-0.015003,0.249549,0,0);-ms-transform:matrix(0.147638,0.008876,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.147638,0.008876,-0.015003,0.249549,0,0);}
.m80_c00079{transform:matrix(0.151432,0.009104,-0.015003,0.249549,0,0);-ms-transform:matrix(0.151432,0.009104,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.151432,0.009104,-0.015003,0.249549,0,0);}
.m7c_c00079{transform:matrix(0.152170,0.009149,-0.015003,0.249549,0,0);-ms-transform:matrix(0.152170,0.009149,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.152170,0.009149,-0.015003,0.249549,0,0);}
.mf3_c00079{transform:matrix(0.153193,0.009210,-0.015003,0.249549,0,0);-ms-transform:matrix(0.153193,0.009210,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.153193,0.009210,-0.015003,0.249549,0,0);}
.m5e_c00079{transform:matrix(0.153739,0.006925,-0.011250,0.249747,0,0);-ms-transform:matrix(0.153739,0.006925,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.153739,0.006925,-0.011250,0.249747,0,0);}
.mc7_c00079{transform:matrix(0.154845,0.009309,-0.015003,0.249549,0,0);-ms-transform:matrix(0.154845,0.009309,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.154845,0.009309,-0.015003,0.249549,0,0);}
.mfa_c00079{transform:matrix(0.155145,0.009327,-0.015003,0.249549,0,0);-ms-transform:matrix(0.155145,0.009327,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.155145,0.009327,-0.015003,0.249549,0,0);}
.m57_c00079{transform:matrix(0.155442,0.007002,-0.011250,0.249747,0,0);-ms-transform:matrix(0.155442,0.007002,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.155442,0.007002,-0.011250,0.249747,0,0);}
.m25_c00079{transform:matrix(0.155892,0.007022,-0.011250,0.249747,0,0);-ms-transform:matrix(0.155892,0.007022,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.155892,0.007022,-0.011250,0.249747,0,0);}
.m27_c00079{transform:matrix(0.156302,0.007041,-0.011250,0.249747,0,0);-ms-transform:matrix(0.156302,0.007041,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.156302,0.007041,-0.011250,0.249747,0,0);}
.mae_c00079{transform:matrix(0.157236,0.009453,-0.015003,0.249549,0,0);-ms-transform:matrix(0.157236,0.009453,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.157236,0.009453,-0.015003,0.249549,0,0);}
.mbc_c00079{transform:matrix(0.157615,0.009476,-0.015003,0.249549,0,0);-ms-transform:matrix(0.157615,0.009476,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.157615,0.009476,-0.015003,0.249549,0,0);}
.m1f_c00079{transform:matrix(0.157765,0.007107,-0.011250,0.249747,0,0);-ms-transform:matrix(0.157765,0.007107,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.157765,0.007107,-0.011250,0.249747,0,0);}
.med_c00079{transform:matrix(0.158124,0.009506,-0.015003,0.249549,0,0);-ms-transform:matrix(0.158124,0.009506,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.158124,0.009506,-0.015003,0.249549,0,0);}
.m62_c00079{transform:matrix(0.158394,0.007135,-0.011250,0.249747,0,0);-ms-transform:matrix(0.158394,0.007135,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.158394,0.007135,-0.011250,0.249747,0,0);}
.m79_c00079{transform:matrix(0.159176,0.008445,-0.013245,0.249649,0,0);-ms-transform:matrix(0.159176,0.008445,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.159176,0.008445,-0.013245,0.249649,0,0);}
.meb_c00079{transform:matrix(0.159352,0.009580,-0.015003,0.249549,0,0);-ms-transform:matrix(0.159352,0.009580,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.159352,0.009580,-0.015003,0.249549,0,0);}
.mea_c00079{transform:matrix(0.159477,0.009588,-0.015003,0.249549,0,0);-ms-transform:matrix(0.159477,0.009588,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.159477,0.009588,-0.015003,0.249549,0,0);}
.m88_c00079{transform:matrix(0.159647,0.009598,-0.015003,0.249549,0,0);-ms-transform:matrix(0.159647,0.009598,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.159647,0.009598,-0.015003,0.249549,0,0);}
.m91_c00079{transform:matrix(0.160805,0.009668,-0.015003,0.249549,0,0);-ms-transform:matrix(0.160805,0.009668,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.160805,0.009668,-0.015003,0.249549,0,0);}
.m42_c00079{transform:matrix(0.163065,0.007345,-0.011250,0.249747,0,0);-ms-transform:matrix(0.163065,0.007345,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.163065,0.007345,-0.011250,0.249747,0,0);}
.m32_c00079{transform:matrix(0.163879,0.007382,-0.011250,0.249747,0,0);-ms-transform:matrix(0.163879,0.007382,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.163879,0.007382,-0.011250,0.249747,0,0);}
.m22_c00079{transform:matrix(0.164428,0.007407,-0.011250,0.249747,0,0);-ms-transform:matrix(0.164428,0.007407,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.164428,0.007407,-0.011250,0.249747,0,0);}
.mb1_c00079{transform:matrix(0.164728,0.009903,-0.015003,0.249549,0,0);-ms-transform:matrix(0.164728,0.009903,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.164728,0.009903,-0.015003,0.249549,0,0);}
.m52_c00079{transform:matrix(0.165502,0.007455,-0.011250,0.249747,0,0);-ms-transform:matrix(0.165502,0.007455,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.165502,0.007455,-0.011250,0.249747,0,0);}
.mbb_c00079{transform:matrix(0.165716,0.009963,-0.015003,0.249549,0,0);-ms-transform:matrix(0.165716,0.009963,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.165716,0.009963,-0.015003,0.249549,0,0);}
.mc2_c00079{transform:matrix(0.165885,0.009973,-0.015003,0.249549,0,0);-ms-transform:matrix(0.165885,0.009973,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.165885,0.009973,-0.015003,0.249549,0,0);}
.mba_c00079{transform:matrix(0.165985,0.009979,-0.015003,0.249549,0,0);-ms-transform:matrix(0.165985,0.009979,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.165985,0.009979,-0.015003,0.249549,0,0);}
.mf4_c00079{transform:matrix(0.166055,0.009983,-0.015003,0.249549,0,0);-ms-transform:matrix(0.166055,0.009983,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.166055,0.009983,-0.015003,0.249549,0,0);}
.mc_c00079{transform:matrix(0.166871,0.007517,-0.011250,0.249747,0,0);-ms-transform:matrix(0.166871,0.007517,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.166871,0.007517,-0.011250,0.249747,0,0);}
.m92_c00079{transform:matrix(0.167113,0.010047,-0.015003,0.249549,0,0);-ms-transform:matrix(0.167113,0.010047,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.167113,0.010047,-0.015003,0.249549,0,0);}
.md0_c00079{transform:matrix(0.167243,0.010055,-0.015003,0.249549,0,0);-ms-transform:matrix(0.167243,0.010055,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.167243,0.010055,-0.015003,0.249549,0,0);}
.m4_c00079{transform:matrix(0.167293,0.007368,-0.011000,0.249758,0,0);-ms-transform:matrix(0.167293,0.007368,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.167293,0.007368,-0.011000,0.249758,0,0);}
.m7d_c00079{transform:matrix(0.168002,0.010100,-0.015003,0.249549,0,0);-ms-transform:matrix(0.168002,0.010100,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.168002,0.010100,-0.015003,0.249549,0,0);}
.mb0_c00079{transform:matrix(0.168396,0.010124,-0.015003,0.249549,0,0);-ms-transform:matrix(0.168396,0.010124,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.168396,0.010124,-0.015003,0.249549,0,0);}
.mbe_c00079{transform:matrix(0.168556,0.010134,-0.015003,0.249549,0,0);-ms-transform:matrix(0.168556,0.010134,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.168556,0.010134,-0.015003,0.249549,0,0);}
.m15_c00079{transform:matrix(0.168774,0.007602,-0.011250,0.249747,0,0);-ms-transform:matrix(0.168774,0.007602,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.168774,0.007602,-0.011250,0.249747,0,0);}
.mbf_c00079{transform:matrix(0.168785,0.010147,-0.015003,0.249549,0,0);-ms-transform:matrix(0.168785,0.010147,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.168785,0.010147,-0.015003,0.249549,0,0);}
.mdc_c00079{transform:matrix(0.168860,0.010152,-0.015003,0.249549,0,0);-ms-transform:matrix(0.168860,0.010152,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.168860,0.010152,-0.015003,0.249549,0,0);}
.mec_c00079{transform:matrix(0.169060,0.010164,-0.015003,0.249549,0,0);-ms-transform:matrix(0.169060,0.010164,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.169060,0.010164,-0.015003,0.249549,0,0);}
.m4e_c00079{transform:matrix(0.169158,0.007620,-0.011250,0.249747,0,0);-ms-transform:matrix(0.169158,0.007620,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.169158,0.007620,-0.011250,0.249747,0,0);}
.mf0_c00079{transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);-ms-transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);}
.mf2_c00079{transform:matrix(0.170857,0.010272,-0.015003,0.249549,0,0);-ms-transform:matrix(0.170857,0.010272,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.170857,0.010272,-0.015003,0.249549,0,0);}
.m59_c00079{transform:matrix(0.171461,0.007723,-0.011250,0.249747,0,0);-ms-transform:matrix(0.171461,0.007723,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.171461,0.007723,-0.011250,0.249747,0,0);}
.m3_c00079{transform:matrix(0.171773,0.007566,-0.011000,0.249758,0,0);-ms-transform:matrix(0.171773,0.007566,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.171773,0.007566,-0.011000,0.249758,0,0);}
.mc4_c00079{transform:matrix(0.171840,0.010331,-0.015003,0.249549,0,0);-ms-transform:matrix(0.171840,0.010331,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.171840,0.010331,-0.015003,0.249549,0,0);}
.m8b_c00079{transform:matrix(0.172224,0.010354,-0.015003,0.249549,0,0);-ms-transform:matrix(0.172224,0.010354,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.172224,0.010354,-0.015003,0.249549,0,0);}
.mcf_c00079{transform:matrix(0.173053,0.010404,-0.015003,0.249549,0,0);-ms-transform:matrix(0.173053,0.010404,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.173053,0.010404,-0.015003,0.249549,0,0);}
.m7b_c00079{transform:matrix(0.173492,0.010430,-0.015003,0.249549,0,0);-ms-transform:matrix(0.173492,0.010430,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.173492,0.010430,-0.015003,0.249549,0,0);}
.m64_c00079{transform:matrix(0.173577,0.009566,-0.013757,0.249621,0,0);-ms-transform:matrix(0.173577,0.009566,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.173577,0.009566,-0.013757,0.249621,0,0);}
.m93_c00079{transform:matrix(0.173676,0.010441,-0.015003,0.249549,0,0);-ms-transform:matrix(0.173676,0.010441,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.173676,0.010441,-0.015003,0.249549,0,0);}
.m8f_c00079{transform:matrix(0.174126,0.010468,-0.015003,0.249549,0,0);-ms-transform:matrix(0.174126,0.010468,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.174126,0.010468,-0.015003,0.249549,0,0);}
.m7_c00079{transform:matrix(0.174566,0.007689,-0.011000,0.249758,0,0);-ms-transform:matrix(0.174566,0.007689,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.174566,0.007689,-0.011000,0.249758,0,0);}
.m5a_c00079{transform:matrix(0.174638,0.007867,-0.011250,0.249747,0,0);-ms-transform:matrix(0.174638,0.007867,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.174638,0.007867,-0.011250,0.249747,0,0);}
.m78_c00079{transform:matrix(0.174654,0.009266,-0.013245,0.249649,0,0);-ms-transform:matrix(0.174654,0.009266,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.174654,0.009266,-0.013245,0.249649,0,0);}
.mc8_c00079{transform:matrix(0.174854,0.010512,-0.015003,0.249549,0,0);-ms-transform:matrix(0.174854,0.010512,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.174854,0.010512,-0.015003,0.249549,0,0);}
.m2e_c00079{transform:matrix(0.175033,0.007884,-0.011250,0.249747,0,0);-ms-transform:matrix(0.175033,0.007884,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.175033,0.007884,-0.011250,0.249747,0,0);}
.mcc_c00079{transform:matrix(0.175189,0.010532,-0.015003,0.249549,0,0);-ms-transform:matrix(0.175189,0.010532,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.175189,0.010532,-0.015003,0.249549,0,0);}
.mee_c00079{transform:matrix(0.175778,0.010568,-0.015003,0.249549,0,0);-ms-transform:matrix(0.175778,0.010568,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.175778,0.010568,-0.015003,0.249549,0,0);}
.md1_c00079{transform:matrix(0.176212,0.010594,-0.015003,0.249549,0,0);-ms-transform:matrix(0.176212,0.010594,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.176212,0.010594,-0.015003,0.249549,0,0);}
.ma1_c00079{transform:matrix(0.176446,0.010608,-0.015003,0.249549,0,0);-ms-transform:matrix(0.176446,0.010608,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.176446,0.010608,-0.015003,0.249549,0,0);}
.mb3_c00079{transform:matrix(0.176521,0.010613,-0.015003,0.249549,0,0);-ms-transform:matrix(0.176521,0.010613,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.176521,0.010613,-0.015003,0.249549,0,0);}
.m33_c00079{transform:matrix(0.176936,0.007970,-0.011250,0.249747,0,0);-ms-transform:matrix(0.176936,0.007970,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.176936,0.007970,-0.011250,0.249747,0,0);}
.md4_c00079{transform:matrix(0.177130,0.010649,-0.015003,0.249549,0,0);-ms-transform:matrix(0.177130,0.010649,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.177130,0.010649,-0.015003,0.249549,0,0);}
.m56_c00079{transform:matrix(0.177250,0.007984,-0.011250,0.249747,0,0);-ms-transform:matrix(0.177250,0.007984,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.177250,0.007984,-0.011250,0.249747,0,0);}
.m6c_c00079{transform:matrix(0.177291,0.009771,-0.013757,0.249621,0,0);-ms-transform:matrix(0.177291,0.009771,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.177291,0.009771,-0.013757,0.249621,0,0);}
.mef_c00079{transform:matrix(0.177450,0.010668,-0.015003,0.249549,0,0);-ms-transform:matrix(0.177450,0.010668,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.177450,0.010668,-0.015003,0.249549,0,0);}
.m46_c00079{transform:matrix(0.178069,0.008021,-0.011250,0.249747,0,0);-ms-transform:matrix(0.178069,0.008021,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.178069,0.008021,-0.011250,0.249747,0,0);}
.mf1_c00079{transform:matrix(0.178113,0.010708,-0.015003,0.249549,0,0);-ms-transform:matrix(0.178113,0.010708,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.178113,0.010708,-0.015003,0.249549,0,0);}
.mb_c00079{transform:matrix(0.178239,0.008029,-0.011250,0.249747,0,0);-ms-transform:matrix(0.178239,0.008029,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.178239,0.008029,-0.011250,0.249747,0,0);}
.mf5_c00079{transform:matrix(0.178433,0.010727,-0.015003,0.249549,0,0);-ms-transform:matrix(0.178433,0.010727,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.178433,0.010727,-0.015003,0.249549,0,0);}
.m9c_c00079{transform:matrix(0.178528,0.010733,-0.015003,0.249549,0,0);-ms-transform:matrix(0.178528,0.010733,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.178528,0.010733,-0.015003,0.249549,0,0);}
.mad_c00079{transform:matrix(0.178972,0.010760,-0.015003,0.249549,0,0);-ms-transform:matrix(0.178972,0.010760,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.178972,0.010760,-0.015003,0.249549,0,0);}
.ma7_c00079{transform:matrix(0.179905,0.010816,-0.015003,0.249549,0,0);-ms-transform:matrix(0.179905,0.010816,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.179905,0.010816,-0.015003,0.249549,0,0);}
.m8e_c00079{transform:matrix(0.180095,0.010827,-0.015003,0.249549,0,0);-ms-transform:matrix(0.180095,0.010827,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.180095,0.010827,-0.015003,0.249549,0,0);}
.md6_c00079{transform:matrix(0.180429,0.010847,-0.015003,0.249549,0,0);-ms-transform:matrix(0.180429,0.010847,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.180429,0.010847,-0.015003,0.249549,0,0);}
.mf6_c00079{transform:matrix(0.180634,0.010860,-0.015003,0.249549,0,0);-ms-transform:matrix(0.180634,0.010860,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.180634,0.010860,-0.015003,0.249549,0,0);}
.m8d_c00079{transform:matrix(0.180744,0.010866,-0.015003,0.249549,0,0);-ms-transform:matrix(0.180744,0.010866,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.180744,0.010866,-0.015003,0.249549,0,0);}
.ma2_c00079{transform:matrix(0.181048,0.010885,-0.015003,0.249549,0,0);-ms-transform:matrix(0.181048,0.010885,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.181048,0.010885,-0.015003,0.249549,0,0);}
.md3_c00079{transform:matrix(0.181667,0.010922,-0.015003,0.249549,0,0);-ms-transform:matrix(0.181667,0.010922,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.181667,0.010922,-0.015003,0.249549,0,0);}
.m98_c00079{transform:matrix(0.181737,0.010926,-0.015003,0.249549,0,0);-ms-transform:matrix(0.181737,0.010926,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.181737,0.010926,-0.015003,0.249549,0,0);}
.m3a_c00079{transform:matrix(0.181980,0.008197,-0.011250,0.249747,0,0);-ms-transform:matrix(0.181980,0.008197,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.181980,0.008197,-0.011250,0.249747,0,0);}
.mbd_c00079{transform:matrix(0.182615,0.010979,-0.015003,0.249549,0,0);-ms-transform:matrix(0.182615,0.010979,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.182615,0.010979,-0.015003,0.249549,0,0);}
.m1b_c00079{transform:matrix(0.182680,0.008229,-0.011250,0.249747,0,0);-ms-transform:matrix(0.182680,0.008229,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.182680,0.008229,-0.011250,0.249747,0,0);}
.m44_c00079{transform:matrix(0.182830,0.008236,-0.011250,0.249747,0,0);-ms-transform:matrix(0.182830,0.008236,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.182830,0.008236,-0.011250,0.249747,0,0);}
.mca_c00079{transform:matrix(0.182985,0.011001,-0.015003,0.249549,0,0);-ms-transform:matrix(0.182985,0.011001,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.182985,0.011001,-0.015003,0.249549,0,0);}
.mc0_c00079{transform:matrix(0.183089,0.011007,-0.015003,0.249549,0,0);-ms-transform:matrix(0.183089,0.011007,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.183089,0.011007,-0.015003,0.249549,0,0);}
.m81_c00079{transform:matrix(0.183309,0.011021,-0.015003,0.249549,0,0);-ms-transform:matrix(0.183309,0.011021,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.183309,0.011021,-0.015003,0.249549,0,0);}
.m5c_c00079{transform:matrix(0.183374,0.008260,-0.011250,0.249747,0,0);-ms-transform:matrix(0.183374,0.008260,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.183374,0.008260,-0.011250,0.249747,0,0);}
.m29_c00079{transform:matrix(0.184013,0.008289,-0.011250,0.249747,0,0);-ms-transform:matrix(0.184013,0.008289,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.184013,0.008289,-0.011250,0.249747,0,0);}
.m26_c00079{transform:matrix(0.184028,0.008290,-0.011250,0.249747,0,0);-ms-transform:matrix(0.184028,0.008290,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.184028,0.008290,-0.011250,0.249747,0,0);}
.m2a_c00079{transform:matrix(0.184478,0.008310,-0.011250,0.249747,0,0);-ms-transform:matrix(0.184478,0.008310,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.184478,0.008310,-0.011250,0.249747,0,0);}
.mcd_c00079{transform:matrix(0.184607,0.011099,-0.015003,0.249549,0,0);-ms-transform:matrix(0.184607,0.011099,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.184607,0.011099,-0.015003,0.249549,0,0);}
.m77_c00079{transform:matrix(0.184720,0.009800,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184720,0.009800,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184720,0.009800,-0.013245,0.249649,0,0);}
.me9_c00079{transform:matrix(0.184741,0.011107,-0.015003,0.249549,0,0);-ms-transform:matrix(0.184741,0.011107,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.184741,0.011107,-0.015003,0.249549,0,0);}
.m7a_c00079{transform:matrix(0.184825,0.009806,-0.013245,0.249649,0,0);-ms-transform:matrix(0.184825,0.009806,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.184825,0.009806,-0.013245,0.249649,0,0);}
.mc3_c00079{transform:matrix(0.185191,0.011134,-0.015003,0.249549,0,0);-ms-transform:matrix(0.185191,0.011134,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.185191,0.011134,-0.015003,0.249549,0,0);}
.m19_c00079{transform:matrix(0.185392,0.008351,-0.011250,0.249747,0,0);-ms-transform:matrix(0.185392,0.008351,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.185392,0.008351,-0.011250,0.249747,0,0);}
.ma4_c00079{transform:matrix(0.185670,0.011163,-0.015003,0.249549,0,0);-ms-transform:matrix(0.185670,0.011163,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.185670,0.011163,-0.015003,0.249549,0,0);}
.m6_c00079{transform:matrix(0.186374,0.008209,-0.011000,0.249758,0,0);-ms-transform:matrix(0.186374,0.008209,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.186374,0.008209,-0.011000,0.249758,0,0);}
.m36_c00079{transform:matrix(0.186386,0.008396,-0.011250,0.249747,0,0);-ms-transform:matrix(0.186386,0.008396,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.186386,0.008396,-0.011250,0.249747,0,0);}
.mcb_c00079{transform:matrix(0.186982,0.011241,-0.015003,0.249549,0,0);-ms-transform:matrix(0.186982,0.011241,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.186982,0.011241,-0.015003,0.249549,0,0);}
.me6_c00079{transform:matrix(0.187052,0.011246,-0.015003,0.249549,0,0);-ms-transform:matrix(0.187052,0.011246,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.187052,0.011246,-0.015003,0.249549,0,0);}
.m7f_c00079{transform:matrix(0.187367,0.011265,-0.015003,0.249549,0,0);-ms-transform:matrix(0.187367,0.011265,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.187367,0.011265,-0.015003,0.249549,0,0);}
.mc6_c00079{transform:matrix(0.187407,0.011267,-0.015003,0.249549,0,0);-ms-transform:matrix(0.187407,0.011267,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.187407,0.011267,-0.015003,0.249549,0,0);}
.m61_c00079{transform:matrix(0.187615,0.008451,-0.011250,0.249747,0,0);-ms-transform:matrix(0.187615,0.008451,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.187615,0.008451,-0.011250,0.249747,0,0);}
.md5_c00079{transform:matrix(0.188100,0.011309,-0.015003,0.249549,0,0);-ms-transform:matrix(0.188100,0.011309,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.188100,0.011309,-0.015003,0.249549,0,0);}
.m83_c00079{transform:matrix(0.188979,0.011361,-0.015003,0.249549,0,0);-ms-transform:matrix(0.188979,0.011361,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.188979,0.011361,-0.015003,0.249549,0,0);}
.m75_c00079{transform:matrix(0.189474,0.010052,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189474,0.010052,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189474,0.010052,-0.013245,0.249649,0,0);}
.m58_c00079{transform:matrix(0.189608,0.008541,-0.011250,0.249747,0,0);-ms-transform:matrix(0.189608,0.008541,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.189608,0.008541,-0.011250,0.249747,0,0);}
.md2_c00079{transform:matrix(0.190386,0.011446,-0.015003,0.249549,0,0);-ms-transform:matrix(0.190386,0.011446,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.190386,0.011446,-0.015003,0.249549,0,0);}
.m70_c00079{transform:matrix(0.190396,0.010493,-0.013757,0.249621,0,0);-ms-transform:matrix(0.190396,0.010493,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.190396,0.010493,-0.013757,0.249621,0,0);}
.mf9_c00079{transform:matrix(0.190636,0.011461,-0.015003,0.249549,0,0);-ms-transform:matrix(0.190636,0.011461,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.190636,0.011461,-0.015003,0.249549,0,0);}
.m5d_c00079{transform:matrix(0.190687,0.008589,-0.011250,0.249747,0,0);-ms-transform:matrix(0.190687,0.008589,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.190687,0.008589,-0.011250,0.249747,0,0);}
.mb4_c00079{transform:matrix(0.190776,0.011469,-0.015003,0.249549,0,0);-ms-transform:matrix(0.190776,0.011469,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.190776,0.011469,-0.015003,0.249549,0,0);}
.me7_c00079{transform:matrix(0.191210,0.011496,-0.015003,0.249549,0,0);-ms-transform:matrix(0.191210,0.011496,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.191210,0.011496,-0.015003,0.249549,0,0);}
.m5b_c00079{transform:matrix(0.191426,0.008623,-0.011250,0.249747,0,0);-ms-transform:matrix(0.191426,0.008623,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.191426,0.008623,-0.011250,0.249747,0,0);}
.me3_c00079{transform:matrix(0.191714,0.011526,-0.015003,0.249549,0,0);-ms-transform:matrix(0.191714,0.011526,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.191714,0.011526,-0.015003,0.249549,0,0);}
.m9_c00079{transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);-ms-transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);}
.m5f_c00079{transform:matrix(0.191940,0.008646,-0.011250,0.249747,0,0);-ms-transform:matrix(0.191940,0.008646,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.191940,0.008646,-0.011250,0.249747,0,0);}
.mfb_c00079{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m2f_c00079{transform:matrix(0.192525,0.008672,-0.011250,0.249747,0,0);-ms-transform:matrix(0.192525,0.008672,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.192525,0.008672,-0.011250,0.249747,0,0);}
.mc1_c00079{transform:matrix(0.192537,0.011575,-0.015003,0.249549,0,0);-ms-transform:matrix(0.192537,0.011575,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.192537,0.011575,-0.015003,0.249549,0,0);}
.m4a_c00079{transform:matrix(0.192989,0.008693,-0.011250,0.249747,0,0);-ms-transform:matrix(0.192989,0.008693,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.192989,0.008693,-0.011250,0.249747,0,0);}
.m24_c00079{transform:matrix(0.193089,0.008698,-0.011250,0.249747,0,0);-ms-transform:matrix(0.193089,0.008698,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.193089,0.008698,-0.011250,0.249747,0,0);}
.mce_c00079{transform:matrix(0.193176,0.011614,-0.015003,0.249549,0,0);-ms-transform:matrix(0.193176,0.011614,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.193176,0.011614,-0.015003,0.249549,0,0);}
.m76_c00079{transform:matrix(0.193423,0.010262,-0.013245,0.249649,0,0);-ms-transform:matrix(0.193423,0.010262,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.193423,0.010262,-0.013245,0.249649,0,0);}
.m50_c00079{transform:matrix(0.193719,0.008726,-0.011250,0.249747,0,0);-ms-transform:matrix(0.193719,0.008726,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.193719,0.008726,-0.011250,0.249747,0,0);}
.m86_c00079{transform:matrix(0.193800,0.011651,-0.015003,0.249549,0,0);-ms-transform:matrix(0.193800,0.011651,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.193800,0.011651,-0.015003,0.249549,0,0);}
.m10_c00079{transform:matrix(0.193828,0.008731,-0.011250,0.249747,0,0);-ms-transform:matrix(0.193828,0.008731,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.193828,0.008731,-0.011250,0.249747,0,0);}
.me8_c00079{transform:matrix(0.194379,0.011686,-0.015003,0.249549,0,0);-ms-transform:matrix(0.194379,0.011686,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.194379,0.011686,-0.015003,0.249549,0,0);}
.mc9_c00079{transform:matrix(0.194948,0.011720,-0.015003,0.249549,0,0);-ms-transform:matrix(0.194948,0.011720,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.194948,0.011720,-0.015003,0.249549,0,0);}
.m71_c00079{transform:matrix(0.195194,0.010757,-0.013757,0.249621,0,0);-ms-transform:matrix(0.195194,0.010757,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.195194,0.010757,-0.013757,0.249621,0,0);}
.me0_c00079{transform:matrix(0.195961,0.011781,-0.015003,0.249549,0,0);-ms-transform:matrix(0.195961,0.011781,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.195961,0.011781,-0.015003,0.249549,0,0);}
.mb6_c00079{transform:matrix(0.196241,0.011798,-0.015003,0.249549,0,0);-ms-transform:matrix(0.196241,0.011798,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.196241,0.011798,-0.015003,0.249549,0,0);}
.ma3_c00079{transform:matrix(0.196595,0.011819,-0.015003,0.249549,0,0);-ms-transform:matrix(0.196595,0.011819,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.196595,0.011819,-0.015003,0.249549,0,0);}
.m67_c00079{transform:matrix(0.196607,0.010835,-0.013757,0.249621,0,0);-ms-transform:matrix(0.196607,0.010835,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.196607,0.010835,-0.013757,0.249621,0,0);}
.mb5_c00079{transform:matrix(0.196919,0.011839,-0.015003,0.249549,0,0);-ms-transform:matrix(0.196919,0.011839,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.196919,0.011839,-0.015003,0.249549,0,0);}
.m7e_c00079{transform:matrix(0.197169,0.011854,-0.015003,0.249549,0,0);-ms-transform:matrix(0.197169,0.011854,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.197169,0.011854,-0.015003,0.249549,0,0);}
.mfd_c00079{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.maf_c00079{transform:matrix(0.198277,0.011920,-0.015003,0.249549,0,0);-ms-transform:matrix(0.198277,0.011920,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.198277,0.011920,-0.015003,0.249549,0,0);}
.m84_c00079{transform:matrix(0.199560,0.011998,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199560,0.011998,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199560,0.011998,-0.015003,0.249549,0,0);}
.mf8_c00079{transform:matrix(0.199699,0.012006,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199699,0.012006,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199699,0.012006,-0.015003,0.249549,0,0);}
.ma6_c00079{transform:matrix(0.199804,0.012012,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199804,0.012012,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199804,0.012012,-0.015003,0.249549,0,0);}
.mb2_c00079{transform:matrix(0.200014,0.012025,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200014,0.012025,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200014,0.012025,-0.015003,0.249549,0,0);}
.mac_c00079{transform:matrix(0.200104,0.012030,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200104,0.012030,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200104,0.012030,-0.015003,0.249549,0,0);}
.m8a_c00079{transform:matrix(0.200638,0.012062,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200638,0.012062,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200638,0.012062,-0.015003,0.249549,0,0);}
.m54_c00079{transform:matrix(0.200906,0.009050,-0.011250,0.249747,0,0);-ms-transform:matrix(0.200906,0.009050,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.200906,0.009050,-0.011250,0.249747,0,0);}
.m73_c00079{transform:matrix(0.200945,0.011074,-0.013757,0.249621,0,0);-ms-transform:matrix(0.200945,0.011074,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.200945,0.011074,-0.013757,0.249621,0,0);}
.ma8_c00079{transform:matrix(0.201032,0.012086,-0.015003,0.249549,0,0);-ms-transform:matrix(0.201032,0.012086,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.201032,0.012086,-0.015003,0.249549,0,0);}
.m1d_c00079{transform:matrix(0.201311,0.009068,-0.011250,0.249747,0,0);-ms-transform:matrix(0.201311,0.009068,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.201311,0.009068,-0.011250,0.249747,0,0);}
.m9e_c00079{transform:matrix(0.201361,0.012106,-0.015003,0.249549,0,0);-ms-transform:matrix(0.201361,0.012106,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.201361,0.012106,-0.015003,0.249549,0,0);}
.ma5_c00079{transform:matrix(0.201436,0.012110,-0.015003,0.249549,0,0);-ms-transform:matrix(0.201436,0.012110,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.201436,0.012110,-0.015003,0.249549,0,0);}
.mb9_c00079{transform:matrix(0.202285,0.012161,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202285,0.012161,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202285,0.012161,-0.015003,0.249549,0,0);}
.m8_c00079{transform:matrix(0.202499,0.008919,-0.011000,0.249758,0,0);-ms-transform:matrix(0.202499,0.008919,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.202499,0.008919,-0.011000,0.249758,0,0);}
.m28_c00079{transform:matrix(0.202500,0.009122,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202500,0.009122,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202500,0.009122,-0.011250,0.249747,0,0);}
.mf_c00079{transform:matrix(0.202595,0.009126,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202595,0.009126,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202595,0.009126,-0.011250,0.249747,0,0);}
.md8_c00079{transform:matrix(0.202629,0.012182,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202629,0.012182,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202629,0.012182,-0.015003,0.249549,0,0);}
.mb7_c00079{transform:matrix(0.202634,0.012182,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202634,0.012182,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202634,0.012182,-0.015003,0.249549,0,0);}
.m3c_c00079{transform:matrix(0.202734,0.009132,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202734,0.009132,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202734,0.009132,-0.011250,0.249747,0,0);}
.m11_c00079{transform:matrix(0.203703,0.009176,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203703,0.009176,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203703,0.009176,-0.011250,0.249747,0,0);}
.m55_c00079{transform:matrix(0.203708,0.009176,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203708,0.009176,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203708,0.009176,-0.011250,0.249747,0,0);}
.m13_c00079{transform:matrix(0.203908,0.009185,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203908,0.009185,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203908,0.009185,-0.011250,0.249747,0,0);}
.m9d_c00079{transform:matrix(0.204022,0.012266,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204022,0.012266,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204022,0.012266,-0.015003,0.249549,0,0);}
.mf7_c00079{transform:matrix(0.204336,0.012285,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204336,0.012285,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204336,0.012285,-0.015003,0.249549,0,0);}
.m89_c00079{transform:matrix(0.204431,0.012290,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204431,0.012290,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204431,0.012290,-0.015003,0.249549,0,0);}
.ma0_c00079{transform:matrix(0.204521,0.012296,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204521,0.012296,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204521,0.012296,-0.015003,0.249549,0,0);}
.mde_c00079{transform:matrix(0.204536,0.012297,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204536,0.012297,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204536,0.012297,-0.015003,0.249549,0,0);}
.m6d_c00079{transform:matrix(0.204679,0.011280,-0.013757,0.249621,0,0);-ms-transform:matrix(0.204679,0.011280,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.204679,0.011280,-0.013757,0.249621,0,0);}
.m9b_c00079{transform:matrix(0.205125,0.012332,-0.015003,0.249549,0,0);-ms-transform:matrix(0.205125,0.012332,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.205125,0.012332,-0.015003,0.249549,0,0);}
.m30_c00079{transform:matrix(0.205247,0.009245,-0.011250,0.249747,0,0);-ms-transform:matrix(0.205247,0.009245,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.205247,0.009245,-0.011250,0.249747,0,0);}
.m63_c00079{transform:matrix(0.205533,0.011327,-0.013757,0.249621,0,0);-ms-transform:matrix(0.205533,0.011327,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.205533,0.011327,-0.013757,0.249621,0,0);}
.m8c_c00079{transform:matrix(0.205793,0.012372,-0.015003,0.249549,0,0);-ms-transform:matrix(0.205793,0.012372,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.205793,0.012372,-0.015003,0.249549,0,0);}
.m3e_c00079{transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206021,0.009280,-0.011250,0.249747,0,0);}
.md7_c00079{transform:matrix(0.206507,0.012415,-0.015003,0.249549,0,0);-ms-transform:matrix(0.206507,0.012415,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.206507,0.012415,-0.015003,0.249549,0,0);}
.m45_c00079{transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);}
.m101_c00079{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{transform:matrix(0.207550,0.009349,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207550,0.009349,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207550,0.009349,-0.011250,0.249747,0,0);}
.m23_c00079{transform:matrix(0.207654,0.009354,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207654,0.009354,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207654,0.009354,-0.011250,0.249747,0,0);}
.m41_c00079{transform:matrix(0.208094,0.009374,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208094,0.009374,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208094,0.009374,-0.011250,0.249747,0,0);}
.m6a_c00079{transform:matrix(0.208788,0.011506,-0.013757,0.249621,0,0);-ms-transform:matrix(0.208788,0.011506,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.208788,0.011506,-0.013757,0.249621,0,0);}
.m1c_c00079{transform:matrix(0.209188,0.009423,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209188,0.009423,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209188,0.009423,-0.011250,0.249747,0,0);}
.m51_c00079{transform:matrix(0.209463,0.009435,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209463,0.009435,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209463,0.009435,-0.011250,0.249747,0,0);}
.m1_c00079{transform:matrix(0.209888,0.011988,-0.014255,0.249593,0,0);-ms-transform:matrix(0.209888,0.011988,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.209888,0.011988,-0.014255,0.249593,0,0);}
.md_c00079{transform:matrix(0.210167,0.009467,-0.011250,0.249747,0,0);-ms-transform:matrix(0.210167,0.009467,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.210167,0.009467,-0.011250,0.249747,0,0);}
.m2b_c00079{transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);-ms-transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);}
.mda_c00079{transform:matrix(0.211373,0.012708,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211373,0.012708,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211373,0.012708,-0.015003,0.249549,0,0);}
.mdf_c00079{transform:matrix(0.211463,0.012713,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211463,0.012713,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211463,0.012713,-0.015003,0.249549,0,0);}
.m48_c00079{transform:matrix(0.211955,0.009548,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211955,0.009548,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211955,0.009548,-0.011250,0.249747,0,0);}
.m65_c00079{transform:matrix(0.211958,0.011681,-0.013757,0.249621,0,0);-ms-transform:matrix(0.211958,0.011681,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.211958,0.011681,-0.013757,0.249621,0,0);}
.mab_c00079{transform:matrix(0.211962,0.012743,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211962,0.012743,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211962,0.012743,-0.015003,0.249549,0,0);}
.mdb_c00079{transform:matrix(0.212172,0.012756,-0.015003,0.249549,0,0);-ms-transform:matrix(0.212172,0.012756,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.212172,0.012756,-0.015003,0.249549,0,0);}
.m4f_c00079{transform:matrix(0.213319,0.009609,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213319,0.009609,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213319,0.009609,-0.011250,0.249747,0,0);}
.m37_c00079{transform:matrix(0.213743,0.009628,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213743,0.009628,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213743,0.009628,-0.011250,0.249747,0,0);}
.m53_c00079{transform:matrix(0.214468,0.009661,-0.011250,0.249747,0,0);-ms-transform:matrix(0.214468,0.009661,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.214468,0.009661,-0.011250,0.249747,0,0);}
.m72_c00079{transform:matrix(0.214684,0.011831,-0.013757,0.249621,0,0);-ms-transform:matrix(0.214684,0.011831,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.214684,0.011831,-0.013757,0.249621,0,0);}
.maa_c00079{transform:matrix(0.215166,0.012936,-0.015003,0.249549,0,0);-ms-transform:matrix(0.215166,0.012936,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.215166,0.012936,-0.015003,0.249549,0,0);}
.m43_c00079{transform:matrix(0.215397,0.009703,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215397,0.009703,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215397,0.009703,-0.011250,0.249747,0,0);}
.m6e_c00079{transform:matrix(0.215538,0.011878,-0.013757,0.249621,0,0);-ms-transform:matrix(0.215538,0.011878,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.215538,0.011878,-0.013757,0.249621,0,0);}
.m49_c00079{transform:matrix(0.215551,0.009710,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215551,0.009710,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215551,0.009710,-0.011250,0.249747,0,0);}
.m20_c00079{transform:matrix(0.215971,0.009728,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215971,0.009728,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215971,0.009728,-0.011250,0.249747,0,0);}
.m95_c00079{transform:matrix(0.216005,0.012986,-0.015003,0.249549,0,0);-ms-transform:matrix(0.216005,0.012986,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.216005,0.012986,-0.015003,0.249549,0,0);}
.m6f_c00079{transform:matrix(0.216906,0.011954,-0.013757,0.249621,0,0);-ms-transform:matrix(0.216906,0.011954,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.216906,0.011954,-0.013757,0.249621,0,0);}
.mfe_c00079{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.217824,0.009812,-0.011250,0.249747,0,0);-ms-transform:matrix(0.217824,0.009812,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.217824,0.009812,-0.011250,0.249747,0,0);}
.m3d_c00079{transform:matrix(0.218249,0.009831,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218249,0.009831,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218249,0.009831,-0.011250,0.249747,0,0);}
.m2d_c00079{transform:matrix(0.218763,0.009854,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218763,0.009854,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218763,0.009854,-0.011250,0.249747,0,0);}
.m39_c00079{transform:matrix(0.220486,0.009932,-0.011250,0.249747,0,0);-ms-transform:matrix(0.220486,0.009932,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.220486,0.009932,-0.011250,0.249747,0,0);}
.m66_c00079{transform:matrix(0.220785,0.012168,-0.013757,0.249621,0,0);-ms-transform:matrix(0.220785,0.012168,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.220785,0.012168,-0.013757,0.249621,0,0);}
.m99_c00079{transform:matrix(0.221036,0.013289,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221036,0.013289,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221036,0.013289,-0.015003,0.249549,0,0);}
.m94_c00079{transform:matrix(0.221096,0.013292,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221096,0.013292,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221096,0.013292,-0.015003,0.249549,0,0);}
.m4c_c00079{transform:matrix(0.221141,0.009961,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221141,0.009961,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221141,0.009961,-0.011250,0.249747,0,0);}
.m3b_c00079{transform:matrix(0.221765,0.009989,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221765,0.009989,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221765,0.009989,-0.011250,0.249747,0,0);}
.m14_c00079{transform:matrix(0.221890,0.009995,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221890,0.009995,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221890,0.009995,-0.011250,0.249747,0,0);}
.m18_c00079{transform:matrix(0.223219,0.010055,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223219,0.010055,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223219,0.010055,-0.011250,0.249747,0,0);}
.m21_c00079{transform:matrix(0.223254,0.010056,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223254,0.010056,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223254,0.010056,-0.011250,0.249747,0,0);}
.m68_c00079{transform:matrix(0.223775,0.012332,-0.013757,0.249621,0,0);-ms-transform:matrix(0.223775,0.012332,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.223775,0.012332,-0.013757,0.249621,0,0);}
.me2_c00079{transform:matrix(0.224784,0.013514,-0.015003,0.249549,0,0);-ms-transform:matrix(0.224784,0.013514,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.224784,0.013514,-0.015003,0.249549,0,0);}
.me4_c00079{transform:matrix(0.225338,0.013547,-0.015003,0.249549,0,0);-ms-transform:matrix(0.225338,0.013547,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.225338,0.013547,-0.015003,0.249549,0,0);}
.m16_c00079{transform:matrix(0.225591,0.010162,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225591,0.010162,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225591,0.010162,-0.011250,0.249747,0,0);}
.mfc_c00079{transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.227045,0.010227,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227045,0.010227,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227045,0.010227,-0.011250,0.249747,0,0);}
.m34_c00079{transform:matrix(0.227300,0.010239,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227300,0.010239,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227300,0.010239,-0.011250,0.249747,0,0);}
.ma9_c00079{transform:matrix(0.228787,0.013755,-0.015003,0.249549,0,0);-ms-transform:matrix(0.228787,0.013755,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.228787,0.013755,-0.015003,0.249549,0,0);}
.m31_c00079{transform:matrix(0.228813,0.010307,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228813,0.010307,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228813,0.010307,-0.011250,0.249747,0,0);}
.m96_c00079{transform:matrix(0.228892,0.013761,-0.015003,0.249549,0,0);-ms-transform:matrix(0.228892,0.013761,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.228892,0.013761,-0.015003,0.249549,0,0);}
.md9_c00079{transform:matrix(0.228957,0.013765,-0.015003,0.249549,0,0);-ms-transform:matrix(0.228957,0.013765,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.228957,0.013765,-0.015003,0.249549,0,0);}
.m4d_c00079{transform:matrix(0.229058,0.010318,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229058,0.010318,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229058,0.010318,-0.011250,0.249747,0,0);}
.mb8_c00079{transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);-ms-transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);}
.m87_c00079{transform:matrix(0.232316,0.013967,-0.015003,0.249549,0,0);-ms-transform:matrix(0.232316,0.013967,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.232316,0.013967,-0.015003,0.249549,0,0);}
.m9f_c00079{transform:matrix(0.232800,0.013996,-0.015003,0.249549,0,0);-ms-transform:matrix(0.232800,0.013996,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.232800,0.013996,-0.015003,0.249549,0,0);}
.me_c00079{transform:matrix(0.233708,0.010527,-0.011250,0.249747,0,0);-ms-transform:matrix(0.233708,0.010527,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.233708,0.010527,-0.011250,0.249747,0,0);}
.m38_c00079{transform:matrix(0.234487,0.010562,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234487,0.010562,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234487,0.010562,-0.011250,0.249747,0,0);}
.m4b_c00079{transform:matrix(0.234767,0.010575,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234767,0.010575,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234767,0.010575,-0.011250,0.249747,0,0);}
.me5_c00079{transform:matrix(0.235490,0.014158,-0.015003,0.249549,0,0);-ms-transform:matrix(0.235490,0.014158,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.235490,0.014158,-0.015003,0.249549,0,0);}
.mdd_c00079{transform:matrix(0.235580,0.014163,-0.015003,0.249549,0,0);-ms-transform:matrix(0.235580,0.014163,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.235580,0.014163,-0.015003,0.249549,0,0);}
.m1a_c00079{transform:matrix(0.235811,0.010622,-0.011250,0.249747,0,0);-ms-transform:matrix(0.235811,0.010622,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.235811,0.010622,-0.011250,0.249747,0,0);}
.m69_c00079{transform:matrix(0.238473,0.013142,-0.013757,0.249621,0,0);-ms-transform:matrix(0.238473,0.013142,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.238473,0.013142,-0.013757,0.249621,0,0);}
.m40_c00079{transform:matrix(0.239662,0.010796,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239662,0.010796,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239662,0.010796,-0.011250,0.249747,0,0);}
.m2c_c00079{transform:matrix(0.239937,0.010808,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239937,0.010808,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239937,0.010808,-0.011250,0.249747,0,0);}
.m35_c00079{transform:matrix(0.244382,0.011008,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244382,0.011008,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244382,0.011008,-0.011250,0.249747,0,0);}
.m85_c00079{transform:matrix(0.245137,0.014738,-0.015003,0.249549,0,0);-ms-transform:matrix(0.245137,0.014738,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.245137,0.014738,-0.015003,0.249549,0,0);}
.m9a_c00079{transform:matrix(0.258159,0.015521,-0.015003,0.249549,0,0);-ms-transform:matrix(0.258159,0.015521,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.258159,0.015521,-0.015003,0.249549,0,0);}
.m6b_c00079{transform:matrix(0.275991,0.015210,-0.013757,0.249621,0,0);-ms-transform:matrix(0.275991,0.015210,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.275991,0.015210,-0.013757,0.249621,0,0);}
.m90_c00079{transform:matrix(0.319064,0.019182,-0.015003,0.249549,0,0);-ms-transform:matrix(0.319064,0.019182,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.319064,0.019182,-0.015003,0.249549,0,0);}
.m12_c00079{transform:matrix(0.334346,0.015061,-0.011250,0.249747,0,0);-ms-transform:matrix(0.334346,0.015061,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.334346,0.015061,-0.011250,0.249747,0,0);}
.m100_c00079{transform:matrix(0.357960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357960,0.000000,0.000000,0.250000,0,0);}
.m97_c00079{transform:matrix(0.687005,0.041303,-0.015003,0.249549,0,0);-ms-transform:matrix(0.687005,0.041303,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.687005,0.041303,-0.015003,0.249549,0,0);}
.mff_c00079{transform:matrix(0.893535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893535,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:0.000000px;}
.fc0_c00079{color:transparent;}
.fs18_c00079{font-size:22.050000px;}
.fs17_c00079{font-size:53.550000px;}
.fs14_c00079{font-size:54.589188px;}
.fs16_c00079{font-size:54.600000px;}
.fs7_c00079{font-size:56.700737px;}
.fsd_c00079{font-size:57.738564px;}
.fs3_c00079{font-size:57.750751px;}
.fsa_c00079{font-size:58.771446px;}
.fs9_c00079{font-size:59.820936px;}
.fs10_c00079{font-size:59.838149px;}
.fs5_c00079{font-size:59.850778px;}
.fs13_c00079{font-size:60.887941px;}
.fs6_c00079{font-size:60.900792px;}
.fsf_c00079{font-size:61.937733px;}
.fs2_c00079{font-size:61.950805px;}
.fs8_c00079{font-size:64.050833px;}
.fs12_c00079{font-size:66.136901px;}
.fse_c00079{font-size:67.186693px;}
.fs4_c00079{font-size:67.200874px;}
.fsc_c00079{font-size:68.236485px;}
.fsb_c00079{font-size:68.277636px;}
.fs0_c00079{font-size:70.323719px;}
.fs15_c00079{font-size:70.336069px;}
.fs11_c00079{font-size:71.385861px;}
.fs1_c00079{font-size:71.397751px;}
.fs19_c00079{font-size:110.250000px;}
.fs1a_c00079{font-size:173.250000px;}
.y0_c00079{bottom:0.000000px;}
.yfd_c00079{bottom:22.786986px;}
.yfc_c00079{bottom:28.123692px;}
.yfb_c00079{bottom:33.213987px;}
.yfa_c00079{bottom:37.375902px;}
.yf9_c00079{bottom:38.597853px;}
.yf8_c00079{bottom:40.314246px;}
.yf7_c00079{bottom:40.770585px;}
.yf6_c00079{bottom:41.802831px;}
.yf5_c00079{bottom:45.779346px;}
.yf4_c00079{bottom:48.958884px;}
.yf3_c00079{bottom:52.061979px;}
.yf2_c00079{bottom:53.704533px;}
.yf0_c00079{bottom:56.831259px;}
.yf1_c00079{bottom:57.324696px;}
.yef_c00079{bottom:58.001298px;}
.yee_c00079{bottom:59.241831px;}
.yed_c00079{bottom:62.499492px;}
.y103_c00079{bottom:63.180000px;}
.yec_c00079{bottom:63.812376px;}
.yeb_c00079{bottom:66.354396px;}
.yea_c00079{bottom:69.835386px;}
.ye8_c00079{bottom:74.051640px;}
.ye9_c00079{bottom:74.613993px;}
.ye7_c00079{bottom:76.236009px;}
.ye6_c00079{bottom:77.243103px;}
.ye5_c00079{bottom:79.339698px;}
.ye4_c00079{bottom:79.958559px;}
.ye3_c00079{bottom:81.182601px;}
.ye2_c00079{bottom:83.871507px;}
.ye1_c00079{bottom:85.581276px;}
.ye0_c00079{bottom:90.306183px;}
.ydf_c00079{bottom:91.331457px;}
.yde_c00079{bottom:93.449511px;}
.ydd_c00079{bottom:95.057529px;}
.ydc_c00079{bottom:99.172464px;}
.ydb_c00079{bottom:100.306536px;}
.yda_c00079{bottom:103.019433px;}
.yd9_c00079{bottom:104.466300px;}
.yd8_c00079{bottom:106.986930px;}
.yff_c00079{bottom:109.075500px;}
.yd7_c00079{bottom:113.115330px;}
.yd6_c00079{bottom:116.161872px;}
.yd5_c00079{bottom:117.369054px;}
.yd4_c00079{bottom:120.368976px;}
.yd3_c00079{bottom:121.914117px;}
.yd2_c00079{bottom:124.536627px;}
.yfe_c00079{bottom:125.958000px;}
.yd1_c00079{bottom:129.990408px;}
.yd0_c00079{bottom:132.483957px;}
.ycf_c00079{bottom:133.772475px;}
.yce_c00079{bottom:135.454701px;}
.ycd_c00079{bottom:137.854053px;}
.ycc_c00079{bottom:140.202915px;}
.ycb_c00079{bottom:143.793882px;}
.yca_c00079{bottom:144.887274px;}
.yc9_c00079{bottom:147.580635px;}
.yc8_c00079{bottom:148.691814px;}
.yc7_c00079{bottom:150.583362px;}
.yc6_c00079{bottom:153.282123px;}
.yc5_c00079{bottom:156.373482px;}
.yc4_c00079{bottom:157.650291px;}
.yc2_c00079{bottom:158.721831px;}
.yc3_c00079{bottom:159.621774px;}
.yc1_c00079{bottom:163.141341px;}
.yc0_c00079{bottom:164.840109px;}
.y102_c00079{bottom:167.130000px;}
.ybf_c00079{bottom:170.299200px;}
.ybe_c00079{bottom:171.945474px;}
.ybd_c00079{bottom:173.783430px;}
.ybc_c00079{bottom:175.829055px;}
.ybb_c00079{bottom:176.051607px;}
.yba_c00079{bottom:178.274103px;}
.yb9_c00079{bottom:180.762384px;}
.yb8_c00079{bottom:182.172504px;}
.yb7_c00079{bottom:183.677778px;}
.yb6_c00079{bottom:185.421747px;}
.yb5_c00079{bottom:188.592363px;}
.yb4_c00079{bottom:189.477876px;}
.yb3_c00079{bottom:191.540574px;}
.yb2_c00079{bottom:193.117242px;}
.yb1_c00079{bottom:195.011589px;}
.yb0_c00079{bottom:196.168830px;}
.yaf_c00079{bottom:196.939776px;}
.yae_c00079{bottom:202.871691px;}
.yad_c00079{bottom:204.897855px;}
.yac_c00079{bottom:210.385695px;}
.yab_c00079{bottom:210.456138px;}
.yaa_c00079{bottom:214.812699px;}
.ya9_c00079{bottom:217.210470px;}
.ya8_c00079{bottom:219.384987px;}
.ya7_c00079{bottom:220.528863px;}
.ya6_c00079{bottom:222.514170px;}
.ya5_c00079{bottom:223.588935px;}
.ya4_c00079{bottom:226.907115px;}
.ya3_c00079{bottom:227.944416px;}
.ya2_c00079{bottom:228.206886px;}
.y101_c00079{bottom:228.690000px;}
.ya1_c00079{bottom:229.875036px;}
.ya0_c00079{bottom:234.019356px;}
.y9f_c00079{bottom:235.219866px;}
.y9e_c00079{bottom:239.255196px;}
.y9d_c00079{bottom:240.314046px;}
.y9b_c00079{bottom:244.286919px;}
.y9c_c00079{bottom:244.403646px;}
.y9a_c00079{bottom:246.993129px;}
.y99_c00079{bottom:248.165628px;}
.y98_c00079{bottom:253.158966px;}
.y97_c00079{bottom:255.828996px;}
.y96_c00079{bottom:257.308527px;}
.y95_c00079{bottom:261.135936px;}
.y94_c00079{bottom:261.328725px;}
.y93_c00079{bottom:264.927918px;}
.y92_c00079{bottom:265.999224px;}
.y91_c00079{bottom:266.807721px;}
.y90_c00079{bottom:270.509097px;}
.y8f_c00079{bottom:271.697796px;}
.y8e_c00079{bottom:275.673411px;}
.y8d_c00079{bottom:276.472278px;}
.y8b_c00079{bottom:277.503183px;}
.y8c_c00079{bottom:277.860966px;}
.y8a_c00079{bottom:281.401281px;}
.y89_c00079{bottom:282.389778px;}
.y88_c00079{bottom:287.242386px;}
.y87_c00079{bottom:288.259470px;}
.y86_c00079{bottom:291.044340px;}
.y85_c00079{bottom:294.887784px;}
.y84_c00079{bottom:295.513950px;}
.y83_c00079{bottom:296.696010px;}
.y82_c00079{bottom:301.157580px;}
.y81_c00079{bottom:302.504970px;}
.y80_c00079{bottom:304.204530px;}
.y7f_c00079{bottom:305.015970px;}
.y7e_c00079{bottom:307.324200px;}
.y7d_c00079{bottom:308.492040px;}
.y7c_c00079{bottom:311.335500px;}
.y7b_c00079{bottom:312.057091px;}
.y7a_c00079{bottom:313.029535px;}
.y79_c00079{bottom:315.625767px;}
.y78_c00079{bottom:319.792600px;}
.y77_c00079{bottom:323.632053px;}
.y76_c00079{bottom:326.369079px;}
.y75_c00079{bottom:327.262500px;}
.y74_c00079{bottom:329.148426px;}
.y73_c00079{bottom:330.622512px;}
.y72_c00079{bottom:331.931435px;}
.y71_c00079{bottom:332.859210px;}
.y70_c00079{bottom:336.400458px;}
.y6f_c00079{bottom:337.851208px;}
.y6e_c00079{bottom:339.440087px;}
.y6d_c00079{bottom:340.606674px;}
.y6c_c00079{bottom:344.058210px;}
.y6b_c00079{bottom:345.902497px;}
.y6a_c00079{bottom:348.487387px;}
.y69_c00079{bottom:349.694940px;}
.y68_c00079{bottom:352.179262px;}
.y67_c00079{bottom:353.874638px;}
.y66_c00079{bottom:357.290550px;}
.y65_c00079{bottom:358.410900px;}
.y64_c00079{bottom:361.024500px;}
.y63_c00079{bottom:364.082266px;}
.y62_c00079{bottom:367.113435px;}
.y61_c00079{bottom:368.152732px;}
.y60_c00079{bottom:370.776133px;}
.y5f_c00079{bottom:371.831185px;}
.y5e_c00079{bottom:372.513624px;}
.y5d_c00079{bottom:374.732835px;}
.y5c_c00079{bottom:376.251220px;}
.y5a_c00079{bottom:378.048678px;}
.y5b_c00079{bottom:379.098316px;}
.y59_c00079{bottom:379.614826px;}
.y58_c00079{bottom:381.087933px;}
.y57_c00079{bottom:382.294360px;}
.y56_c00079{bottom:382.995321px;}
.y55_c00079{bottom:384.632385px;}
.y54_c00079{bottom:390.015604px;}
.y53_c00079{bottom:391.357977px;}
.y52_c00079{bottom:392.158743px;}
.y51_c00079{bottom:395.864101px;}
.y50_c00079{bottom:397.878787px;}
.y4f_c00079{bottom:399.026503px;}
.y4e_c00079{bottom:402.525528px;}
.y4d_c00079{bottom:405.025876px;}
.y4c_c00079{bottom:406.442580px;}
.y4b_c00079{bottom:409.272733px;}
.y4a_c00079{bottom:412.585849px;}
.y49_c00079{bottom:414.718012px;}
.y100_c00079{bottom:415.260000px;}
.y48_c00079{bottom:416.254515px;}
.y47_c00079{bottom:417.455110px;}
.y46_c00079{bottom:419.398327px;}
.y45_c00079{bottom:423.060378px;}
.y44_c00079{bottom:428.041446px;}
.y43_c00079{bottom:429.319545px;}
.y42_c00079{bottom:432.671703px;}
.y41_c00079{bottom:433.371678px;}
.y40_c00079{bottom:433.801963px;}
.y3f_c00079{bottom:436.855960px;}
.y3e_c00079{bottom:437.929116px;}
.y3d_c00079{bottom:440.936606px;}
.y3c_c00079{bottom:443.174163px;}
.y3b_c00079{bottom:444.794473px;}
.y3a_c00079{bottom:446.325360px;}
.y39_c00079{bottom:451.561807px;}
.y38_c00079{bottom:454.731486px;}
.y37_c00079{bottom:456.065002px;}
.y36_c00079{bottom:459.309471px;}
.y35_c00079{bottom:460.376929px;}
.y34_c00079{bottom:461.485873px;}
.y33_c00079{bottom:462.529072px;}
.y32_c00079{bottom:466.179121px;}
.y31_c00079{bottom:469.620379px;}
.y30_c00079{bottom:471.030859px;}
.y2f_c00079{bottom:471.956595px;}
.y2e_c00079{bottom:473.477599px;}
.y2d_c00079{bottom:476.956131px;}
.y2c_c00079{bottom:479.555124px;}
.y2b_c00079{bottom:480.553570px;}
.y2a_c00079{bottom:481.658923px;}
.y29_c00079{bottom:483.759969px;}
.y28_c00079{bottom:484.690429px;}
.y27_c00079{bottom:487.963410px;}
.y26_c00079{bottom:488.853451px;}
.y25_c00079{bottom:492.267453px;}
.y24_c00079{bottom:493.914561px;}
.y23_c00079{bottom:495.753450px;}
.y22_c00079{bottom:499.750921px;}
.y21_c00079{bottom:502.756399px;}
.y20_c00079{bottom:503.575876px;}
.y1f_c00079{bottom:507.698695px;}
.y1e_c00079{bottom:508.918137px;}
.y1d_c00079{bottom:512.498377px;}
.y1c_c00079{bottom:513.570750px;}
.y1b_c00079{bottom:516.713185px;}
.y1a_c00079{bottom:517.788028px;}
.y19_c00079{bottom:519.982980px;}
.y18_c00079{bottom:521.044255px;}
.y17_c00079{bottom:522.293046px;}
.y16_c00079{bottom:523.275211px;}
.y15_c00079{bottom:524.730835px;}
.y14_c00079{bottom:527.359191px;}
.y13_c00079{bottom:528.446940px;}
.y12_c00079{bottom:531.671685px;}
.y11_c00079{bottom:534.026962px;}
.y10_c00079{bottom:536.765032px;}
.yf_c00079{bottom:538.236397px;}
.ye_c00079{bottom:541.461615px;}
.yd_c00079{bottom:542.166180px;}
.yc_c00079{bottom:544.074000px;}
.yb_c00079{bottom:548.551434px;}
.ya_c00079{bottom:549.146820px;}
.y9_c00079{bottom:551.915454px;}
.y8_c00079{bottom:552.748308px;}
.y7_c00079{bottom:554.660724px;}
.y6_c00079{bottom:555.387318px;}
.y5_c00079{bottom:557.403948px;}
.y4_c00079{bottom:560.320620px;}
.y3_c00079{bottom:561.075000px;}
.y2_c00079{bottom:568.694229px;}
.y1_c00079{bottom:570.507000px;}
.h1a_c00079{height:22.050000px;}
.h19_c00079{height:53.550000px;}
.h16_c00079{height:54.589188px;}
.h18_c00079{height:54.600000px;}
.h9_c00079{height:56.700737px;}
.hf_c00079{height:57.738564px;}
.h5_c00079{height:57.750751px;}
.hc_c00079{height:58.771446px;}
.hb_c00079{height:59.820936px;}
.h12_c00079{height:59.838149px;}
.h7_c00079{height:59.850778px;}
.h15_c00079{height:60.887941px;}
.h8_c00079{height:60.900792px;}
.h11_c00079{height:61.937733px;}
.h4_c00079{height:61.950805px;}
.ha_c00079{height:64.050833px;}
.h14_c00079{height:66.136901px;}
.h10_c00079{height:67.186693px;}
.h6_c00079{height:67.200874px;}
.he_c00079{height:68.236485px;}
.hd_c00079{height:68.277636px;}
.h2_c00079{height:70.323719px;}
.h17_c00079{height:70.336069px;}
.h13_c00079{height:71.385861px;}
.h3_c00079{height:71.397751px;}
.h1b_c00079{height:110.250000px;}
.h1c_c00079{height:173.250000px;}
.h1_c00079{height:612.000000px;}
.h0_c00079{height:612.300000px;}
.w0_c00079{width:368.820000px;}
.w1_c00079{width:369.000000px;}
.x0_c00079{left:0.000000px;}
.x7e_c00079{left:41.858265px;}
.x75_c00079{left:43.448862px;}
.x6c_c00079{left:44.546388px;}
.x4b_c00079{left:45.950235px;}
.x51_c00079{left:47.916000px;}
.x39_c00079{left:50.553442px;}
.x13_c00079{left:51.770805px;}
.x3_c00079{left:53.374500px;}
.x35_c00079{left:56.008536px;}
.x47_c00079{left:58.777500px;}
.xc_c00079{left:61.026000px;}
.x52_c00079{left:64.756143px;}
.x71_c00079{left:68.103273px;}
.x81_c00079{left:69.403140px;}
.x4_c00079{left:70.502355px;}
.x29_c00079{left:72.801713px;}
.x14_c00079{left:73.952115px;}
.x6d_c00079{left:76.947594px;}
.x36_c00079{left:78.415512px;}
.x2e_c00079{left:80.341355px;}
.x5d_c00079{left:84.078357px;}
.x1f_c00079{left:86.070579px;}
.x76_c00079{left:87.819648px;}
.x82_c00079{left:89.403387px;}
.x6e_c00079{left:93.291309px;}
.x2a_c00079{left:94.953539px;}
.x27_c00079{left:97.038222px;}
.xd_c00079{left:103.379604px;}
.x3a_c00079{left:105.737473px;}
.x3d_c00079{left:109.724955px;}
.x2f_c00079{left:110.878773px;}
.x4c_c00079{left:112.176429px;}
.x56_c00079{left:114.074790px;}
.x20_c00079{left:116.536218px;}
.x69_c00079{left:117.986835px;}
.xe_c00079{left:119.020947px;}
.x3e_c00079{left:122.635167px;}
.x48_c00079{left:126.531720px;}
.x15_c00079{left:127.534817px;}
.x64_c00079{left:129.051204px;}
.x40_c00079{left:131.137278px;}
.x63_c00079{left:132.180585px;}
.x1b_c00079{left:134.867787px;}
.x5_c00079{left:136.724067px;}
.x6f_c00079{left:140.037765px;}
.x3f_c00079{left:144.268957px;}
.x72_c00079{left:145.782414px;}
.x5e_c00079{left:151.330641px;}
.x30_c00079{left:153.052355px;}
.x5a_c00079{left:154.294491px;}
.x1_c00079{left:157.201500px;}
.x65_c00079{left:159.549477px;}
.x79_c00079{left:162.013734px;}
.x7b_c00079{left:163.065930px;}
.x77_c00079{left:164.693691px;}
.x37_c00079{left:165.727950px;}
.x67_c00079{left:168.210024px;}
.x5b_c00079{left:170.662206px;}
.x41_c00079{left:172.203549px;}
.x73_c00079{left:173.313618px;}
.x16_c00079{left:177.253629px;}
.x21_c00079{left:179.693390px;}
.x2b_c00079{left:181.111403px;}
.x6_c00079{left:182.510735px;}
.x42_c00079{left:184.820285px;}
.x2_c00079{left:188.940894px;}
.xf_c00079{left:190.620776px;}
.x4d_c00079{left:192.914022px;}
.x57_c00079{left:194.234649px;}
.x22_c00079{left:196.152225px;}
.x7_c00079{left:199.007721px;}
.x17_c00079{left:202.710053px;}
.x43_c00079{left:204.342338px;}
.x7c_c00079{left:206.341974px;}
.x2c_c00079{left:207.748725px;}
.x31_c00079{left:209.751693px;}
.x7f_c00079{left:213.003537px;}
.x58_c00079{left:216.646236px;}
.x3b_c00079{left:218.091129px;}
.x49_c00079{left:219.278355px;}
.x6a_c00079{left:221.346846px;}
.x10_c00079{left:223.285078px;}
.x18_c00079{left:224.336985px;}
.x70_c00079{left:226.275921px;}
.x1c_c00079{left:230.198699px;}
.x5f_c00079{left:234.043344px;}
.x74_c00079{left:235.197405px;}
.x78_c00079{left:236.646825px;}
.x83_c00079{left:240.799470px;}
.x8_c00079{left:242.428257px;}
.x1d_c00079{left:244.824329px;}
.x60_c00079{left:247.716255px;}
.x5c_c00079{left:248.778282px;}
.x44_c00079{left:252.881588px;}
.x7a_c00079{left:255.544752px;}
.x23_c00079{left:256.712078px;}
.x9_c00079{left:261.337829px;}
.x38_c00079{left:263.997542px;}
.x61_c00079{left:265.835526px;}
.x53_c00079{left:267.257439px;}
.x19_c00079{left:269.098139px;}
.x2d_c00079{left:271.082072px;}
.x45_c00079{left:272.120559px;}
.x24_c00079{left:273.934878px;}
.x3c_c00079{left:276.368968px;}
.x4e_c00079{left:278.692839px;}
.x28_c00079{left:282.719774px;}
.x11_c00079{left:284.070232px;}
.x4a_c00079{left:286.269105px;}
.x32_c00079{left:287.540786px;}
.x1a_c00079{left:291.026270px;}
.x33_c00079{left:295.659753px;}
.x68_c00079{left:296.800572px;}
.x1e_c00079{left:298.445599px;}
.x4f_c00079{left:303.806145px;}
.x80_c00079{left:305.062956px;}
.x34_c00079{left:308.865804px;}
.x59_c00079{left:310.518615px;}
.x25_c00079{left:312.811219px;}
.x66_c00079{left:314.222568px;}
.x54_c00079{left:316.193953px;}
.x6b_c00079{left:319.884063px;}
.x7d_c00079{left:321.130140px;}
.xa_c00079{left:324.198405px;}
.x62_c00079{left:326.726697px;}
.x46_c00079{left:328.212208px;}
.x50_c00079{left:332.107142px;}
.x26_c00079{left:333.249950px;}
.x55_c00079{left:334.523606px;}
.x12_c00079{left:336.357393px;}
.xb_c00079{left:337.716374px;}
.x84_c00079{left:361.260000px;}
.x85_c00079{left:362.880000px;}
.x86_c00079{left:365.040000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
.fs18_c00079{font-size:19.600000pt;}
.fs17_c00079{font-size:47.600000pt;}
.fs14_c00079{font-size:48.523723pt;}
.fs16_c00079{font-size:48.533333pt;}
.fs7_c00079{font-size:50.400655pt;}
.fsd_c00079{font-size:51.323168pt;}
.fs3_c00079{font-size:51.334001pt;}
.fsa_c00079{font-size:52.241285pt;}
.fs9_c00079{font-size:53.174165pt;}
.fs10_c00079{font-size:53.189465pt;}
.fs5_c00079{font-size:53.200692pt;}
.fs13_c00079{font-size:54.122614pt;}
.fs6_c00079{font-size:54.134037pt;}
.fsf_c00079{font-size:55.055762pt;}
.fs2_c00079{font-size:55.067383pt;}
.fs8_c00079{font-size:56.934073pt;}
.fs12_c00079{font-size:58.788356pt;}
.fse_c00079{font-size:59.721505pt;}
.fs4_c00079{font-size:59.734110pt;}
.fsc_c00079{font-size:60.654653pt;}
.fsb_c00079{font-size:60.691232pt;}
.fs0_c00079{font-size:62.509973pt;}
.fs15_c00079{font-size:62.520951pt;}
.fs11_c00079{font-size:63.454099pt;}
.fs1_c00079{font-size:63.464667pt;}
.fs19_c00079{font-size:98.000000pt;}
.fs1a_c00079{font-size:154.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.yfd_c00079{bottom:20.255099pt;}
.yfc_c00079{bottom:24.998837pt;}
.yfb_c00079{bottom:29.523544pt;}
.yfa_c00079{bottom:33.223024pt;}
.yf9_c00079{bottom:34.309203pt;}
.yf8_c00079{bottom:35.834885pt;}
.yf7_c00079{bottom:36.240520pt;}
.yf6_c00079{bottom:37.158072pt;}
.yf5_c00079{bottom:40.692752pt;}
.yf4_c00079{bottom:43.519008pt;}
.yf3_c00079{bottom:46.277315pt;}
.yf2_c00079{bottom:47.737363pt;}
.yf0_c00079{bottom:50.516675pt;}
.yf1_c00079{bottom:50.955285pt;}
.yef_c00079{bottom:51.556709pt;}
.yee_c00079{bottom:52.659405pt;}
.yed_c00079{bottom:55.555104pt;}
.y103_c00079{bottom:56.160000pt;}
.yec_c00079{bottom:56.722112pt;}
.yeb_c00079{bottom:58.981685pt;}
.yea_c00079{bottom:62.075899pt;}
.ye8_c00079{bottom:65.823680pt;}
.ye9_c00079{bottom:66.323549pt;}
.ye7_c00079{bottom:67.765341pt;}
.ye6_c00079{bottom:68.660536pt;}
.ye5_c00079{bottom:70.524176pt;}
.ye4_c00079{bottom:71.074275pt;}
.ye3_c00079{bottom:72.162312pt;}
.ye2_c00079{bottom:74.552451pt;}
.ye1_c00079{bottom:76.072245pt;}
.ye0_c00079{bottom:80.272163pt;}
.ydf_c00079{bottom:81.183517pt;}
.yde_c00079{bottom:83.066232pt;}
.ydd_c00079{bottom:84.495581pt;}
.ydc_c00079{bottom:88.153301pt;}
.ydb_c00079{bottom:89.161365pt;}
.yda_c00079{bottom:91.572829pt;}
.yd9_c00079{bottom:92.858933pt;}
.yd8_c00079{bottom:95.099493pt;}
.yff_c00079{bottom:96.956000pt;}
.yd7_c00079{bottom:100.546960pt;}
.yd6_c00079{bottom:103.254997pt;}
.yd5_c00079{bottom:104.328048pt;}
.yd4_c00079{bottom:106.994645pt;}
.yd3_c00079{bottom:108.368104pt;}
.yd2_c00079{bottom:110.699224pt;}
.yfe_c00079{bottom:111.962667pt;}
.yd1_c00079{bottom:115.547029pt;}
.yd0_c00079{bottom:117.763517pt;}
.ycf_c00079{bottom:118.908867pt;}
.yce_c00079{bottom:120.404179pt;}
.ycd_c00079{bottom:122.536936pt;}
.ycc_c00079{bottom:124.624813pt;}
.ycb_c00079{bottom:127.816784pt;}
.yca_c00079{bottom:128.788688pt;}
.yc9_c00079{bottom:131.182787pt;}
.yc8_c00079{bottom:132.170501pt;}
.yc7_c00079{bottom:133.851877pt;}
.yc6_c00079{bottom:136.250776pt;}
.yc5_c00079{bottom:138.998651pt;}
.yc4_c00079{bottom:140.133592pt;}
.yc2_c00079{bottom:141.086072pt;}
.yc3_c00079{bottom:141.886021pt;}
.yc1_c00079{bottom:145.014525pt;}
.yc0_c00079{bottom:146.524541pt;}
.y102_c00079{bottom:148.560000pt;}
.ybf_c00079{bottom:151.377067pt;}
.ybe_c00079{bottom:152.840421pt;}
.ybd_c00079{bottom:154.474160pt;}
.ybc_c00079{bottom:156.292493pt;}
.ybb_c00079{bottom:156.490317pt;}
.yba_c00079{bottom:158.465869pt;}
.yb9_c00079{bottom:160.677675pt;}
.yb8_c00079{bottom:161.931115pt;}
.yb7_c00079{bottom:163.269136pt;}
.yb6_c00079{bottom:164.819331pt;}
.yb5_c00079{bottom:167.637656pt;}
.yb4_c00079{bottom:168.424779pt;}
.yb3_c00079{bottom:170.258288pt;}
.yb2_c00079{bottom:171.659771pt;}
.yb1_c00079{bottom:173.343635pt;}
.yb0_c00079{bottom:174.372293pt;}
.yaf_c00079{bottom:175.057579pt;}
.yae_c00079{bottom:180.330392pt;}
.yad_c00079{bottom:182.131427pt;}
.yac_c00079{bottom:187.009507pt;}
.yab_c00079{bottom:187.072123pt;}
.yaa_c00079{bottom:190.944621pt;}
.ya9_c00079{bottom:193.075973pt;}
.ya8_c00079{bottom:195.008877pt;}
.ya7_c00079{bottom:196.025656pt;}
.ya6_c00079{bottom:197.790373pt;}
.ya5_c00079{bottom:198.745720pt;}
.ya4_c00079{bottom:201.695213pt;}
.ya3_c00079{bottom:202.617259pt;}
.ya2_c00079{bottom:202.850565pt;}
.y101_c00079{bottom:203.280000pt;}
.ya1_c00079{bottom:204.333365pt;}
.ya0_c00079{bottom:208.017205pt;}
.y9f_c00079{bottom:209.084325pt;}
.y9e_c00079{bottom:212.671285pt;}
.y9d_c00079{bottom:213.612485pt;}
.y9b_c00079{bottom:217.143928pt;}
.y9c_c00079{bottom:217.247685pt;}
.y9a_c00079{bottom:219.549448pt;}
.y99_c00079{bottom:220.591669pt;}
.y98_c00079{bottom:225.030192pt;}
.y97_c00079{bottom:227.403552pt;}
.y96_c00079{bottom:228.718691pt;}
.y95_c00079{bottom:232.120832pt;}
.y94_c00079{bottom:232.292200pt;}
.y93_c00079{bottom:235.491483pt;}
.y92_c00079{bottom:236.443755pt;}
.y91_c00079{bottom:237.162419pt;}
.y90_c00079{bottom:240.452531pt;}
.y8f_c00079{bottom:241.509152pt;}
.y8e_c00079{bottom:245.043032pt;}
.y8d_c00079{bottom:245.753136pt;}
.y8b_c00079{bottom:246.669496pt;}
.y8c_c00079{bottom:246.987525pt;}
.y8a_c00079{bottom:250.134472pt;}
.y89_c00079{bottom:251.013136pt;}
.y88_c00079{bottom:255.326565pt;}
.y87_c00079{bottom:256.230640pt;}
.y86_c00079{bottom:258.706080pt;}
.y85_c00079{bottom:262.122475pt;}
.y84_c00079{bottom:262.679067pt;}
.y83_c00079{bottom:263.729787pt;}
.y82_c00079{bottom:267.695627pt;}
.y81_c00079{bottom:268.893307pt;}
.y80_c00079{bottom:270.404027pt;}
.y7f_c00079{bottom:271.125307pt;}
.y7e_c00079{bottom:273.177067pt;}
.y7d_c00079{bottom:274.215147pt;}
.y7c_c00079{bottom:276.742667pt;}
.y7b_c00079{bottom:277.384081pt;}
.y7a_c00079{bottom:278.248476pt;}
.y79_c00079{bottom:280.556237pt;}
.y78_c00079{bottom:284.260089pt;}
.y77_c00079{bottom:287.672936pt;}
.y76_c00079{bottom:290.105848pt;}
.y75_c00079{bottom:290.900000pt;}
.y74_c00079{bottom:292.576379pt;}
.y73_c00079{bottom:293.886677pt;}
.y72_c00079{bottom:295.050164pt;}
.y71_c00079{bottom:295.874853pt;}
.y70_c00079{bottom:299.022629pt;}
.y6f_c00079{bottom:300.312185pt;}
.y6e_c00079{bottom:301.724521pt;}
.y6d_c00079{bottom:302.761488pt;}
.y6c_c00079{bottom:305.829520pt;}
.y6b_c00079{bottom:307.468887pt;}
.y6a_c00079{bottom:309.766567pt;}
.y69_c00079{bottom:310.839947pt;}
.y68_c00079{bottom:313.048233pt;}
.y67_c00079{bottom:314.555233pt;}
.y66_c00079{bottom:317.591600pt;}
.y65_c00079{bottom:318.587467pt;}
.y64_c00079{bottom:320.910667pt;}
.y63_c00079{bottom:323.628681pt;}
.y62_c00079{bottom:326.323053pt;}
.y61_c00079{bottom:327.246873pt;}
.y60_c00079{bottom:329.578785pt;}
.y5f_c00079{bottom:330.516609pt;}
.y5e_c00079{bottom:331.123221pt;}
.y5d_c00079{bottom:333.095853pt;}
.y5c_c00079{bottom:334.445529pt;}
.y5a_c00079{bottom:336.043269pt;}
.y5b_c00079{bottom:336.976281pt;}
.y59_c00079{bottom:337.435401pt;}
.y58_c00079{bottom:338.744829pt;}
.y57_c00079{bottom:339.817209pt;}
.y56_c00079{bottom:340.440285pt;}
.y55_c00079{bottom:341.895453pt;}
.y54_c00079{bottom:346.680537pt;}
.y53_c00079{bottom:347.873757pt;}
.y52_c00079{bottom:348.585549pt;}
.y51_c00079{bottom:351.879201pt;}
.y50_c00079{bottom:353.670033pt;}
.y4f_c00079{bottom:354.690225pt;}
.y4e_c00079{bottom:357.800469pt;}
.y4d_c00079{bottom:360.023001pt;}
.y4c_c00079{bottom:361.282293pt;}
.y4b_c00079{bottom:363.797985pt;}
.y4a_c00079{bottom:366.742977pt;}
.y49_c00079{bottom:368.638233pt;}
.y100_c00079{bottom:369.120000pt;}
.y48_c00079{bottom:370.004013pt;}
.y47_c00079{bottom:371.071209pt;}
.y46_c00079{bottom:372.798513pt;}
.y45_c00079{bottom:376.053669pt;}
.y44_c00079{bottom:380.481285pt;}
.y43_c00079{bottom:381.617373pt;}
.y42_c00079{bottom:384.597069pt;}
.y41_c00079{bottom:385.219269pt;}
.y40_c00079{bottom:385.601745pt;}
.y3f_c00079{bottom:388.316409pt;}
.y3e_c00079{bottom:389.270325pt;}
.y3d_c00079{bottom:391.943649pt;}
.y3c_c00079{bottom:393.932589pt;}
.y3b_c00079{bottom:395.372865pt;}
.y3a_c00079{bottom:396.733653pt;}
.y39_c00079{bottom:401.388273pt;}
.y38_c00079{bottom:404.205765pt;}
.y37_c00079{bottom:405.391113pt;}
.y36_c00079{bottom:408.275085pt;}
.y35_c00079{bottom:409.223937pt;}
.y34_c00079{bottom:410.209665pt;}
.y33_c00079{bottom:411.136953pt;}
.y32_c00079{bottom:414.381441pt;}
.y31_c00079{bottom:417.440337pt;}
.y30_c00079{bottom:418.694097pt;}
.y2f_c00079{bottom:419.516973pt;}
.y2e_c00079{bottom:420.868977pt;}
.y2d_c00079{bottom:423.961005pt;}
.y2c_c00079{bottom:426.271221pt;}
.y2b_c00079{bottom:427.158729pt;}
.y2a_c00079{bottom:428.141265pt;}
.y29_c00079{bottom:430.008861pt;}
.y28_c00079{bottom:430.835937pt;}
.y27_c00079{bottom:433.745253pt;}
.y26_c00079{bottom:434.536401pt;}
.y25_c00079{bottom:437.571069pt;}
.y24_c00079{bottom:439.035165pt;}
.y23_c00079{bottom:440.669733pt;}
.y22_c00079{bottom:444.223041pt;}
.y21_c00079{bottom:446.894577pt;}
.y20_c00079{bottom:447.623001pt;}
.y1f_c00079{bottom:451.287729pt;}
.y1e_c00079{bottom:452.371677pt;}
.y1d_c00079{bottom:455.554113pt;}
.y1c_c00079{bottom:456.507333pt;}
.y1b_c00079{bottom:459.300609pt;}
.y1a_c00079{bottom:460.256025pt;}
.y19_c00079{bottom:462.207093pt;}
.y18_c00079{bottom:463.150449pt;}
.y17_c00079{bottom:464.260485pt;}
.y16_c00079{bottom:465.133521pt;}
.y15_c00079{bottom:466.427409pt;}
.y14_c00079{bottom:468.763725pt;}
.y13_c00079{bottom:469.730613pt;}
.y12_c00079{bottom:472.597053pt;}
.y11_c00079{bottom:474.690633pt;}
.y10_c00079{bottom:477.124473pt;}
.yf_c00079{bottom:478.432353pt;}
.ye_c00079{bottom:481.299213pt;}
.yd_c00079{bottom:481.925493pt;}
.yc_c00079{bottom:483.621333pt;}
.yb_c00079{bottom:487.601275pt;}
.ya_c00079{bottom:488.130507pt;}
.y9_c00079{bottom:490.591515pt;}
.y8_c00079{bottom:491.331829pt;}
.y7_c00079{bottom:493.031755pt;}
.y6_c00079{bottom:493.677616pt;}
.y5_c00079{bottom:495.470176pt;}
.y4_c00079{bottom:498.062773pt;}
.y3_c00079{bottom:498.733333pt;}
.y2_c00079{bottom:505.505981pt;}
.y1_c00079{bottom:507.117333pt;}
.h1a_c00079{height:19.600000pt;}
.h19_c00079{height:47.600000pt;}
.h16_c00079{height:48.523723pt;}
.h18_c00079{height:48.533333pt;}
.h9_c00079{height:50.400655pt;}
.hf_c00079{height:51.323168pt;}
.h5_c00079{height:51.334001pt;}
.hc_c00079{height:52.241285pt;}
.hb_c00079{height:53.174165pt;}
.h12_c00079{height:53.189465pt;}
.h7_c00079{height:53.200692pt;}
.h15_c00079{height:54.122614pt;}
.h8_c00079{height:54.134037pt;}
.h11_c00079{height:55.055762pt;}
.h4_c00079{height:55.067383pt;}
.ha_c00079{height:56.934073pt;}
.h14_c00079{height:58.788356pt;}
.h10_c00079{height:59.721505pt;}
.h6_c00079{height:59.734110pt;}
.he_c00079{height:60.654653pt;}
.hd_c00079{height:60.691232pt;}
.h2_c00079{height:62.509973pt;}
.h17_c00079{height:62.520951pt;}
.h13_c00079{height:63.454099pt;}
.h3_c00079{height:63.464667pt;}
.h1b_c00079{height:98.000000pt;}
.h1c_c00079{height:154.000000pt;}
.h1_c00079{height:544.000000pt;}
.h0_c00079{height:544.266667pt;}
.w0_c00079{width:327.840000pt;}
.w1_c00079{width:328.000000pt;}
.x0_c00079{left:0.000000pt;}
.x7e_c00079{left:37.207347pt;}
.x75_c00079{left:38.621211pt;}
.x6c_c00079{left:39.596789pt;}
.x4b_c00079{left:40.844653pt;}
.x51_c00079{left:42.592000pt;}
.x39_c00079{left:44.936393pt;}
.x13_c00079{left:46.018493pt;}
.x3_c00079{left:47.444000pt;}
.x35_c00079{left:49.785365pt;}
.x47_c00079{left:52.246667pt;}
.xc_c00079{left:54.245333pt;}
.x52_c00079{left:57.561016pt;}
.x71_c00079{left:60.536243pt;}
.x81_c00079{left:61.691680pt;}
.x4_c00079{left:62.668760pt;}
.x29_c00079{left:64.712633pt;}
.x14_c00079{left:65.735213pt;}
.x6d_c00079{left:68.397861pt;}
.x36_c00079{left:69.702677pt;}
.x2e_c00079{left:71.414537pt;}
.x5d_c00079{left:74.736317pt;}
.x1f_c00079{left:76.507181pt;}
.x76_c00079{left:78.061909pt;}
.x82_c00079{left:79.469677pt;}
.x6e_c00079{left:82.925608pt;}
.x2a_c00079{left:84.403145pt;}
.x27_c00079{left:86.256197pt;}
.xd_c00079{left:91.892981pt;}
.x3a_c00079{left:93.988865pt;}
.x3d_c00079{left:97.533293pt;}
.x2f_c00079{left:98.558909pt;}
.x4c_c00079{left:99.712381pt;}
.x56_c00079{left:101.399813pt;}
.x20_c00079{left:103.587749pt;}
.x69_c00079{left:104.877187pt;}
.xe_c00079{left:105.796397pt;}
.x3e_c00079{left:109.009037pt;}
.x48_c00079{left:112.472640pt;}
.x15_c00079{left:113.364281pt;}
.x64_c00079{left:114.712181pt;}
.x40_c00079{left:116.566469pt;}
.x63_c00079{left:117.493853pt;}
.x1b_c00079{left:119.882477pt;}
.x5_c00079{left:121.532504pt;}
.x6f_c00079{left:124.478013pt;}
.x3f_c00079{left:128.239073pt;}
.x72_c00079{left:129.584368pt;}
.x5e_c00079{left:134.516125pt;}
.x30_c00079{left:136.046537pt;}
.x5a_c00079{left:137.150659pt;}
.x1_c00079{left:139.734667pt;}
.x65_c00079{left:141.821757pt;}
.x79_c00079{left:144.012208pt;}
.x7b_c00079{left:144.947493pt;}
.x77_c00079{left:146.394392pt;}
.x37_c00079{left:147.313733pt;}
.x67_c00079{left:149.520021pt;}
.x5b_c00079{left:151.699739pt;}
.x41_c00079{left:153.069821pt;}
.x73_c00079{left:154.056549pt;}
.x16_c00079{left:157.558781pt;}
.x21_c00079{left:159.727457pt;}
.x2b_c00079{left:160.987913pt;}
.x6_c00079{left:162.231764pt;}
.x42_c00079{left:164.284697pt;}
.x2_c00079{left:167.947461pt;}
.xf_c00079{left:169.440689pt;}
.x4d_c00079{left:171.479131pt;}
.x57_c00079{left:172.653021pt;}
.x22_c00079{left:174.357533pt;}
.x7_c00079{left:176.895752pt;}
.x17_c00079{left:180.186713pt;}
.x43_c00079{left:181.637633pt;}
.x7c_c00079{left:183.415088pt;}
.x2c_c00079{left:184.665533pt;}
.x31_c00079{left:186.445949pt;}
.x7f_c00079{left:189.336477pt;}
.x58_c00079{left:192.574432pt;}
.x3b_c00079{left:193.858781pt;}
.x49_c00079{left:194.914093pt;}
.x6a_c00079{left:196.752752pt;}
.x10_c00079{left:198.475625pt;}
.x18_c00079{left:199.410653pt;}
.x70_c00079{left:201.134152pt;}
.x1c_c00079{left:204.621065pt;}
.x5f_c00079{left:208.038528pt;}
.x74_c00079{left:209.064360pt;}
.x78_c00079{left:210.352733pt;}
.x83_c00079{left:214.043973pt;}
.x8_c00079{left:215.491784pt;}
.x1d_c00079{left:217.621625pt;}
.x60_c00079{left:220.192227pt;}
.x5c_c00079{left:221.136251pt;}
.x44_c00079{left:224.783633pt;}
.x7a_c00079{left:227.150891pt;}
.x23_c00079{left:228.188513pt;}
.x9_c00079{left:232.300292pt;}
.x38_c00079{left:234.664481pt;}
.x61_c00079{left:236.298245pt;}
.x53_c00079{left:237.562168pt;}
.x19_c00079{left:239.198345pt;}
.x2d_c00079{left:240.961841pt;}
.x45_c00079{left:241.884941pt;}
.x24_c00079{left:243.497669pt;}
.x3c_c00079{left:245.661305pt;}
.x4e_c00079{left:247.726968pt;}
.x28_c00079{left:251.306465pt;}
.x11_c00079{left:252.506873pt;}
.x4a_c00079{left:254.461427pt;}
.x32_c00079{left:255.591809pt;}
.x1a_c00079{left:258.690017pt;}
.x33_c00079{left:262.808669pt;}
.x68_c00079{left:263.822731pt;}
.x1e_c00079{left:265.284977pt;}
.x4f_c00079{left:270.049907pt;}
.x80_c00079{left:271.167072pt;}
.x34_c00079{left:274.547381pt;}
.x59_c00079{left:276.016547pt;}
.x25_c00079{left:278.054417pt;}
.x66_c00079{left:279.308949pt;}
.x54_c00079{left:281.061292pt;}
.x6b_c00079{left:284.341389pt;}
.x7d_c00079{left:285.449013pt;}
.xa_c00079{left:288.176360pt;}
.x62_c00079{left:290.423731pt;}
.x46_c00079{left:291.744185pt;}
.x50_c00079{left:295.206348pt;}
.x26_c00079{left:296.222177pt;}
.x55_c00079{left:297.354316pt;}
.x12_c00079{left:298.984349pt;}
.xb_c00079{left:300.192332pt;}
.x84_c00079{left:321.120000pt;}
.x85_c00079{left:322.560000pt;}
.x86_c00079{left:324.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00080 {
    display:none;
  }
  .loading-indicator_c00080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00080" -> "#page-container .classname_c00080")
 */
.pf_c00080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00080 {overflow:visible;}
  }
}
.c_c00080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00080:after { /* webkit #35443 */
  content: '';
}
.t_c00080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00080 { /* info for Javascript */
  display:none;
}
.l_c00080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00080:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00080 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00080.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00080{transform:matrix(0.077370,-0.001547,0.004999,0.249950,0,0);-ms-transform:matrix(0.077370,-0.001547,0.004999,0.249950,0,0);-webkit-transform:matrix(0.077370,-0.001547,0.004999,0.249950,0,0);}
.mc8_c00080{transform:matrix(0.121941,-0.002439,0.004999,0.249950,0,0);-ms-transform:matrix(0.121941,-0.002439,0.004999,0.249950,0,0);-webkit-transform:matrix(0.121941,-0.002439,0.004999,0.249950,0,0);}
.m7c_c00080{transform:matrix(0.127460,-0.002549,0.004999,0.249950,0,0);-ms-transform:matrix(0.127460,-0.002549,0.004999,0.249950,0,0);-webkit-transform:matrix(0.127460,-0.002549,0.004999,0.249950,0,0);}
.m79_c00080{transform:matrix(0.137932,-0.002759,0.004999,0.249950,0,0);-ms-transform:matrix(0.137932,-0.002759,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137932,-0.002759,0.004999,0.249950,0,0);}
.m50_c00080{transform:matrix(0.145021,-0.002900,0.004999,0.249950,0,0);-ms-transform:matrix(0.145021,-0.002900,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145021,-0.002900,0.004999,0.249950,0,0);}
.me8_c00080{transform:matrix(0.148965,-0.002979,0.004999,0.249950,0,0);-ms-transform:matrix(0.148965,-0.002979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148965,-0.002979,0.004999,0.249950,0,0);}
.m7d_c00080{transform:matrix(0.149555,-0.002991,0.004999,0.249950,0,0);-ms-transform:matrix(0.149555,-0.002991,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149555,-0.002991,0.004999,0.249950,0,0);}
.m8e_c00080{transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);-ms-transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);}
.m2c_c00080{transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);-ms-transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);}
.m8a_c00080{transform:matrix(0.152470,-0.003049,0.004999,0.249950,0,0);-ms-transform:matrix(0.152470,-0.003049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152470,-0.003049,0.004999,0.249950,0,0);}
.md2_c00080{transform:matrix(0.152485,-0.003050,0.004999,0.249950,0,0);-ms-transform:matrix(0.152485,-0.003050,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152485,-0.003050,0.004999,0.249950,0,0);}
.m80_c00080{transform:matrix(0.153464,-0.003069,0.004999,0.249950,0,0);-ms-transform:matrix(0.153464,-0.003069,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153464,-0.003069,0.004999,0.249950,0,0);}
.m63_c00080{transform:matrix(0.155554,-0.003111,0.004999,0.249950,0,0);-ms-transform:matrix(0.155554,-0.003111,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155554,-0.003111,0.004999,0.249950,0,0);}
.m11_c00080{transform:matrix(0.157404,-0.003148,0.004999,0.249950,0,0);-ms-transform:matrix(0.157404,-0.003148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157404,-0.003148,0.004999,0.249950,0,0);}
.m8_c00080{transform:matrix(0.157878,-0.003158,0.004999,0.249950,0,0);-ms-transform:matrix(0.157878,-0.003158,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157878,-0.003158,0.004999,0.249950,0,0);}
.mc9_c00080{transform:matrix(0.157933,-0.003159,0.004999,0.249950,0,0);-ms-transform:matrix(0.157933,-0.003159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157933,-0.003159,0.004999,0.249950,0,0);}
.m47_c00080{transform:matrix(0.159938,-0.003199,0.004999,0.249950,0,0);-ms-transform:matrix(0.159938,-0.003199,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159938,-0.003199,0.004999,0.249950,0,0);}
.mac_c00080{transform:matrix(0.159993,-0.003200,0.004999,0.249950,0,0);-ms-transform:matrix(0.159993,-0.003200,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159993,-0.003200,0.004999,0.249950,0,0);}
.m3_c00080{transform:matrix(0.161263,-0.003225,0.004999,0.249950,0,0);-ms-transform:matrix(0.161263,-0.003225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161263,-0.003225,0.004999,0.249950,0,0);}
.m76_c00080{transform:matrix(0.161693,-0.003234,0.004999,0.249950,0,0);-ms-transform:matrix(0.161693,-0.003234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161693,-0.003234,0.004999,0.249950,0,0);}
.mda_c00080{transform:matrix(0.162103,-0.003242,0.004999,0.249950,0,0);-ms-transform:matrix(0.162103,-0.003242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162103,-0.003242,0.004999,0.249950,0,0);}
.ma7_c00080{transform:matrix(0.162478,-0.003250,0.004999,0.249950,0,0);-ms-transform:matrix(0.162478,-0.003250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162478,-0.003250,0.004999,0.249950,0,0);}
.m7a_c00080{transform:matrix(0.162762,-0.003255,0.004999,0.249950,0,0);-ms-transform:matrix(0.162762,-0.003255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162762,-0.003255,0.004999,0.249950,0,0);}
.mcc_c00080{transform:matrix(0.163052,-0.003261,0.004999,0.249950,0,0);-ms-transform:matrix(0.163052,-0.003261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163052,-0.003261,0.004999,0.249950,0,0);}
.m1_c00080{transform:matrix(0.164002,-0.003280,0.004999,0.249950,0,0);-ms-transform:matrix(0.164002,-0.003280,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164002,-0.003280,0.004999,0.249950,0,0);}
.mc6_c00080{transform:matrix(0.164572,-0.003291,0.004999,0.249950,0,0);-ms-transform:matrix(0.164572,-0.003291,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164572,-0.003291,0.004999,0.249950,0,0);}
.m30_c00080{transform:matrix(0.164807,-0.003296,0.004999,0.249950,0,0);-ms-transform:matrix(0.164807,-0.003296,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164807,-0.003296,0.004999,0.249950,0,0);}
.m29_c00080{transform:matrix(0.165097,-0.003302,0.004999,0.249950,0,0);-ms-transform:matrix(0.165097,-0.003302,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165097,-0.003302,0.004999,0.249950,0,0);}
.m68_c00080{transform:matrix(0.165202,-0.003304,0.004999,0.249950,0,0);-ms-transform:matrix(0.165202,-0.003304,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165202,-0.003304,0.004999,0.249950,0,0);}
.m88_c00080{transform:matrix(0.165357,-0.003307,0.004999,0.249950,0,0);-ms-transform:matrix(0.165357,-0.003307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165357,-0.003307,0.004999,0.249950,0,0);}
.m42_c00080{transform:matrix(0.165457,-0.003309,0.004999,0.249950,0,0);-ms-transform:matrix(0.165457,-0.003309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165457,-0.003309,0.004999,0.249950,0,0);}
.m82_c00080{transform:matrix(0.165502,-0.003310,0.004999,0.249950,0,0);-ms-transform:matrix(0.165502,-0.003310,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165502,-0.003310,0.004999,0.249950,0,0);}
.m45_c00080{transform:matrix(0.165537,-0.003311,0.004999,0.249950,0,0);-ms-transform:matrix(0.165537,-0.003311,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165537,-0.003311,0.004999,0.249950,0,0);}
.m3b_c00080{transform:matrix(0.165702,-0.003314,0.004999,0.249950,0,0);-ms-transform:matrix(0.165702,-0.003314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165702,-0.003314,0.004999,0.249950,0,0);}
.m21_c00080{transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);-ms-transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);}
.m8c_c00080{transform:matrix(0.167372,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167372,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167372,-0.003347,0.004999,0.249950,0,0);}
.mcd_c00080{transform:matrix(0.167462,-0.003349,0.004999,0.249950,0,0);-ms-transform:matrix(0.167462,-0.003349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167462,-0.003349,0.004999,0.249950,0,0);}
.m2e_c00080{transform:matrix(0.167472,-0.003349,0.004999,0.249950,0,0);-ms-transform:matrix(0.167472,-0.003349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167472,-0.003349,0.004999,0.249950,0,0);}
.m40_c00080{transform:matrix(0.167526,-0.003351,0.004999,0.249950,0,0);-ms-transform:matrix(0.167526,-0.003351,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167526,-0.003351,0.004999,0.249950,0,0);}
.mfa_c00080{transform:matrix(0.167586,-0.003352,0.004999,0.249950,0,0);-ms-transform:matrix(0.167586,-0.003352,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167586,-0.003352,0.004999,0.249950,0,0);}
.m51_c00080{transform:matrix(0.168191,-0.003364,0.004999,0.249950,0,0);-ms-transform:matrix(0.168191,-0.003364,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168191,-0.003364,0.004999,0.249950,0,0);}
.mce_c00080{transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);-ms-transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);}
.mf_c00080{transform:matrix(0.169241,-0.003385,0.004999,0.249950,0,0);-ms-transform:matrix(0.169241,-0.003385,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169241,-0.003385,0.004999,0.249950,0,0);}
.maa_c00080{transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);-ms-transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);}
.m7e_c00080{transform:matrix(0.169421,-0.003388,0.004999,0.249950,0,0);-ms-transform:matrix(0.169421,-0.003388,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169421,-0.003388,0.004999,0.249950,0,0);}
.md6_c00080{transform:matrix(0.170596,-0.003412,0.004999,0.249950,0,0);-ms-transform:matrix(0.170596,-0.003412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170596,-0.003412,0.004999,0.249950,0,0);}
.m2f_c00080{transform:matrix(0.170901,-0.003418,0.004999,0.249950,0,0);-ms-transform:matrix(0.170901,-0.003418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170901,-0.003418,0.004999,0.249950,0,0);}
.ma4_c00080{transform:matrix(0.171706,-0.003434,0.004999,0.249950,0,0);-ms-transform:matrix(0.171706,-0.003434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171706,-0.003434,0.004999,0.249950,0,0);}
.mc2_c00080{transform:matrix(0.172416,-0.003448,0.004999,0.249950,0,0);-ms-transform:matrix(0.172416,-0.003448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172416,-0.003448,0.004999,0.249950,0,0);}
.m1f_c00080{transform:matrix(0.172655,-0.003453,0.004999,0.249950,0,0);-ms-transform:matrix(0.172655,-0.003453,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172655,-0.003453,0.004999,0.249950,0,0);}
.mb9_c00080{transform:matrix(0.172955,-0.003459,0.004999,0.249950,0,0);-ms-transform:matrix(0.172955,-0.003459,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172955,-0.003459,0.004999,0.249950,0,0);}
.m9_c00080{transform:matrix(0.173895,-0.003478,0.004999,0.249950,0,0);-ms-transform:matrix(0.173895,-0.003478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173895,-0.003478,0.004999,0.249950,0,0);}
.m43_c00080{transform:matrix(0.173955,-0.003479,0.004999,0.249950,0,0);-ms-transform:matrix(0.173955,-0.003479,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173955,-0.003479,0.004999,0.249950,0,0);}
.m69_c00080{transform:matrix(0.174050,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174050,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174050,-0.003481,0.004999,0.249950,0,0);}
.ma9_c00080{transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);-ms-transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);}
.mb_c00080{transform:matrix(0.174410,-0.003488,0.004999,0.249950,0,0);-ms-transform:matrix(0.174410,-0.003488,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174410,-0.003488,0.004999,0.249950,0,0);}
.m85_c00080{transform:matrix(0.174510,-0.003490,0.004999,0.249950,0,0);-ms-transform:matrix(0.174510,-0.003490,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174510,-0.003490,0.004999,0.249950,0,0);}
.mee_c00080{transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);-ms-transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);}
.m6e_c00080{transform:matrix(0.174850,-0.003497,0.004999,0.249950,0,0);-ms-transform:matrix(0.174850,-0.003497,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174850,-0.003497,0.004999,0.249950,0,0);}
.m14_c00080{transform:matrix(0.175055,-0.003501,0.004999,0.249950,0,0);-ms-transform:matrix(0.175055,-0.003501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175055,-0.003501,0.004999,0.249950,0,0);}
.m66_c00080{transform:matrix(0.175085,-0.003502,0.004999,0.249950,0,0);-ms-transform:matrix(0.175085,-0.003502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175085,-0.003502,0.004999,0.249950,0,0);}
.mc5_c00080{transform:matrix(0.175180,-0.003504,0.004999,0.249950,0,0);-ms-transform:matrix(0.175180,-0.003504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175180,-0.003504,0.004999,0.249950,0,0);}
.m10_c00080{transform:matrix(0.175925,-0.003518,0.004999,0.249950,0,0);-ms-transform:matrix(0.175925,-0.003518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175925,-0.003518,0.004999,0.249950,0,0);}
.m19_c00080{transform:matrix(0.176050,-0.003521,0.004999,0.249950,0,0);-ms-transform:matrix(0.176050,-0.003521,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176050,-0.003521,0.004999,0.249950,0,0);}
.m7_c00080{transform:matrix(0.176215,-0.003524,0.004999,0.249950,0,0);-ms-transform:matrix(0.176215,-0.003524,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176215,-0.003524,0.004999,0.249950,0,0);}
.m1e_c00080{transform:matrix(0.176690,-0.003534,0.004999,0.249950,0,0);-ms-transform:matrix(0.176690,-0.003534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176690,-0.003534,0.004999,0.249950,0,0);}
.ma_c00080{transform:matrix(0.177415,-0.003548,0.004999,0.249950,0,0);-ms-transform:matrix(0.177415,-0.003548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177415,-0.003548,0.004999,0.249950,0,0);}
.m90_c00080{transform:matrix(0.178484,-0.003570,0.004999,0.249950,0,0);-ms-transform:matrix(0.178484,-0.003570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178484,-0.003570,0.004999,0.249950,0,0);}
.m36_c00080{transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);-ms-transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);}
.m39_c00080{transform:matrix(0.179564,-0.003591,0.004999,0.249950,0,0);-ms-transform:matrix(0.179564,-0.003591,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179564,-0.003591,0.004999,0.249950,0,0);}
.mf3_c00080{transform:matrix(0.179984,-0.003600,0.004999,0.249950,0,0);-ms-transform:matrix(0.179984,-0.003600,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179984,-0.003600,0.004999,0.249950,0,0);}
.m1c_c00080{transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);-ms-transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);}
.mb1_c00080{transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);-ms-transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);}
.m5a_c00080{transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);-ms-transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);}
.mf0_c00080{transform:matrix(0.181804,-0.003636,0.004999,0.249950,0,0);-ms-transform:matrix(0.181804,-0.003636,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181804,-0.003636,0.004999,0.249950,0,0);}
.mdb_c00080{transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);}
.mcb_c00080{transform:matrix(0.182264,-0.003645,0.004999,0.249950,0,0);-ms-transform:matrix(0.182264,-0.003645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182264,-0.003645,0.004999,0.249950,0,0);}
.mbe_c00080{transform:matrix(0.182479,-0.003650,0.004999,0.249950,0,0);-ms-transform:matrix(0.182479,-0.003650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182479,-0.003650,0.004999,0.249950,0,0);}
.mb3_c00080{transform:matrix(0.182494,-0.003650,0.004999,0.249950,0,0);-ms-transform:matrix(0.182494,-0.003650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182494,-0.003650,0.004999,0.249950,0,0);}
.md1_c00080{transform:matrix(0.182728,-0.003655,0.004999,0.249950,0,0);-ms-transform:matrix(0.182728,-0.003655,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182728,-0.003655,0.004999,0.249950,0,0);}
.m27_c00080{transform:matrix(0.182808,-0.003656,0.004999,0.249950,0,0);-ms-transform:matrix(0.182808,-0.003656,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182808,-0.003656,0.004999,0.249950,0,0);}
.m37_c00080{transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);-ms-transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);}
.m5c_c00080{transform:matrix(0.183718,-0.003674,0.004999,0.249950,0,0);-ms-transform:matrix(0.183718,-0.003674,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183718,-0.003674,0.004999,0.249950,0,0);}
.m71_c00080{transform:matrix(0.183823,-0.003676,0.004999,0.249950,0,0);-ms-transform:matrix(0.183823,-0.003676,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183823,-0.003676,0.004999,0.249950,0,0);}
.m9f_c00080{transform:matrix(0.184123,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184123,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184123,-0.003682,0.004999,0.249950,0,0);}
.m46_c00080{transform:matrix(0.184163,-0.003683,0.004999,0.249950,0,0);-ms-transform:matrix(0.184163,-0.003683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184163,-0.003683,0.004999,0.249950,0,0);}
.ma2_c00080{transform:matrix(0.184668,-0.003693,0.004999,0.249950,0,0);-ms-transform:matrix(0.184668,-0.003693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184668,-0.003693,0.004999,0.249950,0,0);}
.m12_c00080{transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);}
.m96_c00080{transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);-ms-transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);}
.m2a_c00080{transform:matrix(0.185363,-0.003707,0.004999,0.249950,0,0);-ms-transform:matrix(0.185363,-0.003707,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185363,-0.003707,0.004999,0.249950,0,0);}
.m67_c00080{transform:matrix(0.185448,-0.003709,0.004999,0.249950,0,0);-ms-transform:matrix(0.185448,-0.003709,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185448,-0.003709,0.004999,0.249950,0,0);}
.m20_c00080{transform:matrix(0.185493,-0.003710,0.004999,0.249950,0,0);-ms-transform:matrix(0.185493,-0.003710,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185493,-0.003710,0.004999,0.249950,0,0);}
.mf8_c00080{transform:matrix(0.185678,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185678,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185678,-0.003714,0.004999,0.249950,0,0);}
.m2b_c00080{transform:matrix(0.185958,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185958,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185958,-0.003719,0.004999,0.249950,0,0);}
.mc_c00080{transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);}
.m44_c00080{transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-ms-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);}
.m28_c00080{transform:matrix(0.186203,-0.003724,0.004999,0.249950,0,0);-ms-transform:matrix(0.186203,-0.003724,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186203,-0.003724,0.004999,0.249950,0,0);}
.m0_c00080{transform:matrix(0.186418,-0.003728,0.004999,0.249950,0,0);-ms-transform:matrix(0.186418,-0.003728,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186418,-0.003728,0.004999,0.249950,0,0);}
.m7b_c00080{transform:matrix(0.186533,-0.003731,0.004999,0.249950,0,0);-ms-transform:matrix(0.186533,-0.003731,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186533,-0.003731,0.004999,0.249950,0,0);}
.ma6_c00080{transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);}
.m7f_c00080{transform:matrix(0.187228,-0.003745,0.004999,0.249950,0,0);-ms-transform:matrix(0.187228,-0.003745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187228,-0.003745,0.004999,0.249950,0,0);}
.mc3_c00080{transform:matrix(0.187513,-0.003750,0.004999,0.249950,0,0);-ms-transform:matrix(0.187513,-0.003750,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187513,-0.003750,0.004999,0.249950,0,0);}
.m6_c00080{transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);}
.m5e_c00080{transform:matrix(0.187927,-0.003759,0.004999,0.249950,0,0);-ms-transform:matrix(0.187927,-0.003759,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187927,-0.003759,0.004999,0.249950,0,0);}
.md5_c00080{transform:matrix(0.187977,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.187977,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187977,-0.003760,0.004999,0.249950,0,0);}
.me7_c00080{transform:matrix(0.188877,-0.003778,0.004999,0.249950,0,0);-ms-transform:matrix(0.188877,-0.003778,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188877,-0.003778,0.004999,0.249950,0,0);}
.mcf_c00080{transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);}
.m16_c00080{transform:matrix(0.189557,-0.003791,0.004999,0.249950,0,0);-ms-transform:matrix(0.189557,-0.003791,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189557,-0.003791,0.004999,0.249950,0,0);}
.m74_c00080{transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);-ms-transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);}
.m64_c00080{transform:matrix(0.189807,-0.003796,0.004999,0.249950,0,0);-ms-transform:matrix(0.189807,-0.003796,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189807,-0.003796,0.004999,0.249950,0,0);}
.m91_c00080{transform:matrix(0.189912,-0.003798,0.004999,0.249950,0,0);-ms-transform:matrix(0.189912,-0.003798,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189912,-0.003798,0.004999,0.249950,0,0);}
.mf7_c00080{transform:matrix(0.190302,-0.003806,0.004999,0.249950,0,0);-ms-transform:matrix(0.190302,-0.003806,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190302,-0.003806,0.004999,0.249950,0,0);}
.md4_c00080{transform:matrix(0.190462,-0.003809,0.004999,0.249950,0,0);-ms-transform:matrix(0.190462,-0.003809,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190462,-0.003809,0.004999,0.249950,0,0);}
.mc0_c00080{transform:matrix(0.190592,-0.003812,0.004999,0.249950,0,0);-ms-transform:matrix(0.190592,-0.003812,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190592,-0.003812,0.004999,0.249950,0,0);}
.m3d_c00080{transform:matrix(0.190802,-0.003816,0.004999,0.249950,0,0);-ms-transform:matrix(0.190802,-0.003816,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190802,-0.003816,0.004999,0.249950,0,0);}
.m9c_c00080{transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);-ms-transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);}
.maf_c00080{transform:matrix(0.191092,-0.003822,0.004999,0.249950,0,0);-ms-transform:matrix(0.191092,-0.003822,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191092,-0.003822,0.004999,0.249950,0,0);}
.m2_c00080{transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);}
.m65_c00080{transform:matrix(0.192402,-0.003848,0.004999,0.249950,0,0);-ms-transform:matrix(0.192402,-0.003848,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192402,-0.003848,0.004999,0.249950,0,0);}
.m59_c00080{transform:matrix(0.192447,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192447,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192447,-0.003849,0.004999,0.249950,0,0);}
.md3_c00080{transform:matrix(0.192541,-0.003851,0.004999,0.249950,0,0);-ms-transform:matrix(0.192541,-0.003851,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192541,-0.003851,0.004999,0.249950,0,0);}
.m60_c00080{transform:matrix(0.192641,-0.003853,0.004999,0.249950,0,0);-ms-transform:matrix(0.192641,-0.003853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192641,-0.003853,0.004999,0.249950,0,0);}
.mad_c00080{transform:matrix(0.192731,-0.003855,0.004999,0.249950,0,0);-ms-transform:matrix(0.192731,-0.003855,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192731,-0.003855,0.004999,0.249950,0,0);}
.m56_c00080{transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);}
.m75_c00080{transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);-ms-transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);}
.m53_c00080{transform:matrix(0.193221,-0.003864,0.004999,0.249950,0,0);-ms-transform:matrix(0.193221,-0.003864,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193221,-0.003864,0.004999,0.249950,0,0);}
.mc4_c00080{transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);-ms-transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);}
.m8b_c00080{transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);-ms-transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);}
.meb_c00080{transform:matrix(0.194241,-0.003885,0.004999,0.249950,0,0);-ms-transform:matrix(0.194241,-0.003885,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194241,-0.003885,0.004999,0.249950,0,0);}
.me0_c00080{transform:matrix(0.194266,-0.003885,0.004999,0.249950,0,0);-ms-transform:matrix(0.194266,-0.003885,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194266,-0.003885,0.004999,0.249950,0,0);}
.m52_c00080{transform:matrix(0.194691,-0.003894,0.004999,0.249950,0,0);-ms-transform:matrix(0.194691,-0.003894,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194691,-0.003894,0.004999,0.249950,0,0);}
.mab_c00080{transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);-ms-transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);}
.mbb_c00080{transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);}
.m23_c00080{transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-ms-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);}
.m22_c00080{transform:matrix(0.195611,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195611,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195611,-0.003912,0.004999,0.249950,0,0);}
.ma8_c00080{transform:matrix(0.195861,-0.003917,0.004999,0.249950,0,0);-ms-transform:matrix(0.195861,-0.003917,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195861,-0.003917,0.004999,0.249950,0,0);}
.m5f_c00080{transform:matrix(0.196171,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196171,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196171,-0.003923,0.004999,0.249950,0,0);}
.me9_c00080{transform:matrix(0.196396,-0.003928,0.004999,0.249950,0,0);-ms-transform:matrix(0.196396,-0.003928,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196396,-0.003928,0.004999,0.249950,0,0);}
.m8f_c00080{transform:matrix(0.196456,-0.003929,0.004999,0.249950,0,0);-ms-transform:matrix(0.196456,-0.003929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196456,-0.003929,0.004999,0.249950,0,0);}
.m3a_c00080{transform:matrix(0.196871,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196871,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196871,-0.003937,0.004999,0.249950,0,0);}
.mbc_c00080{transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);-ms-transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);}
.m84_c00080{transform:matrix(0.197416,-0.003948,0.004999,0.249950,0,0);-ms-transform:matrix(0.197416,-0.003948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197416,-0.003948,0.004999,0.249950,0,0);}
.m17_c00080{transform:matrix(0.197890,-0.003958,0.004999,0.249950,0,0);-ms-transform:matrix(0.197890,-0.003958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197890,-0.003958,0.004999,0.249950,0,0);}
.m87_c00080{transform:matrix(0.197940,-0.003959,0.004999,0.249950,0,0);-ms-transform:matrix(0.197940,-0.003959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197940,-0.003959,0.004999,0.249950,0,0);}
.m6b_c00080{transform:matrix(0.198010,-0.003960,0.004999,0.249950,0,0);-ms-transform:matrix(0.198010,-0.003960,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198010,-0.003960,0.004999,0.249950,0,0);}
.mea_c00080{transform:matrix(0.198180,-0.003964,0.004999,0.249950,0,0);-ms-transform:matrix(0.198180,-0.003964,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198180,-0.003964,0.004999,0.249950,0,0);}
.mc1_c00080{transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);}
.mba_c00080{transform:matrix(0.198705,-0.003974,0.004999,0.249950,0,0);-ms-transform:matrix(0.198705,-0.003974,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198705,-0.003974,0.004999,0.249950,0,0);}
.m81_c00080{transform:matrix(0.199105,-0.003982,0.004999,0.249950,0,0);-ms-transform:matrix(0.199105,-0.003982,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199105,-0.003982,0.004999,0.249950,0,0);}
.m73_c00080{transform:matrix(0.199210,-0.003984,0.004999,0.249950,0,0);-ms-transform:matrix(0.199210,-0.003984,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199210,-0.003984,0.004999,0.249950,0,0);}
.me5_c00080{transform:matrix(0.199890,-0.003998,0.004999,0.249950,0,0);-ms-transform:matrix(0.199890,-0.003998,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199890,-0.003998,0.004999,0.249950,0,0);}
.med_c00080{transform:matrix(0.200025,-0.004000,0.004999,0.249950,0,0);-ms-transform:matrix(0.200025,-0.004000,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200025,-0.004000,0.004999,0.249950,0,0);}
.m86_c00080{transform:matrix(0.200190,-0.004004,0.004999,0.249950,0,0);-ms-transform:matrix(0.200190,-0.004004,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200190,-0.004004,0.004999,0.249950,0,0);}
.m1b_c00080{transform:matrix(0.200430,-0.004009,0.004999,0.249950,0,0);-ms-transform:matrix(0.200430,-0.004009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200430,-0.004009,0.004999,0.249950,0,0);}
.ma3_c00080{transform:matrix(0.201070,-0.004021,0.004999,0.249950,0,0);-ms-transform:matrix(0.201070,-0.004021,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201070,-0.004021,0.004999,0.249950,0,0);}
.m72_c00080{transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);}
.mca_c00080{transform:matrix(0.201620,-0.004032,0.004999,0.249950,0,0);-ms-transform:matrix(0.201620,-0.004032,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201620,-0.004032,0.004999,0.249950,0,0);}
.m33_c00080{transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);-ms-transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);}
.m1a_c00080{transform:matrix(0.201930,-0.004039,0.004999,0.249950,0,0);-ms-transform:matrix(0.201930,-0.004039,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201930,-0.004039,0.004999,0.249950,0,0);}
.m93_c00080{transform:matrix(0.202150,-0.004043,0.004999,0.249950,0,0);-ms-transform:matrix(0.202150,-0.004043,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202150,-0.004043,0.004999,0.249950,0,0);}
.me6_c00080{transform:matrix(0.202669,-0.004053,0.004999,0.249950,0,0);-ms-transform:matrix(0.202669,-0.004053,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202669,-0.004053,0.004999,0.249950,0,0);}
.m6d_c00080{transform:matrix(0.202839,-0.004057,0.004999,0.249950,0,0);-ms-transform:matrix(0.202839,-0.004057,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202839,-0.004057,0.004999,0.249950,0,0);}
.md9_c00080{transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);-ms-transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);}
.m41_c00080{transform:matrix(0.203254,-0.004065,0.004999,0.249950,0,0);-ms-transform:matrix(0.203254,-0.004065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203254,-0.004065,0.004999,0.249950,0,0);}
.m2d_c00080{transform:matrix(0.203509,-0.004070,0.004999,0.249950,0,0);-ms-transform:matrix(0.203509,-0.004070,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203509,-0.004070,0.004999,0.249950,0,0);}
.mde_c00080{transform:matrix(0.203919,-0.004078,0.004999,0.249950,0,0);-ms-transform:matrix(0.203919,-0.004078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203919,-0.004078,0.004999,0.249950,0,0);}
.m38_c00080{transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);}
.mb5_c00080{transform:matrix(0.204609,-0.004092,0.004999,0.249950,0,0);-ms-transform:matrix(0.204609,-0.004092,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204609,-0.004092,0.004999,0.249950,0,0);}
.m8d_c00080{transform:matrix(0.205414,-0.004108,0.004999,0.249950,0,0);-ms-transform:matrix(0.205414,-0.004108,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205414,-0.004108,0.004999,0.249950,0,0);}
.me_c00080{transform:matrix(0.205479,-0.004110,0.004999,0.249950,0,0);-ms-transform:matrix(0.205479,-0.004110,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205479,-0.004110,0.004999,0.249950,0,0);}
.m48_c00080{transform:matrix(0.205714,-0.004114,0.004999,0.249950,0,0);-ms-transform:matrix(0.205714,-0.004114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205714,-0.004114,0.004999,0.249950,0,0);}
.me2_c00080{transform:matrix(0.205794,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205794,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205794,-0.004116,0.004999,0.249950,0,0);}
.m6f_c00080{transform:matrix(0.205989,-0.004120,0.004999,0.249950,0,0);-ms-transform:matrix(0.205989,-0.004120,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205989,-0.004120,0.004999,0.249950,0,0);}
.mf4_c00080{transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);-ms-transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);}
.m94_c00080{transform:matrix(0.206809,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206809,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206809,-0.004136,0.004999,0.249950,0,0);}
.ma5_c00080{transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);}
.m24_c00080{transform:matrix(0.207319,-0.004146,0.004999,0.249950,0,0);-ms-transform:matrix(0.207319,-0.004146,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207319,-0.004146,0.004999,0.249950,0,0);}
.m57_c00080{transform:matrix(0.207763,-0.004155,0.004999,0.249950,0,0);-ms-transform:matrix(0.207763,-0.004155,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207763,-0.004155,0.004999,0.249950,0,0);}
.m18_c00080{transform:matrix(0.208353,-0.004167,0.004999,0.249950,0,0);-ms-transform:matrix(0.208353,-0.004167,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208353,-0.004167,0.004999,0.249950,0,0);}
.m83_c00080{transform:matrix(0.209133,-0.004183,0.004999,0.249950,0,0);-ms-transform:matrix(0.209133,-0.004183,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209133,-0.004183,0.004999,0.249950,0,0);}
.m77_c00080{transform:matrix(0.209573,-0.004191,0.004999,0.249950,0,0);-ms-transform:matrix(0.209573,-0.004191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209573,-0.004191,0.004999,0.249950,0,0);}
.mf2_c00080{transform:matrix(0.209998,-0.004200,0.004999,0.249950,0,0);-ms-transform:matrix(0.209998,-0.004200,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209998,-0.004200,0.004999,0.249950,0,0);}
.m3f_c00080{transform:matrix(0.210083,-0.004202,0.004999,0.249950,0,0);-ms-transform:matrix(0.210083,-0.004202,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210083,-0.004202,0.004999,0.249950,0,0);}
.m4_c00080{transform:matrix(0.210198,-0.004204,0.004999,0.249950,0,0);-ms-transform:matrix(0.210198,-0.004204,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210198,-0.004204,0.004999,0.249950,0,0);}
.m9e_c00080{transform:matrix(0.210203,-0.004204,0.004999,0.249950,0,0);-ms-transform:matrix(0.210203,-0.004204,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210203,-0.004204,0.004999,0.249950,0,0);}
.ma1_c00080{transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);-ms-transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);}
.m25_c00080{transform:matrix(0.210543,-0.004211,0.004999,0.249950,0,0);-ms-transform:matrix(0.210543,-0.004211,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210543,-0.004211,0.004999,0.249950,0,0);}
.m3e_c00080{transform:matrix(0.210988,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.210988,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210988,-0.004220,0.004999,0.249950,0,0);}
.mb0_c00080{transform:matrix(0.211553,-0.004231,0.004999,0.249950,0,0);-ms-transform:matrix(0.211553,-0.004231,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211553,-0.004231,0.004999,0.249950,0,0);}
.md0_c00080{transform:matrix(0.211978,-0.004240,0.004999,0.249950,0,0);-ms-transform:matrix(0.211978,-0.004240,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211978,-0.004240,0.004999,0.249950,0,0);}
.mdf_c00080{transform:matrix(0.212268,-0.004245,0.004999,0.249950,0,0);-ms-transform:matrix(0.212268,-0.004245,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212268,-0.004245,0.004999,0.249950,0,0);}
.md7_c00080{transform:matrix(0.212363,-0.004247,0.004999,0.249950,0,0);-ms-transform:matrix(0.212363,-0.004247,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212363,-0.004247,0.004999,0.249950,0,0);}
.ma0_c00080{transform:matrix(0.212388,-0.004248,0.004999,0.249950,0,0);-ms-transform:matrix(0.212388,-0.004248,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212388,-0.004248,0.004999,0.249950,0,0);}
.m4a_c00080{transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-ms-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);}
.m3c_c00080{transform:matrix(0.212902,-0.004258,0.004999,0.249950,0,0);-ms-transform:matrix(0.212902,-0.004258,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212902,-0.004258,0.004999,0.249950,0,0);}
.m92_c00080{transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);}
.m15_c00080{transform:matrix(0.213462,-0.004269,0.004999,0.249950,0,0);-ms-transform:matrix(0.213462,-0.004269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213462,-0.004269,0.004999,0.249950,0,0);}
.mb8_c00080{transform:matrix(0.213992,-0.004280,0.004999,0.249950,0,0);-ms-transform:matrix(0.213992,-0.004280,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213992,-0.004280,0.004999,0.249950,0,0);}
.m26_c00080{transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);-ms-transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);}
.m89_c00080{transform:matrix(0.214287,-0.004286,0.004999,0.249950,0,0);-ms-transform:matrix(0.214287,-0.004286,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214287,-0.004286,0.004999,0.249950,0,0);}
.m70_c00080{transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-ms-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);}
.mbf_c00080{transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);-ms-transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);}
.m98_c00080{transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);-ms-transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);}
.m31_c00080{transform:matrix(0.216152,-0.004323,0.004999,0.249950,0,0);-ms-transform:matrix(0.216152,-0.004323,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216152,-0.004323,0.004999,0.249950,0,0);}
.md8_c00080{transform:matrix(0.216212,-0.004324,0.004999,0.249950,0,0);-ms-transform:matrix(0.216212,-0.004324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216212,-0.004324,0.004999,0.249950,0,0);}
.m58_c00080{transform:matrix(0.216262,-0.004325,0.004999,0.249950,0,0);-ms-transform:matrix(0.216262,-0.004325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216262,-0.004325,0.004999,0.249950,0,0);}
.m78_c00080{transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-ms-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);}
.me1_c00080{transform:matrix(0.216957,-0.004339,0.004999,0.249950,0,0);-ms-transform:matrix(0.216957,-0.004339,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216957,-0.004339,0.004999,0.249950,0,0);}
.mb2_c00080{transform:matrix(0.217062,-0.004341,0.004999,0.249950,0,0);-ms-transform:matrix(0.217062,-0.004341,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217062,-0.004341,0.004999,0.249950,0,0);}
.m34_c00080{transform:matrix(0.217097,-0.004342,0.004999,0.249950,0,0);-ms-transform:matrix(0.217097,-0.004342,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217097,-0.004342,0.004999,0.249950,0,0);}
.m6c_c00080{transform:matrix(0.218101,-0.004362,0.004999,0.249950,0,0);-ms-transform:matrix(0.218101,-0.004362,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218101,-0.004362,0.004999,0.249950,0,0);}
.m95_c00080{transform:matrix(0.218391,-0.004368,0.004999,0.249950,0,0);-ms-transform:matrix(0.218391,-0.004368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218391,-0.004368,0.004999,0.249950,0,0);}
.mc7_c00080{transform:matrix(0.218831,-0.004377,0.004999,0.249950,0,0);-ms-transform:matrix(0.218831,-0.004377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218831,-0.004377,0.004999,0.249950,0,0);}
.m13_c00080{transform:matrix(0.219546,-0.004391,0.004999,0.249950,0,0);-ms-transform:matrix(0.219546,-0.004391,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219546,-0.004391,0.004999,0.249950,0,0);}
.mae_c00080{transform:matrix(0.219676,-0.004394,0.004999,0.249950,0,0);-ms-transform:matrix(0.219676,-0.004394,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219676,-0.004394,0.004999,0.249950,0,0);}
.mf5_c00080{transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-ms-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);}
.m5d_c00080{transform:matrix(0.220606,-0.004412,0.004999,0.249950,0,0);-ms-transform:matrix(0.220606,-0.004412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220606,-0.004412,0.004999,0.249950,0,0);}
.m9a_c00080{transform:matrix(0.221091,-0.004422,0.004999,0.249950,0,0);-ms-transform:matrix(0.221091,-0.004422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221091,-0.004422,0.004999,0.249950,0,0);}
.mbd_c00080{transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);-ms-transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);}
.me3_c00080{transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);-ms-transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);}
.m9d_c00080{transform:matrix(0.221261,-0.004425,0.004999,0.249950,0,0);-ms-transform:matrix(0.221261,-0.004425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221261,-0.004425,0.004999,0.249950,0,0);}
.md_c00080{transform:matrix(0.221621,-0.004432,0.004999,0.249950,0,0);-ms-transform:matrix(0.221621,-0.004432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221621,-0.004432,0.004999,0.249950,0,0);}
.mf1_c00080{transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);-ms-transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);}
.m4c_c00080{transform:matrix(0.222216,-0.004444,0.004999,0.249950,0,0);-ms-transform:matrix(0.222216,-0.004444,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222216,-0.004444,0.004999,0.249950,0,0);}
.mec_c00080{transform:matrix(0.222585,-0.004452,0.004999,0.249950,0,0);-ms-transform:matrix(0.222585,-0.004452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222585,-0.004452,0.004999,0.249950,0,0);}
.m32_c00080{transform:matrix(0.222750,-0.004455,0.004999,0.249950,0,0);-ms-transform:matrix(0.222750,-0.004455,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222750,-0.004455,0.004999,0.249950,0,0);}
.mf6_c00080{transform:matrix(0.223505,-0.004470,0.004999,0.249950,0,0);-ms-transform:matrix(0.223505,-0.004470,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223505,-0.004470,0.004999,0.249950,0,0);}
.mb6_c00080{transform:matrix(0.224135,-0.004483,0.004999,0.249950,0,0);-ms-transform:matrix(0.224135,-0.004483,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224135,-0.004483,0.004999,0.249950,0,0);}
.m97_c00080{transform:matrix(0.225210,-0.004504,0.004999,0.249950,0,0);-ms-transform:matrix(0.225210,-0.004504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225210,-0.004504,0.004999,0.249950,0,0);}
.me4_c00080{transform:matrix(0.227864,-0.004557,0.004999,0.249950,0,0);-ms-transform:matrix(0.227864,-0.004557,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227864,-0.004557,0.004999,0.249950,0,0);}
.m99_c00080{transform:matrix(0.228934,-0.004579,0.004999,0.249950,0,0);-ms-transform:matrix(0.228934,-0.004579,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228934,-0.004579,0.004999,0.249950,0,0);}
.m6a_c00080{transform:matrix(0.229134,-0.004583,0.004999,0.249950,0,0);-ms-transform:matrix(0.229134,-0.004583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229134,-0.004583,0.004999,0.249950,0,0);}
.m5b_c00080{transform:matrix(0.230069,-0.004601,0.004999,0.249950,0,0);-ms-transform:matrix(0.230069,-0.004601,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230069,-0.004601,0.004999,0.249950,0,0);}
.m55_c00080{transform:matrix(0.230574,-0.004611,0.004999,0.249950,0,0);-ms-transform:matrix(0.230574,-0.004611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230574,-0.004611,0.004999,0.249950,0,0);}
.m9b_c00080{transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-ms-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);}
.mdd_c00080{transform:matrix(0.230869,-0.004617,0.004999,0.249950,0,0);-ms-transform:matrix(0.230869,-0.004617,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230869,-0.004617,0.004999,0.249950,0,0);}
.mb4_c00080{transform:matrix(0.230964,-0.004619,0.004999,0.249950,0,0);-ms-transform:matrix(0.230964,-0.004619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230964,-0.004619,0.004999,0.249950,0,0);}
.mef_c00080{transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);-ms-transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);}
.m4e_c00080{transform:matrix(0.233098,-0.004662,0.004999,0.249950,0,0);-ms-transform:matrix(0.233098,-0.004662,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233098,-0.004662,0.004999,0.249950,0,0);}
.m4b_c00080{transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);-ms-transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);}
.mf9_c00080{transform:matrix(0.236998,-0.004740,0.004999,0.249950,0,0);-ms-transform:matrix(0.236998,-0.004740,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236998,-0.004740,0.004999,0.249950,0,0);}
.m35_c00080{transform:matrix(0.238392,-0.004768,0.004999,0.249950,0,0);-ms-transform:matrix(0.238392,-0.004768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238392,-0.004768,0.004999,0.249950,0,0);}
.mdc_c00080{transform:matrix(0.239952,-0.004799,0.004999,0.249950,0,0);-ms-transform:matrix(0.239952,-0.004799,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239952,-0.004799,0.004999,0.249950,0,0);}
.m4f_c00080{transform:matrix(0.240347,-0.004807,0.004999,0.249950,0,0);-ms-transform:matrix(0.240347,-0.004807,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240347,-0.004807,0.004999,0.249950,0,0);}
.m4d_c00080{transform:matrix(0.241482,-0.004830,0.004999,0.249950,0,0);-ms-transform:matrix(0.241482,-0.004830,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241482,-0.004830,0.004999,0.249950,0,0);}
.m62_c00080{transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);-ms-transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);}
.m54_c00080{transform:matrix(0.244651,-0.004893,0.004999,0.249950,0,0);-ms-transform:matrix(0.244651,-0.004893,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244651,-0.004893,0.004999,0.249950,0,0);}
.m1d_c00080{transform:matrix(0.262028,-0.005241,0.004999,0.249950,0,0);-ms-transform:matrix(0.262028,-0.005241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262028,-0.005241,0.004999,0.249950,0,0);}
.m5_c00080{transform:matrix(0.276150,-0.005523,0.004999,0.249950,0,0);-ms-transform:matrix(0.276150,-0.005523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.276150,-0.005523,0.004999,0.249950,0,0);}
.m61_c00080{transform:matrix(0.370981,-0.007420,0.004999,0.249950,0,0);-ms-transform:matrix(0.370981,-0.007420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.370981,-0.007420,0.004999,0.249950,0,0);}
.m49_c00080{transform:matrix(0.415882,-0.008318,0.004999,0.249950,0,0);-ms-transform:matrix(0.415882,-0.008318,0.004999,0.249950,0,0);-webkit-transform:matrix(0.415882,-0.008318,0.004999,0.249950,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:0.000000px;}
.fc0_c00080{color:transparent;}
.fs2_c00080{font-size:58.811759px;}
.fsa_c00080{font-size:59.861969px;}
.fs7_c00080{font-size:60.912179px;}
.fs4_c00080{font-size:61.962389px;}
.fs8_c00080{font-size:63.012599px;}
.fs3_c00080{font-size:64.062809px;}
.fs1_c00080{font-size:65.113019px;}
.fs5_c00080{font-size:66.163229px;}
.fs6_c00080{font-size:67.213439px;}
.fs0_c00080{font-size:70.364069px;}
.fs9_c00080{font-size:72.464489px;}
.y0_c00080{bottom:0.000000px;}
.yf8_c00080{bottom:34.382010px;}
.yf7_c00080{bottom:34.382070px;}
.yf9_c00080{bottom:34.382220px;}
.yf2_c00080{bottom:34.382700px;}
.yf1_c00080{bottom:34.382760px;}
.yf6_c00080{bottom:34.382820px;}
.yf4_c00080{bottom:34.382910px;}
.yf3_c00080{bottom:34.383030px;}
.yf5_c00080{bottom:34.383510px;}
.yf0_c00080{bottom:51.666150px;}
.yee_c00080{bottom:51.666510px;}
.yef_c00080{bottom:51.666750px;}
.yed_c00080{bottom:51.667200px;}
.yec_c00080{bottom:51.667410px;}
.yeb_c00080{bottom:51.667800px;}
.ye9_c00080{bottom:51.667890px;}
.yea_c00080{bottom:51.668340px;}
.ye3_c00080{bottom:66.715650px;}
.ye7_c00080{bottom:66.715740px;}
.ye8_c00080{bottom:66.715920px;}
.ye4_c00080{bottom:66.716010px;}
.ye5_c00080{bottom:66.716190px;}
.ye6_c00080{bottom:66.716400px;}
.yde_c00080{bottom:84.816270px;}
.ydd_c00080{bottom:84.816360px;}
.ye0_c00080{bottom:84.816720px;}
.ydf_c00080{bottom:84.816750px;}
.ye1_c00080{bottom:84.816900px;}
.ye2_c00080{bottom:84.817200px;}
.ydc_c00080{bottom:102.204570px;}
.ydb_c00080{bottom:102.205080px;}
.yd9_c00080{bottom:102.205140px;}
.yda_c00080{bottom:102.205500px;}
.yd2_c00080{bottom:120.925740px;}
.yd4_c00080{bottom:120.926100px;}
.yd3_c00080{bottom:120.926190px;}
.yd5_c00080{bottom:120.926700px;}
.yd7_c00080{bottom:120.926940px;}
.yd6_c00080{bottom:120.927450px;}
.yd8_c00080{bottom:120.927570px;}
.yd0_c00080{bottom:136.319190px;}
.yd1_c00080{bottom:136.319400px;}
.ycf_c00080{bottom:136.319610px;}
.yce_c00080{bottom:136.319970px;}
.ycb_c00080{bottom:136.320360px;}
.ycc_c00080{bottom:136.320540px;}
.ycd_c00080{bottom:136.320660px;}
.yca_c00080{bottom:136.321020px;}
.yc8_c00080{bottom:136.321290px;}
.yc9_c00080{bottom:136.321380px;}
.yc0_c00080{bottom:149.766600px;}
.yc1_c00080{bottom:150.524370px;}
.yc2_c00080{bottom:151.631310px;}
.yc3_c00080{bottom:151.889340px;}
.yc4_c00080{bottom:152.200080px;}
.yc5_c00080{bottom:152.966370px;}
.yc6_c00080{bottom:153.487620px;}
.yc7_c00080{bottom:154.747080px;}
.yb7_c00080{bottom:167.047080px;}
.yb8_c00080{bottom:167.830590px;}
.yb9_c00080{bottom:167.937990px;}
.yba_c00080{bottom:168.112650px;}
.ybb_c00080{bottom:168.354720px;}
.ybc_c00080{bottom:169.299570px;}
.ybd_c00080{bottom:169.591290px;}
.ybe_c00080{bottom:170.697870px;}
.ybf_c00080{bottom:170.871540px;}
.yb4_c00080{bottom:186.732450px;}
.yb5_c00080{bottom:186.732960px;}
.yb3_c00080{bottom:186.733020px;}
.yb2_c00080{bottom:186.733080px;}
.yaf_c00080{bottom:186.733230px;}
.yb0_c00080{bottom:186.733350px;}
.yae_c00080{bottom:186.733620px;}
.yb6_c00080{bottom:186.733680px;}
.yb1_c00080{bottom:186.733740px;}
.yab_c00080{bottom:204.491910px;}
.ya9_c00080{bottom:204.491970px;}
.yac_c00080{bottom:204.492420px;}
.yaa_c00080{bottom:204.492630px;}
.ya8_c00080{bottom:204.492660px;}
.ya6_c00080{bottom:204.492810px;}
.yad_c00080{bottom:204.493020px;}
.ya5_c00080{bottom:204.493230px;}
.ya7_c00080{bottom:204.493350px;}
.ya0_c00080{bottom:220.872420px;}
.y9f_c00080{bottom:220.872450px;}
.ya2_c00080{bottom:220.872840px;}
.ya1_c00080{bottom:220.872930px;}
.y9e_c00080{bottom:220.873140px;}
.ya4_c00080{bottom:220.873260px;}
.ya3_c00080{bottom:220.873350px;}
.y9d_c00080{bottom:220.873500px;}
.y9b_c00080{bottom:237.769470px;}
.y9c_c00080{bottom:237.769830px;}
.y9a_c00080{bottom:237.770190px;}
.y99_c00080{bottom:237.770850px;}
.y97_c00080{bottom:237.771180px;}
.y98_c00080{bottom:237.771540px;}
.y96_c00080{bottom:254.817900px;}
.y95_c00080{bottom:254.818290px;}
.y94_c00080{bottom:254.818350px;}
.y93_c00080{bottom:254.818530px;}
.y92_c00080{bottom:254.818890px;}
.y91_c00080{bottom:254.819100px;}
.y90_c00080{bottom:254.819760px;}
.y8f_c00080{bottom:254.819880px;}
.y8e_c00080{bottom:254.819970px;}
.y8d_c00080{bottom:254.820720px;}
.y86_c00080{bottom:272.342760px;}
.y87_c00080{bottom:272.343450px;}
.y85_c00080{bottom:272.343510px;}
.y88_c00080{bottom:272.343990px;}
.y8b_c00080{bottom:272.344020px;}
.y89_c00080{bottom:272.344350px;}
.y8a_c00080{bottom:272.344380px;}
.y8c_c00080{bottom:272.344500px;}
.y83_c00080{bottom:289.390530px;}
.y84_c00080{bottom:289.391010px;}
.y82_c00080{bottom:289.391190px;}
.y81_c00080{bottom:289.391250px;}
.y7f_c00080{bottom:289.391550px;}
.y80_c00080{bottom:289.391790px;}
.y7e_c00080{bottom:289.392210px;}
.y7d_c00080{bottom:289.392330px;}
.y7c_c00080{bottom:289.392420px;}
.y73_c00080{bottom:305.046660px;}
.y74_c00080{bottom:305.241570px;}
.y75_c00080{bottom:305.770050px;}
.y76_c00080{bottom:306.230760px;}
.y77_c00080{bottom:306.872220px;}
.y78_c00080{bottom:307.121430px;}
.y79_c00080{bottom:307.472790px;}
.y7a_c00080{bottom:307.974660px;}
.y7b_c00080{bottom:308.240400px;}
.y6b_c00080{bottom:320.442510px;}
.y6c_c00080{bottom:320.777190px;}
.y6d_c00080{bottom:321.700470px;}
.y6e_c00080{bottom:322.142790px;}
.y6f_c00080{bottom:323.519910px;}
.y70_c00080{bottom:324.514740px;}
.y71_c00080{bottom:325.018440px;}
.y72_c00080{bottom:326.282370px;}
.y61_c00080{bottom:336.104220px;}
.y62_c00080{bottom:336.677520px;}
.y63_c00080{bottom:337.069500px;}
.y64_c00080{bottom:337.499220px;}
.y65_c00080{bottom:337.959600px;}
.y66_c00080{bottom:339.284340px;}
.y67_c00080{bottom:339.858780px;}
.y68_c00080{bottom:341.150880px;}
.y69_c00080{bottom:341.934990px;}
.y6a_c00080{bottom:342.278880px;}
.y5a_c00080{bottom:351.497310px;}
.y5b_c00080{bottom:351.764040px;}
.y5c_c00080{bottom:352.724550px;}
.y5d_c00080{bottom:354.006690px;}
.y5e_c00080{bottom:355.336140px;}
.y5f_c00080{bottom:355.881870px;}
.y60_c00080{bottom:357.365850px;}
.y51_c00080{bottom:369.318450px;}
.y52_c00080{bottom:369.591150px;}
.y53_c00080{bottom:370.088940px;}
.y54_c00080{bottom:371.038470px;}
.y55_c00080{bottom:371.439120px;}
.y56_c00080{bottom:372.878220px;}
.y57_c00080{bottom:373.187820px;}
.y58_c00080{bottom:373.562760px;}
.y59_c00080{bottom:374.674200px;}
.y4a_c00080{bottom:387.409290px;}
.y4b_c00080{bottom:387.870630px;}
.y4c_c00080{bottom:388.150110px;}
.y4d_c00080{bottom:388.868880px;}
.y4e_c00080{bottom:389.764920px;}
.y4f_c00080{bottom:390.558720px;}
.y50_c00080{bottom:390.737580px;}
.y41_c00080{bottom:404.694510px;}
.y42_c00080{bottom:405.017910px;}
.y43_c00080{bottom:406.042710px;}
.y44_c00080{bottom:406.389900px;}
.y45_c00080{bottom:406.753590px;}
.y46_c00080{bottom:407.037360px;}
.y47_c00080{bottom:407.805150px;}
.y48_c00080{bottom:408.084930px;}
.y49_c00080{bottom:408.417660px;}
.y39_c00080{bottom:419.010450px;}
.y3a_c00080{bottom:419.435790px;}
.y3b_c00080{bottom:419.973420px;}
.y3c_c00080{bottom:421.177320px;}
.y3d_c00080{bottom:421.572000px;}
.y3e_c00080{bottom:422.544450px;}
.y3f_c00080{bottom:423.158520px;}
.y40_c00080{bottom:424.226010px;}
.y38_c00080{bottom:438.233580px;}
.y30_c00080{bottom:451.958850px;}
.y31_c00080{bottom:452.496150px;}
.y32_c00080{bottom:453.172290px;}
.y33_c00080{bottom:454.850130px;}
.y34_c00080{bottom:456.365880px;}
.y35_c00080{bottom:456.927120px;}
.y36_c00080{bottom:458.067870px;}
.y37_c00080{bottom:458.530260px;}
.y26_c00080{bottom:470.048850px;}
.y27_c00080{bottom:470.211480px;}
.y28_c00080{bottom:470.399040px;}
.y29_c00080{bottom:470.894880px;}
.y2a_c00080{bottom:471.167070px;}
.y2b_c00080{bottom:471.445620px;}
.y2c_c00080{bottom:472.145580px;}
.y2d_c00080{bottom:472.381260px;}
.y2e_c00080{bottom:472.621740px;}
.y2f_c00080{bottom:473.224170px;}
.y1f_c00080{bottom:488.414790px;}
.y20_c00080{bottom:489.064800px;}
.y21_c00080{bottom:489.471420px;}
.y22_c00080{bottom:490.059570px;}
.y23_c00080{bottom:490.439940px;}
.y24_c00080{bottom:491.765010px;}
.y25_c00080{bottom:492.064230px;}
.y18_c00080{bottom:502.193760px;}
.y19_c00080{bottom:503.343120px;}
.y1a_c00080{bottom:505.122150px;}
.y1b_c00080{bottom:505.752750px;}
.y1c_c00080{bottom:507.331350px;}
.y1d_c00080{bottom:508.307490px;}
.y1e_c00080{bottom:508.863990px;}
.yd_c00080{bottom:521.635110px;}
.ye_c00080{bottom:522.122760px;}
.yf_c00080{bottom:522.674610px;}
.y10_c00080{bottom:523.050090px;}
.y11_c00080{bottom:523.375830px;}
.y12_c00080{bottom:523.709700px;}
.y13_c00080{bottom:524.061480px;}
.y14_c00080{bottom:524.751840px;}
.y15_c00080{bottom:525.262230px;}
.y16_c00080{bottom:526.272750px;}
.y17_c00080{bottom:526.499850px;}
.y6_c00080{bottom:538.920660px;}
.y7_c00080{bottom:539.378970px;}
.y8_c00080{bottom:540.815190px;}
.y9_c00080{bottom:541.418460px;}
.ya_c00080{bottom:541.632390px;}
.yb_c00080{bottom:542.127210px;}
.yc_c00080{bottom:542.365500px;}
.y1_c00080{bottom:555.393000px;}
.y2_c00080{bottom:556.409610px;}
.y3_c00080{bottom:557.532810px;}
.y4_c00080{bottom:559.007790px;}
.y5_c00080{bottom:559.473180px;}
.h4_c00080{height:58.811759px;}
.hc_c00080{height:59.861969px;}
.h9_c00080{height:60.912179px;}
.h6_c00080{height:61.962389px;}
.ha_c00080{height:63.012599px;}
.h5_c00080{height:64.062809px;}
.h3_c00080{height:65.113019px;}
.h7_c00080{height:66.163229px;}
.h8_c00080{height:67.213439px;}
.h2_c00080{height:70.364069px;}
.hb_c00080{height:72.464489px;}
.h1_c00080{height:612.000000px;}
.h0_c00080{height:612.300000px;}
.w0_c00080{width:368.820000px;}
.w1_c00080{width:369.000000px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:17.331420px;}
.x16_c00080{left:18.621180px;}
.x28_c00080{left:19.705410px;}
.x2f_c00080{left:20.791740px;}
.x53_c00080{left:22.143660px;}
.x1_c00080{left:25.822500px;}
.x37_c00080{left:28.261740px;}
.x44_c00080{left:29.341410px;}
.x21_c00080{left:32.277030px;}
.x89_c00080{left:33.754710px;}
.x54_c00080{left:38.052330px;}
.x49_c00080{left:40.501320px;}
.x29_c00080{left:42.068610px;}
.x30_c00080{left:43.503630px;}
.xd_c00080{left:44.783220px;}
.x8a_c00080{left:45.906570px;}
.x22_c00080{left:47.882520px;}
.x38_c00080{left:51.409530px;}
.x7_c00080{left:52.551840px;}
.x3f_c00080{left:53.889330px;}
.x6e_c00080{left:56.440440px;}
.x6b_c00080{left:57.520410px;}
.x63_c00080{left:59.682780px;}
.x1c_c00080{left:61.377750px;}
.x31_c00080{left:62.819850px;}
.x17_c00080{left:64.609590px;}
.x4d_c00080{left:67.553910px;}
.x2a_c00080{left:70.248360px;}
.x86_c00080{left:72.103470px;}
.x40_c00080{left:73.865730px;}
.xe_c00080{left:75.451950px;}
.x2_c00080{left:76.653000px;}
.x65_c00080{left:79.396980px;}
.x4a_c00080{left:80.498610px;}
.x55_c00080{left:82.040460px;}
.x69_c00080{left:84.797970px;}
.x32_c00080{left:87.225360px;}
.x1d_c00080{left:88.461450px;}
.x76_c00080{left:90.043680px;}
.x6f_c00080{left:91.546980px;}
.x5e_c00080{left:94.520370px;}
.xf_c00080{left:96.326790px;}
.x79_c00080{left:98.030460px;}
.x56_c00080{left:103.106040px;}
.x66_c00080{left:107.752320px;}
.x4e_c00080{left:109.883040px;}
.x23_c00080{left:111.944280px;}
.x7a_c00080{left:113.153520px;}
.x10_c00080{left:114.414510px;}
.x70_c00080{left:117.472860px;}
.x45_c00080{left:119.844210px;}
.x39_c00080{left:124.633320px;}
.x1e_c00080{left:127.622850px;}
.x59_c00080{left:129.758310px;}
.x7f_c00080{left:131.515530px;}
.x3_c00080{left:132.813000px;}
.x4b_c00080{left:133.951350px;}
.x18_c00080{left:135.778980px;}
.x83_c00080{left:137.456760px;}
.x2b_c00080{left:140.184780px;}
.x33_c00080{left:141.943170px;}
.x72_c00080{left:143.126640px;}
.x78_c00080{left:144.153660px;}
.x3a_c00080{left:149.420790px;}
.x87_c00080{left:150.688410px;}
.x11_c00080{left:152.523540px;}
.x73_c00080{left:155.548620px;}
.x34_c00080{left:159.876450px;}
.x19_c00080{left:161.006460px;}
.x8_c00080{left:163.003290px;}
.x57_c00080{left:168.660720px;}
.x5f_c00080{left:171.486150px;}
.x4f_c00080{left:172.968780px;}
.x3b_c00080{left:175.408410px;}
.x67_c00080{left:179.587560px;}
.x6c_c00080{left:185.255970px;}
.x60_c00080{left:186.339090px;}
.x5a_c00080{left:188.091810px;}
.x41_c00080{left:189.195060px;}
.x12_c00080{left:190.868070px;}
.x24_c00080{left:193.507830px;}
.x3c_c00080{left:195.674340px;}
.x7c_c00080{left:197.949660px;}
.x50_c00080{left:200.340240px;}
.x2c_c00080{left:203.367240px;}
.x71_c00080{left:204.429630px;}
.x4_c00080{left:206.562000px;}
.x77_c00080{left:208.122840px;}
.x9_c00080{left:209.448300px;}
.x5b_c00080{left:210.756390px;}
.x4c_c00080{left:212.029080px;}
.x25_c00080{left:213.169980px;}
.x46_c00080{left:216.708660px;}
.x13_c00080{left:219.238710px;}
.x6a_c00080{left:221.174040px;}
.x80_c00080{left:222.253800px;}
.x1a_c00080{left:224.180160px;}
.xa_c00080{left:225.922110px;}
.x84_c00080{left:228.735270px;}
.x5_c00080{left:229.831500px;}
.x35_c00080{left:231.999570px;}
.x26_c00080{left:233.222190px;}
.x68_c00080{left:238.459110px;}
.x58_c00080{left:239.985780px;}
.x1f_c00080{left:241.331220px;}
.x5c_c00080{left:242.655120px;}
.x74_c00080{left:244.127550px;}
.x42_c00080{left:245.841840px;}
.x3d_c00080{left:250.495410px;}
.x47_c00080{left:252.736380px;}
.x7b_c00080{left:255.201840px;}
.x85_c00080{left:256.280280px;}
.x43_c00080{left:258.611370px;}
.x20_c00080{left:261.319230px;}
.xb_c00080{left:264.018450px;}
.x81_c00080{left:266.812620px;}
.x75_c00080{left:268.162650px;}
.x3e_c00080{left:270.486810px;}
.x7d_c00080{left:272.754570px;}
.x2d_c00080{left:274.286070px;}
.x14_c00080{left:275.391960px;}
.x61_c00080{left:277.617600px;}
.x36_c00080{left:280.497120px;}
.xc_c00080{left:282.385530px;}
.x27_c00080{left:283.451730px;}
.x1b_c00080{left:285.506040px;}
.x15_c00080{left:288.022470px;}
.x2e_c00080{left:293.579040px;}
.x51_c00080{left:299.198760px;}
.x82_c00080{left:300.300000px;}
.x6d_c00080{left:302.458830px;}
.x62_c00080{left:304.352280px;}
.x64_c00080{left:306.243330px;}
.x48_c00080{left:311.234550px;}
.x5d_c00080{left:312.323130px;}
.x8b_c00080{left:314.339910px;}
.x52_c00080{left:315.567930px;}
.x88_c00080{left:317.041950px;}
.x7e_c00080{left:319.204140px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
.fs2_c00080{font-size:52.277119pt;}
.fsa_c00080{font-size:53.210639pt;}
.fs7_c00080{font-size:54.144159pt;}
.fs4_c00080{font-size:55.077679pt;}
.fs8_c00080{font-size:56.011199pt;}
.fs3_c00080{font-size:56.944719pt;}
.fs1_c00080{font-size:57.878239pt;}
.fs5_c00080{font-size:58.811759pt;}
.fs6_c00080{font-size:59.745279pt;}
.fs0_c00080{font-size:62.545839pt;}
.fs9_c00080{font-size:64.412879pt;}
.y0_c00080{bottom:0.000000pt;}
.yf8_c00080{bottom:30.561787pt;}
.yf7_c00080{bottom:30.561840pt;}
.yf9_c00080{bottom:30.561973pt;}
.yf2_c00080{bottom:30.562400pt;}
.yf1_c00080{bottom:30.562453pt;}
.yf6_c00080{bottom:30.562507pt;}
.yf4_c00080{bottom:30.562587pt;}
.yf3_c00080{bottom:30.562693pt;}
.yf5_c00080{bottom:30.563120pt;}
.yf0_c00080{bottom:45.925467pt;}
.yee_c00080{bottom:45.925787pt;}
.yef_c00080{bottom:45.926000pt;}
.yed_c00080{bottom:45.926400pt;}
.yec_c00080{bottom:45.926587pt;}
.yeb_c00080{bottom:45.926933pt;}
.ye9_c00080{bottom:45.927013pt;}
.yea_c00080{bottom:45.927413pt;}
.ye3_c00080{bottom:59.302800pt;}
.ye7_c00080{bottom:59.302880pt;}
.ye8_c00080{bottom:59.303040pt;}
.ye4_c00080{bottom:59.303120pt;}
.ye5_c00080{bottom:59.303280pt;}
.ye6_c00080{bottom:59.303467pt;}
.yde_c00080{bottom:75.392240pt;}
.ydd_c00080{bottom:75.392320pt;}
.ye0_c00080{bottom:75.392640pt;}
.ydf_c00080{bottom:75.392667pt;}
.ye1_c00080{bottom:75.392800pt;}
.ye2_c00080{bottom:75.393067pt;}
.ydc_c00080{bottom:90.848507pt;}
.ydb_c00080{bottom:90.848960pt;}
.yd9_c00080{bottom:90.849013pt;}
.yda_c00080{bottom:90.849333pt;}
.yd2_c00080{bottom:107.489547pt;}
.yd4_c00080{bottom:107.489867pt;}
.yd3_c00080{bottom:107.489947pt;}
.yd5_c00080{bottom:107.490400pt;}
.yd7_c00080{bottom:107.490613pt;}
.yd6_c00080{bottom:107.491067pt;}
.yd8_c00080{bottom:107.491173pt;}
.yd0_c00080{bottom:121.172613pt;}
.yd1_c00080{bottom:121.172800pt;}
.ycf_c00080{bottom:121.172987pt;}
.yce_c00080{bottom:121.173307pt;}
.ycb_c00080{bottom:121.173653pt;}
.ycc_c00080{bottom:121.173813pt;}
.ycd_c00080{bottom:121.173920pt;}
.yca_c00080{bottom:121.174240pt;}
.yc8_c00080{bottom:121.174480pt;}
.yc9_c00080{bottom:121.174560pt;}
.yc0_c00080{bottom:133.125867pt;}
.yc1_c00080{bottom:133.799440pt;}
.yc2_c00080{bottom:134.783387pt;}
.yc3_c00080{bottom:135.012747pt;}
.yc4_c00080{bottom:135.288960pt;}
.yc5_c00080{bottom:135.970107pt;}
.yc6_c00080{bottom:136.433440pt;}
.yc7_c00080{bottom:137.552960pt;}
.yb7_c00080{bottom:148.486293pt;}
.yb8_c00080{bottom:149.182747pt;}
.yb9_c00080{bottom:149.278213pt;}
.yba_c00080{bottom:149.433467pt;}
.ybb_c00080{bottom:149.648640pt;}
.ybc_c00080{bottom:150.488507pt;}
.ybd_c00080{bottom:150.747813pt;}
.ybe_c00080{bottom:151.731440pt;}
.ybf_c00080{bottom:151.885813pt;}
.yb4_c00080{bottom:165.984400pt;}
.yb5_c00080{bottom:165.984853pt;}
.yb3_c00080{bottom:165.984907pt;}
.yb2_c00080{bottom:165.984960pt;}
.yaf_c00080{bottom:165.985093pt;}
.yb0_c00080{bottom:165.985200pt;}
.yae_c00080{bottom:165.985440pt;}
.yb6_c00080{bottom:165.985493pt;}
.yb1_c00080{bottom:165.985547pt;}
.yab_c00080{bottom:181.770587pt;}
.ya9_c00080{bottom:181.770640pt;}
.yac_c00080{bottom:181.771040pt;}
.yaa_c00080{bottom:181.771227pt;}
.ya8_c00080{bottom:181.771253pt;}
.ya6_c00080{bottom:181.771387pt;}
.yad_c00080{bottom:181.771573pt;}
.ya5_c00080{bottom:181.771760pt;}
.ya7_c00080{bottom:181.771867pt;}
.ya0_c00080{bottom:196.331040pt;}
.y9f_c00080{bottom:196.331067pt;}
.ya2_c00080{bottom:196.331413pt;}
.ya1_c00080{bottom:196.331493pt;}
.y9e_c00080{bottom:196.331680pt;}
.ya4_c00080{bottom:196.331787pt;}
.ya3_c00080{bottom:196.331867pt;}
.y9d_c00080{bottom:196.332000pt;}
.y9b_c00080{bottom:211.350640pt;}
.y9c_c00080{bottom:211.350960pt;}
.y9a_c00080{bottom:211.351280pt;}
.y99_c00080{bottom:211.351867pt;}
.y97_c00080{bottom:211.352160pt;}
.y98_c00080{bottom:211.352480pt;}
.y96_c00080{bottom:226.504800pt;}
.y95_c00080{bottom:226.505147pt;}
.y94_c00080{bottom:226.505200pt;}
.y93_c00080{bottom:226.505360pt;}
.y92_c00080{bottom:226.505680pt;}
.y91_c00080{bottom:226.505867pt;}
.y90_c00080{bottom:226.506453pt;}
.y8f_c00080{bottom:226.506560pt;}
.y8e_c00080{bottom:226.506640pt;}
.y8d_c00080{bottom:226.507307pt;}
.y86_c00080{bottom:242.082453pt;}
.y87_c00080{bottom:242.083067pt;}
.y85_c00080{bottom:242.083120pt;}
.y88_c00080{bottom:242.083547pt;}
.y8b_c00080{bottom:242.083573pt;}
.y89_c00080{bottom:242.083867pt;}
.y8a_c00080{bottom:242.083893pt;}
.y8c_c00080{bottom:242.084000pt;}
.y83_c00080{bottom:257.236027pt;}
.y84_c00080{bottom:257.236453pt;}
.y82_c00080{bottom:257.236613pt;}
.y81_c00080{bottom:257.236667pt;}
.y7f_c00080{bottom:257.236933pt;}
.y80_c00080{bottom:257.237147pt;}
.y7e_c00080{bottom:257.237520pt;}
.y7d_c00080{bottom:257.237627pt;}
.y7c_c00080{bottom:257.237707pt;}
.y73_c00080{bottom:271.152587pt;}
.y74_c00080{bottom:271.325840pt;}
.y75_c00080{bottom:271.795600pt;}
.y76_c00080{bottom:272.205120pt;}
.y77_c00080{bottom:272.775307pt;}
.y78_c00080{bottom:272.996827pt;}
.y79_c00080{bottom:273.309147pt;}
.y7a_c00080{bottom:273.755253pt;}
.y7b_c00080{bottom:273.991467pt;}
.y6b_c00080{bottom:284.837787pt;}
.y6c_c00080{bottom:285.135280pt;}
.y6d_c00080{bottom:285.955973pt;}
.y6e_c00080{bottom:286.349147pt;}
.y6f_c00080{bottom:287.573253pt;}
.y70_c00080{bottom:288.457547pt;}
.y71_c00080{bottom:288.905280pt;}
.y72_c00080{bottom:290.028773pt;}
.y61_c00080{bottom:298.759307pt;}
.y62_c00080{bottom:299.268907pt;}
.y63_c00080{bottom:299.617333pt;}
.y64_c00080{bottom:299.999307pt;}
.y65_c00080{bottom:300.408533pt;}
.y66_c00080{bottom:301.586080pt;}
.y67_c00080{bottom:302.096693pt;}
.y68_c00080{bottom:303.245227pt;}
.y69_c00080{bottom:303.942213pt;}
.y6a_c00080{bottom:304.247893pt;}
.y5a_c00080{bottom:312.442053pt;}
.y5b_c00080{bottom:312.679147pt;}
.y5c_c00080{bottom:313.532933pt;}
.y5d_c00080{bottom:314.672613pt;}
.y5e_c00080{bottom:315.854347pt;}
.y5f_c00080{bottom:316.339440pt;}
.y60_c00080{bottom:317.658533pt;}
.y51_c00080{bottom:328.283067pt;}
.y52_c00080{bottom:328.525467pt;}
.y53_c00080{bottom:328.967947pt;}
.y54_c00080{bottom:329.811973pt;}
.y55_c00080{bottom:330.168107pt;}
.y56_c00080{bottom:331.447307pt;}
.y57_c00080{bottom:331.722507pt;}
.y58_c00080{bottom:332.055787pt;}
.y59_c00080{bottom:333.043733pt;}
.y4a_c00080{bottom:344.363813pt;}
.y4b_c00080{bottom:344.773893pt;}
.y4c_c00080{bottom:345.022320pt;}
.y4d_c00080{bottom:345.661227pt;}
.y4e_c00080{bottom:346.457707pt;}
.y4f_c00080{bottom:347.163307pt;}
.y50_c00080{bottom:347.322293pt;}
.y41_c00080{bottom:359.728453pt;}
.y42_c00080{bottom:360.015920pt;}
.y43_c00080{bottom:360.926853pt;}
.y44_c00080{bottom:361.235467pt;}
.y45_c00080{bottom:361.558747pt;}
.y46_c00080{bottom:361.810987pt;}
.y47_c00080{bottom:362.493467pt;}
.y48_c00080{bottom:362.742160pt;}
.y49_c00080{bottom:363.037920pt;}
.y39_c00080{bottom:372.453733pt;}
.y3a_c00080{bottom:372.831813pt;}
.y3b_c00080{bottom:373.309707pt;}
.y3c_c00080{bottom:374.379840pt;}
.y3d_c00080{bottom:374.730667pt;}
.y3e_c00080{bottom:375.595067pt;}
.y3f_c00080{bottom:376.140907pt;}
.y40_c00080{bottom:377.089787pt;}
.y38_c00080{bottom:389.540960pt;}
.y30_c00080{bottom:401.741200pt;}
.y31_c00080{bottom:402.218800pt;}
.y32_c00080{bottom:402.819813pt;}
.y33_c00080{bottom:404.311227pt;}
.y34_c00080{bottom:405.658560pt;}
.y35_c00080{bottom:406.157440pt;}
.y36_c00080{bottom:407.171440pt;}
.y37_c00080{bottom:407.582453pt;}
.y26_c00080{bottom:417.821200pt;}
.y27_c00080{bottom:417.965760pt;}
.y28_c00080{bottom:418.132480pt;}
.y29_c00080{bottom:418.573227pt;}
.y2a_c00080{bottom:418.815173pt;}
.y2b_c00080{bottom:419.062773pt;}
.y2c_c00080{bottom:419.684960pt;}
.y2d_c00080{bottom:419.894453pt;}
.y2e_c00080{bottom:420.108213pt;}
.y2f_c00080{bottom:420.643707pt;}
.y1f_c00080{bottom:434.146480pt;}
.y20_c00080{bottom:434.724267pt;}
.y21_c00080{bottom:435.085707pt;}
.y22_c00080{bottom:435.608507pt;}
.y23_c00080{bottom:435.946613pt;}
.y24_c00080{bottom:437.124453pt;}
.y25_c00080{bottom:437.390427pt;}
.y18_c00080{bottom:446.394453pt;}
.y19_c00080{bottom:447.416107pt;}
.y1a_c00080{bottom:448.997467pt;}
.y1b_c00080{bottom:449.558000pt;}
.y1c_c00080{bottom:450.961200pt;}
.y1d_c00080{bottom:451.828880pt;}
.y1e_c00080{bottom:452.323547pt;}
.yd_c00080{bottom:463.675653pt;}
.ye_c00080{bottom:464.109120pt;}
.yf_c00080{bottom:464.599653pt;}
.y10_c00080{bottom:464.933413pt;}
.y11_c00080{bottom:465.222960pt;}
.y12_c00080{bottom:465.519733pt;}
.y13_c00080{bottom:465.832427pt;}
.y14_c00080{bottom:466.446080pt;}
.y15_c00080{bottom:466.899760pt;}
.y16_c00080{bottom:467.798000pt;}
.y17_c00080{bottom:467.999867pt;}
.y6_c00080{bottom:479.040587pt;}
.y7_c00080{bottom:479.447973pt;}
.y8_c00080{bottom:480.724613pt;}
.y9_c00080{bottom:481.260853pt;}
.ya_c00080{bottom:481.451013pt;}
.yb_c00080{bottom:481.890853pt;}
.yc_c00080{bottom:482.102667pt;}
.y1_c00080{bottom:493.682667pt;}
.y2_c00080{bottom:494.586320pt;}
.y3_c00080{bottom:495.584720pt;}
.y4_c00080{bottom:496.895813pt;}
.y5_c00080{bottom:497.309493pt;}
.h4_c00080{height:52.277119pt;}
.hc_c00080{height:53.210639pt;}
.h9_c00080{height:54.144159pt;}
.h6_c00080{height:55.077679pt;}
.ha_c00080{height:56.011199pt;}
.h5_c00080{height:56.944719pt;}
.h3_c00080{height:57.878239pt;}
.h7_c00080{height:58.811759pt;}
.h8_c00080{height:59.745279pt;}
.h2_c00080{height:62.545839pt;}
.hb_c00080{height:64.412879pt;}
.h1_c00080{height:544.000000pt;}
.h0_c00080{height:544.266667pt;}
.w0_c00080{width:327.840000pt;}
.w1_c00080{width:328.000000pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:15.405707pt;}
.x16_c00080{left:16.552160pt;}
.x28_c00080{left:17.515920pt;}
.x2f_c00080{left:18.481547pt;}
.x53_c00080{left:19.683253pt;}
.x1_c00080{left:22.953333pt;}
.x37_c00080{left:25.121547pt;}
.x44_c00080{left:26.081253pt;}
.x21_c00080{left:28.690693pt;}
.x89_c00080{left:30.004187pt;}
.x54_c00080{left:33.824293pt;}
.x49_c00080{left:36.001173pt;}
.x29_c00080{left:37.394320pt;}
.x30_c00080{left:38.669893pt;}
.xd_c00080{left:39.807307pt;}
.x8a_c00080{left:40.805840pt;}
.x22_c00080{left:42.562240pt;}
.x38_c00080{left:45.697360pt;}
.x7_c00080{left:46.712747pt;}
.x3f_c00080{left:47.901627pt;}
.x6e_c00080{left:50.169280pt;}
.x6b_c00080{left:51.129253pt;}
.x63_c00080{left:53.051360pt;}
.x1c_c00080{left:54.558000pt;}
.x31_c00080{left:55.839867pt;}
.x17_c00080{left:57.430747pt;}
.x4d_c00080{left:60.047920pt;}
.x2a_c00080{left:62.442987pt;}
.x86_c00080{left:64.091973pt;}
.x40_c00080{left:65.658427pt;}
.xe_c00080{left:67.068400pt;}
.x2_c00080{left:68.136000pt;}
.x65_c00080{left:70.575093pt;}
.x4a_c00080{left:71.554320pt;}
.x55_c00080{left:72.924853pt;}
.x69_c00080{left:75.375973pt;}
.x32_c00080{left:77.533653pt;}
.x1d_c00080{left:78.632400pt;}
.x76_c00080{left:80.038827pt;}
.x6f_c00080{left:81.375093pt;}
.x5e_c00080{left:84.018107pt;}
.xf_c00080{left:85.623813pt;}
.x79_c00080{left:87.138187pt;}
.x56_c00080{left:91.649813pt;}
.x66_c00080{left:95.779840pt;}
.x4e_c00080{left:97.673813pt;}
.x23_c00080{left:99.506027pt;}
.x7a_c00080{left:100.580907pt;}
.x10_c00080{left:101.701787pt;}
.x70_c00080{left:104.420320pt;}
.x45_c00080{left:106.528187pt;}
.x39_c00080{left:110.785173pt;}
.x1e_c00080{left:113.442533pt;}
.x59_c00080{left:115.340720pt;}
.x7f_c00080{left:116.902693pt;}
.x3_c00080{left:118.056000pt;}
.x4b_c00080{left:119.067867pt;}
.x18_c00080{left:120.692427pt;}
.x83_c00080{left:122.183787pt;}
.x2b_c00080{left:124.608693pt;}
.x33_c00080{left:126.171707pt;}
.x72_c00080{left:127.223680pt;}
.x78_c00080{left:128.136587pt;}
.x3a_c00080{left:132.818480pt;}
.x87_c00080{left:133.945253pt;}
.x11_c00080{left:135.576480pt;}
.x73_c00080{left:138.265440pt;}
.x34_c00080{left:142.112400pt;}
.x19_c00080{left:143.116853pt;}
.x8_c00080{left:144.891813pt;}
.x57_c00080{left:149.920640pt;}
.x5f_c00080{left:152.432133pt;}
.x4f_c00080{left:153.750027pt;}
.x3b_c00080{left:155.918587pt;}
.x67_c00080{left:159.633387pt;}
.x6c_c00080{left:164.671973pt;}
.x60_c00080{left:165.634747pt;}
.x5a_c00080{left:167.192720pt;}
.x41_c00080{left:168.173387pt;}
.x12_c00080{left:169.660507pt;}
.x24_c00080{left:172.006960pt;}
.x3c_c00080{left:173.932747pt;}
.x7c_c00080{left:175.955253pt;}
.x50_c00080{left:178.080213pt;}
.x2c_c00080{left:180.770880pt;}
.x71_c00080{left:181.715227pt;}
.x4_c00080{left:183.610667pt;}
.x77_c00080{left:184.998080pt;}
.x9_c00080{left:186.176267pt;}
.x5b_c00080{left:187.339013pt;}
.x4c_c00080{left:188.470293pt;}
.x25_c00080{left:189.484427pt;}
.x46_c00080{left:192.629920pt;}
.x13_c00080{left:194.878853pt;}
.x6a_c00080{left:196.599147pt;}
.x80_c00080{left:197.558933pt;}
.x1a_c00080{left:199.271253pt;}
.xa_c00080{left:200.819653pt;}
.x84_c00080{left:203.320240pt;}
.x5_c00080{left:204.294667pt;}
.x35_c00080{left:206.221840pt;}
.x26_c00080{left:207.308613pt;}
.x68_c00080{left:211.963653pt;}
.x58_c00080{left:213.320693pt;}
.x1f_c00080{left:214.516640pt;}
.x5c_c00080{left:215.693440pt;}
.x74_c00080{left:217.002267pt;}
.x42_c00080{left:218.526080pt;}
.x3d_c00080{left:222.662587pt;}
.x47_c00080{left:224.654560pt;}
.x7b_c00080{left:226.846080pt;}
.x85_c00080{left:227.804693pt;}
.x43_c00080{left:229.876773pt;}
.x20_c00080{left:232.283760pt;}
.xb_c00080{left:234.683067pt;}
.x81_c00080{left:237.166773pt;}
.x75_c00080{left:238.366800pt;}
.x3e_c00080{left:240.432720pt;}
.x7d_c00080{left:242.448507pt;}
.x2d_c00080{left:243.809840pt;}
.x14_c00080{left:244.792853pt;}
.x61_c00080{left:246.771200pt;}
.x36_c00080{left:249.330773pt;}
.xc_c00080{left:251.009360pt;}
.x27_c00080{left:251.957093pt;}
.x1b_c00080{left:253.783147pt;}
.x15_c00080{left:256.019973pt;}
.x2e_c00080{left:260.959147pt;}
.x51_c00080{left:265.954453pt;}
.x82_c00080{left:266.933333pt;}
.x6d_c00080{left:268.852293pt;}
.x62_c00080{left:270.535360pt;}
.x64_c00080{left:272.216293pt;}
.x48_c00080{left:276.652933pt;}
.x5d_c00080{left:277.620560pt;}
.x8b_c00080{left:279.413253pt;}
.x52_c00080{left:280.504827pt;}
.x88_c00080{left:281.815067pt;}
.x7e_c00080{left:283.737013pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00081 {
    display:none;
  }
  .loading-indicator_c00081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00081 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00081 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00081" -> "#page-container .classname_c00081")
 */
.pf_c00081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00081 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00081 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00081 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00081 {overflow:visible;}
  }
}
.c_c00081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00081 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00081:after { /* webkit #35443 */
  content: '';
}
.t_c00081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00081 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00081 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00081 { /* info for Javascript */
  display:none;
}
.l_c00081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00081:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00081 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00081.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00081;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);}
.m5b_c00081{transform:matrix(0.119571,0.003587,-0.007497,0.249888,0,0);-ms-transform:matrix(0.119571,0.003587,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.119571,0.003587,-0.007497,0.249888,0,0);}
.me4_c00081{transform:matrix(0.124032,0.004097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.124032,0.004097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.124032,0.004097,-0.008254,0.249864,0,0);}
.m30_c00081{transform:matrix(0.141022,0.004231,-0.007497,0.249888,0,0);-ms-transform:matrix(0.141022,0.004231,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.141022,0.004231,-0.007497,0.249888,0,0);}
.m54_c00081{transform:matrix(0.142311,0.004269,-0.007497,0.249888,0,0);-ms-transform:matrix(0.142311,0.004269,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.142311,0.004269,-0.007497,0.249888,0,0);}
.mfb_c00081{transform:matrix(0.144001,0.004757,-0.008254,0.249864,0,0);-ms-transform:matrix(0.144001,0.004757,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.144001,0.004757,-0.008254,0.249864,0,0);}
.ma3_c00081{transform:matrix(0.149723,0.004946,-0.008254,0.249864,0,0);-ms-transform:matrix(0.149723,0.004946,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.149723,0.004946,-0.008254,0.249864,0,0);}
.m63_c00081{transform:matrix(0.152451,0.004574,-0.007497,0.249888,0,0);-ms-transform:matrix(0.152451,0.004574,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.152451,0.004574,-0.007497,0.249888,0,0);}
.m19_c00081{transform:matrix(0.153151,0.004595,-0.007497,0.249888,0,0);-ms-transform:matrix(0.153151,0.004595,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.153151,0.004595,-0.007497,0.249888,0,0);}
.m99_c00081{transform:matrix(0.154980,0.005119,-0.008254,0.249864,0,0);-ms-transform:matrix(0.154980,0.005119,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.154980,0.005119,-0.008254,0.249864,0,0);}
.m35_c00081{transform:matrix(0.155135,0.004654,-0.007497,0.249888,0,0);-ms-transform:matrix(0.155135,0.004654,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.155135,0.004654,-0.007497,0.249888,0,0);}
.mf6_c00081{transform:matrix(0.155265,0.005129,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155265,0.005129,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155265,0.005129,-0.008254,0.249864,0,0);}
.me7_c00081{transform:matrix(0.155340,0.005131,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155340,0.005131,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155340,0.005131,-0.008254,0.249864,0,0);}
.m13_c00081{transform:matrix(0.156260,0.004688,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156260,0.004688,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156260,0.004688,-0.007497,0.249888,0,0);}
.mda_c00081{transform:matrix(0.157204,0.005193,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157204,0.005193,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157204,0.005193,-0.008254,0.249864,0,0);}
.m2d_c00081{transform:matrix(0.157694,0.004731,-0.007497,0.249888,0,0);-ms-transform:matrix(0.157694,0.004731,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.157694,0.004731,-0.007497,0.249888,0,0);}
.md1_c00081{transform:matrix(0.158469,0.005235,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158469,0.005235,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158469,0.005235,-0.008254,0.249864,0,0);}
.mf8_c00081{transform:matrix(0.160218,0.005292,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160218,0.005292,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160218,0.005292,-0.008254,0.249864,0,0);}
.m7d_c00081{transform:matrix(0.161088,0.004833,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161088,0.004833,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161088,0.004833,-0.007497,0.249888,0,0);}
.mcf_c00081{transform:matrix(0.161452,0.005333,-0.008254,0.249864,0,0);-ms-transform:matrix(0.161452,0.005333,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.161452,0.005333,-0.008254,0.249864,0,0);}
.m81_c00081{transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161942,0.004858,-0.007497,0.249888,0,0);}
.m4f_c00081{transform:matrix(0.162282,0.004868,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162282,0.004868,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162282,0.004868,-0.007497,0.249888,0,0);}
.m6e_c00081{transform:matrix(0.162627,0.004879,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162627,0.004879,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162627,0.004879,-0.007497,0.249888,0,0);}
.m57_c00081{transform:matrix(0.163247,0.004897,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163247,0.004897,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163247,0.004897,-0.007497,0.249888,0,0);}
.me0_c00081{transform:matrix(0.163721,0.005408,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163721,0.005408,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163721,0.005408,-0.008254,0.249864,0,0);}
.mdd_c00081{transform:matrix(0.164090,0.005420,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164090,0.005420,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164090,0.005420,-0.008254,0.249864,0,0);}
.m8e_c00081{transform:matrix(0.164140,0.005422,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164140,0.005422,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164140,0.005422,-0.008254,0.249864,0,0);}
.m5a_c00081{transform:matrix(0.164251,0.004928,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164251,0.004928,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164251,0.004928,-0.007497,0.249888,0,0);}
.m59_c00081{transform:matrix(0.164426,0.004933,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164426,0.004933,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164426,0.004933,-0.007497,0.249888,0,0);}
.m16_c00081{transform:matrix(0.164716,0.004941,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164716,0.004941,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164716,0.004941,-0.007497,0.249888,0,0);}
.m33_c00081{transform:matrix(0.164721,0.004942,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164721,0.004942,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164721,0.004942,-0.007497,0.249888,0,0);}
.m32_c00081{transform:matrix(0.164801,0.004944,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164801,0.004944,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164801,0.004944,-0.007497,0.249888,0,0);}
.m48_c00081{transform:matrix(0.164856,0.004946,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164856,0.004946,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164856,0.004946,-0.007497,0.249888,0,0);}
.m46_c00081{transform:matrix(0.164981,0.004949,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164981,0.004949,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164981,0.004949,-0.007497,0.249888,0,0);}
.md2_c00081{transform:matrix(0.165055,0.005452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165055,0.005452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165055,0.005452,-0.008254,0.249864,0,0);}
.me2_c00081{transform:matrix(0.165125,0.005455,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165125,0.005455,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165125,0.005455,-0.008254,0.249864,0,0);}
.m22_c00081{transform:matrix(0.165161,0.004955,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165161,0.004955,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165161,0.004955,-0.007497,0.249888,0,0);}
.m84_c00081{transform:matrix(0.165221,0.004957,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165221,0.004957,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165221,0.004957,-0.007497,0.249888,0,0);}
.mf2_c00081{transform:matrix(0.166199,0.005490,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166199,0.005490,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166199,0.005490,-0.008254,0.249864,0,0);}
.m76_c00081{transform:matrix(0.167495,0.005025,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167495,0.005025,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167495,0.005025,-0.007497,0.249888,0,0);}
.m53_c00081{transform:matrix(0.167600,0.005028,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167600,0.005028,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167600,0.005028,-0.007497,0.249888,0,0);}
.me1_c00081{transform:matrix(0.167624,0.005537,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167624,0.005537,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167624,0.005537,-0.008254,0.249864,0,0);}
.m2a_c00081{transform:matrix(0.167645,0.005029,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167645,0.005029,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167645,0.005029,-0.007497,0.249888,0,0);}
.m75_c00081{transform:matrix(0.168614,0.005058,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168614,0.005058,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168614,0.005058,-0.007497,0.249888,0,0);}
.m40_c00081{transform:matrix(0.169164,0.005075,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169164,0.005075,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169164,0.005075,-0.007497,0.249888,0,0);}
.ma_c00081{transform:matrix(0.169404,0.005082,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169404,0.005082,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169404,0.005082,-0.007497,0.249888,0,0);}
.m9b_c00081{transform:matrix(0.169787,0.005609,-0.008254,0.249864,0,0);-ms-transform:matrix(0.169787,0.005609,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.169787,0.005609,-0.008254,0.249864,0,0);}
.mfd_c00081{transform:matrix(0.170072,0.005618,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170072,0.005618,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170072,0.005618,-0.008254,0.249864,0,0);}
.m2b_c00081{transform:matrix(0.170128,0.005104,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170128,0.005104,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170128,0.005104,-0.007497,0.249888,0,0);}
.m8_c00081{transform:matrix(0.170213,0.005106,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170213,0.005106,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170213,0.005106,-0.007497,0.249888,0,0);}
.m58_c00081{transform:matrix(0.170773,0.005123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170773,0.005123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170773,0.005123,-0.007497,0.249888,0,0);}
.mc8_c00081{transform:matrix(0.171042,0.005650,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171042,0.005650,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171042,0.005650,-0.008254,0.249864,0,0);}
.m9d_c00081{transform:matrix(0.171232,0.005656,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171232,0.005656,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171232,0.005656,-0.008254,0.249864,0,0);}
.m7_c00081{transform:matrix(0.171693,0.005151,-0.007497,0.249888,0,0);-ms-transform:matrix(0.171693,0.005151,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.171693,0.005151,-0.007497,0.249888,0,0);}
.m55_c00081{transform:matrix(0.171988,0.005160,-0.007497,0.249888,0,0);-ms-transform:matrix(0.171988,0.005160,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.171988,0.005160,-0.007497,0.249888,0,0);}
.m7f_c00081{transform:matrix(0.172572,0.005177,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172572,0.005177,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172572,0.005177,-0.007497,0.249888,0,0);}
.mb_c00081{transform:matrix(0.172902,0.005187,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172902,0.005187,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172902,0.005187,-0.007497,0.249888,0,0);}
.m94_c00081{transform:matrix(0.173935,0.005746,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173935,0.005746,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173935,0.005746,-0.008254,0.249864,0,0);}
.mf4_c00081{transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174010,0.005748,-0.008254,0.249864,0,0);}
.m62_c00081{transform:matrix(0.174851,0.005246,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174851,0.005246,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174851,0.005246,-0.007497,0.249888,0,0);}
.m98_c00081{transform:matrix(0.175070,0.005783,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175070,0.005783,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175070,0.005783,-0.008254,0.249864,0,0);}
.m70_c00081{transform:matrix(0.175511,0.005265,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175511,0.005265,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175511,0.005265,-0.007497,0.249888,0,0);}
.m29_c00081{transform:matrix(0.176201,0.005286,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176201,0.005286,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176201,0.005286,-0.007497,0.249888,0,0);}
.mf3_c00081{transform:matrix(0.176514,0.005831,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176514,0.005831,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176514,0.005831,-0.008254,0.249864,0,0);}
.mc7_c00081{transform:matrix(0.176644,0.005835,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176644,0.005835,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176644,0.005835,-0.008254,0.249864,0,0);}
.m37_c00081{transform:matrix(0.176880,0.005306,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176880,0.005306,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176880,0.005306,-0.007497,0.249888,0,0);}
.mc9_c00081{transform:matrix(0.176983,0.005846,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176983,0.005846,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176983,0.005846,-0.008254,0.249864,0,0);}
.m73_c00081{transform:matrix(0.177315,0.005319,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177315,0.005319,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177315,0.005319,-0.007497,0.249888,0,0);}
.mab_c00081{transform:matrix(0.177373,0.005859,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177373,0.005859,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177373,0.005859,-0.008254,0.249864,0,0);}
.mcd_c00081{transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);}
.m4e_c00081{transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177880,0.005336,-0.007497,0.249888,0,0);}
.md0_c00081{transform:matrix(0.177913,0.005877,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177913,0.005877,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177913,0.005877,-0.008254,0.249864,0,0);}
.m2e_c00081{transform:matrix(0.178605,0.005358,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178605,0.005358,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178605,0.005358,-0.007497,0.249888,0,0);}
.mf9_c00081{transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);}
.m49_c00081{transform:matrix(0.179084,0.005373,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179084,0.005373,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179084,0.005373,-0.007497,0.249888,0,0);}
.mbf_c00081{transform:matrix(0.180482,0.005962,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180482,0.005962,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180482,0.005962,-0.008254,0.249864,0,0);}
.mdb_c00081{transform:matrix(0.180552,0.005964,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180552,0.005964,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180552,0.005964,-0.008254,0.249864,0,0);}
.m14_c00081{transform:matrix(0.180879,0.005426,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180879,0.005426,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180879,0.005426,-0.007497,0.249888,0,0);}
.m15_c00081{transform:matrix(0.181178,0.005435,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181178,0.005435,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181178,0.005435,-0.007497,0.249888,0,0);}
.mb6_c00081{transform:matrix(0.181281,0.005988,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181281,0.005988,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181281,0.005988,-0.008254,0.249864,0,0);}
.m28_c00081{transform:matrix(0.181288,0.005439,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181288,0.005439,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181288,0.005439,-0.007497,0.249888,0,0);}
.mee_c00081{transform:matrix(0.181306,0.005989,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181306,0.005989,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181306,0.005989,-0.008254,0.249864,0,0);}
.md5_c00081{transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);}
.m10_c00081{transform:matrix(0.181728,0.005452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181728,0.005452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181728,0.005452,-0.007497,0.249888,0,0);}
.m71_c00081{transform:matrix(0.181778,0.005453,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181778,0.005453,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181778,0.005453,-0.007497,0.249888,0,0);}
.me9_c00081{transform:matrix(0.181936,0.006010,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181936,0.006010,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181936,0.006010,-0.008254,0.249864,0,0);}
.mba_c00081{transform:matrix(0.182106,0.006016,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182106,0.006016,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182106,0.006016,-0.008254,0.249864,0,0);}
.m45_c00081{transform:matrix(0.182413,0.005472,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182413,0.005472,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182413,0.005472,-0.007497,0.249888,0,0);}
.m36_c00081{transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);}
.m11_c00081{transform:matrix(0.183003,0.005490,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183003,0.005490,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183003,0.005490,-0.007497,0.249888,0,0);}
.m56_c00081{transform:matrix(0.183437,0.005503,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183437,0.005503,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183437,0.005503,-0.007497,0.249888,0,0);}
.mc6_c00081{transform:matrix(0.183625,0.006066,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183625,0.006066,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183625,0.006066,-0.008254,0.249864,0,0);}
.mcc_c00081{transform:matrix(0.183865,0.006074,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183865,0.006074,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183865,0.006074,-0.008254,0.249864,0,0);}
.m3c_c00081{transform:matrix(0.184102,0.005523,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184102,0.005523,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184102,0.005523,-0.007497,0.249888,0,0);}
.m43_c00081{transform:matrix(0.184147,0.005524,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184147,0.005524,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184147,0.005524,-0.007497,0.249888,0,0);}
.md9_c00081{transform:matrix(0.184409,0.006092,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184409,0.006092,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184409,0.006092,-0.008254,0.249864,0,0);}
.me8_c00081{transform:matrix(0.184444,0.006093,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184444,0.006093,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184444,0.006093,-0.008254,0.249864,0,0);}
.m6d_c00081{transform:matrix(0.184542,0.005536,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184542,0.005536,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184542,0.005536,-0.007497,0.249888,0,0);}
.m61_c00081{transform:matrix(0.185102,0.005553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185102,0.005553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185102,0.005553,-0.007497,0.249888,0,0);}
.maa_c00081{transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);}
.mbe_c00081{transform:matrix(0.185554,0.006129,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185554,0.006129,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185554,0.006129,-0.008254,0.249864,0,0);}
.m7e_c00081{transform:matrix(0.185796,0.005574,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185796,0.005574,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185796,0.005574,-0.007497,0.249888,0,0);}
.m7a_c00081{transform:matrix(0.185991,0.005580,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185991,0.005580,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185991,0.005580,-0.007497,0.249888,0,0);}
.m39_c00081{transform:matrix(0.186046,0.005581,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186046,0.005581,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186046,0.005581,-0.007497,0.249888,0,0);}
.m9_c00081{transform:matrix(0.186231,0.005587,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186231,0.005587,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186231,0.005587,-0.007497,0.249888,0,0);}
.mfc_c00081{transform:matrix(0.186308,0.006154,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186308,0.006154,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186308,0.006154,-0.008254,0.249864,0,0);}
.m41_c00081{transform:matrix(0.186726,0.005602,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186726,0.005602,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186726,0.005602,-0.007497,0.249888,0,0);}
.m18_c00081{transform:matrix(0.186741,0.005602,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186741,0.005602,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186741,0.005602,-0.007497,0.249888,0,0);}
.m3f_c00081{transform:matrix(0.186886,0.005607,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186886,0.005607,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186886,0.005607,-0.007497,0.249888,0,0);}
.mf5_c00081{transform:matrix(0.187003,0.006177,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187003,0.006177,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187003,0.006177,-0.008254,0.249864,0,0);}
.m4b_c00081{transform:matrix(0.187041,0.005611,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187041,0.005611,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187041,0.005611,-0.007497,0.249888,0,0);}
.m2c_c00081{transform:matrix(0.187051,0.005612,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187051,0.005612,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187051,0.005612,-0.007497,0.249888,0,0);}
.m64_c00081{transform:matrix(0.187291,0.005619,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187291,0.005619,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187291,0.005619,-0.007497,0.249888,0,0);}
.m1f_c00081{transform:matrix(0.187576,0.005627,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187576,0.005627,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187576,0.005627,-0.007497,0.249888,0,0);}
.ma4_c00081{transform:matrix(0.187603,0.006197,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187603,0.006197,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187603,0.006197,-0.008254,0.249864,0,0);}
.m86_c00081{transform:matrix(0.188007,0.006210,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188007,0.006210,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188007,0.006210,-0.008254,0.249864,0,0);}
.mca_c00081{transform:matrix(0.188632,0.006231,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188632,0.006231,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188632,0.006231,-0.008254,0.249864,0,0);}
.m66_c00081{transform:matrix(0.188830,0.005665,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188830,0.005665,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188830,0.005665,-0.007497,0.249888,0,0);}
.m65_c00081{transform:matrix(0.189270,0.005678,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189270,0.005678,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189270,0.005678,-0.007497,0.249888,0,0);}
.m4c_c00081{transform:matrix(0.189330,0.005680,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189330,0.005680,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189330,0.005680,-0.007497,0.249888,0,0);}
.m47_c00081{transform:matrix(0.189640,0.005689,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189640,0.005689,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189640,0.005689,-0.007497,0.249888,0,0);}
.m90_c00081{transform:matrix(0.189742,0.006268,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189742,0.006268,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189742,0.006268,-0.008254,0.249864,0,0);}
.m96_c00081{transform:matrix(0.189871,0.006272,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189871,0.006272,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189871,0.006272,-0.008254,0.249864,0,0);}
.m5_c00081{transform:matrix(0.189910,0.005697,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189910,0.005697,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189910,0.005697,-0.007497,0.249888,0,0);}
.m6c_c00081{transform:matrix(0.190289,0.005709,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190289,0.005709,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190289,0.005709,-0.007497,0.249888,0,0);}
.m3_c00081{transform:matrix(0.190424,0.005713,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190424,0.005713,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190424,0.005713,-0.007497,0.249888,0,0);}
.m34_c00081{transform:matrix(0.190509,0.005715,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190509,0.005715,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190509,0.005715,-0.007497,0.249888,0,0);}
.m50_c00081{transform:matrix(0.190774,0.005723,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190774,0.005723,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190774,0.005723,-0.007497,0.249888,0,0);}
.m27_c00081{transform:matrix(0.190779,0.005723,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190779,0.005723,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190779,0.005723,-0.007497,0.249888,0,0);}
.m7c_c00081{transform:matrix(0.191284,0.005739,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191284,0.005739,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191284,0.005739,-0.007497,0.249888,0,0);}
.m2f_c00081{transform:matrix(0.191294,0.005739,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191294,0.005739,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191294,0.005739,-0.007497,0.249888,0,0);}
.md_c00081{transform:matrix(0.191679,0.005750,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191679,0.005750,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191679,0.005750,-0.007497,0.249888,0,0);}
.m82_c00081{transform:matrix(0.191794,0.005754,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191794,0.005754,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191794,0.005754,-0.007497,0.249888,0,0);}
.me5_c00081{transform:matrix(0.192345,0.006354,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192345,0.006354,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192345,0.006354,-0.008254,0.249864,0,0);}
.m68_c00081{transform:matrix(0.192683,0.005780,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192683,0.005780,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192683,0.005780,-0.007497,0.249888,0,0);}
.md3_c00081{transform:matrix(0.192975,0.006375,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192975,0.006375,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192975,0.006375,-0.008254,0.249864,0,0);}
.me3_c00081{transform:matrix(0.193010,0.006376,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193010,0.006376,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193010,0.006376,-0.008254,0.249864,0,0);}
.mc4_c00081{transform:matrix(0.193080,0.006378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193080,0.006378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193080,0.006378,-0.008254,0.249864,0,0);}
.mf0_c00081{transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193085,0.006378,-0.008254,0.249864,0,0);}
.m78_c00081{transform:matrix(0.193483,0.005804,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193483,0.005804,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193483,0.005804,-0.007497,0.249888,0,0);}
.mb4_c00081{transform:matrix(0.193524,0.006393,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193524,0.006393,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193524,0.006393,-0.008254,0.249864,0,0);}
.mc5_c00081{transform:matrix(0.193809,0.006402,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193809,0.006402,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193809,0.006402,-0.008254,0.249864,0,0);}
.mdc_c00081{transform:matrix(0.193889,0.006405,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193889,0.006405,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193889,0.006405,-0.008254,0.249864,0,0);}
.m97_c00081{transform:matrix(0.193949,0.006407,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193949,0.006407,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193949,0.006407,-0.008254,0.249864,0,0);}
.m67_c00081{transform:matrix(0.194283,0.005828,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194283,0.005828,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194283,0.005828,-0.007497,0.249888,0,0);}
.m79_c00081{transform:matrix(0.194348,0.005830,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194348,0.005830,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194348,0.005830,-0.007497,0.249888,0,0);}
.m5e_c00081{transform:matrix(0.194532,0.005836,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194532,0.005836,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194532,0.005836,-0.007497,0.249888,0,0);}
.m3a_c00081{transform:matrix(0.194642,0.005839,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194642,0.005839,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194642,0.005839,-0.007497,0.249888,0,0);}
.mbc_c00081{transform:matrix(0.194969,0.006440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194969,0.006440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194969,0.006440,-0.008254,0.249864,0,0);}
.m80_c00081{transform:matrix(0.195197,0.005856,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195197,0.005856,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195197,0.005856,-0.007497,0.249888,0,0);}
.m4a_c00081{transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195362,0.005861,-0.007497,0.249888,0,0);}
.m6_c00081{transform:matrix(0.195662,0.005870,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195662,0.005870,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195662,0.005870,-0.007497,0.249888,0,0);}
.m1a_c00081{transform:matrix(0.195987,0.005880,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195987,0.005880,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195987,0.005880,-0.007497,0.249888,0,0);}
.m1_c00081{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m3b_c00081{transform:matrix(0.196711,0.005901,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196711,0.005901,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196711,0.005901,-0.007497,0.249888,0,0);}
.m17_c00081{transform:matrix(0.197246,0.005917,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197246,0.005917,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197246,0.005917,-0.007497,0.249888,0,0);}
.mf1_c00081{transform:matrix(0.197287,0.006517,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197287,0.006517,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197287,0.006517,-0.008254,0.249864,0,0);}
.mc_c00081{transform:matrix(0.197466,0.005924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197466,0.005924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197466,0.005924,-0.007497,0.249888,0,0);}
.md8_c00081{transform:matrix(0.197522,0.006525,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197522,0.006525,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197522,0.006525,-0.008254,0.249864,0,0);}
.m21_c00081{transform:matrix(0.197851,0.005936,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197851,0.005936,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197851,0.005936,-0.007497,0.249888,0,0);}
.me6_c00081{transform:matrix(0.198052,0.006542,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198052,0.006542,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198052,0.006542,-0.008254,0.249864,0,0);}
.m51_c00081{transform:matrix(0.198056,0.005942,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198056,0.005942,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198056,0.005942,-0.007497,0.249888,0,0);}
.m3e_c00081{transform:matrix(0.198306,0.005949,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198306,0.005949,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198306,0.005949,-0.007497,0.249888,0,0);}
.mb7_c00081{transform:matrix(0.198392,0.006553,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198392,0.006553,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198392,0.006553,-0.008254,0.249864,0,0);}
.m74_c00081{transform:matrix(0.198696,0.005961,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198696,0.005961,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198696,0.005961,-0.007497,0.249888,0,0);}
.m9c_c00081{transform:matrix(0.199221,0.006581,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199221,0.006581,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199221,0.006581,-0.008254,0.249864,0,0);}
.m95_c00081{transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);}
.m93_c00081{transform:matrix(0.199516,0.006591,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199516,0.006591,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199516,0.006591,-0.008254,0.249864,0,0);}
.mea_c00081{transform:matrix(0.199601,0.006593,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199601,0.006593,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199601,0.006593,-0.008254,0.249864,0,0);}
.ma7_c00081{transform:matrix(0.199621,0.006594,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199621,0.006594,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199621,0.006594,-0.008254,0.249864,0,0);}
.mdf_c00081{transform:matrix(0.199971,0.006606,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199971,0.006606,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199971,0.006606,-0.008254,0.249864,0,0);}
.m52_c00081{transform:matrix(0.200495,0.006015,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200495,0.006015,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200495,0.006015,-0.007497,0.249888,0,0);}
.m12_c00081{transform:matrix(0.200505,0.006015,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200505,0.006015,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200505,0.006015,-0.007497,0.249888,0,0);}
.m72_c00081{transform:matrix(0.200540,0.006016,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200540,0.006016,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200540,0.006016,-0.007497,0.249888,0,0);}
.mcb_c00081{transform:matrix(0.200795,0.006633,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200795,0.006633,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200795,0.006633,-0.008254,0.249864,0,0);}
.ma5_c00081{transform:matrix(0.200890,0.006636,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200890,0.006636,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200890,0.006636,-0.008254,0.249864,0,0);}
.mb1_c00081{transform:matrix(0.200995,0.006639,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200995,0.006639,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200995,0.006639,-0.008254,0.249864,0,0);}
.m60_c00081{transform:matrix(0.201569,0.006047,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201569,0.006047,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201569,0.006047,-0.007497,0.249888,0,0);}
.mc3_c00081{transform:matrix(0.202085,0.006675,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202085,0.006675,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202085,0.006675,-0.008254,0.249864,0,0);}
.m2_c00081{transform:matrix(0.202119,0.006064,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202119,0.006064,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202119,0.006064,-0.007497,0.249888,0,0);}
.m69_c00081{transform:matrix(0.202364,0.006071,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202364,0.006071,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202364,0.006071,-0.007497,0.249888,0,0);}
.mfa_c00081{transform:matrix(0.202874,0.006702,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202874,0.006702,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202874,0.006702,-0.008254,0.249864,0,0);}
.m38_c00081{transform:matrix(0.202909,0.006087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202909,0.006087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202909,0.006087,-0.007497,0.249888,0,0);}
.mef_c00081{transform:matrix(0.202924,0.006703,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202924,0.006703,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202924,0.006703,-0.008254,0.249864,0,0);}
.m5c_c00081{transform:matrix(0.202949,0.006088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202949,0.006088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202949,0.006088,-0.007497,0.249888,0,0);}
.m5f_c00081{transform:matrix(0.202974,0.006089,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202974,0.006089,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202974,0.006089,-0.007497,0.249888,0,0);}
.mc0_c00081{transform:matrix(0.203424,0.006720,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203424,0.006720,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203424,0.006720,-0.008254,0.249864,0,0);}
.meb_c00081{transform:matrix(0.203514,0.006723,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203514,0.006723,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203514,0.006723,-0.008254,0.249864,0,0);}
.mf7_c00081{transform:matrix(0.203614,0.006726,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203614,0.006726,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203614,0.006726,-0.008254,0.249864,0,0);}
.m6f_c00081{transform:matrix(0.203663,0.006110,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203663,0.006110,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203663,0.006110,-0.007497,0.249888,0,0);}
.m83_c00081{transform:matrix(0.205008,0.006150,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205008,0.006150,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205008,0.006150,-0.007497,0.249888,0,0);}
.m85_c00081{transform:matrix(0.205218,0.006779,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205218,0.006779,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205218,0.006779,-0.008254,0.249864,0,0);}
.mde_c00081{transform:matrix(0.205378,0.006784,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205378,0.006784,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205378,0.006784,-0.008254,0.249864,0,0);}
.m6b_c00081{transform:matrix(0.205383,0.006161,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205383,0.006161,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205383,0.006161,-0.007497,0.249888,0,0);}
.mc2_c00081{transform:matrix(0.205558,0.006790,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205558,0.006790,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205558,0.006790,-0.008254,0.249864,0,0);}
.md4_c00081{transform:matrix(0.205588,0.006791,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205588,0.006791,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205588,0.006791,-0.008254,0.249864,0,0);}
.ma2_c00081{transform:matrix(0.205643,0.006793,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205643,0.006793,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205643,0.006793,-0.008254,0.249864,0,0);}
.mce_c00081{transform:matrix(0.206053,0.006807,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206053,0.006807,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206053,0.006807,-0.008254,0.249864,0,0);}
.m42_c00081{transform:matrix(0.206072,0.006182,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206072,0.006182,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206072,0.006182,-0.007497,0.249888,0,0);}
.m89_c00081{transform:matrix(0.206118,0.006809,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206118,0.006809,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206118,0.006809,-0.008254,0.249864,0,0);}
.m4_c00081{transform:matrix(0.206667,0.006200,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206667,0.006200,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206667,0.006200,-0.007497,0.249888,0,0);}
.m25_c00081{transform:matrix(0.206717,0.006202,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206717,0.006202,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206717,0.006202,-0.007497,0.249888,0,0);}
.m8f_c00081{transform:matrix(0.206727,0.006829,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206727,0.006829,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206727,0.006829,-0.008254,0.249864,0,0);}
.m26_c00081{transform:matrix(0.207352,0.006221,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207352,0.006221,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207352,0.006221,-0.007497,0.249888,0,0);}
.m88_c00081{transform:matrix(0.208096,0.006874,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208096,0.006874,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208096,0.006874,-0.008254,0.249864,0,0);}
.md7_c00081{transform:matrix(0.209286,0.006913,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209286,0.006913,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209286,0.006913,-0.008254,0.249864,0,0);}
.mac_c00081{transform:matrix(0.209421,0.006918,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209421,0.006918,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209421,0.006918,-0.008254,0.249864,0,0);}
.mae_c00081{transform:matrix(0.209816,0.006931,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209816,0.006931,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209816,0.006931,-0.008254,0.249864,0,0);}
.m9a_c00081{transform:matrix(0.209836,0.006932,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209836,0.006932,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209836,0.006932,-0.008254,0.249864,0,0);}
.m44_c00081{transform:matrix(0.210215,0.006306,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210215,0.006306,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210215,0.006306,-0.007497,0.249888,0,0);}
.ma1_c00081{transform:matrix(0.210930,0.006968,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210930,0.006968,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210930,0.006968,-0.008254,0.249864,0,0);}
.mc1_c00081{transform:matrix(0.211964,0.007002,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211964,0.007002,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211964,0.007002,-0.008254,0.249864,0,0);}
.m8b_c00081{transform:matrix(0.212414,0.007017,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212414,0.007017,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212414,0.007017,-0.008254,0.249864,0,0);}
.med_c00081{transform:matrix(0.212594,0.007023,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212594,0.007023,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212594,0.007023,-0.008254,0.249864,0,0);}
.m31_c00081{transform:matrix(0.212784,0.006384,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212784,0.006384,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212784,0.006384,-0.007497,0.249888,0,0);}
.m20_c00081{transform:matrix(0.213544,0.006406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213544,0.006406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213544,0.006406,-0.007497,0.249888,0,0);}
.m7b_c00081{transform:matrix(0.214009,0.006420,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214009,0.006420,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214009,0.006420,-0.007497,0.249888,0,0);}
.m8a_c00081{transform:matrix(0.215198,0.007109,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215198,0.007109,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215198,0.007109,-0.008254,0.249864,0,0);}
.m9e_c00081{transform:matrix(0.215752,0.007127,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215752,0.007127,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215752,0.007127,-0.008254,0.249864,0,0);}
.m92_c00081{transform:matrix(0.216262,0.007144,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216262,0.007144,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216262,0.007144,-0.008254,0.249864,0,0);}
.ma9_c00081{transform:matrix(0.216307,0.007145,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216307,0.007145,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216307,0.007145,-0.008254,0.249864,0,0);}
.mec_c00081{transform:matrix(0.216407,0.007149,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216407,0.007149,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216407,0.007149,-0.008254,0.249864,0,0);}
.m1e_c00081{transform:matrix(0.217232,0.006517,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217232,0.006517,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217232,0.006517,-0.007497,0.249888,0,0);}
.m23_c00081{transform:matrix(0.218067,0.006542,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218067,0.006542,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218067,0.006542,-0.007497,0.249888,0,0);}
.mb3_c00081{transform:matrix(0.218226,0.007209,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218226,0.007209,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218226,0.007209,-0.008254,0.249864,0,0);}
.me_c00081{transform:matrix(0.219451,0.006584,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219451,0.006584,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219451,0.006584,-0.007497,0.249888,0,0);}
.ma6_c00081{transform:matrix(0.221024,0.007301,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221024,0.007301,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221024,0.007301,-0.008254,0.249864,0,0);}
.mb9_c00081{transform:matrix(0.222344,0.007345,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222344,0.007345,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222344,0.007345,-0.008254,0.249864,0,0);}
.m5d_c00081{transform:matrix(0.222410,0.006672,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222410,0.006672,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222410,0.006672,-0.007497,0.249888,0,0);}
.md6_c00081{transform:matrix(0.224018,0.007400,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224018,0.007400,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224018,0.007400,-0.008254,0.249864,0,0);}
.mbb_c00081{transform:matrix(0.224453,0.007414,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224453,0.007414,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224453,0.007414,-0.008254,0.249864,0,0);}
.mf_c00081{transform:matrix(0.224749,0.006742,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224749,0.006742,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224749,0.006742,-0.007497,0.249888,0,0);}
.m77_c00081{transform:matrix(0.226378,0.006791,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226378,0.006791,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226378,0.006791,-0.007497,0.249888,0,0);}
.m9f_c00081{transform:matrix(0.227021,0.007499,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227021,0.007499,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227021,0.007499,-0.008254,0.249864,0,0);}
.mb5_c00081{transform:matrix(0.229655,0.007586,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229655,0.007586,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229655,0.007586,-0.008254,0.249864,0,0);}
.m6a_c00081{transform:matrix(0.230966,0.006929,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230966,0.006929,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230966,0.006929,-0.007497,0.249888,0,0);}
.ma8_c00081{transform:matrix(0.231399,0.007644,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231399,0.007644,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231399,0.007644,-0.008254,0.249864,0,0);}
.ma0_c00081{transform:matrix(0.232618,0.007684,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232618,0.007684,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232618,0.007684,-0.008254,0.249864,0,0);}
.m87_c00081{transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);}
.m1d_c00081{transform:matrix(0.235469,0.007064,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235469,0.007064,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235469,0.007064,-0.007497,0.249888,0,0);}
.m8c_c00081{transform:matrix(0.235841,0.007791,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235841,0.007791,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235841,0.007791,-0.008254,0.249864,0,0);}
.mb8_c00081{transform:matrix(0.237316,0.007839,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237316,0.007839,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237316,0.007839,-0.008254,0.249864,0,0);}
.maf_c00081{transform:matrix(0.239484,0.007911,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239484,0.007911,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239484,0.007911,-0.008254,0.249864,0,0);}
.m3d_c00081{transform:matrix(0.239982,0.007199,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239982,0.007199,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239982,0.007199,-0.007497,0.249888,0,0);}
.mb2_c00081{transform:matrix(0.240699,0.007951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240699,0.007951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240699,0.007951,-0.008254,0.249864,0,0);}
.mad_c00081{transform:matrix(0.242658,0.008016,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242658,0.008016,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242658,0.008016,-0.008254,0.249864,0,0);}
.m91_c00081{transform:matrix(0.244052,0.008062,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244052,0.008062,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244052,0.008062,-0.008254,0.249864,0,0);}
.mbd_c00081{transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250553,0.008277,-0.008254,0.249864,0,0);}
.m4d_c00081{transform:matrix(0.251907,0.007557,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251907,0.007557,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251907,0.007557,-0.007497,0.249888,0,0);}
.m1b_c00081{transform:matrix(0.253681,0.007610,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253681,0.007610,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253681,0.007610,-0.007497,0.249888,0,0);}
.m1c_c00081{transform:matrix(0.254116,0.007623,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254116,0.007623,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254116,0.007623,-0.007497,0.249888,0,0);}
.mb0_c00081{transform:matrix(0.254421,0.008404,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254421,0.008404,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254421,0.008404,-0.008254,0.249864,0,0);}
.m8d_c00081{transform:matrix(0.258069,0.008525,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258069,0.008525,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258069,0.008525,-0.008254,0.249864,0,0);}
.m24_c00081{transform:matrix(0.463971,0.013919,-0.007497,0.249888,0,0);-ms-transform:matrix(0.463971,0.013919,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.463971,0.013919,-0.007497,0.249888,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:0.000000px;}
.fc0_c00081{color:transparent;}
.fse_c00081{font-size:54.575151px;}
.fsa_c00081{font-size:55.624673px;}
.fsd_c00081{font-size:57.723718px;}
.fs3_c00081{font-size:57.775982px;}
.fs9_c00081{font-size:58.773240px;}
.fsf_c00081{font-size:59.822762px;}
.fs12_c00081{font-size:60.872284px;}
.fs10_c00081{font-size:61.921806px;}
.fsc_c00081{font-size:62.971328px;}
.fs8_c00081{font-size:63.028344px;}
.fs14_c00081{font-size:64.020851px;}
.fs4_c00081{font-size:64.078816px;}
.fs15_c00081{font-size:65.070373px;}
.fs0_c00081{font-size:65.100000px;}
.fs1_c00081{font-size:65.129288px;}
.fs13_c00081{font-size:66.119895px;}
.fs6_c00081{font-size:66.179761px;}
.fs11_c00081{font-size:67.169417px;}
.fs5_c00081{font-size:67.230233px;}
.fsb_c00081{font-size:68.218939px;}
.fs2_c00081{font-size:68.280706px;}
.fs16_c00081{font-size:69.268461px;}
.fs7_c00081{font-size:72.482595px;}
.y0_c00081{bottom:0.000000px;}
.yfe_c00081{bottom:28.721846px;}
.yfd_c00081{bottom:30.024951px;}
.yfc_c00081{bottom:30.427769px;}
.yfb_c00081{bottom:31.267635px;}
.yfa_c00081{bottom:32.466732px;}
.yf9_c00081{bottom:32.836146px;}
.yf8_c00081{bottom:33.880587px;}
.yf7_c00081{bottom:34.684080px;}
.yf6_c00081{bottom:47.436630px;}
.yf5_c00081{bottom:47.688410px;}
.yf4_c00081{bottom:48.457473px;}
.yf3_c00081{bottom:48.714509px;}
.yf2_c00081{bottom:49.566678px;}
.yf1_c00081{bottom:50.705165px;}
.yf0_c00081{bottom:51.682965px;}
.yef_c00081{bottom:63.336165px;}
.yee_c00081{bottom:65.960898px;}
.yed_c00081{bottom:67.360830px;}
.yec_c00081{bottom:68.918325px;}
.yeb_c00081{bottom:69.501741px;}
.yea_c00081{bottom:78.826637px;}
.ye9_c00081{bottom:79.490063px;}
.ye8_c00081{bottom:80.082384px;}
.ye7_c00081{bottom:81.363521px;}
.ye6_c00081{bottom:82.524210px;}
.ye5_c00081{bottom:82.893431px;}
.ye4_c00081{bottom:84.595776px;}
.ye3_c00081{bottom:85.423979px;}
.ye2_c00081{bottom:95.875832px;}
.ye1_c00081{bottom:96.424841px;}
.ye0_c00081{bottom:97.648039px;}
.ydf_c00081{bottom:98.899026px;}
.yde_c00081{bottom:99.370451px;}
.ydd_c00081{bottom:100.866192px;}
.ydc_c00081{bottom:102.140821px;}
.ydb_c00081{bottom:102.695014px;}
.yda_c00081{bottom:111.784519px;}
.yd9_c00081{bottom:113.092255px;}
.yd8_c00081{bottom:114.112306px;}
.yd7_c00081{bottom:115.756278px;}
.yd6_c00081{bottom:116.385085px;}
.yd5_c00081{bottom:117.756528px;}
.yd4_c00081{bottom:118.887040px;}
.yd3_c00081{bottom:130.509312px;}
.yd2_c00081{bottom:131.958807px;}
.yd1_c00081{bottom:133.359630px;}
.yd0_c00081{bottom:133.991902px;}
.ycf_c00081{bottom:134.269098px;}
.yce_c00081{bottom:136.096831px;}
.ycd_c00081{bottom:136.568292px;}
.ycc_c00081{bottom:137.237298px;}
.ycb_c00081{bottom:146.263420px;}
.yca_c00081{bottom:147.585916px;}
.yc9_c00081{bottom:147.998252px;}
.yc8_c00081{bottom:148.509154px;}
.yc7_c00081{bottom:149.492373px;}
.yc6_c00081{bottom:151.159096px;}
.yc5_c00081{bottom:152.686585px;}
.yc4_c00081{bottom:153.429859px;}
.yc3_c00081{bottom:164.096651px;}
.yc2_c00081{bottom:164.868945px;}
.yc1_c00081{bottom:166.638003px;}
.yc0_c00081{bottom:167.358282px;}
.ybf_c00081{bottom:168.233469px;}
.ybe_c00081{bottom:168.718240px;}
.ybd_c00081{bottom:169.941170px;}
.ybc_c00081{bottom:171.512286px;}
.ybb_c00081{bottom:179.883267px;}
.yba_c00081{bottom:181.843930px;}
.yb9_c00081{bottom:184.468961px;}
.yb8_c00081{bottom:186.067882px;}
.yb7_c00081{bottom:186.971897px;}
.yb6_c00081{bottom:188.721438px;}
.yb5_c00081{bottom:189.327134px;}
.yb4_c00081{bottom:197.005065px;}
.yb3_c00081{bottom:199.670617px;}
.yb2_c00081{bottom:201.032668px;}
.yb1_c00081{bottom:201.547392px;}
.yb0_c00081{bottom:203.812237px;}
.yaf_c00081{bottom:204.757283px;}
.yae_c00081{bottom:206.594182px;}
.yad_c00081{bottom:214.780943px;}
.yac_c00081{bottom:215.446249px;}
.yab_c00081{bottom:216.200436px;}
.yaa_c00081{bottom:218.052123px;}
.ya9_c00081{bottom:219.184732px;}
.ya8_c00081{bottom:220.154892px;}
.ya7_c00081{bottom:222.358619px;}
.ya6_c00081{bottom:223.331303px;}
.ya5_c00081{bottom:232.010169px;}
.ya4_c00081{bottom:232.625594px;}
.ya3_c00081{bottom:233.968119px;}
.ya2_c00081{bottom:234.349773px;}
.ya1_c00081{bottom:235.549860px;}
.ya0_c00081{bottom:235.948083px;}
.y9f_c00081{bottom:237.067269px;}
.y9e_c00081{bottom:239.148600px;}
.y9d_c00081{bottom:240.331573px;}
.y9c_c00081{bottom:248.313597px;}
.y9b_c00081{bottom:249.614074px;}
.y9a_c00081{bottom:250.116549px;}
.y99_c00081{bottom:251.109866px;}
.y98_c00081{bottom:253.068063px;}
.y97_c00081{bottom:253.448380px;}
.y96_c00081{bottom:256.018241px;}
.y95_c00081{bottom:256.791817px;}
.y94_c00081{bottom:264.562071px;}
.y93_c00081{bottom:265.847370px;}
.y92_c00081{bottom:268.249573px;}
.y91_c00081{bottom:268.872702px;}
.y90_c00081{bottom:270.679285px;}
.y8f_c00081{bottom:271.280697px;}
.y8e_c00081{bottom:272.987664px;}
.y8d_c00081{bottom:282.952370px;}
.y8c_c00081{bottom:283.531816px;}
.y8b_c00081{bottom:285.483502px;}
.y8a_c00081{bottom:286.713577px;}
.y89_c00081{bottom:287.284412px;}
.y88_c00081{bottom:288.452463px;}
.y87_c00081{bottom:289.258719px;}
.y86_c00081{bottom:290.260500px;}
.y85_c00081{bottom:299.268180px;}
.y84_c00081{bottom:299.623965px;}
.y83_c00081{bottom:301.926090px;}
.y82_c00081{bottom:302.526930px;}
.y81_c00081{bottom:304.060890px;}
.y80_c00081{bottom:304.745925px;}
.y7f_c00081{bottom:305.560155px;}
.y7e_c00081{bottom:306.620745px;}
.y7d_c00081{bottom:316.745940px;}
.y7c_c00081{bottom:316.982310px;}
.y7b_c00081{bottom:317.620335px;}
.y7a_c00081{bottom:318.323820px;}
.y79_c00081{bottom:318.714900px;}
.y78_c00081{bottom:319.865610px;}
.y77_c00081{bottom:320.183115px;}
.y76_c00081{bottom:320.696475px;}
.y75_c00081{bottom:321.805305px;}
.y74_c00081{bottom:322.553550px;}
.y73_c00081{bottom:333.517080px;}
.y72_c00081{bottom:334.271460px;}
.y71_c00081{bottom:334.793730px;}
.y70_c00081{bottom:335.872605px;}
.y6f_c00081{bottom:336.669900px;}
.y6e_c00081{bottom:337.573935px;}
.y6d_c00081{bottom:338.010870px;}
.y6c_c00081{bottom:339.106725px;}
.y6b_c00081{bottom:340.111320px;}
.y6a_c00081{bottom:349.269285px;}
.y69_c00081{bottom:351.176070px;}
.y68_c00081{bottom:352.334595px;}
.y67_c00081{bottom:353.706510px;}
.y66_c00081{bottom:354.403290px;}
.y65_c00081{bottom:355.828755px;}
.y64_c00081{bottom:357.942405px;}
.y63_c00081{bottom:367.413195px;}
.y62_c00081{bottom:368.049780px;}
.y61_c00081{bottom:368.633055px;}
.y60_c00081{bottom:370.355670px;}
.y5f_c00081{bottom:372.025875px;}
.y5e_c00081{bottom:372.558450px;}
.y5d_c00081{bottom:373.755030px;}
.y5c_c00081{bottom:374.302755px;}
.y5b_c00081{bottom:374.686410px;}
.y5a_c00081{bottom:384.019410px;}
.y59_c00081{bottom:384.686805px;}
.y58_c00081{bottom:385.274595px;}
.y57_c00081{bottom:386.442660px;}
.y56_c00081{bottom:386.782725px;}
.y55_c00081{bottom:389.108550px;}
.y54_c00081{bottom:389.704035px;}
.y53_c00081{bottom:391.286235px;}
.y52_c00081{bottom:391.704825px;}
.y51_c00081{bottom:402.086760px;}
.y50_c00081{bottom:403.944495px;}
.y4f_c00081{bottom:404.435850px;}
.y4e_c00081{bottom:405.154875px;}
.y4d_c00081{bottom:405.793620px;}
.y4c_c00081{bottom:407.426520px;}
.y4b_c00081{bottom:407.959320px;}
.y4a_c00081{bottom:408.721770px;}
.y49_c00081{bottom:417.741930px;}
.y48_c00081{bottom:418.437990px;}
.y47_c00081{bottom:420.276600px;}
.y46_c00081{bottom:420.756480px;}
.y45_c00081{bottom:422.669385px;}
.y44_c00081{bottom:424.831860px;}
.y43_c00081{bottom:425.638350px;}
.y42_c00081{bottom:426.010275px;}
.y41_c00081{bottom:434.905455px;}
.y40_c00081{bottom:435.666165px;}
.y3f_c00081{bottom:437.187885px;}
.y3e_c00081{bottom:438.917370px;}
.y3d_c00081{bottom:439.488465px;}
.y3c_c00081{bottom:441.354165px;}
.y3b_c00081{bottom:442.489950px;}
.y3a_c00081{bottom:452.052360px;}
.y39_c00081{bottom:452.975175px;}
.y38_c00081{bottom:454.421730px;}
.y37_c00081{bottom:454.909275px;}
.y36_c00081{bottom:456.211890px;}
.y35_c00081{bottom:456.609750px;}
.y34_c00081{bottom:457.303125px;}
.y33_c00081{bottom:457.937205px;}
.y32_c00081{bottom:458.422725px;}
.y31_c00081{bottom:469.777860px;}
.y30_c00081{bottom:470.555940px;}
.y2f_c00081{bottom:471.089160px;}
.y2e_c00081{bottom:472.042755px;}
.y2d_c00081{bottom:472.438080px;}
.y2c_c00081{bottom:473.102910px;}
.y2b_c00081{bottom:473.724645px;}
.y2a_c00081{bottom:474.316890px;}
.y29_c00081{bottom:475.709670px;}
.y28_c00081{bottom:484.914585px;}
.y27_c00081{bottom:485.858190px;}
.y26_c00081{bottom:487.953345px;}
.y25_c00081{bottom:490.047690px;}
.y24_c00081{bottom:490.862745px;}
.y23_c00081{bottom:492.240780px;}
.y22_c00081{bottom:492.870765px;}
.y21_c00081{bottom:494.078685px;}
.y20_c00081{bottom:504.159240px;}
.y1f_c00081{bottom:504.442035px;}
.y1e_c00081{bottom:506.080740px;}
.y1d_c00081{bottom:506.854800px;}
.y1c_c00081{bottom:507.156765px;}
.y1b_c00081{bottom:508.391085px;}
.y1a_c00081{bottom:518.870430px;}
.y19_c00081{bottom:520.015755px;}
.y18_c00081{bottom:520.444380px;}
.y17_c00081{bottom:521.118360px;}
.y16_c00081{bottom:521.407380px;}
.y15_c00081{bottom:522.097155px;}
.y14_c00081{bottom:523.999200px;}
.y13_c00081{bottom:524.691840px;}
.y12_c00081{bottom:525.140070px;}
.y11_c00081{bottom:538.695285px;}
.y10_c00081{bottom:539.614380px;}
.yf_c00081{bottom:540.237630px;}
.ye_c00081{bottom:540.879585px;}
.yd_c00081{bottom:541.394835px;}
.yc_c00081{bottom:541.909035px;}
.yb_c00081{bottom:543.508860px;}
.ya_c00081{bottom:544.127940px;}
.y9_c00081{bottom:545.128560px;}
.y8_c00081{bottom:553.728540px;}
.y7_c00081{bottom:555.772485px;}
.y6_c00081{bottom:557.441310px;}
.y5_c00081{bottom:559.046595px;}
.y4_c00081{bottom:559.702875px;}
.y3_c00081{bottom:560.908740px;}
.y2_c00081{bottom:562.147500px;}
.y1_c00081{bottom:570.655500px;}
.h10_c00081{height:54.575151px;}
.hc_c00081{height:55.624673px;}
.hf_c00081{height:57.723718px;}
.h5_c00081{height:57.775982px;}
.hb_c00081{height:58.773240px;}
.h11_c00081{height:59.822762px;}
.h14_c00081{height:60.872284px;}
.h12_c00081{height:61.921806px;}
.he_c00081{height:62.971328px;}
.ha_c00081{height:63.028344px;}
.h16_c00081{height:64.020851px;}
.h6_c00081{height:64.078816px;}
.h17_c00081{height:65.070373px;}
.h2_c00081{height:65.100000px;}
.h3_c00081{height:65.129288px;}
.h15_c00081{height:66.119895px;}
.h8_c00081{height:66.179761px;}
.h13_c00081{height:67.169417px;}
.h7_c00081{height:67.230233px;}
.hd_c00081{height:68.218939px;}
.h4_c00081{height:68.280706px;}
.h18_c00081{height:69.268461px;}
.h9_c00081{height:72.482595px;}
.h1_c00081{height:612.000000px;}
.h0_c00081{height:612.300000px;}
.w0_c00081{width:361.500000px;}
.x0_c00081{left:0.000000px;}
.x70_c00081{left:35.340872px;}
.x1d_c00081{left:40.738755px;}
.x3_c00081{left:41.869500px;}
.x43_c00081{left:51.112035px;}
.x35_c00081{left:55.144845px;}
.x11_c00081{left:61.086120px;}
.x7a_c00081{left:62.586405px;}
.x74_c00081{left:64.024376px;}
.x44_c00081{left:65.301795px;}
.x61_c00081{left:67.943309px;}
.x3b_c00081{left:70.429695px;}
.x58_c00081{left:72.379143px;}
.x76_c00081{left:73.908252px;}
.x80_c00081{left:75.546774px;}
.x9_c00081{left:77.913810px;}
.x36_c00081{left:82.027845px;}
.x4_c00081{left:83.161500px;}
.x45_c00081{left:85.561095px;}
.x2b_c00081{left:87.030105px;}
.x3c_c00081{left:90.141450px;}
.x12_c00081{left:91.230465px;}
.x6b_c00081{left:94.323533px;}
.x59_c00081{left:96.786711px;}
.x1e_c00081{left:98.198835px;}
.xa_c00081{left:100.001115px;}
.x7d_c00081{left:102.641432px;}
.x40_c00081{left:108.876600px;}
.x18_c00081{left:110.457435px;}
.x56_c00081{left:111.519525px;}
.x4a_c00081{left:112.790775px;}
.x2c_c00081{left:114.746745px;}
.x7b_c00081{left:118.137465px;}
.x5d_c00081{left:119.348559px;}
.x6c_c00081{left:121.297748px;}
.x5_c00081{left:123.357000px;}
.x24_c00081{left:125.122560px;}
.x19_c00081{left:127.228965px;}
.x41_c00081{left:128.726100px;}
.x2d_c00081{left:130.661130px;}
.x5a_c00081{left:132.146816px;}
.x81_c00081{left:134.378874px;}
.x30_c00081{left:135.962145px;}
.x5e_c00081{left:138.099883px;}
.x77_c00081{left:139.293914px;}
.x1f_c00081{left:141.280770px;}
.x1_c00081{left:144.720000px;}
.x4f_c00081{left:147.819120px;}
.x46_c00081{left:149.555310px;}
.x25_c00081{left:151.051740px;}
.x31_c00081{left:153.797565px;}
.xb_c00081{left:157.132035px;}
.x4b_c00081{left:160.306275px;}
.x6e_c00081{left:162.807318px;}
.x66_c00081{left:164.376383px;}
.x20_c00081{left:166.747740px;}
.x7c_c00081{left:168.101226px;}
.x1a_c00081{left:170.246445px;}
.x13_c00081{left:173.899290px;}
.xc_c00081{left:175.523160px;}
.x26_c00081{left:178.767735px;}
.x2_c00081{left:183.600000px;}
.x50_c00081{left:185.510415px;}
.x5b_c00081{left:186.665243px;}
.x64_c00081{left:188.011206px;}
.x71_c00081{left:192.640986px;}
.xd_c00081{left:193.899240px;}
.x27_c00081{left:195.248205px;}
.x72_c00081{left:196.464465px;}
.x67_c00081{left:197.664471px;}
.x6_c00081{left:198.742500px;}
.x3d_c00081{left:200.890395px;}
.x2e_c00081{left:202.293885px;}
.x14_c00081{left:203.898090px;}
.x42_c00081{left:206.253600px;}
.x32_c00081{left:207.843825px;}
.x47_c00081{left:211.434390px;}
.x5f_c00081{left:213.969965px;}
.xe_c00081{left:216.849135px;}
.x37_c00081{left:217.873845px;}
.x3e_c00081{left:219.070515px;}
.x6f_c00081{left:221.823936px;}
.x53_c00081{left:224.457270px;}
.x7e_c00081{left:226.800365px;}
.x4c_c00081{left:229.262775px;}
.x21_c00081{left:232.205325px;}
.x38_c00081{left:233.869845px;}
.x28_c00081{left:234.991860px;}
.xf_c00081{left:239.125485px;}
.x65_c00081{left:241.210206px;}
.x54_c00081{left:243.098310px;}
.x15_c00081{left:245.756865px;}
.x78_c00081{left:247.234788px;}
.x68_c00081{left:252.085212px;}
.x7_c00081{left:254.370000px;}
.x33_c00081{left:255.414990px;}
.x29_c00081{left:257.219865px;}
.x2f_c00081{left:260.171070px;}
.x1b_c00081{left:261.252660px;}
.x5c_c00081{left:263.289541px;}
.x16_c00081{left:264.398280px;}
.x4d_c00081{left:267.880275px;}
.x79_c00081{left:269.979773px;}
.x10_c00081{left:271.963965px;}
.x69_c00081{left:274.235297px;}
.x48_c00081{left:275.260650px;}
.x1c_c00081{left:276.934785px;}
.x34_c00081{left:279.170550px;}
.x62_c00081{left:281.115481px;}
.x51_c00081{left:285.476415px;}
.x3f_c00081{left:287.901225px;}
.x2a_c00081{left:289.661715px;}
.x7f_c00081{left:290.787736px;}
.x75_c00081{left:292.285139px;}
.x6a_c00081{left:293.785583px;}
.x39_c00081{left:295.156845px;}
.x22_c00081{left:297.689910px;}
.x57_c00081{left:301.268625px;}
.x55_c00081{left:306.982545px;}
.x73_c00081{left:310.362579px;}
.x17_c00081{left:314.186220px;}
.x6d_c00081{left:315.607410px;}
.x52_c00081{left:316.928085px;}
.x3a_c00081{left:318.358845px;}
.x49_c00081{left:320.426700px;}
.x8_c00081{left:322.501500px;}
.x63_c00081{left:324.435429px;}
.x23_c00081{left:327.191655px;}
.x60_c00081{left:329.097537px;}
.x4e_c00081{left:331.439775px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
.fse_c00081{font-size:48.511246pt;}
.fsa_c00081{font-size:49.444154pt;}
.fsd_c00081{font-size:51.309971pt;}
.fs3_c00081{font-size:51.356428pt;}
.fs9_c00081{font-size:52.242880pt;}
.fsf_c00081{font-size:53.175788pt;}
.fs12_c00081{font-size:54.108697pt;}
.fs10_c00081{font-size:55.041606pt;}
.fsc_c00081{font-size:55.974514pt;}
.fs8_c00081{font-size:56.025194pt;}
.fs14_c00081{font-size:56.907423pt;}
.fs4_c00081{font-size:56.958948pt;}
.fs15_c00081{font-size:57.840331pt;}
.fs0_c00081{font-size:57.866667pt;}
.fs1_c00081{font-size:57.892701pt;}
.fs13_c00081{font-size:58.773240pt;}
.fs6_c00081{font-size:58.826454pt;}
.fs11_c00081{font-size:59.706148pt;}
.fs5_c00081{font-size:59.760207pt;}
.fsb_c00081{font-size:60.639057pt;}
.fs2_c00081{font-size:60.693961pt;}
.fs16_c00081{font-size:61.571966pt;}
.fs7_c00081{font-size:64.428973pt;}
.y0_c00081{bottom:0.000000pt;}
.yfe_c00081{bottom:25.530529pt;}
.yfd_c00081{bottom:26.688845pt;}
.yfc_c00081{bottom:27.046905pt;}
.yfb_c00081{bottom:27.793453pt;}
.yfa_c00081{bottom:28.859317pt;}
.yf9_c00081{bottom:29.187685pt;}
.yf8_c00081{bottom:30.116077pt;}
.yf7_c00081{bottom:30.830293pt;}
.yf6_c00081{bottom:42.165893pt;}
.yf5_c00081{bottom:42.389697pt;}
.yf4_c00081{bottom:43.073309pt;}
.yf3_c00081{bottom:43.301785pt;}
.yf2_c00081{bottom:44.059269pt;}
.yf1_c00081{bottom:45.071257pt;}
.yf0_c00081{bottom:45.940413pt;}
.yef_c00081{bottom:56.298813pt;}
.yee_c00081{bottom:58.631909pt;}
.yed_c00081{bottom:59.876293pt;}
.yec_c00081{bottom:61.260733pt;}
.yeb_c00081{bottom:61.779325pt;}
.yea_c00081{bottom:70.068121pt;}
.ye9_c00081{bottom:70.657833pt;}
.ye8_c00081{bottom:71.184341pt;}
.ye7_c00081{bottom:72.323129pt;}
.ye6_c00081{bottom:73.354853pt;}
.ye5_c00081{bottom:73.683049pt;}
.ye4_c00081{bottom:75.196245pt;}
.ye3_c00081{bottom:75.932425pt;}
.ye2_c00081{bottom:85.222961pt;}
.ye1_c00081{bottom:85.710969pt;}
.ye0_c00081{bottom:86.798257pt;}
.ydf_c00081{bottom:87.910245pt;}
.yde_c00081{bottom:88.329289pt;}
.ydd_c00081{bottom:89.658837pt;}
.ydc_c00081{bottom:90.791841pt;}
.ydb_c00081{bottom:91.284457pt;}
.yda_c00081{bottom:99.364017pt;}
.yd9_c00081{bottom:100.526449pt;}
.yd8_c00081{bottom:101.433161pt;}
.yd7_c00081{bottom:102.894469pt;}
.yd6_c00081{bottom:103.453409pt;}
.yd5_c00081{bottom:104.672469pt;}
.yd4_c00081{bottom:105.677369pt;}
.yd3_c00081{bottom:116.008277pt;}
.yd2_c00081{bottom:117.296717pt;}
.yd1_c00081{bottom:118.541893pt;}
.yd0_c00081{bottom:119.103913pt;}
.ycf_c00081{bottom:119.350309pt;}
.yce_c00081{bottom:120.974961pt;}
.ycd_c00081{bottom:121.394037pt;}
.ycc_c00081{bottom:121.988709pt;}
.ycb_c00081{bottom:130.011929pt;}
.yca_c00081{bottom:131.187481pt;}
.yc9_c00081{bottom:131.554001pt;}
.yc8_c00081{bottom:132.008137pt;}
.yc7_c00081{bottom:132.882109pt;}
.yc6_c00081{bottom:134.363641pt;}
.yc5_c00081{bottom:135.721409pt;}
.yc4_c00081{bottom:136.382097pt;}
.yc3_c00081{bottom:145.863689pt;}
.yc2_c00081{bottom:146.550173pt;}
.yc1_c00081{bottom:148.122669pt;}
.yc0_c00081{bottom:148.762917pt;}
.ybf_c00081{bottom:149.540861pt;}
.ybe_c00081{bottom:149.971769pt;}
.ybd_c00081{bottom:151.058817pt;}
.ybc_c00081{bottom:152.455365pt;}
.ybb_c00081{bottom:159.896237pt;}
.yba_c00081{bottom:161.639049pt;}
.yb9_c00081{bottom:163.972409pt;}
.yb8_c00081{bottom:165.393673pt;}
.yb7_c00081{bottom:166.197241pt;}
.yb6_c00081{bottom:167.752389pt;}
.yb5_c00081{bottom:168.290785pt;}
.yb4_c00081{bottom:175.115613pt;}
.yb3_c00081{bottom:177.484993pt;}
.yb2_c00081{bottom:178.695705pt;}
.yb1_c00081{bottom:179.153237pt;}
.yb0_c00081{bottom:181.166433pt;}
.yaf_c00081{bottom:182.006473pt;}
.yae_c00081{bottom:183.639273pt;}
.yad_c00081{bottom:190.916393pt;}
.yac_c00081{bottom:191.507777pt;}
.yab_c00081{bottom:192.178165pt;}
.yaa_c00081{bottom:193.824109pt;}
.ya9_c00081{bottom:194.830873pt;}
.ya8_c00081{bottom:195.693237pt;}
.ya7_c00081{bottom:197.652105pt;}
.ya6_c00081{bottom:198.516713pt;}
.ya5_c00081{bottom:206.231261pt;}
.ya4_c00081{bottom:206.778305pt;}
.ya3_c00081{bottom:207.971661pt;}
.ya2_c00081{bottom:208.310909pt;}
.ya1_c00081{bottom:209.377653pt;}
.ya0_c00081{bottom:209.731629pt;}
.y9f_c00081{bottom:210.726461pt;}
.y9e_c00081{bottom:212.576533pt;}
.y9d_c00081{bottom:213.628065pt;}
.y9c_c00081{bottom:220.723197pt;}
.y9b_c00081{bottom:221.879177pt;}
.y9a_c00081{bottom:222.325821pt;}
.y99_c00081{bottom:223.208769pt;}
.y98_c00081{bottom:224.949389pt;}
.y97_c00081{bottom:225.287449pt;}
.y96_c00081{bottom:227.571769pt;}
.y95_c00081{bottom:228.259393pt;}
.y94_c00081{bottom:235.166285pt;}
.y93_c00081{bottom:236.308773pt;}
.y92_c00081{bottom:238.444065pt;}
.y91_c00081{bottom:238.997957pt;}
.y90_c00081{bottom:240.603809pt;}
.y8f_c00081{bottom:241.138397pt;}
.y8e_c00081{bottom:242.655701pt;}
.y8d_c00081{bottom:251.513217pt;}
.y8c_c00081{bottom:252.028281pt;}
.y8b_c00081{bottom:253.763113pt;}
.y8a_c00081{bottom:254.856513pt;}
.y89_c00081{bottom:255.363921pt;}
.y88_c00081{bottom:256.402189pt;}
.y87_c00081{bottom:257.118861pt;}
.y86_c00081{bottom:258.009333pt;}
.y85_c00081{bottom:266.016160pt;}
.y84_c00081{bottom:266.332413pt;}
.y83_c00081{bottom:268.378747pt;}
.y82_c00081{bottom:268.912827pt;}
.y81_c00081{bottom:270.276347pt;}
.y80_c00081{bottom:270.885267pt;}
.y7f_c00081{bottom:271.609027pt;}
.y7e_c00081{bottom:272.551773pt;}
.y7d_c00081{bottom:281.551947pt;}
.y7c_c00081{bottom:281.762053pt;}
.y7b_c00081{bottom:282.329187pt;}
.y7a_c00081{bottom:282.954507pt;}
.y79_c00081{bottom:283.302133pt;}
.y78_c00081{bottom:284.324987pt;}
.y77_c00081{bottom:284.607213pt;}
.y76_c00081{bottom:285.063533pt;}
.y75_c00081{bottom:286.049160pt;}
.y74_c00081{bottom:286.714267pt;}
.y73_c00081{bottom:296.459627pt;}
.y72_c00081{bottom:297.130187pt;}
.y71_c00081{bottom:297.594427pt;}
.y70_c00081{bottom:298.553427pt;}
.y6f_c00081{bottom:299.262133pt;}
.y6e_c00081{bottom:300.065720pt;}
.y6d_c00081{bottom:300.454107pt;}
.y6c_c00081{bottom:301.428200pt;}
.y6b_c00081{bottom:302.321173pt;}
.y6a_c00081{bottom:310.461587pt;}
.y69_c00081{bottom:312.156507pt;}
.y68_c00081{bottom:313.186307pt;}
.y67_c00081{bottom:314.405787pt;}
.y66_c00081{bottom:315.025147pt;}
.y65_c00081{bottom:316.292227pt;}
.y64_c00081{bottom:318.171027pt;}
.y63_c00081{bottom:326.589507pt;}
.y62_c00081{bottom:327.155360pt;}
.y61_c00081{bottom:327.673827pt;}
.y60_c00081{bottom:329.205040pt;}
.y5f_c00081{bottom:330.689667pt;}
.y5e_c00081{bottom:331.163067pt;}
.y5d_c00081{bottom:332.226693pt;}
.y5c_c00081{bottom:332.713560pt;}
.y5b_c00081{bottom:333.054587pt;}
.y5a_c00081{bottom:341.350587pt;}
.y59_c00081{bottom:341.943827pt;}
.y58_c00081{bottom:342.466307pt;}
.y57_c00081{bottom:343.504587pt;}
.y56_c00081{bottom:343.806867pt;}
.y55_c00081{bottom:345.874267pt;}
.y54_c00081{bottom:346.403587pt;}
.y53_c00081{bottom:347.809987pt;}
.y52_c00081{bottom:348.182067pt;}
.y51_c00081{bottom:357.410453pt;}
.y50_c00081{bottom:359.061773pt;}
.y4f_c00081{bottom:359.498533pt;}
.y4e_c00081{bottom:360.137667pt;}
.y4d_c00081{bottom:360.705440pt;}
.y4c_c00081{bottom:362.156907pt;}
.y4b_c00081{bottom:362.630507pt;}
.y4a_c00081{bottom:363.308240pt;}
.y49_c00081{bottom:371.326160pt;}
.y48_c00081{bottom:371.944880pt;}
.y47_c00081{bottom:373.579200pt;}
.y46_c00081{bottom:374.005760pt;}
.y45_c00081{bottom:375.706120pt;}
.y44_c00081{bottom:377.628320pt;}
.y43_c00081{bottom:378.345200pt;}
.y42_c00081{bottom:378.675800pt;}
.y41_c00081{bottom:386.582627pt;}
.y40_c00081{bottom:387.258813pt;}
.y3f_c00081{bottom:388.611453pt;}
.y3e_c00081{bottom:390.148773pt;}
.y3d_c00081{bottom:390.656413pt;}
.y3c_c00081{bottom:392.314813pt;}
.y3b_c00081{bottom:393.324400pt;}
.y3a_c00081{bottom:401.824320pt;}
.y39_c00081{bottom:402.644600pt;}
.y38_c00081{bottom:403.930427pt;}
.y37_c00081{bottom:404.363800pt;}
.y36_c00081{bottom:405.521680pt;}
.y35_c00081{bottom:405.875333pt;}
.y34_c00081{bottom:406.491667pt;}
.y33_c00081{bottom:407.055293pt;}
.y32_c00081{bottom:407.486867pt;}
.y31_c00081{bottom:417.580320pt;}
.y30_c00081{bottom:418.271947pt;}
.y2f_c00081{bottom:418.745920pt;}
.y2e_c00081{bottom:419.593560pt;}
.y2d_c00081{bottom:419.944960pt;}
.y2c_c00081{bottom:420.535920pt;}
.y2b_c00081{bottom:421.088573pt;}
.y2a_c00081{bottom:421.615013pt;}
.y29_c00081{bottom:422.853040pt;}
.y28_c00081{bottom:431.035187pt;}
.y27_c00081{bottom:431.873947pt;}
.y26_c00081{bottom:433.736307pt;}
.y25_c00081{bottom:435.597947pt;}
.y24_c00081{bottom:436.322440pt;}
.y23_c00081{bottom:437.547360pt;}
.y22_c00081{bottom:438.107347pt;}
.y21_c00081{bottom:439.181053pt;}
.y20_c00081{bottom:448.141547pt;}
.y1f_c00081{bottom:448.392920pt;}
.y1e_c00081{bottom:449.849547pt;}
.y1d_c00081{bottom:450.537600pt;}
.y1c_c00081{bottom:450.806013pt;}
.y1b_c00081{bottom:451.903187pt;}
.y1a_c00081{bottom:461.218160pt;}
.y19_c00081{bottom:462.236227pt;}
.y18_c00081{bottom:462.617227pt;}
.y17_c00081{bottom:463.216320pt;}
.y16_c00081{bottom:463.473227pt;}
.y15_c00081{bottom:464.086360pt;}
.y14_c00081{bottom:465.777067pt;}
.y13_c00081{bottom:466.392747pt;}
.y12_c00081{bottom:466.791173pt;}
.y11_c00081{bottom:478.840253pt;}
.y10_c00081{bottom:479.657227pt;}
.yf_c00081{bottom:480.211227pt;}
.ye_c00081{bottom:480.781853pt;}
.yd_c00081{bottom:481.239853pt;}
.yc_c00081{bottom:481.696920pt;}
.yb_c00081{bottom:483.118987pt;}
.ya_c00081{bottom:483.669280pt;}
.y9_c00081{bottom:484.558720pt;}
.y8_c00081{bottom:492.203147pt;}
.y7_c00081{bottom:494.019987pt;}
.y6_c00081{bottom:495.503387pt;}
.y5_c00081{bottom:496.930307pt;}
.y4_c00081{bottom:497.513667pt;}
.y3_c00081{bottom:498.585547pt;}
.y2_c00081{bottom:499.686667pt;}
.y1_c00081{bottom:507.249333pt;}
.h10_c00081{height:48.511246pt;}
.hc_c00081{height:49.444154pt;}
.hf_c00081{height:51.309971pt;}
.h5_c00081{height:51.356428pt;}
.hb_c00081{height:52.242880pt;}
.h11_c00081{height:53.175788pt;}
.h14_c00081{height:54.108697pt;}
.h12_c00081{height:55.041606pt;}
.he_c00081{height:55.974514pt;}
.ha_c00081{height:56.025194pt;}
.h16_c00081{height:56.907423pt;}
.h6_c00081{height:56.958948pt;}
.h17_c00081{height:57.840331pt;}
.h2_c00081{height:57.866667pt;}
.h3_c00081{height:57.892701pt;}
.h15_c00081{height:58.773240pt;}
.h8_c00081{height:58.826454pt;}
.h13_c00081{height:59.706148pt;}
.h7_c00081{height:59.760207pt;}
.hd_c00081{height:60.639057pt;}
.h4_c00081{height:60.693961pt;}
.h18_c00081{height:61.571966pt;}
.h9_c00081{height:64.428973pt;}
.h1_c00081{height:544.000000pt;}
.h0_c00081{height:544.266667pt;}
.w0_c00081{width:321.333333pt;}
.x0_c00081{left:0.000000pt;}
.x70_c00081{left:31.414108pt;}
.x1d_c00081{left:36.212227pt;}
.x3_c00081{left:37.217333pt;}
.x43_c00081{left:45.432920pt;}
.x35_c00081{left:49.017640pt;}
.x11_c00081{left:54.298773pt;}
.x7a_c00081{left:55.632360pt;}
.x74_c00081{left:56.910556pt;}
.x44_c00081{left:58.046040pt;}
.x61_c00081{left:60.394052pt;}
.x3b_c00081{left:62.604173pt;}
.x58_c00081{left:64.337016pt;}
.x76_c00081{left:65.696224pt;}
.x80_c00081{left:67.152688pt;}
.x9_c00081{left:69.256720pt;}
.x36_c00081{left:72.913640pt;}
.x4_c00081{left:73.921333pt;}
.x45_c00081{left:76.054307pt;}
.x2b_c00081{left:77.360093pt;}
.x3c_c00081{left:80.125733pt;}
.x12_c00081{left:81.093747pt;}
.x6b_c00081{left:83.843140pt;}
.x59_c00081{left:86.032632pt;}
.x1e_c00081{left:87.287853pt;}
.xa_c00081{left:88.889880pt;}
.x7d_c00081{left:91.236828pt;}
.x40_c00081{left:96.779200pt;}
.x18_c00081{left:98.184387pt;}
.x56_c00081{left:99.128467pt;}
.x4a_c00081{left:100.258467pt;}
.x2c_c00081{left:101.997107pt;}
.x7b_c00081{left:105.011080pt;}
.x5d_c00081{left:106.087608pt;}
.x6c_c00081{left:107.820220pt;}
.x5_c00081{left:109.650667pt;}
.x24_c00081{left:111.220053pt;}
.x19_c00081{left:113.092413pt;}
.x41_c00081{left:114.423200pt;}
.x2d_c00081{left:116.143227pt;}
.x5a_c00081{left:117.463836pt;}
.x81_c00081{left:119.447888pt;}
.x30_c00081{left:120.855240pt;}
.x5e_c00081{left:122.755452pt;}
.x77_c00081{left:123.816812pt;}
.x1f_c00081{left:125.582907pt;}
.x1_c00081{left:128.640000pt;}
.x4f_c00081{left:131.394773pt;}
.x46_c00081{left:132.938053pt;}
.x25_c00081{left:134.268213pt;}
.x31_c00081{left:136.708947pt;}
.xb_c00081{left:139.672920pt;}
.x4b_c00081{left:142.494467pt;}
.x6e_c00081{left:144.717616pt;}
.x66_c00081{left:146.112340pt;}
.x20_c00081{left:148.220213pt;}
.x7c_c00081{left:149.423312pt;}
.x1a_c00081{left:151.330173pt;}
.x13_c00081{left:154.577147pt;}
.xc_c00081{left:156.020587pt;}
.x26_c00081{left:158.904653pt;}
.x2_c00081{left:163.200000pt;}
.x50_c00081{left:164.898147pt;}
.x5b_c00081{left:165.924660pt;}
.x64_c00081{left:167.121072pt;}
.x71_c00081{left:171.236432pt;}
.xd_c00081{left:172.354880pt;}
.x27_c00081{left:173.553960pt;}
.x72_c00081{left:174.635080pt;}
.x67_c00081{left:175.701752pt;}
.x6_c00081{left:176.660000pt;}
.x3d_c00081{left:178.569240pt;}
.x2e_c00081{left:179.816787pt;}
.x14_c00081{left:181.242747pt;}
.x42_c00081{left:183.336533pt;}
.x32_c00081{left:184.750067pt;}
.x47_c00081{left:187.941680pt;}
.x5f_c00081{left:190.195524pt;}
.xe_c00081{left:192.754787pt;}
.x37_c00081{left:193.665640pt;}
.x3e_c00081{left:194.729347pt;}
.x6f_c00081{left:197.176832pt;}
.x53_c00081{left:199.517573pt;}
.x7e_c00081{left:201.600324pt;}
.x4c_c00081{left:203.789133pt;}
.x21_c00081{left:206.404733pt;}
.x38_c00081{left:207.884307pt;}
.x28_c00081{left:208.881653pt;}
.xf_c00081{left:212.555987pt;}
.x65_c00081{left:214.409072pt;}
.x54_c00081{left:216.087387pt;}
.x15_c00081{left:218.450547pt;}
.x78_c00081{left:219.764256pt;}
.x68_c00081{left:224.075744pt;}
.x7_c00081{left:226.106667pt;}
.x33_c00081{left:227.035547pt;}
.x29_c00081{left:228.639880pt;}
.x2f_c00081{left:231.263173pt;}
.x1b_c00081{left:232.224587pt;}
.x5c_c00081{left:234.035148pt;}
.x16_c00081{left:235.020693pt;}
.x4d_c00081{left:238.115800pt;}
.x79_c00081{left:239.982020pt;}
.x10_c00081{left:241.745747pt;}
.x69_c00081{left:243.764708pt;}
.x48_c00081{left:244.676133pt;}
.x1c_c00081{left:246.164253pt;}
.x34_c00081{left:248.151600pt;}
.x62_c00081{left:249.880428pt;}
.x51_c00081{left:253.756813pt;}
.x3f_c00081{left:255.912200pt;}
.x2a_c00081{left:257.477080pt;}
.x7f_c00081{left:258.477988pt;}
.x75_c00081{left:259.809012pt;}
.x6a_c00081{left:261.142740pt;}
.x39_c00081{left:262.361640pt;}
.x22_c00081{left:264.613253pt;}
.x57_c00081{left:267.794333pt;}
.x55_c00081{left:272.873373pt;}
.x73_c00081{left:275.877848pt;}
.x17_c00081{left:279.276640pt;}
.x6d_c00081{left:280.539920pt;}
.x52_c00081{left:281.713853pt;}
.x3a_c00081{left:282.985640pt;}
.x49_c00081{left:284.823733pt;}
.x8_c00081{left:286.668000pt;}
.x63_c00081{left:288.387048pt;}
.x23_c00081{left:290.837027pt;}
.x60_c00081{left:292.531144pt;}
.x4e_c00081{left:294.613133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00082 {
    display:none;
  }
  .loading-indicator_c00082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00082 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00082 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00082" -> "#page-container .classname_c00082")
 */
.pf_c00082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00082 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00082 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00082 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00082 {overflow:visible;}
  }
}
.c_c00082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00082 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00082:after { /* webkit #35443 */
  content: '';
}
.t_c00082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00082 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00082 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00082 { /* info for Javascript */
  display:none;
}
.l_c00082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00082:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00082 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00082.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00082{transform:matrix(0.098265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098265,0.000000,0.000000,0.250000,0,0);}
.m5a_c00082{transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);}
.mb9_c00082{transform:matrix(0.130545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130545,0.000000,0.000000,0.250000,0,0);}
.m8c_c00082{transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);}
.mb8_c00082{transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);}
.mb6_c00082{transform:matrix(0.146230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146230,0.000000,0.000000,0.250000,0,0);}
.me5_c00082{transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);}
.m4e_c00082{transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);}
.m27_c00082{transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);}
.mb5_c00082{transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);}
.m4c_c00082{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m84_c00082{transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150620,0.000000,0.000000,0.250000,0,0);}
.meb_c00082{transform:matrix(0.151545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151545,0.000000,0.000000,0.250000,0,0);}
.maa_c00082{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00082{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m4b_c00082{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.mea_c00082{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.mba_c00082{transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);}
.mc2_c00082{transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);}
.mbb_c00082{transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);}
.ma2_c00082{transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);}
.mb2_c00082{transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);}
.mbc_c00082{transform:matrix(0.158285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158285,0.000000,0.000000,0.250000,0,0);}
.m87_c00082{transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);}
.m86_c00082{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00082{transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);}
.me4_c00082{transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159845,0.000000,0.000000,0.250000,0,0);}
.m49_c00082{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m23_c00082{transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);}
.mae_c00082{transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.mbf_c00082{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m2b_c00082{transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.mc5_c00082{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m88_c00082{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00082{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);}
.me7_c00082{transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);}
.m69_c00082{transform:matrix(0.167919,-0.003694,0.005499,0.249940,0,0);-ms-transform:matrix(0.167919,-0.003694,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167919,-0.003694,0.005499,0.249940,0,0);}
.m48_c00082{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.mdf_c00082{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m72_c00082{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.m51_c00082{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00082{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m44_c00082{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m4f_c00082{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.me6_c00082{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.me8_c00082{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00082{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.me9_c00082{transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);}
.m28_c00082{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m2c_c00082{transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);}
.mb7_c00082{transform:matrix(0.172660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172660,0.000000,0.000000,0.250000,0,0);}
.m45_c00082{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m3a_c00082{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.mda_c00082{transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);}
.mb3_c00082{transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);}
.mb4_c00082{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m5f_c00082{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00082{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m6b_c00082{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m70_c00082{transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);}
.md8_c00082{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.me1_c00082{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.m40_c00082{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.maf_c00082{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m80_c00082{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.mad_c00082{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);}
.m78_c00082{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m4d_c00082{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mec_c00082{transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);}
.m53_c00082{transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);}
.m59_c00082{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m5e_c00082{transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);}
.m75_c00082{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00082{transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);}
.m8e_c00082{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.m50_c00082{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m24_c00082{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.md0_c00082{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00082{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m6f_c00082{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m6c_c00082{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00082{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m47_c00082{transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);}
.m30_c00082{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.m6a_c00082{transform:matrix(0.187055,-0.004115,0.005499,0.249940,0,0);-ms-transform:matrix(0.187055,-0.004115,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187055,-0.004115,0.005499,0.249940,0,0);}
.m46_c00082{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.md6_c00082{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.ma5_c00082{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m54_c00082{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m73_c00082{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.md3_c00082{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);}
.m22_c00082{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.mc6_c00082{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.m29_c00082{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.m6e_c00082{transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);}
.mb1_c00082{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m7e_c00082{transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);}
.m8a_c00082{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m25_c00082{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m7f_c00082{transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);}
.m39_c00082{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m42_c00082{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.me3_c00082{transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);}
.m5c_c00082{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m63_c00082{transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);}
.md2_c00082{transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.m68_c00082{transform:matrix(0.195718,-0.004306,0.005499,0.249940,0,0);-ms-transform:matrix(0.195718,-0.004306,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195718,-0.004306,0.005499,0.249940,0,0);}
.mbe_c00082{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.m93_c00082{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.m89_c00082{transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.mcd_c00082{transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);}
.m57_c00082{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m5b_c00082{transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);}
.m9b_c00082{transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);}
.ma7_c00082{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.m76_c00082{transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m65_c00082{transform:matrix(0.198502,-0.004367,0.005499,0.249940,0,0);-ms-transform:matrix(0.198502,-0.004367,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198502,-0.004367,0.005499,0.249940,0,0);}
.m74_c00082{transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);}
.m85_c00082{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.me0_c00082{transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.mdb_c00082{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m43_c00082{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.mde_c00082{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m67_c00082{transform:matrix(0.201291,-0.004428,0.005499,0.249940,0,0);-ms-transform:matrix(0.201291,-0.004428,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201291,-0.004428,0.005499,0.249940,0,0);}
.m36_c00082{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m55_c00082{transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);}
.m66_c00082{transform:matrix(0.201986,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.201986,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201986,-0.004444,0.005499,0.249940,0,0);}
.m82_c00082{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.mc7_c00082{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m71_c00082{transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);}
.m60_c00082{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.mb0_c00082{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.m92_c00082{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00082{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m56_c00082{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00082{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m9c_c00082{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.mc8_c00082{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00082{transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);}
.m2a_c00082{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.mac_c00082{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.mdd_c00082{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m9e_c00082{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m35_c00082{transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);}
.m7d_c00082{transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);}
.m62_c00082{transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);}
.m34_c00082{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m7b_c00082{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m81_c00082{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00082{transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);}
.md4_c00082{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.md7_c00082{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.md1_c00082{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m26_c00082{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m58_c00082{transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);}
.m6d_c00082{transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212885,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);}
.m41_c00082{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.md9_c00082{transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);}
.m97_c00082{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m91_c00082{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m31_c00082{transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);}
.m77_c00082{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00082{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.m96_c00082{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m3c_c00082{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.me2_c00082{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m5d_c00082{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.ma8_c00082{transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.mab_c00082{transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);}
.m38_c00082{transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);}
.mcc_c00082{transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00082{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m37_c00082{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m79_c00082{transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);}
.m33_c00082{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.ma1_c00082{transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);}
.m99_c00082{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.mdc_c00082{transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);}
.m7a_c00082{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.mce_c00082{transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);}
.m2f_c00082{transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00082{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m95_c00082{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m83_c00082{transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);}
.mbd_c00082{transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);}
.m32_c00082{transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);}
.mcb_c00082{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.ma0_c00082{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.md5_c00082{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.mc0_c00082{transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00082{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.m9a_c00082{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00082{transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);}
.m98_c00082{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m3d_c00082{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.m61_c00082{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.mc9_c00082{transform:matrix(0.239970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239970,0.000000,0.000000,0.250000,0,0);}
.mc3_c00082{transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);}
.mca_c00082{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.m94_c00082{transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);}
.mc1_c00082{transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);}
.m7c_c00082{transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);}
.m90_c00082{transform:matrix(0.265100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265100,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);}
.m8f_c00082{transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);}
.m52_c00082{transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);}
.m64_c00082{transform:matrix(0.511915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511915,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(1.548280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.548280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.548280,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
.fc0_c00082{color:transparent;}
.fsa_c00082{font-size:57.750000px;}
.fsc_c00082{font-size:58.800000px;}
.fsd_c00082{font-size:59.850000px;}
.fs7_c00082{font-size:60.900000px;}
.fs8_c00082{font-size:61.950000px;}
.fs2_c00082{font-size:63.000000px;}
.fs4_c00082{font-size:64.050000px;}
.fs6_c00082{font-size:65.100000px;}
.fsb_c00082{font-size:65.115752px;}
.fs3_c00082{font-size:66.150000px;}
.fs5_c00082{font-size:68.250000px;}
.fse_c00082{font-size:69.300000px;}
.fs9_c00082{font-size:70.350000px;}
.fs1_c00082{font-size:71.400000px;}
.fs10_c00082{font-size:75.600000px;}
.fsf_c00082{font-size:80.850000px;}
.fs0_c00082{font-size:91.350000px;}
.y0_c00082{bottom:0.000000px;}
.y8f_c00082{bottom:35.523000px;}
.y8e_c00082{bottom:54.121500px;}
.y8d_c00082{bottom:69.694500px;}
.y87_c00082{bottom:86.401500px;}
.y88_c00082{bottom:86.698500px;}
.y89_c00082{bottom:87.892500px;}
.y8a_c00082{bottom:88.662000px;}
.y8b_c00082{bottom:88.882500px;}
.y8c_c00082{bottom:89.485500px;}
.y86_c00082{bottom:104.640000px;}
.y85_c00082{bottom:121.650000px;}
.y7f_c00082{bottom:136.081500px;}
.y80_c00082{bottom:136.339500px;}
.y81_c00082{bottom:136.764000px;}
.y82_c00082{bottom:137.568000px;}
.y83_c00082{bottom:137.770500px;}
.y84_c00082{bottom:138.462000px;}
.y78_c00082{bottom:152.823000px;}
.y79_c00082{bottom:153.505500px;}
.y7a_c00082{bottom:154.012500px;}
.y7b_c00082{bottom:154.681500px;}
.y7c_c00082{bottom:154.938000px;}
.y7d_c00082{bottom:155.286000px;}
.y7e_c00082{bottom:155.481000px;}
.y77_c00082{bottom:171.753000px;}
.y76_c00082{bottom:188.254500px;}
.y75_c00082{bottom:205.534500px;}
.y74_c00082{bottom:222.553500px;}
.y73_c00082{bottom:239.563500px;}
.y72_c00082{bottom:256.710000px;}
.y71_c00082{bottom:273.064500px;}
.y70_c00082{bottom:290.856000px;}
.y6f_c00082{bottom:307.950000px;}
.y69_c00082{bottom:321.576000px;}
.y6a_c00082{bottom:322.502145px;}
.y6b_c00082{bottom:324.178512px;}
.y6c_c00082{bottom:325.336779px;}
.y6d_c00082{bottom:325.793268px;}
.y6e_c00082{bottom:326.481879px;}
.y66_c00082{bottom:338.853000px;}
.y67_c00082{bottom:339.534000px;}
.y68_c00082{bottom:340.986000px;}
.y5e_c00082{bottom:354.514500px;}
.y5f_c00082{bottom:355.002000px;}
.y60_c00082{bottom:356.125500px;}
.y61_c00082{bottom:356.394000px;}
.y62_c00082{bottom:356.893500px;}
.y63_c00082{bottom:357.981000px;}
.y64_c00082{bottom:358.326000px;}
.y65_c00082{bottom:359.224500px;}
.y56_c00082{bottom:370.444500px;}
.y57_c00082{bottom:370.707000px;}
.y58_c00082{bottom:371.331000px;}
.y59_c00082{bottom:371.965500px;}
.y5a_c00082{bottom:372.403500px;}
.y5b_c00082{bottom:373.707000px;}
.y5c_c00082{bottom:374.226000px;}
.y5d_c00082{bottom:374.449500px;}
.y4d_c00082{bottom:388.264500px;}
.y4e_c00082{bottom:388.498500px;}
.y4f_c00082{bottom:389.068500px;}
.y50_c00082{bottom:389.355000px;}
.y51_c00082{bottom:389.632500px;}
.y52_c00082{bottom:390.214500px;}
.y53_c00082{bottom:391.216500px;}
.y54_c00082{bottom:391.669500px;}
.y55_c00082{bottom:392.097000px;}
.y44_c00082{bottom:405.274500px;}
.y45_c00082{bottom:405.852000px;}
.y46_c00082{bottom:406.369500px;}
.y47_c00082{bottom:406.614000px;}
.y48_c00082{bottom:406.974000px;}
.y49_c00082{bottom:407.257500px;}
.y4a_c00082{bottom:408.255000px;}
.y4b_c00082{bottom:408.543000px;}
.y4c_c00082{bottom:408.898500px;}
.y3c_c00082{bottom:422.281500px;}
.y3d_c00082{bottom:422.977500px;}
.y3e_c00082{bottom:423.280500px;}
.y3f_c00082{bottom:424.191000px;}
.y40_c00082{bottom:424.422000px;}
.y41_c00082{bottom:425.023500px;}
.y42_c00082{bottom:425.319000px;}
.y43_c00082{bottom:425.580000px;}
.y34_c00082{bottom:437.943000px;}
.y35_c00082{bottom:438.502500px;}
.y36_c00082{bottom:439.168500px;}
.y37_c00082{bottom:439.917000px;}
.y38_c00082{bottom:441.219000px;}
.y39_c00082{bottom:442.399500px;}
.y3a_c00082{bottom:442.599000px;}
.y3b_c00082{bottom:443.040000px;}
.y2f_c00082{bottom:455.223000px;}
.y30_c00082{bottom:456.400500px;}
.y31_c00082{bottom:456.879000px;}
.y32_c00082{bottom:458.004000px;}
.y33_c00082{bottom:458.592000px;}
.y26_c00082{bottom:473.041500px;}
.y27_c00082{bottom:473.793000px;}
.y28_c00082{bottom:474.052500px;}
.y29_c00082{bottom:474.421500px;}
.y2a_c00082{bottom:474.651000px;}
.y2b_c00082{bottom:474.868500px;}
.y2c_c00082{bottom:475.641000px;}
.y2d_c00082{bottom:476.362500px;}
.y2e_c00082{bottom:476.671500px;}
.y1f_c00082{bottom:488.976000px;}
.y20_c00082{bottom:490.084500px;}
.y21_c00082{bottom:490.243500px;}
.y22_c00082{bottom:491.296500px;}
.y23_c00082{bottom:491.827500px;}
.y24_c00082{bottom:493.230000px;}
.y25_c00082{bottom:494.047500px;}
.y16_c00082{bottom:506.526000px;}
.y17_c00082{bottom:507.115500px;}
.y18_c00082{bottom:507.501000px;}
.y19_c00082{bottom:508.137000px;}
.y1a_c00082{bottom:508.461000px;}
.y1b_c00082{bottom:509.242500px;}
.y1c_c00082{bottom:509.640000px;}
.y1d_c00082{bottom:510.610500px;}
.y1e_c00082{bottom:510.805500px;}
.y11_c00082{bottom:522.994500px;}
.y12_c00082{bottom:523.909500px;}
.y13_c00082{bottom:525.453000px;}
.y14_c00082{bottom:526.224000px;}
.y15_c00082{bottom:527.854500px;}
.y9_c00082{bottom:540.543000px;}
.ya_c00082{bottom:540.846000px;}
.yb_c00082{bottom:541.662000px;}
.yc_c00082{bottom:542.574000px;}
.yd_c00082{bottom:543.079500px;}
.ye_c00082{bottom:543.939000px;}
.yf_c00082{bottom:544.635000px;}
.y10_c00082{bottom:544.936500px;}
.y2_c00082{bottom:557.283000px;}
.y3_c00082{bottom:558.306000px;}
.y4_c00082{bottom:558.466500px;}
.y5_c00082{bottom:559.180500px;}
.y6_c00082{bottom:559.563000px;}
.y7_c00082{bottom:559.744500px;}
.y8_c00082{bottom:560.764500px;}
.y1_c00082{bottom:570.790500px;}
.hc_c00082{height:57.750000px;}
.he_c00082{height:58.800000px;}
.hf_c00082{height:59.850000px;}
.h9_c00082{height:60.900000px;}
.ha_c00082{height:61.950000px;}
.h4_c00082{height:63.000000px;}
.h6_c00082{height:64.050000px;}
.h8_c00082{height:65.100000px;}
.hd_c00082{height:65.115752px;}
.h5_c00082{height:66.150000px;}
.h7_c00082{height:68.250000px;}
.h10_c00082{height:69.300000px;}
.hb_c00082{height:70.350000px;}
.h3_c00082{height:71.400000px;}
.h12_c00082{height:75.600000px;}
.h11_c00082{height:80.850000px;}
.h2_c00082{height:91.350000px;}
.h1_c00082{height:612.000000px;}
.h0_c00082{height:612.300000px;}
.w0_c00082{width:361.500000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:24.469500px;}
.xf_c00082{left:25.813500px;}
.x1d_c00082{left:26.883000px;}
.x25_c00082{left:27.994500px;}
.x2e_c00082{left:29.049000px;}
.x46_c00082{left:30.396000px;}
.x5c_c00082{left:32.130000px;}
.x69_c00082{left:33.750000px;}
.x73_c00082{left:34.941000px;}
.x7a_c00082{left:36.181500px;}
.x7f_c00082{left:37.261500px;}
.x52_c00082{left:39.960000px;}
.x8_c00082{left:44.160000px;}
.x3b_c00082{left:46.338000px;}
.x41_c00082{left:47.458500px;}
.x6d_c00082{left:48.870000px;}
.x6a_c00082{left:51.570000px;}
.x4c_c00082{left:55.077000px;}
.x2a_c00082{left:56.643000px;}
.x47_c00082{left:59.053500px;}
.x5d_c00082{left:60.480000px;}
.x78_c00082{left:62.508000px;}
.x13_c00082{left:65.703000px;}
.x36_c00082{left:70.359000px;}
.x67_c00082{left:72.360000px;}
.x10_c00082{left:73.933500px;}
.x2f_c00082{left:78.723000px;}
.x4a_c00082{left:82.767000px;}
.x1e_c00082{left:84.646500px;}
.x53_c00082{left:86.130000px;}
.x1a_c00082{left:87.769500px;}
.x42_c00082{left:89.020500px;}
.x14_c00082{left:91.432500px;}
.x2b_c00082{left:93.636000px;}
.x9_c00082{left:95.155500px;}
.x6b_c00082{left:96.390000px;}
.x3_c00082{left:97.564500px;}
.x30_c00082{left:100.333500px;}
.x6e_c00082{left:102.600000px;}
.x1f_c00082{left:104.581500px;}
.x26_c00082{left:106.486500px;}
.x3c_c00082{left:107.556000px;}
.x4_c00082{left:108.988500px;}
.x4f_c00082{left:110.970000px;}
.x5e_c00082{left:114.210000px;}
.x7b_c00082{left:117.451500px;}
.x77_c00082{left:119.071500px;}
.x61_c00082{left:121.770000px;}
.x37_c00082{left:124.831500px;}
.x3d_c00082{left:127.330500px;}
.x80_c00082{left:129.871500px;}
.x43_c00082{left:131.335500px;}
.x15_c00082{left:133.837500px;}
.x2c_c00082{left:135.237000px;}
.x27_c00082{left:138.429000px;}
.x48_c00082{left:140.880000px;}
.x64_c00082{left:143.910000px;}
.x62_c00082{left:144.990000px;}
.x54_c00082{left:146.880000px;}
.x20_c00082{left:150.537000px;}
.xa_c00082{left:152.188500px;}
.x50_c00082{left:153.630000px;}
.x11_c00082{left:155.139000px;}
.x1_c00082{left:160.110000px;}
.x31_c00082{left:165.330000px;}
.x21_c00082{left:167.284500px;}
.x3e_c00082{left:168.918000px;}
.x38_c00082{left:170.809500px;}
.x4d_c00082{left:173.373000px;}
.x6f_c00082{left:177.390000px;}
.x32_c00082{left:181.812000px;}
.xb_c00082{left:183.792000px;}
.x55_c00082{left:186.030000px;}
.x5_c00082{left:187.330500px;}
.x74_c00082{left:188.598000px;}
.x70_c00082{left:190.890000px;}
.x4b_c00082{left:194.472000px;}
.x12_c00082{left:195.736500px;}
.x6_c00082{left:200.272500px;}
.x5f_c00082{left:205.470000px;}
.x16_c00082{left:207.538500px;}
.x65_c00082{left:211.140000px;}
.x28_c00082{left:213.415500px;}
.x56_c00082{left:214.650000px;}
.x5a_c00082{left:218.700000px;}
.x72_c00082{left:220.671000px;}
.x7c_c00082{left:222.211500px;}
.x33_c00082{left:224.740500px;}
.x22_c00082{left:226.699500px;}
.x81_c00082{left:227.881500px;}
.x57_c00082{left:229.500000px;}
.x17_c00082{left:234.004500px;}
.x51_c00082{left:235.440000px;}
.xc_c00082{left:237.486000px;}
.x3f_c00082{left:240.477000px;}
.x39_c00082{left:242.026500px;}
.x7d_c00082{left:244.351500px;}
.x34_c00082{left:245.872500px;}
.x44_c00082{left:247.449000px;}
.x58_c00082{left:251.100000px;}
.x29_c00082{left:252.658500px;}
.x49_c00082{left:254.590500px;}
.x82_c00082{left:256.231500px;}
.x79_c00082{left:260.950500px;}
.x1b_c00082{left:262.588500px;}
.x35_c00082{left:264.514500px;}
.x63_c00082{left:267.840000px;}
.x68_c00082{left:269.730000px;}
.x7_c00082{left:273.169500px;}
.x75_c00082{left:274.321500px;}
.x4e_c00082{left:278.071500px;}
.xd_c00082{left:281.010000px;}
.x23_c00082{left:282.253500px;}
.x2d_c00082{left:284.269500px;}
.x5b_c00082{left:285.390000px;}
.x3a_c00082{left:287.959500px;}
.x7e_c00082{left:293.221500px;}
.x71_c00082{left:295.110000px;}
.x45_c00082{left:296.889000px;}
.x18_c00082{left:298.737000px;}
.xe_c00082{left:299.832000px;}
.x66_c00082{left:301.860000px;}
.x40_c00082{left:303.397500px;}
.x24_c00082{left:306.016500px;}
.x1c_c00082{left:308.022000px;}
.x59_c00082{left:309.960000px;}
.x19_c00082{left:311.779500px;}
.x60_c00082{left:315.630000px;}
.x6c_c00082{left:316.710000px;}
.x76_c00082{left:321.841500px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fsa_c00082{font-size:51.333333pt;}
.fsc_c00082{font-size:52.266667pt;}
.fsd_c00082{font-size:53.200000pt;}
.fs7_c00082{font-size:54.133333pt;}
.fs8_c00082{font-size:55.066667pt;}
.fs2_c00082{font-size:56.000000pt;}
.fs4_c00082{font-size:56.933333pt;}
.fs6_c00082{font-size:57.866667pt;}
.fsb_c00082{font-size:57.880669pt;}
.fs3_c00082{font-size:58.800000pt;}
.fs5_c00082{font-size:60.666667pt;}
.fse_c00082{font-size:61.600000pt;}
.fs9_c00082{font-size:62.533333pt;}
.fs1_c00082{font-size:63.466667pt;}
.fs10_c00082{font-size:67.200000pt;}
.fsf_c00082{font-size:71.866667pt;}
.fs0_c00082{font-size:81.200000pt;}
.y0_c00082{bottom:0.000000pt;}
.y8f_c00082{bottom:31.576000pt;}
.y8e_c00082{bottom:48.108000pt;}
.y8d_c00082{bottom:61.950667pt;}
.y87_c00082{bottom:76.801333pt;}
.y88_c00082{bottom:77.065333pt;}
.y89_c00082{bottom:78.126667pt;}
.y8a_c00082{bottom:78.810667pt;}
.y8b_c00082{bottom:79.006667pt;}
.y8c_c00082{bottom:79.542667pt;}
.y86_c00082{bottom:93.013333pt;}
.y85_c00082{bottom:108.133333pt;}
.y7f_c00082{bottom:120.961333pt;}
.y80_c00082{bottom:121.190667pt;}
.y81_c00082{bottom:121.568000pt;}
.y82_c00082{bottom:122.282667pt;}
.y83_c00082{bottom:122.462667pt;}
.y84_c00082{bottom:123.077333pt;}
.y78_c00082{bottom:135.842667pt;}
.y79_c00082{bottom:136.449333pt;}
.y7a_c00082{bottom:136.900000pt;}
.y7b_c00082{bottom:137.494667pt;}
.y7c_c00082{bottom:137.722667pt;}
.y7d_c00082{bottom:138.032000pt;}
.y7e_c00082{bottom:138.205333pt;}
.y77_c00082{bottom:152.669333pt;}
.y76_c00082{bottom:167.337333pt;}
.y75_c00082{bottom:182.697333pt;}
.y74_c00082{bottom:197.825333pt;}
.y73_c00082{bottom:212.945333pt;}
.y72_c00082{bottom:228.186667pt;}
.y71_c00082{bottom:242.724000pt;}
.y70_c00082{bottom:258.538667pt;}
.y6f_c00082{bottom:273.733333pt;}
.y69_c00082{bottom:285.845333pt;}
.y6a_c00082{bottom:286.668573pt;}
.y6b_c00082{bottom:288.158677pt;}
.y6c_c00082{bottom:289.188248pt;}
.y6d_c00082{bottom:289.594016pt;}
.y6e_c00082{bottom:290.206115pt;}
.y66_c00082{bottom:301.202667pt;}
.y67_c00082{bottom:301.808000pt;}
.y68_c00082{bottom:303.098667pt;}
.y5e_c00082{bottom:315.124000pt;}
.y5f_c00082{bottom:315.557333pt;}
.y60_c00082{bottom:316.556000pt;}
.y61_c00082{bottom:316.794667pt;}
.y62_c00082{bottom:317.238667pt;}
.y63_c00082{bottom:318.205333pt;}
.y64_c00082{bottom:318.512000pt;}
.y65_c00082{bottom:319.310667pt;}
.y56_c00082{bottom:329.284000pt;}
.y57_c00082{bottom:329.517333pt;}
.y58_c00082{bottom:330.072000pt;}
.y59_c00082{bottom:330.636000pt;}
.y5a_c00082{bottom:331.025333pt;}
.y5b_c00082{bottom:332.184000pt;}
.y5c_c00082{bottom:332.645333pt;}
.y5d_c00082{bottom:332.844000pt;}
.y4d_c00082{bottom:345.124000pt;}
.y4e_c00082{bottom:345.332000pt;}
.y4f_c00082{bottom:345.838667pt;}
.y50_c00082{bottom:346.093333pt;}
.y51_c00082{bottom:346.340000pt;}
.y52_c00082{bottom:346.857333pt;}
.y53_c00082{bottom:347.748000pt;}
.y54_c00082{bottom:348.150667pt;}
.y55_c00082{bottom:348.530667pt;}
.y44_c00082{bottom:360.244000pt;}
.y45_c00082{bottom:360.757333pt;}
.y46_c00082{bottom:361.217333pt;}
.y47_c00082{bottom:361.434667pt;}
.y48_c00082{bottom:361.754667pt;}
.y49_c00082{bottom:362.006667pt;}
.y4a_c00082{bottom:362.893333pt;}
.y4b_c00082{bottom:363.149333pt;}
.y4c_c00082{bottom:363.465333pt;}
.y3c_c00082{bottom:375.361333pt;}
.y3d_c00082{bottom:375.980000pt;}
.y3e_c00082{bottom:376.249333pt;}
.y3f_c00082{bottom:377.058667pt;}
.y40_c00082{bottom:377.264000pt;}
.y41_c00082{bottom:377.798667pt;}
.y42_c00082{bottom:378.061333pt;}
.y43_c00082{bottom:378.293333pt;}
.y34_c00082{bottom:389.282667pt;}
.y35_c00082{bottom:389.780000pt;}
.y36_c00082{bottom:390.372000pt;}
.y37_c00082{bottom:391.037333pt;}
.y38_c00082{bottom:392.194667pt;}
.y39_c00082{bottom:393.244000pt;}
.y3a_c00082{bottom:393.421333pt;}
.y3b_c00082{bottom:393.813333pt;}
.y2f_c00082{bottom:404.642667pt;}
.y30_c00082{bottom:405.689333pt;}
.y31_c00082{bottom:406.114667pt;}
.y32_c00082{bottom:407.114667pt;}
.y33_c00082{bottom:407.637333pt;}
.y26_c00082{bottom:420.481333pt;}
.y27_c00082{bottom:421.149333pt;}
.y28_c00082{bottom:421.380000pt;}
.y29_c00082{bottom:421.708000pt;}
.y2a_c00082{bottom:421.912000pt;}
.y2b_c00082{bottom:422.105333pt;}
.y2c_c00082{bottom:422.792000pt;}
.y2d_c00082{bottom:423.433333pt;}
.y2e_c00082{bottom:423.708000pt;}
.y1f_c00082{bottom:434.645333pt;}
.y20_c00082{bottom:435.630667pt;}
.y21_c00082{bottom:435.772000pt;}
.y22_c00082{bottom:436.708000pt;}
.y23_c00082{bottom:437.180000pt;}
.y24_c00082{bottom:438.426667pt;}
.y25_c00082{bottom:439.153333pt;}
.y16_c00082{bottom:450.245333pt;}
.y17_c00082{bottom:450.769333pt;}
.y18_c00082{bottom:451.112000pt;}
.y19_c00082{bottom:451.677333pt;}
.y1a_c00082{bottom:451.965333pt;}
.y1b_c00082{bottom:452.660000pt;}
.y1c_c00082{bottom:453.013333pt;}
.y1d_c00082{bottom:453.876000pt;}
.y1e_c00082{bottom:454.049333pt;}
.y11_c00082{bottom:464.884000pt;}
.y12_c00082{bottom:465.697333pt;}
.y13_c00082{bottom:467.069333pt;}
.y14_c00082{bottom:467.754667pt;}
.y15_c00082{bottom:469.204000pt;}
.y9_c00082{bottom:480.482667pt;}
.ya_c00082{bottom:480.752000pt;}
.yb_c00082{bottom:481.477333pt;}
.yc_c00082{bottom:482.288000pt;}
.yd_c00082{bottom:482.737333pt;}
.ye_c00082{bottom:483.501333pt;}
.yf_c00082{bottom:484.120000pt;}
.y10_c00082{bottom:484.388000pt;}
.y2_c00082{bottom:495.362667pt;}
.y3_c00082{bottom:496.272000pt;}
.y4_c00082{bottom:496.414667pt;}
.y5_c00082{bottom:497.049333pt;}
.y6_c00082{bottom:497.389333pt;}
.y7_c00082{bottom:497.550667pt;}
.y8_c00082{bottom:498.457333pt;}
.y1_c00082{bottom:507.369333pt;}
.hc_c00082{height:51.333333pt;}
.he_c00082{height:52.266667pt;}
.hf_c00082{height:53.200000pt;}
.h9_c00082{height:54.133333pt;}
.ha_c00082{height:55.066667pt;}
.h4_c00082{height:56.000000pt;}
.h6_c00082{height:56.933333pt;}
.h8_c00082{height:57.866667pt;}
.hd_c00082{height:57.880669pt;}
.h5_c00082{height:58.800000pt;}
.h7_c00082{height:60.666667pt;}
.h10_c00082{height:61.600000pt;}
.hb_c00082{height:62.533333pt;}
.h3_c00082{height:63.466667pt;}
.h12_c00082{height:67.200000pt;}
.h11_c00082{height:71.866667pt;}
.h2_c00082{height:81.200000pt;}
.h1_c00082{height:544.000000pt;}
.h0_c00082{height:544.266667pt;}
.w0_c00082{width:321.333333pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:21.750667pt;}
.xf_c00082{left:22.945333pt;}
.x1d_c00082{left:23.896000pt;}
.x25_c00082{left:24.884000pt;}
.x2e_c00082{left:25.821333pt;}
.x46_c00082{left:27.018667pt;}
.x5c_c00082{left:28.560000pt;}
.x69_c00082{left:30.000000pt;}
.x73_c00082{left:31.058667pt;}
.x7a_c00082{left:32.161333pt;}
.x7f_c00082{left:33.121333pt;}
.x52_c00082{left:35.520000pt;}
.x8_c00082{left:39.253333pt;}
.x3b_c00082{left:41.189333pt;}
.x41_c00082{left:42.185333pt;}
.x6d_c00082{left:43.440000pt;}
.x6a_c00082{left:45.840000pt;}
.x4c_c00082{left:48.957333pt;}
.x2a_c00082{left:50.349333pt;}
.x47_c00082{left:52.492000pt;}
.x5d_c00082{left:53.760000pt;}
.x78_c00082{left:55.562667pt;}
.x13_c00082{left:58.402667pt;}
.x36_c00082{left:62.541333pt;}
.x67_c00082{left:64.320000pt;}
.x10_c00082{left:65.718667pt;}
.x2f_c00082{left:69.976000pt;}
.x4a_c00082{left:73.570667pt;}
.x1e_c00082{left:75.241333pt;}
.x53_c00082{left:76.560000pt;}
.x1a_c00082{left:78.017333pt;}
.x42_c00082{left:79.129333pt;}
.x14_c00082{left:81.273333pt;}
.x2b_c00082{left:83.232000pt;}
.x9_c00082{left:84.582667pt;}
.x6b_c00082{left:85.680000pt;}
.x3_c00082{left:86.724000pt;}
.x30_c00082{left:89.185333pt;}
.x6e_c00082{left:91.200000pt;}
.x1f_c00082{left:92.961333pt;}
.x26_c00082{left:94.654667pt;}
.x3c_c00082{left:95.605333pt;}
.x4_c00082{left:96.878667pt;}
.x4f_c00082{left:98.640000pt;}
.x5e_c00082{left:101.520000pt;}
.x7b_c00082{left:104.401333pt;}
.x77_c00082{left:105.841333pt;}
.x61_c00082{left:108.240000pt;}
.x37_c00082{left:110.961333pt;}
.x3d_c00082{left:113.182667pt;}
.x80_c00082{left:115.441333pt;}
.x43_c00082{left:116.742667pt;}
.x15_c00082{left:118.966667pt;}
.x2c_c00082{left:120.210667pt;}
.x27_c00082{left:123.048000pt;}
.x48_c00082{left:125.226667pt;}
.x64_c00082{left:127.920000pt;}
.x62_c00082{left:128.880000pt;}
.x54_c00082{left:130.560000pt;}
.x20_c00082{left:133.810667pt;}
.xa_c00082{left:135.278667pt;}
.x50_c00082{left:136.560000pt;}
.x11_c00082{left:137.901333pt;}
.x1_c00082{left:142.320000pt;}
.x31_c00082{left:146.960000pt;}
.x21_c00082{left:148.697333pt;}
.x3e_c00082{left:150.149333pt;}
.x38_c00082{left:151.830667pt;}
.x4d_c00082{left:154.109333pt;}
.x6f_c00082{left:157.680000pt;}
.x32_c00082{left:161.610667pt;}
.xb_c00082{left:163.370667pt;}
.x55_c00082{left:165.360000pt;}
.x5_c00082{left:166.516000pt;}
.x74_c00082{left:167.642667pt;}
.x70_c00082{left:169.680000pt;}
.x4b_c00082{left:172.864000pt;}
.x12_c00082{left:173.988000pt;}
.x6_c00082{left:178.020000pt;}
.x5f_c00082{left:182.640000pt;}
.x16_c00082{left:184.478667pt;}
.x65_c00082{left:187.680000pt;}
.x28_c00082{left:189.702667pt;}
.x56_c00082{left:190.800000pt;}
.x5a_c00082{left:194.400000pt;}
.x72_c00082{left:196.152000pt;}
.x7c_c00082{left:197.521333pt;}
.x33_c00082{left:199.769333pt;}
.x22_c00082{left:201.510667pt;}
.x81_c00082{left:202.561333pt;}
.x57_c00082{left:204.000000pt;}
.x17_c00082{left:208.004000pt;}
.x51_c00082{left:209.280000pt;}
.xc_c00082{left:211.098667pt;}
.x3f_c00082{left:213.757333pt;}
.x39_c00082{left:215.134667pt;}
.x7d_c00082{left:217.201333pt;}
.x34_c00082{left:218.553333pt;}
.x44_c00082{left:219.954667pt;}
.x58_c00082{left:223.200000pt;}
.x29_c00082{left:224.585333pt;}
.x49_c00082{left:226.302667pt;}
.x82_c00082{left:227.761333pt;}
.x79_c00082{left:231.956000pt;}
.x1b_c00082{left:233.412000pt;}
.x35_c00082{left:235.124000pt;}
.x63_c00082{left:238.080000pt;}
.x68_c00082{left:239.760000pt;}
.x7_c00082{left:242.817333pt;}
.x75_c00082{left:243.841333pt;}
.x4e_c00082{left:247.174667pt;}
.xd_c00082{left:249.786667pt;}
.x23_c00082{left:250.892000pt;}
.x2d_c00082{left:252.684000pt;}
.x5b_c00082{left:253.680000pt;}
.x3a_c00082{left:255.964000pt;}
.x7e_c00082{left:260.641333pt;}
.x71_c00082{left:262.320000pt;}
.x45_c00082{left:263.901333pt;}
.x18_c00082{left:265.544000pt;}
.xe_c00082{left:266.517333pt;}
.x66_c00082{left:268.320000pt;}
.x40_c00082{left:269.686667pt;}
.x24_c00082{left:272.014667pt;}
.x1c_c00082{left:273.797333pt;}
.x59_c00082{left:275.520000pt;}
.x19_c00082{left:277.137333pt;}
.x60_c00082{left:280.560000pt;}
.x6c_c00082{left:281.520000pt;}
.x76_c00082{left:286.081333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00083 {
    display:none;
  }
  .loading-indicator_c00083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00083 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00083 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00083" -> "#page-container .classname_c00083")
 */
.pf_c00083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00083 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00083 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00083 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00083 {overflow:visible;}
  }
}
.c_c00083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00083 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00083:after { /* webkit #35443 */
  content: '';
}
.t_c00083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00083 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00083 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00083 { /* info for Javascript */
  display:none;
}
.l_c00083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00083:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00083 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00083.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00083{transform:matrix(0.022709,0.000977,-0.010751,0.249769,0,0);-ms-transform:matrix(0.022709,0.000977,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.022709,0.000977,-0.010751,0.249769,0,0);}
.m43_c00083{transform:matrix(0.075655,0.004852,-0.015999,0.249488,0,0);-ms-transform:matrix(0.075655,0.004852,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.075655,0.004852,-0.015999,0.249488,0,0);}
.m42_c00083{transform:matrix(0.139484,0.006702,-0.011998,0.249712,0,0);-ms-transform:matrix(0.139484,0.006702,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.139484,0.006702,-0.011998,0.249712,0,0);}
.ma2_c00083{transform:matrix(0.147768,0.006360,-0.010751,0.249769,0,0);-ms-transform:matrix(0.147768,0.006360,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.147768,0.006360,-0.010751,0.249769,0,0);}
.mae_c00083{transform:matrix(0.150675,0.006486,-0.010751,0.249769,0,0);-ms-transform:matrix(0.150675,0.006486,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.150675,0.006486,-0.010751,0.249769,0,0);}
.m1_c00083{transform:matrix(0.151651,0.006376,-0.010501,0.249779,0,0);-ms-transform:matrix(0.151651,0.006376,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.151651,0.006376,-0.010501,0.249779,0,0);}
.meb_c00083{transform:matrix(0.152020,0.007609,-0.012497,0.249687,0,0);-ms-transform:matrix(0.152020,0.007609,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.152020,0.007609,-0.012497,0.249687,0,0);}
.m85_c00083{transform:matrix(0.152134,0.006548,-0.010751,0.249769,0,0);-ms-transform:matrix(0.152134,0.006548,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.152134,0.006548,-0.010751,0.249769,0,0);}
.m73_c00083{transform:matrix(0.152843,0.006579,-0.010751,0.249769,0,0);-ms-transform:matrix(0.152843,0.006579,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.152843,0.006579,-0.010751,0.249769,0,0);}
.mac_c00083{transform:matrix(0.153848,0.006622,-0.010751,0.249769,0,0);-ms-transform:matrix(0.153848,0.006622,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.153848,0.006622,-0.010751,0.249769,0,0);}
.mab_c00083{transform:matrix(0.154427,0.006647,-0.010751,0.249769,0,0);-ms-transform:matrix(0.154427,0.006647,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.154427,0.006647,-0.010751,0.249769,0,0);}
.m4f_c00083{transform:matrix(0.155363,0.007620,-0.012248,0.249700,0,0);-ms-transform:matrix(0.155363,0.007620,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.155363,0.007620,-0.012248,0.249700,0,0);}
.me6_c00083{transform:matrix(0.156232,0.007976,-0.012746,0.249675,0,0);-ms-transform:matrix(0.156232,0.007976,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.156232,0.007976,-0.012746,0.249675,0,0);}
.ma7_c00083{transform:matrix(0.156905,0.006754,-0.010751,0.249769,0,0);-ms-transform:matrix(0.156905,0.006754,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.156905,0.006754,-0.010751,0.249769,0,0);}
.m88_c00083{transform:matrix(0.157809,0.006793,-0.010751,0.249769,0,0);-ms-transform:matrix(0.157809,0.006793,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.157809,0.006793,-0.010751,0.249769,0,0);}
.m79_c00083{transform:matrix(0.158518,0.006823,-0.010751,0.249769,0,0);-ms-transform:matrix(0.158518,0.006823,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.158518,0.006823,-0.010751,0.249769,0,0);}
.mba_c00083{transform:matrix(0.158603,0.006827,-0.010751,0.249769,0,0);-ms-transform:matrix(0.158603,0.006827,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.158603,0.006827,-0.010751,0.249769,0,0);}
.me3_c00083{transform:matrix(0.159782,0.008157,-0.012746,0.249675,0,0);-ms-transform:matrix(0.159782,0.008157,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.159782,0.008157,-0.012746,0.249675,0,0);}
.m83_c00083{transform:matrix(0.160157,0.006894,-0.010751,0.249769,0,0);-ms-transform:matrix(0.160157,0.006894,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.160157,0.006894,-0.010751,0.249769,0,0);}
.m87_c00083{transform:matrix(0.161351,0.006945,-0.010751,0.249769,0,0);-ms-transform:matrix(0.161351,0.006945,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.161351,0.006945,-0.010751,0.249769,0,0);}
.md6_c00083{transform:matrix(0.161451,0.006949,-0.010751,0.249769,0,0);-ms-transform:matrix(0.161451,0.006949,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.161451,0.006949,-0.010751,0.249769,0,0);}
.maf_c00083{transform:matrix(0.161675,0.006959,-0.010751,0.249769,0,0);-ms-transform:matrix(0.161675,0.006959,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.161675,0.006959,-0.010751,0.249769,0,0);}
.m6f_c00083{transform:matrix(0.161865,0.006967,-0.010751,0.249769,0,0);-ms-transform:matrix(0.161865,0.006967,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.161865,0.006967,-0.010751,0.249769,0,0);}
.m53_c00083{transform:matrix(0.163164,0.008003,-0.012248,0.249700,0,0);-ms-transform:matrix(0.163164,0.008003,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.163164,0.008003,-0.012248,0.249700,0,0);}
.m46_c00083{transform:matrix(0.163255,0.010469,-0.015999,0.249488,0,0);-ms-transform:matrix(0.163255,0.010469,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.163255,0.010469,-0.015999,0.249488,0,0);}
.md3_c00083{transform:matrix(0.163414,0.007034,-0.010751,0.249769,0,0);-ms-transform:matrix(0.163414,0.007034,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.163414,0.007034,-0.010751,0.249769,0,0);}
.m65_c00083{transform:matrix(0.164683,0.007088,-0.010751,0.249769,0,0);-ms-transform:matrix(0.164683,0.007088,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.164683,0.007088,-0.010751,0.249769,0,0);}
.m15_c00083{transform:matrix(0.165452,0.007784,-0.011749,0.249724,0,0);-ms-transform:matrix(0.165452,0.007784,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.165452,0.007784,-0.011749,0.249724,0,0);}
.mda_c00083{transform:matrix(0.165861,0.007139,-0.010751,0.249769,0,0);-ms-transform:matrix(0.165861,0.007139,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.165861,0.007139,-0.010751,0.249769,0,0);}
.m1f_c00083{transform:matrix(0.166121,0.007816,-0.011749,0.249724,0,0);-ms-transform:matrix(0.166121,0.007816,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.166121,0.007816,-0.011749,0.249724,0,0);}
.mc8_c00083{transform:matrix(0.166216,0.007154,-0.010751,0.249769,0,0);-ms-transform:matrix(0.166216,0.007154,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.166216,0.007154,-0.010751,0.249769,0,0);}
.mea_c00083{transform:matrix(0.166372,0.008327,-0.012497,0.249687,0,0);-ms-transform:matrix(0.166372,0.008327,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.166372,0.008327,-0.012497,0.249687,0,0);}
.m54_c00083{transform:matrix(0.166760,0.008179,-0.012248,0.249700,0,0);-ms-transform:matrix(0.166760,0.008179,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.166760,0.008179,-0.012248,0.249700,0,0);}
.mc1_c00083{transform:matrix(0.166940,0.007186,-0.010751,0.249769,0,0);-ms-transform:matrix(0.166940,0.007186,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.166940,0.007186,-0.010751,0.249769,0,0);}
.me5_c00083{transform:matrix(0.167547,0.008553,-0.012746,0.249675,0,0);-ms-transform:matrix(0.167547,0.008553,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.167547,0.008553,-0.012746,0.249675,0,0);}
.m80_c00083{transform:matrix(0.168029,0.007232,-0.010751,0.249769,0,0);-ms-transform:matrix(0.168029,0.007232,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.168029,0.007232,-0.010751,0.249769,0,0);}
.m48_c00083{transform:matrix(0.168793,0.010824,-0.015999,0.249488,0,0);-ms-transform:matrix(0.168793,0.010824,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.168793,0.010824,-0.015999,0.249488,0,0);}
.m97_c00083{transform:matrix(0.170058,0.007320,-0.010751,0.249769,0,0);-ms-transform:matrix(0.170058,0.007320,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.170058,0.007320,-0.010751,0.249769,0,0);}
.m1b_c00083{transform:matrix(0.170142,0.008005,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170142,0.008005,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170142,0.008005,-0.011749,0.249724,0,0);}
.m94_c00083{transform:matrix(0.170447,0.007337,-0.010751,0.249769,0,0);-ms-transform:matrix(0.170447,0.007337,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.170447,0.007337,-0.010751,0.249769,0,0);}
.me8_c00083{transform:matrix(0.170681,0.008543,-0.012497,0.249687,0,0);-ms-transform:matrix(0.170681,0.008543,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.170681,0.008543,-0.012497,0.249687,0,0);}
.m19_c00083{transform:matrix(0.170781,0.008035,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170781,0.008035,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170781,0.008035,-0.011749,0.249724,0,0);}
.med_c00083{transform:matrix(0.170826,0.008550,-0.012497,0.249687,0,0);-ms-transform:matrix(0.170826,0.008550,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.170826,0.008550,-0.012497,0.249687,0,0);}
.ma0_c00083{transform:matrix(0.171157,0.007367,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171157,0.007367,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171157,0.007367,-0.010751,0.249769,0,0);}
.md9_c00083{transform:matrix(0.171206,0.007369,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171206,0.007369,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171206,0.007369,-0.010751,0.249769,0,0);}
.m62_c00083{transform:matrix(0.171356,0.007376,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171356,0.007376,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171356,0.007376,-0.010751,0.249769,0,0);}
.m76_c00083{transform:matrix(0.171466,0.007380,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171466,0.007380,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171466,0.007380,-0.010751,0.249769,0,0);}
.mb3_c00083{transform:matrix(0.171676,0.007389,-0.010751,0.249769,0,0);-ms-transform:matrix(0.171676,0.007389,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.171676,0.007389,-0.010751,0.249769,0,0);}
.mbd_c00083{transform:matrix(0.172021,0.007404,-0.010751,0.249769,0,0);-ms-transform:matrix(0.172021,0.007404,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.172021,0.007404,-0.010751,0.249769,0,0);}
.mad_c00083{transform:matrix(0.172071,0.007406,-0.010751,0.249769,0,0);-ms-transform:matrix(0.172071,0.007406,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.172071,0.007406,-0.010751,0.249769,0,0);}
.m3e_c00083{transform:matrix(0.172746,0.008300,-0.011998,0.249712,0,0);-ms-transform:matrix(0.172746,0.008300,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.172746,0.008300,-0.011998,0.249712,0,0);}
.m36_c00083{transform:matrix(0.172769,0.008128,-0.011749,0.249724,0,0);-ms-transform:matrix(0.172769,0.008128,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.172769,0.008128,-0.011749,0.249724,0,0);}
.m29_c00083{transform:matrix(0.173213,0.008149,-0.011749,0.249724,0,0);-ms-transform:matrix(0.173213,0.008149,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.173213,0.008149,-0.011749,0.249724,0,0);}
.maa_c00083{transform:matrix(0.173320,0.007460,-0.010751,0.249769,0,0);-ms-transform:matrix(0.173320,0.007460,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.173320,0.007460,-0.010751,0.249769,0,0);}
.m18_c00083{transform:matrix(0.173933,0.008183,-0.011749,0.249724,0,0);-ms-transform:matrix(0.173933,0.008183,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.173933,0.008183,-0.011749,0.249724,0,0);}
.mee_c00083{transform:matrix(0.173982,0.008708,-0.012497,0.249687,0,0);-ms-transform:matrix(0.173982,0.008708,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.173982,0.008708,-0.012497,0.249687,0,0);}
.m7_c00083{transform:matrix(0.174041,0.007317,-0.010501,0.249779,0,0);-ms-transform:matrix(0.174041,0.007317,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.174041,0.007317,-0.010501,0.249779,0,0);}
.m7e_c00083{transform:matrix(0.174209,0.007498,-0.010751,0.249769,0,0);-ms-transform:matrix(0.174209,0.007498,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.174209,0.007498,-0.010751,0.249769,0,0);}
.m0_c00083{transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);}
.md8_c00083{transform:matrix(0.176132,0.007581,-0.010751,0.249769,0,0);-ms-transform:matrix(0.176132,0.007581,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.176132,0.007581,-0.010751,0.249769,0,0);}
.m6a_c00083{transform:matrix(0.176397,0.007593,-0.010751,0.249769,0,0);-ms-transform:matrix(0.176397,0.007593,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.176397,0.007593,-0.010751,0.249769,0,0);}
.me4_c00083{transform:matrix(0.176520,0.009012,-0.012746,0.249675,0,0);-ms-transform:matrix(0.176520,0.009012,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.176520,0.009012,-0.012746,0.249675,0,0);}
.mb_c00083{transform:matrix(0.176545,0.008306,-0.011749,0.249724,0,0);-ms-transform:matrix(0.176545,0.008306,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.176545,0.008306,-0.011749,0.249724,0,0);}
.m5f_c00083{transform:matrix(0.176586,0.007601,-0.010751,0.249769,0,0);-ms-transform:matrix(0.176586,0.007601,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.176586,0.007601,-0.010751,0.249769,0,0);}
.mdb_c00083{transform:matrix(0.176616,0.007602,-0.010751,0.249769,0,0);-ms-transform:matrix(0.176616,0.007602,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.176616,0.007602,-0.010751,0.249769,0,0);}
.m17_c00083{transform:matrix(0.177219,0.008338,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177219,0.008338,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177219,0.008338,-0.011749,0.249724,0,0);}
.md0_c00083{transform:matrix(0.177586,0.007644,-0.010751,0.249769,0,0);-ms-transform:matrix(0.177586,0.007644,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.177586,0.007644,-0.010751,0.249769,0,0);}
.m81_c00083{transform:matrix(0.177710,0.007649,-0.010751,0.249769,0,0);-ms-transform:matrix(0.177710,0.007649,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.177710,0.007649,-0.010751,0.249769,0,0);}
.m2a_c00083{transform:matrix(0.177758,0.008363,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177758,0.008363,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177758,0.008363,-0.011749,0.249724,0,0);}
.m71_c00083{transform:matrix(0.177860,0.007656,-0.010751,0.249769,0,0);-ms-transform:matrix(0.177860,0.007656,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.177860,0.007656,-0.010751,0.249769,0,0);}
.m78_c00083{transform:matrix(0.178315,0.007675,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178315,0.007675,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178315,0.007675,-0.010751,0.249769,0,0);}
.mc0_c00083{transform:matrix(0.178485,0.007683,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178485,0.007683,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178485,0.007683,-0.010751,0.249769,0,0);}
.m2_c00083{transform:matrix(0.178562,0.007507,-0.010501,0.249779,0,0);-ms-transform:matrix(0.178562,0.007507,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.178562,0.007507,-0.010501,0.249779,0,0);}
.m6e_c00083{transform:matrix(0.178620,0.007688,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178620,0.007688,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178620,0.007688,-0.010751,0.249769,0,0);}
.mbf_c00083{transform:matrix(0.178754,0.007694,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178754,0.007694,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178754,0.007694,-0.010751,0.249769,0,0);}
.m49_c00083{transform:matrix(0.179496,0.011511,-0.015999,0.249488,0,0);-ms-transform:matrix(0.179496,0.011511,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.179496,0.011511,-0.015999,0.249488,0,0);}
.mb0_c00083{transform:matrix(0.179609,0.007731,-0.010751,0.249769,0,0);-ms-transform:matrix(0.179609,0.007731,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.179609,0.007731,-0.010751,0.249769,0,0);}
.m8b_c00083{transform:matrix(0.179993,0.007747,-0.010751,0.249769,0,0);-ms-transform:matrix(0.179993,0.007747,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.179993,0.007747,-0.010751,0.249769,0,0);}
.m74_c00083{transform:matrix(0.180183,0.007756,-0.010751,0.249769,0,0);-ms-transform:matrix(0.180183,0.007756,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.180183,0.007756,-0.010751,0.249769,0,0);}
.ma6_c00083{transform:matrix(0.180428,0.007766,-0.010751,0.249769,0,0);-ms-transform:matrix(0.180428,0.007766,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.180428,0.007766,-0.010751,0.249769,0,0);}
.mdd_c00083{transform:matrix(0.180967,0.007789,-0.010751,0.249769,0,0);-ms-transform:matrix(0.180967,0.007789,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.180967,0.007789,-0.010751,0.249769,0,0);}
.m93_c00083{transform:matrix(0.180972,0.007790,-0.010751,0.249769,0,0);-ms-transform:matrix(0.180972,0.007790,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.180972,0.007790,-0.010751,0.249769,0,0);}
.mdf_c00083{transform:matrix(0.181119,0.009246,-0.012746,0.249675,0,0);-ms-transform:matrix(0.181119,0.009246,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.181119,0.009246,-0.012746,0.249675,0,0);}
.mbc_c00083{transform:matrix(0.181122,0.007796,-0.010751,0.249769,0,0);-ms-transform:matrix(0.181122,0.007796,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.181122,0.007796,-0.010751,0.249769,0,0);}
.me9_c00083{transform:matrix(0.181683,0.009093,-0.012497,0.249687,0,0);-ms-transform:matrix(0.181683,0.009093,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.181683,0.009093,-0.012497,0.249687,0,0);}
.m89_c00083{transform:matrix(0.181897,0.007829,-0.010751,0.249769,0,0);-ms-transform:matrix(0.181897,0.007829,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.181897,0.007829,-0.010751,0.249769,0,0);}
.m22_c00083{transform:matrix(0.182218,0.008573,-0.011749,0.249724,0,0);-ms-transform:matrix(0.182218,0.008573,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.182218,0.008573,-0.011749,0.249724,0,0);}
.ma1_c00083{transform:matrix(0.182741,0.007866,-0.010751,0.249769,0,0);-ms-transform:matrix(0.182741,0.007866,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.182741,0.007866,-0.010751,0.249769,0,0);}
.m31_c00083{transform:matrix(0.183797,0.008647,-0.011749,0.249724,0,0);-ms-transform:matrix(0.183797,0.008647,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.183797,0.008647,-0.011749,0.249724,0,0);}
.m2c_c00083{transform:matrix(0.183802,0.008647,-0.011749,0.249724,0,0);-ms-transform:matrix(0.183802,0.008647,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.183802,0.008647,-0.011749,0.249724,0,0);}
.ma8_c00083{transform:matrix(0.183880,0.007915,-0.010751,0.249769,0,0);-ms-transform:matrix(0.183880,0.007915,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.183880,0.007915,-0.010751,0.249769,0,0);}
.mbe_c00083{transform:matrix(0.184169,0.007927,-0.010751,0.249769,0,0);-ms-transform:matrix(0.184169,0.007927,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.184169,0.007927,-0.010751,0.249769,0,0);}
.me7_c00083{transform:matrix(0.184305,0.009409,-0.012746,0.249675,0,0);-ms-transform:matrix(0.184305,0.009409,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.184305,0.009409,-0.012746,0.249675,0,0);}
.m6_c00083{transform:matrix(0.185706,0.007807,-0.010501,0.249779,0,0);-ms-transform:matrix(0.185706,0.007807,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.185706,0.007807,-0.010501,0.249779,0,0);}
.m45_c00083{transform:matrix(0.185988,0.011927,-0.015999,0.249488,0,0);-ms-transform:matrix(0.185988,0.011927,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.185988,0.011927,-0.015999,0.249488,0,0);}
.m9f_c00083{transform:matrix(0.186288,0.008018,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186288,0.008018,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186288,0.008018,-0.010751,0.249769,0,0);}
.mb8_c00083{transform:matrix(0.186407,0.008024,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186407,0.008024,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186407,0.008024,-0.010751,0.249769,0,0);}
.m64_c00083{transform:matrix(0.186477,0.008027,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186477,0.008027,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186477,0.008027,-0.010751,0.249769,0,0);}
.m7f_c00083{transform:matrix(0.186567,0.008030,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186567,0.008030,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186567,0.008030,-0.010751,0.249769,0,0);}
.m9e_c00083{transform:matrix(0.186717,0.008037,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186717,0.008037,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186717,0.008037,-0.010751,0.249769,0,0);}
.m32_c00083{transform:matrix(0.186753,0.008786,-0.011749,0.249724,0,0);-ms-transform:matrix(0.186753,0.008786,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.186753,0.008786,-0.011749,0.249724,0,0);}
.m44_c00083{transform:matrix(0.186796,0.011979,-0.015999,0.249488,0,0);-ms-transform:matrix(0.186796,0.011979,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.186796,0.011979,-0.015999,0.249488,0,0);}
.m2d_c00083{transform:matrix(0.187048,0.008800,-0.011749,0.249724,0,0);-ms-transform:matrix(0.187048,0.008800,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.187048,0.008800,-0.011749,0.249724,0,0);}
.md1_c00083{transform:matrix(0.187426,0.008067,-0.010751,0.249769,0,0);-ms-transform:matrix(0.187426,0.008067,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.187426,0.008067,-0.010751,0.249769,0,0);}
.mc6_c00083{transform:matrix(0.187681,0.008078,-0.010751,0.249769,0,0);-ms-transform:matrix(0.187681,0.008078,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.187681,0.008078,-0.010751,0.249769,0,0);}
.me2_c00083{transform:matrix(0.188085,0.009602,-0.012746,0.249675,0,0);-ms-transform:matrix(0.188085,0.009602,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.188085,0.009602,-0.012746,0.249675,0,0);}
.m28_c00083{transform:matrix(0.188337,0.008861,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188337,0.008861,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188337,0.008861,-0.011749,0.249724,0,0);}
.mb2_c00083{transform:matrix(0.188456,0.008112,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188456,0.008112,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188456,0.008112,-0.010751,0.249769,0,0);}
.m52_c00083{transform:matrix(0.188533,0.009247,-0.012248,0.249700,0,0);-ms-transform:matrix(0.188533,0.009247,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.188533,0.009247,-0.012248,0.249700,0,0);}
.m7c_c00083{transform:matrix(0.188535,0.008115,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188535,0.008115,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188535,0.008115,-0.010751,0.249769,0,0);}
.m67_c00083{transform:matrix(0.188575,0.008117,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188575,0.008117,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188575,0.008117,-0.010751,0.249769,0,0);}
.m30_c00083{transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188736,0.008879,-0.011749,0.249724,0,0);}
.m72_c00083{transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188930,0.008132,-0.010751,0.249769,0,0);}
.m4c_c00083{transform:matrix(0.189022,0.012122,-0.015999,0.249488,0,0);-ms-transform:matrix(0.189022,0.012122,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.189022,0.012122,-0.015999,0.249488,0,0);}
.mec_c00083{transform:matrix(0.189248,0.009472,-0.012497,0.249687,0,0);-ms-transform:matrix(0.189248,0.009472,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.189248,0.009472,-0.012497,0.249687,0,0);}
.m24_c00083{transform:matrix(0.190170,0.008947,-0.011749,0.249724,0,0);-ms-transform:matrix(0.190170,0.008947,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.190170,0.008947,-0.011749,0.249724,0,0);}
.mc_c00083{transform:matrix(0.190389,0.008957,-0.011749,0.249724,0,0);-ms-transform:matrix(0.190389,0.008957,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.190389,0.008957,-0.011749,0.249724,0,0);}
.md5_c00083{transform:matrix(0.190853,0.008215,-0.010751,0.249769,0,0);-ms-transform:matrix(0.190853,0.008215,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.190853,0.008215,-0.010751,0.249769,0,0);}
.m33_c00083{transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);-ms-transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);}
.mc4_c00083{transform:matrix(0.191253,0.008232,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191253,0.008232,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191253,0.008232,-0.010751,0.249769,0,0);}
.m60_c00083{transform:matrix(0.191388,0.008238,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191388,0.008238,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191388,0.008238,-0.010751,0.249769,0,0);}
.mb7_c00083{transform:matrix(0.191817,0.008256,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191817,0.008256,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191817,0.008256,-0.010751,0.249769,0,0);}
.m61_c00083{transform:matrix(0.191962,0.008263,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191962,0.008263,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191962,0.008263,-0.010751,0.249769,0,0);}
.m5c_c00083{transform:matrix(0.192044,0.009420,-0.012248,0.249700,0,0);-ms-transform:matrix(0.192044,0.009420,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.192044,0.009420,-0.012248,0.249700,0,0);}
.ma9_c00083{transform:matrix(0.192217,0.008274,-0.010751,0.249769,0,0);-ms-transform:matrix(0.192217,0.008274,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.192217,0.008274,-0.010751,0.249769,0,0);}
.m92_c00083{transform:matrix(0.192826,0.008300,-0.010751,0.249769,0,0);-ms-transform:matrix(0.192826,0.008300,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.192826,0.008300,-0.010751,0.249769,0,0);}
.m9c_c00083{transform:matrix(0.193156,0.008314,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193156,0.008314,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193156,0.008314,-0.010751,0.249769,0,0);}
.m51_c00083{transform:matrix(0.193308,0.009482,-0.012248,0.249700,0,0);-ms-transform:matrix(0.193308,0.009482,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.193308,0.009482,-0.012248,0.249700,0,0);}
.m2e_c00083{transform:matrix(0.193626,0.009110,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193626,0.009110,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193626,0.009110,-0.011749,0.249724,0,0);}
.mb4_c00083{transform:matrix(0.193706,0.008338,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193706,0.008338,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193706,0.008338,-0.010751,0.249769,0,0);}
.m5d_c00083{transform:matrix(0.194411,0.009536,-0.012248,0.249700,0,0);-ms-transform:matrix(0.194411,0.009536,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.194411,0.009536,-0.012248,0.249700,0,0);}
.m63_c00083{transform:matrix(0.194735,0.008382,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194735,0.008382,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194735,0.008382,-0.010751,0.249769,0,0);}
.md2_c00083{transform:matrix(0.194740,0.008382,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194740,0.008382,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194740,0.008382,-0.010751,0.249769,0,0);}
.m16_c00083{transform:matrix(0.194964,0.009172,-0.011749,0.249724,0,0);-ms-transform:matrix(0.194964,0.009172,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.194964,0.009172,-0.011749,0.249724,0,0);}
.mf_c00083{transform:matrix(0.195154,0.009181,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195154,0.009181,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195154,0.009181,-0.011749,0.249724,0,0);}
.m27_c00083{transform:matrix(0.195733,0.009209,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195733,0.009209,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195733,0.009209,-0.011749,0.249724,0,0);}
.mc3_c00083{transform:matrix(0.196028,0.008438,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196028,0.008438,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196028,0.008438,-0.010751,0.249769,0,0);}
.me0_c00083{transform:matrix(0.196399,0.010026,-0.012746,0.249675,0,0);-ms-transform:matrix(0.196399,0.010026,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.196399,0.010026,-0.012746,0.249675,0,0);}
.m68_c00083{transform:matrix(0.196808,0.008471,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196808,0.008471,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196808,0.008471,-0.010751,0.249769,0,0);}
.mbb_c00083{transform:matrix(0.197227,0.008489,-0.010751,0.249769,0,0);-ms-transform:matrix(0.197227,0.008489,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.197227,0.008489,-0.010751,0.249769,0,0);}
.m13_c00083{transform:matrix(0.197297,0.009282,-0.011749,0.249724,0,0);-ms-transform:matrix(0.197297,0.009282,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.197297,0.009282,-0.011749,0.249724,0,0);}
.m99_c00083{transform:matrix(0.197437,0.008498,-0.010751,0.249769,0,0);-ms-transform:matrix(0.197437,0.008498,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.197437,0.008498,-0.010751,0.249769,0,0);}
.m1d_c00083{transform:matrix(0.197502,0.009292,-0.011749,0.249724,0,0);-ms-transform:matrix(0.197502,0.009292,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.197502,0.009292,-0.011749,0.249724,0,0);}
.m14_c00083{transform:matrix(0.198111,0.009321,-0.011749,0.249724,0,0);-ms-transform:matrix(0.198111,0.009321,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.198111,0.009321,-0.011749,0.249724,0,0);}
.mcf_c00083{transform:matrix(0.198421,0.008541,-0.010751,0.249769,0,0);-ms-transform:matrix(0.198421,0.008541,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.198421,0.008541,-0.010751,0.249769,0,0);}
.m23_c00083{transform:matrix(0.198550,0.009341,-0.011749,0.249724,0,0);-ms-transform:matrix(0.198550,0.009341,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.198550,0.009341,-0.011749,0.249724,0,0);}
.m50_c00083{transform:matrix(0.198876,0.009755,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198876,0.009755,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198876,0.009755,-0.012248,0.249700,0,0);}
.m75_c00083{transform:matrix(0.199310,0.008579,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199310,0.008579,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199310,0.008579,-0.010751,0.249769,0,0);}
.md4_c00083{transform:matrix(0.199405,0.008583,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199405,0.008583,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199405,0.008583,-0.010751,0.249769,0,0);}
.mc5_c00083{transform:matrix(0.199600,0.008591,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199600,0.008591,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199600,0.008591,-0.010751,0.249769,0,0);}
.m86_c00083{transform:matrix(0.199830,0.008601,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199830,0.008601,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199830,0.008601,-0.010751,0.249769,0,0);}
.m47_c00083{transform:matrix(0.200204,0.012839,-0.015999,0.249488,0,0);-ms-transform:matrix(0.200204,0.012839,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.200204,0.012839,-0.015999,0.249488,0,0);}
.m12_c00083{transform:matrix(0.201292,0.009470,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201292,0.009470,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201292,0.009470,-0.011749,0.249724,0,0);}
.ma5_c00083{transform:matrix(0.201653,0.008680,-0.010751,0.249769,0,0);-ms-transform:matrix(0.201653,0.008680,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.201653,0.008680,-0.010751,0.249769,0,0);}
.mb5_c00083{transform:matrix(0.202892,0.008733,-0.010751,0.249769,0,0);-ms-transform:matrix(0.202892,0.008733,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.202892,0.008733,-0.010751,0.249769,0,0);}
.m4d_c00083{transform:matrix(0.202953,0.013015,-0.015999,0.249488,0,0);-ms-transform:matrix(0.202953,0.013015,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.202953,0.013015,-0.015999,0.249488,0,0);}
.m9d_c00083{transform:matrix(0.203482,0.008758,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203482,0.008758,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203482,0.008758,-0.010751,0.249769,0,0);}
.m84_c00083{transform:matrix(0.203577,0.008763,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203577,0.008763,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203577,0.008763,-0.010751,0.249769,0,0);}
.m34_c00083{transform:matrix(0.203800,0.009588,-0.011749,0.249724,0,0);-ms-transform:matrix(0.203800,0.009588,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.203800,0.009588,-0.011749,0.249724,0,0);}
.m82_c00083{transform:matrix(0.203841,0.008774,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203841,0.008774,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203841,0.008774,-0.010751,0.249769,0,0);}
.mc2_c00083{transform:matrix(0.203891,0.008776,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203891,0.008776,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203891,0.008776,-0.010751,0.249769,0,0);}
.m57_c00083{transform:matrix(0.203995,0.010006,-0.012248,0.249700,0,0);-ms-transform:matrix(0.203995,0.010006,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.203995,0.010006,-0.012248,0.249700,0,0);}
.m95_c00083{transform:matrix(0.204201,0.008789,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204201,0.008789,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204201,0.008789,-0.010751,0.249769,0,0);}
.m3c_c00083{transform:matrix(0.204299,0.009816,-0.011998,0.249712,0,0);-ms-transform:matrix(0.204299,0.009816,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.204299,0.009816,-0.011998,0.249712,0,0);}
.m3_c00083{transform:matrix(0.204354,0.008591,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204354,0.008591,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204354,0.008591,-0.010501,0.249779,0,0);}
.m6c_c00083{transform:matrix(0.204376,0.008797,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204376,0.008797,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204376,0.008797,-0.010751,0.249769,0,0);}
.m69_c00083{transform:matrix(0.204800,0.008815,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204800,0.008815,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204800,0.008815,-0.010751,0.249769,0,0);}
.mca_c00083{transform:matrix(0.204930,0.008821,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204930,0.008821,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204930,0.008821,-0.010751,0.249769,0,0);}
.m96_c00083{transform:matrix(0.204990,0.008823,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204990,0.008823,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204990,0.008823,-0.010751,0.249769,0,0);}
.m77_c00083{transform:matrix(0.205070,0.008827,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205070,0.008827,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205070,0.008827,-0.010751,0.249769,0,0);}
.m9_c00083{transform:matrix(0.205393,0.009663,-0.011749,0.249724,0,0);-ms-transform:matrix(0.205393,0.009663,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.205393,0.009663,-0.011749,0.249724,0,0);}
.m1c_c00083{transform:matrix(0.206002,0.009692,-0.011749,0.249724,0,0);-ms-transform:matrix(0.206002,0.009692,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.206002,0.009692,-0.011749,0.249724,0,0);}
.mce_c00083{transform:matrix(0.206459,0.008887,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206459,0.008887,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206459,0.008887,-0.010751,0.249769,0,0);}
.m5a_c00083{transform:matrix(0.206751,0.010141,-0.012248,0.249700,0,0);-ms-transform:matrix(0.206751,0.010141,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.206751,0.010141,-0.012248,0.249700,0,0);}
.m2b_c00083{transform:matrix(0.206966,0.009737,-0.011749,0.249724,0,0);-ms-transform:matrix(0.206966,0.009737,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.206966,0.009737,-0.011749,0.249724,0,0);}
.me_c00083{transform:matrix(0.207146,0.009746,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207146,0.009746,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207146,0.009746,-0.011749,0.249724,0,0);}
.mb6_c00083{transform:matrix(0.208227,0.008963,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208227,0.008963,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208227,0.008963,-0.010751,0.249769,0,0);}
.ma4_c00083{transform:matrix(0.209246,0.009007,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209246,0.009007,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209246,0.009007,-0.010751,0.249769,0,0);}
.m20_c00083{transform:matrix(0.209284,0.009846,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209284,0.009846,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209284,0.009846,-0.011749,0.249724,0,0);}
.m5b_c00083{transform:matrix(0.209383,0.010270,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209383,0.010270,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209383,0.010270,-0.012248,0.249700,0,0);}
.mcd_c00083{transform:matrix(0.210610,0.009065,-0.010751,0.249769,0,0);-ms-transform:matrix(0.210610,0.009065,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.210610,0.009065,-0.010751,0.249769,0,0);}
.m7d_c00083{transform:matrix(0.210785,0.009073,-0.010751,0.249769,0,0);-ms-transform:matrix(0.210785,0.009073,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.210785,0.009073,-0.010751,0.249769,0,0);}
.m55_c00083{transform:matrix(0.211850,0.010391,-0.012248,0.249700,0,0);-ms-transform:matrix(0.211850,0.010391,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.211850,0.010391,-0.012248,0.249700,0,0);}
.m98_c00083{transform:matrix(0.212094,0.009129,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212094,0.009129,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212094,0.009129,-0.010751,0.249769,0,0);}
.mcc_c00083{transform:matrix(0.212418,0.009143,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212418,0.009143,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212418,0.009143,-0.010751,0.249769,0,0);}
.m3d_c00083{transform:matrix(0.213823,0.010274,-0.011998,0.249712,0,0);-ms-transform:matrix(0.213823,0.010274,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.213823,0.010274,-0.011998,0.249712,0,0);}
.m1a_c00083{transform:matrix(0.214228,0.010079,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214228,0.010079,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214228,0.010079,-0.011749,0.249724,0,0);}
.m6b_c00083{transform:matrix(0.214581,0.009236,-0.010751,0.249769,0,0);-ms-transform:matrix(0.214581,0.009236,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.214581,0.009236,-0.010751,0.249769,0,0);}
.m37_c00083{transform:matrix(0.214917,0.010111,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214917,0.010111,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214917,0.010111,-0.011749,0.249724,0,0);}
.m39_c00083{transform:matrix(0.215781,0.010152,-0.011749,0.249724,0,0);-ms-transform:matrix(0.215781,0.010152,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.215781,0.010152,-0.011749,0.249724,0,0);}
.m8f_c00083{transform:matrix(0.215970,0.009296,-0.010751,0.249769,0,0);-ms-transform:matrix(0.215970,0.009296,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.215970,0.009296,-0.010751,0.249769,0,0);}
.ma_c00083{transform:matrix(0.216191,0.010171,-0.011749,0.249724,0,0);-ms-transform:matrix(0.216191,0.010171,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.216191,0.010171,-0.011749,0.249724,0,0);}
.m8_c00083{transform:matrix(0.217858,0.009159,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217858,0.009159,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217858,0.009159,-0.010501,0.249779,0,0);}
.m11_c00083{transform:matrix(0.218423,0.010276,-0.011749,0.249724,0,0);-ms-transform:matrix(0.218423,0.010276,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.218423,0.010276,-0.011749,0.249724,0,0);}
.mc7_c00083{transform:matrix(0.218832,0.009419,-0.010751,0.249769,0,0);-ms-transform:matrix(0.218832,0.009419,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.218832,0.009419,-0.010751,0.249769,0,0);}
.m59_c00083{transform:matrix(0.218982,0.010741,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218982,0.010741,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218982,0.010741,-0.012248,0.249700,0,0);}
.m25_c00083{transform:matrix(0.219407,0.010322,-0.011749,0.249724,0,0);-ms-transform:matrix(0.219407,0.010322,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.219407,0.010322,-0.011749,0.249724,0,0);}
.m91_c00083{transform:matrix(0.219587,0.009452,-0.010751,0.249769,0,0);-ms-transform:matrix(0.219587,0.009452,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.219587,0.009452,-0.010751,0.249769,0,0);}
.m40_c00083{transform:matrix(0.219732,0.010558,-0.011998,0.249712,0,0);-ms-transform:matrix(0.219732,0.010558,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.219732,0.010558,-0.011998,0.249712,0,0);}
.mb1_c00083{transform:matrix(0.219916,0.009466,-0.010751,0.249769,0,0);-ms-transform:matrix(0.219916,0.009466,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.219916,0.009466,-0.010751,0.249769,0,0);}
.m9a_c00083{transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);-ms-transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.220816,0.009505,-0.010751,0.249769,0,0);}
.m3a_c00083{transform:matrix(0.221250,0.010409,-0.011749,0.249724,0,0);-ms-transform:matrix(0.221250,0.010409,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.221250,0.010409,-0.011749,0.249724,0,0);}
.mde_c00083{transform:matrix(0.221690,0.009542,-0.010751,0.249769,0,0);-ms-transform:matrix(0.221690,0.009542,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.221690,0.009542,-0.010751,0.249769,0,0);}
.m4e_c00083{transform:matrix(0.222518,0.014270,-0.015999,0.249488,0,0);-ms-transform:matrix(0.222518,0.014270,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.222518,0.014270,-0.015999,0.249488,0,0);}
.m5e_c00083{transform:matrix(0.222749,0.009588,-0.010751,0.249769,0,0);-ms-transform:matrix(0.222749,0.009588,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.222749,0.009588,-0.010751,0.249769,0,0);}
.m1e_c00083{transform:matrix(0.223548,0.010517,-0.011749,0.249724,0,0);-ms-transform:matrix(0.223548,0.010517,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.223548,0.010517,-0.011749,0.249724,0,0);}
.mc9_c00083{transform:matrix(0.223918,0.009638,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223918,0.009638,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223918,0.009638,-0.010751,0.249769,0,0);}
.m35_c00083{transform:matrix(0.224142,0.010545,-0.011749,0.249724,0,0);-ms-transform:matrix(0.224142,0.010545,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.224142,0.010545,-0.011749,0.249724,0,0);}
.m4b_c00083{transform:matrix(0.224873,0.014421,-0.015999,0.249488,0,0);-ms-transform:matrix(0.224873,0.014421,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.224873,0.014421,-0.015999,0.249488,0,0);}
.mdc_c00083{transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);}
.m3f_c00083{transform:matrix(0.227133,0.010913,-0.011998,0.249712,0,0);-ms-transform:matrix(0.227133,0.010913,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.227133,0.010913,-0.011998,0.249712,0,0);}
.m56_c00083{transform:matrix(0.227147,0.011141,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227147,0.011141,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227147,0.011141,-0.012248,0.249700,0,0);}
.m58_c00083{transform:matrix(0.227202,0.011144,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227202,0.011144,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227202,0.011144,-0.012248,0.249700,0,0);}
.m8e_c00083{transform:matrix(0.228089,0.009818,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228089,0.009818,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228089,0.009818,-0.010751,0.249769,0,0);}
.m9b_c00083{transform:matrix(0.229927,0.009897,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229927,0.009897,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229927,0.009897,-0.010751,0.249769,0,0);}
.ma3_c00083{transform:matrix(0.229992,0.009900,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229992,0.009900,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229992,0.009900,-0.010751,0.249769,0,0);}
.mb9_c00083{transform:matrix(0.230042,0.009902,-0.010751,0.249769,0,0);-ms-transform:matrix(0.230042,0.009902,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.230042,0.009902,-0.010751,0.249769,0,0);}
.m8c_c00083{transform:matrix(0.231146,0.009949,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231146,0.009949,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231146,0.009949,-0.010751,0.249769,0,0);}
.m21_c00083{transform:matrix(0.232313,0.010930,-0.011749,0.249724,0,0);-ms-transform:matrix(0.232313,0.010930,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.232313,0.010930,-0.011749,0.249724,0,0);}
.m26_c00083{transform:matrix(0.233891,0.011004,-0.011749,0.249724,0,0);-ms-transform:matrix(0.233891,0.011004,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.233891,0.011004,-0.011749,0.249724,0,0);}
.m4a_c00083{transform:matrix(0.234703,0.015051,-0.015999,0.249488,0,0);-ms-transform:matrix(0.234703,0.015051,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.234703,0.015051,-0.015999,0.249488,0,0);}
.m8d_c00083{transform:matrix(0.236676,0.010187,-0.010751,0.249769,0,0);-ms-transform:matrix(0.236676,0.010187,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.236676,0.010187,-0.010751,0.249769,0,0);}
.me1_c00083{transform:matrix(0.236737,0.012086,-0.012746,0.249675,0,0);-ms-transform:matrix(0.236737,0.012086,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.236737,0.012086,-0.012746,0.249675,0,0);}
.m7b_c00083{transform:matrix(0.237825,0.010237,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237825,0.010237,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237825,0.010237,-0.010751,0.249769,0,0);}
.m41_c00083{transform:matrix(0.240348,0.011548,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240348,0.011548,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240348,0.011548,-0.011998,0.249712,0,0);}
.m2f_c00083{transform:matrix(0.240844,0.011331,-0.011749,0.249724,0,0);-ms-transform:matrix(0.240844,0.011331,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.240844,0.011331,-0.011749,0.249724,0,0);}
.m8a_c00083{transform:matrix(0.241132,0.010379,-0.010751,0.249769,0,0);-ms-transform:matrix(0.241132,0.010379,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.241132,0.010379,-0.010751,0.249769,0,0);}
.md_c00083{transform:matrix(0.247946,0.011665,-0.011749,0.249724,0,0);-ms-transform:matrix(0.247946,0.011665,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.247946,0.011665,-0.011749,0.249724,0,0);}
.m38_c00083{transform:matrix(0.251152,0.011816,-0.011749,0.249724,0,0);-ms-transform:matrix(0.251152,0.011816,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.251152,0.011816,-0.011749,0.249724,0,0);}
.m6d_c00083{transform:matrix(0.251692,0.010834,-0.010751,0.249769,0,0);-ms-transform:matrix(0.251692,0.010834,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.251692,0.010834,-0.010751,0.249769,0,0);}
.m90_c00083{transform:matrix(0.251857,0.010841,-0.010751,0.249769,0,0);-ms-transform:matrix(0.251857,0.010841,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.251857,0.010841,-0.010751,0.249769,0,0);}
.m5_c00083{transform:matrix(0.261959,0.011013,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261959,0.011013,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261959,0.011013,-0.010501,0.249779,0,0);}
.m70_c00083{transform:matrix(0.267542,0.011516,-0.010751,0.249769,0,0);-ms-transform:matrix(0.267542,0.011516,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.267542,0.011516,-0.010751,0.249769,0,0);}
.m4_c00083{transform:matrix(0.282276,0.011867,-0.010501,0.249779,0,0);-ms-transform:matrix(0.282276,0.011867,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.282276,0.011867,-0.010501,0.249779,0,0);}
.m3b_c00083{transform:matrix(0.287304,0.013804,-0.011998,0.249712,0,0);-ms-transform:matrix(0.287304,0.013804,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.287304,0.013804,-0.011998,0.249712,0,0);}
.mcb_c00083{transform:matrix(0.292130,0.012574,-0.010751,0.249769,0,0);-ms-transform:matrix(0.292130,0.012574,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.292130,0.012574,-0.010751,0.249769,0,0);}
.m7a_c00083{transform:matrix(0.316102,0.013606,-0.010751,0.249769,0,0);-ms-transform:matrix(0.316102,0.013606,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.316102,0.013606,-0.010751,0.249769,0,0);}
.m10_c00083{transform:matrix(0.321839,0.015142,-0.011749,0.249724,0,0);-ms-transform:matrix(0.321839,0.015142,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.321839,0.015142,-0.011749,0.249724,0,0);}
.m66_c00083{transform:matrix(0.347348,0.014951,-0.010751,0.249769,0,0);-ms-transform:matrix(0.347348,0.014951,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.347348,0.014951,-0.010751,0.249769,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:0.000000px;}
.fc0_c00083{color:transparent;}
.fse_c00083{font-size:57.745669px;}
.fs8_c00083{font-size:57.752887px;}
.fs5_c00083{font-size:57.756063px;}
.fs6_c00083{font-size:57.758806px;}
.fs10_c00083{font-size:58.795590px;}
.fs14_c00083{font-size:59.845511px;}
.fsc_c00083{font-size:60.895432px;}
.fs4_c00083{font-size:60.906394px;}
.fsa_c00083{font-size:60.912240px;}
.fsf_c00083{font-size:61.945354px;}
.fs2_c00083{font-size:61.956504px;}
.fs9_c00083{font-size:61.962451px;}
.fs1_c00083{font-size:64.042474px;}
.fsd_c00083{font-size:65.095117px;}
.fs0_c00083{font-size:65.100000px;}
.fsb_c00083{font-size:66.145039px;}
.fs15_c00083{font-size:66.169908px;}
.fs12_c00083{font-size:67.194960px;}
.fs7_c00083{font-size:67.203360px;}
.fs11_c00083{font-size:68.244881px;}
.fs13_c00083{font-size:69.294802px;}
.fs16_c00083{font-size:69.317357px;}
.fs3_c00083{font-size:70.357386px;}
.y0_c00083{bottom:0.000000px;}
.yf1_c00083{bottom:29.214600px;}
.yf0_c00083{bottom:31.746075px;}
.yef_c00083{bottom:34.504725px;}
.yee_c00083{bottom:35.356200px;}
.yed_c00083{bottom:39.362025px;}
.yec_c00083{bottom:40.284975px;}
.yeb_c00083{bottom:42.420000px;}
.yea_c00083{bottom:45.315490px;}
.ye9_c00083{bottom:46.139931px;}
.ye8_c00083{bottom:48.055721px;}
.ye7_c00083{bottom:49.371750px;}
.ye6_c00083{bottom:50.239795px;}
.ye5_c00083{bottom:51.636227px;}
.ye4_c00083{bottom:52.709904px;}
.ye3_c00083{bottom:56.795693px;}
.ye2_c00083{bottom:59.431500px;}
.ye1_c00083{bottom:61.609068px;}
.ye0_c00083{bottom:66.399657px;}
.ydf_c00083{bottom:68.740353px;}
.yde_c00083{bottom:73.594809px;}
.ydd_c00083{bottom:75.478344px;}
.ydc_c00083{bottom:79.174953px;}
.yd9_c00083{bottom:80.123874px;}
.yd8_c00083{bottom:81.652695px;}
.ydb_c00083{bottom:83.015933px;}
.yda_c00083{bottom:83.732690px;}
.yd7_c00083{bottom:85.428605px;}
.yd6_c00083{bottom:86.966858px;}
.yd5_c00083{bottom:89.148230px;}
.yd4_c00083{bottom:90.578444px;}
.yd3_c00083{bottom:94.553453px;}
.yd2_c00083{bottom:96.153153px;}
.yd1_c00083{bottom:98.712197px;}
.yd0_c00083{bottom:99.747171px;}
.ycf_c00083{bottom:102.876843px;}
.yce_c00083{bottom:103.736237px;}
.ycd_c00083{bottom:107.040264px;}
.ycc_c00083{bottom:108.564914px;}
.ycb_c00083{bottom:109.936910px;}
.yca_c00083{bottom:115.000047px;}
.yc9_c00083{bottom:116.017580px;}
.yc8_c00083{bottom:119.903613px;}
.yc7_c00083{bottom:122.929770px;}
.yc6_c00083{bottom:125.891778px;}
.yc5_c00083{bottom:127.530567px;}
.yc4_c00083{bottom:129.112059px;}
.yc3_c00083{bottom:129.379613px;}
.yc2_c00083{bottom:130.534881px;}
.yc1_c00083{bottom:133.379078px;}
.yc0_c00083{bottom:136.561457px;}
.ybf_c00083{bottom:139.444607px;}
.ybe_c00083{bottom:142.088280px;}
.ybd_c00083{bottom:143.409311px;}
.ybc_c00083{bottom:149.788092px;}
.ybb_c00083{bottom:150.513624px;}
.yba_c00083{bottom:152.466360px;}
.yb9_c00083{bottom:153.682907px;}
.yb8_c00083{bottom:155.487570px;}
.yb7_c00083{bottom:156.630959px;}
.yb6_c00083{bottom:157.354104px;}
.yb5_c00083{bottom:158.556009px;}
.yb4_c00083{bottom:159.881591px;}
.yb3_c00083{bottom:166.219407px;}
.yb2_c00083{bottom:167.709615px;}
.yb1_c00083{bottom:168.630933px;}
.yb0_c00083{bottom:171.046587px;}
.yaf_c00083{bottom:171.781823px;}
.yae_c00083{bottom:172.725974px;}
.yad_c00083{bottom:174.670068px;}
.yac_c00083{bottom:175.220705px;}
.yab_c00083{bottom:177.160284px;}
.yaa_c00083{bottom:180.439178px;}
.ya9_c00083{bottom:181.880001px;}
.ya8_c00083{bottom:184.938753px;}
.ya7_c00083{bottom:185.957021px;}
.ya6_c00083{bottom:188.275733px;}
.ya5_c00083{bottom:191.335775px;}
.ya4_c00083{bottom:192.214953px;}
.ya3_c00083{bottom:193.175760px;}
.ya2_c00083{bottom:195.795593px;}
.ya1_c00083{bottom:197.666273px;}
.ya0_c00083{bottom:199.098780px;}
.y9f_c00083{bottom:201.890150px;}
.y9e_c00083{bottom:206.044524px;}
.y9d_c00083{bottom:207.983828px;}
.y9c_c00083{bottom:209.141277px;}
.y9b_c00083{bottom:213.076134px;}
.y9a_c00083{bottom:214.088808px;}
.y99_c00083{bottom:215.856380px;}
.y98_c00083{bottom:218.185643px;}
.y97_c00083{bottom:221.073873px;}
.y96_c00083{bottom:223.638615px;}
.y95_c00083{bottom:225.381939px;}
.y94_c00083{bottom:227.836890px;}
.y93_c00083{bottom:230.081642px;}
.y92_c00083{bottom:232.912125px;}
.y91_c00083{bottom:236.102945px;}
.y90_c00083{bottom:237.090143px;}
.y8f_c00083{bottom:238.172033px;}
.y8e_c00083{bottom:240.708488px;}
.y8d_c00083{bottom:244.003560px;}
.y8c_c00083{bottom:244.954980px;}
.y8b_c00083{bottom:245.588933px;}
.y8a_c00083{bottom:246.539772px;}
.y89_c00083{bottom:249.252122px;}
.y88_c00083{bottom:250.517996px;}
.y87_c00083{bottom:254.382029px;}
.y86_c00083{bottom:255.269015px;}
.y85_c00083{bottom:257.779626px;}
.y84_c00083{bottom:259.564980px;}
.y83_c00083{bottom:260.153789px;}
.y82_c00083{bottom:263.285583px;}
.y81_c00083{bottom:265.600281px;}
.y80_c00083{bottom:267.799527px;}
.y7f_c00083{bottom:269.026884px;}
.y7e_c00083{bottom:271.315176px;}
.y7d_c00083{bottom:272.367825px;}
.y7c_c00083{bottom:273.334023px;}
.y7b_c00083{bottom:275.244201px;}
.y7a_c00083{bottom:275.922428px;}
.y79_c00083{bottom:278.386137px;}
.y78_c00083{bottom:280.013052px;}
.y77_c00083{bottom:283.037988px;}
.y76_c00083{bottom:286.599002px;}
.y75_c00083{bottom:288.895190px;}
.y74_c00083{bottom:289.692623px;}
.y73_c00083{bottom:291.100669px;}
.y72_c00083{bottom:292.574676px;}
.y71_c00083{bottom:293.526504px;}
.y70_c00083{bottom:294.408696px;}
.y6f_c00083{bottom:296.755785px;}
.y6e_c00083{bottom:300.097644px;}
.y6d_c00083{bottom:301.503719px;}
.y6c_c00083{bottom:304.538444px;}
.y6b_c00083{bottom:305.721734px;}
.y6a_c00083{bottom:306.761649px;}
.y69_c00083{bottom:308.108259px;}
.y68_c00083{bottom:309.325377px;}
.y67_c00083{bottom:312.985052px;}
.y66_c00083{bottom:317.154570px;}
.y65_c00083{bottom:317.931085px;}
.y64_c00083{bottom:319.951871px;}
.y63_c00083{bottom:320.653308px;}
.y62_c00083{bottom:323.544005px;}
.y61_c00083{bottom:325.288407px;}
.y60_c00083{bottom:326.646003px;}
.y5f_c00083{bottom:328.335000px;}
.y5e_c00083{bottom:336.530187px;}
.y5d_c00083{bottom:338.572244px;}
.y5c_c00083{bottom:340.411709px;}
.y5b_c00083{bottom:341.263104px;}
.y5a_c00083{bottom:343.510030px;}
.y59_c00083{bottom:346.163095px;}
.y58_c00083{bottom:349.997457px;}
.y57_c00083{bottom:352.156520px;}
.y56_c00083{bottom:353.204997px;}
.y55_c00083{bottom:354.612449px;}
.y54_c00083{bottom:355.431459px;}
.y53_c00083{bottom:357.674605px;}
.y52_c00083{bottom:360.831210px;}
.y51_c00083{bottom:362.819164px;}
.y50_c00083{bottom:363.708000px;}
.y4f_c00083{bottom:366.544419px;}
.y4e_c00083{bottom:368.357367px;}
.y4d_c00083{bottom:369.634086px;}
.y4c_c00083{bottom:374.234802px;}
.y4b_c00083{bottom:379.008597px;}
.y4a_c00083{bottom:380.102637px;}
.y49_c00083{bottom:381.826953px;}
.y48_c00083{bottom:386.209152px;}
.y47_c00083{bottom:387.451200px;}
.y46_c00083{bottom:391.435104px;}
.y45_c00083{bottom:393.788832px;}
.y44_c00083{bottom:394.476000px;}
.y43_c00083{bottom:418.551204px;}
.y42_c00083{bottom:420.143556px;}
.y41_c00083{bottom:421.909068px;}
.y40_c00083{bottom:426.655668px;}
.y3f_c00083{bottom:428.054340px;}
.y3e_c00083{bottom:429.021588px;}
.y3d_c00083{bottom:430.902876px;}
.y3c_c00083{bottom:431.755500px;}
.y3b_c00083{bottom:441.466953px;}
.y3a_c00083{bottom:443.633413px;}
.y39_c00083{bottom:445.659693px;}
.y38_c00083{bottom:446.430336px;}
.y37_c00083{bottom:447.663202px;}
.y36_c00083{bottom:454.521978px;}
.y35_c00083{bottom:455.350233px;}
.y34_c00083{bottom:457.459839px;}
.y33_c00083{bottom:459.885738px;}
.y32_c00083{bottom:461.147508px;}
.y31_c00083{bottom:462.193798px;}
.y30_c00083{bottom:463.870260px;}
.y2f_c00083{bottom:471.308262px;}
.y2e_c00083{bottom:473.541462px;}
.y2d_c00083{bottom:474.529201px;}
.y2c_c00083{bottom:476.723064px;}
.y2b_c00083{bottom:477.410361px;}
.y2a_c00083{bottom:478.233630px;}
.y29_c00083{bottom:479.801475px;}
.y28_c00083{bottom:485.846670px;}
.y27_c00083{bottom:489.658884px;}
.y26_c00083{bottom:490.556749px;}
.y25_c00083{bottom:492.104393px;}
.y24_c00083{bottom:494.452206px;}
.y23_c00083{bottom:495.653431px;}
.y22_c00083{bottom:498.157789px;}
.y21_c00083{bottom:502.454911px;}
.y20_c00083{bottom:503.544416px;}
.y1f_c00083{bottom:504.069543px;}
.y1e_c00083{bottom:506.340126px;}
.y1d_c00083{bottom:508.247547px;}
.y1c_c00083{bottom:509.067913px;}
.y1b_c00083{bottom:509.550778px;}
.y1a_c00083{bottom:511.743586px;}
.y19_c00083{bottom:512.737462px;}
.y18_c00083{bottom:521.199609px;}
.y17_c00083{bottom:522.231666px;}
.y16_c00083{bottom:523.068685px;}
.y15_c00083{bottom:526.099985px;}
.y14_c00083{bottom:528.943842px;}
.y13_c00083{bottom:536.163627px;}
.y12_c00083{bottom:539.018525px;}
.y11_c00083{bottom:539.753698px;}
.y10_c00083{bottom:541.671933px;}
.yf_c00083{bottom:544.533599px;}
.ye_c00083{bottom:545.534980px;}
.yd_c00083{bottom:546.805743px;}
.yc_c00083{bottom:547.548672px;}
.yb_c00083{bottom:548.186204px;}
.ya_c00083{bottom:549.199500px;}
.y9_c00083{bottom:554.465580px;}
.y8_c00083{bottom:555.991818px;}
.y7_c00083{bottom:558.608649px;}
.y6_c00083{bottom:559.397535px;}
.y5_c00083{bottom:561.013422px;}
.y4_c00083{bottom:562.742142px;}
.y3_c00083{bottom:563.938953px;}
.y2_c00083{bottom:564.850500px;}
.y1_c00083{bottom:574.425000px;}
.h10_c00083{height:57.745669px;}
.ha_c00083{height:57.752887px;}
.h7_c00083{height:57.756063px;}
.h8_c00083{height:57.758806px;}
.h12_c00083{height:58.795590px;}
.h16_c00083{height:59.845511px;}
.he_c00083{height:60.895432px;}
.h6_c00083{height:60.906394px;}
.hc_c00083{height:60.912240px;}
.h11_c00083{height:61.945354px;}
.h4_c00083{height:61.956504px;}
.hb_c00083{height:61.962451px;}
.h3_c00083{height:64.042474px;}
.hf_c00083{height:65.095117px;}
.h2_c00083{height:65.100000px;}
.hd_c00083{height:66.145039px;}
.h17_c00083{height:66.169908px;}
.h14_c00083{height:67.194960px;}
.h9_c00083{height:67.203360px;}
.h13_c00083{height:68.244881px;}
.h15_c00083{height:69.294802px;}
.h18_c00083{height:69.317357px;}
.h5_c00083{height:70.357386px;}
.h1_c00083{height:612.000000px;}
.h0_c00083{height:612.300000px;}
.w0_c00083{width:361.500000px;}
.x0_c00083{left:0.000000px;}
.x72_c00083{left:26.894627px;}
.x75_c00083{left:35.845500px;}
.x62_c00083{left:37.261333px;}
.x44_c00083{left:39.102835px;}
.x37_c00083{left:40.969929px;}
.x2_c00083{left:42.681000px;}
.x41_c00083{left:48.534000px;}
.x15_c00083{left:50.723092px;}
.x28_c00083{left:58.343535px;}
.x2f_c00083{left:59.617737px;}
.x67_c00083{left:62.761785px;}
.x3_c00083{left:64.362797px;}
.x63_c00083{left:67.360413px;}
.x38_c00083{left:71.702616px;}
.x2c_c00083{left:74.609208px;}
.x16_c00083{left:76.157659px;}
.xa_c00083{left:77.588376px;}
.x22_c00083{left:80.082270px;}
.x5d_c00083{left:83.392231px;}
.x48_c00083{left:85.760097px;}
.x42_c00083{left:87.773721px;}
.x39_c00083{left:91.200546px;}
.x4_c00083{left:92.829801px;}
.x2d_c00083{left:94.851984px;}
.x1d_c00083{left:96.197825px;}
.x30_c00083{left:98.772043px;}
.x23_c00083{left:100.134843px;}
.x49_c00083{left:103.046853px;}
.x59_c00083{left:104.568096px;}
.x55_c00083{left:107.511039px;}
.x4d_c00083{left:111.688635px;}
.x68_c00083{left:114.554620px;}
.x24_c00083{left:116.882307px;}
.x31_c00083{left:118.902893px;}
.xb_c00083{left:120.390031px;}
.x1e_c00083{left:122.272923px;}
.x11_c00083{left:125.688688px;}
.x56_c00083{left:127.809517px;}
.x17_c00083{left:132.311050px;}
.x5_c00083{left:133.948641px;}
.x64_c00083{left:137.043690px;}
.x70_c00083{left:138.321257px;}
.xc_c00083{left:141.674725px;}
.x45_c00083{left:142.776738px;}
.x18_c00083{left:144.681326px;}
.x4e_c00083{left:145.982007px;}
.x29_c00083{left:148.781709px;}
.x4a_c00083{left:150.580936px;}
.x52_c00083{left:151.783155px;}
.x35_c00083{left:154.606500px;}
.x50_c00083{left:156.274087px;}
.x6e_c00083{left:158.548330px;}
.x43_c00083{left:159.841081px;}
.x57_c00083{left:161.808018px;}
.x3c_c00083{left:163.948369px;}
.x19_c00083{left:165.693696px;}
.x40_c00083{left:168.127685px;}
.x25_c00083{left:170.312855px;}
.x6_c00083{left:172.383668px;}
.x3a_c00083{left:176.260161px;}
.x1_c00083{left:178.200000px;}
.x5e_c00083{left:180.367659px;}
.x76_c00083{left:188.541152px;}
.x4b_c00083{left:189.747600px;}
.x7_c00083{left:191.147885px;}
.x26_c00083{left:194.372046px;}
.x6b_c00083{left:195.376941px;}
.x53_c00083{left:196.754586px;}
.xd_c00083{left:202.500339px;}
.x2a_c00083{left:203.856342px;}
.x2e_c00083{left:205.038264px;}
.x1f_c00083{left:206.859704px;}
.x71_c00083{left:208.449407px;}
.x3d_c00083{left:209.681091px;}
.x4f_c00083{left:211.279399px;}
.x12_c00083{left:214.731467px;}
.x77_c00083{left:215.894770px;}
.x46_c00083{left:218.667229px;}
.x5a_c00083{left:220.378918px;}
.x20_c00083{left:226.359102px;}
.x51_c00083{left:228.583447px;}
.x69_c00083{left:233.394292px;}
.x58_c00083{left:234.642271px;}
.x5f_c00083{left:236.489481px;}
.x13_c00083{left:239.321883px;}
.xe_c00083{left:243.273026px;}
.x32_c00083{left:246.801366px;}
.x27_c00083{left:248.766411px;}
.x65_c00083{left:249.985293px;}
.x2b_c00083{left:251.761164px;}
.x8_c00083{left:253.391079px;}
.x3e_c00083{left:255.073653px;}
.x60_c00083{left:257.894055px;}
.xf_c00083{left:258.899383px;}
.x73_c00083{left:260.982699px;}
.x6c_c00083{left:262.325731px;}
.x36_c00083{left:264.149475px;}
.x66_c00083{left:266.457594px;}
.x14_c00083{left:269.622042px;}
.x1a_c00083{left:272.693814px;}
.x3f_c00083{left:276.449756px;}
.x4c_c00083{left:277.534764px;}
.x6d_c00083{left:279.861879px;}
.x3b_c00083{left:280.967406px;}
.x33_c00083{left:283.546084px;}
.x1b_c00083{left:286.153921px;}
.x54_c00083{left:288.218956px;}
.x9_c00083{left:289.693740px;}
.x61_c00083{left:292.515399px;}
.x5b_c00083{left:295.810707px;}
.x78_c00083{left:299.687892px;}
.x6f_c00083{left:307.098996px;}
.x21_c00083{left:309.144615px;}
.x6a_c00083{left:311.732887px;}
.x47_c00083{left:313.048983px;}
.x1c_c00083{left:314.067994px;}
.x34_c00083{left:316.686911px;}
.x10_c00083{left:319.581141px;}
.x5c_c00083{left:322.483417px;}
.x74_c00083{left:325.682676px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.fse_c00083{font-size:51.329483pt;}
.fs8_c00083{font-size:51.335900pt;}
.fs5_c00083{font-size:51.338723pt;}
.fs6_c00083{font-size:51.341161pt;}
.fs10_c00083{font-size:52.262747pt;}
.fs14_c00083{font-size:53.196010pt;}
.fsc_c00083{font-size:54.129273pt;}
.fs4_c00083{font-size:54.139017pt;}
.fsa_c00083{font-size:54.144213pt;}
.fsf_c00083{font-size:55.062537pt;}
.fs2_c00083{font-size:55.072448pt;}
.fs9_c00083{font-size:55.077734pt;}
.fs1_c00083{font-size:56.926643pt;}
.fsd_c00083{font-size:57.862327pt;}
.fs0_c00083{font-size:57.866667pt;}
.fsb_c00083{font-size:58.795590pt;}
.fs15_c00083{font-size:58.817696pt;}
.fs12_c00083{font-size:59.728853pt;}
.fs7_c00083{font-size:59.736320pt;}
.fs11_c00083{font-size:60.662116pt;}
.fs13_c00083{font-size:61.595380pt;}
.fs16_c00083{font-size:61.615429pt;}
.fs3_c00083{font-size:62.539899pt;}
.y0_c00083{bottom:0.000000pt;}
.yf1_c00083{bottom:25.968533pt;}
.yf0_c00083{bottom:28.218733pt;}
.yef_c00083{bottom:30.670867pt;}
.yee_c00083{bottom:31.427733pt;}
.yed_c00083{bottom:34.988467pt;}
.yec_c00083{bottom:35.808867pt;}
.yeb_c00083{bottom:37.706667pt;}
.yea_c00083{bottom:40.280436pt;}
.ye9_c00083{bottom:41.013272pt;}
.ye8_c00083{bottom:42.716196pt;}
.ye7_c00083{bottom:43.886000pt;}
.ye6_c00083{bottom:44.657596pt;}
.ye5_c00083{bottom:45.898868pt;}
.ye4_c00083{bottom:46.853248pt;}
.ye3_c00083{bottom:50.485060pt;}
.ye2_c00083{bottom:52.828000pt;}
.ye1_c00083{bottom:54.763616pt;}
.ye0_c00083{bottom:59.021917pt;}
.ydf_c00083{bottom:61.102536pt;}
.yde_c00083{bottom:65.417608pt;}
.ydd_c00083{bottom:67.091861pt;}
.ydc_c00083{bottom:70.377736pt;}
.yd9_c00083{bottom:71.221221pt;}
.yd8_c00083{bottom:72.580173pt;}
.ydb_c00083{bottom:73.791940pt;}
.yda_c00083{bottom:74.429057pt;}
.yd7_c00083{bottom:75.936537pt;}
.yd6_c00083{bottom:77.303873pt;}
.yd5_c00083{bottom:79.242871pt;}
.yd4_c00083{bottom:80.514172pt;}
.yd3_c00083{bottom:84.047513pt;}
.yd2_c00083{bottom:85.469469pt;}
.yd1_c00083{bottom:87.744175pt;}
.yd0_c00083{bottom:88.664152pt;}
.ycf_c00083{bottom:91.446083pt;}
.yce_c00083{bottom:92.209988pt;}
.ycd_c00083{bottom:95.146901pt;}
.ycc_c00083{bottom:96.502145pt;}
.ycb_c00083{bottom:97.721697pt;}
.yca_c00083{bottom:102.222264pt;}
.yc9_c00083{bottom:103.126737pt;}
.yc8_c00083{bottom:106.580989pt;}
.yc7_c00083{bottom:109.270907pt;}
.yc6_c00083{bottom:111.903803pt;}
.yc5_c00083{bottom:113.360504pt;}
.yc4_c00083{bottom:114.766275pt;}
.yc3_c00083{bottom:115.004100pt;}
.yc2_c00083{bottom:116.031005pt;}
.yc1_c00083{bottom:118.559180pt;}
.yc0_c00083{bottom:121.387961pt;}
.ybf_c00083{bottom:123.950761pt;}
.ybe_c00083{bottom:126.300693pt;}
.ybd_c00083{bottom:127.474943pt;}
.ybc_c00083{bottom:133.144971pt;}
.ybb_c00083{bottom:133.789888pt;}
.yba_c00083{bottom:135.525653pt;}
.yb9_c00083{bottom:136.607028pt;}
.yb8_c00083{bottom:138.211173pt;}
.yb7_c00083{bottom:139.227519pt;}
.yb6_c00083{bottom:139.870315pt;}
.yb5_c00083{bottom:140.938675pt;}
.yb4_c00083{bottom:142.116969pt;}
.yb3_c00083{bottom:147.750584pt;}
.yb2_c00083{bottom:149.075213pt;}
.yb1_c00083{bottom:149.894163pt;}
.yb0_c00083{bottom:152.041411pt;}
.yaf_c00083{bottom:152.694953pt;}
.yae_c00083{bottom:153.534199pt;}
.yad_c00083{bottom:155.262283pt;}
.yac_c00083{bottom:155.751737pt;}
.yab_c00083{bottom:157.475808pt;}
.yaa_c00083{bottom:160.390380pt;}
.ya9_c00083{bottom:161.671112pt;}
.ya8_c00083{bottom:164.390003pt;}
.ya7_c00083{bottom:165.295129pt;}
.ya6_c00083{bottom:167.356207pt;}
.ya5_c00083{bottom:170.076244pt;}
.ya4_c00083{bottom:170.857736pt;}
.ya3_c00083{bottom:171.711787pt;}
.ya2_c00083{bottom:174.040527pt;}
.ya1_c00083{bottom:175.703353pt;}
.ya0_c00083{bottom:176.976693pt;}
.y9f_c00083{bottom:179.457911pt;}
.y9e_c00083{bottom:183.150688pt;}
.y9d_c00083{bottom:184.874513pt;}
.y9c_c00083{bottom:185.903357pt;}
.y9b_c00083{bottom:189.401008pt;}
.y9a_c00083{bottom:190.301163pt;}
.y99_c00083{bottom:191.872337pt;}
.y98_c00083{bottom:193.942793pt;}
.y97_c00083{bottom:196.510109pt;}
.y96_c00083{bottom:198.789880pt;}
.y95_c00083{bottom:200.339501pt;}
.y94_c00083{bottom:202.521680pt;}
.y93_c00083{bottom:204.517015pt;}
.y92_c00083{bottom:207.033000pt;}
.y91_c00083{bottom:209.869284pt;}
.y90_c00083{bottom:210.746793pt;}
.y8f_c00083{bottom:211.708473pt;}
.y8e_c00083{bottom:213.963100pt;}
.y8d_c00083{bottom:216.892053pt;}
.y8c_c00083{bottom:217.737760pt;}
.y8b_c00083{bottom:218.301273pt;}
.y8a_c00083{bottom:219.146464pt;}
.y89_c00083{bottom:221.557441pt;}
.y88_c00083{bottom:222.682663pt;}
.y87_c00083{bottom:226.117359pt;}
.y86_c00083{bottom:226.905791pt;}
.y85_c00083{bottom:229.137445pt;}
.y84_c00083{bottom:230.724427pt;}
.y83_c00083{bottom:231.247812pt;}
.y82_c00083{bottom:234.031629pt;}
.y81_c00083{bottom:236.089139pt;}
.y80_c00083{bottom:238.044024pt;}
.y7f_c00083{bottom:239.135008pt;}
.y7e_c00083{bottom:241.169045pt;}
.y7d_c00083{bottom:242.104733pt;}
.y7c_c00083{bottom:242.963576pt;}
.y7b_c00083{bottom:244.661512pt;}
.y7a_c00083{bottom:245.264380pt;}
.y79_c00083{bottom:247.454344pt;}
.y78_c00083{bottom:248.900491pt;}
.y77_c00083{bottom:251.589323pt;}
.y76_c00083{bottom:254.754668pt;}
.y75_c00083{bottom:256.795724pt;}
.y74_c00083{bottom:257.504553pt;}
.y73_c00083{bottom:258.756151pt;}
.y72_c00083{bottom:260.066379pt;}
.y71_c00083{bottom:260.912448pt;}
.y70_c00083{bottom:261.696619pt;}
.y6f_c00083{bottom:263.782920pt;}
.y6e_c00083{bottom:266.753461pt;}
.y6d_c00083{bottom:268.003305pt;}
.y6c_c00083{bottom:270.700839pt;}
.y6b_c00083{bottom:271.752652pt;}
.y6a_c00083{bottom:272.677021pt;}
.y69_c00083{bottom:273.874008pt;}
.y68_c00083{bottom:274.955891pt;}
.y67_c00083{bottom:278.208935pt;}
.y66_c00083{bottom:281.915173pt;}
.y65_c00083{bottom:282.605409pt;}
.y64_c00083{bottom:284.401663pt;}
.y63_c00083{bottom:285.025163pt;}
.y62_c00083{bottom:287.594671pt;}
.y61_c00083{bottom:289.145251pt;}
.y60_c00083{bottom:290.352003pt;}
.y5f_c00083{bottom:291.853333pt;}
.y5e_c00083{bottom:299.137944pt;}
.y5d_c00083{bottom:300.953105pt;}
.y5c_c00083{bottom:302.588185pt;}
.y5b_c00083{bottom:303.344981pt;}
.y5a_c00083{bottom:305.342249pt;}
.y59_c00083{bottom:307.700529pt;}
.y58_c00083{bottom:311.108851pt;}
.y57_c00083{bottom:313.028017pt;}
.y56_c00083{bottom:313.959997pt;}
.y55_c00083{bottom:315.211065pt;}
.y54_c00083{bottom:315.939075pt;}
.y53_c00083{bottom:317.932983pt;}
.y52_c00083{bottom:320.738853pt;}
.y51_c00083{bottom:322.505924pt;}
.y50_c00083{bottom:323.296000pt;}
.y4f_c00083{bottom:325.817261pt;}
.y4e_c00083{bottom:327.428771pt;}
.y4d_c00083{bottom:328.563632pt;}
.y4c_c00083{bottom:332.653157pt;}
.y4b_c00083{bottom:336.896531pt;}
.y4a_c00083{bottom:337.869011pt;}
.y49_c00083{bottom:339.401736pt;}
.y48_c00083{bottom:343.297024pt;}
.y47_c00083{bottom:344.401067pt;}
.y46_c00083{bottom:347.942315pt;}
.y45_c00083{bottom:350.034517pt;}
.y44_c00083{bottom:350.645333pt;}
.y43_c00083{bottom:372.045515pt;}
.y42_c00083{bottom:373.460939pt;}
.y41_c00083{bottom:375.030283pt;}
.y40_c00083{bottom:379.249483pt;}
.y3f_c00083{bottom:380.492747pt;}
.y3e_c00083{bottom:381.352523pt;}
.y3d_c00083{bottom:383.024779pt;}
.y3c_c00083{bottom:383.782667pt;}
.y3b_c00083{bottom:392.415069pt;}
.y3a_c00083{bottom:394.340812pt;}
.y39_c00083{bottom:396.141949pt;}
.y38_c00083{bottom:396.826965pt;}
.y37_c00083{bottom:397.922847pt;}
.y36_c00083{bottom:404.019536pt;}
.y35_c00083{bottom:404.755763pt;}
.y34_c00083{bottom:406.630968pt;}
.y33_c00083{bottom:408.787323pt;}
.y32_c00083{bottom:409.908896pt;}
.y31_c00083{bottom:410.838932pt;}
.y30_c00083{bottom:412.329120pt;}
.y2f_c00083{bottom:418.940677pt;}
.y2e_c00083{bottom:420.925744pt;}
.y2d_c00083{bottom:421.803735pt;}
.y2c_c00083{bottom:423.753835pt;}
.y2b_c00083{bottom:424.364765pt;}
.y2a_c00083{bottom:425.096560pt;}
.y29_c00083{bottom:426.490200pt;}
.y28_c00083{bottom:431.863707pt;}
.y27_c00083{bottom:435.252341pt;}
.y26_c00083{bottom:436.050444pt;}
.y25_c00083{bottom:437.426127pt;}
.y24_c00083{bottom:439.513072pt;}
.y23_c00083{bottom:440.580828pt;}
.y22_c00083{bottom:442.806924pt;}
.y21_c00083{bottom:446.626588pt;}
.y20_c00083{bottom:447.595036pt;}
.y1f_c00083{bottom:448.061816pt;}
.y1e_c00083{bottom:450.080112pt;}
.y1d_c00083{bottom:451.775597pt;}
.y1c_c00083{bottom:452.504812pt;}
.y1b_c00083{bottom:452.934025pt;}
.y1a_c00083{bottom:454.883188pt;}
.y19_c00083{bottom:455.766633pt;}
.y18_c00083{bottom:463.288541pt;}
.y17_c00083{bottom:464.205925pt;}
.y16_c00083{bottom:464.949943pt;}
.y15_c00083{bottom:467.644431pt;}
.y14_c00083{bottom:470.172304pt;}
.y13_c00083{bottom:476.589891pt;}
.y12_c00083{bottom:479.127577pt;}
.y11_c00083{bottom:479.781065pt;}
.y10_c00083{bottom:481.486163pt;}
.yf_c00083{bottom:484.029865pt;}
.ye_c00083{bottom:484.919983pt;}
.yd_c00083{bottom:486.049549pt;}
.yc_c00083{bottom:486.709931pt;}
.yb_c00083{bottom:487.276625pt;}
.ya_c00083{bottom:488.177333pt;}
.y9_c00083{bottom:492.858293pt;}
.y8_c00083{bottom:494.214949pt;}
.y7_c00083{bottom:496.541021pt;}
.y6_c00083{bottom:497.242253pt;}
.y5_c00083{bottom:498.678597pt;}
.y4_c00083{bottom:500.215237pt;}
.y3_c00083{bottom:501.279069pt;}
.y2_c00083{bottom:502.089333pt;}
.y1_c00083{bottom:510.600000pt;}
.h10_c00083{height:51.329483pt;}
.ha_c00083{height:51.335900pt;}
.h7_c00083{height:51.338723pt;}
.h8_c00083{height:51.341161pt;}
.h12_c00083{height:52.262747pt;}
.h16_c00083{height:53.196010pt;}
.he_c00083{height:54.129273pt;}
.h6_c00083{height:54.139017pt;}
.hc_c00083{height:54.144213pt;}
.h11_c00083{height:55.062537pt;}
.h4_c00083{height:55.072448pt;}
.hb_c00083{height:55.077734pt;}
.h3_c00083{height:56.926643pt;}
.hf_c00083{height:57.862327pt;}
.h2_c00083{height:57.866667pt;}
.hd_c00083{height:58.795590pt;}
.h17_c00083{height:58.817696pt;}
.h14_c00083{height:59.728853pt;}
.h9_c00083{height:59.736320pt;}
.h13_c00083{height:60.662116pt;}
.h15_c00083{height:61.595380pt;}
.h18_c00083{height:61.615429pt;}
.h5_c00083{height:62.539899pt;}
.h1_c00083{height:544.000000pt;}
.h0_c00083{height:544.266667pt;}
.w0_c00083{width:321.333333pt;}
.x0_c00083{left:0.000000pt;}
.x72_c00083{left:23.906335pt;}
.x75_c00083{left:31.862667pt;}
.x62_c00083{left:33.121185pt;}
.x44_c00083{left:34.758076pt;}
.x37_c00083{left:36.417715pt;}
.x2_c00083{left:37.938667pt;}
.x41_c00083{left:43.141333pt;}
.x15_c00083{left:45.087193pt;}
.x28_c00083{left:51.860920pt;}
.x2f_c00083{left:52.993544pt;}
.x67_c00083{left:55.788253pt;}
.x3_c00083{left:57.211375pt;}
.x63_c00083{left:59.875923pt;}
.x38_c00083{left:63.735659pt;}
.x2c_c00083{left:66.319296pt;}
.x16_c00083{left:67.695697pt;}
.xa_c00083{left:68.967445pt;}
.x22_c00083{left:71.184240pt;}
.x5d_c00083{left:74.126428pt;}
.x48_c00083{left:76.231197pt;}
.x42_c00083{left:78.021085pt;}
.x39_c00083{left:81.067152pt;}
.x4_c00083{left:82.515379pt;}
.x2d_c00083{left:84.312875pt;}
.x1d_c00083{left:85.509177pt;}
.x30_c00083{left:87.797372pt;}
.x23_c00083{left:89.008749pt;}
.x49_c00083{left:91.597203pt;}
.x59_c00083{left:92.949419pt;}
.x55_c00083{left:95.565368pt;}
.x4d_c00083{left:99.278787pt;}
.x68_c00083{left:101.826329pt;}
.x24_c00083{left:103.895384pt;}
.x31_c00083{left:105.691460pt;}
.xb_c00083{left:107.013361pt;}
.x1e_c00083{left:108.687043pt;}
.x11_c00083{left:111.723279pt;}
.x56_c00083{left:113.608460pt;}
.x17_c00083{left:117.609823pt;}
.x5_c00083{left:119.065459pt;}
.x64_c00083{left:121.816613pt;}
.x70_c00083{left:122.952228pt;}
.xc_c00083{left:125.933089pt;}
.x45_c00083{left:126.912656pt;}
.x18_c00083{left:128.605623pt;}
.x4e_c00083{left:129.761784pt;}
.x29_c00083{left:132.250408pt;}
.x4a_c00083{left:133.849721pt;}
.x52_c00083{left:134.918360pt;}
.x35_c00083{left:137.428000pt;}
.x50_c00083{left:138.910300pt;}
.x6e_c00083{left:140.931849pt;}
.x43_c00083{left:142.080961pt;}
.x57_c00083{left:143.829349pt;}
.x3c_c00083{left:145.731884pt;}
.x19_c00083{left:147.283285pt;}
.x40_c00083{left:149.446831pt;}
.x25_c00083{left:151.389204pt;}
.x6_c00083{left:153.229927pt;}
.x3a_c00083{left:156.675699pt;}
.x1_c00083{left:158.400000pt;}
.x5e_c00083{left:160.326808pt;}
.x76_c00083{left:167.592135pt;}
.x4b_c00083{left:168.664533pt;}
.x7_c00083{left:169.909231pt;}
.x26_c00083{left:172.775152pt;}
.x6b_c00083{left:173.668392pt;}
.x53_c00083{left:174.892965pt;}
.xd_c00083{left:180.000301pt;}
.x2a_c00083{left:181.205637pt;}
.x2e_c00083{left:182.256235pt;}
.x1f_c00083{left:183.875292pt;}
.x71_c00083{left:185.288361pt;}
.x3d_c00083{left:186.383192pt;}
.x4f_c00083{left:187.803911pt;}
.x12_c00083{left:190.872415pt;}
.x77_c00083{left:191.906463pt;}
.x46_c00083{left:194.370871pt;}
.x5a_c00083{left:195.892372pt;}
.x20_c00083{left:201.208091pt;}
.x51_c00083{left:203.185287pt;}
.x69_c00083{left:207.461593pt;}
.x58_c00083{left:208.570908pt;}
.x5f_c00083{left:210.212872pt;}
.x13_c00083{left:212.730563pt;}
.xe_c00083{left:216.242689pt;}
.x32_c00083{left:219.378992pt;}
.x27_c00083{left:221.125699pt;}
.x65_c00083{left:222.209149pt;}
.x2b_c00083{left:223.787701pt;}
.x8_c00083{left:225.236515pt;}
.x3e_c00083{left:226.732136pt;}
.x60_c00083{left:229.239160pt;}
.xf_c00083{left:230.132785pt;}
.x73_c00083{left:231.984621pt;}
.x6c_c00083{left:233.178428pt;}
.x36_c00083{left:234.799533pt;}
.x66_c00083{left:236.851195pt;}
.x14_c00083{left:239.664037pt;}
.x1a_c00083{left:242.394501pt;}
.x3f_c00083{left:245.733116pt;}
.x4c_c00083{left:246.697568pt;}
.x6d_c00083{left:248.766115pt;}
.x3b_c00083{left:249.748805pt;}
.x33_c00083{left:252.040964pt;}
.x1b_c00083{left:254.359041pt;}
.x54_c00083{left:256.194628pt;}
.x9_c00083{left:257.505547pt;}
.x61_c00083{left:260.013688pt;}
.x5b_c00083{left:262.942851pt;}
.x78_c00083{left:266.389237pt;}
.x6f_c00083{left:272.976885pt;}
.x21_c00083{left:274.795213pt;}
.x6a_c00083{left:277.095900pt;}
.x47_c00083{left:278.265763pt;}
.x1c_c00083{left:279.171551pt;}
.x34_c00083{left:281.499476pt;}
.x10_c00083{left:284.072125pt;}
.x5c_c00083{left:286.651927pt;}
.x74_c00083{left:289.495712pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00084 {
    display:none;
  }
  .loading-indicator_c00084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00084" -> "#page-container .classname_c00084")
 */
.pf_c00084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00084 {overflow:visible;}
  }
}
.c_c00084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00084:after { /* webkit #35443 */
  content: '';
}
.t_c00084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00084 { /* info for Javascript */
  display:none;
}
.l_c00084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00084:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00084 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00084.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00084{transform:matrix(0.096117,-0.001250,0.003250,0.249979,0,0);-ms-transform:matrix(0.096117,-0.001250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.096117,-0.001250,0.003250,0.249979,0,0);}
.m58_c00084{transform:matrix(0.140438,-0.001826,0.003250,0.249979,0,0);-ms-transform:matrix(0.140438,-0.001826,0.003250,0.249979,0,0);-webkit-transform:matrix(0.140438,-0.001826,0.003250,0.249979,0,0);}
.m24_c00084{transform:matrix(0.142843,-0.001857,0.003250,0.249979,0,0);-ms-transform:matrix(0.142843,-0.001857,0.003250,0.249979,0,0);-webkit-transform:matrix(0.142843,-0.001857,0.003250,0.249979,0,0);}
.m5b_c00084{transform:matrix(0.144273,-0.001876,0.003250,0.249979,0,0);-ms-transform:matrix(0.144273,-0.001876,0.003250,0.249979,0,0);-webkit-transform:matrix(0.144273,-0.001876,0.003250,0.249979,0,0);}
.m49_c00084{transform:matrix(0.149847,-0.001948,0.003250,0.249979,0,0);-ms-transform:matrix(0.149847,-0.001948,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149847,-0.001948,0.003250,0.249979,0,0);}
.m5e_c00084{transform:matrix(0.152177,-0.001978,0.003250,0.249979,0,0);-ms-transform:matrix(0.152177,-0.001978,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152177,-0.001978,0.003250,0.249979,0,0);}
.m90_c00084{transform:matrix(0.153772,-0.001999,0.003250,0.249979,0,0);-ms-transform:matrix(0.153772,-0.001999,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153772,-0.001999,0.003250,0.249979,0,0);}
.m38_c00084{transform:matrix(0.154137,-0.002004,0.003250,0.249979,0,0);-ms-transform:matrix(0.154137,-0.002004,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154137,-0.002004,0.003250,0.249979,0,0);}
.m13_c00084{transform:matrix(0.154292,-0.002006,0.003250,0.249979,0,0);-ms-transform:matrix(0.154292,-0.002006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154292,-0.002006,0.003250,0.249979,0,0);}
.m47_c00084{transform:matrix(0.154402,-0.002007,0.003250,0.249979,0,0);-ms-transform:matrix(0.154402,-0.002007,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154402,-0.002007,0.003250,0.249979,0,0);}
.mb8_c00084{transform:matrix(0.155207,-0.002018,0.003250,0.249979,0,0);-ms-transform:matrix(0.155207,-0.002018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155207,-0.002018,0.003250,0.249979,0,0);}
.mfe_c00084{transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);}
.mc5_c00084{transform:matrix(0.156032,-0.002028,0.003250,0.249979,0,0);-ms-transform:matrix(0.156032,-0.002028,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156032,-0.002028,0.003250,0.249979,0,0);}
.m22_c00084{transform:matrix(0.156682,-0.002037,0.003250,0.249979,0,0);-ms-transform:matrix(0.156682,-0.002037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156682,-0.002037,0.003250,0.249979,0,0);}
.m1e_c00084{transform:matrix(0.156697,-0.002037,0.003250,0.249979,0,0);-ms-transform:matrix(0.156697,-0.002037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156697,-0.002037,0.003250,0.249979,0,0);}
.md4_c00084{transform:matrix(0.156867,-0.002039,0.003250,0.249979,0,0);-ms-transform:matrix(0.156867,-0.002039,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156867,-0.002039,0.003250,0.249979,0,0);}
.md1_c00084{transform:matrix(0.157212,-0.002044,0.003250,0.249979,0,0);-ms-transform:matrix(0.157212,-0.002044,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157212,-0.002044,0.003250,0.249979,0,0);}
.m21_c00084{transform:matrix(0.158182,-0.002056,0.003250,0.249979,0,0);-ms-transform:matrix(0.158182,-0.002056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158182,-0.002056,0.003250,0.249979,0,0);}
.m93_c00084{transform:matrix(0.158647,-0.002062,0.003250,0.249979,0,0);-ms-transform:matrix(0.158647,-0.002062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158647,-0.002062,0.003250,0.249979,0,0);}
.mb5_c00084{transform:matrix(0.159682,-0.002076,0.003250,0.249979,0,0);-ms-transform:matrix(0.159682,-0.002076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159682,-0.002076,0.003250,0.249979,0,0);}
.mac_c00084{transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);-ms-transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);}
.mbe_c00084{transform:matrix(0.160891,-0.002092,0.003250,0.249979,0,0);-ms-transform:matrix(0.160891,-0.002092,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160891,-0.002092,0.003250,0.249979,0,0);}
.mc0_c00084{transform:matrix(0.161111,-0.002094,0.003250,0.249979,0,0);-ms-transform:matrix(0.161111,-0.002094,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161111,-0.002094,0.003250,0.249979,0,0);}
.m18_c00084{transform:matrix(0.161326,-0.002097,0.003250,0.249979,0,0);-ms-transform:matrix(0.161326,-0.002097,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161326,-0.002097,0.003250,0.249979,0,0);}
.md5_c00084{transform:matrix(0.161546,-0.002100,0.003250,0.249979,0,0);-ms-transform:matrix(0.161546,-0.002100,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161546,-0.002100,0.003250,0.249979,0,0);}
.m19_c00084{transform:matrix(0.161606,-0.002101,0.003250,0.249979,0,0);-ms-transform:matrix(0.161606,-0.002101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161606,-0.002101,0.003250,0.249979,0,0);}
.m4f_c00084{transform:matrix(0.161841,-0.002104,0.003250,0.249979,0,0);-ms-transform:matrix(0.161841,-0.002104,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161841,-0.002104,0.003250,0.249979,0,0);}
.m3_c00084{transform:matrix(0.163166,-0.002121,0.003250,0.249979,0,0);-ms-transform:matrix(0.163166,-0.002121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163166,-0.002121,0.003250,0.249979,0,0);}
.mc2_c00084{transform:matrix(0.163211,-0.002122,0.003250,0.249979,0,0);-ms-transform:matrix(0.163211,-0.002122,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163211,-0.002122,0.003250,0.249979,0,0);}
.mc4_c00084{transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);-ms-transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);}
.mc_c00084{transform:matrix(0.163456,-0.002125,0.003250,0.249979,0,0);-ms-transform:matrix(0.163456,-0.002125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163456,-0.002125,0.003250,0.249979,0,0);}
.ma3_c00084{transform:matrix(0.164231,-0.002135,0.003250,0.249979,0,0);-ms-transform:matrix(0.164231,-0.002135,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164231,-0.002135,0.003250,0.249979,0,0);}
.m12_c00084{transform:matrix(0.165031,-0.002145,0.003250,0.249979,0,0);-ms-transform:matrix(0.165031,-0.002145,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165031,-0.002145,0.003250,0.249979,0,0);}
.m17_c00084{transform:matrix(0.167191,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167191,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167191,-0.002173,0.003250,0.249979,0,0);}
.m5a_c00084{transform:matrix(0.168306,-0.002188,0.003250,0.249979,0,0);-ms-transform:matrix(0.168306,-0.002188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168306,-0.002188,0.003250,0.249979,0,0);}
.m31_c00084{transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);-ms-transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);}
.m88_c00084{transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);-ms-transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);}
.mc8_c00084{transform:matrix(0.168996,-0.002197,0.003250,0.249979,0,0);-ms-transform:matrix(0.168996,-0.002197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168996,-0.002197,0.003250,0.249979,0,0);}
.m62_c00084{transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);-ms-transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);}
.m4e_c00084{transform:matrix(0.169156,-0.002199,0.003250,0.249979,0,0);-ms-transform:matrix(0.169156,-0.002199,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169156,-0.002199,0.003250,0.249979,0,0);}
.ma9_c00084{transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);-ms-transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);}
.m68_c00084{transform:matrix(0.169561,-0.002204,0.003250,0.249979,0,0);-ms-transform:matrix(0.169561,-0.002204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169561,-0.002204,0.003250,0.249979,0,0);}
.mfa_c00084{transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);}
.m9e_c00084{transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);}
.mea_c00084{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.mb6_c00084{transform:matrix(0.170736,-0.002220,0.003250,0.249979,0,0);-ms-transform:matrix(0.170736,-0.002220,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170736,-0.002220,0.003250,0.249979,0,0);}
.mb1_c00084{transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);-ms-transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);}
.mce_c00084{transform:matrix(0.171955,-0.002235,0.003250,0.249979,0,0);-ms-transform:matrix(0.171955,-0.002235,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171955,-0.002235,0.003250,0.249979,0,0);}
.md6_c00084{transform:matrix(0.173000,-0.002249,0.003250,0.249979,0,0);-ms-transform:matrix(0.173000,-0.002249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173000,-0.002249,0.003250,0.249979,0,0);}
.m3e_c00084{transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);-ms-transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);}
.md8_c00084{transform:matrix(0.173870,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173870,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173870,-0.002260,0.003250,0.249979,0,0);}
.mb2_c00084{transform:matrix(0.174775,-0.002272,0.003250,0.249979,0,0);-ms-transform:matrix(0.174775,-0.002272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174775,-0.002272,0.003250,0.249979,0,0);}
.m50_c00084{transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);}
.m4d_c00084{transform:matrix(0.175545,-0.002282,0.003250,0.249979,0,0);-ms-transform:matrix(0.175545,-0.002282,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175545,-0.002282,0.003250,0.249979,0,0);}
.m94_c00084{transform:matrix(0.176265,-0.002291,0.003250,0.249979,0,0);-ms-transform:matrix(0.176265,-0.002291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176265,-0.002291,0.003250,0.249979,0,0);}
.m1c_c00084{transform:matrix(0.176370,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176370,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176370,-0.002293,0.003250,0.249979,0,0);}
.m8e_c00084{transform:matrix(0.176380,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176380,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176380,-0.002293,0.003250,0.249979,0,0);}
.m15_c00084{transform:matrix(0.177620,-0.002309,0.003250,0.249979,0,0);-ms-transform:matrix(0.177620,-0.002309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177620,-0.002309,0.003250,0.249979,0,0);}
.m3f_c00084{transform:matrix(0.177745,-0.002311,0.003250,0.249979,0,0);-ms-transform:matrix(0.177745,-0.002311,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177745,-0.002311,0.003250,0.249979,0,0);}
.m26_c00084{transform:matrix(0.177830,-0.002312,0.003250,0.249979,0,0);-ms-transform:matrix(0.177830,-0.002312,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177830,-0.002312,0.003250,0.249979,0,0);}
.m4a_c00084{transform:matrix(0.177995,-0.002314,0.003250,0.249979,0,0);-ms-transform:matrix(0.177995,-0.002314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177995,-0.002314,0.003250,0.249979,0,0);}
.m84_c00084{transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);-ms-transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);}
.m8f_c00084{transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);-ms-transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);}
.m7b_c00084{transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);}
.m53_c00084{transform:matrix(0.179140,-0.002329,0.003250,0.249979,0,0);-ms-transform:matrix(0.179140,-0.002329,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179140,-0.002329,0.003250,0.249979,0,0);}
.m66_c00084{transform:matrix(0.179300,-0.002331,0.003250,0.249979,0,0);-ms-transform:matrix(0.179300,-0.002331,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179300,-0.002331,0.003250,0.249979,0,0);}
.m35_c00084{transform:matrix(0.179340,-0.002331,0.003250,0.249979,0,0);-ms-transform:matrix(0.179340,-0.002331,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179340,-0.002331,0.003250,0.249979,0,0);}
.m8d_c00084{transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);-ms-transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);}
.me9_c00084{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.mf5_c00084{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.180550,-0.002347,0.003250,0.249979,0,0);-ms-transform:matrix(0.180550,-0.002347,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180550,-0.002347,0.003250,0.249979,0,0);}
.m59_c00084{transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);-ms-transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);}
.mfc_c00084{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.182120,-0.002368,0.003250,0.249979,0,0);-ms-transform:matrix(0.182120,-0.002368,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182120,-0.002368,0.003250,0.249979,0,0);}
.mf6_c00084{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.maf_c00084{transform:matrix(0.182500,-0.002372,0.003250,0.249979,0,0);-ms-transform:matrix(0.182500,-0.002372,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182500,-0.002372,0.003250,0.249979,0,0);}
.m4_c00084{transform:matrix(0.182655,-0.002375,0.003250,0.249979,0,0);-ms-transform:matrix(0.182655,-0.002375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182655,-0.002375,0.003250,0.249979,0,0);}
.m9c_c00084{transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);-ms-transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);}
.mba_c00084{transform:matrix(0.183245,-0.002382,0.003250,0.249979,0,0);-ms-transform:matrix(0.183245,-0.002382,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183245,-0.002382,0.003250,0.249979,0,0);}
.m51_c00084{transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);}
.m1d_c00084{transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);-ms-transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);}
.mcd_c00084{transform:matrix(0.184404,-0.002397,0.003250,0.249979,0,0);-ms-transform:matrix(0.184404,-0.002397,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184404,-0.002397,0.003250,0.249979,0,0);}
.me5_c00084{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m34_c00084{transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);-ms-transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);}
.m2f_c00084{transform:matrix(0.185419,-0.002410,0.003250,0.249979,0,0);-ms-transform:matrix(0.185419,-0.002410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185419,-0.002410,0.003250,0.249979,0,0);}
.mde_c00084{transform:matrix(0.186004,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.186004,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186004,-0.002418,0.003250,0.249979,0,0);}
.m23_c00084{transform:matrix(0.186049,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186049,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186049,-0.002419,0.003250,0.249979,0,0);}
.md9_c00084{transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);}
.m20_c00084{transform:matrix(0.186549,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186549,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186549,-0.002425,0.003250,0.249979,0,0);}
.m48_c00084{transform:matrix(0.186709,-0.002427,0.003250,0.249979,0,0);-ms-transform:matrix(0.186709,-0.002427,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186709,-0.002427,0.003250,0.249979,0,0);}
.mf_c00084{transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);}
.mad_c00084{transform:matrix(0.187634,-0.002439,0.003250,0.249979,0,0);-ms-transform:matrix(0.187634,-0.002439,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187634,-0.002439,0.003250,0.249979,0,0);}
.me7_c00084{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m42_c00084{transform:matrix(0.187854,-0.002442,0.003250,0.249979,0,0);-ms-transform:matrix(0.187854,-0.002442,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187854,-0.002442,0.003250,0.249979,0,0);}
.mdf_c00084{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.mf0_c00084{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.mca_c00084{transform:matrix(0.188504,-0.002451,0.003250,0.249979,0,0);-ms-transform:matrix(0.188504,-0.002451,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188504,-0.002451,0.003250,0.249979,0,0);}
.m5f_c00084{transform:matrix(0.188699,-0.002453,0.003250,0.249979,0,0);-ms-transform:matrix(0.188699,-0.002453,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188699,-0.002453,0.003250,0.249979,0,0);}
.m27_c00084{transform:matrix(0.188774,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188774,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188774,-0.002454,0.003250,0.249979,0,0);}
.m60_c00084{transform:matrix(0.189084,-0.002458,0.003250,0.249979,0,0);-ms-transform:matrix(0.189084,-0.002458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189084,-0.002458,0.003250,0.249979,0,0);}
.me1_c00084{transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);}
.mab_c00084{transform:matrix(0.189174,-0.002459,0.003250,0.249979,0,0);-ms-transform:matrix(0.189174,-0.002459,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189174,-0.002459,0.003250,0.249979,0,0);}
.m25_c00084{transform:matrix(0.189324,-0.002461,0.003250,0.249979,0,0);-ms-transform:matrix(0.189324,-0.002461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189324,-0.002461,0.003250,0.249979,0,0);}
.m36_c00084{transform:matrix(0.189444,-0.002463,0.003250,0.249979,0,0);-ms-transform:matrix(0.189444,-0.002463,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189444,-0.002463,0.003250,0.249979,0,0);}
.m3c_c00084{transform:matrix(0.190184,-0.002472,0.003250,0.249979,0,0);-ms-transform:matrix(0.190184,-0.002472,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190184,-0.002472,0.003250,0.249979,0,0);}
.m5c_c00084{transform:matrix(0.190424,-0.002476,0.003250,0.249979,0,0);-ms-transform:matrix(0.190424,-0.002476,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190424,-0.002476,0.003250,0.249979,0,0);}
.ma6_c00084{transform:matrix(0.190559,-0.002477,0.003250,0.249979,0,0);-ms-transform:matrix(0.190559,-0.002477,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190559,-0.002477,0.003250,0.249979,0,0);}
.m1f_c00084{transform:matrix(0.190619,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190619,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190619,-0.002478,0.003250,0.249979,0,0);}
.m30_c00084{transform:matrix(0.190859,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190859,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190859,-0.002481,0.003250,0.249979,0,0);}
.mc6_c00084{transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);}
.mee_c00084{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.mc9_c00084{transform:matrix(0.193204,-0.002512,0.003250,0.249979,0,0);-ms-transform:matrix(0.193204,-0.002512,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193204,-0.002512,0.003250,0.249979,0,0);}
.m4c_c00084{transform:matrix(0.193384,-0.002514,0.003250,0.249979,0,0);-ms-transform:matrix(0.193384,-0.002514,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193384,-0.002514,0.003250,0.249979,0,0);}
.maa_c00084{transform:matrix(0.193404,-0.002514,0.003250,0.249979,0,0);-ms-transform:matrix(0.193404,-0.002514,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193404,-0.002514,0.003250,0.249979,0,0);}
.m11_c00084{transform:matrix(0.193709,-0.002518,0.003250,0.249979,0,0);-ms-transform:matrix(0.193709,-0.002518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193709,-0.002518,0.003250,0.249979,0,0);}
.m7d_c00084{transform:matrix(0.193929,-0.002521,0.003250,0.249979,0,0);-ms-transform:matrix(0.193929,-0.002521,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193929,-0.002521,0.003250,0.249979,0,0);}
.m40_c00084{transform:matrix(0.194254,-0.002525,0.003250,0.249979,0,0);-ms-transform:matrix(0.194254,-0.002525,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194254,-0.002525,0.003250,0.249979,0,0);}
.mf9_c00084{transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);}
.m79_c00084{transform:matrix(0.194804,-0.002532,0.003250,0.249979,0,0);-ms-transform:matrix(0.194804,-0.002532,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194804,-0.002532,0.003250,0.249979,0,0);}
.m64_c00084{transform:matrix(0.194889,-0.002534,0.003250,0.249979,0,0);-ms-transform:matrix(0.194889,-0.002534,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194889,-0.002534,0.003250,0.249979,0,0);}
.mcc_c00084{transform:matrix(0.194959,-0.002534,0.003250,0.249979,0,0);-ms-transform:matrix(0.194959,-0.002534,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194959,-0.002534,0.003250,0.249979,0,0);}
.mdd_c00084{transform:matrix(0.195388,-0.002540,0.003250,0.249979,0,0);-ms-transform:matrix(0.195388,-0.002540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195388,-0.002540,0.003250,0.249979,0,0);}
.m95_c00084{transform:matrix(0.195398,-0.002540,0.003250,0.249979,0,0);-ms-transform:matrix(0.195398,-0.002540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195398,-0.002540,0.003250,0.249979,0,0);}
.m82_c00084{transform:matrix(0.195508,-0.002542,0.003250,0.249979,0,0);-ms-transform:matrix(0.195508,-0.002542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195508,-0.002542,0.003250,0.249979,0,0);}
.m73_c00084{transform:matrix(0.195798,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195798,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195798,-0.002545,0.003250,0.249979,0,0);}
.mdc_c00084{transform:matrix(0.195933,-0.002547,0.003250,0.249979,0,0);-ms-transform:matrix(0.195933,-0.002547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195933,-0.002547,0.003250,0.249979,0,0);}
.m28_c00084{transform:matrix(0.196208,-0.002551,0.003250,0.249979,0,0);-ms-transform:matrix(0.196208,-0.002551,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196208,-0.002551,0.003250,0.249979,0,0);}
.mbd_c00084{transform:matrix(0.196543,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196543,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196543,-0.002555,0.003250,0.249979,0,0);}
.m10_c00084{transform:matrix(0.196908,-0.002560,0.003250,0.249979,0,0);-ms-transform:matrix(0.196908,-0.002560,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196908,-0.002560,0.003250,0.249979,0,0);}
.mfb_c00084{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00084{transform:matrix(0.196983,-0.002561,0.003250,0.249979,0,0);-ms-transform:matrix(0.196983,-0.002561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196983,-0.002561,0.003250,0.249979,0,0);}
.m2e_c00084{transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);-ms-transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);}
.m98_c00084{transform:matrix(0.197418,-0.002566,0.003250,0.249979,0,0);-ms-transform:matrix(0.197418,-0.002566,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197418,-0.002566,0.003250,0.249979,0,0);}
.m91_c00084{transform:matrix(0.197463,-0.002567,0.003250,0.249979,0,0);-ms-transform:matrix(0.197463,-0.002567,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197463,-0.002567,0.003250,0.249979,0,0);}
.me8_c00084{transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);}
.m2d_c00084{transform:matrix(0.198088,-0.002575,0.003250,0.249979,0,0);-ms-transform:matrix(0.198088,-0.002575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198088,-0.002575,0.003250,0.249979,0,0);}
.m7e_c00084{transform:matrix(0.198393,-0.002579,0.003250,0.249979,0,0);-ms-transform:matrix(0.198393,-0.002579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198393,-0.002579,0.003250,0.249979,0,0);}
.m61_c00084{transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);-ms-transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);}
.m2a_c00084{transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);}
.me4_c00084{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.md7_c00084{transform:matrix(0.199608,-0.002595,0.003250,0.249979,0,0);-ms-transform:matrix(0.199608,-0.002595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199608,-0.002595,0.003250,0.249979,0,0);}
.m8a_c00084{transform:matrix(0.199773,-0.002597,0.003250,0.249979,0,0);-ms-transform:matrix(0.199773,-0.002597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199773,-0.002597,0.003250,0.249979,0,0);}
.m67_c00084{transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);}
.m92_c00084{transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);}
.mf7_c00084{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00084{transform:matrix(0.200718,-0.002609,0.003250,0.249979,0,0);-ms-transform:matrix(0.200718,-0.002609,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200718,-0.002609,0.003250,0.249979,0,0);}
.m32_c00084{transform:matrix(0.201098,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201098,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201098,-0.002614,0.003250,0.249979,0,0);}
.m7f_c00084{transform:matrix(0.201318,-0.002617,0.003250,0.249979,0,0);-ms-transform:matrix(0.201318,-0.002617,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201318,-0.002617,0.003250,0.249979,0,0);}
.m99_c00084{transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);-ms-transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);}
.m3d_c00084{transform:matrix(0.202008,-0.002626,0.003250,0.249979,0,0);-ms-transform:matrix(0.202008,-0.002626,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202008,-0.002626,0.003250,0.249979,0,0);}
.m97_c00084{transform:matrix(0.202013,-0.002626,0.003250,0.249979,0,0);-ms-transform:matrix(0.202013,-0.002626,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202013,-0.002626,0.003250,0.249979,0,0);}
.m5d_c00084{transform:matrix(0.202168,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202168,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202168,-0.002628,0.003250,0.249979,0,0);}
.ma1_c00084{transform:matrix(0.202183,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202183,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202183,-0.002628,0.003250,0.249979,0,0);}
.m37_c00084{transform:matrix(0.202508,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202508,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202508,-0.002633,0.003250,0.249979,0,0);}
.m3b_c00084{transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);-ms-transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);}
.m4b_c00084{transform:matrix(0.203003,-0.002639,0.003250,0.249979,0,0);-ms-transform:matrix(0.203003,-0.002639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203003,-0.002639,0.003250,0.249979,0,0);}
.m41_c00084{transform:matrix(0.203238,-0.002642,0.003250,0.249979,0,0);-ms-transform:matrix(0.203238,-0.002642,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203238,-0.002642,0.003250,0.249979,0,0);}
.m9f_c00084{transform:matrix(0.203303,-0.002643,0.003250,0.249979,0,0);-ms-transform:matrix(0.203303,-0.002643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203303,-0.002643,0.003250,0.249979,0,0);}
.ma5_c00084{transform:matrix(0.203483,-0.002645,0.003250,0.249979,0,0);-ms-transform:matrix(0.203483,-0.002645,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203483,-0.002645,0.003250,0.249979,0,0);}
.m14_c00084{transform:matrix(0.203488,-0.002645,0.003250,0.249979,0,0);-ms-transform:matrix(0.203488,-0.002645,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203488,-0.002645,0.003250,0.249979,0,0);}
.m72_c00084{transform:matrix(0.204068,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204068,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204068,-0.002653,0.003250,0.249979,0,0);}
.m83_c00084{transform:matrix(0.204313,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204313,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204313,-0.002656,0.003250,0.249979,0,0);}
.me3_c00084{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.mc1_c00084{transform:matrix(0.204668,-0.002661,0.003250,0.249979,0,0);-ms-transform:matrix(0.204668,-0.002661,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204668,-0.002661,0.003250,0.249979,0,0);}
.meb_c00084{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.mda_c00084{transform:matrix(0.205088,-0.002666,0.003250,0.249979,0,0);-ms-transform:matrix(0.205088,-0.002666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205088,-0.002666,0.003250,0.249979,0,0);}
.m89_c00084{transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);}
.mb4_c00084{transform:matrix(0.206023,-0.002678,0.003250,0.249979,0,0);-ms-transform:matrix(0.206023,-0.002678,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206023,-0.002678,0.003250,0.249979,0,0);}
.mf3_c00084{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.mef_c00084{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mbb_c00084{transform:matrix(0.206663,-0.002687,0.003250,0.249979,0,0);-ms-transform:matrix(0.206663,-0.002687,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206663,-0.002687,0.003250,0.249979,0,0);}
.me0_c00084{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m52_c00084{transform:matrix(0.208192,-0.002707,0.003250,0.249979,0,0);-ms-transform:matrix(0.208192,-0.002707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208192,-0.002707,0.003250,0.249979,0,0);}
.md3_c00084{transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);-ms-transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);}
.m8c_c00084{transform:matrix(0.208402,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208402,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208402,-0.002709,0.003250,0.249979,0,0);}
.ma_c00084{transform:matrix(0.208442,-0.002710,0.003250,0.249979,0,0);-ms-transform:matrix(0.208442,-0.002710,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208442,-0.002710,0.003250,0.249979,0,0);}
.m44_c00084{transform:matrix(0.208462,-0.002710,0.003250,0.249979,0,0);-ms-transform:matrix(0.208462,-0.002710,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208462,-0.002710,0.003250,0.249979,0,0);}
.m7_c00084{transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-ms-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);}
.m5_c00084{transform:matrix(0.208607,-0.002712,0.003250,0.249979,0,0);-ms-transform:matrix(0.208607,-0.002712,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208607,-0.002712,0.003250,0.249979,0,0);}
.m80_c00084{transform:matrix(0.208687,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208687,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208687,-0.002713,0.003250,0.249979,0,0);}
.mae_c00084{transform:matrix(0.208777,-0.002714,0.003250,0.249979,0,0);-ms-transform:matrix(0.208777,-0.002714,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208777,-0.002714,0.003250,0.249979,0,0);}
.mb7_c00084{transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);-ms-transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);}
.mf4_c00084{transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00084{transform:matrix(0.209462,-0.002723,0.003250,0.249979,0,0);-ms-transform:matrix(0.209462,-0.002723,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209462,-0.002723,0.003250,0.249979,0,0);}
.me2_c00084{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m6f_c00084{transform:matrix(0.210292,-0.002734,0.003250,0.249979,0,0);-ms-transform:matrix(0.210292,-0.002734,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210292,-0.002734,0.003250,0.249979,0,0);}
.m54_c00084{transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);}
.m16_c00084{transform:matrix(0.210772,-0.002740,0.003250,0.249979,0,0);-ms-transform:matrix(0.210772,-0.002740,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210772,-0.002740,0.003250,0.249979,0,0);}
.m87_c00084{transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);}
.mdb_c00084{transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);}
.m1a_c00084{transform:matrix(0.211482,-0.002749,0.003250,0.249979,0,0);-ms-transform:matrix(0.211482,-0.002749,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211482,-0.002749,0.003250,0.249979,0,0);}
.m43_c00084{transform:matrix(0.212392,-0.002761,0.003250,0.249979,0,0);-ms-transform:matrix(0.212392,-0.002761,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212392,-0.002761,0.003250,0.249979,0,0);}
.m86_c00084{transform:matrix(0.212622,-0.002764,0.003250,0.249979,0,0);-ms-transform:matrix(0.212622,-0.002764,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212622,-0.002764,0.003250,0.249979,0,0);}
.m65_c00084{transform:matrix(0.212707,-0.002765,0.003250,0.249979,0,0);-ms-transform:matrix(0.212707,-0.002765,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212707,-0.002765,0.003250,0.249979,0,0);}
.m39_c00084{transform:matrix(0.213692,-0.002778,0.003250,0.249979,0,0);-ms-transform:matrix(0.213692,-0.002778,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213692,-0.002778,0.003250,0.249979,0,0);}
.m1b_c00084{transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);-ms-transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);}
.ma7_c00084{transform:matrix(0.213877,-0.002780,0.003250,0.249979,0,0);-ms-transform:matrix(0.213877,-0.002780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213877,-0.002780,0.003250,0.249979,0,0);}
.mcf_c00084{transform:matrix(0.214087,-0.002783,0.003250,0.249979,0,0);-ms-transform:matrix(0.214087,-0.002783,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214087,-0.002783,0.003250,0.249979,0,0);}
.m45_c00084{transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);-ms-transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);}
.m9_c00084{transform:matrix(0.214452,-0.002788,0.003250,0.249979,0,0);-ms-transform:matrix(0.214452,-0.002788,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214452,-0.002788,0.003250,0.249979,0,0);}
.m9b_c00084{transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);}
.mc3_c00084{transform:matrix(0.215492,-0.002801,0.003250,0.249979,0,0);-ms-transform:matrix(0.215492,-0.002801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215492,-0.002801,0.003250,0.249979,0,0);}
.m78_c00084{transform:matrix(0.216042,-0.002809,0.003250,0.249979,0,0);-ms-transform:matrix(0.216042,-0.002809,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216042,-0.002809,0.003250,0.249979,0,0);}
.mcb_c00084{transform:matrix(0.216407,-0.002813,0.003250,0.249979,0,0);-ms-transform:matrix(0.216407,-0.002813,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216407,-0.002813,0.003250,0.249979,0,0);}
.mf8_c00084{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.ma8_c00084{transform:matrix(0.216827,-0.002819,0.003250,0.249979,0,0);-ms-transform:matrix(0.216827,-0.002819,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216827,-0.002819,0.003250,0.249979,0,0);}
.m2_c00084{transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);-ms-transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);}
.md0_c00084{transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);-ms-transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);}
.m3a_c00084{transform:matrix(0.218552,-0.002841,0.003250,0.249979,0,0);-ms-transform:matrix(0.218552,-0.002841,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218552,-0.002841,0.003250,0.249979,0,0);}
.m81_c00084{transform:matrix(0.218782,-0.002844,0.003250,0.249979,0,0);-ms-transform:matrix(0.218782,-0.002844,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218782,-0.002844,0.003250,0.249979,0,0);}
.mc7_c00084{transform:matrix(0.218857,-0.002845,0.003250,0.249979,0,0);-ms-transform:matrix(0.218857,-0.002845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218857,-0.002845,0.003250,0.249979,0,0);}
.mbf_c00084{transform:matrix(0.218902,-0.002846,0.003250,0.249979,0,0);-ms-transform:matrix(0.218902,-0.002846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218902,-0.002846,0.003250,0.249979,0,0);}
.mf1_c00084{transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);}
.m75_c00084{transform:matrix(0.220341,-0.002864,0.003250,0.249979,0,0);-ms-transform:matrix(0.220341,-0.002864,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220341,-0.002864,0.003250,0.249979,0,0);}
.mb9_c00084{transform:matrix(0.220536,-0.002867,0.003250,0.249979,0,0);-ms-transform:matrix(0.220536,-0.002867,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220536,-0.002867,0.003250,0.249979,0,0);}
.m55_c00084{transform:matrix(0.220976,-0.002873,0.003250,0.249979,0,0);-ms-transform:matrix(0.220976,-0.002873,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220976,-0.002873,0.003250,0.249979,0,0);}
.m7c_c00084{transform:matrix(0.221851,-0.002884,0.003250,0.249979,0,0);-ms-transform:matrix(0.221851,-0.002884,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221851,-0.002884,0.003250,0.249979,0,0);}
.m9a_c00084{transform:matrix(0.221881,-0.002884,0.003250,0.249979,0,0);-ms-transform:matrix(0.221881,-0.002884,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221881,-0.002884,0.003250,0.249979,0,0);}
.m63_c00084{transform:matrix(0.222126,-0.002888,0.003250,0.249979,0,0);-ms-transform:matrix(0.222126,-0.002888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222126,-0.002888,0.003250,0.249979,0,0);}
.me_c00084{transform:matrix(0.222136,-0.002888,0.003250,0.249979,0,0);-ms-transform:matrix(0.222136,-0.002888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222136,-0.002888,0.003250,0.249979,0,0);}
.mb3_c00084{transform:matrix(0.222691,-0.002895,0.003250,0.249979,0,0);-ms-transform:matrix(0.222691,-0.002895,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222691,-0.002895,0.003250,0.249979,0,0);}
.ma0_c00084{transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);-ms-transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);}
.m70_c00084{transform:matrix(0.222916,-0.002898,0.003250,0.249979,0,0);-ms-transform:matrix(0.222916,-0.002898,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222916,-0.002898,0.003250,0.249979,0,0);}
.md2_c00084{transform:matrix(0.223216,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223216,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223216,-0.002902,0.003250,0.249979,0,0);}
.m6e_c00084{transform:matrix(0.223881,-0.002910,0.003250,0.249979,0,0);-ms-transform:matrix(0.223881,-0.002910,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223881,-0.002910,0.003250,0.249979,0,0);}
.mb0_c00084{transform:matrix(0.225246,-0.002928,0.003250,0.249979,0,0);-ms-transform:matrix(0.225246,-0.002928,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225246,-0.002928,0.003250,0.249979,0,0);}
.m6c_c00084{transform:matrix(0.225466,-0.002931,0.003250,0.249979,0,0);-ms-transform:matrix(0.225466,-0.002931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225466,-0.002931,0.003250,0.249979,0,0);}
.med_c00084{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m6b_c00084{transform:matrix(0.227936,-0.002963,0.003250,0.249979,0,0);-ms-transform:matrix(0.227936,-0.002963,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227936,-0.002963,0.003250,0.249979,0,0);}
.mfd_c00084{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.mf2_c00084{transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);}
.m29_c00084{transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);-ms-transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);}
.mb_c00084{transform:matrix(0.230541,-0.002997,0.003250,0.249979,0,0);-ms-transform:matrix(0.230541,-0.002997,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230541,-0.002997,0.003250,0.249979,0,0);}
.m2b_c00084{transform:matrix(0.231025,-0.003003,0.003250,0.249979,0,0);-ms-transform:matrix(0.231025,-0.003003,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231025,-0.003003,0.003250,0.249979,0,0);}
.mec_c00084{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m6d_c00084{transform:matrix(0.233885,-0.003041,0.003250,0.249979,0,0);-ms-transform:matrix(0.233885,-0.003041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233885,-0.003041,0.003250,0.249979,0,0);}
.m76_c00084{transform:matrix(0.237215,-0.003084,0.003250,0.249979,0,0);-ms-transform:matrix(0.237215,-0.003084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237215,-0.003084,0.003250,0.249979,0,0);}
.mbc_c00084{transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);-ms-transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);}
.m85_c00084{transform:matrix(0.241415,-0.003138,0.003250,0.249979,0,0);-ms-transform:matrix(0.241415,-0.003138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241415,-0.003138,0.003250,0.249979,0,0);}
.m8_c00084{transform:matrix(0.243389,-0.003164,0.003250,0.249979,0,0);-ms-transform:matrix(0.243389,-0.003164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243389,-0.003164,0.003250,0.249979,0,0);}
.m71_c00084{transform:matrix(0.244859,-0.003183,0.003250,0.249979,0,0);-ms-transform:matrix(0.244859,-0.003183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244859,-0.003183,0.003250,0.249979,0,0);}
.ma2_c00084{transform:matrix(0.244894,-0.003184,0.003250,0.249979,0,0);-ms-transform:matrix(0.244894,-0.003184,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244894,-0.003184,0.003250,0.249979,0,0);}
.me6_c00084{transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);}
.m69_c00084{transform:matrix(0.246279,-0.003202,0.003250,0.249979,0,0);-ms-transform:matrix(0.246279,-0.003202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246279,-0.003202,0.003250,0.249979,0,0);}
.m57_c00084{transform:matrix(0.246454,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246454,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246454,-0.003204,0.003250,0.249979,0,0);}
.m6a_c00084{transform:matrix(0.247999,-0.003224,0.003250,0.249979,0,0);-ms-transform:matrix(0.247999,-0.003224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247999,-0.003224,0.003250,0.249979,0,0);}
.m56_c00084{transform:matrix(0.249919,-0.003249,0.003250,0.249979,0,0);-ms-transform:matrix(0.249919,-0.003249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249919,-0.003249,0.003250,0.249979,0,0);}
.m77_c00084{transform:matrix(0.251534,-0.003270,0.003250,0.249979,0,0);-ms-transform:matrix(0.251534,-0.003270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251534,-0.003270,0.003250,0.249979,0,0);}
.m9d_c00084{transform:matrix(0.252479,-0.003282,0.003250,0.249979,0,0);-ms-transform:matrix(0.252479,-0.003282,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252479,-0.003282,0.003250,0.249979,0,0);}
.m74_c00084{transform:matrix(0.255168,-0.003317,0.003250,0.249979,0,0);-ms-transform:matrix(0.255168,-0.003317,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255168,-0.003317,0.003250,0.249979,0,0);}
.m96_c00084{transform:matrix(0.262818,-0.003417,0.003250,0.249979,0,0);-ms-transform:matrix(0.262818,-0.003417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262818,-0.003417,0.003250,0.249979,0,0);}
.m2c_c00084{transform:matrix(0.359805,-0.004677,0.003250,0.249979,0,0);-ms-transform:matrix(0.359805,-0.004677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.359805,-0.004677,0.003250,0.249979,0,0);}
.m46_c00084{transform:matrix(0.362024,-0.004706,0.003250,0.249979,0,0);-ms-transform:matrix(0.362024,-0.004706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.362024,-0.004706,0.003250,0.249979,0,0);}
.md_c00084{transform:matrix(0.436553,-0.005675,0.003250,0.249979,0,0);-ms-transform:matrix(0.436553,-0.005675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.436553,-0.005675,0.003250,0.249979,0,0);}
.m0_c00084{transform:matrix(0.446470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446470,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:0.000000px;}
.fc0_c00084{color:transparent;}
.fsa_c00084{font-size:53.554525px;}
.fsb_c00084{font-size:54.604614px;}
.fsc_c00084{font-size:57.754880px;}
.fs10_c00084{font-size:58.800000px;}
.fs8_c00084{font-size:58.804968px;}
.fsf_c00084{font-size:59.850000px;}
.fs2_c00084{font-size:59.855057px;}
.fse_c00084{font-size:60.900000px;}
.fs7_c00084{font-size:60.905146px;}
.fs6_c00084{font-size:61.955235px;}
.fs1_c00084{font-size:64.055412px;}
.fs11_c00084{font-size:65.100000px;}
.fsd_c00084{font-size:65.105501px;}
.fs5_c00084{font-size:66.155589px;}
.fs12_c00084{font-size:67.200000px;}
.fs4_c00084{font-size:67.205678px;}
.fs9_c00084{font-size:68.255767px;}
.fs3_c00084{font-size:70.355944px;}
.fs0_c00084{font-size:123.900000px;}
.y0_c00084{bottom:0.000000px;}
.ye8_c00084{bottom:19.582500px;}
.ye7_c00084{bottom:36.511500px;}
.ye6_c00084{bottom:52.618500px;}
.ye5_c00084{bottom:69.783000px;}
.ye4_c00084{bottom:89.113500px;}
.ydd_c00084{bottom:104.914203px;}
.ydf_c00084{bottom:104.914615px;}
.ydc_c00084{bottom:104.914882px;}
.yde_c00084{bottom:104.914933px;}
.ye0_c00084{bottom:104.915206px;}
.ye1_c00084{bottom:104.915467px;}
.ye2_c00084{bottom:104.915739px;}
.ye3_c00084{bottom:104.916280px;}
.yd9_c00084{bottom:121.863184px;}
.yd8_c00084{bottom:121.863264px;}
.yd5_c00084{bottom:121.863531px;}
.yd7_c00084{bottom:121.863763px;}
.ydb_c00084{bottom:121.863816px;}
.yda_c00084{bottom:121.863855px;}
.yd4_c00084{bottom:121.863930px;}
.yd3_c00084{bottom:121.864220px;}
.yd6_c00084{bottom:121.864261px;}
.ycd_c00084{bottom:138.602778px;}
.yce_c00084{bottom:138.602900px;}
.ycc_c00084{bottom:138.603027px;}
.ycf_c00084{bottom:138.603602px;}
.yd0_c00084{bottom:138.604002px;}
.yd2_c00084{bottom:138.604475px;}
.yd1_c00084{bottom:138.604554px;}
.yc6_c00084{bottom:154.275122px;}
.yc3_c00084{bottom:154.275159px;}
.yc7_c00084{bottom:154.275524px;}
.yc5_c00084{bottom:154.275551px;}
.yc4_c00084{bottom:154.275780px;}
.yc8_c00084{bottom:154.276254px;}
.yc9_c00084{bottom:154.276475px;}
.ycb_c00084{bottom:154.276947px;}
.yca_c00084{bottom:154.277117px;}
.ybc_c00084{bottom:174.426665px;}
.yc0_c00084{bottom:174.426747px;}
.ybd_c00084{bottom:174.426825px;}
.yc1_c00084{bottom:174.426908px;}
.ybb_c00084{bottom:174.427032px;}
.ybe_c00084{bottom:174.427356px;}
.yc2_c00084{bottom:174.427389px;}
.ybf_c00084{bottom:174.427397px;}
.yb1_c00084{bottom:189.686616px;}
.yb2_c00084{bottom:189.686757px;}
.yb3_c00084{bottom:189.686978px;}
.yb4_c00084{bottom:189.687108px;}
.yb5_c00084{bottom:189.687508px;}
.yb6_c00084{bottom:189.687630px;}
.yb7_c00084{bottom:189.688091px;}
.yb8_c00084{bottom:189.688311px;}
.yba_c00084{bottom:189.688333px;}
.yb9_c00084{bottom:189.688973px;}
.yab_c00084{bottom:205.864809px;}
.ya9_c00084{bottom:205.864877px;}
.yaa_c00084{bottom:205.864928px;}
.ya8_c00084{bottom:205.865316px;}
.yac_c00084{bottom:205.865420px;}
.yad_c00084{bottom:205.866111px;}
.yae_c00084{bottom:205.866811px;}
.yaf_c00084{bottom:205.867122px;}
.yb0_c00084{bottom:205.867323px;}
.ya0_c00084{bottom:222.925002px;}
.ya3_c00084{bottom:222.925115px;}
.ya5_c00084{bottom:222.925257px;}
.ya7_c00084{bottom:222.925400px;}
.ya4_c00084{bottom:222.925455px;}
.ya6_c00084{bottom:222.925478px;}
.ya2_c00084{bottom:222.925524px;}
.ya1_c00084{bottom:222.925582px;}
.y99_c00084{bottom:240.002979px;}
.y98_c00084{bottom:240.003059px;}
.y9a_c00084{bottom:240.003670px;}
.y9b_c00084{bottom:240.004182px;}
.y9c_c00084{bottom:240.004402px;}
.y9d_c00084{bottom:240.005044px;}
.y9e_c00084{bottom:240.005505px;}
.y9f_c00084{bottom:240.006146px;}
.y90_c00084{bottom:256.929895px;}
.y93_c00084{bottom:256.930128px;}
.y97_c00084{bottom:256.930203px;}
.y91_c00084{bottom:256.930366px;}
.y95_c00084{bottom:256.930391px;}
.y94_c00084{bottom:256.930440px;}
.y96_c00084{bottom:256.930821px;}
.y92_c00084{bottom:256.930837px;}
.y8f_c00084{bottom:274.178459px;}
.y88_c00084{bottom:274.178771px;}
.y89_c00084{bottom:274.178802px;}
.y8e_c00084{bottom:274.179008px;}
.y8d_c00084{bottom:274.179366px;}
.y8c_c00084{bottom:274.179405px;}
.y8a_c00084{bottom:274.179533px;}
.y8b_c00084{bottom:274.180123px;}
.y86_c00084{bottom:291.490463px;}
.y87_c00084{bottom:291.490593px;}
.y85_c00084{bottom:291.490761px;}
.y81_c00084{bottom:291.491037px;}
.y82_c00084{bottom:291.491258px;}
.y84_c00084{bottom:291.491310px;}
.y80_c00084{bottom:291.491695px;}
.y83_c00084{bottom:291.491989px;}
.y7e_c00084{bottom:308.537499px;}
.y7d_c00084{bottom:308.537706px;}
.y7f_c00084{bottom:308.537749px;}
.y7c_c00084{bottom:308.537815px;}
.y7b_c00084{bottom:308.538564px;}
.y7a_c00084{bottom:308.539302px;}
.y79_c00084{bottom:308.539561px;}
.y71_c00084{bottom:322.635588px;}
.y72_c00084{bottom:322.800003px;}
.y73_c00084{bottom:323.356036px;}
.y74_c00084{bottom:323.626582px;}
.y75_c00084{bottom:323.790802px;}
.y76_c00084{bottom:324.396088px;}
.y77_c00084{bottom:324.595672px;}
.y78_c00084{bottom:325.283605px;}
.y6a_c00084{bottom:340.456441px;}
.y6b_c00084{bottom:341.142286px;}
.y6c_c00084{bottom:341.782078px;}
.y6d_c00084{bottom:342.251721px;}
.y6e_c00084{bottom:342.335343px;}
.y6f_c00084{bottom:343.113138px;}
.y70_c00084{bottom:343.306030px;}
.y69_c00084{bottom:357.055509px;}
.y68_c00084{bottom:357.055848px;}
.y67_c00084{bottom:357.056307px;}
.y66_c00084{bottom:357.056575px;}
.y65_c00084{bottom:357.056775px;}
.y62_c00084{bottom:357.056811px;}
.y64_c00084{bottom:357.057163px;}
.y63_c00084{bottom:357.057543px;}
.y59_c00084{bottom:372.588010px;}
.y5a_c00084{bottom:372.782109px;}
.y5b_c00084{bottom:373.512750px;}
.y5c_c00084{bottom:373.822309px;}
.y5d_c00084{bottom:374.027877px;}
.y5e_c00084{bottom:374.870917px;}
.y5f_c00084{bottom:375.004965px;}
.y60_c00084{bottom:375.219484px;}
.y61_c00084{bottom:375.655993px;}
.y51_c00084{bottom:390.148897px;}
.y57_c00084{bottom:390.149374px;}
.y52_c00084{bottom:390.149538px;}
.y56_c00084{bottom:390.149743px;}
.y58_c00084{bottom:390.149845px;}
.y53_c00084{bottom:390.150189px;}
.y55_c00084{bottom:390.150220px;}
.y54_c00084{bottom:390.150919px;}
.y48_c00084{bottom:405.529392px;}
.y49_c00084{bottom:405.838564px;}
.y4a_c00084{bottom:406.097271px;}
.y4b_c00084{bottom:406.347378px;}
.y4c_c00084{bottom:407.020381px;}
.y4d_c00084{bottom:407.193444px;}
.y4e_c00084{bottom:408.102592px;}
.y4f_c00084{bottom:408.919720px;}
.y50_c00084{bottom:409.285560px;}
.y3e_c00084{bottom:422.272480px;}
.y3f_c00084{bottom:422.878713px;}
.y40_c00084{bottom:423.183379px;}
.y41_c00084{bottom:423.446205px;}
.y42_c00084{bottom:424.312864px;}
.y43_c00084{bottom:424.616692px;}
.y44_c00084{bottom:425.296411px;}
.y45_c00084{bottom:425.835339px;}
.y46_c00084{bottom:426.248703px;}
.y47_c00084{bottom:426.446991px;}
.y38_c00084{bottom:442.224211px;}
.y39_c00084{bottom:442.224774px;}
.y3b_c00084{bottom:442.224906px;}
.y3d_c00084{bottom:442.225099px;}
.y3c_c00084{bottom:442.225149px;}
.y3a_c00084{bottom:442.225414px;}
.y36_c00084{bottom:457.920840px;}
.y31_c00084{bottom:457.920853px;}
.y35_c00084{bottom:457.920918px;}
.y37_c00084{bottom:457.920981px;}
.y34_c00084{bottom:457.921327px;}
.y32_c00084{bottom:457.921555px;}
.y33_c00084{bottom:457.921926px;}
.y2a_c00084{bottom:474.114301px;}
.y2b_c00084{bottom:474.254802px;}
.y2c_c00084{bottom:474.532663px;}
.y2d_c00084{bottom:475.545348px;}
.y2e_c00084{bottom:475.863567px;}
.y2f_c00084{bottom:476.226238px;}
.y30_c00084{bottom:476.923123px;}
.y25_c00084{bottom:492.720963px;}
.y28_c00084{bottom:492.721107px;}
.y27_c00084{bottom:492.721296px;}
.y29_c00084{bottom:492.721348px;}
.y26_c00084{bottom:492.721363px;}
.y1c_c00084{bottom:506.248303px;}
.y1d_c00084{bottom:507.046329px;}
.y1e_c00084{bottom:507.708412px;}
.y1f_c00084{bottom:508.044279px;}
.y20_c00084{bottom:508.433193px;}
.y21_c00084{bottom:508.897632px;}
.y22_c00084{bottom:509.925021px;}
.y23_c00084{bottom:510.256189px;}
.y24_c00084{bottom:510.760672px;}
.y13_c00084{bottom:525.417370px;}
.y14_c00084{bottom:525.729408px;}
.y15_c00084{bottom:525.937510px;}
.y16_c00084{bottom:526.558561px;}
.y17_c00084{bottom:526.799547px;}
.y18_c00084{bottom:527.245047px;}
.y19_c00084{bottom:527.533036px;}
.y1a_c00084{bottom:527.880882px;}
.y1b_c00084{bottom:528.504099px;}
.y9_c00084{bottom:541.352491px;}
.ya_c00084{bottom:541.848162px;}
.yb_c00084{bottom:542.563644px;}
.yc_c00084{bottom:543.710110px;}
.yd_c00084{bottom:543.934756px;}
.ye_c00084{bottom:544.407423px;}
.yf_c00084{bottom:545.013945px;}
.y10_c00084{bottom:545.211648px;}
.y11_c00084{bottom:545.487021px;}
.y12_c00084{bottom:546.023632px;}
.y2_c00084{bottom:559.171500px;}
.y3_c00084{bottom:559.718748px;}
.y4_c00084{bottom:559.866207px;}
.y5_c00084{bottom:560.143555px;}
.y6_c00084{bottom:560.872933px;}
.y7_c00084{bottom:561.375741px;}
.y8_c00084{bottom:562.274496px;}
.y1_c00084{bottom:572.658000px;}
.hc_c00084{height:53.554525px;}
.hd_c00084{height:54.604614px;}
.he_c00084{height:57.754880px;}
.h12_c00084{height:58.800000px;}
.ha_c00084{height:58.804968px;}
.h11_c00084{height:59.850000px;}
.h4_c00084{height:59.855057px;}
.h10_c00084{height:60.900000px;}
.h9_c00084{height:60.905146px;}
.h8_c00084{height:61.955235px;}
.h3_c00084{height:64.055412px;}
.h13_c00084{height:65.100000px;}
.hf_c00084{height:65.105501px;}
.h7_c00084{height:66.155589px;}
.h14_c00084{height:67.200000px;}
.h6_c00084{height:67.205678px;}
.hb_c00084{height:68.255767px;}
.h5_c00084{height:70.355944px;}
.h2_c00084{height:123.900000px;}
.h1_c00084{height:612.000000px;}
.h0_c00084{height:612.300000px;}
.w0_c00084{width:361.500000px;}
.x0_c00084{left:0.000000px;}
.x52_c00084{left:15.790534px;}
.x2_c00084{left:17.452500px;}
.x24_c00084{left:19.273865px;}
.x33_c00084{left:20.730941px;}
.x6a_c00084{left:21.877452px;}
.x76_c00084{left:22.959194px;}
.x7b_c00084{left:24.039147px;}
.x20_c00084{left:26.468734px;}
.x44_c00084{left:28.187990px;}
.x66_c00084{left:29.979083px;}
.x25_c00084{left:33.312911px;}
.x56_c00084{left:35.758903px;}
.x21_c00084{left:37.809145px;}
.x58_c00084{left:39.967972px;}
.x3a_c00084{left:43.916463px;}
.x9_c00084{left:46.656600px;}
.x81_c00084{left:48.870000px;}
.x6f_c00084{left:54.550259px;}
.x7a_c00084{left:58.331877px;}
.x3_c00084{left:59.548500px;}
.x26_c00084{left:61.149503px;}
.x3b_c00084{left:63.816963px;}
.x12_c00084{left:65.201037px;}
.x6b_c00084{left:66.970577px;}
.x7f_c00084{left:68.040000px;}
.x4_c00084{left:70.891500px;}
.x70_c00084{left:74.532132px;}
.x5e_c00084{left:76.420743px;}
.x34_c00084{left:81.452361px;}
.x3c_c00084{left:83.055963px;}
.x53_c00084{left:84.358206px;}
.x84_c00084{left:87.210000px;}
.xa_c00084{left:88.768416px;}
.x40_c00084{left:90.463233px;}
.x5_c00084{left:92.226000px;}
.x2b_c00084{left:95.055140px;}
.x1_c00084{left:97.470000px;}
.x35_c00084{left:99.015413px;}
.x4c_c00084{left:100.183021px;}
.x19_c00084{left:103.898514px;}
.x30_c00084{left:105.585443px;}
.x63_c00084{left:107.744738px;}
.x72_c00084{left:109.635414px;}
.x45_c00084{left:112.131654px;}
.x83_c00084{left:113.400000px;}
.x67_c00084{left:116.656227px;}
.x2c_c00084{left:119.087696px;}
.x13_c00084{left:121.629500px;}
.x1a_c00084{left:123.617981px;}
.x41_c00084{left:126.646356px;}
.x73_c00084{left:127.997015px;}
.x22_c00084{left:133.127753px;}
.x3d_c00084{left:134.825463px;}
.x6c_c00084{left:136.366296px;}
.x46_c00084{left:140.213876px;}
.x7c_c00084{left:141.771348px;}
.x14_c00084{left:143.513565px;}
.x4d_c00084{left:145.276146px;}
.x1b_c00084{left:146.494791px;}
.x6_c00084{left:148.332000px;}
.x59_c00084{left:152.026426px;}
.x5c_c00084{left:153.646259px;}
.xb_c00084{left:156.185406px;}
.x47_c00084{left:158.911863px;}
.x27_c00084{left:162.359942px;}
.x64_c00084{left:163.639676px;}
.x4e_c00084{left:167.418390px;}
.xc_c00084{left:169.426724px;}
.x2d_c00084{left:172.012146px;}
.x1c_c00084{left:173.796368px;}
.x71_c00084{left:175.250136px;}
.x36_c00084{left:177.050885px;}
.x31_c00084{left:178.761806px;}
.x15_c00084{left:184.014618px;}
.x74_c00084{left:185.512226px;}
.x7_c00084{left:187.009500px;}
.x2e_c00084{left:188.483435px;}
.x68_c00084{left:190.641227px;}
.x77_c00084{left:192.802878px;}
.x28_c00084{left:194.224190px;}
.x54_c00084{left:195.319035px;}
.xd_c00084{left:197.245780px;}
.x60_c00084{left:201.980651px;}
.x55_c00084{left:203.713367px;}
.x7d_c00084{left:207.386424px;}
.x75_c00084{left:209.004704px;}
.x16_c00084{left:210.206800px;}
.x78_c00084{left:212.784752px;}
.x57_c00084{left:215.317404px;}
.x6d_c00084{left:216.563829px;}
.x3e_c00084{left:218.072463px;}
.x37_c00084{left:222.412715px;}
.x42_c00084{left:224.933970px;}
.x61_c00084{left:227.633480px;}
.x4f_c00084{left:229.254342px;}
.x29_c00084{left:230.431094px;}
.x23_c00084{left:231.686906px;}
.xe_c00084{left:232.937928px;}
.x1d_c00084{left:234.246228px;}
.x48_c00084{left:235.532352px;}
.x6e_c00084{left:238.976112px;}
.x17_c00084{left:241.811119px;}
.xf_c00084{left:244.568323px;}
.x49_c00084{left:247.690164px;}
.x1e_c00084{left:253.719714px;}
.x8_c00084{left:256.144500px;}
.x38_c00084{left:258.329279px;}
.x10_c00084{left:260.788485px;}
.x5d_c00084{left:264.085939px;}
.x80_c00084{left:265.410000px;}
.x4a_c00084{left:267.192171px;}
.x65_c00084{left:270.028635px;}
.x50_c00084{left:271.918557px;}
.x5f_c00084{left:276.778095px;}
.x69_c00084{left:278.128508px;}
.x3f_c00084{left:280.928463px;}
.x5a_c00084{left:282.177922px;}
.x1f_c00084{left:283.409174px;}
.x39_c00084{left:285.856557px;}
.x2f_c00084{left:287.851224px;}
.x82_c00084{left:289.170000px;}
.x11_c00084{left:292.372347px;}
.x62_c00084{left:294.058712px;}
.x79_c00084{left:295.681253px;}
.x43_c00084{left:297.300196px;}
.x18_c00084{left:298.521601px;}
.x2a_c00084{left:300.078804px;}
.x5b_c00084{left:302.969932px;}
.x51_c00084{left:304.321036px;}
.x4b_c00084{left:306.886204px;}
.x32_c00084{left:309.183340px;}
.x7e_c00084{left:313.505345px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.fsa_c00084{font-size:47.604022pt;}
.fsb_c00084{font-size:48.537434pt;}
.fsc_c00084{font-size:51.337671pt;}
.fs10_c00084{font-size:52.266667pt;}
.fs8_c00084{font-size:52.271083pt;}
.fsf_c00084{font-size:53.200000pt;}
.fs2_c00084{font-size:53.204495pt;}
.fse_c00084{font-size:54.133333pt;}
.fs7_c00084{font-size:54.137907pt;}
.fs6_c00084{font-size:55.071320pt;}
.fs1_c00084{font-size:56.938144pt;}
.fs11_c00084{font-size:57.866667pt;}
.fsd_c00084{font-size:57.871556pt;}
.fs5_c00084{font-size:58.804968pt;}
.fs12_c00084{font-size:59.733333pt;}
.fs4_c00084{font-size:59.738381pt;}
.fs9_c00084{font-size:60.671793pt;}
.fs3_c00084{font-size:62.538617pt;}
.fs0_c00084{font-size:110.133333pt;}
.y0_c00084{bottom:0.000000pt;}
.ye8_c00084{bottom:17.406667pt;}
.ye7_c00084{bottom:32.454667pt;}
.ye6_c00084{bottom:46.772000pt;}
.ye5_c00084{bottom:62.029333pt;}
.ye4_c00084{bottom:79.212000pt;}
.ydd_c00084{bottom:93.257069pt;}
.ydf_c00084{bottom:93.257436pt;}
.ydc_c00084{bottom:93.257673pt;}
.yde_c00084{bottom:93.257719pt;}
.ye0_c00084{bottom:93.257961pt;}
.ye1_c00084{bottom:93.258193pt;}
.ye2_c00084{bottom:93.258435pt;}
.ye3_c00084{bottom:93.258916pt;}
.yd9_c00084{bottom:108.322831pt;}
.yd8_c00084{bottom:108.322901pt;}
.yd5_c00084{bottom:108.323139pt;}
.yd7_c00084{bottom:108.323345pt;}
.ydb_c00084{bottom:108.323392pt;}
.yda_c00084{bottom:108.323427pt;}
.yd4_c00084{bottom:108.323493pt;}
.yd3_c00084{bottom:108.323751pt;}
.yd6_c00084{bottom:108.323788pt;}
.ycd_c00084{bottom:123.202469pt;}
.yce_c00084{bottom:123.202577pt;}
.ycc_c00084{bottom:123.202691pt;}
.ycf_c00084{bottom:123.203201pt;}
.yd0_c00084{bottom:123.203557pt;}
.yd2_c00084{bottom:123.203977pt;}
.yd1_c00084{bottom:123.204048pt;}
.yc6_c00084{bottom:137.133441pt;}
.yc3_c00084{bottom:137.133475pt;}
.yc7_c00084{bottom:137.133799pt;}
.yc5_c00084{bottom:137.133823pt;}
.yc4_c00084{bottom:137.134027pt;}
.yc8_c00084{bottom:137.134448pt;}
.yc9_c00084{bottom:137.134644pt;}
.ycb_c00084{bottom:137.135064pt;}
.yca_c00084{bottom:137.135215pt;}
.ybc_c00084{bottom:155.045924pt;}
.yc0_c00084{bottom:155.045997pt;}
.ybd_c00084{bottom:155.046067pt;}
.yc1_c00084{bottom:155.046140pt;}
.ybb_c00084{bottom:155.046251pt;}
.ybe_c00084{bottom:155.046539pt;}
.yc2_c00084{bottom:155.046568pt;}
.ybf_c00084{bottom:155.046575pt;}
.yb1_c00084{bottom:168.610325pt;}
.yb2_c00084{bottom:168.610451pt;}
.yb3_c00084{bottom:168.610647pt;}
.yb4_c00084{bottom:168.610763pt;}
.yb5_c00084{bottom:168.611119pt;}
.yb6_c00084{bottom:168.611227pt;}
.yb7_c00084{bottom:168.611636pt;}
.yb8_c00084{bottom:168.611832pt;}
.yba_c00084{bottom:168.611852pt;}
.yb9_c00084{bottom:168.612420pt;}
.yab_c00084{bottom:182.990941pt;}
.ya9_c00084{bottom:182.991001pt;}
.yaa_c00084{bottom:182.991047pt;}
.ya8_c00084{bottom:182.991392pt;}
.yac_c00084{bottom:182.991484pt;}
.yad_c00084{bottom:182.992099pt;}
.yae_c00084{bottom:182.992721pt;}
.yaf_c00084{bottom:182.992997pt;}
.yb0_c00084{bottom:182.993176pt;}
.ya0_c00084{bottom:198.155557pt;}
.ya3_c00084{bottom:198.155657pt;}
.ya5_c00084{bottom:198.155784pt;}
.ya7_c00084{bottom:198.155911pt;}
.ya4_c00084{bottom:198.155960pt;}
.ya6_c00084{bottom:198.155980pt;}
.ya2_c00084{bottom:198.156021pt;}
.ya1_c00084{bottom:198.156073pt;}
.y99_c00084{bottom:213.335981pt;}
.y98_c00084{bottom:213.336052pt;}
.y9a_c00084{bottom:213.336596pt;}
.y9b_c00084{bottom:213.337051pt;}
.y9c_c00084{bottom:213.337247pt;}
.y9d_c00084{bottom:213.337817pt;}
.y9e_c00084{bottom:213.338227pt;}
.y9f_c00084{bottom:213.338796pt;}
.y90_c00084{bottom:228.382129pt;}
.y93_c00084{bottom:228.382336pt;}
.y97_c00084{bottom:228.382403pt;}
.y91_c00084{bottom:228.382548pt;}
.y95_c00084{bottom:228.382569pt;}
.y94_c00084{bottom:228.382613pt;}
.y96_c00084{bottom:228.382952pt;}
.y92_c00084{bottom:228.382967pt;}
.y8f_c00084{bottom:243.714185pt;}
.y88_c00084{bottom:243.714463pt;}
.y89_c00084{bottom:243.714491pt;}
.y8e_c00084{bottom:243.714673pt;}
.y8d_c00084{bottom:243.714992pt;}
.y8c_c00084{bottom:243.715027pt;}
.y8a_c00084{bottom:243.715140pt;}
.y8b_c00084{bottom:243.715665pt;}
.y86_c00084{bottom:259.102633pt;}
.y87_c00084{bottom:259.102749pt;}
.y85_c00084{bottom:259.102899pt;}
.y81_c00084{bottom:259.103144pt;}
.y82_c00084{bottom:259.103340pt;}
.y84_c00084{bottom:259.103387pt;}
.y80_c00084{bottom:259.103729pt;}
.y83_c00084{bottom:259.103991pt;}
.y7e_c00084{bottom:274.255555pt;}
.y7d_c00084{bottom:274.255739pt;}
.y7f_c00084{bottom:274.255777pt;}
.y7c_c00084{bottom:274.255836pt;}
.y7b_c00084{bottom:274.256501pt;}
.y7a_c00084{bottom:274.257157pt;}
.y79_c00084{bottom:274.257388pt;}
.y71_c00084{bottom:286.787189pt;}
.y72_c00084{bottom:286.933336pt;}
.y73_c00084{bottom:287.427588pt;}
.y74_c00084{bottom:287.668073pt;}
.y75_c00084{bottom:287.814047pt;}
.y76_c00084{bottom:288.352079pt;}
.y77_c00084{bottom:288.529487pt;}
.y78_c00084{bottom:289.140983pt;}
.y6a_c00084{bottom:302.627948pt;}
.y6b_c00084{bottom:303.237588pt;}
.y6c_c00084{bottom:303.806292pt;}
.y6d_c00084{bottom:304.223752pt;}
.y6e_c00084{bottom:304.298083pt;}
.y6f_c00084{bottom:304.989456pt;}
.y70_c00084{bottom:305.160916pt;}
.y69_c00084{bottom:317.382675pt;}
.y68_c00084{bottom:317.382976pt;}
.y67_c00084{bottom:317.383384pt;}
.y66_c00084{bottom:317.383623pt;}
.y65_c00084{bottom:317.383800pt;}
.y62_c00084{bottom:317.383832pt;}
.y64_c00084{bottom:317.384145pt;}
.y63_c00084{bottom:317.384483pt;}
.y59_c00084{bottom:331.189343pt;}
.y5a_c00084{bottom:331.361875pt;}
.y5b_c00084{bottom:332.011333pt;}
.y5c_c00084{bottom:332.286497pt;}
.y5d_c00084{bottom:332.469224pt;}
.y5e_c00084{bottom:333.218593pt;}
.y5f_c00084{bottom:333.337747pt;}
.y60_c00084{bottom:333.528431pt;}
.y61_c00084{bottom:333.916439pt;}
.y51_c00084{bottom:346.799020pt;}
.y57_c00084{bottom:346.799444pt;}
.y52_c00084{bottom:346.799589pt;}
.y56_c00084{bottom:346.799772pt;}
.y58_c00084{bottom:346.799863pt;}
.y53_c00084{bottom:346.800168pt;}
.y55_c00084{bottom:346.800196pt;}
.y54_c00084{bottom:346.800817pt;}
.y48_c00084{bottom:360.470571pt;}
.y49_c00084{bottom:360.745391pt;}
.y4a_c00084{bottom:360.975352pt;}
.y4b_c00084{bottom:361.197669pt;}
.y4c_c00084{bottom:361.795895pt;}
.y4d_c00084{bottom:361.949728pt;}
.y4e_c00084{bottom:362.757860pt;}
.y4f_c00084{bottom:363.484196pt;}
.y50_c00084{bottom:363.809387pt;}
.y3e_c00084{bottom:375.353316pt;}
.y3f_c00084{bottom:375.892189pt;}
.y40_c00084{bottom:376.163004pt;}
.y41_c00084{bottom:376.396627pt;}
.y42_c00084{bottom:377.166991pt;}
.y43_c00084{bottom:377.437060pt;}
.y44_c00084{bottom:378.041255pt;}
.y45_c00084{bottom:378.520301pt;}
.y46_c00084{bottom:378.887736pt;}
.y47_c00084{bottom:379.063992pt;}
.y38_c00084{bottom:393.088188pt;}
.y39_c00084{bottom:393.088688pt;}
.y3b_c00084{bottom:393.088805pt;}
.y3d_c00084{bottom:393.088977pt;}
.y3c_c00084{bottom:393.089021pt;}
.y3a_c00084{bottom:393.089257pt;}
.y36_c00084{bottom:407.040747pt;}
.y31_c00084{bottom:407.040759pt;}
.y35_c00084{bottom:407.040816pt;}
.y37_c00084{bottom:407.040872pt;}
.y34_c00084{bottom:407.041180pt;}
.y32_c00084{bottom:407.041383pt;}
.y33_c00084{bottom:407.041712pt;}
.y2a_c00084{bottom:421.434935pt;}
.y2b_c00084{bottom:421.559824pt;}
.y2c_c00084{bottom:421.806812pt;}
.y2d_c00084{bottom:422.706976pt;}
.y2e_c00084{bottom:422.989837pt;}
.y2f_c00084{bottom:423.312212pt;}
.y30_c00084{bottom:423.931665pt;}
.y25_c00084{bottom:437.974189pt;}
.y28_c00084{bottom:437.974317pt;}
.y27_c00084{bottom:437.974485pt;}
.y29_c00084{bottom:437.974532pt;}
.y26_c00084{bottom:437.974545pt;}
.y1c_c00084{bottom:449.998492pt;}
.y1d_c00084{bottom:450.707848pt;}
.y1e_c00084{bottom:451.296367pt;}
.y1f_c00084{bottom:451.594915pt;}
.y20_c00084{bottom:451.940616pt;}
.y21_c00084{bottom:452.353451pt;}
.y22_c00084{bottom:453.266685pt;}
.y23_c00084{bottom:453.561057pt;}
.y24_c00084{bottom:454.009487pt;}
.y13_c00084{bottom:467.037663pt;}
.y14_c00084{bottom:467.315029pt;}
.y15_c00084{bottom:467.500009pt;}
.y16_c00084{bottom:468.052055pt;}
.y17_c00084{bottom:468.266264pt;}
.y18_c00084{bottom:468.662264pt;}
.y19_c00084{bottom:468.918255pt;}
.y1a_c00084{bottom:469.227451pt;}
.y1b_c00084{bottom:469.781421pt;}
.y9_c00084{bottom:481.202215pt;}
.ya_c00084{bottom:481.642811pt;}
.yb_c00084{bottom:482.278795pt;}
.yc_c00084{bottom:483.297876pt;}
.yd_c00084{bottom:483.497561pt;}
.ye_c00084{bottom:483.917709pt;}
.yf_c00084{bottom:484.456840pt;}
.y10_c00084{bottom:484.632576pt;}
.y11_c00084{bottom:484.877352pt;}
.y12_c00084{bottom:485.354340pt;}
.y2_c00084{bottom:497.041333pt;}
.y3_c00084{bottom:497.527776pt;}
.y4_c00084{bottom:497.658851pt;}
.y5_c00084{bottom:497.905383pt;}
.y6_c00084{bottom:498.553719pt;}
.y7_c00084{bottom:499.000659pt;}
.y8_c00084{bottom:499.799552pt;}
.y1_c00084{bottom:509.029333pt;}
.hc_c00084{height:47.604022pt;}
.hd_c00084{height:48.537434pt;}
.he_c00084{height:51.337671pt;}
.h12_c00084{height:52.266667pt;}
.ha_c00084{height:52.271083pt;}
.h11_c00084{height:53.200000pt;}
.h4_c00084{height:53.204495pt;}
.h10_c00084{height:54.133333pt;}
.h9_c00084{height:54.137907pt;}
.h8_c00084{height:55.071320pt;}
.h3_c00084{height:56.938144pt;}
.h13_c00084{height:57.866667pt;}
.hf_c00084{height:57.871556pt;}
.h7_c00084{height:58.804968pt;}
.h14_c00084{height:59.733333pt;}
.h6_c00084{height:59.738381pt;}
.hb_c00084{height:60.671793pt;}
.h5_c00084{height:62.538617pt;}
.h2_c00084{height:110.133333pt;}
.h1_c00084{height:544.000000pt;}
.h0_c00084{height:544.266667pt;}
.w0_c00084{width:321.333333pt;}
.x0_c00084{left:0.000000pt;}
.x52_c00084{left:14.036031pt;}
.x2_c00084{left:15.513333pt;}
.x24_c00084{left:17.132324pt;}
.x33_c00084{left:18.427503pt;}
.x6a_c00084{left:19.446624pt;}
.x76_c00084{left:20.408172pt;}
.x7b_c00084{left:21.368131pt;}
.x20_c00084{left:23.527764pt;}
.x44_c00084{left:25.055991pt;}
.x66_c00084{left:26.648073pt;}
.x25_c00084{left:29.611476pt;}
.x56_c00084{left:31.785692pt;}
.x21_c00084{left:33.608129pt;}
.x58_c00084{left:35.527087pt;}
.x3a_c00084{left:39.036856pt;}
.x9_c00084{left:41.472533pt;}
.x81_c00084{left:43.440000pt;}
.x6f_c00084{left:48.489119pt;}
.x7a_c00084{left:51.850557pt;}
.x3_c00084{left:52.932000pt;}
.x26_c00084{left:54.355113pt;}
.x3b_c00084{left:56.726189pt;}
.x12_c00084{left:57.956477pt;}
.x6b_c00084{left:59.529401pt;}
.x7f_c00084{left:60.480000pt;}
.x4_c00084{left:63.014667pt;}
.x70_c00084{left:66.250784pt;}
.x5e_c00084{left:67.929549pt;}
.x34_c00084{left:72.402099pt;}
.x3c_c00084{left:73.827523pt;}
.x53_c00084{left:74.985072pt;}
.x84_c00084{left:77.520000pt;}
.xa_c00084{left:78.905259pt;}
.x40_c00084{left:80.411763pt;}
.x5_c00084{left:81.978667pt;}
.x2b_c00084{left:84.493457pt;}
.x1_c00084{left:86.640000pt;}
.x35_c00084{left:88.013700pt;}
.x4c_c00084{left:89.051575pt;}
.x19_c00084{left:92.354235pt;}
.x30_c00084{left:93.853727pt;}
.x63_c00084{left:95.773100pt;}
.x72_c00084{left:97.453701pt;}
.x45_c00084{left:99.672581pt;}
.x83_c00084{left:100.800000pt;}
.x67_c00084{left:103.694424pt;}
.x2c_c00084{left:105.855729pt;}
.x13_c00084{left:108.115111pt;}
.x1a_c00084{left:109.882649pt;}
.x41_c00084{left:112.574539pt;}
.x73_c00084{left:113.775124pt;}
.x22_c00084{left:118.335780pt;}
.x3d_c00084{left:119.844856pt;}
.x6c_c00084{left:121.214485pt;}
.x46_c00084{left:124.634556pt;}
.x7c_c00084{left:126.018976pt;}
.x14_c00084{left:127.567613pt;}
.x4d_c00084{left:129.134352pt;}
.x1b_c00084{left:130.217592pt;}
.x6_c00084{left:131.850667pt;}
.x59_c00084{left:135.134601pt;}
.x5c_c00084{left:136.574452pt;}
.xb_c00084{left:138.831472pt;}
.x47_c00084{left:141.254989pt;}
.x27_c00084{left:144.319948pt;}
.x64_c00084{left:145.457489pt;}
.x4e_c00084{left:148.816347pt;}
.xc_c00084{left:150.601532pt;}
.x2d_c00084{left:152.899685pt;}
.x1c_c00084{left:154.485660pt;}
.x71_c00084{left:155.777899pt;}
.x36_c00084{left:157.378564pt;}
.x31_c00084{left:158.899383pt;}
.x15_c00084{left:163.568549pt;}
.x74_c00084{left:164.899756pt;}
.x7_c00084{left:166.230667pt;}
.x2e_c00084{left:167.540831pt;}
.x68_c00084{left:169.458868pt;}
.x77_c00084{left:171.380336pt;}
.x28_c00084{left:172.643724pt;}
.x54_c00084{left:173.616920pt;}
.xd_c00084{left:175.329583pt;}
.x60_c00084{left:179.538356pt;}
.x55_c00084{left:181.078548pt;}
.x7d_c00084{left:184.343488pt;}
.x75_c00084{left:185.781959pt;}
.x16_c00084{left:186.850489pt;}
.x78_c00084{left:189.142001pt;}
.x57_c00084{left:191.393248pt;}
.x6d_c00084{left:192.501181pt;}
.x3e_c00084{left:193.842189pt;}
.x37_c00084{left:197.700191pt;}
.x42_c00084{left:199.941307pt;}
.x61_c00084{left:202.340871pt;}
.x4f_c00084{left:203.781637pt;}
.x29_c00084{left:204.827639pt;}
.x23_c00084{left:205.943916pt;}
.xe_c00084{left:207.055936pt;}
.x1d_c00084{left:208.218869pt;}
.x48_c00084{left:209.362091pt;}
.x6e_c00084{left:212.423211pt;}
.x17_c00084{left:214.943217pt;}
.xf_c00084{left:217.394065pt;}
.x49_c00084{left:220.169035pt;}
.x1e_c00084{left:225.528635pt;}
.x8_c00084{left:227.684000pt;}
.x38_c00084{left:229.626025pt;}
.x10_c00084{left:231.811987pt;}
.x5d_c00084{left:234.743057pt;}
.x80_c00084{left:235.920000pt;}
.x4a_c00084{left:237.504152pt;}
.x65_c00084{left:240.025453pt;}
.x50_c00084{left:241.705384pt;}
.x5f_c00084{left:246.024973pt;}
.x69_c00084{left:247.225340pt;}
.x3f_c00084{left:249.714189pt;}
.x5a_c00084{left:250.824820pt;}
.x1f_c00084{left:251.919265pt;}
.x39_c00084{left:254.094717pt;}
.x2f_c00084{left:255.867755pt;}
.x82_c00084{left:257.040000pt;}
.x11_c00084{left:259.886531pt;}
.x62_c00084{left:261.385521pt;}
.x79_c00084{left:262.827780pt;}
.x43_c00084{left:264.266841pt;}
.x18_c00084{left:265.352535pt;}
.x2a_c00084{left:266.736715pt;}
.x5b_c00084{left:269.306607pt;}
.x51_c00084{left:270.507588pt;}
.x4b_c00084{left:272.787737pt;}
.x32_c00084{left:274.829636pt;}
.x7e_c00084{left:278.671417pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00085 {
    display:none;
  }
  .loading-indicator_c00085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00085 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00085 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00085" -> "#page-container .classname_c00085")
 */
.pf_c00085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00085 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00085 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00085 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00085 {overflow:visible;}
  }
}
.c_c00085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00085 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00085:after { /* webkit #35443 */
  content: '';
}
.t_c00085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00085 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00085 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00085 { /* info for Javascript */
  display:none;
}
.l_c00085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00085:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00085 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00085.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00085{transform:matrix(0.011866,0.000666,-0.014006,0.249607,0,0);-ms-transform:matrix(0.011866,0.000666,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.011866,0.000666,-0.014006,0.249607,0,0);}
.m3d_c00085{transform:matrix(0.029381,0.001059,-0.009003,0.249838,0,0);-ms-transform:matrix(0.029381,0.001059,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.029381,0.001059,-0.009003,0.249838,0,0);}
.m71_c00085{transform:matrix(0.029391,0.000735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.029391,0.000735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.029391,0.000735,-0.006248,0.249922,0,0);}
.m72_c00085{transform:matrix(0.048795,0.001220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.048795,0.001220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.048795,0.001220,-0.006248,0.249922,0,0);}
.m66_c00085{transform:matrix(0.069999,0.004279,-0.015252,0.249534,0,0);-ms-transform:matrix(0.069999,0.004279,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.069999,0.004279,-0.015252,0.249534,0,0);}
.m6b_c00085{transform:matrix(0.082147,0.005021,-0.015252,0.249534,0,0);-ms-transform:matrix(0.082147,0.005021,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.082147,0.005021,-0.015252,0.249534,0,0);}
.m56_c00085{transform:matrix(0.095587,0.005842,-0.015252,0.249534,0,0);-ms-transform:matrix(0.095587,0.005842,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.095587,0.005842,-0.015252,0.249534,0,0);}
.m6_c00085{transform:matrix(0.131608,0.007385,-0.014006,0.249607,0,0);-ms-transform:matrix(0.131608,0.007385,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.131608,0.007385,-0.014006,0.249607,0,0);}
.m13_c00085{transform:matrix(0.137444,0.007712,-0.014006,0.249607,0,0);-ms-transform:matrix(0.137444,0.007712,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.137444,0.007712,-0.014006,0.249607,0,0);}
.m58_c00085{transform:matrix(0.138377,0.008458,-0.015252,0.249534,0,0);-ms-transform:matrix(0.138377,0.008458,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.138377,0.008458,-0.015252,0.249534,0,0);}
.m19_c00085{transform:matrix(0.141877,0.007961,-0.014006,0.249607,0,0);-ms-transform:matrix(0.141877,0.007961,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.141877,0.007961,-0.014006,0.249607,0,0);}
.m0_c00085{transform:matrix(0.144613,0.008115,-0.014006,0.249607,0,0);-ms-transform:matrix(0.144613,0.008115,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.144613,0.008115,-0.014006,0.249607,0,0);}
.m7e_c00085{transform:matrix(0.149033,0.003726,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149033,0.003726,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149033,0.003726,-0.006248,0.249922,0,0);}
.m2b_c00085{transform:matrix(0.149560,0.008392,-0.014006,0.249607,0,0);-ms-transform:matrix(0.149560,0.008392,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.149560,0.008392,-0.014006,0.249607,0,0);}
.m1b_c00085{transform:matrix(0.154257,0.008656,-0.014006,0.249607,0,0);-ms-transform:matrix(0.154257,0.008656,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.154257,0.008656,-0.014006,0.249607,0,0);}
.m1f_c00085{transform:matrix(0.154557,0.008673,-0.014006,0.249607,0,0);-ms-transform:matrix(0.154557,0.008673,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.154557,0.008673,-0.014006,0.249607,0,0);}
.m22_c00085{transform:matrix(0.154712,0.008681,-0.014006,0.249607,0,0);-ms-transform:matrix(0.154712,0.008681,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.154712,0.008681,-0.014006,0.249607,0,0);}
.m8c_c00085{transform:matrix(0.155026,0.009786,-0.015750,0.249503,0,0);-ms-transform:matrix(0.155026,0.009786,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.155026,0.009786,-0.015750,0.249503,0,0);}
.m92_c00085{transform:matrix(0.157926,0.009969,-0.015750,0.249503,0,0);-ms-transform:matrix(0.157926,0.009969,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.157926,0.009969,-0.015750,0.249503,0,0);}
.m24_c00085{transform:matrix(0.159170,0.008931,-0.014006,0.249607,0,0);-ms-transform:matrix(0.159170,0.008931,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.159170,0.008931,-0.014006,0.249607,0,0);}
.m67_c00085{transform:matrix(0.159622,0.009756,-0.015252,0.249534,0,0);-ms-transform:matrix(0.159622,0.009756,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.159622,0.009756,-0.015252,0.249534,0,0);}
.m8b_c00085{transform:matrix(0.160206,0.010113,-0.015750,0.249503,0,0);-ms-transform:matrix(0.160206,0.010113,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.160206,0.010113,-0.015750,0.249503,0,0);}
.m5d_c00085{transform:matrix(0.161873,0.009894,-0.015252,0.249534,0,0);-ms-transform:matrix(0.161873,0.009894,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.161873,0.009894,-0.015252,0.249534,0,0);}
.m88_c00085{transform:matrix(0.162227,0.010241,-0.015750,0.249503,0,0);-ms-transform:matrix(0.162227,0.010241,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.162227,0.010241,-0.015750,0.249503,0,0);}
.m21_c00085{transform:matrix(0.162709,0.009130,-0.014006,0.249607,0,0);-ms-transform:matrix(0.162709,0.009130,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.162709,0.009130,-0.014006,0.249607,0,0);}
.m42_c00085{transform:matrix(0.163688,0.009349,-0.014255,0.249593,0,0);-ms-transform:matrix(0.163688,0.009349,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.163688,0.009349,-0.014255,0.249593,0,0);}
.m26_c00085{transform:matrix(0.163812,0.009192,-0.014006,0.249607,0,0);-ms-transform:matrix(0.163812,0.009192,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.163812,0.009192,-0.014006,0.249607,0,0);}
.m14_c00085{transform:matrix(0.164017,0.009203,-0.014006,0.249607,0,0);-ms-transform:matrix(0.164017,0.009203,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.164017,0.009203,-0.014006,0.249607,0,0);}
.me_c00085{transform:matrix(0.164451,0.009228,-0.014006,0.249607,0,0);-ms-transform:matrix(0.164451,0.009228,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.164451,0.009228,-0.014006,0.249607,0,0);}
.m1a_c00085{transform:matrix(0.165015,0.009259,-0.014006,0.249607,0,0);-ms-transform:matrix(0.165015,0.009259,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.165015,0.009259,-0.014006,0.249607,0,0);}
.m2_c00085{transform:matrix(0.165190,0.009269,-0.014006,0.249607,0,0);-ms-transform:matrix(0.165190,0.009269,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.165190,0.009269,-0.014006,0.249607,0,0);}
.m23_c00085{transform:matrix(0.165629,0.009294,-0.014006,0.249607,0,0);-ms-transform:matrix(0.165629,0.009294,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.165629,0.009294,-0.014006,0.249607,0,0);}
.m93_c00085{transform:matrix(0.165815,0.010467,-0.015750,0.249503,0,0);-ms-transform:matrix(0.165815,0.010467,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.165815,0.010467,-0.015750,0.249503,0,0);}
.m8a_c00085{transform:matrix(0.165975,0.010477,-0.015750,0.249503,0,0);-ms-transform:matrix(0.165975,0.010477,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.165975,0.010477,-0.015750,0.249503,0,0);}
.m90_c00085{transform:matrix(0.166179,0.010490,-0.015750,0.249503,0,0);-ms-transform:matrix(0.166179,0.010490,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.166179,0.010490,-0.015750,0.249503,0,0);}
.m48_c00085{transform:matrix(0.169000,0.009652,-0.014255,0.249593,0,0);-ms-transform:matrix(0.169000,0.009652,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.169000,0.009652,-0.014255,0.249593,0,0);}
.m17_c00085{transform:matrix(0.169064,0.009487,-0.014006,0.249607,0,0);-ms-transform:matrix(0.169064,0.009487,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.169064,0.009487,-0.014006,0.249607,0,0);}
.m38_c00085{transform:matrix(0.169170,0.006096,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169170,0.006096,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169170,0.006096,-0.009003,0.249838,0,0);}
.md_c00085{transform:matrix(0.169389,0.009505,-0.014006,0.249607,0,0);-ms-transform:matrix(0.169389,0.009505,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.169389,0.009505,-0.014006,0.249607,0,0);}
.m60_c00085{transform:matrix(0.169863,0.010382,-0.015252,0.249534,0,0);-ms-transform:matrix(0.169863,0.010382,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.169863,0.010382,-0.015252,0.249534,0,0);}
.mb_c00085{transform:matrix(0.170297,0.009556,-0.014006,0.249607,0,0);-ms-transform:matrix(0.170297,0.009556,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.170297,0.009556,-0.014006,0.249607,0,0);}
.m18_c00085{transform:matrix(0.170572,0.009571,-0.014006,0.249607,0,0);-ms-transform:matrix(0.170572,0.009571,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.170572,0.009571,-0.014006,0.249607,0,0);}
.m4b_c00085{transform:matrix(0.170991,0.009766,-0.014255,0.249593,0,0);-ms-transform:matrix(0.170991,0.009766,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.170991,0.009766,-0.014255,0.249593,0,0);}
.m8d_c00085{transform:matrix(0.171364,0.010818,-0.015750,0.249503,0,0);-ms-transform:matrix(0.171364,0.010818,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.171364,0.010818,-0.015750,0.249503,0,0);}
.m33_c00085{transform:matrix(0.171514,0.006181,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171514,0.006181,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171514,0.006181,-0.009003,0.249838,0,0);}
.m78_c00085{transform:matrix(0.172396,0.004310,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172396,0.004310,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172396,0.004310,-0.006248,0.249922,0,0);}
.m4f_c00085{transform:matrix(0.172694,0.009863,-0.014255,0.249593,0,0);-ms-transform:matrix(0.172694,0.009863,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.172694,0.009863,-0.014255,0.249593,0,0);}
.m15_c00085{transform:matrix(0.173058,0.009711,-0.014006,0.249607,0,0);-ms-transform:matrix(0.173058,0.009711,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.173058,0.009711,-0.014006,0.249607,0,0);}
.m2d_c00085{transform:matrix(0.173567,0.009739,-0.014006,0.249607,0,0);-ms-transform:matrix(0.173567,0.009739,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.173567,0.009739,-0.014006,0.249607,0,0);}
.m94_c00085{transform:matrix(0.174208,0.010997,-0.015750,0.249503,0,0);-ms-transform:matrix(0.174208,0.010997,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.174208,0.010997,-0.015750,0.249503,0,0);}
.m5b_c00085{transform:matrix(0.174644,0.010675,-0.015252,0.249534,0,0);-ms-transform:matrix(0.174644,0.010675,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.174644,0.010675,-0.015252,0.249534,0,0);}
.m3_c00085{transform:matrix(0.175793,0.009864,-0.014006,0.249607,0,0);-ms-transform:matrix(0.175793,0.009864,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.175793,0.009864,-0.014006,0.249607,0,0);}
.m7_c00085{transform:matrix(0.175803,0.009865,-0.014006,0.249607,0,0);-ms-transform:matrix(0.175803,0.009865,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.175803,0.009865,-0.014006,0.249607,0,0);}
.m1c_c00085{transform:matrix(0.176328,0.009894,-0.014006,0.249607,0,0);-ms-transform:matrix(0.176328,0.009894,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.176328,0.009894,-0.014006,0.249607,0,0);}
.m3b_c00085{transform:matrix(0.176830,0.006372,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176830,0.006372,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176830,0.006372,-0.009003,0.249838,0,0);}
.m61_c00085{transform:matrix(0.176870,0.010811,-0.015252,0.249534,0,0);-ms-transform:matrix(0.176870,0.010811,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.176870,0.010811,-0.015252,0.249534,0,0);}
.m84_c00085{transform:matrix(0.177130,0.004428,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177130,0.004428,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177130,0.004428,-0.006248,0.249922,0,0);}
.m28_c00085{transform:matrix(0.177830,0.009978,-0.014006,0.249607,0,0);-ms-transform:matrix(0.177830,0.009978,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.177830,0.009978,-0.014006,0.249607,0,0);}
.m9a_c00085{transform:matrix(0.178545,0.011271,-0.015750,0.249503,0,0);-ms-transform:matrix(0.178545,0.011271,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.178545,0.011271,-0.015750,0.249503,0,0);}
.m5a_c00085{transform:matrix(0.178547,0.010913,-0.015252,0.249534,0,0);-ms-transform:matrix(0.178547,0.010913,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.178547,0.010913,-0.015252,0.249534,0,0);}
.m74_c00085{transform:matrix(0.179334,0.004483,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179334,0.004483,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179334,0.004483,-0.006248,0.249922,0,0);}
.m36_c00085{transform:matrix(0.179513,0.006469,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179513,0.006469,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179513,0.006469,-0.009003,0.249838,0,0);}
.m4_c00085{transform:matrix(0.180511,0.010129,-0.014006,0.249607,0,0);-ms-transform:matrix(0.180511,0.010129,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.180511,0.010129,-0.014006,0.249607,0,0);}
.m5c_c00085{transform:matrix(0.180798,0.011051,-0.015252,0.249534,0,0);-ms-transform:matrix(0.180798,0.011051,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.180798,0.011051,-0.015252,0.249534,0,0);}
.m1d_c00085{transform:matrix(0.180920,0.010152,-0.014006,0.249607,0,0);-ms-transform:matrix(0.180920,0.010152,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.180920,0.010152,-0.014006,0.249607,0,0);}
.m1e_c00085{transform:matrix(0.181490,0.010184,-0.014006,0.249607,0,0);-ms-transform:matrix(0.181490,0.010184,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.181490,0.010184,-0.014006,0.249607,0,0);}
.m16_c00085{transform:matrix(0.181624,0.010191,-0.014006,0.249607,0,0);-ms-transform:matrix(0.181624,0.010191,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.181624,0.010191,-0.014006,0.249607,0,0);}
.m9_c00085{transform:matrix(0.181634,0.010192,-0.014006,0.249607,0,0);-ms-transform:matrix(0.181634,0.010192,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.181634,0.010192,-0.014006,0.249607,0,0);}
.m68_c00085{transform:matrix(0.182909,0.011180,-0.015252,0.249534,0,0);-ms-transform:matrix(0.182909,0.011180,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.182909,0.011180,-0.015252,0.249534,0,0);}
.m9b_c00085{transform:matrix(0.183275,0.011569,-0.015750,0.249503,0,0);-ms-transform:matrix(0.183275,0.011569,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.183275,0.011569,-0.015750,0.249503,0,0);}
.m91_c00085{transform:matrix(0.183644,0.011593,-0.015750,0.249503,0,0);-ms-transform:matrix(0.183644,0.011593,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.183644,0.011593,-0.015750,0.249503,0,0);}
.m80_c00085{transform:matrix(0.183728,0.004593,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183728,0.004593,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183728,0.004593,-0.006248,0.249922,0,0);}
.m89_c00085{transform:matrix(0.184014,0.011616,-0.015750,0.249503,0,0);-ms-transform:matrix(0.184014,0.011616,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.184014,0.011616,-0.015750,0.249503,0,0);}
.m79_c00085{transform:matrix(0.184272,0.004607,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184272,0.004607,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184272,0.004607,-0.006248,0.249922,0,0);}
.m31_c00085{transform:matrix(0.184530,0.010354,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184530,0.010354,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184530,0.010354,-0.014006,0.249607,0,0);}
.m82_c00085{transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);}
.m32_c00085{transform:matrix(0.184890,0.006663,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184890,0.006663,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184890,0.006663,-0.009003,0.249838,0,0);}
.m8e_c00085{transform:matrix(0.185117,0.011686,-0.015750,0.249503,0,0);-ms-transform:matrix(0.185117,0.011686,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.185117,0.011686,-0.015750,0.249503,0,0);}
.m10_c00085{transform:matrix(0.187620,0.010528,-0.014006,0.249607,0,0);-ms-transform:matrix(0.187620,0.010528,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.187620,0.010528,-0.014006,0.249607,0,0);}
.m83_c00085{transform:matrix(0.187901,0.004698,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187901,0.004698,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187901,0.004698,-0.006248,0.249922,0,0);}
.m49_c00085{transform:matrix(0.188603,0.010772,-0.014255,0.249593,0,0);-ms-transform:matrix(0.188603,0.010772,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.188603,0.010772,-0.014255,0.249593,0,0);}
.m4d_c00085{transform:matrix(0.188892,0.010788,-0.014255,0.249593,0,0);-ms-transform:matrix(0.188892,0.010788,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.188892,0.010788,-0.014255,0.249593,0,0);}
.m8f_c00085{transform:matrix(0.189059,0.011935,-0.015750,0.249503,0,0);-ms-transform:matrix(0.189059,0.011935,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.189059,0.011935,-0.015750,0.249503,0,0);}
.m11_c00085{transform:matrix(0.189951,0.010659,-0.014006,0.249607,0,0);-ms-transform:matrix(0.189951,0.010659,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.189951,0.010659,-0.014006,0.249607,0,0);}
.m7d_c00085{transform:matrix(0.190141,0.004754,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190141,0.004754,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190141,0.004754,-0.006248,0.249922,0,0);}
.m6d_c00085{transform:matrix(0.190220,0.011627,-0.015252,0.249534,0,0);-ms-transform:matrix(0.190220,0.011627,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.190220,0.011627,-0.015252,0.249534,0,0);}
.m65_c00085{transform:matrix(0.190260,0.011629,-0.015252,0.249534,0,0);-ms-transform:matrix(0.190260,0.011629,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.190260,0.011629,-0.015252,0.249534,0,0);}
.m25_c00085{transform:matrix(0.191129,0.010725,-0.014006,0.249607,0,0);-ms-transform:matrix(0.191129,0.010725,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.191129,0.010725,-0.014006,0.249607,0,0);}
.m51_c00085{transform:matrix(0.191453,0.010935,-0.014255,0.249593,0,0);-ms-transform:matrix(0.191453,0.010935,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.191453,0.010935,-0.014255,0.249593,0,0);}
.m85_c00085{transform:matrix(0.191510,0.004788,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191510,0.004788,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191510,0.004788,-0.006248,0.249922,0,0);}
.m50_c00085{transform:matrix(0.193060,0.011026,-0.014255,0.249593,0,0);-ms-transform:matrix(0.193060,0.011026,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.193060,0.011026,-0.014255,0.249593,0,0);}
.m81_c00085{transform:matrix(0.193130,0.004828,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193130,0.004828,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193130,0.004828,-0.006248,0.249922,0,0);}
.m8_c00085{transform:matrix(0.193800,0.010875,-0.014006,0.249607,0,0);-ms-transform:matrix(0.193800,0.010875,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.193800,0.010875,-0.014006,0.249607,0,0);}
.m96_c00085{transform:matrix(0.194238,0.012262,-0.015750,0.249503,0,0);-ms-transform:matrix(0.194238,0.012262,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.194238,0.012262,-0.015750,0.249503,0,0);}
.m70_c00085{transform:matrix(0.194702,0.011901,-0.015252,0.249534,0,0);-ms-transform:matrix(0.194702,0.011901,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.194702,0.011901,-0.015252,0.249534,0,0);}
.m12_c00085{transform:matrix(0.194988,0.010941,-0.014006,0.249607,0,0);-ms-transform:matrix(0.194988,0.010941,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.194988,0.010941,-0.014006,0.249607,0,0);}
.m20_c00085{transform:matrix(0.195473,0.010968,-0.014006,0.249607,0,0);-ms-transform:matrix(0.195473,0.010968,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.195473,0.010968,-0.014006,0.249607,0,0);}
.m2f_c00085{transform:matrix(0.196231,0.011011,-0.014006,0.249607,0,0);-ms-transform:matrix(0.196231,0.011011,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.196231,0.011011,-0.014006,0.249607,0,0);}
.m59_c00085{transform:matrix(0.196403,0.012005,-0.015252,0.249534,0,0);-ms-transform:matrix(0.196403,0.012005,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.196403,0.012005,-0.015252,0.249534,0,0);}
.m39_c00085{transform:matrix(0.197107,0.007103,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197107,0.007103,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197107,0.007103,-0.009003,0.249838,0,0);}
.ma_c00085{transform:matrix(0.198153,0.011119,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198153,0.011119,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198153,0.011119,-0.014006,0.249607,0,0);}
.m75_c00085{transform:matrix(0.198263,0.004957,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198263,0.004957,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198263,0.004957,-0.006248,0.249922,0,0);}
.m44_c00085{transform:matrix(0.198327,0.011327,-0.014255,0.249593,0,0);-ms-transform:matrix(0.198327,0.011327,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.198327,0.011327,-0.014255,0.249593,0,0);}
.m2c_c00085{transform:matrix(0.198827,0.011157,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198827,0.011157,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198827,0.011157,-0.014006,0.249607,0,0);}
.m45_c00085{transform:matrix(0.199061,0.011369,-0.014255,0.249593,0,0);-ms-transform:matrix(0.199061,0.011369,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.199061,0.011369,-0.014255,0.249593,0,0);}
.m29_c00085{transform:matrix(0.199386,0.011188,-0.014006,0.249607,0,0);-ms-transform:matrix(0.199386,0.011188,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.199386,0.011188,-0.014006,0.249607,0,0);}
.m27_c00085{transform:matrix(0.199431,0.011191,-0.014006,0.249607,0,0);-ms-transform:matrix(0.199431,0.011191,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.199431,0.011191,-0.014006,0.249607,0,0);}
.mf_c00085{transform:matrix(0.199861,0.011215,-0.014006,0.249607,0,0);-ms-transform:matrix(0.199861,0.011215,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.199861,0.011215,-0.014006,0.249607,0,0);}
.m5e_c00085{transform:matrix(0.201190,0.012297,-0.015252,0.249534,0,0);-ms-transform:matrix(0.201190,0.012297,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.201190,0.012297,-0.015252,0.249534,0,0);}
.m3e_c00085{transform:matrix(0.201586,0.011513,-0.014255,0.249593,0,0);-ms-transform:matrix(0.201586,0.011513,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.201586,0.011513,-0.014255,0.249593,0,0);}
.m73_c00085{transform:matrix(0.202287,0.005057,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202287,0.005057,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202287,0.005057,-0.006248,0.249922,0,0);}
.m53_c00085{transform:matrix(0.202645,0.011574,-0.014255,0.249593,0,0);-ms-transform:matrix(0.202645,0.011574,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.202645,0.011574,-0.014255,0.249593,0,0);}
.m97_c00085{transform:matrix(0.205501,0.012973,-0.015750,0.249503,0,0);-ms-transform:matrix(0.205501,0.012973,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.205501,0.012973,-0.015750,0.249503,0,0);}
.m4a_c00085{transform:matrix(0.205775,0.011753,-0.014255,0.249593,0,0);-ms-transform:matrix(0.205775,0.011753,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.205775,0.011753,-0.014255,0.249593,0,0);}
.m52_c00085{transform:matrix(0.206598,0.011800,-0.014255,0.249593,0,0);-ms-transform:matrix(0.206598,0.011800,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.206598,0.011800,-0.014255,0.249593,0,0);}
.m87_c00085{transform:matrix(0.206818,0.013056,-0.015750,0.249503,0,0);-ms-transform:matrix(0.206818,0.013056,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.206818,0.013056,-0.015750,0.249503,0,0);}
.m7c_c00085{transform:matrix(0.207020,0.005176,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207020,0.005176,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207020,0.005176,-0.006248,0.249922,0,0);}
.m4e_c00085{transform:matrix(0.207182,0.011833,-0.014255,0.249593,0,0);-ms-transform:matrix(0.207182,0.011833,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.207182,0.011833,-0.014255,0.249593,0,0);}
.m2e_c00085{transform:matrix(0.211298,0.011856,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211298,0.011856,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211298,0.011856,-0.014006,0.249607,0,0);}
.m3f_c00085{transform:matrix(0.212993,0.012165,-0.014255,0.249593,0,0);-ms-transform:matrix(0.212993,0.012165,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.212993,0.012165,-0.014255,0.249593,0,0);}
.m4c_c00085{transform:matrix(0.213682,0.012204,-0.014255,0.249593,0,0);-ms-transform:matrix(0.213682,0.012204,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.213682,0.012204,-0.014255,0.249593,0,0);}
.m77_c00085{transform:matrix(0.214103,0.005353,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214103,0.005353,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214103,0.005353,-0.006248,0.249922,0,0);}
.m2a_c00085{transform:matrix(0.214887,0.012058,-0.014006,0.249607,0,0);-ms-transform:matrix(0.214887,0.012058,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.214887,0.012058,-0.014006,0.249607,0,0);}
.m98_c00085{transform:matrix(0.215606,0.013610,-0.015750,0.249503,0,0);-ms-transform:matrix(0.215606,0.013610,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.215606,0.013610,-0.015750,0.249503,0,0);}
.m5f_c00085{transform:matrix(0.215767,0.013188,-0.015252,0.249534,0,0);-ms-transform:matrix(0.215767,0.013188,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.215767,0.013188,-0.015252,0.249534,0,0);}
.m76_c00085{transform:matrix(0.216197,0.005405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216197,0.005405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216197,0.005405,-0.006248,0.249922,0,0);}
.m95_c00085{transform:matrix(0.216878,0.013691,-0.015750,0.249503,0,0);-ms-transform:matrix(0.216878,0.013691,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.216878,0.013691,-0.015750,0.249503,0,0);}
.m63_c00085{transform:matrix(0.217025,0.013265,-0.015252,0.249534,0,0);-ms-transform:matrix(0.217025,0.013265,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.217025,0.013265,-0.015252,0.249534,0,0);}
.m41_c00085{transform:matrix(0.218953,0.012505,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218953,0.012505,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218953,0.012505,-0.014255,0.249593,0,0);}
.m46_c00085{transform:matrix(0.218978,0.012507,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218978,0.012507,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218978,0.012507,-0.014255,0.249593,0,0);}
.m57_c00085{transform:matrix(0.219490,0.013416,-0.015252,0.249534,0,0);-ms-transform:matrix(0.219490,0.013416,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.219490,0.013416,-0.015252,0.249534,0,0);}
.m69_c00085{transform:matrix(0.219580,0.013421,-0.015252,0.249534,0,0);-ms-transform:matrix(0.219580,0.013421,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.219580,0.013421,-0.015252,0.249534,0,0);}
.m6a_c00085{transform:matrix(0.220693,0.013489,-0.015252,0.249534,0,0);-ms-transform:matrix(0.220693,0.013489,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.220693,0.013489,-0.015252,0.249534,0,0);}
.m99_c00085{transform:matrix(0.220805,0.013939,-0.015750,0.249503,0,0);-ms-transform:matrix(0.220805,0.013939,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.220805,0.013939,-0.015750,0.249503,0,0);}
.m47_c00085{transform:matrix(0.222383,0.012701,-0.014255,0.249593,0,0);-ms-transform:matrix(0.222383,0.012701,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.222383,0.012701,-0.014255,0.249593,0,0);}
.m7f_c00085{transform:matrix(0.223785,0.005595,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223785,0.005595,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223785,0.005595,-0.006248,0.249922,0,0);}
.m30_c00085{transform:matrix(0.227073,0.012742,-0.014006,0.249607,0,0);-ms-transform:matrix(0.227073,0.012742,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.227073,0.012742,-0.014006,0.249607,0,0);}
.m6f_c00085{transform:matrix(0.228499,0.013966,-0.015252,0.249534,0,0);-ms-transform:matrix(0.228499,0.013966,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.228499,0.013966,-0.015252,0.249534,0,0);}
.m55_c00085{transform:matrix(0.228677,0.013061,-0.014255,0.249593,0,0);-ms-transform:matrix(0.228677,0.013061,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.228677,0.013061,-0.014255,0.249593,0,0);}
.m3a_c00085{transform:matrix(0.233988,0.008432,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233988,0.008432,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233988,0.008432,-0.009003,0.249838,0,0);}
.mc_c00085{transform:matrix(0.235480,0.013213,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235480,0.013213,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235480,0.013213,-0.014006,0.249607,0,0);}
.m64_c00085{transform:matrix(0.236159,0.014435,-0.015252,0.249534,0,0);-ms-transform:matrix(0.236159,0.014435,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.236159,0.014435,-0.015252,0.249534,0,0);}
.m6e_c00085{transform:matrix(0.240621,0.014707,-0.015252,0.249534,0,0);-ms-transform:matrix(0.240621,0.014707,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.240621,0.014707,-0.015252,0.249534,0,0);}
.m7b_c00085{transform:matrix(0.244134,0.006103,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244134,0.006103,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244134,0.006103,-0.006248,0.249922,0,0);}
.m54_c00085{transform:matrix(0.244541,0.013967,-0.014255,0.249593,0,0);-ms-transform:matrix(0.244541,0.013967,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.244541,0.013967,-0.014255,0.249593,0,0);}
.m40_c00085{transform:matrix(0.247487,0.014135,-0.014255,0.249593,0,0);-ms-transform:matrix(0.247487,0.014135,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.247487,0.014135,-0.014255,0.249593,0,0);}
.m43_c00085{transform:matrix(0.250033,0.014280,-0.014255,0.249593,0,0);-ms-transform:matrix(0.250033,0.014280,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.250033,0.014280,-0.014255,0.249593,0,0);}
.m6c_c00085{transform:matrix(0.251546,0.015375,-0.015252,0.249534,0,0);-ms-transform:matrix(0.251546,0.015375,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.251546,0.015375,-0.015252,0.249534,0,0);}
.m62_c00085{transform:matrix(0.262266,0.016030,-0.015252,0.249534,0,0);-ms-transform:matrix(0.262266,0.016030,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.262266,0.016030,-0.015252,0.249534,0,0);}
.m3c_c00085{transform:matrix(0.263379,0.009491,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263379,0.009491,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263379,0.009491,-0.009003,0.249838,0,0);}
.m35_c00085{transform:matrix(0.266242,0.009594,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266242,0.009594,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266242,0.009594,-0.009003,0.249838,0,0);}
.m34_c00085{transform:matrix(0.268261,0.009667,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268261,0.009667,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268261,0.009667,-0.009003,0.249838,0,0);}
.m7a_c00085{transform:matrix(0.291039,0.007276,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291039,0.007276,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291039,0.007276,-0.006248,0.249922,0,0);}
.m37_c00085{transform:matrix(0.306696,0.011052,-0.009003,0.249838,0,0);-ms-transform:matrix(0.306696,0.011052,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.306696,0.011052,-0.009003,0.249838,0,0);}
.m5_c00085{transform:matrix(0.346750,0.019457,-0.014006,0.249607,0,0);-ms-transform:matrix(0.346750,0.019457,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.346750,0.019457,-0.014006,0.249607,0,0);}
.m86_c00085{transform:matrix(0.490703,0.030976,-0.015750,0.249503,0,0);-ms-transform:matrix(0.490703,0.030976,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.490703,0.030976,-0.015750,0.249503,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
.fc0_c00085{color:transparent;}
.fse_c00085{font-size:54.592492px;}
.fs12_c00085{font-size:56.717716px;}
.fsd_c00085{font-size:57.742059px;}
.fs7_c00085{font-size:58.779328px;}
.fsf_c00085{font-size:58.818372px;}
.fs5_c00085{font-size:59.824259px;}
.fs8_c00085{font-size:60.877250px;}
.fsa_c00085{font-size:61.926857px;}
.fs11_c00085{font-size:61.969356px;}
.fs9_c00085{font-size:62.976465px;}
.fs16_c00085{font-size:62.999149px;}
.fs4_c00085{font-size:64.022453px;}
.fsb_c00085{font-size:65.075681px;}
.fs10_c00085{font-size:65.120341px;}
.fs6_c00085{font-size:66.126744px;}
.fs14_c00085{font-size:66.149107px;}
.fs13_c00085{font-size:66.170669px;}
.fsc_c00085{font-size:68.240615px;}
.fs15_c00085{font-size:68.249079px;}
.fs2_c00085{font-size:69.270195px;}
.fs3_c00085{font-size:72.418840px;}
.fs1_c00085{font-size:73.468388px;}
.fs0_c00085{font-size:81.864775px;}
.y0_c00085{bottom:0.000000px;}
.y9c_c00085{bottom:30.418692px;}
.y9b_c00085{bottom:31.959420px;}
.y9a_c00085{bottom:32.778452px;}
.y99_c00085{bottom:37.749719px;}
.y98_c00085{bottom:41.710591px;}
.y97_c00085{bottom:43.498342px;}
.y96_c00085{bottom:44.900156px;}
.y94_c00085{bottom:46.671363px;}
.y95_c00085{bottom:47.026500px;}
.y93_c00085{bottom:48.134943px;}
.y92_c00085{bottom:50.646174px;}
.y91_c00085{bottom:51.948552px;}
.y90_c00085{bottom:52.761604px;}
.y8f_c00085{bottom:56.282970px;}
.y8e_c00085{bottom:59.516534px;}
.y8d_c00085{bottom:60.513264px;}
.y8c_c00085{bottom:62.089189px;}
.y8b_c00085{bottom:63.777918px;}
.y8a_c00085{bottom:65.958285px;}
.y89_c00085{bottom:67.545602px;}
.y88_c00085{bottom:69.146620px;}
.y87_c00085{bottom:72.655500px;}
.y86_c00085{bottom:83.388675px;}
.y85_c00085{bottom:85.046512px;}
.y84_c00085{bottom:90.735862px;}
.y82_c00085{bottom:98.803387px;}
.y83_c00085{bottom:98.803725px;}
.y81_c00085{bottom:114.739987px;}
.y7f_c00085{bottom:114.740250px;}
.y80_c00085{bottom:114.740325px;}
.y7e_c00085{bottom:139.359750px;}
.y7d_c00085{bottom:139.823100px;}
.y7c_c00085{bottom:142.762012px;}
.y7b_c00085{bottom:143.535037px;}
.y7a_c00085{bottom:145.512113px;}
.y79_c00085{bottom:146.100075px;}
.y78_c00085{bottom:147.430500px;}
.y77_c00085{bottom:150.196763px;}
.y76_c00085{bottom:151.380675px;}
.y75_c00085{bottom:151.815900px;}
.y74_c00085{bottom:152.711850px;}
.y73_c00085{bottom:154.110000px;}
.y72_c00085{bottom:156.603000px;}
.y71_c00085{bottom:232.473427px;}
.y70_c00085{bottom:238.550198px;}
.y6f_c00085{bottom:241.591693px;}
.y6e_c00085{bottom:243.323328px;}
.y6d_c00085{bottom:247.000811px;}
.y6c_c00085{bottom:247.326644px;}
.y6b_c00085{bottom:252.319986px;}
.y6a_c00085{bottom:255.682703px;}
.y69_c00085{bottom:257.191080px;}
.y68_c00085{bottom:257.882545px;}
.y67_c00085{bottom:265.724004px;}
.y66_c00085{bottom:266.413065px;}
.y65_c00085{bottom:267.309752px;}
.y64_c00085{bottom:269.927552px;}
.y63_c00085{bottom:272.045432px;}
.y62_c00085{bottom:273.222306px;}
.y61_c00085{bottom:280.296788px;}
.y60_c00085{bottom:281.556810px;}
.y5f_c00085{bottom:283.550151px;}
.y5e_c00085{bottom:283.694762px;}
.y5d_c00085{bottom:285.064242px;}
.y5c_c00085{bottom:287.057844px;}
.y5b_c00085{bottom:289.702834px;}
.y5a_c00085{bottom:290.605025px;}
.y59_c00085{bottom:292.883741px;}
.y58_c00085{bottom:299.599017px;}
.y57_c00085{bottom:299.983500px;}
.y56_c00085{bottom:300.578208px;}
.y55_c00085{bottom:304.487283px;}
.y54_c00085{bottom:307.685994px;}
.y53_c00085{bottom:310.644455px;}
.y52_c00085{bottom:311.742896px;}
.y51_c00085{bottom:316.252725px;}
.y50_c00085{bottom:320.340831px;}
.y4f_c00085{bottom:321.576209px;}
.y4e_c00085{bottom:323.294246px;}
.y4d_c00085{bottom:324.691949px;}
.y4c_c00085{bottom:326.768069px;}
.y4b_c00085{bottom:335.051729px;}
.y4a_c00085{bottom:337.574593px;}
.y49_c00085{bottom:338.581175px;}
.y48_c00085{bottom:339.374973px;}
.y47_c00085{bottom:342.731653px;}
.y46_c00085{bottom:344.051744px;}
.y45_c00085{bottom:352.771050px;}
.y44_c00085{bottom:356.104364px;}
.y43_c00085{bottom:356.953682px;}
.y42_c00085{bottom:361.299969px;}
.y41_c00085{bottom:370.181670px;}
.y40_c00085{bottom:371.320445px;}
.y3f_c00085{bottom:373.983000px;}
.y3e_c00085{bottom:444.450673px;}
.y3d_c00085{bottom:445.262779px;}
.y3c_c00085{bottom:445.914195px;}
.y3b_c00085{bottom:449.226285px;}
.y3a_c00085{bottom:450.653532px;}
.y39_c00085{bottom:459.110634px;}
.y38_c00085{bottom:461.342400px;}
.y37_c00085{bottom:462.439680px;}
.y36_c00085{bottom:463.110360px;}
.y35_c00085{bottom:464.785602px;}
.y34_c00085{bottom:465.548784px;}
.y33_c00085{bottom:467.655000px;}
.y32_c00085{bottom:472.667196px;}
.y31_c00085{bottom:476.020503px;}
.y30_c00085{bottom:476.657340px;}
.y2f_c00085{bottom:481.321623px;}
.y2e_c00085{bottom:482.300172px;}
.y2d_c00085{bottom:484.996674px;}
.y2c_c00085{bottom:488.110269px;}
.y2b_c00085{bottom:492.818949px;}
.y2a_c00085{bottom:495.998847px;}
.y29_c00085{bottom:497.427288px;}
.y28_c00085{bottom:499.272435px;}
.y27_c00085{bottom:501.235563px;}
.y26_c00085{bottom:502.152264px;}
.y25_c00085{bottom:503.075097px;}
.y24_c00085{bottom:504.822312px;}
.y23_c00085{bottom:505.638870px;}
.y22_c00085{bottom:507.832122px;}
.y21_c00085{bottom:510.372033px;}
.y20_c00085{bottom:512.193396px;}
.y1f_c00085{bottom:516.282288px;}
.y1e_c00085{bottom:517.646451px;}
.y1d_c00085{bottom:521.217558px;}
.y1c_c00085{bottom:522.830997px;}
.y1b_c00085{bottom:524.034591px;}
.y1a_c00085{bottom:524.820528px;}
.y19_c00085{bottom:526.931577px;}
.y18_c00085{bottom:527.948385px;}
.y17_c00085{bottom:529.074126px;}
.y16_c00085{bottom:530.829258px;}
.y15_c00085{bottom:533.149101px;}
.y14_c00085{bottom:534.045231px;}
.y13_c00085{bottom:536.548752px;}
.y12_c00085{bottom:537.483666px;}
.y11_c00085{bottom:538.316277px;}
.y10_c00085{bottom:539.816391px;}
.yf_c00085{bottom:541.573074px;}
.ye_c00085{bottom:544.321482px;}
.yd_c00085{bottom:545.247906px;}
.yc_c00085{bottom:547.087353px;}
.yb_c00085{bottom:548.416800px;}
.ya_c00085{bottom:557.216556px;}
.y9_c00085{bottom:558.017040px;}
.y8_c00085{bottom:560.627040px;}
.y7_c00085{bottom:561.668610px;}
.y6_c00085{bottom:562.296987px;}
.y5_c00085{bottom:564.800613px;}
.y4_c00085{bottom:566.444337px;}
.y2_c00085{bottom:566.677404px;}
.y3_c00085{bottom:570.011205px;}
.y1_c00085{bottom:575.688000px;}
.h10_c00085{height:54.592492px;}
.h14_c00085{height:56.717716px;}
.hf_c00085{height:57.742059px;}
.h9_c00085{height:58.779328px;}
.h11_c00085{height:58.818372px;}
.h7_c00085{height:59.824259px;}
.ha_c00085{height:60.877250px;}
.hc_c00085{height:61.926857px;}
.h13_c00085{height:61.969356px;}
.hb_c00085{height:62.976465px;}
.h18_c00085{height:62.999149px;}
.h6_c00085{height:64.022453px;}
.hd_c00085{height:65.075681px;}
.h12_c00085{height:65.120341px;}
.h8_c00085{height:66.126744px;}
.h16_c00085{height:66.149107px;}
.h15_c00085{height:66.170669px;}
.he_c00085{height:68.240615px;}
.h17_c00085{height:68.249079px;}
.h4_c00085{height:69.270195px;}
.h5_c00085{height:72.418840px;}
.h3_c00085{height:73.468388px;}
.h2_c00085{height:81.864775px;}
.h1_c00085{height:612.000000px;}
.h0_c00085{height:612.300000px;}
.w0_c00085{width:361.500000px;}
.x0_c00085{left:0.000000px;}
.x4a_c00085{left:37.692000px;}
.x4d_c00085{left:39.023663px;}
.x3_c00085{left:42.805440px;}
.x40_c00085{left:44.058020px;}
.x3c_c00085{left:49.720500px;}
.x3d_c00085{left:56.010894px;}
.x20_c00085{left:60.005193px;}
.x1a_c00085{left:69.926976px;}
.xb_c00085{left:75.914376px;}
.x21_c00085{left:76.957656px;}
.x4e_c00085{left:78.131850px;}
.x2b_c00085{left:80.542239px;}
.x11_c00085{left:85.838712px;}
.x41_c00085{left:95.588925px;}
.x5a_c00085{left:99.171495px;}
.x12_c00085{left:101.541402px;}
.x47_c00085{left:107.048967px;}
.x4_c00085{left:108.727239px;}
.x57_c00085{left:110.641410px;}
.x48_c00085{left:111.765224px;}
.x22_c00085{left:113.228010px;}
.xc_c00085{left:122.960457px;}
.x25_c00085{left:123.974661px;}
.x37_c00085{left:125.226870px;}
.x5b_c00085{left:127.491741px;}
.x4b_c00085{left:137.412000px;}
.x5_c00085{left:139.091256px;}
.x13_c00085{left:142.161726px;}
.x38_c00085{left:145.169218px;}
.xd_c00085{left:146.643054px;}
.x1b_c00085{left:153.180792px;}
.x58_c00085{left:161.055660px;}
.x3e_c00085{left:165.877221px;}
.x2c_c00085{left:167.622801px;}
.x28_c00085{left:169.175760px;}
.x14_c00085{left:172.905432px;}
.x1_c00085{left:176.800500px;}
.x53_c00085{left:181.901925px;}
.x6_c00085{left:185.368734px;}
.x29_c00085{left:187.787130px;}
.x1c_c00085{left:190.270026px;}
.x15_c00085{left:192.619830px;}
.x7_c00085{left:196.968750px;}
.x39_c00085{left:198.835254px;}
.x3f_c00085{left:203.158509px;}
.x2d_c00085{left:206.112016px;}
.x42_c00085{left:207.669155px;}
.x16_c00085{left:210.419649px;}
.x8_c00085{left:216.226845px;}
.x2a_c00085{left:218.236650px;}
.x33_c00085{left:221.999865px;}
.x43_c00085{left:226.309008px;}
.x26_c00085{left:227.358195px;}
.x4c_c00085{left:229.176000px;}
.x23_c00085{left:232.466853px;}
.x49_c00085{left:234.043583px;}
.x54_c00085{left:240.128607px;}
.x1d_c00085{left:241.984674px;}
.x34_c00085{left:245.262306px;}
.x17_c00085{left:247.372491px;}
.x59_c00085{left:248.944942px;}
.x30_c00085{left:255.820567px;}
.x3a_c00085{left:256.865557px;}
.x44_c00085{left:259.852661px;}
.xe_c00085{left:261.855507px;}
.x9_c00085{left:264.453585px;}
.x55_c00085{left:265.490781px;}
.x31_c00085{left:269.060722px;}
.x35_c00085{left:273.844145px;}
.x51_c00085{left:275.200763px;}
.x4f_c00085{left:276.360263px;}
.xa_c00085{left:279.254607px;}
.x18_c00085{left:282.213234px;}
.x32_c00085{left:283.357664px;}
.x1e_c00085{left:286.638195px;}
.x2e_c00085{left:288.511077px;}
.x56_c00085{left:290.635890px;}
.x36_c00085{left:294.395946px;}
.x46_c00085{left:297.124115px;}
.xf_c00085{left:300.204684px;}
.x45_c00085{left:301.329498px;}
.x1f_c00085{left:303.277914px;}
.x5c_c00085{left:306.369768px;}
.x2f_c00085{left:308.449620px;}
.x19_c00085{left:310.458531px;}
.x27_c00085{left:315.810477px;}
.x52_c00085{left:317.873925px;}
.x24_c00085{left:319.486728px;}
.x10_c00085{left:321.492807px;}
.x50_c00085{left:326.246813px;}
.x3b_c00085{left:327.780497px;}
.x2_c00085{left:337.382193px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
.fse_c00085{font-size:48.526660pt;}
.fs12_c00085{font-size:50.415748pt;}
.fsd_c00085{font-size:51.326275pt;}
.fs7_c00085{font-size:52.248292pt;}
.fsf_c00085{font-size:52.282997pt;}
.fs5_c00085{font-size:53.177119pt;}
.fs8_c00085{font-size:54.113111pt;}
.fsa_c00085{font-size:55.046095pt;}
.fs11_c00085{font-size:55.083872pt;}
.fs9_c00085{font-size:55.979080pt;}
.fs16_c00085{font-size:55.999244pt;}
.fs4_c00085{font-size:56.908847pt;}
.fsb_c00085{font-size:57.845049pt;}
.fs10_c00085{font-size:57.884747pt;}
.fs6_c00085{font-size:58.779328pt;}
.fs14_c00085{font-size:58.799206pt;}
.fs13_c00085{font-size:58.818372pt;}
.fsc_c00085{font-size:60.658324pt;}
.fs15_c00085{font-size:60.665848pt;}
.fs2_c00085{font-size:61.573506pt;}
.fs3_c00085{font-size:64.372302pt;}
.fs1_c00085{font-size:65.305234pt;}
.fs0_c00085{font-size:72.768689pt;}
.y0_c00085{bottom:0.000000pt;}
.y9c_c00085{bottom:27.038837pt;}
.y9b_c00085{bottom:28.408373pt;}
.y9a_c00085{bottom:29.136401pt;}
.y99_c00085{bottom:33.555305pt;}
.y98_c00085{bottom:37.076081pt;}
.y97_c00085{bottom:38.665193pt;}
.y96_c00085{bottom:39.911249pt;}
.y94_c00085{bottom:41.485656pt;}
.y95_c00085{bottom:41.801333pt;}
.y93_c00085{bottom:42.786616pt;}
.y92_c00085{bottom:45.018821pt;}
.y91_c00085{bottom:46.176491pt;}
.y90_c00085{bottom:46.899204pt;}
.y8f_c00085{bottom:50.029307pt;}
.y8e_c00085{bottom:52.903585pt;}
.y8d_c00085{bottom:53.789568pt;}
.y8c_c00085{bottom:55.190391pt;}
.y8b_c00085{bottom:56.691483pt;}
.y8a_c00085{bottom:58.629587pt;}
.y89_c00085{bottom:60.040535pt;}
.y88_c00085{bottom:61.463663pt;}
.y87_c00085{bottom:64.582667pt;}
.y86_c00085{bottom:74.123267pt;}
.y85_c00085{bottom:75.596900pt;}
.y84_c00085{bottom:80.654100pt;}
.y82_c00085{bottom:87.825233pt;}
.y83_c00085{bottom:87.825533pt;}
.y81_c00085{bottom:101.991100pt;}
.y7f_c00085{bottom:101.991333pt;}
.y80_c00085{bottom:101.991400pt;}
.y7e_c00085{bottom:123.875333pt;}
.y7d_c00085{bottom:124.287200pt;}
.y7c_c00085{bottom:126.899567pt;}
.y7b_c00085{bottom:127.586700pt;}
.y7a_c00085{bottom:129.344100pt;}
.y79_c00085{bottom:129.866733pt;}
.y78_c00085{bottom:131.049333pt;}
.y77_c00085{bottom:133.508233pt;}
.y76_c00085{bottom:134.560600pt;}
.y75_c00085{bottom:134.947467pt;}
.y74_c00085{bottom:135.743867pt;}
.y73_c00085{bottom:136.986667pt;}
.y72_c00085{bottom:139.202667pt;}
.y71_c00085{bottom:206.643047pt;}
.y70_c00085{bottom:212.044620pt;}
.y6f_c00085{bottom:214.748172pt;}
.y6e_c00085{bottom:216.287403pt;}
.y6d_c00085{bottom:219.556276pt;}
.y6c_c00085{bottom:219.845905pt;}
.y6b_c00085{bottom:224.284432pt;}
.y6a_c00085{bottom:227.273513pt;}
.y69_c00085{bottom:228.614293pt;}
.y68_c00085{bottom:229.228929pt;}
.y67_c00085{bottom:236.199115pt;}
.y66_c00085{bottom:236.811613pt;}
.y65_c00085{bottom:237.608668pt;}
.y64_c00085{bottom:239.935601pt;}
.y63_c00085{bottom:241.818161pt;}
.y62_c00085{bottom:242.864272pt;}
.y61_c00085{bottom:249.152700pt;}
.y60_c00085{bottom:250.272720pt;}
.y5f_c00085{bottom:252.044579pt;}
.y5e_c00085{bottom:252.173121pt;}
.y5d_c00085{bottom:253.390437pt;}
.y5c_c00085{bottom:255.162528pt;}
.y5b_c00085{bottom:257.513631pt;}
.y5a_c00085{bottom:258.315577pt;}
.y59_c00085{bottom:260.341103pt;}
.y58_c00085{bottom:266.310237pt;}
.y57_c00085{bottom:266.652000pt;}
.y56_c00085{bottom:267.180629pt;}
.y55_c00085{bottom:270.655363pt;}
.y54_c00085{bottom:273.498661pt;}
.y53_c00085{bottom:276.128404pt;}
.y52_c00085{bottom:277.104796pt;}
.y51_c00085{bottom:281.113533pt;}
.y50_c00085{bottom:284.747405pt;}
.y4f_c00085{bottom:285.845519pt;}
.y4e_c00085{bottom:287.372663pt;}
.y4d_c00085{bottom:288.615065pt;}
.y4c_c00085{bottom:290.460505pt;}
.y4b_c00085{bottom:297.823759pt;}
.y4a_c00085{bottom:300.066305pt;}
.y49_c00085{bottom:300.961044pt;}
.y48_c00085{bottom:301.666643pt;}
.y47_c00085{bottom:304.650359pt;}
.y46_c00085{bottom:305.823772pt;}
.y45_c00085{bottom:313.574267pt;}
.y44_c00085{bottom:316.537212pt;}
.y43_c00085{bottom:317.292161pt;}
.y42_c00085{bottom:321.155528pt;}
.y41_c00085{bottom:329.050373pt;}
.y40_c00085{bottom:330.062617pt;}
.y3f_c00085{bottom:332.429333pt;}
.y3e_c00085{bottom:395.067265pt;}
.y3d_c00085{bottom:395.789137pt;}
.y3c_c00085{bottom:396.368173pt;}
.y3b_c00085{bottom:399.312253pt;}
.y3a_c00085{bottom:400.580917pt;}
.y39_c00085{bottom:408.098341pt;}
.y38_c00085{bottom:410.082133pt;}
.y37_c00085{bottom:411.057493pt;}
.y36_c00085{bottom:411.653653pt;}
.y35_c00085{bottom:413.142757pt;}
.y34_c00085{bottom:413.821141pt;}
.y33_c00085{bottom:415.693333pt;}
.y32_c00085{bottom:420.148619pt;}
.y31_c00085{bottom:423.129336pt;}
.y30_c00085{bottom:423.695413pt;}
.y2f_c00085{bottom:427.841443pt;}
.y2e_c00085{bottom:428.711264pt;}
.y2d_c00085{bottom:431.108155pt;}
.y2c_c00085{bottom:433.875795pt;}
.y2b_c00085{bottom:438.061288pt;}
.y2a_c00085{bottom:440.887864pt;}
.y29_c00085{bottom:442.157589pt;}
.y28_c00085{bottom:443.797720pt;}
.y27_c00085{bottom:445.542723pt;}
.y26_c00085{bottom:446.357568pt;}
.y25_c00085{bottom:447.177864pt;}
.y24_c00085{bottom:448.730944pt;}
.y23_c00085{bottom:449.456773pt;}
.y22_c00085{bottom:451.406331pt;}
.y21_c00085{bottom:453.664029pt;}
.y20_c00085{bottom:455.283019pt;}
.y1f_c00085{bottom:458.917589pt;}
.y1e_c00085{bottom:460.130179pt;}
.y1d_c00085{bottom:463.304496pt;}
.y1c_c00085{bottom:464.738664pt;}
.y1b_c00085{bottom:465.808525pt;}
.y1a_c00085{bottom:466.507136pt;}
.y19_c00085{bottom:468.383624pt;}
.y18_c00085{bottom:469.287453pt;}
.y17_c00085{bottom:470.288112pt;}
.y16_c00085{bottom:471.848229pt;}
.y15_c00085{bottom:473.910312pt;}
.y14_c00085{bottom:474.706872pt;}
.y13_c00085{bottom:476.932224pt;}
.y12_c00085{bottom:477.763259pt;}
.y11_c00085{bottom:478.503357pt;}
.y10_c00085{bottom:479.836792pt;}
.yf_c00085{bottom:481.398288pt;}
.ye_c00085{bottom:483.841317pt;}
.yd_c00085{bottom:484.664805pt;}
.yc_c00085{bottom:486.299869pt;}
.yb_c00085{bottom:487.481600pt;}
.ya_c00085{bottom:495.303605pt;}
.y9_c00085{bottom:496.015147pt;}
.y8_c00085{bottom:498.335147pt;}
.y7_c00085{bottom:499.260987pt;}
.y6_c00085{bottom:499.819544pt;}
.y5_c00085{bottom:502.044989pt;}
.y4_c00085{bottom:503.506077pt;}
.y2_c00085{bottom:503.713248pt;}
.y3_c00085{bottom:506.676627pt;}
.y1_c00085{bottom:511.722667pt;}
.h10_c00085{height:48.526660pt;}
.h14_c00085{height:50.415748pt;}
.hf_c00085{height:51.326275pt;}
.h9_c00085{height:52.248292pt;}
.h11_c00085{height:52.282997pt;}
.h7_c00085{height:53.177119pt;}
.ha_c00085{height:54.113111pt;}
.hc_c00085{height:55.046095pt;}
.h13_c00085{height:55.083872pt;}
.hb_c00085{height:55.979080pt;}
.h18_c00085{height:55.999244pt;}
.h6_c00085{height:56.908847pt;}
.hd_c00085{height:57.845049pt;}
.h12_c00085{height:57.884747pt;}
.h8_c00085{height:58.779328pt;}
.h16_c00085{height:58.799206pt;}
.h15_c00085{height:58.818372pt;}
.he_c00085{height:60.658324pt;}
.h17_c00085{height:60.665848pt;}
.h4_c00085{height:61.573506pt;}
.h5_c00085{height:64.372302pt;}
.h3_c00085{height:65.305234pt;}
.h2_c00085{height:72.768689pt;}
.h1_c00085{height:544.000000pt;}
.h0_c00085{height:544.266667pt;}
.w0_c00085{width:321.333333pt;}
.x0_c00085{left:0.000000pt;}
.x4a_c00085{left:33.504000pt;}
.x4d_c00085{left:34.687700pt;}
.x3_c00085{left:38.049280pt;}
.x40_c00085{left:39.162684pt;}
.x3c_c00085{left:44.196000pt;}
.x3d_c00085{left:49.787461pt;}
.x20_c00085{left:53.337949pt;}
.x1a_c00085{left:62.157312pt;}
.xb_c00085{left:67.479445pt;}
.x21_c00085{left:68.406805pt;}
.x4e_c00085{left:69.450533pt;}
.x2b_c00085{left:71.593101pt;}
.x11_c00085{left:76.301077pt;}
.x41_c00085{left:84.967933pt;}
.x5a_c00085{left:88.152440pt;}
.x12_c00085{left:90.259024pt;}
.x47_c00085{left:95.154637pt;}
.x4_c00085{left:96.646435pt;}
.x57_c00085{left:98.347920pt;}
.x48_c00085{left:99.346865pt;}
.x22_c00085{left:100.647120pt;}
.xc_c00085{left:109.298184pt;}
.x25_c00085{left:110.199699pt;}
.x37_c00085{left:111.312773pt;}
.x5b_c00085{left:113.325992pt;}
.x4b_c00085{left:122.144000pt;}
.x5_c00085{left:123.636672pt;}
.x13_c00085{left:126.365979pt;}
.x38_c00085{left:129.039305pt;}
.xd_c00085{left:130.349381pt;}
.x1b_c00085{left:136.160704pt;}
.x58_c00085{left:143.160587pt;}
.x3e_c00085{left:147.446419pt;}
.x2c_c00085{left:148.998045pt;}
.x28_c00085{left:150.378453pt;}
.x14_c00085{left:153.693717pt;}
.x1_c00085{left:157.156000pt;}
.x53_c00085{left:161.690600pt;}
.x6_c00085{left:164.772208pt;}
.x29_c00085{left:166.921893pt;}
.x1c_c00085{left:169.128912pt;}
.x15_c00085{left:171.217627pt;}
.x7_c00085{left:175.083333pt;}
.x39_c00085{left:176.742448pt;}
.x3f_c00085{left:180.585341pt;}
.x2d_c00085{left:183.210681pt;}
.x42_c00085{left:184.594804pt;}
.x16_c00085{left:187.039688pt;}
.x8_c00085{left:192.201640pt;}
.x2a_c00085{left:193.988133pt;}
.x33_c00085{left:197.333213pt;}
.x43_c00085{left:201.163563pt;}
.x26_c00085{left:202.096173pt;}
.x4c_c00085{left:203.712000pt;}
.x23_c00085{left:206.637203pt;}
.x49_c00085{left:208.038740pt;}
.x54_c00085{left:213.447651pt;}
.x1d_c00085{left:215.097488pt;}
.x34_c00085{left:218.010939pt;}
.x17_c00085{left:219.886659pt;}
.x59_c00085{left:221.284393pt;}
.x30_c00085{left:227.396060pt;}
.x3a_c00085{left:228.324940pt;}
.x44_c00085{left:230.980143pt;}
.xe_c00085{left:232.760451pt;}
.x9_c00085{left:235.069853pt;}
.x55_c00085{left:235.991805pt;}
.x31_c00085{left:239.165087pt;}
.x35_c00085{left:243.417017pt;}
.x51_c00085{left:244.622900pt;}
.x4f_c00085{left:245.653567pt;}
.xa_c00085{left:248.226317pt;}
.x18_c00085{left:250.856208pt;}
.x32_c00085{left:251.873479pt;}
.x1e_c00085{left:254.789507pt;}
.x2e_c00085{left:256.454291pt;}
.x56_c00085{left:258.343013pt;}
.x36_c00085{left:261.685285pt;}
.x46_c00085{left:264.110324pt;}
.xf_c00085{left:266.848608pt;}
.x45_c00085{left:267.848443pt;}
.x1f_c00085{left:269.580368pt;}
.x5c_c00085{left:272.328683pt;}
.x2f_c00085{left:274.177440pt;}
.x19_c00085{left:275.963139pt;}
.x27_c00085{left:280.720424pt;}
.x52_c00085{left:282.554600pt;}
.x24_c00085{left:283.988203pt;}
.x10_c00085{left:285.771384pt;}
.x50_c00085{left:289.997167pt;}
.x3b_c00085{left:291.360441pt;}
.x2_c00085{left:299.895283pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00086 {
    display:none;
  }
  .loading-indicator_c00086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00086 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00086 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00086" -> "#page-container .classname_c00086")
 */
.pf_c00086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00086 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00086 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00086 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00086 {overflow:visible;}
  }
}
.c_c00086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00086 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00086:after { /* webkit #35443 */
  content: '';
}
.t_c00086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00086 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00086 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00086 { /* info for Javascript */
  display:none;
}
.l_c00086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00086:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00086 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00086.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00086{transform:matrix(0.090290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{transform:matrix(0.094215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094215,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.112530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112530,0.000000,0.000000,0.250000,0,0);}
.m9a_c00086{transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);}
.md7_c00086{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);}
.m88_c00086{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{transform:matrix(0.156015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156015,0.000000,0.000000,0.250000,0,0);}
.mc7_c00086{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m94_c00086{transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m79_c00086{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00086{transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m32_c00086{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00086{transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);}
.m84_c00086{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m63_c00086{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.mc4_c00086{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m36_c00086{transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);}
.m76_c00086{transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);}
.mab_c00086{transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);}
.me8_c00086{transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.mbb_c00086{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.ma2_c00086{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m85_c00086{transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);}
.mec_c00086{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.md6_c00086{transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);}
.md0_c00086{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00086{transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);}
.m8a_c00086{transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);}
.m5b_c00086{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m66_c00086{transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174945,0.000000,0.000000,0.250000,0,0);}
.m86_c00086{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.m24_c00086{transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);}
.m30_c00086{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.mb1_c00086{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m81_c00086{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.me7_c00086{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.md4_c00086{transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);}
.m61_c00086{transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);}
.m89_c00086{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m5d_c00086{transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);}
.mbe_c00086{transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);}
.mba_c00086{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.md3_c00086{transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m95_c00086{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mc5_c00086{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00086{transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m64_c00086{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00086{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.mbd_c00086{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);}
.m82_c00086{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00086{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m72_c00086{transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);}
.m90_c00086{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m91_c00086{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);}
.m59_c00086{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.mb6_c00086{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.mb0_c00086{transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m65_c00086{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);}
.mc0_c00086{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m8b_c00086{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m73_c00086{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m87_c00086{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m74_c00086{transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);}
.m43_c00086{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.mc3_c00086{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m38_c00086{transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);}
.m98_c00086{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.meb_c00086{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.me3_c00086{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.med_c00086{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m71_c00086{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.mcc_c00086{transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);}
.m8e_c00086{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.m8f_c00086{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.mdf_c00086{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.mca_c00086{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.mac_c00086{transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);}
.md1_c00086{transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00086{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m97_c00086{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mb2_c00086{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.m7a_c00086{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.m60_c00086{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.mcb_c00086{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m21_c00086{transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);}
.me5_c00086{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.mde_c00086{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.mea_c00086{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.m7c_c00086{transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);}
.mce_c00086{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00086{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.maf_c00086{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);}
.mb9_c00086{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m8c_c00086{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.mc9_c00086{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00086{transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);}
.mad_c00086{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.mb7_c00086{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m83_c00086{transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);}
.md9_c00086{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.maa_c00086{transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);}
.mc1_c00086{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.ma8_c00086{transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);}
.md8_c00086{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.md5_c00086{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m4d_c00086{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.me9_c00086{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00086{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.mdd_c00086{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.mae_c00086{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.me6_c00086{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.mc6_c00086{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.mcf_c00086{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.mdc_c00086{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.md2_c00086{transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00086{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m6d_c00086{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.ma0_c00086{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00086{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.me1_c00086{transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.mee_c00086{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.me0_c00086{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.mcd_c00086{transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);}
.m28_c00086{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m92_c00086{transform:matrix(0.219220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219220,0.000000,0.000000,0.250000,0,0);}
.m9b_c00086{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.mc8_c00086{transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);}
.mb5_c00086{transform:matrix(0.221610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221610,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);}
.m7f_c00086{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.mb4_c00086{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.mc2_c00086{transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);}
.me4_c00086{transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00086{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00086{transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);}
.m80_c00086{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);}
.mdb_c00086{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.me2_c00086{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m6c_c00086{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m51_c00086{transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);}
.ma4_c00086{transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{transform:matrix(0.244865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244865,0.000000,0.000000,0.250000,0,0);}
.mda_c00086{transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);}
.mbf_c00086{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m6f_c00086{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m68_c00086{transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);}
.m20_c00086{transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);}
.m99_c00086{transform:matrix(0.276065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276065,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);}
.m6a_c00086{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m67_c00086{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);}
.m69_c00086{transform:matrix(0.329600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329600,0.000000,0.000000,0.250000,0,0);}
.mb8_c00086{transform:matrix(0.461965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461965,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(1.094560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.094560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.094560,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
.fc0_c00086{color:transparent;}
.fs8_c00086{font-size:54.600000px;}
.fs7_c00086{font-size:57.750000px;}
.fsa_c00086{font-size:59.850000px;}
.fs1_c00086{font-size:60.900000px;}
.fsb_c00086{font-size:61.950000px;}
.fs6_c00086{font-size:63.000000px;}
.fs5_c00086{font-size:64.050000px;}
.fs9_c00086{font-size:65.100000px;}
.fs3_c00086{font-size:66.150000px;}
.fs0_c00086{font-size:67.200000px;}
.fs2_c00086{font-size:68.250000px;}
.fs4_c00086{font-size:70.350000px;}
.fsc_c00086{font-size:71.400000px;}
.y0_c00086{bottom:0.000000px;}
.y28_c00086{bottom:34.263000px;}
.y27_c00086{bottom:51.607500px;}
.y26_c00086{bottom:68.196000px;}
.y25_c00086{bottom:84.865500px;}
.y24_c00086{bottom:102.423000px;}
.y23_c00086{bottom:119.320500px;}
.y22_c00086{bottom:119.485500px;}
.y21_c00086{bottom:120.076500px;}
.y20_c00086{bottom:120.243000px;}
.y1f_c00086{bottom:120.813000px;}
.y1e_c00086{bottom:120.958500px;}
.y1d_c00086{bottom:121.111500px;}
.y1c_c00086{bottom:121.771500px;}
.y1b_c00086{bottom:135.000000px;}
.y1a_c00086{bottom:151.338000px;}
.y19_c00086{bottom:167.815500px;}
.y18_c00086{bottom:185.158500px;}
.y17_c00086{bottom:202.020000px;}
.y16_c00086{bottom:219.510000px;}
.y15_c00086{bottom:236.640000px;}
.y14_c00086{bottom:253.890000px;}
.y13_c00086{bottom:270.778500px;}
.y12_c00086{bottom:288.492000px;}
.y11_c00086{bottom:305.779500px;}
.y10_c00086{bottom:320.997000px;}
.yf_c00086{bottom:337.677000px;}
.ye_c00086{bottom:354.355500px;}
.yd_c00086{bottom:371.758500px;}
.yc_c00086{bottom:387.594000px;}
.yb_c00086{bottom:404.934000px;}
.ya_c00086{bottom:421.075500px;}
.y9_c00086{bottom:438.087000px;}
.y8_c00086{bottom:456.178500px;}
.y7_c00086{bottom:472.197000px;}
.y6_c00086{bottom:489.261000px;}
.y5_c00086{bottom:505.450500px;}
.y4_c00086{bottom:523.467000px;}
.y3_c00086{bottom:540.775500px;}
.y2_c00086{bottom:555.721500px;}
.y1_c00086{bottom:571.711500px;}
.ha_c00086{height:54.600000px;}
.h9_c00086{height:57.750000px;}
.hc_c00086{height:59.850000px;}
.h3_c00086{height:60.900000px;}
.hd_c00086{height:61.950000px;}
.h8_c00086{height:63.000000px;}
.h7_c00086{height:64.050000px;}
.hb_c00086{height:65.100000px;}
.h5_c00086{height:66.150000px;}
.h2_c00086{height:67.200000px;}
.h4_c00086{height:68.250000px;}
.h6_c00086{height:70.350000px;}
.he_c00086{height:71.400000px;}
.h1_c00086{height:612.000000px;}
.h0_c00086{height:612.300000px;}
.w0_c00086{width:361.500000px;}
.x0_c00086{left:0.000000px;}
.x3_c00086{left:21.870000px;}
.x17_c00086{left:22.950000px;}
.x29_c00086{left:24.030000px;}
.x37_c00086{left:25.110000px;}
.x3c_c00086{left:26.190000px;}
.x59_c00086{left:27.270000px;}
.x61_c00086{left:28.890000px;}
.x6e_c00086{left:30.240000px;}
.x71_c00086{left:32.670000px;}
.x7b_c00086{left:33.747000px;}
.x80_c00086{left:35.097000px;}
.x4c_c00086{left:45.360000px;}
.x1b_c00086{left:46.710000px;}
.x81_c00086{left:51.027000px;}
.x43_c00086{left:52.110000px;}
.x31_c00086{left:53.190000px;}
.x22_c00086{left:54.270000px;}
.x10_c00086{left:56.430000px;}
.x67_c00086{left:57.780000px;}
.x18_c00086{left:65.610000px;}
.x1c_c00086{left:67.770000px;}
.x3d_c00086{left:71.820000px;}
.x38_c00086{left:73.980000px;}
.x2a_c00086{left:75.060000px;}
.x4_c00086{left:76.140000px;}
.x6b_c00086{left:81.000000px;}
.x68_c00086{left:83.970000px;}
.x23_c00086{left:88.020000px;}
.x11_c00086{left:89.370000px;}
.x5_c00086{left:90.450000px;}
.x2b_c00086{left:92.610000px;}
.x75_c00086{left:94.441500px;}
.x32_c00086{left:95.580000px;}
.x9_c00086{left:97.470000px;}
.x4e_c00086{left:99.360000px;}
.x73_c00086{left:100.710000px;}
.x7c_c00086{left:102.057000px;}
.x47_c00086{left:103.410000px;}
.x72_c00086{left:105.030000px;}
.x24_c00086{left:106.110000px;}
.x6f_c00086{left:107.190000px;}
.x39_c00086{left:110.700000px;}
.x78_c00086{left:112.047000px;}
.x82_c00086{left:113.397000px;}
.x1d_c00086{left:114.480000px;}
.x33_c00086{left:118.530000px;}
.x12_c00086{left:123.120000px;}
.x76_c00086{left:124.369500px;}
.xa_c00086{left:126.360000px;}
.x70_c00086{left:130.680000px;}
.x1e_c00086{left:132.570000px;}
.x69_c00086{left:133.920000px;}
.x4f_c00086{left:136.080000px;}
.x2c_c00086{left:137.700000px;}
.x3e_c00086{left:140.400000px;}
.x5a_c00086{left:141.750000px;}
.x48_c00086{left:143.910000px;}
.xb_c00086{left:146.070000px;}
.x44_c00086{left:149.310000px;}
.x5d_c00086{left:150.390000px;}
.x25_c00086{left:152.820000px;}
.x63_c00086{left:156.330000px;}
.x3f_c00086{left:157.410000px;}
.x2d_c00086{left:159.570000px;}
.x50_c00086{left:160.650000px;}
.x1_c00086{left:163.350000px;}
.x62_c00086{left:166.860000px;}
.x49_c00086{left:172.800000px;}
.x6a_c00086{left:173.880000px;}
.x55_c00086{left:176.040000px;}
.x64_c00086{left:177.120000px;}
.x7d_c00086{left:179.817000px;}
.x77_c00086{left:181.398000px;}
.x13_c00086{left:183.060000px;}
.x40_c00086{left:185.760000px;}
.x54_c00086{left:187.650000px;}
.x1f_c00086{left:189.270000px;}
.x34_c00086{left:190.890000px;}
.x6_c00086{left:192.780000px;}
.x3a_c00086{left:194.130000px;}
.x6c_c00086{left:195.210000px;}
.x14_c00086{left:198.180000px;}
.x45_c00086{left:199.260000px;}
.xc_c00086{left:200.340000px;}
.x26_c00086{left:203.310000px;}
.x19_c00086{left:204.390000px;}
.x2e_c00086{left:206.280000px;}
.x5b_c00086{left:209.520000px;}
.x7_c00086{left:214.110000px;}
.x83_c00086{left:217.077000px;}
.x27_c00086{left:220.050000px;}
.x56_c00086{left:222.480000px;}
.x15_c00086{left:223.560000px;}
.x51_c00086{left:224.640000px;}
.x53_c00086{left:226.530000px;}
.x2f_c00086{left:230.310000px;}
.xd_c00086{left:232.740000px;}
.x4a_c00086{left:237.330000px;}
.x5c_c00086{left:240.030000px;}
.x1a_c00086{left:241.110000px;}
.x65_c00086{left:243.810000px;}
.x57_c00086{left:246.240000px;}
.x20_c00086{left:250.830000px;}
.x41_c00086{left:252.990000px;}
.xe_c00086{left:254.880000px;}
.x3b_c00086{left:257.850000px;}
.x52_c00086{left:258.930000px;}
.x74_c00086{left:263.250000px;}
.x58_c00086{left:264.870000px;}
.x79_c00086{left:267.027000px;}
.x8_c00086{left:269.460000px;}
.x4b_c00086{left:272.430000px;}
.x35_c00086{left:274.590000px;}
.x5e_c00086{left:276.750000px;}
.x6d_c00086{left:281.070000px;}
.xf_c00086{left:284.580000px;}
.x66_c00086{left:286.740000px;}
.x84_c00086{left:289.167000px;}
.x36_c00086{left:292.680000px;}
.x2_c00086{left:295.110000px;}
.x28_c00086{left:296.460000px;}
.x5f_c00086{left:298.350000px;}
.x16_c00086{left:302.400000px;}
.x4d_c00086{left:305.640000px;}
.x30_c00086{left:307.800000px;}
.x21_c00086{left:310.500000px;}
.x46_c00086{left:311.580000px;}
.x42_c00086{left:313.470000px;}
.x7a_c00086{left:314.817000px;}
.x7f_c00086{left:318.327000px;}
.x60_c00086{left:320.490000px;}
.x7e_c00086{left:326.427000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.fs8_c00086{font-size:48.533333pt;}
.fs7_c00086{font-size:51.333333pt;}
.fsa_c00086{font-size:53.200000pt;}
.fs1_c00086{font-size:54.133333pt;}
.fsb_c00086{font-size:55.066667pt;}
.fs6_c00086{font-size:56.000000pt;}
.fs5_c00086{font-size:56.933333pt;}
.fs9_c00086{font-size:57.866667pt;}
.fs3_c00086{font-size:58.800000pt;}
.fs0_c00086{font-size:59.733333pt;}
.fs2_c00086{font-size:60.666667pt;}
.fs4_c00086{font-size:62.533333pt;}
.fsc_c00086{font-size:63.466667pt;}
.y0_c00086{bottom:0.000000pt;}
.y28_c00086{bottom:30.456000pt;}
.y27_c00086{bottom:45.873333pt;}
.y26_c00086{bottom:60.618667pt;}
.y25_c00086{bottom:75.436000pt;}
.y24_c00086{bottom:91.042667pt;}
.y23_c00086{bottom:106.062667pt;}
.y22_c00086{bottom:106.209333pt;}
.y21_c00086{bottom:106.734667pt;}
.y20_c00086{bottom:106.882667pt;}
.y1f_c00086{bottom:107.389333pt;}
.y1e_c00086{bottom:107.518667pt;}
.y1d_c00086{bottom:107.654667pt;}
.y1c_c00086{bottom:108.241333pt;}
.y1b_c00086{bottom:120.000000pt;}
.y1a_c00086{bottom:134.522667pt;}
.y19_c00086{bottom:149.169333pt;}
.y18_c00086{bottom:164.585333pt;}
.y17_c00086{bottom:179.573333pt;}
.y16_c00086{bottom:195.120000pt;}
.y15_c00086{bottom:210.346667pt;}
.y14_c00086{bottom:225.680000pt;}
.y13_c00086{bottom:240.692000pt;}
.y12_c00086{bottom:256.437333pt;}
.y11_c00086{bottom:271.804000pt;}
.y10_c00086{bottom:285.330667pt;}
.yf_c00086{bottom:300.157333pt;}
.ye_c00086{bottom:314.982667pt;}
.yd_c00086{bottom:330.452000pt;}
.yc_c00086{bottom:344.528000pt;}
.yb_c00086{bottom:359.941333pt;}
.ya_c00086{bottom:374.289333pt;}
.y9_c00086{bottom:389.410667pt;}
.y8_c00086{bottom:405.492000pt;}
.y7_c00086{bottom:419.730667pt;}
.y6_c00086{bottom:434.898667pt;}
.y5_c00086{bottom:449.289333pt;}
.y4_c00086{bottom:465.304000pt;}
.y3_c00086{bottom:480.689333pt;}
.y2_c00086{bottom:493.974667pt;}
.y1_c00086{bottom:508.188000pt;}
.ha_c00086{height:48.533333pt;}
.h9_c00086{height:51.333333pt;}
.hc_c00086{height:53.200000pt;}
.h3_c00086{height:54.133333pt;}
.hd_c00086{height:55.066667pt;}
.h8_c00086{height:56.000000pt;}
.h7_c00086{height:56.933333pt;}
.hb_c00086{height:57.866667pt;}
.h5_c00086{height:58.800000pt;}
.h2_c00086{height:59.733333pt;}
.h4_c00086{height:60.666667pt;}
.h6_c00086{height:62.533333pt;}
.he_c00086{height:63.466667pt;}
.h1_c00086{height:544.000000pt;}
.h0_c00086{height:544.266667pt;}
.w0_c00086{width:321.333333pt;}
.x0_c00086{left:0.000000pt;}
.x3_c00086{left:19.440000pt;}
.x17_c00086{left:20.400000pt;}
.x29_c00086{left:21.360000pt;}
.x37_c00086{left:22.320000pt;}
.x3c_c00086{left:23.280000pt;}
.x59_c00086{left:24.240000pt;}
.x61_c00086{left:25.680000pt;}
.x6e_c00086{left:26.880000pt;}
.x71_c00086{left:29.040000pt;}
.x7b_c00086{left:29.997333pt;}
.x80_c00086{left:31.197333pt;}
.x4c_c00086{left:40.320000pt;}
.x1b_c00086{left:41.520000pt;}
.x81_c00086{left:45.357333pt;}
.x43_c00086{left:46.320000pt;}
.x31_c00086{left:47.280000pt;}
.x22_c00086{left:48.240000pt;}
.x10_c00086{left:50.160000pt;}
.x67_c00086{left:51.360000pt;}
.x18_c00086{left:58.320000pt;}
.x1c_c00086{left:60.240000pt;}
.x3d_c00086{left:63.840000pt;}
.x38_c00086{left:65.760000pt;}
.x2a_c00086{left:66.720000pt;}
.x4_c00086{left:67.680000pt;}
.x6b_c00086{left:72.000000pt;}
.x68_c00086{left:74.640000pt;}
.x23_c00086{left:78.240000pt;}
.x11_c00086{left:79.440000pt;}
.x5_c00086{left:80.400000pt;}
.x2b_c00086{left:82.320000pt;}
.x75_c00086{left:83.948000pt;}
.x32_c00086{left:84.960000pt;}
.x9_c00086{left:86.640000pt;}
.x4e_c00086{left:88.320000pt;}
.x73_c00086{left:89.520000pt;}
.x7c_c00086{left:90.717333pt;}
.x47_c00086{left:91.920000pt;}
.x72_c00086{left:93.360000pt;}
.x24_c00086{left:94.320000pt;}
.x6f_c00086{left:95.280000pt;}
.x39_c00086{left:98.400000pt;}
.x78_c00086{left:99.597333pt;}
.x82_c00086{left:100.797333pt;}
.x1d_c00086{left:101.760000pt;}
.x33_c00086{left:105.360000pt;}
.x12_c00086{left:109.440000pt;}
.x76_c00086{left:110.550667pt;}
.xa_c00086{left:112.320000pt;}
.x70_c00086{left:116.160000pt;}
.x1e_c00086{left:117.840000pt;}
.x69_c00086{left:119.040000pt;}
.x4f_c00086{left:120.960000pt;}
.x2c_c00086{left:122.400000pt;}
.x3e_c00086{left:124.800000pt;}
.x5a_c00086{left:126.000000pt;}
.x48_c00086{left:127.920000pt;}
.xb_c00086{left:129.840000pt;}
.x44_c00086{left:132.720000pt;}
.x5d_c00086{left:133.680000pt;}
.x25_c00086{left:135.840000pt;}
.x63_c00086{left:138.960000pt;}
.x3f_c00086{left:139.920000pt;}
.x2d_c00086{left:141.840000pt;}
.x50_c00086{left:142.800000pt;}
.x1_c00086{left:145.200000pt;}
.x62_c00086{left:148.320000pt;}
.x49_c00086{left:153.600000pt;}
.x6a_c00086{left:154.560000pt;}
.x55_c00086{left:156.480000pt;}
.x64_c00086{left:157.440000pt;}
.x7d_c00086{left:159.837333pt;}
.x77_c00086{left:161.242667pt;}
.x13_c00086{left:162.720000pt;}
.x40_c00086{left:165.120000pt;}
.x54_c00086{left:166.800000pt;}
.x1f_c00086{left:168.240000pt;}
.x34_c00086{left:169.680000pt;}
.x6_c00086{left:171.360000pt;}
.x3a_c00086{left:172.560000pt;}
.x6c_c00086{left:173.520000pt;}
.x14_c00086{left:176.160000pt;}
.x45_c00086{left:177.120000pt;}
.xc_c00086{left:178.080000pt;}
.x26_c00086{left:180.720000pt;}
.x19_c00086{left:181.680000pt;}
.x2e_c00086{left:183.360000pt;}
.x5b_c00086{left:186.240000pt;}
.x7_c00086{left:190.320000pt;}
.x83_c00086{left:192.957333pt;}
.x27_c00086{left:195.600000pt;}
.x56_c00086{left:197.760000pt;}
.x15_c00086{left:198.720000pt;}
.x51_c00086{left:199.680000pt;}
.x53_c00086{left:201.360000pt;}
.x2f_c00086{left:204.720000pt;}
.xd_c00086{left:206.880000pt;}
.x4a_c00086{left:210.960000pt;}
.x5c_c00086{left:213.360000pt;}
.x1a_c00086{left:214.320000pt;}
.x65_c00086{left:216.720000pt;}
.x57_c00086{left:218.880000pt;}
.x20_c00086{left:222.960000pt;}
.x41_c00086{left:224.880000pt;}
.xe_c00086{left:226.560000pt;}
.x3b_c00086{left:229.200000pt;}
.x52_c00086{left:230.160000pt;}
.x74_c00086{left:234.000000pt;}
.x58_c00086{left:235.440000pt;}
.x79_c00086{left:237.357333pt;}
.x8_c00086{left:239.520000pt;}
.x4b_c00086{left:242.160000pt;}
.x35_c00086{left:244.080000pt;}
.x5e_c00086{left:246.000000pt;}
.x6d_c00086{left:249.840000pt;}
.xf_c00086{left:252.960000pt;}
.x66_c00086{left:254.880000pt;}
.x84_c00086{left:257.037333pt;}
.x36_c00086{left:260.160000pt;}
.x2_c00086{left:262.320000pt;}
.x28_c00086{left:263.520000pt;}
.x5f_c00086{left:265.200000pt;}
.x16_c00086{left:268.800000pt;}
.x4d_c00086{left:271.680000pt;}
.x30_c00086{left:273.600000pt;}
.x21_c00086{left:276.000000pt;}
.x46_c00086{left:276.960000pt;}
.x42_c00086{left:278.640000pt;}
.x7a_c00086{left:279.837333pt;}
.x7f_c00086{left:282.957333pt;}
.x60_c00086{left:284.880000pt;}
.x7e_c00086{left:290.157333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00087 {
    display:none;
  }
  .loading-indicator_c00087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00087 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00087 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00087" -> "#page-container .classname_c00087")
 */
.pf_c00087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00087 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00087 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00087 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00087 {overflow:visible;}
  }
}
.c_c00087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00087 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00087:after { /* webkit #35443 */
  content: '';
}
.t_c00087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00087 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00087 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00087 { /* info for Javascript */
  display:none;
}
.l_c00087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00087:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00087 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00087.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00087{transform:matrix(0.020627,0.001074,-0.012995,0.249662,0,0);-ms-transform:matrix(0.020627,0.001074,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.020627,0.001074,-0.012995,0.249662,0,0);}
.m11_c00087{transform:matrix(0.051565,0.002684,-0.012995,0.249662,0,0);-ms-transform:matrix(0.051565,0.002684,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.051565,0.002684,-0.012995,0.249662,0,0);}
.m53_c00087{transform:matrix(0.078812,0.004023,-0.012746,0.249675,0,0);-ms-transform:matrix(0.078812,0.004023,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.078812,0.004023,-0.012746,0.249675,0,0);}
.m81_c00087{transform:matrix(0.100282,0.006833,-0.016995,0.249422,0,0);-ms-transform:matrix(0.100282,0.006833,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.100282,0.006833,-0.016995,0.249422,0,0);}
.m68_c00087{transform:matrix(0.101894,0.008278,-0.020244,0.249179,0,0);-ms-transform:matrix(0.101894,0.008278,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.101894,0.008278,-0.020244,0.249179,0,0);}
.m96_c00087{transform:matrix(0.105545,0.007191,-0.016995,0.249422,0,0);-ms-transform:matrix(0.105545,0.007191,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.105545,0.007191,-0.016995,0.249422,0,0);}
.m94_c00087{transform:matrix(0.138140,0.009412,-0.016995,0.249422,0,0);-ms-transform:matrix(0.138140,0.009412,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.138140,0.009412,-0.016995,0.249422,0,0);}
.m57_c00087{transform:matrix(0.138799,0.007086,-0.012746,0.249675,0,0);-ms-transform:matrix(0.138799,0.007086,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.138799,0.007086,-0.012746,0.249675,0,0);}
.m23_c00087{transform:matrix(0.140875,0.008893,-0.015750,0.249503,0,0);-ms-transform:matrix(0.140875,0.008893,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.140875,0.008893,-0.015750,0.249503,0,0);}
.m8_c00087{transform:matrix(0.142452,0.007415,-0.012995,0.249662,0,0);-ms-transform:matrix(0.142452,0.007415,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.142452,0.007415,-0.012995,0.249662,0,0);}
.m13_c00087{transform:matrix(0.145301,0.009172,-0.015750,0.249503,0,0);-ms-transform:matrix(0.145301,0.009172,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.145301,0.009172,-0.015750,0.249503,0,0);}
.m74_c00087{transform:matrix(0.146106,0.009955,-0.016995,0.249422,0,0);-ms-transform:matrix(0.146106,0.009955,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.146106,0.009955,-0.016995,0.249422,0,0);}
.m8e_c00087{transform:matrix(0.146221,0.009963,-0.016995,0.249422,0,0);-ms-transform:matrix(0.146221,0.009963,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.146221,0.009963,-0.016995,0.249422,0,0);}
.m56_c00087{transform:matrix(0.147788,0.007545,-0.012746,0.249675,0,0);-ms-transform:matrix(0.147788,0.007545,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.147788,0.007545,-0.012746,0.249675,0,0);}
.m4_c00087{transform:matrix(0.149718,0.006294,-0.010501,0.249779,0,0);-ms-transform:matrix(0.149718,0.006294,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.149718,0.006294,-0.010501,0.249779,0,0);}
.m0_c00087{transform:matrix(0.151426,0.006366,-0.010501,0.249779,0,0);-ms-transform:matrix(0.151426,0.006366,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.151426,0.006366,-0.010501,0.249779,0,0);}
.m14_c00087{transform:matrix(0.151583,0.009569,-0.015750,0.249503,0,0);-ms-transform:matrix(0.151583,0.009569,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.151583,0.009569,-0.015750,0.249503,0,0);}
.mf_c00087{transform:matrix(0.152638,0.007945,-0.012995,0.249662,0,0);-ms-transform:matrix(0.152638,0.007945,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.152638,0.007945,-0.012995,0.249662,0,0);}
.m5_c00087{transform:matrix(0.154628,0.006501,-0.010501,0.249779,0,0);-ms-transform:matrix(0.154628,0.006501,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.154628,0.006501,-0.010501,0.249779,0,0);}
.m93_c00087{transform:matrix(0.156687,0.010676,-0.016995,0.249422,0,0);-ms-transform:matrix(0.156687,0.010676,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.156687,0.010676,-0.016995,0.249422,0,0);}
.m38_c00087{transform:matrix(0.156788,0.010055,-0.015999,0.249488,0,0);-ms-transform:matrix(0.156788,0.010055,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.156788,0.010055,-0.015999,0.249488,0,0);}
.m1d_c00087{transform:matrix(0.159203,0.010050,-0.015750,0.249503,0,0);-ms-transform:matrix(0.159203,0.010050,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.159203,0.010050,-0.015750,0.249503,0,0);}
.m7d_c00087{transform:matrix(0.160313,0.010923,-0.016995,0.249422,0,0);-ms-transform:matrix(0.160313,0.010923,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.160313,0.010923,-0.016995,0.249422,0,0);}
.m15_c00087{transform:matrix(0.160675,0.010143,-0.015750,0.249503,0,0);-ms-transform:matrix(0.160675,0.010143,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.160675,0.010143,-0.015750,0.249503,0,0);}
.m1a_c00087{transform:matrix(0.161005,0.010164,-0.015750,0.249503,0,0);-ms-transform:matrix(0.161005,0.010164,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.161005,0.010164,-0.015750,0.249503,0,0);}
.m9_c00087{transform:matrix(0.161052,0.008383,-0.012995,0.249662,0,0);-ms-transform:matrix(0.161052,0.008383,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.161052,0.008383,-0.012995,0.249662,0,0);}
.m75_c00087{transform:matrix(0.161635,0.011013,-0.016995,0.249422,0,0);-ms-transform:matrix(0.161635,0.011013,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.161635,0.011013,-0.016995,0.249422,0,0);}
.m80_c00087{transform:matrix(0.162379,0.011064,-0.016995,0.249422,0,0);-ms-transform:matrix(0.162379,0.011064,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.162379,0.011064,-0.016995,0.249422,0,0);}
.m3_c00087{transform:matrix(0.162656,0.006838,-0.010501,0.249779,0,0);-ms-transform:matrix(0.162656,0.006838,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.162656,0.006838,-0.010501,0.249779,0,0);}
.m3c_c00087{transform:matrix(0.162880,0.010445,-0.015999,0.249488,0,0);-ms-transform:matrix(0.162880,0.010445,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.162880,0.010445,-0.015999,0.249488,0,0);}
.m7a_c00087{transform:matrix(0.164085,0.011180,-0.016995,0.249422,0,0);-ms-transform:matrix(0.164085,0.011180,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.164085,0.011180,-0.016995,0.249422,0,0);}
.m3f_c00087{transform:matrix(0.164397,0.010543,-0.015999,0.249488,0,0);-ms-transform:matrix(0.164397,0.010543,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.164397,0.010543,-0.015999,0.249488,0,0);}
.m6f_c00087{transform:matrix(0.164803,0.011229,-0.016995,0.249422,0,0);-ms-transform:matrix(0.164803,0.011229,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.164803,0.011229,-0.016995,0.249422,0,0);}
.m2a_c00087{transform:matrix(0.165894,0.008469,-0.012746,0.249675,0,0);-ms-transform:matrix(0.165894,0.008469,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.165894,0.008469,-0.012746,0.249675,0,0);}
.m2c_c00087{transform:matrix(0.165989,0.010645,-0.015999,0.249488,0,0);-ms-transform:matrix(0.165989,0.010645,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.165989,0.010645,-0.015999,0.249488,0,0);}
.m5b_c00087{transform:matrix(0.166573,0.008504,-0.012746,0.249675,0,0);-ms-transform:matrix(0.166573,0.008504,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.166573,0.008504,-0.012746,0.249675,0,0);}
.m21_c00087{transform:matrix(0.167028,0.010544,-0.015750,0.249503,0,0);-ms-transform:matrix(0.167028,0.010544,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.167028,0.010544,-0.015750,0.249503,0,0);}
.m63_c00087{transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167089,0.006356,-0.009503,0.249819,0,0);}
.m16_c00087{transform:matrix(0.167551,0.010577,-0.015750,0.249503,0,0);-ms-transform:matrix(0.167551,0.010577,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.167551,0.010577,-0.015750,0.249503,0,0);}
.ma_c00087{transform:matrix(0.167753,0.008732,-0.012995,0.249662,0,0);-ms-transform:matrix(0.167753,0.008732,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.167753,0.008732,-0.012995,0.249662,0,0);}
.m2f_c00087{transform:matrix(0.171513,0.010999,-0.015999,0.249488,0,0);-ms-transform:matrix(0.171513,0.010999,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.171513,0.010999,-0.015999,0.249488,0,0);}
.m8f_c00087{transform:matrix(0.171597,0.011692,-0.016995,0.249422,0,0);-ms-transform:matrix(0.171597,0.011692,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.171597,0.011692,-0.016995,0.249422,0,0);}
.m6_c00087{transform:matrix(0.171918,0.007228,-0.010501,0.249779,0,0);-ms-transform:matrix(0.171918,0.007228,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.171918,0.007228,-0.010501,0.249779,0,0);}
.m86_c00087{transform:matrix(0.172650,0.011764,-0.016995,0.249422,0,0);-ms-transform:matrix(0.172650,0.011764,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.172650,0.011764,-0.016995,0.249422,0,0);}
.m18_c00087{transform:matrix(0.172751,0.010905,-0.015750,0.249503,0,0);-ms-transform:matrix(0.172751,0.010905,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.172751,0.010905,-0.015750,0.249503,0,0);}
.m98_c00087{transform:matrix(0.174386,0.011882,-0.016995,0.249422,0,0);-ms-transform:matrix(0.174386,0.011882,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.174386,0.011882,-0.016995,0.249422,0,0);}
.m41_c00087{transform:matrix(0.174736,0.011206,-0.015999,0.249488,0,0);-ms-transform:matrix(0.174736,0.011206,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.174736,0.011206,-0.015999,0.249488,0,0);}
.m1f_c00087{transform:matrix(0.174867,0.011039,-0.015750,0.249503,0,0);-ms-transform:matrix(0.174867,0.011039,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.174867,0.011039,-0.015750,0.249503,0,0);}
.m24_c00087{transform:matrix(0.175156,0.011057,-0.015750,0.249503,0,0);-ms-transform:matrix(0.175156,0.011057,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.175156,0.011057,-0.015750,0.249503,0,0);}
.m7_c00087{transform:matrix(0.175620,0.007383,-0.010501,0.249779,0,0);-ms-transform:matrix(0.175620,0.007383,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.175620,0.007383,-0.010501,0.249779,0,0);}
.m10_c00087{transform:matrix(0.175822,0.009152,-0.012995,0.249662,0,0);-ms-transform:matrix(0.175822,0.009152,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.175822,0.009152,-0.012995,0.249662,0,0);}
.m3e_c00087{transform:matrix(0.177196,0.011363,-0.015999,0.249488,0,0);-ms-transform:matrix(0.177196,0.011363,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.177196,0.011363,-0.015999,0.249488,0,0);}
.m58_c00087{transform:matrix(0.178213,0.009098,-0.012746,0.249675,0,0);-ms-transform:matrix(0.178213,0.009098,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.178213,0.009098,-0.012746,0.249675,0,0);}
.m83_c00087{transform:matrix(0.178426,0.012157,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178426,0.012157,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178426,0.012157,-0.016995,0.249422,0,0);}
.m91_c00087{transform:matrix(0.178451,0.012159,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178451,0.012159,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178451,0.012159,-0.016995,0.249422,0,0);}
.m46_c00087{transform:matrix(0.178649,0.012351,-0.017243,0.249405,0,0);-ms-transform:matrix(0.178649,0.012351,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.178649,0.012351,-0.017243,0.249405,0,0);}
.m88_c00087{transform:matrix(0.178795,0.012182,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178795,0.012182,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178795,0.012182,-0.016995,0.249422,0,0);}
.m6d_c00087{transform:matrix(0.178890,0.012189,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178890,0.012189,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178890,0.012189,-0.016995,0.249422,0,0);}
.m37_c00087{transform:matrix(0.179292,0.011498,-0.015999,0.249488,0,0);-ms-transform:matrix(0.179292,0.011498,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.179292,0.011498,-0.015999,0.249488,0,0);}
.m36_c00087{transform:matrix(0.181078,0.011612,-0.015999,0.249488,0,0);-ms-transform:matrix(0.181078,0.011612,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.181078,0.011612,-0.015999,0.249488,0,0);}
.m90_c00087{transform:matrix(0.181140,0.012342,-0.016995,0.249422,0,0);-ms-transform:matrix(0.181140,0.012342,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.181140,0.012342,-0.016995,0.249422,0,0);}
.m92_c00087{transform:matrix(0.182242,0.012417,-0.016995,0.249422,0,0);-ms-transform:matrix(0.182242,0.012417,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.182242,0.012417,-0.016995,0.249422,0,0);}
.m17_c00087{transform:matrix(0.183180,0.011563,-0.015750,0.249503,0,0);-ms-transform:matrix(0.183180,0.011563,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.183180,0.011563,-0.015750,0.249503,0,0);}
.m6c_c00087{transform:matrix(0.183519,0.012504,-0.016995,0.249422,0,0);-ms-transform:matrix(0.183519,0.012504,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.183519,0.012504,-0.016995,0.249422,0,0);}
.mb_c00087{transform:matrix(0.183716,0.009563,-0.012995,0.249662,0,0);-ms-transform:matrix(0.183716,0.009563,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.183716,0.009563,-0.012995,0.249662,0,0);}
.m1b_c00087{transform:matrix(0.186249,0.011757,-0.015750,0.249503,0,0);-ms-transform:matrix(0.186249,0.011757,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.186249,0.011757,-0.015750,0.249503,0,0);}
.m22_c00087{transform:matrix(0.186758,0.011789,-0.015750,0.249503,0,0);-ms-transform:matrix(0.186758,0.011789,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.186758,0.011789,-0.015750,0.249503,0,0);}
.m40_c00087{transform:matrix(0.187081,0.011997,-0.015999,0.249488,0,0);-ms-transform:matrix(0.187081,0.011997,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.187081,0.011997,-0.015999,0.249488,0,0);}
.m29_c00087{transform:matrix(0.187721,0.009583,-0.012746,0.249675,0,0);-ms-transform:matrix(0.187721,0.009583,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.187721,0.009583,-0.012746,0.249675,0,0);}
.m5f_c00087{transform:matrix(0.189079,0.009653,-0.012746,0.249675,0,0);-ms-transform:matrix(0.189079,0.009653,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.189079,0.009653,-0.012746,0.249675,0,0);}
.m60_c00087{transform:matrix(0.189478,0.009673,-0.012746,0.249675,0,0);-ms-transform:matrix(0.189478,0.009673,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.189478,0.009673,-0.012746,0.249675,0,0);}
.m20_c00087{transform:matrix(0.190032,0.011996,-0.015750,0.249503,0,0);-ms-transform:matrix(0.190032,0.011996,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.190032,0.011996,-0.015750,0.249503,0,0);}
.m97_c00087{transform:matrix(0.191092,0.013020,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191092,0.013020,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191092,0.013020,-0.016995,0.249422,0,0);}
.m49_c00087{transform:matrix(0.191403,0.013233,-0.017243,0.249405,0,0);-ms-transform:matrix(0.191403,0.013233,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.191403,0.013233,-0.017243,0.249405,0,0);}
.m89_c00087{transform:matrix(0.191920,0.013077,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191920,0.013077,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191920,0.013077,-0.016995,0.249422,0,0);}
.m2_c00087{transform:matrix(0.191930,0.008069,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191930,0.008069,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191930,0.008069,-0.010501,0.249779,0,0);}
.m7c_c00087{transform:matrix(0.191940,0.013078,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191940,0.013078,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191940,0.013078,-0.016995,0.249422,0,0);}
.m4f_c00087{transform:matrix(0.192311,0.013296,-0.017243,0.249405,0,0);-ms-transform:matrix(0.192311,0.013296,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.192311,0.013296,-0.017243,0.249405,0,0);}
.m5a_c00087{transform:matrix(0.193553,0.009881,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193553,0.009881,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193553,0.009881,-0.012746,0.249675,0,0);}
.m59_c00087{transform:matrix(0.193653,0.009886,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193653,0.009886,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193653,0.009886,-0.012746,0.249675,0,0);}
.m28_c00087{transform:matrix(0.193738,0.009891,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193738,0.009891,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193738,0.009891,-0.012746,0.249675,0,0);}
.m27_c00087{transform:matrix(0.193808,0.009894,-0.012746,0.249675,0,0);-ms-transform:matrix(0.193808,0.009894,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.193808,0.009894,-0.012746,0.249675,0,0);}
.md_c00087{transform:matrix(0.194182,0.010108,-0.012995,0.249662,0,0);-ms-transform:matrix(0.194182,0.010108,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.194182,0.010108,-0.012995,0.249662,0,0);}
.mc_c00087{transform:matrix(0.194267,0.010112,-0.012995,0.249662,0,0);-ms-transform:matrix(0.194267,0.010112,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.194267,0.010112,-0.012995,0.249662,0,0);}
.m26_c00087{transform:matrix(0.194372,0.009923,-0.012746,0.249675,0,0);-ms-transform:matrix(0.194372,0.009923,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.194372,0.009923,-0.012746,0.249675,0,0);}
.m4e_c00087{transform:matrix(0.194735,0.013464,-0.017243,0.249405,0,0);-ms-transform:matrix(0.194735,0.013464,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.194735,0.013464,-0.017243,0.249405,0,0);}
.m82_c00087{transform:matrix(0.194843,0.013276,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194843,0.013276,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194843,0.013276,-0.016995,0.249422,0,0);}
.m76_c00087{transform:matrix(0.194873,0.013278,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194873,0.013278,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194873,0.013278,-0.016995,0.249422,0,0);}
.m7b_c00087{transform:matrix(0.195252,0.013304,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195252,0.013304,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195252,0.013304,-0.016995,0.249422,0,0);}
.m72_c00087{transform:matrix(0.195457,0.013318,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195457,0.013318,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195457,0.013318,-0.016995,0.249422,0,0);}
.m1c_c00087{transform:matrix(0.195840,0.012363,-0.015750,0.249503,0,0);-ms-transform:matrix(0.195840,0.012363,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.195840,0.012363,-0.015750,0.249503,0,0);}
.m5e_c00087{transform:matrix(0.196459,0.010029,-0.012746,0.249675,0,0);-ms-transform:matrix(0.196459,0.010029,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.196459,0.010029,-0.012746,0.249675,0,0);}
.m71_c00087{transform:matrix(0.196879,0.013415,-0.016995,0.249422,0,0);-ms-transform:matrix(0.196879,0.013415,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.196879,0.013415,-0.016995,0.249422,0,0);}
.m3b_c00087{transform:matrix(0.196985,0.012632,-0.015999,0.249488,0,0);-ms-transform:matrix(0.196985,0.012632,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.196985,0.012632,-0.015999,0.249488,0,0);}
.m70_c00087{transform:matrix(0.197303,0.013443,-0.016995,0.249422,0,0);-ms-transform:matrix(0.197303,0.013443,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.197303,0.013443,-0.016995,0.249422,0,0);}
.m8c_c00087{transform:matrix(0.197572,0.013462,-0.016995,0.249422,0,0);-ms-transform:matrix(0.197572,0.013462,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.197572,0.013462,-0.016995,0.249422,0,0);}
.m2e_c00087{transform:matrix(0.197749,0.012681,-0.015999,0.249488,0,0);-ms-transform:matrix(0.197749,0.012681,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.197749,0.012681,-0.015999,0.249488,0,0);}
.m73_c00087{transform:matrix(0.197846,0.013481,-0.016995,0.249422,0,0);-ms-transform:matrix(0.197846,0.013481,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.197846,0.013481,-0.016995,0.249422,0,0);}
.m31_c00087{transform:matrix(0.197953,0.012694,-0.015999,0.249488,0,0);-ms-transform:matrix(0.197953,0.012694,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.197953,0.012694,-0.015999,0.249488,0,0);}
.m3a_c00087{transform:matrix(0.197978,0.012696,-0.015999,0.249488,0,0);-ms-transform:matrix(0.197978,0.012696,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.197978,0.012696,-0.015999,0.249488,0,0);}
.m62_c00087{transform:matrix(0.198876,0.007565,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198876,0.007565,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198876,0.007565,-0.009503,0.249819,0,0);}
.m79_c00087{transform:matrix(0.198924,0.013554,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198924,0.013554,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198924,0.013554,-0.016995,0.249422,0,0);}
.m44_c00087{transform:matrix(0.198976,0.012760,-0.015999,0.249488,0,0);-ms-transform:matrix(0.198976,0.012760,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.198976,0.012760,-0.015999,0.249488,0,0);}
.m95_c00087{transform:matrix(0.199802,0.013614,-0.016995,0.249422,0,0);-ms-transform:matrix(0.199802,0.013614,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.199802,0.013614,-0.016995,0.249422,0,0);}
.m25_c00087{transform:matrix(0.200409,0.010231,-0.012746,0.249675,0,0);-ms-transform:matrix(0.200409,0.010231,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.200409,0.010231,-0.012746,0.249675,0,0);}
.m1_c00087{transform:matrix(0.200693,0.008438,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200693,0.008438,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200693,0.008438,-0.010501,0.249779,0,0);}
.m45_c00087{transform:matrix(0.201366,0.012913,-0.015999,0.249488,0,0);-ms-transform:matrix(0.201366,0.012913,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.201366,0.012913,-0.015999,0.249488,0,0);}
.m8a_c00087{transform:matrix(0.202545,0.013801,-0.016995,0.249422,0,0);-ms-transform:matrix(0.202545,0.013801,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.202545,0.013801,-0.016995,0.249422,0,0);}
.m43_c00087{transform:matrix(0.203637,0.013059,-0.015999,0.249488,0,0);-ms-transform:matrix(0.203637,0.013059,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.203637,0.013059,-0.015999,0.249488,0,0);}
.me_c00087{transform:matrix(0.204433,0.010641,-0.012995,0.249662,0,0);-ms-transform:matrix(0.204433,0.010641,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.204433,0.010641,-0.012995,0.249662,0,0);}
.m2b_c00087{transform:matrix(0.204705,0.013127,-0.015999,0.249488,0,0);-ms-transform:matrix(0.204705,0.013127,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.204705,0.013127,-0.015999,0.249488,0,0);}
.m1e_c00087{transform:matrix(0.205227,0.012955,-0.015750,0.249503,0,0);-ms-transform:matrix(0.205227,0.012955,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.205227,0.012955,-0.015750,0.249503,0,0);}
.m7f_c00087{transform:matrix(0.205444,0.013998,-0.016995,0.249422,0,0);-ms-transform:matrix(0.205444,0.013998,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.205444,0.013998,-0.016995,0.249422,0,0);}
.m35_c00087{transform:matrix(0.206047,0.013213,-0.015999,0.249488,0,0);-ms-transform:matrix(0.206047,0.013213,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.206047,0.013213,-0.015999,0.249488,0,0);}
.m77_c00087{transform:matrix(0.206212,0.014051,-0.016995,0.249422,0,0);-ms-transform:matrix(0.206212,0.014051,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.206212,0.014051,-0.016995,0.249422,0,0);}
.m33_c00087{transform:matrix(0.206361,0.013234,-0.015999,0.249488,0,0);-ms-transform:matrix(0.206361,0.013234,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.206361,0.013234,-0.015999,0.249488,0,0);}
.m99_c00087{transform:matrix(0.207050,0.014108,-0.016995,0.249422,0,0);-ms-transform:matrix(0.207050,0.014108,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.207050,0.014108,-0.016995,0.249422,0,0);}
.m5c_c00087{transform:matrix(0.207185,0.010577,-0.012746,0.249675,0,0);-ms-transform:matrix(0.207185,0.010577,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.207185,0.010577,-0.012746,0.249675,0,0);}
.m32_c00087{transform:matrix(0.208721,0.013385,-0.015999,0.249488,0,0);-ms-transform:matrix(0.208721,0.013385,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.208721,0.013385,-0.015999,0.249488,0,0);}
.m54_c00087{transform:matrix(0.208968,0.010668,-0.012746,0.249675,0,0);-ms-transform:matrix(0.208968,0.010668,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.208968,0.010668,-0.012746,0.249675,0,0);}
.m30_c00087{transform:matrix(0.209046,0.013406,-0.015999,0.249488,0,0);-ms-transform:matrix(0.209046,0.013406,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.209046,0.013406,-0.015999,0.249488,0,0);}
.m84_c00087{transform:matrix(0.209375,0.014266,-0.016995,0.249422,0,0);-ms-transform:matrix(0.209375,0.014266,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.209375,0.014266,-0.016995,0.249422,0,0);}
.m2d_c00087{transform:matrix(0.209714,0.013449,-0.015999,0.249488,0,0);-ms-transform:matrix(0.209714,0.013449,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.209714,0.013449,-0.015999,0.249488,0,0);}
.m8d_c00087{transform:matrix(0.210896,0.014370,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210896,0.014370,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210896,0.014370,-0.016995,0.249422,0,0);}
.m61_c00087{transform:matrix(0.212112,0.008068,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212112,0.008068,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212112,0.008068,-0.009503,0.249819,0,0);}
.m4a_c00087{transform:matrix(0.213126,0.014735,-0.017243,0.249405,0,0);-ms-transform:matrix(0.213126,0.014735,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.213126,0.014735,-0.017243,0.249405,0,0);}
.m78_c00087{transform:matrix(0.213465,0.014545,-0.016995,0.249422,0,0);-ms-transform:matrix(0.213465,0.014545,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.213465,0.014545,-0.016995,0.249422,0,0);}
.m85_c00087{transform:matrix(0.215670,0.014695,-0.016995,0.249422,0,0);-ms-transform:matrix(0.215670,0.014695,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.215670,0.014695,-0.016995,0.249422,0,0);}
.m8b_c00087{transform:matrix(0.216144,0.014727,-0.016995,0.249422,0,0);-ms-transform:matrix(0.216144,0.014727,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.216144,0.014727,-0.016995,0.249422,0,0);}
.m47_c00087{transform:matrix(0.216383,0.014960,-0.017243,0.249405,0,0);-ms-transform:matrix(0.216383,0.014960,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.216383,0.014960,-0.017243,0.249405,0,0);}
.m4d_c00087{transform:matrix(0.216827,0.014991,-0.017243,0.249405,0,0);-ms-transform:matrix(0.216827,0.014991,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.216827,0.014991,-0.017243,0.249405,0,0);}
.m67_c00087{transform:matrix(0.217085,0.017637,-0.020244,0.249179,0,0);-ms-transform:matrix(0.217085,0.017637,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.217085,0.017637,-0.020244,0.249179,0,0);}
.m7e_c00087{transform:matrix(0.219042,0.014925,-0.016995,0.249422,0,0);-ms-transform:matrix(0.219042,0.014925,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.219042,0.014925,-0.016995,0.249422,0,0);}
.m39_c00087{transform:matrix(0.221370,0.014196,-0.015999,0.249488,0,0);-ms-transform:matrix(0.221370,0.014196,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.221370,0.014196,-0.015999,0.249488,0,0);}
.m6a_c00087{transform:matrix(0.223369,0.018147,-0.020244,0.249179,0,0);-ms-transform:matrix(0.223369,0.018147,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.223369,0.018147,-0.020244,0.249179,0,0);}
.m6e_c00087{transform:matrix(0.224849,0.015320,-0.016995,0.249422,0,0);-ms-transform:matrix(0.224849,0.015320,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.224849,0.015320,-0.016995,0.249422,0,0);}
.m50_c00087{transform:matrix(0.225450,0.014006,-0.015501,0.249519,0,0);-ms-transform:matrix(0.225450,0.014006,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.225450,0.014006,-0.015501,0.249519,0,0);}
.m55_c00087{transform:matrix(0.225896,0.011532,-0.012746,0.249675,0,0);-ms-transform:matrix(0.225896,0.011532,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.225896,0.011532,-0.012746,0.249675,0,0);}
.m87_c00087{transform:matrix(0.226225,0.015414,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226225,0.015414,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226225,0.015414,-0.016995,0.249422,0,0);}
.m42_c00087{transform:matrix(0.230242,0.014765,-0.015999,0.249488,0,0);-ms-transform:matrix(0.230242,0.014765,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.230242,0.014765,-0.015999,0.249488,0,0);}
.m4c_c00087{transform:matrix(0.234650,0.016223,-0.017243,0.249405,0,0);-ms-transform:matrix(0.234650,0.016223,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.234650,0.016223,-0.017243,0.249405,0,0);}
.m34_c00087{transform:matrix(0.238824,0.015315,-0.015999,0.249488,0,0);-ms-transform:matrix(0.238824,0.015315,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.238824,0.015315,-0.015999,0.249488,0,0);}
.m51_c00087{transform:matrix(0.240047,0.014913,-0.015501,0.249519,0,0);-ms-transform:matrix(0.240047,0.014913,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.240047,0.014913,-0.015501,0.249519,0,0);}
.m4b_c00087{transform:matrix(0.241977,0.016730,-0.017243,0.249405,0,0);-ms-transform:matrix(0.241977,0.016730,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.241977,0.016730,-0.017243,0.249405,0,0);}
.m19_c00087{transform:matrix(0.242497,0.015308,-0.015750,0.249503,0,0);-ms-transform:matrix(0.242497,0.015308,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.242497,0.015308,-0.015750,0.249503,0,0);}
.m48_c00087{transform:matrix(0.242855,0.016791,-0.017243,0.249405,0,0);-ms-transform:matrix(0.242855,0.016791,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.242855,0.016791,-0.017243,0.249405,0,0);}
.m52_c00087{transform:matrix(0.250816,0.015582,-0.015501,0.249519,0,0);-ms-transform:matrix(0.250816,0.015582,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.250816,0.015582,-0.015501,0.249519,0,0);}
.m5d_c00087{transform:matrix(0.253260,0.012929,-0.012746,0.249675,0,0);-ms-transform:matrix(0.253260,0.012929,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.253260,0.012929,-0.012746,0.249675,0,0);}
.m66_c00087{transform:matrix(0.261758,0.021266,-0.020244,0.249179,0,0);-ms-transform:matrix(0.261758,0.021266,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.261758,0.021266,-0.020244,0.249179,0,0);}
.m6b_c00087{transform:matrix(0.264723,0.021507,-0.020244,0.249179,0,0);-ms-transform:matrix(0.264723,0.021507,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.264723,0.021507,-0.020244,0.249179,0,0);}
.m3d_c00087{transform:matrix(0.271123,0.017387,-0.015999,0.249488,0,0);-ms-transform:matrix(0.271123,0.017387,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.271123,0.017387,-0.015999,0.249488,0,0);}
.m64_c00087{transform:matrix(0.285071,0.023160,-0.020244,0.249179,0,0);-ms-transform:matrix(0.285071,0.023160,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.285071,0.023160,-0.020244,0.249179,0,0);}
.m69_c00087{transform:matrix(0.290009,0.023561,-0.020244,0.249179,0,0);-ms-transform:matrix(0.290009,0.023561,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.290009,0.023561,-0.020244,0.249179,0,0);}
.m65_c00087{transform:matrix(0.291948,0.023719,-0.020244,0.249179,0,0);-ms-transform:matrix(0.291948,0.023719,-0.020244,0.249179,0,0);-webkit-transform:matrix(0.291948,0.023719,-0.020244,0.249179,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls0_c00087{letter-spacing:0.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
.fc0_c00087{color:transparent;}
.fs11_c00087{font-size:46.213165px;}
.fsc_c00087{font-size:56.695691px;}
.fs8_c00087{font-size:57.752887px;}
.fs14_c00087{font-size:57.768131px;}
.fsb_c00087{font-size:57.772085px;}
.fsf_c00087{font-size:58.817696px;}
.fsd_c00087{font-size:59.868012px;}
.fs13_c00087{font-size:59.868790px;}
.fsa_c00087{font-size:61.953097px;}
.fs12_c00087{font-size:61.969449px;}
.fs10_c00087{font-size:62.982515px;}
.fs5_c00087{font-size:62.999149px;}
.fs7_c00087{font-size:63.003150px;}
.fs6_c00087{font-size:63.018960px;}
.fs16_c00087{font-size:64.070109px;}
.fse_c00087{font-size:65.119592px;}
.fs9_c00087{font-size:66.153307px;}
.fs4_c00087{font-size:67.199093px;}
.fs2_c00087{font-size:67.223684px;}
.fs1_c00087{font-size:68.241980px;}
.fs15_c00087{font-size:68.271427px;}
.fs0_c00087{font-size:69.291857px;}
.fs3_c00087{font-size:70.374794px;}
.y0_c00087{bottom:0.000000px;}
.y9a_c00087{bottom:39.444630px;}
.y99_c00087{bottom:41.710446px;}
.y98_c00087{bottom:44.940978px;}
.y97_c00087{bottom:45.993930px;}
.y96_c00087{bottom:47.556543px;}
.y95_c00087{bottom:52.105890px;}
.y94_c00087{bottom:53.338182px;}
.y93_c00087{bottom:56.396082px;}
.y8e_c00087{bottom:57.882912px;}
.y92_c00087{bottom:58.087836px;}
.y91_c00087{bottom:59.866254px;}
.y90_c00087{bottom:61.171644px;}
.y8d_c00087{bottom:61.561677px;}
.y8f_c00087{bottom:62.386359px;}
.y8c_c00087{bottom:66.471288px;}
.y8b_c00087{bottom:70.207656px;}
.y8a_c00087{bottom:71.509944px;}
.y89_c00087{bottom:73.398735px;}
.y88_c00087{bottom:76.893708px;}
.y87_c00087{bottom:78.926778px;}
.y86_c00087{bottom:80.528370px;}
.y85_c00087{bottom:82.562838px;}
.y84_c00087{bottom:83.758512px;}
.y83_c00087{bottom:85.746282px;}
.y82_c00087{bottom:86.477727px;}
.y81_c00087{bottom:89.539734px;}
.y80_c00087{bottom:92.886942px;}
.y7d_c00087{bottom:93.097575px;}
.y7f_c00087{bottom:94.298973px;}
.y7e_c00087{bottom:95.876298px;}
.y7c_c00087{bottom:95.937606px;}
.y7b_c00087{bottom:97.429947px;}
.y7a_c00087{bottom:99.063300px;}
.y79_c00087{bottom:100.116453px;}
.y78_c00087{bottom:105.603273px;}
.y77_c00087{bottom:110.139801px;}
.y76_c00087{bottom:111.653496px;}
.y75_c00087{bottom:112.629495px;}
.y74_c00087{bottom:113.744508px;}
.y73_c00087{bottom:116.594082px;}
.y72_c00087{bottom:118.546566px;}
.y71_c00087{bottom:121.420722px;}
.y70_c00087{bottom:122.644620px;}
.y6f_c00087{bottom:124.852716px;}
.y6c_c00087{bottom:126.400799px;}
.y6e_c00087{bottom:126.671988px;}
.y6b_c00087{bottom:128.618902px;}
.y6d_c00087{bottom:129.651000px;}
.y6a_c00087{bottom:133.367973px;}
.y69_c00087{bottom:134.302430px;}
.y68_c00087{bottom:136.954167px;}
.y67_c00087{bottom:140.837793px;}
.y64_c00087{bottom:143.053923px;}
.y66_c00087{bottom:143.410556px;}
.y63_c00087{bottom:143.836647px;}
.y62_c00087{bottom:146.893500px;}
.y65_c00087{bottom:146.949000px;}
.y61_c00087{bottom:193.060093px;}
.y60_c00087{bottom:194.047902px;}
.y5f_c00087{bottom:196.805673px;}
.y5d_c00087{bottom:197.201601px;}
.y5e_c00087{bottom:197.672090px;}
.y5c_c00087{bottom:198.804226px;}
.y5b_c00087{bottom:200.248259px;}
.y5a_c00087{bottom:203.893034px;}
.y59_c00087{bottom:205.238394px;}
.y58_c00087{bottom:207.098667px;}
.y57_c00087{bottom:210.110773px;}
.y56_c00087{bottom:213.536749px;}
.y55_c00087{bottom:215.483215px;}
.y54_c00087{bottom:216.009000px;}
.y53_c00087{bottom:321.433488px;}
.y52_c00087{bottom:324.651939px;}
.y51_c00087{bottom:329.709000px;}
.y50_c00087{bottom:339.191556px;}
.y4f_c00087{bottom:340.142601px;}
.y4e_c00087{bottom:342.379849px;}
.y4d_c00087{bottom:345.097620px;}
.y4c_c00087{bottom:346.447155px;}
.y4b_c00087{bottom:347.834010px;}
.y4a_c00087{bottom:349.077976px;}
.y49_c00087{bottom:353.723781px;}
.y48_c00087{bottom:355.674031px;}
.y47_c00087{bottom:357.784500px;}
.y46_c00087{bottom:360.314553px;}
.y45_c00087{bottom:361.231101px;}
.y44_c00087{bottom:363.174978px;}
.y43_c00087{bottom:364.257630px;}
.y42_c00087{bottom:365.222289px;}
.y41_c00087{bottom:367.642761px;}
.y40_c00087{bottom:368.891571px;}
.y3f_c00087{bottom:372.433380px;}
.y3e_c00087{bottom:374.419860px;}
.y3d_c00087{bottom:377.642535px;}
.y3b_c00087{bottom:380.133501px;}
.y3c_c00087{bottom:381.282882px;}
.y3a_c00087{bottom:383.094069px;}
.y39_c00087{bottom:384.709605px;}
.y38_c00087{bottom:387.738639px;}
.y37_c00087{bottom:389.266932px;}
.y36_c00087{bottom:391.020552px;}
.y35_c00087{bottom:396.052110px;}
.y34_c00087{bottom:398.300697px;}
.y33_c00087{bottom:398.502624px;}
.y32_c00087{bottom:399.797088px;}
.y31_c00087{bottom:400.638336px;}
.y30_c00087{bottom:403.367136px;}
.y2f_c00087{bottom:404.546400px;}
.y2e_c00087{bottom:407.578560px;}
.y2d_c00087{bottom:408.931392px;}
.y2c_c00087{bottom:413.688000px;}
.y2b_c00087{bottom:422.349336px;}
.y2a_c00087{bottom:424.367406px;}
.y29_c00087{bottom:425.346223px;}
.y28_c00087{bottom:427.725373px;}
.y27_c00087{bottom:429.210621px;}
.y26_c00087{bottom:431.221500px;}
.y25_c00087{bottom:433.357721px;}
.y24_c00087{bottom:434.353389px;}
.y23_c00087{bottom:439.289510px;}
.y22_c00087{bottom:440.253948px;}
.y21_c00087{bottom:444.563887px;}
.y20_c00087{bottom:448.252655px;}
.y1f_c00087{bottom:453.275421px;}
.y1e_c00087{bottom:455.244042px;}
.y1d_c00087{bottom:456.446272px;}
.y1c_c00087{bottom:458.548673px;}
.y1b_c00087{bottom:459.334590px;}
.y1a_c00087{bottom:461.618989px;}
.y19_c00087{bottom:464.171797px;}
.y18_c00087{bottom:467.445898px;}
.y17_c00087{bottom:469.078669px;}
.y16_c00087{bottom:472.684223px;}
.y13_c00087{bottom:473.200749px;}
.y15_c00087{bottom:473.399399px;}
.y14_c00087{bottom:474.148500px;}
.y12_c00087{bottom:474.434677px;}
.y11_c00087{bottom:476.676052px;}
.y10_c00087{bottom:477.732963px;}
.yf_c00087{bottom:478.344553px;}
.ye_c00087{bottom:481.440114px;}
.yd_c00087{bottom:482.558106px;}
.yc_c00087{bottom:483.585288px;}
.yb_c00087{bottom:485.751114px;}
.ya_c00087{bottom:486.565824px;}
.y9_c00087{bottom:487.372500px;}
.y8_c00087{bottom:533.684034px;}
.y7_c00087{bottom:536.160812px;}
.y6_c00087{bottom:537.080107px;}
.y5_c00087{bottom:538.944656px;}
.y4_c00087{bottom:551.469033px;}
.y3_c00087{bottom:553.769100px;}
.y2_c00087{bottom:555.304347px;}
.y1_c00087{bottom:556.213500px;}
.h13_c00087{height:46.213165px;}
.he_c00087{height:56.695691px;}
.ha_c00087{height:57.752887px;}
.h16_c00087{height:57.768131px;}
.hd_c00087{height:57.772085px;}
.h11_c00087{height:58.817696px;}
.hf_c00087{height:59.868012px;}
.h15_c00087{height:59.868790px;}
.hc_c00087{height:61.953097px;}
.h14_c00087{height:61.969449px;}
.h12_c00087{height:62.982515px;}
.h7_c00087{height:62.999149px;}
.h9_c00087{height:63.003150px;}
.h8_c00087{height:63.018960px;}
.h18_c00087{height:64.070109px;}
.h10_c00087{height:65.119592px;}
.hb_c00087{height:66.153307px;}
.h6_c00087{height:67.199093px;}
.h4_c00087{height:67.223684px;}
.h3_c00087{height:68.241980px;}
.h17_c00087{height:68.271427px;}
.h2_c00087{height:69.291857px;}
.h5_c00087{height:70.374794px;}
.h1_c00087{height:612.000000px;}
.h0_c00087{height:612.300000px;}
.w0_c00087{width:361.500000px;}
.x0_c00087{left:0.000000px;}
.x34_c00087{left:38.325165px;}
.xe_c00087{left:45.053794px;}
.x1f_c00087{left:46.348500px;}
.x4d_c00087{left:53.149191px;}
.x53_c00087{left:56.558643px;}
.x41_c00087{left:59.969841px;}
.x35_c00087{left:61.302129px;}
.x4e_c00087{left:65.332362px;}
.x24_c00087{left:70.522500px;}
.x2c_c00087{left:79.208655px;}
.x54_c00087{left:82.776309px;}
.x4f_c00087{left:84.215088px;}
.x20_c00087{left:85.738071px;}
.x46_c00087{left:87.795946px;}
.x56_c00087{left:89.398887px;}
.x18_c00087{left:96.845341px;}
.x36_c00087{left:102.560868px;}
.x42_c00087{left:103.718823px;}
.x31_c00087{left:106.780455px;}
.xf_c00087{left:110.846035px;}
.x21_c00087{left:114.831448px;}
.x39_c00087{left:119.984264px;}
.x37_c00087{left:122.010054px;}
.x10_c00087{left:123.836889px;}
.x3a_c00087{left:126.145869px;}
.x3e_c00087{left:128.657940px;}
.x57_c00087{left:131.444304px;}
.x5a_c00087{left:137.808564px;}
.x50_c00087{left:140.818458px;}
.x19_c00087{left:142.413829px;}
.x25_c00087{left:144.695856px;}
.x11_c00087{left:146.306752px;}
.x4a_c00087{left:147.438930px;}
.x5c_c00087{left:151.610337px;}
.x2d_c00087{left:154.153536px;}
.x3f_c00087{left:156.827724px;}
.x1a_c00087{left:158.101768px;}
.x22_c00087{left:161.434798px;}
.x26_c00087{left:165.791580px;}
.x47_c00087{left:167.265321px;}
.x58_c00087{left:169.824246px;}
.x3b_c00087{left:177.952548px;}
.x14_c00087{left:179.092500px;}
.x23_c00087{left:180.608106px;}
.x5b_c00087{left:184.762575px;}
.x1c_c00087{left:187.515705px;}
.x15_c00087{left:190.959219px;}
.x12_c00087{left:193.927920px;}
.x38_c00087{left:196.884327px;}
.x1b_c00087{left:200.049078px;}
.x5_c00087{left:203.069356px;}
.x1_c00087{left:204.613500px;}
.x4b_c00087{left:207.583899px;}
.x9_c00087{left:209.356500px;}
.x3c_c00087{left:210.421500px;}
.x27_c00087{left:213.074325px;}
.x59_c00087{left:214.772382px;}
.x13_c00087{left:220.144969px;}
.x43_c00087{left:222.931500px;}
.xa_c00087{left:224.853987px;}
.x2_c00087{left:226.238354px;}
.x28_c00087{left:231.463473px;}
.x4c_c00087{left:236.239473px;}
.xb_c00087{left:240.505819px;}
.x51_c00087{left:242.806878px;}
.x6_c00087{left:245.419432px;}
.x2e_c00087{left:248.181615px;}
.x32_c00087{left:254.773203px;}
.x55_c00087{left:258.066882px;}
.x16_c00087{left:259.405053px;}
.x52_c00087{left:261.420348px;}
.x3_c00087{left:262.755300px;}
.x7_c00087{left:266.285779px;}
.x48_c00087{left:269.861108px;}
.x2f_c00087{left:272.248767px;}
.x29_c00087{left:274.015698px;}
.x33_c00087{left:275.887623px;}
.x40_c00087{left:278.526939px;}
.xc_c00087{left:282.114669px;}
.x17_c00087{left:285.270219px;}
.x2a_c00087{left:287.133909px;}
.x1d_c00087{left:292.654404px;}
.x49_c00087{left:297.162956px;}
.xd_c00087{left:301.848415px;}
.x44_c00087{left:303.294556px;}
.x2b_c00087{left:307.319457px;}
.x1e_c00087{left:310.403194px;}
.x30_c00087{left:316.352418px;}
.x4_c00087{left:317.464036px;}
.x8_c00087{left:322.519759px;}
.x45_c00087{left:323.871959px;}
.x3d_c00087{left:325.957349px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.fs11_c00087{font-size:41.078369pt;}
.fsc_c00087{font-size:50.396169pt;}
.fs8_c00087{font-size:51.335900pt;}
.fs14_c00087{font-size:51.349449pt;}
.fsb_c00087{font-size:51.352965pt;}
.fsf_c00087{font-size:52.282397pt;}
.fsd_c00087{font-size:53.216011pt;}
.fs13_c00087{font-size:53.216702pt;}
.fsa_c00087{font-size:55.069420pt;}
.fs12_c00087{font-size:55.083955pt;}
.fs10_c00087{font-size:55.984458pt;}
.fs5_c00087{font-size:55.999244pt;}
.fs7_c00087{font-size:56.002800pt;}
.fs6_c00087{font-size:56.016853pt;}
.fs16_c00087{font-size:56.951208pt;}
.fse_c00087{font-size:57.884082pt;}
.fs9_c00087{font-size:58.802940pt;}
.fs4_c00087{font-size:59.732527pt;}
.fs2_c00087{font-size:59.754386pt;}
.fs1_c00087{font-size:60.659538pt;}
.fs15_c00087{font-size:60.685713pt;}
.fs0_c00087{font-size:61.592762pt;}
.fs3_c00087{font-size:62.555372pt;}
.y0_c00087{bottom:0.000000pt;}
.y9a_c00087{bottom:35.061893pt;}
.y99_c00087{bottom:37.075952pt;}
.y98_c00087{bottom:39.947536pt;}
.y97_c00087{bottom:40.883493pt;}
.y96_c00087{bottom:42.272483pt;}
.y95_c00087{bottom:46.316347pt;}
.y94_c00087{bottom:47.411717pt;}
.y93_c00087{bottom:50.129851pt;}
.y8e_c00087{bottom:51.451477pt;}
.y92_c00087{bottom:51.633632pt;}
.y91_c00087{bottom:53.214448pt;}
.y90_c00087{bottom:54.374795pt;}
.y8d_c00087{bottom:54.721491pt;}
.y8f_c00087{bottom:55.454541pt;}
.y8c_c00087{bottom:59.085589pt;}
.y8b_c00087{bottom:62.406805pt;}
.y8a_c00087{bottom:63.564395pt;}
.y89_c00087{bottom:65.243320pt;}
.y88_c00087{bottom:68.349963pt;}
.y87_c00087{bottom:70.157136pt;}
.y86_c00087{bottom:71.580773pt;}
.y85_c00087{bottom:73.389189pt;}
.y84_c00087{bottom:74.452011pt;}
.y83_c00087{bottom:76.218917pt;}
.y82_c00087{bottom:76.869091pt;}
.y81_c00087{bottom:79.590875pt;}
.y80_c00087{bottom:82.566171pt;}
.y7d_c00087{bottom:82.753400pt;}
.y7f_c00087{bottom:83.821309pt;}
.y7e_c00087{bottom:85.223376pt;}
.y7c_c00087{bottom:85.277872pt;}
.y7b_c00087{bottom:86.604397pt;}
.y7a_c00087{bottom:88.056267pt;}
.y79_c00087{bottom:88.992403pt;}
.y78_c00087{bottom:93.869576pt;}
.y77_c00087{bottom:97.902045pt;}
.y76_c00087{bottom:99.247552pt;}
.y75_c00087{bottom:100.115107pt;}
.y74_c00087{bottom:101.106229pt;}
.y73_c00087{bottom:103.639184pt;}
.y72_c00087{bottom:105.374725pt;}
.y71_c00087{bottom:107.929531pt;}
.y70_c00087{bottom:109.017440pt;}
.y6f_c00087{bottom:110.980192pt;}
.y6c_c00087{bottom:112.356265pt;}
.y6e_c00087{bottom:112.597323pt;}
.y6b_c00087{bottom:114.327913pt;}
.y6d_c00087{bottom:115.245333pt;}
.y6a_c00087{bottom:118.549309pt;}
.y69_c00087{bottom:119.379937pt;}
.y68_c00087{bottom:121.737037pt;}
.y67_c00087{bottom:125.189149pt;}
.y64_c00087{bottom:127.159043pt;}
.y66_c00087{bottom:127.476049pt;}
.y63_c00087{bottom:127.854797pt;}
.y62_c00087{bottom:130.572000pt;}
.y65_c00087{bottom:130.621333pt;}
.y61_c00087{bottom:171.608972pt;}
.y60_c00087{bottom:172.487024pt;}
.y5f_c00087{bottom:174.938376pt;}
.y5d_c00087{bottom:175.290312pt;}
.y5e_c00087{bottom:175.708524pt;}
.y5c_c00087{bottom:176.714868pt;}
.y5b_c00087{bottom:177.998452pt;}
.y5a_c00087{bottom:181.238252pt;}
.y59_c00087{bottom:182.434128pt;}
.y58_c00087{bottom:184.087704pt;}
.y57_c00087{bottom:186.765132pt;}
.y56_c00087{bottom:189.810444pt;}
.y55_c00087{bottom:191.540636pt;}
.y54_c00087{bottom:192.008000pt;}
.y53_c00087{bottom:285.718656pt;}
.y52_c00087{bottom:288.579501pt;}
.y51_c00087{bottom:293.074667pt;}
.y50_c00087{bottom:301.503605pt;}
.y4f_c00087{bottom:302.348979pt;}
.y4e_c00087{bottom:304.337644pt;}
.y4d_c00087{bottom:306.753440pt;}
.y4c_c00087{bottom:307.953027pt;}
.y4b_c00087{bottom:309.185787pt;}
.y4a_c00087{bottom:310.291535pt;}
.y49_c00087{bottom:314.421139pt;}
.y48_c00087{bottom:316.154695pt;}
.y47_c00087{bottom:318.030667pt;}
.y46_c00087{bottom:320.279603pt;}
.y45_c00087{bottom:321.094312pt;}
.y44_c00087{bottom:322.822203pt;}
.y43_c00087{bottom:323.784560pt;}
.y42_c00087{bottom:324.642035pt;}
.y41_c00087{bottom:326.793565pt;}
.y40_c00087{bottom:327.903619pt;}
.y3f_c00087{bottom:331.051893pt;}
.y3e_c00087{bottom:332.817653pt;}
.y3d_c00087{bottom:335.682253pt;}
.y3b_c00087{bottom:337.896445pt;}
.y3c_c00087{bottom:338.918117pt;}
.y3a_c00087{bottom:340.528061pt;}
.y39_c00087{bottom:341.964093pt;}
.y38_c00087{bottom:344.656568pt;}
.y37_c00087{bottom:346.015051pt;}
.y36_c00087{bottom:347.573824pt;}
.y35_c00087{bottom:352.046320pt;}
.y34_c00087{bottom:354.045064pt;}
.y33_c00087{bottom:354.224555pt;}
.y32_c00087{bottom:355.375189pt;}
.y31_c00087{bottom:356.122965pt;}
.y30_c00087{bottom:358.548565pt;}
.y2f_c00087{bottom:359.596800pt;}
.y2e_c00087{bottom:362.292053pt;}
.y2d_c00087{bottom:363.494571pt;}
.y2c_c00087{bottom:367.722667pt;}
.y2b_c00087{bottom:375.421632pt;}
.y2a_c00087{bottom:377.215472pt;}
.y29_c00087{bottom:378.085532pt;}
.y28_c00087{bottom:380.200332pt;}
.y27_c00087{bottom:381.520552pt;}
.y26_c00087{bottom:383.308000pt;}
.y25_c00087{bottom:385.206863pt;}
.y24_c00087{bottom:386.091901pt;}
.y23_c00087{bottom:390.479564pt;}
.y22_c00087{bottom:391.336843pt;}
.y21_c00087{bottom:395.167900pt;}
.y20_c00087{bottom:398.446804pt;}
.y1f_c00087{bottom:402.911485pt;}
.y1e_c00087{bottom:404.661371pt;}
.y1d_c00087{bottom:405.730020pt;}
.y1c_c00087{bottom:407.598820pt;}
.y1b_c00087{bottom:408.297413pt;}
.y1a_c00087{bottom:410.327991pt;}
.y19_c00087{bottom:412.597153pt;}
.y18_c00087{bottom:415.507465pt;}
.y17_c00087{bottom:416.958817pt;}
.y16_c00087{bottom:420.163753pt;}
.y13_c00087{bottom:420.622888pt;}
.y15_c00087{bottom:420.799465pt;}
.y14_c00087{bottom:421.465333pt;}
.y12_c00087{bottom:421.719713pt;}
.y11_c00087{bottom:423.712047pt;}
.y10_c00087{bottom:424.651523pt;}
.yf_c00087{bottom:425.195159pt;}
.ye_c00087{bottom:427.946768pt;}
.yd_c00087{bottom:428.940539pt;}
.yc_c00087{bottom:429.853589pt;}
.yb_c00087{bottom:431.778768pt;}
.ya_c00087{bottom:432.502955pt;}
.y9_c00087{bottom:433.220000pt;}
.y8_c00087{bottom:474.385808pt;}
.y7_c00087{bottom:476.587388pt;}
.y6_c00087{bottom:477.404540pt;}
.y5_c00087{bottom:479.061916pt;}
.y4_c00087{bottom:490.194696pt;}
.y3_c00087{bottom:492.239200pt;}
.y2_c00087{bottom:493.603864pt;}
.y1_c00087{bottom:494.412000pt;}
.h13_c00087{height:41.078369pt;}
.he_c00087{height:50.396169pt;}
.ha_c00087{height:51.335900pt;}
.h16_c00087{height:51.349449pt;}
.hd_c00087{height:51.352965pt;}
.h11_c00087{height:52.282397pt;}
.hf_c00087{height:53.216011pt;}
.h15_c00087{height:53.216702pt;}
.hc_c00087{height:55.069420pt;}
.h14_c00087{height:55.083955pt;}
.h12_c00087{height:55.984458pt;}
.h7_c00087{height:55.999244pt;}
.h9_c00087{height:56.002800pt;}
.h8_c00087{height:56.016853pt;}
.h18_c00087{height:56.951208pt;}
.h10_c00087{height:57.884082pt;}
.hb_c00087{height:58.802940pt;}
.h6_c00087{height:59.732527pt;}
.h4_c00087{height:59.754386pt;}
.h3_c00087{height:60.659538pt;}
.h17_c00087{height:60.685713pt;}
.h2_c00087{height:61.592762pt;}
.h5_c00087{height:62.555372pt;}
.h1_c00087{height:544.000000pt;}
.h0_c00087{height:544.266667pt;}
.w0_c00087{width:321.333333pt;}
.x0_c00087{left:0.000000pt;}
.x34_c00087{left:34.066813pt;}
.xe_c00087{left:40.047817pt;}
.x1f_c00087{left:41.198667pt;}
.x4d_c00087{left:47.243725pt;}
.x53_c00087{left:50.274349pt;}
.x41_c00087{left:53.306525pt;}
.x35_c00087{left:54.490781pt;}
.x4e_c00087{left:58.073211pt;}
.x24_c00087{left:62.686667pt;}
.x2c_c00087{left:70.407693pt;}
.x54_c00087{left:73.578941pt;}
.x4f_c00087{left:74.857856pt;}
.x20_c00087{left:76.211619pt;}
.x46_c00087{left:78.040841pt;}
.x56_c00087{left:79.465677pt;}
.x18_c00087{left:86.084748pt;}
.x36_c00087{left:91.165216pt;}
.x42_c00087{left:92.194509pt;}
.x31_c00087{left:94.915960pt;}
.xf_c00087{left:98.529809pt;}
.x21_c00087{left:102.072399pt;}
.x39_c00087{left:106.652679pt;}
.x37_c00087{left:108.453381pt;}
.x10_c00087{left:110.077235pt;}
.x3a_c00087{left:112.129661pt;}
.x3e_c00087{left:114.362613pt;}
.x57_c00087{left:116.839381pt;}
.x5a_c00087{left:122.496501pt;}
.x50_c00087{left:125.171963pt;}
.x19_c00087{left:126.590071pt;}
.x25_c00087{left:128.618539pt;}
.x11_c00087{left:130.050447pt;}
.x4a_c00087{left:131.056827pt;}
.x5c_c00087{left:134.764744pt;}
.x2d_c00087{left:137.025365pt;}
.x3f_c00087{left:139.402421pt;}
.x1a_c00087{left:140.534905pt;}
.x22_c00087{left:143.497599pt;}
.x26_c00087{left:147.370293pt;}
.x47_c00087{left:148.680285pt;}
.x58_c00087{left:150.954885pt;}
.x3b_c00087{left:158.180043pt;}
.x14_c00087{left:159.193333pt;}
.x23_c00087{left:160.540539pt;}
.x5b_c00087{left:164.233400pt;}
.x1c_c00087{left:166.680627pt;}
.x15_c00087{left:169.741528pt;}
.x12_c00087{left:172.380373pt;}
.x38_c00087{left:175.008291pt;}
.x1b_c00087{left:177.821403pt;}
.x5_c00087{left:180.506095pt;}
.x1_c00087{left:181.878667pt;}
.x4b_c00087{left:184.519021pt;}
.x9_c00087{left:186.094667pt;}
.x3c_c00087{left:187.041333pt;}
.x27_c00087{left:189.399400pt;}
.x59_c00087{left:190.908784pt;}
.x13_c00087{left:195.684417pt;}
.x43_c00087{left:198.161333pt;}
.xa_c00087{left:199.870211pt;}
.x2_c00087{left:201.100759pt;}
.x28_c00087{left:205.745309pt;}
.x4c_c00087{left:209.990643pt;}
.xb_c00087{left:213.782951pt;}
.x51_c00087{left:215.828336pt;}
.x6_c00087{left:218.150607pt;}
.x2e_c00087{left:220.605880pt;}
.x32_c00087{left:226.465069pt;}
.x55_c00087{left:229.392784pt;}
.x16_c00087{left:230.582269pt;}
.x52_c00087{left:232.373643pt;}
.x3_c00087{left:233.560267pt;}
.x7_c00087{left:236.698471pt;}
.x48_c00087{left:239.876540pt;}
.x2f_c00087{left:241.998904pt;}
.x29_c00087{left:243.569509pt;}
.x33_c00087{left:245.233443pt;}
.x40_c00087{left:247.579501pt;}
.xc_c00087{left:250.768595pt;}
.x17_c00087{left:253.573528pt;}
.x2a_c00087{left:255.230141pt;}
.x1d_c00087{left:260.137248pt;}
.x49_c00087{left:264.144849pt;}
.xd_c00087{left:268.309703pt;}
.x44_c00087{left:269.595161pt;}
.x2b_c00087{left:273.172851pt;}
.x1e_c00087{left:275.913951pt;}
.x30_c00087{left:281.202149pt;}
.x4_c00087{left:282.190255pt;}
.x8_c00087{left:286.684231pt;}
.x45_c00087{left:287.886185pt;}
.x3d_c00087{left:289.739865pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00088 {
    display:none;
  }
  .loading-indicator_c00088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00088 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00088 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00088" -> "#page-container .classname_c00088")
 */
.pf_c00088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00088 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00088 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00088 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00088 {overflow:visible;}
  }
}
.c_c00088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00088 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00088:after { /* webkit #35443 */
  content: '';
}
.t_c00088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00088 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00088 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00088 { /* info for Javascript */
  display:none;
}
.l_c00088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00088:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00088 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00088.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00088{transform:matrix(0.018070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018070,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.023560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023560,0.000000,0.000000,0.250000,0,0);}
.maf_c00088{transform:matrix(0.136175,-0.001634,0.003000,0.249982,0,0);-ms-transform:matrix(0.136175,-0.001634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.136175,-0.001634,0.003000,0.249982,0,0);}
.m1f_c00088{transform:matrix(0.138745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138745,0.000000,0.000000,0.250000,0,0);}
.m9f_c00088{transform:matrix(0.140430,-0.001685,0.003000,0.249982,0,0);-ms-transform:matrix(0.140430,-0.001685,0.003000,0.249982,0,0);-webkit-transform:matrix(0.140430,-0.001685,0.003000,0.249982,0,0);}
.mee_c00088{transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);}
.m8d_c00088{transform:matrix(0.146944,-0.001763,0.003000,0.249982,0,0);-ms-transform:matrix(0.146944,-0.001763,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146944,-0.001763,0.003000,0.249982,0,0);}
.mec_c00088{transform:matrix(0.148595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148595,0.000000,0.000000,0.250000,0,0);}
.ma5_c00088{transform:matrix(0.148839,-0.001786,0.003000,0.249982,0,0);-ms-transform:matrix(0.148839,-0.001786,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148839,-0.001786,0.003000,0.249982,0,0);}
.maa_c00088{transform:matrix(0.149314,-0.001792,0.003000,0.249982,0,0);-ms-transform:matrix(0.149314,-0.001792,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149314,-0.001792,0.003000,0.249982,0,0);}
.m3a_c00088{transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);}
.mae_c00088{transform:matrix(0.151709,-0.001821,0.003000,0.249982,0,0);-ms-transform:matrix(0.151709,-0.001821,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151709,-0.001821,0.003000,0.249982,0,0);}
.med_c00088{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m18_c00088{transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);}
.m61_c00088{transform:matrix(0.155099,-0.001861,0.003000,0.249982,0,0);-ms-transform:matrix(0.155099,-0.001861,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155099,-0.001861,0.003000,0.249982,0,0);}
.m2a_c00088{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m53_c00088{transform:matrix(0.155319,-0.001864,0.003000,0.249982,0,0);-ms-transform:matrix(0.155319,-0.001864,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155319,-0.001864,0.003000,0.249982,0,0);}
.mdb_c00088{transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m94_c00088{transform:matrix(0.157219,-0.001887,0.003000,0.249982,0,0);-ms-transform:matrix(0.157219,-0.001887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157219,-0.001887,0.003000,0.249982,0,0);}
.m12_c00088{transform:matrix(0.157570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157570,0.000000,0.000000,0.250000,0,0);}
.m78_c00088{transform:matrix(0.159014,-0.001908,0.003000,0.249982,0,0);-ms-transform:matrix(0.159014,-0.001908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159014,-0.001908,0.003000,0.249982,0,0);}
.m52_c00088{transform:matrix(0.159124,-0.001909,0.003000,0.249982,0,0);-ms-transform:matrix(0.159124,-0.001909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159124,-0.001909,0.003000,0.249982,0,0);}
.ma1_c00088{transform:matrix(0.159469,-0.001914,0.003000,0.249982,0,0);-ms-transform:matrix(0.159469,-0.001914,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159469,-0.001914,0.003000,0.249982,0,0);}
.me4_c00088{transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);}
.mab_c00088{transform:matrix(0.159604,-0.001915,0.003000,0.249982,0,0);-ms-transform:matrix(0.159604,-0.001915,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159604,-0.001915,0.003000,0.249982,0,0);}
.m48_c00088{transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.mc5_c00088{transform:matrix(0.161843,-0.001942,0.003000,0.249982,0,0);-ms-transform:matrix(0.161843,-0.001942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161843,-0.001942,0.003000,0.249982,0,0);}
.m45_c00088{transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);}
.mc6_c00088{transform:matrix(0.162498,-0.001950,0.003000,0.249982,0,0);-ms-transform:matrix(0.162498,-0.001950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162498,-0.001950,0.003000,0.249982,0,0);}
.meb_c00088{transform:matrix(0.163070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163070,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);}
.mf0_c00088{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.ma7_c00088{transform:matrix(0.164168,-0.001970,0.003000,0.249982,0,0);-ms-transform:matrix(0.164168,-0.001970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164168,-0.001970,0.003000,0.249982,0,0);}
.mc0_c00088{transform:matrix(0.164333,-0.001972,0.003000,0.249982,0,0);-ms-transform:matrix(0.164333,-0.001972,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164333,-0.001972,0.003000,0.249982,0,0);}
.m9_c00088{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);}
.mb6_c00088{transform:matrix(0.166113,-0.001993,0.003000,0.249982,0,0);-ms-transform:matrix(0.166113,-0.001993,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166113,-0.001993,0.003000,0.249982,0,0);}
.m11_c00088{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.m88_c00088{transform:matrix(0.166933,-0.002003,0.003000,0.249982,0,0);-ms-transform:matrix(0.166933,-0.002003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166933,-0.002003,0.003000,0.249982,0,0);}
.m25_c00088{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m4a_c00088{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.md0_c00088{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.mba_c00088{transform:matrix(0.169398,-0.002033,0.003000,0.249982,0,0);-ms-transform:matrix(0.169398,-0.002033,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169398,-0.002033,0.003000,0.249982,0,0);}
.mf1_c00088{transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);}
.me6_c00088{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);}
.mdd_c00088{transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);}
.m85_c00088{transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);-ms-transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);}
.m5f_c00088{transform:matrix(0.171538,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171538,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171538,-0.002058,0.003000,0.249982,0,0);}
.m9d_c00088{transform:matrix(0.171778,-0.002061,0.003000,0.249982,0,0);-ms-transform:matrix(0.171778,-0.002061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171778,-0.002061,0.003000,0.249982,0,0);}
.mb3_c00088{transform:matrix(0.171853,-0.002062,0.003000,0.249982,0,0);-ms-transform:matrix(0.171853,-0.002062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171853,-0.002062,0.003000,0.249982,0,0);}
.m10_c00088{transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.mb5_c00088{transform:matrix(0.174282,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174282,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174282,-0.002091,0.003000,0.249982,0,0);}
.m20_c00088{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.mad_c00088{transform:matrix(0.174652,-0.002096,0.003000,0.249982,0,0);-ms-transform:matrix(0.174652,-0.002096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174652,-0.002096,0.003000,0.249982,0,0);}
.m35_c00088{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.m5c_c00088{transform:matrix(0.176122,-0.002113,0.003000,0.249982,0,0);-ms-transform:matrix(0.176122,-0.002113,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176122,-0.002113,0.003000,0.249982,0,0);}
.me8_c00088{transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.176387,-0.002117,0.003000,0.249982,0,0);-ms-transform:matrix(0.176387,-0.002117,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176387,-0.002117,0.003000,0.249982,0,0);}
.m26_c00088{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00088{transform:matrix(0.177217,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177217,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177217,-0.002127,0.003000,0.249982,0,0);}
.m99_c00088{transform:matrix(0.177252,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177252,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177252,-0.002127,0.003000,0.249982,0,0);}
.m66_c00088{transform:matrix(0.177672,-0.002132,0.003000,0.249982,0,0);-ms-transform:matrix(0.177672,-0.002132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177672,-0.002132,0.003000,0.249982,0,0);}
.m63_c00088{transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);}
.me3_c00088{transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);}
.mbd_c00088{transform:matrix(0.177957,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177957,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177957,-0.002135,0.003000,0.249982,0,0);}
.m55_c00088{transform:matrix(0.178572,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178572,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178572,-0.002143,0.003000,0.249982,0,0);}
.m81_c00088{transform:matrix(0.179232,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179232,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179232,-0.002151,0.003000,0.249982,0,0);}
.m59_c00088{transform:matrix(0.179267,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179267,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179267,-0.002151,0.003000,0.249982,0,0);}
.mcb_c00088{transform:matrix(0.179432,-0.002153,0.003000,0.249982,0,0);-ms-transform:matrix(0.179432,-0.002153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179432,-0.002153,0.003000,0.249982,0,0);}
.m19_c00088{transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);}
.mc2_c00088{transform:matrix(0.180122,-0.002161,0.003000,0.249982,0,0);-ms-transform:matrix(0.180122,-0.002161,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180122,-0.002161,0.003000,0.249982,0,0);}
.m5_c00088{transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);}
.m97_c00088{transform:matrix(0.181422,-0.002177,0.003000,0.249982,0,0);-ms-transform:matrix(0.181422,-0.002177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181422,-0.002177,0.003000,0.249982,0,0);}
.mb0_c00088{transform:matrix(0.181692,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181692,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181692,-0.002180,0.003000,0.249982,0,0);}
.m15_c00088{transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.mac_c00088{transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);-ms-transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);}
.m1c_c00088{transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);}
.m8a_c00088{transform:matrix(0.183477,-0.002202,0.003000,0.249982,0,0);-ms-transform:matrix(0.183477,-0.002202,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183477,-0.002202,0.003000,0.249982,0,0);}
.m3f_c00088{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.mc4_c00088{transform:matrix(0.184727,-0.002217,0.003000,0.249982,0,0);-ms-transform:matrix(0.184727,-0.002217,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184727,-0.002217,0.003000,0.249982,0,0);}
.m54_c00088{transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);}
.m89_c00088{transform:matrix(0.185077,-0.002221,0.003000,0.249982,0,0);-ms-transform:matrix(0.185077,-0.002221,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185077,-0.002221,0.003000,0.249982,0,0);}
.mdc_c00088{transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);}
.mb7_c00088{transform:matrix(0.185367,-0.002224,0.003000,0.249982,0,0);-ms-transform:matrix(0.185367,-0.002224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185367,-0.002224,0.003000,0.249982,0,0);}
.m8b_c00088{transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);-ms-transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);}
.m51_c00088{transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);-ms-transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);}
.m5b_c00088{transform:matrix(0.186142,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186142,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186142,-0.002234,0.003000,0.249982,0,0);}
.mb1_c00088{transform:matrix(0.186147,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186147,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186147,-0.002234,0.003000,0.249982,0,0);}
.m14_c00088{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m60_c00088{transform:matrix(0.186747,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186747,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186747,-0.002241,0.003000,0.249982,0,0);}
.m71_c00088{transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);}
.m21_c00088{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);}
.mc1_c00088{transform:matrix(0.191081,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191081,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191081,-0.002293,0.003000,0.249982,0,0);}
.m39_c00088{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mc9_c00088{transform:matrix(0.192121,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192121,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192121,-0.002305,0.003000,0.249982,0,0);}
.m24_c00088{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m6b_c00088{transform:matrix(0.192246,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192246,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192246,-0.002307,0.003000,0.249982,0,0);}
.m5d_c00088{transform:matrix(0.192346,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192346,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192346,-0.002308,0.003000,0.249982,0,0);}
.m77_c00088{transform:matrix(0.192426,-0.002309,0.003000,0.249982,0,0);-ms-transform:matrix(0.192426,-0.002309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192426,-0.002309,0.003000,0.249982,0,0);}
.md5_c00088{transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.mbb_c00088{transform:matrix(0.193636,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193636,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193636,-0.002324,0.003000,0.249982,0,0);}
.mc_c00088{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.me1_c00088{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.194556,-0.002335,0.003000,0.249982,0,0);-ms-transform:matrix(0.194556,-0.002335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194556,-0.002335,0.003000,0.249982,0,0);}
.m1a_c00088{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.m7a_c00088{transform:matrix(0.195096,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195096,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195096,-0.002341,0.003000,0.249982,0,0);}
.m46_c00088{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.mb9_c00088{transform:matrix(0.195186,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195186,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195186,-0.002342,0.003000,0.249982,0,0);}
.md9_c00088{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.195316,-0.002344,0.003000,0.249982,0,0);-ms-transform:matrix(0.195316,-0.002344,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195316,-0.002344,0.003000,0.249982,0,0);}
.m6e_c00088{transform:matrix(0.195621,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195621,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195621,-0.002347,0.003000,0.249982,0,0);}
.m9e_c00088{transform:matrix(0.195666,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195666,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195666,-0.002348,0.003000,0.249982,0,0);}
.m5a_c00088{transform:matrix(0.196056,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196056,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196056,-0.002353,0.003000,0.249982,0,0);}
.mef_c00088{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.me2_c00088{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.m9c_c00088{transform:matrix(0.196966,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.196966,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196966,-0.002364,0.003000,0.249982,0,0);}
.m82_c00088{transform:matrix(0.196981,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.196981,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196981,-0.002364,0.003000,0.249982,0,0);}
.md8_c00088{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m75_c00088{transform:matrix(0.197316,-0.002368,0.003000,0.249982,0,0);-ms-transform:matrix(0.197316,-0.002368,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197316,-0.002368,0.003000,0.249982,0,0);}
.mea_c00088{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.m56_c00088{transform:matrix(0.198116,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198116,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198116,-0.002377,0.003000,0.249982,0,0);}
.mc3_c00088{transform:matrix(0.198146,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198146,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198146,-0.002378,0.003000,0.249982,0,0);}
.m79_c00088{transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198156,-0.002378,0.003000,0.249982,0,0);}
.mcc_c00088{transform:matrix(0.198321,-0.002380,0.003000,0.249982,0,0);-ms-transform:matrix(0.198321,-0.002380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198321,-0.002380,0.003000,0.249982,0,0);}
.m3b_c00088{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.mbc_c00088{transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);-ms-transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);}
.ma_c00088{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.m7d_c00088{transform:matrix(0.199436,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199436,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199436,-0.002393,0.003000,0.249982,0,0);}
.me5_c00088{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00088{transform:matrix(0.199811,-0.002398,0.003000,0.249982,0,0);-ms-transform:matrix(0.199811,-0.002398,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199811,-0.002398,0.003000,0.249982,0,0);}
.ma8_c00088{transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);}
.m69_c00088{transform:matrix(0.200631,-0.002408,0.003000,0.249982,0,0);-ms-transform:matrix(0.200631,-0.002408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200631,-0.002408,0.003000,0.249982,0,0);}
.ma6_c00088{transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);-ms-transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);}
.ma3_c00088{transform:matrix(0.202530,-0.002430,0.003000,0.249982,0,0);-ms-transform:matrix(0.202530,-0.002430,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202530,-0.002430,0.003000,0.249982,0,0);}
.m44_c00088{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m92_c00088{transform:matrix(0.202995,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202995,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202995,-0.002436,0.003000,0.249982,0,0);}
.mdf_c00088{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m62_c00088{transform:matrix(0.203535,-0.002442,0.003000,0.249982,0,0);-ms-transform:matrix(0.203535,-0.002442,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203535,-0.002442,0.003000,0.249982,0,0);}
.mbf_c00088{transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);}
.m8c_c00088{transform:matrix(0.205060,-0.002461,0.003000,0.249982,0,0);-ms-transform:matrix(0.205060,-0.002461,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205060,-0.002461,0.003000,0.249982,0,0);}
.m65_c00088{transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);}
.md_c00088{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m7b_c00088{transform:matrix(0.205675,-0.002468,0.003000,0.249982,0,0);-ms-transform:matrix(0.205675,-0.002468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205675,-0.002468,0.003000,0.249982,0,0);}
.mbe_c00088{transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);}
.ma9_c00088{transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);}
.m64_c00088{transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);}
.m9b_c00088{transform:matrix(0.205950,-0.002471,0.003000,0.249982,0,0);-ms-transform:matrix(0.205950,-0.002471,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205950,-0.002471,0.003000,0.249982,0,0);}
.me7_c00088{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{transform:matrix(0.206705,-0.002480,0.003000,0.249982,0,0);-ms-transform:matrix(0.206705,-0.002480,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206705,-0.002480,0.003000,0.249982,0,0);}
.m49_c00088{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.m93_c00088{transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);}
.m2e_c00088{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m96_c00088{transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);}
.mde_c00088{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.mb4_c00088{transform:matrix(0.208055,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208055,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208055,-0.002497,0.003000,0.249982,0,0);}
.ma4_c00088{transform:matrix(0.208370,-0.002500,0.003000,0.249982,0,0);-ms-transform:matrix(0.208370,-0.002500,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208370,-0.002500,0.003000,0.249982,0,0);}
.mc8_c00088{transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);}
.mce_c00088{transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);}
.m95_c00088{transform:matrix(0.210090,-0.002521,0.003000,0.249982,0,0);-ms-transform:matrix(0.210090,-0.002521,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210090,-0.002521,0.003000,0.249982,0,0);}
.m30_c00088{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.mb2_c00088{transform:matrix(0.211625,-0.002539,0.003000,0.249982,0,0);-ms-transform:matrix(0.211625,-0.002539,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211625,-0.002539,0.003000,0.249982,0,0);}
.md3_c00088{transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);}
.mc7_c00088{transform:matrix(0.212250,-0.002547,0.003000,0.249982,0,0);-ms-transform:matrix(0.212250,-0.002547,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212250,-0.002547,0.003000,0.249982,0,0);}
.md4_c00088{transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.mb8_c00088{transform:matrix(0.212950,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212950,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212950,-0.002555,0.003000,0.249982,0,0);}
.m7e_c00088{transform:matrix(0.213070,-0.002557,0.003000,0.249982,0,0);-ms-transform:matrix(0.213070,-0.002557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213070,-0.002557,0.003000,0.249982,0,0);}
.mcf_c00088{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.ma0_c00088{transform:matrix(0.213685,-0.002564,0.003000,0.249982,0,0);-ms-transform:matrix(0.213685,-0.002564,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213685,-0.002564,0.003000,0.249982,0,0);}
.m28_c00088{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m68_c00088{transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);}
.m1d_c00088{transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);}
.m86_c00088{transform:matrix(0.215030,-0.002580,0.003000,0.249982,0,0);-ms-transform:matrix(0.215030,-0.002580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215030,-0.002580,0.003000,0.249982,0,0);}
.m84_c00088{transform:matrix(0.215270,-0.002583,0.003000,0.249982,0,0);-ms-transform:matrix(0.215270,-0.002583,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215270,-0.002583,0.003000,0.249982,0,0);}
.m70_c00088{transform:matrix(0.215374,-0.002584,0.003000,0.249982,0,0);-ms-transform:matrix(0.215374,-0.002584,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215374,-0.002584,0.003000,0.249982,0,0);}
.m67_c00088{transform:matrix(0.215999,-0.002592,0.003000,0.249982,0,0);-ms-transform:matrix(0.215999,-0.002592,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215999,-0.002592,0.003000,0.249982,0,0);}
.m98_c00088{transform:matrix(0.216764,-0.002601,0.003000,0.249982,0,0);-ms-transform:matrix(0.216764,-0.002601,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216764,-0.002601,0.003000,0.249982,0,0);}
.m91_c00088{transform:matrix(0.216834,-0.002602,0.003000,0.249982,0,0);-ms-transform:matrix(0.216834,-0.002602,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216834,-0.002602,0.003000,0.249982,0,0);}
.m0_c00088{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.m2f_c00088{transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m23_c00088{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m37_c00088{transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);}
.mcd_c00088{transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00088{transform:matrix(0.220999,-0.002652,0.003000,0.249982,0,0);-ms-transform:matrix(0.220999,-0.002652,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220999,-0.002652,0.003000,0.249982,0,0);}
.me0_c00088{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m40_c00088{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.md6_c00088{transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);}
.m3d_c00088{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00088{transform:matrix(0.222779,-0.002673,0.003000,0.249982,0,0);-ms-transform:matrix(0.222779,-0.002673,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222779,-0.002673,0.003000,0.249982,0,0);}
.m90_c00088{transform:matrix(0.223304,-0.002680,0.003000,0.249982,0,0);-ms-transform:matrix(0.223304,-0.002680,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223304,-0.002680,0.003000,0.249982,0,0);}
.md7_c00088{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.ma2_c00088{transform:matrix(0.224319,-0.002692,0.003000,0.249982,0,0);-ms-transform:matrix(0.224319,-0.002692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224319,-0.002692,0.003000,0.249982,0,0);}
.m1e_c00088{transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);}
.m6c_c00088{transform:matrix(0.225214,-0.002703,0.003000,0.249982,0,0);-ms-transform:matrix(0.225214,-0.002703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225214,-0.002703,0.003000,0.249982,0,0);}
.m1_c00088{transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);}
.m87_c00088{transform:matrix(0.228704,-0.002744,0.003000,0.249982,0,0);-ms-transform:matrix(0.228704,-0.002744,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228704,-0.002744,0.003000,0.249982,0,0);}
.m8e_c00088{transform:matrix(0.229034,-0.002748,0.003000,0.249982,0,0);-ms-transform:matrix(0.229034,-0.002748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229034,-0.002748,0.003000,0.249982,0,0);}
.m42_c00088{transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);}
.m33_c00088{transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.m4e_c00088{transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);}
.m5e_c00088{transform:matrix(0.231518,-0.002778,0.003000,0.249982,0,0);-ms-transform:matrix(0.231518,-0.002778,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231518,-0.002778,0.003000,0.249982,0,0);}
.m80_c00088{transform:matrix(0.231613,-0.002779,0.003000,0.249982,0,0);-ms-transform:matrix(0.231613,-0.002779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231613,-0.002779,0.003000,0.249982,0,0);}
.m76_c00088{transform:matrix(0.232998,-0.002796,0.003000,0.249982,0,0);-ms-transform:matrix(0.232998,-0.002796,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232998,-0.002796,0.003000,0.249982,0,0);}
.mca_c00088{transform:matrix(0.233208,-0.002798,0.003000,0.249982,0,0);-ms-transform:matrix(0.233208,-0.002798,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233208,-0.002798,0.003000,0.249982,0,0);}
.me9_c00088{transform:matrix(0.236080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236080,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m72_c00088{transform:matrix(0.240293,-0.002884,0.003000,0.249982,0,0);-ms-transform:matrix(0.240293,-0.002884,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240293,-0.002884,0.003000,0.249982,0,0);}
.md1_c00088{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);}
.m74_c00088{transform:matrix(0.269266,-0.003231,0.003000,0.249982,0,0);-ms-transform:matrix(0.269266,-0.003231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269266,-0.003231,0.003000,0.249982,0,0);}
.md2_c00088{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m6f_c00088{transform:matrix(0.287274,-0.003447,0.003000,0.249982,0,0);-ms-transform:matrix(0.287274,-0.003447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.287274,-0.003447,0.003000,0.249982,0,0);}
.m73_c00088{transform:matrix(0.332141,-0.003986,0.003000,0.249982,0,0);-ms-transform:matrix(0.332141,-0.003986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.332141,-0.003986,0.003000,0.249982,0,0);}
.m6a_c00088{transform:matrix(0.342355,-0.004108,0.003000,0.249982,0,0);-ms-transform:matrix(0.342355,-0.004108,0.003000,0.249982,0,0);-webkit-transform:matrix(0.342355,-0.004108,0.003000,0.249982,0,0);}
.mda_c00088{transform:matrix(0.349910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349910,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:0.000000px;}
.fc0_c00088{color:transparent;}
.fs8_c00088{font-size:47.250000px;}
.fsd_c00088{font-size:58.804233px;}
.fs7_c00088{font-size:59.850000px;}
.fsc_c00088{font-size:59.854309px;}
.fs4_c00088{font-size:60.900000px;}
.fsb_c00088{font-size:60.904385px;}
.fs6_c00088{font-size:61.950000px;}
.fsf_c00088{font-size:61.954460px;}
.fs12_c00088{font-size:63.004536px;}
.fs0_c00088{font-size:64.050000px;}
.fse_c00088{font-size:64.054611px;}
.fs5_c00088{font-size:65.100000px;}
.fsa_c00088{font-size:65.104687px;}
.fs13_c00088{font-size:66.154763px;}
.fs2_c00088{font-size:67.200000px;}
.fs10_c00088{font-size:67.204838px;}
.fs11_c00088{font-size:69.304989px;}
.fs9_c00088{font-size:70.355065px;}
.fs3_c00088{font-size:71.400000px;}
.fs1_c00088{font-size:73.500000px;}
.fs14_c00088{font-size:74.550000px;}
.y0_c00088{bottom:0.000000px;}
.ybd_c00088{bottom:29.367000px;}
.ybc_c00088{bottom:48.658500px;}
.ybb_c00088{bottom:63.360000px;}
.yb1_c00088{bottom:79.923000px;}
.yb2_c00088{bottom:80.160000px;}
.yb3_c00088{bottom:80.712000px;}
.yb4_c00088{bottom:80.917500px;}
.yb5_c00088{bottom:81.406500px;}
.yb6_c00088{bottom:81.540000px;}
.yb7_c00088{bottom:81.754500px;}
.yb8_c00088{bottom:82.414500px;}
.yb9_c00088{bottom:82.681500px;}
.yba_c00088{bottom:82.881000px;}
.yb0_c00088{bottom:99.244500px;}
.yaf_c00088{bottom:115.924116px;}
.yae_c00088{bottom:115.924734px;}
.yac_c00088{bottom:115.925004px;}
.yad_c00088{bottom:115.925028px;}
.yab_c00088{bottom:132.614004px;}
.ya5_c00088{bottom:132.614082px;}
.ya4_c00088{bottom:132.614418px;}
.ya6_c00088{bottom:132.614526px;}
.ya9_c00088{bottom:132.614676px;}
.yaa_c00088{bottom:132.614718px;}
.ya7_c00088{bottom:132.614988px;}
.ya8_c00088{bottom:132.615234px;}
.y9b_c00088{bottom:149.019018px;}
.y9d_c00088{bottom:149.019366px;}
.y9c_c00088{bottom:149.019582px;}
.y9e_c00088{bottom:149.019948px;}
.y9f_c00088{bottom:149.020692px;}
.ya0_c00088{bottom:149.021154px;}
.ya3_c00088{bottom:149.021442px;}
.ya1_c00088{bottom:149.021496px;}
.ya2_c00088{bottom:149.021580px;}
.y97_c00088{bottom:165.610746px;}
.y98_c00088{bottom:165.611130px;}
.y94_c00088{bottom:165.611154px;}
.y96_c00088{bottom:165.611340px;}
.y9a_c00088{bottom:165.611694px;}
.y99_c00088{bottom:165.611712px;}
.y95_c00088{bottom:165.611898px;}
.y93_c00088{bottom:182.318130px;}
.y92_c00088{bottom:182.318784px;}
.y8d_c00088{bottom:182.319030px;}
.y8c_c00088{bottom:182.319066px;}
.y8e_c00088{bottom:182.319372px;}
.y91_c00088{bottom:182.319522px;}
.y8f_c00088{bottom:182.320014px;}
.y90_c00088{bottom:182.320140px;}
.y85_c00088{bottom:196.545480px;}
.y86_c00088{bottom:197.248164px;}
.y87_c00088{bottom:197.413422px;}
.y88_c00088{bottom:197.660346px;}
.y89_c00088{bottom:198.605652px;}
.y8a_c00088{bottom:198.855924px;}
.y8b_c00088{bottom:199.834494px;}
.y81_c00088{bottom:216.944064px;}
.y83_c00088{bottom:216.944394px;}
.y84_c00088{bottom:216.944616px;}
.y82_c00088{bottom:216.944646px;}
.y80_c00088{bottom:216.944778px;}
.y7e_c00088{bottom:216.945090px;}
.y7f_c00088{bottom:216.945354px;}
.y7c_c00088{bottom:233.741202px;}
.y7b_c00088{bottom:233.741460px;}
.y7d_c00088{bottom:233.741568px;}
.y7a_c00088{bottom:233.741958px;}
.y79_c00088{bottom:233.742252px;}
.y78_c00088{bottom:233.742630px;}
.y76_c00088{bottom:233.742780px;}
.y77_c00088{bottom:233.743044px;}
.y71_c00088{bottom:250.001184px;}
.y70_c00088{bottom:250.001322px;}
.y75_c00088{bottom:250.001586px;}
.y74_c00088{bottom:250.001760px;}
.y73_c00088{bottom:250.001778px;}
.y72_c00088{bottom:250.001832px;}
.y6f_c00088{bottom:250.001880px;}
.y6d_c00088{bottom:267.616620px;}
.y6e_c00088{bottom:267.616962px;}
.y6c_c00088{bottom:267.617172px;}
.y69_c00088{bottom:267.617706px;}
.y6b_c00088{bottom:267.617850px;}
.y68_c00088{bottom:267.618120px;}
.y6a_c00088{bottom:267.618168px;}
.y67_c00088{bottom:267.618738px;}
.y66_c00088{bottom:267.619476px;}
.y63_c00088{bottom:284.780358px;}
.y62_c00088{bottom:284.780754px;}
.y64_c00088{bottom:284.780820px;}
.y65_c00088{bottom:284.781204px;}
.y61_c00088{bottom:284.781372px;}
.y5f_c00088{bottom:284.781462px;}
.y60_c00088{bottom:284.781828px;}
.y59_c00088{bottom:302.331708px;}
.y58_c00088{bottom:302.332020px;}
.y5a_c00088{bottom:302.332110px;}
.y5b_c00088{bottom:302.332392px;}
.y5d_c00088{bottom:302.332620px;}
.y5c_c00088{bottom:302.332758px;}
.y5e_c00088{bottom:302.332788px;}
.y52_c00088{bottom:316.978866px;}
.y53_c00088{bottom:317.609346px;}
.y54_c00088{bottom:318.132984px;}
.y55_c00088{bottom:318.785538px;}
.y56_c00088{bottom:319.606806px;}
.y57_c00088{bottom:319.900854px;}
.y4a_c00088{bottom:331.832268px;}
.y4b_c00088{bottom:332.205744px;}
.y4c_c00088{bottom:333.096258px;}
.y4d_c00088{bottom:333.381000px;}
.y4e_c00088{bottom:333.804006px;}
.y4f_c00088{bottom:335.344140px;}
.y50_c00088{bottom:335.879328px;}
.y51_c00088{bottom:336.881502px;}
.y48_c00088{bottom:351.147762px;}
.y47_c00088{bottom:351.148260px;}
.y42_c00088{bottom:351.148362px;}
.y49_c00088{bottom:351.148404px;}
.y41_c00088{bottom:351.148560px;}
.y46_c00088{bottom:351.148698px;}
.y43_c00088{bottom:351.148728px;}
.y44_c00088{bottom:351.148830px;}
.y45_c00088{bottom:351.148836px;}
.y3a_c00088{bottom:365.581092px;}
.y3b_c00088{bottom:366.339198px;}
.y3c_c00088{bottom:367.082394px;}
.y3d_c00088{bottom:367.563900px;}
.y3e_c00088{bottom:368.290818px;}
.y3f_c00088{bottom:368.561568px;}
.y40_c00088{bottom:369.278100px;}
.y33_c00088{bottom:382.051500px;}
.y34_c00088{bottom:382.890516px;}
.y35_c00088{bottom:383.191422px;}
.y36_c00088{bottom:383.703180px;}
.y37_c00088{bottom:384.066960px;}
.y38_c00088{bottom:384.931356px;}
.y39_c00088{bottom:385.097442px;}
.y32_c00088{bottom:400.657500px;}
.y27_c00088{bottom:414.186000px;}
.y28_c00088{bottom:414.666000px;}
.y29_c00088{bottom:415.032000px;}
.y2a_c00088{bottom:415.329000px;}
.y2b_c00088{bottom:416.493000px;}
.y2c_c00088{bottom:416.727000px;}
.y2d_c00088{bottom:417.097500px;}
.y2e_c00088{bottom:417.792000px;}
.y2f_c00088{bottom:418.096500px;}
.y30_c00088{bottom:418.510500px;}
.y31_c00088{bottom:418.864500px;}
.y1f_c00088{bottom:430.926000px;}
.y20_c00088{bottom:431.944500px;}
.y21_c00088{bottom:432.336000px;}
.y22_c00088{bottom:433.761000px;}
.y23_c00088{bottom:434.166000px;}
.y24_c00088{bottom:434.496000px;}
.y25_c00088{bottom:435.780000px;}
.y26_c00088{bottom:436.165500px;}
.y16_c00088{bottom:447.936000px;}
.y17_c00088{bottom:448.158000px;}
.y18_c00088{bottom:450.055500px;}
.y19_c00088{bottom:450.277500px;}
.y1a_c00088{bottom:450.667500px;}
.y1b_c00088{bottom:451.236000px;}
.y1c_c00088{bottom:452.239500px;}
.y1d_c00088{bottom:453.223500px;}
.y1e_c00088{bottom:453.730500px;}
.y15_c00088{bottom:468.829500px;}
.y14_c00088{bottom:484.651500px;}
.y13_c00088{bottom:503.002500px;}
.y12_c00088{bottom:519.465000px;}
.ya_c00088{bottom:534.873000px;}
.yb_c00088{bottom:535.528500px;}
.yc_c00088{bottom:536.224500px;}
.yd_c00088{bottom:536.562000px;}
.ye_c00088{bottom:537.589500px;}
.yf_c00088{bottom:537.937500px;}
.y10_c00088{bottom:538.290000px;}
.y11_c00088{bottom:539.154000px;}
.y2_c00088{bottom:551.613000px;}
.y3_c00088{bottom:552.391500px;}
.y4_c00088{bottom:552.568500px;}
.y5_c00088{bottom:552.981000px;}
.y6_c00088{bottom:553.441500px;}
.y7_c00088{bottom:554.047500px;}
.y8_c00088{bottom:554.989500px;}
.y9_c00088{bottom:555.238500px;}
.y1_c00088{bottom:570.000000px;}
.ha_c00088{height:47.250000px;}
.hf_c00088{height:58.804233px;}
.h9_c00088{height:59.850000px;}
.he_c00088{height:59.854309px;}
.h6_c00088{height:60.900000px;}
.hd_c00088{height:60.904385px;}
.h8_c00088{height:61.950000px;}
.h11_c00088{height:61.954460px;}
.h14_c00088{height:63.004536px;}
.h2_c00088{height:64.050000px;}
.h10_c00088{height:64.054611px;}
.h7_c00088{height:65.100000px;}
.hc_c00088{height:65.104687px;}
.h15_c00088{height:66.154763px;}
.h4_c00088{height:67.200000px;}
.h12_c00088{height:67.204838px;}
.h13_c00088{height:69.304989px;}
.hb_c00088{height:70.355065px;}
.h5_c00088{height:71.400000px;}
.h3_c00088{height:73.500000px;}
.h16_c00088{height:74.550000px;}
.h1_c00088{height:612.000000px;}
.h0_c00088{height:612.300000px;}
.w0_c00088{width:361.500000px;}
.x0_c00088{left:0.000000px;}
.x34_c00088{left:16.420500px;}
.x3_c00088{left:22.321500px;}
.x21_c00088{left:23.491500px;}
.x2e_c00088{left:24.544500px;}
.x4e_c00088{left:25.646256px;}
.x59_c00088{left:26.725854px;}
.x5f_c00088{left:27.804390px;}
.x3d_c00088{left:29.700000px;}
.x73_c00088{left:31.495500px;}
.x7b_c00088{left:32.668500px;}
.x28_c00088{left:35.107500px;}
.x5a_c00088{left:39.416190px;}
.x35_c00088{left:43.102500px;}
.x4f_c00088{left:46.392762px;}
.x40_c00088{left:48.483000px;}
.x47_c00088{left:50.217534px;}
.x70_c00088{left:54.000000px;}
.x62_c00088{left:60.476172px;}
.x16_c00088{left:62.641500px;}
.xb_c00088{left:65.719500px;}
.x6a_c00088{left:69.384954px;}
.x6f_c00088{left:71.277600px;}
.x52_c00088{left:74.080380px;}
.x2f_c00088{left:75.478500px;}
.x4_c00088{left:77.908500px;}
.x36_c00088{left:79.873500px;}
.x22_c00088{left:82.081500px;}
.x44_c00088{left:83.568072px;}
.x75_c00088{left:85.858500px;}
.x1c_c00088{left:87.481500px;}
.x12_c00088{left:88.561500px;}
.x5_c00088{left:90.543000px;}
.x79_c00088{left:93.418500px;}
.x30_c00088{left:95.035500px;}
.x54_c00088{left:99.630864px;}
.x67_c00088{left:101.074410px;}
.x6d_c00088{left:103.407816px;}
.x48_c00088{left:106.381116px;}
.x64_c00088{left:109.079220px;}
.xc_c00088{left:112.132500px;}
.x17_c00088{left:113.941500px;}
.x3e_c00088{left:116.910000px;}
.x41_c00088{left:118.401000px;}
.x6_c00088{left:120.036000px;}
.x68_c00088{left:121.651410px;}
.x49_c00088{left:123.392064px;}
.x5b_c00088{left:126.092682px;}
.x55_c00088{left:128.793558px;}
.x29_c00088{left:130.012500px;}
.xd_c00088{left:134.631000px;}
.x23_c00088{left:138.781500px;}
.x5c_c00088{left:140.133198px;}
.x18_c00088{left:141.481500px;}
.x42_c00088{left:143.476500px;}
.x37_c00088{left:144.570000px;}
.x56_c00088{left:147.694776px;}
.x6e_c00088{left:150.122610px;}
.x7_c00088{left:152.926500px;}
.x38_c00088{left:157.545000px;}
.x2a_c00088{left:160.564500px;}
.x1_c00088{left:162.270000px;}
.x53_c00088{left:164.595300px;}
.x31_c00088{left:166.260000px;}
.x65_c00088{left:167.403126px;}
.x24_c00088{left:168.481500px;}
.x1d_c00088{left:169.561500px;}
.x76_c00088{left:171.988500px;}
.x7a_c00088{left:174.418500px;}
.x39_c00088{left:178.155000px;}
.x5d_c00088{left:179.555886px;}
.x4a_c00088{left:182.526078px;}
.x66_c00088{left:184.954146px;}
.x32_c00088{left:186.544500px;}
.x71_c00088{left:188.190000px;}
.x1e_c00088{left:189.811500px;}
.x7c_c00088{left:192.508500px;}
.x8_c00088{left:196.191000px;}
.x19_c00088{left:198.721500px;}
.x69_c00088{left:200.426910px;}
.x6b_c00088{left:201.694998px;}
.xe_c00088{left:203.131500px;}
.x58_c00088{left:207.369462px;}
.x57_c00088{left:210.609330px;}
.x72_c00088{left:212.490000px;}
.x60_c00088{left:215.197872px;}
.x3a_c00088{left:216.753000px;}
.x50_c00088{left:220.788216px;}
.x4b_c00088{left:224.109072px;}
.xf_c00088{left:226.378500px;}
.x1f_c00088{left:228.151500px;}
.x77_c00088{left:230.848500px;}
.x25_c00088{left:231.931500px;}
.x3b_c00088{left:233.685000px;}
.x13_c00088{left:235.441500px;}
.x2b_c00088{left:239.119500px;}
.x4c_c00088{left:243.820416px;}
.x14_c00088{left:246.781500px;}
.x10_c00088{left:249.867000px;}
.x5e_c00088{left:253.270506px;}
.x45_c00088{left:254.513520px;}
.x3c_c00088{left:256.720500px;}
.x74_c00088{left:257.967000px;}
.x9_c00088{left:263.430000px;}
.x4d_c00088{left:266.502174px;}
.x1a_c00088{left:268.111500px;}
.x26_c00088{left:270.001500px;}
.x2_c00088{left:272.700000px;}
.x20_c00088{left:274.591500px;}
.x15_c00088{left:276.481500px;}
.x6c_c00088{left:277.839978px;}
.xa_c00088{left:281.254500px;}
.x27_c00088{left:284.851500px;}
.x33_c00088{left:286.447500px;}
.x2c_c00088{left:288.337500px;}
.x1b_c00088{left:294.841500px;}
.x78_c00088{left:298.078500px;}
.x61_c00088{left:299.444004px;}
.x43_c00088{left:302.311500px;}
.x63_c00088{left:303.763218px;}
.x51_c00088{left:306.145560px;}
.x11_c00088{left:307.444500px;}
.x46_c00088{left:309.598854px;}
.x2d_c00088{left:313.707000px;}
.x3f_c00088{left:321.840000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
.fs8_c00088{font-size:42.000000pt;}
.fsd_c00088{font-size:52.270430pt;}
.fs7_c00088{font-size:53.200000pt;}
.fsc_c00088{font-size:53.203830pt;}
.fs4_c00088{font-size:54.133333pt;}
.fsb_c00088{font-size:54.137231pt;}
.fs6_c00088{font-size:55.066667pt;}
.fsf_c00088{font-size:55.070631pt;}
.fs12_c00088{font-size:56.004032pt;}
.fs0_c00088{font-size:56.933333pt;}
.fse_c00088{font-size:56.937432pt;}
.fs5_c00088{font-size:57.866667pt;}
.fsa_c00088{font-size:57.870833pt;}
.fs13_c00088{font-size:58.804233pt;}
.fs2_c00088{font-size:59.733333pt;}
.fs10_c00088{font-size:59.737634pt;}
.fs11_c00088{font-size:61.604435pt;}
.fs9_c00088{font-size:62.537836pt;}
.fs3_c00088{font-size:63.466667pt;}
.fs1_c00088{font-size:65.333333pt;}
.fs14_c00088{font-size:66.266667pt;}
.y0_c00088{bottom:0.000000pt;}
.ybd_c00088{bottom:26.104000pt;}
.ybc_c00088{bottom:43.252000pt;}
.ybb_c00088{bottom:56.320000pt;}
.yb1_c00088{bottom:71.042667pt;}
.yb2_c00088{bottom:71.253333pt;}
.yb3_c00088{bottom:71.744000pt;}
.yb4_c00088{bottom:71.926667pt;}
.yb5_c00088{bottom:72.361333pt;}
.yb6_c00088{bottom:72.480000pt;}
.yb7_c00088{bottom:72.670667pt;}
.yb8_c00088{bottom:73.257333pt;}
.yb9_c00088{bottom:73.494667pt;}
.yba_c00088{bottom:73.672000pt;}
.yb0_c00088{bottom:88.217333pt;}
.yaf_c00088{bottom:103.043659pt;}
.yae_c00088{bottom:103.044208pt;}
.yac_c00088{bottom:103.044448pt;}
.yad_c00088{bottom:103.044469pt;}
.yab_c00088{bottom:117.879115pt;}
.ya5_c00088{bottom:117.879184pt;}
.ya4_c00088{bottom:117.879483pt;}
.ya6_c00088{bottom:117.879579pt;}
.ya9_c00088{bottom:117.879712pt;}
.yaa_c00088{bottom:117.879749pt;}
.ya7_c00088{bottom:117.879989pt;}
.ya8_c00088{bottom:117.880208pt;}
.y9b_c00088{bottom:132.461349pt;}
.y9d_c00088{bottom:132.461659pt;}
.y9c_c00088{bottom:132.461851pt;}
.y9e_c00088{bottom:132.462176pt;}
.y9f_c00088{bottom:132.462837pt;}
.ya0_c00088{bottom:132.463248pt;}
.ya3_c00088{bottom:132.463504pt;}
.ya1_c00088{bottom:132.463552pt;}
.ya2_c00088{bottom:132.463627pt;}
.y97_c00088{bottom:147.209552pt;}
.y98_c00088{bottom:147.209893pt;}
.y94_c00088{bottom:147.209915pt;}
.y96_c00088{bottom:147.210080pt;}
.y9a_c00088{bottom:147.210395pt;}
.y99_c00088{bottom:147.210411pt;}
.y95_c00088{bottom:147.210576pt;}
.y93_c00088{bottom:162.060560pt;}
.y92_c00088{bottom:162.061141pt;}
.y8d_c00088{bottom:162.061360pt;}
.y8c_c00088{bottom:162.061392pt;}
.y8e_c00088{bottom:162.061664pt;}
.y91_c00088{bottom:162.061797pt;}
.y8f_c00088{bottom:162.062235pt;}
.y90_c00088{bottom:162.062347pt;}
.y85_c00088{bottom:174.707093pt;}
.y86_c00088{bottom:175.331701pt;}
.y87_c00088{bottom:175.478597pt;}
.y88_c00088{bottom:175.698085pt;}
.y89_c00088{bottom:176.538357pt;}
.y8a_c00088{bottom:176.760821pt;}
.y8b_c00088{bottom:177.630661pt;}
.y81_c00088{bottom:192.839168pt;}
.y83_c00088{bottom:192.839461pt;}
.y84_c00088{bottom:192.839659pt;}
.y82_c00088{bottom:192.839685pt;}
.y80_c00088{bottom:192.839803pt;}
.y7e_c00088{bottom:192.840080pt;}
.y7f_c00088{bottom:192.840315pt;}
.y7c_c00088{bottom:207.769957pt;}
.y7b_c00088{bottom:207.770187pt;}
.y7d_c00088{bottom:207.770283pt;}
.y7a_c00088{bottom:207.770629pt;}
.y79_c00088{bottom:207.770891pt;}
.y78_c00088{bottom:207.771227pt;}
.y76_c00088{bottom:207.771360pt;}
.y77_c00088{bottom:207.771595pt;}
.y71_c00088{bottom:222.223275pt;}
.y70_c00088{bottom:222.223397pt;}
.y75_c00088{bottom:222.223632pt;}
.y74_c00088{bottom:222.223787pt;}
.y73_c00088{bottom:222.223803pt;}
.y72_c00088{bottom:222.223851pt;}
.y6f_c00088{bottom:222.223893pt;}
.y6d_c00088{bottom:237.881440pt;}
.y6e_c00088{bottom:237.881744pt;}
.y6c_c00088{bottom:237.881931pt;}
.y69_c00088{bottom:237.882405pt;}
.y6b_c00088{bottom:237.882533pt;}
.y68_c00088{bottom:237.882773pt;}
.y6a_c00088{bottom:237.882816pt;}
.y67_c00088{bottom:237.883323pt;}
.y66_c00088{bottom:237.883979pt;}
.y63_c00088{bottom:253.138096pt;}
.y62_c00088{bottom:253.138448pt;}
.y64_c00088{bottom:253.138507pt;}
.y65_c00088{bottom:253.138848pt;}
.y61_c00088{bottom:253.138997pt;}
.y5f_c00088{bottom:253.139077pt;}
.y60_c00088{bottom:253.139403pt;}
.y59_c00088{bottom:268.739296pt;}
.y58_c00088{bottom:268.739573pt;}
.y5a_c00088{bottom:268.739653pt;}
.y5b_c00088{bottom:268.739904pt;}
.y5d_c00088{bottom:268.740107pt;}
.y5c_c00088{bottom:268.740229pt;}
.y5e_c00088{bottom:268.740256pt;}
.y52_c00088{bottom:281.758992pt;}
.y53_c00088{bottom:282.319419pt;}
.y54_c00088{bottom:282.784875pt;}
.y55_c00088{bottom:283.364923pt;}
.y56_c00088{bottom:284.094939pt;}
.y57_c00088{bottom:284.356315pt;}
.y4a_c00088{bottom:294.962016pt;}
.y4b_c00088{bottom:295.293995pt;}
.y4c_c00088{bottom:296.085563pt;}
.y4d_c00088{bottom:296.338667pt;}
.y4e_c00088{bottom:296.714672pt;}
.y4f_c00088{bottom:298.083680pt;}
.y50_c00088{bottom:298.559403pt;}
.y51_c00088{bottom:299.450224pt;}
.y48_c00088{bottom:312.131344pt;}
.y47_c00088{bottom:312.131787pt;}
.y42_c00088{bottom:312.131877pt;}
.y49_c00088{bottom:312.131915pt;}
.y41_c00088{bottom:312.132053pt;}
.y46_c00088{bottom:312.132176pt;}
.y43_c00088{bottom:312.132203pt;}
.y44_c00088{bottom:312.132293pt;}
.y45_c00088{bottom:312.132299pt;}
.y3a_c00088{bottom:324.960971pt;}
.y3b_c00088{bottom:325.634843pt;}
.y3c_c00088{bottom:326.295461pt;}
.y3d_c00088{bottom:326.723467pt;}
.y3e_c00088{bottom:327.369616pt;}
.y3f_c00088{bottom:327.610283pt;}
.y40_c00088{bottom:328.247200pt;}
.y33_c00088{bottom:339.601333pt;}
.y34_c00088{bottom:340.347125pt;}
.y35_c00088{bottom:340.614597pt;}
.y36_c00088{bottom:341.069493pt;}
.y37_c00088{bottom:341.392853pt;}
.y38_c00088{bottom:342.161205pt;}
.y39_c00088{bottom:342.308837pt;}
.y32_c00088{bottom:356.140000pt;}
.y27_c00088{bottom:368.165333pt;}
.y28_c00088{bottom:368.592000pt;}
.y29_c00088{bottom:368.917333pt;}
.y2a_c00088{bottom:369.181333pt;}
.y2b_c00088{bottom:370.216000pt;}
.y2c_c00088{bottom:370.424000pt;}
.y2d_c00088{bottom:370.753333pt;}
.y2e_c00088{bottom:371.370667pt;}
.y2f_c00088{bottom:371.641333pt;}
.y30_c00088{bottom:372.009333pt;}
.y31_c00088{bottom:372.324000pt;}
.y1f_c00088{bottom:383.045333pt;}
.y20_c00088{bottom:383.950667pt;}
.y21_c00088{bottom:384.298667pt;}
.y22_c00088{bottom:385.565333pt;}
.y23_c00088{bottom:385.925333pt;}
.y24_c00088{bottom:386.218667pt;}
.y25_c00088{bottom:387.360000pt;}
.y26_c00088{bottom:387.702667pt;}
.y16_c00088{bottom:398.165333pt;}
.y17_c00088{bottom:398.362667pt;}
.y18_c00088{bottom:400.049333pt;}
.y19_c00088{bottom:400.246667pt;}
.y1a_c00088{bottom:400.593333pt;}
.y1b_c00088{bottom:401.098667pt;}
.y1c_c00088{bottom:401.990667pt;}
.y1d_c00088{bottom:402.865333pt;}
.y1e_c00088{bottom:403.316000pt;}
.y15_c00088{bottom:416.737333pt;}
.y14_c00088{bottom:430.801333pt;}
.y13_c00088{bottom:447.113333pt;}
.y12_c00088{bottom:461.746667pt;}
.ya_c00088{bottom:475.442667pt;}
.yb_c00088{bottom:476.025333pt;}
.yc_c00088{bottom:476.644000pt;}
.yd_c00088{bottom:476.944000pt;}
.ye_c00088{bottom:477.857333pt;}
.yf_c00088{bottom:478.166667pt;}
.y10_c00088{bottom:478.480000pt;}
.y11_c00088{bottom:479.248000pt;}
.y2_c00088{bottom:490.322667pt;}
.y3_c00088{bottom:491.014667pt;}
.y4_c00088{bottom:491.172000pt;}
.y5_c00088{bottom:491.538667pt;}
.y6_c00088{bottom:491.948000pt;}
.y7_c00088{bottom:492.486667pt;}
.y8_c00088{bottom:493.324000pt;}
.y9_c00088{bottom:493.545333pt;}
.y1_c00088{bottom:506.666667pt;}
.ha_c00088{height:42.000000pt;}
.hf_c00088{height:52.270430pt;}
.h9_c00088{height:53.200000pt;}
.he_c00088{height:53.203830pt;}
.h6_c00088{height:54.133333pt;}
.hd_c00088{height:54.137231pt;}
.h8_c00088{height:55.066667pt;}
.h11_c00088{height:55.070631pt;}
.h14_c00088{height:56.004032pt;}
.h2_c00088{height:56.933333pt;}
.h10_c00088{height:56.937432pt;}
.h7_c00088{height:57.866667pt;}
.hc_c00088{height:57.870833pt;}
.h15_c00088{height:58.804233pt;}
.h4_c00088{height:59.733333pt;}
.h12_c00088{height:59.737634pt;}
.h13_c00088{height:61.604435pt;}
.hb_c00088{height:62.537836pt;}
.h5_c00088{height:63.466667pt;}
.h3_c00088{height:65.333333pt;}
.h16_c00088{height:66.266667pt;}
.h1_c00088{height:544.000000pt;}
.h0_c00088{height:544.266667pt;}
.w0_c00088{width:321.333333pt;}
.x0_c00088{left:0.000000pt;}
.x34_c00088{left:14.596000pt;}
.x3_c00088{left:19.841333pt;}
.x21_c00088{left:20.881333pt;}
.x2e_c00088{left:21.817333pt;}
.x4e_c00088{left:22.796672pt;}
.x59_c00088{left:23.756315pt;}
.x5f_c00088{left:24.715013pt;}
.x3d_c00088{left:26.400000pt;}
.x73_c00088{left:27.996000pt;}
.x7b_c00088{left:29.038667pt;}
.x28_c00088{left:31.206667pt;}
.x5a_c00088{left:35.036613pt;}
.x35_c00088{left:38.313333pt;}
.x4f_c00088{left:41.238011pt;}
.x40_c00088{left:43.096000pt;}
.x47_c00088{left:44.637808pt;}
.x70_c00088{left:48.000000pt;}
.x62_c00088{left:53.756597pt;}
.x16_c00088{left:55.681333pt;}
.xb_c00088{left:58.417333pt;}
.x6a_c00088{left:61.675515pt;}
.x6f_c00088{left:63.357867pt;}
.x52_c00088{left:65.849227pt;}
.x2f_c00088{left:67.092000pt;}
.x4_c00088{left:69.252000pt;}
.x36_c00088{left:70.998667pt;}
.x22_c00088{left:72.961333pt;}
.x44_c00088{left:74.282731pt;}
.x75_c00088{left:76.318667pt;}
.x1c_c00088{left:77.761333pt;}
.x12_c00088{left:78.721333pt;}
.x5_c00088{left:80.482667pt;}
.x79_c00088{left:83.038667pt;}
.x30_c00088{left:84.476000pt;}
.x54_c00088{left:88.560768pt;}
.x67_c00088{left:89.843920pt;}
.x6d_c00088{left:91.918059pt;}
.x48_c00088{left:94.560992pt;}
.x64_c00088{left:96.959307pt;}
.xc_c00088{left:99.673333pt;}
.x17_c00088{left:101.281333pt;}
.x3e_c00088{left:103.920000pt;}
.x41_c00088{left:105.245333pt;}
.x6_c00088{left:106.698667pt;}
.x68_c00088{left:108.134587pt;}
.x49_c00088{left:109.681835pt;}
.x5b_c00088{left:112.082384pt;}
.x55_c00088{left:114.483163pt;}
.x29_c00088{left:115.566667pt;}
.xd_c00088{left:119.672000pt;}
.x23_c00088{left:123.361333pt;}
.x5c_c00088{left:124.562843pt;}
.x18_c00088{left:125.761333pt;}
.x42_c00088{left:127.534667pt;}
.x37_c00088{left:128.506667pt;}
.x56_c00088{left:131.284245pt;}
.x6e_c00088{left:133.442320pt;}
.x7_c00088{left:135.934667pt;}
.x38_c00088{left:140.040000pt;}
.x2a_c00088{left:142.724000pt;}
.x1_c00088{left:144.240000pt;}
.x53_c00088{left:146.306933pt;}
.x31_c00088{left:147.786667pt;}
.x65_c00088{left:148.802779pt;}
.x24_c00088{left:149.761333pt;}
.x1d_c00088{left:150.721333pt;}
.x76_c00088{left:152.878667pt;}
.x7a_c00088{left:155.038667pt;}
.x39_c00088{left:158.360000pt;}
.x5d_c00088{left:159.605232pt;}
.x4a_c00088{left:162.245403pt;}
.x66_c00088{left:164.403685pt;}
.x32_c00088{left:165.817333pt;}
.x71_c00088{left:167.280000pt;}
.x1e_c00088{left:168.721333pt;}
.x7c_c00088{left:171.118667pt;}
.x8_c00088{left:174.392000pt;}
.x19_c00088{left:176.641333pt;}
.x69_c00088{left:178.157253pt;}
.x6b_c00088{left:179.284443pt;}
.xe_c00088{left:180.561333pt;}
.x58_c00088{left:184.328411pt;}
.x57_c00088{left:187.208293pt;}
.x72_c00088{left:188.880000pt;}
.x60_c00088{left:191.286997pt;}
.x3a_c00088{left:192.669333pt;}
.x50_c00088{left:196.256192pt;}
.x4b_c00088{left:199.208064pt;}
.xf_c00088{left:201.225333pt;}
.x1f_c00088{left:202.801333pt;}
.x77_c00088{left:205.198667pt;}
.x25_c00088{left:206.161333pt;}
.x3b_c00088{left:207.720000pt;}
.x13_c00088{left:209.281333pt;}
.x2b_c00088{left:212.550667pt;}
.x4c_c00088{left:216.729259pt;}
.x14_c00088{left:219.361333pt;}
.x10_c00088{left:222.104000pt;}
.x5e_c00088{left:225.129339pt;}
.x45_c00088{left:226.234240pt;}
.x3c_c00088{left:228.196000pt;}
.x74_c00088{left:229.304000pt;}
.x9_c00088{left:234.160000pt;}
.x4d_c00088{left:236.890821pt;}
.x1a_c00088{left:238.321333pt;}
.x26_c00088{left:240.001333pt;}
.x2_c00088{left:242.400000pt;}
.x20_c00088{left:244.081333pt;}
.x15_c00088{left:245.761333pt;}
.x6c_c00088{left:246.968869pt;}
.xa_c00088{left:250.004000pt;}
.x27_c00088{left:253.201333pt;}
.x33_c00088{left:254.620000pt;}
.x2c_c00088{left:256.300000pt;}
.x1b_c00088{left:262.081333pt;}
.x78_c00088{left:264.958667pt;}
.x61_c00088{left:266.172448pt;}
.x43_c00088{left:268.721333pt;}
.x63_c00088{left:270.011749pt;}
.x51_c00088{left:272.129387pt;}
.x11_c00088{left:273.284000pt;}
.x46_c00088{left:275.198981pt;}
.x2d_c00088{left:278.850667pt;}
.x3f_c00088{left:286.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00089 {
    display:none;
  }
  .loading-indicator_c00089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00089 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00089 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00089" -> "#page-container .classname_c00089")
 */
.pf_c00089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00089 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00089 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00089 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00089 {overflow:visible;}
  }
}
.c_c00089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00089 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00089:after { /* webkit #35443 */
  content: '';
}
.t_c00089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00089 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00089 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00089 { /* info for Javascript */
  display:none;
}
.l_c00089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00089:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00089 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00089.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00089{transform:matrix(0.011518,0.000785,-0.016995,0.249422,0,0);-ms-transform:matrix(0.011518,0.000785,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.011518,0.000785,-0.016995,0.249422,0,0);}
.m55_c00089{transform:matrix(0.014681,0.001000,-0.016995,0.249422,0,0);-ms-transform:matrix(0.014681,0.001000,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.014681,0.001000,-0.016995,0.249422,0,0);}
.m56_c00089{transform:matrix(0.036605,0.002494,-0.016995,0.249422,0,0);-ms-transform:matrix(0.036605,0.002494,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.036605,0.002494,-0.016995,0.249422,0,0);}
.m84_c00089{transform:matrix(0.073589,0.005014,-0.016995,0.249422,0,0);-ms-transform:matrix(0.073589,0.005014,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.073589,0.005014,-0.016995,0.249422,0,0);}
.m54_c00089{transform:matrix(0.091059,0.006204,-0.016995,0.249422,0,0);-ms-transform:matrix(0.091059,0.006204,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.091059,0.006204,-0.016995,0.249422,0,0);}
.md3_c00089{transform:matrix(0.127130,0.008662,-0.016995,0.249422,0,0);-ms-transform:matrix(0.127130,0.008662,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.127130,0.008662,-0.016995,0.249422,0,0);}
.me_c00089{transform:matrix(0.142189,0.011267,-0.019748,0.249219,0,0);-ms-transform:matrix(0.142189,0.011267,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.142189,0.011267,-0.019748,0.249219,0,0);}
.m89_c00089{transform:matrix(0.144824,0.009868,-0.016995,0.249422,0,0);-ms-transform:matrix(0.144824,0.009868,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.144824,0.009868,-0.016995,0.249422,0,0);}
.md8_c00089{transform:matrix(0.146021,0.009949,-0.016995,0.249422,0,0);-ms-transform:matrix(0.146021,0.009949,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.146021,0.009949,-0.016995,0.249422,0,0);}
.m17_c00089{transform:matrix(0.151057,0.011969,-0.019748,0.249219,0,0);-ms-transform:matrix(0.151057,0.011969,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.151057,0.011969,-0.019748,0.249219,0,0);}
.maf_c00089{transform:matrix(0.153329,0.010447,-0.016995,0.249422,0,0);-ms-transform:matrix(0.153329,0.010447,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.153329,0.010447,-0.016995,0.249422,0,0);}
.m65_c00089{transform:matrix(0.153554,0.010463,-0.016995,0.249422,0,0);-ms-transform:matrix(0.153554,0.010463,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.153554,0.010463,-0.016995,0.249422,0,0);}
.m66_c00089{transform:matrix(0.154287,0.010513,-0.016995,0.249422,0,0);-ms-transform:matrix(0.154287,0.010513,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.154287,0.010513,-0.016995,0.249422,0,0);}
.mac_c00089{transform:matrix(0.155006,0.010562,-0.016995,0.249422,0,0);-ms-transform:matrix(0.155006,0.010562,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.155006,0.010562,-0.016995,0.249422,0,0);}
.m76_c00089{transform:matrix(0.157215,0.010712,-0.016995,0.249422,0,0);-ms-transform:matrix(0.157215,0.010712,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.157215,0.010712,-0.016995,0.249422,0,0);}
.maa_c00089{transform:matrix(0.158203,0.010779,-0.016995,0.249422,0,0);-ms-transform:matrix(0.158203,0.010779,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.158203,0.010779,-0.016995,0.249422,0,0);}
.m1_c00089{transform:matrix(0.160781,0.012740,-0.019748,0.249219,0,0);-ms-transform:matrix(0.160781,0.012740,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.160781,0.012740,-0.019748,0.249219,0,0);}
.mdb_c00089{transform:matrix(0.161501,0.011004,-0.016995,0.249422,0,0);-ms-transform:matrix(0.161501,0.011004,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.161501,0.011004,-0.016995,0.249422,0,0);}
.mbe_c00089{transform:matrix(0.161765,0.011022,-0.016995,0.249422,0,0);-ms-transform:matrix(0.161765,0.011022,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.161765,0.011022,-0.016995,0.249422,0,0);}
.m58_c00089{transform:matrix(0.162388,0.011065,-0.016995,0.249422,0,0);-ms-transform:matrix(0.162388,0.011065,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.162388,0.011065,-0.016995,0.249422,0,0);}
.md7_c00089{transform:matrix(0.162398,0.011065,-0.016995,0.249422,0,0);-ms-transform:matrix(0.162398,0.011065,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.162398,0.011065,-0.016995,0.249422,0,0);}
.m72_c00089{transform:matrix(0.162817,0.011094,-0.016995,0.249422,0,0);-ms-transform:matrix(0.162817,0.011094,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.162817,0.011094,-0.016995,0.249422,0,0);}
.m81_c00089{transform:matrix(0.163735,0.011156,-0.016995,0.249422,0,0);-ms-transform:matrix(0.163735,0.011156,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.163735,0.011156,-0.016995,0.249422,0,0);}
.md4_c00089{transform:matrix(0.164494,0.011208,-0.016995,0.249422,0,0);-ms-transform:matrix(0.164494,0.011208,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.164494,0.011208,-0.016995,0.249422,0,0);}
.m21_c00089{transform:matrix(0.164499,0.013035,-0.019748,0.249219,0,0);-ms-transform:matrix(0.164499,0.013035,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.164499,0.013035,-0.019748,0.249219,0,0);}
.md6_c00089{transform:matrix(0.166100,0.011317,-0.016995,0.249422,0,0);-ms-transform:matrix(0.166100,0.011317,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.166100,0.011317,-0.016995,0.249422,0,0);}
.m82_c00089{transform:matrix(0.166369,0.011336,-0.016995,0.249422,0,0);-ms-transform:matrix(0.166369,0.011336,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.166369,0.011336,-0.016995,0.249422,0,0);}
.m43_c00089{transform:matrix(0.166603,0.010684,-0.015999,0.249488,0,0);-ms-transform:matrix(0.166603,0.010684,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.166603,0.010684,-0.015999,0.249488,0,0);}
.md5_c00089{transform:matrix(0.167601,0.011420,-0.016995,0.249422,0,0);-ms-transform:matrix(0.167601,0.011420,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.167601,0.011420,-0.016995,0.249422,0,0);}
.m69_c00089{transform:matrix(0.168055,0.011451,-0.016995,0.249422,0,0);-ms-transform:matrix(0.168055,0.011451,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.168055,0.011451,-0.016995,0.249422,0,0);}
.m8b_c00089{transform:matrix(0.168075,0.011452,-0.016995,0.249422,0,0);-ms-transform:matrix(0.168075,0.011452,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.168075,0.011452,-0.016995,0.249422,0,0);}
.m7d_c00089{transform:matrix(0.168764,0.011499,-0.016995,0.249422,0,0);-ms-transform:matrix(0.168764,0.011499,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.168764,0.011499,-0.016995,0.249422,0,0);}
.m5_c00089{transform:matrix(0.170231,0.013489,-0.019748,0.249219,0,0);-ms-transform:matrix(0.170231,0.013489,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.170231,0.013489,-0.019748,0.249219,0,0);}
.m87_c00089{transform:matrix(0.170789,0.011637,-0.016995,0.249422,0,0);-ms-transform:matrix(0.170789,0.011637,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.170789,0.011637,-0.016995,0.249422,0,0);}
.m83_c00089{transform:matrix(0.170844,0.011641,-0.016995,0.249422,0,0);-ms-transform:matrix(0.170844,0.011641,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.170844,0.011641,-0.016995,0.249422,0,0);}
.mb5_c00089{transform:matrix(0.171712,0.011700,-0.016995,0.249422,0,0);-ms-transform:matrix(0.171712,0.011700,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.171712,0.011700,-0.016995,0.249422,0,0);}
.m8f_c00089{transform:matrix(0.171767,0.011704,-0.016995,0.249422,0,0);-ms-transform:matrix(0.171767,0.011704,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.171767,0.011704,-0.016995,0.249422,0,0);}
.m62_c00089{transform:matrix(0.171926,0.011714,-0.016995,0.249422,0,0);-ms-transform:matrix(0.171926,0.011714,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.171926,0.011714,-0.016995,0.249422,0,0);}
.m33_c00089{transform:matrix(0.172056,0.013633,-0.019748,0.249219,0,0);-ms-transform:matrix(0.172056,0.013633,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.172056,0.013633,-0.019748,0.249219,0,0);}
.m9f_c00089{transform:matrix(0.172495,0.011753,-0.016995,0.249422,0,0);-ms-transform:matrix(0.172495,0.011753,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.172495,0.011753,-0.016995,0.249422,0,0);}
.m93_c00089{transform:matrix(0.174081,0.011861,-0.016995,0.249422,0,0);-ms-transform:matrix(0.174081,0.011861,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.174081,0.011861,-0.016995,0.249422,0,0);}
.mc5_c00089{transform:matrix(0.174281,0.011875,-0.016995,0.249422,0,0);-ms-transform:matrix(0.174281,0.011875,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.174281,0.011875,-0.016995,0.249422,0,0);}
.m88_c00089{transform:matrix(0.175004,0.011924,-0.016995,0.249422,0,0);-ms-transform:matrix(0.175004,0.011924,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.175004,0.011924,-0.016995,0.249422,0,0);}
.mcb_c00089{transform:matrix(0.176725,0.012041,-0.016995,0.249422,0,0);-ms-transform:matrix(0.176725,0.012041,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.176725,0.012041,-0.016995,0.249422,0,0);}
.m32_c00089{transform:matrix(0.177344,0.014052,-0.019748,0.249219,0,0);-ms-transform:matrix(0.177344,0.014052,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.177344,0.014052,-0.019748,0.249219,0,0);}
.m6a_c00089{transform:matrix(0.177888,0.012121,-0.016995,0.249422,0,0);-ms-transform:matrix(0.177888,0.012121,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.177888,0.012121,-0.016995,0.249422,0,0);}
.m61_c00089{transform:matrix(0.179723,0.012246,-0.016995,0.249422,0,0);-ms-transform:matrix(0.179723,0.012246,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.179723,0.012246,-0.016995,0.249422,0,0);}
.m1d_c00089{transform:matrix(0.179796,0.014247,-0.019748,0.249219,0,0);-ms-transform:matrix(0.179796,0.014247,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.179796,0.014247,-0.019748,0.249219,0,0);}
.m75_c00089{transform:matrix(0.179968,0.012262,-0.016995,0.249422,0,0);-ms-transform:matrix(0.179968,0.012262,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.179968,0.012262,-0.016995,0.249422,0,0);}
.m41_c00089{transform:matrix(0.180080,0.011548,-0.015999,0.249488,0,0);-ms-transform:matrix(0.180080,0.011548,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.180080,0.011548,-0.015999,0.249488,0,0);}
.mbb_c00089{transform:matrix(0.180312,0.012286,-0.016995,0.249422,0,0);-ms-transform:matrix(0.180312,0.012286,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.180312,0.012286,-0.016995,0.249422,0,0);}
.mc2_c00089{transform:matrix(0.181165,0.012344,-0.016995,0.249422,0,0);-ms-transform:matrix(0.181165,0.012344,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.181165,0.012344,-0.016995,0.249422,0,0);}
.m64_c00089{transform:matrix(0.181489,0.012366,-0.016995,0.249422,0,0);-ms-transform:matrix(0.181489,0.012366,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.181489,0.012366,-0.016995,0.249422,0,0);}
.me0_c00089{transform:matrix(0.181540,0.009631,-0.013245,0.249649,0,0);-ms-transform:matrix(0.181540,0.009631,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.181540,0.009631,-0.013245,0.249649,0,0);}
.m8_c00089{transform:matrix(0.181795,0.014405,-0.019748,0.249219,0,0);-ms-transform:matrix(0.181795,0.014405,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.181795,0.014405,-0.019748,0.249219,0,0);}
.ma4_c00089{transform:matrix(0.181878,0.012393,-0.016995,0.249422,0,0);-ms-transform:matrix(0.181878,0.012393,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.181878,0.012393,-0.016995,0.249422,0,0);}
.m34_c00089{transform:matrix(0.182403,0.014453,-0.019748,0.249219,0,0);-ms-transform:matrix(0.182403,0.014453,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.182403,0.014453,-0.019748,0.249219,0,0);}
.m13_c00089{transform:matrix(0.182513,0.014462,-0.019748,0.249219,0,0);-ms-transform:matrix(0.182513,0.014462,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.182513,0.014462,-0.019748,0.249219,0,0);}
.mc_c00089{transform:matrix(0.182613,0.014470,-0.019748,0.249219,0,0);-ms-transform:matrix(0.182613,0.014470,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.182613,0.014470,-0.019748,0.249219,0,0);}
.m2f_c00089{transform:matrix(0.182827,0.014487,-0.019748,0.249219,0,0);-ms-transform:matrix(0.182827,0.014487,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.182827,0.014487,-0.019748,0.249219,0,0);}
.mad_c00089{transform:matrix(0.183051,0.012472,-0.016995,0.249422,0,0);-ms-transform:matrix(0.183051,0.012472,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.183051,0.012472,-0.016995,0.249422,0,0);}
.m6f_c00089{transform:matrix(0.183210,0.012483,-0.016995,0.249422,0,0);-ms-transform:matrix(0.183210,0.012483,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.183210,0.012483,-0.016995,0.249422,0,0);}
.m31_c00089{transform:matrix(0.183415,0.014533,-0.019748,0.249219,0,0);-ms-transform:matrix(0.183415,0.014533,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.183415,0.014533,-0.019748,0.249219,0,0);}
.m7e_c00089{transform:matrix(0.183594,0.012509,-0.016995,0.249422,0,0);-ms-transform:matrix(0.183594,0.012509,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.183594,0.012509,-0.016995,0.249422,0,0);}
.m2_c00089{transform:matrix(0.184043,0.014583,-0.019748,0.249219,0,0);-ms-transform:matrix(0.184043,0.014583,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.184043,0.014583,-0.019748,0.249219,0,0);}
.m25_c00089{transform:matrix(0.184063,0.014585,-0.019748,0.249219,0,0);-ms-transform:matrix(0.184063,0.014585,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.184063,0.014585,-0.019748,0.249219,0,0);}
.mae_c00089{transform:matrix(0.185141,0.012615,-0.016995,0.249422,0,0);-ms-transform:matrix(0.185141,0.012615,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.185141,0.012615,-0.016995,0.249422,0,0);}
.mb4_c00089{transform:matrix(0.185226,0.012621,-0.016995,0.249422,0,0);-ms-transform:matrix(0.185226,0.012621,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.185226,0.012621,-0.016995,0.249422,0,0);}
.m18_c00089{transform:matrix(0.185374,0.014689,-0.019748,0.249219,0,0);-ms-transform:matrix(0.185374,0.014689,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.185374,0.014689,-0.019748,0.249219,0,0);}
.m7f_c00089{transform:matrix(0.185535,0.012642,-0.016995,0.249422,0,0);-ms-transform:matrix(0.185535,0.012642,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.185535,0.012642,-0.016995,0.249422,0,0);}
.m90_c00089{transform:matrix(0.185864,0.012664,-0.016995,0.249422,0,0);-ms-transform:matrix(0.185864,0.012664,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.185864,0.012664,-0.016995,0.249422,0,0);}
.mde_c00089{transform:matrix(0.187162,0.009930,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187162,0.009930,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187162,0.009930,-0.013245,0.249649,0,0);}
.m3_c00089{transform:matrix(0.187203,0.014834,-0.019748,0.249219,0,0);-ms-transform:matrix(0.187203,0.014834,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.187203,0.014834,-0.019748,0.249219,0,0);}
.ma7_c00089{transform:matrix(0.187595,0.012782,-0.016995,0.249422,0,0);-ms-transform:matrix(0.187595,0.012782,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.187595,0.012782,-0.016995,0.249422,0,0);}
.md1_c00089{transform:matrix(0.187670,0.012787,-0.016995,0.249422,0,0);-ms-transform:matrix(0.187670,0.012787,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.187670,0.012787,-0.016995,0.249422,0,0);}
.ma5_c00089{transform:matrix(0.188268,0.012828,-0.016995,0.249422,0,0);-ms-transform:matrix(0.188268,0.012828,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.188268,0.012828,-0.016995,0.249422,0,0);}
.m5d_c00089{transform:matrix(0.188313,0.012831,-0.016995,0.249422,0,0);-ms-transform:matrix(0.188313,0.012831,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.188313,0.012831,-0.016995,0.249422,0,0);}
.mbc_c00089{transform:matrix(0.188892,0.012870,-0.016995,0.249422,0,0);-ms-transform:matrix(0.188892,0.012870,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.188892,0.012870,-0.016995,0.249422,0,0);}
.m95_c00089{transform:matrix(0.188902,0.012871,-0.016995,0.249422,0,0);-ms-transform:matrix(0.188902,0.012871,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.188902,0.012871,-0.016995,0.249422,0,0);}
.mdc_c00089{transform:matrix(0.189271,0.012896,-0.016995,0.249422,0,0);-ms-transform:matrix(0.189271,0.012896,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.189271,0.012896,-0.016995,0.249422,0,0);}
.m3e_c00089{transform:matrix(0.189606,0.015024,-0.019748,0.249219,0,0);-ms-transform:matrix(0.189606,0.015024,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.189606,0.015024,-0.019748,0.249219,0,0);}
.m99_c00089{transform:matrix(0.189735,0.012928,-0.016995,0.249422,0,0);-ms-transform:matrix(0.189735,0.012928,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.189735,0.012928,-0.016995,0.249422,0,0);}
.m11_c00089{transform:matrix(0.190064,0.015060,-0.019748,0.249219,0,0);-ms-transform:matrix(0.190064,0.015060,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.190064,0.015060,-0.019748,0.249219,0,0);}
.m30_c00089{transform:matrix(0.190114,0.015064,-0.019748,0.249219,0,0);-ms-transform:matrix(0.190114,0.015064,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.190114,0.015064,-0.019748,0.249219,0,0);}
.m8e_c00089{transform:matrix(0.190184,0.012958,-0.016995,0.249422,0,0);-ms-transform:matrix(0.190184,0.012958,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.190184,0.012958,-0.016995,0.249422,0,0);}
.m42_c00089{transform:matrix(0.190594,0.012222,-0.015999,0.249488,0,0);-ms-transform:matrix(0.190594,0.012222,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.190594,0.012222,-0.015999,0.249488,0,0);}
.mc9_c00089{transform:matrix(0.191102,0.013021,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191102,0.013021,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191102,0.013021,-0.016995,0.249422,0,0);}
.m92_c00089{transform:matrix(0.191207,0.013028,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191207,0.013028,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191207,0.013028,-0.016995,0.249422,0,0);}
.m67_c00089{transform:matrix(0.191416,0.013042,-0.016995,0.249422,0,0);-ms-transform:matrix(0.191416,0.013042,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.191416,0.013042,-0.016995,0.249422,0,0);}
.m38_c00089{transform:matrix(0.191505,0.015174,-0.019748,0.249219,0,0);-ms-transform:matrix(0.191505,0.015174,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.191505,0.015174,-0.019748,0.249219,0,0);}
.m4d_c00089{transform:matrix(0.192338,0.013697,-0.017758,0.249368,0,0);-ms-transform:matrix(0.192338,0.013697,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.192338,0.013697,-0.017758,0.249368,0,0);}
.m35_c00089{transform:matrix(0.192736,0.015272,-0.019748,0.249219,0,0);-ms-transform:matrix(0.192736,0.015272,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.192736,0.015272,-0.019748,0.249219,0,0);}
.mc8_c00089{transform:matrix(0.192933,0.013146,-0.016995,0.249422,0,0);-ms-transform:matrix(0.192933,0.013146,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.192933,0.013146,-0.016995,0.249422,0,0);}
.m98_c00089{transform:matrix(0.193022,0.013152,-0.016995,0.249422,0,0);-ms-transform:matrix(0.193022,0.013152,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.193022,0.013152,-0.016995,0.249422,0,0);}
.m77_c00089{transform:matrix(0.193027,0.013152,-0.016995,0.249422,0,0);-ms-transform:matrix(0.193027,0.013152,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.193027,0.013152,-0.016995,0.249422,0,0);}
.m1e_c00089{transform:matrix(0.194171,0.015386,-0.019748,0.249219,0,0);-ms-transform:matrix(0.194171,0.015386,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.194171,0.015386,-0.019748,0.249219,0,0);}
.ma2_c00089{transform:matrix(0.194299,0.013239,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194299,0.013239,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194299,0.013239,-0.016995,0.249422,0,0);}
.m6b_c00089{transform:matrix(0.194329,0.013241,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194329,0.013241,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194329,0.013241,-0.016995,0.249422,0,0);}
.mb9_c00089{transform:matrix(0.194459,0.013250,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194459,0.013250,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194459,0.013250,-0.016995,0.249422,0,0);}
.m59_c00089{transform:matrix(0.194878,0.013278,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194878,0.013278,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194878,0.013278,-0.016995,0.249422,0,0);}
.m80_c00089{transform:matrix(0.194953,0.013283,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194953,0.013283,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194953,0.013283,-0.016995,0.249422,0,0);}
.m74_c00089{transform:matrix(0.195093,0.013293,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195093,0.013293,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195093,0.013293,-0.016995,0.249422,0,0);}
.m7c_c00089{transform:matrix(0.195297,0.013307,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195297,0.013307,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195297,0.013307,-0.016995,0.249422,0,0);}
.mba_c00089{transform:matrix(0.195337,0.013310,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195337,0.013310,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195337,0.013310,-0.016995,0.249422,0,0);}
.m2b_c00089{transform:matrix(0.195398,0.015483,-0.019748,0.249219,0,0);-ms-transform:matrix(0.195398,0.015483,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.195398,0.015483,-0.019748,0.249219,0,0);}
.m12_c00089{transform:matrix(0.195427,0.015485,-0.019748,0.249219,0,0);-ms-transform:matrix(0.195427,0.015485,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.195427,0.015485,-0.019748,0.249219,0,0);}
.m40_c00089{transform:matrix(0.195677,0.015505,-0.019748,0.249219,0,0);-ms-transform:matrix(0.195677,0.015505,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.195677,0.015505,-0.019748,0.249219,0,0);}
.m29_c00089{transform:matrix(0.195926,0.015525,-0.019748,0.249219,0,0);-ms-transform:matrix(0.195926,0.015525,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.195926,0.015525,-0.019748,0.249219,0,0);}
.m7b_c00089{transform:matrix(0.195931,0.013350,-0.016995,0.249422,0,0);-ms-transform:matrix(0.195931,0.013350,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.195931,0.013350,-0.016995,0.249422,0,0);}
.m63_c00089{transform:matrix(0.196440,0.013385,-0.016995,0.249422,0,0);-ms-transform:matrix(0.196440,0.013385,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.196440,0.013385,-0.016995,0.249422,0,0);}
.md0_c00089{transform:matrix(0.196769,0.013407,-0.016995,0.249422,0,0);-ms-transform:matrix(0.196769,0.013407,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.196769,0.013407,-0.016995,0.249422,0,0);}
.mb8_c00089{transform:matrix(0.197143,0.013433,-0.016995,0.249422,0,0);-ms-transform:matrix(0.197143,0.013433,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.197143,0.013433,-0.016995,0.249422,0,0);}
.mcd_c00089{transform:matrix(0.198190,0.013504,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198190,0.013504,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198190,0.013504,-0.016995,0.249422,0,0);}
.mb3_c00089{transform:matrix(0.198325,0.013513,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198325,0.013513,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198325,0.013513,-0.016995,0.249422,0,0);}
.mcc_c00089{transform:matrix(0.198365,0.013516,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198365,0.013516,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198365,0.013516,-0.016995,0.249422,0,0);}
.m49_c00089{transform:matrix(0.198482,0.014135,-0.017758,0.249368,0,0);-ms-transform:matrix(0.198482,0.014135,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.198482,0.014135,-0.017758,0.249368,0,0);}
.mb7_c00089{transform:matrix(0.198979,0.013558,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198979,0.013558,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198979,0.013558,-0.016995,0.249422,0,0);}
.ma_c00089{transform:matrix(0.199420,0.015802,-0.019748,0.249219,0,0);-ms-transform:matrix(0.199420,0.015802,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.199420,0.015802,-0.019748,0.249219,0,0);}
.m20_c00089{transform:matrix(0.199475,0.015806,-0.019748,0.249219,0,0);-ms-transform:matrix(0.199475,0.015806,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.199475,0.015806,-0.019748,0.249219,0,0);}
.m60_c00089{transform:matrix(0.199542,0.013596,-0.016995,0.249422,0,0);-ms-transform:matrix(0.199542,0.013596,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.199542,0.013596,-0.016995,0.249422,0,0);}
.mbd_c00089{transform:matrix(0.199557,0.013597,-0.016995,0.249422,0,0);-ms-transform:matrix(0.199557,0.013597,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.199557,0.013597,-0.016995,0.249422,0,0);}
.m68_c00089{transform:matrix(0.199702,0.013607,-0.016995,0.249422,0,0);-ms-transform:matrix(0.199702,0.013607,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.199702,0.013607,-0.016995,0.249422,0,0);}
.m22_c00089{transform:matrix(0.200023,0.015849,-0.019748,0.249219,0,0);-ms-transform:matrix(0.200023,0.015849,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.200023,0.015849,-0.019748,0.249219,0,0);}
.m91_c00089{transform:matrix(0.200166,0.013639,-0.016995,0.249422,0,0);-ms-transform:matrix(0.200166,0.013639,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.200166,0.013639,-0.016995,0.249422,0,0);}
.mc1_c00089{transform:matrix(0.200355,0.013651,-0.016995,0.249422,0,0);-ms-transform:matrix(0.200355,0.013651,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.200355,0.013651,-0.016995,0.249422,0,0);}
.mf_c00089{transform:matrix(0.200621,0.015897,-0.019748,0.249219,0,0);-ms-transform:matrix(0.200621,0.015897,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.200621,0.015897,-0.019748,0.249219,0,0);}
.m1f_c00089{transform:matrix(0.200935,0.015922,-0.019748,0.249219,0,0);-ms-transform:matrix(0.200935,0.015922,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.200935,0.015922,-0.019748,0.249219,0,0);}
.mc7_c00089{transform:matrix(0.201213,0.013710,-0.016995,0.249422,0,0);-ms-transform:matrix(0.201213,0.013710,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.201213,0.013710,-0.016995,0.249422,0,0);}
.ma9_c00089{transform:matrix(0.201548,0.013733,-0.016995,0.249422,0,0);-ms-transform:matrix(0.201548,0.013733,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.201548,0.013733,-0.016995,0.249422,0,0);}
.m78_c00089{transform:matrix(0.201568,0.013734,-0.016995,0.249422,0,0);-ms-transform:matrix(0.201568,0.013734,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.201568,0.013734,-0.016995,0.249422,0,0);}
.md_c00089{transform:matrix(0.201862,0.015995,-0.019748,0.249219,0,0);-ms-transform:matrix(0.201862,0.015995,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.201862,0.015995,-0.019748,0.249219,0,0);}
.m94_c00089{transform:matrix(0.202750,0.013815,-0.016995,0.249422,0,0);-ms-transform:matrix(0.202750,0.013815,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.202750,0.013815,-0.016995,0.249422,0,0);}
.m48_c00089{transform:matrix(0.202806,0.014443,-0.017758,0.249368,0,0);-ms-transform:matrix(0.202806,0.014443,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.202806,0.014443,-0.017758,0.249368,0,0);}
.m4_c00089{transform:matrix(0.203093,0.016093,-0.019748,0.249219,0,0);-ms-transform:matrix(0.203093,0.016093,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.203093,0.016093,-0.019748,0.249219,0,0);}
.m6d_c00089{transform:matrix(0.203114,0.013839,-0.016995,0.249422,0,0);-ms-transform:matrix(0.203114,0.013839,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.203114,0.013839,-0.016995,0.249422,0,0);}
.m9a_c00089{transform:matrix(0.203119,0.013840,-0.016995,0.249422,0,0);-ms-transform:matrix(0.203119,0.013840,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.203119,0.013840,-0.016995,0.249422,0,0);}
.m1c_c00089{transform:matrix(0.203198,0.016101,-0.019748,0.249219,0,0);-ms-transform:matrix(0.203198,0.016101,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.203198,0.016101,-0.019748,0.249219,0,0);}
.mcf_c00089{transform:matrix(0.203383,0.013858,-0.016995,0.249422,0,0);-ms-transform:matrix(0.203383,0.013858,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.203383,0.013858,-0.016995,0.249422,0,0);}
.m2a_c00089{transform:matrix(0.203437,0.016120,-0.019748,0.249219,0,0);-ms-transform:matrix(0.203437,0.016120,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.203437,0.016120,-0.019748,0.249219,0,0);}
.mab_c00089{transform:matrix(0.203703,0.013880,-0.016995,0.249422,0,0);-ms-transform:matrix(0.203703,0.013880,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.203703,0.013880,-0.016995,0.249422,0,0);}
.mb1_c00089{transform:matrix(0.204271,0.013918,-0.016995,0.249422,0,0);-ms-transform:matrix(0.204271,0.013918,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.204271,0.013918,-0.016995,0.249422,0,0);}
.m7_c00089{transform:matrix(0.205695,0.016299,-0.019748,0.249219,0,0);-ms-transform:matrix(0.205695,0.016299,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.205695,0.016299,-0.019748,0.249219,0,0);}
.m3b_c00089{transform:matrix(0.205730,0.016302,-0.019748,0.249219,0,0);-ms-transform:matrix(0.205730,0.016302,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.205730,0.016302,-0.019748,0.249219,0,0);}
.mbf_c00089{transform:matrix(0.205858,0.014026,-0.016995,0.249422,0,0);-ms-transform:matrix(0.205858,0.014026,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.205858,0.014026,-0.016995,0.249422,0,0);}
.m97_c00089{transform:matrix(0.206167,0.014047,-0.016995,0.249422,0,0);-ms-transform:matrix(0.206167,0.014047,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.206167,0.014047,-0.016995,0.249422,0,0);}
.m36_c00089{transform:matrix(0.206662,0.016375,-0.019748,0.249219,0,0);-ms-transform:matrix(0.206662,0.016375,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.206662,0.016375,-0.019748,0.249219,0,0);}
.mb_c00089{transform:matrix(0.206961,0.016399,-0.019748,0.249219,0,0);-ms-transform:matrix(0.206961,0.016399,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.206961,0.016399,-0.019748,0.249219,0,0);}
.mb0_c00089{transform:matrix(0.207359,0.014129,-0.016995,0.249422,0,0);-ms-transform:matrix(0.207359,0.014129,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.207359,0.014129,-0.016995,0.249422,0,0);}
.mdf_c00089{transform:matrix(0.207553,0.011011,-0.013245,0.249649,0,0);-ms-transform:matrix(0.207553,0.011011,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.207553,0.011011,-0.013245,0.249649,0,0);}
.m3c_c00089{transform:matrix(0.208013,0.016482,-0.019748,0.249219,0,0);-ms-transform:matrix(0.208013,0.016482,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.208013,0.016482,-0.019748,0.249219,0,0);}
.m3f_c00089{transform:matrix(0.208093,0.016489,-0.019748,0.249219,0,0);-ms-transform:matrix(0.208093,0.016489,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.208093,0.016489,-0.019748,0.249219,0,0);}
.mc0_c00089{transform:matrix(0.208801,0.014227,-0.016995,0.249422,0,0);-ms-transform:matrix(0.208801,0.014227,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.208801,0.014227,-0.016995,0.249422,0,0);}
.m57_c00089{transform:matrix(0.209429,0.014270,-0.016995,0.249422,0,0);-ms-transform:matrix(0.209429,0.014270,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.209429,0.014270,-0.016995,0.249422,0,0);}
.m19_c00089{transform:matrix(0.209977,0.016638,-0.019748,0.249219,0,0);-ms-transform:matrix(0.209977,0.016638,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.209977,0.016638,-0.019748,0.249219,0,0);}
.m24_c00089{transform:matrix(0.209982,0.016638,-0.019748,0.249219,0,0);-ms-transform:matrix(0.209982,0.016638,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.209982,0.016638,-0.019748,0.249219,0,0);}
.mc6_c00089{transform:matrix(0.210018,0.014310,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210018,0.014310,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210018,0.014310,-0.016995,0.249422,0,0);}
.m4f_c00089{transform:matrix(0.210083,0.014961,-0.017758,0.249368,0,0);-ms-transform:matrix(0.210083,0.014961,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.210083,0.014961,-0.017758,0.249368,0,0);}
.m73_c00089{transform:matrix(0.210168,0.014320,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210168,0.014320,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210168,0.014320,-0.016995,0.249422,0,0);}
.mdd_c00089{transform:matrix(0.210714,0.011179,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210714,0.011179,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210714,0.011179,-0.013245,0.249649,0,0);}
.ma3_c00089{transform:matrix(0.210806,0.014364,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210806,0.014364,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210806,0.014364,-0.016995,0.249422,0,0);}
.m46_c00089{transform:matrix(0.211140,0.015036,-0.017758,0.249368,0,0);-ms-transform:matrix(0.211140,0.015036,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.211140,0.015036,-0.017758,0.249368,0,0);}
.m6_c00089{transform:matrix(0.212100,0.016806,-0.019748,0.249219,0,0);-ms-transform:matrix(0.212100,0.016806,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.212100,0.016806,-0.019748,0.249219,0,0);}
.ma8_c00089{transform:matrix(0.212587,0.014485,-0.016995,0.249422,0,0);-ms-transform:matrix(0.212587,0.014485,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.212587,0.014485,-0.016995,0.249422,0,0);}
.m5f_c00089{transform:matrix(0.213690,0.014560,-0.016995,0.249422,0,0);-ms-transform:matrix(0.213690,0.014560,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.213690,0.014560,-0.016995,0.249422,0,0);}
.mda_c00089{transform:matrix(0.213809,0.014568,-0.016995,0.249422,0,0);-ms-transform:matrix(0.213809,0.014568,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.213809,0.014568,-0.016995,0.249422,0,0);}
.m4b_c00089{transform:matrix(0.214457,0.015272,-0.017758,0.249368,0,0);-ms-transform:matrix(0.214457,0.015272,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.214457,0.015272,-0.017758,0.249368,0,0);}
.m8a_c00089{transform:matrix(0.214702,0.014629,-0.016995,0.249422,0,0);-ms-transform:matrix(0.214702,0.014629,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.214702,0.014629,-0.016995,0.249422,0,0);}
.m96_c00089{transform:matrix(0.214707,0.014629,-0.016995,0.249422,0,0);-ms-transform:matrix(0.214707,0.014629,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.214707,0.014629,-0.016995,0.249422,0,0);}
.m79_c00089{transform:matrix(0.215141,0.014659,-0.016995,0.249422,0,0);-ms-transform:matrix(0.215141,0.014659,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.215141,0.014659,-0.016995,0.249422,0,0);}
.mc3_c00089{transform:matrix(0.215226,0.014665,-0.016995,0.249422,0,0);-ms-transform:matrix(0.215226,0.014665,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.215226,0.014665,-0.016995,0.249422,0,0);}
.m3a_c00089{transform:matrix(0.215714,0.017093,-0.019748,0.249219,0,0);-ms-transform:matrix(0.215714,0.017093,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.215714,0.017093,-0.019748,0.249219,0,0);}
.m15_c00089{transform:matrix(0.215963,0.017112,-0.019748,0.249219,0,0);-ms-transform:matrix(0.215963,0.017112,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.215963,0.017112,-0.019748,0.249219,0,0);}
.m9_c00089{transform:matrix(0.216372,0.017145,-0.019748,0.249219,0,0);-ms-transform:matrix(0.216372,0.017145,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.216372,0.017145,-0.019748,0.249219,0,0);}
.md2_c00089{transform:matrix(0.216388,0.014744,-0.016995,0.249422,0,0);-ms-transform:matrix(0.216388,0.014744,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.216388,0.014744,-0.016995,0.249422,0,0);}
.ma6_c00089{transform:matrix(0.216548,0.014755,-0.016995,0.249422,0,0);-ms-transform:matrix(0.216548,0.014755,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.216548,0.014755,-0.016995,0.249422,0,0);}
.m23_c00089{transform:matrix(0.216671,0.017169,-0.019748,0.249219,0,0);-ms-transform:matrix(0.216671,0.017169,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.216671,0.017169,-0.019748,0.249219,0,0);}
.m10_c00089{transform:matrix(0.217847,0.017262,-0.019748,0.249219,0,0);-ms-transform:matrix(0.217847,0.017262,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.217847,0.017262,-0.019748,0.249219,0,0);}
.m39_c00089{transform:matrix(0.220369,0.017462,-0.019748,0.249219,0,0);-ms-transform:matrix(0.220369,0.017462,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.220369,0.017462,-0.019748,0.249219,0,0);}
.m9e_c00089{transform:matrix(0.220589,0.015030,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220589,0.015030,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220589,0.015030,-0.016995,0.249422,0,0);}
.m9d_c00089{transform:matrix(0.220643,0.015034,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220643,0.015034,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220643,0.015034,-0.016995,0.249422,0,0);}
.m86_c00089{transform:matrix(0.220903,0.015051,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220903,0.015051,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220903,0.015051,-0.016995,0.249422,0,0);}
.m1b_c00089{transform:matrix(0.222567,0.017636,-0.019748,0.249219,0,0);-ms-transform:matrix(0.222567,0.017636,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.222567,0.017636,-0.019748,0.249219,0,0);}
.m1a_c00089{transform:matrix(0.224182,0.017764,-0.019748,0.249219,0,0);-ms-transform:matrix(0.224182,0.017764,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.224182,0.017764,-0.019748,0.249219,0,0);}
.m5e_c00089{transform:matrix(0.224509,0.015297,-0.016995,0.249422,0,0);-ms-transform:matrix(0.224509,0.015297,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.224509,0.015297,-0.016995,0.249422,0,0);}
.md9_c00089{transform:matrix(0.226021,0.015400,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226021,0.015400,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226021,0.015400,-0.016995,0.249422,0,0);}
.mce_c00089{transform:matrix(0.226270,0.015417,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226270,0.015417,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226270,0.015417,-0.016995,0.249422,0,0);}
.m47_c00089{transform:matrix(0.226387,0.016122,-0.017758,0.249368,0,0);-ms-transform:matrix(0.226387,0.016122,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.226387,0.016122,-0.017758,0.249368,0,0);}
.m8d_c00089{transform:matrix(0.226475,0.015431,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226475,0.015431,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226475,0.015431,-0.016995,0.249422,0,0);}
.mca_c00089{transform:matrix(0.226654,0.015443,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226654,0.015443,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226654,0.015443,-0.016995,0.249422,0,0);}
.m5b_c00089{transform:matrix(0.226659,0.015444,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226659,0.015444,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226659,0.015444,-0.016995,0.249422,0,0);}
.m28_c00089{transform:matrix(0.226665,0.017960,-0.019748,0.249219,0,0);-ms-transform:matrix(0.226665,0.017960,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.226665,0.017960,-0.019748,0.249219,0,0);}
.m5a_c00089{transform:matrix(0.227582,0.015507,-0.016995,0.249422,0,0);-ms-transform:matrix(0.227582,0.015507,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.227582,0.015507,-0.016995,0.249422,0,0);}
.m5c_c00089{transform:matrix(0.227867,0.015526,-0.016995,0.249422,0,0);-ms-transform:matrix(0.227867,0.015526,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.227867,0.015526,-0.016995,0.249422,0,0);}
.m37_c00089{transform:matrix(0.230034,0.018227,-0.019748,0.249219,0,0);-ms-transform:matrix(0.230034,0.018227,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.230034,0.018227,-0.019748,0.249219,0,0);}
.m8c_c00089{transform:matrix(0.232132,0.015817,-0.016995,0.249422,0,0);-ms-transform:matrix(0.232132,0.015817,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.232132,0.015817,-0.016995,0.249422,0,0);}
.m2c_c00089{transform:matrix(0.232352,0.018411,-0.019748,0.249219,0,0);-ms-transform:matrix(0.232352,0.018411,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.232352,0.018411,-0.019748,0.249219,0,0);}
.m45_c00089{transform:matrix(0.233549,0.016632,-0.017758,0.249368,0,0);-ms-transform:matrix(0.233549,0.016632,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.233549,0.016632,-0.017758,0.249368,0,0);}
.mb2_c00089{transform:matrix(0.234137,0.015953,-0.016995,0.249422,0,0);-ms-transform:matrix(0.234137,0.015953,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.234137,0.015953,-0.016995,0.249422,0,0);}
.ma0_c00089{transform:matrix(0.236906,0.016142,-0.016995,0.249422,0,0);-ms-transform:matrix(0.236906,0.016142,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.236906,0.016142,-0.016995,0.249422,0,0);}
.m16_c00089{transform:matrix(0.239430,0.018972,-0.019748,0.249219,0,0);-ms-transform:matrix(0.239430,0.018972,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.239430,0.018972,-0.019748,0.249219,0,0);}
.m4c_c00089{transform:matrix(0.239508,0.017056,-0.017758,0.249368,0,0);-ms-transform:matrix(0.239508,0.017056,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.239508,0.017056,-0.017758,0.249368,0,0);}
.m3d_c00089{transform:matrix(0.239624,0.018987,-0.019748,0.249219,0,0);-ms-transform:matrix(0.239624,0.018987,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.239624,0.018987,-0.019748,0.249219,0,0);}
.m4a_c00089{transform:matrix(0.242172,0.017246,-0.017758,0.249368,0,0);-ms-transform:matrix(0.242172,0.017246,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.242172,0.017246,-0.017758,0.249368,0,0);}
.m50_c00089{transform:matrix(0.242611,0.017277,-0.017758,0.249368,0,0);-ms-transform:matrix(0.242611,0.017277,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.242611,0.017277,-0.017758,0.249368,0,0);}
.m6c_c00089{transform:matrix(0.243211,0.016571,-0.016995,0.249422,0,0);-ms-transform:matrix(0.243211,0.016571,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.243211,0.016571,-0.016995,0.249422,0,0);}
.m4e_c00089{transform:matrix(0.243842,0.017365,-0.017758,0.249368,0,0);-ms-transform:matrix(0.243842,0.017365,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.243842,0.017365,-0.017758,0.249368,0,0);}
.m14_c00089{transform:matrix(0.244833,0.019400,-0.019748,0.249219,0,0);-ms-transform:matrix(0.244833,0.019400,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.244833,0.019400,-0.019748,0.249219,0,0);}
.mb6_c00089{transform:matrix(0.245990,0.016761,-0.016995,0.249422,0,0);-ms-transform:matrix(0.245990,0.016761,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.245990,0.016761,-0.016995,0.249422,0,0);}
.mc4_c00089{transform:matrix(0.246459,0.016793,-0.016995,0.249422,0,0);-ms-transform:matrix(0.246459,0.016793,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.246459,0.016793,-0.016995,0.249422,0,0);}
.m44_c00089{transform:matrix(0.246893,0.015833,-0.015999,0.249488,0,0);-ms-transform:matrix(0.246893,0.015833,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.246893,0.015833,-0.015999,0.249488,0,0);}
.ma1_c00089{transform:matrix(0.247217,0.016844,-0.016995,0.249422,0,0);-ms-transform:matrix(0.247217,0.016844,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.247217,0.016844,-0.016995,0.249422,0,0);}
.m71_c00089{transform:matrix(0.247955,0.016895,-0.016995,0.249422,0,0);-ms-transform:matrix(0.247955,0.016895,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.247955,0.016895,-0.016995,0.249422,0,0);}
.m27_c00089{transform:matrix(0.249907,0.019802,-0.019748,0.249219,0,0);-ms-transform:matrix(0.249907,0.019802,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.249907,0.019802,-0.019748,0.249219,0,0);}
.m6e_c00089{transform:matrix(0.255917,0.017437,-0.016995,0.249422,0,0);-ms-transform:matrix(0.255917,0.017437,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.255917,0.017437,-0.016995,0.249422,0,0);}
.m51_c00089{transform:matrix(0.261473,0.018620,-0.017758,0.249368,0,0);-ms-transform:matrix(0.261473,0.018620,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.261473,0.018620,-0.017758,0.249368,0,0);}
.m2e_c00089{transform:matrix(0.263664,0.020892,-0.019748,0.249219,0,0);-ms-transform:matrix(0.263664,0.020892,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.263664,0.020892,-0.019748,0.249219,0,0);}
.m26_c00089{transform:matrix(0.274006,0.021712,-0.019748,0.249219,0,0);-ms-transform:matrix(0.274006,0.021712,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.274006,0.021712,-0.019748,0.249219,0,0);}
.m52_c00089{transform:matrix(0.275891,0.019647,-0.017758,0.249368,0,0);-ms-transform:matrix(0.275891,0.019647,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.275891,0.019647,-0.017758,0.249368,0,0);}
.m7a_c00089{transform:matrix(0.278709,0.018990,-0.016995,0.249422,0,0);-ms-transform:matrix(0.278709,0.018990,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.278709,0.018990,-0.016995,0.249422,0,0);}
.m9b_c00089{transform:matrix(0.284156,0.019361,-0.016995,0.249422,0,0);-ms-transform:matrix(0.284156,0.019361,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.284156,0.019361,-0.016995,0.249422,0,0);}
.m85_c00089{transform:matrix(0.297959,0.020302,-0.016995,0.249422,0,0);-ms-transform:matrix(0.297959,0.020302,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.297959,0.020302,-0.016995,0.249422,0,0);}
.m2d_c00089{transform:matrix(0.325071,0.025758,-0.019748,0.249219,0,0);-ms-transform:matrix(0.325071,0.025758,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.325071,0.025758,-0.019748,0.249219,0,0);}
.m0_c00089{transform:matrix(0.353871,0.028040,-0.019748,0.249219,0,0);-ms-transform:matrix(0.353871,0.028040,-0.019748,0.249219,0,0);-webkit-transform:matrix(0.353871,0.028040,-0.019748,0.249219,0,0);}
.m9c_c00089{transform:matrix(0.354009,0.024121,-0.016995,0.249422,0,0);-ms-transform:matrix(0.354009,0.024121,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.354009,0.024121,-0.016995,0.249422,0,0);}
.m70_c00089{transform:matrix(0.552549,0.037649,-0.016995,0.249422,0,0);-ms-transform:matrix(0.552549,0.037649,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.552549,0.037649,-0.016995,0.249422,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
.fc0_c00089{color:transparent;}
.fsa_c00089{font-size:55.623560px;}
.fs11_c00089{font-size:57.768131px;}
.fs9_c00089{font-size:58.772063px;}
.fs5_c00089{font-size:58.807350px;}
.fs13_c00089{font-size:58.818460px;}
.fs4_c00089{font-size:59.857481px;}
.fse_c00089{font-size:59.868790px;}
.fs7_c00089{font-size:60.907612px;}
.fsc_c00089{font-size:60.919120px;}
.fs15_c00089{font-size:60.924660px;}
.fs8_c00089{font-size:61.953097px;}
.fs6_c00089{font-size:61.957743px;}
.fs12_c00089{font-size:61.969449px;}
.fs3_c00089{font-size:63.007875px;}
.fs14_c00089{font-size:63.019779px;}
.fs10_c00089{font-size:65.120438px;}
.fsb_c00089{font-size:66.170768px;}
.fs1_c00089{font-size:67.208399px;}
.fsf_c00089{font-size:67.221097px;}
.fs2_c00089{font-size:68.258531px;}
.fsd_c00089{font-size:69.321757px;}
.fs0_c00089{font-size:75.609449px;}
.y0_c00089{bottom:0.000000px;}
.ydd_c00089{bottom:24.443265px;}
.ydc_c00089{bottom:27.042033px;}
.ydb_c00089{bottom:28.043811px;}
.yda_c00089{bottom:30.542952px;}
.yd9_c00089{bottom:35.233104px;}
.yd6_c00089{bottom:35.856459px;}
.yd8_c00089{bottom:37.325712px;}
.yd5_c00089{bottom:37.441038px;}
.yd4_c00089{bottom:39.023577px;}
.yd7_c00089{bottom:41.018064px;}
.yd3_c00089{bottom:42.720315px;}
.yd2_c00089{bottom:45.692871px;}
.yd1_c00089{bottom:47.220258px;}
.yd0_c00089{bottom:49.182807px;}
.ycc_c00089{bottom:52.145802px;}
.ycf_c00089{bottom:52.648431px;}
.yce_c00089{bottom:54.069492px;}
.ycd_c00089{bottom:57.213624px;}
.ycb_c00089{bottom:58.997181px;}
.yca_c00089{bottom:63.643812px;}
.yc9_c00089{bottom:66.689553px;}
.yc7_c00089{bottom:70.101177px;}
.yc6_c00089{bottom:72.261195px;}
.yc8_c00089{bottom:73.423554px;}
.yc5_c00089{bottom:81.005007px;}
.yc4_c00089{bottom:82.968153px;}
.yc3_c00089{bottom:84.231909px;}
.yc2_c00089{bottom:86.217564px;}
.yc0_c00089{bottom:90.405186px;}
.yc1_c00089{bottom:90.443550px;}
.ybf_c00089{bottom:91.525935px;}
.ybe_c00089{bottom:93.508344px;}
.ybd_c00089{bottom:97.170483px;}
.ybc_c00089{bottom:98.445666px;}
.ybb_c00089{bottom:100.846971px;}
.yb8_c00089{bottom:103.523745px;}
.yba_c00089{bottom:104.070528px;}
.yb9_c00089{bottom:105.557607px;}
.yb7_c00089{bottom:108.844623px;}
.yb6_c00089{bottom:110.015748px;}
.yb5_c00089{bottom:113.061972px;}
.yb4_c00089{bottom:115.373484px;}
.yb3_c00089{bottom:116.363583px;}
.yb2_c00089{bottom:120.420987px;}
.yb1_c00089{bottom:123.888852px;}
.yb0_c00089{bottom:125.137764px;}
.yaf_c00089{bottom:129.142938px;}
.yaa_c00089{bottom:133.655946px;}
.yae_c00089{bottom:134.963304px;}
.yad_c00089{bottom:136.300719px;}
.yac_c00089{bottom:138.435687px;}
.ya9_c00089{bottom:139.530174px;}
.yab_c00089{bottom:139.854534px;}
.ya8_c00089{bottom:141.408888px;}
.ya7_c00089{bottom:144.630264px;}
.ya6_c00089{bottom:147.929676px;}
.ya5_c00089{bottom:152.225739px;}
.ya3_c00089{bottom:152.933292px;}
.ya2_c00089{bottom:154.187742px;}
.ya4_c00089{bottom:154.984917px;}
.ya1_c00089{bottom:158.868849px;}
.ya0_c00089{bottom:160.147236px;}
.y9f_c00089{bottom:161.675847px;}
.y9e_c00089{bottom:167.278146px;}
.y9d_c00089{bottom:168.486318px;}
.y9c_c00089{bottom:172.166463px;}
.y9b_c00089{bottom:174.164307px;}
.y9a_c00089{bottom:174.223290px;}
.y99_c00089{bottom:176.147430px;}
.y98_c00089{bottom:179.426247px;}
.y97_c00089{bottom:180.641295px;}
.y96_c00089{bottom:183.183720px;}
.y95_c00089{bottom:184.284399px;}
.y94_c00089{bottom:188.365497px;}
.y93_c00089{bottom:190.020987px;}
.y91_c00089{bottom:190.047150px;}
.y92_c00089{bottom:190.882254px;}
.y90_c00089{bottom:191.521431px;}
.y8f_c00089{bottom:195.391692px;}
.y8e_c00089{bottom:197.099934px;}
.y8d_c00089{bottom:198.474117px;}
.y8c_c00089{bottom:202.195725px;}
.y8b_c00089{bottom:205.985607px;}
.y8a_c00089{bottom:206.812884px;}
.y89_c00089{bottom:207.915462px;}
.y88_c00089{bottom:209.544705px;}
.y87_c00089{bottom:211.229097px;}
.y86_c00089{bottom:211.746315px;}
.y85_c00089{bottom:212.381277px;}
.y84_c00089{bottom:216.642816px;}
.y83_c00089{bottom:218.255025px;}
.y80_c00089{bottom:220.151217px;}
.y82_c00089{bottom:220.721772px;}
.y81_c00089{bottom:224.649798px;}
.y7f_c00089{bottom:226.336200px;}
.y7e_c00089{bottom:228.298293px;}
.y7d_c00089{bottom:232.374024px;}
.y7c_c00089{bottom:235.106184px;}
.y79_c00089{bottom:236.653770px;}
.y7b_c00089{bottom:237.015507px;}
.y78_c00089{bottom:239.899869px;}
.y7a_c00089{bottom:240.343374px;}
.y77_c00089{bottom:241.218894px;}
.y76_c00089{bottom:245.886165px;}
.y75_c00089{bottom:248.527854px;}
.y74_c00089{bottom:250.137744px;}
.y73_c00089{bottom:254.253480px;}
.y72_c00089{bottom:255.550437px;}
.y71_c00089{bottom:257.888136px;}
.y70_c00089{bottom:263.834718px;}
.y6f_c00089{bottom:264.550431px;}
.y6e_c00089{bottom:268.024605px;}
.y6d_c00089{bottom:274.096401px;}
.y6c_c00089{bottom:280.996767px;}
.y6b_c00089{bottom:282.866061px;}
.y6a_c00089{bottom:286.498455px;}
.y69_c00089{bottom:290.855607px;}
.y68_c00089{bottom:300.323148px;}
.y67_c00089{bottom:302.762877px;}
.y66_c00089{bottom:304.865496px;}
.y65_c00089{bottom:312.430026px;}
.y64_c00089{bottom:315.481569px;}
.y63_c00089{bottom:316.796076px;}
.y62_c00089{bottom:318.004746px;}
.y61_c00089{bottom:321.272280px;}
.y60_c00089{bottom:322.425975px;}
.y5f_c00089{bottom:327.546081px;}
.y5e_c00089{bottom:329.180223px;}
.y5d_c00089{bottom:332.085912px;}
.y5c_c00089{bottom:336.036684px;}
.y5b_c00089{bottom:337.809201px;}
.y5a_c00089{bottom:339.880086px;}
.y59_c00089{bottom:340.943742px;}
.y58_c00089{bottom:341.780142px;}
.y57_c00089{bottom:343.771080px;}
.y56_c00089{bottom:347.211438px;}
.y53_c00089{bottom:355.117033px;}
.y55_c00089{bottom:355.391634px;}
.y54_c00089{bottom:356.185500px;}
.y52_c00089{bottom:359.297830px;}
.y51_c00089{bottom:363.261802px;}
.y50_c00089{bottom:364.508650px;}
.y4f_c00089{bottom:369.002011px;}
.y4e_c00089{bottom:372.406992px;}
.y4d_c00089{bottom:374.285358px;}
.y4c_c00089{bottom:377.799858px;}
.y4b_c00089{bottom:379.011295px;}
.y4a_c00089{bottom:381.162595px;}
.y49_c00089{bottom:383.801133px;}
.y48_c00089{bottom:386.202175px;}
.y45_c00089{bottom:389.573256px;}
.y47_c00089{bottom:389.811993px;}
.y44_c00089{bottom:391.036872px;}
.y46_c00089{bottom:391.822500px;}
.y43_c00089{bottom:394.234824px;}
.y42_c00089{bottom:395.577000px;}
.y41_c00089{bottom:408.793982px;}
.y40_c00089{bottom:411.639420px;}
.y3f_c00089{bottom:413.129144px;}
.y3e_c00089{bottom:416.269961px;}
.y3d_c00089{bottom:420.976706px;}
.y3c_c00089{bottom:423.620361px;}
.y3a_c00089{bottom:424.771275px;}
.y3b_c00089{bottom:425.287988px;}
.y39_c00089{bottom:427.423328px;}
.y38_c00089{bottom:429.467820px;}
.y37_c00089{bottom:431.413598px;}
.y36_c00089{bottom:434.435400px;}
.y35_c00089{bottom:437.987157px;}
.y34_c00089{bottom:439.568873px;}
.y33_c00089{bottom:441.767318px;}
.y32_c00089{bottom:443.328786px;}
.y31_c00089{bottom:444.958796px;}
.y30_c00089{bottom:446.639990px;}
.y2f_c00089{bottom:447.619503px;}
.y2e_c00089{bottom:450.034451px;}
.y2d_c00089{bottom:452.557190px;}
.y2c_c00089{bottom:456.030050px;}
.y2a_c00089{bottom:456.973697px;}
.y2b_c00089{bottom:458.221904px;}
.y29_c00089{bottom:461.514920px;}
.y28_c00089{bottom:462.668127px;}
.y27_c00089{bottom:465.078177px;}
.y26_c00089{bottom:467.982506px;}
.y25_c00089{bottom:470.241341px;}
.y24_c00089{bottom:475.519515px;}
.y23_c00089{bottom:476.576390px;}
.y22_c00089{bottom:478.031667px;}
.y21_c00089{bottom:479.314497px;}
.y20_c00089{bottom:483.762635px;}
.y1f_c00089{bottom:487.375422px;}
.y1e_c00089{bottom:488.588198px;}
.y1c_c00089{bottom:490.210185px;}
.y1d_c00089{bottom:492.252227px;}
.y1b_c00089{bottom:495.171099px;}
.y1a_c00089{bottom:496.820283px;}
.y19_c00089{bottom:503.007657px;}
.y18_c00089{bottom:504.638073px;}
.y17_c00089{bottom:508.993764px;}
.y16_c00089{bottom:509.142845px;}
.y15_c00089{bottom:510.329397px;}
.y14_c00089{bottom:512.513726px;}
.y13_c00089{bottom:518.117288px;}
.y12_c00089{bottom:520.594269px;}
.y11_c00089{bottom:521.975450px;}
.yf_c00089{bottom:524.283422px;}
.y10_c00089{bottom:524.928128px;}
.ye_c00089{bottom:528.389449px;}
.yd_c00089{bottom:530.561390px;}
.yc_c00089{bottom:531.375488px;}
.yb_c00089{bottom:534.145658px;}
.ya_c00089{bottom:535.153922px;}
.y9_c00089{bottom:537.652079px;}
.y8_c00089{bottom:540.234645px;}
.y7_c00089{bottom:541.948317px;}
.ye1_c00089{bottom:543.835517px;}
.ye0_c00089{bottom:546.731145px;}
.ydf_c00089{bottom:547.468984px;}
.yde_c00089{bottom:548.932500px;}
.y6_c00089{bottom:552.518204px;}
.y5_c00089{bottom:553.915332px;}
.y4_c00089{bottom:555.924297px;}
.y3_c00089{bottom:560.865306px;}
.y2_c00089{bottom:563.972615px;}
.y1_c00089{bottom:569.706000px;}
.hc_c00089{height:55.623560px;}
.h13_c00089{height:57.768131px;}
.hb_c00089{height:58.772063px;}
.h7_c00089{height:58.807350px;}
.h15_c00089{height:58.818460px;}
.h6_c00089{height:59.857481px;}
.h10_c00089{height:59.868790px;}
.h9_c00089{height:60.907612px;}
.he_c00089{height:60.919120px;}
.h17_c00089{height:60.924660px;}
.ha_c00089{height:61.953097px;}
.h8_c00089{height:61.957743px;}
.h14_c00089{height:61.969449px;}
.h5_c00089{height:63.007875px;}
.h16_c00089{height:63.019779px;}
.h12_c00089{height:65.120438px;}
.hd_c00089{height:66.170768px;}
.h3_c00089{height:67.208399px;}
.h11_c00089{height:67.221097px;}
.h4_c00089{height:68.258531px;}
.hf_c00089{height:69.321757px;}
.h2_c00089{height:75.609449px;}
.h1_c00089{height:612.000000px;}
.h0_c00089{height:612.300000px;}
.w0_c00089{width:361.500000px;}
.x0_c00089{left:0.000000px;}
.x70_c00089{left:41.984010px;}
.x6d_c00089{left:43.420473px;}
.x67_c00089{left:44.428440px;}
.x5f_c00089{left:45.823857px;}
.x43_c00089{left:47.202945px;}
.x3_c00089{left:48.303942px;}
.xe_c00089{left:49.543642px;}
.x47_c00089{left:54.514284px;}
.x37_c00089{left:56.923569px;}
.x4b_c00089{left:58.528341px;}
.x5b_c00089{left:60.715044px;}
.x3c_c00089{left:63.708000px;}
.x44_c00089{left:65.481549px;}
.x58_c00089{left:67.797558px;}
.x60_c00089{left:72.054981px;}
.x7_c00089{left:75.730140px;}
.x34_c00089{left:77.168049px;}
.x2a_c00089{left:80.600857px;}
.x38_c00089{left:83.679981px;}
.x24_c00089{left:87.866071px;}
.x3f_c00089{left:89.967663px;}
.x4e_c00089{left:92.848506px;}
.x65_c00089{left:95.754384px;}
.xf_c00089{left:97.765621px;}
.x68_c00089{left:99.164967px;}
.x48_c00089{left:100.371045px;}
.x2b_c00089{left:102.803574px;}
.x19_c00089{left:106.366132px;}
.x1_c00089{left:108.724500px;}
.x4_c00089{left:112.275054px;}
.x66_c00089{left:114.831099px;}
.x8_c00089{left:116.565349px;}
.x40_c00089{left:117.593262px;}
.x52_c00089{left:118.879674px;}
.x10_c00089{left:120.324333px;}
.x1a_c00089{left:125.242179px;}
.x1e_c00089{left:126.545158px;}
.x35_c00089{left:127.858022px;}
.x6e_c00089{left:129.604197px;}
.x39_c00089{left:132.168995px;}
.x15_c00089{left:134.631324px;}
.x45_c00089{left:136.385577px;}
.x5_c00089{left:138.293424px;}
.x6b_c00089{left:142.579836px;}
.x49_c00089{left:144.587826px;}
.x25_c00089{left:148.540426px;}
.x2c_c00089{left:152.660550px;}
.x6_c00089{left:156.381349px;}
.x1f_c00089{left:159.648314px;}
.x11_c00089{left:160.776637px;}
.x4f_c00089{left:164.299062px;}
.x4a_c00089{left:167.343057px;}
.x6c_c00089{left:169.234119px;}
.x5c_c00089{left:170.751897px;}
.x9_c00089{left:172.022602px;}
.x59_c00089{left:173.404458px;}
.x4c_c00089{left:174.746853px;}
.x41_c00089{left:179.196570px;}
.x2_c00089{left:181.081277px;}
.x4d_c00089{left:183.463107px;}
.x69_c00089{left:184.801998px;}
.x26_c00089{left:192.627928px;}
.x2d_c00089{left:195.069682px;}
.x2e_c00089{left:196.759123px;}
.x36_c00089{left:198.625081px;}
.x6a_c00089{left:200.599401px;}
.x20_c00089{left:202.208214px;}
.x46_c00089{left:205.540497px;}
.x61_c00089{left:209.862999px;}
.x53_c00089{left:211.975029px;}
.x3a_c00089{left:213.935333px;}
.xa_c00089{left:215.833162px;}
.x64_c00089{left:221.358903px;}
.x16_c00089{left:222.726381px;}
.x42_c00089{left:224.512623px;}
.x71_c00089{left:225.537813px;}
.x32_c00089{left:227.086500px;}
.xb_c00089{left:228.709202px;}
.x62_c00089{left:229.935837px;}
.x56_c00089{left:231.347580px;}
.x6f_c00089{left:233.291130px;}
.x27_c00089{left:234.823296px;}
.x21_c00089{left:237.523614px;}
.x54_c00089{left:238.807161px;}
.x73_c00089{left:240.201886px;}
.x17_c00089{left:246.198393px;}
.x2f_c00089{left:248.039179px;}
.x1b_c00089{left:250.713204px;}
.x12_c00089{left:252.272353px;}
.x22_c00089{left:254.413411px;}
.x50_c00089{left:255.499890px;}
.x72_c00089{left:259.661328px;}
.xc_c00089{left:263.051746px;}
.x1c_c00089{left:270.682269px;}
.x30_c00089{left:272.366565px;}
.x3d_c00089{left:275.127813px;}
.x28_c00089{left:281.316718px;}
.x5d_c00089{left:283.996650px;}
.x57_c00089{left:285.959676px;}
.x13_c00089{left:287.948754px;}
.x5a_c00089{left:291.851367px;}
.x1d_c00089{left:293.340451px;}
.x33_c00089{left:297.884121px;}
.x3e_c00089{left:303.013929px;}
.x14_c00089{left:307.329511px;}
.x74_c00089{left:308.689330px;}
.x29_c00089{left:309.807552px;}
.x51_c00089{left:312.478803px;}
.x5e_c00089{left:314.973246px;}
.x18_c00089{left:316.821045px;}
.x31_c00089{left:318.836320px;}
.x23_c00089{left:320.954950px;}
.x55_c00089{left:323.378460px;}
.x63_c00089{left:324.686445px;}
.xd_c00089{left:327.975400px;}
.x3b_c00089{left:329.952565px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
.fsa_c00089{font-size:49.443164pt;}
.fs11_c00089{font-size:51.349449pt;}
.fs9_c00089{font-size:52.241834pt;}
.fs5_c00089{font-size:52.273200pt;}
.fs13_c00089{font-size:52.283076pt;}
.fs4_c00089{font-size:53.206650pt;}
.fse_c00089{font-size:53.216702pt;}
.fs7_c00089{font-size:54.140100pt;}
.fsc_c00089{font-size:54.150329pt;}
.fs15_c00089{font-size:54.155253pt;}
.fs8_c00089{font-size:55.069420pt;}
.fs6_c00089{font-size:55.073550pt;}
.fs12_c00089{font-size:55.083955pt;}
.fs3_c00089{font-size:56.007000pt;}
.fs14_c00089{font-size:56.017581pt;}
.fs10_c00089{font-size:57.884834pt;}
.fsb_c00089{font-size:58.818460pt;}
.fs1_c00089{font-size:59.740800pt;}
.fsf_c00089{font-size:59.752087pt;}
.fs2_c00089{font-size:60.674250pt;}
.fsd_c00089{font-size:61.619339pt;}
.fs0_c00089{font-size:67.208399pt;}
.y0_c00089{bottom:0.000000pt;}
.ydd_c00089{bottom:21.727347pt;}
.ydc_c00089{bottom:24.037363pt;}
.ydb_c00089{bottom:24.927832pt;}
.yda_c00089{bottom:27.149291pt;}
.yd9_c00089{bottom:31.318315pt;}
.yd6_c00089{bottom:31.872408pt;}
.yd8_c00089{bottom:33.178411pt;}
.yd5_c00089{bottom:33.280923pt;}
.yd4_c00089{bottom:34.687624pt;}
.yd7_c00089{bottom:36.460501pt;}
.yd3_c00089{bottom:37.973613pt;}
.yd2_c00089{bottom:40.615885pt;}
.yd1_c00089{bottom:41.973563pt;}
.yd0_c00089{bottom:43.718051pt;}
.ycc_c00089{bottom:46.351824pt;}
.ycf_c00089{bottom:46.798605pt;}
.yce_c00089{bottom:48.061771pt;}
.ycd_c00089{bottom:50.856555pt;}
.ycb_c00089{bottom:52.441939pt;}
.yca_c00089{bottom:56.572277pt;}
.yc9_c00089{bottom:59.279603pt;}
.yc7_c00089{bottom:62.312157pt;}
.yc6_c00089{bottom:64.232173pt;}
.yc8_c00089{bottom:65.265381pt;}
.yc5_c00089{bottom:72.004451pt;}
.yc4_c00089{bottom:73.749469pt;}
.yc3_c00089{bottom:74.872808pt;}
.yc2_c00089{bottom:76.637835pt;}
.yc0_c00089{bottom:80.360165pt;}
.yc1_c00089{bottom:80.394267pt;}
.ybf_c00089{bottom:81.356387pt;}
.ybe_c00089{bottom:83.118528pt;}
.ybd_c00089{bottom:86.373763pt;}
.ybc_c00089{bottom:87.507259pt;}
.ybb_c00089{bottom:89.641752pt;}
.yb8_c00089{bottom:92.021107pt;}
.yba_c00089{bottom:92.507136pt;}
.yb9_c00089{bottom:93.828984pt;}
.yb7_c00089{bottom:96.750776pt;}
.yb6_c00089{bottom:97.791776pt;}
.yb5_c00089{bottom:100.499531pt;}
.yb4_c00089{bottom:102.554208pt;}
.yb3_c00089{bottom:103.434296pt;}
.yb2_c00089{bottom:107.040877pt;}
.yb1_c00089{bottom:110.123424pt;}
.yb0_c00089{bottom:111.233568pt;}
.yaf_c00089{bottom:114.793723pt;}
.yaa_c00089{bottom:118.805285pt;}
.yae_c00089{bottom:119.967381pt;}
.yad_c00089{bottom:121.156195pt;}
.yac_c00089{bottom:123.053944pt;}
.ya9_c00089{bottom:124.026821pt;}
.yab_c00089{bottom:124.315141pt;}
.ya8_c00089{bottom:125.696789pt;}
.ya7_c00089{bottom:128.560235pt;}
.ya6_c00089{bottom:131.493045pt;}
.ya5_c00089{bottom:135.311768pt;}
.ya3_c00089{bottom:135.940704pt;}
.ya2_c00089{bottom:137.055771pt;}
.ya4_c00089{bottom:137.764371pt;}
.ya1_c00089{bottom:141.216755pt;}
.ya0_c00089{bottom:142.353099pt;}
.y9f_c00089{bottom:143.711864pt;}
.y9e_c00089{bottom:148.691685pt;}
.y9d_c00089{bottom:149.765616pt;}
.y9c_c00089{bottom:153.036856pt;}
.y9b_c00089{bottom:154.812717pt;}
.y9a_c00089{bottom:154.865147pt;}
.y99_c00089{bottom:156.575493pt;}
.y98_c00089{bottom:159.489997pt;}
.y97_c00089{bottom:160.570040pt;}
.y96_c00089{bottom:162.829973pt;}
.y95_c00089{bottom:163.808355pt;}
.y94_c00089{bottom:167.435997pt;}
.y93_c00089{bottom:168.907544pt;}
.y91_c00089{bottom:168.930800pt;}
.y92_c00089{bottom:169.673115pt;}
.y90_c00089{bottom:170.241272pt;}
.y8f_c00089{bottom:173.681504pt;}
.y8e_c00089{bottom:175.199941pt;}
.y8d_c00089{bottom:176.421437pt;}
.y8c_c00089{bottom:179.729533pt;}
.y8b_c00089{bottom:183.098317pt;}
.y8a_c00089{bottom:183.833675pt;}
.y89_c00089{bottom:184.813744pt;}
.y88_c00089{bottom:186.261960pt;}
.y87_c00089{bottom:187.759197pt;}
.y86_c00089{bottom:188.218947pt;}
.y85_c00089{bottom:188.783357pt;}
.y84_c00089{bottom:192.571392pt;}
.y83_c00089{bottom:194.004467pt;}
.y80_c00089{bottom:195.689971pt;}
.y82_c00089{bottom:196.197131pt;}
.y81_c00089{bottom:199.688709pt;}
.y7f_c00089{bottom:201.187733pt;}
.y7e_c00089{bottom:202.931816pt;}
.y7d_c00089{bottom:206.554688pt;}
.y7c_c00089{bottom:208.983275pt;}
.y79_c00089{bottom:210.358907pt;}
.y7b_c00089{bottom:210.680451pt;}
.y78_c00089{bottom:213.244328pt;}
.y7a_c00089{bottom:213.638555pt;}
.y77_c00089{bottom:214.416795pt;}
.y76_c00089{bottom:218.565480pt;}
.y75_c00089{bottom:220.913648pt;}
.y74_c00089{bottom:222.344661pt;}
.y73_c00089{bottom:226.003093pt;}
.y72_c00089{bottom:227.155944pt;}
.y71_c00089{bottom:229.233899pt;}
.y70_c00089{bottom:234.519749pt;}
.y6f_c00089{bottom:235.155939pt;}
.y6e_c00089{bottom:238.244093pt;}
.y6d_c00089{bottom:243.641245pt;}
.y6c_c00089{bottom:249.774904pt;}
.y6b_c00089{bottom:251.436499pt;}
.y6a_c00089{bottom:254.665293pt;}
.y69_c00089{bottom:258.538317pt;}
.y68_c00089{bottom:266.953909pt;}
.y67_c00089{bottom:269.122557pt;}
.y66_c00089{bottom:270.991552pt;}
.y65_c00089{bottom:277.715579pt;}
.y64_c00089{bottom:280.428061pt;}
.y63_c00089{bottom:281.596512pt;}
.y62_c00089{bottom:282.670885pt;}
.y61_c00089{bottom:285.575360pt;}
.y60_c00089{bottom:286.600867pt;}
.y5f_c00089{bottom:291.152072pt;}
.y5e_c00089{bottom:292.604643pt;}
.y5d_c00089{bottom:295.187477pt;}
.y5c_c00089{bottom:298.699275pt;}
.y5b_c00089{bottom:300.274845pt;}
.y5a_c00089{bottom:302.115632pt;}
.y59_c00089{bottom:303.061104pt;}
.y58_c00089{bottom:303.804571pt;}
.y57_c00089{bottom:305.574293pt;}
.y56_c00089{bottom:308.632389pt;}
.y53_c00089{bottom:315.659585pt;}
.y55_c00089{bottom:315.903675pt;}
.y54_c00089{bottom:316.609333pt;}
.y52_c00089{bottom:319.375849pt;}
.y51_c00089{bottom:322.899380pt;}
.y50_c00089{bottom:324.007689pt;}
.y4f_c00089{bottom:328.001788pt;}
.y4e_c00089{bottom:331.028437pt;}
.y4d_c00089{bottom:332.698096pt;}
.y4c_c00089{bottom:335.822096pt;}
.y4b_c00089{bottom:336.898929pt;}
.y4a_c00089{bottom:338.811196pt;}
.y49_c00089{bottom:341.156563pt;}
.y48_c00089{bottom:343.290823pt;}
.y45_c00089{bottom:346.287339pt;}
.y47_c00089{bottom:346.499549pt;}
.y44_c00089{bottom:347.588331pt;}
.y46_c00089{bottom:348.286667pt;}
.y43_c00089{bottom:350.430955pt;}
.y42_c00089{bottom:351.624000pt;}
.y41_c00089{bottom:363.372428pt;}
.y40_c00089{bottom:365.901707pt;}
.y3f_c00089{bottom:367.225905pt;}
.y3e_c00089{bottom:370.017743pt;}
.y3d_c00089{bottom:374.201516pt;}
.y3c_c00089{bottom:376.551432pt;}
.y3a_c00089{bottom:377.574467pt;}
.y3b_c00089{bottom:378.033767pt;}
.y39_c00089{bottom:379.931847pt;}
.y38_c00089{bottom:381.749173pt;}
.y37_c00089{bottom:383.478753pt;}
.y36_c00089{bottom:386.164800pt;}
.y35_c00089{bottom:389.321917pt;}
.y34_c00089{bottom:390.727887pt;}
.y33_c00089{bottom:392.682060pt;}
.y32_c00089{bottom:394.070032pt;}
.y31_c00089{bottom:395.518929pt;}
.y30_c00089{bottom:397.013324pt;}
.y2f_c00089{bottom:397.884003pt;}
.y2e_c00089{bottom:400.030623pt;}
.y2d_c00089{bottom:402.273057pt;}
.y2c_c00089{bottom:405.360044pt;}
.y2a_c00089{bottom:406.198841pt;}
.y2b_c00089{bottom:407.308359pt;}
.y29_c00089{bottom:410.235484pt;}
.y28_c00089{bottom:411.260557pt;}
.y27_c00089{bottom:413.402824pt;}
.y26_c00089{bottom:415.984449pt;}
.y25_c00089{bottom:417.992303pt;}
.y24_c00089{bottom:422.684013pt;}
.y23_c00089{bottom:423.623457pt;}
.y22_c00089{bottom:424.917037pt;}
.y21_c00089{bottom:426.057331pt;}
.y20_c00089{bottom:430.011231pt;}
.y1f_c00089{bottom:433.222597pt;}
.y1e_c00089{bottom:434.300620pt;}
.y1c_c00089{bottom:435.742387pt;}
.y1d_c00089{bottom:437.557535pt;}
.y1b_c00089{bottom:440.152088pt;}
.y1a_c00089{bottom:441.618029pt;}
.y19_c00089{bottom:447.117917pt;}
.y18_c00089{bottom:448.567176pt;}
.y17_c00089{bottom:452.438901pt;}
.y16_c00089{bottom:452.571417pt;}
.y15_c00089{bottom:453.626131pt;}
.y14_c00089{bottom:455.567756pt;}
.y13_c00089{bottom:460.548700pt;}
.y12_c00089{bottom:462.750461pt;}
.y11_c00089{bottom:463.978177pt;}
.yf_c00089{bottom:466.029708pt;}
.y10_c00089{bottom:466.602780pt;}
.ye_c00089{bottom:469.679511pt;}
.yd_c00089{bottom:471.610124pt;}
.yc_c00089{bottom:472.333767pt;}
.yb_c00089{bottom:474.796140pt;}
.ya_c00089{bottom:475.692375pt;}
.y9_c00089{bottom:477.912959pt;}
.y8_c00089{bottom:480.208573pt;}
.y7_c00089{bottom:481.731837pt;}
.ye1_c00089{bottom:483.409348pt;}
.ye0_c00089{bottom:485.983240pt;}
.ydf_c00089{bottom:486.639097pt;}
.yde_c00089{bottom:487.940000pt;}
.y6_c00089{bottom:491.127292pt;}
.y5_c00089{bottom:492.369184pt;}
.y4_c00089{bottom:494.154931pt;}
.y3_c00089{bottom:498.546939pt;}
.y2_c00089{bottom:501.308991pt;}
.y1_c00089{bottom:506.405333pt;}
.hc_c00089{height:49.443164pt;}
.h13_c00089{height:51.349449pt;}
.hb_c00089{height:52.241834pt;}
.h7_c00089{height:52.273200pt;}
.h15_c00089{height:52.283076pt;}
.h6_c00089{height:53.206650pt;}
.h10_c00089{height:53.216702pt;}
.h9_c00089{height:54.140100pt;}
.he_c00089{height:54.150329pt;}
.h17_c00089{height:54.155253pt;}
.ha_c00089{height:55.069420pt;}
.h8_c00089{height:55.073550pt;}
.h14_c00089{height:55.083955pt;}
.h5_c00089{height:56.007000pt;}
.h16_c00089{height:56.017581pt;}
.h12_c00089{height:57.884834pt;}
.hd_c00089{height:58.818460pt;}
.h3_c00089{height:59.740800pt;}
.h11_c00089{height:59.752087pt;}
.h4_c00089{height:60.674250pt;}
.hf_c00089{height:61.619339pt;}
.h2_c00089{height:67.208399pt;}
.h1_c00089{height:544.000000pt;}
.h0_c00089{height:544.266667pt;}
.w0_c00089{width:321.333333pt;}
.x0_c00089{left:0.000000pt;}
.x70_c00089{left:37.319120pt;}
.x6d_c00089{left:38.595976pt;}
.x67_c00089{left:39.491947pt;}
.x5f_c00089{left:40.732317pt;}
.x43_c00089{left:41.958173pt;}
.x3_c00089{left:42.936837pt;}
.xe_c00089{left:44.038793pt;}
.x47_c00089{left:48.457141pt;}
.x37_c00089{left:50.598728pt;}
.x4b_c00089{left:52.025192pt;}
.x5b_c00089{left:53.968928pt;}
.x3c_c00089{left:56.629333pt;}
.x44_c00089{left:58.205821pt;}
.x58_c00089{left:60.264496pt;}
.x60_c00089{left:64.048872pt;}
.x7_c00089{left:67.315680pt;}
.x34_c00089{left:68.593821pt;}
.x2a_c00089{left:71.645207pt;}
.x38_c00089{left:74.382205pt;}
.x24_c00089{left:78.103175pt;}
.x3f_c00089{left:79.971256pt;}
.x4e_c00089{left:82.532005pt;}
.x65_c00089{left:85.115008pt;}
.xf_c00089{left:86.902775pt;}
.x68_c00089{left:88.146637pt;}
.x48_c00089{left:89.218707pt;}
.x2b_c00089{left:91.380955pt;}
.x19_c00089{left:94.547673pt;}
.x1_c00089{left:96.644000pt;}
.x4_c00089{left:99.800048pt;}
.x66_c00089{left:102.072088pt;}
.x8_c00089{left:103.613644pt;}
.x40_c00089{left:104.527344pt;}
.x52_c00089{left:105.670821pt;}
.x10_c00089{left:106.954963pt;}
.x1a_c00089{left:111.326381pt;}
.x1e_c00089{left:112.484585pt;}
.x35_c00089{left:113.651575pt;}
.x6e_c00089{left:115.203731pt;}
.x39_c00089{left:117.483551pt;}
.x15_c00089{left:119.672288pt;}
.x45_c00089{left:121.231624pt;}
.x5_c00089{left:122.927488pt;}
.x6b_c00089{left:126.737632pt;}
.x49_c00089{left:128.522512pt;}
.x25_c00089{left:132.035935pt;}
.x2c_c00089{left:135.698267pt;}
.x6_c00089{left:139.005644pt;}
.x1f_c00089{left:141.909612pt;}
.x11_c00089{left:142.912567pt;}
.x4f_c00089{left:146.043611pt;}
.x4a_c00089{left:148.749384pt;}
.x6c_c00089{left:150.430328pt;}
.x5c_c00089{left:151.779464pt;}
.x9_c00089{left:152.908980pt;}
.x59_c00089{left:154.137296pt;}
.x4c_c00089{left:155.330536pt;}
.x41_c00089{left:159.285840pt;}
.x2_c00089{left:160.961135pt;}
.x4d_c00089{left:163.078317pt;}
.x69_c00089{left:164.268443pt;}
.x26_c00089{left:171.224825pt;}
.x2d_c00089{left:173.395273pt;}
.x2e_c00089{left:174.896999pt;}
.x36_c00089{left:176.555628pt;}
.x6a_c00089{left:178.310579pt;}
.x20_c00089{left:179.740635pt;}
.x46_c00089{left:182.702664pt;}
.x61_c00089{left:186.544888pt;}
.x53_c00089{left:188.422248pt;}
.x3a_c00089{left:190.164740pt;}
.xa_c00089{left:191.851700pt;}
.x64_c00089{left:196.763469pt;}
.x16_c00089{left:197.979005pt;}
.x42_c00089{left:199.566776pt;}
.x71_c00089{left:200.478056pt;}
.x32_c00089{left:201.854667pt;}
.xb_c00089{left:203.297068pt;}
.x62_c00089{left:204.387411pt;}
.x56_c00089{left:205.642293pt;}
.x6f_c00089{left:207.369893pt;}
.x27_c00089{left:208.731819pt;}
.x21_c00089{left:211.132101pt;}
.x54_c00089{left:212.273032pt;}
.x73_c00089{left:213.512788pt;}
.x17_c00089{left:218.843016pt;}
.x2f_c00089{left:220.479271pt;}
.x1b_c00089{left:222.856181pt;}
.x12_c00089{left:224.242092pt;}
.x22_c00089{left:226.145255pt;}
.x50_c00089{left:227.111013pt;}
.x72_c00089{left:230.810069pt;}
.xc_c00089{left:233.823775pt;}
.x1c_c00089{left:240.606461pt;}
.x30_c00089{left:242.103613pt;}
.x3d_c00089{left:244.558056pt;}
.x28_c00089{left:250.059305pt;}
.x5d_c00089{left:252.441467pt;}
.x57_c00089{left:254.186379pt;}
.x13_c00089{left:255.954448pt;}
.x5a_c00089{left:259.423437pt;}
.x1d_c00089{left:260.747068pt;}
.x33_c00089{left:264.785885pt;}
.x3e_c00089{left:269.345715pt;}
.x14_c00089{left:273.181788pt;}
.x74_c00089{left:274.390516pt;}
.x29_c00089{left:275.384491pt;}
.x51_c00089{left:277.758936pt;}
.x5e_c00089{left:279.976219pt;}
.x18_c00089{left:281.618707pt;}
.x31_c00089{left:283.410063pt;}
.x23_c00089{left:285.293289pt;}
.x55_c00089{left:287.447520pt;}
.x63_c00089{left:288.610173pt;}
.xd_c00089{left:291.533689pt;}
.x3b_c00089{left:293.291169pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00090 {
    display:none;
  }
  .loading-indicator_c00090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00090 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00090 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00090" -> "#page-container .classname_c00090")
 */
.pf_c00090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00090 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00090 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00090 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00090 {overflow:visible;}
  }
}
.c_c00090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00090 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00090:after { /* webkit #35443 */
  content: '';
}
.t_c00090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00090 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00090 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00090 { /* info for Javascript */
  display:none;
}
.l_c00090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00090:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00090 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00090.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00090{transform:matrix(0.036581,-0.000805,0.005499,0.249940,0,0);-ms-transform:matrix(0.036581,-0.000805,0.005499,0.249940,0,0);-webkit-transform:matrix(0.036581,-0.000805,0.005499,0.249940,0,0);}
.m1_c00090{transform:matrix(0.116915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116915,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.129719,-0.002854,0.005499,0.249940,0,0);-ms-transform:matrix(0.129719,-0.002854,0.005499,0.249940,0,0);-webkit-transform:matrix(0.129719,-0.002854,0.005499,0.249940,0,0);}
.m3_c00090{transform:matrix(0.135590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135590,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);}
.m7e_c00090{transform:matrix(0.148779,-0.002529,0.004249,0.249964,0,0);-ms-transform:matrix(0.148779,-0.002529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148779,-0.002529,0.004249,0.249964,0,0);}
.m94_c00090{transform:matrix(0.149168,-0.002536,0.004249,0.249964,0,0);-ms-transform:matrix(0.149168,-0.002536,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149168,-0.002536,0.004249,0.249964,0,0);}
.m74_c00090{transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);-ms-transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);}
.m34_c00090{transform:matrix(0.155162,-0.003414,0.005499,0.249940,0,0);-ms-transform:matrix(0.155162,-0.003414,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155162,-0.003414,0.005499,0.249940,0,0);}
.mc4_c00090{transform:matrix(0.155438,-0.002642,0.004249,0.249964,0,0);-ms-transform:matrix(0.155438,-0.002642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155438,-0.002642,0.004249,0.249964,0,0);}
.ma1_c00090{transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156002,-0.002652,0.004249,0.249964,0,0);}
.m47_c00090{transform:matrix(0.156427,-0.003441,0.005499,0.249940,0,0);-ms-transform:matrix(0.156427,-0.003441,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156427,-0.003441,0.005499,0.249940,0,0);}
.me0_c00090{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{transform:matrix(0.157985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157985,0.000000,0.000000,0.250000,0,0);}
.m26_c00090{transform:matrix(0.159020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159020,0.000000,0.000000,0.250000,0,0);}
.m36_c00090{transform:matrix(0.159361,-0.003506,0.005499,0.249940,0,0);-ms-transform:matrix(0.159361,-0.003506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159361,-0.003506,0.005499,0.249940,0,0);}
.mef_c00090{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00090{transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m88_c00090{transform:matrix(0.160622,-0.002731,0.004249,0.249964,0,0);-ms-transform:matrix(0.160622,-0.002731,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160622,-0.002731,0.004249,0.249964,0,0);}
.m58_c00090{transform:matrix(0.160757,-0.002733,0.004249,0.249964,0,0);-ms-transform:matrix(0.160757,-0.002733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160757,-0.002733,0.004249,0.249964,0,0);}
.m4_c00090{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.maf_c00090{transform:matrix(0.162222,-0.002758,0.004249,0.249964,0,0);-ms-transform:matrix(0.162222,-0.002758,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162222,-0.002758,0.004249,0.249964,0,0);}
.m10_c00090{transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.165475,-0.003640,0.005499,0.249940,0,0);-ms-transform:matrix(0.165475,-0.003640,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165475,-0.003640,0.005499,0.249940,0,0);}
.m95_c00090{transform:matrix(0.165496,-0.002813,0.004249,0.249964,0,0);-ms-transform:matrix(0.165496,-0.002813,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165496,-0.002813,0.004249,0.249964,0,0);}
.m67_c00090{transform:matrix(0.165651,-0.002816,0.004249,0.249964,0,0);-ms-transform:matrix(0.165651,-0.002816,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165651,-0.002816,0.004249,0.249964,0,0);}
.m5_c00090{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);}
.m73_c00090{transform:matrix(0.166696,-0.002834,0.004249,0.249964,0,0);-ms-transform:matrix(0.166696,-0.002834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166696,-0.002834,0.004249,0.249964,0,0);}
.m20_c00090{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m35_c00090{transform:matrix(0.167065,-0.003675,0.005499,0.249940,0,0);-ms-transform:matrix(0.167065,-0.003675,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167065,-0.003675,0.005499,0.249940,0,0);}
.m39_c00090{transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);-ms-transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);}
.m41_c00090{transform:matrix(0.167454,-0.003684,0.005499,0.249940,0,0);-ms-transform:matrix(0.167454,-0.003684,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167454,-0.003684,0.005499,0.249940,0,0);}
.m42_c00090{transform:matrix(0.168164,-0.003700,0.005499,0.249940,0,0);-ms-transform:matrix(0.168164,-0.003700,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168164,-0.003700,0.005499,0.249940,0,0);}
.m86_c00090{transform:matrix(0.168591,-0.002866,0.004249,0.249964,0,0);-ms-transform:matrix(0.168591,-0.002866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168591,-0.002866,0.004249,0.249964,0,0);}
.mb1_c00090{transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);-ms-transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);}
.m5e_c00090{transform:matrix(0.172140,-0.002926,0.004249,0.249964,0,0);-ms-transform:matrix(0.172140,-0.002926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172140,-0.002926,0.004249,0.249964,0,0);}
.m21_c00090{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.mcb_c00090{transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);}
.m93_c00090{transform:matrix(0.174015,-0.002958,0.004249,0.249964,0,0);-ms-transform:matrix(0.174015,-0.002958,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174015,-0.002958,0.004249,0.249964,0,0);}
.m72_c00090{transform:matrix(0.174375,-0.002964,0.004249,0.249964,0,0);-ms-transform:matrix(0.174375,-0.002964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174375,-0.002964,0.004249,0.249964,0,0);}
.m33_c00090{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00090{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.m96_c00090{transform:matrix(0.176584,-0.003002,0.004249,0.249964,0,0);-ms-transform:matrix(0.176584,-0.003002,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176584,-0.003002,0.004249,0.249964,0,0);}
.mf5_c00090{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mda_c00090{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.ma4_c00090{transform:matrix(0.176804,-0.003006,0.004249,0.249964,0,0);-ms-transform:matrix(0.176804,-0.003006,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176804,-0.003006,0.004249,0.249964,0,0);}
.m12_c00090{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.177677,-0.003909,0.005499,0.249940,0,0);-ms-transform:matrix(0.177677,-0.003909,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177677,-0.003909,0.005499,0.249940,0,0);}
.mb_c00090{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{transform:matrix(0.178669,-0.003037,0.004249,0.249964,0,0);-ms-transform:matrix(0.178669,-0.003037,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178669,-0.003037,0.004249,0.249964,0,0);}
.m48_c00090{transform:matrix(0.178782,-0.003933,0.005499,0.249940,0,0);-ms-transform:matrix(0.178782,-0.003933,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178782,-0.003933,0.005499,0.249940,0,0);}
.m37_c00090{transform:matrix(0.179002,-0.003938,0.005499,0.249940,0,0);-ms-transform:matrix(0.179002,-0.003938,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179002,-0.003938,0.005499,0.249940,0,0);}
.mc6_c00090{transform:matrix(0.179279,-0.003048,0.004249,0.249964,0,0);-ms-transform:matrix(0.179279,-0.003048,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179279,-0.003048,0.004249,0.249964,0,0);}
.m6d_c00090{transform:matrix(0.179844,-0.003057,0.004249,0.249964,0,0);-ms-transform:matrix(0.179844,-0.003057,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179844,-0.003057,0.004249,0.249964,0,0);}
.mcd_c00090{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m3a_c00090{transform:matrix(0.180121,-0.003963,0.005499,0.249940,0,0);-ms-transform:matrix(0.180121,-0.003963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180121,-0.003963,0.005499,0.249940,0,0);}
.m22_c00090{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m78_c00090{transform:matrix(0.180464,-0.003068,0.004249,0.249964,0,0);-ms-transform:matrix(0.180464,-0.003068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180464,-0.003068,0.004249,0.249964,0,0);}
.m38_c00090{transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-ms-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);}
.m44_c00090{transform:matrix(0.180731,-0.003976,0.005499,0.249940,0,0);-ms-transform:matrix(0.180731,-0.003976,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180731,-0.003976,0.005499,0.249940,0,0);}
.m2e_c00090{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);}
.mbb_c00090{transform:matrix(0.181909,-0.003092,0.004249,0.249964,0,0);-ms-transform:matrix(0.181909,-0.003092,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181909,-0.003092,0.004249,0.249964,0,0);}
.me8_c00090{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m29_c00090{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m46_c00090{transform:matrix(0.182881,-0.004023,0.005499,0.249940,0,0);-ms-transform:matrix(0.182881,-0.004023,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182881,-0.004023,0.005499,0.249940,0,0);}
.m17_c00090{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.maa_c00090{transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);-ms-transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);}
.m87_c00090{transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);-ms-transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);}
.m3b_c00090{transform:matrix(0.185040,-0.004071,0.005499,0.249940,0,0);-ms-transform:matrix(0.185040,-0.004071,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185040,-0.004071,0.005499,0.249940,0,0);}
.m89_c00090{transform:matrix(0.185128,-0.003147,0.004249,0.249964,0,0);-ms-transform:matrix(0.185128,-0.003147,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185128,-0.003147,0.004249,0.249964,0,0);}
.m9d_c00090{transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);-ms-transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);}
.m3f_c00090{transform:matrix(0.186785,-0.004109,0.005499,0.249940,0,0);-ms-transform:matrix(0.186785,-0.004109,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186785,-0.004109,0.005499,0.249940,0,0);}
.mc2_c00090{transform:matrix(0.186928,-0.003178,0.004249,0.249964,0,0);-ms-transform:matrix(0.186928,-0.003178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186928,-0.003178,0.004249,0.249964,0,0);}
.md8_c00090{transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);}
.mf4_c00090{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00090{transform:matrix(0.187513,-0.003188,0.004249,0.249964,0,0);-ms-transform:matrix(0.187513,-0.003188,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187513,-0.003188,0.004249,0.249964,0,0);}
.m1c_c00090{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.m64_c00090{transform:matrix(0.188003,-0.003196,0.004249,0.249964,0,0);-ms-transform:matrix(0.188003,-0.003196,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188003,-0.003196,0.004249,0.249964,0,0);}
.md4_c00090{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mae_c00090{transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);}
.m76_c00090{transform:matrix(0.188618,-0.003207,0.004249,0.249964,0,0);-ms-transform:matrix(0.188618,-0.003207,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188618,-0.003207,0.004249,0.249964,0,0);}
.mc8_c00090{transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);-ms-transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);}
.m70_c00090{transform:matrix(0.189848,-0.003227,0.004249,0.249964,0,0);-ms-transform:matrix(0.189848,-0.003227,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189848,-0.003227,0.004249,0.249964,0,0);}
.m65_c00090{transform:matrix(0.189908,-0.003228,0.004249,0.249964,0,0);-ms-transform:matrix(0.189908,-0.003228,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189908,-0.003228,0.004249,0.249964,0,0);}
.m2d_c00090{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me1_c00090{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.191535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191535,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);}
.md5_c00090{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m7a_c00090{transform:matrix(0.192392,-0.003271,0.004249,0.249964,0,0);-ms-transform:matrix(0.192392,-0.003271,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192392,-0.003271,0.004249,0.249964,0,0);}
.m9e_c00090{transform:matrix(0.193182,-0.003284,0.004249,0.249964,0,0);-ms-transform:matrix(0.193182,-0.003284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193182,-0.003284,0.004249,0.249964,0,0);}
.m4a_c00090{transform:matrix(0.193218,-0.004251,0.005499,0.249940,0,0);-ms-transform:matrix(0.193218,-0.004251,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193218,-0.004251,0.005499,0.249940,0,0);}
.m4b_c00090{transform:matrix(0.193608,-0.004259,0.005499,0.249940,0,0);-ms-transform:matrix(0.193608,-0.004259,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193608,-0.004259,0.005499,0.249940,0,0);}
.m55_c00090{transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);-ms-transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);}
.m0_c00090{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.194777,-0.003311,0.004249,0.249964,0,0);-ms-transform:matrix(0.194777,-0.003311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194777,-0.003311,0.004249,0.249964,0,0);}
.m3d_c00090{transform:matrix(0.194938,-0.004289,0.005499,0.249940,0,0);-ms-transform:matrix(0.194938,-0.004289,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194938,-0.004289,0.005499,0.249940,0,0);}
.m6a_c00090{transform:matrix(0.195192,-0.003318,0.004249,0.249964,0,0);-ms-transform:matrix(0.195192,-0.003318,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195192,-0.003318,0.004249,0.249964,0,0);}
.m8a_c00090{transform:matrix(0.195642,-0.003326,0.004249,0.249964,0,0);-ms-transform:matrix(0.195642,-0.003326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195642,-0.003326,0.004249,0.249964,0,0);}
.m6e_c00090{transform:matrix(0.195952,-0.003331,0.004249,0.249964,0,0);-ms-transform:matrix(0.195952,-0.003331,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195952,-0.003331,0.004249,0.249964,0,0);}
.m32_c00090{transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);}
.m91_c00090{transform:matrix(0.196017,-0.003332,0.004249,0.249964,0,0);-ms-transform:matrix(0.196017,-0.003332,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196017,-0.003332,0.004249,0.249964,0,0);}
.m6b_c00090{transform:matrix(0.196222,-0.003336,0.004249,0.249964,0,0);-ms-transform:matrix(0.196222,-0.003336,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196222,-0.003336,0.004249,0.249964,0,0);}
.ma6_c00090{transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);}
.m18_c00090{transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);}
.ma7_c00090{transform:matrix(0.196707,-0.003344,0.004249,0.249964,0,0);-ms-transform:matrix(0.196707,-0.003344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196707,-0.003344,0.004249,0.249964,0,0);}
.m5c_c00090{transform:matrix(0.197057,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197057,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197057,-0.003350,0.004249,0.249964,0,0);}
.m71_c00090{transform:matrix(0.197117,-0.003351,0.004249,0.249964,0,0);-ms-transform:matrix(0.197117,-0.003351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197117,-0.003351,0.004249,0.249964,0,0);}
.m3e_c00090{transform:matrix(0.197197,-0.004338,0.005499,0.249940,0,0);-ms-transform:matrix(0.197197,-0.004338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197197,-0.004338,0.005499,0.249940,0,0);}
.m7b_c00090{transform:matrix(0.197266,-0.003354,0.004249,0.249964,0,0);-ms-transform:matrix(0.197266,-0.003354,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197266,-0.003354,0.004249,0.249964,0,0);}
.m11_c00090{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00090{transform:matrix(0.197881,-0.003364,0.004249,0.249964,0,0);-ms-transform:matrix(0.197881,-0.003364,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197881,-0.003364,0.004249,0.249964,0,0);}
.m53_c00090{transform:matrix(0.197971,-0.003366,0.004249,0.249964,0,0);-ms-transform:matrix(0.197971,-0.003366,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197971,-0.003366,0.004249,0.249964,0,0);}
.m50_c00090{transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);-ms-transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);}
.m80_c00090{transform:matrix(0.198791,-0.003379,0.004249,0.249964,0,0);-ms-transform:matrix(0.198791,-0.003379,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198791,-0.003379,0.004249,0.249964,0,0);}
.m1b_c00090{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.me3_c00090{transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);}
.m8b_c00090{transform:matrix(0.200031,-0.003401,0.004249,0.249964,0,0);-ms-transform:matrix(0.200031,-0.003401,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200031,-0.003401,0.004249,0.249964,0,0);}
.m8d_c00090{transform:matrix(0.200661,-0.003411,0.004249,0.249964,0,0);-ms-transform:matrix(0.200661,-0.003411,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200661,-0.003411,0.004249,0.249964,0,0);}
.mcc_c00090{transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);}
.m85_c00090{transform:matrix(0.200766,-0.003413,0.004249,0.249964,0,0);-ms-transform:matrix(0.200766,-0.003413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200766,-0.003413,0.004249,0.249964,0,0);}
.m16_c00090{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.mb2_c00090{transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);-ms-transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);}
.md3_c00090{transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);}
.mf7_c00090{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m5a_c00090{transform:matrix(0.202366,-0.003440,0.004249,0.249964,0,0);-ms-transform:matrix(0.202366,-0.003440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202366,-0.003440,0.004249,0.249964,0,0);}
.mf2_c00090{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00090{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.mbe_c00090{transform:matrix(0.204225,-0.003472,0.004249,0.249964,0,0);-ms-transform:matrix(0.204225,-0.003472,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204225,-0.003472,0.004249,0.249964,0,0);}
.md_c00090{transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);}
.m5b_c00090{transform:matrix(0.204540,-0.003477,0.004249,0.249964,0,0);-ms-transform:matrix(0.204540,-0.003477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204540,-0.003477,0.004249,0.249964,0,0);}
.mf0_c00090{transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);}
.md6_c00090{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.ma9_c00090{transform:matrix(0.205380,-0.003491,0.004249,0.249964,0,0);-ms-transform:matrix(0.205380,-0.003491,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205380,-0.003491,0.004249,0.249964,0,0);}
.mf6_c00090{transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);}
.md7_c00090{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.mc3_c00090{transform:matrix(0.205720,-0.003497,0.004249,0.249964,0,0);-ms-transform:matrix(0.205720,-0.003497,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205720,-0.003497,0.004249,0.249964,0,0);}
.ma3_c00090{transform:matrix(0.206060,-0.003503,0.004249,0.249964,0,0);-ms-transform:matrix(0.206060,-0.003503,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206060,-0.003503,0.004249,0.249964,0,0);}
.m66_c00090{transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);-ms-transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);}
.m43_c00090{transform:matrix(0.206915,-0.004552,0.005499,0.249940,0,0);-ms-transform:matrix(0.206915,-0.004552,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206915,-0.004552,0.005499,0.249940,0,0);}
.m8f_c00090{transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);-ms-transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);}
.m7d_c00090{transform:matrix(0.207085,-0.003520,0.004249,0.249964,0,0);-ms-transform:matrix(0.207085,-0.003520,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207085,-0.003520,0.004249,0.249964,0,0);}
.mca_c00090{transform:matrix(0.207095,-0.003521,0.004249,0.249964,0,0);-ms-transform:matrix(0.207095,-0.003521,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207095,-0.003521,0.004249,0.249964,0,0);}
.mc5_c00090{transform:matrix(0.207120,-0.003521,0.004249,0.249964,0,0);-ms-transform:matrix(0.207120,-0.003521,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207120,-0.003521,0.004249,0.249964,0,0);}
.m1a_c00090{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.m69_c00090{transform:matrix(0.207645,-0.003530,0.004249,0.249964,0,0);-ms-transform:matrix(0.207645,-0.003530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207645,-0.003530,0.004249,0.249964,0,0);}
.m75_c00090{transform:matrix(0.207705,-0.003531,0.004249,0.249964,0,0);-ms-transform:matrix(0.207705,-0.003531,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207705,-0.003531,0.004249,0.249964,0,0);}
.m83_c00090{transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);-ms-transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);}
.m63_c00090{transform:matrix(0.208670,-0.003547,0.004249,0.249964,0,0);-ms-transform:matrix(0.208670,-0.003547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208670,-0.003547,0.004249,0.249964,0,0);}
.mde_c00090{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.mba_c00090{transform:matrix(0.208925,-0.003552,0.004249,0.249964,0,0);-ms-transform:matrix(0.208925,-0.003552,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208925,-0.003552,0.004249,0.249964,0,0);}
.mec_c00090{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.209250,-0.003557,0.004249,0.249964,0,0);-ms-transform:matrix(0.209250,-0.003557,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209250,-0.003557,0.004249,0.249964,0,0);}
.mbd_c00090{transform:matrix(0.209425,-0.003560,0.004249,0.249964,0,0);-ms-transform:matrix(0.209425,-0.003560,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209425,-0.003560,0.004249,0.249964,0,0);}
.m92_c00090{transform:matrix(0.209450,-0.003561,0.004249,0.249964,0,0);-ms-transform:matrix(0.209450,-0.003561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209450,-0.003561,0.004249,0.249964,0,0);}
.m62_c00090{transform:matrix(0.209465,-0.003561,0.004249,0.249964,0,0);-ms-transform:matrix(0.209465,-0.003561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209465,-0.003561,0.004249,0.249964,0,0);}
.mc_c00090{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.me2_c00090{transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);}
.m60_c00090{transform:matrix(0.211679,-0.003599,0.004249,0.249964,0,0);-ms-transform:matrix(0.211679,-0.003599,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211679,-0.003599,0.004249,0.249964,0,0);}
.mc1_c00090{transform:matrix(0.211924,-0.003603,0.004249,0.249964,0,0);-ms-transform:matrix(0.211924,-0.003603,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211924,-0.003603,0.004249,0.249964,0,0);}
.mdb_c00090{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00090{transform:matrix(0.212879,-0.003619,0.004249,0.249964,0,0);-ms-transform:matrix(0.212879,-0.003619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212879,-0.003619,0.004249,0.249964,0,0);}
.ma0_c00090{transform:matrix(0.213234,-0.003625,0.004249,0.249964,0,0);-ms-transform:matrix(0.213234,-0.003625,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213234,-0.003625,0.004249,0.249964,0,0);}
.m5f_c00090{transform:matrix(0.213609,-0.003631,0.004249,0.249964,0,0);-ms-transform:matrix(0.213609,-0.003631,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213609,-0.003631,0.004249,0.249964,0,0);}
.mdf_c00090{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m68_c00090{transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);-ms-transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);}
.ma5_c00090{transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);-ms-transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);}
.m7c_c00090{transform:matrix(0.214509,-0.003647,0.004249,0.249964,0,0);-ms-transform:matrix(0.214509,-0.003647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214509,-0.003647,0.004249,0.249964,0,0);}
.me7_c00090{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m82_c00090{transform:matrix(0.214614,-0.003648,0.004249,0.249964,0,0);-ms-transform:matrix(0.214614,-0.003648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214614,-0.003648,0.004249,0.249964,0,0);}
.m57_c00090{transform:matrix(0.214699,-0.003650,0.004249,0.249964,0,0);-ms-transform:matrix(0.214699,-0.003650,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214699,-0.003650,0.004249,0.249964,0,0);}
.m56_c00090{transform:matrix(0.215064,-0.003656,0.004249,0.249964,0,0);-ms-transform:matrix(0.215064,-0.003656,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215064,-0.003656,0.004249,0.249964,0,0);}
.m77_c00090{transform:matrix(0.215644,-0.003666,0.004249,0.249964,0,0);-ms-transform:matrix(0.215644,-0.003666,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215644,-0.003666,0.004249,0.249964,0,0);}
.m61_c00090{transform:matrix(0.216924,-0.003688,0.004249,0.249964,0,0);-ms-transform:matrix(0.216924,-0.003688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216924,-0.003688,0.004249,0.249964,0,0);}
.mc9_c00090{transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);}
.m9b_c00090{transform:matrix(0.218223,-0.003710,0.004249,0.249964,0,0);-ms-transform:matrix(0.218223,-0.003710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218223,-0.003710,0.004249,0.249964,0,0);}
.mab_c00090{transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);-ms-transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);}
.m8e_c00090{transform:matrix(0.218458,-0.003714,0.004249,0.249964,0,0);-ms-transform:matrix(0.218458,-0.003714,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218458,-0.003714,0.004249,0.249964,0,0);}
.m90_c00090{transform:matrix(0.219563,-0.003733,0.004249,0.249964,0,0);-ms-transform:matrix(0.219563,-0.003733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219563,-0.003733,0.004249,0.249964,0,0);}
.mf8_c00090{transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);}
.mf1_c00090{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m6c_c00090{transform:matrix(0.220468,-0.003748,0.004249,0.249964,0,0);-ms-transform:matrix(0.220468,-0.003748,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220468,-0.003748,0.004249,0.249964,0,0);}
.m5d_c00090{transform:matrix(0.220488,-0.003748,0.004249,0.249964,0,0);-ms-transform:matrix(0.220488,-0.003748,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220488,-0.003748,0.004249,0.249964,0,0);}
.md9_c00090{transform:matrix(0.222095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222095,0.000000,0.000000,0.250000,0,0);}
.mac_c00090{transform:matrix(0.222283,-0.003779,0.004249,0.249964,0,0);-ms-transform:matrix(0.222283,-0.003779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222283,-0.003779,0.004249,0.249964,0,0);}
.m52_c00090{transform:matrix(0.222408,-0.003781,0.004249,0.249964,0,0);-ms-transform:matrix(0.222408,-0.003781,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222408,-0.003781,0.004249,0.249964,0,0);}
.m9c_c00090{transform:matrix(0.224403,-0.003815,0.004249,0.249964,0,0);-ms-transform:matrix(0.224403,-0.003815,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224403,-0.003815,0.004249,0.249964,0,0);}
.m9f_c00090{transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);-ms-transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);}
.mea_c00090{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m97_c00090{transform:matrix(0.225027,-0.003825,0.004249,0.249964,0,0);-ms-transform:matrix(0.225027,-0.003825,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225027,-0.003825,0.004249,0.249964,0,0);}
.m25_c00090{transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.226147,-0.003845,0.004249,0.249964,0,0);-ms-transform:matrix(0.226147,-0.003845,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226147,-0.003845,0.004249,0.249964,0,0);}
.mce_c00090{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.m84_c00090{transform:matrix(0.226552,-0.003851,0.004249,0.249964,0,0);-ms-transform:matrix(0.226552,-0.003851,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226552,-0.003851,0.004249,0.249964,0,0);}
.mad_c00090{transform:matrix(0.228427,-0.003883,0.004249,0.249964,0,0);-ms-transform:matrix(0.228427,-0.003883,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228427,-0.003883,0.004249,0.249964,0,0);}
.mb0_c00090{transform:matrix(0.228707,-0.003888,0.004249,0.249964,0,0);-ms-transform:matrix(0.228707,-0.003888,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228707,-0.003888,0.004249,0.249964,0,0);}
.me9_c00090{transform:matrix(0.228835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228835,0.000000,0.000000,0.250000,0,0);}
.mb3_c00090{transform:matrix(0.230702,-0.003922,0.004249,0.249964,0,0);-ms-transform:matrix(0.230702,-0.003922,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230702,-0.003922,0.004249,0.249964,0,0);}
.mb7_c00090{transform:matrix(0.230912,-0.003925,0.004249,0.249964,0,0);-ms-transform:matrix(0.230912,-0.003925,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230912,-0.003925,0.004249,0.249964,0,0);}
.meb_c00090{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{transform:matrix(0.232669,-0.005119,0.005499,0.249940,0,0);-ms-transform:matrix(0.232669,-0.005119,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232669,-0.005119,0.005499,0.249940,0,0);}
.m31_c00090{transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);}
.mf3_c00090{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.mdd_c00090{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00090{transform:matrix(0.236486,-0.004020,0.004249,0.249964,0,0);-ms-transform:matrix(0.236486,-0.004020,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236486,-0.004020,0.004249,0.249964,0,0);}
.md1_c00090{transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);}
.mbf_c00090{transform:matrix(0.237776,-0.004042,0.004249,0.249964,0,0);-ms-transform:matrix(0.237776,-0.004042,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237776,-0.004042,0.004249,0.249964,0,0);}
.mbc_c00090{transform:matrix(0.238041,-0.004047,0.004249,0.249964,0,0);-ms-transform:matrix(0.238041,-0.004047,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238041,-0.004047,0.004249,0.249964,0,0);}
.mcf_c00090{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{transform:matrix(0.245600,-0.004175,0.004249,0.249964,0,0);-ms-transform:matrix(0.245600,-0.004175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245600,-0.004175,0.004249,0.249964,0,0);}
.md2_c00090{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.247510,-0.005445,0.005499,0.249940,0,0);-ms-transform:matrix(0.247510,-0.005445,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247510,-0.005445,0.005499,0.249940,0,0);}
.m7_c00090{transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);}
.md0_c00090{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);}
.ma8_c00090{transform:matrix(0.255023,-0.004335,0.004249,0.249964,0,0);-ms-transform:matrix(0.255023,-0.004335,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255023,-0.004335,0.004249,0.249964,0,0);}
.m99_c00090{transform:matrix(0.257503,-0.004378,0.004249,0.249964,0,0);-ms-transform:matrix(0.257503,-0.004378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257503,-0.004378,0.004249,0.249964,0,0);}
.mb6_c00090{transform:matrix(0.257918,-0.004385,0.004249,0.249964,0,0);-ms-transform:matrix(0.257918,-0.004385,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257918,-0.004385,0.004249,0.249964,0,0);}
.mb5_c00090{transform:matrix(0.258043,-0.004387,0.004249,0.249964,0,0);-ms-transform:matrix(0.258043,-0.004387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258043,-0.004387,0.004249,0.249964,0,0);}
.me5_c00090{transform:matrix(0.260925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260925,0.000000,0.000000,0.250000,0,0);}
.me4_c00090{transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);}
.med_c00090{transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.270570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00090{transform:matrix(0.271979,-0.005984,0.005499,0.249940,0,0);-ms-transform:matrix(0.271979,-0.005984,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271979,-0.005984,0.005499,0.249940,0,0);}
.m98_c00090{transform:matrix(0.273031,-0.004642,0.004249,0.249964,0,0);-ms-transform:matrix(0.273031,-0.004642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273031,-0.004642,0.004249,0.249964,0,0);}
.mc7_c00090{transform:matrix(0.273780,-0.004654,0.004249,0.249964,0,0);-ms-transform:matrix(0.273780,-0.004654,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273780,-0.004654,0.004249,0.249964,0,0);}
.m30_c00090{transform:matrix(0.276485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276485,0.000000,0.000000,0.250000,0,0);}
.me6_c00090{transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);}
.mb8_c00090{transform:matrix(0.308520,-0.005245,0.004249,0.249964,0,0);-ms-transform:matrix(0.308520,-0.005245,0.004249,0.249964,0,0);-webkit-transform:matrix(0.308520,-0.005245,0.004249,0.249964,0,0);}
.mb4_c00090{transform:matrix(0.310350,-0.005276,0.004249,0.249964,0,0);-ms-transform:matrix(0.310350,-0.005276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.310350,-0.005276,0.004249,0.249964,0,0);}
.mc0_c00090{transform:matrix(0.340246,-0.005784,0.004249,0.249964,0,0);-ms-transform:matrix(0.340246,-0.005784,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340246,-0.005784,0.004249,0.249964,0,0);}
.mee_c00090{transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.398920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398920,0.000000,0.000000,0.250000,0,0);}
.m81_c00090{transform:matrix(0.639898,-0.010878,0.004249,0.249964,0,0);-ms-transform:matrix(0.639898,-0.010878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.639898,-0.010878,0.004249,0.249964,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:0.000000px;}
.fc0_c00090{color:transparent;}
.fs9_c00090{font-size:24.150000px;}
.fs8_c00090{font-size:47.261433px;}
.fs14_c00090{font-size:57.750000px;}
.fs13_c00090{font-size:57.758344px;}
.fs16_c00090{font-size:58.800000px;}
.fs12_c00090{font-size:58.808496px;}
.fs17_c00090{font-size:59.850000px;}
.fs11_c00090{font-size:59.858648px;}
.fs2_c00090{font-size:60.900000px;}
.fsb_c00090{font-size:60.908799px;}
.fs15_c00090{font-size:61.950000px;}
.fsc_c00090{font-size:61.958951px;}
.fs18_c00090{font-size:63.000000px;}
.fs10_c00090{font-size:63.009103px;}
.fsf_c00090{font-size:64.059255px;}
.fsa_c00090{font-size:65.109406px;}
.fs6_c00090{font-size:66.166006px;}
.fsd_c00090{font-size:67.209710px;}
.fs4_c00090{font-size:68.250000px;}
.fse_c00090{font-size:68.259861px;}
.fs5_c00090{font-size:68.266515px;}
.fs1_c00090{font-size:69.300000px;}
.fs0_c00090{font-size:70.350000px;}
.fs7_c00090{font-size:71.417277px;}
.fs3_c00090{font-size:73.500000px;}
.y0_c00090{bottom:0.000000px;}
.yd0_c00090{bottom:21.871500px;}
.yd1_c00090{bottom:22.059000px;}
.yd2_c00090{bottom:22.753500px;}
.yd3_c00090{bottom:23.386500px;}
.yd4_c00090{bottom:23.790000px;}
.yd5_c00090{bottom:23.968500px;}
.yd6_c00090{bottom:24.438000px;}
.yd7_c00090{bottom:24.649500px;}
.ycf_c00090{bottom:42.418500px;}
.yce_c00090{bottom:58.822500px;}
.ycd_c00090{bottom:75.991500px;}
.ycc_c00090{bottom:93.630000px;}
.ycb_c00090{bottom:109.620000px;}
.yc6_c00090{bottom:127.196367px;}
.yc7_c00090{bottom:127.196420px;}
.yc8_c00090{bottom:127.196532px;}
.yc9_c00090{bottom:127.196534px;}
.yc5_c00090{bottom:127.196572px;}
.yc4_c00090{bottom:127.196799px;}
.yca_c00090{bottom:127.196951px;}
.ybc_c00090{bottom:143.454081px;}
.ybe_c00090{bottom:143.454198px;}
.ybd_c00090{bottom:143.454625px;}
.ybf_c00090{bottom:143.454657px;}
.yc3_c00090{bottom:143.455338px;}
.yc0_c00090{bottom:143.455386px;}
.yc1_c00090{bottom:143.455838px;}
.yc2_c00090{bottom:143.455902px;}
.ybb_c00090{bottom:157.239792px;}
.yba_c00090{bottom:157.799166px;}
.yb9_c00090{bottom:158.150796px;}
.yb8_c00090{bottom:159.227548px;}
.yb7_c00090{bottom:159.412393px;}
.yb6_c00090{bottom:160.092601px;}
.yb5_c00090{bottom:160.327909px;}
.yb4_c00090{bottom:161.162361px;}
.yaf_c00090{bottom:177.392016px;}
.yad_c00090{bottom:177.392040px;}
.yb1_c00090{bottom:177.392627px;}
.yac_c00090{bottom:177.392661px;}
.yae_c00090{bottom:177.392667px;}
.yb0_c00090{bottom:177.392685px;}
.yb3_c00090{bottom:177.392704px;}
.yb2_c00090{bottom:177.392786px;}
.yab_c00090{bottom:177.393204px;}
.ya8_c00090{bottom:194.014573px;}
.yaa_c00090{bottom:194.014674px;}
.ya9_c00090{bottom:194.014750px;}
.ya4_c00090{bottom:194.014965px;}
.ya3_c00090{bottom:194.015088px;}
.ya7_c00090{bottom:194.015296px;}
.ya5_c00090{bottom:194.015569px;}
.ya6_c00090{bottom:194.015647px;}
.ya2_c00090{bottom:210.276034px;}
.ya1_c00090{bottom:210.276072px;}
.y9d_c00090{bottom:210.276625px;}
.ya0_c00090{bottom:210.276717px;}
.y9e_c00090{bottom:210.276819px;}
.y9f_c00090{bottom:210.276952px;}
.y97_c00090{bottom:226.961239px;}
.y98_c00090{bottom:226.961527px;}
.y99_c00090{bottom:226.962150px;}
.y9c_c00090{bottom:226.962522px;}
.y9a_c00090{bottom:226.962574px;}
.y9b_c00090{bottom:226.963056px;}
.y90_c00090{bottom:244.392667px;}
.y92_c00090{bottom:244.392712px;}
.y94_c00090{bottom:244.392864px;}
.y95_c00090{bottom:244.392907px;}
.y93_c00090{bottom:244.392970px;}
.y91_c00090{bottom:244.392994px;}
.y8f_c00090{bottom:244.393288px;}
.y96_c00090{bottom:244.393576px;}
.y88_c00090{bottom:261.163454px;}
.y89_c00090{bottom:261.164062px;}
.y8b_c00090{bottom:261.164334px;}
.y8a_c00090{bottom:261.164535px;}
.y8c_c00090{bottom:261.164743px;}
.y8e_c00090{bottom:261.164800px;}
.y8d_c00090{bottom:261.164992px;}
.y7f_c00090{bottom:278.863963px;}
.y83_c00090{bottom:278.864142px;}
.y80_c00090{bottom:278.864161px;}
.y82_c00090{bottom:278.864218px;}
.y84_c00090{bottom:278.864284px;}
.y81_c00090{bottom:278.864500px;}
.y85_c00090{bottom:278.864529px;}
.y86_c00090{bottom:278.864662px;}
.y87_c00090{bottom:278.865216px;}
.y79_c00090{bottom:296.145718px;}
.y78_c00090{bottom:296.145846px;}
.y7a_c00090{bottom:296.146032px;}
.y7c_c00090{bottom:296.146347px;}
.y7e_c00090{bottom:296.146383px;}
.y7d_c00090{bottom:296.146408px;}
.y7b_c00090{bottom:296.146753px;}
.y74_c00090{bottom:312.525981px;}
.y73_c00090{bottom:312.526327px;}
.y75_c00090{bottom:312.526495px;}
.y76_c00090{bottom:312.526673px;}
.y72_c00090{bottom:312.526935px;}
.y71_c00090{bottom:312.527092px;}
.y77_c00090{bottom:312.527316px;}
.y70_c00090{bottom:312.527589px;}
.y6d_c00090{bottom:327.082019px;}
.y6f_c00090{bottom:327.082080px;}
.y6b_c00090{bottom:327.082484px;}
.y6c_c00090{bottom:327.082515px;}
.y6e_c00090{bottom:327.082717px;}
.y69_c00090{bottom:327.082756px;}
.y6a_c00090{bottom:327.083104px;}
.y60_c00090{bottom:343.371834px;}
.y61_c00090{bottom:343.372533px;}
.y66_c00090{bottom:343.372597px;}
.y62_c00090{bottom:343.372684px;}
.y68_c00090{bottom:343.372800px;}
.y67_c00090{bottom:343.373117px;}
.y63_c00090{bottom:343.373212px;}
.y65_c00090{bottom:343.373240px;}
.y64_c00090{bottom:343.373586px;}
.y59_c00090{bottom:361.255215px;}
.y5e_c00090{bottom:361.255759px;}
.y5d_c00090{bottom:361.255875px;}
.y5a_c00090{bottom:361.255932px;}
.y5c_c00090{bottom:361.256037px;}
.y5f_c00090{bottom:361.256038px;}
.y5b_c00090{bottom:361.256215px;}
.y52_c00090{bottom:376.113000px;}
.y53_c00090{bottom:376.529058px;}
.y54_c00090{bottom:376.888506px;}
.y55_c00090{bottom:377.778915px;}
.y56_c00090{bottom:378.132600px;}
.y57_c00090{bottom:378.982260px;}
.y58_c00090{bottom:380.331771px;}
.y4c_c00090{bottom:393.115338px;}
.y51_c00090{bottom:393.523500px;}
.y4d_c00090{bottom:394.308045px;}
.y4e_c00090{bottom:394.702830px;}
.y4f_c00090{bottom:396.962913px;}
.y50_c00090{bottom:399.870000px;}
.y45_c00090{bottom:408.507075px;}
.y46_c00090{bottom:408.959853px;}
.y47_c00090{bottom:409.652115px;}
.y48_c00090{bottom:410.530242px;}
.y49_c00090{bottom:411.517821px;}
.y4a_c00090{bottom:413.209710px;}
.y4b_c00090{bottom:413.448534px;}
.y3d_c00090{bottom:425.789418px;}
.y3e_c00090{bottom:426.646719px;}
.y3f_c00090{bottom:427.055823px;}
.y40_c00090{bottom:428.049756px;}
.y41_c00090{bottom:428.337714px;}
.y42_c00090{bottom:428.587353px;}
.y43_c00090{bottom:429.271356px;}
.y44_c00090{bottom:429.569631px;}
.y34_c00090{bottom:441.457500px;}
.y35_c00090{bottom:442.519572px;}
.y36_c00090{bottom:443.654112px;}
.y37_c00090{bottom:444.058197px;}
.y38_c00090{bottom:445.334208px;}
.y39_c00090{bottom:446.066082px;}
.y3a_c00090{bottom:446.664306px;}
.y3b_c00090{bottom:447.313977px;}
.y3c_c00090{bottom:447.753570px;}
.y2d_c00090{bottom:460.080000px;}
.y2e_c00090{bottom:460.866000px;}
.y2f_c00090{bottom:461.160000px;}
.y30_c00090{bottom:462.357000px;}
.y31_c00090{bottom:462.931500px;}
.y32_c00090{bottom:463.152000px;}
.y33_c00090{bottom:464.416500px;}
.y26_c00090{bottom:477.091500px;}
.y27_c00090{bottom:477.726000px;}
.y28_c00090{bottom:478.345500px;}
.y29_c00090{bottom:478.815000px;}
.y2a_c00090{bottom:479.751000px;}
.y2b_c00090{bottom:480.448500px;}
.y2c_c00090{bottom:481.392000px;}
.y1c_c00090{bottom:495.451500px;}
.y1d_c00090{bottom:495.882000px;}
.y1e_c00090{bottom:496.174500px;}
.y1f_c00090{bottom:496.680000px;}
.y20_c00090{bottom:496.932000px;}
.y21_c00090{bottom:497.563500px;}
.y22_c00090{bottom:497.901000px;}
.y23_c00090{bottom:498.153000px;}
.y24_c00090{bottom:498.388500px;}
.y25_c00090{bottom:498.690000px;}
.y14_c00090{bottom:512.463000px;}
.y15_c00090{bottom:513.063000px;}
.y16_c00090{bottom:513.241500px;}
.y17_c00090{bottom:514.122000px;}
.y18_c00090{bottom:514.743000px;}
.y19_c00090{bottom:515.127000px;}
.y1a_c00090{bottom:515.829000px;}
.y1b_c00090{bottom:516.235500px;}
.yb_c00090{bottom:528.931500px;}
.yc_c00090{bottom:529.284000px;}
.yd_c00090{bottom:529.911000px;}
.ye_c00090{bottom:530.782500px;}
.yf_c00090{bottom:531.459000px;}
.y10_c00090{bottom:531.880500px;}
.y11_c00090{bottom:532.423500px;}
.y12_c00090{bottom:532.861500px;}
.y13_c00090{bottom:533.100000px;}
.y2_c00090{bottom:545.941500px;}
.y3_c00090{bottom:546.271500px;}
.y4_c00090{bottom:546.514500px;}
.y5_c00090{bottom:546.981000px;}
.y6_c00090{bottom:547.123500px;}
.y7_c00090{bottom:547.897500px;}
.y8_c00090{bottom:548.121000px;}
.y9_c00090{bottom:548.721000px;}
.ya_c00090{bottom:548.947500px;}
.y1_c00090{bottom:565.161000px;}
.hb_c00090{height:24.150000px;}
.ha_c00090{height:47.261433px;}
.h16_c00090{height:57.750000px;}
.h15_c00090{height:57.758344px;}
.h18_c00090{height:58.800000px;}
.h14_c00090{height:58.808496px;}
.h19_c00090{height:59.850000px;}
.h13_c00090{height:59.858648px;}
.h4_c00090{height:60.900000px;}
.hd_c00090{height:60.908799px;}
.h17_c00090{height:61.950000px;}
.he_c00090{height:61.958951px;}
.h1a_c00090{height:63.000000px;}
.h12_c00090{height:63.009103px;}
.h11_c00090{height:64.059255px;}
.hc_c00090{height:65.109406px;}
.h8_c00090{height:66.166006px;}
.hf_c00090{height:67.209710px;}
.h6_c00090{height:68.250000px;}
.h10_c00090{height:68.259861px;}
.h7_c00090{height:68.266515px;}
.h3_c00090{height:69.300000px;}
.h2_c00090{height:70.350000px;}
.h9_c00090{height:71.417277px;}
.h5_c00090{height:73.500000px;}
.h1_c00090{height:612.000000px;}
.h0_c00090{height:612.300000px;}
.w0_c00090{width:361.500000px;}
.x0_c00090{left:0.000000px;}
.x2c_c00090{left:24.385500px;}
.x3_c00090{left:28.723500px;}
.x1a_c00090{left:29.850000px;}
.x31_c00090{left:31.252353px;}
.x39_c00090{left:32.331357px;}
.x4b_c00090{left:33.747570px;}
.x5c_c00090{left:34.829331px;}
.x63_c00090{left:35.909325px;}
.x6e_c00090{left:37.798160px;}
.x7a_c00090{left:39.690000px;}
.x81_c00090{left:40.897500px;}
.x6f_c00090{left:44.008445px;}
.x77_c00090{left:46.710000px;}
.xc_c00090{left:53.101500px;}
.x3d_c00090{left:54.756000px;}
.x4_c00090{left:56.253000px;}
.x82_c00090{left:57.940500px;}
.x4c_c00090{left:63.991816px;}
.x1b_c00090{left:65.706000px;}
.x73_c00090{left:68.582852px;}
.x20_c00090{left:72.526500px;}
.x48_c00090{left:73.983322px;}
.x5_c00090{left:76.552500px;}
.x26_c00090{left:79.830000px;}
.x61_c00090{left:81.005927px;}
.x7c_c00090{left:86.400000px;}
.x51_c00090{left:87.755085px;}
.x14_c00090{left:89.508000px;}
.x32_c00090{left:92.458611px;}
.xd_c00090{left:94.938000px;}
.x6b_c00090{left:96.488844px;}
.x27_c00090{left:98.202000px;}
.x3e_c00090{left:100.374000px;}
.x3c_c00090{left:103.680000px;}
.x59_c00090{left:105.579243px;}
.x64_c00090{left:109.900194px;}
.x3a_c00090{left:111.720855px;}
.x21_c00090{left:113.844000px;}
.x6_c00090{left:115.423500px;}
.x70_c00090{left:116.648931px;}
.x67_c00090{left:118.271631px;}
.x52_c00090{left:120.430020px;}
.x33_c00090{left:121.695759px;}
.x5a_c00090{left:123.131318px;}
.x2d_c00090{left:124.231500px;}
.x3f_c00090{left:126.100605px;}
.x7_c00090{left:127.327500px;}
.x43_c00090{left:130.962942px;}
.x1c_c00090{left:132.198000px;}
.x7b_c00090{left:133.920000px;}
.x74_c00090{left:136.093359px;}
.x57_c00090{left:139.063610px;}
.x71_c00090{left:141.493097px;}
.x2e_c00090{left:142.599000px;}
.x36_c00090{left:143.884380px;}
.x22_c00090{left:145.168500px;}
.x78_c00090{left:149.310000px;}
.x65_c00090{left:150.946052px;}
.xe_c00090{left:152.998500px;}
.x5d_c00090{left:155.536215px;}
.x15_c00090{left:157.249500px;}
.x4d_c00090{left:161.474994px;}
.x58_c00090{left:166.066913px;}
.x49_c00090{left:167.416827px;}
.x28_c00090{left:172.995000px;}
.x6c_c00090{left:175.097256px;}
.x1_c00090{left:177.390000px;}
.x83_c00090{left:178.600500px;}
.x68_c00090{left:183.621501px;}
.x75_c00090{left:186.320369px;}
.x4e_c00090{left:187.668068px;}
.x80_c00090{left:188.730000px;}
.x53_c00090{left:190.639793px;}
.x8_c00090{left:191.880000px;}
.x40_c00090{left:193.609613px;}
.xf_c00090{left:198.082500px;}
.x2f_c00090{left:200.599500px;}
.x44_c00090{left:201.712868px;}
.x4f_c00090{left:202.790928px;}
.x16_c00090{left:205.011000px;}
.x62_c00090{left:206.034120px;}
.x23_c00090{left:207.532500px;}
.x29_c00090{left:208.926000px;}
.x9_c00090{left:210.475500px;}
.x34_c00090{left:213.252363px;}
.x69_c00090{left:215.484707px;}
.x4a_c00090{left:217.913913px;}
.x54_c00090{left:221.154116px;}
.x2a_c00090{left:222.675000px;}
.x3b_c00090{left:224.752338px;}
.x10_c00090{left:226.164000px;}
.x45_c00090{left:227.905941px;}
.x7d_c00090{left:229.770000px;}
.x35_c00090{left:231.079998px;}
.x5e_c00090{left:233.038104px;}
.x17_c00090{left:234.513000px;}
.x41_c00090{left:238.436567px;}
.x5b_c00090{left:242.219217px;}
.x7e_c00090{left:245.970000px;}
.x42_c00090{left:251.668892px;}
.x24_c00090{left:253.990500px;}
.x1d_c00090{left:255.018000px;}
.x79_c00090{left:258.930000px;}
.xa_c00090{left:260.437500px;}
.x11_c00090{left:262.351500px;}
.x5f_c00090{left:264.902810px;}
.x46_c00090{left:266.791186px;}
.x1e_c00090{left:274.677000px;}
.x6d_c00090{left:277.128510px;}
.xb_c00090{left:279.334500px;}
.x60_c00090{left:280.564323px;}
.x47_c00090{left:286.503873px;}
.x18_c00090{left:288.517500px;}
.x12_c00090{left:291.520500px;}
.x37_c00090{left:292.691448px;}
.x50_c00090{left:295.954330px;}
.x55_c00090{left:298.385928px;}
.x1f_c00090{left:299.815500px;}
.x2b_c00090{left:301.713000px;}
.x2_c00090{left:303.210000px;}
.x72_c00090{left:304.596221px;}
.x38_c00090{left:305.934603px;}
.x13_c00090{left:307.414500px;}
.x30_c00090{left:310.570500px;}
.x56_c00090{left:311.888330px;}
.x76_c00090{left:314.587920px;}
.x25_c00090{left:316.902000px;}
.x19_c00090{left:319.836000px;}
.x7f_c00090{left:321.030000px;}
.x66_c00090{left:324.850812px;}
.x6a_c00090{left:328.900974px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs9_c00090{font-size:21.466667pt;}
.fs8_c00090{font-size:42.010163pt;}
.fs14_c00090{font-size:51.333333pt;}
.fs13_c00090{font-size:51.340750pt;}
.fs16_c00090{font-size:52.266667pt;}
.fs12_c00090{font-size:52.274219pt;}
.fs17_c00090{font-size:53.200000pt;}
.fs11_c00090{font-size:53.207687pt;}
.fs2_c00090{font-size:54.133333pt;}
.fsb_c00090{font-size:54.141155pt;}
.fs15_c00090{font-size:55.066667pt;}
.fsc_c00090{font-size:55.074623pt;}
.fs18_c00090{font-size:56.000000pt;}
.fs10_c00090{font-size:56.008091pt;}
.fsf_c00090{font-size:56.941560pt;}
.fsa_c00090{font-size:57.875028pt;}
.fs6_c00090{font-size:58.814228pt;}
.fsd_c00090{font-size:59.741964pt;}
.fs4_c00090{font-size:60.666667pt;}
.fse_c00090{font-size:60.675432pt;}
.fs5_c00090{font-size:60.681346pt;}
.fs1_c00090{font-size:61.600000pt;}
.fs0_c00090{font-size:62.533333pt;}
.fs7_c00090{font-size:63.482024pt;}
.fs3_c00090{font-size:65.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.yd0_c00090{bottom:19.441333pt;}
.yd1_c00090{bottom:19.608000pt;}
.yd2_c00090{bottom:20.225333pt;}
.yd3_c00090{bottom:20.788000pt;}
.yd4_c00090{bottom:21.146667pt;}
.yd5_c00090{bottom:21.305333pt;}
.yd6_c00090{bottom:21.722667pt;}
.yd7_c00090{bottom:21.910667pt;}
.ycf_c00090{bottom:37.705333pt;}
.yce_c00090{bottom:52.286667pt;}
.ycd_c00090{bottom:67.548000pt;}
.ycc_c00090{bottom:83.226667pt;}
.ycb_c00090{bottom:97.440000pt;}
.yc6_c00090{bottom:113.063437pt;}
.yc7_c00090{bottom:113.063484pt;}
.yc8_c00090{bottom:113.063584pt;}
.yc9_c00090{bottom:113.063585pt;}
.yc5_c00090{bottom:113.063620pt;}
.yc4_c00090{bottom:113.063821pt;}
.yca_c00090{bottom:113.063956pt;}
.ybc_c00090{bottom:127.514739pt;}
.ybe_c00090{bottom:127.514843pt;}
.ybd_c00090{bottom:127.515223pt;}
.ybf_c00090{bottom:127.515251pt;}
.yc3_c00090{bottom:127.515856pt;}
.yc0_c00090{bottom:127.515899pt;}
.yc1_c00090{bottom:127.516300pt;}
.yc2_c00090{bottom:127.516357pt;}
.ybb_c00090{bottom:139.768704pt;}
.yba_c00090{bottom:140.265925pt;}
.yb9_c00090{bottom:140.578485pt;}
.yb8_c00090{bottom:141.535599pt;}
.yb7_c00090{bottom:141.699905pt;}
.yb6_c00090{bottom:142.304535pt;}
.yb5_c00090{bottom:142.513697pt;}
.yb4_c00090{bottom:143.255432pt;}
.yaf_c00090{bottom:157.681792pt;}
.yad_c00090{bottom:157.681813pt;}
.yb1_c00090{bottom:157.682335pt;}
.yac_c00090{bottom:157.682365pt;}
.yae_c00090{bottom:157.682371pt;}
.yb0_c00090{bottom:157.682387pt;}
.yb3_c00090{bottom:157.682404pt;}
.yb2_c00090{bottom:157.682476pt;}
.yab_c00090{bottom:157.682848pt;}
.ya8_c00090{bottom:172.457399pt;}
.yaa_c00090{bottom:172.457488pt;}
.ya9_c00090{bottom:172.457556pt;}
.ya4_c00090{bottom:172.457747pt;}
.ya3_c00090{bottom:172.457856pt;}
.ya7_c00090{bottom:172.458041pt;}
.ya5_c00090{bottom:172.458284pt;}
.ya6_c00090{bottom:172.458353pt;}
.ya2_c00090{bottom:186.912031pt;}
.ya1_c00090{bottom:186.912064pt;}
.y9d_c00090{bottom:186.912556pt;}
.ya0_c00090{bottom:186.912637pt;}
.y9e_c00090{bottom:186.912728pt;}
.y9f_c00090{bottom:186.912847pt;}
.y97_c00090{bottom:201.743324pt;}
.y98_c00090{bottom:201.743580pt;}
.y99_c00090{bottom:201.744133pt;}
.y9c_c00090{bottom:201.744464pt;}
.y9a_c00090{bottom:201.744511pt;}
.y9b_c00090{bottom:201.744939pt;}
.y90_c00090{bottom:217.237927pt;}
.y92_c00090{bottom:217.237967pt;}
.y94_c00090{bottom:217.238101pt;}
.y95_c00090{bottom:217.238140pt;}
.y93_c00090{bottom:217.238196pt;}
.y91_c00090{bottom:217.238217pt;}
.y8f_c00090{bottom:217.238479pt;}
.y96_c00090{bottom:217.238735pt;}
.y88_c00090{bottom:232.145292pt;}
.y89_c00090{bottom:232.145833pt;}
.y8b_c00090{bottom:232.146075pt;}
.y8a_c00090{bottom:232.146253pt;}
.y8c_c00090{bottom:232.146439pt;}
.y8e_c00090{bottom:232.146489pt;}
.y8d_c00090{bottom:232.146660pt;}
.y7f_c00090{bottom:247.879079pt;}
.y83_c00090{bottom:247.879237pt;}
.y80_c00090{bottom:247.879255pt;}
.y82_c00090{bottom:247.879305pt;}
.y84_c00090{bottom:247.879364pt;}
.y81_c00090{bottom:247.879556pt;}
.y85_c00090{bottom:247.879581pt;}
.y86_c00090{bottom:247.879700pt;}
.y87_c00090{bottom:247.880192pt;}
.y79_c00090{bottom:263.240639pt;}
.y78_c00090{bottom:263.240752pt;}
.y7a_c00090{bottom:263.240917pt;}
.y7c_c00090{bottom:263.241197pt;}
.y7e_c00090{bottom:263.241229pt;}
.y7d_c00090{bottom:263.241252pt;}
.y7b_c00090{bottom:263.241559pt;}
.y74_c00090{bottom:277.800872pt;}
.y73_c00090{bottom:277.801180pt;}
.y75_c00090{bottom:277.801329pt;}
.y76_c00090{bottom:277.801487pt;}
.y72_c00090{bottom:277.801720pt;}
.y71_c00090{bottom:277.801860pt;}
.y77_c00090{bottom:277.802059pt;}
.y70_c00090{bottom:277.802301pt;}
.y6d_c00090{bottom:290.739572pt;}
.y6f_c00090{bottom:290.739627pt;}
.y6b_c00090{bottom:290.739985pt;}
.y6c_c00090{bottom:290.740013pt;}
.y6e_c00090{bottom:290.740193pt;}
.y69_c00090{bottom:290.740228pt;}
.y6a_c00090{bottom:290.740537pt;}
.y60_c00090{bottom:305.219408pt;}
.y61_c00090{bottom:305.220029pt;}
.y66_c00090{bottom:305.220087pt;}
.y62_c00090{bottom:305.220164pt;}
.y68_c00090{bottom:305.220267pt;}
.y67_c00090{bottom:305.220548pt;}
.y63_c00090{bottom:305.220633pt;}
.y65_c00090{bottom:305.220657pt;}
.y64_c00090{bottom:305.220965pt;}
.y59_c00090{bottom:321.115747pt;}
.y5e_c00090{bottom:321.116231pt;}
.y5d_c00090{bottom:321.116333pt;}
.y5a_c00090{bottom:321.116384pt;}
.y5c_c00090{bottom:321.116477pt;}
.y5f_c00090{bottom:321.116479pt;}
.y5b_c00090{bottom:321.116636pt;}
.y52_c00090{bottom:334.322667pt;}
.y53_c00090{bottom:334.692496pt;}
.y54_c00090{bottom:335.012005pt;}
.y55_c00090{bottom:335.803480pt;}
.y56_c00090{bottom:336.117867pt;}
.y57_c00090{bottom:336.873120pt;}
.y58_c00090{bottom:338.072685pt;}
.y4c_c00090{bottom:349.435856pt;}
.y51_c00090{bottom:349.798667pt;}
.y4d_c00090{bottom:350.496040pt;}
.y4e_c00090{bottom:350.846960pt;}
.y4f_c00090{bottom:352.855923pt;}
.y50_c00090{bottom:355.440000pt;}
.y45_c00090{bottom:363.117400pt;}
.y46_c00090{bottom:363.519869pt;}
.y47_c00090{bottom:364.135213pt;}
.y48_c00090{bottom:364.915771pt;}
.y49_c00090{bottom:365.793619pt;}
.y4a_c00090{bottom:367.297520pt;}
.y4b_c00090{bottom:367.509808pt;}
.y3d_c00090{bottom:378.479483pt;}
.y3e_c00090{bottom:379.241528pt;}
.y3f_c00090{bottom:379.605176pt;}
.y40_c00090{bottom:380.488672pt;}
.y41_c00090{bottom:380.744635pt;}
.y42_c00090{bottom:380.966536pt;}
.y43_c00090{bottom:381.574539pt;}
.y44_c00090{bottom:381.839672pt;}
.y34_c00090{bottom:392.406667pt;}
.y35_c00090{bottom:393.350731pt;}
.y36_c00090{bottom:394.359211pt;}
.y37_c00090{bottom:394.718397pt;}
.y38_c00090{bottom:395.852629pt;}
.y39_c00090{bottom:396.503184pt;}
.y3a_c00090{bottom:397.034939pt;}
.y3b_c00090{bottom:397.612424pt;}
.y3c_c00090{bottom:398.003173pt;}
.y2d_c00090{bottom:408.960000pt;}
.y2e_c00090{bottom:409.658667pt;}
.y2f_c00090{bottom:409.920000pt;}
.y30_c00090{bottom:410.984000pt;}
.y31_c00090{bottom:411.494667pt;}
.y32_c00090{bottom:411.690667pt;}
.y33_c00090{bottom:412.814667pt;}
.y26_c00090{bottom:424.081333pt;}
.y27_c00090{bottom:424.645333pt;}
.y28_c00090{bottom:425.196000pt;}
.y29_c00090{bottom:425.613333pt;}
.y2a_c00090{bottom:426.445333pt;}
.y2b_c00090{bottom:427.065333pt;}
.y2c_c00090{bottom:427.904000pt;}
.y1c_c00090{bottom:440.401333pt;}
.y1d_c00090{bottom:440.784000pt;}
.y1e_c00090{bottom:441.044000pt;}
.y1f_c00090{bottom:441.493333pt;}
.y20_c00090{bottom:441.717333pt;}
.y21_c00090{bottom:442.278667pt;}
.y22_c00090{bottom:442.578667pt;}
.y23_c00090{bottom:442.802667pt;}
.y24_c00090{bottom:443.012000pt;}
.y25_c00090{bottom:443.280000pt;}
.y14_c00090{bottom:455.522667pt;}
.y15_c00090{bottom:456.056000pt;}
.y16_c00090{bottom:456.214667pt;}
.y17_c00090{bottom:456.997333pt;}
.y18_c00090{bottom:457.549333pt;}
.y19_c00090{bottom:457.890667pt;}
.y1a_c00090{bottom:458.514667pt;}
.y1b_c00090{bottom:458.876000pt;}
.yb_c00090{bottom:470.161333pt;}
.yc_c00090{bottom:470.474667pt;}
.yd_c00090{bottom:471.032000pt;}
.ye_c00090{bottom:471.806667pt;}
.yf_c00090{bottom:472.408000pt;}
.y10_c00090{bottom:472.782667pt;}
.y11_c00090{bottom:473.265333pt;}
.y12_c00090{bottom:473.654667pt;}
.y13_c00090{bottom:473.866667pt;}
.y2_c00090{bottom:485.281333pt;}
.y3_c00090{bottom:485.574667pt;}
.y4_c00090{bottom:485.790667pt;}
.y5_c00090{bottom:486.205333pt;}
.y6_c00090{bottom:486.332000pt;}
.y7_c00090{bottom:487.020000pt;}
.y8_c00090{bottom:487.218667pt;}
.y9_c00090{bottom:487.752000pt;}
.ya_c00090{bottom:487.953333pt;}
.y1_c00090{bottom:502.365333pt;}
.hb_c00090{height:21.466667pt;}
.ha_c00090{height:42.010163pt;}
.h16_c00090{height:51.333333pt;}
.h15_c00090{height:51.340750pt;}
.h18_c00090{height:52.266667pt;}
.h14_c00090{height:52.274219pt;}
.h19_c00090{height:53.200000pt;}
.h13_c00090{height:53.207687pt;}
.h4_c00090{height:54.133333pt;}
.hd_c00090{height:54.141155pt;}
.h17_c00090{height:55.066667pt;}
.he_c00090{height:55.074623pt;}
.h1a_c00090{height:56.000000pt;}
.h12_c00090{height:56.008091pt;}
.h11_c00090{height:56.941560pt;}
.hc_c00090{height:57.875028pt;}
.h8_c00090{height:58.814228pt;}
.hf_c00090{height:59.741964pt;}
.h6_c00090{height:60.666667pt;}
.h10_c00090{height:60.675432pt;}
.h7_c00090{height:60.681346pt;}
.h3_c00090{height:61.600000pt;}
.h2_c00090{height:62.533333pt;}
.h9_c00090{height:63.482024pt;}
.h5_c00090{height:65.333333pt;}
.h1_c00090{height:544.000000pt;}
.h0_c00090{height:544.266667pt;}
.w0_c00090{width:321.333333pt;}
.x0_c00090{left:0.000000pt;}
.x2c_c00090{left:21.676000pt;}
.x3_c00090{left:25.532000pt;}
.x1a_c00090{left:26.533333pt;}
.x31_c00090{left:27.779869pt;}
.x39_c00090{left:28.738984pt;}
.x4b_c00090{left:29.997840pt;}
.x5c_c00090{left:30.959405pt;}
.x63_c00090{left:31.919400pt;}
.x6e_c00090{left:33.598364pt;}
.x7a_c00090{left:35.280000pt;}
.x81_c00090{left:36.353333pt;}
.x6f_c00090{left:39.118617pt;}
.x77_c00090{left:41.520000pt;}
.xc_c00090{left:47.201333pt;}
.x3d_c00090{left:48.672000pt;}
.x4_c00090{left:50.002667pt;}
.x82_c00090{left:51.502667pt;}
.x4c_c00090{left:56.881615pt;}
.x1b_c00090{left:58.405333pt;}
.x73_c00090{left:60.962535pt;}
.x20_c00090{left:64.468000pt;}
.x48_c00090{left:65.762953pt;}
.x5_c00090{left:68.046667pt;}
.x26_c00090{left:70.960000pt;}
.x61_c00090{left:72.005268pt;}
.x7c_c00090{left:76.800000pt;}
.x51_c00090{left:78.004520pt;}
.x14_c00090{left:79.562667pt;}
.x32_c00090{left:82.185432pt;}
.xd_c00090{left:84.389333pt;}
.x6b_c00090{left:85.767861pt;}
.x27_c00090{left:87.290667pt;}
.x3e_c00090{left:89.221333pt;}
.x3c_c00090{left:92.160000pt;}
.x59_c00090{left:93.848216pt;}
.x64_c00090{left:97.689061pt;}
.x3a_c00090{left:99.307427pt;}
.x21_c00090{left:101.194667pt;}
.x6_c00090{left:102.598667pt;}
.x70_c00090{left:103.687939pt;}
.x67_c00090{left:105.130339pt;}
.x52_c00090{left:107.048907pt;}
.x33_c00090{left:108.174008pt;}
.x5a_c00090{left:109.450060pt;}
.x2d_c00090{left:110.428000pt;}
.x3f_c00090{left:112.089427pt;}
.x7_c00090{left:113.180000pt;}
.x43_c00090{left:116.411504pt;}
.x1c_c00090{left:117.509333pt;}
.x7b_c00090{left:119.040000pt;}
.x74_c00090{left:120.971875pt;}
.x57_c00090{left:123.612097pt;}
.x71_c00090{left:125.771641pt;}
.x2e_c00090{left:126.754667pt;}
.x36_c00090{left:127.897227pt;}
.x22_c00090{left:129.038667pt;}
.x78_c00090{left:132.720000pt;}
.x65_c00090{left:134.174268pt;}
.xe_c00090{left:135.998667pt;}
.x5d_c00090{left:138.254413pt;}
.x15_c00090{left:139.777333pt;}
.x4d_c00090{left:143.533328pt;}
.x58_c00090{left:147.615033pt;}
.x49_c00090{left:148.814957pt;}
.x28_c00090{left:153.773333pt;}
.x6c_c00090{left:155.642005pt;}
.x1_c00090{left:157.680000pt;}
.x83_c00090{left:158.756000pt;}
.x68_c00090{left:163.219112pt;}
.x75_c00090{left:165.618105pt;}
.x4e_c00090{left:166.816060pt;}
.x80_c00090{left:167.760000pt;}
.x53_c00090{left:169.457593pt;}
.x8_c00090{left:170.560000pt;}
.x40_c00090{left:172.097433pt;}
.xf_c00090{left:176.073333pt;}
.x2f_c00090{left:178.310667pt;}
.x44_c00090{left:179.300327pt;}
.x4f_c00090{left:180.258603pt;}
.x16_c00090{left:182.232000pt;}
.x62_c00090{left:183.141440pt;}
.x23_c00090{left:184.473333pt;}
.x29_c00090{left:185.712000pt;}
.x9_c00090{left:187.089333pt;}
.x34_c00090{left:189.557656pt;}
.x69_c00090{left:191.541961pt;}
.x4a_c00090{left:193.701256pt;}
.x54_c00090{left:196.581436pt;}
.x2a_c00090{left:197.933333pt;}
.x3b_c00090{left:199.779856pt;}
.x10_c00090{left:201.034667pt;}
.x45_c00090{left:202.583059pt;}
.x7d_c00090{left:204.240000pt;}
.x35_c00090{left:205.404443pt;}
.x5e_c00090{left:207.144981pt;}
.x17_c00090{left:208.456000pt;}
.x41_c00090{left:211.943615pt;}
.x5b_c00090{left:215.305971pt;}
.x7e_c00090{left:218.640000pt;}
.x42_c00090{left:223.705681pt;}
.x24_c00090{left:225.769333pt;}
.x1d_c00090{left:226.682667pt;}
.x79_c00090{left:230.160000pt;}
.xa_c00090{left:231.500000pt;}
.x11_c00090{left:233.201333pt;}
.x5f_c00090{left:235.469164pt;}
.x46_c00090{left:237.147721pt;}
.x1e_c00090{left:244.157333pt;}
.x6d_c00090{left:246.336453pt;}
.xb_c00090{left:248.297333pt;}
.x60_c00090{left:249.390509pt;}
.x47_c00090{left:254.670109pt;}
.x18_c00090{left:256.460000pt;}
.x12_c00090{left:259.129333pt;}
.x37_c00090{left:260.170176pt;}
.x50_c00090{left:263.070516pt;}
.x55_c00090{left:265.231936pt;}
.x1f_c00090{left:266.502667pt;}
.x2b_c00090{left:268.189333pt;}
.x2_c00090{left:269.520000pt;}
.x72_c00090{left:270.752196pt;}
.x38_c00090{left:271.941869pt;}
.x13_c00090{left:273.257333pt;}
.x30_c00090{left:276.062667pt;}
.x56_c00090{left:277.234071pt;}
.x76_c00090{left:279.633707pt;}
.x25_c00090{left:281.690667pt;}
.x19_c00090{left:284.298667pt;}
.x7f_c00090{left:285.360000pt;}
.x66_c00090{left:288.756277pt;}
.x6a_c00090{left:292.356421pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00091 {
    display:none;
  }
  .loading-indicator_c00091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00091 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00091 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00091" -> "#page-container .classname_c00091")
 */
.pf_c00091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00091 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00091 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00091 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00091 {overflow:visible;}
  }
}
.c_c00091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00091 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00091:after { /* webkit #35443 */
  content: '';
}
.t_c00091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00091 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00091 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00091 { /* info for Javascript */
  display:none;
}
.l_c00091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00091:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00091 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00091.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00091{transform:matrix(0.091605,-0.000916,0.002500,0.249988,0,0);-ms-transform:matrix(0.091605,-0.000916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.091605,-0.000916,0.002500,0.249988,0,0);}
.mbd_c00091{transform:matrix(0.132303,-0.001323,0.002500,0.249988,0,0);-ms-transform:matrix(0.132303,-0.001323,0.002500,0.249988,0,0);-webkit-transform:matrix(0.132303,-0.001323,0.002500,0.249988,0,0);}
.ma2_c00091{transform:matrix(0.137363,-0.001374,0.002500,0.249988,0,0);-ms-transform:matrix(0.137363,-0.001374,0.002500,0.249988,0,0);-webkit-transform:matrix(0.137363,-0.001374,0.002500,0.249988,0,0);}
.m1_c00091{transform:matrix(0.138553,-0.001386,0.002500,0.249988,0,0);-ms-transform:matrix(0.138553,-0.001386,0.002500,0.249988,0,0);-webkit-transform:matrix(0.138553,-0.001386,0.002500,0.249988,0,0);}
.m85_c00091{transform:matrix(0.142638,-0.001426,0.002500,0.249988,0,0);-ms-transform:matrix(0.142638,-0.001426,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142638,-0.001426,0.002500,0.249988,0,0);}
.m33_c00091{transform:matrix(0.149458,-0.001495,0.002500,0.249988,0,0);-ms-transform:matrix(0.149458,-0.001495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149458,-0.001495,0.002500,0.249988,0,0);}
.me1_c00091{transform:matrix(0.149683,-0.001497,0.002500,0.249988,0,0);-ms-transform:matrix(0.149683,-0.001497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149683,-0.001497,0.002500,0.249988,0,0);}
.mc_c00091{transform:matrix(0.150617,-0.001506,0.002500,0.249988,0,0);-ms-transform:matrix(0.150617,-0.001506,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150617,-0.001506,0.002500,0.249988,0,0);}
.m8d_c00091{transform:matrix(0.151037,-0.001510,0.002500,0.249988,0,0);-ms-transform:matrix(0.151037,-0.001510,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151037,-0.001510,0.002500,0.249988,0,0);}
.mf5_c00091{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m87_c00091{transform:matrix(0.151617,-0.001516,0.002500,0.249988,0,0);-ms-transform:matrix(0.151617,-0.001516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151617,-0.001516,0.002500,0.249988,0,0);}
.mde_c00091{transform:matrix(0.153362,-0.001534,0.002500,0.249988,0,0);-ms-transform:matrix(0.153362,-0.001534,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153362,-0.001534,0.002500,0.249988,0,0);}
.m68_c00091{transform:matrix(0.153552,-0.001536,0.002500,0.249988,0,0);-ms-transform:matrix(0.153552,-0.001536,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153552,-0.001536,0.002500,0.249988,0,0);}
.m8a_c00091{transform:matrix(0.156197,-0.001562,0.002500,0.249988,0,0);-ms-transform:matrix(0.156197,-0.001562,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156197,-0.001562,0.002500,0.249988,0,0);}
.mb9_c00091{transform:matrix(0.156592,-0.001566,0.002500,0.249988,0,0);-ms-transform:matrix(0.156592,-0.001566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156592,-0.001566,0.002500,0.249988,0,0);}
.me3_c00091{transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);}
.m96_c00091{transform:matrix(0.156917,-0.001569,0.002500,0.249988,0,0);-ms-transform:matrix(0.156917,-0.001569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156917,-0.001569,0.002500,0.249988,0,0);}
.mbb_c00091{transform:matrix(0.157657,-0.001577,0.002500,0.249988,0,0);-ms-transform:matrix(0.157657,-0.001577,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157657,-0.001577,0.002500,0.249988,0,0);}
.m22_c00091{transform:matrix(0.158482,-0.001585,0.002500,0.249988,0,0);-ms-transform:matrix(0.158482,-0.001585,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158482,-0.001585,0.002500,0.249988,0,0);}
.mbe_c00091{transform:matrix(0.158672,-0.001587,0.002500,0.249988,0,0);-ms-transform:matrix(0.158672,-0.001587,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158672,-0.001587,0.002500,0.249988,0,0);}
.mc1_c00091{transform:matrix(0.159417,-0.001594,0.002500,0.249988,0,0);-ms-transform:matrix(0.159417,-0.001594,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159417,-0.001594,0.002500,0.249988,0,0);}
.m97_c00091{transform:matrix(0.159472,-0.001595,0.002500,0.249988,0,0);-ms-transform:matrix(0.159472,-0.001595,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159472,-0.001595,0.002500,0.249988,0,0);}
.m2_c00091{transform:matrix(0.159652,-0.001597,0.002500,0.249988,0,0);-ms-transform:matrix(0.159652,-0.001597,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159652,-0.001597,0.002500,0.249988,0,0);}
.m3_c00091{transform:matrix(0.159907,-0.001599,0.002500,0.249988,0,0);-ms-transform:matrix(0.159907,-0.001599,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159907,-0.001599,0.002500,0.249988,0,0);}
.mc3_c00091{transform:matrix(0.160157,-0.001602,0.002500,0.249988,0,0);-ms-transform:matrix(0.160157,-0.001602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160157,-0.001602,0.002500,0.249988,0,0);}
.me9_c00091{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.m80_c00091{transform:matrix(0.160657,-0.001607,0.002500,0.249988,0,0);-ms-transform:matrix(0.160657,-0.001607,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160657,-0.001607,0.002500,0.249988,0,0);}
.me6_c00091{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.161317,-0.001613,0.002500,0.249988,0,0);-ms-transform:matrix(0.161317,-0.001613,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161317,-0.001613,0.002500,0.249988,0,0);}
.m42_c00091{transform:matrix(0.162312,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162312,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162312,-0.001623,0.002500,0.249988,0,0);}
.mf4_c00091{transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);}
.mbf_c00091{transform:matrix(0.163537,-0.001635,0.002500,0.249988,0,0);-ms-transform:matrix(0.163537,-0.001635,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163537,-0.001635,0.002500,0.249988,0,0);}
.mf3_c00091{transform:matrix(0.164570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164570,0.000000,0.000000,0.250000,0,0);}
.m7e_c00091{transform:matrix(0.164642,-0.001646,0.002500,0.249988,0,0);-ms-transform:matrix(0.164642,-0.001646,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164642,-0.001646,0.002500,0.249988,0,0);}
.m90_c00091{transform:matrix(0.164942,-0.001649,0.002500,0.249988,0,0);-ms-transform:matrix(0.164942,-0.001649,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164942,-0.001649,0.002500,0.249988,0,0);}
.m69_c00091{transform:matrix(0.165357,-0.001654,0.002500,0.249988,0,0);-ms-transform:matrix(0.165357,-0.001654,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165357,-0.001654,0.002500,0.249988,0,0);}
.m65_c00091{transform:matrix(0.167147,-0.001671,0.002500,0.249988,0,0);-ms-transform:matrix(0.167147,-0.001671,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167147,-0.001671,0.002500,0.249988,0,0);}
.m1d_c00091{transform:matrix(0.167547,-0.001675,0.002500,0.249988,0,0);-ms-transform:matrix(0.167547,-0.001675,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167547,-0.001675,0.002500,0.249988,0,0);}
.mdc_c00091{transform:matrix(0.169977,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.169977,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169977,-0.001700,0.002500,0.249988,0,0);}
.mf2_c00091{transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{transform:matrix(0.170961,-0.001710,0.002500,0.249988,0,0);-ms-transform:matrix(0.170961,-0.001710,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170961,-0.001710,0.002500,0.249988,0,0);}
.m34_c00091{transform:matrix(0.171411,-0.001714,0.002500,0.249988,0,0);-ms-transform:matrix(0.171411,-0.001714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171411,-0.001714,0.002500,0.249988,0,0);}
.m95_c00091{transform:matrix(0.171851,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171851,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171851,-0.001719,0.002500,0.249988,0,0);}
.md8_c00091{transform:matrix(0.172056,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172056,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172056,-0.001721,0.002500,0.249988,0,0);}
.m6_c00091{transform:matrix(0.172126,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172126,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172126,-0.001721,0.002500,0.249988,0,0);}
.m51_c00091{transform:matrix(0.172456,-0.001725,0.002500,0.249988,0,0);-ms-transform:matrix(0.172456,-0.001725,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172456,-0.001725,0.002500,0.249988,0,0);}
.m9c_c00091{transform:matrix(0.172606,-0.001726,0.002500,0.249988,0,0);-ms-transform:matrix(0.172606,-0.001726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172606,-0.001726,0.002500,0.249988,0,0);}
.m1b_c00091{transform:matrix(0.172961,-0.001730,0.002500,0.249988,0,0);-ms-transform:matrix(0.172961,-0.001730,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172961,-0.001730,0.002500,0.249988,0,0);}
.m8b_c00091{transform:matrix(0.173126,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173126,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173126,-0.001731,0.002500,0.249988,0,0);}
.mcf_c00091{transform:matrix(0.173161,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173161,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173161,-0.001732,0.002500,0.249988,0,0);}
.mc8_c00091{transform:matrix(0.173311,-0.001733,0.002500,0.249988,0,0);-ms-transform:matrix(0.173311,-0.001733,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173311,-0.001733,0.002500,0.249988,0,0);}
.m77_c00091{transform:matrix(0.173396,-0.001734,0.002500,0.249988,0,0);-ms-transform:matrix(0.173396,-0.001734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173396,-0.001734,0.002500,0.249988,0,0);}
.m88_c00091{transform:matrix(0.173601,-0.001736,0.002500,0.249988,0,0);-ms-transform:matrix(0.173601,-0.001736,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173601,-0.001736,0.002500,0.249988,0,0);}
.m81_c00091{transform:matrix(0.174071,-0.001741,0.002500,0.249988,0,0);-ms-transform:matrix(0.174071,-0.001741,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174071,-0.001741,0.002500,0.249988,0,0);}
.md5_c00091{transform:matrix(0.174476,-0.001745,0.002500,0.249988,0,0);-ms-transform:matrix(0.174476,-0.001745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174476,-0.001745,0.002500,0.249988,0,0);}
.m1c_c00091{transform:matrix(0.174701,-0.001747,0.002500,0.249988,0,0);-ms-transform:matrix(0.174701,-0.001747,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174701,-0.001747,0.002500,0.249988,0,0);}
.m57_c00091{transform:matrix(0.174976,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.174976,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174976,-0.001750,0.002500,0.249988,0,0);}
.mda_c00091{transform:matrix(0.175096,-0.001751,0.002500,0.249988,0,0);-ms-transform:matrix(0.175096,-0.001751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175096,-0.001751,0.002500,0.249988,0,0);}
.m25_c00091{transform:matrix(0.175366,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175366,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175366,-0.001754,0.002500,0.249988,0,0);}
.m35_c00091{transform:matrix(0.175811,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175811,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175811,-0.001758,0.002500,0.249988,0,0);}
.m14_c00091{transform:matrix(0.175891,-0.001759,0.002500,0.249988,0,0);-ms-transform:matrix(0.175891,-0.001759,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175891,-0.001759,0.002500,0.249988,0,0);}
.m2a_c00091{transform:matrix(0.176606,-0.001766,0.002500,0.249988,0,0);-ms-transform:matrix(0.176606,-0.001766,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176606,-0.001766,0.002500,0.249988,0,0);}
.m9_c00091{transform:matrix(0.176701,-0.001767,0.002500,0.249988,0,0);-ms-transform:matrix(0.176701,-0.001767,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176701,-0.001767,0.002500,0.249988,0,0);}
.mcb_c00091{transform:matrix(0.176861,-0.001769,0.002500,0.249988,0,0);-ms-transform:matrix(0.176861,-0.001769,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176861,-0.001769,0.002500,0.249988,0,0);}
.m61_c00091{transform:matrix(0.177156,-0.001772,0.002500,0.249988,0,0);-ms-transform:matrix(0.177156,-0.001772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177156,-0.001772,0.002500,0.249988,0,0);}
.m1e_c00091{transform:matrix(0.177506,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177506,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177506,-0.001775,0.002500,0.249988,0,0);}
.m6a_c00091{transform:matrix(0.177946,-0.001779,0.002500,0.249988,0,0);-ms-transform:matrix(0.177946,-0.001779,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177946,-0.001779,0.002500,0.249988,0,0);}
.mf1_c00091{transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{transform:matrix(0.178396,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178396,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178396,-0.001784,0.002500,0.249988,0,0);}
.mc6_c00091{transform:matrix(0.178611,-0.001786,0.002500,0.249988,0,0);-ms-transform:matrix(0.178611,-0.001786,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178611,-0.001786,0.002500,0.249988,0,0);}
.m36_c00091{transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);}
.mad_c00091{transform:matrix(0.179056,-0.001791,0.002500,0.249988,0,0);-ms-transform:matrix(0.179056,-0.001791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179056,-0.001791,0.002500,0.249988,0,0);}
.mab_c00091{transform:matrix(0.179466,-0.001795,0.002500,0.249988,0,0);-ms-transform:matrix(0.179466,-0.001795,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179466,-0.001795,0.002500,0.249988,0,0);}
.m83_c00091{transform:matrix(0.179816,-0.001798,0.002500,0.249988,0,0);-ms-transform:matrix(0.179816,-0.001798,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179816,-0.001798,0.002500,0.249988,0,0);}
.m59_c00091{transform:matrix(0.180051,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180051,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180051,-0.001801,0.002500,0.249988,0,0);}
.mf7_c00091{transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.180891,-0.001809,0.002500,0.249988,0,0);-ms-transform:matrix(0.180891,-0.001809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180891,-0.001809,0.002500,0.249988,0,0);}
.mbc_c00091{transform:matrix(0.180976,-0.001810,0.002500,0.249988,0,0);-ms-transform:matrix(0.180976,-0.001810,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180976,-0.001810,0.002500,0.249988,0,0);}
.m2f_c00091{transform:matrix(0.181126,-0.001811,0.002500,0.249988,0,0);-ms-transform:matrix(0.181126,-0.001811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181126,-0.001811,0.002500,0.249988,0,0);}
.me2_c00091{transform:matrix(0.181241,-0.001812,0.002500,0.249988,0,0);-ms-transform:matrix(0.181241,-0.001812,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181241,-0.001812,0.002500,0.249988,0,0);}
.m45_c00091{transform:matrix(0.181411,-0.001814,0.002500,0.249988,0,0);-ms-transform:matrix(0.181411,-0.001814,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181411,-0.001814,0.002500,0.249988,0,0);}
.m8e_c00091{transform:matrix(0.181526,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181526,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181526,-0.001815,0.002500,0.249988,0,0);}
.m7_c00091{transform:matrix(0.181791,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181791,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181791,-0.001818,0.002500,0.249988,0,0);}
.m38_c00091{transform:matrix(0.182116,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182116,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182116,-0.001821,0.002500,0.249988,0,0);}
.m32_c00091{transform:matrix(0.182266,-0.001823,0.002500,0.249988,0,0);-ms-transform:matrix(0.182266,-0.001823,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182266,-0.001823,0.002500,0.249988,0,0);}
.m7f_c00091{transform:matrix(0.182711,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182711,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182711,-0.001827,0.002500,0.249988,0,0);}
.m7d_c00091{transform:matrix(0.182831,-0.001828,0.002500,0.249988,0,0);-ms-transform:matrix(0.182831,-0.001828,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182831,-0.001828,0.002500,0.249988,0,0);}
.me0_c00091{transform:matrix(0.182856,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182856,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182856,-0.001829,0.002500,0.249988,0,0);}
.mc4_c00091{transform:matrix(0.182931,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182931,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182931,-0.001829,0.002500,0.249988,0,0);}
.m19_c00091{transform:matrix(0.183076,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183076,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183076,-0.001831,0.002500,0.249988,0,0);}
.m99_c00091{transform:matrix(0.183321,-0.001833,0.002500,0.249988,0,0);-ms-transform:matrix(0.183321,-0.001833,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183321,-0.001833,0.002500,0.249988,0,0);}
.m91_c00091{transform:matrix(0.183406,-0.001834,0.002500,0.249988,0,0);-ms-transform:matrix(0.183406,-0.001834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183406,-0.001834,0.002500,0.249988,0,0);}
.m48_c00091{transform:matrix(0.183726,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183726,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183726,-0.001837,0.002500,0.249988,0,0);}
.m70_c00091{transform:matrix(0.183811,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183811,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183811,-0.001838,0.002500,0.249988,0,0);}
.mee_c00091{transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183970,0.000000,0.000000,0.250000,0,0);}
.mb4_c00091{transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);-ms-transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);}
.mcd_c00091{transform:matrix(0.184356,-0.001844,0.002500,0.249988,0,0);-ms-transform:matrix(0.184356,-0.001844,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184356,-0.001844,0.002500,0.249988,0,0);}
.m8c_c00091{transform:matrix(0.184701,-0.001847,0.002500,0.249988,0,0);-ms-transform:matrix(0.184701,-0.001847,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184701,-0.001847,0.002500,0.249988,0,0);}
.m98_c00091{transform:matrix(0.185421,-0.001854,0.002500,0.249988,0,0);-ms-transform:matrix(0.185421,-0.001854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185421,-0.001854,0.002500,0.249988,0,0);}
.m29_c00091{transform:matrix(0.185431,-0.001854,0.002500,0.249988,0,0);-ms-transform:matrix(0.185431,-0.001854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185431,-0.001854,0.002500,0.249988,0,0);}
.m31_c00091{transform:matrix(0.186046,-0.001860,0.002500,0.249988,0,0);-ms-transform:matrix(0.186046,-0.001860,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186046,-0.001860,0.002500,0.249988,0,0);}
.md2_c00091{transform:matrix(0.186121,-0.001861,0.002500,0.249988,0,0);-ms-transform:matrix(0.186121,-0.001861,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186121,-0.001861,0.002500,0.249988,0,0);}
.m5a_c00091{transform:matrix(0.186291,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186291,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186291,-0.001863,0.002500,0.249988,0,0);}
.me4_c00091{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.186561,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186561,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186561,-0.001866,0.002500,0.249988,0,0);}
.m58_c00091{transform:matrix(0.186686,-0.001867,0.002500,0.249988,0,0);-ms-transform:matrix(0.186686,-0.001867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186686,-0.001867,0.002500,0.249988,0,0);}
.m21_c00091{transform:matrix(0.186771,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186771,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186771,-0.001868,0.002500,0.249988,0,0);}
.m7a_c00091{transform:matrix(0.186946,-0.001869,0.002500,0.249988,0,0);-ms-transform:matrix(0.186946,-0.001869,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186946,-0.001869,0.002500,0.249988,0,0);}
.m7c_c00091{transform:matrix(0.187316,-0.001873,0.002500,0.249988,0,0);-ms-transform:matrix(0.187316,-0.001873,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187316,-0.001873,0.002500,0.249988,0,0);}
.mb5_c00091{transform:matrix(0.187336,-0.001873,0.002500,0.249988,0,0);-ms-transform:matrix(0.187336,-0.001873,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187336,-0.001873,0.002500,0.249988,0,0);}
.mdd_c00091{transform:matrix(0.187511,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187511,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187511,-0.001875,0.002500,0.249988,0,0);}
.m60_c00091{transform:matrix(0.188271,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188271,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188271,-0.001883,0.002500,0.249988,0,0);}
.md_c00091{transform:matrix(0.188346,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188346,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188346,-0.001883,0.002500,0.249988,0,0);}
.m9f_c00091{transform:matrix(0.188436,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188436,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188436,-0.001884,0.002500,0.249988,0,0);}
.m92_c00091{transform:matrix(0.188461,-0.001885,0.002500,0.249988,0,0);-ms-transform:matrix(0.188461,-0.001885,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188461,-0.001885,0.002500,0.249988,0,0);}
.meb_c00091{transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.189096,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189096,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189096,-0.001891,0.002500,0.249988,0,0);}
.m44_c00091{transform:matrix(0.189391,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189391,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189391,-0.001894,0.002500,0.249988,0,0);}
.m27_c00091{transform:matrix(0.189756,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189756,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189756,-0.001898,0.002500,0.249988,0,0);}
.mc5_c00091{transform:matrix(0.189846,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189846,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189846,-0.001898,0.002500,0.249988,0,0);}
.m3a_c00091{transform:matrix(0.189991,-0.001900,0.002500,0.249988,0,0);-ms-transform:matrix(0.189991,-0.001900,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189991,-0.001900,0.002500,0.249988,0,0);}
.md3_c00091{transform:matrix(0.190070,-0.001901,0.002500,0.249988,0,0);-ms-transform:matrix(0.190070,-0.001901,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190070,-0.001901,0.002500,0.249988,0,0);}
.m15_c00091{transform:matrix(0.190145,-0.001901,0.002500,0.249988,0,0);-ms-transform:matrix(0.190145,-0.001901,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190145,-0.001901,0.002500,0.249988,0,0);}
.mb1_c00091{transform:matrix(0.190330,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190330,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190330,-0.001903,0.002500,0.249988,0,0);}
.ma4_c00091{transform:matrix(0.190440,-0.001904,0.002500,0.249988,0,0);-ms-transform:matrix(0.190440,-0.001904,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190440,-0.001904,0.002500,0.249988,0,0);}
.m8_c00091{transform:matrix(0.190585,-0.001906,0.002500,0.249988,0,0);-ms-transform:matrix(0.190585,-0.001906,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190585,-0.001906,0.002500,0.249988,0,0);}
.mf6_c00091{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.ma7_c00091{transform:matrix(0.190990,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190990,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190990,-0.001910,0.002500,0.249988,0,0);}
.mb0_c00091{transform:matrix(0.191655,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191655,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191655,-0.001917,0.002500,0.249988,0,0);}
.m4_c00091{transform:matrix(0.191675,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191675,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191675,-0.001917,0.002500,0.249988,0,0);}
.m2e_c00091{transform:matrix(0.192055,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192055,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192055,-0.001921,0.002500,0.249988,0,0);}
.mef_c00091{transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);}
.mb3_c00091{transform:matrix(0.192280,-0.001923,0.002500,0.249988,0,0);-ms-transform:matrix(0.192280,-0.001923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192280,-0.001923,0.002500,0.249988,0,0);}
.m3c_c00091{transform:matrix(0.192560,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192560,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192560,-0.001926,0.002500,0.249988,0,0);}
.ma5_c00091{transform:matrix(0.192785,-0.001928,0.002500,0.249988,0,0);-ms-transform:matrix(0.192785,-0.001928,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192785,-0.001928,0.002500,0.249988,0,0);}
.m4d_c00091{transform:matrix(0.192945,-0.001929,0.002500,0.249988,0,0);-ms-transform:matrix(0.192945,-0.001929,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192945,-0.001929,0.002500,0.249988,0,0);}
.mb8_c00091{transform:matrix(0.193205,-0.001932,0.002500,0.249988,0,0);-ms-transform:matrix(0.193205,-0.001932,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193205,-0.001932,0.002500,0.249988,0,0);}
.md4_c00091{transform:matrix(0.193790,-0.001938,0.002500,0.249988,0,0);-ms-transform:matrix(0.193790,-0.001938,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193790,-0.001938,0.002500,0.249988,0,0);}
.m1f_c00091{transform:matrix(0.194040,-0.001940,0.002500,0.249988,0,0);-ms-transform:matrix(0.194040,-0.001940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194040,-0.001940,0.002500,0.249988,0,0);}
.m76_c00091{transform:matrix(0.194660,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194660,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194660,-0.001947,0.002500,0.249988,0,0);}
.m4f_c00091{transform:matrix(0.195105,-0.001951,0.002500,0.249988,0,0);-ms-transform:matrix(0.195105,-0.001951,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195105,-0.001951,0.002500,0.249988,0,0);}
.mba_c00091{transform:matrix(0.195350,-0.001954,0.002500,0.249988,0,0);-ms-transform:matrix(0.195350,-0.001954,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195350,-0.001954,0.002500,0.249988,0,0);}
.mcc_c00091{transform:matrix(0.195700,-0.001957,0.002500,0.249988,0,0);-ms-transform:matrix(0.195700,-0.001957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195700,-0.001957,0.002500,0.249988,0,0);}
.m89_c00091{transform:matrix(0.196100,-0.001961,0.002500,0.249988,0,0);-ms-transform:matrix(0.196100,-0.001961,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196100,-0.001961,0.002500,0.249988,0,0);}
.me8_c00091{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{transform:matrix(0.197260,-0.001973,0.002500,0.249988,0,0);-ms-transform:matrix(0.197260,-0.001973,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197260,-0.001973,0.002500,0.249988,0,0);}
.m66_c00091{transform:matrix(0.197415,-0.001974,0.002500,0.249988,0,0);-ms-transform:matrix(0.197415,-0.001974,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197415,-0.001974,0.002500,0.249988,0,0);}
.mdb_c00091{transform:matrix(0.197765,-0.001978,0.002500,0.249988,0,0);-ms-transform:matrix(0.197765,-0.001978,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197765,-0.001978,0.002500,0.249988,0,0);}
.m10_c00091{transform:matrix(0.197770,-0.001978,0.002500,0.249988,0,0);-ms-transform:matrix(0.197770,-0.001978,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197770,-0.001978,0.002500,0.249988,0,0);}
.m13_c00091{transform:matrix(0.198060,-0.001981,0.002500,0.249988,0,0);-ms-transform:matrix(0.198060,-0.001981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198060,-0.001981,0.002500,0.249988,0,0);}
.m26_c00091{transform:matrix(0.198265,-0.001983,0.002500,0.249988,0,0);-ms-transform:matrix(0.198265,-0.001983,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198265,-0.001983,0.002500,0.249988,0,0);}
.mf0_c00091{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m6b_c00091{transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);}
.m30_c00091{transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);-ms-transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);}
.m24_c00091{transform:matrix(0.200160,-0.002002,0.002500,0.249988,0,0);-ms-transform:matrix(0.200160,-0.002002,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200160,-0.002002,0.002500,0.249988,0,0);}
.m1a_c00091{transform:matrix(0.200255,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200255,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200255,-0.002003,0.002500,0.249988,0,0);}
.md0_c00091{transform:matrix(0.200740,-0.002007,0.002500,0.249988,0,0);-ms-transform:matrix(0.200740,-0.002007,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200740,-0.002007,0.002500,0.249988,0,0);}
.md9_c00091{transform:matrix(0.201090,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201090,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201090,-0.002011,0.002500,0.249988,0,0);}
.m16_c00091{transform:matrix(0.201180,-0.002012,0.002500,0.249988,0,0);-ms-transform:matrix(0.201180,-0.002012,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201180,-0.002012,0.002500,0.249988,0,0);}
.m52_c00091{transform:matrix(0.201510,-0.002015,0.002500,0.249988,0,0);-ms-transform:matrix(0.201510,-0.002015,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201510,-0.002015,0.002500,0.249988,0,0);}
.m0_c00091{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{transform:matrix(0.201865,-0.002019,0.002500,0.249988,0,0);-ms-transform:matrix(0.201865,-0.002019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201865,-0.002019,0.002500,0.249988,0,0);}
.mc9_c00091{transform:matrix(0.201950,-0.002019,0.002500,0.249988,0,0);-ms-transform:matrix(0.201950,-0.002019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201950,-0.002019,0.002500,0.249988,0,0);}
.m12_c00091{transform:matrix(0.203575,-0.002036,0.002500,0.249988,0,0);-ms-transform:matrix(0.203575,-0.002036,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203575,-0.002036,0.002500,0.249988,0,0);}
.me7_c00091{transform:matrix(0.204105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204105,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{transform:matrix(0.204210,-0.002042,0.002500,0.249988,0,0);-ms-transform:matrix(0.204210,-0.002042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204210,-0.002042,0.002500,0.249988,0,0);}
.mb7_c00091{transform:matrix(0.204555,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204555,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204555,-0.002046,0.002500,0.249988,0,0);}
.mca_c00091{transform:matrix(0.205140,-0.002051,0.002500,0.249988,0,0);-ms-transform:matrix(0.205140,-0.002051,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205140,-0.002051,0.002500,0.249988,0,0);}
.ma_c00091{transform:matrix(0.205835,-0.002058,0.002500,0.249988,0,0);-ms-transform:matrix(0.205835,-0.002058,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205835,-0.002058,0.002500,0.249988,0,0);}
.m3d_c00091{transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);}
.mdf_c00091{transform:matrix(0.206125,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206125,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206125,-0.002061,0.002500,0.249988,0,0);}
.m6d_c00091{transform:matrix(0.206245,-0.002062,0.002500,0.249988,0,0);-ms-transform:matrix(0.206245,-0.002062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206245,-0.002062,0.002500,0.249988,0,0);}
.ma0_c00091{transform:matrix(0.206415,-0.002064,0.002500,0.249988,0,0);-ms-transform:matrix(0.206415,-0.002064,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206415,-0.002064,0.002500,0.249988,0,0);}
.m5c_c00091{transform:matrix(0.206940,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206940,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206940,-0.002069,0.002500,0.249988,0,0);}
.ma3_c00091{transform:matrix(0.207120,-0.002071,0.002500,0.249988,0,0);-ms-transform:matrix(0.207120,-0.002071,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207120,-0.002071,0.002500,0.249988,0,0);}
.m20_c00091{transform:matrix(0.207145,-0.002071,0.002500,0.249988,0,0);-ms-transform:matrix(0.207145,-0.002071,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207145,-0.002071,0.002500,0.249988,0,0);}
.md7_c00091{transform:matrix(0.207415,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207415,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207415,-0.002074,0.002500,0.249988,0,0);}
.ma8_c00091{transform:matrix(0.207595,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207595,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207595,-0.002076,0.002500,0.249988,0,0);}
.m2d_c00091{transform:matrix(0.207600,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207600,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207600,-0.002076,0.002500,0.249988,0,0);}
.maa_c00091{transform:matrix(0.207750,-0.002077,0.002500,0.249988,0,0);-ms-transform:matrix(0.207750,-0.002077,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207750,-0.002077,0.002500,0.249988,0,0);}
.mce_c00091{transform:matrix(0.208450,-0.002084,0.002500,0.249988,0,0);-ms-transform:matrix(0.208450,-0.002084,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208450,-0.002084,0.002500,0.249988,0,0);}
.md6_c00091{transform:matrix(0.208455,-0.002085,0.002500,0.249988,0,0);-ms-transform:matrix(0.208455,-0.002085,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208455,-0.002085,0.002500,0.249988,0,0);}
.mec_c00091{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{transform:matrix(0.208565,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208565,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208565,-0.002086,0.002500,0.249988,0,0);}
.m84_c00091{transform:matrix(0.208570,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208570,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208570,-0.002086,0.002500,0.249988,0,0);}
.m72_c00091{transform:matrix(0.208625,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208625,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208625,-0.002086,0.002500,0.249988,0,0);}
.m4c_c00091{transform:matrix(0.209615,-0.002096,0.002500,0.249988,0,0);-ms-transform:matrix(0.209615,-0.002096,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209615,-0.002096,0.002500,0.249988,0,0);}
.m5f_c00091{transform:matrix(0.210069,-0.002101,0.002500,0.249988,0,0);-ms-transform:matrix(0.210069,-0.002101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210069,-0.002101,0.002500,0.249988,0,0);}
.mb2_c00091{transform:matrix(0.210964,-0.002110,0.002500,0.249988,0,0);-ms-transform:matrix(0.210964,-0.002110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210964,-0.002110,0.002500,0.249988,0,0);}
.m86_c00091{transform:matrix(0.210974,-0.002110,0.002500,0.249988,0,0);-ms-transform:matrix(0.210974,-0.002110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210974,-0.002110,0.002500,0.249988,0,0);}
.m11_c00091{transform:matrix(0.211144,-0.002111,0.002500,0.249988,0,0);-ms-transform:matrix(0.211144,-0.002111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211144,-0.002111,0.002500,0.249988,0,0);}
.m9d_c00091{transform:matrix(0.212069,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212069,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212069,-0.002121,0.002500,0.249988,0,0);}
.m43_c00091{transform:matrix(0.212169,-0.002122,0.002500,0.249988,0,0);-ms-transform:matrix(0.212169,-0.002122,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212169,-0.002122,0.002500,0.249988,0,0);}
.m9e_c00091{transform:matrix(0.212594,-0.002126,0.002500,0.249988,0,0);-ms-transform:matrix(0.212594,-0.002126,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212594,-0.002126,0.002500,0.249988,0,0);}
.m4b_c00091{transform:matrix(0.213309,-0.002133,0.002500,0.249988,0,0);-ms-transform:matrix(0.213309,-0.002133,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213309,-0.002133,0.002500,0.249988,0,0);}
.m5b_c00091{transform:matrix(0.214224,-0.002142,0.002500,0.249988,0,0);-ms-transform:matrix(0.214224,-0.002142,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214224,-0.002142,0.002500,0.249988,0,0);}
.m53_c00091{transform:matrix(0.214754,-0.002148,0.002500,0.249988,0,0);-ms-transform:matrix(0.214754,-0.002148,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214754,-0.002148,0.002500,0.249988,0,0);}
.me5_c00091{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{transform:matrix(0.215699,-0.002157,0.002500,0.249988,0,0);-ms-transform:matrix(0.215699,-0.002157,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215699,-0.002157,0.002500,0.249988,0,0);}
.mac_c00091{transform:matrix(0.216379,-0.002164,0.002500,0.249988,0,0);-ms-transform:matrix(0.216379,-0.002164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216379,-0.002164,0.002500,0.249988,0,0);}
.m63_c00091{transform:matrix(0.216694,-0.002167,0.002500,0.249988,0,0);-ms-transform:matrix(0.216694,-0.002167,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216694,-0.002167,0.002500,0.249988,0,0);}
.m9a_c00091{transform:matrix(0.216729,-0.002167,0.002500,0.249988,0,0);-ms-transform:matrix(0.216729,-0.002167,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216729,-0.002167,0.002500,0.249988,0,0);}
.m64_c00091{transform:matrix(0.216874,-0.002169,0.002500,0.249988,0,0);-ms-transform:matrix(0.216874,-0.002169,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216874,-0.002169,0.002500,0.249988,0,0);}
.m82_c00091{transform:matrix(0.217729,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217729,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217729,-0.002177,0.002500,0.249988,0,0);}
.mea_c00091{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m62_c00091{transform:matrix(0.218049,-0.002180,0.002500,0.249988,0,0);-ms-transform:matrix(0.218049,-0.002180,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218049,-0.002180,0.002500,0.249988,0,0);}
.m75_c00091{transform:matrix(0.218349,-0.002183,0.002500,0.249988,0,0);-ms-transform:matrix(0.218349,-0.002183,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218349,-0.002183,0.002500,0.249988,0,0);}
.m6e_c00091{transform:matrix(0.219209,-0.002192,0.002500,0.249988,0,0);-ms-transform:matrix(0.219209,-0.002192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219209,-0.002192,0.002500,0.249988,0,0);}
.m50_c00091{transform:matrix(0.219349,-0.002193,0.002500,0.249988,0,0);-ms-transform:matrix(0.219349,-0.002193,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219349,-0.002193,0.002500,0.249988,0,0);}
.m28_c00091{transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);}
.mc7_c00091{transform:matrix(0.220589,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220589,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220589,-0.002206,0.002500,0.249988,0,0);}
.mc2_c00091{transform:matrix(0.220639,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220639,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220639,-0.002206,0.002500,0.249988,0,0);}
.m73_c00091{transform:matrix(0.221109,-0.002211,0.002500,0.249988,0,0);-ms-transform:matrix(0.221109,-0.002211,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221109,-0.002211,0.002500,0.249988,0,0);}
.m3f_c00091{transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);-ms-transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);}
.m78_c00091{transform:matrix(0.222039,-0.002220,0.002500,0.249988,0,0);-ms-transform:matrix(0.222039,-0.002220,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222039,-0.002220,0.002500,0.249988,0,0);}
.mb6_c00091{transform:matrix(0.223639,-0.002236,0.002500,0.249988,0,0);-ms-transform:matrix(0.223639,-0.002236,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223639,-0.002236,0.002500,0.249988,0,0);}
.m9b_c00091{transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);-ms-transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);}
.m23_c00091{transform:matrix(0.224579,-0.002246,0.002500,0.249988,0,0);-ms-transform:matrix(0.224579,-0.002246,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224579,-0.002246,0.002500,0.249988,0,0);}
.m39_c00091{transform:matrix(0.226019,-0.002260,0.002500,0.249988,0,0);-ms-transform:matrix(0.226019,-0.002260,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226019,-0.002260,0.002500,0.249988,0,0);}
.ma6_c00091{transform:matrix(0.226094,-0.002261,0.002500,0.249988,0,0);-ms-transform:matrix(0.226094,-0.002261,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226094,-0.002261,0.002500,0.249988,0,0);}
.med_c00091{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);-ms-transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);}
.m55_c00091{transform:matrix(0.227474,-0.002275,0.002500,0.249988,0,0);-ms-transform:matrix(0.227474,-0.002275,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227474,-0.002275,0.002500,0.249988,0,0);}
.m18_c00091{transform:matrix(0.228419,-0.002284,0.002500,0.249988,0,0);-ms-transform:matrix(0.228419,-0.002284,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228419,-0.002284,0.002500,0.249988,0,0);}
.m54_c00091{transform:matrix(0.231073,-0.002311,0.002500,0.249988,0,0);-ms-transform:matrix(0.231073,-0.002311,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231073,-0.002311,0.002500,0.249988,0,0);}
.m6c_c00091{transform:matrix(0.233048,-0.002330,0.002500,0.249988,0,0);-ms-transform:matrix(0.233048,-0.002330,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233048,-0.002330,0.002500,0.249988,0,0);}
.m3e_c00091{transform:matrix(0.233653,-0.002337,0.002500,0.249988,0,0);-ms-transform:matrix(0.233653,-0.002337,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233653,-0.002337,0.002500,0.249988,0,0);}
.m4e_c00091{transform:matrix(0.235253,-0.002353,0.002500,0.249988,0,0);-ms-transform:matrix(0.235253,-0.002353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235253,-0.002353,0.002500,0.249988,0,0);}
.ma1_c00091{transform:matrix(0.235808,-0.002358,0.002500,0.249988,0,0);-ms-transform:matrix(0.235808,-0.002358,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235808,-0.002358,0.002500,0.249988,0,0);}
.m56_c00091{transform:matrix(0.236463,-0.002365,0.002500,0.249988,0,0);-ms-transform:matrix(0.236463,-0.002365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236463,-0.002365,0.002500,0.249988,0,0);}
.m74_c00091{transform:matrix(0.237628,-0.002376,0.002500,0.249988,0,0);-ms-transform:matrix(0.237628,-0.002376,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237628,-0.002376,0.002500,0.249988,0,0);}
.m94_c00091{transform:matrix(0.241323,-0.002413,0.002500,0.249988,0,0);-ms-transform:matrix(0.241323,-0.002413,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241323,-0.002413,0.002500,0.249988,0,0);}
.m41_c00091{transform:matrix(0.247778,-0.002478,0.002500,0.249988,0,0);-ms-transform:matrix(0.247778,-0.002478,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247778,-0.002478,0.002500,0.249988,0,0);}
.m4a_c00091{transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);-ms-transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);}
.m3b_c00091{transform:matrix(0.250332,-0.002503,0.002500,0.249988,0,0);-ms-transform:matrix(0.250332,-0.002503,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250332,-0.002503,0.002500,0.249988,0,0);}
.mc0_c00091{transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);-ms-transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);}
.m79_c00091{transform:matrix(0.253052,-0.002531,0.002500,0.249988,0,0);-ms-transform:matrix(0.253052,-0.002531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253052,-0.002531,0.002500,0.249988,0,0);}
.m49_c00091{transform:matrix(0.253097,-0.002531,0.002500,0.249988,0,0);-ms-transform:matrix(0.253097,-0.002531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253097,-0.002531,0.002500,0.249988,0,0);}
.mae_c00091{transform:matrix(0.253937,-0.002539,0.002500,0.249988,0,0);-ms-transform:matrix(0.253937,-0.002539,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253937,-0.002539,0.002500,0.249988,0,0);}
.m93_c00091{transform:matrix(0.257407,-0.002574,0.002500,0.249988,0,0);-ms-transform:matrix(0.257407,-0.002574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257407,-0.002574,0.002500,0.249988,0,0);}
.maf_c00091{transform:matrix(0.258502,-0.002585,0.002500,0.249988,0,0);-ms-transform:matrix(0.258502,-0.002585,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258502,-0.002585,0.002500,0.249988,0,0);}
.m47_c00091{transform:matrix(0.259097,-0.002591,0.002500,0.249988,0,0);-ms-transform:matrix(0.259097,-0.002591,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259097,-0.002591,0.002500,0.249988,0,0);}
.md1_c00091{transform:matrix(0.271481,-0.002715,0.002500,0.249988,0,0);-ms-transform:matrix(0.271481,-0.002715,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271481,-0.002715,0.002500,0.249988,0,0);}
.mf_c00091{transform:matrix(0.273991,-0.002740,0.002500,0.249988,0,0);-ms-transform:matrix(0.273991,-0.002740,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273991,-0.002740,0.002500,0.249988,0,0);}
.me_c00091{transform:matrix(0.280276,-0.002803,0.002500,0.249988,0,0);-ms-transform:matrix(0.280276,-0.002803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.280276,-0.002803,0.002500,0.249988,0,0);}
.m5_c00091{transform:matrix(0.296805,-0.002968,0.002500,0.249988,0,0);-ms-transform:matrix(0.296805,-0.002968,0.002500,0.249988,0,0);-webkit-transform:matrix(0.296805,-0.002968,0.002500,0.249988,0,0);}
.m5d_c00091{transform:matrix(0.304065,-0.003041,0.002500,0.249988,0,0);-ms-transform:matrix(0.304065,-0.003041,0.002500,0.249988,0,0);-webkit-transform:matrix(0.304065,-0.003041,0.002500,0.249988,0,0);}
.m5e_c00091{transform:matrix(0.367282,-0.003673,0.002500,0.249988,0,0);-ms-transform:matrix(0.367282,-0.003673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.367282,-0.003673,0.002500,0.249988,0,0);}
.mf9_c00091{transform:matrix(2.941325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.941325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.941325,0.000000,0.000000,0.250000,0,0);}
.mf8_c00091{transform:matrix(6.221180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.221180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.221180,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
.fc0_c00091{color:transparent;}
.fs11_c00091{font-size:22.050000px;}
.fs6_c00091{font-size:57.752887px;}
.fs8_c00091{font-size:58.802940px;}
.fsf_c00091{font-size:59.850000px;}
.fsc_c00091{font-size:59.852992px;}
.fs7_c00091{font-size:60.903045px;}
.fs2_c00091{font-size:61.953097px;}
.fs0_c00091{font-size:63.000000px;}
.fs3_c00091{font-size:63.003150px;}
.fsd_c00091{font-size:64.053202px;}
.fse_c00091{font-size:67.200000px;}
.fs5_c00091{font-size:68.253412px;}
.fsb_c00091{font-size:69.303465px;}
.fsa_c00091{font-size:70.353517px;}
.fs9_c00091{font-size:71.403570px;}
.fs4_c00091{font-size:72.453622px;}
.fs1_c00091{font-size:73.503675px;}
.fs10_c00091{font-size:74.550000px;}
.y0_c00091{bottom:0.000000px;}
.ye6_c00091{bottom:22.477500px;}
.ye5_c00091{bottom:40.903500px;}
.ye4_c00091{bottom:58.062000px;}
.ye3_c00091{bottom:75.363705px;}
.ye2_c00091{bottom:75.364020px;}
.ye1_c00091{bottom:75.364335px;}
.ye0_c00091{bottom:75.364365px;}
.ydf_c00091{bottom:75.364980px;}
.yde_c00091{bottom:75.365595px;}
.ydc_c00091{bottom:75.365940px;}
.ydd_c00091{bottom:75.366210px;}
.ydb_c00091{bottom:75.366555px;}
.yda_c00091{bottom:92.994090px;}
.yd9_c00091{bottom:92.994705px;}
.yd8_c00091{bottom:92.995020px;}
.yd7_c00091{bottom:92.995335px;}
.yd6_c00091{bottom:92.995350px;}
.yd4_c00091{bottom:92.995410px;}
.yd3_c00091{bottom:92.995725px;}
.yd5_c00091{bottom:92.995980px;}
.ycc_c00091{bottom:109.516575px;}
.yd0_c00091{bottom:109.516770px;}
.ycf_c00091{bottom:109.516800px;}
.ycb_c00091{bottom:109.516890px;}
.ycd_c00091{bottom:109.517160px;}
.yd1_c00091{bottom:109.517355px;}
.yce_c00091{bottom:109.517430px;}
.yd2_c00091{bottom:109.517625px;}
.yc9_c00091{bottom:128.415975px;}
.yc8_c00091{bottom:128.415990px;}
.yc0_c00091{bottom:128.416095px;}
.yc7_c00091{bottom:128.416305px;}
.yc3_c00091{bottom:128.416365px;}
.yc2_c00091{bottom:128.416380px;}
.yca_c00091{bottom:128.416560px;}
.yc6_c00091{bottom:128.416620px;}
.yc1_c00091{bottom:128.416680px;}
.yc5_c00091{bottom:128.416935px;}
.yc4_c00091{bottom:128.416950px;}
.ybb_c00091{bottom:145.372845px;}
.ybc_c00091{bottom:145.373115px;}
.yba_c00091{bottom:145.373160px;}
.yb9_c00091{bottom:145.373505px;}
.ybd_c00091{bottom:145.373700px;}
.ybe_c00091{bottom:145.374285px;}
.ybf_c00091{bottom:145.374570px;}
.yb6_c00091{bottom:162.654870px;}
.yb2_c00091{bottom:162.654945px;}
.yb7_c00091{bottom:162.655140px;}
.yb5_c00091{bottom:162.655185px;}
.yb8_c00091{bottom:162.655395px;}
.yb4_c00091{bottom:162.655515px;}
.yb3_c00091{bottom:162.655530px;}
.yaa_c00091{bottom:180.849660px;}
.yb0_c00091{bottom:180.850140px;}
.yae_c00091{bottom:180.850185px;}
.yad_c00091{bottom:180.850200px;}
.yac_c00091{bottom:180.850230px;}
.yab_c00091{bottom:180.850245px;}
.yb1_c00091{bottom:180.850425px;}
.yaf_c00091{bottom:180.850770px;}
.ya6_c00091{bottom:198.734955px;}
.ya5_c00091{bottom:198.734970px;}
.ya7_c00091{bottom:198.735225px;}
.ya4_c00091{bottom:198.735600px;}
.ya2_c00091{bottom:198.735645px;}
.ya8_c00091{bottom:198.735825px;}
.ya9_c00091{bottom:198.736110px;}
.ya3_c00091{bottom:198.736215px;}
.y9b_c00091{bottom:216.048870px;}
.ya1_c00091{bottom:216.049035px;}
.ya0_c00091{bottom:216.049050px;}
.y9f_c00091{bottom:216.049365px;}
.y9e_c00091{bottom:216.049395px;}
.y9c_c00091{bottom:216.049440px;}
.y9a_c00091{bottom:216.049485px;}
.y9d_c00091{bottom:216.049710px;}
.y93_c00091{bottom:233.147295px;}
.y92_c00091{bottom:233.147325px;}
.y99_c00091{bottom:233.147460px;}
.y96_c00091{bottom:233.147535px;}
.y95_c00091{bottom:233.147550px;}
.y97_c00091{bottom:233.147790px;}
.y94_c00091{bottom:233.147880px;}
.y98_c00091{bottom:233.148075px;}
.y8b_c00091{bottom:251.202540px;}
.y8c_c00091{bottom:251.202810px;}
.y8d_c00091{bottom:251.203395px;}
.y8e_c00091{bottom:251.203965px;}
.y90_c00091{bottom:251.204235px;}
.y8f_c00091{bottom:251.204550px;}
.y91_c00091{bottom:251.204805px;}
.y89_c00091{bottom:268.396245px;}
.y87_c00091{bottom:268.396305px;}
.y86_c00091{bottom:268.396320px;}
.y8a_c00091{bottom:268.396530px;}
.y88_c00091{bottom:268.396590px;}
.y85_c00091{bottom:268.396950px;}
.y84_c00091{bottom:268.397265px;}
.y80_c00091{bottom:285.949545px;}
.y83_c00091{bottom:285.949785px;}
.y82_c00091{bottom:285.949800px;}
.y7d_c00091{bottom:285.949920px;}
.y81_c00091{bottom:285.950130px;}
.y7f_c00091{bottom:285.950175px;}
.y7e_c00091{bottom:285.950490px;}
.y76_c00091{bottom:303.465960px;}
.y75_c00091{bottom:303.466275px;}
.y77_c00091{bottom:303.466530px;}
.y78_c00091{bottom:303.467115px;}
.y7a_c00091{bottom:303.467385px;}
.y79_c00091{bottom:303.467400px;}
.y7b_c00091{bottom:303.467655px;}
.y7c_c00091{bottom:303.468225px;}
.y72_c00091{bottom:320.661795px;}
.y71_c00091{bottom:320.662140px;}
.y6e_c00091{bottom:320.662200px;}
.y74_c00091{bottom:320.662365px;}
.y73_c00091{bottom:320.662380px;}
.y70_c00091{bottom:320.662470px;}
.y6f_c00091{bottom:320.662485px;}
.y6b_c00091{bottom:337.556220px;}
.y6d_c00091{bottom:337.556460px;}
.y6c_c00091{bottom:337.556490px;}
.y6a_c00091{bottom:337.556835px;}
.y69_c00091{bottom:337.557150px;}
.y68_c00091{bottom:337.557195px;}
.y60_c00091{bottom:355.612395px;}
.y64_c00091{bottom:355.612635px;}
.y61_c00091{bottom:355.612695px;}
.y66_c00091{bottom:355.612890px;}
.y5f_c00091{bottom:355.613010px;}
.y65_c00091{bottom:355.613220px;}
.y63_c00091{bottom:355.613250px;}
.y62_c00091{bottom:355.613280px;}
.y67_c00091{bottom:355.613460px;}
.ye7_c00091{bottom:372.330000px;}
.y58_c00091{bottom:373.316550px;}
.y56_c00091{bottom:373.316880px;}
.y5e_c00091{bottom:373.317045px;}
.y5c_c00091{bottom:373.317075px;}
.y5a_c00091{bottom:373.317105px;}
.y59_c00091{bottom:373.317135px;}
.y57_c00091{bottom:373.317150px;}
.y5d_c00091{bottom:373.317360px;}
.y5b_c00091{bottom:373.317390px;}
.y52_c00091{bottom:390.831360px;}
.y50_c00091{bottom:390.831420px;}
.y53_c00091{bottom:390.831945px;}
.y51_c00091{bottom:390.832005px;}
.y54_c00091{bottom:390.832530px;}
.y55_c00091{bottom:390.832800px;}
.y4f_c00091{bottom:408.230325px;}
.y4d_c00091{bottom:408.230355px;}
.y4e_c00091{bottom:408.230640px;}
.y4c_c00091{bottom:408.230685px;}
.y4a_c00091{bottom:408.230760px;}
.y4b_c00091{bottom:408.231030px;}
.y48_c00091{bottom:425.661795px;}
.y49_c00091{bottom:425.662365px;}
.y47_c00091{bottom:425.662425px;}
.y46_c00091{bottom:425.662740px;}
.y44_c00091{bottom:425.663085px;}
.y45_c00091{bottom:425.663355px;}
.y43_c00091{bottom:425.663400px;}
.y3d_c00091{bottom:443.093565px;}
.y3a_c00091{bottom:443.093640px;}
.y3f_c00091{bottom:443.093835px;}
.y3c_c00091{bottom:443.093895px;}
.y3e_c00091{bottom:443.094150px;}
.y3b_c00091{bottom:443.094210px;}
.y40_c00091{bottom:443.094405px;}
.y41_c00091{bottom:443.094705px;}
.y42_c00091{bottom:443.095290px;}
.y39_c00091{bottom:460.041315px;}
.y34_c00091{bottom:460.041390px;}
.y33_c00091{bottom:460.041420px;}
.y32_c00091{bottom:460.041435px;}
.y38_c00091{bottom:460.041630px;}
.y36_c00091{bottom:460.041660px;}
.y35_c00091{bottom:460.041675px;}
.y37_c00091{bottom:460.042245px;}
.y31_c00091{bottom:477.688170px;}
.y2d_c00091{bottom:477.688275px;}
.y2c_c00091{bottom:477.688290px;}
.y2e_c00091{bottom:477.688530px;}
.y2b_c00091{bottom:477.688605px;}
.y30_c00091{bottom:477.688785px;}
.y2f_c00091{bottom:477.688815px;}
.y2a_c00091{bottom:495.206625px;}
.y29_c00091{bottom:495.206655px;}
.y27_c00091{bottom:495.206715px;}
.y26_c00091{bottom:495.206730px;}
.y24_c00091{bottom:495.206760px;}
.y28_c00091{bottom:495.206985px;}
.y25_c00091{bottom:495.207345px;}
.y22_c00091{bottom:511.977705px;}
.y23_c00091{bottom:511.978005px;}
.y1e_c00091{bottom:511.978110px;}
.y21_c00091{bottom:511.978335px;}
.y20_c00091{bottom:511.978680px;}
.y1f_c00091{bottom:511.978695px;}
.y1d_c00091{bottom:511.978725px;}
.y1c_c00091{bottom:529.438530px;}
.y1b_c00091{bottom:529.439145px;}
.y1a_c00091{bottom:529.439175px;}
.y19_c00091{bottom:529.439505px;}
.y18_c00091{bottom:529.439835px;}
.y17_c00091{bottom:529.440165px;}
.y16_c00091{bottom:529.440480px;}
.y15_c00091{bottom:546.335625px;}
.ye_c00091{bottom:546.335775px;}
.yf_c00091{bottom:546.336045px;}
.y14_c00091{bottom:546.336255px;}
.y10_c00091{bottom:546.336330px;}
.y12_c00091{bottom:546.336585px;}
.y13_c00091{bottom:546.336870px;}
.y11_c00091{bottom:546.336915px;}
.y2_c00091{bottom:562.141500px;}
.y3_c00091{bottom:562.484460px;}
.y4_c00091{bottom:562.851750px;}
.y5_c00091{bottom:563.005530px;}
.y6_c00091{bottom:563.463450px;}
.y7_c00091{bottom:563.661645px;}
.y8_c00091{bottom:564.063975px;}
.y9_c00091{bottom:564.347400px;}
.ya_c00091{bottom:564.460845px;}
.yb_c00091{bottom:564.711480px;}
.yc_c00091{bottom:564.849600px;}
.yd_c00091{bottom:564.979305px;}
.y1_c00091{bottom:580.362000px;}
.h13_c00091{height:22.050000px;}
.h8_c00091{height:57.752887px;}
.ha_c00091{height:58.802940px;}
.h11_c00091{height:59.850000px;}
.he_c00091{height:59.852992px;}
.h9_c00091{height:60.903045px;}
.h4_c00091{height:61.953097px;}
.h2_c00091{height:63.000000px;}
.h5_c00091{height:63.003150px;}
.hf_c00091{height:64.053202px;}
.h10_c00091{height:67.200000px;}
.h7_c00091{height:68.253412px;}
.hd_c00091{height:69.303465px;}
.hc_c00091{height:70.353517px;}
.hb_c00091{height:71.403570px;}
.h6_c00091{height:72.453622px;}
.h3_c00091{height:73.503675px;}
.h12_c00091{height:74.550000px;}
.h0_c00091{height:624.450000px;}
.h1_c00091{height:624.750000px;}
.w0_c00091{width:371.790000px;}
.w1_c00091{width:372.000000px;}
.x0_c00091{left:0.000000px;}
.x77_c00091{left:38.340000px;}
.x6e_c00091{left:39.946185px;}
.x62_c00091{left:41.570520px;}
.x54_c00091{left:42.653775px;}
.x3c_c00091{left:44.007855px;}
.x2_c00091{left:46.032000px;}
.x78_c00091{left:56.430000px;}
.x6a_c00091{left:59.388150px;}
.x49_c00091{left:61.015995px;}
.x31_c00091{left:66.957240px;}
.x74_c00091{left:68.040000px;}
.x42_c00091{left:70.739055px;}
.x6b_c00091{left:73.159530px;}
.x1d_c00091{left:74.788650px;}
.x14_c00091{left:78.028680px;}
.x3_c00091{left:80.328000px;}
.x39_c00091{left:82.349055px;}
.x18_c00091{left:83.698350px;}
.x5d_c00091{left:86.123040px;}
.x22_c00091{left:88.559700px;}
.x55_c00091{left:91.255635px;}
.x4d_c00091{left:93.147345px;}
.x51_c00091{left:94.226895px;}
.x75_c00091{left:96.120000px;}
.x35_c00091{left:99.629310px;}
.x46_c00091{left:101.249070px;}
.x2c_c00091{left:103.949145px;}
.x63_c00091{left:108.534210px;}
.x5a_c00091{left:113.393925px;}
.xe_c00091{left:114.751410px;}
.x1e_c00091{left:115.831260px;}
.x4_c00091{left:117.057000px;}
.x19_c00091{left:118.260300px;}
.x2d_c00091{left:121.769430px;}
.x27_c00091{left:125.549850px;}
.x23_c00091{left:127.712115px;}
.x15_c00091{left:130.950975px;}
.x5_c00091{left:132.435000px;}
.x3d_c00091{left:134.192370px;}
.x4f_c00091{left:135.810135px;}
.x5b_c00091{left:136.884780px;}
.x72_c00091{left:138.230205px;}
.x1a_c00091{left:141.211095px;}
.x6c_c00091{left:145.522260px;}
.x28_c00091{left:152.281020px;}
.x47_c00091{left:154.171365px;}
.x4a_c00091{left:157.141095px;}
.xf_c00091{left:159.034335px;}
.x64_c00091{left:160.106370px;}
.x52_c00091{left:163.349295px;}
.x76_c00091{left:164.700000px;}
.x6f_c00091{left:166.312815px;}
.x2e_c00091{left:167.941050px;}
.x79_c00091{left:169.290000px;}
.x50_c00091{left:171.990750px;}
.x32_c00091{left:173.883435px;}
.x36_c00091{left:175.502400px;}
.x65_c00091{left:176.576520px;}
.x6_c00091{left:178.227000px;}
.x43_c00091{left:180.635535px;}
.x5e_c00091{left:181.978125px;}
.x4b_c00091{left:185.222400px;}
.x3a_c00091{left:186.845010px;}
.x3e_c00091{left:188.194770px;}
.x1_c00091{left:190.890000px;}
.x29_c00091{left:192.783570px;}
.x73_c00091{left:194.662140px;}
.x7_c00091{left:198.046500px;}
.x33_c00091{left:199.804530px;}
.x44_c00091{left:201.426120px;}
.x1f_c00091{left:207.365910px;}
.x24_c00091{left:208.445685px;}
.x5f_c00091{left:210.329460px;}
.x67_c00091{left:211.677330px;}
.x70_c00091{left:212.754465px;}
.x2a_c00091{left:215.194305px;}
.x3f_c00091{left:218.976345px;}
.x10_c00091{left:223.566285px;}
.x45_c00091{left:224.644485px;}
.x6d_c00091{left:230.036220px;}
.x1b_c00091{left:231.935670px;}
.x60_c00091{left:236.790600px;}
.x8_c00091{left:238.279500px;}
.x40_c00091{left:239.496900px;}
.x37_c00091{left:241.926045px;}
.x68_c00091{left:248.939550px;}
.x16_c00091{left:250.296915px;}
.x11_c00091{left:251.647590px;}
.x20_c00091{left:256.237800px;}
.x2b_c00091{left:258.937185px;}
.x71_c00091{left:264.056595px;}
.x9_c00091{left:266.622000px;}
.x34_c00091{left:269.198475px;}
.x57_c00091{left:271.351605px;}
.x4e_c00091{left:274.596495px;}
.x25_c00091{left:275.677905px;}
.x69_c00091{left:276.750825px;}
.xa_c00091{left:277.966500px;}
.x1c_c00091{left:283.777860px;}
.x12_c00091{left:287.289660px;}
.x53_c00091{left:289.445895px;}
.x5c_c00091{left:291.872775px;}
.x58_c00091{left:293.222295px;}
.x26_c00091{left:296.468490px;}
.x17_c00091{left:298.898775px;}
.x3b_c00091{left:300.250335px;}
.x38_c00091{left:301.328985px;}
.xb_c00091{left:303.030000px;}
.x48_c00091{left:305.108955px;}
.x2f_c00091{left:309.969240px;}
.x41_c00091{left:311.051055px;}
.x21_c00091{left:315.640740px;}
.xc_c00091{left:316.842000px;}
.x61_c00091{left:318.064230px;}
.x56_c00091{left:319.144920px;}
.x66_c00091{left:323.193675px;}
.xd_c00091{left:329.812500px;}
.x59_c00091{left:331.024575px;}
.x13_c00091{left:333.731310px;}
.x4c_c00091{left:335.619930px;}
.x30_c00091{left:340.480785px;}
.x7a_c00091{left:367.470000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fs11_c00091{font-size:19.600000pt;}
.fs6_c00091{font-size:51.335900pt;}
.fs8_c00091{font-size:52.269280pt;}
.fsf_c00091{font-size:53.200000pt;}
.fsc_c00091{font-size:53.202660pt;}
.fs7_c00091{font-size:54.136040pt;}
.fs2_c00091{font-size:55.069420pt;}
.fs0_c00091{font-size:56.000000pt;}
.fs3_c00091{font-size:56.002800pt;}
.fsd_c00091{font-size:56.936180pt;}
.fse_c00091{font-size:59.733333pt;}
.fs5_c00091{font-size:60.669700pt;}
.fsb_c00091{font-size:61.603080pt;}
.fsa_c00091{font-size:62.536460pt;}
.fs9_c00091{font-size:63.469840pt;}
.fs4_c00091{font-size:64.403220pt;}
.fs1_c00091{font-size:65.336600pt;}
.fs10_c00091{font-size:66.266667pt;}
.y0_c00091{bottom:0.000000pt;}
.ye6_c00091{bottom:19.980000pt;}
.ye5_c00091{bottom:36.358667pt;}
.ye4_c00091{bottom:51.610667pt;}
.ye3_c00091{bottom:66.989960pt;}
.ye2_c00091{bottom:66.990240pt;}
.ye1_c00091{bottom:66.990520pt;}
.ye0_c00091{bottom:66.990547pt;}
.ydf_c00091{bottom:66.991093pt;}
.yde_c00091{bottom:66.991640pt;}
.ydc_c00091{bottom:66.991947pt;}
.ydd_c00091{bottom:66.992187pt;}
.ydb_c00091{bottom:66.992493pt;}
.yda_c00091{bottom:82.661413pt;}
.yd9_c00091{bottom:82.661960pt;}
.yd8_c00091{bottom:82.662240pt;}
.yd7_c00091{bottom:82.662520pt;}
.yd6_c00091{bottom:82.662533pt;}
.yd4_c00091{bottom:82.662587pt;}
.yd3_c00091{bottom:82.662867pt;}
.yd5_c00091{bottom:82.663093pt;}
.ycc_c00091{bottom:97.348067pt;}
.yd0_c00091{bottom:97.348240pt;}
.ycf_c00091{bottom:97.348267pt;}
.ycb_c00091{bottom:97.348347pt;}
.ycd_c00091{bottom:97.348587pt;}
.yd1_c00091{bottom:97.348760pt;}
.yce_c00091{bottom:97.348827pt;}
.yd2_c00091{bottom:97.349000pt;}
.yc9_c00091{bottom:114.147533pt;}
.yc8_c00091{bottom:114.147547pt;}
.yc0_c00091{bottom:114.147640pt;}
.yc7_c00091{bottom:114.147827pt;}
.yc3_c00091{bottom:114.147880pt;}
.yc2_c00091{bottom:114.147893pt;}
.yca_c00091{bottom:114.148053pt;}
.yc6_c00091{bottom:114.148107pt;}
.yc1_c00091{bottom:114.148160pt;}
.yc5_c00091{bottom:114.148387pt;}
.yc4_c00091{bottom:114.148400pt;}
.ybb_c00091{bottom:129.220307pt;}
.ybc_c00091{bottom:129.220547pt;}
.yba_c00091{bottom:129.220587pt;}
.yb9_c00091{bottom:129.220893pt;}
.ybd_c00091{bottom:129.221067pt;}
.ybe_c00091{bottom:129.221587pt;}
.ybf_c00091{bottom:129.221840pt;}
.yb6_c00091{bottom:144.582107pt;}
.yb2_c00091{bottom:144.582173pt;}
.yb7_c00091{bottom:144.582347pt;}
.yb5_c00091{bottom:144.582387pt;}
.yb8_c00091{bottom:144.582573pt;}
.yb4_c00091{bottom:144.582680pt;}
.yb3_c00091{bottom:144.582693pt;}
.yaa_c00091{bottom:160.755253pt;}
.yb0_c00091{bottom:160.755680pt;}
.yae_c00091{bottom:160.755720pt;}
.yad_c00091{bottom:160.755733pt;}
.yac_c00091{bottom:160.755760pt;}
.yab_c00091{bottom:160.755773pt;}
.yb1_c00091{bottom:160.755933pt;}
.yaf_c00091{bottom:160.756240pt;}
.ya6_c00091{bottom:176.653293pt;}
.ya5_c00091{bottom:176.653307pt;}
.ya7_c00091{bottom:176.653533pt;}
.ya4_c00091{bottom:176.653867pt;}
.ya2_c00091{bottom:176.653907pt;}
.ya8_c00091{bottom:176.654067pt;}
.ya9_c00091{bottom:176.654320pt;}
.ya3_c00091{bottom:176.654413pt;}
.y9b_c00091{bottom:192.043440pt;}
.ya1_c00091{bottom:192.043587pt;}
.ya0_c00091{bottom:192.043600pt;}
.y9f_c00091{bottom:192.043880pt;}
.y9e_c00091{bottom:192.043907pt;}
.y9c_c00091{bottom:192.043947pt;}
.y9a_c00091{bottom:192.043987pt;}
.y9d_c00091{bottom:192.044187pt;}
.y93_c00091{bottom:207.242040pt;}
.y92_c00091{bottom:207.242067pt;}
.y99_c00091{bottom:207.242187pt;}
.y96_c00091{bottom:207.242253pt;}
.y95_c00091{bottom:207.242267pt;}
.y97_c00091{bottom:207.242480pt;}
.y94_c00091{bottom:207.242560pt;}
.y98_c00091{bottom:207.242733pt;}
.y8b_c00091{bottom:223.291147pt;}
.y8c_c00091{bottom:223.291387pt;}
.y8d_c00091{bottom:223.291907pt;}
.y8e_c00091{bottom:223.292413pt;}
.y90_c00091{bottom:223.292653pt;}
.y8f_c00091{bottom:223.292933pt;}
.y91_c00091{bottom:223.293160pt;}
.y89_c00091{bottom:238.574440pt;}
.y87_c00091{bottom:238.574493pt;}
.y86_c00091{bottom:238.574507pt;}
.y8a_c00091{bottom:238.574693pt;}
.y88_c00091{bottom:238.574747pt;}
.y85_c00091{bottom:238.575067pt;}
.y84_c00091{bottom:238.575347pt;}
.y80_c00091{bottom:254.177373pt;}
.y83_c00091{bottom:254.177587pt;}
.y82_c00091{bottom:254.177600pt;}
.y7d_c00091{bottom:254.177707pt;}
.y81_c00091{bottom:254.177893pt;}
.y7f_c00091{bottom:254.177933pt;}
.y7e_c00091{bottom:254.178213pt;}
.y76_c00091{bottom:269.747520pt;}
.y75_c00091{bottom:269.747800pt;}
.y77_c00091{bottom:269.748027pt;}
.y78_c00091{bottom:269.748547pt;}
.y7a_c00091{bottom:269.748787pt;}
.y79_c00091{bottom:269.748800pt;}
.y7b_c00091{bottom:269.749027pt;}
.y7c_c00091{bottom:269.749533pt;}
.y72_c00091{bottom:285.032707pt;}
.y71_c00091{bottom:285.033013pt;}
.y6e_c00091{bottom:285.033067pt;}
.y74_c00091{bottom:285.033213pt;}
.y73_c00091{bottom:285.033227pt;}
.y70_c00091{bottom:285.033307pt;}
.y6f_c00091{bottom:285.033320pt;}
.y6b_c00091{bottom:300.049973pt;}
.y6d_c00091{bottom:300.050187pt;}
.y6c_c00091{bottom:300.050213pt;}
.y6a_c00091{bottom:300.050520pt;}
.y69_c00091{bottom:300.050800pt;}
.y68_c00091{bottom:300.050840pt;}
.y60_c00091{bottom:316.099907pt;}
.y64_c00091{bottom:316.100120pt;}
.y61_c00091{bottom:316.100173pt;}
.y66_c00091{bottom:316.100347pt;}
.y5f_c00091{bottom:316.100453pt;}
.y65_c00091{bottom:316.100640pt;}
.y63_c00091{bottom:316.100667pt;}
.y62_c00091{bottom:316.100693pt;}
.y67_c00091{bottom:316.100853pt;}
.ye7_c00091{bottom:330.960000pt;}
.y58_c00091{bottom:331.836933pt;}
.y56_c00091{bottom:331.837227pt;}
.y5e_c00091{bottom:331.837373pt;}
.y5c_c00091{bottom:331.837400pt;}
.y5a_c00091{bottom:331.837427pt;}
.y59_c00091{bottom:331.837453pt;}
.y57_c00091{bottom:331.837467pt;}
.y5d_c00091{bottom:331.837653pt;}
.y5b_c00091{bottom:331.837680pt;}
.y52_c00091{bottom:347.405653pt;}
.y50_c00091{bottom:347.405707pt;}
.y53_c00091{bottom:347.406173pt;}
.y51_c00091{bottom:347.406227pt;}
.y54_c00091{bottom:347.406693pt;}
.y55_c00091{bottom:347.406933pt;}
.y4f_c00091{bottom:362.871400pt;}
.y4d_c00091{bottom:362.871427pt;}
.y4e_c00091{bottom:362.871680pt;}
.y4c_c00091{bottom:362.871720pt;}
.y4a_c00091{bottom:362.871787pt;}
.y4b_c00091{bottom:362.872027pt;}
.y48_c00091{bottom:378.366040pt;}
.y49_c00091{bottom:378.366547pt;}
.y47_c00091{bottom:378.366600pt;}
.y46_c00091{bottom:378.366880pt;}
.y44_c00091{bottom:378.367187pt;}
.y45_c00091{bottom:378.367427pt;}
.y43_c00091{bottom:378.367467pt;}
.y3d_c00091{bottom:393.860947pt;}
.y3a_c00091{bottom:393.861013pt;}
.y3f_c00091{bottom:393.861187pt;}
.y3c_c00091{bottom:393.861240pt;}
.y3e_c00091{bottom:393.861467pt;}
.y3b_c00091{bottom:393.861520pt;}
.y40_c00091{bottom:393.861693pt;}
.y41_c00091{bottom:393.861960pt;}
.y42_c00091{bottom:393.862480pt;}
.y39_c00091{bottom:408.925613pt;}
.y34_c00091{bottom:408.925680pt;}
.y33_c00091{bottom:408.925707pt;}
.y32_c00091{bottom:408.925720pt;}
.y38_c00091{bottom:408.925893pt;}
.y36_c00091{bottom:408.925920pt;}
.y35_c00091{bottom:408.925933pt;}
.y37_c00091{bottom:408.926440pt;}
.y31_c00091{bottom:424.611707pt;}
.y2d_c00091{bottom:424.611800pt;}
.y2c_c00091{bottom:424.611813pt;}
.y2e_c00091{bottom:424.612027pt;}
.y2b_c00091{bottom:424.612093pt;}
.y30_c00091{bottom:424.612253pt;}
.y2f_c00091{bottom:424.612280pt;}
.y2a_c00091{bottom:440.183667pt;}
.y29_c00091{bottom:440.183693pt;}
.y27_c00091{bottom:440.183747pt;}
.y26_c00091{bottom:440.183760pt;}
.y24_c00091{bottom:440.183787pt;}
.y28_c00091{bottom:440.183987pt;}
.y25_c00091{bottom:440.184307pt;}
.y22_c00091{bottom:455.091293pt;}
.y23_c00091{bottom:455.091560pt;}
.y1e_c00091{bottom:455.091653pt;}
.y21_c00091{bottom:455.091853pt;}
.y20_c00091{bottom:455.092160pt;}
.y1f_c00091{bottom:455.092173pt;}
.y1d_c00091{bottom:455.092200pt;}
.y1c_c00091{bottom:470.612027pt;}
.y1b_c00091{bottom:470.612573pt;}
.y1a_c00091{bottom:470.612600pt;}
.y19_c00091{bottom:470.612893pt;}
.y18_c00091{bottom:470.613187pt;}
.y17_c00091{bottom:470.613480pt;}
.y16_c00091{bottom:470.613760pt;}
.y15_c00091{bottom:485.631667pt;}
.ye_c00091{bottom:485.631800pt;}
.yf_c00091{bottom:485.632040pt;}
.y14_c00091{bottom:485.632227pt;}
.y10_c00091{bottom:485.632293pt;}
.y12_c00091{bottom:485.632520pt;}
.y13_c00091{bottom:485.632773pt;}
.y11_c00091{bottom:485.632813pt;}
.y2_c00091{bottom:499.681333pt;}
.y3_c00091{bottom:499.986187pt;}
.y4_c00091{bottom:500.312667pt;}
.y5_c00091{bottom:500.449360pt;}
.y6_c00091{bottom:500.856400pt;}
.y7_c00091{bottom:501.032573pt;}
.y8_c00091{bottom:501.390200pt;}
.y9_c00091{bottom:501.642133pt;}
.ya_c00091{bottom:501.742973pt;}
.yb_c00091{bottom:501.965760pt;}
.yc_c00091{bottom:502.088533pt;}
.yd_c00091{bottom:502.203827pt;}
.y1_c00091{bottom:515.877333pt;}
.h13_c00091{height:19.600000pt;}
.h8_c00091{height:51.335900pt;}
.ha_c00091{height:52.269280pt;}
.h11_c00091{height:53.200000pt;}
.he_c00091{height:53.202660pt;}
.h9_c00091{height:54.136040pt;}
.h4_c00091{height:55.069420pt;}
.h2_c00091{height:56.000000pt;}
.h5_c00091{height:56.002800pt;}
.hf_c00091{height:56.936180pt;}
.h10_c00091{height:59.733333pt;}
.h7_c00091{height:60.669700pt;}
.hd_c00091{height:61.603080pt;}
.hc_c00091{height:62.536460pt;}
.hb_c00091{height:63.469840pt;}
.h6_c00091{height:64.403220pt;}
.h3_c00091{height:65.336600pt;}
.h12_c00091{height:66.266667pt;}
.h0_c00091{height:555.066667pt;}
.h1_c00091{height:555.333333pt;}
.w0_c00091{width:330.480000pt;}
.w1_c00091{width:330.666667pt;}
.x0_c00091{left:0.000000pt;}
.x77_c00091{left:34.080000pt;}
.x6e_c00091{left:35.507720pt;}
.x62_c00091{left:36.951573pt;}
.x54_c00091{left:37.914467pt;}
.x3c_c00091{left:39.118093pt;}
.x2_c00091{left:40.917333pt;}
.x78_c00091{left:50.160000pt;}
.x6a_c00091{left:52.789467pt;}
.x49_c00091{left:54.236440pt;}
.x31_c00091{left:59.517547pt;}
.x74_c00091{left:60.480000pt;}
.x42_c00091{left:62.879160pt;}
.x6b_c00091{left:65.030693pt;}
.x1d_c00091{left:66.478800pt;}
.x14_c00091{left:69.358827pt;}
.x3_c00091{left:71.402667pt;}
.x39_c00091{left:73.199160pt;}
.x18_c00091{left:74.398533pt;}
.x5d_c00091{left:76.553813pt;}
.x22_c00091{left:78.719733pt;}
.x55_c00091{left:81.116120pt;}
.x4d_c00091{left:82.797640pt;}
.x51_c00091{left:83.757240pt;}
.x75_c00091{left:85.440000pt;}
.x35_c00091{left:88.559387pt;}
.x46_c00091{left:89.999173pt;}
.x2c_c00091{left:92.399240pt;}
.x63_c00091{left:96.474853pt;}
.x5a_c00091{left:100.794600pt;}
.xe_c00091{left:102.001253pt;}
.x1e_c00091{left:102.961120pt;}
.x4_c00091{left:104.050667pt;}
.x19_c00091{left:105.120267pt;}
.x2d_c00091{left:108.239493pt;}
.x27_c00091{left:111.599867pt;}
.x23_c00091{left:113.521880pt;}
.x15_c00091{left:116.400867pt;}
.x5_c00091{left:117.720000pt;}
.x3d_c00091{left:119.282107pt;}
.x4f_c00091{left:120.720120pt;}
.x5b_c00091{left:121.675360pt;}
.x72_c00091{left:122.871293pt;}
.x1a_c00091{left:125.520973pt;}
.x6c_c00091{left:129.353120pt;}
.x28_c00091{left:135.360907pt;}
.x47_c00091{left:137.041213pt;}
.x4a_c00091{left:139.680973pt;}
.xf_c00091{left:141.363853pt;}
.x64_c00091{left:142.316773pt;}
.x52_c00091{left:145.199373pt;}
.x76_c00091{left:146.400000pt;}
.x6f_c00091{left:147.833613pt;}
.x2e_c00091{left:149.280933pt;}
.x79_c00091{left:150.480000pt;}
.x50_c00091{left:152.880667pt;}
.x32_c00091{left:154.563053pt;}
.x36_c00091{left:156.002133pt;}
.x65_c00091{left:156.956907pt;}
.x6_c00091{left:158.424000pt;}
.x43_c00091{left:160.564920pt;}
.x5e_c00091{left:161.758333pt;}
.x4b_c00091{left:164.642133pt;}
.x3a_c00091{left:166.084453pt;}
.x3e_c00091{left:167.284240pt;}
.x1_c00091{left:169.680000pt;}
.x29_c00091{left:171.363173pt;}
.x73_c00091{left:173.033013pt;}
.x7_c00091{left:176.041333pt;}
.x33_c00091{left:177.604027pt;}
.x44_c00091{left:179.045440pt;}
.x1f_c00091{left:184.325253pt;}
.x24_c00091{left:185.285053pt;}
.x5f_c00091{left:186.959520pt;}
.x67_c00091{left:188.157627pt;}
.x70_c00091{left:189.115080pt;}
.x2a_c00091{left:191.283827pt;}
.x3f_c00091{left:194.645640pt;}
.x10_c00091{left:198.725587pt;}
.x45_c00091{left:199.683987pt;}
.x6d_c00091{left:204.476640pt;}
.x1b_c00091{left:206.165040pt;}
.x60_c00091{left:210.480533pt;}
.x8_c00091{left:211.804000pt;}
.x40_c00091{left:212.886133pt;}
.x37_c00091{left:215.045373pt;}
.x68_c00091{left:221.279600pt;}
.x16_c00091{left:222.486147pt;}
.x11_c00091{left:223.686747pt;}
.x20_c00091{left:227.766933pt;}
.x2b_c00091{left:230.166387pt;}
.x71_c00091{left:234.716973pt;}
.x9_c00091{left:236.997333pt;}
.x34_c00091{left:239.287533pt;}
.x57_c00091{left:241.201427pt;}
.x4e_c00091{left:244.085773pt;}
.x25_c00091{left:245.047027pt;}
.x69_c00091{left:246.000733pt;}
.xa_c00091{left:247.081333pt;}
.x1c_c00091{left:252.246987pt;}
.x12_c00091{left:255.368587pt;}
.x53_c00091{left:257.285240pt;}
.x5c_c00091{left:259.442467pt;}
.x58_c00091{left:260.642040pt;}
.x26_c00091{left:263.527547pt;}
.x17_c00091{left:265.687800pt;}
.x3b_c00091{left:266.889187pt;}
.x38_c00091{left:267.847987pt;}
.xb_c00091{left:269.360000pt;}
.x48_c00091{left:271.207960pt;}
.x2f_c00091{left:275.528213pt;}
.x41_c00091{left:276.489827pt;}
.x21_c00091{left:280.569547pt;}
.xc_c00091{left:281.637333pt;}
.x61_c00091{left:282.723760pt;}
.x56_c00091{left:283.684373pt;}
.x66_c00091{left:287.283267pt;}
.xd_c00091{left:293.166667pt;}
.x59_c00091{left:294.244067pt;}
.x13_c00091{left:296.650053pt;}
.x4c_c00091{left:298.328827pt;}
.x30_c00091{left:302.649587pt;}
.x7a_c00091{left:326.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00092 {
    display:none;
  }
  .loading-indicator_c00092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00092 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00092 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00092" -> "#page-container .classname_c00092")
 */
.pf_c00092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00092 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00092 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00092 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00092 {overflow:visible;}
  }
}
.c_c00092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00092 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00092:after { /* webkit #35443 */
  content: '';
}
.t_c00092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00092 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00092 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00092 { /* info for Javascript */
  display:none;
}
.l_c00092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00092:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00092 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00092.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbc_c00092{transform:matrix(0.094556,-0.001891,0.004999,0.249950,0,0);-ms-transform:matrix(0.094556,-0.001891,0.004999,0.249950,0,0);-webkit-transform:matrix(0.094556,-0.001891,0.004999,0.249950,0,0);}
.mb5_c00092{transform:matrix(0.112562,-0.002251,0.004999,0.249950,0,0);-ms-transform:matrix(0.112562,-0.002251,0.004999,0.249950,0,0);-webkit-transform:matrix(0.112562,-0.002251,0.004999,0.249950,0,0);}
.md2_c00092{transform:matrix(0.125450,-0.002509,0.004999,0.249950,0,0);-ms-transform:matrix(0.125450,-0.002509,0.004999,0.249950,0,0);-webkit-transform:matrix(0.125450,-0.002509,0.004999,0.249950,0,0);}
.m38_c00092{transform:matrix(0.134583,-0.002692,0.004999,0.249950,0,0);-ms-transform:matrix(0.134583,-0.002692,0.004999,0.249950,0,0);-webkit-transform:matrix(0.134583,-0.002692,0.004999,0.249950,0,0);}
.mdd_c00092{transform:matrix(0.140427,-0.002809,0.004999,0.249950,0,0);-ms-transform:matrix(0.140427,-0.002809,0.004999,0.249950,0,0);-webkit-transform:matrix(0.140427,-0.002809,0.004999,0.249950,0,0);}
.m50_c00092{transform:matrix(0.149195,-0.002984,0.004999,0.249950,0,0);-ms-transform:matrix(0.149195,-0.002984,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149195,-0.002984,0.004999,0.249950,0,0);}
.m5b_c00092{transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);-ms-transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149775,-0.002996,0.004999,0.249950,0,0);}
.m55_c00092{transform:matrix(0.150425,-0.003008,0.004999,0.249950,0,0);-ms-transform:matrix(0.150425,-0.003008,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150425,-0.003008,0.004999,0.249950,0,0);}
.m51_c00092{transform:matrix(0.152904,-0.003058,0.004999,0.249950,0,0);-ms-transform:matrix(0.152904,-0.003058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152904,-0.003058,0.004999,0.249950,0,0);}
.m4b_c00092{transform:matrix(0.153224,-0.003064,0.004999,0.249950,0,0);-ms-transform:matrix(0.153224,-0.003064,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153224,-0.003064,0.004999,0.249950,0,0);}
.m28_c00092{transform:matrix(0.154854,-0.003097,0.004999,0.249950,0,0);-ms-transform:matrix(0.154854,-0.003097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154854,-0.003097,0.004999,0.249950,0,0);}
.md6_c00092{transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);-ms-transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);}
.mb0_c00092{transform:matrix(0.156244,-0.003125,0.004999,0.249950,0,0);-ms-transform:matrix(0.156244,-0.003125,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156244,-0.003125,0.004999,0.249950,0,0);}
.m3c_c00092{transform:matrix(0.157868,-0.003157,0.004999,0.249950,0,0);-ms-transform:matrix(0.157868,-0.003157,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157868,-0.003157,0.004999,0.249950,0,0);}
.m92_c00092{transform:matrix(0.158378,-0.003168,0.004999,0.249950,0,0);-ms-transform:matrix(0.158378,-0.003168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158378,-0.003168,0.004999,0.249950,0,0);}
.m12_c00092{transform:matrix(0.161933,-0.003239,0.004999,0.249950,0,0);-ms-transform:matrix(0.161933,-0.003239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161933,-0.003239,0.004999,0.249950,0,0);}
.m1c_c00092{transform:matrix(0.163492,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163492,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163492,-0.003270,0.004999,0.249950,0,0);}
.mb3_c00092{transform:matrix(0.163587,-0.003272,0.004999,0.249950,0,0);-ms-transform:matrix(0.163587,-0.003272,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163587,-0.003272,0.004999,0.249950,0,0);}
.mcf_c00092{transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-ms-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);}
.m57_c00092{transform:matrix(0.166272,-0.003325,0.004999,0.249950,0,0);-ms-transform:matrix(0.166272,-0.003325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166272,-0.003325,0.004999,0.249950,0,0);}
.mbe_c00092{transform:matrix(0.166422,-0.003328,0.004999,0.249950,0,0);-ms-transform:matrix(0.166422,-0.003328,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166422,-0.003328,0.004999,0.249950,0,0);}
.mb1_c00092{transform:matrix(0.167521,-0.003350,0.004999,0.249950,0,0);-ms-transform:matrix(0.167521,-0.003350,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167521,-0.003350,0.004999,0.249950,0,0);}
.mc4_c00092{transform:matrix(0.168216,-0.003364,0.004999,0.249950,0,0);-ms-transform:matrix(0.168216,-0.003364,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168216,-0.003364,0.004999,0.249950,0,0);}
.m8e_c00092{transform:matrix(0.168386,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168386,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168386,-0.003368,0.004999,0.249950,0,0);}
.mba_c00092{transform:matrix(0.168831,-0.003377,0.004999,0.249950,0,0);-ms-transform:matrix(0.168831,-0.003377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168831,-0.003377,0.004999,0.249950,0,0);}
.m1a_c00092{transform:matrix(0.169131,-0.003383,0.004999,0.249950,0,0);-ms-transform:matrix(0.169131,-0.003383,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169131,-0.003383,0.004999,0.249950,0,0);}
.mac_c00092{transform:matrix(0.169781,-0.003396,0.004999,0.249950,0,0);-ms-transform:matrix(0.169781,-0.003396,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169781,-0.003396,0.004999,0.249950,0,0);}
.ma1_c00092{transform:matrix(0.169941,-0.003399,0.004999,0.249950,0,0);-ms-transform:matrix(0.169941,-0.003399,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169941,-0.003399,0.004999,0.249950,0,0);}
.m78_c00092{transform:matrix(0.169976,-0.003400,0.004999,0.249950,0,0);-ms-transform:matrix(0.169976,-0.003400,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169976,-0.003400,0.004999,0.249950,0,0);}
.m91_c00092{transform:matrix(0.170861,-0.003417,0.004999,0.249950,0,0);-ms-transform:matrix(0.170861,-0.003417,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170861,-0.003417,0.004999,0.249950,0,0);}
.m81_c00092{transform:matrix(0.171201,-0.003424,0.004999,0.249950,0,0);-ms-transform:matrix(0.171201,-0.003424,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171201,-0.003424,0.004999,0.249950,0,0);}
.mc5_c00092{transform:matrix(0.172381,-0.003448,0.004999,0.249950,0,0);-ms-transform:matrix(0.172381,-0.003448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172381,-0.003448,0.004999,0.249950,0,0);}
.ma7_c00092{transform:matrix(0.172730,-0.003455,0.004999,0.249950,0,0);-ms-transform:matrix(0.172730,-0.003455,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172730,-0.003455,0.004999,0.249950,0,0);}
.m2a_c00092{transform:matrix(0.172820,-0.003456,0.004999,0.249950,0,0);-ms-transform:matrix(0.172820,-0.003456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172820,-0.003456,0.004999,0.249950,0,0);}
.m4c_c00092{transform:matrix(0.172895,-0.003458,0.004999,0.249950,0,0);-ms-transform:matrix(0.172895,-0.003458,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172895,-0.003458,0.004999,0.249950,0,0);}
.m3f_c00092{transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);-ms-transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);}
.m95_c00092{transform:matrix(0.173065,-0.003461,0.004999,0.249950,0,0);-ms-transform:matrix(0.173065,-0.003461,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173065,-0.003461,0.004999,0.249950,0,0);}
.m8_c00092{transform:matrix(0.173445,-0.003469,0.004999,0.249950,0,0);-ms-transform:matrix(0.173445,-0.003469,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173445,-0.003469,0.004999,0.249950,0,0);}
.m44_c00092{transform:matrix(0.173495,-0.003470,0.004999,0.249950,0,0);-ms-transform:matrix(0.173495,-0.003470,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173495,-0.003470,0.004999,0.249950,0,0);}
.m36_c00092{transform:matrix(0.173925,-0.003479,0.004999,0.249950,0,0);-ms-transform:matrix(0.173925,-0.003479,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173925,-0.003479,0.004999,0.249950,0,0);}
.mc2_c00092{transform:matrix(0.173970,-0.003479,0.004999,0.249950,0,0);-ms-transform:matrix(0.173970,-0.003479,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173970,-0.003479,0.004999,0.249950,0,0);}
.m85_c00092{transform:matrix(0.174880,-0.003498,0.004999,0.249950,0,0);-ms-transform:matrix(0.174880,-0.003498,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174880,-0.003498,0.004999,0.249950,0,0);}
.m96_c00092{transform:matrix(0.175040,-0.003501,0.004999,0.249950,0,0);-ms-transform:matrix(0.175040,-0.003501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175040,-0.003501,0.004999,0.249950,0,0);}
.m18_c00092{transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);-ms-transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);}
.m56_c00092{transform:matrix(0.175500,-0.003510,0.004999,0.249950,0,0);-ms-transform:matrix(0.175500,-0.003510,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175500,-0.003510,0.004999,0.249950,0,0);}
.mc7_c00092{transform:matrix(0.175580,-0.003512,0.004999,0.249950,0,0);-ms-transform:matrix(0.175580,-0.003512,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175580,-0.003512,0.004999,0.249950,0,0);}
.m41_c00092{transform:matrix(0.176755,-0.003535,0.004999,0.249950,0,0);-ms-transform:matrix(0.176755,-0.003535,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176755,-0.003535,0.004999,0.249950,0,0);}
.m3_c00092{transform:matrix(0.176845,-0.003537,0.004999,0.249950,0,0);-ms-transform:matrix(0.176845,-0.003537,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176845,-0.003537,0.004999,0.249950,0,0);}
.m6f_c00092{transform:matrix(0.176890,-0.003538,0.004999,0.249950,0,0);-ms-transform:matrix(0.176890,-0.003538,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176890,-0.003538,0.004999,0.249950,0,0);}
.m2f_c00092{transform:matrix(0.177175,-0.003543,0.004999,0.249950,0,0);-ms-transform:matrix(0.177175,-0.003543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177175,-0.003543,0.004999,0.249950,0,0);}
.m4e_c00092{transform:matrix(0.177245,-0.003545,0.004999,0.249950,0,0);-ms-transform:matrix(0.177245,-0.003545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177245,-0.003545,0.004999,0.249950,0,0);}
.m25_c00092{transform:matrix(0.177280,-0.003546,0.004999,0.249950,0,0);-ms-transform:matrix(0.177280,-0.003546,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177280,-0.003546,0.004999,0.249950,0,0);}
.mc6_c00092{transform:matrix(0.178309,-0.003566,0.004999,0.249950,0,0);-ms-transform:matrix(0.178309,-0.003566,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178309,-0.003566,0.004999,0.249950,0,0);}
.m48_c00092{transform:matrix(0.178454,-0.003569,0.004999,0.249950,0,0);-ms-transform:matrix(0.178454,-0.003569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178454,-0.003569,0.004999,0.249950,0,0);}
.m3a_c00092{transform:matrix(0.178724,-0.003574,0.004999,0.249950,0,0);-ms-transform:matrix(0.178724,-0.003574,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178724,-0.003574,0.004999,0.249950,0,0);}
.m4f_c00092{transform:matrix(0.178829,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178829,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178829,-0.003577,0.004999,0.249950,0,0);}
.m9e_c00092{transform:matrix(0.178859,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178859,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178859,-0.003577,0.004999,0.249950,0,0);}
.m7f_c00092{transform:matrix(0.179014,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.179014,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179014,-0.003580,0.004999,0.249950,0,0);}
.mb2_c00092{transform:matrix(0.179304,-0.003586,0.004999,0.249950,0,0);-ms-transform:matrix(0.179304,-0.003586,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179304,-0.003586,0.004999,0.249950,0,0);}
.m70_c00092{transform:matrix(0.180024,-0.003600,0.004999,0.249950,0,0);-ms-transform:matrix(0.180024,-0.003600,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180024,-0.003600,0.004999,0.249950,0,0);}
.m5f_c00092{transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);-ms-transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);}
.m15_c00092{transform:matrix(0.180964,-0.003619,0.004999,0.249950,0,0);-ms-transform:matrix(0.180964,-0.003619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180964,-0.003619,0.004999,0.249950,0,0);}
.mb6_c00092{transform:matrix(0.180999,-0.003620,0.004999,0.249950,0,0);-ms-transform:matrix(0.180999,-0.003620,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180999,-0.003620,0.004999,0.249950,0,0);}
.m60_c00092{transform:matrix(0.181089,-0.003622,0.004999,0.249950,0,0);-ms-transform:matrix(0.181089,-0.003622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181089,-0.003622,0.004999,0.249950,0,0);}
.m46_c00092{transform:matrix(0.181254,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181254,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181254,-0.003625,0.004999,0.249950,0,0);}
.m19_c00092{transform:matrix(0.182169,-0.003643,0.004999,0.249950,0,0);-ms-transform:matrix(0.182169,-0.003643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182169,-0.003643,0.004999,0.249950,0,0);}
.m29_c00092{transform:matrix(0.182798,-0.003656,0.004999,0.249950,0,0);-ms-transform:matrix(0.182798,-0.003656,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182798,-0.003656,0.004999,0.249950,0,0);}
.m0_c00092{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m74_c00092{transform:matrix(0.183223,-0.003664,0.004999,0.249950,0,0);-ms-transform:matrix(0.183223,-0.003664,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183223,-0.003664,0.004999,0.249950,0,0);}
.m99_c00092{transform:matrix(0.183958,-0.003679,0.004999,0.249950,0,0);-ms-transform:matrix(0.183958,-0.003679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183958,-0.003679,0.004999,0.249950,0,0);}
.m71_c00092{transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);-ms-transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);}
.md9_c00092{transform:matrix(0.184068,-0.003681,0.004999,0.249950,0,0);-ms-transform:matrix(0.184068,-0.003681,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184068,-0.003681,0.004999,0.249950,0,0);}
.ma2_c00092{transform:matrix(0.184588,-0.003692,0.004999,0.249950,0,0);-ms-transform:matrix(0.184588,-0.003692,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184588,-0.003692,0.004999,0.249950,0,0);}
.md5_c00092{transform:matrix(0.186393,-0.003728,0.004999,0.249950,0,0);-ms-transform:matrix(0.186393,-0.003728,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186393,-0.003728,0.004999,0.249950,0,0);}
.mcb_c00092{transform:matrix(0.186723,-0.003734,0.004999,0.249950,0,0);-ms-transform:matrix(0.186723,-0.003734,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186723,-0.003734,0.004999,0.249950,0,0);}
.m54_c00092{transform:matrix(0.186788,-0.003736,0.004999,0.249950,0,0);-ms-transform:matrix(0.186788,-0.003736,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186788,-0.003736,0.004999,0.249950,0,0);}
.m84_c00092{transform:matrix(0.186863,-0.003737,0.004999,0.249950,0,0);-ms-transform:matrix(0.186863,-0.003737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186863,-0.003737,0.004999,0.249950,0,0);}
.m75_c00092{transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);-ms-transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);}
.m14_c00092{transform:matrix(0.187463,-0.003749,0.004999,0.249950,0,0);-ms-transform:matrix(0.187463,-0.003749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187463,-0.003749,0.004999,0.249950,0,0);}
.md0_c00092{transform:matrix(0.187582,-0.003752,0.004999,0.249950,0,0);-ms-transform:matrix(0.187582,-0.003752,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187582,-0.003752,0.004999,0.249950,0,0);}
.m6b_c00092{transform:matrix(0.188077,-0.003762,0.004999,0.249950,0,0);-ms-transform:matrix(0.188077,-0.003762,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188077,-0.003762,0.004999,0.249950,0,0);}
.m73_c00092{transform:matrix(0.188112,-0.003762,0.004999,0.249950,0,0);-ms-transform:matrix(0.188112,-0.003762,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188112,-0.003762,0.004999,0.249950,0,0);}
.m4a_c00092{transform:matrix(0.188377,-0.003768,0.004999,0.249950,0,0);-ms-transform:matrix(0.188377,-0.003768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188377,-0.003768,0.004999,0.249950,0,0);}
.m83_c00092{transform:matrix(0.188387,-0.003768,0.004999,0.249950,0,0);-ms-transform:matrix(0.188387,-0.003768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188387,-0.003768,0.004999,0.249950,0,0);}
.m69_c00092{transform:matrix(0.189692,-0.003794,0.004999,0.249950,0,0);-ms-transform:matrix(0.189692,-0.003794,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189692,-0.003794,0.004999,0.249950,0,0);}
.m3b_c00092{transform:matrix(0.189937,-0.003799,0.004999,0.249950,0,0);-ms-transform:matrix(0.189937,-0.003799,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189937,-0.003799,0.004999,0.249950,0,0);}
.mbf_c00092{transform:matrix(0.190107,-0.003802,0.004999,0.249950,0,0);-ms-transform:matrix(0.190107,-0.003802,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190107,-0.003802,0.004999,0.249950,0,0);}
.m8f_c00092{transform:matrix(0.190197,-0.003804,0.004999,0.249950,0,0);-ms-transform:matrix(0.190197,-0.003804,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190197,-0.003804,0.004999,0.249950,0,0);}
.m82_c00092{transform:matrix(0.190487,-0.003810,0.004999,0.249950,0,0);-ms-transform:matrix(0.190487,-0.003810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190487,-0.003810,0.004999,0.249950,0,0);}
.m2e_c00092{transform:matrix(0.190692,-0.003814,0.004999,0.249950,0,0);-ms-transform:matrix(0.190692,-0.003814,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190692,-0.003814,0.004999,0.249950,0,0);}
.m17_c00092{transform:matrix(0.190967,-0.003819,0.004999,0.249950,0,0);-ms-transform:matrix(0.190967,-0.003819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190967,-0.003819,0.004999,0.249950,0,0);}
.m76_c00092{transform:matrix(0.191217,-0.003824,0.004999,0.249950,0,0);-ms-transform:matrix(0.191217,-0.003824,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191217,-0.003824,0.004999,0.249950,0,0);}
.m7e_c00092{transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);-ms-transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);}
.m4d_c00092{transform:matrix(0.191417,-0.003828,0.004999,0.249950,0,0);-ms-transform:matrix(0.191417,-0.003828,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191417,-0.003828,0.004999,0.249950,0,0);}
.m3d_c00092{transform:matrix(0.191447,-0.003829,0.004999,0.249950,0,0);-ms-transform:matrix(0.191447,-0.003829,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191447,-0.003829,0.004999,0.249950,0,0);}
.m37_c00092{transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);}
.me1_c00092{transform:matrix(0.191737,-0.003835,0.004999,0.249950,0,0);-ms-transform:matrix(0.191737,-0.003835,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191737,-0.003835,0.004999,0.249950,0,0);}
.mb4_c00092{transform:matrix(0.192007,-0.003840,0.004999,0.249950,0,0);-ms-transform:matrix(0.192007,-0.003840,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192007,-0.003840,0.004999,0.249950,0,0);}
.m16_c00092{transform:matrix(0.192127,-0.003843,0.004999,0.249950,0,0);-ms-transform:matrix(0.192127,-0.003843,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192127,-0.003843,0.004999,0.249950,0,0);}
.m8c_c00092{transform:matrix(0.192237,-0.003845,0.004999,0.249950,0,0);-ms-transform:matrix(0.192237,-0.003845,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192237,-0.003845,0.004999,0.249950,0,0);}
.m8a_c00092{transform:matrix(0.192362,-0.003847,0.004999,0.249950,0,0);-ms-transform:matrix(0.192362,-0.003847,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192362,-0.003847,0.004999,0.249950,0,0);}
.m31_c00092{transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);}
.ma9_c00092{transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);-ms-transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);}
.m23_c00092{transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);}
.ma6_c00092{transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);-ms-transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193171,-0.003863,0.004999,0.249950,0,0);}
.m27_c00092{transform:matrix(0.193341,-0.003867,0.004999,0.249950,0,0);-ms-transform:matrix(0.193341,-0.003867,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193341,-0.003867,0.004999,0.249950,0,0);}
.maa_c00092{transform:matrix(0.194036,-0.003881,0.004999,0.249950,0,0);-ms-transform:matrix(0.194036,-0.003881,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194036,-0.003881,0.004999,0.249950,0,0);}
.m5e_c00092{transform:matrix(0.194181,-0.003884,0.004999,0.249950,0,0);-ms-transform:matrix(0.194181,-0.003884,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194181,-0.003884,0.004999,0.249950,0,0);}
.mf_c00092{transform:matrix(0.194351,-0.003887,0.004999,0.249950,0,0);-ms-transform:matrix(0.194351,-0.003887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194351,-0.003887,0.004999,0.249950,0,0);}
.m3e_c00092{transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);}
.m68_c00092{transform:matrix(0.195316,-0.003906,0.004999,0.249950,0,0);-ms-transform:matrix(0.195316,-0.003906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195316,-0.003906,0.004999,0.249950,0,0);}
.m9b_c00092{transform:matrix(0.195436,-0.003909,0.004999,0.249950,0,0);-ms-transform:matrix(0.195436,-0.003909,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195436,-0.003909,0.004999,0.249950,0,0);}
.m39_c00092{transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);}
.m80_c00092{transform:matrix(0.196066,-0.003921,0.004999,0.249950,0,0);-ms-transform:matrix(0.196066,-0.003921,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196066,-0.003921,0.004999,0.249950,0,0);}
.md3_c00092{transform:matrix(0.196296,-0.003926,0.004999,0.249950,0,0);-ms-transform:matrix(0.196296,-0.003926,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196296,-0.003926,0.004999,0.249950,0,0);}
.mc3_c00092{transform:matrix(0.196441,-0.003929,0.004999,0.249950,0,0);-ms-transform:matrix(0.196441,-0.003929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196441,-0.003929,0.004999,0.249950,0,0);}
.m6d_c00092{transform:matrix(0.196666,-0.003933,0.004999,0.249950,0,0);-ms-transform:matrix(0.196666,-0.003933,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196666,-0.003933,0.004999,0.249950,0,0);}
.mb_c00092{transform:matrix(0.196686,-0.003934,0.004999,0.249950,0,0);-ms-transform:matrix(0.196686,-0.003934,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196686,-0.003934,0.004999,0.249950,0,0);}
.m1e_c00092{transform:matrix(0.197266,-0.003945,0.004999,0.249950,0,0);-ms-transform:matrix(0.197266,-0.003945,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197266,-0.003945,0.004999,0.249950,0,0);}
.m58_c00092{transform:matrix(0.197361,-0.003947,0.004999,0.249950,0,0);-ms-transform:matrix(0.197361,-0.003947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197361,-0.003947,0.004999,0.249950,0,0);}
.m6e_c00092{transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);-ms-transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);}
.m6c_c00092{transform:matrix(0.197466,-0.003949,0.004999,0.249950,0,0);-ms-transform:matrix(0.197466,-0.003949,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197466,-0.003949,0.004999,0.249950,0,0);}
.m59_c00092{transform:matrix(0.197780,-0.003956,0.004999,0.249950,0,0);-ms-transform:matrix(0.197780,-0.003956,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197780,-0.003956,0.004999,0.249950,0,0);}
.m34_c00092{transform:matrix(0.197795,-0.003956,0.004999,0.249950,0,0);-ms-transform:matrix(0.197795,-0.003956,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197795,-0.003956,0.004999,0.249950,0,0);}
.mb8_c00092{transform:matrix(0.198135,-0.003963,0.004999,0.249950,0,0);-ms-transform:matrix(0.198135,-0.003963,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198135,-0.003963,0.004999,0.249950,0,0);}
.m1d_c00092{transform:matrix(0.198175,-0.003964,0.004999,0.249950,0,0);-ms-transform:matrix(0.198175,-0.003964,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198175,-0.003964,0.004999,0.249950,0,0);}
.m9_c00092{transform:matrix(0.198405,-0.003968,0.004999,0.249950,0,0);-ms-transform:matrix(0.198405,-0.003968,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198405,-0.003968,0.004999,0.249950,0,0);}
.mc_c00092{transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);}
.mcc_c00092{transform:matrix(0.198745,-0.003975,0.004999,0.249950,0,0);-ms-transform:matrix(0.198745,-0.003975,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198745,-0.003975,0.004999,0.249950,0,0);}
.m63_c00092{transform:matrix(0.198780,-0.003976,0.004999,0.249950,0,0);-ms-transform:matrix(0.198780,-0.003976,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198780,-0.003976,0.004999,0.249950,0,0);}
.m8d_c00092{transform:matrix(0.198905,-0.003978,0.004999,0.249950,0,0);-ms-transform:matrix(0.198905,-0.003978,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198905,-0.003978,0.004999,0.249950,0,0);}
.m90_c00092{transform:matrix(0.199225,-0.003985,0.004999,0.249950,0,0);-ms-transform:matrix(0.199225,-0.003985,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199225,-0.003985,0.004999,0.249950,0,0);}
.m2c_c00092{transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-ms-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);}
.mc0_c00092{transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);-ms-transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);}
.m21_c00092{transform:matrix(0.200225,-0.004004,0.004999,0.249950,0,0);-ms-transform:matrix(0.200225,-0.004004,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200225,-0.004004,0.004999,0.249950,0,0);}
.mbb_c00092{transform:matrix(0.200285,-0.004006,0.004999,0.249950,0,0);-ms-transform:matrix(0.200285,-0.004006,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200285,-0.004006,0.004999,0.249950,0,0);}
.m86_c00092{transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);-ms-transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);}
.m5_c00092{transform:matrix(0.200610,-0.004012,0.004999,0.249950,0,0);-ms-transform:matrix(0.200610,-0.004012,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200610,-0.004012,0.004999,0.249950,0,0);}
.me3_c00092{transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);-ms-transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);}
.m35_c00092{transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);-ms-transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);}
.m7a_c00092{transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201480,-0.004030,0.004999,0.249950,0,0);}
.m53_c00092{transform:matrix(0.202400,-0.004048,0.004999,0.249950,0,0);-ms-transform:matrix(0.202400,-0.004048,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202400,-0.004048,0.004999,0.249950,0,0);}
.md8_c00092{transform:matrix(0.202609,-0.004052,0.004999,0.249950,0,0);-ms-transform:matrix(0.202609,-0.004052,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202609,-0.004052,0.004999,0.249950,0,0);}
.m42_c00092{transform:matrix(0.203004,-0.004060,0.004999,0.249950,0,0);-ms-transform:matrix(0.203004,-0.004060,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203004,-0.004060,0.004999,0.249950,0,0);}
.ma0_c00092{transform:matrix(0.203264,-0.004065,0.004999,0.249950,0,0);-ms-transform:matrix(0.203264,-0.004065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203264,-0.004065,0.004999,0.249950,0,0);}
.m98_c00092{transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);}
.m47_c00092{transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-ms-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);}
.maf_c00092{transform:matrix(0.204134,-0.004083,0.004999,0.249950,0,0);-ms-transform:matrix(0.204134,-0.004083,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204134,-0.004083,0.004999,0.249950,0,0);}
.mae_c00092{transform:matrix(0.204719,-0.004094,0.004999,0.249950,0,0);-ms-transform:matrix(0.204719,-0.004094,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204719,-0.004094,0.004999,0.249950,0,0);}
.m1b_c00092{transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);-ms-transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);}
.mdc_c00092{transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);-ms-transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);}
.m2b_c00092{transform:matrix(0.205749,-0.004115,0.004999,0.249950,0,0);-ms-transform:matrix(0.205749,-0.004115,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205749,-0.004115,0.004999,0.249950,0,0);}
.m62_c00092{transform:matrix(0.205809,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205809,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205809,-0.004116,0.004999,0.249950,0,0);}
.m45_c00092{transform:matrix(0.205849,-0.004117,0.004999,0.249950,0,0);-ms-transform:matrix(0.205849,-0.004117,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205849,-0.004117,0.004999,0.249950,0,0);}
.m13_c00092{transform:matrix(0.205984,-0.004120,0.004999,0.249950,0,0);-ms-transform:matrix(0.205984,-0.004120,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205984,-0.004120,0.004999,0.249950,0,0);}
.m7_c00092{transform:matrix(0.206384,-0.004128,0.004999,0.249950,0,0);-ms-transform:matrix(0.206384,-0.004128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206384,-0.004128,0.004999,0.249950,0,0);}
.m79_c00092{transform:matrix(0.206744,-0.004135,0.004999,0.249950,0,0);-ms-transform:matrix(0.206744,-0.004135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206744,-0.004135,0.004999,0.249950,0,0);}
.m97_c00092{transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);-ms-transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);}
.m88_c00092{transform:matrix(0.207179,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207179,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207179,-0.004144,0.004999,0.249950,0,0);}
.m52_c00092{transform:matrix(0.207224,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207224,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207224,-0.004144,0.004999,0.249950,0,0);}
.m20_c00092{transform:matrix(0.207593,-0.004152,0.004999,0.249950,0,0);-ms-transform:matrix(0.207593,-0.004152,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207593,-0.004152,0.004999,0.249950,0,0);}
.m9c_c00092{transform:matrix(0.207963,-0.004159,0.004999,0.249950,0,0);-ms-transform:matrix(0.207963,-0.004159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207963,-0.004159,0.004999,0.249950,0,0);}
.m9f_c00092{transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);-ms-transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);}
.mdf_c00092{transform:matrix(0.209243,-0.004185,0.004999,0.249950,0,0);-ms-transform:matrix(0.209243,-0.004185,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209243,-0.004185,0.004999,0.249950,0,0);}
.m87_c00092{transform:matrix(0.209473,-0.004189,0.004999,0.249950,0,0);-ms-transform:matrix(0.209473,-0.004189,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209473,-0.004189,0.004999,0.249950,0,0);}
.mbd_c00092{transform:matrix(0.209608,-0.004192,0.004999,0.249950,0,0);-ms-transform:matrix(0.209608,-0.004192,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209608,-0.004192,0.004999,0.249950,0,0);}
.m61_c00092{transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);-ms-transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);}
.mc8_c00092{transform:matrix(0.209683,-0.004194,0.004999,0.249950,0,0);-ms-transform:matrix(0.209683,-0.004194,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209683,-0.004194,0.004999,0.249950,0,0);}
.m33_c00092{transform:matrix(0.210048,-0.004201,0.004999,0.249950,0,0);-ms-transform:matrix(0.210048,-0.004201,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210048,-0.004201,0.004999,0.249950,0,0);}
.ma3_c00092{transform:matrix(0.210598,-0.004212,0.004999,0.249950,0,0);-ms-transform:matrix(0.210598,-0.004212,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210598,-0.004212,0.004999,0.249950,0,0);}
.m89_c00092{transform:matrix(0.210628,-0.004213,0.004999,0.249950,0,0);-ms-transform:matrix(0.210628,-0.004213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210628,-0.004213,0.004999,0.249950,0,0);}
.mb9_c00092{transform:matrix(0.210758,-0.004215,0.004999,0.249950,0,0);-ms-transform:matrix(0.210758,-0.004215,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210758,-0.004215,0.004999,0.249950,0,0);}
.m40_c00092{transform:matrix(0.210808,-0.004216,0.004999,0.249950,0,0);-ms-transform:matrix(0.210808,-0.004216,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210808,-0.004216,0.004999,0.249950,0,0);}
.mcd_c00092{transform:matrix(0.211053,-0.004221,0.004999,0.249950,0,0);-ms-transform:matrix(0.211053,-0.004221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211053,-0.004221,0.004999,0.249950,0,0);}
.mdb_c00092{transform:matrix(0.211138,-0.004223,0.004999,0.249950,0,0);-ms-transform:matrix(0.211138,-0.004223,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211138,-0.004223,0.004999,0.249950,0,0);}
.mce_c00092{transform:matrix(0.211303,-0.004226,0.004999,0.249950,0,0);-ms-transform:matrix(0.211303,-0.004226,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211303,-0.004226,0.004999,0.249950,0,0);}
.me_c00092{transform:matrix(0.211658,-0.004233,0.004999,0.249950,0,0);-ms-transform:matrix(0.211658,-0.004233,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211658,-0.004233,0.004999,0.249950,0,0);}
.m8b_c00092{transform:matrix(0.213147,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213147,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213147,-0.004263,0.004999,0.249950,0,0);}
.m5c_c00092{transform:matrix(0.213242,-0.004265,0.004999,0.249950,0,0);-ms-transform:matrix(0.213242,-0.004265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213242,-0.004265,0.004999,0.249950,0,0);}
.m64_c00092{transform:matrix(0.213332,-0.004267,0.004999,0.249950,0,0);-ms-transform:matrix(0.213332,-0.004267,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213332,-0.004267,0.004999,0.249950,0,0);}
.m49_c00092{transform:matrix(0.213392,-0.004268,0.004999,0.249950,0,0);-ms-transform:matrix(0.213392,-0.004268,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213392,-0.004268,0.004999,0.249950,0,0);}
.md4_c00092{transform:matrix(0.213502,-0.004270,0.004999,0.249950,0,0);-ms-transform:matrix(0.213502,-0.004270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213502,-0.004270,0.004999,0.249950,0,0);}
.ma_c00092{transform:matrix(0.214092,-0.004282,0.004999,0.249950,0,0);-ms-transform:matrix(0.214092,-0.004282,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214092,-0.004282,0.004999,0.249950,0,0);}
.mca_c00092{transform:matrix(0.214617,-0.004292,0.004999,0.249950,0,0);-ms-transform:matrix(0.214617,-0.004292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214617,-0.004292,0.004999,0.249950,0,0);}
.m30_c00092{transform:matrix(0.215627,-0.004313,0.004999,0.249950,0,0);-ms-transform:matrix(0.215627,-0.004313,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215627,-0.004313,0.004999,0.249950,0,0);}
.md7_c00092{transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);-ms-transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);}
.m72_c00092{transform:matrix(0.215977,-0.004320,0.004999,0.249950,0,0);-ms-transform:matrix(0.215977,-0.004320,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215977,-0.004320,0.004999,0.249950,0,0);}
.m32_c00092{transform:matrix(0.216092,-0.004322,0.004999,0.249950,0,0);-ms-transform:matrix(0.216092,-0.004322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216092,-0.004322,0.004999,0.249950,0,0);}
.ma4_c00092{transform:matrix(0.216697,-0.004334,0.004999,0.249950,0,0);-ms-transform:matrix(0.216697,-0.004334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216697,-0.004334,0.004999,0.249950,0,0);}
.m6a_c00092{transform:matrix(0.217347,-0.004347,0.004999,0.249950,0,0);-ms-transform:matrix(0.217347,-0.004347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217347,-0.004347,0.004999,0.249950,0,0);}
.m2d_c00092{transform:matrix(0.218246,-0.004365,0.004999,0.249950,0,0);-ms-transform:matrix(0.218246,-0.004365,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218246,-0.004365,0.004999,0.249950,0,0);}
.m9a_c00092{transform:matrix(0.218476,-0.004370,0.004999,0.249950,0,0);-ms-transform:matrix(0.218476,-0.004370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218476,-0.004370,0.004999,0.249950,0,0);}
.m5a_c00092{transform:matrix(0.218861,-0.004377,0.004999,0.249950,0,0);-ms-transform:matrix(0.218861,-0.004377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218861,-0.004377,0.004999,0.249950,0,0);}
.m11_c00092{transform:matrix(0.219521,-0.004390,0.004999,0.249950,0,0);-ms-transform:matrix(0.219521,-0.004390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219521,-0.004390,0.004999,0.249950,0,0);}
.mc9_c00092{transform:matrix(0.219631,-0.004393,0.004999,0.249950,0,0);-ms-transform:matrix(0.219631,-0.004393,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219631,-0.004393,0.004999,0.249950,0,0);}
.m24_c00092{transform:matrix(0.219926,-0.004399,0.004999,0.249950,0,0);-ms-transform:matrix(0.219926,-0.004399,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219926,-0.004399,0.004999,0.249950,0,0);}
.m66_c00092{transform:matrix(0.219971,-0.004399,0.004999,0.249950,0,0);-ms-transform:matrix(0.219971,-0.004399,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219971,-0.004399,0.004999,0.249950,0,0);}
.md_c00092{transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);-ms-transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);}
.m7d_c00092{transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);-ms-transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);}
.m2_c00092{transform:matrix(0.220576,-0.004412,0.004999,0.249950,0,0);-ms-transform:matrix(0.220576,-0.004412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220576,-0.004412,0.004999,0.249950,0,0);}
.m67_c00092{transform:matrix(0.221111,-0.004422,0.004999,0.249950,0,0);-ms-transform:matrix(0.221111,-0.004422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221111,-0.004422,0.004999,0.249950,0,0);}
.m5d_c00092{transform:matrix(0.224390,-0.004488,0.004999,0.249950,0,0);-ms-transform:matrix(0.224390,-0.004488,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224390,-0.004488,0.004999,0.249950,0,0);}
.me2_c00092{transform:matrix(0.224430,-0.004489,0.004999,0.249950,0,0);-ms-transform:matrix(0.224430,-0.004489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224430,-0.004489,0.004999,0.249950,0,0);}
.mab_c00092{transform:matrix(0.224680,-0.004494,0.004999,0.249950,0,0);-ms-transform:matrix(0.224680,-0.004494,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224680,-0.004494,0.004999,0.249950,0,0);}
.m1_c00092{transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);-ms-transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);}
.m43_c00092{transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);-ms-transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);}
.m77_c00092{transform:matrix(0.228184,-0.004564,0.004999,0.249950,0,0);-ms-transform:matrix(0.228184,-0.004564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228184,-0.004564,0.004999,0.249950,0,0);}
.m26_c00092{transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);-ms-transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);}
.m22_c00092{transform:matrix(0.229029,-0.004581,0.004999,0.249950,0,0);-ms-transform:matrix(0.229029,-0.004581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229029,-0.004581,0.004999,0.249950,0,0);}
.ma5_c00092{transform:matrix(0.229544,-0.004591,0.004999,0.249950,0,0);-ms-transform:matrix(0.229544,-0.004591,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229544,-0.004591,0.004999,0.249950,0,0);}
.m10_c00092{transform:matrix(0.230149,-0.004603,0.004999,0.249950,0,0);-ms-transform:matrix(0.230149,-0.004603,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230149,-0.004603,0.004999,0.249950,0,0);}
.m93_c00092{transform:matrix(0.231109,-0.004622,0.004999,0.249950,0,0);-ms-transform:matrix(0.231109,-0.004622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231109,-0.004622,0.004999,0.249950,0,0);}
.m4_c00092{transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);-ms-transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);}
.m1f_c00092{transform:matrix(0.236513,-0.004730,0.004999,0.249950,0,0);-ms-transform:matrix(0.236513,-0.004730,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236513,-0.004730,0.004999,0.249950,0,0);}
.m9d_c00092{transform:matrix(0.238422,-0.004768,0.004999,0.249950,0,0);-ms-transform:matrix(0.238422,-0.004768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238422,-0.004768,0.004999,0.249950,0,0);}
.mad_c00092{transform:matrix(0.238702,-0.004774,0.004999,0.249950,0,0);-ms-transform:matrix(0.238702,-0.004774,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238702,-0.004774,0.004999,0.249950,0,0);}
.me0_c00092{transform:matrix(0.240262,-0.004805,0.004999,0.249950,0,0);-ms-transform:matrix(0.240262,-0.004805,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240262,-0.004805,0.004999,0.249950,0,0);}
.mc1_c00092{transform:matrix(0.240812,-0.004816,0.004999,0.249950,0,0);-ms-transform:matrix(0.240812,-0.004816,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240812,-0.004816,0.004999,0.249950,0,0);}
.mb7_c00092{transform:matrix(0.243436,-0.004869,0.004999,0.249950,0,0);-ms-transform:matrix(0.243436,-0.004869,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243436,-0.004869,0.004999,0.249950,0,0);}
.m7c_c00092{transform:matrix(0.243791,-0.004876,0.004999,0.249950,0,0);-ms-transform:matrix(0.243791,-0.004876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243791,-0.004876,0.004999,0.249950,0,0);}
.mde_c00092{transform:matrix(0.245841,-0.004917,0.004999,0.249950,0,0);-ms-transform:matrix(0.245841,-0.004917,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245841,-0.004917,0.004999,0.249950,0,0);}
.m7b_c00092{transform:matrix(0.247990,-0.004960,0.004999,0.249950,0,0);-ms-transform:matrix(0.247990,-0.004960,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247990,-0.004960,0.004999,0.249950,0,0);}
.m65_c00092{transform:matrix(0.252574,-0.005051,0.004999,0.249950,0,0);-ms-transform:matrix(0.252574,-0.005051,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252574,-0.005051,0.004999,0.249950,0,0);}
.md1_c00092{transform:matrix(0.264487,-0.005290,0.004999,0.249950,0,0);-ms-transform:matrix(0.264487,-0.005290,0.004999,0.249950,0,0);-webkit-transform:matrix(0.264487,-0.005290,0.004999,0.249950,0,0);}
.ma8_c00092{transform:matrix(0.266317,-0.005326,0.004999,0.249950,0,0);-ms-transform:matrix(0.266317,-0.005326,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266317,-0.005326,0.004999,0.249950,0,0);}
.m94_c00092{transform:matrix(0.340692,-0.006814,0.004999,0.249950,0,0);-ms-transform:matrix(0.340692,-0.006814,0.004999,0.249950,0,0);-webkit-transform:matrix(0.340692,-0.006814,0.004999,0.249950,0,0);}
.mda_c00092{transform:matrix(0.433228,-0.008665,0.004999,0.249950,0,0);-ms-transform:matrix(0.433228,-0.008665,0.004999,0.249950,0,0);-webkit-transform:matrix(0.433228,-0.008665,0.004999,0.249950,0,0);}
.m6_c00092{transform:matrix(0.611548,-0.012231,0.004999,0.249950,0,0);-ms-transform:matrix(0.611548,-0.012231,0.004999,0.249950,0,0);-webkit-transform:matrix(0.611548,-0.012231,0.004999,0.249950,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls0_c00092{letter-spacing:0.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:0.000000px;}
.fc0_c00092{color:transparent;}
.fsc_c00092{font-size:58.811759px;}
.fs7_c00092{font-size:60.912179px;}
.fs5_c00092{font-size:61.962389px;}
.fs1_c00092{font-size:63.012599px;}
.fs8_c00092{font-size:64.062809px;}
.fsa_c00092{font-size:65.113019px;}
.fs3_c00092{font-size:66.163229px;}
.fs2_c00092{font-size:67.213439px;}
.fs4_c00092{font-size:68.263649px;}
.fsb_c00092{font-size:69.313859px;}
.fsd_c00092{font-size:70.364069px;}
.fs6_c00092{font-size:71.414279px;}
.fs0_c00092{font-size:73.500000px;}
.fs9_c00092{font-size:73.514699px;}
.y0_c00092{bottom:0.000000px;}
.ye8_c00092{bottom:30.535140px;}
.ye7_c00092{bottom:31.274280px;}
.ye6_c00092{bottom:31.558140px;}
.ye5_c00092{bottom:31.774440px;}
.ye4_c00092{bottom:32.621010px;}
.ye3_c00092{bottom:33.622860px;}
.ye2_c00092{bottom:33.930330px;}
.yda_c00092{bottom:50.901120px;}
.ydb_c00092{bottom:50.901150px;}
.ydc_c00092{bottom:50.901390px;}
.ydd_c00092{bottom:50.901720px;}
.yde_c00092{bottom:50.901930px;}
.ydf_c00092{bottom:50.902170px;}
.ye1_c00092{bottom:50.902500px;}
.ye0_c00092{bottom:50.902560px;}
.yd7_c00092{bottom:68.326080px;}
.yd1_c00092{bottom:68.326380px;}
.yd6_c00092{bottom:68.326470px;}
.yd8_c00092{bottom:68.326620px;}
.yd4_c00092{bottom:68.326710px;}
.yd5_c00092{bottom:68.326770px;}
.yd3_c00092{bottom:68.326800px;}
.yd2_c00092{bottom:68.326890px;}
.yd9_c00092{bottom:68.327340px;}
.yce_c00092{bottom:85.521540px;}
.yd0_c00092{bottom:85.521660px;}
.ycf_c00092{bottom:85.521750px;}
.ycd_c00092{bottom:85.521840px;}
.yca_c00092{bottom:85.521930px;}
.ycb_c00092{bottom:85.522140px;}
.ycc_c00092{bottom:85.522230px;}
.yc9_c00092{bottom:85.522350px;}
.yc1_c00092{bottom:103.193340px;}
.yc0_c00092{bottom:103.193460px;}
.yc2_c00092{bottom:103.193760px;}
.yc8_c00092{bottom:103.194390px;}
.yc3_c00092{bottom:103.194510px;}
.yc7_c00092{bottom:103.194780px;}
.yc4_c00092{bottom:103.194870px;}
.yc5_c00092{bottom:103.195020px;}
.yc6_c00092{bottom:103.195470px;}
.ybe_c00092{bottom:120.389370px;}
.ybd_c00092{bottom:120.389580px;}
.yba_c00092{bottom:120.389640px;}
.ybc_c00092{bottom:120.389670px;}
.yb9_c00092{bottom:120.389760px;}
.ybf_c00092{bottom:120.389910px;}
.ybb_c00092{bottom:120.390030px;}
.yb2_c00092{bottom:139.734030px;}
.yb3_c00092{bottom:139.734510px;}
.yb4_c00092{bottom:139.734840px;}
.yb5_c00092{bottom:139.735050px;}
.yb7_c00092{bottom:139.735410px;}
.yb6_c00092{bottom:139.735710px;}
.yb8_c00092{bottom:139.735920px;}
.yac_c00092{bottom:156.157830px;}
.yab_c00092{bottom:156.158100px;}
.yb1_c00092{bottom:156.158220px;}
.yad_c00092{bottom:156.158520px;}
.yb0_c00092{bottom:156.158700px;}
.yae_c00092{bottom:156.159060px;}
.yaf_c00092{bottom:156.159360px;}
.ya4_c00092{bottom:168.144660px;}
.ya5_c00092{bottom:168.975300px;}
.ya6_c00092{bottom:169.634340px;}
.ya7_c00092{bottom:170.793990px;}
.ya8_c00092{bottom:171.285300px;}
.ya9_c00092{bottom:171.628260px;}
.yaa_c00092{bottom:173.406930px;}
.ya1_c00092{bottom:190.501020px;}
.ya0_c00092{bottom:190.501260px;}
.ya2_c00092{bottom:190.501380px;}
.y9e_c00092{bottom:190.501710px;}
.y9f_c00092{bottom:190.501860px;}
.ya3_c00092{bottom:190.502370px;}
.y9a_c00092{bottom:208.172220px;}
.y99_c00092{bottom:208.172370px;}
.y9c_c00092{bottom:208.172430px;}
.y9b_c00092{bottom:208.172520px;}
.y9d_c00092{bottom:208.172850px;}
.y98_c00092{bottom:208.173090px;}
.y97_c00092{bottom:225.371910px;}
.y96_c00092{bottom:225.371970px;}
.y92_c00092{bottom:225.372360px;}
.y95_c00092{bottom:225.372450px;}
.y93_c00092{bottom:225.372480px;}
.y94_c00092{bottom:225.372540px;}
.y8e_c00092{bottom:242.926740px;}
.y8c_c00092{bottom:242.926980px;}
.y8d_c00092{bottom:242.927130px;}
.y8f_c00092{bottom:242.927400px;}
.y90_c00092{bottom:242.927850px;}
.y91_c00092{bottom:242.928360px;}
.y86_c00092{bottom:260.512200px;}
.y89_c00092{bottom:260.512560px;}
.y87_c00092{bottom:260.512830px;}
.y8a_c00092{bottom:260.512920px;}
.y88_c00092{bottom:260.513070px;}
.y8b_c00092{bottom:260.513580px;}
.y80_c00092{bottom:276.430560px;}
.y81_c00092{bottom:276.718680px;}
.y82_c00092{bottom:277.142970px;}
.y83_c00092{bottom:277.666020px;}
.y84_c00092{bottom:278.274960px;}
.y85_c00092{bottom:278.946300px;}
.y78_c00092{bottom:294.524730px;}
.y79_c00092{bottom:295.016460px;}
.y7a_c00092{bottom:295.152450px;}
.y7b_c00092{bottom:295.420650px;}
.y7c_c00092{bottom:296.152020px;}
.y7d_c00092{bottom:296.531520px;}
.y7e_c00092{bottom:296.892150px;}
.y7f_c00092{bottom:297.206550px;}
.y71_c00092{bottom:312.078900px;}
.y72_c00092{bottom:312.435330px;}
.y73_c00092{bottom:313.048980px;}
.y74_c00092{bottom:313.466640px;}
.y75_c00092{bottom:314.225130px;}
.y76_c00092{bottom:314.759160px;}
.y77_c00092{bottom:315.581820px;}
.y6a_c00092{bottom:327.742020px;}
.y6b_c00092{bottom:328.184340px;}
.y6c_c00092{bottom:329.110470px;}
.y6d_c00092{bottom:329.703930px;}
.y6e_c00092{bottom:330.239130px;}
.y6f_c00092{bottom:330.575280px;}
.y70_c00092{bottom:330.925770px;}
.y60_c00092{bottom:344.212920px;}
.y61_c00092{bottom:344.420730px;}
.y62_c00092{bottom:344.724990px;}
.y63_c00092{bottom:344.942160px;}
.y64_c00092{bottom:345.342720px;}
.y65_c00092{bottom:345.580470px;}
.y66_c00092{bottom:345.958560px;}
.y67_c00092{bottom:346.394220px;}
.y68_c00092{bottom:346.846410px;}
.y69_c00092{bottom:347.174010px;}
.y5a_c00092{bottom:360.687330px;}
.y5b_c00092{bottom:361.426350px;}
.y5c_c00092{bottom:362.738190px;}
.y5d_c00092{bottom:363.037380px;}
.y5e_c00092{bottom:363.871980px;}
.y5f_c00092{bottom:365.081580px;}
.y53_c00092{bottom:377.971260px;}
.y54_c00092{bottom:379.258800px;}
.y55_c00092{bottom:380.490180px;}
.y56_c00092{bottom:380.832990px;}
.y57_c00092{bottom:381.383820px;}
.y58_c00092{bottom:382.328160px;}
.y59_c00092{bottom:382.908960px;}
.y4c_c00092{bottom:396.332820px;}
.y4d_c00092{bottom:396.773850px;}
.y4e_c00092{bottom:397.659000px;}
.y4f_c00092{bottom:398.644560px;}
.y50_c00092{bottom:399.312690px;}
.y51_c00092{bottom:400.482390px;}
.y52_c00092{bottom:401.013570px;}
.y43_c00092{bottom:411.458610px;}
.y44_c00092{bottom:412.310580px;}
.y45_c00092{bottom:412.727550px;}
.y46_c00092{bottom:413.278560px;}
.y47_c00092{bottom:415.247280px;}
.y48_c00092{bottom:415.949250px;}
.y49_c00092{bottom:416.498070px;}
.y4a_c00092{bottom:417.639720px;}
.y4b_c00092{bottom:418.358670px;}
.y3c_c00092{bottom:429.281460px;}
.y3d_c00092{bottom:430.102920px;}
.y3e_c00092{bottom:430.673250px;}
.y3f_c00092{bottom:432.786930px;}
.y40_c00092{bottom:434.316090px;}
.y41_c00092{bottom:435.240480px;}
.y42_c00092{bottom:435.593850px;}
.y35_c00092{bottom:447.102120px;}
.y36_c00092{bottom:448.854210px;}
.y37_c00092{bottom:449.526000px;}
.y38_c00092{bottom:450.938940px;}
.y39_c00092{bottom:451.545210px;}
.y3a_c00092{bottom:451.910250px;}
.y3b_c00092{bottom:453.015510px;}
.y2e_c00092{bottom:464.653860px;}
.y2f_c00092{bottom:465.823440px;}
.y30_c00092{bottom:466.256910px;}
.y31_c00092{bottom:467.045040px;}
.y32_c00092{bottom:467.321490px;}
.y33_c00092{bottom:468.404130px;}
.y34_c00092{bottom:470.033070px;}
.y29_c00092{bottom:481.936470px;}
.y2a_c00092{bottom:482.805480px;}
.y2b_c00092{bottom:483.470970px;}
.y2c_c00092{bottom:484.896720px;}
.y2d_c00092{bottom:486.881430px;}
.y20_c00092{bottom:498.414900px;}
.y21_c00092{bottom:499.463880px;}
.y22_c00092{bottom:500.204490px;}
.y23_c00092{bottom:500.724660px;}
.y24_c00092{bottom:501.965640px;}
.y25_c00092{bottom:503.161830px;}
.y26_c00092{bottom:504.129000px;}
.y27_c00092{bottom:505.229310px;}
.y28_c00092{bottom:505.562340px;}
.y18_c00092{bottom:518.661180px;}
.y19_c00092{bottom:519.268740px;}
.y1a_c00092{bottom:520.292310px;}
.y1b_c00092{bottom:520.766070px;}
.y1c_c00092{bottom:521.510700px;}
.y1d_c00092{bottom:521.722110px;}
.y1e_c00092{bottom:522.134550px;}
.y1f_c00092{bottom:523.553400px;}
.y13_c00092{bottom:535.136310px;}
.y14_c00092{bottom:535.757280px;}
.y15_c00092{bottom:537.550050px;}
.y16_c00092{bottom:539.069610px;}
.y17_c00092{bottom:540.016110px;}
.yb_c00092{bottom:550.533150px;}
.yc_c00092{bottom:551.345520px;}
.yd_c00092{bottom:553.239630px;}
.ye_c00092{bottom:553.494120px;}
.yf_c00092{bottom:554.924220px;}
.y10_c00092{bottom:555.363420px;}
.y11_c00092{bottom:556.758690px;}
.y12_c00092{bottom:557.099730px;}
.y2_c00092{bottom:567.276000px;}
.y3_c00092{bottom:568.463880px;}
.y4_c00092{bottom:568.685670px;}
.y5_c00092{bottom:569.477700px;}
.y6_c00092{bottom:569.726490px;}
.y7_c00092{bottom:570.294900px;}
.y8_c00092{bottom:571.402980px;}
.y9_c00092{bottom:571.790400px;}
.ya_c00092{bottom:572.273160px;}
.y1_c00092{bottom:585.634500px;}
.he_c00092{height:58.811759px;}
.h9_c00092{height:60.912179px;}
.h7_c00092{height:61.962389px;}
.h3_c00092{height:63.012599px;}
.ha_c00092{height:64.062809px;}
.hc_c00092{height:65.113019px;}
.h5_c00092{height:66.163229px;}
.h4_c00092{height:67.213439px;}
.h6_c00092{height:68.263649px;}
.hd_c00092{height:69.313859px;}
.hf_c00092{height:70.364069px;}
.h8_c00092{height:71.414279px;}
.h2_c00092{height:73.500000px;}
.hb_c00092{height:73.514699px;}
.h0_c00092{height:624.450000px;}
.h1_c00092{height:624.750000px;}
.w0_c00092{width:371.790000px;}
.w1_c00092{width:372.000000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:30.786000px;}
.xb_c00092{left:31.803630px;}
.x22_c00092{left:32.866440px;}
.x2c_c00092{left:34.020810px;}
.x65_c00092{left:35.105700px;}
.x79_c00092{left:41.044470px;}
.x7d_c00092{left:42.519840px;}
.x45_c00092{left:53.011710px;}
.x75_c00092{left:57.516180px;}
.x3d_c00092{left:58.798380px;}
.x57_c00092{left:60.090540px;}
.xc_c00092{left:61.917930px;}
.x50_c00092{left:63.285270px;}
.x6e_c00092{left:64.540650px;}
.x15_c00092{left:67.922610px;}
.x37_c00092{left:69.578580px;}
.x4a_c00092{left:70.948980px;}
.x1b_c00092{left:73.102620px;}
.x66_c00092{left:74.804070px;}
.x5f_c00092{left:76.963800px;}
.x53_c00092{left:78.671160px;}
.x42_c00092{left:80.663790px;}
.x76_c00092{left:81.821400px;}
.x26_c00092{left:86.383470px;}
.x70_c00092{left:88.572330px;}
.x3_c00092{left:90.180000px;}
.x32_c00092{left:91.853880px;}
.x58_c00092{left:98.712000px;}
.x4_c00092{left:101.269500px;}
.x23_c00092{left:102.613650px;}
.x77_c00092{left:104.776080px;}
.x27_c00092{left:106.106190px;}
.x3e_c00092{left:107.932830px;}
.x38_c00092{left:109.949370px;}
.x2d_c00092{left:113.672130px;}
.x54_c00092{left:115.462290px;}
.x68_c00092{left:117.712410px;}
.x5a_c00092{left:119.632830px;}
.x1c_c00092{left:121.585800px;}
.x7a_c00092{left:123.140790px;}
.x16_c00092{left:128.104710px;}
.xd_c00092{left:132.088620px;}
.x46_c00092{left:136.776270px;}
.x5_c00092{left:140.871000px;}
.x28_c00092{left:141.911250px;}
.x2e_c00092{left:144.185400px;}
.x12_c00092{left:146.904210px;}
.x4b_c00092{left:148.092810px;}
.x51_c00092{left:149.214510px;}
.x6c_c00092{left:151.229220px;}
.x6_c00092{left:153.310500px;}
.x29_c00092{left:154.458240px;}
.x17_c00092{left:155.994390px;}
.x47_c00092{left:158.342640px;}
.x71_c00092{left:160.135950px;}
.x3f_c00092{left:162.688020px;}
.x1_c00092{left:163.890000px;}
.x78_c00092{left:166.078590px;}
.x24_c00092{left:167.448570px;}
.x1d_c00092{left:169.304070px;}
.x62_c00092{left:171.482460px;}
.x5b_c00092{left:173.103720px;}
.x33_c00092{left:179.905830px;}
.x7_c00092{left:181.731000px;}
.x40_c00092{left:185.149590px;}
.x39_c00092{left:191.953800px;}
.x7b_c00092{left:193.085250px;}
.xe_c00092{left:194.484390px;}
.x4c_c00092{left:197.573730px;}
.x18_c00092{left:199.753500px;}
.x59_c00092{left:201.605010px;}
.x2a_c00092{left:203.638260px;}
.x6d_c00092{left:205.238640px;}
.x2f_c00092{left:208.379820px;}
.x69_c00092{left:209.414070px;}
.xf_c00092{left:210.742110px;}
.x19_c00092{left:212.199750px;}
.x41_c00092{left:214.116660px;}
.x1e_c00092{left:215.308050px;}
.x55_c00092{left:216.398940px;}
.x13_c00092{left:219.280770px;}
.x3a_c00092{left:221.199960px;}
.x5d_c00092{left:226.843770px;}
.x6a_c00092{left:228.437820px;}
.x48_c00092{left:232.343460px;}
.x43_c00092{left:233.557530px;}
.x7c_c00092{left:234.674370px;}
.x30_c00092{left:235.917210px;}
.x8_c00092{left:237.135000px;}
.x72_c00092{left:238.452270px;}
.x60_c00092{left:240.077520px;}
.x4d_c00092{left:242.115840px;}
.x34_c00092{left:243.608730px;}
.x56_c00092{left:249.136320px;}
.x1f_c00092{left:252.487080px;}
.x9_c00092{left:256.506000px;}
.x25_c00092{left:257.680470px;}
.x73_c00092{left:260.596620px;}
.x10_c00092{left:262.423380px;}
.x14_c00092{left:264.354870px;}
.x67_c00092{left:265.731420px;}
.x5e_c00092{left:267.082350px;}
.x63_c00092{left:268.431720px;}
.x4e_c00092{left:270.177840px;}
.x49_c00092{left:273.410340px;}
.x11_c00092{left:275.048610px;}
.x2b_c00092{left:277.657290px;}
.xa_c00092{left:280.644000px;}
.x35_c00092{left:282.100140px;}
.x61_c00092{left:284.096130px;}
.x74_c00092{left:286.252380px;}
.x3b_c00092{left:291.617820px;}
.x5c_c00092{left:293.277750px;}
.x20_c00092{left:294.822510px;}
.x36_c00092{left:296.842470px;}
.x4f_c00092{left:299.407020px;}
.x31_c00092{left:302.754540px;}
.x21_c00092{left:307.647480px;}
.x44_c00092{left:309.118560px;}
.x64_c00092{left:314.070960px;}
.x6f_c00092{left:317.848200px;}
.x1a_c00092{left:319.970730px;}
.x3c_c00092{left:321.562920px;}
.x52_c00092{left:325.576740px;}
.x6b_c00092{left:327.275280px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
.fsc_c00092{font-size:52.277119pt;}
.fs7_c00092{font-size:54.144159pt;}
.fs5_c00092{font-size:55.077679pt;}
.fs1_c00092{font-size:56.011199pt;}
.fs8_c00092{font-size:56.944719pt;}
.fsa_c00092{font-size:57.878239pt;}
.fs3_c00092{font-size:58.811759pt;}
.fs2_c00092{font-size:59.745279pt;}
.fs4_c00092{font-size:60.678799pt;}
.fsb_c00092{font-size:61.612319pt;}
.fsd_c00092{font-size:62.545839pt;}
.fs6_c00092{font-size:63.479359pt;}
.fs0_c00092{font-size:65.333333pt;}
.fs9_c00092{font-size:65.346399pt;}
.y0_c00092{bottom:0.000000pt;}
.ye8_c00092{bottom:27.142347pt;}
.ye7_c00092{bottom:27.799360pt;}
.ye6_c00092{bottom:28.051680pt;}
.ye5_c00092{bottom:28.243947pt;}
.ye4_c00092{bottom:28.996453pt;}
.ye3_c00092{bottom:29.886987pt;}
.ye2_c00092{bottom:30.160293pt;}
.yda_c00092{bottom:45.245440pt;}
.ydb_c00092{bottom:45.245467pt;}
.ydc_c00092{bottom:45.245680pt;}
.ydd_c00092{bottom:45.245973pt;}
.yde_c00092{bottom:45.246160pt;}
.ydf_c00092{bottom:45.246373pt;}
.ye1_c00092{bottom:45.246667pt;}
.ye0_c00092{bottom:45.246720pt;}
.yd7_c00092{bottom:60.734293pt;}
.yd1_c00092{bottom:60.734560pt;}
.yd6_c00092{bottom:60.734640pt;}
.yd8_c00092{bottom:60.734773pt;}
.yd4_c00092{bottom:60.734853pt;}
.yd5_c00092{bottom:60.734907pt;}
.yd3_c00092{bottom:60.734933pt;}
.yd2_c00092{bottom:60.735013pt;}
.yd9_c00092{bottom:60.735413pt;}
.yce_c00092{bottom:76.019147pt;}
.yd0_c00092{bottom:76.019253pt;}
.ycf_c00092{bottom:76.019333pt;}
.ycd_c00092{bottom:76.019413pt;}
.yca_c00092{bottom:76.019493pt;}
.ycb_c00092{bottom:76.019680pt;}
.ycc_c00092{bottom:76.019760pt;}
.yc9_c00092{bottom:76.019867pt;}
.yc1_c00092{bottom:91.727413pt;}
.yc0_c00092{bottom:91.727520pt;}
.yc2_c00092{bottom:91.727787pt;}
.yc8_c00092{bottom:91.728347pt;}
.yc3_c00092{bottom:91.728453pt;}
.yc7_c00092{bottom:91.728693pt;}
.yc4_c00092{bottom:91.728773pt;}
.yc5_c00092{bottom:91.728907pt;}
.yc6_c00092{bottom:91.729307pt;}
.ybe_c00092{bottom:107.012773pt;}
.ybd_c00092{bottom:107.012960pt;}
.yba_c00092{bottom:107.013013pt;}
.ybc_c00092{bottom:107.013040pt;}
.yb9_c00092{bottom:107.013120pt;}
.ybf_c00092{bottom:107.013253pt;}
.ybb_c00092{bottom:107.013360pt;}
.yb2_c00092{bottom:124.208027pt;}
.yb3_c00092{bottom:124.208453pt;}
.yb4_c00092{bottom:124.208747pt;}
.yb5_c00092{bottom:124.208933pt;}
.yb7_c00092{bottom:124.209253pt;}
.yb6_c00092{bottom:124.209520pt;}
.yb8_c00092{bottom:124.209707pt;}
.yac_c00092{bottom:138.806960pt;}
.yab_c00092{bottom:138.807200pt;}
.yb1_c00092{bottom:138.807307pt;}
.yad_c00092{bottom:138.807573pt;}
.yb0_c00092{bottom:138.807733pt;}
.yae_c00092{bottom:138.808053pt;}
.yaf_c00092{bottom:138.808320pt;}
.ya4_c00092{bottom:149.461920pt;}
.ya5_c00092{bottom:150.200267pt;}
.ya6_c00092{bottom:150.786080pt;}
.ya7_c00092{bottom:151.816880pt;}
.ya8_c00092{bottom:152.253600pt;}
.ya9_c00092{bottom:152.558453pt;}
.yaa_c00092{bottom:154.139493pt;}
.ya1_c00092{bottom:169.334240pt;}
.ya0_c00092{bottom:169.334453pt;}
.ya2_c00092{bottom:169.334560pt;}
.y9e_c00092{bottom:169.334853pt;}
.y9f_c00092{bottom:169.334987pt;}
.ya3_c00092{bottom:169.335440pt;}
.y9a_c00092{bottom:185.041973pt;}
.y99_c00092{bottom:185.042107pt;}
.y9c_c00092{bottom:185.042160pt;}
.y9b_c00092{bottom:185.042240pt;}
.y9d_c00092{bottom:185.042533pt;}
.y98_c00092{bottom:185.042747pt;}
.y97_c00092{bottom:200.330587pt;}
.y96_c00092{bottom:200.330640pt;}
.y92_c00092{bottom:200.330987pt;}
.y95_c00092{bottom:200.331067pt;}
.y93_c00092{bottom:200.331093pt;}
.y94_c00092{bottom:200.331147pt;}
.y8e_c00092{bottom:215.934880pt;}
.y8c_c00092{bottom:215.935093pt;}
.y8d_c00092{bottom:215.935227pt;}
.y8f_c00092{bottom:215.935467pt;}
.y90_c00092{bottom:215.935867pt;}
.y91_c00092{bottom:215.936320pt;}
.y86_c00092{bottom:231.566400pt;}
.y89_c00092{bottom:231.566720pt;}
.y87_c00092{bottom:231.566960pt;}
.y8a_c00092{bottom:231.567040pt;}
.y88_c00092{bottom:231.567173pt;}
.y8b_c00092{bottom:231.567627pt;}
.y80_c00092{bottom:245.716053pt;}
.y81_c00092{bottom:245.972160pt;}
.y82_c00092{bottom:246.349307pt;}
.y83_c00092{bottom:246.814240pt;}
.y84_c00092{bottom:247.355520pt;}
.y85_c00092{bottom:247.952267pt;}
.y78_c00092{bottom:261.799760pt;}
.y79_c00092{bottom:262.236853pt;}
.y7a_c00092{bottom:262.357733pt;}
.y7b_c00092{bottom:262.596133pt;}
.y7c_c00092{bottom:263.246240pt;}
.y7d_c00092{bottom:263.583573pt;}
.y7e_c00092{bottom:263.904133pt;}
.y7f_c00092{bottom:264.183600pt;}
.y71_c00092{bottom:277.403467pt;}
.y72_c00092{bottom:277.720293pt;}
.y73_c00092{bottom:278.265760pt;}
.y74_c00092{bottom:278.637013pt;}
.y75_c00092{bottom:279.311227pt;}
.y76_c00092{bottom:279.785920pt;}
.y77_c00092{bottom:280.517173pt;}
.y6a_c00092{bottom:291.326240pt;}
.y6b_c00092{bottom:291.719413pt;}
.y6c_c00092{bottom:292.542640pt;}
.y6d_c00092{bottom:293.070160pt;}
.y6e_c00092{bottom:293.545893pt;}
.y6f_c00092{bottom:293.844693pt;}
.y70_c00092{bottom:294.156240pt;}
.y60_c00092{bottom:305.967040pt;}
.y61_c00092{bottom:306.151760pt;}
.y62_c00092{bottom:306.422213pt;}
.y63_c00092{bottom:306.615253pt;}
.y64_c00092{bottom:306.971307pt;}
.y65_c00092{bottom:307.182640pt;}
.y66_c00092{bottom:307.518720pt;}
.y67_c00092{bottom:307.905973pt;}
.y68_c00092{bottom:308.307920pt;}
.y69_c00092{bottom:308.599120pt;}
.y5a_c00092{bottom:320.610960pt;}
.y5b_c00092{bottom:321.267867pt;}
.y5c_c00092{bottom:322.433947pt;}
.y5d_c00092{bottom:322.699893pt;}
.y5e_c00092{bottom:323.441760pt;}
.y5f_c00092{bottom:324.516960pt;}
.y53_c00092{bottom:335.974453pt;}
.y54_c00092{bottom:337.118933pt;}
.y55_c00092{bottom:338.213493pt;}
.y56_c00092{bottom:338.518213pt;}
.y57_c00092{bottom:339.007840pt;}
.y58_c00092{bottom:339.847253pt;}
.y59_c00092{bottom:340.363520pt;}
.y4c_c00092{bottom:352.295840pt;}
.y4d_c00092{bottom:352.687867pt;}
.y4e_c00092{bottom:353.474667pt;}
.y4f_c00092{bottom:354.350720pt;}
.y50_c00092{bottom:354.944613pt;}
.y51_c00092{bottom:355.984347pt;}
.y52_c00092{bottom:356.456507pt;}
.y43_c00092{bottom:365.740987pt;}
.y44_c00092{bottom:366.498293pt;}
.y45_c00092{bottom:366.868933pt;}
.y46_c00092{bottom:367.358720pt;}
.y47_c00092{bottom:369.108693pt;}
.y48_c00092{bottom:369.732667pt;}
.y49_c00092{bottom:370.220507pt;}
.y4a_c00092{bottom:371.235307pt;}
.y4b_c00092{bottom:371.874373pt;}
.y3c_c00092{bottom:381.583520pt;}
.y3d_c00092{bottom:382.313707pt;}
.y3e_c00092{bottom:382.820667pt;}
.y3f_c00092{bottom:384.699493pt;}
.y40_c00092{bottom:386.058747pt;}
.y41_c00092{bottom:386.880427pt;}
.y42_c00092{bottom:387.194533pt;}
.y35_c00092{bottom:397.424107pt;}
.y36_c00092{bottom:398.981520pt;}
.y37_c00092{bottom:399.578667pt;}
.y38_c00092{bottom:400.834613pt;}
.y39_c00092{bottom:401.373520pt;}
.y3a_c00092{bottom:401.698000pt;}
.y3b_c00092{bottom:402.680453pt;}
.y2e_c00092{bottom:413.025653pt;}
.y2f_c00092{bottom:414.065280pt;}
.y30_c00092{bottom:414.450587pt;}
.y31_c00092{bottom:415.151147pt;}
.y32_c00092{bottom:415.396880pt;}
.y33_c00092{bottom:416.359227pt;}
.y34_c00092{bottom:417.807173pt;}
.y29_c00092{bottom:428.387973pt;}
.y2a_c00092{bottom:429.160427pt;}
.y2b_c00092{bottom:429.751973pt;}
.y2c_c00092{bottom:431.019307pt;}
.y2d_c00092{bottom:432.783493pt;}
.y20_c00092{bottom:443.035467pt;}
.y21_c00092{bottom:443.967893pt;}
.y22_c00092{bottom:444.626213pt;}
.y23_c00092{bottom:445.088587pt;}
.y24_c00092{bottom:446.191680pt;}
.y25_c00092{bottom:447.254960pt;}
.y26_c00092{bottom:448.114667pt;}
.y27_c00092{bottom:449.092720pt;}
.y28_c00092{bottom:449.388747pt;}
.y18_c00092{bottom:461.032160pt;}
.y19_c00092{bottom:461.572213pt;}
.y1a_c00092{bottom:462.482053pt;}
.y1b_c00092{bottom:462.903173pt;}
.y1c_c00092{bottom:463.565067pt;}
.y1d_c00092{bottom:463.752987pt;}
.y1e_c00092{bottom:464.119600pt;}
.y1f_c00092{bottom:465.380800pt;}
.y13_c00092{bottom:475.676720pt;}
.y14_c00092{bottom:476.228693pt;}
.y15_c00092{bottom:477.822267pt;}
.y16_c00092{bottom:479.172987pt;}
.y17_c00092{bottom:480.014320pt;}
.yb_c00092{bottom:489.362800pt;}
.yc_c00092{bottom:490.084907pt;}
.yd_c00092{bottom:491.768560pt;}
.ye_c00092{bottom:491.994773pt;}
.yf_c00092{bottom:493.265973pt;}
.y10_c00092{bottom:493.656373pt;}
.y11_c00092{bottom:494.896613pt;}
.y12_c00092{bottom:495.199760pt;}
.y2_c00092{bottom:504.245333pt;}
.y3_c00092{bottom:505.301227pt;}
.y4_c00092{bottom:505.498373pt;}
.y5_c00092{bottom:506.202400pt;}
.y6_c00092{bottom:506.423547pt;}
.y7_c00092{bottom:506.928800pt;}
.y8_c00092{bottom:507.913760pt;}
.y9_c00092{bottom:508.258133pt;}
.ya_c00092{bottom:508.687253pt;}
.y1_c00092{bottom:520.564000pt;}
.he_c00092{height:52.277119pt;}
.h9_c00092{height:54.144159pt;}
.h7_c00092{height:55.077679pt;}
.h3_c00092{height:56.011199pt;}
.ha_c00092{height:56.944719pt;}
.hc_c00092{height:57.878239pt;}
.h5_c00092{height:58.811759pt;}
.h4_c00092{height:59.745279pt;}
.h6_c00092{height:60.678799pt;}
.hd_c00092{height:61.612319pt;}
.hf_c00092{height:62.545839pt;}
.h8_c00092{height:63.479359pt;}
.h2_c00092{height:65.333333pt;}
.hb_c00092{height:65.346399pt;}
.h0_c00092{height:555.066667pt;}
.h1_c00092{height:555.333333pt;}
.w0_c00092{width:330.480000pt;}
.w1_c00092{width:330.666667pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:27.365333pt;}
.xb_c00092{left:28.269893pt;}
.x22_c00092{left:29.214613pt;}
.x2c_c00092{left:30.240720pt;}
.x65_c00092{left:31.205067pt;}
.x79_c00092{left:36.483973pt;}
.x7d_c00092{left:37.795413pt;}
.x45_c00092{left:47.121520pt;}
.x75_c00092{left:51.125493pt;}
.x3d_c00092{left:52.265227pt;}
.x57_c00092{left:53.413813pt;}
.xc_c00092{left:55.038160pt;}
.x50_c00092{left:56.253573pt;}
.x6e_c00092{left:57.369467pt;}
.x15_c00092{left:60.375653pt;}
.x37_c00092{left:61.847627pt;}
.x4a_c00092{left:63.065760pt;}
.x1b_c00092{left:64.980107pt;}
.x66_c00092{left:66.492507pt;}
.x5f_c00092{left:68.412267pt;}
.x53_c00092{left:69.929920pt;}
.x42_c00092{left:71.701147pt;}
.x76_c00092{left:72.730133pt;}
.x26_c00092{left:76.785307pt;}
.x70_c00092{left:78.730960pt;}
.x3_c00092{left:80.160000pt;}
.x32_c00092{left:81.647893pt;}
.x58_c00092{left:87.744000pt;}
.x4_c00092{left:90.017333pt;}
.x23_c00092{left:91.212133pt;}
.x77_c00092{left:93.134293pt;}
.x27_c00092{left:94.316613pt;}
.x3e_c00092{left:95.940293pt;}
.x38_c00092{left:97.732773pt;}
.x2d_c00092{left:101.041893pt;}
.x54_c00092{left:102.633147pt;}
.x68_c00092{left:104.633253pt;}
.x5a_c00092{left:106.340293pt;}
.x1c_c00092{left:108.076267pt;}
.x7a_c00092{left:109.458480pt;}
.x16_c00092{left:113.870853pt;}
.xd_c00092{left:117.412107pt;}
.x46_c00092{left:121.578907pt;}
.x5_c00092{left:125.218667pt;}
.x28_c00092{left:126.143333pt;}
.x2e_c00092{left:128.164800pt;}
.x12_c00092{left:130.581520pt;}
.x4b_c00092{left:131.638053pt;}
.x51_c00092{left:132.635120pt;}
.x6c_c00092{left:134.425973pt;}
.x6_c00092{left:136.276000pt;}
.x29_c00092{left:137.296213pt;}
.x17_c00092{left:138.661680pt;}
.x47_c00092{left:140.749013pt;}
.x71_c00092{left:142.343067pt;}
.x3f_c00092{left:144.611573pt;}
.x1_c00092{left:145.680000pt;}
.x78_c00092{left:147.625413pt;}
.x24_c00092{left:148.843173pt;}
.x1d_c00092{left:150.492507pt;}
.x62_c00092{left:152.428853pt;}
.x5b_c00092{left:153.869973pt;}
.x33_c00092{left:159.916293pt;}
.x7_c00092{left:161.538667pt;}
.x40_c00092{left:164.577413pt;}
.x39_c00092{left:170.625600pt;}
.x7b_c00092{left:171.631333pt;}
.xe_c00092{left:172.875013pt;}
.x4c_c00092{left:175.621093pt;}
.x18_c00092{left:177.558667pt;}
.x59_c00092{left:179.204453pt;}
.x2a_c00092{left:181.011787pt;}
.x6d_c00092{left:182.434347pt;}
.x2f_c00092{left:185.226507pt;}
.x69_c00092{left:186.145840pt;}
.xf_c00092{left:187.326320pt;}
.x19_c00092{left:188.622000pt;}
.x41_c00092{left:190.325920pt;}
.x1e_c00092{left:191.384933pt;}
.x55_c00092{left:192.354613pt;}
.x13_c00092{left:194.916240pt;}
.x3a_c00092{left:196.622187pt;}
.x5d_c00092{left:201.638907pt;}
.x6a_c00092{left:203.055840pt;}
.x48_c00092{left:206.527520pt;}
.x43_c00092{left:207.606693pt;}
.x7c_c00092{left:208.599440pt;}
.x30_c00092{left:209.704187pt;}
.x8_c00092{left:210.786667pt;}
.x72_c00092{left:211.957573pt;}
.x60_c00092{left:213.402240pt;}
.x4d_c00092{left:215.214080pt;}
.x34_c00092{left:216.541093pt;}
.x56_c00092{left:221.454507pt;}
.x1f_c00092{left:224.432960pt;}
.x9_c00092{left:228.005333pt;}
.x25_c00092{left:229.049307pt;}
.x73_c00092{left:231.641440pt;}
.x10_c00092{left:233.265227pt;}
.x14_c00092{left:234.982107pt;}
.x67_c00092{left:236.205707pt;}
.x5e_c00092{left:237.406533pt;}
.x63_c00092{left:238.605973pt;}
.x4e_c00092{left:240.158080pt;}
.x49_c00092{left:243.031413pt;}
.x11_c00092{left:244.487653pt;}
.x2b_c00092{left:246.806480pt;}
.xa_c00092{left:249.461333pt;}
.x35_c00092{left:250.755680pt;}
.x61_c00092{left:252.529893pt;}
.x74_c00092{left:254.446560pt;}
.x3b_c00092{left:259.215840pt;}
.x5c_c00092{left:260.691333pt;}
.x20_c00092{left:262.064453pt;}
.x36_c00092{left:263.859973pt;}
.x4f_c00092{left:266.139573pt;}
.x31_c00092{left:269.115147pt;}
.x21_c00092{left:273.464427pt;}
.x44_c00092{left:274.772053pt;}
.x64_c00092{left:279.174187pt;}
.x6f_c00092{left:282.531733pt;}
.x1a_c00092{left:284.418427pt;}
.x3c_c00092{left:285.833707pt;}
.x52_c00092{left:289.401547pt;}
.x6b_c00092{left:290.911360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00093 {
    display:none;
  }
  .loading-indicator_c00093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00093 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00093 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00093" -> "#page-container .classname_c00093")
 */
.pf_c00093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00093 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00093 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00093 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00093 {overflow:visible;}
  }
}
.c_c00093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00093 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00093:after { /* webkit #35443 */
  content: '';
}
.t_c00093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00093 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00093 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00093 { /* info for Javascript */
  display:none;
}
.l_c00093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00093:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00093 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00093.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7f_c00093{transform:matrix(0.118476,0.002133,-0.004499,0.249960,0,0);-ms-transform:matrix(0.118476,0.002133,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.118476,0.002133,-0.004499,0.249960,0,0);}
.m9f_c00093{transform:matrix(0.130564,0.002350,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130564,0.002350,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130564,0.002350,-0.004499,0.249960,0,0);}
.m83_c00093{transform:matrix(0.130849,0.002355,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130849,0.002355,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130849,0.002355,-0.004499,0.249960,0,0);}
.m18_c00093{transform:matrix(0.137170,0.002058,-0.003750,0.249972,0,0);-ms-transform:matrix(0.137170,0.002058,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.137170,0.002058,-0.003750,0.249972,0,0);}
.m93_c00093{transform:matrix(0.138258,0.002489,-0.004499,0.249960,0,0);-ms-transform:matrix(0.138258,0.002489,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.138258,0.002489,-0.004499,0.249960,0,0);}
.mb4_c00093{transform:matrix(0.141167,0.002541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141167,0.002541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141167,0.002541,-0.004499,0.249960,0,0);}
.ma3_c00093{transform:matrix(0.143082,0.002575,-0.004499,0.249960,0,0);-ms-transform:matrix(0.143082,0.002575,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.143082,0.002575,-0.004499,0.249960,0,0);}
.m79_c00093{transform:matrix(0.145661,0.002622,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145661,0.002622,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145661,0.002622,-0.004499,0.249960,0,0);}
.m9e_c00093{transform:matrix(0.145906,0.002626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145906,0.002626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145906,0.002626,-0.004499,0.249960,0,0);}
.m20_c00093{transform:matrix(0.149523,0.002243,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149523,0.002243,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149523,0.002243,-0.003750,0.249972,0,0);}
.m7c_c00093{transform:matrix(0.150441,0.002708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150441,0.002708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150441,0.002708,-0.004499,0.249960,0,0);}
.ma4_c00093{transform:matrix(0.151066,0.002719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151066,0.002719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151066,0.002719,-0.004499,0.249960,0,0);}
.md_c00093{transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);}
.ma0_c00093{transform:matrix(0.152185,0.002739,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152185,0.002739,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152185,0.002739,-0.004499,0.249960,0,0);}
.mca_c00093{transform:matrix(0.154475,0.002781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154475,0.002781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154475,0.002781,-0.004499,0.249960,0,0);}
.mcc_c00093{transform:matrix(0.154645,0.002784,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154645,0.002784,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154645,0.002784,-0.004499,0.249960,0,0);}
.m6f_c00093{transform:matrix(0.155070,0.002791,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155070,0.002791,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155070,0.002791,-0.004499,0.249960,0,0);}
.md4_c00093{transform:matrix(0.155945,0.002807,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155945,0.002807,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155945,0.002807,-0.004499,0.249960,0,0);}
.mf1_c00093{transform:matrix(0.156040,0.002809,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156040,0.002809,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156040,0.002809,-0.004499,0.249960,0,0);}
.m2_c00093{transform:matrix(0.156207,0.002343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156207,0.002343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156207,0.002343,-0.003750,0.249972,0,0);}
.mc5_c00093{transform:matrix(0.157390,0.002833,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157390,0.002833,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157390,0.002833,-0.004499,0.249960,0,0);}
.ma_c00093{transform:matrix(0.159877,0.002398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159877,0.002398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159877,0.002398,-0.003750,0.249972,0,0);}
.m69_c00093{transform:matrix(0.160204,0.002884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160204,0.002884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160204,0.002884,-0.004499,0.249960,0,0);}
.m12_c00093{transform:matrix(0.160272,0.002404,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160272,0.002404,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160272,0.002404,-0.003750,0.249972,0,0);}
.me6_c00093{transform:matrix(0.160939,0.002897,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160939,0.002897,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160939,0.002897,-0.004499,0.249960,0,0);}
.m9c_c00093{transform:matrix(0.160974,0.002898,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160974,0.002898,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160974,0.002898,-0.004499,0.249960,0,0);}
.m10_c00093{transform:matrix(0.161042,0.002416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161042,0.002416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161042,0.002416,-0.003750,0.249972,0,0);}
.m4b_c00093{transform:matrix(0.161912,0.002429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161912,0.002429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161912,0.002429,-0.003750,0.249972,0,0);}
.m71_c00093{transform:matrix(0.163089,0.002936,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163089,0.002936,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163089,0.002936,-0.004499,0.249960,0,0);}
.m44_c00093{transform:matrix(0.163207,0.002448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163207,0.002448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163207,0.002448,-0.003750,0.249972,0,0);}
.m90_c00093{transform:matrix(0.163244,0.002938,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163244,0.002938,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163244,0.002938,-0.004499,0.249960,0,0);}
.m6_c00093{transform:matrix(0.163292,0.002449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163292,0.002449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163292,0.002449,-0.003750,0.249972,0,0);}
.m86_c00093{transform:matrix(0.163369,0.002941,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163369,0.002941,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163369,0.002941,-0.004499,0.249960,0,0);}
.m7a_c00093{transform:matrix(0.163733,0.002947,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163733,0.002947,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163733,0.002947,-0.004499,0.249960,0,0);}
.mb2_c00093{transform:matrix(0.164018,0.002952,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164018,0.002952,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164018,0.002952,-0.004499,0.249960,0,0);}
.me7_c00093{transform:matrix(0.164758,0.002966,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164758,0.002966,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164758,0.002966,-0.004499,0.249960,0,0);}
.m7_c00093{transform:matrix(0.164771,0.002472,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164771,0.002472,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164771,0.002472,-0.003750,0.249972,0,0);}
.m5c_c00093{transform:matrix(0.164954,0.002639,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164954,0.002639,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164954,0.002639,-0.003999,0.249968,0,0);}
.m17_c00093{transform:matrix(0.165771,0.002487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165771,0.002487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165771,0.002487,-0.003750,0.249972,0,0);}
.mc8_c00093{transform:matrix(0.166478,0.002997,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166478,0.002997,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166478,0.002997,-0.004499,0.249960,0,0);}
.mc2_c00093{transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);}
.mb9_c00093{transform:matrix(0.167858,0.003021,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167858,0.003021,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167858,0.003021,-0.004499,0.249960,0,0);}
.m84_c00093{transform:matrix(0.168058,0.003025,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168058,0.003025,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168058,0.003025,-0.004499,0.249960,0,0);}
.m9a_c00093{transform:matrix(0.168628,0.003035,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168628,0.003035,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168628,0.003035,-0.004499,0.249960,0,0);}
.md1_c00093{transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);}
.mae_c00093{transform:matrix(0.169827,0.003057,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169827,0.003057,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169827,0.003057,-0.004499,0.249960,0,0);}
.m2d_c00093{transform:matrix(0.169836,0.002548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169836,0.002548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169836,0.002548,-0.003750,0.249972,0,0);}
.m48_c00093{transform:matrix(0.171036,0.002566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171036,0.002566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171036,0.002566,-0.003750,0.249972,0,0);}
.m85_c00093{transform:matrix(0.171572,0.003088,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171572,0.003088,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171572,0.003088,-0.004499,0.249960,0,0);}
.m37_c00093{transform:matrix(0.171616,0.002574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171616,0.002574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171616,0.002574,-0.003750,0.249972,0,0);}
.md8_c00093{transform:matrix(0.171997,0.003096,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171997,0.003096,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171997,0.003096,-0.004499,0.249960,0,0);}
.mee_c00093{transform:matrix(0.172142,0.003099,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172142,0.003099,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172142,0.003099,-0.004499,0.249960,0,0);}
.m94_c00093{transform:matrix(0.172302,0.003101,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172302,0.003101,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172302,0.003101,-0.004499,0.249960,0,0);}
.mb3_c00093{transform:matrix(0.172372,0.003103,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172372,0.003103,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172372,0.003103,-0.004499,0.249960,0,0);}
.me9_c00093{transform:matrix(0.172542,0.003106,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172542,0.003106,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172542,0.003106,-0.004499,0.249960,0,0);}
.m9d_c00093{transform:matrix(0.172622,0.003107,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172622,0.003107,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172622,0.003107,-0.004499,0.249960,0,0);}
.me_c00093{transform:matrix(0.173176,0.002598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173176,0.002598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173176,0.002598,-0.003750,0.249972,0,0);}
.m19_c00093{transform:matrix(0.173910,0.002609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173910,0.002609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173910,0.002609,-0.003750,0.249972,0,0);}
.m13_c00093{transform:matrix(0.174335,0.002615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174335,0.002615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174335,0.002615,-0.003750,0.249972,0,0);}
.m89_c00093{transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);}
.m7d_c00093{transform:matrix(0.174547,0.003142,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174547,0.003142,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174547,0.003142,-0.004499,0.249960,0,0);}
.m8c_c00093{transform:matrix(0.175182,0.003153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175182,0.003153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175182,0.003153,-0.004499,0.249960,0,0);}
.m76_c00093{transform:matrix(0.176111,0.003170,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176111,0.003170,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176111,0.003170,-0.004499,0.249960,0,0);}
.m15_c00093{transform:matrix(0.176850,0.002653,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176850,0.002653,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176850,0.002653,-0.003750,0.249972,0,0);}
.mb_c00093{transform:matrix(0.176865,0.002653,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176865,0.002653,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176865,0.002653,-0.003750,0.249972,0,0);}
.ma9_c00093{transform:matrix(0.177091,0.003188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177091,0.003188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177091,0.003188,-0.004499,0.249960,0,0);}
.m8_c00093{transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);}
.m65_c00093{transform:matrix(0.177926,0.003203,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177926,0.003203,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177926,0.003203,-0.004499,0.249960,0,0);}
.mb6_c00093{transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);}
.mb8_c00093{transform:matrix(0.178831,0.003219,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178831,0.003219,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178831,0.003219,-0.004499,0.249960,0,0);}
.mbb_c00093{transform:matrix(0.178946,0.003221,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178946,0.003221,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178946,0.003221,-0.004499,0.249960,0,0);}
.mb1_c00093{transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);}
.m32_c00093{transform:matrix(0.179455,0.002692,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179455,0.002692,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179455,0.002692,-0.003750,0.249972,0,0);}
.ma1_c00093{transform:matrix(0.179576,0.003232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179576,0.003232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179576,0.003232,-0.004499,0.249960,0,0);}
.mce_c00093{transform:matrix(0.180301,0.003245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180301,0.003245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180301,0.003245,-0.004499,0.249960,0,0);}
.mc6_c00093{transform:matrix(0.180376,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180376,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180376,0.003247,-0.004499,0.249960,0,0);}
.m2a_c00093{transform:matrix(0.180385,0.002706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180385,0.002706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180385,0.002706,-0.003750,0.249972,0,0);}
.mf0_c00093{transform:matrix(0.180636,0.003251,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180636,0.003251,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180636,0.003251,-0.004499,0.249960,0,0);}
.maa_c00093{transform:matrix(0.180686,0.003252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180686,0.003252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180686,0.003252,-0.004499,0.249960,0,0);}
.m1_c00093{transform:matrix(0.181015,0.002715,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181015,0.002715,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181015,0.002715,-0.003750,0.249972,0,0);}
.m3_c00093{transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);}
.m26_c00093{transform:matrix(0.181340,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181340,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181340,0.002720,-0.003750,0.249972,0,0);}
.m31_c00093{transform:matrix(0.181350,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181350,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181350,0.002720,-0.003750,0.249972,0,0);}
.m45_c00093{transform:matrix(0.181625,0.002724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181625,0.002724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181625,0.002724,-0.003750,0.249972,0,0);}
.m66_c00093{transform:matrix(0.182230,0.003280,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182230,0.003280,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182230,0.003280,-0.004499,0.249960,0,0);}
.m11_c00093{transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);}
.m78_c00093{transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);}
.mcf_c00093{transform:matrix(0.183055,0.003295,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183055,0.003295,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183055,0.003295,-0.004499,0.249960,0,0);}
.m73_c00093{transform:matrix(0.183340,0.003300,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183340,0.003300,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183340,0.003300,-0.004499,0.249960,0,0);}
.mf_c00093{transform:matrix(0.183394,0.002751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183394,0.002751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183394,0.002751,-0.003750,0.249972,0,0);}
.m77_c00093{transform:matrix(0.183430,0.003302,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183430,0.003302,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183430,0.003302,-0.004499,0.249960,0,0);}
.m8d_c00093{transform:matrix(0.184145,0.003315,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184145,0.003315,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184145,0.003315,-0.004499,0.249960,0,0);}
.m4_c00093{transform:matrix(0.184464,0.002767,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184464,0.002767,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184464,0.002767,-0.003750,0.249972,0,0);}
.m24_c00093{transform:matrix(0.184514,0.002768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184514,0.002768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184514,0.002768,-0.003750,0.249972,0,0);}
.m49_c00093{transform:matrix(0.184684,0.002770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184684,0.002770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184684,0.002770,-0.003750,0.249972,0,0);}
.meb_c00093{transform:matrix(0.184710,0.003325,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184710,0.003325,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184710,0.003325,-0.004499,0.249960,0,0);}
.med_c00093{transform:matrix(0.184750,0.003326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184750,0.003326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184750,0.003326,-0.004499,0.249960,0,0);}
.mec_c00093{transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);}
.m14_c00093{transform:matrix(0.185004,0.002775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185004,0.002775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185004,0.002775,-0.003750,0.249972,0,0);}
.m74_c00093{transform:matrix(0.185045,0.003331,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185045,0.003331,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185045,0.003331,-0.004499,0.249960,0,0);}
.m2c_c00093{transform:matrix(0.185339,0.002780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185339,0.002780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185339,0.002780,-0.003750,0.249972,0,0);}
.me4_c00093{transform:matrix(0.185500,0.003339,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185500,0.003339,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185500,0.003339,-0.004499,0.249960,0,0);}
.m6d_c00093{transform:matrix(0.185875,0.003346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185875,0.003346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185875,0.003346,-0.004499,0.249960,0,0);}
.m82_c00093{transform:matrix(0.187405,0.003373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187405,0.003373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187405,0.003373,-0.004499,0.249960,0,0);}
.m41_c00093{transform:matrix(0.187679,0.002815,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187679,0.002815,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187679,0.002815,-0.003750,0.249972,0,0);}
.m47_c00093{transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);}
.mc_c00093{transform:matrix(0.188459,0.002827,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188459,0.002827,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188459,0.002827,-0.003750,0.249972,0,0);}
.m25_c00093{transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);}
.mef_c00093{transform:matrix(0.189819,0.003417,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189819,0.003417,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189819,0.003417,-0.004499,0.249960,0,0);}
.m4a_c00093{transform:matrix(0.189989,0.002850,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189989,0.002850,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189989,0.002850,-0.003750,0.249972,0,0);}
.ma5_c00093{transform:matrix(0.190169,0.003423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190169,0.003423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190169,0.003423,-0.004499,0.249960,0,0);}
.md5_c00093{transform:matrix(0.190239,0.003424,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190239,0.003424,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190239,0.003424,-0.004499,0.249960,0,0);}
.md7_c00093{transform:matrix(0.190869,0.003436,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190869,0.003436,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190869,0.003436,-0.004499,0.249960,0,0);}
.m5a_c00093{transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);}
.maf_c00093{transform:matrix(0.192094,0.003458,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192094,0.003458,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192094,0.003458,-0.004499,0.249960,0,0);}
.m80_c00093{transform:matrix(0.192234,0.003460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192234,0.003460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192234,0.003460,-0.004499,0.249960,0,0);}
.m72_c00093{transform:matrix(0.192324,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192324,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192324,0.003462,-0.004499,0.249960,0,0);}
.m96_c00093{transform:matrix(0.192369,0.003463,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192369,0.003463,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192369,0.003463,-0.004499,0.249960,0,0);}
.m4c_c00093{transform:matrix(0.192743,0.002891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192743,0.002891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192743,0.002891,-0.003750,0.249972,0,0);}
.mdb_c00093{transform:matrix(0.193274,0.003479,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193274,0.003479,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193274,0.003479,-0.004499,0.249960,0,0);}
.m35_c00093{transform:matrix(0.193348,0.002900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193348,0.002900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193348,0.002900,-0.003750,0.249972,0,0);}
.mab_c00093{transform:matrix(0.193519,0.003483,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193519,0.003483,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193519,0.003483,-0.004499,0.249960,0,0);}
.m1a_c00093{transform:matrix(0.193623,0.002904,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193623,0.002904,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193623,0.002904,-0.003750,0.249972,0,0);}
.mda_c00093{transform:matrix(0.193959,0.003491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193959,0.003491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193959,0.003491,-0.004499,0.249960,0,0);}
.mb5_c00093{transform:matrix(0.194169,0.003495,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194169,0.003495,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194169,0.003495,-0.004499,0.249960,0,0);}
.m1d_c00093{transform:matrix(0.194433,0.002916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194433,0.002916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194433,0.002916,-0.003750,0.249972,0,0);}
.mdd_c00093{transform:matrix(0.195263,0.003515,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195263,0.003515,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195263,0.003515,-0.004499,0.249960,0,0);}
.m3c_c00093{transform:matrix(0.195708,0.002936,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195708,0.002936,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195708,0.002936,-0.003750,0.249972,0,0);}
.ma2_c00093{transform:matrix(0.196003,0.003528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196003,0.003528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196003,0.003528,-0.004499,0.249960,0,0);}
.m3e_c00093{transform:matrix(0.196733,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196733,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196733,0.002951,-0.003750,0.249972,0,0);}
.m33_c00093{transform:matrix(0.196863,0.002953,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196863,0.002953,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196863,0.002953,-0.003750,0.249972,0,0);}
.m6c_c00093{transform:matrix(0.196948,0.003545,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196948,0.003545,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196948,0.003545,-0.004499,0.249960,0,0);}
.mc9_c00093{transform:matrix(0.197133,0.003548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197133,0.003548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197133,0.003548,-0.004499,0.249960,0,0);}
.m4d_c00093{transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);}
.m70_c00093{transform:matrix(0.197353,0.003552,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197353,0.003552,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197353,0.003552,-0.004499,0.249960,0,0);}
.mcd_c00093{transform:matrix(0.197463,0.003554,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197463,0.003554,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197463,0.003554,-0.004499,0.249960,0,0);}
.m62_c00093{transform:matrix(0.197758,0.003560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197758,0.003560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197758,0.003560,-0.004499,0.249960,0,0);}
.md2_c00093{transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197773,0.003560,-0.004499,0.249960,0,0);}
.mea_c00093{transform:matrix(0.197798,0.003560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197798,0.003560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197798,0.003560,-0.004499,0.249960,0,0);}
.m7e_c00093{transform:matrix(0.197888,0.003562,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197888,0.003562,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197888,0.003562,-0.004499,0.249960,0,0);}
.m3d_c00093{transform:matrix(0.198663,0.002980,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198663,0.002980,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198663,0.002980,-0.003750,0.249972,0,0);}
.mdc_c00093{transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199123,0.003584,-0.004499,0.249960,0,0);}
.m27_c00093{transform:matrix(0.199198,0.002988,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199198,0.002988,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199198,0.002988,-0.003750,0.249972,0,0);}
.mdf_c00093{transform:matrix(0.199323,0.003588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199323,0.003588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199323,0.003588,-0.004499,0.249960,0,0);}
.m21_c00093{transform:matrix(0.199683,0.002995,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199683,0.002995,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199683,0.002995,-0.003750,0.249972,0,0);}
.mc4_c00093{transform:matrix(0.199823,0.003597,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199823,0.003597,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199823,0.003597,-0.004499,0.249960,0,0);}
.m2b_c00093{transform:matrix(0.199988,0.003000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199988,0.003000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199988,0.003000,-0.003750,0.249972,0,0);}
.mb7_c00093{transform:matrix(0.200218,0.003604,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200218,0.003604,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200218,0.003604,-0.004499,0.249960,0,0);}
.m5d_c00093{transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200664,0.003211,-0.003999,0.249968,0,0);}
.mc3_c00093{transform:matrix(0.200737,0.003613,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200737,0.003613,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200737,0.003613,-0.004499,0.249960,0,0);}
.m34_c00093{transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);}
.m6e_c00093{transform:matrix(0.201687,0.003630,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201687,0.003630,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201687,0.003630,-0.004499,0.249960,0,0);}
.mba_c00093{transform:matrix(0.201962,0.003635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201962,0.003635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201962,0.003635,-0.004499,0.249960,0,0);}
.m7b_c00093{transform:matrix(0.202217,0.003640,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202217,0.003640,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202217,0.003640,-0.004499,0.249960,0,0);}
.m2e_c00093{transform:matrix(0.202322,0.003035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202322,0.003035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202322,0.003035,-0.003750,0.249972,0,0);}
.m92_c00093{transform:matrix(0.202427,0.003644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202427,0.003644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202427,0.003644,-0.004499,0.249960,0,0);}
.m8e_c00093{transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202617,0.003647,-0.004499,0.249960,0,0);}
.mc0_c00093{transform:matrix(0.202697,0.003649,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202697,0.003649,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202697,0.003649,-0.004499,0.249960,0,0);}
.m2f_c00093{transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);}
.mcb_c00093{transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);}
.m5e_c00093{transform:matrix(0.203644,0.003258,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203644,0.003258,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203644,0.003258,-0.003999,0.249968,0,0);}
.me2_c00093{transform:matrix(0.203702,0.003667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203702,0.003667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203702,0.003667,-0.004499,0.249960,0,0);}
.m5f_c00093{transform:matrix(0.203917,0.003671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203917,0.003671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203917,0.003671,-0.004499,0.249960,0,0);}
.m9_c00093{transform:matrix(0.204187,0.003063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204187,0.003063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204187,0.003063,-0.003750,0.249972,0,0);}
.m5b_c00093{transform:matrix(0.204209,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204209,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204209,0.003267,-0.003999,0.249968,0,0);}
.mad_c00093{transform:matrix(0.204687,0.003684,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204687,0.003684,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204687,0.003684,-0.004499,0.249960,0,0);}
.m1b_c00093{transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);}
.m4f_c00093{transform:matrix(0.204987,0.003075,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204987,0.003075,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204987,0.003075,-0.003750,0.249972,0,0);}
.mde_c00093{transform:matrix(0.205522,0.003699,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205522,0.003699,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205522,0.003699,-0.004499,0.249960,0,0);}
.m91_c00093{transform:matrix(0.205582,0.003700,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205582,0.003700,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205582,0.003700,-0.004499,0.249960,0,0);}
.m3b_c00093{transform:matrix(0.205907,0.003089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205907,0.003089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205907,0.003089,-0.003750,0.249972,0,0);}
.m23_c00093{transform:matrix(0.206172,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206172,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206172,0.003093,-0.003750,0.249972,0,0);}
.m40_c00093{transform:matrix(0.206267,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206267,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206267,0.003094,-0.003750,0.249972,0,0);}
.mc7_c00093{transform:matrix(0.206482,0.003717,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206482,0.003717,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206482,0.003717,-0.004499,0.249960,0,0);}
.md3_c00093{transform:matrix(0.206672,0.003720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206672,0.003720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206672,0.003720,-0.004499,0.249960,0,0);}
.m81_c00093{transform:matrix(0.207451,0.003734,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207451,0.003734,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207451,0.003734,-0.004499,0.249960,0,0);}
.m68_c00093{transform:matrix(0.208136,0.003746,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208136,0.003746,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208136,0.003746,-0.004499,0.249960,0,0);}
.m3f_c00093{transform:matrix(0.208547,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208547,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208547,0.003128,-0.003750,0.249972,0,0);}
.md6_c00093{transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);}
.m22_c00093{transform:matrix(0.209416,0.003141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209416,0.003141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209416,0.003141,-0.003750,0.249972,0,0);}
.mbc_c00093{transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);}
.mb0_c00093{transform:matrix(0.209786,0.003776,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209786,0.003776,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209786,0.003776,-0.004499,0.249960,0,0);}
.m43_c00093{transform:matrix(0.209971,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209971,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209971,0.003150,-0.003750,0.249972,0,0);}
.m1f_c00093{transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);}
.m1e_c00093{transform:matrix(0.211521,0.003173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211521,0.003173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211521,0.003173,-0.003750,0.249972,0,0);}
.me8_c00093{transform:matrix(0.211541,0.003808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211541,0.003808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211541,0.003808,-0.004499,0.249960,0,0);}
.m36_c00093{transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);}
.m67_c00093{transform:matrix(0.211716,0.003811,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211716,0.003811,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211716,0.003811,-0.004499,0.249960,0,0);}
.ma6_c00093{transform:matrix(0.212271,0.003821,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212271,0.003821,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212271,0.003821,-0.004499,0.249960,0,0);}
.m3a_c00093{transform:matrix(0.213006,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213006,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213006,0.003195,-0.003750,0.249972,0,0);}
.m64_c00093{transform:matrix(0.213010,0.003834,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213010,0.003834,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213010,0.003834,-0.004499,0.249960,0,0);}
.m39_c00093{transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);}
.mbd_c00093{transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);}
.mbe_c00093{transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);}
.mbf_c00093{transform:matrix(0.215645,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215645,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215645,0.003882,-0.004499,0.249960,0,0);}
.ma8_c00093{transform:matrix(0.215985,0.003888,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215985,0.003888,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215985,0.003888,-0.004499,0.249960,0,0);}
.m97_c00093{transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);}
.m16_c00093{transform:matrix(0.217056,0.003256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217056,0.003256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217056,0.003256,-0.003750,0.249972,0,0);}
.m0_c00093{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m8f_c00093{transform:matrix(0.218675,0.003936,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218675,0.003936,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218675,0.003936,-0.004499,0.249960,0,0);}
.me1_c00093{transform:matrix(0.219349,0.003948,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219349,0.003948,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219349,0.003948,-0.004499,0.249960,0,0);}
.m6b_c00093{transform:matrix(0.219949,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219949,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219949,0.003959,-0.004499,0.249960,0,0);}
.me3_c00093{transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);}
.m60_c00093{transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);}
.m6a_c00093{transform:matrix(0.220419,0.003968,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220419,0.003968,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220419,0.003968,-0.004499,0.249960,0,0);}
.me5_c00093{transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);}
.mac_c00093{transform:matrix(0.221184,0.003981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221184,0.003981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221184,0.003981,-0.004499,0.249960,0,0);}
.md0_c00093{transform:matrix(0.223734,0.004027,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223734,0.004027,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223734,0.004027,-0.004499,0.249960,0,0);}
.m61_c00093{transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);}
.m4e_c00093{transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);}
.m1c_c00093{transform:matrix(0.225840,0.003388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225840,0.003388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225840,0.003388,-0.003750,0.249972,0,0);}
.m28_c00093{transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);}
.m46_c00093{transform:matrix(0.231414,0.003471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231414,0.003471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231414,0.003471,-0.003750,0.249972,0,0);}
.m8b_c00093{transform:matrix(0.232247,0.004180,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232247,0.004180,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232247,0.004180,-0.004499,0.249960,0,0);}
.m9b_c00093{transform:matrix(0.232427,0.004184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232427,0.004184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232427,0.004184,-0.004499,0.249960,0,0);}
.m42_c00093{transform:matrix(0.233199,0.003498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233199,0.003498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233199,0.003498,-0.003750,0.249972,0,0);}
.m63_c00093{transform:matrix(0.233297,0.004199,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233297,0.004199,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233297,0.004199,-0.004499,0.249960,0,0);}
.m98_c00093{transform:matrix(0.235102,0.004232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235102,0.004232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235102,0.004232,-0.004499,0.249960,0,0);}
.m54_c00093{transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);}
.m30_c00093{transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238533,0.003578,-0.003750,0.249972,0,0);}
.m38_c00093{transform:matrix(0.238623,0.003579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238623,0.003579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238623,0.003579,-0.003750,0.249972,0,0);}
.me0_c00093{transform:matrix(0.239291,0.004307,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239291,0.004307,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239291,0.004307,-0.004499,0.249960,0,0);}
.m95_c00093{transform:matrix(0.247650,0.004458,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247650,0.004458,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247650,0.004458,-0.004499,0.249960,0,0);}
.m55_c00093{transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);}
.ma7_c00093{transform:matrix(0.250249,0.004504,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250249,0.004504,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250249,0.004504,-0.004499,0.249960,0,0);}
.m88_c00093{transform:matrix(0.250469,0.004508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250469,0.004508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250469,0.004508,-0.004499,0.249960,0,0);}
.m56_c00093{transform:matrix(0.254941,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254941,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254941,0.003824,-0.003750,0.249972,0,0);}
.md9_c00093{transform:matrix(0.256943,0.004625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256943,0.004625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256943,0.004625,-0.004499,0.249960,0,0);}
.m52_c00093{transform:matrix(0.258311,0.003875,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258311,0.003875,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258311,0.003875,-0.003750,0.249972,0,0);}
.m8a_c00093{transform:matrix(0.260968,0.004697,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260968,0.004697,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260968,0.004697,-0.004499,0.249960,0,0);}
.m59_c00093{transform:matrix(0.264551,0.004233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264551,0.004233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264551,0.004233,-0.003999,0.249968,0,0);}
.m50_c00093{transform:matrix(0.265305,0.003980,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265305,0.003980,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265305,0.003980,-0.003750,0.249972,0,0);}
.m51_c00093{transform:matrix(0.265715,0.003986,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265715,0.003986,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265715,0.003986,-0.003750,0.249972,0,0);}
.m58_c00093{transform:matrix(0.266731,0.004268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266731,0.004268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266731,0.004268,-0.003999,0.249968,0,0);}
.m57_c00093{transform:matrix(0.272829,0.004092,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272829,0.004092,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272829,0.004092,-0.003750,0.249972,0,0);}
.m53_c00093{transform:matrix(0.289452,0.004342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289452,0.004342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289452,0.004342,-0.003750,0.249972,0,0);}
.m87_c00093{transform:matrix(0.289783,0.005216,-0.004499,0.249960,0,0);-ms-transform:matrix(0.289783,0.005216,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.289783,0.005216,-0.004499,0.249960,0,0);}
.mc1_c00093{transform:matrix(0.304791,0.005486,-0.004499,0.249960,0,0);-ms-transform:matrix(0.304791,0.005486,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.304791,0.005486,-0.004499,0.249960,0,0);}
.m75_c00093{transform:matrix(0.310590,0.005591,-0.004499,0.249960,0,0);-ms-transform:matrix(0.310590,0.005591,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.310590,0.005591,-0.004499,0.249960,0,0);}
.m5_c00093{transform:matrix(0.315310,0.004730,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315310,0.004730,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315310,0.004730,-0.003750,0.249972,0,0);}
.m99_c00093{transform:matrix(0.325217,0.005854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.325217,0.005854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.325217,0.005854,-0.004499,0.249960,0,0);}
.m29_c00093{transform:matrix(0.332783,0.004992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.332783,0.004992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.332783,0.004992,-0.003750,0.249972,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:0.000000px;}
.fc0_c00093{color:transparent;}
.fs8_c00093{font-size:50.405670px;}
.fsa_c00093{font-size:59.859695px;}
.fs10_c00093{font-size:61.960035px;}
.fsb_c00093{font-size:63.010205px;}
.fs6_c00093{font-size:64.057205px;}
.fs11_c00093{font-size:64.060375px;}
.fs0_c00093{font-size:65.100000px;}
.fs4_c00093{font-size:65.107323px;}
.fs9_c00093{font-size:65.108332px;}
.fs5_c00093{font-size:66.157441px;}
.fs12_c00093{font-size:66.160715px;}
.fs7_c00093{font-size:67.207560px;}
.fsc_c00093{font-size:68.261056px;}
.fs2_c00093{font-size:69.307796px;}
.fse_c00093{font-size:69.311226px;}
.fs1_c00093{font-size:70.357914px;}
.fsd_c00093{font-size:70.361396px;}
.fs3_c00093{font-size:72.458150px;}
.fsf_c00093{font-size:74.562076px;}
.y0_c00093{bottom:0.000000px;}
.yf4_c00093{bottom:24.529875px;}
.yf3_c00093{bottom:25.875381px;}
.yf2_c00093{bottom:26.614719px;}
.yf1_c00093{bottom:27.174639px;}
.yf0_c00093{bottom:28.124754px;}
.yef_c00093{bottom:29.378574px;}
.yee_c00093{bottom:43.657767px;}
.yed_c00093{bottom:44.151258px;}
.yec_c00093{bottom:44.720955px;}
.yeb_c00093{bottom:44.991891px;}
.yea_c00093{bottom:45.448245px;}
.ye9_c00093{bottom:45.826815px;}
.ye8_c00093{bottom:46.704828px;}
.ye7_c00093{bottom:47.199912px;}
.ye6_c00093{bottom:60.846945px;}
.ye5_c00093{bottom:61.122873px;}
.ye4_c00093{bottom:61.877064px;}
.ye3_c00093{bottom:62.906685px;}
.ye2_c00093{bottom:63.382626px;}
.ye1_c00093{bottom:63.967494px;}
.ye0_c00093{bottom:64.428495px;}
.ydf_c00093{bottom:64.749906px;}
.yde_c00093{bottom:78.308802px;}
.ydd_c00093{bottom:78.592059px;}
.ydc_c00093{bottom:79.571934px;}
.ydb_c00093{bottom:79.784256px;}
.yda_c00093{bottom:80.427834px;}
.yd9_c00093{bottom:80.827860px;}
.yd8_c00093{bottom:81.738822px;}
.yd7_c00093{bottom:82.032903px;}
.yd6_c00093{bottom:95.855634px;}
.yd5_c00093{bottom:96.464490px;}
.yd4_c00093{bottom:96.668805px;}
.yd3_c00093{bottom:97.644435px;}
.yd2_c00093{bottom:98.123364px;}
.yd1_c00093{bottom:98.463705px;}
.yd0_c00093{bottom:99.316533px;}
.ycf_c00093{bottom:111.346989px;}
.yce_c00093{bottom:111.630027px;}
.ycd_c00093{bottom:112.039998px;}
.ycc_c00093{bottom:112.306662px;}
.ycb_c00093{bottom:113.083299px;}
.yca_c00093{bottom:114.006753px;}
.yc9_c00093{bottom:115.076376px;}
.yc8_c00093{bottom:115.421403px;}
.yc7_c00093{bottom:116.334165px;}
.yc6_c00093{bottom:130.501224px;}
.yc5_c00093{bottom:130.839189px;}
.yc4_c00093{bottom:131.084673px;}
.yc3_c00093{bottom:132.257196px;}
.yc2_c00093{bottom:133.616097px;}
.yc1_c00093{bottom:148.090764px;}
.yc0_c00093{bottom:149.798385px;}
.ybf_c00093{bottom:150.332766px;}
.ybe_c00093{bottom:150.717594px;}
.ybd_c00093{bottom:151.167129px;}
.ybc_c00093{bottom:165.525867px;}
.ybb_c00093{bottom:166.255680px;}
.yba_c00093{bottom:166.593165px;}
.yb9_c00093{bottom:167.704266px;}
.yb8_c00093{bottom:169.164189px;}
.yb7_c00093{bottom:169.482195px;}
.yb6_c00093{bottom:169.819383px;}
.yb5_c00093{bottom:170.070816px;}
.yb4_c00093{bottom:182.139591px;}
.yb3_c00093{bottom:183.575526px;}
.yb2_c00093{bottom:184.858728px;}
.yb1_c00093{bottom:185.167044px;}
.yb0_c00093{bottom:185.760630px;}
.yaf_c00093{bottom:186.047736px;}
.yae_c00093{bottom:187.085481px;}
.yad_c00093{bottom:199.437144px;}
.yac_c00093{bottom:199.840071px;}
.yab_c00093{bottom:202.975911px;}
.yaa_c00093{bottom:203.646804px;}
.ya9_c00093{bottom:205.466946px;}
.ya8_c00093{bottom:205.985661px;}
.ya7_c00093{bottom:217.573455px;}
.ya6_c00093{bottom:218.118411px;}
.ya5_c00093{bottom:219.452625px;}
.ya4_c00093{bottom:220.328805px;}
.ya3_c00093{bottom:221.008227px;}
.ya2_c00093{bottom:221.471568px;}
.ya1_c00093{bottom:221.953314px;}
.ya0_c00093{bottom:222.433089px;}
.y9f_c00093{bottom:223.541406px;}
.y9e_c00093{bottom:234.714963px;}
.y9d_c00093{bottom:235.778775px;}
.y9c_c00093{bottom:236.039553px;}
.y9b_c00093{bottom:236.648667px;}
.y9a_c00093{bottom:238.852425px;}
.y99_c00093{bottom:240.282852px;}
.y98_c00093{bottom:252.917145px;}
.y97_c00093{bottom:253.836030px;}
.y96_c00093{bottom:254.157171px;}
.y95_c00093{bottom:255.257466px;}
.y94_c00093{bottom:256.273854px;}
.y93_c00093{bottom:257.033958px;}
.y92_c00093{bottom:257.667924px;}
.y91_c00093{bottom:258.105306px;}
.y90_c00093{bottom:270.046797px;}
.y8f_c00093{bottom:270.868071px;}
.y8e_c00093{bottom:271.183719px;}
.y8d_c00093{bottom:272.044524px;}
.y8c_c00093{bottom:272.475474px;}
.y8b_c00093{bottom:272.899875px;}
.y8a_c00093{bottom:273.740415px;}
.y89_c00093{bottom:274.281009px;}
.y88_c00093{bottom:275.388498px;}
.y87_c00093{bottom:286.709022px;}
.y86_c00093{bottom:287.066106px;}
.y85_c00093{bottom:288.999243px;}
.y84_c00093{bottom:289.283919px;}
.y83_c00093{bottom:290.830539px;}
.y82_c00093{bottom:290.968239px;}
.y81_c00093{bottom:292.402596px;}
.y80_c00093{bottom:304.015263px;}
.y7f_c00093{bottom:304.474971px;}
.y7e_c00093{bottom:304.770273px;}
.y7d_c00093{bottom:306.371466px;}
.y7c_c00093{bottom:306.752298px;}
.y7b_c00093{bottom:307.164021px;}
.y7a_c00093{bottom:308.541375px;}
.y79_c00093{bottom:309.685884px;}
.y78_c00093{bottom:321.725004px;}
.y77_c00093{bottom:322.833786px;}
.y76_c00093{bottom:323.216079px;}
.y75_c00093{bottom:323.779920px;}
.y74_c00093{bottom:324.573990px;}
.y73_c00093{bottom:325.530546px;}
.y72_c00093{bottom:325.905495px;}
.y71_c00093{bottom:326.697729px;}
.y70_c00093{bottom:339.477561px;}
.y6f_c00093{bottom:339.955230px;}
.y6e_c00093{bottom:341.201265px;}
.y6d_c00093{bottom:341.762949px;}
.y6c_c00093{bottom:342.125322px;}
.y6b_c00093{bottom:343.321782px;}
.y6a_c00093{bottom:344.522643px;}
.y69_c00093{bottom:357.140439px;}
.y68_c00093{bottom:357.508260px;}
.y67_c00093{bottom:357.874461px;}
.y66_c00093{bottom:358.939341px;}
.y65_c00093{bottom:359.206857px;}
.y64_c00093{bottom:360.368640px;}
.y63_c00093{bottom:360.891873px;}
.y62_c00093{bottom:362.074500px;}
.y61_c00093{bottom:375.798936px;}
.y60_c00093{bottom:376.468440px;}
.y5f_c00093{bottom:376.736304px;}
.y5e_c00093{bottom:377.535120px;}
.y5d_c00093{bottom:378.693840px;}
.y5c_c00093{bottom:379.018632px;}
.y5b_c00093{bottom:380.163000px;}
.y5a_c00093{bottom:393.697110px;}
.y59_c00093{bottom:394.096590px;}
.y58_c00093{bottom:394.844775px;}
.y57_c00093{bottom:395.185305px;}
.y56_c00093{bottom:395.387850px;}
.y55_c00093{bottom:396.189757px;}
.y54_c00093{bottom:396.964552px;}
.y53_c00093{bottom:397.422195px;}
.y52_c00093{bottom:410.406652px;}
.y51_c00093{bottom:411.076965px;}
.y50_c00093{bottom:411.651795px;}
.y4f_c00093{bottom:412.805257px;}
.y4e_c00093{bottom:413.172750px;}
.y4d_c00093{bottom:413.505555px;}
.y4c_c00093{bottom:414.581572px;}
.y4b_c00093{bottom:414.974145px;}
.y4a_c00093{bottom:426.430357px;}
.y49_c00093{bottom:426.741660px;}
.y48_c00093{bottom:427.687995px;}
.y47_c00093{bottom:428.018467px;}
.y46_c00093{bottom:429.211995px;}
.y45_c00093{bottom:430.730670px;}
.y44_c00093{bottom:431.551792px;}
.y43_c00093{bottom:431.810400px;}
.y42_c00093{bottom:432.259230px;}
.y41_c00093{bottom:444.055507px;}
.y40_c00093{bottom:445.035817px;}
.y3f_c00093{bottom:445.884502px;}
.y3e_c00093{bottom:447.397560px;}
.y3d_c00093{bottom:447.776902px;}
.y3c_c00093{bottom:449.477467px;}
.y3b_c00093{bottom:449.809935px;}
.y3a_c00093{bottom:461.465347px;}
.y39_c00093{bottom:461.794920px;}
.y38_c00093{bottom:463.366290px;}
.y37_c00093{bottom:464.177122px;}
.y36_c00093{bottom:464.736607px;}
.y35_c00093{bottom:465.542070px;}
.y34_c00093{bottom:466.189237px;}
.y33_c00093{bottom:466.553483px;}
.y32_c00093{bottom:478.683517px;}
.y31_c00093{bottom:479.270572px;}
.y30_c00093{bottom:480.259312px;}
.y2f_c00093{bottom:480.595987px;}
.y2e_c00093{bottom:481.366125px;}
.y2d_c00093{bottom:481.972822px;}
.y2c_c00093{bottom:483.565140px;}
.y2b_c00093{bottom:494.928645px;}
.y2a_c00093{bottom:496.046505px;}
.y29_c00093{bottom:496.603492px;}
.y28_c00093{bottom:497.949667px;}
.y27_c00093{bottom:498.340215px;}
.y26_c00093{bottom:499.216905px;}
.y25_c00093{bottom:500.356770px;}
.y24_c00093{bottom:500.576925px;}
.y23_c00093{bottom:513.278722px;}
.y22_c00093{bottom:513.622777px;}
.y21_c00093{bottom:514.400970px;}
.y20_c00093{bottom:515.382022px;}
.y1f_c00093{bottom:515.748210px;}
.y1e_c00093{bottom:516.086032px;}
.y1d_c00093{bottom:517.023472px;}
.y1c_c00093{bottom:517.317165px;}
.y1b_c00093{bottom:530.308822px;}
.y1a_c00093{bottom:531.517935px;}
.y19_c00093{bottom:531.810255px;}
.y18_c00093{bottom:532.129477px;}
.y17_c00093{bottom:532.375372px;}
.y16_c00093{bottom:533.111970px;}
.y15_c00093{bottom:533.825198px;}
.y14_c00093{bottom:534.161805px;}
.y13_c00093{bottom:534.597922px;}
.y12_c00093{bottom:547.877077px;}
.y11_c00093{bottom:548.129235px;}
.y10_c00093{bottom:548.589855px;}
.yf_c00093{bottom:549.137887px;}
.ye_c00093{bottom:549.436463px;}
.yd_c00093{bottom:550.685302px;}
.yc_c00093{bottom:551.502345px;}
.yb_c00093{bottom:551.878882px;}
.ya_c00093{bottom:564.872932px;}
.y9_c00093{bottom:565.687005px;}
.y8_c00093{bottom:565.881495px;}
.y7_c00093{bottom:566.618685px;}
.y6_c00093{bottom:567.355470px;}
.y5_c00093{bottom:568.068900px;}
.y4_c00093{bottom:568.376610px;}
.y3_c00093{bottom:568.687515px;}
.y2_c00093{bottom:569.161500px;}
.y1_c00093{bottom:583.872000px;}
.ha_c00093{height:50.405670px;}
.hc_c00093{height:59.859695px;}
.h12_c00093{height:61.960035px;}
.hd_c00093{height:63.010205px;}
.h8_c00093{height:64.057205px;}
.h13_c00093{height:64.060375px;}
.h2_c00093{height:65.100000px;}
.h6_c00093{height:65.107323px;}
.hb_c00093{height:65.108332px;}
.h7_c00093{height:66.157441px;}
.h14_c00093{height:66.160715px;}
.h9_c00093{height:67.207560px;}
.he_c00093{height:68.261056px;}
.h4_c00093{height:69.307796px;}
.h10_c00093{height:69.311226px;}
.h3_c00093{height:70.357914px;}
.hf_c00093{height:70.361396px;}
.h5_c00093{height:72.458150px;}
.h11_c00093{height:74.562076px;}
.h0_c00093{height:624.450000px;}
.h1_c00093{height:624.750000px;}
.w0_c00093{width:371.790000px;}
.w1_c00093{width:372.000000px;}
.x0_c00093{left:0.000000px;}
.x7f_c00093{left:38.442717px;}
.x6c_c00093{left:39.765633px;}
.x4d_c00093{left:40.816317px;}
.x40_c00093{left:42.222998px;}
.x17_c00093{left:43.223243px;}
.x2_c00093{left:44.412000px;}
.x46_c00093{left:53.497500px;}
.x1e_c00093{left:55.364625px;}
.x2e_c00093{left:56.955465px;}
.x76_c00093{left:60.326304px;}
.x18_c00093{left:61.602473px;}
.x65_c00093{left:63.435696px;}
.x33_c00093{left:65.096850px;}
.x3b_c00093{left:67.027410px;}
.xb_c00093{left:69.529822px;}
.x11_c00093{left:70.806060px;}
.x3_c00093{left:76.011000px;}
.x34_c00093{left:78.036382px;}
.x6b_c00093{left:81.170271px;}
.x4e_c00093{left:84.829317px;}
.x60_c00093{left:87.435261px;}
.x12_c00093{left:91.846245px;}
.x29_c00093{left:93.731153px;}
.x68_c00093{left:95.691711px;}
.x4_c00093{left:96.738000px;}
.x52_c00093{left:98.861409px;}
.x49_c00093{left:104.827686px;}
.x61_c00093{left:107.420601px;}
.x69_c00093{left:110.808441px;}
.x56_c00093{left:112.751694px;}
.x1f_c00093{left:115.352025px;}
.x5_c00093{left:117.252000px;}
.x35_c00093{left:119.074800px;}
.x19_c00093{left:120.197595px;}
.xc_c00093{left:123.999322px;}
.x77_c00093{left:125.440002px;}
.x62_c00093{left:127.515441px;}
.x43_c00093{left:129.378000px;}
.x2f_c00093{left:130.917600px;}
.x2a_c00093{left:134.025638px;}
.x13_c00093{left:136.394070px;}
.x5b_c00093{left:138.018081px;}
.x72_c00093{left:139.477767px;}
.x1a_c00093{left:141.318780px;}
.x66_c00093{left:142.547568px;}
.x6d_c00093{left:144.269529px;}
.x30_c00093{left:147.405120px;}
.x44_c00093{left:149.677500px;}
.x24_c00093{left:153.744960px;}
.x3c_c00093{left:155.047583px;}
.x4f_c00093{left:158.801817px;}
.x20_c00093{left:161.495258px;}
.x6_c00093{left:164.814000px;}
.x4a_c00093{left:167.796552px;}
.x67_c00093{left:171.733449px;}
.x7c_c00093{left:173.170485px;}
.x63_c00093{left:175.163811px;}
.x6e_c00093{left:176.365023px;}
.x3d_c00093{left:178.046745px;}
.x73_c00093{left:179.422587px;}
.x14_c00093{left:182.399872px;}
.x4b_c00093{left:186.844701px;}
.x53_c00093{left:188.334696px;}
.x25_c00093{left:192.284580px;}
.x36_c00093{left:195.014107px;}
.x1_c00093{left:196.830000px;}
.x41_c00093{left:198.650678px;}
.x78_c00093{left:199.923348px;}
.x2b_c00093{left:202.575007px;}
.xd_c00093{left:207.255322px;}
.x26_c00093{left:209.128320px;}
.x57_c00093{left:211.220157px;}
.x47_c00093{left:212.811000px;}
.x7_c00093{left:213.933000px;}
.x79_c00093{left:215.053428px;}
.x4c_c00093{left:216.382161px;}
.x15_c00093{left:217.773855px;}
.x45_c00093{left:222.097500px;}
.x5e_c00093{left:223.314069px;}
.x1b_c00093{left:225.533520px;}
.xe_c00093{left:227.160322px;}
.x80_c00093{left:229.096362px;}
.x6f_c00093{left:230.668995px;}
.x50_c00093{left:234.241317px;}
.x16_c00093{left:236.061585px;}
.x42_c00093{left:240.456938px;}
.x82_c00093{left:244.155129px;}
.x7d_c00093{left:246.710277px;}
.x31_c00093{left:250.042290px;}
.x58_c00093{left:251.580654px;}
.x21_c00093{left:252.871268px;}
.x37_c00093{left:254.678130px;}
.x27_c00093{left:258.540608px;}
.x74_c00093{left:260.716362px;}
.x8_c00093{left:263.079000px;}
.x5c_c00093{left:266.283759px;}
.x59_c00093{left:267.366087px;}
.x38_c00093{left:271.208392px;}
.x81_c00093{left:272.916804px;}
.x1c_c00093{left:274.212300px;}
.x9_c00093{left:276.045000px;}
.x75_c00093{left:277.735698px;}
.x6a_c00093{left:279.036954px;}
.x2c_c00093{left:281.127113px;}
.x22_c00093{left:282.202013px;}
.x7a_c00093{left:284.995950px;}
.x3e_c00093{left:286.064625px;}
.x28_c00093{left:287.875403px;}
.x64_c00093{left:289.976418px;}
.x32_c00093{left:292.691182px;}
.xf_c00093{left:294.403822px;}
.x1d_c00093{left:295.748985px;}
.x2d_c00093{left:297.597375px;}
.x7e_c00093{left:300.613665px;}
.x54_c00093{left:302.182092px;}
.x7b_c00093{left:305.233908px;}
.x48_c00093{left:307.177500px;}
.x5a_c00093{left:308.407602px;}
.x10_c00093{left:311.214322px;}
.x5d_c00093{left:314.665395px;}
.x70_c00093{left:316.074507px;}
.x51_c00093{left:317.078817px;}
.x39_c00093{left:318.493837px;}
.x5f_c00093{left:319.988586px;}
.x83_c00093{left:323.323560px;}
.x55_c00093{left:325.137255px;}
.x3f_c00093{left:327.951495px;}
.xa_c00093{left:330.316500px;}
.x71_c00093{left:332.715804px;}
.x3a_c00093{left:334.046167px;}
.x23_c00093{left:341.022480px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fs8_c00093{font-size:44.805040pt;}
.fsa_c00093{font-size:53.208618pt;}
.fs10_c00093{font-size:55.075587pt;}
.fsb_c00093{font-size:56.009071pt;}
.fs6_c00093{font-size:56.939738pt;}
.fs11_c00093{font-size:56.942556pt;}
.fs0_c00093{font-size:57.866667pt;}
.fs4_c00093{font-size:57.873176pt;}
.fs9_c00093{font-size:57.874073pt;}
.fs5_c00093{font-size:58.806615pt;}
.fs12_c00093{font-size:58.809525pt;}
.fs7_c00093{font-size:59.740053pt;}
.fsc_c00093{font-size:60.676494pt;}
.fs2_c00093{font-size:61.606930pt;}
.fse_c00093{font-size:61.609978pt;}
.fs1_c00093{font-size:62.540368pt;}
.fsd_c00093{font-size:62.543463pt;}
.fs3_c00093{font-size:64.407245pt;}
.fsf_c00093{font-size:66.277401pt;}
.y0_c00093{bottom:0.000000pt;}
.yf4_c00093{bottom:21.804333pt;}
.yf3_c00093{bottom:23.000339pt;}
.yf2_c00093{bottom:23.657528pt;}
.yf1_c00093{bottom:24.155235pt;}
.yf0_c00093{bottom:24.999781pt;}
.yef_c00093{bottom:26.114288pt;}
.yee_c00093{bottom:38.806904pt;}
.yed_c00093{bottom:39.245563pt;}
.yec_c00093{bottom:39.751960pt;}
.yeb_c00093{bottom:39.992792pt;}
.yea_c00093{bottom:40.398440pt;}
.ye9_c00093{bottom:40.734947pt;}
.ye8_c00093{bottom:41.515403pt;}
.ye7_c00093{bottom:41.955477pt;}
.ye6_c00093{bottom:54.086173pt;}
.ye5_c00093{bottom:54.331443pt;}
.ye4_c00093{bottom:55.001835pt;}
.ye3_c00093{bottom:55.917053pt;}
.ye2_c00093{bottom:56.340112pt;}
.ye1_c00093{bottom:56.859995pt;}
.ye0_c00093{bottom:57.269773pt;}
.ydf_c00093{bottom:57.555472pt;}
.yde_c00093{bottom:69.607824pt;}
.ydd_c00093{bottom:69.859608pt;}
.ydc_c00093{bottom:70.730608pt;}
.ydb_c00093{bottom:70.919339pt;}
.yda_c00093{bottom:71.491408pt;}
.yd9_c00093{bottom:71.846987pt;}
.yd8_c00093{bottom:72.656731pt;}
.yd7_c00093{bottom:72.918136pt;}
.yd6_c00093{bottom:85.205008pt;}
.yd5_c00093{bottom:85.746213pt;}
.yd4_c00093{bottom:85.927827pt;}
.yd3_c00093{bottom:86.795053pt;}
.yd2_c00093{bottom:87.220768pt;}
.yd1_c00093{bottom:87.523293pt;}
.yd0_c00093{bottom:88.281363pt;}
.ycf_c00093{bottom:98.975101pt;}
.yce_c00093{bottom:99.226691pt;}
.ycd_c00093{bottom:99.591109pt;}
.ycc_c00093{bottom:99.828144pt;}
.ycb_c00093{bottom:100.518488pt;}
.yca_c00093{bottom:101.339336pt;}
.yc9_c00093{bottom:102.290112pt;}
.yc8_c00093{bottom:102.596803pt;}
.yc7_c00093{bottom:103.408147pt;}
.yc6_c00093{bottom:116.001088pt;}
.yc5_c00093{bottom:116.301501pt;}
.yc4_c00093{bottom:116.519709pt;}
.yc3_c00093{bottom:117.561952pt;}
.yc2_c00093{bottom:118.769864pt;}
.yc1_c00093{bottom:131.636235pt;}
.yc0_c00093{bottom:133.154120pt;}
.ybf_c00093{bottom:133.629125pt;}
.ybe_c00093{bottom:133.971195pt;}
.ybd_c00093{bottom:134.370781pt;}
.ybc_c00093{bottom:147.134104pt;}
.ybb_c00093{bottom:147.782827pt;}
.yba_c00093{bottom:148.082813pt;}
.yb9_c00093{bottom:149.070459pt;}
.yb8_c00093{bottom:150.368168pt;}
.yb7_c00093{bottom:150.650840pt;}
.yb6_c00093{bottom:150.950563pt;}
.yb5_c00093{bottom:151.174059pt;}
.yb4_c00093{bottom:161.901859pt;}
.yb3_c00093{bottom:163.178245pt;}
.yb2_c00093{bottom:164.318869pt;}
.yb1_c00093{bottom:164.592928pt;}
.yb0_c00093{bottom:165.120560pt;}
.yaf_c00093{bottom:165.375765pt;}
.yae_c00093{bottom:166.298205pt;}
.yad_c00093{bottom:177.277461pt;}
.yac_c00093{bottom:177.635619pt;}
.yab_c00093{bottom:180.423032pt;}
.yaa_c00093{bottom:181.019381pt;}
.ya9_c00093{bottom:182.637285pt;}
.ya8_c00093{bottom:183.098365pt;}
.ya7_c00093{bottom:193.398627pt;}
.ya6_c00093{bottom:193.883032pt;}
.ya5_c00093{bottom:195.069000pt;}
.ya4_c00093{bottom:195.847827pt;}
.ya3_c00093{bottom:196.451757pt;}
.ya2_c00093{bottom:196.863616pt;}
.ya1_c00093{bottom:197.291835pt;}
.ya0_c00093{bottom:197.718301pt;}
.y9f_c00093{bottom:198.703472pt;}
.y9e_c00093{bottom:208.635523pt;}
.y9d_c00093{bottom:209.581133pt;}
.y9c_c00093{bottom:209.812936pt;}
.y9b_c00093{bottom:210.354371pt;}
.y9a_c00093{bottom:212.313267pt;}
.y99_c00093{bottom:213.584757pt;}
.y98_c00093{bottom:224.815240pt;}
.y97_c00093{bottom:225.632027pt;}
.y96_c00093{bottom:225.917485pt;}
.y95_c00093{bottom:226.895525pt;}
.y94_c00093{bottom:227.798981pt;}
.y93_c00093{bottom:228.474629pt;}
.y92_c00093{bottom:229.038155pt;}
.y91_c00093{bottom:229.426939pt;}
.y90_c00093{bottom:240.041597pt;}
.y8f_c00093{bottom:240.771619pt;}
.y8e_c00093{bottom:241.052195pt;}
.y8d_c00093{bottom:241.817355pt;}
.y8c_c00093{bottom:242.200421pt;}
.y8b_c00093{bottom:242.577667pt;}
.y8a_c00093{bottom:243.324813pt;}
.y89_c00093{bottom:243.805341pt;}
.y88_c00093{bottom:244.789776pt;}
.y87_c00093{bottom:254.852464pt;}
.y86_c00093{bottom:255.169872pt;}
.y85_c00093{bottom:256.888216pt;}
.y84_c00093{bottom:257.141261pt;}
.y83_c00093{bottom:258.516035pt;}
.y82_c00093{bottom:258.638435pt;}
.y81_c00093{bottom:259.913419pt;}
.y80_c00093{bottom:270.235789pt;}
.y7f_c00093{bottom:270.644419pt;}
.y7e_c00093{bottom:270.906909pt;}
.y7d_c00093{bottom:272.330192pt;}
.y7c_c00093{bottom:272.668709pt;}
.y7b_c00093{bottom:273.034685pt;}
.y7a_c00093{bottom:274.259000pt;}
.y79_c00093{bottom:275.276341pt;}
.y78_c00093{bottom:285.977781pt;}
.y77_c00093{bottom:286.963365pt;}
.y76_c00093{bottom:287.303181pt;}
.y75_c00093{bottom:287.804373pt;}
.y74_c00093{bottom:288.510213pt;}
.y73_c00093{bottom:289.360485pt;}
.y72_c00093{bottom:289.693773pt;}
.y71_c00093{bottom:290.397981pt;}
.y70_c00093{bottom:301.757832pt;}
.y6f_c00093{bottom:302.182427pt;}
.y6e_c00093{bottom:303.290013pt;}
.y6d_c00093{bottom:303.789288pt;}
.y6c_c00093{bottom:304.111397pt;}
.y6b_c00093{bottom:305.174917pt;}
.y6a_c00093{bottom:306.242349pt;}
.y69_c00093{bottom:317.458168pt;}
.y68_c00093{bottom:317.785120pt;}
.y67_c00093{bottom:318.110632pt;}
.y66_c00093{bottom:319.057192pt;}
.y65_c00093{bottom:319.294984pt;}
.y64_c00093{bottom:320.327680pt;}
.y63_c00093{bottom:320.792776pt;}
.y62_c00093{bottom:321.844000pt;}
.y61_c00093{bottom:334.043499pt;}
.y60_c00093{bottom:334.638613pt;}
.y5f_c00093{bottom:334.876715pt;}
.y5e_c00093{bottom:335.586773pt;}
.y5d_c00093{bottom:336.616747pt;}
.y5c_c00093{bottom:336.905451pt;}
.y5b_c00093{bottom:337.922667pt;}
.y5a_c00093{bottom:349.952987pt;}
.y59_c00093{bottom:350.308080pt;}
.y58_c00093{bottom:350.973133pt;}
.y57_c00093{bottom:351.275827pt;}
.y56_c00093{bottom:351.455867pt;}
.y55_c00093{bottom:352.168673pt;}
.y54_c00093{bottom:352.857380pt;}
.y53_c00093{bottom:353.264173pt;}
.y52_c00093{bottom:364.805913pt;}
.y51_c00093{bottom:365.401747pt;}
.y50_c00093{bottom:365.912707pt;}
.y4f_c00093{bottom:366.938007pt;}
.y4e_c00093{bottom:367.264667pt;}
.y4d_c00093{bottom:367.560493pt;}
.y4c_c00093{bottom:368.516953pt;}
.y4b_c00093{bottom:368.865907pt;}
.y4a_c00093{bottom:379.049207pt;}
.y49_c00093{bottom:379.325920pt;}
.y48_c00093{bottom:380.167107pt;}
.y47_c00093{bottom:380.460860pt;}
.y46_c00093{bottom:381.521773pt;}
.y45_c00093{bottom:382.871707pt;}
.y44_c00093{bottom:383.601593pt;}
.y43_c00093{bottom:383.831467pt;}
.y42_c00093{bottom:384.230427pt;}
.y41_c00093{bottom:394.716007pt;}
.y40_c00093{bottom:395.587393pt;}
.y3f_c00093{bottom:396.341780pt;}
.y3e_c00093{bottom:397.686720pt;}
.y3d_c00093{bottom:398.023913pt;}
.y3c_c00093{bottom:399.535527pt;}
.y3b_c00093{bottom:399.831053pt;}
.y3a_c00093{bottom:410.191420pt;}
.y39_c00093{bottom:410.484373pt;}
.y38_c00093{bottom:411.881147pt;}
.y37_c00093{bottom:412.601887pt;}
.y36_c00093{bottom:413.099207pt;}
.y35_c00093{bottom:413.815173pt;}
.y34_c00093{bottom:414.390433pt;}
.y33_c00093{bottom:414.714207pt;}
.y32_c00093{bottom:425.496460pt;}
.y31_c00093{bottom:426.018287pt;}
.y30_c00093{bottom:426.897167pt;}
.y2f_c00093{bottom:427.196433pt;}
.y2e_c00093{bottom:427.881000pt;}
.y2d_c00093{bottom:428.420287pt;}
.y2c_c00093{bottom:429.835680pt;}
.y2b_c00093{bottom:439.936573pt;}
.y2a_c00093{bottom:440.930227pt;}
.y29_c00093{bottom:441.425327pt;}
.y28_c00093{bottom:442.621927pt;}
.y27_c00093{bottom:442.969080pt;}
.y26_c00093{bottom:443.748360pt;}
.y25_c00093{bottom:444.761573pt;}
.y24_c00093{bottom:444.957267pt;}
.y23_c00093{bottom:456.247753pt;}
.y22_c00093{bottom:456.553580pt;}
.y21_c00093{bottom:457.245307pt;}
.y20_c00093{bottom:458.117353pt;}
.y1f_c00093{bottom:458.442853pt;}
.y1e_c00093{bottom:458.743140pt;}
.y1d_c00093{bottom:459.576420pt;}
.y1c_c00093{bottom:459.837480pt;}
.y1b_c00093{bottom:471.385620pt;}
.y1a_c00093{bottom:472.460387pt;}
.y19_c00093{bottom:472.720227pt;}
.y18_c00093{bottom:473.003980pt;}
.y17_c00093{bottom:473.222553pt;}
.y16_c00093{bottom:473.877307pt;}
.y15_c00093{bottom:474.511287pt;}
.y14_c00093{bottom:474.810493pt;}
.y13_c00093{bottom:475.198153pt;}
.y12_c00093{bottom:487.001847pt;}
.y11_c00093{bottom:487.225987pt;}
.y10_c00093{bottom:487.635427pt;}
.yf_c00093{bottom:488.122567pt;}
.ye_c00093{bottom:488.387967pt;}
.yd_c00093{bottom:489.498047pt;}
.yc_c00093{bottom:490.224307pt;}
.yb_c00093{bottom:490.559007pt;}
.ya_c00093{bottom:502.109273pt;}
.y9_c00093{bottom:502.832893pt;}
.y8_c00093{bottom:503.005773pt;}
.y7_c00093{bottom:503.661053pt;}
.y6_c00093{bottom:504.315973pt;}
.y5_c00093{bottom:504.950133pt;}
.y4_c00093{bottom:505.223653pt;}
.y3_c00093{bottom:505.500013pt;}
.y2_c00093{bottom:505.921333pt;}
.y1_c00093{bottom:518.997333pt;}
.ha_c00093{height:44.805040pt;}
.hc_c00093{height:53.208618pt;}
.h12_c00093{height:55.075587pt;}
.hd_c00093{height:56.009071pt;}
.h8_c00093{height:56.939738pt;}
.h13_c00093{height:56.942556pt;}
.h2_c00093{height:57.866667pt;}
.h6_c00093{height:57.873176pt;}
.hb_c00093{height:57.874073pt;}
.h7_c00093{height:58.806615pt;}
.h14_c00093{height:58.809525pt;}
.h9_c00093{height:59.740053pt;}
.he_c00093{height:60.676494pt;}
.h4_c00093{height:61.606930pt;}
.h10_c00093{height:61.609978pt;}
.h3_c00093{height:62.540368pt;}
.hf_c00093{height:62.543463pt;}
.h5_c00093{height:64.407245pt;}
.h11_c00093{height:66.277401pt;}
.h0_c00093{height:555.066667pt;}
.h1_c00093{height:555.333333pt;}
.w0_c00093{width:330.480000pt;}
.w1_c00093{width:330.666667pt;}
.x0_c00093{left:0.000000pt;}
.x7f_c00093{left:34.171304pt;}
.x6c_c00093{left:35.347229pt;}
.x4d_c00093{left:36.281171pt;}
.x40_c00093{left:37.531553pt;}
.x17_c00093{left:38.420660pt;}
.x2_c00093{left:39.477333pt;}
.x46_c00093{left:47.553333pt;}
.x1e_c00093{left:49.213000pt;}
.x2e_c00093{left:50.627080pt;}
.x76_c00093{left:53.623381pt;}
.x18_c00093{left:54.757753pt;}
.x65_c00093{left:56.387285pt;}
.x33_c00093{left:57.863867pt;}
.x3b_c00093{left:59.579920pt;}
.xb_c00093{left:61.804287pt;}
.x11_c00093{left:62.938720pt;}
.x3_c00093{left:67.565333pt;}
.x34_c00093{left:69.365673pt;}
.x6b_c00093{left:72.151352pt;}
.x4e_c00093{left:75.403837pt;}
.x60_c00093{left:77.720232pt;}
.x12_c00093{left:81.641107pt;}
.x29_c00093{left:83.316580pt;}
.x68_c00093{left:85.059299pt;}
.x4_c00093{left:85.989333pt;}
.x52_c00093{left:87.876808pt;}
.x49_c00093{left:93.180165pt;}
.x61_c00093{left:95.484979pt;}
.x69_c00093{left:98.496392pt;}
.x56_c00093{left:100.223728pt;}
.x1f_c00093{left:102.535133pt;}
.x5_c00093{left:104.224000pt;}
.x35_c00093{left:105.844267pt;}
.x19_c00093{left:106.842307pt;}
.xc_c00093{left:110.221620pt;}
.x77_c00093{left:111.502224pt;}
.x62_c00093{left:113.347059pt;}
.x43_c00093{left:115.002667pt;}
.x2f_c00093{left:116.371200pt;}
.x2a_c00093{left:119.133900pt;}
.x13_c00093{left:121.239173pt;}
.x5b_c00093{left:122.682739pt;}
.x72_c00093{left:123.980237pt;}
.x1a_c00093{left:125.616693pt;}
.x66_c00093{left:126.708949pt;}
.x6d_c00093{left:128.239581pt;}
.x30_c00093{left:131.026773pt;}
.x44_c00093{left:133.046667pt;}
.x24_c00093{left:136.662187pt;}
.x3c_c00093{left:137.820073pt;}
.x4f_c00093{left:141.157171pt;}
.x20_c00093{left:143.551340pt;}
.x6_c00093{left:146.501333pt;}
.x4a_c00093{left:149.152491pt;}
.x67_c00093{left:152.651955pt;}
.x7c_c00093{left:153.929320pt;}
.x63_c00093{left:155.701165pt;}
.x6e_c00093{left:156.768909pt;}
.x3d_c00093{left:158.263773pt;}
.x73_c00093{left:159.486744pt;}
.x14_c00093{left:162.133220pt;}
.x4b_c00093{left:166.084179pt;}
.x53_c00093{left:167.408619pt;}
.x25_c00093{left:170.919627pt;}
.x36_c00093{left:173.345873pt;}
.x1_c00093{left:174.960000pt;}
.x41_c00093{left:176.578380pt;}
.x78_c00093{left:177.709643pt;}
.x2b_c00093{left:180.066673pt;}
.xd_c00093{left:184.226953pt;}
.x26_c00093{left:185.891840pt;}
.x57_c00093{left:187.751251pt;}
.x47_c00093{left:189.165333pt;}
.x7_c00093{left:190.162667pt;}
.x79_c00093{left:191.158603pt;}
.x4c_c00093{left:192.339699pt;}
.x15_c00093{left:193.576760pt;}
.x45_c00093{left:197.420000pt;}
.x5e_c00093{left:198.501395pt;}
.x1b_c00093{left:200.474240pt;}
.xe_c00093{left:201.920287pt;}
.x80_c00093{left:203.641211pt;}
.x6f_c00093{left:205.039107pt;}
.x50_c00093{left:208.214504pt;}
.x16_c00093{left:209.832520pt;}
.x42_c00093{left:213.739500pt;}
.x82_c00093{left:217.026781pt;}
.x7d_c00093{left:219.298024pt;}
.x31_c00093{left:222.259813pt;}
.x58_c00093{left:223.627248pt;}
.x21_c00093{left:224.774460pt;}
.x37_c00093{left:226.380560pt;}
.x27_c00093{left:229.813873pt;}
.x74_c00093{left:231.747877pt;}
.x8_c00093{left:233.848000pt;}
.x5c_c00093{left:236.696675pt;}
.x59_c00093{left:237.658744pt;}
.x38_c00093{left:241.074127pt;}
.x81_c00093{left:242.592715pt;}
.x1c_c00093{left:243.744267pt;}
.x9_c00093{left:245.373333pt;}
.x75_c00093{left:246.876176pt;}
.x6a_c00093{left:248.032848pt;}
.x2c_c00093{left:249.890767pt;}
.x22_c00093{left:250.846233pt;}
.x7a_c00093{left:253.329733pt;}
.x3e_c00093{left:254.279667pt;}
.x28_c00093{left:255.889247pt;}
.x64_c00093{left:257.756816pt;}
.x32_c00093{left:260.169940pt;}
.xf_c00093{left:261.692287pt;}
.x1d_c00093{left:262.887987pt;}
.x2d_c00093{left:264.531000pt;}
.x7e_c00093{left:267.212147pt;}
.x54_c00093{left:268.606304pt;}
.x7b_c00093{left:271.319029pt;}
.x48_c00093{left:273.046667pt;}
.x5a_c00093{left:274.140091pt;}
.x10_c00093{left:276.634953pt;}
.x5d_c00093{left:279.702573pt;}
.x70_c00093{left:280.955117pt;}
.x51_c00093{left:281.847837pt;}
.x39_c00093{left:283.105633pt;}
.x5f_c00093{left:284.434299pt;}
.x83_c00093{left:287.398720pt;}
.x55_c00093{left:289.010893pt;}
.x3f_c00093{left:291.512440pt;}
.xa_c00093{left:293.614667pt;}
.x71_c00093{left:295.747381pt;}
.x3a_c00093{left:296.929927pt;}
.x23_c00093{left:303.131093pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00094 {
    display:none;
  }
  .loading-indicator_c00094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00094" -> "#page-container .classname_c00094")
 */
.pf_c00094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00094 {overflow:visible;}
  }
}
.c_c00094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00094:after { /* webkit #35443 */
  content: '';
}
.t_c00094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00094 { /* info for Javascript */
  display:none;
}
.l_c00094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00094:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00094 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00094.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00094{transform:matrix(0.074267,-0.002228,0.007497,0.249888,0,0);-ms-transform:matrix(0.074267,-0.002228,0.007497,0.249888,0,0);-webkit-transform:matrix(0.074267,-0.002228,0.007497,0.249888,0,0);}
.mc3_c00094{transform:matrix(0.084017,-0.002521,0.007497,0.249888,0,0);-ms-transform:matrix(0.084017,-0.002521,0.007497,0.249888,0,0);-webkit-transform:matrix(0.084017,-0.002521,0.007497,0.249888,0,0);}
.m61_c00094{transform:matrix(0.106357,-0.003191,0.007497,0.249888,0,0);-ms-transform:matrix(0.106357,-0.003191,0.007497,0.249888,0,0);-webkit-transform:matrix(0.106357,-0.003191,0.007497,0.249888,0,0);}
.m70_c00094{transform:matrix(0.125883,-0.003777,0.007497,0.249888,0,0);-ms-transform:matrix(0.125883,-0.003777,0.007497,0.249888,0,0);-webkit-transform:matrix(0.125883,-0.003777,0.007497,0.249888,0,0);}
.me4_c00094{transform:matrix(0.131006,-0.003930,0.007497,0.249888,0,0);-ms-transform:matrix(0.131006,-0.003930,0.007497,0.249888,0,0);-webkit-transform:matrix(0.131006,-0.003930,0.007497,0.249888,0,0);}
.mb7_c00094{transform:matrix(0.136938,-0.004108,0.007497,0.249888,0,0);-ms-transform:matrix(0.136938,-0.004108,0.007497,0.249888,0,0);-webkit-transform:matrix(0.136938,-0.004108,0.007497,0.249888,0,0);}
.m52_c00094{transform:matrix(0.136963,-0.004109,0.007497,0.249888,0,0);-ms-transform:matrix(0.136963,-0.004109,0.007497,0.249888,0,0);-webkit-transform:matrix(0.136963,-0.004109,0.007497,0.249888,0,0);}
.m73_c00094{transform:matrix(0.140917,-0.004227,0.007497,0.249888,0,0);-ms-transform:matrix(0.140917,-0.004227,0.007497,0.249888,0,0);-webkit-transform:matrix(0.140917,-0.004227,0.007497,0.249888,0,0);}
.m4d_c00094{transform:matrix(0.141296,-0.004239,0.007497,0.249888,0,0);-ms-transform:matrix(0.141296,-0.004239,0.007497,0.249888,0,0);-webkit-transform:matrix(0.141296,-0.004239,0.007497,0.249888,0,0);}
.me0_c00094{transform:matrix(0.142036,-0.004261,0.007497,0.249888,0,0);-ms-transform:matrix(0.142036,-0.004261,0.007497,0.249888,0,0);-webkit-transform:matrix(0.142036,-0.004261,0.007497,0.249888,0,0);}
.md0_c00094{transform:matrix(0.142241,-0.004267,0.007497,0.249888,0,0);-ms-transform:matrix(0.142241,-0.004267,0.007497,0.249888,0,0);-webkit-transform:matrix(0.142241,-0.004267,0.007497,0.249888,0,0);}
.m6e_c00094{transform:matrix(0.143550,-0.004307,0.007497,0.249888,0,0);-ms-transform:matrix(0.143550,-0.004307,0.007497,0.249888,0,0);-webkit-transform:matrix(0.143550,-0.004307,0.007497,0.249888,0,0);}
.m5d_c00094{transform:matrix(0.144620,-0.004339,0.007497,0.249888,0,0);-ms-transform:matrix(0.144620,-0.004339,0.007497,0.249888,0,0);-webkit-transform:matrix(0.144620,-0.004339,0.007497,0.249888,0,0);}
.m40_c00094{transform:matrix(0.147838,-0.004435,0.007497,0.249888,0,0);-ms-transform:matrix(0.147838,-0.004435,0.007497,0.249888,0,0);-webkit-transform:matrix(0.147838,-0.004435,0.007497,0.249888,0,0);}
.m4f_c00094{transform:matrix(0.148768,-0.004463,0.007497,0.249888,0,0);-ms-transform:matrix(0.148768,-0.004463,0.007497,0.249888,0,0);-webkit-transform:matrix(0.148768,-0.004463,0.007497,0.249888,0,0);}
.mde_c00094{transform:matrix(0.149068,-0.004472,0.007497,0.249888,0,0);-ms-transform:matrix(0.149068,-0.004472,0.007497,0.249888,0,0);-webkit-transform:matrix(0.149068,-0.004472,0.007497,0.249888,0,0);}
.m44_c00094{transform:matrix(0.151462,-0.004544,0.007497,0.249888,0,0);-ms-transform:matrix(0.151462,-0.004544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.151462,-0.004544,0.007497,0.249888,0,0);}
.m0_c00094{transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);}
.me7_c00094{transform:matrix(0.156515,-0.004695,0.007497,0.249888,0,0);-ms-transform:matrix(0.156515,-0.004695,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156515,-0.004695,0.007497,0.249888,0,0);}
.m4c_c00094{transform:matrix(0.156590,-0.004698,0.007497,0.249888,0,0);-ms-transform:matrix(0.156590,-0.004698,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156590,-0.004698,0.007497,0.249888,0,0);}
.m9_c00094{transform:matrix(0.157129,-0.004714,0.007497,0.249888,0,0);-ms-transform:matrix(0.157129,-0.004714,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157129,-0.004714,0.007497,0.249888,0,0);}
.m5b_c00094{transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);-ms-transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);}
.m54_c00094{transform:matrix(0.157714,-0.004731,0.007497,0.249888,0,0);-ms-transform:matrix(0.157714,-0.004731,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157714,-0.004731,0.007497,0.249888,0,0);}
.m14_c00094{transform:matrix(0.158389,-0.004752,0.007497,0.249888,0,0);-ms-transform:matrix(0.158389,-0.004752,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158389,-0.004752,0.007497,0.249888,0,0);}
.m95_c00094{transform:matrix(0.158449,-0.004753,0.007497,0.249888,0,0);-ms-transform:matrix(0.158449,-0.004753,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158449,-0.004753,0.007497,0.249888,0,0);}
.m6f_c00094{transform:matrix(0.159633,-0.004789,0.007497,0.249888,0,0);-ms-transform:matrix(0.159633,-0.004789,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159633,-0.004789,0.007497,0.249888,0,0);}
.m1b_c00094{transform:matrix(0.160728,-0.004822,0.007497,0.249888,0,0);-ms-transform:matrix(0.160728,-0.004822,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160728,-0.004822,0.007497,0.249888,0,0);}
.m7c_c00094{transform:matrix(0.161627,-0.004849,0.007497,0.249888,0,0);-ms-transform:matrix(0.161627,-0.004849,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161627,-0.004849,0.007497,0.249888,0,0);}
.m47_c00094{transform:matrix(0.162737,-0.004882,0.007497,0.249888,0,0);-ms-transform:matrix(0.162737,-0.004882,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162737,-0.004882,0.007497,0.249888,0,0);}
.m5f_c00094{transform:matrix(0.162792,-0.004884,0.007497,0.249888,0,0);-ms-transform:matrix(0.162792,-0.004884,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162792,-0.004884,0.007497,0.249888,0,0);}
.me3_c00094{transform:matrix(0.163192,-0.004896,0.007497,0.249888,0,0);-ms-transform:matrix(0.163192,-0.004896,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163192,-0.004896,0.007497,0.249888,0,0);}
.mce_c00094{transform:matrix(0.163621,-0.004909,0.007497,0.249888,0,0);-ms-transform:matrix(0.163621,-0.004909,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163621,-0.004909,0.007497,0.249888,0,0);}
.m18_c00094{transform:matrix(0.165431,-0.004963,0.007497,0.249888,0,0);-ms-transform:matrix(0.165431,-0.004963,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165431,-0.004963,0.007497,0.249888,0,0);}
.m4b_c00094{transform:matrix(0.165511,-0.004965,0.007497,0.249888,0,0);-ms-transform:matrix(0.165511,-0.004965,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165511,-0.004965,0.007497,0.249888,0,0);}
.mf_c00094{transform:matrix(0.166165,-0.004985,0.007497,0.249888,0,0);-ms-transform:matrix(0.166165,-0.004985,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166165,-0.004985,0.007497,0.249888,0,0);}
.m22_c00094{transform:matrix(0.166755,-0.005003,0.007497,0.249888,0,0);-ms-transform:matrix(0.166755,-0.005003,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166755,-0.005003,0.007497,0.249888,0,0);}
.mae_c00094{transform:matrix(0.166990,-0.005010,0.007497,0.249888,0,0);-ms-transform:matrix(0.166990,-0.005010,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166990,-0.005010,0.007497,0.249888,0,0);}
.m85_c00094{transform:matrix(0.167255,-0.005018,0.007497,0.249888,0,0);-ms-transform:matrix(0.167255,-0.005018,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167255,-0.005018,0.007497,0.249888,0,0);}
.m89_c00094{transform:matrix(0.167745,-0.005032,0.007497,0.249888,0,0);-ms-transform:matrix(0.167745,-0.005032,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167745,-0.005032,0.007497,0.249888,0,0);}
.m2a_c00094{transform:matrix(0.168474,-0.005054,0.007497,0.249888,0,0);-ms-transform:matrix(0.168474,-0.005054,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168474,-0.005054,0.007497,0.249888,0,0);}
.m88_c00094{transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);-ms-transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);}
.m74_c00094{transform:matrix(0.169329,-0.005080,0.007497,0.249888,0,0);-ms-transform:matrix(0.169329,-0.005080,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169329,-0.005080,0.007497,0.249888,0,0);}
.m23_c00094{transform:matrix(0.169469,-0.005084,0.007497,0.249888,0,0);-ms-transform:matrix(0.169469,-0.005084,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169469,-0.005084,0.007497,0.249888,0,0);}
.m15_c00094{transform:matrix(0.169854,-0.005096,0.007497,0.249888,0,0);-ms-transform:matrix(0.169854,-0.005096,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169854,-0.005096,0.007497,0.249888,0,0);}
.m41_c00094{transform:matrix(0.169949,-0.005098,0.007497,0.249888,0,0);-ms-transform:matrix(0.169949,-0.005098,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169949,-0.005098,0.007497,0.249888,0,0);}
.m32_c00094{transform:matrix(0.170398,-0.005112,0.007497,0.249888,0,0);-ms-transform:matrix(0.170398,-0.005112,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170398,-0.005112,0.007497,0.249888,0,0);}
.me9_c00094{transform:matrix(0.170453,-0.005114,0.007497,0.249888,0,0);-ms-transform:matrix(0.170453,-0.005114,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170453,-0.005114,0.007497,0.249888,0,0);}
.m6b_c00094{transform:matrix(0.170638,-0.005119,0.007497,0.249888,0,0);-ms-transform:matrix(0.170638,-0.005119,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170638,-0.005119,0.007497,0.249888,0,0);}
.me6_c00094{transform:matrix(0.170978,-0.005129,0.007497,0.249888,0,0);-ms-transform:matrix(0.170978,-0.005129,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170978,-0.005129,0.007497,0.249888,0,0);}
.m96_c00094{transform:matrix(0.171038,-0.005131,0.007497,0.249888,0,0);-ms-transform:matrix(0.171038,-0.005131,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171038,-0.005131,0.007497,0.249888,0,0);}
.m4e_c00094{transform:matrix(0.171088,-0.005133,0.007497,0.249888,0,0);-ms-transform:matrix(0.171088,-0.005133,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171088,-0.005133,0.007497,0.249888,0,0);}
.m72_c00094{transform:matrix(0.171753,-0.005153,0.007497,0.249888,0,0);-ms-transform:matrix(0.171753,-0.005153,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171753,-0.005153,0.007497,0.249888,0,0);}
.m51_c00094{transform:matrix(0.171888,-0.005157,0.007497,0.249888,0,0);-ms-transform:matrix(0.171888,-0.005157,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171888,-0.005157,0.007497,0.249888,0,0);}
.med_c00094{transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);-ms-transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);}
.m87_c00094{transform:matrix(0.173067,-0.005192,0.007497,0.249888,0,0);-ms-transform:matrix(0.173067,-0.005192,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173067,-0.005192,0.007497,0.249888,0,0);}
.m71_c00094{transform:matrix(0.173097,-0.005193,0.007497,0.249888,0,0);-ms-transform:matrix(0.173097,-0.005193,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173097,-0.005193,0.007497,0.249888,0,0);}
.m94_c00094{transform:matrix(0.173567,-0.005207,0.007497,0.249888,0,0);-ms-transform:matrix(0.173567,-0.005207,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173567,-0.005207,0.007497,0.249888,0,0);}
.m3e_c00094{transform:matrix(0.174167,-0.005225,0.007497,0.249888,0,0);-ms-transform:matrix(0.174167,-0.005225,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174167,-0.005225,0.007497,0.249888,0,0);}
.mc_c00094{transform:matrix(0.174791,-0.005244,0.007497,0.249888,0,0);-ms-transform:matrix(0.174791,-0.005244,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174791,-0.005244,0.007497,0.249888,0,0);}
.m5e_c00094{transform:matrix(0.174846,-0.005245,0.007497,0.249888,0,0);-ms-transform:matrix(0.174846,-0.005245,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174846,-0.005245,0.007497,0.249888,0,0);}
.m93_c00094{transform:matrix(0.174966,-0.005249,0.007497,0.249888,0,0);-ms-transform:matrix(0.174966,-0.005249,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174966,-0.005249,0.007497,0.249888,0,0);}
.m84_c00094{transform:matrix(0.175351,-0.005261,0.007497,0.249888,0,0);-ms-transform:matrix(0.175351,-0.005261,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175351,-0.005261,0.007497,0.249888,0,0);}
.m98_c00094{transform:matrix(0.175486,-0.005265,0.007497,0.249888,0,0);-ms-transform:matrix(0.175486,-0.005265,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175486,-0.005265,0.007497,0.249888,0,0);}
.mb0_c00094{transform:matrix(0.175531,-0.005266,0.007497,0.249888,0,0);-ms-transform:matrix(0.175531,-0.005266,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175531,-0.005266,0.007497,0.249888,0,0);}
.m46_c00094{transform:matrix(0.176036,-0.005281,0.007497,0.249888,0,0);-ms-transform:matrix(0.176036,-0.005281,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176036,-0.005281,0.007497,0.249888,0,0);}
.m2d_c00094{transform:matrix(0.176256,-0.005288,0.007497,0.249888,0,0);-ms-transform:matrix(0.176256,-0.005288,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176256,-0.005288,0.007497,0.249888,0,0);}
.m48_c00094{transform:matrix(0.177100,-0.005313,0.007497,0.249888,0,0);-ms-transform:matrix(0.177100,-0.005313,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177100,-0.005313,0.007497,0.249888,0,0);}
.m3d_c00094{transform:matrix(0.177205,-0.005316,0.007497,0.249888,0,0);-ms-transform:matrix(0.177205,-0.005316,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177205,-0.005316,0.007497,0.249888,0,0);}
.m3_c00094{transform:matrix(0.177240,-0.005317,0.007497,0.249888,0,0);-ms-transform:matrix(0.177240,-0.005317,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177240,-0.005317,0.007497,0.249888,0,0);}
.m83_c00094{transform:matrix(0.177600,-0.005328,0.007497,0.249888,0,0);-ms-transform:matrix(0.177600,-0.005328,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177600,-0.005328,0.007497,0.249888,0,0);}
.mc2_c00094{transform:matrix(0.177690,-0.005331,0.007497,0.249888,0,0);-ms-transform:matrix(0.177690,-0.005331,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177690,-0.005331,0.007497,0.249888,0,0);}
.m55_c00094{transform:matrix(0.177820,-0.005335,0.007497,0.249888,0,0);-ms-transform:matrix(0.177820,-0.005335,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177820,-0.005335,0.007497,0.249888,0,0);}
.me8_c00094{transform:matrix(0.178250,-0.005347,0.007497,0.249888,0,0);-ms-transform:matrix(0.178250,-0.005347,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178250,-0.005347,0.007497,0.249888,0,0);}
.m20_c00094{transform:matrix(0.179474,-0.005384,0.007497,0.249888,0,0);-ms-transform:matrix(0.179474,-0.005384,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179474,-0.005384,0.007497,0.249888,0,0);}
.m7_c00094{transform:matrix(0.179714,-0.005391,0.007497,0.249888,0,0);-ms-transform:matrix(0.179714,-0.005391,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179714,-0.005391,0.007497,0.249888,0,0);}
.mdc_c00094{transform:matrix(0.179799,-0.005394,0.007497,0.249888,0,0);-ms-transform:matrix(0.179799,-0.005394,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179799,-0.005394,0.007497,0.249888,0,0);}
.m6c_c00094{transform:matrix(0.180604,-0.005418,0.007497,0.249888,0,0);-ms-transform:matrix(0.180604,-0.005418,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180604,-0.005418,0.007497,0.249888,0,0);}
.m2c_c00094{transform:matrix(0.180999,-0.005430,0.007497,0.249888,0,0);-ms-transform:matrix(0.180999,-0.005430,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180999,-0.005430,0.007497,0.249888,0,0);}
.meb_c00094{transform:matrix(0.181313,-0.005439,0.007497,0.249888,0,0);-ms-transform:matrix(0.181313,-0.005439,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181313,-0.005439,0.007497,0.249888,0,0);}
.m50_c00094{transform:matrix(0.181863,-0.005456,0.007497,0.249888,0,0);-ms-transform:matrix(0.181863,-0.005456,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181863,-0.005456,0.007497,0.249888,0,0);}
.ma1_c00094{transform:matrix(0.181948,-0.005458,0.007497,0.249888,0,0);-ms-transform:matrix(0.181948,-0.005458,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181948,-0.005458,0.007497,0.249888,0,0);}
.m57_c00094{transform:matrix(0.182998,-0.005490,0.007497,0.249888,0,0);-ms-transform:matrix(0.182998,-0.005490,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182998,-0.005490,0.007497,0.249888,0,0);}
.m3f_c00094{transform:matrix(0.183018,-0.005491,0.007497,0.249888,0,0);-ms-transform:matrix(0.183018,-0.005491,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183018,-0.005491,0.007497,0.249888,0,0);}
.m1e_c00094{transform:matrix(0.183288,-0.005499,0.007497,0.249888,0,0);-ms-transform:matrix(0.183288,-0.005499,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183288,-0.005499,0.007497,0.249888,0,0);}
.m28_c00094{transform:matrix(0.183937,-0.005518,0.007497,0.249888,0,0);-ms-transform:matrix(0.183937,-0.005518,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183937,-0.005518,0.007497,0.249888,0,0);}
.mad_c00094{transform:matrix(0.184677,-0.005540,0.007497,0.249888,0,0);-ms-transform:matrix(0.184677,-0.005540,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184677,-0.005540,0.007497,0.249888,0,0);}
.ma5_c00094{transform:matrix(0.185172,-0.005555,0.007497,0.249888,0,0);-ms-transform:matrix(0.185172,-0.005555,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185172,-0.005555,0.007497,0.249888,0,0);}
.mc1_c00094{transform:matrix(0.185292,-0.005559,0.007497,0.249888,0,0);-ms-transform:matrix(0.185292,-0.005559,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185292,-0.005559,0.007497,0.249888,0,0);}
.m37_c00094{transform:matrix(0.185786,-0.005574,0.007497,0.249888,0,0);-ms-transform:matrix(0.185786,-0.005574,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185786,-0.005574,0.007497,0.249888,0,0);}
.m1f_c00094{transform:matrix(0.186326,-0.005590,0.007497,0.249888,0,0);-ms-transform:matrix(0.186326,-0.005590,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186326,-0.005590,0.007497,0.249888,0,0);}
.m63_c00094{transform:matrix(0.187221,-0.005617,0.007497,0.249888,0,0);-ms-transform:matrix(0.187221,-0.005617,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187221,-0.005617,0.007497,0.249888,0,0);}
.mdf_c00094{transform:matrix(0.187341,-0.005620,0.007497,0.249888,0,0);-ms-transform:matrix(0.187341,-0.005620,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187341,-0.005620,0.007497,0.249888,0,0);}
.m9f_c00094{transform:matrix(0.187726,-0.005632,0.007497,0.249888,0,0);-ms-transform:matrix(0.187726,-0.005632,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187726,-0.005632,0.007497,0.249888,0,0);}
.m43_c00094{transform:matrix(0.188635,-0.005659,0.007497,0.249888,0,0);-ms-transform:matrix(0.188635,-0.005659,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188635,-0.005659,0.007497,0.249888,0,0);}
.m53_c00094{transform:matrix(0.189010,-0.005670,0.007497,0.249888,0,0);-ms-transform:matrix(0.189010,-0.005670,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189010,-0.005670,0.007497,0.249888,0,0);}
.m78_c00094{transform:matrix(0.189595,-0.005688,0.007497,0.249888,0,0);-ms-transform:matrix(0.189595,-0.005688,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189595,-0.005688,0.007497,0.249888,0,0);}
.m4a_c00094{transform:matrix(0.189860,-0.005696,0.007497,0.249888,0,0);-ms-transform:matrix(0.189860,-0.005696,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189860,-0.005696,0.007497,0.249888,0,0);}
.mc6_c00094{transform:matrix(0.190079,-0.005702,0.007497,0.249888,0,0);-ms-transform:matrix(0.190079,-0.005702,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190079,-0.005702,0.007497,0.249888,0,0);}
.me5_c00094{transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);-ms-transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);}
.m92_c00094{transform:matrix(0.190499,-0.005715,0.007497,0.249888,0,0);-ms-transform:matrix(0.190499,-0.005715,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190499,-0.005715,0.007497,0.249888,0,0);}
.m81_c00094{transform:matrix(0.190829,-0.005725,0.007497,0.249888,0,0);-ms-transform:matrix(0.190829,-0.005725,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190829,-0.005725,0.007497,0.249888,0,0);}
.m97_c00094{transform:matrix(0.191039,-0.005731,0.007497,0.249888,0,0);-ms-transform:matrix(0.191039,-0.005731,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191039,-0.005731,0.007497,0.249888,0,0);}
.md9_c00094{transform:matrix(0.191719,-0.005752,0.007497,0.249888,0,0);-ms-transform:matrix(0.191719,-0.005752,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191719,-0.005752,0.007497,0.249888,0,0);}
.m5_c00094{transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);-ms-transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);}
.m9b_c00094{transform:matrix(0.192194,-0.005766,0.007497,0.249888,0,0);-ms-transform:matrix(0.192194,-0.005766,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192194,-0.005766,0.007497,0.249888,0,0);}
.mb8_c00094{transform:matrix(0.192229,-0.005767,0.007497,0.249888,0,0);-ms-transform:matrix(0.192229,-0.005767,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192229,-0.005767,0.007497,0.249888,0,0);}
.mec_c00094{transform:matrix(0.192373,-0.005771,0.007497,0.249888,0,0);-ms-transform:matrix(0.192373,-0.005771,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192373,-0.005771,0.007497,0.249888,0,0);}
.maa_c00094{transform:matrix(0.192668,-0.005780,0.007497,0.249888,0,0);-ms-transform:matrix(0.192668,-0.005780,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192668,-0.005780,0.007497,0.249888,0,0);}
.m24_c00094{transform:matrix(0.194058,-0.005822,0.007497,0.249888,0,0);-ms-transform:matrix(0.194058,-0.005822,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194058,-0.005822,0.007497,0.249888,0,0);}
.m1c_c00094{transform:matrix(0.194727,-0.005842,0.007497,0.249888,0,0);-ms-transform:matrix(0.194727,-0.005842,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194727,-0.005842,0.007497,0.249888,0,0);}
.m25_c00094{transform:matrix(0.194807,-0.005844,0.007497,0.249888,0,0);-ms-transform:matrix(0.194807,-0.005844,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194807,-0.005844,0.007497,0.249888,0,0);}
.ma2_c00094{transform:matrix(0.195037,-0.005851,0.007497,0.249888,0,0);-ms-transform:matrix(0.195037,-0.005851,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195037,-0.005851,0.007497,0.249888,0,0);}
.mcf_c00094{transform:matrix(0.195392,-0.005862,0.007497,0.249888,0,0);-ms-transform:matrix(0.195392,-0.005862,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195392,-0.005862,0.007497,0.249888,0,0);}
.m2e_c00094{transform:matrix(0.195827,-0.005875,0.007497,0.249888,0,0);-ms-transform:matrix(0.195827,-0.005875,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195827,-0.005875,0.007497,0.249888,0,0);}
.m8b_c00094{transform:matrix(0.196107,-0.005883,0.007497,0.249888,0,0);-ms-transform:matrix(0.196107,-0.005883,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196107,-0.005883,0.007497,0.249888,0,0);}
.m13_c00094{transform:matrix(0.196532,-0.005896,0.007497,0.249888,0,0);-ms-transform:matrix(0.196532,-0.005896,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196532,-0.005896,0.007497,0.249888,0,0);}
.m8_c00094{transform:matrix(0.196916,-0.005907,0.007497,0.249888,0,0);-ms-transform:matrix(0.196916,-0.005907,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196916,-0.005907,0.007497,0.249888,0,0);}
.m29_c00094{transform:matrix(0.197466,-0.005924,0.007497,0.249888,0,0);-ms-transform:matrix(0.197466,-0.005924,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197466,-0.005924,0.007497,0.249888,0,0);}
.mab_c00094{transform:matrix(0.197836,-0.005935,0.007497,0.249888,0,0);-ms-transform:matrix(0.197836,-0.005935,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197836,-0.005935,0.007497,0.249888,0,0);}
.md3_c00094{transform:matrix(0.198186,-0.005946,0.007497,0.249888,0,0);-ms-transform:matrix(0.198186,-0.005946,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198186,-0.005946,0.007497,0.249888,0,0);}
.m76_c00094{transform:matrix(0.198990,-0.005970,0.007497,0.249888,0,0);-ms-transform:matrix(0.198990,-0.005970,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198990,-0.005970,0.007497,0.249888,0,0);}
.m8c_c00094{transform:matrix(0.199290,-0.005979,0.007497,0.249888,0,0);-ms-transform:matrix(0.199290,-0.005979,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199290,-0.005979,0.007497,0.249888,0,0);}
.m3b_c00094{transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);-ms-transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199330,-0.005980,0.007497,0.249888,0,0);}
.mea_c00094{transform:matrix(0.199460,-0.005984,0.007497,0.249888,0,0);-ms-transform:matrix(0.199460,-0.005984,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199460,-0.005984,0.007497,0.249888,0,0);}
.md2_c00094{transform:matrix(0.200510,-0.006015,0.007497,0.249888,0,0);-ms-transform:matrix(0.200510,-0.006015,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200510,-0.006015,0.007497,0.249888,0,0);}
.mda_c00094{transform:matrix(0.200550,-0.006016,0.007497,0.249888,0,0);-ms-transform:matrix(0.200550,-0.006016,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200550,-0.006016,0.007497,0.249888,0,0);}
.mcd_c00094{transform:matrix(0.200805,-0.006024,0.007497,0.249888,0,0);-ms-transform:matrix(0.200805,-0.006024,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200805,-0.006024,0.007497,0.249888,0,0);}
.md_c00094{transform:matrix(0.200850,-0.006025,0.007497,0.249888,0,0);-ms-transform:matrix(0.200850,-0.006025,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200850,-0.006025,0.007497,0.249888,0,0);}
.m17_c00094{transform:matrix(0.200865,-0.006026,0.007497,0.249888,0,0);-ms-transform:matrix(0.200865,-0.006026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200865,-0.006026,0.007497,0.249888,0,0);}
.mc4_c00094{transform:matrix(0.201189,-0.006036,0.007497,0.249888,0,0);-ms-transform:matrix(0.201189,-0.006036,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201189,-0.006036,0.007497,0.249888,0,0);}
.mac_c00094{transform:matrix(0.201454,-0.006044,0.007497,0.249888,0,0);-ms-transform:matrix(0.201454,-0.006044,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201454,-0.006044,0.007497,0.249888,0,0);}
.m59_c00094{transform:matrix(0.202304,-0.006069,0.007497,0.249888,0,0);-ms-transform:matrix(0.202304,-0.006069,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202304,-0.006069,0.007497,0.249888,0,0);}
.m35_c00094{transform:matrix(0.202849,-0.006085,0.007497,0.249888,0,0);-ms-transform:matrix(0.202849,-0.006085,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202849,-0.006085,0.007497,0.249888,0,0);}
.mb6_c00094{transform:matrix(0.203064,-0.006092,0.007497,0.249888,0,0);-ms-transform:matrix(0.203064,-0.006092,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203064,-0.006092,0.007497,0.249888,0,0);}
.m66_c00094{transform:matrix(0.203174,-0.006095,0.007497,0.249888,0,0);-ms-transform:matrix(0.203174,-0.006095,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203174,-0.006095,0.007497,0.249888,0,0);}
.mdb_c00094{transform:matrix(0.203284,-0.006099,0.007497,0.249888,0,0);-ms-transform:matrix(0.203284,-0.006099,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203284,-0.006099,0.007497,0.249888,0,0);}
.m7d_c00094{transform:matrix(0.203498,-0.006105,0.007497,0.249888,0,0);-ms-transform:matrix(0.203498,-0.006105,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203498,-0.006105,0.007497,0.249888,0,0);}
.m56_c00094{transform:matrix(0.203948,-0.006118,0.007497,0.249888,0,0);-ms-transform:matrix(0.203948,-0.006118,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203948,-0.006118,0.007497,0.249888,0,0);}
.m30_c00094{transform:matrix(0.204373,-0.006131,0.007497,0.249888,0,0);-ms-transform:matrix(0.204373,-0.006131,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204373,-0.006131,0.007497,0.249888,0,0);}
.m7a_c00094{transform:matrix(0.204643,-0.006139,0.007497,0.249888,0,0);-ms-transform:matrix(0.204643,-0.006139,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204643,-0.006139,0.007497,0.249888,0,0);}
.m36_c00094{transform:matrix(0.205078,-0.006152,0.007497,0.249888,0,0);-ms-transform:matrix(0.205078,-0.006152,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205078,-0.006152,0.007497,0.249888,0,0);}
.m31_c00094{transform:matrix(0.205183,-0.006155,0.007497,0.249888,0,0);-ms-transform:matrix(0.205183,-0.006155,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205183,-0.006155,0.007497,0.249888,0,0);}
.m38_c00094{transform:matrix(0.205602,-0.006168,0.007497,0.249888,0,0);-ms-transform:matrix(0.205602,-0.006168,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205602,-0.006168,0.007497,0.249888,0,0);}
.m8d_c00094{transform:matrix(0.205922,-0.006178,0.007497,0.249888,0,0);-ms-transform:matrix(0.205922,-0.006178,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205922,-0.006178,0.007497,0.249888,0,0);}
.m9d_c00094{transform:matrix(0.206782,-0.006203,0.007497,0.249888,0,0);-ms-transform:matrix(0.206782,-0.006203,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206782,-0.006203,0.007497,0.249888,0,0);}
.m39_c00094{transform:matrix(0.206967,-0.006209,0.007497,0.249888,0,0);-ms-transform:matrix(0.206967,-0.006209,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206967,-0.006209,0.007497,0.249888,0,0);}
.m6d_c00094{transform:matrix(0.207287,-0.006219,0.007497,0.249888,0,0);-ms-transform:matrix(0.207287,-0.006219,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207287,-0.006219,0.007497,0.249888,0,0);}
.mb3_c00094{transform:matrix(0.207332,-0.006220,0.007497,0.249888,0,0);-ms-transform:matrix(0.207332,-0.006220,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207332,-0.006220,0.007497,0.249888,0,0);}
.md8_c00094{transform:matrix(0.208571,-0.006257,0.007497,0.249888,0,0);-ms-transform:matrix(0.208571,-0.006257,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208571,-0.006257,0.007497,0.249888,0,0);}
.m1d_c00094{transform:matrix(0.209076,-0.006272,0.007497,0.249888,0,0);-ms-transform:matrix(0.209076,-0.006272,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209076,-0.006272,0.007497,0.249888,0,0);}
.ma0_c00094{transform:matrix(0.209786,-0.006294,0.007497,0.249888,0,0);-ms-transform:matrix(0.209786,-0.006294,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209786,-0.006294,0.007497,0.249888,0,0);}
.m68_c00094{transform:matrix(0.209821,-0.006295,0.007497,0.249888,0,0);-ms-transform:matrix(0.209821,-0.006295,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209821,-0.006295,0.007497,0.249888,0,0);}
.m91_c00094{transform:matrix(0.210085,-0.006303,0.007497,0.249888,0,0);-ms-transform:matrix(0.210085,-0.006303,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210085,-0.006303,0.007497,0.249888,0,0);}
.m7e_c00094{transform:matrix(0.210230,-0.006307,0.007497,0.249888,0,0);-ms-transform:matrix(0.210230,-0.006307,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210230,-0.006307,0.007497,0.249888,0,0);}
.m1a_c00094{transform:matrix(0.210695,-0.006321,0.007497,0.249888,0,0);-ms-transform:matrix(0.210695,-0.006321,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210695,-0.006321,0.007497,0.249888,0,0);}
.m19_c00094{transform:matrix(0.210735,-0.006322,0.007497,0.249888,0,0);-ms-transform:matrix(0.210735,-0.006322,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210735,-0.006322,0.007497,0.249888,0,0);}
.mc5_c00094{transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-ms-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);}
.m21_c00094{transform:matrix(0.211095,-0.006333,0.007497,0.249888,0,0);-ms-transform:matrix(0.211095,-0.006333,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211095,-0.006333,0.007497,0.249888,0,0);}
.m86_c00094{transform:matrix(0.211305,-0.006339,0.007497,0.249888,0,0);-ms-transform:matrix(0.211305,-0.006339,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211305,-0.006339,0.007497,0.249888,0,0);}
.md5_c00094{transform:matrix(0.211350,-0.006340,0.007497,0.249888,0,0);-ms-transform:matrix(0.211350,-0.006340,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211350,-0.006340,0.007497,0.249888,0,0);}
.m7f_c00094{transform:matrix(0.211370,-0.006341,0.007497,0.249888,0,0);-ms-transform:matrix(0.211370,-0.006341,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211370,-0.006341,0.007497,0.249888,0,0);}
.md6_c00094{transform:matrix(0.211730,-0.006352,0.007497,0.249888,0,0);-ms-transform:matrix(0.211730,-0.006352,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211730,-0.006352,0.007497,0.249888,0,0);}
.mb4_c00094{transform:matrix(0.211900,-0.006357,0.007497,0.249888,0,0);-ms-transform:matrix(0.211900,-0.006357,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211900,-0.006357,0.007497,0.249888,0,0);}
.mb1_c00094{transform:matrix(0.212314,-0.006369,0.007497,0.249888,0,0);-ms-transform:matrix(0.212314,-0.006369,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212314,-0.006369,0.007497,0.249888,0,0);}
.m5c_c00094{transform:matrix(0.212339,-0.006370,0.007497,0.249888,0,0);-ms-transform:matrix(0.212339,-0.006370,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212339,-0.006370,0.007497,0.249888,0,0);}
.md7_c00094{transform:matrix(0.213164,-0.006395,0.007497,0.249888,0,0);-ms-transform:matrix(0.213164,-0.006395,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213164,-0.006395,0.007497,0.249888,0,0);}
.m7b_c00094{transform:matrix(0.213449,-0.006403,0.007497,0.249888,0,0);-ms-transform:matrix(0.213449,-0.006403,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213449,-0.006403,0.007497,0.249888,0,0);}
.m45_c00094{transform:matrix(0.213849,-0.006415,0.007497,0.249888,0,0);-ms-transform:matrix(0.213849,-0.006415,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213849,-0.006415,0.007497,0.249888,0,0);}
.m5a_c00094{transform:matrix(0.213949,-0.006418,0.007497,0.249888,0,0);-ms-transform:matrix(0.213949,-0.006418,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213949,-0.006418,0.007497,0.249888,0,0);}
.m58_c00094{transform:matrix(0.214758,-0.006443,0.007497,0.249888,0,0);-ms-transform:matrix(0.214758,-0.006443,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214758,-0.006443,0.007497,0.249888,0,0);}
.m60_c00094{transform:matrix(0.214873,-0.006446,0.007497,0.249888,0,0);-ms-transform:matrix(0.214873,-0.006446,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214873,-0.006446,0.007497,0.249888,0,0);}
.m2b_c00094{transform:matrix(0.215563,-0.006467,0.007497,0.249888,0,0);-ms-transform:matrix(0.215563,-0.006467,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215563,-0.006467,0.007497,0.249888,0,0);}
.mb2_c00094{transform:matrix(0.216123,-0.006484,0.007497,0.249888,0,0);-ms-transform:matrix(0.216123,-0.006484,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216123,-0.006484,0.007497,0.249888,0,0);}
.mc7_c00094{transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);-ms-transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);}
.mbe_c00094{transform:matrix(0.216608,-0.006498,0.007497,0.249888,0,0);-ms-transform:matrix(0.216608,-0.006498,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216608,-0.006498,0.007497,0.249888,0,0);}
.me_c00094{transform:matrix(0.216703,-0.006501,0.007497,0.249888,0,0);-ms-transform:matrix(0.216703,-0.006501,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216703,-0.006501,0.007497,0.249888,0,0);}
.m9e_c00094{transform:matrix(0.216713,-0.006501,0.007497,0.249888,0,0);-ms-transform:matrix(0.216713,-0.006501,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216713,-0.006501,0.007497,0.249888,0,0);}
.m49_c00094{transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);-ms-transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);}
.m4_c00094{transform:matrix(0.217762,-0.006533,0.007497,0.249888,0,0);-ms-transform:matrix(0.217762,-0.006533,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217762,-0.006533,0.007497,0.249888,0,0);}
.m77_c00094{transform:matrix(0.218262,-0.006548,0.007497,0.249888,0,0);-ms-transform:matrix(0.218262,-0.006548,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218262,-0.006548,0.007497,0.249888,0,0);}
.m11_c00094{transform:matrix(0.218367,-0.006551,0.007497,0.249888,0,0);-ms-transform:matrix(0.218367,-0.006551,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218367,-0.006551,0.007497,0.249888,0,0);}
.mc9_c00094{transform:matrix(0.218717,-0.006561,0.007497,0.249888,0,0);-ms-transform:matrix(0.218717,-0.006561,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218717,-0.006561,0.007497,0.249888,0,0);}
.m8a_c00094{transform:matrix(0.219726,-0.006592,0.007497,0.249888,0,0);-ms-transform:matrix(0.219726,-0.006592,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219726,-0.006592,0.007497,0.249888,0,0);}
.ma7_c00094{transform:matrix(0.220421,-0.006613,0.007497,0.249888,0,0);-ms-transform:matrix(0.220421,-0.006613,0.007497,0.249888,0,0);-webkit-transform:matrix(0.220421,-0.006613,0.007497,0.249888,0,0);}
.m3a_c00094{transform:matrix(0.220991,-0.006630,0.007497,0.249888,0,0);-ms-transform:matrix(0.220991,-0.006630,0.007497,0.249888,0,0);-webkit-transform:matrix(0.220991,-0.006630,0.007497,0.249888,0,0);}
.m82_c00094{transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);-ms-transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);}
.m69_c00094{transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);-ms-transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);}
.m33_c00094{transform:matrix(0.223075,-0.006692,0.007497,0.249888,0,0);-ms-transform:matrix(0.223075,-0.006692,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223075,-0.006692,0.007497,0.249888,0,0);}
.mc8_c00094{transform:matrix(0.224034,-0.006721,0.007497,0.249888,0,0);-ms-transform:matrix(0.224034,-0.006721,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224034,-0.006721,0.007497,0.249888,0,0);}
.m75_c00094{transform:matrix(0.225479,-0.006764,0.007497,0.249888,0,0);-ms-transform:matrix(0.225479,-0.006764,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225479,-0.006764,0.007497,0.249888,0,0);}
.mca_c00094{transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);-ms-transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226183,-0.006785,0.007497,0.249888,0,0);}
.mb5_c00094{transform:matrix(0.226888,-0.006807,0.007497,0.249888,0,0);-ms-transform:matrix(0.226888,-0.006807,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226888,-0.006807,0.007497,0.249888,0,0);}
.mbc_c00094{transform:matrix(0.227258,-0.006818,0.007497,0.249888,0,0);-ms-transform:matrix(0.227258,-0.006818,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227258,-0.006818,0.007497,0.249888,0,0);}
.m9a_c00094{transform:matrix(0.227588,-0.006828,0.007497,0.249888,0,0);-ms-transform:matrix(0.227588,-0.006828,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227588,-0.006828,0.007497,0.249888,0,0);}
.ma8_c00094{transform:matrix(0.227713,-0.006831,0.007497,0.249888,0,0);-ms-transform:matrix(0.227713,-0.006831,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227713,-0.006831,0.007497,0.249888,0,0);}
.m2f_c00094{transform:matrix(0.231071,-0.006932,0.007497,0.249888,0,0);-ms-transform:matrix(0.231071,-0.006932,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231071,-0.006932,0.007497,0.249888,0,0);}
.m1_c00094{transform:matrix(0.231136,-0.006934,0.007497,0.249888,0,0);-ms-transform:matrix(0.231136,-0.006934,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231136,-0.006934,0.007497,0.249888,0,0);}
.mbf_c00094{transform:matrix(0.231356,-0.006941,0.007497,0.249888,0,0);-ms-transform:matrix(0.231356,-0.006941,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231356,-0.006941,0.007497,0.249888,0,0);}
.m99_c00094{transform:matrix(0.233490,-0.007005,0.007497,0.249888,0,0);-ms-transform:matrix(0.233490,-0.007005,0.007497,0.249888,0,0);-webkit-transform:matrix(0.233490,-0.007005,0.007497,0.249888,0,0);}
.m42_c00094{transform:matrix(0.235204,-0.007056,0.007497,0.249888,0,0);-ms-transform:matrix(0.235204,-0.007056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235204,-0.007056,0.007497,0.249888,0,0);}
.me2_c00094{transform:matrix(0.235224,-0.007057,0.007497,0.249888,0,0);-ms-transform:matrix(0.235224,-0.007057,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235224,-0.007057,0.007497,0.249888,0,0);}
.me1_c00094{transform:matrix(0.235839,-0.007075,0.007497,0.249888,0,0);-ms-transform:matrix(0.235839,-0.007075,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235839,-0.007075,0.007497,0.249888,0,0);}
.mcb_c00094{transform:matrix(0.241426,-0.007243,0.007497,0.249888,0,0);-ms-transform:matrix(0.241426,-0.007243,0.007497,0.249888,0,0);-webkit-transform:matrix(0.241426,-0.007243,0.007497,0.249888,0,0);}
.mc0_c00094{transform:matrix(0.246204,-0.007386,0.007497,0.249888,0,0);-ms-transform:matrix(0.246204,-0.007386,0.007497,0.249888,0,0);-webkit-transform:matrix(0.246204,-0.007386,0.007497,0.249888,0,0);}
.m9c_c00094{transform:matrix(0.247504,-0.007425,0.007497,0.249888,0,0);-ms-transform:matrix(0.247504,-0.007425,0.007497,0.249888,0,0);-webkit-transform:matrix(0.247504,-0.007425,0.007497,0.249888,0,0);}
.mb_c00094{transform:matrix(0.250402,-0.007512,0.007497,0.249888,0,0);-ms-transform:matrix(0.250402,-0.007512,0.007497,0.249888,0,0);-webkit-transform:matrix(0.250402,-0.007512,0.007497,0.249888,0,0);}
.mbd_c00094{transform:matrix(0.252956,-0.007589,0.007497,0.249888,0,0);-ms-transform:matrix(0.252956,-0.007589,0.007497,0.249888,0,0);-webkit-transform:matrix(0.252956,-0.007589,0.007497,0.249888,0,0);}
.m8e_c00094{transform:matrix(0.253841,-0.007615,0.007497,0.249888,0,0);-ms-transform:matrix(0.253841,-0.007615,0.007497,0.249888,0,0);-webkit-transform:matrix(0.253841,-0.007615,0.007497,0.249888,0,0);}
.m34_c00094{transform:matrix(0.254570,-0.007637,0.007497,0.249888,0,0);-ms-transform:matrix(0.254570,-0.007637,0.007497,0.249888,0,0);-webkit-transform:matrix(0.254570,-0.007637,0.007497,0.249888,0,0);}
.m27_c00094{transform:matrix(0.254625,-0.007639,0.007497,0.249888,0,0);-ms-transform:matrix(0.254625,-0.007639,0.007497,0.249888,0,0);-webkit-transform:matrix(0.254625,-0.007639,0.007497,0.249888,0,0);}
.m67_c00094{transform:matrix(0.254660,-0.007640,0.007497,0.249888,0,0);-ms-transform:matrix(0.254660,-0.007640,0.007497,0.249888,0,0);-webkit-transform:matrix(0.254660,-0.007640,0.007497,0.249888,0,0);}
.mcc_c00094{transform:matrix(0.255970,-0.007679,0.007497,0.249888,0,0);-ms-transform:matrix(0.255970,-0.007679,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255970,-0.007679,0.007497,0.249888,0,0);}
.mb9_c00094{transform:matrix(0.257039,-0.007711,0.007497,0.249888,0,0);-ms-transform:matrix(0.257039,-0.007711,0.007497,0.249888,0,0);-webkit-transform:matrix(0.257039,-0.007711,0.007497,0.249888,0,0);}
.m62_c00094{transform:matrix(0.258359,-0.007751,0.007497,0.249888,0,0);-ms-transform:matrix(0.258359,-0.007751,0.007497,0.249888,0,0);-webkit-transform:matrix(0.258359,-0.007751,0.007497,0.249888,0,0);}
.m80_c00094{transform:matrix(0.263172,-0.007895,0.007497,0.249888,0,0);-ms-transform:matrix(0.263172,-0.007895,0.007497,0.249888,0,0);-webkit-transform:matrix(0.263172,-0.007895,0.007497,0.249888,0,0);}
.ma3_c00094{transform:matrix(0.263746,-0.007912,0.007497,0.249888,0,0);-ms-transform:matrix(0.263746,-0.007912,0.007497,0.249888,0,0);-webkit-transform:matrix(0.263746,-0.007912,0.007497,0.249888,0,0);}
.ma4_c00094{transform:matrix(0.264811,-0.007944,0.007497,0.249888,0,0);-ms-transform:matrix(0.264811,-0.007944,0.007497,0.249888,0,0);-webkit-transform:matrix(0.264811,-0.007944,0.007497,0.249888,0,0);}
.ma9_c00094{transform:matrix(0.266675,-0.008000,0.007497,0.249888,0,0);-ms-transform:matrix(0.266675,-0.008000,0.007497,0.249888,0,0);-webkit-transform:matrix(0.266675,-0.008000,0.007497,0.249888,0,0);}
.maf_c00094{transform:matrix(0.268319,-0.008050,0.007497,0.249888,0,0);-ms-transform:matrix(0.268319,-0.008050,0.007497,0.249888,0,0);-webkit-transform:matrix(0.268319,-0.008050,0.007497,0.249888,0,0);}
.md4_c00094{transform:matrix(0.272547,-0.008176,0.007497,0.249888,0,0);-ms-transform:matrix(0.272547,-0.008176,0.007497,0.249888,0,0);-webkit-transform:matrix(0.272547,-0.008176,0.007497,0.249888,0,0);}
.m26_c00094{transform:matrix(0.275296,-0.008259,0.007497,0.249888,0,0);-ms-transform:matrix(0.275296,-0.008259,0.007497,0.249888,0,0);-webkit-transform:matrix(0.275296,-0.008259,0.007497,0.249888,0,0);}
.mbb_c00094{transform:matrix(0.280829,-0.008425,0.007497,0.249888,0,0);-ms-transform:matrix(0.280829,-0.008425,0.007497,0.249888,0,0);-webkit-transform:matrix(0.280829,-0.008425,0.007497,0.249888,0,0);}
.m6a_c00094{transform:matrix(0.285786,-0.008574,0.007497,0.249888,0,0);-ms-transform:matrix(0.285786,-0.008574,0.007497,0.249888,0,0);-webkit-transform:matrix(0.285786,-0.008574,0.007497,0.249888,0,0);}
.m8f_c00094{transform:matrix(0.286501,-0.008595,0.007497,0.249888,0,0);-ms-transform:matrix(0.286501,-0.008595,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286501,-0.008595,0.007497,0.249888,0,0);}
.m6_c00094{transform:matrix(0.300160,-0.009005,0.007497,0.249888,0,0);-ms-transform:matrix(0.300160,-0.009005,0.007497,0.249888,0,0);-webkit-transform:matrix(0.300160,-0.009005,0.007497,0.249888,0,0);}
.mba_c00094{transform:matrix(0.305158,-0.009155,0.007497,0.249888,0,0);-ms-transform:matrix(0.305158,-0.009155,0.007497,0.249888,0,0);-webkit-transform:matrix(0.305158,-0.009155,0.007497,0.249888,0,0);}
.m16_c00094{transform:matrix(0.311290,-0.009339,0.007497,0.249888,0,0);-ms-transform:matrix(0.311290,-0.009339,0.007497,0.249888,0,0);-webkit-transform:matrix(0.311290,-0.009339,0.007497,0.249888,0,0);}
.m79_c00094{transform:matrix(0.317247,-0.009517,0.007497,0.249888,0,0);-ms-transform:matrix(0.317247,-0.009517,0.007497,0.249888,0,0);-webkit-transform:matrix(0.317247,-0.009517,0.007497,0.249888,0,0);}
.m3c_c00094{transform:matrix(0.340607,-0.010218,0.007497,0.249888,0,0);-ms-transform:matrix(0.340607,-0.010218,0.007497,0.249888,0,0);-webkit-transform:matrix(0.340607,-0.010218,0.007497,0.249888,0,0);}
.m65_c00094{transform:matrix(0.358879,-0.010766,0.007497,0.249888,0,0);-ms-transform:matrix(0.358879,-0.010766,0.007497,0.249888,0,0);-webkit-transform:matrix(0.358879,-0.010766,0.007497,0.249888,0,0);}
.ma6_c00094{transform:matrix(0.375321,-0.011260,0.007497,0.249888,0,0);-ms-transform:matrix(0.375321,-0.011260,0.007497,0.249888,0,0);-webkit-transform:matrix(0.375321,-0.011260,0.007497,0.249888,0,0);}
.m90_c00094{transform:matrix(0.376606,-0.011298,0.007497,0.249888,0,0);-ms-transform:matrix(0.376606,-0.011298,0.007497,0.249888,0,0);-webkit-transform:matrix(0.376606,-0.011298,0.007497,0.249888,0,0);}
.m10_c00094{transform:matrix(0.400740,-0.012022,0.007497,0.249888,0,0);-ms-transform:matrix(0.400740,-0.012022,0.007497,0.249888,0,0);-webkit-transform:matrix(0.400740,-0.012022,0.007497,0.249888,0,0);}
.ma_c00094{transform:matrix(0.415998,-0.012480,0.007497,0.249888,0,0);-ms-transform:matrix(0.415998,-0.012480,0.007497,0.249888,0,0);-webkit-transform:matrix(0.415998,-0.012480,0.007497,0.249888,0,0);}
.mdd_c00094{transform:matrix(0.462277,-0.013868,0.007497,0.249888,0,0);-ms-transform:matrix(0.462277,-0.013868,0.007497,0.249888,0,0);-webkit-transform:matrix(0.462277,-0.013868,0.007497,0.249888,0,0);}
.m64_c00094{transform:matrix(0.580989,-0.017430,0.007497,0.249888,0,0);-ms-transform:matrix(0.580989,-0.017430,0.007497,0.249888,0,0);-webkit-transform:matrix(0.580989,-0.017430,0.007497,0.249888,0,0);}
.md1_c00094{transform:matrix(0.623090,-0.018693,0.007497,0.249888,0,0);-ms-transform:matrix(0.623090,-0.018693,0.007497,0.249888,0,0);-webkit-transform:matrix(0.623090,-0.018693,0.007497,0.249888,0,0);}
.m2_c00094{transform:matrix(1.565980,-0.046979,0.007497,0.249888,0,0);-ms-transform:matrix(1.565980,-0.046979,0.007497,0.249888,0,0);-webkit-transform:matrix(1.565980,-0.046979,0.007497,0.249888,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:0.000000px;}
.fc0_c00094{color:transparent;}
.fsb_c00094{font-size:57.775982px;}
.fs7_c00094{font-size:60.927399px;}
.fs6_c00094{font-size:63.028344px;}
.fs4_c00094{font-size:64.078816px;}
.fs5_c00094{font-size:65.129288px;}
.fs0_c00094{font-size:67.200000px;}
.fs8_c00094{font-size:67.230233px;}
.fs3_c00094{font-size:68.280706px;}
.fs1_c00094{font-size:70.381650px;}
.fsc_c00094{font-size:71.432123px;}
.fsa_c00094{font-size:72.482595px;}
.fs9_c00094{font-size:74.583540px;}
.fsd_c00094{font-size:75.634012px;}
.fs2_c00094{font-size:76.684485px;}
.y0_c00094{bottom:0.000000px;}
.ye9_c00094{bottom:29.464995px;}
.yea_c00094{bottom:30.055515px;}
.yeb_c00094{bottom:30.509130px;}
.yec_c00094{bottom:31.161870px;}
.yed_c00094{bottom:31.589310px;}
.yee_c00094{bottom:32.362035px;}
.yef_c00094{bottom:32.706615px;}
.yf0_c00094{bottom:32.979480px;}
.ye0_c00094{bottom:43.516530px;}
.ye1_c00094{bottom:44.031750px;}
.ye2_c00094{bottom:44.961495px;}
.ye3_c00094{bottom:45.265320px;}
.ye4_c00094{bottom:45.665760px;}
.ye5_c00094{bottom:46.707735px;}
.ye6_c00094{bottom:47.135400px;}
.ye7_c00094{bottom:48.620040px;}
.ye8_c00094{bottom:49.481325px;}
.yd8_c00094{bottom:62.151450px;}
.yd9_c00094{bottom:62.863080px;}
.yda_c00094{bottom:63.124845px;}
.ydb_c00094{bottom:64.231575px;}
.ydc_c00094{bottom:64.639935px;}
.ydd_c00094{bottom:65.154180px;}
.yde_c00094{bottom:66.386835px;}
.ydf_c00094{bottom:67.950195px;}
.ycf_c00094{bottom:81.870465px;}
.yd0_c00094{bottom:82.311645px;}
.yd1_c00094{bottom:82.604775px;}
.yd2_c00094{bottom:83.330625px;}
.yd3_c00094{bottom:83.639220px;}
.yd4_c00094{bottom:84.677130px;}
.yd5_c00094{bottom:85.098435px;}
.yd6_c00094{bottom:86.172645px;}
.yd7_c00094{bottom:86.498070px;}
.yc9_c00094{bottom:93.770400px;}
.yca_c00094{bottom:95.456430px;}
.ycb_c00094{bottom:97.599000px;}
.ycc_c00094{bottom:99.643410px;}
.ycd_c00094{bottom:100.480935px;}
.yce_c00094{bottom:101.978655px;}
.yc3_c00094{bottom:112.671900px;}
.yc4_c00094{bottom:113.965395px;}
.yc5_c00094{bottom:114.386355px;}
.yc6_c00094{bottom:114.797400px;}
.yc7_c00094{bottom:118.658250px;}
.yc8_c00094{bottom:119.593035px;}
.ybb_c00094{bottom:131.846850px;}
.ybc_c00094{bottom:132.875985px;}
.ybd_c00094{bottom:133.109940px;}
.ybe_c00094{bottom:133.950300px;}
.ybf_c00094{bottom:134.351505px;}
.yc0_c00094{bottom:135.804180px;}
.yc1_c00094{bottom:136.221180px;}
.yc2_c00094{bottom:136.976610px;}
.yb5_c00094{bottom:148.324095px;}
.yb6_c00094{bottom:149.722455px;}
.yb7_c00094{bottom:150.838950px;}
.yb8_c00094{bottom:152.404875px;}
.yb9_c00094{bottom:153.037170px;}
.yba_c00094{bottom:153.466305px;}
.yad_c00094{bottom:166.150770px;}
.yae_c00094{bottom:167.214570px;}
.yaf_c00094{bottom:167.988225px;}
.yb0_c00094{bottom:168.964845px;}
.yb1_c00094{bottom:169.623960px;}
.yb2_c00094{bottom:169.994790px;}
.yb3_c00094{bottom:170.424240px;}
.yb4_c00094{bottom:171.742950px;}
.ya8_c00094{bottom:187.669845px;}
.ya4_c00094{bottom:187.669860px;}
.yaa_c00094{bottom:187.670070px;}
.yac_c00094{bottom:187.670400px;}
.yab_c00094{bottom:187.670445px;}
.ya9_c00094{bottom:187.670520px;}
.ya5_c00094{bottom:187.670535px;}
.ya7_c00094{bottom:187.670580px;}
.ya6_c00094{bottom:187.670595px;}
.y9d_c00094{bottom:200.454540px;}
.y9e_c00094{bottom:200.802360px;}
.y9f_c00094{bottom:201.876780px;}
.ya0_c00094{bottom:203.394795px;}
.ya1_c00094{bottom:204.589515px;}
.ya2_c00094{bottom:205.050225px;}
.ya3_c00094{bottom:205.411380px;}
.y9b_c00094{bottom:222.733395px;}
.y99_c00094{bottom:222.733710px;}
.y98_c00094{bottom:222.733950px;}
.y9a_c00094{bottom:222.734025px;}
.y9c_c00094{bottom:222.734100px;}
.y97_c00094{bottom:222.734130px;}
.y96_c00094{bottom:222.734160px;}
.y8d_c00094{bottom:237.726195px;}
.y8e_c00094{bottom:238.274775px;}
.y8f_c00094{bottom:238.497720px;}
.y90_c00094{bottom:238.773675px;}
.y91_c00094{bottom:239.648625px;}
.y92_c00094{bottom:239.901885px;}
.y93_c00094{bottom:240.471015px;}
.y94_c00094{bottom:240.753015px;}
.y95_c00094{bottom:241.119315px;}
.y84_c00094{bottom:254.745570px;}
.y85_c00094{bottom:255.414720px;}
.y86_c00094{bottom:255.714210px;}
.y87_c00094{bottom:256.047000px;}
.y88_c00094{bottom:256.870620px;}
.y89_c00094{bottom:257.530785px;}
.y8a_c00094{bottom:257.913855px;}
.y8b_c00094{bottom:258.317355px;}
.y8c_c00094{bottom:258.786390px;}
.y7d_c00094{bottom:271.495065px;}
.y7e_c00094{bottom:272.139135px;}
.y7f_c00094{bottom:272.496960px;}
.y80_c00094{bottom:272.878230px;}
.y81_c00094{bottom:274.186785px;}
.y82_c00094{bottom:274.775895px;}
.y83_c00094{bottom:275.626830px;}
.y78_c00094{bottom:289.578330px;}
.y79_c00094{bottom:292.508025px;}
.y7a_c00094{bottom:292.954560px;}
.y7b_c00094{bottom:293.200770px;}
.y7c_c00094{bottom:293.688585px;}
.y72_c00094{bottom:307.422225px;}
.y73_c00094{bottom:308.056320px;}
.y74_c00094{bottom:308.421420px;}
.y75_c00094{bottom:310.417770px;}
.y76_c00094{bottom:311.694630px;}
.y77_c00094{bottom:312.085290px;}
.y6d_c00094{bottom:322.014795px;}
.y6e_c00094{bottom:323.189025px;}
.y6f_c00094{bottom:326.397075px;}
.y70_c00094{bottom:329.370210px;}
.y71_c00094{bottom:329.674695px;}
.y65_c00094{bottom:339.298545px;}
.y66_c00094{bottom:339.634695px;}
.y67_c00094{bottom:341.122350px;}
.y68_c00094{bottom:342.382275px;}
.y69_c00094{bottom:342.678465px;}
.y6a_c00094{bottom:344.467110px;}
.y6b_c00094{bottom:344.894130px;}
.y6c_c00094{bottom:345.684795px;}
.y5e_c00094{bottom:354.699015px;}
.y5f_c00094{bottom:356.206350px;}
.y60_c00094{bottom:356.775225px;}
.y61_c00094{bottom:357.277290px;}
.y62_c00094{bottom:359.796915px;}
.y63_c00094{bottom:360.259530px;}
.y64_c00094{bottom:363.052620px;}
.y58_c00094{bottom:372.793665px;}
.y59_c00094{bottom:373.517100px;}
.y5a_c00094{bottom:375.314520px;}
.y5b_c00094{bottom:376.303785px;}
.y5c_c00094{bottom:379.498260px;}
.y5d_c00094{bottom:380.045565px;}
.y50_c00094{bottom:390.351150px;}
.y51_c00094{bottom:391.026645px;}
.y52_c00094{bottom:392.484210px;}
.y53_c00094{bottom:393.084300px;}
.y54_c00094{bottom:394.843755px;}
.y55_c00094{bottom:395.562060px;}
.y56_c00094{bottom:396.117720px;}
.y57_c00094{bottom:397.691025px;}
.y49_c00094{bottom:407.908785px;}
.y4a_c00094{bottom:409.278330px;}
.y4b_c00094{bottom:410.541345px;}
.y4c_c00094{bottom:411.088935px;}
.y4d_c00094{bottom:413.219700px;}
.y4e_c00094{bottom:414.071295px;}
.y4f_c00094{bottom:414.796050px;}
.y40_c00094{bottom:424.390215px;}
.y41_c00094{bottom:425.052450px;}
.y42_c00094{bottom:425.914440px;}
.y43_c00094{bottom:426.538095px;}
.y44_c00094{bottom:427.155870px;}
.y45_c00094{bottom:428.748270px;}
.y46_c00094{bottom:429.121635px;}
.y47_c00094{bottom:430.887345px;}
.y48_c00094{bottom:431.512170px;}
.y37_c00094{bottom:443.024040px;}
.y38_c00094{bottom:444.433365px;}
.y39_c00094{bottom:444.852195px;}
.y3a_c00094{bottom:445.938975px;}
.y3b_c00094{bottom:446.392530px;}
.y3c_c00094{bottom:447.770700px;}
.y3d_c00094{bottom:448.174125px;}
.y3e_c00094{bottom:448.919595px;}
.y3f_c00094{bottom:450.268470px;}
.y2d_c00094{bottom:460.041705px;}
.y2e_c00094{bottom:461.043285px;}
.y2f_c00094{bottom:461.812560px;}
.y30_c00094{bottom:462.345585px;}
.y31_c00094{bottom:463.221930px;}
.y32_c00094{bottom:464.358855px;}
.y33_c00094{bottom:465.524730px;}
.y34_c00094{bottom:465.935130px;}
.y35_c00094{bottom:466.346385px;}
.y36_c00094{bottom:467.773545px;}
.y23_c00094{bottom:476.518350px;}
.y24_c00094{bottom:477.122445px;}
.y25_c00094{bottom:477.811650px;}
.y26_c00094{bottom:479.211750px;}
.y27_c00094{bottom:480.053100px;}
.y28_c00094{bottom:481.431285px;}
.y29_c00094{bottom:482.310195px;}
.y2a_c00094{bottom:482.841825px;}
.y2b_c00094{bottom:483.855645px;}
.y2c_c00094{bottom:484.558350px;}
.y1c_c00094{bottom:494.885025px;}
.y1d_c00094{bottom:495.889710px;}
.y1e_c00094{bottom:496.832505px;}
.y1f_c00094{bottom:497.592975px;}
.y20_c00094{bottom:498.781125px;}
.y21_c00094{bottom:499.342545px;}
.y22_c00094{bottom:500.713245px;}
.y15_c00094{bottom:512.172045px;}
.y16_c00094{bottom:512.801550px;}
.y17_c00094{bottom:513.809070px;}
.y18_c00094{bottom:514.638735px;}
.y19_c00094{bottom:516.737835px;}
.y1a_c00094{bottom:517.623825px;}
.y1b_c00094{bottom:519.419025px;}
.ye_c00094{bottom:529.462605px;}
.yf_c00094{bottom:531.191325px;}
.y10_c00094{bottom:531.906900px;}
.y11_c00094{bottom:532.302015px;}
.y12_c00094{bottom:533.931750px;}
.y13_c00094{bottom:535.683570px;}
.y14_c00094{bottom:536.226195px;}
.y8_c00094{bottom:545.945100px;}
.y9_c00094{bottom:546.746415px;}
.ya_c00094{bottom:548.376720px;}
.yb_c00094{bottom:550.825935px;}
.yc_c00094{bottom:552.778125px;}
.yd_c00094{bottom:553.400565px;}
.y2_c00094{bottom:562.959000px;}
.y3_c00094{bottom:563.748975px;}
.y4_c00094{bottom:568.488015px;}
.y5_c00094{bottom:570.060630px;}
.y6_c00094{bottom:570.716910px;}
.y7_c00094{bottom:571.640850px;}
.y1_c00094{bottom:589.546500px;}
.hd_c00094{height:57.775982px;}
.h9_c00094{height:60.927399px;}
.h8_c00094{height:63.028344px;}
.h6_c00094{height:64.078816px;}
.h7_c00094{height:65.129288px;}
.h2_c00094{height:67.200000px;}
.ha_c00094{height:67.230233px;}
.h5_c00094{height:68.280706px;}
.h3_c00094{height:70.381650px;}
.he_c00094{height:71.432123px;}
.hc_c00094{height:72.482595px;}
.hb_c00094{height:74.583540px;}
.hf_c00094{height:75.634012px;}
.h4_c00094{height:76.684485px;}
.h0_c00094{height:624.450000px;}
.h1_c00094{height:624.750000px;}
.w0_c00094{width:371.790000px;}
.w1_c00094{width:372.000000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:32.454000px;}
.x13_c00094{left:33.979110px;}
.x1c_c00094{left:35.692800px;}
.x54_c00094{left:37.415550px;}
.x61_c00094{left:38.692965px;}
.x6b_c00094{left:39.774945px;}
.x79_c00094{left:47.124120px;}
.x44_c00094{left:51.571395px;}
.x1d_c00094{left:56.529930px;}
.x3_c00094{left:58.786500px;}
.x8_c00094{left:60.095295px;}
.x37_c00094{left:62.205585px;}
.x76_c00094{left:63.560790px;}
.x73_c00094{left:65.311500px;}
.x25_c00094{left:72.554280px;}
.x17_c00094{left:75.059580px;}
.x51_c00094{left:76.915230px;}
.x1e_c00094{left:80.304150px;}
.x5a_c00094{left:83.324010px;}
.x55_c00094{left:85.243500px;}
.x40_c00094{left:88.546440px;}
.x30_c00094{left:90.812115px;}
.x68_c00094{left:91.838055px;}
.x2a_c00094{left:92.906430px;}
.x6f_c00094{left:94.013550px;}
.x66_c00094{left:95.345580px;}
.x4a_c00094{left:98.606745px;}
.xd_c00094{left:99.744180px;}
.x26_c00094{left:101.049345px;}
.x6d_c00094{left:103.199490px;}
.x56_c00094{left:106.586715px;}
.x41_c00094{left:108.159525px;}
.x2b_c00094{left:109.669950px;}
.x70_c00094{left:111.548700px;}
.x18_c00094{left:112.791750px;}
.x9_c00094{left:114.438795px;}
.x38_c00094{left:118.247790px;}
.x77_c00094{left:119.593200px;}
.x27_c00094{left:120.768600px;}
.x52_c00094{left:123.121125px;}
.x42_c00094{left:125.495565px;}
.xe_c00094{left:127.249965px;}
.x1f_c00094{left:128.575590px;}
.x57_c00094{left:130.391145px;}
.x14_c00094{left:132.666915px;}
.x31_c00094{left:135.145770px;}
.x78_c00094{left:137.795565px;}
.x33_c00094{left:141.281775px;}
.xf_c00094{left:142.472310px;}
.x74_c00094{left:143.704905px;}
.x6e_c00094{left:145.224090px;}
.x28_c00094{left:153.233025px;}
.x20_c00094{left:157.571445px;}
.x71_c00094{left:159.616590px;}
.x34_c00094{left:163.188060px;}
.x3d_c00094{left:165.928140px;}
.x2c_c00094{left:171.273675px;}
.x45_c00094{left:176.437320px;}
.x7a_c00094{left:177.653130px;}
.x69_c00094{left:179.306745px;}
.x1_c00094{left:184.950000px;}
.x58_c00094{left:189.273405px;}
.x19_c00094{left:190.707405px;}
.x32_c00094{left:192.029190px;}
.x62_c00094{left:193.452495px;}
.xa_c00094{left:196.079295px;}
.x5b_c00094{left:197.880840px;}
.x47_c00094{left:198.896640px;}
.x10_c00094{left:205.154325px;}
.x5f_c00094{left:206.364960px;}
.x39_c00094{left:209.010180px;}
.x67_c00094{left:211.497525px;}
.x1a_c00094{left:213.174780px;}
.x4_c00094{left:216.754500px;}
.x5c_c00094{left:218.934180px;}
.x4b_c00094{left:223.354080px;}
.x2d_c00094{left:226.370910px;}
.x43_c00094{left:228.356670px;}
.x6a_c00094{left:230.803680px;}
.x21_c00094{left:235.410285px;}
.x3a_c00094{left:236.657010px;}
.x29_c00094{left:238.500675px;}
.x2e_c00094{left:242.520840px;}
.x4e_c00094{left:244.368285px;}
.x35_c00094{left:248.426340px;}
.x72_c00094{left:249.675690px;}
.x15_c00094{left:252.087825px;}
.x22_c00094{left:253.731825px;}
.x63_c00094{left:256.347240px;}
.x3b_c00094{left:258.031575px;}
.xb_c00094{left:261.152295px;}
.x59_c00094{left:263.833680px;}
.x5d_c00094{left:266.380785px;}
.x1b_c00094{left:268.023015px;}
.x5_c00094{left:269.175000px;}
.x46_c00094{left:271.204545px;}
.x11_c00094{left:272.506380px;}
.x4f_c00094{left:276.218040px;}
.x64_c00094{left:280.562205px;}
.xc_c00094{left:281.900295px;}
.x3e_c00094{left:284.221260px;}
.x23_c00094{left:288.676860px;}
.x5e_c00094{left:289.943520px;}
.x6_c00094{left:291.051000px;}
.x12_c00094{left:293.396400px;}
.x53_c00094{left:294.913215px;}
.x6c_c00094{left:296.858985px;}
.x65_c00094{left:299.556960px;}
.x4c_c00094{left:303.199605px;}
.x3f_c00094{left:304.516605px;}
.x48_c00094{left:309.011040px;}
.x36_c00094{left:311.480790px;}
.x24_c00094{left:312.901080px;}
.x7b_c00094{left:317.461365px;}
.x3c_c00094{left:318.532320px;}
.x49_c00094{left:320.311575px;}
.x7_c00094{left:321.849000px;}
.x16_c00094{left:323.888580px;}
.x2f_c00094{left:326.294895px;}
.x4d_c00094{left:327.581820px;}
.x50_c00094{left:328.660695px;}
.x75_c00094{left:329.664660px;}
.x60_c00094{left:333.592350px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
.fsb_c00094{font-size:51.356428pt;}
.fs7_c00094{font-size:54.157688pt;}
.fs6_c00094{font-size:56.025194pt;}
.fs4_c00094{font-size:56.958948pt;}
.fs5_c00094{font-size:57.892701pt;}
.fs0_c00094{font-size:59.733333pt;}
.fs8_c00094{font-size:59.760207pt;}
.fs3_c00094{font-size:60.693961pt;}
.fs1_c00094{font-size:62.561467pt;}
.fsc_c00094{font-size:63.495220pt;}
.fsa_c00094{font-size:64.428973pt;}
.fs9_c00094{font-size:66.296480pt;}
.fsd_c00094{font-size:67.230233pt;}
.fs2_c00094{font-size:68.163986pt;}
.y0_c00094{bottom:0.000000pt;}
.ye9_c00094{bottom:26.191107pt;}
.yea_c00094{bottom:26.716013pt;}
.yeb_c00094{bottom:27.119227pt;}
.yec_c00094{bottom:27.699440pt;}
.yed_c00094{bottom:28.079387pt;}
.yee_c00094{bottom:28.766253pt;}
.yef_c00094{bottom:29.072547pt;}
.yf0_c00094{bottom:29.315093pt;}
.ye0_c00094{bottom:38.681360pt;}
.ye1_c00094{bottom:39.139333pt;}
.ye2_c00094{bottom:39.965773pt;}
.ye3_c00094{bottom:40.235840pt;}
.ye4_c00094{bottom:40.591787pt;}
.ye5_c00094{bottom:41.517987pt;}
.ye6_c00094{bottom:41.898133pt;}
.ye7_c00094{bottom:43.217813pt;}
.ye8_c00094{bottom:43.983400pt;}
.yd8_c00094{bottom:55.245733pt;}
.yd9_c00094{bottom:55.878293pt;}
.yda_c00094{bottom:56.110973pt;}
.ydb_c00094{bottom:57.094733pt;}
.ydc_c00094{bottom:57.457720pt;}
.ydd_c00094{bottom:57.914827pt;}
.yde_c00094{bottom:59.010520pt;}
.ydf_c00094{bottom:60.400173pt;}
.ycf_c00094{bottom:72.773747pt;}
.yd0_c00094{bottom:73.165907pt;}
.yd1_c00094{bottom:73.426467pt;}
.yd2_c00094{bottom:74.071667pt;}
.yd3_c00094{bottom:74.345973pt;}
.yd4_c00094{bottom:75.268560pt;}
.yd5_c00094{bottom:75.643053pt;}
.yd6_c00094{bottom:76.597907pt;}
.yd7_c00094{bottom:76.887173pt;}
.yc9_c00094{bottom:83.351467pt;}
.yca_c00094{bottom:84.850160pt;}
.ycb_c00094{bottom:86.754667pt;}
.ycc_c00094{bottom:88.571920pt;}
.ycd_c00094{bottom:89.316387pt;}
.yce_c00094{bottom:90.647693pt;}
.yc3_c00094{bottom:100.152800pt;}
.yc4_c00094{bottom:101.302573pt;}
.yc5_c00094{bottom:101.676760pt;}
.yc6_c00094{bottom:102.042133pt;}
.yc7_c00094{bottom:105.474000pt;}
.yc8_c00094{bottom:106.304920pt;}
.ybb_c00094{bottom:117.197200pt;}
.ybc_c00094{bottom:118.111987pt;}
.ybd_c00094{bottom:118.319947pt;}
.ybe_c00094{bottom:119.066933pt;}
.ybf_c00094{bottom:119.423560pt;}
.yc0_c00094{bottom:120.714827pt;}
.yc1_c00094{bottom:121.085493pt;}
.yc2_c00094{bottom:121.756987pt;}
.yb5_c00094{bottom:131.843640pt;}
.yb6_c00094{bottom:133.086627pt;}
.yb7_c00094{bottom:134.079067pt;}
.yb8_c00094{bottom:135.471000pt;}
.yb9_c00094{bottom:136.033040pt;}
.yba_c00094{bottom:136.414493pt;}
.yad_c00094{bottom:147.689573pt;}
.yae_c00094{bottom:148.635173pt;}
.yaf_c00094{bottom:149.322867pt;}
.yb0_c00094{bottom:150.190973pt;}
.yb1_c00094{bottom:150.776853pt;}
.yb2_c00094{bottom:151.106480pt;}
.yb3_c00094{bottom:151.488213pt;}
.yb4_c00094{bottom:152.660400pt;}
.ya8_c00094{bottom:166.817640pt;}
.ya4_c00094{bottom:166.817653pt;}
.yaa_c00094{bottom:166.817840pt;}
.yac_c00094{bottom:166.818133pt;}
.yab_c00094{bottom:166.818173pt;}
.ya9_c00094{bottom:166.818240pt;}
.ya5_c00094{bottom:166.818253pt;}
.ya7_c00094{bottom:166.818293pt;}
.ya6_c00094{bottom:166.818307pt;}
.y9d_c00094{bottom:178.181813pt;}
.y9e_c00094{bottom:178.490987pt;}
.y9f_c00094{bottom:179.446027pt;}
.ya0_c00094{bottom:180.795373pt;}
.ya1_c00094{bottom:181.857347pt;}
.ya2_c00094{bottom:182.266867pt;}
.ya3_c00094{bottom:182.587893pt;}
.y9b_c00094{bottom:197.985240pt;}
.y99_c00094{bottom:197.985520pt;}
.y98_c00094{bottom:197.985733pt;}
.y9a_c00094{bottom:197.985800pt;}
.y9c_c00094{bottom:197.985867pt;}
.y97_c00094{bottom:197.985893pt;}
.y96_c00094{bottom:197.985920pt;}
.y8d_c00094{bottom:211.312173pt;}
.y8e_c00094{bottom:211.799800pt;}
.y8f_c00094{bottom:211.997973pt;}
.y90_c00094{bottom:212.243267pt;}
.y91_c00094{bottom:213.021000pt;}
.y92_c00094{bottom:213.246120pt;}
.y93_c00094{bottom:213.752013pt;}
.y94_c00094{bottom:214.002680pt;}
.y95_c00094{bottom:214.328280pt;}
.y84_c00094{bottom:226.440507pt;}
.y85_c00094{bottom:227.035307pt;}
.y86_c00094{bottom:227.301520pt;}
.y87_c00094{bottom:227.597333pt;}
.y88_c00094{bottom:228.329440pt;}
.y89_c00094{bottom:228.916253pt;}
.y8a_c00094{bottom:229.256760pt;}
.y8b_c00094{bottom:229.615427pt;}
.y8c_c00094{bottom:230.032347pt;}
.y7d_c00094{bottom:241.328947pt;}
.y7e_c00094{bottom:241.901453pt;}
.y7f_c00094{bottom:242.219520pt;}
.y80_c00094{bottom:242.558427pt;}
.y81_c00094{bottom:243.721587pt;}
.y82_c00094{bottom:244.245240pt;}
.y83_c00094{bottom:245.001627pt;}
.y78_c00094{bottom:257.402960pt;}
.y79_c00094{bottom:260.007133pt;}
.y7a_c00094{bottom:260.404053pt;}
.y7b_c00094{bottom:260.622907pt;}
.y7c_c00094{bottom:261.056520pt;}
.y72_c00094{bottom:273.264200pt;}
.y73_c00094{bottom:273.827840pt;}
.y74_c00094{bottom:274.152373pt;}
.y75_c00094{bottom:275.926907pt;}
.y76_c00094{bottom:277.061893pt;}
.y77_c00094{bottom:277.409147pt;}
.y6d_c00094{bottom:286.235373pt;}
.y6e_c00094{bottom:287.279133pt;}
.y6f_c00094{bottom:290.130733pt;}
.y70_c00094{bottom:292.773520pt;}
.y71_c00094{bottom:293.044173pt;}
.y65_c00094{bottom:301.598707pt;}
.y66_c00094{bottom:301.897507pt;}
.y67_c00094{bottom:303.219867pt;}
.y68_c00094{bottom:304.339800pt;}
.y69_c00094{bottom:304.603080pt;}
.y6a_c00094{bottom:306.192987pt;}
.y6b_c00094{bottom:306.572560pt;}
.y6c_c00094{bottom:307.275373pt;}
.y5e_c00094{bottom:315.288013pt;}
.y5f_c00094{bottom:316.627867pt;}
.y60_c00094{bottom:317.133533pt;}
.y61_c00094{bottom:317.579813pt;}
.y62_c00094{bottom:319.819480pt;}
.y63_c00094{bottom:320.230693pt;}
.y64_c00094{bottom:322.713440pt;}
.y58_c00094{bottom:331.372147pt;}
.y59_c00094{bottom:332.015200pt;}
.y5a_c00094{bottom:333.612907pt;}
.y5b_c00094{bottom:334.492253pt;}
.y5c_c00094{bottom:337.331787pt;}
.y5d_c00094{bottom:337.818280pt;}
.y50_c00094{bottom:346.978800pt;}
.y51_c00094{bottom:347.579240pt;}
.y52_c00094{bottom:348.874853pt;}
.y53_c00094{bottom:349.408267pt;}
.y54_c00094{bottom:350.972227pt;}
.y55_c00094{bottom:351.610720pt;}
.y56_c00094{bottom:352.104640pt;}
.y57_c00094{bottom:353.503133pt;}
.y49_c00094{bottom:362.585587pt;}
.y4a_c00094{bottom:363.802960pt;}
.y4b_c00094{bottom:364.925640pt;}
.y4c_c00094{bottom:365.412387pt;}
.y4d_c00094{bottom:367.306400pt;}
.y4e_c00094{bottom:368.063373pt;}
.y4f_c00094{bottom:368.707600pt;}
.y40_c00094{bottom:377.235747pt;}
.y41_c00094{bottom:377.824400pt;}
.y42_c00094{bottom:378.590613pt;}
.y43_c00094{bottom:379.144973pt;}
.y44_c00094{bottom:379.694107pt;}
.y45_c00094{bottom:381.109573pt;}
.y46_c00094{bottom:381.441453pt;}
.y47_c00094{bottom:383.010973pt;}
.y48_c00094{bottom:383.566373pt;}
.y37_c00094{bottom:393.799147pt;}
.y38_c00094{bottom:395.051880pt;}
.y39_c00094{bottom:395.424173pt;}
.y3a_c00094{bottom:396.390200pt;}
.y3b_c00094{bottom:396.793360pt;}
.y3c_c00094{bottom:398.018400pt;}
.y3d_c00094{bottom:398.377000pt;}
.y3e_c00094{bottom:399.039640pt;}
.y3f_c00094{bottom:400.238640pt;}
.y2d_c00094{bottom:408.925960pt;}
.y2e_c00094{bottom:409.816253pt;}
.y2f_c00094{bottom:410.500053pt;}
.y30_c00094{bottom:410.973853pt;}
.y31_c00094{bottom:411.752827pt;}
.y32_c00094{bottom:412.763427pt;}
.y33_c00094{bottom:413.799760pt;}
.y34_c00094{bottom:414.164560pt;}
.y35_c00094{bottom:414.530120pt;}
.y36_c00094{bottom:415.798707pt;}
.y23_c00094{bottom:423.571867pt;}
.y24_c00094{bottom:424.108840pt;}
.y25_c00094{bottom:424.721467pt;}
.y26_c00094{bottom:425.966000pt;}
.y27_c00094{bottom:426.713867pt;}
.y28_c00094{bottom:427.938920pt;}
.y29_c00094{bottom:428.720173pt;}
.y2a_c00094{bottom:429.192733pt;}
.y2b_c00094{bottom:430.093907pt;}
.y2c_c00094{bottom:430.718533pt;}
.y1c_c00094{bottom:439.897800pt;}
.y1d_c00094{bottom:440.790853pt;}
.y1e_c00094{bottom:441.628893pt;}
.y1f_c00094{bottom:442.304867pt;}
.y20_c00094{bottom:443.361000pt;}
.y21_c00094{bottom:443.860040pt;}
.y22_c00094{bottom:445.078440pt;}
.y15_c00094{bottom:455.264040pt;}
.y16_c00094{bottom:455.823600pt;}
.y17_c00094{bottom:456.719173pt;}
.y18_c00094{bottom:457.456653pt;}
.y19_c00094{bottom:459.322520pt;}
.y1a_c00094{bottom:460.110067pt;}
.y1b_c00094{bottom:461.705800pt;}
.ye_c00094{bottom:470.633427pt;}
.yf_c00094{bottom:472.170067pt;}
.y10_c00094{bottom:472.806133pt;}
.y11_c00094{bottom:473.157347pt;}
.y12_c00094{bottom:474.606000pt;}
.y13_c00094{bottom:476.163173pt;}
.y14_c00094{bottom:476.645507pt;}
.y8_c00094{bottom:485.284533pt;}
.y9_c00094{bottom:485.996813pt;}
.ya_c00094{bottom:487.445973pt;}
.yb_c00094{bottom:489.623053pt;}
.yc_c00094{bottom:491.358333pt;}
.yd_c00094{bottom:491.911613pt;}
.y2_c00094{bottom:500.408000pt;}
.y3_c00094{bottom:501.110200pt;}
.y4_c00094{bottom:505.322680pt;}
.y5_c00094{bottom:506.720560pt;}
.y6_c00094{bottom:507.303920pt;}
.y7_c00094{bottom:508.125200pt;}
.y1_c00094{bottom:524.041333pt;}
.hd_c00094{height:51.356428pt;}
.h9_c00094{height:54.157688pt;}
.h8_c00094{height:56.025194pt;}
.h6_c00094{height:56.958948pt;}
.h7_c00094{height:57.892701pt;}
.h2_c00094{height:59.733333pt;}
.ha_c00094{height:59.760207pt;}
.h5_c00094{height:60.693961pt;}
.h3_c00094{height:62.561467pt;}
.he_c00094{height:63.495220pt;}
.hc_c00094{height:64.428973pt;}
.hb_c00094{height:66.296480pt;}
.hf_c00094{height:67.230233pt;}
.h4_c00094{height:68.163986pt;}
.h0_c00094{height:555.066667pt;}
.h1_c00094{height:555.333333pt;}
.w0_c00094{width:330.480000pt;}
.w1_c00094{width:330.666667pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:28.848000pt;}
.x13_c00094{left:30.203653pt;}
.x1c_c00094{left:31.726933pt;}
.x54_c00094{left:33.258267pt;}
.x61_c00094{left:34.393747pt;}
.x6b_c00094{left:35.355507pt;}
.x79_c00094{left:41.888107pt;}
.x44_c00094{left:45.841240pt;}
.x1d_c00094{left:50.248827pt;}
.x3_c00094{left:52.254667pt;}
.x8_c00094{left:53.418040pt;}
.x37_c00094{left:55.293853pt;}
.x76_c00094{left:56.498480pt;}
.x73_c00094{left:58.054667pt;}
.x25_c00094{left:64.492693pt;}
.x17_c00094{left:66.719627pt;}
.x51_c00094{left:68.369093pt;}
.x1e_c00094{left:71.381467pt;}
.x5a_c00094{left:74.065787pt;}
.x55_c00094{left:75.772000pt;}
.x40_c00094{left:78.707947pt;}
.x30_c00094{left:80.721880pt;}
.x68_c00094{left:81.633827pt;}
.x2a_c00094{left:82.583493pt;}
.x6f_c00094{left:83.567600pt;}
.x66_c00094{left:84.751627pt;}
.x4a_c00094{left:87.650440pt;}
.xd_c00094{left:88.661493pt;}
.x26_c00094{left:89.821640pt;}
.x6d_c00094{left:91.732880pt;}
.x56_c00094{left:94.743747pt;}
.x41_c00094{left:96.141800pt;}
.x2b_c00094{left:97.484400pt;}
.x70_c00094{left:99.154400pt;}
.x18_c00094{left:100.259333pt;}
.x9_c00094{left:101.723373pt;}
.x38_c00094{left:105.109147pt;}
.x77_c00094{left:106.305067pt;}
.x27_c00094{left:107.349867pt;}
.x52_c00094{left:109.441000pt;}
.x42_c00094{left:111.551613pt;}
.xe_c00094{left:113.111080pt;}
.x1f_c00094{left:114.289413pt;}
.x57_c00094{left:115.903240pt;}
.x14_c00094{left:117.926147pt;}
.x31_c00094{left:120.129573pt;}
.x78_c00094{left:122.484947pt;}
.x33_c00094{left:125.583800pt;}
.xf_c00094{left:126.642053pt;}
.x74_c00094{left:127.737693pt;}
.x6e_c00094{left:129.088080pt;}
.x28_c00094{left:136.207133pt;}
.x20_c00094{left:140.063507pt;}
.x71_c00094{left:141.881413pt;}
.x34_c00094{left:145.056053pt;}
.x3d_c00094{left:147.491680pt;}
.x2c_c00094{left:152.243267pt;}
.x45_c00094{left:156.833173pt;}
.x7a_c00094{left:157.913893pt;}
.x69_c00094{left:159.383773pt;}
.x1_c00094{left:164.400000pt;}
.x58_c00094{left:168.243027pt;}
.x19_c00094{left:169.517693pt;}
.x32_c00094{left:170.692613pt;}
.x62_c00094{left:171.957773pt;}
.xa_c00094{left:174.292707pt;}
.x5b_c00094{left:175.894080pt;}
.x47_c00094{left:176.797013pt;}
.x10_c00094{left:182.359400pt;}
.x5f_c00094{left:183.435520pt;}
.x39_c00094{left:185.786827pt;}
.x67_c00094{left:187.997800pt;}
.x1a_c00094{left:189.488693pt;}
.x4_c00094{left:192.670667pt;}
.x5c_c00094{left:194.608160pt;}
.x4b_c00094{left:198.536960pt;}
.x2d_c00094{left:201.218587pt;}
.x43_c00094{left:202.983707pt;}
.x6a_c00094{left:205.158827pt;}
.x21_c00094{left:209.253587pt;}
.x3a_c00094{left:210.361787pt;}
.x29_c00094{left:212.000600pt;}
.x2e_c00094{left:215.574080pt;}
.x4e_c00094{left:217.216253pt;}
.x35_c00094{left:220.823413pt;}
.x72_c00094{left:221.933947pt;}
.x15_c00094{left:224.078067pt;}
.x22_c00094{left:225.539400pt;}
.x63_c00094{left:227.864213pt;}
.x3b_c00094{left:229.361400pt;}
.xb_c00094{left:232.135373pt;}
.x59_c00094{left:234.518827pt;}
.x5d_c00094{left:236.782920pt;}
.x1b_c00094{left:238.242680pt;}
.x5_c00094{left:239.266667pt;}
.x46_c00094{left:241.070707pt;}
.x11_c00094{left:242.227893pt;}
.x4f_c00094{left:245.527147pt;}
.x64_c00094{left:249.388627pt;}
.xc_c00094{left:250.578040pt;}
.x3e_c00094{left:252.641120pt;}
.x23_c00094{left:256.601653pt;}
.x5e_c00094{left:257.727573pt;}
.x6_c00094{left:258.712000pt;}
.x12_c00094{left:260.796800pt;}
.x53_c00094{left:262.145080pt;}
.x6c_c00094{left:263.874653pt;}
.x65_c00094{left:266.272853pt;}
.x4c_c00094{left:269.510760pt;}
.x3f_c00094{left:270.681427pt;}
.x48_c00094{left:274.676480pt;}
.x36_c00094{left:276.871813pt;}
.x24_c00094{left:278.134293pt;}
.x7b_c00094{left:282.187880pt;}
.x3c_c00094{left:283.139840pt;}
.x49_c00094{left:284.721400pt;}
.x7_c00094{left:286.088000pt;}
.x16_c00094{left:287.900960pt;}
.x2f_c00094{left:290.039907pt;}
.x4d_c00094{left:291.183840pt;}
.x50_c00094{left:292.142840pt;}
.x75_c00094{left:293.035253pt;}
.x60_c00094{left:296.526533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00095 {
    display:none;
  }
  .loading-indicator_c00095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00095 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00095 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00095" -> "#page-container .classname_c00095")
 */
.pf_c00095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00095 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00095 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00095 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00095 {overflow:visible;}
  }
}
.c_c00095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00095 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00095:after { /* webkit #35443 */
  content: '';
}
.t_c00095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00095 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00095 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00095 { /* info for Javascript */
  display:none;
}
.l_c00095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00095:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00095 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00095.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00095{transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);}
.mce_c00095{transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);}
.m14_c00095{transform:matrix(0.029535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029535,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.047290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047290,0.000000,0.000000,0.250000,0,0);}
.mc9_c00095{transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);}
.mc1_c00095{transform:matrix(0.129165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129165,0.000000,0.000000,0.250000,0,0);}
.m61_c00095{transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);}
.m77_c00095{transform:matrix(0.136010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136010,0.000000,0.000000,0.250000,0,0);}
.m5e_c00095{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.mbe_c00095{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.143345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143345,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00095{transform:matrix(0.146965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146965,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);}
.m63_c00095{transform:matrix(0.150335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150335,0.000000,0.000000,0.250000,0,0);}
.mb0_c00095{transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);}
.m13_c00095{transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);}
.md8_c00095{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.mc8_c00095{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00095{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.mb7_c00095{transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157705,0.000000,0.000000,0.250000,0,0);}
.m91_c00095{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.me4_c00095{transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.mb9_c00095{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.m65_c00095{transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.160110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160110,0.000000,0.000000,0.250000,0,0);}
.m8a_c00095{transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);}
.mf2_c00095{transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);}
.mca_c00095{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.161935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161935,0.000000,0.000000,0.250000,0,0);}
.mbd_c00095{transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);}
.me1_c00095{transform:matrix(0.163205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163205,0.000000,0.000000,0.250000,0,0);}
.m92_c00095{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m44_c00095{transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);}
.ma9_c00095{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);}
.mae_c00095{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.ma4_c00095{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m93_c00095{transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);}
.m64_c00095{transform:matrix(0.168630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168630,0.000000,0.000000,0.250000,0,0);}
.m6d_c00095{transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);}
.m1e_c00095{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);}
.ma1_c00095{transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);}
.mde_c00095{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m85_c00095{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.mbf_c00095{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m67_c00095{transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);}
.m95_c00095{transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);}
.m6e_c00095{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00095{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.mb6_c00095{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);}
.m78_c00095{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);}
.mcc_c00095{transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);}
.m6a_c00095{transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);}
.m32_c00095{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m8d_c00095{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);}
.m68_c00095{transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);}
.m70_c00095{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m71_c00095{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.mec_c00095{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.m36_c00095{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);}
.maf_c00095{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me8_c00095{transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);}
.m69_c00095{transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);}
.m62_c00095{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00095{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m76_c00095{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.mdd_c00095{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.maa_c00095{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.mdf_c00095{transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);}
.m59_c00095{transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.m82_c00095{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m73_c00095{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00095{transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);}
.m8e_c00095{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.m5d_c00095{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.m9c_c00095{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.mb4_c00095{transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);}
.m56_c00095{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mc0_c00095{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.mac_c00095{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m7e_c00095{transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);}
.m1c_c00095{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.me9_c00095{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m1a_c00095{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);}
.m84_c00095{transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);}
.m66_c00095{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.md1_c00095{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00095{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m3d_c00095{transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);}
.m89_c00095{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m9d_c00095{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.me7_c00095{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00095{transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);}
.md0_c00095{transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);}
.mcb_c00095{transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.md9_c00095{transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);}
.mb3_c00095{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.mad_c00095{transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00095{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.m87_c00095{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m8f_c00095{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.md2_c00095{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m96_c00095{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);}
.m7f_c00095{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);}
.mee_c00095{transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.m8c_c00095{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.mda_c00095{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.md6_c00095{transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.mdb_c00095{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.ma8_c00095{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.md3_c00095{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);}
.mb5_c00095{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.m75_c00095{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.me3_c00095{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.mab_c00095{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);}
.m94_c00095{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00095{transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.mf1_c00095{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00095{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.m26_c00095{transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);}
.mbc_c00095{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.ma7_c00095{transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00095{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.md7_c00095{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m81_c00095{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.med_c00095{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.mc2_c00095{transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);}
.me6_c00095{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00095{transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);}
.mef_c00095{transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);}
.m23_c00095{transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);}
.mc7_c00095{transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.ma5_c00095{transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00095{transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00095{transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);}
.meb_c00095{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);}
.mdc_c00095{transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.m83_c00095{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m7a_c00095{transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);}
.mc6_c00095{transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);}
.mc5_c00095{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.me0_c00095{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.m9f_c00095{transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);}
.m79_c00095{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.mf0_c00095{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mea_c00095{transform:matrix(0.221965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221965,0.000000,0.000000,0.250000,0,0);}
.me5_c00095{transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);}
.m7d_c00095{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);}
.me2_c00095{transform:matrix(0.224855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224855,0.000000,0.000000,0.250000,0,0);}
.m6f_c00095{transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);}
.m80_c00095{transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);}
.mb1_c00095{transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);}
.m7c_c00095{transform:matrix(0.235780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235780,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00095{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.md5_c00095{transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00095{transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.m99_c00095{transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.259140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259140,0.000000,0.000000,0.250000,0,0);}
.md4_c00095{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m40_c00095{transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00095{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.m74_c00095{transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);}
.mcf_c00095{transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.376690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376690,0.000000,0.000000,0.250000,0,0);}
.mba_c00095{transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.477465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477465,0.000000,0.000000,0.250000,0,0);}
.m98_c00095{transform:matrix(0.608675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608675,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:0.000000px;}
.fc0_c00095{color:transparent;}
.fsa_c00095{font-size:60.900000px;}
.fs5_c00095{font-size:63.000000px;}
.fsb_c00095{font-size:64.050000px;}
.fs0_c00095{font-size:65.100000px;}
.fs3_c00095{font-size:66.150000px;}
.fs8_c00095{font-size:67.200000px;}
.fs2_c00095{font-size:68.250000px;}
.fs4_c00095{font-size:69.300000px;}
.fs9_c00095{font-size:70.350000px;}
.fs1_c00095{font-size:71.400000px;}
.fs6_c00095{font-size:72.450000px;}
.fs7_c00095{font-size:73.500000px;}
.y0_c00095{bottom:0.000000px;}
.y38_c00095{bottom:25.110000px;}
.y39_c00095{bottom:25.887000px;}
.y3a_c00095{bottom:26.706000px;}
.y3b_c00095{bottom:27.876000px;}
.y3c_c00095{bottom:28.041000px;}
.y3d_c00095{bottom:28.585500px;}
.y31_c00095{bottom:42.391500px;}
.y32_c00095{bottom:42.607500px;}
.y33_c00095{bottom:43.047000px;}
.y34_c00095{bottom:43.311000px;}
.y35_c00095{bottom:44.427000px;}
.y36_c00095{bottom:44.715000px;}
.y37_c00095{bottom:45.633000px;}
.y28_c00095{bottom:60.213000px;}
.y29_c00095{bottom:60.798000px;}
.y2a_c00095{bottom:61.119000px;}
.y2b_c00095{bottom:61.321500px;}
.y2c_c00095{bottom:62.283000px;}
.y2d_c00095{bottom:62.517000px;}
.y2e_c00095{bottom:62.725500px;}
.y2f_c00095{bottom:62.983500px;}
.y30_c00095{bottom:63.229500px;}
.y27_c00095{bottom:79.725000px;}
.y26_c00095{bottom:97.581000px;}
.y25_c00095{bottom:114.519000px;}
.y24_c00095{bottom:132.715500px;}
.y23_c00095{bottom:150.804000px;}
.y22_c00095{bottom:167.898000px;}
.y21_c00095{bottom:186.571500px;}
.y20_c00095{bottom:204.850500px;}
.y1f_c00095{bottom:221.328000px;}
.y1e_c00095{bottom:239.527500px;}
.y1d_c00095{bottom:257.392500px;}
.y1c_c00095{bottom:274.041000px;}
.y1b_c00095{bottom:291.088500px;}
.y1a_c00095{bottom:309.267000px;}
.y19_c00095{bottom:326.773500px;}
.y18_c00095{bottom:345.205500px;}
.y17_c00095{bottom:362.191500px;}
.y16_c00095{bottom:381.510000px;}
.y15_c00095{bottom:397.371000px;}
.y14_c00095{bottom:415.027500px;}
.y13_c00095{bottom:433.080000px;}
.y12_c00095{bottom:450.292500px;}
.y11_c00095{bottom:467.523000px;}
.y7_c00095{bottom:481.671000px;}
.y8_c00095{bottom:481.911000px;}
.y9_c00095{bottom:482.101500px;}
.ya_c00095{bottom:482.490000px;}
.yb_c00095{bottom:482.857500px;}
.yc_c00095{bottom:483.006000px;}
.yd_c00095{bottom:483.208500px;}
.ye_c00095{bottom:483.960000px;}
.yf_c00095{bottom:484.177500px;}
.y10_c00095{bottom:484.663500px;}
.y6_c00095{bottom:502.554000px;}
.y5_c00095{bottom:519.277500px;}
.y4_c00095{bottom:535.932000px;}
.y3_c00095{bottom:552.409500px;}
.y2_c00095{bottom:571.387500px;}
.y1_c00095{bottom:588.855000px;}
.hc_c00095{height:60.900000px;}
.h7_c00095{height:63.000000px;}
.hd_c00095{height:64.050000px;}
.h2_c00095{height:65.100000px;}
.h5_c00095{height:66.150000px;}
.ha_c00095{height:67.200000px;}
.h4_c00095{height:68.250000px;}
.h6_c00095{height:69.300000px;}
.hb_c00095{height:70.350000px;}
.h3_c00095{height:71.400000px;}
.h8_c00095{height:72.450000px;}
.h9_c00095{height:73.500000px;}
.h1_c00095{height:627.750000px;}
.h0_c00095{height:628.020000px;}
.w0_c00095{width:371.790000px;}
.w1_c00095{width:372.000000px;}
.x0_c00095{left:0.000000px;}
.x3_c00095{left:34.290000px;}
.x2e_c00095{left:35.640000px;}
.x3e_c00095{left:36.990000px;}
.x59_c00095{left:38.340000px;}
.x69_c00095{left:39.690000px;}
.x39_c00095{left:42.930000px;}
.x46_c00095{left:44.010000px;}
.x56_c00095{left:52.110000px;}
.x13_c00095{left:54.810000px;}
.x23_c00095{left:56.335500px;}
.xd_c00095{left:61.020000px;}
.x1e_c00095{left:63.450000px;}
.x4b_c00095{left:64.530000px;}
.x14_c00095{left:66.420000px;}
.x51_c00095{left:70.740000px;}
.x24_c00095{left:73.620000px;}
.x61_c00095{left:75.600000px;}
.xe_c00095{left:77.220000px;}
.x64_c00095{left:79.920000px;}
.x34_c00095{left:82.080000px;}
.x15_c00095{left:85.590000px;}
.x5e_c00095{left:87.210000px;}
.x52_c00095{left:90.990000px;}
.x29_c00095{left:93.690000px;}
.x4_c00095{left:94.770000px;}
.x6a_c00095{left:98.550000px;}
.x3f_c00095{left:100.980000px;}
.x2f_c00095{left:104.220000px;}
.x7c_c00095{left:105.460500px;}
.x5_c00095{left:109.890000px;}
.x47_c00095{left:110.970000px;}
.x5b_c00095{left:113.670000px;}
.x43_c00095{left:115.290000px;}
.x57_c00095{left:116.370000px;}
.x1f_c00095{left:122.310000px;}
.x40_c00095{left:123.660000px;}
.x4c_c00095{left:125.820000px;}
.x30_c00095{left:128.250000px;}
.x48_c00095{left:129.330000px;}
.x35_c00095{left:131.760000px;}
.xf_c00095{left:136.350000px;}
.x6_c00095{left:140.130000px;}
.x3a_c00095{left:141.210000px;}
.x25_c00095{left:142.399500px;}
.x31_c00095{left:148.230000px;}
.x6e_c00095{left:151.200000px;}
.x62_c00095{left:154.440000px;}
.x16_c00095{left:156.330000px;}
.x65_c00095{left:159.030000px;}
.x7_c00095{left:160.920000px;}
.x6b_c00095{left:162.000000px;}
.x75_c00095{left:164.160000px;}
.x5f_c00095{left:165.240000px;}
.x10_c00095{left:167.130000px;}
.x53_c00095{left:169.290000px;}
.x36_c00095{left:170.910000px;}
.x1_c00095{left:173.610000px;}
.x2a_c00095{left:175.500000px;}
.x44_c00095{left:176.850000px;}
.x1a_c00095{left:179.820000px;}
.x77_c00095{left:180.900000px;}
.x4d_c00095{left:188.190000px;}
.x8_c00095{left:190.890000px;}
.x41_c00095{left:193.050000px;}
.x3b_c00095{left:195.750000px;}
.x66_c00095{left:199.800000px;}
.x20_c00095{left:200.880000px;}
.x78_c00095{left:203.850000px;}
.x71_c00095{left:205.200000px;}
.x54_c00095{left:207.900000px;}
.x9_c00095{left:211.140000px;}
.x6f_c00095{left:214.380000px;}
.x37_c00095{left:216.270000px;}
.x60_c00095{left:217.890000px;}
.x72_c00095{left:223.560000px;}
.x17_c00095{left:224.640000px;}
.x11_c00095{left:226.260000px;}
.x79_c00095{left:228.570000px;}
.xa_c00095{left:231.390000px;}
.x32_c00095{left:233.280000px;}
.x5a_c00095{left:235.440000px;}
.x49_c00095{left:237.600000px;}
.x18_c00095{left:239.490000px;}
.x58_c00095{left:241.380000px;}
.x26_c00095{left:242.598000px;}
.x2b_c00095{left:245.700000px;}
.x1b_c00095{left:247.590000px;}
.x4e_c00095{left:249.480000px;}
.x7a_c00095{left:252.057000px;}
.x2_c00095{left:256.230000px;}
.x27_c00095{left:262.314000px;}
.x21_c00095{left:263.520000px;}
.x1c_c00095{left:265.950000px;}
.x5c_c00095{left:268.110000px;}
.x6c_c00095{left:270.270000px;}
.x2c_c00095{left:271.350000px;}
.x42_c00095{left:273.780000px;}
.x73_c00095{left:274.860000px;}
.x76_c00095{left:277.020000px;}
.x67_c00095{left:280.800000px;}
.x1d_c00095{left:282.960000px;}
.x7d_c00095{left:284.997000px;}
.x12_c00095{left:288.900000px;}
.x63_c00095{left:291.330000px;}
.xb_c00095{left:294.570000px;}
.x4a_c00095{left:295.650000px;}
.x5d_c00095{left:299.970000px;}
.x33_c00095{left:301.050000px;}
.x68_c00095{left:302.940000px;}
.x4f_c00095{left:304.830000px;}
.x28_c00095{left:306.556500px;}
.xc_c00095{left:308.610000px;}
.x22_c00095{left:310.230000px;}
.x2d_c00095{left:312.390000px;}
.x3c_c00095{left:315.090000px;}
.x55_c00095{left:317.790000px;}
.x38_c00095{left:319.950000px;}
.x6d_c00095{left:322.110000px;}
.x19_c00095{left:325.350000px;}
.x45_c00095{left:327.240000px;}
.x3d_c00095{left:328.590000px;}
.x74_c00095{left:329.670000px;}
.x50_c00095{left:333.180000px;}
.x7b_c00095{left:335.512500px;}
.x70_c00095{left:336.960000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.fsa_c00095{font-size:54.133333pt;}
.fs5_c00095{font-size:56.000000pt;}
.fsb_c00095{font-size:56.933333pt;}
.fs0_c00095{font-size:57.866667pt;}
.fs3_c00095{font-size:58.800000pt;}
.fs8_c00095{font-size:59.733333pt;}
.fs2_c00095{font-size:60.666667pt;}
.fs4_c00095{font-size:61.600000pt;}
.fs9_c00095{font-size:62.533333pt;}
.fs1_c00095{font-size:63.466667pt;}
.fs6_c00095{font-size:64.400000pt;}
.fs7_c00095{font-size:65.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y38_c00095{bottom:22.320000pt;}
.y39_c00095{bottom:23.010667pt;}
.y3a_c00095{bottom:23.738667pt;}
.y3b_c00095{bottom:24.778667pt;}
.y3c_c00095{bottom:24.925333pt;}
.y3d_c00095{bottom:25.409333pt;}
.y31_c00095{bottom:37.681333pt;}
.y32_c00095{bottom:37.873333pt;}
.y33_c00095{bottom:38.264000pt;}
.y34_c00095{bottom:38.498667pt;}
.y35_c00095{bottom:39.490667pt;}
.y36_c00095{bottom:39.746667pt;}
.y37_c00095{bottom:40.562667pt;}
.y28_c00095{bottom:53.522667pt;}
.y29_c00095{bottom:54.042667pt;}
.y2a_c00095{bottom:54.328000pt;}
.y2b_c00095{bottom:54.508000pt;}
.y2c_c00095{bottom:55.362667pt;}
.y2d_c00095{bottom:55.570667pt;}
.y2e_c00095{bottom:55.756000pt;}
.y2f_c00095{bottom:55.985333pt;}
.y30_c00095{bottom:56.204000pt;}
.y27_c00095{bottom:70.866667pt;}
.y26_c00095{bottom:86.738667pt;}
.y25_c00095{bottom:101.794667pt;}
.y24_c00095{bottom:117.969333pt;}
.y23_c00095{bottom:134.048000pt;}
.y22_c00095{bottom:149.242667pt;}
.y21_c00095{bottom:165.841333pt;}
.y20_c00095{bottom:182.089333pt;}
.y1f_c00095{bottom:196.736000pt;}
.y1e_c00095{bottom:212.913333pt;}
.y1d_c00095{bottom:228.793333pt;}
.y1c_c00095{bottom:243.592000pt;}
.y1b_c00095{bottom:258.745333pt;}
.y1a_c00095{bottom:274.904000pt;}
.y19_c00095{bottom:290.465333pt;}
.y18_c00095{bottom:306.849333pt;}
.y17_c00095{bottom:321.948000pt;}
.y16_c00095{bottom:339.120000pt;}
.y15_c00095{bottom:353.218667pt;}
.y14_c00095{bottom:368.913333pt;}
.y13_c00095{bottom:384.960000pt;}
.y12_c00095{bottom:400.260000pt;}
.y11_c00095{bottom:415.576000pt;}
.y7_c00095{bottom:428.152000pt;}
.y8_c00095{bottom:428.365333pt;}
.y9_c00095{bottom:428.534667pt;}
.ya_c00095{bottom:428.880000pt;}
.yb_c00095{bottom:429.206667pt;}
.yc_c00095{bottom:429.338667pt;}
.yd_c00095{bottom:429.518667pt;}
.ye_c00095{bottom:430.186667pt;}
.yf_c00095{bottom:430.380000pt;}
.y10_c00095{bottom:430.812000pt;}
.y6_c00095{bottom:446.714667pt;}
.y5_c00095{bottom:461.580000pt;}
.y4_c00095{bottom:476.384000pt;}
.y3_c00095{bottom:491.030667pt;}
.y2_c00095{bottom:507.900000pt;}
.y1_c00095{bottom:523.426667pt;}
.hc_c00095{height:54.133333pt;}
.h7_c00095{height:56.000000pt;}
.hd_c00095{height:56.933333pt;}
.h2_c00095{height:57.866667pt;}
.h5_c00095{height:58.800000pt;}
.ha_c00095{height:59.733333pt;}
.h4_c00095{height:60.666667pt;}
.h6_c00095{height:61.600000pt;}
.hb_c00095{height:62.533333pt;}
.h3_c00095{height:63.466667pt;}
.h8_c00095{height:64.400000pt;}
.h9_c00095{height:65.333333pt;}
.h1_c00095{height:558.000000pt;}
.h0_c00095{height:558.240000pt;}
.w0_c00095{width:330.480000pt;}
.w1_c00095{width:330.666667pt;}
.x0_c00095{left:0.000000pt;}
.x3_c00095{left:30.480000pt;}
.x2e_c00095{left:31.680000pt;}
.x3e_c00095{left:32.880000pt;}
.x59_c00095{left:34.080000pt;}
.x69_c00095{left:35.280000pt;}
.x39_c00095{left:38.160000pt;}
.x46_c00095{left:39.120000pt;}
.x56_c00095{left:46.320000pt;}
.x13_c00095{left:48.720000pt;}
.x23_c00095{left:50.076000pt;}
.xd_c00095{left:54.240000pt;}
.x1e_c00095{left:56.400000pt;}
.x4b_c00095{left:57.360000pt;}
.x14_c00095{left:59.040000pt;}
.x51_c00095{left:62.880000pt;}
.x24_c00095{left:65.440000pt;}
.x61_c00095{left:67.200000pt;}
.xe_c00095{left:68.640000pt;}
.x64_c00095{left:71.040000pt;}
.x34_c00095{left:72.960000pt;}
.x15_c00095{left:76.080000pt;}
.x5e_c00095{left:77.520000pt;}
.x52_c00095{left:80.880000pt;}
.x29_c00095{left:83.280000pt;}
.x4_c00095{left:84.240000pt;}
.x6a_c00095{left:87.600000pt;}
.x3f_c00095{left:89.760000pt;}
.x2f_c00095{left:92.640000pt;}
.x7c_c00095{left:93.742667pt;}
.x5_c00095{left:97.680000pt;}
.x47_c00095{left:98.640000pt;}
.x5b_c00095{left:101.040000pt;}
.x43_c00095{left:102.480000pt;}
.x57_c00095{left:103.440000pt;}
.x1f_c00095{left:108.720000pt;}
.x40_c00095{left:109.920000pt;}
.x4c_c00095{left:111.840000pt;}
.x30_c00095{left:114.000000pt;}
.x48_c00095{left:114.960000pt;}
.x35_c00095{left:117.120000pt;}
.xf_c00095{left:121.200000pt;}
.x6_c00095{left:124.560000pt;}
.x3a_c00095{left:125.520000pt;}
.x25_c00095{left:126.577333pt;}
.x31_c00095{left:131.760000pt;}
.x6e_c00095{left:134.400000pt;}
.x62_c00095{left:137.280000pt;}
.x16_c00095{left:138.960000pt;}
.x65_c00095{left:141.360000pt;}
.x7_c00095{left:143.040000pt;}
.x6b_c00095{left:144.000000pt;}
.x75_c00095{left:145.920000pt;}
.x5f_c00095{left:146.880000pt;}
.x10_c00095{left:148.560000pt;}
.x53_c00095{left:150.480000pt;}
.x36_c00095{left:151.920000pt;}
.x1_c00095{left:154.320000pt;}
.x2a_c00095{left:156.000000pt;}
.x44_c00095{left:157.200000pt;}
.x1a_c00095{left:159.840000pt;}
.x77_c00095{left:160.800000pt;}
.x4d_c00095{left:167.280000pt;}
.x8_c00095{left:169.680000pt;}
.x41_c00095{left:171.600000pt;}
.x3b_c00095{left:174.000000pt;}
.x66_c00095{left:177.600000pt;}
.x20_c00095{left:178.560000pt;}
.x78_c00095{left:181.200000pt;}
.x71_c00095{left:182.400000pt;}
.x54_c00095{left:184.800000pt;}
.x9_c00095{left:187.680000pt;}
.x6f_c00095{left:190.560000pt;}
.x37_c00095{left:192.240000pt;}
.x60_c00095{left:193.680000pt;}
.x72_c00095{left:198.720000pt;}
.x17_c00095{left:199.680000pt;}
.x11_c00095{left:201.120000pt;}
.x79_c00095{left:203.173333pt;}
.xa_c00095{left:205.680000pt;}
.x32_c00095{left:207.360000pt;}
.x5a_c00095{left:209.280000pt;}
.x49_c00095{left:211.200000pt;}
.x18_c00095{left:212.880000pt;}
.x58_c00095{left:214.560000pt;}
.x26_c00095{left:215.642667pt;}
.x2b_c00095{left:218.400000pt;}
.x1b_c00095{left:220.080000pt;}
.x4e_c00095{left:221.760000pt;}
.x7a_c00095{left:224.050667pt;}
.x2_c00095{left:227.760000pt;}
.x27_c00095{left:233.168000pt;}
.x21_c00095{left:234.240000pt;}
.x1c_c00095{left:236.400000pt;}
.x5c_c00095{left:238.320000pt;}
.x6c_c00095{left:240.240000pt;}
.x2c_c00095{left:241.200000pt;}
.x42_c00095{left:243.360000pt;}
.x73_c00095{left:244.320000pt;}
.x76_c00095{left:246.240000pt;}
.x67_c00095{left:249.600000pt;}
.x1d_c00095{left:251.520000pt;}
.x7d_c00095{left:253.330667pt;}
.x12_c00095{left:256.800000pt;}
.x63_c00095{left:258.960000pt;}
.xb_c00095{left:261.840000pt;}
.x4a_c00095{left:262.800000pt;}
.x5d_c00095{left:266.640000pt;}
.x33_c00095{left:267.600000pt;}
.x68_c00095{left:269.280000pt;}
.x4f_c00095{left:270.960000pt;}
.x28_c00095{left:272.494667pt;}
.xc_c00095{left:274.320000pt;}
.x22_c00095{left:275.760000pt;}
.x2d_c00095{left:277.680000pt;}
.x3c_c00095{left:280.080000pt;}
.x55_c00095{left:282.480000pt;}
.x38_c00095{left:284.400000pt;}
.x6d_c00095{left:286.320000pt;}
.x19_c00095{left:289.200000pt;}
.x45_c00095{left:290.880000pt;}
.x3d_c00095{left:292.080000pt;}
.x74_c00095{left:293.040000pt;}
.x50_c00095{left:296.160000pt;}
.x7b_c00095{left:298.233333pt;}
.x70_c00095{left:299.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00096 {
    display:none;
  }
  .loading-indicator_c00096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00096 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00096 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00096" -> "#page-container .classname_c00096")
 */
.pf_c00096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00096 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00096 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00096 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00096 {overflow:visible;}
  }
}
.c_c00096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00096 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00096:after { /* webkit #35443 */
  content: '';
}
.t_c00096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00096 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00096 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00096 { /* info for Javascript */
  display:none;
}
.l_c00096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00096:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00096 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00096.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00096{transform:matrix(0.131218,-0.002887,0.005499,0.249940,0,0);-ms-transform:matrix(0.131218,-0.002887,0.005499,0.249940,0,0);-webkit-transform:matrix(0.131218,-0.002887,0.005499,0.249940,0,0);}
.m4a_c00096{transform:matrix(0.134682,-0.002963,0.005499,0.249940,0,0);-ms-transform:matrix(0.134682,-0.002963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134682,-0.002963,0.005499,0.249940,0,0);}
.m75_c00096{transform:matrix(0.136227,-0.002997,0.005499,0.249940,0,0);-ms-transform:matrix(0.136227,-0.002997,0.005499,0.249940,0,0);-webkit-transform:matrix(0.136227,-0.002997,0.005499,0.249940,0,0);}
.m9f_c00096{transform:matrix(0.138347,-0.003044,0.005499,0.249940,0,0);-ms-transform:matrix(0.138347,-0.003044,0.005499,0.249940,0,0);-webkit-transform:matrix(0.138347,-0.003044,0.005499,0.249940,0,0);}
.m97_c00096{transform:matrix(0.140831,-0.003098,0.005499,0.249940,0,0);-ms-transform:matrix(0.140831,-0.003098,0.005499,0.249940,0,0);-webkit-transform:matrix(0.140831,-0.003098,0.005499,0.249940,0,0);}
.m2_c00096{transform:matrix(0.141251,-0.003108,0.005499,0.249940,0,0);-ms-transform:matrix(0.141251,-0.003108,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141251,-0.003108,0.005499,0.249940,0,0);}
.m22_c00096{transform:matrix(0.142610,-0.003137,0.005499,0.249940,0,0);-ms-transform:matrix(0.142610,-0.003137,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142610,-0.003137,0.005499,0.249940,0,0);}
.m1c_c00096{transform:matrix(0.144040,-0.003169,0.005499,0.249940,0,0);-ms-transform:matrix(0.144040,-0.003169,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144040,-0.003169,0.005499,0.249940,0,0);}
.m99_c00096{transform:matrix(0.144925,-0.003188,0.005499,0.249940,0,0);-ms-transform:matrix(0.144925,-0.003188,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144925,-0.003188,0.005499,0.249940,0,0);}
.m6_c00096{transform:matrix(0.145675,-0.003205,0.005499,0.249940,0,0);-ms-transform:matrix(0.145675,-0.003205,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145675,-0.003205,0.005499,0.249940,0,0);}
.ma9_c00096{transform:matrix(0.145775,-0.003207,0.005499,0.249940,0,0);-ms-transform:matrix(0.145775,-0.003207,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145775,-0.003207,0.005499,0.249940,0,0);}
.md0_c00096{transform:matrix(0.146695,-0.003227,0.005499,0.249940,0,0);-ms-transform:matrix(0.146695,-0.003227,0.005499,0.249940,0,0);-webkit-transform:matrix(0.146695,-0.003227,0.005499,0.249940,0,0);}
.m81_c00096{transform:matrix(0.147744,-0.003250,0.005499,0.249940,0,0);-ms-transform:matrix(0.147744,-0.003250,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147744,-0.003250,0.005499,0.249940,0,0);}
.m72_c00096{transform:matrix(0.147924,-0.003254,0.005499,0.249940,0,0);-ms-transform:matrix(0.147924,-0.003254,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147924,-0.003254,0.005499,0.249940,0,0);}
.m1d_c00096{transform:matrix(0.148384,-0.003264,0.005499,0.249940,0,0);-ms-transform:matrix(0.148384,-0.003264,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148384,-0.003264,0.005499,0.249940,0,0);}
.md_c00096{transform:matrix(0.149034,-0.003279,0.005499,0.249940,0,0);-ms-transform:matrix(0.149034,-0.003279,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149034,-0.003279,0.005499,0.249940,0,0);}
.m8_c00096{transform:matrix(0.150159,-0.003303,0.005499,0.249940,0,0);-ms-transform:matrix(0.150159,-0.003303,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150159,-0.003303,0.005499,0.249940,0,0);}
.m7b_c00096{transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);-ms-transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);}
.mad_c00096{transform:matrix(0.150579,-0.003313,0.005499,0.249940,0,0);-ms-transform:matrix(0.150579,-0.003313,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150579,-0.003313,0.005499,0.249940,0,0);}
.mac_c00096{transform:matrix(0.151948,-0.003343,0.005499,0.249940,0,0);-ms-transform:matrix(0.151948,-0.003343,0.005499,0.249940,0,0);-webkit-transform:matrix(0.151948,-0.003343,0.005499,0.249940,0,0);}
.m4c_c00096{transform:matrix(0.152348,-0.003352,0.005499,0.249940,0,0);-ms-transform:matrix(0.152348,-0.003352,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152348,-0.003352,0.005499,0.249940,0,0);}
.m7a_c00096{transform:matrix(0.153438,-0.003376,0.005499,0.249940,0,0);-ms-transform:matrix(0.153438,-0.003376,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153438,-0.003376,0.005499,0.249940,0,0);}
.m80_c00096{transform:matrix(0.153913,-0.003386,0.005499,0.249940,0,0);-ms-transform:matrix(0.153913,-0.003386,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153913,-0.003386,0.005499,0.249940,0,0);}
.m0_c00096{transform:matrix(0.155082,-0.003412,0.005499,0.249940,0,0);-ms-transform:matrix(0.155082,-0.003412,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155082,-0.003412,0.005499,0.249940,0,0);}
.mb5_c00096{transform:matrix(0.157362,-0.003462,0.005499,0.249940,0,0);-ms-transform:matrix(0.157362,-0.003462,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157362,-0.003462,0.005499,0.249940,0,0);}
.m45_c00096{transform:matrix(0.157442,-0.003464,0.005499,0.249940,0,0);-ms-transform:matrix(0.157442,-0.003464,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157442,-0.003464,0.005499,0.249940,0,0);}
.m19_c00096{transform:matrix(0.157782,-0.003471,0.005499,0.249940,0,0);-ms-transform:matrix(0.157782,-0.003471,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157782,-0.003471,0.005499,0.249940,0,0);}
.mc2_c00096{transform:matrix(0.157907,-0.003474,0.005499,0.249940,0,0);-ms-transform:matrix(0.157907,-0.003474,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157907,-0.003474,0.005499,0.249940,0,0);}
.m88_c00096{transform:matrix(0.157982,-0.003476,0.005499,0.249940,0,0);-ms-transform:matrix(0.157982,-0.003476,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157982,-0.003476,0.005499,0.249940,0,0);}
.m20_c00096{transform:matrix(0.158737,-0.003492,0.005499,0.249940,0,0);-ms-transform:matrix(0.158737,-0.003492,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158737,-0.003492,0.005499,0.249940,0,0);}
.m6f_c00096{transform:matrix(0.159296,-0.003505,0.005499,0.249940,0,0);-ms-transform:matrix(0.159296,-0.003505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159296,-0.003505,0.005499,0.249940,0,0);}
.ma2_c00096{transform:matrix(0.159341,-0.003506,0.005499,0.249940,0,0);-ms-transform:matrix(0.159341,-0.003506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159341,-0.003506,0.005499,0.249940,0,0);}
.m5_c00096{transform:matrix(0.159831,-0.003516,0.005499,0.249940,0,0);-ms-transform:matrix(0.159831,-0.003516,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159831,-0.003516,0.005499,0.249940,0,0);}
.m4_c00096{transform:matrix(0.160221,-0.003525,0.005499,0.249940,0,0);-ms-transform:matrix(0.160221,-0.003525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160221,-0.003525,0.005499,0.249940,0,0);}
.m36_c00096{transform:matrix(0.161346,-0.003550,0.005499,0.249940,0,0);-ms-transform:matrix(0.161346,-0.003550,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161346,-0.003550,0.005499,0.249940,0,0);}
.m79_c00096{transform:matrix(0.161581,-0.003555,0.005499,0.249940,0,0);-ms-transform:matrix(0.161581,-0.003555,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161581,-0.003555,0.005499,0.249940,0,0);}
.m32_c00096{transform:matrix(0.161711,-0.003558,0.005499,0.249940,0,0);-ms-transform:matrix(0.161711,-0.003558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161711,-0.003558,0.005499,0.249940,0,0);}
.md1_c00096{transform:matrix(0.162186,-0.003568,0.005499,0.249940,0,0);-ms-transform:matrix(0.162186,-0.003568,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162186,-0.003568,0.005499,0.249940,0,0);}
.m23_c00096{transform:matrix(0.162281,-0.003570,0.005499,0.249940,0,0);-ms-transform:matrix(0.162281,-0.003570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162281,-0.003570,0.005499,0.249940,0,0);}
.m85_c00096{transform:matrix(0.162286,-0.003570,0.005499,0.249940,0,0);-ms-transform:matrix(0.162286,-0.003570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162286,-0.003570,0.005499,0.249940,0,0);}
.me8_c00096{transform:matrix(0.162876,-0.003583,0.005499,0.249940,0,0);-ms-transform:matrix(0.162876,-0.003583,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162876,-0.003583,0.005499,0.249940,0,0);}
.m6a_c00096{transform:matrix(0.162991,-0.003586,0.005499,0.249940,0,0);-ms-transform:matrix(0.162991,-0.003586,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162991,-0.003586,0.005499,0.249940,0,0);}
.m3_c00096{transform:matrix(0.163315,-0.003593,0.005499,0.249940,0,0);-ms-transform:matrix(0.163315,-0.003593,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163315,-0.003593,0.005499,0.249940,0,0);}
.mc6_c00096{transform:matrix(0.163340,-0.003593,0.005499,0.249940,0,0);-ms-transform:matrix(0.163340,-0.003593,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163340,-0.003593,0.005499,0.249940,0,0);}
.m57_c00096{transform:matrix(0.163515,-0.003597,0.005499,0.249940,0,0);-ms-transform:matrix(0.163515,-0.003597,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163515,-0.003597,0.005499,0.249940,0,0);}
.mb8_c00096{transform:matrix(0.163560,-0.003598,0.005499,0.249940,0,0);-ms-transform:matrix(0.163560,-0.003598,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163560,-0.003598,0.005499,0.249940,0,0);}
.md4_c00096{transform:matrix(0.164280,-0.003614,0.005499,0.249940,0,0);-ms-transform:matrix(0.164280,-0.003614,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164280,-0.003614,0.005499,0.249940,0,0);}
.ma6_c00096{transform:matrix(0.164735,-0.003624,0.005499,0.249940,0,0);-ms-transform:matrix(0.164735,-0.003624,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164735,-0.003624,0.005499,0.249940,0,0);}
.m95_c00096{transform:matrix(0.165530,-0.003642,0.005499,0.249940,0,0);-ms-transform:matrix(0.165530,-0.003642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165530,-0.003642,0.005499,0.249940,0,0);}
.m9a_c00096{transform:matrix(0.165970,-0.003651,0.005499,0.249940,0,0);-ms-transform:matrix(0.165970,-0.003651,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165970,-0.003651,0.005499,0.249940,0,0);}
.me7_c00096{transform:matrix(0.166490,-0.003663,0.005499,0.249940,0,0);-ms-transform:matrix(0.166490,-0.003663,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166490,-0.003663,0.005499,0.249940,0,0);}
.mf_c00096{transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);-ms-transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);}
.m1f_c00096{transform:matrix(0.167624,-0.003688,0.005499,0.249940,0,0);-ms-transform:matrix(0.167624,-0.003688,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167624,-0.003688,0.005499,0.249940,0,0);}
.mb2_c00096{transform:matrix(0.168249,-0.003701,0.005499,0.249940,0,0);-ms-transform:matrix(0.168249,-0.003701,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168249,-0.003701,0.005499,0.249940,0,0);}
.md5_c00096{transform:matrix(0.168424,-0.003705,0.005499,0.249940,0,0);-ms-transform:matrix(0.168424,-0.003705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168424,-0.003705,0.005499,0.249940,0,0);}
.meb_c00096{transform:matrix(0.168684,-0.003711,0.005499,0.249940,0,0);-ms-transform:matrix(0.168684,-0.003711,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168684,-0.003711,0.005499,0.249940,0,0);}
.m7c_c00096{transform:matrix(0.169524,-0.003730,0.005499,0.249940,0,0);-ms-transform:matrix(0.169524,-0.003730,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169524,-0.003730,0.005499,0.249940,0,0);}
.me2_c00096{transform:matrix(0.170159,-0.003743,0.005499,0.249940,0,0);-ms-transform:matrix(0.170159,-0.003743,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170159,-0.003743,0.005499,0.249940,0,0);}
.mca_c00096{transform:matrix(0.170719,-0.003756,0.005499,0.249940,0,0);-ms-transform:matrix(0.170719,-0.003756,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170719,-0.003756,0.005499,0.249940,0,0);}
.m7e_c00096{transform:matrix(0.171089,-0.003764,0.005499,0.249940,0,0);-ms-transform:matrix(0.171089,-0.003764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171089,-0.003764,0.005499,0.249940,0,0);}
.m2d_c00096{transform:matrix(0.171713,-0.003778,0.005499,0.249940,0,0);-ms-transform:matrix(0.171713,-0.003778,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171713,-0.003778,0.005499,0.249940,0,0);}
.md2_c00096{transform:matrix(0.171808,-0.003780,0.005499,0.249940,0,0);-ms-transform:matrix(0.171808,-0.003780,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171808,-0.003780,0.005499,0.249940,0,0);}
.m73_c00096{transform:matrix(0.172923,-0.003804,0.005499,0.249940,0,0);-ms-transform:matrix(0.172923,-0.003804,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172923,-0.003804,0.005499,0.249940,0,0);}
.m96_c00096{transform:matrix(0.173233,-0.003811,0.005499,0.249940,0,0);-ms-transform:matrix(0.173233,-0.003811,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173233,-0.003811,0.005499,0.249940,0,0);}
.mbc_c00096{transform:matrix(0.173323,-0.003813,0.005499,0.249940,0,0);-ms-transform:matrix(0.173323,-0.003813,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173323,-0.003813,0.005499,0.249940,0,0);}
.ma0_c00096{transform:matrix(0.174038,-0.003829,0.005499,0.249940,0,0);-ms-transform:matrix(0.174038,-0.003829,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174038,-0.003829,0.005499,0.249940,0,0);}
.m8d_c00096{transform:matrix(0.174388,-0.003837,0.005499,0.249940,0,0);-ms-transform:matrix(0.174388,-0.003837,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174388,-0.003837,0.005499,0.249940,0,0);}
.m18_c00096{transform:matrix(0.174938,-0.003849,0.005499,0.249940,0,0);-ms-transform:matrix(0.174938,-0.003849,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174938,-0.003849,0.005499,0.249940,0,0);}
.md3_c00096{transform:matrix(0.175852,-0.003869,0.005499,0.249940,0,0);-ms-transform:matrix(0.175852,-0.003869,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175852,-0.003869,0.005499,0.249940,0,0);}
.m50_c00096{transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);-ms-transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);}
.m58_c00096{transform:matrix(0.177447,-0.003904,0.005499,0.249940,0,0);-ms-transform:matrix(0.177447,-0.003904,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177447,-0.003904,0.005499,0.249940,0,0);}
.mdb_c00096{transform:matrix(0.177737,-0.003910,0.005499,0.249940,0,0);-ms-transform:matrix(0.177737,-0.003910,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177737,-0.003910,0.005499,0.249940,0,0);}
.mab_c00096{transform:matrix(0.179297,-0.003945,0.005499,0.249940,0,0);-ms-transform:matrix(0.179297,-0.003945,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179297,-0.003945,0.005499,0.249940,0,0);}
.m9_c00096{transform:matrix(0.179537,-0.003950,0.005499,0.249940,0,0);-ms-transform:matrix(0.179537,-0.003950,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179537,-0.003950,0.005499,0.249940,0,0);}
.m46_c00096{transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);-ms-transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);}
.m70_c00096{transform:matrix(0.179866,-0.003957,0.005499,0.249940,0,0);-ms-transform:matrix(0.179866,-0.003957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179866,-0.003957,0.005499,0.249940,0,0);}
.mc_c00096{transform:matrix(0.179901,-0.003958,0.005499,0.249940,0,0);-ms-transform:matrix(0.179901,-0.003958,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179901,-0.003958,0.005499,0.249940,0,0);}
.m43_c00096{transform:matrix(0.179986,-0.003960,0.005499,0.249940,0,0);-ms-transform:matrix(0.179986,-0.003960,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179986,-0.003960,0.005499,0.249940,0,0);}
.md8_c00096{transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);-ms-transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);}
.m3b_c00096{transform:matrix(0.180091,-0.003962,0.005499,0.249940,0,0);-ms-transform:matrix(0.180091,-0.003962,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180091,-0.003962,0.005499,0.249940,0,0);}
.mb6_c00096{transform:matrix(0.180131,-0.003963,0.005499,0.249940,0,0);-ms-transform:matrix(0.180131,-0.003963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180131,-0.003963,0.005499,0.249940,0,0);}
.ma7_c00096{transform:matrix(0.180226,-0.003965,0.005499,0.249940,0,0);-ms-transform:matrix(0.180226,-0.003965,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180226,-0.003965,0.005499,0.249940,0,0);}
.m1b_c00096{transform:matrix(0.180336,-0.003967,0.005499,0.249940,0,0);-ms-transform:matrix(0.180336,-0.003967,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180336,-0.003967,0.005499,0.249940,0,0);}
.m1a_c00096{transform:matrix(0.180401,-0.003969,0.005499,0.249940,0,0);-ms-transform:matrix(0.180401,-0.003969,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180401,-0.003969,0.005499,0.249940,0,0);}
.m2e_c00096{transform:matrix(0.180476,-0.003970,0.005499,0.249940,0,0);-ms-transform:matrix(0.180476,-0.003970,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180476,-0.003970,0.005499,0.249940,0,0);}
.m55_c00096{transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-ms-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);}
.m98_c00096{transform:matrix(0.180851,-0.003979,0.005499,0.249940,0,0);-ms-transform:matrix(0.180851,-0.003979,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180851,-0.003979,0.005499,0.249940,0,0);}
.m34_c00096{transform:matrix(0.181351,-0.003990,0.005499,0.249940,0,0);-ms-transform:matrix(0.181351,-0.003990,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181351,-0.003990,0.005499,0.249940,0,0);}
.m39_c00096{transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-ms-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);}
.m3a_c00096{transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);-ms-transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);}
.m8b_c00096{transform:matrix(0.182191,-0.004008,0.005499,0.249940,0,0);-ms-transform:matrix(0.182191,-0.004008,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182191,-0.004008,0.005499,0.249940,0,0);}
.m6b_c00096{transform:matrix(0.182286,-0.004010,0.005499,0.249940,0,0);-ms-transform:matrix(0.182286,-0.004010,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182286,-0.004010,0.005499,0.249940,0,0);}
.m5a_c00096{transform:matrix(0.182366,-0.004012,0.005499,0.249940,0,0);-ms-transform:matrix(0.182366,-0.004012,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182366,-0.004012,0.005499,0.249940,0,0);}
.m5c_c00096{transform:matrix(0.182411,-0.004013,0.005499,0.249940,0,0);-ms-transform:matrix(0.182411,-0.004013,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182411,-0.004013,0.005499,0.249940,0,0);}
.m16_c00096{transform:matrix(0.182431,-0.004013,0.005499,0.249940,0,0);-ms-transform:matrix(0.182431,-0.004013,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182431,-0.004013,0.005499,0.249940,0,0);}
.m8a_c00096{transform:matrix(0.182561,-0.004016,0.005499,0.249940,0,0);-ms-transform:matrix(0.182561,-0.004016,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182561,-0.004016,0.005499,0.249940,0,0);}
.ma4_c00096{transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);-ms-transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);}
.m4b_c00096{transform:matrix(0.182901,-0.004024,0.005499,0.249940,0,0);-ms-transform:matrix(0.182901,-0.004024,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182901,-0.004024,0.005499,0.249940,0,0);}
.m5b_c00096{transform:matrix(0.182931,-0.004024,0.005499,0.249940,0,0);-ms-transform:matrix(0.182931,-0.004024,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182931,-0.004024,0.005499,0.249940,0,0);}
.ma3_c00096{transform:matrix(0.182996,-0.004026,0.005499,0.249940,0,0);-ms-transform:matrix(0.182996,-0.004026,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182996,-0.004026,0.005499,0.249940,0,0);}
.m9c_c00096{transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);}
.m12_c00096{transform:matrix(0.184200,-0.004052,0.005499,0.249940,0,0);-ms-transform:matrix(0.184200,-0.004052,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184200,-0.004052,0.005499,0.249940,0,0);}
.m30_c00096{transform:matrix(0.184205,-0.004053,0.005499,0.249940,0,0);-ms-transform:matrix(0.184205,-0.004053,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184205,-0.004053,0.005499,0.249940,0,0);}
.m91_c00096{transform:matrix(0.184215,-0.004053,0.005499,0.249940,0,0);-ms-transform:matrix(0.184215,-0.004053,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184215,-0.004053,0.005499,0.249940,0,0);}
.m27_c00096{transform:matrix(0.184295,-0.004054,0.005499,0.249940,0,0);-ms-transform:matrix(0.184295,-0.004054,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184295,-0.004054,0.005499,0.249940,0,0);}
.m6c_c00096{transform:matrix(0.184405,-0.004057,0.005499,0.249940,0,0);-ms-transform:matrix(0.184405,-0.004057,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184405,-0.004057,0.005499,0.249940,0,0);}
.m74_c00096{transform:matrix(0.184915,-0.004068,0.005499,0.249940,0,0);-ms-transform:matrix(0.184915,-0.004068,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184915,-0.004068,0.005499,0.249940,0,0);}
.m25_c00096{transform:matrix(0.185155,-0.004073,0.005499,0.249940,0,0);-ms-transform:matrix(0.185155,-0.004073,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185155,-0.004073,0.005499,0.249940,0,0);}
.mc4_c00096{transform:matrix(0.185180,-0.004074,0.005499,0.249940,0,0);-ms-transform:matrix(0.185180,-0.004074,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185180,-0.004074,0.005499,0.249940,0,0);}
.mbb_c00096{transform:matrix(0.185240,-0.004075,0.005499,0.249940,0,0);-ms-transform:matrix(0.185240,-0.004075,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185240,-0.004075,0.005499,0.249940,0,0);}
.m9e_c00096{transform:matrix(0.185610,-0.004083,0.005499,0.249940,0,0);-ms-transform:matrix(0.185610,-0.004083,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185610,-0.004083,0.005499,0.249940,0,0);}
.mec_c00096{transform:matrix(0.185670,-0.004085,0.005499,0.249940,0,0);-ms-transform:matrix(0.185670,-0.004085,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185670,-0.004085,0.005499,0.249940,0,0);}
.mb9_c00096{transform:matrix(0.185935,-0.004091,0.005499,0.249940,0,0);-ms-transform:matrix(0.185935,-0.004091,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185935,-0.004091,0.005499,0.249940,0,0);}
.m9d_c00096{transform:matrix(0.186975,-0.004113,0.005499,0.249940,0,0);-ms-transform:matrix(0.186975,-0.004113,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186975,-0.004113,0.005499,0.249940,0,0);}
.m44_c00096{transform:matrix(0.187075,-0.004116,0.005499,0.249940,0,0);-ms-transform:matrix(0.187075,-0.004116,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187075,-0.004116,0.005499,0.249940,0,0);}
.m86_c00096{transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);-ms-transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);}
.mae_c00096{transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);-ms-transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);}
.mc1_c00096{transform:matrix(0.187410,-0.004123,0.005499,0.249940,0,0);-ms-transform:matrix(0.187410,-0.004123,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187410,-0.004123,0.005499,0.249940,0,0);}
.m21_c00096{transform:matrix(0.187635,-0.004128,0.005499,0.249940,0,0);-ms-transform:matrix(0.187635,-0.004128,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187635,-0.004128,0.005499,0.249940,0,0);}
.m76_c00096{transform:matrix(0.188084,-0.004138,0.005499,0.249940,0,0);-ms-transform:matrix(0.188084,-0.004138,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188084,-0.004138,0.005499,0.249940,0,0);}
.m33_c00096{transform:matrix(0.189589,-0.004171,0.005499,0.249940,0,0);-ms-transform:matrix(0.189589,-0.004171,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189589,-0.004171,0.005499,0.249940,0,0);}
.mb0_c00096{transform:matrix(0.189694,-0.004173,0.005499,0.249940,0,0);-ms-transform:matrix(0.189694,-0.004173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189694,-0.004173,0.005499,0.249940,0,0);}
.m65_c00096{transform:matrix(0.189814,-0.004176,0.005499,0.249940,0,0);-ms-transform:matrix(0.189814,-0.004176,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189814,-0.004176,0.005499,0.249940,0,0);}
.m82_c00096{transform:matrix(0.189854,-0.004177,0.005499,0.249940,0,0);-ms-transform:matrix(0.189854,-0.004177,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189854,-0.004177,0.005499,0.249940,0,0);}
.ma8_c00096{transform:matrix(0.189894,-0.004178,0.005499,0.249940,0,0);-ms-transform:matrix(0.189894,-0.004178,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189894,-0.004178,0.005499,0.249940,0,0);}
.m2c_c00096{transform:matrix(0.190159,-0.004183,0.005499,0.249940,0,0);-ms-transform:matrix(0.190159,-0.004183,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190159,-0.004183,0.005499,0.249940,0,0);}
.m68_c00096{transform:matrix(0.190249,-0.004185,0.005499,0.249940,0,0);-ms-transform:matrix(0.190249,-0.004185,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190249,-0.004185,0.005499,0.249940,0,0);}
.m77_c00096{transform:matrix(0.190759,-0.004197,0.005499,0.249940,0,0);-ms-transform:matrix(0.190759,-0.004197,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190759,-0.004197,0.005499,0.249940,0,0);}
.m78_c00096{transform:matrix(0.190854,-0.004199,0.005499,0.249940,0,0);-ms-transform:matrix(0.190854,-0.004199,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190854,-0.004199,0.005499,0.249940,0,0);}
.m9b_c00096{transform:matrix(0.190869,-0.004199,0.005499,0.249940,0,0);-ms-transform:matrix(0.190869,-0.004199,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190869,-0.004199,0.005499,0.249940,0,0);}
.ma5_c00096{transform:matrix(0.190919,-0.004200,0.005499,0.249940,0,0);-ms-transform:matrix(0.190919,-0.004200,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190919,-0.004200,0.005499,0.249940,0,0);}
.me5_c00096{transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);-ms-transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);}
.m56_c00096{transform:matrix(0.191644,-0.004216,0.005499,0.249940,0,0);-ms-transform:matrix(0.191644,-0.004216,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191644,-0.004216,0.005499,0.249940,0,0);}
.m8e_c00096{transform:matrix(0.191934,-0.004223,0.005499,0.249940,0,0);-ms-transform:matrix(0.191934,-0.004223,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191934,-0.004223,0.005499,0.249940,0,0);}
.mc5_c00096{transform:matrix(0.192079,-0.004226,0.005499,0.249940,0,0);-ms-transform:matrix(0.192079,-0.004226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192079,-0.004226,0.005499,0.249940,0,0);}
.m87_c00096{transform:matrix(0.192089,-0.004226,0.005499,0.249940,0,0);-ms-transform:matrix(0.192089,-0.004226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192089,-0.004226,0.005499,0.249940,0,0);}
.ma1_c00096{transform:matrix(0.192313,-0.004231,0.005499,0.249940,0,0);-ms-transform:matrix(0.192313,-0.004231,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192313,-0.004231,0.005499,0.249940,0,0);}
.mef_c00096{transform:matrix(0.192998,-0.004246,0.005499,0.249940,0,0);-ms-transform:matrix(0.192998,-0.004246,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192998,-0.004246,0.005499,0.249940,0,0);}
.m2b_c00096{transform:matrix(0.193513,-0.004257,0.005499,0.249940,0,0);-ms-transform:matrix(0.193513,-0.004257,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193513,-0.004257,0.005499,0.249940,0,0);}
.m83_c00096{transform:matrix(0.193948,-0.004267,0.005499,0.249940,0,0);-ms-transform:matrix(0.193948,-0.004267,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193948,-0.004267,0.005499,0.249940,0,0);}
.m35_c00096{transform:matrix(0.193993,-0.004268,0.005499,0.249940,0,0);-ms-transform:matrix(0.193993,-0.004268,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193993,-0.004268,0.005499,0.249940,0,0);}
.m48_c00096{transform:matrix(0.194448,-0.004278,0.005499,0.249940,0,0);-ms-transform:matrix(0.194448,-0.004278,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194448,-0.004278,0.005499,0.249940,0,0);}
.md6_c00096{transform:matrix(0.194978,-0.004290,0.005499,0.249940,0,0);-ms-transform:matrix(0.194978,-0.004290,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194978,-0.004290,0.005499,0.249940,0,0);}
.mbf_c00096{transform:matrix(0.195298,-0.004297,0.005499,0.249940,0,0);-ms-transform:matrix(0.195298,-0.004297,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195298,-0.004297,0.005499,0.249940,0,0);}
.m31_c00096{transform:matrix(0.195338,-0.004297,0.005499,0.249940,0,0);-ms-transform:matrix(0.195338,-0.004297,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195338,-0.004297,0.005499,0.249940,0,0);}
.m41_c00096{transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);-ms-transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);}
.m13_c00096{transform:matrix(0.195658,-0.004304,0.005499,0.249940,0,0);-ms-transform:matrix(0.195658,-0.004304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195658,-0.004304,0.005499,0.249940,0,0);}
.m66_c00096{transform:matrix(0.196402,-0.004321,0.005499,0.249940,0,0);-ms-transform:matrix(0.196402,-0.004321,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196402,-0.004321,0.005499,0.249940,0,0);}
.mb_c00096{transform:matrix(0.196762,-0.004329,0.005499,0.249940,0,0);-ms-transform:matrix(0.196762,-0.004329,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196762,-0.004329,0.005499,0.249940,0,0);}
.m7_c00096{transform:matrix(0.197467,-0.004344,0.005499,0.249940,0,0);-ms-transform:matrix(0.197467,-0.004344,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197467,-0.004344,0.005499,0.249940,0,0);}
.m3e_c00096{transform:matrix(0.197662,-0.004349,0.005499,0.249940,0,0);-ms-transform:matrix(0.197662,-0.004349,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197662,-0.004349,0.005499,0.249940,0,0);}
.mba_c00096{transform:matrix(0.198067,-0.004357,0.005499,0.249940,0,0);-ms-transform:matrix(0.198067,-0.004357,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198067,-0.004357,0.005499,0.249940,0,0);}
.m7f_c00096{transform:matrix(0.198347,-0.004364,0.005499,0.249940,0,0);-ms-transform:matrix(0.198347,-0.004364,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198347,-0.004364,0.005499,0.249940,0,0);}
.m89_c00096{transform:matrix(0.198407,-0.004365,0.005499,0.249940,0,0);-ms-transform:matrix(0.198407,-0.004365,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198407,-0.004365,0.005499,0.249940,0,0);}
.m6e_c00096{transform:matrix(0.198692,-0.004371,0.005499,0.249940,0,0);-ms-transform:matrix(0.198692,-0.004371,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198692,-0.004371,0.005499,0.249940,0,0);}
.m47_c00096{transform:matrix(0.199072,-0.004380,0.005499,0.249940,0,0);-ms-transform:matrix(0.199072,-0.004380,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199072,-0.004380,0.005499,0.249940,0,0);}
.m4e_c00096{transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);-ms-transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);}
.me1_c00096{transform:matrix(0.199812,-0.004396,0.005499,0.249940,0,0);-ms-transform:matrix(0.199812,-0.004396,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199812,-0.004396,0.005499,0.249940,0,0);}
.mc3_c00096{transform:matrix(0.200112,-0.004402,0.005499,0.249940,0,0);-ms-transform:matrix(0.200112,-0.004402,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200112,-0.004402,0.005499,0.249940,0,0);}
.m17_c00096{transform:matrix(0.200347,-0.004408,0.005499,0.249940,0,0);-ms-transform:matrix(0.200347,-0.004408,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200347,-0.004408,0.005499,0.249940,0,0);}
.mbd_c00096{transform:matrix(0.200451,-0.004410,0.005499,0.249940,0,0);-ms-transform:matrix(0.200451,-0.004410,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200451,-0.004410,0.005499,0.249940,0,0);}
.m8c_c00096{transform:matrix(0.200641,-0.004414,0.005499,0.249940,0,0);-ms-transform:matrix(0.200641,-0.004414,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200641,-0.004414,0.005499,0.249940,0,0);}
.mcf_c00096{transform:matrix(0.201091,-0.004424,0.005499,0.249940,0,0);-ms-transform:matrix(0.201091,-0.004424,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201091,-0.004424,0.005499,0.249940,0,0);}
.mbe_c00096{transform:matrix(0.201126,-0.004425,0.005499,0.249940,0,0);-ms-transform:matrix(0.201126,-0.004425,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201126,-0.004425,0.005499,0.249940,0,0);}
.m10_c00096{transform:matrix(0.201406,-0.004431,0.005499,0.249940,0,0);-ms-transform:matrix(0.201406,-0.004431,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201406,-0.004431,0.005499,0.249940,0,0);}
.me_c00096{transform:matrix(0.202231,-0.004449,0.005499,0.249940,0,0);-ms-transform:matrix(0.202231,-0.004449,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202231,-0.004449,0.005499,0.249940,0,0);}
.m94_c00096{transform:matrix(0.202246,-0.004449,0.005499,0.249940,0,0);-ms-transform:matrix(0.202246,-0.004449,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202246,-0.004449,0.005499,0.249940,0,0);}
.m1e_c00096{transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-ms-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);}
.m51_c00096{transform:matrix(0.203271,-0.004472,0.005499,0.249940,0,0);-ms-transform:matrix(0.203271,-0.004472,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203271,-0.004472,0.005499,0.249940,0,0);}
.med_c00096{transform:matrix(0.203831,-0.004484,0.005499,0.249940,0,0);-ms-transform:matrix(0.203831,-0.004484,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203831,-0.004484,0.005499,0.249940,0,0);}
.m60_c00096{transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);-ms-transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);}
.mc8_c00096{transform:matrix(0.204061,-0.004489,0.005499,0.249940,0,0);-ms-transform:matrix(0.204061,-0.004489,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204061,-0.004489,0.005499,0.249940,0,0);}
.mc7_c00096{transform:matrix(0.204301,-0.004495,0.005499,0.249940,0,0);-ms-transform:matrix(0.204301,-0.004495,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204301,-0.004495,0.005499,0.249940,0,0);}
.mee_c00096{transform:matrix(0.205530,-0.004522,0.005499,0.249940,0,0);-ms-transform:matrix(0.205530,-0.004522,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205530,-0.004522,0.005499,0.249940,0,0);}
.m49_c00096{transform:matrix(0.205820,-0.004528,0.005499,0.249940,0,0);-ms-transform:matrix(0.205820,-0.004528,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205820,-0.004528,0.005499,0.249940,0,0);}
.m6d_c00096{transform:matrix(0.205920,-0.004530,0.005499,0.249940,0,0);-ms-transform:matrix(0.205920,-0.004530,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205920,-0.004530,0.005499,0.249940,0,0);}
.maf_c00096{transform:matrix(0.206410,-0.004541,0.005499,0.249940,0,0);-ms-transform:matrix(0.206410,-0.004541,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206410,-0.004541,0.005499,0.249940,0,0);}
.m93_c00096{transform:matrix(0.206460,-0.004542,0.005499,0.249940,0,0);-ms-transform:matrix(0.206460,-0.004542,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206460,-0.004542,0.005499,0.249940,0,0);}
.m24_c00096{transform:matrix(0.206780,-0.004549,0.005499,0.249940,0,0);-ms-transform:matrix(0.206780,-0.004549,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206780,-0.004549,0.005499,0.249940,0,0);}
.m71_c00096{transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);-ms-transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);}
.m4f_c00096{transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);}
.m5d_c00096{transform:matrix(0.207190,-0.004558,0.005499,0.249940,0,0);-ms-transform:matrix(0.207190,-0.004558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207190,-0.004558,0.005499,0.249940,0,0);}
.mc9_c00096{transform:matrix(0.207235,-0.004559,0.005499,0.249940,0,0);-ms-transform:matrix(0.207235,-0.004559,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207235,-0.004559,0.005499,0.249940,0,0);}
.mdf_c00096{transform:matrix(0.207330,-0.004561,0.005499,0.249940,0,0);-ms-transform:matrix(0.207330,-0.004561,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207330,-0.004561,0.005499,0.249940,0,0);}
.m42_c00096{transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);-ms-transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);}
.mea_c00096{transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);-ms-transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);}
.me9_c00096{transform:matrix(0.208290,-0.004582,0.005499,0.249940,0,0);-ms-transform:matrix(0.208290,-0.004582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208290,-0.004582,0.005499,0.249940,0,0);}
.mcd_c00096{transform:matrix(0.208919,-0.004596,0.005499,0.249940,0,0);-ms-transform:matrix(0.208919,-0.004596,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208919,-0.004596,0.005499,0.249940,0,0);}
.m40_c00096{transform:matrix(0.209314,-0.004605,0.005499,0.249940,0,0);-ms-transform:matrix(0.209314,-0.004605,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209314,-0.004605,0.005499,0.249940,0,0);}
.m64_c00096{transform:matrix(0.209719,-0.004614,0.005499,0.249940,0,0);-ms-transform:matrix(0.209719,-0.004614,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209719,-0.004614,0.005499,0.249940,0,0);}
.m38_c00096{transform:matrix(0.210384,-0.004628,0.005499,0.249940,0,0);-ms-transform:matrix(0.210384,-0.004628,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210384,-0.004628,0.005499,0.249940,0,0);}
.m3c_c00096{transform:matrix(0.210599,-0.004633,0.005499,0.249940,0,0);-ms-transform:matrix(0.210599,-0.004633,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210599,-0.004633,0.005499,0.249940,0,0);}
.mb1_c00096{transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);-ms-transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);}
.m7d_c00096{transform:matrix(0.212144,-0.004667,0.005499,0.249940,0,0);-ms-transform:matrix(0.212144,-0.004667,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212144,-0.004667,0.005499,0.249940,0,0);}
.mc0_c00096{transform:matrix(0.212239,-0.004669,0.005499,0.249940,0,0);-ms-transform:matrix(0.212239,-0.004669,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212239,-0.004669,0.005499,0.249940,0,0);}
.m4d_c00096{transform:matrix(0.212539,-0.004676,0.005499,0.249940,0,0);-ms-transform:matrix(0.212539,-0.004676,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212539,-0.004676,0.005499,0.249940,0,0);}
.md7_c00096{transform:matrix(0.212784,-0.004681,0.005499,0.249940,0,0);-ms-transform:matrix(0.212784,-0.004681,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212784,-0.004681,0.005499,0.249940,0,0);}
.m3d_c00096{transform:matrix(0.212973,-0.004685,0.005499,0.249940,0,0);-ms-transform:matrix(0.212973,-0.004685,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212973,-0.004685,0.005499,0.249940,0,0);}
.m84_c00096{transform:matrix(0.213528,-0.004698,0.005499,0.249940,0,0);-ms-transform:matrix(0.213528,-0.004698,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213528,-0.004698,0.005499,0.249940,0,0);}
.me4_c00096{transform:matrix(0.214483,-0.004719,0.005499,0.249940,0,0);-ms-transform:matrix(0.214483,-0.004719,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214483,-0.004719,0.005499,0.249940,0,0);}
.me6_c00096{transform:matrix(0.214598,-0.004721,0.005499,0.249940,0,0);-ms-transform:matrix(0.214598,-0.004721,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214598,-0.004721,0.005499,0.249940,0,0);}
.mdd_c00096{transform:matrix(0.214793,-0.004725,0.005499,0.249940,0,0);-ms-transform:matrix(0.214793,-0.004725,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214793,-0.004725,0.005499,0.249940,0,0);}
.m2a_c00096{transform:matrix(0.214903,-0.004728,0.005499,0.249940,0,0);-ms-transform:matrix(0.214903,-0.004728,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214903,-0.004728,0.005499,0.249940,0,0);}
.m15_c00096{transform:matrix(0.216068,-0.004753,0.005499,0.249940,0,0);-ms-transform:matrix(0.216068,-0.004753,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216068,-0.004753,0.005499,0.249940,0,0);}
.m11_c00096{transform:matrix(0.216388,-0.004761,0.005499,0.249940,0,0);-ms-transform:matrix(0.216388,-0.004761,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216388,-0.004761,0.005499,0.249940,0,0);}
.m63_c00096{transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);-ms-transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);}
.m14_c00096{transform:matrix(0.216693,-0.004767,0.005499,0.249940,0,0);-ms-transform:matrix(0.216693,-0.004767,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216693,-0.004767,0.005499,0.249940,0,0);}
.m59_c00096{transform:matrix(0.216798,-0.004770,0.005499,0.249940,0,0);-ms-transform:matrix(0.216798,-0.004770,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216798,-0.004770,0.005499,0.249940,0,0);}
.m26_c00096{transform:matrix(0.218432,-0.004806,0.005499,0.249940,0,0);-ms-transform:matrix(0.218432,-0.004806,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218432,-0.004806,0.005499,0.249940,0,0);}
.m52_c00096{transform:matrix(0.218507,-0.004807,0.005499,0.249940,0,0);-ms-transform:matrix(0.218507,-0.004807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218507,-0.004807,0.005499,0.249940,0,0);}
.mdc_c00096{transform:matrix(0.219117,-0.004821,0.005499,0.249940,0,0);-ms-transform:matrix(0.219117,-0.004821,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219117,-0.004821,0.005499,0.249940,0,0);}
.md9_c00096{transform:matrix(0.219287,-0.004824,0.005499,0.249940,0,0);-ms-transform:matrix(0.219287,-0.004824,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219287,-0.004824,0.005499,0.249940,0,0);}
.mcb_c00096{transform:matrix(0.222996,-0.004906,0.005499,0.249940,0,0);-ms-transform:matrix(0.222996,-0.004906,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222996,-0.004906,0.005499,0.249940,0,0);}
.maa_c00096{transform:matrix(0.223241,-0.004911,0.005499,0.249940,0,0);-ms-transform:matrix(0.223241,-0.004911,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223241,-0.004911,0.005499,0.249940,0,0);}
.ma_c00096{transform:matrix(0.223271,-0.004912,0.005499,0.249940,0,0);-ms-transform:matrix(0.223271,-0.004912,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223271,-0.004912,0.005499,0.249940,0,0);}
.m53_c00096{transform:matrix(0.223336,-0.004913,0.005499,0.249940,0,0);-ms-transform:matrix(0.223336,-0.004913,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223336,-0.004913,0.005499,0.249940,0,0);}
.mb7_c00096{transform:matrix(0.225785,-0.004967,0.005499,0.249940,0,0);-ms-transform:matrix(0.225785,-0.004967,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225785,-0.004967,0.005499,0.249940,0,0);}
.m2f_c00096{transform:matrix(0.226455,-0.004982,0.005499,0.249940,0,0);-ms-transform:matrix(0.226455,-0.004982,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226455,-0.004982,0.005499,0.249940,0,0);}
.m29_c00096{transform:matrix(0.227370,-0.005002,0.005499,0.249940,0,0);-ms-transform:matrix(0.227370,-0.005002,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227370,-0.005002,0.005499,0.249940,0,0);}
.m28_c00096{transform:matrix(0.227675,-0.005009,0.005499,0.249940,0,0);-ms-transform:matrix(0.227675,-0.005009,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227675,-0.005009,0.005499,0.249940,0,0);}
.m69_c00096{transform:matrix(0.228075,-0.005018,0.005499,0.249940,0,0);-ms-transform:matrix(0.228075,-0.005018,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228075,-0.005018,0.005499,0.249940,0,0);}
.m37_c00096{transform:matrix(0.228945,-0.005037,0.005499,0.249940,0,0);-ms-transform:matrix(0.228945,-0.005037,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228945,-0.005037,0.005499,0.249940,0,0);}
.me3_c00096{transform:matrix(0.229874,-0.005057,0.005499,0.249940,0,0);-ms-transform:matrix(0.229874,-0.005057,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229874,-0.005057,0.005499,0.249940,0,0);}
.m8f_c00096{transform:matrix(0.230849,-0.005079,0.005499,0.249940,0,0);-ms-transform:matrix(0.230849,-0.005079,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230849,-0.005079,0.005499,0.249940,0,0);}
.m61_c00096{transform:matrix(0.231159,-0.005085,0.005499,0.249940,0,0);-ms-transform:matrix(0.231159,-0.005085,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231159,-0.005085,0.005499,0.249940,0,0);}
.mda_c00096{transform:matrix(0.232834,-0.005122,0.005499,0.249940,0,0);-ms-transform:matrix(0.232834,-0.005122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232834,-0.005122,0.005499,0.249940,0,0);}
.mb3_c00096{transform:matrix(0.233309,-0.005133,0.005499,0.249940,0,0);-ms-transform:matrix(0.233309,-0.005133,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233309,-0.005133,0.005499,0.249940,0,0);}
.me0_c00096{transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);-ms-transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);}
.mde_c00096{transform:matrix(0.235763,-0.005187,0.005499,0.249940,0,0);-ms-transform:matrix(0.235763,-0.005187,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235763,-0.005187,0.005499,0.249940,0,0);}
.m92_c00096{transform:matrix(0.238772,-0.005253,0.005499,0.249940,0,0);-ms-transform:matrix(0.238772,-0.005253,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238772,-0.005253,0.005499,0.249940,0,0);}
.m62_c00096{transform:matrix(0.245871,-0.005409,0.005499,0.249940,0,0);-ms-transform:matrix(0.245871,-0.005409,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245871,-0.005409,0.005499,0.249940,0,0);}
.mb4_c00096{transform:matrix(0.250149,-0.005503,0.005499,0.249940,0,0);-ms-transform:matrix(0.250149,-0.005503,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250149,-0.005503,0.005499,0.249940,0,0);}
.m54_c00096{transform:matrix(0.253739,-0.005582,0.005499,0.249940,0,0);-ms-transform:matrix(0.253739,-0.005582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253739,-0.005582,0.005499,0.249940,0,0);}
.m67_c00096{transform:matrix(0.259292,-0.005704,0.005499,0.249940,0,0);-ms-transform:matrix(0.259292,-0.005704,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259292,-0.005704,0.005499,0.249940,0,0);}
.m5f_c00096{transform:matrix(0.278658,-0.006130,0.005499,0.249940,0,0);-ms-transform:matrix(0.278658,-0.006130,0.005499,0.249940,0,0);-webkit-transform:matrix(0.278658,-0.006130,0.005499,0.249940,0,0);}
.m3f_c00096{transform:matrix(0.280027,-0.006161,0.005499,0.249940,0,0);-ms-transform:matrix(0.280027,-0.006161,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280027,-0.006161,0.005499,0.249940,0,0);}
.mce_c00096{transform:matrix(0.283586,-0.006239,0.005499,0.249940,0,0);-ms-transform:matrix(0.283586,-0.006239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.283586,-0.006239,0.005499,0.249940,0,0);}
.m5e_c00096{transform:matrix(0.306251,-0.006738,0.005499,0.249940,0,0);-ms-transform:matrix(0.306251,-0.006738,0.005499,0.249940,0,0);-webkit-transform:matrix(0.306251,-0.006738,0.005499,0.249940,0,0);}
.mcc_c00096{transform:matrix(0.330265,-0.007266,0.005499,0.249940,0,0);-ms-transform:matrix(0.330265,-0.007266,0.005499,0.249940,0,0);-webkit-transform:matrix(0.330265,-0.007266,0.005499,0.249940,0,0);}
.m90_c00096{transform:matrix(0.385312,-0.008477,0.005499,0.249940,0,0);-ms-transform:matrix(0.385312,-0.008477,0.005499,0.249940,0,0);-webkit-transform:matrix(0.385312,-0.008477,0.005499,0.249940,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:0.000000px;}
.fc0_c00096{color:transparent;}
.fs8_c00096{font-size:58.814228px;}
.fsc_c00096{font-size:59.864482px;}
.fs7_c00096{font-size:60.914736px;}
.fs2_c00096{font-size:61.964990px;}
.fsd_c00096{font-size:63.015244px;}
.fs5_c00096{font-size:65.115752px;}
.fs4_c00096{font-size:67.216260px;}
.fs9_c00096{font-size:68.266515px;}
.fs6_c00096{font-size:69.316769px;}
.fsa_c00096{font-size:70.367023px;}
.fs1_c00096{font-size:72.467531px;}
.fs3_c00096{font-size:73.517785px;}
.fsb_c00096{font-size:76.668547px;}
.fs0_c00096{font-size:81.919817px;}
.y0_c00096{bottom:0.000000px;}
.yf2_c00096{bottom:38.400120px;}
.yec_c00096{bottom:38.400183px;}
.yf1_c00096{bottom:38.400303px;}
.yf4_c00096{bottom:38.400318px;}
.yee_c00096{bottom:38.400426px;}
.yf0_c00096{bottom:38.400642px;}
.yef_c00096{bottom:38.400747px;}
.yf3_c00096{bottom:38.400756px;}
.yed_c00096{bottom:38.400837px;}
.ye8_c00096{bottom:55.695069px;}
.ye9_c00096{bottom:55.695300px;}
.ye6_c00096{bottom:55.695405px;}
.ye7_c00096{bottom:55.695519px;}
.yeb_c00096{bottom:55.695894px;}
.yea_c00096{bottom:55.695948px;}
.ye5_c00096{bottom:73.610571px;}
.ye4_c00096{bottom:73.610808px;}
.ye3_c00096{bottom:73.611399px;}
.ye2_c00096{bottom:73.611543px;}
.ye0_c00096{bottom:73.611690px;}
.ye1_c00096{bottom:73.611960px;}
.ydf_c00096{bottom:89.935332px;}
.yde_c00096{bottom:90.187035px;}
.ydd_c00096{bottom:90.329325px;}
.ydc_c00096{bottom:91.075800px;}
.ydb_c00096{bottom:91.367553px;}
.yda_c00096{bottom:91.578864px;}
.yd9_c00096{bottom:92.242758px;}
.yd8_c00096{bottom:92.502147px;}
.yd7_c00096{bottom:108.362793px;}
.yd1_c00096{bottom:108.363093px;}
.yd6_c00096{bottom:108.363297px;}
.yd4_c00096{bottom:108.363357px;}
.yd2_c00096{bottom:108.363408px;}
.yd5_c00096{bottom:108.363807px;}
.yd3_c00096{bottom:108.364056px;}
.ycb_c00096{bottom:125.834568px;}
.ycc_c00096{bottom:125.835012px;}
.ycd_c00096{bottom:125.835282px;}
.yce_c00096{bottom:125.835510px;}
.ycf_c00096{bottom:125.835693px;}
.yd0_c00096{bottom:125.836347px;}
.yc7_c00096{bottom:143.270109px;}
.yc6_c00096{bottom:143.270274px;}
.yc5_c00096{bottom:143.270679px;}
.yc8_c00096{bottom:143.270793px;}
.yca_c00096{bottom:143.270871px;}
.yc4_c00096{bottom:143.271063px;}
.yc9_c00096{bottom:143.271228px;}
.yc3_c00096{bottom:159.814890px;}
.yc2_c00096{bottom:159.815622px;}
.yc1_c00096{bottom:159.816300px;}
.ybb_c00096{bottom:159.816582px;}
.ybd_c00096{bottom:159.816597px;}
.ybe_c00096{bottom:159.816648px;}
.ybf_c00096{bottom:159.816663px;}
.ybc_c00096{bottom:159.816696px;}
.yc0_c00096{bottom:159.816864px;}
.yb6_c00096{bottom:178.663899px;}
.yb7_c00096{bottom:178.663935px;}
.yb5_c00096{bottom:178.663938px;}
.yb4_c00096{bottom:178.664202px;}
.yb8_c00096{bottom:178.664289px;}
.yba_c00096{bottom:178.664484px;}
.yb2_c00096{bottom:178.664823px;}
.yb3_c00096{bottom:178.664919px;}
.yb9_c00096{bottom:178.664970px;}
.yaf_c00096{bottom:195.714144px;}
.yab_c00096{bottom:195.714384px;}
.yaa_c00096{bottom:195.714528px;}
.yae_c00096{bottom:195.714543px;}
.ya9_c00096{bottom:195.714633px;}
.yb1_c00096{bottom:195.714702px;}
.yac_c00096{bottom:195.714759px;}
.yb0_c00096{bottom:195.714792px;}
.yad_c00096{bottom:195.715041px;}
.ya0_c00096{bottom:211.128711px;}
.ya4_c00096{bottom:211.129065px;}
.ya1_c00096{bottom:211.129353px;}
.ya5_c00096{bottom:211.129746px;}
.ya3_c00096{bottom:211.129749px;}
.ya2_c00096{bottom:211.129968px;}
.ya6_c00096{bottom:211.130268px;}
.ya7_c00096{bottom:211.130583px;}
.ya8_c00096{bottom:211.130952px;}
.y98_c00096{bottom:229.386675px;}
.y99_c00096{bottom:229.386750px;}
.y9b_c00096{bottom:229.387074px;}
.y9a_c00096{bottom:229.387392px;}
.y9f_c00096{bottom:229.387455px;}
.y9c_c00096{bottom:229.387470px;}
.y9e_c00096{bottom:229.387521px;}
.y9d_c00096{bottom:229.387698px;}
.y97_c00096{bottom:247.327989px;}
.y96_c00096{bottom:247.328700px;}
.y93_c00096{bottom:247.328886px;}
.y94_c00096{bottom:247.328928px;}
.y92_c00096{bottom:247.328991px;}
.y95_c00096{bottom:247.329411px;}
.y91_c00096{bottom:247.329441px;}
.y8f_c00096{bottom:264.765561px;}
.y8c_c00096{bottom:264.765768px;}
.y90_c00096{bottom:264.766137px;}
.y8e_c00096{bottom:264.766320px;}
.y8d_c00096{bottom:264.766338px;}
.y8a_c00096{bottom:264.766476px;}
.y8b_c00096{bottom:264.766491px;}
.y86_c00096{bottom:281.967036px;}
.y87_c00096{bottom:281.967201px;}
.y85_c00096{bottom:281.967501px;}
.y88_c00096{bottom:281.967669px;}
.y84_c00096{bottom:281.968005px;}
.y89_c00096{bottom:281.968386px;}
.y80_c00096{bottom:299.827080px;}
.y82_c00096{bottom:299.827185px;}
.y81_c00096{bottom:299.827251px;}
.y7e_c00096{bottom:299.827443px;}
.y7f_c00096{bottom:299.827779px;}
.y83_c00096{bottom:299.827833px;}
.y7b_c00096{bottom:299.828112px;}
.y7d_c00096{bottom:299.828142px;}
.y7a_c00096{bottom:299.828331px;}
.y7c_c00096{bottom:299.828421px;}
.y78_c00096{bottom:318.191832px;}
.y79_c00096{bottom:318.192348px;}
.y75_c00096{bottom:318.192453px;}
.y74_c00096{bottom:318.192552px;}
.y77_c00096{bottom:318.192591px;}
.y72_c00096{bottom:318.192708px;}
.y76_c00096{bottom:318.192783px;}
.y73_c00096{bottom:318.193191px;}
.y6c_c00096{bottom:333.402432px;}
.y6d_c00096{bottom:333.666288px;}
.y6e_c00096{bottom:333.965595px;}
.y6f_c00096{bottom:334.624620px;}
.y70_c00096{bottom:335.294037px;}
.y71_c00096{bottom:336.300771px;}
.y65_c00096{bottom:349.068432px;}
.y66_c00096{bottom:350.813169px;}
.y67_c00096{bottom:351.700431px;}
.y68_c00096{bottom:352.383111px;}
.y69_c00096{bottom:353.262138px;}
.y6a_c00096{bottom:353.675826px;}
.y6b_c00096{bottom:354.326574px;}
.y62_c00096{bottom:367.242459px;}
.y64_c00096{bottom:367.242738px;}
.y5f_c00096{bottom:367.242858px;}
.y63_c00096{bottom:367.242981px;}
.y5e_c00096{bottom:367.243176px;}
.y61_c00096{bottom:367.243191px;}
.y60_c00096{bottom:367.243482px;}
.y57_c00096{bottom:384.443967px;}
.y58_c00096{bottom:385.108872px;}
.y59_c00096{bottom:386.032905px;}
.y5a_c00096{bottom:386.219262px;}
.y5b_c00096{bottom:386.813823px;}
.y5c_c00096{bottom:387.074685px;}
.y5d_c00096{bottom:387.407724px;}
.y50_c00096{bottom:401.998233px;}
.y51_c00096{bottom:402.306465px;}
.y52_c00096{bottom:402.526959px;}
.y53_c00096{bottom:402.802587px;}
.y54_c00096{bottom:403.376799px;}
.y55_c00096{bottom:404.309388px;}
.y56_c00096{bottom:404.808204px;}
.y48_c00096{bottom:419.282532px;}
.y49_c00096{bottom:420.309555px;}
.y4a_c00096{bottom:420.442623px;}
.y4b_c00096{bottom:421.361730px;}
.y4c_c00096{bottom:421.501749px;}
.y4d_c00096{bottom:421.687281px;}
.y4e_c00096{bottom:422.396052px;}
.y4f_c00096{bottom:422.619945px;}
.y42_c00096{bottom:436.025853px;}
.y43_c00096{bottom:436.798884px;}
.y44_c00096{bottom:437.788446px;}
.y45_c00096{bottom:437.993550px;}
.y46_c00096{bottom:438.843393px;}
.y47_c00096{bottom:439.719705px;}
.y3a_c00096{bottom:453.309654px;}
.y3b_c00096{bottom:454.193130px;}
.y3c_c00096{bottom:454.619028px;}
.y3d_c00096{bottom:455.501613px;}
.y3e_c00096{bottom:455.897814px;}
.y3f_c00096{bottom:456.477465px;}
.y40_c00096{bottom:456.943329px;}
.y41_c00096{bottom:457.633779px;}
.y33_c00096{bottom:469.246233px;}
.y34_c00096{bottom:470.566860px;}
.y35_c00096{bottom:471.074946px;}
.y36_c00096{bottom:472.054269px;}
.y37_c00096{bottom:473.026332px;}
.y38_c00096{bottom:473.438130px;}
.y39_c00096{bottom:474.204945px;}
.y2c_c00096{bottom:485.721291px;}
.y2d_c00096{bottom:487.819983px;}
.y2e_c00096{bottom:489.150138px;}
.y2f_c00096{bottom:489.987972px;}
.y30_c00096{bottom:490.470675px;}
.y31_c00096{bottom:491.563554px;}
.y32_c00096{bottom:491.826321px;}
.y22_c00096{bottom:504.350622px;}
.y23_c00096{bottom:504.873969px;}
.y24_c00096{bottom:505.549794px;}
.y25_c00096{bottom:505.877952px;}
.y26_c00096{bottom:506.626047px;}
.y27_c00096{bottom:506.918838px;}
.y28_c00096{bottom:508.069572px;}
.y29_c00096{bottom:508.376871px;}
.y2a_c00096{bottom:509.140116px;}
.y2b_c00096{bottom:509.658282px;}
.y19_c00096{bottom:521.366538px;}
.y1a_c00096{bottom:521.774124px;}
.y1b_c00096{bottom:522.114453px;}
.y1c_c00096{bottom:523.448046px;}
.y1d_c00096{bottom:524.801028px;}
.y1e_c00096{bottom:525.227937px;}
.y1f_c00096{bottom:525.572457px;}
.y20_c00096{bottom:526.595307px;}
.y21_c00096{bottom:526.980501px;}
.y10_c00096{bottom:539.726940px;}
.y11_c00096{bottom:540.692061px;}
.y12_c00096{bottom:541.712400px;}
.y13_c00096{bottom:542.258454px;}
.y14_c00096{bottom:542.579793px;}
.y15_c00096{bottom:543.185604px;}
.y16_c00096{bottom:543.873432px;}
.y17_c00096{bottom:544.665672px;}
.y18_c00096{bottom:544.951431px;}
.y8_c00096{bottom:556.471035px;}
.y9_c00096{bottom:556.794468px;}
.ya_c00096{bottom:557.259171px;}
.yb_c00096{bottom:558.599088px;}
.yc_c00096{bottom:559.080342px;}
.yd_c00096{bottom:560.030952px;}
.ye_c00096{bottom:561.035655px;}
.yf_c00096{bottom:561.543510px;}
.y1_c00096{bottom:573.756000px;}
.y2_c00096{bottom:574.508103px;}
.y3_c00096{bottom:575.058378px;}
.y4_c00096{bottom:576.388311px;}
.y5_c00096{bottom:577.825890px;}
.y6_c00096{bottom:578.254395px;}
.y7_c00096{bottom:579.568125px;}
.ha_c00096{height:58.814228px;}
.he_c00096{height:59.864482px;}
.h9_c00096{height:60.914736px;}
.h4_c00096{height:61.964990px;}
.hf_c00096{height:63.015244px;}
.h7_c00096{height:65.115752px;}
.h6_c00096{height:67.216260px;}
.hb_c00096{height:68.266515px;}
.h8_c00096{height:69.316769px;}
.hc_c00096{height:70.367023px;}
.h3_c00096{height:72.467531px;}
.h5_c00096{height:73.517785px;}
.hd_c00096{height:76.668547px;}
.h2_c00096{height:81.919817px;}
.h1_c00096{height:627.750000px;}
.h0_c00096{height:628.020000px;}
.w0_c00096{width:371.790000px;}
.w1_c00096{width:372.000000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:24.861000px;}
.xf_c00096{left:25.879770px;}
.x2b_c00096{left:27.011643px;}
.x3c_c00096{left:28.491099px;}
.x4c_c00096{left:29.554491px;}
.x60_c00096{left:31.316604px;}
.x66_c00096{left:32.399607px;}
.x49_c00096{left:33.712017px;}
.x7b_c00096{left:34.831014px;}
.x7e_c00096{left:36.887781px;}
.x8_c00096{left:41.285919px;}
.x75_c00096{left:43.203135px;}
.x18_c00096{left:46.156350px;}
.x56_c00096{left:50.492898px;}
.x83_c00096{left:53.730582px;}
.x1f_c00096{left:55.479984px;}
.x3d_c00096{left:56.553897px;}
.x2_c00096{left:59.047500px;}
.x19_c00096{left:62.376213px;}
.x9_c00096{left:64.523442px;}
.x6d_c00096{left:66.968259px;}
.x68_c00096{left:69.668103px;}
.x10_c00096{left:76.638603px;}
.x5d_c00096{left:78.848859px;}
.x44_c00096{left:80.467992px;}
.x3_c00096{left:84.060000px;}
.x4d_c00096{left:85.985907px;}
.x34_c00096{left:87.374841px;}
.x41_c00096{left:89.466483px;}
.x77_c00096{left:91.003593px;}
.x20_c00096{left:93.020784px;}
.x57_c00096{left:95.324079px;}
.x69_c00096{left:99.915222px;}
.x3e_c00096{left:101.615787px;}
.x50_c00096{left:102.884421px;}
.x7c_c00096{left:106.127499px;}
.x5e_c00096{left:107.205087px;}
.x21_c00096{left:111.211368px;}
.x2f_c00096{left:113.047407px;}
.x58_c00096{left:116.389776px;}
.x28_c00096{left:117.772125px;}
.x78_c00096{left:119.089689px;}
.x6a_c00096{left:120.710787px;}
.x51_c00096{left:123.139722px;}
.x38_c00096{left:124.627026px;}
.x1a_c00096{left:125.859099px;}
.x11_c00096{left:130.316634px;}
.xa_c00096{left:131.499879px;}
.x59_c00096{left:132.593130px;}
.x67_c00096{left:136.104267px;}
.x71_c00096{left:142.046505px;}
.x4_c00096{left:144.511500px;}
.x84_c00096{left:146.903160px;}
.x22_c00096{left:152.787531px;}
.xb_c00096{left:155.557935px;}
.x45_c00096{left:156.896952px;}
.x12_c00096{left:159.025515px;}
.x35_c00096{left:163.460889px;}
.x63_c00096{left:166.081239px;}
.x2c_c00096{left:167.405814px;}
.x23_c00096{left:169.029450px;}
.x7d_c00096{left:170.133453px;}
.x30_c00096{left:171.923982px;}
.x42_c00096{left:173.488311px;}
.x13_c00096{left:175.951137px;}
.x36_c00096{left:179.195991px;}
.x5a_c00096{left:183.905946px;}
.x6b_c00096{left:186.606165px;}
.x52_c00096{left:187.685940px;}
.x1b_c00096{left:190.291518px;}
.x61_c00096{left:196.867695px;}
.x31_c00096{left:198.323541px;}
.x5b_c00096{left:200.109300px;}
.x39_c00096{left:201.262389px;}
.xc_c00096{left:203.065014px;}
.x14_c00096{left:207.853749px;}
.x5_c00096{left:209.856000px;}
.x29_c00096{left:212.019546px;}
.x53_c00096{left:214.963140px;}
.x2d_c00096{left:216.024459px;}
.x7f_c00096{left:217.872114px;}
.x4e_c00096{left:218.881986px;}
.x46_c00096{left:220.631307px;}
.x81_c00096{left:221.982168px;}
.x5f_c00096{left:223.062621px;}
.x1c_c00096{left:227.061843px;}
.x6_c00096{left:229.333500px;}
.x54_c00096{left:231.436626px;}
.x24_c00096{left:232.932060px;}
.x85_c00096{left:234.944763px;}
.x2e_c00096{left:236.584350px;}
.x3f_c00096{left:238.594419px;}
.x6e_c00096{left:240.080013px;}
.x15_c00096{left:244.030125px;}
.x80_c00096{left:245.479599px;}
.x25_c00096{left:250.038078px;}
.xd_c00096{left:253.303725px;}
.x4a_c00096{left:254.349537px;}
.x6c_c00096{left:255.472962px;}
.x47_c00096{left:257.900325px;}
.x79_c00096{left:260.064867px;}
.x72_c00096{left:261.956019px;}
.x6f_c00096{left:263.575365px;}
.x64_c00096{left:266.005584px;}
.x32_c00096{left:268.016766px;}
.x7a_c00096{left:270.867975px;}
.x73_c00096{left:273.568629px;}
.x1d_c00096{left:275.737899px;}
.xe_c00096{left:278.707347px;}
.x2a_c00096{left:280.499028px;}
.x55_c00096{left:281.939046px;}
.x40_c00096{left:283.983408px;}
.x16_c00096{left:285.702864px;}
.x3a_c00096{left:287.432331px;}
.x7_c00096{left:289.048500px;}
.x74_c00096{left:290.312214px;}
.x76_c00096{left:291.393222px;}
.x26_c00096{left:292.439307px;}
.x1e_c00096{left:294.065295px;}
.x43_c00096{left:298.533072px;}
.x17_c00096{left:300.738354px;}
.x62_c00096{left:303.273675px;}
.x3b_c00096{left:306.067923px;}
.x65_c00096{left:308.675742px;}
.x4b_c00096{left:310.441266px;}
.x37_c00096{left:312.024792px;}
.x33_c00096{left:313.998828px;}
.x5c_c00096{left:315.426570px;}
.x4f_c00096{left:319.555551px;}
.x27_c00096{left:321.244848px;}
.x70_c00096{left:323.259240px;}
.x48_c00096{left:324.876231px;}
.x82_c00096{left:334.329519px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.fs8_c00096{font-size:52.279314pt;}
.fsc_c00096{font-size:53.212873pt;}
.fs7_c00096{font-size:54.146432pt;}
.fs2_c00096{font-size:55.079991pt;}
.fsd_c00096{font-size:56.013550pt;}
.fs5_c00096{font-size:57.880669pt;}
.fs4_c00096{font-size:59.747787pt;}
.fs9_c00096{font-size:60.681346pt;}
.fs6_c00096{font-size:61.614905pt;}
.fsa_c00096{font-size:62.548465pt;}
.fs1_c00096{font-size:64.415583pt;}
.fs3_c00096{font-size:65.349142pt;}
.fsb_c00096{font-size:68.149820pt;}
.fs0_c00096{font-size:72.817615pt;}
.y0_c00096{bottom:0.000000pt;}
.yf2_c00096{bottom:34.133440pt;}
.yec_c00096{bottom:34.133496pt;}
.yf1_c00096{bottom:34.133603pt;}
.yf4_c00096{bottom:34.133616pt;}
.yee_c00096{bottom:34.133712pt;}
.yf0_c00096{bottom:34.133904pt;}
.yef_c00096{bottom:34.133997pt;}
.yf3_c00096{bottom:34.134005pt;}
.yed_c00096{bottom:34.134077pt;}
.ye8_c00096{bottom:49.506728pt;}
.ye9_c00096{bottom:49.506933pt;}
.ye6_c00096{bottom:49.507027pt;}
.ye7_c00096{bottom:49.507128pt;}
.yeb_c00096{bottom:49.507461pt;}
.yea_c00096{bottom:49.507509pt;}
.ye5_c00096{bottom:65.431619pt;}
.ye4_c00096{bottom:65.431829pt;}
.ye3_c00096{bottom:65.432355pt;}
.ye2_c00096{bottom:65.432483pt;}
.ye0_c00096{bottom:65.432613pt;}
.ye1_c00096{bottom:65.432853pt;}
.ydf_c00096{bottom:79.942517pt;}
.yde_c00096{bottom:80.166253pt;}
.ydd_c00096{bottom:80.292733pt;}
.ydc_c00096{bottom:80.956267pt;}
.ydb_c00096{bottom:81.215603pt;}
.yda_c00096{bottom:81.403435pt;}
.yd9_c00096{bottom:81.993563pt;}
.yd8_c00096{bottom:82.224131pt;}
.yd7_c00096{bottom:96.322483pt;}
.yd1_c00096{bottom:96.322749pt;}
.yd6_c00096{bottom:96.322931pt;}
.yd4_c00096{bottom:96.322984pt;}
.yd2_c00096{bottom:96.323029pt;}
.yd5_c00096{bottom:96.323384pt;}
.yd3_c00096{bottom:96.323605pt;}
.ycb_c00096{bottom:111.852949pt;}
.ycc_c00096{bottom:111.853344pt;}
.ycd_c00096{bottom:111.853584pt;}
.yce_c00096{bottom:111.853787pt;}
.ycf_c00096{bottom:111.853949pt;}
.yd0_c00096{bottom:111.854531pt;}
.yc7_c00096{bottom:127.351208pt;}
.yc6_c00096{bottom:127.351355pt;}
.yc5_c00096{bottom:127.351715pt;}
.yc8_c00096{bottom:127.351816pt;}
.yca_c00096{bottom:127.351885pt;}
.yc4_c00096{bottom:127.352056pt;}
.yc9_c00096{bottom:127.352203pt;}
.yc3_c00096{bottom:142.057680pt;}
.yc2_c00096{bottom:142.058331pt;}
.yc1_c00096{bottom:142.058933pt;}
.ybb_c00096{bottom:142.059184pt;}
.ybd_c00096{bottom:142.059197pt;}
.ybe_c00096{bottom:142.059243pt;}
.ybf_c00096{bottom:142.059256pt;}
.ybc_c00096{bottom:142.059285pt;}
.yc0_c00096{bottom:142.059435pt;}
.yb6_c00096{bottom:158.812355pt;}
.yb7_c00096{bottom:158.812387pt;}
.yb5_c00096{bottom:158.812389pt;}
.yb4_c00096{bottom:158.812624pt;}
.yb8_c00096{bottom:158.812701pt;}
.yba_c00096{bottom:158.812875pt;}
.yb2_c00096{bottom:158.813176pt;}
.yb3_c00096{bottom:158.813261pt;}
.yb9_c00096{bottom:158.813307pt;}
.yaf_c00096{bottom:173.968128pt;}
.yab_c00096{bottom:173.968341pt;}
.yaa_c00096{bottom:173.968469pt;}
.yae_c00096{bottom:173.968483pt;}
.ya9_c00096{bottom:173.968563pt;}
.yb1_c00096{bottom:173.968624pt;}
.yac_c00096{bottom:173.968675pt;}
.yb0_c00096{bottom:173.968704pt;}
.yad_c00096{bottom:173.968925pt;}
.ya0_c00096{bottom:187.669965pt;}
.ya4_c00096{bottom:187.670280pt;}
.ya1_c00096{bottom:187.670536pt;}
.ya5_c00096{bottom:187.670885pt;}
.ya3_c00096{bottom:187.670888pt;}
.ya2_c00096{bottom:187.671083pt;}
.ya6_c00096{bottom:187.671349pt;}
.ya7_c00096{bottom:187.671629pt;}
.ya8_c00096{bottom:187.671957pt;}
.y98_c00096{bottom:203.899267pt;}
.y99_c00096{bottom:203.899333pt;}
.y9b_c00096{bottom:203.899621pt;}
.y9a_c00096{bottom:203.899904pt;}
.y9f_c00096{bottom:203.899960pt;}
.y9c_c00096{bottom:203.899973pt;}
.y9e_c00096{bottom:203.900019pt;}
.y9d_c00096{bottom:203.900176pt;}
.y97_c00096{bottom:219.847101pt;}
.y96_c00096{bottom:219.847733pt;}
.y93_c00096{bottom:219.847899pt;}
.y94_c00096{bottom:219.847936pt;}
.y92_c00096{bottom:219.847992pt;}
.y95_c00096{bottom:219.848365pt;}
.y91_c00096{bottom:219.848392pt;}
.y8f_c00096{bottom:235.347165pt;}
.y8c_c00096{bottom:235.347349pt;}
.y90_c00096{bottom:235.347677pt;}
.y8e_c00096{bottom:235.347840pt;}
.y8d_c00096{bottom:235.347856pt;}
.y8a_c00096{bottom:235.347979pt;}
.y8b_c00096{bottom:235.347992pt;}
.y86_c00096{bottom:250.637365pt;}
.y87_c00096{bottom:250.637512pt;}
.y85_c00096{bottom:250.637779pt;}
.y88_c00096{bottom:250.637928pt;}
.y84_c00096{bottom:250.638227pt;}
.y89_c00096{bottom:250.638565pt;}
.y80_c00096{bottom:266.512960pt;}
.y82_c00096{bottom:266.513053pt;}
.y81_c00096{bottom:266.513112pt;}
.y7e_c00096{bottom:266.513283pt;}
.y7f_c00096{bottom:266.513581pt;}
.y83_c00096{bottom:266.513629pt;}
.y7b_c00096{bottom:266.513877pt;}
.y7d_c00096{bottom:266.513904pt;}
.y7a_c00096{bottom:266.514072pt;}
.y7c_c00096{bottom:266.514152pt;}
.y78_c00096{bottom:282.837184pt;}
.y79_c00096{bottom:282.837643pt;}
.y75_c00096{bottom:282.837736pt;}
.y74_c00096{bottom:282.837824pt;}
.y77_c00096{bottom:282.837859pt;}
.y72_c00096{bottom:282.837963pt;}
.y76_c00096{bottom:282.838029pt;}
.y73_c00096{bottom:282.838392pt;}
.y6c_c00096{bottom:296.357717pt;}
.y6d_c00096{bottom:296.592256pt;}
.y6e_c00096{bottom:296.858307pt;}
.y6f_c00096{bottom:297.444107pt;}
.y70_c00096{bottom:298.039144pt;}
.y71_c00096{bottom:298.934019pt;}
.y65_c00096{bottom:310.283051pt;}
.y66_c00096{bottom:311.833928pt;}
.y67_c00096{bottom:312.622605pt;}
.y68_c00096{bottom:313.229432pt;}
.y69_c00096{bottom:314.010789pt;}
.y6a_c00096{bottom:314.378512pt;}
.y6b_c00096{bottom:314.956955pt;}
.y62_c00096{bottom:326.437741pt;}
.y64_c00096{bottom:326.437989pt;}
.y5f_c00096{bottom:326.438096pt;}
.y63_c00096{bottom:326.438205pt;}
.y5e_c00096{bottom:326.438379pt;}
.y61_c00096{bottom:326.438392pt;}
.y60_c00096{bottom:326.438651pt;}
.y57_c00096{bottom:341.727971pt;}
.y58_c00096{bottom:342.318997pt;}
.y59_c00096{bottom:343.140360pt;}
.y5a_c00096{bottom:343.306011pt;}
.y5b_c00096{bottom:343.834509pt;}
.y5c_c00096{bottom:344.066387pt;}
.y5d_c00096{bottom:344.362421pt;}
.y50_c00096{bottom:357.331763pt;}
.y51_c00096{bottom:357.605747pt;}
.y52_c00096{bottom:357.801741pt;}
.y53_c00096{bottom:358.046744pt;}
.y54_c00096{bottom:358.557155pt;}
.y55_c00096{bottom:359.386123pt;}
.y56_c00096{bottom:359.829515pt;}
.y48_c00096{bottom:372.695584pt;}
.y49_c00096{bottom:373.608493pt;}
.y4a_c00096{bottom:373.726776pt;}
.y4b_c00096{bottom:374.543760pt;}
.y4c_c00096{bottom:374.668221pt;}
.y4d_c00096{bottom:374.833139pt;}
.y4e_c00096{bottom:375.463157pt;}
.y4f_c00096{bottom:375.662173pt;}
.y42_c00096{bottom:387.578536pt;}
.y43_c00096{bottom:388.265675pt;}
.y44_c00096{bottom:389.145285pt;}
.y45_c00096{bottom:389.327600pt;}
.y46_c00096{bottom:390.083016pt;}
.y47_c00096{bottom:390.861960pt;}
.y3a_c00096{bottom:402.941915pt;}
.y3b_c00096{bottom:403.727227pt;}
.y3c_c00096{bottom:404.105803pt;}
.y3d_c00096{bottom:404.890323pt;}
.y3e_c00096{bottom:405.242501pt;}
.y3f_c00096{bottom:405.757747pt;}
.y40_c00096{bottom:406.171848pt;}
.y41_c00096{bottom:406.785581pt;}
.y33_c00096{bottom:417.107763pt;}
.y34_c00096{bottom:418.281653pt;}
.y35_c00096{bottom:418.733285pt;}
.y36_c00096{bottom:419.603795pt;}
.y37_c00096{bottom:420.467851pt;}
.y38_c00096{bottom:420.833893pt;}
.y39_c00096{bottom:421.515507pt;}
.y2c_c00096{bottom:431.752259pt;}
.y2d_c00096{bottom:433.617763pt;}
.y2e_c00096{bottom:434.800123pt;}
.y2f_c00096{bottom:435.544864pt;}
.y30_c00096{bottom:435.973933pt;}
.y31_c00096{bottom:436.945381pt;}
.y32_c00096{bottom:437.178952pt;}
.y22_c00096{bottom:448.311664pt;}
.y23_c00096{bottom:448.776861pt;}
.y24_c00096{bottom:449.377595pt;}
.y25_c00096{bottom:449.669291pt;}
.y26_c00096{bottom:450.334264pt;}
.y27_c00096{bottom:450.594523pt;}
.y28_c00096{bottom:451.617397pt;}
.y29_c00096{bottom:451.890552pt;}
.y2a_c00096{bottom:452.568992pt;}
.y2b_c00096{bottom:453.029584pt;}
.y19_c00096{bottom:463.436923pt;}
.y1a_c00096{bottom:463.799221pt;}
.y1b_c00096{bottom:464.101736pt;}
.y1c_c00096{bottom:465.287152pt;}
.y1d_c00096{bottom:466.489803pt;}
.y1e_c00096{bottom:466.869277pt;}
.y1f_c00096{bottom:467.175517pt;}
.y20_c00096{bottom:468.084717pt;}
.y21_c00096{bottom:468.427112pt;}
.y10_c00096{bottom:479.757280pt;}
.y11_c00096{bottom:480.615165pt;}
.y12_c00096{bottom:481.522133pt;}
.y13_c00096{bottom:482.007515pt;}
.y14_c00096{bottom:482.293149pt;}
.y15_c00096{bottom:482.831648pt;}
.y16_c00096{bottom:483.443051pt;}
.y17_c00096{bottom:484.147264pt;}
.y18_c00096{bottom:484.401272pt;}
.y8_c00096{bottom:494.640920pt;}
.y9_c00096{bottom:494.928416pt;}
.ya_c00096{bottom:495.341485pt;}
.yb_c00096{bottom:496.532523pt;}
.yc_c00096{bottom:496.960304pt;}
.yd_c00096{bottom:497.805291pt;}
.ye_c00096{bottom:498.698360pt;}
.yf_c00096{bottom:499.149787pt;}
.y1_c00096{bottom:510.005333pt;}
.y2_c00096{bottom:510.673869pt;}
.y3_c00096{bottom:511.163003pt;}
.y4_c00096{bottom:512.345165pt;}
.y5_c00096{bottom:513.623013pt;}
.y6_c00096{bottom:514.003907pt;}
.y7_c00096{bottom:515.171667pt;}
.ha_c00096{height:52.279314pt;}
.he_c00096{height:53.212873pt;}
.h9_c00096{height:54.146432pt;}
.h4_c00096{height:55.079991pt;}
.hf_c00096{height:56.013550pt;}
.h7_c00096{height:57.880669pt;}
.h6_c00096{height:59.747787pt;}
.hb_c00096{height:60.681346pt;}
.h8_c00096{height:61.614905pt;}
.hc_c00096{height:62.548465pt;}
.h3_c00096{height:64.415583pt;}
.h5_c00096{height:65.349142pt;}
.hd_c00096{height:68.149820pt;}
.h2_c00096{height:72.817615pt;}
.h1_c00096{height:558.000000pt;}
.h0_c00096{height:558.240000pt;}
.w0_c00096{width:330.480000pt;}
.w1_c00096{width:330.666667pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:22.098667pt;}
.xf_c00096{left:23.004240pt;}
.x2b_c00096{left:24.010349pt;}
.x3c_c00096{left:25.325421pt;}
.x4c_c00096{left:26.270659pt;}
.x60_c00096{left:27.836981pt;}
.x66_c00096{left:28.799651pt;}
.x49_c00096{left:29.966237pt;}
.x7b_c00096{left:30.960901pt;}
.x7e_c00096{left:32.789139pt;}
.x8_c00096{left:36.698595pt;}
.x75_c00096{left:38.402787pt;}
.x18_c00096{left:41.027867pt;}
.x56_c00096{left:44.882576pt;}
.x83_c00096{left:47.760517pt;}
.x1f_c00096{left:49.315541pt;}
.x3d_c00096{left:50.270131pt;}
.x2_c00096{left:52.486667pt;}
.x19_c00096{left:55.445523pt;}
.x9_c00096{left:57.354171pt;}
.x6d_c00096{left:59.527341pt;}
.x68_c00096{left:61.927203pt;}
.x10_c00096{left:68.123203pt;}
.x5d_c00096{left:70.087875pt;}
.x44_c00096{left:71.527104pt;}
.x3_c00096{left:74.720000pt;}
.x4d_c00096{left:76.431917pt;}
.x34_c00096{left:77.666525pt;}
.x41_c00096{left:79.525763pt;}
.x77_c00096{left:80.892083pt;}
.x20_c00096{left:82.685141pt;}
.x57_c00096{left:84.732515pt;}
.x69_c00096{left:88.813531pt;}
.x3e_c00096{left:90.325144pt;}
.x50_c00096{left:91.452819pt;}
.x7c_c00096{left:94.335555pt;}
.x5e_c00096{left:95.293411pt;}
.x21_c00096{left:98.854549pt;}
.x2f_c00096{left:100.486584pt;}
.x58_c00096{left:103.457579pt;}
.x28_c00096{left:104.686333pt;}
.x78_c00096{left:105.857501pt;}
.x6a_c00096{left:107.298477pt;}
.x51_c00096{left:109.457531pt;}
.x38_c00096{left:110.779579pt;}
.x1a_c00096{left:111.874755pt;}
.x11_c00096{left:115.837008pt;}
.xa_c00096{left:116.888781pt;}
.x59_c00096{left:117.860560pt;}
.x67_c00096{left:120.981571pt;}
.x71_c00096{left:126.263560pt;}
.x4_c00096{left:128.454667pt;}
.x84_c00096{left:130.580587pt;}
.x22_c00096{left:135.811139pt;}
.xb_c00096{left:138.273720pt;}
.x45_c00096{left:139.463957pt;}
.x12_c00096{left:141.356013pt;}
.x35_c00096{left:145.298568pt;}
.x63_c00096{left:147.627768pt;}
.x2c_c00096{left:148.805168pt;}
.x23_c00096{left:150.248400pt;}
.x7d_c00096{left:151.229736pt;}
.x30_c00096{left:152.821317pt;}
.x42_c00096{left:154.211832pt;}
.x13_c00096{left:156.401011pt;}
.x36_c00096{left:159.285325pt;}
.x5a_c00096{left:163.471952pt;}
.x6b_c00096{left:165.872147pt;}
.x52_c00096{left:166.831947pt;}
.x1b_c00096{left:169.148016pt;}
.x61_c00096{left:174.993507pt;}
.x31_c00096{left:176.287592pt;}
.x5b_c00096{left:177.874933pt;}
.x39_c00096{left:178.899901pt;}
.xc_c00096{left:180.502235pt;}
.x14_c00096{left:184.758888pt;}
.x5_c00096{left:186.538667pt;}
.x29_c00096{left:188.461819pt;}
.x53_c00096{left:191.078347pt;}
.x2d_c00096{left:192.021741pt;}
.x7f_c00096{left:193.664101pt;}
.x4e_c00096{left:194.561765pt;}
.x46_c00096{left:196.116717pt;}
.x81_c00096{left:197.317483pt;}
.x5f_c00096{left:198.277885pt;}
.x1c_c00096{left:201.832749pt;}
.x6_c00096{left:203.852000pt;}
.x54_c00096{left:205.721445pt;}
.x24_c00096{left:207.050720pt;}
.x85_c00096{left:208.839789pt;}
.x2e_c00096{left:210.297200pt;}
.x3f_c00096{left:212.083928pt;}
.x6e_c00096{left:213.404456pt;}
.x15_c00096{left:216.915667pt;}
.x80_c00096{left:218.204088pt;}
.x25_c00096{left:222.256069pt;}
.xd_c00096{left:225.158867pt;}
.x4a_c00096{left:226.088477pt;}
.x6c_c00096{left:227.087077pt;}
.x47_c00096{left:229.244733pt;}
.x79_c00096{left:231.168771pt;}
.x72_c00096{left:232.849795pt;}
.x6f_c00096{left:234.289213pt;}
.x64_c00096{left:236.449408pt;}
.x32_c00096{left:238.237125pt;}
.x7a_c00096{left:240.771533pt;}
.x73_c00096{left:243.172115pt;}
.x1d_c00096{left:245.100355pt;}
.xe_c00096{left:247.739864pt;}
.x2a_c00096{left:249.332469pt;}
.x55_c00096{left:250.612485pt;}
.x40_c00096{left:252.429696pt;}
.x16_c00096{left:253.958101pt;}
.x3a_c00096{left:255.495405pt;}
.x7_c00096{left:256.932000pt;}
.x74_c00096{left:258.055301pt;}
.x76_c00096{left:259.016197pt;}
.x26_c00096{left:259.946051pt;}
.x1e_c00096{left:261.391373pt;}
.x43_c00096{left:265.362731pt;}
.x17_c00096{left:267.322981pt;}
.x62_c00096{left:269.576600pt;}
.x3b_c00096{left:272.060376pt;}
.x65_c00096{left:274.378437pt;}
.x4b_c00096{left:275.947792pt;}
.x37_c00096{left:277.355371pt;}
.x33_c00096{left:279.110069pt;}
.x5c_c00096{left:280.379173pt;}
.x4f_c00096{left:284.049379pt;}
.x27_c00096{left:285.550976pt;}
.x70_c00096{left:287.341547pt;}
.x48_c00096{left:288.778872pt;}
.x82_c00096{left:297.181795pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00097 {
    display:none;
  }
  .loading-indicator_c00097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00097 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00097 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00097" -> "#page-container .classname_c00097")
 */
.pf_c00097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00097 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00097 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00097 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00097 {overflow:visible;}
  }
}
.c_c00097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00097 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00097:after { /* webkit #35443 */
  content: '';
}
.t_c00097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00097 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00097 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00097 { /* info for Javascript */
  display:none;
}
.l_c00097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00097:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00097 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00097.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m102_c00097{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.m100_c00097{transform:matrix(0.054760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054760,0.000000,0.000000,0.250000,0,0);}
.m7b_c00097{transform:matrix(0.094599,0.001987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.094599,0.001987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.094599,0.001987,-0.005249,0.249945,0,0);}
.m53_c00097{transform:matrix(0.109702,0.001975,-0.004499,0.249960,0,0);-ms-transform:matrix(0.109702,0.001975,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.109702,0.001975,-0.004499,0.249960,0,0);}
.m6f_c00097{transform:matrix(0.139809,0.002936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.139809,0.002936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.139809,0.002936,-0.005249,0.249945,0,0);}
.maf_c00097{transform:matrix(0.139819,0.003775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.139819,0.003775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.139819,0.003775,-0.006748,0.249909,0,0);}
.ma5_c00097{transform:matrix(0.142283,0.003842,-0.006748,0.249909,0,0);-ms-transform:matrix(0.142283,0.003842,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.142283,0.003842,-0.006748,0.249909,0,0);}
.m15_c00097{transform:matrix(0.144141,0.002883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144141,0.002883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144141,0.002883,-0.004999,0.249950,0,0);}
.mbe_c00097{transform:matrix(0.146517,0.003956,-0.006748,0.249909,0,0);-ms-transform:matrix(0.146517,0.003956,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.146517,0.003956,-0.006748,0.249909,0,0);}
.m47_c00097{transform:matrix(0.148065,0.002961,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148065,0.002961,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148065,0.002961,-0.004999,0.249950,0,0);}
.m86_c00097{transform:matrix(0.149827,0.003146,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149827,0.003146,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149827,0.003146,-0.005249,0.249945,0,0);}
.m17_c00097{transform:matrix(0.150105,0.003002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150105,0.003002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150105,0.003002,-0.004999,0.249950,0,0);}
.md0_c00097{transform:matrix(0.150300,0.004058,-0.006748,0.249909,0,0);-ms-transform:matrix(0.150300,0.004058,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.150300,0.004058,-0.006748,0.249909,0,0);}
.m3b_c00097{transform:matrix(0.152310,0.003046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152310,0.003046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152310,0.003046,-0.004999,0.249950,0,0);}
.ma6_c00097{transform:matrix(0.152699,0.004123,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152699,0.004123,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152699,0.004123,-0.006748,0.249909,0,0);}
.me0_c00097{transform:matrix(0.152899,0.004128,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152899,0.004128,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152899,0.004128,-0.006748,0.249909,0,0);}
.m30_c00097{transform:matrix(0.153019,0.003060,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153019,0.003060,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153019,0.003060,-0.004999,0.249950,0,0);}
.ma1_c00097{transform:matrix(0.153724,0.004151,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153724,0.004151,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153724,0.004151,-0.006748,0.249909,0,0);}
.m9f_c00097{transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);}
.mb4_c00097{transform:matrix(0.154469,0.004171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154469,0.004171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154469,0.004171,-0.006748,0.249909,0,0);}
.m72_c00097{transform:matrix(0.155881,0.003273,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155881,0.003273,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155881,0.003273,-0.005249,0.249945,0,0);}
.m76_c00097{transform:matrix(0.157485,0.003307,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157485,0.003307,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157485,0.003307,-0.005249,0.249945,0,0);}
.m8b_c00097{transform:matrix(0.158540,0.003329,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158540,0.003329,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158540,0.003329,-0.005249,0.249945,0,0);}
.m13_c00097{transform:matrix(0.158803,0.003176,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158803,0.003176,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158803,0.003176,-0.004999,0.249950,0,0);}
.m73_c00097{transform:matrix(0.158890,0.003337,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158890,0.003337,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158890,0.003337,-0.005249,0.249945,0,0);}
.mad_c00097{transform:matrix(0.160107,0.004323,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160107,0.004323,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160107,0.004323,-0.006748,0.249909,0,0);}
.me7_c00097{transform:matrix(0.160212,0.004326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160212,0.004326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160212,0.004326,-0.006748,0.249909,0,0);}
.m5e_c00097{transform:matrix(0.160600,0.003373,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160600,0.003373,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160600,0.003373,-0.005249,0.249945,0,0);}
.m71_c00097{transform:matrix(0.161509,0.003392,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161509,0.003392,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161509,0.003392,-0.005249,0.249945,0,0);}
.m8e_c00097{transform:matrix(0.161629,0.003394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161629,0.003394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161629,0.003394,-0.005249,0.249945,0,0);}
.m6e_c00097{transform:matrix(0.162194,0.003406,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162194,0.003406,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162194,0.003406,-0.005249,0.249945,0,0);}
.m74_c00097{transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);}
.m0_c00097{transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.163202,0.003264,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163202,0.003264,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163202,0.003264,-0.004999,0.249950,0,0);}
.md4_c00097{transform:matrix(0.164130,0.004432,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164130,0.004432,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164130,0.004432,-0.006748,0.249909,0,0);}
.m5d_c00097{transform:matrix(0.164609,0.003457,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164609,0.003457,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164609,0.003457,-0.005249,0.249945,0,0);}
.m5a_c00097{transform:matrix(0.166383,0.002995,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166383,0.002995,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166383,0.002995,-0.004499,0.249960,0,0);}
.m7e_c00097{transform:matrix(0.166753,0.003502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166753,0.003502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166753,0.003502,-0.005249,0.249945,0,0);}
.mfc_c00097{transform:matrix(0.166769,0.004503,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166769,0.004503,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166769,0.004503,-0.006748,0.249909,0,0);}
.md6_c00097{transform:matrix(0.167449,0.004521,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167449,0.004521,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167449,0.004521,-0.006748,0.249909,0,0);}
.m9a_c00097{transform:matrix(0.168108,0.004371,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168108,0.004371,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168108,0.004371,-0.006498,0.249916,0,0);}
.mb3_c00097{transform:matrix(0.168664,0.004554,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168664,0.004554,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168664,0.004554,-0.006748,0.249909,0,0);}
.m9_c00097{transform:matrix(0.169396,0.003388,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169396,0.003388,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169396,0.003388,-0.004999,0.249950,0,0);}
.m7a_c00097{transform:matrix(0.169768,0.003565,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169768,0.003565,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169768,0.003565,-0.005249,0.249945,0,0);}
.m9c_c00097{transform:matrix(0.170088,0.004592,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170088,0.004592,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170088,0.004592,-0.006748,0.249909,0,0);}
.m6_c00097{transform:matrix(0.170266,0.003405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170266,0.003405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170266,0.003405,-0.004999,0.249950,0,0);}
.m8c_c00097{transform:matrix(0.170407,0.003579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170407,0.003579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170407,0.003579,-0.005249,0.249945,0,0);}
.m2d_c00097{transform:matrix(0.170441,0.003409,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170441,0.003409,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170441,0.003409,-0.004999,0.249950,0,0);}
.me5_c00097{transform:matrix(0.172622,0.004661,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172622,0.004661,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172622,0.004661,-0.006748,0.249909,0,0);}
.m49_c00097{transform:matrix(0.173410,0.003468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173410,0.003468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173410,0.003468,-0.004999,0.249950,0,0);}
.mf2_c00097{transform:matrix(0.173507,0.004685,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173507,0.004685,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173507,0.004685,-0.006748,0.249909,0,0);}
.m6c_c00097{transform:matrix(0.174047,0.003655,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174047,0.003655,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174047,0.003655,-0.005249,0.249945,0,0);}
.m61_c00097{transform:matrix(0.174327,0.003661,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174327,0.003661,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174327,0.003661,-0.005249,0.249945,0,0);}
.mb_c00097{transform:matrix(0.174420,0.003488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174420,0.003488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174420,0.003488,-0.004999,0.249950,0,0);}
.me1_c00097{transform:matrix(0.174431,0.004710,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174431,0.004710,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174431,0.004710,-0.006748,0.249909,0,0);}
.m4b_c00097{transform:matrix(0.174920,0.003498,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174920,0.003498,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174920,0.003498,-0.004999,0.249950,0,0);}
.m70_c00097{transform:matrix(0.175186,0.003679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175186,0.003679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175186,0.003679,-0.005249,0.249945,0,0);}
.m2c_c00097{transform:matrix(0.176020,0.003520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176020,0.003520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176020,0.003520,-0.004999,0.249950,0,0);}
.m45_c00097{transform:matrix(0.176455,0.003529,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176455,0.003529,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176455,0.003529,-0.004999,0.249950,0,0);}
.ma2_c00097{transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);}
.m6d_c00097{transform:matrix(0.176651,0.003710,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176651,0.003710,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176651,0.003710,-0.005249,0.249945,0,0);}
.m37_c00097{transform:matrix(0.176760,0.003535,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176760,0.003535,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176760,0.003535,-0.004999,0.249950,0,0);}
.m31_c00097{transform:matrix(0.177205,0.003544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177205,0.003544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177205,0.003544,-0.004999,0.249950,0,0);}
.mef_c00097{transform:matrix(0.177340,0.004788,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177340,0.004788,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177340,0.004788,-0.006748,0.249909,0,0);}
.m94_c00097{transform:matrix(0.178670,0.004645,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178670,0.004645,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178670,0.004645,-0.006498,0.249916,0,0);}
.m1d_c00097{transform:matrix(0.179074,0.003581,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179074,0.003581,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179074,0.003581,-0.004999,0.249950,0,0);}
.mcf_c00097{transform:matrix(0.179565,0.004848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179565,0.004848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179565,0.004848,-0.006748,0.249909,0,0);}
.m23_c00097{transform:matrix(0.179624,0.003592,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179624,0.003592,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179624,0.003592,-0.004999,0.249950,0,0);}
.mc7_c00097{transform:matrix(0.179919,0.004858,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179919,0.004858,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179919,0.004858,-0.006748,0.249909,0,0);}
.mb6_c00097{transform:matrix(0.180139,0.004864,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180139,0.004864,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180139,0.004864,-0.006748,0.249909,0,0);}
.m33_c00097{transform:matrix(0.180479,0.003610,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180479,0.003610,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180479,0.003610,-0.004999,0.249950,0,0);}
.m8d_c00097{transform:matrix(0.180590,0.003792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180590,0.003792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180590,0.003792,-0.005249,0.249945,0,0);}
.m41_c00097{transform:matrix(0.180929,0.003619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180929,0.003619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180929,0.003619,-0.004999,0.249950,0,0);}
.m40_c00097{transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);}
.mff_c00097{transform:matrix(0.181594,0.004903,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181594,0.004903,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181594,0.004903,-0.006748,0.249909,0,0);}
.m4_c00097{transform:matrix(0.182039,0.003641,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182039,0.003641,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182039,0.003641,-0.004999,0.249950,0,0);}
.mee_c00097{transform:matrix(0.182164,0.004918,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182164,0.004918,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182164,0.004918,-0.006748,0.249909,0,0);}
.mc1_c00097{transform:matrix(0.182169,0.004919,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182169,0.004919,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182169,0.004919,-0.006748,0.249909,0,0);}
.md8_c00097{transform:matrix(0.183173,0.004946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183173,0.004946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183173,0.004946,-0.006748,0.249909,0,0);}
.m10_c00097{transform:matrix(0.183203,0.003664,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183203,0.003664,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183203,0.003664,-0.004999,0.249950,0,0);}
.m55_c00097{transform:matrix(0.183245,0.003298,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183245,0.003298,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183245,0.003298,-0.004499,0.249960,0,0);}
.m24_c00097{transform:matrix(0.183273,0.003665,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183273,0.003665,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183273,0.003665,-0.004999,0.249950,0,0);}
.m1_c00097{transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);}
.mf8_c00097{transform:matrix(0.183443,0.004953,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183443,0.004953,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183443,0.004953,-0.006748,0.249909,0,0);}
.m4c_c00097{transform:matrix(0.183458,0.003669,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183458,0.003669,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183458,0.003669,-0.004999,0.249950,0,0);}
.m19_c00097{transform:matrix(0.183628,0.003673,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183628,0.003673,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183628,0.003673,-0.004999,0.249950,0,0);}
.mbb_c00097{transform:matrix(0.183638,0.004958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183638,0.004958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183638,0.004958,-0.006748,0.249909,0,0);}
.m3f_c00097{transform:matrix(0.184113,0.003682,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184113,0.003682,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184113,0.003682,-0.004999,0.249950,0,0);}
.m12_c00097{transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184298,0.003686,-0.004999,0.249950,0,0);}
.mb0_c00097{transform:matrix(0.185862,0.005018,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185862,0.005018,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185862,0.005018,-0.006748,0.249909,0,0);}
.m88_c00097{transform:matrix(0.185934,0.003905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185934,0.003905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185934,0.003905,-0.005249,0.249945,0,0);}
.m97_c00097{transform:matrix(0.186297,0.004844,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186297,0.004844,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186297,0.004844,-0.006498,0.249916,0,0);}
.m2b_c00097{transform:matrix(0.186483,0.003730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186483,0.003730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186483,0.003730,-0.004999,0.249950,0,0);}
.mf9_c00097{transform:matrix(0.186487,0.005035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186487,0.005035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186487,0.005035,-0.006748,0.249909,0,0);}
.m77_c00097{transform:matrix(0.186769,0.003922,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186769,0.003922,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186769,0.003922,-0.005249,0.249945,0,0);}
.m26_c00097{transform:matrix(0.187118,0.003742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187118,0.003742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187118,0.003742,-0.004999,0.249950,0,0);}
.ma_c00097{transform:matrix(0.188312,0.003766,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188312,0.003766,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188312,0.003766,-0.004999,0.249950,0,0);}
.m16_c00097{transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);}
.md1_c00097{transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);}
.m65_c00097{transform:matrix(0.188978,0.003969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188978,0.003969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188978,0.003969,-0.005249,0.249945,0,0);}
.mb1_c00097{transform:matrix(0.188986,0.005103,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188986,0.005103,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188986,0.005103,-0.006748,0.249909,0,0);}
.ma8_c00097{transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);}
.m20_c00097{transform:matrix(0.189157,0.003783,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189157,0.003783,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189157,0.003783,-0.004999,0.249950,0,0);}
.mcd_c00097{transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);}
.mab_c00097{transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);}
.m7_c00097{transform:matrix(0.190292,0.003806,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190292,0.003806,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190292,0.003806,-0.004999,0.249950,0,0);}
.m48_c00097{transform:matrix(0.190572,0.003811,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190572,0.003811,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190572,0.003811,-0.004999,0.249950,0,0);}
.mc0_c00097{transform:matrix(0.190611,0.005146,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190611,0.005146,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190611,0.005146,-0.006748,0.249909,0,0);}
.m67_c00097{transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);}
.m2e_c00097{transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);}
.md3_c00097{transform:matrix(0.191300,0.005165,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191300,0.005165,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191300,0.005165,-0.006748,0.249909,0,0);}
.m3_c00097{transform:matrix(0.191822,0.003836,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191822,0.003836,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191822,0.003836,-0.004999,0.249950,0,0);}
.ma7_c00097{transform:matrix(0.192070,0.005186,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192070,0.005186,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192070,0.005186,-0.006748,0.249909,0,0);}
.m2_c00097{transform:matrix(0.192072,0.003841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192072,0.003841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192072,0.003841,-0.004999,0.249950,0,0);}
.md7_c00097{transform:matrix(0.192630,0.005201,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192630,0.005201,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192630,0.005201,-0.006748,0.249909,0,0);}
.mdd_c00097{transform:matrix(0.192780,0.005205,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192780,0.005205,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192780,0.005205,-0.006748,0.249909,0,0);}
.mfe_c00097{transform:matrix(0.192970,0.005210,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192970,0.005210,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192970,0.005210,-0.006748,0.249909,0,0);}
.mc9_c00097{transform:matrix(0.193335,0.005220,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193335,0.005220,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193335,0.005220,-0.006748,0.249909,0,0);}
.m92_c00097{transform:matrix(0.193337,0.004060,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193337,0.004060,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193337,0.004060,-0.005249,0.249945,0,0);}
.mc6_c00097{transform:matrix(0.194024,0.005239,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194024,0.005239,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194024,0.005239,-0.006748,0.249909,0,0);}
.mbf_c00097{transform:matrix(0.194069,0.005240,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194069,0.005240,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194069,0.005240,-0.006748,0.249909,0,0);}
.m7f_c00097{transform:matrix(0.194402,0.004082,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194402,0.004082,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194402,0.004082,-0.005249,0.249945,0,0);}
.m8_c00097{transform:matrix(0.194621,0.003892,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194621,0.003892,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194621,0.003892,-0.004999,0.249950,0,0);}
.mf3_c00097{transform:matrix(0.194864,0.005261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194864,0.005261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194864,0.005261,-0.006748,0.249909,0,0);}
.m4d_c00097{transform:matrix(0.194889,0.004677,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194889,0.004677,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194889,0.004677,-0.005998,0.249928,0,0);}
.mc5_c00097{transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);}
.m18_c00097{transform:matrix(0.196066,0.003921,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196066,0.003921,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196066,0.003921,-0.004999,0.249950,0,0);}
.mda_c00097{transform:matrix(0.196104,0.005295,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196104,0.005295,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196104,0.005295,-0.006748,0.249909,0,0);}
.m79_c00097{transform:matrix(0.196107,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196107,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196107,0.004118,-0.005249,0.249945,0,0);}
.mce_c00097{transform:matrix(0.196159,0.005296,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196159,0.005296,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196159,0.005296,-0.006748,0.249909,0,0);}
.mb2_c00097{transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);}
.m69_c00097{transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);}
.m63_c00097{transform:matrix(0.199191,0.004183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199191,0.004183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199191,0.004183,-0.005249,0.249945,0,0);}
.m9d_c00097{transform:matrix(0.199502,0.005387,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199502,0.005387,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199502,0.005387,-0.006748,0.249909,0,0);}
.md2_c00097{transform:matrix(0.199512,0.005387,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199512,0.005387,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199512,0.005387,-0.006748,0.249909,0,0);}
.m4a_c00097{transform:matrix(0.200265,0.004005,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200265,0.004005,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200265,0.004005,-0.004999,0.249950,0,0);}
.m34_c00097{transform:matrix(0.200610,0.004012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200610,0.004012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200610,0.004012,-0.004999,0.249950,0,0);}
.m56_c00097{transform:matrix(0.200717,0.003613,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200717,0.003613,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200717,0.003613,-0.004499,0.249960,0,0);}
.mcb_c00097{transform:matrix(0.200722,0.005419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200722,0.005419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200722,0.005419,-0.006748,0.249909,0,0);}
.md5_c00097{transform:matrix(0.200747,0.005420,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200747,0.005420,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200747,0.005420,-0.006748,0.249909,0,0);}
.m5b_c00097{transform:matrix(0.200802,0.003614,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200802,0.003614,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200802,0.003614,-0.004499,0.249960,0,0);}
.m1e_c00097{transform:matrix(0.201155,0.004023,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201155,0.004023,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201155,0.004023,-0.004999,0.249950,0,0);}
.m1a_c00097{transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201425,0.004028,-0.004999,0.249950,0,0);}
.m82_c00097{transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);}
.md9_c00097{transform:matrix(0.201682,0.005445,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201682,0.005445,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201682,0.005445,-0.006748,0.249909,0,0);}
.m7c_c00097{transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);}
.me_c00097{transform:matrix(0.202360,0.004047,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202360,0.004047,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202360,0.004047,-0.004999,0.249950,0,0);}
.mf4_c00097{transform:matrix(0.202386,0.005464,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202386,0.005464,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202386,0.005464,-0.006748,0.249909,0,0);}
.m75_c00097{transform:matrix(0.202400,0.004250,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202400,0.004250,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202400,0.004250,-0.005249,0.249945,0,0);}
.mfa_c00097{transform:matrix(0.202706,0.005473,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202706,0.005473,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202706,0.005473,-0.006748,0.249909,0,0);}
.m6a_c00097{transform:matrix(0.202780,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202780,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202780,0.004258,-0.005249,0.249945,0,0);}
.m46_c00097{transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);}
.m22_c00097{transform:matrix(0.202869,0.004057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202869,0.004057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202869,0.004057,-0.004999,0.249950,0,0);}
.mf5_c00097{transform:matrix(0.203011,0.005481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203011,0.005481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203011,0.005481,-0.006748,0.249909,0,0);}
.m27_c00097{transform:matrix(0.203059,0.004061,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203059,0.004061,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203059,0.004061,-0.004999,0.249950,0,0);}
.mfb_c00097{transform:matrix(0.203181,0.005486,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203181,0.005486,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203181,0.005486,-0.006748,0.249909,0,0);}
.m90_c00097{transform:matrix(0.204030,0.004285,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204030,0.004285,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204030,0.004285,-0.005249,0.249945,0,0);}
.mb7_c00097{transform:matrix(0.204071,0.005510,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204071,0.005510,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204071,0.005510,-0.006748,0.249909,0,0);}
.maa_c00097{transform:matrix(0.204231,0.005514,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204231,0.005514,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204231,0.005514,-0.006748,0.249909,0,0);}
.m8f_c00097{transform:matrix(0.204460,0.004294,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204460,0.004294,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204460,0.004294,-0.005249,0.249945,0,0);}
.m9b_c00097{transform:matrix(0.204470,0.005521,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204470,0.005521,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204470,0.005521,-0.006748,0.249909,0,0);}
.mc3_c00097{transform:matrix(0.204475,0.005521,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204475,0.005521,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204475,0.005521,-0.006748,0.249909,0,0);}
.m60_c00097{transform:matrix(0.205210,0.004309,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205210,0.004309,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205210,0.004309,-0.005249,0.249945,0,0);}
.m44_c00097{transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205419,0.004108,-0.004999,0.249950,0,0);}
.mec_c00097{transform:matrix(0.205420,0.005546,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205420,0.005546,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205420,0.005546,-0.006748,0.249909,0,0);}
.mae_c00097{transform:matrix(0.206040,0.005563,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206040,0.005563,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206040,0.005563,-0.006748,0.249909,0,0);}
.m5f_c00097{transform:matrix(0.206170,0.004330,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206170,0.004330,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206170,0.004330,-0.005249,0.249945,0,0);}
.mba_c00097{transform:matrix(0.206225,0.005568,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206225,0.005568,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206225,0.005568,-0.006748,0.249909,0,0);}
.m64_c00097{transform:matrix(0.206230,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206230,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206230,0.004331,-0.005249,0.249945,0,0);}
.mf_c00097{transform:matrix(0.206619,0.004132,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206619,0.004132,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206619,0.004132,-0.004999,0.249950,0,0);}
.m9e_c00097{transform:matrix(0.207030,0.005590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207030,0.005590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207030,0.005590,-0.006748,0.249909,0,0);}
.mf7_c00097{transform:matrix(0.207050,0.005590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207050,0.005590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207050,0.005590,-0.006748,0.249909,0,0);}
.m32_c00097{transform:matrix(0.207194,0.004144,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207194,0.004144,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207194,0.004144,-0.004999,0.249950,0,0);}
.m8a_c00097{transform:matrix(0.207219,0.004352,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207219,0.004352,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207219,0.004352,-0.005249,0.249945,0,0);}
.m6b_c00097{transform:matrix(0.207444,0.004356,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207444,0.004356,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207444,0.004356,-0.005249,0.249945,0,0);}
.m14_c00097{transform:matrix(0.207653,0.004153,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207653,0.004153,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207653,0.004153,-0.004999,0.249950,0,0);}
.meb_c00097{transform:matrix(0.207689,0.005608,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207689,0.005608,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207689,0.005608,-0.006748,0.249909,0,0);}
.mc2_c00097{transform:matrix(0.207894,0.005613,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207894,0.005613,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207894,0.005613,-0.006748,0.249909,0,0);}
.m38_c00097{transform:matrix(0.208083,0.004162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208083,0.004162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208083,0.004162,-0.004999,0.249950,0,0);}
.mdf_c00097{transform:matrix(0.208264,0.005623,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208264,0.005623,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208264,0.005623,-0.006748,0.249909,0,0);}
.me3_c00097{transform:matrix(0.208469,0.005629,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208469,0.005629,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208469,0.005629,-0.006748,0.249909,0,0);}
.m62_c00097{transform:matrix(0.208974,0.004388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208974,0.004388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208974,0.004388,-0.005249,0.249945,0,0);}
.mf6_c00097{transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);}
.m25_c00097{transform:matrix(0.209048,0.004181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209048,0.004181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209048,0.004181,-0.004999,0.249950,0,0);}
.mc8_c00097{transform:matrix(0.209344,0.005652,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209344,0.005652,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209344,0.005652,-0.006748,0.249909,0,0);}
.m3e_c00097{transform:matrix(0.209828,0.004197,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209828,0.004197,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209828,0.004197,-0.004999,0.249950,0,0);}
.mfd_c00097{transform:matrix(0.209904,0.005667,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209904,0.005667,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209904,0.005667,-0.006748,0.249909,0,0);}
.me2_c00097{transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);}
.m4f_c00097{transform:matrix(0.210414,0.005050,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210414,0.005050,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210414,0.005050,-0.005998,0.249928,0,0);}
.m58_c00097{transform:matrix(0.211206,0.003802,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211206,0.003802,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211206,0.003802,-0.004499,0.249960,0,0);}
.mf1_c00097{transform:matrix(0.211238,0.005703,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211238,0.005703,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211238,0.005703,-0.006748,0.249909,0,0);}
.m59_c00097{transform:matrix(0.211406,0.003805,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211406,0.003805,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211406,0.003805,-0.004499,0.249960,0,0);}
.ma4_c00097{transform:matrix(0.211498,0.005710,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211498,0.005710,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211498,0.005710,-0.006748,0.249909,0,0);}
.mb9_c00097{transform:matrix(0.211608,0.005713,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211608,0.005713,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211608,0.005713,-0.006748,0.249909,0,0);}
.mea_c00097{transform:matrix(0.212298,0.005732,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212298,0.005732,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212298,0.005732,-0.006748,0.249909,0,0);}
.mca_c00097{transform:matrix(0.212787,0.005745,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212787,0.005745,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212787,0.005745,-0.006748,0.249909,0,0);}
.m3c_c00097{transform:matrix(0.213127,0.004263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213127,0.004263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213127,0.004263,-0.004999,0.249950,0,0);}
.m7d_c00097{transform:matrix(0.213458,0.004483,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213458,0.004483,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213458,0.004483,-0.005249,0.249945,0,0);}
.mbc_c00097{transform:matrix(0.214132,0.005782,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214132,0.005782,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214132,0.005782,-0.006748,0.249909,0,0);}
.ma0_c00097{transform:matrix(0.214572,0.005793,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214572,0.005793,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214572,0.005793,-0.006748,0.249909,0,0);}
.mdb_c00097{transform:matrix(0.214827,0.005800,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214827,0.005800,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214827,0.005800,-0.006748,0.249909,0,0);}
.m57_c00097{transform:matrix(0.215730,0.003883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215730,0.003883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215730,0.003883,-0.004499,0.249960,0,0);}
.mac_c00097{transform:matrix(0.216066,0.005834,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216066,0.005834,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216066,0.005834,-0.006748,0.249909,0,0);}
.mc_c00097{transform:matrix(0.216077,0.004322,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216077,0.004322,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216077,0.004322,-0.004999,0.249950,0,0);}
.me6_c00097{transform:matrix(0.216761,0.005853,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216761,0.005853,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216761,0.005853,-0.006748,0.249909,0,0);}
.m98_c00097{transform:matrix(0.217082,0.005644,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217082,0.005644,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217082,0.005644,-0.006498,0.249916,0,0);}
.m2f_c00097{transform:matrix(0.217232,0.004345,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217232,0.004345,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217232,0.004345,-0.004999,0.249950,0,0);}
.m5c_c00097{transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);}
.me4_c00097{transform:matrix(0.217526,0.005873,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217526,0.005873,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217526,0.005873,-0.006748,0.249909,0,0);}
.m89_c00097{transform:matrix(0.217792,0.004574,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217792,0.004574,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217792,0.004574,-0.005249,0.249945,0,0);}
.m52_c00097{transform:matrix(0.218737,0.005250,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218737,0.005250,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218737,0.005250,-0.005998,0.249928,0,0);}
.m78_c00097{transform:matrix(0.218927,0.004597,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218927,0.004597,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218927,0.004597,-0.005249,0.249945,0,0);}
.mde_c00097{transform:matrix(0.218955,0.005912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218955,0.005912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218955,0.005912,-0.006748,0.249909,0,0);}
.m35_c00097{transform:matrix(0.219201,0.004384,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219201,0.004384,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219201,0.004384,-0.004999,0.249950,0,0);}
.m1b_c00097{transform:matrix(0.219251,0.004385,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219251,0.004385,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219251,0.004385,-0.004999,0.249950,0,0);}
.mcc_c00097{transform:matrix(0.220250,0.005947,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220250,0.005947,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220250,0.005947,-0.006748,0.249909,0,0);}
.me9_c00097{transform:matrix(0.220535,0.005954,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220535,0.005954,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220535,0.005954,-0.006748,0.249909,0,0);}
.m21_c00097{transform:matrix(0.221236,0.004425,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221236,0.004425,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221236,0.004425,-0.004999,0.249950,0,0);}
.ma9_c00097{transform:matrix(0.221954,0.005993,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221954,0.005993,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221954,0.005993,-0.006748,0.249909,0,0);}
.med_c00097{transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222149,0.005998,-0.006748,0.249909,0,0);}
.m3d_c00097{transform:matrix(0.222700,0.004454,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222700,0.004454,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222700,0.004454,-0.004999,0.249950,0,0);}
.mb5_c00097{transform:matrix(0.222789,0.006015,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222789,0.006015,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222789,0.006015,-0.006748,0.249909,0,0);}
.mf0_c00097{transform:matrix(0.222984,0.006021,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222984,0.006021,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222984,0.006021,-0.006748,0.249909,0,0);}
.m91_c00097{transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);}
.me8_c00097{transform:matrix(0.223688,0.006040,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223688,0.006040,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223688,0.006040,-0.006748,0.249909,0,0);}
.mc4_c00097{transform:matrix(0.224158,0.006052,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224158,0.006052,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224158,0.006052,-0.006748,0.249909,0,0);}
.m28_c00097{transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);}
.m29_c00097{transform:matrix(0.224725,0.004495,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224725,0.004495,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224725,0.004495,-0.004999,0.249950,0,0);}
.mbd_c00097{transform:matrix(0.225563,0.006090,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225563,0.006090,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225563,0.006090,-0.006748,0.249909,0,0);}
.m96_c00097{transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);}
.m84_c00097{transform:matrix(0.226505,0.004757,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226505,0.004757,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226505,0.004757,-0.005249,0.249945,0,0);}
.m95_c00097{transform:matrix(0.226893,0.005899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226893,0.005899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226893,0.005899,-0.006498,0.249916,0,0);}
.m68_c00097{transform:matrix(0.229204,0.004813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229204,0.004813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229204,0.004813,-0.005249,0.249945,0,0);}
.m87_c00097{transform:matrix(0.229389,0.004817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229389,0.004817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229389,0.004817,-0.005249,0.249945,0,0);}
.m43_c00097{transform:matrix(0.230364,0.004607,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230364,0.004607,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230364,0.004607,-0.004999,0.249950,0,0);}
.mb8_c00097{transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230711,0.006229,-0.006748,0.249909,0,0);}
.m36_c00097{transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);}
.ma3_c00097{transform:matrix(0.231900,0.006261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231900,0.006261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231900,0.006261,-0.006748,0.249909,0,0);}
.m3a_c00097{transform:matrix(0.232444,0.004649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232444,0.004649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232444,0.004649,-0.004999,0.249950,0,0);}
.m11_c00097{transform:matrix(0.234893,0.004698,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234893,0.004698,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234893,0.004698,-0.004999,0.249950,0,0);}
.m93_c00097{transform:matrix(0.239994,0.006240,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239994,0.006240,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239994,0.006240,-0.006498,0.249916,0,0);}
.m99_c00097{transform:matrix(0.243788,0.006338,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243788,0.006338,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243788,0.006338,-0.006498,0.249916,0,0);}
.m1f_c00097{transform:matrix(0.244231,0.004885,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244231,0.004885,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244231,0.004885,-0.004999,0.249950,0,0);}
.m85_c00097{transform:matrix(0.249800,0.005246,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249800,0.005246,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249800,0.005246,-0.005249,0.249945,0,0);}
.m42_c00097{transform:matrix(0.250530,0.005011,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250530,0.005011,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250530,0.005011,-0.004999,0.249950,0,0);}
.md_c00097{transform:matrix(0.253204,0.005064,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253204,0.005064,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253204,0.005064,-0.004999,0.249950,0,0);}
.mdc_c00097{transform:matrix(0.254722,0.006877,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254722,0.006877,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254722,0.006877,-0.006748,0.249909,0,0);}
.m83_c00097{transform:matrix(0.264727,0.005559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264727,0.005559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264727,0.005559,-0.005249,0.249945,0,0);}
.m39_c00097{transform:matrix(0.269036,0.005381,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269036,0.005381,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269036,0.005381,-0.004999,0.249950,0,0);}
.m5_c00097{transform:matrix(0.275950,0.005519,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275950,0.005519,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275950,0.005519,-0.004999,0.249950,0,0);}
.m50_c00097{transform:matrix(0.292811,0.007027,-0.005998,0.249928,0,0);-ms-transform:matrix(0.292811,0.007027,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.292811,0.007027,-0.005998,0.249928,0,0);}
.m4e_c00097{transform:matrix(0.310576,0.007454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.310576,0.007454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.310576,0.007454,-0.005998,0.249928,0,0);}
.m51_c00097{transform:matrix(0.316194,0.007589,-0.005998,0.249928,0,0);-ms-transform:matrix(0.316194,0.007589,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.316194,0.007589,-0.005998,0.249928,0,0);}
.m2a_c00097{transform:matrix(0.356754,0.007135,-0.004999,0.249950,0,0);-ms-transform:matrix(0.356754,0.007135,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.356754,0.007135,-0.004999,0.249950,0,0);}
.m54_c00097{transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);-ms-transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);}
.m81_c00097{transform:matrix(0.393338,0.008260,-0.005249,0.249945,0,0);-ms-transform:matrix(0.393338,0.008260,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.393338,0.008260,-0.005249,0.249945,0,0);}
.m66_c00097{transform:matrix(0.445072,0.009347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.445072,0.009347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.445072,0.009347,-0.005249,0.249945,0,0);}
.m101_c00097{transform:matrix(0.555355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555355,0.000000,0.000000,0.250000,0,0);}
.m80_c00097{transform:matrix(1.762326,0.037009,-0.005249,0.249945,0,0);-ms-transform:matrix(1.762326,0.037009,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.762326,0.037009,-0.005249,0.249945,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
.fc0_c00097{color:transparent;}
.fs18_c00097{font-size:22.050000px;}
.fse_c00097{font-size:48.310649px;}
.fs8_c00097{font-size:52.515118px;}
.fs10_c00097{font-size:58.819871px;}
.fs13_c00097{font-size:59.871811px;}
.fs9_c00097{font-size:60.909865px;}
.fs6_c00097{font-size:60.912179px;}
.fsb_c00097{font-size:60.913427px;}
.fs4_c00097{font-size:61.962389px;}
.fs17_c00097{font-size:61.972577px;}
.fs11_c00097{font-size:63.022959px;}
.fs7_c00097{font-size:64.062809px;}
.fs14_c00097{font-size:64.073342px;}
.fs3_c00097{font-size:65.113019px;}
.fsd_c00097{font-size:65.114353px;}
.fs12_c00097{font-size:65.123725px;}
.fsa_c00097{font-size:66.164584px;}
.fs2_c00097{font-size:67.213439px;}
.fs16_c00097{font-size:67.224490px;}
.fs15_c00097{font-size:68.274873px;}
.fs1_c00097{font-size:69.313859px;}
.fsf_c00097{font-size:69.315279px;}
.fs5_c00097{font-size:70.364069px;}
.fsc_c00097{font-size:71.415742px;}
.fs0_c00097{font-size:75.600000px;}
.y0_c00097{bottom:0.000000px;}
.y100_c00097{bottom:28.813172px;}
.yff_c00097{bottom:29.425668px;}
.yfe_c00097{bottom:30.052580px;}
.yfd_c00097{bottom:30.481116px;}
.yfc_c00097{bottom:32.037828px;}
.yfb_c00097{bottom:32.999454px;}
.yfa_c00097{bottom:33.561983px;}
.yf9_c00097{bottom:33.919415px;}
.yf8_c00097{bottom:34.582041px;}
.yf7_c00097{bottom:35.031635px;}
.yf6_c00097{bottom:45.584586px;}
.yf5_c00097{bottom:46.873458px;}
.yf4_c00097{bottom:48.784532px;}
.yf3_c00097{bottom:49.412808px;}
.yf2_c00097{bottom:50.935649px;}
.yf1_c00097{bottom:51.964146px;}
.yf0_c00097{bottom:52.860492px;}
.yef_c00097{bottom:65.996931px;}
.yee_c00097{bottom:66.872589px;}
.yed_c00097{bottom:68.074434px;}
.yec_c00097{bottom:68.415518px;}
.yeb_c00097{bottom:69.183095px;}
.yea_c00097{bottom:69.552270px;}
.ye9_c00097{bottom:70.411899px;}
.ye8_c00097{bottom:81.455439px;}
.ye7_c00097{bottom:82.101713px;}
.ye6_c00097{bottom:82.424343px;}
.ye5_c00097{bottom:82.718184px;}
.ye4_c00097{bottom:83.981093px;}
.ye3_c00097{bottom:84.657006px;}
.ye2_c00097{bottom:85.051710px;}
.ye1_c00097{bottom:85.453095px;}
.ye0_c00097{bottom:86.387379px;}
.ydf_c00097{bottom:86.683002px;}
.yde_c00097{bottom:87.696972px;}
.ydd_c00097{bottom:99.536345px;}
.ydc_c00097{bottom:100.755893px;}
.ydb_c00097{bottom:101.206070px;}
.yda_c00097{bottom:102.166247px;}
.yd9_c00097{bottom:103.166657px;}
.yd8_c00097{bottom:104.444370px;}
.yd7_c00097{bottom:114.822551px;}
.yd6_c00097{bottom:116.131323px;}
.yd5_c00097{bottom:116.746007px;}
.yd4_c00097{bottom:117.411144px;}
.yd3_c00097{bottom:118.725627px;}
.yd2_c00097{bottom:119.221989px;}
.yd1_c00097{bottom:119.529533px;}
.yd0_c00097{bottom:121.047168px;}
.ycf_c00097{bottom:121.463314px;}
.yce_c00097{bottom:133.336679px;}
.ycd_c00097{bottom:134.596678px;}
.ycc_c00097{bottom:135.067356px;}
.ycb_c00097{bottom:136.009320px;}
.yca_c00097{bottom:136.877676px;}
.yc9_c00097{bottom:137.336652px;}
.yc8_c00097{bottom:138.747917px;}
.yc7_c00097{bottom:151.836231px;}
.yc6_c00097{bottom:152.845567px;}
.yc5_c00097{bottom:154.341208px;}
.yc4_c00097{bottom:155.741280px;}
.yc3_c00097{bottom:156.536074px;}
.yc2_c00097{bottom:157.575054px;}
.yc1_c00097{bottom:158.736367px;}
.yc0_c00097{bottom:170.150586px;}
.ybf_c00097{bottom:170.639218px;}
.ybe_c00097{bottom:171.981470px;}
.ybd_c00097{bottom:173.407231px;}
.ybc_c00097{bottom:175.317900px;}
.ybb_c00097{bottom:176.294193px;}
.yba_c00097{bottom:187.302955px;}
.yb9_c00097{bottom:187.599717px;}
.yb8_c00097{bottom:189.211296px;}
.yb7_c00097{bottom:189.864858px;}
.yb6_c00097{bottom:191.659474px;}
.yb5_c00097{bottom:192.013523px;}
.yb4_c00097{bottom:192.766600px;}
.yb3_c00097{bottom:203.774409px;}
.yb2_c00097{bottom:204.597183px;}
.yb1_c00097{bottom:205.997526px;}
.yb0_c00097{bottom:206.650512px;}
.yaf_c00097{bottom:208.897404px;}
.yae_c00097{bottom:209.584130px;}
.yad_c00097{bottom:211.677961px;}
.ya5_c00097{bottom:228.278975px;}
.ya8_c00097{bottom:228.279050px;}
.ya6_c00097{bottom:228.279295px;}
.ya7_c00097{bottom:228.279417px;}
.ya9_c00097{bottom:228.279703px;}
.yaa_c00097{bottom:228.279970px;}
.yab_c00097{bottom:228.280072px;}
.yac_c00097{bottom:228.280599px;}
.ya4_c00097{bottom:239.033952px;}
.ya3_c00097{bottom:239.554296px;}
.ya2_c00097{bottom:240.083510px;}
.ya1_c00097{bottom:241.710152px;}
.ya0_c00097{bottom:242.213364px;}
.y9f_c00097{bottom:243.037418px;}
.y9e_c00097{bottom:244.520690px;}
.y9d_c00097{bottom:245.155689px;}
.y9c_c00097{bottom:246.519000px;}
.y9b_c00097{bottom:256.026066px;}
.y9a_c00097{bottom:257.496600px;}
.y99_c00097{bottom:258.065571px;}
.y98_c00097{bottom:258.585051px;}
.y97_c00097{bottom:259.614807px;}
.y96_c00097{bottom:261.478500px;}
.y95_c00097{bottom:262.290909px;}
.y94_c00097{bottom:263.526000px;}
.y93_c00097{bottom:273.668288px;}
.y92_c00097{bottom:276.741647px;}
.y91_c00097{bottom:277.239736px;}
.y90_c00097{bottom:278.616342px;}
.y8f_c00097{bottom:279.038736px;}
.y8e_c00097{bottom:280.120176px;}
.y8d_c00097{bottom:281.320383px;}
.y8c_c00097{bottom:291.384471px;}
.y8b_c00097{bottom:292.291765px;}
.y8a_c00097{bottom:293.412497px;}
.y89_c00097{bottom:294.128452px;}
.y88_c00097{bottom:294.989385px;}
.y87_c00097{bottom:295.360623px;}
.y86_c00097{bottom:308.669757px;}
.y85_c00097{bottom:308.994669px;}
.y84_c00097{bottom:309.731735px;}
.y83_c00097{bottom:309.995262px;}
.y82_c00097{bottom:310.406754px;}
.y81_c00097{bottom:311.564570px;}
.y80_c00097{bottom:326.546036px;}
.y7f_c00097{bottom:326.863479px;}
.y7e_c00097{bottom:327.076884px;}
.y7d_c00097{bottom:327.591666px;}
.y7c_c00097{bottom:327.953914px;}
.y7b_c00097{bottom:328.536546px;}
.y7a_c00097{bottom:329.128191px;}
.y79_c00097{bottom:329.387976px;}
.y78_c00097{bottom:344.065767px;}
.y77_c00097{bottom:344.392436px;}
.y76_c00097{bottom:344.661887px;}
.y75_c00097{bottom:345.088822px;}
.y74_c00097{bottom:345.531595px;}
.y73_c00097{bottom:345.825412px;}
.y72_c00097{bottom:346.490177px;}
.y71_c00097{bottom:347.400195px;}
.y70_c00097{bottom:347.720488px;}
.y6f_c00097{bottom:348.023622px;}
.y6e_c00097{bottom:360.844260px;}
.y6d_c00097{bottom:361.201407px;}
.y6c_c00097{bottom:361.885776px;}
.y6b_c00097{bottom:363.118529px;}
.y6a_c00097{bottom:363.679733px;}
.y69_c00097{bottom:365.341389px;}
.y68_c00097{bottom:365.664863px;}
.y67_c00097{bottom:366.396545px;}
.y66_c00097{bottom:378.229233px;}
.y65_c00097{bottom:378.874637px;}
.y64_c00097{bottom:380.111264px;}
.y63_c00097{bottom:380.782434px;}
.y62_c00097{bottom:381.324612px;}
.y61_c00097{bottom:381.757327px;}
.y60_c00097{bottom:382.675773px;}
.y5f_c00097{bottom:382.982709px;}
.y5e_c00097{bottom:383.673000px;}
.y5d_c00097{bottom:395.645730px;}
.y5c_c00097{bottom:396.539997px;}
.y5b_c00097{bottom:396.854358px;}
.y5a_c00097{bottom:397.335606px;}
.y59_c00097{bottom:398.181381px;}
.y58_c00097{bottom:398.527872px;}
.y57_c00097{bottom:399.418062px;}
.y56_c00097{bottom:399.723675px;}
.y55_c00097{bottom:400.155486px;}
.y54_c00097{bottom:400.411500px;}
.y53_c00097{bottom:411.377544px;}
.y52_c00097{bottom:412.306668px;}
.y51_c00097{bottom:413.846172px;}
.y50_c00097{bottom:417.580704px;}
.y4f_c00097{bottom:417.802032px;}
.y4e_c00097{bottom:418.234500px;}
.y101_c00097{bottom:430.110000px;}
.y4d_c00097{bottom:430.589580px;}
.y4c_c00097{bottom:431.051490px;}
.y4b_c00097{bottom:432.121350px;}
.y4a_c00097{bottom:432.430950px;}
.y49_c00097{bottom:433.220400px;}
.y48_c00097{bottom:433.556880px;}
.y47_c00097{bottom:434.097030px;}
.y46_c00097{bottom:434.903610px;}
.y45_c00097{bottom:435.289230px;}
.y44_c00097{bottom:435.755310px;}
.y43_c00097{bottom:447.730860px;}
.y42_c00097{bottom:448.739850px;}
.y41_c00097{bottom:449.265510px;}
.y40_c00097{bottom:449.832960px;}
.y3f_c00097{bottom:450.679920px;}
.y3e_c00097{bottom:450.875730px;}
.y3d_c00097{bottom:451.795410px;}
.y3c_c00097{bottom:452.078070px;}
.y3b_c00097{bottom:453.100020px;}
.y3a_c00097{bottom:453.310830px;}
.y39_c00097{bottom:465.664380px;}
.y38_c00097{bottom:466.078110px;}
.y37_c00097{bottom:467.370090px;}
.y36_c00097{bottom:468.429990px;}
.y35_c00097{bottom:469.248240px;}
.y34_c00097{bottom:469.605420px;}
.y33_c00097{bottom:470.864760px;}
.y32_c00097{bottom:482.392440px;}
.y31_c00097{bottom:482.698980px;}
.y30_c00097{bottom:483.019560px;}
.y2f_c00097{bottom:484.227300px;}
.y2e_c00097{bottom:484.754790px;}
.y2d_c00097{bottom:486.049260px;}
.y2c_c00097{bottom:486.917730px;}
.y2b_c00097{bottom:487.174380px;}
.y2a_c00097{bottom:488.149020px;}
.y29_c00097{bottom:500.564190px;}
.y28_c00097{bottom:500.564580px;}
.y24_c00097{bottom:500.564610px;}
.y23_c00097{bottom:500.564760px;}
.y25_c00097{bottom:500.565060px;}
.y27_c00097{bottom:500.565090px;}
.y26_c00097{bottom:500.565210px;}
.y22_c00097{bottom:500.565480px;}
.y21_c00097{bottom:517.334970px;}
.y20_c00097{bottom:517.620000px;}
.y1f_c00097{bottom:518.839740px;}
.y1e_c00097{bottom:519.271860px;}
.y1d_c00097{bottom:519.462480px;}
.y1c_c00097{bottom:520.699920px;}
.y1b_c00097{bottom:520.938690px;}
.y1a_c00097{bottom:521.614050px;}
.y19_c00097{bottom:522.173940px;}
.y18_c00097{bottom:534.662040px;}
.y17_c00097{bottom:535.762980px;}
.y16_c00097{bottom:536.086860px;}
.y15_c00097{bottom:536.900250px;}
.y14_c00097{bottom:537.502440px;}
.y13_c00097{bottom:537.804270px;}
.y12_c00097{bottom:538.557420px;}
.y11_c00097{bottom:539.728800px;}
.y10_c00097{bottom:550.724640px;}
.yf_c00097{bottom:551.743110px;}
.ye_c00097{bottom:552.240090px;}
.yd_c00097{bottom:554.011140px;}
.yc_c00097{bottom:554.518410px;}
.yb_c00097{bottom:555.968670px;}
.ya_c00097{bottom:556.481760px;}
.y9_c00097{bottom:557.282760px;}
.y8_c00097{bottom:570.228390px;}
.y7_c00097{bottom:571.411290px;}
.y6_c00097{bottom:572.253420px;}
.y5_c00097{bottom:573.441840px;}
.y4_c00097{bottom:574.268520px;}
.y3_c00097{bottom:574.812180px;}
.y2_c00097{bottom:575.106000px;}
.y1_c00097{bottom:585.085500px;}
.h1a_c00097{height:22.050000px;}
.h10_c00097{height:48.310649px;}
.ha_c00097{height:52.515118px;}
.h12_c00097{height:58.819871px;}
.h15_c00097{height:59.871811px;}
.hb_c00097{height:60.909865px;}
.h8_c00097{height:60.912179px;}
.hd_c00097{height:60.913427px;}
.h6_c00097{height:61.962389px;}
.h19_c00097{height:61.972577px;}
.h13_c00097{height:63.022959px;}
.h9_c00097{height:64.062809px;}
.h16_c00097{height:64.073342px;}
.h5_c00097{height:65.113019px;}
.hf_c00097{height:65.114353px;}
.h14_c00097{height:65.123725px;}
.hc_c00097{height:66.164584px;}
.h4_c00097{height:67.213439px;}
.h18_c00097{height:67.224490px;}
.h17_c00097{height:68.274873px;}
.h3_c00097{height:69.313859px;}
.h11_c00097{height:69.315279px;}
.h7_c00097{height:70.364069px;}
.he_c00097{height:71.415742px;}
.h2_c00097{height:75.600000px;}
.h1_c00097{height:627.750000px;}
.h0_c00097{height:628.020000px;}
.w0_c00097{width:371.790000px;}
.w1_c00097{width:372.000000px;}
.x0_c00097{left:0.000000px;}
.x63_c00097{left:41.362500px;}
.x49_c00097{left:43.199025px;}
.x1d_c00097{left:44.820030px;}
.x2_c00097{left:46.710000px;}
.x41_c00097{left:53.020500px;}
.x38_c00097{left:54.069000px;}
.x2f_c00097{left:55.398330px;}
.x3_c00097{left:61.401000px;}
.x83_c00097{left:62.448440px;}
.x53_c00097{left:64.609673px;}
.x5d_c00097{left:66.479898px;}
.x34_c00097{left:69.437370px;}
.x39_c00097{left:72.088500px;}
.x81_c00097{left:75.812150px;}
.x4a_c00097{left:78.041025px;}
.x9_c00097{left:79.062600px;}
.x3a_c00097{left:81.310500px;}
.x42_c00097{left:85.891500px;}
.x4_c00097{left:88.584000px;}
.x1e_c00097{left:89.648940px;}
.x71_c00097{left:90.768462px;}
.x23_c00097{left:91.776090px;}
.x4b_c00097{left:93.444525px;}
.x6c_c00097{left:97.751658px;}
.xa_c00097{left:99.615060px;}
.x78_c00097{left:102.881619px;}
.x24_c00097{left:104.008350px;}
.x29_c00097{left:105.353280px;}
.x84_c00097{left:106.788719px;}
.x3d_c00097{left:109.648500px;}
.x10_c00097{left:111.309150px;}
.x7d_c00097{left:112.397874px;}
.x54_c00097{left:113.863965px;}
.x30_c00097{left:117.552600px;}
.x16_c00097{left:118.596330px;}
.x5e_c00097{left:120.268037px;}
.x2a_c00097{left:122.386950px;}
.x61_c00097{left:124.439631px;}
.x1f_c00097{left:126.646230px;}
.x5_c00097{left:129.918000px;}
.x85_c00097{left:131.236851px;}
.x17_c00097{left:132.635670px;}
.x72_c00097{left:134.030445px;}
.x69_c00097{left:137.637299px;}
.x62_c00097{left:139.551426px;}
.x43_c00097{left:144.243000px;}
.x25_c00097{left:145.331010px;}
.x65_c00097{left:146.647796px;}
.x59_c00097{left:148.250565px;}
.x6f_c00097{left:149.806127px;}
.x11_c00097{left:153.168330px;}
.x7e_c00097{left:155.059242px;}
.xb_c00097{left:157.647270px;}
.x3e_c00097{left:159.103500px;}
.x2b_c00097{left:161.348670px;}
.x55_c00097{left:162.474663px;}
.x79_c00097{left:163.636841px;}
.x44_c00097{left:164.848500px;}
.x20_c00097{left:166.614720px;}
.x12_c00097{left:169.910490px;}
.x4c_c00097{left:172.571025px;}
.x7f_c00097{left:173.974319px;}
.xc_c00097{left:177.908730px;}
.x7a_c00097{left:181.591271px;}
.x1_c00097{left:184.410000px;}
.x5a_c00097{left:185.710440px;}
.x6d_c00097{left:187.458087px;}
.x6_c00097{left:189.339000px;}
.x45_c00097{left:190.666500px;}
.x56_c00097{left:192.658864px;}
.x4d_c00097{left:199.295025px;}
.x66_c00097{left:202.288836px;}
.x13_c00097{left:203.396340px;}
.x18_c00097{left:205.387020px;}
.x26_c00097{left:206.978280px;}
.x5b_c00097{left:209.692980px;}
.x2c_c00097{left:211.792650px;}
.x6a_c00097{left:215.129127px;}
.x19_c00097{left:216.643710px;}
.x74_c00097{left:217.927829px;}
.x35_c00097{left:219.854370px;}
.x64_c00097{left:221.241000px;}
.x46_c00097{left:222.627000px;}
.x3f_c00097{left:225.340500px;}
.x7_c00097{left:231.445500px;}
.x76_c00097{left:233.425029px;}
.x5f_c00097{left:235.027070px;}
.x36_c00097{left:236.159700px;}
.x31_c00097{left:238.045200px;}
.x50_c00097{left:241.028003px;}
.x1a_c00097{left:242.076240px;}
.x21_c00097{left:246.820290px;}
.xd_c00097{left:248.754150px;}
.x40_c00097{left:252.076500px;}
.x57_c00097{left:253.417362px;}
.x51_c00097{left:256.860326px;}
.x4e_c00097{left:257.997525px;}
.x77_c00097{left:259.883157px;}
.x67_c00097{left:261.711131px;}
.x32_c00097{left:263.052690px;}
.x82_c00097{left:264.356150px;}
.x14_c00097{left:266.562360px;}
.xe_c00097{left:268.651170px;}
.x70_c00097{left:270.422627px;}
.x2d_c00097{left:273.315420px;}
.x75_c00097{left:274.737312px;}
.x52_c00097{left:276.060432px;}
.x58_c00097{left:279.895871px;}
.x47_c00097{left:281.514000px;}
.x7b_c00097{left:283.073960px;}
.x6b_c00097{left:285.952320px;}
.x73_c00097{left:287.783879px;}
.x80_c00097{left:289.391345px;}
.x8_c00097{left:290.590500px;}
.x60_c00097{left:291.737523px;}
.x2e_c00097{left:293.026530px;}
.x7c_c00097{left:297.747444px;}
.x3b_c00097{left:301.062000px;}
.x27_c00097{left:304.891830px;}
.x5c_c00097{left:306.140703px;}
.x4f_c00097{left:307.593525px;}
.xf_c00097{left:309.370590px;}
.x33_c00097{left:311.101230px;}
.x48_c00097{left:312.247500px;}
.x1b_c00097{left:313.867560px;}
.x6e_c00097{left:315.589806px;}
.x37_c00097{left:316.799820px;}
.x28_c00097{left:319.468530px;}
.x22_c00097{left:323.245830px;}
.x15_c00097{left:327.686790px;}
.x1c_c00097{left:330.670080px;}
.x68_c00097{left:333.017592px;}
.x3c_c00097{left:339.775500px;}
.x86_c00097{left:367.470000px;}
.x87_c00097{left:368.820000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
.fs18_c00097{font-size:19.600000pt;}
.fse_c00097{font-size:42.942799pt;}
.fs8_c00097{font-size:46.680105pt;}
.fs10_c00097{font-size:52.284330pt;}
.fs13_c00097{font-size:53.219388pt;}
.fs9_c00097{font-size:54.142102pt;}
.fs6_c00097{font-size:54.144159pt;}
.fsb_c00097{font-size:54.145268pt;}
.fs4_c00097{font-size:55.077679pt;}
.fs17_c00097{font-size:55.086735pt;}
.fs11_c00097{font-size:56.020408pt;}
.fs7_c00097{font-size:56.944719pt;}
.fs14_c00097{font-size:56.954082pt;}
.fs3_c00097{font-size:57.878239pt;}
.fsd_c00097{font-size:57.879425pt;}
.fs12_c00097{font-size:57.887755pt;}
.fsa_c00097{font-size:58.812964pt;}
.fs2_c00097{font-size:59.745279pt;}
.fs16_c00097{font-size:59.755102pt;}
.fs15_c00097{font-size:60.688776pt;}
.fs1_c00097{font-size:61.612319pt;}
.fsf_c00097{font-size:61.613581pt;}
.fs5_c00097{font-size:62.545839pt;}
.fsc_c00097{font-size:63.480660pt;}
.fs0_c00097{font-size:67.200000pt;}
.y0_c00097{bottom:0.000000pt;}
.y100_c00097{bottom:25.611708pt;}
.yff_c00097{bottom:26.156149pt;}
.yfe_c00097{bottom:26.713404pt;}
.yfd_c00097{bottom:27.094325pt;}
.yfc_c00097{bottom:28.478069pt;}
.yfb_c00097{bottom:29.332848pt;}
.yfa_c00097{bottom:29.832873pt;}
.yf9_c00097{bottom:30.150591pt;}
.yf8_c00097{bottom:30.739592pt;}
.yf7_c00097{bottom:31.139231pt;}
.yf6_c00097{bottom:40.519632pt;}
.yf5_c00097{bottom:41.665296pt;}
.yf4_c00097{bottom:43.364028pt;}
.yf3_c00097{bottom:43.922496pt;}
.yf2_c00097{bottom:45.276132pt;}
.yf1_c00097{bottom:46.190352pt;}
.yf0_c00097{bottom:46.987104pt;}
.yef_c00097{bottom:58.663939pt;}
.yee_c00097{bottom:59.442301pt;}
.yed_c00097{bottom:60.510608pt;}
.yec_c00097{bottom:60.813793pt;}
.yeb_c00097{bottom:61.496084pt;}
.yea_c00097{bottom:61.824240pt;}
.ye9_c00097{bottom:62.588355pt;}
.ye8_c00097{bottom:72.404835pt;}
.ye7_c00097{bottom:72.979300pt;}
.ye6_c00097{bottom:73.266083pt;}
.ye5_c00097{bottom:73.527275pt;}
.ye4_c00097{bottom:74.649860pt;}
.ye3_c00097{bottom:75.250672pt;}
.ye2_c00097{bottom:75.601520pt;}
.ye1_c00097{bottom:75.958307pt;}
.ye0_c00097{bottom:76.788781pt;}
.ydf_c00097{bottom:77.051557pt;}
.yde_c00097{bottom:77.952864pt;}
.ydd_c00097{bottom:88.476751pt;}
.ydc_c00097{bottom:89.560793pt;}
.ydb_c00097{bottom:89.960951pt;}
.yda_c00097{bottom:90.814441pt;}
.yd9_c00097{bottom:91.703695pt;}
.yd8_c00097{bottom:92.839440pt;}
.yd7_c00097{bottom:102.064489pt;}
.yd6_c00097{bottom:103.227843pt;}
.yd5_c00097{bottom:103.774228pt;}
.yd4_c00097{bottom:104.365461pt;}
.yd3_c00097{bottom:105.533891pt;}
.yd2_c00097{bottom:105.975101pt;}
.yd1_c00097{bottom:106.248473pt;}
.yd0_c00097{bottom:107.597483pt;}
.ycf_c00097{bottom:107.967391pt;}
.yce_c00097{bottom:118.521492pt;}
.ycd_c00097{bottom:119.641492pt;}
.ycc_c00097{bottom:120.059872pt;}
.ycb_c00097{bottom:120.897173pt;}
.yca_c00097{bottom:121.669045pt;}
.yc9_c00097{bottom:122.077024pt;}
.yc8_c00097{bottom:123.331481pt;}
.yc7_c00097{bottom:134.965539pt;}
.yc6_c00097{bottom:135.862727pt;}
.yc5_c00097{bottom:137.192185pt;}
.yc4_c00097{bottom:138.436693pt;}
.yc3_c00097{bottom:139.143177pt;}
.yc2_c00097{bottom:140.066715pt;}
.yc1_c00097{bottom:141.098993pt;}
.yc0_c00097{bottom:151.244965pt;}
.ybf_c00097{bottom:151.679305pt;}
.ybe_c00097{bottom:152.872417pt;}
.ybd_c00097{bottom:154.139761pt;}
.ybc_c00097{bottom:155.838133pt;}
.ybb_c00097{bottom:156.705949pt;}
.yba_c00097{bottom:166.491516pt;}
.yb9_c00097{bottom:166.755304pt;}
.yb8_c00097{bottom:168.187819pt;}
.yb7_c00097{bottom:168.768763pt;}
.yb6_c00097{bottom:170.363977pt;}
.yb5_c00097{bottom:170.678687pt;}
.yb4_c00097{bottom:171.348089pt;}
.yb3_c00097{bottom:181.132808pt;}
.yb2_c00097{bottom:181.864163pt;}
.yb1_c00097{bottom:183.108912pt;}
.yb0_c00097{bottom:183.689344pt;}
.yaf_c00097{bottom:185.686581pt;}
.yae_c00097{bottom:186.297004pt;}
.yad_c00097{bottom:188.158188pt;}
.ya5_c00097{bottom:202.914644pt;}
.ya8_c00097{bottom:202.914711pt;}
.ya6_c00097{bottom:202.914929pt;}
.ya7_c00097{bottom:202.915037pt;}
.ya9_c00097{bottom:202.915292pt;}
.yaa_c00097{bottom:202.915529pt;}
.yab_c00097{bottom:202.915620pt;}
.yac_c00097{bottom:202.916088pt;}
.ya4_c00097{bottom:212.474624pt;}
.ya3_c00097{bottom:212.937152pt;}
.ya2_c00097{bottom:213.407564pt;}
.ya1_c00097{bottom:214.853468pt;}
.ya0_c00097{bottom:215.300768pt;}
.y9f_c00097{bottom:216.033260pt;}
.y9e_c00097{bottom:217.351724pt;}
.y9d_c00097{bottom:217.916168pt;}
.y9c_c00097{bottom:219.128000pt;}
.y9b_c00097{bottom:227.578725pt;}
.y9a_c00097{bottom:228.885867pt;}
.y99_c00097{bottom:229.391619pt;}
.y98_c00097{bottom:229.853379pt;}
.y97_c00097{bottom:230.768717pt;}
.y96_c00097{bottom:232.425333pt;}
.y95_c00097{bottom:233.147475pt;}
.y94_c00097{bottom:234.245333pt;}
.y93_c00097{bottom:243.260700pt;}
.y92_c00097{bottom:245.992575pt;}
.y91_c00097{bottom:246.435321pt;}
.y90_c00097{bottom:247.658971pt;}
.y8f_c00097{bottom:248.034432pt;}
.y8e_c00097{bottom:248.995712pt;}
.y8d_c00097{bottom:250.062563pt;}
.y8c_c00097{bottom:259.008419pt;}
.y8b_c00097{bottom:259.814903pt;}
.y8a_c00097{bottom:260.811108pt;}
.y89_c00097{bottom:261.447513pt;}
.y88_c00097{bottom:262.212787pt;}
.y87_c00097{bottom:262.542776pt;}
.y86_c00097{bottom:274.373117pt;}
.y85_c00097{bottom:274.661928pt;}
.y84_c00097{bottom:275.317097pt;}
.y83_c00097{bottom:275.551344pt;}
.y82_c00097{bottom:275.917115pt;}
.y81_c00097{bottom:276.946284pt;}
.y80_c00097{bottom:290.263143pt;}
.y7f_c00097{bottom:290.545315pt;}
.y7e_c00097{bottom:290.735008pt;}
.y7d_c00097{bottom:291.192592pt;}
.y7c_c00097{bottom:291.514591pt;}
.y7b_c00097{bottom:292.032485pt;}
.y7a_c00097{bottom:292.558392pt;}
.y79_c00097{bottom:292.789312pt;}
.y78_c00097{bottom:305.836237pt;}
.y77_c00097{bottom:306.126609pt;}
.y76_c00097{bottom:306.366121pt;}
.y75_c00097{bottom:306.745620pt;}
.y74_c00097{bottom:307.139196pt;}
.y73_c00097{bottom:307.400367pt;}
.y72_c00097{bottom:307.991268pt;}
.y71_c00097{bottom:308.800173pt;}
.y70_c00097{bottom:309.084879pt;}
.y6f_c00097{bottom:309.354331pt;}
.y6e_c00097{bottom:320.750453pt;}
.y6d_c00097{bottom:321.067917pt;}
.y6c_c00097{bottom:321.676245pt;}
.y6b_c00097{bottom:322.772025pt;}
.y6a_c00097{bottom:323.270873pt;}
.y69_c00097{bottom:324.747901pt;}
.y68_c00097{bottom:325.035433pt;}
.y67_c00097{bottom:325.685817pt;}
.y66_c00097{bottom:336.203763pt;}
.y65_c00097{bottom:336.777455pt;}
.y64_c00097{bottom:337.876679pt;}
.y63_c00097{bottom:338.473275pt;}
.y62_c00097{bottom:338.955211pt;}
.y61_c00097{bottom:339.339847pt;}
.y60_c00097{bottom:340.156243pt;}
.y5f_c00097{bottom:340.429075pt;}
.y5e_c00097{bottom:341.042667pt;}
.y5d_c00097{bottom:351.685093pt;}
.y5c_c00097{bottom:352.479997pt;}
.y5b_c00097{bottom:352.759429pt;}
.y5a_c00097{bottom:353.187205pt;}
.y59_c00097{bottom:353.939005pt;}
.y58_c00097{bottom:354.246997pt;}
.y57_c00097{bottom:355.038277pt;}
.y56_c00097{bottom:355.309933pt;}
.y55_c00097{bottom:355.693765pt;}
.y54_c00097{bottom:355.921333pt;}
.y53_c00097{bottom:365.668928pt;}
.y52_c00097{bottom:366.494816pt;}
.y51_c00097{bottom:367.863264pt;}
.y50_c00097{bottom:371.182848pt;}
.y4f_c00097{bottom:371.379584pt;}
.y4e_c00097{bottom:371.764000pt;}
.y101_c00097{bottom:382.320000pt;}
.y4d_c00097{bottom:382.746293pt;}
.y4c_c00097{bottom:383.156880pt;}
.y4b_c00097{bottom:384.107867pt;}
.y4a_c00097{bottom:384.383067pt;}
.y49_c00097{bottom:385.084800pt;}
.y48_c00097{bottom:385.383893pt;}
.y47_c00097{bottom:385.864027pt;}
.y46_c00097{bottom:386.580987pt;}
.y45_c00097{bottom:386.923760pt;}
.y44_c00097{bottom:387.338053pt;}
.y43_c00097{bottom:397.982987pt;}
.y42_c00097{bottom:398.879867pt;}
.y41_c00097{bottom:399.347120pt;}
.y40_c00097{bottom:399.851520pt;}
.y3f_c00097{bottom:400.604373pt;}
.y3e_c00097{bottom:400.778427pt;}
.y3d_c00097{bottom:401.595920pt;}
.y3c_c00097{bottom:401.847173pt;}
.y3b_c00097{bottom:402.755573pt;}
.y3a_c00097{bottom:402.942960pt;}
.y39_c00097{bottom:413.923893pt;}
.y38_c00097{bottom:414.291653pt;}
.y37_c00097{bottom:415.440080pt;}
.y36_c00097{bottom:416.382213pt;}
.y35_c00097{bottom:417.109547pt;}
.y34_c00097{bottom:417.427040pt;}
.y33_c00097{bottom:418.546453pt;}
.y32_c00097{bottom:428.793280pt;}
.y31_c00097{bottom:429.065760pt;}
.y30_c00097{bottom:429.350720pt;}
.y2f_c00097{bottom:430.424267pt;}
.y2e_c00097{bottom:430.893147pt;}
.y2d_c00097{bottom:432.043787pt;}
.y2c_c00097{bottom:432.815760pt;}
.y2b_c00097{bottom:433.043893pt;}
.y2a_c00097{bottom:433.910240pt;}
.y29_c00097{bottom:444.945947pt;}
.y28_c00097{bottom:444.946293pt;}
.y24_c00097{bottom:444.946320pt;}
.y23_c00097{bottom:444.946453pt;}
.y25_c00097{bottom:444.946720pt;}
.y27_c00097{bottom:444.946747pt;}
.y26_c00097{bottom:444.946853pt;}
.y22_c00097{bottom:444.947093pt;}
.y21_c00097{bottom:459.853307pt;}
.y20_c00097{bottom:460.106667pt;}
.y1f_c00097{bottom:461.190880pt;}
.y1e_c00097{bottom:461.574987pt;}
.y1d_c00097{bottom:461.744427pt;}
.y1c_c00097{bottom:462.844373pt;}
.y1b_c00097{bottom:463.056613pt;}
.y1a_c00097{bottom:463.656933pt;}
.y19_c00097{bottom:464.154613pt;}
.y18_c00097{bottom:475.255147pt;}
.y17_c00097{bottom:476.233760pt;}
.y16_c00097{bottom:476.521653pt;}
.y15_c00097{bottom:477.244667pt;}
.y14_c00097{bottom:477.779947pt;}
.y13_c00097{bottom:478.048240pt;}
.y12_c00097{bottom:478.717707pt;}
.y11_c00097{bottom:479.758933pt;}
.y10_c00097{bottom:489.533013pt;}
.yf_c00097{bottom:490.438320pt;}
.ye_c00097{bottom:490.880080pt;}
.yd_c00097{bottom:492.454347pt;}
.yc_c00097{bottom:492.905253pt;}
.yb_c00097{bottom:494.194373pt;}
.ya_c00097{bottom:494.650453pt;}
.y9_c00097{bottom:495.362453pt;}
.y8_c00097{bottom:506.869680pt;}
.y7_c00097{bottom:507.921147pt;}
.y6_c00097{bottom:508.669707pt;}
.y5_c00097{bottom:509.726080pt;}
.y4_c00097{bottom:510.460907pt;}
.y3_c00097{bottom:510.944160pt;}
.y2_c00097{bottom:511.205333pt;}
.y1_c00097{bottom:520.076000pt;}
.h1a_c00097{height:19.600000pt;}
.h10_c00097{height:42.942799pt;}
.ha_c00097{height:46.680105pt;}
.h12_c00097{height:52.284330pt;}
.h15_c00097{height:53.219388pt;}
.hb_c00097{height:54.142102pt;}
.h8_c00097{height:54.144159pt;}
.hd_c00097{height:54.145268pt;}
.h6_c00097{height:55.077679pt;}
.h19_c00097{height:55.086735pt;}
.h13_c00097{height:56.020408pt;}
.h9_c00097{height:56.944719pt;}
.h16_c00097{height:56.954082pt;}
.h5_c00097{height:57.878239pt;}
.hf_c00097{height:57.879425pt;}
.h14_c00097{height:57.887755pt;}
.hc_c00097{height:58.812964pt;}
.h4_c00097{height:59.745279pt;}
.h18_c00097{height:59.755102pt;}
.h17_c00097{height:60.688776pt;}
.h3_c00097{height:61.612319pt;}
.h11_c00097{height:61.613581pt;}
.h7_c00097{height:62.545839pt;}
.he_c00097{height:63.480660pt;}
.h2_c00097{height:67.200000pt;}
.h1_c00097{height:558.000000pt;}
.h0_c00097{height:558.240000pt;}
.w0_c00097{width:330.480000pt;}
.w1_c00097{width:330.666667pt;}
.x0_c00097{left:0.000000pt;}
.x63_c00097{left:36.766667pt;}
.x49_c00097{left:38.399133pt;}
.x1d_c00097{left:39.840027pt;}
.x2_c00097{left:41.520000pt;}
.x41_c00097{left:47.129333pt;}
.x38_c00097{left:48.061333pt;}
.x2f_c00097{left:49.242960pt;}
.x3_c00097{left:54.578667pt;}
.x83_c00097{left:55.509724pt;}
.x53_c00097{left:57.430820pt;}
.x5d_c00097{left:59.093243pt;}
.x34_c00097{left:61.722107pt;}
.x39_c00097{left:64.078667pt;}
.x81_c00097{left:67.388577pt;}
.x4a_c00097{left:69.369800pt;}
.x9_c00097{left:70.277867pt;}
.x3a_c00097{left:72.276000pt;}
.x42_c00097{left:76.348000pt;}
.x4_c00097{left:78.741333pt;}
.x1e_c00097{left:79.687947pt;}
.x71_c00097{left:80.683077pt;}
.x23_c00097{left:81.578747pt;}
.x4b_c00097{left:83.061800pt;}
.x6c_c00097{left:86.890363pt;}
.xa_c00097{left:88.546720pt;}
.x78_c00097{left:91.450328pt;}
.x24_c00097{left:92.451867pt;}
.x29_c00097{left:93.647360pt;}
.x84_c00097{left:94.923305pt;}
.x3d_c00097{left:97.465333pt;}
.x10_c00097{left:98.941467pt;}
.x7d_c00097{left:99.909221pt;}
.x54_c00097{left:101.212413pt;}
.x30_c00097{left:104.491200pt;}
.x16_c00097{left:105.418960pt;}
.x5e_c00097{left:106.904921pt;}
.x2a_c00097{left:108.788400pt;}
.x61_c00097{left:110.613005pt;}
.x1f_c00097{left:112.574427pt;}
.x5_c00097{left:115.482667pt;}
.x85_c00097{left:116.654979pt;}
.x17_c00097{left:117.898373pt;}
.x72_c00097{left:119.138173pt;}
.x69_c00097{left:122.344265pt;}
.x62_c00097{left:124.045712pt;}
.x43_c00097{left:128.216000pt;}
.x25_c00097{left:129.183120pt;}
.x65_c00097{left:130.353596pt;}
.x59_c00097{left:131.778280pt;}
.x6f_c00097{left:133.161001pt;}
.x11_c00097{left:136.149627pt;}
.x7e_c00097{left:137.830437pt;}
.xb_c00097{left:140.130907pt;}
.x3e_c00097{left:141.425333pt;}
.x2b_c00097{left:143.421040pt;}
.x55_c00097{left:144.421923pt;}
.x79_c00097{left:145.454969pt;}
.x44_c00097{left:146.532000pt;}
.x20_c00097{left:148.101973pt;}
.x12_c00097{left:151.031547pt;}
.x4c_c00097{left:153.396467pt;}
.x7f_c00097{left:154.643839pt;}
.xc_c00097{left:158.141093pt;}
.x7a_c00097{left:161.414463pt;}
.x1_c00097{left:163.920000pt;}
.x5a_c00097{left:165.075947pt;}
.x6d_c00097{left:166.629411pt;}
.x6_c00097{left:168.301333pt;}
.x45_c00097{left:169.481333pt;}
.x56_c00097{left:171.252324pt;}
.x4d_c00097{left:177.151133pt;}
.x66_c00097{left:179.812299pt;}
.x13_c00097{left:180.796747pt;}
.x18_c00097{left:182.566240pt;}
.x26_c00097{left:183.980693pt;}
.x5b_c00097{left:186.393760pt;}
.x2c_c00097{left:188.260133pt;}
.x6a_c00097{left:191.225891pt;}
.x19_c00097{left:192.572187pt;}
.x74_c00097{left:193.713625pt;}
.x35_c00097{left:195.426107pt;}
.x64_c00097{left:196.658667pt;}
.x46_c00097{left:197.890667pt;}
.x3f_c00097{left:200.302667pt;}
.x7_c00097{left:205.729333pt;}
.x76_c00097{left:207.488915pt;}
.x5f_c00097{left:208.912951pt;}
.x36_c00097{left:209.919733pt;}
.x31_c00097{left:211.595733pt;}
.x50_c00097{left:214.247113pt;}
.x1a_c00097{left:215.178880pt;}
.x21_c00097{left:219.395813pt;}
.xd_c00097{left:221.114800pt;}
.x40_c00097{left:224.068000pt;}
.x57_c00097{left:225.259877pt;}
.x51_c00097{left:228.320289pt;}
.x4e_c00097{left:229.331133pt;}
.x77_c00097{left:231.007251pt;}
.x67_c00097{left:232.632116pt;}
.x32_c00097{left:233.824613pt;}
.x82_c00097{left:234.983244pt;}
.x14_c00097{left:236.944320pt;}
.xe_c00097{left:238.801040pt;}
.x70_c00097{left:240.375668pt;}
.x2d_c00097{left:242.947040pt;}
.x75_c00097{left:244.210944pt;}
.x52_c00097{left:245.387051pt;}
.x58_c00097{left:248.796329pt;}
.x47_c00097{left:250.234667pt;}
.x7b_c00097{left:251.621297pt;}
.x6b_c00097{left:254.179840pt;}
.x73_c00097{left:255.807892pt;}
.x80_c00097{left:257.236751pt;}
.x8_c00097{left:258.302667pt;}
.x60_c00097{left:259.322243pt;}
.x2e_c00097{left:260.468027pt;}
.x7c_c00097{left:264.664395pt;}
.x3b_c00097{left:267.610667pt;}
.x27_c00097{left:271.014960pt;}
.x5c_c00097{left:272.125069pt;}
.x4f_c00097{left:273.416467pt;}
.xf_c00097{left:274.996080pt;}
.x33_c00097{left:276.534427pt;}
.x48_c00097{left:277.553333pt;}
.x1b_c00097{left:278.993387pt;}
.x6e_c00097{left:280.524272pt;}
.x37_c00097{left:281.599840pt;}
.x28_c00097{left:283.972027pt;}
.x22_c00097{left:287.329627pt;}
.x15_c00097{left:291.277147pt;}
.x1c_c00097{left:293.928960pt;}
.x68_c00097{left:296.015637pt;}
.x3c_c00097{left:302.022667pt;}
.x86_c00097{left:326.640000pt;}
.x87_c00097{left:327.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00098 {
    display:none;
  }
  .loading-indicator_c00098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00098 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00098 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00098" -> "#page-container .classname_c00098")
 */
.pf_c00098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00098 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00098 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00098 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00098 {overflow:visible;}
  }
}
.c_c00098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00098 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00098:after { /* webkit #35443 */
  content: '';
}
.t_c00098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00098 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00098 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00098 { /* info for Javascript */
  display:none;
}
.l_c00098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00098:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00098 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00098.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00098{transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.077735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077735,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.104020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104020,0.000000,0.000000,0.250000,0,0);}
.ma0_c00098{transform:matrix(0.112710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112710,0.000000,0.000000,0.250000,0,0);}
.ma5_c00098{transform:matrix(0.117895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117895,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.130480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130480,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.130715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130715,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.me8_c00098{transform:matrix(0.141720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141720,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);}
.mcc_c00098{transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.150315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150315,0.000000,0.000000,0.250000,0,0);}
.mdf_c00098{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.mee_c00098{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.mb0_c00098{transform:matrix(0.153385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153385,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.154045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154045,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);}
.md4_c00098{transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.mde_c00098{transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);}
.mc8_c00098{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m9b_c00098{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.mb6_c00098{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.mc0_c00098{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.mb7_c00098{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.163060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163060,0.000000,0.000000,0.250000,0,0);}
.mc5_c00098{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);}
.m87_c00098{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165135,0.000000,0.000000,0.250000,0,0);}
.m7f_c00098{transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);}
.mdd_c00098{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.meb_c00098{transform:matrix(0.165555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165555,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.mb1_c00098{transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);}
.m97_c00098{transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);}
.mcd_c00098{transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.md0_c00098{transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);}
.mcb_c00098{transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00098{transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);}
.mec_c00098{transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170185,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.mc9_c00098{transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);}
.me9_c00098{transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172105,0.000000,0.000000,0.250000,0,0);}
.md6_c00098{transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);}
.mc2_c00098{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.mab_c00098{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.me2_c00098{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m81_c00098{transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);}
.m94_c00098{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m80_c00098{transform:matrix(0.173970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173970,0.000000,0.000000,0.250000,0,0);}
.mcf_c00098{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m96_c00098{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.mce_c00098{transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);}
.mea_c00098{transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m7e_c00098{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.mbe_c00098{transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.ma6_c00098{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00098{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m95_c00098{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.mbf_c00098{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.m7b_c00098{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m8b_c00098{transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);}
.md5_c00098{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.mb2_c00098{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.md1_c00098{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.me4_c00098{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.mef_c00098{transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);}
.m76_c00098{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.me0_c00098{transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);}
.md2_c00098{transform:matrix(0.185805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185805,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);}
.mca_c00098{transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.mdb_c00098{transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);}
.mbc_c00098{transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.med_c00098{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{transform:matrix(0.188295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188295,0.000000,0.000000,0.250000,0,0);}
.maa_c00098{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.ma1_c00098{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.ma4_c00098{transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.mb5_c00098{transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00098{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00098{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m7c_c00098{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);}
.m7d_c00098{transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);}
.mb4_c00098{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.m83_c00098{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.me7_c00098{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.mdc_c00098{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.mc4_c00098{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);}
.me5_c00098{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);}
.md7_c00098{transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195385,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);}
.me1_c00098{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.mc7_c00098{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.m77_c00098{transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);}
.mbb_c00098{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.mc1_c00098{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.ma8_c00098{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.mb9_c00098{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.md9_c00098{transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);}
.m82_c00098{transform:matrix(0.201610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201610,0.000000,0.000000,0.250000,0,0);}
.me6_c00098{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.ma2_c00098{transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);}
.mb8_c00098{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.mae_c00098{transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);}
.ma7_c00098{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.mac_c00098{transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);}
.m86_c00098{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.ma9_c00098{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.mbd_c00098{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.md3_c00098{transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.me3_c00098{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.maf_c00098{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m92_c00098{transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);}
.m75_c00098{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);}
.m84_c00098{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);}
.m90_c00098{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);}
.m93_c00098{transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);}
.m85_c00098{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m74_c00098{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.mad_c00098{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213195,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00098{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.214535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.mf0_c00098{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00098{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);}
.mda_c00098{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m8c_c00098{transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);}
.md8_c00098{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{transform:matrix(0.225035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225035,0.000000,0.000000,0.250000,0,0);}
.m91_c00098{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.m8f_c00098{transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);}
.m72_c00098{transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);}
.m8e_c00098{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m88_c00098{transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);}
.mc3_c00098{transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);}
.mba_c00098{transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m71_c00098{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.340080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340080,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.348830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348830,0.000000,0.000000,0.250000,0,0);}
.m98_c00098{transform:matrix(0.431115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431115,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
.fc0_c00098{color:transparent;}
.fsb_c00098{font-size:59.850000px;}
.fs9_c00098{font-size:61.950000px;}
.fs2_c00098{font-size:63.000000px;}
.fs7_c00098{font-size:64.050000px;}
.fs5_c00098{font-size:65.100000px;}
.fsc_c00098{font-size:66.150000px;}
.fsd_c00098{font-size:67.200000px;}
.fsa_c00098{font-size:68.250000px;}
.fs4_c00098{font-size:69.300000px;}
.fs8_c00098{font-size:70.350000px;}
.fs3_c00098{font-size:71.400000px;}
.fs1_c00098{font-size:73.500000px;}
.fs6_c00098{font-size:74.550000px;}
.fse_c00098{font-size:76.650000px;}
.fs0_c00098{font-size:113.400000px;}
.y0_c00098{bottom:0.000000px;}
.yf5_c00098{bottom:24.481500px;}
.yf4_c00098{bottom:26.590500px;}
.yf3_c00098{bottom:27.349500px;}
.yf2_c00098{bottom:28.095000px;}
.yf1_c00098{bottom:30.010500px;}
.yf0_c00098{bottom:31.471500px;}
.yef_c00098{bottom:32.142000px;}
.yee_c00098{bottom:34.756500px;}
.yed_c00098{bottom:35.389500px;}
.yec_c00098{bottom:43.653000px;}
.yeb_c00098{bottom:44.161500px;}
.yea_c00098{bottom:46.081500px;}
.ye9_c00098{bottom:47.095500px;}
.ye8_c00098{bottom:49.410000px;}
.ye7_c00098{bottom:50.296500px;}
.ye6_c00098{bottom:52.341000px;}
.ye5_c00098{bottom:54.288000px;}
.ye4_c00098{bottom:61.837500px;}
.ye3_c00098{bottom:63.282000px;}
.ye2_c00098{bottom:64.407000px;}
.ye1_c00098{bottom:66.652500px;}
.ye0_c00098{bottom:68.272500px;}
.ydf_c00098{bottom:71.301000px;}
.yde_c00098{bottom:77.775000px;}
.ydd_c00098{bottom:78.489000px;}
.ydc_c00098{bottom:78.822000px;}
.ydb_c00098{bottom:79.890000px;}
.yda_c00098{bottom:80.370000px;}
.yd9_c00098{bottom:81.460500px;}
.yd8_c00098{bottom:81.987000px;}
.yd7_c00098{bottom:82.477500px;}
.yd6_c00098{bottom:83.304000px;}
.yd5_c00098{bottom:83.979000px;}
.yd4_c00098{bottom:96.450000px;}
.yd3_c00098{bottom:99.400500px;}
.yd2_c00098{bottom:101.670000px;}
.yd1_c00098{bottom:103.638000px;}
.yd0_c00098{bottom:104.608500px;}
.ycf_c00098{bottom:105.925500px;}
.yce_c00098{bottom:109.368000px;}
.ycd_c00098{bottom:114.621000px;}
.ycc_c00098{bottom:115.224000px;}
.ycb_c00098{bottom:115.855500px;}
.yca_c00098{bottom:117.288000px;}
.yc9_c00098{bottom:117.745500px;}
.yc8_c00098{bottom:118.690500px;}
.yc7_c00098{bottom:120.246000px;}
.yc6_c00098{bottom:121.242000px;}
.yc5_c00098{bottom:131.341500px;}
.yc4_c00098{bottom:131.800500px;}
.yc3_c00098{bottom:132.684000px;}
.yc2_c00098{bottom:133.185000px;}
.yc1_c00098{bottom:133.648500px;}
.yc0_c00098{bottom:134.526000px;}
.ybf_c00098{bottom:135.553500px;}
.ybe_c00098{bottom:136.627500px;}
.ybd_c00098{bottom:147.111000px;}
.ybc_c00098{bottom:148.662000px;}
.ybb_c00098{bottom:149.361000px;}
.yba_c00098{bottom:151.032000px;}
.yb9_c00098{bottom:151.714500px;}
.yb8_c00098{bottom:153.217500px;}
.yb7_c00098{bottom:155.805000px;}
.yb6_c00098{bottom:164.866500px;}
.yb5_c00098{bottom:166.477500px;}
.yb4_c00098{bottom:167.089500px;}
.yb3_c00098{bottom:168.064500px;}
.yb2_c00098{bottom:168.460500px;}
.yb1_c00098{bottom:169.803000px;}
.yb0_c00098{bottom:171.286500px;}
.yaf_c00098{bottom:172.000500px;}
.yae_c00098{bottom:185.058000px;}
.yad_c00098{bottom:185.710500px;}
.yac_c00098{bottom:186.907500px;}
.yab_c00098{bottom:187.371000px;}
.yaa_c00098{bottom:189.712500px;}
.ya9_c00098{bottom:190.425000px;}
.ya8_c00098{bottom:192.358500px;}
.ya7_c00098{bottom:192.793500px;}
.ya6_c00098{bottom:201.460500px;}
.ya5_c00098{bottom:202.113000px;}
.ya4_c00098{bottom:204.637500px;}
.ya3_c00098{bottom:206.904000px;}
.ya2_c00098{bottom:207.561000px;}
.ya1_c00098{bottom:209.803500px;}
.ya0_c00098{bottom:217.705500px;}
.y9f_c00098{bottom:218.503500px;}
.y9e_c00098{bottom:219.883500px;}
.y9d_c00098{bottom:221.193000px;}
.y9c_c00098{bottom:221.739000px;}
.y9b_c00098{bottom:224.407500px;}
.y9a_c00098{bottom:225.255000px;}
.y99_c00098{bottom:226.173000px;}
.y98_c00098{bottom:227.085000px;}
.y97_c00098{bottom:236.235000px;}
.y96_c00098{bottom:237.199500px;}
.y95_c00098{bottom:239.647500px;}
.y94_c00098{bottom:241.768500px;}
.y93_c00098{bottom:242.731500px;}
.y92_c00098{bottom:244.086000px;}
.y91_c00098{bottom:244.362000px;}
.y90_c00098{bottom:253.696500px;}
.y8f_c00098{bottom:256.713000px;}
.y8e_c00098{bottom:258.700500px;}
.y8d_c00098{bottom:260.385000px;}
.y8c_c00098{bottom:260.767500px;}
.y8b_c00098{bottom:261.643500px;}
.y8a_c00098{bottom:272.164500px;}
.y89_c00098{bottom:272.691000px;}
.y88_c00098{bottom:274.609500px;}
.y87_c00098{bottom:275.265000px;}
.y86_c00098{bottom:275.691000px;}
.y85_c00098{bottom:277.131000px;}
.y84_c00098{bottom:277.804500px;}
.y83_c00098{bottom:279.463500px;}
.y82_c00098{bottom:288.085500px;}
.y81_c00098{bottom:289.519500px;}
.y80_c00098{bottom:290.265000px;}
.y7f_c00098{bottom:291.129000px;}
.y7e_c00098{bottom:292.974000px;}
.y7d_c00098{bottom:295.047000px;}
.y7c_c00098{bottom:295.816500px;}
.y7b_c00098{bottom:296.499000px;}
.y7a_c00098{bottom:297.276000px;}
.y79_c00098{bottom:311.079000px;}
.y78_c00098{bottom:312.825000px;}
.y77_c00098{bottom:313.743000px;}
.y76_c00098{bottom:324.580500px;}
.y75_c00098{bottom:325.075500px;}
.y74_c00098{bottom:325.879500px;}
.y73_c00098{bottom:327.457500px;}
.y72_c00098{bottom:328.000500px;}
.y71_c00098{bottom:329.017500px;}
.y70_c00098{bottom:329.797500px;}
.y6f_c00098{bottom:330.484500px;}
.y6e_c00098{bottom:341.928000px;}
.y6d_c00098{bottom:342.168000px;}
.y6c_c00098{bottom:343.387500px;}
.y6b_c00098{bottom:343.714500px;}
.y6a_c00098{bottom:344.835000px;}
.y69_c00098{bottom:345.202500px;}
.y68_c00098{bottom:346.306500px;}
.y67_c00098{bottom:347.220000px;}
.y66_c00098{bottom:357.480000px;}
.y65_c00098{bottom:358.218000px;}
.y64_c00098{bottom:358.662000px;}
.y63_c00098{bottom:359.602500px;}
.y62_c00098{bottom:360.024000px;}
.y61_c00098{bottom:361.029000px;}
.y60_c00098{bottom:361.470000px;}
.y5f_c00098{bottom:361.800000px;}
.y5e_c00098{bottom:362.358000px;}
.y5d_c00098{bottom:362.881500px;}
.y5c_c00098{bottom:375.943500px;}
.y5b_c00098{bottom:376.359000px;}
.y5a_c00098{bottom:377.875500px;}
.y59_c00098{bottom:378.420000px;}
.y58_c00098{bottom:378.870000px;}
.y57_c00098{bottom:379.180500px;}
.y56_c00098{bottom:380.247000px;}
.y55_c00098{bottom:380.932500px;}
.y54_c00098{bottom:381.783000px;}
.y53_c00098{bottom:392.370000px;}
.y52_c00098{bottom:393.144000px;}
.y51_c00098{bottom:393.465000px;}
.y50_c00098{bottom:393.849000px;}
.y4f_c00098{bottom:394.573500px;}
.y4e_c00098{bottom:394.945500px;}
.y4d_c00098{bottom:395.193000px;}
.y4c_c00098{bottom:396.075000px;}
.y4b_c00098{bottom:396.565500px;}
.y4a_c00098{bottom:397.441500px;}
.y49_c00098{bottom:409.840500px;}
.y48_c00098{bottom:410.143500px;}
.y47_c00098{bottom:410.368500px;}
.y46_c00098{bottom:411.402000px;}
.y45_c00098{bottom:412.165500px;}
.y44_c00098{bottom:412.281000px;}
.y43_c00098{bottom:412.828500px;}
.y42_c00098{bottom:427.111500px;}
.y41_c00098{bottom:428.227500px;}
.y40_c00098{bottom:428.442000px;}
.y3f_c00098{bottom:429.214500px;}
.y3e_c00098{bottom:429.990000px;}
.y3d_c00098{bottom:430.650000px;}
.y3c_c00098{bottom:444.478500px;}
.y3b_c00098{bottom:444.660000px;}
.y3a_c00098{bottom:445.647000px;}
.y39_c00098{bottom:446.535000px;}
.y38_c00098{bottom:446.871000px;}
.y37_c00098{bottom:447.426000px;}
.y36_c00098{bottom:447.624000px;}
.y35_c00098{bottom:448.470000px;}
.y34_c00098{bottom:462.001500px;}
.y33_c00098{bottom:462.865500px;}
.y32_c00098{bottom:463.128000px;}
.y31_c00098{bottom:463.509000px;}
.y30_c00098{bottom:463.972500px;}
.y2f_c00098{bottom:464.652000px;}
.y2e_c00098{bottom:465.333000px;}
.y2d_c00098{bottom:466.021500px;}
.y2c_c00098{bottom:479.416500px;}
.y2b_c00098{bottom:480.013500px;}
.y2a_c00098{bottom:480.207000px;}
.y29_c00098{bottom:480.507000px;}
.y28_c00098{bottom:480.958500px;}
.y27_c00098{bottom:482.364000px;}
.y26_c00098{bottom:482.491500px;}
.y25_c00098{bottom:497.128500px;}
.y24_c00098{bottom:498.142500px;}
.y23_c00098{bottom:499.029000px;}
.y22_c00098{bottom:499.872000px;}
.y21_c00098{bottom:501.039000px;}
.y20_c00098{bottom:501.934500px;}
.y1f_c00098{bottom:514.338000px;}
.y1e_c00098{bottom:515.047500px;}
.y1d_c00098{bottom:515.518500px;}
.y1c_c00098{bottom:515.833500px;}
.y1b_c00098{bottom:516.402000px;}
.y1a_c00098{bottom:518.260500px;}
.y19_c00098{bottom:518.943000px;}
.y18_c00098{bottom:531.831000px;}
.y17_c00098{bottom:532.087500px;}
.y16_c00098{bottom:532.978500px;}
.y15_c00098{bottom:533.814000px;}
.y14_c00098{bottom:534.192000px;}
.y13_c00098{bottom:534.589500px;}
.y12_c00098{bottom:535.411500px;}
.y11_c00098{bottom:549.847500px;}
.y10_c00098{bottom:550.635000px;}
.yf_c00098{bottom:551.293500px;}
.ye_c00098{bottom:552.276000px;}
.yd_c00098{bottom:552.775500px;}
.yc_c00098{bottom:553.375500px;}
.yb_c00098{bottom:553.773000px;}
.ya_c00098{bottom:567.532500px;}
.y9_c00098{bottom:568.593000px;}
.y8_c00098{bottom:568.878000px;}
.y7_c00098{bottom:569.022000px;}
.y6_c00098{bottom:569.664000px;}
.y5_c00098{bottom:569.913000px;}
.y4_c00098{bottom:570.400500px;}
.y3_c00098{bottom:570.723000px;}
.y2_c00098{bottom:571.053000px;}
.y1_c00098{bottom:577.956000px;}
.hd_c00098{height:59.850000px;}
.hb_c00098{height:61.950000px;}
.h4_c00098{height:63.000000px;}
.h9_c00098{height:64.050000px;}
.h7_c00098{height:65.100000px;}
.he_c00098{height:66.150000px;}
.hf_c00098{height:67.200000px;}
.hc_c00098{height:68.250000px;}
.h6_c00098{height:69.300000px;}
.ha_c00098{height:70.350000px;}
.h5_c00098{height:71.400000px;}
.h3_c00098{height:73.500000px;}
.h8_c00098{height:74.550000px;}
.h10_c00098{height:76.650000px;}
.h2_c00098{height:113.400000px;}
.h1_c00098{height:627.750000px;}
.h0_c00098{height:628.020000px;}
.w0_c00098{width:371.790000px;}
.w1_c00098{width:372.000000px;}
.x0_c00098{left:0.000000px;}
.x76_c00098{left:25.008000px;}
.x6f_c00098{left:26.107500px;}
.x66_c00098{left:27.765000px;}
.x4f_c00098{left:29.133000px;}
.x3c_c00098{left:30.241500px;}
.x19_c00098{left:31.392000px;}
.xc_c00098{left:32.524500px;}
.x3_c00098{left:33.585000px;}
.x60_c00098{left:37.747500px;}
.x23_c00098{left:41.478000px;}
.x3a_c00098{left:43.873500px;}
.x2a_c00098{left:45.475500px;}
.x36_c00098{left:48.162000px;}
.x24_c00098{left:53.044500px;}
.x54_c00098{left:54.117000px;}
.x5c_c00098{left:55.644000px;}
.x46_c00098{left:57.796500px;}
.x4_c00098{left:58.947000px;}
.xd_c00098{left:60.903000px;}
.x7b_c00098{left:63.292500px;}
.x42_c00098{left:66.229500px;}
.x5d_c00098{left:67.617000px;}
.x1a_c00098{left:74.067000px;}
.x55_c00098{left:75.442500px;}
.x3d_c00098{left:78.894000px;}
.x58_c00098{left:80.280000px;}
.x77_c00098{left:81.505500px;}
.x64_c00098{left:82.641000px;}
.x5_c00098{left:83.811000px;}
.x1f_c00098{left:85.675500px;}
.x47_c00098{left:87.139500px;}
.x2b_c00098{left:91.365000px;}
.x30_c00098{left:92.659500px;}
.x67_c00098{left:93.715500px;}
.x43_c00098{left:94.794000px;}
.x13_c00098{left:95.997000px;}
.x37_c00098{left:98.934000px;}
.x6b_c00098{left:100.318500px;}
.x59_c00098{left:101.335500px;}
.xe_c00098{left:103.779000px;}
.x31_c00098{left:106.756500px;}
.x61_c00098{left:110.154000px;}
.x68_c00098{left:113.023500px;}
.x70_c00098{left:114.045000px;}
.x84_c00098{left:115.537500px;}
.x86_c00098{left:118.588500px;}
.x5e_c00098{left:120.247500px;}
.x6_c00098{left:121.306500px;}
.x7c_c00098{left:123.139500px;}
.x81_c00098{left:125.311500px;}
.x14_c00098{left:126.526500px;}
.x48_c00098{left:127.758000px;}
.x78_c00098{left:135.562500px;}
.x2c_c00098{left:136.783500px;}
.xf_c00098{left:139.419000px;}
.x7_c00098{left:140.508000px;}
.x32_c00098{left:146.442000px;}
.x50_c00098{left:147.454500px;}
.x7d_c00098{left:149.617500px;}
.x44_c00098{left:152.137500px;}
.x20_c00098{left:154.291500px;}
.x15_c00098{left:155.587500px;}
.x38_c00098{left:158.601000px;}
.x5a_c00098{left:159.655500px;}
.x75_c00098{left:161.484000px;}
.x56_c00098{left:164.242500px;}
.x71_c00098{left:167.734500px;}
.x3e_c00098{left:168.892500px;}
.x33_c00098{left:170.470500px;}
.x1_c00098{left:171.720000px;}
.x3b_c00098{left:173.478000px;}
.x62_c00098{left:176.454000px;}
.x69_c00098{left:179.673000px;}
.x25_c00098{left:180.760500px;}
.x2d_c00098{left:182.064000px;}
.x72_c00098{left:183.546000px;}
.x53_c00098{left:185.910000px;}
.x8_c00098{left:189.924000px;}
.x7e_c00098{left:192.385500px;}
.x45_c00098{left:193.596000px;}
.x9_c00098{left:200.982000px;}
.x49_c00098{left:202.816500px;}
.x21_c00098{left:203.907000px;}
.x6c_c00098{left:206.886000px;}
.x10_c00098{left:209.608500px;}
.x2e_c00098{left:212.914500px;}
.x4c_c00098{left:214.536000px;}
.x39_c00098{left:217.995000px;}
.x16_c00098{left:219.889500px;}
.x26_c00098{left:221.830500px;}
.xa_c00098{left:222.852000px;}
.x1b_c00098{left:225.781500px;}
.x87_c00098{left:227.938500px;}
.x3f_c00098{left:229.824000px;}
.x4d_c00098{left:231.753000px;}
.x34_c00098{left:233.911500px;}
.x85_c00098{left:237.246000px;}
.x2f_c00098{left:238.293000px;}
.x5b_c00098{left:240.136500px;}
.x7f_c00098{left:241.728000px;}
.x6d_c00098{left:243.171000px;}
.x1c_c00098{left:245.499000px;}
.x73_c00098{left:247.030500px;}
.x27_c00098{left:249.067500px;}
.x40_c00098{left:251.146500px;}
.x4a_c00098{left:252.301500px;}
.x6a_c00098{left:253.929000px;}
.x11_c00098{left:256.597500px;}
.x2_c00098{left:259.470000px;}
.x6e_c00098{left:262.930500px;}
.x28_c00098{left:266.625000px;}
.x41_c00098{left:268.971000px;}
.x57_c00098{left:272.244000px;}
.x1d_c00098{left:274.977000px;}
.x5f_c00098{left:276.625500px;}
.x79_c00098{left:279.060000px;}
.x65_c00098{left:281.196000px;}
.x63_c00098{left:283.123500px;}
.x51_c00098{left:286.735500px;}
.x17_c00098{left:288.462000px;}
.x82_c00098{left:291.909000px;}
.x4e_c00098{left:295.974000px;}
.x7a_c00098{left:303.249000px;}
.xb_c00098{left:304.396500px;}
.x80_c00098{left:305.865000px;}
.x18_c00098{left:308.224500px;}
.x52_c00098{left:310.329000px;}
.x74_c00098{left:311.500500px;}
.x12_c00098{left:312.819000px;}
.x4b_c00098{left:314.557500px;}
.x22_c00098{left:315.687000px;}
.x35_c00098{left:317.340000px;}
.x1e_c00098{left:319.279500px;}
.x29_c00098{left:320.892000px;}
.x83_c00098{left:325.908000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fsb_c00098{font-size:53.200000pt;}
.fs9_c00098{font-size:55.066667pt;}
.fs2_c00098{font-size:56.000000pt;}
.fs7_c00098{font-size:56.933333pt;}
.fs5_c00098{font-size:57.866667pt;}
.fsc_c00098{font-size:58.800000pt;}
.fsd_c00098{font-size:59.733333pt;}
.fsa_c00098{font-size:60.666667pt;}
.fs4_c00098{font-size:61.600000pt;}
.fs8_c00098{font-size:62.533333pt;}
.fs3_c00098{font-size:63.466667pt;}
.fs1_c00098{font-size:65.333333pt;}
.fs6_c00098{font-size:66.266667pt;}
.fse_c00098{font-size:68.133333pt;}
.fs0_c00098{font-size:100.800000pt;}
.y0_c00098{bottom:0.000000pt;}
.yf5_c00098{bottom:21.761333pt;}
.yf4_c00098{bottom:23.636000pt;}
.yf3_c00098{bottom:24.310667pt;}
.yf2_c00098{bottom:24.973333pt;}
.yf1_c00098{bottom:26.676000pt;}
.yf0_c00098{bottom:27.974667pt;}
.yef_c00098{bottom:28.570667pt;}
.yee_c00098{bottom:30.894667pt;}
.yed_c00098{bottom:31.457333pt;}
.yec_c00098{bottom:38.802667pt;}
.yeb_c00098{bottom:39.254667pt;}
.yea_c00098{bottom:40.961333pt;}
.ye9_c00098{bottom:41.862667pt;}
.ye8_c00098{bottom:43.920000pt;}
.ye7_c00098{bottom:44.708000pt;}
.ye6_c00098{bottom:46.525333pt;}
.ye5_c00098{bottom:48.256000pt;}
.ye4_c00098{bottom:54.966667pt;}
.ye3_c00098{bottom:56.250667pt;}
.ye2_c00098{bottom:57.250667pt;}
.ye1_c00098{bottom:59.246667pt;}
.ye0_c00098{bottom:60.686667pt;}
.ydf_c00098{bottom:63.378667pt;}
.yde_c00098{bottom:69.133333pt;}
.ydd_c00098{bottom:69.768000pt;}
.ydc_c00098{bottom:70.064000pt;}
.ydb_c00098{bottom:71.013333pt;}
.yda_c00098{bottom:71.440000pt;}
.yd9_c00098{bottom:72.409333pt;}
.yd8_c00098{bottom:72.877333pt;}
.yd7_c00098{bottom:73.313333pt;}
.yd6_c00098{bottom:74.048000pt;}
.yd5_c00098{bottom:74.648000pt;}
.yd4_c00098{bottom:85.733333pt;}
.yd3_c00098{bottom:88.356000pt;}
.yd2_c00098{bottom:90.373333pt;}
.yd1_c00098{bottom:92.122667pt;}
.yd0_c00098{bottom:92.985333pt;}
.ycf_c00098{bottom:94.156000pt;}
.yce_c00098{bottom:97.216000pt;}
.ycd_c00098{bottom:101.885333pt;}
.ycc_c00098{bottom:102.421333pt;}
.ycb_c00098{bottom:102.982667pt;}
.yca_c00098{bottom:104.256000pt;}
.yc9_c00098{bottom:104.662667pt;}
.yc8_c00098{bottom:105.502667pt;}
.yc7_c00098{bottom:106.885333pt;}
.yc6_c00098{bottom:107.770667pt;}
.yc5_c00098{bottom:116.748000pt;}
.yc4_c00098{bottom:117.156000pt;}
.yc3_c00098{bottom:117.941333pt;}
.yc2_c00098{bottom:118.386667pt;}
.yc1_c00098{bottom:118.798667pt;}
.yc0_c00098{bottom:119.578667pt;}
.ybf_c00098{bottom:120.492000pt;}
.ybe_c00098{bottom:121.446667pt;}
.ybd_c00098{bottom:130.765333pt;}
.ybc_c00098{bottom:132.144000pt;}
.ybb_c00098{bottom:132.765333pt;}
.yba_c00098{bottom:134.250667pt;}
.yb9_c00098{bottom:134.857333pt;}
.yb8_c00098{bottom:136.193333pt;}
.yb7_c00098{bottom:138.493333pt;}
.yb6_c00098{bottom:146.548000pt;}
.yb5_c00098{bottom:147.980000pt;}
.yb4_c00098{bottom:148.524000pt;}
.yb3_c00098{bottom:149.390667pt;}
.yb2_c00098{bottom:149.742667pt;}
.yb1_c00098{bottom:150.936000pt;}
.yb0_c00098{bottom:152.254667pt;}
.yaf_c00098{bottom:152.889333pt;}
.yae_c00098{bottom:164.496000pt;}
.yad_c00098{bottom:165.076000pt;}
.yac_c00098{bottom:166.140000pt;}
.yab_c00098{bottom:166.552000pt;}
.yaa_c00098{bottom:168.633333pt;}
.ya9_c00098{bottom:169.266667pt;}
.ya8_c00098{bottom:170.985333pt;}
.ya7_c00098{bottom:171.372000pt;}
.ya6_c00098{bottom:179.076000pt;}
.ya5_c00098{bottom:179.656000pt;}
.ya4_c00098{bottom:181.900000pt;}
.ya3_c00098{bottom:183.914667pt;}
.ya2_c00098{bottom:184.498667pt;}
.ya1_c00098{bottom:186.492000pt;}
.ya0_c00098{bottom:193.516000pt;}
.y9f_c00098{bottom:194.225333pt;}
.y9e_c00098{bottom:195.452000pt;}
.y9d_c00098{bottom:196.616000pt;}
.y9c_c00098{bottom:197.101333pt;}
.y9b_c00098{bottom:199.473333pt;}
.y9a_c00098{bottom:200.226667pt;}
.y99_c00098{bottom:201.042667pt;}
.y98_c00098{bottom:201.853333pt;}
.y97_c00098{bottom:209.986667pt;}
.y96_c00098{bottom:210.844000pt;}
.y95_c00098{bottom:213.020000pt;}
.y94_c00098{bottom:214.905333pt;}
.y93_c00098{bottom:215.761333pt;}
.y92_c00098{bottom:216.965333pt;}
.y91_c00098{bottom:217.210667pt;}
.y90_c00098{bottom:225.508000pt;}
.y8f_c00098{bottom:228.189333pt;}
.y8e_c00098{bottom:229.956000pt;}
.y8d_c00098{bottom:231.453333pt;}
.y8c_c00098{bottom:231.793333pt;}
.y8b_c00098{bottom:232.572000pt;}
.y8a_c00098{bottom:241.924000pt;}
.y89_c00098{bottom:242.392000pt;}
.y88_c00098{bottom:244.097333pt;}
.y87_c00098{bottom:244.680000pt;}
.y86_c00098{bottom:245.058667pt;}
.y85_c00098{bottom:246.338667pt;}
.y84_c00098{bottom:246.937333pt;}
.y83_c00098{bottom:248.412000pt;}
.y82_c00098{bottom:256.076000pt;}
.y81_c00098{bottom:257.350667pt;}
.y80_c00098{bottom:258.013333pt;}
.y7f_c00098{bottom:258.781333pt;}
.y7e_c00098{bottom:260.421333pt;}
.y7d_c00098{bottom:262.264000pt;}
.y7c_c00098{bottom:262.948000pt;}
.y7b_c00098{bottom:263.554667pt;}
.y7a_c00098{bottom:264.245333pt;}
.y79_c00098{bottom:276.514667pt;}
.y78_c00098{bottom:278.066667pt;}
.y77_c00098{bottom:278.882667pt;}
.y76_c00098{bottom:288.516000pt;}
.y75_c00098{bottom:288.956000pt;}
.y74_c00098{bottom:289.670667pt;}
.y73_c00098{bottom:291.073333pt;}
.y72_c00098{bottom:291.556000pt;}
.y71_c00098{bottom:292.460000pt;}
.y70_c00098{bottom:293.153333pt;}
.y6f_c00098{bottom:293.764000pt;}
.y6e_c00098{bottom:303.936000pt;}
.y6d_c00098{bottom:304.149333pt;}
.y6c_c00098{bottom:305.233333pt;}
.y6b_c00098{bottom:305.524000pt;}
.y6a_c00098{bottom:306.520000pt;}
.y69_c00098{bottom:306.846667pt;}
.y68_c00098{bottom:307.828000pt;}
.y67_c00098{bottom:308.640000pt;}
.y66_c00098{bottom:317.760000pt;}
.y65_c00098{bottom:318.416000pt;}
.y64_c00098{bottom:318.810667pt;}
.y63_c00098{bottom:319.646667pt;}
.y62_c00098{bottom:320.021333pt;}
.y61_c00098{bottom:320.914667pt;}
.y60_c00098{bottom:321.306667pt;}
.y5f_c00098{bottom:321.600000pt;}
.y5e_c00098{bottom:322.096000pt;}
.y5d_c00098{bottom:322.561333pt;}
.y5c_c00098{bottom:334.172000pt;}
.y5b_c00098{bottom:334.541333pt;}
.y5a_c00098{bottom:335.889333pt;}
.y59_c00098{bottom:336.373333pt;}
.y58_c00098{bottom:336.773333pt;}
.y57_c00098{bottom:337.049333pt;}
.y56_c00098{bottom:337.997333pt;}
.y55_c00098{bottom:338.606667pt;}
.y54_c00098{bottom:339.362667pt;}
.y53_c00098{bottom:348.773333pt;}
.y52_c00098{bottom:349.461333pt;}
.y51_c00098{bottom:349.746667pt;}
.y50_c00098{bottom:350.088000pt;}
.y4f_c00098{bottom:350.732000pt;}
.y4e_c00098{bottom:351.062667pt;}
.y4d_c00098{bottom:351.282667pt;}
.y4c_c00098{bottom:352.066667pt;}
.y4b_c00098{bottom:352.502667pt;}
.y4a_c00098{bottom:353.281333pt;}
.y49_c00098{bottom:364.302667pt;}
.y48_c00098{bottom:364.572000pt;}
.y47_c00098{bottom:364.772000pt;}
.y46_c00098{bottom:365.690667pt;}
.y45_c00098{bottom:366.369333pt;}
.y44_c00098{bottom:366.472000pt;}
.y43_c00098{bottom:366.958667pt;}
.y42_c00098{bottom:379.654667pt;}
.y41_c00098{bottom:380.646667pt;}
.y40_c00098{bottom:380.837333pt;}
.y3f_c00098{bottom:381.524000pt;}
.y3e_c00098{bottom:382.213333pt;}
.y3d_c00098{bottom:382.800000pt;}
.y3c_c00098{bottom:395.092000pt;}
.y3b_c00098{bottom:395.253333pt;}
.y3a_c00098{bottom:396.130667pt;}
.y39_c00098{bottom:396.920000pt;}
.y38_c00098{bottom:397.218667pt;}
.y37_c00098{bottom:397.712000pt;}
.y36_c00098{bottom:397.888000pt;}
.y35_c00098{bottom:398.640000pt;}
.y34_c00098{bottom:410.668000pt;}
.y33_c00098{bottom:411.436000pt;}
.y32_c00098{bottom:411.669333pt;}
.y31_c00098{bottom:412.008000pt;}
.y30_c00098{bottom:412.420000pt;}
.y2f_c00098{bottom:413.024000pt;}
.y2e_c00098{bottom:413.629333pt;}
.y2d_c00098{bottom:414.241333pt;}
.y2c_c00098{bottom:426.148000pt;}
.y2b_c00098{bottom:426.678667pt;}
.y2a_c00098{bottom:426.850667pt;}
.y29_c00098{bottom:427.117333pt;}
.y28_c00098{bottom:427.518667pt;}
.y27_c00098{bottom:428.768000pt;}
.y26_c00098{bottom:428.881333pt;}
.y25_c00098{bottom:441.892000pt;}
.y24_c00098{bottom:442.793333pt;}
.y23_c00098{bottom:443.581333pt;}
.y22_c00098{bottom:444.330667pt;}
.y21_c00098{bottom:445.368000pt;}
.y20_c00098{bottom:446.164000pt;}
.y1f_c00098{bottom:457.189333pt;}
.y1e_c00098{bottom:457.820000pt;}
.y1d_c00098{bottom:458.238667pt;}
.y1c_c00098{bottom:458.518667pt;}
.y1b_c00098{bottom:459.024000pt;}
.y1a_c00098{bottom:460.676000pt;}
.y19_c00098{bottom:461.282667pt;}
.y18_c00098{bottom:472.738667pt;}
.y17_c00098{bottom:472.966667pt;}
.y16_c00098{bottom:473.758667pt;}
.y15_c00098{bottom:474.501333pt;}
.y14_c00098{bottom:474.837333pt;}
.y13_c00098{bottom:475.190667pt;}
.y12_c00098{bottom:475.921333pt;}
.y11_c00098{bottom:488.753333pt;}
.y10_c00098{bottom:489.453333pt;}
.yf_c00098{bottom:490.038667pt;}
.ye_c00098{bottom:490.912000pt;}
.yd_c00098{bottom:491.356000pt;}
.yc_c00098{bottom:491.889333pt;}
.yb_c00098{bottom:492.242667pt;}
.ya_c00098{bottom:504.473333pt;}
.y9_c00098{bottom:505.416000pt;}
.y8_c00098{bottom:505.669333pt;}
.y7_c00098{bottom:505.797333pt;}
.y6_c00098{bottom:506.368000pt;}
.y5_c00098{bottom:506.589333pt;}
.y4_c00098{bottom:507.022667pt;}
.y3_c00098{bottom:507.309333pt;}
.y2_c00098{bottom:507.602667pt;}
.y1_c00098{bottom:513.738667pt;}
.hd_c00098{height:53.200000pt;}
.hb_c00098{height:55.066667pt;}
.h4_c00098{height:56.000000pt;}
.h9_c00098{height:56.933333pt;}
.h7_c00098{height:57.866667pt;}
.he_c00098{height:58.800000pt;}
.hf_c00098{height:59.733333pt;}
.hc_c00098{height:60.666667pt;}
.h6_c00098{height:61.600000pt;}
.ha_c00098{height:62.533333pt;}
.h5_c00098{height:63.466667pt;}
.h3_c00098{height:65.333333pt;}
.h8_c00098{height:66.266667pt;}
.h10_c00098{height:68.133333pt;}
.h2_c00098{height:100.800000pt;}
.h1_c00098{height:558.000000pt;}
.h0_c00098{height:558.240000pt;}
.w0_c00098{width:330.480000pt;}
.w1_c00098{width:330.666667pt;}
.x0_c00098{left:0.000000pt;}
.x76_c00098{left:22.229333pt;}
.x6f_c00098{left:23.206667pt;}
.x66_c00098{left:24.680000pt;}
.x4f_c00098{left:25.896000pt;}
.x3c_c00098{left:26.881333pt;}
.x19_c00098{left:27.904000pt;}
.xc_c00098{left:28.910667pt;}
.x3_c00098{left:29.853333pt;}
.x60_c00098{left:33.553333pt;}
.x23_c00098{left:36.869333pt;}
.x3a_c00098{left:38.998667pt;}
.x2a_c00098{left:40.422667pt;}
.x36_c00098{left:42.810667pt;}
.x24_c00098{left:47.150667pt;}
.x54_c00098{left:48.104000pt;}
.x5c_c00098{left:49.461333pt;}
.x46_c00098{left:51.374667pt;}
.x4_c00098{left:52.397333pt;}
.xd_c00098{left:54.136000pt;}
.x7b_c00098{left:56.260000pt;}
.x42_c00098{left:58.870667pt;}
.x5d_c00098{left:60.104000pt;}
.x1a_c00098{left:65.837333pt;}
.x55_c00098{left:67.060000pt;}
.x3d_c00098{left:70.128000pt;}
.x58_c00098{left:71.360000pt;}
.x77_c00098{left:72.449333pt;}
.x64_c00098{left:73.458667pt;}
.x5_c00098{left:74.498667pt;}
.x1f_c00098{left:76.156000pt;}
.x47_c00098{left:77.457333pt;}
.x2b_c00098{left:81.213333pt;}
.x30_c00098{left:82.364000pt;}
.x67_c00098{left:83.302667pt;}
.x43_c00098{left:84.261333pt;}
.x13_c00098{left:85.330667pt;}
.x37_c00098{left:87.941333pt;}
.x6b_c00098{left:89.172000pt;}
.x59_c00098{left:90.076000pt;}
.xe_c00098{left:92.248000pt;}
.x31_c00098{left:94.894667pt;}
.x61_c00098{left:97.914667pt;}
.x68_c00098{left:100.465333pt;}
.x70_c00098{left:101.373333pt;}
.x84_c00098{left:102.700000pt;}
.x86_c00098{left:105.412000pt;}
.x5e_c00098{left:106.886667pt;}
.x6_c00098{left:107.828000pt;}
.x7c_c00098{left:109.457333pt;}
.x81_c00098{left:111.388000pt;}
.x14_c00098{left:112.468000pt;}
.x48_c00098{left:113.562667pt;}
.x78_c00098{left:120.500000pt;}
.x2c_c00098{left:121.585333pt;}
.xf_c00098{left:123.928000pt;}
.x7_c00098{left:124.896000pt;}
.x32_c00098{left:130.170667pt;}
.x50_c00098{left:131.070667pt;}
.x7d_c00098{left:132.993333pt;}
.x44_c00098{left:135.233333pt;}
.x20_c00098{left:137.148000pt;}
.x15_c00098{left:138.300000pt;}
.x38_c00098{left:140.978667pt;}
.x5a_c00098{left:141.916000pt;}
.x75_c00098{left:143.541333pt;}
.x56_c00098{left:145.993333pt;}
.x71_c00098{left:149.097333pt;}
.x3e_c00098{left:150.126667pt;}
.x33_c00098{left:151.529333pt;}
.x1_c00098{left:152.640000pt;}
.x3b_c00098{left:154.202667pt;}
.x62_c00098{left:156.848000pt;}
.x69_c00098{left:159.709333pt;}
.x25_c00098{left:160.676000pt;}
.x2d_c00098{left:161.834667pt;}
.x72_c00098{left:163.152000pt;}
.x53_c00098{left:165.253333pt;}
.x8_c00098{left:168.821333pt;}
.x7e_c00098{left:171.009333pt;}
.x45_c00098{left:172.085333pt;}
.x9_c00098{left:178.650667pt;}
.x49_c00098{left:180.281333pt;}
.x21_c00098{left:181.250667pt;}
.x6c_c00098{left:183.898667pt;}
.x10_c00098{left:186.318667pt;}
.x2e_c00098{left:189.257333pt;}
.x4c_c00098{left:190.698667pt;}
.x39_c00098{left:193.773333pt;}
.x16_c00098{left:195.457333pt;}
.x26_c00098{left:197.182667pt;}
.xa_c00098{left:198.090667pt;}
.x1b_c00098{left:200.694667pt;}
.x87_c00098{left:202.612000pt;}
.x3f_c00098{left:204.288000pt;}
.x4d_c00098{left:206.002667pt;}
.x34_c00098{left:207.921333pt;}
.x85_c00098{left:210.885333pt;}
.x2f_c00098{left:211.816000pt;}
.x5b_c00098{left:213.454667pt;}
.x7f_c00098{left:214.869333pt;}
.x6d_c00098{left:216.152000pt;}
.x1c_c00098{left:218.221333pt;}
.x73_c00098{left:219.582667pt;}
.x27_c00098{left:221.393333pt;}
.x40_c00098{left:223.241333pt;}
.x4a_c00098{left:224.268000pt;}
.x6a_c00098{left:225.714667pt;}
.x11_c00098{left:228.086667pt;}
.x2_c00098{left:230.640000pt;}
.x6e_c00098{left:233.716000pt;}
.x28_c00098{left:237.000000pt;}
.x41_c00098{left:239.085333pt;}
.x57_c00098{left:241.994667pt;}
.x1d_c00098{left:244.424000pt;}
.x5f_c00098{left:245.889333pt;}
.x79_c00098{left:248.053333pt;}
.x65_c00098{left:249.952000pt;}
.x63_c00098{left:251.665333pt;}
.x51_c00098{left:254.876000pt;}
.x17_c00098{left:256.410667pt;}
.x82_c00098{left:259.474667pt;}
.x4e_c00098{left:263.088000pt;}
.x7a_c00098{left:269.554667pt;}
.xb_c00098{left:270.574667pt;}
.x80_c00098{left:271.880000pt;}
.x18_c00098{left:273.977333pt;}
.x52_c00098{left:275.848000pt;}
.x74_c00098{left:276.889333pt;}
.x12_c00098{left:278.061333pt;}
.x4b_c00098{left:279.606667pt;}
.x22_c00098{left:280.610667pt;}
.x35_c00098{left:282.080000pt;}
.x1e_c00098{left:283.804000pt;}
.x29_c00098{left:285.237333pt;}
.x83_c00098{left:289.696000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00099 {
    display:none;
  }
  .loading-indicator_c00099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00099 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00099 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00099" -> "#page-container .classname_c00099")
 */
.pf_c00099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00099 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00099 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00099 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00099 {overflow:visible;}
  }
}
.c_c00099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00099 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00099:after { /* webkit #35443 */
  content: '';
}
.t_c00099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00099 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00099 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00099 { /* info for Javascript */
  display:none;
}
.l_c00099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00099:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00099 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00099.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00099{transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.014945,-0.000539,0.009003,0.249838,0,0);-ms-transform:matrix(0.014945,-0.000539,0.009003,0.249838,0,0);-webkit-transform:matrix(0.014945,-0.000539,0.009003,0.249838,0,0);}
.m5c_c00099{transform:matrix(0.138938,-0.003612,0.006498,0.249916,0,0);-ms-transform:matrix(0.138938,-0.003612,0.006498,0.249916,0,0);-webkit-transform:matrix(0.138938,-0.003612,0.006498,0.249916,0,0);}
.mcf_c00099{transform:matrix(0.141107,-0.003669,0.006498,0.249916,0,0);-ms-transform:matrix(0.141107,-0.003669,0.006498,0.249916,0,0);-webkit-transform:matrix(0.141107,-0.003669,0.006498,0.249916,0,0);}
.m1b_c00099{transform:matrix(0.142917,-0.005150,0.009003,0.249838,0,0);-ms-transform:matrix(0.142917,-0.005150,0.009003,0.249838,0,0);-webkit-transform:matrix(0.142917,-0.005150,0.009003,0.249838,0,0);}
.m71_c00099{transform:matrix(0.143147,-0.003722,0.006498,0.249916,0,0);-ms-transform:matrix(0.143147,-0.003722,0.006498,0.249916,0,0);-webkit-transform:matrix(0.143147,-0.003722,0.006498,0.249916,0,0);}
.m7b_c00099{transform:matrix(0.149115,-0.003877,0.006498,0.249916,0,0);-ms-transform:matrix(0.149115,-0.003877,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149115,-0.003877,0.006498,0.249916,0,0);}
.m74_c00099{transform:matrix(0.149125,-0.003877,0.006498,0.249916,0,0);-ms-transform:matrix(0.149125,-0.003877,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149125,-0.003877,0.006498,0.249916,0,0);}
.mb_c00099{transform:matrix(0.149488,-0.005387,0.009003,0.249838,0,0);-ms-transform:matrix(0.149488,-0.005387,0.009003,0.249838,0,0);-webkit-transform:matrix(0.149488,-0.005387,0.009003,0.249838,0,0);}
.m3e_c00099{transform:matrix(0.149604,-0.003890,0.006498,0.249916,0,0);-ms-transform:matrix(0.149604,-0.003890,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149604,-0.003890,0.006498,0.249916,0,0);}
.m42_c00099{transform:matrix(0.152059,-0.003954,0.006498,0.249916,0,0);-ms-transform:matrix(0.152059,-0.003954,0.006498,0.249916,0,0);-webkit-transform:matrix(0.152059,-0.003954,0.006498,0.249916,0,0);}
.m1c_c00099{transform:matrix(0.152676,-0.005502,0.009003,0.249838,0,0);-ms-transform:matrix(0.152676,-0.005502,0.009003,0.249838,0,0);-webkit-transform:matrix(0.152676,-0.005502,0.009003,0.249838,0,0);}
.m3_c00099{transform:matrix(0.153750,-0.005541,0.009003,0.249838,0,0);-ms-transform:matrix(0.153750,-0.005541,0.009003,0.249838,0,0);-webkit-transform:matrix(0.153750,-0.005541,0.009003,0.249838,0,0);}
.m12_c00099{transform:matrix(0.154405,-0.005564,0.009003,0.249838,0,0);-ms-transform:matrix(0.154405,-0.005564,0.009003,0.249838,0,0);-webkit-transform:matrix(0.154405,-0.005564,0.009003,0.249838,0,0);}
.m10_c00099{transform:matrix(0.154575,-0.005570,0.009003,0.249838,0,0);-ms-transform:matrix(0.154575,-0.005570,0.009003,0.249838,0,0);-webkit-transform:matrix(0.154575,-0.005570,0.009003,0.249838,0,0);}
.mcc_c00099{transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);-ms-transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);-webkit-transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);}
.ma7_c00099{transform:matrix(0.155008,-0.004030,0.006498,0.249916,0,0);-ms-transform:matrix(0.155008,-0.004030,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155008,-0.004030,0.006498,0.249916,0,0);}
.m14_c00099{transform:matrix(0.155499,-0.005604,0.009003,0.249838,0,0);-ms-transform:matrix(0.155499,-0.005604,0.009003,0.249838,0,0);-webkit-transform:matrix(0.155499,-0.005604,0.009003,0.249838,0,0);}
.m6c_c00099{transform:matrix(0.155782,-0.004050,0.006498,0.249916,0,0);-ms-transform:matrix(0.155782,-0.004050,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155782,-0.004050,0.006498,0.249916,0,0);}
.m47_c00099{transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);-ms-transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);}
.m5b_c00099{transform:matrix(0.156207,-0.004061,0.006498,0.249916,0,0);-ms-transform:matrix(0.156207,-0.004061,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156207,-0.004061,0.006498,0.249916,0,0);}
.m55_c00099{transform:matrix(0.156682,-0.004074,0.006498,0.249916,0,0);-ms-transform:matrix(0.156682,-0.004074,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156682,-0.004074,0.006498,0.249916,0,0);}
.m2b_c00099{transform:matrix(0.157187,-0.004087,0.006498,0.249916,0,0);-ms-transform:matrix(0.157187,-0.004087,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157187,-0.004087,0.006498,0.249916,0,0);}
.mf8_c00099{transform:matrix(0.158142,-0.004112,0.006498,0.249916,0,0);-ms-transform:matrix(0.158142,-0.004112,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158142,-0.004112,0.006498,0.249916,0,0);}
.m98_c00099{transform:matrix(0.158192,-0.004113,0.006498,0.249916,0,0);-ms-transform:matrix(0.158192,-0.004113,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158192,-0.004113,0.006498,0.249916,0,0);}
.ma_c00099{transform:matrix(0.158347,-0.005706,0.009003,0.249838,0,0);-ms-transform:matrix(0.158347,-0.005706,0.009003,0.249838,0,0);-webkit-transform:matrix(0.158347,-0.005706,0.009003,0.249838,0,0);}
.mb3_c00099{transform:matrix(0.158601,-0.004124,0.006498,0.249916,0,0);-ms-transform:matrix(0.158601,-0.004124,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158601,-0.004124,0.006498,0.249916,0,0);}
.m6_c00099{transform:matrix(0.159362,-0.005743,0.009003,0.249838,0,0);-ms-transform:matrix(0.159362,-0.005743,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159362,-0.005743,0.009003,0.249838,0,0);}
.m5_c00099{transform:matrix(0.159437,-0.005745,0.009003,0.249838,0,0);-ms-transform:matrix(0.159437,-0.005745,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159437,-0.005745,0.009003,0.249838,0,0);}
.m1a_c00099{transform:matrix(0.160596,-0.005787,0.009003,0.249838,0,0);-ms-transform:matrix(0.160596,-0.005787,0.009003,0.249838,0,0);-webkit-transform:matrix(0.160596,-0.005787,0.009003,0.249838,0,0);}
.m38_c00099{transform:matrix(0.161695,-0.004204,0.006498,0.249916,0,0);-ms-transform:matrix(0.161695,-0.004204,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161695,-0.004204,0.006498,0.249916,0,0);}
.mde_c00099{transform:matrix(0.161840,-0.004208,0.006498,0.249916,0,0);-ms-transform:matrix(0.161840,-0.004208,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161840,-0.004208,0.006498,0.249916,0,0);}
.m3d_c00099{transform:matrix(0.162250,-0.004219,0.006498,0.249916,0,0);-ms-transform:matrix(0.162250,-0.004219,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162250,-0.004219,0.006498,0.249916,0,0);}
.m54_c00099{transform:matrix(0.162610,-0.004228,0.006498,0.249916,0,0);-ms-transform:matrix(0.162610,-0.004228,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162610,-0.004228,0.006498,0.249916,0,0);}
.me4_c00099{transform:matrix(0.162645,-0.004229,0.006498,0.249916,0,0);-ms-transform:matrix(0.162645,-0.004229,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162645,-0.004229,0.006498,0.249916,0,0);}
.m91_c00099{transform:matrix(0.162775,-0.004232,0.006498,0.249916,0,0);-ms-transform:matrix(0.162775,-0.004232,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162775,-0.004232,0.006498,0.249916,0,0);}
.mb2_c00099{transform:matrix(0.162800,-0.004233,0.006498,0.249916,0,0);-ms-transform:matrix(0.162800,-0.004233,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162800,-0.004233,0.006498,0.249916,0,0);}
.m57_c00099{transform:matrix(0.163065,-0.004240,0.006498,0.249916,0,0);-ms-transform:matrix(0.163065,-0.004240,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163065,-0.004240,0.006498,0.249916,0,0);}
.me1_c00099{transform:matrix(0.163700,-0.004256,0.006498,0.249916,0,0);-ms-transform:matrix(0.163700,-0.004256,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163700,-0.004256,0.006498,0.249916,0,0);}
.m6f_c00099{transform:matrix(0.164294,-0.004272,0.006498,0.249916,0,0);-ms-transform:matrix(0.164294,-0.004272,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164294,-0.004272,0.006498,0.249916,0,0);}
.m18_c00099{transform:matrix(0.164453,-0.005926,0.009003,0.249838,0,0);-ms-transform:matrix(0.164453,-0.005926,0.009003,0.249838,0,0);-webkit-transform:matrix(0.164453,-0.005926,0.009003,0.249838,0,0);}
.m16_c00099{transform:matrix(0.164758,-0.005937,0.009003,0.249838,0,0);-ms-transform:matrix(0.164758,-0.005937,0.009003,0.249838,0,0);-webkit-transform:matrix(0.164758,-0.005937,0.009003,0.249838,0,0);}
.ma2_c00099{transform:matrix(0.165614,-0.004306,0.006498,0.249916,0,0);-ms-transform:matrix(0.165614,-0.004306,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165614,-0.004306,0.006498,0.249916,0,0);}
.ma9_c00099{transform:matrix(0.165844,-0.004312,0.006498,0.249916,0,0);-ms-transform:matrix(0.165844,-0.004312,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165844,-0.004312,0.006498,0.249916,0,0);}
.m7f_c00099{transform:matrix(0.166184,-0.004321,0.006498,0.249916,0,0);-ms-transform:matrix(0.166184,-0.004321,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166184,-0.004321,0.006498,0.249916,0,0);}
.ma0_c00099{transform:matrix(0.166294,-0.004324,0.006498,0.249916,0,0);-ms-transform:matrix(0.166294,-0.004324,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166294,-0.004324,0.006498,0.249916,0,0);}
.m15_c00099{transform:matrix(0.166452,-0.005998,0.009003,0.249838,0,0);-ms-transform:matrix(0.166452,-0.005998,0.009003,0.249838,0,0);-webkit-transform:matrix(0.166452,-0.005998,0.009003,0.249838,0,0);}
.mf1_c00099{transform:matrix(0.166544,-0.004330,0.006498,0.249916,0,0);-ms-transform:matrix(0.166544,-0.004330,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166544,-0.004330,0.006498,0.249916,0,0);}
.m2_c00099{transform:matrix(0.166727,-0.006008,0.009003,0.249838,0,0);-ms-transform:matrix(0.166727,-0.006008,0.009003,0.249838,0,0);-webkit-transform:matrix(0.166727,-0.006008,0.009003,0.249838,0,0);}
.m73_c00099{transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);-ms-transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);}
.mc6_c00099{transform:matrix(0.166884,-0.004339,0.006498,0.249916,0,0);-ms-transform:matrix(0.166884,-0.004339,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166884,-0.004339,0.006498,0.249916,0,0);}
.m7e_c00099{transform:matrix(0.167094,-0.004344,0.006498,0.249916,0,0);-ms-transform:matrix(0.167094,-0.004344,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167094,-0.004344,0.006498,0.249916,0,0);}
.mad_c00099{transform:matrix(0.167208,-0.004347,0.006498,0.249916,0,0);-ms-transform:matrix(0.167208,-0.004347,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167208,-0.004347,0.006498,0.249916,0,0);}
.me0_c00099{transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);-ms-transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);}
.m31_c00099{transform:matrix(0.168043,-0.004369,0.006498,0.249916,0,0);-ms-transform:matrix(0.168043,-0.004369,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168043,-0.004369,0.006498,0.249916,0,0);}
.m4c_c00099{transform:matrix(0.168233,-0.004374,0.006498,0.249916,0,0);-ms-transform:matrix(0.168233,-0.004374,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168233,-0.004374,0.006498,0.249916,0,0);}
.maa_c00099{transform:matrix(0.168493,-0.004381,0.006498,0.249916,0,0);-ms-transform:matrix(0.168493,-0.004381,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168493,-0.004381,0.006498,0.249916,0,0);}
.ma8_c00099{transform:matrix(0.168533,-0.004382,0.006498,0.249916,0,0);-ms-transform:matrix(0.168533,-0.004382,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168533,-0.004382,0.006498,0.249916,0,0);}
.me5_c00099{transform:matrix(0.168898,-0.004391,0.006498,0.249916,0,0);-ms-transform:matrix(0.168898,-0.004391,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168898,-0.004391,0.006498,0.249916,0,0);}
.me2_c00099{transform:matrix(0.169058,-0.004396,0.006498,0.249916,0,0);-ms-transform:matrix(0.169058,-0.004396,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169058,-0.004396,0.006498,0.249916,0,0);}
.mdb_c00099{transform:matrix(0.169093,-0.004396,0.006498,0.249916,0,0);-ms-transform:matrix(0.169093,-0.004396,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169093,-0.004396,0.006498,0.249916,0,0);}
.ma6_c00099{transform:matrix(0.169513,-0.004407,0.006498,0.249916,0,0);-ms-transform:matrix(0.169513,-0.004407,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169513,-0.004407,0.006498,0.249916,0,0);}
.m17_c00099{transform:matrix(0.169650,-0.006114,0.009003,0.249838,0,0);-ms-transform:matrix(0.169650,-0.006114,0.009003,0.249838,0,0);-webkit-transform:matrix(0.169650,-0.006114,0.009003,0.249838,0,0);}
.mb4_c00099{transform:matrix(0.169793,-0.004415,0.006498,0.249916,0,0);-ms-transform:matrix(0.169793,-0.004415,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169793,-0.004415,0.006498,0.249916,0,0);}
.m36_c00099{transform:matrix(0.170003,-0.004420,0.006498,0.249916,0,0);-ms-transform:matrix(0.170003,-0.004420,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170003,-0.004420,0.006498,0.249916,0,0);}
.m20_c00099{transform:matrix(0.170254,-0.006135,0.009003,0.249838,0,0);-ms-transform:matrix(0.170254,-0.006135,0.009003,0.249838,0,0);-webkit-transform:matrix(0.170254,-0.006135,0.009003,0.249838,0,0);}
.md7_c00099{transform:matrix(0.170392,-0.004430,0.006498,0.249916,0,0);-ms-transform:matrix(0.170392,-0.004430,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170392,-0.004430,0.006498,0.249916,0,0);}
.md0_c00099{transform:matrix(0.170577,-0.004435,0.006498,0.249916,0,0);-ms-transform:matrix(0.170577,-0.004435,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170577,-0.004435,0.006498,0.249916,0,0);}
.me7_c00099{transform:matrix(0.171207,-0.004451,0.006498,0.249916,0,0);-ms-transform:matrix(0.171207,-0.004451,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171207,-0.004451,0.006498,0.249916,0,0);}
.m8_c00099{transform:matrix(0.171394,-0.006176,0.009003,0.249838,0,0);-ms-transform:matrix(0.171394,-0.006176,0.009003,0.249838,0,0);-webkit-transform:matrix(0.171394,-0.006176,0.009003,0.249838,0,0);}
.m9_c00099{transform:matrix(0.171574,-0.006183,0.009003,0.249838,0,0);-ms-transform:matrix(0.171574,-0.006183,0.009003,0.249838,0,0);-webkit-transform:matrix(0.171574,-0.006183,0.009003,0.249838,0,0);}
.m50_c00099{transform:matrix(0.171692,-0.004464,0.006498,0.249916,0,0);-ms-transform:matrix(0.171692,-0.004464,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171692,-0.004464,0.006498,0.249916,0,0);}
.m9f_c00099{transform:matrix(0.172157,-0.004476,0.006498,0.249916,0,0);-ms-transform:matrix(0.172157,-0.004476,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172157,-0.004476,0.006498,0.249916,0,0);}
.m4d_c00099{transform:matrix(0.172392,-0.004482,0.006498,0.249916,0,0);-ms-transform:matrix(0.172392,-0.004482,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172392,-0.004482,0.006498,0.249916,0,0);}
.meb_c00099{transform:matrix(0.172437,-0.004483,0.006498,0.249916,0,0);-ms-transform:matrix(0.172437,-0.004483,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172437,-0.004483,0.006498,0.249916,0,0);}
.m85_c00099{transform:matrix(0.172562,-0.004487,0.006498,0.249916,0,0);-ms-transform:matrix(0.172562,-0.004487,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172562,-0.004487,0.006498,0.249916,0,0);}
.m19_c00099{transform:matrix(0.172698,-0.006223,0.009003,0.249838,0,0);-ms-transform:matrix(0.172698,-0.006223,0.009003,0.249838,0,0);-webkit-transform:matrix(0.172698,-0.006223,0.009003,0.249838,0,0);}
.m49_c00099{transform:matrix(0.173351,-0.004507,0.006498,0.249916,0,0);-ms-transform:matrix(0.173351,-0.004507,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173351,-0.004507,0.006498,0.249916,0,0);}
.md9_c00099{transform:matrix(0.173896,-0.004521,0.006498,0.249916,0,0);-ms-transform:matrix(0.173896,-0.004521,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173896,-0.004521,0.006498,0.249916,0,0);}
.mbf_c00099{transform:matrix(0.174176,-0.004529,0.006498,0.249916,0,0);-ms-transform:matrix(0.174176,-0.004529,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174176,-0.004529,0.006498,0.249916,0,0);}
.m9c_c00099{transform:matrix(0.174331,-0.004533,0.006498,0.249916,0,0);-ms-transform:matrix(0.174331,-0.004533,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174331,-0.004533,0.006498,0.249916,0,0);}
.m7_c00099{transform:matrix(0.175646,-0.006330,0.009003,0.249838,0,0);-ms-transform:matrix(0.175646,-0.006330,0.009003,0.249838,0,0);-webkit-transform:matrix(0.175646,-0.006330,0.009003,0.249838,0,0);}
.m83_c00099{transform:matrix(0.176085,-0.004578,0.006498,0.249916,0,0);-ms-transform:matrix(0.176085,-0.004578,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176085,-0.004578,0.006498,0.249916,0,0);}
.m58_c00099{transform:matrix(0.176195,-0.004581,0.006498,0.249916,0,0);-ms-transform:matrix(0.176195,-0.004581,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176195,-0.004581,0.006498,0.249916,0,0);}
.mb1_c00099{transform:matrix(0.176465,-0.004588,0.006498,0.249916,0,0);-ms-transform:matrix(0.176465,-0.004588,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176465,-0.004588,0.006498,0.249916,0,0);}
.me_c00099{transform:matrix(0.176825,-0.006372,0.009003,0.249838,0,0);-ms-transform:matrix(0.176825,-0.006372,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176825,-0.006372,0.009003,0.249838,0,0);}
.m26_c00099{transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);-ms-transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);}
.mf7_c00099{transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);-ms-transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);}
.me6_c00099{transform:matrix(0.177145,-0.004606,0.006498,0.249916,0,0);-ms-transform:matrix(0.177145,-0.004606,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177145,-0.004606,0.006498,0.249916,0,0);}
.mea_c00099{transform:matrix(0.177415,-0.004613,0.006498,0.249916,0,0);-ms-transform:matrix(0.177415,-0.004613,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177415,-0.004613,0.006498,0.249916,0,0);}
.m9b_c00099{transform:matrix(0.177620,-0.004618,0.006498,0.249916,0,0);-ms-transform:matrix(0.177620,-0.004618,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177620,-0.004618,0.006498,0.249916,0,0);}
.m4e_c00099{transform:matrix(0.177925,-0.004626,0.006498,0.249916,0,0);-ms-transform:matrix(0.177925,-0.004626,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177925,-0.004626,0.006498,0.249916,0,0);}
.ma3_c00099{transform:matrix(0.178100,-0.004631,0.006498,0.249916,0,0);-ms-transform:matrix(0.178100,-0.004631,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178100,-0.004631,0.006498,0.249916,0,0);}
.mae_c00099{transform:matrix(0.178850,-0.004650,0.006498,0.249916,0,0);-ms-transform:matrix(0.178850,-0.004650,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178850,-0.004650,0.006498,0.249916,0,0);}
.mcd_c00099{transform:matrix(0.178975,-0.004653,0.006498,0.249916,0,0);-ms-transform:matrix(0.178975,-0.004653,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178975,-0.004653,0.006498,0.249916,0,0);}
.m13_c00099{transform:matrix(0.178979,-0.006450,0.009003,0.249838,0,0);-ms-transform:matrix(0.178979,-0.006450,0.009003,0.249838,0,0);-webkit-transform:matrix(0.178979,-0.006450,0.009003,0.249838,0,0);}
.mb0_c00099{transform:matrix(0.179499,-0.004667,0.006498,0.249916,0,0);-ms-transform:matrix(0.179499,-0.004667,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179499,-0.004667,0.006498,0.249916,0,0);}
.m21_c00099{transform:matrix(0.179643,-0.006474,0.009003,0.249838,0,0);-ms-transform:matrix(0.179643,-0.006474,0.009003,0.249838,0,0);-webkit-transform:matrix(0.179643,-0.006474,0.009003,0.249838,0,0);}
.mee_c00099{transform:matrix(0.179849,-0.004676,0.006498,0.249916,0,0);-ms-transform:matrix(0.179849,-0.004676,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179849,-0.004676,0.006498,0.249916,0,0);}
.me8_c00099{transform:matrix(0.179889,-0.004677,0.006498,0.249916,0,0);-ms-transform:matrix(0.179889,-0.004677,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179889,-0.004677,0.006498,0.249916,0,0);}
.m23_c00099{transform:matrix(0.179978,-0.006486,0.009003,0.249838,0,0);-ms-transform:matrix(0.179978,-0.006486,0.009003,0.249838,0,0);-webkit-transform:matrix(0.179978,-0.006486,0.009003,0.249838,0,0);}
.m70_c00099{transform:matrix(0.179994,-0.004680,0.006498,0.249916,0,0);-ms-transform:matrix(0.179994,-0.004680,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179994,-0.004680,0.006498,0.249916,0,0);}
.m6e_c00099{transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);-ms-transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);}
.m88_c00099{transform:matrix(0.180219,-0.004686,0.006498,0.249916,0,0);-ms-transform:matrix(0.180219,-0.004686,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180219,-0.004686,0.006498,0.249916,0,0);}
.mdf_c00099{transform:matrix(0.180284,-0.004687,0.006498,0.249916,0,0);-ms-transform:matrix(0.180284,-0.004687,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180284,-0.004687,0.006498,0.249916,0,0);}
.m41_c00099{transform:matrix(0.181019,-0.004706,0.006498,0.249916,0,0);-ms-transform:matrix(0.181019,-0.004706,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181019,-0.004706,0.006498,0.249916,0,0);}
.maf_c00099{transform:matrix(0.181269,-0.004713,0.006498,0.249916,0,0);-ms-transform:matrix(0.181269,-0.004713,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181269,-0.004713,0.006498,0.249916,0,0);}
.m96_c00099{transform:matrix(0.181439,-0.004717,0.006498,0.249916,0,0);-ms-transform:matrix(0.181439,-0.004717,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181439,-0.004717,0.006498,0.249916,0,0);}
.mfa_c00099{transform:matrix(0.181474,-0.004718,0.006498,0.249916,0,0);-ms-transform:matrix(0.181474,-0.004718,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181474,-0.004718,0.006498,0.249916,0,0);}
.m44_c00099{transform:matrix(0.181739,-0.004725,0.006498,0.249916,0,0);-ms-transform:matrix(0.181739,-0.004725,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181739,-0.004725,0.006498,0.249916,0,0);}
.mb6_c00099{transform:matrix(0.182033,-0.004733,0.006498,0.249916,0,0);-ms-transform:matrix(0.182033,-0.004733,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182033,-0.004733,0.006498,0.249916,0,0);}
.m5a_c00099{transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);-ms-transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);}
.m6a_c00099{transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);-ms-transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);}
.mb9_c00099{transform:matrix(0.182738,-0.004751,0.006498,0.249916,0,0);-ms-transform:matrix(0.182738,-0.004751,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182738,-0.004751,0.006498,0.249916,0,0);}
.m2f_c00099{transform:matrix(0.182793,-0.004753,0.006498,0.249916,0,0);-ms-transform:matrix(0.182793,-0.004753,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182793,-0.004753,0.006498,0.249916,0,0);}
.m75_c00099{transform:matrix(0.183123,-0.004761,0.006498,0.249916,0,0);-ms-transform:matrix(0.183123,-0.004761,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183123,-0.004761,0.006498,0.249916,0,0);}
.mab_c00099{transform:matrix(0.183158,-0.004762,0.006498,0.249916,0,0);-ms-transform:matrix(0.183158,-0.004762,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183158,-0.004762,0.006498,0.249916,0,0);}
.m99_c00099{transform:matrix(0.183248,-0.004764,0.006498,0.249916,0,0);-ms-transform:matrix(0.183248,-0.004764,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183248,-0.004764,0.006498,0.249916,0,0);}
.me3_c00099{transform:matrix(0.183283,-0.004765,0.006498,0.249916,0,0);-ms-transform:matrix(0.183283,-0.004765,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183283,-0.004765,0.006498,0.249916,0,0);}
.ma5_c00099{transform:matrix(0.183313,-0.004766,0.006498,0.249916,0,0);-ms-transform:matrix(0.183313,-0.004766,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183313,-0.004766,0.006498,0.249916,0,0);}
.m79_c00099{transform:matrix(0.183933,-0.004782,0.006498,0.249916,0,0);-ms-transform:matrix(0.183933,-0.004782,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183933,-0.004782,0.006498,0.249916,0,0);}
.m39_c00099{transform:matrix(0.184023,-0.004785,0.006498,0.249916,0,0);-ms-transform:matrix(0.184023,-0.004785,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184023,-0.004785,0.006498,0.249916,0,0);}
.m2d_c00099{transform:matrix(0.184033,-0.004785,0.006498,0.249916,0,0);-ms-transform:matrix(0.184033,-0.004785,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184033,-0.004785,0.006498,0.249916,0,0);}
.mc8_c00099{transform:matrix(0.184608,-0.004800,0.006498,0.249916,0,0);-ms-transform:matrix(0.184608,-0.004800,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184608,-0.004800,0.006498,0.249916,0,0);}
.m9e_c00099{transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);-ms-transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);}
.m11_c00099{transform:matrix(0.185375,-0.006680,0.009003,0.249838,0,0);-ms-transform:matrix(0.185375,-0.006680,0.009003,0.249838,0,0);-webkit-transform:matrix(0.185375,-0.006680,0.009003,0.249838,0,0);}
.mb8_c00099{transform:matrix(0.185557,-0.004824,0.006498,0.249916,0,0);-ms-transform:matrix(0.185557,-0.004824,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185557,-0.004824,0.006498,0.249916,0,0);}
.m69_c00099{transform:matrix(0.185577,-0.004825,0.006498,0.249916,0,0);-ms-transform:matrix(0.185577,-0.004825,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185577,-0.004825,0.006498,0.249916,0,0);}
.m0_c00099{transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.185782,-0.004830,0.006498,0.249916,0,0);-ms-transform:matrix(0.185782,-0.004830,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185782,-0.004830,0.006498,0.249916,0,0);}
.m5e_c00099{transform:matrix(0.185982,-0.004836,0.006498,0.249916,0,0);-ms-transform:matrix(0.185982,-0.004836,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185982,-0.004836,0.006498,0.249916,0,0);}
.mb7_c00099{transform:matrix(0.186542,-0.004850,0.006498,0.249916,0,0);-ms-transform:matrix(0.186542,-0.004850,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186542,-0.004850,0.006498,0.249916,0,0);}
.mf9_c00099{transform:matrix(0.186947,-0.004861,0.006498,0.249916,0,0);-ms-transform:matrix(0.186947,-0.004861,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186947,-0.004861,0.006498,0.249916,0,0);}
.mc5_c00099{transform:matrix(0.186962,-0.004861,0.006498,0.249916,0,0);-ms-transform:matrix(0.186962,-0.004861,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186962,-0.004861,0.006498,0.249916,0,0);}
.mf6_c00099{transform:matrix(0.187362,-0.004871,0.006498,0.249916,0,0);-ms-transform:matrix(0.187362,-0.004871,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187362,-0.004871,0.006498,0.249916,0,0);}
.m7a_c00099{transform:matrix(0.187607,-0.004878,0.006498,0.249916,0,0);-ms-transform:matrix(0.187607,-0.004878,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187607,-0.004878,0.006498,0.249916,0,0);}
.m46_c00099{transform:matrix(0.187757,-0.004882,0.006498,0.249916,0,0);-ms-transform:matrix(0.187757,-0.004882,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187757,-0.004882,0.006498,0.249916,0,0);}
.m90_c00099{transform:matrix(0.187777,-0.004882,0.006498,0.249916,0,0);-ms-transform:matrix(0.187777,-0.004882,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187777,-0.004882,0.006498,0.249916,0,0);}
.me9_c00099{transform:matrix(0.187797,-0.004883,0.006498,0.249916,0,0);-ms-transform:matrix(0.187797,-0.004883,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187797,-0.004883,0.006498,0.249916,0,0);}
.m52_c00099{transform:matrix(0.187857,-0.004884,0.006498,0.249916,0,0);-ms-transform:matrix(0.187857,-0.004884,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187857,-0.004884,0.006498,0.249916,0,0);}
.mc9_c00099{transform:matrix(0.188361,-0.004897,0.006498,0.249916,0,0);-ms-transform:matrix(0.188361,-0.004897,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188361,-0.004897,0.006498,0.249916,0,0);}
.m59_c00099{transform:matrix(0.188406,-0.004899,0.006498,0.249916,0,0);-ms-transform:matrix(0.188406,-0.004899,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188406,-0.004899,0.006498,0.249916,0,0);}
.m27_c00099{transform:matrix(0.188941,-0.004912,0.006498,0.249916,0,0);-ms-transform:matrix(0.188941,-0.004912,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188941,-0.004912,0.006498,0.249916,0,0);}
.m67_c00099{transform:matrix(0.189156,-0.004918,0.006498,0.249916,0,0);-ms-transform:matrix(0.189156,-0.004918,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189156,-0.004918,0.006498,0.249916,0,0);}
.m2c_c00099{transform:matrix(0.189326,-0.004922,0.006498,0.249916,0,0);-ms-transform:matrix(0.189326,-0.004922,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189326,-0.004922,0.006498,0.249916,0,0);}
.mbb_c00099{transform:matrix(0.189336,-0.004923,0.006498,0.249916,0,0);-ms-transform:matrix(0.189336,-0.004923,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189336,-0.004923,0.006498,0.249916,0,0);}
.m78_c00099{transform:matrix(0.189496,-0.004927,0.006498,0.249916,0,0);-ms-transform:matrix(0.189496,-0.004927,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189496,-0.004927,0.006498,0.249916,0,0);}
.m82_c00099{transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);-ms-transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);}
.m87_c00099{transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);-ms-transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);}
.mc_c00099{transform:matrix(0.190866,-0.006878,0.009003,0.249838,0,0);-ms-transform:matrix(0.190866,-0.006878,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190866,-0.006878,0.009003,0.249838,0,0);}
.m6d_c00099{transform:matrix(0.191040,-0.004967,0.006498,0.249916,0,0);-ms-transform:matrix(0.191040,-0.004967,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191040,-0.004967,0.006498,0.249916,0,0);}
.m53_c00099{transform:matrix(0.191350,-0.004975,0.006498,0.249916,0,0);-ms-transform:matrix(0.191350,-0.004975,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191350,-0.004975,0.006498,0.249916,0,0);}
.m33_c00099{transform:matrix(0.191480,-0.004978,0.006498,0.249916,0,0);-ms-transform:matrix(0.191480,-0.004978,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191480,-0.004978,0.006498,0.249916,0,0);}
.m89_c00099{transform:matrix(0.191710,-0.004984,0.006498,0.249916,0,0);-ms-transform:matrix(0.191710,-0.004984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191710,-0.004984,0.006498,0.249916,0,0);}
.m3b_c00099{transform:matrix(0.191755,-0.004986,0.006498,0.249916,0,0);-ms-transform:matrix(0.191755,-0.004986,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191755,-0.004986,0.006498,0.249916,0,0);}
.m45_c00099{transform:matrix(0.191760,-0.004986,0.006498,0.249916,0,0);-ms-transform:matrix(0.191760,-0.004986,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191760,-0.004986,0.006498,0.249916,0,0);}
.mf_c00099{transform:matrix(0.191850,-0.006914,0.009003,0.249838,0,0);-ms-transform:matrix(0.191850,-0.006914,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191850,-0.006914,0.009003,0.249838,0,0);}
.m37_c00099{transform:matrix(0.191895,-0.004989,0.006498,0.249916,0,0);-ms-transform:matrix(0.191895,-0.004989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191895,-0.004989,0.006498,0.249916,0,0);}
.m8d_c00099{transform:matrix(0.191945,-0.004991,0.006498,0.249916,0,0);-ms-transform:matrix(0.191945,-0.004991,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191945,-0.004991,0.006498,0.249916,0,0);}
.m66_c00099{transform:matrix(0.192110,-0.004995,0.006498,0.249916,0,0);-ms-transform:matrix(0.192110,-0.004995,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192110,-0.004995,0.006498,0.249916,0,0);}
.m34_c00099{transform:matrix(0.192170,-0.004996,0.006498,0.249916,0,0);-ms-transform:matrix(0.192170,-0.004996,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192170,-0.004996,0.006498,0.249916,0,0);}
.mce_c00099{transform:matrix(0.192280,-0.004999,0.006498,0.249916,0,0);-ms-transform:matrix(0.192280,-0.004999,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192280,-0.004999,0.006498,0.249916,0,0);}
.m77_c00099{transform:matrix(0.193000,-0.005018,0.006498,0.249916,0,0);-ms-transform:matrix(0.193000,-0.005018,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193000,-0.005018,0.006498,0.249916,0,0);}
.m1f_c00099{transform:matrix(0.193724,-0.006981,0.009003,0.249838,0,0);-ms-transform:matrix(0.193724,-0.006981,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193724,-0.006981,0.009003,0.249838,0,0);}
.mda_c00099{transform:matrix(0.194409,-0.005055,0.006498,0.249916,0,0);-ms-transform:matrix(0.194409,-0.005055,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194409,-0.005055,0.006498,0.249916,0,0);}
.m25_c00099{transform:matrix(0.194774,-0.005064,0.006498,0.249916,0,0);-ms-transform:matrix(0.194774,-0.005064,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194774,-0.005064,0.006498,0.249916,0,0);}
.m97_c00099{transform:matrix(0.194794,-0.005065,0.006498,0.249916,0,0);-ms-transform:matrix(0.194794,-0.005065,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194794,-0.005065,0.006498,0.249916,0,0);}
.ma1_c00099{transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);-ms-transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);}
.m48_c00099{transform:matrix(0.195554,-0.005084,0.006498,0.249916,0,0);-ms-transform:matrix(0.195554,-0.005084,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195554,-0.005084,0.006498,0.249916,0,0);}
.mac_c00099{transform:matrix(0.195799,-0.005091,0.006498,0.249916,0,0);-ms-transform:matrix(0.195799,-0.005091,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195799,-0.005091,0.006498,0.249916,0,0);}
.mdc_c00099{transform:matrix(0.195929,-0.005094,0.006498,0.249916,0,0);-ms-transform:matrix(0.195929,-0.005094,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195929,-0.005094,0.006498,0.249916,0,0);}
.mca_c00099{transform:matrix(0.196039,-0.005097,0.006498,0.249916,0,0);-ms-transform:matrix(0.196039,-0.005097,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196039,-0.005097,0.006498,0.249916,0,0);}
.mb5_c00099{transform:matrix(0.196084,-0.005098,0.006498,0.249916,0,0);-ms-transform:matrix(0.196084,-0.005098,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196084,-0.005098,0.006498,0.249916,0,0);}
.md_c00099{transform:matrix(0.196502,-0.007081,0.009003,0.249838,0,0);-ms-transform:matrix(0.196502,-0.007081,0.009003,0.249838,0,0);-webkit-transform:matrix(0.196502,-0.007081,0.009003,0.249838,0,0);}
.m30_c00099{transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);-ms-transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);}
.m4b_c00099{transform:matrix(0.198183,-0.005153,0.006498,0.249916,0,0);-ms-transform:matrix(0.198183,-0.005153,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198183,-0.005153,0.006498,0.249916,0,0);}
.m4_c00099{transform:matrix(0.198491,-0.007153,0.009003,0.249838,0,0);-ms-transform:matrix(0.198491,-0.007153,0.009003,0.249838,0,0);-webkit-transform:matrix(0.198491,-0.007153,0.009003,0.249838,0,0);}
.m81_c00099{transform:matrix(0.198723,-0.005167,0.006498,0.249916,0,0);-ms-transform:matrix(0.198723,-0.005167,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198723,-0.005167,0.006498,0.249916,0,0);}
.m76_c00099{transform:matrix(0.198758,-0.005168,0.006498,0.249916,0,0);-ms-transform:matrix(0.198758,-0.005168,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198758,-0.005168,0.006498,0.249916,0,0);}
.m4f_c00099{transform:matrix(0.198763,-0.005168,0.006498,0.249916,0,0);-ms-transform:matrix(0.198763,-0.005168,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198763,-0.005168,0.006498,0.249916,0,0);}
.m43_c00099{transform:matrix(0.199278,-0.005181,0.006498,0.249916,0,0);-ms-transform:matrix(0.199278,-0.005181,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199278,-0.005181,0.006498,0.249916,0,0);}
.mf4_c00099{transform:matrix(0.199568,-0.005189,0.006498,0.249916,0,0);-ms-transform:matrix(0.199568,-0.005189,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199568,-0.005189,0.006498,0.249916,0,0);}
.m72_c00099{transform:matrix(0.199747,-0.005193,0.006498,0.249916,0,0);-ms-transform:matrix(0.199747,-0.005193,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199747,-0.005193,0.006498,0.249916,0,0);}
.m22_c00099{transform:matrix(0.199845,-0.007202,0.009003,0.249838,0,0);-ms-transform:matrix(0.199845,-0.007202,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199845,-0.007202,0.009003,0.249838,0,0);}
.mef_c00099{transform:matrix(0.199922,-0.005198,0.006498,0.249916,0,0);-ms-transform:matrix(0.199922,-0.005198,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199922,-0.005198,0.006498,0.249916,0,0);}
.m4a_c00099{transform:matrix(0.200572,-0.005215,0.006498,0.249916,0,0);-ms-transform:matrix(0.200572,-0.005215,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200572,-0.005215,0.006498,0.249916,0,0);}
.m9a_c00099{transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);-ms-transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);}
.m8f_c00099{transform:matrix(0.201667,-0.005243,0.006498,0.249916,0,0);-ms-transform:matrix(0.201667,-0.005243,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201667,-0.005243,0.006498,0.249916,0,0);}
.m40_c00099{transform:matrix(0.201737,-0.005245,0.006498,0.249916,0,0);-ms-transform:matrix(0.201737,-0.005245,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201737,-0.005245,0.006498,0.249916,0,0);}
.mbd_c00099{transform:matrix(0.202132,-0.005255,0.006498,0.249916,0,0);-ms-transform:matrix(0.202132,-0.005255,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202132,-0.005255,0.006498,0.249916,0,0);}
.m5d_c00099{transform:matrix(0.202177,-0.005257,0.006498,0.249916,0,0);-ms-transform:matrix(0.202177,-0.005257,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202177,-0.005257,0.006498,0.249916,0,0);}
.m3a_c00099{transform:matrix(0.202647,-0.005269,0.006498,0.249916,0,0);-ms-transform:matrix(0.202647,-0.005269,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202647,-0.005269,0.006498,0.249916,0,0);}
.mc2_c00099{transform:matrix(0.203196,-0.005283,0.006498,0.249916,0,0);-ms-transform:matrix(0.203196,-0.005283,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203196,-0.005283,0.006498,0.249916,0,0);}
.m60_c00099{transform:matrix(0.203426,-0.005289,0.006498,0.249916,0,0);-ms-transform:matrix(0.203426,-0.005289,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203426,-0.005289,0.006498,0.249916,0,0);}
.m28_c00099{transform:matrix(0.204246,-0.005310,0.006498,0.249916,0,0);-ms-transform:matrix(0.204246,-0.005310,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204246,-0.005310,0.006498,0.249916,0,0);}
.m62_c00099{transform:matrix(0.204346,-0.005313,0.006498,0.249916,0,0);-ms-transform:matrix(0.204346,-0.005313,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204346,-0.005313,0.006498,0.249916,0,0);}
.m93_c00099{transform:matrix(0.204851,-0.005326,0.006498,0.249916,0,0);-ms-transform:matrix(0.204851,-0.005326,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204851,-0.005326,0.006498,0.249916,0,0);}
.mf2_c00099{transform:matrix(0.204881,-0.005327,0.006498,0.249916,0,0);-ms-transform:matrix(0.204881,-0.005327,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204881,-0.005327,0.006498,0.249916,0,0);}
.mcb_c00099{transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);-ms-transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);}
.m29_c00099{transform:matrix(0.205351,-0.005339,0.006498,0.249916,0,0);-ms-transform:matrix(0.205351,-0.005339,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205351,-0.005339,0.006498,0.249916,0,0);}
.m2e_c00099{transform:matrix(0.205496,-0.005343,0.006498,0.249916,0,0);-ms-transform:matrix(0.205496,-0.005343,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205496,-0.005343,0.006498,0.249916,0,0);}
.m63_c00099{transform:matrix(0.205680,-0.005348,0.006498,0.249916,0,0);-ms-transform:matrix(0.205680,-0.005348,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205680,-0.005348,0.006498,0.249916,0,0);}
.m51_c00099{transform:matrix(0.205970,-0.005355,0.006498,0.249916,0,0);-ms-transform:matrix(0.205970,-0.005355,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205970,-0.005355,0.006498,0.249916,0,0);}
.m80_c00099{transform:matrix(0.206605,-0.005372,0.006498,0.249916,0,0);-ms-transform:matrix(0.206605,-0.005372,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206605,-0.005372,0.006498,0.249916,0,0);}
.m8b_c00099{transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-ms-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);}
.mc7_c00099{transform:matrix(0.209684,-0.005452,0.006498,0.249916,0,0);-ms-transform:matrix(0.209684,-0.005452,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209684,-0.005452,0.006498,0.249916,0,0);}
.m68_c00099{transform:matrix(0.209729,-0.005453,0.006498,0.249916,0,0);-ms-transform:matrix(0.209729,-0.005453,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209729,-0.005453,0.006498,0.249916,0,0);}
.m65_c00099{transform:matrix(0.209854,-0.005456,0.006498,0.249916,0,0);-ms-transform:matrix(0.209854,-0.005456,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209854,-0.005456,0.006498,0.249916,0,0);}
.m2a_c00099{transform:matrix(0.210704,-0.005478,0.006498,0.249916,0,0);-ms-transform:matrix(0.210704,-0.005478,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210704,-0.005478,0.006498,0.249916,0,0);}
.m8a_c00099{transform:matrix(0.210749,-0.005479,0.006498,0.249916,0,0);-ms-transform:matrix(0.210749,-0.005479,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210749,-0.005479,0.006498,0.249916,0,0);}
.m32_c00099{transform:matrix(0.211374,-0.005496,0.006498,0.249916,0,0);-ms-transform:matrix(0.211374,-0.005496,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211374,-0.005496,0.006498,0.249916,0,0);}
.mbe_c00099{transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);-ms-transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);}
.mc3_c00099{transform:matrix(0.211848,-0.005508,0.006498,0.249916,0,0);-ms-transform:matrix(0.211848,-0.005508,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211848,-0.005508,0.006498,0.249916,0,0);}
.m35_c00099{transform:matrix(0.211898,-0.005509,0.006498,0.249916,0,0);-ms-transform:matrix(0.211898,-0.005509,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211898,-0.005509,0.006498,0.249916,0,0);}
.m9d_c00099{transform:matrix(0.212848,-0.005534,0.006498,0.249916,0,0);-ms-transform:matrix(0.212848,-0.005534,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212848,-0.005534,0.006498,0.249916,0,0);}
.m95_c00099{transform:matrix(0.212903,-0.005535,0.006498,0.249916,0,0);-ms-transform:matrix(0.212903,-0.005535,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212903,-0.005535,0.006498,0.249916,0,0);}
.med_c00099{transform:matrix(0.213098,-0.005541,0.006498,0.249916,0,0);-ms-transform:matrix(0.213098,-0.005541,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213098,-0.005541,0.006498,0.249916,0,0);}
.m94_c00099{transform:matrix(0.214118,-0.005567,0.006498,0.249916,0,0);-ms-transform:matrix(0.214118,-0.005567,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214118,-0.005567,0.006498,0.249916,0,0);}
.mf5_c00099{transform:matrix(0.215387,-0.005600,0.006498,0.249916,0,0);-ms-transform:matrix(0.215387,-0.005600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215387,-0.005600,0.006498,0.249916,0,0);}
.m3f_c00099{transform:matrix(0.216792,-0.005637,0.006498,0.249916,0,0);-ms-transform:matrix(0.216792,-0.005637,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216792,-0.005637,0.006498,0.249916,0,0);}
.m8e_c00099{transform:matrix(0.216892,-0.005639,0.006498,0.249916,0,0);-ms-transform:matrix(0.216892,-0.005639,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216892,-0.005639,0.006498,0.249916,0,0);}
.md4_c00099{transform:matrix(0.217496,-0.005655,0.006498,0.249916,0,0);-ms-transform:matrix(0.217496,-0.005655,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217496,-0.005655,0.006498,0.249916,0,0);}
.m7d_c00099{transform:matrix(0.217681,-0.005660,0.006498,0.249916,0,0);-ms-transform:matrix(0.217681,-0.005660,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217681,-0.005660,0.006498,0.249916,0,0);}
.m61_c00099{transform:matrix(0.217986,-0.005668,0.006498,0.249916,0,0);-ms-transform:matrix(0.217986,-0.005668,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217986,-0.005668,0.006498,0.249916,0,0);}
.mdd_c00099{transform:matrix(0.218066,-0.005670,0.006498,0.249916,0,0);-ms-transform:matrix(0.218066,-0.005670,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218066,-0.005670,0.006498,0.249916,0,0);}
.mc0_c00099{transform:matrix(0.218891,-0.005691,0.006498,0.249916,0,0);-ms-transform:matrix(0.218891,-0.005691,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218891,-0.005691,0.006498,0.249916,0,0);}
.m1e_c00099{transform:matrix(0.220522,-0.007947,0.009003,0.249838,0,0);-ms-transform:matrix(0.220522,-0.007947,0.009003,0.249838,0,0);-webkit-transform:matrix(0.220522,-0.007947,0.009003,0.249838,0,0);}
.md5_c00099{transform:matrix(0.220720,-0.005739,0.006498,0.249916,0,0);-ms-transform:matrix(0.220720,-0.005739,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220720,-0.005739,0.006498,0.249916,0,0);}
.mc4_c00099{transform:matrix(0.225239,-0.005856,0.006498,0.249916,0,0);-ms-transform:matrix(0.225239,-0.005856,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225239,-0.005856,0.006498,0.249916,0,0);}
.m84_c00099{transform:matrix(0.225709,-0.005868,0.006498,0.249916,0,0);-ms-transform:matrix(0.225709,-0.005868,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225709,-0.005868,0.006498,0.249916,0,0);}
.mc1_c00099{transform:matrix(0.225969,-0.005875,0.006498,0.249916,0,0);-ms-transform:matrix(0.225969,-0.005875,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225969,-0.005875,0.006498,0.249916,0,0);}
.m3c_c00099{transform:matrix(0.226823,-0.005897,0.006498,0.249916,0,0);-ms-transform:matrix(0.226823,-0.005897,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226823,-0.005897,0.006498,0.249916,0,0);}
.mec_c00099{transform:matrix(0.227633,-0.005918,0.006498,0.249916,0,0);-ms-transform:matrix(0.227633,-0.005918,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227633,-0.005918,0.006498,0.249916,0,0);}
.m56_c00099{transform:matrix(0.228288,-0.005935,0.006498,0.249916,0,0);-ms-transform:matrix(0.228288,-0.005935,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228288,-0.005935,0.006498,0.249916,0,0);}
.ma4_c00099{transform:matrix(0.228953,-0.005953,0.006498,0.249916,0,0);-ms-transform:matrix(0.228953,-0.005953,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228953,-0.005953,0.006498,0.249916,0,0);}
.mf3_c00099{transform:matrix(0.230117,-0.005983,0.006498,0.249916,0,0);-ms-transform:matrix(0.230117,-0.005983,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230117,-0.005983,0.006498,0.249916,0,0);}
.m92_c00099{transform:matrix(0.230742,-0.005999,0.006498,0.249916,0,0);-ms-transform:matrix(0.230742,-0.005999,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230742,-0.005999,0.006498,0.249916,0,0);}
.md1_c00099{transform:matrix(0.231642,-0.006023,0.006498,0.249916,0,0);-ms-transform:matrix(0.231642,-0.006023,0.006498,0.249916,0,0);-webkit-transform:matrix(0.231642,-0.006023,0.006498,0.249916,0,0);}
.m5f_c00099{transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);-ms-transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);}
.mbc_c00099{transform:matrix(0.233871,-0.006081,0.006498,0.249916,0,0);-ms-transform:matrix(0.233871,-0.006081,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233871,-0.006081,0.006498,0.249916,0,0);}
.md3_c00099{transform:matrix(0.234536,-0.006098,0.006498,0.249916,0,0);-ms-transform:matrix(0.234536,-0.006098,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234536,-0.006098,0.006498,0.249916,0,0);}
.m86_c00099{transform:matrix(0.236965,-0.006161,0.006498,0.249916,0,0);-ms-transform:matrix(0.236965,-0.006161,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236965,-0.006161,0.006498,0.249916,0,0);}
.mf0_c00099{transform:matrix(0.238219,-0.006194,0.006498,0.249916,0,0);-ms-transform:matrix(0.238219,-0.006194,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238219,-0.006194,0.006498,0.249916,0,0);}
.m8c_c00099{transform:matrix(0.238564,-0.006203,0.006498,0.249916,0,0);-ms-transform:matrix(0.238564,-0.006203,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238564,-0.006203,0.006498,0.249916,0,0);}
.m1d_c00099{transform:matrix(0.243952,-0.008791,0.009003,0.249838,0,0);-ms-transform:matrix(0.243952,-0.008791,0.009003,0.249838,0,0);-webkit-transform:matrix(0.243952,-0.008791,0.009003,0.249838,0,0);}
.m64_c00099{transform:matrix(0.245882,-0.006393,0.006498,0.249916,0,0);-ms-transform:matrix(0.245882,-0.006393,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245882,-0.006393,0.006498,0.249916,0,0);}
.mba_c00099{transform:matrix(0.252465,-0.006564,0.006498,0.249916,0,0);-ms-transform:matrix(0.252465,-0.006564,0.006498,0.249916,0,0);-webkit-transform:matrix(0.252465,-0.006564,0.006498,0.249916,0,0);}
.md6_c00099{transform:matrix(0.258698,-0.006726,0.006498,0.249916,0,0);-ms-transform:matrix(0.258698,-0.006726,0.006498,0.249916,0,0);-webkit-transform:matrix(0.258698,-0.006726,0.006498,0.249916,0,0);}
.md8_c00099{transform:matrix(0.268394,-0.006978,0.006498,0.249916,0,0);-ms-transform:matrix(0.268394,-0.006978,0.006498,0.249916,0,0);-webkit-transform:matrix(0.268394,-0.006978,0.006498,0.249916,0,0);}
.md2_c00099{transform:matrix(0.276766,-0.007196,0.006498,0.249916,0,0);-ms-transform:matrix(0.276766,-0.007196,0.006498,0.249916,0,0);-webkit-transform:matrix(0.276766,-0.007196,0.006498,0.249916,0,0);}
.m6b_c00099{transform:matrix(0.473740,-0.012317,0.006498,0.249916,0,0);-ms-transform:matrix(0.473740,-0.012317,0.006498,0.249916,0,0);-webkit-transform:matrix(0.473740,-0.012317,0.006498,0.249916,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
.fc0_c00099{color:transparent;}
.fs10_c00099{font-size:55.668807px;}
.fsd_c00099{font-size:58.819871px;}
.fse_c00099{font-size:60.920581px;}
.fsb_c00099{font-size:61.970936px;}
.fs11_c00099{font-size:63.021290px;}
.fs6_c00099{font-size:64.071645px;}
.fs4_c00099{font-size:65.077113px;}
.fs7_c00099{font-size:65.122000px;}
.fs0_c00099{font-size:66.150000px;}
.fs9_c00099{font-size:66.172355px;}
.fsf_c00099{font-size:67.222710px;}
.fsc_c00099{font-size:68.273065px;}
.fsa_c00099{font-size:69.323419px;}
.fs5_c00099{font-size:70.373774px;}
.fs1_c00099{font-size:71.374898px;}
.fs8_c00099{font-size:71.424129px;}
.fs2_c00099{font-size:73.474160px;}
.fs3_c00099{font-size:74.523791px;}
.y0_c00099{bottom:0.000000px;}
.yfd_c00099{bottom:21.441612px;}
.yfe_c00099{bottom:22.185318px;}
.yf4_c00099{bottom:39.541797px;}
.yf5_c00099{bottom:40.133658px;}
.yf6_c00099{bottom:42.141600px;}
.yf7_c00099{bottom:42.539067px;}
.yf8_c00099{bottom:44.667993px;}
.yf9_c00099{bottom:45.044421px;}
.yfa_c00099{bottom:46.505658px;}
.yfb_c00099{bottom:47.323911px;}
.yfc_c00099{bottom:47.822982px;}
.yed_c00099{bottom:56.562993px;}
.yee_c00099{bottom:57.631677px;}
.yef_c00099{bottom:58.257426px;}
.yf0_c00099{bottom:60.682800px;}
.yf1_c00099{bottom:61.059228px;}
.yf2_c00099{bottom:61.583568px;}
.yf3_c00099{bottom:63.312747px;}
.ye4_c00099{bottom:73.851738px;}
.ye5_c00099{bottom:74.737554px;}
.ye6_c00099{bottom:75.480384px;}
.ye7_c00099{bottom:77.234100px;}
.ye8_c00099{bottom:77.833710px;}
.ye9_c00099{bottom:78.753528px;}
.yea_c00099{bottom:79.444713px;}
.yeb_c00099{bottom:81.721224px;}
.yec_c00099{bottom:82.915200px;}
.ydc_c00099{bottom:90.867228px;}
.ydd_c00099{bottom:92.499537px;}
.yde_c00099{bottom:94.306728px;}
.ydf_c00099{bottom:95.678886px;}
.ye0_c00099{bottom:98.004837px;}
.ye1_c00099{bottom:99.140706px;}
.ye2_c00099{bottom:100.265268px;}
.ye3_c00099{bottom:101.391156px;}
.yd4_c00099{bottom:108.422136px;}
.yd5_c00099{bottom:109.817799px;}
.yd6_c00099{bottom:110.950878px;}
.yd7_c00099{bottom:112.405305px;}
.yd8_c00099{bottom:113.886813px;}
.yd9_c00099{bottom:116.052933px;}
.yda_c00099{bottom:116.521521px;}
.ydb_c00099{bottom:117.079404px;}
.yca_c00099{bottom:126.246399px;}
.ycb_c00099{bottom:127.047279px;}
.ycc_c00099{bottom:128.401941px;}
.ycd_c00099{bottom:129.266949px;}
.yce_c00099{bottom:129.655368px;}
.ycf_c00099{bottom:130.157148px;}
.yd0_c00099{bottom:131.135382px;}
.yd1_c00099{bottom:132.369741px;}
.yd2_c00099{bottom:133.824486px;}
.yd3_c00099{bottom:134.356020px;}
.yc2_c00099{bottom:144.343074px;}
.yc3_c00099{bottom:146.686458px;}
.yc4_c00099{bottom:147.074532px;}
.yc5_c00099{bottom:148.554780px;}
.yc6_c00099{bottom:149.330910px;}
.yc7_c00099{bottom:150.362988px;}
.yc8_c00099{bottom:151.425972px;}
.yc9_c00099{bottom:151.974993px;}
.yb9_c00099{bottom:162.972489px;}
.yba_c00099{bottom:163.560918px;}
.ybb_c00099{bottom:164.093268px;}
.ybc_c00099{bottom:165.099918px;}
.ybd_c00099{bottom:165.883653px;}
.ybe_c00099{bottom:166.753809px;}
.ybf_c00099{bottom:168.525786px;}
.yc0_c00099{bottom:170.064396px;}
.yc1_c00099{bottom:170.743458px;}
.yb0_c00099{bottom:180.262152px;}
.yb1_c00099{bottom:181.360215px;}
.yb2_c00099{bottom:182.507553px;}
.yb3_c00099{bottom:183.055794px;}
.yb4_c00099{bottom:184.801623px;}
.yb5_c00099{bottom:185.527152px;}
.yb6_c00099{bottom:185.975304px;}
.yb7_c00099{bottom:186.653235px;}
.yb8_c00099{bottom:187.014771px;}
.ya7_c00099{bottom:198.358068px;}
.ya8_c00099{bottom:199.277922px;}
.ya9_c00099{bottom:200.285721px;}
.yaa_c00099{bottom:200.858163px;}
.yab_c00099{bottom:202.458723px;}
.yac_c00099{bottom:202.886982px;}
.yad_c00099{bottom:203.404473px;}
.yae_c00099{bottom:204.796695px;}
.yaf_c00099{bottom:205.323936px;}
.y9e_c00099{bottom:216.452484px;}
.y9f_c00099{bottom:217.125186px;}
.ya0_c00099{bottom:217.569552px;}
.ya1_c00099{bottom:218.185149px;}
.ya2_c00099{bottom:218.789787px;}
.ya3_c00099{bottom:220.279938px;}
.ya4_c00099{bottom:220.701681px;}
.ya5_c00099{bottom:221.201883px;}
.ya6_c00099{bottom:222.354912px;}
.y96_c00099{bottom:233.743305px;}
.y97_c00099{bottom:235.700832px;}
.y98_c00099{bottom:236.254323px;}
.y99_c00099{bottom:237.341394px;}
.y9a_c00099{bottom:238.277256px;}
.y9b_c00099{bottom:238.981254px;}
.y9c_c00099{bottom:239.318286px;}
.y9d_c00099{bottom:240.042954px;}
.y8e_c00099{bottom:251.299263px;}
.y8f_c00099{bottom:252.886875px;}
.y90_c00099{bottom:254.466375px;}
.y91_c00099{bottom:255.329367px;}
.y92_c00099{bottom:255.664923px;}
.y93_c00099{bottom:256.496637px;}
.y94_c00099{bottom:258.195282px;}
.y95_c00099{bottom:258.798807px;}
.y84_c00099{bottom:268.855443px;}
.y85_c00099{bottom:269.765001px;}
.y86_c00099{bottom:270.873966px;}
.y87_c00099{bottom:271.284987px;}
.y88_c00099{bottom:271.804467px;}
.y89_c00099{bottom:272.702910px;}
.y8a_c00099{bottom:273.349257px;}
.y8b_c00099{bottom:274.950558px;}
.y8c_c00099{bottom:275.806881px;}
.y8d_c00099{bottom:276.226833px;}
.y7c_c00099{bottom:286.143090px;}
.y7d_c00099{bottom:287.837616px;}
.y7e_c00099{bottom:289.186569px;}
.y7f_c00099{bottom:289.968756px;}
.y80_c00099{bottom:290.491611px;}
.y81_c00099{bottom:291.999321px;}
.y82_c00099{bottom:292.488210px;}
.y83_c00099{bottom:294.114180px;}
.y74_c00099{bottom:303.156816px;}
.y75_c00099{bottom:303.493644px;}
.y76_c00099{bottom:304.829412px;}
.y77_c00099{bottom:307.154274px;}
.y78_c00099{bottom:307.742859px;}
.y79_c00099{bottom:308.948400px;}
.y7a_c00099{bottom:309.498633px;}
.y7b_c00099{bottom:311.459760px;}
.y6b_c00099{bottom:319.635297px;}
.y6c_c00099{bottom:320.634153px;}
.y6d_c00099{bottom:321.457464px;}
.y6e_c00099{bottom:324.221091px;}
.y6f_c00099{bottom:324.877767px;}
.y70_c00099{bottom:325.504263px;}
.y71_c00099{bottom:327.081888px;}
.y72_c00099{bottom:328.172709px;}
.y73_c00099{bottom:328.572930px;}
.y65_c00099{bottom:337.467111px;}
.y66_c00099{bottom:338.185824px;}
.y67_c00099{bottom:340.329213px;}
.y68_c00099{bottom:342.429633px;}
.y69_c00099{bottom:344.750907px;}
.y6a_c00099{bottom:345.506352px;}
.y5d_c00099{bottom:355.291467px;}
.y5e_c00099{bottom:356.569464px;}
.y5f_c00099{bottom:357.143484px;}
.y60_c00099{bottom:358.474206px;}
.y61_c00099{bottom:359.095002px;}
.y62_c00099{bottom:360.568551px;}
.y63_c00099{bottom:361.955487px;}
.y64_c00099{bottom:363.590835px;}
.y54_c00099{bottom:373.388451px;}
.y55_c00099{bottom:373.873425px;}
.y56_c00099{bottom:375.057030px;}
.y57_c00099{bottom:375.801171px;}
.y58_c00099{bottom:376.232115px;}
.y59_c00099{bottom:377.684247px;}
.y5a_c00099{bottom:378.478926px;}
.y5b_c00099{bottom:380.601165px;}
.y5c_c00099{bottom:381.477054px;}
.y4b_c00099{bottom:391.212027px;}
.y4c_c00099{bottom:391.783278px;}
.y4d_c00099{bottom:392.641665px;}
.y4e_c00099{bottom:393.133869px;}
.y4f_c00099{bottom:395.057913px;}
.y50_c00099{bottom:395.861685px;}
.y51_c00099{bottom:397.197183px;}
.y52_c00099{bottom:397.844673px;}
.y53_c00099{bottom:398.973018px;}
.y45_c00099{bottom:408.500832px;}
.y46_c00099{bottom:411.115596px;}
.y47_c00099{bottom:412.947549px;}
.y48_c00099{bottom:413.496318px;}
.y49_c00099{bottom:415.233585px;}
.y4a_c00099{bottom:415.982487px;}
.y3d_c00099{bottom:426.593673px;}
.y3e_c00099{bottom:427.119393px;}
.y3f_c00099{bottom:428.032017px;}
.y40_c00099{bottom:428.761524px;}
.y41_c00099{bottom:430.426236px;}
.y42_c00099{bottom:431.261331px;}
.y43_c00099{bottom:431.961258px;}
.y44_c00099{bottom:433.274847px;}
.y34_c00099{bottom:443.610159px;}
.y35_c00099{bottom:444.932691px;}
.y36_c00099{bottom:445.387710px;}
.y37_c00099{bottom:446.098902px;}
.y38_c00099{bottom:446.753529px;}
.y39_c00099{bottom:447.610941px;}
.y3a_c00099{bottom:449.027730px;}
.y3b_c00099{bottom:449.841972px;}
.y3c_c00099{bottom:451.898841px;}
.y2c_c00099{bottom:461.163735px;}
.y2d_c00099{bottom:462.933450px;}
.y2e_c00099{bottom:464.670387px;}
.y2f_c00099{bottom:464.998911px;}
.y30_c00099{bottom:466.213560px;}
.y31_c00099{bottom:466.946109px;}
.y32_c00099{bottom:467.348223px;}
.y33_c00099{bottom:468.643053px;}
.y25_c00099{bottom:479.799000px;}
.y26_c00099{bottom:480.628179px;}
.y27_c00099{bottom:482.380020px;}
.y28_c00099{bottom:483.955425px;}
.y29_c00099{bottom:484.377210px;}
.y2a_c00099{bottom:486.178932px;}
.y2b_c00099{bottom:486.551967px;}
.y20_c00099{bottom:494.670562px;}
.y21_c00099{bottom:495.484748px;}
.y22_c00099{bottom:496.761442px;}
.y23_c00099{bottom:497.657491px;}
.y24_c00099{bottom:500.493868px;}
.y19_c00099{bottom:512.761224px;}
.y1a_c00099{bottom:514.566984px;}
.y1b_c00099{bottom:515.872191px;}
.y1c_c00099{bottom:516.456282px;}
.y1d_c00099{bottom:517.278729px;}
.y1e_c00099{bottom:518.763432px;}
.y1f_c00099{bottom:520.955346px;}
.y13_c00099{bottom:528.157582px;}
.y14_c00099{bottom:530.753160px;}
.y15_c00099{bottom:531.540048px;}
.y16_c00099{bottom:533.434395px;}
.y17_c00099{bottom:535.022211px;}
.y18_c00099{bottom:537.711546px;}
.ya_c00099{bottom:545.964096px;}
.yb_c00099{bottom:546.914483px;}
.yc_c00099{bottom:548.915776px;}
.yd_c00099{bottom:549.674612px;}
.ye_c00099{bottom:551.342428px;}
.yf_c00099{bottom:552.102722px;}
.y10_c00099{bottom:553.822365px;}
.y11_c00099{bottom:555.205669px;}
.y12_c00099{bottom:555.987508px;}
.y2_c00099{bottom:563.502000px;}
.y3_c00099{bottom:564.509154px;}
.y4_c00099{bottom:565.629006px;}
.y5_c00099{bottom:566.994774px;}
.y6_c00099{bottom:567.787170px;}
.y7_c00099{bottom:568.406550px;}
.y8_c00099{bottom:570.395316px;}
.y9_c00099{bottom:572.758194px;}
.y1_c00099{bottom:586.831500px;}
.h12_c00099{height:55.668807px;}
.hf_c00099{height:58.819871px;}
.h10_c00099{height:60.920581px;}
.hd_c00099{height:61.970936px;}
.h13_c00099{height:63.021290px;}
.h8_c00099{height:64.071645px;}
.h6_c00099{height:65.077113px;}
.h9_c00099{height:65.122000px;}
.h2_c00099{height:66.150000px;}
.hb_c00099{height:66.172355px;}
.h11_c00099{height:67.222710px;}
.he_c00099{height:68.273065px;}
.hc_c00099{height:69.323419px;}
.h7_c00099{height:70.373774px;}
.h3_c00099{height:71.374898px;}
.ha_c00099{height:71.424129px;}
.h4_c00099{height:73.474160px;}
.h5_c00099{height:74.523791px;}
.h1_c00099{height:627.750000px;}
.h0_c00099{height:628.020000px;}
.w0_c00099{width:371.790000px;}
.w1_c00099{width:372.000000px;}
.x0_c00099{left:0.000000px;}
.x3_c00099{left:38.410500px;}
.x1e_c00099{left:39.951633px;}
.x35_c00099{left:41.089716px;}
.x46_c00099{left:42.262113px;}
.x59_c00099{left:43.545123px;}
.x5f_c00099{left:44.611671px;}
.x68_c00099{left:45.980637px;}
.x55_c00099{left:48.557451px;}
.x7c_c00099{left:49.779885px;}
.x82_c00099{left:51.775272px;}
.x42_c00099{left:58.173057px;}
.x36_c00099{left:60.559209px;}
.x3d_c00099{left:61.800666px;}
.xb_c00099{left:64.223243px;}
.x4_c00099{left:66.359024px;}
.x70_c00099{left:68.124711px;}
.x7f_c00099{left:70.823475px;}
.x1f_c00099{left:72.454962px;}
.x4f_c00099{left:73.594761px;}
.x75_c00099{left:75.226722px;}
.x7b_c00099{left:76.924503px;}
.x5d_c00099{left:79.318332px;}
.x69_c00099{left:81.359637px;}
.x6d_c00099{left:85.858722px;}
.x2e_c00099{left:87.837804px;}
.x3e_c00099{left:92.448567px;}
.x37_c00099{left:94.332312px;}
.x23_c00099{left:96.204000px;}
.x5_c00099{left:97.434917px;}
.x18_c00099{left:99.132447px;}
.x2f_c00099{left:104.068446px;}
.x60_c00099{left:105.673671px;}
.x13_c00099{left:106.942656px;}
.x47_c00099{left:108.413181px;}
.x3f_c00099{left:110.051670px;}
.xc_c00099{left:118.260206px;}
.x6a_c00099{left:120.121137px;}
.x38_c00099{left:121.351110px;}
.x20_c00099{left:123.455627px;}
.x43_c00099{left:124.638870px;}
.x14_c00099{left:127.612952px;}
.x30_c00099{left:129.459120px;}
.x4c_c00099{left:131.682276px;}
.x72_c00099{left:133.647414px;}
.x6_c00099{left:135.334979px;}
.xd_c00099{left:138.734954px;}
.x80_c00099{left:140.085093px;}
.x19_c00099{left:142.596844px;}
.x64_c00099{left:145.630818px;}
.x66_c00099{left:146.949480px;}
.x6e_c00099{left:148.648584px;}
.x76_c00099{left:151.765755px;}
.x31_c00099{left:152.847411px;}
.x71_c00099{left:154.169988px;}
.x48_c00099{left:155.957724px;}
.x7_c00099{left:157.323967px;}
.x21_c00099{left:159.229978px;}
.x1a_c00099{left:162.053085px;}
.x24_c00099{left:163.582500px;}
.x77_c00099{left:165.146202px;}
.x61_c00099{left:166.423671px;}
.x28_c00099{left:170.426763px;}
.x8_c00099{left:174.511762px;}
.x15_c00099{left:177.433014px;}
.x1_c00099{left:178.740000px;}
.x5a_c00099{left:180.179025px;}
.x29_c00099{left:182.600451px;}
.xe_c00099{left:183.767754px;}
.x50_c00099{left:185.690289px;}
.x1b_c00099{left:189.456100px;}
.x5e_c00099{left:192.314832px;}
.x4d_c00099{left:197.342058px;}
.x3a_c00099{left:199.777476px;}
.x73_c00099{left:202.792581px;}
.xf_c00099{left:204.282962px;}
.x51_c00099{left:206.213091px;}
.x40_c00099{left:207.462600px;}
.x62_c00099{left:212.521671px;}
.x39_c00099{left:213.918192px;}
.x44_c00099{left:216.949155px;}
.x16_c00099{left:219.163215px;}
.x6b_c00099{left:220.169637px;}
.x7d_c00099{left:222.903891px;}
.x25_c00099{left:224.175000px;}
.x52_c00099{left:225.806049px;}
.x2a_c00099{left:227.585781px;}
.x9_c00099{left:229.700019px;}
.x49_c00099{left:230.736324px;}
.x32_c00099{left:234.081699px;}
.x1c_c00099{left:238.900809px;}
.x26_c00099{left:240.397500px;}
.x7a_c00099{left:241.576692px;}
.x2_c00099{left:244.350000px;}
.x56_c00099{left:248.275890px;}
.x10_c00099{left:250.712310px;}
.x5b_c00099{left:252.677742px;}
.x2b_c00099{left:254.721579px;}
.x6f_c00099{left:256.780776px;}
.x78_c00099{left:258.749409px;}
.x33_c00099{left:263.147178px;}
.x57_c00099{left:267.244908px;}
.x2c_c00099{left:269.610189px;}
.x22_c00099{left:272.498462px;}
.x53_c00099{left:275.110866px;}
.x41_c00099{left:278.246895px;}
.x4a_c00099{left:280.269750px;}
.x3b_c00099{left:281.409225px;}
.x7e_c00099{left:282.540750px;}
.x11_c00099{left:288.058076px;}
.x17_c00099{left:289.878348px;}
.x4e_c00099{left:293.508582px;}
.xa_c00099{left:295.269883px;}
.x65_c00099{left:297.178257px;}
.x67_c00099{left:302.024109px;}
.x3c_c00099{left:308.134821px;}
.x12_c00099{left:309.171185px;}
.x1d_c00099{left:311.884536px;}
.x6c_c00099{left:313.898637px;}
.x2d_c00099{left:317.563941px;}
.x81_c00099{left:318.794670px;}
.x45_c00099{left:320.369121px;}
.x54_c00099{left:321.720612px;}
.x27_c00099{left:324.042000px;}
.x79_c00099{left:327.235566px;}
.x5c_c00099{left:328.245342px;}
.x74_c00099{left:329.489805px;}
.x63_c00099{left:333.055671px;}
.x58_c00099{left:334.879143px;}
.x34_c00099{left:336.599856px;}
.x4b_c00099{left:338.664708px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.fs10_c00099{font-size:49.483384pt;}
.fsd_c00099{font-size:52.284330pt;}
.fse_c00099{font-size:54.151627pt;}
.fsb_c00099{font-size:55.085276pt;}
.fs11_c00099{font-size:56.018925pt;}
.fs6_c00099{font-size:56.952574pt;}
.fs4_c00099{font-size:57.846323pt;}
.fs7_c00099{font-size:57.886222pt;}
.fs0_c00099{font-size:58.800000pt;}
.fs9_c00099{font-size:58.819871pt;}
.fsf_c00099{font-size:59.753520pt;}
.fsc_c00099{font-size:60.687169pt;}
.fsa_c00099{font-size:61.620817pt;}
.fs5_c00099{font-size:62.554466pt;}
.fs1_c00099{font-size:63.444354pt;}
.fs8_c00099{font-size:63.488115pt;}
.fs2_c00099{font-size:65.310365pt;}
.fs3_c00099{font-size:66.243370pt;}
.y0_c00099{bottom:0.000000pt;}
.yfd_c00099{bottom:19.059211pt;}
.yfe_c00099{bottom:19.720283pt;}
.yf4_c00099{bottom:35.148264pt;}
.yf5_c00099{bottom:35.674363pt;}
.yf6_c00099{bottom:37.459200pt;}
.yf7_c00099{bottom:37.812504pt;}
.yf8_c00099{bottom:39.704883pt;}
.yf9_c00099{bottom:40.039485pt;}
.yfa_c00099{bottom:41.338363pt;}
.yfb_c00099{bottom:42.065699pt;}
.yfc_c00099{bottom:42.509317pt;}
.yed_c00099{bottom:50.278216pt;}
.yee_c00099{bottom:51.228157pt;}
.yef_c00099{bottom:51.784379pt;}
.yf0_c00099{bottom:53.940267pt;}
.yf1_c00099{bottom:54.274869pt;}
.yf2_c00099{bottom:54.740949pt;}
.yf3_c00099{bottom:56.277997pt;}
.ye4_c00099{bottom:65.645989pt;}
.ye5_c00099{bottom:66.433381pt;}
.ye6_c00099{bottom:67.093675pt;}
.ye7_c00099{bottom:68.652533pt;}
.ye8_c00099{bottom:69.185520pt;}
.ye9_c00099{bottom:70.003136pt;}
.yea_c00099{bottom:70.617523pt;}
.yeb_c00099{bottom:72.641088pt;}
.yec_c00099{bottom:73.702400pt;}
.ydc_c00099{bottom:80.770869pt;}
.ydd_c00099{bottom:82.221811pt;}
.yde_c00099{bottom:83.828203pt;}
.ydf_c00099{bottom:85.047899pt;}
.ye0_c00099{bottom:87.115411pt;}
.ye1_c00099{bottom:88.125072pt;}
.ye2_c00099{bottom:89.124683pt;}
.ye3_c00099{bottom:90.125472pt;}
.yd4_c00099{bottom:96.375232pt;}
.yd5_c00099{bottom:97.615821pt;}
.yd6_c00099{bottom:98.623003pt;}
.yd7_c00099{bottom:99.915827pt;}
.yd8_c00099{bottom:101.232723pt;}
.yd9_c00099{bottom:103.158163pt;}
.yda_c00099{bottom:103.574685pt;}
.ydb_c00099{bottom:104.070581pt;}
.yca_c00099{bottom:112.219021pt;}
.ycb_c00099{bottom:112.930915pt;}
.ycc_c00099{bottom:114.135059pt;}
.ycd_c00099{bottom:114.903955pt;}
.yce_c00099{bottom:115.249216pt;}
.ycf_c00099{bottom:115.695243pt;}
.yd0_c00099{bottom:116.564784pt;}
.yd1_c00099{bottom:117.661992pt;}
.yd2_c00099{bottom:118.955099pt;}
.yd3_c00099{bottom:119.427573pt;}
.yc2_c00099{bottom:128.304955pt;}
.yc3_c00099{bottom:130.387963pt;}
.yc4_c00099{bottom:130.732917pt;}
.yc5_c00099{bottom:132.048693pt;}
.yc6_c00099{bottom:132.738587pt;}
.yc7_c00099{bottom:133.655989pt;}
.yc8_c00099{bottom:134.600864pt;}
.yc9_c00099{bottom:135.088883pt;}
.yb9_c00099{bottom:144.864435pt;}
.yba_c00099{bottom:145.387483pt;}
.ybb_c00099{bottom:145.860683pt;}
.ybc_c00099{bottom:146.755483pt;}
.ybd_c00099{bottom:147.452136pt;}
.ybe_c00099{bottom:148.225608pt;}
.ybf_c00099{bottom:149.800699pt;}
.yc0_c00099{bottom:151.168352pt;}
.yc1_c00099{bottom:151.771963pt;}
.yb0_c00099{bottom:160.233024pt;}
.yb1_c00099{bottom:161.209080pt;}
.yb2_c00099{bottom:162.228936pt;}
.yb3_c00099{bottom:162.716261pt;}
.yb4_c00099{bottom:164.268109pt;}
.yb5_c00099{bottom:164.913024pt;}
.yb6_c00099{bottom:165.311381pt;}
.yb7_c00099{bottom:165.913987pt;}
.yb8_c00099{bottom:166.235352pt;}
.ya7_c00099{bottom:176.318283pt;}
.ya8_c00099{bottom:177.135931pt;}
.ya9_c00099{bottom:178.031752pt;}
.yaa_c00099{bottom:178.540589pt;}
.yab_c00099{bottom:179.963309pt;}
.yac_c00099{bottom:180.343984pt;}
.yad_c00099{bottom:180.803976pt;}
.yae_c00099{bottom:182.041507pt;}
.yaf_c00099{bottom:182.510165pt;}
.y9e_c00099{bottom:192.402208pt;}
.y9f_c00099{bottom:193.000165pt;}
.ya0_c00099{bottom:193.395157pt;}
.ya1_c00099{bottom:193.942355pt;}
.ya2_c00099{bottom:194.479811pt;}
.ya3_c00099{bottom:195.804389pt;}
.ya4_c00099{bottom:196.179272pt;}
.ya5_c00099{bottom:196.623896pt;}
.ya6_c00099{bottom:197.648811pt;}
.y96_c00099{bottom:207.771827pt;}
.y97_c00099{bottom:209.511851pt;}
.y98_c00099{bottom:210.003843pt;}
.y99_c00099{bottom:210.970128pt;}
.y9a_c00099{bottom:211.802005pt;}
.y9b_c00099{bottom:212.427781pt;}
.y9c_c00099{bottom:212.727365pt;}
.y9d_c00099{bottom:213.371515pt;}
.y8e_c00099{bottom:223.377123pt;}
.y8f_c00099{bottom:224.788333pt;}
.y90_c00099{bottom:226.192333pt;}
.y91_c00099{bottom:226.959437pt;}
.y92_c00099{bottom:227.257709pt;}
.y93_c00099{bottom:227.997011pt;}
.y94_c00099{bottom:229.506917pt;}
.y95_c00099{bottom:230.043384pt;}
.y84_c00099{bottom:238.982616pt;}
.y85_c00099{bottom:239.791112pt;}
.y86_c00099{bottom:240.776859pt;}
.y87_c00099{bottom:241.142211pt;}
.y88_c00099{bottom:241.603971pt;}
.y89_c00099{bottom:242.402587pt;}
.y8a_c00099{bottom:242.977117pt;}
.y8b_c00099{bottom:244.400496pt;}
.y8c_c00099{bottom:245.161672pt;}
.y8d_c00099{bottom:245.534963pt;}
.y7c_c00099{bottom:254.349413pt;}
.y7d_c00099{bottom:255.855659pt;}
.y7e_c00099{bottom:257.054728pt;}
.y7f_c00099{bottom:257.750005pt;}
.y80_c00099{bottom:258.214765pt;}
.y81_c00099{bottom:259.554952pt;}
.y82_c00099{bottom:259.989520pt;}
.y83_c00099{bottom:261.434827pt;}
.y74_c00099{bottom:269.472725pt;}
.y75_c00099{bottom:269.772128pt;}
.y76_c00099{bottom:270.959477pt;}
.y77_c00099{bottom:273.026021pt;}
.y78_c00099{bottom:273.549208pt;}
.y79_c00099{bottom:274.620800pt;}
.y7a_c00099{bottom:275.109896pt;}
.y7b_c00099{bottom:276.853120pt;}
.y6b_c00099{bottom:284.120264pt;}
.y6c_c00099{bottom:285.008136pt;}
.y6d_c00099{bottom:285.739968pt;}
.y6e_c00099{bottom:288.196525pt;}
.y6f_c00099{bottom:288.780237pt;}
.y70_c00099{bottom:289.337123pt;}
.y71_c00099{bottom:290.739456pt;}
.y72_c00099{bottom:291.709075pt;}
.y73_c00099{bottom:292.064827pt;}
.y65_c00099{bottom:299.970765pt;}
.y66_c00099{bottom:300.609621pt;}
.y67_c00099{bottom:302.514856pt;}
.y68_c00099{bottom:304.381896pt;}
.y69_c00099{bottom:306.445251pt;}
.y6a_c00099{bottom:307.116757pt;}
.y5d_c00099{bottom:315.814637pt;}
.y5e_c00099{bottom:316.950635pt;}
.y5f_c00099{bottom:317.460875pt;}
.y60_c00099{bottom:318.643739pt;}
.y61_c00099{bottom:319.195557pt;}
.y62_c00099{bottom:320.505379pt;}
.y63_c00099{bottom:321.738211pt;}
.y64_c00099{bottom:323.191853pt;}
.y54_c00099{bottom:331.900845pt;}
.y55_c00099{bottom:332.331933pt;}
.y56_c00099{bottom:333.384027pt;}
.y57_c00099{bottom:334.045485pt;}
.y58_c00099{bottom:334.428547pt;}
.y59_c00099{bottom:335.719331pt;}
.y5a_c00099{bottom:336.425712pt;}
.y5b_c00099{bottom:338.312147pt;}
.y5c_c00099{bottom:339.090715pt;}
.y4b_c00099{bottom:347.744024pt;}
.y4c_c00099{bottom:348.251803pt;}
.y4d_c00099{bottom:349.014813pt;}
.y4e_c00099{bottom:349.452328pt;}
.y4f_c00099{bottom:351.162589pt;}
.y50_c00099{bottom:351.877053pt;}
.y51_c00099{bottom:353.064163pt;}
.y52_c00099{bottom:353.639709pt;}
.y53_c00099{bottom:354.642683pt;}
.y45_c00099{bottom:363.111851pt;}
.y46_c00099{bottom:365.436085pt;}
.y47_c00099{bottom:367.064488pt;}
.y48_c00099{bottom:367.552283pt;}
.y49_c00099{bottom:369.096520pt;}
.y4a_c00099{bottom:369.762211pt;}
.y3d_c00099{bottom:379.194376pt;}
.y3e_c00099{bottom:379.661683pt;}
.y3f_c00099{bottom:380.472904pt;}
.y40_c00099{bottom:381.121355pt;}
.y41_c00099{bottom:382.601099pt;}
.y42_c00099{bottom:383.343405pt;}
.y43_c00099{bottom:383.965563pt;}
.y44_c00099{bottom:385.133197pt;}
.y34_c00099{bottom:394.320141pt;}
.y35_c00099{bottom:395.495725pt;}
.y36_c00099{bottom:395.900187pt;}
.y37_c00099{bottom:396.532357pt;}
.y38_c00099{bottom:397.114248pt;}
.y39_c00099{bottom:397.876392pt;}
.y3a_c00099{bottom:399.135760pt;}
.y3b_c00099{bottom:399.859531pt;}
.y3c_c00099{bottom:401.687859pt;}
.y2c_c00099{bottom:409.923320pt;}
.y2d_c00099{bottom:411.496400pt;}
.y2e_c00099{bottom:413.040344pt;}
.y2f_c00099{bottom:413.332365pt;}
.y30_c00099{bottom:414.412053pt;}
.y31_c00099{bottom:415.063208pt;}
.y32_c00099{bottom:415.420643pt;}
.y33_c00099{bottom:416.571603pt;}
.y25_c00099{bottom:426.488000pt;}
.y26_c00099{bottom:427.225048pt;}
.y27_c00099{bottom:428.782240pt;}
.y28_c00099{bottom:430.182600pt;}
.y29_c00099{bottom:430.557520pt;}
.y2a_c00099{bottom:432.159051pt;}
.y2b_c00099{bottom:432.490637pt;}
.y20_c00099{bottom:439.707167pt;}
.y21_c00099{bottom:440.430887pt;}
.y22_c00099{bottom:441.565727pt;}
.y23_c00099{bottom:442.362215pt;}
.y24_c00099{bottom:444.883439pt;}
.y19_c00099{bottom:455.787755pt;}
.y1a_c00099{bottom:457.392875pt;}
.y1b_c00099{bottom:458.553059pt;}
.y1c_c00099{bottom:459.072251pt;}
.y1d_c00099{bottom:459.803315pt;}
.y1e_c00099{bottom:461.123051pt;}
.y1f_c00099{bottom:463.071419pt;}
.y13_c00099{bottom:469.473407pt;}
.y14_c00099{bottom:471.780587pt;}
.y15_c00099{bottom:472.480043pt;}
.y16_c00099{bottom:474.163907pt;}
.y17_c00099{bottom:475.575299pt;}
.y18_c00099{bottom:477.965819pt;}
.ya_c00099{bottom:485.301419pt;}
.yb_c00099{bottom:486.146207pt;}
.yc_c00099{bottom:487.925135pt;}
.yd_c00099{bottom:488.599655pt;}
.ye_c00099{bottom:490.082159pt;}
.yf_c00099{bottom:490.757975pt;}
.y10_c00099{bottom:492.286547pt;}
.y11_c00099{bottom:493.516151pt;}
.y12_c00099{bottom:494.211119pt;}
.y2_c00099{bottom:500.890667pt;}
.y3_c00099{bottom:501.785915pt;}
.y4_c00099{bottom:502.781339pt;}
.y5_c00099{bottom:503.995355pt;}
.y6_c00099{bottom:504.699707pt;}
.y7_c00099{bottom:505.250267pt;}
.y8_c00099{bottom:507.018059pt;}
.y9_c00099{bottom:509.118395pt;}
.y1_c00099{bottom:521.628000pt;}
.h12_c00099{height:49.483384pt;}
.hf_c00099{height:52.284330pt;}
.h10_c00099{height:54.151627pt;}
.hd_c00099{height:55.085276pt;}
.h13_c00099{height:56.018925pt;}
.h8_c00099{height:56.952574pt;}
.h6_c00099{height:57.846323pt;}
.h9_c00099{height:57.886222pt;}
.h2_c00099{height:58.800000pt;}
.hb_c00099{height:58.819871pt;}
.h11_c00099{height:59.753520pt;}
.he_c00099{height:60.687169pt;}
.hc_c00099{height:61.620817pt;}
.h7_c00099{height:62.554466pt;}
.h3_c00099{height:63.444354pt;}
.ha_c00099{height:63.488115pt;}
.h4_c00099{height:65.310365pt;}
.h5_c00099{height:66.243370pt;}
.h1_c00099{height:558.000000pt;}
.h0_c00099{height:558.240000pt;}
.w0_c00099{width:330.480000pt;}
.w1_c00099{width:330.666667pt;}
.x0_c00099{left:0.000000pt;}
.x3_c00099{left:34.142667pt;}
.x1e_c00099{left:35.512563pt;}
.x35_c00099{left:36.524192pt;}
.x46_c00099{left:37.566323pt;}
.x59_c00099{left:38.706776pt;}
.x5f_c00099{left:39.654819pt;}
.x68_c00099{left:40.871677pt;}
.x55_c00099{left:43.162179pt;}
.x7c_c00099{left:44.248787pt;}
.x82_c00099{left:46.022464pt;}
.x42_c00099{left:51.709384pt;}
.x36_c00099{left:53.830408pt;}
.x3d_c00099{left:54.933925pt;}
.xb_c00099{left:57.087327pt;}
.x4_c00099{left:58.985799pt;}
.x70_c00099{left:60.555299pt;}
.x7f_c00099{left:62.954200pt;}
.x1f_c00099{left:64.404411pt;}
.x4f_c00099{left:65.417565pt;}
.x75_c00099{left:66.868197pt;}
.x7b_c00099{left:68.377336pt;}
.x5d_c00099{left:70.505184pt;}
.x69_c00099{left:72.319677pt;}
.x6d_c00099{left:76.318864pt;}
.x2e_c00099{left:78.078048pt;}
.x3e_c00099{left:82.176504pt;}
.x37_c00099{left:83.850944pt;}
.x23_c00099{left:85.514667pt;}
.x5_c00099{left:86.608815pt;}
.x18_c00099{left:88.117731pt;}
.x2f_c00099{left:92.505285pt;}
.x60_c00099{left:93.932152pt;}
.x13_c00099{left:95.060139pt;}
.x47_c00099{left:96.367272pt;}
.x3f_c00099{left:97.823707pt;}
.xc_c00099{left:105.120183pt;}
.x6a_c00099{left:106.774344pt;}
.x38_c00099{left:107.867653pt;}
.x20_c00099{left:109.738335pt;}
.x43_c00099{left:110.790107pt;}
.x14_c00099{left:113.433735pt;}
.x30_c00099{left:115.074773pt;}
.x4c_c00099{left:117.050912pt;}
.x72_c00099{left:118.797701pt;}
.x6_c00099{left:120.297759pt;}
.xd_c00099{left:123.319959pt;}
.x80_c00099{left:124.520083pt;}
.x19_c00099{left:126.752751pt;}
.x64_c00099{left:129.449616pt;}
.x66_c00099{left:130.621760pt;}
.x6e_c00099{left:132.132075pt;}
.x76_c00099{left:134.902893pt;}
.x31_c00099{left:135.864365pt;}
.x71_c00099{left:137.039989pt;}
.x48_c00099{left:138.629088pt;}
.x7_c00099{left:139.843527pt;}
.x21_c00099{left:141.537759pt;}
.x1a_c00099{left:144.047187pt;}
.x24_c00099{left:145.406667pt;}
.x77_c00099{left:146.796624pt;}
.x61_c00099{left:147.932152pt;}
.x28_c00099{left:151.490456pt;}
.x8_c00099{left:155.121567pt;}
.x15_c00099{left:157.718235pt;}
.x1_c00099{left:158.880000pt;}
.x5a_c00099{left:160.159133pt;}
.x29_c00099{left:162.311512pt;}
.xe_c00099{left:163.349115pt;}
.x50_c00099{left:165.058035pt;}
.x1b_c00099{left:168.405423pt;}
.x5e_c00099{left:170.946517pt;}
.x4d_c00099{left:175.415163pt;}
.x3a_c00099{left:177.579979pt;}
.x73_c00099{left:180.260072pt;}
.xf_c00099{left:181.584855pt;}
.x51_c00099{left:183.300525pt;}
.x40_c00099{left:184.411200pt;}
.x62_c00099{left:188.908152pt;}
.x39_c00099{left:190.149504pt;}
.x44_c00099{left:192.843693pt;}
.x16_c00099{left:194.811747pt;}
.x6b_c00099{left:195.706344pt;}
.x7d_c00099{left:198.136792pt;}
.x25_c00099{left:199.266667pt;}
.x52_c00099{left:200.716488pt;}
.x2a_c00099{left:202.298472pt;}
.x9_c00099{left:204.177795pt;}
.x49_c00099{left:205.098955pt;}
.x32_c00099{left:208.072621pt;}
.x1c_c00099{left:212.356275pt;}
.x26_c00099{left:213.686667pt;}
.x7a_c00099{left:214.734837pt;}
.x2_c00099{left:217.200000pt;}
.x56_c00099{left:220.689680pt;}
.x10_c00099{left:222.855387pt;}
.x5b_c00099{left:224.602437pt;}
.x2b_c00099{left:226.419181pt;}
.x6f_c00099{left:228.249579pt;}
.x78_c00099{left:229.999475pt;}
.x33_c00099{left:233.908603pt;}
.x57_c00099{left:237.551029pt;}
.x2c_c00099{left:239.653501pt;}
.x22_c00099{left:242.220855pt;}
.x53_c00099{left:244.542992pt;}
.x41_c00099{left:247.330573pt;}
.x4a_c00099{left:249.128667pt;}
.x3b_c00099{left:250.141533pt;}
.x7e_c00099{left:251.147333pt;}
.x11_c00099{left:256.051623pt;}
.x17_c00099{left:257.669643pt;}
.x4e_c00099{left:260.896517pt;}
.xa_c00099{left:262.462119pt;}
.x65_c00099{left:264.158451pt;}
.x67_c00099{left:268.465875pt;}
.x3c_c00099{left:273.897619pt;}
.x12_c00099{left:274.818831pt;}
.x1d_c00099{left:277.230699pt;}
.x6c_c00099{left:279.021011pt;}
.x2d_c00099{left:282.279059pt;}
.x81_c00099{left:283.373040pt;}
.x45_c00099{left:284.772552pt;}
.x54_c00099{left:285.973877pt;}
.x27_c00099{left:288.037333pt;}
.x79_c00099{left:290.876059pt;}
.x5c_c00099{left:291.773637pt;}
.x74_c00099{left:292.879827pt;}
.x63_c00099{left:296.049485pt;}
.x58_c00099{left:297.670349pt;}
.x34_c00099{left:299.199872pt;}
.x4b_c00099{left:301.035296pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00100 {
    display:none;
  }
  .loading-indicator_c00100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00100 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00100 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00100" -> "#page-container .classname_c00100")
 */
.pf_c00100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00100 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00100 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00100 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00100 {overflow:visible;}
  }
}
.c_c00100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00100 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00100:after { /* webkit #35443 */
  content: '';
}
.t_c00100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00100 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00100 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00100 { /* info for Javascript */
  display:none;
}
.l_c00100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00100:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00100 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00100.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00100{transform:matrix(0.020760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020760,0.000000,0.000000,0.250000,0,0);}
.mc3_c00100{transform:matrix(0.084935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084935,0.000000,0.000000,0.250000,0,0);}
.m9b_c00100{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.131265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131265,0.000000,0.000000,0.250000,0,0);}
.m77_c00100{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.ma0_c00100{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00100{transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);}
.meb_c00100{transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153330,0.000000,0.000000,0.250000,0,0);}
.m2c_c00100{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.mb3_c00100{transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);}
.m7c_c00100{transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);}
.m8a_c00100{transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.mce_c00100{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.mb6_c00100{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.m91_c00100{transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);}
.m88_c00100{transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);}
.m86_c00100{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00100{transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{transform:matrix(0.164230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164230,0.000000,0.000000,0.250000,0,0);}
.m97_c00100{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.me2_c00100{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00100{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m83_c00100{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.maf_c00100{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.mab_c00100{transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);}
.m8b_c00100{transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);}
.mb4_c00100{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);}
.mf_c00100{transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);}
.m93_c00100{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);}
.m8f_c00100{transform:matrix(0.170390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00100{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.mbf_c00100{transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.m84_c00100{transform:matrix(0.172265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172265,0.000000,0.000000,0.250000,0,0);}
.m70_c00100{transform:matrix(0.172585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172585,0.000000,0.000000,0.250000,0,0);}
.mea_c00100{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);}
.m7f_c00100{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m89_c00100{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m63_c00100{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m96_c00100{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m75_c00100{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.mcf_c00100{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m7b_c00100{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);}
.m92_c00100{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00100{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00100{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m21_c00100{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.md2_c00100{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00100{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m7e_c00100{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00100{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.mc0_c00100{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.md0_c00100{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m1f_c00100{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.md1_c00100{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m69_c00100{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.m72_c00100{transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);}
.m6b_c00100{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.mae_c00100{transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.maa_c00100{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m7a_c00100{transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00100{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00100{transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);}
.mcd_c00100{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m87_c00100{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m9c_c00100{transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);}
.ma6_c00100{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00100{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.mcc_c00100{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m81_c00100{transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m62_c00100{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m4b_c00100{transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);}
.m76_c00100{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.mdc_c00100{transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);}
.me8_c00100{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.m40_c00100{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.mbd_c00100{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);}
.mb1_c00100{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.m80_c00100{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.mc1_c00100{transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);}
.ma9_c00100{transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195030,0.000000,0.000000,0.250000,0,0);}
.ma4_c00100{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m42_c00100{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00100{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.md3_c00100{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m67_c00100{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.mb0_c00100{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00100{transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);}
.m65_c00100{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.me1_c00100{transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.ma5_c00100{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.m43_c00100{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.m9a_c00100{transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);}
.md7_c00100{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.mca_c00100{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00100{transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);}
.mdb_c00100{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.mde_c00100{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m78_c00100{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.ma8_c00100{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m82_c00100{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.m8c_c00100{transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);}
.me7_c00100{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m34_c00100{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.m5c_c00100{transform:matrix(0.205085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205085,0.000000,0.000000,0.250000,0,0);}
.m95_c00100{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m64_c00100{transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);}
.m79_c00100{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.mcb_c00100{transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);}
.me4_c00100{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00100{transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);}
.m98_c00100{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.ma7_c00100{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00100{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m74_c00100{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m85_c00100{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.mdd_c00100{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.md9_c00100{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.m73_c00100{transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.me3_c00100{transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.me6_c00100{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m49_c00100{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m29_c00100{transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m35_c00100{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);}
.m68_c00100{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.md6_c00100{transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.220145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220145,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00100{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);}
.m90_c00100{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);}
.m4e_c00100{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.me5_c00100{transform:matrix(0.223185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223185,0.000000,0.000000,0.250000,0,0);}
.m8d_c00100{transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);}
.mda_c00100{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.mbb_c00100{transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m94_c00100{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);}
.md5_c00100{transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);}
.m6f_c00100{transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231635,0.000000,0.000000,0.250000,0,0);}
.m8e_c00100{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m48_c00100{transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00100{transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);}
.m6d_c00100{transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);}
.mba_c00100{transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);}
.m22_c00100{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.mad_c00100{transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m4c_c00100{transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00100{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.m71_c00100{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.me0_c00100{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m6e_c00100{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00100{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00100{transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00100{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);}
.md8_c00100{transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{transform:matrix(0.279770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279770,0.000000,0.000000,0.250000,0,0);}
.mb8_c00100{transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);}
.me9_c00100{transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);}
.m66_c00100{transform:matrix(0.305950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305950,0.000000,0.000000,0.250000,0,0);}
.m60_c00100{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00100{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m38_c00100{transform:matrix(0.323150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00100{transform:matrix(0.343030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343030,0.000000,0.000000,0.250000,0,0);}
.mc8_c00100{transform:matrix(0.346575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346575,0.000000,0.000000,0.250000,0,0);}
.md4_c00100{transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);}
.mc6_c00100{transform:matrix(0.367975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367975,0.000000,0.000000,0.250000,0,0);}
.ma1_c00100{transform:matrix(0.382900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382900,0.000000,0.000000,0.250000,0,0);}
.mc7_c00100{transform:matrix(0.384765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384765,0.000000,0.000000,0.250000,0,0);}
.mac_c00100{transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.447705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447705,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.488810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488810,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
.fc0_c00100{color:transparent;}
.fsd_c00100{font-size:39.900000px;}
.fsf_c00100{font-size:47.250000px;}
.fs4_c00100{font-size:59.850000px;}
.fs6_c00100{font-size:60.900000px;}
.fs7_c00100{font-size:61.950000px;}
.fsb_c00100{font-size:63.000000px;}
.fs5_c00100{font-size:64.050000px;}
.fs1_c00100{font-size:65.100000px;}
.fsa_c00100{font-size:66.150000px;}
.fsc_c00100{font-size:67.200000px;}
.fse_c00100{font-size:68.250000px;}
.fs9_c00100{font-size:71.400000px;}
.fs2_c00100{font-size:72.450000px;}
.fs8_c00100{font-size:73.500000px;}
.fs3_c00100{font-size:74.550000px;}
.fs0_c00100{font-size:128.100000px;}
.y0_c00100{bottom:0.000000px;}
.y4e_c00100{bottom:23.899500px;}
.y4d_c00100{bottom:40.212000px;}
.y4c_c00100{bottom:40.564500px;}
.y4b_c00100{bottom:40.903500px;}
.y4a_c00100{bottom:41.967000px;}
.y49_c00100{bottom:42.664500px;}
.y48_c00100{bottom:54.955500px;}
.y47_c00100{bottom:55.263000px;}
.y46_c00100{bottom:56.395500px;}
.y45_c00100{bottom:57.184500px;}
.y44_c00100{bottom:57.922500px;}
.y43_c00100{bottom:58.459500px;}
.y42_c00100{bottom:58.887000px;}
.y41_c00100{bottom:59.404500px;}
.y40_c00100{bottom:75.753000px;}
.y3f_c00100{bottom:75.976500px;}
.y3e_c00100{bottom:76.788000px;}
.y3d_c00100{bottom:77.407500px;}
.y3c_c00100{bottom:78.529500px;}
.y3b_c00100{bottom:79.653000px;}
.y3a_c00100{bottom:93.292500px;}
.y39_c00100{bottom:110.409000px;}
.y38_c00100{bottom:110.589000px;}
.y37_c00100{bottom:111.324000px;}
.y36_c00100{bottom:111.840000px;}
.y35_c00100{bottom:112.620000px;}
.y34_c00100{bottom:112.860000px;}
.y33_c00100{bottom:130.645500px;}
.y32_c00100{bottom:144.549000px;}
.y31_c00100{bottom:163.012500px;}
.y30_c00100{bottom:179.439000px;}
.y2f_c00100{bottom:179.665500px;}
.y2e_c00100{bottom:180.141000px;}
.y2d_c00100{bottom:180.600000px;}
.y2c_c00100{bottom:180.870000px;}
.y2b_c00100{bottom:181.135500px;}
.y2a_c00100{bottom:181.711500px;}
.y29_c00100{bottom:197.979000px;}
.y28_c00100{bottom:214.585500px;}
.y27_c00100{bottom:232.269000px;}
.y26_c00100{bottom:249.958500px;}
.y25_c00100{bottom:267.477000px;}
.y24_c00100{bottom:284.787000px;}
.y23_c00100{bottom:302.500500px;}
.y22_c00100{bottom:320.197500px;}
.y21_c00100{bottom:336.031500px;}
.y20_c00100{bottom:353.371500px;}
.y1f_c00100{bottom:371.370000px;}
.y1e_c00100{bottom:388.171500px;}
.y1d_c00100{bottom:406.080000px;}
.y16_c00100{bottom:419.853000px;}
.y17_c00100{bottom:420.537000px;}
.y18_c00100{bottom:421.221000px;}
.y19_c00100{bottom:421.642500px;}
.y1a_c00100{bottom:422.386500px;}
.y1b_c00100{bottom:423.204000px;}
.y1c_c00100{bottom:423.463500px;}
.y10_c00100{bottom:437.673000px;}
.y11_c00100{bottom:437.925000px;}
.y12_c00100{bottom:438.495000px;}
.y13_c00100{bottom:438.744000px;}
.y14_c00100{bottom:439.644000px;}
.y15_c00100{bottom:440.392500px;}
.yf_c00100{bottom:457.446000px;}
.y8_c00100{bottom:472.773000px;}
.y9_c00100{bottom:473.469000px;}
.ya_c00100{bottom:474.132000px;}
.yb_c00100{bottom:474.373500px;}
.yc_c00100{bottom:474.532500px;}
.yd_c00100{bottom:474.900000px;}
.ye_c00100{bottom:475.197000px;}
.y7_c00100{bottom:491.770500px;}
.y6_c00100{bottom:509.706000px;}
.y5_c00100{bottom:526.716000px;}
.y4_c00100{bottom:543.607500px;}
.y3_c00100{bottom:561.700500px;}
.y2_c00100{bottom:578.764500px;}
.y1_c00100{bottom:591.814500px;}
.hf_c00100{height:39.900000px;}
.h11_c00100{height:47.250000px;}
.h6_c00100{height:59.850000px;}
.h8_c00100{height:60.900000px;}
.h9_c00100{height:61.950000px;}
.hd_c00100{height:63.000000px;}
.h7_c00100{height:64.050000px;}
.h3_c00100{height:65.100000px;}
.hc_c00100{height:66.150000px;}
.he_c00100{height:67.200000px;}
.h10_c00100{height:68.250000px;}
.hb_c00100{height:71.400000px;}
.h4_c00100{height:72.450000px;}
.ha_c00100{height:73.500000px;}
.h5_c00100{height:74.550000px;}
.h2_c00100{height:128.100000px;}
.h1_c00100{height:627.750000px;}
.h0_c00100{height:628.020000px;}
.w0_c00100{width:371.790000px;}
.w1_c00100{width:372.000000px;}
.x0_c00100{left:0.000000px;}
.xb_c00100{left:19.980000px;}
.x26_c00100{left:21.202500px;}
.x3_c00100{left:22.410000px;}
.x58_c00100{left:23.488500px;}
.x74_c00100{left:25.378500px;}
.x62_c00100{left:28.618500px;}
.xc_c00100{left:29.700000px;}
.x49_c00100{left:31.048500px;}
.x1c_c00100{left:37.800000px;}
.x7d_c00100{left:41.040000px;}
.x55_c00100{left:42.658500px;}
.x50_c00100{left:43.738500px;}
.x31_c00100{left:45.498000px;}
.x3b_c00100{left:47.788500px;}
.x2c_c00100{left:51.568500px;}
.x67_c00100{left:53.458500px;}
.xd_c00100{left:56.700000px;}
.x12_c00100{left:60.480000px;}
.x5f_c00100{left:64.528500px;}
.x2d_c00100{left:65.878500px;}
.x4_c00100{left:68.310000px;}
.x1d_c00100{left:71.010000px;}
.x21_c00100{left:74.520000px;}
.x41_c00100{left:78.298500px;}
.x6a_c00100{left:80.629500px;}
.x39_c00100{left:82.078500px;}
.x6b_c00100{left:85.318500px;}
.x1e_c00100{left:86.940000px;}
.x27_c00100{left:90.847500px;}
.x6d_c00100{left:95.038500px;}
.x5_c00100{left:96.660000px;}
.x42_c00100{left:98.278500px;}
.x13_c00100{left:100.980000px;}
.x59_c00100{left:102.868500px;}
.x51_c00100{left:104.758500px;}
.x6f_c00100{left:106.378500px;}
.x3c_c00100{left:107.458500px;}
.xe_c00100{left:109.350000px;}
.x19_c00100{left:110.430000px;}
.x60_c00100{left:112.588500px;}
.x46_c00100{left:117.178500px;}
.x32_c00100{left:119.985000px;}
.x75_c00100{left:124.738500px;}
.x71_c00100{left:126.484500px;}
.x35_c00100{left:127.536000px;}
.x2e_c00100{left:128.788500px;}
.xf_c00100{left:131.490000px;}
.x1a_c00100{left:133.920000px;}
.x4a_c00100{left:135.268500px;}
.x79_c00100{left:142.330500px;}
.x4d_c00100{left:145.798500px;}
.x6_c00100{left:146.880000px;}
.x3d_c00100{left:148.768500px;}
.x1_c00100{left:150.930000px;}
.x43_c00100{left:153.898500px;}
.x63_c00100{left:155.248500px;}
.x14_c00100{left:157.680000px;}
.x36_c00100{left:160.015500px;}
.x22_c00100{left:163.080000px;}
.x4e_c00100{left:164.158500px;}
.x78_c00100{left:165.334500px;}
.x44_c00100{left:167.128500px;}
.x3e_c00100{left:169.288500px;}
.x1f_c00100{left:170.910000px;}
.x5a_c00100{left:172.798500px;}
.x76_c00100{left:174.148500px;}
.x72_c00100{left:178.092000px;}
.x15_c00100{left:179.550000px;}
.x28_c00100{left:181.288500px;}
.x7b_c00100{left:182.427000px;}
.x7_c00100{left:183.870000px;}
.x3f_c00100{left:190.618500px;}
.x10_c00100{left:191.970000px;}
.x68_c00100{left:193.048500px;}
.x23_c00100{left:194.670000px;}
.x29_c00100{left:197.224500px;}
.x47_c00100{left:200.608500px;}
.x33_c00100{left:201.829500px;}
.x8_c00100{left:203.850000px;}
.x6e_c00100{left:205.198500px;}
.x61_c00100{left:211.408500px;}
.x7c_c00100{left:213.223500px;}
.x24_c00100{left:216.270000px;}
.x20_c00100{left:218.970000px;}
.x4f_c00100{left:220.048500px;}
.x48_c00100{left:221.668500px;}
.x65_c00100{left:223.288500px;}
.x52_c00100{left:225.178500px;}
.x16_c00100{left:227.880000px;}
.x4b_c00100{left:228.958500px;}
.x77_c00100{left:231.928500px;}
.x2a_c00100{left:233.949000px;}
.x2f_c00100{left:235.708500px;}
.x3a_c00100{left:239.218500px;}
.x66_c00100{left:241.108500px;}
.x5b_c00100{left:242.188500px;}
.x45_c00100{left:243.538500px;}
.x9_c00100{left:244.620000px;}
.x4c_c00100{left:245.698500px;}
.x53_c00100{left:249.478500px;}
.x73_c00100{left:251.535000px;}
.x30_c00100{left:254.878500px;}
.x1b_c00100{left:256.230000px;}
.x40_c00100{left:257.848500px;}
.x7a_c00100{left:259.707000px;}
.xa_c00100{left:261.630000px;}
.x2b_c00100{left:263.646000px;}
.x56_c00100{left:266.218500px;}
.x17_c00100{left:267.840000px;}
.x34_c00100{left:269.869500px;}
.x5c_c00100{left:273.508500px;}
.x70_c00100{left:274.588500px;}
.x69_c00100{left:275.938500px;}
.x6c_c00100{left:278.908500px;}
.x37_c00100{left:280.152000px;}
.x11_c00100{left:283.230000px;}
.x18_c00100{left:285.660000px;}
.x5d_c00100{left:286.738500px;}
.x57_c00100{left:289.438500px;}
.x25_c00100{left:294.570000px;}
.x38_c00100{left:300.135000px;}
.x5e_c00100{left:302.128500px;}
.x64_c00100{left:308.068500px;}
.x54_c00100{left:309.418500px;}
.x2_c00100{left:311.040000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fsd_c00100{font-size:35.466667pt;}
.fsf_c00100{font-size:42.000000pt;}
.fs4_c00100{font-size:53.200000pt;}
.fs6_c00100{font-size:54.133333pt;}
.fs7_c00100{font-size:55.066667pt;}
.fsb_c00100{font-size:56.000000pt;}
.fs5_c00100{font-size:56.933333pt;}
.fs1_c00100{font-size:57.866667pt;}
.fsa_c00100{font-size:58.800000pt;}
.fsc_c00100{font-size:59.733333pt;}
.fse_c00100{font-size:60.666667pt;}
.fs9_c00100{font-size:63.466667pt;}
.fs2_c00100{font-size:64.400000pt;}
.fs8_c00100{font-size:65.333333pt;}
.fs3_c00100{font-size:66.266667pt;}
.fs0_c00100{font-size:113.866667pt;}
.y0_c00100{bottom:0.000000pt;}
.y4e_c00100{bottom:21.244000pt;}
.y4d_c00100{bottom:35.744000pt;}
.y4c_c00100{bottom:36.057333pt;}
.y4b_c00100{bottom:36.358667pt;}
.y4a_c00100{bottom:37.304000pt;}
.y49_c00100{bottom:37.924000pt;}
.y48_c00100{bottom:48.849333pt;}
.y47_c00100{bottom:49.122667pt;}
.y46_c00100{bottom:50.129333pt;}
.y45_c00100{bottom:50.830667pt;}
.y44_c00100{bottom:51.486667pt;}
.y43_c00100{bottom:51.964000pt;}
.y42_c00100{bottom:52.344000pt;}
.y41_c00100{bottom:52.804000pt;}
.y40_c00100{bottom:67.336000pt;}
.y3f_c00100{bottom:67.534667pt;}
.y3e_c00100{bottom:68.256000pt;}
.y3d_c00100{bottom:68.806667pt;}
.y3c_c00100{bottom:69.804000pt;}
.y3b_c00100{bottom:70.802667pt;}
.y3a_c00100{bottom:82.926667pt;}
.y39_c00100{bottom:98.141333pt;}
.y38_c00100{bottom:98.301333pt;}
.y37_c00100{bottom:98.954667pt;}
.y36_c00100{bottom:99.413333pt;}
.y35_c00100{bottom:100.106667pt;}
.y34_c00100{bottom:100.320000pt;}
.y33_c00100{bottom:116.129333pt;}
.y32_c00100{bottom:128.488000pt;}
.y31_c00100{bottom:144.900000pt;}
.y30_c00100{bottom:159.501333pt;}
.y2f_c00100{bottom:159.702667pt;}
.y2e_c00100{bottom:160.125333pt;}
.y2d_c00100{bottom:160.533333pt;}
.y2c_c00100{bottom:160.773333pt;}
.y2b_c00100{bottom:161.009333pt;}
.y2a_c00100{bottom:161.521333pt;}
.y29_c00100{bottom:175.981333pt;}
.y28_c00100{bottom:190.742667pt;}
.y27_c00100{bottom:206.461333pt;}
.y26_c00100{bottom:222.185333pt;}
.y25_c00100{bottom:237.757333pt;}
.y24_c00100{bottom:253.144000pt;}
.y23_c00100{bottom:268.889333pt;}
.y22_c00100{bottom:284.620000pt;}
.y21_c00100{bottom:298.694667pt;}
.y20_c00100{bottom:314.108000pt;}
.y1f_c00100{bottom:330.106667pt;}
.y1e_c00100{bottom:345.041333pt;}
.y1d_c00100{bottom:360.960000pt;}
.y16_c00100{bottom:373.202667pt;}
.y17_c00100{bottom:373.810667pt;}
.y18_c00100{bottom:374.418667pt;}
.y19_c00100{bottom:374.793333pt;}
.y1a_c00100{bottom:375.454667pt;}
.y1b_c00100{bottom:376.181333pt;}
.y1c_c00100{bottom:376.412000pt;}
.y10_c00100{bottom:389.042667pt;}
.y11_c00100{bottom:389.266667pt;}
.y12_c00100{bottom:389.773333pt;}
.y13_c00100{bottom:389.994667pt;}
.y14_c00100{bottom:390.794667pt;}
.y15_c00100{bottom:391.460000pt;}
.yf_c00100{bottom:406.618667pt;}
.y8_c00100{bottom:420.242667pt;}
.y9_c00100{bottom:420.861333pt;}
.ya_c00100{bottom:421.450667pt;}
.yb_c00100{bottom:421.665333pt;}
.yc_c00100{bottom:421.806667pt;}
.yd_c00100{bottom:422.133333pt;}
.ye_c00100{bottom:422.397333pt;}
.y7_c00100{bottom:437.129333pt;}
.y6_c00100{bottom:453.072000pt;}
.y5_c00100{bottom:468.192000pt;}
.y4_c00100{bottom:483.206667pt;}
.y3_c00100{bottom:499.289333pt;}
.y2_c00100{bottom:514.457333pt;}
.y1_c00100{bottom:526.057333pt;}
.hf_c00100{height:35.466667pt;}
.h11_c00100{height:42.000000pt;}
.h6_c00100{height:53.200000pt;}
.h8_c00100{height:54.133333pt;}
.h9_c00100{height:55.066667pt;}
.hd_c00100{height:56.000000pt;}
.h7_c00100{height:56.933333pt;}
.h3_c00100{height:57.866667pt;}
.hc_c00100{height:58.800000pt;}
.he_c00100{height:59.733333pt;}
.h10_c00100{height:60.666667pt;}
.hb_c00100{height:63.466667pt;}
.h4_c00100{height:64.400000pt;}
.ha_c00100{height:65.333333pt;}
.h5_c00100{height:66.266667pt;}
.h2_c00100{height:113.866667pt;}
.h1_c00100{height:558.000000pt;}
.h0_c00100{height:558.240000pt;}
.w0_c00100{width:330.480000pt;}
.w1_c00100{width:330.666667pt;}
.x0_c00100{left:0.000000pt;}
.xb_c00100{left:17.760000pt;}
.x26_c00100{left:18.846667pt;}
.x3_c00100{left:19.920000pt;}
.x58_c00100{left:20.878667pt;}
.x74_c00100{left:22.558667pt;}
.x62_c00100{left:25.438667pt;}
.xc_c00100{left:26.400000pt;}
.x49_c00100{left:27.598667pt;}
.x1c_c00100{left:33.600000pt;}
.x7d_c00100{left:36.480000pt;}
.x55_c00100{left:37.918667pt;}
.x50_c00100{left:38.878667pt;}
.x31_c00100{left:40.442667pt;}
.x3b_c00100{left:42.478667pt;}
.x2c_c00100{left:45.838667pt;}
.x67_c00100{left:47.518667pt;}
.xd_c00100{left:50.400000pt;}
.x12_c00100{left:53.760000pt;}
.x5f_c00100{left:57.358667pt;}
.x2d_c00100{left:58.558667pt;}
.x4_c00100{left:60.720000pt;}
.x1d_c00100{left:63.120000pt;}
.x21_c00100{left:66.240000pt;}
.x41_c00100{left:69.598667pt;}
.x6a_c00100{left:71.670667pt;}
.x39_c00100{left:72.958667pt;}
.x6b_c00100{left:75.838667pt;}
.x1e_c00100{left:77.280000pt;}
.x27_c00100{left:80.753333pt;}
.x6d_c00100{left:84.478667pt;}
.x5_c00100{left:85.920000pt;}
.x42_c00100{left:87.358667pt;}
.x13_c00100{left:89.760000pt;}
.x59_c00100{left:91.438667pt;}
.x51_c00100{left:93.118667pt;}
.x6f_c00100{left:94.558667pt;}
.x3c_c00100{left:95.518667pt;}
.xe_c00100{left:97.200000pt;}
.x19_c00100{left:98.160000pt;}
.x60_c00100{left:100.078667pt;}
.x46_c00100{left:104.158667pt;}
.x32_c00100{left:106.653333pt;}
.x75_c00100{left:110.878667pt;}
.x71_c00100{left:112.430667pt;}
.x35_c00100{left:113.365333pt;}
.x2e_c00100{left:114.478667pt;}
.xf_c00100{left:116.880000pt;}
.x1a_c00100{left:119.040000pt;}
.x4a_c00100{left:120.238667pt;}
.x79_c00100{left:126.516000pt;}
.x4d_c00100{left:129.598667pt;}
.x6_c00100{left:130.560000pt;}
.x3d_c00100{left:132.238667pt;}
.x1_c00100{left:134.160000pt;}
.x43_c00100{left:136.798667pt;}
.x63_c00100{left:137.998667pt;}
.x14_c00100{left:140.160000pt;}
.x36_c00100{left:142.236000pt;}
.x22_c00100{left:144.960000pt;}
.x4e_c00100{left:145.918667pt;}
.x78_c00100{left:146.964000pt;}
.x44_c00100{left:148.558667pt;}
.x3e_c00100{left:150.478667pt;}
.x1f_c00100{left:151.920000pt;}
.x5a_c00100{left:153.598667pt;}
.x76_c00100{left:154.798667pt;}
.x72_c00100{left:158.304000pt;}
.x15_c00100{left:159.600000pt;}
.x28_c00100{left:161.145333pt;}
.x7b_c00100{left:162.157333pt;}
.x7_c00100{left:163.440000pt;}
.x3f_c00100{left:169.438667pt;}
.x10_c00100{left:170.640000pt;}
.x68_c00100{left:171.598667pt;}
.x23_c00100{left:173.040000pt;}
.x29_c00100{left:175.310667pt;}
.x47_c00100{left:178.318667pt;}
.x33_c00100{left:179.404000pt;}
.x8_c00100{left:181.200000pt;}
.x6e_c00100{left:182.398667pt;}
.x61_c00100{left:187.918667pt;}
.x7c_c00100{left:189.532000pt;}
.x24_c00100{left:192.240000pt;}
.x20_c00100{left:194.640000pt;}
.x4f_c00100{left:195.598667pt;}
.x48_c00100{left:197.038667pt;}
.x65_c00100{left:198.478667pt;}
.x52_c00100{left:200.158667pt;}
.x16_c00100{left:202.560000pt;}
.x4b_c00100{left:203.518667pt;}
.x77_c00100{left:206.158667pt;}
.x2a_c00100{left:207.954667pt;}
.x2f_c00100{left:209.518667pt;}
.x3a_c00100{left:212.638667pt;}
.x66_c00100{left:214.318667pt;}
.x5b_c00100{left:215.278667pt;}
.x45_c00100{left:216.478667pt;}
.x9_c00100{left:217.440000pt;}
.x4c_c00100{left:218.398667pt;}
.x53_c00100{left:221.758667pt;}
.x73_c00100{left:223.586667pt;}
.x30_c00100{left:226.558667pt;}
.x1b_c00100{left:227.760000pt;}
.x40_c00100{left:229.198667pt;}
.x7a_c00100{left:230.850667pt;}
.xa_c00100{left:232.560000pt;}
.x2b_c00100{left:234.352000pt;}
.x56_c00100{left:236.638667pt;}
.x17_c00100{left:238.080000pt;}
.x34_c00100{left:239.884000pt;}
.x5c_c00100{left:243.118667pt;}
.x70_c00100{left:244.078667pt;}
.x69_c00100{left:245.278667pt;}
.x6c_c00100{left:247.918667pt;}
.x37_c00100{left:249.024000pt;}
.x11_c00100{left:251.760000pt;}
.x18_c00100{left:253.920000pt;}
.x5d_c00100{left:254.878667pt;}
.x57_c00100{left:257.278667pt;}
.x25_c00100{left:261.840000pt;}
.x38_c00100{left:266.786667pt;}
.x5e_c00100{left:268.558667pt;}
.x64_c00100{left:273.838667pt;}
.x54_c00100{left:275.038667pt;}
.x2_c00100{left:276.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00101 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00101 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00101 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00101 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00101{transform:matrix(0.080310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080310,0.000000,0.000000,0.250000,0,0);}
.me8_c00101{transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.104771,-0.001362,0.003250,0.249979,0,0);-ms-transform:matrix(0.104771,-0.001362,0.003250,0.249979,0,0);-webkit-transform:matrix(0.104771,-0.001362,0.003250,0.249979,0,0);}
.ma9_c00101{transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);}
.md7_c00101{transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);}
.md6_c00101{transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);}
.md8_c00101{transform:matrix(0.140855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140855,0.000000,0.000000,0.250000,0,0);}
.md9_c00101{transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);}
.m91_c00101{transform:matrix(0.145330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145330,0.000000,0.000000,0.250000,0,0);}
.me2_c00101{transform:matrix(0.147070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147070,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.147848,-0.001922,0.003250,0.249979,0,0);-ms-transform:matrix(0.147848,-0.001922,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147848,-0.001922,0.003250,0.249979,0,0);}
.m34_c00101{transform:matrix(0.148172,-0.001926,0.003250,0.249979,0,0);-ms-transform:matrix(0.148172,-0.001926,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148172,-0.001926,0.003250,0.249979,0,0);}
.m25_c00101{transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);-ms-transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);}
.m6_c00101{transform:matrix(0.149062,-0.001938,0.003250,0.249979,0,0);-ms-transform:matrix(0.149062,-0.001938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149062,-0.001938,0.003250,0.249979,0,0);}
.m3d_c00101{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.150327,-0.001954,0.003250,0.249979,0,0);-ms-transform:matrix(0.150327,-0.001954,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150327,-0.001954,0.003250,0.249979,0,0);}
.mcd_c00101{transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);}
.me5_c00101{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);}
.mdb_c00101{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);}
.me1_c00101{transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.156972,-0.002041,0.003250,0.249979,0,0);-ms-transform:matrix(0.156972,-0.002041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156972,-0.002041,0.003250,0.249979,0,0);}
.m8d_c00101{transform:matrix(0.157040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157040,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);}
.m93_c00101{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.md4_c00101{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.mc8_c00101{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00101{transform:matrix(0.162745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162745,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.164081,-0.002133,0.003250,0.249979,0,0);-ms-transform:matrix(0.164081,-0.002133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164081,-0.002133,0.003250,0.249979,0,0);}
.m90_c00101{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.me7_c00101{transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{transform:matrix(0.164631,-0.002140,0.003250,0.249979,0,0);-ms-transform:matrix(0.164631,-0.002140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164631,-0.002140,0.003250,0.249979,0,0);}
.maf_c00101{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m92_c00101{transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);}
.m9f_c00101{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.166151,-0.002160,0.003250,0.249979,0,0);-ms-transform:matrix(0.166151,-0.002160,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166151,-0.002160,0.003250,0.249979,0,0);}
.mab_c00101{transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.168495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168495,0.000000,0.000000,0.250000,0,0);}
.me0_c00101{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.169631,-0.002205,0.003250,0.249979,0,0);-ms-transform:matrix(0.169631,-0.002205,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169631,-0.002205,0.003250,0.249979,0,0);}
.m1f_c00101{transform:matrix(0.169841,-0.002208,0.003250,0.249979,0,0);-ms-transform:matrix(0.169841,-0.002208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169841,-0.002208,0.003250,0.249979,0,0);}
.m0_c00101{transform:matrix(0.170716,-0.002219,0.003250,0.249979,0,0);-ms-transform:matrix(0.170716,-0.002219,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170716,-0.002219,0.003250,0.249979,0,0);}
.m8a_c00101{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.mb9_c00101{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.172710,-0.002245,0.003250,0.249979,0,0);-ms-transform:matrix(0.172710,-0.002245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172710,-0.002245,0.003250,0.249979,0,0);}
.mdf_c00101{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m95_c00101{transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.173105,-0.002250,0.003250,0.249979,0,0);-ms-transform:matrix(0.173105,-0.002250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173105,-0.002250,0.003250,0.249979,0,0);}
.m96_c00101{transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);}
.mc7_c00101{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.mcc_c00101{transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.175365,-0.002280,0.003250,0.249979,0,0);-ms-transform:matrix(0.175365,-0.002280,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175365,-0.002280,0.003250,0.249979,0,0);}
.mde_c00101{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.176735,-0.002298,0.003250,0.249979,0,0);-ms-transform:matrix(0.176735,-0.002298,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176735,-0.002298,0.003250,0.249979,0,0);}
.mf_c00101{transform:matrix(0.177160,-0.002303,0.003250,0.249979,0,0);-ms-transform:matrix(0.177160,-0.002303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177160,-0.002303,0.003250,0.249979,0,0);}
.m65_c00101{transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{transform:matrix(0.177415,-0.002306,0.003250,0.249979,0,0);-ms-transform:matrix(0.177415,-0.002306,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177415,-0.002306,0.003250,0.249979,0,0);}
.m86_c00101{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.177790,-0.002311,0.003250,0.249979,0,0);-ms-transform:matrix(0.177790,-0.002311,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177790,-0.002311,0.003250,0.249979,0,0);}
.me4_c00101{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);}
.mc9_c00101{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.180615,-0.002348,0.003250,0.249979,0,0);-ms-transform:matrix(0.180615,-0.002348,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180615,-0.002348,0.003250,0.249979,0,0);}
.ma4_c00101{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.181175,-0.002355,0.003250,0.249979,0,0);-ms-transform:matrix(0.181175,-0.002355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181175,-0.002355,0.003250,0.249979,0,0);}
.m3f_c00101{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m8f_c00101{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.182780,-0.002376,0.003250,0.249979,0,0);-ms-transform:matrix(0.182780,-0.002376,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182780,-0.002376,0.003250,0.249979,0,0);}
.m77_c00101{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.183474,-0.002385,0.003250,0.249979,0,0);-ms-transform:matrix(0.183474,-0.002385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183474,-0.002385,0.003250,0.249979,0,0);}
.mda_c00101{transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.183844,-0.002390,0.003250,0.249979,0,0);-ms-transform:matrix(0.183844,-0.002390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183844,-0.002390,0.003250,0.249979,0,0);}
.m39_c00101{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);}
.mb0_c00101{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.m9e_c00101{transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);}
.ma5_c00101{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.186674,-0.002427,0.003250,0.249979,0,0);-ms-transform:matrix(0.186674,-0.002427,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186674,-0.002427,0.003250,0.249979,0,0);}
.m20_c00101{transform:matrix(0.188274,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188274,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188274,-0.002448,0.003250,0.249979,0,0);}
.mca_c00101{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.mb7_c00101{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.189739,-0.002467,0.003250,0.249979,0,0);-ms-transform:matrix(0.189739,-0.002467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189739,-0.002467,0.003250,0.249979,0,0);}
.ma6_c00101{transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.190279,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190279,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190279,-0.002474,0.003250,0.249979,0,0);}
.mba_c00101{transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190935,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.mb6_c00101{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.me6_c00101{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.mb1_c00101{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.mdc_c00101{transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.193854,-0.002520,0.003250,0.249979,0,0);-ms-transform:matrix(0.193854,-0.002520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193854,-0.002520,0.003250,0.249979,0,0);}
.md0_c00101{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.mcf_c00101{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00101{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.md5_c00101{transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.195848,-0.002546,0.003250,0.249979,0,0);-ms-transform:matrix(0.195848,-0.002546,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195848,-0.002546,0.003250,0.249979,0,0);}
.m4b_c00101{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mb4_c00101{transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);}
.me3_c00101{transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.mad_c00101{transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);}
.ma1_c00101{transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.mc5_c00101{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.mbd_c00101{transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.mac_c00101{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.200303,-0.002604,0.003250,0.249979,0,0);-ms-transform:matrix(0.200303,-0.002604,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200303,-0.002604,0.003250,0.249979,0,0);}
.m30_c00101{transform:matrix(0.200958,-0.002612,0.003250,0.249979,0,0);-ms-transform:matrix(0.200958,-0.002612,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200958,-0.002612,0.003250,0.249979,0,0);}
.md2_c00101{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.mbc_c00101{transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.201168,-0.002615,0.003250,0.249979,0,0);-ms-transform:matrix(0.201168,-0.002615,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201168,-0.002615,0.003250,0.249979,0,0);}
.mb3_c00101{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);}
.m9d_c00101{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);}
.mc0_c00101{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.md3_c00101{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.202858,-0.002637,0.003250,0.249979,0,0);-ms-transform:matrix(0.202858,-0.002637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202858,-0.002637,0.003250,0.249979,0,0);}
.m61_c00101{transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.204158,-0.002654,0.003250,0.249979,0,0);-ms-transform:matrix(0.204158,-0.002654,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204158,-0.002654,0.003250,0.249979,0,0);}
.ma8_c00101{transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.ma7_c00101{transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);}
.m88_c00101{transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.205543,-0.002672,0.003250,0.249979,0,0);-ms-transform:matrix(0.205543,-0.002672,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205543,-0.002672,0.003250,0.249979,0,0);}
.m64_c00101{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00101{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.207612,-0.002699,0.003250,0.249979,0,0);-ms-transform:matrix(0.207612,-0.002699,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207612,-0.002699,0.003250,0.249979,0,0);}
.m54_c00101{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.m98_c00101{transform:matrix(0.208645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208645,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.209382,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209382,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209382,-0.002722,0.003250,0.249979,0,0);}
.m55_c00101{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);}
.mc3_c00101{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.212232,-0.002759,0.003250,0.249979,0,0);-ms-transform:matrix(0.212232,-0.002759,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212232,-0.002759,0.003250,0.249979,0,0);}
.mae_c00101{transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.213562,-0.002776,0.003250,0.249979,0,0);-ms-transform:matrix(0.213562,-0.002776,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213562,-0.002776,0.003250,0.249979,0,0);}
.mc6_c00101{transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.213777,-0.002779,0.003250,0.249979,0,0);-ms-transform:matrix(0.213777,-0.002779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213777,-0.002779,0.003250,0.249979,0,0);}
.mb2_c00101{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.mb8_c00101{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.215207,-0.002798,0.003250,0.249979,0,0);-ms-transform:matrix(0.215207,-0.002798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215207,-0.002798,0.003250,0.249979,0,0);}
.m8_c00101{transform:matrix(0.215247,-0.002798,0.003250,0.249979,0,0);-ms-transform:matrix(0.215247,-0.002798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215247,-0.002798,0.003250,0.249979,0,0);}
.m9b_c00101{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.mbb_c00101{transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.216252,-0.002811,0.003250,0.249979,0,0);-ms-transform:matrix(0.216252,-0.002811,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216252,-0.002811,0.003250,0.249979,0,0);}
.m1c_c00101{transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);-ms-transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216987,-0.002821,0.003250,0.249979,0,0);}
.ma0_c00101{transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);}
.m94_c00101{transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.217237,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217237,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217237,-0.002824,0.003250,0.249979,0,0);}
.m2d_c00101{transform:matrix(0.217432,-0.002827,0.003250,0.249979,0,0);-ms-transform:matrix(0.217432,-0.002827,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217432,-0.002827,0.003250,0.249979,0,0);}
.m15_c00101{transform:matrix(0.218862,-0.002845,0.003250,0.249979,0,0);-ms-transform:matrix(0.218862,-0.002845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218862,-0.002845,0.003250,0.249979,0,0);}
.md1_c00101{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.mb5_c00101{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);}
.m97_c00101{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.224626,-0.002920,0.003250,0.249979,0,0);-ms-transform:matrix(0.224626,-0.002920,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224626,-0.002920,0.003250,0.249979,0,0);}
.ma3_c00101{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.mcb_c00101{transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.224891,-0.002924,0.003250,0.249979,0,0);-ms-transform:matrix(0.224891,-0.002924,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224891,-0.002924,0.003250,0.249979,0,0);}
.mc2_c00101{transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.228131,-0.002966,0.003250,0.249979,0,0);-ms-transform:matrix(0.228131,-0.002966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228131,-0.002966,0.003250,0.249979,0,0);}
.maa_c00101{transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.236250,-0.003071,0.003250,0.249979,0,0);-ms-transform:matrix(0.236250,-0.003071,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236250,-0.003071,0.003250,0.249979,0,0);}
.mbe_c00101{transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.243239,-0.003162,0.003250,0.249979,0,0);-ms-transform:matrix(0.243239,-0.003162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243239,-0.003162,0.003250,0.249979,0,0);}
.m53_c00101{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.260035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260035,0.000000,0.000000,0.250000,0,0);}
.m45_c00101{transform:matrix(0.260040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260040,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264680,0.000000,0.000000,0.250000,0,0);}
.mbf_c00101{transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.314310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314310,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);}
.mc4_c00101{transform:matrix(0.319645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319645,0.000000,0.000000,0.250000,0,0);}
.mce_c00101{transform:matrix(0.380640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380640,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.468795,-0.006094,0.003250,0.249979,0,0);-ms-transform:matrix(0.468795,-0.006094,0.003250,0.249979,0,0);-webkit-transform:matrix(0.468795,-0.006094,0.003250,0.249979,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:0.000000px;}
.fc0_c00101{color:transparent;}
.fse_c00101{font-size:59.850000px;}
.fs10_c00101{font-size:60.900000px;}
.fsf_c00101{font-size:61.950000px;}
.fs2_c00101{font-size:61.955235px;}
.fs9_c00101{font-size:63.000000px;}
.fs5_c00101{font-size:63.005323px;}
.fsb_c00101{font-size:64.050000px;}
.fs3_c00101{font-size:64.055412px;}
.fs8_c00101{font-size:65.100000px;}
.fsa_c00101{font-size:66.150000px;}
.fsd_c00101{font-size:67.200000px;}
.fs7_c00101{font-size:68.250000px;}
.fsc_c00101{font-size:70.350000px;}
.fs6_c00101{font-size:71.400000px;}
.fs1_c00101{font-size:73.506210px;}
.fs12_c00101{font-size:74.550000px;}
.fs0_c00101{font-size:74.556299px;}
.fs4_c00101{font-size:75.606388px;}
.fs11_c00101{font-size:86.100000px;}
.y0_c00101{bottom:0.000000px;}
.ya3_c00101{bottom:30.780000px;}
.ya4_c00101{bottom:32.440500px;}
.ya5_c00101{bottom:32.784000px;}
.ya6_c00101{bottom:33.570000px;}
.ya7_c00101{bottom:34.479000px;}
.y9c_c00101{bottom:49.413000px;}
.y9d_c00101{bottom:49.860000px;}
.y9e_c00101{bottom:50.904000px;}
.y9f_c00101{bottom:52.086000px;}
.ya0_c00101{bottom:52.698000px;}
.ya1_c00101{bottom:53.437500px;}
.ya2_c00101{bottom:53.796000px;}
.y95_c00101{bottom:66.693000px;}
.y96_c00101{bottom:67.542000px;}
.y97_c00101{bottom:67.744500px;}
.y98_c00101{bottom:68.115000px;}
.y99_c00101{bottom:68.743500px;}
.y9a_c00101{bottom:68.922000px;}
.y9b_c00101{bottom:69.634500px;}
.y8e_c00101{bottom:83.706000px;}
.y8f_c00101{bottom:84.936000px;}
.y90_c00101{bottom:85.315500px;}
.y91_c00101{bottom:86.209500px;}
.y92_c00101{bottom:87.567000px;}
.y93_c00101{bottom:88.135500px;}
.y94_c00101{bottom:88.609500px;}
.y84_c00101{bottom:103.143000px;}
.y85_c00101{bottom:103.359000px;}
.y86_c00101{bottom:104.098500px;}
.y87_c00101{bottom:104.311500px;}
.y88_c00101{bottom:104.557500px;}
.y89_c00101{bottom:104.757000px;}
.y8a_c00101{bottom:105.211500px;}
.y8b_c00101{bottom:105.327000px;}
.y8c_c00101{bottom:105.748500px;}
.y8d_c00101{bottom:105.985500px;}
.y7f_c00101{bottom:118.807500px;}
.y80_c00101{bottom:119.865000px;}
.y81_c00101{bottom:120.265500px;}
.y82_c00101{bottom:122.344500px;}
.y83_c00101{bottom:123.138000px;}
.y79_c00101{bottom:137.704500px;}
.y7a_c00101{bottom:138.076500px;}
.y7b_c00101{bottom:139.057500px;}
.y7c_c00101{bottom:139.977000px;}
.y7d_c00101{bottom:140.932500px;}
.y7e_c00101{bottom:142.083000px;}
.y72_c00101{bottom:156.603000px;}
.y73_c00101{bottom:157.089000px;}
.y74_c00101{bottom:157.336500px;}
.y75_c00101{bottom:158.470500px;}
.y76_c00101{bottom:158.970000px;}
.y77_c00101{bottom:159.334500px;}
.y78_c00101{bottom:159.676500px;}
.y69_c00101{bottom:173.074500px;}
.y6a_c00101{bottom:173.326500px;}
.y6b_c00101{bottom:173.850000px;}
.y6c_c00101{bottom:174.091500px;}
.y6d_c00101{bottom:174.864000px;}
.y6e_c00101{bottom:175.341000px;}
.y6f_c00101{bottom:175.791000px;}
.y70_c00101{bottom:176.556000px;}
.y71_c00101{bottom:176.781000px;}
.y68_c00101{bottom:192.697500px;}
.y61_c00101{bottom:208.714500px;}
.y62_c00101{bottom:209.419500px;}
.y63_c00101{bottom:209.890500px;}
.y64_c00101{bottom:210.802500px;}
.y65_c00101{bottom:211.020000px;}
.y66_c00101{bottom:211.599000px;}
.y67_c00101{bottom:212.461500px;}
.y60_c00101{bottom:228.637500px;}
.y5f_c00101{bottom:245.830500px;}
.y5e_c00101{bottom:264.313500px;}
.y5d_c00101{bottom:281.289000px;}
.y5c_c00101{bottom:298.008000px;}
.y56_c00101{bottom:314.281500px;}
.y57_c00101{bottom:315.220500px;}
.y58_c00101{bottom:315.901500px;}
.y59_c00101{bottom:316.186500px;}
.y5a_c00101{bottom:316.996500px;}
.y5b_c00101{bottom:317.473500px;}
.y4f_c00101{bottom:331.021500px;}
.y50_c00101{bottom:331.459500px;}
.y51_c00101{bottom:332.139000px;}
.y52_c00101{bottom:332.613000px;}
.y53_c00101{bottom:333.318000px;}
.y54_c00101{bottom:334.152000px;}
.y55_c00101{bottom:334.353000px;}
.y48_c00101{bottom:349.921500px;}
.y49_c00101{bottom:350.452500px;}
.y4a_c00101{bottom:350.829000px;}
.y4b_c00101{bottom:351.180000px;}
.y4c_c00101{bottom:351.970500px;}
.y4d_c00101{bottom:352.566000px;}
.y4e_c00101{bottom:353.287500px;}
.y46_c00101{bottom:367.203000px;}
.y47_c00101{bottom:370.330500px;}
.y45_c00101{bottom:386.382000px;}
.y3d_c00101{bottom:402.301500px;}
.y3e_c00101{bottom:403.002000px;}
.y3f_c00101{bottom:403.393500px;}
.y40_c00101{bottom:404.011500px;}
.y41_c00101{bottom:404.359500px;}
.y42_c00101{bottom:404.655000px;}
.y43_c00101{bottom:404.842500px;}
.y44_c00101{bottom:405.429000px;}
.y3c_c00101{bottom:422.227500px;}
.y3b_c00101{bottom:439.398000px;}
.y3a_c00101{bottom:456.693000px;}
.y31_c00101{bottom:472.763619px;}
.y32_c00101{bottom:473.365881px;}
.y33_c00101{bottom:473.719796px;}
.y34_c00101{bottom:473.887448px;}
.y35_c00101{bottom:474.314215px;}
.y36_c00101{bottom:474.482355px;}
.y37_c00101{bottom:474.917667px;}
.y38_c00101{bottom:475.410756px;}
.y39_c00101{bottom:475.545893px;}
.y2f_c00101{bottom:492.339795px;}
.y30_c00101{bottom:492.340106px;}
.y2e_c00101{bottom:492.340464px;}
.y2d_c00101{bottom:492.340893px;}
.y2b_c00101{bottom:492.341001px;}
.y2a_c00101{bottom:492.341169px;}
.y2c_c00101{bottom:492.341542px;}
.y22_c00101{bottom:507.595822px;}
.y23_c00101{bottom:508.101568px;}
.y24_c00101{bottom:508.395039px;}
.y25_c00101{bottom:509.173874px;}
.y26_c00101{bottom:509.506662px;}
.y27_c00101{bottom:509.711450px;}
.y28_c00101{bottom:510.367879px;}
.y29_c00101{bottom:510.730840px;}
.y1b_c00101{bottom:526.979081px;}
.y1d_c00101{bottom:526.979153px;}
.y21_c00101{bottom:526.979176px;}
.y1f_c00101{bottom:526.979203px;}
.y1c_c00101{bottom:526.979252px;}
.y20_c00101{bottom:526.979496px;}
.y1e_c00101{bottom:526.979553px;}
.y1a_c00101{bottom:526.979640px;}
.y19_c00101{bottom:526.979979px;}
.y17_c00101{bottom:544.719268px;}
.y16_c00101{bottom:544.719707px;}
.y15_c00101{bottom:544.719756px;}
.y18_c00101{bottom:544.719890px;}
.y14_c00101{bottom:544.719984px;}
.y12_c00101{bottom:544.720002px;}
.y13_c00101{bottom:544.720633px;}
.ye_c00101{bottom:563.012049px;}
.yd_c00101{bottom:563.012177px;}
.y10_c00101{bottom:563.012220px;}
.y11_c00101{bottom:563.012410px;}
.yf_c00101{bottom:563.012540px;}
.ya_c00101{bottom:563.012553px;}
.y9_c00101{bottom:563.012602px;}
.yc_c00101{bottom:563.012766px;}
.yb_c00101{bottom:563.012794px;}
.y1_c00101{bottom:575.643000px;}
.y2_c00101{bottom:575.893185px;}
.y3_c00101{bottom:576.665326px;}
.y4_c00101{bottom:577.506478px;}
.y5_c00101{bottom:577.746056px;}
.y6_c00101{bottom:577.953126px;}
.y7_c00101{bottom:578.609535px;}
.y8_c00101{bottom:578.949986px;}
.h10_c00101{height:59.850000px;}
.h12_c00101{height:60.900000px;}
.h11_c00101{height:61.950000px;}
.h4_c00101{height:61.955235px;}
.hb_c00101{height:63.000000px;}
.h7_c00101{height:63.005323px;}
.hd_c00101{height:64.050000px;}
.h5_c00101{height:64.055412px;}
.ha_c00101{height:65.100000px;}
.hc_c00101{height:66.150000px;}
.hf_c00101{height:67.200000px;}
.h9_c00101{height:68.250000px;}
.he_c00101{height:70.350000px;}
.h8_c00101{height:71.400000px;}
.h3_c00101{height:73.506210px;}
.h14_c00101{height:74.550000px;}
.h2_c00101{height:74.556299px;}
.h6_c00101{height:75.606388px;}
.h13_c00101{height:86.100000px;}
.h0_c00101{height:634.200000px;}
.h1_c00101{height:634.500000px;}
.w0_c00101{width:371.790000px;}
.w1_c00101{width:372.000000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:45.805500px;}
.x3f_c00101{left:47.983500px;}
.x2c_c00101{left:54.000000px;}
.x4a_c00101{left:55.891500px;}
.x9_c00101{left:58.052737px;}
.x32_c00101{left:59.940000px;}
.x2_c00101{left:65.050500px;}
.x65_c00101{left:67.152000px;}
.x71_c00101{left:68.982000px;}
.x6c_c00101{left:72.834000px;}
.x77_c00101{left:74.052000px;}
.x16_c00101{left:77.223326px;}
.x44_c00101{left:83.598000px;}
.x17_c00101{left:89.643932px;}
.x1c_c00101{left:91.965690px;}
.x41_c00101{left:92.985000px;}
.x57_c00101{left:96.121500px;}
.x4b_c00101{left:97.201500px;}
.x2d_c00101{left:100.170000px;}
.x5c_c00101{left:102.601500px;}
.x10_c00101{left:104.496840px;}
.xa_c00101{left:106.656447px;}
.x53_c00101{left:108.541500px;}
.x33_c00101{left:110.430000px;}
.x11_c00101{left:114.487037px;}
.x4e_c00101{left:116.371500px;}
.x1d_c00101{left:118.694892px;}
.x18_c00101{left:122.316450px;}
.x3_c00101{left:124.446000px;}
.x3b_c00101{left:126.901500px;}
.x6e_c00101{left:128.259000px;}
.x58_c00101{left:134.731500px;}
.x73_c00101{left:136.093500px;}
.x2e_c00101{left:138.510000px;}
.x3c_c00101{left:140.671500px;}
.x25_c00101{left:141.900015px;}
.x72_c00101{left:142.920000px;}
.x34_c00101{left:145.260000px;}
.x4c_c00101{left:148.231500px;}
.x54_c00101{left:149.311500px;}
.x61_c00101{left:152.013000px;}
.x42_c00101{left:153.541500px;}
.x26_c00101{left:158.604658px;}
.xb_c00101{left:161.471210px;}
.x55_c00101{left:165.241500px;}
.x35_c00101{left:168.480000px;}
.x19_c00101{left:172.540433px;}
.x79_c00101{left:174.337500px;}
.x12_c00101{left:177.941762px;}
.x45_c00101{left:179.737500px;}
.x22_c00101{left:181.183611px;}
.x66_c00101{left:185.406000px;}
.xc_c00101{left:186.583961px;}
.x4_c00101{left:189.150000px;}
.x1a_c00101{left:190.631994px;}
.x4f_c00101{left:199.801500px;}
.x27_c00101{left:201.242316px;}
.x13_c00101{left:204.134688px;}
.x47_c00101{left:205.369500px;}
.x5_c00101{left:207.579000px;}
.x5f_c00101{left:208.896000px;}
.x36_c00101{left:211.680000px;}
.x28_c00101{left:217.984459px;}
.x1e_c00101{left:219.668505px;}
.x2f_c00101{left:222.210000px;}
.x6_c00101{left:223.507500px;}
.x56_c00101{left:225.721500px;}
.x50_c00101{left:227.071500px;}
.x5d_c00101{left:229.501500px;}
.x75_c00101{left:234.721500px;}
.x1f_c00101{left:238.306493px;}
.x78_c00101{left:241.038000px;}
.x39_c00101{left:242.637000px;}
.x6f_c00101{left:243.793500px;}
.x30_c00101{left:245.160000px;}
.x23_c00101{left:248.150441px;}
.x5e_c00101{left:249.481500px;}
.x76_c00101{left:250.975500px;}
.x59_c00101{left:252.451500px;}
.x37_c00101{left:254.070000px;}
.x62_c00101{left:255.423000px;}
.x67_c00101{left:256.663500px;}
.x3a_c00101{left:258.271500px;}
.x29_c00101{left:261.510156px;}
.x69_c00101{left:263.647500px;}
.xd_c00101{left:266.780013px;}
.x31_c00101{left:268.920000px;}
.x60_c00101{left:270.165000px;}
.x40_c00101{left:271.378500px;}
.x48_c00101{left:272.860500px;}
.x7_c00101{left:274.000500px;}
.x14_c00101{left:275.420739px;}
.x3d_c00101{left:278.641500px;}
.xe_c00101{left:280.550834px;}
.x1b_c00101{left:282.169958px;}
.x24_c00101{left:285.143700px;}
.x51_c00101{left:286.741500px;}
.x70_c00101{left:287.866500px;}
.x4d_c00101{left:291.331500px;}
.x74_c00101{left:292.810500px;}
.x6a_c00101{left:296.806500px;}
.x20_c00101{left:297.918033px;}
.x8_c00101{left:300.189000px;}
.x63_c00101{left:302.133000px;}
.x3e_c00101{left:305.101500px;}
.x15_c00101{left:306.743023px;}
.x46_c00101{left:307.971000px;}
.x2a_c00101{left:310.865087px;}
.x49_c00101{left:312.547500px;}
.x5a_c00101{left:314.281500px;}
.x68_c00101{left:315.520500px;}
.xf_c00101{left:318.624268px;}
.x2b_c00101{left:324.376113px;}
.x52_c00101{left:326.431500px;}
.x6b_c00101{left:327.894000px;}
.x43_c00101{left:329.244000px;}
.x21_c00101{left:330.915891px;}
.x5b_c00101{left:332.101500px;}
.x38_c00101{left:337.500000px;}
.x6d_c00101{left:339.849000px;}
.x64_c00101{left:343.173000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fse_c00101{font-size:53.200000pt;}
.fs10_c00101{font-size:54.133333pt;}
.fsf_c00101{font-size:55.066667pt;}
.fs2_c00101{font-size:55.071320pt;}
.fs9_c00101{font-size:56.000000pt;}
.fs5_c00101{font-size:56.004732pt;}
.fsb_c00101{font-size:56.933333pt;}
.fs3_c00101{font-size:56.938144pt;}
.fs8_c00101{font-size:57.866667pt;}
.fsa_c00101{font-size:58.800000pt;}
.fsd_c00101{font-size:59.733333pt;}
.fs7_c00101{font-size:60.666667pt;}
.fsc_c00101{font-size:62.533333pt;}
.fs6_c00101{font-size:63.466667pt;}
.fs1_c00101{font-size:65.338854pt;}
.fs12_c00101{font-size:66.266667pt;}
.fs0_c00101{font-size:66.272266pt;}
.fs4_c00101{font-size:67.205678pt;}
.fs11_c00101{font-size:76.533333pt;}
.y0_c00101{bottom:0.000000pt;}
.ya3_c00101{bottom:27.360000pt;}
.ya4_c00101{bottom:28.836000pt;}
.ya5_c00101{bottom:29.141333pt;}
.ya6_c00101{bottom:29.840000pt;}
.ya7_c00101{bottom:30.648000pt;}
.y9c_c00101{bottom:43.922667pt;}
.y9d_c00101{bottom:44.320000pt;}
.y9e_c00101{bottom:45.248000pt;}
.y9f_c00101{bottom:46.298667pt;}
.ya0_c00101{bottom:46.842667pt;}
.ya1_c00101{bottom:47.500000pt;}
.ya2_c00101{bottom:47.818667pt;}
.y95_c00101{bottom:59.282667pt;}
.y96_c00101{bottom:60.037333pt;}
.y97_c00101{bottom:60.217333pt;}
.y98_c00101{bottom:60.546667pt;}
.y99_c00101{bottom:61.105333pt;}
.y9a_c00101{bottom:61.264000pt;}
.y9b_c00101{bottom:61.897333pt;}
.y8e_c00101{bottom:74.405333pt;}
.y8f_c00101{bottom:75.498667pt;}
.y90_c00101{bottom:75.836000pt;}
.y91_c00101{bottom:76.630667pt;}
.y92_c00101{bottom:77.837333pt;}
.y93_c00101{bottom:78.342667pt;}
.y94_c00101{bottom:78.764000pt;}
.y84_c00101{bottom:91.682667pt;}
.y85_c00101{bottom:91.874667pt;}
.y86_c00101{bottom:92.532000pt;}
.y87_c00101{bottom:92.721333pt;}
.y88_c00101{bottom:92.940000pt;}
.y89_c00101{bottom:93.117333pt;}
.y8a_c00101{bottom:93.521333pt;}
.y8b_c00101{bottom:93.624000pt;}
.y8c_c00101{bottom:93.998667pt;}
.y8d_c00101{bottom:94.209333pt;}
.y7f_c00101{bottom:105.606667pt;}
.y80_c00101{bottom:106.546667pt;}
.y81_c00101{bottom:106.902667pt;}
.y82_c00101{bottom:108.750667pt;}
.y83_c00101{bottom:109.456000pt;}
.y79_c00101{bottom:122.404000pt;}
.y7a_c00101{bottom:122.734667pt;}
.y7b_c00101{bottom:123.606667pt;}
.y7c_c00101{bottom:124.424000pt;}
.y7d_c00101{bottom:125.273333pt;}
.y7e_c00101{bottom:126.296000pt;}
.y72_c00101{bottom:139.202667pt;}
.y73_c00101{bottom:139.634667pt;}
.y74_c00101{bottom:139.854667pt;}
.y75_c00101{bottom:140.862667pt;}
.y76_c00101{bottom:141.306667pt;}
.y77_c00101{bottom:141.630667pt;}
.y78_c00101{bottom:141.934667pt;}
.y69_c00101{bottom:153.844000pt;}
.y6a_c00101{bottom:154.068000pt;}
.y6b_c00101{bottom:154.533333pt;}
.y6c_c00101{bottom:154.748000pt;}
.y6d_c00101{bottom:155.434667pt;}
.y6e_c00101{bottom:155.858667pt;}
.y6f_c00101{bottom:156.258667pt;}
.y70_c00101{bottom:156.938667pt;}
.y71_c00101{bottom:157.138667pt;}
.y68_c00101{bottom:171.286667pt;}
.y61_c00101{bottom:185.524000pt;}
.y62_c00101{bottom:186.150667pt;}
.y63_c00101{bottom:186.569333pt;}
.y64_c00101{bottom:187.380000pt;}
.y65_c00101{bottom:187.573333pt;}
.y66_c00101{bottom:188.088000pt;}
.y67_c00101{bottom:188.854667pt;}
.y60_c00101{bottom:203.233333pt;}
.y5f_c00101{bottom:218.516000pt;}
.y5e_c00101{bottom:234.945333pt;}
.y5d_c00101{bottom:250.034667pt;}
.y5c_c00101{bottom:264.896000pt;}
.y56_c00101{bottom:279.361333pt;}
.y57_c00101{bottom:280.196000pt;}
.y58_c00101{bottom:280.801333pt;}
.y59_c00101{bottom:281.054667pt;}
.y5a_c00101{bottom:281.774667pt;}
.y5b_c00101{bottom:282.198667pt;}
.y4f_c00101{bottom:294.241333pt;}
.y50_c00101{bottom:294.630667pt;}
.y51_c00101{bottom:295.234667pt;}
.y52_c00101{bottom:295.656000pt;}
.y53_c00101{bottom:296.282667pt;}
.y54_c00101{bottom:297.024000pt;}
.y55_c00101{bottom:297.202667pt;}
.y48_c00101{bottom:311.041333pt;}
.y49_c00101{bottom:311.513333pt;}
.y4a_c00101{bottom:311.848000pt;}
.y4b_c00101{bottom:312.160000pt;}
.y4c_c00101{bottom:312.862667pt;}
.y4d_c00101{bottom:313.392000pt;}
.y4e_c00101{bottom:314.033333pt;}
.y46_c00101{bottom:326.402667pt;}
.y47_c00101{bottom:329.182667pt;}
.y45_c00101{bottom:343.450667pt;}
.y3d_c00101{bottom:357.601333pt;}
.y3e_c00101{bottom:358.224000pt;}
.y3f_c00101{bottom:358.572000pt;}
.y40_c00101{bottom:359.121333pt;}
.y41_c00101{bottom:359.430667pt;}
.y42_c00101{bottom:359.693333pt;}
.y43_c00101{bottom:359.860000pt;}
.y44_c00101{bottom:360.381333pt;}
.y3c_c00101{bottom:375.313333pt;}
.y3b_c00101{bottom:390.576000pt;}
.y3a_c00101{bottom:405.949333pt;}
.y31_c00101{bottom:420.234328pt;}
.y32_c00101{bottom:420.769672pt;}
.y33_c00101{bottom:421.084263pt;}
.y34_c00101{bottom:421.233287pt;}
.y35_c00101{bottom:421.612636pt;}
.y36_c00101{bottom:421.762093pt;}
.y37_c00101{bottom:422.149037pt;}
.y38_c00101{bottom:422.587339pt;}
.y39_c00101{bottom:422.707460pt;}
.y2f_c00101{bottom:437.635373pt;}
.y30_c00101{bottom:437.635649pt;}
.y2e_c00101{bottom:437.635968pt;}
.y2d_c00101{bottom:437.636349pt;}
.y2b_c00101{bottom:437.636445pt;}
.y2a_c00101{bottom:437.636595pt;}
.y2c_c00101{bottom:437.636927pt;}
.y22_c00101{bottom:451.196287pt;}
.y23_c00101{bottom:451.645839pt;}
.y24_c00101{bottom:451.906701pt;}
.y25_c00101{bottom:452.598999pt;}
.y26_c00101{bottom:452.894811pt;}
.y27_c00101{bottom:453.076844pt;}
.y28_c00101{bottom:453.660337pt;}
.y29_c00101{bottom:453.982969pt;}
.y1b_c00101{bottom:468.425849pt;}
.y1d_c00101{bottom:468.425913pt;}
.y21_c00101{bottom:468.425935pt;}
.y1f_c00101{bottom:468.425959pt;}
.y1c_c00101{bottom:468.426001pt;}
.y20_c00101{bottom:468.426219pt;}
.y1e_c00101{bottom:468.426269pt;}
.y1a_c00101{bottom:468.426347pt;}
.y19_c00101{bottom:468.426648pt;}
.y17_c00101{bottom:484.194905pt;}
.y16_c00101{bottom:484.195295pt;}
.y15_c00101{bottom:484.195339pt;}
.y18_c00101{bottom:484.195457pt;}
.y14_c00101{bottom:484.195541pt;}
.y12_c00101{bottom:484.195557pt;}
.y13_c00101{bottom:484.196119pt;}
.ye_c00101{bottom:500.455155pt;}
.yd_c00101{bottom:500.455268pt;}
.y10_c00101{bottom:500.455307pt;}
.y11_c00101{bottom:500.455476pt;}
.yf_c00101{bottom:500.455591pt;}
.ya_c00101{bottom:500.455603pt;}
.y9_c00101{bottom:500.455647pt;}
.yc_c00101{bottom:500.455792pt;}
.yb_c00101{bottom:500.455817pt;}
.y1_c00101{bottom:511.682667pt;}
.y2_c00101{bottom:511.905053pt;}
.y3_c00101{bottom:512.591401pt;}
.y4_c00101{bottom:513.339092pt;}
.y5_c00101{bottom:513.552049pt;}
.y6_c00101{bottom:513.736112pt;}
.y7_c00101{bottom:514.319587pt;}
.y8_c00101{bottom:514.622209pt;}
.h10_c00101{height:53.200000pt;}
.h12_c00101{height:54.133333pt;}
.h11_c00101{height:55.066667pt;}
.h4_c00101{height:55.071320pt;}
.hb_c00101{height:56.000000pt;}
.h7_c00101{height:56.004732pt;}
.hd_c00101{height:56.933333pt;}
.h5_c00101{height:56.938144pt;}
.ha_c00101{height:57.866667pt;}
.hc_c00101{height:58.800000pt;}
.hf_c00101{height:59.733333pt;}
.h9_c00101{height:60.666667pt;}
.he_c00101{height:62.533333pt;}
.h8_c00101{height:63.466667pt;}
.h3_c00101{height:65.338854pt;}
.h14_c00101{height:66.266667pt;}
.h2_c00101{height:66.272266pt;}
.h6_c00101{height:67.205678pt;}
.h13_c00101{height:76.533333pt;}
.h0_c00101{height:563.733333pt;}
.h1_c00101{height:564.000000pt;}
.w0_c00101{width:330.480000pt;}
.w1_c00101{width:330.666667pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:40.716000pt;}
.x3f_c00101{left:42.652000pt;}
.x2c_c00101{left:48.000000pt;}
.x4a_c00101{left:49.681333pt;}
.x9_c00101{left:51.602433pt;}
.x32_c00101{left:53.280000pt;}
.x2_c00101{left:57.822667pt;}
.x65_c00101{left:59.690667pt;}
.x71_c00101{left:61.317333pt;}
.x6c_c00101{left:64.741333pt;}
.x77_c00101{left:65.824000pt;}
.x16_c00101{left:68.642956pt;}
.x44_c00101{left:74.309333pt;}
.x17_c00101{left:79.683495pt;}
.x1c_c00101{left:81.747280pt;}
.x41_c00101{left:82.653333pt;}
.x57_c00101{left:85.441333pt;}
.x4b_c00101{left:86.401333pt;}
.x2d_c00101{left:89.040000pt;}
.x5c_c00101{left:91.201333pt;}
.x10_c00101{left:92.886080pt;}
.xa_c00101{left:94.805731pt;}
.x53_c00101{left:96.481333pt;}
.x33_c00101{left:98.160000pt;}
.x11_c00101{left:101.766255pt;}
.x4e_c00101{left:103.441333pt;}
.x1d_c00101{left:105.506571pt;}
.x18_c00101{left:108.725733pt;}
.x3_c00101{left:110.618667pt;}
.x3b_c00101{left:112.801333pt;}
.x6e_c00101{left:114.008000pt;}
.x58_c00101{left:119.761333pt;}
.x73_c00101{left:120.972000pt;}
.x2e_c00101{left:123.120000pt;}
.x3c_c00101{left:125.041333pt;}
.x25_c00101{left:126.133347pt;}
.x72_c00101{left:127.040000pt;}
.x34_c00101{left:129.120000pt;}
.x4c_c00101{left:131.761333pt;}
.x54_c00101{left:132.721333pt;}
.x61_c00101{left:135.122667pt;}
.x42_c00101{left:136.481333pt;}
.x26_c00101{left:140.981919pt;}
.xb_c00101{left:143.529964pt;}
.x55_c00101{left:146.881333pt;}
.x35_c00101{left:149.760000pt;}
.x19_c00101{left:153.369273pt;}
.x79_c00101{left:154.966667pt;}
.x12_c00101{left:158.170455pt;}
.x45_c00101{left:159.766667pt;}
.x22_c00101{left:161.052099pt;}
.x66_c00101{left:164.805333pt;}
.xc_c00101{left:165.852409pt;}
.x4_c00101{left:168.133333pt;}
.x1a_c00101{left:169.450661pt;}
.x4f_c00101{left:177.601333pt;}
.x27_c00101{left:178.882059pt;}
.x13_c00101{left:181.453056pt;}
.x47_c00101{left:182.550667pt;}
.x5_c00101{left:184.514667pt;}
.x5f_c00101{left:185.685333pt;}
.x36_c00101{left:188.160000pt;}
.x28_c00101{left:193.763964pt;}
.x1e_c00101{left:195.260893pt;}
.x2f_c00101{left:197.520000pt;}
.x6_c00101{left:198.673333pt;}
.x56_c00101{left:200.641333pt;}
.x50_c00101{left:201.841333pt;}
.x5d_c00101{left:204.001333pt;}
.x75_c00101{left:208.641333pt;}
.x1f_c00101{left:211.827993pt;}
.x78_c00101{left:214.256000pt;}
.x39_c00101{left:215.677333pt;}
.x6f_c00101{left:216.705333pt;}
.x30_c00101{left:217.920000pt;}
.x23_c00101{left:220.578169pt;}
.x5e_c00101{left:221.761333pt;}
.x76_c00101{left:223.089333pt;}
.x59_c00101{left:224.401333pt;}
.x37_c00101{left:225.840000pt;}
.x62_c00101{left:227.042667pt;}
.x67_c00101{left:228.145333pt;}
.x3a_c00101{left:229.574667pt;}
.x29_c00101{left:232.453472pt;}
.x69_c00101{left:234.353333pt;}
.xd_c00101{left:237.137789pt;}
.x31_c00101{left:239.040000pt;}
.x60_c00101{left:240.146667pt;}
.x40_c00101{left:241.225333pt;}
.x48_c00101{left:242.542667pt;}
.x7_c00101{left:243.556000pt;}
.x14_c00101{left:244.818435pt;}
.x3d_c00101{left:247.681333pt;}
.xe_c00101{left:249.378519pt;}
.x1b_c00101{left:250.817740pt;}
.x24_c00101{left:253.461067pt;}
.x51_c00101{left:254.881333pt;}
.x70_c00101{left:255.881333pt;}
.x4d_c00101{left:258.961333pt;}
.x74_c00101{left:260.276000pt;}
.x6a_c00101{left:263.828000pt;}
.x20_c00101{left:264.816029pt;}
.x8_c00101{left:266.834667pt;}
.x63_c00101{left:268.562667pt;}
.x3e_c00101{left:271.201333pt;}
.x15_c00101{left:272.660465pt;}
.x46_c00101{left:273.752000pt;}
.x2a_c00101{left:276.324521pt;}
.x49_c00101{left:277.820000pt;}
.x5a_c00101{left:279.361333pt;}
.x68_c00101{left:280.462667pt;}
.xf_c00101{left:283.221572pt;}
.x2b_c00101{left:288.334323pt;}
.x52_c00101{left:290.161333pt;}
.x6b_c00101{left:291.461333pt;}
.x43_c00101{left:292.661333pt;}
.x21_c00101{left:294.147459pt;}
.x5b_c00101{left:295.201333pt;}
.x38_c00101{left:300.000000pt;}
.x6d_c00101{left:302.088000pt;}
.x64_c00101{left:305.042667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00102 {
    display:none;
  }
  .loading-indicator_c00102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00102 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00102 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00102" -> "#page-container .classname_c00102")
 */
.pf_c00102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00102 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00102 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00102 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00102 {overflow:visible;}
  }
}
.c_c00102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00102 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00102:after { /* webkit #35443 */
  content: '';
}
.t_c00102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00102 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00102 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00102 { /* info for Javascript */
  display:none;
}
.l_c00102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00102:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00102 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00102.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf9_c00102{transform:matrix(0.013540,0.000637,-0.011749,0.249724,0,0);-ms-transform:matrix(0.013540,0.000637,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.013540,0.000637,-0.011749,0.249724,0,0);}
.mf8_c00102{transform:matrix(0.021406,0.001007,-0.011749,0.249724,0,0);-ms-transform:matrix(0.021406,0.001007,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.021406,0.001007,-0.011749,0.249724,0,0);}
.m96_c00102{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.md8_c00102{transform:matrix(0.117680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117680,0.000000,0.000000,0.250000,0,0);}
.mb1_c00102{transform:matrix(0.132310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132310,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);}
.mb2_c00102{transform:matrix(0.141910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141910,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00102{transform:matrix(0.143040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143040,0.000000,0.000000,0.250000,0,0);}
.mc3_c00102{transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00102{transform:matrix(0.146240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146240,0.000000,0.000000,0.250000,0,0);}
.mad_c00102{transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.151705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151705,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);}
.mbf_c00102{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.mbd_c00102{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00102{transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);}
.m95_c00102{transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);}
.mb5_c00102{transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.ma9_c00102{transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);}
.m7e_c00102{transform:matrix(0.160345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160345,0.000000,0.000000,0.250000,0,0);}
.mbc_c00102{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.md3_c00102{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00102{transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m52_c00102{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m54_c00102{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00102{transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);}
.m87_c00102{transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);}
.m9d_c00102{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.md7_c00102{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.mc1_c00102{transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);}
.mc2_c00102{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00102{transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);}
.mcc_c00102{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m58_c00102{transform:matrix(0.165255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165255,0.000000,0.000000,0.250000,0,0);}
.m79_c00102{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.ma8_c00102{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m5d_c00102{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m81_c00102{transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);}
.me7_c00102{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.mdc_c00102{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00102{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m82_c00102{transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.mf1_c00102{transform:matrix(0.170062,0.008001,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170062,0.008001,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170062,0.008001,-0.011749,0.249724,0,0);}
.m3e_c00102{transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);}
.m7d_c00102{transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);}
.md1_c00102{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00102{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.meb_c00102{transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);}
.m27_c00102{transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);}
.m83_c00102{transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);}
.m35_c00102{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.m80_c00102{transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);}
.ma3_c00102{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m3d_c00102{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.md5_c00102{transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);}
.mf3_c00102{transform:matrix(0.172939,0.008136,-0.011749,0.249724,0,0);-ms-transform:matrix(0.172939,0.008136,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.172939,0.008136,-0.011749,0.249724,0,0);}
.mc4_c00102{transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);}
.m5e_c00102{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.m70_c00102{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.mab_c00102{transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);}
.m8e_c00102{transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);}
.m72_c00102{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m90_c00102{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m46_c00102{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.mba_c00102{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m7a_c00102{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.m55_c00102{transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);}
.m8d_c00102{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.mec_c00102{transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);}
.mb7_c00102{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.mce_c00102{transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m6d_c00102{transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m65_c00102{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m9c_c00102{transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);}
.m62_c00102{transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);}
.m8c_c00102{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);}
.ma0_c00102{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m3a_c00102{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00102{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);}
.m8a_c00102{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m60_c00102{transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);}
.m59_c00102{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m76_c00102{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m97_c00102{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m5b_c00102{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.me5_c00102{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m61_c00102{transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);}
.mc0_c00102{transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);}
.m94_c00102{transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);}
.mf4_c00102{transform:matrix(0.184995,0.008703,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184995,0.008703,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184995,0.008703,-0.011749,0.249724,0,0);}
.m9e_c00102{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.me0_c00102{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m9a_c00102{transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);}
.m36_c00102{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.mf6_c00102{transform:matrix(0.186114,0.008756,-0.011749,0.249724,0,0);-ms-transform:matrix(0.186114,0.008756,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.186114,0.008756,-0.011749,0.249724,0,0);}
.m20_c00102{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.md0_c00102{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m5c_c00102{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00102{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.mbb_c00102{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.mca_c00102{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00102{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m6a_c00102{transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);}
.me9_c00102{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m77_c00102{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.mde_c00102{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.mb3_c00102{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.md4_c00102{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m23_c00102{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00102{transform:matrix(0.189321,0.008907,-0.011749,0.249724,0,0);-ms-transform:matrix(0.189321,0.008907,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.189321,0.008907,-0.011749,0.249724,0,0);}
.m11_c00102{transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m84_c00102{transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.mea_c00102{transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00102{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m86_c00102{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.mf7_c00102{transform:matrix(0.193851,0.009120,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193851,0.009120,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193851,0.009120,-0.011749,0.249724,0,0);}
.ma7_c00102{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m75_c00102{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.med_c00102{transform:matrix(0.195419,0.009194,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195419,0.009194,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195419,0.009194,-0.011749,0.249724,0,0);}
.me8_c00102{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.m78_c00102{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m7f_c00102{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.me4_c00102{transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);}
.mf2_c00102{transform:matrix(0.199165,0.009370,-0.011749,0.249724,0,0);-ms-transform:matrix(0.199165,0.009370,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.199165,0.009370,-0.011749,0.249724,0,0);}
.maf_c00102{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.m6e_c00102{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);}
.mf5_c00102{transform:matrix(0.200408,0.009429,-0.011749,0.249724,0,0);-ms-transform:matrix(0.200408,0.009429,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.200408,0.009429,-0.011749,0.249724,0,0);}
.me3_c00102{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.mac_c00102{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.mef_c00102{transform:matrix(0.200738,0.009444,-0.011749,0.249724,0,0);-ms-transform:matrix(0.200738,0.009444,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.200738,0.009444,-0.011749,0.249724,0,0);}
.m2f_c00102{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.me2_c00102{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.mcf_c00102{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m38_c00102{transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);}
.mdf_c00102{transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);}
.mc8_c00102{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.mc5_c00102{transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);}
.m6b_c00102{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m88_c00102{transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);}
.ma4_c00102{transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);}
.mcd_c00102{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.mb8_c00102{transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);}
.md2_c00102{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m64_c00102{transform:matrix(0.205445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205445,0.000000,0.000000,0.250000,0,0);}
.mb6_c00102{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.mdd_c00102{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m91_c00102{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.ma1_c00102{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.md9_c00102{transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.mee_c00102{transform:matrix(0.207805,0.009777,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207805,0.009777,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207805,0.009777,-0.011749,0.249724,0,0);}
.m49_c00102{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.m93_c00102{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m73_c00102{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m71_c00102{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m66_c00102{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.mc7_c00102{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.mdb_c00102{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m89_c00102{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.me6_c00102{transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);}
.m5f_c00102{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00102{transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);}
.ma6_c00102{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.mc9_c00102{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m74_c00102{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.ma2_c00102{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.maa_c00102{transform:matrix(0.217785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217785,0.000000,0.000000,0.250000,0,0);}
.m6c_c00102{transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218315,0.000000,0.000000,0.250000,0,0);}
.mf_c00102{transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);}
.m9f_c00102{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00102{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.m6f_c00102{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);}
.m26_c00102{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.mb4_c00102{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.ma5_c00102{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m67_c00102{transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);}
.m92_c00102{transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);}
.me1_c00102{transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);}
.m85_c00102{transform:matrix(0.240345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240345,0.000000,0.000000,0.250000,0,0);}
.m51_c00102{transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);}
.mda_c00102{transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);}
.mc6_c00102{transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);}
.m99_c00102{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m50_c00102{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m56_c00102{transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);}
.m69_c00102{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);}
.m68_c00102{transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);}
.m98_c00102{transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);}
.m1b_c00102{transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);}
.md6_c00102{transform:matrix(0.290985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290985,0.000000,0.000000,0.250000,0,0);}
.m48_c00102{transform:matrix(0.303570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303570,0.000000,0.000000,0.250000,0,0);}
.m57_c00102{transform:matrix(0.332820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332820,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00102{word-spacing:0.000000px;}
.fc0_c00102{color:transparent;}
.fsc_c00102{font-size:59.850000px;}
.fsb_c00102{font-size:60.900000px;}
.fs9_c00102{font-size:61.950000px;}
.fs7_c00102{font-size:63.000000px;}
.fsf_c00102{font-size:63.006615px;}
.fs4_c00102{font-size:64.050000px;}
.fse_c00102{font-size:65.106835px;}
.fs8_c00102{font-size:66.150000px;}
.fs2_c00102{font-size:67.200000px;}
.fs3_c00102{font-size:68.250000px;}
.fs6_c00102{font-size:69.300000px;}
.fs5_c00102{font-size:70.350000px;}
.fs1_c00102{font-size:71.400000px;}
.fs0_c00102{font-size:72.450000px;}
.fsa_c00102{font-size:73.500000px;}
.fsd_c00102{font-size:76.650000px;}
.y0_c00102{bottom:0.000000px;}
.ye3_c00102{bottom:32.703471px;}
.ye2_c00102{bottom:38.610793px;}
.ye1_c00102{bottom:42.265311px;}
.ye0_c00102{bottom:44.860044px;}
.ydf_c00102{bottom:47.514341px;}
.yde_c00102{bottom:48.734202px;}
.ydd_c00102{bottom:49.963581px;}
.ydc_c00102{bottom:51.977273px;}
.ydb_c00102{bottom:53.129595px;}
.yda_c00102{bottom:55.607952px;}
.yd9_c00102{bottom:57.675929px;}
.yd8_c00102{bottom:59.505474px;}
.yd7_c00102{bottom:60.772500px;}
.yd6_c00102{bottom:68.614500px;}
.yd5_c00102{bottom:70.066500px;}
.yd4_c00102{bottom:71.079000px;}
.yd3_c00102{bottom:71.968500px;}
.yd2_c00102{bottom:74.004000px;}
.yd1_c00102{bottom:74.661000px;}
.yd0_c00102{bottom:75.087000px;}
.ycf_c00102{bottom:77.241000px;}
.yce_c00102{bottom:88.842000px;}
.ycd_c00102{bottom:89.769000px;}
.ycc_c00102{bottom:91.590000px;}
.ycb_c00102{bottom:94.533000px;}
.yca_c00102{bottom:95.073000px;}
.yc9_c00102{bottom:96.409500px;}
.yc8_c00102{bottom:105.046500px;}
.yc7_c00102{bottom:106.474500px;}
.yc6_c00102{bottom:107.064000px;}
.yc5_c00102{bottom:107.478000px;}
.yc4_c00102{bottom:108.529500px;}
.yc3_c00102{bottom:110.880000px;}
.yc2_c00102{bottom:111.444000px;}
.yc1_c00102{bottom:112.249500px;}
.yc0_c00102{bottom:112.795500px;}
.ybf_c00102{bottom:113.688000px;}
.ybe_c00102{bottom:125.838000px;}
.ybd_c00102{bottom:126.358500px;}
.ybc_c00102{bottom:126.724500px;}
.ybb_c00102{bottom:127.842000px;}
.yba_c00102{bottom:129.780000px;}
.yb9_c00102{bottom:130.494000px;}
.yb8_c00102{bottom:131.776500px;}
.yb7_c00102{bottom:139.797000px;}
.yb6_c00102{bottom:140.308500px;}
.yb5_c00102{bottom:141.319500px;}
.yb4_c00102{bottom:142.663500px;}
.yb3_c00102{bottom:142.947000px;}
.yb2_c00102{bottom:144.405000px;}
.yb1_c00102{bottom:145.099500px;}
.yb0_c00102{bottom:145.695000px;}
.yaf_c00102{bottom:146.899500px;}
.yae_c00102{bottom:159.055500px;}
.yad_c00102{bottom:159.534000px;}
.yac_c00102{bottom:160.165500px;}
.yab_c00102{bottom:162.141000px;}
.yaa_c00102{bottom:162.493500px;}
.ya9_c00102{bottom:163.575000px;}
.ya8_c00102{bottom:164.200500px;}
.ya7_c00102{bottom:165.145500px;}
.ya6_c00102{bottom:166.074000px;}
.ya5_c00102{bottom:174.640500px;}
.ya4_c00102{bottom:175.128000px;}
.ya3_c00102{bottom:175.416000px;}
.ya2_c00102{bottom:176.509500px;}
.ya1_c00102{bottom:176.970000px;}
.ya0_c00102{bottom:177.939000px;}
.y9f_c00102{bottom:178.305000px;}
.y9e_c00102{bottom:179.067000px;}
.y9d_c00102{bottom:180.103500px;}
.y9c_c00102{bottom:191.322000px;}
.y9b_c00102{bottom:191.733000px;}
.y9a_c00102{bottom:192.421500px;}
.y99_c00102{bottom:193.954500px;}
.y98_c00102{bottom:194.955000px;}
.y97_c00102{bottom:195.333000px;}
.y96_c00102{bottom:195.667500px;}
.y95_c00102{bottom:197.034000px;}
.y94_c00102{bottom:197.413500px;}
.y93_c00102{bottom:197.883000px;}
.y92_c00102{bottom:198.465000px;}
.y91_c00102{bottom:209.272500px;}
.y90_c00102{bottom:210.175500px;}
.y8f_c00102{bottom:211.192500px;}
.y8e_c00102{bottom:213.444000px;}
.y8d_c00102{bottom:214.273500px;}
.y8c_c00102{bottom:214.822500px;}
.y8b_c00102{bottom:216.103500px;}
.y8a_c00102{bottom:216.558000px;}
.y89_c00102{bottom:226.141500px;}
.y88_c00102{bottom:227.415000px;}
.y87_c00102{bottom:227.871000px;}
.y86_c00102{bottom:228.192000px;}
.y85_c00102{bottom:229.359000px;}
.y84_c00102{bottom:231.324000px;}
.y83_c00102{bottom:231.802500px;}
.y82_c00102{bottom:233.239500px;}
.y81_c00102{bottom:233.833500px;}
.y80_c00102{bottom:244.747500px;}
.y7f_c00102{bottom:248.160000px;}
.y7e_c00102{bottom:250.524000px;}
.y7d_c00102{bottom:251.191500px;}
.y7c_c00102{bottom:251.923500px;}
.y7b_c00102{bottom:261.708000px;}
.y7a_c00102{bottom:262.855500px;}
.y79_c00102{bottom:263.205000px;}
.y78_c00102{bottom:264.408000px;}
.y77_c00102{bottom:265.228500px;}
.y76_c00102{bottom:266.410500px;}
.y75_c00102{bottom:266.761500px;}
.y74_c00102{bottom:268.578000px;}
.y73_c00102{bottom:269.742000px;}
.y72_c00102{bottom:279.033000px;}
.y71_c00102{bottom:279.727500px;}
.y70_c00102{bottom:282.132000px;}
.y6f_c00102{bottom:283.326000px;}
.y6e_c00102{bottom:283.758000px;}
.y6d_c00102{bottom:284.154000px;}
.y6c_c00102{bottom:284.481000px;}
.y6b_c00102{bottom:286.483500px;}
.y6a_c00102{bottom:297.621000px;}
.y69_c00102{bottom:298.989000px;}
.y68_c00102{bottom:300.181500px;}
.y67_c00102{bottom:300.988500px;}
.y66_c00102{bottom:302.736000px;}
.y65_c00102{bottom:303.424500px;}
.y64_c00102{bottom:304.033500px;}
.y63_c00102{bottom:316.570500px;}
.y62_c00102{bottom:316.968000px;}
.y61_c00102{bottom:318.303000px;}
.y60_c00102{bottom:318.712500px;}
.y5f_c00102{bottom:319.732500px;}
.y5e_c00102{bottom:320.089500px;}
.y5d_c00102{bottom:320.757000px;}
.y5c_c00102{bottom:321.849000px;}
.y5b_c00102{bottom:332.790000px;}
.y5a_c00102{bottom:333.064500px;}
.y59_c00102{bottom:333.537000px;}
.y58_c00102{bottom:333.873000px;}
.y57_c00102{bottom:335.217000px;}
.y56_c00102{bottom:335.946000px;}
.y55_c00102{bottom:336.327000px;}
.y54_c00102{bottom:337.777500px;}
.y53_c00102{bottom:348.229500px;}
.y52_c00102{bottom:349.635000px;}
.y51_c00102{bottom:349.839000px;}
.y50_c00102{bottom:350.427000px;}
.y4f_c00102{bottom:350.872500px;}
.y4e_c00102{bottom:352.300500px;}
.y4d_c00102{bottom:352.638000px;}
.y4c_c00102{bottom:353.938500px;}
.y4b_c00102{bottom:354.252000px;}
.y4a_c00102{bottom:367.183500px;}
.y49_c00102{bottom:368.527500px;}
.y48_c00102{bottom:369.762000px;}
.y47_c00102{bottom:370.344000px;}
.y46_c00102{bottom:371.799000px;}
.y45_c00102{bottom:384.321000px;}
.y44_c00102{bottom:385.470000px;}
.y43_c00102{bottom:385.834500px;}
.y42_c00102{bottom:386.235000px;}
.y41_c00102{bottom:387.259500px;}
.y40_c00102{bottom:387.706500px;}
.y3f_c00102{bottom:388.932000px;}
.y3e_c00102{bottom:389.349000px;}
.y3d_c00102{bottom:400.965000px;}
.y3c_c00102{bottom:401.773500px;}
.y3b_c00102{bottom:403.371000px;}
.y3a_c00102{bottom:403.860000px;}
.y39_c00102{bottom:405.055500px;}
.y38_c00102{bottom:405.504000px;}
.y37_c00102{bottom:405.900000px;}
.y36_c00102{bottom:406.897500px;}
.y35_c00102{bottom:419.052000px;}
.y34_c00102{bottom:419.305500px;}
.y33_c00102{bottom:420.484500px;}
.y32_c00102{bottom:420.925500px;}
.y31_c00102{bottom:421.699500px;}
.y30_c00102{bottom:422.011500px;}
.y2f_c00102{bottom:423.364500px;}
.y2e_c00102{bottom:436.926000px;}
.y2d_c00102{bottom:437.181000px;}
.y2c_c00102{bottom:437.665500px;}
.y2b_c00102{bottom:437.883000px;}
.y2a_c00102{bottom:438.901500px;}
.y29_c00102{bottom:439.153500px;}
.y28_c00102{bottom:439.947000px;}
.y27_c00102{bottom:440.643000px;}
.y26_c00102{bottom:453.852000px;}
.y25_c00102{bottom:454.219500px;}
.y24_c00102{bottom:454.869000px;}
.y23_c00102{bottom:455.107500px;}
.y22_c00102{bottom:455.995500px;}
.y21_c00102{bottom:456.666000px;}
.y20_c00102{bottom:457.444500px;}
.y1f_c00102{bottom:457.651500px;}
.y1e_c00102{bottom:471.781500px;}
.y1d_c00102{bottom:472.102500px;}
.y1c_c00102{bottom:472.656000px;}
.y1b_c00102{bottom:473.299500px;}
.y1a_c00102{bottom:473.637000px;}
.y19_c00102{bottom:474.090000px;}
.y18_c00102{bottom:475.392000px;}
.y17_c00102{bottom:475.825500px;}
.y16_c00102{bottom:476.038500px;}
.y15_c00102{bottom:476.823000px;}
.y14_c00102{bottom:490.756500px;}
.y13_c00102{bottom:503.980500px;}
.y12_c00102{bottom:504.846000px;}
.y11_c00102{bottom:505.866000px;}
.y10_c00102{bottom:507.309000px;}
.yf_c00102{bottom:507.768000px;}
.ye_c00102{bottom:509.080500px;}
.yd_c00102{bottom:509.802000px;}
.yc_c00102{bottom:510.304500px;}
.yb_c00102{bottom:525.021000px;}
.ya_c00102{bottom:542.839500px;}
.y9_c00102{bottom:559.134000px;}
.y8_c00102{bottom:559.482000px;}
.y7_c00102{bottom:560.071500px;}
.y6_c00102{bottom:560.367000px;}
.y5_c00102{bottom:561.414000px;}
.y4_c00102{bottom:561.777000px;}
.y3_c00102{bottom:562.411500px;}
.y2_c00102{bottom:577.917000px;}
.y1_c00102{bottom:592.381500px;}
.he_c00102{height:59.850000px;}
.hd_c00102{height:60.900000px;}
.hb_c00102{height:61.950000px;}
.h9_c00102{height:63.000000px;}
.h11_c00102{height:63.006615px;}
.h6_c00102{height:64.050000px;}
.h10_c00102{height:65.106835px;}
.ha_c00102{height:66.150000px;}
.h4_c00102{height:67.200000px;}
.h5_c00102{height:68.250000px;}
.h8_c00102{height:69.300000px;}
.h7_c00102{height:70.350000px;}
.h3_c00102{height:71.400000px;}
.h2_c00102{height:72.450000px;}
.hc_c00102{height:73.500000px;}
.hf_c00102{height:76.650000px;}
.h0_c00102{height:634.200000px;}
.h1_c00102{height:634.500000px;}
.w0_c00102{width:371.790000px;}
.w1_c00102{width:372.000000px;}
.x0_c00102{left:0.000000px;}
.x4c_c00102{left:26.826000px;}
.x22_c00102{left:28.083000px;}
.x2_c00102{left:30.240000px;}
.x63_c00102{left:35.608500px;}
.x6b_c00102{left:40.269000px;}
.x49_c00102{left:42.142500px;}
.x2f_c00102{left:43.905000px;}
.x44_c00102{left:49.758000px;}
.x5e_c00102{left:50.982000px;}
.x1c_c00102{left:52.774500px;}
.x7d_c00102{left:53.977542px;}
.x78_c00102{left:55.236000px;}
.x5c_c00102{left:57.508500px;}
.x14_c00102{left:65.881500px;}
.x28_c00102{left:69.417000px;}
.x79_c00102{left:72.853500px;}
.x9_c00102{left:74.896500px;}
.x3f_c00102{left:78.031500px;}
.x29_c00102{left:80.631000px;}
.x76_c00102{left:81.924000px;}
.xf_c00102{left:83.431500px;}
.x1d_c00102{left:85.603500px;}
.x15_c00102{left:87.211500px;}
.x6f_c00102{left:88.477500px;}
.x6c_c00102{left:89.640000px;}
.x7e_c00102{left:92.865116px;}
.x23_c00102{left:96.393000px;}
.x10_c00102{left:98.551500px;}
.xa_c00102{left:100.807500px;}
.x2a_c00102{left:103.485000px;}
.x5f_c00102{left:106.266000px;}
.x3_c00102{left:108.270000px;}
.x70_c00102{left:109.321500px;}
.x4d_c00102{left:112.131000px;}
.x45_c00102{left:114.270000px;}
.x56_c00102{left:116.011500px;}
.x7a_c00102{left:117.040500px;}
.x39_c00102{left:118.098000px;}
.x24_c00102{left:119.343000px;}
.x60_c00102{left:124.698000px;}
.x6d_c00102{left:125.934000px;}
.x81_c00102{left:127.842055px;}
.x48_c00102{left:129.177000px;}
.x57_c00102{left:131.262000px;}
.x50_c00102{left:132.342000px;}
.x4e_c00102{left:134.544000px;}
.x7f_c00102{left:136.820616px;}
.x46_c00102{left:137.829000px;}
.x3a_c00102{left:138.888000px;}
.x34_c00102{left:142.210500px;}
.x16_c00102{left:143.641500px;}
.x1e_c00102{left:145.239000px;}
.x4_c00102{left:148.770000px;}
.x59_c00102{left:149.866500px;}
.x64_c00102{left:150.909000px;}
.x68_c00102{left:152.262000px;}
.x30_c00102{left:155.362500px;}
.x71_c00102{left:157.150500px;}
.x53_c00102{left:158.551500px;}
.x35_c00102{left:161.584500px;}
.x17_c00102{left:166.591500px;}
.x25_c00102{left:170.373000px;}
.x1_c00102{left:172.530000px;}
.xb_c00102{left:175.579500px;}
.x4f_c00102{left:177.457500px;}
.x11_c00102{left:178.741500px;}
.x40_c00102{left:179.959500px;}
.x51_c00102{left:183.357000px;}
.x18_c00102{left:188.731500px;}
.x3b_c00102{left:190.524000px;}
.x47_c00102{left:191.758500px;}
.x54_c00102{left:193.620000px;}
.x74_c00102{left:195.499500px;}
.xc_c00102{left:196.639500px;}
.x61_c00102{left:200.296500px;}
.x41_c00102{left:204.427500px;}
.x69_c00102{left:207.402000px;}
.x4a_c00102{left:209.352000px;}
.x12_c00102{left:211.681500px;}
.x2b_c00102{left:213.615000px;}
.x3c_c00102{left:219.874500px;}
.x31_c00102{left:223.668000px;}
.x7c_c00102{left:225.736500px;}
.x7b_c00102{left:226.797000px;}
.x26_c00102{left:228.153000px;}
.x5_c00102{left:230.040000px;}
.x1f_c00102{left:231.717000px;}
.x65_c00102{left:234.315000px;}
.x4b_c00102{left:237.340500px;}
.xd_c00102{left:238.759500px;}
.x36_c00102{left:239.875500px;}
.x32_c00102{left:242.022000px;}
.x72_c00102{left:244.044000px;}
.x55_c00102{left:245.476500px;}
.x2c_c00102{left:247.444500px;}
.x75_c00102{left:249.229500px;}
.x27_c00102{left:254.073000px;}
.x37_c00102{left:256.615500px;}
.x19_c00102{left:258.391500px;}
.x73_c00102{left:259.975500px;}
.x77_c00102{left:261.718500px;}
.xe_c00102{left:263.595000px;}
.x5a_c00102{left:268.602000px;}
.x6_c00102{left:270.540000px;}
.x66_c00102{left:271.971000px;}
.x62_c00102{left:275.077500px;}
.x2d_c00102{left:276.598500px;}
.x20_c00102{left:278.104500px;}
.x1a_c00102{left:279.181500px;}
.x5b_c00102{left:281.538000px;}
.x80_c00102{left:282.924366px;}
.x42_c00102{left:284.326500px;}
.x58_c00102{left:286.257000px;}
.x52_c00102{left:290.538000px;}
.x33_c00102{left:292.041000px;}
.x2e_c00102{left:293.520000px;}
.x6a_c00102{left:296.277000px;}
.x3d_c00102{left:298.507500px;}
.x6e_c00102{left:300.523500px;}
.x7_c00102{left:304.290000px;}
.x67_c00102{left:305.397000px;}
.x13_c00102{left:308.341500px;}
.x1b_c00102{left:309.691500px;}
.x38_c00102{left:313.584000px;}
.x3e_c00102{left:315.445500px;}
.x21_c00102{left:317.452500px;}
.x8_c00102{left:320.490000px;}
.x43_c00102{left:324.772500px;}
.x5d_c00102{left:326.013000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fsc_c00102{font-size:53.200000pt;}
.fsb_c00102{font-size:54.133333pt;}
.fs9_c00102{font-size:55.066667pt;}
.fs7_c00102{font-size:56.000000pt;}
.fsf_c00102{font-size:56.005880pt;}
.fs4_c00102{font-size:56.933333pt;}
.fse_c00102{font-size:57.872742pt;}
.fs8_c00102{font-size:58.800000pt;}
.fs2_c00102{font-size:59.733333pt;}
.fs3_c00102{font-size:60.666667pt;}
.fs6_c00102{font-size:61.600000pt;}
.fs5_c00102{font-size:62.533333pt;}
.fs1_c00102{font-size:63.466667pt;}
.fs0_c00102{font-size:64.400000pt;}
.fsa_c00102{font-size:65.333333pt;}
.fsd_c00102{font-size:68.133333pt;}
.y0_c00102{bottom:0.000000pt;}
.ye3_c00102{bottom:29.069752pt;}
.ye2_c00102{bottom:34.320705pt;}
.ye1_c00102{bottom:37.569165pt;}
.ye0_c00102{bottom:39.875595pt;}
.ydf_c00102{bottom:42.234969pt;}
.yde_c00102{bottom:43.319291pt;}
.ydd_c00102{bottom:44.412072pt;}
.ydc_c00102{bottom:46.202020pt;}
.ydb_c00102{bottom:47.226307pt;}
.yda_c00102{bottom:49.429291pt;}
.yd9_c00102{bottom:51.267492pt;}
.yd8_c00102{bottom:52.893755pt;}
.yd7_c00102{bottom:54.020000pt;}
.yd6_c00102{bottom:60.990667pt;}
.yd5_c00102{bottom:62.281333pt;}
.yd4_c00102{bottom:63.181333pt;}
.yd3_c00102{bottom:63.972000pt;}
.yd2_c00102{bottom:65.781333pt;}
.yd1_c00102{bottom:66.365333pt;}
.yd0_c00102{bottom:66.744000pt;}
.ycf_c00102{bottom:68.658667pt;}
.yce_c00102{bottom:78.970667pt;}
.ycd_c00102{bottom:79.794667pt;}
.ycc_c00102{bottom:81.413333pt;}
.ycb_c00102{bottom:84.029333pt;}
.yca_c00102{bottom:84.509333pt;}
.yc9_c00102{bottom:85.697333pt;}
.yc8_c00102{bottom:93.374667pt;}
.yc7_c00102{bottom:94.644000pt;}
.yc6_c00102{bottom:95.168000pt;}
.yc5_c00102{bottom:95.536000pt;}
.yc4_c00102{bottom:96.470667pt;}
.yc3_c00102{bottom:98.560000pt;}
.yc2_c00102{bottom:99.061333pt;}
.yc1_c00102{bottom:99.777333pt;}
.yc0_c00102{bottom:100.262667pt;}
.ybf_c00102{bottom:101.056000pt;}
.ybe_c00102{bottom:111.856000pt;}
.ybd_c00102{bottom:112.318667pt;}
.ybc_c00102{bottom:112.644000pt;}
.ybb_c00102{bottom:113.637333pt;}
.yba_c00102{bottom:115.360000pt;}
.yb9_c00102{bottom:115.994667pt;}
.yb8_c00102{bottom:117.134667pt;}
.yb7_c00102{bottom:124.264000pt;}
.yb6_c00102{bottom:124.718667pt;}
.yb5_c00102{bottom:125.617333pt;}
.yb4_c00102{bottom:126.812000pt;}
.yb3_c00102{bottom:127.064000pt;}
.yb2_c00102{bottom:128.360000pt;}
.yb1_c00102{bottom:128.977333pt;}
.yb0_c00102{bottom:129.506667pt;}
.yaf_c00102{bottom:130.577333pt;}
.yae_c00102{bottom:141.382667pt;}
.yad_c00102{bottom:141.808000pt;}
.yac_c00102{bottom:142.369333pt;}
.yab_c00102{bottom:144.125333pt;}
.yaa_c00102{bottom:144.438667pt;}
.ya9_c00102{bottom:145.400000pt;}
.ya8_c00102{bottom:145.956000pt;}
.ya7_c00102{bottom:146.796000pt;}
.ya6_c00102{bottom:147.621333pt;}
.ya5_c00102{bottom:155.236000pt;}
.ya4_c00102{bottom:155.669333pt;}
.ya3_c00102{bottom:155.925333pt;}
.ya2_c00102{bottom:156.897333pt;}
.ya1_c00102{bottom:157.306667pt;}
.ya0_c00102{bottom:158.168000pt;}
.y9f_c00102{bottom:158.493333pt;}
.y9e_c00102{bottom:159.170667pt;}
.y9d_c00102{bottom:160.092000pt;}
.y9c_c00102{bottom:170.064000pt;}
.y9b_c00102{bottom:170.429333pt;}
.y9a_c00102{bottom:171.041333pt;}
.y99_c00102{bottom:172.404000pt;}
.y98_c00102{bottom:173.293333pt;}
.y97_c00102{bottom:173.629333pt;}
.y96_c00102{bottom:173.926667pt;}
.y95_c00102{bottom:175.141333pt;}
.y94_c00102{bottom:175.478667pt;}
.y93_c00102{bottom:175.896000pt;}
.y92_c00102{bottom:176.413333pt;}
.y91_c00102{bottom:186.020000pt;}
.y90_c00102{bottom:186.822667pt;}
.y8f_c00102{bottom:187.726667pt;}
.y8e_c00102{bottom:189.728000pt;}
.y8d_c00102{bottom:190.465333pt;}
.y8c_c00102{bottom:190.953333pt;}
.y8b_c00102{bottom:192.092000pt;}
.y8a_c00102{bottom:192.496000pt;}
.y89_c00102{bottom:201.014667pt;}
.y88_c00102{bottom:202.146667pt;}
.y87_c00102{bottom:202.552000pt;}
.y86_c00102{bottom:202.837333pt;}
.y85_c00102{bottom:203.874667pt;}
.y84_c00102{bottom:205.621333pt;}
.y83_c00102{bottom:206.046667pt;}
.y82_c00102{bottom:207.324000pt;}
.y81_c00102{bottom:207.852000pt;}
.y80_c00102{bottom:217.553333pt;}
.y7f_c00102{bottom:220.586667pt;}
.y7e_c00102{bottom:222.688000pt;}
.y7d_c00102{bottom:223.281333pt;}
.y7c_c00102{bottom:223.932000pt;}
.y7b_c00102{bottom:232.629333pt;}
.y7a_c00102{bottom:233.649333pt;}
.y79_c00102{bottom:233.960000pt;}
.y78_c00102{bottom:235.029333pt;}
.y77_c00102{bottom:235.758667pt;}
.y76_c00102{bottom:236.809333pt;}
.y75_c00102{bottom:237.121333pt;}
.y74_c00102{bottom:238.736000pt;}
.y73_c00102{bottom:239.770667pt;}
.y72_c00102{bottom:248.029333pt;}
.y71_c00102{bottom:248.646667pt;}
.y70_c00102{bottom:250.784000pt;}
.y6f_c00102{bottom:251.845333pt;}
.y6e_c00102{bottom:252.229333pt;}
.y6d_c00102{bottom:252.581333pt;}
.y6c_c00102{bottom:252.872000pt;}
.y6b_c00102{bottom:254.652000pt;}
.y6a_c00102{bottom:264.552000pt;}
.y69_c00102{bottom:265.768000pt;}
.y68_c00102{bottom:266.828000pt;}
.y67_c00102{bottom:267.545333pt;}
.y66_c00102{bottom:269.098667pt;}
.y65_c00102{bottom:269.710667pt;}
.y64_c00102{bottom:270.252000pt;}
.y63_c00102{bottom:281.396000pt;}
.y62_c00102{bottom:281.749333pt;}
.y61_c00102{bottom:282.936000pt;}
.y60_c00102{bottom:283.300000pt;}
.y5f_c00102{bottom:284.206667pt;}
.y5e_c00102{bottom:284.524000pt;}
.y5d_c00102{bottom:285.117333pt;}
.y5c_c00102{bottom:286.088000pt;}
.y5b_c00102{bottom:295.813333pt;}
.y5a_c00102{bottom:296.057333pt;}
.y59_c00102{bottom:296.477333pt;}
.y58_c00102{bottom:296.776000pt;}
.y57_c00102{bottom:297.970667pt;}
.y56_c00102{bottom:298.618667pt;}
.y55_c00102{bottom:298.957333pt;}
.y54_c00102{bottom:300.246667pt;}
.y53_c00102{bottom:309.537333pt;}
.y52_c00102{bottom:310.786667pt;}
.y51_c00102{bottom:310.968000pt;}
.y50_c00102{bottom:311.490667pt;}
.y4f_c00102{bottom:311.886667pt;}
.y4e_c00102{bottom:313.156000pt;}
.y4d_c00102{bottom:313.456000pt;}
.y4c_c00102{bottom:314.612000pt;}
.y4b_c00102{bottom:314.890667pt;}
.y4a_c00102{bottom:326.385333pt;}
.y49_c00102{bottom:327.580000pt;}
.y48_c00102{bottom:328.677333pt;}
.y47_c00102{bottom:329.194667pt;}
.y46_c00102{bottom:330.488000pt;}
.y45_c00102{bottom:341.618667pt;}
.y44_c00102{bottom:342.640000pt;}
.y43_c00102{bottom:342.964000pt;}
.y42_c00102{bottom:343.320000pt;}
.y41_c00102{bottom:344.230667pt;}
.y40_c00102{bottom:344.628000pt;}
.y3f_c00102{bottom:345.717333pt;}
.y3e_c00102{bottom:346.088000pt;}
.y3d_c00102{bottom:356.413333pt;}
.y3c_c00102{bottom:357.132000pt;}
.y3b_c00102{bottom:358.552000pt;}
.y3a_c00102{bottom:358.986667pt;}
.y39_c00102{bottom:360.049333pt;}
.y38_c00102{bottom:360.448000pt;}
.y37_c00102{bottom:360.800000pt;}
.y36_c00102{bottom:361.686667pt;}
.y35_c00102{bottom:372.490667pt;}
.y34_c00102{bottom:372.716000pt;}
.y33_c00102{bottom:373.764000pt;}
.y32_c00102{bottom:374.156000pt;}
.y31_c00102{bottom:374.844000pt;}
.y30_c00102{bottom:375.121333pt;}
.y2f_c00102{bottom:376.324000pt;}
.y2e_c00102{bottom:388.378667pt;}
.y2d_c00102{bottom:388.605333pt;}
.y2c_c00102{bottom:389.036000pt;}
.y2b_c00102{bottom:389.229333pt;}
.y2a_c00102{bottom:390.134667pt;}
.y29_c00102{bottom:390.358667pt;}
.y28_c00102{bottom:391.064000pt;}
.y27_c00102{bottom:391.682667pt;}
.y26_c00102{bottom:403.424000pt;}
.y25_c00102{bottom:403.750667pt;}
.y24_c00102{bottom:404.328000pt;}
.y23_c00102{bottom:404.540000pt;}
.y22_c00102{bottom:405.329333pt;}
.y21_c00102{bottom:405.925333pt;}
.y20_c00102{bottom:406.617333pt;}
.y1f_c00102{bottom:406.801333pt;}
.y1e_c00102{bottom:419.361333pt;}
.y1d_c00102{bottom:419.646667pt;}
.y1c_c00102{bottom:420.138667pt;}
.y1b_c00102{bottom:420.710667pt;}
.y1a_c00102{bottom:421.010667pt;}
.y19_c00102{bottom:421.413333pt;}
.y18_c00102{bottom:422.570667pt;}
.y17_c00102{bottom:422.956000pt;}
.y16_c00102{bottom:423.145333pt;}
.y15_c00102{bottom:423.842667pt;}
.y14_c00102{bottom:436.228000pt;}
.y13_c00102{bottom:447.982667pt;}
.y12_c00102{bottom:448.752000pt;}
.y11_c00102{bottom:449.658667pt;}
.y10_c00102{bottom:450.941333pt;}
.yf_c00102{bottom:451.349333pt;}
.ye_c00102{bottom:452.516000pt;}
.yd_c00102{bottom:453.157333pt;}
.yc_c00102{bottom:453.604000pt;}
.yb_c00102{bottom:466.685333pt;}
.ya_c00102{bottom:482.524000pt;}
.y9_c00102{bottom:497.008000pt;}
.y8_c00102{bottom:497.317333pt;}
.y7_c00102{bottom:497.841333pt;}
.y6_c00102{bottom:498.104000pt;}
.y5_c00102{bottom:499.034667pt;}
.y4_c00102{bottom:499.357333pt;}
.y3_c00102{bottom:499.921333pt;}
.y2_c00102{bottom:513.704000pt;}
.y1_c00102{bottom:526.561333pt;}
.he_c00102{height:53.200000pt;}
.hd_c00102{height:54.133333pt;}
.hb_c00102{height:55.066667pt;}
.h9_c00102{height:56.000000pt;}
.h11_c00102{height:56.005880pt;}
.h6_c00102{height:56.933333pt;}
.h10_c00102{height:57.872742pt;}
.ha_c00102{height:58.800000pt;}
.h4_c00102{height:59.733333pt;}
.h5_c00102{height:60.666667pt;}
.h8_c00102{height:61.600000pt;}
.h7_c00102{height:62.533333pt;}
.h3_c00102{height:63.466667pt;}
.h2_c00102{height:64.400000pt;}
.hc_c00102{height:65.333333pt;}
.hf_c00102{height:68.133333pt;}
.h0_c00102{height:563.733333pt;}
.h1_c00102{height:564.000000pt;}
.w0_c00102{width:330.480000pt;}
.w1_c00102{width:330.666667pt;}
.x0_c00102{left:0.000000pt;}
.x4c_c00102{left:23.845333pt;}
.x22_c00102{left:24.962667pt;}
.x2_c00102{left:26.880000pt;}
.x63_c00102{left:31.652000pt;}
.x6b_c00102{left:35.794667pt;}
.x49_c00102{left:37.460000pt;}
.x2f_c00102{left:39.026667pt;}
.x44_c00102{left:44.229333pt;}
.x5e_c00102{left:45.317333pt;}
.x1c_c00102{left:46.910667pt;}
.x7d_c00102{left:47.980037pt;}
.x78_c00102{left:49.098667pt;}
.x5c_c00102{left:51.118667pt;}
.x14_c00102{left:58.561333pt;}
.x28_c00102{left:61.704000pt;}
.x79_c00102{left:64.758667pt;}
.x9_c00102{left:66.574667pt;}
.x3f_c00102{left:69.361333pt;}
.x29_c00102{left:71.672000pt;}
.x76_c00102{left:72.821333pt;}
.xf_c00102{left:74.161333pt;}
.x1d_c00102{left:76.092000pt;}
.x15_c00102{left:77.521333pt;}
.x6f_c00102{left:78.646667pt;}
.x6c_c00102{left:79.680000pt;}
.x7e_c00102{left:82.546769pt;}
.x23_c00102{left:85.682667pt;}
.x10_c00102{left:87.601333pt;}
.xa_c00102{left:89.606667pt;}
.x2a_c00102{left:91.986667pt;}
.x5f_c00102{left:94.458667pt;}
.x3_c00102{left:96.240000pt;}
.x70_c00102{left:97.174667pt;}
.x4d_c00102{left:99.672000pt;}
.x45_c00102{left:101.573333pt;}
.x56_c00102{left:103.121333pt;}
.x7a_c00102{left:104.036000pt;}
.x39_c00102{left:104.976000pt;}
.x24_c00102{left:106.082667pt;}
.x60_c00102{left:110.842667pt;}
.x6d_c00102{left:111.941333pt;}
.x81_c00102{left:113.637383pt;}
.x48_c00102{left:114.824000pt;}
.x57_c00102{left:116.677333pt;}
.x50_c00102{left:117.637333pt;}
.x4e_c00102{left:119.594667pt;}
.x7f_c00102{left:121.618325pt;}
.x46_c00102{left:122.514667pt;}
.x3a_c00102{left:123.456000pt;}
.x34_c00102{left:126.409333pt;}
.x16_c00102{left:127.681333pt;}
.x1e_c00102{left:129.101333pt;}
.x4_c00102{left:132.240000pt;}
.x59_c00102{left:133.214667pt;}
.x64_c00102{left:134.141333pt;}
.x68_c00102{left:135.344000pt;}
.x30_c00102{left:138.100000pt;}
.x71_c00102{left:139.689333pt;}
.x53_c00102{left:140.934667pt;}
.x35_c00102{left:143.630667pt;}
.x17_c00102{left:148.081333pt;}
.x25_c00102{left:151.442667pt;}
.x1_c00102{left:153.360000pt;}
.xb_c00102{left:156.070667pt;}
.x4f_c00102{left:157.740000pt;}
.x11_c00102{left:158.881333pt;}
.x40_c00102{left:159.964000pt;}
.x51_c00102{left:162.984000pt;}
.x18_c00102{left:167.761333pt;}
.x3b_c00102{left:169.354667pt;}
.x47_c00102{left:170.452000pt;}
.x54_c00102{left:172.106667pt;}
.x74_c00102{left:173.777333pt;}
.xc_c00102{left:174.790667pt;}
.x61_c00102{left:178.041333pt;}
.x41_c00102{left:181.713333pt;}
.x69_c00102{left:184.357333pt;}
.x4a_c00102{left:186.090667pt;}
.x12_c00102{left:188.161333pt;}
.x2b_c00102{left:189.880000pt;}
.x3c_c00102{left:195.444000pt;}
.x31_c00102{left:198.816000pt;}
.x7c_c00102{left:200.654667pt;}
.x7b_c00102{left:201.597333pt;}
.x26_c00102{left:202.802667pt;}
.x5_c00102{left:204.480000pt;}
.x1f_c00102{left:205.970667pt;}
.x65_c00102{left:208.280000pt;}
.x4b_c00102{left:210.969333pt;}
.xd_c00102{left:212.230667pt;}
.x36_c00102{left:213.222667pt;}
.x32_c00102{left:215.130667pt;}
.x72_c00102{left:216.928000pt;}
.x55_c00102{left:218.201333pt;}
.x2c_c00102{left:219.950667pt;}
.x75_c00102{left:221.537333pt;}
.x27_c00102{left:225.842667pt;}
.x37_c00102{left:228.102667pt;}
.x19_c00102{left:229.681333pt;}
.x73_c00102{left:231.089333pt;}
.x77_c00102{left:232.638667pt;}
.xe_c00102{left:234.306667pt;}
.x5a_c00102{left:238.757333pt;}
.x6_c00102{left:240.480000pt;}
.x66_c00102{left:241.752000pt;}
.x62_c00102{left:244.513333pt;}
.x2d_c00102{left:245.865333pt;}
.x20_c00102{left:247.204000pt;}
.x1a_c00102{left:248.161333pt;}
.x5b_c00102{left:250.256000pt;}
.x80_c00102{left:251.488325pt;}
.x42_c00102{left:252.734667pt;}
.x58_c00102{left:254.450667pt;}
.x52_c00102{left:258.256000pt;}
.x33_c00102{left:259.592000pt;}
.x2e_c00102{left:260.906667pt;}
.x6a_c00102{left:263.357333pt;}
.x3d_c00102{left:265.340000pt;}
.x6e_c00102{left:267.132000pt;}
.x7_c00102{left:270.480000pt;}
.x67_c00102{left:271.464000pt;}
.x13_c00102{left:274.081333pt;}
.x1b_c00102{left:275.281333pt;}
.x38_c00102{left:278.741333pt;}
.x3e_c00102{left:280.396000pt;}
.x21_c00102{left:282.180000pt;}
.x8_c00102{left:284.880000pt;}
.x43_c00102{left:288.686667pt;}
.x5d_c00102{left:289.789333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00103 {
    display:none;
  }
  .loading-indicator_c00103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00103 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00103 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00103" -> "#page-container .classname_c00103")
 */
.pf_c00103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00103 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00103 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00103 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00103 {overflow:visible;}
  }
}
.c_c00103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00103 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00103:after { /* webkit #35443 */
  content: '';
}
.t_c00103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00103 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00103 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00103 { /* info for Javascript */
  display:none;
}
.l_c00103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00103:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00103 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00103.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00103{transform:matrix(0.129329,-0.002845,0.005499,0.249940,0,0);-ms-transform:matrix(0.129329,-0.002845,0.005499,0.249940,0,0);-webkit-transform:matrix(0.129329,-0.002845,0.005499,0.249940,0,0);}
.ma3_c00103{transform:matrix(0.132668,-0.002919,0.005499,0.249940,0,0);-ms-transform:matrix(0.132668,-0.002919,0.005499,0.249940,0,0);-webkit-transform:matrix(0.132668,-0.002919,0.005499,0.249940,0,0);}
.m8b_c00103{transform:matrix(0.145070,-0.003192,0.005499,0.249940,0,0);-ms-transform:matrix(0.145070,-0.003192,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145070,-0.003192,0.005499,0.249940,0,0);}
.mde_c00103{transform:matrix(0.150228,-0.002253,0.003750,0.249972,0,0);-ms-transform:matrix(0.150228,-0.002253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150228,-0.002253,0.003750,0.249972,0,0);}
.m3c_c00103{transform:matrix(0.150384,-0.003308,0.005499,0.249940,0,0);-ms-transform:matrix(0.150384,-0.003308,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150384,-0.003308,0.005499,0.249940,0,0);}
.mea_c00103{transform:matrix(0.151943,-0.002279,0.003750,0.249972,0,0);-ms-transform:matrix(0.151943,-0.002279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151943,-0.002279,0.003750,0.249972,0,0);}
.m3e_c00103{transform:matrix(0.151998,-0.003344,0.005499,0.249940,0,0);-ms-transform:matrix(0.151998,-0.003344,0.005499,0.249940,0,0);-webkit-transform:matrix(0.151998,-0.003344,0.005499,0.249940,0,0);}
.mf2_c00103{transform:matrix(0.153098,-0.002296,0.003750,0.249972,0,0);-ms-transform:matrix(0.153098,-0.002296,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153098,-0.002296,0.003750,0.249972,0,0);}
.me7_c00103{transform:matrix(0.153698,-0.002305,0.003750,0.249972,0,0);-ms-transform:matrix(0.153698,-0.002305,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153698,-0.002305,0.003750,0.249972,0,0);}
.ma5_c00103{transform:matrix(0.155627,-0.002334,0.003750,0.249972,0,0);-ms-transform:matrix(0.155627,-0.002334,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155627,-0.002334,0.003750,0.249972,0,0);}
.m6e_c00103{transform:matrix(0.156227,-0.003437,0.005499,0.249940,0,0);-ms-transform:matrix(0.156227,-0.003437,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156227,-0.003437,0.005499,0.249940,0,0);}
.mc8_c00103{transform:matrix(0.156292,-0.002344,0.003750,0.249972,0,0);-ms-transform:matrix(0.156292,-0.002344,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156292,-0.002344,0.003750,0.249972,0,0);}
.m3f_c00103{transform:matrix(0.159176,-0.003502,0.005499,0.249940,0,0);-ms-transform:matrix(0.159176,-0.003502,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159176,-0.003502,0.005499,0.249940,0,0);}
.mdf_c00103{transform:matrix(0.159357,-0.002390,0.003750,0.249972,0,0);-ms-transform:matrix(0.159357,-0.002390,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159357,-0.002390,0.003750,0.249972,0,0);}
.me5_c00103{transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);-ms-transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);}
.me2_c00103{transform:matrix(0.160667,-0.002410,0.003750,0.249972,0,0);-ms-transform:matrix(0.160667,-0.002410,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160667,-0.002410,0.003750,0.249972,0,0);}
.m7a_c00103{transform:matrix(0.160676,-0.003535,0.005499,0.249940,0,0);-ms-transform:matrix(0.160676,-0.003535,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160676,-0.003535,0.005499,0.249940,0,0);}
.md5_c00103{transform:matrix(0.161947,-0.002429,0.003750,0.249972,0,0);-ms-transform:matrix(0.161947,-0.002429,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161947,-0.002429,0.003750,0.249972,0,0);}
.m21_c00103{transform:matrix(0.162031,-0.003565,0.005499,0.249940,0,0);-ms-transform:matrix(0.162031,-0.003565,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162031,-0.003565,0.005499,0.249940,0,0);}
.me8_c00103{transform:matrix(0.162172,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162172,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162172,-0.002433,0.003750,0.249972,0,0);}
.m71_c00103{transform:matrix(0.162511,-0.003575,0.005499,0.249940,0,0);-ms-transform:matrix(0.162511,-0.003575,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162511,-0.003575,0.005499,0.249940,0,0);}
.m7b_c00103{transform:matrix(0.163700,-0.003601,0.005499,0.249940,0,0);-ms-transform:matrix(0.163700,-0.003601,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163700,-0.003601,0.005499,0.249940,0,0);}
.m6f_c00103{transform:matrix(0.163760,-0.003603,0.005499,0.249940,0,0);-ms-transform:matrix(0.163760,-0.003603,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163760,-0.003603,0.005499,0.249940,0,0);}
.mca_c00103{transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);-ms-transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);}
.me3_c00103{transform:matrix(0.165531,-0.002483,0.003750,0.249972,0,0);-ms-transform:matrix(0.165531,-0.002483,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165531,-0.002483,0.003750,0.249972,0,0);}
.m13_c00103{transform:matrix(0.165710,-0.003646,0.005499,0.249940,0,0);-ms-transform:matrix(0.165710,-0.003646,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165710,-0.003646,0.005499,0.249940,0,0);}
.me1_c00103{transform:matrix(0.166046,-0.002491,0.003750,0.249972,0,0);-ms-transform:matrix(0.166046,-0.002491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166046,-0.002491,0.003750,0.249972,0,0);}
.mb7_c00103{transform:matrix(0.166311,-0.002495,0.003750,0.249972,0,0);-ms-transform:matrix(0.166311,-0.002495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166311,-0.002495,0.003750,0.249972,0,0);}
.m3d_c00103{transform:matrix(0.166960,-0.003673,0.005499,0.249940,0,0);-ms-transform:matrix(0.166960,-0.003673,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166960,-0.003673,0.005499,0.249940,0,0);}
.md6_c00103{transform:matrix(0.166966,-0.002504,0.003750,0.249972,0,0);-ms-transform:matrix(0.166966,-0.002504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166966,-0.002504,0.003750,0.249972,0,0);}
.m2c_c00103{transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);-ms-transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);}
.m34_c00103{transform:matrix(0.168659,-0.003711,0.005499,0.249940,0,0);-ms-transform:matrix(0.168659,-0.003711,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168659,-0.003711,0.005499,0.249940,0,0);}
.m36_c00103{transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);-ms-transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);}
.m10_c00103{transform:matrix(0.168949,-0.003717,0.005499,0.249940,0,0);-ms-transform:matrix(0.168949,-0.003717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168949,-0.003717,0.005499,0.249940,0,0);}
.m17_c00103{transform:matrix(0.168959,-0.003717,0.005499,0.249940,0,0);-ms-transform:matrix(0.168959,-0.003717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168959,-0.003717,0.005499,0.249940,0,0);}
.m38_c00103{transform:matrix(0.169034,-0.003719,0.005499,0.249940,0,0);-ms-transform:matrix(0.169034,-0.003719,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169034,-0.003719,0.005499,0.249940,0,0);}
.mdd_c00103{transform:matrix(0.169371,-0.002541,0.003750,0.249972,0,0);-ms-transform:matrix(0.169371,-0.002541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169371,-0.002541,0.003750,0.249972,0,0);}
.m22_c00103{transform:matrix(0.169584,-0.003731,0.005499,0.249940,0,0);-ms-transform:matrix(0.169584,-0.003731,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169584,-0.003731,0.005499,0.249940,0,0);}
.m29_c00103{transform:matrix(0.169674,-0.003733,0.005499,0.249940,0,0);-ms-transform:matrix(0.169674,-0.003733,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169674,-0.003733,0.005499,0.249940,0,0);}
.m5_c00103{transform:matrix(0.170599,-0.003753,0.005499,0.249940,0,0);-ms-transform:matrix(0.170599,-0.003753,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170599,-0.003753,0.005499,0.249940,0,0);}
.mc0_c00103{transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);-ms-transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);}
.me6_c00103{transform:matrix(0.170866,-0.002563,0.003750,0.249972,0,0);-ms-transform:matrix(0.170866,-0.002563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170866,-0.002563,0.003750,0.249972,0,0);}
.mba_c00103{transform:matrix(0.170886,-0.002563,0.003750,0.249972,0,0);-ms-transform:matrix(0.170886,-0.002563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170886,-0.002563,0.003750,0.249972,0,0);}
.m3b_c00103{transform:matrix(0.171029,-0.003763,0.005499,0.249940,0,0);-ms-transform:matrix(0.171029,-0.003763,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171029,-0.003763,0.005499,0.249940,0,0);}
.m1c_c00103{transform:matrix(0.171603,-0.003775,0.005499,0.249940,0,0);-ms-transform:matrix(0.171603,-0.003775,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171603,-0.003775,0.005499,0.249940,0,0);}
.m52_c00103{transform:matrix(0.172878,-0.003803,0.005499,0.249940,0,0);-ms-transform:matrix(0.172878,-0.003803,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172878,-0.003803,0.005499,0.249940,0,0);}
.m8a_c00103{transform:matrix(0.173278,-0.003812,0.005499,0.249940,0,0);-ms-transform:matrix(0.173278,-0.003812,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173278,-0.003812,0.005499,0.249940,0,0);}
.m33_c00103{transform:matrix(0.173298,-0.003813,0.005499,0.249940,0,0);-ms-transform:matrix(0.173298,-0.003813,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173298,-0.003813,0.005499,0.249940,0,0);}
.mf0_c00103{transform:matrix(0.173510,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173510,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173510,-0.002603,0.003750,0.249972,0,0);}
.mc3_c00103{transform:matrix(0.174695,-0.002620,0.003750,0.249972,0,0);-ms-transform:matrix(0.174695,-0.002620,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174695,-0.002620,0.003750,0.249972,0,0);}
.mcf_c00103{transform:matrix(0.174875,-0.002623,0.003750,0.249972,0,0);-ms-transform:matrix(0.174875,-0.002623,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174875,-0.002623,0.003750,0.249972,0,0);}
.m63_c00103{transform:matrix(0.174913,-0.003848,0.005499,0.249940,0,0);-ms-transform:matrix(0.174913,-0.003848,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174913,-0.003848,0.005499,0.249940,0,0);}
.m14_c00103{transform:matrix(0.175323,-0.003857,0.005499,0.249940,0,0);-ms-transform:matrix(0.175323,-0.003857,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175323,-0.003857,0.005499,0.249940,0,0);}
.m2a_c00103{transform:matrix(0.175523,-0.003861,0.005499,0.249940,0,0);-ms-transform:matrix(0.175523,-0.003861,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175523,-0.003861,0.005499,0.249940,0,0);}
.mc4_c00103{transform:matrix(0.175790,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175790,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175790,-0.002637,0.003750,0.249972,0,0);}
.m85_c00103{transform:matrix(0.175912,-0.003870,0.005499,0.249940,0,0);-ms-transform:matrix(0.175912,-0.003870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175912,-0.003870,0.005499,0.249940,0,0);}
.m37_c00103{transform:matrix(0.176237,-0.003877,0.005499,0.249940,0,0);-ms-transform:matrix(0.176237,-0.003877,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176237,-0.003877,0.005499,0.249940,0,0);}
.m6b_c00103{transform:matrix(0.176562,-0.003884,0.005499,0.249940,0,0);-ms-transform:matrix(0.176562,-0.003884,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176562,-0.003884,0.005499,0.249940,0,0);}
.me9_c00103{transform:matrix(0.176865,-0.002653,0.003750,0.249972,0,0);-ms-transform:matrix(0.176865,-0.002653,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176865,-0.002653,0.003750,0.249972,0,0);}
.mdb_c00103{transform:matrix(0.177300,-0.002660,0.003750,0.249972,0,0);-ms-transform:matrix(0.177300,-0.002660,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177300,-0.002660,0.003750,0.249972,0,0);}
.m5a_c00103{transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);-ms-transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);}
.m54_c00103{transform:matrix(0.177692,-0.003909,0.005499,0.249940,0,0);-ms-transform:matrix(0.177692,-0.003909,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177692,-0.003909,0.005499,0.249940,0,0);}
.mc1_c00103{transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);}
.mab_c00103{transform:matrix(0.178050,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178050,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178050,-0.002671,0.003750,0.249972,0,0);}
.m1f_c00103{transform:matrix(0.178577,-0.003929,0.005499,0.249940,0,0);-ms-transform:matrix(0.178577,-0.003929,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178577,-0.003929,0.005499,0.249940,0,0);}
.mce_c00103{transform:matrix(0.179105,-0.002687,0.003750,0.249972,0,0);-ms-transform:matrix(0.179105,-0.002687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179105,-0.002687,0.003750,0.249972,0,0);}
.mbe_c00103{transform:matrix(0.179110,-0.002687,0.003750,0.249972,0,0);-ms-transform:matrix(0.179110,-0.002687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179110,-0.002687,0.003750,0.249972,0,0);}
.m7e_c00103{transform:matrix(0.179182,-0.003942,0.005499,0.249940,0,0);-ms-transform:matrix(0.179182,-0.003942,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179182,-0.003942,0.005499,0.249940,0,0);}
.m6d_c00103{transform:matrix(0.179722,-0.003954,0.005499,0.249940,0,0);-ms-transform:matrix(0.179722,-0.003954,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179722,-0.003954,0.005499,0.249940,0,0);}
.m76_c00103{transform:matrix(0.180471,-0.003970,0.005499,0.249940,0,0);-ms-transform:matrix(0.180471,-0.003970,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180471,-0.003970,0.005499,0.249940,0,0);}
.me0_c00103{transform:matrix(0.181015,-0.002715,0.003750,0.249972,0,0);-ms-transform:matrix(0.181015,-0.002715,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181015,-0.002715,0.003750,0.249972,0,0);}
.m1e_c00103{transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);-ms-transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);}
.m58_c00103{transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-ms-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);}
.m5e_c00103{transform:matrix(0.182071,-0.004006,0.005499,0.249940,0,0);-ms-transform:matrix(0.182071,-0.004006,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182071,-0.004006,0.005499,0.249940,0,0);}
.mbd_c00103{transform:matrix(0.182274,-0.002734,0.003750,0.249972,0,0);-ms-transform:matrix(0.182274,-0.002734,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182274,-0.002734,0.003750,0.249972,0,0);}
.mad_c00103{transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);}
.m68_c00103{transform:matrix(0.182446,-0.004014,0.005499,0.249940,0,0);-ms-transform:matrix(0.182446,-0.004014,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182446,-0.004014,0.005499,0.249940,0,0);}
.m39_c00103{transform:matrix(0.182756,-0.004021,0.005499,0.249940,0,0);-ms-transform:matrix(0.182756,-0.004021,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182756,-0.004021,0.005499,0.249940,0,0);}
.m87_c00103{transform:matrix(0.183121,-0.004029,0.005499,0.249940,0,0);-ms-transform:matrix(0.183121,-0.004029,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183121,-0.004029,0.005499,0.249940,0,0);}
.mc_c00103{transform:matrix(0.183191,-0.004030,0.005499,0.249940,0,0);-ms-transform:matrix(0.183191,-0.004030,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183191,-0.004030,0.005499,0.249940,0,0);}
.m30_c00103{transform:matrix(0.183466,-0.004036,0.005499,0.249940,0,0);-ms-transform:matrix(0.183466,-0.004036,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183466,-0.004036,0.005499,0.249940,0,0);}
.m72_c00103{transform:matrix(0.183746,-0.004042,0.005499,0.249940,0,0);-ms-transform:matrix(0.183746,-0.004042,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183746,-0.004042,0.005499,0.249940,0,0);}
.m12_c00103{transform:matrix(0.183796,-0.004044,0.005499,0.249940,0,0);-ms-transform:matrix(0.183796,-0.004044,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183796,-0.004044,0.005499,0.249940,0,0);}
.m9e_c00103{transform:matrix(0.184255,-0.004054,0.005499,0.249940,0,0);-ms-transform:matrix(0.184255,-0.004054,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184255,-0.004054,0.005499,0.249940,0,0);}
.m9f_c00103{transform:matrix(0.185570,-0.004083,0.005499,0.249940,0,0);-ms-transform:matrix(0.185570,-0.004083,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185570,-0.004083,0.005499,0.249940,0,0);}
.md8_c00103{transform:matrix(0.185789,-0.002787,0.003750,0.249972,0,0);-ms-transform:matrix(0.185789,-0.002787,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185789,-0.002787,0.003750,0.249972,0,0);}
.m20_c00103{transform:matrix(0.185895,-0.004090,0.005499,0.249940,0,0);-ms-transform:matrix(0.185895,-0.004090,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185895,-0.004090,0.005499,0.249940,0,0);}
.m5f_c00103{transform:matrix(0.186000,-0.004092,0.005499,0.249940,0,0);-ms-transform:matrix(0.186000,-0.004092,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186000,-0.004092,0.005499,0.249940,0,0);}
.m66_c00103{transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);-ms-transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);}
.ma1_c00103{transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);-ms-transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);}
.m2_c00103{transform:matrix(0.186505,-0.004103,0.005499,0.249940,0,0);-ms-transform:matrix(0.186505,-0.004103,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186505,-0.004103,0.005499,0.249940,0,0);}
.md2_c00103{transform:matrix(0.186619,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186619,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186619,-0.002799,0.003750,0.249972,0,0);}
.meb_c00103{transform:matrix(0.186784,-0.002802,0.003750,0.249972,0,0);-ms-transform:matrix(0.186784,-0.002802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186784,-0.002802,0.003750,0.249972,0,0);}
.ma2_c00103{transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);-ms-transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187355,-0.004122,0.005499,0.249940,0,0);}
.mb5_c00103{transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);-ms-transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);}
.me4_c00103{transform:matrix(0.187499,-0.002812,0.003750,0.249972,0,0);-ms-transform:matrix(0.187499,-0.002812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187499,-0.002812,0.003750,0.249972,0,0);}
.m6_c00103{transform:matrix(0.187685,-0.004129,0.005499,0.249940,0,0);-ms-transform:matrix(0.187685,-0.004129,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187685,-0.004129,0.005499,0.249940,0,0);}
.mc5_c00103{transform:matrix(0.188124,-0.002822,0.003750,0.249972,0,0);-ms-transform:matrix(0.188124,-0.002822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188124,-0.002822,0.003750,0.249972,0,0);}
.m1a_c00103{transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);-ms-transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);}
.m7_c00103{transform:matrix(0.189009,-0.004158,0.005499,0.249940,0,0);-ms-transform:matrix(0.189009,-0.004158,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189009,-0.004158,0.005499,0.249940,0,0);}
.m9c_c00103{transform:matrix(0.189374,-0.004166,0.005499,0.249940,0,0);-ms-transform:matrix(0.189374,-0.004166,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189374,-0.004166,0.005499,0.249940,0,0);}
.md4_c00103{transform:matrix(0.189509,-0.002843,0.003750,0.249972,0,0);-ms-transform:matrix(0.189509,-0.002843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189509,-0.002843,0.003750,0.249972,0,0);}
.m57_c00103{transform:matrix(0.189729,-0.004174,0.005499,0.249940,0,0);-ms-transform:matrix(0.189729,-0.004174,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189729,-0.004174,0.005499,0.249940,0,0);}
.mac_c00103{transform:matrix(0.189769,-0.002847,0.003750,0.249972,0,0);-ms-transform:matrix(0.189769,-0.002847,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189769,-0.002847,0.003750,0.249972,0,0);}
.m8_c00103{transform:matrix(0.190434,-0.004190,0.005499,0.249940,0,0);-ms-transform:matrix(0.190434,-0.004190,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190434,-0.004190,0.005499,0.249940,0,0);}
.m45_c00103{transform:matrix(0.190564,-0.004192,0.005499,0.249940,0,0);-ms-transform:matrix(0.190564,-0.004192,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190564,-0.004192,0.005499,0.249940,0,0);}
.ma9_c00103{transform:matrix(0.190579,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190579,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190579,-0.002859,0.003750,0.249972,0,0);}
.mc9_c00103{transform:matrix(0.190699,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190699,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190699,-0.002860,0.003750,0.249972,0,0);}
.m7f_c00103{transform:matrix(0.190834,-0.004198,0.005499,0.249940,0,0);-ms-transform:matrix(0.190834,-0.004198,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190834,-0.004198,0.005499,0.249940,0,0);}
.mb_c00103{transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);-ms-transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);}
.mbb_c00103{transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);}
.m1d_c00103{transform:matrix(0.191369,-0.004210,0.005499,0.249940,0,0);-ms-transform:matrix(0.191369,-0.004210,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191369,-0.004210,0.005499,0.249940,0,0);}
.m55_c00103{transform:matrix(0.191389,-0.004211,0.005499,0.249940,0,0);-ms-transform:matrix(0.191389,-0.004211,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191389,-0.004211,0.005499,0.249940,0,0);}
.mdc_c00103{transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);}
.md1_c00103{transform:matrix(0.191743,-0.002876,0.003750,0.249972,0,0);-ms-transform:matrix(0.191743,-0.002876,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191743,-0.002876,0.003750,0.249972,0,0);}
.m5c_c00103{transform:matrix(0.192573,-0.004237,0.005499,0.249940,0,0);-ms-transform:matrix(0.192573,-0.004237,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192573,-0.004237,0.005499,0.249940,0,0);}
.m94_c00103{transform:matrix(0.192688,-0.004239,0.005499,0.249940,0,0);-ms-transform:matrix(0.192688,-0.004239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192688,-0.004239,0.005499,0.249940,0,0);}
.m35_c00103{transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);-ms-transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);}
.m9_c00103{transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);-ms-transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);}
.m56_c00103{transform:matrix(0.193143,-0.004249,0.005499,0.249940,0,0);-ms-transform:matrix(0.193143,-0.004249,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193143,-0.004249,0.005499,0.249940,0,0);}
.m70_c00103{transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);-ms-transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);}
.m43_c00103{transform:matrix(0.193388,-0.004255,0.005499,0.249940,0,0);-ms-transform:matrix(0.193388,-0.004255,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193388,-0.004255,0.005499,0.249940,0,0);}
.m79_c00103{transform:matrix(0.193478,-0.004257,0.005499,0.249940,0,0);-ms-transform:matrix(0.193478,-0.004257,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193478,-0.004257,0.005499,0.249940,0,0);}
.m8e_c00103{transform:matrix(0.193733,-0.004262,0.005499,0.249940,0,0);-ms-transform:matrix(0.193733,-0.004262,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193733,-0.004262,0.005499,0.249940,0,0);}
.m81_c00103{transform:matrix(0.194313,-0.004275,0.005499,0.249940,0,0);-ms-transform:matrix(0.194313,-0.004275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194313,-0.004275,0.005499,0.249940,0,0);}
.mf3_c00103{transform:matrix(0.194673,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194673,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194673,-0.002920,0.003750,0.249972,0,0);}
.m9d_c00103{transform:matrix(0.194688,-0.004283,0.005499,0.249940,0,0);-ms-transform:matrix(0.194688,-0.004283,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194688,-0.004283,0.005499,0.249940,0,0);}
.m95_c00103{transform:matrix(0.195183,-0.004294,0.005499,0.249940,0,0);-ms-transform:matrix(0.195183,-0.004294,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195183,-0.004294,0.005499,0.249940,0,0);}
.m11_c00103{transform:matrix(0.195638,-0.004304,0.005499,0.249940,0,0);-ms-transform:matrix(0.195638,-0.004304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195638,-0.004304,0.005499,0.249940,0,0);}
.m44_c00103{transform:matrix(0.195933,-0.004311,0.005499,0.249940,0,0);-ms-transform:matrix(0.195933,-0.004311,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195933,-0.004311,0.005499,0.249940,0,0);}
.mf1_c00103{transform:matrix(0.195973,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.195973,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195973,-0.002940,0.003750,0.249972,0,0);}
.m48_c00103{transform:matrix(0.196118,-0.004315,0.005499,0.249940,0,0);-ms-transform:matrix(0.196118,-0.004315,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196118,-0.004315,0.005499,0.249940,0,0);}
.m6c_c00103{transform:matrix(0.196397,-0.004321,0.005499,0.249940,0,0);-ms-transform:matrix(0.196397,-0.004321,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196397,-0.004321,0.005499,0.249940,0,0);}
.m40_c00103{transform:matrix(0.196607,-0.004325,0.005499,0.249940,0,0);-ms-transform:matrix(0.196607,-0.004325,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196607,-0.004325,0.005499,0.249940,0,0);}
.m4f_c00103{transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);-ms-transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);}
.m31_c00103{transform:matrix(0.196812,-0.004330,0.005499,0.249940,0,0);-ms-transform:matrix(0.196812,-0.004330,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196812,-0.004330,0.005499,0.249940,0,0);}
.mb3_c00103{transform:matrix(0.197173,-0.002958,0.003750,0.249972,0,0);-ms-transform:matrix(0.197173,-0.002958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197173,-0.002958,0.003750,0.249972,0,0);}
.m7d_c00103{transform:matrix(0.197842,-0.004353,0.005499,0.249940,0,0);-ms-transform:matrix(0.197842,-0.004353,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197842,-0.004353,0.005499,0.249940,0,0);}
.m0_c00103{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m4c_c00103{transform:matrix(0.198187,-0.004360,0.005499,0.249940,0,0);-ms-transform:matrix(0.198187,-0.004360,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198187,-0.004360,0.005499,0.249940,0,0);}
.mcc_c00103{transform:matrix(0.198338,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198338,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198338,-0.002975,0.003750,0.249972,0,0);}
.m9b_c00103{transform:matrix(0.198442,-0.004366,0.005499,0.249940,0,0);-ms-transform:matrix(0.198442,-0.004366,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198442,-0.004366,0.005499,0.249940,0,0);}
.mbf_c00103{transform:matrix(0.198968,-0.002985,0.003750,0.249972,0,0);-ms-transform:matrix(0.198968,-0.002985,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198968,-0.002985,0.003750,0.249972,0,0);}
.m86_c00103{transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);-ms-transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199177,-0.004382,0.005499,0.249940,0,0);}
.m18_c00103{transform:matrix(0.199742,-0.004394,0.005499,0.249940,0,0);-ms-transform:matrix(0.199742,-0.004394,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199742,-0.004394,0.005499,0.249940,0,0);}
.m24_c00103{transform:matrix(0.200631,-0.004414,0.005499,0.249940,0,0);-ms-transform:matrix(0.200631,-0.004414,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200631,-0.004414,0.005499,0.249940,0,0);}
.md7_c00103{transform:matrix(0.200937,-0.003014,0.003750,0.249972,0,0);-ms-transform:matrix(0.200937,-0.003014,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200937,-0.003014,0.003750,0.249972,0,0);}
.m2d_c00103{transform:matrix(0.201161,-0.004426,0.005499,0.249940,0,0);-ms-transform:matrix(0.201161,-0.004426,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201161,-0.004426,0.005499,0.249940,0,0);}
.mee_c00103{transform:matrix(0.201582,-0.003024,0.003750,0.249972,0,0);-ms-transform:matrix(0.201582,-0.003024,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201582,-0.003024,0.003750,0.249972,0,0);}
.md0_c00103{transform:matrix(0.202272,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202272,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202272,-0.003034,0.003750,0.249972,0,0);}
.mb4_c00103{transform:matrix(0.202372,-0.003036,0.003750,0.249972,0,0);-ms-transform:matrix(0.202372,-0.003036,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202372,-0.003036,0.003750,0.249972,0,0);}
.ma7_c00103{transform:matrix(0.202617,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202617,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202617,-0.003039,0.003750,0.249972,0,0);}
.m5d_c00103{transform:matrix(0.202676,-0.004459,0.005499,0.249940,0,0);-ms-transform:matrix(0.202676,-0.004459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202676,-0.004459,0.005499,0.249940,0,0);}
.m1b_c00103{transform:matrix(0.203601,-0.004479,0.005499,0.249940,0,0);-ms-transform:matrix(0.203601,-0.004479,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203601,-0.004479,0.005499,0.249940,0,0);}
.m26_c00103{transform:matrix(0.203906,-0.004486,0.005499,0.249940,0,0);-ms-transform:matrix(0.203906,-0.004486,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203906,-0.004486,0.005499,0.249940,0,0);}
.m61_c00103{transform:matrix(0.203936,-0.004487,0.005499,0.249940,0,0);-ms-transform:matrix(0.203936,-0.004487,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203936,-0.004487,0.005499,0.249940,0,0);}
.m62_c00103{transform:matrix(0.204760,-0.004505,0.005499,0.249940,0,0);-ms-transform:matrix(0.204760,-0.004505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204760,-0.004505,0.005499,0.249940,0,0);}
.m97_c00103{transform:matrix(0.205570,-0.004523,0.005499,0.249940,0,0);-ms-transform:matrix(0.205570,-0.004523,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205570,-0.004523,0.005499,0.249940,0,0);}
.mc7_c00103{transform:matrix(0.205637,-0.003085,0.003750,0.249972,0,0);-ms-transform:matrix(0.205637,-0.003085,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205637,-0.003085,0.003750,0.249972,0,0);}
.m99_c00103{transform:matrix(0.206015,-0.004532,0.005499,0.249940,0,0);-ms-transform:matrix(0.206015,-0.004532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206015,-0.004532,0.005499,0.249940,0,0);}
.m67_c00103{transform:matrix(0.206950,-0.004553,0.005499,0.249940,0,0);-ms-transform:matrix(0.206950,-0.004553,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206950,-0.004553,0.005499,0.249940,0,0);}
.mcd_c00103{transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);-ms-transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);}
.m60_c00103{transform:matrix(0.207445,-0.004564,0.005499,0.249940,0,0);-ms-transform:matrix(0.207445,-0.004564,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207445,-0.004564,0.005499,0.249940,0,0);}
.m9a_c00103{transform:matrix(0.207550,-0.004566,0.005499,0.249940,0,0);-ms-transform:matrix(0.207550,-0.004566,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207550,-0.004566,0.005499,0.249940,0,0);}
.m74_c00103{transform:matrix(0.207705,-0.004570,0.005499,0.249940,0,0);-ms-transform:matrix(0.207705,-0.004570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207705,-0.004570,0.005499,0.249940,0,0);}
.m5b_c00103{transform:matrix(0.207715,-0.004570,0.005499,0.249940,0,0);-ms-transform:matrix(0.207715,-0.004570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207715,-0.004570,0.005499,0.249940,0,0);}
.m6a_c00103{transform:matrix(0.208060,-0.004577,0.005499,0.249940,0,0);-ms-transform:matrix(0.208060,-0.004577,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208060,-0.004577,0.005499,0.249940,0,0);}
.m4_c00103{transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);-ms-transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208285,-0.004582,0.005499,0.249940,0,0);}
.m2b_c00103{transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);-ms-transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);}
.m69_c00103{transform:matrix(0.208575,-0.004589,0.005499,0.249940,0,0);-ms-transform:matrix(0.208575,-0.004589,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208575,-0.004589,0.005499,0.249940,0,0);}
.mb6_c00103{transform:matrix(0.208966,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208966,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208966,-0.003134,0.003750,0.249972,0,0);}
.mf_c00103{transform:matrix(0.209074,-0.004600,0.005499,0.249940,0,0);-ms-transform:matrix(0.209074,-0.004600,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209074,-0.004600,0.005499,0.249940,0,0);}
.m32_c00103{transform:matrix(0.209319,-0.004605,0.005499,0.249940,0,0);-ms-transform:matrix(0.209319,-0.004605,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209319,-0.004605,0.005499,0.249940,0,0);}
.ma6_c00103{transform:matrix(0.209391,-0.003141,0.003750,0.249972,0,0);-ms-transform:matrix(0.209391,-0.003141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209391,-0.003141,0.003750,0.249972,0,0);}
.m7c_c00103{transform:matrix(0.209494,-0.004609,0.005499,0.249940,0,0);-ms-transform:matrix(0.209494,-0.004609,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209494,-0.004609,0.005499,0.249940,0,0);}
.m80_c00103{transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);-ms-transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211019,-0.004642,0.005499,0.249940,0,0);}
.m25_c00103{transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);-ms-transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);}
.ma4_c00103{transform:matrix(0.212434,-0.004674,0.005499,0.249940,0,0);-ms-transform:matrix(0.212434,-0.004674,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212434,-0.004674,0.005499,0.249940,0,0);}
.m59_c00103{transform:matrix(0.212953,-0.004685,0.005499,0.249940,0,0);-ms-transform:matrix(0.212953,-0.004685,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212953,-0.004685,0.005499,0.249940,0,0);}
.mc6_c00103{transform:matrix(0.213501,-0.003203,0.003750,0.249972,0,0);-ms-transform:matrix(0.213501,-0.003203,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213501,-0.003203,0.003750,0.249972,0,0);}
.m77_c00103{transform:matrix(0.214018,-0.004708,0.005499,0.249940,0,0);-ms-transform:matrix(0.214018,-0.004708,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214018,-0.004708,0.005499,0.249940,0,0);}
.m84_c00103{transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);-ms-transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);}
.m75_c00103{transform:matrix(0.214648,-0.004722,0.005499,0.249940,0,0);-ms-transform:matrix(0.214648,-0.004722,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214648,-0.004722,0.005499,0.249940,0,0);}
.m4e_c00103{transform:matrix(0.215918,-0.004750,0.005499,0.249940,0,0);-ms-transform:matrix(0.215918,-0.004750,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215918,-0.004750,0.005499,0.249940,0,0);}
.mb8_c00103{transform:matrix(0.216411,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216411,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216411,-0.003246,0.003750,0.249972,0,0);}
.m8f_c00103{transform:matrix(0.217357,-0.004782,0.005499,0.249940,0,0);-ms-transform:matrix(0.217357,-0.004782,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217357,-0.004782,0.005499,0.249940,0,0);}
.m82_c00103{transform:matrix(0.217727,-0.004790,0.005499,0.249940,0,0);-ms-transform:matrix(0.217727,-0.004790,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217727,-0.004790,0.005499,0.249940,0,0);}
.m19_c00103{transform:matrix(0.217817,-0.004792,0.005499,0.249940,0,0);-ms-transform:matrix(0.217817,-0.004792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217817,-0.004792,0.005499,0.249940,0,0);}
.m27_c00103{transform:matrix(0.218722,-0.004812,0.005499,0.249940,0,0);-ms-transform:matrix(0.218722,-0.004812,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218722,-0.004812,0.005499,0.249940,0,0);}
.mb2_c00103{transform:matrix(0.218805,-0.003282,0.003750,0.249972,0,0);-ms-transform:matrix(0.218805,-0.003282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218805,-0.003282,0.003750,0.249972,0,0);}
.m64_c00103{transform:matrix(0.219027,-0.004819,0.005499,0.249940,0,0);-ms-transform:matrix(0.219027,-0.004819,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219027,-0.004819,0.005499,0.249940,0,0);}
.m73_c00103{transform:matrix(0.219122,-0.004821,0.005499,0.249940,0,0);-ms-transform:matrix(0.219122,-0.004821,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219122,-0.004821,0.005499,0.249940,0,0);}
.m3_c00103{transform:matrix(0.219152,-0.004821,0.005499,0.249940,0,0);-ms-transform:matrix(0.219152,-0.004821,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219152,-0.004821,0.005499,0.249940,0,0);}
.m1_c00103{transform:matrix(0.219537,-0.004830,0.005499,0.249940,0,0);-ms-transform:matrix(0.219537,-0.004830,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219537,-0.004830,0.005499,0.249940,0,0);}
.m78_c00103{transform:matrix(0.219552,-0.004830,0.005499,0.249940,0,0);-ms-transform:matrix(0.219552,-0.004830,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219552,-0.004830,0.005499,0.249940,0,0);}
.mec_c00103{transform:matrix(0.219590,-0.003294,0.003750,0.249972,0,0);-ms-transform:matrix(0.219590,-0.003294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219590,-0.003294,0.003750,0.249972,0,0);}
.m8d_c00103{transform:matrix(0.219682,-0.004833,0.005499,0.249940,0,0);-ms-transform:matrix(0.219682,-0.004833,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219682,-0.004833,0.005499,0.249940,0,0);}
.m98_c00103{transform:matrix(0.220007,-0.004840,0.005499,0.249940,0,0);-ms-transform:matrix(0.220007,-0.004840,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220007,-0.004840,0.005499,0.249940,0,0);}
.m53_c00103{transform:matrix(0.220737,-0.004856,0.005499,0.249940,0,0);-ms-transform:matrix(0.220737,-0.004856,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220737,-0.004856,0.005499,0.249940,0,0);}
.m4a_c00103{transform:matrix(0.220892,-0.004860,0.005499,0.249940,0,0);-ms-transform:matrix(0.220892,-0.004860,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220892,-0.004860,0.005499,0.249940,0,0);}
.m83_c00103{transform:matrix(0.221181,-0.004866,0.005499,0.249940,0,0);-ms-transform:matrix(0.221181,-0.004866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221181,-0.004866,0.005499,0.249940,0,0);}
.mb9_c00103{transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);}
.ma_c00103{transform:matrix(0.223246,-0.004911,0.005499,0.249940,0,0);-ms-transform:matrix(0.223246,-0.004911,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223246,-0.004911,0.005499,0.249940,0,0);}
.md3_c00103{transform:matrix(0.223660,-0.003355,0.003750,0.249972,0,0);-ms-transform:matrix(0.223660,-0.003355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223660,-0.003355,0.003750,0.249972,0,0);}
.maf_c00103{transform:matrix(0.224710,-0.003371,0.003750,0.249972,0,0);-ms-transform:matrix(0.224710,-0.003371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224710,-0.003371,0.003750,0.249972,0,0);}
.m41_c00103{transform:matrix(0.225370,-0.004958,0.005499,0.249940,0,0);-ms-transform:matrix(0.225370,-0.004958,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225370,-0.004958,0.005499,0.249940,0,0);}
.m8c_c00103{transform:matrix(0.225515,-0.004961,0.005499,0.249940,0,0);-ms-transform:matrix(0.225515,-0.004961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225515,-0.004961,0.005499,0.249940,0,0);}
.ma0_c00103{transform:matrix(0.225555,-0.004962,0.005499,0.249940,0,0);-ms-transform:matrix(0.225555,-0.004962,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225555,-0.004962,0.005499,0.249940,0,0);}
.m91_c00103{transform:matrix(0.226050,-0.004973,0.005499,0.249940,0,0);-ms-transform:matrix(0.226050,-0.004973,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226050,-0.004973,0.005499,0.249940,0,0);}
.maa_c00103{transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);-ms-transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);}
.m23_c00103{transform:matrix(0.226775,-0.004989,0.005499,0.249940,0,0);-ms-transform:matrix(0.226775,-0.004989,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226775,-0.004989,0.005499,0.249940,0,0);}
.mae_c00103{transform:matrix(0.226784,-0.003402,0.003750,0.249972,0,0);-ms-transform:matrix(0.226784,-0.003402,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226784,-0.003402,0.003750,0.249972,0,0);}
.m46_c00103{transform:matrix(0.227445,-0.005004,0.005499,0.249940,0,0);-ms-transform:matrix(0.227445,-0.005004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227445,-0.005004,0.005499,0.249940,0,0);}
.mcb_c00103{transform:matrix(0.228159,-0.003422,0.003750,0.249972,0,0);-ms-transform:matrix(0.228159,-0.003422,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228159,-0.003422,0.003750,0.249972,0,0);}
.m92_c00103{transform:matrix(0.228870,-0.005035,0.005499,0.249940,0,0);-ms-transform:matrix(0.228870,-0.005035,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228870,-0.005035,0.005499,0.249940,0,0);}
.m90_c00103{transform:matrix(0.228915,-0.005036,0.005499,0.249940,0,0);-ms-transform:matrix(0.228915,-0.005036,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228915,-0.005036,0.005499,0.249940,0,0);}
.m96_c00103{transform:matrix(0.229085,-0.005040,0.005499,0.249940,0,0);-ms-transform:matrix(0.229085,-0.005040,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229085,-0.005040,0.005499,0.249940,0,0);}
.mbc_c00103{transform:matrix(0.229349,-0.003440,0.003750,0.249972,0,0);-ms-transform:matrix(0.229349,-0.003440,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229349,-0.003440,0.003750,0.249972,0,0);}
.mef_c00103{transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);-ms-transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);}
.m47_c00103{transform:matrix(0.231419,-0.005091,0.005499,0.249940,0,0);-ms-transform:matrix(0.231419,-0.005091,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231419,-0.005091,0.005499,0.249940,0,0);}
.m28_c00103{transform:matrix(0.231629,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231629,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231629,-0.005096,0.005499,0.249940,0,0);}
.m93_c00103{transform:matrix(0.231959,-0.005103,0.005499,0.249940,0,0);-ms-transform:matrix(0.231959,-0.005103,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231959,-0.005103,0.005499,0.249940,0,0);}
.md_c00103{transform:matrix(0.233419,-0.005135,0.005499,0.249940,0,0);-ms-transform:matrix(0.233419,-0.005135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233419,-0.005135,0.005499,0.249940,0,0);}
.m42_c00103{transform:matrix(0.233733,-0.005142,0.005499,0.249940,0,0);-ms-transform:matrix(0.233733,-0.005142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233733,-0.005142,0.005499,0.249940,0,0);}
.m4d_c00103{transform:matrix(0.235153,-0.005173,0.005499,0.249940,0,0);-ms-transform:matrix(0.235153,-0.005173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235153,-0.005173,0.005499,0.249940,0,0);}
.mc2_c00103{transform:matrix(0.236118,-0.003542,0.003750,0.249972,0,0);-ms-transform:matrix(0.236118,-0.003542,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236118,-0.003542,0.003750,0.249972,0,0);}
.ma8_c00103{transform:matrix(0.236448,-0.003547,0.003750,0.249972,0,0);-ms-transform:matrix(0.236448,-0.003547,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236448,-0.003547,0.003750,0.249972,0,0);}
.med_c00103{transform:matrix(0.238098,-0.003571,0.003750,0.249972,0,0);-ms-transform:matrix(0.238098,-0.003571,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238098,-0.003571,0.003750,0.249972,0,0);}
.me_c00103{transform:matrix(0.238492,-0.005247,0.005499,0.249940,0,0);-ms-transform:matrix(0.238492,-0.005247,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238492,-0.005247,0.005499,0.249940,0,0);}
.m65_c00103{transform:matrix(0.239517,-0.005269,0.005499,0.249940,0,0);-ms-transform:matrix(0.239517,-0.005269,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239517,-0.005269,0.005499,0.249940,0,0);}
.mda_c00103{transform:matrix(0.242298,-0.003634,0.003750,0.249972,0,0);-ms-transform:matrix(0.242298,-0.003634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242298,-0.003634,0.003750,0.249972,0,0);}
.m4b_c00103{transform:matrix(0.244556,-0.005380,0.005499,0.249940,0,0);-ms-transform:matrix(0.244556,-0.005380,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244556,-0.005380,0.005499,0.249940,0,0);}
.mb1_c00103{transform:matrix(0.246812,-0.003702,0.003750,0.249972,0,0);-ms-transform:matrix(0.246812,-0.003702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246812,-0.003702,0.003750,0.249972,0,0);}
.mb0_c00103{transform:matrix(0.248407,-0.003726,0.003750,0.249972,0,0);-ms-transform:matrix(0.248407,-0.003726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248407,-0.003726,0.003750,0.249972,0,0);}
.m50_c00103{transform:matrix(0.250879,-0.005519,0.005499,0.249940,0,0);-ms-transform:matrix(0.250879,-0.005519,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250879,-0.005519,0.005499,0.249940,0,0);}
.m89_c00103{transform:matrix(0.255203,-0.005614,0.005499,0.249940,0,0);-ms-transform:matrix(0.255203,-0.005614,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255203,-0.005614,0.005499,0.249940,0,0);}
.md9_c00103{transform:matrix(0.259726,-0.003896,0.003750,0.249972,0,0);-ms-transform:matrix(0.259726,-0.003896,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259726,-0.003896,0.003750,0.249972,0,0);}
.m49_c00103{transform:matrix(0.266051,-0.005853,0.005499,0.249940,0,0);-ms-transform:matrix(0.266051,-0.005853,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266051,-0.005853,0.005499,0.249940,0,0);}
.m88_c00103{transform:matrix(0.305406,-0.006719,0.005499,0.249940,0,0);-ms-transform:matrix(0.305406,-0.006719,0.005499,0.249940,0,0);-webkit-transform:matrix(0.305406,-0.006719,0.005499,0.249940,0,0);}
.m51_c00103{transform:matrix(0.338638,-0.007450,0.005499,0.249940,0,0);-ms-transform:matrix(0.338638,-0.007450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.338638,-0.007450,0.005499,0.249940,0,0);}
.m16_c00103{transform:matrix(0.351090,-0.007724,0.005499,0.249940,0,0);-ms-transform:matrix(0.351090,-0.007724,0.005499,0.249940,0,0);-webkit-transform:matrix(0.351090,-0.007724,0.005499,0.249940,0,0);}
.m15_c00103{transform:matrix(0.356114,-0.007835,0.005499,0.249940,0,0);-ms-transform:matrix(0.356114,-0.007835,0.005499,0.249940,0,0);-webkit-transform:matrix(0.356114,-0.007835,0.005499,0.249940,0,0);}
.m2e_c00103{transform:matrix(0.370905,-0.008160,0.005499,0.249940,0,0);-ms-transform:matrix(0.370905,-0.008160,0.005499,0.249940,0,0);-webkit-transform:matrix(0.370905,-0.008160,0.005499,0.249940,0,0);}
.m2f_c00103{transform:matrix(0.381983,-0.008404,0.005499,0.249940,0,0);-ms-transform:matrix(0.381983,-0.008404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.381983,-0.008404,0.005499,0.249940,0,0);}
.mf4_c00103{transform:matrix(0.614200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614200,0.000000,0.000000,0.250000,0,0);}
.mf5_c00103{transform:matrix(1.654695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.654695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.654695,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
.fc0_c00103{color:transparent;}
.fs13_c00103{font-size:22.050000px;}
.fs7_c00103{font-size:57.763974px;}
.fs6_c00103{font-size:59.864482px;}
.fsd_c00103{font-size:60.906851px;}
.fs5_c00103{font-size:60.914736px;}
.fs12_c00103{font-size:61.956969px;}
.fs9_c00103{font-size:61.964990px;}
.fse_c00103{font-size:63.007087px;}
.fs1_c00103{font-size:63.015244px;}
.fs0_c00103{font-size:64.050000px;}
.fsa_c00103{font-size:64.065498px;}
.fsf_c00103{font-size:65.107323px;}
.fs2_c00103{font-size:66.166006px;}
.fsc_c00103{font-size:67.216260px;}
.fs4_c00103{font-size:68.266515px;}
.fs10_c00103{font-size:69.307796px;}
.fs8_c00103{font-size:69.316769px;}
.fs11_c00103{font-size:70.357914px;}
.fsb_c00103{font-size:70.367023px;}
.fs3_c00103{font-size:71.417277px;}
.y0_c00103{bottom:0.000000px;}
.yf2_c00103{bottom:31.580520px;}
.yf3_c00103{bottom:33.659318px;}
.yf4_c00103{bottom:33.951600px;}
.yf5_c00103{bottom:34.462185px;}
.yf6_c00103{bottom:36.222323px;}
.yf7_c00103{bottom:36.615983px;}
.yec_c00103{bottom:49.401045px;}
.yed_c00103{bottom:50.192228px;}
.yee_c00103{bottom:52.103348px;}
.yef_c00103{bottom:52.556438px;}
.yf0_c00103{bottom:54.222188px;}
.yf1_c00103{bottom:55.555230px;}
.ye2_c00103{bottom:66.951495px;}
.ye3_c00103{bottom:67.388078px;}
.ye4_c00103{bottom:67.703948px;}
.ye5_c00103{bottom:68.176890px;}
.ye6_c00103{bottom:68.656688px;}
.ye7_c00103{bottom:68.953155px;}
.ye8_c00103{bottom:69.560565px;}
.ye9_c00103{bottom:70.552433px;}
.yea_c00103{bottom:71.144220px;}
.yeb_c00103{bottom:71.612618px;}
.yda_c00103{bottom:84.503663px;}
.ydb_c00103{bottom:85.394318px;}
.ydc_c00103{bottom:86.455268px;}
.ydd_c00103{bottom:86.905238px;}
.yde_c00103{bottom:87.394328px;}
.ydf_c00103{bottom:87.700568px;}
.ye0_c00103{bottom:88.845818px;}
.ye1_c00103{bottom:89.040428px;}
.yd1_c00103{bottom:101.244825px;}
.yd2_c00103{bottom:101.862623px;}
.yd3_c00103{bottom:102.274575px;}
.yd4_c00103{bottom:103.133205px;}
.yd5_c00103{bottom:103.602308px;}
.yd6_c00103{bottom:105.086153px;}
.yd7_c00103{bottom:105.904335px;}
.yd8_c00103{bottom:106.544333px;}
.yd9_c00103{bottom:106.987838px;}
.yc7_c00103{bottom:119.067390px;}
.yc8_c00103{bottom:119.540760px;}
.yc9_c00103{bottom:120.132713px;}
.yca_c00103{bottom:120.996578px;}
.ycb_c00103{bottom:121.254218px;}
.ycc_c00103{bottom:121.666823px;}
.ycd_c00103{bottom:122.314710px;}
.yce_c00103{bottom:122.644215px;}
.ycf_c00103{bottom:123.588240px;}
.yd0_c00103{bottom:124.026690px;}
.ybf_c00103{bottom:135.808643px;}
.yc0_c00103{bottom:136.727340px;}
.yc1_c00103{bottom:137.050328px;}
.yc2_c00103{bottom:138.284393px;}
.yc3_c00103{bottom:138.648848px;}
.yc4_c00103{bottom:139.373550px;}
.yc5_c00103{bottom:140.829683px;}
.yc6_c00103{bottom:141.283005px;}
.yb5_c00103{bottom:154.711350px;}
.yb6_c00103{bottom:155.737418px;}
.yb7_c00103{bottom:156.127965px;}
.yb8_c00103{bottom:157.102583px;}
.yb9_c00103{bottom:157.353803px;}
.yba_c00103{bottom:157.768785px;}
.ybb_c00103{bottom:159.145845px;}
.ybc_c00103{bottom:159.403920px;}
.ybd_c00103{bottom:159.736545px;}
.ybe_c00103{bottom:160.221090px;}
.yb0_c00103{bottom:171.455858px;}
.yb1_c00103{bottom:173.343968px;}
.yb2_c00103{bottom:175.715505px;}
.yb3_c00103{bottom:176.311845px;}
.yb4_c00103{bottom:177.440888px;}
.yf8_c00103{bottom:184.950000px;}
.ya7_c00103{bottom:190.891500px;}
.ya8_c00103{bottom:191.220788px;}
.ya9_c00103{bottom:192.051308px;}
.yaa_c00103{bottom:192.945098px;}
.yab_c00103{bottom:193.152908px;}
.yac_c00103{bottom:193.537433px;}
.yad_c00103{bottom:193.764277px;}
.yae_c00103{bottom:194.674583px;}
.yaf_c00103{bottom:195.096953px;}
.y9f_c00103{bottom:207.807303px;}
.ya0_c00103{bottom:208.608174px;}
.ya1_c00103{bottom:208.994190px;}
.ya2_c00103{bottom:209.257587px;}
.ya3_c00103{bottom:210.346914px;}
.ya4_c00103{bottom:210.695589px;}
.ya5_c00103{bottom:211.792080px;}
.ya6_c00103{bottom:212.069343px;}
.y97_c00103{bottom:226.439982px;}
.y98_c00103{bottom:226.796580px;}
.y99_c00103{bottom:227.519898px;}
.y9a_c00103{bottom:227.746731px;}
.y9b_c00103{bottom:228.284436px;}
.y9c_c00103{bottom:229.094271px;}
.y9d_c00103{bottom:229.326753px;}
.y9e_c00103{bottom:229.952904px;}
.y8e_c00103{bottom:243.725556px;}
.y8f_c00103{bottom:244.178067px;}
.y90_c00103{bottom:244.553805px;}
.y91_c00103{bottom:245.142885px;}
.y92_c00103{bottom:245.471112px;}
.y93_c00103{bottom:246.154155px;}
.y94_c00103{bottom:246.286959px;}
.y95_c00103{bottom:246.896250px;}
.y96_c00103{bottom:247.149867px;}
.y85_c00103{bottom:260.741526px;}
.y86_c00103{bottom:261.335238px;}
.y87_c00103{bottom:262.113477px;}
.y88_c00103{bottom:262.438515px;}
.y89_c00103{bottom:263.144409px;}
.y8a_c00103{bottom:263.417442px;}
.y8b_c00103{bottom:264.074700px;}
.y8c_c00103{bottom:264.369624px;}
.y8d_c00103{bottom:264.709338px;}
.y7b_c00103{bottom:278.026485px;}
.y7c_c00103{bottom:278.296464px;}
.y7d_c00103{bottom:278.590203px;}
.y7e_c00103{bottom:279.162291px;}
.y7f_c00103{bottom:279.331764px;}
.y80_c00103{bottom:280.054404px;}
.y81_c00103{bottom:280.458174px;}
.y82_c00103{bottom:280.624014px;}
.y83_c00103{bottom:281.507244px;}
.y84_c00103{bottom:281.880501px;}
.y75_c00103{bottom:295.311108px;}
.y76_c00103{bottom:296.302611px;}
.y77_c00103{bottom:297.027612px;}
.y78_c00103{bottom:297.745581px;}
.y79_c00103{bottom:297.981096px;}
.y7a_c00103{bottom:299.212389px;}
.y6d_c00103{bottom:312.324867px;}
.y6e_c00103{bottom:312.839577px;}
.y6f_c00103{bottom:313.921623px;}
.y70_c00103{bottom:314.850048px;}
.y71_c00103{bottom:315.117621px;}
.y72_c00103{bottom:315.757707px;}
.y73_c00103{bottom:316.291170px;}
.y74_c00103{bottom:316.607805px;}
.y65_c00103{bottom:328.531284px;}
.y66_c00103{bottom:328.977060px;}
.y67_c00103{bottom:329.227473px;}
.y68_c00103{bottom:330.203958px;}
.y69_c00103{bottom:331.128513px;}
.y6a_c00103{bottom:332.231004px;}
.y6b_c00103{bottom:333.578562px;}
.y6c_c00103{bottom:334.169535px;}
.y5d_c00103{bottom:347.165238px;}
.y5e_c00103{bottom:347.576211px;}
.y5f_c00103{bottom:348.041871px;}
.y60_c00103{bottom:349.569330px;}
.y61_c00103{bottom:350.326590px;}
.y62_c00103{bottom:350.709231px;}
.y63_c00103{bottom:351.641640px;}
.y64_c00103{bottom:352.292052px;}
.y56_c00103{bottom:364.179345px;}
.y57_c00103{bottom:364.947096px;}
.y58_c00103{bottom:365.502738px;}
.y59_c00103{bottom:366.897621px;}
.y5a_c00103{bottom:367.499784px;}
.y5b_c00103{bottom:368.991933px;}
.y5c_c00103{bottom:369.294888px;}
.y50_c00103{bottom:382.002573px;}
.y51_c00103{bottom:383.359374px;}
.y52_c00103{bottom:384.161664px;}
.y53_c00103{bottom:385.433649px;}
.y54_c00103{bottom:385.635390px;}
.y55_c00103{bottom:385.991808px;}
.y49_c00103{bottom:400.096932px;}
.y4a_c00103{bottom:400.622937px;}
.y4b_c00103{bottom:400.954677px;}
.y4c_c00103{bottom:402.857517px;}
.y4d_c00103{bottom:403.394991px;}
.y4e_c00103{bottom:404.068374px;}
.y4f_c00103{bottom:404.754597px;}
.y43_c00103{bottom:416.841381px;}
.y44_c00103{bottom:417.534771px;}
.y45_c00103{bottom:418.591677px;}
.y46_c00103{bottom:418.980153px;}
.y47_c00103{bottom:419.841690px;}
.y48_c00103{bottom:420.255852px;}
.y3a_c00103{bottom:434.666382px;}
.y3b_c00103{bottom:435.278052px;}
.y3c_c00103{bottom:435.874380px;}
.y3d_c00103{bottom:436.094394px;}
.y3e_c00103{bottom:436.797138px;}
.y3f_c00103{bottom:436.997598px;}
.y40_c00103{bottom:437.322951px;}
.y41_c00103{bottom:437.563044px;}
.y42_c00103{bottom:438.111135px;}
.y31_c00103{bottom:451.951686px;}
.y32_c00103{bottom:452.704845px;}
.y33_c00103{bottom:453.150831px;}
.y34_c00103{bottom:453.913980px;}
.y35_c00103{bottom:454.647774px;}
.y36_c00103{bottom:454.912107px;}
.y37_c00103{bottom:455.241585px;}
.y38_c00103{bottom:455.525118px;}
.y39_c00103{bottom:455.841258px;}
.y2b_c00103{bottom:468.700527px;}
.y2c_c00103{bottom:469.139754px;}
.y2d_c00103{bottom:470.250681px;}
.y2e_c00103{bottom:470.590755px;}
.y2f_c00103{bottom:471.036828px;}
.y30_c00103{bottom:475.389072px;}
.y25_c00103{bottom:485.710830px;}
.y26_c00103{bottom:486.236568px;}
.y27_c00103{bottom:486.532386px;}
.y28_c00103{bottom:487.253376px;}
.y29_c00103{bottom:487.966014px;}
.y2a_c00103{bottom:489.346620px;}
.y1f_c00103{bottom:503.263953px;}
.y20_c00103{bottom:503.587752px;}
.y21_c00103{bottom:504.344910px;}
.y22_c00103{bottom:505.395492px;}
.y23_c00103{bottom:505.768269px;}
.y24_c00103{bottom:506.643474px;}
.y16_c00103{bottom:520.548768px;}
.y17_c00103{bottom:520.885677px;}
.y18_c00103{bottom:521.058630px;}
.y19_c00103{bottom:521.410314px;}
.y1a_c00103{bottom:522.392097px;}
.y1b_c00103{bottom:522.589698px;}
.y1c_c00103{bottom:522.990003px;}
.y1d_c00103{bottom:523.654887px;}
.y1e_c00103{bottom:524.060787px;}
.yf_c00103{bottom:536.218461px;}
.y10_c00103{bottom:537.235470px;}
.y11_c00103{bottom:537.676074px;}
.y12_c00103{bottom:539.053065px;}
.y13_c00103{bottom:539.512464px;}
.y14_c00103{bottom:541.490562px;}
.y15_c00103{bottom:542.001426px;}
.y8_c00103{bottom:553.501929px;}
.y9_c00103{bottom:555.095460px;}
.ya_c00103{bottom:555.856203px;}
.yb_c00103{bottom:556.933959px;}
.yc_c00103{bottom:557.204487px;}
.yd_c00103{bottom:557.930559px;}
.ye_c00103{bottom:559.355889px;}
.y2_c00103{bottom:571.056000px;}
.y3_c00103{bottom:571.675047px;}
.y4_c00103{bottom:572.886642px;}
.y5_c00103{bottom:574.490442px;}
.y6_c00103{bottom:574.928583px;}
.y7_c00103{bottom:575.607393px;}
.y1_c00103{bottom:591.846000px;}
.h15_c00103{height:22.050000px;}
.h9_c00103{height:57.763974px;}
.h8_c00103{height:59.864482px;}
.hf_c00103{height:60.906851px;}
.h7_c00103{height:60.914736px;}
.h14_c00103{height:61.956969px;}
.hb_c00103{height:61.964990px;}
.h10_c00103{height:63.007087px;}
.h3_c00103{height:63.015244px;}
.h2_c00103{height:64.050000px;}
.hc_c00103{height:64.065498px;}
.h11_c00103{height:65.107323px;}
.h4_c00103{height:66.166006px;}
.he_c00103{height:67.216260px;}
.h6_c00103{height:68.266515px;}
.h12_c00103{height:69.307796px;}
.ha_c00103{height:69.316769px;}
.h13_c00103{height:70.357914px;}
.hd_c00103{height:70.367023px;}
.h5_c00103{height:71.417277px;}
.h0_c00103{height:634.200000px;}
.h1_c00103{height:634.500000px;}
.w0_c00103{width:371.790000px;}
.w1_c00103{width:372.000000px;}
.x0_c00103{left:0.000000px;}
.x8_c00103{left:39.720357px;}
.x31_c00103{left:41.195688px;}
.x53_c00103{left:42.572850px;}
.x28_c00103{left:43.648782px;}
.x76_c00103{left:45.012045px;}
.x63_c00103{left:55.741500px;}
.x24_c00103{left:58.121829px;}
.x1a_c00103{left:62.025228px;}
.x4f_c00103{left:63.626013px;}
.x2_c00103{left:64.827000px;}
.x71_c00103{left:67.398142px;}
.x39_c00103{left:70.961181px;}
.x5c_c00103{left:72.790896px;}
.x1f_c00103{left:75.541308px;}
.x15_c00103{left:76.597104px;}
.x64_c00103{left:77.694000px;}
.x58_c00103{left:80.570952px;}
.x3e_c00103{left:81.985503px;}
.x43_c00103{left:85.621497px;}
.xf_c00103{left:88.967370px;}
.x6f_c00103{left:91.817895px;}
.x3_c00103{left:92.965500px;}
.x20_c00103{left:95.263344px;}
.x29_c00103{left:97.392720px;}
.x77_c00103{left:100.688212px;}
.x16_c00103{left:101.723526px;}
.x4c_c00103{left:108.190128px;}
.x10_c00103{left:109.949832px;}
.x3f_c00103{left:111.198417px;}
.x1b_c00103{left:112.471983px;}
.x25_c00103{left:116.163501px;}
.x6a_c00103{left:118.007842px;}
.x9_c00103{left:119.384355px;}
.x60_c00103{left:121.460904px;}
.x46_c00103{left:125.241408px;}
.x2a_c00103{left:129.261330px;}
.x50_c00103{left:130.267713px;}
.x3c_c00103{left:132.253947px;}
.x26_c00103{left:133.983813px;}
.x61_c00103{left:139.027110px;}
.x54_c00103{left:140.610609px;}
.x32_c00103{left:141.876831px;}
.x21_c00103{left:143.315736px;}
.x79_c00103{left:144.707122px;}
.x4_c00103{left:148.038000px;}
.x5d_c00103{left:151.928787px;}
.x72_c00103{left:153.022207px;}
.xa_c00103{left:157.442538px;}
.x33_c00103{left:160.267890px;}
.x44_c00103{left:162.009363px;}
.x55_c00103{left:163.843701px;}
.x78_c00103{left:167.017222px;}
.x6b_c00103{left:169.279260px;}
.x17_c00103{left:171.862368px;}
.x1_c00103{left:173.070000px;}
.x11_c00103{left:175.541784px;}
.x1c_c00103{left:182.463741px;}
.x2b_c00103{left:183.800433px;}
.x18_c00103{left:185.960343px;}
.x59_c00103{left:188.392179px;}
.x22_c00103{left:190.852062px;}
.x65_c00103{left:192.648000px;}
.x3a_c00103{left:195.112104px;}
.x12_c00103{left:197.446779px;}
.x45_c00103{left:199.841013px;}
.x4d_c00103{left:204.339912px;}
.x73_c00103{left:206.017725px;}
.x1d_c00103{left:207.321069px;}
.x49_c00103{left:209.214654px;}
.xb_c00103{left:211.342914px;}
.x19_c00103{left:214.592892px;}
.x40_c00103{left:216.298347px;}
.x34_c00103{left:218.882793px;}
.x5_c00103{left:220.938000px;}
.x74_c00103{left:222.483487px;}
.xc_c00103{left:224.867508px;}
.x47_c00103{left:226.588863px;}
.x68_c00103{left:228.474945px;}
.x51_c00103{left:229.963947px;}
.x70_c00103{left:231.123547px;}
.x66_c00103{left:232.137000px;}
.x56_c00103{left:233.784510px;}
.x62_c00103{left:234.882861px;}
.x2c_c00103{left:236.186640px;}
.x6_c00103{left:240.853500px;}
.x37_c00103{left:242.883243px;}
.x5a_c00103{left:245.361219px;}
.x67_c00103{left:247.260000px;}
.x2d_c00103{left:255.091473px;}
.x5b_c00103{left:256.445661px;}
.xd_c00103{left:261.145092px;}
.x35_c00103{left:262.633896px;}
.x5e_c00103{left:264.273504px;}
.x1e_c00103{left:265.657545px;}
.x38_c00103{left:270.508500px;}
.x7_c00103{left:271.708500px;}
.x7b_c00103{left:274.852867px;}
.x6c_c00103{left:276.890325px;}
.x2e_c00103{left:278.594598px;}
.x57_c00103{left:280.781793px;}
.x23_c00103{left:282.939252px;}
.x3d_c00103{left:284.005311px;}
.x6d_c00103{left:290.494515px;}
.x13_c00103{left:291.657858px;}
.x41_c00103{left:294.833028px;}
.x2f_c00103{left:298.849662px;}
.x3b_c00103{left:300.511377px;}
.x4e_c00103{left:302.118960px;}
.x69_c00103{left:303.491445px;}
.x4a_c00103{left:305.280438px;}
.x27_c00103{left:308.074329px;}
.x75_c00103{left:309.418987px;}
.x42_c00103{left:310.786584px;}
.x14_c00103{left:315.970386px;}
.x7a_c00103{left:318.563902px;}
.x30_c00103{left:321.473655px;}
.x48_c00103{left:323.503620px;}
.x4b_c00103{left:326.426205px;}
.x36_c00103{left:328.270317px;}
.xe_c00103{left:332.413227px;}
.x6e_c00103{left:333.469927px;}
.x5f_c00103{left:335.840745px;}
.x7c_c00103{left:338.316652px;}
.x52_c00103{left:339.364095px;}
.x7d_c00103{left:366.390000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.fs13_c00103{font-size:19.600000pt;}
.fs7_c00103{font-size:51.345754pt;}
.fs6_c00103{font-size:53.212873pt;}
.fsd_c00103{font-size:54.139423pt;}
.fs5_c00103{font-size:54.146432pt;}
.fs12_c00103{font-size:55.072861pt;}
.fs9_c00103{font-size:55.079991pt;}
.fse_c00103{font-size:56.006300pt;}
.fs1_c00103{font-size:56.013550pt;}
.fs0_c00103{font-size:56.933333pt;}
.fsa_c00103{font-size:56.947110pt;}
.fsf_c00103{font-size:57.873176pt;}
.fs2_c00103{font-size:58.814228pt;}
.fsc_c00103{font-size:59.747787pt;}
.fs4_c00103{font-size:60.681346pt;}
.fs10_c00103{font-size:61.606930pt;}
.fs8_c00103{font-size:61.614905pt;}
.fs11_c00103{font-size:62.540368pt;}
.fsb_c00103{font-size:62.548465pt;}
.fs3_c00103{font-size:63.482024pt;}
.y0_c00103{bottom:0.000000pt;}
.yf2_c00103{bottom:28.071573pt;}
.yf3_c00103{bottom:29.919393pt;}
.yf4_c00103{bottom:30.179200pt;}
.yf5_c00103{bottom:30.633053pt;}
.yf6_c00103{bottom:32.197620pt;}
.yf7_c00103{bottom:32.547540pt;}
.yec_c00103{bottom:43.912040pt;}
.yed_c00103{bottom:44.615313pt;}
.yee_c00103{bottom:46.314087pt;}
.yef_c00103{bottom:46.716833pt;}
.yf0_c00103{bottom:48.197500pt;}
.yf1_c00103{bottom:49.382427pt;}
.ye2_c00103{bottom:59.512440pt;}
.ye3_c00103{bottom:59.900513pt;}
.ye4_c00103{bottom:60.181287pt;}
.ye5_c00103{bottom:60.601680pt;}
.ye6_c00103{bottom:61.028167pt;}
.ye7_c00103{bottom:61.291693pt;}
.ye8_c00103{bottom:61.831613pt;}
.ye9_c00103{bottom:62.713273pt;}
.yea_c00103{bottom:63.239307pt;}
.yeb_c00103{bottom:63.655660pt;}
.yda_c00103{bottom:75.114367pt;}
.ydb_c00103{bottom:75.906060pt;}
.ydc_c00103{bottom:76.849127pt;}
.ydd_c00103{bottom:77.249100pt;}
.yde_c00103{bottom:77.683847pt;}
.ydf_c00103{bottom:77.956060pt;}
.ye0_c00103{bottom:78.974060pt;}
.ye1_c00103{bottom:79.147047pt;}
.yd1_c00103{bottom:89.995400pt;}
.yd2_c00103{bottom:90.544553pt;}
.yd3_c00103{bottom:90.910733pt;}
.yd4_c00103{bottom:91.673960pt;}
.yd5_c00103{bottom:92.090940pt;}
.yd6_c00103{bottom:93.409913pt;}
.yd7_c00103{bottom:94.137187pt;}
.yd8_c00103{bottom:94.706073pt;}
.yd9_c00103{bottom:95.100300pt;}
.yc7_c00103{bottom:105.837680pt;}
.yc8_c00103{bottom:106.258453pt;}
.yc9_c00103{bottom:106.784633pt;}
.yca_c00103{bottom:107.552513pt;}
.ycb_c00103{bottom:107.781527pt;}
.ycc_c00103{bottom:108.148287pt;}
.ycd_c00103{bottom:108.724187pt;}
.yce_c00103{bottom:109.017080pt;}
.ycf_c00103{bottom:109.856213pt;}
.yd0_c00103{bottom:110.245947pt;}
.ybf_c00103{bottom:120.718793pt;}
.yc0_c00103{bottom:121.535413pt;}
.yc1_c00103{bottom:121.822513pt;}
.yc2_c00103{bottom:122.919460pt;}
.yc3_c00103{bottom:123.243420pt;}
.yc4_c00103{bottom:123.887600pt;}
.yc5_c00103{bottom:125.181940pt;}
.yc6_c00103{bottom:125.584893pt;}
.yb5_c00103{bottom:137.521200pt;}
.yb6_c00103{bottom:138.433260pt;}
.yb7_c00103{bottom:138.780413pt;}
.yb8_c00103{bottom:139.646740pt;}
.yb9_c00103{bottom:139.870047pt;}
.yba_c00103{bottom:140.238920pt;}
.ybb_c00103{bottom:141.462973pt;}
.ybc_c00103{bottom:141.692373pt;}
.ybd_c00103{bottom:141.988040pt;}
.ybe_c00103{bottom:142.418747pt;}
.yb0_c00103{bottom:152.405207pt;}
.yb1_c00103{bottom:154.083527pt;}
.yb2_c00103{bottom:156.191560pt;}
.yb3_c00103{bottom:156.721640pt;}
.yb4_c00103{bottom:157.725233pt;}
.yf8_c00103{bottom:164.400000pt;}
.ya7_c00103{bottom:169.681333pt;}
.ya8_c00103{bottom:169.974033pt;}
.ya9_c00103{bottom:170.712273pt;}
.yaa_c00103{bottom:171.506753pt;}
.yab_c00103{bottom:171.691473pt;}
.yac_c00103{bottom:172.033273pt;}
.yad_c00103{bottom:172.234913pt;}
.yae_c00103{bottom:173.044073pt;}
.yaf_c00103{bottom:173.419513pt;}
.y9f_c00103{bottom:184.717603pt;}
.ya0_c00103{bottom:185.429488pt;}
.ya1_c00103{bottom:185.772613pt;}
.ya2_c00103{bottom:186.006744pt;}
.ya3_c00103{bottom:186.975035pt;}
.ya4_c00103{bottom:187.284968pt;}
.ya5_c00103{bottom:188.259627pt;}
.ya6_c00103{bottom:188.506083pt;}
.y97_c00103{bottom:201.279984pt;}
.y98_c00103{bottom:201.596960pt;}
.y99_c00103{bottom:202.239909pt;}
.y9a_c00103{bottom:202.441539pt;}
.y9b_c00103{bottom:202.919499pt;}
.y9c_c00103{bottom:203.639352pt;}
.y9d_c00103{bottom:203.846003pt;}
.y9e_c00103{bottom:204.402581pt;}
.y8e_c00103{bottom:216.644939pt;}
.y8f_c00103{bottom:217.047171pt;}
.y90_c00103{bottom:217.381160pt;}
.y91_c00103{bottom:217.904787pt;}
.y92_c00103{bottom:218.196544pt;}
.y93_c00103{bottom:218.803693pt;}
.y94_c00103{bottom:218.921741pt;}
.y95_c00103{bottom:219.463333pt;}
.y96_c00103{bottom:219.688771pt;}
.y85_c00103{bottom:231.770245pt;}
.y86_c00103{bottom:232.297989pt;}
.y87_c00103{bottom:232.989757pt;}
.y88_c00103{bottom:233.278680pt;}
.y89_c00103{bottom:233.906141pt;}
.y8a_c00103{bottom:234.148837pt;}
.y8b_c00103{bottom:234.733067pt;}
.y8c_c00103{bottom:234.995221pt;}
.y8d_c00103{bottom:235.297189pt;}
.y7b_c00103{bottom:247.134653pt;}
.y7c_c00103{bottom:247.374635pt;}
.y7d_c00103{bottom:247.635736pt;}
.y7e_c00103{bottom:248.144259pt;}
.y7f_c00103{bottom:248.294901pt;}
.y80_c00103{bottom:248.937248pt;}
.y81_c00103{bottom:249.296155pt;}
.y82_c00103{bottom:249.443568pt;}
.y83_c00103{bottom:250.228661pt;}
.y84_c00103{bottom:250.560445pt;}
.y75_c00103{bottom:262.498763pt;}
.y76_c00103{bottom:263.380099pt;}
.y77_c00103{bottom:264.024544pt;}
.y78_c00103{bottom:264.662739pt;}
.y79_c00103{bottom:264.872085pt;}
.y7a_c00103{bottom:265.966568pt;}
.y6d_c00103{bottom:277.622104pt;}
.y6e_c00103{bottom:278.079624pt;}
.y6f_c00103{bottom:279.041443pt;}
.y70_c00103{bottom:279.866709pt;}
.y71_c00103{bottom:280.104552pt;}
.y72_c00103{bottom:280.673517pt;}
.y73_c00103{bottom:281.147707pt;}
.y74_c00103{bottom:281.429160pt;}
.y65_c00103{bottom:292.027808pt;}
.y66_c00103{bottom:292.424053pt;}
.y67_c00103{bottom:292.646643pt;}
.y68_c00103{bottom:293.514629pt;}
.y69_c00103{bottom:294.336456pt;}
.y6a_c00103{bottom:295.316448pt;}
.y6b_c00103{bottom:296.514277pt;}
.y6c_c00103{bottom:297.039587pt;}
.y5d_c00103{bottom:308.591323pt;}
.y5e_c00103{bottom:308.956632pt;}
.y5f_c00103{bottom:309.370552pt;}
.y60_c00103{bottom:310.728293pt;}
.y61_c00103{bottom:311.401413pt;}
.y62_c00103{bottom:311.741539pt;}
.y63_c00103{bottom:312.570347pt;}
.y64_c00103{bottom:313.148491pt;}
.y56_c00103{bottom:323.714973pt;}
.y57_c00103{bottom:324.397419pt;}
.y58_c00103{bottom:324.891323pt;}
.y59_c00103{bottom:326.131219pt;}
.y5a_c00103{bottom:326.666475pt;}
.y5b_c00103{bottom:327.992829pt;}
.y5c_c00103{bottom:328.262123pt;}
.y50_c00103{bottom:339.557843pt;}
.y51_c00103{bottom:340.763888pt;}
.y52_c00103{bottom:341.477035pt;}
.y53_c00103{bottom:342.607688pt;}
.y54_c00103{bottom:342.787013pt;}
.y55_c00103{bottom:343.103829pt;}
.y49_c00103{bottom:355.641717pt;}
.y4a_c00103{bottom:356.109277pt;}
.y4b_c00103{bottom:356.404157pt;}
.y4c_c00103{bottom:358.095571pt;}
.y4d_c00103{bottom:358.573325pt;}
.y4e_c00103{bottom:359.171888pt;}
.y4f_c00103{bottom:359.781864pt;}
.y43_c00103{bottom:370.525672pt;}
.y44_c00103{bottom:371.142019pt;}
.y45_c00103{bottom:372.081491pt;}
.y46_c00103{bottom:372.426803pt;}
.y47_c00103{bottom:373.192613pt;}
.y48_c00103{bottom:373.560757pt;}
.y3a_c00103{bottom:386.370117pt;}
.y3b_c00103{bottom:386.913824pt;}
.y3c_c00103{bottom:387.443893pt;}
.y3d_c00103{bottom:387.639461pt;}
.y3e_c00103{bottom:388.264123pt;}
.y3f_c00103{bottom:388.442309pt;}
.y40_c00103{bottom:388.731512pt;}
.y41_c00103{bottom:388.944928pt;}
.y42_c00103{bottom:389.432120pt;}
.y31_c00103{bottom:401.734832pt;}
.y32_c00103{bottom:402.404307pt;}
.y33_c00103{bottom:402.800739pt;}
.y34_c00103{bottom:403.479093pt;}
.y35_c00103{bottom:404.131355pt;}
.y36_c00103{bottom:404.366317pt;}
.y37_c00103{bottom:404.659187pt;}
.y38_c00103{bottom:404.911216pt;}
.y39_c00103{bottom:405.192229pt;}
.y2b_c00103{bottom:416.622691pt;}
.y2c_c00103{bottom:417.013115pt;}
.y2d_c00103{bottom:418.000605pt;}
.y2e_c00103{bottom:418.302893pt;}
.y2f_c00103{bottom:418.699403pt;}
.y30_c00103{bottom:422.568064pt;}
.y25_c00103{bottom:431.742960pt;}
.y26_c00103{bottom:432.210283pt;}
.y27_c00103{bottom:432.473232pt;}
.y28_c00103{bottom:433.114112pt;}
.y29_c00103{bottom:433.747568pt;}
.y2a_c00103{bottom:434.974773pt;}
.y1f_c00103{bottom:447.345736pt;}
.y20_c00103{bottom:447.633557pt;}
.y21_c00103{bottom:448.306587pt;}
.y22_c00103{bottom:449.240437pt;}
.y23_c00103{bottom:449.571795pt;}
.y24_c00103{bottom:450.349755pt;}
.y16_c00103{bottom:462.710016pt;}
.y17_c00103{bottom:463.009491pt;}
.y18_c00103{bottom:463.163227pt;}
.y19_c00103{bottom:463.475835pt;}
.y1a_c00103{bottom:464.348531pt;}
.y1b_c00103{bottom:464.524176pt;}
.y1c_c00103{bottom:464.880003pt;}
.y1d_c00103{bottom:465.471011pt;}
.y1e_c00103{bottom:465.831811pt;}
.yf_c00103{bottom:476.638632pt;}
.y10_c00103{bottom:477.542640pt;}
.y11_c00103{bottom:477.934288pt;}
.y12_c00103{bottom:479.158280pt;}
.y13_c00103{bottom:479.566635pt;}
.y14_c00103{bottom:481.324944pt;}
.y15_c00103{bottom:481.779045pt;}
.y8_c00103{bottom:492.001715pt;}
.y9_c00103{bottom:493.418187pt;}
.ya_c00103{bottom:494.094403pt;}
.yb_c00103{bottom:495.052408pt;}
.yc_c00103{bottom:495.292877pt;}
.yd_c00103{bottom:495.938275pt;}
.ye_c00103{bottom:497.205235pt;}
.y2_c00103{bottom:507.605333pt;}
.y3_c00103{bottom:508.155597pt;}
.y4_c00103{bottom:509.232571pt;}
.y5_c00103{bottom:510.658171pt;}
.y6_c00103{bottom:511.047629pt;}
.y7_c00103{bottom:511.651016pt;}
.y1_c00103{bottom:526.085333pt;}
.h15_c00103{height:19.600000pt;}
.h9_c00103{height:51.345754pt;}
.h8_c00103{height:53.212873pt;}
.hf_c00103{height:54.139423pt;}
.h7_c00103{height:54.146432pt;}
.h14_c00103{height:55.072861pt;}
.hb_c00103{height:55.079991pt;}
.h10_c00103{height:56.006300pt;}
.h3_c00103{height:56.013550pt;}
.h2_c00103{height:56.933333pt;}
.hc_c00103{height:56.947110pt;}
.h11_c00103{height:57.873176pt;}
.h4_c00103{height:58.814228pt;}
.he_c00103{height:59.747787pt;}
.h6_c00103{height:60.681346pt;}
.h12_c00103{height:61.606930pt;}
.ha_c00103{height:61.614905pt;}
.h13_c00103{height:62.540368pt;}
.hd_c00103{height:62.548465pt;}
.h5_c00103{height:63.482024pt;}
.h0_c00103{height:563.733333pt;}
.h1_c00103{height:564.000000pt;}
.w0_c00103{width:330.480000pt;}
.w1_c00103{width:330.666667pt;}
.x0_c00103{left:0.000000pt;}
.x8_c00103{left:35.306984pt;}
.x31_c00103{left:36.618389pt;}
.x53_c00103{left:37.842533pt;}
.x28_c00103{left:38.798917pt;}
.x76_c00103{left:40.010707pt;}
.x63_c00103{left:49.548000pt;}
.x24_c00103{left:51.663848pt;}
.x1a_c00103{left:55.133536pt;}
.x4f_c00103{left:56.556456pt;}
.x2_c00103{left:57.624000pt;}
.x71_c00103{left:59.909460pt;}
.x39_c00103{left:63.076605pt;}
.x5c_c00103{left:64.703019pt;}
.x1f_c00103{left:67.147829pt;}
.x15_c00103{left:68.086315pt;}
.x64_c00103{left:69.061333pt;}
.x58_c00103{left:71.618624pt;}
.x3e_c00103{left:72.876003pt;}
.x43_c00103{left:76.107997pt;}
.xf_c00103{left:79.082107pt;}
.x6f_c00103{left:81.615907pt;}
.x3_c00103{left:82.636000pt;}
.x20_c00103{left:84.678528pt;}
.x29_c00103{left:86.571307pt;}
.x77_c00103{left:89.500633pt;}
.x16_c00103{left:90.420912pt;}
.x4c_c00103{left:96.169003pt;}
.x10_c00103{left:97.733184pt;}
.x3f_c00103{left:98.843037pt;}
.x1b_c00103{left:99.975096pt;}
.x25_c00103{left:103.256445pt;}
.x6a_c00103{left:104.895860pt;}
.x9_c00103{left:106.119427pt;}
.x60_c00103{left:107.965248pt;}
.x46_c00103{left:111.325696pt;}
.x2a_c00103{left:114.898960pt;}
.x50_c00103{left:115.793523pt;}
.x3c_c00103{left:117.559064pt;}
.x26_c00103{left:119.096723pt;}
.x61_c00103{left:123.579653pt;}
.x54_c00103{left:124.987208pt;}
.x32_c00103{left:126.112739pt;}
.x21_c00103{left:127.391765pt;}
.x79_c00103{left:128.628553pt;}
.x4_c00103{left:131.589333pt;}
.x5d_c00103{left:135.047811pt;}
.x72_c00103{left:136.019740pt;}
.xa_c00103{left:139.948923pt;}
.x33_c00103{left:142.460347pt;}
.x44_c00103{left:144.008323pt;}
.x55_c00103{left:145.638845pt;}
.x78_c00103{left:148.459753pt;}
.x6b_c00103{left:150.470453pt;}
.x17_c00103{left:152.766549pt;}
.x1_c00103{left:153.840000pt;}
.x11_c00103{left:156.037141pt;}
.x1c_c00103{left:162.189992pt;}
.x2b_c00103{left:163.378163pt;}
.x18_c00103{left:165.298083pt;}
.x59_c00103{left:167.459715pt;}
.x22_c00103{left:169.646277pt;}
.x65_c00103{left:171.242667pt;}
.x3a_c00103{left:173.432981pt;}
.x12_c00103{left:175.508248pt;}
.x45_c00103{left:177.636456pt;}
.x4d_c00103{left:181.635477pt;}
.x73_c00103{left:183.126867pt;}
.x1d_c00103{left:184.285395pt;}
.x49_c00103{left:185.968581pt;}
.xb_c00103{left:187.860368pt;}
.x19_c00103{left:190.749237pt;}
.x40_c00103{left:192.265197pt;}
.x34_c00103{left:194.562483pt;}
.x5_c00103{left:196.389333pt;}
.x74_c00103{left:197.763100pt;}
.xc_c00103{left:199.882229pt;}
.x47_c00103{left:201.412323pt;}
.x68_c00103{left:203.088840pt;}
.x51_c00103{left:204.412397pt;}
.x70_c00103{left:205.443153pt;}
.x66_c00103{left:206.344000pt;}
.x56_c00103{left:207.808453pt;}
.x62_c00103{left:208.784765pt;}
.x2c_c00103{left:209.943680pt;}
.x6_c00103{left:214.092000pt;}
.x37_c00103{left:215.896216pt;}
.x5a_c00103{left:218.098861pt;}
.x67_c00103{left:219.786667pt;}
.x2d_c00103{left:226.747976pt;}
.x5b_c00103{left:227.951699pt;}
.xd_c00103{left:232.128971pt;}
.x35_c00103{left:233.452352pt;}
.x5e_c00103{left:234.909781pt;}
.x1e_c00103{left:236.140040pt;}
.x38_c00103{left:240.452000pt;}
.x7_c00103{left:241.518667pt;}
.x7b_c00103{left:244.313660pt;}
.x6c_c00103{left:246.124733pt;}
.x2e_c00103{left:247.639643pt;}
.x57_c00103{left:249.583816pt;}
.x23_c00103{left:251.501557pt;}
.x3d_c00103{left:252.449165pt;}
.x6d_c00103{left:258.217347pt;}
.x13_c00103{left:259.251429pt;}
.x41_c00103{left:262.073803pt;}
.x2f_c00103{left:265.644144pt;}
.x3b_c00103{left:267.121224pt;}
.x4e_c00103{left:268.550187pt;}
.x69_c00103{left:269.770173pt;}
.x4a_c00103{left:271.360389pt;}
.x27_c00103{left:273.843848pt;}
.x75_c00103{left:275.039100pt;}
.x42_c00103{left:276.254741pt;}
.x14_c00103{left:280.862565pt;}
.x7a_c00103{left:283.167913pt;}
.x30_c00103{left:285.754360pt;}
.x48_c00103{left:287.558773pt;}
.x4b_c00103{left:290.156627pt;}
.x36_c00103{left:291.795837pt;}
.xe_c00103{left:295.478424pt;}
.x6e_c00103{left:296.417713pt;}
.x5f_c00103{left:298.525107pt;}
.x7c_c00103{left:300.725913pt;}
.x52_c00103{left:301.656973pt;}
.x7d_c00103{left:325.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00104 {
    display:none;
  }
  .loading-indicator_c00104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00104 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00104 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00104" -> "#page-container .classname_c00104")
 */
.pf_c00104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00104 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00104 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00104 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00104 {overflow:visible;}
  }
}
.c_c00104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00104 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00104:after { /* webkit #35443 */
  content: '';
}
.t_c00104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00104 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00104 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00104 { /* info for Javascript */
  display:none;
}
.l_c00104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00104:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00104 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00104.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me1_c00104{transform:matrix(0.043869,0.000965,-0.005499,0.249940,0,0);-ms-transform:matrix(0.043869,0.000965,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.043869,0.000965,-0.005499,0.249940,0,0);}
.me3_c00104{transform:matrix(0.055767,0.001227,-0.005499,0.249940,0,0);-ms-transform:matrix(0.055767,0.001227,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.055767,0.001227,-0.005499,0.249940,0,0);}
.me0_c00104{transform:matrix(0.062780,0.001381,-0.005499,0.249940,0,0);-ms-transform:matrix(0.062780,0.001381,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.062780,0.001381,-0.005499,0.249940,0,0);}
.m7d_c00104{transform:matrix(0.084280,0.001601,-0.004749,0.249955,0,0);-ms-transform:matrix(0.084280,0.001601,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.084280,0.001601,-0.004749,0.249955,0,0);}
.mee_c00104{transform:matrix(0.093897,0.002066,-0.005499,0.249940,0,0);-ms-transform:matrix(0.093897,0.002066,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.093897,0.002066,-0.005499,0.249940,0,0);}
.mde_c00104{transform:matrix(0.097102,0.002136,-0.005499,0.249940,0,0);-ms-transform:matrix(0.097102,0.002136,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.097102,0.002136,-0.005499,0.249940,0,0);}
.me2_c00104{transform:matrix(0.098991,0.002178,-0.005499,0.249940,0,0);-ms-transform:matrix(0.098991,0.002178,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.098991,0.002178,-0.005499,0.249940,0,0);}
.me8_c00104{transform:matrix(0.125645,0.002764,-0.005499,0.249940,0,0);-ms-transform:matrix(0.125645,0.002764,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.125645,0.002764,-0.005499,0.249940,0,0);}
.m40_c00104{transform:matrix(0.128962,0.002450,-0.004749,0.249955,0,0);-ms-transform:matrix(0.128962,0.002450,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.128962,0.002450,-0.004749,0.249955,0,0);}
.mdf_c00104{transform:matrix(0.136862,0.003011,-0.005499,0.249940,0,0);-ms-transform:matrix(0.136862,0.003011,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.136862,0.003011,-0.005499,0.249940,0,0);}
.mc9_c00104{transform:matrix(0.140831,0.003098,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140831,0.003098,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140831,0.003098,-0.005499,0.249940,0,0);}
.m48_c00104{transform:matrix(0.141929,0.002697,-0.004749,0.249955,0,0);-ms-transform:matrix(0.141929,0.002697,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.141929,0.002697,-0.004749,0.249955,0,0);}
.m20_c00104{transform:matrix(0.143385,0.001721,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143385,0.001721,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143385,0.001721,-0.003000,0.249982,0,0);}
.m13_c00104{transform:matrix(0.144595,0.001735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144595,0.001735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144595,0.001735,-0.003000,0.249982,0,0);}
.ma1_c00104{transform:matrix(0.146359,0.002781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.146359,0.002781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.146359,0.002781,-0.004749,0.249955,0,0);}
.ma_c00104{transform:matrix(0.147303,0.002210,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147303,0.002210,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147303,0.002210,-0.003750,0.249972,0,0);}
.m78_c00104{transform:matrix(0.147333,0.002799,-0.004749,0.249955,0,0);-ms-transform:matrix(0.147333,0.002799,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.147333,0.002799,-0.004749,0.249955,0,0);}
.m54_c00104{transform:matrix(0.148158,0.002815,-0.004749,0.249955,0,0);-ms-transform:matrix(0.148158,0.002815,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.148158,0.002815,-0.004749,0.249955,0,0);}
.m9_c00104{transform:matrix(0.149043,0.002236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149043,0.002236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149043,0.002236,-0.003750,0.249972,0,0);}
.me6_c00104{transform:matrix(0.151343,0.003330,-0.005499,0.249940,0,0);-ms-transform:matrix(0.151343,0.003330,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.151343,0.003330,-0.005499,0.249940,0,0);}
.mf5_c00104{transform:matrix(0.151663,0.003337,-0.005499,0.249940,0,0);-ms-transform:matrix(0.151663,0.003337,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.151663,0.003337,-0.005499,0.249940,0,0);}
.m18_c00104{transform:matrix(0.152389,0.001829,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152389,0.001829,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152389,0.001829,-0.003000,0.249982,0,0);}
.m9d_c00104{transform:matrix(0.154617,0.002938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154617,0.002938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154617,0.002938,-0.004749,0.249955,0,0);}
.m15_c00104{transform:matrix(0.154904,0.001859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154904,0.001859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154904,0.001859,-0.003000,0.249982,0,0);}
.me7_c00104{transform:matrix(0.155222,0.003415,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155222,0.003415,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155222,0.003415,-0.005499,0.249940,0,0);}
.m0_c00104{transform:matrix(0.155385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155385,0.000000,0.000000,0.250000,0,0);}
.mf4_c00104{transform:matrix(0.155997,0.003432,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155997,0.003432,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155997,0.003432,-0.005499,0.249940,0,0);}
.md_c00104{transform:matrix(0.156629,0.001880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156629,0.001880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156629,0.001880,-0.003000,0.249982,0,0);}
.m6_c00104{transform:matrix(0.156812,0.002352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156812,0.002352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156812,0.002352,-0.003750,0.249972,0,0);}
.m93_c00104{transform:matrix(0.156892,0.002981,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156892,0.002981,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156892,0.002981,-0.004749,0.249955,0,0);}
.mf1_c00104{transform:matrix(0.157112,0.003456,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157112,0.003456,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157112,0.003456,-0.005499,0.249940,0,0);}
.m3_c00104{transform:matrix(0.158037,0.002371,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158037,0.002371,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158037,0.002371,-0.003750,0.249972,0,0);}
.mf9_c00104{transform:matrix(0.158697,0.003491,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158697,0.003491,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158697,0.003491,-0.005499,0.249940,0,0);}
.mf8_c00104{transform:matrix(0.158907,0.003496,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158907,0.003496,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158907,0.003496,-0.005499,0.249940,0,0);}
.mf7_c00104{transform:matrix(0.159047,0.003499,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159047,0.003499,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159047,0.003499,-0.005499,0.249940,0,0);}
.mec_c00104{transform:matrix(0.159141,0.003501,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159141,0.003501,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159141,0.003501,-0.005499,0.249940,0,0);}
.m42_c00104{transform:matrix(0.159636,0.003033,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159636,0.003033,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159636,0.003033,-0.004749,0.249955,0,0);}
.mc1_c00104{transform:matrix(0.161058,0.001933,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161058,0.001933,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161058,0.001933,-0.003000,0.249982,0,0);}
.m83_c00104{transform:matrix(0.161066,0.003060,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161066,0.003060,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161066,0.003060,-0.004749,0.249955,0,0);}
.m65_c00104{transform:matrix(0.161111,0.003061,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161111,0.003061,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161111,0.003061,-0.004749,0.249955,0,0);}
.m62_c00104{transform:matrix(0.161241,0.003064,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161241,0.003064,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161241,0.003064,-0.004749,0.249955,0,0);}
.me_c00104{transform:matrix(0.161313,0.001936,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161313,0.001936,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161313,0.001936,-0.003000,0.249982,0,0);}
.m14_c00104{transform:matrix(0.161543,0.001939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161543,0.001939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161543,0.001939,-0.003000,0.249982,0,0);}
.m84_c00104{transform:matrix(0.162531,0.003088,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162531,0.003088,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162531,0.003088,-0.004749,0.249955,0,0);}
.md6_c00104{transform:matrix(0.162626,0.003578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162626,0.003578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162626,0.003578,-0.005499,0.249940,0,0);}
.me4_c00104{transform:matrix(0.162691,0.003579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162691,0.003579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162691,0.003579,-0.005499,0.249940,0,0);}
.m10_c00104{transform:matrix(0.162978,0.001956,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162978,0.001956,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162978,0.001956,-0.003000,0.249982,0,0);}
.m3f_c00104{transform:matrix(0.163221,0.003101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163221,0.003101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163221,0.003101,-0.004749,0.249955,0,0);}
.m4_c00104{transform:matrix(0.163597,0.002454,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163597,0.002454,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163597,0.002454,-0.003750,0.249972,0,0);}
.m19_c00104{transform:matrix(0.163988,0.001968,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163988,0.001968,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163988,0.001968,-0.003000,0.249982,0,0);}
.m9e_c00104{transform:matrix(0.164150,0.003119,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164150,0.003119,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164150,0.003119,-0.004749,0.249955,0,0);}
.md0_c00104{transform:matrix(0.164205,0.003613,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164205,0.003613,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164205,0.003613,-0.005499,0.249940,0,0);}
.me5_c00104{transform:matrix(0.164405,0.003617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164405,0.003617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164405,0.003617,-0.005499,0.249940,0,0);}
.m9a_c00104{transform:matrix(0.165025,0.003135,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165025,0.003135,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165025,0.003135,-0.004749,0.249955,0,0);}
.m5e_c00104{transform:matrix(0.165360,0.003142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165360,0.003142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165360,0.003142,-0.004749,0.249955,0,0);}
.m32_c00104{transform:matrix(0.165483,0.001986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165483,0.001986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165483,0.001986,-0.003000,0.249982,0,0);}
.m41_c00104{transform:matrix(0.165665,0.003148,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165665,0.003148,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165665,0.003148,-0.004749,0.249955,0,0);}
.m1b_c00104{transform:matrix(0.165718,0.001989,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165718,0.001989,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165718,0.001989,-0.003000,0.249982,0,0);}
.ma2_c00104{transform:matrix(0.165990,0.003154,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165990,0.003154,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165990,0.003154,-0.004749,0.249955,0,0);}
.m1_c00104{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.mfb_c00104{transform:matrix(0.166895,0.003672,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166895,0.003672,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166895,0.003672,-0.005499,0.249940,0,0);}
.m2_c00104{transform:matrix(0.167331,0.002510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167331,0.002510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167331,0.002510,-0.003750,0.249972,0,0);}
.m57_c00104{transform:matrix(0.167360,0.003180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167360,0.003180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167360,0.003180,-0.004749,0.249955,0,0);}
.m74_c00104{transform:matrix(0.167410,0.003181,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167410,0.003181,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167410,0.003181,-0.004749,0.249955,0,0);}
.m25_c00104{transform:matrix(0.168608,0.002023,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168608,0.002023,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168608,0.002023,-0.003000,0.249982,0,0);}
.m73_c00104{transform:matrix(0.168980,0.003211,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168980,0.003211,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168980,0.003211,-0.004749,0.249955,0,0);}
.mb_c00104{transform:matrix(0.169418,0.002033,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169418,0.002033,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169418,0.002033,-0.003000,0.249982,0,0);}
.m22_c00104{transform:matrix(0.169703,0.002036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169703,0.002036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169703,0.002036,-0.003000,0.249982,0,0);}
.md7_c00104{transform:matrix(0.170134,0.003743,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170134,0.003743,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170134,0.003743,-0.005499,0.249940,0,0);}
.m11_c00104{transform:matrix(0.170423,0.002045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170423,0.002045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170423,0.002045,-0.003000,0.249982,0,0);}
.m9b_c00104{transform:matrix(0.170564,0.003241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170564,0.003241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170564,0.003241,-0.004749,0.249955,0,0);}
.m72_c00104{transform:matrix(0.170829,0.003246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170829,0.003246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170829,0.003246,-0.004749,0.249955,0,0);}
.m1e_c00104{transform:matrix(0.170883,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170883,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170883,0.002051,-0.003000,0.249982,0,0);}
.m90_c00104{transform:matrix(0.171139,0.003252,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171139,0.003252,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171139,0.003252,-0.004749,0.249955,0,0);}
.m70_c00104{transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);}
.m5c_c00104{transform:matrix(0.172419,0.003276,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172419,0.003276,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172419,0.003276,-0.004749,0.249955,0,0);}
.m5a_c00104{transform:matrix(0.172504,0.003278,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172504,0.003278,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172504,0.003278,-0.004749,0.249955,0,0);}
.m8_c00104{transform:matrix(0.172766,0.002591,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172766,0.002591,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172766,0.002591,-0.003750,0.249972,0,0);}
.m38_c00104{transform:matrix(0.172914,0.003285,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172914,0.003285,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172914,0.003285,-0.004749,0.249955,0,0);}
.m6e_c00104{transform:matrix(0.173714,0.003301,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173714,0.003301,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173714,0.003301,-0.004749,0.249955,0,0);}
.m4f_c00104{transform:matrix(0.173729,0.003301,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173729,0.003301,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173729,0.003301,-0.004749,0.249955,0,0);}
.m52_c00104{transform:matrix(0.174399,0.003314,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174399,0.003314,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174399,0.003314,-0.004749,0.249955,0,0);}
.m89_c00104{transform:matrix(0.174489,0.003315,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174489,0.003315,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174489,0.003315,-0.004749,0.249955,0,0);}
.m95_c00104{transform:matrix(0.174788,0.003321,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174788,0.003321,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174788,0.003321,-0.004749,0.249955,0,0);}
.m29_c00104{transform:matrix(0.175422,0.002105,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175422,0.002105,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175422,0.002105,-0.003000,0.249982,0,0);}
.m66_c00104{transform:matrix(0.175588,0.003336,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175588,0.003336,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175588,0.003336,-0.004749,0.249955,0,0);}
.mc3_c00104{transform:matrix(0.176947,0.002123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176947,0.002123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176947,0.002123,-0.003000,0.249982,0,0);}
.m8f_c00104{transform:matrix(0.177808,0.003378,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177808,0.003378,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177808,0.003378,-0.004749,0.249955,0,0);}
.m2f_c00104{transform:matrix(0.178157,0.002138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178157,0.002138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178157,0.002138,-0.003000,0.249982,0,0);}
.mae_c00104{transform:matrix(0.179048,0.003402,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179048,0.003402,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179048,0.003402,-0.004749,0.249955,0,0);}
.m35_c00104{transform:matrix(0.179052,0.002149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179052,0.002149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179052,0.002149,-0.003000,0.249982,0,0);}
.mf_c00104{transform:matrix(0.179327,0.002152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179327,0.002152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179327,0.002152,-0.003000,0.249982,0,0);}
.m88_c00104{transform:matrix(0.179608,0.003413,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179608,0.003413,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179608,0.003413,-0.004749,0.249955,0,0);}
.m36_c00104{transform:matrix(0.179848,0.003417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179848,0.003417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179848,0.003417,-0.004749,0.249955,0,0);}
.m56_c00104{transform:matrix(0.180003,0.003420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180003,0.003420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180003,0.003420,-0.004749,0.249955,0,0);}
.m3d_c00104{transform:matrix(0.180462,0.003429,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180462,0.003429,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180462,0.003429,-0.004749,0.249955,0,0);}
.m2b_c00104{transform:matrix(0.181007,0.002172,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181007,0.002172,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181007,0.002172,-0.003000,0.249982,0,0);}
.m80_c00104{transform:matrix(0.181422,0.003447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181422,0.003447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181422,0.003447,-0.004749,0.249955,0,0);}
.m69_c00104{transform:matrix(0.181837,0.003455,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181837,0.003455,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181837,0.003455,-0.004749,0.249955,0,0);}
.mce_c00104{transform:matrix(0.181841,0.004001,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181841,0.004001,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181841,0.004001,-0.005499,0.249940,0,0);}
.me9_c00104{transform:matrix(0.182491,0.004015,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182491,0.004015,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182491,0.004015,-0.005499,0.249940,0,0);}
.m43_c00104{transform:matrix(0.182492,0.003467,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182492,0.003467,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182492,0.003467,-0.004749,0.249955,0,0);}
.m17_c00104{transform:matrix(0.182557,0.002191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182557,0.002191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182557,0.002191,-0.003000,0.249982,0,0);}
.m4a_c00104{transform:matrix(0.182652,0.003470,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182652,0.003470,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182652,0.003470,-0.004749,0.249955,0,0);}
.m2a_c00104{transform:matrix(0.182807,0.002194,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182807,0.002194,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182807,0.002194,-0.003000,0.249982,0,0);}
.m39_c00104{transform:matrix(0.182962,0.003476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182962,0.003476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182962,0.003476,-0.004749,0.249955,0,0);}
.m21_c00104{transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);}
.m23_c00104{transform:matrix(0.183317,0.002200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183317,0.002200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183317,0.002200,-0.003000,0.249982,0,0);}
.m1a_c00104{transform:matrix(0.183422,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183422,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183422,0.002201,-0.003000,0.249982,0,0);}
.m30_c00104{transform:matrix(0.184037,0.002208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184037,0.002208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184037,0.002208,-0.003000,0.249982,0,0);}
.m37_c00104{transform:matrix(0.184262,0.003501,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184262,0.003501,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184262,0.003501,-0.004749,0.249955,0,0);}
.m7a_c00104{transform:matrix(0.184557,0.003507,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184557,0.003507,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184557,0.003507,-0.004749,0.249955,0,0);}
.m4d_c00104{transform:matrix(0.184737,0.003510,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184737,0.003510,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184737,0.003510,-0.004749,0.249955,0,0);}
.m9f_c00104{transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);}
.mcb_c00104{transform:matrix(0.184980,0.004070,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184980,0.004070,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184980,0.004070,-0.005499,0.249940,0,0);}
.m87_c00104{transform:matrix(0.185007,0.003515,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185007,0.003515,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185007,0.003515,-0.004749,0.249955,0,0);}
.m4b_c00104{transform:matrix(0.185122,0.003517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185122,0.003517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185122,0.003517,-0.004749,0.249955,0,0);}
.mf2_c00104{transform:matrix(0.185135,0.004073,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185135,0.004073,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185135,0.004073,-0.005499,0.249940,0,0);}
.m94_c00104{transform:matrix(0.185157,0.003518,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185157,0.003518,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185157,0.003518,-0.004749,0.249955,0,0);}
.m2c_c00104{transform:matrix(0.185572,0.002227,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185572,0.002227,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185572,0.002227,-0.003000,0.249982,0,0);}
.m3c_c00104{transform:matrix(0.185716,0.003529,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185716,0.003529,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185716,0.003529,-0.004749,0.249955,0,0);}
.mab_c00104{transform:matrix(0.186161,0.003537,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186161,0.003537,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186161,0.003537,-0.004749,0.249955,0,0);}
.m44_c00104{transform:matrix(0.187031,0.003554,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187031,0.003554,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187031,0.003554,-0.004749,0.249955,0,0);}
.m50_c00104{transform:matrix(0.187106,0.003555,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187106,0.003555,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187106,0.003555,-0.004749,0.249955,0,0);}
.m46_c00104{transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);}
.ma3_c00104{transform:matrix(0.187251,0.003558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187251,0.003558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187251,0.003558,-0.004749,0.249955,0,0);}
.maf_c00104{transform:matrix(0.187381,0.003560,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187381,0.003560,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187381,0.003560,-0.004749,0.249955,0,0);}
.m98_c00104{transform:matrix(0.187396,0.003561,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187396,0.003561,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187396,0.003561,-0.004749,0.249955,0,0);}
.med_c00104{transform:matrix(0.187415,0.004123,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187415,0.004123,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187415,0.004123,-0.005499,0.249940,0,0);}
.mca_c00104{transform:matrix(0.187510,0.004125,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187510,0.004125,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187510,0.004125,-0.005499,0.249940,0,0);}
.m4e_c00104{transform:matrix(0.188036,0.003573,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188036,0.003573,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188036,0.003573,-0.004749,0.249955,0,0);}
.m3b_c00104{transform:matrix(0.188206,0.003576,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188206,0.003576,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188206,0.003576,-0.004749,0.249955,0,0);}
.mad_c00104{transform:matrix(0.188571,0.003583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188571,0.003583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188571,0.003583,-0.004749,0.249955,0,0);}
.m27_c00104{transform:matrix(0.188901,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188901,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188901,0.002267,-0.003000,0.249982,0,0);}
.m26_c00104{transform:matrix(0.188946,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188946,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188946,0.002267,-0.003000,0.249982,0,0);}
.m64_c00104{transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);}
.m49_c00104{transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);}
.m8e_c00104{transform:matrix(0.190261,0.003615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190261,0.003615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190261,0.003615,-0.004749,0.249955,0,0);}
.m86_c00104{transform:matrix(0.190926,0.003628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190926,0.003628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190926,0.003628,-0.004749,0.249955,0,0);}
.m34_c00104{transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);}
.m2e_c00104{transform:matrix(0.191606,0.002299,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191606,0.002299,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191606,0.002299,-0.003000,0.249982,0,0);}
.ma6_c00104{transform:matrix(0.192020,0.003648,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192020,0.003648,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192020,0.003648,-0.004749,0.249955,0,0);}
.m4c_c00104{transform:matrix(0.192090,0.003650,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192090,0.003650,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192090,0.003650,-0.004749,0.249955,0,0);}
.m8c_c00104{transform:matrix(0.192470,0.003657,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192470,0.003657,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192470,0.003657,-0.004749,0.249955,0,0);}
.m77_c00104{transform:matrix(0.192925,0.003666,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192925,0.003666,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192925,0.003666,-0.004749,0.249955,0,0);}
.m59_c00104{transform:matrix(0.193185,0.003671,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193185,0.003671,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193185,0.003671,-0.004749,0.249955,0,0);}
.mf3_c00104{transform:matrix(0.193233,0.004251,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193233,0.004251,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193233,0.004251,-0.005499,0.249940,0,0);}
.mcc_c00104{transform:matrix(0.193963,0.004267,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193963,0.004267,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193963,0.004267,-0.005499,0.249940,0,0);}
.m33_c00104{transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);}
.m16_c00104{transform:matrix(0.194466,0.002334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194466,0.002334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194466,0.002334,-0.003000,0.249982,0,0);}
.m6f_c00104{transform:matrix(0.194620,0.003698,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194620,0.003698,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194620,0.003698,-0.004749,0.249955,0,0);}
.m55_c00104{transform:matrix(0.195265,0.003710,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195265,0.003710,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195265,0.003710,-0.004749,0.249955,0,0);}
.m5f_c00104{transform:matrix(0.195755,0.003719,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195755,0.003719,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195755,0.003719,-0.004749,0.249955,0,0);}
.mb9_c00104{transform:matrix(0.195760,0.003719,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195760,0.003719,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195760,0.003719,-0.004749,0.249955,0,0);}
.m5b_c00104{transform:matrix(0.195830,0.003721,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195830,0.003721,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195830,0.003721,-0.004749,0.249955,0,0);}
.m5d_c00104{transform:matrix(0.195845,0.003721,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195845,0.003721,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195845,0.003721,-0.004749,0.249955,0,0);}
.m45_c00104{transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);}
.ma7_c00104{transform:matrix(0.196794,0.003739,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196794,0.003739,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196794,0.003739,-0.004749,0.249955,0,0);}
.mc_c00104{transform:matrix(0.196856,0.002362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196856,0.002362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196856,0.002362,-0.003000,0.249982,0,0);}
.m9c_c00104{transform:matrix(0.196884,0.003741,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196884,0.003741,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196884,0.003741,-0.004749,0.249955,0,0);}
.m81_c00104{transform:matrix(0.197919,0.003760,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197919,0.003760,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197919,0.003760,-0.004749,0.249955,0,0);}
.m6b_c00104{transform:matrix(0.198614,0.003774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198614,0.003774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198614,0.003774,-0.004749,0.249955,0,0);}
.m1c_c00104{transform:matrix(0.198796,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198796,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198796,0.002386,-0.003000,0.249982,0,0);}
.m1d_c00104{transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);}
.m96_c00104{transform:matrix(0.199129,0.003783,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199129,0.003783,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199129,0.003783,-0.004749,0.249955,0,0);}
.m82_c00104{transform:matrix(0.200454,0.003809,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200454,0.003809,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200454,0.003809,-0.004749,0.249955,0,0);}
.m75_c00104{transform:matrix(0.200624,0.003812,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200624,0.003812,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200624,0.003812,-0.004749,0.249955,0,0);}
.mf0_c00104{transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);}
.m68_c00104{transform:matrix(0.201129,0.003821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201129,0.003821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201129,0.003821,-0.004749,0.249955,0,0);}
.m76_c00104{transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);}
.m60_c00104{transform:matrix(0.201339,0.003825,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201339,0.003825,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201339,0.003825,-0.004749,0.249955,0,0);}
.ma0_c00104{transform:matrix(0.201519,0.003829,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201519,0.003829,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201519,0.003829,-0.004749,0.249955,0,0);}
.m91_c00104{transform:matrix(0.202154,0.003841,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202154,0.003841,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202154,0.003841,-0.004749,0.249955,0,0);}
.m7f_c00104{transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);}
.m53_c00104{transform:matrix(0.203063,0.003858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203063,0.003858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203063,0.003858,-0.004749,0.249955,0,0);}
.m99_c00104{transform:matrix(0.203658,0.003870,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203658,0.003870,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203658,0.003870,-0.004749,0.249955,0,0);}
.m6a_c00104{transform:matrix(0.203708,0.003870,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203708,0.003870,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203708,0.003870,-0.004749,0.249955,0,0);}
.m12_c00104{transform:matrix(0.203835,0.002446,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203835,0.002446,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203835,0.002446,-0.003000,0.249982,0,0);}
.mcf_c00104{transform:matrix(0.203981,0.004488,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203981,0.004488,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203981,0.004488,-0.005499,0.249940,0,0);}
.m8d_c00104{transform:matrix(0.204103,0.003878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204103,0.003878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204103,0.003878,-0.004749,0.249955,0,0);}
.m3e_c00104{transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);}
.m2d_c00104{transform:matrix(0.204795,0.002458,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204795,0.002458,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204795,0.002458,-0.003000,0.249982,0,0);}
.md5_c00104{transform:matrix(0.205475,0.004520,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205475,0.004520,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205475,0.004520,-0.005499,0.249940,0,0);}
.m24_c00104{transform:matrix(0.205735,0.002469,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205735,0.002469,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205735,0.002469,-0.003000,0.249982,0,0);}
.m47_c00104{transform:matrix(0.206053,0.003915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206053,0.003915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206053,0.003915,-0.004749,0.249955,0,0);}
.mc6_c00104{transform:matrix(0.208005,0.004576,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208005,0.004576,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208005,0.004576,-0.005499,0.249940,0,0);}
.m8b_c00104{transform:matrix(0.208212,0.003956,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208212,0.003956,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208212,0.003956,-0.004749,0.249955,0,0);}
.mba_c00104{transform:matrix(0.208717,0.003966,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208717,0.003966,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208717,0.003966,-0.004749,0.249955,0,0);}
.ma5_c00104{transform:matrix(0.210237,0.003995,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210237,0.003995,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210237,0.003995,-0.004749,0.249955,0,0);}
.mb7_c00104{transform:matrix(0.210512,0.004000,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210512,0.004000,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210512,0.004000,-0.004749,0.249955,0,0);}
.mc4_c00104{transform:matrix(0.211145,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211145,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211145,0.002534,-0.003000,0.249982,0,0);}
.mb6_c00104{transform:matrix(0.211827,0.004025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211827,0.004025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211827,0.004025,-0.004749,0.249955,0,0);}
.mbe_c00104{transform:matrix(0.212997,0.004047,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212997,0.004047,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212997,0.004047,-0.004749,0.249955,0,0);}
.m71_c00104{transform:matrix(0.213926,0.004065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213926,0.004065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213926,0.004065,-0.004749,0.249955,0,0);}
.m28_c00104{transform:matrix(0.215859,0.002590,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215859,0.002590,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215859,0.002590,-0.003000,0.249982,0,0);}
.m58_c00104{transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);}
.m8a_c00104{transform:matrix(0.216266,0.004109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216266,0.004109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216266,0.004109,-0.004749,0.249955,0,0);}
.mcd_c00104{transform:matrix(0.217482,0.004785,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217482,0.004785,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217482,0.004785,-0.005499,0.249940,0,0);}
.mac_c00104{transform:matrix(0.218531,0.004152,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218531,0.004152,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218531,0.004152,-0.004749,0.249955,0,0);}
.m92_c00104{transform:matrix(0.219350,0.004168,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219350,0.004168,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219350,0.004168,-0.004749,0.249955,0,0);}
.m85_c00104{transform:matrix(0.219765,0.004176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219765,0.004176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219765,0.004176,-0.004749,0.249955,0,0);}
.ma9_c00104{transform:matrix(0.219880,0.004178,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219880,0.004178,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219880,0.004178,-0.004749,0.249955,0,0);}
.mc2_c00104{transform:matrix(0.219964,0.002640,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219964,0.002640,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219964,0.002640,-0.003000,0.249982,0,0);}
.mef_c00104{transform:matrix(0.220782,0.004857,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220782,0.004857,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220782,0.004857,-0.005499,0.249940,0,0);}
.mb3_c00104{transform:matrix(0.220955,0.004198,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220955,0.004198,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220955,0.004198,-0.004749,0.249955,0,0);}
.m97_c00104{transform:matrix(0.221510,0.004209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221510,0.004209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221510,0.004209,-0.004749,0.249955,0,0);}
.m1f_c00104{transform:matrix(0.222649,0.002672,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222649,0.002672,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222649,0.002672,-0.003000,0.249982,0,0);}
.mb4_c00104{transform:matrix(0.222820,0.004234,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222820,0.004234,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222820,0.004234,-0.004749,0.249955,0,0);}
.mfa_c00104{transform:matrix(0.223971,0.004927,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223971,0.004927,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223971,0.004927,-0.005499,0.249940,0,0);}
.mf6_c00104{transform:matrix(0.224326,0.004935,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224326,0.004935,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224326,0.004935,-0.005499,0.249940,0,0);}
.m7e_c00104{transform:matrix(0.224375,0.004263,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224375,0.004263,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224375,0.004263,-0.004749,0.249955,0,0);}
.mb5_c00104{transform:matrix(0.224684,0.004269,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224684,0.004269,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224684,0.004269,-0.004749,0.249955,0,0);}
.mbd_c00104{transform:matrix(0.224934,0.004274,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224934,0.004274,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224934,0.004274,-0.004749,0.249955,0,0);}
.m63_c00104{transform:matrix(0.225189,0.004279,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225189,0.004279,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225189,0.004279,-0.004749,0.249955,0,0);}
.m61_c00104{transform:matrix(0.226709,0.004307,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226709,0.004307,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226709,0.004307,-0.004749,0.249955,0,0);}
.m5_c00104{transform:matrix(0.229044,0.003436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229044,0.003436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229044,0.003436,-0.003750,0.249972,0,0);}
.mbc_c00104{transform:matrix(0.230308,0.004376,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230308,0.004376,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230308,0.004376,-0.004749,0.249955,0,0);}
.ma4_c00104{transform:matrix(0.230458,0.004379,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230458,0.004379,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230458,0.004379,-0.004749,0.249955,0,0);}
.m7b_c00104{transform:matrix(0.231163,0.004392,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231163,0.004392,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231163,0.004392,-0.004749,0.249955,0,0);}
.mc5_c00104{transform:matrix(0.231293,0.002776,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231293,0.002776,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231293,0.002776,-0.003000,0.249982,0,0);}
.md9_c00104{transform:matrix(0.231689,0.005097,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231689,0.005097,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231689,0.005097,-0.005499,0.249940,0,0);}
.mdc_c00104{transform:matrix(0.233304,0.005133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233304,0.005133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233304,0.005133,-0.005499,0.249940,0,0);}
.m31_c00104{transform:matrix(0.233743,0.002805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233743,0.002805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233743,0.002805,-0.003000,0.249982,0,0);}
.m51_c00104{transform:matrix(0.236117,0.004486,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236117,0.004486,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236117,0.004486,-0.004749,0.249955,0,0);}
.mc0_c00104{transform:matrix(0.236388,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236388,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236388,0.002837,-0.003000,0.249982,0,0);}
.m79_c00104{transform:matrix(0.238287,0.004527,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238287,0.004527,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238287,0.004527,-0.004749,0.249955,0,0);}
.maa_c00104{transform:matrix(0.238612,0.004534,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238612,0.004534,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238612,0.004534,-0.004749,0.249955,0,0);}
.m67_c00104{transform:matrix(0.238922,0.004540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238922,0.004540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238922,0.004540,-0.004749,0.249955,0,0);}
.m7c_c00104{transform:matrix(0.242126,0.004600,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242126,0.004600,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242126,0.004600,-0.004749,0.249955,0,0);}
.m6c_c00104{transform:matrix(0.242861,0.004614,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242861,0.004614,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242861,0.004614,-0.004749,0.249955,0,0);}
.mbf_c00104{transform:matrix(0.246071,0.004675,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246071,0.004675,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246071,0.004675,-0.004749,0.249955,0,0);}
.mbb_c00104{transform:matrix(0.249780,0.004746,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249780,0.004746,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249780,0.004746,-0.004749,0.249955,0,0);}
.m3a_c00104{transform:matrix(0.253044,0.004808,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253044,0.004808,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253044,0.004808,-0.004749,0.249955,0,0);}
.mb2_c00104{transform:matrix(0.257773,0.004898,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257773,0.004898,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257773,0.004898,-0.004749,0.249955,0,0);}
.md2_c00104{transform:matrix(0.262971,0.005785,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262971,0.005785,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262971,0.005785,-0.005499,0.249940,0,0);}
.mdd_c00104{transform:matrix(0.270195,0.005944,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270195,0.005944,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270195,0.005944,-0.005499,0.249940,0,0);}
.ma8_c00104{transform:matrix(0.283609,0.005389,-0.004749,0.249955,0,0);-ms-transform:matrix(0.283609,0.005389,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.283609,0.005389,-0.004749,0.249955,0,0);}
.mdb_c00104{transform:matrix(0.293929,0.006466,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293929,0.006466,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293929,0.006466,-0.005499,0.249940,0,0);}
.md3_c00104{transform:matrix(0.309850,0.006817,-0.005499,0.249940,0,0);-ms-transform:matrix(0.309850,0.006817,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.309850,0.006817,-0.005499,0.249940,0,0);}
.mda_c00104{transform:matrix(0.310210,0.006825,-0.005499,0.249940,0,0);-ms-transform:matrix(0.310210,0.006825,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.310210,0.006825,-0.005499,0.249940,0,0);}
.m6d_c00104{transform:matrix(0.318013,0.006042,-0.004749,0.249955,0,0);-ms-transform:matrix(0.318013,0.006042,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.318013,0.006042,-0.004749,0.249955,0,0);}
.mb0_c00104{transform:matrix(0.341273,0.006484,-0.004749,0.249955,0,0);-ms-transform:matrix(0.341273,0.006484,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.341273,0.006484,-0.004749,0.249955,0,0);}
.m7_c00104{transform:matrix(0.364914,0.005474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.364914,0.005474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.364914,0.005474,-0.003750,0.249972,0,0);}
.md8_c00104{transform:matrix(0.381833,0.008400,-0.005499,0.249940,0,0);-ms-transform:matrix(0.381833,0.008400,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.381833,0.008400,-0.005499,0.249940,0,0);}
.mb1_c00104{transform:matrix(0.430462,0.008179,-0.004749,0.249955,0,0);-ms-transform:matrix(0.430462,0.008179,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.430462,0.008179,-0.004749,0.249955,0,0);}
.mc8_c00104{transform:matrix(0.438859,0.009655,-0.005499,0.249940,0,0);-ms-transform:matrix(0.438859,0.009655,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.438859,0.009655,-0.005499,0.249940,0,0);}
.mea_c00104{transform:matrix(0.569497,0.012529,-0.005499,0.249940,0,0);-ms-transform:matrix(0.569497,0.012529,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.569497,0.012529,-0.005499,0.249940,0,0);}
.mc7_c00104{transform:matrix(0.594656,0.013082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.594656,0.013082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.594656,0.013082,-0.005499,0.249940,0,0);}
.meb_c00104{transform:matrix(0.603774,0.013283,-0.005499,0.249940,0,0);-ms-transform:matrix(0.603774,0.013283,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.603774,0.013283,-0.005499,0.249940,0,0);}
.md1_c00104{transform:matrix(0.758112,0.016678,-0.005499,0.249940,0,0);-ms-transform:matrix(0.758112,0.016678,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.758112,0.016678,-0.005499,0.249940,0,0);}
.mb8_c00104{transform:matrix(0.909916,0.017288,-0.004749,0.249955,0,0);-ms-transform:matrix(0.909916,0.017288,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.909916,0.017288,-0.004749,0.249955,0,0);}
.md4_c00104{transform:matrix(0.941692,0.020717,-0.005499,0.249940,0,0);-ms-transform:matrix(0.941692,0.020717,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.941692,0.020717,-0.005499,0.249940,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:0.000000px;}
.fc0_c00104{color:transparent;}
.fs0_c00104{font-size:53.550000px;}
.fs11_c00104{font-size:53.559665px;}
.fse_c00104{font-size:58.810612px;}
.fs12_c00104{font-size:61.964990px;}
.fsb_c00104{font-size:63.011370px;}
.fs6_c00104{font-size:64.054611px;}
.fs8_c00104{font-size:64.061560px;}
.fsc_c00104{font-size:65.111749px;}
.fs13_c00104{font-size:65.115752px;}
.fs5_c00104{font-size:66.154763px;}
.fsf_c00104{font-size:66.161939px;}
.fs1_c00104{font-size:67.200000px;}
.fs7_c00104{font-size:67.204838px;}
.fsd_c00104{font-size:67.212129px;}
.fsa_c00104{font-size:68.262318px;}
.fs9_c00104{font-size:69.312508px;}
.fs3_c00104{font-size:70.355065px;}
.fs2_c00104{font-size:70.357914px;}
.fs10_c00104{font-size:70.362697px;}
.fs4_c00104{font-size:71.405141px;}
.fs15_c00104{font-size:71.417277px;}
.fs16_c00104{font-size:72.467531px;}
.fs14_c00104{font-size:114.477694px;}
.y0_c00104{bottom:0.000000px;}
.yfc_c00104{bottom:24.351936px;}
.yfb_c00104{bottom:25.038273px;}
.yfa_c00104{bottom:25.305057px;}
.yf9_c00104{bottom:26.144313px;}
.yf8_c00104{bottom:26.428923px;}
.yf7_c00104{bottom:26.717361px;}
.yf6_c00104{bottom:27.283791px;}
.yf5_c00104{bottom:27.485298px;}
.yf4_c00104{bottom:28.602330px;}
.yf3_c00104{bottom:43.803126px;}
.yf2_c00104{bottom:44.057718px;}
.yf1_c00104{bottom:44.285091px;}
.yf0_c00104{bottom:45.621663px;}
.yef_c00104{bottom:45.827232px;}
.yee_c00104{bottom:46.349934px;}
.yed_c00104{bottom:47.501868px;}
.yec_c00104{bottom:48.464187px;}
.yeb_c00104{bottom:51.845958px;}
.yea_c00104{bottom:52.202049px;}
.ye9_c00104{bottom:55.217751px;}
.ye8_c00104{bottom:56.011275px;}
.ye7_c00104{bottom:56.965800px;}
.ye6_c00104{bottom:63.074175px;}
.ye5_c00104{bottom:63.915519px;}
.ye4_c00104{bottom:64.460466px;}
.ye3_c00104{bottom:67.211079px;}
.ye2_c00104{bottom:67.678344px;}
.ye1_c00104{bottom:69.107880px;}
.ye0_c00104{bottom:72.323400px;}
.ydf_c00104{bottom:73.445142px;}
.yde_c00104{bottom:78.296688px;}
.ydd_c00104{bottom:79.638903px;}
.ydc_c00104{bottom:80.643861px;}
.ydb_c00104{bottom:81.646857px;}
.yda_c00104{bottom:82.739997px;}
.yd9_c00104{bottom:84.895206px;}
.yd8_c00104{bottom:86.249196px;}
.yd7_c00104{bottom:87.059634px;}
.yd6_c00104{bottom:90.730320px;}
.yd5_c00104{bottom:97.909935px;}
.yd4_c00104{bottom:100.677861px;}
.yd3_c00104{bottom:101.413137px;}
.yd2_c00104{bottom:103.872336px;}
.yd1_c00104{bottom:104.801010px;}
.yd0_c00104{bottom:105.224556px;}
.ycf_c00104{bottom:106.115787px;}
.yce_c00104{bottom:130.340394px;}
.ycd_c00104{bottom:131.212716px;}
.ycc_c00104{bottom:131.762397px;}
.ycb_c00104{bottom:132.643662px;}
.yca_c00104{bottom:133.209249px;}
.yc9_c00104{bottom:134.743749px;}
.yc8_c00104{bottom:135.871161px;}
.yc7_c00104{bottom:136.623000px;}
.yc6_c00104{bottom:147.511668px;}
.yc5_c00104{bottom:147.858096px;}
.yc4_c00104{bottom:148.053252px;}
.yc3_c00104{bottom:148.775988px;}
.yc2_c00104{bottom:148.892538px;}
.yc1_c00104{bottom:149.583000px;}
.yc0_c00104{bottom:164.970048px;}
.ybf_c00104{bottom:165.492139px;}
.ybe_c00104{bottom:166.334172px;}
.ybd_c00104{bottom:167.108859px;}
.ybc_c00104{bottom:167.580733px;}
.ybb_c00104{bottom:168.022312px;}
.yba_c00104{bottom:168.554863px;}
.yb9_c00104{bottom:169.779166px;}
.yb8_c00104{bottom:181.802329px;}
.yb7_c00104{bottom:182.724057px;}
.yb6_c00104{bottom:182.970463px;}
.yb5_c00104{bottom:183.187539px;}
.yb4_c00104{bottom:183.481137px;}
.yb3_c00104{bottom:184.120683px;}
.yb2_c00104{bottom:184.661485px;}
.yb1_c00104{bottom:184.905003px;}
.yb0_c00104{bottom:200.192992px;}
.yaf_c00104{bottom:200.979715px;}
.yae_c00104{bottom:202.329498px;}
.yad_c00104{bottom:202.673604px;}
.yac_c00104{bottom:204.670967px;}
.yab_c00104{bottom:205.363899px;}
.yaa_c00104{bottom:206.755785px;}
.ya9_c00104{bottom:207.869100px;}
.ya8_c00104{bottom:217.957561px;}
.ya7_c00104{bottom:219.920764px;}
.ya6_c00104{bottom:220.738308px;}
.ya5_c00104{bottom:222.121743px;}
.ya4_c00104{bottom:223.405026px;}
.ya3_c00104{bottom:223.929741px;}
.ya2_c00104{bottom:224.605340px;}
.ya1_c00104{bottom:235.294661px;}
.ya0_c00104{bottom:235.889870px;}
.y9f_c00104{bottom:236.813380px;}
.y9e_c00104{bottom:237.291168px;}
.y9d_c00104{bottom:238.943968px;}
.y9c_c00104{bottom:240.588667px;}
.y9b_c00104{bottom:242.151942px;}
.y9a_c00104{bottom:242.703594px;}
.y99_c00104{bottom:253.624353px;}
.y98_c00104{bottom:254.505143px;}
.y97_c00104{bottom:256.309074px;}
.y96_c00104{bottom:257.556330px;}
.y95_c00104{bottom:258.851161px;}
.y94_c00104{bottom:259.712926px;}
.y93_c00104{bottom:270.645797px;}
.y92_c00104{bottom:271.136747px;}
.y91_c00104{bottom:271.922324px;}
.y90_c00104{bottom:272.818371px;}
.y8f_c00104{bottom:273.276049px;}
.y8e_c00104{bottom:273.821024px;}
.y8d_c00104{bottom:275.582155px;}
.y8c_c00104{bottom:276.811193px;}
.y8b_c00104{bottom:278.077765px;}
.y8a_c00104{bottom:290.070511px;}
.y89_c00104{bottom:290.909457px;}
.y88_c00104{bottom:291.757836px;}
.y87_c00104{bottom:292.082791px;}
.y86_c00104{bottom:292.339710px;}
.y85_c00104{bottom:292.925888px;}
.y84_c00104{bottom:293.265720px;}
.y83_c00104{bottom:293.973522px;}
.y82_c00104{bottom:294.697940px;}
.y81_c00104{bottom:295.626714px;}
.y80_c00104{bottom:305.506000px;}
.y7f_c00104{bottom:307.439996px;}
.y7e_c00104{bottom:307.682042px;}
.y7d_c00104{bottom:309.580799px;}
.y7c_c00104{bottom:310.688071px;}
.y7b_c00104{bottom:311.529838px;}
.y7a_c00104{bottom:313.723051px;}
.y79_c00104{bottom:324.099579px;}
.y78_c00104{bottom:325.398979px;}
.y77_c00104{bottom:325.961826px;}
.y76_c00104{bottom:327.384346px;}
.y75_c00104{bottom:328.241085px;}
.y74_c00104{bottom:328.539337px;}
.y73_c00104{bottom:329.067728px;}
.y72_c00104{bottom:329.380800px;}
.y6a_c00104{bottom:342.119137px;}
.y6e_c00104{bottom:342.119142px;}
.y69_c00104{bottom:342.119326px;}
.y6d_c00104{bottom:342.119454px;}
.y71_c00104{bottom:342.119702px;}
.y6f_c00104{bottom:342.119710px;}
.y6b_c00104{bottom:342.119764px;}
.y68_c00104{bottom:342.119778px;}
.y70_c00104{bottom:342.119948px;}
.y6c_c00104{bottom:342.119997px;}
.y67_c00104{bottom:357.660837px;}
.y66_c00104{bottom:357.951513px;}
.y65_c00104{bottom:358.214734px;}
.y64_c00104{bottom:359.327774px;}
.y63_c00104{bottom:359.538387px;}
.y62_c00104{bottom:360.304768px;}
.y61_c00104{bottom:360.704347px;}
.y60_c00104{bottom:375.072489px;}
.y5f_c00104{bottom:375.325483px;}
.y5e_c00104{bottom:375.965451px;}
.y5d_c00104{bottom:376.305142px;}
.y5c_c00104{bottom:376.653926px;}
.y5b_c00104{bottom:377.443119px;}
.y5a_c00104{bottom:378.129627px;}
.y59_c00104{bottom:379.537612px;}
.y58_c00104{bottom:379.900418px;}
.y57_c00104{bottom:380.419516px;}
.y56_c00104{bottom:392.345718px;}
.y55_c00104{bottom:392.694669px;}
.y54_c00104{bottom:394.255657px;}
.y53_c00104{bottom:394.721431px;}
.y52_c00104{bottom:395.906301px;}
.y51_c00104{bottom:397.704651px;}
.y50_c00104{bottom:408.599244px;}
.y4f_c00104{bottom:409.527344px;}
.y4e_c00104{bottom:410.234749px;}
.y4d_c00104{bottom:410.728636px;}
.y4c_c00104{bottom:411.551733px;}
.y4b_c00104{bottom:412.051890px;}
.y4a_c00104{bottom:413.077533px;}
.y49_c00104{bottom:413.365824px;}
.y48_c00104{bottom:427.212930px;}
.y47_c00104{bottom:427.712242px;}
.y46_c00104{bottom:427.880055px;}
.y45_c00104{bottom:429.211024px;}
.y44_c00104{bottom:429.990113px;}
.y43_c00104{bottom:430.248820px;}
.y42_c00104{bottom:430.646992px;}
.y41_c00104{bottom:443.249589px;}
.y40_c00104{bottom:443.861004px;}
.y3f_c00104{bottom:444.062848px;}
.y3e_c00104{bottom:444.512278px;}
.y3d_c00104{bottom:445.753398px;}
.y3c_c00104{bottom:446.576130px;}
.y3b_c00104{bottom:447.389931px;}
.y3a_c00104{bottom:459.720432px;}
.y39_c00104{bottom:463.584376px;}
.y38_c00104{bottom:464.558421px;}
.y37_c00104{bottom:464.943000px;}
.y36_c00104{bottom:478.479534px;}
.y35_c00104{bottom:479.045088px;}
.y34_c00104{bottom:479.416200px;}
.y33_c00104{bottom:479.887116px;}
.y32_c00104{bottom:480.362964px;}
.y31_c00104{bottom:480.982122px;}
.y30_c00104{bottom:481.433790px;}
.y2f_c00104{bottom:481.805784px;}
.y2e_c00104{bottom:482.213556px;}
.y2d_c00104{bottom:495.920616px;}
.y2c_c00104{bottom:496.234410px;}
.y2b_c00104{bottom:496.885500px;}
.y2a_c00104{bottom:497.233098px;}
.y29_c00104{bottom:497.624658px;}
.y28_c00104{bottom:498.303108px;}
.y27_c00104{bottom:499.039944px;}
.y26_c00104{bottom:499.361916px;}
.y25_c00104{bottom:499.765056px;}
.y24_c00104{bottom:512.844930px;}
.y23_c00104{bottom:513.095238px;}
.y22_c00104{bottom:513.760134px;}
.y21_c00104{bottom:514.001580px;}
.y20_c00104{bottom:514.820460px;}
.y1f_c00104{bottom:515.743698px;}
.y1e_c00104{bottom:515.930130px;}
.y1d_c00104{bottom:516.777006px;}
.y1c_c00104{bottom:531.300354px;}
.y1b_c00104{bottom:531.912888px;}
.y1a_c00104{bottom:532.391028px;}
.y19_c00104{bottom:532.652166px;}
.y18_c00104{bottom:533.118288px;}
.y17_c00104{bottom:533.454390px;}
.y16_c00104{bottom:533.775828px;}
.y15_c00104{bottom:534.062142px;}
.y14_c00104{bottom:534.329328px;}
.y13_c00104{bottom:549.231738px;}
.y12_c00104{bottom:549.573450px;}
.y11_c00104{bottom:549.771072px;}
.y10_c00104{bottom:549.991410px;}
.yf_c00104{bottom:550.610322px;}
.ye_c00104{bottom:550.782114px;}
.yd_c00104{bottom:551.394474px;}
.yc_c00104{bottom:551.611500px;}
.yb_c00104{bottom:565.735200px;}
.ya_c00104{bottom:566.143845px;}
.y9_c00104{bottom:566.970495px;}
.y8_c00104{bottom:567.492652px;}
.y7_c00104{bottom:567.783532px;}
.y6_c00104{bottom:568.294462px;}
.y5_c00104{bottom:569.254920px;}
.y4_c00104{bottom:569.569807px;}
.y3_c00104{bottom:569.971500px;}
.y2_c00104{bottom:583.203000px;}
.y1_c00104{bottom:606.420000px;}
.h2_c00104{height:53.550000px;}
.h13_c00104{height:53.559665px;}
.h10_c00104{height:58.810612px;}
.h14_c00104{height:61.964990px;}
.hd_c00104{height:63.011370px;}
.h8_c00104{height:64.054611px;}
.ha_c00104{height:64.061560px;}
.he_c00104{height:65.111749px;}
.h15_c00104{height:65.115752px;}
.h7_c00104{height:66.154763px;}
.h11_c00104{height:66.161939px;}
.h3_c00104{height:67.200000px;}
.h9_c00104{height:67.204838px;}
.hf_c00104{height:67.212129px;}
.hc_c00104{height:68.262318px;}
.hb_c00104{height:69.312508px;}
.h5_c00104{height:70.355065px;}
.h4_c00104{height:70.357914px;}
.h12_c00104{height:70.362697px;}
.h6_c00104{height:71.405141px;}
.h17_c00104{height:71.417277px;}
.h18_c00104{height:72.467531px;}
.h16_c00104{height:114.477694px;}
.h0_c00104{height:634.200000px;}
.h1_c00104{height:634.500000px;}
.w0_c00104{width:371.790000px;}
.w1_c00104{width:372.000000px;}
.x0_c00104{left:0.000000px;}
.x4f_c00104{left:26.143845px;}
.x40_c00104{left:28.176354px;}
.x3_c00104{left:29.554500px;}
.x78_c00104{left:31.660236px;}
.x45_c00104{left:34.155059px;}
.x30_c00104{left:35.455460px;}
.x4a_c00104{left:39.963167px;}
.x7c_c00104{left:45.313365px;}
.xc_c00104{left:46.836000px;}
.x67_c00104{left:48.414597px;}
.x2e_c00104{left:50.577000px;}
.x74_c00104{left:52.532142px;}
.x13_c00104{left:53.865054px;}
.x4_c00104{left:56.334000px;}
.x21_c00104{left:57.884790px;}
.x5b_c00104{left:58.923484px;}
.x27_c00104{left:60.935586px;}
.x60_c00104{left:63.231271px;}
.x46_c00104{left:64.899564px;}
.x7a_c00104{left:69.568266px;}
.x59_c00104{left:71.320075px;}
.x55_c00104{left:72.647280px;}
.x41_c00104{left:74.592354px;}
.x5_c00104{left:77.326500px;}
.x4c_c00104{left:78.350092px;}
.x14_c00104{left:79.849860px;}
.x6f_c00104{left:82.981500px;}
.x61_c00104{left:84.213877px;}
.x1a_c00104{left:86.778240px;}
.x28_c00104{left:89.559744px;}
.x70_c00104{left:92.694000px;}
.x4d_c00104{left:94.047592px;}
.xd_c00104{left:97.866000px;}
.x1b_c00104{left:99.188790px;}
.x2f_c00104{left:101.842500px;}
.x4b_c00104{left:102.883881px;}
.x50_c00104{left:104.457450px;}
.x37_c00104{left:106.548935px;}
.x15_c00104{left:109.011702px;}
.x72_c00104{left:110.928000px;}
.xe_c00104{left:112.182000px;}
.x3c_c00104{left:114.276068px;}
.x7d_c00104{left:117.319869px;}
.x1_c00104{left:120.960000px;}
.x29_c00104{left:124.323330px;}
.x6b_c00104{left:127.294032px;}
.x22_c00104{left:133.491972px;}
.x51_c00104{left:134.545320px;}
.x38_c00104{left:135.953046px;}
.x16_c00104{left:139.520562px;}
.x6_c00104{left:141.357000px;}
.x31_c00104{left:144.570753px;}
.x79_c00104{left:145.791075px;}
.x42_c00104{left:148.696854px;}
.x6c_c00104{left:150.535032px;}
.x5c_c00104{left:153.071677px;}
.x68_c00104{left:155.712399px;}
.x5e_c00104{left:156.827715px;}
.x1c_c00104{left:160.748076px;}
.xf_c00104{left:163.758000px;}
.x75_c00104{left:168.068724px;}
.x71_c00104{left:169.185000px;}
.x3d_c00104{left:170.714430px;}
.x2_c00104{left:171.990000px;}
.x52_c00104{left:174.105565px;}
.x7_c00104{left:175.419000px;}
.x5a_c00104{left:178.152835px;}
.x73_c00104{left:180.678000px;}
.x10_c00104{left:182.119500px;}
.x39_c00104{left:184.328370px;}
.x7e_c00104{left:186.915987px;}
.x56_c00104{left:190.525528px;}
.x3e_c00104{left:192.859575px;}
.x8_c00104{left:194.811000px;}
.x11_c00104{left:198.588000px;}
.x69_c00104{left:202.175967px;}
.x57_c00104{left:203.336772px;}
.x17_c00104{left:205.626354px;}
.x76_c00104{left:206.796849px;}
.x2a_c00104{left:208.572822px;}
.x23_c00104{left:209.907636px;}
.x3a_c00104{left:213.402482px;}
.x1d_c00104{left:215.361114px;}
.x64_c00104{left:217.073532px;}
.x58_c00104{left:219.570958px;}
.x62_c00104{left:223.606503px;}
.x47_c00104{left:225.603861px;}
.x12_c00104{left:227.064000px;}
.x9_c00104{left:229.621500px;}
.x1e_c00104{left:231.481038px;}
.x24_c00104{left:234.748542px;}
.x7b_c00104{left:238.413441px;}
.x34_c00104{left:242.363573px;}
.x4e_c00104{left:243.632092px;}
.x2b_c00104{left:244.815390px;}
.x48_c00104{left:245.854669px;}
.x18_c00104{left:249.096876px;}
.x53_c00104{left:250.529484px;}
.x5d_c00104{left:252.515572px;}
.x35_c00104{left:255.302555px;}
.x32_c00104{left:257.239803px;}
.x6d_c00104{left:260.461032px;}
.x43_c00104{left:262.600854px;}
.x65_c00104{left:263.632197px;}
.x3f_c00104{left:267.198254px;}
.x49_c00104{left:268.261235px;}
.x33_c00104{left:270.706329px;}
.x2c_c00104{left:273.366048px;}
.x1f_c00104{left:275.762436px;}
.x77_c00104{left:277.289760px;}
.x25_c00104{left:281.254926px;}
.x5f_c00104{left:282.635803px;}
.xa_c00104{left:284.731500px;}
.x6e_c00104{left:287.939532px;}
.x66_c00104{left:290.744038px;}
.x20_c00104{left:292.495842px;}
.x36_c00104{left:293.744443px;}
.x44_c00104{left:296.283354px;}
.x63_c00104{left:302.134554px;}
.x26_c00104{left:303.653886px;}
.x19_c00104{left:304.767042px;}
.x6a_c00104{left:308.278069px;}
.x3b_c00104{left:309.590630px;}
.xb_c00104{left:311.974500px;}
.x2d_c00104{left:316.870026px;}
.x54_c00104{left:319.622685px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs0_c00104{font-size:47.600000pt;}
.fs11_c00104{font-size:47.608591pt;}
.fse_c00104{font-size:52.276100pt;}
.fs12_c00104{font-size:55.079991pt;}
.fsb_c00104{font-size:56.010107pt;}
.fs6_c00104{font-size:56.937432pt;}
.fs8_c00104{font-size:56.943609pt;}
.fsc_c00104{font-size:57.877111pt;}
.fs13_c00104{font-size:57.880669pt;}
.fs5_c00104{font-size:58.804233pt;}
.fsf_c00104{font-size:58.810612pt;}
.fs1_c00104{font-size:59.733333pt;}
.fs7_c00104{font-size:59.737634pt;}
.fsd_c00104{font-size:59.744114pt;}
.fsa_c00104{font-size:60.677616pt;}
.fs9_c00104{font-size:61.611118pt;}
.fs3_c00104{font-size:62.537836pt;}
.fs2_c00104{font-size:62.540368pt;}
.fs10_c00104{font-size:62.544620pt;}
.fs4_c00104{font-size:63.471236pt;}
.fs15_c00104{font-size:63.482024pt;}
.fs16_c00104{font-size:64.415583pt;}
.fs14_c00104{font-size:101.757950pt;}
.y0_c00104{bottom:0.000000pt;}
.yfc_c00104{bottom:21.646165pt;}
.yfb_c00104{bottom:22.256243pt;}
.yfa_c00104{bottom:22.493384pt;}
.yf9_c00104{bottom:23.239389pt;}
.yf8_c00104{bottom:23.492376pt;}
.yf7_c00104{bottom:23.748765pt;}
.yf6_c00104{bottom:24.252259pt;}
.yf5_c00104{bottom:24.431376pt;}
.yf4_c00104{bottom:25.424293pt;}
.yf3_c00104{bottom:38.936112pt;}
.yf2_c00104{bottom:39.162416pt;}
.yf1_c00104{bottom:39.364525pt;}
.yf0_c00104{bottom:40.552589pt;}
.yef_c00104{bottom:40.735317pt;}
.yee_c00104{bottom:41.199941pt;}
.yed_c00104{bottom:42.223883pt;}
.yec_c00104{bottom:43.079277pt;}
.yeb_c00104{bottom:46.085296pt;}
.yea_c00104{bottom:46.401821pt;}
.ye9_c00104{bottom:49.082445pt;}
.ye8_c00104{bottom:49.787800pt;}
.ye7_c00104{bottom:50.636267pt;}
.ye6_c00104{bottom:56.065933pt;}
.ye5_c00104{bottom:56.813795pt;}
.ye4_c00104{bottom:57.298192pt;}
.ye3_c00104{bottom:59.743181pt;}
.ye2_c00104{bottom:60.158528pt;}
.ye1_c00104{bottom:61.429227pt;}
.ye0_c00104{bottom:64.287467pt;}
.ydf_c00104{bottom:65.284571pt;}
.yde_c00104{bottom:69.597056pt;}
.ydd_c00104{bottom:70.790136pt;}
.ydc_c00104{bottom:71.683432pt;}
.ydb_c00104{bottom:72.574984pt;}
.yda_c00104{bottom:73.546664pt;}
.yd9_c00104{bottom:75.462405pt;}
.yd8_c00104{bottom:76.665952pt;}
.yd7_c00104{bottom:77.386341pt;}
.yd6_c00104{bottom:80.649173pt;}
.yd5_c00104{bottom:87.031053pt;}
.yd4_c00104{bottom:89.491432pt;}
.yd3_c00104{bottom:90.145011pt;}
.yd2_c00104{bottom:92.330965pt;}
.yd1_c00104{bottom:93.156453pt;}
.yd0_c00104{bottom:93.532939pt;}
.ycf_c00104{bottom:94.325144pt;}
.yce_c00104{bottom:115.858128pt;}
.ycd_c00104{bottom:116.633525pt;}
.ycc_c00104{bottom:117.122131pt;}
.ycb_c00104{bottom:117.905477pt;}
.yca_c00104{bottom:118.408221pt;}
.yc9_c00104{bottom:119.772221pt;}
.yc8_c00104{bottom:120.774365pt;}
.yc7_c00104{bottom:121.442667pt;}
.yc6_c00104{bottom:131.121483pt;}
.yc5_c00104{bottom:131.429419pt;}
.yc4_c00104{bottom:131.602891pt;}
.yc3_c00104{bottom:132.245323pt;}
.yc2_c00104{bottom:132.348923pt;}
.yc1_c00104{bottom:132.962667pt;}
.yc0_c00104{bottom:146.640043pt;}
.ybf_c00104{bottom:147.104124pt;}
.ybe_c00104{bottom:147.852597pt;}
.ybd_c00104{bottom:148.541208pt;}
.ybc_c00104{bottom:148.960652pt;}
.ybb_c00104{bottom:149.353167pt;}
.yba_c00104{bottom:149.826545pt;}
.yb9_c00104{bottom:150.914815pt;}
.yb8_c00104{bottom:161.602071pt;}
.yb7_c00104{bottom:162.421384pt;}
.yb6_c00104{bottom:162.640412pt;}
.yb5_c00104{bottom:162.833368pt;}
.yb4_c00104{bottom:163.094344pt;}
.yb3_c00104{bottom:163.662829pt;}
.yb2_c00104{bottom:164.143543pt;}
.yb1_c00104{bottom:164.360003pt;}
.yb0_c00104{bottom:177.949327pt;}
.yaf_c00104{bottom:178.648636pt;}
.yae_c00104{bottom:179.848443pt;}
.yad_c00104{bottom:180.154315pt;}
.yac_c00104{bottom:181.929748pt;}
.yab_c00104{bottom:182.545688pt;}
.yaa_c00104{bottom:183.782920pt;}
.ya9_c00104{bottom:184.772533pt;}
.ya8_c00104{bottom:193.740055pt;}
.ya7_c00104{bottom:195.485124pt;}
.ya6_c00104{bottom:196.211829pt;}
.ya5_c00104{bottom:197.441549pt;}
.ya4_c00104{bottom:198.582245pt;}
.ya3_c00104{bottom:199.048659pt;}
.ya2_c00104{bottom:199.649191pt;}
.ya1_c00104{bottom:209.150809pt;}
.ya0_c00104{bottom:209.679884pt;}
.y9f_c00104{bottom:210.500783pt;}
.y9e_c00104{bottom:210.925483pt;}
.y9d_c00104{bottom:212.394639pt;}
.y9c_c00104{bottom:213.856593pt;}
.y9b_c00104{bottom:215.246171pt;}
.y9a_c00104{bottom:215.736528pt;}
.y99_c00104{bottom:225.443869pt;}
.y98_c00104{bottom:226.226793pt;}
.y97_c00104{bottom:227.830288pt;}
.y96_c00104{bottom:228.938960pt;}
.y95_c00104{bottom:230.089921pt;}
.y94_c00104{bottom:230.855935pt;}
.y93_c00104{bottom:240.574041pt;}
.y92_c00104{bottom:241.010441pt;}
.y91_c00104{bottom:241.708732pt;}
.y90_c00104{bottom:242.505219pt;}
.y8f_c00104{bottom:242.912044pt;}
.y8e_c00104{bottom:243.396465pt;}
.y8d_c00104{bottom:244.961916pt;}
.y8c_c00104{bottom:246.054393pt;}
.y8b_c00104{bottom:247.180236pt;}
.y8a_c00104{bottom:257.840455pt;}
.y89_c00104{bottom:258.586184pt;}
.y88_c00104{bottom:259.340299pt;}
.y87_c00104{bottom:259.629148pt;}
.y86_c00104{bottom:259.857520pt;}
.y85_c00104{bottom:260.378567pt;}
.y84_c00104{bottom:260.680640pt;}
.y83_c00104{bottom:261.309797pt;}
.y82_c00104{bottom:261.953724pt;}
.y81_c00104{bottom:262.779301pt;}
.y80_c00104{bottom:271.560889pt;}
.y7f_c00104{bottom:273.279996pt;}
.y7e_c00104{bottom:273.495148pt;}
.y7d_c00104{bottom:275.182932pt;}
.y7c_c00104{bottom:276.167175pt;}
.y7b_c00104{bottom:276.915412pt;}
.y7a_c00104{bottom:278.864935pt;}
.y79_c00104{bottom:288.088515pt;}
.y78_c00104{bottom:289.243537pt;}
.y77_c00104{bottom:289.743845pt;}
.y76_c00104{bottom:291.008308pt;}
.y75_c00104{bottom:291.769853pt;}
.y74_c00104{bottom:292.034967pt;}
.y73_c00104{bottom:292.504647pt;}
.y72_c00104{bottom:292.782933pt;}
.y6a_c00104{bottom:304.105900pt;}
.y6e_c00104{bottom:304.105904pt;}
.y69_c00104{bottom:304.106068pt;}
.y6d_c00104{bottom:304.106181pt;}
.y71_c00104{bottom:304.106401pt;}
.y6f_c00104{bottom:304.106409pt;}
.y6b_c00104{bottom:304.106457pt;}
.y68_c00104{bottom:304.106469pt;}
.y70_c00104{bottom:304.106620pt;}
.y6c_c00104{bottom:304.106664pt;}
.y67_c00104{bottom:317.920744pt;}
.y66_c00104{bottom:318.179123pt;}
.y65_c00104{bottom:318.413097pt;}
.y64_c00104{bottom:319.402465pt;}
.y63_c00104{bottom:319.589677pt;}
.y62_c00104{bottom:320.270905pt;}
.y61_c00104{bottom:320.626087pt;}
.y60_c00104{bottom:333.397768pt;}
.y5f_c00104{bottom:333.622652pt;}
.y5e_c00104{bottom:334.191512pt;}
.y5d_c00104{bottom:334.493460pt;}
.y5c_c00104{bottom:334.803489pt;}
.y5b_c00104{bottom:335.504995pt;}
.y5a_c00104{bottom:336.115224pt;}
.y59_c00104{bottom:337.366767pt;}
.y58_c00104{bottom:337.689260pt;}
.y57_c00104{bottom:338.150681pt;}
.y56_c00104{bottom:348.751749pt;}
.y55_c00104{bottom:349.061928pt;}
.y54_c00104{bottom:350.449473pt;}
.y53_c00104{bottom:350.863495pt;}
.y52_c00104{bottom:351.916712pt;}
.y51_c00104{bottom:353.515245pt;}
.y50_c00104{bottom:363.199328pt;}
.y4f_c00104{bottom:364.024305pt;}
.y4e_c00104{bottom:364.653111pt;}
.y4d_c00104{bottom:365.092121pt;}
.y4c_c00104{bottom:365.823763pt;}
.y4b_c00104{bottom:366.268347pt;}
.y4a_c00104{bottom:367.180029pt;}
.y49_c00104{bottom:367.436288pt;}
.y48_c00104{bottom:379.744827pt;}
.y47_c00104{bottom:380.188660pt;}
.y46_c00104{bottom:380.337827pt;}
.y45_c00104{bottom:381.520911pt;}
.y44_c00104{bottom:382.213433pt;}
.y43_c00104{bottom:382.443396pt;}
.y42_c00104{bottom:382.797327pt;}
.y41_c00104{bottom:393.999635pt;}
.y40_c00104{bottom:394.543115pt;}
.y3f_c00104{bottom:394.722532pt;}
.y3e_c00104{bottom:395.122025pt;}
.y3d_c00104{bottom:396.225243pt;}
.y3c_c00104{bottom:396.956560pt;}
.y3b_c00104{bottom:397.679939pt;}
.y3a_c00104{bottom:408.640384pt;}
.y39_c00104{bottom:412.075001pt;}
.y38_c00104{bottom:412.940819pt;}
.y37_c00104{bottom:413.282667pt;}
.y36_c00104{bottom:425.315141pt;}
.y35_c00104{bottom:425.817856pt;}
.y34_c00104{bottom:426.147733pt;}
.y33_c00104{bottom:426.566325pt;}
.y32_c00104{bottom:426.989301pt;}
.y31_c00104{bottom:427.539664pt;}
.y30_c00104{bottom:427.941147pt;}
.y2f_c00104{bottom:428.271808pt;}
.y2e_c00104{bottom:428.634272pt;}
.y2d_c00104{bottom:440.818325pt;}
.y2c_c00104{bottom:441.097253pt;}
.y2b_c00104{bottom:441.676000pt;}
.y2a_c00104{bottom:441.984976pt;}
.y29_c00104{bottom:442.333029pt;}
.y28_c00104{bottom:442.936096pt;}
.y27_c00104{bottom:443.591061pt;}
.y26_c00104{bottom:443.877259pt;}
.y25_c00104{bottom:444.235605pt;}
.y24_c00104{bottom:455.862160pt;}
.y23_c00104{bottom:456.084656pt;}
.y22_c00104{bottom:456.675675pt;}
.y21_c00104{bottom:456.890293pt;}
.y20_c00104{bottom:457.618187pt;}
.y1f_c00104{bottom:458.438843pt;}
.y1e_c00104{bottom:458.604560pt;}
.y1d_c00104{bottom:459.357339pt;}
.y1c_c00104{bottom:472.266981pt;}
.y1b_c00104{bottom:472.811456pt;}
.y1a_c00104{bottom:473.236469pt;}
.y19_c00104{bottom:473.468592pt;}
.y18_c00104{bottom:473.882923pt;}
.y17_c00104{bottom:474.181680pt;}
.y16_c00104{bottom:474.467403pt;}
.y15_c00104{bottom:474.721904pt;}
.y14_c00104{bottom:474.959403pt;}
.y13_c00104{bottom:488.205989pt;}
.y12_c00104{bottom:488.509733pt;}
.y11_c00104{bottom:488.685397pt;}
.y10_c00104{bottom:488.881253pt;}
.yf_c00104{bottom:489.431397pt;}
.ye_c00104{bottom:489.584101pt;}
.yd_c00104{bottom:490.128421pt;}
.yc_c00104{bottom:490.321333pt;}
.yb_c00104{bottom:502.875733pt;}
.ya_c00104{bottom:503.238973pt;}
.y9_c00104{bottom:503.973773pt;}
.y8_c00104{bottom:504.437913pt;}
.y7_c00104{bottom:504.696473pt;}
.y6_c00104{bottom:505.150633pt;}
.y5_c00104{bottom:506.004373pt;}
.y4_c00104{bottom:506.284273pt;}
.y3_c00104{bottom:506.641333pt;}
.y2_c00104{bottom:518.402667pt;}
.y1_c00104{bottom:539.040000pt;}
.h2_c00104{height:47.600000pt;}
.h13_c00104{height:47.608591pt;}
.h10_c00104{height:52.276100pt;}
.h14_c00104{height:55.079991pt;}
.hd_c00104{height:56.010107pt;}
.h8_c00104{height:56.937432pt;}
.ha_c00104{height:56.943609pt;}
.he_c00104{height:57.877111pt;}
.h15_c00104{height:57.880669pt;}
.h7_c00104{height:58.804233pt;}
.h11_c00104{height:58.810612pt;}
.h3_c00104{height:59.733333pt;}
.h9_c00104{height:59.737634pt;}
.hf_c00104{height:59.744114pt;}
.hc_c00104{height:60.677616pt;}
.hb_c00104{height:61.611118pt;}
.h5_c00104{height:62.537836pt;}
.h4_c00104{height:62.540368pt;}
.h12_c00104{height:62.544620pt;}
.h6_c00104{height:63.471236pt;}
.h17_c00104{height:63.482024pt;}
.h18_c00104{height:64.415583pt;}
.h16_c00104{height:101.757950pt;}
.h0_c00104{height:563.733333pt;}
.h1_c00104{height:564.000000pt;}
.w0_c00104{width:330.480000pt;}
.w1_c00104{width:330.666667pt;}
.x0_c00104{left:0.000000pt;}
.x4f_c00104{left:23.238973pt;}
.x40_c00104{left:25.045648pt;}
.x3_c00104{left:26.270667pt;}
.x78_c00104{left:28.142432pt;}
.x45_c00104{left:30.360052pt;}
.x30_c00104{left:31.515964pt;}
.x4a_c00104{left:35.522815pt;}
.x7c_c00104{left:40.278547pt;}
.xc_c00104{left:41.632000pt;}
.x67_c00104{left:43.035197pt;}
.x2e_c00104{left:44.957333pt;}
.x74_c00104{left:46.695237pt;}
.x13_c00104{left:47.880048pt;}
.x4_c00104{left:50.074667pt;}
.x21_c00104{left:51.453147pt;}
.x5b_c00104{left:52.376431pt;}
.x27_c00104{left:54.164965pt;}
.x60_c00104{left:56.205575pt;}
.x46_c00104{left:57.688501pt;}
.x7a_c00104{left:61.838459pt;}
.x59_c00104{left:63.395623pt;}
.x55_c00104{left:64.575360pt;}
.x41_c00104{left:66.304315pt;}
.x5_c00104{left:68.734667pt;}
.x4c_c00104{left:69.644527pt;}
.x14_c00104{left:70.977653pt;}
.x6f_c00104{left:73.761333pt;}
.x61_c00104{left:74.856780pt;}
.x1a_c00104{left:77.136213pt;}
.x28_c00104{left:79.608661pt;}
.x70_c00104{left:82.394667pt;}
.x4d_c00104{left:83.597860pt;}
.xd_c00104{left:86.992000pt;}
.x1b_c00104{left:88.167813pt;}
.x2f_c00104{left:90.526667pt;}
.x4b_c00104{left:91.452339pt;}
.x50_c00104{left:92.851067pt;}
.x37_c00104{left:94.710164pt;}
.x15_c00104{left:96.899291pt;}
.x72_c00104{left:98.602667pt;}
.xe_c00104{left:99.717333pt;}
.x3c_c00104{left:101.578727pt;}
.x7d_c00104{left:104.284328pt;}
.x1_c00104{left:107.520000pt;}
.x29_c00104{left:110.509627pt;}
.x6b_c00104{left:113.150251pt;}
.x22_c00104{left:118.659531pt;}
.x51_c00104{left:119.595840pt;}
.x38_c00104{left:120.847152pt;}
.x16_c00104{left:124.018277pt;}
.x6_c00104{left:125.650667pt;}
.x31_c00104{left:128.507336pt;}
.x79_c00104{left:129.592067pt;}
.x42_c00104{left:132.174981pt;}
.x6c_c00104{left:133.808917pt;}
.x5c_c00104{left:136.063713pt;}
.x68_c00104{left:138.411021pt;}
.x5e_c00104{left:139.402413pt;}
.x1c_c00104{left:142.887179pt;}
.xf_c00104{left:145.562667pt;}
.x75_c00104{left:149.394421pt;}
.x71_c00104{left:150.386667pt;}
.x3d_c00104{left:151.746160pt;}
.x2_c00104{left:152.880000pt;}
.x52_c00104{left:154.760503pt;}
.x7_c00104{left:155.928000pt;}
.x5a_c00104{left:158.358076pt;}
.x73_c00104{left:160.602667pt;}
.x10_c00104{left:161.884000pt;}
.x39_c00104{left:163.847440pt;}
.x7e_c00104{left:166.147544pt;}
.x56_c00104{left:169.356025pt;}
.x3e_c00104{left:171.430733pt;}
.x8_c00104{left:173.165333pt;}
.x11_c00104{left:176.522667pt;}
.x69_c00104{left:179.711971pt;}
.x57_c00104{left:180.743797pt;}
.x17_c00104{left:182.778981pt;}
.x76_c00104{left:183.819421pt;}
.x2a_c00104{left:185.398064pt;}
.x23_c00104{left:186.584565pt;}
.x3a_c00104{left:189.691095pt;}
.x1d_c00104{left:191.432101pt;}
.x64_c00104{left:192.954251pt;}
.x58_c00104{left:195.174185pt;}
.x62_c00104{left:198.761336pt;}
.x47_c00104{left:200.536765pt;}
.x12_c00104{left:201.834667pt;}
.x9_c00104{left:204.108000pt;}
.x1e_c00104{left:205.760923pt;}
.x24_c00104{left:208.665371pt;}
.x7b_c00104{left:211.923059pt;}
.x34_c00104{left:215.434287pt;}
.x4e_c00104{left:216.561860pt;}
.x2b_c00104{left:217.613680pt;}
.x48_c00104{left:218.537484pt;}
.x18_c00104{left:221.419445pt;}
.x53_c00104{left:222.692875pt;}
.x5d_c00104{left:224.458287pt;}
.x35_c00104{left:226.935604pt;}
.x32_c00104{left:228.657603pt;}
.x6d_c00104{left:231.520917pt;}
.x43_c00104{left:233.422981pt;}
.x65_c00104{left:234.339731pt;}
.x3f_c00104{left:237.509559pt;}
.x49_c00104{left:238.454431pt;}
.x33_c00104{left:240.627848pt;}
.x2c_c00104{left:242.992043pt;}
.x1f_c00104{left:245.122165pt;}
.x77_c00104{left:246.479787pt;}
.x25_c00104{left:250.004379pt;}
.x5f_c00104{left:251.231825pt;}
.xa_c00104{left:253.094667pt;}
.x6e_c00104{left:255.946251pt;}
.x66_c00104{left:258.439145pt;}
.x20_c00104{left:259.996304pt;}
.x36_c00104{left:261.106172pt;}
.x44_c00104{left:263.362981pt;}
.x63_c00104{left:268.564048pt;}
.x26_c00104{left:269.914565pt;}
.x19_c00104{left:270.904037pt;}
.x6a_c00104{left:274.024951pt;}
.x3b_c00104{left:275.191671pt;}
.xb_c00104{left:277.310667pt;}
.x2d_c00104{left:281.662245pt;}
.x54_c00104{left:284.109053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00105 {
    display:none;
  }
  .loading-indicator_c00105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00105 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00105 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00105" -> "#page-container .classname_c00105")
 */
.pf_c00105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00105 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00105 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00105 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00105 {overflow:visible;}
  }
}
.c_c00105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00105 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00105:after { /* webkit #35443 */
  content: '';
}
.t_c00105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00105 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00105 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00105 { /* info for Javascript */
  display:none;
}
.l_c00105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00105:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00105 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00105.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m73_c00105{transform:matrix(0.041358,-0.000786,0.004749,0.249955,0,0);-ms-transform:matrix(0.041358,-0.000786,0.004749,0.249955,0,0);-webkit-transform:matrix(0.041358,-0.000786,0.004749,0.249955,0,0);}
.mf_c00105{transform:matrix(0.041642,-0.000791,0.004749,0.249955,0,0);-ms-transform:matrix(0.041642,-0.000791,0.004749,0.249955,0,0);-webkit-transform:matrix(0.041642,-0.000791,0.004749,0.249955,0,0);}
.m63_c00105{transform:matrix(0.094683,-0.001799,0.004749,0.249955,0,0);-ms-transform:matrix(0.094683,-0.001799,0.004749,0.249955,0,0);-webkit-transform:matrix(0.094683,-0.001799,0.004749,0.249955,0,0);}
.mca_c00105{transform:matrix(0.095098,-0.001807,0.004749,0.249955,0,0);-ms-transform:matrix(0.095098,-0.001807,0.004749,0.249955,0,0);-webkit-transform:matrix(0.095098,-0.001807,0.004749,0.249955,0,0);}
.m9a_c00105{transform:matrix(0.101237,-0.001923,0.004749,0.249955,0,0);-ms-transform:matrix(0.101237,-0.001923,0.004749,0.249955,0,0);-webkit-transform:matrix(0.101237,-0.001923,0.004749,0.249955,0,0);}
.m13_c00105{transform:matrix(0.109010,-0.002071,0.004749,0.249955,0,0);-ms-transform:matrix(0.109010,-0.002071,0.004749,0.249955,0,0);-webkit-transform:matrix(0.109010,-0.002071,0.004749,0.249955,0,0);}
.m14_c00105{transform:matrix(0.132841,-0.002524,0.004749,0.249955,0,0);-ms-transform:matrix(0.132841,-0.002524,0.004749,0.249955,0,0);-webkit-transform:matrix(0.132841,-0.002524,0.004749,0.249955,0,0);}
.mb1_c00105{transform:matrix(0.136065,-0.002585,0.004749,0.249955,0,0);-ms-transform:matrix(0.136065,-0.002585,0.004749,0.249955,0,0);-webkit-transform:matrix(0.136065,-0.002585,0.004749,0.249955,0,0);}
.me2_c00105{transform:matrix(0.140485,-0.002669,0.004749,0.249955,0,0);-ms-transform:matrix(0.140485,-0.002669,0.004749,0.249955,0,0);-webkit-transform:matrix(0.140485,-0.002669,0.004749,0.249955,0,0);}
.m17_c00105{transform:matrix(0.145704,-0.002768,0.004749,0.249955,0,0);-ms-transform:matrix(0.145704,-0.002768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.145704,-0.002768,0.004749,0.249955,0,0);}
.m4d_c00105{transform:matrix(0.146559,-0.002785,0.004749,0.249955,0,0);-ms-transform:matrix(0.146559,-0.002785,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146559,-0.002785,0.004749,0.249955,0,0);}
.m2a_c00105{transform:matrix(0.146913,-0.002791,0.004749,0.249955,0,0);-ms-transform:matrix(0.146913,-0.002791,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146913,-0.002791,0.004749,0.249955,0,0);}
.m2d_c00105{transform:matrix(0.150708,-0.002863,0.004749,0.249955,0,0);-ms-transform:matrix(0.150708,-0.002863,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150708,-0.002863,0.004749,0.249955,0,0);}
.m4f_c00105{transform:matrix(0.151093,-0.002871,0.004749,0.249955,0,0);-ms-transform:matrix(0.151093,-0.002871,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151093,-0.002871,0.004749,0.249955,0,0);}
.m6d_c00105{transform:matrix(0.151693,-0.002882,0.004749,0.249955,0,0);-ms-transform:matrix(0.151693,-0.002882,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151693,-0.002882,0.004749,0.249955,0,0);}
.m15_c00105{transform:matrix(0.152427,-0.002896,0.004749,0.249955,0,0);-ms-transform:matrix(0.152427,-0.002896,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152427,-0.002896,0.004749,0.249955,0,0);}
.m2c_c00105{transform:matrix(0.153342,-0.002914,0.004749,0.249955,0,0);-ms-transform:matrix(0.153342,-0.002914,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153342,-0.002914,0.004749,0.249955,0,0);}
.m31_c00105{transform:matrix(0.153492,-0.002916,0.004749,0.249955,0,0);-ms-transform:matrix(0.153492,-0.002916,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153492,-0.002916,0.004749,0.249955,0,0);}
.m34_c00105{transform:matrix(0.154512,-0.002936,0.004749,0.249955,0,0);-ms-transform:matrix(0.154512,-0.002936,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154512,-0.002936,0.004749,0.249955,0,0);}
.m7d_c00105{transform:matrix(0.155522,-0.002955,0.004749,0.249955,0,0);-ms-transform:matrix(0.155522,-0.002955,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155522,-0.002955,0.004749,0.249955,0,0);}
.m9f_c00105{transform:matrix(0.155887,-0.002962,0.004749,0.249955,0,0);-ms-transform:matrix(0.155887,-0.002962,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155887,-0.002962,0.004749,0.249955,0,0);}
.m56_c00105{transform:matrix(0.156132,-0.002967,0.004749,0.249955,0,0);-ms-transform:matrix(0.156132,-0.002967,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156132,-0.002967,0.004749,0.249955,0,0);}
.m9d_c00105{transform:matrix(0.157637,-0.002995,0.004749,0.249955,0,0);-ms-transform:matrix(0.157637,-0.002995,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157637,-0.002995,0.004749,0.249955,0,0);}
.m22_c00105{transform:matrix(0.158131,-0.003004,0.004749,0.249955,0,0);-ms-transform:matrix(0.158131,-0.003004,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158131,-0.003004,0.004749,0.249955,0,0);}
.m4b_c00105{transform:matrix(0.158156,-0.003005,0.004749,0.249955,0,0);-ms-transform:matrix(0.158156,-0.003005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158156,-0.003005,0.004749,0.249955,0,0);}
.m46_c00105{transform:matrix(0.158626,-0.003014,0.004749,0.249955,0,0);-ms-transform:matrix(0.158626,-0.003014,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158626,-0.003014,0.004749,0.249955,0,0);}
.ma0_c00105{transform:matrix(0.160336,-0.003046,0.004749,0.249955,0,0);-ms-transform:matrix(0.160336,-0.003046,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160336,-0.003046,0.004749,0.249955,0,0);}
.m44_c00105{transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);-ms-transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);}
.m97_c00105{transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);-ms-transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);}
.m48_c00105{transform:matrix(0.161346,-0.003066,0.004749,0.249955,0,0);-ms-transform:matrix(0.161346,-0.003066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161346,-0.003066,0.004749,0.249955,0,0);}
.m37_c00105{transform:matrix(0.161941,-0.003077,0.004749,0.249955,0,0);-ms-transform:matrix(0.161941,-0.003077,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161941,-0.003077,0.004749,0.249955,0,0);}
.m41_c00105{transform:matrix(0.162246,-0.003083,0.004749,0.249955,0,0);-ms-transform:matrix(0.162246,-0.003083,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162246,-0.003083,0.004749,0.249955,0,0);}
.m61_c00105{transform:matrix(0.162261,-0.003083,0.004749,0.249955,0,0);-ms-transform:matrix(0.162261,-0.003083,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162261,-0.003083,0.004749,0.249955,0,0);}
.m50_c00105{transform:matrix(0.162416,-0.003086,0.004749,0.249955,0,0);-ms-transform:matrix(0.162416,-0.003086,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162416,-0.003086,0.004749,0.249955,0,0);}
.m75_c00105{transform:matrix(0.163560,-0.003108,0.004749,0.249955,0,0);-ms-transform:matrix(0.163560,-0.003108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163560,-0.003108,0.004749,0.249955,0,0);}
.mde_c00105{transform:matrix(0.163670,-0.003110,0.004749,0.249955,0,0);-ms-transform:matrix(0.163670,-0.003110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163670,-0.003110,0.004749,0.249955,0,0);}
.mc5_c00105{transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-ms-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);}
.me5_c00105{transform:matrix(0.163840,-0.003113,0.004749,0.249955,0,0);-ms-transform:matrix(0.163840,-0.003113,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163840,-0.003113,0.004749,0.249955,0,0);}
.m8a_c00105{transform:matrix(0.163955,-0.003115,0.004749,0.249955,0,0);-ms-transform:matrix(0.163955,-0.003115,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163955,-0.003115,0.004749,0.249955,0,0);}
.ma8_c00105{transform:matrix(0.164970,-0.003134,0.004749,0.249955,0,0);-ms-transform:matrix(0.164970,-0.003134,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164970,-0.003134,0.004749,0.249955,0,0);}
.m47_c00105{transform:matrix(0.165550,-0.003145,0.004749,0.249955,0,0);-ms-transform:matrix(0.165550,-0.003145,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165550,-0.003145,0.004749,0.249955,0,0);}
.m88_c00105{transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);-ms-transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);}
.mb3_c00105{transform:matrix(0.166475,-0.003163,0.004749,0.249955,0,0);-ms-transform:matrix(0.166475,-0.003163,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166475,-0.003163,0.004749,0.249955,0,0);}
.m32_c00105{transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);-ms-transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);}
.mbb_c00105{transform:matrix(0.167295,-0.003179,0.004749,0.249955,0,0);-ms-transform:matrix(0.167295,-0.003179,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167295,-0.003179,0.004749,0.249955,0,0);}
.m71_c00105{transform:matrix(0.167330,-0.003179,0.004749,0.249955,0,0);-ms-transform:matrix(0.167330,-0.003179,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167330,-0.003179,0.004749,0.249955,0,0);}
.m69_c00105{transform:matrix(0.168315,-0.003198,0.004749,0.249955,0,0);-ms-transform:matrix(0.168315,-0.003198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168315,-0.003198,0.004749,0.249955,0,0);}
.m5e_c00105{transform:matrix(0.169509,-0.003221,0.004749,0.249955,0,0);-ms-transform:matrix(0.169509,-0.003221,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169509,-0.003221,0.004749,0.249955,0,0);}
.m7b_c00105{transform:matrix(0.169689,-0.003224,0.004749,0.249955,0,0);-ms-transform:matrix(0.169689,-0.003224,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169689,-0.003224,0.004749,0.249955,0,0);}
.m16_c00105{transform:matrix(0.169859,-0.003227,0.004749,0.249955,0,0);-ms-transform:matrix(0.169859,-0.003227,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169859,-0.003227,0.004749,0.249955,0,0);}
.m51_c00105{transform:matrix(0.170714,-0.003244,0.004749,0.249955,0,0);-ms-transform:matrix(0.170714,-0.003244,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170714,-0.003244,0.004749,0.249955,0,0);}
.m3e_c00105{transform:matrix(0.170804,-0.003245,0.004749,0.249955,0,0);-ms-transform:matrix(0.170804,-0.003245,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170804,-0.003245,0.004749,0.249955,0,0);}
.m3a_c00105{transform:matrix(0.171594,-0.003260,0.004749,0.249955,0,0);-ms-transform:matrix(0.171594,-0.003260,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171594,-0.003260,0.004749,0.249955,0,0);}
.m2b_c00105{transform:matrix(0.171974,-0.003268,0.004749,0.249955,0,0);-ms-transform:matrix(0.171974,-0.003268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171974,-0.003268,0.004749,0.249955,0,0);}
.m84_c00105{transform:matrix(0.171979,-0.003268,0.004749,0.249955,0,0);-ms-transform:matrix(0.171979,-0.003268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171979,-0.003268,0.004749,0.249955,0,0);}
.mbc_c00105{transform:matrix(0.172019,-0.003268,0.004749,0.249955,0,0);-ms-transform:matrix(0.172019,-0.003268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172019,-0.003268,0.004749,0.249955,0,0);}
.m6e_c00105{transform:matrix(0.172304,-0.003274,0.004749,0.249955,0,0);-ms-transform:matrix(0.172304,-0.003274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172304,-0.003274,0.004749,0.249955,0,0);}
.m96_c00105{transform:matrix(0.172539,-0.003278,0.004749,0.249955,0,0);-ms-transform:matrix(0.172539,-0.003278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172539,-0.003278,0.004749,0.249955,0,0);}
.mee_c00105{transform:matrix(0.172674,-0.003281,0.004749,0.249955,0,0);-ms-transform:matrix(0.172674,-0.003281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172674,-0.003281,0.004749,0.249955,0,0);}
.m43_c00105{transform:matrix(0.173699,-0.003300,0.004749,0.249955,0,0);-ms-transform:matrix(0.173699,-0.003300,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173699,-0.003300,0.004749,0.249955,0,0);}
.m40_c00105{transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);-ms-transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);}
.me1_c00105{transform:matrix(0.174229,-0.003310,0.004749,0.249955,0,0);-ms-transform:matrix(0.174229,-0.003310,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174229,-0.003310,0.004749,0.249955,0,0);}
.m11_c00105{transform:matrix(0.174319,-0.003312,0.004749,0.249955,0,0);-ms-transform:matrix(0.174319,-0.003312,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174319,-0.003312,0.004749,0.249955,0,0);}
.m54_c00105{transform:matrix(0.174648,-0.003318,0.004749,0.249955,0,0);-ms-transform:matrix(0.174648,-0.003318,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174648,-0.003318,0.004749,0.249955,0,0);}
.m42_c00105{transform:matrix(0.174753,-0.003320,0.004749,0.249955,0,0);-ms-transform:matrix(0.174753,-0.003320,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174753,-0.003320,0.004749,0.249955,0,0);}
.m7_c00105{transform:matrix(0.174873,-0.003323,0.004749,0.249955,0,0);-ms-transform:matrix(0.174873,-0.003323,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174873,-0.003323,0.004749,0.249955,0,0);}
.m1d_c00105{transform:matrix(0.175298,-0.003331,0.004749,0.249955,0,0);-ms-transform:matrix(0.175298,-0.003331,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175298,-0.003331,0.004749,0.249955,0,0);}
.m19_c00105{transform:matrix(0.175463,-0.003334,0.004749,0.249955,0,0);-ms-transform:matrix(0.175463,-0.003334,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175463,-0.003334,0.004749,0.249955,0,0);}
.mcd_c00105{transform:matrix(0.176153,-0.003347,0.004749,0.249955,0,0);-ms-transform:matrix(0.176153,-0.003347,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176153,-0.003347,0.004749,0.249955,0,0);}
.mba_c00105{transform:matrix(0.176173,-0.003347,0.004749,0.249955,0,0);-ms-transform:matrix(0.176173,-0.003347,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176173,-0.003347,0.004749,0.249955,0,0);}
.me3_c00105{transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);-ms-transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);}
.md8_c00105{transform:matrix(0.176718,-0.003358,0.004749,0.249955,0,0);-ms-transform:matrix(0.176718,-0.003358,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176718,-0.003358,0.004749,0.249955,0,0);}
.m5b_c00105{transform:matrix(0.177038,-0.003364,0.004749,0.249955,0,0);-ms-transform:matrix(0.177038,-0.003364,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177038,-0.003364,0.004749,0.249955,0,0);}
.me8_c00105{transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);-ms-transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);}
.m33_c00105{transform:matrix(0.177163,-0.003366,0.004749,0.249955,0,0);-ms-transform:matrix(0.177163,-0.003366,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177163,-0.003366,0.004749,0.249955,0,0);}
.m5a_c00105{transform:matrix(0.177298,-0.003369,0.004749,0.249955,0,0);-ms-transform:matrix(0.177298,-0.003369,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177298,-0.003369,0.004749,0.249955,0,0);}
.ma9_c00105{transform:matrix(0.177423,-0.003371,0.004749,0.249955,0,0);-ms-transform:matrix(0.177423,-0.003371,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177423,-0.003371,0.004749,0.249955,0,0);}
.mb7_c00105{transform:matrix(0.177588,-0.003374,0.004749,0.249955,0,0);-ms-transform:matrix(0.177588,-0.003374,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177588,-0.003374,0.004749,0.249955,0,0);}
.m29_c00105{transform:matrix(0.177668,-0.003376,0.004749,0.249955,0,0);-ms-transform:matrix(0.177668,-0.003376,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177668,-0.003376,0.004749,0.249955,0,0);}
.m30_c00105{transform:matrix(0.178543,-0.003392,0.004749,0.249955,0,0);-ms-transform:matrix(0.178543,-0.003392,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178543,-0.003392,0.004749,0.249955,0,0);}
.m87_c00105{transform:matrix(0.178863,-0.003398,0.004749,0.249955,0,0);-ms-transform:matrix(0.178863,-0.003398,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178863,-0.003398,0.004749,0.249955,0,0);}
.m12_c00105{transform:matrix(0.179108,-0.003403,0.004749,0.249955,0,0);-ms-transform:matrix(0.179108,-0.003403,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179108,-0.003403,0.004749,0.249955,0,0);}
.m3d_c00105{transform:matrix(0.179413,-0.003409,0.004749,0.249955,0,0);-ms-transform:matrix(0.179413,-0.003409,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179413,-0.003409,0.004749,0.249955,0,0);}
.m67_c00105{transform:matrix(0.179568,-0.003412,0.004749,0.249955,0,0);-ms-transform:matrix(0.179568,-0.003412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179568,-0.003412,0.004749,0.249955,0,0);}
.mc2_c00105{transform:matrix(0.180557,-0.003431,0.004749,0.249955,0,0);-ms-transform:matrix(0.180557,-0.003431,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180557,-0.003431,0.004749,0.249955,0,0);}
.m24_c00105{transform:matrix(0.181037,-0.003440,0.004749,0.249955,0,0);-ms-transform:matrix(0.181037,-0.003440,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181037,-0.003440,0.004749,0.249955,0,0);}
.mdb_c00105{transform:matrix(0.181547,-0.003449,0.004749,0.249955,0,0);-ms-transform:matrix(0.181547,-0.003449,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181547,-0.003449,0.004749,0.249955,0,0);}
.m79_c00105{transform:matrix(0.181577,-0.003450,0.004749,0.249955,0,0);-ms-transform:matrix(0.181577,-0.003450,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181577,-0.003450,0.004749,0.249955,0,0);}
.m5f_c00105{transform:matrix(0.182067,-0.003459,0.004749,0.249955,0,0);-ms-transform:matrix(0.182067,-0.003459,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182067,-0.003459,0.004749,0.249955,0,0);}
.m92_c00105{transform:matrix(0.182197,-0.003462,0.004749,0.249955,0,0);-ms-transform:matrix(0.182197,-0.003462,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182197,-0.003462,0.004749,0.249955,0,0);}
.m4e_c00105{transform:matrix(0.182322,-0.003464,0.004749,0.249955,0,0);-ms-transform:matrix(0.182322,-0.003464,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182322,-0.003464,0.004749,0.249955,0,0);}
.m9e_c00105{transform:matrix(0.182352,-0.003465,0.004749,0.249955,0,0);-ms-transform:matrix(0.182352,-0.003465,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182352,-0.003465,0.004749,0.249955,0,0);}
.m6b_c00105{transform:matrix(0.182687,-0.003471,0.004749,0.249955,0,0);-ms-transform:matrix(0.182687,-0.003471,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182687,-0.003471,0.004749,0.249955,0,0);}
.m2e_c00105{transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-ms-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);}
.m9b_c00105{transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);-ms-transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);}
.m66_c00105{transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);}
.m72_c00105{transform:matrix(0.184852,-0.003512,0.004749,0.249955,0,0);-ms-transform:matrix(0.184852,-0.003512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184852,-0.003512,0.004749,0.249955,0,0);}
.me_c00105{transform:matrix(0.185437,-0.003523,0.004749,0.249955,0,0);-ms-transform:matrix(0.185437,-0.003523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185437,-0.003523,0.004749,0.249955,0,0);}
.m10_c00105{transform:matrix(0.185926,-0.003533,0.004749,0.249955,0,0);-ms-transform:matrix(0.185926,-0.003533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185926,-0.003533,0.004749,0.249955,0,0);}
.m8b_c00105{transform:matrix(0.186051,-0.003535,0.004749,0.249955,0,0);-ms-transform:matrix(0.186051,-0.003535,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186051,-0.003535,0.004749,0.249955,0,0);}
.m49_c00105{transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);-ms-transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);}
.mc0_c00105{transform:matrix(0.186461,-0.003543,0.004749,0.249955,0,0);-ms-transform:matrix(0.186461,-0.003543,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186461,-0.003543,0.004749,0.249955,0,0);}
.m23_c00105{transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);-ms-transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);}
.m2_c00105{transform:matrix(0.186691,-0.003547,0.004749,0.249955,0,0);-ms-transform:matrix(0.186691,-0.003547,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186691,-0.003547,0.004749,0.249955,0,0);}
.md4_c00105{transform:matrix(0.187476,-0.003562,0.004749,0.249955,0,0);-ms-transform:matrix(0.187476,-0.003562,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187476,-0.003562,0.004749,0.249955,0,0);}
.ma2_c00105{transform:matrix(0.187711,-0.003567,0.004749,0.249955,0,0);-ms-transform:matrix(0.187711,-0.003567,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187711,-0.003567,0.004749,0.249955,0,0);}
.m77_c00105{transform:matrix(0.187716,-0.003567,0.004749,0.249955,0,0);-ms-transform:matrix(0.187716,-0.003567,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187716,-0.003567,0.004749,0.249955,0,0);}
.m91_c00105{transform:matrix(0.187826,-0.003569,0.004749,0.249955,0,0);-ms-transform:matrix(0.187826,-0.003569,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187826,-0.003569,0.004749,0.249955,0,0);}
.mb0_c00105{transform:matrix(0.187896,-0.003570,0.004749,0.249955,0,0);-ms-transform:matrix(0.187896,-0.003570,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187896,-0.003570,0.004749,0.249955,0,0);}
.mc3_c00105{transform:matrix(0.187946,-0.003571,0.004749,0.249955,0,0);-ms-transform:matrix(0.187946,-0.003571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187946,-0.003571,0.004749,0.249955,0,0);}
.mb8_c00105{transform:matrix(0.188176,-0.003575,0.004749,0.249955,0,0);-ms-transform:matrix(0.188176,-0.003575,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188176,-0.003575,0.004749,0.249955,0,0);}
.m64_c00105{transform:matrix(0.188506,-0.003582,0.004749,0.249955,0,0);-ms-transform:matrix(0.188506,-0.003582,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188506,-0.003582,0.004749,0.249955,0,0);}
.mbf_c00105{transform:matrix(0.188721,-0.003586,0.004749,0.249955,0,0);-ms-transform:matrix(0.188721,-0.003586,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188721,-0.003586,0.004749,0.249955,0,0);}
.m65_c00105{transform:matrix(0.189036,-0.003592,0.004749,0.249955,0,0);-ms-transform:matrix(0.189036,-0.003592,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189036,-0.003592,0.004749,0.249955,0,0);}
.m60_c00105{transform:matrix(0.189171,-0.003594,0.004749,0.249955,0,0);-ms-transform:matrix(0.189171,-0.003594,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189171,-0.003594,0.004749,0.249955,0,0);}
.m74_c00105{transform:matrix(0.190246,-0.003615,0.004749,0.249955,0,0);-ms-transform:matrix(0.190246,-0.003615,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190246,-0.003615,0.004749,0.249955,0,0);}
.ma3_c00105{transform:matrix(0.190396,-0.003618,0.004749,0.249955,0,0);-ms-transform:matrix(0.190396,-0.003618,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190396,-0.003618,0.004749,0.249955,0,0);}
.m39_c00105{transform:matrix(0.190731,-0.003624,0.004749,0.249955,0,0);-ms-transform:matrix(0.190731,-0.003624,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190731,-0.003624,0.004749,0.249955,0,0);}
.m1a_c00105{transform:matrix(0.191235,-0.003633,0.004749,0.249955,0,0);-ms-transform:matrix(0.191235,-0.003633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191235,-0.003633,0.004749,0.249955,0,0);}
.ma6_c00105{transform:matrix(0.191265,-0.003634,0.004749,0.249955,0,0);-ms-transform:matrix(0.191265,-0.003634,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191265,-0.003634,0.004749,0.249955,0,0);}
.m98_c00105{transform:matrix(0.191765,-0.003644,0.004749,0.249955,0,0);-ms-transform:matrix(0.191765,-0.003644,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191765,-0.003644,0.004749,0.249955,0,0);}
.mef_c00105{transform:matrix(0.191860,-0.003645,0.004749,0.249955,0,0);-ms-transform:matrix(0.191860,-0.003645,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191860,-0.003645,0.004749,0.249955,0,0);}
.mec_c00105{transform:matrix(0.192295,-0.003654,0.004749,0.249955,0,0);-ms-transform:matrix(0.192295,-0.003654,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192295,-0.003654,0.004749,0.249955,0,0);}
.mb9_c00105{transform:matrix(0.192315,-0.003654,0.004749,0.249955,0,0);-ms-transform:matrix(0.192315,-0.003654,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192315,-0.003654,0.004749,0.249955,0,0);}
.m76_c00105{transform:matrix(0.192400,-0.003656,0.004749,0.249955,0,0);-ms-transform:matrix(0.192400,-0.003656,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192400,-0.003656,0.004749,0.249955,0,0);}
.mcb_c00105{transform:matrix(0.192415,-0.003656,0.004749,0.249955,0,0);-ms-transform:matrix(0.192415,-0.003656,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192415,-0.003656,0.004749,0.249955,0,0);}
.m2f_c00105{transform:matrix(0.192445,-0.003656,0.004749,0.249955,0,0);-ms-transform:matrix(0.192445,-0.003656,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192445,-0.003656,0.004749,0.249955,0,0);}
.m8_c00105{transform:matrix(0.192580,-0.003659,0.004749,0.249955,0,0);-ms-transform:matrix(0.192580,-0.003659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192580,-0.003659,0.004749,0.249955,0,0);}
.mc8_c00105{transform:matrix(0.193575,-0.003678,0.004749,0.249955,0,0);-ms-transform:matrix(0.193575,-0.003678,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193575,-0.003678,0.004749,0.249955,0,0);}
.m80_c00105{transform:matrix(0.193630,-0.003679,0.004749,0.249955,0,0);-ms-transform:matrix(0.193630,-0.003679,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193630,-0.003679,0.004749,0.249955,0,0);}
.m85_c00105{transform:matrix(0.194140,-0.003689,0.004749,0.249955,0,0);-ms-transform:matrix(0.194140,-0.003689,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194140,-0.003689,0.004749,0.249955,0,0);}
.m3f_c00105{transform:matrix(0.195065,-0.003706,0.004749,0.249955,0,0);-ms-transform:matrix(0.195065,-0.003706,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195065,-0.003706,0.004749,0.249955,0,0);}
.mb4_c00105{transform:matrix(0.195535,-0.003715,0.004749,0.249955,0,0);-ms-transform:matrix(0.195535,-0.003715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195535,-0.003715,0.004749,0.249955,0,0);}
.m6f_c00105{transform:matrix(0.195710,-0.003718,0.004749,0.249955,0,0);-ms-transform:matrix(0.195710,-0.003718,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195710,-0.003718,0.004749,0.249955,0,0);}
.mdd_c00105{transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);-ms-transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);}
.m59_c00105{transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);-ms-transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);}
.m6a_c00105{transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);-ms-transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);}
.m6_c00105{transform:matrix(0.196110,-0.003726,0.004749,0.249955,0,0);-ms-transform:matrix(0.196110,-0.003726,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196110,-0.003726,0.004749,0.249955,0,0);}
.m1_c00105{transform:matrix(0.196405,-0.003732,0.004749,0.249955,0,0);-ms-transform:matrix(0.196405,-0.003732,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196405,-0.003732,0.004749,0.249955,0,0);}
.m5c_c00105{transform:matrix(0.196420,-0.003732,0.004749,0.249955,0,0);-ms-transform:matrix(0.196420,-0.003732,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196420,-0.003732,0.004749,0.249955,0,0);}
.mb5_c00105{transform:matrix(0.196560,-0.003735,0.004749,0.249955,0,0);-ms-transform:matrix(0.196560,-0.003735,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196560,-0.003735,0.004749,0.249955,0,0);}
.mda_c00105{transform:matrix(0.196874,-0.003741,0.004749,0.249955,0,0);-ms-transform:matrix(0.196874,-0.003741,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196874,-0.003741,0.004749,0.249955,0,0);}
.m25_c00105{transform:matrix(0.196919,-0.003741,0.004749,0.249955,0,0);-ms-transform:matrix(0.196919,-0.003741,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196919,-0.003741,0.004749,0.249955,0,0);}
.m81_c00105{transform:matrix(0.197014,-0.003743,0.004749,0.249955,0,0);-ms-transform:matrix(0.197014,-0.003743,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197014,-0.003743,0.004749,0.249955,0,0);}
.m68_c00105{transform:matrix(0.197174,-0.003746,0.004749,0.249955,0,0);-ms-transform:matrix(0.197174,-0.003746,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197174,-0.003746,0.004749,0.249955,0,0);}
.m45_c00105{transform:matrix(0.197309,-0.003749,0.004749,0.249955,0,0);-ms-transform:matrix(0.197309,-0.003749,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197309,-0.003749,0.004749,0.249955,0,0);}
.mb6_c00105{transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);-ms-transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);}
.me9_c00105{transform:matrix(0.197639,-0.003755,0.004749,0.249955,0,0);-ms-transform:matrix(0.197639,-0.003755,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197639,-0.003755,0.004749,0.249955,0,0);}
.mc7_c00105{transform:matrix(0.197784,-0.003758,0.004749,0.249955,0,0);-ms-transform:matrix(0.197784,-0.003758,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197784,-0.003758,0.004749,0.249955,0,0);}
.m28_c00105{transform:matrix(0.198369,-0.003769,0.004749,0.249955,0,0);-ms-transform:matrix(0.198369,-0.003769,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198369,-0.003769,0.004749,0.249955,0,0);}
.m7f_c00105{transform:matrix(0.198414,-0.003770,0.004749,0.249955,0,0);-ms-transform:matrix(0.198414,-0.003770,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198414,-0.003770,0.004749,0.249955,0,0);}
.mc1_c00105{transform:matrix(0.198724,-0.003776,0.004749,0.249955,0,0);-ms-transform:matrix(0.198724,-0.003776,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198724,-0.003776,0.004749,0.249955,0,0);}
.mea_c00105{transform:matrix(0.198839,-0.003778,0.004749,0.249955,0,0);-ms-transform:matrix(0.198839,-0.003778,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198839,-0.003778,0.004749,0.249955,0,0);}
.me0_c00105{transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);-ms-transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);}
.m53_c00105{transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);-ms-transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);}
.ma1_c00105{transform:matrix(0.199789,-0.003796,0.004749,0.249955,0,0);-ms-transform:matrix(0.199789,-0.003796,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199789,-0.003796,0.004749,0.249955,0,0);}
.m3b_c00105{transform:matrix(0.200054,-0.003801,0.004749,0.249955,0,0);-ms-transform:matrix(0.200054,-0.003801,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200054,-0.003801,0.004749,0.249955,0,0);}
.md2_c00105{transform:matrix(0.200709,-0.003813,0.004749,0.249955,0,0);-ms-transform:matrix(0.200709,-0.003813,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200709,-0.003813,0.004749,0.249955,0,0);}
.m52_c00105{transform:matrix(0.200719,-0.003814,0.004749,0.249955,0,0);-ms-transform:matrix(0.200719,-0.003814,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200719,-0.003814,0.004749,0.249955,0,0);}
.mdf_c00105{transform:matrix(0.200814,-0.003815,0.004749,0.249955,0,0);-ms-transform:matrix(0.200814,-0.003815,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200814,-0.003815,0.004749,0.249955,0,0);}
.m93_c00105{transform:matrix(0.201664,-0.003832,0.004749,0.249955,0,0);-ms-transform:matrix(0.201664,-0.003832,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201664,-0.003832,0.004749,0.249955,0,0);}
.m1f_c00105{transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);-ms-transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);}
.ma4_c00105{transform:matrix(0.202553,-0.003849,0.004749,0.249955,0,0);-ms-transform:matrix(0.202553,-0.003849,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202553,-0.003849,0.004749,0.249955,0,0);}
.m4c_c00105{transform:matrix(0.202938,-0.003856,0.004749,0.249955,0,0);-ms-transform:matrix(0.202938,-0.003856,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202938,-0.003856,0.004749,0.249955,0,0);}
.m8d_c00105{transform:matrix(0.203188,-0.003861,0.004749,0.249955,0,0);-ms-transform:matrix(0.203188,-0.003861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203188,-0.003861,0.004749,0.249955,0,0);}
.maa_c00105{transform:matrix(0.203243,-0.003862,0.004749,0.249955,0,0);-ms-transform:matrix(0.203243,-0.003862,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203243,-0.003862,0.004749,0.249955,0,0);}
.m18_c00105{transform:matrix(0.203838,-0.003873,0.004749,0.249955,0,0);-ms-transform:matrix(0.203838,-0.003873,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203838,-0.003873,0.004749,0.249955,0,0);}
.m58_c00105{transform:matrix(0.204338,-0.003882,0.004749,0.249955,0,0);-ms-transform:matrix(0.204338,-0.003882,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204338,-0.003882,0.004749,0.249955,0,0);}
.mc9_c00105{transform:matrix(0.204723,-0.003890,0.004749,0.249955,0,0);-ms-transform:matrix(0.204723,-0.003890,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204723,-0.003890,0.004749,0.249955,0,0);}
.me4_c00105{transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);-ms-transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);}
.mae_c00105{transform:matrix(0.204968,-0.003894,0.004749,0.249955,0,0);-ms-transform:matrix(0.204968,-0.003894,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204968,-0.003894,0.004749,0.249955,0,0);}
.ma5_c00105{transform:matrix(0.205788,-0.003910,0.004749,0.249955,0,0);-ms-transform:matrix(0.205788,-0.003910,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205788,-0.003910,0.004749,0.249955,0,0);}
.m7e_c00105{transform:matrix(0.206103,-0.003916,0.004749,0.249955,0,0);-ms-transform:matrix(0.206103,-0.003916,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206103,-0.003916,0.004749,0.249955,0,0);}
.md_c00105{transform:matrix(0.206283,-0.003919,0.004749,0.249955,0,0);-ms-transform:matrix(0.206283,-0.003919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206283,-0.003919,0.004749,0.249955,0,0);}
.m57_c00105{transform:matrix(0.206758,-0.003928,0.004749,0.249955,0,0);-ms-transform:matrix(0.206758,-0.003928,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206758,-0.003928,0.004749,0.249955,0,0);}
.m70_c00105{transform:matrix(0.206888,-0.003931,0.004749,0.249955,0,0);-ms-transform:matrix(0.206888,-0.003931,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206888,-0.003931,0.004749,0.249955,0,0);}
.mcc_c00105{transform:matrix(0.207138,-0.003936,0.004749,0.249955,0,0);-ms-transform:matrix(0.207138,-0.003936,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207138,-0.003936,0.004749,0.249955,0,0);}
.med_c00105{transform:matrix(0.207243,-0.003938,0.004749,0.249955,0,0);-ms-transform:matrix(0.207243,-0.003938,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207243,-0.003938,0.004749,0.249955,0,0);}
.mbe_c00105{transform:matrix(0.207338,-0.003939,0.004749,0.249955,0,0);-ms-transform:matrix(0.207338,-0.003939,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207338,-0.003939,0.004749,0.249955,0,0);}
.m1c_c00105{transform:matrix(0.207718,-0.003947,0.004749,0.249955,0,0);-ms-transform:matrix(0.207718,-0.003947,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207718,-0.003947,0.004749,0.249955,0,0);}
.m4a_c00105{transform:matrix(0.207952,-0.003951,0.004749,0.249955,0,0);-ms-transform:matrix(0.207952,-0.003951,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207952,-0.003951,0.004749,0.249955,0,0);}
.mc4_c00105{transform:matrix(0.209232,-0.003975,0.004749,0.249955,0,0);-ms-transform:matrix(0.209232,-0.003975,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209232,-0.003975,0.004749,0.249955,0,0);}
.m82_c00105{transform:matrix(0.209637,-0.003983,0.004749,0.249955,0,0);-ms-transform:matrix(0.209637,-0.003983,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209637,-0.003983,0.004749,0.249955,0,0);}
.m8e_c00105{transform:matrix(0.210412,-0.003998,0.004749,0.249955,0,0);-ms-transform:matrix(0.210412,-0.003998,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210412,-0.003998,0.004749,0.249955,0,0);}
.m38_c00105{transform:matrix(0.211717,-0.004023,0.004749,0.249955,0,0);-ms-transform:matrix(0.211717,-0.004023,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211717,-0.004023,0.004749,0.249955,0,0);}
.m6c_c00105{transform:matrix(0.212627,-0.004040,0.004749,0.249955,0,0);-ms-transform:matrix(0.212627,-0.004040,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212627,-0.004040,0.004749,0.249955,0,0);}
.m27_c00105{transform:matrix(0.212857,-0.004044,0.004749,0.249955,0,0);-ms-transform:matrix(0.212857,-0.004044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212857,-0.004044,0.004749,0.249955,0,0);}
.mce_c00105{transform:matrix(0.212952,-0.004046,0.004749,0.249955,0,0);-ms-transform:matrix(0.212952,-0.004046,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212952,-0.004046,0.004749,0.249955,0,0);}
.m1e_c00105{transform:matrix(0.212967,-0.004046,0.004749,0.249955,0,0);-ms-transform:matrix(0.212967,-0.004046,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212967,-0.004046,0.004749,0.249955,0,0);}
.m8c_c00105{transform:matrix(0.212997,-0.004047,0.004749,0.249955,0,0);-ms-transform:matrix(0.212997,-0.004047,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212997,-0.004047,0.004749,0.249955,0,0);}
.m55_c00105{transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);-ms-transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);}
.m5d_c00105{transform:matrix(0.214371,-0.004073,0.004749,0.249955,0,0);-ms-transform:matrix(0.214371,-0.004073,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214371,-0.004073,0.004749,0.249955,0,0);}
.mc6_c00105{transform:matrix(0.216251,-0.004109,0.004749,0.249955,0,0);-ms-transform:matrix(0.216251,-0.004109,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216251,-0.004109,0.004749,0.249955,0,0);}
.m35_c00105{transform:matrix(0.217036,-0.004124,0.004749,0.249955,0,0);-ms-transform:matrix(0.217036,-0.004124,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217036,-0.004124,0.004749,0.249955,0,0);}
.m99_c00105{transform:matrix(0.217741,-0.004137,0.004749,0.249955,0,0);-ms-transform:matrix(0.217741,-0.004137,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217741,-0.004137,0.004749,0.249955,0,0);}
.mdc_c00105{transform:matrix(0.218596,-0.004153,0.004749,0.249955,0,0);-ms-transform:matrix(0.218596,-0.004153,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218596,-0.004153,0.004749,0.249955,0,0);}
.m26_c00105{transform:matrix(0.221045,-0.004200,0.004749,0.249955,0,0);-ms-transform:matrix(0.221045,-0.004200,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221045,-0.004200,0.004749,0.249955,0,0);}
.m9_c00105{transform:matrix(0.221260,-0.004204,0.004749,0.249955,0,0);-ms-transform:matrix(0.221260,-0.004204,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221260,-0.004204,0.004749,0.249955,0,0);}
.m83_c00105{transform:matrix(0.221885,-0.004216,0.004749,0.249955,0,0);-ms-transform:matrix(0.221885,-0.004216,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221885,-0.004216,0.004749,0.249955,0,0);}
.maf_c00105{transform:matrix(0.222165,-0.004221,0.004749,0.249955,0,0);-ms-transform:matrix(0.222165,-0.004221,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222165,-0.004221,0.004749,0.249955,0,0);}
.meb_c00105{transform:matrix(0.222360,-0.004225,0.004749,0.249955,0,0);-ms-transform:matrix(0.222360,-0.004225,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222360,-0.004225,0.004749,0.249955,0,0);}
.mf0_c00105{transform:matrix(0.222525,-0.004228,0.004749,0.249955,0,0);-ms-transform:matrix(0.222525,-0.004228,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222525,-0.004228,0.004749,0.249955,0,0);}
.m86_c00105{transform:matrix(0.224315,-0.004262,0.004749,0.249955,0,0);-ms-transform:matrix(0.224315,-0.004262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224315,-0.004262,0.004749,0.249955,0,0);}
.mb2_c00105{transform:matrix(0.224664,-0.004269,0.004749,0.249955,0,0);-ms-transform:matrix(0.224664,-0.004269,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224664,-0.004269,0.004749,0.249955,0,0);}
.m20_c00105{transform:matrix(0.225309,-0.004281,0.004749,0.249955,0,0);-ms-transform:matrix(0.225309,-0.004281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225309,-0.004281,0.004749,0.249955,0,0);}
.mc_c00105{transform:matrix(0.225744,-0.004289,0.004749,0.249955,0,0);-ms-transform:matrix(0.225744,-0.004289,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225744,-0.004289,0.004749,0.249955,0,0);}
.m95_c00105{transform:matrix(0.226014,-0.004294,0.004749,0.249955,0,0);-ms-transform:matrix(0.226014,-0.004294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226014,-0.004294,0.004749,0.249955,0,0);}
.mbd_c00105{transform:matrix(0.228384,-0.004339,0.004749,0.249955,0,0);-ms-transform:matrix(0.228384,-0.004339,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228384,-0.004339,0.004749,0.249955,0,0);}
.ma7_c00105{transform:matrix(0.228679,-0.004345,0.004749,0.249955,0,0);-ms-transform:matrix(0.228679,-0.004345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228679,-0.004345,0.004749,0.249955,0,0);}
.md5_c00105{transform:matrix(0.228854,-0.004348,0.004749,0.249955,0,0);-ms-transform:matrix(0.228854,-0.004348,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228854,-0.004348,0.004749,0.249955,0,0);}
.mb_c00105{transform:matrix(0.228859,-0.004348,0.004749,0.249955,0,0);-ms-transform:matrix(0.228859,-0.004348,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228859,-0.004348,0.004749,0.249955,0,0);}
.md3_c00105{transform:matrix(0.229554,-0.004362,0.004749,0.249955,0,0);-ms-transform:matrix(0.229554,-0.004362,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229554,-0.004362,0.004749,0.249955,0,0);}
.m3c_c00105{transform:matrix(0.230308,-0.004376,0.004749,0.249955,0,0);-ms-transform:matrix(0.230308,-0.004376,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230308,-0.004376,0.004749,0.249955,0,0);}
.m62_c00105{transform:matrix(0.232163,-0.004411,0.004749,0.249955,0,0);-ms-transform:matrix(0.232163,-0.004411,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232163,-0.004411,0.004749,0.249955,0,0);}
.m78_c00105{transform:matrix(0.232283,-0.004413,0.004749,0.249955,0,0);-ms-transform:matrix(0.232283,-0.004413,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232283,-0.004413,0.004749,0.249955,0,0);}
.mad_c00105{transform:matrix(0.233188,-0.004431,0.004749,0.249955,0,0);-ms-transform:matrix(0.233188,-0.004431,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233188,-0.004431,0.004749,0.249955,0,0);}
.md9_c00105{transform:matrix(0.233568,-0.004438,0.004749,0.249955,0,0);-ms-transform:matrix(0.233568,-0.004438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233568,-0.004438,0.004749,0.249955,0,0);}
.m3_c00105{transform:matrix(0.233588,-0.004438,0.004749,0.249955,0,0);-ms-transform:matrix(0.233588,-0.004438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233588,-0.004438,0.004749,0.249955,0,0);}
.md6_c00105{transform:matrix(0.234618,-0.004458,0.004749,0.249955,0,0);-ms-transform:matrix(0.234618,-0.004458,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234618,-0.004458,0.004749,0.249955,0,0);}
.md1_c00105{transform:matrix(0.239827,-0.004557,0.004749,0.249955,0,0);-ms-transform:matrix(0.239827,-0.004557,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239827,-0.004557,0.004749,0.249955,0,0);}
.m7c_c00105{transform:matrix(0.241021,-0.004579,0.004749,0.249955,0,0);-ms-transform:matrix(0.241021,-0.004579,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241021,-0.004579,0.004749,0.249955,0,0);}
.m9c_c00105{transform:matrix(0.244181,-0.004639,0.004749,0.249955,0,0);-ms-transform:matrix(0.244181,-0.004639,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244181,-0.004639,0.004749,0.249955,0,0);}
.m90_c00105{transform:matrix(0.244721,-0.004650,0.004749,0.249955,0,0);-ms-transform:matrix(0.244721,-0.004650,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244721,-0.004650,0.004749,0.249955,0,0);}
.mcf_c00105{transform:matrix(0.244886,-0.004653,0.004749,0.249955,0,0);-ms-transform:matrix(0.244886,-0.004653,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244886,-0.004653,0.004749,0.249955,0,0);}
.m89_c00105{transform:matrix(0.245216,-0.004659,0.004749,0.249955,0,0);-ms-transform:matrix(0.245216,-0.004659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245216,-0.004659,0.004749,0.249955,0,0);}
.m21_c00105{transform:matrix(0.247140,-0.004696,0.004749,0.249955,0,0);-ms-transform:matrix(0.247140,-0.004696,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247140,-0.004696,0.004749,0.249955,0,0);}
.m8f_c00105{transform:matrix(0.249480,-0.004740,0.004749,0.249955,0,0);-ms-transform:matrix(0.249480,-0.004740,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249480,-0.004740,0.004749,0.249955,0,0);}
.ma_c00105{transform:matrix(0.256929,-0.004882,0.004749,0.249955,0,0);-ms-transform:matrix(0.256929,-0.004882,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256929,-0.004882,0.004749,0.249955,0,0);}
.mab_c00105{transform:matrix(0.259543,-0.004931,0.004749,0.249955,0,0);-ms-transform:matrix(0.259543,-0.004931,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259543,-0.004931,0.004749,0.249955,0,0);}
.m0_c00105{transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);}
.me7_c00105{transform:matrix(0.270821,-0.005146,0.004749,0.249955,0,0);-ms-transform:matrix(0.270821,-0.005146,0.004749,0.249955,0,0);-webkit-transform:matrix(0.270821,-0.005146,0.004749,0.249955,0,0);}
.me6_c00105{transform:matrix(0.285069,-0.005416,0.004749,0.249955,0,0);-ms-transform:matrix(0.285069,-0.005416,0.004749,0.249955,0,0);-webkit-transform:matrix(0.285069,-0.005416,0.004749,0.249955,0,0);}
.m1b_c00105{transform:matrix(0.295697,-0.005618,0.004749,0.249955,0,0);-ms-transform:matrix(0.295697,-0.005618,0.004749,0.249955,0,0);-webkit-transform:matrix(0.295697,-0.005618,0.004749,0.249955,0,0);}
.m36_c00105{transform:matrix(0.297851,-0.005659,0.004749,0.249955,0,0);-ms-transform:matrix(0.297851,-0.005659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297851,-0.005659,0.004749,0.249955,0,0);}
.md0_c00105{transform:matrix(0.307205,-0.005837,0.004749,0.249955,0,0);-ms-transform:matrix(0.307205,-0.005837,0.004749,0.249955,0,0);-webkit-transform:matrix(0.307205,-0.005837,0.004749,0.249955,0,0);}
.m5_c00105{transform:matrix(0.348582,-0.006623,0.004749,0.249955,0,0);-ms-transform:matrix(0.348582,-0.006623,0.004749,0.249955,0,0);-webkit-transform:matrix(0.348582,-0.006623,0.004749,0.249955,0,0);}
.mf2_c00105{transform:matrix(0.349270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349270,0.000000,0.000000,0.250000,0,0);}
.md7_c00105{transform:matrix(0.374337,-0.007112,0.004749,0.249955,0,0);-ms-transform:matrix(0.374337,-0.007112,0.004749,0.249955,0,0);-webkit-transform:matrix(0.374337,-0.007112,0.004749,0.249955,0,0);}
.mac_c00105{transform:matrix(0.374777,-0.007121,0.004749,0.249955,0,0);-ms-transform:matrix(0.374777,-0.007121,0.004749,0.249955,0,0);-webkit-transform:matrix(0.374777,-0.007121,0.004749,0.249955,0,0);}
.m94_c00105{transform:matrix(0.399943,-0.007599,0.004749,0.249955,0,0);-ms-transform:matrix(0.399943,-0.007599,0.004749,0.249955,0,0);-webkit-transform:matrix(0.399943,-0.007599,0.004749,0.249955,0,0);}
.m4_c00105{transform:matrix(0.489387,-0.009298,0.004749,0.249955,0,0);-ms-transform:matrix(0.489387,-0.009298,0.004749,0.249955,0,0);-webkit-transform:matrix(0.489387,-0.009298,0.004749,0.249955,0,0);}
.mf3_c00105{transform:matrix(0.521050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521050,0.000000,0.000000,0.250000,0,0);}
.m7a_c00105{transform:matrix(1.330275,-0.025275,0.004749,0.249955,0,0);-ms-transform:matrix(1.330275,-0.025275,0.004749,0.249955,0,0);-webkit-transform:matrix(1.330275,-0.025275,0.004749,0.249955,0,0);}
.mf1_c00105{transform:matrix(3.540490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.540490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.540490,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:0.000000px;}
.fc0_c00105{color:transparent;}
.fsf_c00105{font-size:22.050000px;}
.fse_c00105{font-size:57.760423px;}
.fsc_c00105{font-size:60.910991px;}
.fs9_c00105{font-size:61.961181px;}
.fsd_c00105{font-size:63.011370px;}
.fsa_c00105{font-size:64.061560px;}
.fs3_c00105{font-size:65.111749px;}
.fs1_c00105{font-size:66.161939px;}
.fs0_c00105{font-size:67.200000px;}
.fs8_c00105{font-size:67.212129px;}
.fs6_c00105{font-size:69.312508px;}
.fs4_c00105{font-size:70.362697px;}
.fsb_c00105{font-size:71.412887px;}
.fs7_c00105{font-size:72.463076px;}
.fs5_c00105{font-size:73.513266px;}
.fs2_c00105{font-size:75.613645px;}
.y0_c00105{bottom:0.000000px;}
.yf3_c00105{bottom:22.302948px;}
.yec_c00105{bottom:22.303050px;}
.yee_c00105{bottom:22.303542px;}
.yf0_c00105{bottom:22.303563px;}
.yf1_c00105{bottom:22.303626px;}
.yed_c00105{bottom:22.303629px;}
.yf2_c00105{bottom:22.303631px;}
.yeb_c00105{bottom:22.303677px;}
.yef_c00105{bottom:22.303947px;}
.ye1_c00105{bottom:37.976316px;}
.ye2_c00105{bottom:38.275898px;}
.ye3_c00105{bottom:39.062586px;}
.ye4_c00105{bottom:39.429893px;}
.ye5_c00105{bottom:39.714843px;}
.ye6_c00105{bottom:40.388126px;}
.ye7_c00105{bottom:41.158121px;}
.ye8_c00105{bottom:41.511156px;}
.ye9_c00105{bottom:41.845902px;}
.yea_c00105{bottom:42.624002px;}
.ydb_c00105{bottom:57.148685px;}
.ydc_c00105{bottom:57.765084px;}
.ydd_c00105{bottom:58.413426px;}
.yde_c00105{bottom:58.957067px;}
.ydf_c00105{bottom:59.757734px;}
.ye0_c00105{bottom:60.292526px;}
.yd4_c00105{bottom:74.702983px;}
.yd5_c00105{bottom:75.341365px;}
.yd6_c00105{bottom:75.950761px;}
.yd7_c00105{bottom:76.196470px;}
.yd8_c00105{bottom:76.490743px;}
.yd9_c00105{bottom:77.981113px;}
.yda_c00105{bottom:78.273399px;}
.yce_c00105{bottom:91.448919px;}
.ycf_c00105{bottom:91.777467px;}
.yd0_c00105{bottom:93.562764px;}
.yd1_c00105{bottom:94.762785px;}
.yd2_c00105{bottom:96.307314px;}
.yd3_c00105{bottom:97.021324px;}
.yc5_c00105{bottom:108.457923px;}
.yc6_c00105{bottom:108.733235px;}
.yc7_c00105{bottom:109.456579px;}
.yc8_c00105{bottom:109.660732px;}
.yc9_c00105{bottom:110.029008px;}
.yca_c00105{bottom:111.466746px;}
.ycb_c00105{bottom:111.683289px;}
.ycc_c00105{bottom:112.246900px;}
.ycd_c00105{bottom:112.923667px;}
.ybc_c00105{bottom:126.010977px;}
.ybd_c00105{bottom:126.715056px;}
.ybe_c00105{bottom:127.232197px;}
.ybf_c00105{bottom:127.523519px;}
.yc0_c00105{bottom:127.783006px;}
.yc1_c00105{bottom:128.448356px;}
.yc2_c00105{bottom:128.637612px;}
.yc3_c00105{bottom:129.178186px;}
.yc4_c00105{bottom:130.086412px;}
.yb5_c00105{bottom:145.184866px;}
.yb6_c00105{bottom:145.501938px;}
.yb7_c00105{bottom:145.825824px;}
.yb8_c00105{bottom:145.989163px;}
.yb9_c00105{bottom:146.746969px;}
.yba_c00105{bottom:147.002268px;}
.ybb_c00105{bottom:147.847869px;}
.yb2_c00105{bottom:164.198179px;}
.yb3_c00105{bottom:164.198363px;}
.yb1_c00105{bottom:164.198409px;}
.yb0_c00105{bottom:164.198635px;}
.yb4_c00105{bottom:164.198718px;}
.ya7_c00105{bottom:180.832095px;}
.ya8_c00105{bottom:181.299870px;}
.ya9_c00105{bottom:181.520745px;}
.yaa_c00105{bottom:182.103170px;}
.yab_c00105{bottom:182.240955px;}
.yac_c00105{bottom:182.476079px;}
.yad_c00105{bottom:182.651943px;}
.yae_c00105{bottom:183.329472px;}
.yaf_c00105{bottom:183.779796px;}
.ya5_c00105{bottom:200.010624px;}
.ya3_c00105{bottom:200.010636px;}
.ya6_c00105{bottom:200.010686px;}
.ya2_c00105{bottom:200.011023px;}
.ya4_c00105{bottom:200.011331px;}
.ya1_c00105{bottom:200.011469px;}
.ya0_c00105{bottom:200.012180px;}
.y9f_c00105{bottom:200.012475px;}
.y9e_c00105{bottom:200.012796px;}
.y9b_c00105{bottom:217.847489px;}
.y9d_c00105{bottom:217.847843px;}
.y97_c00105{bottom:217.848089px;}
.y9c_c00105{bottom:217.848131px;}
.y9a_c00105{bottom:217.848197px;}
.y98_c00105{bottom:217.848578px;}
.y99_c00105{bottom:217.848882px;}
.y91_c00105{bottom:234.787745px;}
.y95_c00105{bottom:234.788082px;}
.y93_c00105{bottom:234.788088px;}
.y92_c00105{bottom:234.788474px;}
.y94_c00105{bottom:234.788517px;}
.y96_c00105{bottom:234.788729px;}
.y88_c00105{bottom:252.116219px;}
.y89_c00105{bottom:252.514917px;}
.y8a_c00105{bottom:252.770298px;}
.y8b_c00105{bottom:253.063911px;}
.y8c_c00105{bottom:253.191962px;}
.y8d_c00105{bottom:253.405203px;}
.y8e_c00105{bottom:254.220821px;}
.y8f_c00105{bottom:254.356419px;}
.y90_c00105{bottom:254.876924px;}
.y81_c00105{bottom:268.868311px;}
.y82_c00105{bottom:269.180974px;}
.y83_c00105{bottom:269.864488px;}
.y84_c00105{bottom:270.663844px;}
.y85_c00105{bottom:270.806784px;}
.y86_c00105{bottom:271.638769px;}
.y87_c00105{bottom:271.903197px;}
.y80_c00105{bottom:288.022290px;}
.y7f_c00105{bottom:288.023007px;}
.y7e_c00105{bottom:288.023682px;}
.y7c_c00105{bottom:288.024343px;}
.y7d_c00105{bottom:288.024399px;}
.y72_c00105{bottom:302.090499px;}
.y73_c00105{bottom:302.882875px;}
.y74_c00105{bottom:303.212091px;}
.y75_c00105{bottom:303.825253px;}
.y76_c00105{bottom:304.009465px;}
.y77_c00105{bottom:304.995555px;}
.y78_c00105{bottom:305.297428px;}
.y79_c00105{bottom:306.239977px;}
.y7a_c00105{bottom:306.604041px;}
.y7b_c00105{bottom:307.416720px;}
.y6a_c00105{bottom:321.259350px;}
.y6b_c00105{bottom:321.789187px;}
.y6c_c00105{bottom:322.026042px;}
.y6d_c00105{bottom:322.536640px;}
.y6e_c00105{bottom:322.765861px;}
.y6f_c00105{bottom:323.352628px;}
.y70_c00105{bottom:323.724597px;}
.y71_c00105{bottom:324.076269px;}
.y65_c00105{bottom:338.544309px;}
.y66_c00105{bottom:339.368820px;}
.y67_c00105{bottom:340.377219px;}
.y68_c00105{bottom:340.805847px;}
.y69_c00105{bottom:342.203962px;}
.y5f_c00105{bottom:356.094631px;}
.y60_c00105{bottom:356.643538px;}
.y61_c00105{bottom:357.234160px;}
.y62_c00105{bottom:358.477817px;}
.y63_c00105{bottom:358.724295px;}
.y64_c00105{bottom:360.142687px;}
.y59_c00105{bottom:374.455926px;}
.y5a_c00105{bottom:375.584052px;}
.y5b_c00105{bottom:375.832964px;}
.y5c_c00105{bottom:376.371699px;}
.y5d_c00105{bottom:377.127432px;}
.y5e_c00105{bottom:377.859768px;}
.y53_c00105{bottom:393.759135px;}
.y58_c00105{bottom:393.759186px;}
.y54_c00105{bottom:393.759534px;}
.y57_c00105{bottom:393.759621px;}
.y56_c00105{bottom:393.759768px;}
.y55_c00105{bottom:393.760238px;}
.y4b_c00105{bottom:409.833628px;}
.y4c_c00105{bottom:410.180958px;}
.y4d_c00105{bottom:410.361652px;}
.y4e_c00105{bottom:411.030408px;}
.y4f_c00105{bottom:411.205998px;}
.y50_c00105{bottom:411.915760px;}
.y51_c00105{bottom:412.248308px;}
.y52_c00105{bottom:412.545037px;}
.y41_c00105{bottom:426.847393px;}
.y42_c00105{bottom:427.079968px;}
.y43_c00105{bottom:427.526908px;}
.y44_c00105{bottom:427.860384px;}
.y45_c00105{bottom:428.421415px;}
.y46_c00105{bottom:428.852265px;}
.y47_c00105{bottom:429.304003px;}
.y48_c00105{bottom:429.503866px;}
.y49_c00105{bottom:429.799508px;}
.y4a_c00105{bottom:430.168213px;}
.yf4_c00105{bottom:434.430000px;}
.y40_c00105{bottom:446.706857px;}
.y3f_c00105{bottom:446.706939px;}
.y3e_c00105{bottom:446.707656px;}
.y3b_c00105{bottom:446.707667px;}
.y3a_c00105{bottom:446.707986px;}
.y3c_c00105{bottom:446.708242px;}
.y3d_c00105{bottom:446.708343px;}
.y39_c00105{bottom:446.708698px;}
.y32_c00105{bottom:462.493996px;}
.y33_c00105{bottom:462.726734px;}
.y34_c00105{bottom:463.016086px;}
.y35_c00105{bottom:463.604727px;}
.y36_c00105{bottom:464.144727px;}
.y37_c00105{bottom:464.895981px;}
.y38_c00105{bottom:465.017103px;}
.y29_c00105{bottom:479.508973px;}
.y2a_c00105{bottom:480.434843px;}
.y2b_c00105{bottom:480.763527px;}
.y2c_c00105{bottom:480.959646px;}
.y2d_c00105{bottom:481.303537px;}
.y2e_c00105{bottom:481.500996px;}
.y2f_c00105{bottom:482.044864px;}
.y30_c00105{bottom:482.413741px;}
.y31_c00105{bottom:482.974574px;}
.y21_c00105{bottom:496.792293px;}
.y22_c00105{bottom:497.409151px;}
.y23_c00105{bottom:497.570283px;}
.y24_c00105{bottom:497.850003px;}
.y25_c00105{bottom:498.580584px;}
.y26_c00105{bottom:498.826573px;}
.y27_c00105{bottom:499.584395px;}
.y28_c00105{bottom:500.059168px;}
.y19_c00105{bottom:511.918469px;}
.y1a_c00105{bottom:513.077649px;}
.y1b_c00105{bottom:513.544393px;}
.y1c_c00105{bottom:514.415952px;}
.y1d_c00105{bottom:514.647058px;}
.y1e_c00105{bottom:516.022127px;}
.y1f_c00105{bottom:516.329955px;}
.y20_c00105{bottom:517.437921px;}
.y10_c00105{bottom:531.625948px;}
.y11_c00105{bottom:531.890456px;}
.y12_c00105{bottom:532.071577px;}
.y13_c00105{bottom:532.890768px;}
.y14_c00105{bottom:533.505657px;}
.y15_c00105{bottom:533.745919px;}
.y16_c00105{bottom:533.961139px;}
.y17_c00105{bottom:534.144780px;}
.y18_c00105{bottom:535.043145px;}
.y9_c00105{bottom:549.179394px;}
.ya_c00105{bottom:549.879673px;}
.yb_c00105{bottom:550.513702px;}
.yc_c00105{bottom:551.091754px;}
.yd_c00105{bottom:551.270415px;}
.ye_c00105{bottom:552.207099px;}
.yf_c00105{bottom:552.449766px;}
.y2_c00105{bottom:564.574500px;}
.y3_c00105{bottom:565.072424px;}
.y4_c00105{bottom:565.406786px;}
.y5_c00105{bottom:567.135510px;}
.y6_c00105{bottom:567.515443px;}
.y7_c00105{bottom:568.305093px;}
.y8_c00105{bottom:569.977359px;}
.y1_c00105{bottom:584.137500px;}
.h11_c00105{height:22.050000px;}
.h10_c00105{height:57.760423px;}
.he_c00105{height:60.910991px;}
.hb_c00105{height:61.961181px;}
.hf_c00105{height:63.011370px;}
.hc_c00105{height:64.061560px;}
.h5_c00105{height:65.111749px;}
.h3_c00105{height:66.161939px;}
.h2_c00105{height:67.200000px;}
.ha_c00105{height:67.212129px;}
.h8_c00105{height:69.312508px;}
.h6_c00105{height:70.362697px;}
.hd_c00105{height:71.412887px;}
.h9_c00105{height:72.463076px;}
.h7_c00105{height:73.513266px;}
.h4_c00105{height:75.613645px;}
.h0_c00105{height:637.470000px;}
.h1_c00105{height:637.500000px;}
.w0_c00105{width:371.790000px;}
.w1_c00105{width:372.000000px;}
.x0_c00105{left:0.000000px;}
.x61_c00105{left:39.951937px;}
.x2a_c00105{left:43.057215px;}
.x30_c00105{left:44.815662px;}
.x2_c00105{left:46.146000px;}
.x23_c00105{left:47.418621px;}
.x67_c00105{left:48.440302px;}
.x9_c00105{left:49.565635px;}
.x7f_c00105{left:62.901486px;}
.x79_c00105{left:64.525534px;}
.x2b_c00105{left:66.284176px;}
.x10_c00105{left:69.009523px;}
.x3_c00105{left:72.352500px;}
.x57_c00105{left:76.002726px;}
.x3d_c00105{left:80.272734px;}
.x11_c00105{left:84.149547px;}
.x5a_c00105{left:86.530566px;}
.x31_c00105{left:88.293866px;}
.x4_c00105{left:89.950500px;}
.x62_c00105{left:92.611947px;}
.x2c_c00105{left:95.176107px;}
.x6c_c00105{left:96.225577px;}
.x3e_c00105{left:98.391341px;}
.x4d_c00105{left:100.839493px;}
.x1d_c00105{left:102.160395px;}
.x38_c00105{left:103.791267px;}
.x4b_c00105{left:105.224683px;}
.x16_c00105{left:106.416837px;}
.xa_c00105{left:107.903887px;}
.x80_c00105{left:110.159529px;}
.x5b_c00105{left:112.133955px;}
.x63_c00105{left:115.025541px;}
.x1e_c00105{left:116.801118px;}
.x5c_c00105{left:119.888292px;}
.x69_c00105{left:122.588986px;}
.x24_c00105{left:124.579881px;}
.x76_c00105{left:127.933257px;}
.x48_c00105{left:129.543641px;}
.x17_c00105{left:130.982337px;}
.x70_c00105{left:134.336830px;}
.x6d_c00105{left:136.795464px;}
.x58_c00105{left:138.118159px;}
.x50_c00105{left:140.909145px;}
.x1f_c00105{left:142.184965px;}
.x5e_c00105{left:145.540791px;}
.x32_c00105{left:149.325396px;}
.x51_c00105{left:151.157344px;}
.x12_c00105{left:152.458138px;}
.x2d_c00105{left:154.035667px;}
.x71_c00105{left:155.197825px;}
.x7a_c00105{left:158.488534px;}
.xb_c00105{left:160.701898px;}
.x45_c00105{left:162.139153px;}
.x3f_c00105{left:165.337297px;}
.x1_c00105{left:166.860000px;}
.x25_c00105{left:168.312195px;}
.x7c_c00105{left:171.886710px;}
.x72_c00105{left:173.751592px;}
.x4e_c00105{left:175.639290px;}
.x18_c00105{left:176.853837px;}
.x39_c00105{left:178.354185px;}
.x33_c00105{left:179.840397px;}
.x5_c00105{left:180.936000px;}
.x40_c00105{left:182.950318px;}
.x56_c00105{left:184.969653px;}
.x64_c00105{left:187.938375px;}
.x19_c00105{left:189.017337px;}
.x6a_c00105{left:194.691507px;}
.x26_c00105{left:196.994514px;}
.x4f_c00105{left:198.602223px;}
.x6_c00105{left:200.932500px;}
.x13_c00105{left:203.695950px;}
.x52_c00105{left:205.978899px;}
.x46_c00105{left:206.999610px;}
.xc_c00105{left:208.816282px;}
.x59_c00105{left:210.753189px;}
.x27_c00105{left:213.468208px;}
.x49_c00105{left:218.376077px;}
.x6e_c00105{left:221.312221px;}
.x53_c00105{left:222.735712px;}
.xd_c00105{left:223.747778px;}
.x20_c00105{left:231.017974px;}
.x65_c00105{left:232.496949px;}
.x73_c00105{left:234.841906px;}
.x34_c00105{left:236.550360px;}
.x44_c00105{left:237.631410px;}
.x7_c00105{left:242.493000px;}
.x5d_c00105{left:245.459607px;}
.x77_c00105{left:248.258877px;}
.x35_c00105{left:249.782148px;}
.x3a_c00105{left:251.815932px;}
.x41_c00105{left:253.949959px;}
.x14_c00105{left:256.920018px;}
.x28_c00105{left:258.835751px;}
.x1a_c00105{left:261.389337px;}
.x78_c00105{left:262.656960px;}
.x7e_c00105{left:264.509358px;}
.x81_c00105{left:265.978759px;}
.x36_c00105{left:268.145789px;}
.x47_c00105{left:269.914961px;}
.x74_c00105{left:273.481083px;}
.x54_c00105{left:275.107710px;}
.x1b_c00105{left:277.590837px;}
.x5f_c00105{left:281.375811px;}
.x2e_c00105{left:283.123727px;}
.x42_c00105{left:287.168631px;}
.x29_c00105{left:289.622854px;}
.x6f_c00105{left:291.800598px;}
.x3b_c00105{left:293.137433px;}
.x2f_c00105{left:295.263807px;}
.x68_c00105{left:298.266024px;}
.x21_c00105{left:299.887434px;}
.xe_c00105{left:301.794151px;}
.x7b_c00105{left:302.938534px;}
.x4c_c00105{left:307.751421px;}
.x66_c00105{left:309.461236px;}
.x37_c00105{left:311.894078px;}
.x43_c00105{left:316.843704px;}
.x7d_c00105{left:320.703517px;}
.xf_c00105{left:321.989830px;}
.x3c_c00105{left:323.915537px;}
.x82_c00105{left:329.439673px;}
.x8_c00105{left:330.507000px;}
.x15_c00105{left:331.764964px;}
.x6b_c00105{left:334.576480px;}
.x1c_c00105{left:335.904837px;}
.x4a_c00105{left:337.196334px;}
.x75_c00105{left:338.341239px;}
.x55_c00105{left:340.516464px;}
.x22_c00105{left:343.039989px;}
.x60_c00105{left:345.647010px;}
.x84_c00105{left:364.500000px;}
.x83_c00105{left:368.010000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
.fsf_c00105{font-size:19.600000pt;}
.fse_c00105{font-size:51.342598pt;}
.fsc_c00105{font-size:54.143104pt;}
.fs9_c00105{font-size:55.076605pt;}
.fsd_c00105{font-size:56.010107pt;}
.fsa_c00105{font-size:56.943609pt;}
.fs3_c00105{font-size:57.877111pt;}
.fs1_c00105{font-size:58.810612pt;}
.fs0_c00105{font-size:59.733333pt;}
.fs8_c00105{font-size:59.744114pt;}
.fs6_c00105{font-size:61.611118pt;}
.fs4_c00105{font-size:62.544620pt;}
.fsb_c00105{font-size:63.478121pt;}
.fs7_c00105{font-size:64.411623pt;}
.fs5_c00105{font-size:65.345125pt;}
.fs2_c00105{font-size:67.212129pt;}
.y0_c00105{bottom:0.000000pt;}
.yf3_c00105{bottom:19.824843pt;}
.yec_c00105{bottom:19.824933pt;}
.yee_c00105{bottom:19.825371pt;}
.yf0_c00105{bottom:19.825389pt;}
.yf1_c00105{bottom:19.825445pt;}
.yed_c00105{bottom:19.825448pt;}
.yf2_c00105{bottom:19.825449pt;}
.yeb_c00105{bottom:19.825491pt;}
.yef_c00105{bottom:19.825731pt;}
.ye1_c00105{bottom:33.756725pt;}
.ye2_c00105{bottom:34.023020pt;}
.ye3_c00105{bottom:34.722299pt;}
.ye4_c00105{bottom:35.048793pt;}
.ye5_c00105{bottom:35.302083pt;}
.ye6_c00105{bottom:35.900556pt;}
.ye7_c00105{bottom:36.584996pt;}
.ye8_c00105{bottom:36.898805pt;}
.ye9_c00105{bottom:37.196357pt;}
.yea_c00105{bottom:37.888001pt;}
.ydb_c00105{bottom:50.798831pt;}
.ydc_c00105{bottom:51.346741pt;}
.ydd_c00105{bottom:51.923045pt;}
.yde_c00105{bottom:52.406281pt;}
.ydf_c00105{bottom:53.117985pt;}
.ye0_c00105{bottom:53.593356pt;}
.yd4_c00105{bottom:66.402652pt;}
.yd5_c00105{bottom:66.970103pt;}
.yd6_c00105{bottom:67.511788pt;}
.yd7_c00105{bottom:67.730196pt;}
.yd8_c00105{bottom:67.991772pt;}
.yd9_c00105{bottom:69.316545pt;}
.yda_c00105{bottom:69.576355pt;}
.yce_c00105{bottom:81.287928pt;}
.ycf_c00105{bottom:81.579971pt;}
.yd0_c00105{bottom:83.166901pt;}
.yd1_c00105{bottom:84.233587pt;}
.yd2_c00105{bottom:85.606501pt;}
.yd3_c00105{bottom:86.241177pt;}
.yc5_c00105{bottom:96.407043pt;}
.yc6_c00105{bottom:96.651764pt;}
.yc7_c00105{bottom:97.294737pt;}
.yc8_c00105{bottom:97.476207pt;}
.yc9_c00105{bottom:97.803563pt;}
.yca_c00105{bottom:99.081552pt;}
.ycb_c00105{bottom:99.274035pt;}
.ycc_c00105{bottom:99.775023pt;}
.ycd_c00105{bottom:100.376593pt;}
.ybc_c00105{bottom:112.009757pt;}
.ybd_c00105{bottom:112.635605pt;}
.ybe_c00105{bottom:113.095287pt;}
.ybf_c00105{bottom:113.354239pt;}
.yc0_c00105{bottom:113.584895pt;}
.yc1_c00105{bottom:114.176316pt;}
.yc2_c00105{bottom:114.344544pt;}
.yc3_c00105{bottom:114.825055pt;}
.yc4_c00105{bottom:115.632367pt;}
.yb5_c00105{bottom:129.053215pt;}
.yb6_c00105{bottom:129.335056pt;}
.yb7_c00105{bottom:129.622955pt;}
.yb8_c00105{bottom:129.768145pt;}
.yb9_c00105{bottom:130.441751pt;}
.yba_c00105{bottom:130.668683pt;}
.ybb_c00105{bottom:131.420328pt;}
.yb2_c00105{bottom:145.953937pt;}
.yb3_c00105{bottom:145.954100pt;}
.yb1_c00105{bottom:145.954141pt;}
.yb0_c00105{bottom:145.954343pt;}
.yb4_c00105{bottom:145.954416pt;}
.ya7_c00105{bottom:160.739640pt;}
.ya8_c00105{bottom:161.155440pt;}
.ya9_c00105{bottom:161.351773pt;}
.yaa_c00105{bottom:161.869484pt;}
.yab_c00105{bottom:161.991960pt;}
.yac_c00105{bottom:162.200959pt;}
.yad_c00105{bottom:162.357283pt;}
.yae_c00105{bottom:162.959531pt;}
.yaf_c00105{bottom:163.359819pt;}
.ya5_c00105{bottom:177.787221pt;}
.ya3_c00105{bottom:177.787232pt;}
.ya6_c00105{bottom:177.787276pt;}
.ya2_c00105{bottom:177.787576pt;}
.ya4_c00105{bottom:177.787849pt;}
.ya1_c00105{bottom:177.787972pt;}
.ya0_c00105{bottom:177.788604pt;}
.y9f_c00105{bottom:177.788867pt;}
.y9e_c00105{bottom:177.789152pt;}
.y9b_c00105{bottom:193.642212pt;}
.y9d_c00105{bottom:193.642527pt;}
.y97_c00105{bottom:193.642745pt;}
.y9c_c00105{bottom:193.642783pt;}
.y9a_c00105{bottom:193.642841pt;}
.y98_c00105{bottom:193.643180pt;}
.y99_c00105{bottom:193.643451pt;}
.y91_c00105{bottom:208.700217pt;}
.y95_c00105{bottom:208.700517pt;}
.y93_c00105{bottom:208.700523pt;}
.y92_c00105{bottom:208.700865pt;}
.y94_c00105{bottom:208.700904pt;}
.y96_c00105{bottom:208.701092pt;}
.y88_c00105{bottom:224.103305pt;}
.y89_c00105{bottom:224.457704pt;}
.y8a_c00105{bottom:224.684709pt;}
.y8b_c00105{bottom:224.945699pt;}
.y8c_c00105{bottom:225.059521pt;}
.y8d_c00105{bottom:225.249069pt;}
.y8e_c00105{bottom:225.974063pt;}
.y8f_c00105{bottom:226.094595pt;}
.y90_c00105{bottom:226.557265pt;}
.y81_c00105{bottom:238.994055pt;}
.y82_c00105{bottom:239.271977pt;}
.y83_c00105{bottom:239.879545pt;}
.y84_c00105{bottom:240.590084pt;}
.y85_c00105{bottom:240.717141pt;}
.y86_c00105{bottom:241.456684pt;}
.y87_c00105{bottom:241.691731pt;}
.y80_c00105{bottom:256.019813pt;}
.y7f_c00105{bottom:256.020451pt;}
.y7e_c00105{bottom:256.021051pt;}
.y7c_c00105{bottom:256.021639pt;}
.y7d_c00105{bottom:256.021688pt;}
.y72_c00105{bottom:268.524888pt;}
.y73_c00105{bottom:269.229223pt;}
.y74_c00105{bottom:269.521859pt;}
.y75_c00105{bottom:270.066892pt;}
.y76_c00105{bottom:270.230636pt;}
.y77_c00105{bottom:271.107160pt;}
.y78_c00105{bottom:271.375492pt;}
.y79_c00105{bottom:272.213313pt;}
.y7a_c00105{bottom:272.536925pt;}
.y7b_c00105{bottom:273.259307pt;}
.y6a_c00105{bottom:285.563867pt;}
.y6b_c00105{bottom:286.034833pt;}
.y6c_c00105{bottom:286.245371pt;}
.y6d_c00105{bottom:286.699236pt;}
.y6e_c00105{bottom:286.902988pt;}
.y6f_c00105{bottom:287.424559pt;}
.y70_c00105{bottom:287.755197pt;}
.y71_c00105{bottom:288.067795pt;}
.y65_c00105{bottom:300.928275pt;}
.y66_c00105{bottom:301.661173pt;}
.y67_c00105{bottom:302.557528pt;}
.y68_c00105{bottom:302.938531pt;}
.y69_c00105{bottom:304.181300pt;}
.y5f_c00105{bottom:316.528561pt;}
.y60_c00105{bottom:317.016479pt;}
.y61_c00105{bottom:317.541476pt;}
.y62_c00105{bottom:318.646948pt;}
.y63_c00105{bottom:318.866040pt;}
.y64_c00105{bottom:320.126833pt;}
.y59_c00105{bottom:332.849712pt;}
.y5a_c00105{bottom:333.852491pt;}
.y5b_c00105{bottom:334.073745pt;}
.y5c_c00105{bottom:334.552621pt;}
.y5d_c00105{bottom:335.224384pt;}
.y5e_c00105{bottom:335.875349pt;}
.y53_c00105{bottom:350.008120pt;}
.y58_c00105{bottom:350.008165pt;}
.y54_c00105{bottom:350.008475pt;}
.y57_c00105{bottom:350.008552pt;}
.y56_c00105{bottom:350.008683pt;}
.y55_c00105{bottom:350.009100pt;}
.y4b_c00105{bottom:364.296559pt;}
.y4c_c00105{bottom:364.605296pt;}
.y4d_c00105{bottom:364.765913pt;}
.y4e_c00105{bottom:365.360363pt;}
.y4f_c00105{bottom:365.516443pt;}
.y50_c00105{bottom:366.147343pt;}
.y51_c00105{bottom:366.442940pt;}
.y52_c00105{bottom:366.706700pt;}
.y41_c00105{bottom:379.419905pt;}
.y42_c00105{bottom:379.626639pt;}
.y43_c00105{bottom:380.023919pt;}
.y44_c00105{bottom:380.320341pt;}
.y45_c00105{bottom:380.819036pt;}
.y46_c00105{bottom:381.202013pt;}
.y47_c00105{bottom:381.603559pt;}
.y48_c00105{bottom:381.781215pt;}
.y49_c00105{bottom:382.044007pt;}
.y4a_c00105{bottom:382.371745pt;}
.yf4_c00105{bottom:386.160000pt;}
.y40_c00105{bottom:397.072761pt;}
.y3f_c00105{bottom:397.072835pt;}
.y3e_c00105{bottom:397.073472pt;}
.y3b_c00105{bottom:397.073481pt;}
.y3a_c00105{bottom:397.073765pt;}
.y3c_c00105{bottom:397.073993pt;}
.y3d_c00105{bottom:397.074083pt;}
.y39_c00105{bottom:397.074399pt;}
.y32_c00105{bottom:411.105775pt;}
.y33_c00105{bottom:411.312652pt;}
.y34_c00105{bottom:411.569855pt;}
.y35_c00105{bottom:412.093091pt;}
.y36_c00105{bottom:412.573091pt;}
.y37_c00105{bottom:413.240872pt;}
.y38_c00105{bottom:413.348536pt;}
.y29_c00105{bottom:426.230199pt;}
.y2a_c00105{bottom:427.053193pt;}
.y2b_c00105{bottom:427.345357pt;}
.y2c_c00105{bottom:427.519685pt;}
.y2d_c00105{bottom:427.825367pt;}
.y2e_c00105{bottom:428.000885pt;}
.y2f_c00105{bottom:428.484324pt;}
.y30_c00105{bottom:428.812215pt;}
.y31_c00105{bottom:429.310732pt;}
.y21_c00105{bottom:441.593149pt;}
.y22_c00105{bottom:442.141468pt;}
.y23_c00105{bottom:442.284696pt;}
.y24_c00105{bottom:442.533336pt;}
.y25_c00105{bottom:443.182741pt;}
.y26_c00105{bottom:443.401399pt;}
.y27_c00105{bottom:444.075017pt;}
.y28_c00105{bottom:444.497039pt;}
.y19_c00105{bottom:455.038639pt;}
.y1a_c00105{bottom:456.069021pt;}
.y1b_c00105{bottom:456.483905pt;}
.y1c_c00105{bottom:457.258624pt;}
.y1d_c00105{bottom:457.464052pt;}
.y1e_c00105{bottom:458.686335pt;}
.y1f_c00105{bottom:458.959960pt;}
.y20_c00105{bottom:459.944819pt;}
.y10_c00105{bottom:472.556399pt;}
.y11_c00105{bottom:472.791516pt;}
.y12_c00105{bottom:472.952513pt;}
.y13_c00105{bottom:473.680683pt;}
.y14_c00105{bottom:474.227251pt;}
.y15_c00105{bottom:474.440817pt;}
.y16_c00105{bottom:474.632124pt;}
.y17_c00105{bottom:474.795360pt;}
.y18_c00105{bottom:475.593907pt;}
.y9_c00105{bottom:488.159461pt;}
.ya_c00105{bottom:488.781932pt;}
.yb_c00105{bottom:489.345513pt;}
.yc_c00105{bottom:489.859337pt;}
.yd_c00105{bottom:490.018147pt;}
.ye_c00105{bottom:490.850755pt;}
.yf_c00105{bottom:491.066459pt;}
.y2_c00105{bottom:501.844000pt;}
.y3_c00105{bottom:502.286599pt;}
.y4_c00105{bottom:502.583809pt;}
.y5_c00105{bottom:504.120453pt;}
.y6_c00105{bottom:504.458172pt;}
.y7_c00105{bottom:505.160083pt;}
.y8_c00105{bottom:506.646541pt;}
.y1_c00105{bottom:519.233333pt;}
.h11_c00105{height:19.600000pt;}
.h10_c00105{height:51.342598pt;}
.he_c00105{height:54.143104pt;}
.hb_c00105{height:55.076605pt;}
.hf_c00105{height:56.010107pt;}
.hc_c00105{height:56.943609pt;}
.h5_c00105{height:57.877111pt;}
.h3_c00105{height:58.810612pt;}
.h2_c00105{height:59.733333pt;}
.ha_c00105{height:59.744114pt;}
.h8_c00105{height:61.611118pt;}
.h6_c00105{height:62.544620pt;}
.hd_c00105{height:63.478121pt;}
.h9_c00105{height:64.411623pt;}
.h7_c00105{height:65.345125pt;}
.h4_c00105{height:67.212129pt;}
.h0_c00105{height:566.640000pt;}
.h1_c00105{height:566.666667pt;}
.w0_c00105{width:330.480000pt;}
.w1_c00105{width:330.666667pt;}
.x0_c00105{left:0.000000pt;}
.x61_c00105{left:35.512833pt;}
.x2a_c00105{left:38.273080pt;}
.x30_c00105{left:39.836144pt;}
.x2_c00105{left:41.018667pt;}
.x23_c00105{left:42.149885pt;}
.x67_c00105{left:43.058047pt;}
.x9_c00105{left:44.058343pt;}
.x7f_c00105{left:55.912432pt;}
.x79_c00105{left:57.356031pt;}
.x2b_c00105{left:58.919268pt;}
.x10_c00105{left:61.341799pt;}
.x3_c00105{left:64.313333pt;}
.x57_c00105{left:67.557979pt;}
.x3d_c00105{left:71.353541pt;}
.x11_c00105{left:74.799597pt;}
.x5a_c00105{left:76.916059pt;}
.x31_c00105{left:78.483436pt;}
.x4_c00105{left:79.956000pt;}
.x62_c00105{left:82.321731pt;}
.x2c_c00105{left:84.600984pt;}
.x6c_c00105{left:85.533847pt;}
.x3e_c00105{left:87.458969pt;}
.x4d_c00105{left:89.635105pt;}
.x1d_c00105{left:90.809240pt;}
.x38_c00105{left:92.258904pt;}
.x4b_c00105{left:93.533052pt;}
.x16_c00105{left:94.592744pt;}
.xa_c00105{left:95.914567pt;}
.x80_c00105{left:97.919581pt;}
.x5b_c00105{left:99.674627pt;}
.x63_c00105{left:102.244925pt;}
.x1e_c00105{left:103.823216pt;}
.x5c_c00105{left:106.567371pt;}
.x69_c00105{left:108.967988pt;}
.x24_c00105{left:110.737672pt;}
.x76_c00105{left:113.718451pt;}
.x48_c00105{left:115.149903pt;}
.x17_c00105{left:116.428744pt;}
.x70_c00105{left:119.410516pt;}
.x6d_c00105{left:121.595968pt;}
.x58_c00105{left:122.771697pt;}
.x50_c00105{left:125.252573pt;}
.x1f_c00105{left:126.386636pt;}
.x5e_c00105{left:129.369592pt;}
.x32_c00105{left:132.733685pt;}
.x51_c00105{left:134.362084pt;}
.x12_c00105{left:135.518345pt;}
.x2d_c00105{left:136.920593pt;}
.x71_c00105{left:137.953623pt;}
.x7a_c00105{left:140.878697pt;}
.xb_c00105{left:142.846132pt;}
.x45_c00105{left:144.123692pt;}
.x3f_c00105{left:146.966487pt;}
.x1_c00105{left:148.320000pt;}
.x25_c00105{left:149.610840pt;}
.x7c_c00105{left:152.788187pt;}
.x72_c00105{left:154.445860pt;}
.x4e_c00105{left:156.123813pt;}
.x18_c00105{left:157.203411pt;}
.x39_c00105{left:158.537053pt;}
.x33_c00105{left:159.858131pt;}
.x5_c00105{left:160.832000pt;}
.x40_c00105{left:162.622505pt;}
.x56_c00105{left:164.417469pt;}
.x64_c00105{left:167.056333pt;}
.x19_c00105{left:168.015411pt;}
.x6a_c00105{left:173.059117pt;}
.x26_c00105{left:175.106235pt;}
.x4f_c00105{left:176.535309pt;}
.x6_c00105{left:178.606667pt;}
.x13_c00105{left:181.063067pt;}
.x52_c00105{left:183.092355pt;}
.x46_c00105{left:183.999653pt;}
.xc_c00105{left:185.614473pt;}
.x59_c00105{left:187.336168pt;}
.x27_c00105{left:189.749519pt;}
.x49_c00105{left:194.112068pt;}
.x6e_c00105{left:196.721975pt;}
.x53_c00105{left:197.987300pt;}
.xd_c00105{left:198.886913pt;}
.x20_c00105{left:205.349311pt;}
.x65_c00105{left:206.663955pt;}
.x73_c00105{left:208.748361pt;}
.x34_c00105{left:210.266987pt;}
.x44_c00105{left:211.227920pt;}
.x7_c00105{left:215.549333pt;}
.x5d_c00105{left:218.186317pt;}
.x77_c00105{left:220.674557pt;}
.x35_c00105{left:222.028576pt;}
.x3a_c00105{left:223.836384pt;}
.x41_c00105{left:225.733297pt;}
.x14_c00105{left:228.373349pt;}
.x28_c00105{left:230.076223pt;}
.x1a_c00105{left:232.346077pt;}
.x78_c00105{left:233.472853pt;}
.x7e_c00105{left:235.119429pt;}
.x81_c00105{left:236.425564pt;}
.x36_c00105{left:238.351812pt;}
.x47_c00105{left:239.924409pt;}
.x74_c00105{left:243.094296pt;}
.x54_c00105{left:244.540187pt;}
.x1b_c00105{left:246.747411pt;}
.x5f_c00105{left:250.111832pt;}
.x2e_c00105{left:251.665535pt;}
.x42_c00105{left:255.261005pt;}
.x29_c00105{left:257.442537pt;}
.x6f_c00105{left:259.378309pt;}
.x3b_c00105{left:260.566607pt;}
.x2f_c00105{left:262.456717pt;}
.x68_c00105{left:265.125355pt;}
.x21_c00105{left:266.566608pt;}
.xe_c00105{left:268.261468pt;}
.x7b_c00105{left:269.278697pt;}
.x4c_c00105{left:273.556819pt;}
.x66_c00105{left:275.076655pt;}
.x37_c00105{left:277.239180pt;}
.x43_c00105{left:281.638848pt;}
.x7d_c00105{left:285.069793pt;}
.xf_c00105{left:286.213183pt;}
.x3c_c00105{left:287.924921pt;}
.x82_c00105{left:292.835265pt;}
.x8_c00105{left:293.784000pt;}
.x15_c00105{left:294.902191pt;}
.x6b_c00105{left:297.401316pt;}
.x1c_c00105{left:298.582077pt;}
.x4a_c00105{left:299.730075pt;}
.x75_c00105{left:300.747768pt;}
.x55_c00105{left:302.681301pt;}
.x22_c00105{left:304.924435pt;}
.x60_c00105{left:307.241787pt;}
.x84_c00105{left:324.000000pt;}
.x83_c00105{left:327.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00106 {
    display:none;
  }
  .loading-indicator_c00106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00106 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00106 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00106" -> "#page-container .classname_c00106")
 */
.pf_c00106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00106 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00106 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00106 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00106 {overflow:visible;}
  }
}
.c_c00106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00106 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00106:after { /* webkit #35443 */
  content: '';
}
.t_c00106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00106 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00106 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00106 { /* info for Javascript */
  display:none;
}
.l_c00106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00106:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00106 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00106.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00106{transform:matrix(0.105771,0.002010,-0.004749,0.249955,0,0);-ms-transform:matrix(0.105771,0.002010,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.105771,0.002010,-0.004749,0.249955,0,0);}
.m63_c00106{transform:matrix(0.107661,0.002046,-0.004749,0.249955,0,0);-ms-transform:matrix(0.107661,0.002046,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.107661,0.002046,-0.004749,0.249955,0,0);}
.m48_c00106{transform:matrix(0.137835,0.002619,-0.004749,0.249955,0,0);-ms-transform:matrix(0.137835,0.002619,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.137835,0.002619,-0.004749,0.249955,0,0);}
.m20_c00106{transform:matrix(0.149223,0.002835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.149223,0.002835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.149223,0.002835,-0.004749,0.249955,0,0);}
.mc_c00106{transform:matrix(0.152757,0.002902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.152757,0.002902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.152757,0.002902,-0.004749,0.249955,0,0);}
.m79_c00106{transform:matrix(0.153397,0.002915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.153397,0.002915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.153397,0.002915,-0.004749,0.249955,0,0);}
.mb1_c00106{transform:matrix(0.153552,0.002917,-0.004749,0.249955,0,0);-ms-transform:matrix(0.153552,0.002917,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.153552,0.002917,-0.004749,0.249955,0,0);}
.m66_c00106{transform:matrix(0.154757,0.002940,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154757,0.002940,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154757,0.002940,-0.004749,0.249955,0,0);}
.me9_c00106{transform:matrix(0.154837,0.002942,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154837,0.002942,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154837,0.002942,-0.004749,0.249955,0,0);}
.m78_c00106{transform:matrix(0.155247,0.002950,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155247,0.002950,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155247,0.002950,-0.004749,0.249955,0,0);}
.ma6_c00106{transform:matrix(0.156297,0.002970,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156297,0.002970,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156297,0.002970,-0.004749,0.249955,0,0);}
.m2_c00106{transform:matrix(0.156947,0.002982,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156947,0.002982,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156947,0.002982,-0.004749,0.249955,0,0);}
.m7f_c00106{transform:matrix(0.157117,0.002985,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157117,0.002985,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157117,0.002985,-0.004749,0.249955,0,0);}
.m61_c00106{transform:matrix(0.157192,0.002987,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157192,0.002987,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157192,0.002987,-0.004749,0.249955,0,0);}
.meb_c00106{transform:matrix(0.157377,0.002990,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157377,0.002990,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157377,0.002990,-0.004749,0.249955,0,0);}
.me8_c00106{transform:matrix(0.158301,0.003008,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158301,0.003008,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158301,0.003008,-0.004749,0.249955,0,0);}
.m13_c00106{transform:matrix(0.158666,0.003015,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158666,0.003015,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158666,0.003015,-0.004749,0.249955,0,0);}
.m65_c00106{transform:matrix(0.159786,0.003036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159786,0.003036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159786,0.003036,-0.004749,0.249955,0,0);}
.maa_c00106{transform:matrix(0.160006,0.003040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160006,0.003040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160006,0.003040,-0.004749,0.249955,0,0);}
.ma4_c00106{transform:matrix(0.161041,0.003060,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161041,0.003060,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161041,0.003060,-0.004749,0.249955,0,0);}
.m7c_c00106{transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);}
.m1c_c00106{transform:matrix(0.161396,0.003067,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161396,0.003067,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161396,0.003067,-0.004749,0.249955,0,0);}
.m77_c00106{transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);}
.mee_c00106{transform:matrix(0.162641,0.003090,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162641,0.003090,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162641,0.003090,-0.004749,0.249955,0,0);}
.m9c_c00106{transform:matrix(0.162986,0.003097,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162986,0.003097,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162986,0.003097,-0.004749,0.249955,0,0);}
.m80_c00106{transform:matrix(0.163361,0.003104,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163361,0.003104,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163361,0.003104,-0.004749,0.249955,0,0);}
.m60_c00106{transform:matrix(0.163480,0.003106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163480,0.003106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163480,0.003106,-0.004749,0.249955,0,0);}
.m27_c00106{transform:matrix(0.163625,0.003109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163625,0.003109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163625,0.003109,-0.004749,0.249955,0,0);}
.m81_c00106{transform:matrix(0.163690,0.003110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163690,0.003110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163690,0.003110,-0.004749,0.249955,0,0);}
.m7e_c00106{transform:matrix(0.163930,0.003115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163930,0.003115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163930,0.003115,-0.004749,0.249955,0,0);}
.m32_c00106{transform:matrix(0.166055,0.003155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166055,0.003155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166055,0.003155,-0.004749,0.249955,0,0);}
.md6_c00106{transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);}
.m5c_c00106{transform:matrix(0.167180,0.003176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167180,0.003176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167180,0.003176,-0.004749,0.249955,0,0);}
.m76_c00106{transform:matrix(0.167220,0.003177,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167220,0.003177,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167220,0.003177,-0.004749,0.249955,0,0);}
.m5a_c00106{transform:matrix(0.167325,0.003179,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167325,0.003179,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167325,0.003179,-0.004749,0.249955,0,0);}
.m95_c00106{transform:matrix(0.167465,0.003182,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167465,0.003182,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167465,0.003182,-0.004749,0.249955,0,0);}
.m9a_c00106{transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);}
.m8c_c00106{transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);}
.m25_c00106{transform:matrix(0.170519,0.003240,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170519,0.003240,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170519,0.003240,-0.004749,0.249955,0,0);}
.m3b_c00106{transform:matrix(0.170644,0.003242,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170644,0.003242,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170644,0.003242,-0.004749,0.249955,0,0);}
.m47_c00106{transform:matrix(0.171089,0.003251,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171089,0.003251,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171089,0.003251,-0.004749,0.249955,0,0);}
.m4e_c00106{transform:matrix(0.171119,0.003251,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171119,0.003251,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171119,0.003251,-0.004749,0.249955,0,0);}
.m1b_c00106{transform:matrix(0.171324,0.003255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171324,0.003255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171324,0.003255,-0.004749,0.249955,0,0);}
.mec_c00106{transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);}
.m7d_c00106{transform:matrix(0.171829,0.003265,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171829,0.003265,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171829,0.003265,-0.004749,0.249955,0,0);}
.m7a_c00106{transform:matrix(0.172394,0.003275,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172394,0.003275,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172394,0.003275,-0.004749,0.249955,0,0);}
.m74_c00106{transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173494,0.003296,-0.004749,0.249955,0,0);}
.m68_c00106{transform:matrix(0.173544,0.003297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173544,0.003297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173544,0.003297,-0.004749,0.249955,0,0);}
.m9b_c00106{transform:matrix(0.173819,0.003303,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173819,0.003303,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173819,0.003303,-0.004749,0.249955,0,0);}
.m49_c00106{transform:matrix(0.173839,0.003303,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173839,0.003303,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173839,0.003303,-0.004749,0.249955,0,0);}
.m45_c00106{transform:matrix(0.174244,0.003311,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174244,0.003311,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174244,0.003311,-0.004749,0.249955,0,0);}
.m38_c00106{transform:matrix(0.174464,0.003315,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174464,0.003315,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174464,0.003315,-0.004749,0.249955,0,0);}
.mb8_c00106{transform:matrix(0.175293,0.003331,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175293,0.003331,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175293,0.003331,-0.004749,0.249955,0,0);}
.m43_c00106{transform:matrix(0.175778,0.003340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175778,0.003340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175778,0.003340,-0.004749,0.249955,0,0);}
.m8d_c00106{transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176013,0.003344,-0.004749,0.249955,0,0);}
.m7b_c00106{transform:matrix(0.176168,0.003347,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176168,0.003347,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176168,0.003347,-0.004749,0.249955,0,0);}
.m5e_c00106{transform:matrix(0.176753,0.003358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176753,0.003358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176753,0.003358,-0.004749,0.249955,0,0);}
.mc9_c00106{transform:matrix(0.176953,0.003362,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176953,0.003362,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176953,0.003362,-0.004749,0.249955,0,0);}
.me4_c00106{transform:matrix(0.178153,0.003385,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178153,0.003385,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178153,0.003385,-0.004749,0.249955,0,0);}
.m57_c00106{transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);}
.m3c_c00106{transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);}
.mc8_c00106{transform:matrix(0.179238,0.003406,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179238,0.003406,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179238,0.003406,-0.004749,0.249955,0,0);}
.m1d_c00106{transform:matrix(0.180167,0.003423,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180167,0.003423,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180167,0.003423,-0.004749,0.249955,0,0);}
.m12_c00106{transform:matrix(0.180927,0.003438,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180927,0.003438,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180927,0.003438,-0.004749,0.249955,0,0);}
.m94_c00106{transform:matrix(0.181227,0.003443,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181227,0.003443,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181227,0.003443,-0.004749,0.249955,0,0);}
.ma_c00106{transform:matrix(0.181322,0.003445,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181322,0.003445,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181322,0.003445,-0.004749,0.249955,0,0);}
.me1_c00106{transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);}
.m3_c00106{transform:matrix(0.181647,0.003451,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181647,0.003451,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181647,0.003451,-0.004749,0.249955,0,0);}
.m21_c00106{transform:matrix(0.181737,0.003453,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181737,0.003453,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181737,0.003453,-0.004749,0.249955,0,0);}
.ma3_c00106{transform:matrix(0.182147,0.003461,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182147,0.003461,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182147,0.003461,-0.004749,0.249955,0,0);}
.m2e_c00106{transform:matrix(0.182202,0.003462,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182202,0.003462,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182202,0.003462,-0.004749,0.249955,0,0);}
.m8f_c00106{transform:matrix(0.182307,0.003464,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182307,0.003464,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182307,0.003464,-0.004749,0.249955,0,0);}
.m15_c00106{transform:matrix(0.182742,0.003472,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182742,0.003472,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182742,0.003472,-0.004749,0.249955,0,0);}
.m92_c00106{transform:matrix(0.182887,0.003475,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182887,0.003475,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182887,0.003475,-0.004749,0.249955,0,0);}
.m0_c00106{transform:matrix(0.183097,0.004211,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183097,0.004211,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183097,0.004211,-0.005748,0.249934,0,0);}
.mb_c00106{transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);}
.mcb_c00106{transform:matrix(0.183702,0.003490,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183702,0.003490,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183702,0.003490,-0.004749,0.249955,0,0);}
.m1f_c00106{transform:matrix(0.183727,0.003491,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183727,0.003491,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183727,0.003491,-0.004749,0.249955,0,0);}
.mb2_c00106{transform:matrix(0.183792,0.003492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183792,0.003492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183792,0.003492,-0.004749,0.249955,0,0);}
.me_c00106{transform:matrix(0.183807,0.003492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183807,0.003492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183807,0.003492,-0.004749,0.249955,0,0);}
.m67_c00106{transform:matrix(0.184482,0.003505,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184482,0.003505,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184482,0.003505,-0.004749,0.249955,0,0);}
.m16_c00106{transform:matrix(0.184527,0.003506,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184527,0.003506,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184527,0.003506,-0.004749,0.249955,0,0);}
.md7_c00106{transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);}
.m6d_c00106{transform:matrix(0.184872,0.003513,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184872,0.003513,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184872,0.003513,-0.004749,0.249955,0,0);}
.m8b_c00106{transform:matrix(0.185082,0.003517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185082,0.003517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185082,0.003517,-0.004749,0.249955,0,0);}
.m97_c00106{transform:matrix(0.185197,0.003519,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185197,0.003519,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185197,0.003519,-0.004749,0.249955,0,0);}
.m40_c00106{transform:matrix(0.185302,0.003521,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185302,0.003521,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185302,0.003521,-0.004749,0.249955,0,0);}
.m9f_c00106{transform:matrix(0.186691,0.003547,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186691,0.003547,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186691,0.003547,-0.004749,0.249955,0,0);}
.m5b_c00106{transform:matrix(0.186801,0.003549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186801,0.003549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186801,0.003549,-0.004749,0.249955,0,0);}
.mea_c00106{transform:matrix(0.186891,0.003551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186891,0.003551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186891,0.003551,-0.004749,0.249955,0,0);}
.md_c00106{transform:matrix(0.187761,0.003567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187761,0.003567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187761,0.003567,-0.004749,0.249955,0,0);}
.m96_c00106{transform:matrix(0.187911,0.003570,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187911,0.003570,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187911,0.003570,-0.004749,0.249955,0,0);}
.mad_c00106{transform:matrix(0.188111,0.003574,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188111,0.003574,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188111,0.003574,-0.004749,0.249955,0,0);}
.md5_c00106{transform:matrix(0.188291,0.003578,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188291,0.003578,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188291,0.003578,-0.004749,0.249955,0,0);}
.m1a_c00106{transform:matrix(0.189156,0.003594,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189156,0.003594,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189156,0.003594,-0.004749,0.249955,0,0);}
.mcd_c00106{transform:matrix(0.189161,0.003594,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189161,0.003594,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189161,0.003594,-0.004749,0.249955,0,0);}
.md0_c00106{transform:matrix(0.189706,0.003604,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189706,0.003604,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189706,0.003604,-0.004749,0.249955,0,0);}
.m36_c00106{transform:matrix(0.189876,0.003608,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189876,0.003608,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189876,0.003608,-0.004749,0.249955,0,0);}
.m24_c00106{transform:matrix(0.189966,0.003609,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189966,0.003609,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189966,0.003609,-0.004749,0.249955,0,0);}
.m62_c00106{transform:matrix(0.190206,0.003614,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190206,0.003614,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190206,0.003614,-0.004749,0.249955,0,0);}
.m72_c00106{transform:matrix(0.190586,0.003621,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190586,0.003621,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190586,0.003621,-0.004749,0.249955,0,0);}
.m2a_c00106{transform:matrix(0.191006,0.003629,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191006,0.003629,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191006,0.003629,-0.004749,0.249955,0,0);}
.ma2_c00106{transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);}
.m3a_c00106{transform:matrix(0.191865,0.003645,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191865,0.003645,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191865,0.003645,-0.004749,0.249955,0,0);}
.mba_c00106{transform:matrix(0.192650,0.003660,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192650,0.003660,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192650,0.003660,-0.004749,0.249955,0,0);}
.mb6_c00106{transform:matrix(0.192745,0.003662,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192745,0.003662,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192745,0.003662,-0.004749,0.249955,0,0);}
.m6a_c00106{transform:matrix(0.192875,0.003665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192875,0.003665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192875,0.003665,-0.004749,0.249955,0,0);}
.m2c_c00106{transform:matrix(0.193335,0.003673,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193335,0.003673,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193335,0.003673,-0.004749,0.249955,0,0);}
.m64_c00106{transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);}
.m55_c00106{transform:matrix(0.194055,0.003687,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194055,0.003687,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194055,0.003687,-0.004749,0.249955,0,0);}
.m4a_c00106{transform:matrix(0.194940,0.003704,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194940,0.003704,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194940,0.003704,-0.004749,0.249955,0,0);}
.m83_c00106{transform:matrix(0.195120,0.003707,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195120,0.003707,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195120,0.003707,-0.004749,0.249955,0,0);}
.mb7_c00106{transform:matrix(0.195260,0.003710,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195260,0.003710,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195260,0.003710,-0.004749,0.249955,0,0);}
.m44_c00106{transform:matrix(0.195395,0.003712,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195395,0.003712,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195395,0.003712,-0.004749,0.249955,0,0);}
.mb5_c00106{transform:matrix(0.196115,0.003726,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196115,0.003726,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196115,0.003726,-0.004749,0.249955,0,0);}
.mab_c00106{transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196734,0.003738,-0.004749,0.249955,0,0);}
.m4b_c00106{transform:matrix(0.196844,0.003740,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196844,0.003740,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196844,0.003740,-0.004749,0.249955,0,0);}
.mf_c00106{transform:matrix(0.196854,0.003740,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196854,0.003740,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196854,0.003740,-0.004749,0.249955,0,0);}
.m8e_c00106{transform:matrix(0.197389,0.003750,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197389,0.003750,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197389,0.003750,-0.004749,0.249955,0,0);}
.m37_c00106{transform:matrix(0.197754,0.003757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197754,0.003757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197754,0.003757,-0.004749,0.249955,0,0);}
.m9_c00106{transform:matrix(0.197954,0.003761,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197954,0.003761,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197954,0.003761,-0.004749,0.249955,0,0);}
.ma1_c00106{transform:matrix(0.198124,0.003764,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198124,0.003764,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198124,0.003764,-0.004749,0.249955,0,0);}
.md4_c00106{transform:matrix(0.198324,0.003768,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198324,0.003768,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198324,0.003768,-0.004749,0.249955,0,0);}
.mcf_c00106{transform:matrix(0.198379,0.003769,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198379,0.003769,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198379,0.003769,-0.004749,0.249955,0,0);}
.md1_c00106{transform:matrix(0.198689,0.003775,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198689,0.003775,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198689,0.003775,-0.004749,0.249955,0,0);}
.m87_c00106{transform:matrix(0.198789,0.003777,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198789,0.003777,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198789,0.003777,-0.004749,0.249955,0,0);}
.mbe_c00106{transform:matrix(0.198884,0.003779,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198884,0.003779,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198884,0.003779,-0.004749,0.249955,0,0);}
.m26_c00106{transform:matrix(0.198929,0.003780,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198929,0.003780,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198929,0.003780,-0.004749,0.249955,0,0);}
.m3f_c00106{transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);}
.m39_c00106{transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);}
.mbf_c00106{transform:matrix(0.199694,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199694,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199694,0.003794,-0.004749,0.249955,0,0);}
.m52_c00106{transform:matrix(0.199704,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199704,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199704,0.003794,-0.004749,0.249955,0,0);}
.m42_c00106{transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);}
.m2d_c00106{transform:matrix(0.200229,0.003804,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200229,0.003804,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200229,0.003804,-0.004749,0.249955,0,0);}
.m89_c00106{transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);}
.m29_c00106{transform:matrix(0.201284,0.003824,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201284,0.003824,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201284,0.003824,-0.004749,0.249955,0,0);}
.m91_c00106{transform:matrix(0.201374,0.003826,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201374,0.003826,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201374,0.003826,-0.004749,0.249955,0,0);}
.m6b_c00106{transform:matrix(0.201534,0.003829,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201534,0.003829,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201534,0.003829,-0.004749,0.249955,0,0);}
.m1_c00106{transform:matrix(0.201542,0.004635,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201542,0.004635,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201542,0.004635,-0.005748,0.249934,0,0);}
.m73_c00106{transform:matrix(0.202229,0.003842,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202229,0.003842,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202229,0.003842,-0.004749,0.249955,0,0);}
.m56_c00106{transform:matrix(0.202633,0.003850,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202633,0.003850,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202633,0.003850,-0.004749,0.249955,0,0);}
.mac_c00106{transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202673,0.003851,-0.004749,0.249955,0,0);}
.m31_c00106{transform:matrix(0.203498,0.003866,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203498,0.003866,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203498,0.003866,-0.004749,0.249955,0,0);}
.med_c00106{transform:matrix(0.203698,0.003870,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203698,0.003870,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203698,0.003870,-0.004749,0.249955,0,0);}
.m6c_c00106{transform:matrix(0.203788,0.003872,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203788,0.003872,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203788,0.003872,-0.004749,0.249955,0,0);}
.m58_c00106{transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);}
.md8_c00106{transform:matrix(0.203983,0.003876,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203983,0.003876,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203983,0.003876,-0.004749,0.249955,0,0);}
.m6e_c00106{transform:matrix(0.204033,0.003877,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204033,0.003877,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204033,0.003877,-0.004749,0.249955,0,0);}
.ma0_c00106{transform:matrix(0.204403,0.003884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204403,0.003884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204403,0.003884,-0.004749,0.249955,0,0);}
.m7_c00106{transform:matrix(0.204643,0.003888,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204643,0.003888,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204643,0.003888,-0.004749,0.249955,0,0);}
.m69_c00106{transform:matrix(0.205568,0.003906,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205568,0.003906,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205568,0.003906,-0.004749,0.249955,0,0);}
.m1e_c00106{transform:matrix(0.205593,0.003906,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205593,0.003906,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205593,0.003906,-0.004749,0.249955,0,0);}
.m84_c00106{transform:matrix(0.206183,0.003917,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206183,0.003917,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206183,0.003917,-0.004749,0.249955,0,0);}
.m3e_c00106{transform:matrix(0.206578,0.003925,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206578,0.003925,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206578,0.003925,-0.004749,0.249955,0,0);}
.mc3_c00106{transform:matrix(0.207288,0.003938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207288,0.003938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207288,0.003938,-0.004749,0.249955,0,0);}
.m85_c00106{transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);}
.m4f_c00106{transform:matrix(0.208402,0.003960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208402,0.003960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208402,0.003960,-0.004749,0.249955,0,0);}
.m5d_c00106{transform:matrix(0.208427,0.003960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208427,0.003960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208427,0.003960,-0.004749,0.249955,0,0);}
.mc0_c00106{transform:matrix(0.209292,0.003977,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209292,0.003977,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209292,0.003977,-0.004749,0.249955,0,0);}
.m6f_c00106{transform:matrix(0.209382,0.003978,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209382,0.003978,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209382,0.003978,-0.004749,0.249955,0,0);}
.mca_c00106{transform:matrix(0.210457,0.003999,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210457,0.003999,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210457,0.003999,-0.004749,0.249955,0,0);}
.m17_c00106{transform:matrix(0.210852,0.004006,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210852,0.004006,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210852,0.004006,-0.004749,0.249955,0,0);}
.m46_c00106{transform:matrix(0.211142,0.004012,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211142,0.004012,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211142,0.004012,-0.004749,0.249955,0,0);}
.mbb_c00106{transform:matrix(0.211487,0.004018,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211487,0.004018,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211487,0.004018,-0.004749,0.249955,0,0);}
.mb0_c00106{transform:matrix(0.212552,0.004038,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212552,0.004038,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212552,0.004038,-0.004749,0.249955,0,0);}
.m50_c00106{transform:matrix(0.212717,0.004042,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212717,0.004042,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212717,0.004042,-0.004749,0.249955,0,0);}
.m9d_c00106{transform:matrix(0.212867,0.004044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212867,0.004044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212867,0.004044,-0.004749,0.249955,0,0);}
.ma5_c00106{transform:matrix(0.213047,0.004048,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213047,0.004048,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213047,0.004048,-0.004749,0.249955,0,0);}
.mc4_c00106{transform:matrix(0.213846,0.004063,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213846,0.004063,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213846,0.004063,-0.004749,0.249955,0,0);}
.m18_c00106{transform:matrix(0.214741,0.004080,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214741,0.004080,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214741,0.004080,-0.004749,0.249955,0,0);}
.me6_c00106{transform:matrix(0.215056,0.004086,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215056,0.004086,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215056,0.004086,-0.004749,0.249955,0,0);}
.me2_c00106{transform:matrix(0.215101,0.004087,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215101,0.004087,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215101,0.004087,-0.004749,0.249955,0,0);}
.mb3_c00106{transform:matrix(0.215151,0.004088,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215151,0.004088,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215151,0.004088,-0.004749,0.249955,0,0);}
.m71_c00106{transform:matrix(0.215581,0.004096,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215581,0.004096,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215581,0.004096,-0.004749,0.249955,0,0);}
.md2_c00106{transform:matrix(0.215696,0.004098,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215696,0.004098,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215696,0.004098,-0.004749,0.249955,0,0);}
.mae_c00106{transform:matrix(0.216076,0.004105,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216076,0.004105,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216076,0.004105,-0.004749,0.249955,0,0);}
.m86_c00106{transform:matrix(0.216151,0.004107,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216151,0.004107,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216151,0.004107,-0.004749,0.249955,0,0);}
.m3d_c00106{transform:matrix(0.216646,0.004116,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216646,0.004116,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216646,0.004116,-0.004749,0.249955,0,0);}
.mbc_c00106{transform:matrix(0.216801,0.004119,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216801,0.004119,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216801,0.004119,-0.004749,0.249955,0,0);}
.m35_c00106{transform:matrix(0.216846,0.004120,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216846,0.004120,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216846,0.004120,-0.004749,0.249955,0,0);}
.m8a_c00106{transform:matrix(0.217796,0.004138,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217796,0.004138,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217796,0.004138,-0.004749,0.249955,0,0);}
.mbd_c00106{transform:matrix(0.218281,0.004147,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218281,0.004147,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218281,0.004147,-0.004749,0.249955,0,0);}
.m82_c00106{transform:matrix(0.219565,0.004172,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219565,0.004172,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219565,0.004172,-0.004749,0.249955,0,0);}
.mce_c00106{transform:matrix(0.220315,0.004186,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220315,0.004186,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220315,0.004186,-0.004749,0.249955,0,0);}
.m19_c00106{transform:matrix(0.220475,0.004189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220475,0.004189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220475,0.004189,-0.004749,0.249955,0,0);}
.m9e_c00106{transform:matrix(0.220895,0.004197,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220895,0.004197,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220895,0.004197,-0.004749,0.249955,0,0);}
.m75_c00106{transform:matrix(0.220985,0.004199,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220985,0.004199,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220985,0.004199,-0.004749,0.249955,0,0);}
.mda_c00106{transform:matrix(0.221735,0.004213,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221735,0.004213,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221735,0.004213,-0.004749,0.249955,0,0);}
.mc6_c00106{transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);}
.m2f_c00106{transform:matrix(0.224754,0.004270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224754,0.004270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224754,0.004270,-0.004749,0.249955,0,0);}
.me5_c00106{transform:matrix(0.226254,0.004299,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226254,0.004299,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226254,0.004299,-0.004749,0.249955,0,0);}
.mb4_c00106{transform:matrix(0.227054,0.004314,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227054,0.004314,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227054,0.004314,-0.004749,0.249955,0,0);}
.m98_c00106{transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);}
.m41_c00106{transform:matrix(0.228689,0.004345,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228689,0.004345,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228689,0.004345,-0.004749,0.249955,0,0);}
.me3_c00106{transform:matrix(0.230023,0.004370,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230023,0.004370,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230023,0.004370,-0.004749,0.249955,0,0);}
.me7_c00106{transform:matrix(0.232473,0.004417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232473,0.004417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232473,0.004417,-0.004749,0.249955,0,0);}
.m59_c00106{transform:matrix(0.233623,0.004439,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233623,0.004439,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233623,0.004439,-0.004749,0.249955,0,0);}
.m99_c00106{transform:matrix(0.234933,0.004464,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234933,0.004464,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234933,0.004464,-0.004749,0.249955,0,0);}
.m90_c00106{transform:matrix(0.236042,0.004485,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236042,0.004485,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236042,0.004485,-0.004749,0.249955,0,0);}
.m5f_c00106{transform:matrix(0.237247,0.004508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237247,0.004508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237247,0.004508,-0.004749,0.249955,0,0);}
.m51_c00106{transform:matrix(0.237402,0.004511,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237402,0.004511,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237402,0.004511,-0.004749,0.249955,0,0);}
.md9_c00106{transform:matrix(0.237837,0.004519,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237837,0.004519,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237837,0.004519,-0.004749,0.249955,0,0);}
.m4d_c00106{transform:matrix(0.238057,0.004523,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238057,0.004523,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238057,0.004523,-0.004749,0.249955,0,0);}
.m54_c00106{transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);}
.mc7_c00106{transform:matrix(0.240512,0.004570,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240512,0.004570,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240512,0.004570,-0.004749,0.249955,0,0);}
.m4c_c00106{transform:matrix(0.240847,0.004576,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240847,0.004576,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240847,0.004576,-0.004749,0.249955,0,0);}
.mc5_c00106{transform:matrix(0.241246,0.004584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241246,0.004584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241246,0.004584,-0.004749,0.249955,0,0);}
.ma9_c00106{transform:matrix(0.243901,0.004634,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243901,0.004634,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243901,0.004634,-0.004749,0.249955,0,0);}
.m34_c00106{transform:matrix(0.247740,0.004707,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247740,0.004707,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247740,0.004707,-0.004749,0.249955,0,0);}
.mcc_c00106{transform:matrix(0.249975,0.004750,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249975,0.004750,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249975,0.004750,-0.004749,0.249955,0,0);}
.m33_c00106{transform:matrix(0.250370,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250370,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250370,0.004757,-0.004749,0.249955,0,0);}
.m2b_c00106{transform:matrix(0.255154,0.004848,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255154,0.004848,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255154,0.004848,-0.004749,0.249955,0,0);}
.m10_c00106{transform:matrix(0.256704,0.004877,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256704,0.004877,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256704,0.004877,-0.004749,0.249955,0,0);}
.m53_c00106{transform:matrix(0.258873,0.004919,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258873,0.004919,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258873,0.004919,-0.004749,0.249955,0,0);}
.m6_c00106{transform:matrix(0.261303,0.004965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261303,0.004965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261303,0.004965,-0.004749,0.249955,0,0);}
.ma8_c00106{transform:matrix(0.262648,0.004990,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262648,0.004990,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262648,0.004990,-0.004749,0.249955,0,0);}
.m23_c00106{transform:matrix(0.262818,0.004994,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262818,0.004994,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262818,0.004994,-0.004749,0.249955,0,0);}
.m8_c00106{transform:matrix(0.263207,0.005001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263207,0.005001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263207,0.005001,-0.004749,0.249955,0,0);}
.m93_c00106{transform:matrix(0.263587,0.005008,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263587,0.005008,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263587,0.005008,-0.004749,0.249955,0,0);}
.mdf_c00106{transform:matrix(0.263622,0.005009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263622,0.005009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263622,0.005009,-0.004749,0.249955,0,0);}
.mc2_c00106{transform:matrix(0.267637,0.005085,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267637,0.005085,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267637,0.005085,-0.004749,0.249955,0,0);}
.mc1_c00106{transform:matrix(0.273046,0.005188,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273046,0.005188,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273046,0.005188,-0.004749,0.249955,0,0);}
.me0_c00106{transform:matrix(0.278985,0.005301,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278985,0.005301,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278985,0.005301,-0.004749,0.249955,0,0);}
.m4_c00106{transform:matrix(0.286108,0.005436,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286108,0.005436,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286108,0.005436,-0.004749,0.249955,0,0);}
.mdd_c00106{transform:matrix(0.288858,0.005488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.288858,0.005488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.288858,0.005488,-0.004749,0.249955,0,0);}
.ma7_c00106{transform:matrix(0.291322,0.005535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.291322,0.005535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.291322,0.005535,-0.004749,0.249955,0,0);}
.md3_c00106{transform:matrix(0.296561,0.005635,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296561,0.005635,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296561,0.005635,-0.004749,0.249955,0,0);}
.m22_c00106{transform:matrix(0.299006,0.005681,-0.004749,0.249955,0,0);-ms-transform:matrix(0.299006,0.005681,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.299006,0.005681,-0.004749,0.249955,0,0);}
.maf_c00106{transform:matrix(0.301356,0.005726,-0.004749,0.249955,0,0);-ms-transform:matrix(0.301356,0.005726,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.301356,0.005726,-0.004749,0.249955,0,0);}
.mdb_c00106{transform:matrix(0.301886,0.005736,-0.004749,0.249955,0,0);-ms-transform:matrix(0.301886,0.005736,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.301886,0.005736,-0.004749,0.249955,0,0);}
.m88_c00106{transform:matrix(0.311194,0.005913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.311194,0.005913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.311194,0.005913,-0.004749,0.249955,0,0);}
.m11_c00106{transform:matrix(0.321532,0.006109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.321532,0.006109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.321532,0.006109,-0.004749,0.249955,0,0);}
.mdc_c00106{transform:matrix(0.325031,0.006176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.325031,0.006176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.325031,0.006176,-0.004749,0.249955,0,0);}
.m14_c00106{transform:matrix(0.331990,0.006308,-0.004749,0.249955,0,0);-ms-transform:matrix(0.331990,0.006308,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.331990,0.006308,-0.004749,0.249955,0,0);}
.m28_c00106{transform:matrix(0.344788,0.006551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.344788,0.006551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.344788,0.006551,-0.004749,0.249955,0,0);}
.mde_c00106{transform:matrix(0.362820,0.006894,-0.004749,0.249955,0,0);-ms-transform:matrix(0.362820,0.006894,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.362820,0.006894,-0.004749,0.249955,0,0);}
.mb9_c00106{transform:matrix(0.369123,0.007013,-0.004749,0.249955,0,0);-ms-transform:matrix(0.369123,0.007013,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.369123,0.007013,-0.004749,0.249955,0,0);}
.m70_c00106{transform:matrix(0.453898,0.008624,-0.004749,0.249955,0,0);-ms-transform:matrix(0.453898,0.008624,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.453898,0.008624,-0.004749,0.249955,0,0);}
.m5_c00106{transform:matrix(0.516872,0.009821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.516872,0.009821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.516872,0.009821,-0.004749,0.249955,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:0.000000px;}
.fc0_c00106{color:transparent;}
.fsf_c00106{font-size:47.258528px;}
.fsd_c00106{font-size:57.760423px;}
.fs3_c00106{font-size:61.961181px;}
.fs6_c00106{font-size:63.011370px;}
.fs5_c00106{font-size:64.061560px;}
.fs7_c00106{font-size:65.111749px;}
.fs1_c00106{font-size:66.161939px;}
.fs8_c00106{font-size:67.212129px;}
.fsc_c00106{font-size:68.262318px;}
.fs2_c00106{font-size:69.312508px;}
.fse_c00106{font-size:70.362697px;}
.fs4_c00106{font-size:71.412887px;}
.fs0_c00106{font-size:71.418883px;}
.fsb_c00106{font-size:72.463076px;}
.fs9_c00106{font-size:74.563455px;}
.fsa_c00106{font-size:75.613645px;}
.y0_c00106{bottom:0.000000px;}
.yf1_c00106{bottom:28.399369px;}
.yf0_c00106{bottom:30.179134px;}
.yef_c00106{bottom:31.280841px;}
.yee_c00106{bottom:31.920558px;}
.yed_c00106{bottom:34.222792px;}
.yec_c00106{bottom:34.863336px;}
.yeb_c00106{bottom:36.626043px;}
.yea_c00106{bottom:46.649116px;}
.ye9_c00106{bottom:49.098126px;}
.ye8_c00106{bottom:50.607244px;}
.ye7_c00106{bottom:51.154885px;}
.ye6_c00106{bottom:52.138918px;}
.ye5_c00106{bottom:55.095652px;}
.ye4_c00106{bottom:55.538635px;}
.ye3_c00106{bottom:63.551770px;}
.ye2_c00106{bottom:67.207587px;}
.ye1_c00106{bottom:67.755057px;}
.ye0_c00106{bottom:69.889765px;}
.ydf_c00106{bottom:71.389504px;}
.yde_c00106{bottom:71.824372px;}
.ydd_c00106{bottom:72.544059px;}
.ydc_c00106{bottom:80.469066px;}
.ydb_c00106{bottom:84.352186px;}
.yda_c00106{bottom:84.996310px;}
.yd9_c00106{bottom:86.377245px;}
.yd8_c00106{bottom:87.190539px;}
.yd7_c00106{bottom:88.209588px;}
.yd6_c00106{bottom:99.588033px;}
.yd5_c00106{bottom:99.944779px;}
.yd4_c00106{bottom:102.780714px;}
.yd3_c00106{bottom:104.346859px;}
.yd2_c00106{bottom:106.335631px;}
.yd1_c00106{bottom:106.842945px;}
.yd0_c00106{bottom:118.047574px;}
.ycf_c00106{bottom:118.424890px;}
.yce_c00106{bottom:120.601273px;}
.ycd_c00106{bottom:121.311864px;}
.ycc_c00106{bottom:123.052774px;}
.ycb_c00106{bottom:123.696508px;}
.yca_c00106{bottom:124.937028px;}
.yc9_c00106{bottom:136.954221px;}
.yc8_c00106{bottom:137.393299px;}
.yc7_c00106{bottom:138.320406px;}
.yc6_c00106{bottom:138.681411px;}
.yc5_c00106{bottom:139.543885px;}
.yc4_c00106{bottom:140.916244px;}
.yc3_c00106{bottom:141.193543px;}
.yc2_c00106{bottom:142.426588px;}
.yc1_c00106{bottom:143.023894px;}
.yc0_c00106{bottom:149.561727px;}
.ybf_c00106{bottom:150.442659px;}
.ybe_c00106{bottom:152.229493px;}
.ybd_c00106{bottom:153.185451px;}
.ybc_c00106{bottom:154.760572px;}
.ybb_c00106{bottom:155.666731px;}
.yba_c00106{bottom:156.532761px;}
.yb9_c00106{bottom:166.933926px;}
.yb8_c00106{bottom:167.404026px;}
.yb7_c00106{bottom:167.855865px;}
.yb6_c00106{bottom:168.595533px;}
.yb5_c00106{bottom:169.602250px;}
.yb4_c00106{bottom:170.202649px;}
.yb3_c00106{bottom:170.476179px;}
.yb2_c00106{bottom:170.837490px;}
.yb1_c00106{bottom:186.506952px;}
.yb0_c00106{bottom:186.911595px;}
.yaf_c00106{bottom:188.010156px;}
.yae_c00106{bottom:188.836314px;}
.yad_c00106{bottom:189.955623px;}
.yac_c00106{bottom:190.253106px;}
.yab_c00106{bottom:190.821852px;}
.yaa_c00106{bottom:203.389717px;}
.ya9_c00106{bottom:203.859778px;}
.ya8_c00106{bottom:205.035766px;}
.ya7_c00106{bottom:205.454212px;}
.ya6_c00106{bottom:207.694828px;}
.ya5_c00106{bottom:208.100413px;}
.ya4_c00106{bottom:209.998998px;}
.ya3_c00106{bottom:219.886734px;}
.ya2_c00106{bottom:221.216889px;}
.ya1_c00106{bottom:222.529102px;}
.ya0_c00106{bottom:222.959158px;}
.y9f_c00106{bottom:224.205588px;}
.y9e_c00106{bottom:224.782114px;}
.y9d_c00106{bottom:225.672430px;}
.y9c_c00106{bottom:226.109373px;}
.y9b_c00106{bottom:227.072245px;}
.y9a_c00106{bottom:227.554294px;}
.y99_c00106{bottom:237.423132px;}
.y98_c00106{bottom:239.457790px;}
.y97_c00106{bottom:240.122785px;}
.y96_c00106{bottom:241.084981px;}
.y95_c00106{bottom:242.305503px;}
.y94_c00106{bottom:242.615679px;}
.y93_c00106{bottom:244.302804px;}
.y92_c00106{bottom:244.833702px;}
.y91_c00106{bottom:256.437798px;}
.y90_c00106{bottom:256.846384px;}
.y8f_c00106{bottom:257.725653px;}
.y8e_c00106{bottom:259.673935px;}
.y8d_c00106{bottom:260.238013px;}
.y8c_c00106{bottom:261.159078px;}
.y8b_c00106{bottom:262.656208px;}
.y8a_c00106{bottom:274.347627px;}
.y89_c00106{bottom:274.801987px;}
.y88_c00106{bottom:277.771068px;}
.y87_c00106{bottom:278.398128px;}
.y86_c00106{bottom:279.323511px;}
.y85_c00106{bottom:280.211515px;}
.y84_c00106{bottom:292.192272px;}
.y83_c00106{bottom:292.807626px;}
.y82_c00106{bottom:294.093201px;}
.y81_c00106{bottom:294.839728px;}
.y80_c00106{bottom:295.974600px;}
.y7f_c00106{bottom:297.765225px;}
.y7e_c00106{bottom:309.489597px;}
.y7d_c00106{bottom:310.342165px;}
.y7c_c00106{bottom:311.009404px;}
.y7b_c00106{bottom:311.935015px;}
.y7a_c00106{bottom:312.707776px;}
.y79_c00106{bottom:313.235778px;}
.y78_c00106{bottom:313.636779px;}
.y77_c00106{bottom:315.317007px;}
.y76_c00106{bottom:328.068559px;}
.y75_c00106{bottom:328.454445px;}
.y74_c00106{bottom:329.574384px;}
.y73_c00106{bottom:330.820977px;}
.y72_c00106{bottom:331.245663px;}
.y71_c00106{bottom:343.385268px;}
.y70_c00106{bottom:343.889724px;}
.y6f_c00106{bottom:345.625245px;}
.y6e_c00106{bottom:345.942468px;}
.y6d_c00106{bottom:346.735953px;}
.y6c_c00106{bottom:347.716243px;}
.y6b_c00106{bottom:348.260568px;}
.y6a_c00106{bottom:360.541585px;}
.y69_c00106{bottom:360.952387px;}
.y68_c00106{bottom:361.246330px;}
.y67_c00106{bottom:361.632046px;}
.y66_c00106{bottom:361.956900px;}
.y65_c00106{bottom:362.400607px;}
.y64_c00106{bottom:362.543436px;}
.y63_c00106{bottom:363.234003px;}
.y62_c00106{bottom:363.599830px;}
.y61_c00106{bottom:364.193227px;}
.y60_c00106{bottom:377.183562px;}
.y5f_c00106{bottom:377.646153px;}
.y5e_c00106{bottom:377.801284px;}
.y5d_c00106{bottom:378.244029px;}
.y5c_c00106{bottom:379.017738px;}
.y5b_c00106{bottom:379.788113px;}
.y5a_c00106{bottom:380.205253px;}
.y59_c00106{bottom:380.829132px;}
.y58_c00106{bottom:381.938013px;}
.y57_c00106{bottom:382.287075px;}
.y56_c00106{bottom:396.039268px;}
.y55_c00106{bottom:396.316200px;}
.y54_c00106{bottom:397.092818px;}
.y53_c00106{bottom:398.483791px;}
.y52_c00106{bottom:398.704219px;}
.y51_c00106{bottom:399.567763px;}
.y50_c00106{bottom:412.918473px;}
.y4f_c00106{bottom:413.131765px;}
.y4e_c00106{bottom:413.308531px;}
.y4d_c00106{bottom:414.350920px;}
.y4c_c00106{bottom:414.609759px;}
.y4b_c00106{bottom:415.225068px;}
.y4a_c00106{bottom:415.500674px;}
.y49_c00106{bottom:430.034894px;}
.y48_c00106{bottom:430.816452px;}
.y47_c00106{bottom:431.036983px;}
.y46_c00106{bottom:432.113336px;}
.y45_c00106{bottom:432.673839px;}
.y44_c00106{bottom:433.486476px;}
.y43_c00106{bottom:434.675454px;}
.y42_c00106{bottom:445.523580px;}
.y41_c00106{bottom:446.905191px;}
.y40_c00106{bottom:449.430549px;}
.y3f_c00106{bottom:450.881116px;}
.y3e_c00106{bottom:465.261787px;}
.y3d_c00106{bottom:465.505419px;}
.y3c_c00106{bottom:465.637800px;}
.y3b_c00106{bottom:465.779343px;}
.y3a_c00106{bottom:466.668651px;}
.y39_c00106{bottom:466.820638px;}
.y38_c00106{bottom:467.188315px;}
.y37_c00106{bottom:467.399574px;}
.y36_c00106{bottom:467.512374px;}
.y35_c00106{bottom:468.431298px;}
.y34_c00106{bottom:480.068739px;}
.y33_c00106{bottom:480.735228px;}
.y32_c00106{bottom:481.330857px;}
.y31_c00106{bottom:481.546657px;}
.y30_c00106{bottom:482.687789px;}
.y2f_c00106{bottom:483.014629px;}
.y2e_c00106{bottom:483.467780px;}
.y2d_c00106{bottom:484.428036px;}
.y2c_c00106{bottom:484.636216px;}
.y2b_c00106{bottom:501.089844px;}
.y2a_c00106{bottom:501.527394px;}
.y29_c00106{bottom:501.863245px;}
.y28_c00106{bottom:502.220043px;}
.y27_c00106{bottom:502.542960px;}
.y26_c00106{bottom:502.889427px;}
.y25_c00106{bottom:503.447313px;}
.y24_c00106{bottom:503.649627px;}
.y23_c00106{bottom:504.077473px;}
.y22_c00106{bottom:516.883995px;}
.y21_c00106{bottom:517.193888px;}
.y20_c00106{bottom:518.675781px;}
.y1f_c00106{bottom:518.903010px;}
.y1e_c00106{bottom:520.509063px;}
.y1d_c00106{bottom:520.791917px;}
.y1c_c00106{bottom:521.633590px;}
.y17_c00106{bottom:536.884501px;}
.y19_c00106{bottom:536.884783px;}
.y1b_c00106{bottom:536.884884px;}
.y18_c00106{bottom:536.884887px;}
.y15_c00106{bottom:536.884933px;}
.y1a_c00106{bottom:536.884954px;}
.y16_c00106{bottom:536.885229px;}
.y13_c00106{bottom:553.645277px;}
.y12_c00106{bottom:553.645460px;}
.y14_c00106{bottom:553.645657px;}
.y11_c00106{bottom:553.645947px;}
.y10_c00106{bottom:553.646014px;}
.yf_c00106{bottom:553.646355px;}
.ye_c00106{bottom:553.646781px;}
.yd_c00106{bottom:553.647324px;}
.yc_c00106{bottom:567.737959px;}
.yb_c00106{bottom:568.177116px;}
.ya_c00106{bottom:568.352961px;}
.y9_c00106{bottom:568.643661px;}
.y8_c00106{bottom:569.567773px;}
.y7_c00106{bottom:570.035487px;}
.y6_c00106{bottom:570.390398px;}
.y5_c00106{bottom:571.143652px;}
.y4_c00106{bottom:572.585610px;}
.y3_c00106{bottom:572.943000px;}
.y2_c00106{bottom:584.815015px;}
.y1_c00106{bottom:588.337500px;}
.h11_c00106{height:47.258528px;}
.hf_c00106{height:57.760423px;}
.h5_c00106{height:61.961181px;}
.h8_c00106{height:63.011370px;}
.h7_c00106{height:64.061560px;}
.h9_c00106{height:65.111749px;}
.h3_c00106{height:66.161939px;}
.ha_c00106{height:67.212129px;}
.he_c00106{height:68.262318px;}
.h4_c00106{height:69.312508px;}
.h10_c00106{height:70.362697px;}
.h6_c00106{height:71.412887px;}
.h2_c00106{height:71.418883px;}
.hd_c00106{height:72.463076px;}
.hb_c00106{height:74.563455px;}
.hc_c00106{height:75.613645px;}
.h0_c00106{height:637.470000px;}
.h1_c00106{height:637.500000px;}
.w0_c00106{width:371.790000px;}
.w1_c00106{width:372.000000px;}
.x0_c00106{left:0.000000px;}
.x30_c00106{left:21.469514px;}
.x59_c00106{left:29.965194px;}
.x15_c00106{left:31.318717px;}
.x3_c00106{left:32.500500px;}
.x4b_c00106{left:36.314562px;}
.x67_c00106{left:38.937141px;}
.xd_c00106{left:41.041096px;}
.x28_c00106{left:45.980187px;}
.x61_c00106{left:48.792707px;}
.x4_c00106{left:51.310500px;}
.x16_c00106{left:53.732311px;}
.x52_c00106{left:56.541584px;}
.x3d_c00106{left:57.642013px;}
.xe_c00106{left:59.944908px;}
.x6c_c00106{left:63.047635px;}
.x70_c00106{left:65.205336px;}
.x21_c00106{left:68.664452px;}
.x6e_c00106{left:76.062117px;}
.x1c_c00106{left:78.373041px;}
.x62_c00106{left:84.464792px;}
.x22_c00106{left:85.472675px;}
.xf_c00106{left:89.109424px;}
.x75_c00106{left:90.257518px;}
.x71_c00106{left:91.425351px;}
.x17_c00106{left:93.969318px;}
.x6d_c00106{left:96.603534px;}
.x42_c00106{left:98.932445px;}
.x5d_c00106{left:99.941080px;}
.x38_c00106{left:102.308802px;}
.x4f_c00106{left:103.442718px;}
.x31_c00106{left:104.978196px;}
.x29_c00106{left:105.997107px;}
.x64_c00106{left:107.181442px;}
.x5a_c00106{left:108.821709px;}
.x57_c00106{left:111.868641px;}
.x3e_c00106{left:113.561507px;}
.x32_c00106{left:115.179735px;}
.x18_c00106{left:118.273596px;}
.x65_c00106{left:123.394590px;}
.x5_c00106{left:127.203000px;}
.x74_c00106{left:129.832417px;}
.x23_c00106{left:131.972859px;}
.x2a_c00106{left:134.348732px;}
.x72_c00106{left:135.990705px;}
.x3f_c00106{left:137.056569px;}
.x50_c00106{left:141.256293px;}
.x68_c00106{left:143.439141px;}
.x10_c00106{left:145.279188px;}
.x45_c00106{left:147.604842px;}
.x2b_c00106{left:154.788900px;}
.x51_c00106{left:156.372723px;}
.x3a_c00106{left:157.600493px;}
.x24_c00106{left:160.869707px;}
.x4c_c00106{left:164.306703px;}
.x6_c00106{left:166.848000px;}
.x46_c00106{left:170.744270px;}
.x1_c00106{left:173.581500px;}
.x5e_c00106{left:174.960382px;}
.x69_c00106{left:178.266273px;}
.x33_c00106{left:181.606824px;}
.x1d_c00106{left:183.238508px;}
.x7_c00106{left:185.527500px;}
.x6f_c00106{left:186.608221px;}
.x25_c00106{left:187.816298px;}
.x11_c00106{left:190.377961px;}
.x19_c00106{left:191.726601px;}
.x1e_c00106{left:195.829736px;}
.x58_c00106{left:197.384768px;}
.x55_c00106{left:200.129130px;}
.x63_c00106{left:201.142564px;}
.x76_c00106{left:205.836184px;}
.x73_c00106{left:208.085358px;}
.x8_c00106{left:210.144000px;}
.x5f_c00106{left:211.939452px;}
.x47_c00106{left:213.580596px;}
.x26_c00106{left:217.572759px;}
.x4d_c00106{left:219.130890px;}
.x39_c00106{left:222.586242px;}
.x6a_c00106{left:224.540923px;}
.x2c_c00106{left:226.141976px;}
.x66_c00106{left:229.780477px;}
.x12_c00106{left:231.155168px;}
.x43_c00106{left:234.418668px;}
.x60_c00106{left:237.541060px;}
.x2d_c00106{left:239.632245px;}
.x77_c00106{left:241.391590px;}
.x13_c00106{left:244.116841px;}
.x1a_c00106{left:245.737095px;}
.x40_c00106{left:247.818384px;}
.x44_c00106{left:251.758166px;}
.x6b_c00106{left:252.823548px;}
.x48_c00106{left:256.592422px;}
.x9_c00106{left:258.781500px;}
.x3b_c00106{left:259.940835px;}
.x34_c00106{left:262.451108px;}
.x5b_c00106{left:265.159324px;}
.x41_c00106{left:267.178820px;}
.x53_c00106{left:271.288065px;}
.xa_c00106{left:274.081500px;}
.x35_c00106{left:275.350074px;}
.x2e_c00106{left:276.825354px;}
.x1f_c00106{left:278.167803px;}
.x56_c00106{left:279.777620px;}
.x27_c00106{left:282.049838px;}
.xb_c00106{left:283.336500px;}
.x5c_c00106{left:284.887314px;}
.x36_c00106{left:287.450927px;}
.x49_c00106{left:289.797050px;}
.x14_c00106{left:293.535683px;}
.x20_c00106{left:295.425645px;}
.x4e_c00106{left:297.057300px;}
.x78_c00106{left:298.813509px;}
.x54_c00106{left:300.995957px;}
.xc_c00106{left:306.450000px;}
.x1b_c00106{left:307.578911px;}
.x37_c00106{left:309.592790px;}
.x4a_c00106{left:315.486534px;}
.x2f_c00106{left:318.458720px;}
.x3c_c00106{left:322.554398px;}
.x2_c00106{left:326.733000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.fsf_c00106{font-size:42.007580pt;}
.fsd_c00106{font-size:51.342598pt;}
.fs3_c00106{font-size:55.076605pt;}
.fs6_c00106{font-size:56.010107pt;}
.fs5_c00106{font-size:56.943609pt;}
.fs7_c00106{font-size:57.877111pt;}
.fs1_c00106{font-size:58.810612pt;}
.fs8_c00106{font-size:59.744114pt;}
.fsc_c00106{font-size:60.677616pt;}
.fs2_c00106{font-size:61.611118pt;}
.fse_c00106{font-size:62.544620pt;}
.fs4_c00106{font-size:63.478121pt;}
.fs0_c00106{font-size:63.483451pt;}
.fsb_c00106{font-size:64.411623pt;}
.fs9_c00106{font-size:66.278627pt;}
.fsa_c00106{font-size:67.212129pt;}
.y0_c00106{bottom:0.000000pt;}
.yf1_c00106{bottom:25.243884pt;}
.yf0_c00106{bottom:26.825897pt;}
.yef_c00106{bottom:27.805192pt;}
.yee_c00106{bottom:28.373829pt;}
.yed_c00106{bottom:30.420260pt;}
.yec_c00106{bottom:30.989632pt;}
.yeb_c00106{bottom:32.556483pt;}
.yea_c00106{bottom:41.465881pt;}
.ye9_c00106{bottom:43.642779pt;}
.ye8_c00106{bottom:44.984217pt;}
.ye7_c00106{bottom:45.471009pt;}
.ye6_c00106{bottom:46.345705pt;}
.ye5_c00106{bottom:48.973913pt;}
.ye4_c00106{bottom:49.367676pt;}
.ye3_c00106{bottom:56.490463pt;}
.ye2_c00106{bottom:59.740077pt;}
.ye1_c00106{bottom:60.226717pt;}
.ye0_c00106{bottom:62.124236pt;}
.ydf_c00106{bottom:63.457337pt;}
.yde_c00106{bottom:63.843887pt;}
.ydd_c00106{bottom:64.483608pt;}
.ydc_c00106{bottom:71.528059pt;}
.ydb_c00106{bottom:74.979721pt;}
.yda_c00106{bottom:75.552276pt;}
.yd9_c00106{bottom:76.779773pt;}
.yd8_c00106{bottom:77.502701pt;}
.yd7_c00106{bottom:78.408523pt;}
.yd6_c00106{bottom:88.522696pt;}
.yd5_c00106{bottom:88.839804pt;}
.yd4_c00106{bottom:91.360635pt;}
.yd3_c00106{bottom:92.752764pt;}
.yd2_c00106{bottom:94.520561pt;}
.yd1_c00106{bottom:94.971507pt;}
.yd0_c00106{bottom:104.931177pt;}
.ycf_c00106{bottom:105.266569pt;}
.yce_c00106{bottom:107.201132pt;}
.ycd_c00106{bottom:107.832768pt;}
.ycc_c00106{bottom:109.380244pt;}
.ycb_c00106{bottom:109.952452pt;}
.yca_c00106{bottom:111.055136pt;}
.yc9_c00106{bottom:121.737085pt;}
.yc8_c00106{bottom:122.127377pt;}
.yc7_c00106{bottom:122.951472pt;}
.yc6_c00106{bottom:123.272365pt;}
.yc5_c00106{bottom:124.039009pt;}
.yc4_c00106{bottom:125.258884pt;}
.yc3_c00106{bottom:125.505372pt;}
.yc2_c00106{bottom:126.601412pt;}
.yc1_c00106{bottom:127.132351pt;}
.yc0_c00106{bottom:132.943757pt;}
.ybf_c00106{bottom:133.726808pt;}
.ybe_c00106{bottom:135.315105pt;}
.ybd_c00106{bottom:136.164845pt;}
.ybc_c00106{bottom:137.564953pt;}
.ybb_c00106{bottom:138.370428pt;}
.yba_c00106{bottom:139.140232pt;}
.yb9_c00106{bottom:148.385712pt;}
.yb8_c00106{bottom:148.803579pt;}
.yb7_c00106{bottom:149.205213pt;}
.yb6_c00106{bottom:149.862696pt;}
.yb5_c00106{bottom:150.757556pt;}
.yb4_c00106{bottom:151.291244pt;}
.yb3_c00106{bottom:151.534381pt;}
.yb2_c00106{bottom:151.855547pt;}
.yb1_c00106{bottom:165.783957pt;}
.yb0_c00106{bottom:166.143640pt;}
.yaf_c00106{bottom:167.120139pt;}
.yae_c00106{bottom:167.854501pt;}
.yad_c00106{bottom:168.849443pt;}
.yac_c00106{bottom:169.113872pt;}
.yab_c00106{bottom:169.619424pt;}
.yaa_c00106{bottom:180.790860pt;}
.ya9_c00106{bottom:181.208692pt;}
.ya8_c00106{bottom:182.254015pt;}
.ya7_c00106{bottom:182.625967pt;}
.ya6_c00106{bottom:184.617625pt;}
.ya5_c00106{bottom:184.978145pt;}
.ya4_c00106{bottom:186.665776pt;}
.ya3_c00106{bottom:195.454875pt;}
.ya2_c00106{bottom:196.637235pt;}
.ya1_c00106{bottom:197.803647pt;}
.ya0_c00106{bottom:198.185919pt;}
.y9f_c00106{bottom:199.293856pt;}
.y9e_c00106{bottom:199.806324pt;}
.y9d_c00106{bottom:200.597716pt;}
.y9c_c00106{bottom:200.986109pt;}
.y9b_c00106{bottom:201.841996pt;}
.y9a_c00106{bottom:202.270484pt;}
.y99_c00106{bottom:211.042784pt;}
.y98_c00106{bottom:212.851369pt;}
.y97_c00106{bottom:213.442476pt;}
.y96_c00106{bottom:214.297761pt;}
.y95_c00106{bottom:215.382669pt;}
.y94_c00106{bottom:215.658381pt;}
.y93_c00106{bottom:217.158048pt;}
.y92_c00106{bottom:217.629957pt;}
.y91_c00106{bottom:227.944709pt;}
.y90_c00106{bottom:228.307897pt;}
.y8f_c00106{bottom:229.089469pt;}
.y8e_c00106{bottom:230.821276pt;}
.y8d_c00106{bottom:231.322679pt;}
.y8c_c00106{bottom:232.141403pt;}
.y8b_c00106{bottom:233.472185pt;}
.y8a_c00106{bottom:243.864557pt;}
.y89_c00106{bottom:244.268433pt;}
.y88_c00106{bottom:246.907616pt;}
.y87_c00106{bottom:247.465003pt;}
.y86_c00106{bottom:248.287565pt;}
.y85_c00106{bottom:249.076903pt;}
.y84_c00106{bottom:259.726464pt;}
.y83_c00106{bottom:260.273445pt;}
.y82_c00106{bottom:261.416179pt;}
.y81_c00106{bottom:262.079759pt;}
.y80_c00106{bottom:263.088533pt;}
.y7f_c00106{bottom:264.680200pt;}
.y7e_c00106{bottom:275.101864pt;}
.y7d_c00106{bottom:275.859703pt;}
.y7c_c00106{bottom:276.452804pt;}
.y7b_c00106{bottom:277.275569pt;}
.y7a_c00106{bottom:277.962468pt;}
.y79_c00106{bottom:278.431803pt;}
.y78_c00106{bottom:278.788248pt;}
.y77_c00106{bottom:280.281784pt;}
.y76_c00106{bottom:291.616497pt;}
.y75_c00106{bottom:291.959507pt;}
.y74_c00106{bottom:292.955008pt;}
.y73_c00106{bottom:294.063091pt;}
.y72_c00106{bottom:294.440589pt;}
.y71_c00106{bottom:305.231349pt;}
.y70_c00106{bottom:305.679755pt;}
.y6f_c00106{bottom:307.222440pt;}
.y6e_c00106{bottom:307.504416pt;}
.y6d_c00106{bottom:308.209736pt;}
.y6c_c00106{bottom:309.081105pt;}
.y6b_c00106{bottom:309.564949pt;}
.y6a_c00106{bottom:320.481409pt;}
.y69_c00106{bottom:320.846567pt;}
.y68_c00106{bottom:321.107849pt;}
.y67_c00106{bottom:321.450708pt;}
.y66_c00106{bottom:321.739467pt;}
.y65_c00106{bottom:322.133873pt;}
.y64_c00106{bottom:322.260832pt;}
.y63_c00106{bottom:322.874669pt;}
.y62_c00106{bottom:323.199849pt;}
.y61_c00106{bottom:323.727313pt;}
.y60_c00106{bottom:335.274277pt;}
.y5f_c00106{bottom:335.685469pt;}
.y5e_c00106{bottom:335.823364pt;}
.y5d_c00106{bottom:336.216915pt;}
.y5c_c00106{bottom:336.904656pt;}
.y5b_c00106{bottom:337.589433pt;}
.y5a_c00106{bottom:337.960225pt;}
.y59_c00106{bottom:338.514784pt;}
.y58_c00106{bottom:339.500456pt;}
.y57_c00106{bottom:339.810733pt;}
.y56_c00106{bottom:352.034905pt;}
.y55_c00106{bottom:352.281067pt;}
.y54_c00106{bottom:352.971393pt;}
.y53_c00106{bottom:354.207815pt;}
.y52_c00106{bottom:354.403751pt;}
.y51_c00106{bottom:355.171345pt;}
.y50_c00106{bottom:367.038643pt;}
.y4f_c00106{bottom:367.228236pt;}
.y4e_c00106{bottom:367.385361pt;}
.y4d_c00106{bottom:368.311929pt;}
.y4c_c00106{bottom:368.542008pt;}
.y4b_c00106{bottom:369.088949pt;}
.y4a_c00106{bottom:369.333932pt;}
.y49_c00106{bottom:382.253239pt;}
.y48_c00106{bottom:382.947957pt;}
.y47_c00106{bottom:383.143985pt;}
.y46_c00106{bottom:384.100743pt;}
.y45_c00106{bottom:384.598968pt;}
.y44_c00106{bottom:385.321312pt;}
.y43_c00106{bottom:386.378181pt;}
.y42_c00106{bottom:396.020960pt;}
.y41_c00106{bottom:397.249059pt;}
.y40_c00106{bottom:399.493821pt;}
.y3f_c00106{bottom:400.783215pt;}
.y3e_c00106{bottom:413.566033pt;}
.y3d_c00106{bottom:413.782595pt;}
.y3c_c00106{bottom:413.900267pt;}
.y3b_c00106{bottom:414.026083pt;}
.y3a_c00106{bottom:414.816579pt;}
.y39_c00106{bottom:414.951679pt;}
.y38_c00106{bottom:415.278503pt;}
.y37_c00106{bottom:415.466288pt;}
.y36_c00106{bottom:415.566555pt;}
.y35_c00106{bottom:416.383376pt;}
.y34_c00106{bottom:426.727768pt;}
.y33_c00106{bottom:427.320203pt;}
.y32_c00106{bottom:427.849651pt;}
.y31_c00106{bottom:428.041473pt;}
.y30_c00106{bottom:429.055812pt;}
.y2f_c00106{bottom:429.346337pt;}
.y2e_c00106{bottom:429.749137pt;}
.y2d_c00106{bottom:430.602699pt;}
.y2c_c00106{bottom:430.787748pt;}
.y2b_c00106{bottom:445.413195pt;}
.y2a_c00106{bottom:445.802128pt;}
.y29_c00106{bottom:446.100663pt;}
.y28_c00106{bottom:446.417816pt;}
.y27_c00106{bottom:446.704853pt;}
.y26_c00106{bottom:447.012824pt;}
.y25_c00106{bottom:447.508723pt;}
.y24_c00106{bottom:447.688557pt;}
.y23_c00106{bottom:448.068865pt;}
.y22_c00106{bottom:459.452440pt;}
.y21_c00106{bottom:459.727900pt;}
.y20_c00106{bottom:461.045139pt;}
.y1f_c00106{bottom:461.247120pt;}
.y1e_c00106{bottom:462.674723pt;}
.y1d_c00106{bottom:462.926148pt;}
.y1c_c00106{bottom:463.674303pt;}
.y17_c00106{bottom:477.230668pt;}
.y19_c00106{bottom:477.230919pt;}
.y1b_c00106{bottom:477.231008pt;}
.y18_c00106{bottom:477.231011pt;}
.y15_c00106{bottom:477.231052pt;}
.y1a_c00106{bottom:477.231071pt;}
.y16_c00106{bottom:477.231315pt;}
.y13_c00106{bottom:492.129135pt;}
.y12_c00106{bottom:492.129297pt;}
.y14_c00106{bottom:492.129473pt;}
.y11_c00106{bottom:492.129731pt;}
.y10_c00106{bottom:492.129791pt;}
.yf_c00106{bottom:492.130093pt;}
.ye_c00106{bottom:492.130472pt;}
.yd_c00106{bottom:492.130955pt;}
.yc_c00106{bottom:504.655964pt;}
.yb_c00106{bottom:505.046325pt;}
.ya_c00106{bottom:505.202632pt;}
.y9_c00106{bottom:505.461032pt;}
.y8_c00106{bottom:506.282465pt;}
.y7_c00106{bottom:506.698211pt;}
.y6_c00106{bottom:507.013687pt;}
.y5_c00106{bottom:507.683247pt;}
.y4_c00106{bottom:508.964987pt;}
.y3_c00106{bottom:509.282667pt;}
.y2_c00106{bottom:519.835569pt;}
.y1_c00106{bottom:522.966667pt;}
.h11_c00106{height:42.007580pt;}
.hf_c00106{height:51.342598pt;}
.h5_c00106{height:55.076605pt;}
.h8_c00106{height:56.010107pt;}
.h7_c00106{height:56.943609pt;}
.h9_c00106{height:57.877111pt;}
.h3_c00106{height:58.810612pt;}
.ha_c00106{height:59.744114pt;}
.he_c00106{height:60.677616pt;}
.h4_c00106{height:61.611118pt;}
.h10_c00106{height:62.544620pt;}
.h6_c00106{height:63.478121pt;}
.h2_c00106{height:63.483451pt;}
.hd_c00106{height:64.411623pt;}
.hb_c00106{height:66.278627pt;}
.hc_c00106{height:67.212129pt;}
.h0_c00106{height:566.640000pt;}
.h1_c00106{height:566.666667pt;}
.w0_c00106{width:330.480000pt;}
.w1_c00106{width:330.666667pt;}
.x0_c00106{left:0.000000pt;}
.x30_c00106{left:19.084012pt;}
.x59_c00106{left:26.635728pt;}
.x15_c00106{left:27.838860pt;}
.x3_c00106{left:28.889333pt;}
.x4b_c00106{left:32.279611pt;}
.x67_c00106{left:34.610792pt;}
.xd_c00106{left:36.480975pt;}
.x28_c00106{left:40.871277pt;}
.x61_c00106{left:43.371295pt;}
.x4_c00106{left:45.609333pt;}
.x16_c00106{left:47.762055pt;}
.x52_c00106{left:50.259185pt;}
.x3d_c00106{left:51.237345pt;}
.xe_c00106{left:53.284363pt;}
.x6c_c00106{left:56.042343pt;}
.x70_c00106{left:57.960299pt;}
.x21_c00106{left:61.035068pt;}
.x6e_c00106{left:67.610771pt;}
.x1c_c00106{left:69.664925pt;}
.x62_c00106{left:75.079815pt;}
.x22_c00106{left:75.975711pt;}
.xf_c00106{left:79.208377pt;}
.x75_c00106{left:80.228905pt;}
.x71_c00106{left:81.266979pt;}
.x17_c00106{left:83.528283pt;}
.x6d_c00106{left:85.869808pt;}
.x42_c00106{left:87.939951pt;}
.x5d_c00106{left:88.836516pt;}
.x38_c00106{left:90.941157pt;}
.x4f_c00106{left:91.949083pt;}
.x31_c00106{left:93.313952pt;}
.x29_c00106{left:94.219651pt;}
.x64_c00106{left:95.272393pt;}
.x5a_c00106{left:96.730408pt;}
.x57_c00106{left:99.438792pt;}
.x3e_c00106{left:100.943561pt;}
.x32_c00106{left:102.381987pt;}
.x18_c00106{left:105.132085pt;}
.x65_c00106{left:109.684080pt;}
.x5_c00106{left:113.069333pt;}
.x74_c00106{left:115.406593pt;}
.x23_c00106{left:117.309208pt;}
.x2a_c00106{left:119.421095pt;}
.x72_c00106{left:120.880627pt;}
.x3f_c00106{left:121.828061pt;}
.x50_c00106{left:125.561149pt;}
.x68_c00106{left:127.501459pt;}
.x10_c00106{left:129.137056pt;}
.x45_c00106{left:131.204304pt;}
.x2b_c00106{left:137.590133pt;}
.x51_c00106{left:138.997976pt;}
.x3a_c00106{left:140.089327pt;}
.x24_c00106{left:142.995295pt;}
.x4c_c00106{left:146.050403pt;}
.x6_c00106{left:148.309333pt;}
.x46_c00106{left:151.772684pt;}
.x1_c00106{left:154.294667pt;}
.x5e_c00106{left:155.520340pt;}
.x69_c00106{left:158.458909pt;}
.x33_c00106{left:161.428288pt;}
.x1d_c00106{left:162.878673pt;}
.x7_c00106{left:164.913333pt;}
.x6f_c00106{left:165.873975pt;}
.x25_c00106{left:166.947820pt;}
.x11_c00106{left:169.224855pt;}
.x19_c00106{left:170.423645pt;}
.x1e_c00106{left:174.070876pt;}
.x58_c00106{left:175.453127pt;}
.x55_c00106{left:177.892560pt;}
.x63_c00106{left:178.793391pt;}
.x76_c00106{left:182.965497pt;}
.x73_c00106{left:184.964763pt;}
.x8_c00106{left:186.794667pt;}
.x5f_c00106{left:188.390624pt;}
.x47_c00106{left:189.849419pt;}
.x26_c00106{left:193.398008pt;}
.x4d_c00106{left:194.783013pt;}
.x39_c00106{left:197.854437pt;}
.x6a_c00106{left:199.591932pt;}
.x2c_c00106{left:201.015089pt;}
.x66_c00106{left:204.249313pt;}
.x12_c00106{left:205.471260pt;}
.x43_c00106{left:208.372149pt;}
.x60_c00106{left:211.147609pt;}
.x2d_c00106{left:213.006440pt;}
.x77_c00106{left:214.570303pt;}
.x13_c00106{left:216.992748pt;}
.x1a_c00106{left:218.432973pt;}
.x40_c00106{left:220.283008pt;}
.x44_c00106{left:223.785036pt;}
.x6b_c00106{left:224.732043pt;}
.x48_c00106{left:228.082153pt;}
.x9_c00106{left:230.028000pt;}
.x3b_c00106{left:231.058520pt;}
.x34_c00106{left:233.289873pt;}
.x5b_c00106{left:235.697177pt;}
.x41_c00106{left:237.492284pt;}
.x53_c00106{left:241.144947pt;}
.xa_c00106{left:243.628000pt;}
.x35_c00106{left:244.755621pt;}
.x2e_c00106{left:246.066981pt;}
.x1f_c00106{left:247.260269pt;}
.x56_c00106{left:248.691217pt;}
.x27_c00106{left:250.710967pt;}
.xb_c00106{left:251.854667pt;}
.x5c_c00106{left:253.233168pt;}
.x36_c00106{left:255.511935pt;}
.x49_c00106{left:257.597377pt;}
.x14_c00106{left:260.920607pt;}
.x20_c00106{left:262.600573pt;}
.x4e_c00106{left:264.050933pt;}
.x78_c00106{left:265.612008pt;}
.x54_c00106{left:267.551961pt;}
.xc_c00106{left:272.400000pt;}
.x1b_c00106{left:273.403476pt;}
.x37_c00106{left:275.193591pt;}
.x4a_c00106{left:280.432475pt;}
.x2f_c00106{left:283.074417pt;}
.x3c_c00106{left:286.715020pt;}
.x2_c00106{left:290.429333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00107 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00107 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00107 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00107 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00107.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00107;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.031655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031655,0.000000,0.000000,0.250000,0,0);}
.m24_c00107{transform:matrix(0.033880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033880,0.000000,0.000000,0.250000,0,0);}
.m83_c00107{transform:matrix(0.049940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049940,0.000000,0.000000,0.250000,0,0);}
.m6a_c00107{transform:matrix(0.085735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085735,0.000000,0.000000,0.250000,0,0);}
.m61_c00107{transform:matrix(0.111045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111045,0.000000,0.000000,0.250000,0,0);}
.m27_c00107{transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);}
.m85_c00107{transform:matrix(0.119145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119145,0.000000,0.000000,0.250000,0,0);}
.m99_c00107{transform:matrix(0.129160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129160,0.000000,0.000000,0.250000,0,0);}
.ma4_c00107{transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);}
.m37_c00107{transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);}
.m53_c00107{transform:matrix(0.141135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141135,0.000000,0.000000,0.250000,0,0);}
.mb5_c00107{transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00107{transform:matrix(0.151035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151035,0.000000,0.000000,0.250000,0,0);}
.m77_c00107{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m87_c00107{transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00107{transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);}
.m62_c00107{transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);}
.m46_c00107{transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);}
.m9c_c00107{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.m71_c00107{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.md2_c00107{transform:matrix(0.159560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159560,0.000000,0.000000,0.250000,0,0);}
.ma1_c00107{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.mcc_c00107{transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);}
.m95_c00107{transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);}
.m8e_c00107{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m9f_c00107{transform:matrix(0.161415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161415,0.000000,0.000000,0.250000,0,0);}
.m73_c00107{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00107{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.mb3_c00107{transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);}
.m97_c00107{transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00107{transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);}
.mba_c00107{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.md6_c00107{transform:matrix(0.166476,-0.002497,0.003750,0.249972,0,0);-ms-transform:matrix(0.166476,-0.002497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166476,-0.002497,0.003750,0.249972,0,0);}
.ma9_c00107{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m43_c00107{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.md5_c00107{transform:matrix(0.169071,-0.002536,0.003750,0.249972,0,0);-ms-transform:matrix(0.169071,-0.002536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169071,-0.002536,0.003750,0.249972,0,0);}
.md7_c00107{transform:matrix(0.169111,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169111,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169111,-0.002537,0.003750,0.249972,0,0);}
.m63_c00107{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.md9_c00107{transform:matrix(0.169821,-0.002547,0.003750,0.249972,0,0);-ms-transform:matrix(0.169821,-0.002547,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169821,-0.002547,0.003750,0.249972,0,0);}
.mda_c00107{transform:matrix(0.169871,-0.002548,0.003750,0.249972,0,0);-ms-transform:matrix(0.169871,-0.002548,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169871,-0.002548,0.003750,0.249972,0,0);}
.m35_c00107{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.m9b_c00107{transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);}
.mad_c00107{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.mac_c00107{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);}
.m98_c00107{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m9e_c00107{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.ma5_c00107{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.md1_c00107{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m91_c00107{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m45_c00107{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m69_c00107{transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);}
.m89_c00107{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00107{transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);}
.m79_c00107{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.mb7_c00107{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.mde_c00107{transform:matrix(0.177373,-0.003370,0.004749,0.249955,0,0);-ms-transform:matrix(0.177373,-0.003370,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177373,-0.003370,0.004749,0.249955,0,0);}
.md8_c00107{transform:matrix(0.177770,-0.002667,0.003750,0.249972,0,0);-ms-transform:matrix(0.177770,-0.002667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177770,-0.002667,0.003750,0.249972,0,0);}
.m4d_c00107{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);}
.mc6_c00107{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.md3_c00107{transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);}
.m68_c00107{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);}
.mb4_c00107{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.mc8_c00107{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m72_c00107{transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);}
.mbb_c00107{transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00107{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m70_c00107{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.m75_c00107{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.md0_c00107{transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);}
.ma6_c00107{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);}
.m36_c00107{transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);}
.m6e_c00107{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m30_c00107{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m90_c00107{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.md4_c00107{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m9a_c00107{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.m82_c00107{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m64_c00107{transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186260,0.000000,0.000000,0.250000,0,0);}
.m5a_c00107{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00107{transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);}
.m3d_c00107{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m76_c00107{transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);}
.m94_c00107{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m74_c00107{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m5b_c00107{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m40_c00107{transform:matrix(0.189090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189090,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m47_c00107{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m7a_c00107{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m86_c00107{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00107{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.m34_c00107{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.mc9_c00107{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m66_c00107{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m67_c00107{transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);}
.ma8_c00107{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.mab_c00107{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.ma7_c00107{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00107{transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);}
.m81_c00107{transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);}
.mb6_c00107{transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);}
.m57_c00107{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.mb9_c00107{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00107{transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.mc0_c00107{transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);}
.m5f_c00107{transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);}
.m5d_c00107{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m52_c00107{transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);}
.m56_c00107{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.me0_c00107{transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);-ms-transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);}
.mbd_c00107{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.mcf_c00107{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.mb8_c00107{transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);}
.me1_c00107{transform:matrix(0.200854,-0.003816,0.004749,0.249955,0,0);-ms-transform:matrix(0.200854,-0.003816,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200854,-0.003816,0.004749,0.249955,0,0);}
.m33_c00107{transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);}
.m93_c00107{transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);}
.m54_c00107{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);}
.m3b_c00107{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m3a_c00107{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.mb2_c00107{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m59_c00107{transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);}
.m42_c00107{transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);}
.m32_c00107{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00107{transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);}
.mc2_c00107{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00107{transform:matrix(0.204398,-0.003884,0.004749,0.249955,0,0);-ms-transform:matrix(0.204398,-0.003884,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204398,-0.003884,0.004749,0.249955,0,0);}
.mb0_c00107{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00107{transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);}
.m55_c00107{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m7b_c00107{transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);}
.mbc_c00107{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.mc4_c00107{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.m4f_c00107{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m65_c00107{transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);}
.ma0_c00107{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.maa_c00107{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.mca_c00107{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.mdf_c00107{transform:matrix(0.208837,-0.003968,0.004749,0.249955,0,0);-ms-transform:matrix(0.208837,-0.003968,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208837,-0.003968,0.004749,0.249955,0,0);}
.m17_c00107{transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);}
.m2d_c00107{transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);}
.mdb_c00107{transform:matrix(0.211467,-0.004018,0.004749,0.249955,0,0);-ms-transform:matrix(0.211467,-0.004018,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211467,-0.004018,0.004749,0.249955,0,0);}
.m3e_c00107{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m41_c00107{transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);}
.m96_c00107{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.mc3_c00107{transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);}
.m2e_c00107{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213920,0.000000,0.000000,0.250000,0,0);}
.mce_c00107{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.mc7_c00107{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m49_c00107{transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);}
.m8d_c00107{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.mcb_c00107{transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);}
.m8a_c00107{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m50_c00107{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m92_c00107{transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);}
.m5c_c00107{transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);}
.m8b_c00107{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m6b_c00107{transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);}
.m88_c00107{transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);}
.m6d_c00107{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.m58_c00107{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m84_c00107{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m7d_c00107{transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);}
.m2f_c00107{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m28_c00107{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.mbe_c00107{transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);}
.m80_c00107{transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);}
.ma2_c00107{transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);}
.m2a_c00107{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m7e_c00107{transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);}
.m7f_c00107{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.mdd_c00107{transform:matrix(0.249885,-0.004748,0.004749,0.249955,0,0);-ms-transform:matrix(0.249885,-0.004748,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249885,-0.004748,0.004749,0.249955,0,0);}
.m60_c00107{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.mbf_c00107{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m39_c00107{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m31_c00107{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m38_c00107{transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);}
.m48_c00107{transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);}
.mc5_c00107{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m6c_c00107{transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00107{transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);}
.m29_c00107{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m25_c00107{transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);}
.m8c_c00107{transform:matrix(0.322355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322355,0.000000,0.000000,0.250000,0,0);}
.m2b_c00107{transform:matrix(0.334300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334300,0.000000,0.000000,0.250000,0,0);}
.maf_c00107{transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);}
.m2c_c00107{transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.421670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421670,0.000000,0.000000,0.250000,0,0);}
.m44_c00107{transform:matrix(0.457620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457620,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.470135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470135,0.000000,0.000000,0.250000,0,0);}
.mae_c00107{transform:matrix(0.672605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672605,0.000000,0.000000,0.250000,0,0);}
.m7c_c00107{transform:matrix(0.794025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794025,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:0.000000px;}
.fc0_c00107{color:transparent;}
.fs4_c00107{font-size:50.400000px;}
.fsc_c00107{font-size:52.500000px;}
.fs5_c00107{font-size:59.850000px;}
.fs8_c00107{font-size:61.950000px;}
.fs11_c00107{font-size:61.961181px;}
.fsa_c00107{font-size:63.000000px;}
.fs1_c00107{font-size:64.050000px;}
.fs7_c00107{font-size:65.100000px;}
.fsf_c00107{font-size:66.150000px;}
.fsd_c00107{font-size:67.200000px;}
.fs2_c00107{font-size:68.250000px;}
.fs3_c00107{font-size:69.300000px;}
.fs6_c00107{font-size:71.400000px;}
.fsb_c00107{font-size:72.450000px;}
.fse_c00107{font-size:73.500000px;}
.fs10_c00107{font-size:75.608505px;}
.fs9_c00107{font-size:76.650000px;}
.fs0_c00107{font-size:84.000000px;}
.y0_c00107{bottom:0.000000px;}
.y25_c00107{bottom:43.476000px;}
.y26_c00107{bottom:44.357619px;}
.y27_c00107{bottom:44.860644px;}
.y28_c00107{bottom:45.417848px;}
.y29_c00107{bottom:45.794418px;}
.y2a_c00107{bottom:47.305830px;}
.y2b_c00107{bottom:48.180609px;}
.y1f_c00107{bottom:62.103000px;}
.y20_c00107{bottom:62.790510px;}
.y21_c00107{bottom:63.127605px;}
.y22_c00107{bottom:63.828120px;}
.y23_c00107{bottom:65.180618px;}
.y24_c00107{bottom:66.181103px;}
.y1e_c00107{bottom:80.820000px;}
.y1d_c00107{bottom:99.433500px;}
.y1c_c00107{bottom:116.088000px;}
.y1b_c00107{bottom:134.605500px;}
.y1a_c00107{bottom:152.397000px;}
.y19_c00107{bottom:169.006500px;}
.y18_c00107{bottom:187.566000px;}
.y17_c00107{bottom:205.000500px;}
.y16_c00107{bottom:222.550500px;}
.y15_c00107{bottom:239.562000px;}
.y14_c00107{bottom:257.193000px;}
.y13_c00107{bottom:274.543500px;}
.y12_c00107{bottom:291.904500px;}
.y11_c00107{bottom:309.102000px;}
.y10_c00107{bottom:325.492500px;}
.yf_c00107{bottom:344.166000px;}
.ye_c00107{bottom:361.597500px;}
.yd_c00107{bottom:378.877500px;}
.yc_c00107{bottom:396.384000px;}
.yb_c00107{bottom:414.094500px;}
.ya_c00107{bottom:431.460000px;}
.y9_c00107{bottom:448.803000px;}
.y8_c00107{bottom:466.203000px;}
.y7_c00107{bottom:483.601500px;}
.y6_c00107{bottom:500.283000px;}
.y5_c00107{bottom:518.400000px;}
.y4_c00107{bottom:535.593000px;}
.y3_c00107{bottom:552.873000px;}
.y2_c00107{bottom:570.628500px;}
.y1_c00107{bottom:580.387500px;}
.h5_c00107{height:50.400000px;}
.hd_c00107{height:52.500000px;}
.h6_c00107{height:59.850000px;}
.h9_c00107{height:61.950000px;}
.h12_c00107{height:61.961181px;}
.hb_c00107{height:63.000000px;}
.h2_c00107{height:64.050000px;}
.h8_c00107{height:65.100000px;}
.h10_c00107{height:66.150000px;}
.he_c00107{height:67.200000px;}
.h3_c00107{height:68.250000px;}
.h4_c00107{height:69.300000px;}
.h7_c00107{height:71.400000px;}
.hc_c00107{height:72.450000px;}
.hf_c00107{height:73.500000px;}
.h11_c00107{height:75.608505px;}
.ha_c00107{height:76.650000px;}
.h1_c00107{height:84.000000px;}
.h0_c00107{height:634.500000px;}
.w0_c00107{width:371.790000px;}
.w1_c00107{width:372.000000px;}
.x0_c00107{left:0.000000px;}
.x73_c00107{left:30.780000px;}
.x6e_c00107{left:40.230000px;}
.x61_c00107{left:41.580000px;}
.x4_c00107{left:42.930000px;}
.x22_c00107{left:45.360000px;}
.x38_c00107{left:51.840000px;}
.x1a_c00107{left:53.730000px;}
.x5_c00107{left:58.050000px;}
.x12_c00107{left:59.400000px;}
.x4e_c00107{left:62.370000px;}
.x2b_c00107{left:63.450000px;}
.x34_c00107{left:64.800000px;}
.x29_c00107{left:67.500000px;}
.x5c_c00107{left:68.580000px;}
.x42_c00107{left:70.470000px;}
.x1_c00107{left:71.550000px;}
.x23_c00107{left:72.900000px;}
.x56_c00107{left:74.520000px;}
.x4b_c00107{left:75.600000px;}
.x74_c00107{left:77.490000px;}
.x2f_c00107{left:79.650000px;}
.x5a_c00107{left:82.080000px;}
.x1b_c00107{left:85.590000px;}
.x45_c00107{left:87.210000px;}
.x62_c00107{left:89.370000px;}
.xc_c00107{left:92.070000px;}
.x30_c00107{left:99.900000px;}
.x69_c00107{left:102.330000px;}
.x4c_c00107{left:103.680000px;}
.x1c_c00107{left:105.300000px;}
.x35_c00107{left:107.460000px;}
.xd_c00107{left:109.890000px;}
.x6_c00107{left:110.970000px;}
.x76_c00107{left:112.329000px;}
.x13_c00107{left:114.210000px;}
.x3e_c00107{left:117.990000px;}
.x5d_c00107{left:123.660000px;}
.x46_c00107{left:125.820000px;}
.x4d_c00107{left:126.900000px;}
.x68_c00107{left:130.950000px;}
.x63_c00107{left:133.920000px;}
.x14_c00107{left:135.000000px;}
.x1d_c00107{left:136.350000px;}
.x24_c00107{left:137.430000px;}
.x5b_c00107{left:139.590000px;}
.x77_c00107{left:141.655500px;}
.x5e_c00107{left:143.910000px;}
.x25_c00107{left:146.340000px;}
.x39_c00107{left:149.310000px;}
.x31_c00107{left:152.280000px;}
.x57_c00107{left:153.900000px;}
.x4f_c00107{left:156.060000px;}
.x15_c00107{left:157.410000px;}
.x6b_c00107{left:160.110000px;}
.x2c_c00107{left:162.270000px;}
.x7_c00107{left:173.070000px;}
.x2_c00107{left:176.850000px;}
.x6f_c00107{left:177.930000px;}
.x64_c00107{left:181.440000px;}
.x3f_c00107{left:183.060000px;}
.x5f_c00107{left:184.950000px;}
.x1e_c00107{left:186.840000px;}
.x43_c00107{left:189.000000px;}
.xe_c00107{left:193.860000px;}
.x3a_c00107{left:196.290000px;}
.x1f_c00107{left:197.910000px;}
.x26_c00107{left:201.150000px;}
.x8_c00107{left:202.230000px;}
.x6c_c00107{left:204.120000px;}
.x47_c00107{left:206.010000px;}
.x2d_c00107{left:208.440000px;}
.x27_c00107{left:212.490000px;}
.x16_c00107{left:217.620000px;}
.x53_c00107{left:220.590000px;}
.x50_c00107{left:227.610000px;}
.x17_c00107{left:228.690000px;}
.x71_c00107{left:230.040000px;}
.x20_c00107{left:231.120000px;}
.x54_c00107{left:232.740000px;}
.x44_c00107{left:235.710000px;}
.x3b_c00107{left:237.600000px;}
.x3_c00107{left:239.220000px;}
.x48_c00107{left:240.300000px;}
.x65_c00107{left:242.460000px;}
.x9_c00107{left:243.810000px;}
.x72_c00107{left:247.590000px;}
.x51_c00107{left:248.670000px;}
.x60_c00107{left:251.370000px;}
.x36_c00107{left:252.450000px;}
.x2e_c00107{left:258.390000px;}
.x66_c00107{left:261.090000px;}
.xf_c00107{left:262.710000px;}
.xa_c00107{left:264.330000px;}
.x49_c00107{left:265.410000px;}
.x6d_c00107{left:268.110000px;}
.x40_c00107{left:271.350000px;}
.x2a_c00107{left:272.700000px;}
.x10_c00107{left:274.860000px;}
.x6a_c00107{left:276.750000px;}
.x28_c00107{left:281.070000px;}
.x32_c00107{left:282.960000px;}
.x18_c00107{left:285.390000px;}
.x67_c00107{left:287.280000px;}
.x58_c00107{left:292.950000px;}
.x11_c00107{left:296.190000px;}
.x4a_c00107{left:297.270000px;}
.x55_c00107{left:301.050000px;}
.x21_c00107{left:302.940000px;}
.x75_c00107{left:308.070000px;}
.x70_c00107{left:309.150000px;}
.x41_c00107{left:311.850000px;}
.x19_c00107{left:314.010000px;}
.x37_c00107{left:315.090000px;}
.x3c_c00107{left:319.950000px;}
.x52_c00107{left:323.460000px;}
.x33_c00107{left:324.810000px;}
.x59_c00107{left:325.890000px;}
.xb_c00107{left:327.510000px;}
.x3d_c00107{left:333.990000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:0.000000pt;}
.fs4_c00107{font-size:44.800000pt;}
.fsc_c00107{font-size:46.666667pt;}
.fs5_c00107{font-size:53.200000pt;}
.fs8_c00107{font-size:55.066667pt;}
.fs11_c00107{font-size:55.076605pt;}
.fsa_c00107{font-size:56.000000pt;}
.fs1_c00107{font-size:56.933333pt;}
.fs7_c00107{font-size:57.866667pt;}
.fsf_c00107{font-size:58.800000pt;}
.fsd_c00107{font-size:59.733333pt;}
.fs2_c00107{font-size:60.666667pt;}
.fs3_c00107{font-size:61.600000pt;}
.fs6_c00107{font-size:63.466667pt;}
.fsb_c00107{font-size:64.400000pt;}
.fse_c00107{font-size:65.333333pt;}
.fs10_c00107{font-size:67.207560pt;}
.fs9_c00107{font-size:68.133333pt;}
.fs0_c00107{font-size:74.666667pt;}
.y0_c00107{bottom:0.000000pt;}
.y25_c00107{bottom:38.645333pt;}
.y26_c00107{bottom:39.428995pt;}
.y27_c00107{bottom:39.876128pt;}
.y28_c00107{bottom:40.371420pt;}
.y29_c00107{bottom:40.706149pt;}
.y2a_c00107{bottom:42.049627pt;}
.y2b_c00107{bottom:42.827208pt;}
.y1f_c00107{bottom:55.202667pt;}
.y20_c00107{bottom:55.813787pt;}
.y21_c00107{bottom:56.113427pt;}
.y22_c00107{bottom:56.736107pt;}
.y23_c00107{bottom:57.938327pt;}
.y24_c00107{bottom:58.827647pt;}
.y1e_c00107{bottom:71.840000pt;}
.y1d_c00107{bottom:88.385333pt;}
.y1c_c00107{bottom:103.189333pt;}
.y1b_c00107{bottom:119.649333pt;}
.y1a_c00107{bottom:135.464000pt;}
.y19_c00107{bottom:150.228000pt;}
.y18_c00107{bottom:166.725333pt;}
.y17_c00107{bottom:182.222667pt;}
.y16_c00107{bottom:197.822667pt;}
.y15_c00107{bottom:212.944000pt;}
.y14_c00107{bottom:228.616000pt;}
.y13_c00107{bottom:244.038667pt;}
.y12_c00107{bottom:259.470667pt;}
.y11_c00107{bottom:274.757333pt;}
.y10_c00107{bottom:289.326667pt;}
.yf_c00107{bottom:305.925333pt;}
.ye_c00107{bottom:321.420000pt;}
.yd_c00107{bottom:336.780000pt;}
.yc_c00107{bottom:352.341333pt;}
.yb_c00107{bottom:368.084000pt;}
.ya_c00107{bottom:383.520000pt;}
.y9_c00107{bottom:398.936000pt;}
.y8_c00107{bottom:414.402667pt;}
.y7_c00107{bottom:429.868000pt;}
.y6_c00107{bottom:444.696000pt;}
.y5_c00107{bottom:460.800000pt;}
.y4_c00107{bottom:476.082667pt;}
.y3_c00107{bottom:491.442667pt;}
.y2_c00107{bottom:507.225333pt;}
.y1_c00107{bottom:515.900000pt;}
.h5_c00107{height:44.800000pt;}
.hd_c00107{height:46.666667pt;}
.h6_c00107{height:53.200000pt;}
.h9_c00107{height:55.066667pt;}
.h12_c00107{height:55.076605pt;}
.hb_c00107{height:56.000000pt;}
.h2_c00107{height:56.933333pt;}
.h8_c00107{height:57.866667pt;}
.h10_c00107{height:58.800000pt;}
.he_c00107{height:59.733333pt;}
.h3_c00107{height:60.666667pt;}
.h4_c00107{height:61.600000pt;}
.h7_c00107{height:63.466667pt;}
.hc_c00107{height:64.400000pt;}
.hf_c00107{height:65.333333pt;}
.h11_c00107{height:67.207560pt;}
.ha_c00107{height:68.133333pt;}
.h1_c00107{height:74.666667pt;}
.h0_c00107{height:564.000000pt;}
.w0_c00107{width:330.480000pt;}
.w1_c00107{width:330.666667pt;}
.x0_c00107{left:0.000000pt;}
.x73_c00107{left:27.360000pt;}
.x6e_c00107{left:35.760000pt;}
.x61_c00107{left:36.960000pt;}
.x4_c00107{left:38.160000pt;}
.x22_c00107{left:40.320000pt;}
.x38_c00107{left:46.080000pt;}
.x1a_c00107{left:47.760000pt;}
.x5_c00107{left:51.600000pt;}
.x12_c00107{left:52.800000pt;}
.x4e_c00107{left:55.440000pt;}
.x2b_c00107{left:56.400000pt;}
.x34_c00107{left:57.600000pt;}
.x29_c00107{left:60.000000pt;}
.x5c_c00107{left:60.960000pt;}
.x42_c00107{left:62.640000pt;}
.x1_c00107{left:63.600000pt;}
.x23_c00107{left:64.800000pt;}
.x56_c00107{left:66.240000pt;}
.x4b_c00107{left:67.200000pt;}
.x74_c00107{left:68.880000pt;}
.x2f_c00107{left:70.800000pt;}
.x5a_c00107{left:72.960000pt;}
.x1b_c00107{left:76.080000pt;}
.x45_c00107{left:77.520000pt;}
.x62_c00107{left:79.440000pt;}
.xc_c00107{left:81.840000pt;}
.x30_c00107{left:88.800000pt;}
.x69_c00107{left:90.960000pt;}
.x4c_c00107{left:92.160000pt;}
.x1c_c00107{left:93.600000pt;}
.x35_c00107{left:95.520000pt;}
.xd_c00107{left:97.680000pt;}
.x6_c00107{left:98.640000pt;}
.x76_c00107{left:99.848000pt;}
.x13_c00107{left:101.520000pt;}
.x3e_c00107{left:104.880000pt;}
.x5d_c00107{left:109.920000pt;}
.x46_c00107{left:111.840000pt;}
.x4d_c00107{left:112.800000pt;}
.x68_c00107{left:116.400000pt;}
.x63_c00107{left:119.040000pt;}
.x14_c00107{left:120.000000pt;}
.x1d_c00107{left:121.200000pt;}
.x24_c00107{left:122.160000pt;}
.x5b_c00107{left:124.080000pt;}
.x77_c00107{left:125.916000pt;}
.x5e_c00107{left:127.920000pt;}
.x25_c00107{left:130.080000pt;}
.x39_c00107{left:132.720000pt;}
.x31_c00107{left:135.360000pt;}
.x57_c00107{left:136.800000pt;}
.x4f_c00107{left:138.720000pt;}
.x15_c00107{left:139.920000pt;}
.x6b_c00107{left:142.320000pt;}
.x2c_c00107{left:144.240000pt;}
.x7_c00107{left:153.840000pt;}
.x2_c00107{left:157.200000pt;}
.x6f_c00107{left:158.160000pt;}
.x64_c00107{left:161.280000pt;}
.x3f_c00107{left:162.720000pt;}
.x5f_c00107{left:164.400000pt;}
.x1e_c00107{left:166.080000pt;}
.x43_c00107{left:168.000000pt;}
.xe_c00107{left:172.320000pt;}
.x3a_c00107{left:174.480000pt;}
.x1f_c00107{left:175.920000pt;}
.x26_c00107{left:178.800000pt;}
.x8_c00107{left:179.760000pt;}
.x6c_c00107{left:181.440000pt;}
.x47_c00107{left:183.120000pt;}
.x2d_c00107{left:185.280000pt;}
.x27_c00107{left:188.880000pt;}
.x16_c00107{left:193.440000pt;}
.x53_c00107{left:196.080000pt;}
.x50_c00107{left:202.320000pt;}
.x17_c00107{left:203.280000pt;}
.x71_c00107{left:204.480000pt;}
.x20_c00107{left:205.440000pt;}
.x54_c00107{left:206.880000pt;}
.x44_c00107{left:209.520000pt;}
.x3b_c00107{left:211.200000pt;}
.x3_c00107{left:212.640000pt;}
.x48_c00107{left:213.600000pt;}
.x65_c00107{left:215.520000pt;}
.x9_c00107{left:216.720000pt;}
.x72_c00107{left:220.080000pt;}
.x51_c00107{left:221.040000pt;}
.x60_c00107{left:223.440000pt;}
.x36_c00107{left:224.400000pt;}
.x2e_c00107{left:229.680000pt;}
.x66_c00107{left:232.080000pt;}
.xf_c00107{left:233.520000pt;}
.xa_c00107{left:234.960000pt;}
.x49_c00107{left:235.920000pt;}
.x6d_c00107{left:238.320000pt;}
.x40_c00107{left:241.200000pt;}
.x2a_c00107{left:242.400000pt;}
.x10_c00107{left:244.320000pt;}
.x6a_c00107{left:246.000000pt;}
.x28_c00107{left:249.840000pt;}
.x32_c00107{left:251.520000pt;}
.x18_c00107{left:253.680000pt;}
.x67_c00107{left:255.360000pt;}
.x58_c00107{left:260.400000pt;}
.x11_c00107{left:263.280000pt;}
.x4a_c00107{left:264.240000pt;}
.x55_c00107{left:267.600000pt;}
.x21_c00107{left:269.280000pt;}
.x75_c00107{left:273.840000pt;}
.x70_c00107{left:274.800000pt;}
.x41_c00107{left:277.200000pt;}
.x19_c00107{left:279.120000pt;}
.x37_c00107{left:280.080000pt;}
.x3c_c00107{left:284.400000pt;}
.x52_c00107{left:287.520000pt;}
.x33_c00107{left:288.720000pt;}
.x59_c00107{left:289.680000pt;}
.xb_c00107{left:291.120000pt;}
.x3d_c00107{left:296.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00108 {
    display:none;
  }
  .loading-indicator_c00108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00108 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00108 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00108" -> "#page-container .classname_c00108")
 */
.pf_c00108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00108 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00108 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00108 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00108 {overflow:visible;}
  }
}
.c_c00108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00108 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00108:after { /* webkit #35443 */
  content: '';
}
.t_c00108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00108 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00108 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00108 { /* info for Javascript */
  display:none;
}
.l_c00108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00108:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00108 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00108.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00108{transform:matrix(0.080809,-0.001859,0.005748,0.249934,0,0);-ms-transform:matrix(0.080809,-0.001859,0.005748,0.249934,0,0);-webkit-transform:matrix(0.080809,-0.001859,0.005748,0.249934,0,0);}
.m20_c00108{transform:matrix(0.082523,-0.001898,0.005748,0.249934,0,0);-ms-transform:matrix(0.082523,-0.001898,0.005748,0.249934,0,0);-webkit-transform:matrix(0.082523,-0.001898,0.005748,0.249934,0,0);}
.m1e_c00108{transform:matrix(0.126182,-0.002902,0.005748,0.249934,0,0);-ms-transform:matrix(0.126182,-0.002902,0.005748,0.249934,0,0);-webkit-transform:matrix(0.126182,-0.002902,0.005748,0.249934,0,0);}
.me2_c00108{transform:matrix(0.129195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129195,0.000000,0.000000,0.250000,0,0);}
.m3c_c00108{transform:matrix(0.133600,-0.003073,0.005748,0.249934,0,0);-ms-transform:matrix(0.133600,-0.003073,0.005748,0.249934,0,0);-webkit-transform:matrix(0.133600,-0.003073,0.005748,0.249934,0,0);}
.m1a_c00108{transform:matrix(0.136159,-0.003132,0.005748,0.249934,0,0);-ms-transform:matrix(0.136159,-0.003132,0.005748,0.249934,0,0);-webkit-transform:matrix(0.136159,-0.003132,0.005748,0.249934,0,0);}
.m6_c00108{transform:matrix(0.138213,-0.003179,0.005748,0.249934,0,0);-ms-transform:matrix(0.138213,-0.003179,0.005748,0.249934,0,0);-webkit-transform:matrix(0.138213,-0.003179,0.005748,0.249934,0,0);}
.m92_c00108{transform:matrix(0.142597,-0.003280,0.005748,0.249934,0,0);-ms-transform:matrix(0.142597,-0.003280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.142597,-0.003280,0.005748,0.249934,0,0);}
.m90_c00108{transform:matrix(0.145167,-0.003339,0.005748,0.249934,0,0);-ms-transform:matrix(0.145167,-0.003339,0.005748,0.249934,0,0);-webkit-transform:matrix(0.145167,-0.003339,0.005748,0.249934,0,0);}
.ma9_c00108{transform:matrix(0.145362,-0.003343,0.005748,0.249934,0,0);-ms-transform:matrix(0.145362,-0.003343,0.005748,0.249934,0,0);-webkit-transform:matrix(0.145362,-0.003343,0.005748,0.249934,0,0);}
.m18_c00108{transform:matrix(0.148726,-0.003421,0.005748,0.249934,0,0);-ms-transform:matrix(0.148726,-0.003421,0.005748,0.249934,0,0);-webkit-transform:matrix(0.148726,-0.003421,0.005748,0.249934,0,0);}
.m35_c00108{transform:matrix(0.151280,-0.003479,0.005748,0.249934,0,0);-ms-transform:matrix(0.151280,-0.003479,0.005748,0.249934,0,0);-webkit-transform:matrix(0.151280,-0.003479,0.005748,0.249934,0,0);}
.m41_c00108{transform:matrix(0.152765,-0.003514,0.005748,0.249934,0,0);-ms-transform:matrix(0.152765,-0.003514,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152765,-0.003514,0.005748,0.249934,0,0);}
.m37_c00108{transform:matrix(0.153499,-0.003530,0.005748,0.249934,0,0);-ms-transform:matrix(0.153499,-0.003530,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153499,-0.003530,0.005748,0.249934,0,0);}
.mee_c00108{transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);}
.m3e_c00108{transform:matrix(0.154749,-0.003559,0.005748,0.249934,0,0);-ms-transform:matrix(0.154749,-0.003559,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154749,-0.003559,0.005748,0.249934,0,0);}
.me3_c00108{transform:matrix(0.155480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155480,0.000000,0.000000,0.250000,0,0);}
.m6a_c00108{transform:matrix(0.156479,-0.003599,0.005748,0.249934,0,0);-ms-transform:matrix(0.156479,-0.003599,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156479,-0.003599,0.005748,0.249934,0,0);}
.m19_c00108{transform:matrix(0.157608,-0.003625,0.005748,0.249934,0,0);-ms-transform:matrix(0.157608,-0.003625,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157608,-0.003625,0.005748,0.249934,0,0);}
.med_c00108{transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);-ms-transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);}
.m78_c00108{transform:matrix(0.159393,-0.003666,0.005748,0.249934,0,0);-ms-transform:matrix(0.159393,-0.003666,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159393,-0.003666,0.005748,0.249934,0,0);}
.m7d_c00108{transform:matrix(0.160673,-0.003695,0.005748,0.249934,0,0);-ms-transform:matrix(0.160673,-0.003695,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160673,-0.003695,0.005748,0.249934,0,0);}
.m53_c00108{transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);-ms-transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);}
.m40_c00108{transform:matrix(0.160747,-0.003697,0.005748,0.249934,0,0);-ms-transform:matrix(0.160747,-0.003697,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160747,-0.003697,0.005748,0.249934,0,0);}
.ma2_c00108{transform:matrix(0.161747,-0.003720,0.005748,0.249934,0,0);-ms-transform:matrix(0.161747,-0.003720,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161747,-0.003720,0.005748,0.249934,0,0);}
.m39_c00108{transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);-ms-transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);}
.mef_c00108{transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);}
.m1d_c00108{transform:matrix(0.164107,-0.003774,0.005748,0.249934,0,0);-ms-transform:matrix(0.164107,-0.003774,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164107,-0.003774,0.005748,0.249934,0,0);}
.m79_c00108{transform:matrix(0.164352,-0.003780,0.005748,0.249934,0,0);-ms-transform:matrix(0.164352,-0.003780,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164352,-0.003780,0.005748,0.249934,0,0);}
.m83_c00108{transform:matrix(0.164422,-0.003782,0.005748,0.249934,0,0);-ms-transform:matrix(0.164422,-0.003782,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164422,-0.003782,0.005748,0.249934,0,0);}
.m8c_c00108{transform:matrix(0.164541,-0.003784,0.005748,0.249934,0,0);-ms-transform:matrix(0.164541,-0.003784,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164541,-0.003784,0.005748,0.249934,0,0);}
.mb7_c00108{transform:matrix(0.164796,-0.003790,0.005748,0.249934,0,0);-ms-transform:matrix(0.164796,-0.003790,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164796,-0.003790,0.005748,0.249934,0,0);}
.m45_c00108{transform:matrix(0.164831,-0.003791,0.005748,0.249934,0,0);-ms-transform:matrix(0.164831,-0.003791,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164831,-0.003791,0.005748,0.249934,0,0);}
.m7f_c00108{transform:matrix(0.165271,-0.003801,0.005748,0.249934,0,0);-ms-transform:matrix(0.165271,-0.003801,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165271,-0.003801,0.005748,0.249934,0,0);}
.mac_c00108{transform:matrix(0.165496,-0.003806,0.005748,0.249934,0,0);-ms-transform:matrix(0.165496,-0.003806,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165496,-0.003806,0.005748,0.249934,0,0);}
.m59_c00108{transform:matrix(0.166051,-0.003819,0.005748,0.249934,0,0);-ms-transform:matrix(0.166051,-0.003819,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166051,-0.003819,0.005748,0.249934,0,0);}
.m91_c00108{transform:matrix(0.166226,-0.003823,0.005748,0.249934,0,0);-ms-transform:matrix(0.166226,-0.003823,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166226,-0.003823,0.005748,0.249934,0,0);}
.m9d_c00108{transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);-ms-transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);}
.me9_c00108{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.167536,-0.003853,0.005748,0.249934,0,0);-ms-transform:matrix(0.167536,-0.003853,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167536,-0.003853,0.005748,0.249934,0,0);}
.m5a_c00108{transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);-ms-transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);}
.m42_c00108{transform:matrix(0.168066,-0.003866,0.005748,0.249934,0,0);-ms-transform:matrix(0.168066,-0.003866,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168066,-0.003866,0.005748,0.249934,0,0);}
.m1b_c00108{transform:matrix(0.168545,-0.003877,0.005748,0.249934,0,0);-ms-transform:matrix(0.168545,-0.003877,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168545,-0.003877,0.005748,0.249934,0,0);}
.md1_c00108{transform:matrix(0.168790,-0.003882,0.005748,0.249934,0,0);-ms-transform:matrix(0.168790,-0.003882,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168790,-0.003882,0.005748,0.249934,0,0);}
.m13_c00108{transform:matrix(0.168895,-0.003885,0.005748,0.249934,0,0);-ms-transform:matrix(0.168895,-0.003885,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168895,-0.003885,0.005748,0.249934,0,0);}
.m47_c00108{transform:matrix(0.169810,-0.003906,0.005748,0.249934,0,0);-ms-transform:matrix(0.169810,-0.003906,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169810,-0.003906,0.005748,0.249934,0,0);}
.mcc_c00108{transform:matrix(0.169900,-0.003908,0.005748,0.249934,0,0);-ms-transform:matrix(0.169900,-0.003908,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169900,-0.003908,0.005748,0.249934,0,0);}
.m8e_c00108{transform:matrix(0.170030,-0.003911,0.005748,0.249934,0,0);-ms-transform:matrix(0.170030,-0.003911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170030,-0.003911,0.005748,0.249934,0,0);}
.m3f_c00108{transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);-ms-transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);}
.m55_c00108{transform:matrix(0.171565,-0.003946,0.005748,0.249934,0,0);-ms-transform:matrix(0.171565,-0.003946,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171565,-0.003946,0.005748,0.249934,0,0);}
.ma4_c00108{transform:matrix(0.171705,-0.003949,0.005748,0.249934,0,0);-ms-transform:matrix(0.171705,-0.003949,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171705,-0.003949,0.005748,0.249934,0,0);}
.m5c_c00108{transform:matrix(0.172324,-0.003963,0.005748,0.249934,0,0);-ms-transform:matrix(0.172324,-0.003963,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172324,-0.003963,0.005748,0.249934,0,0);}
.m26_c00108{transform:matrix(0.172794,-0.003974,0.005748,0.249934,0,0);-ms-transform:matrix(0.172794,-0.003974,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172794,-0.003974,0.005748,0.249934,0,0);}
.m4f_c00108{transform:matrix(0.173089,-0.003981,0.005748,0.249934,0,0);-ms-transform:matrix(0.173089,-0.003981,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173089,-0.003981,0.005748,0.249934,0,0);}
.mea_c00108{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m70_c00108{transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);-ms-transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);}
.m84_c00108{transform:matrix(0.173914,-0.004000,0.005748,0.249934,0,0);-ms-transform:matrix(0.173914,-0.004000,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173914,-0.004000,0.005748,0.249934,0,0);}
.m33_c00108{transform:matrix(0.174749,-0.004019,0.005748,0.249934,0,0);-ms-transform:matrix(0.174749,-0.004019,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174749,-0.004019,0.005748,0.249934,0,0);}
.m76_c00108{transform:matrix(0.175059,-0.004026,0.005748,0.249934,0,0);-ms-transform:matrix(0.175059,-0.004026,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175059,-0.004026,0.005748,0.249934,0,0);}
.ma5_c00108{transform:matrix(0.175149,-0.004028,0.005748,0.249934,0,0);-ms-transform:matrix(0.175149,-0.004028,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175149,-0.004028,0.005748,0.249934,0,0);}
.m81_c00108{transform:matrix(0.175364,-0.004033,0.005748,0.249934,0,0);-ms-transform:matrix(0.175364,-0.004033,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175364,-0.004033,0.005748,0.249934,0,0);}
.m80_c00108{transform:matrix(0.175769,-0.004043,0.005748,0.249934,0,0);-ms-transform:matrix(0.175769,-0.004043,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175769,-0.004043,0.005748,0.249934,0,0);}
.m66_c00108{transform:matrix(0.175794,-0.004043,0.005748,0.249934,0,0);-ms-transform:matrix(0.175794,-0.004043,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175794,-0.004043,0.005748,0.249934,0,0);}
.me4_c00108{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m2b_c00108{transform:matrix(0.178593,-0.004108,0.005748,0.249934,0,0);-ms-transform:matrix(0.178593,-0.004108,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178593,-0.004108,0.005748,0.249934,0,0);}
.mc3_c00108{transform:matrix(0.178738,-0.004111,0.005748,0.249934,0,0);-ms-transform:matrix(0.178738,-0.004111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178738,-0.004111,0.005748,0.249934,0,0);}
.mda_c00108{transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);-ms-transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);}
.m82_c00108{transform:matrix(0.178998,-0.004117,0.005748,0.249934,0,0);-ms-transform:matrix(0.178998,-0.004117,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178998,-0.004117,0.005748,0.249934,0,0);}
.m3_c00108{transform:matrix(0.179513,-0.004129,0.005748,0.249934,0,0);-ms-transform:matrix(0.179513,-0.004129,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179513,-0.004129,0.005748,0.249934,0,0);}
.m43_c00108{transform:matrix(0.179857,-0.004137,0.005748,0.249934,0,0);-ms-transform:matrix(0.179857,-0.004137,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179857,-0.004137,0.005748,0.249934,0,0);}
.m4a_c00108{transform:matrix(0.180377,-0.004149,0.005748,0.249934,0,0);-ms-transform:matrix(0.180377,-0.004149,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180377,-0.004149,0.005748,0.249934,0,0);}
.m2e_c00108{transform:matrix(0.180467,-0.004151,0.005748,0.249934,0,0);-ms-transform:matrix(0.180467,-0.004151,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180467,-0.004151,0.005748,0.249934,0,0);}
.mec_c00108{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(0.180952,-0.004162,0.005748,0.249934,0,0);-ms-transform:matrix(0.180952,-0.004162,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180952,-0.004162,0.005748,0.249934,0,0);}
.m2d_c00108{transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);-ms-transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);}
.m51_c00108{transform:matrix(0.181622,-0.004177,0.005748,0.249934,0,0);-ms-transform:matrix(0.181622,-0.004177,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181622,-0.004177,0.005748,0.249934,0,0);}
.me1_c00108{transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);}
.md2_c00108{transform:matrix(0.181867,-0.004183,0.005748,0.249934,0,0);-ms-transform:matrix(0.181867,-0.004183,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181867,-0.004183,0.005748,0.249934,0,0);}
.mcf_c00108{transform:matrix(0.182117,-0.004189,0.005748,0.249934,0,0);-ms-transform:matrix(0.182117,-0.004189,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182117,-0.004189,0.005748,0.249934,0,0);}
.m5_c00108{transform:matrix(0.182177,-0.004190,0.005748,0.249934,0,0);-ms-transform:matrix(0.182177,-0.004190,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182177,-0.004190,0.005748,0.249934,0,0);}
.md5_c00108{transform:matrix(0.182182,-0.004190,0.005748,0.249934,0,0);-ms-transform:matrix(0.182182,-0.004190,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182182,-0.004190,0.005748,0.249934,0,0);}
.m30_c00108{transform:matrix(0.182952,-0.004208,0.005748,0.249934,0,0);-ms-transform:matrix(0.182952,-0.004208,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182952,-0.004208,0.005748,0.249934,0,0);}
.mb4_c00108{transform:matrix(0.183372,-0.004218,0.005748,0.249934,0,0);-ms-transform:matrix(0.183372,-0.004218,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183372,-0.004218,0.005748,0.249934,0,0);}
.m2f_c00108{transform:matrix(0.184296,-0.004239,0.005748,0.249934,0,0);-ms-transform:matrix(0.184296,-0.004239,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184296,-0.004239,0.005748,0.249934,0,0);}
.m67_c00108{transform:matrix(0.184756,-0.004249,0.005748,0.249934,0,0);-ms-transform:matrix(0.184756,-0.004249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184756,-0.004249,0.005748,0.249934,0,0);}
.m5f_c00108{transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);-ms-transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);}
.m3d_c00108{transform:matrix(0.185416,-0.004265,0.005748,0.249934,0,0);-ms-transform:matrix(0.185416,-0.004265,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185416,-0.004265,0.005748,0.249934,0,0);}
.m94_c00108{transform:matrix(0.186591,-0.004292,0.005748,0.249934,0,0);-ms-transform:matrix(0.186591,-0.004292,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186591,-0.004292,0.005748,0.249934,0,0);}
.ma1_c00108{transform:matrix(0.186731,-0.004295,0.005748,0.249934,0,0);-ms-transform:matrix(0.186731,-0.004295,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186731,-0.004295,0.005748,0.249934,0,0);}
.m2c_c00108{transform:matrix(0.187001,-0.004301,0.005748,0.249934,0,0);-ms-transform:matrix(0.187001,-0.004301,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187001,-0.004301,0.005748,0.249934,0,0);}
.m64_c00108{transform:matrix(0.187146,-0.004304,0.005748,0.249934,0,0);-ms-transform:matrix(0.187146,-0.004304,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187146,-0.004304,0.005748,0.249934,0,0);}
.mc4_c00108{transform:matrix(0.187470,-0.004312,0.005748,0.249934,0,0);-ms-transform:matrix(0.187470,-0.004312,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187470,-0.004312,0.005748,0.249934,0,0);}
.mcd_c00108{transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);-ms-transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);}
.m71_c00108{transform:matrix(0.187840,-0.004320,0.005748,0.249934,0,0);-ms-transform:matrix(0.187840,-0.004320,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187840,-0.004320,0.005748,0.249934,0,0);}
.m23_c00108{transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);-ms-transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);}
.m2a_c00108{transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);-ms-transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);}
.meb_c00108{transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);}
.m7e_c00108{transform:matrix(0.189320,-0.004354,0.005748,0.249934,0,0);-ms-transform:matrix(0.189320,-0.004354,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189320,-0.004354,0.005748,0.249934,0,0);}
.m21_c00108{transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);-ms-transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);}
.mb_c00108{transform:matrix(0.189880,-0.004367,0.005748,0.249934,0,0);-ms-transform:matrix(0.189880,-0.004367,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189880,-0.004367,0.005748,0.249934,0,0);}
.m36_c00108{transform:matrix(0.191079,-0.004395,0.005748,0.249934,0,0);-ms-transform:matrix(0.191079,-0.004395,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191079,-0.004395,0.005748,0.249934,0,0);}
.m22_c00108{transform:matrix(0.191679,-0.004409,0.005748,0.249934,0,0);-ms-transform:matrix(0.191679,-0.004409,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191679,-0.004409,0.005748,0.249934,0,0);}
.m5b_c00108{transform:matrix(0.192754,-0.004433,0.005748,0.249934,0,0);-ms-transform:matrix(0.192754,-0.004433,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192754,-0.004433,0.005748,0.249934,0,0);}
.m0_c00108{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.m85_c00108{transform:matrix(0.193474,-0.004450,0.005748,0.249934,0,0);-ms-transform:matrix(0.193474,-0.004450,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193474,-0.004450,0.005748,0.249934,0,0);}
.m65_c00108{transform:matrix(0.193699,-0.004455,0.005748,0.249934,0,0);-ms-transform:matrix(0.193699,-0.004455,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193699,-0.004455,0.005748,0.249934,0,0);}
.m4_c00108{transform:matrix(0.193734,-0.004456,0.005748,0.249934,0,0);-ms-transform:matrix(0.193734,-0.004456,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193734,-0.004456,0.005748,0.249934,0,0);}
.mce_c00108{transform:matrix(0.193999,-0.004462,0.005748,0.249934,0,0);-ms-transform:matrix(0.193999,-0.004462,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193999,-0.004462,0.005748,0.249934,0,0);}
.m57_c00108{transform:matrix(0.194159,-0.004466,0.005748,0.249934,0,0);-ms-transform:matrix(0.194159,-0.004466,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194159,-0.004466,0.005748,0.249934,0,0);}
.maf_c00108{transform:matrix(0.194299,-0.004469,0.005748,0.249934,0,0);-ms-transform:matrix(0.194299,-0.004469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194299,-0.004469,0.005748,0.249934,0,0);}
.m7a_c00108{transform:matrix(0.194369,-0.004470,0.005748,0.249934,0,0);-ms-transform:matrix(0.194369,-0.004470,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194369,-0.004470,0.005748,0.249934,0,0);}
.m6e_c00108{transform:matrix(0.194783,-0.004480,0.005748,0.249934,0,0);-ms-transform:matrix(0.194783,-0.004480,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194783,-0.004480,0.005748,0.249934,0,0);}
.me_c00108{transform:matrix(0.194998,-0.004485,0.005748,0.249934,0,0);-ms-transform:matrix(0.194998,-0.004485,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194998,-0.004485,0.005748,0.249934,0,0);}
.mdd_c00108{transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);}
.m34_c00108{transform:matrix(0.195723,-0.004502,0.005748,0.249934,0,0);-ms-transform:matrix(0.195723,-0.004502,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195723,-0.004502,0.005748,0.249934,0,0);}
.m7_c00108{transform:matrix(0.196208,-0.004513,0.005748,0.249934,0,0);-ms-transform:matrix(0.196208,-0.004513,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196208,-0.004513,0.005748,0.249934,0,0);}
.ma8_c00108{transform:matrix(0.196323,-0.004515,0.005748,0.249934,0,0);-ms-transform:matrix(0.196323,-0.004515,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196323,-0.004515,0.005748,0.249934,0,0);}
.m9c_c00108{transform:matrix(0.196428,-0.004518,0.005748,0.249934,0,0);-ms-transform:matrix(0.196428,-0.004518,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196428,-0.004518,0.005748,0.249934,0,0);}
.m69_c00108{transform:matrix(0.197318,-0.004538,0.005748,0.249934,0,0);-ms-transform:matrix(0.197318,-0.004538,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197318,-0.004538,0.005748,0.249934,0,0);}
.mb5_c00108{transform:matrix(0.198193,-0.004558,0.005748,0.249934,0,0);-ms-transform:matrix(0.198193,-0.004558,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198193,-0.004558,0.005748,0.249934,0,0);}
.m8a_c00108{transform:matrix(0.198508,-0.004566,0.005748,0.249934,0,0);-ms-transform:matrix(0.198508,-0.004566,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198508,-0.004566,0.005748,0.249934,0,0);}
.mbe_c00108{transform:matrix(0.198622,-0.004568,0.005748,0.249934,0,0);-ms-transform:matrix(0.198622,-0.004568,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198622,-0.004568,0.005748,0.249934,0,0);}
.md8_c00108{transform:matrix(0.199032,-0.004578,0.005748,0.249934,0,0);-ms-transform:matrix(0.199032,-0.004578,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199032,-0.004578,0.005748,0.249934,0,0);}
.m52_c00108{transform:matrix(0.199182,-0.004581,0.005748,0.249934,0,0);-ms-transform:matrix(0.199182,-0.004581,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199182,-0.004581,0.005748,0.249934,0,0);}
.m44_c00108{transform:matrix(0.199217,-0.004582,0.005748,0.249934,0,0);-ms-transform:matrix(0.199217,-0.004582,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199217,-0.004582,0.005748,0.249934,0,0);}
.m97_c00108{transform:matrix(0.199392,-0.004586,0.005748,0.249934,0,0);-ms-transform:matrix(0.199392,-0.004586,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199392,-0.004586,0.005748,0.249934,0,0);}
.m48_c00108{transform:matrix(0.199902,-0.004598,0.005748,0.249934,0,0);-ms-transform:matrix(0.199902,-0.004598,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199902,-0.004598,0.005748,0.249934,0,0);}
.mb9_c00108{transform:matrix(0.200132,-0.004603,0.005748,0.249934,0,0);-ms-transform:matrix(0.200132,-0.004603,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200132,-0.004603,0.005748,0.249934,0,0);}
.maa_c00108{transform:matrix(0.200577,-0.004613,0.005748,0.249934,0,0);-ms-transform:matrix(0.200577,-0.004613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200577,-0.004613,0.005748,0.249934,0,0);}
.m7b_c00108{transform:matrix(0.200797,-0.004618,0.005748,0.249934,0,0);-ms-transform:matrix(0.200797,-0.004618,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200797,-0.004618,0.005748,0.249934,0,0);}
.m8d_c00108{transform:matrix(0.200812,-0.004619,0.005748,0.249934,0,0);-ms-transform:matrix(0.200812,-0.004619,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200812,-0.004619,0.005748,0.249934,0,0);}
.m3a_c00108{transform:matrix(0.201647,-0.004638,0.005748,0.249934,0,0);-ms-transform:matrix(0.201647,-0.004638,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201647,-0.004638,0.005748,0.249934,0,0);}
.mbf_c00108{transform:matrix(0.201727,-0.004640,0.005748,0.249934,0,0);-ms-transform:matrix(0.201727,-0.004640,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201727,-0.004640,0.005748,0.249934,0,0);}
.m6c_c00108{transform:matrix(0.202301,-0.004653,0.005748,0.249934,0,0);-ms-transform:matrix(0.202301,-0.004653,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202301,-0.004653,0.005748,0.249934,0,0);}
.mc1_c00108{transform:matrix(0.202861,-0.004666,0.005748,0.249934,0,0);-ms-transform:matrix(0.202861,-0.004666,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202861,-0.004666,0.005748,0.249934,0,0);}
.m56_c00108{transform:matrix(0.202986,-0.004669,0.005748,0.249934,0,0);-ms-transform:matrix(0.202986,-0.004669,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202986,-0.004669,0.005748,0.249934,0,0);}
.m2_c00108{transform:matrix(0.203041,-0.004670,0.005748,0.249934,0,0);-ms-transform:matrix(0.203041,-0.004670,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203041,-0.004670,0.005748,0.249934,0,0);}
.m5e_c00108{transform:matrix(0.203176,-0.004673,0.005748,0.249934,0,0);-ms-transform:matrix(0.203176,-0.004673,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203176,-0.004673,0.005748,0.249934,0,0);}
.m38_c00108{transform:matrix(0.203316,-0.004676,0.005748,0.249934,0,0);-ms-transform:matrix(0.203316,-0.004676,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203316,-0.004676,0.005748,0.249934,0,0);}
.m9b_c00108{transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-ms-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);}
.m77_c00108{transform:matrix(0.203511,-0.004681,0.005748,0.249934,0,0);-ms-transform:matrix(0.203511,-0.004681,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203511,-0.004681,0.005748,0.249934,0,0);}
.mba_c00108{transform:matrix(0.204191,-0.004696,0.005748,0.249934,0,0);-ms-transform:matrix(0.204191,-0.004696,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204191,-0.004696,0.005748,0.249934,0,0);}
.mb8_c00108{transform:matrix(0.204266,-0.004698,0.005748,0.249934,0,0);-ms-transform:matrix(0.204266,-0.004698,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204266,-0.004698,0.005748,0.249934,0,0);}
.m16_c00108{transform:matrix(0.204686,-0.004708,0.005748,0.249934,0,0);-ms-transform:matrix(0.204686,-0.004708,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204686,-0.004708,0.005748,0.249934,0,0);}
.ma3_c00108{transform:matrix(0.204821,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204821,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204821,-0.004711,0.005748,0.249934,0,0);}
.m75_c00108{transform:matrix(0.204906,-0.004713,0.005748,0.249934,0,0);-ms-transform:matrix(0.204906,-0.004713,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204906,-0.004713,0.005748,0.249934,0,0);}
.m50_c00108{transform:matrix(0.204941,-0.004714,0.005748,0.249934,0,0);-ms-transform:matrix(0.204941,-0.004714,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204941,-0.004714,0.005748,0.249934,0,0);}
.m4d_c00108{transform:matrix(0.205071,-0.004717,0.005748,0.249934,0,0);-ms-transform:matrix(0.205071,-0.004717,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205071,-0.004717,0.005748,0.249934,0,0);}
.md7_c00108{transform:matrix(0.205401,-0.004724,0.005748,0.249934,0,0);-ms-transform:matrix(0.205401,-0.004724,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205401,-0.004724,0.005748,0.249934,0,0);}
.mb3_c00108{transform:matrix(0.205461,-0.004726,0.005748,0.249934,0,0);-ms-transform:matrix(0.205461,-0.004726,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205461,-0.004726,0.005748,0.249934,0,0);}
.m49_c00108{transform:matrix(0.205876,-0.004735,0.005748,0.249934,0,0);-ms-transform:matrix(0.205876,-0.004735,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205876,-0.004735,0.005748,0.249934,0,0);}
.m73_c00108{transform:matrix(0.206105,-0.004740,0.005748,0.249934,0,0);-ms-transform:matrix(0.206105,-0.004740,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206105,-0.004740,0.005748,0.249934,0,0);}
.m9e_c00108{transform:matrix(0.206440,-0.004748,0.005748,0.249934,0,0);-ms-transform:matrix(0.206440,-0.004748,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206440,-0.004748,0.005748,0.249934,0,0);}
.m68_c00108{transform:matrix(0.206495,-0.004749,0.005748,0.249934,0,0);-ms-transform:matrix(0.206495,-0.004749,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206495,-0.004749,0.005748,0.249934,0,0);}
.md0_c00108{transform:matrix(0.206950,-0.004760,0.005748,0.249934,0,0);-ms-transform:matrix(0.206950,-0.004760,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206950,-0.004760,0.005748,0.249934,0,0);}
.m8_c00108{transform:matrix(0.207095,-0.004763,0.005748,0.249934,0,0);-ms-transform:matrix(0.207095,-0.004763,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207095,-0.004763,0.005748,0.249934,0,0);}
.m8f_c00108{transform:matrix(0.207195,-0.004765,0.005748,0.249934,0,0);-ms-transform:matrix(0.207195,-0.004765,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207195,-0.004765,0.005748,0.249934,0,0);}
.m98_c00108{transform:matrix(0.207295,-0.004768,0.005748,0.249934,0,0);-ms-transform:matrix(0.207295,-0.004768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207295,-0.004768,0.005748,0.249934,0,0);}
.m46_c00108{transform:matrix(0.207350,-0.004769,0.005748,0.249934,0,0);-ms-transform:matrix(0.207350,-0.004769,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207350,-0.004769,0.005748,0.249934,0,0);}
.mb2_c00108{transform:matrix(0.207380,-0.004770,0.005748,0.249934,0,0);-ms-transform:matrix(0.207380,-0.004770,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207380,-0.004770,0.005748,0.249934,0,0);}
.m27_c00108{transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);-ms-transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);}
.mc2_c00108{transform:matrix(0.207810,-0.004780,0.005748,0.249934,0,0);-ms-transform:matrix(0.207810,-0.004780,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207810,-0.004780,0.005748,0.249934,0,0);}
.m15_c00108{transform:matrix(0.207990,-0.004784,0.005748,0.249934,0,0);-ms-transform:matrix(0.207990,-0.004784,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207990,-0.004784,0.005748,0.249934,0,0);}
.m6b_c00108{transform:matrix(0.208050,-0.004785,0.005748,0.249934,0,0);-ms-transform:matrix(0.208050,-0.004785,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208050,-0.004785,0.005748,0.249934,0,0);}
.m3b_c00108{transform:matrix(0.208525,-0.004796,0.005748,0.249934,0,0);-ms-transform:matrix(0.208525,-0.004796,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208525,-0.004796,0.005748,0.249934,0,0);}
.mdc_c00108{transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);}
.md4_c00108{transform:matrix(0.208820,-0.004803,0.005748,0.249934,0,0);-ms-transform:matrix(0.208820,-0.004803,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208820,-0.004803,0.005748,0.249934,0,0);}
.m87_c00108{transform:matrix(0.209100,-0.004809,0.005748,0.249934,0,0);-ms-transform:matrix(0.209100,-0.004809,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209100,-0.004809,0.005748,0.249934,0,0);}
.m31_c00108{transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);-ms-transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);}
.mab_c00108{transform:matrix(0.209420,-0.004817,0.005748,0.249934,0,0);-ms-transform:matrix(0.209420,-0.004817,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209420,-0.004817,0.005748,0.249934,0,0);}
.m4e_c00108{transform:matrix(0.209465,-0.004818,0.005748,0.249934,0,0);-ms-transform:matrix(0.209465,-0.004818,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209465,-0.004818,0.005748,0.249934,0,0);}
.mdb_c00108{transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);}
.mbd_c00108{transform:matrix(0.209740,-0.004824,0.005748,0.249934,0,0);-ms-transform:matrix(0.209740,-0.004824,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209740,-0.004824,0.005748,0.249934,0,0);}
.m1c_c00108{transform:matrix(0.209954,-0.004829,0.005748,0.249934,0,0);-ms-transform:matrix(0.209954,-0.004829,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209954,-0.004829,0.005748,0.249934,0,0);}
.m14_c00108{transform:matrix(0.210149,-0.004833,0.005748,0.249934,0,0);-ms-transform:matrix(0.210149,-0.004833,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210149,-0.004833,0.005748,0.249934,0,0);}
.ma_c00108{transform:matrix(0.210379,-0.004839,0.005748,0.249934,0,0);-ms-transform:matrix(0.210379,-0.004839,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210379,-0.004839,0.005748,0.249934,0,0);}
.m6d_c00108{transform:matrix(0.211234,-0.004858,0.005748,0.249934,0,0);-ms-transform:matrix(0.211234,-0.004858,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211234,-0.004858,0.005748,0.249934,0,0);}
.mc6_c00108{transform:matrix(0.211624,-0.004867,0.005748,0.249934,0,0);-ms-transform:matrix(0.211624,-0.004867,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211624,-0.004867,0.005748,0.249934,0,0);}
.m32_c00108{transform:matrix(0.213119,-0.004902,0.005748,0.249934,0,0);-ms-transform:matrix(0.213119,-0.004902,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213119,-0.004902,0.005748,0.249934,0,0);}
.mad_c00108{transform:matrix(0.213329,-0.004907,0.005748,0.249934,0,0);-ms-transform:matrix(0.213329,-0.004907,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213329,-0.004907,0.005748,0.249934,0,0);}
.m63_c00108{transform:matrix(0.215263,-0.004951,0.005748,0.249934,0,0);-ms-transform:matrix(0.215263,-0.004951,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215263,-0.004951,0.005748,0.249934,0,0);}
.m9a_c00108{transform:matrix(0.216213,-0.004973,0.005748,0.249934,0,0);-ms-transform:matrix(0.216213,-0.004973,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216213,-0.004973,0.005748,0.249934,0,0);}
.m11_c00108{transform:matrix(0.216688,-0.004984,0.005748,0.249934,0,0);-ms-transform:matrix(0.216688,-0.004984,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216688,-0.004984,0.005748,0.249934,0,0);}
.mc_c00108{transform:matrix(0.217143,-0.004994,0.005748,0.249934,0,0);-ms-transform:matrix(0.217143,-0.004994,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217143,-0.004994,0.005748,0.249934,0,0);}
.m74_c00108{transform:matrix(0.217802,-0.005009,0.005748,0.249934,0,0);-ms-transform:matrix(0.217802,-0.005009,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217802,-0.005009,0.005748,0.249934,0,0);}
.mbc_c00108{transform:matrix(0.217912,-0.005012,0.005748,0.249934,0,0);-ms-transform:matrix(0.217912,-0.005012,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217912,-0.005012,0.005748,0.249934,0,0);}
.m25_c00108{transform:matrix(0.218337,-0.005022,0.005748,0.249934,0,0);-ms-transform:matrix(0.218337,-0.005022,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218337,-0.005022,0.005748,0.249934,0,0);}
.mde_c00108{transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);}
.m5d_c00108{transform:matrix(0.218667,-0.005029,0.005748,0.249934,0,0);-ms-transform:matrix(0.218667,-0.005029,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218667,-0.005029,0.005748,0.249934,0,0);}
.m29_c00108{transform:matrix(0.219177,-0.005041,0.005748,0.249934,0,0);-ms-transform:matrix(0.219177,-0.005041,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219177,-0.005041,0.005748,0.249934,0,0);}
.mc0_c00108{transform:matrix(0.219257,-0.005043,0.005748,0.249934,0,0);-ms-transform:matrix(0.219257,-0.005043,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219257,-0.005043,0.005748,0.249934,0,0);}
.m58_c00108{transform:matrix(0.219572,-0.005050,0.005748,0.249934,0,0);-ms-transform:matrix(0.219572,-0.005050,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219572,-0.005050,0.005748,0.249934,0,0);}
.m1f_c00108{transform:matrix(0.219892,-0.005058,0.005748,0.249934,0,0);-ms-transform:matrix(0.219892,-0.005058,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219892,-0.005058,0.005748,0.249934,0,0);}
.md_c00108{transform:matrix(0.220502,-0.005072,0.005748,0.249934,0,0);-ms-transform:matrix(0.220502,-0.005072,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220502,-0.005072,0.005748,0.249934,0,0);}
.mc8_c00108{transform:matrix(0.220542,-0.005072,0.005748,0.249934,0,0);-ms-transform:matrix(0.220542,-0.005072,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220542,-0.005072,0.005748,0.249934,0,0);}
.mc7_c00108{transform:matrix(0.221022,-0.005083,0.005748,0.249934,0,0);-ms-transform:matrix(0.221022,-0.005083,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221022,-0.005083,0.005748,0.249934,0,0);}
.m95_c00108{transform:matrix(0.221886,-0.005103,0.005748,0.249934,0,0);-ms-transform:matrix(0.221886,-0.005103,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221886,-0.005103,0.005748,0.249934,0,0);}
.m86_c00108{transform:matrix(0.222721,-0.005123,0.005748,0.249934,0,0);-ms-transform:matrix(0.222721,-0.005123,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222721,-0.005123,0.005748,0.249934,0,0);}
.m7c_c00108{transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);-ms-transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);}
.md6_c00108{transform:matrix(0.223296,-0.005136,0.005748,0.249934,0,0);-ms-transform:matrix(0.223296,-0.005136,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223296,-0.005136,0.005748,0.249934,0,0);}
.m12_c00108{transform:matrix(0.223351,-0.005137,0.005748,0.249934,0,0);-ms-transform:matrix(0.223351,-0.005137,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223351,-0.005137,0.005748,0.249934,0,0);}
.m17_c00108{transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);-ms-transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);}
.m89_c00108{transform:matrix(0.223841,-0.005148,0.005748,0.249934,0,0);-ms-transform:matrix(0.223841,-0.005148,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223841,-0.005148,0.005748,0.249934,0,0);}
.mcb_c00108{transform:matrix(0.224261,-0.005158,0.005748,0.249934,0,0);-ms-transform:matrix(0.224261,-0.005158,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224261,-0.005158,0.005748,0.249934,0,0);}
.m8b_c00108{transform:matrix(0.224281,-0.005158,0.005748,0.249934,0,0);-ms-transform:matrix(0.224281,-0.005158,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224281,-0.005158,0.005748,0.249934,0,0);}
.mc5_c00108{transform:matrix(0.225010,-0.005175,0.005748,0.249934,0,0);-ms-transform:matrix(0.225010,-0.005175,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225010,-0.005175,0.005748,0.249934,0,0);}
.m6f_c00108{transform:matrix(0.225340,-0.005183,0.005748,0.249934,0,0);-ms-transform:matrix(0.225340,-0.005183,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225340,-0.005183,0.005748,0.249934,0,0);}
.m54_c00108{transform:matrix(0.225760,-0.005192,0.005748,0.249934,0,0);-ms-transform:matrix(0.225760,-0.005192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225760,-0.005192,0.005748,0.249934,0,0);}
.mbb_c00108{transform:matrix(0.226230,-0.005203,0.005748,0.249934,0,0);-ms-transform:matrix(0.226230,-0.005203,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226230,-0.005203,0.005748,0.249934,0,0);}
.m4c_c00108{transform:matrix(0.226670,-0.005213,0.005748,0.249934,0,0);-ms-transform:matrix(0.226670,-0.005213,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226670,-0.005213,0.005748,0.249934,0,0);}
.m99_c00108{transform:matrix(0.227590,-0.005235,0.005748,0.249934,0,0);-ms-transform:matrix(0.227590,-0.005235,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227590,-0.005235,0.005748,0.249934,0,0);}
.mae_c00108{transform:matrix(0.229304,-0.005274,0.005748,0.249934,0,0);-ms-transform:matrix(0.229304,-0.005274,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229304,-0.005274,0.005748,0.249934,0,0);}
.mb1_c00108{transform:matrix(0.229539,-0.005279,0.005748,0.249934,0,0);-ms-transform:matrix(0.229539,-0.005279,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229539,-0.005279,0.005748,0.249934,0,0);}
.mb6_c00108{transform:matrix(0.229554,-0.005280,0.005748,0.249934,0,0);-ms-transform:matrix(0.229554,-0.005280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229554,-0.005280,0.005748,0.249934,0,0);}
.ma0_c00108{transform:matrix(0.230844,-0.005309,0.005748,0.249934,0,0);-ms-transform:matrix(0.230844,-0.005309,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230844,-0.005309,0.005748,0.249934,0,0);}
.m96_c00108{transform:matrix(0.231984,-0.005336,0.005748,0.249934,0,0);-ms-transform:matrix(0.231984,-0.005336,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231984,-0.005336,0.005748,0.249934,0,0);}
.mdf_c00108{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.ma6_c00108{transform:matrix(0.239712,-0.005513,0.005748,0.249934,0,0);-ms-transform:matrix(0.239712,-0.005513,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239712,-0.005513,0.005748,0.249934,0,0);}
.m72_c00108{transform:matrix(0.240431,-0.005530,0.005748,0.249934,0,0);-ms-transform:matrix(0.240431,-0.005530,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240431,-0.005530,0.005748,0.249934,0,0);}
.m93_c00108{transform:matrix(0.241206,-0.005548,0.005748,0.249934,0,0);-ms-transform:matrix(0.241206,-0.005548,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241206,-0.005548,0.005748,0.249934,0,0);}
.ma7_c00108{transform:matrix(0.244940,-0.005634,0.005748,0.249934,0,0);-ms-transform:matrix(0.244940,-0.005634,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244940,-0.005634,0.005748,0.249934,0,0);}
.m9_c00108{transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);-ms-transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);}
.me8_c00108{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.250624,-0.005764,0.005748,0.249934,0,0);-ms-transform:matrix(0.250624,-0.005764,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250624,-0.005764,0.005748,0.249934,0,0);}
.me5_c00108{transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);}
.me0_c00108{transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);}
.mca_c00108{transform:matrix(0.255697,-0.005881,0.005748,0.249934,0,0);-ms-transform:matrix(0.255697,-0.005881,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255697,-0.005881,0.005748,0.249934,0,0);}
.m10_c00108{transform:matrix(0.256562,-0.005901,0.005748,0.249934,0,0);-ms-transform:matrix(0.256562,-0.005901,0.005748,0.249934,0,0);-webkit-transform:matrix(0.256562,-0.005901,0.005748,0.249934,0,0);}
.m62_c00108{transform:matrix(0.258722,-0.005951,0.005748,0.249934,0,0);-ms-transform:matrix(0.258722,-0.005951,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258722,-0.005951,0.005748,0.249934,0,0);}
.mf_c00108{transform:matrix(0.261611,-0.006017,0.005748,0.249934,0,0);-ms-transform:matrix(0.261611,-0.006017,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261611,-0.006017,0.005748,0.249934,0,0);}
.mc9_c00108{transform:matrix(0.264460,-0.006083,0.005748,0.249934,0,0);-ms-transform:matrix(0.264460,-0.006083,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264460,-0.006083,0.005748,0.249934,0,0);}
.md9_c00108{transform:matrix(0.290523,-0.006682,0.005748,0.249934,0,0);-ms-transform:matrix(0.290523,-0.006682,0.005748,0.249934,0,0);-webkit-transform:matrix(0.290523,-0.006682,0.005748,0.249934,0,0);}
.m88_c00108{transform:matrix(0.291838,-0.006712,0.005748,0.249934,0,0);-ms-transform:matrix(0.291838,-0.006712,0.005748,0.249934,0,0);-webkit-transform:matrix(0.291838,-0.006712,0.005748,0.249934,0,0);}
.md3_c00108{transform:matrix(0.294017,-0.006762,0.005748,0.249934,0,0);-ms-transform:matrix(0.294017,-0.006762,0.005748,0.249934,0,0);-webkit-transform:matrix(0.294017,-0.006762,0.005748,0.249934,0,0);}
.m61_c00108{transform:matrix(0.338515,-0.007786,0.005748,0.249934,0,0);-ms-transform:matrix(0.338515,-0.007786,0.005748,0.249934,0,0);-webkit-transform:matrix(0.338515,-0.007786,0.005748,0.249934,0,0);}
.me6_c00108{transform:matrix(0.355435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355435,0.000000,0.000000,0.250000,0,0);}
.me7_c00108{transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);}
.m60_c00108{transform:matrix(0.375466,-0.008636,0.005748,0.249934,0,0);-ms-transform:matrix(0.375466,-0.008636,0.005748,0.249934,0,0);-webkit-transform:matrix(0.375466,-0.008636,0.005748,0.249934,0,0);}
.mb0_c00108{transform:matrix(0.638181,-0.014678,0.005748,0.249934,0,0);-ms-transform:matrix(0.638181,-0.014678,0.005748,0.249934,0,0);-webkit-transform:matrix(0.638181,-0.014678,0.005748,0.249934,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:0.000000px;}
.fc0_c00108{color:transparent;}
.fs3_c00108{font-size:59.865828px;}
.fs5_c00108{font-size:60.916106px;}
.fs2_c00108{font-size:61.966384px;}
.fse_c00108{font-size:63.000000px;}
.fsc_c00108{font-size:63.016661px;}
.fs8_c00108{font-size:64.066939px;}
.fs9_c00108{font-size:65.117217px;}
.fsb_c00108{font-size:66.167494px;}
.fs0_c00108{font-size:67.200000px;}
.fs1_c00108{font-size:67.217772px;}
.fsa_c00108{font-size:68.268050px;}
.fsf_c00108{font-size:69.300000px;}
.fs6_c00108{font-size:69.318327px;}
.fs10_c00108{font-size:71.400000px;}
.fs7_c00108{font-size:71.418883px;}
.fsd_c00108{font-size:72.469160px;}
.fs4_c00108{font-size:75.619994px;}
.y0_c00108{bottom:0.000000px;}
.yde_c00108{bottom:38.313000px;}
.ydd_c00108{bottom:55.584000px;}
.ydc_c00108{bottom:74.224500px;}
.yd8_c00108{bottom:90.931529px;}
.ydb_c00108{bottom:90.931713px;}
.yd7_c00108{bottom:90.931857px;}
.yd9_c00108{bottom:90.932166px;}
.yda_c00108{bottom:90.932366px;}
.yd6_c00108{bottom:90.932411px;}
.yd5_c00108{bottom:90.932490px;}
.yd4_c00108{bottom:90.933237px;}
.yd1_c00108{bottom:109.735784px;}
.yd3_c00108{bottom:109.736238px;}
.yd2_c00108{bottom:109.736402px;}
.yd0_c00108{bottom:109.736445px;}
.ycd_c00108{bottom:109.736708px;}
.ycf_c00108{bottom:109.737039px;}
.yce_c00108{bottom:109.737297px;}
.yc8_c00108{bottom:126.549849px;}
.yc7_c00108{bottom:126.549899px;}
.ycc_c00108{bottom:126.550248px;}
.yc9_c00108{bottom:126.550275px;}
.ycb_c00108{bottom:126.550527px;}
.yca_c00108{bottom:126.550623px;}
.yc3_c00108{bottom:141.622464px;}
.yc2_c00108{bottom:141.622467px;}
.yc6_c00108{bottom:141.622953px;}
.yc4_c00108{bottom:141.623024px;}
.yc5_c00108{bottom:141.623126px;}
.yc1_c00108{bottom:141.623145px;}
.yc0_c00108{bottom:141.623903px;}
.ybe_c00108{bottom:159.802382px;}
.ybf_c00108{bottom:159.802398px;}
.yba_c00108{bottom:159.802994px;}
.ybd_c00108{bottom:159.802997px;}
.ybb_c00108{bottom:159.803403px;}
.ybc_c00108{bottom:159.803697px;}
.yb1_c00108{bottom:173.244135px;}
.yb2_c00108{bottom:173.973411px;}
.yb3_c00108{bottom:174.449439px;}
.yb4_c00108{bottom:175.464881px;}
.yb5_c00108{bottom:176.057604px;}
.yb6_c00108{bottom:176.350274px;}
.yb7_c00108{bottom:177.374790px;}
.yb8_c00108{bottom:177.800873px;}
.yb9_c00108{bottom:178.255094px;}
.yab_c00108{bottom:191.876948px;}
.yac_c00108{bottom:192.643905px;}
.yad_c00108{bottom:192.820947px;}
.yae_c00108{bottom:193.211043px;}
.yaf_c00108{bottom:194.382626px;}
.yb0_c00108{bottom:195.835232px;}
.ya5_c00108{bottom:209.969259px;}
.ya6_c00108{bottom:210.830688px;}
.ya7_c00108{bottom:211.414937px;}
.ya8_c00108{bottom:212.481561px;}
.ya9_c00108{bottom:212.708088px;}
.yaa_c00108{bottom:213.456995px;}
.ya1_c00108{bottom:229.629852px;}
.ya0_c00108{bottom:229.630226px;}
.ya2_c00108{bottom:229.630346px;}
.ya3_c00108{bottom:229.630563px;}
.ya4_c00108{bottom:229.630580px;}
.y9e_c00108{bottom:229.630751px;}
.y9d_c00108{bottom:229.630829px;}
.y9f_c00108{bottom:229.630989px;}
.y97_c00108{bottom:245.619749px;}
.y98_c00108{bottom:245.859633px;}
.y99_c00108{bottom:246.643988px;}
.y9a_c00108{bottom:247.551615px;}
.y9b_c00108{bottom:248.175938px;}
.y9c_c00108{bottom:248.539700px;}
.y8d_c00108{bottom:262.903808px;}
.y8e_c00108{bottom:263.313735px;}
.y8f_c00108{bottom:263.465325px;}
.y90_c00108{bottom:263.746671px;}
.y91_c00108{bottom:264.254547px;}
.y92_c00108{bottom:264.430679px;}
.y93_c00108{bottom:264.867911px;}
.y94_c00108{bottom:264.987621px;}
.y95_c00108{bottom:265.575098px;}
.y96_c00108{bottom:265.758117px;}
.y87_c00108{bottom:279.919392px;}
.y88_c00108{bottom:280.419206px;}
.y89_c00108{bottom:281.532818px;}
.y8a_c00108{bottom:282.727751px;}
.y8b_c00108{bottom:283.270184px;}
.y8c_c00108{bottom:283.577627px;}
.y7d_c00108{bottom:297.743796px;}
.y7e_c00108{bottom:297.916001px;}
.y7f_c00108{bottom:298.126704px;}
.y80_c00108{bottom:298.670736px;}
.y81_c00108{bottom:298.939059px;}
.y82_c00108{bottom:299.762978px;}
.y83_c00108{bottom:300.355847px;}
.y84_c00108{bottom:300.623859px;}
.y85_c00108{bottom:300.887144px;}
.y86_c00108{bottom:301.311519px;}
.y76_c00108{bottom:315.299103px;}
.y77_c00108{bottom:315.941865px;}
.y78_c00108{bottom:316.195088px;}
.y79_c00108{bottom:317.387963px;}
.y7a_c00108{bottom:317.725449px;}
.y7b_c00108{bottom:318.918377px;}
.y7c_c00108{bottom:319.221875px;}
.y6e_c00108{bottom:332.043300px;}
.y6f_c00108{bottom:333.020616px;}
.y70_c00108{bottom:333.571023px;}
.y71_c00108{bottom:334.162233px;}
.y72_c00108{bottom:334.508415px;}
.y73_c00108{bottom:335.266548px;}
.y74_c00108{bottom:335.579777px;}
.y75_c00108{bottom:336.304733px;}
.y67_c00108{bottom:347.982872px;}
.y68_c00108{bottom:348.917991px;}
.y69_c00108{bottom:349.629801px;}
.y6a_c00108{bottom:351.594618px;}
.y6b_c00108{bottom:353.103519px;}
.y6c_c00108{bottom:353.702622px;}
.y6d_c00108{bottom:354.814358px;}
.y5f_c00108{bottom:365.800251px;}
.y60_c00108{bottom:366.758354px;}
.y61_c00108{bottom:367.148375px;}
.y62_c00108{bottom:367.896153px;}
.y63_c00108{bottom:368.086859px;}
.y64_c00108{bottom:368.380776px;}
.y65_c00108{bottom:369.543801px;}
.y66_c00108{bottom:369.929388px;}
.y59_c00108{bottom:383.088225px;}
.y5a_c00108{bottom:384.803970px;}
.y5b_c00108{bottom:385.128743px;}
.y5c_c00108{bottom:385.625304px;}
.y5d_c00108{bottom:386.505810px;}
.y5e_c00108{bottom:386.804016px;}
.y52_c00108{bottom:400.908677px;}
.y53_c00108{bottom:401.154411px;}
.y54_c00108{bottom:402.095553px;}
.y55_c00108{bottom:402.282390px;}
.y56_c00108{bottom:403.251195px;}
.y57_c00108{bottom:403.503971px;}
.y58_c00108{bottom:404.546444px;}
.y4b_c00108{bottom:417.118580px;}
.y4c_c00108{bottom:417.630008px;}
.y4d_c00108{bottom:418.738079px;}
.y4e_c00108{bottom:419.787707px;}
.y4f_c00108{bottom:420.881391px;}
.y50_c00108{bottom:422.236241px;}
.y51_c00108{bottom:423.348245px;}
.y45_c00108{bottom:433.051937px;}
.y46_c00108{bottom:434.481104px;}
.y47_c00108{bottom:434.919831px;}
.y48_c00108{bottom:437.886494px;}
.y49_c00108{bottom:438.234488px;}
.y4a_c00108{bottom:438.944621px;}
.y3d_c00108{bottom:449.795858px;}
.y3e_c00108{bottom:450.282057px;}
.y3f_c00108{bottom:452.633816px;}
.y40_c00108{bottom:453.160049px;}
.y41_c00108{bottom:453.988992px;}
.y42_c00108{bottom:454.477745px;}
.y43_c00108{bottom:455.369766px;}
.y44_c00108{bottom:456.681650px;}
.y34_c00108{bottom:468.431429px;}
.y35_c00108{bottom:470.147418px;}
.y36_c00108{bottom:470.515161px;}
.y37_c00108{bottom:470.923300px;}
.y38_c00108{bottom:471.864270px;}
.y39_c00108{bottom:473.279735px;}
.y3a_c00108{bottom:474.695027px;}
.y3b_c00108{bottom:475.161984px;}
.y3c_c00108{bottom:476.338934px;}
.y2a_c00108{bottom:486.252105px;}
.y2b_c00108{bottom:487.505105px;}
.y2c_c00108{bottom:488.051339px;}
.y2d_c00108{bottom:488.423929px;}
.y2e_c00108{bottom:488.942787px;}
.y2f_c00108{bottom:489.455037px;}
.y30_c00108{bottom:490.524975px;}
.y31_c00108{bottom:490.904864px;}
.y32_c00108{bottom:492.075975px;}
.y33_c00108{bottom:492.480980px;}
.y22_c00108{bottom:503.273139px;}
.y23_c00108{bottom:503.733587px;}
.y24_c00108{bottom:505.305939px;}
.y25_c00108{bottom:505.911395px;}
.y26_c00108{bottom:507.038513px;}
.y27_c00108{bottom:508.595618px;}
.y28_c00108{bottom:510.001419px;}
.y29_c00108{bottom:511.027427px;}
.y19_c00108{bottom:519.210702px;}
.y1a_c00108{bottom:519.709404px;}
.y1b_c00108{bottom:521.185676px;}
.y1c_c00108{bottom:521.588463px;}
.y1d_c00108{bottom:523.639413px;}
.y1e_c00108{bottom:524.396142px;}
.y1f_c00108{bottom:525.250511px;}
.y20_c00108{bottom:525.851268px;}
.y21_c00108{bottom:528.038941px;}
.y13_c00108{bottom:537.840909px;}
.y14_c00108{bottom:538.603653px;}
.y15_c00108{bottom:539.370054px;}
.y16_c00108{bottom:541.003104px;}
.y17_c00108{bottom:542.182865px;}
.y18_c00108{bottom:544.071381px;}
.ya_c00108{bottom:555.930428px;}
.yb_c00108{bottom:556.300589px;}
.yc_c00108{bottom:556.862808px;}
.yd_c00108{bottom:557.335442px;}
.ye_c00108{bottom:558.744407px;}
.yf_c00108{bottom:559.026120px;}
.y10_c00108{bottom:559.820801px;}
.y11_c00108{bottom:561.019869px;}
.y12_c00108{bottom:561.353837px;}
.y2_c00108{bottom:572.404500px;}
.y3_c00108{bottom:572.965815px;}
.y4_c00108{bottom:573.426080px;}
.y5_c00108{bottom:574.705270px;}
.y6_c00108{bottom:575.121099px;}
.y7_c00108{bottom:576.336810px;}
.y8_c00108{bottom:576.648932px;}
.y9_c00108{bottom:577.582329px;}
.y1_c00108{bottom:593.454000px;}
.h4_c00108{height:59.865828px;}
.h6_c00108{height:60.916106px;}
.h3_c00108{height:61.966384px;}
.hf_c00108{height:63.000000px;}
.hd_c00108{height:63.016661px;}
.h9_c00108{height:64.066939px;}
.ha_c00108{height:65.117217px;}
.hc_c00108{height:66.167494px;}
.h1_c00108{height:67.200000px;}
.h2_c00108{height:67.217772px;}
.hb_c00108{height:68.268050px;}
.h10_c00108{height:69.300000px;}
.h7_c00108{height:69.318327px;}
.h11_c00108{height:71.400000px;}
.h8_c00108{height:71.418883px;}
.he_c00108{height:72.469160px;}
.h5_c00108{height:75.619994px;}
.h0_c00108{height:634.500000px;}
.w0_c00108{width:371.790000px;}
.w1_c00108{width:372.000000px;}
.x0_c00108{left:0.000000px;}
.x2_c00108{left:32.592000px;}
.x3a_c00108{left:34.078974px;}
.x66_c00108{left:35.273424px;}
.x78_c00108{left:42.660000px;}
.x56_c00108{left:47.953519px;}
.x16_c00108{left:49.460265px;}
.xa_c00108{left:51.171517px;}
.x3e_c00108{left:52.796352px;}
.x62_c00108{left:54.681240px;}
.x3_c00108{left:56.997000px;}
.x12_c00108{left:60.194603px;}
.x57_c00108{left:64.161745px;}
.x5a_c00108{left:67.701174px;}
.x4b_c00108{left:71.467026px;}
.x68_c00108{left:74.530243px;}
.x79_c00108{left:75.870000px;}
.x4_c00108{left:77.008500px;}
.xb_c00108{left:79.269949px;}
.x7c_c00108{left:80.460000px;}
.x6c_c00108{left:83.164546px;}
.x5e_c00108{left:85.997080px;}
.x13_c00108{left:87.578463px;}
.x24_c00108{left:90.165594px;}
.x50_c00108{left:91.718179px;}
.x36_c00108{left:92.798893px;}
.x63_c00108{left:95.047644px;}
.x17_c00108{left:97.072002px;}
.x4c_c00108{left:99.935715px;}
.x69_c00108{left:100.969279px;}
.xc_c00108{left:102.886071px;}
.x1e_c00108{left:105.365928px;}
.x65_c00108{left:106.799035px;}
.x18_c00108{left:110.082121px;}
.x37_c00108{left:111.090979px;}
.x25_c00108{left:115.024180px;}
.x70_c00108{left:116.654178px;}
.x46_c00108{left:117.937018px;}
.x42_c00108{left:119.840661px;}
.x51_c00108{left:124.131664px;}
.x2b_c00108{left:125.617518px;}
.x1f_c00108{left:126.991944px;}
.x6d_c00108{left:128.266386px;}
.x67_c00108{left:130.601658px;}
.x5_c00108{left:132.625500px;}
.x31_c00108{left:134.847834px;}
.x43_c00108{left:136.049265px;}
.x71_c00108{left:137.179045px;}
.x3f_c00108{left:139.489258px;}
.x5b_c00108{left:141.958836px;}
.x14_c00108{left:145.921770px;}
.x6_c00108{left:150.705000px;}
.x32_c00108{left:153.616660px;}
.x26_c00108{left:155.544612px;}
.x55_c00108{left:156.757428px;}
.x5f_c00108{left:157.830918px;}
.x52_c00108{left:158.906460px;}
.x2c_c00108{left:160.460809px;}
.x73_c00108{left:162.835087px;}
.x47_c00108{left:164.674039px;}
.x1_c00108{left:165.780000px;}
.x20_c00108{left:167.253321px;}
.x7d_c00108{left:168.480000px;}
.x74_c00108{left:172.016455px;}
.xd_c00108{left:173.345935px;}
.x19_c00108{left:176.219943px;}
.x27_c00108{left:178.795130px;}
.x6e_c00108{left:179.850175px;}
.x33_c00108{left:183.197745px;}
.xe_c00108{left:187.421401px;}
.x58_c00108{left:189.985156px;}
.x48_c00108{left:194.879869px;}
.x3b_c00108{left:197.679474px;}
.x1a_c00108{left:200.638458px;}
.x7_c00108{left:203.562000px;}
.x44_c00108{left:204.926526px;}
.x6a_c00108{left:206.582923px;}
.x7a_c00108{left:209.790000px;}
.x2d_c00108{left:212.867479px;}
.x40_c00108{left:214.041405px;}
.x8_c00108{left:217.132500px;}
.x76_c00108{left:218.737942px;}
.x45_c00108{left:219.849561px;}
.x5c_c00108{left:221.644498px;}
.x21_c00108{left:222.881939px;}
.x60_c00108{left:224.287203px;}
.xf_c00108{left:227.127627px;}
.x1b_c00108{left:228.192886px;}
.x34_c00108{left:232.530087px;}
.x38_c00108{left:234.725650px;}
.x6f_c00108{left:237.375604px;}
.x4d_c00108{left:238.895332px;}
.x53_c00108{left:242.202414px;}
.x28_c00108{left:244.702148px;}
.x1c_c00108{left:247.591833px;}
.x39_c00108{left:249.203305px;}
.x15_c00108{left:255.508178px;}
.x3c_c00108{left:256.585974px;}
.x9_c00108{left:257.715000px;}
.x4e_c00108{left:262.855228px;}
.x2e_c00108{left:265.266649px;}
.x49_c00108{left:267.566565px;}
.x64_c00108{left:269.513397px;}
.x22_c00108{left:273.106677px;}
.x59_c00108{left:276.447028px;}
.x5d_c00108{left:278.366952px;}
.x35_c00108{left:279.389205px;}
.x2f_c00108{left:282.567562px;}
.x54_c00108{left:284.880313px;}
.x10_c00108{left:287.091267px;}
.x4a_c00108{left:291.639429px;}
.x61_c00108{left:294.458592px;}
.x29_c00108{left:297.903855px;}
.x75_c00108{left:300.299782px;}
.x11_c00108{left:303.764905px;}
.x3d_c00108{left:304.933974px;}
.x4f_c00108{left:307.341693px;}
.x23_c00108{left:309.754968px;}
.x6b_c00108{left:312.435102px;}
.x41_c00108{left:313.683813px;}
.x7b_c00108{left:315.090000px;}
.x2a_c00108{left:316.295769px;}
.x1d_c00108{left:318.173361px;}
.x72_c00108{left:320.557990px;}
.x30_c00108{left:326.170060px;}
.x77_c00108{left:327.847126px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
.fs3_c00108{font-size:53.214070pt;}
.fs5_c00108{font-size:54.147650pt;}
.fs2_c00108{font-size:55.081230pt;}
.fse_c00108{font-size:56.000000pt;}
.fsc_c00108{font-size:56.014810pt;}
.fs8_c00108{font-size:56.948390pt;}
.fs9_c00108{font-size:57.881970pt;}
.fsb_c00108{font-size:58.815551pt;}
.fs0_c00108{font-size:59.733333pt;}
.fs1_c00108{font-size:59.749131pt;}
.fsa_c00108{font-size:60.682711pt;}
.fsf_c00108{font-size:61.600000pt;}
.fs6_c00108{font-size:61.616291pt;}
.fs10_c00108{font-size:63.466667pt;}
.fs7_c00108{font-size:63.483451pt;}
.fsd_c00108{font-size:64.417032pt;}
.fs4_c00108{font-size:67.217772pt;}
.y0_c00108{bottom:0.000000pt;}
.yde_c00108{bottom:34.056000pt;}
.ydd_c00108{bottom:49.408000pt;}
.ydc_c00108{bottom:65.977333pt;}
.yd8_c00108{bottom:80.828025pt;}
.ydb_c00108{bottom:80.828189pt;}
.yd7_c00108{bottom:80.828317pt;}
.yd9_c00108{bottom:80.828592pt;}
.yda_c00108{bottom:80.828769pt;}
.yd6_c00108{bottom:80.828809pt;}
.yd5_c00108{bottom:80.828880pt;}
.yd4_c00108{bottom:80.829544pt;}
.yd1_c00108{bottom:97.542919pt;}
.yd3_c00108{bottom:97.543323pt;}
.yd2_c00108{bottom:97.543468pt;}
.yd0_c00108{bottom:97.543507pt;}
.ycd_c00108{bottom:97.543740pt;}
.ycf_c00108{bottom:97.544035pt;}
.yce_c00108{bottom:97.544264pt;}
.yc8_c00108{bottom:112.488755pt;}
.yc7_c00108{bottom:112.488799pt;}
.ycc_c00108{bottom:112.489109pt;}
.yc9_c00108{bottom:112.489133pt;}
.ycb_c00108{bottom:112.489357pt;}
.yca_c00108{bottom:112.489443pt;}
.yc3_c00108{bottom:125.886635pt;}
.yc2_c00108{bottom:125.886637pt;}
.yc6_c00108{bottom:125.887069pt;}
.yc4_c00108{bottom:125.887132pt;}
.yc5_c00108{bottom:125.887223pt;}
.yc1_c00108{bottom:125.887240pt;}
.yc0_c00108{bottom:125.887913pt;}
.ybe_c00108{bottom:142.046561pt;}
.ybf_c00108{bottom:142.046576pt;}
.yba_c00108{bottom:142.047105pt;}
.ybd_c00108{bottom:142.047108pt;}
.ybb_c00108{bottom:142.047469pt;}
.ybc_c00108{bottom:142.047731pt;}
.yb1_c00108{bottom:153.994787pt;}
.yb2_c00108{bottom:154.643032pt;}
.yb3_c00108{bottom:155.066168pt;}
.yb4_c00108{bottom:155.968783pt;}
.yb5_c00108{bottom:156.495648pt;}
.yb6_c00108{bottom:156.755799pt;}
.yb7_c00108{bottom:157.666480pt;}
.yb8_c00108{bottom:158.045220pt;}
.yb9_c00108{bottom:158.448972pt;}
.yab_c00108{bottom:170.557287pt;}
.yac_c00108{bottom:171.239027pt;}
.yad_c00108{bottom:171.396397pt;}
.yae_c00108{bottom:171.743149pt;}
.yaf_c00108{bottom:172.784556pt;}
.yb0_c00108{bottom:174.075761pt;}
.ya5_c00108{bottom:186.639341pt;}
.ya6_c00108{bottom:187.405056pt;}
.ya7_c00108{bottom:187.924388pt;}
.ya8_c00108{bottom:188.872499pt;}
.ya9_c00108{bottom:189.073856pt;}
.yaa_c00108{bottom:189.739551pt;}
.ya1_c00108{bottom:204.115424pt;}
.ya0_c00108{bottom:204.115756pt;}
.ya2_c00108{bottom:204.115863pt;}
.ya3_c00108{bottom:204.116056pt;}
.ya4_c00108{bottom:204.116071pt;}
.y9e_c00108{bottom:204.116223pt;}
.y9d_c00108{bottom:204.116292pt;}
.y9f_c00108{bottom:204.116435pt;}
.y97_c00108{bottom:218.328665pt;}
.y98_c00108{bottom:218.541896pt;}
.y99_c00108{bottom:219.239100pt;}
.y9a_c00108{bottom:220.045880pt;}
.y9b_c00108{bottom:220.600833pt;}
.y9c_c00108{bottom:220.924177pt;}
.y8d_c00108{bottom:233.692273pt;}
.y8e_c00108{bottom:234.056653pt;}
.y8f_c00108{bottom:234.191400pt;}
.y90_c00108{bottom:234.441485pt;}
.y91_c00108{bottom:234.892931pt;}
.y92_c00108{bottom:235.049492pt;}
.y93_c00108{bottom:235.438143pt;}
.y94_c00108{bottom:235.544552pt;}
.y95_c00108{bottom:236.066753pt;}
.y96_c00108{bottom:236.229437pt;}
.y87_c00108{bottom:248.817237pt;}
.y88_c00108{bottom:249.261516pt;}
.y89_c00108{bottom:250.251393pt;}
.y8a_c00108{bottom:251.313556pt;}
.y8b_c00108{bottom:251.795719pt;}
.y8c_c00108{bottom:252.069001pt;}
.y7d_c00108{bottom:264.661152pt;}
.y7e_c00108{bottom:264.814223pt;}
.y7f_c00108{bottom:265.001515pt;}
.y80_c00108{bottom:265.485099pt;}
.y81_c00108{bottom:265.723608pt;}
.y82_c00108{bottom:266.455980pt;}
.y83_c00108{bottom:266.982975pt;}
.y84_c00108{bottom:267.221208pt;}
.y85_c00108{bottom:267.455239pt;}
.y86_c00108{bottom:267.832461pt;}
.y76_c00108{bottom:280.265869pt;}
.y77_c00108{bottom:280.837213pt;}
.y78_c00108{bottom:281.062300pt;}
.y79_c00108{bottom:282.122633pt;}
.y7a_c00108{bottom:282.422621pt;}
.y7b_c00108{bottom:283.483001pt;}
.y7c_c00108{bottom:283.752777pt;}
.y6e_c00108{bottom:295.149600pt;}
.y6f_c00108{bottom:296.018325pt;}
.y70_c00108{bottom:296.507576pt;}
.y71_c00108{bottom:297.033096pt;}
.y72_c00108{bottom:297.340813pt;}
.y73_c00108{bottom:298.014709pt;}
.y74_c00108{bottom:298.293135pt;}
.y75_c00108{bottom:298.937540pt;}
.y67_c00108{bottom:309.318108pt;}
.y68_c00108{bottom:310.149325pt;}
.y69_c00108{bottom:310.782045pt;}
.y6a_c00108{bottom:312.528549pt;}
.y6b_c00108{bottom:313.869795pt;}
.y6c_c00108{bottom:314.402331pt;}
.y6d_c00108{bottom:315.390540pt;}
.y5f_c00108{bottom:325.155779pt;}
.y60_c00108{bottom:326.007425pt;}
.y61_c00108{bottom:326.354111pt;}
.y62_c00108{bottom:327.018803pt;}
.y63_c00108{bottom:327.188319pt;}
.y64_c00108{bottom:327.449579pt;}
.y65_c00108{bottom:328.483379pt;}
.y66_c00108{bottom:328.826123pt;}
.y59_c00108{bottom:340.522867pt;}
.y5a_c00108{bottom:342.047973pt;}
.y5b_c00108{bottom:342.336660pt;}
.y5c_c00108{bottom:342.778048pt;}
.y5d_c00108{bottom:343.560720pt;}
.y5e_c00108{bottom:343.825792pt;}
.y52_c00108{bottom:356.363268pt;}
.y53_c00108{bottom:356.581699pt;}
.y54_c00108{bottom:357.418269pt;}
.y55_c00108{bottom:357.584347pt;}
.y56_c00108{bottom:358.445507pt;}
.y57_c00108{bottom:358.670196pt;}
.y58_c00108{bottom:359.596839pt;}
.y4b_c00108{bottom:370.772071pt;}
.y4c_c00108{bottom:371.226673pt;}
.y4d_c00108{bottom:372.211625pt;}
.y4e_c00108{bottom:373.144628pt;}
.y4f_c00108{bottom:374.116792pt;}
.y50_c00108{bottom:375.321103pt;}
.y51_c00108{bottom:376.309551pt;}
.y45_c00108{bottom:384.935055pt;}
.y46_c00108{bottom:386.205425pt;}
.y47_c00108{bottom:386.595405pt;}
.y48_c00108{bottom:389.232439pt;}
.y49_c00108{bottom:389.541767pt;}
.y4a_c00108{bottom:390.172996pt;}
.y3d_c00108{bottom:399.818540pt;}
.y3e_c00108{bottom:400.250717pt;}
.y3f_c00108{bottom:402.341169pt;}
.y40_c00108{bottom:402.808932pt;}
.y41_c00108{bottom:403.545771pt;}
.y42_c00108{bottom:403.980217pt;}
.y43_c00108{bottom:404.773125pt;}
.y44_c00108{bottom:405.939244pt;}
.y34_c00108{bottom:416.383492pt;}
.y35_c00108{bottom:417.908816pt;}
.y36_c00108{bottom:418.235699pt;}
.y37_c00108{bottom:418.598489pt;}
.y38_c00108{bottom:419.434907pt;}
.y39_c00108{bottom:420.693097pt;}
.y3a_c00108{bottom:421.951135pt;}
.y3b_c00108{bottom:422.366208pt;}
.y3c_c00108{bottom:423.412385pt;}
.y2a_c00108{bottom:432.224093pt;}
.y2b_c00108{bottom:433.337871pt;}
.y2c_c00108{bottom:433.823412pt;}
.y2d_c00108{bottom:434.154604pt;}
.y2e_c00108{bottom:434.615811pt;}
.y2f_c00108{bottom:435.071144pt;}
.y30_c00108{bottom:436.022200pt;}
.y31_c00108{bottom:436.359879pt;}
.y32_c00108{bottom:437.400867pt;}
.y33_c00108{bottom:437.760871pt;}
.y22_c00108{bottom:447.353901pt;}
.y23_c00108{bottom:447.763188pt;}
.y24_c00108{bottom:449.160835pt;}
.y25_c00108{bottom:449.699017pt;}
.y26_c00108{bottom:450.700900pt;}
.y27_c00108{bottom:452.084993pt;}
.y28_c00108{bottom:453.334595pt;}
.y29_c00108{bottom:454.246601pt;}
.y19_c00108{bottom:461.520624pt;}
.y1a_c00108{bottom:461.963915pt;}
.y1b_c00108{bottom:463.276156pt;}
.y1c_c00108{bottom:463.634189pt;}
.y1d_c00108{bottom:465.457256pt;}
.y1e_c00108{bottom:466.129904pt;}
.y1f_c00108{bottom:466.889343pt;}
.y20_c00108{bottom:467.423349pt;}
.y21_c00108{bottom:469.367948pt;}
.y13_c00108{bottom:478.080808pt;}
.y14_c00108{bottom:478.758803pt;}
.y15_c00108{bottom:479.440048pt;}
.y16_c00108{bottom:480.891648pt;}
.y17_c00108{bottom:481.940324pt;}
.y18_c00108{bottom:483.619005pt;}
.ya_c00108{bottom:494.160380pt;}
.yb_c00108{bottom:494.489412pt;}
.yc_c00108{bottom:494.989163pt;}
.yd_c00108{bottom:495.409281pt;}
.ye_c00108{bottom:496.661695pt;}
.yf_c00108{bottom:496.912107pt;}
.y10_c00108{bottom:497.618489pt;}
.y11_c00108{bottom:498.684328pt;}
.y12_c00108{bottom:498.981188pt;}
.y2_c00108{bottom:508.804000pt;}
.y3_c00108{bottom:509.302947pt;}
.y4_c00108{bottom:509.712071pt;}
.y5_c00108{bottom:510.849129pt;}
.y6_c00108{bottom:511.218755pt;}
.y7_c00108{bottom:512.299387pt;}
.y8_c00108{bottom:512.576828pt;}
.y9_c00108{bottom:513.406515pt;}
.y1_c00108{bottom:527.514667pt;}
.h4_c00108{height:53.214070pt;}
.h6_c00108{height:54.147650pt;}
.h3_c00108{height:55.081230pt;}
.hf_c00108{height:56.000000pt;}
.hd_c00108{height:56.014810pt;}
.h9_c00108{height:56.948390pt;}
.ha_c00108{height:57.881970pt;}
.hc_c00108{height:58.815551pt;}
.h1_c00108{height:59.733333pt;}
.h2_c00108{height:59.749131pt;}
.hb_c00108{height:60.682711pt;}
.h10_c00108{height:61.600000pt;}
.h7_c00108{height:61.616291pt;}
.h11_c00108{height:63.466667pt;}
.h8_c00108{height:63.483451pt;}
.he_c00108{height:64.417032pt;}
.h5_c00108{height:67.217772pt;}
.h0_c00108{height:564.000000pt;}
.w0_c00108{width:330.480000pt;}
.w1_c00108{width:330.666667pt;}
.x0_c00108{left:0.000000pt;}
.x2_c00108{left:28.970667pt;}
.x3a_c00108{left:30.292421pt;}
.x66_c00108{left:31.354155pt;}
.x78_c00108{left:37.920000pt;}
.x56_c00108{left:42.625351pt;}
.x16_c00108{left:43.964680pt;}
.xa_c00108{left:45.485793pt;}
.x3e_c00108{left:46.930091pt;}
.x62_c00108{left:48.605547pt;}
.x3_c00108{left:50.664000pt;}
.x12_c00108{left:53.506313pt;}
.x57_c00108{left:57.032663pt;}
.x5a_c00108{left:60.178821pt;}
.x4b_c00108{left:63.526245pt;}
.x68_c00108{left:66.249105pt;}
.x79_c00108{left:67.440000pt;}
.x4_c00108{left:68.452000pt;}
.xb_c00108{left:70.462177pt;}
.x7c_c00108{left:71.520000pt;}
.x6c_c00108{left:73.924041pt;}
.x5e_c00108{left:76.441849pt;}
.x13_c00108{left:77.847523pt;}
.x24_c00108{left:80.147195pt;}
.x50_c00108{left:81.527271pt;}
.x36_c00108{left:82.487905pt;}
.x63_c00108{left:84.486795pt;}
.x17_c00108{left:86.286224pt;}
.x4c_c00108{left:88.831747pt;}
.x69_c00108{left:89.750471pt;}
.xc_c00108{left:91.454285pt;}
.x1e_c00108{left:93.658603pt;}
.x65_c00108{left:94.932476pt;}
.x18_c00108{left:97.850775pt;}
.x37_c00108{left:98.747537pt;}
.x25_c00108{left:102.243716pt;}
.x70_c00108{left:103.692603pt;}
.x46_c00108{left:104.832905pt;}
.x42_c00108{left:106.525032pt;}
.x51_c00108{left:110.339257pt;}
.x2b_c00108{left:111.660016pt;}
.x1f_c00108{left:112.881728pt;}
.x6d_c00108{left:114.014565pt;}
.x67_c00108{left:116.090363pt;}
.x5_c00108{left:117.889333pt;}
.x31_c00108{left:119.864741pt;}
.x43_c00108{left:120.932680pt;}
.x71_c00108{left:121.936929pt;}
.x3f_c00108{left:123.990452pt;}
.x5b_c00108{left:126.185632pt;}
.x14_c00108{left:129.708240pt;}
.x6_c00108{left:133.960000pt;}
.x32_c00108{left:136.548143pt;}
.x26_c00108{left:138.261877pt;}
.x55_c00108{left:139.339936pt;}
.x5f_c00108{left:140.294149pt;}
.x52_c00108{left:141.250187pt;}
.x2c_c00108{left:142.631831pt;}
.x73_c00108{left:144.742300pt;}
.x47_c00108{left:146.376924pt;}
.x1_c00108{left:147.360000pt;}
.x20_c00108{left:148.669619pt;}
.x7d_c00108{left:149.760000pt;}
.x74_c00108{left:152.903516pt;}
.xd_c00108{left:154.085276pt;}
.x19_c00108{left:156.639949pt;}
.x27_c00108{left:158.929004pt;}
.x6e_c00108{left:159.866823pt;}
.x33_c00108{left:162.842440pt;}
.xe_c00108{left:166.596801pt;}
.x58_c00108{left:168.875695pt;}
.x48_c00108{left:173.226551pt;}
.x3b_c00108{left:175.715088pt;}
.x1a_c00108{left:178.345296pt;}
.x7_c00108{left:180.944000pt;}
.x44_c00108{left:182.156912pt;}
.x6a_c00108{left:183.629265pt;}
.x7a_c00108{left:186.480000pt;}
.x2d_c00108{left:189.215537pt;}
.x40_c00108{left:190.259027pt;}
.x8_c00108{left:193.006667pt;}
.x76_c00108{left:194.433727pt;}
.x45_c00108{left:195.421832pt;}
.x5c_c00108{left:197.017332pt;}
.x21_c00108{left:198.117279pt;}
.x60_c00108{left:199.366403pt;}
.xf_c00108{left:201.891224pt;}
.x1b_c00108{left:202.838121pt;}
.x34_c00108{left:206.693411pt;}
.x38_c00108{left:208.645023pt;}
.x6f_c00108{left:211.000537pt;}
.x4d_c00108{left:212.351407pt;}
.x53_c00108{left:215.291035pt;}
.x28_c00108{left:217.513020pt;}
.x1c_c00108{left:220.081629pt;}
.x39_c00108{left:221.514049pt;}
.x15_c00108{left:227.118380pt;}
.x3c_c00108{left:228.076421pt;}
.x9_c00108{left:229.080000pt;}
.x4e_c00108{left:233.649092pt;}
.x2e_c00108{left:235.792577pt;}
.x49_c00108{left:237.836947pt;}
.x64_c00108{left:239.567464pt;}
.x22_c00108{left:242.761491pt;}
.x59_c00108{left:245.730692pt;}
.x5d_c00108{left:247.437291pt;}
.x35_c00108{left:248.345960pt;}
.x2f_c00108{left:251.171167pt;}
.x54_c00108{left:253.226945pt;}
.x10_c00108{left:255.192237pt;}
.x4a_c00108{left:259.235048pt;}
.x61_c00108{left:261.740971pt;}
.x29_c00108{left:264.803427pt;}
.x75_c00108{left:266.933140pt;}
.x11_c00108{left:270.013249pt;}
.x3d_c00108{left:271.052421pt;}
.x4f_c00108{left:273.192616pt;}
.x23_c00108{left:275.337749pt;}
.x6b_c00108{left:277.720091pt;}
.x41_c00108{left:278.830056pt;}
.x7b_c00108{left:280.080000pt;}
.x2a_c00108{left:281.151795pt;}
.x1d_c00108{left:282.820765pt;}
.x72_c00108{left:284.940436pt;}
.x30_c00108{left:289.928943pt;}
.x77_c00108{left:291.419668pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00109 {
    display:none;
  }
  .loading-indicator_c00109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00109 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00109 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00109" -> "#page-container .classname_c00109")
 */
.pf_c00109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00109 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00109 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00109 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00109 {overflow:visible;}
  }
}
.c_c00109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00109 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00109:after { /* webkit #35443 */
  content: '';
}
.t_c00109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00109 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00109 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00109 { /* info for Javascript */
  display:none;
}
.l_c00109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00109:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00109 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00109.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c00109{transform:matrix(0.118465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118465,0.000000,0.000000,0.250000,0,0);}
.m42_c00109{transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);}
.mbf_c00109{transform:matrix(0.137540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137540,0.000000,0.000000,0.250000,0,0);}
.m6b_c00109{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.140282,-0.001543,0.002750,0.249985,0,0);-ms-transform:matrix(0.140282,-0.001543,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140282,-0.001543,0.002750,0.249985,0,0);}
.mc7_c00109{transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);}
.m76_c00109{transform:matrix(0.141315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00109{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.mde_c00109{transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00109{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.m6e_c00109{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m57_c00109{transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);}
.m3b_c00109{transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.149376,-0.001643,0.002750,0.249985,0,0);-ms-transform:matrix(0.149376,-0.001643,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149376,-0.001643,0.002750,0.249985,0,0);}
.m4_c00109{transform:matrix(0.149581,-0.001645,0.002750,0.249985,0,0);-ms-transform:matrix(0.149581,-0.001645,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149581,-0.001645,0.002750,0.249985,0,0);}
.m3c_c00109{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m7d_c00109{transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);}
.mdb_c00109{transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);}
.m8e_c00109{transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);}
.m8b_c00109{transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);}
.mc0_c00109{transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);}
.md0_c00109{transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);}
.m56_c00109{transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);}
.m47_c00109{transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);}
.m25_c00109{transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);}
.mae_c00109{transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00109{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m86_c00109{transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);}
.mac_c00109{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.m44_c00109{transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);}
.m8a_c00109{transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);}
.mad_c00109{transform:matrix(0.158880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00109{transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);}
.m88_c00109{transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);}
.me0_c00109{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m95_c00109{transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);}
.m53_c00109{transform:matrix(0.160785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160785,0.000000,0.000000,0.250000,0,0);}
.mbd_c00109{transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);}
.m5e_c00109{transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);}
.m68_c00109{transform:matrix(0.161280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161280,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.m2e_c00109{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.mc3_c00109{transform:matrix(0.161915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00109{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.mdd_c00109{transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);}
.mc8_c00109{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m9e_c00109{transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);}
.m71_c00109{transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);}
.m50_c00109{transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);}
.mbe_c00109{transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);}
.mce_c00109{transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);}
.mca_c00109{transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);}
.m9a_c00109{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m79_c00109{transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);}
.m20_c00109{transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);}
.md1_c00109{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.m3f_c00109{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m69_c00109{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m99_c00109{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);}
.ma3_c00109{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.mdc_c00109{transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);}
.m6f_c00109{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m58_c00109{transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.m6c_c00109{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.mdf_c00109{transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);}
.m67_c00109{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.mb3_c00109{transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);}
.mec_c00109{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.m6a_c00109{transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);}
.m70_c00109{transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);}
.m66_c00109{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00109{transform:matrix(0.174670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174670,0.000000,0.000000,0.250000,0,0);}
.md6_c00109{transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.mb8_c00109{transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);}
.m3d_c00109{transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00109{transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);}
.mcd_c00109{transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.177579,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177579,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177579,-0.001953,0.002750,0.249985,0,0);}
.m5a_c00109{transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);}
.m98_c00109{transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);}
.mc1_c00109{transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);}
.m90_c00109{transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);}
.m43_c00109{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.180044,-0.001980,0.002750,0.249985,0,0);-ms-transform:matrix(0.180044,-0.001980,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180044,-0.001980,0.002750,0.249985,0,0);}
.m77_c00109{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m41_c00109{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.ma1_c00109{transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00109{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.me6_c00109{transform:matrix(0.180902,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180902,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180902,-0.002171,0.003000,0.249982,0,0);}
.m75_c00109{transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);}
.m59_c00109{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m63_c00109{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m33_c00109{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.m28_c00109{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);-ms-transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182639,-0.002009,0.002750,0.249985,0,0);}
.m8d_c00109{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mee_c00109{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00109{transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);}
.ma9_c00109{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);}
.m39_c00109{transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);}
.maa_c00109{transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);}
.me7_c00109{transform:matrix(0.185627,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185627,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185627,-0.002228,0.003000,0.249982,0,0);}
.m9b_c00109{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.m7e_c00109{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.m65_c00109{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m29_c00109{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.mb5_c00109{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m31_c00109{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.m72_c00109{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.mc5_c00109{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.mb9_c00109{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.me9_c00109{transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);}
.m73_c00109{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m61_c00109{transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);}
.meb_c00109{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00109{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m40_c00109{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m36_c00109{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mab_c00109{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m91_c00109{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.mbb_c00109{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m78_c00109{transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);}
.m7f_c00109{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m52_c00109{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m34_c00109{transform:matrix(0.193930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193930,0.000000,0.000000,0.250000,0,0);}
.m9d_c00109{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m3a_c00109{transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);}
.md4_c00109{transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);}
.m93_c00109{transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);}
.m60_c00109{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.med_c00109{transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);}
.m80_c00109{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m62_c00109{transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.ma2_c00109{transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);}
.m9c_c00109{transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);}
.m4d_c00109{transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);}
.mba_c00109{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m89_c00109{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.mb7_c00109{transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00109{transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);}
.ma0_c00109{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.m55_c00109{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.m64_c00109{transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);}
.m9f_c00109{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m26_c00109{transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);}
.m97_c00109{transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);}
.ma4_c00109{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.md2_c00109{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00109{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.md5_c00109{transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);}
.mcb_c00109{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m7a_c00109{transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);}
.m92_c00109{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00109{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m4c_c00109{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m74_c00109{transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);}
.m14_c00109{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m22_c00109{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m81_c00109{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.mb1_c00109{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.m16_c00109{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00109{transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);}
.mb2_c00109{transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);}
.m94_c00109{transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);}
.m51_c00109{transform:matrix(0.213365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213365,0.000000,0.000000,0.250000,0,0);}
.md7_c00109{transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);}
.me4_c00109{transform:matrix(0.214015,-0.002568,0.003000,0.249982,0,0);-ms-transform:matrix(0.214015,-0.002568,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214015,-0.002568,0.003000,0.249982,0,0);}
.mc6_c00109{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.mb4_c00109{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.md9_c00109{transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);}
.m46_c00109{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.m82_c00109{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.m96_c00109{transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);}
.me8_c00109{transform:matrix(0.217909,-0.002615,0.003000,0.249982,0,0);-ms-transform:matrix(0.217909,-0.002615,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217909,-0.002615,0.003000,0.249982,0,0);}
.ma7_c00109{transform:matrix(0.218105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218105,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.218627,-0.002405,0.002750,0.249985,0,0);-ms-transform:matrix(0.218627,-0.002405,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218627,-0.002405,0.002750,0.249985,0,0);}
.mb6_c00109{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m30_c00109{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.mcf_c00109{transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);}
.me5_c00109{transform:matrix(0.220549,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220549,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220549,-0.002647,0.003000,0.249982,0,0);}
.ma6_c00109{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.m27_c00109{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.m45_c00109{transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);}
.m7c_c00109{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.me2_c00109{transform:matrix(0.222984,-0.002676,0.003000,0.249982,0,0);-ms-transform:matrix(0.222984,-0.002676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222984,-0.002676,0.003000,0.249982,0,0);}
.me1_c00109{transform:matrix(0.226494,-0.002718,0.003000,0.249982,0,0);-ms-transform:matrix(0.226494,-0.002718,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226494,-0.002718,0.003000,0.249982,0,0);}
.m84_c00109{transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);}
.mef_c00109{transform:matrix(0.230065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230065,0.000000,0.000000,0.250000,0,0);}
.m7b_c00109{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.231096,-0.002542,0.002750,0.249985,0,0);-ms-transform:matrix(0.231096,-0.002542,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231096,-0.002542,0.002750,0.249985,0,0);}
.m3e_c00109{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m8f_c00109{transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);}
.m83_c00109{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00109{transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240355,0.000000,0.000000,0.250000,0,0);}
.m2b_c00109{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.me3_c00109{transform:matrix(0.243117,-0.002917,0.003000,0.249982,0,0);-ms-transform:matrix(0.243117,-0.002917,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243117,-0.002917,0.003000,0.249982,0,0);}
.mb_c00109{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00109{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00109{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.258725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00109{transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);}
.md3_c00109{transform:matrix(0.265905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265905,0.000000,0.000000,0.250000,0,0);}
.m4b_c00109{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m54_c00109{transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);}
.mb0_c00109{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.280038,-0.003080,0.002750,0.249985,0,0);-ms-transform:matrix(0.280038,-0.003080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280038,-0.003080,0.002750,0.249985,0,0);}
.m87_c00109{transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);}
.maf_c00109{transform:matrix(0.287305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287305,0.000000,0.000000,0.250000,0,0);}
.m49_c00109{transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);}
.mea_c00109{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.mda_c00109{transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);}
.m4a_c00109{transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);}
.m38_c00109{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.md8_c00109{transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);}
.m85_c00109{transform:matrix(0.342510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342510,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.424660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424660,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.433600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433600,0.000000,0.000000,0.250000,0,0);}
.m35_c00109{transform:matrix(0.538445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538445,0.000000,0.000000,0.250000,0,0);}
.m37_c00109{transform:matrix(0.548615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548615,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:0.000000px;}
._0_c00109{margin-left:-22.919965px;}
.fc0_c00109{color:transparent;}
.fs9_c00109{font-size:61.950000px;}
.fse_c00109{font-size:61.954460px;}
.fs3_c00109{font-size:63.000000px;}
.fsa_c00109{font-size:64.050000px;}
.fsc_c00109{font-size:65.100000px;}
.fs7_c00109{font-size:67.200000px;}
.fs0_c00109{font-size:68.250000px;}
.fs4_c00109{font-size:69.300000px;}
.fs8_c00109{font-size:70.350000px;}
.fs5_c00109{font-size:71.400000px;}
.fs2_c00109{font-size:72.450000px;}
.fs6_c00109{font-size:73.500000px;}
.fs1_c00109{font-size:74.554510px;}
.fsd_c00109{font-size:76.650000px;}
.fsb_c00109{font-size:78.750000px;}
.y0_c00109{bottom:0.000000px;}
.y3b_c00109{bottom:22.602000px;}
.y33_c00109{bottom:40.501500px;}
.y34_c00109{bottom:40.867746px;}
.y35_c00109{bottom:41.739162px;}
.y36_c00109{bottom:42.523152px;}
.y37_c00109{bottom:42.779058px;}
.y38_c00109{bottom:43.329156px;}
.y39_c00109{bottom:43.579428px;}
.y3a_c00109{bottom:43.786932px;}
.y32_c00109{bottom:59.314500px;}
.y2c_c00109{bottom:76.413000px;}
.y2d_c00109{bottom:77.761500px;}
.y2e_c00109{bottom:78.153000px;}
.y2f_c00109{bottom:78.616500px;}
.y30_c00109{bottom:78.862500px;}
.y31_c00109{bottom:79.353000px;}
.y2b_c00109{bottom:94.188000px;}
.y2a_c00109{bottom:111.765000px;}
.y29_c00109{bottom:129.198000px;}
.y28_c00109{bottom:146.763000px;}
.y27_c00109{bottom:165.594000px;}
.y26_c00109{bottom:183.205500px;}
.y25_c00109{bottom:200.575500px;}
.y24_c00109{bottom:218.553000px;}
.y23_c00109{bottom:236.722500px;}
.y22_c00109{bottom:254.070000px;}
.y21_c00109{bottom:271.587000px;}
.y20_c00109{bottom:289.323000px;}
.y1f_c00109{bottom:306.484500px;}
.y1e_c00109{bottom:323.865000px;}
.y1d_c00109{bottom:341.887500px;}
.y1c_c00109{bottom:359.827500px;}
.y1b_c00109{bottom:376.921500px;}
.y1a_c00109{bottom:395.044500px;}
.y19_c00109{bottom:412.746000px;}
.y18_c00109{bottom:430.381500px;}
.y17_c00109{bottom:447.661500px;}
.y16_c00109{bottom:465.060000px;}
.y15_c00109{bottom:482.340000px;}
.y14_c00109{bottom:499.804500px;}
.y13_c00109{bottom:517.558500px;}
.yc_c00109{bottom:532.441500px;}
.yd_c00109{bottom:533.220000px;}
.ye_c00109{bottom:533.433000px;}
.yf_c00109{bottom:533.994000px;}
.y10_c00109{bottom:534.219000px;}
.y11_c00109{bottom:534.499500px;}
.y12_c00109{bottom:535.290000px;}
.yb_c00109{bottom:551.271000px;}
.y2_c00109{bottom:567.271500px;}
.y3_c00109{bottom:567.548057px;}
.y4_c00109{bottom:567.925065px;}
.y5_c00109{bottom:568.471545px;}
.y6_c00109{bottom:569.101119px;}
.y7_c00109{bottom:569.380052px;}
.y8_c00109{bottom:569.635719px;}
.y9_c00109{bottom:570.164346px;}
.ya_c00109{bottom:570.380628px;}
.y1_c00109{bottom:586.170000px;}
.ha_c00109{height:61.950000px;}
.hf_c00109{height:61.954460px;}
.h4_c00109{height:63.000000px;}
.hb_c00109{height:64.050000px;}
.hd_c00109{height:65.100000px;}
.h8_c00109{height:67.200000px;}
.h1_c00109{height:68.250000px;}
.h5_c00109{height:69.300000px;}
.h9_c00109{height:70.350000px;}
.h6_c00109{height:71.400000px;}
.h3_c00109{height:72.450000px;}
.h7_c00109{height:73.500000px;}
.h2_c00109{height:74.554510px;}
.he_c00109{height:76.650000px;}
.hc_c00109{height:78.750000px;}
.h0_c00109{height:634.500000px;}
.w0_c00109{width:371.790000px;}
.w1_c00109{width:372.000000px;}
.x0_c00109{left:0.000000px;}
.x17_c00109{left:43.471500px;}
.x2_c00109{left:44.701500px;}
.x50_c00109{left:45.901500px;}
.x76_c00109{left:47.520000px;}
.x5b_c00109{left:55.620000px;}
.xb_c00109{left:57.510000px;}
.x46_c00109{left:61.831500px;}
.x3b_c00109{left:65.341500px;}
.x3_c00109{left:69.843000px;}
.x31_c00109{left:72.091500px;}
.x51_c00109{left:77.221500px;}
.x2c_c00109{left:78.571500px;}
.x36_c00109{left:80.191500px;}
.x5f_c00109{left:82.080000px;}
.x48_c00109{left:88.021500px;}
.x3c_c00109{left:89.101500px;}
.x18_c00109{left:91.801500px;}
.x77_c00109{left:95.580000px;}
.x29_c00109{left:98.551500px;}
.x60_c00109{left:100.710000px;}
.x4_c00109{left:104.116500px;}
.x52_c00109{left:110.431500px;}
.x78_c00109{left:111.780000px;}
.xc_c00109{left:112.860000px;}
.x12_c00109{left:114.943500px;}
.x66_c00109{left:117.990000px;}
.x5c_c00109{left:120.960000px;}
.x6d_c00109{left:122.580000px;}
.x4d_c00109{left:124.201500px;}
.x32_c00109{left:125.281500px;}
.x2d_c00109{left:129.061500px;}
.x27_c00109{left:130.951500px;}
.x56_c00109{left:132.031500px;}
.x19_c00109{left:133.381500px;}
.xd_c00109{left:134.730000px;}
.x6e_c00109{left:136.350000px;}
.x2e_c00109{left:141.751500px;}
.x3d_c00109{left:145.531500px;}
.x1a_c00109{left:146.611500px;}
.x64_c00109{left:148.230000px;}
.x33_c00109{left:150.931500px;}
.x69_c00109{left:152.550000px;}
.x5_c00109{left:153.796500px;}
.x71_c00109{left:157.140000px;}
.x53_c00109{left:162.001500px;}
.x59_c00109{left:165.781500px;}
.x1b_c00109{left:167.671500px;}
.x74_c00109{left:169.108500px;}
.x37_c00109{left:170.911500px;}
.x7b_c00109{left:173.610000px;}
.x21_c00109{left:174.961500px;}
.x3f_c00109{left:176.851500px;}
.x49_c00109{left:178.741500px;}
.x5d_c00109{left:180.090000px;}
.x57_c00109{left:182.521500px;}
.x1_c00109{left:183.870000px;}
.x13_c00109{left:185.358000px;}
.xe_c00109{left:188.730000px;}
.x61_c00109{left:191.430000px;}
.x38_c00109{left:192.511500px;}
.x79_c00109{left:193.860000px;}
.x40_c00109{left:195.211500px;}
.x2a_c00109{left:197.911500px;}
.x44_c00109{left:199.531500px;}
.x47_c00109{left:200.611500px;}
.x75_c00109{left:204.732000px;}
.x14_c00109{left:205.822500px;}
.x54_c00109{left:207.631500px;}
.x6_c00109{left:211.030500px;}
.x41_c00109{left:213.571500px;}
.x22_c00109{left:217.081500px;}
.x34_c00109{left:223.291500px;}
.x67_c00109{left:224.910000px;}
.x1c_c00109{left:225.991500px;}
.x5a_c00109{left:227.611500px;}
.x15_c00109{left:231.265500px;}
.x39_c00109{left:233.281500px;}
.xf_c00109{left:235.170000px;}
.x7_c00109{left:236.388000px;}
.x7a_c00109{left:237.754500px;}
.x45_c00109{left:239.221500px;}
.x6f_c00109{left:244.620000px;}
.x65_c00109{left:247.590000px;}
.x62_c00109{left:248.940000px;}
.x1d_c00109{left:252.721500px;}
.x4a_c00109{left:254.071500px;}
.x72_c00109{left:255.690000px;}
.x23_c00109{left:257.851500px;}
.x8_c00109{left:259.630500px;}
.x6a_c00109{left:261.630000px;}
.x42_c00109{left:264.331500px;}
.x1e_c00109{left:266.761500px;}
.x4b_c00109{left:268.111500px;}
.x63_c00109{left:269.460000px;}
.x70_c00109{left:270.540000px;}
.x73_c00109{left:274.590000px;}
.x4e_c00109{left:277.561500px;}
.x2b_c00109{left:279.991500px;}
.x68_c00109{left:281.610000px;}
.x43_c00109{left:282.961500px;}
.x24_c00109{left:284.041500px;}
.x2f_c00109{left:285.391500px;}
.x3e_c00109{left:289.711500px;}
.x1f_c00109{left:291.331500px;}
.x58_c00109{left:294.031500px;}
.x25_c00109{left:297.271500px;}
.x4f_c00109{left:299.431500px;}
.x16_c00109{left:303.085500px;}
.x35_c00109{left:304.831500px;}
.x3a_c00109{left:305.911500px;}
.x9_c00109{left:307.687500px;}
.x28_c00109{left:310.771500px;}
.x6b_c00109{left:312.120000px;}
.x26_c00109{left:313.471500px;}
.x4c_c00109{left:315.361500px;}
.x10_c00109{left:317.250000px;}
.x55_c00109{left:322.381500px;}
.x30_c00109{left:325.621500px;}
.xa_c00109{left:327.349500px;}
.x6c_c00109{left:330.210000px;}
.x11_c00109{left:331.830000px;}
.x20_c00109{left:335.071500px;}
.x5e_c00109{left:340.740000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
._0_c00109{margin-left:-20.373302pt;}
.fs9_c00109{font-size:55.066667pt;}
.fse_c00109{font-size:55.070631pt;}
.fs3_c00109{font-size:56.000000pt;}
.fsa_c00109{font-size:56.933333pt;}
.fsc_c00109{font-size:57.866667pt;}
.fs7_c00109{font-size:59.733333pt;}
.fs0_c00109{font-size:60.666667pt;}
.fs4_c00109{font-size:61.600000pt;}
.fs8_c00109{font-size:62.533333pt;}
.fs5_c00109{font-size:63.466667pt;}
.fs2_c00109{font-size:64.400000pt;}
.fs6_c00109{font-size:65.333333pt;}
.fs1_c00109{font-size:66.270676pt;}
.fsd_c00109{font-size:68.133333pt;}
.fsb_c00109{font-size:70.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y3b_c00109{bottom:20.090667pt;}
.y33_c00109{bottom:36.001333pt;}
.y34_c00109{bottom:36.326885pt;}
.y35_c00109{bottom:37.101477pt;}
.y36_c00109{bottom:37.798357pt;}
.y37_c00109{bottom:38.025829pt;}
.y38_c00109{bottom:38.514805pt;}
.y39_c00109{bottom:38.737269pt;}
.y3a_c00109{bottom:38.921717pt;}
.y32_c00109{bottom:52.724000pt;}
.y2c_c00109{bottom:67.922667pt;}
.y2d_c00109{bottom:69.121333pt;}
.y2e_c00109{bottom:69.469333pt;}
.y2f_c00109{bottom:69.881333pt;}
.y30_c00109{bottom:70.100000pt;}
.y31_c00109{bottom:70.536000pt;}
.y2b_c00109{bottom:83.722667pt;}
.y2a_c00109{bottom:99.346667pt;}
.y29_c00109{bottom:114.842667pt;}
.y28_c00109{bottom:130.456000pt;}
.y27_c00109{bottom:147.194667pt;}
.y26_c00109{bottom:162.849333pt;}
.y25_c00109{bottom:178.289333pt;}
.y24_c00109{bottom:194.269333pt;}
.y23_c00109{bottom:210.420000pt;}
.y22_c00109{bottom:225.840000pt;}
.y21_c00109{bottom:241.410667pt;}
.y20_c00109{bottom:257.176000pt;}
.y1f_c00109{bottom:272.430667pt;}
.y1e_c00109{bottom:287.880000pt;}
.y1d_c00109{bottom:303.900000pt;}
.y1c_c00109{bottom:319.846667pt;}
.y1b_c00109{bottom:335.041333pt;}
.y1a_c00109{bottom:351.150667pt;}
.y19_c00109{bottom:366.885333pt;}
.y18_c00109{bottom:382.561333pt;}
.y17_c00109{bottom:397.921333pt;}
.y16_c00109{bottom:413.386667pt;}
.y15_c00109{bottom:428.746667pt;}
.y14_c00109{bottom:444.270667pt;}
.y13_c00109{bottom:460.052000pt;}
.yc_c00109{bottom:473.281333pt;}
.yd_c00109{bottom:473.973333pt;}
.ye_c00109{bottom:474.162667pt;}
.yf_c00109{bottom:474.661333pt;}
.y10_c00109{bottom:474.861333pt;}
.y11_c00109{bottom:475.110667pt;}
.y12_c00109{bottom:475.813333pt;}
.yb_c00109{bottom:490.018667pt;}
.y2_c00109{bottom:504.241333pt;}
.y3_c00109{bottom:504.487161pt;}
.y4_c00109{bottom:504.822280pt;}
.y5_c00109{bottom:505.308040pt;}
.y6_c00109{bottom:505.867661pt;}
.y7_c00109{bottom:506.115601pt;}
.y8_c00109{bottom:506.342861pt;}
.y9_c00109{bottom:506.812752pt;}
.ya_c00109{bottom:507.005003pt;}
.y1_c00109{bottom:521.040000pt;}
.ha_c00109{height:55.066667pt;}
.hf_c00109{height:55.070631pt;}
.h4_c00109{height:56.000000pt;}
.hb_c00109{height:56.933333pt;}
.hd_c00109{height:57.866667pt;}
.h8_c00109{height:59.733333pt;}
.h1_c00109{height:60.666667pt;}
.h5_c00109{height:61.600000pt;}
.h9_c00109{height:62.533333pt;}
.h6_c00109{height:63.466667pt;}
.h3_c00109{height:64.400000pt;}
.h7_c00109{height:65.333333pt;}
.h2_c00109{height:66.270676pt;}
.he_c00109{height:68.133333pt;}
.hc_c00109{height:70.000000pt;}
.h0_c00109{height:564.000000pt;}
.w0_c00109{width:330.480000pt;}
.w1_c00109{width:330.666667pt;}
.x0_c00109{left:0.000000pt;}
.x17_c00109{left:38.641333pt;}
.x2_c00109{left:39.734667pt;}
.x50_c00109{left:40.801333pt;}
.x76_c00109{left:42.240000pt;}
.x5b_c00109{left:49.440000pt;}
.xb_c00109{left:51.120000pt;}
.x46_c00109{left:54.961333pt;}
.x3b_c00109{left:58.081333pt;}
.x3_c00109{left:62.082667pt;}
.x31_c00109{left:64.081333pt;}
.x51_c00109{left:68.641333pt;}
.x2c_c00109{left:69.841333pt;}
.x36_c00109{left:71.281333pt;}
.x5f_c00109{left:72.960000pt;}
.x48_c00109{left:78.241333pt;}
.x3c_c00109{left:79.201333pt;}
.x18_c00109{left:81.601333pt;}
.x77_c00109{left:84.960000pt;}
.x29_c00109{left:87.601333pt;}
.x60_c00109{left:89.520000pt;}
.x4_c00109{left:92.548000pt;}
.x52_c00109{left:98.161333pt;}
.x78_c00109{left:99.360000pt;}
.xc_c00109{left:100.320000pt;}
.x12_c00109{left:102.172000pt;}
.x66_c00109{left:104.880000pt;}
.x5c_c00109{left:107.520000pt;}
.x6d_c00109{left:108.960000pt;}
.x4d_c00109{left:110.401333pt;}
.x32_c00109{left:111.361333pt;}
.x2d_c00109{left:114.721333pt;}
.x27_c00109{left:116.401333pt;}
.x56_c00109{left:117.361333pt;}
.x19_c00109{left:118.561333pt;}
.xd_c00109{left:119.760000pt;}
.x6e_c00109{left:121.200000pt;}
.x2e_c00109{left:126.001333pt;}
.x3d_c00109{left:129.361333pt;}
.x1a_c00109{left:130.321333pt;}
.x64_c00109{left:131.760000pt;}
.x33_c00109{left:134.161333pt;}
.x69_c00109{left:135.600000pt;}
.x5_c00109{left:136.708000pt;}
.x71_c00109{left:139.680000pt;}
.x53_c00109{left:144.001333pt;}
.x59_c00109{left:147.361333pt;}
.x1b_c00109{left:149.041333pt;}
.x74_c00109{left:150.318667pt;}
.x37_c00109{left:151.921333pt;}
.x7b_c00109{left:154.320000pt;}
.x21_c00109{left:155.521333pt;}
.x3f_c00109{left:157.201333pt;}
.x49_c00109{left:158.881333pt;}
.x5d_c00109{left:160.080000pt;}
.x57_c00109{left:162.241333pt;}
.x1_c00109{left:163.440000pt;}
.x13_c00109{left:164.762667pt;}
.xe_c00109{left:167.760000pt;}
.x61_c00109{left:170.160000pt;}
.x38_c00109{left:171.121333pt;}
.x79_c00109{left:172.320000pt;}
.x40_c00109{left:173.521333pt;}
.x2a_c00109{left:175.921333pt;}
.x44_c00109{left:177.361333pt;}
.x47_c00109{left:178.321333pt;}
.x75_c00109{left:181.984000pt;}
.x14_c00109{left:182.953333pt;}
.x54_c00109{left:184.561333pt;}
.x6_c00109{left:187.582667pt;}
.x41_c00109{left:189.841333pt;}
.x22_c00109{left:192.961333pt;}
.x34_c00109{left:198.481333pt;}
.x67_c00109{left:199.920000pt;}
.x1c_c00109{left:200.881333pt;}
.x5a_c00109{left:202.321333pt;}
.x15_c00109{left:205.569333pt;}
.x39_c00109{left:207.361333pt;}
.xf_c00109{left:209.040000pt;}
.x7_c00109{left:210.122667pt;}
.x7a_c00109{left:211.337333pt;}
.x45_c00109{left:212.641333pt;}
.x6f_c00109{left:217.440000pt;}
.x65_c00109{left:220.080000pt;}
.x62_c00109{left:221.280000pt;}
.x1d_c00109{left:224.641333pt;}
.x4a_c00109{left:225.841333pt;}
.x72_c00109{left:227.280000pt;}
.x23_c00109{left:229.201333pt;}
.x8_c00109{left:230.782667pt;}
.x6a_c00109{left:232.560000pt;}
.x42_c00109{left:234.961333pt;}
.x1e_c00109{left:237.121333pt;}
.x4b_c00109{left:238.321333pt;}
.x63_c00109{left:239.520000pt;}
.x70_c00109{left:240.480000pt;}
.x73_c00109{left:244.080000pt;}
.x4e_c00109{left:246.721333pt;}
.x2b_c00109{left:248.881333pt;}
.x68_c00109{left:250.320000pt;}
.x43_c00109{left:251.521333pt;}
.x24_c00109{left:252.481333pt;}
.x2f_c00109{left:253.681333pt;}
.x3e_c00109{left:257.521333pt;}
.x1f_c00109{left:258.961333pt;}
.x58_c00109{left:261.361333pt;}
.x25_c00109{left:264.241333pt;}
.x4f_c00109{left:266.161333pt;}
.x16_c00109{left:269.409333pt;}
.x35_c00109{left:270.961333pt;}
.x3a_c00109{left:271.921333pt;}
.x9_c00109{left:273.500000pt;}
.x28_c00109{left:276.241333pt;}
.x6b_c00109{left:277.440000pt;}
.x26_c00109{left:278.641333pt;}
.x4c_c00109{left:280.321333pt;}
.x10_c00109{left:282.000000pt;}
.x55_c00109{left:286.561333pt;}
.x30_c00109{left:289.441333pt;}
.xa_c00109{left:290.977333pt;}
.x6c_c00109{left:293.520000pt;}
.x11_c00109{left:294.960000pt;}
.x20_c00109{left:297.841333pt;}
.x5e_c00109{left:302.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00110 {
    display:none;
  }
  .loading-indicator_c00110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00110 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00110 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00110" -> "#page-container .classname_c00110")
 */
.pf_c00110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00110 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00110 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00110 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00110 {overflow:visible;}
  }
}
.c_c00110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00110 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00110:after { /* webkit #35443 */
  content: '';
}
.t_c00110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00110 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00110 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00110 { /* info for Javascript */
  display:none;
}
.l_c00110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00110:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00110 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00110.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00110;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c00110{transform:matrix(0.050137,-0.001504,0.007497,0.249888,0,0);-ms-transform:matrix(0.050137,-0.001504,0.007497,0.249888,0,0);-webkit-transform:matrix(0.050137,-0.001504,0.007497,0.249888,0,0);}
.m67_c00110{transform:matrix(0.063586,-0.001908,0.007497,0.249888,0,0);-ms-transform:matrix(0.063586,-0.001908,0.007497,0.249888,0,0);-webkit-transform:matrix(0.063586,-0.001908,0.007497,0.249888,0,0);}
.m81_c00110{transform:matrix(0.083650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083650,0.000000,0.000000,0.250000,0,0);}
.m80_c00110{transform:matrix(0.088670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088670,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{transform:matrix(0.088935,-0.002668,0.007497,0.249888,0,0);-ms-transform:matrix(0.088935,-0.002668,0.007497,0.249888,0,0);-webkit-transform:matrix(0.088935,-0.002668,0.007497,0.249888,0,0);}
.mb7_c00110{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(0.144368,-0.004042,0.006997,0.249902,0,0);-ms-transform:matrix(0.144368,-0.004042,0.006997,0.249902,0,0);-webkit-transform:matrix(0.144368,-0.004042,0.006997,0.249902,0,0);}
.md8_c00110{transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{transform:matrix(0.149233,-0.004477,0.007497,0.249888,0,0);-ms-transform:matrix(0.149233,-0.004477,0.007497,0.249888,0,0);-webkit-transform:matrix(0.149233,-0.004477,0.007497,0.249888,0,0);}
.m3a_c00110{transform:matrix(0.150692,-0.004521,0.007497,0.249888,0,0);-ms-transform:matrix(0.150692,-0.004521,0.007497,0.249888,0,0);-webkit-transform:matrix(0.150692,-0.004521,0.007497,0.249888,0,0);}
.m45_c00110{transform:matrix(0.152981,-0.004589,0.007497,0.249888,0,0);-ms-transform:matrix(0.152981,-0.004589,0.007497,0.249888,0,0);-webkit-transform:matrix(0.152981,-0.004589,0.007497,0.249888,0,0);}
.m96_c00110{transform:matrix(0.153695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153695,0.000000,0.000000,0.250000,0,0);}
.meb_c00110{transform:matrix(0.153884,-0.001847,0.003000,0.249982,0,0);-ms-transform:matrix(0.153884,-0.001847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153884,-0.001847,0.003000,0.249982,0,0);}
.mee_c00110{transform:matrix(0.155209,-0.001863,0.003000,0.249982,0,0);-ms-transform:matrix(0.155209,-0.001863,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155209,-0.001863,0.003000,0.249982,0,0);}
.mb5_c00110{transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.155613,-0.004202,0.006748,0.249909,0,0);-ms-transform:matrix(0.155613,-0.004202,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155613,-0.004202,0.006748,0.249909,0,0);}
.m9_c00110{transform:matrix(0.156858,-0.004235,0.006748,0.249909,0,0);-ms-transform:matrix(0.156858,-0.004235,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156858,-0.004235,0.006748,0.249909,0,0);}
.mac_c00110{transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);}
.mdd_c00110{transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);}
.m16_c00110{transform:matrix(0.159252,-0.004300,0.006748,0.249909,0,0);-ms-transform:matrix(0.159252,-0.004300,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159252,-0.004300,0.006748,0.249909,0,0);}
.m43_c00110{transform:matrix(0.159723,-0.004792,0.007497,0.249888,0,0);-ms-transform:matrix(0.159723,-0.004792,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159723,-0.004792,0.007497,0.249888,0,0);}
.m87_c00110{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.mdf_c00110{transform:matrix(0.161455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161455,0.000000,0.000000,0.250000,0,0);}
.m7e_c00110{transform:matrix(0.161702,-0.004851,0.007497,0.249888,0,0);-ms-transform:matrix(0.161702,-0.004851,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161702,-0.004851,0.007497,0.249888,0,0);}
.me3_c00110{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.m52_c00110{transform:matrix(0.162917,-0.004888,0.007497,0.249888,0,0);-ms-transform:matrix(0.162917,-0.004888,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162917,-0.004888,0.007497,0.249888,0,0);}
.mf2_c00110{transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);-ms-transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);}
.m2a_c00110{transform:matrix(0.164131,-0.004924,0.007497,0.249888,0,0);-ms-transform:matrix(0.164131,-0.004924,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164131,-0.004924,0.007497,0.249888,0,0);}
.m2d_c00110{transform:matrix(0.164596,-0.004938,0.007497,0.249888,0,0);-ms-transform:matrix(0.164596,-0.004938,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164596,-0.004938,0.007497,0.249888,0,0);}
.m2e_c00110{transform:matrix(0.164751,-0.004943,0.007497,0.249888,0,0);-ms-transform:matrix(0.164751,-0.004943,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164751,-0.004943,0.007497,0.249888,0,0);}
.m1c_c00110{transform:matrix(0.164875,-0.004617,0.006997,0.249902,0,0);-ms-transform:matrix(0.164875,-0.004617,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164875,-0.004617,0.006997,0.249902,0,0);}
.m89_c00110{transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);}
.m20_c00110{transform:matrix(0.165685,-0.004639,0.006997,0.249902,0,0);-ms-transform:matrix(0.165685,-0.004639,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165685,-0.004639,0.006997,0.249902,0,0);}
.m1b_c00110{transform:matrix(0.165835,-0.004643,0.006997,0.249902,0,0);-ms-transform:matrix(0.165835,-0.004643,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165835,-0.004643,0.006997,0.249902,0,0);}
.m46_c00110{transform:matrix(0.166125,-0.004984,0.007497,0.249888,0,0);-ms-transform:matrix(0.166125,-0.004984,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166125,-0.004984,0.007497,0.249888,0,0);}
.m8f_c00110{transform:matrix(0.166322,-0.001663,0.002500,0.249988,0,0);-ms-transform:matrix(0.166322,-0.001663,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166322,-0.001663,0.002500,0.249988,0,0);}
.m8b_c00110{transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);}
.mef_c00110{transform:matrix(0.166673,-0.002000,0.003000,0.249982,0,0);-ms-transform:matrix(0.166673,-0.002000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166673,-0.002000,0.003000,0.249982,0,0);}
.md_c00110{transform:matrix(0.166874,-0.004506,0.006748,0.249909,0,0);-ms-transform:matrix(0.166874,-0.004506,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166874,-0.004506,0.006748,0.249909,0,0);}
.md1_c00110{transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00110{transform:matrix(0.167564,-0.004692,0.006997,0.249902,0,0);-ms-transform:matrix(0.167564,-0.004692,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167564,-0.004692,0.006997,0.249902,0,0);}
.ma0_c00110{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.168768,-0.004557,0.006748,0.249909,0,0);-ms-transform:matrix(0.168768,-0.004557,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168768,-0.004557,0.006748,0.249909,0,0);}
.me0_c00110{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.med_c00110{transform:matrix(0.170153,-0.002042,0.003000,0.249982,0,0);-ms-transform:matrix(0.170153,-0.002042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170153,-0.002042,0.003000,0.249982,0,0);}
.m95_c00110{transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);}
.m7d_c00110{transform:matrix(0.170213,-0.005106,0.007497,0.249888,0,0);-ms-transform:matrix(0.170213,-0.005106,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170213,-0.005106,0.007497,0.249888,0,0);}
.mb_c00110{transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);-ms-transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);}
.ma_c00110{transform:matrix(0.172232,-0.004650,0.006748,0.249909,0,0);-ms-transform:matrix(0.172232,-0.004650,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172232,-0.004650,0.006748,0.249909,0,0);}
.mc7_c00110{transform:matrix(0.172590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172590,0.000000,0.000000,0.250000,0,0);}
.m64_c00110{transform:matrix(0.173112,-0.005193,0.007497,0.249888,0,0);-ms-transform:matrix(0.173112,-0.005193,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173112,-0.005193,0.007497,0.249888,0,0);}
.m9f_c00110{transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);}
.ma5_c00110{transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);}
.m3b_c00110{transform:matrix(0.173277,-0.005198,0.007497,0.249888,0,0);-ms-transform:matrix(0.173277,-0.005198,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173277,-0.005198,0.007497,0.249888,0,0);}
.m49_c00110{transform:matrix(0.173782,-0.005213,0.007497,0.249888,0,0);-ms-transform:matrix(0.173782,-0.005213,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173782,-0.005213,0.007497,0.249888,0,0);}
.m85_c00110{transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);}
.m3e_c00110{transform:matrix(0.174102,-0.005223,0.007497,0.249888,0,0);-ms-transform:matrix(0.174102,-0.005223,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174102,-0.005223,0.007497,0.249888,0,0);}
.mf4_c00110{transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);-ms-transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);}
.mf0_c00110{transform:matrix(0.174872,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174872,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174872,-0.002098,0.003000,0.249982,0,0);}
.m41_c00110{transform:matrix(0.175871,-0.005276,0.007497,0.249888,0,0);-ms-transform:matrix(0.175871,-0.005276,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175871,-0.005276,0.007497,0.249888,0,0);}
.m2b_c00110{transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);-ms-transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175931,-0.005278,0.007497,0.249888,0,0);}
.m9e_c00110{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00110{transform:matrix(0.176371,-0.004938,0.006997,0.249902,0,0);-ms-transform:matrix(0.176371,-0.004938,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176371,-0.004938,0.006997,0.249902,0,0);}
.m14_c00110{transform:matrix(0.176551,-0.004767,0.006748,0.249909,0,0);-ms-transform:matrix(0.176551,-0.004767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176551,-0.004767,0.006748,0.249909,0,0);}
.m10_c00110{transform:matrix(0.176811,-0.004774,0.006748,0.249909,0,0);-ms-transform:matrix(0.176811,-0.004774,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176811,-0.004774,0.006748,0.249909,0,0);}
.me8_c00110{transform:matrix(0.176912,-0.002123,0.003000,0.249982,0,0);-ms-transform:matrix(0.176912,-0.002123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176912,-0.002123,0.003000,0.249982,0,0);}
.mde_c00110{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{transform:matrix(0.178015,-0.004984,0.006997,0.249902,0,0);-ms-transform:matrix(0.178015,-0.004984,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178015,-0.004984,0.006997,0.249902,0,0);}
.m51_c00110{transform:matrix(0.178240,-0.005347,0.007497,0.249888,0,0);-ms-transform:matrix(0.178240,-0.005347,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178240,-0.005347,0.007497,0.249888,0,0);}
.mea_c00110{transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);}
.m4_c00110{transform:matrix(0.178960,-0.004832,0.006748,0.249909,0,0);-ms-transform:matrix(0.178960,-0.004832,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178960,-0.004832,0.006748,0.249909,0,0);}
.m37_c00110{transform:matrix(0.178984,-0.005370,0.007497,0.249888,0,0);-ms-transform:matrix(0.178984,-0.005370,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178984,-0.005370,0.007497,0.249888,0,0);}
.md0_c00110{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.m2f_c00110{transform:matrix(0.179389,-0.005382,0.007497,0.249888,0,0);-ms-transform:matrix(0.179389,-0.005382,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179389,-0.005382,0.007497,0.249888,0,0);}
.m7b_c00110{transform:matrix(0.179519,-0.005386,0.007497,0.249888,0,0);-ms-transform:matrix(0.179519,-0.005386,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179519,-0.005386,0.007497,0.249888,0,0);}
.m38_c00110{transform:matrix(0.179929,-0.005398,0.007497,0.249888,0,0);-ms-transform:matrix(0.179929,-0.005398,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179929,-0.005398,0.007497,0.249888,0,0);}
.m24_c00110{transform:matrix(0.180099,-0.005403,0.007497,0.249888,0,0);-ms-transform:matrix(0.180099,-0.005403,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180099,-0.005403,0.007497,0.249888,0,0);}
.mca_c00110{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.md2_c00110{transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);}
.m8d_c00110{transform:matrix(0.180751,-0.001808,0.002500,0.249988,0,0);-ms-transform:matrix(0.180751,-0.001808,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180751,-0.001808,0.002500,0.249988,0,0);}
.mb4_c00110{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.m98_c00110{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m26_c00110{transform:matrix(0.181798,-0.005454,0.007497,0.249888,0,0);-ms-transform:matrix(0.181798,-0.005454,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181798,-0.005454,0.007497,0.249888,0,0);}
.md5_c00110{transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);}
.ma1_c00110{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.mbd_c00110{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m50_c00110{transform:matrix(0.182248,-0.005467,0.007497,0.249888,0,0);-ms-transform:matrix(0.182248,-0.005467,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182248,-0.005467,0.007497,0.249888,0,0);}
.m60_c00110{transform:matrix(0.182553,-0.005477,0.007497,0.249888,0,0);-ms-transform:matrix(0.182553,-0.005477,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182553,-0.005477,0.007497,0.249888,0,0);}
.m4b_c00110{transform:matrix(0.183253,-0.005498,0.007497,0.249888,0,0);-ms-transform:matrix(0.183253,-0.005498,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183253,-0.005498,0.007497,0.249888,0,0);}
.m18_c00110{transform:matrix(0.183368,-0.004951,0.006748,0.249909,0,0);-ms-transform:matrix(0.183368,-0.004951,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183368,-0.004951,0.006748,0.249909,0,0);}
.m9d_c00110{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.me2_c00110{transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);}
.m3f_c00110{transform:matrix(0.183952,-0.005519,0.007497,0.249888,0,0);-ms-transform:matrix(0.183952,-0.005519,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183952,-0.005519,0.007497,0.249888,0,0);}
.m22_c00110{transform:matrix(0.184038,-0.005153,0.006997,0.249902,0,0);-ms-transform:matrix(0.184038,-0.005153,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184038,-0.005153,0.006997,0.249902,0,0);}
.m7a_c00110{transform:matrix(0.184157,-0.005525,0.007497,0.249888,0,0);-ms-transform:matrix(0.184157,-0.005525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184157,-0.005525,0.007497,0.249888,0,0);}
.me1_c00110{transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);}
.m30_c00110{transform:matrix(0.184562,-0.005537,0.007497,0.249888,0,0);-ms-transform:matrix(0.184562,-0.005537,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184562,-0.005537,0.007497,0.249888,0,0);}
.m39_c00110{transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);-ms-transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);}
.mb6_c00110{transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);}
.mc6_c00110{transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.186017,-0.005022,0.006748,0.249909,0,0);-ms-transform:matrix(0.186017,-0.005022,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186017,-0.005022,0.006748,0.249909,0,0);}
.md4_c00110{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.mb2_c00110{transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);}
.mba_c00110{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m88_c00110{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.188571,-0.005091,0.006748,0.249909,0,0);-ms-transform:matrix(0.188571,-0.005091,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188571,-0.005091,0.006748,0.249909,0,0);}
.m2c_c00110{transform:matrix(0.188875,-0.005666,0.007497,0.249888,0,0);-ms-transform:matrix(0.188875,-0.005666,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188875,-0.005666,0.007497,0.249888,0,0);}
.mb9_c00110{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m86_c00110{transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);}
.ma4_c00110{transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);}
.mab_c00110{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m79_c00110{transform:matrix(0.189730,-0.005692,0.007497,0.249888,0,0);-ms-transform:matrix(0.189730,-0.005692,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189730,-0.005692,0.007497,0.249888,0,0);}
.m47_c00110{transform:matrix(0.190264,-0.005708,0.007497,0.249888,0,0);-ms-transform:matrix(0.190264,-0.005708,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190264,-0.005708,0.007497,0.249888,0,0);}
.m61_c00110{transform:matrix(0.190464,-0.005714,0.007497,0.249888,0,0);-ms-transform:matrix(0.190464,-0.005714,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190464,-0.005714,0.007497,0.249888,0,0);}
.md7_c00110{transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);}
.m97_c00110{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.m44_c00110{transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);-ms-transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191784,-0.005754,0.007497,0.249888,0,0);}
.m28_c00110{transform:matrix(0.192273,-0.005768,0.007497,0.249888,0,0);-ms-transform:matrix(0.192273,-0.005768,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192273,-0.005768,0.007497,0.249888,0,0);}
.m7c_c00110{transform:matrix(0.193528,-0.005806,0.007497,0.249888,0,0);-ms-transform:matrix(0.193528,-0.005806,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193528,-0.005806,0.007497,0.249888,0,0);}
.m9c_c00110{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.mc8_c00110{transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);}
.m8a_c00110{transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);}
.m54_c00110{transform:matrix(0.193958,-0.005819,0.007497,0.249888,0,0);-ms-transform:matrix(0.193958,-0.005819,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193958,-0.005819,0.007497,0.249888,0,0);}
.mf_c00110{transform:matrix(0.194099,-0.005241,0.006748,0.249909,0,0);-ms-transform:matrix(0.194099,-0.005241,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194099,-0.005241,0.006748,0.249909,0,0);}
.m15_c00110{transform:matrix(0.195344,-0.005274,0.006748,0.249909,0,0);-ms-transform:matrix(0.195344,-0.005274,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195344,-0.005274,0.006748,0.249909,0,0);}
.me9_c00110{transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);}
.me4_c00110{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mec_c00110{transform:matrix(0.196676,-0.002360,0.003000,0.249982,0,0);-ms-transform:matrix(0.196676,-0.002360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196676,-0.002360,0.003000,0.249982,0,0);}
.m23_c00110{transform:matrix(0.197026,-0.005911,0.007497,0.249888,0,0);-ms-transform:matrix(0.197026,-0.005911,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197026,-0.005911,0.007497,0.249888,0,0);}
.m53_c00110{transform:matrix(0.197606,-0.005928,0.007497,0.249888,0,0);-ms-transform:matrix(0.197606,-0.005928,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197606,-0.005928,0.007497,0.249888,0,0);}
.m56_c00110{transform:matrix(0.197841,-0.005935,0.007497,0.249888,0,0);-ms-transform:matrix(0.197841,-0.005935,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197841,-0.005935,0.007497,0.249888,0,0);}
.m5a_c00110{transform:matrix(0.198391,-0.005952,0.007497,0.249888,0,0);-ms-transform:matrix(0.198391,-0.005952,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198391,-0.005952,0.007497,0.249888,0,0);}
.md9_c00110{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00110{transform:matrix(0.198460,-0.001985,0.002500,0.249988,0,0);-ms-transform:matrix(0.198460,-0.001985,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198460,-0.001985,0.002500,0.249988,0,0);}
.m84_c00110{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m40_c00110{transform:matrix(0.199865,-0.005996,0.007497,0.249888,0,0);-ms-transform:matrix(0.199865,-0.005996,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199865,-0.005996,0.007497,0.249888,0,0);}
.m94_c00110{transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);}
.mce_c00110{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00110{transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);}
.mc9_c00110{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m1d_c00110{transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);-ms-transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);}
.mcf_c00110{transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);}
.mc2_c00110{transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);}
.md3_c00110{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.maf_c00110{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mdc_c00110{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.m55_c00110{transform:matrix(0.202064,-0.006062,0.007497,0.249888,0,0);-ms-transform:matrix(0.202064,-0.006062,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202064,-0.006062,0.007497,0.249888,0,0);}
.m4a_c00110{transform:matrix(0.203179,-0.006095,0.007497,0.249888,0,0);-ms-transform:matrix(0.203179,-0.006095,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203179,-0.006095,0.007497,0.249888,0,0);}
.mdb_c00110{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m36_c00110{transform:matrix(0.204328,-0.006130,0.007497,0.249888,0,0);-ms-transform:matrix(0.204328,-0.006130,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204328,-0.006130,0.007497,0.249888,0,0);}
.mbc_c00110{transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.205707,-0.006171,0.007497,0.249888,0,0);-ms-transform:matrix(0.205707,-0.006171,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205707,-0.006171,0.007497,0.249888,0,0);}
.mae_c00110{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m7f_c00110{transform:matrix(0.206057,-0.006182,0.007497,0.249888,0,0);-ms-transform:matrix(0.206057,-0.006182,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206057,-0.006182,0.007497,0.249888,0,0);}
.ma9_c00110{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.m33_c00110{transform:matrix(0.206787,-0.006204,0.007497,0.249888,0,0);-ms-transform:matrix(0.206787,-0.006204,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206787,-0.006204,0.007497,0.249888,0,0);}
.m58_c00110{transform:matrix(0.207152,-0.006215,0.007497,0.249888,0,0);-ms-transform:matrix(0.207152,-0.006215,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207152,-0.006215,0.007497,0.249888,0,0);}
.m72_c00110{transform:matrix(0.208116,-0.006243,0.007497,0.249888,0,0);-ms-transform:matrix(0.208116,-0.006243,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208116,-0.006243,0.007497,0.249888,0,0);}
.m74_c00110{transform:matrix(0.208556,-0.006257,0.007497,0.249888,0,0);-ms-transform:matrix(0.208556,-0.006257,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208556,-0.006257,0.007497,0.249888,0,0);}
.m25_c00110{transform:matrix(0.208676,-0.006260,0.007497,0.249888,0,0);-ms-transform:matrix(0.208676,-0.006260,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208676,-0.006260,0.007497,0.249888,0,0);}
.m99_c00110{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.208891,-0.006267,0.007497,0.249888,0,0);-ms-transform:matrix(0.208891,-0.006267,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208891,-0.006267,0.007497,0.249888,0,0);}
.mc4_c00110{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m5c_c00110{transform:matrix(0.209926,-0.006298,0.007497,0.249888,0,0);-ms-transform:matrix(0.209926,-0.006298,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209926,-0.006298,0.007497,0.249888,0,0);}
.mf1_c00110{transform:matrix(0.210095,-0.002521,0.003000,0.249982,0,0);-ms-transform:matrix(0.210095,-0.002521,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210095,-0.002521,0.003000,0.249982,0,0);}
.m77_c00110{transform:matrix(0.210190,-0.006306,0.007497,0.249888,0,0);-ms-transform:matrix(0.210190,-0.006306,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210190,-0.006306,0.007497,0.249888,0,0);}
.mb3_c00110{transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);}
.m57_c00110{transform:matrix(0.210950,-0.006329,0.007497,0.249888,0,0);-ms-transform:matrix(0.210950,-0.006329,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210950,-0.006329,0.007497,0.249888,0,0);}
.mc0_c00110{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.211068,-0.005699,0.006748,0.249909,0,0);-ms-transform:matrix(0.211068,-0.005699,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211068,-0.005699,0.006748,0.249909,0,0);}
.mc5_c00110{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.mcb_c00110{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00110{transform:matrix(0.212989,-0.002130,0.002500,0.249988,0,0);-ms-transform:matrix(0.212989,-0.002130,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212989,-0.002130,0.002500,0.249988,0,0);}
.mf3_c00110{transform:matrix(0.213110,-0.002557,0.003000,0.249982,0,0);-ms-transform:matrix(0.213110,-0.002557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213110,-0.002557,0.003000,0.249982,0,0);}
.m3c_c00110{transform:matrix(0.213884,-0.006417,0.007497,0.249888,0,0);-ms-transform:matrix(0.213884,-0.006417,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213884,-0.006417,0.007497,0.249888,0,0);}
.m92_c00110{transform:matrix(0.214119,-0.002141,0.002500,0.249988,0,0);-ms-transform:matrix(0.214119,-0.002141,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214119,-0.002141,0.002500,0.249988,0,0);}
.m6_c00110{transform:matrix(0.217266,-0.005866,0.006748,0.249909,0,0);-ms-transform:matrix(0.217266,-0.005866,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217266,-0.005866,0.006748,0.249909,0,0);}
.m27_c00110{transform:matrix(0.217497,-0.006525,0.007497,0.249888,0,0);-ms-transform:matrix(0.217497,-0.006525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217497,-0.006525,0.007497,0.249888,0,0);}
.mbf_c00110{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.mc1_c00110{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.mda_c00110{transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);}
.m9b_c00110{transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00110{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00110{transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00110{transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);-ms-transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222020,-0.006661,0.007497,0.249888,0,0);}
.m4c_c00110{transform:matrix(0.222065,-0.006662,0.007497,0.249888,0,0);-ms-transform:matrix(0.222065,-0.006662,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222065,-0.006662,0.007497,0.249888,0,0);}
.m66_c00110{transform:matrix(0.222435,-0.006673,0.007497,0.249888,0,0);-ms-transform:matrix(0.222435,-0.006673,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222435,-0.006673,0.007497,0.249888,0,0);}
.m11_c00110{transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-ms-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);}
.m6e_c00110{transform:matrix(0.222680,-0.006680,0.007497,0.249888,0,0);-ms-transform:matrix(0.222680,-0.006680,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222680,-0.006680,0.007497,0.249888,0,0);}
.mc_c00110{transform:matrix(0.223054,-0.006022,0.006748,0.249909,0,0);-ms-transform:matrix(0.223054,-0.006022,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223054,-0.006022,0.006748,0.249909,0,0);}
.m90_c00110{transform:matrix(0.223224,-0.002232,0.002500,0.249988,0,0);-ms-transform:matrix(0.223224,-0.002232,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223224,-0.002232,0.002500,0.249988,0,0);}
.m78_c00110{transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);-ms-transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224264,-0.006728,0.007497,0.249888,0,0);}
.me5_c00110{transform:matrix(0.224279,-0.002691,0.003000,0.249982,0,0);-ms-transform:matrix(0.224279,-0.002691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224279,-0.002691,0.003000,0.249982,0,0);}
.m93_c00110{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m65_c00110{transform:matrix(0.224774,-0.006743,0.007497,0.249888,0,0);-ms-transform:matrix(0.224774,-0.006743,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224774,-0.006743,0.007497,0.249888,0,0);}
.ma7_c00110{transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);}
.maa_c00110{transform:matrix(0.228880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228880,0.000000,0.000000,0.250000,0,0);}
.md6_c00110{transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);}
.m13_c00110{transform:matrix(0.232485,-0.006277,0.006748,0.249909,0,0);-ms-transform:matrix(0.232485,-0.006277,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232485,-0.006277,0.006748,0.249909,0,0);}
.m5e_c00110{transform:matrix(0.235369,-0.007061,0.007497,0.249888,0,0);-ms-transform:matrix(0.235369,-0.007061,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235369,-0.007061,0.007497,0.249888,0,0);}
.mad_c00110{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.235869,-0.006368,0.006748,0.249909,0,0);-ms-transform:matrix(0.235869,-0.006368,0.006748,0.249909,0,0);-webkit-transform:matrix(0.235869,-0.006368,0.006748,0.249909,0,0);}
.m91_c00110{transform:matrix(0.236013,-0.002360,0.002500,0.249988,0,0);-ms-transform:matrix(0.236013,-0.002360,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236013,-0.002360,0.002500,0.249988,0,0);}
.m32_c00110{transform:matrix(0.236579,-0.007097,0.007497,0.249888,0,0);-ms-transform:matrix(0.236579,-0.007097,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236579,-0.007097,0.007497,0.249888,0,0);}
.m48_c00110{transform:matrix(0.237218,-0.007117,0.007497,0.249888,0,0);-ms-transform:matrix(0.237218,-0.007117,0.007497,0.249888,0,0);-webkit-transform:matrix(0.237218,-0.007117,0.007497,0.249888,0,0);}
.m4f_c00110{transform:matrix(0.237718,-0.007132,0.007497,0.249888,0,0);-ms-transform:matrix(0.237718,-0.007132,0.007497,0.249888,0,0);-webkit-transform:matrix(0.237718,-0.007132,0.007497,0.249888,0,0);}
.m9a_c00110{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m17_c00110{transform:matrix(0.238553,-0.006441,0.006748,0.249909,0,0);-ms-transform:matrix(0.238553,-0.006441,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238553,-0.006441,0.006748,0.249909,0,0);}
.ma2_c00110{transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);}
.me7_c00110{transform:matrix(0.243157,-0.002918,0.003000,0.249982,0,0);-ms-transform:matrix(0.243157,-0.002918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243157,-0.002918,0.003000,0.249982,0,0);}
.m29_c00110{transform:matrix(0.243660,-0.007310,0.007497,0.249888,0,0);-ms-transform:matrix(0.243660,-0.007310,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243660,-0.007310,0.007497,0.249888,0,0);}
.m59_c00110{transform:matrix(0.244555,-0.007337,0.007497,0.249888,0,0);-ms-transform:matrix(0.244555,-0.007337,0.007497,0.249888,0,0);-webkit-transform:matrix(0.244555,-0.007337,0.007497,0.249888,0,0);}
.m73_c00110{transform:matrix(0.248283,-0.007448,0.007497,0.249888,0,0);-ms-transform:matrix(0.248283,-0.007448,0.007497,0.249888,0,0);-webkit-transform:matrix(0.248283,-0.007448,0.007497,0.249888,0,0);}
.m5d_c00110{transform:matrix(0.252152,-0.007565,0.007497,0.249888,0,0);-ms-transform:matrix(0.252152,-0.007565,0.007497,0.249888,0,0);-webkit-transform:matrix(0.252152,-0.007565,0.007497,0.249888,0,0);}
.m63_c00110{transform:matrix(0.255710,-0.007671,0.007497,0.249888,0,0);-ms-transform:matrix(0.255710,-0.007671,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255710,-0.007671,0.007497,0.249888,0,0);}
.mcd_c00110{transform:matrix(0.256780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256780,0.000000,0.000000,0.250000,0,0);}
.m75_c00110{transform:matrix(0.258264,-0.007748,0.007497,0.249888,0,0);-ms-transform:matrix(0.258264,-0.007748,0.007497,0.249888,0,0);-webkit-transform:matrix(0.258264,-0.007748,0.007497,0.249888,0,0);}
.m62_c00110{transform:matrix(0.260118,-0.007804,0.007497,0.249888,0,0);-ms-transform:matrix(0.260118,-0.007804,0.007497,0.249888,0,0);-webkit-transform:matrix(0.260118,-0.007804,0.007497,0.249888,0,0);}
.mbb_c00110{transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00110{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00110{transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);}
.m83_c00110{transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);}
.me6_c00110{transform:matrix(0.283075,-0.003397,0.003000,0.249982,0,0);-ms-transform:matrix(0.283075,-0.003397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283075,-0.003397,0.003000,0.249982,0,0);}
.m4d_c00110{transform:matrix(0.286976,-0.008609,0.007497,0.249888,0,0);-ms-transform:matrix(0.286976,-0.008609,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286976,-0.008609,0.007497,0.249888,0,0);}
.m5_c00110{transform:matrix(0.292094,-0.007887,0.006748,0.249909,0,0);-ms-transform:matrix(0.292094,-0.007887,0.006748,0.249909,0,0);-webkit-transform:matrix(0.292094,-0.007887,0.006748,0.249909,0,0);}
.m70_c00110{transform:matrix(0.294278,-0.008828,0.007497,0.249888,0,0);-ms-transform:matrix(0.294278,-0.008828,0.007497,0.249888,0,0);-webkit-transform:matrix(0.294278,-0.008828,0.007497,0.249888,0,0);}
.m76_c00110{transform:matrix(0.296287,-0.008889,0.007497,0.249888,0,0);-ms-transform:matrix(0.296287,-0.008889,0.007497,0.249888,0,0);-webkit-transform:matrix(0.296287,-0.008889,0.007497,0.249888,0,0);}
.ma6_c00110{transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);}
.m6d_c00110{transform:matrix(0.309626,-0.009289,0.007497,0.249888,0,0);-ms-transform:matrix(0.309626,-0.009289,0.007497,0.249888,0,0);-webkit-transform:matrix(0.309626,-0.009289,0.007497,0.249888,0,0);}
.mb0_c00110{transform:matrix(0.318785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318785,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.320623,-0.008657,0.006748,0.249909,0,0);-ms-transform:matrix(0.320623,-0.008657,0.006748,0.249909,0,0);-webkit-transform:matrix(0.320623,-0.008657,0.006748,0.249909,0,0);}
.m5b_c00110{transform:matrix(0.336419,-0.010093,0.007497,0.249888,0,0);-ms-transform:matrix(0.336419,-0.010093,0.007497,0.249888,0,0);-webkit-transform:matrix(0.336419,-0.010093,0.007497,0.249888,0,0);}
.mcc_c00110{transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);}
.m82_c00110{transform:matrix(0.347210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347210,0.000000,0.000000,0.250000,0,0);}
.m3d_c00110{transform:matrix(0.367320,-0.011020,0.007497,0.249888,0,0);-ms-transform:matrix(0.367320,-0.011020,0.007497,0.249888,0,0);-webkit-transform:matrix(0.367320,-0.011020,0.007497,0.249888,0,0);}
.m68_c00110{transform:matrix(0.422720,-0.012682,0.007497,0.249888,0,0);-ms-transform:matrix(0.422720,-0.012682,0.007497,0.249888,0,0);-webkit-transform:matrix(0.422720,-0.012682,0.007497,0.249888,0,0);}
.m6c_c00110{transform:matrix(0.442816,-0.013284,0.007497,0.249888,0,0);-ms-transform:matrix(0.442816,-0.013284,0.007497,0.249888,0,0);-webkit-transform:matrix(0.442816,-0.013284,0.007497,0.249888,0,0);}
.m71_c00110{transform:matrix(0.448508,-0.013455,0.007497,0.249888,0,0);-ms-transform:matrix(0.448508,-0.013455,0.007497,0.249888,0,0);-webkit-transform:matrix(0.448508,-0.013455,0.007497,0.249888,0,0);}
.m6b_c00110{transform:matrix(0.448953,-0.013469,0.007497,0.249888,0,0);-ms-transform:matrix(0.448953,-0.013469,0.007497,0.249888,0,0);-webkit-transform:matrix(0.448953,-0.013469,0.007497,0.249888,0,0);}
.m8_c00110{transform:matrix(0.487337,-0.013158,0.006748,0.249909,0,0);-ms-transform:matrix(0.487337,-0.013158,0.006748,0.249909,0,0);-webkit-transform:matrix(0.487337,-0.013158,0.006748,0.249909,0,0);}
.m5f_c00110{transform:matrix(0.497046,-0.014911,0.007497,0.249888,0,0);-ms-transform:matrix(0.497046,-0.014911,0.007497,0.249888,0,0);-webkit-transform:matrix(0.497046,-0.014911,0.007497,0.249888,0,0);}
.m0_c00110{transform:matrix(0.520600,-0.014056,0.006748,0.249909,0,0);-ms-transform:matrix(0.520600,-0.014056,0.006748,0.249909,0,0);-webkit-transform:matrix(0.520600,-0.014056,0.006748,0.249909,0,0);}
.mb1_c00110{transform:matrix(0.572120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572120,0.000000,0.000000,0.250000,0,0);}
.m6a_c00110{transform:matrix(0.576316,-0.017289,0.007497,0.249888,0,0);-ms-transform:matrix(0.576316,-0.017289,0.007497,0.249888,0,0);-webkit-transform:matrix(0.576316,-0.017289,0.007497,0.249888,0,0);}
.m69_c00110{transform:matrix(0.595672,-0.017870,0.007497,0.249888,0,0);-ms-transform:matrix(0.595672,-0.017870,0.007497,0.249888,0,0);-webkit-transform:matrix(0.595672,-0.017870,0.007497,0.249888,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:0.000000px;}
._0_c00110{margin-left:-4.785758px;}
.fc0_c00110{color:transparent;}
.fsf_c00110{font-size:27.300000px;}
.fse_c00110{font-size:30.450000px;}
.fsb_c00110{font-size:30.463699px;}
.fsc_c00110{font-size:58.826454px;}
.fs18_c00110{font-size:59.850000px;}
.fs7_c00110{font-size:59.876926px;}
.fs15_c00110{font-size:61.950000px;}
.fsa_c00110{font-size:61.977871px;}
.fs1a_c00110{font-size:63.000000px;}
.fs11_c00110{font-size:63.003150px;}
.fs3_c00110{font-size:63.022959px;}
.fs5_c00110{font-size:63.028344px;}
.fs19_c00110{font-size:64.050000px;}
.fs1_c00110{font-size:65.123725px;}
.fs14_c00110{font-size:66.150000px;}
.fs17_c00110{font-size:67.200000px;}
.fs1c_c00110{font-size:67.204838px;}
.fs12_c00110{font-size:68.250000px;}
.fs8_c00110{font-size:68.280706px;}
.fs1b_c00110{font-size:69.300000px;}
.fs0_c00110{font-size:70.375638px;}
.fs9_c00110{font-size:70.381650px;}
.fs13_c00110{font-size:71.400000px;}
.fs6_c00110{font-size:71.432123px;}
.fs10_c00110{font-size:72.450000px;}
.fs2_c00110{font-size:72.476403px;}
.fsd_c00110{font-size:72.482595px;}
.fs16_c00110{font-size:73.500000px;}
.fs4_c00110{font-size:74.579218px;}
.fs1d_c00110{font-size:75.605443px;}
.y0_c00110{bottom:0.000000px;}
.yb2_c00110{bottom:33.391452px;}
.yb3_c00110{bottom:33.391614px;}
.yb1_c00110{bottom:33.391650px;}
.yb0_c00110{bottom:33.391782px;}
.yaf_c00110{bottom:33.391998px;}
.yae_c00110{bottom:33.392076px;}
.yb4_c00110{bottom:33.392238px;}
.yad_c00110{bottom:33.392550px;}
.ya5_c00110{bottom:48.601500px;}
.ya6_c00110{bottom:48.841548px;}
.ya7_c00110{bottom:49.616286px;}
.ya8_c00110{bottom:49.784136px;}
.ya9_c00110{bottom:50.487198px;}
.yaa_c00110{bottom:50.737056px;}
.yab_c00110{bottom:51.364878px;}
.yac_c00110{bottom:51.628038px;}
.ya4_c00110{bottom:67.131000px;}
.ya3_c00110{bottom:85.758000px;}
.ya2_c00110{bottom:105.370500px;}
.ya1_c00110{bottom:121.972500px;}
.y9c_c00110{bottom:136.620000px;}
.y9d_c00110{bottom:136.854000px;}
.y9e_c00110{bottom:138.757500px;}
.y9f_c00110{bottom:139.528500px;}
.ya0_c00110{bottom:139.725000px;}
.y9b_c00110{bottom:155.989500px;}
.y9a_c00110{bottom:157.188000px;}
.y99_c00110{bottom:157.371000px;}
.y98_c00110{bottom:157.959000px;}
.y97_c00110{bottom:158.488500px;}
.y91_c00110{bottom:169.347000px;}
.y92_c00110{bottom:169.687500px;}
.y93_c00110{bottom:171.040500px;}
.y94_c00110{bottom:171.435000px;}
.y95_c00110{bottom:172.044000px;}
.y96_c00110{bottom:173.352000px;}
.y90_c00110{bottom:191.628000px;}
.y8f_c00110{bottom:208.519500px;}
.y8e_c00110{bottom:226.023000px;}
.y8d_c00110{bottom:243.673500px;}
.y8c_c00110{bottom:261.514500px;}
.y85_c00110{bottom:277.831500px;}
.y86_c00110{bottom:278.508870px;}
.y87_c00110{bottom:278.903400px;}
.y88_c00110{bottom:279.337590px;}
.y89_c00110{bottom:279.583380px;}
.y8a_c00110{bottom:280.266480px;}
.y8b_c00110{bottom:280.420500px;}
.y84_c00110{bottom:297.327000px;}
.y7a_c00110{bottom:313.118085px;}
.y7b_c00110{bottom:314.334975px;}
.y7c_c00110{bottom:314.954895px;}
.y7d_c00110{bottom:315.372225px;}
.y7e_c00110{bottom:316.052910px;}
.y7f_c00110{bottom:316.929210px;}
.y80_c00110{bottom:317.171700px;}
.y72_c00110{bottom:326.629020px;}
.y73_c00110{bottom:327.476415px;}
.y74_c00110{bottom:328.032900px;}
.y75_c00110{bottom:328.767075px;}
.y76_c00110{bottom:330.431310px;}
.y77_c00110{bottom:331.998180px;}
.y78_c00110{bottom:332.557950px;}
.y79_c00110{bottom:334.081620px;}
.y69_c00110{bottom:345.781290px;}
.y6a_c00110{bottom:347.561025px;}
.y6b_c00110{bottom:348.102480px;}
.y6c_c00110{bottom:349.291335px;}
.y6d_c00110{bottom:350.778555px;}
.y6e_c00110{bottom:351.719820px;}
.y6f_c00110{bottom:352.237845px;}
.y70_c00110{bottom:353.230965px;}
.y71_c00110{bottom:353.451855px;}
.y83_c00110{bottom:355.720500px;}
.y61_c00110{bottom:363.093120px;}
.y82_c00110{bottom:363.150000px;}
.y62_c00110{bottom:363.807360px;}
.y63_c00110{bottom:364.698840px;}
.y64_c00110{bottom:365.941650px;}
.y65_c00110{bottom:366.459495px;}
.y66_c00110{bottom:367.570950px;}
.y67_c00110{bottom:367.747500px;}
.y68_c00110{bottom:368.605320px;}
.y81_c00110{bottom:372.870000px;}
.y5b_c00110{bottom:375.261300px;}
.y5c_c00110{bottom:377.914950px;}
.y5d_c00110{bottom:378.846765px;}
.y5e_c00110{bottom:380.725830px;}
.y5f_c00110{bottom:381.456450px;}
.y60_c00110{bottom:383.498190px;}
.y51_c00110{bottom:396.048930px;}
.y52_c00110{bottom:396.755775px;}
.y53_c00110{bottom:397.473465px;}
.y54_c00110{bottom:398.190915px;}
.y55_c00110{bottom:399.313965px;}
.y56_c00110{bottom:400.020825px;}
.y57_c00110{bottom:400.675245px;}
.y58_c00110{bottom:401.906400px;}
.y59_c00110{bottom:402.251700px;}
.y5a_c00110{bottom:403.520595px;}
.y49_c00110{bottom:412.803165px;}
.y4a_c00110{bottom:413.948010px;}
.y4b_c00110{bottom:414.713460px;}
.y4c_c00110{bottom:416.429895px;}
.y4d_c00110{bottom:416.893350px;}
.y4e_c00110{bottom:418.513125px;}
.y4f_c00110{bottom:419.155635px;}
.y50_c00110{bottom:421.059270px;}
.y40_c00110{bottom:431.172390px;}
.y41_c00110{bottom:432.914070px;}
.y42_c00110{bottom:433.727445px;}
.y43_c00110{bottom:434.288370px;}
.y44_c00110{bottom:434.897940px;}
.y45_c00110{bottom:435.933090px;}
.y46_c00110{bottom:436.752840px;}
.y47_c00110{bottom:437.253180px;}
.y48_c00110{bottom:437.972655px;}
.y38_c00110{bottom:450.343170px;}
.y39_c00110{bottom:450.974970px;}
.y3a_c00110{bottom:452.395545px;}
.y3b_c00110{bottom:452.773725px;}
.y3c_c00110{bottom:453.205905px;}
.y3d_c00110{bottom:454.481490px;}
.y3e_c00110{bottom:455.627040px;}
.y3f_c00110{bottom:455.864220px;}
.y31_c00110{bottom:466.283805px;}
.y32_c00110{bottom:467.475330px;}
.y33_c00110{bottom:467.722185px;}
.y34_c00110{bottom:469.267635px;}
.y35_c00110{bottom:471.350460px;}
.y36_c00110{bottom:472.064055px;}
.y37_c00110{bottom:473.101965px;}
.y2b_c00110{bottom:481.957080px;}
.y2c_c00110{bottom:482.969445px;}
.y2d_c00110{bottom:484.253595px;}
.y2e_c00110{bottom:486.397695px;}
.y2f_c00110{bottom:488.770500px;}
.y30_c00110{bottom:490.312215px;}
.y24_c00110{bottom:500.053500px;}
.y25_c00110{bottom:502.040115px;}
.y26_c00110{bottom:502.648335px;}
.y27_c00110{bottom:504.110520px;}
.y28_c00110{bottom:504.804600px;}
.y29_c00110{bottom:506.112750px;}
.y2a_c00110{bottom:507.645135px;}
.y1b_c00110{bottom:518.680500px;}
.y1c_c00110{bottom:519.193320px;}
.y1d_c00110{bottom:520.349748px;}
.y1e_c00110{bottom:521.805300px;}
.y1f_c00110{bottom:522.210054px;}
.y20_c00110{bottom:522.665376px;}
.y21_c00110{bottom:524.370324px;}
.y22_c00110{bottom:525.508314px;}
.y23_c00110{bottom:526.091064px;}
.y11_c00110{bottom:536.756273px;}
.y12_c00110{bottom:537.948901px;}
.y13_c00110{bottom:538.266842px;}
.y14_c00110{bottom:539.164654px;}
.y15_c00110{bottom:539.725089px;}
.y16_c00110{bottom:540.333877px;}
.y17_c00110{bottom:541.614183px;}
.y18_c00110{bottom:541.992828px;}
.y19_c00110{bottom:542.812644px;}
.y1a_c00110{bottom:543.230206px;}
.y9_c00110{bottom:552.705376px;}
.ya_c00110{bottom:554.235976px;}
.yb_c00110{bottom:555.286132px;}
.yc_c00110{bottom:557.236221px;}
.yd_c00110{bottom:557.753806px;}
.ye_c00110{bottom:558.384152px;}
.yf_c00110{bottom:559.180275px;}
.y10_c00110{bottom:559.762746px;}
.y4_c00110{bottom:569.713669px;}
.y5_c00110{bottom:572.949639px;}
.y6_c00110{bottom:573.937103px;}
.y1_c00110{bottom:575.121000px;}
.y7_c00110{bottom:576.185770px;}
.y8_c00110{bottom:577.520616px;}
.y2_c00110{bottom:577.857099px;}
.y3_c00110{bottom:578.319366px;}
.h10_c00110{height:27.300000px;}
.hf_c00110{height:30.450000px;}
.hc_c00110{height:30.463699px;}
.hd_c00110{height:58.826454px;}
.h19_c00110{height:59.850000px;}
.h8_c00110{height:59.876926px;}
.h16_c00110{height:61.950000px;}
.hb_c00110{height:61.977871px;}
.h1b_c00110{height:63.000000px;}
.h12_c00110{height:63.003150px;}
.h4_c00110{height:63.022959px;}
.h6_c00110{height:63.028344px;}
.h1a_c00110{height:64.050000px;}
.h2_c00110{height:65.123725px;}
.h15_c00110{height:66.150000px;}
.h18_c00110{height:67.200000px;}
.h1d_c00110{height:67.204838px;}
.h13_c00110{height:68.250000px;}
.h9_c00110{height:68.280706px;}
.h1c_c00110{height:69.300000px;}
.h1_c00110{height:70.375638px;}
.ha_c00110{height:70.381650px;}
.h14_c00110{height:71.400000px;}
.h7_c00110{height:71.432123px;}
.h11_c00110{height:72.450000px;}
.h3_c00110{height:72.476403px;}
.he_c00110{height:72.482595px;}
.h17_c00110{height:73.500000px;}
.h5_c00110{height:74.579218px;}
.h1e_c00110{height:75.605443px;}
.h0_c00110{height:634.500000px;}
.w0_c00110{width:371.790000px;}
.w1_c00110{width:372.000000px;}
.x0_c00110{left:0.000000px;}
.x4e_c00110{left:25.110000px;}
.x57_c00110{left:28.890000px;}
.x39_c00110{left:30.831825px;}
.x4_c00110{left:32.842979px;}
.x2d_c00110{left:33.961815px;}
.x5d_c00110{left:35.100000px;}
.x6d_c00110{left:38.523000px;}
.x7b_c00110{left:40.499856px;}
.x5e_c00110{left:50.220000px;}
.x18_c00110{left:51.655500px;}
.x6a_c00110{left:55.386000px;}
.x77_c00110{left:58.732500px;}
.x34_c00110{left:60.446700px;}
.x46_c00110{left:62.513070px;}
.x21_c00110{left:64.805535px;}
.x74_c00110{left:65.883000px;}
.x71_c00110{left:66.963000px;}
.x3c_c00110{left:71.363580px;}
.x31_c00110{left:72.366615px;}
.x6b_c00110{left:76.710000px;}
.x78_c00110{left:78.736500px;}
.xf_c00110{left:80.150464px;}
.x47_c00110{left:83.114415px;}
.x9_c00110{left:85.940252px;}
.x26_c00110{left:88.641975px;}
.x4f_c00110{left:91.800000px;}
.x10_c00110{left:92.871153px;}
.x58_c00110{left:94.500000px;}
.x62_c00110{left:95.580000px;}
.x41_c00110{left:96.678795px;}
.x1d_c00110{left:98.803500px;}
.x53_c00110{left:101.619000px;}
.x22_c00110{left:104.958150px;}
.x59_c00110{left:107.730000px;}
.x48_c00110{left:110.289345px;}
.x7c_c00110{left:114.214476px;}
.x35_c00110{left:115.641315px;}
.x67_c00110{left:117.990000px;}
.x1e_c00110{left:119.077500px;}
.x4a_c00110{left:120.360975px;}
.xa_c00110{left:122.166308px;}
.x11_c00110{left:128.792097px;}
.x5a_c00110{left:130.410000px;}
.x5f_c00110{left:132.300000px;}
.x5_c00110{left:133.957830px;}
.x29_c00110{left:135.505500px;}
.x68_c00110{left:137.970000px;}
.x54_c00110{left:141.072000px;}
.x63_c00110{left:142.560000px;}
.x19_c00110{left:144.940500px;}
.x27_c00110{left:148.064085px;}
.x2e_c00110{left:149.388210px;}
.x12_c00110{left:151.216812px;}
.x7d_c00110{left:152.827038px;}
.x2a_c00110{left:154.417170px;}
.x79_c00110{left:157.285500px;}
.x1a_c00110{left:159.396000px;}
.x6c_c00110{left:161.317500px;}
.x64_c00110{left:163.080000px;}
.x6_c00110{left:164.804159px;}
.x1_c00110{left:166.566000px;}
.x1f_c00110{left:167.817000px;}
.x32_c00110{left:170.544615px;}
.x23_c00110{left:171.974145px;}
.x50_c00110{left:173.610000px;}
.x13_c00110{left:175.543608px;}
.x60_c00110{left:180.900000px;}
.x3d_c00110{left:183.693615px;}
.x36_c00110{left:185.996730px;}
.xb_c00110{left:189.388163px;}
.x20_c00110{left:190.953000px;}
.x4b_c00110{left:194.421480px;}
.x51_c00110{left:198.990000px;}
.xc_c00110{left:207.223691px;}
.x55_c00110{left:209.070000px;}
.x2f_c00110{left:210.317700px;}
.x42_c00110{left:211.636725px;}
.x3a_c00110{left:212.982825px;}
.x73_c00110{left:215.463000px;}
.x75_c00110{left:217.083000px;}
.x33_c00110{left:224.537115px;}
.x65_c00110{left:225.720000px;}
.x14_c00110{left:226.742862px;}
.xd_c00110{left:228.957516px;}
.x6f_c00110{left:232.914000px;}
.x7_c00110{left:235.078682px;}
.x1b_c00110{left:236.548500px;}
.x2b_c00110{left:239.818275px;}
.x15_c00110{left:241.878672px;}
.x4c_c00110{left:243.034290px;}
.x24_c00110{left:246.113190px;}
.x61_c00110{left:248.940000px;}
.x49_c00110{left:250.664445px;}
.xe_c00110{left:256.386518px;}
.x30_c00110{left:259.225110px;}
.x76_c00110{left:261.093000px;}
.x43_c00110{left:263.782875px;}
.x2_c00110{left:267.903000px;}
.x3e_c00110{left:269.431875px;}
.x37_c00110{left:271.769490px;}
.x16_c00110{left:274.688454px;}
.x8_c00110{left:276.789552px;}
.x3f_c00110{left:278.719935px;}
.x5b_c00110{left:282.960000px;}
.x3_c00110{left:285.024000px;}
.x72_c00110{left:287.013000px;}
.x6e_c00110{left:288.493500px;}
.x17_c00110{left:291.376845px;}
.x56_c00110{left:292.782000px;}
.x25_c00110{left:294.300810px;}
.x28_c00110{left:295.492725px;}
.x52_c00110{left:297.000000px;}
.x1c_c00110{left:298.003500px;}
.x44_c00110{left:299.238990px;}
.x66_c00110{left:300.510000px;}
.x70_c00110{left:303.064500px;}
.x3b_c00110{left:305.394825px;}
.x45_c00110{left:307.102440px;}
.x2c_c00110{left:308.980020px;}
.x7a_c00110{left:310.944000px;}
.x38_c00110{left:320.571840px;}
.x40_c00110{left:323.878830px;}
.x69_c00110{left:325.620000px;}
.x5c_c00110{left:328.050000px;}
.x4d_c00110{left:329.400000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
._0_c00110{margin-left:-4.254007pt;}
.fsf_c00110{font-size:24.266667pt;}
.fse_c00110{font-size:27.066667pt;}
.fsb_c00110{font-size:27.078844pt;}
.fsc_c00110{font-size:52.290181pt;}
.fs18_c00110{font-size:53.200000pt;}
.fs7_c00110{font-size:53.223935pt;}
.fs15_c00110{font-size:55.066667pt;}
.fsa_c00110{font-size:55.091441pt;}
.fs1a_c00110{font-size:56.000000pt;}
.fs11_c00110{font-size:56.002800pt;}
.fs3_c00110{font-size:56.020408pt;}
.fs5_c00110{font-size:56.025194pt;}
.fs19_c00110{font-size:56.933333pt;}
.fs1_c00110{font-size:57.887755pt;}
.fs14_c00110{font-size:58.800000pt;}
.fs17_c00110{font-size:59.733333pt;}
.fs1c_c00110{font-size:59.737634pt;}
.fs12_c00110{font-size:60.666667pt;}
.fs8_c00110{font-size:60.693961pt;}
.fs1b_c00110{font-size:61.600000pt;}
.fs0_c00110{font-size:62.556123pt;}
.fs9_c00110{font-size:62.561467pt;}
.fs13_c00110{font-size:63.466667pt;}
.fs6_c00110{font-size:63.495220pt;}
.fs10_c00110{font-size:64.400000pt;}
.fs2_c00110{font-size:64.423470pt;}
.fsd_c00110{font-size:64.428973pt;}
.fs16_c00110{font-size:65.333333pt;}
.fs4_c00110{font-size:66.292638pt;}
.fs1d_c00110{font-size:67.204838pt;}
.y0_c00110{bottom:0.000000pt;}
.yb2_c00110{bottom:29.681291pt;}
.yb3_c00110{bottom:29.681435pt;}
.yb1_c00110{bottom:29.681467pt;}
.yb0_c00110{bottom:29.681584pt;}
.yaf_c00110{bottom:29.681776pt;}
.yae_c00110{bottom:29.681845pt;}
.yb4_c00110{bottom:29.681989pt;}
.yad_c00110{bottom:29.682267pt;}
.ya5_c00110{bottom:43.201333pt;}
.ya6_c00110{bottom:43.414709pt;}
.ya7_c00110{bottom:44.103365pt;}
.ya8_c00110{bottom:44.252565pt;}
.ya9_c00110{bottom:44.877509pt;}
.yaa_c00110{bottom:45.099605pt;}
.yab_c00110{bottom:45.657669pt;}
.yac_c00110{bottom:45.891589pt;}
.ya4_c00110{bottom:59.672000pt;}
.ya3_c00110{bottom:76.229333pt;}
.ya2_c00110{bottom:93.662667pt;}
.ya1_c00110{bottom:108.420000pt;}
.y9c_c00110{bottom:121.440000pt;}
.y9d_c00110{bottom:121.648000pt;}
.y9e_c00110{bottom:123.340000pt;}
.y9f_c00110{bottom:124.025333pt;}
.ya0_c00110{bottom:124.200000pt;}
.y9b_c00110{bottom:138.657333pt;}
.y9a_c00110{bottom:139.722667pt;}
.y99_c00110{bottom:139.885333pt;}
.y98_c00110{bottom:140.408000pt;}
.y97_c00110{bottom:140.878667pt;}
.y91_c00110{bottom:150.530667pt;}
.y92_c00110{bottom:150.833333pt;}
.y93_c00110{bottom:152.036000pt;}
.y94_c00110{bottom:152.386667pt;}
.y95_c00110{bottom:152.928000pt;}
.y96_c00110{bottom:154.090667pt;}
.y90_c00110{bottom:170.336000pt;}
.y8f_c00110{bottom:185.350667pt;}
.y8e_c00110{bottom:200.909333pt;}
.y8d_c00110{bottom:216.598667pt;}
.y8c_c00110{bottom:232.457333pt;}
.y85_c00110{bottom:246.961333pt;}
.y86_c00110{bottom:247.563440pt;}
.y87_c00110{bottom:247.914133pt;}
.y88_c00110{bottom:248.300080pt;}
.y89_c00110{bottom:248.518560pt;}
.y8a_c00110{bottom:249.125760pt;}
.y8b_c00110{bottom:249.262667pt;}
.y84_c00110{bottom:264.290667pt;}
.y7a_c00110{bottom:278.327187pt;}
.y7b_c00110{bottom:279.408867pt;}
.y7c_c00110{bottom:279.959907pt;}
.y7d_c00110{bottom:280.330867pt;}
.y7e_c00110{bottom:280.935920pt;}
.y7f_c00110{bottom:281.714853pt;}
.y80_c00110{bottom:281.930400pt;}
.y72_c00110{bottom:290.336907pt;}
.y73_c00110{bottom:291.090147pt;}
.y74_c00110{bottom:291.584800pt;}
.y75_c00110{bottom:292.237400pt;}
.y76_c00110{bottom:293.716720pt;}
.y77_c00110{bottom:295.109493pt;}
.y78_c00110{bottom:295.607067pt;}
.y79_c00110{bottom:296.961440pt;}
.y69_c00110{bottom:307.361147pt;}
.y6a_c00110{bottom:308.943133pt;}
.y6b_c00110{bottom:309.424427pt;}
.y6c_c00110{bottom:310.481187pt;}
.y6d_c00110{bottom:311.803160pt;}
.y6e_c00110{bottom:312.639840pt;}
.y6f_c00110{bottom:313.100307pt;}
.y70_c00110{bottom:313.983080pt;}
.y71_c00110{bottom:314.179427pt;}
.y83_c00110{bottom:316.196000pt;}
.y61_c00110{bottom:322.749440pt;}
.y82_c00110{bottom:322.800000pt;}
.y62_c00110{bottom:323.384320pt;}
.y63_c00110{bottom:324.176747pt;}
.y64_c00110{bottom:325.281467pt;}
.y65_c00110{bottom:325.741773pt;}
.y66_c00110{bottom:326.729733pt;}
.y67_c00110{bottom:326.886667pt;}
.y68_c00110{bottom:327.649173pt;}
.y81_c00110{bottom:331.440000pt;}
.y5b_c00110{bottom:333.565600pt;}
.y5c_c00110{bottom:335.924400pt;}
.y5d_c00110{bottom:336.752680pt;}
.y5e_c00110{bottom:338.422960pt;}
.y5f_c00110{bottom:339.072400pt;}
.y60_c00110{bottom:340.887280pt;}
.y51_c00110{bottom:352.043493pt;}
.y52_c00110{bottom:352.671800pt;}
.y53_c00110{bottom:353.309747pt;}
.y54_c00110{bottom:353.947480pt;}
.y55_c00110{bottom:354.945747pt;}
.y56_c00110{bottom:355.574067pt;}
.y57_c00110{bottom:356.155773pt;}
.y58_c00110{bottom:357.250133pt;}
.y59_c00110{bottom:357.557067pt;}
.y5a_c00110{bottom:358.684973pt;}
.y49_c00110{bottom:366.936147pt;}
.y4a_c00110{bottom:367.953787pt;}
.y4b_c00110{bottom:368.634187pt;}
.y4c_c00110{bottom:370.159907pt;}
.y4d_c00110{bottom:370.571867pt;}
.y4e_c00110{bottom:372.011667pt;}
.y4f_c00110{bottom:372.582787pt;}
.y50_c00110{bottom:374.274907pt;}
.y40_c00110{bottom:383.264347pt;}
.y41_c00110{bottom:384.812507pt;}
.y42_c00110{bottom:385.535507pt;}
.y43_c00110{bottom:386.034107pt;}
.y44_c00110{bottom:386.575947pt;}
.y45_c00110{bottom:387.496080pt;}
.y46_c00110{bottom:388.224747pt;}
.y47_c00110{bottom:388.669493pt;}
.y48_c00110{bottom:389.309027pt;}
.y38_c00110{bottom:400.305040pt;}
.y39_c00110{bottom:400.866640pt;}
.y3a_c00110{bottom:402.129373pt;}
.y3b_c00110{bottom:402.465533pt;}
.y3c_c00110{bottom:402.849693pt;}
.y3d_c00110{bottom:403.983547pt;}
.y3e_c00110{bottom:405.001813pt;}
.y3f_c00110{bottom:405.212640pt;}
.y31_c00110{bottom:414.474493pt;}
.y32_c00110{bottom:415.533627pt;}
.y33_c00110{bottom:415.753053pt;}
.y34_c00110{bottom:417.126787pt;}
.y35_c00110{bottom:418.978187pt;}
.y36_c00110{bottom:419.612493pt;}
.y37_c00110{bottom:420.535080pt;}
.y2b_c00110{bottom:428.406293pt;}
.y2c_c00110{bottom:429.306173pt;}
.y2d_c00110{bottom:430.447640pt;}
.y2e_c00110{bottom:432.353507pt;}
.y2f_c00110{bottom:434.462667pt;}
.y30_c00110{bottom:435.833080pt;}
.y24_c00110{bottom:444.492000pt;}
.y25_c00110{bottom:446.257880pt;}
.y26_c00110{bottom:446.798520pt;}
.y27_c00110{bottom:448.098240pt;}
.y28_c00110{bottom:448.715200pt;}
.y29_c00110{bottom:449.878000pt;}
.y2a_c00110{bottom:451.240120pt;}
.y1b_c00110{bottom:461.049333pt;}
.y1c_c00110{bottom:461.505173pt;}
.y1d_c00110{bottom:462.533109pt;}
.y1e_c00110{bottom:463.826933pt;}
.y1f_c00110{bottom:464.186715pt;}
.y20_c00110{bottom:464.591445pt;}
.y21_c00110{bottom:466.106955pt;}
.y22_c00110{bottom:467.118501pt;}
.y23_c00110{bottom:467.636501pt;}
.y11_c00110{bottom:477.116687pt;}
.y12_c00110{bottom:478.176801pt;}
.y13_c00110{bottom:478.459415pt;}
.y14_c00110{bottom:479.257471pt;}
.y15_c00110{bottom:479.755635pt;}
.y16_c00110{bottom:480.296780pt;}
.y17_c00110{bottom:481.434829pt;}
.y18_c00110{bottom:481.771403pt;}
.y19_c00110{bottom:482.500128pt;}
.y1a_c00110{bottom:482.871295pt;}
.y9_c00110{bottom:491.293668pt;}
.ya_c00110{bottom:492.654201pt;}
.yb_c00110{bottom:493.587673pt;}
.yc_c00110{bottom:495.321085pt;}
.yd_c00110{bottom:495.781161pt;}
.ye_c00110{bottom:496.341468pt;}
.yf_c00110{bottom:497.049133pt;}
.y10_c00110{bottom:497.566885pt;}
.y4_c00110{bottom:506.412151pt;}
.y5_c00110{bottom:509.288568pt;}
.y6_c00110{bottom:510.166313pt;}
.y1_c00110{bottom:511.218667pt;}
.y7_c00110{bottom:512.165129pt;}
.y8_c00110{bottom:513.351659pt;}
.y2_c00110{bottom:513.650755pt;}
.y3_c00110{bottom:514.061659pt;}
.h10_c00110{height:24.266667pt;}
.hf_c00110{height:27.066667pt;}
.hc_c00110{height:27.078844pt;}
.hd_c00110{height:52.290181pt;}
.h19_c00110{height:53.200000pt;}
.h8_c00110{height:53.223935pt;}
.h16_c00110{height:55.066667pt;}
.hb_c00110{height:55.091441pt;}
.h1b_c00110{height:56.000000pt;}
.h12_c00110{height:56.002800pt;}
.h4_c00110{height:56.020408pt;}
.h6_c00110{height:56.025194pt;}
.h1a_c00110{height:56.933333pt;}
.h2_c00110{height:57.887755pt;}
.h15_c00110{height:58.800000pt;}
.h18_c00110{height:59.733333pt;}
.h1d_c00110{height:59.737634pt;}
.h13_c00110{height:60.666667pt;}
.h9_c00110{height:60.693961pt;}
.h1c_c00110{height:61.600000pt;}
.h1_c00110{height:62.556123pt;}
.ha_c00110{height:62.561467pt;}
.h14_c00110{height:63.466667pt;}
.h7_c00110{height:63.495220pt;}
.h11_c00110{height:64.400000pt;}
.h3_c00110{height:64.423470pt;}
.he_c00110{height:64.428973pt;}
.h17_c00110{height:65.333333pt;}
.h5_c00110{height:66.292638pt;}
.h1e_c00110{height:67.204838pt;}
.h0_c00110{height:564.000000pt;}
.w0_c00110{width:330.480000pt;}
.w1_c00110{width:330.666667pt;}
.x0_c00110{left:0.000000pt;}
.x4e_c00110{left:22.320000pt;}
.x57_c00110{left:25.680000pt;}
.x39_c00110{left:27.406067pt;}
.x4_c00110{left:29.193759pt;}
.x2d_c00110{left:30.188280pt;}
.x5d_c00110{left:31.200000pt;}
.x6d_c00110{left:34.242667pt;}
.x7b_c00110{left:35.999872pt;}
.x5e_c00110{left:44.640000pt;}
.x18_c00110{left:45.916000pt;}
.x6a_c00110{left:49.232000pt;}
.x77_c00110{left:52.206667pt;}
.x34_c00110{left:53.730400pt;}
.x46_c00110{left:55.567173pt;}
.x21_c00110{left:57.604920pt;}
.x74_c00110{left:58.562667pt;}
.x71_c00110{left:59.522667pt;}
.x3c_c00110{left:63.434293pt;}
.x31_c00110{left:64.325880pt;}
.x6b_c00110{left:68.186667pt;}
.x78_c00110{left:69.988000pt;}
.xf_c00110{left:71.244857pt;}
.x47_c00110{left:73.879480pt;}
.x9_c00110{left:76.391335pt;}
.x26_c00110{left:78.792867pt;}
.x4f_c00110{left:81.600000pt;}
.x10_c00110{left:82.552136pt;}
.x58_c00110{left:84.000000pt;}
.x62_c00110{left:84.960000pt;}
.x41_c00110{left:85.936707pt;}
.x1d_c00110{left:87.825333pt;}
.x53_c00110{left:90.328000pt;}
.x22_c00110{left:93.296133pt;}
.x59_c00110{left:95.760000pt;}
.x48_c00110{left:98.034973pt;}
.x7c_c00110{left:101.523979pt;}
.x35_c00110{left:102.792280pt;}
.x67_c00110{left:104.880000pt;}
.x1e_c00110{left:105.846667pt;}
.x4a_c00110{left:106.987533pt;}
.xa_c00110{left:108.592273pt;}
.x11_c00110{left:114.481864pt;}
.x5a_c00110{left:115.920000pt;}
.x5f_c00110{left:117.600000pt;}
.x5_c00110{left:119.073627pt;}
.x29_c00110{left:120.449333pt;}
.x68_c00110{left:122.640000pt;}
.x54_c00110{left:125.397333pt;}
.x63_c00110{left:126.720000pt;}
.x19_c00110{left:128.836000pt;}
.x27_c00110{left:131.612520pt;}
.x2e_c00110{left:132.789520pt;}
.x12_c00110{left:134.414944pt;}
.x7d_c00110{left:135.846256pt;}
.x2a_c00110{left:137.259707pt;}
.x79_c00110{left:139.809333pt;}
.x1a_c00110{left:141.685333pt;}
.x6c_c00110{left:143.393333pt;}
.x64_c00110{left:144.960000pt;}
.x6_c00110{left:146.492585pt;}
.x1_c00110{left:148.058667pt;}
.x1f_c00110{left:149.170667pt;}
.x32_c00110{left:151.595213pt;}
.x23_c00110{left:152.865907pt;}
.x50_c00110{left:154.320000pt;}
.x13_c00110{left:156.038763pt;}
.x60_c00110{left:160.800000pt;}
.x3d_c00110{left:163.283213pt;}
.x36_c00110{left:165.330427pt;}
.xb_c00110{left:168.345033pt;}
.x20_c00110{left:169.736000pt;}
.x4b_c00110{left:172.819093pt;}
.x51_c00110{left:176.880000pt;}
.xc_c00110{left:184.198836pt;}
.x55_c00110{left:185.840000pt;}
.x2f_c00110{left:186.949067pt;}
.x42_c00110{left:188.121533pt;}
.x3a_c00110{left:189.318067pt;}
.x73_c00110{left:191.522667pt;}
.x75_c00110{left:192.962667pt;}
.x33_c00110{left:199.588547pt;}
.x65_c00110{left:200.640000pt;}
.x14_c00110{left:201.549211pt;}
.xd_c00110{left:203.517792pt;}
.x6f_c00110{left:207.034667pt;}
.x7_c00110{left:208.958828pt;}
.x1b_c00110{left:210.265333pt;}
.x2b_c00110{left:213.171800pt;}
.x15_c00110{left:215.003264pt;}
.x4c_c00110{left:216.030480pt;}
.x24_c00110{left:218.767280pt;}
.x61_c00110{left:221.280000pt;}
.x49_c00110{left:222.812840pt;}
.xe_c00110{left:227.899127pt;}
.x30_c00110{left:230.422320pt;}
.x76_c00110{left:232.082667pt;}
.x43_c00110{left:234.473667pt;}
.x2_c00110{left:238.136000pt;}
.x3e_c00110{left:239.495000pt;}
.x37_c00110{left:241.572880pt;}
.x16_c00110{left:244.167515pt;}
.x8_c00110{left:246.035157pt;}
.x3f_c00110{left:247.751053pt;}
.x5b_c00110{left:251.520000pt;}
.x3_c00110{left:253.354667pt;}
.x72_c00110{left:255.122667pt;}
.x6e_c00110{left:256.438667pt;}
.x17_c00110{left:259.001640pt;}
.x56_c00110{left:260.250667pt;}
.x25_c00110{left:261.600720pt;}
.x28_c00110{left:262.660200pt;}
.x52_c00110{left:264.000000pt;}
.x1c_c00110{left:264.892000pt;}
.x44_c00110{left:265.990213pt;}
.x66_c00110{left:267.120000pt;}
.x70_c00110{left:269.390667pt;}
.x3b_c00110{left:271.462067pt;}
.x45_c00110{left:272.979947pt;}
.x2c_c00110{left:274.648907pt;}
.x7a_c00110{left:276.394667pt;}
.x38_c00110{left:284.952747pt;}
.x40_c00110{left:287.892293pt;}
.x69_c00110{left:289.440000pt;}
.x5c_c00110{left:291.600000pt;}
.x4d_c00110{left:292.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00111 {
    display:none;
  }
  .loading-indicator_c00111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00111 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00111 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00111" -> "#page-container .classname_c00111")
 */
.pf_c00111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00111 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00111 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00111 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00111 {overflow:visible;}
  }
}
.c_c00111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00111 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00111:after { /* webkit #35443 */
  content: '';
}
.t_c00111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00111 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00111 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00111 { /* info for Javascript */
  display:none;
}
.l_c00111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00111:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00111 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00111.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.meb_c00111{transform:matrix(0.078405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078405,0.000000,0.000000,0.250000,0,0);}
.mdf_c00111{transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);}
.med_c00111{transform:matrix(0.095830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095830,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.100343,0.002107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.100343,0.002107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.100343,0.002107,-0.005249,0.249945,0,0);}
.m89_c00111{transform:matrix(0.119010,0.003094,-0.006498,0.249916,0,0);-ms-transform:matrix(0.119010,0.003094,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.119010,0.003094,-0.006498,0.249916,0,0);}
.m48_c00111{transform:matrix(0.123438,0.002592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.123438,0.002592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.123438,0.002592,-0.005249,0.249945,0,0);}
.m8d_c00111{transform:matrix(0.129924,0.003638,-0.006997,0.249902,0,0);-ms-transform:matrix(0.129924,0.003638,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.129924,0.003638,-0.006997,0.249902,0,0);}
.m71_c00111{transform:matrix(0.136457,0.003002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.136457,0.003002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.136457,0.003002,-0.005499,0.249940,0,0);}
.m80_c00111{transform:matrix(0.137309,0.003570,-0.006498,0.249916,0,0);-ms-transform:matrix(0.137309,0.003570,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.137309,0.003570,-0.006498,0.249916,0,0);}
.m81_c00111{transform:matrix(0.140313,0.003648,-0.006498,0.249916,0,0);-ms-transform:matrix(0.140313,0.003648,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.140313,0.003648,-0.006498,0.249916,0,0);}
.m96_c00111{transform:matrix(0.140480,0.003933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.140480,0.003933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.140480,0.003933,-0.006997,0.249902,0,0);}
.m1b_c00111{transform:matrix(0.141064,0.003809,-0.006748,0.249909,0,0);-ms-transform:matrix(0.141064,0.003809,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.141064,0.003809,-0.006748,0.249909,0,0);}
.m83_c00111{transform:matrix(0.142472,0.003704,-0.006498,0.249916,0,0);-ms-transform:matrix(0.142472,0.003704,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.142472,0.003704,-0.006498,0.249916,0,0);}
.m8e_c00111{transform:matrix(0.143789,0.004026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.143789,0.004026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.143789,0.004026,-0.006997,0.249902,0,0);}
.m5f_c00111{transform:matrix(0.144018,0.003024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.144018,0.003024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.144018,0.003024,-0.005249,0.249945,0,0);}
.m49_c00111{transform:matrix(0.146728,0.003081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.146728,0.003081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.146728,0.003081,-0.005249,0.249945,0,0);}
.m8f_c00111{transform:matrix(0.148167,0.004149,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148167,0.004149,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148167,0.004149,-0.006997,0.249902,0,0);}
.mb2_c00111{transform:matrix(0.148303,0.004301,-0.007247,0.249895,0,0);-ms-transform:matrix(0.148303,0.004301,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.148303,0.004301,-0.007247,0.249895,0,0);}
.m95_c00111{transform:matrix(0.148472,0.004157,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148472,0.004157,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148472,0.004157,-0.006997,0.249902,0,0);}
.ma0_c00111{transform:matrix(0.149132,0.004325,-0.007247,0.249895,0,0);-ms-transform:matrix(0.149132,0.004325,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.149132,0.004325,-0.007247,0.249895,0,0);}
.m62_c00111{transform:matrix(0.149497,0.003139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149497,0.003139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149497,0.003139,-0.005249,0.249945,0,0);}
.mb5_c00111{transform:matrix(0.150717,0.004371,-0.007247,0.249895,0,0);-ms-transform:matrix(0.150717,0.004371,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.150717,0.004371,-0.007247,0.249895,0,0);}
.m44_c00111{transform:matrix(0.151567,0.003183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.151567,0.003183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.151567,0.003183,-0.005249,0.249945,0,0);}
.mb8_c00111{transform:matrix(0.152186,0.004413,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152186,0.004413,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152186,0.004413,-0.007247,0.249895,0,0);}
.m17_c00111{transform:matrix(0.152285,0.004112,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152285,0.004112,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152285,0.004112,-0.006748,0.249909,0,0);}
.m92_c00111{transform:matrix(0.152340,0.004266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.152340,0.004266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.152340,0.004266,-0.006997,0.249902,0,0);}
.m94_c00111{transform:matrix(0.153275,0.004292,-0.006997,0.249902,0,0);-ms-transform:matrix(0.153275,0.004292,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.153275,0.004292,-0.006997,0.249902,0,0);}
.mb0_c00111{transform:matrix(0.153306,0.004446,-0.007247,0.249895,0,0);-ms-transform:matrix(0.153306,0.004446,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.153306,0.004446,-0.007247,0.249895,0,0);}
.m66_c00111{transform:matrix(0.153466,0.003223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153466,0.003223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153466,0.003223,-0.005249,0.249945,0,0);}
.m6c_c00111{transform:matrix(0.154146,0.003237,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154146,0.003237,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154146,0.003237,-0.005249,0.249945,0,0);}
.mcc_c00111{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m5b_c00111{transform:matrix(0.154756,0.003250,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154756,0.003250,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154756,0.003250,-0.005249,0.249945,0,0);}
.m16_c00111{transform:matrix(0.155163,0.004189,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155163,0.004189,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155163,0.004189,-0.006748,0.249909,0,0);}
.ma_c00111{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.155711,0.003270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155711,0.003270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155711,0.003270,-0.005249,0.249945,0,0);}
.m61_c00111{transform:matrix(0.155941,0.003275,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155941,0.003275,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155941,0.003275,-0.005249,0.249945,0,0);}
.m7e_c00111{transform:matrix(0.156792,0.004077,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156792,0.004077,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156792,0.004077,-0.006498,0.249916,0,0);}
.md_c00111{transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);}
.ma7_c00111{transform:matrix(0.158233,0.004589,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158233,0.004589,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158233,0.004589,-0.007247,0.249895,0,0);}
.ma6_c00111{transform:matrix(0.158588,0.004599,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158588,0.004599,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158588,0.004599,-0.007247,0.249895,0,0);}
.m43_c00111{transform:matrix(0.159975,0.003359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159975,0.003359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159975,0.003359,-0.005249,0.249945,0,0);}
.m90_c00111{transform:matrix(0.160312,0.004489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160312,0.004489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160312,0.004489,-0.006997,0.249902,0,0);}
.m45_c00111{transform:matrix(0.161034,0.003382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161034,0.003382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161034,0.003382,-0.005249,0.249945,0,0);}
.me8_c00111{transform:matrix(0.161617,0.002424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161617,0.002424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161617,0.002424,-0.003750,0.249972,0,0);}
.m79_c00111{transform:matrix(0.161937,0.004534,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161937,0.004534,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161937,0.004534,-0.006997,0.249902,0,0);}
.mcd_c00111{transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.162254,0.003407,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162254,0.003407,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162254,0.003407,-0.005249,0.249945,0,0);}
.m60_c00111{transform:matrix(0.163129,0.003426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163129,0.003426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163129,0.003426,-0.005249,0.249945,0,0);}
.m4c_c00111{transform:matrix(0.163784,0.003439,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163784,0.003439,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163784,0.003439,-0.005249,0.249945,0,0);}
.m57_c00111{transform:matrix(0.164049,0.003445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164049,0.003445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164049,0.003445,-0.005249,0.249945,0,0);}
.m9d_c00111{transform:matrix(0.165056,0.004787,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165056,0.004787,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165056,0.004787,-0.007247,0.249895,0,0);}
.mad_c00111{transform:matrix(0.165490,0.004799,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165490,0.004799,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165490,0.004799,-0.007247,0.249895,0,0);}
.md0_c00111{transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);}
.mce_c00111{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m67_c00111{transform:matrix(0.167103,0.003509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167103,0.003509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167103,0.003509,-0.005249,0.249945,0,0);}
.mc8_c00111{transform:matrix(0.167264,0.002342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167264,0.002342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167264,0.002342,-0.003500,0.249976,0,0);}
.mb1_c00111{transform:matrix(0.167530,0.004858,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167530,0.004858,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167530,0.004858,-0.007247,0.249895,0,0);}
.mbb_c00111{transform:matrix(0.167964,0.004871,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167964,0.004871,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167964,0.004871,-0.007247,0.249895,0,0);}
.maf_c00111{transform:matrix(0.168149,0.004876,-0.007247,0.249895,0,0);-ms-transform:matrix(0.168149,0.004876,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.168149,0.004876,-0.007247,0.249895,0,0);}
.m42_c00111{transform:matrix(0.168658,0.003542,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168658,0.003542,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168658,0.003542,-0.005249,0.249945,0,0);}
.m58_c00111{transform:matrix(0.168698,0.003543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168698,0.003543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168698,0.003543,-0.005249,0.249945,0,0);}
.mae_c00111{transform:matrix(0.168764,0.004894,-0.007247,0.249895,0,0);-ms-transform:matrix(0.168764,0.004894,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.168764,0.004894,-0.007247,0.249895,0,0);}
.mb6_c00111{transform:matrix(0.169484,0.004915,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169484,0.004915,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169484,0.004915,-0.007247,0.249895,0,0);}
.m3f_c00111{transform:matrix(0.169583,0.003561,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169583,0.003561,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169583,0.003561,-0.005249,0.249945,0,0);}
.m3_c00111{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.mdd_c00111{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.mb9_c00111{transform:matrix(0.171358,0.004969,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171358,0.004969,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171358,0.004969,-0.007247,0.249895,0,0);}
.m63_c00111{transform:matrix(0.172027,0.003613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172027,0.003613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172027,0.003613,-0.005249,0.249945,0,0);}
.m2e_c00111{transform:matrix(0.172172,0.003616,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172172,0.003616,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172172,0.003616,-0.005249,0.249945,0,0);}
.m19_c00111{transform:matrix(0.172197,0.004649,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172197,0.004649,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172197,0.004649,-0.006748,0.249909,0,0);}
.m6a_c00111{transform:matrix(0.172432,0.003621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172432,0.003621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172432,0.003621,-0.005249,0.249945,0,0);}
.m1a_c00111{transform:matrix(0.173592,0.004687,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173592,0.004687,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173592,0.004687,-0.006748,0.249909,0,0);}
.m5c_c00111{transform:matrix(0.173857,0.003651,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173857,0.003651,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173857,0.003651,-0.005249,0.249945,0,0);}
.md9_c00111{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m50_c00111{transform:matrix(0.174202,0.003658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174202,0.003658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174202,0.003658,-0.005249,0.249945,0,0);}
.m54_c00111{transform:matrix(0.174252,0.003659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174252,0.003659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174252,0.003659,-0.005249,0.249945,0,0);}
.m2_c00111{transform:matrix(0.174385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174385,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.174415,0.003488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174415,0.003488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174415,0.003488,-0.004999,0.249950,0,0);}
.mb3_c00111{transform:matrix(0.174582,0.005063,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174582,0.005063,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174582,0.005063,-0.007247,0.249895,0,0);}
.m74_c00111{transform:matrix(0.174643,0.003842,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174643,0.003842,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174643,0.003842,-0.005499,0.249940,0,0);}
.m14_c00111{transform:matrix(0.174755,0.003495,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174755,0.003495,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174755,0.003495,-0.004999,0.249950,0,0);}
.m5e_c00111{transform:matrix(0.174986,0.003675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174986,0.003675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174986,0.003675,-0.005249,0.249945,0,0);}
.m8a_c00111{transform:matrix(0.175036,0.004551,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175036,0.004551,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175036,0.004551,-0.006498,0.249916,0,0);}
.m7c_c00111{transform:matrix(0.175421,0.004912,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175421,0.004912,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175421,0.004912,-0.006997,0.249902,0,0);}
.m93_c00111{transform:matrix(0.175676,0.004919,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175676,0.004919,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175676,0.004919,-0.006997,0.249902,0,0);}
.m2a_c00111{transform:matrix(0.175971,0.003695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175971,0.003695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175971,0.003695,-0.005249,0.249945,0,0);}
.m9c_c00111{transform:matrix(0.176431,0.005116,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176431,0.005116,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176431,0.005116,-0.007247,0.249895,0,0);}
.me_c00111{transform:matrix(0.176680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176680,0.000000,0.000000,0.250000,0,0);}
.m6b_c00111{transform:matrix(0.176731,0.003711,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176731,0.003711,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176731,0.003711,-0.005249,0.249945,0,0);}
.m1c_c00111{transform:matrix(0.176911,0.004777,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176911,0.004777,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176911,0.004777,-0.006748,0.249909,0,0);}
.m2f_c00111{transform:matrix(0.177376,0.003725,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177376,0.003725,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177376,0.003725,-0.005249,0.249945,0,0);}
.m7f_c00111{transform:matrix(0.177540,0.004616,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177540,0.004616,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177540,0.004616,-0.006498,0.249916,0,0);}
.m59_c00111{transform:matrix(0.177741,0.003733,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177741,0.003733,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177741,0.003733,-0.005249,0.249945,0,0);}
.m64_c00111{transform:matrix(0.177811,0.003734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177811,0.003734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177811,0.003734,-0.005249,0.249945,0,0);}
.mbc_c00111{transform:matrix(0.178070,0.005164,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178070,0.005164,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178070,0.005164,-0.007247,0.249895,0,0);}
.m4d_c00111{transform:matrix(0.178341,0.003745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178341,0.003745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178341,0.003745,-0.005249,0.249945,0,0);}
.m5_c00111{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.178814,0.003576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178814,0.003576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178814,0.003576,-0.004999,0.249950,0,0);}
.m3b_c00111{transform:matrix(0.179041,0.003760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179041,0.003760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179041,0.003760,-0.005249,0.249945,0,0);}
.m82_c00111{transform:matrix(0.179159,0.004658,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179159,0.004658,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179159,0.004658,-0.006498,0.249916,0,0);}
.me0_c00111{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.m84_c00111{transform:matrix(0.180194,0.004685,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180194,0.004685,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180194,0.004685,-0.006498,0.249916,0,0);}
.m18_c00111{transform:matrix(0.180714,0.004879,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180714,0.004879,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180714,0.004879,-0.006748,0.249909,0,0);}
.ma3_c00111{transform:matrix(0.180894,0.005246,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180894,0.005246,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180894,0.005246,-0.007247,0.249895,0,0);}
.mb7_c00111{transform:matrix(0.180909,0.005246,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180909,0.005246,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180909,0.005246,-0.007247,0.249895,0,0);}
.m72_c00111{transform:matrix(0.181241,0.003987,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181241,0.003987,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181241,0.003987,-0.005499,0.249940,0,0);}
.m47_c00111{transform:matrix(0.182100,0.003824,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182100,0.003824,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182100,0.003824,-0.005249,0.249945,0,0);}
.mac_c00111{transform:matrix(0.182153,0.005282,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182153,0.005282,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182153,0.005282,-0.007247,0.249895,0,0);}
.m9a_c00111{transform:matrix(0.182468,0.005292,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182468,0.005292,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182468,0.005292,-0.007247,0.249895,0,0);}
.me2_c00111{transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);}
.me4_c00111{transform:matrix(0.183239,0.002749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183239,0.002749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183239,0.002749,-0.003750,0.249972,0,0);}
.m7_c00111{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.m5a_c00111{transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);}
.md5_c00111{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.md4_c00111{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.185914,0.003904,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185914,0.003904,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185914,0.003904,-0.005249,0.249945,0,0);}
.mdc_c00111{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186569,0.003918,-0.005249,0.249945,0,0);}
.mab_c00111{transform:matrix(0.186831,0.005418,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186831,0.005418,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186831,0.005418,-0.007247,0.249895,0,0);}
.m34_c00111{transform:matrix(0.186894,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186894,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186894,0.003925,-0.005249,0.249945,0,0);}
.m4_c00111{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.ma4_c00111{transform:matrix(0.187231,0.005430,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187231,0.005430,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187231,0.005430,-0.007247,0.249895,0,0);}
.m40_c00111{transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);}
.m1d_c00111{transform:matrix(0.189241,0.005110,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189241,0.005110,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189241,0.005110,-0.006748,0.249909,0,0);}
.mf_c00111{transform:matrix(0.189787,0.003796,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189787,0.003796,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189787,0.003796,-0.004999,0.249950,0,0);}
.m5d_c00111{transform:matrix(0.191108,0.004013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191108,0.004013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191108,0.004013,-0.005249,0.249945,0,0);}
.m69_c00111{transform:matrix(0.191913,0.004030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191913,0.004030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191913,0.004030,-0.005249,0.249945,0,0);}
.me9_c00111{transform:matrix(0.193128,0.002897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193128,0.002897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193128,0.002897,-0.003750,0.249972,0,0);}
.m70_c00111{transform:matrix(0.193323,0.004253,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193323,0.004253,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193323,0.004253,-0.005499,0.249940,0,0);}
.mba_c00111{transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194278,0.005634,-0.007247,0.249895,0,0);}
.m1e_c00111{transform:matrix(0.194678,0.004283,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194678,0.004283,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194678,0.004283,-0.005499,0.249940,0,0);}
.m91_c00111{transform:matrix(0.195084,0.005462,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195084,0.005462,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195084,0.005462,-0.006997,0.249902,0,0);}
.me5_c00111{transform:matrix(0.195438,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195438,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195438,0.002932,-0.003750,0.249972,0,0);}
.m30_c00111{transform:matrix(0.195652,0.004109,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195652,0.004109,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195652,0.004109,-0.005249,0.249945,0,0);}
.ma9_c00111{transform:matrix(0.195723,0.005676,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195723,0.005676,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195723,0.005676,-0.007247,0.249895,0,0);}
.m0_c00111{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);}
.mcf_c00111{transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.197062,0.004138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197062,0.004138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197062,0.004138,-0.005249,0.249945,0,0);}
.mc2_c00111{transform:matrix(0.197322,0.005722,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197322,0.005722,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197322,0.005722,-0.007247,0.249895,0,0);}
.me1_c00111{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{transform:matrix(0.198112,0.005547,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198112,0.005547,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198112,0.005547,-0.006997,0.249902,0,0);}
.m2d_c00111{transform:matrix(0.199476,0.004189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199476,0.004189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199476,0.004189,-0.005249,0.249945,0,0);}
.mc1_c00111{transform:matrix(0.199491,0.005785,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199491,0.005785,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199491,0.005785,-0.007247,0.249895,0,0);}
.m73_c00111{transform:matrix(0.199557,0.004390,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199557,0.004390,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199557,0.004390,-0.005499,0.249940,0,0);}
.m75_c00111{transform:matrix(0.199987,0.004400,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199987,0.004400,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199987,0.004400,-0.005499,0.249940,0,0);}
.mb4_c00111{transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);}
.m32_c00111{transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);}
.m68_c00111{transform:matrix(0.200681,0.004214,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200681,0.004214,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200681,0.004214,-0.005249,0.249945,0,0);}
.mca_c00111{transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);}
.md7_c00111{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.mbe_c00111{transform:matrix(0.201530,0.005844,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201530,0.005844,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201530,0.005844,-0.007247,0.249895,0,0);}
.mc3_c00111{transform:matrix(0.201765,0.005851,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201765,0.005851,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201765,0.005851,-0.007247,0.249895,0,0);}
.m3d_c00111{transform:matrix(0.202905,0.004261,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202905,0.004261,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202905,0.004261,-0.005249,0.249945,0,0);}
.m24_c00111{transform:matrix(0.202966,0.004465,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202966,0.004465,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202966,0.004465,-0.005499,0.249940,0,0);}
.ma5_c00111{transform:matrix(0.203325,0.005896,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203325,0.005896,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203325,0.005896,-0.007247,0.249895,0,0);}
.m9_c00111{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.204669,0.004093,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204669,0.004093,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204669,0.004093,-0.004999,0.249950,0,0);}
.mdb_c00111{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.205094,0.004102,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205094,0.004102,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205094,0.004102,-0.004999,0.249950,0,0);}
.m86_c00111{transform:matrix(0.205591,0.005345,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205591,0.005345,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205591,0.005345,-0.006498,0.249916,0,0);}
.m25_c00111{transform:matrix(0.206125,0.004329,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206125,0.004329,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206125,0.004329,-0.005249,0.249945,0,0);}
.m2b_c00111{transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);}
.md6_c00111{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.maa_c00111{transform:matrix(0.206843,0.005998,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206843,0.005998,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206843,0.005998,-0.007247,0.249895,0,0);}
.mde_c00111{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{transform:matrix(0.207544,0.004358,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207544,0.004358,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207544,0.004358,-0.005249,0.249945,0,0);}
.m6f_c00111{transform:matrix(0.207900,0.004574,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207900,0.004574,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207900,0.004574,-0.005499,0.249940,0,0);}
.m36_c00111{transform:matrix(0.208159,0.004371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208159,0.004371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208159,0.004371,-0.005249,0.249945,0,0);}
.m98_c00111{transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);}
.md8_c00111{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.210044,0.004621,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210044,0.004621,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210044,0.004621,-0.005499,0.249940,0,0);}
.me3_c00111{transform:matrix(0.210216,0.003153,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210216,0.003153,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210216,0.003153,-0.003750,0.249972,0,0);}
.m27_c00111{transform:matrix(0.210918,0.004429,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210918,0.004429,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210918,0.004429,-0.005249,0.249945,0,0);}
.m39_c00111{transform:matrix(0.211083,0.004433,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211083,0.004433,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211083,0.004433,-0.005249,0.249945,0,0);}
.mc4_c00111{transform:matrix(0.211221,0.006125,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211221,0.006125,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211221,0.006125,-0.007247,0.249895,0,0);}
.m33_c00111{transform:matrix(0.211813,0.004448,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211813,0.004448,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211813,0.004448,-0.005249,0.249945,0,0);}
.m29_c00111{transform:matrix(0.212168,0.004456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212168,0.004456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212168,0.004456,-0.005249,0.249945,0,0);}
.ma8_c00111{transform:matrix(0.213295,0.006186,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213295,0.006186,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213295,0.006186,-0.007247,0.249895,0,0);}
.m26_c00111{transform:matrix(0.214028,0.004495,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214028,0.004495,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214028,0.004495,-0.005249,0.249945,0,0);}
.m41_c00111{transform:matrix(0.214443,0.004503,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214443,0.004503,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214443,0.004503,-0.005249,0.249945,0,0);}
.m85_c00111{transform:matrix(0.215147,0.005594,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215147,0.005594,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215147,0.005594,-0.006498,0.249916,0,0);}
.ma2_c00111{transform:matrix(0.215215,0.006241,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215215,0.006241,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215215,0.006241,-0.007247,0.249895,0,0);}
.m3a_c00111{transform:matrix(0.215632,0.004528,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215632,0.004528,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215632,0.004528,-0.005249,0.249945,0,0);}
.mc0_c00111{transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);}
.m35_c00111{transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);}
.me7_c00111{transform:matrix(0.216871,0.003253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216871,0.003253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216871,0.003253,-0.003750,0.249972,0,0);}
.mbd_c00111{transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217768,0.006315,-0.007247,0.249895,0,0);}
.m31_c00111{transform:matrix(0.218752,0.004594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218752,0.004594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218752,0.004594,-0.005249,0.249945,0,0);}
.m37_c00111{transform:matrix(0.218777,0.004594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218777,0.004594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218777,0.004594,-0.005249,0.249945,0,0);}
.m21_c00111{transform:matrix(0.221506,0.004873,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221506,0.004873,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221506,0.004873,-0.005499,0.249940,0,0);}
.mbf_c00111{transform:matrix(0.223206,0.006473,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223206,0.006473,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223206,0.006473,-0.007247,0.249895,0,0);}
.m51_c00111{transform:matrix(0.223751,0.004699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223751,0.004699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223751,0.004699,-0.005249,0.249945,0,0);}
.mc9_c00111{transform:matrix(0.223838,0.003134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223838,0.003134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223838,0.003134,-0.003500,0.249976,0,0);}
.m38_c00111{transform:matrix(0.223886,0.004702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223886,0.004702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223886,0.004702,-0.005249,0.249945,0,0);}
.m52_c00111{transform:matrix(0.223956,0.004703,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223956,0.004703,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223956,0.004703,-0.005249,0.249945,0,0);}
.m8b_c00111{transform:matrix(0.225509,0.005863,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225509,0.005863,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225509,0.005863,-0.006498,0.249916,0,0);}
.m6d_c00111{transform:matrix(0.225990,0.004746,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225990,0.004746,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225990,0.004746,-0.005249,0.249945,0,0);}
.m23_c00111{transform:matrix(0.226050,0.004973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226050,0.004973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226050,0.004973,-0.005499,0.249940,0,0);}
.md3_c00111{transform:matrix(0.226230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226230,0.000000,0.000000,0.250000,0,0);}
.mc6_c00111{transform:matrix(0.226393,0.003169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226393,0.003169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226393,0.003169,-0.003500,0.249976,0,0);}
.m9e_c00111{transform:matrix(0.228339,0.006622,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228339,0.006622,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228339,0.006622,-0.007247,0.249895,0,0);}
.ma1_c00111{transform:matrix(0.229613,0.006659,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229613,0.006659,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229613,0.006659,-0.007247,0.249895,0,0);}
.m22_c00111{transform:matrix(0.229624,0.005052,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229624,0.005052,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229624,0.005052,-0.005499,0.249940,0,0);}
.m2c_c00111{transform:matrix(0.230079,0.004832,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230079,0.004832,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230079,0.004832,-0.005249,0.249945,0,0);}
.m4a_c00111{transform:matrix(0.230464,0.004840,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230464,0.004840,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230464,0.004840,-0.005249,0.249945,0,0);}
.m97_c00111{transform:matrix(0.231304,0.006477,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231304,0.006477,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231304,0.006477,-0.006997,0.249902,0,0);}
.mc7_c00111{transform:matrix(0.231422,0.003240,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231422,0.003240,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231422,0.003240,-0.003500,0.249976,0,0);}
.m88_c00111{transform:matrix(0.232476,0.006044,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232476,0.006044,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232476,0.006044,-0.006498,0.249916,0,0);}
.mcb_c00111{transform:matrix(0.232957,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232957,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232957,0.003261,-0.003500,0.249976,0,0);}
.m78_c00111{transform:matrix(0.238032,0.006665,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238032,0.006665,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238032,0.006665,-0.006997,0.249902,0,0);}
.m1f_c00111{transform:matrix(0.243016,0.005346,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243016,0.005346,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243016,0.005346,-0.005499,0.249940,0,0);}
.m9b_c00111{transform:matrix(0.243053,0.007049,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243053,0.007049,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243053,0.007049,-0.007247,0.249895,0,0);}
.me6_c00111{transform:matrix(0.244013,0.003660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244013,0.003660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244013,0.003660,-0.003750,0.249972,0,0);}
.m87_c00111{transform:matrix(0.246812,0.006417,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246812,0.006417,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246812,0.006417,-0.006498,0.249916,0,0);}
.m7a_c00111{transform:matrix(0.249887,0.006997,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249887,0.006997,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249887,0.006997,-0.006997,0.249902,0,0);}
.m1_c00111{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00111{transform:matrix(0.251759,0.005287,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251759,0.005287,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251759,0.005287,-0.005249,0.249945,0,0);}
.m53_c00111{transform:matrix(0.256418,0.005385,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256418,0.005385,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256418,0.005385,-0.005249,0.249945,0,0);}
.m7b_c00111{transform:matrix(0.257814,0.007219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257814,0.007219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257814,0.007219,-0.006997,0.249902,0,0);}
.md1_c00111{transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);}
.mc5_c00111{transform:matrix(0.261459,0.003660,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261459,0.003660,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261459,0.003660,-0.003500,0.249976,0,0);}
.mda_c00111{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.mf0_c00111{transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);}
.m99_c00111{transform:matrix(0.276420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276420,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.281302,0.007595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281302,0.007595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281302,0.007595,-0.006748,0.249909,0,0);}
.m4b_c00111{transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306118,0.006428,-0.005249,0.249945,0,0);}
.m4f_c00111{transform:matrix(0.316330,0.006643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.316330,0.006643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.316330,0.006643,-0.005249,0.249945,0,0);}
.m77_c00111{transform:matrix(0.324558,0.009088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.324558,0.009088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.324558,0.009088,-0.006997,0.249902,0,0);}
.m8c_c00111{transform:matrix(0.324650,0.008441,-0.006498,0.249916,0,0);-ms-transform:matrix(0.324650,0.008441,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.324650,0.008441,-0.006498,0.249916,0,0);}
.m9f_c00111{transform:matrix(0.324733,0.009417,-0.007247,0.249895,0,0);-ms-transform:matrix(0.324733,0.009417,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.324733,0.009417,-0.007247,0.249895,0,0);}
.md2_c00111{transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{transform:matrix(0.435525,0.009582,-0.005499,0.249940,0,0);-ms-transform:matrix(0.435525,0.009582,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.435525,0.009582,-0.005499,0.249940,0,0);}
.mef_c00111{transform:matrix(0.497880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497880,0.000000,0.000000,0.250000,0,0);}
.mec_c00111{transform:matrix(0.766870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766870,0.000000,0.000000,0.250000,0,0);}
.mea_c00111{transform:matrix(1.274410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.274410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.274410,0.000000,0.000000,0.250000,0,0);}
.mee_c00111{transform:matrix(4.200540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.200540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.200540,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
.fc0_c00111{color:transparent;}
.fs1e_c00111{font-size:22.050000px;}
.fs14_c00111{font-size:26.250000px;}
.fs11_c00111{font-size:56.719161px;}
.fs19_c00111{font-size:58.805762px;}
.fs7_c00111{font-size:58.812964px;}
.fs4_c00111{font-size:59.864482px;}
.fs5_c00111{font-size:60.913427px;}
.fs6_c00111{font-size:61.963658px;}
.fs1b_c00111{font-size:63.000000px;}
.fs1d_c00111{font-size:63.007087px;}
.fs0_c00111{font-size:65.100000px;}
.fs18_c00111{font-size:65.127369px;}
.fse_c00111{font-size:67.216260px;}
.fs1c_c00111{font-size:68.250000px;}
.fs9_c00111{font-size:69.315279px;}
.fsf_c00111{font-size:69.327160px;}
.fs2_c00111{font-size:70.364069px;}
.fsa_c00111{font-size:70.365510px;}
.fs15_c00111{font-size:70.379576px;}
.fs1a_c00111{font-size:71.400000px;}
.fs8_c00111{font-size:71.415742px;}
.fsb_c00111{font-size:72.465973px;}
.fs17_c00111{font-size:72.480459px;}
.fsc_c00111{font-size:73.516205px;}
.fs16_c00111{font-size:73.530900px;}
.fs1_c00111{font-size:74.550000px;}
.fsd_c00111{font-size:74.566436px;}
.fs13_c00111{font-size:74.579218px;}
.fs10_c00111{font-size:75.625548px;}
.fs3_c00111{font-size:75.627551px;}
.fs12_c00111{font-size:75.629629px;}
.y0_c00111{bottom:0.000000px;}
.ye3_c00111{bottom:25.585882px;}
.ye2_c00111{bottom:26.107972px;}
.ye1_c00111{bottom:27.169185px;}
.ye0_c00111{bottom:28.149420px;}
.ydf_c00111{bottom:28.404660px;}
.yde_c00111{bottom:28.727715px;}
.ydd_c00111{bottom:29.153280px;}
.ydc_c00111{bottom:29.433000px;}
.ydb_c00111{bottom:45.022500px;}
.yda_c00111{bottom:45.312000px;}
.yd9_c00111{bottom:45.543000px;}
.yd8_c00111{bottom:46.815000px;}
.yd7_c00111{bottom:47.185500px;}
.yd6_c00111{bottom:48.123000px;}
.yd5_c00111{bottom:48.441000px;}
.yd4_c00111{bottom:48.871500px;}
.yd3_c00111{bottom:61.591500px;}
.yd2_c00111{bottom:61.809000px;}
.yd1_c00111{bottom:62.754000px;}
.yd0_c00111{bottom:63.282000px;}
.ycf_c00111{bottom:63.507000px;}
.yce_c00111{bottom:63.792000px;}
.ycd_c00111{bottom:64.531500px;}
.ycc_c00111{bottom:83.902500px;}
.ycb_c00111{bottom:98.021346px;}
.yca_c00111{bottom:98.384142px;}
.yc9_c00111{bottom:99.340545px;}
.yc8_c00111{bottom:99.582024px;}
.yc7_c00111{bottom:100.205871px;}
.yc6_c00111{bottom:100.599012px;}
.yc5_c00111{bottom:101.521500px;}
.yc4_c00111{bottom:112.334535px;}
.yc3_c00111{bottom:113.352135px;}
.yc2_c00111{bottom:115.314474px;}
.yc1_c00111{bottom:115.930989px;}
.yc0_c00111{bottom:116.339426px;}
.ybf_c00111{bottom:118.224728px;}
.ybe_c00111{bottom:118.855946px;}
.ybd_c00111{bottom:120.412067px;}
.ybc_c00111{bottom:131.167412px;}
.ybb_c00111{bottom:132.007988px;}
.yba_c00111{bottom:132.248411px;}
.yb9_c00111{bottom:133.130910px;}
.yb8_c00111{bottom:133.627463px;}
.yb7_c00111{bottom:134.253114px;}
.yb6_c00111{bottom:135.440846px;}
.yb5_c00111{bottom:135.842195px;}
.yb4_c00111{bottom:136.611129px;}
.yb3_c00111{bottom:148.467132px;}
.yb2_c00111{bottom:149.129886px;}
.yb1_c00111{bottom:150.031235px;}
.yb0_c00111{bottom:150.423201px;}
.yaf_c00111{bottom:151.115516px;}
.yae_c00111{bottom:152.799449px;}
.yad_c00111{bottom:153.592669px;}
.yac_c00111{bottom:154.150145px;}
.ye4_c00111{bottom:154.980000px;}
.yab_c00111{bottom:155.250717px;}
.yaa_c00111{bottom:165.988160px;}
.ya9_c00111{bottom:167.372808px;}
.ya8_c00111{bottom:168.240546px;}
.ya7_c00111{bottom:169.009713px;}
.ya6_c00111{bottom:169.481819px;}
.ya5_c00111{bottom:169.915557px;}
.ya4_c00111{bottom:171.262883px;}
.ya3_c00111{bottom:173.334788px;}
.ya2_c00111{bottom:173.890500px;}
.ya1_c00111{bottom:184.036239px;}
.ya0_c00111{bottom:184.610439px;}
.y9f_c00111{bottom:184.949609px;}
.y9e_c00111{bottom:187.278555px;}
.y9d_c00111{bottom:187.772106px;}
.y9c_c00111{bottom:189.087459px;}
.y9b_c00111{bottom:190.677863px;}
.y9a_c00111{bottom:191.170500px;}
.y98_c00111{bottom:200.529006px;}
.y99_c00111{bottom:201.966000px;}
.y97_c00111{bottom:207.412956px;}
.y96_c00111{bottom:208.439400px;}
.y95_c00111{bottom:219.229830px;}
.y94_c00111{bottom:221.081526px;}
.y93_c00111{bottom:221.615304px;}
.y92_c00111{bottom:222.023166px;}
.y91_c00111{bottom:224.014050px;}
.y90_c00111{bottom:224.769126px;}
.y8f_c00111{bottom:225.396564px;}
.y8e_c00111{bottom:226.270500px;}
.y8d_c00111{bottom:236.914449px;}
.y8c_c00111{bottom:238.609092px;}
.y8b_c00111{bottom:239.103516px;}
.y8a_c00111{bottom:239.357943px;}
.y89_c00111{bottom:241.020549px;}
.y88_c00111{bottom:242.011503px;}
.y87_c00111{bottom:242.744598px;}
.y86_c00111{bottom:244.350909px;}
.y85_c00111{bottom:254.376576px;}
.y84_c00111{bottom:254.967699px;}
.y83_c00111{bottom:256.252827px;}
.y82_c00111{bottom:256.905648px;}
.y81_c00111{bottom:257.457654px;}
.y80_c00111{bottom:260.430312px;}
.y7f_c00111{bottom:261.639000px;}
.y7e_c00111{bottom:275.287188px;}
.y7d_c00111{bottom:276.206820px;}
.y7c_c00111{bottom:276.780582px;}
.y7b_c00111{bottom:278.500608px;}
.y7a_c00111{bottom:279.015738px;}
.y79_c00111{bottom:279.410412px;}
.y78_c00111{bottom:279.999000px;}
.y77_c00111{bottom:289.948596px;}
.y76_c00111{bottom:291.421353px;}
.y75_c00111{bottom:292.073037px;}
.y74_c00111{bottom:292.580049px;}
.y73_c00111{bottom:293.863815px;}
.y72_c00111{bottom:294.244140px;}
.y71_c00111{bottom:294.961131px;}
.y70_c00111{bottom:295.924500px;}
.y6f_c00111{bottom:306.581249px;}
.y6e_c00111{bottom:308.075258px;}
.y6d_c00111{bottom:308.985051px;}
.y6c_c00111{bottom:309.630687px;}
.y6b_c00111{bottom:312.110128px;}
.y6a_c00111{bottom:312.894506px;}
.y69_c00111{bottom:326.110762px;}
.y68_c00111{bottom:326.567754px;}
.y67_c00111{bottom:327.513824px;}
.y66_c00111{bottom:327.969303px;}
.y65_c00111{bottom:329.540325px;}
.y64_c00111{bottom:329.764490px;}
.y63_c00111{bottom:330.990845px;}
.y62_c00111{bottom:343.133146px;}
.y61_c00111{bottom:344.363534px;}
.y60_c00111{bottom:344.795085px;}
.y5f_c00111{bottom:345.264047px;}
.y5e_c00111{bottom:346.430229px;}
.y5d_c00111{bottom:347.224087px;}
.y5c_c00111{bottom:347.559159px;}
.y5b_c00111{bottom:348.011363px;}
.y5a_c00111{bottom:349.354219px;}
.y59_c00111{bottom:360.502638px;}
.y58_c00111{bottom:363.392565px;}
.y57_c00111{bottom:366.041132px;}
.y56_c00111{bottom:367.722485px;}
.y55_c00111{bottom:378.389217px;}
.y54_c00111{bottom:379.013973px;}
.y53_c00111{bottom:382.518315px;}
.y52_c00111{bottom:385.004751px;}
.y51_c00111{bottom:396.040035px;}
.y50_c00111{bottom:400.165952px;}
.y4f_c00111{bottom:400.554030px;}
.y4e_c00111{bottom:401.578350px;}
.y4d_c00111{bottom:402.411123px;}
.y4c_c00111{bottom:402.688962px;}
.y4b_c00111{bottom:403.367058px;}
.y4a_c00111{bottom:412.287492px;}
.y49_c00111{bottom:412.731708px;}
.y48_c00111{bottom:413.240022px;}
.y47_c00111{bottom:415.053761px;}
.y46_c00111{bottom:415.451550px;}
.y45_c00111{bottom:416.986076px;}
.y44_c00111{bottom:417.565016px;}
.y43_c00111{bottom:418.763046px;}
.y42_c00111{bottom:431.036613px;}
.y41_c00111{bottom:431.414448px;}
.y40_c00111{bottom:431.974900px;}
.y3f_c00111{bottom:432.414108px;}
.y3e_c00111{bottom:433.261449px;}
.y3d_c00111{bottom:435.054405px;}
.y3c_c00111{bottom:435.692755px;}
.y3b_c00111{bottom:436.856673px;}
.y3a_c00111{bottom:448.060305px;}
.y39_c00111{bottom:449.719953px;}
.y38_c00111{bottom:451.163532px;}
.y37_c00111{bottom:453.617159px;}
.y36_c00111{bottom:454.865253px;}
.y35_c00111{bottom:456.573059px;}
.y34_c00111{bottom:465.493874px;}
.y33_c00111{bottom:466.959838px;}
.y32_c00111{bottom:467.689293px;}
.y31_c00111{bottom:468.486357px;}
.y30_c00111{bottom:470.087214px;}
.y2f_c00111{bottom:470.656128px;}
.y2e_c00111{bottom:471.728658px;}
.y2d_c00111{bottom:471.961994px;}
.y2c_c00111{bottom:482.817268px;}
.y2b_c00111{bottom:483.554211px;}
.y2a_c00111{bottom:484.421753px;}
.y29_c00111{bottom:485.102247px;}
.y28_c00111{bottom:485.776221px;}
.y27_c00111{bottom:487.655448px;}
.y26_c00111{bottom:488.166000px;}
.y25_c00111{bottom:500.379969px;}
.y24_c00111{bottom:500.652747px;}
.y23_c00111{bottom:501.607404px;}
.y22_c00111{bottom:502.790751px;}
.y21_c00111{bottom:504.139857px;}
.y20_c00111{bottom:505.110453px;}
.y1f_c00111{bottom:506.257500px;}
.y1e_c00111{bottom:516.888795px;}
.y1d_c00111{bottom:518.062242px;}
.y1c_c00111{bottom:518.645806px;}
.y1b_c00111{bottom:519.422030px;}
.y1a_c00111{bottom:520.563198px;}
.y19_c00111{bottom:521.153850px;}
.y18_c00111{bottom:522.597918px;}
.y17_c00111{bottom:523.073347px;}
.y16_c00111{bottom:524.649000px;}
.y15_c00111{bottom:535.008390px;}
.y14_c00111{bottom:535.970370px;}
.y13_c00111{bottom:537.077250px;}
.y12_c00111{bottom:537.361440px;}
.y11_c00111{bottom:538.369740px;}
.y10_c00111{bottom:539.998500px;}
.yf_c00111{bottom:553.152000px;}
.ye_c00111{bottom:553.944000px;}
.yd_c00111{bottom:554.223000px;}
.yc_c00111{bottom:556.156500px;}
.yb_c00111{bottom:556.852500px;}
.ya_c00111{bottom:557.926500px;}
.y9_c00111{bottom:558.939000px;}
.y8_c00111{bottom:570.934500px;}
.y7_c00111{bottom:571.899000px;}
.y6_c00111{bottom:572.425500px;}
.y5_c00111{bottom:573.499500px;}
.y4_c00111{bottom:574.422000px;}
.y3_c00111{bottom:575.131500px;}
.y2_c00111{bottom:575.644500px;}
.y1_c00111{bottom:589.680000px;}
.h1f_c00111{height:22.050000px;}
.h15_c00111{height:26.250000px;}
.h12_c00111{height:56.719161px;}
.h1a_c00111{height:58.805762px;}
.h8_c00111{height:58.812964px;}
.h5_c00111{height:59.864482px;}
.h6_c00111{height:60.913427px;}
.h7_c00111{height:61.963658px;}
.h1c_c00111{height:63.000000px;}
.h1e_c00111{height:63.007087px;}
.h1_c00111{height:65.100000px;}
.h19_c00111{height:65.127369px;}
.hf_c00111{height:67.216260px;}
.h1d_c00111{height:68.250000px;}
.ha_c00111{height:69.315279px;}
.h10_c00111{height:69.327160px;}
.h3_c00111{height:70.364069px;}
.hb_c00111{height:70.365510px;}
.h16_c00111{height:70.379576px;}
.h1b_c00111{height:71.400000px;}
.h9_c00111{height:71.415742px;}
.hc_c00111{height:72.465973px;}
.h18_c00111{height:72.480459px;}
.hd_c00111{height:73.516205px;}
.h17_c00111{height:73.530900px;}
.h2_c00111{height:74.550000px;}
.he_c00111{height:74.566436px;}
.h14_c00111{height:74.579218px;}
.h11_c00111{height:75.625548px;}
.h4_c00111{height:75.627551px;}
.h13_c00111{height:75.629629px;}
.h0_c00111{height:634.500000px;}
.w0_c00111{width:371.790000px;}
.w1_c00111{width:372.000000px;}
.x0_c00111{left:0.000000px;}
.x78_c00111{left:39.843000px;}
.x70_c00111{left:41.064482px;}
.x64_c00111{left:42.307500px;}
.x5f_c00111{left:43.347000px;}
.x4d_c00111{left:44.871000px;}
.x9_c00111{left:46.378500px;}
.x28_c00111{left:47.574647px;}
.x1c_c00111{left:49.335000px;}
.x7c_c00111{left:51.700500px;}
.x2_c00111{left:55.104000px;}
.xe_c00111{left:57.558000px;}
.x65_c00111{left:59.295000px;}
.x68_c00111{left:61.209000px;}
.x51_c00111{left:65.493000px;}
.x7e_c00111{left:69.756000px;}
.x23_c00111{left:71.250000px;}
.x3b_c00111{left:73.133321px;}
.x60_c00111{left:74.559000px;}
.x52_c00111{left:79.588500px;}
.x62_c00111{left:80.921838px;}
.x3_c00111{left:82.110000px;}
.x3c_c00111{left:83.791187px;}
.x6c_c00111{left:85.540559px;}
.x4e_c00111{left:88.660500px;}
.xa_c00111{left:90.412500px;}
.x76_c00111{left:92.254529px;}
.x31_c00111{left:94.011798px;}
.x61_c00111{left:96.967500px;}
.x53_c00111{left:97.986000px;}
.x29_c00111{left:99.825768px;}
.x1d_c00111{left:101.473500px;}
.x71_c00111{left:102.643816px;}
.x14_c00111{left:104.397000px;}
.x79_c00111{left:105.735000px;}
.x44_c00111{left:106.909986px;}
.x49_c00111{left:111.811926px;}
.x66_c00111{left:114.136500px;}
.x3d_c00111{left:115.800816px;}
.x4_c00111{left:119.418000px;}
.x15_c00111{left:122.005500px;}
.x36_c00111{left:124.712664px;}
.x45_c00111{left:127.443045px;}
.x5a_c00111{left:130.639419px;}
.x69_c00111{left:132.654000px;}
.x7a_c00111{left:133.816500px;}
.xb_c00111{left:137.128500px;}
.xf_c00111{left:138.996000px;}
.x2d_c00111{left:140.365478px;}
.x40_c00111{left:142.247390px;}
.x1e_c00111{left:145.591500px;}
.x7b_c00111{left:154.170000px;}
.x3e_c00111{left:155.216690px;}
.x54_c00111{left:159.415500px;}
.x24_c00111{left:160.737000px;}
.x72_c00111{left:165.135413px;}
.x5_c00111{left:167.970000px;}
.x3f_c00111{left:170.123615px;}
.x16_c00111{left:175.489500px;}
.x67_c00111{left:176.512500px;}
.x46_c00111{left:178.771974px;}
.x55_c00111{left:179.907000px;}
.x1_c00111{left:181.170000px;}
.x4a_c00111{left:183.192414px;}
.x2a_c00111{left:186.569460px;}
.x10_c00111{left:189.411000px;}
.x32_c00111{left:191.280140px;}
.x25_c00111{left:192.831000px;}
.x4b_c00111{left:194.008240px;}
.x42_c00111{left:195.119232px;}
.x17_c00111{left:197.365500px;}
.x80_c00111{left:198.553500px;}
.x11_c00111{left:203.620500px;}
.x57_c00111{left:205.027500px;}
.x1f_c00111{left:206.914500px;}
.x37_c00111{left:208.724136px;}
.x6a_c00111{left:210.349500px;}
.x56_c00111{left:212.751000px;}
.x2e_c00111{left:217.044275px;}
.x2b_c00111{left:218.450783px;}
.x4f_c00111{left:219.937500px;}
.x4c_c00111{left:223.323611px;}
.x6_c00111{left:224.497500px;}
.x58_c00111{left:226.258500px;}
.x5b_c00111{left:228.946884px;}
.x47_c00111{left:231.803372px;}
.x6d_c00111{left:234.659372px;}
.x6b_c00111{left:236.872500px;}
.x5c_c00111{left:238.386150px;}
.x18_c00111{left:239.631000px;}
.x33_c00111{left:242.754324px;}
.x2c_c00111{left:247.612826px;}
.x50_c00111{left:249.559500px;}
.x7_c00111{left:252.220500px;}
.x5d_c00111{left:256.709682px;}
.x12_c00111{left:258.964500px;}
.x20_c00111{left:260.703000px;}
.x2f_c00111{left:262.132848px;}
.xc_c00111{left:263.602500px;}
.x34_c00111{left:265.154934px;}
.x26_c00111{left:266.547000px;}
.x19_c00111{left:268.380000px;}
.x73_c00111{left:270.707537px;}
.x48_c00111{left:272.755521px;}
.x77_c00111{left:275.673678px;}
.x41_c00111{left:277.035246px;}
.x35_c00111{left:280.288674px;}
.x74_c00111{left:283.398234px;}
.x6e_c00111{left:286.400375px;}
.x38_c00111{left:287.589329px;}
.x1a_c00111{left:289.993500px;}
.x7f_c00111{left:293.134500px;}
.x43_c00111{left:294.789506px;}
.xd_c00111{left:298.045500px;}
.x7d_c00111{left:299.298000px;}
.x27_c00111{left:301.639500px;}
.x8_c00111{left:302.982000px;}
.x21_c00111{left:304.096500px;}
.x13_c00111{left:307.063500px;}
.x39_c00111{left:309.722415px;}
.x6f_c00111{left:312.929463px;}
.x30_c00111{left:314.008878px;}
.x22_c00111{left:316.495500px;}
.x5e_c00111{left:319.463544px;}
.x59_c00111{left:323.530500px;}
.x75_c00111{left:327.655066px;}
.x3a_c00111{left:329.017596px;}
.x1b_c00111{left:333.454500px;}
.x63_c00111{left:335.891478px;}
.x82_c00111{left:365.580000px;}
.x81_c00111{left:368.820000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fs1e_c00111{font-size:19.600000pt;}
.fs14_c00111{font-size:23.333333pt;}
.fs11_c00111{font-size:50.417032pt;}
.fs19_c00111{font-size:52.271789pt;}
.fs7_c00111{font-size:52.278190pt;}
.fs4_c00111{font-size:53.212873pt;}
.fs5_c00111{font-size:54.145268pt;}
.fs6_c00111{font-size:55.078808pt;}
.fs1b_c00111{font-size:56.000000pt;}
.fs1d_c00111{font-size:56.006300pt;}
.fs0_c00111{font-size:57.866667pt;}
.fs18_c00111{font-size:57.890994pt;}
.fse_c00111{font-size:59.747787pt;}
.fs1c_c00111{font-size:60.666667pt;}
.fs9_c00111{font-size:61.613581pt;}
.fsf_c00111{font-size:61.624142pt;}
.fs2_c00111{font-size:62.545839pt;}
.fsa_c00111{font-size:62.547120pt;}
.fs15_c00111{font-size:62.559623pt;}
.fs1a_c00111{font-size:63.466667pt;}
.fs8_c00111{font-size:63.480660pt;}
.fsb_c00111{font-size:64.414199pt;}
.fs17_c00111{font-size:64.427075pt;}
.fsc_c00111{font-size:65.347738pt;}
.fs16_c00111{font-size:65.360800pt;}
.fs1_c00111{font-size:66.266667pt;}
.fsd_c00111{font-size:66.281277pt;}
.fs13_c00111{font-size:66.292638pt;}
.fs10_c00111{font-size:67.222710pt;}
.fs3_c00111{font-size:67.224490pt;}
.fs12_c00111{font-size:67.226337pt;}
.y0_c00111{bottom:0.000000pt;}
.ye3_c00111{bottom:22.743007pt;}
.ye2_c00111{bottom:23.207087pt;}
.ye1_c00111{bottom:24.150387pt;}
.ye0_c00111{bottom:25.021707pt;}
.ydf_c00111{bottom:25.248587pt;}
.yde_c00111{bottom:25.535747pt;}
.ydd_c00111{bottom:25.914027pt;}
.ydc_c00111{bottom:26.162667pt;}
.ydb_c00111{bottom:40.020000pt;}
.yda_c00111{bottom:40.277333pt;}
.yd9_c00111{bottom:40.482667pt;}
.yd8_c00111{bottom:41.613333pt;}
.yd7_c00111{bottom:41.942667pt;}
.yd6_c00111{bottom:42.776000pt;}
.yd5_c00111{bottom:43.058667pt;}
.yd4_c00111{bottom:43.441333pt;}
.yd3_c00111{bottom:54.748000pt;}
.yd2_c00111{bottom:54.941333pt;}
.yd1_c00111{bottom:55.781333pt;}
.yd0_c00111{bottom:56.250667pt;}
.ycf_c00111{bottom:56.450667pt;}
.yce_c00111{bottom:56.704000pt;}
.ycd_c00111{bottom:57.361333pt;}
.ycc_c00111{bottom:74.580000pt;}
.ycb_c00111{bottom:87.130085pt;}
.yca_c00111{bottom:87.452571pt;}
.yc9_c00111{bottom:88.302707pt;}
.yc8_c00111{bottom:88.517355pt;}
.yc7_c00111{bottom:89.071885pt;}
.yc6_c00111{bottom:89.421344pt;}
.yc5_c00111{bottom:90.241333pt;}
.yc4_c00111{bottom:99.852920pt;}
.yc3_c00111{bottom:100.757453pt;}
.yc2_c00111{bottom:102.501755pt;}
.yc1_c00111{bottom:103.049768pt;}
.yc0_c00111{bottom:103.412823pt;}
.ybf_c00111{bottom:105.088647pt;}
.ybe_c00111{bottom:105.649729pt;}
.ybd_c00111{bottom:107.032948pt;}
.ybc_c00111{bottom:116.593255pt;}
.ybb_c00111{bottom:117.340433pt;}
.yba_c00111{bottom:117.554143pt;}
.yb9_c00111{bottom:118.338587pt;}
.yb8_c00111{bottom:118.779967pt;}
.yb7_c00111{bottom:119.336101pt;}
.yb6_c00111{bottom:120.391863pt;}
.yb5_c00111{bottom:120.748617pt;}
.yb4_c00111{bottom:121.432115pt;}
.yb3_c00111{bottom:131.970784pt;}
.yb2_c00111{bottom:132.559899pt;}
.yb1_c00111{bottom:133.361097pt;}
.yb0_c00111{bottom:133.709512pt;}
.yaf_c00111{bottom:134.324903pt;}
.yae_c00111{bottom:135.821732pt;}
.yad_c00111{bottom:136.526817pt;}
.yac_c00111{bottom:137.022351pt;}
.ye4_c00111{bottom:137.760000pt;}
.yab_c00111{bottom:138.000637pt;}
.yaa_c00111{bottom:147.545031pt;}
.ya9_c00111{bottom:148.775829pt;}
.ya8_c00111{bottom:149.547152pt;}
.ya7_c00111{bottom:150.230856pt;}
.ya6_c00111{bottom:150.650505pt;}
.ya5_c00111{bottom:151.036051pt;}
.ya4_c00111{bottom:152.233673pt;}
.ya3_c00111{bottom:154.075367pt;}
.ya2_c00111{bottom:154.569333pt;}
.ya1_c00111{bottom:163.587768pt;}
.ya0_c00111{bottom:164.098168pt;}
.y9f_c00111{bottom:164.399652pt;}
.y9e_c00111{bottom:166.469827pt;}
.y9d_c00111{bottom:166.908539pt;}
.y9c_c00111{bottom:168.077741pt;}
.y9b_c00111{bottom:169.491433pt;}
.y9a_c00111{bottom:169.929333pt;}
.y98_c00111{bottom:178.248005pt;}
.y99_c00111{bottom:179.525333pt;}
.y97_c00111{bottom:184.367072pt;}
.y96_c00111{bottom:185.279467pt;}
.y95_c00111{bottom:194.870960pt;}
.y94_c00111{bottom:196.516912pt;}
.y93_c00111{bottom:196.991381pt;}
.y92_c00111{bottom:197.353925pt;}
.y91_c00111{bottom:199.123600pt;}
.y90_c00111{bottom:199.794779pt;}
.y8f_c00111{bottom:200.352501pt;}
.y8e_c00111{bottom:201.129333pt;}
.y8d_c00111{bottom:210.590621pt;}
.y8c_c00111{bottom:212.096971pt;}
.y8b_c00111{bottom:212.536459pt;}
.y8a_c00111{bottom:212.762616pt;}
.y89_c00111{bottom:214.240488pt;}
.y88_c00111{bottom:215.121336pt;}
.y87_c00111{bottom:215.772976pt;}
.y86_c00111{bottom:217.200808pt;}
.y85_c00111{bottom:226.112512pt;}
.y84_c00111{bottom:226.637955pt;}
.y83_c00111{bottom:227.780291pt;}
.y82_c00111{bottom:228.360576pt;}
.y81_c00111{bottom:228.851248pt;}
.y80_c00111{bottom:231.493611pt;}
.y7f_c00111{bottom:232.568000pt;}
.y7e_c00111{bottom:244.699723pt;}
.y7d_c00111{bottom:245.517173pt;}
.y7c_c00111{bottom:246.027184pt;}
.y7b_c00111{bottom:247.556096pt;}
.y7a_c00111{bottom:248.013989pt;}
.y79_c00111{bottom:248.364811pt;}
.y78_c00111{bottom:248.888000pt;}
.y77_c00111{bottom:257.732085pt;}
.y76_c00111{bottom:259.041203pt;}
.y75_c00111{bottom:259.620477pt;}
.y74_c00111{bottom:260.071155pt;}
.y73_c00111{bottom:261.212280pt;}
.y72_c00111{bottom:261.550347pt;}
.y71_c00111{bottom:262.187672pt;}
.y70_c00111{bottom:263.044000pt;}
.y6f_c00111{bottom:272.516665pt;}
.y6e_c00111{bottom:273.844673pt;}
.y6d_c00111{bottom:274.653379pt;}
.y6c_c00111{bottom:275.227277pt;}
.y6b_c00111{bottom:277.431225pt;}
.y6a_c00111{bottom:278.128449pt;}
.y69_c00111{bottom:289.876233pt;}
.y68_c00111{bottom:290.282448pt;}
.y67_c00111{bottom:291.123399pt;}
.y66_c00111{bottom:291.528269pt;}
.y65_c00111{bottom:292.924733pt;}
.y64_c00111{bottom:293.123991pt;}
.y63_c00111{bottom:294.214084pt;}
.y62_c00111{bottom:305.007241pt;}
.y61_c00111{bottom:306.100919pt;}
.y60_c00111{bottom:306.484520pt;}
.y5f_c00111{bottom:306.901375pt;}
.y5e_c00111{bottom:307.937981pt;}
.y5d_c00111{bottom:308.643633pt;}
.y5c_c00111{bottom:308.941475pt;}
.y5b_c00111{bottom:309.343433pt;}
.y5a_c00111{bottom:310.537084pt;}
.y59_c00111{bottom:320.446789pt;}
.y58_c00111{bottom:323.015613pt;}
.y57_c00111{bottom:325.369895pt;}
.y56_c00111{bottom:326.864431pt;}
.y55_c00111{bottom:336.345971pt;}
.y54_c00111{bottom:336.901309pt;}
.y53_c00111{bottom:340.016280pt;}
.y52_c00111{bottom:342.226445pt;}
.y51_c00111{bottom:352.035587pt;}
.y50_c00111{bottom:355.703068pt;}
.y4f_c00111{bottom:356.048027pt;}
.y4e_c00111{bottom:356.958533pt;}
.y4d_c00111{bottom:357.698776pt;}
.y4c_c00111{bottom:357.945744pt;}
.y4b_c00111{bottom:358.548496pt;}
.y4a_c00111{bottom:366.477771pt;}
.y49_c00111{bottom:366.872629pt;}
.y48_c00111{bottom:367.324464pt;}
.y47_c00111{bottom:368.936676pt;}
.y46_c00111{bottom:369.290267pt;}
.y45_c00111{bottom:370.654289pt;}
.y44_c00111{bottom:371.168903pt;}
.y43_c00111{bottom:372.233819pt;}
.y42_c00111{bottom:383.143656pt;}
.y41_c00111{bottom:383.479509pt;}
.y40_c00111{bottom:383.977689pt;}
.y3f_c00111{bottom:384.368096pt;}
.y3e_c00111{bottom:385.121288pt;}
.y3d_c00111{bottom:386.715027pt;}
.y3c_c00111{bottom:387.282449pt;}
.y3b_c00111{bottom:388.317043pt;}
.y3a_c00111{bottom:398.275827pt;}
.y39_c00111{bottom:399.751069pt;}
.y38_c00111{bottom:401.034251pt;}
.y37_c00111{bottom:403.215252pt;}
.y36_c00111{bottom:404.324669pt;}
.y35_c00111{bottom:405.842719pt;}
.y34_c00111{bottom:413.772332pt;}
.y33_c00111{bottom:415.075412pt;}
.y32_c00111{bottom:415.723816pt;}
.y31_c00111{bottom:416.432317pt;}
.y30_c00111{bottom:417.855301pt;}
.y2f_c00111{bottom:418.361003pt;}
.y2e_c00111{bottom:419.314363pt;}
.y2d_c00111{bottom:419.521772pt;}
.y2c_c00111{bottom:429.170905pt;}
.y2b_c00111{bottom:429.825965pt;}
.y2a_c00111{bottom:430.597113pt;}
.y29_c00111{bottom:431.201997pt;}
.y28_c00111{bottom:431.801085pt;}
.y27_c00111{bottom:433.471509pt;}
.y26_c00111{bottom:433.925333pt;}
.y25_c00111{bottom:444.782195pt;}
.y24_c00111{bottom:445.024664pt;}
.y23_c00111{bottom:445.873248pt;}
.y22_c00111{bottom:446.925112pt;}
.y21_c00111{bottom:448.124317pt;}
.y20_c00111{bottom:448.987069pt;}
.y1f_c00111{bottom:450.006667pt;}
.y1e_c00111{bottom:459.456707pt;}
.y1d_c00111{bottom:460.499771pt;}
.y1c_c00111{bottom:461.018495pt;}
.y1b_c00111{bottom:461.708471pt;}
.y1a_c00111{bottom:462.722843pt;}
.y19_c00111{bottom:463.247867pt;}
.y18_c00111{bottom:464.531483pt;}
.y17_c00111{bottom:464.954087pt;}
.y16_c00111{bottom:466.354667pt;}
.y15_c00111{bottom:475.563013pt;}
.y14_c00111{bottom:476.418107pt;}
.y13_c00111{bottom:477.402000pt;}
.y12_c00111{bottom:477.654613pt;}
.y11_c00111{bottom:478.550880pt;}
.y10_c00111{bottom:479.998667pt;}
.yf_c00111{bottom:491.690667pt;}
.ye_c00111{bottom:492.394667pt;}
.yd_c00111{bottom:492.642667pt;}
.yc_c00111{bottom:494.361333pt;}
.yb_c00111{bottom:494.980000pt;}
.ya_c00111{bottom:495.934667pt;}
.y9_c00111{bottom:496.834667pt;}
.y8_c00111{bottom:507.497333pt;}
.y7_c00111{bottom:508.354667pt;}
.y6_c00111{bottom:508.822667pt;}
.y5_c00111{bottom:509.777333pt;}
.y4_c00111{bottom:510.597333pt;}
.y3_c00111{bottom:511.228000pt;}
.y2_c00111{bottom:511.684000pt;}
.y1_c00111{bottom:524.160000pt;}
.h1f_c00111{height:19.600000pt;}
.h15_c00111{height:23.333333pt;}
.h12_c00111{height:50.417032pt;}
.h1a_c00111{height:52.271789pt;}
.h8_c00111{height:52.278190pt;}
.h5_c00111{height:53.212873pt;}
.h6_c00111{height:54.145268pt;}
.h7_c00111{height:55.078808pt;}
.h1c_c00111{height:56.000000pt;}
.h1e_c00111{height:56.006300pt;}
.h1_c00111{height:57.866667pt;}
.h19_c00111{height:57.890994pt;}
.hf_c00111{height:59.747787pt;}
.h1d_c00111{height:60.666667pt;}
.ha_c00111{height:61.613581pt;}
.h10_c00111{height:61.624142pt;}
.h3_c00111{height:62.545839pt;}
.hb_c00111{height:62.547120pt;}
.h16_c00111{height:62.559623pt;}
.h1b_c00111{height:63.466667pt;}
.h9_c00111{height:63.480660pt;}
.hc_c00111{height:64.414199pt;}
.h18_c00111{height:64.427075pt;}
.hd_c00111{height:65.347738pt;}
.h17_c00111{height:65.360800pt;}
.h2_c00111{height:66.266667pt;}
.he_c00111{height:66.281277pt;}
.h14_c00111{height:66.292638pt;}
.h11_c00111{height:67.222710pt;}
.h4_c00111{height:67.224490pt;}
.h13_c00111{height:67.226337pt;}
.h0_c00111{height:564.000000pt;}
.w0_c00111{width:330.480000pt;}
.w1_c00111{width:330.666667pt;}
.x0_c00111{left:0.000000pt;}
.x78_c00111{left:35.416000pt;}
.x70_c00111{left:36.501761pt;}
.x64_c00111{left:37.606667pt;}
.x5f_c00111{left:38.530667pt;}
.x4d_c00111{left:39.885333pt;}
.x9_c00111{left:41.225333pt;}
.x28_c00111{left:42.288575pt;}
.x1c_c00111{left:43.853333pt;}
.x7c_c00111{left:45.956000pt;}
.x2_c00111{left:48.981333pt;}
.xe_c00111{left:51.162667pt;}
.x65_c00111{left:52.706667pt;}
.x68_c00111{left:54.408000pt;}
.x51_c00111{left:58.216000pt;}
.x7e_c00111{left:62.005333pt;}
.x23_c00111{left:63.333333pt;}
.x3b_c00111{left:65.007396pt;}
.x60_c00111{left:66.274667pt;}
.x52_c00111{left:70.745333pt;}
.x62_c00111{left:71.930523pt;}
.x3_c00111{left:72.986667pt;}
.x3c_c00111{left:74.481055pt;}
.x6c_c00111{left:76.036052pt;}
.x4e_c00111{left:78.809333pt;}
.xa_c00111{left:80.366667pt;}
.x76_c00111{left:82.004025pt;}
.x31_c00111{left:83.566043pt;}
.x61_c00111{left:86.193333pt;}
.x53_c00111{left:87.098667pt;}
.x29_c00111{left:88.734016pt;}
.x1d_c00111{left:90.198667pt;}
.x71_c00111{left:91.238948pt;}
.x14_c00111{left:92.797333pt;}
.x79_c00111{left:93.986667pt;}
.x44_c00111{left:95.031099pt;}
.x49_c00111{left:99.388379pt;}
.x66_c00111{left:101.454667pt;}
.x3d_c00111{left:102.934059pt;}
.x4_c00111{left:106.149333pt;}
.x15_c00111{left:108.449333pt;}
.x36_c00111{left:110.855701pt;}
.x45_c00111{left:113.282707pt;}
.x5a_c00111{left:116.123928pt;}
.x69_c00111{left:117.914667pt;}
.x7a_c00111{left:118.948000pt;}
.xb_c00111{left:121.892000pt;}
.xf_c00111{left:123.552000pt;}
.x2d_c00111{left:124.769313pt;}
.x40_c00111{left:126.442124pt;}
.x1e_c00111{left:129.414667pt;}
.x7b_c00111{left:137.040000pt;}
.x3e_c00111{left:137.970391pt;}
.x54_c00111{left:141.702667pt;}
.x24_c00111{left:142.877333pt;}
.x72_c00111{left:146.787033pt;}
.x5_c00111{left:149.306667pt;}
.x3f_c00111{left:151.220991pt;}
.x16_c00111{left:155.990667pt;}
.x67_c00111{left:156.900000pt;}
.x46_c00111{left:158.908421pt;}
.x55_c00111{left:159.917333pt;}
.x1_c00111{left:161.040000pt;}
.x4a_c00111{left:162.837701pt;}
.x2a_c00111{left:165.839520pt;}
.x10_c00111{left:168.365333pt;}
.x32_c00111{left:170.026791pt;}
.x25_c00111{left:171.405333pt;}
.x4b_c00111{left:172.451769pt;}
.x42_c00111{left:173.439317pt;}
.x17_c00111{left:175.436000pt;}
.x80_c00111{left:176.492000pt;}
.x11_c00111{left:180.996000pt;}
.x57_c00111{left:182.246667pt;}
.x1f_c00111{left:183.924000pt;}
.x37_c00111{left:185.532565pt;}
.x6a_c00111{left:186.977333pt;}
.x56_c00111{left:189.112000pt;}
.x2e_c00111{left:192.928244pt;}
.x2b_c00111{left:194.178473pt;}
.x4f_c00111{left:195.500000pt;}
.x4c_c00111{left:198.509876pt;}
.x6_c00111{left:199.553333pt;}
.x58_c00111{left:201.118667pt;}
.x5b_c00111{left:203.508341pt;}
.x47_c00111{left:206.047441pt;}
.x6d_c00111{left:208.586108pt;}
.x6b_c00111{left:210.553333pt;}
.x5c_c00111{left:211.898800pt;}
.x18_c00111{left:213.005333pt;}
.x33_c00111{left:215.781621pt;}
.x2c_c00111{left:220.100289pt;}
.x50_c00111{left:221.830667pt;}
.x7_c00111{left:224.196000pt;}
.x5d_c00111{left:228.186384pt;}
.x12_c00111{left:230.190667pt;}
.x20_c00111{left:231.736000pt;}
.x2f_c00111{left:233.006976pt;}
.xc_c00111{left:234.313333pt;}
.x34_c00111{left:235.693275pt;}
.x26_c00111{left:236.930667pt;}
.x19_c00111{left:238.560000pt;}
.x73_c00111{left:240.628921pt;}
.x48_c00111{left:242.449352pt;}
.x77_c00111{left:245.043269pt;}
.x41_c00111{left:246.253552pt;}
.x35_c00111{left:249.145488pt;}
.x74_c00111{left:251.909541pt;}
.x6e_c00111{left:254.578111pt;}
.x38_c00111{left:255.634959pt;}
.x1a_c00111{left:257.772000pt;}
.x7f_c00111{left:260.564000pt;}
.x43_c00111{left:262.035116pt;}
.xd_c00111{left:264.929333pt;}
.x7d_c00111{left:266.042667pt;}
.x27_c00111{left:268.124000pt;}
.x8_c00111{left:269.317333pt;}
.x21_c00111{left:270.308000pt;}
.x13_c00111{left:272.945333pt;}
.x39_c00111{left:275.308813pt;}
.x6f_c00111{left:278.159523pt;}
.x30_c00111{left:279.119003pt;}
.x22_c00111{left:281.329333pt;}
.x5e_c00111{left:283.967595pt;}
.x59_c00111{left:287.582667pt;}
.x75_c00111{left:291.248948pt;}
.x3a_c00111{left:292.460085pt;}
.x1b_c00111{left:296.404000pt;}
.x63_c00111{left:298.570203pt;}
.x82_c00111{left:324.960000pt;}
.x81_c00111{left:327.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00112 {
    display:none;
  }
  .loading-indicator_c00112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00112 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00112 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00112" -> "#page-container .classname_c00112")
 */
.pf_c00112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00112 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00112 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00112 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00112 {overflow:visible;}
  }
}
.c_c00112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00112 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00112:after { /* webkit #35443 */
  content: '';
}
.t_c00112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00112 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00112 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00112 { /* info for Javascript */
  display:none;
}
.l_c00112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00112:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00112 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00112.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00112{transform:matrix(0.045435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045435,0.000000,0.000000,0.250000,0,0);}
.m7f_c00112{transform:matrix(0.112415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112415,0.000000,0.000000,0.250000,0,0);}
.mc4_c00112{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.130955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130955,0.000000,0.000000,0.250000,0,0);}
.mb2_c00112{transform:matrix(0.132705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132705,0.000000,0.000000,0.250000,0,0);}
.m21_c00112{transform:matrix(0.135785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135785,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.145030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145030,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{transform:matrix(0.145765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145765,0.000000,0.000000,0.250000,0,0);}
.m110_c00112{transform:matrix(0.146655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146655,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);}
.m1c_c00112{transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);}
.m66_c00112{transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);}
.mcd_c00112{transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);}
.m9c_c00112{transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);}
.mbc_c00112{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m10b_c00112{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.mbe_c00112{transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);}
.m67_c00112{transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);}
.mf7_c00112{transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);}
.mc8_c00112{transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);}
.m108_c00112{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m17_c00112{transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);}
.mfb_c00112{transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);}
.m7b_c00112{transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.mfc_c00112{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.mf9_c00112{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m10e_c00112{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m58_c00112{transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);}
.mc5_c00112{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.mbd_c00112{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m49_c00112{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.mfa_c00112{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.m4a_c00112{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.mae_c00112{transform:matrix(0.165095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165095,0.000000,0.000000,0.250000,0,0);}
.mb5_c00112{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);}
.m98_c00112{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00112{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);}
.m60_c00112{transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167615,0.000000,0.000000,0.250000,0,0);}
.mf4_c00112{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.168010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168010,0.000000,0.000000,0.250000,0,0);}
.md3_c00112{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m69_c00112{transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);}
.ma1_c00112{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m61_c00112{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m9b_c00112{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m85_c00112{transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);}
.mdb_c00112{transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);}
.m106_c00112{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00112{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.mc6_c00112{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m82_c00112{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m95_c00112{transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);}
.mb3_c00112{transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);}
.mca_c00112{transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00112{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.m4c_c00112{transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);}
.m64_c00112{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00112{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m113_c00112{transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);}
.md4_c00112{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.mda_c00112{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.ma4_c00112{transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);}
.m56_c00112{transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);}
.me7_c00112{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mf0_c00112{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mcf_c00112{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);}
.m9a_c00112{transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.md2_c00112{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00112{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m10f_c00112{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m72_c00112{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.m5c_c00112{transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);}
.m78_c00112{transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);}
.m81_c00112{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.m83_c00112{transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.m34_c00112{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.me4_c00112{transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m62_c00112{transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);}
.mba_c00112{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.mf8_c00112{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00112{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.med_c00112{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);}
.m31_c00112{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m8c_c00112{transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);}
.me1_c00112{transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);}
.m63_c00112{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00112{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.md8_c00112{transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);}
.mb0_c00112{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.md0_c00112{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.mb6_c00112{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.md7_c00112{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.md5_c00112{transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);}
.m79_c00112{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.mad_c00112{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mb1_c00112{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m47_c00112{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);}
.m53_c00112{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00112{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m9f_c00112{transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);}
.me5_c00112{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m30_c00112{transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);}
.m112_c00112{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.mf5_c00112{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m80_c00112{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m46_c00112{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.mf3_c00112{transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);}
.mce_c00112{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.md6_c00112{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.mf6_c00112{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m4b_c00112{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m99_c00112{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mdc_c00112{transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mb8_c00112{transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);}
.md1_c00112{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m4d_c00112{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.mb7_c00112{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.mec_c00112{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m10a_c00112{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00112{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.mab_c00112{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.m15_c00112{transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);}
.m111_c00112{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.mcb_c00112{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.maa_c00112{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);}
.md9_c00112{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m4f_c00112{transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199620,0.000000,0.000000,0.250000,0,0);}
.m7d_c00112{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.me3_c00112{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.mfe_c00112{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.mff_c00112{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m73_c00112{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m100_c00112{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.me6_c00112{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m6c_c00112{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m3f_c00112{transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);}
.mf2_c00112{transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m57_c00112{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.ma5_c00112{transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);}
.m10d_c00112{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00112{transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);}
.m104_c00112{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m8d_c00112{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.mdf_c00112{transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);}
.m74_c00112{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.m75_c00112{transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);}
.mc0_c00112{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m65_c00112{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m55_c00112{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.meb_c00112{transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);}
.m84_c00112{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.ma9_c00112{transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);}
.m90_c00112{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.me0_c00112{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.mfd_c00112{transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);}
.m6b_c00112{transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);}
.m91_c00112{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m48_c00112{transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);}
.m7c_c00112{transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);}
.m39_c00112{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mc7_c00112{transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);}
.m105_c00112{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.m68_c00112{transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mac_c00112{transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m109_c00112{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00112{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.m5b_c00112{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);}
.m87_c00112{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m51_c00112{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m71_c00112{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.m93_c00112{transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);}
.me2_c00112{transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);}
.m92_c00112{transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);}
.ma6_c00112{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m8a_c00112{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.mc1_c00112{transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);}
.mc3_c00112{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.ma0_c00112{transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.mf1_c00112{transform:matrix(0.217015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217015,0.000000,0.000000,0.250000,0,0);}
.m5f_c00112{transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);}
.m102_c00112{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.mb4_c00112{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m97_c00112{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.m5a_c00112{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.m7a_c00112{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m86_c00112{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.mc9_c00112{transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);}
.me9_c00112{transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);}
.m8b_c00112{transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);}
.m54_c00112{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m101_c00112{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);}
.m96_c00112{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.m6a_c00112{transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);}
.m94_c00112{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.ma3_c00112{transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);}
.m107_c00112{transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);}
.m5e_c00112{transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);}
.m89_c00112{transform:matrix(0.232415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232415,0.000000,0.000000,0.250000,0,0);}
.m10c_c00112{transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);}
.m8e_c00112{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m8f_c00112{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.mea_c00112{transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);}
.me8_c00112{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.mbf_c00112{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.mc2_c00112{transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m27_c00112{transform:matrix(0.241865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241865,0.000000,0.000000,0.250000,0,0);}
.ma7_c00112{transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);}
.m88_c00112{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);}
.m76_c00112{transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);}
.m9d_c00112{transform:matrix(0.267260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267260,0.000000,0.000000,0.250000,0,0);}
.mde_c00112{transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);}
.m6e_c00112{transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);}
.m103_c00112{transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);}
.m6f_c00112{transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);}
.m70_c00112{transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);}
.mef_c00112{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.maf_c00112{transform:matrix(0.277100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277100,0.000000,0.000000,0.250000,0,0);}
.m26_c00112{transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);}
.mdd_c00112{transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);}
.m6d_c00112{transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);}
.mee_c00112{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.m77_c00112{transform:matrix(0.333720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333720,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
.fc0_c00112{color:transparent;}
.fs6_c00112{font-size:59.850000px;}
.fs2_c00112{font-size:60.900000px;}
.fs7_c00112{font-size:61.950000px;}
.fs0_c00112{font-size:63.000000px;}
.fsc_c00112{font-size:64.050000px;}
.fs5_c00112{font-size:65.100000px;}
.fs9_c00112{font-size:66.150000px;}
.fsa_c00112{font-size:67.200000px;}
.fsb_c00112{font-size:68.250000px;}
.fs4_c00112{font-size:69.300000px;}
.fs8_c00112{font-size:70.350000px;}
.fs3_c00112{font-size:72.450000px;}
.fs1_c00112{font-size:75.600000px;}
.y0_c00112{bottom:0.000000px;}
.y101_c00112{bottom:29.428500px;}
.y100_c00112{bottom:29.988000px;}
.yff_c00112{bottom:31.560000px;}
.yfe_c00112{bottom:32.070000px;}
.yfd_c00112{bottom:32.817000px;}
.yfc_c00112{bottom:33.289500px;}
.yfb_c00112{bottom:34.764000px;}
.yfa_c00112{bottom:35.916000px;}
.yf9_c00112{bottom:36.471000px;}
.yf8_c00112{bottom:37.284000px;}
.yf7_c00112{bottom:47.430000px;}
.yf6_c00112{bottom:48.012000px;}
.yf5_c00112{bottom:50.685000px;}
.yf4_c00112{bottom:51.717000px;}
.yf3_c00112{bottom:52.134000px;}
.yf2_c00112{bottom:53.962500px;}
.yf1_c00112{bottom:56.791500px;}
.yf0_c00112{bottom:57.807000px;}
.yef_c00112{bottom:66.403500px;}
.yee_c00112{bottom:67.969500px;}
.yed_c00112{bottom:68.539500px;}
.yec_c00112{bottom:69.181500px;}
.yeb_c00112{bottom:70.984500px;}
.yea_c00112{bottom:72.652500px;}
.ye9_c00112{bottom:73.221000px;}
.ye8_c00112{bottom:73.566000px;}
.ye7_c00112{bottom:74.272500px;}
.ye6_c00112{bottom:83.676000px;}
.ye5_c00112{bottom:85.588500px;}
.ye4_c00112{bottom:86.394000px;}
.ye3_c00112{bottom:86.914500px;}
.ye2_c00112{bottom:88.519500px;}
.ye1_c00112{bottom:88.978500px;}
.ye0_c00112{bottom:89.937000px;}
.ydf_c00112{bottom:91.281000px;}
.yde_c00112{bottom:101.511000px;}
.ydd_c00112{bottom:102.048000px;}
.ydc_c00112{bottom:102.718500px;}
.ydb_c00112{bottom:104.085000px;}
.yda_c00112{bottom:104.665500px;}
.yd9_c00112{bottom:106.672500px;}
.yd8_c00112{bottom:107.772000px;}
.yd7_c00112{bottom:109.239000px;}
.yd6_c00112{bottom:109.917000px;}
.yd5_c00112{bottom:117.579000px;}
.yd4_c00112{bottom:120.466500px;}
.yd3_c00112{bottom:121.108500px;}
.yd2_c00112{bottom:121.912500px;}
.yd1_c00112{bottom:123.595500px;}
.yd0_c00112{bottom:124.240500px;}
.ycf_c00112{bottom:126.186000px;}
.yce_c00112{bottom:127.738500px;}
.ycd_c00112{bottom:135.345000px;}
.ycc_c00112{bottom:136.176000px;}
.ycb_c00112{bottom:138.490500px;}
.yca_c00112{bottom:139.080000px;}
.yc9_c00112{bottom:140.398500px;}
.yc8_c00112{bottom:140.892000px;}
.yc7_c00112{bottom:142.189500px;}
.yc6_c00112{bottom:142.780500px;}
.yc5_c00112{bottom:143.664000px;}
.yc4_c00112{bottom:153.709500px;}
.yc3_c00112{bottom:155.019000px;}
.yc2_c00112{bottom:157.302000px;}
.yc1_c00112{bottom:159.429000px;}
.yc0_c00112{bottom:160.372500px;}
.ybf_c00112{bottom:160.683000px;}
.ybe_c00112{bottom:163.105500px;}
.ybd_c00112{bottom:170.155500px;}
.ybc_c00112{bottom:171.577500px;}
.ybb_c00112{bottom:172.333500px;}
.yba_c00112{bottom:173.287500px;}
.yb9_c00112{bottom:173.862000px;}
.yb8_c00112{bottom:174.784500px;}
.yb7_c00112{bottom:176.716500px;}
.yb6_c00112{bottom:177.589500px;}
.yb5_c00112{bottom:178.767000px;}
.yb4_c00112{bottom:186.210000px;}
.yb3_c00112{bottom:187.645500px;}
.yb2_c00112{bottom:188.691000px;}
.yb1_c00112{bottom:189.142500px;}
.yb0_c00112{bottom:189.379500px;}
.yaf_c00112{bottom:191.046000px;}
.yae_c00112{bottom:191.563500px;}
.yad_c00112{bottom:192.717000px;}
.yac_c00112{bottom:193.395000px;}
.yab_c00112{bottom:193.882500px;}
.yaa_c00112{bottom:204.154500px;}
.ya9_c00112{bottom:204.664500px;}
.ya8_c00112{bottom:205.300500px;}
.ya7_c00112{bottom:207.049500px;}
.ya6_c00112{bottom:207.646500px;}
.ya5_c00112{bottom:208.968000px;}
.ya4_c00112{bottom:209.361000px;}
.ya3_c00112{bottom:211.399500px;}
.ya2_c00112{bottom:213.592500px;}
.ya1_c00112{bottom:221.310000px;}
.ya0_c00112{bottom:221.689500px;}
.y9f_c00112{bottom:223.500000px;}
.y9e_c00112{bottom:224.007000px;}
.y9d_c00112{bottom:226.831500px;}
.y9c_c00112{bottom:228.540000px;}
.y9b_c00112{bottom:229.377000px;}
.y9a_c00112{bottom:230.332500px;}
.y99_c00112{bottom:239.032500px;}
.y98_c00112{bottom:239.956500px;}
.y97_c00112{bottom:242.053500px;}
.y96_c00112{bottom:243.120000px;}
.y95_c00112{bottom:244.957500px;}
.y94_c00112{bottom:245.881500px;}
.y93_c00112{bottom:247.126500px;}
.y92_c00112{bottom:247.611000px;}
.y91_c00112{bottom:257.461500px;}
.y90_c00112{bottom:258.093000px;}
.y8f_c00112{bottom:258.486000px;}
.y8e_c00112{bottom:260.043000px;}
.y8d_c00112{bottom:260.836500px;}
.y8c_c00112{bottom:261.217500px;}
.y8b_c00112{bottom:263.343000px;}
.y8a_c00112{bottom:264.349500px;}
.y89_c00112{bottom:275.059500px;}
.y88_c00112{bottom:275.499000px;}
.y87_c00112{bottom:276.444000px;}
.y86_c00112{bottom:277.525500px;}
.y85_c00112{bottom:278.157000px;}
.y84_c00112{bottom:279.532500px;}
.y83_c00112{bottom:280.101000px;}
.y82_c00112{bottom:280.450500px;}
.y81_c00112{bottom:280.798500px;}
.y80_c00112{bottom:281.896500px;}
.y7f_c00112{bottom:294.831000px;}
.y7e_c00112{bottom:295.219500px;}
.y7d_c00112{bottom:296.337000px;}
.y7c_c00112{bottom:297.520500px;}
.y7b_c00112{bottom:297.925500px;}
.y7a_c00112{bottom:298.150500px;}
.y79_c00112{bottom:299.205000px;}
.y78_c00112{bottom:299.566500px;}
.y77_c00112{bottom:300.252000px;}
.y76_c00112{bottom:311.676000px;}
.y75_c00112{bottom:312.115500px;}
.y74_c00112{bottom:313.227000px;}
.y73_c00112{bottom:313.767000px;}
.y72_c00112{bottom:313.992000px;}
.y71_c00112{bottom:315.994500px;}
.y70_c00112{bottom:316.420500px;}
.y6f_c00112{bottom:316.855500px;}
.y6e_c00112{bottom:317.530500px;}
.y6d_c00112{bottom:328.864500px;}
.y6c_c00112{bottom:329.269500px;}
.y6b_c00112{bottom:330.069000px;}
.y6a_c00112{bottom:330.358500px;}
.y69_c00112{bottom:331.590000px;}
.y68_c00112{bottom:331.774500px;}
.y67_c00112{bottom:332.872500px;}
.y66_c00112{bottom:333.187500px;}
.y65_c00112{bottom:346.200000px;}
.y64_c00112{bottom:346.851000px;}
.y63_c00112{bottom:347.055000px;}
.y62_c00112{bottom:347.242500px;}
.y61_c00112{bottom:347.802000px;}
.y60_c00112{bottom:348.048000px;}
.y5f_c00112{bottom:348.906000px;}
.y5e_c00112{bottom:349.123500px;}
.y5d_c00112{bottom:349.369500px;}
.y5c_c00112{bottom:349.656000px;}
.y5b_c00112{bottom:362.992500px;}
.y5a_c00112{bottom:363.777000px;}
.y59_c00112{bottom:364.081500px;}
.y58_c00112{bottom:364.849500px;}
.y57_c00112{bottom:365.154000px;}
.y56_c00112{bottom:366.256500px;}
.y55_c00112{bottom:367.026000px;}
.y54_c00112{bottom:367.207500px;}
.y53_c00112{bottom:379.680000px;}
.y52_c00112{bottom:379.945500px;}
.y51_c00112{bottom:380.326500px;}
.y50_c00112{bottom:380.545500px;}
.y4f_c00112{bottom:381.850500px;}
.y4e_c00112{bottom:382.188000px;}
.y4d_c00112{bottom:382.887000px;}
.y4c_c00112{bottom:383.175000px;}
.y4b_c00112{bottom:383.947500px;}
.y4a_c00112{bottom:396.742500px;}
.y49_c00112{bottom:397.513500px;}
.y48_c00112{bottom:397.798500px;}
.y47_c00112{bottom:398.265000px;}
.y46_c00112{bottom:399.258000px;}
.y45_c00112{bottom:399.648000px;}
.y44_c00112{bottom:400.566000px;}
.y43_c00112{bottom:400.905000px;}
.y42_c00112{bottom:401.230500px;}
.y41_c00112{bottom:401.499000px;}
.y40_c00112{bottom:414.678000px;}
.y3f_c00112{bottom:415.261500px;}
.y3e_c00112{bottom:415.542000px;}
.y3d_c00112{bottom:415.693500px;}
.y3c_c00112{bottom:416.167500px;}
.y3b_c00112{bottom:416.410500px;}
.y3a_c00112{bottom:417.114000px;}
.y39_c00112{bottom:417.405000px;}
.y38_c00112{bottom:417.744000px;}
.y37_c00112{bottom:417.964500px;}
.y36_c00112{bottom:432.118500px;}
.y35_c00112{bottom:432.375000px;}
.y34_c00112{bottom:432.721500px;}
.y33_c00112{bottom:433.695000px;}
.y32_c00112{bottom:434.307000px;}
.y31_c00112{bottom:435.222000px;}
.y30_c00112{bottom:436.057500px;}
.y2f_c00112{bottom:449.059500px;}
.y2e_c00112{bottom:449.466000px;}
.y2d_c00112{bottom:449.860500px;}
.y2c_c00112{bottom:450.633000px;}
.y2b_c00112{bottom:450.897000px;}
.y2a_c00112{bottom:451.387500px;}
.y29_c00112{bottom:451.663500px;}
.y28_c00112{bottom:451.797000px;}
.y27_c00112{bottom:452.254500px;}
.y26_c00112{bottom:466.825500px;}
.y25_c00112{bottom:467.043000px;}
.y24_c00112{bottom:467.538000px;}
.y23_c00112{bottom:467.836500px;}
.y22_c00112{bottom:468.471000px;}
.y21_c00112{bottom:468.669000px;}
.y20_c00112{bottom:469.183500px;}
.y1f_c00112{bottom:469.404000px;}
.y1e_c00112{bottom:470.088000px;}
.y1d_c00112{bottom:483.493500px;}
.y1c_c00112{bottom:484.768500px;}
.y1b_c00112{bottom:485.562000px;}
.y1a_c00112{bottom:486.015000px;}
.y19_c00112{bottom:486.348000px;}
.y18_c00112{bottom:487.324500px;}
.y17_c00112{bottom:487.932000px;}
.y16_c00112{bottom:488.434500px;}
.y15_c00112{bottom:502.167000px;}
.y14_c00112{bottom:502.434000px;}
.y13_c00112{bottom:503.119500px;}
.y12_c00112{bottom:503.331000px;}
.y11_c00112{bottom:503.803500px;}
.y10_c00112{bottom:503.986500px;}
.yf_c00112{bottom:504.486000px;}
.ye_c00112{bottom:504.631500px;}
.yd_c00112{bottom:518.878500px;}
.yc_c00112{bottom:519.208500px;}
.yb_c00112{bottom:519.459000px;}
.ya_c00112{bottom:519.621000px;}
.y9_c00112{bottom:519.966000px;}
.y8_c00112{bottom:520.735500px;}
.y7_c00112{bottom:521.049000px;}
.y6_c00112{bottom:521.244000px;}
.y5_c00112{bottom:521.911500px;}
.y4_c00112{bottom:537.538500px;}
.y3_c00112{bottom:555.561000px;}
.y2_c00112{bottom:573.450000px;}
.y1_c00112{bottom:590.889000px;}
.h7_c00112{height:59.850000px;}
.h3_c00112{height:60.900000px;}
.h8_c00112{height:61.950000px;}
.h1_c00112{height:63.000000px;}
.hd_c00112{height:64.050000px;}
.h6_c00112{height:65.100000px;}
.ha_c00112{height:66.150000px;}
.hb_c00112{height:67.200000px;}
.hc_c00112{height:68.250000px;}
.h5_c00112{height:69.300000px;}
.h9_c00112{height:70.350000px;}
.h4_c00112{height:72.450000px;}
.h2_c00112{height:75.600000px;}
.h0_c00112{height:634.500000px;}
.w0_c00112{width:371.790000px;}
.w1_c00112{width:372.000000px;}
.x0_c00112{left:0.000000px;}
.x19_c00112{left:25.245000px;}
.xa_c00112{left:32.940000px;}
.x79_c00112{left:34.087500px;}
.x2_c00112{left:35.100000px;}
.x3a_c00112{left:38.697000px;}
.x42_c00112{left:42.442500px;}
.x87_c00112{left:44.397000px;}
.x48_c00112{left:46.258500px;}
.x22_c00112{left:47.374500px;}
.x66_c00112{left:49.006500px;}
.x6e_c00112{left:50.365500px;}
.x3e_c00112{left:52.015500px;}
.x4e_c00112{left:54.355500px;}
.x43_c00112{left:58.203000px;}
.x83_c00112{left:59.431500px;}
.x85_c00112{left:61.644000px;}
.x29_c00112{left:64.437000px;}
.x5d_c00112{left:67.783500px;}
.x12_c00112{left:69.930000px;}
.x3_c00112{left:71.550000px;}
.x88_c00112{left:73.453500px;}
.x33_c00112{left:74.983500px;}
.x44_c00112{left:77.376000px;}
.x7a_c00112{left:78.454500px;}
.xb_c00112{left:81.000000px;}
.x4_c00112{left:84.240000px;}
.x5e_c00112{left:85.872000px;}
.x34_c00112{left:87.078000px;}
.x2e_c00112{left:89.233500px;}
.x1a_c00112{left:91.933500px;}
.x89_c00112{left:93.297000px;}
.x3b_c00112{left:94.386000px;}
.x52_c00112{left:95.991000px;}
.x23_c00112{left:97.348500px;}
.x7d_c00112{left:98.850000px;}
.x73_c00112{left:101.211000px;}
.x2a_c00112{left:102.402000px;}
.xc_c00112{left:103.950000px;}
.x4f_c00112{left:105.672000px;}
.x5_c00112{left:107.460000px;}
.x49_c00112{left:108.610500px;}
.x74_c00112{left:109.818000px;}
.x1b_c00112{left:111.375000px;}
.x24_c00112{left:115.710000px;}
.x67_c00112{left:118.987500px;}
.x81_c00112{left:120.090000px;}
.x55_c00112{left:121.660500px;}
.x60_c00112{left:124.663500px;}
.x13_c00112{left:130.680000px;}
.x76_c00112{left:131.929500px;}
.x56_c00112{left:133.194000px;}
.x8a_c00112{left:134.425500px;}
.x75_c00112{left:136.023000px;}
.x6f_c00112{left:137.365500px;}
.x5f_c00112{left:138.625500px;}
.xd_c00112{left:140.130000px;}
.x1c_c00112{left:142.705500px;}
.x64_c00112{left:145.452000px;}
.x69_c00112{left:146.559000px;}
.x77_c00112{left:147.844500px;}
.x2f_c00112{left:150.520500px;}
.xe_c00112{left:152.820000px;}
.x14_c00112{left:155.250000px;}
.x35_c00112{left:156.741000px;}
.x65_c00112{left:159.070500px;}
.x25_c00112{left:162.912000px;}
.x30_c00112{left:167.043000px;}
.x4a_c00112{left:169.645500px;}
.x1_c00112{left:173.340000px;}
.x61_c00112{left:177.562500px;}
.x50_c00112{left:179.124000px;}
.x36_c00112{left:180.756000px;}
.x26_c00112{left:184.018500px;}
.x53_c00112{left:188.059500px;}
.x6_c00112{left:190.620000px;}
.x7e_c00112{left:192.987000px;}
.x5a_c00112{left:194.142000px;}
.x3c_c00112{left:196.122000px;}
.x51_c00112{left:199.377000px;}
.x7b_c00112{left:200.535000px;}
.x62_c00112{left:201.867000px;}
.x5b_c00112{left:204.399000px;}
.x15_c00112{left:207.900000px;}
.x57_c00112{left:210.202500px;}
.x2b_c00112{left:212.607000px;}
.x82_c00112{left:215.839500px;}
.x1d_c00112{left:219.691500px;}
.x3f_c00112{left:222.943500px;}
.x70_c00112{left:224.592000px;}
.x6c_c00112{left:226.158000px;}
.x58_c00112{left:228.262500px;}
.x7_c00112{left:230.040000px;}
.x45_c00112{left:232.627500px;}
.xf_c00112{left:235.170000px;}
.x6a_c00112{left:237.654000px;}
.x16_c00112{left:238.950000px;}
.x7c_c00112{left:241.840500px;}
.x63_c00112{left:243.447000px;}
.x31_c00112{left:244.740000px;}
.x4b_c00112{left:246.399000px;}
.x8_c00112{left:248.670000px;}
.x37_c00112{left:251.013000px;}
.x27_c00112{left:252.618000px;}
.x1e_c00112{left:254.208000px;}
.x10_c00112{left:256.230000px;}
.x40_c00112{left:259.060500px;}
.x3d_c00112{left:260.980500px;}
.x2c_c00112{left:262.231500px;}
.x71_c00112{left:263.305500px;}
.x17_c00112{left:265.680000px;}
.x54_c00112{left:267.421500px;}
.x1f_c00112{left:270.457500px;}
.x7f_c00112{left:272.335500px;}
.x46_c00112{left:276.822000px;}
.x59_c00112{left:278.238000px;}
.x28_c00112{left:279.354000px;}
.x4c_c00112{left:281.676000px;}
.x78_c00112{left:284.095500px;}
.x18_c00112{left:285.120000px;}
.x38_c00112{left:286.903500px;}
.x80_c00112{left:288.618000px;}
.x20_c00112{left:295.519500px;}
.x4d_c00112{left:297.336000px;}
.x5c_c00112{left:299.424000px;}
.x11_c00112{left:301.320000px;}
.x32_c00112{left:304.134000px;}
.x84_c00112{left:306.415500px;}
.x41_c00112{left:307.686000px;}
.x68_c00112{left:310.114500px;}
.x6d_c00112{left:311.311500px;}
.x6b_c00112{left:312.414000px;}
.x86_c00112{left:314.616000px;}
.x72_c00112{left:316.464000px;}
.x9_c00112{left:317.790000px;}
.x47_c00112{left:322.164000px;}
.x39_c00112{left:323.901000px;}
.x8b_c00112{left:324.981000px;}
.x21_c00112{left:328.461000px;}
.x2d_c00112{left:341.904000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.fs6_c00112{font-size:53.200000pt;}
.fs2_c00112{font-size:54.133333pt;}
.fs7_c00112{font-size:55.066667pt;}
.fs0_c00112{font-size:56.000000pt;}
.fsc_c00112{font-size:56.933333pt;}
.fs5_c00112{font-size:57.866667pt;}
.fs9_c00112{font-size:58.800000pt;}
.fsa_c00112{font-size:59.733333pt;}
.fsb_c00112{font-size:60.666667pt;}
.fs4_c00112{font-size:61.600000pt;}
.fs8_c00112{font-size:62.533333pt;}
.fs3_c00112{font-size:64.400000pt;}
.fs1_c00112{font-size:67.200000pt;}
.y0_c00112{bottom:0.000000pt;}
.y101_c00112{bottom:26.158667pt;}
.y100_c00112{bottom:26.656000pt;}
.yff_c00112{bottom:28.053333pt;}
.yfe_c00112{bottom:28.506667pt;}
.yfd_c00112{bottom:29.170667pt;}
.yfc_c00112{bottom:29.590667pt;}
.yfb_c00112{bottom:30.901333pt;}
.yfa_c00112{bottom:31.925333pt;}
.yf9_c00112{bottom:32.418667pt;}
.yf8_c00112{bottom:33.141333pt;}
.yf7_c00112{bottom:42.160000pt;}
.yf6_c00112{bottom:42.677333pt;}
.yf5_c00112{bottom:45.053333pt;}
.yf4_c00112{bottom:45.970667pt;}
.yf3_c00112{bottom:46.341333pt;}
.yf2_c00112{bottom:47.966667pt;}
.yf1_c00112{bottom:50.481333pt;}
.yf0_c00112{bottom:51.384000pt;}
.yef_c00112{bottom:59.025333pt;}
.yee_c00112{bottom:60.417333pt;}
.yed_c00112{bottom:60.924000pt;}
.yec_c00112{bottom:61.494667pt;}
.yeb_c00112{bottom:63.097333pt;}
.yea_c00112{bottom:64.580000pt;}
.ye9_c00112{bottom:65.085333pt;}
.ye8_c00112{bottom:65.392000pt;}
.ye7_c00112{bottom:66.020000pt;}
.ye6_c00112{bottom:74.378667pt;}
.ye5_c00112{bottom:76.078667pt;}
.ye4_c00112{bottom:76.794667pt;}
.ye3_c00112{bottom:77.257333pt;}
.ye2_c00112{bottom:78.684000pt;}
.ye1_c00112{bottom:79.092000pt;}
.ye0_c00112{bottom:79.944000pt;}
.ydf_c00112{bottom:81.138667pt;}
.yde_c00112{bottom:90.232000pt;}
.ydd_c00112{bottom:90.709333pt;}
.ydc_c00112{bottom:91.305333pt;}
.ydb_c00112{bottom:92.520000pt;}
.yda_c00112{bottom:93.036000pt;}
.yd9_c00112{bottom:94.820000pt;}
.yd8_c00112{bottom:95.797333pt;}
.yd7_c00112{bottom:97.101333pt;}
.yd6_c00112{bottom:97.704000pt;}
.yd5_c00112{bottom:104.514667pt;}
.yd4_c00112{bottom:107.081333pt;}
.yd3_c00112{bottom:107.652000pt;}
.yd2_c00112{bottom:108.366667pt;}
.yd1_c00112{bottom:109.862667pt;}
.yd0_c00112{bottom:110.436000pt;}
.ycf_c00112{bottom:112.165333pt;}
.yce_c00112{bottom:113.545333pt;}
.ycd_c00112{bottom:120.306667pt;}
.ycc_c00112{bottom:121.045333pt;}
.ycb_c00112{bottom:123.102667pt;}
.yca_c00112{bottom:123.626667pt;}
.yc9_c00112{bottom:124.798667pt;}
.yc8_c00112{bottom:125.237333pt;}
.yc7_c00112{bottom:126.390667pt;}
.yc6_c00112{bottom:126.916000pt;}
.yc5_c00112{bottom:127.701333pt;}
.yc4_c00112{bottom:136.630667pt;}
.yc3_c00112{bottom:137.794667pt;}
.yc2_c00112{bottom:139.824000pt;}
.yc1_c00112{bottom:141.714667pt;}
.yc0_c00112{bottom:142.553333pt;}
.ybf_c00112{bottom:142.829333pt;}
.ybe_c00112{bottom:144.982667pt;}
.ybd_c00112{bottom:151.249333pt;}
.ybc_c00112{bottom:152.513333pt;}
.ybb_c00112{bottom:153.185333pt;}
.yba_c00112{bottom:154.033333pt;}
.yb9_c00112{bottom:154.544000pt;}
.yb8_c00112{bottom:155.364000pt;}
.yb7_c00112{bottom:157.081333pt;}
.yb6_c00112{bottom:157.857333pt;}
.yb5_c00112{bottom:158.904000pt;}
.yb4_c00112{bottom:165.520000pt;}
.yb3_c00112{bottom:166.796000pt;}
.yb2_c00112{bottom:167.725333pt;}
.yb1_c00112{bottom:168.126667pt;}
.yb0_c00112{bottom:168.337333pt;}
.yaf_c00112{bottom:169.818667pt;}
.yae_c00112{bottom:170.278667pt;}
.yad_c00112{bottom:171.304000pt;}
.yac_c00112{bottom:171.906667pt;}
.yab_c00112{bottom:172.340000pt;}
.yaa_c00112{bottom:181.470667pt;}
.ya9_c00112{bottom:181.924000pt;}
.ya8_c00112{bottom:182.489333pt;}
.ya7_c00112{bottom:184.044000pt;}
.ya6_c00112{bottom:184.574667pt;}
.ya5_c00112{bottom:185.749333pt;}
.ya4_c00112{bottom:186.098667pt;}
.ya3_c00112{bottom:187.910667pt;}
.ya2_c00112{bottom:189.860000pt;}
.ya1_c00112{bottom:196.720000pt;}
.ya0_c00112{bottom:197.057333pt;}
.y9f_c00112{bottom:198.666667pt;}
.y9e_c00112{bottom:199.117333pt;}
.y9d_c00112{bottom:201.628000pt;}
.y9c_c00112{bottom:203.146667pt;}
.y9b_c00112{bottom:203.890667pt;}
.y9a_c00112{bottom:204.740000pt;}
.y99_c00112{bottom:212.473333pt;}
.y98_c00112{bottom:213.294667pt;}
.y97_c00112{bottom:215.158667pt;}
.y96_c00112{bottom:216.106667pt;}
.y95_c00112{bottom:217.740000pt;}
.y94_c00112{bottom:218.561333pt;}
.y93_c00112{bottom:219.668000pt;}
.y92_c00112{bottom:220.098667pt;}
.y91_c00112{bottom:228.854667pt;}
.y90_c00112{bottom:229.416000pt;}
.y8f_c00112{bottom:229.765333pt;}
.y8e_c00112{bottom:231.149333pt;}
.y8d_c00112{bottom:231.854667pt;}
.y8c_c00112{bottom:232.193333pt;}
.y8b_c00112{bottom:234.082667pt;}
.y8a_c00112{bottom:234.977333pt;}
.y89_c00112{bottom:244.497333pt;}
.y88_c00112{bottom:244.888000pt;}
.y87_c00112{bottom:245.728000pt;}
.y86_c00112{bottom:246.689333pt;}
.y85_c00112{bottom:247.250667pt;}
.y84_c00112{bottom:248.473333pt;}
.y83_c00112{bottom:248.978667pt;}
.y82_c00112{bottom:249.289333pt;}
.y81_c00112{bottom:249.598667pt;}
.y80_c00112{bottom:250.574667pt;}
.y7f_c00112{bottom:262.072000pt;}
.y7e_c00112{bottom:262.417333pt;}
.y7d_c00112{bottom:263.410667pt;}
.y7c_c00112{bottom:264.462667pt;}
.y7b_c00112{bottom:264.822667pt;}
.y7a_c00112{bottom:265.022667pt;}
.y79_c00112{bottom:265.960000pt;}
.y78_c00112{bottom:266.281333pt;}
.y77_c00112{bottom:266.890667pt;}
.y76_c00112{bottom:277.045333pt;}
.y75_c00112{bottom:277.436000pt;}
.y74_c00112{bottom:278.424000pt;}
.y73_c00112{bottom:278.904000pt;}
.y72_c00112{bottom:279.104000pt;}
.y71_c00112{bottom:280.884000pt;}
.y70_c00112{bottom:281.262667pt;}
.y6f_c00112{bottom:281.649333pt;}
.y6e_c00112{bottom:282.249333pt;}
.y6d_c00112{bottom:292.324000pt;}
.y6c_c00112{bottom:292.684000pt;}
.y6b_c00112{bottom:293.394667pt;}
.y6a_c00112{bottom:293.652000pt;}
.y69_c00112{bottom:294.746667pt;}
.y68_c00112{bottom:294.910667pt;}
.y67_c00112{bottom:295.886667pt;}
.y66_c00112{bottom:296.166667pt;}
.y65_c00112{bottom:307.733333pt;}
.y64_c00112{bottom:308.312000pt;}
.y63_c00112{bottom:308.493333pt;}
.y62_c00112{bottom:308.660000pt;}
.y61_c00112{bottom:309.157333pt;}
.y60_c00112{bottom:309.376000pt;}
.y5f_c00112{bottom:310.138667pt;}
.y5e_c00112{bottom:310.332000pt;}
.y5d_c00112{bottom:310.550667pt;}
.y5c_c00112{bottom:310.805333pt;}
.y5b_c00112{bottom:322.660000pt;}
.y5a_c00112{bottom:323.357333pt;}
.y59_c00112{bottom:323.628000pt;}
.y58_c00112{bottom:324.310667pt;}
.y57_c00112{bottom:324.581333pt;}
.y56_c00112{bottom:325.561333pt;}
.y55_c00112{bottom:326.245333pt;}
.y54_c00112{bottom:326.406667pt;}
.y53_c00112{bottom:337.493333pt;}
.y52_c00112{bottom:337.729333pt;}
.y51_c00112{bottom:338.068000pt;}
.y50_c00112{bottom:338.262667pt;}
.y4f_c00112{bottom:339.422667pt;}
.y4e_c00112{bottom:339.722667pt;}
.y4d_c00112{bottom:340.344000pt;}
.y4c_c00112{bottom:340.600000pt;}
.y4b_c00112{bottom:341.286667pt;}
.y4a_c00112{bottom:352.660000pt;}
.y49_c00112{bottom:353.345333pt;}
.y48_c00112{bottom:353.598667pt;}
.y47_c00112{bottom:354.013333pt;}
.y46_c00112{bottom:354.896000pt;}
.y45_c00112{bottom:355.242667pt;}
.y44_c00112{bottom:356.058667pt;}
.y43_c00112{bottom:356.360000pt;}
.y42_c00112{bottom:356.649333pt;}
.y41_c00112{bottom:356.888000pt;}
.y40_c00112{bottom:368.602667pt;}
.y3f_c00112{bottom:369.121333pt;}
.y3e_c00112{bottom:369.370667pt;}
.y3d_c00112{bottom:369.505333pt;}
.y3c_c00112{bottom:369.926667pt;}
.y3b_c00112{bottom:370.142667pt;}
.y3a_c00112{bottom:370.768000pt;}
.y39_c00112{bottom:371.026667pt;}
.y38_c00112{bottom:371.328000pt;}
.y37_c00112{bottom:371.524000pt;}
.y36_c00112{bottom:384.105333pt;}
.y35_c00112{bottom:384.333333pt;}
.y34_c00112{bottom:384.641333pt;}
.y33_c00112{bottom:385.506667pt;}
.y32_c00112{bottom:386.050667pt;}
.y31_c00112{bottom:386.864000pt;}
.y30_c00112{bottom:387.606667pt;}
.y2f_c00112{bottom:399.164000pt;}
.y2e_c00112{bottom:399.525333pt;}
.y2d_c00112{bottom:399.876000pt;}
.y2c_c00112{bottom:400.562667pt;}
.y2b_c00112{bottom:400.797333pt;}
.y2a_c00112{bottom:401.233333pt;}
.y29_c00112{bottom:401.478667pt;}
.y28_c00112{bottom:401.597333pt;}
.y27_c00112{bottom:402.004000pt;}
.y26_c00112{bottom:414.956000pt;}
.y25_c00112{bottom:415.149333pt;}
.y24_c00112{bottom:415.589333pt;}
.y23_c00112{bottom:415.854667pt;}
.y22_c00112{bottom:416.418667pt;}
.y21_c00112{bottom:416.594667pt;}
.y20_c00112{bottom:417.052000pt;}
.y1f_c00112{bottom:417.248000pt;}
.y1e_c00112{bottom:417.856000pt;}
.y1d_c00112{bottom:429.772000pt;}
.y1c_c00112{bottom:430.905333pt;}
.y1b_c00112{bottom:431.610667pt;}
.y1a_c00112{bottom:432.013333pt;}
.y19_c00112{bottom:432.309333pt;}
.y18_c00112{bottom:433.177333pt;}
.y17_c00112{bottom:433.717333pt;}
.y16_c00112{bottom:434.164000pt;}
.y15_c00112{bottom:446.370667pt;}
.y14_c00112{bottom:446.608000pt;}
.y13_c00112{bottom:447.217333pt;}
.y12_c00112{bottom:447.405333pt;}
.y11_c00112{bottom:447.825333pt;}
.y10_c00112{bottom:447.988000pt;}
.yf_c00112{bottom:448.432000pt;}
.ye_c00112{bottom:448.561333pt;}
.yd_c00112{bottom:461.225333pt;}
.yc_c00112{bottom:461.518667pt;}
.yb_c00112{bottom:461.741333pt;}
.ya_c00112{bottom:461.885333pt;}
.y9_c00112{bottom:462.192000pt;}
.y8_c00112{bottom:462.876000pt;}
.y7_c00112{bottom:463.154667pt;}
.y6_c00112{bottom:463.328000pt;}
.y5_c00112{bottom:463.921333pt;}
.y4_c00112{bottom:477.812000pt;}
.y3_c00112{bottom:493.832000pt;}
.y2_c00112{bottom:509.733333pt;}
.y1_c00112{bottom:525.234667pt;}
.h7_c00112{height:53.200000pt;}
.h3_c00112{height:54.133333pt;}
.h8_c00112{height:55.066667pt;}
.h1_c00112{height:56.000000pt;}
.hd_c00112{height:56.933333pt;}
.h6_c00112{height:57.866667pt;}
.ha_c00112{height:58.800000pt;}
.hb_c00112{height:59.733333pt;}
.hc_c00112{height:60.666667pt;}
.h5_c00112{height:61.600000pt;}
.h9_c00112{height:62.533333pt;}
.h4_c00112{height:64.400000pt;}
.h2_c00112{height:67.200000pt;}
.h0_c00112{height:564.000000pt;}
.w0_c00112{width:330.480000pt;}
.w1_c00112{width:330.666667pt;}
.x0_c00112{left:0.000000pt;}
.x19_c00112{left:22.440000pt;}
.xa_c00112{left:29.280000pt;}
.x79_c00112{left:30.300000pt;}
.x2_c00112{left:31.200000pt;}
.x3a_c00112{left:34.397333pt;}
.x42_c00112{left:37.726667pt;}
.x87_c00112{left:39.464000pt;}
.x48_c00112{left:41.118667pt;}
.x22_c00112{left:42.110667pt;}
.x66_c00112{left:43.561333pt;}
.x6e_c00112{left:44.769333pt;}
.x3e_c00112{left:46.236000pt;}
.x4e_c00112{left:48.316000pt;}
.x43_c00112{left:51.736000pt;}
.x83_c00112{left:52.828000pt;}
.x85_c00112{left:54.794667pt;}
.x29_c00112{left:57.277333pt;}
.x5d_c00112{left:60.252000pt;}
.x12_c00112{left:62.160000pt;}
.x3_c00112{left:63.600000pt;}
.x88_c00112{left:65.292000pt;}
.x33_c00112{left:66.652000pt;}
.x44_c00112{left:68.778667pt;}
.x7a_c00112{left:69.737333pt;}
.xb_c00112{left:72.000000pt;}
.x4_c00112{left:74.880000pt;}
.x5e_c00112{left:76.330667pt;}
.x34_c00112{left:77.402667pt;}
.x2e_c00112{left:79.318667pt;}
.x1a_c00112{left:81.718667pt;}
.x89_c00112{left:82.930667pt;}
.x3b_c00112{left:83.898667pt;}
.x52_c00112{left:85.325333pt;}
.x23_c00112{left:86.532000pt;}
.x7d_c00112{left:87.866667pt;}
.x73_c00112{left:89.965333pt;}
.x2a_c00112{left:91.024000pt;}
.xc_c00112{left:92.400000pt;}
.x4f_c00112{left:93.930667pt;}
.x5_c00112{left:95.520000pt;}
.x49_c00112{left:96.542667pt;}
.x74_c00112{left:97.616000pt;}
.x1b_c00112{left:99.000000pt;}
.x24_c00112{left:102.853333pt;}
.x67_c00112{left:105.766667pt;}
.x81_c00112{left:106.746667pt;}
.x55_c00112{left:108.142667pt;}
.x60_c00112{left:110.812000pt;}
.x13_c00112{left:116.160000pt;}
.x76_c00112{left:117.270667pt;}
.x56_c00112{left:118.394667pt;}
.x8a_c00112{left:119.489333pt;}
.x75_c00112{left:120.909333pt;}
.x6f_c00112{left:122.102667pt;}
.x5f_c00112{left:123.222667pt;}
.xd_c00112{left:124.560000pt;}
.x1c_c00112{left:126.849333pt;}
.x64_c00112{left:129.290667pt;}
.x69_c00112{left:130.274667pt;}
.x77_c00112{left:131.417333pt;}
.x2f_c00112{left:133.796000pt;}
.xe_c00112{left:135.840000pt;}
.x14_c00112{left:138.000000pt;}
.x35_c00112{left:139.325333pt;}
.x65_c00112{left:141.396000pt;}
.x25_c00112{left:144.810667pt;}
.x30_c00112{left:148.482667pt;}
.x4a_c00112{left:150.796000pt;}
.x1_c00112{left:154.080000pt;}
.x61_c00112{left:157.833333pt;}
.x50_c00112{left:159.221333pt;}
.x36_c00112{left:160.672000pt;}
.x26_c00112{left:163.572000pt;}
.x53_c00112{left:167.164000pt;}
.x6_c00112{left:169.440000pt;}
.x7e_c00112{left:171.544000pt;}
.x5a_c00112{left:172.570667pt;}
.x3c_c00112{left:174.330667pt;}
.x51_c00112{left:177.224000pt;}
.x7b_c00112{left:178.253333pt;}
.x62_c00112{left:179.437333pt;}
.x5b_c00112{left:181.688000pt;}
.x15_c00112{left:184.800000pt;}
.x57_c00112{left:186.846667pt;}
.x2b_c00112{left:188.984000pt;}
.x82_c00112{left:191.857333pt;}
.x1d_c00112{left:195.281333pt;}
.x3f_c00112{left:198.172000pt;}
.x70_c00112{left:199.637333pt;}
.x6c_c00112{left:201.029333pt;}
.x58_c00112{left:202.900000pt;}
.x7_c00112{left:204.480000pt;}
.x45_c00112{left:206.780000pt;}
.xf_c00112{left:209.040000pt;}
.x6a_c00112{left:211.248000pt;}
.x16_c00112{left:212.400000pt;}
.x7c_c00112{left:214.969333pt;}
.x63_c00112{left:216.397333pt;}
.x31_c00112{left:217.546667pt;}
.x4b_c00112{left:219.021333pt;}
.x8_c00112{left:221.040000pt;}
.x37_c00112{left:223.122667pt;}
.x27_c00112{left:224.549333pt;}
.x1e_c00112{left:225.962667pt;}
.x10_c00112{left:227.760000pt;}
.x40_c00112{left:230.276000pt;}
.x3d_c00112{left:231.982667pt;}
.x2c_c00112{left:233.094667pt;}
.x71_c00112{left:234.049333pt;}
.x17_c00112{left:236.160000pt;}
.x54_c00112{left:237.708000pt;}
.x1f_c00112{left:240.406667pt;}
.x7f_c00112{left:242.076000pt;}
.x46_c00112{left:246.064000pt;}
.x59_c00112{left:247.322667pt;}
.x28_c00112{left:248.314667pt;}
.x4c_c00112{left:250.378667pt;}
.x78_c00112{left:252.529333pt;}
.x18_c00112{left:253.440000pt;}
.x38_c00112{left:255.025333pt;}
.x80_c00112{left:256.549333pt;}
.x20_c00112{left:262.684000pt;}
.x4d_c00112{left:264.298667pt;}
.x5c_c00112{left:266.154667pt;}
.x11_c00112{left:267.840000pt;}
.x32_c00112{left:270.341333pt;}
.x84_c00112{left:272.369333pt;}
.x41_c00112{left:273.498667pt;}
.x68_c00112{left:275.657333pt;}
.x6d_c00112{left:276.721333pt;}
.x6b_c00112{left:277.701333pt;}
.x86_c00112{left:279.658667pt;}
.x72_c00112{left:281.301333pt;}
.x9_c00112{left:282.480000pt;}
.x47_c00112{left:286.368000pt;}
.x39_c00112{left:287.912000pt;}
.x8b_c00112{left:288.872000pt;}
.x21_c00112{left:291.965333pt;}
.x2d_c00112{left:303.914667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00113 {
    display:none;
  }
  .loading-indicator_c00113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00113 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00113 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00113" -> "#page-container .classname_c00113")
 */
.pf_c00113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00113 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00113 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00113 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00113 {overflow:visible;}
  }
}
.c_c00113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00113 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00113:after { /* webkit #35443 */
  content: '';
}
.t_c00113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00113 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00113 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00113 { /* info for Javascript */
  display:none;
}
.l_c00113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00113:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00113 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00113.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me8_c00113{transform:matrix(0.016276,-0.000538,0.008254,0.249864,0,0);-ms-transform:matrix(0.016276,-0.000538,0.008254,0.249864,0,0);-webkit-transform:matrix(0.016276,-0.000538,0.008254,0.249864,0,0);}
.me7_c00113{transform:matrix(0.029214,-0.000965,0.008254,0.249864,0,0);-ms-transform:matrix(0.029214,-0.000965,0.008254,0.249864,0,0);-webkit-transform:matrix(0.029214,-0.000965,0.008254,0.249864,0,0);}
.m92_c00113{transform:matrix(0.117848,-0.001650,0.003500,0.249976,0,0);-ms-transform:matrix(0.117848,-0.001650,0.003500,0.249976,0,0);-webkit-transform:matrix(0.117848,-0.001650,0.003500,0.249976,0,0);}
.m2c_c00113{transform:matrix(0.131252,-0.003150,0.005998,0.249928,0,0);-ms-transform:matrix(0.131252,-0.003150,0.005998,0.249928,0,0);-webkit-transform:matrix(0.131252,-0.003150,0.005998,0.249928,0,0);}
.mae_c00113{transform:matrix(0.132156,-0.002511,0.004749,0.249955,0,0);-ms-transform:matrix(0.132156,-0.002511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.132156,-0.002511,0.004749,0.249955,0,0);}
.m1f_c00113{transform:matrix(0.132462,-0.003179,0.005998,0.249928,0,0);-ms-transform:matrix(0.132462,-0.003179,0.005998,0.249928,0,0);-webkit-transform:matrix(0.132462,-0.003179,0.005998,0.249928,0,0);}
.m37_c00113{transform:matrix(0.134216,-0.003221,0.005998,0.249928,0,0);-ms-transform:matrix(0.134216,-0.003221,0.005998,0.249928,0,0);-webkit-transform:matrix(0.134216,-0.003221,0.005998,0.249928,0,0);}
.m87_c00113{transform:matrix(0.139651,-0.001955,0.003500,0.249976,0,0);-ms-transform:matrix(0.139651,-0.001955,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139651,-0.001955,0.003500,0.249976,0,0);}
.m1d_c00113{transform:matrix(0.140600,-0.003374,0.005998,0.249928,0,0);-ms-transform:matrix(0.140600,-0.003374,0.005998,0.249928,0,0);-webkit-transform:matrix(0.140600,-0.003374,0.005998,0.249928,0,0);}
.mb1_c00113{transform:matrix(0.141354,-0.002686,0.004749,0.249955,0,0);-ms-transform:matrix(0.141354,-0.002686,0.004749,0.249955,0,0);-webkit-transform:matrix(0.141354,-0.002686,0.004749,0.249955,0,0);}
.md8_c00113{transform:matrix(0.144931,-0.004788,0.008254,0.249864,0,0);-ms-transform:matrix(0.144931,-0.004788,0.008254,0.249864,0,0);-webkit-transform:matrix(0.144931,-0.004788,0.008254,0.249864,0,0);}
.m18_c00113{transform:matrix(0.145148,-0.003484,0.005998,0.249928,0,0);-ms-transform:matrix(0.145148,-0.003484,0.005998,0.249928,0,0);-webkit-transform:matrix(0.145148,-0.003484,0.005998,0.249928,0,0);}
.mbb_c00113{transform:matrix(0.145304,-0.002761,0.004749,0.249955,0,0);-ms-transform:matrix(0.145304,-0.002761,0.004749,0.249955,0,0);-webkit-transform:matrix(0.145304,-0.002761,0.004749,0.249955,0,0);}
.m31_c00113{transform:matrix(0.146963,-0.003527,0.005998,0.249928,0,0);-ms-transform:matrix(0.146963,-0.003527,0.005998,0.249928,0,0);-webkit-transform:matrix(0.146963,-0.003527,0.005998,0.249928,0,0);}
.mdb_c00113{transform:matrix(0.148134,-0.004893,0.008254,0.249864,0,0);-ms-transform:matrix(0.148134,-0.004893,0.008254,0.249864,0,0);-webkit-transform:matrix(0.148134,-0.004893,0.008254,0.249864,0,0);}
.mc5_c00113{transform:matrix(0.149043,-0.002832,0.004749,0.249955,0,0);-ms-transform:matrix(0.149043,-0.002832,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149043,-0.002832,0.004749,0.249955,0,0);}
.md6_c00113{transform:matrix(0.151262,-0.004997,0.008254,0.249864,0,0);-ms-transform:matrix(0.151262,-0.004997,0.008254,0.249864,0,0);-webkit-transform:matrix(0.151262,-0.004997,0.008254,0.249864,0,0);}
.m3f_c00113{transform:matrix(0.151325,-0.002119,0.003500,0.249976,0,0);-ms-transform:matrix(0.151325,-0.002119,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151325,-0.002119,0.003500,0.249976,0,0);}
.mcf_c00113{transform:matrix(0.151902,-0.005018,0.008254,0.249864,0,0);-ms-transform:matrix(0.151902,-0.005018,0.008254,0.249864,0,0);-webkit-transform:matrix(0.151902,-0.005018,0.008254,0.249864,0,0);}
.m94_c00113{transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);-ms-transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);}
.mca_c00113{transform:matrix(0.153307,-0.002913,0.004749,0.249955,0,0);-ms-transform:matrix(0.153307,-0.002913,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153307,-0.002913,0.004749,0.249955,0,0);}
.m69_c00113{transform:matrix(0.153390,-0.002147,0.003500,0.249976,0,0);-ms-transform:matrix(0.153390,-0.002147,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153390,-0.002147,0.003500,0.249976,0,0);}
.m2a_c00113{transform:matrix(0.153476,-0.003683,0.005998,0.249928,0,0);-ms-transform:matrix(0.153476,-0.003683,0.005998,0.249928,0,0);-webkit-transform:matrix(0.153476,-0.003683,0.005998,0.249928,0,0);}
.m75_c00113{transform:matrix(0.154500,-0.002163,0.003500,0.249976,0,0);-ms-transform:matrix(0.154500,-0.002163,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154500,-0.002163,0.003500,0.249976,0,0);}
.m35_c00113{transform:matrix(0.154875,-0.003717,0.005998,0.249928,0,0);-ms-transform:matrix(0.154875,-0.003717,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154875,-0.003717,0.005998,0.249928,0,0);}
.m20_c00113{transform:matrix(0.155105,-0.003723,0.005998,0.249928,0,0);-ms-transform:matrix(0.155105,-0.003723,0.005998,0.249928,0,0);-webkit-transform:matrix(0.155105,-0.003723,0.005998,0.249928,0,0);}
.mda_c00113{transform:matrix(0.156665,-0.005175,0.008254,0.249864,0,0);-ms-transform:matrix(0.156665,-0.005175,0.008254,0.249864,0,0);-webkit-transform:matrix(0.156665,-0.005175,0.008254,0.249864,0,0);}
.ma5_c00113{transform:matrix(0.157012,-0.004082,0.006498,0.249916,0,0);-ms-transform:matrix(0.157012,-0.004082,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157012,-0.004082,0.006498,0.249916,0,0);}
.ma1_c00113{transform:matrix(0.157100,-0.002199,0.003500,0.249976,0,0);-ms-transform:matrix(0.157100,-0.002199,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157100,-0.002199,0.003500,0.249976,0,0);}
.mc6_c00113{transform:matrix(0.157202,-0.002987,0.004749,0.249955,0,0);-ms-transform:matrix(0.157202,-0.002987,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157202,-0.002987,0.004749,0.249955,0,0);}
.m5b_c00113{transform:matrix(0.157230,-0.002201,0.003500,0.249976,0,0);-ms-transform:matrix(0.157230,-0.002201,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157230,-0.002201,0.003500,0.249976,0,0);}
.mc1_c00113{transform:matrix(0.157497,-0.002992,0.004749,0.249955,0,0);-ms-transform:matrix(0.157497,-0.002992,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157497,-0.002992,0.004749,0.249955,0,0);}
.mf9_c00113{transform:matrix(0.157754,-0.005211,0.008254,0.249864,0,0);-ms-transform:matrix(0.157754,-0.005211,0.008254,0.249864,0,0);-webkit-transform:matrix(0.157754,-0.005211,0.008254,0.249864,0,0);}
.mc3_c00113{transform:matrix(0.158631,-0.003014,0.004749,0.249955,0,0);-ms-transform:matrix(0.158631,-0.003014,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158631,-0.003014,0.004749,0.249955,0,0);}
.m14_c00113{transform:matrix(0.158689,-0.003809,0.005998,0.249928,0,0);-ms-transform:matrix(0.158689,-0.003809,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158689,-0.003809,0.005998,0.249928,0,0);}
.m9_c00113{transform:matrix(0.158706,-0.003015,0.004749,0.249955,0,0);-ms-transform:matrix(0.158706,-0.003015,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158706,-0.003015,0.004749,0.249955,0,0);}
.m1e_c00113{transform:matrix(0.159424,-0.003826,0.005998,0.249928,0,0);-ms-transform:matrix(0.159424,-0.003826,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159424,-0.003826,0.005998,0.249928,0,0);}
.m9a_c00113{transform:matrix(0.159514,-0.002233,0.003500,0.249976,0,0);-ms-transform:matrix(0.159514,-0.002233,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159514,-0.002233,0.003500,0.249976,0,0);}
.mf5_c00113{transform:matrix(0.160218,-0.005292,0.008254,0.249864,0,0);-ms-transform:matrix(0.160218,-0.005292,0.008254,0.249864,0,0);-webkit-transform:matrix(0.160218,-0.005292,0.008254,0.249864,0,0);}
.mc0_c00113{transform:matrix(0.160286,-0.003045,0.004749,0.249955,0,0);-ms-transform:matrix(0.160286,-0.003045,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160286,-0.003045,0.004749,0.249955,0,0);}
.me_c00113{transform:matrix(0.161014,-0.003864,0.005998,0.249928,0,0);-ms-transform:matrix(0.161014,-0.003864,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161014,-0.003864,0.005998,0.249928,0,0);}
.mb2_c00113{transform:matrix(0.161251,-0.003064,0.004749,0.249955,0,0);-ms-transform:matrix(0.161251,-0.003064,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161251,-0.003064,0.004749,0.249955,0,0);}
.mc9_c00113{transform:matrix(0.161301,-0.003065,0.004749,0.249955,0,0);-ms-transform:matrix(0.161301,-0.003065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161301,-0.003065,0.004749,0.249955,0,0);}
.md9_c00113{transform:matrix(0.162037,-0.005353,0.008254,0.249864,0,0);-ms-transform:matrix(0.162037,-0.005353,0.008254,0.249864,0,0);-webkit-transform:matrix(0.162037,-0.005353,0.008254,0.249864,0,0);}
.mfc_c00113{transform:matrix(0.162202,-0.005358,0.008254,0.249864,0,0);-ms-transform:matrix(0.162202,-0.005358,0.008254,0.249864,0,0);-webkit-transform:matrix(0.162202,-0.005358,0.008254,0.249864,0,0);}
.md1_c00113{transform:matrix(0.162706,-0.005375,0.008254,0.249864,0,0);-ms-transform:matrix(0.162706,-0.005375,0.008254,0.249864,0,0);-webkit-transform:matrix(0.162706,-0.005375,0.008254,0.249864,0,0);}
.ma9_c00113{transform:matrix(0.162886,-0.003095,0.004749,0.249955,0,0);-ms-transform:matrix(0.162886,-0.003095,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162886,-0.003095,0.004749,0.249955,0,0);}
.m5a_c00113{transform:matrix(0.163269,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163269,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163269,-0.002286,0.003500,0.249976,0,0);}
.m5_c00113{transform:matrix(0.163755,-0.003111,0.004749,0.249955,0,0);-ms-transform:matrix(0.163755,-0.003111,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163755,-0.003111,0.004749,0.249955,0,0);}
.m1_c00113{transform:matrix(0.163780,-0.003112,0.004749,0.249955,0,0);-ms-transform:matrix(0.163780,-0.003112,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163780,-0.003112,0.004749,0.249955,0,0);}
.md7_c00113{transform:matrix(0.163996,-0.005417,0.008254,0.249864,0,0);-ms-transform:matrix(0.163996,-0.005417,0.008254,0.249864,0,0);-webkit-transform:matrix(0.163996,-0.005417,0.008254,0.249864,0,0);}
.m2f_c00113{transform:matrix(0.165082,-0.003962,0.005998,0.249928,0,0);-ms-transform:matrix(0.165082,-0.003962,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165082,-0.003962,0.005998,0.249928,0,0);}
.mf6_c00113{transform:matrix(0.166499,-0.005500,0.008254,0.249864,0,0);-ms-transform:matrix(0.166499,-0.005500,0.008254,0.249864,0,0);-webkit-transform:matrix(0.166499,-0.005500,0.008254,0.249864,0,0);}
.m96_c00113{transform:matrix(0.166829,-0.002336,0.003500,0.249976,0,0);-ms-transform:matrix(0.166829,-0.002336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166829,-0.002336,0.003500,0.249976,0,0);}
.m7_c00113{transform:matrix(0.167320,-0.003179,0.004749,0.249955,0,0);-ms-transform:matrix(0.167320,-0.003179,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167320,-0.003179,0.004749,0.249955,0,0);}
.mbd_c00113{transform:matrix(0.167460,-0.003182,0.004749,0.249955,0,0);-ms-transform:matrix(0.167460,-0.003182,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167460,-0.003182,0.004749,0.249955,0,0);}
.m6b_c00113{transform:matrix(0.167609,-0.002347,0.003500,0.249976,0,0);-ms-transform:matrix(0.167609,-0.002347,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167609,-0.002347,0.003500,0.249976,0,0);}
.m2d_c00113{transform:matrix(0.168501,-0.004044,0.005998,0.249928,0,0);-ms-transform:matrix(0.168501,-0.004044,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168501,-0.004044,0.005998,0.249928,0,0);}
.mcd_c00113{transform:matrix(0.168608,-0.005570,0.008254,0.249864,0,0);-ms-transform:matrix(0.168608,-0.005570,0.008254,0.249864,0,0);-webkit-transform:matrix(0.168608,-0.005570,0.008254,0.249864,0,0);}
.m13_c00113{transform:matrix(0.169291,-0.004063,0.005998,0.249928,0,0);-ms-transform:matrix(0.169291,-0.004063,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169291,-0.004063,0.005998,0.249928,0,0);}
.mbc_c00113{transform:matrix(0.169549,-0.003221,0.004749,0.249955,0,0);-ms-transform:matrix(0.169549,-0.003221,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169549,-0.003221,0.004749,0.249955,0,0);}
.med_c00113{transform:matrix(0.169622,-0.005603,0.008254,0.249864,0,0);-ms-transform:matrix(0.169622,-0.005603,0.008254,0.249864,0,0);-webkit-transform:matrix(0.169622,-0.005603,0.008254,0.249864,0,0);}
.m34_c00113{transform:matrix(0.169911,-0.004078,0.005998,0.249928,0,0);-ms-transform:matrix(0.169911,-0.004078,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169911,-0.004078,0.005998,0.249928,0,0);}
.mb7_c00113{transform:matrix(0.170279,-0.003235,0.004749,0.249955,0,0);-ms-transform:matrix(0.170279,-0.003235,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170279,-0.003235,0.004749,0.249955,0,0);}
.m19_c00113{transform:matrix(0.170441,-0.004091,0.005998,0.249928,0,0);-ms-transform:matrix(0.170441,-0.004091,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170441,-0.004091,0.005998,0.249928,0,0);}
.m8c_c00113{transform:matrix(0.170543,-0.002388,0.003500,0.249976,0,0);-ms-transform:matrix(0.170543,-0.002388,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170543,-0.002388,0.003500,0.249976,0,0);}
.md_c00113{transform:matrix(0.170956,-0.004103,0.005998,0.249928,0,0);-ms-transform:matrix(0.170956,-0.004103,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170956,-0.004103,0.005998,0.249928,0,0);}
.mc7_c00113{transform:matrix(0.171079,-0.003251,0.004749,0.249955,0,0);-ms-transform:matrix(0.171079,-0.003251,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171079,-0.003251,0.004749,0.249955,0,0);}
.mbf_c00113{transform:matrix(0.171134,-0.003252,0.004749,0.249955,0,0);-ms-transform:matrix(0.171134,-0.003252,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171134,-0.003252,0.004749,0.249955,0,0);}
.mfb_c00113{transform:matrix(0.171906,-0.005679,0.008254,0.249864,0,0);-ms-transform:matrix(0.171906,-0.005679,0.008254,0.249864,0,0);-webkit-transform:matrix(0.171906,-0.005679,0.008254,0.249864,0,0);}
.m7c_c00113{transform:matrix(0.172033,-0.002408,0.003500,0.249976,0,0);-ms-transform:matrix(0.172033,-0.002408,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172033,-0.002408,0.003500,0.249976,0,0);}
.m95_c00113{transform:matrix(0.172068,-0.002409,0.003500,0.249976,0,0);-ms-transform:matrix(0.172068,-0.002409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172068,-0.002409,0.003500,0.249976,0,0);}
.mf2_c00113{transform:matrix(0.172456,-0.005697,0.008254,0.249864,0,0);-ms-transform:matrix(0.172456,-0.005697,0.008254,0.249864,0,0);-webkit-transform:matrix(0.172456,-0.005697,0.008254,0.249864,0,0);}
.m73_c00113{transform:matrix(0.172578,-0.002416,0.003500,0.249976,0,0);-ms-transform:matrix(0.172578,-0.002416,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172578,-0.002416,0.003500,0.249976,0,0);}
.m9d_c00113{transform:matrix(0.172598,-0.002416,0.003500,0.249976,0,0);-ms-transform:matrix(0.172598,-0.002416,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172598,-0.002416,0.003500,0.249976,0,0);}
.mc2_c00113{transform:matrix(0.172799,-0.003283,0.004749,0.249955,0,0);-ms-transform:matrix(0.172799,-0.003283,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172799,-0.003283,0.004749,0.249955,0,0);}
.maf_c00113{transform:matrix(0.172974,-0.003287,0.004749,0.249955,0,0);-ms-transform:matrix(0.172974,-0.003287,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172974,-0.003287,0.004749,0.249955,0,0);}
.ma0_c00113{transform:matrix(0.173638,-0.002431,0.003500,0.249976,0,0);-ms-transform:matrix(0.173638,-0.002431,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173638,-0.002431,0.003500,0.249976,0,0);}
.m36_c00113{transform:matrix(0.173665,-0.004168,0.005998,0.249928,0,0);-ms-transform:matrix(0.173665,-0.004168,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173665,-0.004168,0.005998,0.249928,0,0);}
.mef_c00113{transform:matrix(0.173740,-0.005739,0.008254,0.249864,0,0);-ms-transform:matrix(0.173740,-0.005739,0.008254,0.249864,0,0);-webkit-transform:matrix(0.173740,-0.005739,0.008254,0.249864,0,0);}
.m45_c00113{transform:matrix(0.173743,-0.002432,0.003500,0.249976,0,0);-ms-transform:matrix(0.173743,-0.002432,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173743,-0.002432,0.003500,0.249976,0,0);}
.m64_c00113{transform:matrix(0.174588,-0.002444,0.003500,0.249976,0,0);-ms-transform:matrix(0.174588,-0.002444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174588,-0.002444,0.003500,0.249976,0,0);}
.m9e_c00113{transform:matrix(0.174953,-0.002449,0.003500,0.249976,0,0);-ms-transform:matrix(0.174953,-0.002449,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174953,-0.002449,0.003500,0.249976,0,0);}
.mfa_c00113{transform:matrix(0.175209,-0.005788,0.008254,0.249864,0,0);-ms-transform:matrix(0.175209,-0.005788,0.008254,0.249864,0,0);-webkit-transform:matrix(0.175209,-0.005788,0.008254,0.249864,0,0);}
.md3_c00113{transform:matrix(0.175329,-0.005792,0.008254,0.249864,0,0);-ms-transform:matrix(0.175329,-0.005792,0.008254,0.249864,0,0);-webkit-transform:matrix(0.175329,-0.005792,0.008254,0.249864,0,0);}
.m1b_c00113{transform:matrix(0.176614,-0.004239,0.005998,0.249928,0,0);-ms-transform:matrix(0.176614,-0.004239,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176614,-0.004239,0.005998,0.249928,0,0);}
.mb0_c00113{transform:matrix(0.176673,-0.003357,0.004749,0.249955,0,0);-ms-transform:matrix(0.176673,-0.003357,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176673,-0.003357,0.004749,0.249955,0,0);}
.m6c_c00113{transform:matrix(0.176688,-0.002474,0.003500,0.249976,0,0);-ms-transform:matrix(0.176688,-0.002474,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176688,-0.002474,0.003500,0.249976,0,0);}
.m40_c00113{transform:matrix(0.177123,-0.002480,0.003500,0.249976,0,0);-ms-transform:matrix(0.177123,-0.002480,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177123,-0.002480,0.003500,0.249976,0,0);}
.mec_c00113{transform:matrix(0.177343,-0.005858,0.008254,0.249864,0,0);-ms-transform:matrix(0.177343,-0.005858,0.008254,0.249864,0,0);-webkit-transform:matrix(0.177343,-0.005858,0.008254,0.249864,0,0);}
.m9f_c00113{transform:matrix(0.177628,-0.002487,0.003500,0.249976,0,0);-ms-transform:matrix(0.177628,-0.002487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177628,-0.002487,0.003500,0.249976,0,0);}
.md5_c00113{transform:matrix(0.177678,-0.005869,0.008254,0.249864,0,0);-ms-transform:matrix(0.177678,-0.005869,0.008254,0.249864,0,0);-webkit-transform:matrix(0.177678,-0.005869,0.008254,0.249864,0,0);}
.m7e_c00113{transform:matrix(0.177743,-0.002488,0.003500,0.249976,0,0);-ms-transform:matrix(0.177743,-0.002488,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177743,-0.002488,0.003500,0.249976,0,0);}
.mab_c00113{transform:matrix(0.178373,-0.003389,0.004749,0.249955,0,0);-ms-transform:matrix(0.178373,-0.003389,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178373,-0.003389,0.004749,0.249955,0,0);}
.ma6_c00113{transform:matrix(0.178405,-0.004639,0.006498,0.249916,0,0);-ms-transform:matrix(0.178405,-0.004639,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178405,-0.004639,0.006498,0.249916,0,0);}
.m62_c00113{transform:matrix(0.178568,-0.002500,0.003500,0.249976,0,0);-ms-transform:matrix(0.178568,-0.002500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178568,-0.002500,0.003500,0.249976,0,0);}
.m3b_c00113{transform:matrix(0.179227,-0.002509,0.003500,0.249976,0,0);-ms-transform:matrix(0.179227,-0.002509,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179227,-0.002509,0.003500,0.249976,0,0);}
.mce_c00113{transform:matrix(0.179462,-0.005928,0.008254,0.249864,0,0);-ms-transform:matrix(0.179462,-0.005928,0.008254,0.249864,0,0);-webkit-transform:matrix(0.179462,-0.005928,0.008254,0.249864,0,0);}
.mbe_c00113{transform:matrix(0.179528,-0.003411,0.004749,0.249955,0,0);-ms-transform:matrix(0.179528,-0.003411,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179528,-0.003411,0.004749,0.249955,0,0);}
.m59_c00113{transform:matrix(0.179777,-0.002517,0.003500,0.249976,0,0);-ms-transform:matrix(0.179777,-0.002517,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179777,-0.002517,0.003500,0.249976,0,0);}
.m81_c00113{transform:matrix(0.179902,-0.002519,0.003500,0.249976,0,0);-ms-transform:matrix(0.179902,-0.002519,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179902,-0.002519,0.003500,0.249976,0,0);}
.m3a_c00113{transform:matrix(0.179927,-0.002519,0.003500,0.249976,0,0);-ms-transform:matrix(0.179927,-0.002519,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179927,-0.002519,0.003500,0.249976,0,0);}
.m9c_c00113{transform:matrix(0.180142,-0.002522,0.003500,0.249976,0,0);-ms-transform:matrix(0.180142,-0.002522,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180142,-0.002522,0.003500,0.249976,0,0);}
.m84_c00113{transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);-ms-transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);}
.m99_c00113{transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-ms-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);}
.m83_c00113{transform:matrix(0.180452,-0.002526,0.003500,0.249976,0,0);-ms-transform:matrix(0.180452,-0.002526,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180452,-0.002526,0.003500,0.249976,0,0);}
.m91_c00113{transform:matrix(0.180912,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180912,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180912,-0.002533,0.003500,0.249976,0,0);}
.me6_c00113{transform:matrix(0.181116,-0.005983,0.008254,0.249864,0,0);-ms-transform:matrix(0.181116,-0.005983,0.008254,0.249864,0,0);-webkit-transform:matrix(0.181116,-0.005983,0.008254,0.249864,0,0);}
.m60_c00113{transform:matrix(0.181222,-0.002537,0.003500,0.249976,0,0);-ms-transform:matrix(0.181222,-0.002537,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181222,-0.002537,0.003500,0.249976,0,0);}
.m63_c00113{transform:matrix(0.181537,-0.002542,0.003500,0.249976,0,0);-ms-transform:matrix(0.181537,-0.002542,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181537,-0.002542,0.003500,0.249976,0,0);}
.mc_c00113{transform:matrix(0.181868,-0.004365,0.005998,0.249928,0,0);-ms-transform:matrix(0.181868,-0.004365,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181868,-0.004365,0.005998,0.249928,0,0);}
.m44_c00113{transform:matrix(0.181972,-0.002548,0.003500,0.249976,0,0);-ms-transform:matrix(0.181972,-0.002548,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181972,-0.002548,0.003500,0.249976,0,0);}
.m7f_c00113{transform:matrix(0.182387,-0.002553,0.003500,0.249976,0,0);-ms-transform:matrix(0.182387,-0.002553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182387,-0.002553,0.003500,0.249976,0,0);}
.mb9_c00113{transform:matrix(0.182457,-0.003467,0.004749,0.249955,0,0);-ms-transform:matrix(0.182457,-0.003467,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182457,-0.003467,0.004749,0.249955,0,0);}
.m38_c00113{transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);-ms-transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);}
.m15_c00113{transform:matrix(0.183192,-0.004397,0.005998,0.249928,0,0);-ms-transform:matrix(0.183192,-0.004397,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183192,-0.004397,0.005998,0.249928,0,0);}
.mba_c00113{transform:matrix(0.183442,-0.003485,0.004749,0.249955,0,0);-ms-transform:matrix(0.183442,-0.003485,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183442,-0.003485,0.004749,0.249955,0,0);}
.mc4_c00113{transform:matrix(0.183467,-0.003486,0.004749,0.249955,0,0);-ms-transform:matrix(0.183467,-0.003486,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183467,-0.003486,0.004749,0.249955,0,0);}
.m2b_c00113{transform:matrix(0.183572,-0.004406,0.005998,0.249928,0,0);-ms-transform:matrix(0.183572,-0.004406,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183572,-0.004406,0.005998,0.249928,0,0);}
.me4_c00113{transform:matrix(0.183800,-0.006071,0.008254,0.249864,0,0);-ms-transform:matrix(0.183800,-0.006071,0.008254,0.249864,0,0);-webkit-transform:matrix(0.183800,-0.006071,0.008254,0.249864,0,0);}
.md0_c00113{transform:matrix(0.184200,-0.006085,0.008254,0.249864,0,0);-ms-transform:matrix(0.184200,-0.006085,0.008254,0.249864,0,0);-webkit-transform:matrix(0.184200,-0.006085,0.008254,0.249864,0,0);}
.ma8_c00113{transform:matrix(0.184598,-0.004800,0.006498,0.249916,0,0);-ms-transform:matrix(0.184598,-0.004800,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184598,-0.004800,0.006498,0.249916,0,0);}
.m10_c00113{transform:matrix(0.184802,-0.004435,0.005998,0.249928,0,0);-ms-transform:matrix(0.184802,-0.004435,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184802,-0.004435,0.005998,0.249928,0,0);}
.m101_c00113{transform:matrix(0.185484,-0.006127,0.008254,0.249864,0,0);-ms-transform:matrix(0.185484,-0.006127,0.008254,0.249864,0,0);-webkit-transform:matrix(0.185484,-0.006127,0.008254,0.249864,0,0);}
.ma_c00113{transform:matrix(0.186021,-0.003534,0.004749,0.249955,0,0);-ms-transform:matrix(0.186021,-0.003534,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186021,-0.003534,0.004749,0.249955,0,0);}
.me5_c00113{transform:matrix(0.186108,-0.006148,0.008254,0.249864,0,0);-ms-transform:matrix(0.186108,-0.006148,0.008254,0.249864,0,0);-webkit-transform:matrix(0.186108,-0.006148,0.008254,0.249864,0,0);}
.m82_c00113{transform:matrix(0.186117,-0.002606,0.003500,0.249976,0,0);-ms-transform:matrix(0.186117,-0.002606,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186117,-0.002606,0.003500,0.249976,0,0);}
.m85_c00113{transform:matrix(0.186427,-0.002610,0.003500,0.249976,0,0);-ms-transform:matrix(0.186427,-0.002610,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186427,-0.002610,0.003500,0.249976,0,0);}
.m25_c00113{transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);-ms-transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);}
.ma3_c00113{transform:matrix(0.187642,-0.004879,0.006498,0.249916,0,0);-ms-transform:matrix(0.187642,-0.004879,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187642,-0.004879,0.006498,0.249916,0,0);}
.m97_c00113{transform:matrix(0.187662,-0.002627,0.003500,0.249976,0,0);-ms-transform:matrix(0.187662,-0.002627,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187662,-0.002627,0.003500,0.249976,0,0);}
.meb_c00113{transform:matrix(0.187753,-0.006202,0.008254,0.249864,0,0);-ms-transform:matrix(0.187753,-0.006202,0.008254,0.249864,0,0);-webkit-transform:matrix(0.187753,-0.006202,0.008254,0.249864,0,0);}
.ma4_c00113{transform:matrix(0.188261,-0.004895,0.006498,0.249916,0,0);-ms-transform:matrix(0.188261,-0.004895,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188261,-0.004895,0.006498,0.249916,0,0);}
.ma7_c00113{transform:matrix(0.188376,-0.004898,0.006498,0.249916,0,0);-ms-transform:matrix(0.188376,-0.004898,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188376,-0.004898,0.006498,0.249916,0,0);}
.mb4_c00113{transform:matrix(0.188636,-0.003584,0.004749,0.249955,0,0);-ms-transform:matrix(0.188636,-0.003584,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188636,-0.003584,0.004749,0.249955,0,0);}
.m7d_c00113{transform:matrix(0.189026,-0.002646,0.003500,0.249976,0,0);-ms-transform:matrix(0.189026,-0.002646,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189026,-0.002646,0.003500,0.249976,0,0);}
.mac_c00113{transform:matrix(0.189496,-0.003600,0.004749,0.249955,0,0);-ms-transform:matrix(0.189496,-0.003600,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189496,-0.003600,0.004749,0.249955,0,0);}
.m5c_c00113{transform:matrix(0.189536,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189536,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189536,-0.002654,0.003500,0.249976,0,0);}
.mb3_c00113{transform:matrix(0.189716,-0.003605,0.004749,0.249955,0,0);-ms-transform:matrix(0.189716,-0.003605,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189716,-0.003605,0.004749,0.249955,0,0);}
.mcc_c00113{transform:matrix(0.190081,-0.006279,0.008254,0.249864,0,0);-ms-transform:matrix(0.190081,-0.006279,0.008254,0.249864,0,0);-webkit-transform:matrix(0.190081,-0.006279,0.008254,0.249864,0,0);}
.m47_c00113{transform:matrix(0.190786,-0.002671,0.003500,0.249976,0,0);-ms-transform:matrix(0.190786,-0.002671,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190786,-0.002671,0.003500,0.249976,0,0);}
.m33_c00113{transform:matrix(0.191370,-0.004593,0.005998,0.249928,0,0);-ms-transform:matrix(0.191370,-0.004593,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191370,-0.004593,0.005998,0.249928,0,0);}
.m3d_c00113{transform:matrix(0.191411,-0.002680,0.003500,0.249976,0,0);-ms-transform:matrix(0.191411,-0.002680,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191411,-0.002680,0.003500,0.249976,0,0);}
.m8b_c00113{transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-ms-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);}
.mcb_c00113{transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);-ms-transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);}
.mff_c00113{transform:matrix(0.192820,-0.006369,0.008254,0.249864,0,0);-ms-transform:matrix(0.192820,-0.006369,0.008254,0.249864,0,0);-webkit-transform:matrix(0.192820,-0.006369,0.008254,0.249864,0,0);}
.m89_c00113{transform:matrix(0.192986,-0.002702,0.003500,0.249976,0,0);-ms-transform:matrix(0.192986,-0.002702,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192986,-0.002702,0.003500,0.249976,0,0);}
.m4e_c00113{transform:matrix(0.193056,-0.002703,0.003500,0.249976,0,0);-ms-transform:matrix(0.193056,-0.002703,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193056,-0.002703,0.003500,0.249976,0,0);}
.m93_c00113{transform:matrix(0.193511,-0.002709,0.003500,0.249976,0,0);-ms-transform:matrix(0.193511,-0.002709,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193511,-0.002709,0.003500,0.249976,0,0);}
.m1c_c00113{transform:matrix(0.193934,-0.004654,0.005998,0.249928,0,0);-ms-transform:matrix(0.193934,-0.004654,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193934,-0.004654,0.005998,0.249928,0,0);}
.m30_c00113{transform:matrix(0.194169,-0.004660,0.005998,0.249928,0,0);-ms-transform:matrix(0.194169,-0.004660,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194169,-0.004660,0.005998,0.249928,0,0);}
.m46_c00113{transform:matrix(0.194176,-0.002718,0.003500,0.249976,0,0);-ms-transform:matrix(0.194176,-0.002718,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194176,-0.002718,0.003500,0.249976,0,0);}
.m6_c00113{transform:matrix(0.195075,-0.003706,0.004749,0.249955,0,0);-ms-transform:matrix(0.195075,-0.003706,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195075,-0.003706,0.004749,0.249955,0,0);}
.m5e_c00113{transform:matrix(0.195461,-0.002736,0.003500,0.249976,0,0);-ms-transform:matrix(0.195461,-0.002736,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195461,-0.002736,0.003500,0.249976,0,0);}
.m76_c00113{transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);-ms-transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);}
.m3e_c00113{transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);}
.m86_c00113{transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);}
.m61_c00113{transform:matrix(0.196331,-0.002749,0.003500,0.249976,0,0);-ms-transform:matrix(0.196331,-0.002749,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196331,-0.002749,0.003500,0.249976,0,0);}
.maa_c00113{transform:matrix(0.196495,-0.003733,0.004749,0.249955,0,0);-ms-transform:matrix(0.196495,-0.003733,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196495,-0.003733,0.004749,0.249955,0,0);}
.m98_c00113{transform:matrix(0.196561,-0.002752,0.003500,0.249976,0,0);-ms-transform:matrix(0.196561,-0.002752,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196561,-0.002752,0.003500,0.249976,0,0);}
.m3c_c00113{transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);-ms-transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);}
.m1a_c00113{transform:matrix(0.196628,-0.004719,0.005998,0.249928,0,0);-ms-transform:matrix(0.196628,-0.004719,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196628,-0.004719,0.005998,0.249928,0,0);}
.mf_c00113{transform:matrix(0.196723,-0.004721,0.005998,0.249928,0,0);-ms-transform:matrix(0.196723,-0.004721,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196723,-0.004721,0.005998,0.249928,0,0);}
.m21_c00113{transform:matrix(0.196883,-0.004725,0.005998,0.249928,0,0);-ms-transform:matrix(0.196883,-0.004725,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196883,-0.004725,0.005998,0.249928,0,0);}
.mf1_c00113{transform:matrix(0.196978,-0.006507,0.008254,0.249864,0,0);-ms-transform:matrix(0.196978,-0.006507,0.008254,0.249864,0,0);-webkit-transform:matrix(0.196978,-0.006507,0.008254,0.249864,0,0);}
.m57_c00113{transform:matrix(0.198391,-0.002777,0.003500,0.249976,0,0);-ms-transform:matrix(0.198391,-0.002777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198391,-0.002777,0.003500,0.249976,0,0);}
.mf0_c00113{transform:matrix(0.198532,-0.006558,0.008254,0.249864,0,0);-ms-transform:matrix(0.198532,-0.006558,0.008254,0.249864,0,0);-webkit-transform:matrix(0.198532,-0.006558,0.008254,0.249864,0,0);}
.m41_c00113{transform:matrix(0.198696,-0.002782,0.003500,0.249976,0,0);-ms-transform:matrix(0.198696,-0.002782,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198696,-0.002782,0.003500,0.249976,0,0);}
.mb_c00113{transform:matrix(0.198778,-0.004771,0.005998,0.249928,0,0);-ms-transform:matrix(0.198778,-0.004771,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198778,-0.004771,0.005998,0.249928,0,0);}
.mfd_c00113{transform:matrix(0.198976,-0.006573,0.008254,0.249864,0,0);-ms-transform:matrix(0.198976,-0.006573,0.008254,0.249864,0,0);-webkit-transform:matrix(0.198976,-0.006573,0.008254,0.249864,0,0);}
.m5f_c00113{transform:matrix(0.199920,-0.002799,0.003500,0.249976,0,0);-ms-transform:matrix(0.199920,-0.002799,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199920,-0.002799,0.003500,0.249976,0,0);}
.m51_c00113{transform:matrix(0.200000,-0.002800,0.003500,0.249976,0,0);-ms-transform:matrix(0.200000,-0.002800,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200000,-0.002800,0.003500,0.249976,0,0);}
.mad_c00113{transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);-ms-transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200019,-0.003800,0.004749,0.249955,0,0);}
.m71_c00113{transform:matrix(0.200525,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200525,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200525,-0.002807,0.003500,0.249976,0,0);}
.me2_c00113{transform:matrix(0.200860,-0.006635,0.008254,0.249864,0,0);-ms-transform:matrix(0.200860,-0.006635,0.008254,0.249864,0,0);-webkit-transform:matrix(0.200860,-0.006635,0.008254,0.249864,0,0);}
.m2e_c00113{transform:matrix(0.200877,-0.004821,0.005998,0.249928,0,0);-ms-transform:matrix(0.200877,-0.004821,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200877,-0.004821,0.005998,0.249928,0,0);}
.m16_c00113{transform:matrix(0.201287,-0.004831,0.005998,0.249928,0,0);-ms-transform:matrix(0.201287,-0.004831,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201287,-0.004831,0.005998,0.249928,0,0);}
.m4a_c00113{transform:matrix(0.201995,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.201995,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201995,-0.002828,0.003500,0.249976,0,0);}
.me0_c00113{transform:matrix(0.202205,-0.006679,0.008254,0.249864,0,0);-ms-transform:matrix(0.202205,-0.006679,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202205,-0.006679,0.008254,0.249864,0,0);}
.mfe_c00113{transform:matrix(0.202375,-0.006685,0.008254,0.249864,0,0);-ms-transform:matrix(0.202375,-0.006685,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202375,-0.006685,0.008254,0.249864,0,0);}
.m90_c00113{transform:matrix(0.202600,-0.002836,0.003500,0.249976,0,0);-ms-transform:matrix(0.202600,-0.002836,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202600,-0.002836,0.003500,0.249976,0,0);}
.m7b_c00113{transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);-ms-transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);}
.m53_c00113{transform:matrix(0.203420,-0.002848,0.003500,0.249976,0,0);-ms-transform:matrix(0.203420,-0.002848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203420,-0.002848,0.003500,0.249976,0,0);}
.m22_c00113{transform:matrix(0.203771,-0.004891,0.005998,0.249928,0,0);-ms-transform:matrix(0.203771,-0.004891,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203771,-0.004891,0.005998,0.249928,0,0);}
.m48_c00113{transform:matrix(0.203855,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203855,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203855,-0.002854,0.003500,0.249976,0,0);}
.m100_c00113{transform:matrix(0.204049,-0.006740,0.008254,0.249864,0,0);-ms-transform:matrix(0.204049,-0.006740,0.008254,0.249864,0,0);-webkit-transform:matrix(0.204049,-0.006740,0.008254,0.249864,0,0);}
.m39_c00113{transform:matrix(0.204471,-0.004907,0.005998,0.249928,0,0);-ms-transform:matrix(0.204471,-0.004907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204471,-0.004907,0.005998,0.249928,0,0);}
.mc8_c00113{transform:matrix(0.205068,-0.003896,0.004749,0.249955,0,0);-ms-transform:matrix(0.205068,-0.003896,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205068,-0.003896,0.004749,0.249955,0,0);}
.m0_c00113{transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);-ms-transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);}
.m4b_c00113{transform:matrix(0.205635,-0.002879,0.003500,0.249976,0,0);-ms-transform:matrix(0.205635,-0.002879,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205635,-0.002879,0.003500,0.249976,0,0);}
.m17_c00113{transform:matrix(0.206665,-0.004960,0.005998,0.249928,0,0);-ms-transform:matrix(0.206665,-0.004960,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206665,-0.004960,0.005998,0.249928,0,0);}
.m23_c00113{transform:matrix(0.206940,-0.004967,0.005998,0.249928,0,0);-ms-transform:matrix(0.206940,-0.004967,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206940,-0.004967,0.005998,0.249928,0,0);}
.mdf_c00113{transform:matrix(0.207592,-0.006857,0.008254,0.249864,0,0);-ms-transform:matrix(0.207592,-0.006857,0.008254,0.249864,0,0);-webkit-transform:matrix(0.207592,-0.006857,0.008254,0.249864,0,0);}
.m4d_c00113{transform:matrix(0.207745,-0.002908,0.003500,0.249976,0,0);-ms-transform:matrix(0.207745,-0.002908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207745,-0.002908,0.003500,0.249976,0,0);}
.mb8_c00113{transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);-ms-transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);}
.m8_c00113{transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);-ms-transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);}
.mf4_c00113{transform:matrix(0.210595,-0.006957,0.008254,0.249864,0,0);-ms-transform:matrix(0.210595,-0.006957,0.008254,0.249864,0,0);-webkit-transform:matrix(0.210595,-0.006957,0.008254,0.249864,0,0);}
.mea_c00113{transform:matrix(0.211345,-0.006981,0.008254,0.249864,0,0);-ms-transform:matrix(0.211345,-0.006981,0.008254,0.249864,0,0);-webkit-transform:matrix(0.211345,-0.006981,0.008254,0.249864,0,0);}
.m4_c00113{transform:matrix(0.212127,-0.004030,0.004749,0.249955,0,0);-ms-transform:matrix(0.212127,-0.004030,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212127,-0.004030,0.004749,0.249955,0,0);}
.md2_c00113{transform:matrix(0.212429,-0.007017,0.008254,0.249864,0,0);-ms-transform:matrix(0.212429,-0.007017,0.008254,0.249864,0,0);-webkit-transform:matrix(0.212429,-0.007017,0.008254,0.249864,0,0);}
.me1_c00113{transform:matrix(0.212464,-0.007018,0.008254,0.249864,0,0);-ms-transform:matrix(0.212464,-0.007018,0.008254,0.249864,0,0);-webkit-transform:matrix(0.212464,-0.007018,0.008254,0.249864,0,0);}
.m8a_c00113{transform:matrix(0.212724,-0.002978,0.003500,0.249976,0,0);-ms-transform:matrix(0.212724,-0.002978,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212724,-0.002978,0.003500,0.249976,0,0);}
.m66_c00113{transform:matrix(0.212759,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212759,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212759,-0.002979,0.003500,0.249976,0,0);}
.mb6_c00113{transform:matrix(0.212907,-0.004045,0.004749,0.249955,0,0);-ms-transform:matrix(0.212907,-0.004045,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212907,-0.004045,0.004749,0.249955,0,0);}
.m67_c00113{transform:matrix(0.213739,-0.002992,0.003500,0.249976,0,0);-ms-transform:matrix(0.213739,-0.002992,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213739,-0.002992,0.003500,0.249976,0,0);}
.m65_c00113{transform:matrix(0.213879,-0.002994,0.003500,0.249976,0,0);-ms-transform:matrix(0.213879,-0.002994,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213879,-0.002994,0.003500,0.249976,0,0);}
.m4f_c00113{transform:matrix(0.214614,-0.003005,0.003500,0.249976,0,0);-ms-transform:matrix(0.214614,-0.003005,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214614,-0.003005,0.003500,0.249976,0,0);}
.m88_c00113{transform:matrix(0.215139,-0.003012,0.003500,0.249976,0,0);-ms-transform:matrix(0.215139,-0.003012,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215139,-0.003012,0.003500,0.249976,0,0);}
.m74_c00113{transform:matrix(0.216364,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216364,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216364,-0.003029,0.003500,0.249976,0,0);}
.m42_c00113{transform:matrix(0.216389,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216389,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216389,-0.003029,0.003500,0.249976,0,0);}
.m68_c00113{transform:matrix(0.216569,-0.003032,0.003500,0.249976,0,0);-ms-transform:matrix(0.216569,-0.003032,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216569,-0.003032,0.003500,0.249976,0,0);}
.me3_c00113{transform:matrix(0.216997,-0.007168,0.008254,0.249864,0,0);-ms-transform:matrix(0.216997,-0.007168,0.008254,0.249864,0,0);-webkit-transform:matrix(0.216997,-0.007168,0.008254,0.249864,0,0);}
.mb5_c00113{transform:matrix(0.217611,-0.004135,0.004749,0.249955,0,0);-ms-transform:matrix(0.217611,-0.004135,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217611,-0.004135,0.004749,0.249955,0,0);}
.m5d_c00113{transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);-ms-transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);}
.mf3_c00113{transform:matrix(0.218261,-0.007210,0.008254,0.249864,0,0);-ms-transform:matrix(0.218261,-0.007210,0.008254,0.249864,0,0);-webkit-transform:matrix(0.218261,-0.007210,0.008254,0.249864,0,0);}
.m24_c00113{transform:matrix(0.218272,-0.005239,0.005998,0.249928,0,0);-ms-transform:matrix(0.218272,-0.005239,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218272,-0.005239,0.005998,0.249928,0,0);}
.m32_c00113{transform:matrix(0.218482,-0.005244,0.005998,0.249928,0,0);-ms-transform:matrix(0.218482,-0.005244,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218482,-0.005244,0.005998,0.249928,0,0);}
.m49_c00113{transform:matrix(0.218544,-0.003060,0.003500,0.249976,0,0);-ms-transform:matrix(0.218544,-0.003060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218544,-0.003060,0.003500,0.249976,0,0);}
.m4c_c00113{transform:matrix(0.218984,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.218984,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218984,-0.003066,0.003500,0.249976,0,0);}
.m26_c00113{transform:matrix(0.218987,-0.005256,0.005998,0.249928,0,0);-ms-transform:matrix(0.218987,-0.005256,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218987,-0.005256,0.005998,0.249928,0,0);}
.mee_c00113{transform:matrix(0.220415,-0.007281,0.008254,0.249864,0,0);-ms-transform:matrix(0.220415,-0.007281,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220415,-0.007281,0.008254,0.249864,0,0);}
.m80_c00113{transform:matrix(0.220493,-0.003087,0.003500,0.249976,0,0);-ms-transform:matrix(0.220493,-0.003087,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220493,-0.003087,0.003500,0.249976,0,0);}
.m9b_c00113{transform:matrix(0.220978,-0.003094,0.003500,0.249976,0,0);-ms-transform:matrix(0.220978,-0.003094,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220978,-0.003094,0.003500,0.249976,0,0);}
.mdd_c00113{transform:matrix(0.221509,-0.007317,0.008254,0.249864,0,0);-ms-transform:matrix(0.221509,-0.007317,0.008254,0.249864,0,0);-webkit-transform:matrix(0.221509,-0.007317,0.008254,0.249864,0,0);}
.m52_c00113{transform:matrix(0.222463,-0.003114,0.003500,0.249976,0,0);-ms-transform:matrix(0.222463,-0.003114,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222463,-0.003114,0.003500,0.249976,0,0);}
.mde_c00113{transform:matrix(0.222719,-0.007357,0.008254,0.249864,0,0);-ms-transform:matrix(0.222719,-0.007357,0.008254,0.249864,0,0);-webkit-transform:matrix(0.222719,-0.007357,0.008254,0.249864,0,0);}
.m70_c00113{transform:matrix(0.223373,-0.003127,0.003500,0.249976,0,0);-ms-transform:matrix(0.223373,-0.003127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223373,-0.003127,0.003500,0.249976,0,0);}
.m77_c00113{transform:matrix(0.223933,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223933,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223933,-0.003135,0.003500,0.249976,0,0);}
.m58_c00113{transform:matrix(0.226138,-0.003166,0.003500,0.249976,0,0);-ms-transform:matrix(0.226138,-0.003166,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226138,-0.003166,0.003500,0.249976,0,0);}
.m6a_c00113{transform:matrix(0.228343,-0.003197,0.003500,0.249976,0,0);-ms-transform:matrix(0.228343,-0.003197,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228343,-0.003197,0.003500,0.249976,0,0);}
.m56_c00113{transform:matrix(0.232277,-0.003252,0.003500,0.249976,0,0);-ms-transform:matrix(0.232277,-0.003252,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232277,-0.003252,0.003500,0.249976,0,0);}
.m27_c00113{transform:matrix(0.232848,-0.005588,0.005998,0.249928,0,0);-ms-transform:matrix(0.232848,-0.005588,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232848,-0.005588,0.005998,0.249928,0,0);}
.m50_c00113{transform:matrix(0.233302,-0.003266,0.003500,0.249976,0,0);-ms-transform:matrix(0.233302,-0.003266,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233302,-0.003266,0.003500,0.249976,0,0);}
.mdc_c00113{transform:matrix(0.234812,-0.007757,0.008254,0.249864,0,0);-ms-transform:matrix(0.234812,-0.007757,0.008254,0.249864,0,0);-webkit-transform:matrix(0.234812,-0.007757,0.008254,0.249864,0,0);}
.m8e_c00113{transform:matrix(0.234972,-0.003290,0.003500,0.249976,0,0);-ms-transform:matrix(0.234972,-0.003290,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234972,-0.003290,0.003500,0.249976,0,0);}
.m11_c00113{transform:matrix(0.235652,-0.005656,0.005998,0.249928,0,0);-ms-transform:matrix(0.235652,-0.005656,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235652,-0.005656,0.005998,0.249928,0,0);}
.m8f_c00113{transform:matrix(0.238822,-0.003344,0.003500,0.249976,0,0);-ms-transform:matrix(0.238822,-0.003344,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238822,-0.003344,0.003500,0.249976,0,0);}
.m8d_c00113{transform:matrix(0.239457,-0.003352,0.003500,0.249976,0,0);-ms-transform:matrix(0.239457,-0.003352,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239457,-0.003352,0.003500,0.249976,0,0);}
.m6f_c00113{transform:matrix(0.239747,-0.003356,0.003500,0.249976,0,0);-ms-transform:matrix(0.239747,-0.003356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239747,-0.003356,0.003500,0.249976,0,0);}
.mf7_c00113{transform:matrix(0.239959,-0.007927,0.008254,0.249864,0,0);-ms-transform:matrix(0.239959,-0.007927,0.008254,0.249864,0,0);-webkit-transform:matrix(0.239959,-0.007927,0.008254,0.249864,0,0);}
.m54_c00113{transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);-ms-transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);}
.m3_c00113{transform:matrix(0.257309,-0.004889,0.004749,0.249955,0,0);-ms-transform:matrix(0.257309,-0.004889,0.004749,0.249955,0,0);-webkit-transform:matrix(0.257309,-0.004889,0.004749,0.249955,0,0);}
.m78_c00113{transform:matrix(0.264279,-0.003700,0.003500,0.249976,0,0);-ms-transform:matrix(0.264279,-0.003700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264279,-0.003700,0.003500,0.249976,0,0);}
.m6d_c00113{transform:matrix(0.266284,-0.003728,0.003500,0.249976,0,0);-ms-transform:matrix(0.266284,-0.003728,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266284,-0.003728,0.003500,0.249976,0,0);}
.md4_c00113{transform:matrix(0.267904,-0.008850,0.008254,0.249864,0,0);-ms-transform:matrix(0.267904,-0.008850,0.008254,0.249864,0,0);-webkit-transform:matrix(0.267904,-0.008850,0.008254,0.249864,0,0);}
.m12_c00113{transform:matrix(0.274801,-0.006595,0.005998,0.249928,0,0);-ms-transform:matrix(0.274801,-0.006595,0.005998,0.249928,0,0);-webkit-transform:matrix(0.274801,-0.006595,0.005998,0.249928,0,0);}
.m28_c00113{transform:matrix(0.286438,-0.006875,0.005998,0.249928,0,0);-ms-transform:matrix(0.286438,-0.006875,0.005998,0.249928,0,0);-webkit-transform:matrix(0.286438,-0.006875,0.005998,0.249928,0,0);}
.m79_c00113{transform:matrix(0.291381,-0.004079,0.003500,0.249976,0,0);-ms-transform:matrix(0.291381,-0.004079,0.003500,0.249976,0,0);-webkit-transform:matrix(0.291381,-0.004079,0.003500,0.249976,0,0);}
.m2_c00113{transform:matrix(0.292362,-0.005555,0.004749,0.249955,0,0);-ms-transform:matrix(0.292362,-0.005555,0.004749,0.249955,0,0);-webkit-transform:matrix(0.292362,-0.005555,0.004749,0.249955,0,0);}
.m43_c00113{transform:matrix(0.302730,-0.004238,0.003500,0.249976,0,0);-ms-transform:matrix(0.302730,-0.004238,0.003500,0.249976,0,0);-webkit-transform:matrix(0.302730,-0.004238,0.003500,0.249976,0,0);}
.mf8_c00113{transform:matrix(0.309606,-0.010227,0.008254,0.249864,0,0);-ms-transform:matrix(0.309606,-0.010227,0.008254,0.249864,0,0);-webkit-transform:matrix(0.309606,-0.010227,0.008254,0.249864,0,0);}
.me9_c00113{transform:matrix(0.325233,-0.010743,0.008254,0.249864,0,0);-ms-transform:matrix(0.325233,-0.010743,0.008254,0.249864,0,0);-webkit-transform:matrix(0.325233,-0.010743,0.008254,0.249864,0,0);}
.m29_c00113{transform:matrix(0.341567,-0.008198,0.005998,0.249928,0,0);-ms-transform:matrix(0.341567,-0.008198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.341567,-0.008198,0.005998,0.249928,0,0);}
.m7a_c00113{transform:matrix(0.343931,-0.004815,0.003500,0.249976,0,0);-ms-transform:matrix(0.343931,-0.004815,0.003500,0.249976,0,0);-webkit-transform:matrix(0.343931,-0.004815,0.003500,0.249976,0,0);}
.m6e_c00113{transform:matrix(0.353710,-0.004952,0.003500,0.249976,0,0);-ms-transform:matrix(0.353710,-0.004952,0.003500,0.249976,0,0);-webkit-transform:matrix(0.353710,-0.004952,0.003500,0.249976,0,0);}
.m55_c00113{transform:matrix(0.355590,-0.004978,0.003500,0.249976,0,0);-ms-transform:matrix(0.355590,-0.004978,0.003500,0.249976,0,0);-webkit-transform:matrix(0.355590,-0.004978,0.003500,0.249976,0,0);}
.ma2_c00113{transform:matrix(0.991045,-0.025767,0.006498,0.249916,0,0);-ms-transform:matrix(0.991045,-0.025767,0.006498,0.249916,0,0);-webkit-transform:matrix(0.991045,-0.025767,0.006498,0.249916,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls0_c00113{letter-spacing:0.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:0.000000px;}
.fc0_c00113{color:transparent;}
.fs15_c00113{font-size:59.822762px;}
.fse_c00113{font-size:60.905968px;}
.fs5_c00113{font-size:60.917537px;}
.fs0_c00113{font-size:61.950000px;}
.fsa_c00113{font-size:61.956071px;}
.fsd_c00113{font-size:63.006174px;}
.fs8_c00113{font-size:64.056277px;}
.fs11_c00113{font-size:64.061560px;}
.fs2_c00113{font-size:65.118746px;}
.fs17_c00113{font-size:66.119895px;}
.fsb_c00113{font-size:67.206585px;}
.fsf_c00113{font-size:68.273065px;}
.fs16_c00113{font-size:69.268461px;}
.fs9_c00113{font-size:69.306791px;}
.fs13_c00113{font-size:70.317983px;}
.fs12_c00113{font-size:70.362697px;}
.fs6_c00113{font-size:70.370258px;}
.fs14_c00113{font-size:71.367506px;}
.fsc_c00113{font-size:71.406997px;}
.fs10_c00113{font-size:71.412887px;}
.fs7_c00113{font-size:71.420560px;}
.fs1_c00113{font-size:72.463076px;}
.fs3_c00113{font-size:72.470863px;}
.fs4_c00113{font-size:73.521165px;}
.y0_c00113{bottom:0.000000px;}
.yfa_c00113{bottom:25.978317px;}
.yfb_c00113{bottom:26.706444px;}
.yfc_c00113{bottom:28.268893px;}
.yfd_c00113{bottom:28.886447px;}
.yfe_c00113{bottom:29.406912px;}
.yff_c00113{bottom:31.823457px;}
.y100_c00113{bottom:32.281062px;}
.y101_c00113{bottom:32.945154px;}
.y102_c00113{bottom:34.411605px;}
.yf0_c00113{bottom:43.520721px;}
.yf1_c00113{bottom:44.842502px;}
.yf2_c00113{bottom:45.612555px;}
.yf3_c00113{bottom:47.299241px;}
.yf4_c00113{bottom:47.947961px;}
.yf5_c00113{bottom:49.799081px;}
.yf6_c00113{bottom:50.295134px;}
.yf7_c00113{bottom:51.117941px;}
.yf8_c00113{bottom:51.698909px;}
.yf9_c00113{bottom:52.954670px;}
.yea_c00113{bottom:60.250484px;}
.yeb_c00113{bottom:61.673159px;}
.yec_c00113{bottom:63.633282px;}
.yed_c00113{bottom:64.631081px;}
.yee_c00113{bottom:66.317010px;}
.yef_c00113{bottom:67.874010px;}
.ye6_c00113{bottom:76.997085px;}
.ye7_c00113{bottom:79.038483px;}
.ye8_c00113{bottom:85.034589px;}
.ye9_c00113{bottom:89.512125px;}
.yde_c00113{bottom:92.107910px;}
.ydf_c00113{bottom:93.758591px;}
.ye0_c00113{bottom:94.904115px;}
.ye1_c00113{bottom:97.168605px;}
.ye2_c00113{bottom:98.231852px;}
.ye3_c00113{bottom:99.379469px;}
.ye4_c00113{bottom:100.924616px;}
.ye5_c00113{bottom:102.019533px;}
.yd5_c00113{bottom:111.806979px;}
.yd6_c00113{bottom:112.768184px;}
.yd7_c00113{bottom:114.035716px;}
.yd8_c00113{bottom:114.586895px;}
.yd9_c00113{bottom:115.640277px;}
.yda_c00113{bottom:116.321568px;}
.ydb_c00113{bottom:118.236318px;}
.ydc_c00113{bottom:118.863911px;}
.ydd_c00113{bottom:119.554049px;}
.ycd_c00113{bottom:129.885000px;}
.yce_c00113{bottom:130.573347px;}
.ycf_c00113{bottom:132.506668px;}
.yd0_c00113{bottom:133.255604px;}
.yd1_c00113{bottom:134.025378px;}
.yd2_c00113{bottom:135.019140px;}
.yd3_c00113{bottom:136.961074px;}
.yd4_c00113{bottom:138.805346px;}
.yc4_c00113{bottom:147.153607px;}
.yc5_c00113{bottom:147.773155px;}
.yc6_c00113{bottom:148.478683px;}
.yc7_c00113{bottom:148.914711px;}
.yc8_c00113{bottom:149.539464px;}
.yc9_c00113{bottom:150.906960px;}
.yca_c00113{bottom:151.767693px;}
.ycb_c00113{bottom:152.549959px;}
.ycc_c00113{bottom:153.011082px;}
.ybc_c00113{bottom:166.324500px;}
.ybd_c00113{bottom:167.027566px;}
.ybe_c00113{bottom:167.576875px;}
.ybf_c00113{bottom:168.530970px;}
.yc0_c00113{bottom:168.883401px;}
.yc1_c00113{bottom:169.428948px;}
.yc2_c00113{bottom:170.408493px;}
.yc3_c00113{bottom:171.315277px;}
.yb4_c00113{bottom:183.072099px;}
.yb5_c00113{bottom:184.607653px;}
.yb6_c00113{bottom:185.700006px;}
.yb7_c00113{bottom:187.578565px;}
.yb8_c00113{bottom:188.791486px;}
.yb9_c00113{bottom:189.526797px;}
.yba_c00113{bottom:190.994180px;}
.ybb_c00113{bottom:192.090455px;}
.yaa_c00113{bottom:201.963000px;}
.yab_c00113{bottom:202.486175px;}
.yac_c00113{bottom:202.734524px;}
.yad_c00113{bottom:203.088437px;}
.yae_c00113{bottom:203.652936px;}
.yaf_c00113{bottom:204.687743px;}
.yb0_c00113{bottom:205.002667px;}
.yb1_c00113{bottom:206.100088px;}
.yb2_c00113{bottom:206.441889px;}
.yb3_c00113{bottom:206.802870px;}
.ya3_c00113{bottom:219.249000px;}
.ya4_c00113{bottom:221.000841px;}
.ya5_c00113{bottom:221.811534px;}
.ya6_c00113{bottom:223.490016px;}
.ya7_c00113{bottom:224.143032px;}
.ya8_c00113{bottom:225.728850px;}
.ya9_c00113{bottom:226.247784px;}
.y9a_c00113{bottom:237.043182px;}
.y9b_c00113{bottom:237.460872px;}
.y9c_c00113{bottom:238.402293px;}
.y9d_c00113{bottom:238.824171px;}
.y9e_c00113{bottom:239.430786px;}
.y9f_c00113{bottom:240.234954px;}
.ya0_c00113{bottom:240.532860px;}
.ya1_c00113{bottom:241.570203px;}
.ya2_c00113{bottom:241.883100px;}
.y91_c00113{bottom:254.324154px;}
.y92_c00113{bottom:255.264273px;}
.y93_c00113{bottom:256.217082px;}
.y94_c00113{bottom:256.649958px;}
.y95_c00113{bottom:257.680053px;}
.y96_c00113{bottom:258.056982px;}
.y97_c00113{bottom:258.681261px;}
.y98_c00113{bottom:259.094025px;}
.y99_c00113{bottom:259.881903px;}
.y89_c00113{bottom:271.604994px;}
.y8a_c00113{bottom:273.144126px;}
.y8b_c00113{bottom:273.495141px;}
.y8c_c00113{bottom:274.931121px;}
.y8d_c00113{bottom:275.432136px;}
.y8e_c00113{bottom:276.011184px;}
.y8f_c00113{bottom:276.491541px;}
.y90_c00113{bottom:277.361373px;}
.y82_c00113{bottom:288.615492px;}
.y83_c00113{bottom:289.635828px;}
.y84_c00113{bottom:290.305758px;}
.y85_c00113{bottom:291.590772px;}
.y86_c00113{bottom:292.525758px;}
.y87_c00113{bottom:294.110982px;}
.y88_c00113{bottom:294.339456px;}
.y79_c00113{bottom:304.820181px;}
.y7a_c00113{bottom:305.204310px;}
.y7b_c00113{bottom:306.850584px;}
.y7c_c00113{bottom:307.144047px;}
.y7d_c00113{bottom:307.787841px;}
.y7e_c00113{bottom:308.137710px;}
.y7f_c00113{bottom:309.463158px;}
.y80_c00113{bottom:309.837819px;}
.y81_c00113{bottom:310.967145px;}
.y71_c00113{bottom:322.639443px;}
.y72_c00113{bottom:324.054015px;}
.y73_c00113{bottom:324.674442px;}
.y74_c00113{bottom:325.151277px;}
.y75_c00113{bottom:325.642608px;}
.y76_c00113{bottom:326.393622px;}
.y77_c00113{bottom:327.171087px;}
.y78_c00113{bottom:328.678815px;}
.y66_c00113{bottom:339.923517px;}
.y67_c00113{bottom:340.863432px;}
.y68_c00113{bottom:341.201397px;}
.y69_c00113{bottom:342.878838px;}
.y6a_c00113{bottom:343.206738px;}
.y6b_c00113{bottom:343.828188px;}
.y6c_c00113{bottom:345.389007px;}
.y6d_c00113{bottom:345.912075px;}
.y6e_c00113{bottom:346.409640px;}
.y6f_c00113{bottom:347.218260px;}
.y70_c00113{bottom:347.575368px;}
.y5f_c00113{bottom:357.476754px;}
.y60_c00113{bottom:358.877517px;}
.y61_c00113{bottom:360.455523px;}
.y62_c00113{bottom:362.193183px;}
.y63_c00113{bottom:363.272550px;}
.y64_c00113{bottom:363.835563px;}
.y65_c00113{bottom:365.382012px;}
.y58_c00113{bottom:375.836571px;}
.y59_c00113{bottom:377.262453px;}
.y5a_c00113{bottom:378.243573px;}
.y5b_c00113{bottom:379.275456px;}
.y5c_c00113{bottom:379.610106px;}
.y5d_c00113{bottom:380.646366px;}
.y5e_c00113{bottom:381.046170px;}
.y51_c00113{bottom:393.387846px;}
.y52_c00113{bottom:393.577419px;}
.y53_c00113{bottom:394.201341px;}
.y54_c00113{bottom:395.792370px;}
.y55_c00113{bottom:396.974169px;}
.y56_c00113{bottom:398.249232px;}
.y57_c00113{bottom:398.459316px;}
.y4a_c00113{bottom:410.399982px;}
.y4b_c00113{bottom:411.870360px;}
.y4c_c00113{bottom:412.280871px;}
.y4d_c00113{bottom:413.666193px;}
.y4e_c00113{bottom:413.932467px;}
.y4f_c00113{bottom:414.347880px;}
.y50_c00113{bottom:415.433685px;}
.y44_c00113{bottom:428.227713px;}
.y45_c00113{bottom:429.022503px;}
.y46_c00113{bottom:429.718749px;}
.y47_c00113{bottom:430.993203px;}
.y48_c00113{bottom:432.013854px;}
.y49_c00113{bottom:433.963518px;}
.y3b_c00113{bottom:446.851500px;}
.y3c_c00113{bottom:447.147306px;}
.y3d_c00113{bottom:447.446115px;}
.y3e_c00113{bottom:448.443825px;}
.y3f_c00113{bottom:448.765356px;}
.y40_c00113{bottom:449.448570px;}
.y41_c00113{bottom:449.702859px;}
.y42_c00113{bottom:449.960025px;}
.y43_c00113{bottom:450.742506px;}
.y34_c00113{bottom:463.291968px;}
.y35_c00113{bottom:463.685328px;}
.y36_c00113{bottom:464.221524px;}
.y37_c00113{bottom:464.634024px;}
.y38_c00113{bottom:465.547992px;}
.y39_c00113{bottom:465.805968px;}
.y3a_c00113{bottom:466.536468px;}
.y29_c00113{bottom:479.502228px;}
.y2a_c00113{bottom:480.098124px;}
.y2b_c00113{bottom:480.372480px;}
.y2c_c00113{bottom:480.728448px;}
.y2d_c00113{bottom:481.843428px;}
.y2e_c00113{bottom:482.239992px;}
.y2f_c00113{bottom:483.168192px;}
.y30_c00113{bottom:483.465312px;}
.y31_c00113{bottom:484.253316px;}
.y32_c00113{bottom:484.549344px;}
.y33_c00113{bottom:484.976952px;}
.y23_c00113{bottom:497.328012px;}
.y24_c00113{bottom:499.250676px;}
.y25_c00113{bottom:499.644648px;}
.y26_c00113{bottom:500.800332px;}
.y27_c00113{bottom:501.151320px;}
.y28_c00113{bottom:502.420692px;}
.y1b_c00113{bottom:514.613604px;}
.y1c_c00113{bottom:515.533392px;}
.y1d_c00113{bottom:515.965080px;}
.y1e_c00113{bottom:517.758012px;}
.y1f_c00113{bottom:518.085132px;}
.y20_c00113{bottom:518.621244px;}
.y21_c00113{bottom:519.010092px;}
.y22_c00113{bottom:519.673596px;}
.y13_c00113{bottom:531.634812px;}
.y14_c00113{bottom:532.692492px;}
.y15_c00113{bottom:533.276568px;}
.y16_c00113{bottom:533.579316px;}
.y17_c00113{bottom:533.934084px;}
.y18_c00113{bottom:535.815192px;}
.y19_c00113{bottom:536.079084px;}
.y1a_c00113{bottom:537.109812px;}
.yc_c00113{bottom:548.647500px;}
.yd_c00113{bottom:549.465456px;}
.ye_c00113{bottom:550.260084px;}
.yf_c00113{bottom:550.914204px;}
.y10_c00113{bottom:551.326044px;}
.y11_c00113{bottom:553.056492px;}
.y12_c00113{bottom:554.449296px;}
.y2_c00113{bottom:567.274500px;}
.y3_c00113{bottom:568.086152px;}
.y4_c00113{bottom:568.773828px;}
.y5_c00113{bottom:569.117481px;}
.y6_c00113{bottom:570.097510px;}
.y7_c00113{bottom:570.825743px;}
.y8_c00113{bottom:571.103104px;}
.y9_c00113{bottom:571.845159px;}
.ya_c00113{bottom:572.134149px;}
.yb_c00113{bottom:572.404728px;}
.y1_c00113{bottom:588.069000px;}
.h17_c00113{height:59.822762px;}
.h10_c00113{height:60.905968px;}
.h7_c00113{height:60.917537px;}
.h2_c00113{height:61.950000px;}
.hc_c00113{height:61.956071px;}
.hf_c00113{height:63.006174px;}
.ha_c00113{height:64.056277px;}
.h13_c00113{height:64.061560px;}
.h4_c00113{height:65.118746px;}
.h19_c00113{height:66.119895px;}
.hd_c00113{height:67.206585px;}
.h11_c00113{height:68.273065px;}
.h18_c00113{height:69.268461px;}
.hb_c00113{height:69.306791px;}
.h15_c00113{height:70.317983px;}
.h14_c00113{height:70.362697px;}
.h8_c00113{height:70.370258px;}
.h16_c00113{height:71.367506px;}
.he_c00113{height:71.406997px;}
.h12_c00113{height:71.412887px;}
.h9_c00113{height:71.420560px;}
.h3_c00113{height:72.463076px;}
.h5_c00113{height:72.470863px;}
.h6_c00113{height:73.521165px;}
.h1_c00113{height:632.250000px;}
.h0_c00113{height:632.550000px;}
.w0_c00113{width:371.790000px;}
.w1_c00113{width:372.000000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:40.176000px;}
.x3c_c00113{left:41.315460px;}
.x42_c00113{left:42.457368px;}
.x5d_c00113{left:43.695153px;}
.x68_c00113{left:44.760294px;}
.x7b_c00113{left:47.145483px;}
.xc_c00113{left:49.168500px;}
.x39_c00113{left:50.200878px;}
.x65_c00113{left:53.083500px;}
.x6d_c00113{left:54.184500px;}
.x4d_c00113{left:58.896063px;}
.x28_c00113{left:68.502048px;}
.x21_c00113{left:70.038252px;}
.x7f_c00113{left:71.373042px;}
.x6e_c00113{left:75.022641px;}
.x43_c00113{left:78.623799px;}
.x32_c00113{left:80.466675px;}
.x3_c00113{left:82.894500px;}
.x18_c00113{left:85.604256px;}
.x58_c00113{left:87.955281px;}
.x40_c00113{left:90.201420px;}
.x2c_c00113{left:91.719000px;}
.x52_c00113{left:93.407742px;}
.x12_c00113{left:96.411396px;}
.x22_c00113{left:101.554776px;}
.x19_c00113{left:107.218344px;}
.x48_c00113{left:109.799694px;}
.x62_c00113{left:111.213000px;}
.x3d_c00113{left:112.622475px;}
.x33_c00113{left:115.302756px;}
.xd_c00113{left:116.359500px;}
.x55_c00113{left:117.700341px;}
.x4_c00113{left:119.088000px;}
.x5e_c00113{left:123.628293px;}
.x13_c00113{left:127.189104px;}
.x4e_c00113{left:133.728684px;}
.x36_c00113{left:135.023703px;}
.x5_c00113{left:137.175000px;}
.x49_c00113{left:139.327296px;}
.x63_c00113{left:142.393500px;}
.xe_c00113{left:143.614500px;}
.x41_c00113{left:144.618996px;}
.x4f_c00113{left:147.081693px;}
.x5f_c00113{left:148.404243px;}
.x59_c00113{left:153.926313px;}
.x1f_c00113{left:156.370104px;}
.xf_c00113{left:160.774500px;}
.x14_c00113{left:161.777244px;}
.x2d_c00113{left:162.984000px;}
.x7c_c00113{left:165.073802px;}
.x44_c00113{left:168.737658px;}
.x6a_c00113{left:169.851000px;}
.x1_c00113{left:172.530000px;}
.x75_c00113{left:175.303035px;}
.x23_c00113{left:177.168048px;}
.x34_c00113{left:179.008401px;}
.x69_c00113{left:181.327485px;}
.x60_c00113{left:184.125252px;}
.x2e_c00113{left:185.950500px;}
.x72_c00113{left:187.307496px;}
.x6_c00113{left:188.755500px;}
.x53_c00113{left:191.145531px;}
.x45_c00113{left:192.658647px;}
.x6b_c00113{left:194.404596px;}
.x1a_c00113{left:196.869948px;}
.x29_c00113{left:201.582480px;}
.x5a_c00113{left:202.964004px;}
.x37_c00113{left:204.290886px;}
.x56_c00113{left:207.085344px;}
.x6f_c00113{left:209.608920px;}
.x1b_c00113{left:213.251532px;}
.x38_c00113{left:217.630773px;}
.x2a_c00113{left:220.023408px;}
.x4a_c00113{left:221.189274px;}
.x24_c00113{left:223.597512px;}
.x7_c00113{left:227.083500px;}
.x6c_c00113{left:228.807663px;}
.x35_c00113{left:230.050617px;}
.x20_c00113{left:231.717840px;}
.x10_c00113{left:232.876500px;}
.x2f_c00113{left:234.751500px;}
.x77_c00113{left:236.355822px;}
.x25_c00113{left:238.478952px;}
.x1c_c00113{left:240.092124px;}
.x8_c00113{left:241.681500px;}
.x7d_c00113{left:243.112261px;}
.x61_c00113{left:248.913522px;}
.x5b_c00113{left:250.581321px;}
.x30_c00113{left:252.915000px;}
.x80_c00113{left:257.025636px;}
.x4b_c00113{left:258.183141px;}
.x1d_c00113{left:259.545996px;}
.x15_c00113{left:260.793624px;}
.x79_c00113{left:266.498280px;}
.x70_c00113{left:268.396573px;}
.x50_c00113{left:269.515980px;}
.x66_c00113{left:270.825000px;}
.x2b_c00113{left:272.160900px;}
.x16_c00113{left:274.665780px;}
.x26_c00113{left:277.878732px;}
.x81_c00113{left:279.127692px;}
.x9_c00113{left:280.737000px;}
.x3e_c00113{left:281.887779px;}
.x3a_c00113{left:283.810764px;}
.x57_c00113{left:285.108792px;}
.x67_c00113{left:288.814500px;}
.x11_c00113{left:290.910000px;}
.x1e_c00113{left:292.757700px;}
.x3b_c00113{left:294.315882px;}
.xa_c00113{left:295.947000px;}
.x76_c00113{left:299.583504px;}
.x3f_c00113{left:301.872099px;}
.x73_c00113{left:306.557762px;}
.x5c_c00113{left:307.728714px;}
.xb_c00113{left:310.188000px;}
.x64_c00113{left:313.018500px;}
.x27_c00113{left:314.033688px;}
.x54_c00113{left:317.149947px;}
.x51_c00113{left:320.819226px;}
.x7a_c00113{left:322.034355px;}
.x46_c00113{left:323.034744px;}
.x71_c00113{left:324.227687px;}
.x31_c00113{left:327.175500px;}
.x17_c00113{left:328.931796px;}
.x4c_c00113{left:329.978106px;}
.x74_c00113{left:332.082265px;}
.x47_c00113{left:336.754434px;}
.x7e_c00113{left:341.592404px;}
.x78_c00113{left:342.884025px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
.fs15_c00113{font-size:53.175788pt;}
.fse_c00113{font-size:54.138638pt;}
.fs5_c00113{font-size:54.148921pt;}
.fs0_c00113{font-size:55.066667pt;}
.fsa_c00113{font-size:55.072063pt;}
.fsd_c00113{font-size:56.005488pt;}
.fs8_c00113{font-size:56.938913pt;}
.fs11_c00113{font-size:56.943609pt;}
.fs2_c00113{font-size:57.883330pt;}
.fs17_c00113{font-size:58.773240pt;}
.fsb_c00113{font-size:59.739187pt;}
.fsf_c00113{font-size:60.687169pt;}
.fs16_c00113{font-size:61.571966pt;}
.fs9_c00113{font-size:61.606037pt;}
.fs13_c00113{font-size:62.504874pt;}
.fs12_c00113{font-size:62.544620pt;}
.fs6_c00113{font-size:62.551340pt;}
.fs14_c00113{font-size:63.437783pt;}
.fsc_c00113{font-size:63.472886pt;}
.fs10_c00113{font-size:63.478121pt;}
.fs7_c00113{font-size:63.484942pt;}
.fs1_c00113{font-size:64.411623pt;}
.fs3_c00113{font-size:64.418545pt;}
.fs4_c00113{font-size:65.352147pt;}
.y0_c00113{bottom:0.000000pt;}
.yfa_c00113{bottom:23.091837pt;}
.yfb_c00113{bottom:23.739061pt;}
.yfc_c00113{bottom:25.127905pt;}
.yfd_c00113{bottom:25.676841pt;}
.yfe_c00113{bottom:26.139477pt;}
.yff_c00113{bottom:28.287517pt;}
.y100_c00113{bottom:28.694277pt;}
.y101_c00113{bottom:29.284581pt;}
.y102_c00113{bottom:30.588093pt;}
.yf0_c00113{bottom:38.685085pt;}
.yf1_c00113{bottom:39.860001pt;}
.yf2_c00113{bottom:40.544493pt;}
.yf3_c00113{bottom:42.043769pt;}
.yf4_c00113{bottom:42.620409pt;}
.yf5_c00113{bottom:44.265849pt;}
.yf6_c00113{bottom:44.706785pt;}
.yf7_c00113{bottom:45.438169pt;}
.yf8_c00113{bottom:45.954585pt;}
.yf9_c00113{bottom:47.070817pt;}
.yea_c00113{bottom:53.555985pt;}
.yeb_c00113{bottom:54.820585pt;}
.yec_c00113{bottom:56.562917pt;}
.yed_c00113{bottom:57.449849pt;}
.yee_c00113{bottom:58.948453pt;}
.yef_c00113{bottom:60.332453pt;}
.ye6_c00113{bottom:68.441853pt;}
.ye7_c00113{bottom:70.256429pt;}
.ye8_c00113{bottom:75.586301pt;}
.ye9_c00113{bottom:79.566333pt;}
.yde_c00113{bottom:81.873697pt;}
.ydf_c00113{bottom:83.340969pt;}
.ye0_c00113{bottom:84.359213pt;}
.ye1_c00113{bottom:86.372093pt;}
.ye2_c00113{bottom:87.317201pt;}
.ye3_c00113{bottom:88.337305pt;}
.ye4_c00113{bottom:89.710769pt;}
.ye5_c00113{bottom:90.684029pt;}
.yd5_c00113{bottom:99.383981pt;}
.yd6_c00113{bottom:100.238385pt;}
.yd7_c00113{bottom:101.365081pt;}
.yd8_c00113{bottom:101.855017pt;}
.yd9_c00113{bottom:102.791357pt;}
.yda_c00113{bottom:103.396949pt;}
.ydb_c00113{bottom:105.098949pt;}
.ydc_c00113{bottom:105.656809pt;}
.ydd_c00113{bottom:106.270265pt;}
.ycd_c00113{bottom:115.453333pt;}
.yce_c00113{bottom:116.065197pt;}
.ycf_c00113{bottom:117.783705pt;}
.yd0_c00113{bottom:118.449425pt;}
.yd1_c00113{bottom:119.133669pt;}
.yd2_c00113{bottom:120.017013pt;}
.yd3_c00113{bottom:121.743177pt;}
.yd4_c00113{bottom:123.382529pt;}
.yc4_c00113{bottom:130.803207pt;}
.yc5_c00113{bottom:131.353916pt;}
.yc6_c00113{bottom:131.981052pt;}
.yc7_c00113{bottom:132.368632pt;}
.yc8_c00113{bottom:132.923968pt;}
.yc9_c00113{bottom:134.139520pt;}
.yca_c00113{bottom:134.904616pt;}
.ycb_c00113{bottom:135.599964pt;}
.ycc_c00113{bottom:136.009851pt;}
.ybc_c00113{bottom:147.844000pt;}
.ybd_c00113{bottom:148.468948pt;}
.ybe_c00113{bottom:148.957223pt;}
.ybf_c00113{bottom:149.805307pt;}
.yc0_c00113{bottom:150.118579pt;}
.yc1_c00113{bottom:150.603509pt;}
.yc2_c00113{bottom:151.474216pt;}
.yc3_c00113{bottom:152.280247pt;}
.yb4_c00113{bottom:162.730755pt;}
.yb5_c00113{bottom:164.095692pt;}
.yb6_c00113{bottom:165.066672pt;}
.yb7_c00113{bottom:166.736503pt;}
.yb8_c00113{bottom:167.814655pt;}
.yb9_c00113{bottom:168.468264pt;}
.yba_c00113{bottom:169.772604pt;}
.ybb_c00113{bottom:170.747071pt;}
.yaa_c00113{bottom:179.522667pt;}
.yab_c00113{bottom:179.987711pt;}
.yac_c00113{bottom:180.208465pt;}
.yad_c00113{bottom:180.523055pt;}
.yae_c00113{bottom:181.024832pt;}
.yaf_c00113{bottom:181.944660pt;}
.yb0_c00113{bottom:182.224593pt;}
.yb1_c00113{bottom:183.200079pt;}
.yb2_c00113{bottom:183.503901pt;}
.yb3_c00113{bottom:183.824773pt;}
.ya3_c00113{bottom:194.888000pt;}
.ya4_c00113{bottom:196.445192pt;}
.ya5_c00113{bottom:197.165808pt;}
.ya6_c00113{bottom:198.657792pt;}
.ya7_c00113{bottom:199.238251pt;}
.ya8_c00113{bottom:200.647867pt;}
.ya9_c00113{bottom:201.109141pt;}
.y9a_c00113{bottom:210.705051pt;}
.y9b_c00113{bottom:211.076331pt;}
.y9c_c00113{bottom:211.913149pt;}
.y9d_c00113{bottom:212.288152pt;}
.y9e_c00113{bottom:212.827365pt;}
.y9f_c00113{bottom:213.542181pt;}
.ya0_c00113{bottom:213.806987pt;}
.ya1_c00113{bottom:214.729069pt;}
.ya2_c00113{bottom:215.007200pt;}
.y91_c00113{bottom:226.065915pt;}
.y92_c00113{bottom:226.901576pt;}
.y93_c00113{bottom:227.748517pt;}
.y94_c00113{bottom:228.133296pt;}
.y95_c00113{bottom:229.048936pt;}
.y96_c00113{bottom:229.383984pt;}
.y97_c00113{bottom:229.938899pt;}
.y98_c00113{bottom:230.305800pt;}
.y99_c00113{bottom:231.006136pt;}
.y89_c00113{bottom:241.426661pt;}
.y8a_c00113{bottom:242.794779pt;}
.y8b_c00113{bottom:243.106792pt;}
.y8c_c00113{bottom:244.383219pt;}
.y8d_c00113{bottom:244.828565pt;}
.y8e_c00113{bottom:245.343275pt;}
.y8f_c00113{bottom:245.770259pt;}
.y90_c00113{bottom:246.543443pt;}
.y82_c00113{bottom:256.547104pt;}
.y83_c00113{bottom:257.454069pt;}
.y84_c00113{bottom:258.049563pt;}
.y85_c00113{bottom:259.191797pt;}
.y86_c00113{bottom:260.022896pt;}
.y87_c00113{bottom:261.431984pt;}
.y88_c00113{bottom:261.635072pt;}
.y79_c00113{bottom:270.951272pt;}
.y7a_c00113{bottom:271.292720pt;}
.y7b_c00113{bottom:272.756075pt;}
.y7c_c00113{bottom:273.016931pt;}
.y7d_c00113{bottom:273.589192pt;}
.y7e_c00113{bottom:273.900187pt;}
.y7f_c00113{bottom:275.078363pt;}
.y80_c00113{bottom:275.411395pt;}
.y81_c00113{bottom:276.415240pt;}
.y71_c00113{bottom:286.790616pt;}
.y72_c00113{bottom:288.048013pt;}
.y73_c00113{bottom:288.599504pt;}
.y74_c00113{bottom:289.023357pt;}
.y75_c00113{bottom:289.460096pt;}
.y76_c00113{bottom:290.127664pt;}
.y77_c00113{bottom:290.818744pt;}
.y78_c00113{bottom:292.158947pt;}
.y66_c00113{bottom:302.154237pt;}
.y67_c00113{bottom:302.989717pt;}
.y68_c00113{bottom:303.290131pt;}
.y69_c00113{bottom:304.781189pt;}
.y6a_c00113{bottom:305.072656pt;}
.y6b_c00113{bottom:305.625056pt;}
.y6c_c00113{bottom:307.012451pt;}
.y6d_c00113{bottom:307.477400pt;}
.y6e_c00113{bottom:307.919680pt;}
.y6f_c00113{bottom:308.638453pt;}
.y70_c00113{bottom:308.955883pt;}
.y5f_c00113{bottom:317.757115pt;}
.y60_c00113{bottom:319.002237pt;}
.y61_c00113{bottom:320.404909pt;}
.y62_c00113{bottom:321.949496pt;}
.y63_c00113{bottom:322.908933pt;}
.y64_c00113{bottom:323.409389pt;}
.y65_c00113{bottom:324.784011pt;}
.y58_c00113{bottom:334.076952pt;}
.y59_c00113{bottom:335.344403pt;}
.y5a_c00113{bottom:336.216509pt;}
.y5b_c00113{bottom:337.133739pt;}
.y5c_c00113{bottom:337.431205pt;}
.y5d_c00113{bottom:338.352325pt;}
.y5e_c00113{bottom:338.707707pt;}
.y51_c00113{bottom:349.678085pt;}
.y52_c00113{bottom:349.846595pt;}
.y53_c00113{bottom:350.401192pt;}
.y54_c00113{bottom:351.815440pt;}
.y55_c00113{bottom:352.865928pt;}
.y56_c00113{bottom:353.999317pt;}
.y57_c00113{bottom:354.186059pt;}
.y4a_c00113{bottom:364.799984pt;}
.y4b_c00113{bottom:366.106987pt;}
.y4c_c00113{bottom:366.471885pt;}
.y4d_c00113{bottom:367.703283pt;}
.y4e_c00113{bottom:367.939971pt;}
.y4f_c00113{bottom:368.309227pt;}
.y50_c00113{bottom:369.274387pt;}
.y44_c00113{bottom:380.646856pt;}
.y45_c00113{bottom:381.353336pt;}
.y46_c00113{bottom:381.972221pt;}
.y47_c00113{bottom:383.105069pt;}
.y48_c00113{bottom:384.012315pt;}
.y49_c00113{bottom:385.745349pt;}
.y3b_c00113{bottom:397.201333pt;}
.y3c_c00113{bottom:397.464272pt;}
.y3d_c00113{bottom:397.729880pt;}
.y3e_c00113{bottom:398.616733pt;}
.y3f_c00113{bottom:398.902539pt;}
.y40_c00113{bottom:399.509840pt;}
.y41_c00113{bottom:399.735875pt;}
.y42_c00113{bottom:399.964467pt;}
.y43_c00113{bottom:400.660005pt;}
.y34_c00113{bottom:411.815083pt;}
.y35_c00113{bottom:412.164736pt;}
.y36_c00113{bottom:412.641355pt;}
.y37_c00113{bottom:413.008021pt;}
.y38_c00113{bottom:413.820437pt;}
.y39_c00113{bottom:414.049749pt;}
.y3a_c00113{bottom:414.699083pt;}
.y29_c00113{bottom:426.224203pt;}
.y2a_c00113{bottom:426.753888pt;}
.y2b_c00113{bottom:426.997760pt;}
.y2c_c00113{bottom:427.314176pt;}
.y2d_c00113{bottom:428.305269pt;}
.y2e_c00113{bottom:428.657771pt;}
.y2f_c00113{bottom:429.482837pt;}
.y30_c00113{bottom:429.746944pt;}
.y31_c00113{bottom:430.447392pt;}
.y32_c00113{bottom:430.710528pt;}
.y33_c00113{bottom:431.090624pt;}
.y23_c00113{bottom:442.069344pt;}
.y24_c00113{bottom:443.778379pt;}
.y25_c00113{bottom:444.128576pt;}
.y26_c00113{bottom:445.155851pt;}
.y27_c00113{bottom:445.467840pt;}
.y28_c00113{bottom:446.596171pt;}
.y1b_c00113{bottom:457.434315pt;}
.y1c_c00113{bottom:458.251904pt;}
.y1d_c00113{bottom:458.635627pt;}
.y1e_c00113{bottom:460.229344pt;}
.y1f_c00113{bottom:460.520117pt;}
.y20_c00113{bottom:460.996661pt;}
.y21_c00113{bottom:461.342304pt;}
.y22_c00113{bottom:461.932085pt;}
.y13_c00113{bottom:472.564277pt;}
.y14_c00113{bottom:473.504437pt;}
.y15_c00113{bottom:474.023616pt;}
.y16_c00113{bottom:474.292725pt;}
.y17_c00113{bottom:474.608075pt;}
.y18_c00113{bottom:476.280171pt;}
.y19_c00113{bottom:476.514741pt;}
.y1a_c00113{bottom:477.430944pt;}
.yc_c00113{bottom:487.686667pt;}
.yd_c00113{bottom:488.413739pt;}
.ye_c00113{bottom:489.120075pt;}
.yf_c00113{bottom:489.701515pt;}
.y10_c00113{bottom:490.067595pt;}
.y11_c00113{bottom:491.605771pt;}
.y12_c00113{bottom:492.843819pt;}
.y2_c00113{bottom:504.244000pt;}
.y3_c00113{bottom:504.965468pt;}
.y4_c00113{bottom:505.576736pt;}
.y5_c00113{bottom:505.882205pt;}
.y6_c00113{bottom:506.753343pt;}
.y7_c00113{bottom:507.400660pt;}
.y8_c00113{bottom:507.647204pt;}
.y9_c00113{bottom:508.306808pt;}
.ya_c00113{bottom:508.563688pt;}
.yb_c00113{bottom:508.804203pt;}
.y1_c00113{bottom:522.728000pt;}
.h17_c00113{height:53.175788pt;}
.h10_c00113{height:54.138638pt;}
.h7_c00113{height:54.148921pt;}
.h2_c00113{height:55.066667pt;}
.hc_c00113{height:55.072063pt;}
.hf_c00113{height:56.005488pt;}
.ha_c00113{height:56.938913pt;}
.h13_c00113{height:56.943609pt;}
.h4_c00113{height:57.883330pt;}
.h19_c00113{height:58.773240pt;}
.hd_c00113{height:59.739187pt;}
.h11_c00113{height:60.687169pt;}
.h18_c00113{height:61.571966pt;}
.hb_c00113{height:61.606037pt;}
.h15_c00113{height:62.504874pt;}
.h14_c00113{height:62.544620pt;}
.h8_c00113{height:62.551340pt;}
.h16_c00113{height:63.437783pt;}
.he_c00113{height:63.472886pt;}
.h12_c00113{height:63.478121pt;}
.h9_c00113{height:63.484942pt;}
.h3_c00113{height:64.411623pt;}
.h5_c00113{height:64.418545pt;}
.h6_c00113{height:65.352147pt;}
.h1_c00113{height:562.000000pt;}
.h0_c00113{height:562.266667pt;}
.w0_c00113{width:330.480000pt;}
.w1_c00113{width:330.666667pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:35.712000pt;}
.x3c_c00113{left:36.724853pt;}
.x42_c00113{left:37.739883pt;}
.x5d_c00113{left:38.840136pt;}
.x68_c00113{left:39.786928pt;}
.x7b_c00113{left:41.907096pt;}
.xc_c00113{left:43.705333pt;}
.x39_c00113{left:44.623003pt;}
.x65_c00113{left:47.185333pt;}
.x6d_c00113{left:48.164000pt;}
.x4d_c00113{left:52.352056pt;}
.x28_c00113{left:60.890709pt;}
.x21_c00113{left:62.256224pt;}
.x7f_c00113{left:63.442704pt;}
.x6e_c00113{left:66.686792pt;}
.x43_c00113{left:69.887821pt;}
.x32_c00113{left:71.525933pt;}
.x3_c00113{left:73.684000pt;}
.x18_c00113{left:76.092672pt;}
.x58_c00113{left:78.182472pt;}
.x40_c00113{left:80.179040pt;}
.x2c_c00113{left:81.528000pt;}
.x52_c00113{left:83.029104pt;}
.x12_c00113{left:85.699019pt;}
.x22_c00113{left:90.270912pt;}
.x19_c00113{left:95.305195pt;}
.x48_c00113{left:97.599728pt;}
.x62_c00113{left:98.856000pt;}
.x3d_c00113{left:100.108867pt;}
.x33_c00113{left:102.491339pt;}
.xd_c00113{left:103.430667pt;}
.x55_c00113{left:104.622525pt;}
.x4_c00113{left:105.856000pt;}
.x5e_c00113{left:109.891816pt;}
.x13_c00113{left:113.056981pt;}
.x4e_c00113{left:118.869941pt;}
.x36_c00113{left:120.021069pt;}
.x5_c00113{left:121.933333pt;}
.x49_c00113{left:123.846485pt;}
.x63_c00113{left:126.572000pt;}
.xe_c00113{left:127.657333pt;}
.x41_c00113{left:128.550219pt;}
.x4f_c00113{left:130.739283pt;}
.x5f_c00113{left:131.914883pt;}
.x59_c00113{left:136.823389pt;}
.x1f_c00113{left:138.995648pt;}
.xf_c00113{left:142.910667pt;}
.x14_c00113{left:143.801995pt;}
.x2d_c00113{left:144.874667pt;}
.x7c_c00113{left:146.732268pt;}
.x44_c00113{left:149.989029pt;}
.x6a_c00113{left:150.978667pt;}
.x1_c00113{left:153.360000pt;}
.x75_c00113{left:155.824920pt;}
.x23_c00113{left:157.482709pt;}
.x34_c00113{left:159.118579pt;}
.x69_c00113{left:161.179987pt;}
.x60_c00113{left:163.666891pt;}
.x2e_c00113{left:165.289333pt;}
.x72_c00113{left:166.495552pt;}
.x6_c00113{left:167.782667pt;}
.x53_c00113{left:169.907139pt;}
.x45_c00113{left:171.252131pt;}
.x6b_c00113{left:172.804085pt;}
.x1a_c00113{left:174.995509pt;}
.x29_c00113{left:179.184427pt;}
.x5a_c00113{left:180.412448pt;}
.x37_c00113{left:181.591899pt;}
.x56_c00113{left:184.075861pt;}
.x6f_c00113{left:186.319040pt;}
.x1b_c00113{left:189.556917pt;}
.x38_c00113{left:193.449576pt;}
.x2a_c00113{left:195.576363pt;}
.x4a_c00113{left:196.612688pt;}
.x24_c00113{left:198.753344pt;}
.x7_c00113{left:201.852000pt;}
.x6c_c00113{left:203.384589pt;}
.x35_c00113{left:204.489437pt;}
.x20_c00113{left:205.971413pt;}
.x10_c00113{left:207.001333pt;}
.x2f_c00113{left:208.668000pt;}
.x77_c00113{left:210.094064pt;}
.x25_c00113{left:211.981291pt;}
.x1c_c00113{left:213.415221pt;}
.x8_c00113{left:214.828000pt;}
.x7d_c00113{left:216.099788pt;}
.x61_c00113{left:221.256464pt;}
.x5b_c00113{left:222.738952pt;}
.x30_c00113{left:224.813333pt;}
.x80_c00113{left:228.467232pt;}
.x4b_c00113{left:229.496125pt;}
.x1d_c00113{left:230.707552pt;}
.x15_c00113{left:231.816555pt;}
.x79_c00113{left:236.887360pt;}
.x70_c00113{left:238.574732pt;}
.x50_c00113{left:239.569760pt;}
.x66_c00113{left:240.733333pt;}
.x2b_c00113{left:241.920800pt;}
.x16_c00113{left:244.147360pt;}
.x26_c00113{left:247.003317pt;}
.x81_c00113{left:248.113504pt;}
.x9_c00113{left:249.544000pt;}
.x3e_c00113{left:250.566915pt;}
.x3a_c00113{left:252.276235pt;}
.x57_c00113{left:253.430037pt;}
.x67_c00113{left:256.724000pt;}
.x11_c00113{left:258.586667pt;}
.x1e_c00113{left:260.229067pt;}
.x3b_c00113{left:261.614117pt;}
.xa_c00113{left:263.064000pt;}
.x76_c00113{left:266.296448pt;}
.x3f_c00113{left:268.330755pt;}
.x73_c00113{left:272.495788pt;}
.x5c_c00113{left:273.536635pt;}
.xb_c00113{left:275.722667pt;}
.x64_c00113{left:278.238667pt;}
.x27_c00113{left:279.141056pt;}
.x54_c00113{left:281.911064pt;}
.x51_c00113{left:285.172645pt;}
.x7a_c00113{left:286.252760pt;}
.x46_c00113{left:287.141995pt;}
.x71_c00113{left:288.202388pt;}
.x31_c00113{left:290.822667pt;}
.x17_c00113{left:292.383819pt;}
.x4c_c00113{left:293.313872pt;}
.x74_c00113{left:295.184236pt;}
.x47_c00113{left:299.337275pt;}
.x7e_c00113{left:303.637692pt;}
.x78_c00113{left:304.785800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00114 {
    display:none;
  }
  .loading-indicator_c00114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00114 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00114 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00114" -> "#page-container .classname_c00114")
 */
.pf_c00114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00114 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00114 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00114 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00114 {overflow:visible;}
  }
}
.c_c00114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00114 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00114:after { /* webkit #35443 */
  content: '';
}
.t_c00114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00114 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00114 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00114 { /* info for Javascript */
  display:none;
}
.l_c00114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00114:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00114 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00114.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00114{transform:matrix(0.041775,0.000668,-0.003999,0.249968,0,0);-ms-transform:matrix(0.041775,0.000668,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.041775,0.000668,-0.003999,0.249968,0,0);}
.m64_c00114{transform:matrix(0.044870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044870,0.000000,0.000000,0.250000,0,0);}
.me0_c00114{transform:matrix(0.092120,0.003043,-0.008254,0.249864,0,0);-ms-transform:matrix(0.092120,0.003043,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.092120,0.003043,-0.008254,0.249864,0,0);}
.m5_c00114{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);}
.med_c00114{transform:matrix(0.149149,0.004927,-0.008254,0.249864,0,0);-ms-transform:matrix(0.149149,0.004927,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.149149,0.004927,-0.008254,0.249864,0,0);}
.m55_c00114{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);}
.m2c_c00114{transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);}
.mf0_c00114{transform:matrix(0.156934,0.005184,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156934,0.005184,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156934,0.005184,-0.008254,0.249864,0,0);}
.m9e_c00114{transform:matrix(0.157900,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157900,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157900,0.001737,-0.002750,0.249985,0,0);}
.m13_c00114{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.me8_c00114{transform:matrix(0.158938,0.005250,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158938,0.005250,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158938,0.005250,-0.008254,0.249864,0,0);}
.m40_c00114{transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);}
.ma0_c00114{transform:matrix(0.161510,0.001777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161510,0.001777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161510,0.001777,-0.002750,0.249985,0,0);}
.m89_c00114{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.mea_c00114{transform:matrix(0.162202,0.005358,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162202,0.005358,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162202,0.005358,-0.008254,0.249864,0,0);}
.mcc_c00114{transform:matrix(0.162267,0.005030,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162267,0.005030,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162267,0.005030,-0.007746,0.249880,0,0);}
.m8a_c00114{transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);}
.m59_c00114{transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.me2_c00114{transform:matrix(0.165969,0.005482,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165969,0.005482,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165969,0.005482,-0.008254,0.249864,0,0);}
.m80_c00114{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m41_c00114{transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00114{transform:matrix(0.170930,0.001880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170930,0.001880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170930,0.001880,-0.002750,0.249985,0,0);}
.m46_c00114{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.m84_c00114{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00114{transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);}
.m85_c00114{transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);}
.mf1_c00114{transform:matrix(0.172506,0.005698,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172506,0.005698,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172506,0.005698,-0.008254,0.249864,0,0);}
.me1_c00114{transform:matrix(0.173500,0.005731,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173500,0.005731,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173500,0.005731,-0.008254,0.249864,0,0);}
.m31_c00114{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174115,0.000000,0.000000,0.250000,0,0);}
.m98_c00114{transform:matrix(0.174484,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174484,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174484,0.001919,-0.002750,0.249985,0,0);}
.mc4_c00114{transform:matrix(0.175584,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175584,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175584,0.001931,-0.002750,0.249985,0,0);}
.m7b_c00114{transform:matrix(0.175630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175630,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.m43_c00114{transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);}
.ma6_c00114{transform:matrix(0.177124,0.001948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177124,0.001948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177124,0.001948,-0.002750,0.249985,0,0);}
.m91_c00114{transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);}
.md5_c00114{transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177527,0.002840,-0.003999,0.249968,0,0);}
.m3b_c00114{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.meb_c00114{transform:matrix(0.178902,0.005910,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178902,0.005910,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178902,0.005910,-0.008254,0.249864,0,0);}
.m42_c00114{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.m86_c00114{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.m9f_c00114{transform:matrix(0.180844,0.001989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180844,0.001989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180844,0.001989,-0.002750,0.249985,0,0);}
.mdf_c00114{transform:matrix(0.181062,0.006525,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181062,0.006525,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181062,0.006525,-0.009003,0.249838,0,0);}
.md8_c00114{transform:matrix(0.181677,0.002907,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181677,0.002907,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181677,0.002907,-0.003999,0.249968,0,0);}
.m19_c00114{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.maa_c00114{transform:matrix(0.182014,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182014,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182014,0.002002,-0.002750,0.249985,0,0);}
.m1c_c00114{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00114{transform:matrix(0.182249,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182249,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182249,0.002005,-0.002750,0.249985,0,0);}
.ma2_c00114{transform:matrix(0.182944,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182944,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182944,0.002012,-0.002750,0.249985,0,0);}
.m51_c00114{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);}
.m9d_c00114{transform:matrix(0.184289,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184289,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184289,0.002027,-0.002750,0.249985,0,0);}
.m21_c00114{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m99_c00114{transform:matrix(0.184884,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184884,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184884,0.002034,-0.002750,0.249985,0,0);}
.m33_c00114{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m2b_c00114{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.me7_c00114{transform:matrix(0.185189,0.006117,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185189,0.006117,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185189,0.006117,-0.008254,0.249864,0,0);}
.m7d_c00114{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.mec_c00114{transform:matrix(0.185484,0.006127,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185484,0.006127,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185484,0.006127,-0.008254,0.249864,0,0);}
.m8b_c00114{transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);}
.m94_c00114{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.m8f_c00114{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.mef_c00114{transform:matrix(0.185774,0.006137,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185774,0.006137,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185774,0.006137,-0.008254,0.249864,0,0);}
.m66_c00114{transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);}
.m37_c00114{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m74_c00114{transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.me9_c00114{transform:matrix(0.187273,0.006186,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187273,0.006186,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187273,0.006186,-0.008254,0.249864,0,0);}
.m7a_c00114{transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);}
.m83_c00114{transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.mcf_c00114{transform:matrix(0.187486,0.003000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187486,0.003000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187486,0.003000,-0.003999,0.249968,0,0);}
.m92_c00114{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m7f_c00114{transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);}
.mf2_c00114{transform:matrix(0.188307,0.006220,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188307,0.006220,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188307,0.006220,-0.008254,0.249864,0,0);}
.m97_c00114{transform:matrix(0.188414,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188414,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188414,0.002073,-0.002750,0.249985,0,0);}
.m4c_c00114{transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00114{transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);}
.m4f_c00114{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.mf5_c00114{transform:matrix(0.189362,0.006255,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189362,0.006255,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189362,0.006255,-0.008254,0.249864,0,0);}
.mdc_c00114{transform:matrix(0.189807,0.006840,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189807,0.006840,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189807,0.006840,-0.009003,0.249838,0,0);}
.m5c_c00114{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.mc0_c00114{transform:matrix(0.189844,0.002088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189844,0.002088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189844,0.002088,-0.002750,0.249985,0,0);}
.m30_c00114{transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190055,0.000000,0.000000,0.250000,0,0);}
.m8c_c00114{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.m95_c00114{transform:matrix(0.190888,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190888,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190888,0.002100,-0.002750,0.249985,0,0);}
.md_c00114{transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00114{transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);}
.m76_c00114{transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);}
.m88_c00114{transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);}
.md9_c00114{transform:matrix(0.191910,0.006916,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191910,0.006916,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191910,0.006916,-0.009003,0.249838,0,0);}
.mf4_c00114{transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);}
.m61_c00114{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00114{transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);}
.mb7_c00114{transform:matrix(0.192773,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192773,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192773,0.002121,-0.002750,0.249985,0,0);}
.ma1_c00114{transform:matrix(0.193268,0.002126,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193268,0.002126,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193268,0.002126,-0.002750,0.249985,0,0);}
.mbb_c00114{transform:matrix(0.193303,0.002126,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193303,0.002126,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193303,0.002126,-0.002750,0.249985,0,0);}
.m7e_c00114{transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m79_c00114{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);}
.mac_c00114{transform:matrix(0.194948,0.002144,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194948,0.002144,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194948,0.002144,-0.002750,0.249985,0,0);}
.me4_c00114{transform:matrix(0.195209,0.006448,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195209,0.006448,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195209,0.006448,-0.008254,0.249864,0,0);}
.mda_c00114{transform:matrix(0.195593,0.007048,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195593,0.007048,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195593,0.007048,-0.009003,0.249838,0,0);}
.mf9_c00114{transform:matrix(0.195958,0.006473,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195958,0.006473,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195958,0.006473,-0.008254,0.249864,0,0);}
.mba_c00114{transform:matrix(0.196308,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196308,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196308,0.002159,-0.002750,0.249985,0,0);}
.m4b_c00114{transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.md1_c00114{transform:matrix(0.197270,0.003156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197270,0.003156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197270,0.003156,-0.003999,0.249968,0,0);}
.m75_c00114{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m2f_c00114{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);}
.m78_c00114{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.me5_c00114{transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199291,0.006583,-0.008254,0.249864,0,0);}
.mc7_c00114{transform:matrix(0.199294,0.006178,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199294,0.006178,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199294,0.006178,-0.007746,0.249880,0,0);}
.m2e_c00114{transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);}
.mbc_c00114{transform:matrix(0.199408,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199408,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199408,0.002193,-0.002750,0.249985,0,0);}
.mb8_c00114{transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);}
.mc2_c00114{transform:matrix(0.200118,0.002201,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200118,0.002201,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200118,0.002201,-0.002750,0.249985,0,0);}
.m44_c00114{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m93_c00114{transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m69_c00114{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.mc1_c00114{transform:matrix(0.201898,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201898,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201898,0.002221,-0.002750,0.249985,0,0);}
.mae_c00114{transform:matrix(0.201903,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201903,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201903,0.002221,-0.002750,0.249985,0,0);}
.m36_c00114{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m57_c00114{transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);}
.m52_c00114{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.m50_c00114{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00114{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m5d_c00114{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m9a_c00114{transform:matrix(0.204263,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204263,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204263,0.002247,-0.002750,0.249985,0,0);}
.m28_c00114{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m6d_c00114{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m4e_c00114{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.mdd_c00114{transform:matrix(0.206611,0.007445,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206611,0.007445,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206611,0.007445,-0.009003,0.249838,0,0);}
.m65_c00114{transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.ma9_c00114{transform:matrix(0.208122,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208122,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208122,0.002289,-0.002750,0.249985,0,0);}
.m56_c00114{transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);}
.mfb_c00114{transform:matrix(0.208396,0.006884,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208396,0.006884,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208396,0.006884,-0.008254,0.249864,0,0);}
.mf3_c00114{transform:matrix(0.208471,0.006886,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208471,0.006886,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208471,0.006886,-0.008254,0.249864,0,0);}
.m1f_c00114{transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);}
.m8d_c00114{transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);}
.m5a_c00114{transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);}
.m77_c00114{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);}
.m53_c00114{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m6b_c00114{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.md0_c00114{transform:matrix(0.210763,0.003372,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210763,0.003372,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210763,0.003372,-0.003999,0.249968,0,0);}
.m54_c00114{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m62_c00114{transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);}
.m70_c00114{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m71_c00114{transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);}
.md2_c00114{transform:matrix(0.211268,0.003380,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211268,0.003380,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211268,0.003380,-0.003999,0.249968,0,0);}
.mb5_c00114{transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);}
.m3_c00114{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.mee_c00114{transform:matrix(0.212769,0.007028,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212769,0.007028,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212769,0.007028,-0.008254,0.249864,0,0);}
.m49_c00114{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);}
.m82_c00114{transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);}
.mdb_c00114{transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);}
.mad_c00114{transform:matrix(0.214127,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214127,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214127,0.002355,-0.002750,0.249985,0,0);}
.mc5_c00114{transform:matrix(0.214327,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214327,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214327,0.002358,-0.002750,0.249985,0,0);}
.mbd_c00114{transform:matrix(0.214487,0.002359,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214487,0.002359,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214487,0.002359,-0.002750,0.249985,0,0);}
.mf6_c00114{transform:matrix(0.214768,0.007094,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214768,0.007094,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214768,0.007094,-0.008254,0.249864,0,0);}
.m67_c00114{transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);}
.mfa_c00114{transform:matrix(0.215163,0.007107,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215163,0.007107,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215163,0.007107,-0.008254,0.249864,0,0);}
.m87_c00114{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00114{transform:matrix(0.215627,0.002372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215627,0.002372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215627,0.002372,-0.002750,0.249985,0,0);}
.m5e_c00114{transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);}
.me3_c00114{transform:matrix(0.216157,0.007140,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216157,0.007140,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216157,0.007140,-0.008254,0.249864,0,0);}
.mb2_c00114{transform:matrix(0.216302,0.002379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216302,0.002379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216302,0.002379,-0.002750,0.249985,0,0);}
.mde_c00114{transform:matrix(0.216380,0.007797,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216380,0.007797,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216380,0.007797,-0.009003,0.249838,0,0);}
.m96_c00114{transform:matrix(0.216672,0.002383,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216672,0.002383,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216672,0.002383,-0.002750,0.249985,0,0);}
.m4d_c00114{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00114{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.maf_c00114{transform:matrix(0.218507,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218507,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218507,0.002404,-0.002750,0.249985,0,0);}
.md4_c00114{transform:matrix(0.219057,0.003505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219057,0.003505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219057,0.003505,-0.003999,0.249968,0,0);}
.m90_c00114{transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);}
.mab_c00114{transform:matrix(0.219292,0.002412,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219292,0.002412,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219292,0.002412,-0.002750,0.249985,0,0);}
.m58_c00114{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.ma3_c00114{transform:matrix(0.219342,0.002413,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219342,0.002413,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219342,0.002413,-0.002750,0.249985,0,0);}
.ma4_c00114{transform:matrix(0.219692,0.002417,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219692,0.002417,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219692,0.002417,-0.002750,0.249985,0,0);}
.m68_c00114{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m9b_c00114{transform:matrix(0.220607,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220607,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220607,0.002427,-0.002750,0.249985,0,0);}
.m12_c00114{transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.md3_c00114{transform:matrix(0.222771,0.003564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222771,0.003564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222771,0.003564,-0.003999,0.249968,0,0);}
.m1_c00114{transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);}
.m72_c00114{transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);}
.mb0_c00114{transform:matrix(0.224486,0.002469,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224486,0.002469,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224486,0.002469,-0.002750,0.249985,0,0);}
.ma8_c00114{transform:matrix(0.224896,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224896,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224896,0.002474,-0.002750,0.249985,0,0);}
.mf_c00114{transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.226785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226785,0.000000,0.000000,0.250000,0,0);}
.me6_c00114{transform:matrix(0.227701,0.007522,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227701,0.007522,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227701,0.007522,-0.008254,0.249864,0,0);}
.m34_c00114{transform:matrix(0.228505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228505,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);}
.ma5_c00114{transform:matrix(0.229776,0.002528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229776,0.002528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229776,0.002528,-0.002750,0.249985,0,0);}
.mc8_c00114{transform:matrix(0.230029,0.007131,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230029,0.007131,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230029,0.007131,-0.007746,0.249880,0,0);}
.mb1_c00114{transform:matrix(0.230316,0.002533,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230316,0.002533,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230316,0.002533,-0.002750,0.249985,0,0);}
.m6f_c00114{transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);}
.mbf_c00114{transform:matrix(0.232576,0.002558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232576,0.002558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232576,0.002558,-0.002750,0.249985,0,0);}
.m22_c00114{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m5b_c00114{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.mc9_c00114{transform:matrix(0.236057,0.007318,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236057,0.007318,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236057,0.007318,-0.007746,0.249880,0,0);}
.mcb_c00114{transform:matrix(0.236267,0.007324,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236267,0.007324,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236267,0.007324,-0.007746,0.249880,0,0);}
.m60_c00114{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.mf8_c00114{transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238970,0.007894,-0.008254,0.249864,0,0);}
.m63_c00114{transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);}
.mf7_c00114{transform:matrix(0.240384,0.007941,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240384,0.007941,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240384,0.007941,-0.008254,0.249864,0,0);}
.m9c_c00114{transform:matrix(0.240985,0.002651,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240985,0.002651,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240985,0.002651,-0.002750,0.249985,0,0);}
.m5f_c00114{transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);}
.mbe_c00114{transform:matrix(0.244060,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244060,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244060,0.002685,-0.002750,0.249985,0,0);}
.mc6_c00114{transform:matrix(0.244895,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244895,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244895,0.002694,-0.002750,0.249985,0,0);}
.m7c_c00114{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.mca_c00114{transform:matrix(0.249045,0.007720,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249045,0.007720,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249045,0.007720,-0.007746,0.249880,0,0);}
.md7_c00114{transform:matrix(0.260117,0.004162,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260117,0.004162,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260117,0.004162,-0.003999,0.249968,0,0);}
.m2d_c00114{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.mcd_c00114{transform:matrix(0.291568,0.004665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291568,0.004665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291568,0.004665,-0.003999,0.249968,0,0);}
.m15_c00114{transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);}
.m81_c00114{transform:matrix(0.343935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343935,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.433010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433010,0.000000,0.000000,0.250000,0,0);}
.md6_c00114{transform:matrix(0.442793,0.007085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.442793,0.007085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.442793,0.007085,-0.003999,0.249968,0,0);}
.m6e_c00114{transform:matrix(0.646225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646225,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:0.000000px;}
.fc0_c00114{color:transparent;}
.fsd_c00114{font-size:58.828247px;}
.fs13_c00114{font-size:59.822762px;}
.fs8_c00114{font-size:59.850000px;}
.fsc_c00114{font-size:59.853621px;}
.fsf_c00114{font-size:59.857660px;}
.fs4_c00114{font-size:60.900000px;}
.fs10_c00114{font-size:61.928221px;}
.fs1_c00114{font-size:61.950000px;}
.fs2_c00114{font-size:63.000000px;}
.fs9_c00114{font-size:63.003811px;}
.fs5_c00114{font-size:64.050000px;}
.fse_c00114{font-size:64.058198px;}
.fs3_c00114{font-size:65.100000px;}
.fs7_c00114{font-size:66.150000px;}
.fsb_c00114{font-size:66.154002px;}
.fs11_c00114{font-size:67.169417px;}
.fs0_c00114{font-size:68.250000px;}
.fs12_c00114{font-size:69.268461px;}
.fsa_c00114{font-size:70.354256px;}
.fs6_c00114{font-size:72.450000px;}
.y0_c00114{bottom:0.000000px;}
.y89_c00114{bottom:33.872359px;}
.y88_c00114{bottom:36.956673px;}
.y87_c00114{bottom:37.790509px;}
.y86_c00114{bottom:38.463133px;}
.y85_c00114{bottom:40.792032px;}
.y84_c00114{bottom:41.675724px;}
.y83_c00114{bottom:43.117204px;}
.y82_c00114{bottom:43.870639px;}
.y81_c00114{bottom:44.833891px;}
.y80_c00114{bottom:45.931968px;}
.y7f_c00114{bottom:52.717172px;}
.y7e_c00114{bottom:53.787897px;}
.y7d_c00114{bottom:54.378166px;}
.y7c_c00114{bottom:57.230667px;}
.y7b_c00114{bottom:58.143060px;}
.y7a_c00114{bottom:59.064341px;}
.y79_c00114{bottom:61.445061px;}
.y78_c00114{bottom:62.272557px;}
.y77_c00114{bottom:63.172152px;}
.y76_c00114{bottom:64.287288px;}
.y75_c00114{bottom:71.095599px;}
.y74_c00114{bottom:73.184400px;}
.y73_c00114{bottom:75.190685px;}
.y72_c00114{bottom:75.848490px;}
.y71_c00114{bottom:77.292306px;}
.y70_c00114{bottom:78.094354px;}
.y6f_c00114{bottom:79.311708px;}
.y6e_c00114{bottom:79.659000px;}
.y6d_c00114{bottom:88.016262px;}
.y6c_c00114{bottom:88.885932px;}
.y6b_c00114{bottom:91.181148px;}
.y6a_c00114{bottom:92.011992px;}
.y69_c00114{bottom:93.575292px;}
.y68_c00114{bottom:95.674866px;}
.y67_c00114{bottom:97.755000px;}
.y66_c00114{bottom:109.717212px;}
.y65_c00114{bottom:110.595300px;}
.y64_c00114{bottom:111.152100px;}
.y63_c00114{bottom:111.544140px;}
.y62_c00114{bottom:112.062900px;}
.y61_c00114{bottom:113.117532px;}
.y60_c00114{bottom:114.210756px;}
.y5a_c00114{bottom:125.586240px;}
.y5f_c00114{bottom:125.790864px;}
.y5e_c00114{bottom:126.084384px;}
.y5d_c00114{bottom:127.488552px;}
.y5c_c00114{bottom:127.894896px;}
.y59_c00114{bottom:127.957507px;}
.y58_c00114{bottom:128.521134px;}
.y5b_c00114{bottom:129.870000px;}
.y57_c00114{bottom:130.878545px;}
.y56_c00114{bottom:131.126668px;}
.y55_c00114{bottom:132.312000px;}
.y52_c00114{bottom:143.565391px;}
.y54_c00114{bottom:143.565637px;}
.y4e_c00114{bottom:143.565773px;}
.y50_c00114{bottom:143.565776px;}
.y53_c00114{bottom:143.566038px;}
.y51_c00114{bottom:143.566065px;}
.y4d_c00114{bottom:143.566266px;}
.y4f_c00114{bottom:143.566479px;}
.y4c_c00114{bottom:162.146526px;}
.y4b_c00114{bottom:163.269572px;}
.y4a_c00114{bottom:164.403123px;}
.y49_c00114{bottom:164.867159px;}
.y48_c00114{bottom:166.134762px;}
.y47_c00114{bottom:166.611628px;}
.y46_c00114{bottom:167.400996px;}
.y45_c00114{bottom:179.096025px;}
.y44_c00114{bottom:179.426221px;}
.y43_c00114{bottom:180.107468px;}
.y42_c00114{bottom:180.381111px;}
.y41_c00114{bottom:180.613148px;}
.y40_c00114{bottom:182.255223px;}
.y3f_c00114{bottom:182.518176px;}
.y3e_c00114{bottom:195.975188px;}
.y3d_c00114{bottom:196.768854px;}
.y3c_c00114{bottom:197.205804px;}
.y3b_c00114{bottom:197.895447px;}
.y3a_c00114{bottom:198.371285px;}
.y39_c00114{bottom:198.717129px;}
.y38_c00114{bottom:213.724577px;}
.y37_c00114{bottom:214.036410px;}
.y36_c00114{bottom:214.187831px;}
.y35_c00114{bottom:214.824087px;}
.y34_c00114{bottom:215.103251px;}
.y33_c00114{bottom:216.107111px;}
.y32_c00114{bottom:216.537546px;}
.y31_c00114{bottom:230.801931px;}
.y30_c00114{bottom:231.084338px;}
.y2f_c00114{bottom:231.987951px;}
.y2e_c00114{bottom:232.221341px;}
.y2d_c00114{bottom:232.898988px;}
.y2c_c00114{bottom:233.170424px;}
.y2b_c00114{bottom:233.549711px;}
.y2a_c00114{bottom:248.311268px;}
.y29_c00114{bottom:248.493659px;}
.y28_c00114{bottom:249.280824px;}
.y27_c00114{bottom:249.589093px;}
.y26_c00114{bottom:249.800574px;}
.y25_c00114{bottom:250.239821px;}
.y24_c00114{bottom:250.569837px;}
.y23_c00114{bottom:251.101500px;}
.y22_c00114{bottom:266.539500px;}
.y21_c00114{bottom:282.597000px;}
.y20_c00114{bottom:283.081500px;}
.y1f_c00114{bottom:283.312500px;}
.y1e_c00114{bottom:283.947000px;}
.y1d_c00114{bottom:284.206500px;}
.y1c_c00114{bottom:284.437500px;}
.y1b_c00114{bottom:285.223500px;}
.y1a_c00114{bottom:285.390000px;}
.y19_c00114{bottom:301.905000px;}
.y18_c00114{bottom:319.492500px;}
.y17_c00114{bottom:337.287000px;}
.y16_c00114{bottom:352.606500px;}
.y15_c00114{bottom:370.350000px;}
.y14_c00114{bottom:387.484500px;}
.y13_c00114{bottom:404.340000px;}
.y12_c00114{bottom:422.043000px;}
.y11_c00114{bottom:439.323000px;}
.y10_c00114{bottom:456.534000px;}
.yf_c00114{bottom:474.297000px;}
.ye_c00114{bottom:491.737500px;}
.yd_c00114{bottom:508.390500px;}
.yc_c00114{bottom:525.825000px;}
.y4_c00114{bottom:541.350000px;}
.y5_c00114{bottom:541.827000px;}
.y6_c00114{bottom:542.116500px;}
.y7_c00114{bottom:542.608500px;}
.y8_c00114{bottom:542.721000px;}
.y9_c00114{bottom:542.910000px;}
.ya_c00114{bottom:543.540000px;}
.yb_c00114{bottom:544.105500px;}
.y3_c00114{bottom:561.291000px;}
.y2_c00114{bottom:578.677500px;}
.y1_c00114{bottom:595.486500px;}
.hf_c00114{height:58.828247px;}
.h15_c00114{height:59.822762px;}
.ha_c00114{height:59.850000px;}
.he_c00114{height:59.853621px;}
.h11_c00114{height:59.857660px;}
.h6_c00114{height:60.900000px;}
.h12_c00114{height:61.928221px;}
.h3_c00114{height:61.950000px;}
.h4_c00114{height:63.000000px;}
.hb_c00114{height:63.003811px;}
.h7_c00114{height:64.050000px;}
.h10_c00114{height:64.058198px;}
.h5_c00114{height:65.100000px;}
.h9_c00114{height:66.150000px;}
.hd_c00114{height:66.154002px;}
.h13_c00114{height:67.169417px;}
.h2_c00114{height:68.250000px;}
.h14_c00114{height:69.268461px;}
.hc_c00114{height:70.354256px;}
.h8_c00114{height:72.450000px;}
.h1_c00114{height:632.250000px;}
.h0_c00114{height:632.550000px;}
.w0_c00114{width:371.790000px;}
.w1_c00114{width:372.000000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:22.950000px;}
.x14_c00114{left:24.030000px;}
.x2d_c00114{left:25.110000px;}
.x59_c00114{left:26.730000px;}
.x69_c00114{left:28.239944px;}
.x27_c00114{left:30.240000px;}
.x55_c00114{left:32.130000px;}
.x7f_c00114{left:33.585051px;}
.x66_c00114{left:36.589500px;}
.x76_c00114{left:39.832980px;}
.x44_c00114{left:41.580000px;}
.x6_c00114{left:42.930000px;}
.x39_c00114{left:44.550000px;}
.x2e_c00114{left:47.790000px;}
.x6f_c00114{left:49.540849px;}
.x20_c00114{left:51.570000px;}
.x6e_c00114{left:57.622582px;}
.x1d_c00114{left:58.860000px;}
.x5a_c00114{left:61.020000px;}
.x21_c00114{left:68.580000px;}
.x71_c00114{left:69.970762px;}
.xe_c00114{left:71.364000px;}
.x15_c00114{left:73.440000px;}
.x4e_c00114{left:75.060000px;}
.x63_c00114{left:77.218500px;}
.x80_c00114{left:78.318534px;}
.x56_c00114{left:80.460000px;}
.x6a_c00114{left:82.486850px;}
.x7_c00114{left:85.050000px;}
.x3d_c00114{left:88.020000px;}
.x32_c00114{left:91.530000px;}
.x72_c00114{left:93.819903px;}
.x81_c00114{left:96.693357px;}
.x4f_c00114{left:98.280000px;}
.x85_c00114{left:99.575746px;}
.x8_c00114{left:100.710000px;}
.x3e_c00114{left:106.380000px;}
.x77_c00114{left:108.159480px;}
.x3_c00114{left:109.890000px;}
.x45_c00114{left:111.510000px;}
.x7c_c00114{left:113.229282px;}
.x28_c00114{left:114.480000px;}
.x61_c00114{left:121.950000px;}
.x22_c00114{left:123.120000px;}
.x16_c00114{left:125.010000px;}
.x1e_c00114{left:126.090000px;}
.x46_c00114{left:129.600000px;}
.x33_c00114{left:132.300000px;}
.x5b_c00114{left:134.460000px;}
.x64_c00114{left:138.238500px;}
.x4a_c00114{left:139.320000px;}
.x3f_c00114{left:141.210000px;}
.x7a_c00114{left:143.388897px;}
.x4_c00114{left:145.530000px;}
.xf_c00114{left:149.437500px;}
.x50_c00114{left:150.930000px;}
.x86_c00114{left:153.616314px;}
.x67_c00114{left:154.855500px;}
.x5d_c00114{left:156.060000px;}
.x1_c00114{left:157.140000px;}
.x6b_c00114{left:158.353008px;}
.x10_c00114{left:160.735500px;}
.x4b_c00114{left:162.810000px;}
.x17_c00114{left:164.970000px;}
.x40_c00114{left:166.590000px;}
.x82_c00114{left:169.996395px;}
.x47_c00114{left:171.180000px;}
.x73_c00114{left:172.221000px;}
.x5_c00114{left:174.150000px;}
.x9_c00114{left:175.230000px;}
.x7d_c00114{left:176.851096px;}
.x11_c00114{left:179.688000px;}
.x18_c00114{left:181.440000px;}
.x6c_c00114{left:184.291367px;}
.x7b_c00114{left:186.770472px;}
.x23_c00114{left:187.920000px;}
.x83_c00114{left:190.260084px;}
.x34_c00114{left:191.700000px;}
.x5e_c00114{left:193.860000px;}
.xa_c00114{left:195.480000px;}
.x2f_c00114{left:197.640000px;}
.x51_c00114{left:200.340000px;}
.x29_c00114{left:201.960000px;}
.x5c_c00114{left:204.390000px;}
.x78_c00114{left:206.496480px;}
.x65_c00114{left:207.898500px;}
.x35_c00114{left:210.060000px;}
.x70_c00114{left:214.787719px;}
.x2a_c00114{left:217.890000px;}
.x5f_c00114{left:218.970000px;}
.x41_c00114{left:220.590000px;}
.x87_c00114{left:223.363456px;}
.x36_c00114{left:226.260000px;}
.x19_c00114{left:228.150000px;}
.x3a_c00114{left:231.660000px;}
.x42_c00114{left:233.280000px;}
.x52_c00114{left:234.630000px;}
.x57_c00114{left:237.060000px;}
.x1a_c00114{left:241.380000px;}
.x12_c00114{left:242.716500px;}
.x48_c00114{left:244.890000px;}
.x74_c00114{left:248.713500px;}
.x3b_c00114{left:253.260000px;}
.x58_c00114{left:254.340000px;}
.x30_c00114{left:255.690000px;}
.xb_c00114{left:256.770000px;}
.x43_c00114{left:262.440000px;}
.x37_c00114{left:265.140000px;}
.x84_c00114{left:266.689254px;}
.x24_c00114{left:268.110000px;}
.x60_c00114{left:270.270000px;}
.x49_c00114{left:272.430000px;}
.x68_c00114{left:273.666000px;}
.x31_c00114{left:275.130000px;}
.x2b_c00114{left:280.530000px;}
.xc_c00114{left:283.230000px;}
.x6d_c00114{left:284.246867px;}
.x1b_c00114{left:285.390000px;}
.x75_c00114{left:287.106000px;}
.x4c_c00114{left:290.250000px;}
.x38_c00114{left:292.950000px;}
.x25_c00114{left:294.300000px;}
.x2c_c00114{left:296.190000px;}
.x53_c00114{left:298.080000px;}
.x13_c00114{left:299.245500px;}
.x7e_c00114{left:300.820503px;}
.x3c_c00114{left:303.480000px;}
.x1c_c00114{left:304.830000px;}
.x62_c00114{left:306.037500px;}
.x1f_c00114{left:307.800000px;}
.x26_c00114{left:309.960000px;}
.x88_c00114{left:314.410741px;}
.xd_c00114{left:315.630000px;}
.x54_c00114{left:317.250000px;}
.x79_c00114{left:320.679480px;}
.x4d_c00114{left:323.190000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.fsd_c00114{font-size:52.291775pt;}
.fs13_c00114{font-size:53.175788pt;}
.fs8_c00114{font-size:53.200000pt;}
.fsc_c00114{font-size:53.203219pt;}
.fsf_c00114{font-size:53.206809pt;}
.fs4_c00114{font-size:54.133333pt;}
.fs10_c00114{font-size:55.047307pt;}
.fs1_c00114{font-size:55.066667pt;}
.fs2_c00114{font-size:56.000000pt;}
.fs9_c00114{font-size:56.003388pt;}
.fs5_c00114{font-size:56.933333pt;}
.fse_c00114{font-size:56.940620pt;}
.fs3_c00114{font-size:57.866667pt;}
.fs7_c00114{font-size:58.800000pt;}
.fsb_c00114{font-size:58.803557pt;}
.fs11_c00114{font-size:59.706148pt;}
.fs0_c00114{font-size:60.666667pt;}
.fs12_c00114{font-size:61.571966pt;}
.fsa_c00114{font-size:62.537116pt;}
.fs6_c00114{font-size:64.400000pt;}
.y0_c00114{bottom:0.000000pt;}
.y89_c00114{bottom:30.108764pt;}
.y88_c00114{bottom:32.850376pt;}
.y87_c00114{bottom:33.591564pt;}
.y86_c00114{bottom:34.189452pt;}
.y85_c00114{bottom:36.259584pt;}
.y84_c00114{bottom:37.045088pt;}
.y83_c00114{bottom:38.326404pt;}
.y82_c00114{bottom:38.996124pt;}
.y81_c00114{bottom:39.852348pt;}
.y80_c00114{bottom:40.828416pt;}
.y7f_c00114{bottom:46.859708pt;}
.y7e_c00114{bottom:47.811464pt;}
.y7d_c00114{bottom:48.336148pt;}
.y7c_c00114{bottom:50.871704pt;}
.y7b_c00114{bottom:51.682720pt;}
.y7a_c00114{bottom:52.501636pt;}
.y79_c00114{bottom:54.617832pt;}
.y78_c00114{bottom:55.353384pt;}
.y77_c00114{bottom:56.153024pt;}
.y76_c00114{bottom:57.144256pt;}
.y75_c00114{bottom:63.196088pt;}
.y74_c00114{bottom:65.052800pt;}
.y73_c00114{bottom:66.836164pt;}
.y72_c00114{bottom:67.420880pt;}
.y71_c00114{bottom:68.704272pt;}
.y70_c00114{bottom:69.417204pt;}
.y6f_c00114{bottom:70.499296pt;}
.y6e_c00114{bottom:70.808000pt;}
.y6d_c00114{bottom:78.236677pt;}
.y6c_c00114{bottom:79.009717pt;}
.y6b_c00114{bottom:81.049909pt;}
.y6a_c00114{bottom:81.788437pt;}
.y69_c00114{bottom:83.178037pt;}
.y68_c00114{bottom:85.044325pt;}
.y67_c00114{bottom:86.893333pt;}
.y66_c00114{bottom:97.526411pt;}
.y65_c00114{bottom:98.306933pt;}
.y64_c00114{bottom:98.801867pt;}
.y63_c00114{bottom:99.150347pt;}
.y62_c00114{bottom:99.611467pt;}
.y61_c00114{bottom:100.548917pt;}
.y60_c00114{bottom:101.520672pt;}
.y5a_c00114{bottom:111.632213pt;}
.y5f_c00114{bottom:111.814101pt;}
.y5e_c00114{bottom:112.075008pt;}
.y5d_c00114{bottom:113.323157pt;}
.y5c_c00114{bottom:113.684352pt;}
.y59_c00114{bottom:113.740007pt;}
.y58_c00114{bottom:114.241008pt;}
.y5b_c00114{bottom:115.440000pt;}
.y57_c00114{bottom:116.336484pt;}
.y56_c00114{bottom:116.557039pt;}
.y55_c00114{bottom:117.610667pt;}
.y52_c00114{bottom:127.613681pt;}
.y54_c00114{bottom:127.613900pt;}
.y4e_c00114{bottom:127.614020pt;}
.y50_c00114{bottom:127.614023pt;}
.y53_c00114{bottom:127.614256pt;}
.y51_c00114{bottom:127.614280pt;}
.y4d_c00114{bottom:127.614459pt;}
.y4f_c00114{bottom:127.614648pt;}
.y4c_c00114{bottom:144.130245pt;}
.y4b_c00114{bottom:145.128508pt;}
.y4a_c00114{bottom:146.136109pt;}
.y49_c00114{bottom:146.548585pt;}
.y48_c00114{bottom:147.675344pt;}
.y47_c00114{bottom:148.099225pt;}
.y46_c00114{bottom:148.800885pt;}
.y45_c00114{bottom:159.196467pt;}
.y44_c00114{bottom:159.489975pt;}
.y43_c00114{bottom:160.095527pt;}
.y42_c00114{bottom:160.338765pt;}
.y41_c00114{bottom:160.545020pt;}
.y40_c00114{bottom:162.004643pt;}
.y3f_c00114{bottom:162.238379pt;}
.y3e_c00114{bottom:174.200167pt;}
.y3d_c00114{bottom:174.905648pt;}
.y3c_c00114{bottom:175.294048pt;}
.y3b_c00114{bottom:175.907064pt;}
.y3a_c00114{bottom:176.330031pt;}
.y39_c00114{bottom:176.637448pt;}
.y38_c00114{bottom:189.977401pt;}
.y37_c00114{bottom:190.254587pt;}
.y36_c00114{bottom:190.389183pt;}
.y35_c00114{bottom:190.954744pt;}
.y34_c00114{bottom:191.202889pt;}
.y33_c00114{bottom:192.095209pt;}
.y32_c00114{bottom:192.477819pt;}
.y31_c00114{bottom:205.157272pt;}
.y30_c00114{bottom:205.408300pt;}
.y2f_c00114{bottom:206.211512pt;}
.y2e_c00114{bottom:206.418969pt;}
.y2d_c00114{bottom:207.021323pt;}
.y2c_c00114{bottom:207.262599pt;}
.y2b_c00114{bottom:207.599743pt;}
.y2a_c00114{bottom:220.721127pt;}
.y29_c00114{bottom:220.883252pt;}
.y28_c00114{bottom:221.582955pt;}
.y27_c00114{bottom:221.856972pt;}
.y26_c00114{bottom:222.044955pt;}
.y25_c00114{bottom:222.435396pt;}
.y24_c00114{bottom:222.728744pt;}
.y23_c00114{bottom:223.201333pt;}
.y22_c00114{bottom:236.924000pt;}
.y21_c00114{bottom:251.197333pt;}
.y20_c00114{bottom:251.628000pt;}
.y1f_c00114{bottom:251.833333pt;}
.y1e_c00114{bottom:252.397333pt;}
.y1d_c00114{bottom:252.628000pt;}
.y1c_c00114{bottom:252.833333pt;}
.y1b_c00114{bottom:253.532000pt;}
.y1a_c00114{bottom:253.680000pt;}
.y19_c00114{bottom:268.360000pt;}
.y18_c00114{bottom:283.993333pt;}
.y17_c00114{bottom:299.810667pt;}
.y16_c00114{bottom:313.428000pt;}
.y15_c00114{bottom:329.200000pt;}
.y14_c00114{bottom:344.430667pt;}
.y13_c00114{bottom:359.413333pt;}
.y12_c00114{bottom:375.149333pt;}
.y11_c00114{bottom:390.509333pt;}
.y10_c00114{bottom:405.808000pt;}
.yf_c00114{bottom:421.597333pt;}
.ye_c00114{bottom:437.100000pt;}
.yd_c00114{bottom:451.902667pt;}
.yc_c00114{bottom:467.400000pt;}
.y4_c00114{bottom:481.200000pt;}
.y5_c00114{bottom:481.624000pt;}
.y6_c00114{bottom:481.881333pt;}
.y7_c00114{bottom:482.318667pt;}
.y8_c00114{bottom:482.418667pt;}
.y9_c00114{bottom:482.586667pt;}
.ya_c00114{bottom:483.146667pt;}
.yb_c00114{bottom:483.649333pt;}
.y3_c00114{bottom:498.925333pt;}
.y2_c00114{bottom:514.380000pt;}
.y1_c00114{bottom:529.321333pt;}
.hf_c00114{height:52.291775pt;}
.h15_c00114{height:53.175788pt;}
.ha_c00114{height:53.200000pt;}
.he_c00114{height:53.203219pt;}
.h11_c00114{height:53.206809pt;}
.h6_c00114{height:54.133333pt;}
.h12_c00114{height:55.047307pt;}
.h3_c00114{height:55.066667pt;}
.h4_c00114{height:56.000000pt;}
.hb_c00114{height:56.003388pt;}
.h7_c00114{height:56.933333pt;}
.h10_c00114{height:56.940620pt;}
.h5_c00114{height:57.866667pt;}
.h9_c00114{height:58.800000pt;}
.hd_c00114{height:58.803557pt;}
.h13_c00114{height:59.706148pt;}
.h2_c00114{height:60.666667pt;}
.h14_c00114{height:61.571966pt;}
.hc_c00114{height:62.537116pt;}
.h8_c00114{height:64.400000pt;}
.h1_c00114{height:562.000000pt;}
.h0_c00114{height:562.266667pt;}
.w0_c00114{width:330.480000pt;}
.w1_c00114{width:330.666667pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:20.400000pt;}
.x14_c00114{left:21.360000pt;}
.x2d_c00114{left:22.320000pt;}
.x59_c00114{left:23.760000pt;}
.x69_c00114{left:25.102172pt;}
.x27_c00114{left:26.880000pt;}
.x55_c00114{left:28.560000pt;}
.x7f_c00114{left:29.853379pt;}
.x66_c00114{left:32.524000pt;}
.x76_c00114{left:35.407093pt;}
.x44_c00114{left:36.960000pt;}
.x6_c00114{left:38.160000pt;}
.x39_c00114{left:39.600000pt;}
.x2e_c00114{left:42.480000pt;}
.x6f_c00114{left:44.036311pt;}
.x20_c00114{left:45.840000pt;}
.x6e_c00114{left:51.220073pt;}
.x1d_c00114{left:52.320000pt;}
.x5a_c00114{left:54.240000pt;}
.x21_c00114{left:60.960000pt;}
.x71_c00114{left:62.196233pt;}
.xe_c00114{left:63.434667pt;}
.x15_c00114{left:65.280000pt;}
.x4e_c00114{left:66.720000pt;}
.x63_c00114{left:68.638667pt;}
.x80_c00114{left:69.616475pt;}
.x56_c00114{left:71.520000pt;}
.x6a_c00114{left:73.321644pt;}
.x7_c00114{left:75.600000pt;}
.x3d_c00114{left:78.240000pt;}
.x32_c00114{left:81.360000pt;}
.x72_c00114{left:83.395469pt;}
.x81_c00114{left:85.949651pt;}
.x4f_c00114{left:87.360000pt;}
.x85_c00114{left:88.511775pt;}
.x8_c00114{left:89.520000pt;}
.x3e_c00114{left:94.560000pt;}
.x77_c00114{left:96.141760pt;}
.x3_c00114{left:97.680000pt;}
.x45_c00114{left:99.120000pt;}
.x7c_c00114{left:100.648251pt;}
.x28_c00114{left:101.760000pt;}
.x61_c00114{left:108.400000pt;}
.x22_c00114{left:109.440000pt;}
.x16_c00114{left:111.120000pt;}
.x1e_c00114{left:112.080000pt;}
.x46_c00114{left:115.200000pt;}
.x33_c00114{left:117.600000pt;}
.x5b_c00114{left:119.520000pt;}
.x64_c00114{left:122.878667pt;}
.x4a_c00114{left:123.840000pt;}
.x3f_c00114{left:125.520000pt;}
.x7a_c00114{left:127.456797pt;}
.x4_c00114{left:129.360000pt;}
.xf_c00114{left:132.833333pt;}
.x50_c00114{left:134.160000pt;}
.x86_c00114{left:136.547835pt;}
.x67_c00114{left:137.649333pt;}
.x5d_c00114{left:138.720000pt;}
.x1_c00114{left:139.680000pt;}
.x6b_c00114{left:140.758229pt;}
.x10_c00114{left:142.876000pt;}
.x4b_c00114{left:144.720000pt;}
.x17_c00114{left:146.640000pt;}
.x40_c00114{left:148.080000pt;}
.x82_c00114{left:151.107907pt;}
.x47_c00114{left:152.160000pt;}
.x73_c00114{left:153.085333pt;}
.x5_c00114{left:154.800000pt;}
.x9_c00114{left:155.760000pt;}
.x7d_c00114{left:157.200975pt;}
.x11_c00114{left:159.722667pt;}
.x18_c00114{left:161.280000pt;}
.x6c_c00114{left:163.814548pt;}
.x7b_c00114{left:166.018197pt;}
.x23_c00114{left:167.040000pt;}
.x83_c00114{left:169.120075pt;}
.x34_c00114{left:170.400000pt;}
.x5e_c00114{left:172.320000pt;}
.xa_c00114{left:173.760000pt;}
.x2f_c00114{left:175.680000pt;}
.x51_c00114{left:178.080000pt;}
.x29_c00114{left:179.520000pt;}
.x5c_c00114{left:181.680000pt;}
.x78_c00114{left:183.552427pt;}
.x65_c00114{left:184.798667pt;}
.x35_c00114{left:186.720000pt;}
.x70_c00114{left:190.922417pt;}
.x2a_c00114{left:193.680000pt;}
.x5f_c00114{left:194.640000pt;}
.x41_c00114{left:196.080000pt;}
.x87_c00114{left:198.545295pt;}
.x36_c00114{left:201.120000pt;}
.x19_c00114{left:202.800000pt;}
.x3a_c00114{left:205.920000pt;}
.x42_c00114{left:207.360000pt;}
.x52_c00114{left:208.560000pt;}
.x57_c00114{left:210.720000pt;}
.x1a_c00114{left:214.560000pt;}
.x12_c00114{left:215.748000pt;}
.x48_c00114{left:217.680000pt;}
.x74_c00114{left:221.078667pt;}
.x3b_c00114{left:225.120000pt;}
.x58_c00114{left:226.080000pt;}
.x30_c00114{left:227.280000pt;}
.xb_c00114{left:228.240000pt;}
.x43_c00114{left:233.280000pt;}
.x37_c00114{left:235.680000pt;}
.x84_c00114{left:237.057115pt;}
.x24_c00114{left:238.320000pt;}
.x60_c00114{left:240.240000pt;}
.x49_c00114{left:242.160000pt;}
.x68_c00114{left:243.258667pt;}
.x31_c00114{left:244.560000pt;}
.x2b_c00114{left:249.360000pt;}
.xc_c00114{left:251.760000pt;}
.x6d_c00114{left:252.663881pt;}
.x1b_c00114{left:253.680000pt;}
.x75_c00114{left:255.205333pt;}
.x4c_c00114{left:258.000000pt;}
.x38_c00114{left:260.400000pt;}
.x25_c00114{left:261.600000pt;}
.x2c_c00114{left:263.280000pt;}
.x53_c00114{left:264.960000pt;}
.x13_c00114{left:265.996000pt;}
.x7e_c00114{left:267.396003pt;}
.x3c_c00114{left:269.760000pt;}
.x1c_c00114{left:270.960000pt;}
.x62_c00114{left:272.033333pt;}
.x1f_c00114{left:273.600000pt;}
.x26_c00114{left:275.520000pt;}
.x88_c00114{left:279.476215pt;}
.xd_c00114{left:280.560000pt;}
.x54_c00114{left:282.000000pt;}
.x79_c00114{left:285.048427pt;}
.x4d_c00114{left:287.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00115 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00115.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00115{transform:matrix(0.065268,-0.001240,0.004749,0.249955,0,0);-ms-transform:matrix(0.065268,-0.001240,0.004749,0.249955,0,0);-webkit-transform:matrix(0.065268,-0.001240,0.004749,0.249955,0,0);}
.m0_c00115{transform:matrix(0.069765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069765,0.000000,0.000000,0.250000,0,0);}
.m35_c00115{transform:matrix(0.135091,-0.002567,0.004749,0.249955,0,0);-ms-transform:matrix(0.135091,-0.002567,0.004749,0.249955,0,0);-webkit-transform:matrix(0.135091,-0.002567,0.004749,0.249955,0,0);}
.m9_c00115{transform:matrix(0.136500,-0.002594,0.004749,0.249955,0,0);-ms-transform:matrix(0.136500,-0.002594,0.004749,0.249955,0,0);-webkit-transform:matrix(0.136500,-0.002594,0.004749,0.249955,0,0);}
.m6c_c00115{transform:matrix(0.148393,-0.002819,0.004749,0.249955,0,0);-ms-transform:matrix(0.148393,-0.002819,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148393,-0.002819,0.004749,0.249955,0,0);}
.me2_c00115{transform:matrix(0.150188,-0.002854,0.004749,0.249955,0,0);-ms-transform:matrix(0.150188,-0.002854,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150188,-0.002854,0.004749,0.249955,0,0);}
.md_c00115{transform:matrix(0.150273,-0.002855,0.004749,0.249955,0,0);-ms-transform:matrix(0.150273,-0.002855,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150273,-0.002855,0.004749,0.249955,0,0);}
.md1_c00115{transform:matrix(0.150948,-0.002868,0.004749,0.249955,0,0);-ms-transform:matrix(0.150948,-0.002868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150948,-0.002868,0.004749,0.249955,0,0);}
.m6a_c00115{transform:matrix(0.151433,-0.002877,0.004749,0.249955,0,0);-ms-transform:matrix(0.151433,-0.002877,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151433,-0.002877,0.004749,0.249955,0,0);}
.mb9_c00115{transform:matrix(0.154132,-0.002929,0.004749,0.249955,0,0);-ms-transform:matrix(0.154132,-0.002929,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154132,-0.002929,0.004749,0.249955,0,0);}
.m55_c00115{transform:matrix(0.154227,-0.002930,0.004749,0.249955,0,0);-ms-transform:matrix(0.154227,-0.002930,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154227,-0.002930,0.004749,0.249955,0,0);}
.m29_c00115{transform:matrix(0.154907,-0.002943,0.004749,0.249955,0,0);-ms-transform:matrix(0.154907,-0.002943,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154907,-0.002943,0.004749,0.249955,0,0);}
.mbc_c00115{transform:matrix(0.155037,-0.002946,0.004749,0.249955,0,0);-ms-transform:matrix(0.155037,-0.002946,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155037,-0.002946,0.004749,0.249955,0,0);}
.m2c_c00115{transform:matrix(0.156007,-0.002964,0.004749,0.249955,0,0);-ms-transform:matrix(0.156007,-0.002964,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156007,-0.002964,0.004749,0.249955,0,0);}
.m8c_c00115{transform:matrix(0.156657,-0.002976,0.004749,0.249955,0,0);-ms-transform:matrix(0.156657,-0.002976,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156657,-0.002976,0.004749,0.249955,0,0);}
.mb_c00115{transform:matrix(0.157127,-0.002985,0.004749,0.249955,0,0);-ms-transform:matrix(0.157127,-0.002985,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157127,-0.002985,0.004749,0.249955,0,0);}
.mda_c00115{transform:matrix(0.157332,-0.002989,0.004749,0.249955,0,0);-ms-transform:matrix(0.157332,-0.002989,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157332,-0.002989,0.004749,0.249955,0,0);}
.m66_c00115{transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);-ms-transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);}
.m46_c00115{transform:matrix(0.160021,-0.003040,0.004749,0.249955,0,0);-ms-transform:matrix(0.160021,-0.003040,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160021,-0.003040,0.004749,0.249955,0,0);}
.m6b_c00115{transform:matrix(0.160441,-0.003048,0.004749,0.249955,0,0);-ms-transform:matrix(0.160441,-0.003048,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160441,-0.003048,0.004749,0.249955,0,0);}
.mce_c00115{transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);-ms-transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161196,-0.003063,0.004749,0.249955,0,0);}
.mca_c00115{transform:matrix(0.161431,-0.003067,0.004749,0.249955,0,0);-ms-transform:matrix(0.161431,-0.003067,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161431,-0.003067,0.004749,0.249955,0,0);}
.m4e_c00115{transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-ms-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);}
.m7a_c00115{transform:matrix(0.164315,-0.003122,0.004749,0.249955,0,0);-ms-transform:matrix(0.164315,-0.003122,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164315,-0.003122,0.004749,0.249955,0,0);}
.m82_c00115{transform:matrix(0.165415,-0.003143,0.004749,0.249955,0,0);-ms-transform:matrix(0.165415,-0.003143,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165415,-0.003143,0.004749,0.249955,0,0);}
.ma_c00115{transform:matrix(0.165500,-0.003145,0.004749,0.249955,0,0);-ms-transform:matrix(0.165500,-0.003145,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165500,-0.003145,0.004749,0.249955,0,0);}
.mba_c00115{transform:matrix(0.166430,-0.003162,0.004749,0.249955,0,0);-ms-transform:matrix(0.166430,-0.003162,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166430,-0.003162,0.004749,0.249955,0,0);}
.m58_c00115{transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);-ms-transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);}
.m10_c00115{transform:matrix(0.167120,-0.003175,0.004749,0.249955,0,0);-ms-transform:matrix(0.167120,-0.003175,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167120,-0.003175,0.004749,0.249955,0,0);}
.m45_c00115{transform:matrix(0.167340,-0.003179,0.004749,0.249955,0,0);-ms-transform:matrix(0.167340,-0.003179,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167340,-0.003179,0.004749,0.249955,0,0);}
.mb6_c00115{transform:matrix(0.168110,-0.003194,0.004749,0.249955,0,0);-ms-transform:matrix(0.168110,-0.003194,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168110,-0.003194,0.004749,0.249955,0,0);}
.m5a_c00115{transform:matrix(0.168240,-0.003197,0.004749,0.249955,0,0);-ms-transform:matrix(0.168240,-0.003197,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168240,-0.003197,0.004749,0.249955,0,0);}
.m2d_c00115{transform:matrix(0.168260,-0.003197,0.004749,0.249955,0,0);-ms-transform:matrix(0.168260,-0.003197,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168260,-0.003197,0.004749,0.249955,0,0);}
.m51_c00115{transform:matrix(0.168400,-0.003200,0.004749,0.249955,0,0);-ms-transform:matrix(0.168400,-0.003200,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168400,-0.003200,0.004749,0.249955,0,0);}
.m40_c00115{transform:matrix(0.168605,-0.003203,0.004749,0.249955,0,0);-ms-transform:matrix(0.168605,-0.003203,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168605,-0.003203,0.004749,0.249955,0,0);}
.m52_c00115{transform:matrix(0.168685,-0.003205,0.004749,0.249955,0,0);-ms-transform:matrix(0.168685,-0.003205,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168685,-0.003205,0.004749,0.249955,0,0);}
.m18_c00115{transform:matrix(0.168875,-0.003209,0.004749,0.249955,0,0);-ms-transform:matrix(0.168875,-0.003209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168875,-0.003209,0.004749,0.249955,0,0);}
.m16_c00115{transform:matrix(0.169119,-0.003213,0.004749,0.249955,0,0);-ms-transform:matrix(0.169119,-0.003213,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169119,-0.003213,0.004749,0.249955,0,0);}
.m7d_c00115{transform:matrix(0.169309,-0.003217,0.004749,0.249955,0,0);-ms-transform:matrix(0.169309,-0.003217,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169309,-0.003217,0.004749,0.249955,0,0);}
.md0_c00115{transform:matrix(0.169699,-0.003224,0.004749,0.249955,0,0);-ms-transform:matrix(0.169699,-0.003224,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169699,-0.003224,0.004749,0.249955,0,0);}
.me6_c00115{transform:matrix(0.169799,-0.003226,0.004749,0.249955,0,0);-ms-transform:matrix(0.169799,-0.003226,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169799,-0.003226,0.004749,0.249955,0,0);}
.mc6_c00115{transform:matrix(0.169849,-0.003227,0.004749,0.249955,0,0);-ms-transform:matrix(0.169849,-0.003227,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169849,-0.003227,0.004749,0.249955,0,0);}
.m73_c00115{transform:matrix(0.170084,-0.003232,0.004749,0.249955,0,0);-ms-transform:matrix(0.170084,-0.003232,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170084,-0.003232,0.004749,0.249955,0,0);}
.mf_c00115{transform:matrix(0.170219,-0.003234,0.004749,0.249955,0,0);-ms-transform:matrix(0.170219,-0.003234,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170219,-0.003234,0.004749,0.249955,0,0);}
.mcf_c00115{transform:matrix(0.170359,-0.003237,0.004749,0.249955,0,0);-ms-transform:matrix(0.170359,-0.003237,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170359,-0.003237,0.004749,0.249955,0,0);}
.m32_c00115{transform:matrix(0.170874,-0.003247,0.004749,0.249955,0,0);-ms-transform:matrix(0.170874,-0.003247,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170874,-0.003247,0.004749,0.249955,0,0);}
.mdb_c00115{transform:matrix(0.170889,-0.003247,0.004749,0.249955,0,0);-ms-transform:matrix(0.170889,-0.003247,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170889,-0.003247,0.004749,0.249955,0,0);}
.m56_c00115{transform:matrix(0.171239,-0.003254,0.004749,0.249955,0,0);-ms-transform:matrix(0.171239,-0.003254,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171239,-0.003254,0.004749,0.249955,0,0);}
.m19_c00115{transform:matrix(0.171379,-0.003256,0.004749,0.249955,0,0);-ms-transform:matrix(0.171379,-0.003256,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171379,-0.003256,0.004749,0.249955,0,0);}
.m4f_c00115{transform:matrix(0.171509,-0.003259,0.004749,0.249955,0,0);-ms-transform:matrix(0.171509,-0.003259,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171509,-0.003259,0.004749,0.249955,0,0);}
.m80_c00115{transform:matrix(0.172309,-0.003274,0.004749,0.249955,0,0);-ms-transform:matrix(0.172309,-0.003274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172309,-0.003274,0.004749,0.249955,0,0);}
.m53_c00115{transform:matrix(0.172514,-0.003278,0.004749,0.249955,0,0);-ms-transform:matrix(0.172514,-0.003278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172514,-0.003278,0.004749,0.249955,0,0);}
.m24_c00115{transform:matrix(0.172679,-0.003281,0.004749,0.249955,0,0);-ms-transform:matrix(0.172679,-0.003281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172679,-0.003281,0.004749,0.249955,0,0);}
.md2_c00115{transform:matrix(0.172959,-0.003286,0.004749,0.249955,0,0);-ms-transform:matrix(0.172959,-0.003286,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172959,-0.003286,0.004749,0.249955,0,0);}
.m5f_c00115{transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-ms-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);}
.md9_c00115{transform:matrix(0.173409,-0.003295,0.004749,0.249955,0,0);-ms-transform:matrix(0.173409,-0.003295,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173409,-0.003295,0.004749,0.249955,0,0);}
.m44_c00115{transform:matrix(0.173579,-0.003298,0.004749,0.249955,0,0);-ms-transform:matrix(0.173579,-0.003298,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173579,-0.003298,0.004749,0.249955,0,0);}
.m6e_c00115{transform:matrix(0.173689,-0.003300,0.004749,0.249955,0,0);-ms-transform:matrix(0.173689,-0.003300,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173689,-0.003300,0.004749,0.249955,0,0);}
.mea_c00115{transform:matrix(0.173824,-0.003303,0.004749,0.249955,0,0);-ms-transform:matrix(0.173824,-0.003303,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173824,-0.003303,0.004749,0.249955,0,0);}
.m83_c00115{transform:matrix(0.174124,-0.003308,0.004749,0.249955,0,0);-ms-transform:matrix(0.174124,-0.003308,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174124,-0.003308,0.004749,0.249955,0,0);}
.ma0_c00115{transform:matrix(0.174279,-0.003311,0.004749,0.249955,0,0);-ms-transform:matrix(0.174279,-0.003311,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174279,-0.003311,0.004749,0.249955,0,0);}
.mb5_c00115{transform:matrix(0.174389,-0.003313,0.004749,0.249955,0,0);-ms-transform:matrix(0.174389,-0.003313,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174389,-0.003313,0.004749,0.249955,0,0);}
.mb1_c00115{transform:matrix(0.174464,-0.003315,0.004749,0.249955,0,0);-ms-transform:matrix(0.174464,-0.003315,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174464,-0.003315,0.004749,0.249955,0,0);}
.m4c_c00115{transform:matrix(0.174623,-0.003318,0.004749,0.249955,0,0);-ms-transform:matrix(0.174623,-0.003318,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174623,-0.003318,0.004749,0.249955,0,0);}
.m7_c00115{transform:matrix(0.175083,-0.003327,0.004749,0.249955,0,0);-ms-transform:matrix(0.175083,-0.003327,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175083,-0.003327,0.004749,0.249955,0,0);}
.m94_c00115{transform:matrix(0.175908,-0.003342,0.004749,0.249955,0,0);-ms-transform:matrix(0.175908,-0.003342,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175908,-0.003342,0.004749,0.249955,0,0);}
.me0_c00115{transform:matrix(0.176893,-0.003361,0.004749,0.249955,0,0);-ms-transform:matrix(0.176893,-0.003361,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176893,-0.003361,0.004749,0.249955,0,0);}
.m67_c00115{transform:matrix(0.176908,-0.003361,0.004749,0.249955,0,0);-ms-transform:matrix(0.176908,-0.003361,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176908,-0.003361,0.004749,0.249955,0,0);}
.m68_c00115{transform:matrix(0.176973,-0.003362,0.004749,0.249955,0,0);-ms-transform:matrix(0.176973,-0.003362,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176973,-0.003362,0.004749,0.249955,0,0);}
.mdd_c00115{transform:matrix(0.177498,-0.003372,0.004749,0.249955,0,0);-ms-transform:matrix(0.177498,-0.003372,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177498,-0.003372,0.004749,0.249955,0,0);}
.mf3_c00115{transform:matrix(0.177693,-0.003376,0.004749,0.249955,0,0);-ms-transform:matrix(0.177693,-0.003376,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177693,-0.003376,0.004749,0.249955,0,0);}
.m81_c00115{transform:matrix(0.177863,-0.003379,0.004749,0.249955,0,0);-ms-transform:matrix(0.177863,-0.003379,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177863,-0.003379,0.004749,0.249955,0,0);}
.mc0_c00115{transform:matrix(0.177948,-0.003381,0.004749,0.249955,0,0);-ms-transform:matrix(0.177948,-0.003381,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177948,-0.003381,0.004749,0.249955,0,0);}
.m17_c00115{transform:matrix(0.178153,-0.003385,0.004749,0.249955,0,0);-ms-transform:matrix(0.178153,-0.003385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178153,-0.003385,0.004749,0.249955,0,0);}
.ma6_c00115{transform:matrix(0.178168,-0.003385,0.004749,0.249955,0,0);-ms-transform:matrix(0.178168,-0.003385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178168,-0.003385,0.004749,0.249955,0,0);}
.mbf_c00115{transform:matrix(0.178468,-0.003391,0.004749,0.249955,0,0);-ms-transform:matrix(0.178468,-0.003391,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178468,-0.003391,0.004749,0.249955,0,0);}
.m3_c00115{transform:matrix(0.178743,-0.003396,0.004749,0.249955,0,0);-ms-transform:matrix(0.178743,-0.003396,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178743,-0.003396,0.004749,0.249955,0,0);}
.m61_c00115{transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);-ms-transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);}
.m6_c00115{transform:matrix(0.179578,-0.003412,0.004749,0.249955,0,0);-ms-transform:matrix(0.179578,-0.003412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179578,-0.003412,0.004749,0.249955,0,0);}
.m91_c00115{transform:matrix(0.179868,-0.003417,0.004749,0.249955,0,0);-ms-transform:matrix(0.179868,-0.003417,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179868,-0.003417,0.004749,0.249955,0,0);}
.mb7_c00115{transform:matrix(0.179943,-0.003419,0.004749,0.249955,0,0);-ms-transform:matrix(0.179943,-0.003419,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179943,-0.003419,0.004749,0.249955,0,0);}
.m8f_c00115{transform:matrix(0.180517,-0.003430,0.004749,0.249955,0,0);-ms-transform:matrix(0.180517,-0.003430,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180517,-0.003430,0.004749,0.249955,0,0);}
.ma1_c00115{transform:matrix(0.180792,-0.003435,0.004749,0.249955,0,0);-ms-transform:matrix(0.180792,-0.003435,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180792,-0.003435,0.004749,0.249955,0,0);}
.mc_c00115{transform:matrix(0.180947,-0.003438,0.004749,0.249955,0,0);-ms-transform:matrix(0.180947,-0.003438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180947,-0.003438,0.004749,0.249955,0,0);}
.m72_c00115{transform:matrix(0.181047,-0.003440,0.004749,0.249955,0,0);-ms-transform:matrix(0.181047,-0.003440,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181047,-0.003440,0.004749,0.249955,0,0);}
.md6_c00115{transform:matrix(0.181207,-0.003443,0.004749,0.249955,0,0);-ms-transform:matrix(0.181207,-0.003443,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181207,-0.003443,0.004749,0.249955,0,0);}
.m3b_c00115{transform:matrix(0.181932,-0.003457,0.004749,0.249955,0,0);-ms-transform:matrix(0.181932,-0.003457,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181932,-0.003457,0.004749,0.249955,0,0);}
.m48_c00115{transform:matrix(0.182027,-0.003459,0.004749,0.249955,0,0);-ms-transform:matrix(0.182027,-0.003459,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182027,-0.003459,0.004749,0.249955,0,0);}
.m9b_c00115{transform:matrix(0.182382,-0.003465,0.004749,0.249955,0,0);-ms-transform:matrix(0.182382,-0.003465,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182382,-0.003465,0.004749,0.249955,0,0);}
.m27_c00115{transform:matrix(0.182842,-0.003474,0.004749,0.249955,0,0);-ms-transform:matrix(0.182842,-0.003474,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182842,-0.003474,0.004749,0.249955,0,0);}
.mb8_c00115{transform:matrix(0.182917,-0.003475,0.004749,0.249955,0,0);-ms-transform:matrix(0.182917,-0.003475,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182917,-0.003475,0.004749,0.249955,0,0);}
.mbb_c00115{transform:matrix(0.183007,-0.003477,0.004749,0.249955,0,0);-ms-transform:matrix(0.183007,-0.003477,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183007,-0.003477,0.004749,0.249955,0,0);}
.mac_c00115{transform:matrix(0.183132,-0.003480,0.004749,0.249955,0,0);-ms-transform:matrix(0.183132,-0.003480,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183132,-0.003480,0.004749,0.249955,0,0);}
.mef_c00115{transform:matrix(0.183357,-0.003484,0.004749,0.249955,0,0);-ms-transform:matrix(0.183357,-0.003484,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183357,-0.003484,0.004749,0.249955,0,0);}
.med_c00115{transform:matrix(0.183752,-0.003491,0.004749,0.249955,0,0);-ms-transform:matrix(0.183752,-0.003491,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183752,-0.003491,0.004749,0.249955,0,0);}
.md5_c00115{transform:matrix(0.183777,-0.003492,0.004749,0.249955,0,0);-ms-transform:matrix(0.183777,-0.003492,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183777,-0.003492,0.004749,0.249955,0,0);}
.m4_c00115{transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);}
.mbe_c00115{transform:matrix(0.184792,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184792,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184792,-0.003511,0.004749,0.249955,0,0);}
.m60_c00115{transform:matrix(0.184832,-0.003512,0.004749,0.249955,0,0);-ms-transform:matrix(0.184832,-0.003512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184832,-0.003512,0.004749,0.249955,0,0);}
.m6d_c00115{transform:matrix(0.184857,-0.003512,0.004749,0.249955,0,0);-ms-transform:matrix(0.184857,-0.003512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184857,-0.003512,0.004749,0.249955,0,0);}
.m3f_c00115{transform:matrix(0.184912,-0.003513,0.004749,0.249955,0,0);-ms-transform:matrix(0.184912,-0.003513,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184912,-0.003513,0.004749,0.249955,0,0);}
.m21_c00115{transform:matrix(0.185157,-0.003518,0.004749,0.249955,0,0);-ms-transform:matrix(0.185157,-0.003518,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185157,-0.003518,0.004749,0.249955,0,0);}
.m4a_c00115{transform:matrix(0.185911,-0.003532,0.004749,0.249955,0,0);-ms-transform:matrix(0.185911,-0.003532,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185911,-0.003532,0.004749,0.249955,0,0);}
.m13_c00115{transform:matrix(0.186061,-0.003535,0.004749,0.249955,0,0);-ms-transform:matrix(0.186061,-0.003535,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186061,-0.003535,0.004749,0.249955,0,0);}
.mdc_c00115{transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);-ms-transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186551,-0.003544,0.004749,0.249955,0,0);}
.m84_c00115{transform:matrix(0.186801,-0.003549,0.004749,0.249955,0,0);-ms-transform:matrix(0.186801,-0.003549,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186801,-0.003549,0.004749,0.249955,0,0);}
.mbd_c00115{transform:matrix(0.186906,-0.003551,0.004749,0.249955,0,0);-ms-transform:matrix(0.186906,-0.003551,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186906,-0.003551,0.004749,0.249955,0,0);}
.m12_c00115{transform:matrix(0.187226,-0.003557,0.004749,0.249955,0,0);-ms-transform:matrix(0.187226,-0.003557,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187226,-0.003557,0.004749,0.249955,0,0);}
.m5d_c00115{transform:matrix(0.187756,-0.003567,0.004749,0.249955,0,0);-ms-transform:matrix(0.187756,-0.003567,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187756,-0.003567,0.004749,0.249955,0,0);}
.mc2_c00115{transform:matrix(0.187916,-0.003570,0.004749,0.249955,0,0);-ms-transform:matrix(0.187916,-0.003570,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187916,-0.003570,0.004749,0.249955,0,0);}
.m7b_c00115{transform:matrix(0.187956,-0.003571,0.004749,0.249955,0,0);-ms-transform:matrix(0.187956,-0.003571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187956,-0.003571,0.004749,0.249955,0,0);}
.me7_c00115{transform:matrix(0.188261,-0.003577,0.004749,0.249955,0,0);-ms-transform:matrix(0.188261,-0.003577,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188261,-0.003577,0.004749,0.249955,0,0);}
.m1c_c00115{transform:matrix(0.188366,-0.003579,0.004749,0.249955,0,0);-ms-transform:matrix(0.188366,-0.003579,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188366,-0.003579,0.004749,0.249955,0,0);}
.mc7_c00115{transform:matrix(0.189316,-0.003597,0.004749,0.249955,0,0);-ms-transform:matrix(0.189316,-0.003597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189316,-0.003597,0.004749,0.249955,0,0);}
.m89_c00115{transform:matrix(0.189361,-0.003598,0.004749,0.249955,0,0);-ms-transform:matrix(0.189361,-0.003598,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189361,-0.003598,0.004749,0.249955,0,0);}
.m4b_c00115{transform:matrix(0.189796,-0.003606,0.004749,0.249955,0,0);-ms-transform:matrix(0.189796,-0.003606,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189796,-0.003606,0.004749,0.249955,0,0);}
.me_c00115{transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);-ms-transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);}
.m23_c00115{transform:matrix(0.190491,-0.003619,0.004749,0.249955,0,0);-ms-transform:matrix(0.190491,-0.003619,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190491,-0.003619,0.004749,0.249955,0,0);}
.m9f_c00115{transform:matrix(0.190621,-0.003622,0.004749,0.249955,0,0);-ms-transform:matrix(0.190621,-0.003622,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190621,-0.003622,0.004749,0.249955,0,0);}
.me5_c00115{transform:matrix(0.190916,-0.003627,0.004749,0.249955,0,0);-ms-transform:matrix(0.190916,-0.003627,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190916,-0.003627,0.004749,0.249955,0,0);}
.md8_c00115{transform:matrix(0.191225,-0.003633,0.004749,0.249955,0,0);-ms-transform:matrix(0.191225,-0.003633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191225,-0.003633,0.004749,0.249955,0,0);}
.m2_c00115{transform:matrix(0.191250,-0.003634,0.004749,0.249955,0,0);-ms-transform:matrix(0.191250,-0.003634,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191250,-0.003634,0.004749,0.249955,0,0);}
.m5c_c00115{transform:matrix(0.191345,-0.003636,0.004749,0.249955,0,0);-ms-transform:matrix(0.191345,-0.003636,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191345,-0.003636,0.004749,0.249955,0,0);}
.m75_c00115{transform:matrix(0.191675,-0.003642,0.004749,0.249955,0,0);-ms-transform:matrix(0.191675,-0.003642,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191675,-0.003642,0.004749,0.249955,0,0);}
.m5b_c00115{transform:matrix(0.191720,-0.003643,0.004749,0.249955,0,0);-ms-transform:matrix(0.191720,-0.003643,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191720,-0.003643,0.004749,0.249955,0,0);}
.m65_c00115{transform:matrix(0.192345,-0.003655,0.004749,0.249955,0,0);-ms-transform:matrix(0.192345,-0.003655,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192345,-0.003655,0.004749,0.249955,0,0);}
.me3_c00115{transform:matrix(0.192835,-0.003664,0.004749,0.249955,0,0);-ms-transform:matrix(0.192835,-0.003664,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192835,-0.003664,0.004749,0.249955,0,0);}
.m3e_c00115{transform:matrix(0.192950,-0.003666,0.004749,0.249955,0,0);-ms-transform:matrix(0.192950,-0.003666,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192950,-0.003666,0.004749,0.249955,0,0);}
.mcd_c00115{transform:matrix(0.193945,-0.003685,0.004749,0.249955,0,0);-ms-transform:matrix(0.193945,-0.003685,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193945,-0.003685,0.004749,0.249955,0,0);}
.m85_c00115{transform:matrix(0.194190,-0.003690,0.004749,0.249955,0,0);-ms-transform:matrix(0.194190,-0.003690,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194190,-0.003690,0.004749,0.249955,0,0);}
.mdf_c00115{transform:matrix(0.194995,-0.003705,0.004749,0.249955,0,0);-ms-transform:matrix(0.194995,-0.003705,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194995,-0.003705,0.004749,0.249955,0,0);}
.mf7_c00115{transform:matrix(0.195105,-0.003707,0.004749,0.249955,0,0);-ms-transform:matrix(0.195105,-0.003707,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195105,-0.003707,0.004749,0.249955,0,0);}
.mc5_c00115{transform:matrix(0.195290,-0.003711,0.004749,0.249955,0,0);-ms-transform:matrix(0.195290,-0.003711,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195290,-0.003711,0.004749,0.249955,0,0);}
.m96_c00115{transform:matrix(0.195325,-0.003711,0.004749,0.249955,0,0);-ms-transform:matrix(0.195325,-0.003711,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195325,-0.003711,0.004749,0.249955,0,0);}
.mc9_c00115{transform:matrix(0.195655,-0.003717,0.004749,0.249955,0,0);-ms-transform:matrix(0.195655,-0.003717,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195655,-0.003717,0.004749,0.249955,0,0);}
.md7_c00115{transform:matrix(0.195740,-0.003719,0.004749,0.249955,0,0);-ms-transform:matrix(0.195740,-0.003719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195740,-0.003719,0.004749,0.249955,0,0);}
.m25_c00115{transform:matrix(0.195900,-0.003722,0.004749,0.249955,0,0);-ms-transform:matrix(0.195900,-0.003722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195900,-0.003722,0.004749,0.249955,0,0);}
.m59_c00115{transform:matrix(0.196340,-0.003730,0.004749,0.249955,0,0);-ms-transform:matrix(0.196340,-0.003730,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196340,-0.003730,0.004749,0.249955,0,0);}
.mc8_c00115{transform:matrix(0.197194,-0.003747,0.004749,0.249955,0,0);-ms-transform:matrix(0.197194,-0.003747,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197194,-0.003747,0.004749,0.249955,0,0);}
.me8_c00115{transform:matrix(0.197214,-0.003747,0.004749,0.249955,0,0);-ms-transform:matrix(0.197214,-0.003747,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197214,-0.003747,0.004749,0.249955,0,0);}
.me9_c00115{transform:matrix(0.197429,-0.003751,0.004749,0.249955,0,0);-ms-transform:matrix(0.197429,-0.003751,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197429,-0.003751,0.004749,0.249955,0,0);}
.m57_c00115{transform:matrix(0.197544,-0.003753,0.004749,0.249955,0,0);-ms-transform:matrix(0.197544,-0.003753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197544,-0.003753,0.004749,0.249955,0,0);}
.m41_c00115{transform:matrix(0.197904,-0.003760,0.004749,0.249955,0,0);-ms-transform:matrix(0.197904,-0.003760,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197904,-0.003760,0.004749,0.249955,0,0);}
.ma3_c00115{transform:matrix(0.197934,-0.003761,0.004749,0.249955,0,0);-ms-transform:matrix(0.197934,-0.003761,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197934,-0.003761,0.004749,0.249955,0,0);}
.m54_c00115{transform:matrix(0.198494,-0.003771,0.004749,0.249955,0,0);-ms-transform:matrix(0.198494,-0.003771,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198494,-0.003771,0.004749,0.249955,0,0);}
.m69_c00115{transform:matrix(0.199079,-0.003783,0.004749,0.249955,0,0);-ms-transform:matrix(0.199079,-0.003783,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199079,-0.003783,0.004749,0.249955,0,0);}
.mae_c00115{transform:matrix(0.199464,-0.003790,0.004749,0.249955,0,0);-ms-transform:matrix(0.199464,-0.003790,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199464,-0.003790,0.004749,0.249955,0,0);}
.mde_c00115{transform:matrix(0.199494,-0.003790,0.004749,0.249955,0,0);-ms-transform:matrix(0.199494,-0.003790,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199494,-0.003790,0.004749,0.249955,0,0);}
.mc1_c00115{transform:matrix(0.199579,-0.003792,0.004749,0.249955,0,0);-ms-transform:matrix(0.199579,-0.003792,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199579,-0.003792,0.004749,0.249955,0,0);}
.mf9_c00115{transform:matrix(0.199734,-0.003795,0.004749,0.249955,0,0);-ms-transform:matrix(0.199734,-0.003795,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199734,-0.003795,0.004749,0.249955,0,0);}
.m20_c00115{transform:matrix(0.200229,-0.003804,0.004749,0.249955,0,0);-ms-transform:matrix(0.200229,-0.003804,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200229,-0.003804,0.004749,0.249955,0,0);}
.mf8_c00115{transform:matrix(0.200654,-0.003812,0.004749,0.249955,0,0);-ms-transform:matrix(0.200654,-0.003812,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200654,-0.003812,0.004749,0.249955,0,0);}
.m5_c00115{transform:matrix(0.200794,-0.003815,0.004749,0.249955,0,0);-ms-transform:matrix(0.200794,-0.003815,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200794,-0.003815,0.004749,0.249955,0,0);}
.me1_c00115{transform:matrix(0.201339,-0.003825,0.004749,0.249955,0,0);-ms-transform:matrix(0.201339,-0.003825,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201339,-0.003825,0.004749,0.249955,0,0);}
.mf4_c00115{transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);-ms-transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201809,-0.003834,0.004749,0.249955,0,0);}
.m74_c00115{transform:matrix(0.202154,-0.003841,0.004749,0.249955,0,0);-ms-transform:matrix(0.202154,-0.003841,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202154,-0.003841,0.004749,0.249955,0,0);}
.m7e_c00115{transform:matrix(0.202243,-0.003843,0.004749,0.249955,0,0);-ms-transform:matrix(0.202243,-0.003843,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202243,-0.003843,0.004749,0.249955,0,0);}
.m34_c00115{transform:matrix(0.202358,-0.003845,0.004749,0.249955,0,0);-ms-transform:matrix(0.202358,-0.003845,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202358,-0.003845,0.004749,0.249955,0,0);}
.mc4_c00115{transform:matrix(0.202363,-0.003845,0.004749,0.249955,0,0);-ms-transform:matrix(0.202363,-0.003845,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202363,-0.003845,0.004749,0.249955,0,0);}
.m26_c00115{transform:matrix(0.202488,-0.003847,0.004749,0.249955,0,0);-ms-transform:matrix(0.202488,-0.003847,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202488,-0.003847,0.004749,0.249955,0,0);}
.maa_c00115{transform:matrix(0.202568,-0.003849,0.004749,0.249955,0,0);-ms-transform:matrix(0.202568,-0.003849,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202568,-0.003849,0.004749,0.249955,0,0);}
.mf0_c00115{transform:matrix(0.203163,-0.003860,0.004749,0.249955,0,0);-ms-transform:matrix(0.203163,-0.003860,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203163,-0.003860,0.004749,0.249955,0,0);}
.m3c_c00115{transform:matrix(0.203323,-0.003863,0.004749,0.249955,0,0);-ms-transform:matrix(0.203323,-0.003863,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203323,-0.003863,0.004749,0.249955,0,0);}
.m2e_c00115{transform:matrix(0.203633,-0.003869,0.004749,0.249955,0,0);-ms-transform:matrix(0.203633,-0.003869,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203633,-0.003869,0.004749,0.249955,0,0);}
.m9e_c00115{transform:matrix(0.203953,-0.003875,0.004749,0.249955,0,0);-ms-transform:matrix(0.203953,-0.003875,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203953,-0.003875,0.004749,0.249955,0,0);}
.m50_c00115{transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);-ms-transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);}
.m15_c00115{transform:matrix(0.204628,-0.003888,0.004749,0.249955,0,0);-ms-transform:matrix(0.204628,-0.003888,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204628,-0.003888,0.004749,0.249955,0,0);}
.mc3_c00115{transform:matrix(0.204873,-0.003893,0.004749,0.249955,0,0);-ms-transform:matrix(0.204873,-0.003893,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204873,-0.003893,0.004749,0.249955,0,0);}
.mb4_c00115{transform:matrix(0.204888,-0.003893,0.004749,0.249955,0,0);-ms-transform:matrix(0.204888,-0.003893,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204888,-0.003893,0.004749,0.249955,0,0);}
.m1f_c00115{transform:matrix(0.205078,-0.003896,0.004749,0.249955,0,0);-ms-transform:matrix(0.205078,-0.003896,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205078,-0.003896,0.004749,0.249955,0,0);}
.m1_c00115{transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);}
.mee_c00115{transform:matrix(0.205943,-0.003913,0.004749,0.249955,0,0);-ms-transform:matrix(0.205943,-0.003913,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205943,-0.003913,0.004749,0.249955,0,0);}
.mb0_c00115{transform:matrix(0.206153,-0.003917,0.004749,0.249955,0,0);-ms-transform:matrix(0.206153,-0.003917,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206153,-0.003917,0.004749,0.249955,0,0);}
.m47_c00115{transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);-ms-transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);}
.m70_c00115{transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);-ms-transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);}
.m8_c00115{transform:matrix(0.206413,-0.003922,0.004749,0.249955,0,0);-ms-transform:matrix(0.206413,-0.003922,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206413,-0.003922,0.004749,0.249955,0,0);}
.m22_c00115{transform:matrix(0.206478,-0.003923,0.004749,0.249955,0,0);-ms-transform:matrix(0.206478,-0.003923,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206478,-0.003923,0.004749,0.249955,0,0);}
.m2b_c00115{transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);-ms-transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);}
.m2a_c00115{transform:matrix(0.206563,-0.003925,0.004749,0.249955,0,0);-ms-transform:matrix(0.206563,-0.003925,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206563,-0.003925,0.004749,0.249955,0,0);}
.m9a_c00115{transform:matrix(0.206733,-0.003928,0.004749,0.249955,0,0);-ms-transform:matrix(0.206733,-0.003928,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206733,-0.003928,0.004749,0.249955,0,0);}
.mb2_c00115{transform:matrix(0.206978,-0.003933,0.004749,0.249955,0,0);-ms-transform:matrix(0.206978,-0.003933,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206978,-0.003933,0.004749,0.249955,0,0);}
.m8b_c00115{transform:matrix(0.207723,-0.003947,0.004749,0.249955,0,0);-ms-transform:matrix(0.207723,-0.003947,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207723,-0.003947,0.004749,0.249955,0,0);}
.mab_c00115{transform:matrix(0.208347,-0.003959,0.004749,0.249955,0,0);-ms-transform:matrix(0.208347,-0.003959,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208347,-0.003959,0.004749,0.249955,0,0);}
.m87_c00115{transform:matrix(0.208582,-0.003963,0.004749,0.249955,0,0);-ms-transform:matrix(0.208582,-0.003963,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208582,-0.003963,0.004749,0.249955,0,0);}
.ma9_c00115{transform:matrix(0.208672,-0.003965,0.004749,0.249955,0,0);-ms-transform:matrix(0.208672,-0.003965,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208672,-0.003965,0.004749,0.249955,0,0);}
.m8a_c00115{transform:matrix(0.209102,-0.003973,0.004749,0.249955,0,0);-ms-transform:matrix(0.209102,-0.003973,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209102,-0.003973,0.004749,0.249955,0,0);}
.m38_c00115{transform:matrix(0.209107,-0.003973,0.004749,0.249955,0,0);-ms-transform:matrix(0.209107,-0.003973,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209107,-0.003973,0.004749,0.249955,0,0);}
.mcb_c00115{transform:matrix(0.209647,-0.003983,0.004749,0.249955,0,0);-ms-transform:matrix(0.209647,-0.003983,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209647,-0.003983,0.004749,0.249955,0,0);}
.m3d_c00115{transform:matrix(0.209887,-0.003988,0.004749,0.249955,0,0);-ms-transform:matrix(0.209887,-0.003988,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209887,-0.003988,0.004749,0.249955,0,0);}
.m42_c00115{transform:matrix(0.209892,-0.003988,0.004749,0.249955,0,0);-ms-transform:matrix(0.209892,-0.003988,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209892,-0.003988,0.004749,0.249955,0,0);}
.m9c_c00115{transform:matrix(0.210032,-0.003991,0.004749,0.249955,0,0);-ms-transform:matrix(0.210032,-0.003991,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210032,-0.003991,0.004749,0.249955,0,0);}
.mb3_c00115{transform:matrix(0.211007,-0.004009,0.004749,0.249955,0,0);-ms-transform:matrix(0.211007,-0.004009,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211007,-0.004009,0.004749,0.249955,0,0);}
.m9d_c00115{transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);-ms-transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);}
.mec_c00115{transform:matrix(0.212537,-0.004038,0.004749,0.249955,0,0);-ms-transform:matrix(0.212537,-0.004038,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212537,-0.004038,0.004749,0.249955,0,0);}
.m7c_c00115{transform:matrix(0.212742,-0.004042,0.004749,0.249955,0,0);-ms-transform:matrix(0.212742,-0.004042,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212742,-0.004042,0.004749,0.249955,0,0);}
.ma5_c00115{transform:matrix(0.212812,-0.004043,0.004749,0.249955,0,0);-ms-transform:matrix(0.212812,-0.004043,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212812,-0.004043,0.004749,0.249955,0,0);}
.m1d_c00115{transform:matrix(0.212822,-0.004044,0.004749,0.249955,0,0);-ms-transform:matrix(0.212822,-0.004044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212822,-0.004044,0.004749,0.249955,0,0);}
.m2f_c00115{transform:matrix(0.212867,-0.004044,0.004749,0.249955,0,0);-ms-transform:matrix(0.212867,-0.004044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212867,-0.004044,0.004749,0.249955,0,0);}
.m99_c00115{transform:matrix(0.215211,-0.004089,0.004749,0.249955,0,0);-ms-transform:matrix(0.215211,-0.004089,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215211,-0.004089,0.004749,0.249955,0,0);}
.m43_c00115{transform:matrix(0.215241,-0.004090,0.004749,0.249955,0,0);-ms-transform:matrix(0.215241,-0.004090,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215241,-0.004090,0.004749,0.249955,0,0);}
.m49_c00115{transform:matrix(0.215361,-0.004092,0.004749,0.249955,0,0);-ms-transform:matrix(0.215361,-0.004092,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215361,-0.004092,0.004749,0.249955,0,0);}
.m93_c00115{transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);-ms-transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);}
.m86_c00115{transform:matrix(0.215921,-0.004102,0.004749,0.249955,0,0);-ms-transform:matrix(0.215921,-0.004102,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215921,-0.004102,0.004749,0.249955,0,0);}
.m92_c00115{transform:matrix(0.216106,-0.004106,0.004749,0.249955,0,0);-ms-transform:matrix(0.216106,-0.004106,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216106,-0.004106,0.004749,0.249955,0,0);}
.ma4_c00115{transform:matrix(0.216551,-0.004114,0.004749,0.249955,0,0);-ms-transform:matrix(0.216551,-0.004114,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216551,-0.004114,0.004749,0.249955,0,0);}
.ma8_c00115{transform:matrix(0.217151,-0.004126,0.004749,0.249955,0,0);-ms-transform:matrix(0.217151,-0.004126,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217151,-0.004126,0.004749,0.249955,0,0);}
.m97_c00115{transform:matrix(0.217251,-0.004128,0.004749,0.249955,0,0);-ms-transform:matrix(0.217251,-0.004128,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217251,-0.004128,0.004749,0.249955,0,0);}
.mad_c00115{transform:matrix(0.218531,-0.004152,0.004749,0.249955,0,0);-ms-transform:matrix(0.218531,-0.004152,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218531,-0.004152,0.004749,0.249955,0,0);}
.m11_c00115{transform:matrix(0.218676,-0.004155,0.004749,0.249955,0,0);-ms-transform:matrix(0.218676,-0.004155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218676,-0.004155,0.004749,0.249955,0,0);}
.m4d_c00115{transform:matrix(0.218706,-0.004155,0.004749,0.249955,0,0);-ms-transform:matrix(0.218706,-0.004155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218706,-0.004155,0.004749,0.249955,0,0);}
.ma2_c00115{transform:matrix(0.221205,-0.004203,0.004749,0.249955,0,0);-ms-transform:matrix(0.221205,-0.004203,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221205,-0.004203,0.004749,0.249955,0,0);}
.m95_c00115{transform:matrix(0.221215,-0.004203,0.004749,0.249955,0,0);-ms-transform:matrix(0.221215,-0.004203,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221215,-0.004203,0.004749,0.249955,0,0);}
.m6f_c00115{transform:matrix(0.221515,-0.004209,0.004749,0.249955,0,0);-ms-transform:matrix(0.221515,-0.004209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221515,-0.004209,0.004749,0.249955,0,0);}
.ma7_c00115{transform:matrix(0.221545,-0.004209,0.004749,0.249955,0,0);-ms-transform:matrix(0.221545,-0.004209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221545,-0.004209,0.004749,0.249955,0,0);}
.m28_c00115{transform:matrix(0.222335,-0.004224,0.004749,0.249955,0,0);-ms-transform:matrix(0.222335,-0.004224,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222335,-0.004224,0.004749,0.249955,0,0);}
.m63_c00115{transform:matrix(0.223240,-0.004242,0.004749,0.249955,0,0);-ms-transform:matrix(0.223240,-0.004242,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223240,-0.004242,0.004749,0.249955,0,0);}
.m62_c00115{transform:matrix(0.224030,-0.004257,0.004749,0.249955,0,0);-ms-transform:matrix(0.224030,-0.004257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224030,-0.004257,0.004749,0.249955,0,0);}
.m7f_c00115{transform:matrix(0.224120,-0.004258,0.004749,0.249955,0,0);-ms-transform:matrix(0.224120,-0.004258,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224120,-0.004258,0.004749,0.249955,0,0);}
.m8d_c00115{transform:matrix(0.224489,-0.004265,0.004749,0.249955,0,0);-ms-transform:matrix(0.224489,-0.004265,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224489,-0.004265,0.004749,0.249955,0,0);}
.m1e_c00115{transform:matrix(0.224799,-0.004271,0.004749,0.249955,0,0);-ms-transform:matrix(0.224799,-0.004271,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224799,-0.004271,0.004749,0.249955,0,0);}
.m3a_c00115{transform:matrix(0.225139,-0.004278,0.004749,0.249955,0,0);-ms-transform:matrix(0.225139,-0.004278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225139,-0.004278,0.004749,0.249955,0,0);}
.m36_c00115{transform:matrix(0.226349,-0.004301,0.004749,0.249955,0,0);-ms-transform:matrix(0.226349,-0.004301,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226349,-0.004301,0.004749,0.249955,0,0);}
.m90_c00115{transform:matrix(0.227104,-0.004315,0.004749,0.249955,0,0);-ms-transform:matrix(0.227104,-0.004315,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227104,-0.004315,0.004749,0.249955,0,0);}
.m31_c00115{transform:matrix(0.229394,-0.004358,0.004749,0.249955,0,0);-ms-transform:matrix(0.229394,-0.004358,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229394,-0.004358,0.004749,0.249955,0,0);}
.m8e_c00115{transform:matrix(0.230543,-0.004380,0.004749,0.249955,0,0);-ms-transform:matrix(0.230543,-0.004380,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230543,-0.004380,0.004749,0.249955,0,0);}
.m79_c00115{transform:matrix(0.230823,-0.004386,0.004749,0.249955,0,0);-ms-transform:matrix(0.230823,-0.004386,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230823,-0.004386,0.004749,0.249955,0,0);}
.maf_c00115{transform:matrix(0.233063,-0.004428,0.004749,0.249955,0,0);-ms-transform:matrix(0.233063,-0.004428,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233063,-0.004428,0.004749,0.249955,0,0);}
.me4_c00115{transform:matrix(0.233998,-0.004446,0.004749,0.249955,0,0);-ms-transform:matrix(0.233998,-0.004446,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233998,-0.004446,0.004749,0.249955,0,0);}
.m78_c00115{transform:matrix(0.234913,-0.004463,0.004749,0.249955,0,0);-ms-transform:matrix(0.234913,-0.004463,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234913,-0.004463,0.004749,0.249955,0,0);}
.m98_c00115{transform:matrix(0.236137,-0.004487,0.004749,0.249955,0,0);-ms-transform:matrix(0.236137,-0.004487,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236137,-0.004487,0.004749,0.249955,0,0);}
.m64_c00115{transform:matrix(0.238077,-0.004523,0.004749,0.249955,0,0);-ms-transform:matrix(0.238077,-0.004523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238077,-0.004523,0.004749,0.249955,0,0);}
.m39_c00115{transform:matrix(0.238897,-0.004539,0.004749,0.249955,0,0);-ms-transform:matrix(0.238897,-0.004539,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238897,-0.004539,0.004749,0.249955,0,0);}
.m1a_c00115{transform:matrix(0.239332,-0.004547,0.004749,0.249955,0,0);-ms-transform:matrix(0.239332,-0.004547,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239332,-0.004547,0.004749,0.249955,0,0);}
.md4_c00115{transform:matrix(0.240777,-0.004575,0.004749,0.249955,0,0);-ms-transform:matrix(0.240777,-0.004575,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240777,-0.004575,0.004749,0.249955,0,0);}
.m30_c00115{transform:matrix(0.240902,-0.004577,0.004749,0.249955,0,0);-ms-transform:matrix(0.240902,-0.004577,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240902,-0.004577,0.004749,0.249955,0,0);}
.meb_c00115{transform:matrix(0.241246,-0.004584,0.004749,0.249955,0,0);-ms-transform:matrix(0.241246,-0.004584,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241246,-0.004584,0.004749,0.249955,0,0);}
.m71_c00115{transform:matrix(0.242461,-0.004607,0.004749,0.249955,0,0);-ms-transform:matrix(0.242461,-0.004607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242461,-0.004607,0.004749,0.249955,0,0);}
.m88_c00115{transform:matrix(0.244806,-0.004651,0.004749,0.249955,0,0);-ms-transform:matrix(0.244806,-0.004651,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244806,-0.004651,0.004749,0.249955,0,0);}
.m77_c00115{transform:matrix(0.249445,-0.004739,0.004749,0.249955,0,0);-ms-transform:matrix(0.249445,-0.004739,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249445,-0.004739,0.004749,0.249955,0,0);}
.mf2_c00115{transform:matrix(0.250105,-0.004752,0.004749,0.249955,0,0);-ms-transform:matrix(0.250105,-0.004752,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250105,-0.004752,0.004749,0.249955,0,0);}
.mfa_c00115{transform:matrix(0.251355,-0.004776,0.004749,0.249955,0,0);-ms-transform:matrix(0.251355,-0.004776,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251355,-0.004776,0.004749,0.249955,0,0);}
.m37_c00115{transform:matrix(0.254369,-0.004833,0.004749,0.249955,0,0);-ms-transform:matrix(0.254369,-0.004833,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254369,-0.004833,0.004749,0.249955,0,0);}
.md3_c00115{transform:matrix(0.255429,-0.004853,0.004749,0.249955,0,0);-ms-transform:matrix(0.255429,-0.004853,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255429,-0.004853,0.004749,0.249955,0,0);}
.mf5_c00115{transform:matrix(0.261768,-0.004974,0.004749,0.249955,0,0);-ms-transform:matrix(0.261768,-0.004974,0.004749,0.249955,0,0);-webkit-transform:matrix(0.261768,-0.004974,0.004749,0.249955,0,0);}
.m1b_c00115{transform:matrix(0.273936,-0.005205,0.004749,0.249955,0,0);-ms-transform:matrix(0.273936,-0.005205,0.004749,0.249955,0,0);-webkit-transform:matrix(0.273936,-0.005205,0.004749,0.249955,0,0);}
.m5e_c00115{transform:matrix(0.279270,-0.005306,0.004749,0.249955,0,0);-ms-transform:matrix(0.279270,-0.005306,0.004749,0.249955,0,0);-webkit-transform:matrix(0.279270,-0.005306,0.004749,0.249955,0,0);}
.mcc_c00115{transform:matrix(0.286853,-0.005450,0.004749,0.249955,0,0);-ms-transform:matrix(0.286853,-0.005450,0.004749,0.249955,0,0);-webkit-transform:matrix(0.286853,-0.005450,0.004749,0.249955,0,0);}
.m14_c00115{transform:matrix(0.287438,-0.005461,0.004749,0.249955,0,0);-ms-transform:matrix(0.287438,-0.005461,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287438,-0.005461,0.004749,0.249955,0,0);}
.mf6_c00115{transform:matrix(0.355386,-0.006752,0.004749,0.249955,0,0);-ms-transform:matrix(0.355386,-0.006752,0.004749,0.249955,0,0);-webkit-transform:matrix(0.355386,-0.006752,0.004749,0.249955,0,0);}
.m33_c00115{transform:matrix(0.398348,-0.007569,0.004749,0.249955,0,0);-ms-transform:matrix(0.398348,-0.007569,0.004749,0.249955,0,0);-webkit-transform:matrix(0.398348,-0.007569,0.004749,0.249955,0,0);}
.mf1_c00115{transform:matrix(0.435451,-0.008274,0.004749,0.249955,0,0);-ms-transform:matrix(0.435451,-0.008274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.435451,-0.008274,0.004749,0.249955,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:0.000000px;}
.fc0_c00115{color:transparent;}
.fsd_c00115{font-size:59.860802px;}
.fsc_c00115{font-size:60.910991px;}
.fs8_c00115{font-size:61.961181px;}
.fs0_c00115{font-size:63.000000px;}
.fs7_c00115{font-size:63.011370px;}
.fs4_c00115{font-size:64.061560px;}
.fs5_c00115{font-size:65.111749px;}
.fs6_c00115{font-size:66.161939px;}
.fsa_c00115{font-size:67.212129px;}
.fse_c00115{font-size:68.262318px;}
.fs9_c00115{font-size:69.312508px;}
.fsb_c00115{font-size:70.362697px;}
.fs3_c00115{font-size:71.412887px;}
.fs1_c00115{font-size:73.513266px;}
.fs2_c00115{font-size:75.613645px;}
.y0_c00115{bottom:0.000000px;}
.y103_c00115{bottom:32.244193px;}
.y101_c00115{bottom:32.244513px;}
.y102_c00115{bottom:32.244666px;}
.yff_c00115{bottom:32.244712px;}
.y104_c00115{bottom:32.244768px;}
.y100_c00115{bottom:32.244895px;}
.yfd_c00115{bottom:32.245084px;}
.yfe_c00115{bottom:32.245419px;}
.yfc_c00115{bottom:32.245800px;}
.yf3_c00115{bottom:48.777877px;}
.yf4_c00115{bottom:49.093401px;}
.yf5_c00115{bottom:49.576528px;}
.yf6_c00115{bottom:49.992090px;}
.yf7_c00115{bottom:50.153734px;}
.yf8_c00115{bottom:50.622813px;}
.yf9_c00115{bottom:50.888022px;}
.yfa_c00115{bottom:51.479608px;}
.yfb_c00115{bottom:51.601557px;}
.yec_c00115{bottom:65.520087px;}
.yed_c00115{bottom:65.824633px;}
.yee_c00115{bottom:66.051562px;}
.yef_c00115{bottom:66.979141px;}
.yf0_c00115{bottom:67.407102px;}
.yf1_c00115{bottom:68.164794px;}
.yf2_c00115{bottom:68.431353px;}
.yea_c00115{bottom:84.403330px;}
.ye8_c00115{bottom:84.403443px;}
.yeb_c00115{bottom:84.403521px;}
.ye7_c00115{bottom:84.403615px;}
.ye9_c00115{bottom:84.403626px;}
.ye6_c00115{bottom:84.403905px;}
.ye3_c00115{bottom:84.404245px;}
.ye5_c00115{bottom:84.404349px;}
.ye4_c00115{bottom:84.404733px;}
.ydb_c00115{bottom:102.189949px;}
.yde_c00115{bottom:102.190146px;}
.ydc_c00115{bottom:102.190374px;}
.ydd_c00115{bottom:102.190440px;}
.ydf_c00115{bottom:102.190455px;}
.ye1_c00115{bottom:102.190533px;}
.ye2_c00115{bottom:102.190687px;}
.ye0_c00115{bottom:102.190710px;}
.yd2_c00115{bottom:117.907597px;}
.yd3_c00115{bottom:118.629118px;}
.yd4_c00115{bottom:118.882069px;}
.yd5_c00115{bottom:119.248588px;}
.yd6_c00115{bottom:119.880184px;}
.yd7_c00115{bottom:120.195108px;}
.yd8_c00115{bottom:120.759826px;}
.yd9_c00115{bottom:120.993342px;}
.yda_c00115{bottom:121.207137px;}
.yca_c00115{bottom:135.461014px;}
.ycb_c00115{bottom:135.973098px;}
.ycc_c00115{bottom:136.290723px;}
.ycd_c00115{bottom:136.880179px;}
.yce_c00115{bottom:137.786121px;}
.ycf_c00115{bottom:138.326695px;}
.yd0_c00115{bottom:138.575311px;}
.yd1_c00115{bottom:139.193943px;}
.yc3_c00115{bottom:155.150886px;}
.yc4_c00115{bottom:155.151135px;}
.yc7_c00115{bottom:155.151577px;}
.yc5_c00115{bottom:155.151619px;}
.yc6_c00115{bottom:155.151631px;}
.yc8_c00115{bottom:155.151742px;}
.yc9_c00115{bottom:155.152465px;}
.ybb_c00115{bottom:171.647110px;}
.ybc_c00115{bottom:171.911550px;}
.ybd_c00115{bottom:172.394877px;}
.ybe_c00115{bottom:172.947814px;}
.ybf_c00115{bottom:173.320267px;}
.yc0_c00115{bottom:173.829726px;}
.yc1_c00115{bottom:174.140059px;}
.yc2_c00115{bottom:174.326343px;}
.yb3_c00115{bottom:191.610423px;}
.yb4_c00115{bottom:191.610670px;}
.yb5_c00115{bottom:191.610684px;}
.yb7_c00115{bottom:191.610879px;}
.yb6_c00115{bottom:191.611077px;}
.yb8_c00115{bottom:191.611180px;}
.yb9_c00115{bottom:191.611183px;}
.yba_c00115{bottom:191.611909px;}
.yab_c00115{bottom:208.102093px;}
.yac_c00115{bottom:208.459062px;}
.yad_c00115{bottom:208.705027px;}
.yae_c00115{bottom:209.468982px;}
.yaf_c00115{bottom:209.919552px;}
.yb0_c00115{bottom:210.289483px;}
.yb1_c00115{bottom:211.067199px;}
.yb2_c00115{bottom:211.242760px;}
.ya2_c00115{bottom:225.383466px;}
.ya3_c00115{bottom:226.149445px;}
.ya4_c00115{bottom:226.420386px;}
.ya5_c00115{bottom:226.659901px;}
.ya6_c00115{bottom:226.798143px;}
.ya7_c00115{bottom:227.228085px;}
.ya8_c00115{bottom:227.382666px;}
.ya9_c00115{bottom:227.990602px;}
.yaa_c00115{bottom:228.188406px;}
.y9f_c00115{bottom:244.570075px;}
.ya0_c00115{bottom:244.570387px;}
.ya1_c00115{bottom:244.570690px;}
.y9e_c00115{bottom:244.570792px;}
.y9b_c00115{bottom:244.570879px;}
.y9c_c00115{bottom:244.571308px;}
.y9d_c00115{bottom:244.571472px;}
.y9a_c00115{bottom:262.091256px;}
.y95_c00115{bottom:262.091460px;}
.y97_c00115{bottom:262.091473px;}
.y98_c00115{bottom:262.091569px;}
.y99_c00115{bottom:262.091577px;}
.y96_c00115{bottom:262.091650px;}
.y94_c00115{bottom:262.092087px;}
.y93_c00115{bottom:262.092139px;}
.y92_c00115{bottom:262.092706px;}
.y90_c00115{bottom:279.648232px;}
.y91_c00115{bottom:279.648544px;}
.y8f_c00115{bottom:279.648618px;}
.y8d_c00115{bottom:279.649143px;}
.y8e_c00115{bottom:279.649153px;}
.y8c_c00115{bottom:279.649675px;}
.y8b_c00115{bottom:279.649912px;}
.y8a_c00115{bottom:279.650533px;}
.y82_c00115{bottom:295.329574px;}
.y83_c00115{bottom:295.669897px;}
.y84_c00115{bottom:296.131456px;}
.y85_c00115{bottom:296.333320px;}
.y86_c00115{bottom:296.530782px;}
.y87_c00115{bottom:297.340839px;}
.y88_c00115{bottom:298.070211px;}
.y89_c00115{bottom:298.229422px;}
.y7a_c00115{bottom:312.613638px;}
.y7b_c00115{bottom:312.847765px;}
.y7c_c00115{bottom:313.293151px;}
.y7d_c00115{bottom:313.547277px;}
.y7e_c00115{bottom:313.839828px;}
.y7f_c00115{bottom:314.671414px;}
.y80_c00115{bottom:314.816484px;}
.y81_c00115{bottom:315.069676px;}
.y70_c00115{bottom:329.360088px;}
.y71_c00115{bottom:330.253642px;}
.y72_c00115{bottom:330.490153px;}
.y73_c00115{bottom:330.778957px;}
.y74_c00115{bottom:331.123236px;}
.y75_c00115{bottom:331.552917px;}
.y76_c00115{bottom:332.031289px;}
.y77_c00115{bottom:332.733651px;}
.y78_c00115{bottom:333.086347px;}
.y79_c00115{bottom:334.412860px;}
.y66_c00115{bottom:347.181703px;}
.y67_c00115{bottom:347.737813px;}
.y68_c00115{bottom:348.290350px;}
.y69_c00115{bottom:348.585747px;}
.y6a_c00115{bottom:349.462482px;}
.y6b_c00115{bottom:349.640574px;}
.y6c_c00115{bottom:349.874605px;}
.y6d_c00115{bottom:350.214834px;}
.y6e_c00115{bottom:350.448723px;}
.y6f_c00115{bottom:351.257071px;}
.y5e_c00115{bottom:365.280106px;}
.y5f_c00115{bottom:365.824710px;}
.y60_c00115{bottom:366.054883px;}
.y61_c00115{bottom:366.503770px;}
.y62_c00115{bottom:366.905061px;}
.y63_c00115{bottom:367.558608px;}
.y64_c00115{bottom:367.837699px;}
.y65_c00115{bottom:368.726550px;}
.y56_c00115{bottom:383.638939px;}
.y57_c00115{bottom:384.020155px;}
.y58_c00115{bottom:384.322485px;}
.y59_c00115{bottom:384.500736px;}
.y5a_c00115{bottom:385.067950px;}
.y5b_c00115{bottom:385.304805px;}
.y5c_c00115{bottom:386.112532px;}
.y5d_c00115{bottom:386.302246px;}
.y50_c00115{bottom:402.680412px;}
.y4f_c00115{bottom:402.680556px;}
.y4e_c00115{bottom:402.680791px;}
.y51_c00115{bottom:402.680863px;}
.y52_c00115{bottom:402.681288px;}
.y53_c00115{bottom:402.681294px;}
.y4d_c00115{bottom:402.681322px;}
.y55_c00115{bottom:402.681432px;}
.y54_c00115{bottom:402.681606px;}
.y44_c00115{bottom:418.473888px;}
.y45_c00115{bottom:418.806520px;}
.y46_c00115{bottom:419.195712px;}
.y47_c00115{bottom:419.378754px;}
.y48_c00115{bottom:419.798259px;}
.y49_c00115{bottom:420.003411px;}
.y4a_c00115{bottom:420.359571px;}
.y4b_c00115{bottom:420.584418px;}
.y4c_c00115{bottom:421.273096px;}
.y3e_c00115{bottom:436.028943px;}
.y3f_c00115{bottom:436.646187px;}
.y40_c00115{bottom:436.913498px;}
.y41_c00115{bottom:437.390865px;}
.y42_c00115{bottom:437.596216px;}
.y43_c00115{bottom:438.252063px;}
.y38_c00115{bottom:453.311457px;}
.y39_c00115{bottom:454.259455px;}
.y3a_c00115{bottom:454.790298px;}
.y3b_c00115{bottom:455.807100px;}
.y3c_c00115{bottom:456.029764px;}
.y3d_c00115{bottom:456.502077px;}
.y30_c00115{bottom:470.865271px;}
.y31_c00115{bottom:471.672030px;}
.y32_c00115{bottom:471.823807px;}
.y33_c00115{bottom:472.014073px;}
.y34_c00115{bottom:472.528009px;}
.y35_c00115{bottom:472.735548px;}
.y36_c00115{bottom:472.984065px;}
.y37_c00115{bottom:473.753229px;}
.y28_c00115{bottom:487.867339px;}
.y29_c00115{bottom:488.382469px;}
.y2a_c00115{bottom:488.605903px;}
.y2b_c00115{bottom:489.327436px;}
.y2c_c00115{bottom:489.559890px;}
.y2d_c00115{bottom:490.130821px;}
.y2e_c00115{bottom:490.338564px;}
.y2f_c00115{bottom:491.058081px;}
.y26_c00115{bottom:507.589666px;}
.y25_c00115{bottom:507.589840px;}
.y24_c00115{bottom:507.590217px;}
.y27_c00115{bottom:507.590398px;}
.y23_c00115{bottom:507.590541px;}
.y22_c00115{bottom:507.590865px;}
.y1a_c00115{bottom:521.096700px;}
.y1b_c00115{bottom:521.568724px;}
.y1c_c00115{bottom:521.883576px;}
.y1d_c00115{bottom:522.626523px;}
.y1e_c00115{bottom:523.005235px;}
.y1f_c00115{bottom:523.856713px;}
.y20_c00115{bottom:525.104328px;}
.y21_c00115{bottom:525.645696px;}
.y12_c00115{bottom:539.456311px;}
.y13_c00115{bottom:540.307995px;}
.y14_c00115{bottom:540.534847px;}
.y15_c00115{bottom:541.304788px;}
.y16_c00115{bottom:541.692942px;}
.y17_c00115{bottom:542.208323px;}
.y18_c00115{bottom:543.017439px;}
.y19_c00115{bottom:543.555273px;}
.ya_c00115{bottom:556.201404px;}
.yb_c00115{bottom:556.856729px;}
.yc_c00115{bottom:557.262156px;}
.yd_c00115{bottom:558.388831px;}
.ye_c00115{bottom:558.680074px;}
.yf_c00115{bottom:559.476822px;}
.y10_c00115{bottom:559.807605px;}
.y11_c00115{bottom:560.974647px;}
.y2_c00115{bottom:573.484500px;}
.y3_c00115{bottom:574.341239px;}
.y4_c00115{bottom:574.720289px;}
.y5_c00115{bottom:575.270082px;}
.y6_c00115{bottom:576.609354px;}
.y7_c00115{bottom:577.671264px;}
.y8_c00115{bottom:578.071318px;}
.y9_c00115{bottom:578.964167px;}
.y1_c00115{bottom:593.577000px;}
.hf_c00115{height:59.860802px;}
.he_c00115{height:60.910991px;}
.ha_c00115{height:61.961181px;}
.h2_c00115{height:63.000000px;}
.h9_c00115{height:63.011370px;}
.h6_c00115{height:64.061560px;}
.h7_c00115{height:65.111749px;}
.h8_c00115{height:66.161939px;}
.hc_c00115{height:67.212129px;}
.h10_c00115{height:68.262318px;}
.hb_c00115{height:69.312508px;}
.hd_c00115{height:70.362697px;}
.h5_c00115{height:71.412887px;}
.h3_c00115{height:73.513266px;}
.h4_c00115{height:75.613645px;}
.h1_c00115{height:632.250000px;}
.h0_c00115{height:632.550000px;}
.w0_c00115{width:371.790000px;}
.w1_c00115{width:372.000000px;}
.x0_c00115{left:0.000000px;}
.x7c_c00115{left:47.528523px;}
.x26_c00115{left:50.792669px;}
.x3_c00115{left:52.096500px;}
.x12_c00115{left:53.101665px;}
.x3e_c00115{left:55.173875px;}
.x1_c00115{left:67.230000px;}
.x59_c00115{left:71.288246px;}
.x51_c00115{left:72.778775px;}
.x80_c00115{left:76.043699px;}
.x1a_c00115{left:78.077420px;}
.x66_c00115{left:81.438069px;}
.x81_c00115{left:82.746396px;}
.x36_c00115{left:84.915665px;}
.x53_c00115{left:86.538002px;}
.xb_c00115{left:88.727032px;}
.x44_c00115{left:90.644523px;}
.x68_c00115{left:92.083415px;}
.x3f_c00115{left:93.244373px;}
.x1b_c00115{left:95.596262px;}
.x4_c00115{left:97.188000px;}
.x3b_c00115{left:99.636255px;}
.x56_c00115{left:101.532683px;}
.x21_c00115{left:102.605261px;}
.x45_c00115{left:107.102591px;}
.x78_c00115{left:108.828329px;}
.x13_c00115{left:109.852469px;}
.xc_c00115{left:111.249960px;}
.x32_c00115{left:113.490645px;}
.x70_c00115{left:116.040260px;}
.x5_c00115{left:117.138000px;}
.x57_c00115{left:118.815924px;}
.x4e_c00115{left:120.112772px;}
.x37_c00115{left:123.800805px;}
.x14_c00115{left:124.951109px;}
.x5a_c00115{left:126.377639px;}
.x61_c00115{left:129.165797px;}
.x48_c00115{left:130.341381px;}
.x29_c00115{left:132.929409px;}
.x1c_c00115{left:136.910060px;}
.x22_c00115{left:138.522228px;}
.x33_c00115{left:140.274734px;}
.x38_c00115{left:142.121940px;}
.x6_c00115{left:146.074500px;}
.x2a_c00115{left:148.104503px;}
.x7d_c00115{left:150.416159px;}
.x49_c00115{left:151.416876px;}
.x54_c00115{left:152.966373px;}
.x62_c00115{left:156.219914px;}
.x1d_c00115{left:157.947959px;}
.x71_c00115{left:161.358918px;}
.x52_c00115{left:162.979983px;}
.x67_c00115{left:165.629270px;}
.x2b_c00115{left:167.121752px;}
.x3c_c00115{left:169.849592px;}
.x55_c00115{left:172.678236px;}
.xd_c00115{left:173.865657px;}
.x15_c00115{left:176.294013px;}
.x82_c00115{left:177.959265px;}
.x5b_c00115{left:181.196918px;}
.x27_c00115{left:183.475818px;}
.x69_c00115{left:184.980431px;}
.x2_c00115{left:186.570000px;}
.x34_c00115{left:188.065413px;}
.xe_c00115{left:190.062971px;}
.x6f_c00115{left:191.730846px;}
.x63_c00115{left:194.029383px;}
.x40_c00115{left:198.067299px;}
.x16_c00115{left:202.172480px;}
.x1e_c00115{left:205.210842px;}
.x7e_c00115{left:206.315837px;}
.x35_c00115{left:208.587419px;}
.x4f_c00115{left:210.860249px;}
.x23_c00115{left:213.055632px;}
.x46_c00115{left:214.598322px;}
.x7_c00115{left:216.562500px;}
.x2c_c00115{left:218.574558px;}
.x41_c00115{left:221.826875px;}
.x3d_c00115{left:224.128671px;}
.x4a_c00115{left:226.757030px;}
.x5e_c00115{left:229.265040px;}
.x72_c00115{left:230.995341px;}
.x5c_c00115{left:233.316728px;}
.xf_c00115{left:234.366325px;}
.x17_c00115{left:236.484573px;}
.x2d_c00115{left:239.369621px;}
.x75_c00115{left:241.806351px;}
.x4b_c00115{left:243.497126px;}
.x5f_c00115{left:247.628681px;}
.x24_c00115{left:250.323084px;}
.x10_c00115{left:252.723667px;}
.x28_c00115{left:256.401876px;}
.x6a_c00115{left:258.433436px;}
.x39_c00115{left:262.598517px;}
.x2e_c00115{left:264.216867px;}
.x4c_c00115{left:267.800934px;}
.x6c_c00115{left:270.119879px;}
.x8_c00115{left:272.452500px;}
.x1f_c00115{left:274.507653px;}
.x79_c00115{left:275.718549px;}
.x2f_c00115{left:278.813379px;}
.x4d_c00115{left:284.533530px;}
.x7f_c00115{left:287.330078px;}
.x76_c00115{left:288.824093px;}
.x18_c00115{left:290.442177px;}
.x73_c00115{left:291.801795px;}
.x9_c00115{left:293.508000px;}
.x7a_c00115{left:296.242959px;}
.x47_c00115{left:298.024245px;}
.x30_c00115{left:299.061957px;}
.x6d_c00115{left:301.221708px;}
.x42_c00115{left:302.563169px;}
.x20_c00115{left:304.580223px;}
.x6b_c00115{left:307.041963px;}
.x77_c00115{left:308.301186px;}
.x64_c00115{left:313.100204px;}
.x25_c00115{left:315.674654px;}
.x11_c00115{left:317.542893px;}
.x6e_c00115{left:319.871400px;}
.x43_c00115{left:321.472389px;}
.x7b_c00115{left:322.708007px;}
.x19_c00115{left:326.330913px;}
.x5d_c00115{left:327.834342px;}
.x3a_c00115{left:331.461788px;}
.x65_c00115{left:332.830067px;}
.x58_c00115{left:334.044615px;}
.x60_c00115{left:336.745829px;}
.x74_c00115{left:339.445739px;}
.xa_c00115{left:340.500000px;}
.x31_c00115{left:342.005984px;}
.x50_c00115{left:350.974578px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fsd_c00115{font-size:53.209602pt;}
.fsc_c00115{font-size:54.143104pt;}
.fs8_c00115{font-size:55.076605pt;}
.fs0_c00115{font-size:56.000000pt;}
.fs7_c00115{font-size:56.010107pt;}
.fs4_c00115{font-size:56.943609pt;}
.fs5_c00115{font-size:57.877111pt;}
.fs6_c00115{font-size:58.810612pt;}
.fsa_c00115{font-size:59.744114pt;}
.fse_c00115{font-size:60.677616pt;}
.fs9_c00115{font-size:61.611118pt;}
.fsb_c00115{font-size:62.544620pt;}
.fs3_c00115{font-size:63.478121pt;}
.fs1_c00115{font-size:65.345125pt;}
.fs2_c00115{font-size:67.212129pt;}
.y0_c00115{bottom:0.000000pt;}
.y103_c00115{bottom:28.661505pt;}
.y101_c00115{bottom:28.661789pt;}
.y102_c00115{bottom:28.661925pt;}
.yff_c00115{bottom:28.661967pt;}
.y104_c00115{bottom:28.662016pt;}
.y100_c00115{bottom:28.662129pt;}
.yfd_c00115{bottom:28.662297pt;}
.yfe_c00115{bottom:28.662595pt;}
.yfc_c00115{bottom:28.662933pt;}
.yf3_c00115{bottom:43.358113pt;}
.yf4_c00115{bottom:43.638579pt;}
.yf5_c00115{bottom:44.068025pt;}
.yf6_c00115{bottom:44.437413pt;}
.yf7_c00115{bottom:44.581097pt;}
.yf8_c00115{bottom:44.998056pt;}
.yf9_c00115{bottom:45.233797pt;}
.yfa_c00115{bottom:45.759652pt;}
.yfb_c00115{bottom:45.868051pt;}
.yec_c00115{bottom:58.240077pt;}
.yed_c00115{bottom:58.510785pt;}
.yee_c00115{bottom:58.712500pt;}
.yef_c00115{bottom:59.537015pt;}
.yf0_c00115{bottom:59.917424pt;}
.yf1_c00115{bottom:60.590928pt;}
.yf2_c00115{bottom:60.827869pt;}
.yea_c00115{bottom:75.025183pt;}
.ye8_c00115{bottom:75.025283pt;}
.yeb_c00115{bottom:75.025352pt;}
.ye7_c00115{bottom:75.025436pt;}
.ye9_c00115{bottom:75.025445pt;}
.ye6_c00115{bottom:75.025693pt;}
.ye3_c00115{bottom:75.025996pt;}
.ye5_c00115{bottom:75.026088pt;}
.ye4_c00115{bottom:75.026429pt;}
.ydb_c00115{bottom:90.835511pt;}
.yde_c00115{bottom:90.835685pt;}
.ydc_c00115{bottom:90.835888pt;}
.ydd_c00115{bottom:90.835947pt;}
.ydf_c00115{bottom:90.835960pt;}
.ye1_c00115{bottom:90.836029pt;}
.ye2_c00115{bottom:90.836167pt;}
.ye0_c00115{bottom:90.836187pt;}
.yd2_c00115{bottom:104.806753pt;}
.yd3_c00115{bottom:105.448105pt;}
.yd4_c00115{bottom:105.672951pt;}
.yd5_c00115{bottom:105.998745pt;}
.yd6_c00115{bottom:106.560164pt;}
.yd7_c00115{bottom:106.840096pt;}
.yd8_c00115{bottom:107.342068pt;}
.yd9_c00115{bottom:107.549637pt;}
.yda_c00115{bottom:107.739677pt;}
.yca_c00115{bottom:120.409791pt;}
.ycb_c00115{bottom:120.864976pt;}
.ycc_c00115{bottom:121.147309pt;}
.ycd_c00115{bottom:121.671271pt;}
.yce_c00115{bottom:122.476552pt;}
.ycf_c00115{bottom:122.957063pt;}
.yd0_c00115{bottom:123.178055pt;}
.yd1_c00115{bottom:123.727949pt;}
.yc3_c00115{bottom:137.911899pt;}
.yc4_c00115{bottom:137.912120pt;}
.yc7_c00115{bottom:137.912513pt;}
.yc5_c00115{bottom:137.912551pt;}
.yc6_c00115{bottom:137.912561pt;}
.yc8_c00115{bottom:137.912660pt;}
.yc9_c00115{bottom:137.913303pt;}
.ybb_c00115{bottom:152.575209pt;}
.ybc_c00115{bottom:152.810267pt;}
.ybd_c00115{bottom:153.239891pt;}
.ybe_c00115{bottom:153.731391pt;}
.ybf_c00115{bottom:154.062460pt;}
.yc0_c00115{bottom:154.515312pt;}
.yc1_c00115{bottom:154.791164pt;}
.yc2_c00115{bottom:154.956749pt;}
.yb3_c00115{bottom:170.320376pt;}
.yb4_c00115{bottom:170.320596pt;}
.yb5_c00115{bottom:170.320608pt;}
.yb7_c00115{bottom:170.320781pt;}
.yb6_c00115{bottom:170.320957pt;}
.yb8_c00115{bottom:170.321049pt;}
.yb9_c00115{bottom:170.321052pt;}
.yba_c00115{bottom:170.321697pt;}
.yab_c00115{bottom:184.979639pt;}
.yac_c00115{bottom:185.296944pt;}
.yad_c00115{bottom:185.515580pt;}
.yae_c00115{bottom:186.194651pt;}
.yaf_c00115{bottom:186.595157pt;}
.yb0_c00115{bottom:186.923985pt;}
.yb1_c00115{bottom:187.615288pt;}
.yb2_c00115{bottom:187.771343pt;}
.ya2_c00115{bottom:200.340859pt;}
.ya3_c00115{bottom:201.021729pt;}
.ya4_c00115{bottom:201.262565pt;}
.ya5_c00115{bottom:201.475468pt;}
.ya6_c00115{bottom:201.598349pt;}
.ya7_c00115{bottom:201.980520pt;}
.ya8_c00115{bottom:202.117925pt;}
.ya9_c00115{bottom:202.658313pt;}
.yaa_c00115{bottom:202.834139pt;}
.y9f_c00115{bottom:217.395623pt;}
.ya0_c00115{bottom:217.395900pt;}
.ya1_c00115{bottom:217.396169pt;}
.y9e_c00115{bottom:217.396260pt;}
.y9b_c00115{bottom:217.396337pt;}
.y9c_c00115{bottom:217.396719pt;}
.y9d_c00115{bottom:217.396864pt;}
.y9a_c00115{bottom:232.970005pt;}
.y95_c00115{bottom:232.970187pt;}
.y97_c00115{bottom:232.970199pt;}
.y98_c00115{bottom:232.970284pt;}
.y99_c00115{bottom:232.970291pt;}
.y96_c00115{bottom:232.970356pt;}
.y94_c00115{bottom:232.970744pt;}
.y93_c00115{bottom:232.970791pt;}
.y92_c00115{bottom:232.971295pt;}
.y90_c00115{bottom:248.576207pt;}
.y91_c00115{bottom:248.576484pt;}
.y8f_c00115{bottom:248.576549pt;}
.y8d_c00115{bottom:248.577016pt;}
.y8e_c00115{bottom:248.577025pt;}
.y8c_c00115{bottom:248.577489pt;}
.y8b_c00115{bottom:248.577700pt;}
.y8a_c00115{bottom:248.578252pt;}
.y82_c00115{bottom:262.515177pt;}
.y83_c00115{bottom:262.817687pt;}
.y84_c00115{bottom:263.227961pt;}
.y85_c00115{bottom:263.407396pt;}
.y86_c00115{bottom:263.582917pt;}
.y87_c00115{bottom:264.302968pt;}
.y88_c00115{bottom:264.951299pt;}
.y89_c00115{bottom:265.092820pt;}
.y7a_c00115{bottom:277.878789pt;}
.y7b_c00115{bottom:278.086903pt;}
.y7c_c00115{bottom:278.482801pt;}
.y7d_c00115{bottom:278.708691pt;}
.y7e_c00115{bottom:278.968736pt;}
.y7f_c00115{bottom:279.707924pt;}
.y80_c00115{bottom:279.836875pt;}
.y81_c00115{bottom:280.061935pt;}
.y70_c00115{bottom:292.764523pt;}
.y71_c00115{bottom:293.558793pt;}
.y72_c00115{bottom:293.769025pt;}
.y73_c00115{bottom:294.025740pt;}
.y74_c00115{bottom:294.331765pt;}
.y75_c00115{bottom:294.713704pt;}
.y76_c00115{bottom:295.138924pt;}
.y77_c00115{bottom:295.763245pt;}
.y78_c00115{bottom:296.076753pt;}
.y79_c00115{bottom:297.255876pt;}
.y66_c00115{bottom:308.605959pt;}
.y67_c00115{bottom:309.100279pt;}
.y68_c00115{bottom:309.591423pt;}
.y69_c00115{bottom:309.853997pt;}
.y6a_c00115{bottom:310.633317pt;}
.y6b_c00115{bottom:310.791621pt;}
.y6c_c00115{bottom:310.999649pt;}
.y6d_c00115{bottom:311.302075pt;}
.y6e_c00115{bottom:311.509976pt;}
.y6f_c00115{bottom:312.228508pt;}
.y5e_c00115{bottom:324.693428pt;}
.y5f_c00115{bottom:325.177520pt;}
.y60_c00115{bottom:325.382119pt;}
.y61_c00115{bottom:325.781129pt;}
.y62_c00115{bottom:326.137832pt;}
.y63_c00115{bottom:326.718763pt;}
.y64_c00115{bottom:326.966844pt;}
.y65_c00115{bottom:327.756933pt;}
.y56_c00115{bottom:341.012391pt;}
.y57_c00115{bottom:341.351249pt;}
.y58_c00115{bottom:341.619987pt;}
.y59_c00115{bottom:341.778432pt;}
.y5a_c00115{bottom:342.282623pt;}
.y5b_c00115{bottom:342.493160pt;}
.y5c_c00115{bottom:343.211140pt;}
.y5d_c00115{bottom:343.379775pt;}
.y50_c00115{bottom:357.938144pt;}
.y4f_c00115{bottom:357.938272pt;}
.y4e_c00115{bottom:357.938481pt;}
.y51_c00115{bottom:357.938545pt;}
.y52_c00115{bottom:357.938923pt;}
.y53_c00115{bottom:357.938928pt;}
.y4d_c00115{bottom:357.938953pt;}
.y55_c00115{bottom:357.939051pt;}
.y54_c00115{bottom:357.939205pt;}
.y44_c00115{bottom:371.976789pt;}
.y45_c00115{bottom:372.272463pt;}
.y46_c00115{bottom:372.618411pt;}
.y47_c00115{bottom:372.781115pt;}
.y48_c00115{bottom:373.154008pt;}
.y49_c00115{bottom:373.336365pt;}
.y4a_c00115{bottom:373.652952pt;}
.y4b_c00115{bottom:373.852816pt;}
.y4c_c00115{bottom:374.464975pt;}
.y3e_c00115{bottom:387.581283pt;}
.y3f_c00115{bottom:388.129944pt;}
.y40_c00115{bottom:388.367553pt;}
.y41_c00115{bottom:388.791880pt;}
.y42_c00115{bottom:388.974415pt;}
.y43_c00115{bottom:389.557389pt;}
.y38_c00115{bottom:402.943517pt;}
.y39_c00115{bottom:403.786183pt;}
.y3a_c00115{bottom:404.258043pt;}
.y3b_c00115{bottom:405.161867pt;}
.y3c_c00115{bottom:405.359791pt;}
.y3d_c00115{bottom:405.779624pt;}
.y30_c00115{bottom:418.546908pt;}
.y31_c00115{bottom:419.264027pt;}
.y32_c00115{bottom:419.398940pt;}
.y33_c00115{bottom:419.568065pt;}
.y34_c00115{bottom:420.024897pt;}
.y35_c00115{bottom:420.209376pt;}
.y36_c00115{bottom:420.430280pt;}
.y37_c00115{bottom:421.113981pt;}
.y28_c00115{bottom:433.659857pt;}
.y29_c00115{bottom:434.117751pt;}
.y2a_c00115{bottom:434.316359pt;}
.y2b_c00115{bottom:434.957721pt;}
.y2c_c00115{bottom:435.164347pt;}
.y2d_c00115{bottom:435.671841pt;}
.y2e_c00115{bottom:435.856501pt;}
.y2f_c00115{bottom:436.496072pt;}
.y26_c00115{bottom:451.190815pt;}
.y25_c00115{bottom:451.190969pt;}
.y24_c00115{bottom:451.191304pt;}
.y27_c00115{bottom:451.191465pt;}
.y23_c00115{bottom:451.191592pt;}
.y22_c00115{bottom:451.191880pt;}
.y1a_c00115{bottom:463.197067pt;}
.y1b_c00115{bottom:463.616644pt;}
.y1c_c00115{bottom:463.896512pt;}
.y1d_c00115{bottom:464.556909pt;}
.y1e_c00115{bottom:464.893543pt;}
.y1f_c00115{bottom:465.650412pt;}
.y20_c00115{bottom:466.759403pt;}
.y21_c00115{bottom:467.240619pt;}
.y12_c00115{bottom:479.516721pt;}
.y13_c00115{bottom:480.273773pt;}
.y14_c00115{bottom:480.475420pt;}
.y15_c00115{bottom:481.159812pt;}
.y16_c00115{bottom:481.504837pt;}
.y17_c00115{bottom:481.962953pt;}
.y18_c00115{bottom:482.682168pt;}
.y19_c00115{bottom:483.160243pt;}
.ya_c00115{bottom:494.401248pt;}
.yb_c00115{bottom:494.983759pt;}
.yc_c00115{bottom:495.344139pt;}
.yd_c00115{bottom:496.345628pt;}
.ye_c00115{bottom:496.604511pt;}
.yf_c00115{bottom:497.312731pt;}
.y10_c00115{bottom:497.606760pt;}
.y11_c00115{bottom:498.644131pt;}
.y2_c00115{bottom:509.764000pt;}
.y3_c00115{bottom:510.525545pt;}
.y4_c00115{bottom:510.862479pt;}
.y5_c00115{bottom:511.351184pt;}
.y6_c00115{bottom:512.541648pt;}
.y7_c00115{bottom:513.485568pt;}
.y8_c00115{bottom:513.841172pt;}
.y9_c00115{bottom:514.634815pt;}
.y1_c00115{bottom:527.624000pt;}
.hf_c00115{height:53.209602pt;}
.he_c00115{height:54.143104pt;}
.ha_c00115{height:55.076605pt;}
.h2_c00115{height:56.000000pt;}
.h9_c00115{height:56.010107pt;}
.h6_c00115{height:56.943609pt;}
.h7_c00115{height:57.877111pt;}
.h8_c00115{height:58.810612pt;}
.hc_c00115{height:59.744114pt;}
.h10_c00115{height:60.677616pt;}
.hb_c00115{height:61.611118pt;}
.hd_c00115{height:62.544620pt;}
.h5_c00115{height:63.478121pt;}
.h3_c00115{height:65.345125pt;}
.h4_c00115{height:67.212129pt;}
.h1_c00115{height:562.000000pt;}
.h0_c00115{height:562.266667pt;}
.w0_c00115{width:330.480000pt;}
.w1_c00115{width:330.666667pt;}
.x0_c00115{left:0.000000pt;}
.x7c_c00115{left:42.247576pt;}
.x26_c00115{left:45.149039pt;}
.x3_c00115{left:46.308000pt;}
.x12_c00115{left:47.201480pt;}
.x3e_c00115{left:49.043444pt;}
.x1_c00115{left:59.760000pt;}
.x59_c00115{left:63.367329pt;}
.x51_c00115{left:64.692244pt;}
.x80_c00115{left:67.594399pt;}
.x1a_c00115{left:69.402151pt;}
.x66_c00115{left:72.389395pt;}
.x81_c00115{left:73.552352pt;}
.x36_c00115{left:75.480591pt;}
.x53_c00115{left:76.922668pt;}
.xb_c00115{left:78.868473pt;}
.x44_c00115{left:80.572909pt;}
.x68_c00115{left:81.851924pt;}
.x3f_c00115{left:82.883887pt;}
.x1b_c00115{left:84.974455pt;}
.x4_c00115{left:86.389333pt;}
.x3b_c00115{left:88.565560pt;}
.x56_c00115{left:90.251273pt;}
.x21_c00115{left:91.204676pt;}
.x45_c00115{left:95.202303pt;}
.x78_c00115{left:96.736292pt;}
.x13_c00115{left:97.646639pt;}
.xc_c00115{left:98.888853pt;}
.x32_c00115{left:100.880573pt;}
.x70_c00115{left:103.146897pt;}
.x5_c00115{left:104.122667pt;}
.x57_c00115{left:105.614155pt;}
.x4e_c00115{left:106.766908pt;}
.x37_c00115{left:110.045160pt;}
.x14_c00115{left:111.067652pt;}
.x5a_c00115{left:112.335679pt;}
.x61_c00115{left:114.814041pt;}
.x48_c00115{left:115.859005pt;}
.x29_c00115{left:118.159475pt;}
.x1c_c00115{left:121.697831pt;}
.x22_c00115{left:123.130869pt;}
.x33_c00115{left:124.688652pt;}
.x38_c00115{left:126.330613pt;}
.x6_c00115{left:129.844000pt;}
.x2a_c00115{left:131.648447pt;}
.x7d_c00115{left:133.703252pt;}
.x49_c00115{left:134.592779pt;}
.x54_c00115{left:135.970109pt;}
.x62_c00115{left:138.862145pt;}
.x1d_c00115{left:140.398185pt;}
.x71_c00115{left:143.430149pt;}
.x52_c00115{left:144.871096pt;}
.x67_c00115{left:147.226017pt;}
.x2b_c00115{left:148.552668pt;}
.x3c_c00115{left:150.977415pt;}
.x55_c00115{left:153.491765pt;}
.xd_c00115{left:154.547251pt;}
.x15_c00115{left:156.705789pt;}
.x82_c00115{left:158.186013pt;}
.x5b_c00115{left:161.063927pt;}
.x27_c00115{left:163.089616pt;}
.x69_c00115{left:164.427049pt;}
.x2_c00115{left:165.840000pt;}
.x34_c00115{left:167.169256pt;}
.xe_c00115{left:168.944863pt;}
.x6f_c00115{left:170.427419pt;}
.x63_c00115{left:172.470563pt;}
.x40_c00115{left:176.059821pt;}
.x16_c00115{left:179.708871pt;}
.x1e_c00115{left:182.409637pt;}
.x7e_c00115{left:183.391855pt;}
.x35_c00115{left:185.411039pt;}
.x4f_c00115{left:187.431332pt;}
.x23_c00115{left:189.382784pt;}
.x46_c00115{left:190.754064pt;}
.x7_c00115{left:192.500000pt;}
.x2c_c00115{left:194.288496pt;}
.x41_c00115{left:197.179444pt;}
.x3d_c00115{left:199.225485pt;}
.x4a_c00115{left:201.561804pt;}
.x5e_c00115{left:203.791147pt;}
.x72_c00115{left:205.329192pt;}
.x5c_c00115{left:207.392647pt;}
.xf_c00115{left:208.325623pt;}
.x17_c00115{left:210.208509pt;}
.x2d_c00115{left:212.772996pt;}
.x75_c00115{left:214.938979pt;}
.x4b_c00115{left:216.441889pt;}
.x5f_c00115{left:220.114383pt;}
.x24_c00115{left:222.509408pt;}
.x10_c00115{left:224.643260pt;}
.x28_c00115{left:227.912779pt;}
.x6a_c00115{left:229.718609pt;}
.x39_c00115{left:233.420904pt;}
.x2e_c00115{left:234.859437pt;}
.x4c_c00115{left:238.045275pt;}
.x6c_c00115{left:240.106559pt;}
.x8_c00115{left:242.180000pt;}
.x1f_c00115{left:244.006803pt;}
.x79_c00115{left:245.083155pt;}
.x2f_c00115{left:247.834115pt;}
.x4d_c00115{left:252.918693pt;}
.x7f_c00115{left:255.404513pt;}
.x76_c00115{left:256.732527pt;}
.x18_c00115{left:258.170824pt;}
.x73_c00115{left:259.379373pt;}
.x9_c00115{left:260.896000pt;}
.x7a_c00115{left:263.327075pt;}
.x47_c00115{left:264.910440pt;}
.x30_c00115{left:265.832851pt;}
.x6d_c00115{left:267.752629pt;}
.x42_c00115{left:268.945039pt;}
.x20_c00115{left:270.737976pt;}
.x6b_c00115{left:272.926189pt;}
.x77_c00115{left:274.045499pt;}
.x64_c00115{left:278.311292pt;}
.x25_c00115{left:280.599692pt;}
.x11_c00115{left:282.260349pt;}
.x6e_c00115{left:284.330133pt;}
.x43_c00115{left:285.753235pt;}
.x7b_c00115{left:286.851561pt;}
.x19_c00115{left:290.071923pt;}
.x5d_c00115{left:291.408304pt;}
.x3a_c00115{left:294.632700pt;}
.x65_c00115{left:295.848948pt;}
.x58_c00115{left:296.928547pt;}
.x60_c00115{left:299.329625pt;}
.x74_c00115{left:301.729545pt;}
.xa_c00115{left:302.666667pt;}
.x31_c00115{left:304.005319pt;}
.x50_c00115{left:311.977403pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00116 {
    display:none;
  }
  .loading-indicator_c00116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00116 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00116 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00116" -> "#page-container .classname_c00116")
 */
.pf_c00116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00116 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00116 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00116 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00116 {overflow:visible;}
  }
}
.c_c00116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00116 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00116:after { /* webkit #35443 */
  content: '';
}
.t_c00116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00116 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00116 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00116 { /* info for Javascript */
  display:none;
}
.l_c00116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00116:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00116 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00116.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00116{transform:matrix(0.011520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011520,0.000000,0.000000,0.250000,0,0);}
.m64_c00116{transform:matrix(0.024185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024185,0.000000,0.000000,0.250000,0,0);}
.m85_c00116{transform:matrix(0.101430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101430,0.000000,0.000000,0.250000,0,0);}
.m6d_c00116{transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);}
.med_c00116{transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.139230,-0.001671,0.003000,0.249982,0,0);-ms-transform:matrix(0.139230,-0.001671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139230,-0.001671,0.003000,0.249982,0,0);}
.m96_c00116{transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.145959,-0.001752,0.003000,0.249982,0,0);-ms-transform:matrix(0.145959,-0.001752,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145959,-0.001752,0.003000,0.249982,0,0);}
.m2d_c00116{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.150570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150570,0.000000,0.000000,0.250000,0,0);}
.mc7_c00116{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.mc9_c00116{transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00116{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m33_c00116{transform:matrix(0.156585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156585,0.000000,0.000000,0.250000,0,0);}
.mbc_c00116{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m7b_c00116{transform:matrix(0.159880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159880,0.000000,0.000000,0.250000,0,0);}
.ma5_c00116{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.me9_c00116{transform:matrix(0.161165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161165,0.000000,0.000000,0.250000,0,0);}
.mb6_c00116{transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);}
.mac_c00116{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.164133,-0.001970,0.003000,0.249982,0,0);-ms-transform:matrix(0.164133,-0.001970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164133,-0.001970,0.003000,0.249982,0,0);}
.m48_c00116{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m94_c00116{transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165890,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.166083,-0.001993,0.003000,0.249982,0,0);-ms-transform:matrix(0.166083,-0.001993,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166083,-0.001993,0.003000,0.249982,0,0);}
.m2a_c00116{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.167678,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167678,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167678,-0.002012,0.003000,0.249982,0,0);}
.ma6_c00116{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m4d_c00116{transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);}
.md5_c00116{transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);-ms-transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);}
.m35_c00116{transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);-ms-transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);}
.m2c_c00116{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m59_c00116{transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);}
.m58_c00116{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mda_c00116{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m36_c00116{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00116{transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);}
.m6f_c00116{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m56_c00116{transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);}
.m79_c00116{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.mba_c00116{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.mbe_c00116{transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);}
.m50_c00116{transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);}
.m4f_c00116{transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.177917,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177917,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177917,-0.002135,0.003000,0.249982,0,0);}
.m43_c00116{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.mbb_c00116{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.m6a_c00116{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m72_c00116{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.mc5_c00116{transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.179655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);}
.m95_c00116{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.md8_c00116{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.m9c_c00116{transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);}
.m82_c00116{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.m93_c00116{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m87_c00116{transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);}
.m9b_c00116{transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);}
.mc4_c00116{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.182167,-0.002186,0.003000,0.249982,0,0);-ms-transform:matrix(0.182167,-0.002186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182167,-0.002186,0.003000,0.249982,0,0);}
.me_c00116{transform:matrix(0.182292,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182292,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182292,-0.002188,0.003000,0.249982,0,0);}
.mc_c00116{transform:matrix(0.182322,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182322,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182322,-0.002188,0.003000,0.249982,0,0);}
.m55_c00116{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.mc3_c00116{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.183517,-0.002202,0.003000,0.249982,0,0);-ms-transform:matrix(0.183517,-0.002202,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183517,-0.002202,0.003000,0.249982,0,0);}
.m5d_c00116{transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);}
.m7f_c00116{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.m91_c00116{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m7d_c00116{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);}
.m9f_c00116{transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);}
.m70_c00116{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m9e_c00116{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.mca_c00116{transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.186042,-0.002232,0.003000,0.249982,0,0);-ms-transform:matrix(0.186042,-0.002232,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186042,-0.002232,0.003000,0.249982,0,0);}
.me3_c00116{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m3e_c00116{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.ma9_c00116{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m68_c00116{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m7c_c00116{transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);}
.m6b_c00116{transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.189031,-0.002268,0.003000,0.249982,0,0);-ms-transform:matrix(0.189031,-0.002268,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189031,-0.002268,0.003000,0.249982,0,0);}
.mbd_c00116{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m74_c00116{transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);}
.m42_c00116{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m62_c00116{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.m38_c00116{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.ma3_c00116{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.mde_c00116{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.m73_c00116{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.m77_c00116{transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.192856,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192856,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192856,-0.002314,0.003000,0.249982,0,0);}
.mc8_c00116{transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);}
.mbf_c00116{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.ma0_c00116{transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);}
.m97_c00116{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m60_c00116{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m88_c00116{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00116{transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);}
.m20_c00116{transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00116{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m57_c00116{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00116{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.md7_c00116{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m47_c00116{transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);}
.m69_c00116{transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);}
.ma2_c00116{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.md1_c00116{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00116{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.me2_c00116{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m75_c00116{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m8d_c00116{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.m51_c00116{transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);}
.mdd_c00116{transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.199801,-0.002398,0.003000,0.249982,0,0);-ms-transform:matrix(0.199801,-0.002398,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199801,-0.002398,0.003000,0.249982,0,0);}
.m1a_c00116{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.mae_c00116{transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);}
.m78_c00116{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.m71_c00116{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.m9a_c00116{transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);}
.m7a_c00116{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);}
.md9_c00116{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m99_c00116{transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);}
.mdc_c00116{transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);}
.m8c_c00116{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mcd_c00116{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m63_c00116{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m80_c00116{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m76_c00116{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.me6_c00116{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.md6_c00116{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.me7_c00116{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.m98_c00116{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00116{transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.210835,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210835,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210835,-0.002530,0.003000,0.249982,0,0);}
.mb3_c00116{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.m5a_c00116{transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);}
.m6e_c00116{transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.md2_c00116{transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);}
.m52_c00116{transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);}
.md0_c00116{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.me5_c00116{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.mad_c00116{transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);}
.me4_c00116{transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);}
.mec_c00116{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.ma1_c00116{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.me1_c00116{transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);}
.m5f_c00116{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.ma8_c00116{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.md3_c00116{transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);}
.m92_c00116{transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);}
.m83_c00116{transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);}
.ma4_c00116{transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);}
.m23_c00116{transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);}
.m81_c00116{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.m8e_c00116{transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);}
.mcc_c00116{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m41_c00116{transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);}
.mb4_c00116{transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);}
.m3c_c00116{transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);}
.me8_c00116{transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);}
.ma7_c00116{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.mce_c00116{transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00116{transform:matrix(0.231110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231110,0.000000,0.000000,0.250000,0,0);}
.mb0_c00116{transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233510,0.000000,0.000000,0.250000,0,0);}
.me0_c00116{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m65_c00116{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.mc2_c00116{transform:matrix(0.237435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237435,0.000000,0.000000,0.250000,0,0);}
.m8f_c00116{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m61_c00116{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00116{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m67_c00116{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m53_c00116{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m8a_c00116{transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.247562,-0.002971,0.003000,0.249982,0,0);-ms-transform:matrix(0.247562,-0.002971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247562,-0.002971,0.003000,0.249982,0,0);}
.md4_c00116{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.mea_c00116{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m86_c00116{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.mb1_c00116{transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00116{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.mb2_c00116{transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);}
.mc1_c00116{transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);}
.maa_c00116{transform:matrix(0.258895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258895,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);}
.mb5_c00116{transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);}
.m66_c00116{transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00116{transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);}
.m6c_c00116{transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.269745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269745,0.000000,0.000000,0.250000,0,0);}
.mb9_c00116{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m84_c00116{transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);}
.maf_c00116{transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.295430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295430,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);}
.m90_c00116{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00116{transform:matrix(0.336515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336515,0.000000,0.000000,0.250000,0,0);}
.mab_c00116{transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);}
.m89_c00116{transform:matrix(0.343240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343240,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.344315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344315,0.000000,0.000000,0.250000,0,0);}
.m54_c00116{transform:matrix(0.401640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401640,0.000000,0.000000,0.250000,0,0);}
.mb7_c00116{transform:matrix(0.404210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404210,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.471670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471670,0.000000,0.000000,0.250000,0,0);}
.m5c_c00116{transform:matrix(0.750675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750675,0.000000,0.000000,0.250000,0,0);}
.meb_c00116{transform:matrix(1.136470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.136470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.136470,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:0.000000px;}
.fc0_c00116{color:transparent;}
.fs11_c00116{font-size:17.850000px;}
.fs12_c00116{font-size:23.100000px;}
.fse_c00116{font-size:53.550000px;}
.fs10_c00116{font-size:57.750000px;}
.fs7_c00116{font-size:60.900000px;}
.fsd_c00116{font-size:63.000000px;}
.fsf_c00116{font-size:64.050000px;}
.fs3_c00116{font-size:65.100000px;}
.fsc_c00116{font-size:66.150000px;}
.fsa_c00116{font-size:67.200000px;}
.fs2_c00116{font-size:67.204838px;}
.fsb_c00116{font-size:68.250000px;}
.fs0_c00116{font-size:69.300000px;}
.fs8_c00116{font-size:70.350000px;}
.fs9_c00116{font-size:71.400000px;}
.fs1_c00116{font-size:71.405141px;}
.fs4_c00116{font-size:72.450000px;}
.fs5_c00116{font-size:74.550000px;}
.fs6_c00116{font-size:75.600000px;}
.y0_c00116{bottom:0.000000px;}
.y69_c00116{bottom:15.036000px;}
.y68_c00116{bottom:30.129000px;}
.y67_c00116{bottom:47.272500px;}
.y66_c00116{bottom:47.847000px;}
.y65_c00116{bottom:48.820500px;}
.y64_c00116{bottom:49.495500px;}
.y63_c00116{bottom:51.334500px;}
.y62_c00116{bottom:52.387500px;}
.y61_c00116{bottom:64.462500px;}
.y60_c00116{bottom:64.708500px;}
.y5f_c00116{bottom:65.143500px;}
.y5e_c00116{bottom:65.643000px;}
.y5d_c00116{bottom:65.848500px;}
.y5c_c00116{bottom:66.298500px;}
.y5b_c00116{bottom:66.550500px;}
.y5a_c00116{bottom:66.753000px;}
.y59_c00116{bottom:66.975000px;}
.y58_c00116{bottom:81.543000px;}
.y57_c00116{bottom:103.144500px;}
.y56_c00116{bottom:117.259500px;}
.y55_c00116{bottom:132.958500px;}
.y54_c00116{bottom:151.126500px;}
.y53_c00116{bottom:168.754500px;}
.y52_c00116{bottom:186.880500px;}
.y51_c00116{bottom:204.508500px;}
.y50_c00116{bottom:220.738500px;}
.y4f_c00116{bottom:221.044500px;}
.y4e_c00116{bottom:221.250000px;}
.y4d_c00116{bottom:221.851500px;}
.y4c_c00116{bottom:222.360000px;}
.y4b_c00116{bottom:222.585000px;}
.y4a_c00116{bottom:223.227000px;}
.y49_c00116{bottom:223.512000px;}
.y48_c00116{bottom:223.659000px;}
.y47_c00116{bottom:224.104500px;}
.y46_c00116{bottom:239.085000px;}
.y45_c00116{bottom:239.278500px;}
.y44_c00116{bottom:239.833500px;}
.y43_c00116{bottom:240.024000px;}
.y42_c00116{bottom:240.166500px;}
.y41_c00116{bottom:241.000500px;}
.y40_c00116{bottom:241.167000px;}
.y3f_c00116{bottom:241.767000px;}
.y3e_c00116{bottom:242.014500px;}
.y3d_c00116{bottom:242.196000px;}
.y3c_c00116{bottom:256.606500px;}
.y3b_c00116{bottom:257.721000px;}
.y3a_c00116{bottom:258.270000px;}
.y39_c00116{bottom:258.531000px;}
.y38_c00116{bottom:259.249500px;}
.y37_c00116{bottom:259.746000px;}
.y36_c00116{bottom:274.665000px;}
.y35_c00116{bottom:275.310000px;}
.y34_c00116{bottom:275.620500px;}
.y33_c00116{bottom:276.547500px;}
.y32_c00116{bottom:276.910500px;}
.y31_c00116{bottom:277.810500px;}
.y30_c00116{bottom:278.106000px;}
.y2f_c00116{bottom:289.984500px;}
.y2e_c00116{bottom:290.383500px;}
.y2d_c00116{bottom:291.285000px;}
.y2c_c00116{bottom:291.673500px;}
.y2b_c00116{bottom:292.200000px;}
.y2a_c00116{bottom:293.551500px;}
.y29_c00116{bottom:294.405000px;}
.y28_c00116{bottom:295.117500px;}
.y27_c00116{bottom:310.578000px;}
.y26_c00116{bottom:310.851000px;}
.y25_c00116{bottom:311.475000px;}
.y24_c00116{bottom:311.653500px;}
.y23_c00116{bottom:312.348000px;}
.y22_c00116{bottom:313.263000px;}
.y21_c00116{bottom:313.473000px;}
.y20_c00116{bottom:328.668000px;}
.y1f_c00116{bottom:344.272500px;}
.y6b_c00116{bottom:360.858000px;}
.y1e_c00116{bottom:363.151500px;}
.y6a_c00116{bottom:364.906500px;}
.y1d_c00116{bottom:378.909000px;}
.y1c_c00116{bottom:396.631500px;}
.y1b_c00116{bottom:414.336000px;}
.y1a_c00116{bottom:431.926500px;}
.y19_c00116{bottom:447.552000px;}
.y18_c00116{bottom:466.012500px;}
.y17_c00116{bottom:483.259500px;}
.y16_c00116{bottom:501.199500px;}
.y15_c00116{bottom:519.052500px;}
.y14_c00116{bottom:536.082000px;}
.yb_c00116{bottom:552.421500px;}
.yc_c00116{bottom:552.622452px;}
.yd_c00116{bottom:553.334460px;}
.ye_c00116{bottom:553.497234px;}
.yf_c00116{bottom:554.060328px;}
.y10_c00116{bottom:554.391564px;}
.y11_c00116{bottom:554.582706px;}
.y12_c00116{bottom:554.812026px;}
.y13_c00116{bottom:555.179172px;}
.y2_c00116{bottom:569.701500px;}
.y3_c00116{bottom:570.076656px;}
.y4_c00116{bottom:570.475842px;}
.y5_c00116{bottom:571.269516px;}
.y6_c00116{bottom:571.425144px;}
.y7_c00116{bottom:571.874892px;}
.y8_c00116{bottom:572.189766px;}
.y9_c00116{bottom:572.555274px;}
.ya_c00116{bottom:572.711640px;}
.y1_c00116{bottom:588.202500px;}
.h13_c00116{height:17.850000px;}
.h14_c00116{height:23.100000px;}
.h10_c00116{height:53.550000px;}
.h12_c00116{height:57.750000px;}
.h9_c00116{height:60.900000px;}
.hf_c00116{height:63.000000px;}
.h11_c00116{height:64.050000px;}
.h5_c00116{height:65.100000px;}
.he_c00116{height:66.150000px;}
.hc_c00116{height:67.200000px;}
.h4_c00116{height:67.204838px;}
.hd_c00116{height:68.250000px;}
.h2_c00116{height:69.300000px;}
.ha_c00116{height:70.350000px;}
.hb_c00116{height:71.400000px;}
.h3_c00116{height:71.405141px;}
.h6_c00116{height:72.450000px;}
.h7_c00116{height:74.550000px;}
.h8_c00116{height:75.600000px;}
.h1_c00116{height:632.250000px;}
.h0_c00116{height:632.550000px;}
.w0_c00116{width:371.790000px;}
.w1_c00116{width:372.000000px;}
.x0_c00116{left:0.000000px;}
.x51_c00116{left:36.180000px;}
.x3_c00116{left:37.695000px;}
.x2d_c00116{left:38.880000px;}
.xc_c00116{left:47.128500px;}
.x15_c00116{left:48.600000px;}
.x20_c00116{left:50.760000px;}
.x2e_c00116{left:52.380000px;}
.x48_c00116{left:53.460000px;}
.x52_c00116{left:56.844000px;}
.x76_c00116{left:57.894000px;}
.x26_c00116{left:61.290000px;}
.xd_c00116{left:63.874500px;}
.x34_c00116{left:65.610000px;}
.x3d_c00116{left:67.500000px;}
.x4_c00116{left:68.958000px;}
.x62_c00116{left:70.017000px;}
.x56_c00116{left:72.907500px;}
.x1b_c00116{left:73.980000px;}
.x5f_c00116{left:75.742500px;}
.x77_c00116{left:78.157500px;}
.x16_c00116{left:80.460000px;}
.x2f_c00116{left:81.540000px;}
.x27_c00116{left:82.620000px;}
.x4c_c00116{left:85.860000px;}
.x71_c00116{left:89.103000px;}
.x1c_c00116{left:90.990000px;}
.x78_c00116{left:92.664000px;}
.x67_c00116{left:95.313000px;}
.x5_c00116{left:102.223500px;}
.x39_c00116{left:103.410000px;}
.x49_c00116{left:104.490000px;}
.x6b_c00116{left:107.733000px;}
.x17_c00116{left:111.510000px;}
.x6e_c00116{left:113.943000px;}
.x57_c00116{left:115.551000px;}
.x7b_c00116{left:119.613000px;}
.x3e_c00116{left:121.770000px;}
.xe_c00116{left:123.208500px;}
.x30_c00116{left:124.470000px;}
.x66_c00116{left:128.523000px;}
.x3a_c00116{left:130.680000px;}
.x18_c00116{left:134.190000px;}
.x4d_c00116{left:135.270000px;}
.xf_c00116{left:136.773000px;}
.x53_c00116{left:139.996500px;}
.x21_c00116{left:141.750000px;}
.x35_c00116{left:146.340000px;}
.x42_c00116{left:147.690000px;}
.x72_c00116{left:148.773000px;}
.x63_c00116{left:152.658000px;}
.x28_c00116{left:157.140000px;}
.x43_c00116{left:160.920000px;}
.x22_c00116{left:162.540000px;}
.x7c_c00116{left:165.783000px;}
.x5a_c00116{left:167.248500px;}
.x6_c00116{left:168.363000px;}
.x64_c00116{left:169.977000px;}
.x19_c00116{left:171.180000px;}
.x1_c00116{left:173.070000px;}
.x6d_c00116{left:174.153000px;}
.x3f_c00116{left:175.770000px;}
.x29_c00116{left:177.390000px;}
.x7_c00116{left:181.332000px;}
.x10_c00116{left:183.697500px;}
.x4a_c00116{left:187.650000px;}
.x79_c00116{left:189.463500px;}
.x6f_c00116{left:193.053000px;}
.x73_c00116{left:195.483000px;}
.x68_c00116{left:197.373000px;}
.x1d_c00116{left:201.150000px;}
.x54_c00116{left:203.172000px;}
.x44_c00116{left:204.390000px;}
.x23_c00116{left:206.550000px;}
.x70_c00116{left:207.633000px;}
.x36_c00116{left:209.790000px;}
.x11_c00116{left:211.300500px;}
.x8_c00116{left:218.811000px;}
.x5d_c00116{left:221.805000px;}
.x24_c00116{left:223.830000px;}
.x40_c00116{left:225.180000px;}
.x12_c00116{left:227.229000px;}
.x58_c00116{left:228.927000px;}
.x2a_c00116{left:231.660000px;}
.x45_c00116{left:233.550000px;}
.x1a_c00116{left:236.520000px;}
.x31_c00116{left:238.140000px;}
.x3b_c00116{left:243.270000px;}
.x9_c00116{left:245.050500px;}
.x13_c00116{left:246.339000px;}
.x46_c00116{left:251.370000px;}
.x32_c00116{left:253.800000px;}
.x65_c00116{left:255.325500px;}
.x74_c00116{left:260.283000px;}
.x1e_c00116{left:262.170000px;}
.x4e_c00116{left:263.520000px;}
.x37_c00116{left:265.950000px;}
.x5b_c00116{left:270.387000px;}
.x59_c00116{left:274.009500px;}
.xa_c00116{left:275.509500px;}
.x14_c00116{left:276.934500px;}
.x2_c00116{left:278.370000px;}
.x33_c00116{left:279.720000px;}
.x6c_c00116{left:283.233000px;}
.x38_c00116{left:284.850000px;}
.x1f_c00116{left:286.740000px;}
.xb_c00116{left:288.540000px;}
.x69_c00116{left:291.063000px;}
.x41_c00116{left:292.950000px;}
.x3c_c00116{left:294.840000px;}
.x25_c00116{left:297.810000px;}
.x7d_c00116{left:298.890000px;}
.x55_c00116{left:300.879000px;}
.x60_c00116{left:301.999500px;}
.x7a_c00116{left:306.508500px;}
.x2b_c00116{left:308.610000px;}
.x4f_c00116{left:312.660000px;}
.x75_c00116{left:315.363000px;}
.x6a_c00116{left:318.333000px;}
.x61_c00116{left:319.545000px;}
.x7e_c00116{left:321.840000px;}
.x5e_c00116{left:323.088000px;}
.x5c_c00116{left:324.121500px;}
.x2c_c00116{left:325.350000px;}
.x47_c00116{left:331.560000px;}
.x4b_c00116{left:332.910000px;}
.x50_c00116{left:353.700000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.fs11_c00116{font-size:15.866667pt;}
.fs12_c00116{font-size:20.533333pt;}
.fse_c00116{font-size:47.600000pt;}
.fs10_c00116{font-size:51.333333pt;}
.fs7_c00116{font-size:54.133333pt;}
.fsd_c00116{font-size:56.000000pt;}
.fsf_c00116{font-size:56.933333pt;}
.fs3_c00116{font-size:57.866667pt;}
.fsc_c00116{font-size:58.800000pt;}
.fsa_c00116{font-size:59.733333pt;}
.fs2_c00116{font-size:59.737634pt;}
.fsb_c00116{font-size:60.666667pt;}
.fs0_c00116{font-size:61.600000pt;}
.fs8_c00116{font-size:62.533333pt;}
.fs9_c00116{font-size:63.466667pt;}
.fs1_c00116{font-size:63.471236pt;}
.fs4_c00116{font-size:64.400000pt;}
.fs5_c00116{font-size:66.266667pt;}
.fs6_c00116{font-size:67.200000pt;}
.y0_c00116{bottom:0.000000pt;}
.y69_c00116{bottom:13.365333pt;}
.y68_c00116{bottom:26.781333pt;}
.y67_c00116{bottom:42.020000pt;}
.y66_c00116{bottom:42.530667pt;}
.y65_c00116{bottom:43.396000pt;}
.y64_c00116{bottom:43.996000pt;}
.y63_c00116{bottom:45.630667pt;}
.y62_c00116{bottom:46.566667pt;}
.y61_c00116{bottom:57.300000pt;}
.y60_c00116{bottom:57.518667pt;}
.y5f_c00116{bottom:57.905333pt;}
.y5e_c00116{bottom:58.349333pt;}
.y5d_c00116{bottom:58.532000pt;}
.y5c_c00116{bottom:58.932000pt;}
.y5b_c00116{bottom:59.156000pt;}
.y5a_c00116{bottom:59.336000pt;}
.y59_c00116{bottom:59.533333pt;}
.y58_c00116{bottom:72.482667pt;}
.y57_c00116{bottom:91.684000pt;}
.y56_c00116{bottom:104.230667pt;}
.y55_c00116{bottom:118.185333pt;}
.y54_c00116{bottom:134.334667pt;}
.y53_c00116{bottom:150.004000pt;}
.y52_c00116{bottom:166.116000pt;}
.y51_c00116{bottom:181.785333pt;}
.y50_c00116{bottom:196.212000pt;}
.y4f_c00116{bottom:196.484000pt;}
.y4e_c00116{bottom:196.666667pt;}
.y4d_c00116{bottom:197.201333pt;}
.y4c_c00116{bottom:197.653333pt;}
.y4b_c00116{bottom:197.853333pt;}
.y4a_c00116{bottom:198.424000pt;}
.y49_c00116{bottom:198.677333pt;}
.y48_c00116{bottom:198.808000pt;}
.y47_c00116{bottom:199.204000pt;}
.y46_c00116{bottom:212.520000pt;}
.y45_c00116{bottom:212.692000pt;}
.y44_c00116{bottom:213.185333pt;}
.y43_c00116{bottom:213.354667pt;}
.y42_c00116{bottom:213.481333pt;}
.y41_c00116{bottom:214.222667pt;}
.y40_c00116{bottom:214.370667pt;}
.y3f_c00116{bottom:214.904000pt;}
.y3e_c00116{bottom:215.124000pt;}
.y3d_c00116{bottom:215.285333pt;}
.y3c_c00116{bottom:228.094667pt;}
.y3b_c00116{bottom:229.085333pt;}
.y3a_c00116{bottom:229.573333pt;}
.y39_c00116{bottom:229.805333pt;}
.y38_c00116{bottom:230.444000pt;}
.y37_c00116{bottom:230.885333pt;}
.y36_c00116{bottom:244.146667pt;}
.y35_c00116{bottom:244.720000pt;}
.y34_c00116{bottom:244.996000pt;}
.y33_c00116{bottom:245.820000pt;}
.y32_c00116{bottom:246.142667pt;}
.y31_c00116{bottom:246.942667pt;}
.y30_c00116{bottom:247.205333pt;}
.y2f_c00116{bottom:257.764000pt;}
.y2e_c00116{bottom:258.118667pt;}
.y2d_c00116{bottom:258.920000pt;}
.y2c_c00116{bottom:259.265333pt;}
.y2b_c00116{bottom:259.733333pt;}
.y2a_c00116{bottom:260.934667pt;}
.y29_c00116{bottom:261.693333pt;}
.y28_c00116{bottom:262.326667pt;}
.y27_c00116{bottom:276.069333pt;}
.y26_c00116{bottom:276.312000pt;}
.y25_c00116{bottom:276.866667pt;}
.y24_c00116{bottom:277.025333pt;}
.y23_c00116{bottom:277.642667pt;}
.y22_c00116{bottom:278.456000pt;}
.y21_c00116{bottom:278.642667pt;}
.y20_c00116{bottom:292.149333pt;}
.y1f_c00116{bottom:306.020000pt;}
.y6b_c00116{bottom:320.762667pt;}
.y1e_c00116{bottom:322.801333pt;}
.y6a_c00116{bottom:324.361333pt;}
.y1d_c00116{bottom:336.808000pt;}
.y1c_c00116{bottom:352.561333pt;}
.y1b_c00116{bottom:368.298667pt;}
.y1a_c00116{bottom:383.934667pt;}
.y19_c00116{bottom:397.824000pt;}
.y18_c00116{bottom:414.233333pt;}
.y17_c00116{bottom:429.564000pt;}
.y16_c00116{bottom:445.510667pt;}
.y15_c00116{bottom:461.380000pt;}
.y14_c00116{bottom:476.517333pt;}
.yb_c00116{bottom:491.041333pt;}
.yc_c00116{bottom:491.219957pt;}
.yd_c00116{bottom:491.852853pt;}
.ye_c00116{bottom:491.997541pt;}
.yf_c00116{bottom:492.498069pt;}
.y10_c00116{bottom:492.792501pt;}
.y11_c00116{bottom:492.962405pt;}
.y12_c00116{bottom:493.166245pt;}
.y13_c00116{bottom:493.492597pt;}
.y2_c00116{bottom:506.401333pt;}
.y3_c00116{bottom:506.734805pt;}
.y4_c00116{bottom:507.089637pt;}
.y5_c00116{bottom:507.795125pt;}
.y6_c00116{bottom:507.933461pt;}
.y7_c00116{bottom:508.333237pt;}
.y8_c00116{bottom:508.613125pt;}
.y9_c00116{bottom:508.938021pt;}
.ya_c00116{bottom:509.077013pt;}
.y1_c00116{bottom:522.846667pt;}
.h13_c00116{height:15.866667pt;}
.h14_c00116{height:20.533333pt;}
.h10_c00116{height:47.600000pt;}
.h12_c00116{height:51.333333pt;}
.h9_c00116{height:54.133333pt;}
.hf_c00116{height:56.000000pt;}
.h11_c00116{height:56.933333pt;}
.h5_c00116{height:57.866667pt;}
.he_c00116{height:58.800000pt;}
.hc_c00116{height:59.733333pt;}
.h4_c00116{height:59.737634pt;}
.hd_c00116{height:60.666667pt;}
.h2_c00116{height:61.600000pt;}
.ha_c00116{height:62.533333pt;}
.hb_c00116{height:63.466667pt;}
.h3_c00116{height:63.471236pt;}
.h6_c00116{height:64.400000pt;}
.h7_c00116{height:66.266667pt;}
.h8_c00116{height:67.200000pt;}
.h1_c00116{height:562.000000pt;}
.h0_c00116{height:562.266667pt;}
.w0_c00116{width:330.480000pt;}
.w1_c00116{width:330.666667pt;}
.x0_c00116{left:0.000000pt;}
.x51_c00116{left:32.160000pt;}
.x3_c00116{left:33.506667pt;}
.x2d_c00116{left:34.560000pt;}
.xc_c00116{left:41.892000pt;}
.x15_c00116{left:43.200000pt;}
.x20_c00116{left:45.120000pt;}
.x2e_c00116{left:46.560000pt;}
.x48_c00116{left:47.520000pt;}
.x52_c00116{left:50.528000pt;}
.x76_c00116{left:51.461333pt;}
.x26_c00116{left:54.480000pt;}
.xd_c00116{left:56.777333pt;}
.x34_c00116{left:58.320000pt;}
.x3d_c00116{left:60.000000pt;}
.x4_c00116{left:61.296000pt;}
.x62_c00116{left:62.237333pt;}
.x56_c00116{left:64.806667pt;}
.x1b_c00116{left:65.760000pt;}
.x5f_c00116{left:67.326667pt;}
.x77_c00116{left:69.473333pt;}
.x16_c00116{left:71.520000pt;}
.x2f_c00116{left:72.480000pt;}
.x27_c00116{left:73.440000pt;}
.x4c_c00116{left:76.320000pt;}
.x71_c00116{left:79.202667pt;}
.x1c_c00116{left:80.880000pt;}
.x78_c00116{left:82.368000pt;}
.x67_c00116{left:84.722667pt;}
.x5_c00116{left:90.865333pt;}
.x39_c00116{left:91.920000pt;}
.x49_c00116{left:92.880000pt;}
.x6b_c00116{left:95.762667pt;}
.x17_c00116{left:99.120000pt;}
.x6e_c00116{left:101.282667pt;}
.x57_c00116{left:102.712000pt;}
.x7b_c00116{left:106.322667pt;}
.x3e_c00116{left:108.240000pt;}
.xe_c00116{left:109.518667pt;}
.x30_c00116{left:110.640000pt;}
.x66_c00116{left:114.242667pt;}
.x3a_c00116{left:116.160000pt;}
.x18_c00116{left:119.280000pt;}
.x4d_c00116{left:120.240000pt;}
.xf_c00116{left:121.576000pt;}
.x53_c00116{left:124.441333pt;}
.x21_c00116{left:126.000000pt;}
.x35_c00116{left:130.080000pt;}
.x42_c00116{left:131.280000pt;}
.x72_c00116{left:132.242667pt;}
.x63_c00116{left:135.696000pt;}
.x28_c00116{left:139.680000pt;}
.x43_c00116{left:143.040000pt;}
.x22_c00116{left:144.480000pt;}
.x7c_c00116{left:147.362667pt;}
.x5a_c00116{left:148.665333pt;}
.x6_c00116{left:149.656000pt;}
.x64_c00116{left:151.090667pt;}
.x19_c00116{left:152.160000pt;}
.x1_c00116{left:153.840000pt;}
.x6d_c00116{left:154.802667pt;}
.x3f_c00116{left:156.240000pt;}
.x29_c00116{left:157.680000pt;}
.x7_c00116{left:161.184000pt;}
.x10_c00116{left:163.286667pt;}
.x4a_c00116{left:166.800000pt;}
.x79_c00116{left:168.412000pt;}
.x6f_c00116{left:171.602667pt;}
.x73_c00116{left:173.762667pt;}
.x68_c00116{left:175.442667pt;}
.x1d_c00116{left:178.800000pt;}
.x54_c00116{left:180.597333pt;}
.x44_c00116{left:181.680000pt;}
.x23_c00116{left:183.600000pt;}
.x70_c00116{left:184.562667pt;}
.x36_c00116{left:186.480000pt;}
.x11_c00116{left:187.822667pt;}
.x8_c00116{left:194.498667pt;}
.x5d_c00116{left:197.160000pt;}
.x24_c00116{left:198.960000pt;}
.x40_c00116{left:200.160000pt;}
.x12_c00116{left:201.981333pt;}
.x58_c00116{left:203.490667pt;}
.x2a_c00116{left:205.920000pt;}
.x45_c00116{left:207.600000pt;}
.x1a_c00116{left:210.240000pt;}
.x31_c00116{left:211.680000pt;}
.x3b_c00116{left:216.240000pt;}
.x9_c00116{left:217.822667pt;}
.x13_c00116{left:218.968000pt;}
.x46_c00116{left:223.440000pt;}
.x32_c00116{left:225.600000pt;}
.x65_c00116{left:226.956000pt;}
.x74_c00116{left:231.362667pt;}
.x1e_c00116{left:233.040000pt;}
.x4e_c00116{left:234.240000pt;}
.x37_c00116{left:236.400000pt;}
.x5b_c00116{left:240.344000pt;}
.x59_c00116{left:243.564000pt;}
.xa_c00116{left:244.897333pt;}
.x14_c00116{left:246.164000pt;}
.x2_c00116{left:247.440000pt;}
.x33_c00116{left:248.640000pt;}
.x6c_c00116{left:251.762667pt;}
.x38_c00116{left:253.200000pt;}
.x1f_c00116{left:254.880000pt;}
.xb_c00116{left:256.480000pt;}
.x69_c00116{left:258.722667pt;}
.x41_c00116{left:260.400000pt;}
.x3c_c00116{left:262.080000pt;}
.x25_c00116{left:264.720000pt;}
.x7d_c00116{left:265.680000pt;}
.x55_c00116{left:267.448000pt;}
.x60_c00116{left:268.444000pt;}
.x7a_c00116{left:272.452000pt;}
.x2b_c00116{left:274.320000pt;}
.x4f_c00116{left:277.920000pt;}
.x75_c00116{left:280.322667pt;}
.x6a_c00116{left:282.962667pt;}
.x61_c00116{left:284.040000pt;}
.x7e_c00116{left:286.080000pt;}
.x5e_c00116{left:287.189333pt;}
.x5c_c00116{left:288.108000pt;}
.x2c_c00116{left:289.200000pt;}
.x47_c00116{left:294.720000pt;}
.x4b_c00116{left:295.920000pt;}
.x50_c00116{left:314.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00117 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00117 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00117 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00117 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00117{transform:matrix(0.015715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015715,0.000000,0.000000,0.250000,0,0);}
.m4a_c00117{transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.109360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109360,0.000000,0.000000,0.250000,0,0);}
.mf0_c00117{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131105,0.000000,0.000000,0.250000,0,0);}
.mf2_c00117{transform:matrix(0.135970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135970,0.000000,0.000000,0.250000,0,0);}
.mee_c00117{transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);}
.m71_c00117{transform:matrix(0.145070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145070,0.000000,0.000000,0.250000,0,0);}
.maa_c00117{transform:matrix(0.146780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146780,0.000000,0.000000,0.250000,0,0);}
.mad_c00117{transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00117{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m79_c00117{transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);}
.mbe_c00117{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m6a_c00117{transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153240,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00117{transform:matrix(0.154130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154130,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.mc7_c00117{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.mb9_c00117{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.med_c00117{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m63_c00117{transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);}
.mb1_c00117{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.164455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164455,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.mbf_c00117{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.md7_c00117{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.m76_c00117{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.m62_c00117{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.mcc_c00117{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.mdf_c00117{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);}
.me1_c00117{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m61_c00117{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m5f_c00117{transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);}
.meb_c00117{transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169665,0.000000,0.000000,0.250000,0,0);}
.m98_c00117{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);}
.m67_c00117{transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);}
.mef_c00117{transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);}
.mae_c00117{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.md3_c00117{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.md9_c00117{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m90_c00117{transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);}
.m48_c00117{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m6d_c00117{transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);}
.me7_c00117{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.mca_c00117{transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);}
.m5d_c00117{transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.me2_c00117{transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m6c_c00117{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);}
.mc9_c00117{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m77_c00117{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.mcb_c00117{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.ma4_c00117{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.ma9_c00117{transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);}
.m65_c00117{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.mdc_c00117{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.m93_c00117{transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);}
.m58_c00117{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.mb7_c00117{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.m4c_c00117{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.mac_c00117{transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);}
.m81_c00117{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m73_c00117{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);}
.mdd_c00117{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m7e_c00117{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.mab_c00117{transform:matrix(0.179240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179240,0.000000,0.000000,0.250000,0,0);}
.me3_c00117{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.md8_c00117{transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m52_c00117{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.m3d_c00117{transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);}
.m8b_c00117{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);}
.mb5_c00117{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m68_c00117{transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.mc8_c00117{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m2d_c00117{transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);}
.mc2_c00117{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.m60_c00117{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m87_c00117{transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);}
.mbb_c00117{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00117{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.m69_c00117{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m3c_c00117{transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m9c_c00117{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m75_c00117{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.me0_c00117{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);}
.mbd_c00117{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.ma8_c00117{transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);}
.me5_c00117{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.md1_c00117{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.mb2_c00117{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m94_c00117{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m43_c00117{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);}
.mf1_c00117{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m5b_c00117{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.mec_c00117{transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);}
.mba_c00117{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);}
.m83_c00117{transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);}
.m78_c00117{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.md6_c00117{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.mde_c00117{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m5e_c00117{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m95_c00117{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.maf_c00117{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mc6_c00117{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00117{transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);}
.m5c_c00117{transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);}
.mc0_c00117{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00117{transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);}
.m50_c00117{transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);}
.mdb_c00117{transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);}
.mda_c00117{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m4d_c00117{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.m6b_c00117{transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);}
.m72_c00117{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m66_c00117{transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);}
.m84_c00117{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m64_c00117{transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);}
.m46_c00117{transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.mcd_c00117{transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);}
.m59_c00117{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.m99_c00117{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.ma6_c00117{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.m7f_c00117{transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);}
.mb8_c00117{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.ma0_c00117{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.mce_c00117{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.m56_c00117{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.m8f_c00117{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.ma2_c00117{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m70_c00117{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.m9a_c00117{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.204420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204420,0.000000,0.000000,0.250000,0,0);}
.m51_c00117{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m5a_c00117{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);}
.m97_c00117{transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.md2_c00117{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m57_c00117{transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);}
.mc5_c00117{transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208615,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);}
.m96_c00117{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.md0_c00117{transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);}
.m80_c00117{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.md5_c00117{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.ma1_c00117{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mea_c00117{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m74_c00117{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.ma3_c00117{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mcf_c00117{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.m92_c00117{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00117{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.me8_c00117{transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00117{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.m91_c00117{transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);}
.ma5_c00117{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m82_c00117{transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.m4f_c00117{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m88_c00117{transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00117{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m53_c00117{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.m6e_c00117{transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);}
.m85_c00117{transform:matrix(0.220140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220140,0.000000,0.000000,0.250000,0,0);}
.mb4_c00117{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m9f_c00117{transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);}
.m8c_c00117{transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);}
.mc3_c00117{transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);}
.mb6_c00117{transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);}
.m4e_c00117{transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);}
.me4_c00117{transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);}
.m89_c00117{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.md4_c00117{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.me9_c00117{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);}
.me6_c00117{transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);}
.m8a_c00117{transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.ma7_c00117{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m9e_c00117{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00117{transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);}
.m8d_c00117{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m54_c00117{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.m86_c00117{transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.258960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00117{transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m7a_c00117{transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(0.280285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280285,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.282855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282855,0.000000,0.000000,0.250000,0,0);}
.m7b_c00117{transform:matrix(0.286060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286060,0.000000,0.000000,0.250000,0,0);}
.m7c_c00117{transform:matrix(0.305990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305990,0.000000,0.000000,0.250000,0,0);}
.mb0_c00117{transform:matrix(0.308420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308420,0.000000,0.000000,0.250000,0,0);}
.m55_c00117{transform:matrix(0.332275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332275,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.349630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349630,0.000000,0.000000,0.250000,0,0);}
.m9d_c00117{transform:matrix(0.353760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353760,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.mf3_c00117{transform:matrix(1.961630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.961630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.961630,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
.fc0_c00117{color:transparent;}
.fsd_c00117{font-size:22.050000px;}
.fs9_c00117{font-size:58.800000px;}
.fs7_c00117{font-size:60.900000px;}
.fs5_c00117{font-size:61.950000px;}
.fsa_c00117{font-size:63.000000px;}
.fs0_c00117{font-size:64.050000px;}
.fs8_c00117{font-size:66.150000px;}
.fs4_c00117{font-size:67.200000px;}
.fs3_c00117{font-size:68.250000px;}
.fs6_c00117{font-size:69.300000px;}
.fs1_c00117{font-size:70.350000px;}
.fs2_c00117{font-size:73.500000px;}
.fsb_c00117{font-size:74.550000px;}
.fsc_c00117{font-size:76.650000px;}
.y0_c00117{bottom:0.000000px;}
.yf1_c00117{bottom:22.429500px;}
.yf2_c00117{bottom:22.977000px;}
.yf3_c00117{bottom:24.409500px;}
.yf4_c00117{bottom:25.936500px;}
.yf5_c00117{bottom:26.476500px;}
.yf6_c00117{bottom:27.234000px;}
.yf7_c00117{bottom:27.714000px;}
.yf8_c00117{bottom:29.961000px;}
.yea_c00117{bottom:39.445500px;}
.yeb_c00117{bottom:41.683500px;}
.yec_c00117{bottom:42.385500px;}
.yed_c00117{bottom:44.109000px;}
.yee_c00117{bottom:44.821500px;}
.yef_c00117{bottom:47.430000px;}
.yf0_c00117{bottom:47.952000px;}
.ye2_c00117{bottom:57.258000px;}
.ye3_c00117{bottom:57.963000px;}
.ye4_c00117{bottom:59.416500px;}
.ye5_c00117{bottom:59.986500px;}
.ye6_c00117{bottom:60.465000px;}
.ye7_c00117{bottom:61.824000px;}
.ye8_c00117{bottom:62.538000px;}
.ye9_c00117{bottom:63.514500px;}
.ydc_c00117{bottom:74.809500px;}
.ydd_c00117{bottom:77.380500px;}
.yde_c00117{bottom:78.487500px;}
.ydf_c00117{bottom:79.567500px;}
.ye0_c00117{bottom:81.006000px;}
.ye1_c00117{bottom:81.472500px;}
.yd4_c00117{bottom:92.088000px;}
.yd5_c00117{bottom:93.793500px;}
.yd6_c00117{bottom:95.158500px;}
.yd7_c00117{bottom:96.535500px;}
.yd8_c00117{bottom:97.081500px;}
.yd9_c00117{bottom:97.866000px;}
.yda_c00117{bottom:99.064500px;}
.ydb_c00117{bottom:99.654000px;}
.ycb_c00117{bottom:109.366500px;}
.ycc_c00117{bottom:110.721000px;}
.ycd_c00117{bottom:111.258000px;}
.yce_c00117{bottom:112.504500px;}
.ycf_c00117{bottom:113.367000px;}
.yd0_c00117{bottom:113.952000px;}
.yd1_c00117{bottom:115.047000px;}
.yd2_c00117{bottom:115.534500px;}
.yd3_c00117{bottom:117.097500px;}
.yc4_c00117{bottom:126.649500px;}
.yc5_c00117{bottom:128.181000px;}
.yc6_c00117{bottom:128.652000px;}
.yc7_c00117{bottom:129.484500px;}
.yc8_c00117{bottom:130.950000px;}
.yc9_c00117{bottom:132.421500px;}
.yca_c00117{bottom:133.588500px;}
.ybb_c00117{bottom:145.543500px;}
.ybc_c00117{bottom:146.058000px;}
.ybd_c00117{bottom:147.246000px;}
.ybe_c00117{bottom:147.660000px;}
.ybf_c00117{bottom:148.201500px;}
.yc0_c00117{bottom:149.221500px;}
.yc1_c00117{bottom:149.943000px;}
.yc2_c00117{bottom:150.474000px;}
.yc3_c00117{bottom:150.894000px;}
.yb4_c00117{bottom:163.093500px;}
.yb5_c00117{bottom:163.564500px;}
.yb6_c00117{bottom:165.081000px;}
.yb7_c00117{bottom:165.324000px;}
.yb8_c00117{bottom:165.670500px;}
.yb9_c00117{bottom:166.980000px;}
.yba_c00117{bottom:167.505000px;}
.yaa_c00117{bottom:181.722000px;}
.yab_c00117{bottom:182.268000px;}
.yac_c00117{bottom:182.683500px;}
.yad_c00117{bottom:183.129000px;}
.yae_c00117{bottom:183.720000px;}
.yaf_c00117{bottom:184.881000px;}
.yb0_c00117{bottom:185.211000px;}
.yb1_c00117{bottom:185.616000px;}
.yb2_c00117{bottom:187.219500px;}
.yb3_c00117{bottom:187.396500px;}
.ya3_c00117{bottom:198.999000px;}
.ya4_c00117{bottom:199.485000px;}
.ya5_c00117{bottom:200.361000px;}
.ya6_c00117{bottom:200.719500px;}
.ya7_c00117{bottom:201.085500px;}
.ya8_c00117{bottom:202.348500px;}
.ya9_c00117{bottom:203.214000px;}
.y9e_c00117{bottom:216.552000px;}
.y9f_c00117{bottom:217.659000px;}
.ya0_c00117{bottom:218.866500px;}
.ya1_c00117{bottom:219.438000px;}
.ya2_c00117{bottom:221.365500px;}
.y95_c00117{bottom:234.370500px;}
.y96_c00117{bottom:235.381500px;}
.y97_c00117{bottom:236.131500px;}
.y98_c00117{bottom:236.593500px;}
.y99_c00117{bottom:237.798000px;}
.y9a_c00117{bottom:238.050000px;}
.y9b_c00117{bottom:238.495500px;}
.y9c_c00117{bottom:239.377500px;}
.y9d_c00117{bottom:239.752500px;}
.y8c_c00117{bottom:252.190500px;}
.y8d_c00117{bottom:252.639000px;}
.y8e_c00117{bottom:253.486500px;}
.y8f_c00117{bottom:255.231000px;}
.y90_c00117{bottom:255.882000px;}
.y91_c00117{bottom:256.297500px;}
.y92_c00117{bottom:256.837500px;}
.y93_c00117{bottom:257.352000px;}
.y94_c00117{bottom:257.973000px;}
.y87_c00117{bottom:269.203500px;}
.y88_c00117{bottom:270.558000px;}
.y89_c00117{bottom:271.063500px;}
.y8a_c00117{bottom:271.632000px;}
.y8b_c00117{bottom:273.430500px;}
.y7f_c00117{bottom:285.943500px;}
.y80_c00117{bottom:287.374500px;}
.y81_c00117{bottom:287.725500px;}
.y82_c00117{bottom:288.922500px;}
.y83_c00117{bottom:289.491000px;}
.y84_c00117{bottom:289.858500px;}
.y85_c00117{bottom:290.760000px;}
.y86_c00117{bottom:291.316500px;}
.yf9_c00117{bottom:293.220000px;}
.y75_c00117{bottom:303.222000px;}
.y76_c00117{bottom:303.906000px;}
.y77_c00117{bottom:305.893500px;}
.y78_c00117{bottom:306.484500px;}
.y79_c00117{bottom:306.874500px;}
.y7a_c00117{bottom:307.654500px;}
.y7b_c00117{bottom:308.109000px;}
.y7c_c00117{bottom:308.538000px;}
.y7d_c00117{bottom:309.360000px;}
.y7e_c00117{bottom:309.568500px;}
.y70_c00117{bottom:319.695000px;}
.y71_c00117{bottom:322.561500px;}
.y72_c00117{bottom:323.097000px;}
.y73_c00117{bottom:325.327500px;}
.y74_c00117{bottom:326.128500px;}
.y6a_c00117{bottom:336.975000px;}
.y6b_c00117{bottom:339.147000px;}
.y6c_c00117{bottom:339.708000px;}
.y6d_c00117{bottom:340.329000px;}
.y6e_c00117{bottom:342.748500px;}
.y6f_c00117{bottom:344.064000px;}
.y61_c00117{bottom:354.519000px;}
.y62_c00117{bottom:355.143000px;}
.y63_c00117{bottom:356.331000px;}
.y64_c00117{bottom:356.895000px;}
.y65_c00117{bottom:357.303000px;}
.y66_c00117{bottom:357.861000px;}
.y67_c00117{bottom:359.758500px;}
.y68_c00117{bottom:360.394500px;}
.y69_c00117{bottom:361.365000px;}
.y58_c00117{bottom:372.609000px;}
.y59_c00117{bottom:372.961500px;}
.y5a_c00117{bottom:374.247000px;}
.y5b_c00117{bottom:374.658000px;}
.y5c_c00117{bottom:375.621000px;}
.y5d_c00117{bottom:376.047000px;}
.y5e_c00117{bottom:376.959000px;}
.y5f_c00117{bottom:377.767500px;}
.y60_c00117{bottom:378.285000px;}
.y4e_c00117{bottom:391.236000px;}
.y4f_c00117{bottom:391.699500px;}
.y50_c00117{bottom:392.274000px;}
.y51_c00117{bottom:393.531000px;}
.y52_c00117{bottom:393.924000px;}
.y53_c00117{bottom:394.818000px;}
.y54_c00117{bottom:395.064000px;}
.y55_c00117{bottom:395.485500px;}
.y56_c00117{bottom:395.875500px;}
.y57_c00117{bottom:396.727500px;}
.y46_c00117{bottom:408.247500px;}
.y47_c00117{bottom:409.101000px;}
.y48_c00117{bottom:410.100000px;}
.y49_c00117{bottom:410.923500px;}
.y4a_c00117{bottom:411.492000px;}
.y4b_c00117{bottom:411.822000px;}
.y4c_c00117{bottom:412.884000px;}
.y4d_c00117{bottom:413.184000px;}
.y3e_c00117{bottom:425.256000px;}
.y3f_c00117{bottom:426.292500px;}
.y40_c00117{bottom:427.114500px;}
.y41_c00117{bottom:427.378500px;}
.y42_c00117{bottom:427.729500px;}
.y43_c00117{bottom:429.031500px;}
.y44_c00117{bottom:429.976500px;}
.y45_c00117{bottom:431.019000px;}
.y36_c00117{bottom:443.613000px;}
.y37_c00117{bottom:443.938500px;}
.y38_c00117{bottom:444.385500px;}
.y39_c00117{bottom:445.794000px;}
.y3a_c00117{bottom:446.871000px;}
.y3b_c00117{bottom:447.378000px;}
.y3c_c00117{bottom:447.672000px;}
.y3d_c00117{bottom:448.585500px;}
.y30_c00117{bottom:460.894500px;}
.y31_c00117{bottom:461.700000px;}
.y32_c00117{bottom:462.879000px;}
.y33_c00117{bottom:463.363500px;}
.y34_c00117{bottom:464.809500px;}
.y35_c00117{bottom:465.787500px;}
.y2c_c00117{bottom:476.826000px;}
.y2d_c00117{bottom:477.961500px;}
.y2e_c00117{bottom:478.447500px;}
.y2f_c00117{bottom:483.807000px;}
.y25_c00117{bottom:494.107500px;}
.y26_c00117{bottom:496.329000px;}
.y27_c00117{bottom:496.620000px;}
.y28_c00117{bottom:496.950000px;}
.y29_c00117{bottom:497.622000px;}
.y2a_c00117{bottom:499.279500px;}
.y2b_c00117{bottom:499.927500px;}
.y1b_c00117{bottom:511.656000px;}
.y1c_c00117{bottom:511.954500px;}
.y1d_c00117{bottom:513.022500px;}
.y1e_c00117{bottom:513.288000px;}
.y1f_c00117{bottom:513.774000px;}
.y20_c00117{bottom:514.800000px;}
.y21_c00117{bottom:515.215500px;}
.y22_c00117{bottom:515.566500px;}
.y23_c00117{bottom:517.156500px;}
.y24_c00117{bottom:517.401000px;}
.y10_c00117{bottom:528.670500px;}
.y11_c00117{bottom:529.234500px;}
.y12_c00117{bottom:529.620000px;}
.y13_c00117{bottom:529.972500px;}
.y14_c00117{bottom:530.367000px;}
.y15_c00117{bottom:531.417000px;}
.y16_c00117{bottom:531.840000px;}
.y17_c00117{bottom:533.662500px;}
.y18_c00117{bottom:533.980500px;}
.y19_c00117{bottom:534.391500px;}
.y1a_c00117{bottom:535.444500px;}
.y9_c00117{bottom:545.949000px;}
.ya_c00117{bottom:547.212000px;}
.yb_c00117{bottom:548.929500px;}
.yc_c00117{bottom:549.436500px;}
.yd_c00117{bottom:549.946500px;}
.ye_c00117{bottom:551.263500px;}
.yf_c00117{bottom:552.946500px;}
.y2_c00117{bottom:562.155000px;}
.y3_c00117{bottom:563.145000px;}
.y4_c00117{bottom:563.829000px;}
.y5_c00117{bottom:565.066500px;}
.y6_c00117{bottom:565.608000px;}
.y7_c00117{bottom:568.099500px;}
.y8_c00117{bottom:569.805000px;}
.y1_c00117{bottom:581.449500px;}
.hf_c00117{height:22.050000px;}
.hb_c00117{height:58.800000px;}
.h9_c00117{height:60.900000px;}
.h7_c00117{height:61.950000px;}
.hc_c00117{height:63.000000px;}
.h2_c00117{height:64.050000px;}
.ha_c00117{height:66.150000px;}
.h6_c00117{height:67.200000px;}
.h5_c00117{height:68.250000px;}
.h8_c00117{height:69.300000px;}
.h3_c00117{height:70.350000px;}
.h4_c00117{height:73.500000px;}
.hd_c00117{height:74.550000px;}
.he_c00117{height:76.650000px;}
.h0_c00117{height:632.850000px;}
.h1_c00117{height:633.000000px;}
.w0_c00117{width:371.790000px;}
.w1_c00117{width:372.000000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:42.652500px;}
.x48_c00117{left:43.689000px;}
.x53_c00117{left:45.090000px;}
.x38_c00117{left:52.281000px;}
.x6c_c00117{left:53.545500px;}
.x17_c00117{left:57.799500px;}
.x41_c00117{left:59.979000px;}
.x26_c00117{left:61.804500px;}
.xf_c00117{left:66.264000px;}
.x49_c00117{left:69.666000px;}
.x60_c00117{left:72.295500px;}
.x39_c00117{left:76.659000px;}
.x3_c00117{left:79.345500px;}
.x10_c00117{left:82.338000px;}
.x32_c00117{left:85.873500px;}
.x2b_c00117{left:88.518000px;}
.x24_c00117{left:90.769500px;}
.x9_c00117{left:92.964000px;}
.x2e_c00117{left:94.789500px;}
.x11_c00117{left:97.000500px;}
.x67_c00117{left:101.940000px;}
.x4_c00117{left:104.677500px;}
.x3a_c00117{left:106.918500px;}
.x59_c00117{left:109.356000px;}
.x18_c00117{left:111.228000px;}
.x57_c00117{left:112.303500px;}
.x12_c00117{left:113.461500px;}
.x69_c00117{left:114.889500px;}
.x54_c00117{left:116.622000px;}
.x4a_c00117{left:119.157000px;}
.x42_c00117{left:121.162500px;}
.x70_c00117{left:122.943000px;}
.x19_c00117{left:124.468500px;}
.x55_c00117{left:134.187000px;}
.x2f_c00117{left:135.873000px;}
.x58_c00117{left:137.592000px;}
.x43_c00117{left:140.718000px;}
.x20_c00117{left:142.942500px;}
.x4d_c00117{left:144.292500px;}
.x1a_c00117{left:148.753500px;}
.x5_c00117{left:150.501000px;}
.x5f_c00117{left:155.058000px;}
.x21_c00117{left:156.166500px;}
.x13_c00117{left:157.204500px;}
.x4b_c00117{left:159.654000px;}
.xa_c00117{left:161.662500px;}
.x27_c00117{left:166.225500px;}
.x4e_c00117{left:167.277000px;}
.x6_c00117{left:170.532000px;}
.x6e_c00117{left:171.996000px;}
.x3b_c00117{left:173.055000px;}
.x1_c00117{left:174.420000px;}
.x33_c00117{left:177.021000px;}
.x72_c00117{left:179.793000px;}
.xb_c00117{left:181.914000px;}
.x44_c00117{left:186.609000px;}
.x28_c00117{left:191.694000px;}
.x3c_c00117{left:193.755000px;}
.x5a_c00117{left:196.552500px;}
.x1b_c00117{left:200.065500px;}
.xc_c00117{left:202.306500px;}
.x61_c00117{left:203.307000px;}
.x34_c00117{left:205.452000px;}
.x45_c00117{left:206.862000px;}
.x6f_c00117{left:209.232000px;}
.x71_c00117{left:212.058000px;}
.x6a_c00117{left:214.665000px;}
.x51_c00117{left:218.107500px;}
.x62_c00117{left:219.771000px;}
.x1c_c00117{left:220.863000px;}
.x35_c00117{left:221.920500px;}
.x5d_c00117{left:225.157500px;}
.x5b_c00117{left:229.134000px;}
.x30_c00117{left:231.663000px;}
.x2c_c00117{left:234.769500px;}
.x1d_c00117{left:238.449000px;}
.x63_c00117{left:239.673000px;}
.x3d_c00117{left:240.780000px;}
.x65_c00117{left:243.550500px;}
.x73_c00117{left:248.203500px;}
.x14_c00117{left:250.761000px;}
.x3e_c00117{left:253.765500px;}
.xd_c00117{left:254.958000px;}
.x4f_c00117{left:256.881000px;}
.x68_c00117{left:259.009500px;}
.x7_c00117{left:262.834500px;}
.x15_c00117{left:263.997000px;}
.x64_c00117{left:265.960500px;}
.x29_c00117{left:267.826500px;}
.x6b_c00117{left:273.306000px;}
.x36_c00117{left:275.013000px;}
.x22_c00117{left:277.044000px;}
.x31_c00117{left:278.910000px;}
.x16_c00117{left:281.127000px;}
.x56_c00117{left:285.925500px;}
.x46_c00117{left:288.808500px;}
.x37_c00117{left:289.975500px;}
.x52_c00117{left:293.712000px;}
.x3f_c00117{left:296.430000px;}
.x50_c00117{left:298.845000px;}
.x5c_c00117{left:302.652000px;}
.x23_c00117{left:306.477000px;}
.x5e_c00117{left:308.308500px;}
.x6d_c00117{left:311.914500px;}
.x47_c00117{left:313.470000px;}
.x1e_c00117{left:317.959500px;}
.x2a_c00117{left:319.306500px;}
.xe_c00117{left:322.308000px;}
.x8_c00117{left:325.983000px;}
.x66_c00117{left:327.201000px;}
.x4c_c00117{left:328.909500px;}
.x1f_c00117{left:330.213000px;}
.x25_c00117{left:334.342500px;}
.x2d_c00117{left:335.580000px;}
.x40_c00117{left:341.254500px;}
.x74_c00117{left:363.690000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws0_c00117{word-spacing:0.000000pt;}
.fsd_c00117{font-size:19.600000pt;}
.fs9_c00117{font-size:52.266667pt;}
.fs7_c00117{font-size:54.133333pt;}
.fs5_c00117{font-size:55.066667pt;}
.fsa_c00117{font-size:56.000000pt;}
.fs0_c00117{font-size:56.933333pt;}
.fs8_c00117{font-size:58.800000pt;}
.fs4_c00117{font-size:59.733333pt;}
.fs3_c00117{font-size:60.666667pt;}
.fs6_c00117{font-size:61.600000pt;}
.fs1_c00117{font-size:62.533333pt;}
.fs2_c00117{font-size:65.333333pt;}
.fsb_c00117{font-size:66.266667pt;}
.fsc_c00117{font-size:68.133333pt;}
.y0_c00117{bottom:0.000000pt;}
.yf1_c00117{bottom:19.937333pt;}
.yf2_c00117{bottom:20.424000pt;}
.yf3_c00117{bottom:21.697333pt;}
.yf4_c00117{bottom:23.054667pt;}
.yf5_c00117{bottom:23.534667pt;}
.yf6_c00117{bottom:24.208000pt;}
.yf7_c00117{bottom:24.634667pt;}
.yf8_c00117{bottom:26.632000pt;}
.yea_c00117{bottom:35.062667pt;}
.yeb_c00117{bottom:37.052000pt;}
.yec_c00117{bottom:37.676000pt;}
.yed_c00117{bottom:39.208000pt;}
.yee_c00117{bottom:39.841333pt;}
.yef_c00117{bottom:42.160000pt;}
.yf0_c00117{bottom:42.624000pt;}
.ye2_c00117{bottom:50.896000pt;}
.ye3_c00117{bottom:51.522667pt;}
.ye4_c00117{bottom:52.814667pt;}
.ye5_c00117{bottom:53.321333pt;}
.ye6_c00117{bottom:53.746667pt;}
.ye7_c00117{bottom:54.954667pt;}
.ye8_c00117{bottom:55.589333pt;}
.ye9_c00117{bottom:56.457333pt;}
.ydc_c00117{bottom:66.497333pt;}
.ydd_c00117{bottom:68.782667pt;}
.yde_c00117{bottom:69.766667pt;}
.ydf_c00117{bottom:70.726667pt;}
.ye0_c00117{bottom:72.005333pt;}
.ye1_c00117{bottom:72.420000pt;}
.yd4_c00117{bottom:81.856000pt;}
.yd5_c00117{bottom:83.372000pt;}
.yd6_c00117{bottom:84.585333pt;}
.yd7_c00117{bottom:85.809333pt;}
.yd8_c00117{bottom:86.294667pt;}
.yd9_c00117{bottom:86.992000pt;}
.yda_c00117{bottom:88.057333pt;}
.ydb_c00117{bottom:88.581333pt;}
.ycb_c00117{bottom:97.214667pt;}
.ycc_c00117{bottom:98.418667pt;}
.ycd_c00117{bottom:98.896000pt;}
.yce_c00117{bottom:100.004000pt;}
.ycf_c00117{bottom:100.770667pt;}
.yd0_c00117{bottom:101.290667pt;}
.yd1_c00117{bottom:102.264000pt;}
.yd2_c00117{bottom:102.697333pt;}
.yd3_c00117{bottom:104.086667pt;}
.yc4_c00117{bottom:112.577333pt;}
.yc5_c00117{bottom:113.938667pt;}
.yc6_c00117{bottom:114.357333pt;}
.yc7_c00117{bottom:115.097333pt;}
.yc8_c00117{bottom:116.400000pt;}
.yc9_c00117{bottom:117.708000pt;}
.yca_c00117{bottom:118.745333pt;}
.ybb_c00117{bottom:129.372000pt;}
.ybc_c00117{bottom:129.829333pt;}
.ybd_c00117{bottom:130.885333pt;}
.ybe_c00117{bottom:131.253333pt;}
.ybf_c00117{bottom:131.734667pt;}
.yc0_c00117{bottom:132.641333pt;}
.yc1_c00117{bottom:133.282667pt;}
.yc2_c00117{bottom:133.754667pt;}
.yc3_c00117{bottom:134.128000pt;}
.yb4_c00117{bottom:144.972000pt;}
.yb5_c00117{bottom:145.390667pt;}
.yb6_c00117{bottom:146.738667pt;}
.yb7_c00117{bottom:146.954667pt;}
.yb8_c00117{bottom:147.262667pt;}
.yb9_c00117{bottom:148.426667pt;}
.yba_c00117{bottom:148.893333pt;}
.yaa_c00117{bottom:161.530667pt;}
.yab_c00117{bottom:162.016000pt;}
.yac_c00117{bottom:162.385333pt;}
.yad_c00117{bottom:162.781333pt;}
.yae_c00117{bottom:163.306667pt;}
.yaf_c00117{bottom:164.338667pt;}
.yb0_c00117{bottom:164.632000pt;}
.yb1_c00117{bottom:164.992000pt;}
.yb2_c00117{bottom:166.417333pt;}
.yb3_c00117{bottom:166.574667pt;}
.ya3_c00117{bottom:176.888000pt;}
.ya4_c00117{bottom:177.320000pt;}
.ya5_c00117{bottom:178.098667pt;}
.ya6_c00117{bottom:178.417333pt;}
.ya7_c00117{bottom:178.742667pt;}
.ya8_c00117{bottom:179.865333pt;}
.ya9_c00117{bottom:180.634667pt;}
.y9e_c00117{bottom:192.490667pt;}
.y9f_c00117{bottom:193.474667pt;}
.ya0_c00117{bottom:194.548000pt;}
.ya1_c00117{bottom:195.056000pt;}
.ya2_c00117{bottom:196.769333pt;}
.y95_c00117{bottom:208.329333pt;}
.y96_c00117{bottom:209.228000pt;}
.y97_c00117{bottom:209.894667pt;}
.y98_c00117{bottom:210.305333pt;}
.y99_c00117{bottom:211.376000pt;}
.y9a_c00117{bottom:211.600000pt;}
.y9b_c00117{bottom:211.996000pt;}
.y9c_c00117{bottom:212.780000pt;}
.y9d_c00117{bottom:213.113333pt;}
.y8c_c00117{bottom:224.169333pt;}
.y8d_c00117{bottom:224.568000pt;}
.y8e_c00117{bottom:225.321333pt;}
.y8f_c00117{bottom:226.872000pt;}
.y90_c00117{bottom:227.450667pt;}
.y91_c00117{bottom:227.820000pt;}
.y92_c00117{bottom:228.300000pt;}
.y93_c00117{bottom:228.757333pt;}
.y94_c00117{bottom:229.309333pt;}
.y87_c00117{bottom:239.292000pt;}
.y88_c00117{bottom:240.496000pt;}
.y89_c00117{bottom:240.945333pt;}
.y8a_c00117{bottom:241.450667pt;}
.y8b_c00117{bottom:243.049333pt;}
.y7f_c00117{bottom:254.172000pt;}
.y80_c00117{bottom:255.444000pt;}
.y81_c00117{bottom:255.756000pt;}
.y82_c00117{bottom:256.820000pt;}
.y83_c00117{bottom:257.325333pt;}
.y84_c00117{bottom:257.652000pt;}
.y85_c00117{bottom:258.453333pt;}
.y86_c00117{bottom:258.948000pt;}
.yf9_c00117{bottom:260.640000pt;}
.y75_c00117{bottom:269.530667pt;}
.y76_c00117{bottom:270.138667pt;}
.y77_c00117{bottom:271.905333pt;}
.y78_c00117{bottom:272.430667pt;}
.y79_c00117{bottom:272.777333pt;}
.y7a_c00117{bottom:273.470667pt;}
.y7b_c00117{bottom:273.874667pt;}
.y7c_c00117{bottom:274.256000pt;}
.y7d_c00117{bottom:274.986667pt;}
.y7e_c00117{bottom:275.172000pt;}
.y70_c00117{bottom:284.173333pt;}
.y71_c00117{bottom:286.721333pt;}
.y72_c00117{bottom:287.197333pt;}
.y73_c00117{bottom:289.180000pt;}
.y74_c00117{bottom:289.892000pt;}
.y6a_c00117{bottom:299.533333pt;}
.y6b_c00117{bottom:301.464000pt;}
.y6c_c00117{bottom:301.962667pt;}
.y6d_c00117{bottom:302.514667pt;}
.y6e_c00117{bottom:304.665333pt;}
.y6f_c00117{bottom:305.834667pt;}
.y61_c00117{bottom:315.128000pt;}
.y62_c00117{bottom:315.682667pt;}
.y63_c00117{bottom:316.738667pt;}
.y64_c00117{bottom:317.240000pt;}
.y65_c00117{bottom:317.602667pt;}
.y66_c00117{bottom:318.098667pt;}
.y67_c00117{bottom:319.785333pt;}
.y68_c00117{bottom:320.350667pt;}
.y69_c00117{bottom:321.213333pt;}
.y58_c00117{bottom:331.208000pt;}
.y59_c00117{bottom:331.521333pt;}
.y5a_c00117{bottom:332.664000pt;}
.y5b_c00117{bottom:333.029333pt;}
.y5c_c00117{bottom:333.885333pt;}
.y5d_c00117{bottom:334.264000pt;}
.y5e_c00117{bottom:335.074667pt;}
.y5f_c00117{bottom:335.793333pt;}
.y60_c00117{bottom:336.253333pt;}
.y4e_c00117{bottom:347.765333pt;}
.y4f_c00117{bottom:348.177333pt;}
.y50_c00117{bottom:348.688000pt;}
.y51_c00117{bottom:349.805333pt;}
.y52_c00117{bottom:350.154667pt;}
.y53_c00117{bottom:350.949333pt;}
.y54_c00117{bottom:351.168000pt;}
.y55_c00117{bottom:351.542667pt;}
.y56_c00117{bottom:351.889333pt;}
.y57_c00117{bottom:352.646667pt;}
.y46_c00117{bottom:362.886667pt;}
.y47_c00117{bottom:363.645333pt;}
.y48_c00117{bottom:364.533333pt;}
.y49_c00117{bottom:365.265333pt;}
.y4a_c00117{bottom:365.770667pt;}
.y4b_c00117{bottom:366.064000pt;}
.y4c_c00117{bottom:367.008000pt;}
.y4d_c00117{bottom:367.274667pt;}
.y3e_c00117{bottom:378.005333pt;}
.y3f_c00117{bottom:378.926667pt;}
.y40_c00117{bottom:379.657333pt;}
.y41_c00117{bottom:379.892000pt;}
.y42_c00117{bottom:380.204000pt;}
.y43_c00117{bottom:381.361333pt;}
.y44_c00117{bottom:382.201333pt;}
.y45_c00117{bottom:383.128000pt;}
.y36_c00117{bottom:394.322667pt;}
.y37_c00117{bottom:394.612000pt;}
.y38_c00117{bottom:395.009333pt;}
.y39_c00117{bottom:396.261333pt;}
.y3a_c00117{bottom:397.218667pt;}
.y3b_c00117{bottom:397.669333pt;}
.y3c_c00117{bottom:397.930667pt;}
.y3d_c00117{bottom:398.742667pt;}
.y30_c00117{bottom:409.684000pt;}
.y31_c00117{bottom:410.400000pt;}
.y32_c00117{bottom:411.448000pt;}
.y33_c00117{bottom:411.878667pt;}
.y34_c00117{bottom:413.164000pt;}
.y35_c00117{bottom:414.033333pt;}
.y2c_c00117{bottom:423.845333pt;}
.y2d_c00117{bottom:424.854667pt;}
.y2e_c00117{bottom:425.286667pt;}
.y2f_c00117{bottom:430.050667pt;}
.y25_c00117{bottom:439.206667pt;}
.y26_c00117{bottom:441.181333pt;}
.y27_c00117{bottom:441.440000pt;}
.y28_c00117{bottom:441.733333pt;}
.y29_c00117{bottom:442.330667pt;}
.y2a_c00117{bottom:443.804000pt;}
.y2b_c00117{bottom:444.380000pt;}
.y1b_c00117{bottom:454.805333pt;}
.y1c_c00117{bottom:455.070667pt;}
.y1d_c00117{bottom:456.020000pt;}
.y1e_c00117{bottom:456.256000pt;}
.y1f_c00117{bottom:456.688000pt;}
.y20_c00117{bottom:457.600000pt;}
.y21_c00117{bottom:457.969333pt;}
.y22_c00117{bottom:458.281333pt;}
.y23_c00117{bottom:459.694667pt;}
.y24_c00117{bottom:459.912000pt;}
.y10_c00117{bottom:469.929333pt;}
.y11_c00117{bottom:470.430667pt;}
.y12_c00117{bottom:470.773333pt;}
.y13_c00117{bottom:471.086667pt;}
.y14_c00117{bottom:471.437333pt;}
.y15_c00117{bottom:472.370667pt;}
.y16_c00117{bottom:472.746667pt;}
.y17_c00117{bottom:474.366667pt;}
.y18_c00117{bottom:474.649333pt;}
.y19_c00117{bottom:475.014667pt;}
.y1a_c00117{bottom:475.950667pt;}
.y9_c00117{bottom:485.288000pt;}
.ya_c00117{bottom:486.410667pt;}
.yb_c00117{bottom:487.937333pt;}
.yc_c00117{bottom:488.388000pt;}
.yd_c00117{bottom:488.841333pt;}
.ye_c00117{bottom:490.012000pt;}
.yf_c00117{bottom:491.508000pt;}
.y2_c00117{bottom:499.693333pt;}
.y3_c00117{bottom:500.573333pt;}
.y4_c00117{bottom:501.181333pt;}
.y5_c00117{bottom:502.281333pt;}
.y6_c00117{bottom:502.762667pt;}
.y7_c00117{bottom:504.977333pt;}
.y8_c00117{bottom:506.493333pt;}
.y1_c00117{bottom:516.844000pt;}
.hf_c00117{height:19.600000pt;}
.hb_c00117{height:52.266667pt;}
.h9_c00117{height:54.133333pt;}
.h7_c00117{height:55.066667pt;}
.hc_c00117{height:56.000000pt;}
.h2_c00117{height:56.933333pt;}
.ha_c00117{height:58.800000pt;}
.h6_c00117{height:59.733333pt;}
.h5_c00117{height:60.666667pt;}
.h8_c00117{height:61.600000pt;}
.h3_c00117{height:62.533333pt;}
.h4_c00117{height:65.333333pt;}
.hd_c00117{height:66.266667pt;}
.he_c00117{height:68.133333pt;}
.h0_c00117{height:562.533333pt;}
.h1_c00117{height:562.666667pt;}
.w0_c00117{width:330.480000pt;}
.w1_c00117{width:330.666667pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:37.913333pt;}
.x48_c00117{left:38.834667pt;}
.x53_c00117{left:40.080000pt;}
.x38_c00117{left:46.472000pt;}
.x6c_c00117{left:47.596000pt;}
.x17_c00117{left:51.377333pt;}
.x41_c00117{left:53.314667pt;}
.x26_c00117{left:54.937333pt;}
.xf_c00117{left:58.901333pt;}
.x49_c00117{left:61.925333pt;}
.x60_c00117{left:64.262667pt;}
.x39_c00117{left:68.141333pt;}
.x3_c00117{left:70.529333pt;}
.x10_c00117{left:73.189333pt;}
.x32_c00117{left:76.332000pt;}
.x2b_c00117{left:78.682667pt;}
.x24_c00117{left:80.684000pt;}
.x9_c00117{left:82.634667pt;}
.x2e_c00117{left:84.257333pt;}
.x11_c00117{left:86.222667pt;}
.x67_c00117{left:90.613333pt;}
.x4_c00117{left:93.046667pt;}
.x3a_c00117{left:95.038667pt;}
.x59_c00117{left:97.205333pt;}
.x18_c00117{left:98.869333pt;}
.x57_c00117{left:99.825333pt;}
.x12_c00117{left:100.854667pt;}
.x69_c00117{left:102.124000pt;}
.x54_c00117{left:103.664000pt;}
.x4a_c00117{left:105.917333pt;}
.x42_c00117{left:107.700000pt;}
.x70_c00117{left:109.282667pt;}
.x19_c00117{left:110.638667pt;}
.x55_c00117{left:119.277333pt;}
.x2f_c00117{left:120.776000pt;}
.x58_c00117{left:122.304000pt;}
.x43_c00117{left:125.082667pt;}
.x20_c00117{left:127.060000pt;}
.x4d_c00117{left:128.260000pt;}
.x1a_c00117{left:132.225333pt;}
.x5_c00117{left:133.778667pt;}
.x5f_c00117{left:137.829333pt;}
.x21_c00117{left:138.814667pt;}
.x13_c00117{left:139.737333pt;}
.x4b_c00117{left:141.914667pt;}
.xa_c00117{left:143.700000pt;}
.x27_c00117{left:147.756000pt;}
.x4e_c00117{left:148.690667pt;}
.x6_c00117{left:151.584000pt;}
.x6e_c00117{left:152.885333pt;}
.x3b_c00117{left:153.826667pt;}
.x1_c00117{left:155.040000pt;}
.x33_c00117{left:157.352000pt;}
.x72_c00117{left:159.816000pt;}
.xb_c00117{left:161.701333pt;}
.x44_c00117{left:165.874667pt;}
.x28_c00117{left:170.394667pt;}
.x3c_c00117{left:172.226667pt;}
.x5a_c00117{left:174.713333pt;}
.x1b_c00117{left:177.836000pt;}
.xc_c00117{left:179.828000pt;}
.x61_c00117{left:180.717333pt;}
.x34_c00117{left:182.624000pt;}
.x45_c00117{left:183.877333pt;}
.x6f_c00117{left:185.984000pt;}
.x71_c00117{left:188.496000pt;}
.x6a_c00117{left:190.813333pt;}
.x51_c00117{left:193.873333pt;}
.x62_c00117{left:195.352000pt;}
.x1c_c00117{left:196.322667pt;}
.x35_c00117{left:197.262667pt;}
.x5d_c00117{left:200.140000pt;}
.x5b_c00117{left:203.674667pt;}
.x30_c00117{left:205.922667pt;}
.x2c_c00117{left:208.684000pt;}
.x1d_c00117{left:211.954667pt;}
.x63_c00117{left:213.042667pt;}
.x3d_c00117{left:214.026667pt;}
.x65_c00117{left:216.489333pt;}
.x73_c00117{left:220.625333pt;}
.x14_c00117{left:222.898667pt;}
.x3e_c00117{left:225.569333pt;}
.xd_c00117{left:226.629333pt;}
.x4f_c00117{left:228.338667pt;}
.x68_c00117{left:230.230667pt;}
.x7_c00117{left:233.630667pt;}
.x15_c00117{left:234.664000pt;}
.x64_c00117{left:236.409333pt;}
.x29_c00117{left:238.068000pt;}
.x6b_c00117{left:242.938667pt;}
.x36_c00117{left:244.456000pt;}
.x22_c00117{left:246.261333pt;}
.x31_c00117{left:247.920000pt;}
.x16_c00117{left:249.890667pt;}
.x56_c00117{left:254.156000pt;}
.x46_c00117{left:256.718667pt;}
.x37_c00117{left:257.756000pt;}
.x52_c00117{left:261.077333pt;}
.x3f_c00117{left:263.493333pt;}
.x50_c00117{left:265.640000pt;}
.x5c_c00117{left:269.024000pt;}
.x23_c00117{left:272.424000pt;}
.x5e_c00117{left:274.052000pt;}
.x6d_c00117{left:277.257333pt;}
.x47_c00117{left:278.640000pt;}
.x1e_c00117{left:282.630667pt;}
.x2a_c00117{left:283.828000pt;}
.xe_c00117{left:286.496000pt;}
.x8_c00117{left:289.762667pt;}
.x66_c00117{left:290.845333pt;}
.x4c_c00117{left:292.364000pt;}
.x1f_c00117{left:293.522667pt;}
.x25_c00117{left:297.193333pt;}
.x2d_c00117{left:298.293333pt;}
.x40_c00117{left:303.337333pt;}
.x74_c00117{left:323.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00118 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00118 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00118 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00118 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00118.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c00118{transform:matrix(0.011360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011360,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m59_c00118{transform:matrix(0.156785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156785,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);}
.m75_c00118{transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165270,0.000000,0.000000,0.250000,0,0);}
.m58_c00118{transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);}
.m36_c00118{transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);}
.m7b_c00118{transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169655,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);}
.m7a_c00118{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00118{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00118{transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);}
.m55_c00118{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00118{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.m73_c00118{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m77_c00118{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00118{transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);}
.m57_c00118{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.m74_c00118{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m62_c00118{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.m4f_c00118{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m5d_c00118{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m5c_c00118{transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m6b_c00118{transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);}
.m4c_c00118{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00118{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m56_c00118{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m76_c00118{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m5f_c00118{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m6d_c00118{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m4b_c00118{transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);}
.m61_c00118{transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.m7c_c00118{transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);}
.m6c_c00118{transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);}
.m79_c00118{transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);}
.m6e_c00118{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m69_c00118{transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);}
.m43_c00118{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.m63_c00118{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.m71_c00118{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);}
.m70_c00118{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m72_c00118{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m33_c00118{transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m60_c00118{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.m66_c00118{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m52_c00118{transform:matrix(0.263619,0.007645,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263619,0.007645,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263619,0.007645,-0.007247,0.249895,0,0);}
.m67_c00118{transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);}
.m53_c00118{transform:matrix(0.265673,0.007705,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265673,0.007705,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265673,0.007705,-0.007247,0.249895,0,0);}
.m50_c00118{transform:matrix(0.266578,0.007731,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266578,0.007731,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266578,0.007731,-0.007247,0.249895,0,0);}
.m5a_c00118{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.m78_c00118{transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);}
.m65_c00118{transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);}
.m64_c00118{transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);}
.m51_c00118{transform:matrix(0.310999,0.009019,-0.007247,0.249895,0,0);-ms-transform:matrix(0.310999,0.009019,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.310999,0.009019,-0.007247,0.249895,0,0);}
.m68_c00118{transform:matrix(0.359595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359595,0.000000,0.000000,0.250000,0,0);}
.m5b_c00118{transform:matrix(0.368170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368170,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);}
.m54_c00118{transform:matrix(0.412167,0.011953,-0.007247,0.249895,0,0);-ms-transform:matrix(0.412167,0.011953,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.412167,0.011953,-0.007247,0.249895,0,0);}
.m46_c00118{transform:matrix(0.455725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455725,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:0.000000px;}
.fc0_c00118{color:transparent;}
.fs7_c00118{font-size:48.320306px;}
.fsa_c00118{font-size:59.850000px;}
.fs9_c00118{font-size:65.100000px;}
.fs4_c00118{font-size:67.200000px;}
.fs0_c00118{font-size:68.250000px;}
.fs1_c00118{font-size:69.300000px;}
.fs2_c00118{font-size:70.350000px;}
.fs5_c00118{font-size:72.450000px;}
.fs3_c00118{font-size:73.500000px;}
.fs6_c00118{font-size:74.550000px;}
.fsb_c00118{font-size:75.600000px;}
.fs8_c00118{font-size:76.650000px;}
.y0_c00118{bottom:0.000000px;}
.y24_c00118{bottom:37.038000px;}
.y23_c00118{bottom:51.880500px;}
.y22_c00118{bottom:72.172500px;}
.y21_c00118{bottom:88.392000px;}
.y19_c00118{bottom:102.334500px;}
.y1a_c00118{bottom:102.807000px;}
.y1b_c00118{bottom:102.981000px;}
.y1c_c00118{bottom:103.804500px;}
.y1d_c00118{bottom:104.385000px;}
.y1e_c00118{bottom:104.805000px;}
.y1f_c00118{bottom:105.982500px;}
.y20_c00118{bottom:106.203000px;}
.y18_c00118{bottom:119.968500px;}
.y17_c00118{bottom:141.891058px;}
.y16_c00118{bottom:144.084677px;}
.y15_c00118{bottom:144.644565px;}
.y14_c00118{bottom:145.273444px;}
.y13_c00118{bottom:146.080500px;}
.y12_c00118{bottom:172.671000px;}
.y11_c00118{bottom:434.799000px;}
.y10_c00118{bottom:451.968000px;}
.yf_c00118{bottom:469.999500px;}
.ye_c00118{bottom:487.647000px;}
.yd_c00118{bottom:504.009000px;}
.y5_c00118{bottom:521.103000px;}
.y6_c00118{bottom:521.442000px;}
.y7_c00118{bottom:521.710500px;}
.y8_c00118{bottom:522.546000px;}
.y9_c00118{bottom:523.078500px;}
.ya_c00118{bottom:523.263000px;}
.yb_c00118{bottom:523.975500px;}
.yc_c00118{bottom:524.212500px;}
.y4_c00118{bottom:539.530500px;}
.y3_c00118{bottom:556.552500px;}
.y2_c00118{bottom:574.003500px;}
.y1_c00118{bottom:590.893500px;}
.h9_c00118{height:48.320306px;}
.hc_c00118{height:59.850000px;}
.hb_c00118{height:65.100000px;}
.h6_c00118{height:67.200000px;}
.h2_c00118{height:68.250000px;}
.h3_c00118{height:69.300000px;}
.h4_c00118{height:70.350000px;}
.h7_c00118{height:72.450000px;}
.h5_c00118{height:73.500000px;}
.h8_c00118{height:74.550000px;}
.hd_c00118{height:75.600000px;}
.ha_c00118{height:76.650000px;}
.h0_c00118{height:632.850000px;}
.h1_c00118{height:633.000000px;}
.w0_c00118{width:371.790000px;}
.w1_c00118{width:372.000000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:19.170000px;}
.x11_c00118{left:20.790000px;}
.x2d_c00118{left:22.141500px;}
.x3f_c00118{left:25.380000px;}
.x4a_c00118{left:26.713500px;}
.x5a_c00118{left:27.810000px;}
.xa_c00118{left:29.160000px;}
.x39_c00118{left:34.020000px;}
.x27_c00118{left:38.881500px;}
.x35_c00118{left:39.961500px;}
.x18_c00118{left:49.822500px;}
.x46_c00118{left:53.095500px;}
.x1f_c00118{left:54.541500px;}
.x4b_c00118{left:60.495000px;}
.x3_c00118{left:66.150000px;}
.x19_c00118{left:72.235500px;}
.xb_c00118{left:75.060000px;}
.x36_c00118{left:81.271500px;}
.x57_c00118{left:86.670000px;}
.x4_c00118{left:89.370000px;}
.x20_c00118{left:92.611500px;}
.x2e_c00118{left:93.691500px;}
.xc_c00118{left:94.770000px;}
.x28_c00118{left:98.551500px;}
.x5b_c00118{left:101.250000px;}
.x40_c00118{left:103.410000px;}
.x2f_c00118{left:110.971500px;}
.x50_c00118{left:114.480000px;}
.x21_c00118{left:117.721500px;}
.x29_c00118{left:120.691500px;}
.x3a_c00118{left:121.770000px;}
.x53_c00118{left:123.660000px;}
.x12_c00118{left:125.820000px;}
.x4c_c00118{left:131.712000px;}
.x47_c00118{left:134.190000px;}
.x5_c00118{left:135.270000px;}
.x30_c00118{left:138.511500px;}
.x1a_c00118{left:141.834000px;}
.x13_c00118{left:144.720000px;}
.xd_c00118{left:150.120000px;}
.x22_c00118{left:151.741500px;}
.x6_c00118{left:155.520000px;}
.x1_c00118{left:157.680000px;}
.x3b_c00118{left:159.300000px;}
.x2a_c00118{left:162.271500px;}
.x41_c00118{left:168.750000px;}
.xe_c00118{left:170.100000px;}
.x23_c00118{left:172.531500px;}
.x58_c00118{left:174.420000px;}
.x54_c00118{left:176.850000px;}
.x1b_c00118{left:186.166500px;}
.x3c_c00118{left:187.380000px;}
.xf_c00118{left:189.000000px;}
.x14_c00118{left:192.240000px;}
.x31_c00118{left:195.751500px;}
.x42_c00118{left:197.910000px;}
.x1c_c00118{left:201.561000px;}
.x4d_c00118{left:203.232000px;}
.x2b_c00118{left:204.661500px;}
.x51_c00118{left:206.820000px;}
.x37_c00118{left:208.711500px;}
.x15_c00118{left:211.680000px;}
.x24_c00118{left:214.651500px;}
.x32_c00118{left:216.271500px;}
.x59_c00118{left:217.620000px;}
.x25_c00118{left:227.341500px;}
.x7_c00118{left:233.010000px;}
.x43_c00118{left:234.900000px;}
.x33_c00118{left:239.491500px;}
.x3d_c00118{left:246.780000px;}
.x8_c00118{left:254.880000px;}
.x48_c00118{left:257.040000px;}
.x55_c00118{left:258.390000px;}
.x26_c00118{left:259.741500px;}
.x1d_c00118{left:260.968500px;}
.x34_c00118{left:264.331500px;}
.x3e_c00118{left:267.030000px;}
.x9_c00118{left:270.000000px;}
.x16_c00118{left:272.160000px;}
.x2c_c00118{left:277.561500px;}
.x56_c00118{left:279.450000px;}
.x1e_c00118{left:280.662000px;}
.x49_c00118{left:283.500000px;}
.x44_c00118{left:284.850000px;}
.x52_c00118{left:286.200000px;}
.x4e_c00118{left:287.383500px;}
.x5c_c00118{left:291.330000px;}
.x17_c00118{left:294.570000px;}
.x45_c00118{left:299.700000px;}
.x10_c00118{left:301.590000px;}
.x4f_c00118{left:303.135000px;}
.x38_c00118{left:310.501500px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:0.000000pt;}
.fs7_c00118{font-size:42.951383pt;}
.fsa_c00118{font-size:53.200000pt;}
.fs9_c00118{font-size:57.866667pt;}
.fs4_c00118{font-size:59.733333pt;}
.fs0_c00118{font-size:60.666667pt;}
.fs1_c00118{font-size:61.600000pt;}
.fs2_c00118{font-size:62.533333pt;}
.fs5_c00118{font-size:64.400000pt;}
.fs3_c00118{font-size:65.333333pt;}
.fs6_c00118{font-size:66.266667pt;}
.fsb_c00118{font-size:67.200000pt;}
.fs8_c00118{font-size:68.133333pt;}
.y0_c00118{bottom:0.000000pt;}
.y24_c00118{bottom:32.922667pt;}
.y23_c00118{bottom:46.116000pt;}
.y22_c00118{bottom:64.153333pt;}
.y21_c00118{bottom:78.570667pt;}
.y19_c00118{bottom:90.964000pt;}
.y1a_c00118{bottom:91.384000pt;}
.y1b_c00118{bottom:91.538667pt;}
.y1c_c00118{bottom:92.270667pt;}
.y1d_c00118{bottom:92.786667pt;}
.y1e_c00118{bottom:93.160000pt;}
.y1f_c00118{bottom:94.206667pt;}
.y20_c00118{bottom:94.402667pt;}
.y18_c00118{bottom:106.638667pt;}
.y17_c00118{bottom:126.125385pt;}
.y16_c00118{bottom:128.075268pt;}
.y15_c00118{bottom:128.572947pt;}
.y14_c00118{bottom:129.131951pt;}
.y13_c00118{bottom:129.849333pt;}
.y12_c00118{bottom:153.485333pt;}
.y11_c00118{bottom:386.488000pt;}
.y10_c00118{bottom:401.749333pt;}
.yf_c00118{bottom:417.777333pt;}
.ye_c00118{bottom:433.464000pt;}
.yd_c00118{bottom:448.008000pt;}
.y5_c00118{bottom:463.202667pt;}
.y6_c00118{bottom:463.504000pt;}
.y7_c00118{bottom:463.742667pt;}
.y8_c00118{bottom:464.485333pt;}
.y9_c00118{bottom:464.958667pt;}
.ya_c00118{bottom:465.122667pt;}
.yb_c00118{bottom:465.756000pt;}
.yc_c00118{bottom:465.966667pt;}
.y4_c00118{bottom:479.582667pt;}
.y3_c00118{bottom:494.713333pt;}
.y2_c00118{bottom:510.225333pt;}
.y1_c00118{bottom:525.238667pt;}
.h9_c00118{height:42.951383pt;}
.hc_c00118{height:53.200000pt;}
.hb_c00118{height:57.866667pt;}
.h6_c00118{height:59.733333pt;}
.h2_c00118{height:60.666667pt;}
.h3_c00118{height:61.600000pt;}
.h4_c00118{height:62.533333pt;}
.h7_c00118{height:64.400000pt;}
.h5_c00118{height:65.333333pt;}
.h8_c00118{height:66.266667pt;}
.hd_c00118{height:67.200000pt;}
.ha_c00118{height:68.133333pt;}
.h0_c00118{height:562.533333pt;}
.h1_c00118{height:562.666667pt;}
.w0_c00118{width:330.480000pt;}
.w1_c00118{width:330.666667pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:17.040000pt;}
.x11_c00118{left:18.480000pt;}
.x2d_c00118{left:19.681333pt;}
.x3f_c00118{left:22.560000pt;}
.x4a_c00118{left:23.745333pt;}
.x5a_c00118{left:24.720000pt;}
.xa_c00118{left:25.920000pt;}
.x39_c00118{left:30.240000pt;}
.x27_c00118{left:34.561333pt;}
.x35_c00118{left:35.521333pt;}
.x18_c00118{left:44.286667pt;}
.x46_c00118{left:47.196000pt;}
.x1f_c00118{left:48.481333pt;}
.x4b_c00118{left:53.773333pt;}
.x3_c00118{left:58.800000pt;}
.x19_c00118{left:64.209333pt;}
.xb_c00118{left:66.720000pt;}
.x36_c00118{left:72.241333pt;}
.x57_c00118{left:77.040000pt;}
.x4_c00118{left:79.440000pt;}
.x20_c00118{left:82.321333pt;}
.x2e_c00118{left:83.281333pt;}
.xc_c00118{left:84.240000pt;}
.x28_c00118{left:87.601333pt;}
.x5b_c00118{left:90.000000pt;}
.x40_c00118{left:91.920000pt;}
.x2f_c00118{left:98.641333pt;}
.x50_c00118{left:101.760000pt;}
.x21_c00118{left:104.641333pt;}
.x29_c00118{left:107.281333pt;}
.x3a_c00118{left:108.240000pt;}
.x53_c00118{left:109.920000pt;}
.x12_c00118{left:111.840000pt;}
.x4c_c00118{left:117.077333pt;}
.x47_c00118{left:119.280000pt;}
.x5_c00118{left:120.240000pt;}
.x30_c00118{left:123.121333pt;}
.x1a_c00118{left:126.074667pt;}
.x13_c00118{left:128.640000pt;}
.xd_c00118{left:133.440000pt;}
.x22_c00118{left:134.881333pt;}
.x6_c00118{left:138.240000pt;}
.x1_c00118{left:140.160000pt;}
.x3b_c00118{left:141.600000pt;}
.x2a_c00118{left:144.241333pt;}
.x41_c00118{left:150.000000pt;}
.xe_c00118{left:151.200000pt;}
.x23_c00118{left:153.361333pt;}
.x58_c00118{left:155.040000pt;}
.x54_c00118{left:157.200000pt;}
.x1b_c00118{left:165.481333pt;}
.x3c_c00118{left:166.560000pt;}
.xf_c00118{left:168.000000pt;}
.x14_c00118{left:170.880000pt;}
.x31_c00118{left:174.001333pt;}
.x42_c00118{left:175.920000pt;}
.x1c_c00118{left:179.165333pt;}
.x4d_c00118{left:180.650667pt;}
.x2b_c00118{left:181.921333pt;}
.x51_c00118{left:183.840000pt;}
.x37_c00118{left:185.521333pt;}
.x15_c00118{left:188.160000pt;}
.x24_c00118{left:190.801333pt;}
.x32_c00118{left:192.241333pt;}
.x59_c00118{left:193.440000pt;}
.x25_c00118{left:202.081333pt;}
.x7_c00118{left:207.120000pt;}
.x43_c00118{left:208.800000pt;}
.x33_c00118{left:212.881333pt;}
.x3d_c00118{left:219.360000pt;}
.x8_c00118{left:226.560000pt;}
.x48_c00118{left:228.480000pt;}
.x55_c00118{left:229.680000pt;}
.x26_c00118{left:230.881333pt;}
.x1d_c00118{left:231.972000pt;}
.x34_c00118{left:234.961333pt;}
.x3e_c00118{left:237.360000pt;}
.x9_c00118{left:240.000000pt;}
.x16_c00118{left:241.920000pt;}
.x2c_c00118{left:246.721333pt;}
.x56_c00118{left:248.400000pt;}
.x1e_c00118{left:249.477333pt;}
.x49_c00118{left:252.000000pt;}
.x44_c00118{left:253.200000pt;}
.x52_c00118{left:254.400000pt;}
.x4e_c00118{left:255.452000pt;}
.x5c_c00118{left:258.960000pt;}
.x17_c00118{left:261.840000pt;}
.x45_c00118{left:266.400000pt;}
.x10_c00118{left:268.080000pt;}
.x4f_c00118{left:269.453333pt;}
.x38_c00118{left:276.001333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00119 {
    display:none;
  }
  .loading-indicator_c00119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00119 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00119 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00119" -> "#page-container .classname_c00119")
 */
.pf_c00119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00119 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00119 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00119 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00119 {overflow:visible;}
  }
}
.c_c00119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00119 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00119:after { /* webkit #35443 */
  content: '';
}
.t_c00119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00119 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00119 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00119 { /* info for Javascript */
  display:none;
}
.l_c00119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00119:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00119 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00119.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00119{transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.074670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074670,0.000000,0.000000,0.250000,0,0);}
.m87_c00119{transform:matrix(0.141284,-0.002119,0.003750,0.249972,0,0);-ms-transform:matrix(0.141284,-0.002119,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141284,-0.002119,0.003750,0.249972,0,0);}
.m7_c00119{transform:matrix(0.149916,-0.001649,0.002750,0.249985,0,0);-ms-transform:matrix(0.149916,-0.001649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149916,-0.001649,0.002750,0.249985,0,0);}
.mf_c00119{transform:matrix(0.151126,-0.001662,0.002750,0.249985,0,0);-ms-transform:matrix(0.151126,-0.001662,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151126,-0.001662,0.002750,0.249985,0,0);}
.m88_c00119{transform:matrix(0.153623,-0.002304,0.003750,0.249972,0,0);-ms-transform:matrix(0.153623,-0.002304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153623,-0.002304,0.003750,0.249972,0,0);}
.m7a_c00119{transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);}
.m4c_c00119{transform:matrix(0.161065,-0.001772,0.002750,0.249985,0,0);-ms-transform:matrix(0.161065,-0.001772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161065,-0.001772,0.002750,0.249985,0,0);}
.m49_c00119{transform:matrix(0.161875,-0.001781,0.002750,0.249985,0,0);-ms-transform:matrix(0.161875,-0.001781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161875,-0.001781,0.002750,0.249985,0,0);}
.m65_c00119{transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.163275,-0.001796,0.002750,0.249985,0,0);-ms-transform:matrix(0.163275,-0.001796,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163275,-0.001796,0.002750,0.249985,0,0);}
.m1b_c00119{transform:matrix(0.164990,-0.001815,0.002750,0.249985,0,0);-ms-transform:matrix(0.164990,-0.001815,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164990,-0.001815,0.002750,0.249985,0,0);}
.m78_c00119{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m86_c00119{transform:matrix(0.166801,-0.002502,0.003750,0.249972,0,0);-ms-transform:matrix(0.166801,-0.002502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166801,-0.002502,0.003750,0.249972,0,0);}
.m8a_c00119{transform:matrix(0.167266,-0.002509,0.003750,0.249972,0,0);-ms-transform:matrix(0.167266,-0.002509,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167266,-0.002509,0.003750,0.249972,0,0);}
.m46_c00119{transform:matrix(0.170530,-0.001876,0.002750,0.249985,0,0);-ms-transform:matrix(0.170530,-0.001876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170530,-0.001876,0.002750,0.249985,0,0);}
.m38_c00119{transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-ms-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);}
.m8c_c00119{transform:matrix(0.174390,-0.002616,0.003750,0.249972,0,0);-ms-transform:matrix(0.174390,-0.002616,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174390,-0.002616,0.003750,0.249972,0,0);}
.m3f_c00119{transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);}
.m89_c00119{transform:matrix(0.176650,-0.002650,0.003750,0.249972,0,0);-ms-transform:matrix(0.176650,-0.002650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176650,-0.002650,0.003750,0.249972,0,0);}
.ma_c00119{transform:matrix(0.177019,-0.001947,0.002750,0.249985,0,0);-ms-transform:matrix(0.177019,-0.001947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177019,-0.001947,0.002750,0.249985,0,0);}
.m4d_c00119{transform:matrix(0.177519,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177519,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177519,-0.001953,0.002750,0.249985,0,0);}
.m3_c00119{transform:matrix(0.178173,-0.003385,0.004749,0.249955,0,0);-ms-transform:matrix(0.178173,-0.003385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178173,-0.003385,0.004749,0.249955,0,0);}
.m40_c00119{transform:matrix(0.179604,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179604,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179604,-0.001976,0.002750,0.249985,0,0);}
.m9_c00119{transform:matrix(0.180184,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180184,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180184,-0.001982,0.002750,0.249985,0,0);}
.m79_c00119{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);}
.m13_c00119{transform:matrix(0.180974,-0.001991,0.002750,0.249985,0,0);-ms-transform:matrix(0.180974,-0.001991,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180974,-0.001991,0.002750,0.249985,0,0);}
.m0_c00119{transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.181181,-0.003261,0.004499,0.249960,0,0);-ms-transform:matrix(0.181181,-0.003261,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181181,-0.003261,0.004499,0.249960,0,0);}
.m3b_c00119{transform:matrix(0.181209,-0.001993,0.002750,0.249985,0,0);-ms-transform:matrix(0.181209,-0.001993,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181209,-0.001993,0.002750,0.249985,0,0);}
.m48_c00119{transform:matrix(0.181354,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181354,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181354,-0.001995,0.002750,0.249985,0,0);}
.m71_c00119{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.m7d_c00119{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m57_c00119{transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);}
.md_c00119{transform:matrix(0.182989,-0.002013,0.002750,0.249985,0,0);-ms-transform:matrix(0.182989,-0.002013,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182989,-0.002013,0.002750,0.249985,0,0);}
.me_c00119{transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);}
.m30_c00119{transform:matrix(0.184834,-0.002033,0.002750,0.249985,0,0);-ms-transform:matrix(0.184834,-0.002033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184834,-0.002033,0.002750,0.249985,0,0);}
.m47_c00119{transform:matrix(0.185084,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185084,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185084,-0.002036,0.002750,0.249985,0,0);}
.m1d_c00119{transform:matrix(0.185184,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185184,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185184,-0.002037,0.002750,0.249985,0,0);}
.m51_c00119{transform:matrix(0.185219,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185219,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185219,-0.002037,0.002750,0.249985,0,0);}
.mc_c00119{transform:matrix(0.186474,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186474,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186474,-0.002051,0.002750,0.249985,0,0);}
.m11_c00119{transform:matrix(0.186919,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186919,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186919,-0.002056,0.002750,0.249985,0,0);}
.mb_c00119{transform:matrix(0.187394,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187394,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187394,-0.002061,0.002750,0.249985,0,0);}
.m56_c00119{transform:matrix(0.188924,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188924,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188924,-0.002078,0.002750,0.249985,0,0);}
.m8b_c00119{transform:matrix(0.190894,-0.002863,0.003750,0.249972,0,0);-ms-transform:matrix(0.190894,-0.002863,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190894,-0.002863,0.003750,0.249972,0,0);}
.m42_c00119{transform:matrix(0.191003,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.191003,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191003,-0.002101,0.002750,0.249985,0,0);}
.m4_c00119{transform:matrix(0.193435,-0.003675,0.004749,0.249955,0,0);-ms-transform:matrix(0.193435,-0.003675,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193435,-0.003675,0.004749,0.249955,0,0);}
.m29_c00119{transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193733,-0.002131,0.002750,0.249985,0,0);}
.m2_c00119{transform:matrix(0.195690,-0.003718,0.004749,0.249955,0,0);-ms-transform:matrix(0.195690,-0.003718,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195690,-0.003718,0.004749,0.249955,0,0);}
.m24_c00119{transform:matrix(0.195918,-0.002155,0.002750,0.249985,0,0);-ms-transform:matrix(0.195918,-0.002155,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195918,-0.002155,0.002750,0.249985,0,0);}
.m64_c00119{transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);-ms-transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);}
.m36_c00119{transform:matrix(0.197228,-0.002170,0.002750,0.249985,0,0);-ms-transform:matrix(0.197228,-0.002170,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197228,-0.002170,0.002750,0.249985,0,0);}
.m8_c00119{transform:matrix(0.198178,-0.002180,0.002750,0.249985,0,0);-ms-transform:matrix(0.198178,-0.002180,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198178,-0.002180,0.002750,0.249985,0,0);}
.m41_c00119{transform:matrix(0.198623,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198623,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198623,-0.002185,0.002750,0.249985,0,0);}
.m21_c00119{transform:matrix(0.198643,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198643,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198643,-0.002185,0.002750,0.249985,0,0);}
.m6a_c00119{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);}
.m8d_c00119{transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);}
.m27_c00119{transform:matrix(0.200658,-0.002207,0.002750,0.249985,0,0);-ms-transform:matrix(0.200658,-0.002207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200658,-0.002207,0.002750,0.249985,0,0);}
.m1c_c00119{transform:matrix(0.200723,-0.002208,0.002750,0.249985,0,0);-ms-transform:matrix(0.200723,-0.002208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200723,-0.002208,0.002750,0.249985,0,0);}
.m37_c00119{transform:matrix(0.200973,-0.002211,0.002750,0.249985,0,0);-ms-transform:matrix(0.200973,-0.002211,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200973,-0.002211,0.002750,0.249985,0,0);}
.m2c_c00119{transform:matrix(0.201333,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201333,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201333,-0.002215,0.002750,0.249985,0,0);}
.m5d_c00119{transform:matrix(0.201438,-0.002216,0.002750,0.249985,0,0);-ms-transform:matrix(0.201438,-0.002216,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201438,-0.002216,0.002750,0.249985,0,0);}
.m69_c00119{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.m4b_c00119{transform:matrix(0.203083,-0.002234,0.002750,0.249985,0,0);-ms-transform:matrix(0.203083,-0.002234,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203083,-0.002234,0.002750,0.249985,0,0);}
.m72_c00119{transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.203988,-0.002244,0.002750,0.249985,0,0);-ms-transform:matrix(0.203988,-0.002244,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203988,-0.002244,0.002750,0.249985,0,0);}
.m4a_c00119{transform:matrix(0.205398,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205398,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205398,-0.002259,0.002750,0.249985,0,0);}
.m18_c00119{transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);}
.m63_c00119{transform:matrix(0.206672,-0.003720,0.004499,0.249960,0,0);-ms-transform:matrix(0.206672,-0.003720,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206672,-0.003720,0.004499,0.249960,0,0);}
.m45_c00119{transform:matrix(0.207712,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207712,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207712,-0.002285,0.002750,0.249985,0,0);}
.m62_c00119{transform:matrix(0.208236,-0.003748,0.004499,0.249960,0,0);-ms-transform:matrix(0.208236,-0.003748,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208236,-0.003748,0.004499,0.249960,0,0);}
.m14_c00119{transform:matrix(0.208272,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208272,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208272,-0.002291,0.002750,0.249985,0,0);}
.m32_c00119{transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);-ms-transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);}
.m28_c00119{transform:matrix(0.208602,-0.002295,0.002750,0.249985,0,0);-ms-transform:matrix(0.208602,-0.002295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208602,-0.002295,0.002750,0.249985,0,0);}
.m52_c00119{transform:matrix(0.209112,-0.002300,0.002750,0.249985,0,0);-ms-transform:matrix(0.209112,-0.002300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209112,-0.002300,0.002750,0.249985,0,0);}
.m5f_c00119{transform:matrix(0.209376,-0.003769,0.004499,0.249960,0,0);-ms-transform:matrix(0.209376,-0.003769,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209376,-0.003769,0.004499,0.249960,0,0);}
.m39_c00119{transform:matrix(0.210407,-0.002314,0.002750,0.249985,0,0);-ms-transform:matrix(0.210407,-0.002314,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210407,-0.002314,0.002750,0.249985,0,0);}
.m80_c00119{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m58_c00119{transform:matrix(0.211892,-0.002331,0.002750,0.249985,0,0);-ms-transform:matrix(0.211892,-0.002331,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211892,-0.002331,0.002750,0.249985,0,0);}
.m5e_c00119{transform:matrix(0.212106,-0.003818,0.004499,0.249960,0,0);-ms-transform:matrix(0.212106,-0.003818,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212106,-0.003818,0.004499,0.249960,0,0);}
.m4e_c00119{transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);}
.m7e_c00119{transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);}
.m74_c00119{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.213327,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213327,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213327,-0.002347,0.002750,0.249985,0,0);}
.m70_c00119{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.213817,-0.002352,0.002750,0.249985,0,0);-ms-transform:matrix(0.213817,-0.002352,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213817,-0.002352,0.002750,0.249985,0,0);}
.m33_c00119{transform:matrix(0.214457,-0.002359,0.002750,0.249985,0,0);-ms-transform:matrix(0.214457,-0.002359,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214457,-0.002359,0.002750,0.249985,0,0);}
.m59_c00119{transform:matrix(0.215042,-0.002365,0.002750,0.249985,0,0);-ms-transform:matrix(0.215042,-0.002365,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215042,-0.002365,0.002750,0.249985,0,0);}
.m1_c00119{transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);-ms-transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);}
.m3c_c00119{transform:matrix(0.216902,-0.002386,0.002750,0.249985,0,0);-ms-transform:matrix(0.216902,-0.002386,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216902,-0.002386,0.002750,0.249985,0,0);}
.m23_c00119{transform:matrix(0.217347,-0.002391,0.002750,0.249985,0,0);-ms-transform:matrix(0.217347,-0.002391,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217347,-0.002391,0.002750,0.249985,0,0);}
.m6c_c00119{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{transform:matrix(0.218757,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218757,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218757,-0.002406,0.002750,0.249985,0,0);}
.m6b_c00119{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.220917,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220917,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220917,-0.002430,0.002750,0.249985,0,0);}
.m26_c00119{transform:matrix(0.221142,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221142,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221142,-0.002433,0.002750,0.249985,0,0);}
.m50_c00119{transform:matrix(0.222337,-0.002446,0.002750,0.249985,0,0);-ms-transform:matrix(0.222337,-0.002446,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222337,-0.002446,0.002750,0.249985,0,0);}
.m3e_c00119{transform:matrix(0.222722,-0.002450,0.002750,0.249985,0,0);-ms-transform:matrix(0.222722,-0.002450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222722,-0.002450,0.002750,0.249985,0,0);}
.m77_c00119{transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.224226,-0.002466,0.002750,0.249985,0,0);-ms-transform:matrix(0.224226,-0.002466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224226,-0.002466,0.002750,0.249985,0,0);}
.m5_c00119{transform:matrix(0.224689,-0.004269,0.004749,0.249955,0,0);-ms-transform:matrix(0.224689,-0.004269,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224689,-0.004269,0.004749,0.249955,0,0);}
.m53_c00119{transform:matrix(0.225041,-0.002475,0.002750,0.249985,0,0);-ms-transform:matrix(0.225041,-0.002475,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225041,-0.002475,0.002750,0.249985,0,0);}
.m60_c00119{transform:matrix(0.227478,-0.004095,0.004499,0.249960,0,0);-ms-transform:matrix(0.227478,-0.004095,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227478,-0.004095,0.004499,0.249960,0,0);}
.m16_c00119{transform:matrix(0.227591,-0.002504,0.002750,0.249985,0,0);-ms-transform:matrix(0.227591,-0.002504,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227591,-0.002504,0.002750,0.249985,0,0);}
.m17_c00119{transform:matrix(0.228611,-0.002515,0.002750,0.249985,0,0);-ms-transform:matrix(0.228611,-0.002515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228611,-0.002515,0.002750,0.249985,0,0);}
.m2b_c00119{transform:matrix(0.232776,-0.002561,0.002750,0.249985,0,0);-ms-transform:matrix(0.232776,-0.002561,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232776,-0.002561,0.002750,0.249985,0,0);}
.m7c_c00119{transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.233931,-0.002573,0.002750,0.249985,0,0);-ms-transform:matrix(0.233931,-0.002573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233931,-0.002573,0.002750,0.249985,0,0);}
.m6d_c00119{transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.235126,-0.002586,0.002750,0.249985,0,0);-ms-transform:matrix(0.235126,-0.002586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235126,-0.002586,0.002750,0.249985,0,0);}
.m73_c00119{transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235245,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.238121,-0.002619,0.002750,0.249985,0,0);-ms-transform:matrix(0.238121,-0.002619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238121,-0.002619,0.002750,0.249985,0,0);}
.m3a_c00119{transform:matrix(0.238741,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238741,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238741,-0.002626,0.002750,0.249985,0,0);}
.m6f_c00119{transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);}
.m7b_c00119{transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);}
.m82_c00119{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.m81_c00119{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m75_c00119{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.253155,-0.002785,0.002750,0.249985,0,0);-ms-transform:matrix(0.253155,-0.002785,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253155,-0.002785,0.002750,0.249985,0,0);}
.m43_c00119{transform:matrix(0.253710,-0.002791,0.002750,0.249985,0,0);-ms-transform:matrix(0.253710,-0.002791,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253710,-0.002791,0.002750,0.249985,0,0);}
.m83_c00119{transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);}
.m85_c00119{transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.256614,-0.002823,0.002750,0.249985,0,0);-ms-transform:matrix(0.256614,-0.002823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256614,-0.002823,0.002750,0.249985,0,0);}
.m34_c00119{transform:matrix(0.261724,-0.002879,0.002750,0.249985,0,0);-ms-transform:matrix(0.261724,-0.002879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261724,-0.002879,0.002750,0.249985,0,0);}
.m20_c00119{transform:matrix(0.267074,-0.002938,0.002750,0.249985,0,0);-ms-transform:matrix(0.267074,-0.002938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267074,-0.002938,0.002750,0.249985,0,0);}
.m4f_c00119{transform:matrix(0.271834,-0.002990,0.002750,0.249985,0,0);-ms-transform:matrix(0.271834,-0.002990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271834,-0.002990,0.002750,0.249985,0,0);}
.m55_c00119{transform:matrix(0.272229,-0.002995,0.002750,0.249985,0,0);-ms-transform:matrix(0.272229,-0.002995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272229,-0.002995,0.002750,0.249985,0,0);}
.m2d_c00119{transform:matrix(0.280343,-0.003084,0.002750,0.249985,0,0);-ms-transform:matrix(0.280343,-0.003084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280343,-0.003084,0.002750,0.249985,0,0);}
.m68_c00119{transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.287478,-0.003162,0.002750,0.249985,0,0);-ms-transform:matrix(0.287478,-0.003162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287478,-0.003162,0.002750,0.249985,0,0);}
.m84_c00119{transform:matrix(0.320005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320005,0.000000,0.000000,0.250000,0,0);}
.m67_c00119{transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.352749,-0.003880,0.002750,0.249985,0,0);-ms-transform:matrix(0.352749,-0.003880,0.002750,0.249985,0,0);-webkit-transform:matrix(0.352749,-0.003880,0.002750,0.249985,0,0);}
.m44_c00119{transform:matrix(0.368573,-0.004054,0.002750,0.249985,0,0);-ms-transform:matrix(0.368573,-0.004054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.368573,-0.004054,0.002750,0.249985,0,0);}
.m6_c00119{transform:matrix(0.374837,-0.004123,0.002750,0.249985,0,0);-ms-transform:matrix(0.374837,-0.004123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.374837,-0.004123,0.002750,0.249985,0,0);}
.m2e_c00119{transform:matrix(0.380792,-0.004189,0.002750,0.249985,0,0);-ms-transform:matrix(0.380792,-0.004189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.380792,-0.004189,0.002750,0.249985,0,0);}
.m76_c00119{transform:matrix(0.387130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387130,0.000000,0.000000,0.250000,0,0);}
.m7f_c00119{transform:matrix(0.467030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467030,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.507884,-0.005587,0.002750,0.249985,0,0);-ms-transform:matrix(0.507884,-0.005587,0.002750,0.249985,0,0);-webkit-transform:matrix(0.507884,-0.005587,0.002750,0.249985,0,0);}
.m1e_c00119{transform:matrix(0.842599,-0.009269,0.002750,0.249985,0,0);-ms-transform:matrix(0.842599,-0.009269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.842599,-0.009269,0.002750,0.249985,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:0.000000px;}
.fc0_c00119{color:transparent;}
.fsf_c00119{font-size:48.300000px;}
.fs8_c00119{font-size:58.803557px;}
.fsd_c00119{font-size:59.850000px;}
.fs9_c00119{font-size:59.853621px;}
.fs5_c00119{font-size:60.903684px;}
.fs4_c00119{font-size:61.953748px;}
.fsc_c00119{font-size:63.000000px;}
.fs7_c00119{font-size:63.003811px;}
.fsa_c00119{font-size:63.010205px;}
.fsb_c00119{font-size:64.050000px;}
.fs1_c00119{font-size:64.061560px;}
.fse_c00119{font-size:67.200000px;}
.fs6_c00119{font-size:67.204065px;}
.fs3_c00119{font-size:68.254129px;}
.fs0_c00119{font-size:70.350000px;}
.fs10_c00119{font-size:73.508268px;}
.fs2_c00119{font-size:75.604574px;}
.y0_c00119{bottom:0.000000px;}
.y80_c00119{bottom:22.143000px;}
.y81_c00119{bottom:22.560353px;}
.y82_c00119{bottom:23.086357px;}
.y83_c00119{bottom:23.484068px;}
.y84_c00119{bottom:24.529035px;}
.y85_c00119{bottom:25.382145px;}
.y86_c00119{bottom:25.578278px;}
.y87_c00119{bottom:25.776953px;}
.y7f_c00119{bottom:40.692000px;}
.y7e_c00119{bottom:40.824000px;}
.y7d_c00119{bottom:41.329500px;}
.y7c_c00119{bottom:41.979000px;}
.y7b_c00119{bottom:42.565500px;}
.y7a_c00119{bottom:42.727500px;}
.y79_c00119{bottom:43.015500px;}
.y78_c00119{bottom:43.201500px;}
.y70_c00119{bottom:56.437500px;}
.y71_c00119{bottom:58.059000px;}
.y72_c00119{bottom:58.636500px;}
.y73_c00119{bottom:59.017500px;}
.y74_c00119{bottom:59.481000px;}
.y75_c00119{bottom:59.904000px;}
.y76_c00119{bottom:60.478500px;}
.y77_c00119{bottom:60.790500px;}
.y6f_c00119{bottom:75.751500px;}
.y68_c00119{bottom:91.806000px;}
.y69_c00119{bottom:92.230500px;}
.y6a_c00119{bottom:92.467500px;}
.y6b_c00119{bottom:93.432000px;}
.y6c_c00119{bottom:93.723000px;}
.y6d_c00119{bottom:94.299000px;}
.y6e_c00119{bottom:96.088500px;}
.y60_c00119{bottom:108.544500px;}
.y67_c00119{bottom:108.682500px;}
.y61_c00119{bottom:108.957870px;}
.y62_c00119{bottom:109.682253px;}
.y63_c00119{bottom:110.202192px;}
.y64_c00119{bottom:110.921175px;}
.y65_c00119{bottom:112.325310px;}
.y66_c00119{bottom:112.710411px;}
.y58_c00119{bottom:125.813541px;}
.y59_c00119{bottom:126.189987px;}
.y5a_c00119{bottom:126.668838px;}
.y5b_c00119{bottom:127.895633px;}
.y5c_c00119{bottom:128.215697px;}
.y5d_c00119{bottom:128.571474px;}
.y5e_c00119{bottom:129.393170px;}
.y5f_c00119{bottom:130.118993px;}
.y50_c00119{bottom:144.717470px;}
.y51_c00119{bottom:145.006695px;}
.y52_c00119{bottom:145.194845px;}
.y53_c00119{bottom:146.534238px;}
.y54_c00119{bottom:147.103766px;}
.y55_c00119{bottom:148.196670px;}
.y56_c00119{bottom:149.052207px;}
.y57_c00119{bottom:149.311067px;}
.y48_c00119{bottom:163.077623px;}
.y49_c00119{bottom:163.602411px;}
.y4a_c00119{bottom:164.335148px;}
.y4b_c00119{bottom:164.568537px;}
.y4c_c00119{bottom:164.834561px;}
.y4d_c00119{bottom:165.902913px;}
.y4e_c00119{bottom:166.145147px;}
.y4f_c00119{bottom:166.310645px;}
.y3f_c00119{bottom:178.742694px;}
.y40_c00119{bottom:179.377677px;}
.y41_c00119{bottom:179.623985px;}
.y42_c00119{bottom:180.069875px;}
.y43_c00119{bottom:180.860271px;}
.y44_c00119{bottom:181.522368px;}
.y45_c00119{bottom:181.942793px;}
.y46_c00119{bottom:183.446102px;}
.y47_c00119{bottom:183.737963px;}
.y36_c00119{bottom:197.102994px;}
.y37_c00119{bottom:198.217298px;}
.y38_c00119{bottom:198.576368px;}
.y39_c00119{bottom:199.370673px;}
.y3a_c00119{bottom:200.294169px;}
.y3b_c00119{bottom:200.657940px;}
.y3c_c00119{bottom:201.527834px;}
.y3d_c00119{bottom:201.837293px;}
.y3e_c00119{bottom:202.212296px;}
.y2e_c00119{bottom:215.190474px;}
.y2f_c00119{bottom:215.734412px;}
.y30_c00119{bottom:215.874500px;}
.y31_c00119{bottom:216.834809px;}
.y32_c00119{bottom:216.993537px;}
.y33_c00119{bottom:217.753941px;}
.y34_c00119{bottom:218.011665px;}
.y35_c00119{bottom:218.522280px;}
.y26_c00119{bottom:232.199299px;}
.y27_c00119{bottom:232.948134px;}
.y28_c00119{bottom:233.118221px;}
.y29_c00119{bottom:233.487458px;}
.y2a_c00119{bottom:234.572604px;}
.y2b_c00119{bottom:235.382307px;}
.y2c_c00119{bottom:235.852877px;}
.y2d_c00119{bottom:236.105078px;}
.y1d_c00119{bottom:250.021098px;}
.y1e_c00119{bottom:250.402064px;}
.y1f_c00119{bottom:250.887827px;}
.y20_c00119{bottom:251.629584px;}
.y21_c00119{bottom:252.063006px;}
.y22_c00119{bottom:252.331010px;}
.y23_c00119{bottom:252.681393px;}
.y24_c00119{bottom:253.690050px;}
.y25_c00119{bottom:253.972917px;}
.y13_c00119{bottom:267.571301px;}
.y14_c00119{bottom:267.917574px;}
.y15_c00119{bottom:268.076307px;}
.y16_c00119{bottom:268.477917px;}
.y17_c00119{bottom:268.779611px;}
.y18_c00119{bottom:269.268581px;}
.y19_c00119{bottom:269.906171px;}
.y1a_c00119{bottom:270.117270px;}
.y1b_c00119{bottom:270.794637px;}
.y1c_c00119{bottom:271.047594px;}
.yd_c00119{bottom:285.120146px;}
.ye_c00119{bottom:285.640823px;}
.yf_c00119{bottom:286.364601px;}
.y10_c00119{bottom:286.867142px;}
.y11_c00119{bottom:287.084534px;}
.y12_c00119{bottom:287.519187px;}
.y7_c00119{bottom:302.131500px;}
.y8_c00119{bottom:302.666034px;}
.y9_c00119{bottom:302.909591px;}
.ya_c00119{bottom:303.503723px;}
.yb_c00119{bottom:304.186872px;}
.yc_c00119{bottom:305.078054px;}
.y2_c00119{bottom:318.334500px;}
.y3_c00119{bottom:318.867136px;}
.y4_c00119{bottom:319.791648px;}
.y5_c00119{bottom:320.119312px;}
.y6_c00119{bottom:323.807697px;}
.y1_c00119{bottom:584.817000px;}
.h11_c00119{height:48.300000px;}
.ha_c00119{height:58.803557px;}
.hf_c00119{height:59.850000px;}
.hb_c00119{height:59.853621px;}
.h7_c00119{height:60.903684px;}
.h6_c00119{height:61.953748px;}
.he_c00119{height:63.000000px;}
.h9_c00119{height:63.003811px;}
.hc_c00119{height:63.010205px;}
.hd_c00119{height:64.050000px;}
.h3_c00119{height:64.061560px;}
.h10_c00119{height:67.200000px;}
.h8_c00119{height:67.204065px;}
.h5_c00119{height:68.254129px;}
.h2_c00119{height:70.350000px;}
.h12_c00119{height:73.508268px;}
.h4_c00119{height:75.604574px;}
.h0_c00119{height:632.850000px;}
.h1_c00119{height:633.000000px;}
.w0_c00119{width:371.790000px;}
.w1_c00119{width:372.000000px;}
.x0_c00119{left:0.000000px;}
.x57_c00119{left:37.429500px;}
.x4a_c00119{left:38.610000px;}
.xc_c00119{left:40.632186px;}
.x4e_c00119{left:43.470000px;}
.x2_c00119{left:47.776500px;}
.x4f_c00119{left:53.460000px;}
.x3f_c00119{left:57.179749px;}
.x43_c00119{left:64.959649px;}
.x19_c00119{left:66.055114px;}
.x40_c00119{left:68.283523px;}
.x12_c00119{left:69.818422px;}
.x33_c00119{left:73.165648px;}
.x3_c00119{left:75.810000px;}
.x27_c00119{left:80.106113px;}
.x13_c00119{left:83.021274px;}
.x3b_c00119{left:84.134482px;}
.x34_c00119{left:86.147010px;}
.x21_c00119{left:90.665562px;}
.xd_c00119{left:92.739763px;}
.x7_c00119{left:96.799500px;}
.x1a_c00119{left:98.486695px;}
.x2d_c00119{left:99.927176px;}
.x22_c00119{left:102.036567px;}
.x35_c00119{left:109.634947px;}
.x50_c00119{left:115.020000px;}
.x14_c00119{left:116.530911px;}
.x8_c00119{left:118.941000px;}
.x4_c00119{left:124.468500px;}
.x23_c00119{left:126.602478px;}
.x47_c00119{left:133.396500px;}
.x51_c00119{left:136.080000px;}
.x5_c00119{left:141.714000px;}
.x3c_c00119{left:145.155306px;}
.x1b_c00119{left:147.917017px;}
.x36_c00119{left:151.212784px;}
.x28_c00119{left:158.730522px;}
.x2e_c00119{left:160.592329px;}
.x48_c00119{left:162.282000px;}
.xe_c00119{left:165.084055px;}
.x4b_c00119{left:166.456500px;}
.x53_c00119{left:167.556000px;}
.x29_c00119{left:170.023642px;}
.x9_c00119{left:172.953000px;}
.x1c_c00119{left:176.817747px;}
.x44_c00119{left:178.695150px;}
.x41_c00119{left:180.587115px;}
.x15_c00119{left:182.408685px;}
.x37_c00119{left:186.036715px;}
.x1_c00119{left:187.650000px;}
.x54_c00119{left:189.960000px;}
.x1d_c00119{left:194.635455px;}
.x58_c00119{left:196.498500px;}
.x24_c00119{left:198.930793px;}
.x45_c00119{left:200.018209px;}
.x49_c00119{left:202.225500px;}
.x4c_c00119{left:204.861000px;}
.x38_c00119{left:208.164268px;}
.x2f_c00119{left:209.224056px;}
.xf_c00119{left:215.270100px;}
.x1e_c00119{left:218.032932px;}
.x2a_c00119{left:224.285844px;}
.x30_c00119{left:228.383373px;}
.xa_c00119{left:235.057500px;}
.x10_c00119{left:236.942331px;}
.x2b_c00119{left:242.669233px;}
.x42_c00119{left:244.892374px;}
.x52_c00119{left:248.130000px;}
.x16_c00119{left:253.152409px;}
.x59_c00119{left:266.448000px;}
.x31_c00119{left:274.187847px;}
.x3d_c00119{left:275.814370px;}
.x2c_c00119{left:279.133029px;}
.x11_c00119{left:280.411309px;}
.x25_c00119{left:284.224531px;}
.x1f_c00119{left:285.316978px;}
.x39_c00119{left:287.276305px;}
.x56_c00119{left:288.702000px;}
.x32_c00119{left:290.455412px;}
.x55_c00119{left:294.250500px;}
.x3e_c00119{left:296.062656px;}
.x26_c00119{left:301.014789px;}
.x3a_c00119{left:302.625952px;}
.x20_c00119{left:304.213153px;}
.x17_c00119{left:309.548782px;}
.xb_c00119{left:316.074000px;}
.x4d_c00119{left:324.183000px;}
.x46_c00119{left:326.948632px;}
.x18_c00119{left:330.635551px;}
.x6_c00119{left:335.839500px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:0.000000pt;}
.fsf_c00119{font-size:42.933333pt;}
.fs8_c00119{font-size:52.269829pt;}
.fsd_c00119{font-size:53.200000pt;}
.fs9_c00119{font-size:53.203219pt;}
.fs5_c00119{font-size:54.136608pt;}
.fs4_c00119{font-size:55.069998pt;}
.fsc_c00119{font-size:56.000000pt;}
.fs7_c00119{font-size:56.003388pt;}
.fsa_c00119{font-size:56.009071pt;}
.fsb_c00119{font-size:56.933333pt;}
.fs1_c00119{font-size:56.943609pt;}
.fse_c00119{font-size:59.733333pt;}
.fs6_c00119{font-size:59.736947pt;}
.fs3_c00119{font-size:60.670337pt;}
.fs0_c00119{font-size:62.533333pt;}
.fs10_c00119{font-size:65.340683pt;}
.fs2_c00119{font-size:67.204065pt;}
.y0_c00119{bottom:0.000000pt;}
.y80_c00119{bottom:19.682667pt;}
.y81_c00119{bottom:20.053647pt;}
.y82_c00119{bottom:20.521207pt;}
.y83_c00119{bottom:20.874727pt;}
.y84_c00119{bottom:21.803587pt;}
.y85_c00119{bottom:22.561907pt;}
.y86_c00119{bottom:22.736247pt;}
.y87_c00119{bottom:22.912847pt;}
.y7f_c00119{bottom:36.170667pt;}
.y7e_c00119{bottom:36.288000pt;}
.y7d_c00119{bottom:36.737333pt;}
.y7c_c00119{bottom:37.314667pt;}
.y7b_c00119{bottom:37.836000pt;}
.y7a_c00119{bottom:37.980000pt;}
.y79_c00119{bottom:38.236000pt;}
.y78_c00119{bottom:38.401333pt;}
.y70_c00119{bottom:50.166667pt;}
.y71_c00119{bottom:51.608000pt;}
.y72_c00119{bottom:52.121333pt;}
.y73_c00119{bottom:52.460000pt;}
.y74_c00119{bottom:52.872000pt;}
.y75_c00119{bottom:53.248000pt;}
.y76_c00119{bottom:53.758667pt;}
.y77_c00119{bottom:54.036000pt;}
.y6f_c00119{bottom:67.334667pt;}
.y68_c00119{bottom:81.605333pt;}
.y69_c00119{bottom:81.982667pt;}
.y6a_c00119{bottom:82.193333pt;}
.y6b_c00119{bottom:83.050667pt;}
.y6c_c00119{bottom:83.309333pt;}
.y6d_c00119{bottom:83.821333pt;}
.y6e_c00119{bottom:85.412000pt;}
.y60_c00119{bottom:96.484000pt;}
.y67_c00119{bottom:96.606667pt;}
.y61_c00119{bottom:96.851440pt;}
.y62_c00119{bottom:97.495336pt;}
.y63_c00119{bottom:97.957504pt;}
.y64_c00119{bottom:98.596600pt;}
.y65_c00119{bottom:99.844720pt;}
.y66_c00119{bottom:100.187032pt;}
.y58_c00119{bottom:111.834259pt;}
.y59_c00119{bottom:112.168877pt;}
.y5a_c00119{bottom:112.594523pt;}
.y5b_c00119{bottom:113.685007pt;}
.y5c_c00119{bottom:113.969508pt;}
.y5d_c00119{bottom:114.285755pt;}
.y5e_c00119{bottom:115.016151pt;}
.y5f_c00119{bottom:115.661327pt;}
.y50_c00119{bottom:128.637751pt;}
.y51_c00119{bottom:128.894840pt;}
.y52_c00119{bottom:129.062084pt;}
.y53_c00119{bottom:130.252656pt;}
.y54_c00119{bottom:130.758903pt;}
.y55_c00119{bottom:131.730373pt;}
.y56_c00119{bottom:132.490851pt;}
.y57_c00119{bottom:132.720948pt;}
.y48_c00119{bottom:144.957887pt;}
.y49_c00119{bottom:145.424365pt;}
.y4a_c00119{bottom:146.075687pt;}
.y4b_c00119{bottom:146.283144pt;}
.y4c_c00119{bottom:146.519609pt;}
.y4d_c00119{bottom:147.469256pt;}
.y4e_c00119{bottom:147.684575pt;}
.y4f_c00119{bottom:147.831684pt;}
.y3f_c00119{bottom:158.882395pt;}
.y40_c00119{bottom:159.446824pt;}
.y41_c00119{bottom:159.665764pt;}
.y42_c00119{bottom:160.062111pt;}
.y43_c00119{bottom:160.764685pt;}
.y44_c00119{bottom:161.353216pt;}
.y45_c00119{bottom:161.726927pt;}
.y46_c00119{bottom:163.063201pt;}
.y47_c00119{bottom:163.322633pt;}
.y36_c00119{bottom:175.202661pt;}
.y37_c00119{bottom:176.193153pt;}
.y38_c00119{bottom:176.512327pt;}
.y39_c00119{bottom:177.218376pt;}
.y3a_c00119{bottom:178.039261pt;}
.y3b_c00119{bottom:178.362613pt;}
.y3c_c00119{bottom:179.135852pt;}
.y3d_c00119{bottom:179.410927pt;}
.y3e_c00119{bottom:179.744263pt;}
.y2e_c00119{bottom:191.280421pt;}
.y2f_c00119{bottom:191.763921pt;}
.y30_c00119{bottom:191.888444pt;}
.y31_c00119{bottom:192.742052pt;}
.y32_c00119{bottom:192.883144pt;}
.y33_c00119{bottom:193.559059pt;}
.y34_c00119{bottom:193.788147pt;}
.y35_c00119{bottom:194.242027pt;}
.y26_c00119{bottom:206.399377pt;}
.y27_c00119{bottom:207.065008pt;}
.y28_c00119{bottom:207.216196pt;}
.y29_c00119{bottom:207.544407pt;}
.y2a_c00119{bottom:208.508981pt;}
.y2b_c00119{bottom:209.228717pt;}
.y2c_c00119{bottom:209.647001pt;}
.y2d_c00119{bottom:209.871180pt;}
.y1d_c00119{bottom:222.240976pt;}
.y1e_c00119{bottom:222.579612pt;}
.y1f_c00119{bottom:223.011401pt;}
.y20_c00119{bottom:223.670741pt;}
.y21_c00119{bottom:224.056005pt;}
.y22_c00119{bottom:224.294231pt;}
.y23_c00119{bottom:224.605683pt;}
.y24_c00119{bottom:225.502267pt;}
.y25_c00119{bottom:225.753704pt;}
.y13_c00119{bottom:237.841156pt;}
.y14_c00119{bottom:238.148955pt;}
.y15_c00119{bottom:238.290051pt;}
.y16_c00119{bottom:238.647037pt;}
.y17_c00119{bottom:238.915209pt;}
.y18_c00119{bottom:239.349849pt;}
.y19_c00119{bottom:239.916596pt;}
.y1a_c00119{bottom:240.104240pt;}
.y1b_c00119{bottom:240.706344pt;}
.y1c_c00119{bottom:240.931195pt;}
.yd_c00119{bottom:253.440129pt;}
.ye_c00119{bottom:253.902953pt;}
.yf_c00119{bottom:254.546312pt;}
.y10_c00119{bottom:254.993015pt;}
.y11_c00119{bottom:255.186252pt;}
.y12_c00119{bottom:255.572611pt;}
.y7_c00119{bottom:268.561333pt;}
.y8_c00119{bottom:269.036475pt;}
.y9_c00119{bottom:269.252969pt;}
.ya_c00119{bottom:269.781087pt;}
.yb_c00119{bottom:270.388331pt;}
.yc_c00119{bottom:271.180492pt;}
.y2_c00119{bottom:282.964000pt;}
.y3_c00119{bottom:283.437455pt;}
.y4_c00119{bottom:284.259243pt;}
.y5_c00119{bottom:284.550500pt;}
.y6_c00119{bottom:287.829064pt;}
.y1_c00119{bottom:519.837333pt;}
.h11_c00119{height:42.933333pt;}
.ha_c00119{height:52.269829pt;}
.hf_c00119{height:53.200000pt;}
.hb_c00119{height:53.203219pt;}
.h7_c00119{height:54.136608pt;}
.h6_c00119{height:55.069998pt;}
.he_c00119{height:56.000000pt;}
.h9_c00119{height:56.003388pt;}
.hc_c00119{height:56.009071pt;}
.hd_c00119{height:56.933333pt;}
.h3_c00119{height:56.943609pt;}
.h10_c00119{height:59.733333pt;}
.h8_c00119{height:59.736947pt;}
.h5_c00119{height:60.670337pt;}
.h2_c00119{height:62.533333pt;}
.h12_c00119{height:65.340683pt;}
.h4_c00119{height:67.204065pt;}
.h0_c00119{height:562.533333pt;}
.h1_c00119{height:562.666667pt;}
.w0_c00119{width:330.480000pt;}
.w1_c00119{width:330.666667pt;}
.x0_c00119{left:0.000000pt;}
.x57_c00119{left:33.270667pt;}
.x4a_c00119{left:34.320000pt;}
.xc_c00119{left:36.117499pt;}
.x4e_c00119{left:38.640000pt;}
.x2_c00119{left:42.468000pt;}
.x4f_c00119{left:47.520000pt;}
.x3f_c00119{left:50.826444pt;}
.x43_c00119{left:57.741911pt;}
.x19_c00119{left:58.715657pt;}
.x40_c00119{left:60.696465pt;}
.x12_c00119{left:62.060820pt;}
.x33_c00119{left:65.036132pt;}
.x3_c00119{left:67.386667pt;}
.x27_c00119{left:71.205433pt;}
.x13_c00119{left:73.796688pt;}
.x3b_c00119{left:74.786207pt;}
.x34_c00119{left:76.575120pt;}
.x21_c00119{left:80.591611pt;}
.xd_c00119{left:82.435345pt;}
.x7_c00119{left:86.044000pt;}
.x1a_c00119{left:87.543729pt;}
.x2d_c00119{left:88.824156pt;}
.x22_c00119{left:90.699171pt;}
.x35_c00119{left:97.453287pt;}
.x50_c00119{left:102.240000pt;}
.x14_c00119{left:103.583032pt;}
.x8_c00119{left:105.725333pt;}
.x4_c00119{left:110.638667pt;}
.x23_c00119{left:112.535536pt;}
.x47_c00119{left:118.574667pt;}
.x51_c00119{left:120.960000pt;}
.x5_c00119{left:125.968000pt;}
.x3c_c00119{left:129.026939pt;}
.x1b_c00119{left:131.481793pt;}
.x36_c00119{left:134.411364pt;}
.x28_c00119{left:141.093797pt;}
.x2e_c00119{left:142.748737pt;}
.x48_c00119{left:144.250667pt;}
.xe_c00119{left:146.741383pt;}
.x4b_c00119{left:147.961333pt;}
.x53_c00119{left:148.938667pt;}
.x29_c00119{left:151.132127pt;}
.x9_c00119{left:153.736000pt;}
.x1c_c00119{left:157.171331pt;}
.x44_c00119{left:158.840133pt;}
.x41_c00119{left:160.521880pt;}
.x15_c00119{left:162.141053pt;}
.x37_c00119{left:165.365969pt;}
.x1_c00119{left:166.800000pt;}
.x54_c00119{left:168.853333pt;}
.x1d_c00119{left:173.009293pt;}
.x58_c00119{left:174.665333pt;}
.x24_c00119{left:176.827372pt;}
.x45_c00119{left:177.793964pt;}
.x49_c00119{left:179.756000pt;}
.x4c_c00119{left:182.098667pt;}
.x38_c00119{left:185.034905pt;}
.x2f_c00119{left:185.976939pt;}
.xf_c00119{left:191.351200pt;}
.x1e_c00119{left:193.807051pt;}
.x2a_c00119{left:199.365195pt;}
.x30_c00119{left:203.007443pt;}
.xa_c00119{left:208.940000pt;}
.x10_c00119{left:210.615405pt;}
.x2b_c00119{left:215.705985pt;}
.x42_c00119{left:217.682111pt;}
.x52_c00119{left:220.560000pt;}
.x16_c00119{left:225.024364pt;}
.x59_c00119{left:236.842667pt;}
.x31_c00119{left:243.722531pt;}
.x3d_c00119{left:245.168329pt;}
.x2c_c00119{left:248.118248pt;}
.x11_c00119{left:249.254497pt;}
.x25_c00119{left:252.644028pt;}
.x1f_c00119{left:253.615092pt;}
.x39_c00119{left:255.356716pt;}
.x56_c00119{left:256.624000pt;}
.x32_c00119{left:258.182588pt;}
.x55_c00119{left:261.556000pt;}
.x3e_c00119{left:263.166805pt;}
.x26_c00119{left:267.568701pt;}
.x3a_c00119{left:269.000847pt;}
.x20_c00119{left:270.411692pt;}
.x17_c00119{left:275.154473pt;}
.xb_c00119{left:280.954667pt;}
.x4d_c00119{left:288.162667pt;}
.x46_c00119{left:290.621007pt;}
.x18_c00119{left:293.898268pt;}
.x6_c00119{left:298.524000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00120 {
    display:none;
  }
  .loading-indicator_c00120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00120 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00120 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00120" -> "#page-container .classname_c00120")
 */
.pf_c00120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00120 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00120 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00120 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00120 {overflow:visible;}
  }
}
.c_c00120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00120 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00120:after { /* webkit #35443 */
  content: '';
}
.t_c00120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00120 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00120 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00120 { /* info for Javascript */
  display:none;
}
.l_c00120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00120:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00120 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00120.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00120{transform:matrix(0.091195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091195,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.099385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099385,0.000000,0.000000,0.250000,0,0);}
.mdf_c00120{transform:matrix(0.107499,0.002580,-0.005998,0.249928,0,0);-ms-transform:matrix(0.107499,0.002580,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.107499,0.002580,-0.005998,0.249928,0,0);}
.m14_c00120{transform:matrix(0.117255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117255,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.126665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126665,0.000000,0.000000,0.250000,0,0);}
.m7c_c00120{transform:matrix(0.137760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137760,0.000000,0.000000,0.250000,0,0);}
.mc0_c00120{transform:matrix(0.140180,0.003364,-0.005998,0.249928,0,0);-ms-transform:matrix(0.140180,0.003364,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.140180,0.003364,-0.005998,0.249928,0,0);}
.m5b_c00120{transform:matrix(0.142235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142235,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);}
.mca_c00120{transform:matrix(0.145053,0.003481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.145053,0.003481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.145053,0.003481,-0.005998,0.249928,0,0);}
.mde_c00120{transform:matrix(0.146608,0.003519,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146608,0.003519,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146608,0.003519,-0.005998,0.249928,0,0);}
.m9c_c00120{transform:matrix(0.148945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148945,0.000000,0.000000,0.250000,0,0);}
.m72_c00120{transform:matrix(0.151470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151470,0.000000,0.000000,0.250000,0,0);}
.me4_c00120{transform:matrix(0.154630,0.003711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154630,0.003711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154630,0.003711,-0.005998,0.249928,0,0);}
.m7a_c00120{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);}
.me5_c00120{transform:matrix(0.156755,0.003762,-0.005998,0.249928,0,0);-ms-transform:matrix(0.156755,0.003762,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.156755,0.003762,-0.005998,0.249928,0,0);}
.m30_c00120{transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m5a_c00120{transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);}
.me7_c00120{transform:matrix(0.161069,0.003866,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161069,0.003866,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161069,0.003866,-0.005998,0.249928,0,0);}
.m0_c00120{transform:matrix(0.161155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161155,0.000000,0.000000,0.250000,0,0);}
.m7e_c00120{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.m80_c00120{transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);}
.me1_c00120{transform:matrix(0.163143,0.003915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163143,0.003915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163143,0.003915,-0.005998,0.249928,0,0);}
.m6f_c00120{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);}
.mbe_c00120{transform:matrix(0.165922,0.003982,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165922,0.003982,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165922,0.003982,-0.005998,0.249928,0,0);}
.ma6_c00120{transform:matrix(0.166372,0.003993,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166372,0.003993,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166372,0.003993,-0.005998,0.249928,0,0);}
.m5c_c00120{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.md6_c00120{transform:matrix(0.166782,0.004003,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166782,0.004003,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166782,0.004003,-0.005998,0.249928,0,0);}
.m9e_c00120{transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.mb9_c00120{transform:matrix(0.169926,0.004078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169926,0.004078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169926,0.004078,-0.005998,0.249928,0,0);}
.m29_c00120{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);}
.m7b_c00120{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.172140,0.004131,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172140,0.004131,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172140,0.004131,-0.005998,0.249928,0,0);}
.m5f_c00120{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.md0_c00120{transform:matrix(0.172710,0.004145,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172710,0.004145,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172710,0.004145,-0.005998,0.249928,0,0);}
.m5_c00120{transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.me0_c00120{transform:matrix(0.174005,0.004176,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174005,0.004176,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174005,0.004176,-0.005998,0.249928,0,0);}
.med_c00120{transform:matrix(0.174445,0.004187,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174445,0.004187,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174445,0.004187,-0.005998,0.249928,0,0);}
.ma3_c00120{transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);}
.m82_c00120{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);}
.m55_c00120{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.mc5_c00120{transform:matrix(0.178344,0.004280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178344,0.004280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178344,0.004280,-0.005998,0.249928,0,0);}
.m8b_c00120{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);}
.m70_c00120{transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mcd_c00120{transform:matrix(0.181883,0.004365,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181883,0.004365,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181883,0.004365,-0.005998,0.249928,0,0);}
.m71_c00120{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);}
.m81_c00120{transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183065,0.000000,0.000000,0.250000,0,0);}
.mb3_c00120{transform:matrix(0.183132,0.004395,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183132,0.004395,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183132,0.004395,-0.005998,0.249928,0,0);}
.md9_c00120{transform:matrix(0.183507,0.004404,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183507,0.004404,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183507,0.004404,-0.005998,0.249928,0,0);}
.mb8_c00120{transform:matrix(0.183862,0.004413,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183862,0.004413,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183862,0.004413,-0.005998,0.249928,0,0);}
.m60_c00120{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.meb_c00120{transform:matrix(0.184337,0.004424,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184337,0.004424,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184337,0.004424,-0.005998,0.249928,0,0);}
.me3_c00120{transform:matrix(0.184632,0.004431,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184632,0.004431,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184632,0.004431,-0.005998,0.249928,0,0);}
.me2_c00120{transform:matrix(0.184807,0.004435,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184807,0.004435,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184807,0.004435,-0.005998,0.249928,0,0);}
.m9_c00120{transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);}
.m50_c00120{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.m3b_c00120{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m96_c00120{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.mcb_c00120{transform:matrix(0.188786,0.004531,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188786,0.004531,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188786,0.004531,-0.005998,0.249928,0,0);}
.m2b_c00120{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.md8_c00120{transform:matrix(0.188871,0.004533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188871,0.004533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188871,0.004533,-0.005998,0.249928,0,0);}
.m27_c00120{transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);}
.mf1_c00120{transform:matrix(0.189056,0.004537,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189056,0.004537,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189056,0.004537,-0.005998,0.249928,0,0);}
.mda_c00120{transform:matrix(0.189086,0.004538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189086,0.004538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189086,0.004538,-0.005998,0.249928,0,0);}
.m54_c00120{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.md1_c00120{transform:matrix(0.189610,0.004551,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189610,0.004551,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189610,0.004551,-0.005998,0.249928,0,0);}
.m44_c00120{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m65_c00120{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);}
.mea_c00120{transform:matrix(0.190890,0.004581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190890,0.004581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190890,0.004581,-0.005998,0.249928,0,0);}
.m7f_c00120{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.mce_c00120{transform:matrix(0.191655,0.004600,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191655,0.004600,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191655,0.004600,-0.005998,0.249928,0,0);}
.m6_c00120{transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);}
.ma5_c00120{transform:matrix(0.191885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191885,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m56_c00120{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.192630,0.004623,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192630,0.004623,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192630,0.004623,-0.005998,0.249928,0,0);}
.m90_c00120{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.mec_c00120{transform:matrix(0.193324,0.004640,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193324,0.004640,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193324,0.004640,-0.005998,0.249928,0,0);}
.m2f_c00120{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);}
.mf4_c00120{transform:matrix(0.194159,0.004660,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194159,0.004660,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194159,0.004660,-0.005998,0.249928,0,0);}
.m58_c00120{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m10_c00120{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.me6_c00120{transform:matrix(0.195379,0.004689,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195379,0.004689,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195379,0.004689,-0.005998,0.249928,0,0);}
.mb7_c00120{transform:matrix(0.196154,0.004708,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196154,0.004708,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196154,0.004708,-0.005998,0.249928,0,0);}
.m1a_c00120{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);}
.m5e_c00120{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.mc4_c00120{transform:matrix(0.200147,0.004804,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200147,0.004804,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200147,0.004804,-0.005998,0.249928,0,0);}
.m64_c00120{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m8d_c00120{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00120{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.mba_c00120{transform:matrix(0.202372,0.004857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202372,0.004857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202372,0.004857,-0.005998,0.249928,0,0);}
.m99_c00120{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.md4_c00120{transform:matrix(0.202947,0.004871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202947,0.004871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202947,0.004871,-0.005998,0.249928,0,0);}
.m18_c00120{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.mee_c00120{transform:matrix(0.203681,0.004888,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203681,0.004888,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203681,0.004888,-0.005998,0.249928,0,0);}
.m1e_c00120{transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.mc1_c00120{transform:matrix(0.205426,0.004930,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205426,0.004930,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205426,0.004930,-0.005998,0.249928,0,0);}
.m53_c00120{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mad_c00120{transform:matrix(0.206940,0.004967,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206940,0.004967,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206940,0.004967,-0.005998,0.249928,0,0);}
.m49_c00120{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);}
.mb2_c00120{transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207535,0.004981,-0.005998,0.249928,0,0);}
.m39_c00120{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.me8_c00120{transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);}
.mdb_c00120{transform:matrix(0.207795,0.004987,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207795,0.004987,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207795,0.004987,-0.005998,0.249928,0,0);}
.md5_c00120{transform:matrix(0.207810,0.004987,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207810,0.004987,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207810,0.004987,-0.005998,0.249928,0,0);}
.mf0_c00120{transform:matrix(0.207840,0.004988,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207840,0.004988,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207840,0.004988,-0.005998,0.249928,0,0);}
.m77_c00120{transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);}
.mef_c00120{transform:matrix(0.209090,0.005018,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209090,0.005018,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209090,0.005018,-0.005998,0.249928,0,0);}
.m79_c00120{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.ma9_c00120{transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);}
.m76_c00120{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m22_c00120{transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m6b_c00120{transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211645,0.000000,0.000000,0.250000,0,0);}
.md7_c00120{transform:matrix(0.211869,0.005085,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211869,0.005085,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211869,0.005085,-0.005998,0.249928,0,0);}
.ma1_c00120{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);}
.mb4_c00120{transform:matrix(0.212094,0.005090,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212094,0.005090,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212094,0.005090,-0.005998,0.249928,0,0);}
.m92_c00120{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m9a_c00120{transform:matrix(0.212655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212655,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{transform:matrix(0.213808,0.005131,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213808,0.005131,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213808,0.005131,-0.005998,0.249928,0,0);}
.mf6_c00120{transform:matrix(0.214078,0.005138,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214078,0.005138,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214078,0.005138,-0.005998,0.249928,0,0);}
.m98_c00120{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.mb1_c00120{transform:matrix(0.215253,0.005166,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215253,0.005166,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215253,0.005166,-0.005998,0.249928,0,0);}
.m20_c00120{transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);}
.md2_c00120{transform:matrix(0.215488,0.005172,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215488,0.005172,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215488,0.005172,-0.005998,0.249928,0,0);}
.m16_c00120{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00120{transform:matrix(0.216408,0.005194,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216408,0.005194,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216408,0.005194,-0.005998,0.249928,0,0);}
.m59_c00120{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.mcc_c00120{transform:matrix(0.216913,0.005206,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216913,0.005206,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216913,0.005206,-0.005998,0.249928,0,0);}
.me9_c00120{transform:matrix(0.218282,0.005239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218282,0.005239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218282,0.005239,-0.005998,0.249928,0,0);}
.maf_c00120{transform:matrix(0.219052,0.005257,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219052,0.005257,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219052,0.005257,-0.005998,0.249928,0,0);}
.m74_c00120{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.mf2_c00120{transform:matrix(0.220736,0.005298,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220736,0.005298,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220736,0.005298,-0.005998,0.249928,0,0);}
.m3c_c00120{transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);}
.mb6_c00120{transform:matrix(0.220956,0.005303,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220956,0.005303,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220956,0.005303,-0.005998,0.249928,0,0);}
.m2c_c00120{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.mcf_c00120{transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);}
.m8c_c00120{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.mbf_c00120{transform:matrix(0.221721,0.005321,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221721,0.005321,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221721,0.005321,-0.005998,0.249928,0,0);}
.m4f_c00120{transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);}
.mc2_c00120{transform:matrix(0.222221,0.005333,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222221,0.005333,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222221,0.005333,-0.005998,0.249928,0,0);}
.ma0_c00120{transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.mc7_c00120{transform:matrix(0.224290,0.005383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224290,0.005383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224290,0.005383,-0.005998,0.249928,0,0);}
.mbc_c00120{transform:matrix(0.224340,0.005384,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224340,0.005384,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224340,0.005384,-0.005998,0.249928,0,0);}
.mb0_c00120{transform:matrix(0.224810,0.005395,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224810,0.005395,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224810,0.005395,-0.005998,0.249928,0,0);}
.m97_c00120{transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.m45_c00120{transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);}
.mae_c00120{transform:matrix(0.227844,0.005468,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227844,0.005468,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227844,0.005468,-0.005998,0.249928,0,0);}
.mc6_c00120{transform:matrix(0.228394,0.005481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228394,0.005481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228394,0.005481,-0.005998,0.249928,0,0);}
.m2e_c00120{transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);}
.m3e_c00120{transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);}
.mbd_c00120{transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);}
.mbb_c00120{transform:matrix(0.233258,0.005598,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233258,0.005598,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233258,0.005598,-0.005998,0.249928,0,0);}
.m8a_c00120{transform:matrix(0.234980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234980,0.000000,0.000000,0.250000,0,0);}
.m63_c00120{transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);}
.md3_c00120{transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);}
.mc3_c00120{transform:matrix(0.238851,0.005732,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238851,0.005732,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238851,0.005732,-0.005998,0.249928,0,0);}
.m75_c00120{transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{transform:matrix(0.244135,0.005859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244135,0.005859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244135,0.005859,-0.005998,0.249928,0,0);}
.mf7_c00120{transform:matrix(0.244800,0.005875,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244800,0.005875,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244800,0.005875,-0.005998,0.249928,0,0);}
.m41_c00120{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);}
.mf3_c00120{transform:matrix(0.247989,0.005952,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247989,0.005952,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247989,0.005952,-0.005998,0.249928,0,0);}
.mf8_c00120{transform:matrix(0.254992,0.006120,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254992,0.006120,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254992,0.006120,-0.005998,0.249928,0,0);}
.m78_c00120{transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);}
.m6d_c00120{transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);}
.mf5_c00120{transform:matrix(0.270257,0.006486,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270257,0.006486,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270257,0.006486,-0.005998,0.249928,0,0);}
.mc8_c00120{transform:matrix(0.278945,0.006695,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278945,0.006695,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278945,0.006695,-0.005998,0.249928,0,0);}
.mc9_c00120{transform:matrix(0.282204,0.006773,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282204,0.006773,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282204,0.006773,-0.005998,0.249928,0,0);}
.mdc_c00120{transform:matrix(0.322707,0.007745,-0.005998,0.249928,0,0);-ms-transform:matrix(0.322707,0.007745,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.322707,0.007745,-0.005998,0.249928,0,0);}
.m3d_c00120{transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);}
.mb5_c00120{transform:matrix(0.417670,0.010024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.417670,0.010024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.417670,0.010024,-0.005998,0.249928,0,0);}
.maa_c00120{transform:matrix(0.792117,0.019011,-0.005998,0.249928,0,0);-ms-transform:matrix(0.792117,0.019011,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.792117,0.019011,-0.005998,0.249928,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:0.000000px;}
.fc0_c00120{color:transparent;}
.fs14_c00120{font-size:54.615723px;}
.fsf_c00120{font-size:55.666025px;}
.fs7_c00120{font-size:59.850000px;}
.fs9_c00120{font-size:60.900000px;}
.fsd_c00120{font-size:60.917537px;}
.fs4_c00120{font-size:61.950000px;}
.fse_c00120{font-size:61.967839px;}
.fs8_c00120{font-size:63.000000px;}
.fs13_c00120{font-size:63.018141px;}
.fsb_c00120{font-size:64.050000px;}
.fsa_c00120{font-size:65.100000px;}
.fs10_c00120{font-size:65.118746px;}
.fs3_c00120{font-size:66.150000px;}
.fsc_c00120{font-size:67.200000px;}
.fs5_c00120{font-size:68.250000px;}
.fs11_c00120{font-size:68.269653px;}
.fs2_c00120{font-size:70.350000px;}
.fs12_c00120{font-size:70.370258px;}
.fs6_c00120{font-size:71.400000px;}
.fs1_c00120{font-size:72.450000px;}
.fs0_c00120{font-size:77.700000px;}
.y0_c00120{bottom:0.000000px;}
.y91_c00120{bottom:26.571360px;}
.y90_c00120{bottom:26.571660px;}
.y8d_c00120{bottom:26.571780px;}
.y92_c00120{bottom:26.571960px;}
.y8f_c00120{bottom:26.571984px;}
.y93_c00120{bottom:26.572284px;}
.y94_c00120{bottom:26.572344px;}
.y8e_c00120{bottom:26.572464px;}
.y95_c00120{bottom:26.573028px;}
.y8c_c00120{bottom:44.665716px;}
.y8b_c00120{bottom:45.843552px;}
.y8a_c00120{bottom:46.160988px;}
.y89_c00120{bottom:46.773744px;}
.y88_c00120{bottom:48.177132px;}
.y87_c00120{bottom:49.054248px;}
.y86_c00120{bottom:49.427964px;}
.y85_c00120{bottom:49.911312px;}
.y84_c00120{bottom:60.950508px;}
.y82_c00120{bottom:60.950592px;}
.y81_c00120{bottom:60.950868px;}
.y83_c00120{bottom:60.950892px;}
.y80_c00120{bottom:60.951264px;}
.y7c_c00120{bottom:60.951540px;}
.y7f_c00120{bottom:60.951684px;}
.y7e_c00120{bottom:60.951756px;}
.y7d_c00120{bottom:60.952044px;}
.y7b_c00120{bottom:60.952152px;}
.y7a_c00120{bottom:79.766544px;}
.y79_c00120{bottom:79.984260px;}
.y78_c00120{bottom:81.829908px;}
.y77_c00120{bottom:83.079696px;}
.y76_c00120{bottom:83.629212px;}
.y75_c00120{bottom:84.755400px;}
.y73_c00120{bottom:97.336344px;}
.y70_c00120{bottom:97.336536px;}
.y71_c00120{bottom:97.336596px;}
.y72_c00120{bottom:97.336812px;}
.y74_c00120{bottom:97.336824px;}
.y6d_c00120{bottom:97.337184px;}
.y6f_c00120{bottom:97.337268px;}
.y6c_c00120{bottom:97.337724px;}
.y6e_c00120{bottom:97.337868px;}
.y6b_c00120{bottom:115.940580px;}
.y6a_c00120{bottom:116.423484px;}
.y69_c00120{bottom:117.946440px;}
.y68_c00120{bottom:118.442940px;}
.y67_c00120{bottom:119.398896px;}
.y66_c00120{bottom:121.062744px;}
.y65_c00120{bottom:121.660968px;}
.y64_c00120{bottom:123.108756px;}
.y63_c00120{bottom:132.512796px;}
.y62_c00120{bottom:132.964524px;}
.y61_c00120{bottom:133.643820px;}
.y60_c00120{bottom:133.925508px;}
.y5f_c00120{bottom:134.870904px;}
.y5e_c00120{bottom:135.290544px;}
.y5d_c00120{bottom:135.679392px;}
.y5c_c00120{bottom:136.919124px;}
.y5b_c00120{bottom:137.263728px;}
.y5a_c00120{bottom:138.232884px;}
.y52_c00120{bottom:149.545788px;}
.y53_c00120{bottom:149.545836px;}
.y54_c00120{bottom:149.546328px;}
.y56_c00120{bottom:149.546484px;}
.y58_c00120{bottom:149.546760px;}
.y55_c00120{bottom:149.546940px;}
.y57_c00120{bottom:149.547180px;}
.y59_c00120{bottom:149.547348px;}
.y4e_c00120{bottom:167.864436px;}
.y4c_c00120{bottom:167.864760px;}
.y4f_c00120{bottom:167.864856px;}
.y4d_c00120{bottom:167.865072px;}
.y51_c00120{bottom:167.865288px;}
.y50_c00120{bottom:167.865372px;}
.y4b_c00120{bottom:186.177384px;}
.y4a_c00120{bottom:186.676344px;}
.y49_c00120{bottom:188.250984px;}
.y48_c00120{bottom:188.697960px;}
.y47_c00120{bottom:189.884304px;}
.y46_c00120{bottom:190.369944px;}
.y45_c00120{bottom:191.886768px;}
.y44_c00120{bottom:192.212064px;}
.y43_c00120{bottom:192.514500px;}
.y42_c00120{bottom:202.900500px;}
.y41_c00120{bottom:204.405000px;}
.y40_c00120{bottom:206.395500px;}
.y3f_c00120{bottom:206.997000px;}
.y3e_c00120{bottom:208.320000px;}
.y3d_c00120{bottom:209.527500px;}
.y3c_c00120{bottom:221.373000px;}
.y3b_c00120{bottom:221.686500px;}
.y3a_c00120{bottom:222.688500px;}
.y39_c00120{bottom:222.871500px;}
.y38_c00120{bottom:223.161000px;}
.y37_c00120{bottom:223.899000px;}
.y36_c00120{bottom:224.029500px;}
.y35_c00120{bottom:224.376000px;}
.y34_c00120{bottom:239.142000px;}
.y33_c00120{bottom:239.622000px;}
.y32_c00120{bottom:240.426000px;}
.y31_c00120{bottom:240.760500px;}
.y30_c00120{bottom:241.807500px;}
.y2f_c00120{bottom:242.440500px;}
.y2e_c00120{bottom:243.546000px;}
.y2d_c00120{bottom:257.736000px;}
.y2c_c00120{bottom:257.967000px;}
.y2b_c00120{bottom:258.496500px;}
.y2a_c00120{bottom:259.219500px;}
.y29_c00120{bottom:259.848000px;}
.y28_c00120{bottom:260.079000px;}
.y27_c00120{bottom:260.805000px;}
.y26_c00120{bottom:261.363000px;}
.y25_c00120{bottom:274.171500px;}
.y24_c00120{bottom:274.780500px;}
.y23_c00120{bottom:275.916000px;}
.y22_c00120{bottom:276.438000px;}
.y21_c00120{bottom:277.623000px;}
.y20_c00120{bottom:277.876500px;}
.y1f_c00120{bottom:278.914500px;}
.y1e_c00120{bottom:292.680000px;}
.y1d_c00120{bottom:293.055000px;}
.y1c_c00120{bottom:293.766000px;}
.y1b_c00120{bottom:294.142500px;}
.y1a_c00120{bottom:295.149000px;}
.y19_c00120{bottom:295.408500px;}
.y18_c00120{bottom:296.206500px;}
.y17_c00120{bottom:296.731500px;}
.y16_c00120{bottom:310.753500px;}
.y15_c00120{bottom:311.560500px;}
.y14_c00120{bottom:312.996000px;}
.y13_c00120{bottom:313.269000px;}
.y12_c00120{bottom:314.020500px;}
.y11_c00120{bottom:314.550000px;}
.y10_c00120{bottom:329.709000px;}
.yf_c00120{bottom:346.374000px;}
.ye_c00120{bottom:362.196000px;}
.yd_c00120{bottom:380.203500px;}
.yc_c00120{bottom:397.369500px;}
.yb_c00120{bottom:414.570000px;}
.ya_c00120{bottom:432.009000px;}
.y9_c00120{bottom:449.131500px;}
.y8_c00120{bottom:466.359000px;}
.y7_c00120{bottom:484.075500px;}
.y6_c00120{bottom:502.351500px;}
.y5_c00120{bottom:519.781500px;}
.y4_c00120{bottom:537.535500px;}
.y3_c00120{bottom:554.769000px;}
.y2_c00120{bottom:572.110500px;}
.y1_c00120{bottom:585.223500px;}
.h16_c00120{height:54.615723px;}
.h11_c00120{height:55.666025px;}
.h9_c00120{height:59.850000px;}
.hb_c00120{height:60.900000px;}
.hf_c00120{height:60.917537px;}
.h6_c00120{height:61.950000px;}
.h10_c00120{height:61.967839px;}
.ha_c00120{height:63.000000px;}
.h15_c00120{height:63.018141px;}
.hd_c00120{height:64.050000px;}
.hc_c00120{height:65.100000px;}
.h12_c00120{height:65.118746px;}
.h5_c00120{height:66.150000px;}
.he_c00120{height:67.200000px;}
.h7_c00120{height:68.250000px;}
.h13_c00120{height:68.269653px;}
.h4_c00120{height:70.350000px;}
.h14_c00120{height:70.370258px;}
.h8_c00120{height:71.400000px;}
.h3_c00120{height:72.450000px;}
.h2_c00120{height:77.700000px;}
.h0_c00120{height:632.850000px;}
.h1_c00120{height:633.000000px;}
.w0_c00120{width:371.790000px;}
.w1_c00120{width:372.000000px;}
.x0_c00120{left:0.000000px;}
.x61_c00120{left:32.263500px;}
.x78_c00120{left:34.254360px;}
.x7a_c00120{left:35.361048px;}
.x4f_c00120{left:36.450000px;}
.xa_c00120{left:38.070000px;}
.x1a_c00120{left:39.420000px;}
.x2_c00120{left:41.040000px;}
.x66_c00120{left:46.258500px;}
.x38_c00120{left:48.330000px;}
.x3d_c00120{left:52.380000px;}
.x7e_c00120{left:56.160384px;}
.x67_c00120{left:58.860000px;}
.x3_c00120{left:61.290000px;}
.x50_c00120{left:63.450000px;}
.x15_c00120{left:65.070000px;}
.xb_c00120{left:66.960000px;}
.x1b_c00120{left:69.390000px;}
.x7b_c00120{left:71.011068px;}
.x68_c00120{left:72.414000px;}
.x57_c00120{left:74.340000px;}
.x2c_c00120{left:77.760000px;}
.x4_c00120{left:80.730000px;}
.x75_c00120{left:81.814044px;}
.x16_c00120{left:85.050000px;}
.x32_c00120{left:89.370000px;}
.x20_c00120{left:90.990000px;}
.x4c_c00120{left:95.040000px;}
.x46_c00120{left:96.120000px;}
.x1c_c00120{left:97.200000px;}
.x42_c00120{left:100.710000px;}
.x5a_c00120{left:101.937000px;}
.x70_c00120{left:103.181748px;}
.x17_c00120{left:105.840000px;}
.x47_c00120{left:112.590000px;}
.x21_c00120{left:114.210000px;}
.x3e_c00120{left:116.910000px;}
.x6e_c00120{left:118.547472px;}
.x5_c00120{left:127.170000px;}
.x43_c00120{left:128.520000px;}
.x4d_c00120{left:129.600000px;}
.x51_c00120{left:131.220000px;}
.xc_c00120{left:133.110000px;}
.x39_c00120{left:134.460000px;}
.x69_c00120{left:135.615000px;}
.x10_c00120{left:136.620000px;}
.x60_c00120{left:139.395000px;}
.x3f_c00120{left:144.450000px;}
.x52_c00120{left:147.690000px;}
.xd_c00120{left:148.770000px;}
.x26_c00120{left:150.660000px;}
.x2d_c00120{left:151.740000px;}
.x5d_c00120{left:154.021500px;}
.x33_c00120{left:155.250000px;}
.x55_c00120{left:156.985500px;}
.x3a_c00120{left:160.110000px;}
.x64_c00120{left:162.546000px;}
.x2e_c00120{left:165.240000px;}
.x27_c00120{left:168.750000px;}
.x74_c00120{left:173.936736px;}
.x1_c00120{left:175.500000px;}
.x48_c00120{left:177.120000px;}
.x7c_c00120{left:179.043240px;}
.x79_c00120{left:180.476364px;}
.x11_c00120{left:181.980000px;}
.x71_c00120{left:184.609560px;}
.x40_c00120{left:189.810000px;}
.x5b_c00120{left:191.842500px;}
.x28_c00120{left:194.130000px;}
.x34_c00120{left:195.750000px;}
.x49_c00120{left:198.450000px;}
.x7d_c00120{left:200.570568px;}
.x22_c00120{left:201.690000px;}
.x6a_c00120{left:205.281000px;}
.x53_c00120{left:208.710000px;}
.x29_c00120{left:210.870000px;}
.x6_c00120{left:215.730000px;}
.x2f_c00120{left:220.050000px;}
.x58_c00120{left:221.826000px;}
.x6b_c00120{left:223.905000px;}
.x23_c00120{left:225.450000px;}
.x7_c00120{left:228.420000px;}
.xe_c00120{left:230.580000px;}
.x6f_c00120{left:231.981276px;}
.x44_c00120{left:235.170000px;}
.x41_c00120{left:238.410000px;}
.x30_c00120{left:240.840000px;}
.x35_c00120{left:243.000000px;}
.x1d_c00120{left:247.590000px;}
.x59_c00120{left:248.757000px;}
.x12_c00120{left:251.100000px;}
.x72_c00120{left:252.867612px;}
.x5e_c00120{left:257.964000px;}
.x8_c00120{left:259.200000px;}
.x76_c00120{left:260.335788px;}
.x18_c00120{left:263.790000px;}
.x36_c00120{left:265.410000px;}
.x45_c00120{left:267.840000px;}
.x4e_c00120{left:269.460000px;}
.x13_c00120{left:270.540000px;}
.x1e_c00120{left:271.890000px;}
.x3b_c00120{left:273.780000px;}
.x2a_c00120{left:274.860000px;}
.x4a_c00120{left:276.210000px;}
.x9_c00120{left:278.910000px;}
.x24_c00120{left:283.500000px;}
.x6c_c00120{left:289.515000px;}
.x14_c00120{left:291.060000px;}
.x4b_c00120{left:292.680000px;}
.x2b_c00120{left:294.300000px;}
.x5c_c00120{left:295.449000px;}
.x77_c00120{left:297.606744px;}
.x37_c00120{left:298.890000px;}
.x62_c00120{left:300.934500px;}
.x65_c00120{left:302.371500px;}
.x19_c00120{left:305.370000px;}
.x6d_c00120{left:308.681328px;}
.x31_c00120{left:309.960000px;}
.xf_c00120{left:311.040000px;}
.x54_c00120{left:314.820000px;}
.x5f_c00120{left:316.561500px;}
.x73_c00120{left:323.549916px;}
.x1f_c00120{left:326.970000px;}
.x56_c00120{left:329.503500px;}
.x63_c00120{left:332.245500px;}
.x3c_c00120{left:333.990000px;}
.x25_c00120{left:337.500000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.fs14_c00120{font-size:48.547309pt;}
.fsf_c00120{font-size:49.480911pt;}
.fs7_c00120{font-size:53.200000pt;}
.fs9_c00120{font-size:54.133333pt;}
.fsd_c00120{font-size:54.148921pt;}
.fs4_c00120{font-size:55.066667pt;}
.fse_c00120{font-size:55.082524pt;}
.fs8_c00120{font-size:56.000000pt;}
.fs13_c00120{font-size:56.016126pt;}
.fsb_c00120{font-size:56.933333pt;}
.fsa_c00120{font-size:57.866667pt;}
.fs10_c00120{font-size:57.883330pt;}
.fs3_c00120{font-size:58.800000pt;}
.fsc_c00120{font-size:59.733333pt;}
.fs5_c00120{font-size:60.666667pt;}
.fs11_c00120{font-size:60.684136pt;}
.fs2_c00120{font-size:62.533333pt;}
.fs12_c00120{font-size:62.551340pt;}
.fs6_c00120{font-size:63.466667pt;}
.fs1_c00120{font-size:64.400000pt;}
.fs0_c00120{font-size:69.066667pt;}
.y0_c00120{bottom:0.000000pt;}
.y91_c00120{bottom:23.618987pt;}
.y90_c00120{bottom:23.619253pt;}
.y8d_c00120{bottom:23.619360pt;}
.y92_c00120{bottom:23.619520pt;}
.y8f_c00120{bottom:23.619541pt;}
.y93_c00120{bottom:23.619808pt;}
.y94_c00120{bottom:23.619861pt;}
.y8e_c00120{bottom:23.619968pt;}
.y95_c00120{bottom:23.620469pt;}
.y8c_c00120{bottom:39.702859pt;}
.y8b_c00120{bottom:40.749824pt;}
.y8a_c00120{bottom:41.031989pt;}
.y89_c00120{bottom:41.576661pt;}
.y88_c00120{bottom:42.824117pt;}
.y87_c00120{bottom:43.603776pt;}
.y86_c00120{bottom:43.935968pt;}
.y85_c00120{bottom:44.365611pt;}
.y84_c00120{bottom:54.178229pt;}
.y82_c00120{bottom:54.178304pt;}
.y81_c00120{bottom:54.178549pt;}
.y83_c00120{bottom:54.178571pt;}
.y80_c00120{bottom:54.178901pt;}
.y7c_c00120{bottom:54.179147pt;}
.y7f_c00120{bottom:54.179275pt;}
.y7e_c00120{bottom:54.179339pt;}
.y7d_c00120{bottom:54.179595pt;}
.y7b_c00120{bottom:54.179691pt;}
.y7a_c00120{bottom:70.903595pt;}
.y79_c00120{bottom:71.097120pt;}
.y78_c00120{bottom:72.737696pt;}
.y77_c00120{bottom:73.848619pt;}
.y76_c00120{bottom:74.337077pt;}
.y75_c00120{bottom:75.338133pt;}
.y73_c00120{bottom:86.521195pt;}
.y70_c00120{bottom:86.521365pt;}
.y71_c00120{bottom:86.521419pt;}
.y72_c00120{bottom:86.521611pt;}
.y74_c00120{bottom:86.521621pt;}
.y6d_c00120{bottom:86.521941pt;}
.y6f_c00120{bottom:86.522016pt;}
.y6c_c00120{bottom:86.522421pt;}
.y6e_c00120{bottom:86.522549pt;}
.y6b_c00120{bottom:103.058293pt;}
.y6a_c00120{bottom:103.487541pt;}
.y69_c00120{bottom:104.841280pt;}
.y68_c00120{bottom:105.282613pt;}
.y67_c00120{bottom:106.132352pt;}
.y66_c00120{bottom:107.611328pt;}
.y65_c00120{bottom:108.143083pt;}
.y64_c00120{bottom:109.430005pt;}
.y63_c00120{bottom:117.789152pt;}
.y62_c00120{bottom:118.190688pt;}
.y61_c00120{bottom:118.794507pt;}
.y60_c00120{bottom:119.044896pt;}
.y5f_c00120{bottom:119.885248pt;}
.y5e_c00120{bottom:120.258261pt;}
.y5d_c00120{bottom:120.603904pt;}
.y5c_c00120{bottom:121.705888pt;}
.y5b_c00120{bottom:122.012203pt;}
.y5a_c00120{bottom:122.873675pt;}
.y52_c00120{bottom:132.929589pt;}
.y53_c00120{bottom:132.929632pt;}
.y54_c00120{bottom:132.930069pt;}
.y56_c00120{bottom:132.930208pt;}
.y58_c00120{bottom:132.930453pt;}
.y55_c00120{bottom:132.930613pt;}
.y57_c00120{bottom:132.930827pt;}
.y59_c00120{bottom:132.930976pt;}
.y4e_c00120{bottom:149.212832pt;}
.y4c_c00120{bottom:149.213120pt;}
.y4f_c00120{bottom:149.213205pt;}
.y4d_c00120{bottom:149.213397pt;}
.y51_c00120{bottom:149.213589pt;}
.y50_c00120{bottom:149.213664pt;}
.y4b_c00120{bottom:165.491008pt;}
.y4a_c00120{bottom:165.934528pt;}
.y49_c00120{bottom:167.334208pt;}
.y48_c00120{bottom:167.731520pt;}
.y47_c00120{bottom:168.786048pt;}
.y46_c00120{bottom:169.217728pt;}
.y45_c00120{bottom:170.566016pt;}
.y44_c00120{bottom:170.855168pt;}
.y43_c00120{bottom:171.124000pt;}
.y42_c00120{bottom:180.356000pt;}
.y41_c00120{bottom:181.693333pt;}
.y40_c00120{bottom:183.462667pt;}
.y3f_c00120{bottom:183.997333pt;}
.y3e_c00120{bottom:185.173333pt;}
.y3d_c00120{bottom:186.246667pt;}
.y3c_c00120{bottom:196.776000pt;}
.y3b_c00120{bottom:197.054667pt;}
.y3a_c00120{bottom:197.945333pt;}
.y39_c00120{bottom:198.108000pt;}
.y38_c00120{bottom:198.365333pt;}
.y37_c00120{bottom:199.021333pt;}
.y36_c00120{bottom:199.137333pt;}
.y35_c00120{bottom:199.445333pt;}
.y34_c00120{bottom:212.570667pt;}
.y33_c00120{bottom:212.997333pt;}
.y32_c00120{bottom:213.712000pt;}
.y31_c00120{bottom:214.009333pt;}
.y30_c00120{bottom:214.940000pt;}
.y2f_c00120{bottom:215.502667pt;}
.y2e_c00120{bottom:216.485333pt;}
.y2d_c00120{bottom:229.098667pt;}
.y2c_c00120{bottom:229.304000pt;}
.y2b_c00120{bottom:229.774667pt;}
.y2a_c00120{bottom:230.417333pt;}
.y29_c00120{bottom:230.976000pt;}
.y28_c00120{bottom:231.181333pt;}
.y27_c00120{bottom:231.826667pt;}
.y26_c00120{bottom:232.322667pt;}
.y25_c00120{bottom:243.708000pt;}
.y24_c00120{bottom:244.249333pt;}
.y23_c00120{bottom:245.258667pt;}
.y22_c00120{bottom:245.722667pt;}
.y21_c00120{bottom:246.776000pt;}
.y20_c00120{bottom:247.001333pt;}
.y1f_c00120{bottom:247.924000pt;}
.y1e_c00120{bottom:260.160000pt;}
.y1d_c00120{bottom:260.493333pt;}
.y1c_c00120{bottom:261.125333pt;}
.y1b_c00120{bottom:261.460000pt;}
.y1a_c00120{bottom:262.354667pt;}
.y19_c00120{bottom:262.585333pt;}
.y18_c00120{bottom:263.294667pt;}
.y17_c00120{bottom:263.761333pt;}
.y16_c00120{bottom:276.225333pt;}
.y15_c00120{bottom:276.942667pt;}
.y14_c00120{bottom:278.218667pt;}
.y13_c00120{bottom:278.461333pt;}
.y12_c00120{bottom:279.129333pt;}
.y11_c00120{bottom:279.600000pt;}
.y10_c00120{bottom:293.074667pt;}
.yf_c00120{bottom:307.888000pt;}
.ye_c00120{bottom:321.952000pt;}
.yd_c00120{bottom:337.958667pt;}
.yc_c00120{bottom:353.217333pt;}
.yb_c00120{bottom:368.506667pt;}
.ya_c00120{bottom:384.008000pt;}
.y9_c00120{bottom:399.228000pt;}
.y8_c00120{bottom:414.541333pt;}
.y7_c00120{bottom:430.289333pt;}
.y6_c00120{bottom:446.534667pt;}
.y5_c00120{bottom:462.028000pt;}
.y4_c00120{bottom:477.809333pt;}
.y3_c00120{bottom:493.128000pt;}
.y2_c00120{bottom:508.542667pt;}
.y1_c00120{bottom:520.198667pt;}
.h16_c00120{height:48.547309pt;}
.h11_c00120{height:49.480911pt;}
.h9_c00120{height:53.200000pt;}
.hb_c00120{height:54.133333pt;}
.hf_c00120{height:54.148921pt;}
.h6_c00120{height:55.066667pt;}
.h10_c00120{height:55.082524pt;}
.ha_c00120{height:56.000000pt;}
.h15_c00120{height:56.016126pt;}
.hd_c00120{height:56.933333pt;}
.hc_c00120{height:57.866667pt;}
.h12_c00120{height:57.883330pt;}
.h5_c00120{height:58.800000pt;}
.he_c00120{height:59.733333pt;}
.h7_c00120{height:60.666667pt;}
.h13_c00120{height:60.684136pt;}
.h4_c00120{height:62.533333pt;}
.h14_c00120{height:62.551340pt;}
.h8_c00120{height:63.466667pt;}
.h3_c00120{height:64.400000pt;}
.h2_c00120{height:69.066667pt;}
.h0_c00120{height:562.533333pt;}
.h1_c00120{height:562.666667pt;}
.w0_c00120{width:330.480000pt;}
.w1_c00120{width:330.666667pt;}
.x0_c00120{left:0.000000pt;}
.x61_c00120{left:28.678667pt;}
.x78_c00120{left:30.448320pt;}
.x7a_c00120{left:31.432043pt;}
.x4f_c00120{left:32.400000pt;}
.xa_c00120{left:33.840000pt;}
.x1a_c00120{left:35.040000pt;}
.x2_c00120{left:36.480000pt;}
.x66_c00120{left:41.118667pt;}
.x38_c00120{left:42.960000pt;}
.x3d_c00120{left:46.560000pt;}
.x7e_c00120{left:49.920341pt;}
.x67_c00120{left:52.320000pt;}
.x3_c00120{left:54.480000pt;}
.x50_c00120{left:56.400000pt;}
.x15_c00120{left:57.840000pt;}
.xb_c00120{left:59.520000pt;}
.x1b_c00120{left:61.680000pt;}
.x7b_c00120{left:63.120949pt;}
.x68_c00120{left:64.368000pt;}
.x57_c00120{left:66.080000pt;}
.x2c_c00120{left:69.120000pt;}
.x4_c00120{left:71.760000pt;}
.x75_c00120{left:72.723595pt;}
.x16_c00120{left:75.600000pt;}
.x32_c00120{left:79.440000pt;}
.x20_c00120{left:80.880000pt;}
.x4c_c00120{left:84.480000pt;}
.x46_c00120{left:85.440000pt;}
.x1c_c00120{left:86.400000pt;}
.x42_c00120{left:89.520000pt;}
.x5a_c00120{left:90.610667pt;}
.x70_c00120{left:91.717109pt;}
.x17_c00120{left:94.080000pt;}
.x47_c00120{left:100.080000pt;}
.x21_c00120{left:101.520000pt;}
.x3e_c00120{left:103.920000pt;}
.x6e_c00120{left:105.375531pt;}
.x5_c00120{left:113.040000pt;}
.x43_c00120{left:114.240000pt;}
.x4d_c00120{left:115.200000pt;}
.x51_c00120{left:116.640000pt;}
.xc_c00120{left:118.320000pt;}
.x39_c00120{left:119.520000pt;}
.x69_c00120{left:120.546667pt;}
.x10_c00120{left:121.440000pt;}
.x60_c00120{left:123.906667pt;}
.x3f_c00120{left:128.400000pt;}
.x52_c00120{left:131.280000pt;}
.xd_c00120{left:132.240000pt;}
.x26_c00120{left:133.920000pt;}
.x2d_c00120{left:134.880000pt;}
.x5d_c00120{left:136.908000pt;}
.x33_c00120{left:138.000000pt;}
.x55_c00120{left:139.542667pt;}
.x3a_c00120{left:142.320000pt;}
.x64_c00120{left:144.485333pt;}
.x2e_c00120{left:146.880000pt;}
.x27_c00120{left:150.000000pt;}
.x74_c00120{left:154.610432pt;}
.x1_c00120{left:156.000000pt;}
.x48_c00120{left:157.440000pt;}
.x7c_c00120{left:159.149547pt;}
.x79_c00120{left:160.423435pt;}
.x11_c00120{left:161.760000pt;}
.x71_c00120{left:164.097387pt;}
.x40_c00120{left:168.720000pt;}
.x5b_c00120{left:170.526667pt;}
.x28_c00120{left:172.560000pt;}
.x34_c00120{left:174.000000pt;}
.x49_c00120{left:176.400000pt;}
.x7d_c00120{left:178.284949pt;}
.x22_c00120{left:179.280000pt;}
.x6a_c00120{left:182.472000pt;}
.x53_c00120{left:185.520000pt;}
.x29_c00120{left:187.440000pt;}
.x6_c00120{left:191.760000pt;}
.x2f_c00120{left:195.600000pt;}
.x58_c00120{left:197.178667pt;}
.x6b_c00120{left:199.026667pt;}
.x23_c00120{left:200.400000pt;}
.x7_c00120{left:203.040000pt;}
.xe_c00120{left:204.960000pt;}
.x6f_c00120{left:206.205579pt;}
.x44_c00120{left:209.040000pt;}
.x41_c00120{left:211.920000pt;}
.x30_c00120{left:214.080000pt;}
.x35_c00120{left:216.000000pt;}
.x1d_c00120{left:220.080000pt;}
.x59_c00120{left:221.117333pt;}
.x12_c00120{left:223.200000pt;}
.x72_c00120{left:224.771211pt;}
.x5e_c00120{left:229.301333pt;}
.x8_c00120{left:230.400000pt;}
.x76_c00120{left:231.409589pt;}
.x18_c00120{left:234.480000pt;}
.x36_c00120{left:235.920000pt;}
.x45_c00120{left:238.080000pt;}
.x4e_c00120{left:239.520000pt;}
.x13_c00120{left:240.480000pt;}
.x1e_c00120{left:241.680000pt;}
.x3b_c00120{left:243.360000pt;}
.x2a_c00120{left:244.320000pt;}
.x4a_c00120{left:245.520000pt;}
.x9_c00120{left:247.920000pt;}
.x24_c00120{left:252.000000pt;}
.x6c_c00120{left:257.346667pt;}
.x14_c00120{left:258.720000pt;}
.x4b_c00120{left:260.160000pt;}
.x2b_c00120{left:261.600000pt;}
.x5c_c00120{left:262.621333pt;}
.x77_c00120{left:264.539328pt;}
.x37_c00120{left:265.680000pt;}
.x62_c00120{left:267.497333pt;}
.x65_c00120{left:268.774667pt;}
.x19_c00120{left:271.440000pt;}
.x6d_c00120{left:274.383403pt;}
.x31_c00120{left:275.520000pt;}
.xf_c00120{left:276.480000pt;}
.x54_c00120{left:279.840000pt;}
.x5f_c00120{left:281.388000pt;}
.x73_c00120{left:287.599925pt;}
.x1f_c00120{left:290.640000pt;}
.x56_c00120{left:292.892000pt;}
.x63_c00120{left:295.329333pt;}
.x3c_c00120{left:296.880000pt;}
.x25_c00120{left:300.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00121 {
    display:none;
  }
  .loading-indicator_c00121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00121 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00121 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00121" -> "#page-container .classname_c00121")
 */
.pf_c00121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00121 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00121 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00121 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00121 {overflow:visible;}
  }
}
.c_c00121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00121 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00121:after { /* webkit #35443 */
  content: '';
}
.t_c00121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00121 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00121 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00121 { /* info for Javascript */
  display:none;
}
.l_c00121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00121:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00121 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00121.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00121{transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);}
.m52_c00121{transform:matrix(0.132835,0.001993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.132835,0.001993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.132835,0.001993,-0.003750,0.249972,0,0);}
.m2a_c00121{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);}
.mec_c00121{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m53_c00121{transform:matrix(0.142609,0.002139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142609,0.002139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142609,0.002139,-0.003750,0.249972,0,0);}
.m72_c00121{transform:matrix(0.142830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142830,0.000000,0.000000,0.250000,0,0);}
.m7c_c00121{transform:matrix(0.144080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144080,0.000000,0.000000,0.250000,0,0);}
.mc1_c00121{transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);}
.m76_c00121{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.151390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151390,0.000000,0.000000,0.250000,0,0);}
.m3d_c00121{transform:matrix(0.151648,0.002275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151648,0.002275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151648,0.002275,-0.003750,0.249972,0,0);}
.m55_c00121{transform:matrix(0.154333,0.002315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154333,0.002315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154333,0.002315,-0.003750,0.249972,0,0);}
.m95_c00121{transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{transform:matrix(0.156277,0.002344,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156277,0.002344,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156277,0.002344,-0.003750,0.249972,0,0);}
.m1b_c00121{transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);}
.mea_c00121{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m79_c00121{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158085,0.000000,0.000000,0.250000,0,0);}
.m4f_c00121{transform:matrix(0.158952,0.002384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158952,0.002384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158952,0.002384,-0.003750,0.249972,0,0);}
.m4c_c00121{transform:matrix(0.159127,0.002387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159127,0.002387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159127,0.002387,-0.003750,0.249972,0,0);}
.mde_c00121{transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);}
.mf3_c00121{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00121{transform:matrix(0.160922,0.002414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160922,0.002414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160922,0.002414,-0.003750,0.249972,0,0);}
.m13_c00121{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.mc6_c00121{transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.161917,0.002429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161917,0.002429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161917,0.002429,-0.003750,0.249972,0,0);}
.m59_c00121{transform:matrix(0.162047,0.002431,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162047,0.002431,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162047,0.002431,-0.003750,0.249972,0,0);}
.mb2_c00121{transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.163092,0.002446,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163092,0.002446,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163092,0.002446,-0.003750,0.249972,0,0);}
.m77_c00121{transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.164277,0.002464,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164277,0.002464,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164277,0.002464,-0.003750,0.249972,0,0);}
.m25_c00121{transform:matrix(0.164785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164785,0.000000,0.000000,0.250000,0,0);}
.mc0_c00121{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m6d_c00121{transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00121{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mef_c00121{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m73_c00121{transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);}
.md3_c00121{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);}
.m99_c00121{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.maf_c00121{transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);}
.md4_c00121{transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);}
.m92_c00121{transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);}
.mc9_c00121{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{transform:matrix(0.170546,0.002558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170546,0.002558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170546,0.002558,-0.003750,0.249972,0,0);}
.mb6_c00121{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m41_c00121{transform:matrix(0.171116,0.002567,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171116,0.002567,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171116,0.002567,-0.003750,0.249972,0,0);}
.m93_c00121{transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);}
.mc5_c00121{transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);}
.m9f_c00121{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.mf2_c00121{transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);}
.mc7_c00121{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m50_c00121{transform:matrix(0.172731,0.002591,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172731,0.002591,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172731,0.002591,-0.003750,0.249972,0,0);}
.mb_c00121{transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);}
.m65_c00121{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);}
.mb9_c00121{transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00121{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.mdf_c00121{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00121{transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);}
.mf0_c00121{transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);}
.mce_c00121{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.me1_c00121{transform:matrix(0.176255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176255,0.000000,0.000000,0.250000,0,0);}
.mee_c00121{transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);}
.mc3_c00121{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.m8d_c00121{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m60_c00121{transform:matrix(0.178595,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178595,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178595,0.002679,-0.003750,0.249972,0,0);}
.m3a_c00121{transform:matrix(0.178657,0.002859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178657,0.002859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178657,0.002859,-0.003999,0.249968,0,0);}
.m5b_c00121{transform:matrix(0.178990,0.002685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178990,0.002685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178990,0.002685,-0.003750,0.249972,0,0);}
.m8e_c00121{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.me3_c00121{transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);}
.meb_c00121{transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);}
.mda_c00121{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.mdc_c00121{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.md9_c00121{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.mae_c00121{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.mad_c00121{transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.184281,0.002949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184281,0.002949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184281,0.002949,-0.003999,0.249968,0,0);}
.m7a_c00121{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{transform:matrix(0.184414,0.002766,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184414,0.002766,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184414,0.002766,-0.003750,0.249972,0,0);}
.mf1_c00121{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m8a_c00121{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.185509,0.002783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185509,0.002783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185509,0.002783,-0.003750,0.249972,0,0);}
.m63_c00121{transform:matrix(0.185599,0.002784,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185599,0.002784,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185599,0.002784,-0.003750,0.249972,0,0);}
.m22_c00121{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.mb3_c00121{transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m75_c00121{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);}
.mb1_c00121{transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);}
.mb0_c00121{transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);}
.mbf_c00121{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m98_c00121{transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);}
.me0_c00121{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00121{transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);}
.m7b_c00121{transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m83_c00121{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.ma5_c00121{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.190989,0.002865,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190989,0.002865,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190989,0.002865,-0.003750,0.249972,0,0);}
.m74_c00121{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.mbd_c00121{transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m7e_c00121{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.192773,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192773,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192773,0.002892,-0.003750,0.249972,0,0);}
.mf_c00121{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.ma0_c00121{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.mb4_c00121{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.mdb_c00121{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);}
.mc2_c00121{transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);}
.md7_c00121{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);}
.md2_c00121{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.md0_c00121{transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);}
.mcf_c00121{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.m7d_c00121{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m6b_c00121{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.mc8_c00121{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.me8_c00121{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.m80_c00121{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.m87_c00121{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);}
.me5_c00121{transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);}
.me9_c00121{transform:matrix(0.198440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198440,0.000000,0.000000,0.250000,0,0);}
.md1_c00121{transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198615,0.000000,0.000000,0.250000,0,0);}
.m97_c00121{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00121{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.199795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199795,0.000000,0.000000,0.250000,0,0);}
.ma1_c00121{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.md6_c00121{transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);}
.mab_c00121{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.mca_c00121{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.mb7_c00121{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.202047,0.003031,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202047,0.003031,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202047,0.003031,-0.003750,0.249972,0,0);}
.mcb_c00121{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);}
.md5_c00121{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00121{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m9d_c00121{transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);}
.m69_c00121{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.ma4_c00121{transform:matrix(0.203105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203105,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.ma6_c00121{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{transform:matrix(0.206224,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206224,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206224,0.003300,-0.003999,0.249968,0,0);}
.maa_c00121{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);}
.ma9_c00121{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{transform:matrix(0.207637,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207637,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207637,0.003115,-0.003750,0.249972,0,0);}
.m85_c00121{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.mb8_c00121{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00121{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.mbc_c00121{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.210181,0.003153,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210181,0.003153,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210181,0.003153,-0.003750,0.249972,0,0);}
.m9c_c00121{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.m81_c00121{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.m8c_c00121{transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);}
.m62_c00121{transform:matrix(0.211631,0.003174,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211631,0.003174,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211631,0.003174,-0.003750,0.249972,0,0);}
.md8_c00121{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m91_c00121{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m84_c00121{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00121{transform:matrix(0.212211,0.003183,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212211,0.003183,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212211,0.003183,-0.003750,0.249972,0,0);}
.m0_c00121{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m78_c00121{transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00121{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.mba_c00121{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.ma3_c00121{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.mb5_c00121{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00121{transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);}
.m66_c00121{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m5d_c00121{transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);}
.m33_c00121{transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);}
.m61_c00121{transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);}
.me7_c00121{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);}
.med_c00121{transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{transform:matrix(0.218975,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218975,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218975,0.003285,-0.003750,0.249972,0,0);}
.m70_c00121{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.me2_c00121{transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);}
.mcd_c00121{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m9a_c00121{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.ma8_c00121{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m86_c00121{transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.224221,0.003588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224221,0.003588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224221,0.003588,-0.003999,0.249968,0,0);}
.m64_c00121{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m89_c00121{transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);}
.mcc_c00121{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{transform:matrix(0.225795,0.003387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225795,0.003387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225795,0.003387,-0.003750,0.249972,0,0);}
.m8b_c00121{transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00121{transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);}
.mf4_c00121{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.mdd_c00121{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.234645,0.003754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234645,0.003754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234645,0.003754,-0.003999,0.249968,0,0);}
.mac_c00121{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m96_c00121{transform:matrix(0.240915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240915,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);}
.me6_c00121{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251617,0.003774,-0.003750,0.249972,0,0);}
.ma7_c00121{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.me4_c00121{transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.263825,0.003957,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263825,0.003957,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263825,0.003957,-0.003750,0.249972,0,0);}
.m90_c00121{transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);}
.m8f_c00121{transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307940,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.364370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364370,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{transform:matrix(0.394291,0.005914,-0.003750,0.249972,0,0);-ms-transform:matrix(0.394291,0.005914,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.394291,0.005914,-0.003750,0.249972,0,0);}
.m1c_c00121{transform:matrix(0.472025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472025,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:0.000000px;}
.fc0_c00121{color:transparent;}
.fsa_c00121{font-size:57.756497px;}
.fs0_c00121{font-size:59.850000px;}
.fse_c00121{font-size:60.900000px;}
.fs7_c00121{font-size:60.906851px;}
.fs6_c00121{font-size:60.907795px;}
.fs10_c00121{font-size:61.950000px;}
.fsb_c00121{font-size:63.000000px;}
.fs5_c00121{font-size:64.050000px;}
.fsc_c00121{font-size:65.100000px;}
.fs11_c00121{font-size:66.150000px;}
.fsf_c00121{font-size:67.200000px;}
.fs2_c00121{font-size:68.250000px;}
.fs9_c00121{font-size:68.257678px;}
.fsd_c00121{font-size:69.300000px;}
.fs4_c00121{font-size:71.400000px;}
.fs8_c00121{font-size:71.408032px;}
.fs1_c00121{font-size:72.450000px;}
.fs13_c00121{font-size:73.500000px;}
.fs3_c00121{font-size:74.550000px;}
.fs12_c00121{font-size:75.600000px;}
.y0_c00121{bottom:0.000000px;}
.y67_c00121{bottom:28.636500px;}
.y66_c00121{bottom:46.914000px;}
.y65_c00121{bottom:65.647500px;}
.y64_c00121{bottom:80.634000px;}
.y63_c00121{bottom:98.698500px;}
.y62_c00121{bottom:115.578000px;}
.y61_c00121{bottom:133.396500px;}
.y60_c00121{bottom:151.099500px;}
.y5f_c00121{bottom:169.695000px;}
.y5e_c00121{bottom:185.499000px;}
.y5d_c00121{bottom:186.076500px;}
.y5c_c00121{bottom:186.786000px;}
.y5b_c00121{bottom:186.972000px;}
.y5a_c00121{bottom:187.393500px;}
.y59_c00121{bottom:188.028000px;}
.y58_c00121{bottom:188.184000px;}
.y57_c00121{bottom:188.461500px;}
.y56_c00121{bottom:204.372000px;}
.y55_c00121{bottom:222.358500px;}
.y54_c00121{bottom:237.813000px;}
.y53_c00121{bottom:238.098000px;}
.y52_c00121{bottom:238.665000px;}
.y51_c00121{bottom:238.914000px;}
.y50_c00121{bottom:239.866500px;}
.y4f_c00121{bottom:240.196500px;}
.y4e_c00121{bottom:240.841500px;}
.y4d_c00121{bottom:257.055000px;}
.y4c_c00121{bottom:274.195500px;}
.y4b_c00121{bottom:292.005000px;}
.y4a_c00121{bottom:307.857000px;}
.y49_c00121{bottom:308.167500px;}
.y48_c00121{bottom:308.797500px;}
.y47_c00121{bottom:308.965500px;}
.y46_c00121{bottom:309.100500px;}
.y45_c00121{bottom:309.592500px;}
.y44_c00121{bottom:309.892500px;}
.y43_c00121{bottom:310.095000px;}
.y42_c00121{bottom:310.383000px;}
.y41_c00121{bottom:310.771500px;}
.y40_c00121{bottom:326.565000px;}
.y3f_c00121{bottom:344.215500px;}
.y3e_c00121{bottom:360.255630px;}
.y3d_c00121{bottom:360.772290px;}
.y3c_c00121{bottom:361.200165px;}
.y3b_c00121{bottom:361.428773px;}
.y3a_c00121{bottom:362.287987px;}
.y39_c00121{bottom:362.435812px;}
.y38_c00121{bottom:363.176640px;}
.y37_c00121{bottom:363.411293px;}
.y36_c00121{bottom:378.378270px;}
.y35_c00121{bottom:379.181737px;}
.y34_c00121{bottom:379.553812px;}
.y33_c00121{bottom:379.801012px;}
.y32_c00121{bottom:380.320012px;}
.y31_c00121{bottom:380.981347px;}
.y30_c00121{bottom:381.233393px;}
.y2f_c00121{bottom:395.646645px;}
.y2e_c00121{bottom:395.983117px;}
.y2d_c00121{bottom:396.243510px;}
.y2c_c00121{bottom:396.973898px;}
.y2b_c00121{bottom:397.802212px;}
.y2a_c00121{bottom:398.263492px;}
.y29_c00121{bottom:398.630910px;}
.y28_c00121{bottom:399.050595px;}
.y27_c00121{bottom:399.308085px;}
.y26_c00121{bottom:399.599070px;}
.y25_c00121{bottom:412.962780px;}
.y24_c00121{bottom:413.267663px;}
.y23_c00121{bottom:414.118185px;}
.y22_c00121{bottom:414.376507px;}
.y21_c00121{bottom:414.772995px;}
.y20_c00121{bottom:415.587472px;}
.y1f_c00121{bottom:416.338920px;}
.y1e_c00121{bottom:430.829723px;}
.y1d_c00121{bottom:431.679165px;}
.y1c_c00121{bottom:432.056737px;}
.y1b_c00121{bottom:432.315600px;}
.y1a_c00121{bottom:433.195012px;}
.y19_c00121{bottom:433.948650px;}
.y18_c00121{bottom:434.235075px;}
.y17_c00121{bottom:434.701500px;}
.y16_c00121{bottom:447.766176px;}
.y15_c00121{bottom:448.163568px;}
.y14_c00121{bottom:449.178432px;}
.y13_c00121{bottom:449.908704px;}
.y12_c00121{bottom:450.561288px;}
.y11_c00121{bottom:450.903000px;}
.y10_c00121{bottom:464.305500px;}
.yf_c00121{bottom:468.273000px;}
.ye_c00121{bottom:468.724500px;}
.yd_c00121{bottom:482.670000px;}
.yc_c00121{bottom:499.600500px;}
.yb_c00121{bottom:499.819500px;}
.ya_c00121{bottom:500.443500px;}
.y9_c00121{bottom:500.683500px;}
.y8_c00121{bottom:501.123000px;}
.y7_c00121{bottom:501.520500px;}
.y6_c00121{bottom:502.201500px;}
.y5_c00121{bottom:517.996500px;}
.y4_c00121{bottom:535.396500px;}
.y3_c00121{bottom:552.949500px;}
.y2_c00121{bottom:570.379500px;}
.y1_c00121{bottom:586.710000px;}
.hc_c00121{height:57.756497px;}
.h2_c00121{height:59.850000px;}
.h10_c00121{height:60.900000px;}
.h9_c00121{height:60.906851px;}
.h8_c00121{height:60.907795px;}
.h12_c00121{height:61.950000px;}
.hd_c00121{height:63.000000px;}
.h7_c00121{height:64.050000px;}
.he_c00121{height:65.100000px;}
.h13_c00121{height:66.150000px;}
.h11_c00121{height:67.200000px;}
.h4_c00121{height:68.250000px;}
.hb_c00121{height:68.257678px;}
.hf_c00121{height:69.300000px;}
.h6_c00121{height:71.400000px;}
.ha_c00121{height:71.408032px;}
.h3_c00121{height:72.450000px;}
.h15_c00121{height:73.500000px;}
.h5_c00121{height:74.550000px;}
.h14_c00121{height:75.600000px;}
.h0_c00121{height:632.850000px;}
.h1_c00121{height:633.000000px;}
.w0_c00121{width:371.790000px;}
.w1_c00121{width:372.000000px;}
.x0_c00121{left:0.000000px;}
.x76_c00121{left:41.848500px;}
.x67_c00121{left:43.198500px;}
.x36_c00121{left:44.646375px;}
.x32_c00121{left:45.750000px;}
.x2_c00121{left:47.250000px;}
.x25_c00121{left:49.138500px;}
.x5d_c00121{left:53.188500px;}
.x6d_c00121{left:61.828500px;}
.x3b_c00121{left:66.784950px;}
.x2a_c00121{left:70.005000px;}
.x2c_c00121{left:72.139500px;}
.x3_c00121{left:74.250000px;}
.x33_c00121{left:76.845000px;}
.x6a_c00121{left:80.728500px;}
.x4c_c00121{left:83.080500px;}
.x3c_c00121{left:85.151220px;}
.xc_c00121{left:86.940000px;}
.x4_c00121{left:88.020000px;}
.x5f_c00121{left:89.638500px;}
.x2d_c00121{left:93.496500px;}
.x34_c00121{left:95.940000px;}
.x5a_c00121{left:97.852500px;}
.x26_c00121{left:102.868500px;}
.x1a_c00121{left:105.300000px;}
.x20_c00121{left:108.984000px;}
.x4d_c00121{left:111.933000px;}
.x52_c00121{left:113.940000px;}
.x14_c00121{left:115.560000px;}
.x27_c00121{left:117.448500px;}
.x54_c00121{left:119.880000px;}
.x1b_c00121{left:122.040000px;}
.x5_c00121{left:123.660000px;}
.x5b_c00121{left:125.385000px;}
.x6e_c00121{left:129.868500px;}
.x48_c00121{left:131.760000px;}
.x2e_c00121{left:134.283000px;}
.x60_c00121{left:136.618500px;}
.x28_c00121{left:139.318500px;}
.xd_c00121{left:142.290000px;}
.x55_c00121{left:143.370000px;}
.x6_c00121{left:145.530000px;}
.x41_c00121{left:146.754262px;}
.x6f_c00121{left:148.768500px;}
.x64_c00121{left:150.793500px;}
.x15_c00121{left:152.010000px;}
.x49_c00121{left:153.090000px;}
.x61_c00121{left:156.868500px;}
.x73_c00121{left:158.488500px;}
.x45_c00121{left:160.650000px;}
.xe_c00121{left:162.540000px;}
.x68_c00121{left:163.618500px;}
.x37_c00121{left:165.144998px;}
.x6b_c00121{left:172.528500px;}
.x3d_c00121{left:174.278047px;}
.x4a_c00121{left:176.040000px;}
.x7_c00121{left:177.120000px;}
.x2f_c00121{left:179.925000px;}
.x53_c00121{left:181.170000px;}
.x77_c00121{left:182.248500px;}
.x21_c00121{left:185.085000px;}
.x1_c00121{left:189.000000px;}
.x46_c00121{left:190.080000px;}
.x1c_c00121{left:192.780000px;}
.x38_c00121{left:195.678420px;}
.x16_c00121{left:198.720000px;}
.x78_c00121{left:199.798500px;}
.x56_c00121{left:202.500000px;}
.xf_c00121{left:205.470000px;}
.x22_c00121{left:206.949000px;}
.x8_c00121{left:209.790000px;}
.x4e_c00121{left:211.339500px;}
.x70_c00121{left:212.758500px;}
.x39_c00121{left:215.600528px;}
.x10_c00121{left:218.700000px;}
.x35_c00121{left:222.067500px;}
.x79_c00121{left:223.828500px;}
.x42_c00121{left:224.839943px;}
.x9_c00121{left:230.310000px;}
.x57_c00121{left:231.660000px;}
.x3e_c00121{left:233.399925px;}
.x71_c00121{left:236.248500px;}
.x29_c00121{left:237.598500px;}
.x4f_c00121{left:241.557000px;}
.x30_c00121{left:243.354000px;}
.x43_c00121{left:245.581680px;}
.xa_c00121{left:247.050000px;}
.x47_c00121{left:248.670000px;}
.x11_c00121{left:251.100000px;}
.x4b_c00121{left:258.930000px;}
.x74_c00121{left:260.818500px;}
.x23_c00121{left:263.644500px;}
.x1d_c00121{left:265.680000px;}
.x17_c00121{left:267.030000px;}
.x31_c00121{left:268.191000px;}
.x5c_c00121{left:272.793000px;}
.x2b_c00121{left:278.824500px;}
.x3a_c00121{left:281.003985px;}
.x65_c00121{left:282.570000px;}
.x24_c00121{left:283.612500px;}
.x3f_c00121{left:285.593212px;}
.x51_c00121{left:287.820000px;}
.x69_c00121{left:291.598500px;}
.x58_c00121{left:297.270000px;}
.x72_c00121{left:299.428500px;}
.xb_c00121{left:303.480000px;}
.x50_c00121{left:304.488000px;}
.x1e_c00121{left:306.990000px;}
.x62_c00121{left:308.878500px;}
.x12_c00121{left:314.280000px;}
.x18_c00121{left:319.140000px;}
.x63_c00121{left:320.488500px;}
.x6c_c00121{left:321.568500px;}
.x75_c00121{left:322.648500px;}
.x59_c00121{left:323.730000px;}
.x5e_c00121{left:326.968500px;}
.x40_c00121{left:328.184842px;}
.x44_c00121{left:331.455832px;}
.x19_c00121{left:333.180000px;}
.x13_c00121{left:336.150000px;}
.x1f_c00121{left:339.120000px;}
.x66_c00121{left:340.327500px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:0.000000pt;}
.fsa_c00121{font-size:51.339108pt;}
.fs0_c00121{font-size:53.200000pt;}
.fse_c00121{font-size:54.133333pt;}
.fs7_c00121{font-size:54.139423pt;}
.fs6_c00121{font-size:54.140262pt;}
.fs10_c00121{font-size:55.066667pt;}
.fsb_c00121{font-size:56.000000pt;}
.fs5_c00121{font-size:56.933333pt;}
.fsc_c00121{font-size:57.866667pt;}
.fs11_c00121{font-size:58.800000pt;}
.fsf_c00121{font-size:59.733333pt;}
.fs2_c00121{font-size:60.666667pt;}
.fs9_c00121{font-size:60.673491pt;}
.fsd_c00121{font-size:61.600000pt;}
.fs4_c00121{font-size:63.466667pt;}
.fs8_c00121{font-size:63.473806pt;}
.fs1_c00121{font-size:64.400000pt;}
.fs13_c00121{font-size:65.333333pt;}
.fs3_c00121{font-size:66.266667pt;}
.fs12_c00121{font-size:67.200000pt;}
.y0_c00121{bottom:0.000000pt;}
.y67_c00121{bottom:25.454667pt;}
.y66_c00121{bottom:41.701333pt;}
.y65_c00121{bottom:58.353333pt;}
.y64_c00121{bottom:71.674667pt;}
.y63_c00121{bottom:87.732000pt;}
.y62_c00121{bottom:102.736000pt;}
.y61_c00121{bottom:118.574667pt;}
.y60_c00121{bottom:134.310667pt;}
.y5f_c00121{bottom:150.840000pt;}
.y5e_c00121{bottom:164.888000pt;}
.y5d_c00121{bottom:165.401333pt;}
.y5c_c00121{bottom:166.032000pt;}
.y5b_c00121{bottom:166.197333pt;}
.y5a_c00121{bottom:166.572000pt;}
.y59_c00121{bottom:167.136000pt;}
.y58_c00121{bottom:167.274667pt;}
.y57_c00121{bottom:167.521333pt;}
.y56_c00121{bottom:181.664000pt;}
.y55_c00121{bottom:197.652000pt;}
.y54_c00121{bottom:211.389333pt;}
.y53_c00121{bottom:211.642667pt;}
.y52_c00121{bottom:212.146667pt;}
.y51_c00121{bottom:212.368000pt;}
.y50_c00121{bottom:213.214667pt;}
.y4f_c00121{bottom:213.508000pt;}
.y4e_c00121{bottom:214.081333pt;}
.y4d_c00121{bottom:228.493333pt;}
.y4c_c00121{bottom:243.729333pt;}
.y4b_c00121{bottom:259.560000pt;}
.y4a_c00121{bottom:273.650667pt;}
.y49_c00121{bottom:273.926667pt;}
.y48_c00121{bottom:274.486667pt;}
.y47_c00121{bottom:274.636000pt;}
.y46_c00121{bottom:274.756000pt;}
.y45_c00121{bottom:275.193333pt;}
.y44_c00121{bottom:275.460000pt;}
.y43_c00121{bottom:275.640000pt;}
.y42_c00121{bottom:275.896000pt;}
.y41_c00121{bottom:276.241333pt;}
.y40_c00121{bottom:290.280000pt;}
.y3f_c00121{bottom:305.969333pt;}
.y3e_c00121{bottom:320.227227pt;}
.y3d_c00121{bottom:320.686480pt;}
.y3c_c00121{bottom:321.066813pt;}
.y3b_c00121{bottom:321.270020pt;}
.y3a_c00121{bottom:322.033767pt;}
.y39_c00121{bottom:322.165167pt;}
.y38_c00121{bottom:322.823680pt;}
.y37_c00121{bottom:323.032260pt;}
.y36_c00121{bottom:336.336240pt;}
.y35_c00121{bottom:337.050433pt;}
.y34_c00121{bottom:337.381167pt;}
.y33_c00121{bottom:337.600900pt;}
.y32_c00121{bottom:338.062233pt;}
.y31_c00121{bottom:338.650087pt;}
.y30_c00121{bottom:338.874127pt;}
.y2f_c00121{bottom:351.685907pt;}
.y2e_c00121{bottom:351.984993pt;}
.y2d_c00121{bottom:352.216453pt;}
.y2c_c00121{bottom:352.865687pt;}
.y2b_c00121{bottom:353.601967pt;}
.y2a_c00121{bottom:354.011993pt;}
.y29_c00121{bottom:354.338587pt;}
.y28_c00121{bottom:354.711640pt;}
.y27_c00121{bottom:354.940520pt;}
.y26_c00121{bottom:355.199173pt;}
.y25_c00121{bottom:367.078027pt;}
.y24_c00121{bottom:367.349033pt;}
.y23_c00121{bottom:368.105053pt;}
.y22_c00121{bottom:368.334673pt;}
.y21_c00121{bottom:368.687107pt;}
.y20_c00121{bottom:369.411087pt;}
.y1f_c00121{bottom:370.079040pt;}
.y1e_c00121{bottom:382.959753pt;}
.y1d_c00121{bottom:383.714813pt;}
.y1c_c00121{bottom:384.050433pt;}
.y1b_c00121{bottom:384.280533pt;}
.y1a_c00121{bottom:385.062233pt;}
.y19_c00121{bottom:385.732133pt;}
.y18_c00121{bottom:385.986733pt;}
.y17_c00121{bottom:386.401333pt;}
.y16_c00121{bottom:398.014379pt;}
.y15_c00121{bottom:398.367616pt;}
.y14_c00121{bottom:399.269717pt;}
.y13_c00121{bottom:399.918848pt;}
.y12_c00121{bottom:400.498923pt;}
.y11_c00121{bottom:400.802667pt;}
.y10_c00121{bottom:412.716000pt;}
.yf_c00121{bottom:416.242667pt;}
.ye_c00121{bottom:416.644000pt;}
.yd_c00121{bottom:429.040000pt;}
.yc_c00121{bottom:444.089333pt;}
.yb_c00121{bottom:444.284000pt;}
.ya_c00121{bottom:444.838667pt;}
.y9_c00121{bottom:445.052000pt;}
.y8_c00121{bottom:445.442667pt;}
.y7_c00121{bottom:445.796000pt;}
.y6_c00121{bottom:446.401333pt;}
.y5_c00121{bottom:460.441333pt;}
.y4_c00121{bottom:475.908000pt;}
.y3_c00121{bottom:491.510667pt;}
.y2_c00121{bottom:507.004000pt;}
.y1_c00121{bottom:521.520000pt;}
.hc_c00121{height:51.339108pt;}
.h2_c00121{height:53.200000pt;}
.h10_c00121{height:54.133333pt;}
.h9_c00121{height:54.139423pt;}
.h8_c00121{height:54.140262pt;}
.h12_c00121{height:55.066667pt;}
.hd_c00121{height:56.000000pt;}
.h7_c00121{height:56.933333pt;}
.he_c00121{height:57.866667pt;}
.h13_c00121{height:58.800000pt;}
.h11_c00121{height:59.733333pt;}
.h4_c00121{height:60.666667pt;}
.hb_c00121{height:60.673491pt;}
.hf_c00121{height:61.600000pt;}
.h6_c00121{height:63.466667pt;}
.ha_c00121{height:63.473806pt;}
.h3_c00121{height:64.400000pt;}
.h15_c00121{height:65.333333pt;}
.h5_c00121{height:66.266667pt;}
.h14_c00121{height:67.200000pt;}
.h0_c00121{height:562.533333pt;}
.h1_c00121{height:562.666667pt;}
.w0_c00121{width:330.480000pt;}
.w1_c00121{width:330.666667pt;}
.x0_c00121{left:0.000000pt;}
.x76_c00121{left:37.198667pt;}
.x67_c00121{left:38.398667pt;}
.x36_c00121{left:39.685667pt;}
.x32_c00121{left:40.666667pt;}
.x2_c00121{left:42.000000pt;}
.x25_c00121{left:43.678667pt;}
.x5d_c00121{left:47.278667pt;}
.x6d_c00121{left:54.958667pt;}
.x3b_c00121{left:59.364400pt;}
.x2a_c00121{left:62.226667pt;}
.x2c_c00121{left:64.124000pt;}
.x3_c00121{left:66.000000pt;}
.x33_c00121{left:68.306667pt;}
.x6a_c00121{left:71.758667pt;}
.x4c_c00121{left:73.849333pt;}
.x3c_c00121{left:75.689973pt;}
.xc_c00121{left:77.280000pt;}
.x4_c00121{left:78.240000pt;}
.x5f_c00121{left:79.678667pt;}
.x2d_c00121{left:83.108000pt;}
.x34_c00121{left:85.280000pt;}
.x5a_c00121{left:86.980000pt;}
.x26_c00121{left:91.438667pt;}
.x1a_c00121{left:93.600000pt;}
.x20_c00121{left:96.874667pt;}
.x4d_c00121{left:99.496000pt;}
.x52_c00121{left:101.280000pt;}
.x14_c00121{left:102.720000pt;}
.x27_c00121{left:104.398667pt;}
.x54_c00121{left:106.560000pt;}
.x1b_c00121{left:108.480000pt;}
.x5_c00121{left:109.920000pt;}
.x5b_c00121{left:111.453333pt;}
.x6e_c00121{left:115.438667pt;}
.x48_c00121{left:117.120000pt;}
.x2e_c00121{left:119.362667pt;}
.x60_c00121{left:121.438667pt;}
.x28_c00121{left:123.838667pt;}
.xd_c00121{left:126.480000pt;}
.x55_c00121{left:127.440000pt;}
.x6_c00121{left:129.360000pt;}
.x41_c00121{left:130.448233pt;}
.x6f_c00121{left:132.238667pt;}
.x64_c00121{left:134.038667pt;}
.x15_c00121{left:135.120000pt;}
.x49_c00121{left:136.080000pt;}
.x61_c00121{left:139.438667pt;}
.x73_c00121{left:140.878667pt;}
.x45_c00121{left:142.800000pt;}
.xe_c00121{left:144.480000pt;}
.x68_c00121{left:145.438667pt;}
.x37_c00121{left:146.795553pt;}
.x6b_c00121{left:153.358667pt;}
.x3d_c00121{left:154.913820pt;}
.x4a_c00121{left:156.480000pt;}
.x7_c00121{left:157.440000pt;}
.x2f_c00121{left:159.933333pt;}
.x53_c00121{left:161.040000pt;}
.x77_c00121{left:161.998667pt;}
.x21_c00121{left:164.520000pt;}
.x1_c00121{left:168.000000pt;}
.x46_c00121{left:168.960000pt;}
.x1c_c00121{left:171.360000pt;}
.x38_c00121{left:173.936373pt;}
.x16_c00121{left:176.640000pt;}
.x78_c00121{left:177.598667pt;}
.x56_c00121{left:180.000000pt;}
.xf_c00121{left:182.640000pt;}
.x22_c00121{left:183.954667pt;}
.x8_c00121{left:186.480000pt;}
.x4e_c00121{left:187.857333pt;}
.x70_c00121{left:189.118667pt;}
.x39_c00121{left:191.644913pt;}
.x10_c00121{left:194.400000pt;}
.x35_c00121{left:197.393333pt;}
.x79_c00121{left:198.958667pt;}
.x42_c00121{left:199.857727pt;}
.x9_c00121{left:204.720000pt;}
.x57_c00121{left:205.920000pt;}
.x3e_c00121{left:207.466600pt;}
.x71_c00121{left:209.998667pt;}
.x29_c00121{left:211.198667pt;}
.x4f_c00121{left:214.717333pt;}
.x30_c00121{left:216.314667pt;}
.x43_c00121{left:218.294827pt;}
.xa_c00121{left:219.600000pt;}
.x47_c00121{left:221.040000pt;}
.x11_c00121{left:223.200000pt;}
.x4b_c00121{left:230.160000pt;}
.x74_c00121{left:231.838667pt;}
.x23_c00121{left:234.350667pt;}
.x1d_c00121{left:236.160000pt;}
.x17_c00121{left:237.360000pt;}
.x31_c00121{left:238.392000pt;}
.x5c_c00121{left:242.482667pt;}
.x2b_c00121{left:247.844000pt;}
.x3a_c00121{left:249.781320pt;}
.x65_c00121{left:251.173333pt;}
.x24_c00121{left:252.100000pt;}
.x3f_c00121{left:253.860633pt;}
.x51_c00121{left:255.840000pt;}
.x69_c00121{left:259.198667pt;}
.x58_c00121{left:264.240000pt;}
.x72_c00121{left:266.158667pt;}
.xb_c00121{left:269.760000pt;}
.x50_c00121{left:270.656000pt;}
.x1e_c00121{left:272.880000pt;}
.x62_c00121{left:274.558667pt;}
.x12_c00121{left:279.360000pt;}
.x18_c00121{left:283.680000pt;}
.x63_c00121{left:284.878667pt;}
.x6c_c00121{left:285.838667pt;}
.x75_c00121{left:286.798667pt;}
.x59_c00121{left:287.760000pt;}
.x5e_c00121{left:290.638667pt;}
.x40_c00121{left:291.719860pt;}
.x44_c00121{left:294.627407pt;}
.x19_c00121{left:296.160000pt;}
.x13_c00121{left:298.800000pt;}
.x1f_c00121{left:301.440000pt;}
.x66_c00121{left:302.513333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00122 {
    display:none;
  }
  .loading-indicator_c00122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00122 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00122 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00122" -> "#page-container .classname_c00122")
 */
.pf_c00122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00122 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00122 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00122 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00122 {overflow:visible;}
  }
}
.c_c00122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00122 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00122:after { /* webkit #35443 */
  content: '';
}
.t_c00122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00122 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00122 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00122 { /* info for Javascript */
  display:none;
}
.l_c00122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00122:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00122 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00122.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c00122{transform:matrix(0.034352,-0.000721,0.005249,0.249945,0,0);-ms-transform:matrix(0.034352,-0.000721,0.005249,0.249945,0,0);-webkit-transform:matrix(0.034352,-0.000721,0.005249,0.249945,0,0);}
.m39_c00122{transform:matrix(0.077538,-0.001628,0.005249,0.249945,0,0);-ms-transform:matrix(0.077538,-0.001628,0.005249,0.249945,0,0);-webkit-transform:matrix(0.077538,-0.001628,0.005249,0.249945,0,0);}
.m83_c00122{transform:matrix(0.120408,-0.002529,0.005249,0.249945,0,0);-ms-transform:matrix(0.120408,-0.002529,0.005249,0.249945,0,0);-webkit-transform:matrix(0.120408,-0.002529,0.005249,0.249945,0,0);}
.m6_c00122{transform:matrix(0.136445,-0.002865,0.005249,0.249945,0,0);-ms-transform:matrix(0.136445,-0.002865,0.005249,0.249945,0,0);-webkit-transform:matrix(0.136445,-0.002865,0.005249,0.249945,0,0);}
.ma1_c00122{transform:matrix(0.136600,-0.001639,0.003000,0.249982,0,0);-ms-transform:matrix(0.136600,-0.001639,0.003000,0.249982,0,0);-webkit-transform:matrix(0.136600,-0.001639,0.003000,0.249982,0,0);}
.m16_c00122{transform:matrix(0.140714,-0.002955,0.005249,0.249945,0,0);-ms-transform:matrix(0.140714,-0.002955,0.005249,0.249945,0,0);-webkit-transform:matrix(0.140714,-0.002955,0.005249,0.249945,0,0);}
.m99_c00122{transform:matrix(0.142690,-0.001712,0.003000,0.249982,0,0);-ms-transform:matrix(0.142690,-0.001712,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142690,-0.001712,0.003000,0.249982,0,0);}
.m8d_c00122{transform:matrix(0.147892,-0.003106,0.005249,0.249945,0,0);-ms-transform:matrix(0.147892,-0.003106,0.005249,0.249945,0,0);-webkit-transform:matrix(0.147892,-0.003106,0.005249,0.249945,0,0);}
.m48_c00122{transform:matrix(0.149832,-0.003146,0.005249,0.249945,0,0);-ms-transform:matrix(0.149832,-0.003146,0.005249,0.249945,0,0);-webkit-transform:matrix(0.149832,-0.003146,0.005249,0.249945,0,0);}
.m14_c00122{transform:matrix(0.150002,-0.003150,0.005249,0.249945,0,0);-ms-transform:matrix(0.150002,-0.003150,0.005249,0.249945,0,0);-webkit-transform:matrix(0.150002,-0.003150,0.005249,0.249945,0,0);}
.m0_c00122{transform:matrix(0.150060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150060,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.150894,-0.001811,0.003000,0.249982,0,0);-ms-transform:matrix(0.150894,-0.001811,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150894,-0.001811,0.003000,0.249982,0,0);}
.m58_c00122{transform:matrix(0.152066,-0.003193,0.005249,0.249945,0,0);-ms-transform:matrix(0.152066,-0.003193,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152066,-0.003193,0.005249,0.249945,0,0);}
.m5f_c00122{transform:matrix(0.152311,-0.003199,0.005249,0.249945,0,0);-ms-transform:matrix(0.152311,-0.003199,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152311,-0.003199,0.005249,0.249945,0,0);}
.m19_c00122{transform:matrix(0.152691,-0.003207,0.005249,0.249945,0,0);-ms-transform:matrix(0.152691,-0.003207,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152691,-0.003207,0.005249,0.249945,0,0);}
.meb_c00122{transform:matrix(0.153639,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153639,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153639,-0.001844,0.003000,0.249982,0,0);}
.m6c_c00122{transform:matrix(0.154266,-0.003240,0.005249,0.249945,0,0);-ms-transform:matrix(0.154266,-0.003240,0.005249,0.249945,0,0);-webkit-transform:matrix(0.154266,-0.003240,0.005249,0.249945,0,0);}
.ma5_c00122{transform:matrix(0.154279,-0.001851,0.003000,0.249982,0,0);-ms-transform:matrix(0.154279,-0.001851,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154279,-0.001851,0.003000,0.249982,0,0);}
.m6b_c00122{transform:matrix(0.155726,-0.003270,0.005249,0.249945,0,0);-ms-transform:matrix(0.155726,-0.003270,0.005249,0.249945,0,0);-webkit-transform:matrix(0.155726,-0.003270,0.005249,0.249945,0,0);}
.m65_c00122{transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);-ms-transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);}
.m5c_c00122{transform:matrix(0.156411,-0.003285,0.005249,0.249945,0,0);-ms-transform:matrix(0.156411,-0.003285,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156411,-0.003285,0.005249,0.249945,0,0);}
.m11_c00122{transform:matrix(0.157210,-0.003301,0.005249,0.249945,0,0);-ms-transform:matrix(0.157210,-0.003301,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157210,-0.003301,0.005249,0.249945,0,0);}
.m2b_c00122{transform:matrix(0.158180,-0.003322,0.005249,0.249945,0,0);-ms-transform:matrix(0.158180,-0.003322,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158180,-0.003322,0.005249,0.249945,0,0);}
.m13_c00122{transform:matrix(0.158350,-0.003325,0.005249,0.249945,0,0);-ms-transform:matrix(0.158350,-0.003325,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158350,-0.003325,0.005249,0.249945,0,0);}
.m5_c00122{transform:matrix(0.158560,-0.003330,0.005249,0.249945,0,0);-ms-transform:matrix(0.158560,-0.003330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158560,-0.003330,0.005249,0.249945,0,0);}
.m62_c00122{transform:matrix(0.158575,-0.003330,0.005249,0.249945,0,0);-ms-transform:matrix(0.158575,-0.003330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158575,-0.003330,0.005249,0.249945,0,0);}
.m4_c00122{transform:matrix(0.158620,-0.003331,0.005249,0.249945,0,0);-ms-transform:matrix(0.158620,-0.003331,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158620,-0.003331,0.005249,0.249945,0,0);}
.m9f_c00122{transform:matrix(0.159134,-0.001910,0.003000,0.249982,0,0);-ms-transform:matrix(0.159134,-0.001910,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159134,-0.001910,0.003000,0.249982,0,0);}
.me5_c00122{transform:matrix(0.159329,-0.001912,0.003000,0.249982,0,0);-ms-transform:matrix(0.159329,-0.001912,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159329,-0.001912,0.003000,0.249982,0,0);}
.m4b_c00122{transform:matrix(0.159365,-0.003347,0.005249,0.249945,0,0);-ms-transform:matrix(0.159365,-0.003347,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159365,-0.003347,0.005249,0.249945,0,0);}
.m1_c00122{transform:matrix(0.161204,-0.003385,0.005249,0.249945,0,0);-ms-transform:matrix(0.161204,-0.003385,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161204,-0.003385,0.005249,0.249945,0,0);}
.mae_c00122{transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);-ms-transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);}
.m2f_c00122{transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);-ms-transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);}
.mdd_c00122{transform:matrix(0.162023,-0.001944,0.003000,0.249982,0,0);-ms-transform:matrix(0.162023,-0.001944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162023,-0.001944,0.003000,0.249982,0,0);}
.m2e_c00122{transform:matrix(0.162099,-0.003404,0.005249,0.249945,0,0);-ms-transform:matrix(0.162099,-0.003404,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162099,-0.003404,0.005249,0.249945,0,0);}
.m1d_c00122{transform:matrix(0.162524,-0.003413,0.005249,0.249945,0,0);-ms-transform:matrix(0.162524,-0.003413,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162524,-0.003413,0.005249,0.249945,0,0);}
.m18_c00122{transform:matrix(0.162694,-0.003417,0.005249,0.249945,0,0);-ms-transform:matrix(0.162694,-0.003417,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162694,-0.003417,0.005249,0.249945,0,0);}
.mb1_c00122{transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);-ms-transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);}
.m30_c00122{transform:matrix(0.163594,-0.003435,0.005249,0.249945,0,0);-ms-transform:matrix(0.163594,-0.003435,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163594,-0.003435,0.005249,0.249945,0,0);}
.m7a_c00122{transform:matrix(0.163944,-0.003443,0.005249,0.249945,0,0);-ms-transform:matrix(0.163944,-0.003443,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163944,-0.003443,0.005249,0.249945,0,0);}
.m59_c00122{transform:matrix(0.164214,-0.003448,0.005249,0.249945,0,0);-ms-transform:matrix(0.164214,-0.003448,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164214,-0.003448,0.005249,0.249945,0,0);}
.mfc_c00122{transform:matrix(0.165153,-0.001982,0.003000,0.249982,0,0);-ms-transform:matrix(0.165153,-0.001982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165153,-0.001982,0.003000,0.249982,0,0);}
.m4f_c00122{transform:matrix(0.165568,-0.003477,0.005249,0.249945,0,0);-ms-transform:matrix(0.165568,-0.003477,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165568,-0.003477,0.005249,0.249945,0,0);}
.m9_c00122{transform:matrix(0.165613,-0.003478,0.005249,0.249945,0,0);-ms-transform:matrix(0.165613,-0.003478,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165613,-0.003478,0.005249,0.249945,0,0);}
.m6f_c00122{transform:matrix(0.166203,-0.003490,0.005249,0.249945,0,0);-ms-transform:matrix(0.166203,-0.003490,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166203,-0.003490,0.005249,0.249945,0,0);}
.m3f_c00122{transform:matrix(0.166313,-0.003493,0.005249,0.249945,0,0);-ms-transform:matrix(0.166313,-0.003493,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166313,-0.003493,0.005249,0.249945,0,0);}
.mc8_c00122{transform:matrix(0.166878,-0.002003,0.003000,0.249982,0,0);-ms-transform:matrix(0.166878,-0.002003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166878,-0.002003,0.003000,0.249982,0,0);}
.mfd_c00122{transform:matrix(0.166928,-0.002003,0.003000,0.249982,0,0);-ms-transform:matrix(0.166928,-0.002003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166928,-0.002003,0.003000,0.249982,0,0);}
.m60_c00122{transform:matrix(0.167633,-0.003520,0.005249,0.249945,0,0);-ms-transform:matrix(0.167633,-0.003520,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167633,-0.003520,0.005249,0.249945,0,0);}
.mb4_c00122{transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);-ms-transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);}
.m105_c00122{transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);-ms-transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169843,-0.002038,0.003000,0.249982,0,0);}
.mc6_c00122{transform:matrix(0.170508,-0.002046,0.003000,0.249982,0,0);-ms-transform:matrix(0.170508,-0.002046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170508,-0.002046,0.003000,0.249982,0,0);}
.mb_c00122{transform:matrix(0.170677,-0.003584,0.005249,0.249945,0,0);-ms-transform:matrix(0.170677,-0.003584,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170677,-0.003584,0.005249,0.249945,0,0);}
.m7c_c00122{transform:matrix(0.170797,-0.003587,0.005249,0.249945,0,0);-ms-transform:matrix(0.170797,-0.003587,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170797,-0.003587,0.005249,0.249945,0,0);}
.m77_c00122{transform:matrix(0.170802,-0.003587,0.005249,0.249945,0,0);-ms-transform:matrix(0.170802,-0.003587,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170802,-0.003587,0.005249,0.249945,0,0);}
.m5a_c00122{transform:matrix(0.171102,-0.003593,0.005249,0.249945,0,0);-ms-transform:matrix(0.171102,-0.003593,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171102,-0.003593,0.005249,0.249945,0,0);}
.ma0_c00122{transform:matrix(0.171658,-0.002060,0.003000,0.249982,0,0);-ms-transform:matrix(0.171658,-0.002060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171658,-0.002060,0.003000,0.249982,0,0);}
.m8b_c00122{transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);-ms-transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);}
.mda_c00122{transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);-ms-transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171943,-0.002063,0.003000,0.249982,0,0);}
.mf_c00122{transform:matrix(0.172032,-0.003613,0.005249,0.249945,0,0);-ms-transform:matrix(0.172032,-0.003613,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172032,-0.003613,0.005249,0.249945,0,0);}
.m53_c00122{transform:matrix(0.172307,-0.003618,0.005249,0.249945,0,0);-ms-transform:matrix(0.172307,-0.003618,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172307,-0.003618,0.005249,0.249945,0,0);}
.mcc_c00122{transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);-ms-transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);}
.ma6_c00122{transform:matrix(0.172723,-0.002073,0.003000,0.249982,0,0);-ms-transform:matrix(0.172723,-0.002073,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172723,-0.002073,0.003000,0.249982,0,0);}
.mb9_c00122{transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);}
.m8f_c00122{transform:matrix(0.173327,-0.003640,0.005249,0.249945,0,0);-ms-transform:matrix(0.173327,-0.003640,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173327,-0.003640,0.005249,0.249945,0,0);}
.m108_c00122{transform:matrix(0.173433,-0.002081,0.003000,0.249982,0,0);-ms-transform:matrix(0.173433,-0.002081,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173433,-0.002081,0.003000,0.249982,0,0);}
.mc_c00122{transform:matrix(0.173722,-0.003648,0.005249,0.249945,0,0);-ms-transform:matrix(0.173722,-0.003648,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173722,-0.003648,0.005249,0.249945,0,0);}
.mf7_c00122{transform:matrix(0.174167,-0.002090,0.003000,0.249982,0,0);-ms-transform:matrix(0.174167,-0.002090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174167,-0.002090,0.003000,0.249982,0,0);}
.m15_c00122{transform:matrix(0.174242,-0.003659,0.005249,0.249945,0,0);-ms-transform:matrix(0.174242,-0.003659,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174242,-0.003659,0.005249,0.249945,0,0);}
.m75_c00122{transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);-ms-transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);}
.m49_c00122{transform:matrix(0.174841,-0.003672,0.005249,0.249945,0,0);-ms-transform:matrix(0.174841,-0.003672,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174841,-0.003672,0.005249,0.249945,0,0);}
.mee_c00122{transform:matrix(0.174882,-0.002099,0.003000,0.249982,0,0);-ms-transform:matrix(0.174882,-0.002099,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174882,-0.002099,0.003000,0.249982,0,0);}
.m4c_c00122{transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);-ms-transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);}
.m2_c00122{transform:matrix(0.175386,-0.003683,0.005249,0.249945,0,0);-ms-transform:matrix(0.175386,-0.003683,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175386,-0.003683,0.005249,0.249945,0,0);}
.m3_c00122{transform:matrix(0.175956,-0.003695,0.005249,0.249945,0,0);-ms-transform:matrix(0.175956,-0.003695,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175956,-0.003695,0.005249,0.249945,0,0);}
.m9b_c00122{transform:matrix(0.176492,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176492,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176492,-0.002118,0.003000,0.249982,0,0);}
.m9a_c00122{transform:matrix(0.176597,-0.002119,0.003000,0.249982,0,0);-ms-transform:matrix(0.176597,-0.002119,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176597,-0.002119,0.003000,0.249982,0,0);}
.mec_c00122{transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);-ms-transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);}
.m8c_c00122{transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);-ms-transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);}
.me1_c00122{transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177342,-0.002128,0.003000,0.249982,0,0);}
.mb5_c00122{transform:matrix(0.177782,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177782,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177782,-0.002133,0.003000,0.249982,0,0);}
.m29_c00122{transform:matrix(0.177861,-0.003735,0.005249,0.249945,0,0);-ms-transform:matrix(0.177861,-0.003735,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177861,-0.003735,0.005249,0.249945,0,0);}
.m80_c00122{transform:matrix(0.178056,-0.003739,0.005249,0.249945,0,0);-ms-transform:matrix(0.178056,-0.003739,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178056,-0.003739,0.005249,0.249945,0,0);}
.mb2_c00122{transform:matrix(0.178087,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178087,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178087,-0.002137,0.003000,0.249982,0,0);}
.mb6_c00122{transform:matrix(0.178147,-0.002138,0.003000,0.249982,0,0);-ms-transform:matrix(0.178147,-0.002138,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178147,-0.002138,0.003000,0.249982,0,0);}
.m2c_c00122{transform:matrix(0.178376,-0.003746,0.005249,0.249945,0,0);-ms-transform:matrix(0.178376,-0.003746,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178376,-0.003746,0.005249,0.249945,0,0);}
.ma_c00122{transform:matrix(0.178641,-0.003751,0.005249,0.249945,0,0);-ms-transform:matrix(0.178641,-0.003751,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178641,-0.003751,0.005249,0.249945,0,0);}
.m3e_c00122{transform:matrix(0.178831,-0.003755,0.005249,0.249945,0,0);-ms-transform:matrix(0.178831,-0.003755,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178831,-0.003755,0.005249,0.249945,0,0);}
.me2_c00122{transform:matrix(0.179022,-0.002148,0.003000,0.249982,0,0);-ms-transform:matrix(0.179022,-0.002148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179022,-0.002148,0.003000,0.249982,0,0);}
.m9d_c00122{transform:matrix(0.179582,-0.002155,0.003000,0.249982,0,0);-ms-transform:matrix(0.179582,-0.002155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179582,-0.002155,0.003000,0.249982,0,0);}
.m35_c00122{transform:matrix(0.179675,-0.003773,0.005249,0.249945,0,0);-ms-transform:matrix(0.179675,-0.003773,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179675,-0.003773,0.005249,0.249945,0,0);}
.m6e_c00122{transform:matrix(0.179960,-0.003779,0.005249,0.249945,0,0);-ms-transform:matrix(0.179960,-0.003779,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179960,-0.003779,0.005249,0.249945,0,0);}
.m96_c00122{transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);-ms-transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);}
.m5e_c00122{transform:matrix(0.180600,-0.003793,0.005249,0.249945,0,0);-ms-transform:matrix(0.180600,-0.003793,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180600,-0.003793,0.005249,0.249945,0,0);}
.m5b_c00122{transform:matrix(0.180920,-0.003799,0.005249,0.249945,0,0);-ms-transform:matrix(0.180920,-0.003799,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180920,-0.003799,0.005249,0.249945,0,0);}
.m73_c00122{transform:matrix(0.181585,-0.003813,0.005249,0.249945,0,0);-ms-transform:matrix(0.181585,-0.003813,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181585,-0.003813,0.005249,0.249945,0,0);}
.m27_c00122{transform:matrix(0.181725,-0.003816,0.005249,0.249945,0,0);-ms-transform:matrix(0.181725,-0.003816,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181725,-0.003816,0.005249,0.249945,0,0);}
.ma8_c00122{transform:matrix(0.181782,-0.002181,0.003000,0.249982,0,0);-ms-transform:matrix(0.181782,-0.002181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181782,-0.002181,0.003000,0.249982,0,0);}
.m10_c00122{transform:matrix(0.181790,-0.003818,0.005249,0.249945,0,0);-ms-transform:matrix(0.181790,-0.003818,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181790,-0.003818,0.005249,0.249945,0,0);}
.mcf_c00122{transform:matrix(0.182637,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182637,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182637,-0.002192,0.003000,0.249982,0,0);}
.m102_c00122{transform:matrix(0.182787,-0.002193,0.003000,0.249982,0,0);-ms-transform:matrix(0.182787,-0.002193,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182787,-0.002193,0.003000,0.249982,0,0);}
.mde_c00122{transform:matrix(0.182992,-0.002196,0.003000,0.249982,0,0);-ms-transform:matrix(0.182992,-0.002196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182992,-0.002196,0.003000,0.249982,0,0);}
.m3d_c00122{transform:matrix(0.182995,-0.003843,0.005249,0.249945,0,0);-ms-transform:matrix(0.182995,-0.003843,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182995,-0.003843,0.005249,0.249945,0,0);}
.m69_c00122{transform:matrix(0.183180,-0.003847,0.005249,0.249945,0,0);-ms-transform:matrix(0.183180,-0.003847,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183180,-0.003847,0.005249,0.249945,0,0);}
.m8a_c00122{transform:matrix(0.183470,-0.003853,0.005249,0.249945,0,0);-ms-transform:matrix(0.183470,-0.003853,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183470,-0.003853,0.005249,0.249945,0,0);}
.mf6_c00122{transform:matrix(0.183537,-0.002202,0.003000,0.249982,0,0);-ms-transform:matrix(0.183537,-0.002202,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183537,-0.002202,0.003000,0.249982,0,0);}
.m28_c00122{transform:matrix(0.183600,-0.003856,0.005249,0.249945,0,0);-ms-transform:matrix(0.183600,-0.003856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183600,-0.003856,0.005249,0.249945,0,0);}
.m24_c00122{transform:matrix(0.183610,-0.003856,0.005249,0.249945,0,0);-ms-transform:matrix(0.183610,-0.003856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183610,-0.003856,0.005249,0.249945,0,0);}
.ma7_c00122{transform:matrix(0.183982,-0.002208,0.003000,0.249982,0,0);-ms-transform:matrix(0.183982,-0.002208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183982,-0.002208,0.003000,0.249982,0,0);}
.ma9_c00122{transform:matrix(0.184107,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184107,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184107,-0.002209,0.003000,0.249982,0,0);}
.m104_c00122{transform:matrix(0.184122,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184122,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184122,-0.002209,0.003000,0.249982,0,0);}
.me3_c00122{transform:matrix(0.185062,-0.002221,0.003000,0.249982,0,0);-ms-transform:matrix(0.185062,-0.002221,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185062,-0.002221,0.003000,0.249982,0,0);}
.m66_c00122{transform:matrix(0.185569,-0.003897,0.005249,0.249945,0,0);-ms-transform:matrix(0.185569,-0.003897,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185569,-0.003897,0.005249,0.249945,0,0);}
.m50_c00122{transform:matrix(0.185579,-0.003897,0.005249,0.249945,0,0);-ms-transform:matrix(0.185579,-0.003897,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185579,-0.003897,0.005249,0.249945,0,0);}
.m79_c00122{transform:matrix(0.186529,-0.003917,0.005249,0.249945,0,0);-ms-transform:matrix(0.186529,-0.003917,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186529,-0.003917,0.005249,0.249945,0,0);}
.me6_c00122{transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);-ms-transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);}
.mb3_c00122{transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);}
.md_c00122{transform:matrix(0.186729,-0.003921,0.005249,0.249945,0,0);-ms-transform:matrix(0.186729,-0.003921,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186729,-0.003921,0.005249,0.249945,0,0);}
.mb0_c00122{transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);-ms-transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);}
.m9e_c00122{transform:matrix(0.188076,-0.002257,0.003000,0.249982,0,0);-ms-transform:matrix(0.188076,-0.002257,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188076,-0.002257,0.003000,0.249982,0,0);}
.mc9_c00122{transform:matrix(0.188221,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188221,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188221,-0.002259,0.003000,0.249982,0,0);}
.m40_c00122{transform:matrix(0.188498,-0.003958,0.005249,0.249945,0,0);-ms-transform:matrix(0.188498,-0.003958,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188498,-0.003958,0.005249,0.249945,0,0);}
.md2_c00122{transform:matrix(0.188916,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188916,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188916,-0.002267,0.003000,0.249982,0,0);}
.m88_c00122{transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);-ms-transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);}
.m8_c00122{transform:matrix(0.189048,-0.003970,0.005249,0.249945,0,0);-ms-transform:matrix(0.189048,-0.003970,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189048,-0.003970,0.005249,0.249945,0,0);}
.mc2_c00122{transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);}
.mc0_c00122{transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189311,-0.002272,0.003000,0.249982,0,0);}
.m6d_c00122{transform:matrix(0.189633,-0.003982,0.005249,0.249945,0,0);-ms-transform:matrix(0.189633,-0.003982,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189633,-0.003982,0.005249,0.249945,0,0);}
.m17_c00122{transform:matrix(0.189738,-0.003985,0.005249,0.249945,0,0);-ms-transform:matrix(0.189738,-0.003985,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189738,-0.003985,0.005249,0.249945,0,0);}
.m68_c00122{transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);-ms-transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);}
.mf9_c00122{transform:matrix(0.190381,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190381,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190381,-0.002285,0.003000,0.249982,0,0);}
.ma3_c00122{transform:matrix(0.190596,-0.002287,0.003000,0.249982,0,0);-ms-transform:matrix(0.190596,-0.002287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190596,-0.002287,0.003000,0.249982,0,0);}
.maf_c00122{transform:matrix(0.190726,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190726,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190726,-0.002289,0.003000,0.249982,0,0);}
.mfa_c00122{transform:matrix(0.191061,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191061,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191061,-0.002293,0.003000,0.249982,0,0);}
.ma2_c00122{transform:matrix(0.191316,-0.002296,0.003000,0.249982,0,0);-ms-transform:matrix(0.191316,-0.002296,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191316,-0.002296,0.003000,0.249982,0,0);}
.md3_c00122{transform:matrix(0.191746,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191746,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191746,-0.002301,0.003000,0.249982,0,0);}
.m57_c00122{transform:matrix(0.191803,-0.004028,0.005249,0.249945,0,0);-ms-transform:matrix(0.191803,-0.004028,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191803,-0.004028,0.005249,0.249945,0,0);}
.m90_c00122{transform:matrix(0.191873,-0.004029,0.005249,0.249945,0,0);-ms-transform:matrix(0.191873,-0.004029,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191873,-0.004029,0.005249,0.249945,0,0);}
.m47_c00122{transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);-ms-transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);}
.mff_c00122{transform:matrix(0.193096,-0.002317,0.003000,0.249982,0,0);-ms-transform:matrix(0.193096,-0.002317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193096,-0.002317,0.003000,0.249982,0,0);}
.md1_c00122{transform:matrix(0.193196,-0.002318,0.003000,0.249982,0,0);-ms-transform:matrix(0.193196,-0.002318,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193196,-0.002318,0.003000,0.249982,0,0);}
.m92_c00122{transform:matrix(0.193537,-0.004064,0.005249,0.249945,0,0);-ms-transform:matrix(0.193537,-0.004064,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193537,-0.004064,0.005249,0.249945,0,0);}
.me8_c00122{transform:matrix(0.193861,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193861,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193861,-0.002326,0.003000,0.249982,0,0);}
.m7_c00122{transform:matrix(0.194517,-0.004085,0.005249,0.249945,0,0);-ms-transform:matrix(0.194517,-0.004085,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194517,-0.004085,0.005249,0.249945,0,0);}
.m91_c00122{transform:matrix(0.194622,-0.004087,0.005249,0.249945,0,0);-ms-transform:matrix(0.194622,-0.004087,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194622,-0.004087,0.005249,0.249945,0,0);}
.m8e_c00122{transform:matrix(0.195592,-0.004107,0.005249,0.249945,0,0);-ms-transform:matrix(0.195592,-0.004107,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195592,-0.004107,0.005249,0.249945,0,0);}
.m20_c00122{transform:matrix(0.195822,-0.004112,0.005249,0.249945,0,0);-ms-transform:matrix(0.195822,-0.004112,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195822,-0.004112,0.005249,0.249945,0,0);}
.m43_c00122{transform:matrix(0.196057,-0.004117,0.005249,0.249945,0,0);-ms-transform:matrix(0.196057,-0.004117,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196057,-0.004117,0.005249,0.249945,0,0);}
.mdf_c00122{transform:matrix(0.196436,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196436,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196436,-0.002357,0.003000,0.249982,0,0);}
.mad_c00122{transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);}
.m1a_c00122{transform:matrix(0.196587,-0.004128,0.005249,0.249945,0,0);-ms-transform:matrix(0.196587,-0.004128,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196587,-0.004128,0.005249,0.249945,0,0);}
.m107_c00122{transform:matrix(0.196806,-0.002362,0.003000,0.249982,0,0);-ms-transform:matrix(0.196806,-0.002362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196806,-0.002362,0.003000,0.249982,0,0);}
.mc4_c00122{transform:matrix(0.196976,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.196976,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196976,-0.002364,0.003000,0.249982,0,0);}
.m85_c00122{transform:matrix(0.197012,-0.004137,0.005249,0.249945,0,0);-ms-transform:matrix(0.197012,-0.004137,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197012,-0.004137,0.005249,0.249945,0,0);}
.m45_c00122{transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);-ms-transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);}
.mdc_c00122{transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);}
.m82_c00122{transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-ms-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);}
.m63_c00122{transform:matrix(0.197666,-0.004151,0.005249,0.249945,0,0);-ms-transform:matrix(0.197666,-0.004151,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197666,-0.004151,0.005249,0.249945,0,0);}
.med_c00122{transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);}
.m64_c00122{transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);-ms-transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);}
.mdb_c00122{transform:matrix(0.199116,-0.002389,0.003000,0.249982,0,0);-ms-transform:matrix(0.199116,-0.002389,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199116,-0.002389,0.003000,0.249982,0,0);}
.m54_c00122{transform:matrix(0.199161,-0.004182,0.005249,0.249945,0,0);-ms-transform:matrix(0.199161,-0.004182,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199161,-0.004182,0.005249,0.249945,0,0);}
.me7_c00122{transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);-ms-transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);}
.m1c_c00122{transform:matrix(0.199781,-0.004195,0.005249,0.249945,0,0);-ms-transform:matrix(0.199781,-0.004195,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199781,-0.004195,0.005249,0.249945,0,0);}
.m25_c00122{transform:matrix(0.200221,-0.004205,0.005249,0.249945,0,0);-ms-transform:matrix(0.200221,-0.004205,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200221,-0.004205,0.005249,0.249945,0,0);}
.mf8_c00122{transform:matrix(0.200626,-0.002408,0.003000,0.249982,0,0);-ms-transform:matrix(0.200626,-0.002408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200626,-0.002408,0.003000,0.249982,0,0);}
.m21_c00122{transform:matrix(0.200661,-0.004214,0.005249,0.249945,0,0);-ms-transform:matrix(0.200661,-0.004214,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200661,-0.004214,0.005249,0.249945,0,0);}
.m10a_c00122{transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);}
.me9_c00122{transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);}
.ma4_c00122{transform:matrix(0.201116,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201116,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201116,-0.002413,0.003000,0.249982,0,0);}
.m12_c00122{transform:matrix(0.201216,-0.004226,0.005249,0.249945,0,0);-ms-transform:matrix(0.201216,-0.004226,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201216,-0.004226,0.005249,0.249945,0,0);}
.m84_c00122{transform:matrix(0.201456,-0.004231,0.005249,0.249945,0,0);-ms-transform:matrix(0.201456,-0.004231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201456,-0.004231,0.005249,0.249945,0,0);}
.m4e_c00122{transform:matrix(0.201541,-0.004232,0.005249,0.249945,0,0);-ms-transform:matrix(0.201541,-0.004232,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201541,-0.004232,0.005249,0.249945,0,0);}
.m7d_c00122{transform:matrix(0.201970,-0.004241,0.005249,0.249945,0,0);-ms-transform:matrix(0.201970,-0.004241,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201970,-0.004241,0.005249,0.249945,0,0);}
.m100_c00122{transform:matrix(0.202225,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202225,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202225,-0.002427,0.003000,0.249982,0,0);}
.mea_c00122{transform:matrix(0.202235,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202235,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202235,-0.002427,0.003000,0.249982,0,0);}
.mfe_c00122{transform:matrix(0.202265,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202265,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202265,-0.002427,0.003000,0.249982,0,0);}
.mfb_c00122{transform:matrix(0.202345,-0.002428,0.003000,0.249982,0,0);-ms-transform:matrix(0.202345,-0.002428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202345,-0.002428,0.003000,0.249982,0,0);}
.mbb_c00122{transform:matrix(0.202380,-0.002429,0.003000,0.249982,0,0);-ms-transform:matrix(0.202380,-0.002429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202380,-0.002429,0.003000,0.249982,0,0);}
.m70_c00122{transform:matrix(0.202520,-0.004253,0.005249,0.249945,0,0);-ms-transform:matrix(0.202520,-0.004253,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202520,-0.004253,0.005249,0.249945,0,0);}
.m2d_c00122{transform:matrix(0.202855,-0.004260,0.005249,0.249945,0,0);-ms-transform:matrix(0.202855,-0.004260,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202855,-0.004260,0.005249,0.249945,0,0);}
.m6a_c00122{transform:matrix(0.202935,-0.004262,0.005249,0.249945,0,0);-ms-transform:matrix(0.202935,-0.004262,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202935,-0.004262,0.005249,0.249945,0,0);}
.mef_c00122{transform:matrix(0.202940,-0.002435,0.003000,0.249982,0,0);-ms-transform:matrix(0.202940,-0.002435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202940,-0.002435,0.003000,0.249982,0,0);}
.m109_c00122{transform:matrix(0.203035,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.203035,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203035,-0.002436,0.003000,0.249982,0,0);}
.mc3_c00122{transform:matrix(0.203830,-0.002446,0.003000,0.249982,0,0);-ms-transform:matrix(0.203830,-0.002446,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203830,-0.002446,0.003000,0.249982,0,0);}
.m41_c00122{transform:matrix(0.203870,-0.004281,0.005249,0.249945,0,0);-ms-transform:matrix(0.203870,-0.004281,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203870,-0.004281,0.005249,0.249945,0,0);}
.mf3_c00122{transform:matrix(0.203915,-0.002447,0.003000,0.249982,0,0);-ms-transform:matrix(0.203915,-0.002447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203915,-0.002447,0.003000,0.249982,0,0);}
.mca_c00122{transform:matrix(0.204285,-0.002451,0.003000,0.249982,0,0);-ms-transform:matrix(0.204285,-0.002451,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204285,-0.002451,0.003000,0.249982,0,0);}
.m67_c00122{transform:matrix(0.205395,-0.004313,0.005249,0.249945,0,0);-ms-transform:matrix(0.205395,-0.004313,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205395,-0.004313,0.005249,0.249945,0,0);}
.m3c_c00122{transform:matrix(0.205690,-0.004319,0.005249,0.249945,0,0);-ms-transform:matrix(0.205690,-0.004319,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205690,-0.004319,0.005249,0.249945,0,0);}
.m23_c00122{transform:matrix(0.205815,-0.004322,0.005249,0.249945,0,0);-ms-transform:matrix(0.205815,-0.004322,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205815,-0.004322,0.005249,0.249945,0,0);}
.m33_c00122{transform:matrix(0.206045,-0.004327,0.005249,0.249945,0,0);-ms-transform:matrix(0.206045,-0.004327,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206045,-0.004327,0.005249,0.249945,0,0);}
.m106_c00122{transform:matrix(0.206145,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206145,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206145,-0.002474,0.003000,0.249982,0,0);}
.mba_c00122{transform:matrix(0.206495,-0.002478,0.003000,0.249982,0,0);-ms-transform:matrix(0.206495,-0.002478,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206495,-0.002478,0.003000,0.249982,0,0);}
.mf0_c00122{transform:matrix(0.206795,-0.002482,0.003000,0.249982,0,0);-ms-transform:matrix(0.206795,-0.002482,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206795,-0.002482,0.003000,0.249982,0,0);}
.m1b_c00122{transform:matrix(0.207234,-0.004352,0.005249,0.249945,0,0);-ms-transform:matrix(0.207234,-0.004352,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207234,-0.004352,0.005249,0.249945,0,0);}
.mcb_c00122{transform:matrix(0.207365,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207365,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207365,-0.002488,0.003000,0.249982,0,0);}
.m3b_c00122{transform:matrix(0.207484,-0.004357,0.005249,0.249945,0,0);-ms-transform:matrix(0.207484,-0.004357,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207484,-0.004357,0.005249,0.249945,0,0);}
.m56_c00122{transform:matrix(0.207529,-0.004358,0.005249,0.249945,0,0);-ms-transform:matrix(0.207529,-0.004358,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207529,-0.004358,0.005249,0.249945,0,0);}
.mbd_c00122{transform:matrix(0.207620,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207620,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207620,-0.002491,0.003000,0.249982,0,0);}
.maa_c00122{transform:matrix(0.207640,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207640,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207640,-0.002492,0.003000,0.249982,0,0);}
.mc1_c00122{transform:matrix(0.208195,-0.002498,0.003000,0.249982,0,0);-ms-transform:matrix(0.208195,-0.002498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208195,-0.002498,0.003000,0.249982,0,0);}
.m78_c00122{transform:matrix(0.208394,-0.004376,0.005249,0.249945,0,0);-ms-transform:matrix(0.208394,-0.004376,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208394,-0.004376,0.005249,0.249945,0,0);}
.md0_c00122{transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);}
.m51_c00122{transform:matrix(0.208789,-0.004385,0.005249,0.249945,0,0);-ms-transform:matrix(0.208789,-0.004385,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208789,-0.004385,0.005249,0.249945,0,0);}
.m52_c00122{transform:matrix(0.209329,-0.004396,0.005249,0.249945,0,0);-ms-transform:matrix(0.209329,-0.004396,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209329,-0.004396,0.005249,0.249945,0,0);}
.md7_c00122{transform:matrix(0.209405,-0.002513,0.003000,0.249982,0,0);-ms-transform:matrix(0.209405,-0.002513,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209405,-0.002513,0.003000,0.249982,0,0);}
.m5d_c00122{transform:matrix(0.210209,-0.004414,0.005249,0.249945,0,0);-ms-transform:matrix(0.210209,-0.004414,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210209,-0.004414,0.005249,0.249945,0,0);}
.m72_c00122{transform:matrix(0.210719,-0.004425,0.005249,0.249945,0,0);-ms-transform:matrix(0.210719,-0.004425,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210719,-0.004425,0.005249,0.249945,0,0);}
.mbf_c00122{transform:matrix(0.211275,-0.002535,0.003000,0.249982,0,0);-ms-transform:matrix(0.211275,-0.002535,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211275,-0.002535,0.003000,0.249982,0,0);}
.m37_c00122{transform:matrix(0.211298,-0.004437,0.005249,0.249945,0,0);-ms-transform:matrix(0.211298,-0.004437,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211298,-0.004437,0.005249,0.249945,0,0);}
.m4d_c00122{transform:matrix(0.212443,-0.004461,0.005249,0.249945,0,0);-ms-transform:matrix(0.212443,-0.004461,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212443,-0.004461,0.005249,0.249945,0,0);}
.md4_c00122{transform:matrix(0.212825,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212825,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212825,-0.002554,0.003000,0.249982,0,0);}
.m86_c00122{transform:matrix(0.212828,-0.004469,0.005249,0.249945,0,0);-ms-transform:matrix(0.212828,-0.004469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212828,-0.004469,0.005249,0.249945,0,0);}
.m94_c00122{transform:matrix(0.212938,-0.004472,0.005249,0.249945,0,0);-ms-transform:matrix(0.212938,-0.004472,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212938,-0.004472,0.005249,0.249945,0,0);}
.mb8_c00122{transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);-ms-transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);}
.m101_c00122{transform:matrix(0.213885,-0.002567,0.003000,0.249982,0,0);-ms-transform:matrix(0.213885,-0.002567,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213885,-0.002567,0.003000,0.249982,0,0);}
.m95_c00122{transform:matrix(0.214013,-0.004494,0.005249,0.249945,0,0);-ms-transform:matrix(0.214013,-0.004494,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214013,-0.004494,0.005249,0.249945,0,0);}
.me4_c00122{transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);-ms-transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214065,-0.002569,0.003000,0.249982,0,0);}
.m36_c00122{transform:matrix(0.214093,-0.004496,0.005249,0.249945,0,0);-ms-transform:matrix(0.214093,-0.004496,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214093,-0.004496,0.005249,0.249945,0,0);}
.m42_c00122{transform:matrix(0.214953,-0.004514,0.005249,0.249945,0,0);-ms-transform:matrix(0.214953,-0.004514,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214953,-0.004514,0.005249,0.249945,0,0);}
.mf5_c00122{transform:matrix(0.215045,-0.002581,0.003000,0.249982,0,0);-ms-transform:matrix(0.215045,-0.002581,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215045,-0.002581,0.003000,0.249982,0,0);}
.m71_c00122{transform:matrix(0.215073,-0.004517,0.005249,0.249945,0,0);-ms-transform:matrix(0.215073,-0.004517,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215073,-0.004517,0.005249,0.249945,0,0);}
.m81_c00122{transform:matrix(0.215363,-0.004523,0.005249,0.249945,0,0);-ms-transform:matrix(0.215363,-0.004523,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215363,-0.004523,0.005249,0.249945,0,0);}
.m32_c00122{transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);-ms-transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);}
.m76_c00122{transform:matrix(0.216247,-0.004541,0.005249,0.249945,0,0);-ms-transform:matrix(0.216247,-0.004541,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216247,-0.004541,0.005249,0.249945,0,0);}
.m3a_c00122{transform:matrix(0.216652,-0.004550,0.005249,0.249945,0,0);-ms-transform:matrix(0.216652,-0.004550,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216652,-0.004550,0.005249,0.249945,0,0);}
.m89_c00122{transform:matrix(0.216752,-0.004552,0.005249,0.249945,0,0);-ms-transform:matrix(0.216752,-0.004552,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216752,-0.004552,0.005249,0.249945,0,0);}
.m2a_c00122{transform:matrix(0.217252,-0.004562,0.005249,0.249945,0,0);-ms-transform:matrix(0.217252,-0.004562,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217252,-0.004562,0.005249,0.249945,0,0);}
.m7f_c00122{transform:matrix(0.217562,-0.004569,0.005249,0.249945,0,0);-ms-transform:matrix(0.217562,-0.004569,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217562,-0.004569,0.005249,0.249945,0,0);}
.mc7_c00122{transform:matrix(0.217854,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217854,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217854,-0.002614,0.003000,0.249982,0,0);}
.m7e_c00122{transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);-ms-transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);}
.mf4_c00122{transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);-ms-transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);}
.m44_c00122{transform:matrix(0.218667,-0.004592,0.005249,0.249945,0,0);-ms-transform:matrix(0.218667,-0.004592,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218667,-0.004592,0.005249,0.249945,0,0);}
.m74_c00122{transform:matrix(0.219022,-0.004599,0.005249,0.249945,0,0);-ms-transform:matrix(0.219022,-0.004599,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219022,-0.004599,0.005249,0.249945,0,0);}
.m97_c00122{transform:matrix(0.219067,-0.004600,0.005249,0.249945,0,0);-ms-transform:matrix(0.219067,-0.004600,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219067,-0.004600,0.005249,0.249945,0,0);}
.mc5_c00122{transform:matrix(0.219509,-0.002634,0.003000,0.249982,0,0);-ms-transform:matrix(0.219509,-0.002634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219509,-0.002634,0.003000,0.249982,0,0);}
.m1f_c00122{transform:matrix(0.220201,-0.004624,0.005249,0.249945,0,0);-ms-transform:matrix(0.220201,-0.004624,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220201,-0.004624,0.005249,0.249945,0,0);}
.mb7_c00122{transform:matrix(0.221784,-0.002661,0.003000,0.249982,0,0);-ms-transform:matrix(0.221784,-0.002661,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221784,-0.002661,0.003000,0.249982,0,0);}
.mf2_c00122{transform:matrix(0.222059,-0.002665,0.003000,0.249982,0,0);-ms-transform:matrix(0.222059,-0.002665,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222059,-0.002665,0.003000,0.249982,0,0);}
.me_c00122{transform:matrix(0.222181,-0.004666,0.005249,0.249945,0,0);-ms-transform:matrix(0.222181,-0.004666,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222181,-0.004666,0.005249,0.249945,0,0);}
.m26_c00122{transform:matrix(0.222251,-0.004667,0.005249,0.249945,0,0);-ms-transform:matrix(0.222251,-0.004667,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222251,-0.004667,0.005249,0.249945,0,0);}
.md8_c00122{transform:matrix(0.222804,-0.002674,0.003000,0.249982,0,0);-ms-transform:matrix(0.222804,-0.002674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222804,-0.002674,0.003000,0.249982,0,0);}
.md6_c00122{transform:matrix(0.223644,-0.002684,0.003000,0.249982,0,0);-ms-transform:matrix(0.223644,-0.002684,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223644,-0.002684,0.003000,0.249982,0,0);}
.md9_c00122{transform:matrix(0.225219,-0.002703,0.003000,0.249982,0,0);-ms-transform:matrix(0.225219,-0.002703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225219,-0.002703,0.003000,0.249982,0,0);}
.mcd_c00122{transform:matrix(0.229593,-0.002755,0.003000,0.249982,0,0);-ms-transform:matrix(0.229593,-0.002755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229593,-0.002755,0.003000,0.249982,0,0);}
.m1e_c00122{transform:matrix(0.230169,-0.004834,0.005249,0.249945,0,0);-ms-transform:matrix(0.230169,-0.004834,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230169,-0.004834,0.005249,0.249945,0,0);}
.mf1_c00122{transform:matrix(0.233323,-0.002800,0.003000,0.249982,0,0);-ms-transform:matrix(0.233323,-0.002800,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233323,-0.002800,0.003000,0.249982,0,0);}
.m93_c00122{transform:matrix(0.233953,-0.004913,0.005249,0.249945,0,0);-ms-transform:matrix(0.233953,-0.004913,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233953,-0.004913,0.005249,0.249945,0,0);}
.m4a_c00122{transform:matrix(0.235258,-0.004940,0.005249,0.249945,0,0);-ms-transform:matrix(0.235258,-0.004940,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235258,-0.004940,0.005249,0.249945,0,0);}
.m87_c00122{transform:matrix(0.237768,-0.004993,0.005249,0.249945,0,0);-ms-transform:matrix(0.237768,-0.004993,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237768,-0.004993,0.005249,0.249945,0,0);}
.m7b_c00122{transform:matrix(0.238217,-0.005003,0.005249,0.249945,0,0);-ms-transform:matrix(0.238217,-0.005003,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238217,-0.005003,0.005249,0.249945,0,0);}
.mbe_c00122{transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);-ms-transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);}
.m55_c00122{transform:matrix(0.239787,-0.005036,0.005249,0.249945,0,0);-ms-transform:matrix(0.239787,-0.005036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239787,-0.005036,0.005249,0.249945,0,0);}
.m98_c00122{transform:matrix(0.239808,-0.002878,0.003000,0.249982,0,0);-ms-transform:matrix(0.239808,-0.002878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239808,-0.002878,0.003000,0.249982,0,0);}
.m34_c00122{transform:matrix(0.240257,-0.005045,0.005249,0.249945,0,0);-ms-transform:matrix(0.240257,-0.005045,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240257,-0.005045,0.005249,0.249945,0,0);}
.mbc_c00122{transform:matrix(0.244842,-0.002938,0.003000,0.249982,0,0);-ms-transform:matrix(0.244842,-0.002938,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244842,-0.002938,0.003000,0.249982,0,0);}
.m31_c00122{transform:matrix(0.245766,-0.005161,0.005249,0.249945,0,0);-ms-transform:matrix(0.245766,-0.005161,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245766,-0.005161,0.005249,0.249945,0,0);}
.me0_c00122{transform:matrix(0.246157,-0.002954,0.003000,0.249982,0,0);-ms-transform:matrix(0.246157,-0.002954,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246157,-0.002954,0.003000,0.249982,0,0);}
.m103_c00122{transform:matrix(0.246217,-0.002955,0.003000,0.249982,0,0);-ms-transform:matrix(0.246217,-0.002955,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246217,-0.002955,0.003000,0.249982,0,0);}
.md5_c00122{transform:matrix(0.246517,-0.002958,0.003000,0.249982,0,0);-ms-transform:matrix(0.246517,-0.002958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246517,-0.002958,0.003000,0.249982,0,0);}
.m22_c00122{transform:matrix(0.253129,-0.005316,0.005249,0.249945,0,0);-ms-transform:matrix(0.253129,-0.005316,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253129,-0.005316,0.005249,0.249945,0,0);}
.m38_c00122{transform:matrix(0.267481,-0.005617,0.005249,0.249945,0,0);-ms-transform:matrix(0.267481,-0.005617,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267481,-0.005617,0.005249,0.249945,0,0);}
.mce_c00122{transform:matrix(0.299823,-0.003598,0.003000,0.249982,0,0);-ms-transform:matrix(0.299823,-0.003598,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299823,-0.003598,0.003000,0.249982,0,0);}
.mab_c00122{transform:matrix(0.302048,-0.003625,0.003000,0.249982,0,0);-ms-transform:matrix(0.302048,-0.003625,0.003000,0.249982,0,0);-webkit-transform:matrix(0.302048,-0.003625,0.003000,0.249982,0,0);}
.mac_c00122{transform:matrix(0.351150,-0.004214,0.003000,0.249982,0,0);-ms-transform:matrix(0.351150,-0.004214,0.003000,0.249982,0,0);-webkit-transform:matrix(0.351150,-0.004214,0.003000,0.249982,0,0);}
.m46_c00122{transform:matrix(0.422392,-0.008870,0.005249,0.249945,0,0);-ms-transform:matrix(0.422392,-0.008870,0.005249,0.249945,0,0);-webkit-transform:matrix(0.422392,-0.008870,0.005249,0.249945,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
.fc0_c00122{color:transparent;}
.fs11_c00122{font-size:58.804233px;}
.fs15_c00122{font-size:60.904385px;}
.fs7_c00122{font-size:60.913427px;}
.fsb_c00122{font-size:61.963658px;}
.fs10_c00122{font-size:63.004536px;}
.fs5_c00122{font-size:63.013890px;}
.fs16_c00122{font-size:64.054611px;}
.fs8_c00122{font-size:64.064121px;}
.fs14_c00122{font-size:65.104687px;}
.fs4_c00122{font-size:65.114353px;}
.fs12_c00122{font-size:66.154763px;}
.fs13_c00122{font-size:67.204838px;}
.fsf_c00122{font-size:68.254914px;}
.fs9_c00122{font-size:68.265047px;}
.fse_c00122{font-size:69.304989px;}
.fs6_c00122{font-size:69.315279px;}
.fs1_c00122{font-size:70.365510px;}
.fsd_c00122{font-size:71.405141px;}
.fsc_c00122{font-size:71.415742px;}
.fsa_c00122{font-size:72.465973px;}
.fs3_c00122{font-size:74.566436px;}
.fs2_c00122{font-size:77.717131px;}
.fs0_c00122{font-size:86.100000px;}
.y0_c00122{bottom:0.000000px;}
.y104_c00122{bottom:43.494564px;}
.y105_c00122{bottom:43.494906px;}
.y106_c00122{bottom:43.495170px;}
.y107_c00122{bottom:43.495752px;}
.y10c_c00122{bottom:43.495872px;}
.y10b_c00122{bottom:43.495926px;}
.y10a_c00122{bottom:43.496262px;}
.y108_c00122{bottom:43.496358px;}
.y109_c00122{bottom:43.496640px;}
.yfe_c00122{bottom:60.268554px;}
.yff_c00122{bottom:60.269196px;}
.y101_c00122{bottom:60.269688px;}
.y100_c00122{bottom:60.269922px;}
.y102_c00122{bottom:60.270354px;}
.y103_c00122{bottom:60.270882px;}
.yf9_c00122{bottom:78.169476px;}
.yfb_c00122{bottom:78.169626px;}
.yfa_c00122{bottom:78.169944px;}
.yf8_c00122{bottom:78.170088px;}
.yfc_c00122{bottom:78.170250px;}
.yfd_c00122{bottom:78.170316px;}
.yf0_c00122{bottom:95.012856px;}
.yf4_c00122{bottom:95.013174px;}
.yf5_c00122{bottom:95.013378px;}
.yf1_c00122{bottom:95.013582px;}
.yf3_c00122{bottom:95.013672px;}
.yf6_c00122{bottom:95.013900px;}
.yf7_c00122{bottom:95.014026px;}
.yf2_c00122{bottom:95.014284px;}
.ye8_c00122{bottom:113.815524px;}
.ye7_c00122{bottom:113.815920px;}
.yef_c00122{bottom:113.816004px;}
.ye6_c00122{bottom:113.816058px;}
.yee_c00122{bottom:113.816082px;}
.ye9_c00122{bottom:113.816226px;}
.yed_c00122{bottom:113.816640px;}
.yec_c00122{bottom:113.816658px;}
.yea_c00122{bottom:113.816850px;}
.yeb_c00122{bottom:113.816976px;}
.ye4_c00122{bottom:131.163558px;}
.ye3_c00122{bottom:131.163792px;}
.ye0_c00122{bottom:131.164080px;}
.ye5_c00122{bottom:131.164242px;}
.ye2_c00122{bottom:131.164506px;}
.ye1_c00122{bottom:131.164764px;}
.yd9_c00122{bottom:145.259088px;}
.yda_c00122{bottom:145.950318px;}
.ydb_c00122{bottom:146.753454px;}
.ydc_c00122{bottom:147.571392px;}
.ydd_c00122{bottom:148.403628px;}
.yde_c00122{bottom:148.603542px;}
.ydf_c00122{bottom:148.838190px;}
.yd1_c00122{bottom:165.803190px;}
.yd0_c00122{bottom:165.803328px;}
.yd2_c00122{bottom:165.803436px;}
.ycf_c00122{bottom:165.804066px;}
.yd3_c00122{bottom:165.804138px;}
.yd5_c00122{bottom:165.804444px;}
.yd4_c00122{bottom:165.804720px;}
.yd8_c00122{bottom:165.805014px;}
.yd6_c00122{bottom:165.805086px;}
.yd7_c00122{bottom:165.805152px;}
.yc7_c00122{bottom:182.197542px;}
.yc8_c00122{bottom:182.197824px;}
.yca_c00122{bottom:182.198154px;}
.yc9_c00122{bottom:182.198532px;}
.ycb_c00122{bottom:182.198718px;}
.ycc_c00122{bottom:182.198940px;}
.ycd_c00122{bottom:182.199324px;}
.yce_c00122{bottom:182.199348px;}
.ybf_c00122{bottom:194.404884px;}
.yc0_c00122{bottom:194.984292px;}
.yc1_c00122{bottom:195.856038px;}
.yc2_c00122{bottom:196.214604px;}
.yc3_c00122{bottom:197.522448px;}
.yc4_c00122{bottom:198.043812px;}
.yc5_c00122{bottom:198.727938px;}
.yc6_c00122{bottom:199.127910px;}
.yb8_c00122{bottom:216.797514px;}
.yb6_c00122{bottom:216.797586px;}
.yb7_c00122{bottom:216.797610px;}
.yb9_c00122{bottom:216.797658px;}
.yba_c00122{bottom:216.798180px;}
.ybb_c00122{bottom:216.798762px;}
.ybd_c00122{bottom:216.798888px;}
.ybc_c00122{bottom:216.799386px;}
.ybe_c00122{bottom:216.799614px;}
.yab_c00122{bottom:232.200342px;}
.yac_c00122{bottom:232.660254px;}
.yad_c00122{bottom:232.996878px;}
.yae_c00122{bottom:233.133522px;}
.yaf_c00122{bottom:233.456736px;}
.yb0_c00122{bottom:233.629674px;}
.yb1_c00122{bottom:234.298692px;}
.yb2_c00122{bottom:234.497826px;}
.yb3_c00122{bottom:234.667560px;}
.yb4_c00122{bottom:235.243692px;}
.yb5_c00122{bottom:235.446030px;}
.ya2_c00122{bottom:250.289298px;}
.ya3_c00122{bottom:250.621854px;}
.ya4_c00122{bottom:250.845756px;}
.ya5_c00122{bottom:251.337360px;}
.ya6_c00122{bottom:251.476266px;}
.ya7_c00122{bottom:251.695152px;}
.ya8_c00122{bottom:252.208842px;}
.ya9_c00122{bottom:252.400008px;}
.yaa_c00122{bottom:253.134342px;}
.y99_c00122{bottom:267.301500px;}
.y9a_c00122{bottom:267.549954px;}
.y9b_c00122{bottom:267.799488px;}
.y9c_c00122{bottom:268.458018px;}
.y9d_c00122{bottom:269.206476px;}
.y9e_c00122{bottom:269.487744px;}
.y9f_c00122{bottom:270.158370px;}
.ya0_c00122{bottom:270.350286px;}
.ya1_c00122{bottom:270.580380px;}
.y94_c00122{bottom:283.720506px;}
.y95_c00122{bottom:284.928468px;}
.y96_c00122{bottom:286.131000px;}
.y97_c00122{bottom:287.623726px;}
.y98_c00122{bottom:287.934085px;}
.y8c_c00122{bottom:301.273226px;}
.y8d_c00122{bottom:302.191351px;}
.y8e_c00122{bottom:302.549549px;}
.y8f_c00122{bottom:302.944389px;}
.y90_c00122{bottom:303.821890px;}
.y91_c00122{bottom:304.170625px;}
.y92_c00122{bottom:305.193208px;}
.y93_c00122{bottom:305.428957px;}
.y84_c00122{bottom:318.556424px;}
.y85_c00122{bottom:319.097432px;}
.y86_c00122{bottom:319.506117px;}
.y87_c00122{bottom:320.867879px;}
.y88_c00122{bottom:321.541934px;}
.y89_c00122{bottom:322.447227px;}
.y8a_c00122{bottom:323.618477px;}
.y8b_c00122{bottom:323.852015px;}
.y7a_c00122{bottom:336.108855px;}
.y7b_c00122{bottom:336.604097px;}
.y7c_c00122{bottom:336.959771px;}
.y7d_c00122{bottom:338.101689px;}
.y7e_c00122{bottom:338.403887px;}
.y7f_c00122{bottom:338.773244px;}
.y80_c00122{bottom:339.696252px;}
.y81_c00122{bottom:339.929885px;}
.y82_c00122{bottom:340.330904px;}
.y83_c00122{bottom:341.352923px;}
.y73_c00122{bottom:353.122152px;}
.y74_c00122{bottom:353.746562px;}
.y75_c00122{bottom:354.158109px;}
.y76_c00122{bottom:354.926016px;}
.y77_c00122{bottom:355.225167px;}
.y78_c00122{bottom:356.085183px;}
.y79_c00122{bottom:356.373702px;}
.y6b_c00122{bottom:367.711377px;}
.y6c_c00122{bottom:369.289397px;}
.y6d_c00122{bottom:369.869067px;}
.y6e_c00122{bottom:370.503767px;}
.y6f_c00122{bottom:372.711773px;}
.y70_c00122{bottom:373.252424px;}
.y71_c00122{bottom:373.742885px;}
.y72_c00122{bottom:375.558278px;}
.y63_c00122{bottom:386.336211px;}
.y64_c00122{bottom:386.734359px;}
.y65_c00122{bottom:387.067197px;}
.y66_c00122{bottom:387.636905px;}
.y67_c00122{bottom:387.988501px;}
.y68_c00122{bottom:388.877951px;}
.y69_c00122{bottom:389.726215px;}
.y6a_c00122{bottom:390.270612px;}
.y58_c00122{bottom:402.004212px;}
.y59_c00122{bottom:402.289683px;}
.y5a_c00122{bottom:402.655014px;}
.y5b_c00122{bottom:403.559150px;}
.y5c_c00122{bottom:404.046243px;}
.y5d_c00122{bottom:404.493028px;}
.y5e_c00122{bottom:405.324895px;}
.y5f_c00122{bottom:405.895346px;}
.y60_c00122{bottom:406.786755px;}
.y61_c00122{bottom:407.824150px;}
.y62_c00122{bottom:408.901968px;}
.y51_c00122{bottom:420.637569px;}
.y52_c00122{bottom:421.654724px;}
.y53_c00122{bottom:423.463090px;}
.y54_c00122{bottom:423.953085px;}
.y55_c00122{bottom:424.429736px;}
.y56_c00122{bottom:425.142975px;}
.y57_c00122{bottom:426.951216px;}
.y47_c00122{bottom:437.111559px;}
.y48_c00122{bottom:438.511490px;}
.y49_c00122{bottom:439.558214px;}
.y4a_c00122{bottom:440.081355px;}
.y4b_c00122{bottom:441.429150px;}
.y4c_c00122{bottom:441.742494px;}
.y4d_c00122{bottom:442.201995px;}
.y4e_c00122{bottom:443.150445px;}
.y4f_c00122{bottom:443.450949px;}
.y50_c00122{bottom:444.038865px;}
.y3e_c00122{bottom:455.743722px;}
.y3f_c00122{bottom:456.307635px;}
.y40_c00122{bottom:456.908655px;}
.y41_c00122{bottom:457.465134px;}
.y42_c00122{bottom:458.475591px;}
.y43_c00122{bottom:458.816421px;}
.y44_c00122{bottom:460.238551px;}
.y45_c00122{bottom:460.960752px;}
.y46_c00122{bottom:461.237920px;}
.y34_c00122{bottom:470.065376px;}
.y35_c00122{bottom:471.054849px;}
.y36_c00122{bottom:471.469360px;}
.y37_c00122{bottom:471.954409px;}
.y38_c00122{bottom:473.260650px;}
.y39_c00122{bottom:473.841585px;}
.y3a_c00122{bottom:474.949388px;}
.y3b_c00122{bottom:475.289783px;}
.y3c_c00122{bottom:476.238256px;}
.y3d_c00122{bottom:478.247214px;}
.y2c_c00122{bottom:487.617444px;}
.y2d_c00122{bottom:488.352812px;}
.y2e_c00122{bottom:489.228049px;}
.y2f_c00122{bottom:491.503725px;}
.y30_c00122{bottom:493.504877px;}
.y31_c00122{bottom:494.093550px;}
.y32_c00122{bottom:495.150363px;}
.y33_c00122{bottom:495.862417px;}
.y23_c00122{bottom:504.900578px;}
.y24_c00122{bottom:505.835543px;}
.y25_c00122{bottom:507.128306px;}
.y26_c00122{bottom:507.861840px;}
.y27_c00122{bottom:508.447866px;}
.y28_c00122{bottom:510.257031px;}
.y29_c00122{bottom:511.415952px;}
.y2a_c00122{bottom:512.512848px;}
.y2b_c00122{bottom:513.070565px;}
.y1c_c00122{bottom:521.916162px;}
.y1d_c00122{bottom:522.841477px;}
.y1e_c00122{bottom:525.250380px;}
.y1f_c00122{bottom:526.109497px;}
.y20_c00122{bottom:528.000896px;}
.y21_c00122{bottom:529.598291px;}
.y22_c00122{bottom:530.407070px;}
.y12_c00122{bottom:539.462598px;}
.y13_c00122{bottom:540.307488px;}
.y14_c00122{bottom:540.761658px;}
.y15_c00122{bottom:541.640976px;}
.y16_c00122{bottom:543.297002px;}
.y17_c00122{bottom:543.948604px;}
.y18_c00122{bottom:545.622903px;}
.y19_c00122{bottom:546.389964px;}
.y1a_c00122{bottom:547.406069px;}
.y1b_c00122{bottom:548.021492px;}
.y9_c00122{bottom:558.098256px;}
.ya_c00122{bottom:559.396716px;}
.yb_c00122{bottom:560.007260px;}
.yc_c00122{bottom:561.104343px;}
.yd_c00122{bottom:562.349940px;}
.ye_c00122{bottom:562.944328px;}
.yf_c00122{bottom:564.294498px;}
.y10_c00122{bottom:564.675312px;}
.y11_c00122{bottom:565.231039px;}
.y2_c00122{bottom:576.186000px;}
.y3_c00122{bottom:576.724177px;}
.y4_c00122{bottom:578.176454px;}
.y5_c00122{bottom:579.769976px;}
.y6_c00122{bottom:580.188390px;}
.y7_c00122{bottom:581.062925px;}
.y8_c00122{bottom:581.415346px;}
.y1_c00122{bottom:591.306000px;}
.h13_c00122{height:58.804233px;}
.h17_c00122{height:60.904385px;}
.h9_c00122{height:60.913427px;}
.hd_c00122{height:61.963658px;}
.h12_c00122{height:63.004536px;}
.h7_c00122{height:63.013890px;}
.h18_c00122{height:64.054611px;}
.ha_c00122{height:64.064121px;}
.h16_c00122{height:65.104687px;}
.h6_c00122{height:65.114353px;}
.h14_c00122{height:66.154763px;}
.h15_c00122{height:67.204838px;}
.h11_c00122{height:68.254914px;}
.hb_c00122{height:68.265047px;}
.h10_c00122{height:69.304989px;}
.h8_c00122{height:69.315279px;}
.h3_c00122{height:70.365510px;}
.hf_c00122{height:71.405141px;}
.he_c00122{height:71.415742px;}
.hc_c00122{height:72.465973px;}
.h5_c00122{height:74.566436px;}
.h4_c00122{height:77.717131px;}
.h2_c00122{height:86.100000px;}
.h0_c00122{height:632.850000px;}
.h1_c00122{height:633.000000px;}
.w0_c00122{width:371.790000px;}
.w1_c00122{width:372.000000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:25.117500px;}
.x18_c00122{left:26.479264px;}
.x46_c00122{left:28.495077px;}
.x72_c00122{left:29.677800px;}
.x7b_c00122{left:30.909642px;}
.x3a_c00122{left:32.174688px;}
.x83_c00122{left:33.201840px;}
.x8b_c00122{left:35.629320px;}
.x76_c00122{left:38.870784px;}
.x40_c00122{left:39.997272px;}
.x86_c00122{left:41.841168px;}
.x5f_c00122{left:49.225500px;}
.x3_c00122{left:50.745000px;}
.x19_c00122{left:53.677330px;}
.x52_c00122{left:54.926142px;}
.x1e_c00122{left:56.300454px;}
.x2a_c00122{left:58.307912px;}
.x62_c00122{left:61.130322px;}
.x89_c00122{left:63.443058px;}
.x11_c00122{left:65.076697px;}
.x6d_c00122{left:67.225032px;}
.x77_c00122{left:68.302032px;}
.x9_c00122{left:70.285830px;}
.x2b_c00122{left:71.686608px;}
.x3b_c00122{left:74.536510px;}
.x4f_c00122{left:75.740484px;}
.x24_c00122{left:80.326649px;}
.x30_c00122{left:82.201383px;}
.x63_c00122{left:83.539362px;}
.x4a_c00122{left:86.053774px;}
.x2c_c00122{left:87.352332px;}
.xa_c00122{left:91.355802px;}
.x7e_c00122{left:93.414252px;}
.x1f_c00122{left:97.994697px;}
.x67_c00122{left:100.599474px;}
.x5a_c00122{left:103.374328px;}
.x73_c00122{left:106.100892px;}
.x4b_c00122{left:107.511565px;}
.x31_c00122{left:108.700383px;}
.x47_c00122{left:109.727082px;}
.x68_c00122{left:112.986618px;}
.x84_c00122{left:114.207486px;}
.x87_c00122{left:117.176022px;}
.x4_c00122{left:119.901000px;}
.x20_c00122{left:121.634220px;}
.x1a_c00122{left:124.510489px;}
.x5b_c00122{left:126.606781px;}
.x78_c00122{left:127.706082px;}
.xb_c00122{left:129.162939px;}
.x48_c00122{left:131.686381px;}
.x53_c00122{left:138.173902px;}
.x21_c00122{left:140.536251px;}
.x12_c00122{left:141.930856px;}
.x35_c00122{left:145.282407px;}
.x64_c00122{left:146.458356px;}
.x2d_c00122{left:148.205043px;}
.x1b_c00122{left:149.771091px;}
.x6e_c00122{left:151.741200px;}
.x54_c00122{left:154.922442px;}
.x25_c00122{left:156.177816px;}
.x1_c00122{left:158.220000px;}
.x13_c00122{left:161.668879px;}
.x6f_c00122{left:164.161482px;}
.x50_c00122{left:166.420198px;}
.x65_c00122{left:168.324378px;}
.x3c_c00122{left:170.261962px;}
.xc_c00122{left:172.112725px;}
.x55_c00122{left:175.440733px;}
.x41_c00122{left:177.956874px;}
.x70_c00122{left:181.712502px;}
.x2e_c00122{left:183.950046px;}
.x49_c00122{left:187.261209px;}
.x3d_c00122{left:190.101202px;}
.xd_c00122{left:192.627792px;}
.x74_c00122{left:193.836030px;}
.x5_c00122{left:195.783000px;}
.x22_c00122{left:198.888998px;}
.x85_c00122{left:202.502712px;}
.x42_c00122{left:203.906338px;}
.x1c_c00122{left:205.393908px;}
.x79_c00122{left:206.551422px;}
.x7c_c00122{left:208.849518px;}
.x60_c00122{left:210.708000px;}
.x14_c00122{left:212.384590px;}
.x6_c00122{left:215.707500px;}
.x7f_c00122{left:217.353108px;}
.x69_c00122{left:218.835378px;}
.x3e_c00122{left:219.848844px;}
.x75_c00122{left:221.280726px;}
.x26_c00122{left:222.886716px;}
.x2f_c00122{left:225.530321px;}
.x56_c00122{left:226.682446px;}
.x36_c00122{left:230.115288px;}
.x4c_c00122{left:232.822284px;}
.x15_c00122{left:235.619731px;}
.x6a_c00122{left:236.930094px;}
.xe_c00122{left:239.199480px;}
.x32_c00122{left:240.767883px;}
.x27_c00122{left:242.486499px;}
.x43_c00122{left:244.424988px;}
.x80_c00122{left:247.865634px;}
.x4d_c00122{left:250.960984px;}
.xf_c00122{left:252.331275px;}
.x51_c00122{left:255.562161px;}
.x7_c00122{left:257.352000px;}
.x5c_c00122{left:258.847370px;}
.x57_c00122{left:261.906151px;}
.x16_c00122{left:266.426482px;}
.x37_c00122{left:268.062106px;}
.x10_c00122{left:271.505562px;}
.x5d_c00122{left:272.717535px;}
.x8_c00122{left:274.134000px;}
.x33_c00122{left:275.158383px;}
.x1d_c00122{left:276.168599px;}
.x28_c00122{left:277.732853px;}
.x38_c00122{left:280.085098px;}
.x61_c00122{left:282.586500px;}
.x17_c00122{left:285.084789px;}
.x34_c00122{left:288.356883px;}
.x23_c00122{left:289.633440px;}
.x44_c00122{left:291.609511px;}
.x7a_c00122{left:293.497932px;}
.x3f_c00122{left:295.165087px;}
.x81_c00122{left:296.199600px;}
.x5e_c00122{left:299.364511px;}
.x29_c00122{left:301.492880px;}
.x39_c00122{left:303.579114px;}
.x6b_c00122{left:304.711404px;}
.x7d_c00122{left:306.289848px;}
.x58_c00122{left:308.090316px;}
.x71_c00122{left:311.052114px;}
.x66_c00122{left:312.260334px;}
.x8a_c00122{left:315.369810px;}
.x4e_c00122{left:318.185511px;}
.x59_c00122{left:321.069135px;}
.x6c_c00122{left:323.073120px;}
.x82_c00122{left:324.822222px;}
.x88_c00122{left:325.901064px;}
.x45_c00122{left:340.575972px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
.fs11_c00122{font-size:52.270430pt;}
.fs15_c00122{font-size:54.137231pt;}
.fs7_c00122{font-size:54.145268pt;}
.fsb_c00122{font-size:55.078808pt;}
.fs10_c00122{font-size:56.004032pt;}
.fs5_c00122{font-size:56.012347pt;}
.fs16_c00122{font-size:56.937432pt;}
.fs8_c00122{font-size:56.945886pt;}
.fs14_c00122{font-size:57.870833pt;}
.fs4_c00122{font-size:57.879425pt;}
.fs12_c00122{font-size:58.804233pt;}
.fs13_c00122{font-size:59.737634pt;}
.fsf_c00122{font-size:60.671035pt;}
.fs9_c00122{font-size:60.680042pt;}
.fse_c00122{font-size:61.604435pt;}
.fs6_c00122{font-size:61.613581pt;}
.fs1_c00122{font-size:62.547120pt;}
.fsd_c00122{font-size:63.471236pt;}
.fsc_c00122{font-size:63.480660pt;}
.fsa_c00122{font-size:64.414199pt;}
.fs3_c00122{font-size:66.281277pt;}
.fs2_c00122{font-size:69.081894pt;}
.fs0_c00122{font-size:76.533333pt;}
.y0_c00122{bottom:0.000000pt;}
.y104_c00122{bottom:38.661835pt;}
.y105_c00122{bottom:38.662139pt;}
.y106_c00122{bottom:38.662373pt;}
.y107_c00122{bottom:38.662891pt;}
.y10c_c00122{bottom:38.662997pt;}
.y10b_c00122{bottom:38.663045pt;}
.y10a_c00122{bottom:38.663344pt;}
.y108_c00122{bottom:38.663429pt;}
.y109_c00122{bottom:38.663680pt;}
.yfe_c00122{bottom:53.572048pt;}
.yff_c00122{bottom:53.572619pt;}
.y101_c00122{bottom:53.573056pt;}
.y100_c00122{bottom:53.573264pt;}
.y102_c00122{bottom:53.573648pt;}
.y103_c00122{bottom:53.574117pt;}
.yf9_c00122{bottom:69.483979pt;}
.yfb_c00122{bottom:69.484112pt;}
.yfa_c00122{bottom:69.484395pt;}
.yf8_c00122{bottom:69.484523pt;}
.yfc_c00122{bottom:69.484667pt;}
.yfd_c00122{bottom:69.484725pt;}
.yf0_c00122{bottom:84.455872pt;}
.yf4_c00122{bottom:84.456155pt;}
.yf5_c00122{bottom:84.456336pt;}
.yf1_c00122{bottom:84.456517pt;}
.yf3_c00122{bottom:84.456597pt;}
.yf6_c00122{bottom:84.456800pt;}
.yf7_c00122{bottom:84.456912pt;}
.yf2_c00122{bottom:84.457141pt;}
.ye8_c00122{bottom:101.169355pt;}
.ye7_c00122{bottom:101.169707pt;}
.yef_c00122{bottom:101.169781pt;}
.ye6_c00122{bottom:101.169829pt;}
.yee_c00122{bottom:101.169851pt;}
.ye9_c00122{bottom:101.169979pt;}
.yed_c00122{bottom:101.170347pt;}
.yec_c00122{bottom:101.170363pt;}
.yea_c00122{bottom:101.170533pt;}
.yeb_c00122{bottom:101.170645pt;}
.ye4_c00122{bottom:116.589829pt;}
.ye3_c00122{bottom:116.590037pt;}
.ye0_c00122{bottom:116.590293pt;}
.ye5_c00122{bottom:116.590437pt;}
.ye2_c00122{bottom:116.590672pt;}
.ye1_c00122{bottom:116.590901pt;}
.yd9_c00122{bottom:129.119189pt;}
.yda_c00122{bottom:129.733616pt;}
.ydb_c00122{bottom:130.447515pt;}
.ydc_c00122{bottom:131.174571pt;}
.ydd_c00122{bottom:131.914336pt;}
.yde_c00122{bottom:132.092037pt;}
.ydf_c00122{bottom:132.300613pt;}
.yd1_c00122{bottom:147.380613pt;}
.yd0_c00122{bottom:147.380736pt;}
.yd2_c00122{bottom:147.380832pt;}
.ycf_c00122{bottom:147.381392pt;}
.yd3_c00122{bottom:147.381456pt;}
.yd5_c00122{bottom:147.381728pt;}
.yd4_c00122{bottom:147.381973pt;}
.yd8_c00122{bottom:147.382235pt;}
.yd6_c00122{bottom:147.382299pt;}
.yd7_c00122{bottom:147.382357pt;}
.yc7_c00122{bottom:161.953371pt;}
.yc8_c00122{bottom:161.953621pt;}
.yca_c00122{bottom:161.953915pt;}
.yc9_c00122{bottom:161.954251pt;}
.ycb_c00122{bottom:161.954416pt;}
.ycc_c00122{bottom:161.954613pt;}
.ycd_c00122{bottom:161.954955pt;}
.yce_c00122{bottom:161.954976pt;}
.ybf_c00122{bottom:172.804341pt;}
.yc0_c00122{bottom:173.319371pt;}
.yc1_c00122{bottom:174.094256pt;}
.yc2_c00122{bottom:174.412981pt;}
.yc3_c00122{bottom:175.575509pt;}
.yc4_c00122{bottom:176.038944pt;}
.yc5_c00122{bottom:176.647056pt;}
.yc6_c00122{bottom:177.002587pt;}
.yb8_c00122{bottom:192.708901pt;}
.yb6_c00122{bottom:192.708965pt;}
.yb7_c00122{bottom:192.708987pt;}
.yb9_c00122{bottom:192.709029pt;}
.yba_c00122{bottom:192.709493pt;}
.ybb_c00122{bottom:192.710011pt;}
.ybd_c00122{bottom:192.710123pt;}
.ybc_c00122{bottom:192.710565pt;}
.ybe_c00122{bottom:192.710768pt;}
.yab_c00122{bottom:206.400304pt;}
.yac_c00122{bottom:206.809115pt;}
.yad_c00122{bottom:207.108336pt;}
.yae_c00122{bottom:207.229797pt;}
.yaf_c00122{bottom:207.517099pt;}
.yb0_c00122{bottom:207.670821pt;}
.yb1_c00122{bottom:208.265504pt;}
.yb2_c00122{bottom:208.442512pt;}
.yb3_c00122{bottom:208.593387pt;}
.yb4_c00122{bottom:209.105504pt;}
.yb5_c00122{bottom:209.285360pt;}
.ya2_c00122{bottom:222.479376pt;}
.ya3_c00122{bottom:222.774981pt;}
.ya4_c00122{bottom:222.974005pt;}
.ya5_c00122{bottom:223.410987pt;}
.ya6_c00122{bottom:223.534459pt;}
.ya7_c00122{bottom:223.729024pt;}
.ya8_c00122{bottom:224.185637pt;}
.ya9_c00122{bottom:224.355563pt;}
.yaa_c00122{bottom:225.008304pt;}
.y99_c00122{bottom:237.601333pt;}
.y9a_c00122{bottom:237.822181pt;}
.y9b_c00122{bottom:238.043989pt;}
.y9c_c00122{bottom:238.629349pt;}
.y9d_c00122{bottom:239.294645pt;}
.y9e_c00122{bottom:239.544661pt;}
.y9f_c00122{bottom:240.140773pt;}
.ya0_c00122{bottom:240.311365pt;}
.ya1_c00122{bottom:240.515893pt;}
.y94_c00122{bottom:252.196005pt;}
.y95_c00122{bottom:253.269749pt;}
.y96_c00122{bottom:254.338667pt;}
.y97_c00122{bottom:255.665535pt;}
.y98_c00122{bottom:255.941409pt;}
.y8c_c00122{bottom:267.798423pt;}
.y8d_c00122{bottom:268.614535pt;}
.y8e_c00122{bottom:268.932932pt;}
.y8f_c00122{bottom:269.283901pt;}
.y90_c00122{bottom:270.063903pt;}
.y91_c00122{bottom:270.373889pt;}
.y92_c00122{bottom:271.282852pt;}
.y93_c00122{bottom:271.492407pt;}
.y84_c00122{bottom:283.161265pt;}
.y85_c00122{bottom:283.642161pt;}
.y86_c00122{bottom:284.005437pt;}
.y87_c00122{bottom:285.215892pt;}
.y88_c00122{bottom:285.815052pt;}
.y89_c00122{bottom:286.619757pt;}
.y8a_c00122{bottom:287.660868pt;}
.y8b_c00122{bottom:287.868457pt;}
.y7a_c00122{bottom:298.763427pt;}
.y7b_c00122{bottom:299.203641pt;}
.y7c_c00122{bottom:299.519796pt;}
.y7d_c00122{bottom:300.534835pt;}
.y7e_c00122{bottom:300.803455pt;}
.y7f_c00122{bottom:301.131772pt;}
.y80_c00122{bottom:301.952224pt;}
.y81_c00122{bottom:302.159897pt;}
.y82_c00122{bottom:302.516359pt;}
.y83_c00122{bottom:303.424820pt;}
.y73_c00122{bottom:313.886357pt;}
.y74_c00122{bottom:314.441388pt;}
.y75_c00122{bottom:314.807208pt;}
.y76_c00122{bottom:315.489792pt;}
.y77_c00122{bottom:315.755704pt;}
.y78_c00122{bottom:316.520163pt;}
.y79_c00122{bottom:316.776624pt;}
.y6b_c00122{bottom:326.854557pt;}
.y6c_c00122{bottom:328.257241pt;}
.y6d_c00122{bottom:328.772504pt;}
.y6e_c00122{bottom:329.336681pt;}
.y6f_c00122{bottom:331.299353pt;}
.y70_c00122{bottom:331.779932pt;}
.y71_c00122{bottom:332.215897pt;}
.y72_c00122{bottom:333.829580pt;}
.y63_c00122{bottom:343.409965pt;}
.y64_c00122{bottom:343.763875pt;}
.y65_c00122{bottom:344.059731pt;}
.y66_c00122{bottom:344.566137pt;}
.y67_c00122{bottom:344.878668pt;}
.y68_c00122{bottom:345.669289pt;}
.y69_c00122{bottom:346.423303pt;}
.y6a_c00122{bottom:346.907211pt;}
.y58_c00122{bottom:357.337077pt;}
.y59_c00122{bottom:357.590829pt;}
.y5a_c00122{bottom:357.915568pt;}
.y5b_c00122{bottom:358.719244pt;}
.y5c_c00122{bottom:359.152216pt;}
.y5d_c00122{bottom:359.549359pt;}
.y5e_c00122{bottom:360.288796pt;}
.y5f_c00122{bottom:360.795863pt;}
.y60_c00122{bottom:361.588227pt;}
.y61_c00122{bottom:362.510356pt;}
.y62_c00122{bottom:363.468416pt;}
.y51_c00122{bottom:373.900061pt;}
.y52_c00122{bottom:374.804199pt;}
.y53_c00122{bottom:376.411636pt;}
.y54_c00122{bottom:376.847187pt;}
.y55_c00122{bottom:377.270876pt;}
.y56_c00122{bottom:377.904867pt;}
.y57_c00122{bottom:379.512192pt;}
.y47_c00122{bottom:388.543608pt;}
.y48_c00122{bottom:389.787991pt;}
.y49_c00122{bottom:390.718412pt;}
.y4a_c00122{bottom:391.183427pt;}
.y4b_c00122{bottom:392.381467pt;}
.y4c_c00122{bottom:392.659995pt;}
.y4d_c00122{bottom:393.068440pt;}
.y4e_c00122{bottom:393.911507pt;}
.y4f_c00122{bottom:394.178621pt;}
.y50_c00122{bottom:394.701213pt;}
.y3e_c00122{bottom:405.105531pt;}
.y3f_c00122{bottom:405.606787pt;}
.y40_c00122{bottom:406.141027pt;}
.y41_c00122{bottom:406.635675pt;}
.y42_c00122{bottom:407.533859pt;}
.y43_c00122{bottom:407.836819pt;}
.y44_c00122{bottom:409.100935pt;}
.y45_c00122{bottom:409.742891pt;}
.y46_c00122{bottom:409.989263pt;}
.y34_c00122{bottom:417.835889pt;}
.y35_c00122{bottom:418.715421pt;}
.y36_c00122{bottom:419.083876pt;}
.y37_c00122{bottom:419.515031pt;}
.y38_c00122{bottom:420.676133pt;}
.y39_c00122{bottom:421.192520pt;}
.y3a_c00122{bottom:422.177233pt;}
.y3b_c00122{bottom:422.479807pt;}
.y3c_c00122{bottom:423.322895pt;}
.y3d_c00122{bottom:425.108635pt;}
.y2c_c00122{bottom:433.437728pt;}
.y2d_c00122{bottom:434.091388pt;}
.y2e_c00122{bottom:434.869377pt;}
.y2f_c00122{bottom:436.892200pt;}
.y30_c00122{bottom:438.671001pt;}
.y31_c00122{bottom:439.194267pt;}
.y32_c00122{bottom:440.133656pt;}
.y33_c00122{bottom:440.766593pt;}
.y23_c00122{bottom:448.800513pt;}
.y24_c00122{bottom:449.631593pt;}
.y25_c00122{bottom:450.780716pt;}
.y26_c00122{bottom:451.432747pt;}
.y27_c00122{bottom:451.953659pt;}
.y28_c00122{bottom:453.561805pt;}
.y29_c00122{bottom:454.591957pt;}
.y2a_c00122{bottom:455.566976pt;}
.y2b_c00122{bottom:456.062724pt;}
.y1c_c00122{bottom:463.925477pt;}
.y1d_c00122{bottom:464.747980pt;}
.y1e_c00122{bottom:466.889227pt;}
.y1f_c00122{bottom:467.652887pt;}
.y20_c00122{bottom:469.334129pt;}
.y21_c00122{bottom:470.754036pt;}
.y22_c00122{bottom:471.472951pt;}
.y12_c00122{bottom:479.522309pt;}
.y13_c00122{bottom:480.273323pt;}
.y14_c00122{bottom:480.677029pt;}
.y15_c00122{bottom:481.458645pt;}
.y16_c00122{bottom:482.930668pt;}
.y17_c00122{bottom:483.509871pt;}
.y18_c00122{bottom:484.998136pt;}
.y19_c00122{bottom:485.679968pt;}
.y1a_c00122{bottom:486.583172pt;}
.y1b_c00122{bottom:487.130215pt;}
.y9_c00122{bottom:496.087339pt;}
.ya_c00122{bottom:497.241525pt;}
.yb_c00122{bottom:497.784231pt;}
.yc_c00122{bottom:498.759416pt;}
.yd_c00122{bottom:499.866613pt;}
.ye_c00122{bottom:500.394959pt;}
.yf_c00122{bottom:501.595109pt;}
.y10_c00122{bottom:501.933611pt;}
.y11_c00122{bottom:502.427591pt;}
.y2_c00122{bottom:512.165333pt;}
.y3_c00122{bottom:512.643713pt;}
.y4_c00122{bottom:513.934625pt;}
.y5_c00122{bottom:515.351089pt;}
.y6_c00122{bottom:515.723013pt;}
.y7_c00122{bottom:516.500377pt;}
.y8_c00122{bottom:516.813641pt;}
.y1_c00122{bottom:525.605333pt;}
.h13_c00122{height:52.270430pt;}
.h17_c00122{height:54.137231pt;}
.h9_c00122{height:54.145268pt;}
.hd_c00122{height:55.078808pt;}
.h12_c00122{height:56.004032pt;}
.h7_c00122{height:56.012347pt;}
.h18_c00122{height:56.937432pt;}
.ha_c00122{height:56.945886pt;}
.h16_c00122{height:57.870833pt;}
.h6_c00122{height:57.879425pt;}
.h14_c00122{height:58.804233pt;}
.h15_c00122{height:59.737634pt;}
.h11_c00122{height:60.671035pt;}
.hb_c00122{height:60.680042pt;}
.h10_c00122{height:61.604435pt;}
.h8_c00122{height:61.613581pt;}
.h3_c00122{height:62.547120pt;}
.hf_c00122{height:63.471236pt;}
.he_c00122{height:63.480660pt;}
.hc_c00122{height:64.414199pt;}
.h5_c00122{height:66.281277pt;}
.h4_c00122{height:69.081894pt;}
.h2_c00122{height:76.533333pt;}
.h0_c00122{height:562.533333pt;}
.h1_c00122{height:562.666667pt;}
.w0_c00122{width:330.480000pt;}
.w1_c00122{width:330.666667pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:22.326667pt;}
.x18_c00122{left:23.537124pt;}
.x46_c00122{left:25.328957pt;}
.x72_c00122{left:26.380267pt;}
.x7b_c00122{left:27.475237pt;}
.x3a_c00122{left:28.599723pt;}
.x83_c00122{left:29.512747pt;}
.x8b_c00122{left:31.670507pt;}
.x76_c00122{left:34.551808pt;}
.x40_c00122{left:35.553131pt;}
.x86_c00122{left:37.192149pt;}
.x5f_c00122{left:43.756000pt;}
.x3_c00122{left:45.106667pt;}
.x19_c00122{left:47.713183pt;}
.x52_c00122{left:48.823237pt;}
.x1e_c00122{left:50.044848pt;}
.x2a_c00122{left:51.829255pt;}
.x62_c00122{left:54.338064pt;}
.x89_c00122{left:56.393829pt;}
.x11_c00122{left:57.845953pt;}
.x6d_c00122{left:59.755584pt;}
.x77_c00122{left:60.712917pt;}
.x9_c00122{left:62.476293pt;}
.x2b_c00122{left:63.721429pt;}
.x3b_c00122{left:66.254676pt;}
.x4f_c00122{left:67.324875pt;}
.x24_c00122{left:71.401465pt;}
.x30_c00122{left:73.067896pt;}
.x63_c00122{left:74.257211pt;}
.x4a_c00122{left:76.492244pt;}
.x2c_c00122{left:77.646517pt;}
.xa_c00122{left:81.205157pt;}
.x7e_c00122{left:83.034891pt;}
.x1f_c00122{left:87.106397pt;}
.x67_c00122{left:89.421755pt;}
.x5a_c00122{left:91.888292pt;}
.x73_c00122{left:94.311904pt;}
.x4b_c00122{left:95.565836pt;}
.x31_c00122{left:96.622563pt;}
.x47_c00122{left:97.535184pt;}
.x68_c00122{left:100.432549pt;}
.x84_c00122{left:101.517765pt;}
.x87_c00122{left:104.156464pt;}
.x4_c00122{left:106.578667pt;}
.x20_c00122{left:108.119307pt;}
.x1a_c00122{left:110.675991pt;}
.x5b_c00122{left:112.539361pt;}
.x78_c00122{left:113.516517pt;}
.xb_c00122{left:114.811501pt;}
.x48_c00122{left:117.054561pt;}
.x53_c00122{left:122.821247pt;}
.x21_c00122{left:124.921112pt;}
.x12_c00122{left:126.160761pt;}
.x35_c00122{left:129.139917pt;}
.x64_c00122{left:130.185205pt;}
.x2d_c00122{left:131.737816pt;}
.x1b_c00122{left:133.129859pt;}
.x6e_c00122{left:134.881067pt;}
.x54_c00122{left:137.708837pt;}
.x25_c00122{left:138.824725pt;}
.x1_c00122{left:140.640000pt;}
.x13_c00122{left:143.705671pt;}
.x6f_c00122{left:145.921317pt;}
.x50_c00122{left:147.929065pt;}
.x65_c00122{left:149.621669pt;}
.x3c_c00122{left:151.343967pt;}
.xc_c00122{left:152.989089pt;}
.x55_c00122{left:155.947319pt;}
.x41_c00122{left:158.183888pt;}
.x70_c00122{left:161.522224pt;}
.x2e_c00122{left:163.511152pt;}
.x49_c00122{left:166.454408pt;}
.x3d_c00122{left:168.978847pt;}
.xd_c00122{left:171.224704pt;}
.x74_c00122{left:172.298693pt;}
.x5_c00122{left:174.029333pt;}
.x22_c00122{left:176.790220pt;}
.x85_c00122{left:180.002411pt;}
.x42_c00122{left:181.250079pt;}
.x1c_c00122{left:182.572363pt;}
.x79_c00122{left:183.601264pt;}
.x7c_c00122{left:185.644016pt;}
.x60_c00122{left:187.296000pt;}
.x14_c00122{left:188.786303pt;}
.x6_c00122{left:191.740000pt;}
.x7f_c00122{left:193.202763pt;}
.x69_c00122{left:194.520336pt;}
.x3e_c00122{left:195.421195pt;}
.x75_c00122{left:196.693979pt;}
.x26_c00122{left:198.121525pt;}
.x2f_c00122{left:200.471396pt;}
.x56_c00122{left:201.495508pt;}
.x36_c00122{left:204.546923pt;}
.x4c_c00122{left:206.953141pt;}
.x15_c00122{left:209.439761pt;}
.x6a_c00122{left:210.604528pt;}
.xe_c00122{left:212.621760pt;}
.x32_c00122{left:214.015896pt;}
.x27_c00122{left:215.543555pt;}
.x43_c00122{left:217.266656pt;}
.x80_c00122{left:220.325008pt;}
.x4d_c00122{left:223.076431pt;}
.xf_c00122{left:224.294467pt;}
.x51_c00122{left:227.166365pt;}
.x7_c00122{left:228.757333pt;}
.x5c_c00122{left:230.086551pt;}
.x57_c00122{left:232.805468pt;}
.x16_c00122{left:236.823540pt;}
.x37_c00122{left:238.277428pt;}
.x10_c00122{left:241.338277pt;}
.x5d_c00122{left:242.415587pt;}
.x8_c00122{left:243.674667pt;}
.x33_c00122{left:244.585229pt;}
.x1d_c00122{left:245.483199pt;}
.x28_c00122{left:246.873647pt;}
.x38_c00122{left:248.964532pt;}
.x61_c00122{left:251.188000pt;}
.x17_c00122{left:253.408701pt;}
.x34_c00122{left:256.317229pt;}
.x23_c00122{left:257.451947pt;}
.x44_c00122{left:259.208455pt;}
.x7a_c00122{left:260.887051pt;}
.x3f_c00122{left:262.368967pt;}
.x81_c00122{left:263.288533pt;}
.x5e_c00122{left:266.101788pt;}
.x29_c00122{left:267.993671pt;}
.x39_c00122{left:269.848101pt;}
.x6b_c00122{left:270.854581pt;}
.x7d_c00122{left:272.257643pt;}
.x58_c00122{left:273.858059pt;}
.x71_c00122{left:276.490768pt;}
.x66_c00122{left:277.564741pt;}
.x8a_c00122{left:280.328720pt;}
.x4e_c00122{left:282.831565pt;}
.x59_c00122{left:285.394787pt;}
.x6c_c00122{left:287.176107pt;}
.x82_c00122{left:288.730864pt;}
.x88_c00122{left:289.689835pt;}
.x45_c00122{left:302.734197pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00123 {
    display:none;
  }
  .loading-indicator_c00123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00123 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00123 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00123" -> "#page-container .classname_c00123")
 */
.pf_c00123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00123 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00123 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00123 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00123 {overflow:visible;}
  }
}
.c_c00123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00123 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00123:after { /* webkit #35443 */
  content: '';
}
.t_c00123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00123 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00123 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00123 { /* info for Javascript */
  display:none;
}
.l_c00123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00123:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00123 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00123.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_c00123{transform:matrix(0.032925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032925,0.000000,0.000000,0.250000,0,0);}
.m8b_c00123{transform:matrix(0.035770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035770,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.064940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064940,0.000000,0.000000,0.250000,0,0);}
.m7c_c00123{transform:matrix(0.073735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073735,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134015,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00123{transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);}
.mba_c00123{transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);}
.m96_c00123{transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);}
.mdf_c00123{transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);}
.mb7_c00123{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m94_c00123{transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);}
.m9e_c00123{transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);}
.mae_c00123{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.md4_c00123{transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);}
.ma1_c00123{transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);}
.m68_c00123{transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);}
.md9_c00123{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.md7_c00123{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);}
.mb6_c00123{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00123{transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);}
.mf4_c00123{transform:matrix(0.163481,-0.002779,0.004249,0.249964,0,0);-ms-transform:matrix(0.163481,-0.002779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163481,-0.002779,0.004249,0.249964,0,0);}
.m6b_c00123{transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);}
.mbd_c00123{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mce_c00123{transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);}
.ma2_c00123{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);}
.m91_c00123{transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166630,0.000000,0.000000,0.250000,0,0);}
.mad_c00123{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m3a_c00123{transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);}
.m48_c00123{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m5e_c00123{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m69_c00123{transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);}
.m7d_c00123{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m4c_c00123{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.mf6_c00123{transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);}
.m8f_c00123{transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);}
.m57_c00123{transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);}
.mf3_c00123{transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);-ms-transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);}
.mc5_c00123{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m9d_c00123{transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);}
.ma3_c00123{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.mbe_c00123{transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);}
.mc7_c00123{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00123{transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172730,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.me2_c00123{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.mb4_c00123{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.md1_c00123{transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);}
.md2_c00123{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);}
.m65_c00123{transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00123{transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);}
.mc4_c00123{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m66_c00123{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.mb9_c00123{transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178760,0.000000,0.000000,0.250000,0,0);}
.med_c00123{transform:matrix(0.179419,-0.003050,0.004249,0.249964,0,0);-ms-transform:matrix(0.179419,-0.003050,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179419,-0.003050,0.004249,0.249964,0,0);}
.m7f_c00123{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m51_c00123{transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);}
.m64_c00123{transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);}
.me5_c00123{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m89_c00123{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m5a_c00123{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.mcf_c00123{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00123{transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);}
.md8_c00123{transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);}
.m56_c00123{transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.mda_c00123{transform:matrix(0.183270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183270,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.m78_c00123{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00123{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m99_c00123{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.ma6_c00123{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.m6a_c00123{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.mab_c00123{transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);}
.mdd_c00123{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.mcc_c00123{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.m45_c00123{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.mc6_c00123{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m4e_c00123{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m4f_c00123{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m90_c00123{transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188040,0.000000,0.000000,0.250000,0,0);}
.ma0_c00123{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m8c_c00123{transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.md0_c00123{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.mb5_c00123{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.md3_c00123{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00123{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mbf_c00123{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.mf9_c00123{transform:matrix(0.191737,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191737,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191737,-0.003260,0.004249,0.249964,0,0);}
.m35_c00123{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.m52_c00123{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.m6c_c00123{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m60_c00123{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.mde_c00123{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.mbb_c00123{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.me7_c00123{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.m46_c00123{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m14_c00123{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m54_c00123{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m74_c00123{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mb8_c00123{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.me8_c00123{transform:matrix(0.194102,-0.003300,0.004249,0.249964,0,0);-ms-transform:matrix(0.194102,-0.003300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194102,-0.003300,0.004249,0.249964,0,0);}
.m7a_c00123{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m7e_c00123{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.m67_c00123{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mdc_c00123{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00123{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m49_c00123{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.md5_c00123{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.mf8_c00123{transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-ms-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);}
.me1_c00123{transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);}
.mb3_c00123{transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);}
.m55_c00123{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.m80_c00123{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.mc9_c00123{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.me4_c00123{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.mb1_c00123{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.m8e_c00123{transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);}
.mf2_c00123{transform:matrix(0.199981,-0.003400,0.004249,0.249964,0,0);-ms-transform:matrix(0.199981,-0.003400,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199981,-0.003400,0.004249,0.249964,0,0);}
.mf7_c00123{transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);}
.m12_c00123{transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);}
.me6_c00123{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m9c_c00123{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00123{transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);}
.m83_c00123{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.m79_c00123{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.mac_c00123{transform:matrix(0.203885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203885,0.000000,0.000000,0.250000,0,0);}
.m6f_c00123{transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m7b_c00123{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);}
.mcb_c00123{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.m4a_c00123{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m47_c00123{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.mc8_c00123{transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00123{transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m6e_c00123{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m53_c00123{transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m81_c00123{transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);}
.mc3_c00123{transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);}
.m5c_c00123{transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);}
.m97_c00123{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.me0_c00123{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.ma9_c00123{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m92_c00123{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00123{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m4d_c00123{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.m3e_c00123{transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);}
.md6_c00123{transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);}
.meb_c00123{transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);-ms-transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);}
.m59_c00123{transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);}
.ma5_c00123{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m41_c00123{transform:matrix(0.212280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212280,0.000000,0.000000,0.250000,0,0);}
.maf_c00123{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m61_c00123{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mf5_c00123{transform:matrix(0.213564,-0.003631,0.004249,0.249964,0,0);-ms-transform:matrix(0.213564,-0.003631,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213564,-0.003631,0.004249,0.249964,0,0);}
.maa_c00123{transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);}
.m70_c00123{transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.me9_c00123{transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);-ms-transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);}
.m5b_c00123{transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);}
.m8a_c00123{transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);}
.mdb_c00123{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);}
.mc0_c00123{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.m4b_c00123{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.mec_c00123{transform:matrix(0.218498,-0.003714,0.004249,0.249964,0,0);-ms-transform:matrix(0.218498,-0.003714,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218498,-0.003714,0.004249,0.249964,0,0);}
.m30_c00123{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.m75_c00123{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.220065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220065,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.m62_c00123{transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);}
.m77_c00123{transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);}
.mf1_c00123{transform:matrix(0.221988,-0.003774,0.004249,0.249964,0,0);-ms-transform:matrix(0.221988,-0.003774,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221988,-0.003774,0.004249,0.249964,0,0);}
.ma7_c00123{transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00123{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m71_c00123{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mee_c00123{transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);-ms-transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224573,-0.003818,0.004249,0.249964,0,0);}
.m72_c00123{transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);}
.m3b_c00123{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m82_c00123{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);}
.mea_c00123{transform:matrix(0.227732,-0.003871,0.004249,0.249964,0,0);-ms-transform:matrix(0.227732,-0.003871,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227732,-0.003871,0.004249,0.249964,0,0);}
.m63_c00123{transform:matrix(0.230630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230630,0.000000,0.000000,0.250000,0,0);}
.m6d_c00123{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m87_c00123{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.me3_c00123{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);}
.m98_c00123{transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.m73_c00123{transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);}
.ma8_c00123{transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);}
.mca_c00123{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.mef_c00123{transform:matrix(0.240115,-0.004082,0.004249,0.249964,0,0);-ms-transform:matrix(0.240115,-0.004082,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240115,-0.004082,0.004249,0.249964,0,0);}
.m76_c00123{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m58_c00123{transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.m86_c00123{transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);}
.m8d_c00123{transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);}
.m44_c00123{transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);}
.m95_c00123{transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);}
.m84_c00123{transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);}
.mf0_c00123{transform:matrix(0.270251,-0.004594,0.004249,0.249964,0,0);-ms-transform:matrix(0.270251,-0.004594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.270251,-0.004594,0.004249,0.249964,0,0);}
.m50_c00123{transform:matrix(0.277040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277040,0.000000,0.000000,0.250000,0,0);}
.m88_c00123{transform:matrix(0.295320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295320,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);}
.mb0_c00123{transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.338300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338300,0.000000,0.000000,0.250000,0,0);}
.m85_c00123{transform:matrix(0.380685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380685,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.390495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390495,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.409985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409985,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.536065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536065,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:0.000000px;}
.fc0_c00123{color:transparent;}
.fs0_c00123{font-size:29.400000px;}
.fs9_c00123{font-size:58.800000px;}
.fs6_c00123{font-size:59.850000px;}
.fsd_c00123{font-size:59.858648px;}
.fs7_c00123{font-size:60.900000px;}
.fs2_c00123{font-size:61.950000px;}
.fs5_c00123{font-size:63.000000px;}
.fs4_c00123{font-size:64.050000px;}
.fse_c00123{font-size:64.059255px;}
.fs1_c00123{font-size:66.150000px;}
.fsb_c00123{font-size:68.250000px;}
.fsc_c00123{font-size:69.300000px;}
.fsa_c00123{font-size:70.350000px;}
.fs3_c00123{font-size:71.400000px;}
.fs8_c00123{font-size:72.450000px;}
.y0_c00123{bottom:0.000000px;}
.y37_c00123{bottom:27.817994px;}
.y38_c00123{bottom:29.426400px;}
.y39_c00123{bottom:30.090477px;}
.y3a_c00123{bottom:31.324796px;}
.y3b_c00123{bottom:31.793765px;}
.y3c_c00123{bottom:33.017790px;}
.y3d_c00123{bottom:33.484668px;}
.y3e_c00123{bottom:33.997610px;}
.y3f_c00123{bottom:34.471343px;}
.y2e_c00123{bottom:48.333000px;}
.y2f_c00123{bottom:48.999545px;}
.y30_c00123{bottom:49.342494px;}
.y31_c00123{bottom:50.247846px;}
.y32_c00123{bottom:50.601302px;}
.y33_c00123{bottom:51.431735px;}
.y34_c00123{bottom:51.725444px;}
.y35_c00123{bottom:52.597646px;}
.y36_c00123{bottom:53.360733px;}
.y2d_c00123{bottom:67.354500px;}
.y2c_c00123{bottom:84.280500px;}
.y2b_c00123{bottom:102.024000px;}
.y2a_c00123{bottom:118.794000px;}
.y29_c00123{bottom:138.003000px;}
.y28_c00123{bottom:154.363500px;}
.y27_c00123{bottom:172.447500px;}
.y26_c00123{bottom:188.605500px;}
.y25_c00123{bottom:188.821500px;}
.y24_c00123{bottom:188.943000px;}
.y23_c00123{bottom:189.022500px;}
.y22_c00123{bottom:189.883500px;}
.y21_c00123{bottom:190.120500px;}
.y20_c00123{bottom:190.404000px;}
.y1f_c00123{bottom:191.023500px;}
.y1e_c00123{bottom:191.431500px;}
.y1d_c00123{bottom:208.368000px;}
.y1c_c00123{bottom:226.248000px;}
.y1b_c00123{bottom:243.351000px;}
.y1a_c00123{bottom:261.838500px;}
.y13_c00123{bottom:273.786000px;}
.y14_c00123{bottom:274.240500px;}
.y15_c00123{bottom:274.387500px;}
.y16_c00123{bottom:275.667000px;}
.y17_c00123{bottom:277.117500px;}
.y18_c00123{bottom:277.380000px;}
.y19_c00123{bottom:277.812000px;}
.y12_c00123{bottom:295.144500px;}
.y11_c00123{bottom:314.238000px;}
.y10_c00123{bottom:331.867500px;}
.yf_c00123{bottom:349.149000px;}
.ye_c00123{bottom:367.392000px;}
.yd_c00123{bottom:384.844500px;}
.yc_c00123{bottom:402.228000px;}
.yb_c00123{bottom:419.593500px;}
.ya_c00123{bottom:437.445000px;}
.y9_c00123{bottom:454.878000px;}
.y8_c00123{bottom:471.573000px;}
.y7_c00123{bottom:489.357000px;}
.y6_c00123{bottom:506.520000px;}
.y5_c00123{bottom:523.143000px;}
.y4_c00123{bottom:541.620000px;}
.y3_c00123{bottom:558.553500px;}
.y2_c00123{bottom:576.255000px;}
.y1_c00123{bottom:600.219000px;}
.h2_c00123{height:29.400000px;}
.hb_c00123{height:58.800000px;}
.h8_c00123{height:59.850000px;}
.hf_c00123{height:59.858648px;}
.h9_c00123{height:60.900000px;}
.h4_c00123{height:61.950000px;}
.h7_c00123{height:63.000000px;}
.h6_c00123{height:64.050000px;}
.h10_c00123{height:64.059255px;}
.h3_c00123{height:66.150000px;}
.hd_c00123{height:68.250000px;}
.he_c00123{height:69.300000px;}
.hc_c00123{height:70.350000px;}
.h5_c00123{height:71.400000px;}
.ha_c00123{height:72.450000px;}
.h0_c00123{height:632.850000px;}
.h1_c00123{height:633.000000px;}
.w0_c00123{width:371.790000px;}
.w1_c00123{width:372.000000px;}
.x0_c00123{left:0.000000px;}
.x59_c00123{left:31.860000px;}
.x7e_c00123{left:35.256000px;}
.x6f_c00123{left:36.990000px;}
.x64_c00123{left:38.070000px;}
.x47_c00123{left:39.150000px;}
.x34_c00123{left:40.230000px;}
.x14_c00123{left:41.580000px;}
.x6_c00123{left:42.660000px;}
.x7_c00123{left:47.790000px;}
.x41_c00123{left:49.950000px;}
.x7b_c00123{left:53.460000px;}
.x1c_c00123{left:60.480000px;}
.x5a_c00123{left:62.910000px;}
.x48_c00123{left:65.340000px;}
.x3d_c00123{left:67.500000px;}
.x28_c00123{left:70.740000px;}
.x56_c00123{left:74.263500px;}
.x50_c00123{left:75.330000px;}
.x1_c00123{left:76.680000px;}
.x2c_c00123{left:78.840000px;}
.xd_c00123{left:79.920000px;}
.x44_c00123{left:81.810000px;}
.x37_c00123{left:87.480000px;}
.xe_c00123{left:90.450000px;}
.x2_c00123{left:91.800000px;}
.x4d_c00123{left:93.420000px;}
.x7f_c00123{left:94.638000px;}
.x52_c00123{left:96.390000px;}
.x15_c00123{left:97.740000px;}
.x65_c00123{left:99.630000px;}
.x76_c00123{left:100.710000px;}
.x23_c00123{left:103.410000px;}
.x1d_c00123{left:105.570000px;}
.x2d_c00123{left:106.650000px;}
.x70_c00123{left:107.730000px;}
.x16_c00123{left:109.890000px;}
.x35_c00123{left:113.130000px;}
.x8_c00123{left:116.370000px;}
.x74_c00123{left:117.990000px;}
.x68_c00123{left:119.880000px;}
.x7a_c00123{left:122.040000px;}
.x5b_c00123{left:123.930000px;}
.x3e_c00123{left:126.090000px;}
.x38_c00123{left:127.980000px;}
.x2e_c00123{left:130.140000px;}
.x71_c00123{left:132.570000px;}
.x24_c00123{left:134.730000px;}
.x17_c00123{left:136.620000px;}
.xf_c00123{left:137.970000px;}
.x6b_c00123{left:140.047500px;}
.x29_c00123{left:143.100000px;}
.x49_c00123{left:148.230000px;}
.x3_c00123{left:149.850000px;}
.x72_c00123{left:151.470000px;}
.x77_c00123{left:152.820000px;}
.x9_c00123{left:154.980000px;}
.x2a_c00123{left:156.600000px;}
.x10_c00123{left:157.680000px;}
.x5c_c00123{left:159.570000px;}
.x75_c00123{left:166.320000px;}
.x6c_c00123{left:168.349500px;}
.x4_c00123{left:170.370000px;}
.x66_c00123{left:172.800000px;}
.x78_c00123{left:174.420000px;}
.x4e_c00123{left:180.090000px;}
.x81_c00123{left:181.898924px;}
.x45_c00123{left:183.600000px;}
.x39_c00123{left:186.030000px;}
.x2b_c00123{left:187.110000px;}
.x69_c00123{left:189.270000px;}
.x6d_c00123{left:192.115500px;}
.x1e_c00123{left:193.590000px;}
.x5d_c00123{left:196.020000px;}
.x46_c00123{left:197.100000px;}
.x2f_c00123{left:198.720000px;}
.x82_c00123{left:201.453603px;}
.x42_c00123{left:206.010000px;}
.x18_c00123{left:208.170000px;}
.x3f_c00123{left:210.870000px;}
.x6a_c00123{left:214.650000px;}
.x80_c00123{left:217.534500px;}
.x53_c00123{left:219.510000px;}
.x25_c00123{left:220.590000px;}
.x79_c00123{left:221.940000px;}
.x43_c00123{left:223.020000px;}
.x30_c00123{left:224.370000px;}
.x11_c00123{left:227.880000px;}
.xa_c00123{left:232.200000px;}
.x57_c00123{left:234.829500px;}
.x4a_c00123{left:236.250000px;}
.x5_c00123{left:241.920000px;}
.x61_c00123{left:243.270000px;}
.x19_c00123{left:244.620000px;}
.x7c_c00123{left:246.780000px;}
.x3a_c00123{left:248.130000px;}
.x1f_c00123{left:249.480000px;}
.x83_c00123{left:252.449034px;}
.x31_c00123{left:254.070000px;}
.x5e_c00123{left:255.960000px;}
.x1a_c00123{left:257.310000px;}
.x12_c00123{left:260.550000px;}
.x3b_c00123{left:263.250000px;}
.x32_c00123{left:268.380000px;}
.x51_c00123{left:270.270000px;}
.x26_c00123{left:272.160000px;}
.x7d_c00123{left:274.320000px;}
.x58_c00123{left:275.605500px;}
.x4b_c00123{left:276.750000px;}
.x40_c00123{left:278.370000px;}
.x73_c00123{left:279.720000px;}
.x5f_c00123{left:282.150000px;}
.xb_c00123{left:286.470000px;}
.x3c_c00123{left:289.170000px;}
.x20_c00123{left:293.490000px;}
.x6e_c00123{left:298.222500px;}
.x54_c00123{left:299.970000px;}
.x62_c00123{left:301.320000px;}
.x67_c00123{left:303.750000px;}
.x21_c00123{left:305.370000px;}
.xc_c00123{left:306.990000px;}
.x27_c00123{left:308.340000px;}
.x4c_c00123{left:310.770000px;}
.x84_c00123{left:312.974317px;}
.x13_c00123{left:315.900000px;}
.x55_c00123{left:316.980000px;}
.x33_c00123{left:319.680000px;}
.x63_c00123{left:320.760000px;}
.x22_c00123{left:324.270000px;}
.x1b_c00123{left:327.510000px;}
.x4f_c00123{left:331.290000px;}
.x36_c00123{left:334.800000px;}
.x60_c00123{left:356.670000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.fs0_c00123{font-size:26.133333pt;}
.fs9_c00123{font-size:52.266667pt;}
.fs6_c00123{font-size:53.200000pt;}
.fsd_c00123{font-size:53.207687pt;}
.fs7_c00123{font-size:54.133333pt;}
.fs2_c00123{font-size:55.066667pt;}
.fs5_c00123{font-size:56.000000pt;}
.fs4_c00123{font-size:56.933333pt;}
.fse_c00123{font-size:56.941560pt;}
.fs1_c00123{font-size:58.800000pt;}
.fsb_c00123{font-size:60.666667pt;}
.fsc_c00123{font-size:61.600000pt;}
.fsa_c00123{font-size:62.533333pt;}
.fs3_c00123{font-size:63.466667pt;}
.fs8_c00123{font-size:64.400000pt;}
.y0_c00123{bottom:0.000000pt;}
.y37_c00123{bottom:24.727105pt;}
.y38_c00123{bottom:26.156800pt;}
.y39_c00123{bottom:26.747091pt;}
.y3a_c00123{bottom:27.844263pt;}
.y3b_c00123{bottom:28.261124pt;}
.y3c_c00123{bottom:29.349147pt;}
.y3d_c00123{bottom:29.764149pt;}
.y3e_c00123{bottom:30.220097pt;}
.y3f_c00123{bottom:30.641193pt;}
.y2e_c00123{bottom:42.962667pt;}
.y2f_c00123{bottom:43.555151pt;}
.y30_c00123{bottom:43.859995pt;}
.y31_c00123{bottom:44.664752pt;}
.y32_c00123{bottom:44.978935pt;}
.y33_c00123{bottom:45.717097pt;}
.y34_c00123{bottom:45.978172pt;}
.y35_c00123{bottom:46.753463pt;}
.y36_c00123{bottom:47.431763pt;}
.y2d_c00123{bottom:59.870667pt;}
.y2c_c00123{bottom:74.916000pt;}
.y2b_c00123{bottom:90.688000pt;}
.y2a_c00123{bottom:105.594667pt;}
.y29_c00123{bottom:122.669333pt;}
.y28_c00123{bottom:137.212000pt;}
.y27_c00123{bottom:153.286667pt;}
.y26_c00123{bottom:167.649333pt;}
.y25_c00123{bottom:167.841333pt;}
.y24_c00123{bottom:167.949333pt;}
.y23_c00123{bottom:168.020000pt;}
.y22_c00123{bottom:168.785333pt;}
.y21_c00123{bottom:168.996000pt;}
.y20_c00123{bottom:169.248000pt;}
.y1f_c00123{bottom:169.798667pt;}
.y1e_c00123{bottom:170.161333pt;}
.y1d_c00123{bottom:185.216000pt;}
.y1c_c00123{bottom:201.109333pt;}
.y1b_c00123{bottom:216.312000pt;}
.y1a_c00123{bottom:232.745333pt;}
.y13_c00123{bottom:243.365333pt;}
.y14_c00123{bottom:243.769333pt;}
.y15_c00123{bottom:243.900000pt;}
.y16_c00123{bottom:245.037333pt;}
.y17_c00123{bottom:246.326667pt;}
.y18_c00123{bottom:246.560000pt;}
.y19_c00123{bottom:246.944000pt;}
.y12_c00123{bottom:262.350667pt;}
.y11_c00123{bottom:279.322667pt;}
.y10_c00123{bottom:294.993333pt;}
.yf_c00123{bottom:310.354667pt;}
.ye_c00123{bottom:326.570667pt;}
.yd_c00123{bottom:342.084000pt;}
.yc_c00123{bottom:357.536000pt;}
.yb_c00123{bottom:372.972000pt;}
.ya_c00123{bottom:388.840000pt;}
.y9_c00123{bottom:404.336000pt;}
.y8_c00123{bottom:419.176000pt;}
.y7_c00123{bottom:434.984000pt;}
.y6_c00123{bottom:450.240000pt;}
.y5_c00123{bottom:465.016000pt;}
.y4_c00123{bottom:481.440000pt;}
.y3_c00123{bottom:496.492000pt;}
.y2_c00123{bottom:512.226667pt;}
.y1_c00123{bottom:533.528000pt;}
.h2_c00123{height:26.133333pt;}
.hb_c00123{height:52.266667pt;}
.h8_c00123{height:53.200000pt;}
.hf_c00123{height:53.207687pt;}
.h9_c00123{height:54.133333pt;}
.h4_c00123{height:55.066667pt;}
.h7_c00123{height:56.000000pt;}
.h6_c00123{height:56.933333pt;}
.h10_c00123{height:56.941560pt;}
.h3_c00123{height:58.800000pt;}
.hd_c00123{height:60.666667pt;}
.he_c00123{height:61.600000pt;}
.hc_c00123{height:62.533333pt;}
.h5_c00123{height:63.466667pt;}
.ha_c00123{height:64.400000pt;}
.h0_c00123{height:562.533333pt;}
.h1_c00123{height:562.666667pt;}
.w0_c00123{width:330.480000pt;}
.w1_c00123{width:330.666667pt;}
.x0_c00123{left:0.000000pt;}
.x59_c00123{left:28.320000pt;}
.x7e_c00123{left:31.338667pt;}
.x6f_c00123{left:32.880000pt;}
.x64_c00123{left:33.840000pt;}
.x47_c00123{left:34.800000pt;}
.x34_c00123{left:35.760000pt;}
.x14_c00123{left:36.960000pt;}
.x6_c00123{left:37.920000pt;}
.x7_c00123{left:42.480000pt;}
.x41_c00123{left:44.400000pt;}
.x7b_c00123{left:47.520000pt;}
.x1c_c00123{left:53.760000pt;}
.x5a_c00123{left:55.920000pt;}
.x48_c00123{left:58.080000pt;}
.x3d_c00123{left:60.000000pt;}
.x28_c00123{left:62.880000pt;}
.x56_c00123{left:66.012000pt;}
.x50_c00123{left:66.960000pt;}
.x1_c00123{left:68.160000pt;}
.x2c_c00123{left:70.080000pt;}
.xd_c00123{left:71.040000pt;}
.x44_c00123{left:72.720000pt;}
.x37_c00123{left:77.760000pt;}
.xe_c00123{left:80.400000pt;}
.x2_c00123{left:81.600000pt;}
.x4d_c00123{left:83.040000pt;}
.x7f_c00123{left:84.122667pt;}
.x52_c00123{left:85.680000pt;}
.x15_c00123{left:86.880000pt;}
.x65_c00123{left:88.560000pt;}
.x76_c00123{left:89.520000pt;}
.x23_c00123{left:91.920000pt;}
.x1d_c00123{left:93.840000pt;}
.x2d_c00123{left:94.800000pt;}
.x70_c00123{left:95.760000pt;}
.x16_c00123{left:97.680000pt;}
.x35_c00123{left:100.560000pt;}
.x8_c00123{left:103.440000pt;}
.x74_c00123{left:104.880000pt;}
.x68_c00123{left:106.560000pt;}
.x7a_c00123{left:108.480000pt;}
.x5b_c00123{left:110.160000pt;}
.x3e_c00123{left:112.080000pt;}
.x38_c00123{left:113.760000pt;}
.x2e_c00123{left:115.680000pt;}
.x71_c00123{left:117.840000pt;}
.x24_c00123{left:119.760000pt;}
.x17_c00123{left:121.440000pt;}
.xf_c00123{left:122.640000pt;}
.x6b_c00123{left:124.486667pt;}
.x29_c00123{left:127.200000pt;}
.x49_c00123{left:131.760000pt;}
.x3_c00123{left:133.200000pt;}
.x72_c00123{left:134.640000pt;}
.x77_c00123{left:135.840000pt;}
.x9_c00123{left:137.760000pt;}
.x2a_c00123{left:139.200000pt;}
.x10_c00123{left:140.160000pt;}
.x5c_c00123{left:141.840000pt;}
.x75_c00123{left:147.840000pt;}
.x6c_c00123{left:149.644000pt;}
.x4_c00123{left:151.440000pt;}
.x66_c00123{left:153.600000pt;}
.x78_c00123{left:155.040000pt;}
.x4e_c00123{left:160.080000pt;}
.x81_c00123{left:161.687932pt;}
.x45_c00123{left:163.200000pt;}
.x39_c00123{left:165.360000pt;}
.x2b_c00123{left:166.320000pt;}
.x69_c00123{left:168.240000pt;}
.x6d_c00123{left:170.769333pt;}
.x1e_c00123{left:172.080000pt;}
.x5d_c00123{left:174.240000pt;}
.x46_c00123{left:175.200000pt;}
.x2f_c00123{left:176.640000pt;}
.x82_c00123{left:179.069869pt;}
.x42_c00123{left:183.120000pt;}
.x18_c00123{left:185.040000pt;}
.x3f_c00123{left:187.440000pt;}
.x6a_c00123{left:190.800000pt;}
.x80_c00123{left:193.364000pt;}
.x53_c00123{left:195.120000pt;}
.x25_c00123{left:196.080000pt;}
.x79_c00123{left:197.280000pt;}
.x43_c00123{left:198.240000pt;}
.x30_c00123{left:199.440000pt;}
.x11_c00123{left:202.560000pt;}
.xa_c00123{left:206.400000pt;}
.x57_c00123{left:208.737333pt;}
.x4a_c00123{left:210.000000pt;}
.x5_c00123{left:215.040000pt;}
.x61_c00123{left:216.240000pt;}
.x19_c00123{left:217.440000pt;}
.x7c_c00123{left:219.360000pt;}
.x3a_c00123{left:220.560000pt;}
.x1f_c00123{left:221.760000pt;}
.x83_c00123{left:224.399141pt;}
.x31_c00123{left:225.840000pt;}
.x5e_c00123{left:227.520000pt;}
.x1a_c00123{left:228.720000pt;}
.x12_c00123{left:231.600000pt;}
.x3b_c00123{left:234.000000pt;}
.x32_c00123{left:238.560000pt;}
.x51_c00123{left:240.240000pt;}
.x26_c00123{left:241.920000pt;}
.x7d_c00123{left:243.840000pt;}
.x58_c00123{left:244.982667pt;}
.x4b_c00123{left:246.000000pt;}
.x40_c00123{left:247.440000pt;}
.x73_c00123{left:248.640000pt;}
.x5f_c00123{left:250.800000pt;}
.xb_c00123{left:254.640000pt;}
.x3c_c00123{left:257.040000pt;}
.x20_c00123{left:260.880000pt;}
.x6e_c00123{left:265.086667pt;}
.x54_c00123{left:266.640000pt;}
.x62_c00123{left:267.840000pt;}
.x67_c00123{left:270.000000pt;}
.x21_c00123{left:271.440000pt;}
.xc_c00123{left:272.880000pt;}
.x27_c00123{left:274.080000pt;}
.x4c_c00123{left:276.240000pt;}
.x84_c00123{left:278.199393pt;}
.x13_c00123{left:280.800000pt;}
.x55_c00123{left:281.760000pt;}
.x33_c00123{left:284.160000pt;}
.x63_c00123{left:285.120000pt;}
.x22_c00123{left:288.240000pt;}
.x1b_c00123{left:291.120000pt;}
.x4f_c00123{left:294.480000pt;}
.x36_c00123{left:297.600000pt;}
.x60_c00123{left:317.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00124 {
    display:none;
  }
  .loading-indicator_c00124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00124 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00124 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00124" -> "#page-container .classname_c00124")
 */
.pf_c00124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00124 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00124 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00124 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00124 {overflow:visible;}
  }
}
.c_c00124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00124 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00124:after { /* webkit #35443 */
  content: '';
}
.t_c00124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00124 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00124 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00124 { /* info for Javascript */
  display:none;
}
.l_c00124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00124:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00124 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00124.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00124{transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);}
.mc7_c00124{transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);}
.mcc_c00124{transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);}
.maa_c00124{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.m80_c00124{transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.151905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151905,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);}
.mad_c00124{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);}
.med_c00124{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00124{transform:matrix(0.154905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154905,0.000000,0.000000,0.250000,0,0);}
.mb3_c00124{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.me8_c00124{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m6b_c00124{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m5b_c00124{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m30_c00124{transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);}
.m75_c00124{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);}
.md4_c00124{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);}
.me9_c00124{transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00124{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.mc5_c00124{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.md9_c00124{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.m45_c00124{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m9d_c00124{transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);}
.mba_c00124{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.md6_c00124{transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);}
.ma2_c00124{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);}
.mce_c00124{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m84_c00124{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.mb0_c00124{transform:matrix(0.173595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173595,0.000000,0.000000,0.250000,0,0);}
.m25_c00124{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m57_c00124{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m77_c00124{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00124{transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);}
.m76_c00124{transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);}
.m97_c00124{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.me2_c00124{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);}
.mbd_c00124{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.mde_c00124{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.mf0_c00124{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.mac_c00124{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m4f_c00124{transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);}
.mab_c00124{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.mf8_c00124{transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00124{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m36_c00124{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.mb1_c00124{transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.ma6_c00124{transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);}
.mf6_c00124{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);}
.mca_c00124{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.ma7_c00124{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.m83_c00124{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00124{transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);}
.mf4_c00124{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);}
.m94_c00124{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.me6_c00124{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m22_c00124{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.mec_c00124{transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);}
.ma5_c00124{transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);}
.ma3_c00124{transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m86_c00124{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00124{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.mea_c00124{transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);}
.mcb_c00124{transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);}
.m68_c00124{transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);}
.mb2_c00124{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mc3_c00124{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.ma1_c00124{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.md2_c00124{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);}
.ma9_c00124{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.mae_c00124{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00124{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.188960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188960,0.000000,0.000000,0.250000,0,0);}
.m8e_c00124{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);}
.md7_c00124{transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00124{transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00124{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);}
.ma4_c00124{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m35_c00124{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m74_c00124{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.m87_c00124{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m61_c00124{transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);}
.m95_c00124{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m2b_c00124{transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);}
.m34_c00124{transform:matrix(0.194220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194220,0.000000,0.000000,0.250000,0,0);}
.m7e_c00124{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m71_c00124{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.mb6_c00124{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.maf_c00124{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m99_c00124{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m5c_c00124{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.mdf_c00124{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.md0_c00124{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.mc8_c00124{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m82_c00124{transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);}
.m9a_c00124{transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);}
.m9e_c00124{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m81_c00124{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m69_c00124{transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00124{transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);}
.mc4_c00124{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.mcf_c00124{transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);}
.mbf_c00124{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.md5_c00124{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.mc0_c00124{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.m46_c00124{transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);}
.m8a_c00124{transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);}
.m9c_c00124{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00124{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);}
.m59_c00124{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.md3_c00124{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m60_c00124{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.mda_c00124{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.m2c_c00124{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);}
.m9f_c00124{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00124{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.mdd_c00124{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m78_c00124{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m7f_c00124{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m90_c00124{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.me4_c00124{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);}
.mc6_c00124{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.mf3_c00124{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m52_c00124{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00124{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mdb_c00124{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m98_c00124{transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00124{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.mdc_c00124{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207455,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.mb4_c00124{transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);}
.m3e_c00124{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m93_c00124{transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.me5_c00124{transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);}
.mf1_c00124{transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);}
.m85_c00124{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.m37_c00124{transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m7c_c00124{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m96_c00124{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.md1_c00124{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00124{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m6a_c00124{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);}
.m67_c00124{transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);}
.mef_c00124{transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);}
.mf5_c00124{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m92_c00124{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m8d_c00124{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.mb5_c00124{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.me1_c00124{transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);}
.m7b_c00124{transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);}
.m21_c00124{transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);}
.meb_c00124{transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00124{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m89_c00124{transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);}
.me7_c00124{transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);}
.m7d_c00124{transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);}
.m3b_c00124{transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);}
.m70_c00124{transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);}
.md8_c00124{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mee_c00124{transform:matrix(0.222370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222370,0.000000,0.000000,0.250000,0,0);}
.m24_c00124{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m54_c00124{transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);}
.m26_c00124{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m73_c00124{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.mf7_c00124{transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);}
.m7a_c00124{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.mcd_c00124{transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);}
.mc9_c00124{transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);}
.me0_c00124{transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);}
.m88_c00124{transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);}
.m8c_c00124{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.mf2_c00124{transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);}
.me3_c00124{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m62_c00124{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.m91_c00124{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.m6d_c00124{transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);}
.mc2_c00124{transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);}
.m79_c00124{transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);}
.m6f_c00124{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00124{transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);}
.m6e_c00124{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.m44_c00124{transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:0.000000px;}
.fc0_c00124{color:transparent;}
.fs9_c00124{font-size:57.750000px;}
.fs7_c00124{font-size:59.850000px;}
.fs8_c00124{font-size:60.900000px;}
.fs6_c00124{font-size:61.950000px;}
.fs4_c00124{font-size:63.000000px;}
.fsa_c00124{font-size:64.050000px;}
.fs0_c00124{font-size:65.100000px;}
.fs1_c00124{font-size:66.150000px;}
.fs3_c00124{font-size:67.200000px;}
.fs5_c00124{font-size:68.250000px;}
.fs2_c00124{font-size:69.300000px;}
.fsb_c00124{font-size:70.350000px;}
.y0_c00124{bottom:0.000000px;}
.y8a_c00124{bottom:38.485500px;}
.y89_c00124{bottom:39.282000px;}
.y88_c00124{bottom:39.703500px;}
.y87_c00124{bottom:40.071000px;}
.y86_c00124{bottom:40.563000px;}
.y85_c00124{bottom:41.191500px;}
.y84_c00124{bottom:41.694000px;}
.y83_c00124{bottom:41.950500px;}
.y82_c00124{bottom:42.121500px;}
.y81_c00124{bottom:53.827500px;}
.y80_c00124{bottom:54.657000px;}
.y7f_c00124{bottom:54.891000px;}
.y7e_c00124{bottom:55.719000px;}
.y7d_c00124{bottom:56.172000px;}
.y7c_c00124{bottom:56.701500px;}
.y7b_c00124{bottom:57.313500px;}
.y7a_c00124{bottom:57.511500px;}
.y79_c00124{bottom:75.058500px;}
.y78_c00124{bottom:92.803500px;}
.y77_c00124{bottom:111.163500px;}
.y76_c00124{bottom:127.707000px;}
.y75_c00124{bottom:142.558500px;}
.y74_c00124{bottom:142.762500px;}
.y73_c00124{bottom:143.292000px;}
.y72_c00124{bottom:143.409000px;}
.y71_c00124{bottom:144.561000px;}
.y70_c00124{bottom:145.048500px;}
.y6f_c00124{bottom:145.315500px;}
.y6e_c00124{bottom:145.834500px;}
.y6d_c00124{bottom:146.070000px;}
.y6c_c00124{bottom:162.679500px;}
.y6b_c00124{bottom:163.369500px;}
.y6a_c00124{bottom:163.573500px;}
.y69_c00124{bottom:164.013000px;}
.y68_c00124{bottom:164.266500px;}
.y67_c00124{bottom:164.931000px;}
.y66_c00124{bottom:165.246000px;}
.y65_c00124{bottom:165.693000px;}
.y64_c00124{bottom:166.048500px;}
.y63_c00124{bottom:178.953000px;}
.y62_c00124{bottom:179.416500px;}
.y61_c00124{bottom:179.829000px;}
.y60_c00124{bottom:180.331500px;}
.y5f_c00124{bottom:180.601500px;}
.y5e_c00124{bottom:181.641000px;}
.y5d_c00124{bottom:182.002500px;}
.y5c_c00124{bottom:182.380500px;}
.y5b_c00124{bottom:183.060000px;}
.y5a_c00124{bottom:198.178500px;}
.y59_c00124{bottom:215.367000px;}
.y58_c00124{bottom:232.353000px;}
.y57_c00124{bottom:250.596000px;}
.y56_c00124{bottom:268.183500px;}
.y55_c00124{bottom:285.888000px;}
.y54_c00124{bottom:304.015500px;}
.y53_c00124{bottom:321.334500px;}
.y4b_c00124{bottom:336.691500px;}
.y4c_c00124{bottom:337.504500px;}
.y4d_c00124{bottom:338.287500px;}
.y4e_c00124{bottom:338.479500px;}
.y4f_c00124{bottom:338.727000px;}
.y50_c00124{bottom:339.507000px;}
.y51_c00124{bottom:339.766500px;}
.y52_c00124{bottom:340.489500px;}
.y4a_c00124{bottom:353.043000px;}
.y43_c00124{bottom:369.633000px;}
.y44_c00124{bottom:369.775500px;}
.y45_c00124{bottom:370.324500px;}
.y46_c00124{bottom:370.642500px;}
.y47_c00124{bottom:371.473500px;}
.y48_c00124{bottom:371.892000px;}
.y49_c00124{bottom:372.429000px;}
.y3c_c00124{bottom:386.643000px;}
.y3d_c00124{bottom:387.243000px;}
.y3e_c00124{bottom:387.924000px;}
.y3f_c00124{bottom:388.483500px;}
.y40_c00124{bottom:388.764000px;}
.y41_c00124{bottom:390.063000px;}
.y42_c00124{bottom:390.216000px;}
.y3b_c00124{bottom:404.416500px;}
.y33_c00124{bottom:421.740000px;}
.y34_c00124{bottom:422.715000px;}
.y35_c00124{bottom:423.169500px;}
.y36_c00124{bottom:423.808500px;}
.y37_c00124{bottom:424.093500px;}
.y38_c00124{bottom:424.431000px;}
.y39_c00124{bottom:425.725500px;}
.y3a_c00124{bottom:426.192000px;}
.y32_c00124{bottom:442.018500px;}
.y29_c00124{bottom:456.841500px;}
.y2a_c00124{bottom:457.212000px;}
.y2b_c00124{bottom:458.283000px;}
.y2c_c00124{bottom:458.605500px;}
.y2d_c00124{bottom:458.922000px;}
.y2e_c00124{bottom:459.579000px;}
.y2f_c00124{bottom:460.555500px;}
.y30_c00124{bottom:460.840500px;}
.y31_c00124{bottom:461.518500px;}
.y22_c00124{bottom:474.660000px;}
.y23_c00124{bottom:475.515000px;}
.y24_c00124{bottom:475.708500px;}
.y25_c00124{bottom:476.065500px;}
.y26_c00124{bottom:476.940000px;}
.y27_c00124{bottom:477.093000px;}
.y28_c00124{bottom:478.179000px;}
.y1a_c00124{bottom:489.778500px;}
.y1b_c00124{bottom:490.108500px;}
.y1c_c00124{bottom:490.960500px;}
.y1d_c00124{bottom:491.212500px;}
.y1e_c00124{bottom:491.472000px;}
.y1f_c00124{bottom:491.838000px;}
.y20_c00124{bottom:492.477000px;}
.y21_c00124{bottom:492.985500px;}
.y12_c00124{bottom:508.408500px;}
.y13_c00124{bottom:508.896000px;}
.y14_c00124{bottom:509.212500px;}
.y15_c00124{bottom:510.520500px;}
.y16_c00124{bottom:510.837000px;}
.y17_c00124{bottom:512.463000px;}
.y18_c00124{bottom:512.692500px;}
.y19_c00124{bottom:513.105000px;}
.ya_c00124{bottom:527.038500px;}
.yb_c00124{bottom:527.608500px;}
.yc_c00124{bottom:528.058500px;}
.yd_c00124{bottom:528.210000px;}
.ye_c00124{bottom:528.531000px;}
.yf_c00124{bottom:529.369500px;}
.y10_c00124{bottom:529.636500px;}
.y11_c00124{bottom:530.173500px;}
.y4_c00124{bottom:542.701500px;}
.y5_c00124{bottom:543.210000px;}
.y6_c00124{bottom:544.549500px;}
.y7_c00124{bottom:544.722000px;}
.y8_c00124{bottom:545.443500px;}
.y9_c00124{bottom:546.066000px;}
.y3_c00124{bottom:562.132500px;}
.y2_c00124{bottom:580.032000px;}
.y1_c00124{bottom:598.059000px;}
.hb_c00124{height:57.750000px;}
.h9_c00124{height:59.850000px;}
.ha_c00124{height:60.900000px;}
.h8_c00124{height:61.950000px;}
.h6_c00124{height:63.000000px;}
.hc_c00124{height:64.050000px;}
.h2_c00124{height:65.100000px;}
.h3_c00124{height:66.150000px;}
.h5_c00124{height:67.200000px;}
.h7_c00124{height:68.250000px;}
.h4_c00124{height:69.300000px;}
.hd_c00124{height:70.350000px;}
.h0_c00124{height:632.850000px;}
.h1_c00124{height:633.000000px;}
.w0_c00124{width:371.790000px;}
.w1_c00124{width:372.000000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:32.940000px;}
.x2b_c00124{left:34.509000px;}
.x6a_c00124{left:35.823000px;}
.x47_c00124{left:38.983500px;}
.x7b_c00124{left:40.881000px;}
.x5e_c00124{left:43.467000px;}
.x48_c00124{left:51.921000px;}
.x76_c00124{left:53.455500px;}
.x64_c00124{left:56.157000px;}
.x2c_c00124{left:57.670500px;}
.x41_c00124{left:58.782000px;}
.x9_c00124{left:60.480000px;}
.x78_c00124{left:62.635500px;}
.x1f_c00124{left:63.868500px;}
.x6b_c00124{left:68.184000px;}
.x11_c00124{left:72.543000px;}
.x3f_c00124{left:73.980000px;}
.x67_c00124{left:75.154500px;}
.x1b_c00124{left:77.704500px;}
.x65_c00124{left:79.647000px;}
.x15_c00124{left:80.856000px;}
.x73_c00124{left:82.075500px;}
.x5b_c00124{left:83.157000px;}
.x32_c00124{left:86.938500px;}
.x50_c00124{left:89.367000px;}
.xa_c00124{left:92.880000px;}
.x3a_c00124{left:94.860000px;}
.x49_c00124{left:96.507000px;}
.x33_c00124{left:99.628500px;}
.x42_c00124{left:101.613000px;}
.x3_c00124{left:102.870000px;}
.x26_c00124{left:104.611500px;}
.x6c_c00124{left:108.765000px;}
.xb_c00124{left:111.240000px;}
.x40_c00124{left:113.130000px;}
.x4c_c00124{left:115.827000px;}
.x16_c00124{left:118.365000px;}
.x27_c00124{left:120.757500px;}
.x3b_c00124{left:123.280500px;}
.x2d_c00124{left:124.626000px;}
.x4d_c00124{left:128.787000px;}
.x17_c00124{left:131.028000px;}
.x6d_c00124{left:137.346000px;}
.x6f_c00124{left:139.491000px;}
.x20_c00124{left:141.358500px;}
.x2e_c00124{left:144.801000px;}
.x1c_c00124{left:150.336000px;}
.x79_c00124{left:152.275500px;}
.xc_c00124{left:154.170000px;}
.x4a_c00124{left:156.717000px;}
.x18_c00124{left:157.834500px;}
.x7c_c00124{left:160.470000px;}
.x4_c00124{left:163.080000px;}
.x21_c00124{left:164.254500px;}
.x1_c00124{left:168.750000px;}
.x4b_c00124{left:171.526500px;}
.x55_c00124{left:173.877000px;}
.x12_c00124{left:175.612500px;}
.x34_c00124{left:177.928500px;}
.xd_c00124{left:180.630000px;}
.x53_c00124{left:183.327000px;}
.x4e_c00124{left:186.567000px;}
.x22_c00124{left:187.807500px;}
.x13_c00124{left:188.935500px;}
.x43_c00124{left:190.171500px;}
.x5f_c00124{left:195.207000px;}
.x35_c00124{left:198.718500px;}
.x4f_c00124{left:200.337000px;}
.x3c_c00124{left:202.152000px;}
.x2f_c00124{left:205.665000px;}
.x56_c00124{left:208.707000px;}
.x44_c00124{left:210.246000px;}
.x60_c00124{left:211.677000px;}
.x7d_c00124{left:215.622000px;}
.x5_c00124{left:217.620000px;}
.x5c_c00124{left:218.967000px;}
.x23_c00124{left:221.034000px;}
.x28_c00124{left:223.371000px;}
.x68_c00124{left:225.268500px;}
.x19_c00124{left:227.719500px;}
.x7f_c00124{left:229.929000px;}
.x7e_c00124{left:231.172500px;}
.x29_c00124{left:236.152500px;}
.xe_c00124{left:238.680000px;}
.x6_c00124{left:244.080000px;}
.x1a_c00124{left:249.907500px;}
.x54_c00124{left:251.637000px;}
.x57_c00124{left:253.527000px;}
.x66_c00124{left:254.607000px;}
.x61_c00124{left:255.957000px;}
.x74_c00124{left:257.035500px;}
.x1d_c00124{left:258.252000px;}
.x36_c00124{left:261.358500px;}
.x77_c00124{left:262.975500px;}
.x51_c00124{left:264.057000px;}
.x70_c00124{left:265.662000px;}
.x30_c00124{left:266.686500px;}
.x7_c00124{left:268.650000px;}
.x1e_c00124{left:271.039500px;}
.x37_c00124{left:272.158500px;}
.x71_c00124{left:274.686000px;}
.x69_c00124{left:276.795000px;}
.x24_c00124{left:279.088500px;}
.x3d_c00124{left:283.080000px;}
.x31_c00124{left:284.515500px;}
.x59_c00124{left:287.007000px;}
.x62_c00124{left:288.357000px;}
.x38_c00124{left:291.328500px;}
.x14_c00124{left:292.345500px;}
.xf_c00124{left:294.300000px;}
.x7a_c00124{left:299.965500px;}
.x75_c00124{left:301.045500px;}
.x45_c00124{left:302.986500px;}
.x63_c00124{left:304.287000px;}
.x5d_c00124{left:305.907000px;}
.x5a_c00124{left:308.607000px;}
.x3e_c00124{left:312.250500px;}
.x46_c00124{left:313.890000px;}
.x72_c00124{left:315.432000px;}
.x52_c00124{left:316.437000px;}
.x10_c00124{left:319.140000px;}
.x8_c00124{left:324.000000px;}
.x25_c00124{left:325.261500px;}
.x2a_c00124{left:326.596500px;}
.x39_c00124{left:329.128500px;}
.x58_c00124{left:330.207000px;}
.x6e_c00124{left:342.052500px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:0.000000pt;}
.fs9_c00124{font-size:51.333333pt;}
.fs7_c00124{font-size:53.200000pt;}
.fs8_c00124{font-size:54.133333pt;}
.fs6_c00124{font-size:55.066667pt;}
.fs4_c00124{font-size:56.000000pt;}
.fsa_c00124{font-size:56.933333pt;}
.fs0_c00124{font-size:57.866667pt;}
.fs1_c00124{font-size:58.800000pt;}
.fs3_c00124{font-size:59.733333pt;}
.fs5_c00124{font-size:60.666667pt;}
.fs2_c00124{font-size:61.600000pt;}
.fsb_c00124{font-size:62.533333pt;}
.y0_c00124{bottom:0.000000pt;}
.y8a_c00124{bottom:34.209333pt;}
.y89_c00124{bottom:34.917333pt;}
.y88_c00124{bottom:35.292000pt;}
.y87_c00124{bottom:35.618667pt;}
.y86_c00124{bottom:36.056000pt;}
.y85_c00124{bottom:36.614667pt;}
.y84_c00124{bottom:37.061333pt;}
.y83_c00124{bottom:37.289333pt;}
.y82_c00124{bottom:37.441333pt;}
.y81_c00124{bottom:47.846667pt;}
.y80_c00124{bottom:48.584000pt;}
.y7f_c00124{bottom:48.792000pt;}
.y7e_c00124{bottom:49.528000pt;}
.y7d_c00124{bottom:49.930667pt;}
.y7c_c00124{bottom:50.401333pt;}
.y7b_c00124{bottom:50.945333pt;}
.y7a_c00124{bottom:51.121333pt;}
.y79_c00124{bottom:66.718667pt;}
.y78_c00124{bottom:82.492000pt;}
.y77_c00124{bottom:98.812000pt;}
.y76_c00124{bottom:113.517333pt;}
.y75_c00124{bottom:126.718667pt;}
.y74_c00124{bottom:126.900000pt;}
.y73_c00124{bottom:127.370667pt;}
.y72_c00124{bottom:127.474667pt;}
.y71_c00124{bottom:128.498667pt;}
.y70_c00124{bottom:128.932000pt;}
.y6f_c00124{bottom:129.169333pt;}
.y6e_c00124{bottom:129.630667pt;}
.y6d_c00124{bottom:129.840000pt;}
.y6c_c00124{bottom:144.604000pt;}
.y6b_c00124{bottom:145.217333pt;}
.y6a_c00124{bottom:145.398667pt;}
.y69_c00124{bottom:145.789333pt;}
.y68_c00124{bottom:146.014667pt;}
.y67_c00124{bottom:146.605333pt;}
.y66_c00124{bottom:146.885333pt;}
.y65_c00124{bottom:147.282667pt;}
.y64_c00124{bottom:147.598667pt;}
.y63_c00124{bottom:159.069333pt;}
.y62_c00124{bottom:159.481333pt;}
.y61_c00124{bottom:159.848000pt;}
.y60_c00124{bottom:160.294667pt;}
.y5f_c00124{bottom:160.534667pt;}
.y5e_c00124{bottom:161.458667pt;}
.y5d_c00124{bottom:161.780000pt;}
.y5c_c00124{bottom:162.116000pt;}
.y5b_c00124{bottom:162.720000pt;}
.y5a_c00124{bottom:176.158667pt;}
.y59_c00124{bottom:191.437333pt;}
.y58_c00124{bottom:206.536000pt;}
.y57_c00124{bottom:222.752000pt;}
.y56_c00124{bottom:238.385333pt;}
.y55_c00124{bottom:254.122667pt;}
.y54_c00124{bottom:270.236000pt;}
.y53_c00124{bottom:285.630667pt;}
.y4b_c00124{bottom:299.281333pt;}
.y4c_c00124{bottom:300.004000pt;}
.y4d_c00124{bottom:300.700000pt;}
.y4e_c00124{bottom:300.870667pt;}
.y4f_c00124{bottom:301.090667pt;}
.y50_c00124{bottom:301.784000pt;}
.y51_c00124{bottom:302.014667pt;}
.y52_c00124{bottom:302.657333pt;}
.y4a_c00124{bottom:313.816000pt;}
.y43_c00124{bottom:328.562667pt;}
.y44_c00124{bottom:328.689333pt;}
.y45_c00124{bottom:329.177333pt;}
.y46_c00124{bottom:329.460000pt;}
.y47_c00124{bottom:330.198667pt;}
.y48_c00124{bottom:330.570667pt;}
.y49_c00124{bottom:331.048000pt;}
.y3c_c00124{bottom:343.682667pt;}
.y3d_c00124{bottom:344.216000pt;}
.y3e_c00124{bottom:344.821333pt;}
.y3f_c00124{bottom:345.318667pt;}
.y40_c00124{bottom:345.568000pt;}
.y41_c00124{bottom:346.722667pt;}
.y42_c00124{bottom:346.858667pt;}
.y3b_c00124{bottom:359.481333pt;}
.y33_c00124{bottom:374.880000pt;}
.y34_c00124{bottom:375.746667pt;}
.y35_c00124{bottom:376.150667pt;}
.y36_c00124{bottom:376.718667pt;}
.y37_c00124{bottom:376.972000pt;}
.y38_c00124{bottom:377.272000pt;}
.y39_c00124{bottom:378.422667pt;}
.y3a_c00124{bottom:378.837333pt;}
.y32_c00124{bottom:392.905333pt;}
.y29_c00124{bottom:406.081333pt;}
.y2a_c00124{bottom:406.410667pt;}
.y2b_c00124{bottom:407.362667pt;}
.y2c_c00124{bottom:407.649333pt;}
.y2d_c00124{bottom:407.930667pt;}
.y2e_c00124{bottom:408.514667pt;}
.y2f_c00124{bottom:409.382667pt;}
.y30_c00124{bottom:409.636000pt;}
.y31_c00124{bottom:410.238667pt;}
.y22_c00124{bottom:421.920000pt;}
.y23_c00124{bottom:422.680000pt;}
.y24_c00124{bottom:422.852000pt;}
.y25_c00124{bottom:423.169333pt;}
.y26_c00124{bottom:423.946667pt;}
.y27_c00124{bottom:424.082667pt;}
.y28_c00124{bottom:425.048000pt;}
.y1a_c00124{bottom:435.358667pt;}
.y1b_c00124{bottom:435.652000pt;}
.y1c_c00124{bottom:436.409333pt;}
.y1d_c00124{bottom:436.633333pt;}
.y1e_c00124{bottom:436.864000pt;}
.y1f_c00124{bottom:437.189333pt;}
.y20_c00124{bottom:437.757333pt;}
.y21_c00124{bottom:438.209333pt;}
.y12_c00124{bottom:451.918667pt;}
.y13_c00124{bottom:452.352000pt;}
.y14_c00124{bottom:452.633333pt;}
.y15_c00124{bottom:453.796000pt;}
.y16_c00124{bottom:454.077333pt;}
.y17_c00124{bottom:455.522667pt;}
.y18_c00124{bottom:455.726667pt;}
.y19_c00124{bottom:456.093333pt;}
.ya_c00124{bottom:468.478667pt;}
.yb_c00124{bottom:468.985333pt;}
.yc_c00124{bottom:469.385333pt;}
.yd_c00124{bottom:469.520000pt;}
.ye_c00124{bottom:469.805333pt;}
.yf_c00124{bottom:470.550667pt;}
.y10_c00124{bottom:470.788000pt;}
.y11_c00124{bottom:471.265333pt;}
.y4_c00124{bottom:482.401333pt;}
.y5_c00124{bottom:482.853333pt;}
.y6_c00124{bottom:484.044000pt;}
.y7_c00124{bottom:484.197333pt;}
.y8_c00124{bottom:484.838667pt;}
.y9_c00124{bottom:485.392000pt;}
.y3_c00124{bottom:499.673333pt;}
.y2_c00124{bottom:515.584000pt;}
.y1_c00124{bottom:531.608000pt;}
.hb_c00124{height:51.333333pt;}
.h9_c00124{height:53.200000pt;}
.ha_c00124{height:54.133333pt;}
.h8_c00124{height:55.066667pt;}
.h6_c00124{height:56.000000pt;}
.hc_c00124{height:56.933333pt;}
.h2_c00124{height:57.866667pt;}
.h3_c00124{height:58.800000pt;}
.h5_c00124{height:59.733333pt;}
.h7_c00124{height:60.666667pt;}
.h4_c00124{height:61.600000pt;}
.hd_c00124{height:62.533333pt;}
.h0_c00124{height:562.533333pt;}
.h1_c00124{height:562.666667pt;}
.w0_c00124{width:330.480000pt;}
.w1_c00124{width:330.666667pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:29.280000pt;}
.x2b_c00124{left:30.674667pt;}
.x6a_c00124{left:31.842667pt;}
.x47_c00124{left:34.652000pt;}
.x7b_c00124{left:36.338667pt;}
.x5e_c00124{left:38.637333pt;}
.x48_c00124{left:46.152000pt;}
.x76_c00124{left:47.516000pt;}
.x64_c00124{left:49.917333pt;}
.x2c_c00124{left:51.262667pt;}
.x41_c00124{left:52.250667pt;}
.x9_c00124{left:53.760000pt;}
.x78_c00124{left:55.676000pt;}
.x1f_c00124{left:56.772000pt;}
.x6b_c00124{left:60.608000pt;}
.x11_c00124{left:64.482667pt;}
.x3f_c00124{left:65.760000pt;}
.x67_c00124{left:66.804000pt;}
.x1b_c00124{left:69.070667pt;}
.x65_c00124{left:70.797333pt;}
.x15_c00124{left:71.872000pt;}
.x73_c00124{left:72.956000pt;}
.x5b_c00124{left:73.917333pt;}
.x32_c00124{left:77.278667pt;}
.x50_c00124{left:79.437333pt;}
.xa_c00124{left:82.560000pt;}
.x3a_c00124{left:84.320000pt;}
.x49_c00124{left:85.784000pt;}
.x33_c00124{left:88.558667pt;}
.x42_c00124{left:90.322667pt;}
.x3_c00124{left:91.440000pt;}
.x26_c00124{left:92.988000pt;}
.x6c_c00124{left:96.680000pt;}
.xb_c00124{left:98.880000pt;}
.x40_c00124{left:100.560000pt;}
.x4c_c00124{left:102.957333pt;}
.x16_c00124{left:105.213333pt;}
.x27_c00124{left:107.340000pt;}
.x3b_c00124{left:109.582667pt;}
.x2d_c00124{left:110.778667pt;}
.x4d_c00124{left:114.477333pt;}
.x17_c00124{left:116.469333pt;}
.x6d_c00124{left:122.085333pt;}
.x6f_c00124{left:123.992000pt;}
.x20_c00124{left:125.652000pt;}
.x2e_c00124{left:128.712000pt;}
.x1c_c00124{left:133.632000pt;}
.x79_c00124{left:135.356000pt;}
.xc_c00124{left:137.040000pt;}
.x4a_c00124{left:139.304000pt;}
.x18_c00124{left:140.297333pt;}
.x7c_c00124{left:142.640000pt;}
.x4_c00124{left:144.960000pt;}
.x21_c00124{left:146.004000pt;}
.x1_c00124{left:150.000000pt;}
.x4b_c00124{left:152.468000pt;}
.x55_c00124{left:154.557333pt;}
.x12_c00124{left:156.100000pt;}
.x34_c00124{left:158.158667pt;}
.xd_c00124{left:160.560000pt;}
.x53_c00124{left:162.957333pt;}
.x4e_c00124{left:165.837333pt;}
.x22_c00124{left:166.940000pt;}
.x13_c00124{left:167.942667pt;}
.x43_c00124{left:169.041333pt;}
.x5f_c00124{left:173.517333pt;}
.x35_c00124{left:176.638667pt;}
.x4f_c00124{left:178.077333pt;}
.x3c_c00124{left:179.690667pt;}
.x2f_c00124{left:182.813333pt;}
.x56_c00124{left:185.517333pt;}
.x44_c00124{left:186.885333pt;}
.x60_c00124{left:188.157333pt;}
.x7d_c00124{left:191.664000pt;}
.x5_c00124{left:193.440000pt;}
.x5c_c00124{left:194.637333pt;}
.x23_c00124{left:196.474667pt;}
.x28_c00124{left:198.552000pt;}
.x68_c00124{left:200.238667pt;}
.x19_c00124{left:202.417333pt;}
.x7f_c00124{left:204.381333pt;}
.x7e_c00124{left:205.486667pt;}
.x29_c00124{left:209.913333pt;}
.xe_c00124{left:212.160000pt;}
.x6_c00124{left:216.960000pt;}
.x1a_c00124{left:222.140000pt;}
.x54_c00124{left:223.677333pt;}
.x57_c00124{left:225.357333pt;}
.x66_c00124{left:226.317333pt;}
.x61_c00124{left:227.517333pt;}
.x74_c00124{left:228.476000pt;}
.x1d_c00124{left:229.557333pt;}
.x36_c00124{left:232.318667pt;}
.x77_c00124{left:233.756000pt;}
.x51_c00124{left:234.717333pt;}
.x70_c00124{left:236.144000pt;}
.x30_c00124{left:237.054667pt;}
.x7_c00124{left:238.800000pt;}
.x1e_c00124{left:240.924000pt;}
.x37_c00124{left:241.918667pt;}
.x71_c00124{left:244.165333pt;}
.x69_c00124{left:246.040000pt;}
.x24_c00124{left:248.078667pt;}
.x3d_c00124{left:251.626667pt;}
.x31_c00124{left:252.902667pt;}
.x59_c00124{left:255.117333pt;}
.x62_c00124{left:256.317333pt;}
.x38_c00124{left:258.958667pt;}
.x14_c00124{left:259.862667pt;}
.xf_c00124{left:261.600000pt;}
.x7a_c00124{left:266.636000pt;}
.x75_c00124{left:267.596000pt;}
.x45_c00124{left:269.321333pt;}
.x63_c00124{left:270.477333pt;}
.x5d_c00124{left:271.917333pt;}
.x5a_c00124{left:274.317333pt;}
.x3e_c00124{left:277.556000pt;}
.x46_c00124{left:279.013333pt;}
.x72_c00124{left:280.384000pt;}
.x52_c00124{left:281.277333pt;}
.x10_c00124{left:283.680000pt;}
.x8_c00124{left:288.000000pt;}
.x25_c00124{left:289.121333pt;}
.x2a_c00124{left:290.308000pt;}
.x39_c00124{left:292.558667pt;}
.x58_c00124{left:293.517333pt;}
.x6e_c00124{left:304.046667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00125 {
    display:none;
  }
  .loading-indicator_c00125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00125 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00125 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00125" -> "#page-container .classname_c00125")
 */
.pf_c00125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00125 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00125 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00125 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00125 {overflow:visible;}
  }
}
.c_c00125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00125 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00125:after { /* webkit #35443 */
  content: '';
}
.t_c00125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00125 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00125 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00125 { /* info for Javascript */
  display:none;
}
.l_c00125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00125:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00125 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00125.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md4_c00125{transform:matrix(0.066932,0.001339,-0.004999,0.249950,0,0);-ms-transform:matrix(0.066932,0.001339,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.066932,0.001339,-0.004999,0.249950,0,0);}
.mf8_c00125{transform:matrix(0.120731,0.002415,-0.004999,0.249950,0,0);-ms-transform:matrix(0.120731,0.002415,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.120731,0.002415,-0.004999,0.249950,0,0);}
.mc4_c00125{transform:matrix(0.137522,0.002750,-0.004999,0.249950,0,0);-ms-transform:matrix(0.137522,0.002750,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.137522,0.002750,-0.004999,0.249950,0,0);}
.mf4_c00125{transform:matrix(0.138952,0.002779,-0.004999,0.249950,0,0);-ms-transform:matrix(0.138952,0.002779,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.138952,0.002779,-0.004999,0.249950,0,0);}
.m86_c00125{transform:matrix(0.141165,0.002682,-0.004749,0.249955,0,0);-ms-transform:matrix(0.141165,0.002682,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.141165,0.002682,-0.004749,0.249955,0,0);}
.m3c_c00125{transform:matrix(0.145801,0.002624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145801,0.002624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145801,0.002624,-0.004499,0.249960,0,0);}
.m4e_c00125{transform:matrix(0.146716,0.003374,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146716,0.003374,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146716,0.003374,-0.005748,0.249934,0,0);}
.m30_c00125{transform:matrix(0.147001,0.002646,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147001,0.002646,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147001,0.002646,-0.004499,0.249960,0,0);}
.m36_c00125{transform:matrix(0.147661,0.002658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147661,0.002658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147661,0.002658,-0.004499,0.249960,0,0);}
.m3_c00125{transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);}
.m83_c00125{transform:matrix(0.153417,0.002915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.153417,0.002915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.153417,0.002915,-0.004749,0.249955,0,0);}
.m9e_c00125{transform:matrix(0.154502,0.002936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154502,0.002936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154502,0.002936,-0.004749,0.249955,0,0);}
.m60_c00125{transform:matrix(0.154661,0.003248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154661,0.003248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154661,0.003248,-0.005249,0.249945,0,0);}
.m7_c00125{transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);}
.m9c_c00125{transform:matrix(0.155307,0.002951,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155307,0.002951,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155307,0.002951,-0.004749,0.249955,0,0);}
.m50_c00125{transform:matrix(0.155384,0.003574,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155384,0.003574,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155384,0.003574,-0.005748,0.249934,0,0);}
.m39_c00125{transform:matrix(0.155815,0.002805,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155815,0.002805,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155815,0.002805,-0.004499,0.249960,0,0);}
.m65_c00125{transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);}
.m1b_c00125{transform:matrix(0.156300,0.002813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156300,0.002813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156300,0.002813,-0.004499,0.249960,0,0);}
.m25_c00125{transform:matrix(0.157075,0.002827,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157075,0.002827,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157075,0.002827,-0.004499,0.249960,0,0);}
.m81_c00125{transform:matrix(0.157332,0.002989,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157332,0.002989,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157332,0.002989,-0.004749,0.249955,0,0);}
.m37_c00125{transform:matrix(0.157874,0.002842,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157874,0.002842,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157874,0.002842,-0.004499,0.249960,0,0);}
.m6b_c00125{transform:matrix(0.158596,0.003013,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158596,0.003013,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158596,0.003013,-0.004749,0.249955,0,0);}
.mb6_c00125{transform:matrix(0.159371,0.003028,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159371,0.003028,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159371,0.003028,-0.004749,0.249955,0,0);}
.m107_c00125{transform:matrix(0.159808,0.003196,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159808,0.003196,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159808,0.003196,-0.004999,0.249950,0,0);}
.mba_c00125{transform:matrix(0.160326,0.003527,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160326,0.003527,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160326,0.003527,-0.005499,0.249940,0,0);}
.m7f_c00125{transform:matrix(0.160736,0.003054,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160736,0.003054,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160736,0.003054,-0.004749,0.249955,0,0);}
.m15_c00125{transform:matrix(0.160914,0.002896,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160914,0.002896,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160914,0.002896,-0.004499,0.249960,0,0);}
.mc1_c00125{transform:matrix(0.161393,0.003228,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161393,0.003228,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161393,0.003228,-0.004999,0.249950,0,0);}
.m8_c00125{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.m75_c00125{transform:matrix(0.161821,0.003075,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161821,0.003075,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161821,0.003075,-0.004749,0.249955,0,0);}
.m54_c00125{transform:matrix(0.162312,0.003733,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162312,0.003733,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162312,0.003733,-0.005748,0.249934,0,0);}
.md1_c00125{transform:matrix(0.162517,0.003250,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162517,0.003250,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162517,0.003250,-0.004999,0.249950,0,0);}
.m51_c00125{transform:matrix(0.162722,0.003743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162722,0.003743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162722,0.003743,-0.005748,0.249934,0,0);}
.mc0_c00125{transform:matrix(0.162737,0.003255,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162737,0.003255,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162737,0.003255,-0.004999,0.249950,0,0);}
.m62_c00125{transform:matrix(0.162844,0.003420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162844,0.003420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162844,0.003420,-0.005249,0.249945,0,0);}
.mf5_c00125{transform:matrix(0.163102,0.003262,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163102,0.003262,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163102,0.003262,-0.004999,0.249950,0,0);}
.m61_c00125{transform:matrix(0.163344,0.003430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163344,0.003430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163344,0.003430,-0.005249,0.249945,0,0);}
.m72_c00125{transform:matrix(0.163940,0.003115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163940,0.003115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163940,0.003115,-0.004749,0.249955,0,0);}
.mf9_c00125{transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);}
.m23_c00125{transform:matrix(0.164538,0.002962,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164538,0.002962,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164538,0.002962,-0.004499,0.249960,0,0);}
.ma0_c00125{transform:matrix(0.164610,0.003128,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164610,0.003128,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164610,0.003128,-0.004749,0.249955,0,0);}
.m2c_c00125{transform:matrix(0.164848,0.002967,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164848,0.002967,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164848,0.002967,-0.004499,0.249960,0,0);}
.mf3_c00125{transform:matrix(0.164857,0.003297,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164857,0.003297,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164857,0.003297,-0.004999,0.249950,0,0);}
.m9a_c00125{transform:matrix(0.165000,0.003135,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165000,0.003135,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165000,0.003135,-0.004749,0.249955,0,0);}
.m13_c00125{transform:matrix(0.165098,0.002972,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165098,0.002972,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165098,0.002972,-0.004499,0.249960,0,0);}
.mcb_c00125{transform:matrix(0.165397,0.003308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165397,0.003308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165397,0.003308,-0.004999,0.249950,0,0);}
.m70_c00125{transform:matrix(0.166040,0.003155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166040,0.003155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166040,0.003155,-0.004749,0.249955,0,0);}
.mfb_c00125{transform:matrix(0.166557,0.003331,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166557,0.003331,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166557,0.003331,-0.004999,0.249950,0,0);}
.m84_c00125{transform:matrix(0.166560,0.003165,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166560,0.003165,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166560,0.003165,-0.004749,0.249955,0,0);}
.m76_c00125{transform:matrix(0.166610,0.003166,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166610,0.003166,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166610,0.003166,-0.004749,0.249955,0,0);}
.m1c_c00125{transform:matrix(0.166683,0.003000,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166683,0.003000,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166683,0.003000,-0.004499,0.249960,0,0);}
.mf0_c00125{transform:matrix(0.166732,0.003335,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166732,0.003335,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166732,0.003335,-0.004999,0.249950,0,0);}
.m2f_c00125{transform:matrix(0.166818,0.003003,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166818,0.003003,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166818,0.003003,-0.004499,0.249960,0,0);}
.mda_c00125{transform:matrix(0.167906,0.003358,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167906,0.003358,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167906,0.003358,-0.004999,0.249950,0,0);}
.ma5_c00125{transform:matrix(0.167910,0.003190,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167910,0.003190,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167910,0.003190,-0.004749,0.249955,0,0);}
.mca_c00125{transform:matrix(0.168066,0.003361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168066,0.003361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168066,0.003361,-0.004999,0.249950,0,0);}
.ma1_c00125{transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);}
.m9_c00125{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.mfe_c00125{transform:matrix(0.170231,0.003405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170231,0.003405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170231,0.003405,-0.004999,0.249950,0,0);}
.m104_c00125{transform:matrix(0.170281,0.003406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170281,0.003406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170281,0.003406,-0.004999,0.249950,0,0);}
.mf2_c00125{transform:matrix(0.170561,0.003411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170561,0.003411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170561,0.003411,-0.004999,0.249950,0,0);}
.m6e_c00125{transform:matrix(0.171529,0.003259,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171529,0.003259,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171529,0.003259,-0.004749,0.249955,0,0);}
.m2e_c00125{transform:matrix(0.171542,0.003088,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171542,0.003088,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171542,0.003088,-0.004499,0.249960,0,0);}
.m5_c00125{transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00125{transform:matrix(0.173135,0.003463,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173135,0.003463,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173135,0.003463,-0.004999,0.249950,0,0);}
.mb9_c00125{transform:matrix(0.173423,0.003815,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173423,0.003815,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173423,0.003815,-0.005499,0.249940,0,0);}
.m66_c00125{transform:matrix(0.173492,0.003643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173492,0.003643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173492,0.003643,-0.005249,0.249945,0,0);}
.m18_c00125{transform:matrix(0.173672,0.003126,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173672,0.003126,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173672,0.003126,-0.004499,0.249960,0,0);}
.m8c_c00125{transform:matrix(0.173919,0.003304,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173919,0.003304,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173919,0.003304,-0.004749,0.249955,0,0);}
.m24_c00125{transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174352,0.003138,-0.004499,0.249960,0,0);}
.mbc_c00125{transform:matrix(0.174443,0.003838,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174443,0.003838,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174443,0.003838,-0.005499,0.249940,0,0);}
.med_c00125{transform:matrix(0.174530,0.003491,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174530,0.003491,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174530,0.003491,-0.004999,0.249950,0,0);}
.m3a_c00125{transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);}
.me4_c00125{transform:matrix(0.174615,0.003492,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174615,0.003492,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174615,0.003492,-0.004999,0.249950,0,0);}
.mce_c00125{transform:matrix(0.174935,0.003499,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174935,0.003499,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174935,0.003499,-0.004999,0.249950,0,0);}
.mdf_c00125{transform:matrix(0.175000,0.003500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175000,0.003500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175000,0.003500,-0.004999,0.249950,0,0);}
.mf7_c00125{transform:matrix(0.175060,0.003501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175060,0.003501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175060,0.003501,-0.004999,0.249950,0,0);}
.ma3_c00125{transform:matrix(0.175243,0.003330,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175243,0.003330,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175243,0.003330,-0.004749,0.249955,0,0);}
.mf6_c00125{transform:matrix(0.175510,0.003510,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175510,0.003510,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175510,0.003510,-0.004999,0.249950,0,0);}
.m12_c00125{transform:matrix(0.175951,0.003167,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175951,0.003167,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175951,0.003167,-0.004499,0.249960,0,0);}
.mee_c00125{transform:matrix(0.176100,0.003522,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176100,0.003522,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176100,0.003522,-0.004999,0.249950,0,0);}
.mb4_c00125{transform:matrix(0.176158,0.003347,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176158,0.003347,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176158,0.003347,-0.004749,0.249955,0,0);}
.m46_c00125{transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);}
.m3b_c00125{transform:matrix(0.176391,0.003175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176391,0.003175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176391,0.003175,-0.004499,0.249960,0,0);}
.mcd_c00125{transform:matrix(0.177195,0.003544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177195,0.003544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177195,0.003544,-0.004999,0.249950,0,0);}
.m20_c00125{transform:matrix(0.177361,0.003193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177361,0.003193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177361,0.003193,-0.004499,0.249960,0,0);}
.mc7_c00125{transform:matrix(0.177370,0.003547,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177370,0.003547,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177370,0.003547,-0.004999,0.249950,0,0);}
.ma6_c00125{transform:matrix(0.177528,0.003373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177528,0.003373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177528,0.003373,-0.004749,0.249955,0,0);}
.m17_c00125{transform:matrix(0.177606,0.003197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177606,0.003197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177606,0.003197,-0.004499,0.249960,0,0);}
.m1a_c00125{transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);}
.mdc_c00125{transform:matrix(0.178174,0.003563,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178174,0.003563,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178174,0.003563,-0.004999,0.249950,0,0);}
.m9b_c00125{transform:matrix(0.178318,0.003388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178318,0.003388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178318,0.003388,-0.004749,0.249955,0,0);}
.mfa_c00125{transform:matrix(0.178464,0.003569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178464,0.003569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178464,0.003569,-0.004999,0.249950,0,0);}
.m71_c00125{transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);}
.m41_c00125{transform:matrix(0.178786,0.003218,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178786,0.003218,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178786,0.003218,-0.004499,0.249960,0,0);}
.mb2_c00125{transform:matrix(0.179153,0.003404,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179153,0.003404,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179153,0.003404,-0.004749,0.249955,0,0);}
.m6d_c00125{transform:matrix(0.179308,0.003407,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179308,0.003407,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179308,0.003407,-0.004749,0.249955,0,0);}
.mb8_c00125{transform:matrix(0.179347,0.003946,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179347,0.003946,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179347,0.003946,-0.005499,0.249940,0,0);}
.m38_c00125{transform:matrix(0.179501,0.003231,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179501,0.003231,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179501,0.003231,-0.004499,0.249960,0,0);}
.m42_c00125{transform:matrix(0.179991,0.003240,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179991,0.003240,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179991,0.003240,-0.004499,0.249960,0,0);}
.m33_c00125{transform:matrix(0.180211,0.003244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180211,0.003244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180211,0.003244,-0.004499,0.249960,0,0);}
.m3e_c00125{transform:matrix(0.180551,0.003250,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180551,0.003250,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180551,0.003250,-0.004499,0.249960,0,0);}
.mef_c00125{transform:matrix(0.180614,0.003612,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180614,0.003612,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180614,0.003612,-0.004999,0.249950,0,0);}
.m99_c00125{transform:matrix(0.180692,0.003433,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180692,0.003433,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180692,0.003433,-0.004749,0.249955,0,0);}
.md5_c00125{transform:matrix(0.180779,0.003616,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180779,0.003616,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180779,0.003616,-0.004999,0.249950,0,0);}
.mb3_c00125{transform:matrix(0.180872,0.003437,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180872,0.003437,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180872,0.003437,-0.004749,0.249955,0,0);}
.mde_c00125{transform:matrix(0.180964,0.003619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180964,0.003619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180964,0.003619,-0.004999,0.249950,0,0);}
.m16_c00125{transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);}
.m28_c00125{transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);}
.m82_c00125{transform:matrix(0.182272,0.003463,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182272,0.003463,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182272,0.003463,-0.004749,0.249955,0,0);}
.m7e_c00125{transform:matrix(0.182357,0.003465,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182357,0.003465,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182357,0.003465,-0.004749,0.249955,0,0);}
.m64_c00125{transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);}
.m6c_c00125{transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183122,0.003479,-0.004749,0.249955,0,0);}
.md_c00125{transform:matrix(0.184032,0.002576,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184032,0.002576,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184032,0.002576,-0.003500,0.249976,0,0);}
.md9_c00125{transform:matrix(0.184068,0.003681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184068,0.003681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184068,0.003681,-0.004999,0.249950,0,0);}
.m1f_c00125{transform:matrix(0.184735,0.003325,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184735,0.003325,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184735,0.003325,-0.004499,0.249960,0,0);}
.m73_c00125{transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184827,0.003512,-0.004749,0.249955,0,0);}
.mc2_c00125{transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);}
.m21_c00125{transform:matrix(0.185085,0.003332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185085,0.003332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185085,0.003332,-0.004499,0.249960,0,0);}
.m1_c00125{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.185395,0.003337,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185395,0.003337,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185395,0.003337,-0.004499,0.249960,0,0);}
.m85_c00125{transform:matrix(0.185427,0.003523,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185427,0.003523,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185427,0.003523,-0.004749,0.249955,0,0);}
.m27_c00125{transform:matrix(0.185625,0.003341,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185625,0.003341,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185625,0.003341,-0.004499,0.249960,0,0);}
.m34_c00125{transform:matrix(0.185650,0.003342,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185650,0.003342,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185650,0.003342,-0.004499,0.249960,0,0);}
.m22_c00125{transform:matrix(0.186400,0.003355,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186400,0.003355,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186400,0.003355,-0.004499,0.249960,0,0);}
.m2b_c00125{transform:matrix(0.186420,0.003356,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186420,0.003356,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186420,0.003356,-0.004499,0.249960,0,0);}
.m11_c00125{transform:matrix(0.186585,0.003359,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186585,0.003359,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186585,0.003359,-0.004499,0.249960,0,0);}
.me5_c00125{transform:matrix(0.187138,0.003743,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187138,0.003743,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187138,0.003743,-0.004999,0.249950,0,0);}
.mad_c00125{transform:matrix(0.187301,0.003559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187301,0.003559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187301,0.003559,-0.004749,0.249955,0,0);}
.mbf_c00125{transform:matrix(0.187907,0.003758,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187907,0.003758,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187907,0.003758,-0.004999,0.249950,0,0);}
.m8a_c00125{transform:matrix(0.187926,0.003571,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187926,0.003571,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187926,0.003571,-0.004749,0.249955,0,0);}
.m68_c00125{transform:matrix(0.188079,0.003950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188079,0.003950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188079,0.003950,-0.005249,0.249945,0,0);}
.m52_c00125{transform:matrix(0.188270,0.004330,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188270,0.004330,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188270,0.004330,-0.005748,0.249934,0,0);}
.m6a_c00125{transform:matrix(0.188316,0.003578,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188316,0.003578,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188316,0.003578,-0.004749,0.249955,0,0);}
.m6f_c00125{transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);}
.m3f_c00125{transform:matrix(0.188899,0.003400,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188899,0.003400,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188899,0.003400,-0.004499,0.249960,0,0);}
.mfc_c00125{transform:matrix(0.189887,0.003798,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189887,0.003798,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189887,0.003798,-0.004999,0.249950,0,0);}
.m105_c00125{transform:matrix(0.190352,0.003807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190352,0.003807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190352,0.003807,-0.004999,0.249950,0,0);}
.me9_c00125{transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);}
.mb5_c00125{transform:matrix(0.190771,0.003625,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190771,0.003625,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190771,0.003625,-0.004749,0.249955,0,0);}
.md7_c00125{transform:matrix(0.190967,0.003819,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190967,0.003819,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190967,0.003819,-0.004999,0.249950,0,0);}
.m26_c00125{transform:matrix(0.191114,0.003440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191114,0.003440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191114,0.003440,-0.004499,0.249960,0,0);}
.m19_c00125{transform:matrix(0.191184,0.003441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191184,0.003441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191184,0.003441,-0.004499,0.249960,0,0);}
.mb7_c00125{transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);}
.m2d_c00125{transform:matrix(0.191569,0.003448,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191569,0.003448,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191569,0.003448,-0.004499,0.249960,0,0);}
.mdb_c00125{transform:matrix(0.192297,0.003846,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192297,0.003846,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192297,0.003846,-0.004999,0.249950,0,0);}
.md6_c00125{transform:matrix(0.192526,0.003851,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192526,0.003851,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192526,0.003851,-0.004999,0.249950,0,0);}
.mf1_c00125{transform:matrix(0.193321,0.003866,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193321,0.003866,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193321,0.003866,-0.004999,0.249950,0,0);}
.ma4_c00125{transform:matrix(0.193490,0.003676,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193490,0.003676,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193490,0.003676,-0.004749,0.249955,0,0);}
.m80_c00125{transform:matrix(0.193820,0.003683,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193820,0.003683,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193820,0.003683,-0.004749,0.249955,0,0);}
.m89_c00125{transform:matrix(0.193980,0.003686,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193980,0.003686,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193980,0.003686,-0.004749,0.249955,0,0);}
.m29_c00125{transform:matrix(0.193999,0.003492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193999,0.003492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193999,0.003492,-0.004499,0.249960,0,0);}
.m95_c00125{transform:matrix(0.194585,0.003697,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194585,0.003697,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194585,0.003697,-0.004749,0.249955,0,0);}
.md2_c00125{transform:matrix(0.194761,0.003895,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194761,0.003895,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194761,0.003895,-0.004999,0.249950,0,0);}
.m1e_c00125{transform:matrix(0.194983,0.003510,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194983,0.003510,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194983,0.003510,-0.004499,0.249960,0,0);}
.m4f_c00125{transform:matrix(0.196423,0.004518,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196423,0.004518,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196423,0.004518,-0.005748,0.249934,0,0);}
.mb0_c00125{transform:matrix(0.196630,0.003736,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196630,0.003736,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196630,0.003736,-0.004749,0.249955,0,0);}
.mc5_c00125{transform:matrix(0.196656,0.003933,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196656,0.003933,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196656,0.003933,-0.004999,0.249950,0,0);}
.m96_c00125{transform:matrix(0.196690,0.003737,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196690,0.003737,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196690,0.003737,-0.004749,0.249955,0,0);}
.m7b_c00125{transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);}
.m49_c00125{transform:matrix(0.197578,0.005137,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197578,0.005137,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197578,0.005137,-0.006498,0.249916,0,0);}
.m3d_c00125{transform:matrix(0.197603,0.003557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197603,0.003557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197603,0.003557,-0.004499,0.249960,0,0);}
.m94_c00125{transform:matrix(0.197989,0.003762,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197989,0.003762,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197989,0.003762,-0.004749,0.249955,0,0);}
.me2_c00125{transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);}
.m58_c00125{transform:matrix(0.199087,0.004579,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199087,0.004579,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199087,0.004579,-0.005748,0.249934,0,0);}
.me3_c00125{transform:matrix(0.199110,0.003982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199110,0.003982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199110,0.003982,-0.004999,0.249950,0,0);}
.ma2_c00125{transform:matrix(0.199184,0.003784,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199184,0.003784,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199184,0.003784,-0.004749,0.249955,0,0);}
.m78_c00125{transform:matrix(0.199319,0.003787,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199319,0.003787,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199319,0.003787,-0.004749,0.249955,0,0);}
.ma7_c00125{transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199554,0.003792,-0.004749,0.249955,0,0);}
.m5d_c00125{transform:matrix(0.199647,0.004592,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199647,0.004592,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199647,0.004592,-0.005748,0.249934,0,0);}
.m79_c00125{transform:matrix(0.199674,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199674,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199674,0.003794,-0.004749,0.249955,0,0);}
.mec_c00125{transform:matrix(0.200180,0.004004,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200180,0.004004,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200180,0.004004,-0.004999,0.249950,0,0);}
.m35_c00125{transform:matrix(0.200388,0.003607,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200388,0.003607,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200388,0.003607,-0.004499,0.249960,0,0);}
.m103_c00125{transform:matrix(0.200450,0.004009,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200450,0.004009,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200450,0.004009,-0.004999,0.249950,0,0);}
.mea_c00125{transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200470,0.004009,-0.004999,0.249950,0,0);}
.m9d_c00125{transform:matrix(0.200509,0.003810,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200509,0.003810,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200509,0.003810,-0.004749,0.249955,0,0);}
.mcf_c00125{transform:matrix(0.201150,0.004023,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201150,0.004023,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201150,0.004023,-0.004999,0.249950,0,0);}
.m9f_c00125{transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);}
.md8_c00125{transform:matrix(0.201580,0.004032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201580,0.004032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201580,0.004032,-0.004999,0.249950,0,0);}
.m63_c00125{transform:matrix(0.201686,0.004235,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201686,0.004235,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201686,0.004235,-0.005249,0.249945,0,0);}
.m14_c00125{transform:matrix(0.202317,0.003642,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202317,0.003642,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202317,0.003642,-0.004499,0.249960,0,0);}
.ma8_c00125{transform:matrix(0.202328,0.003844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202328,0.003844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202328,0.003844,-0.004749,0.249955,0,0);}
.m74_c00125{transform:matrix(0.202358,0.003845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202358,0.003845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202358,0.003845,-0.004749,0.249955,0,0);}
.m87_c00125{transform:matrix(0.202373,0.003845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202373,0.003845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202373,0.003845,-0.004749,0.249955,0,0);}
.m55_c00125{transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);}
.ma9_c00125{transform:matrix(0.202613,0.003850,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202613,0.003850,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202613,0.003850,-0.004749,0.249955,0,0);}
.me7_c00125{transform:matrix(0.202634,0.004053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202634,0.004053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202634,0.004053,-0.004999,0.249950,0,0);}
.m5c_c00125{transform:matrix(0.202711,0.004662,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202711,0.004662,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202711,0.004662,-0.005748,0.249934,0,0);}
.m2a_c00125{transform:matrix(0.202817,0.003651,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202817,0.003651,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202817,0.003651,-0.004499,0.249960,0,0);}
.m8b_c00125{transform:matrix(0.202853,0.003854,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202853,0.003854,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202853,0.003854,-0.004749,0.249955,0,0);}
.mb1_c00125{transform:matrix(0.202953,0.003856,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202953,0.003856,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202953,0.003856,-0.004749,0.249955,0,0);}
.m32_c00125{transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203162,0.003657,-0.004499,0.249960,0,0);}
.m10_c00125{transform:matrix(0.203465,0.002849,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203465,0.002849,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203465,0.002849,-0.003500,0.249976,0,0);}
.m45_c00125{transform:matrix(0.203622,0.003665,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203622,0.003665,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203622,0.003665,-0.004499,0.249960,0,0);}
.m5b_c00125{transform:matrix(0.203866,0.004689,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203866,0.004689,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203866,0.004689,-0.005748,0.249934,0,0);}
.mcc_c00125{transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203874,0.004077,-0.004999,0.249950,0,0);}
.mdd_c00125{transform:matrix(0.204679,0.004094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204679,0.004094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204679,0.004094,-0.004999,0.249950,0,0);}
.me0_c00125{transform:matrix(0.205524,0.004110,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205524,0.004110,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205524,0.004110,-0.004999,0.249950,0,0);}
.mc8_c00125{transform:matrix(0.205664,0.004113,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205664,0.004113,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205664,0.004113,-0.004999,0.249950,0,0);}
.mbb_c00125{transform:matrix(0.205670,0.004525,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205670,0.004525,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205670,0.004525,-0.005499,0.249940,0,0);}
.m31_c00125{transform:matrix(0.205817,0.003705,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205817,0.003705,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205817,0.003705,-0.004499,0.249960,0,0);}
.m59_c00125{transform:matrix(0.206170,0.004742,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206170,0.004742,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206170,0.004742,-0.005748,0.249934,0,0);}
.m69_c00125{transform:matrix(0.206793,0.003929,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206793,0.003929,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206793,0.003929,-0.004749,0.249955,0,0);}
.m5f_c00125{transform:matrix(0.207385,0.004770,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207385,0.004770,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207385,0.004770,-0.005748,0.249934,0,0);}
.m7d_c00125{transform:matrix(0.207957,0.003951,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207957,0.003951,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207957,0.003951,-0.004749,0.249955,0,0);}
.m43_c00125{transform:matrix(0.208061,0.003745,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208061,0.003745,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208061,0.003745,-0.004499,0.249960,0,0);}
.mac_c00125{transform:matrix(0.208262,0.003957,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208262,0.003957,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208262,0.003957,-0.004749,0.249955,0,0);}
.m0_c00125{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.208796,0.003758,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208796,0.003758,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208796,0.003758,-0.004499,0.249960,0,0);}
.mc3_c00125{transform:matrix(0.208873,0.004177,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208873,0.004177,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208873,0.004177,-0.004999,0.249950,0,0);}
.mc9_c00125{transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209633,0.004193,-0.004999,0.249950,0,0);}
.m6_c00125{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{transform:matrix(0.210014,0.004830,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210014,0.004830,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210014,0.004830,-0.005748,0.249934,0,0);}
.md0_c00125{transform:matrix(0.210668,0.004213,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210668,0.004213,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210668,0.004213,-0.004999,0.249950,0,0);}
.mff_c00125{transform:matrix(0.210688,0.004214,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210688,0.004214,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210688,0.004214,-0.004999,0.249950,0,0);}
.mbe_c00125{transform:matrix(0.210863,0.004217,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210863,0.004217,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210863,0.004217,-0.004999,0.249950,0,0);}
.m97_c00125{transform:matrix(0.211392,0.004016,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211392,0.004016,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211392,0.004016,-0.004749,0.249955,0,0);}
.m67_c00125{transform:matrix(0.211648,0.004445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211648,0.004445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211648,0.004445,-0.005249,0.249945,0,0);}
.m5a_c00125{transform:matrix(0.211699,0.004869,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211699,0.004869,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211699,0.004869,-0.005748,0.249934,0,0);}
.me8_c00125{transform:matrix(0.212003,0.004240,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212003,0.004240,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212003,0.004240,-0.004999,0.249950,0,0);}
.m5e_c00125{transform:matrix(0.213399,0.004908,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213399,0.004908,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213399,0.004908,-0.005748,0.249934,0,0);}
.mf_c00125{transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);}
.m48_c00125{transform:matrix(0.215757,0.005610,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215757,0.005610,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215757,0.005610,-0.006498,0.249916,0,0);}
.meb_c00125{transform:matrix(0.217791,0.004356,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217791,0.004356,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217791,0.004356,-0.004999,0.249950,0,0);}
.m56_c00125{transform:matrix(0.217802,0.005009,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217802,0.005009,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217802,0.005009,-0.005748,0.249934,0,0);}
.maf_c00125{transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);}
.m90_c00125{transform:matrix(0.218256,0.004147,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218256,0.004147,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218256,0.004147,-0.004749,0.249955,0,0);}
.m7a_c00125{transform:matrix(0.218841,0.004158,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218841,0.004158,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218841,0.004158,-0.004749,0.249955,0,0);}
.maa_c00125{transform:matrix(0.218865,0.004158,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218865,0.004158,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218865,0.004158,-0.004749,0.249955,0,0);}
.mbd_c00125{transform:matrix(0.219597,0.004831,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219597,0.004831,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219597,0.004831,-0.005499,0.249940,0,0);}
.m8d_c00125{transform:matrix(0.221370,0.004206,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221370,0.004206,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221370,0.004206,-0.004749,0.249955,0,0);}
.m8f_c00125{transform:matrix(0.222515,0.004228,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222515,0.004228,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222515,0.004228,-0.004749,0.249955,0,0);}
.mab_c00125{transform:matrix(0.223225,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223225,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223225,0.004241,-0.004749,0.249955,0,0);}
.mfd_c00125{transform:matrix(0.223255,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223255,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223255,0.004465,-0.004999,0.249950,0,0);}
.m7c_c00125{transform:matrix(0.224295,0.004262,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224295,0.004262,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224295,0.004262,-0.004749,0.249955,0,0);}
.m106_c00125{transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224315,0.004486,-0.004999,0.249950,0,0);}
.ma_c00125{transform:matrix(0.224693,0.003146,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224693,0.003146,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224693,0.003146,-0.003500,0.249976,0,0);}
.m8e_c00125{transform:matrix(0.226779,0.004309,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226779,0.004309,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226779,0.004309,-0.004749,0.249955,0,0);}
.m91_c00125{transform:matrix(0.227499,0.004322,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227499,0.004322,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227499,0.004322,-0.004749,0.249955,0,0);}
.m4a_c00125{transform:matrix(0.228663,0.005945,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228663,0.005945,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228663,0.005945,-0.006498,0.249916,0,0);}
.me6_c00125{transform:matrix(0.228849,0.004577,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228849,0.004577,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228849,0.004577,-0.004999,0.249950,0,0);}
.mae_c00125{transform:matrix(0.230753,0.004384,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230753,0.004384,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230753,0.004384,-0.004749,0.249955,0,0);}
.m102_c00125{transform:matrix(0.230949,0.004619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230949,0.004619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230949,0.004619,-0.004999,0.249950,0,0);}
.m100_c00125{transform:matrix(0.232424,0.004648,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232424,0.004648,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232424,0.004648,-0.004999,0.249950,0,0);}
.m44_c00125{transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);}
.md3_c00125{transform:matrix(0.233563,0.004671,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233563,0.004671,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233563,0.004671,-0.004999,0.249950,0,0);}
.mc_c00125{transform:matrix(0.238232,0.003335,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238232,0.003335,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238232,0.003335,-0.003500,0.249976,0,0);}
.m47_c00125{transform:matrix(0.239474,0.006226,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239474,0.006226,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239474,0.006226,-0.006498,0.249916,0,0);}
.m57_c00125{transform:matrix(0.240486,0.005531,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240486,0.005531,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240486,0.005531,-0.005748,0.249934,0,0);}
.m77_c00125{transform:matrix(0.240522,0.004570,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240522,0.004570,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240522,0.004570,-0.004749,0.249955,0,0);}
.m4c_c00125{transform:matrix(0.240804,0.006261,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240804,0.006261,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240804,0.006261,-0.006498,0.249916,0,0);}
.m4d_c00125{transform:matrix(0.242333,0.006301,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242333,0.006301,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242333,0.006301,-0.006498,0.249916,0,0);}
.mb_c00125{transform:matrix(0.251580,0.003522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251580,0.003522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251580,0.003522,-0.003500,0.249976,0,0);}
.m4b_c00125{transform:matrix(0.255734,0.006649,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255734,0.006649,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255734,0.006649,-0.006498,0.249916,0,0);}
.m92_c00125{transform:matrix(0.262068,0.004979,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262068,0.004979,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262068,0.004979,-0.004749,0.249955,0,0);}
.me_c00125{transform:matrix(0.267054,0.003739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267054,0.003739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267054,0.003739,-0.003500,0.249976,0,0);}
.m98_c00125{transform:matrix(0.268347,0.005099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268347,0.005099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268347,0.005099,-0.004749,0.249955,0,0);}
.me1_c00125{transform:matrix(0.270071,0.005401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270071,0.005401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270071,0.005401,-0.004999,0.249950,0,0);}
.m93_c00125{transform:matrix(0.357735,0.006797,-0.004749,0.249955,0,0);-ms-transform:matrix(0.357735,0.006797,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.357735,0.006797,-0.004749,0.249955,0,0);}
.m88_c00125{transform:matrix(0.430277,0.008175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.430277,0.008175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.430277,0.008175,-0.004749,0.249955,0,0);}
.m101_c00125{transform:matrix(0.457943,0.009159,-0.004999,0.249950,0,0);-ms-transform:matrix(0.457943,0.009159,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.457943,0.009159,-0.004999,0.249950,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:0.000000px;}
._0_c00125{width:18.359029px;}
.fc0_c00125{color:transparent;}
.fs9_c00125{font-size:55.668807px;}
.fsb_c00125{font-size:57.765273px;}
.fs8_c00125{font-size:58.809525px;}
.fs10_c00125{font-size:58.810612px;}
.fs2_c00125{font-size:59.855865px;}
.fs13_c00125{font-size:59.860802px;}
.fs0_c00125{font-size:60.900000px;}
.fs19_c00125{font-size:61.962389px;}
.fs11_c00125{font-size:63.011370px;}
.fs18_c00125{font-size:63.012599px;}
.fs5_c00125{font-size:64.060375px;}
.fse_c00125{font-size:64.061560px;}
.fs16_c00125{font-size:64.062809px;}
.fs12_c00125{font-size:66.161939px;}
.fs17_c00125{font-size:66.163229px;}
.fsc_c00125{font-size:66.164584px;}
.fsa_c00125{font-size:66.167494px;}
.fs7_c00125{font-size:67.210886px;}
.fsf_c00125{font-size:68.262318px;}
.fs15_c00125{font-size:68.263649px;}
.fs6_c00125{font-size:69.311226px;}
.fs3_c00125{font-size:70.361396px;}
.fsd_c00125{font-size:70.362697px;}
.fs4_c00125{font-size:71.411566px;}
.fs14_c00125{font-size:71.417277px;}
.fs1_c00125{font-size:72.450000px;}
.y0_c00125{bottom:0.000000px;}
.y10a_c00125{bottom:34.444620px;}
.y109_c00125{bottom:34.742730px;}
.y108_c00125{bottom:35.266170px;}
.y107_c00125{bottom:35.888850px;}
.y106_c00125{bottom:36.764340px;}
.y105_c00125{bottom:37.046730px;}
.y104_c00125{bottom:38.949360px;}
.y103_c00125{bottom:39.220920px;}
.y102_c00125{bottom:40.414890px;}
.y101_c00125{bottom:40.754820px;}
.y100_c00125{bottom:53.314710px;}
.yff_c00125{bottom:54.622680px;}
.yfe_c00125{bottom:54.977820px;}
.yfd_c00125{bottom:55.463580px;}
.yfc_c00125{bottom:55.798680px;}
.yfb_c00125{bottom:56.211540px;}
.yfa_c00125{bottom:57.580980px;}
.yf9_c00125{bottom:58.306290px;}
.yf8_c00125{bottom:70.833360px;}
.yf7_c00125{bottom:71.171280px;}
.yf6_c00125{bottom:71.731710px;}
.yf5_c00125{bottom:72.947790px;}
.yf4_c00125{bottom:73.227990px;}
.yf3_c00125{bottom:73.923330px;}
.yf2_c00125{bottom:75.193260px;}
.yf1_c00125{bottom:75.707490px;}
.yf0_c00125{bottom:76.126380px;}
.yef_c00125{bottom:88.668270px;}
.yee_c00125{bottom:89.788050px;}
.yed_c00125{bottom:90.137070px;}
.yec_c00125{bottom:90.923070px;}
.yeb_c00125{bottom:91.964190px;}
.yea_c00125{bottom:92.363250px;}
.ye9_c00125{bottom:93.139680px;}
.ye8_c00125{bottom:105.469200px;}
.ye7_c00125{bottom:106.241910px;}
.ye6_c00125{bottom:106.816200px;}
.ye5_c00125{bottom:107.280930px;}
.ye4_c00125{bottom:107.856930px;}
.ye3_c00125{bottom:107.991390px;}
.ye2_c00125{bottom:108.774180px;}
.ye1_c00125{bottom:109.135890px;}
.ye0_c00125{bottom:109.601910px;}
.ydf_c00125{bottom:110.151450px;}
.yde_c00125{bottom:122.688570px;}
.ydd_c00125{bottom:122.997780px;}
.ydc_c00125{bottom:123.469920px;}
.ydb_c00125{bottom:123.710040px;}
.yda_c00125{bottom:124.427610px;}
.yd9_c00125{bottom:124.789740px;}
.yd8_c00125{bottom:125.676150px;}
.yd7_c00125{bottom:125.810730px;}
.yd6_c00125{bottom:126.510810px;}
.yd5_c00125{bottom:126.832650px;}
.yd4_c00125{bottom:127.218780px;}
.yd3_c00125{bottom:127.438680px;}
.yd2_c00125{bottom:140.807910px;}
.yd1_c00125{bottom:141.561810px;}
.yd0_c00125{bottom:141.884610px;}
.ycf_c00125{bottom:142.326450px;}
.yce_c00125{bottom:142.903020px;}
.ycd_c00125{bottom:143.157750px;}
.ycc_c00125{bottom:143.395110px;}
.ycb_c00125{bottom:144.145260px;}
.yca_c00125{bottom:144.440250px;}
.yc9_c00125{bottom:144.719310px;}
.yc8_c00125{bottom:157.445220px;}
.yc7_c00125{bottom:157.823250px;}
.yc6_c00125{bottom:159.262830px;}
.yc5_c00125{bottom:159.678540px;}
.yc4_c00125{bottom:160.428120px;}
.yc3_c00125{bottom:160.764150px;}
.yc2_c00125{bottom:161.038950px;}
.yc1_c00125{bottom:162.546000px;}
.yc0_c00125{bottom:174.917568px;}
.ybf_c00125{bottom:175.592088px;}
.ybe_c00125{bottom:177.199155px;}
.ybd_c00125{bottom:178.118073px;}
.ybc_c00125{bottom:179.551890px;}
.ybb_c00125{bottom:180.366000px;}
.yba_c00125{bottom:195.887007px;}
.yb9_c00125{bottom:196.303686px;}
.yb8_c00125{bottom:196.856142px;}
.yb7_c00125{bottom:198.352114px;}
.yb6_c00125{bottom:198.811006px;}
.yb5_c00125{bottom:199.240005px;}
.yb4_c00125{bottom:209.423341px;}
.yb3_c00125{bottom:209.908096px;}
.yb2_c00125{bottom:210.940219px;}
.yb1_c00125{bottom:211.284219px;}
.yb0_c00125{bottom:213.390988px;}
.yaf_c00125{bottom:213.882088px;}
.yae_c00125{bottom:215.426302px;}
.yad_c00125{bottom:216.251020px;}
.yac_c00125{bottom:227.251326px;}
.yab_c00125{bottom:227.634894px;}
.yaa_c00125{bottom:229.916904px;}
.ya9_c00125{bottom:230.869146px;}
.ya8_c00125{bottom:231.879993px;}
.ya7_c00125{bottom:232.300377px;}
.ya6_c00125{bottom:232.610644px;}
.ya5_c00125{bottom:233.380534px;}
.ya4_c00125{bottom:234.072802px;}
.ya3_c00125{bottom:245.544288px;}
.ya2_c00125{bottom:246.159342px;}
.ya1_c00125{bottom:247.339513px;}
.ya0_c00125{bottom:247.871926px;}
.y9f_c00125{bottom:249.227476px;}
.y9e_c00125{bottom:249.638683px;}
.y9d_c00125{bottom:250.097461px;}
.y9c_c00125{bottom:251.358165px;}
.y9b_c00125{bottom:262.252138px;}
.y9a_c00125{bottom:262.665771px;}
.y99_c00125{bottom:263.590489px;}
.y98_c00125{bottom:265.076005px;}
.y97_c00125{bottom:265.546795px;}
.y96_c00125{bottom:266.868028px;}
.y95_c00125{bottom:267.203424px;}
.y94_c00125{bottom:268.370548px;}
.y93_c00125{bottom:279.309660px;}
.y92_c00125{bottom:280.306840px;}
.y91_c00125{bottom:281.474934px;}
.y90_c00125{bottom:281.768199px;}
.y8f_c00125{bottom:283.375468px;}
.y8e_c00125{bottom:283.815699px;}
.y8d_c00125{bottom:284.538546px;}
.y8c_c00125{bottom:284.862712px;}
.y8b_c00125{bottom:285.383973px;}
.y8a_c00125{bottom:296.857629px;}
.y89_c00125{bottom:297.924126px;}
.y88_c00125{bottom:298.301926px;}
.y87_c00125{bottom:299.030017px;}
.y86_c00125{bottom:300.214773px;}
.y85_c00125{bottom:300.655003px;}
.y84_c00125{bottom:301.948783px;}
.y83_c00125{bottom:302.317845px;}
.y82_c00125{bottom:302.933777px;}
.y81_c00125{bottom:314.620950px;}
.y80_c00125{bottom:315.115396px;}
.y7f_c00125{bottom:316.244196px;}
.y7e_c00125{bottom:317.357776px;}
.y7d_c00125{bottom:317.762961px;}
.y7c_c00125{bottom:318.532432px;}
.y7b_c00125{bottom:318.963181px;}
.y7a_c00125{bottom:319.948341px;}
.y79_c00125{bottom:331.861555px;}
.y78_c00125{bottom:332.305611px;}
.y77_c00125{bottom:333.064033px;}
.y76_c00125{bottom:334.201624px;}
.y75_c00125{bottom:334.634479px;}
.y74_c00125{bottom:335.091313px;}
.y73_c00125{bottom:336.052882px;}
.y72_c00125{bottom:336.961135px;}
.y71_c00125{bottom:350.236746px;}
.y70_c00125{bottom:351.345510px;}
.y6f_c00125{bottom:351.699309px;}
.y6e_c00125{bottom:352.607547px;}
.y6d_c00125{bottom:353.095011px;}
.y6c_c00125{bottom:354.402334px;}
.y6b_c00125{bottom:355.054500px;}
.y6a_c00125{bottom:366.913980px;}
.y69_c00125{bottom:367.195622px;}
.y68_c00125{bottom:368.258305px;}
.y67_c00125{bottom:368.716158px;}
.y66_c00125{bottom:369.322943px;}
.y65_c00125{bottom:370.691743px;}
.y64_c00125{bottom:371.377782px;}
.y63_c00125{bottom:371.920558px;}
.y62_c00125{bottom:372.334500px;}
.y61_c00125{bottom:384.060209px;}
.y60_c00125{bottom:385.678553px;}
.y5f_c00125{bottom:386.138549px;}
.y5e_c00125{bottom:386.602098px;}
.y5d_c00125{bottom:387.341918px;}
.y5c_c00125{bottom:388.495125px;}
.y5b_c00125{bottom:389.583716px;}
.y5a_c00125{bottom:390.037053px;}
.y59_c00125{bottom:390.690918px;}
.y58_c00125{bottom:401.860769px;}
.y57_c00125{bottom:403.040945px;}
.y56_c00125{bottom:403.419789px;}
.y55_c00125{bottom:403.904479px;}
.y54_c00125{bottom:405.314771px;}
.y53_c00125{bottom:405.693926px;}
.y52_c00125{bottom:406.275078px;}
.y51_c00125{bottom:407.091521px;}
.y50_c00125{bottom:407.706000px;}
.y4f_c00125{bottom:418.875207px;}
.y4e_c00125{bottom:419.260800px;}
.y4d_c00125{bottom:421.205964px;}
.y4c_c00125{bottom:422.382750px;}
.y4b_c00125{bottom:423.233886px;}
.y4a_c00125{bottom:424.267308px;}
.y49_c00125{bottom:425.259000px;}
.y48_c00125{bottom:436.882926px;}
.y47_c00125{bottom:437.974044px;}
.y46_c00125{bottom:439.485549px;}
.y45_c00125{bottom:440.410365px;}
.y44_c00125{bottom:440.920560px;}
.y43_c00125{bottom:441.305907px;}
.y42_c00125{bottom:442.374543px;}
.y41_c00125{bottom:442.790082px;}
.y40_c00125{bottom:453.636525px;}
.y3f_c00125{bottom:454.967334px;}
.y3e_c00125{bottom:455.614746px;}
.y3d_c00125{bottom:456.394419px;}
.y3c_c00125{bottom:457.882659px;}
.y3b_c00125{bottom:458.352129px;}
.y3a_c00125{bottom:459.534108px;}
.y39_c00125{bottom:460.074144px;}
.y38_c00125{bottom:470.401290px;}
.y37_c00125{bottom:471.179301px;}
.y36_c00125{bottom:472.645902px;}
.y35_c00125{bottom:473.812026px;}
.y34_c00125{bottom:474.140091px;}
.y33_c00125{bottom:475.795578px;}
.y32_c00125{bottom:476.331162px;}
.y31_c00125{bottom:477.357756px;}
.y30_c00125{bottom:488.116629px;}
.y2f_c00125{bottom:489.063168px;}
.y2e_c00125{bottom:489.481296px;}
.y2d_c00125{bottom:491.144004px;}
.y2c_c00125{bottom:492.749073px;}
.y2b_c00125{bottom:494.100117px;}
.y2a_c00125{bottom:505.793841px;}
.y29_c00125{bottom:506.457726px;}
.y28_c00125{bottom:507.950475px;}
.y27_c00125{bottom:508.323210px;}
.y26_c00125{bottom:510.137208px;}
.y25_c00125{bottom:510.767619px;}
.y24_c00125{bottom:511.230000px;}
.y23_c00125{bottom:512.191260px;}
.y22_c00125{bottom:523.201101px;}
.y21_c00125{bottom:523.774662px;}
.y20_c00125{bottom:524.097204px;}
.y1f_c00125{bottom:525.555663px;}
.y1e_c00125{bottom:525.929829px;}
.y1d_c00125{bottom:526.614792px;}
.y1c_c00125{bottom:526.916760px;}
.y1b_c00125{bottom:528.122094px;}
.y1a_c00125{bottom:540.393246px;}
.y19_c00125{bottom:541.195011px;}
.y18_c00125{bottom:541.559457px;}
.y17_c00125{bottom:541.900035px;}
.y16_c00125{bottom:542.546307px;}
.y15_c00125{bottom:543.732390px;}
.y14_c00125{bottom:543.980655px;}
.y13_c00125{bottom:544.913532px;}
.y12_c00125{bottom:545.404500px;}
.y11_c00125{bottom:558.427737px;}
.y10_c00125{bottom:559.187496px;}
.yf_c00125{bottom:559.890618px;}
.ye_c00125{bottom:560.525763px;}
.yd_c00125{bottom:561.074136px;}
.yc_c00125{bottom:561.984507px;}
.yb_c00125{bottom:562.411500px;}
.ya_c00125{bottom:574.966500px;}
.y9_c00125{bottom:575.232000px;}
.y8_c00125{bottom:575.556000px;}
.y7_c00125{bottom:575.772000px;}
.y6_c00125{bottom:576.747000px;}
.y5_c00125{bottom:577.545000px;}
.y4_c00125{bottom:577.977000px;}
.y3_c00125{bottom:579.189000px;}
.y2_c00125{bottom:579.693000px;}
.y1_c00125{bottom:594.774000px;}
.hb_c00125{height:55.668807px;}
.hd_c00125{height:57.765273px;}
.ha_c00125{height:58.809525px;}
.h12_c00125{height:58.810612px;}
.h4_c00125{height:59.855865px;}
.h15_c00125{height:59.860802px;}
.h2_c00125{height:60.900000px;}
.h1c_c00125{height:61.962389px;}
.h13_c00125{height:63.011370px;}
.h1a_c00125{height:63.012599px;}
.h7_c00125{height:64.060375px;}
.h10_c00125{height:64.061560px;}
.h18_c00125{height:64.062809px;}
.h14_c00125{height:66.161939px;}
.h19_c00125{height:66.163229px;}
.he_c00125{height:66.164584px;}
.hc_c00125{height:66.167494px;}
.h1b_c00125{height:66.271250px;}
.h9_c00125{height:67.210886px;}
.h11_c00125{height:68.262318px;}
.h17_c00125{height:68.263649px;}
.h8_c00125{height:69.311226px;}
.h5_c00125{height:70.361396px;}
.hf_c00125{height:70.362697px;}
.h6_c00125{height:71.411566px;}
.h16_c00125{height:71.417277px;}
.h3_c00125{height:72.450000px;}
.h0_c00125{height:632.850000px;}
.h1_c00125{height:633.000000px;}
.w0_c00125{width:371.790000px;}
.w1_c00125{width:372.000000px;}
.x0_c00125{left:0.000000px;}
.x78_c00125{left:31.924020px;}
.x6a_c00125{left:32.946000px;}
.x64_c00125{left:34.637240px;}
.x5b_c00125{left:35.915615px;}
.x53_c00125{left:37.038144px;}
.x4b_c00125{left:38.644500px;}
.x3e_c00125{left:39.939000px;}
.x29_c00125{left:41.820159px;}
.x15_c00125{left:43.493163px;}
.x2_c00125{left:44.902500px;}
.x72_c00125{left:46.231050px;}
.x82_c00125{left:47.815800px;}
.x6f_c00125{left:51.378900px;}
.x67_c00125{left:52.918596px;}
.x7a_c00125{left:54.869190px;}
.x33_c00125{left:59.374851px;}
.x59_c00125{left:61.282007px;}
.x61_c00125{left:62.866770px;}
.x2f_c00125{left:64.792878px;}
.x3a_c00125{left:66.076500px;}
.x73_c00125{left:68.913900px;}
.xe_c00125{left:71.863500px;}
.x4c_c00125{left:72.969000px;}
.x3_c00125{left:74.571000px;}
.x5a_c00125{left:76.684908px;}
.x7b_c00125{left:81.931230px;}
.x1d_c00125{left:84.485481px;}
.x50_c00125{left:88.334031px;}
.x5e_c00125{left:90.461235px;}
.x5c_c00125{left:91.499006px;}
.x62_c00125{left:93.673265px;}
.x69_c00125{left:95.844000px;}
.x79_c00125{left:101.052660px;}
.x3f_c00125{left:102.153000px;}
.x1e_c00125{left:104.588172px;}
.x34_c00125{left:105.822666px;}
.x24_c00125{left:106.961712px;}
.x6b_c00125{left:108.298500px;}
.x16_c00125{left:110.456163px;}
.x54_c00125{left:111.559644px;}
.x83_c00125{left:114.489660px;}
.x30_c00125{left:116.203761px;}
.x75_c00125{left:118.596240px;}
.x70_c00125{left:121.117890px;}
.x35_c00125{left:122.562654px;}
.xf_c00125{left:123.690000px;}
.x65_c00125{left:125.753127px;}
.x17_c00125{left:127.232163px;}
.x5f_c00125{left:128.273357px;}
.x43_c00125{left:130.670355px;}
.x1f_c00125{left:132.025215px;}
.x10_c00125{left:137.482500px;}
.x6c_c00125{left:138.840000px;}
.xb_c00125{left:139.951500px;}
.x4d_c00125{left:141.775500px;}
.x7f_c00125{left:142.962150px;}
.x36_c00125{left:144.738156px;}
.x4_c00125{left:145.839000px;}
.x7c_c00125{left:148.804080px;}
.x55_c00125{left:152.058144px;}
.x71_c00125{left:153.975690px;}
.x68_c00125{left:161.979831px;}
.x63_c00125{left:163.296813px;}
.x18_c00125{left:165.285663px;}
.x4e_c00125{left:167.431500px;}
.x5_c00125{left:171.220500px;}
.x56_c00125{left:173.383644px;}
.x2a_c00125{left:175.898187px;}
.x1_c00125{left:179.550000px;}
.x48_c00125{left:182.359500px;}
.x25_c00125{left:183.378081px;}
.x37_c00125{left:184.946538px;}
.x19_c00125{left:186.072663px;}
.x60_c00125{left:187.218882px;}
.x2b_c00125{left:189.539202px;}
.x51_c00125{left:191.217997px;}
.x5d_c00125{left:192.806658px;}
.x6d_c00125{left:197.104500px;}
.x7d_c00125{left:200.132100px;}
.x31_c00125{left:201.291093px;}
.x11_c00125{left:203.376000px;}
.x40_c00125{left:205.222500px;}
.x80_c00125{left:207.949470px;}
.x44_c00125{left:209.517526px;}
.x20_c00125{left:210.879114px;}
.x84_c00125{left:213.836700px;}
.x4f_c00125{left:215.233500px;}
.x6_c00125{left:218.205000px;}
.x3b_c00125{left:221.962500px;}
.xc_c00125{left:224.488500px;}
.x66_c00125{left:225.680346px;}
.x21_c00125{left:227.085156px;}
.x45_c00125{left:228.823578px;}
.x57_c00125{left:231.993144px;}
.x49_c00125{left:233.056500px;}
.x32_c00125{left:235.186542px;}
.x2c_c00125{left:238.151964px;}
.x12_c00125{left:239.280000px;}
.x76_c00125{left:240.955020px;}
.x41_c00125{left:242.767500px;}
.x46_c00125{left:247.975129px;}
.x38_c00125{left:250.663125px;}
.x74_c00125{left:252.580410px;}
.x52_c00125{left:254.408194px;}
.x13_c00125{left:258.201000px;}
.x26_c00125{left:262.579815px;}
.x7e_c00125{left:264.162390px;}
.x1a_c00125{left:267.098163px;}
.x6e_c00125{left:269.083500px;}
.x7_c00125{left:275.533500px;}
.x77_c00125{left:276.872400px;}
.x14_c00125{left:278.448000px;}
.x27_c00125{left:282.474735px;}
.x4a_c00125{left:283.660500px;}
.x1b_c00125{left:285.017163px;}
.x8_c00125{left:288.214500px;}
.x22_c00125{left:292.009824px;}
.x42_c00125{left:294.079500px;}
.x81_c00125{left:295.456710px;}
.x3c_c00125{left:296.776500px;}
.x39_c00125{left:298.109859px;}
.x2d_c00125{left:299.289876px;}
.x85_c00125{left:305.688510px;}
.x9_c00125{left:307.300500px;}
.x3d_c00125{left:311.607000px;}
.x47_c00125{left:315.401577px;}
.x1c_c00125{left:316.881663px;}
.x86_c00125{left:319.243470px;}
.x23_c00125{left:320.889732px;}
.xa_c00125{left:322.960500px;}
.x58_c00125{left:325.951839px;}
.x28_c00125{left:327.557805px;}
.xd_c00125{left:328.980000px;}
.x2e_c00125{left:331.675866px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
._0_c00125{width:16.319137pt;}
.fs9_c00125{font-size:49.483384pt;}
.fsb_c00125{font-size:51.346909pt;}
.fs8_c00125{font-size:52.275133pt;}
.fs10_c00125{font-size:52.276100pt;}
.fs2_c00125{font-size:53.205213pt;}
.fs13_c00125{font-size:53.209602pt;}
.fs0_c00125{font-size:54.133333pt;}
.fs19_c00125{font-size:55.077679pt;}
.fs11_c00125{font-size:56.010107pt;}
.fs18_c00125{font-size:56.011199pt;}
.fs5_c00125{font-size:56.942556pt;}
.fse_c00125{font-size:56.943609pt;}
.fs16_c00125{font-size:56.944719pt;}
.fs12_c00125{font-size:58.810612pt;}
.fs17_c00125{font-size:58.811759pt;}
.fsc_c00125{font-size:58.812964pt;}
.fsa_c00125{font-size:58.815551pt;}
.fs7_c00125{font-size:59.743009pt;}
.fsf_c00125{font-size:60.677616pt;}
.fs15_c00125{font-size:60.678799pt;}
.fs6_c00125{font-size:61.609978pt;}
.fs3_c00125{font-size:62.543463pt;}
.fsd_c00125{font-size:62.544620pt;}
.fs4_c00125{font-size:63.476947pt;}
.fs14_c00125{font-size:63.482024pt;}
.fs1_c00125{font-size:64.400000pt;}
.y0_c00125{bottom:0.000000pt;}
.y10a_c00125{bottom:30.617440pt;}
.y109_c00125{bottom:30.882427pt;}
.y108_c00125{bottom:31.347707pt;}
.y107_c00125{bottom:31.901200pt;}
.y106_c00125{bottom:32.679413pt;}
.y105_c00125{bottom:32.930427pt;}
.y104_c00125{bottom:34.621653pt;}
.y103_c00125{bottom:34.863040pt;}
.y102_c00125{bottom:35.924347pt;}
.y101_c00125{bottom:36.226507pt;}
.y100_c00125{bottom:47.390853pt;}
.yff_c00125{bottom:48.553493pt;}
.yfe_c00125{bottom:48.869173pt;}
.yfd_c00125{bottom:49.300960pt;}
.yfc_c00125{bottom:49.598827pt;}
.yfb_c00125{bottom:49.965813pt;}
.yfa_c00125{bottom:51.183093pt;}
.yf9_c00125{bottom:51.827813pt;}
.yf8_c00125{bottom:62.962987pt;}
.yf7_c00125{bottom:63.263360pt;}
.yf6_c00125{bottom:63.761520pt;}
.yf5_c00125{bottom:64.842480pt;}
.yf4_c00125{bottom:65.091547pt;}
.yf3_c00125{bottom:65.709627pt;}
.yf2_c00125{bottom:66.838453pt;}
.yf1_c00125{bottom:67.295547pt;}
.yf0_c00125{bottom:67.667893pt;}
.yef_c00125{bottom:78.816240pt;}
.yee_c00125{bottom:79.811600pt;}
.yed_c00125{bottom:80.121840pt;}
.yec_c00125{bottom:80.820507pt;}
.yeb_c00125{bottom:81.745947pt;}
.yea_c00125{bottom:82.100667pt;}
.ye9_c00125{bottom:82.790827pt;}
.ye8_c00125{bottom:93.750400pt;}
.ye7_c00125{bottom:94.437253pt;}
.ye6_c00125{bottom:94.947733pt;}
.ye5_c00125{bottom:95.360827pt;}
.ye4_c00125{bottom:95.872827pt;}
.ye3_c00125{bottom:95.992347pt;}
.ye2_c00125{bottom:96.688160pt;}
.ye1_c00125{bottom:97.009680pt;}
.ye0_c00125{bottom:97.423920pt;}
.ydf_c00125{bottom:97.912400pt;}
.yde_c00125{bottom:109.056507pt;}
.ydd_c00125{bottom:109.331360pt;}
.ydc_c00125{bottom:109.751040pt;}
.ydb_c00125{bottom:109.964480pt;}
.yda_c00125{bottom:110.602320pt;}
.yd9_c00125{bottom:110.924213pt;}
.yd8_c00125{bottom:111.712133pt;}
.yd7_c00125{bottom:111.831760pt;}
.yd6_c00125{bottom:112.454053pt;}
.yd5_c00125{bottom:112.740133pt;}
.yd4_c00125{bottom:113.083360pt;}
.yd3_c00125{bottom:113.278827pt;}
.yd2_c00125{bottom:125.162587pt;}
.yd1_c00125{bottom:125.832720pt;}
.yd0_c00125{bottom:126.119653pt;}
.ycf_c00125{bottom:126.512400pt;}
.yce_c00125{bottom:127.024907pt;}
.ycd_c00125{bottom:127.251333pt;}
.ycc_c00125{bottom:127.462320pt;}
.ycb_c00125{bottom:128.129120pt;}
.yca_c00125{bottom:128.391333pt;}
.yc9_c00125{bottom:128.639387pt;}
.yc8_c00125{bottom:139.951307pt;}
.yc7_c00125{bottom:140.287333pt;}
.yc6_c00125{bottom:141.566960pt;}
.yc5_c00125{bottom:141.936480pt;}
.yc4_c00125{bottom:142.602773pt;}
.yc3_c00125{bottom:142.901467pt;}
.yc2_c00125{bottom:143.145733pt;}
.yc1_c00125{bottom:144.485333pt;}
.yc0_c00125{bottom:155.482283pt;}
.ybf_c00125{bottom:156.081856pt;}
.ybe_c00125{bottom:157.510360pt;}
.ybd_c00125{bottom:158.327176pt;}
.ybc_c00125{bottom:159.601680pt;}
.ybb_c00125{bottom:160.325333pt;}
.yba_c00125{bottom:174.121784pt;}
.yb9_c00125{bottom:174.492165pt;}
.yb8_c00125{bottom:174.983237pt;}
.yb7_c00125{bottom:176.312991pt;}
.yb6_c00125{bottom:176.720895pt;}
.yb5_c00125{bottom:177.102227pt;}
.yb4_c00125{bottom:186.154081pt;}
.yb3_c00125{bottom:186.584975pt;}
.yb2_c00125{bottom:187.502417pt;}
.yb1_c00125{bottom:187.808195pt;}
.yb0_c00125{bottom:189.680879pt;}
.yaf_c00125{bottom:190.117412pt;}
.yae_c00125{bottom:191.490047pt;}
.yad_c00125{bottom:192.223129pt;}
.yac_c00125{bottom:202.001179pt;}
.yab_c00125{bottom:202.342128pt;}
.yaa_c00125{bottom:204.370581pt;}
.ya9_c00125{bottom:205.217019pt;}
.ya8_c00125{bottom:206.115549pt;}
.ya7_c00125{bottom:206.489224pt;}
.ya6_c00125{bottom:206.765017pt;}
.ya5_c00125{bottom:207.449364pt;}
.ya4_c00125{bottom:208.064713pt;}
.ya3_c00125{bottom:218.261589pt;}
.ya2_c00125{bottom:218.808304pt;}
.ya1_c00125{bottom:219.857345pt;}
.ya0_c00125{bottom:220.330601pt;}
.y9f_c00125{bottom:221.535535pt;}
.y9e_c00125{bottom:221.901052pt;}
.y9d_c00125{bottom:222.308855pt;}
.y9c_c00125{bottom:223.429480pt;}
.y9b_c00125{bottom:233.113012pt;}
.y9a_c00125{bottom:233.480685pt;}
.y99_c00125{bottom:234.302657pt;}
.y98_c00125{bottom:235.623116pt;}
.y97_c00125{bottom:236.041596pt;}
.y96_c00125{bottom:237.216025pt;}
.y95_c00125{bottom:237.514155pt;}
.y94_c00125{bottom:238.551599pt;}
.y93_c00125{bottom:248.275253pt;}
.y92_c00125{bottom:249.161636pt;}
.y91_c00125{bottom:250.199941pt;}
.y90_c00125{bottom:250.460621pt;}
.y8f_c00125{bottom:251.889305pt;}
.y8e_c00125{bottom:252.280621pt;}
.y8d_c00125{bottom:252.923152pt;}
.y8c_c00125{bottom:253.211300pt;}
.y8b_c00125{bottom:253.674643pt;}
.y8a_c00125{bottom:263.873448pt;}
.y89_c00125{bottom:264.821445pt;}
.y88_c00125{bottom:265.157268pt;}
.y87_c00125{bottom:265.804460pt;}
.y86_c00125{bottom:266.857576pt;}
.y85_c00125{bottom:267.248892pt;}
.y84_c00125{bottom:268.398919pt;}
.y83_c00125{bottom:268.726973pt;}
.y82_c00125{bottom:269.274468pt;}
.y81_c00125{bottom:279.663067pt;}
.y80_c00125{bottom:280.102575pt;}
.y7f_c00125{bottom:281.105952pt;}
.y7e_c00125{bottom:282.095801pt;}
.y7d_c00125{bottom:282.455965pt;}
.y7c_c00125{bottom:283.139940pt;}
.y7b_c00125{bottom:283.522828pt;}
.y7a_c00125{bottom:284.398525pt;}
.y79_c00125{bottom:294.988049pt;}
.y78_c00125{bottom:295.382765pt;}
.y77_c00125{bottom:296.056919pt;}
.y76_c00125{bottom:297.068111pt;}
.y75_c00125{bottom:297.452871pt;}
.y74_c00125{bottom:297.858945pt;}
.y73_c00125{bottom:298.713673pt;}
.y72_c00125{bottom:299.521009pt;}
.y71_c00125{bottom:311.321552pt;}
.y70_c00125{bottom:312.307120pt;}
.y6f_c00125{bottom:312.621608pt;}
.y6e_c00125{bottom:313.428931pt;}
.y6d_c00125{bottom:313.862232pt;}
.y6c_c00125{bottom:315.024297pt;}
.y6b_c00125{bottom:315.604000pt;}
.y6a_c00125{bottom:326.145760pt;}
.y69_c00125{bottom:326.396108pt;}
.y68_c00125{bottom:327.340716pt;}
.y67_c00125{bottom:327.747696pt;}
.y66_c00125{bottom:328.287060pt;}
.y65_c00125{bottom:329.503772pt;}
.y64_c00125{bottom:330.113584pt;}
.y63_c00125{bottom:330.596052pt;}
.y62_c00125{bottom:330.964000pt;}
.y61_c00125{bottom:341.386852pt;}
.y60_c00125{bottom:342.825380pt;}
.y5f_c00125{bottom:343.234265pt;}
.y5e_c00125{bottom:343.646309pt;}
.y5d_c00125{bottom:344.303927pt;}
.y5c_c00125{bottom:345.329000pt;}
.y5b_c00125{bottom:346.296636pt;}
.y5a_c00125{bottom:346.699603pt;}
.y59_c00125{bottom:347.280816pt;}
.y58_c00125{bottom:357.209572pt;}
.y57_c00125{bottom:358.258617pt;}
.y56_c00125{bottom:358.595368pt;}
.y55_c00125{bottom:359.026204pt;}
.y54_c00125{bottom:360.279796pt;}
.y53_c00125{bottom:360.616823pt;}
.y52_c00125{bottom:361.133403pt;}
.y51_c00125{bottom:361.859129pt;}
.y50_c00125{bottom:362.405333pt;}
.y4f_c00125{bottom:372.333517pt;}
.y4e_c00125{bottom:372.676267pt;}
.y4d_c00125{bottom:374.405301pt;}
.y4c_c00125{bottom:375.451333pt;}
.y4b_c00125{bottom:376.207899pt;}
.y4a_c00125{bottom:377.126496pt;}
.y49_c00125{bottom:378.008000pt;}
.y48_c00125{bottom:388.340379pt;}
.y47_c00125{bottom:389.310261pt;}
.y46_c00125{bottom:390.653821pt;}
.y45_c00125{bottom:391.475880pt;}
.y44_c00125{bottom:391.929387pt;}
.y43_c00125{bottom:392.271917pt;}
.y42_c00125{bottom:393.221816pt;}
.y41_c00125{bottom:393.591184pt;}
.y40_c00125{bottom:403.232467pt;}
.y3f_c00125{bottom:404.415408pt;}
.y3e_c00125{bottom:404.990885pt;}
.y3d_c00125{bottom:405.683928pt;}
.y3c_c00125{bottom:407.006808pt;}
.y3b_c00125{bottom:407.424115pt;}
.y3a_c00125{bottom:408.474763pt;}
.y39_c00125{bottom:408.954795pt;}
.y38_c00125{bottom:418.134480pt;}
.y37_c00125{bottom:418.826045pt;}
.y36_c00125{bottom:420.129691pt;}
.y35_c00125{bottom:421.166245pt;}
.y34_c00125{bottom:421.457859pt;}
.y33_c00125{bottom:422.929403pt;}
.y32_c00125{bottom:423.405477pt;}
.y31_c00125{bottom:424.318005pt;}
.y30_c00125{bottom:433.881448pt;}
.y2f_c00125{bottom:434.722816pt;}
.y2e_c00125{bottom:435.094485pt;}
.y2d_c00125{bottom:436.572448pt;}
.y2c_c00125{bottom:437.999176pt;}
.y2b_c00125{bottom:439.200104pt;}
.y2a_c00125{bottom:449.594525pt;}
.y29_c00125{bottom:450.184645pt;}
.y28_c00125{bottom:451.511533pt;}
.y27_c00125{bottom:451.842853pt;}
.y26_c00125{bottom:453.455296pt;}
.y25_c00125{bottom:454.015661pt;}
.y24_c00125{bottom:454.426667pt;}
.y23_c00125{bottom:455.281120pt;}
.y22_c00125{bottom:465.067645pt;}
.y21_c00125{bottom:465.577477pt;}
.y20_c00125{bottom:465.864181pt;}
.y1f_c00125{bottom:467.160589pt;}
.y1e_c00125{bottom:467.493181pt;}
.y1d_c00125{bottom:468.102037pt;}
.y1c_c00125{bottom:468.370453pt;}
.y1b_c00125{bottom:469.441861pt;}
.y1a_c00125{bottom:480.349552pt;}
.y19_c00125{bottom:481.062232pt;}
.y18_c00125{bottom:481.386184pt;}
.y17_c00125{bottom:481.688920pt;}
.y16_c00125{bottom:482.263384pt;}
.y15_c00125{bottom:483.317680pt;}
.y14_c00125{bottom:483.538360pt;}
.y13_c00125{bottom:484.367584pt;}
.y12_c00125{bottom:484.804000pt;}
.y11_c00125{bottom:496.380211pt;}
.y10_c00125{bottom:497.055552pt;}
.yf_c00125{bottom:497.680549pt;}
.ye_c00125{bottom:498.245123pt;}
.yd_c00125{bottom:498.732565pt;}
.yc_c00125{bottom:499.541784pt;}
.yb_c00125{bottom:499.921333pt;}
.ya_c00125{bottom:511.081333pt;}
.y9_c00125{bottom:511.317333pt;}
.y8_c00125{bottom:511.605333pt;}
.y7_c00125{bottom:511.797333pt;}
.y6_c00125{bottom:512.664000pt;}
.y5_c00125{bottom:513.373333pt;}
.y4_c00125{bottom:513.757333pt;}
.y3_c00125{bottom:514.834667pt;}
.y2_c00125{bottom:515.282667pt;}
.y1_c00125{bottom:528.688000pt;}
.hb_c00125{height:49.483384pt;}
.hd_c00125{height:51.346909pt;}
.ha_c00125{height:52.275133pt;}
.h12_c00125{height:52.276100pt;}
.h4_c00125{height:53.205213pt;}
.h15_c00125{height:53.209602pt;}
.h2_c00125{height:54.133333pt;}
.h1c_c00125{height:55.077679pt;}
.h13_c00125{height:56.010107pt;}
.h1a_c00125{height:56.011199pt;}
.h7_c00125{height:56.942556pt;}
.h10_c00125{height:56.943609pt;}
.h18_c00125{height:56.944719pt;}
.h14_c00125{height:58.810612pt;}
.h19_c00125{height:58.811759pt;}
.he_c00125{height:58.812964pt;}
.hc_c00125{height:58.815551pt;}
.h1b_c00125{height:58.907778pt;}
.h9_c00125{height:59.743009pt;}
.h11_c00125{height:60.677616pt;}
.h17_c00125{height:60.678799pt;}
.h8_c00125{height:61.609978pt;}
.h5_c00125{height:62.543463pt;}
.hf_c00125{height:62.544620pt;}
.h6_c00125{height:63.476947pt;}
.h16_c00125{height:63.482024pt;}
.h3_c00125{height:64.400000pt;}
.h0_c00125{height:562.533333pt;}
.h1_c00125{height:562.666667pt;}
.w0_c00125{width:330.480000pt;}
.w1_c00125{width:330.666667pt;}
.x0_c00125{left:0.000000pt;}
.x78_c00125{left:28.376907pt;}
.x6a_c00125{left:29.285333pt;}
.x64_c00125{left:30.788657pt;}
.x5b_c00125{left:31.924991pt;}
.x53_c00125{left:32.922795pt;}
.x4b_c00125{left:34.350667pt;}
.x3e_c00125{left:35.501333pt;}
.x29_c00125{left:37.173475pt;}
.x15_c00125{left:38.660589pt;}
.x2_c00125{left:39.913333pt;}
.x72_c00125{left:41.094267pt;}
.x82_c00125{left:42.502933pt;}
.x6f_c00125{left:45.670133pt;}
.x67_c00125{left:47.038752pt;}
.x7a_c00125{left:48.772613pt;}
.x33_c00125{left:52.777645pt;}
.x59_c00125{left:54.472895pt;}
.x61_c00125{left:55.881573pt;}
.x2f_c00125{left:57.593669pt;}
.x3a_c00125{left:58.734667pt;}
.x73_c00125{left:61.256800pt;}
.xe_c00125{left:63.878667pt;}
.x4c_c00125{left:64.861333pt;}
.x3_c00125{left:66.285333pt;}
.x5a_c00125{left:68.164363pt;}
.x7b_c00125{left:72.827760pt;}
.x1d_c00125{left:75.098205pt;}
.x50_c00125{left:78.519139pt;}
.x5e_c00125{left:80.409987pt;}
.x5c_c00125{left:81.332449pt;}
.x62_c00125{left:83.265124pt;}
.x69_c00125{left:85.194667pt;}
.x79_c00125{left:89.824587pt;}
.x3f_c00125{left:90.802667pt;}
.x1e_c00125{left:92.967264pt;}
.x34_c00125{left:94.064592pt;}
.x24_c00125{left:95.077077pt;}
.x6b_c00125{left:96.265333pt;}
.x16_c00125{left:98.183256pt;}
.x54_c00125{left:99.164128pt;}
.x83_c00125{left:101.768587pt;}
.x30_c00125{left:103.292232pt;}
.x75_c00125{left:105.418880pt;}
.x70_c00125{left:107.660347pt;}
.x35_c00125{left:108.944581pt;}
.xf_c00125{left:109.946667pt;}
.x65_c00125{left:111.780557pt;}
.x17_c00125{left:113.095256pt;}
.x5f_c00125{left:114.020761pt;}
.x43_c00125{left:116.151427pt;}
.x1f_c00125{left:117.355747pt;}
.x10_c00125{left:122.206667pt;}
.x6c_c00125{left:123.413333pt;}
.xb_c00125{left:124.401333pt;}
.x4d_c00125{left:126.022667pt;}
.x7f_c00125{left:127.077467pt;}
.x36_c00125{left:128.656139pt;}
.x4_c00125{left:129.634667pt;}
.x7c_c00125{left:132.270293pt;}
.x55_c00125{left:135.162795pt;}
.x71_c00125{left:136.867280pt;}
.x68_c00125{left:143.982072pt;}
.x63_c00125{left:145.152723pt;}
.x18_c00125{left:146.920589pt;}
.x4e_c00125{left:148.828000pt;}
.x5_c00125{left:152.196000pt;}
.x56_c00125{left:154.118795pt;}
.x2a_c00125{left:156.353944pt;}
.x1_c00125{left:159.600000pt;}
.x48_c00125{left:162.097333pt;}
.x25_c00125{left:163.002739pt;}
.x37_c00125{left:164.396923pt;}
.x19_c00125{left:165.397923pt;}
.x60_c00125{left:166.416784pt;}
.x2b_c00125{left:168.479291pt;}
.x51_c00125{left:169.971553pt;}
.x5d_c00125{left:171.383696pt;}
.x6d_c00125{left:175.204000pt;}
.x7d_c00125{left:177.895200pt;}
.x31_c00125{left:178.925416pt;}
.x11_c00125{left:180.778667pt;}
.x40_c00125{left:182.420000pt;}
.x80_c00125{left:184.843973pt;}
.x44_c00125{left:186.237801pt;}
.x20_c00125{left:187.448101pt;}
.x84_c00125{left:190.077067pt;}
.x4f_c00125{left:191.318667pt;}
.x6_c00125{left:193.960000pt;}
.x3b_c00125{left:197.300000pt;}
.xc_c00125{left:199.545333pt;}
.x66_c00125{left:200.604752pt;}
.x21_c00125{left:201.853472pt;}
.x45_c00125{left:203.398736pt;}
.x57_c00125{left:206.216128pt;}
.x49_c00125{left:207.161333pt;}
.x32_c00125{left:209.054704pt;}
.x2c_c00125{left:211.690635pt;}
.x12_c00125{left:212.693333pt;}
.x76_c00125{left:214.182240pt;}
.x41_c00125{left:215.793333pt;}
.x46_c00125{left:220.422337pt;}
.x38_c00125{left:222.811667pt;}
.x74_c00125{left:224.515920pt;}
.x52_c00125{left:226.140617pt;}
.x13_c00125{left:229.512000pt;}
.x26_c00125{left:233.404280pt;}
.x7e_c00125{left:234.811013pt;}
.x1a_c00125{left:237.420589pt;}
.x6e_c00125{left:239.185333pt;}
.x7_c00125{left:244.918667pt;}
.x77_c00125{left:246.108800pt;}
.x14_c00125{left:247.509333pt;}
.x27_c00125{left:251.088653pt;}
.x4a_c00125{left:252.142667pt;}
.x1b_c00125{left:253.348589pt;}
.x8_c00125{left:256.190667pt;}
.x22_c00125{left:259.564288pt;}
.x42_c00125{left:261.404000pt;}
.x81_c00125{left:262.628187pt;}
.x3c_c00125{left:263.801333pt;}
.x39_c00125{left:264.986541pt;}
.x2d_c00125{left:266.035445pt;}
.x85_c00125{left:271.723120pt;}
.x9_c00125{left:273.156000pt;}
.x3d_c00125{left:276.984000pt;}
.x47_c00125{left:280.356957pt;}
.x1c_c00125{left:281.672589pt;}
.x86_c00125{left:283.771973pt;}
.x23_c00125{left:285.235317pt;}
.xa_c00125{left:287.076000pt;}
.x58_c00125{left:289.734968pt;}
.x28_c00125{left:291.162493pt;}
.xd_c00125{left:292.426667pt;}
.x2e_c00125{left:294.822992pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00126 {
    display:none;
  }
  .loading-indicator_c00126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00126 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00126 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00126" -> "#page-container .classname_c00126")
 */
.pf_c00126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00126 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00126 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00126 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00126 {overflow:visible;}
  }
}
.c_c00126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00126 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00126:after { /* webkit #35443 */
  content: '';
}
.t_c00126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00126 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00126 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00126 { /* info for Javascript */
  display:none;
}
.l_c00126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00126:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00126 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00126.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00126{transform:matrix(0.095262,-0.002096,0.005499,0.249940,0,0);-ms-transform:matrix(0.095262,-0.002096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.095262,-0.002096,0.005499,0.249940,0,0);}
.m84_c00126{transform:matrix(0.105464,-0.002320,0.005499,0.249940,0,0);-ms-transform:matrix(0.105464,-0.002320,0.005499,0.249940,0,0);-webkit-transform:matrix(0.105464,-0.002320,0.005499,0.249940,0,0);}
.m106_c00126{transform:matrix(0.130372,-0.003520,0.006748,0.249909,0,0);-ms-transform:matrix(0.130372,-0.003520,0.006748,0.249909,0,0);-webkit-transform:matrix(0.130372,-0.003520,0.006748,0.249909,0,0);}
.m19_c00126{transform:matrix(0.134223,-0.002953,0.005499,0.249940,0,0);-ms-transform:matrix(0.134223,-0.002953,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134223,-0.002953,0.005499,0.249940,0,0);}
.m11_c00126{transform:matrix(0.141206,-0.003107,0.005499,0.249940,0,0);-ms-transform:matrix(0.141206,-0.003107,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141206,-0.003107,0.005499,0.249940,0,0);}
.m3_c00126{transform:matrix(0.142725,-0.003140,0.005499,0.249940,0,0);-ms-transform:matrix(0.142725,-0.003140,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142725,-0.003140,0.005499,0.249940,0,0);}
.m9_c00126{transform:matrix(0.147444,-0.003244,0.005499,0.249940,0,0);-ms-transform:matrix(0.147444,-0.003244,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147444,-0.003244,0.005499,0.249940,0,0);}
.m7_c00126{transform:matrix(0.150179,-0.003304,0.005499,0.249940,0,0);-ms-transform:matrix(0.150179,-0.003304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150179,-0.003304,0.005499,0.249940,0,0);}
.m103_c00126{transform:matrix(0.153814,-0.004153,0.006748,0.249909,0,0);-ms-transform:matrix(0.153814,-0.004153,0.006748,0.249909,0,0);-webkit-transform:matrix(0.153814,-0.004153,0.006748,0.249909,0,0);}
.m71_c00126{transform:matrix(0.154733,-0.003404,0.005499,0.249940,0,0);-ms-transform:matrix(0.154733,-0.003404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154733,-0.003404,0.005499,0.249940,0,0);}
.m1a_c00126{transform:matrix(0.154968,-0.003409,0.005499,0.249940,0,0);-ms-transform:matrix(0.154968,-0.003409,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154968,-0.003409,0.005499,0.249940,0,0);}
.mfe_c00126{transform:matrix(0.156033,-0.004213,0.006748,0.249909,0,0);-ms-transform:matrix(0.156033,-0.004213,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156033,-0.004213,0.006748,0.249909,0,0);}
.m100_c00126{transform:matrix(0.156143,-0.004216,0.006748,0.249909,0,0);-ms-transform:matrix(0.156143,-0.004216,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156143,-0.004216,0.006748,0.249909,0,0);}
.ma4_c00126{transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156685,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(0.156992,-0.003454,0.005499,0.249940,0,0);-ms-transform:matrix(0.156992,-0.003454,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156992,-0.003454,0.005499,0.249940,0,0);}
.m2a_c00126{transform:matrix(0.158942,-0.003497,0.005499,0.249940,0,0);-ms-transform:matrix(0.158942,-0.003497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158942,-0.003497,0.005499,0.249940,0,0);}
.m1b_c00126{transform:matrix(0.159981,-0.003520,0.005499,0.249940,0,0);-ms-transform:matrix(0.159981,-0.003520,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159981,-0.003520,0.005499,0.249940,0,0);}
.m94_c00126{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.161276,-0.003548,0.005499,0.249940,0,0);-ms-transform:matrix(0.161276,-0.003548,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161276,-0.003548,0.005499,0.249940,0,0);}
.md4_c00126{transform:matrix(0.161531,-0.004361,0.006748,0.249909,0,0);-ms-transform:matrix(0.161531,-0.004361,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161531,-0.004361,0.006748,0.249909,0,0);}
.m18_c00126{transform:matrix(0.162561,-0.003576,0.005499,0.249940,0,0);-ms-transform:matrix(0.162561,-0.003576,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162561,-0.003576,0.005499,0.249940,0,0);}
.m98_c00126{transform:matrix(0.162760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162760,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.163345,-0.003594,0.005499,0.249940,0,0);-ms-transform:matrix(0.163345,-0.003594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163345,-0.003594,0.005499,0.249940,0,0);}
.m16_c00126{transform:matrix(0.164395,-0.003617,0.005499,0.249940,0,0);-ms-transform:matrix(0.164395,-0.003617,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164395,-0.003617,0.005499,0.249940,0,0);}
.m1d_c00126{transform:matrix(0.164870,-0.003627,0.005499,0.249940,0,0);-ms-transform:matrix(0.164870,-0.003627,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164870,-0.003627,0.005499,0.249940,0,0);}
.m59_c00126{transform:matrix(0.164895,-0.003628,0.005499,0.249940,0,0);-ms-transform:matrix(0.164895,-0.003628,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164895,-0.003628,0.005499,0.249940,0,0);}
.m8b_c00126{transform:matrix(0.165890,-0.003650,0.005499,0.249940,0,0);-ms-transform:matrix(0.165890,-0.003650,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165890,-0.003650,0.005499,0.249940,0,0);}
.m78_c00126{transform:matrix(0.166370,-0.003660,0.005499,0.249940,0,0);-ms-transform:matrix(0.166370,-0.003660,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166370,-0.003660,0.005499,0.249940,0,0);}
.m46_c00126{transform:matrix(0.166525,-0.003664,0.005499,0.249940,0,0);-ms-transform:matrix(0.166525,-0.003664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166525,-0.003664,0.005499,0.249940,0,0);}
.mb2_c00126{transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);}
.mb7_c00126{transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);-ms-transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167634,-0.003688,0.005499,0.249940,0,0);}
.m6c_c00126{transform:matrix(0.168414,-0.003705,0.005499,0.249940,0,0);-ms-transform:matrix(0.168414,-0.003705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168414,-0.003705,0.005499,0.249940,0,0);}
.m48_c00126{transform:matrix(0.168579,-0.003709,0.005499,0.249940,0,0);-ms-transform:matrix(0.168579,-0.003709,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168579,-0.003709,0.005499,0.249940,0,0);}
.m4c_c00126{transform:matrix(0.169164,-0.003722,0.005499,0.249940,0,0);-ms-transform:matrix(0.169164,-0.003722,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169164,-0.003722,0.005499,0.249940,0,0);}
.mba_c00126{transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);}
.m3b_c00126{transform:matrix(0.170194,-0.003744,0.005499,0.249940,0,0);-ms-transform:matrix(0.170194,-0.003744,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170194,-0.003744,0.005499,0.249940,0,0);}
.me6_c00126{transform:matrix(0.170283,-0.004598,0.006748,0.249909,0,0);-ms-transform:matrix(0.170283,-0.004598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170283,-0.004598,0.006748,0.249909,0,0);}
.mc6_c00126{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.170404,-0.003749,0.005499,0.249940,0,0);-ms-transform:matrix(0.170404,-0.003749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170404,-0.003749,0.005499,0.249940,0,0);}
.md8_c00126{transform:matrix(0.170763,-0.004611,0.006748,0.249909,0,0);-ms-transform:matrix(0.170763,-0.004611,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170763,-0.004611,0.006748,0.249909,0,0);}
.m13_c00126{transform:matrix(0.170854,-0.003759,0.005499,0.249940,0,0);-ms-transform:matrix(0.170854,-0.003759,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170854,-0.003759,0.005499,0.249940,0,0);}
.m95_c00126{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.171878,-0.003781,0.005499,0.249940,0,0);-ms-transform:matrix(0.171878,-0.003781,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171878,-0.003781,0.005499,0.249940,0,0);}
.mf5_c00126{transform:matrix(0.172147,-0.004648,0.006748,0.249909,0,0);-ms-transform:matrix(0.172147,-0.004648,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172147,-0.004648,0.006748,0.249909,0,0);}
.m1e_c00126{transform:matrix(0.172163,-0.003788,0.005499,0.249940,0,0);-ms-transform:matrix(0.172163,-0.003788,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172163,-0.003788,0.005499,0.249940,0,0);}
.m43_c00126{transform:matrix(0.172308,-0.003791,0.005499,0.249940,0,0);-ms-transform:matrix(0.172308,-0.003791,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172308,-0.003791,0.005499,0.249940,0,0);}
.m12_c00126{transform:matrix(0.172328,-0.003791,0.005499,0.249940,0,0);-ms-transform:matrix(0.172328,-0.003791,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172328,-0.003791,0.005499,0.249940,0,0);}
.mb9_c00126{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.172748,-0.003800,0.005499,0.249940,0,0);-ms-transform:matrix(0.172748,-0.003800,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172748,-0.003800,0.005499,0.249940,0,0);}
.m104_c00126{transform:matrix(0.173417,-0.004682,0.006748,0.249909,0,0);-ms-transform:matrix(0.173417,-0.004682,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173417,-0.004682,0.006748,0.249909,0,0);}
.mb0_c00126{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{transform:matrix(0.174138,-0.003831,0.005499,0.249940,0,0);-ms-transform:matrix(0.174138,-0.003831,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174138,-0.003831,0.005499,0.249940,0,0);}
.m81_c00126{transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);-ms-transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);}
.m5a_c00126{transform:matrix(0.175598,-0.003863,0.005499,0.249940,0,0);-ms-transform:matrix(0.175598,-0.003863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175598,-0.003863,0.005499,0.249940,0,0);}
.m25_c00126{transform:matrix(0.175717,-0.003866,0.005499,0.249940,0,0);-ms-transform:matrix(0.175717,-0.003866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175717,-0.003866,0.005499,0.249940,0,0);}
.md9_c00126{transform:matrix(0.176016,-0.004752,0.006748,0.249909,0,0);-ms-transform:matrix(0.176016,-0.004752,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176016,-0.004752,0.006748,0.249909,0,0);}
.m33_c00126{transform:matrix(0.176287,-0.003878,0.005499,0.249940,0,0);-ms-transform:matrix(0.176287,-0.003878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176287,-0.003878,0.005499,0.249940,0,0);}
.maf_c00126{transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.176472,-0.003882,0.005499,0.249940,0,0);-ms-transform:matrix(0.176472,-0.003882,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176472,-0.003882,0.005499,0.249940,0,0);}
.m87_c00126{transform:matrix(0.176727,-0.003888,0.005499,0.249940,0,0);-ms-transform:matrix(0.176727,-0.003888,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176727,-0.003888,0.005499,0.249940,0,0);}
.ma7_c00126{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m107_c00126{transform:matrix(0.176971,-0.004778,0.006748,0.249909,0,0);-ms-transform:matrix(0.176971,-0.004778,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176971,-0.004778,0.006748,0.249909,0,0);}
.mbd_c00126{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.178432,-0.003926,0.005499,0.249940,0,0);-ms-transform:matrix(0.178432,-0.003926,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178432,-0.003926,0.005499,0.249940,0,0);}
.mdf_c00126{transform:matrix(0.178870,-0.004829,0.006748,0.249909,0,0);-ms-transform:matrix(0.178870,-0.004829,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178870,-0.004829,0.006748,0.249909,0,0);}
.m7d_c00126{transform:matrix(0.179302,-0.003945,0.005499,0.249940,0,0);-ms-transform:matrix(0.179302,-0.003945,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179302,-0.003945,0.005499,0.249940,0,0);}
.md6_c00126{transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);-ms-transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);}
.m5f_c00126{transform:matrix(0.179906,-0.003958,0.005499,0.249940,0,0);-ms-transform:matrix(0.179906,-0.003958,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179906,-0.003958,0.005499,0.249940,0,0);}
.m55_c00126{transform:matrix(0.180021,-0.003960,0.005499,0.249940,0,0);-ms-transform:matrix(0.180021,-0.003960,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180021,-0.003960,0.005499,0.249940,0,0);}
.mff_c00126{transform:matrix(0.180064,-0.004862,0.006748,0.249909,0,0);-ms-transform:matrix(0.180064,-0.004862,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180064,-0.004862,0.006748,0.249909,0,0);}
.m4_c00126{transform:matrix(0.180536,-0.003972,0.005499,0.249940,0,0);-ms-transform:matrix(0.180536,-0.003972,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180536,-0.003972,0.005499,0.249940,0,0);}
.m1c_c00126{transform:matrix(0.180821,-0.003978,0.005499,0.249940,0,0);-ms-transform:matrix(0.180821,-0.003978,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180821,-0.003978,0.005499,0.249940,0,0);}
.mc4_c00126{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.181681,-0.003997,0.005499,0.249940,0,0);-ms-transform:matrix(0.181681,-0.003997,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181681,-0.003997,0.005499,0.249940,0,0);}
.m15_c00126{transform:matrix(0.181751,-0.003999,0.005499,0.249940,0,0);-ms-transform:matrix(0.181751,-0.003999,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181751,-0.003999,0.005499,0.249940,0,0);}
.m29_c00126{transform:matrix(0.182081,-0.004006,0.005499,0.249940,0,0);-ms-transform:matrix(0.182081,-0.004006,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182081,-0.004006,0.005499,0.249940,0,0);}
.ma_c00126{transform:matrix(0.182141,-0.004007,0.005499,0.249940,0,0);-ms-transform:matrix(0.182141,-0.004007,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182141,-0.004007,0.005499,0.249940,0,0);}
.mb5_c00126{transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.182941,-0.004025,0.005499,0.249940,0,0);-ms-transform:matrix(0.182941,-0.004025,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182941,-0.004025,0.005499,0.249940,0,0);}
.m105_c00126{transform:matrix(0.183383,-0.004951,0.006748,0.249909,0,0);-ms-transform:matrix(0.183383,-0.004951,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183383,-0.004951,0.006748,0.249909,0,0);}
.m28_c00126{transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);-ms-transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);}
.m66_c00126{transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);}
.ma0_c00126{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.184570,-0.004061,0.005499,0.249940,0,0);-ms-transform:matrix(0.184570,-0.004061,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184570,-0.004061,0.005499,0.249940,0,0);}
.m60_c00126{transform:matrix(0.184735,-0.004064,0.005499,0.249940,0,0);-ms-transform:matrix(0.184735,-0.004064,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184735,-0.004064,0.005499,0.249940,0,0);}
.m8c_c00126{transform:matrix(0.185505,-0.004081,0.005499,0.249940,0,0);-ms-transform:matrix(0.185505,-0.004081,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185505,-0.004081,0.005499,0.249940,0,0);}
.m9d_c00126{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.mcf_c00126{transform:matrix(0.186627,-0.005039,0.006748,0.249909,0,0);-ms-transform:matrix(0.186627,-0.005039,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186627,-0.005039,0.006748,0.249909,0,0);}
.m49_c00126{transform:matrix(0.187200,-0.004118,0.005499,0.249940,0,0);-ms-transform:matrix(0.187200,-0.004118,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187200,-0.004118,0.005499,0.249940,0,0);}
.m51_c00126{transform:matrix(0.187515,-0.004125,0.005499,0.249940,0,0);-ms-transform:matrix(0.187515,-0.004125,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187515,-0.004125,0.005499,0.249940,0,0);}
.mce_c00126{transform:matrix(0.187832,-0.005071,0.006748,0.249909,0,0);-ms-transform:matrix(0.187832,-0.005071,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187832,-0.005071,0.006748,0.249909,0,0);}
.m96_c00126{transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);-ms-transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188624,-0.004150,0.005499,0.249940,0,0);}
.me4_c00126{transform:matrix(0.188711,-0.005095,0.006748,0.249909,0,0);-ms-transform:matrix(0.188711,-0.005095,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188711,-0.005095,0.006748,0.249909,0,0);}
.m79_c00126{transform:matrix(0.188909,-0.004156,0.005499,0.249940,0,0);-ms-transform:matrix(0.188909,-0.004156,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188909,-0.004156,0.005499,0.249940,0,0);}
.m2f_c00126{transform:matrix(0.188984,-0.004158,0.005499,0.249940,0,0);-ms-transform:matrix(0.188984,-0.004158,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188984,-0.004158,0.005499,0.249940,0,0);}
.m90_c00126{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.189354,-0.004166,0.005499,0.249940,0,0);-ms-transform:matrix(0.189354,-0.004166,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189354,-0.004166,0.005499,0.249940,0,0);}
.m8a_c00126{transform:matrix(0.190144,-0.004183,0.005499,0.249940,0,0);-ms-transform:matrix(0.190144,-0.004183,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190144,-0.004183,0.005499,0.249940,0,0);}
.mef_c00126{transform:matrix(0.190171,-0.005135,0.006748,0.249909,0,0);-ms-transform:matrix(0.190171,-0.005135,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190171,-0.005135,0.006748,0.249909,0,0);}
.mbe_c00126{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m88_c00126{transform:matrix(0.190224,-0.004185,0.005499,0.249940,0,0);-ms-transform:matrix(0.190224,-0.004185,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190224,-0.004185,0.005499,0.249940,0,0);}
.md1_c00126{transform:matrix(0.190256,-0.005137,0.006748,0.249909,0,0);-ms-transform:matrix(0.190256,-0.005137,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190256,-0.005137,0.006748,0.249909,0,0);}
.m82_c00126{transform:matrix(0.190459,-0.004190,0.005499,0.249940,0,0);-ms-transform:matrix(0.190459,-0.004190,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190459,-0.004190,0.005499,0.249940,0,0);}
.mb8_c00126{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m56_c00126{transform:matrix(0.191664,-0.004217,0.005499,0.249940,0,0);-ms-transform:matrix(0.191664,-0.004217,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191664,-0.004217,0.005499,0.249940,0,0);}
.mf9_c00126{transform:matrix(0.191720,-0.005176,0.006748,0.249909,0,0);-ms-transform:matrix(0.191720,-0.005176,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191720,-0.005176,0.006748,0.249909,0,0);}
.m6d_c00126{transform:matrix(0.191999,-0.004224,0.005499,0.249940,0,0);-ms-transform:matrix(0.191999,-0.004224,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191999,-0.004224,0.005499,0.249940,0,0);}
.ma9_c00126{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00126{transform:matrix(0.192478,-0.004235,0.005499,0.249940,0,0);-ms-transform:matrix(0.192478,-0.004235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192478,-0.004235,0.005499,0.249940,0,0);}
.m47_c00126{transform:matrix(0.192748,-0.004240,0.005499,0.249940,0,0);-ms-transform:matrix(0.192748,-0.004240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192748,-0.004240,0.005499,0.249940,0,0);}
.mb_c00126{transform:matrix(0.192808,-0.004242,0.005499,0.249940,0,0);-ms-transform:matrix(0.192808,-0.004242,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192808,-0.004242,0.005499,0.249940,0,0);}
.mfc_c00126{transform:matrix(0.193060,-0.005213,0.006748,0.249909,0,0);-ms-transform:matrix(0.193060,-0.005213,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193060,-0.005213,0.006748,0.249909,0,0);}
.m7f_c00126{transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);-ms-transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193228,-0.004251,0.005499,0.249940,0,0);}
.m9b_c00126{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{transform:matrix(0.193558,-0.004258,0.005499,0.249940,0,0);-ms-transform:matrix(0.193558,-0.004258,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193558,-0.004258,0.005499,0.249940,0,0);}
.m3c_c00126{transform:matrix(0.193678,-0.004261,0.005499,0.249940,0,0);-ms-transform:matrix(0.193678,-0.004261,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193678,-0.004261,0.005499,0.249940,0,0);}
.m41_c00126{transform:matrix(0.193863,-0.004265,0.005499,0.249940,0,0);-ms-transform:matrix(0.193863,-0.004265,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193863,-0.004265,0.005499,0.249940,0,0);}
.mfb_c00126{transform:matrix(0.193974,-0.005237,0.006748,0.249909,0,0);-ms-transform:matrix(0.193974,-0.005237,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193974,-0.005237,0.006748,0.249909,0,0);}
.med_c00126{transform:matrix(0.194004,-0.005238,0.006748,0.249909,0,0);-ms-transform:matrix(0.194004,-0.005238,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194004,-0.005238,0.006748,0.249909,0,0);}
.mc5_c00126{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mdd_c00126{transform:matrix(0.194304,-0.005246,0.006748,0.249909,0,0);-ms-transform:matrix(0.194304,-0.005246,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194304,-0.005246,0.006748,0.249909,0,0);}
.m20_c00126{transform:matrix(0.194503,-0.004279,0.005499,0.249940,0,0);-ms-transform:matrix(0.194503,-0.004279,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194503,-0.004279,0.005499,0.249940,0,0);}
.m99_c00126{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.mcd_c00126{transform:matrix(0.194854,-0.005261,0.006748,0.249909,0,0);-ms-transform:matrix(0.194854,-0.005261,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194854,-0.005261,0.006748,0.249909,0,0);}
.mc3_c00126{transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);}
.mf4_c00126{transform:matrix(0.195814,-0.005287,0.006748,0.249909,0,0);-ms-transform:matrix(0.195814,-0.005287,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195814,-0.005287,0.006748,0.249909,0,0);}
.mbb_c00126{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{transform:matrix(0.196178,-0.004316,0.005499,0.249940,0,0);-ms-transform:matrix(0.196178,-0.004316,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196178,-0.004316,0.005499,0.249940,0,0);}
.m23_c00126{transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);-ms-transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196637,-0.004326,0.005499,0.249940,0,0);}
.m31_c00126{transform:matrix(0.196672,-0.004327,0.005499,0.249940,0,0);-ms-transform:matrix(0.196672,-0.004327,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196672,-0.004327,0.005499,0.249940,0,0);}
.me_c00126{transform:matrix(0.196742,-0.004328,0.005499,0.249940,0,0);-ms-transform:matrix(0.196742,-0.004328,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196742,-0.004328,0.005499,0.249940,0,0);}
.m57_c00126{transform:matrix(0.196842,-0.004331,0.005499,0.249940,0,0);-ms-transform:matrix(0.196842,-0.004331,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196842,-0.004331,0.005499,0.249940,0,0);}
.mb6_c00126{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.mae_c00126{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);-ms-transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);}
.m92_c00126{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.198007,-0.004356,0.005499,0.249940,0,0);-ms-transform:matrix(0.198007,-0.004356,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198007,-0.004356,0.005499,0.249940,0,0);}
.mf8_c00126{transform:matrix(0.198278,-0.005353,0.006748,0.249909,0,0);-ms-transform:matrix(0.198278,-0.005353,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198278,-0.005353,0.006748,0.249909,0,0);}
.mda_c00126{transform:matrix(0.198583,-0.005362,0.006748,0.249909,0,0);-ms-transform:matrix(0.198583,-0.005362,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198583,-0.005362,0.006748,0.249909,0,0);}
.m9a_c00126{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me0_c00126{transform:matrix(0.199362,-0.005383,0.006748,0.249909,0,0);-ms-transform:matrix(0.199362,-0.005383,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199362,-0.005383,0.006748,0.249909,0,0);}
.m4a_c00126{transform:matrix(0.199662,-0.004393,0.005499,0.249940,0,0);-ms-transform:matrix(0.199662,-0.004393,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199662,-0.004393,0.005499,0.249940,0,0);}
.m62_c00126{transform:matrix(0.200786,-0.004417,0.005499,0.249940,0,0);-ms-transform:matrix(0.200786,-0.004417,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200786,-0.004417,0.005499,0.249940,0,0);}
.mc7_c00126{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.me8_c00126{transform:matrix(0.201542,-0.005442,0.006748,0.249909,0,0);-ms-transform:matrix(0.201542,-0.005442,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201542,-0.005442,0.006748,0.249909,0,0);}
.mb1_c00126{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.201816,-0.004440,0.005499,0.249940,0,0);-ms-transform:matrix(0.201816,-0.004440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201816,-0.004440,0.005499,0.249940,0,0);}
.m77_c00126{transform:matrix(0.201941,-0.004443,0.005499,0.249940,0,0);-ms-transform:matrix(0.201941,-0.004443,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201941,-0.004443,0.005499,0.249940,0,0);}
.m0_c00126{transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);}
.me7_c00126{transform:matrix(0.202326,-0.005463,0.006748,0.249909,0,0);-ms-transform:matrix(0.202326,-0.005463,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202326,-0.005463,0.006748,0.249909,0,0);}
.mde_c00126{transform:matrix(0.202601,-0.005470,0.006748,0.249909,0,0);-ms-transform:matrix(0.202601,-0.005470,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202601,-0.005470,0.006748,0.249909,0,0);}
.m24_c00126{transform:matrix(0.203146,-0.004469,0.005499,0.249940,0,0);-ms-transform:matrix(0.203146,-0.004469,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203146,-0.004469,0.005499,0.249940,0,0);}
.mc8_c00126{transform:matrix(0.203456,-0.005493,0.006748,0.249909,0,0);-ms-transform:matrix(0.203456,-0.005493,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203456,-0.005493,0.006748,0.249909,0,0);}
.mf3_c00126{transform:matrix(0.203511,-0.005495,0.006748,0.249909,0,0);-ms-transform:matrix(0.203511,-0.005495,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203511,-0.005495,0.006748,0.249909,0,0);}
.m45_c00126{transform:matrix(0.203866,-0.004485,0.005499,0.249940,0,0);-ms-transform:matrix(0.203866,-0.004485,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203866,-0.004485,0.005499,0.249940,0,0);}
.m85_c00126{transform:matrix(0.204086,-0.004490,0.005499,0.249940,0,0);-ms-transform:matrix(0.204086,-0.004490,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204086,-0.004490,0.005499,0.249940,0,0);}
.mf6_c00126{transform:matrix(0.204136,-0.005512,0.006748,0.249909,0,0);-ms-transform:matrix(0.204136,-0.005512,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204136,-0.005512,0.006748,0.249909,0,0);}
.m9e_c00126{transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);}
.mc0_c00126{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);-ms-transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);}
.m80_c00126{transform:matrix(0.204660,-0.004503,0.005499,0.249940,0,0);-ms-transform:matrix(0.204660,-0.004503,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204660,-0.004503,0.005499,0.249940,0,0);}
.md2_c00126{transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);-ms-transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);}
.m63_c00126{transform:matrix(0.205325,-0.004517,0.005499,0.249940,0,0);-ms-transform:matrix(0.205325,-0.004517,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205325,-0.004517,0.005499,0.249940,0,0);}
.m9c_c00126{transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);}
.mf7_c00126{transform:matrix(0.205405,-0.005546,0.006748,0.249909,0,0);-ms-transform:matrix(0.205405,-0.005546,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205405,-0.005546,0.006748,0.249909,0,0);}
.m3e_c00126{transform:matrix(0.205895,-0.004530,0.005499,0.249940,0,0);-ms-transform:matrix(0.205895,-0.004530,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205895,-0.004530,0.005499,0.249940,0,0);}
.mdb_c00126{transform:matrix(0.206035,-0.005563,0.006748,0.249909,0,0);-ms-transform:matrix(0.206035,-0.005563,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206035,-0.005563,0.006748,0.249909,0,0);}
.mfd_c00126{transform:matrix(0.206185,-0.005567,0.006748,0.249909,0,0);-ms-transform:matrix(0.206185,-0.005567,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206185,-0.005567,0.006748,0.249909,0,0);}
.me2_c00126{transform:matrix(0.206810,-0.005584,0.006748,0.249909,0,0);-ms-transform:matrix(0.206810,-0.005584,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206810,-0.005584,0.006748,0.249909,0,0);}
.m3a_c00126{transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);}
.m2d_c00126{transform:matrix(0.207665,-0.004569,0.005499,0.249940,0,0);-ms-transform:matrix(0.207665,-0.004569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207665,-0.004569,0.005499,0.249940,0,0);}
.mf0_c00126{transform:matrix(0.207719,-0.005608,0.006748,0.249909,0,0);-ms-transform:matrix(0.207719,-0.005608,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207719,-0.005608,0.006748,0.249909,0,0);}
.m8e_c00126{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.mbc_c00126{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.208974,-0.004597,0.005499,0.249940,0,0);-ms-transform:matrix(0.208974,-0.004597,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208974,-0.004597,0.005499,0.249940,0,0);}
.mad_c00126{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.209604,-0.004611,0.005499,0.249940,0,0);-ms-transform:matrix(0.209604,-0.004611,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209604,-0.004611,0.005499,0.249940,0,0);}
.m44_c00126{transform:matrix(0.210834,-0.004638,0.005499,0.249940,0,0);-ms-transform:matrix(0.210834,-0.004638,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210834,-0.004638,0.005499,0.249940,0,0);}
.m2c_c00126{transform:matrix(0.210874,-0.004639,0.005499,0.249940,0,0);-ms-transform:matrix(0.210874,-0.004639,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210874,-0.004639,0.005499,0.249940,0,0);}
.ma2_c00126{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.211349,-0.004650,0.005499,0.249940,0,0);-ms-transform:matrix(0.211349,-0.004650,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211349,-0.004650,0.005499,0.249940,0,0);}
.m37_c00126{transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);-ms-transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);}
.m101_c00126{transform:matrix(0.212423,-0.005735,0.006748,0.249909,0,0);-ms-transform:matrix(0.212423,-0.005735,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212423,-0.005735,0.006748,0.249909,0,0);}
.m65_c00126{transform:matrix(0.212549,-0.004676,0.005499,0.249940,0,0);-ms-transform:matrix(0.212549,-0.004676,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212549,-0.004676,0.005499,0.249940,0,0);}
.m2e_c00126{transform:matrix(0.212729,-0.004680,0.005499,0.249940,0,0);-ms-transform:matrix(0.212729,-0.004680,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212729,-0.004680,0.005499,0.249940,0,0);}
.m6b_c00126{transform:matrix(0.213518,-0.004697,0.005499,0.249940,0,0);-ms-transform:matrix(0.213518,-0.004697,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213518,-0.004697,0.005499,0.249940,0,0);}
.m8d_c00126{transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);}
.me3_c00126{transform:matrix(0.214067,-0.005780,0.006748,0.249909,0,0);-ms-transform:matrix(0.214067,-0.005780,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214067,-0.005780,0.006748,0.249909,0,0);}
.m9f_c00126{transform:matrix(0.214145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214145,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);-ms-transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214413,-0.004717,0.005499,0.249940,0,0);}
.maa_c00126{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m34_c00126{transform:matrix(0.214748,-0.004724,0.005499,0.249940,0,0);-ms-transform:matrix(0.214748,-0.004724,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214748,-0.004724,0.005499,0.249940,0,0);}
.m7e_c00126{transform:matrix(0.215098,-0.004732,0.005499,0.249940,0,0);-ms-transform:matrix(0.215098,-0.004732,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215098,-0.004732,0.005499,0.249940,0,0);}
.m39_c00126{transform:matrix(0.215403,-0.004739,0.005499,0.249940,0,0);-ms-transform:matrix(0.215403,-0.004739,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215403,-0.004739,0.005499,0.249940,0,0);}
.m7b_c00126{transform:matrix(0.215453,-0.004740,0.005499,0.249940,0,0);-ms-transform:matrix(0.215453,-0.004740,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215453,-0.004740,0.005499,0.249940,0,0);}
.m69_c00126{transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);-ms-transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);}
.mc1_c00126{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m97_c00126{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);-ms-transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);}
.mbf_c00126{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.217197,-0.004778,0.005499,0.249940,0,0);-ms-transform:matrix(0.217197,-0.004778,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217197,-0.004778,0.005499,0.249940,0,0);}
.m4d_c00126{transform:matrix(0.217412,-0.004783,0.005499,0.249940,0,0);-ms-transform:matrix(0.217412,-0.004783,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217412,-0.004783,0.005499,0.249940,0,0);}
.mb3_c00126{transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{transform:matrix(0.218957,-0.004817,0.005499,0.249940,0,0);-ms-transform:matrix(0.218957,-0.004817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218957,-0.004817,0.005499,0.249940,0,0);}
.mec_c00126{transform:matrix(0.219640,-0.005930,0.006748,0.249909,0,0);-ms-transform:matrix(0.219640,-0.005930,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219640,-0.005930,0.006748,0.249909,0,0);}
.m89_c00126{transform:matrix(0.220967,-0.004861,0.005499,0.249940,0,0);-ms-transform:matrix(0.220967,-0.004861,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220967,-0.004861,0.005499,0.249940,0,0);}
.md5_c00126{transform:matrix(0.221209,-0.005973,0.006748,0.249909,0,0);-ms-transform:matrix(0.221209,-0.005973,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221209,-0.005973,0.006748,0.249909,0,0);}
.m93_c00126{transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);}
.md7_c00126{transform:matrix(0.221464,-0.005980,0.006748,0.249909,0,0);-ms-transform:matrix(0.221464,-0.005980,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221464,-0.005980,0.006748,0.249909,0,0);}
.md3_c00126{transform:matrix(0.222194,-0.005999,0.006748,0.249909,0,0);-ms-transform:matrix(0.222194,-0.005999,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222194,-0.005999,0.006748,0.249909,0,0);}
.m2b_c00126{transform:matrix(0.222246,-0.004889,0.005499,0.249940,0,0);-ms-transform:matrix(0.222246,-0.004889,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222246,-0.004889,0.005499,0.249940,0,0);}
.m86_c00126{transform:matrix(0.222791,-0.004901,0.005499,0.249940,0,0);-ms-transform:matrix(0.222791,-0.004901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222791,-0.004901,0.005499,0.249940,0,0);}
.mf2_c00126{transform:matrix(0.224913,-0.006073,0.006748,0.249909,0,0);-ms-transform:matrix(0.224913,-0.006073,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224913,-0.006073,0.006748,0.249909,0,0);}
.m7a_c00126{transform:matrix(0.224946,-0.004949,0.005499,0.249940,0,0);-ms-transform:matrix(0.224946,-0.004949,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224946,-0.004949,0.005499,0.249940,0,0);}
.mcb_c00126{transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);-ms-transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);}
.ma5_c00126{transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.226105,-0.004974,0.005499,0.249940,0,0);-ms-transform:matrix(0.226105,-0.004974,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226105,-0.004974,0.005499,0.249940,0,0);}
.mf_c00126{transform:matrix(0.226465,-0.004982,0.005499,0.249940,0,0);-ms-transform:matrix(0.226465,-0.004982,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226465,-0.004982,0.005499,0.249940,0,0);}
.m5_c00126{transform:matrix(0.226480,-0.004983,0.005499,0.249940,0,0);-ms-transform:matrix(0.226480,-0.004983,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226480,-0.004983,0.005499,0.249940,0,0);}
.mea_c00126{transform:matrix(0.226902,-0.006126,0.006748,0.249909,0,0);-ms-transform:matrix(0.226902,-0.006126,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226902,-0.006126,0.006748,0.249909,0,0);}
.ma8_c00126{transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);}
.m72_c00126{transform:matrix(0.226975,-0.004993,0.005499,0.249940,0,0);-ms-transform:matrix(0.226975,-0.004993,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226975,-0.004993,0.005499,0.249940,0,0);}
.m73_c00126{transform:matrix(0.228050,-0.005017,0.005499,0.249940,0,0);-ms-transform:matrix(0.228050,-0.005017,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228050,-0.005017,0.005499,0.249940,0,0);}
.m2_c00126{transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);-ms-transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);}
.mb4_c00126{transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);}
.mca_c00126{transform:matrix(0.230161,-0.006214,0.006748,0.249909,0,0);-ms-transform:matrix(0.230161,-0.006214,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230161,-0.006214,0.006748,0.249909,0,0);}
.m6a_c00126{transform:matrix(0.230469,-0.005070,0.005499,0.249940,0,0);-ms-transform:matrix(0.230469,-0.005070,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230469,-0.005070,0.005499,0.249940,0,0);}
.mc2_c00126{transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);}
.mfa_c00126{transform:matrix(0.232010,-0.006264,0.006748,0.249909,0,0);-ms-transform:matrix(0.232010,-0.006264,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232010,-0.006264,0.006748,0.249909,0,0);}
.mcc_c00126{transform:matrix(0.232290,-0.006272,0.006748,0.249909,0,0);-ms-transform:matrix(0.232290,-0.006272,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232290,-0.006272,0.006748,0.249909,0,0);}
.mdc_c00126{transform:matrix(0.234515,-0.006332,0.006748,0.249909,0,0);-ms-transform:matrix(0.234515,-0.006332,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234515,-0.006332,0.006748,0.249909,0,0);}
.ma6_c00126{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{transform:matrix(0.234713,-0.005164,0.005499,0.249940,0,0);-ms-transform:matrix(0.234713,-0.005164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234713,-0.005164,0.005499,0.249940,0,0);}
.m54_c00126{transform:matrix(0.235208,-0.005175,0.005499,0.249940,0,0);-ms-transform:matrix(0.235208,-0.005175,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235208,-0.005175,0.005499,0.249940,0,0);}
.me9_c00126{transform:matrix(0.236979,-0.006398,0.006748,0.249909,0,0);-ms-transform:matrix(0.236979,-0.006398,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236979,-0.006398,0.006748,0.249909,0,0);}
.mac_c00126{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.meb_c00126{transform:matrix(0.238418,-0.006437,0.006748,0.249909,0,0);-ms-transform:matrix(0.238418,-0.006437,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238418,-0.006437,0.006748,0.249909,0,0);}
.m102_c00126{transform:matrix(0.238673,-0.006444,0.006748,0.249909,0,0);-ms-transform:matrix(0.238673,-0.006444,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238673,-0.006444,0.006748,0.249909,0,0);}
.mab_c00126{transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);}
.mf1_c00126{transform:matrix(0.239343,-0.006462,0.006748,0.249909,0,0);-ms-transform:matrix(0.239343,-0.006462,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239343,-0.006462,0.006748,0.249909,0,0);}
.m68_c00126{transform:matrix(0.240267,-0.005286,0.005499,0.249940,0,0);-ms-transform:matrix(0.240267,-0.005286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240267,-0.005286,0.005499,0.249940,0,0);}
.m3f_c00126{transform:matrix(0.240472,-0.005290,0.005499,0.249940,0,0);-ms-transform:matrix(0.240472,-0.005290,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240472,-0.005290,0.005499,0.249940,0,0);}
.m64_c00126{transform:matrix(0.240557,-0.005292,0.005499,0.249940,0,0);-ms-transform:matrix(0.240557,-0.005292,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240557,-0.005292,0.005499,0.249940,0,0);}
.m76_c00126{transform:matrix(0.241087,-0.005304,0.005499,0.249940,0,0);-ms-transform:matrix(0.241087,-0.005304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241087,-0.005304,0.005499,0.249940,0,0);}
.mc9_c00126{transform:matrix(0.244831,-0.006610,0.006748,0.249909,0,0);-ms-transform:matrix(0.244831,-0.006610,0.006748,0.249909,0,0);-webkit-transform:matrix(0.244831,-0.006610,0.006748,0.249909,0,0);}
.me5_c00126{transform:matrix(0.245940,-0.006640,0.006748,0.249909,0,0);-ms-transform:matrix(0.245940,-0.006640,0.006748,0.249909,0,0);-webkit-transform:matrix(0.245940,-0.006640,0.006748,0.249909,0,0);}
.me1_c00126{transform:matrix(0.248190,-0.006701,0.006748,0.249909,0,0);-ms-transform:matrix(0.248190,-0.006701,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248190,-0.006701,0.006748,0.249909,0,0);}
.m74_c00126{transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);-ms-transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);}
.m10_c00126{transform:matrix(0.251619,-0.005536,0.005499,0.249940,0,0);-ms-transform:matrix(0.251619,-0.005536,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251619,-0.005536,0.005499,0.249940,0,0);}
.mee_c00126{transform:matrix(0.252198,-0.006809,0.006748,0.249909,0,0);-ms-transform:matrix(0.252198,-0.006809,0.006748,0.249909,0,0);-webkit-transform:matrix(0.252198,-0.006809,0.006748,0.249909,0,0);}
.m40_c00126{transform:matrix(0.254743,-0.005604,0.005499,0.249940,0,0);-ms-transform:matrix(0.254743,-0.005604,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254743,-0.005604,0.005499,0.249940,0,0);}
.m7c_c00126{transform:matrix(0.257578,-0.005667,0.005499,0.249940,0,0);-ms-transform:matrix(0.257578,-0.005667,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257578,-0.005667,0.005499,0.249940,0,0);}
.md0_c00126{transform:matrix(0.259465,-0.007006,0.006748,0.249909,0,0);-ms-transform:matrix(0.259465,-0.007006,0.006748,0.249909,0,0);-webkit-transform:matrix(0.259465,-0.007006,0.006748,0.249909,0,0);}
.m75_c00126{transform:matrix(0.264096,-0.005810,0.005499,0.249940,0,0);-ms-transform:matrix(0.264096,-0.005810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264096,-0.005810,0.005499,0.249940,0,0);}
.m50_c00126{transform:matrix(0.274184,-0.006032,0.005499,0.249940,0,0);-ms-transform:matrix(0.274184,-0.006032,0.005499,0.249940,0,0);-webkit-transform:matrix(0.274184,-0.006032,0.005499,0.249940,0,0);}
.m6_c00126{transform:matrix(0.305146,-0.006713,0.005499,0.249940,0,0);-ms-transform:matrix(0.305146,-0.006713,0.005499,0.249940,0,0);-webkit-transform:matrix(0.305146,-0.006713,0.005499,0.249940,0,0);}
.m4f_c00126{transform:matrix(0.346986,-0.007634,0.005499,0.249940,0,0);-ms-transform:matrix(0.346986,-0.007634,0.005499,0.249940,0,0);-webkit-transform:matrix(0.346986,-0.007634,0.005499,0.249940,0,0);}
.m4e_c00126{transform:matrix(0.440923,-0.009700,0.005499,0.249940,0,0);-ms-transform:matrix(0.440923,-0.009700,0.005499,0.249940,0,0);-webkit-transform:matrix(0.440923,-0.009700,0.005499,0.249940,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00126{word-spacing:0.000000px;}
.fc0_c00126{color:transparent;}
.fs9_c00126{font-size:54.613212px;}
.fs14_c00126{font-size:54.619898px;}
.fsc_c00126{font-size:58.800000px;}
.fs7_c00126{font-size:58.814228px;}
.fs11_c00126{font-size:58.821429px;}
.fsf_c00126{font-size:59.850000px;}
.fs5_c00126{font-size:59.864482px;}
.fsb_c00126{font-size:60.900000px;}
.fs12_c00126{font-size:60.922194px;}
.fs13_c00126{font-size:61.972577px;}
.fs4_c00126{font-size:63.015244px;}
.fs15_c00126{font-size:63.022959px;}
.fsd_c00126{font-size:64.050000px;}
.fs6_c00126{font-size:64.065498px;}
.fs10_c00126{font-size:65.100000px;}
.fsa_c00126{font-size:66.150000px;}
.fs0_c00126{font-size:66.166006px;}
.fse_c00126{font-size:67.200000px;}
.fs8_c00126{font-size:68.266515px;}
.fs2_c00126{font-size:69.316769px;}
.fs3_c00126{font-size:71.417277px;}
.fs16_c00126{font-size:73.526786px;}
.fs1_c00126{font-size:76.668547px;}
.y0_c00126{bottom:0.000000px;}
.ye8_c00126{bottom:33.830551px;}
.yec_c00126{bottom:33.830765px;}
.yed_c00126{bottom:33.830799px;}
.ye6_c00126{bottom:33.830946px;}
.ye7_c00126{bottom:33.831073px;}
.ye9_c00126{bottom:33.831085px;}
.yeb_c00126{bottom:33.831087px;}
.yee_c00126{bottom:33.831136px;}
.ye5_c00126{bottom:33.831370px;}
.yea_c00126{bottom:33.831613px;}
.ydf_c00126{bottom:48.029559px;}
.ye0_c00126{bottom:48.564706px;}
.ye1_c00126{bottom:49.490917px;}
.ye2_c00126{bottom:50.213547px;}
.ye3_c00126{bottom:50.913849px;}
.ye4_c00126{bottom:51.399324px;}
.yd8_c00126{bottom:63.966178px;}
.yd9_c00126{bottom:64.850095px;}
.yda_c00126{bottom:65.095242px;}
.ydb_c00126{bottom:65.745873px;}
.ydc_c00126{bottom:66.523125px;}
.ydd_c00126{bottom:66.941322px;}
.yde_c00126{bottom:68.279341px;}
.ycf_c00126{bottom:81.790828px;}
.yd0_c00126{bottom:82.258896px;}
.yd1_c00126{bottom:82.782657px;}
.yd2_c00126{bottom:83.617924px;}
.yd3_c00126{bottom:84.575632px;}
.yd4_c00126{bottom:85.114128px;}
.yd5_c00126{bottom:85.526620px;}
.yd6_c00126{bottom:86.371237px;}
.yd7_c00126{bottom:86.740544px;}
.yc6_c00126{bottom:104.846519px;}
.yc8_c00126{bottom:104.846680px;}
.yca_c00126{bottom:104.846708px;}
.yc7_c00126{bottom:104.847066px;}
.yc9_c00126{bottom:104.847184px;}
.ycb_c00126{bottom:104.847216px;}
.yce_c00126{bottom:104.847306px;}
.ycc_c00126{bottom:104.847822px;}
.ycd_c00126{bottom:104.847999px;}
.yc2_c00126{bottom:126.035224px;}
.yc0_c00126{bottom:126.035286px;}
.yc5_c00126{bottom:126.035471px;}
.yc3_c00126{bottom:126.035582px;}
.yc4_c00126{bottom:126.035636px;}
.ybf_c00126{bottom:126.035749px;}
.yc1_c00126{bottom:126.035873px;}
.ybb_c00126{bottom:140.395140px;}
.ybc_c00126{bottom:140.395428px;}
.yba_c00126{bottom:140.395530px;}
.ybd_c00126{bottom:140.395800px;}
.yb8_c00126{bottom:140.395838px;}
.yb7_c00126{bottom:140.395939px;}
.yb9_c00126{bottom:140.396062px;}
.ybe_c00126{bottom:140.396328px;}
.yaf_c00126{bottom:149.595000px;}
.yb0_c00126{bottom:151.098968px;}
.yb1_c00126{bottom:151.506074px;}
.yb2_c00126{bottom:152.098508px;}
.yb3_c00126{bottom:153.526051px;}
.yb4_c00126{bottom:154.078309px;}
.yb5_c00126{bottom:155.866871px;}
.yb6_c00126{bottom:156.567035px;}
.ya8_c00126{bottom:168.219000px;}
.ya9_c00126{bottom:168.816000px;}
.yaa_c00126{bottom:169.518000px;}
.yab_c00126{bottom:171.309000px;}
.yac_c00126{bottom:172.534500px;}
.yad_c00126{bottom:172.993500px;}
.yae_c00126{bottom:173.425500px;}
.ya1_c00126{bottom:184.690500px;}
.ya2_c00126{bottom:185.664000px;}
.ya3_c00126{bottom:186.154500px;}
.ya4_c00126{bottom:186.694500px;}
.ya5_c00126{bottom:188.122500px;}
.ya6_c00126{bottom:190.065000px;}
.ya7_c00126{bottom:191.344500px;}
.y9a_c00126{bottom:205.471500px;}
.y9b_c00126{bottom:205.795500px;}
.y9c_c00126{bottom:206.317500px;}
.y9d_c00126{bottom:207.184500px;}
.y9e_c00126{bottom:207.351000px;}
.y9f_c00126{bottom:208.171500px;}
.ya0_c00126{bottom:208.521000px;}
.y99_c00126{bottom:225.648000px;}
.y91_c00126{bottom:240.303000px;}
.y92_c00126{bottom:240.787500px;}
.y93_c00126{bottom:241.011000px;}
.y94_c00126{bottom:241.312500px;}
.y95_c00126{bottom:242.119500px;}
.y96_c00126{bottom:242.349000px;}
.y97_c00126{bottom:242.967000px;}
.y98_c00126{bottom:243.442500px;}
.y90_c00126{bottom:260.889000px;}
.y8f_c00126{bottom:278.169000px;}
.y8e_c00126{bottom:296.271000px;}
.y8c_c00126{bottom:313.802067px;}
.y88_c00126{bottom:313.802079px;}
.y8b_c00126{bottom:313.802226px;}
.y86_c00126{bottom:313.802355px;}
.y8d_c00126{bottom:313.802388px;}
.y89_c00126{bottom:313.802421px;}
.y8a_c00126{bottom:313.802649px;}
.y87_c00126{bottom:313.802664px;}
.y7e_c00126{bottom:328.799313px;}
.y7f_c00126{bottom:329.162553px;}
.y80_c00126{bottom:329.760111px;}
.y81_c00126{bottom:330.628623px;}
.y82_c00126{bottom:331.074609px;}
.y83_c00126{bottom:331.392498px;}
.y84_c00126{bottom:332.137041px;}
.y85_c00126{bottom:332.941596px;}
.y74_c00126{bottom:344.987676px;}
.y75_c00126{bottom:345.622314px;}
.y76_c00126{bottom:346.182354px;}
.y77_c00126{bottom:346.865163px;}
.y78_c00126{bottom:347.270097px;}
.y79_c00126{bottom:347.554029px;}
.y7a_c00126{bottom:347.781918px;}
.y7b_c00126{bottom:348.268284px;}
.y7c_c00126{bottom:348.576285px;}
.y7d_c00126{bottom:349.172196px;}
.y6c_c00126{bottom:362.015268px;}
.y6d_c00126{bottom:362.795064px;}
.y6e_c00126{bottom:363.039582px;}
.y6f_c00126{bottom:363.855411px;}
.y70_c00126{bottom:364.167504px;}
.y71_c00126{bottom:364.705341px;}
.y72_c00126{bottom:365.146026px;}
.y73_c00126{bottom:365.396424px;}
.y64_c00126{bottom:379.029528px;}
.y65_c00126{bottom:379.699035px;}
.y66_c00126{bottom:380.053839px;}
.y67_c00126{bottom:380.738007px;}
.y68_c00126{bottom:380.956905px;}
.y69_c00126{bottom:381.468120px;}
.y6a_c00126{bottom:382.125459px;}
.y6b_c00126{bottom:382.549719px;}
.y5a_c00126{bottom:396.851772px;}
.y5b_c00126{bottom:397.188885px;}
.y5c_c00126{bottom:397.684161px;}
.y5d_c00126{bottom:397.948080px;}
.y5e_c00126{bottom:398.296602px;}
.y5f_c00126{bottom:399.008739px;}
.y60_c00126{bottom:399.280038px;}
.y61_c00126{bottom:399.719142px;}
.y62_c00126{bottom:400.305693px;}
.y63_c00126{bottom:400.562298px;}
.y4f_c00126{bottom:411.705336px;}
.y50_c00126{bottom:411.927399px;}
.y51_c00126{bottom:412.829313px;}
.y52_c00126{bottom:413.362497px;}
.y53_c00126{bottom:413.833635px;}
.y54_c00126{bottom:414.618420px;}
.y55_c00126{bottom:415.011423px;}
.y56_c00126{bottom:416.245086px;}
.y57_c00126{bottom:416.580762px;}
.y58_c00126{bottom:416.930019px;}
.y59_c00126{bottom:417.450135px;}
.y46_c00126{bottom:429.530697px;}
.y47_c00126{bottom:429.790383px;}
.y48_c00126{bottom:430.302990px;}
.y49_c00126{bottom:431.685795px;}
.y4a_c00126{bottom:432.045432px;}
.y4b_c00126{bottom:432.631059px;}
.y4c_c00126{bottom:433.883799px;}
.y4d_c00126{bottom:434.759013px;}
.y4e_c00126{bottom:435.120201px;}
.y3d_c00126{bottom:448.971687px;}
.y3e_c00126{bottom:449.388585px;}
.y3f_c00126{bottom:449.673159px;}
.y40_c00126{bottom:450.123408px;}
.y41_c00126{bottom:450.836355px;}
.y42_c00126{bottom:451.042038px;}
.y43_c00126{bottom:451.636713px;}
.y44_c00126{bottom:452.344773px;}
.y45_c00126{bottom:452.622363px;}
.y35_c00126{bottom:463.559160px;}
.y36_c00126{bottom:463.988742px;}
.y37_c00126{bottom:464.824788px;}
.y38_c00126{bottom:465.329712px;}
.y39_c00126{bottom:466.500459px;}
.y3a_c00126{bottom:467.986503px;}
.y3b_c00126{bottom:468.973695px;}
.y3c_c00126{bottom:469.398606px;}
.y2e_c00126{bottom:481.649397px;}
.y2f_c00126{bottom:482.255271px;}
.y30_c00126{bottom:482.471112px;}
.y31_c00126{bottom:483.605931px;}
.y32_c00126{bottom:485.140155px;}
.y33_c00126{bottom:486.085551px;}
.y34_c00126{bottom:487.182102px;}
.y25_c00126{bottom:499.477482px;}
.y26_c00126{bottom:499.713156px;}
.y27_c00126{bottom:500.790924px;}
.y28_c00126{bottom:501.881499px;}
.y29_c00126{bottom:502.127784px;}
.y2a_c00126{bottom:502.493532px;}
.y2b_c00126{bottom:503.753325px;}
.y2c_c00126{bottom:504.195843px;}
.y2d_c00126{bottom:504.467229px;}
.y1c_c00126{bottom:516.762282px;}
.y1d_c00126{bottom:517.188033px;}
.y1e_c00126{bottom:517.557345px;}
.y1f_c00126{bottom:517.863435px;}
.y20_c00126{bottom:518.372970px;}
.y21_c00126{bottom:519.117237px;}
.y22_c00126{bottom:520.368993px;}
.y23_c00126{bottom:521.307645px;}
.y24_c00126{bottom:521.635617px;}
.y15_c00126{bottom:534.316698px;}
.y16_c00126{bottom:535.318140px;}
.y17_c00126{bottom:536.962797px;}
.y18_c00126{bottom:537.917253px;}
.y19_c00126{bottom:538.616778px;}
.y1a_c00126{bottom:538.957512px;}
.y1b_c00126{bottom:539.283756px;}
.yc_c00126{bottom:550.527093px;}
.yd_c00126{bottom:550.985889px;}
.ye_c00126{bottom:552.749052px;}
.yf_c00126{bottom:553.419303px;}
.y10_c00126{bottom:554.102406px;}
.y11_c00126{bottom:555.177087px;}
.y12_c00126{bottom:555.639249px;}
.y13_c00126{bottom:556.075935px;}
.y14_c00126{bottom:557.126709px;}
.y4_c00126{bottom:569.159466px;}
.y5_c00126{bottom:569.553210px;}
.y6_c00126{bottom:570.180168px;}
.y7_c00126{bottom:571.099290px;}
.y8_c00126{bottom:571.326876px;}
.y9_c00126{bottom:572.331570px;}
.ya_c00126{bottom:572.926065px;}
.yb_c00126{bottom:573.144888px;}
.y1_c00126{bottom:587.256000px;}
.y2_c00126{bottom:589.844025px;}
.y3_c00126{bottom:590.913621px;}
.hb_c00126{height:54.613212px;}
.h16_c00126{height:54.619898px;}
.he_c00126{height:58.800000px;}
.h9_c00126{height:58.814228px;}
.h13_c00126{height:58.821429px;}
.h11_c00126{height:59.850000px;}
.h7_c00126{height:59.864482px;}
.hd_c00126{height:60.900000px;}
.h14_c00126{height:60.922194px;}
.h15_c00126{height:61.972577px;}
.h6_c00126{height:63.015244px;}
.h17_c00126{height:63.022959px;}
.hf_c00126{height:64.050000px;}
.h8_c00126{height:64.065498px;}
.h12_c00126{height:65.100000px;}
.hc_c00126{height:66.150000px;}
.h2_c00126{height:66.166006px;}
.h10_c00126{height:67.200000px;}
.ha_c00126{height:68.266515px;}
.h4_c00126{height:69.316769px;}
.h5_c00126{height:71.417277px;}
.h18_c00126{height:73.526786px;}
.h3_c00126{height:76.668547px;}
.h0_c00126{height:632.850000px;}
.h1_c00126{height:633.000000px;}
.w0_c00126{width:371.790000px;}
.w1_c00126{width:372.000000px;}
.x0_c00126{left:0.000000px;}
.x4_c00126{left:33.429366px;}
.xc_c00126{left:34.618155px;}
.x5f_c00126{left:36.108000px;}
.x6f_c00126{left:37.254420px;}
.x71_c00126{left:39.408039px;}
.x62_c00126{left:44.550000px;}
.x20_c00126{left:46.107579px;}
.x34_c00126{left:47.224176px;}
.x54_c00126{left:52.380000px;}
.x69_c00126{left:54.004489px;}
.x5_c00126{left:55.283280px;}
.x19_c00126{left:56.631909px;}
.x3c_c00126{left:60.538503px;}
.x27_c00126{left:64.732977px;}
.x2d_c00126{left:65.993304px;}
.x35_c00126{left:72.843798px;}
.x1a_c00126{left:76.079196px;}
.x52_c00126{left:78.825459px;}
.x42_c00126{left:82.758843px;}
.x55_c00126{left:84.240000px;}
.x2e_c00126{left:87.864627px;}
.x6_c00126{left:90.125349px;}
.x1b_c00126{left:92.175252px;}
.x6a_c00126{left:93.708406px;}
.x29_c00126{left:94.904358px;}
.x76_c00126{left:96.678729px;}
.x3d_c00126{left:98.604027px;}
.x46_c00126{left:99.958371px;}
.x21_c00126{left:102.805308px;}
.x4f_c00126{left:104.075280px;}
.x43_c00126{left:108.095298px;}
.x4b_c00126{left:113.275116px;}
.x77_c00126{left:114.505729px;}
.x37_c00126{left:117.306318px;}
.x1c_c00126{left:119.019534px;}
.x47_c00126{left:120.281826px;}
.x2f_c00126{left:122.450958px;}
.x63_c00126{left:123.723000px;}
.x5c_c00126{left:125.280000px;}
.xd_c00126{left:131.250543px;}
.x28_c00126{left:132.265947px;}
.x74_c00126{left:138.266452px;}
.x5b_c00126{left:140.130000px;}
.x7_c00126{left:141.180837px;}
.x3e_c00126{left:145.678833px;}
.x72_c00126{left:146.885037px;}
.x70_c00126{left:150.695040px;}
.x5d_c00126{left:151.740000px;}
.x8_c00126{left:153.844959px;}
.x44_c00126{left:156.997911px;}
.x1d_c00126{left:158.170608px;}
.xe_c00126{left:160.420416px;}
.x56_c00126{left:165.780000px;}
.x1_c00126{left:166.893000px;}
.x53_c00126{left:171.187641px;}
.x22_c00126{left:173.189961px;}
.x2a_c00126{left:174.686607px;}
.x30_c00126{left:177.300315px;}
.x38_c00126{left:180.055557px;}
.x14_c00126{left:181.519491px;}
.x6d_c00126{left:184.458966px;}
.x4c_c00126{left:185.842803px;}
.x48_c00126{left:188.266275px;}
.xf_c00126{left:190.106256px;}
.x66_c00126{left:191.400000px;}
.x23_c00126{left:192.475248px;}
.x6b_c00126{left:193.913928px;}
.x50_c00126{left:198.000813px;}
.x39_c00126{left:199.692915px;}
.x73_c00126{left:203.204224px;}
.x4d_c00126{left:204.751707px;}
.x60_c00126{left:206.698500px;}
.x9_c00126{left:209.676876px;}
.x67_c00126{left:212.787000px;}
.x49_c00126{left:214.253484px;}
.x57_c00126{left:217.890000px;}
.x4e_c00126{left:219.953550px;}
.x3f_c00126{left:221.281782px;}
.x1e_c00126{left:224.072964px;}
.x6e_c00126{left:231.995593px;}
.x15_c00126{left:234.522144px;}
.x78_c00126{left:235.780560px;}
.x10_c00126{left:236.840733px;}
.x31_c00126{left:238.851492px;}
.xa_c00126{left:242.702280px;}
.x2b_c00126{left:245.440158px;}
.x58_c00126{left:247.320000px;}
.x36_c00126{left:251.911185px;}
.xb_c00126{left:254.899869px;}
.x11_c00126{left:256.961304px;}
.x24_c00126{left:258.811137px;}
.x3a_c00126{left:261.362121px;}
.x64_c00126{left:270.280500px;}
.x16_c00126{left:273.413076px;}
.x12_c00126{left:275.923875px;}
.x3b_c00126{left:278.120847px;}
.x75_c00126{left:279.157260px;}
.x25_c00126{left:282.131688px;}
.x2_c00126{left:284.530500px;}
.x45_c00126{left:286.416681px;}
.x6c_c00126{left:289.527547px;}
.x1f_c00126{left:290.719353px;}
.x17_c00126{left:292.311726px;}
.x32_c00126{left:293.342283px;}
.x26_c00126{left:296.445645px;}
.x61_c00126{left:297.907500px;}
.x79_c00126{left:298.982608px;}
.x40_c00126{left:300.099858px;}
.x68_c00126{left:304.962000px;}
.x59_c00126{left:307.800000px;}
.x5e_c00126{left:308.880000px;}
.x18_c00126{left:310.415310px;}
.x2c_c00126{left:312.628110px;}
.x33_c00126{left:314.691507px;}
.x4a_c00126{left:316.635990px;}
.x41_c00126{left:319.881285px;}
.x13_c00126{left:321.639885px;}
.x5a_c00126{left:324.810000px;}
.x65_c00126{left:325.908000px;}
.x51_c00126{left:331.432809px;}
.x3_c00126{left:333.148500px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
.fs9_c00126{font-size:48.545077pt;}
.fs14_c00126{font-size:48.551021pt;}
.fsc_c00126{font-size:52.266667pt;}
.fs7_c00126{font-size:52.279314pt;}
.fs11_c00126{font-size:52.285714pt;}
.fsf_c00126{font-size:53.200000pt;}
.fs5_c00126{font-size:53.212873pt;}
.fsb_c00126{font-size:54.133333pt;}
.fs12_c00126{font-size:54.153061pt;}
.fs13_c00126{font-size:55.086735pt;}
.fs4_c00126{font-size:56.013550pt;}
.fs15_c00126{font-size:56.020408pt;}
.fsd_c00126{font-size:56.933333pt;}
.fs6_c00126{font-size:56.947110pt;}
.fs10_c00126{font-size:57.866667pt;}
.fsa_c00126{font-size:58.800000pt;}
.fs0_c00126{font-size:58.814228pt;}
.fse_c00126{font-size:59.733333pt;}
.fs8_c00126{font-size:60.681346pt;}
.fs2_c00126{font-size:61.614905pt;}
.fs3_c00126{font-size:63.482024pt;}
.fs16_c00126{font-size:65.357143pt;}
.fs1_c00126{font-size:68.149820pt;}
.y0_c00126{bottom:0.000000pt;}
.ye8_c00126{bottom:30.071601pt;}
.yec_c00126{bottom:30.071791pt;}
.yed_c00126{bottom:30.071821pt;}
.ye6_c00126{bottom:30.071952pt;}
.ye7_c00126{bottom:30.072065pt;}
.ye9_c00126{bottom:30.072076pt;}
.yeb_c00126{bottom:30.072077pt;}
.yee_c00126{bottom:30.072121pt;}
.ye5_c00126{bottom:30.072329pt;}
.yea_c00126{bottom:30.072545pt;}
.ydf_c00126{bottom:42.692941pt;}
.ye0_c00126{bottom:43.168628pt;}
.ye1_c00126{bottom:43.991927pt;}
.ye2_c00126{bottom:44.634264pt;}
.ye3_c00126{bottom:45.256755pt;}
.ye4_c00126{bottom:45.688288pt;}
.yd8_c00126{bottom:56.858825pt;}
.yd9_c00126{bottom:57.644529pt;}
.yda_c00126{bottom:57.862437pt;}
.ydb_c00126{bottom:58.440776pt;}
.ydc_c00126{bottom:59.131667pt;}
.ydd_c00126{bottom:59.503397pt;}
.yde_c00126{bottom:60.692748pt;}
.ycf_c00126{bottom:72.702959pt;}
.yd0_c00126{bottom:73.119019pt;}
.yd1_c00126{bottom:73.584584pt;}
.yd2_c00126{bottom:74.327044pt;}
.yd3_c00126{bottom:75.178340pt;}
.yd4_c00126{bottom:75.657003pt;}
.yd5_c00126{bottom:76.023663pt;}
.yd6_c00126{bottom:76.774433pt;}
.yd7_c00126{bottom:77.102705pt;}
.yc6_c00126{bottom:93.196905pt;}
.yc8_c00126{bottom:93.197049pt;}
.yca_c00126{bottom:93.197073pt;}
.yc7_c00126{bottom:93.197392pt;}
.yc9_c00126{bottom:93.197497pt;}
.ycb_c00126{bottom:93.197525pt;}
.yce_c00126{bottom:93.197605pt;}
.ycc_c00126{bottom:93.198064pt;}
.ycd_c00126{bottom:93.198221pt;}
.yc2_c00126{bottom:112.031311pt;}
.yc0_c00126{bottom:112.031365pt;}
.yc5_c00126{bottom:112.031529pt;}
.yc3_c00126{bottom:112.031628pt;}
.yc4_c00126{bottom:112.031676pt;}
.ybf_c00126{bottom:112.031777pt;}
.yc1_c00126{bottom:112.031887pt;}
.ybb_c00126{bottom:124.795680pt;}
.ybc_c00126{bottom:124.795936pt;}
.yba_c00126{bottom:124.796027pt;}
.ybd_c00126{bottom:124.796267pt;}
.yb8_c00126{bottom:124.796300pt;}
.yb7_c00126{bottom:124.796391pt;}
.yb9_c00126{bottom:124.796500pt;}
.ybe_c00126{bottom:124.796736pt;}
.yaf_c00126{bottom:132.973333pt;}
.yb0_c00126{bottom:134.310193pt;}
.yb1_c00126{bottom:134.672065pt;}
.yb2_c00126{bottom:135.198673pt;}
.yb3_c00126{bottom:136.467601pt;}
.yb4_c00126{bottom:136.958497pt;}
.yb5_c00126{bottom:138.548329pt;}
.yb6_c00126{bottom:139.170697pt;}
.ya8_c00126{bottom:149.528000pt;}
.ya9_c00126{bottom:150.058667pt;}
.yaa_c00126{bottom:150.682667pt;}
.yab_c00126{bottom:152.274667pt;}
.yac_c00126{bottom:153.364000pt;}
.yad_c00126{bottom:153.772000pt;}
.yae_c00126{bottom:154.156000pt;}
.ya1_c00126{bottom:164.169333pt;}
.ya2_c00126{bottom:165.034667pt;}
.ya3_c00126{bottom:165.470667pt;}
.ya4_c00126{bottom:165.950667pt;}
.ya5_c00126{bottom:167.220000pt;}
.ya6_c00126{bottom:168.946667pt;}
.ya7_c00126{bottom:170.084000pt;}
.y9a_c00126{bottom:182.641333pt;}
.y9b_c00126{bottom:182.929333pt;}
.y9c_c00126{bottom:183.393333pt;}
.y9d_c00126{bottom:184.164000pt;}
.y9e_c00126{bottom:184.312000pt;}
.y9f_c00126{bottom:185.041333pt;}
.ya0_c00126{bottom:185.352000pt;}
.y99_c00126{bottom:200.576000pt;}
.y91_c00126{bottom:213.602667pt;}
.y92_c00126{bottom:214.033333pt;}
.y93_c00126{bottom:214.232000pt;}
.y94_c00126{bottom:214.500000pt;}
.y95_c00126{bottom:215.217333pt;}
.y96_c00126{bottom:215.421333pt;}
.y97_c00126{bottom:215.970667pt;}
.y98_c00126{bottom:216.393333pt;}
.y90_c00126{bottom:231.901333pt;}
.y8f_c00126{bottom:247.261333pt;}
.y8e_c00126{bottom:263.352000pt;}
.y8c_c00126{bottom:278.935171pt;}
.y88_c00126{bottom:278.935181pt;}
.y8b_c00126{bottom:278.935312pt;}
.y86_c00126{bottom:278.935427pt;}
.y8d_c00126{bottom:278.935456pt;}
.y89_c00126{bottom:278.935485pt;}
.y8a_c00126{bottom:278.935688pt;}
.y87_c00126{bottom:278.935701pt;}
.y7e_c00126{bottom:292.266056pt;}
.y7f_c00126{bottom:292.588936pt;}
.y80_c00126{bottom:293.120099pt;}
.y81_c00126{bottom:293.892109pt;}
.y82_c00126{bottom:294.288541pt;}
.y83_c00126{bottom:294.571109pt;}
.y84_c00126{bottom:295.232925pt;}
.y85_c00126{bottom:295.948085pt;}
.y74_c00126{bottom:306.655712pt;}
.y75_c00126{bottom:307.219835pt;}
.y76_c00126{bottom:307.717648pt;}
.y77_c00126{bottom:308.324589pt;}
.y78_c00126{bottom:308.684531pt;}
.y79_c00126{bottom:308.936915pt;}
.y7a_c00126{bottom:309.139483pt;}
.y7b_c00126{bottom:309.571808pt;}
.y7c_c00126{bottom:309.845587pt;}
.y7d_c00126{bottom:310.375285pt;}
.y6c_c00126{bottom:321.791349pt;}
.y6d_c00126{bottom:322.484501pt;}
.y6e_c00126{bottom:322.701851pt;}
.y6f_c00126{bottom:323.427032pt;}
.y70_c00126{bottom:323.704448pt;}
.y71_c00126{bottom:324.182525pt;}
.y72_c00126{bottom:324.574245pt;}
.y73_c00126{bottom:324.796821pt;}
.y64_c00126{bottom:336.915136pt;}
.y65_c00126{bottom:337.510253pt;}
.y66_c00126{bottom:337.825635pt;}
.y67_c00126{bottom:338.433784pt;}
.y68_c00126{bottom:338.628360pt;}
.y69_c00126{bottom:339.082773pt;}
.y6a_c00126{bottom:339.667075pt;}
.y6b_c00126{bottom:340.044195pt;}
.y5a_c00126{bottom:352.757131pt;}
.y5b_c00126{bottom:353.056787pt;}
.y5c_c00126{bottom:353.497032pt;}
.y5d_c00126{bottom:353.731627pt;}
.y5e_c00126{bottom:354.041424pt;}
.y5f_c00126{bottom:354.674435pt;}
.y60_c00126{bottom:354.915589pt;}
.y61_c00126{bottom:355.305904pt;}
.y62_c00126{bottom:355.827283pt;}
.y63_c00126{bottom:356.055376pt;}
.y4f_c00126{bottom:365.960299pt;}
.y50_c00126{bottom:366.157688pt;}
.y51_c00126{bottom:366.959389pt;}
.y52_c00126{bottom:367.433331pt;}
.y53_c00126{bottom:367.852120pt;}
.y54_c00126{bottom:368.549707pt;}
.y55_c00126{bottom:368.899043pt;}
.y56_c00126{bottom:369.995632pt;}
.y57_c00126{bottom:370.294011pt;}
.y58_c00126{bottom:370.604461pt;}
.y59_c00126{bottom:371.066787pt;}
.y46_c00126{bottom:381.805064pt;}
.y47_c00126{bottom:382.035896pt;}
.y48_c00126{bottom:382.491547pt;}
.y49_c00126{bottom:383.720707pt;}
.y4a_c00126{bottom:384.040384pt;}
.y4b_c00126{bottom:384.560941pt;}
.y4c_c00126{bottom:385.674488pt;}
.y4d_c00126{bottom:386.452456pt;}
.y4e_c00126{bottom:386.773512pt;}
.y3d_c00126{bottom:399.085944pt;}
.y3e_c00126{bottom:399.456520pt;}
.y3f_c00126{bottom:399.709475pt;}
.y40_c00126{bottom:400.109696pt;}
.y41_c00126{bottom:400.743427pt;}
.y42_c00126{bottom:400.926256pt;}
.y43_c00126{bottom:401.454856pt;}
.y44_c00126{bottom:402.084243pt;}
.y45_c00126{bottom:402.330989pt;}
.y35_c00126{bottom:412.052587pt;}
.y36_c00126{bottom:412.434437pt;}
.y37_c00126{bottom:413.177589pt;}
.y38_c00126{bottom:413.626411pt;}
.y39_c00126{bottom:414.667075pt;}
.y3a_c00126{bottom:415.988003pt;}
.y3b_c00126{bottom:416.865507pt;}
.y3c_c00126{bottom:417.243205pt;}
.y2e_c00126{bottom:428.132797pt;}
.y2f_c00126{bottom:428.671352pt;}
.y30_c00126{bottom:428.863211pt;}
.y31_c00126{bottom:429.871939pt;}
.y32_c00126{bottom:431.235693pt;}
.y33_c00126{bottom:432.076045pt;}
.y34_c00126{bottom:433.050757pt;}
.y25_c00126{bottom:443.979984pt;}
.y26_c00126{bottom:444.189472pt;}
.y27_c00126{bottom:445.147488pt;}
.y28_c00126{bottom:446.116888pt;}
.y29_c00126{bottom:446.335808pt;}
.y2a_c00126{bottom:446.660917pt;}
.y2b_c00126{bottom:447.780733pt;}
.y2c_c00126{bottom:448.174083pt;}
.y2d_c00126{bottom:448.415315pt;}
.y1c_c00126{bottom:459.344251pt;}
.y1d_c00126{bottom:459.722696pt;}
.y1e_c00126{bottom:460.050973pt;}
.y1f_c00126{bottom:460.323053pt;}
.y20_c00126{bottom:460.775973pt;}
.y21_c00126{bottom:461.437544pt;}
.y22_c00126{bottom:462.550216pt;}
.y23_c00126{bottom:463.384573pt;}
.y24_c00126{bottom:463.676104pt;}
.y15_c00126{bottom:474.948176pt;}
.y16_c00126{bottom:475.838347pt;}
.y17_c00126{bottom:477.300264pt;}
.y18_c00126{bottom:478.148669pt;}
.y19_c00126{bottom:478.770469pt;}
.y1a_c00126{bottom:479.073344pt;}
.y1b_c00126{bottom:479.363339pt;}
.yc_c00126{bottom:489.357416pt;}
.yd_c00126{bottom:489.765235pt;}
.ye_c00126{bottom:491.332491pt;}
.yf_c00126{bottom:491.928269pt;}
.y10_c00126{bottom:492.535472pt;}
.y11_c00126{bottom:493.490744pt;}
.y12_c00126{bottom:493.901555pt;}
.y13_c00126{bottom:494.289720pt;}
.y14_c00126{bottom:495.223741pt;}
.y4_c00126{bottom:505.919525pt;}
.y5_c00126{bottom:506.269520pt;}
.y6_c00126{bottom:506.826816pt;}
.y7_c00126{bottom:507.643813pt;}
.y8_c00126{bottom:507.846112pt;}
.y9_c00126{bottom:508.739173pt;}
.ya_c00126{bottom:509.267613pt;}
.yb_c00126{bottom:509.462123pt;}
.y1_c00126{bottom:522.005333pt;}
.y2_c00126{bottom:524.305800pt;}
.y3_c00126{bottom:525.256552pt;}
.hb_c00126{height:48.545077pt;}
.h16_c00126{height:48.551021pt;}
.he_c00126{height:52.266667pt;}
.h9_c00126{height:52.279314pt;}
.h13_c00126{height:52.285714pt;}
.h11_c00126{height:53.200000pt;}
.h7_c00126{height:53.212873pt;}
.hd_c00126{height:54.133333pt;}
.h14_c00126{height:54.153061pt;}
.h15_c00126{height:55.086735pt;}
.h6_c00126{height:56.013550pt;}
.h17_c00126{height:56.020408pt;}
.hf_c00126{height:56.933333pt;}
.h8_c00126{height:56.947110pt;}
.h12_c00126{height:57.866667pt;}
.hc_c00126{height:58.800000pt;}
.h2_c00126{height:58.814228pt;}
.h10_c00126{height:59.733333pt;}
.ha_c00126{height:60.681346pt;}
.h4_c00126{height:61.614905pt;}
.h5_c00126{height:63.482024pt;}
.h18_c00126{height:65.357143pt;}
.h3_c00126{height:68.149820pt;}
.h0_c00126{height:562.533333pt;}
.h1_c00126{height:562.666667pt;}
.w0_c00126{width:330.480000pt;}
.w1_c00126{width:330.666667pt;}
.x0_c00126{left:0.000000pt;}
.x4_c00126{left:29.714992pt;}
.xc_c00126{left:30.771693pt;}
.x5f_c00126{left:32.096000pt;}
.x6f_c00126{left:33.115040pt;}
.x71_c00126{left:35.029368pt;}
.x62_c00126{left:39.600000pt;}
.x20_c00126{left:40.984515pt;}
.x34_c00126{left:41.977045pt;}
.x54_c00126{left:46.560000pt;}
.x69_c00126{left:48.003991pt;}
.x5_c00126{left:49.140693pt;}
.x19_c00126{left:50.339475pt;}
.x3c_c00126{left:53.812003pt;}
.x27_c00126{left:57.540424pt;}
.x2d_c00126{left:58.660715pt;}
.x35_c00126{left:64.750043pt;}
.x1a_c00126{left:67.625952pt;}
.x52_c00126{left:70.067075pt;}
.x42_c00126{left:73.563416pt;}
.x55_c00126{left:74.880000pt;}
.x2e_c00126{left:78.101891pt;}
.x6_c00126{left:80.111421pt;}
.x1b_c00126{left:81.933557pt;}
.x6a_c00126{left:83.296361pt;}
.x29_c00126{left:84.359429pt;}
.x76_c00126{left:85.936648pt;}
.x3d_c00126{left:87.648024pt;}
.x46_c00126{left:88.851885pt;}
.x21_c00126{left:91.382496pt;}
.x4f_c00126{left:92.511360pt;}
.x43_c00126{left:96.084709pt;}
.x4b_c00126{left:100.688992pt;}
.x77_c00126{left:101.782871pt;}
.x37_c00126{left:104.272283pt;}
.x1c_c00126{left:105.795141pt;}
.x47_c00126{left:106.917179pt;}
.x2f_c00126{left:108.845296pt;}
.x63_c00126{left:109.976000pt;}
.x5c_c00126{left:111.360000pt;}
.xd_c00126{left:116.667149pt;}
.x28_c00126{left:117.569731pt;}
.x74_c00126{left:122.903513pt;}
.x5b_c00126{left:124.560000pt;}
.x7_c00126{left:125.494077pt;}
.x3e_c00126{left:129.492296pt;}
.x72_c00126{left:130.564477pt;}
.x70_c00126{left:133.951147pt;}
.x5d_c00126{left:134.880000pt;}
.x8_c00126{left:136.751075pt;}
.x44_c00126{left:139.553699pt;}
.x1d_c00126{left:140.596096pt;}
.xe_c00126{left:142.595925pt;}
.x56_c00126{left:147.360000pt;}
.x1_c00126{left:148.349333pt;}
.x53_c00126{left:152.166792pt;}
.x22_c00126{left:153.946632pt;}
.x2a_c00126{left:155.276984pt;}
.x30_c00126{left:157.600280pt;}
.x38_c00126{left:160.049384pt;}
.x14_c00126{left:161.350659pt;}
.x6d_c00126{left:163.963525pt;}
.x4c_c00126{left:165.193603pt;}
.x48_c00126{left:167.347800pt;}
.xf_c00126{left:168.983339pt;}
.x66_c00126{left:170.133333pt;}
.x23_c00126{left:171.089109pt;}
.x6b_c00126{left:172.367936pt;}
.x50_c00126{left:176.000723pt;}
.x39_c00126{left:177.504813pt;}
.x73_c00126{left:180.625977pt;}
.x4d_c00126{left:182.001517pt;}
.x60_c00126{left:183.732000pt;}
.x9_c00126{left:186.379445pt;}
.x67_c00126{left:189.144000pt;}
.x49_c00126{left:190.447541pt;}
.x57_c00126{left:193.680000pt;}
.x4e_c00126{left:195.514267pt;}
.x3f_c00126{left:196.694917pt;}
.x1e_c00126{left:199.175968pt;}
.x6e_c00126{left:206.218305pt;}
.x15_c00126{left:208.464128pt;}
.x78_c00126{left:209.582720pt;}
.x10_c00126{left:210.525096pt;}
.x31_c00126{left:212.312437pt;}
.xa_c00126{left:215.735360pt;}
.x2b_c00126{left:218.169029pt;}
.x58_c00126{left:219.840000pt;}
.x36_c00126{left:223.921053pt;}
.xb_c00126{left:226.577661pt;}
.x11_c00126{left:228.410048pt;}
.x24_c00126{left:230.054344pt;}
.x3a_c00126{left:232.321885pt;}
.x64_c00126{left:240.249333pt;}
.x16_c00126{left:243.033845pt;}
.x12_c00126{left:245.265667pt;}
.x3b_c00126{left:247.218531pt;}
.x75_c00126{left:248.139787pt;}
.x25_c00126{left:250.783723pt;}
.x2_c00126{left:252.916000pt;}
.x45_c00126{left:254.592605pt;}
.x6c_c00126{left:257.357820pt;}
.x1f_c00126{left:258.417203pt;}
.x17_c00126{left:259.832645pt;}
.x32_c00126{left:260.748696pt;}
.x26_c00126{left:263.507240pt;}
.x61_c00126{left:264.806667pt;}
.x79_c00126{left:265.762319pt;}
.x40_c00126{left:266.755429pt;}
.x68_c00126{left:271.077333pt;}
.x59_c00126{left:273.600000pt;}
.x5e_c00126{left:274.560000pt;}
.x18_c00126{left:275.924720pt;}
.x2c_c00126{left:277.891653pt;}
.x33_c00126{left:279.725784pt;}
.x4a_c00126{left:281.454213pt;}
.x41_c00126{left:284.338920pt;}
.x13_c00126{left:285.902120pt;}
.x5a_c00126{left:288.720000pt;}
.x65_c00126{left:289.696000pt;}
.x51_c00126{left:294.606941pt;}
.x3_c00126{left:296.132000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00127 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00127 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00127 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00127 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00127.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m84_c00127{transform:matrix(0.044129,0.001368,-0.007746,0.249880,0,0);-ms-transform:matrix(0.044129,0.001368,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.044129,0.001368,-0.007746,0.249880,0,0);}
.m33_c00127{transform:matrix(0.063156,0.001326,-0.005249,0.249945,0,0);-ms-transform:matrix(0.063156,0.001326,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.063156,0.001326,-0.005249,0.249945,0,0);}
.m88_c00127{transform:matrix(0.071869,0.001940,-0.006748,0.249909,0,0);-ms-transform:matrix(0.071869,0.001940,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.071869,0.001940,-0.006748,0.249909,0,0);}
.m5f_c00127{transform:matrix(0.079766,0.002795,-0.008753,0.249847,0,0);-ms-transform:matrix(0.079766,0.002795,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.079766,0.002795,-0.008753,0.249847,0,0);}
.mc2_c00127{transform:matrix(0.135201,0.003650,-0.006748,0.249909,0,0);-ms-transform:matrix(0.135201,0.003650,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.135201,0.003650,-0.006748,0.249909,0,0);}
.med_c00127{transform:matrix(0.136105,0.003675,-0.006748,0.249909,0,0);-ms-transform:matrix(0.136105,0.003675,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.136105,0.003675,-0.006748,0.249909,0,0);}
.m7_c00127{transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);}
.mbc_c00127{transform:matrix(0.139369,0.003763,-0.006748,0.249909,0,0);-ms-transform:matrix(0.139369,0.003763,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.139369,0.003763,-0.006748,0.249909,0,0);}
.mb0_c00127{transform:matrix(0.141328,0.003816,-0.006748,0.249909,0,0);-ms-transform:matrix(0.141328,0.003816,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.141328,0.003816,-0.006748,0.249909,0,0);}
.m24_c00127{transform:matrix(0.149627,0.003142,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149627,0.003142,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149627,0.003142,-0.005249,0.249945,0,0);}
.m73_c00127{transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);-ms-transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.150043,0.005257,-0.008753,0.249847,0,0);}
.m85_c00127{transform:matrix(0.150743,0.004673,-0.007746,0.249880,0,0);-ms-transform:matrix(0.150743,0.004673,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.150743,0.004673,-0.007746,0.249880,0,0);}
.m95_c00127{transform:matrix(0.151400,0.004088,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151400,0.004088,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151400,0.004088,-0.006748,0.249909,0,0);}
.m99_c00127{transform:matrix(0.153314,0.004139,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153314,0.004139,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153314,0.004139,-0.006748,0.249909,0,0);}
.m9c_c00127{transform:matrix(0.154014,0.004158,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154014,0.004158,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154014,0.004158,-0.006748,0.249909,0,0);}
.md4_c00127{transform:matrix(0.155703,0.004204,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155703,0.004204,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155703,0.004204,-0.006748,0.249909,0,0);}
.m58_c00127{transform:matrix(0.155729,0.005456,-0.008753,0.249847,0,0);-ms-transform:matrix(0.155729,0.005456,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.155729,0.005456,-0.008753,0.249847,0,0);}
.m0_c00127{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.157895,0.003316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157895,0.003316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157895,0.003316,-0.005249,0.249945,0,0);}
.md5_c00127{transform:matrix(0.159342,0.004302,-0.006748,0.249909,0,0);-ms-transform:matrix(0.159342,0.004302,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.159342,0.004302,-0.006748,0.249909,0,0);}
.m5b_c00127{transform:matrix(0.160122,0.005610,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160122,0.005610,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160122,0.005610,-0.008753,0.249847,0,0);}
.m19_c00127{transform:matrix(0.160322,0.004489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160322,0.004489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160322,0.004489,-0.006997,0.249902,0,0);}
.md2_c00127{transform:matrix(0.160467,0.004333,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160467,0.004333,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160467,0.004333,-0.006748,0.249909,0,0);}
.mc6_c00127{transform:matrix(0.160631,0.004337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160631,0.004337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160631,0.004337,-0.006748,0.249909,0,0);}
.mac_c00127{transform:matrix(0.160946,0.004346,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160946,0.004346,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160946,0.004346,-0.006748,0.249909,0,0);}
.m9b_c00127{transform:matrix(0.161431,0.004359,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161431,0.004359,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161431,0.004359,-0.006748,0.249909,0,0);}
.mc8_c00127{transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);}
.mc5_c00127{transform:matrix(0.161796,0.004368,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161796,0.004368,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161796,0.004368,-0.006748,0.249909,0,0);}
.m4_c00127{transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);}
.me0_c00127{transform:matrix(0.162251,0.004381,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162251,0.004381,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162251,0.004381,-0.006748,0.249909,0,0);}
.m3_c00127{transform:matrix(0.162905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162905,0.000000,0.000000,0.250000,0,0);}
.m96_c00127{transform:matrix(0.163335,0.004410,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163335,0.004410,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163335,0.004410,-0.006748,0.249909,0,0);}
.m76_c00127{transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163445,0.005726,-0.008753,0.249847,0,0);}
.m1_c00127{transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.mea_c00127{transform:matrix(0.164680,0.004446,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164680,0.004446,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164680,0.004446,-0.006748,0.249909,0,0);}
.m92_c00127{transform:matrix(0.165925,0.004480,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165925,0.004480,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165925,0.004480,-0.006748,0.249909,0,0);}
.m9_c00127{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.mef_c00127{transform:matrix(0.167764,0.004530,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167764,0.004530,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167764,0.004530,-0.006748,0.249909,0,0);}
.m8d_c00127{transform:matrix(0.168054,0.004537,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168054,0.004537,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168054,0.004537,-0.006748,0.249909,0,0);}
.me_c00127{transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);}
.ma9_c00127{transform:matrix(0.168229,0.004542,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168229,0.004542,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168229,0.004542,-0.006748,0.249909,0,0);}
.md6_c00127{transform:matrix(0.169238,0.004569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169238,0.004569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169238,0.004569,-0.006748,0.249909,0,0);}
.m50_c00127{transform:matrix(0.169836,0.005950,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169836,0.005950,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169836,0.005950,-0.008753,0.249847,0,0);}
.m22_c00127{transform:matrix(0.170097,0.003572,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170097,0.003572,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170097,0.003572,-0.005249,0.249945,0,0);}
.md_c00127{transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.170590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170590,0.000000,0.000000,0.250000,0,0);}
.mc0_c00127{transform:matrix(0.170703,0.004609,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170703,0.004609,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170703,0.004609,-0.006748,0.249909,0,0);}
.mb2_c00127{transform:matrix(0.171008,0.004617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171008,0.004617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171008,0.004617,-0.006748,0.249909,0,0);}
.mb_c00127{transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.172392,0.003620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172392,0.003620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172392,0.003620,-0.005249,0.249945,0,0);}
.m5_c00127{transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);}
.m65_c00127{transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172864,0.006056,-0.008753,0.249847,0,0);}
.m1f_c00127{transform:matrix(0.173382,0.004855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173382,0.004855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173382,0.004855,-0.006997,0.249902,0,0);}
.m7f_c00127{transform:matrix(0.173472,0.005378,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173472,0.005378,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173472,0.005378,-0.007746,0.249880,0,0);}
.mbf_c00127{transform:matrix(0.173597,0.004687,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173597,0.004687,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173597,0.004687,-0.006748,0.249909,0,0);}
.m6c_c00127{transform:matrix(0.174153,0.006101,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174153,0.006101,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174153,0.006101,-0.008753,0.249847,0,0);}
.me9_c00127{transform:matrix(0.174571,0.004713,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174571,0.004713,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174571,0.004713,-0.006748,0.249909,0,0);}
.m39_c00127{transform:matrix(0.174728,0.006122,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174728,0.006122,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174728,0.006122,-0.008753,0.249847,0,0);}
.m94_c00127{transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);}
.m59_c00127{transform:matrix(0.175927,0.006164,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175927,0.006164,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175927,0.006164,-0.008753,0.249847,0,0);}
.mdd_c00127{transform:matrix(0.175981,0.004751,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175981,0.004751,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175981,0.004751,-0.006748,0.249909,0,0);}
.mae_c00127{transform:matrix(0.176336,0.004761,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176336,0.004761,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176336,0.004761,-0.006748,0.249909,0,0);}
.m31_c00127{transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);}
.m53_c00127{transform:matrix(0.176607,0.006187,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176607,0.006187,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176607,0.006187,-0.008753,0.249847,0,0);}
.ma6_c00127{transform:matrix(0.176801,0.004774,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176801,0.004774,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176801,0.004774,-0.006748,0.249909,0,0);}
.mb3_c00127{transform:matrix(0.176856,0.004775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176856,0.004775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176856,0.004775,-0.006748,0.249909,0,0);}
.mc1_c00127{transform:matrix(0.176946,0.004778,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176946,0.004778,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176946,0.004778,-0.006748,0.249909,0,0);}
.m5c_c00127{transform:matrix(0.178955,0.006270,-0.008753,0.249847,0,0);-ms-transform:matrix(0.178955,0.006270,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.178955,0.006270,-0.008753,0.249847,0,0);}
.m41_c00127{transform:matrix(0.179135,0.006276,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179135,0.006276,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179135,0.006276,-0.008753,0.249847,0,0);}
.m74_c00127{transform:matrix(0.179270,0.006281,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179270,0.006281,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179270,0.006281,-0.008753,0.249847,0,0);}
.maf_c00127{transform:matrix(0.179400,0.004844,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179400,0.004844,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179400,0.004844,-0.006748,0.249909,0,0);}
.m25_c00127{transform:matrix(0.179435,0.003768,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179435,0.003768,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179435,0.003768,-0.005249,0.249945,0,0);}
.m36_c00127{transform:matrix(0.179495,0.006289,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179495,0.006289,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179495,0.006289,-0.008753,0.249847,0,0);}
.meb_c00127{transform:matrix(0.179510,0.004847,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179510,0.004847,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179510,0.004847,-0.006748,0.249909,0,0);}
.mb4_c00127{transform:matrix(0.180114,0.004863,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180114,0.004863,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180114,0.004863,-0.006748,0.249909,0,0);}
.me7_c00127{transform:matrix(0.180209,0.004866,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180209,0.004866,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180209,0.004866,-0.006748,0.249909,0,0);}
.m46_c00127{transform:matrix(0.180404,0.006320,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180404,0.006320,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180404,0.006320,-0.008753,0.249847,0,0);}
.m32_c00127{transform:matrix(0.180750,0.003796,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180750,0.003796,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180750,0.003796,-0.005249,0.249945,0,0);}
.m6f_c00127{transform:matrix(0.181604,0.006362,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181604,0.006362,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181604,0.006362,-0.008753,0.249847,0,0);}
.m4e_c00127{transform:matrix(0.182543,0.006395,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182543,0.006395,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182543,0.006395,-0.008753,0.249847,0,0);}
.m82_c00127{transform:matrix(0.182552,0.005659,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182552,0.005659,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182552,0.005659,-0.007746,0.249880,0,0);}
.m4c_c00127{transform:matrix(0.182688,0.006400,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182688,0.006400,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182688,0.006400,-0.008753,0.249847,0,0);}
.m93_c00127{transform:matrix(0.182778,0.004935,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182778,0.004935,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182778,0.004935,-0.006748,0.249909,0,0);}
.mb1_c00127{transform:matrix(0.182993,0.004941,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182993,0.004941,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182993,0.004941,-0.006748,0.249909,0,0);}
.ma8_c00127{transform:matrix(0.183218,0.004947,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183218,0.004947,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183218,0.004947,-0.006748,0.249909,0,0);}
.m8f_c00127{transform:matrix(0.183463,0.004954,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183463,0.004954,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183463,0.004954,-0.006748,0.249909,0,0);}
.m78_c00127{transform:matrix(0.183477,0.006428,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183477,0.006428,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183477,0.006428,-0.008753,0.249847,0,0);}
.mbb_c00127{transform:matrix(0.183523,0.004955,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183523,0.004955,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183523,0.004955,-0.006748,0.249909,0,0);}
.m68_c00127{transform:matrix(0.183537,0.006430,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183537,0.006430,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183537,0.006430,-0.008753,0.249847,0,0);}
.mec_c00127{transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);}
.m66_c00127{transform:matrix(0.184277,0.006456,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184277,0.006456,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184277,0.006456,-0.008753,0.249847,0,0);}
.mc_c00127{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{transform:matrix(0.184597,0.006467,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184597,0.006467,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184597,0.006467,-0.008753,0.249847,0,0);}
.mba_c00127{transform:matrix(0.184963,0.004994,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184963,0.004994,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184963,0.004994,-0.006748,0.249909,0,0);}
.m89_c00127{transform:matrix(0.185327,0.005004,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185327,0.005004,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185327,0.005004,-0.006748,0.249909,0,0);}
.mbe_c00127{transform:matrix(0.185577,0.005011,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185577,0.005011,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185577,0.005011,-0.006748,0.249909,0,0);}
.m56_c00127{transform:matrix(0.185806,0.006510,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185806,0.006510,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185806,0.006510,-0.008753,0.249847,0,0);}
.m35_c00127{transform:matrix(0.186006,0.006517,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186006,0.006517,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186006,0.006517,-0.008753,0.249847,0,0);}
.mcb_c00127{transform:matrix(0.186027,0.005023,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186027,0.005023,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186027,0.005023,-0.006748,0.249909,0,0);}
.me8_c00127{transform:matrix(0.186752,0.005042,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186752,0.005042,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186752,0.005042,-0.006748,0.249909,0,0);}
.m8e_c00127{transform:matrix(0.187302,0.005057,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187302,0.005057,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187302,0.005057,-0.006748,0.249909,0,0);}
.m51_c00127{transform:matrix(0.187420,0.006566,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187420,0.006566,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187420,0.006566,-0.008753,0.249847,0,0);}
.m1e_c00127{transform:matrix(0.187736,0.005257,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187736,0.005257,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187736,0.005257,-0.006997,0.249902,0,0);}
.m7b_c00127{transform:matrix(0.187800,0.006580,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187800,0.006580,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187800,0.006580,-0.008753,0.249847,0,0);}
.m5a_c00127{transform:matrix(0.188185,0.006593,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188185,0.006593,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188185,0.006593,-0.008753,0.249847,0,0);}
.m75_c00127{transform:matrix(0.188354,0.006599,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188354,0.006599,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188354,0.006599,-0.008753,0.249847,0,0);}
.m27_c00127{transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);}
.m86_c00127{transform:matrix(0.188931,0.005101,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188931,0.005101,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188931,0.005101,-0.006748,0.249909,0,0);}
.m57_c00127{transform:matrix(0.189184,0.006628,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189184,0.006628,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189184,0.006628,-0.008753,0.249847,0,0);}
.m13_c00127{transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);}
.mc9_c00127{transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);}
.m9e_c00127{transform:matrix(0.189786,0.005124,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189786,0.005124,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189786,0.005124,-0.006748,0.249909,0,0);}
.m79_c00127{transform:matrix(0.190118,0.006661,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190118,0.006661,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190118,0.006661,-0.008753,0.249847,0,0);}
.m54_c00127{transform:matrix(0.190433,0.006672,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190433,0.006672,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190433,0.006672,-0.008753,0.249847,0,0);}
.mb5_c00127{transform:matrix(0.190601,0.005146,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190601,0.005146,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190601,0.005146,-0.006748,0.249909,0,0);}
.mee_c00127{transform:matrix(0.191065,0.005159,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191065,0.005159,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191065,0.005159,-0.006748,0.249909,0,0);}
.mcd_c00127{transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);}
.mdf_c00127{transform:matrix(0.191530,0.005171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191530,0.005171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191530,0.005171,-0.006748,0.249909,0,0);}
.m3b_c00127{transform:matrix(0.191687,0.006716,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191687,0.006716,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191687,0.006716,-0.008753,0.249847,0,0);}
.mca_c00127{transform:matrix(0.191750,0.005177,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191750,0.005177,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191750,0.005177,-0.006748,0.249909,0,0);}
.mcf_c00127{transform:matrix(0.191920,0.005182,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191920,0.005182,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191920,0.005182,-0.006748,0.249909,0,0);}
.mc3_c00127{transform:matrix(0.191930,0.005182,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191930,0.005182,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191930,0.005182,-0.006748,0.249909,0,0);}
.mbd_c00127{transform:matrix(0.192710,0.005203,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192710,0.005203,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192710,0.005203,-0.006748,0.249909,0,0);}
.mb7_c00127{transform:matrix(0.192795,0.005205,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192795,0.005205,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192795,0.005205,-0.006748,0.249909,0,0);}
.m8c_c00127{transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);}
.m63_c00127{transform:matrix(0.192827,0.006756,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192827,0.006756,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192827,0.006756,-0.008753,0.249847,0,0);}
.m1a_c00127{transform:matrix(0.192884,0.005401,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192884,0.005401,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192884,0.005401,-0.006997,0.249902,0,0);}
.md3_c00127{transform:matrix(0.192920,0.005209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192920,0.005209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192920,0.005209,-0.006748,0.249909,0,0);}
.mdc_c00127{transform:matrix(0.193235,0.005217,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193235,0.005217,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193235,0.005217,-0.006748,0.249909,0,0);}
.m16_c00127{transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{transform:matrix(0.193666,0.006785,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193666,0.006785,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193666,0.006785,-0.008753,0.249847,0,0);}
.m8b_c00127{transform:matrix(0.193874,0.005235,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193874,0.005235,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193874,0.005235,-0.006748,0.249909,0,0);}
.m80_c00127{transform:matrix(0.193992,0.006014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193992,0.006014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193992,0.006014,-0.007746,0.249880,0,0);}
.m97_c00127{transform:matrix(0.194004,0.005238,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194004,0.005238,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194004,0.005238,-0.006748,0.249909,0,0);}
.m69_c00127{transform:matrix(0.194456,0.006813,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194456,0.006813,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194456,0.006813,-0.008753,0.249847,0,0);}
.mab_c00127{transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);}
.md8_c00127{transform:matrix(0.194744,0.005258,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194744,0.005258,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194744,0.005258,-0.006748,0.249909,0,0);}
.m6a_c00127{transform:matrix(0.194930,0.006829,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194930,0.006829,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194930,0.006829,-0.008753,0.249847,0,0);}
.mf_c00127{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.ma7_c00127{transform:matrix(0.195539,0.005280,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195539,0.005280,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195539,0.005280,-0.006748,0.249909,0,0);}
.m87_c00127{transform:matrix(0.196523,0.005306,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196523,0.005306,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196523,0.005306,-0.006748,0.249909,0,0);}
.m2c_c00127{transform:matrix(0.197137,0.004140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197137,0.004140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197137,0.004140,-0.005249,0.249945,0,0);}
.m12_c00127{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.m9f_c00127{transform:matrix(0.197668,0.005337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197668,0.005337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197668,0.005337,-0.006748,0.249909,0,0);}
.md0_c00127{transform:matrix(0.197838,0.005342,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197838,0.005342,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197838,0.005342,-0.006748,0.249909,0,0);}
.m72_c00127{transform:matrix(0.198938,0.006970,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198938,0.006970,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198938,0.006970,-0.008753,0.249847,0,0);}
.m15_c00127{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.199707,0.006997,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199707,0.006997,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199707,0.006997,-0.008753,0.249847,0,0);}
.m3a_c00127{transform:matrix(0.199837,0.007001,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199837,0.007001,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199837,0.007001,-0.008753,0.249847,0,0);}
.m61_c00127{transform:matrix(0.199977,0.007006,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199977,0.007006,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199977,0.007006,-0.008753,0.249847,0,0);}
.m3d_c00127{transform:matrix(0.200027,0.007008,-0.008753,0.249847,0,0);-ms-transform:matrix(0.200027,0.007008,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.200027,0.007008,-0.008753,0.249847,0,0);}
.m9a_c00127{transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200057,0.005402,-0.006748,0.249909,0,0);}
.m98_c00127{transform:matrix(0.200092,0.005402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200092,0.005402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200092,0.005402,-0.006748,0.249909,0,0);}
.m8a_c00127{transform:matrix(0.200687,0.005419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200687,0.005419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200687,0.005419,-0.006748,0.249909,0,0);}
.m17_c00127{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m67_c00127{transform:matrix(0.201376,0.007055,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201376,0.007055,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201376,0.007055,-0.008753,0.249847,0,0);}
.m62_c00127{transform:matrix(0.201521,0.007060,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201521,0.007060,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201521,0.007060,-0.008753,0.249847,0,0);}
.m38_c00127{transform:matrix(0.201886,0.007073,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201886,0.007073,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201886,0.007073,-0.008753,0.249847,0,0);}
.maa_c00127{transform:matrix(0.202101,0.005457,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202101,0.005457,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202101,0.005457,-0.006748,0.249909,0,0);}
.me4_c00127{transform:matrix(0.203176,0.005486,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203176,0.005486,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203176,0.005486,-0.006748,0.249909,0,0);}
.mde_c00127{transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);}
.m7d_c00127{transform:matrix(0.203862,0.006320,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203862,0.006320,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203862,0.006320,-0.007746,0.249880,0,0);}
.m23_c00127{transform:matrix(0.203870,0.004281,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203870,0.004281,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203870,0.004281,-0.005249,0.249945,0,0);}
.m91_c00127{transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204151,0.005512,-0.006748,0.249909,0,0);}
.m18_c00127{transform:matrix(0.204245,0.005719,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204245,0.005719,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204245,0.005719,-0.006997,0.249902,0,0);}
.mc7_c00127{transform:matrix(0.204610,0.005524,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204610,0.005524,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204610,0.005524,-0.006748,0.249909,0,0);}
.m4a_c00127{transform:matrix(0.205044,0.007184,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205044,0.007184,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205044,0.007184,-0.008753,0.249847,0,0);}
.mdb_c00127{transform:matrix(0.205390,0.005546,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205390,0.005546,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205390,0.005546,-0.006748,0.249909,0,0);}
.mf0_c00127{transform:matrix(0.205440,0.005547,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205440,0.005547,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205440,0.005547,-0.006748,0.249909,0,0);}
.mc4_c00127{transform:matrix(0.205495,0.005548,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205495,0.005548,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205495,0.005548,-0.006748,0.249909,0,0);}
.mda_c00127{transform:matrix(0.206055,0.005563,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206055,0.005563,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206055,0.005563,-0.006748,0.249909,0,0);}
.mad_c00127{transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206245,0.005569,-0.006748,0.249909,0,0);}
.me3_c00127{transform:matrix(0.206305,0.005570,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206305,0.005570,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206305,0.005570,-0.006748,0.249909,0,0);}
.m2e_c00127{transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);}
.m44_c00127{transform:matrix(0.206533,0.007236,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206533,0.007236,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206533,0.007236,-0.008753,0.249847,0,0);}
.m2f_c00127{transform:matrix(0.206589,0.004338,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206589,0.004338,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206589,0.004338,-0.005249,0.249945,0,0);}
.ma4_c00127{transform:matrix(0.207504,0.005603,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207504,0.005603,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207504,0.005603,-0.006748,0.249909,0,0);}
.m1d_c00127{transform:matrix(0.207744,0.005817,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207744,0.005817,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207744,0.005817,-0.006997,0.249902,0,0);}
.m71_c00127{transform:matrix(0.207842,0.007282,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207842,0.007282,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207842,0.007282,-0.008753,0.249847,0,0);}
.m43_c00127{transform:matrix(0.208292,0.007298,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208292,0.007298,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208292,0.007298,-0.008753,0.249847,0,0);}
.m2b_c00127{transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);}
.m3f_c00127{transform:matrix(0.209162,0.007328,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209162,0.007328,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209162,0.007328,-0.008753,0.249847,0,0);}
.me1_c00127{transform:matrix(0.209839,0.005666,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209839,0.005666,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209839,0.005666,-0.006748,0.249909,0,0);}
.md9_c00127{transform:matrix(0.209983,0.005670,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209983,0.005670,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209983,0.005670,-0.006748,0.249909,0,0);}
.m49_c00127{transform:matrix(0.210191,0.007364,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210191,0.007364,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210191,0.007364,-0.008753,0.249847,0,0);}
.m11_c00127{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.md1_c00127{transform:matrix(0.210863,0.005693,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210863,0.005693,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210863,0.005693,-0.006748,0.249909,0,0);}
.m45_c00127{transform:matrix(0.211310,0.007403,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211310,0.007403,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211310,0.007403,-0.008753,0.249847,0,0);}
.md7_c00127{transform:matrix(0.211738,0.005717,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211738,0.005717,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211738,0.005717,-0.006748,0.249909,0,0);}
.ma5_c00127{transform:matrix(0.212003,0.005724,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212003,0.005724,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212003,0.005724,-0.006748,0.249909,0,0);}
.mb6_c00127{transform:matrix(0.212528,0.005738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212528,0.005738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212528,0.005738,-0.006748,0.249909,0,0);}
.m42_c00127{transform:matrix(0.212729,0.007453,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212729,0.007453,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212729,0.007453,-0.008753,0.249847,0,0);}
.m70_c00127{transform:matrix(0.213514,0.007480,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213514,0.007480,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213514,0.007480,-0.008753,0.249847,0,0);}
.mb9_c00127{transform:matrix(0.214032,0.005779,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214032,0.005779,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214032,0.005779,-0.006748,0.249909,0,0);}
.m3e_c00127{transform:matrix(0.214039,0.007499,-0.008753,0.249847,0,0);-ms-transform:matrix(0.214039,0.007499,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.214039,0.007499,-0.008753,0.249847,0,0);}
.m83_c00127{transform:matrix(0.214387,0.006646,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214387,0.006646,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214387,0.006646,-0.007746,0.249880,0,0);}
.ma0_c00127{transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215302,0.005813,-0.006748,0.249909,0,0);}
.m6b_c00127{transform:matrix(0.215878,0.007563,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215878,0.007563,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215878,0.007563,-0.008753,0.249847,0,0);}
.m81_c00127{transform:matrix(0.216446,0.006710,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216446,0.006710,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216446,0.006710,-0.007746,0.249880,0,0);}
.m90_c00127{transform:matrix(0.216581,0.005848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216581,0.005848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216581,0.005848,-0.006748,0.249909,0,0);}
.ma_c00127{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{transform:matrix(0.217831,0.007632,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217831,0.007632,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217831,0.007632,-0.008753,0.249847,0,0);}
.m2d_c00127{transform:matrix(0.218222,0.004583,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218222,0.004583,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218222,0.004583,-0.005249,0.249945,0,0);}
.mce_c00127{transform:matrix(0.219205,0.005919,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219205,0.005919,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219205,0.005919,-0.006748,0.249909,0,0);}
.m2a_c00127{transform:matrix(0.219397,0.004607,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219397,0.004607,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219397,0.004607,-0.005249,0.249945,0,0);}
.m29_c00127{transform:matrix(0.220091,0.004622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220091,0.004622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220091,0.004622,-0.005249,0.249945,0,0);}
.m10_c00127{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.me2_c00127{transform:matrix(0.221744,0.005987,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221744,0.005987,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221744,0.005987,-0.006748,0.249909,0,0);}
.m1b_c00127{transform:matrix(0.221863,0.006212,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221863,0.006212,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221863,0.006212,-0.006997,0.249902,0,0);}
.me6_c00127{transform:matrix(0.223629,0.006038,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223629,0.006038,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223629,0.006038,-0.006748,0.249909,0,0);}
.mb8_c00127{transform:matrix(0.224828,0.006070,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224828,0.006070,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224828,0.006070,-0.006748,0.249909,0,0);}
.m7a_c00127{transform:matrix(0.225402,0.007897,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225402,0.007897,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225402,0.007897,-0.008753,0.249847,0,0);}
.m40_c00127{transform:matrix(0.225412,0.007897,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225412,0.007897,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225412,0.007897,-0.008753,0.249847,0,0);}
.m1c_c00127{transform:matrix(0.226276,0.006336,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226276,0.006336,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226276,0.006336,-0.006997,0.249902,0,0);}
.m6d_c00127{transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227356,0.007965,-0.008753,0.249847,0,0);}
.ma1_c00127{transform:matrix(0.228217,0.006162,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228217,0.006162,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228217,0.006162,-0.006748,0.249909,0,0);}
.m6e_c00127{transform:matrix(0.228350,0.008000,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228350,0.008000,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228350,0.008000,-0.008753,0.249847,0,0);}
.m4d_c00127{transform:matrix(0.228985,0.008022,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228985,0.008022,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228985,0.008022,-0.008753,0.249847,0,0);}
.m7c_c00127{transform:matrix(0.230049,0.008060,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230049,0.008060,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230049,0.008060,-0.008753,0.249847,0,0);}
.m4b_c00127{transform:matrix(0.230274,0.008068,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230274,0.008068,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230274,0.008068,-0.008753,0.249847,0,0);}
.m28_c00127{transform:matrix(0.231034,0.004852,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231034,0.004852,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231034,0.004852,-0.005249,0.249945,0,0);}
.m64_c00127{transform:matrix(0.233027,0.008164,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233027,0.008164,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233027,0.008164,-0.008753,0.249847,0,0);}
.m37_c00127{transform:matrix(0.233147,0.008168,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233147,0.008168,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233147,0.008168,-0.008753,0.249847,0,0);}
.m48_c00127{transform:matrix(0.234831,0.008227,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234831,0.008227,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234831,0.008227,-0.008753,0.249847,0,0);}
.me5_c00127{transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235194,0.006350,-0.006748,0.249909,0,0);}
.m47_c00127{transform:matrix(0.235565,0.008253,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235565,0.008253,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235565,0.008253,-0.008753,0.249847,0,0);}
.mcc_c00127{transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238663,0.006444,-0.006748,0.249909,0,0);}
.m21_c00127{transform:matrix(0.240852,0.005058,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240852,0.005058,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240852,0.005058,-0.005249,0.249945,0,0);}
.m34_c00127{transform:matrix(0.244075,0.008551,-0.008753,0.249847,0,0);-ms-transform:matrix(0.244075,0.008551,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.244075,0.008551,-0.008753,0.249847,0,0);}
.m77_c00127{transform:matrix(0.246479,0.008635,-0.008753,0.249847,0,0);-ms-transform:matrix(0.246479,0.008635,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.246479,0.008635,-0.008753,0.249847,0,0);}
.ma2_c00127{transform:matrix(0.247905,0.006693,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247905,0.006693,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247905,0.006693,-0.006748,0.249909,0,0);}
.m5e_c00127{transform:matrix(0.248722,0.008714,-0.008753,0.249847,0,0);-ms-transform:matrix(0.248722,0.008714,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.248722,0.008714,-0.008753,0.249847,0,0);}
.m20_c00127{transform:matrix(0.255175,0.007145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255175,0.007145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255175,0.007145,-0.006997,0.249902,0,0);}
.m6_c00127{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.310185,0.010867,-0.008753,0.249847,0,0);-ms-transform:matrix(0.310185,0.010867,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.310185,0.010867,-0.008753,0.249847,0,0);}
.m5d_c00127{transform:matrix(0.345763,0.012114,-0.008753,0.249847,0,0);-ms-transform:matrix(0.345763,0.012114,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.345763,0.012114,-0.008753,0.249847,0,0);}
.ma3_c00127{transform:matrix(0.347973,0.009395,-0.006748,0.249909,0,0);-ms-transform:matrix(0.347973,0.009395,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.347973,0.009395,-0.006748,0.249909,0,0);}
.m7e_c00127{transform:matrix(0.387034,0.011998,-0.007746,0.249880,0,0);-ms-transform:matrix(0.387034,0.011998,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.387034,0.011998,-0.007746,0.249880,0,0);}
.m9d_c00127{transform:matrix(0.475187,0.012830,-0.006748,0.249909,0,0);-ms-transform:matrix(0.475187,0.012830,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.475187,0.012830,-0.006748,0.249909,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:transparent;}
.fsf_c00127{font-size:59.826834px;}
.fs15_c00127{font-size:59.871811px;}
.fsa_c00127{font-size:60.876427px;}
.fs19_c00127{font-size:60.922194px;}
.fs8_c00127{font-size:61.926021px;}
.fs6_c00127{font-size:61.963658px;}
.fsd_c00127{font-size:62.975614px;}
.fs17_c00127{font-size:63.022959px;}
.fs9_c00127{font-size:64.025208px;}
.fs5_c00127{font-size:64.064121px;}
.fs1a_c00127{font-size:64.073342px;}
.fs7_c00127{font-size:65.114353px;}
.fs12_c00127{font-size:66.174107px;}
.fs4_c00127{font-size:66.175926px;}
.fs10_c00127{font-size:66.181777px;}
.fsc_c00127{font-size:67.173989px;}
.fs3_c00127{font-size:67.200000px;}
.fs11_c00127{font-size:67.232282px;}
.fs2_c00127{font-size:68.250000px;}
.fs13_c00127{font-size:68.274873px;}
.fse_c00127{font-size:69.273176px;}
.fsb_c00127{font-size:70.322769px;}
.fs14_c00127{font-size:70.375638px;}
.fs16_c00127{font-size:71.426021px;}
.fs18_c00127{font-size:73.526786px;}
.fs1_c00127{font-size:74.550000px;}
.fs0_c00127{font-size:81.900000px;}
.y0_c00127{bottom:0.000000px;}
.yf2_c00127{bottom:26.095988px;}
.yf1_c00127{bottom:27.285272px;}
.yf0_c00127{bottom:29.150264px;}
.yef_c00127{bottom:30.069960px;}
.yee_c00127{bottom:30.716507px;}
.yed_c00127{bottom:32.247188px;}
.yec_c00127{bottom:32.745008px;}
.yeb_c00127{bottom:33.944295px;}
.yea_c00127{bottom:42.992699px;}
.ye9_c00127{bottom:43.652345px;}
.ye8_c00127{bottom:46.439099px;}
.ye7_c00127{bottom:46.927889px;}
.ye6_c00127{bottom:48.790775px;}
.ye5_c00127{bottom:49.308729px;}
.ye4_c00127{bottom:49.964486px;}
.ye3_c00127{bottom:51.771392px;}
.ye2_c00127{bottom:62.383250px;}
.ye1_c00127{bottom:63.441795px;}
.ye0_c00127{bottom:63.845507px;}
.ydf_c00127{bottom:65.149989px;}
.yde_c00127{bottom:66.208535px;}
.ydd_c00127{bottom:67.137450px;}
.ydc_c00127{bottom:68.236491px;}
.ydb_c00127{bottom:69.595685px;}
.yda_c00127{bottom:78.539733px;}
.yd9_c00127{bottom:80.216798px;}
.yd8_c00127{bottom:82.106204px;}
.yd7_c00127{bottom:83.067147px;}
.yd6_c00127{bottom:83.627100px;}
.yd5_c00127{bottom:85.146822px;}
.yd4_c00127{bottom:85.800897px;}
.yd3_c00127{bottom:99.858944px;}
.yd2_c00127{bottom:100.531760px;}
.yd1_c00127{bottom:100.860195px;}
.yd0_c00127{bottom:102.108906px;}
.ycf_c00127{bottom:102.485700px;}
.yce_c00127{bottom:102.687432px;}
.ycd_c00127{bottom:103.244268px;}
.ycc_c00127{bottom:103.625352px;}
.ycb_c00127{bottom:117.627237px;}
.yca_c00127{bottom:117.986186px;}
.yc9_c00127{bottom:118.914819px;}
.yc8_c00127{bottom:119.463419px;}
.yc7_c00127{bottom:119.777604px;}
.yc6_c00127{bottom:121.451088px;}
.yc5_c00127{bottom:133.541754px;}
.yc4_c00127{bottom:134.010950px;}
.yc3_c00127{bottom:135.047465px;}
.yc2_c00127{bottom:135.753485px;}
.yc1_c00127{bottom:136.634411px;}
.yc0_c00127{bottom:136.910882px;}
.ybf_c00127{bottom:137.204807px;}
.ybe_c00127{bottom:138.423273px;}
.ybd_c00127{bottom:138.889715px;}
.ybc_c00127{bottom:139.819884px;}
.ybb_c00127{bottom:152.767559px;}
.yba_c00127{bottom:153.078761px;}
.yb9_c00127{bottom:155.627547px;}
.yb8_c00127{bottom:156.138657px;}
.yb7_c00127{bottom:157.645946px;}
.yb6_c00127{bottom:166.952934px;}
.yb5_c00127{bottom:167.625542px;}
.yb4_c00127{bottom:169.482270px;}
.yb3_c00127{bottom:171.690149px;}
.yb2_c00127{bottom:172.288265px;}
.yb1_c00127{bottom:174.928872px;}
.yb0_c00127{bottom:176.017358px;}
.yaf_c00127{bottom:185.528426px;}
.yae_c00127{bottom:186.511985px;}
.yad_c00127{bottom:187.163060px;}
.yac_c00127{bottom:188.829978px;}
.yab_c00127{bottom:189.356817px;}
.yaa_c00127{bottom:191.225866px;}
.ya9_c00127{bottom:194.115094px;}
.ya8_c00127{bottom:201.987974px;}
.ya7_c00127{bottom:202.439125px;}
.ya6_c00127{bottom:203.568321px;}
.ya5_c00127{bottom:203.948622px;}
.ya4_c00127{bottom:205.342302px;}
.ya3_c00127{bottom:205.786730px;}
.ya2_c00127{bottom:207.951585px;}
.ya1_c00127{bottom:208.957551px;}
.ya0_c00127{bottom:209.653986px;}
.y9f_c00127{bottom:212.215346px;}
.y9e_c00127{bottom:219.550221px;}
.y9d_c00127{bottom:220.556957px;}
.y9c_c00127{bottom:223.729681px;}
.y9b_c00127{bottom:224.443536px;}
.y9a_c00127{bottom:224.915793px;}
.y99_c00127{bottom:227.955770px;}
.y98_c00127{bottom:228.855156px;}
.y97_c00127{bottom:229.766250px;}
.y96_c00127{bottom:239.912311px;}
.y95_c00127{bottom:240.738716px;}
.y94_c00127{bottom:241.903248px;}
.y93_c00127{bottom:242.339355px;}
.y92_c00127{bottom:244.693896px;}
.y91_c00127{bottom:245.532451px;}
.y90_c00127{bottom:247.594229px;}
.y8f_c00127{bottom:256.841060px;}
.y8e_c00127{bottom:257.661792px;}
.y8d_c00127{bottom:260.225159px;}
.y8c_c00127{bottom:261.074808px;}
.y87_c00127{bottom:262.430948px;}
.y8b_c00127{bottom:262.542528px;}
.y8a_c00127{bottom:262.854499px;}
.y89_c00127{bottom:263.719336px;}
.y88_c00127{bottom:264.609000px;}
.y86_c00127{bottom:272.599447px;}
.y85_c00127{bottom:274.214020px;}
.y84_c00127{bottom:275.081989px;}
.y83_c00127{bottom:277.045870px;}
.y82_c00127{bottom:279.766353px;}
.y81_c00127{bottom:280.320586px;}
.y80_c00127{bottom:280.818416px;}
.y7f_c00127{bottom:282.433500px;}
.y7e_c00127{bottom:291.497130px;}
.y7d_c00127{bottom:292.058919px;}
.y7c_c00127{bottom:294.210990px;}
.y7b_c00127{bottom:294.671289px;}
.y7a_c00127{bottom:296.611064px;}
.y79_c00127{bottom:298.317713px;}
.y78_c00127{bottom:298.690062px;}
.y77_c00127{bottom:309.041379px;}
.y76_c00127{bottom:311.097836px;}
.y75_c00127{bottom:311.750881px;}
.y74_c00127{bottom:314.416908px;}
.y73_c00127{bottom:316.504956px;}
.y72_c00127{bottom:327.326445px;}
.y71_c00127{bottom:327.755541px;}
.y70_c00127{bottom:328.088664px;}
.y6f_c00127{bottom:329.490869px;}
.y6e_c00127{bottom:329.877305px;}
.y6d_c00127{bottom:331.429502px;}
.y6c_c00127{bottom:332.911175px;}
.y6b_c00127{bottom:333.776583px;}
.y6a_c00127{bottom:344.379281px;}
.y69_c00127{bottom:345.666517px;}
.y68_c00127{bottom:346.176669px;}
.y67_c00127{bottom:346.775152px;}
.y66_c00127{bottom:347.993497px;}
.y65_c00127{bottom:349.304346px;}
.y64_c00127{bottom:350.366049px;}
.y63_c00127{bottom:351.588775px;}
.y62_c00127{bottom:361.232418px;}
.y61_c00127{bottom:361.830039px;}
.y60_c00127{bottom:363.240159px;}
.y5f_c00127{bottom:365.000954px;}
.y5e_c00127{bottom:366.136235px;}
.y5d_c00127{bottom:366.613203px;}
.y5c_c00127{bottom:369.404658px;}
.y5b_c00127{bottom:379.422864px;}
.y5a_c00127{bottom:380.179677px;}
.y59_c00127{bottom:382.749035px;}
.y58_c00127{bottom:384.495123px;}
.y57_c00127{bottom:385.419465px;}
.y56_c00127{bottom:386.526876px;}
.y55_c00127{bottom:387.489906px;}
.y54_c00127{bottom:396.627640px;}
.y53_c00127{bottom:397.419834px;}
.y52_c00127{bottom:397.995626px;}
.y51_c00127{bottom:398.710653px;}
.y50_c00127{bottom:399.266628px;}
.y4f_c00127{bottom:401.583940px;}
.y4e_c00127{bottom:403.726427px;}
.y4d_c00127{bottom:404.621478px;}
.y4c_c00127{bottom:405.030972px;}
.y4b_c00127{bottom:413.861991px;}
.y4a_c00127{bottom:415.083455px;}
.y49_c00127{bottom:415.610480px;}
.y48_c00127{bottom:418.535835px;}
.y47_c00127{bottom:419.090867px;}
.y46_c00127{bottom:420.067822px;}
.y45_c00127{bottom:421.881826px;}
.y44_c00127{bottom:422.846655px;}
.y43_c00127{bottom:432.489917px;}
.y42_c00127{bottom:432.979211px;}
.y41_c00127{bottom:435.080117px;}
.y40_c00127{bottom:435.870363px;}
.y3f_c00127{bottom:436.856454px;}
.y3e_c00127{bottom:437.816070px;}
.y3d_c00127{bottom:438.766398px;}
.y3c_c00127{bottom:448.777170px;}
.y3b_c00127{bottom:449.744955px;}
.y3a_c00127{bottom:450.746392px;}
.y39_c00127{bottom:452.453640px;}
.y38_c00127{bottom:454.052370px;}
.y37_c00127{bottom:454.866225px;}
.y36_c00127{bottom:456.795495px;}
.y35_c00127{bottom:457.665000px;}
.y34_c00127{bottom:470.757489px;}
.y33_c00127{bottom:473.107647px;}
.y32_c00127{bottom:473.833344px;}
.y31_c00127{bottom:474.415214px;}
.y30_c00127{bottom:474.925154px;}
.y2f_c00127{bottom:484.208289px;}
.y2e_c00127{bottom:485.694759px;}
.y2d_c00127{bottom:487.059230px;}
.y2c_c00127{bottom:487.429461px;}
.y2b_c00127{bottom:489.432696px;}
.y2a_c00127{bottom:490.203099px;}
.y29_c00127{bottom:491.132726px;}
.y28_c00127{bottom:502.335141px;}
.y27_c00127{bottom:503.122263px;}
.y26_c00127{bottom:503.826981px;}
.y25_c00127{bottom:504.250247px;}
.y24_c00127{bottom:504.851960px;}
.y23_c00127{bottom:505.317404px;}
.y22_c00127{bottom:507.066000px;}
.y21_c00127{bottom:518.664600px;}
.y20_c00127{bottom:519.758238px;}
.y1f_c00127{bottom:520.581312px;}
.y1e_c00127{bottom:521.488806px;}
.y1d_c00127{bottom:522.853092px;}
.y1c_c00127{bottom:523.243314px;}
.y1b_c00127{bottom:524.579502px;}
.y1a_c00127{bottom:525.378636px;}
.y19_c00127{bottom:526.779000px;}
.y18_c00127{bottom:537.243000px;}
.y17_c00127{bottom:538.431000px;}
.y16_c00127{bottom:538.822500px;}
.y15_c00127{bottom:539.286000px;}
.y14_c00127{bottom:540.628500px;}
.y13_c00127{bottom:541.140000px;}
.y12_c00127{bottom:541.428000px;}
.y11_c00127{bottom:542.802000px;}
.y10_c00127{bottom:543.247500px;}
.yf_c00127{bottom:554.392500px;}
.ye_c00127{bottom:554.826000px;}
.yd_c00127{bottom:556.096500px;}
.yc_c00127{bottom:556.867500px;}
.yb_c00127{bottom:558.757500px;}
.ya_c00127{bottom:560.527500px;}
.y9_c00127{bottom:572.019000px;}
.y8_c00127{bottom:572.830500px;}
.y7_c00127{bottom:573.466500px;}
.y6_c00127{bottom:574.563000px;}
.y5_c00127{bottom:575.041500px;}
.y4_c00127{bottom:575.682000px;}
.y3_c00127{bottom:577.198500px;}
.y2_c00127{bottom:577.807500px;}
.y1_c00127{bottom:588.460500px;}
.h11_c00127{height:59.826834px;}
.h17_c00127{height:59.871811px;}
.hc_c00127{height:60.876427px;}
.h1b_c00127{height:60.922194px;}
.ha_c00127{height:61.926021px;}
.h8_c00127{height:61.963658px;}
.hf_c00127{height:62.975614px;}
.h19_c00127{height:63.022959px;}
.hb_c00127{height:64.025208px;}
.h7_c00127{height:64.064121px;}
.h1c_c00127{height:64.073342px;}
.h9_c00127{height:65.114353px;}
.h14_c00127{height:66.174107px;}
.h6_c00127{height:66.175926px;}
.h12_c00127{height:66.181777px;}
.he_c00127{height:67.173989px;}
.h5_c00127{height:67.200000px;}
.h13_c00127{height:67.232282px;}
.h4_c00127{height:68.250000px;}
.h15_c00127{height:68.274873px;}
.h10_c00127{height:69.273176px;}
.hd_c00127{height:70.322769px;}
.h16_c00127{height:70.375638px;}
.h18_c00127{height:71.426021px;}
.h1a_c00127{height:73.526786px;}
.h3_c00127{height:74.550000px;}
.h2_c00127{height:81.900000px;}
.h0_c00127{height:632.850000px;}
.h1_c00127{height:633.000000px;}
.w0_c00127{width:371.790000px;}
.w1_c00127{width:372.000000px;}
.x0_c00127{left:0.000000px;}
.x67_c00127{left:37.104891px;}
.x73_c00127{left:38.333485px;}
.x6d_c00127{left:39.831526px;}
.x5c_c00127{left:41.238000px;}
.x4e_c00127{left:42.604218px;}
.x36_c00127{left:44.119428px;}
.x29_c00127{left:45.720226px;}
.x16_c00127{left:46.909500px;}
.x2_c00127{left:48.019500px;}
.x1d_c00127{left:49.380000px;}
.x55_c00127{left:55.918208px;}
.x3c_c00127{left:56.982462px;}
.x83_c00127{left:62.325412px;}
.x7d_c00127{left:63.816774px;}
.x63_c00127{left:67.064163px;}
.xf_c00127{left:68.563500px;}
.x2c_c00127{left:70.585500px;}
.x37_c00127{left:72.472045px;}
.x3_c00127{left:74.484000px;}
.x4f_c00127{left:75.827419px;}
.x89_c00127{left:78.787086px;}
.x31_c00127{left:80.204925px;}
.x23_c00127{left:81.821335px;}
.x3d_c00127{left:84.927931px;}
.x49_c00127{left:92.016975px;}
.x2a_c00127{left:93.137710px;}
.x74_c00127{left:94.158985px;}
.x2d_c00127{left:95.403657px;}
.x17_c00127{left:96.922500px;}
.x5b_c00127{left:98.847897px;}
.x7e_c00127{left:100.896762px;}
.x5d_c00127{left:106.219500px;}
.x24_c00127{left:109.360303px;}
.x75_c00127{left:113.088985px;}
.x7f_c00127{left:114.317095px;}
.x32_c00127{left:115.688838px;}
.x5e_c00127{left:117.774000px;}
.x53_c00127{left:119.838573px;}
.xa_c00127{left:121.267500px;}
.x18_c00127{left:125.463000px;}
.x58_c00127{left:127.722000px;}
.x10_c00127{left:131.022000px;}
.x1e_c00127{left:132.646500px;}
.x4a_c00127{left:134.397372px;}
.x85_c00127{left:136.629642px;}
.x42_c00127{left:137.685747px;}
.x84_c00127{left:139.350412px;}
.x4_c00127{left:140.440500px;}
.x44_c00127{left:142.978092px;}
.x11_c00127{left:144.144000px;}
.x8a_c00127{left:148.746319px;}
.x2e_c00127{left:150.470535px;}
.x33_c00127{left:152.142543px;}
.x1f_c00127{left:154.810500px;}
.x6f_c00127{left:156.117342px;}
.x68_c00127{left:158.940106px;}
.x45_c00127{left:159.975229px;}
.x7a_c00127{left:162.394683px;}
.x76_c00127{left:166.064635px;}
.x5_c00127{left:168.285000px;}
.x38_c00127{left:170.802585px;}
.x5f_c00127{left:172.134000px;}
.x19_c00127{left:173.184000px;}
.x70_c00127{left:174.822831px;}
.x64_c00127{left:179.608863px;}
.x25_c00127{left:180.884783px;}
.x20_c00127{left:183.463500px;}
.x1_c00127{left:185.490000px;}
.x1a_c00127{left:187.120500px;}
.x6_c00127{left:189.082500px;}
.x56_c00127{left:190.787988px;}
.x43_c00127{left:192.191914px;}
.x26_c00127{left:194.084329px;}
.x7b_c00127{left:196.723389px;}
.xb_c00127{left:200.029500px;}
.x77_c00127{left:201.304539px;}
.x21_c00127{left:203.619000px;}
.x50_c00127{left:207.240838px;}
.x65_c00127{left:213.476032px;}
.x59_c00127{left:215.479500px;}
.x2f_c00127{left:219.332604px;}
.x69_c00127{left:220.773241px;}
.x80_c00127{left:222.667168px;}
.x3e_c00127{left:224.171211px;}
.x2b_c00127{left:226.887103px;}
.x12_c00127{left:228.420000px;}
.x78_c00127{left:229.566078px;}
.x61_c00127{left:230.939583px;}
.xc_c00127{left:232.153500px;}
.x6a_c00127{left:233.452987px;}
.x4b_c00127{left:235.451138px;}
.x7_c00127{left:236.754000px;}
.x3f_c00127{left:241.539165px;}
.x27_c00127{left:242.837679px;}
.x81_c00127{left:244.560756px;}
.x13_c00127{left:249.463500px;}
.x6e_c00127{left:250.502425px;}
.x7c_c00127{left:254.801142px;}
.x39_c00127{left:256.741555px;}
.x34_c00127{left:259.073959px;}
.x51_c00127{left:261.095904px;}
.x46_c00127{left:263.278653px;}
.x8_c00127{left:264.403500px;}
.x14_c00127{left:267.274500px;}
.x62_c00127{left:269.733924px;}
.x79_c00127{left:271.013305px;}
.x3a_c00127{left:272.212594px;}
.x6b_c00127{left:273.284401px;}
.x22_c00127{left:274.659000px;}
.x35_c00127{left:277.150909px;}
.x4c_c00127{left:279.727820px;}
.x40_c00127{left:281.851569px;}
.xd_c00127{left:285.069000px;}
.x57_c00127{left:287.406837px;}
.x82_c00127{left:289.383255px;}
.x52_c00127{left:290.388831px;}
.x87_c00127{left:291.705474px;}
.x28_c00127{left:295.899867px;}
.x1b_c00127{left:297.651000px;}
.x9_c00127{left:299.661000px;}
.x71_c00127{left:301.846699px;}
.xe_c00127{left:303.162000px;}
.x41_c00127{left:306.561409px;}
.x3b_c00127{left:308.104428px;}
.x88_c00127{left:312.300679px;}
.x47_c00127{left:313.591140px;}
.x6c_c00127{left:316.404586px;}
.x54_c00127{left:318.707763px;}
.x15_c00127{left:321.295500px;}
.x72_c00127{left:322.866364px;}
.x30_c00127{left:324.269562px;}
.x86_c00127{left:326.721348px;}
.x60_c00127{left:328.939500px;}
.x4d_c00127{left:331.157863px;}
.x66_c00127{left:332.911774px;}
.x48_c00127{left:334.888524px;}
.x1c_c00127{left:336.709500px;}
.x5a_c00127{left:358.912500px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.fsf_c00127{font-size:53.179408pt;}
.fs15_c00127{font-size:53.219388pt;}
.fsa_c00127{font-size:54.112380pt;}
.fs19_c00127{font-size:54.153061pt;}
.fs8_c00127{font-size:55.045352pt;}
.fs6_c00127{font-size:55.078808pt;}
.fsd_c00127{font-size:55.978324pt;}
.fs17_c00127{font-size:56.020408pt;}
.fs9_c00127{font-size:56.911296pt;}
.fs5_c00127{font-size:56.945886pt;}
.fs1a_c00127{font-size:56.954082pt;}
.fs7_c00127{font-size:57.879425pt;}
.fs12_c00127{font-size:58.821429pt;}
.fs4_c00127{font-size:58.823045pt;}
.fs10_c00127{font-size:58.828247pt;}
.fsc_c00127{font-size:59.710212pt;}
.fs3_c00127{font-size:59.733333pt;}
.fs11_c00127{font-size:59.762028pt;}
.fs2_c00127{font-size:60.666667pt;}
.fs13_c00127{font-size:60.688776pt;}
.fse_c00127{font-size:61.576156pt;}
.fsb_c00127{font-size:62.509128pt;}
.fs14_c00127{font-size:62.556123pt;}
.fs16_c00127{font-size:63.489796pt;}
.fs18_c00127{font-size:65.357143pt;}
.fs1_c00127{font-size:66.266667pt;}
.fs0_c00127{font-size:72.800000pt;}
.y0_c00127{bottom:0.000000pt;}
.yf2_c00127{bottom:23.196433pt;}
.yf1_c00127{bottom:24.253575pt;}
.yf0_c00127{bottom:25.911345pt;}
.yef_c00127{bottom:26.728853pt;}
.yee_c00127{bottom:27.303561pt;}
.yed_c00127{bottom:28.664167pt;}
.yec_c00127{bottom:29.106673pt;}
.yeb_c00127{bottom:30.172707pt;}
.yea_c00127{bottom:38.215732pt;}
.ye9_c00127{bottom:38.802084pt;}
.ye8_c00127{bottom:41.279199pt;}
.ye7_c00127{bottom:41.713679pt;}
.ye6_c00127{bottom:43.369577pt;}
.ye5_c00127{bottom:43.829981pt;}
.ye4_c00127{bottom:44.412876pt;}
.ye3_c00127{bottom:46.019015pt;}
.ye2_c00127{bottom:55.451777pt;}
.ye1_c00127{bottom:56.392707pt;}
.ye0_c00127{bottom:56.751561pt;}
.ydf_c00127{bottom:57.911101pt;}
.yde_c00127{bottom:58.852031pt;}
.ydd_c00127{bottom:59.677733pt;}
.ydc_c00127{bottom:60.654659pt;}
.ydb_c00127{bottom:61.862831pt;}
.yda_c00127{bottom:69.813096pt;}
.yd9_c00127{bottom:71.303820pt;}
.yd8_c00127{bottom:72.983292pt;}
.yd7_c00127{bottom:73.837464pt;}
.yd6_c00127{bottom:74.335200pt;}
.yd5_c00127{bottom:75.686064pt;}
.yd4_c00127{bottom:76.267464pt;}
.yd3_c00127{bottom:88.763505pt;}
.yd2_c00127{bottom:89.361564pt;}
.yd1_c00127{bottom:89.653507pt;}
.yd0_c00127{bottom:90.763472pt;}
.ycf_c00127{bottom:91.098400pt;}
.yce_c00127{bottom:91.277717pt;}
.ycd_c00127{bottom:91.772683pt;}
.ycc_c00127{bottom:92.111424pt;}
.ycb_c00127{bottom:104.557544pt;}
.yca_c00127{bottom:104.876609pt;}
.yc9_c00127{bottom:105.702061pt;}
.yc8_c00127{bottom:106.189705pt;}
.yc7_c00127{bottom:106.468981pt;}
.yc6_c00127{bottom:107.956523pt;}
.yc5_c00127{bottom:118.703781pt;}
.yc4_c00127{bottom:119.120844pt;}
.yc3_c00127{bottom:120.042191pt;}
.yc2_c00127{bottom:120.669764pt;}
.yc1_c00127{bottom:121.452809pt;}
.yc0_c00127{bottom:121.698561pt;}
.ybf_c00127{bottom:121.959828pt;}
.ybe_c00127{bottom:123.042909pt;}
.ybd_c00127{bottom:123.457524pt;}
.ybc_c00127{bottom:124.284341pt;}
.ybb_c00127{bottom:135.793385pt;}
.yba_c00127{bottom:136.070009pt;}
.yb9_c00127{bottom:138.335597pt;}
.yb8_c00127{bottom:138.789917pt;}
.yb7_c00127{bottom:140.129729pt;}
.yb6_c00127{bottom:148.402608pt;}
.yb5_c00127{bottom:149.000481pt;}
.yb4_c00127{bottom:150.650907pt;}
.yb3_c00127{bottom:152.613465pt;}
.yb2_c00127{bottom:153.145124pt;}
.yb1_c00127{bottom:155.492331pt;}
.yb0_c00127{bottom:156.459873pt;}
.yaf_c00127{bottom:164.914156pt;}
.yae_c00127{bottom:165.788431pt;}
.yad_c00127{bottom:166.367164pt;}
.yac_c00127{bottom:167.848869pt;}
.yab_c00127{bottom:168.317171pt;}
.yaa_c00127{bottom:169.978548pt;}
.ya9_c00127{bottom:172.546751pt;}
.ya8_c00127{bottom:179.544865pt;}
.ya7_c00127{bottom:179.945889pt;}
.ya6_c00127{bottom:180.949619pt;}
.ya5_c00127{bottom:181.287664pt;}
.ya4_c00127{bottom:182.526491pt;}
.ya3_c00127{bottom:182.921537pt;}
.ya2_c00127{bottom:184.845853pt;}
.ya1_c00127{bottom:185.740045pt;}
.ya0_c00127{bottom:186.359099pt;}
.y9f_c00127{bottom:188.635863pt;}
.y9e_c00127{bottom:195.155752pt;}
.y9d_c00127{bottom:196.050628pt;}
.y9c_c00127{bottom:198.870828pt;}
.y9b_c00127{bottom:199.505365pt;}
.y9a_c00127{bottom:199.925149pt;}
.y99_c00127{bottom:202.627351pt;}
.y98_c00127{bottom:203.426805pt;}
.y97_c00127{bottom:204.236667pt;}
.y96_c00127{bottom:213.255388pt;}
.y95_c00127{bottom:213.989969pt;}
.y94_c00127{bottom:215.025109pt;}
.y93_c00127{bottom:215.412760pt;}
.y92_c00127{bottom:217.505685pt;}
.y91_c00127{bottom:218.251068pt;}
.y90_c00127{bottom:220.083759pt;}
.y8f_c00127{bottom:228.303164pt;}
.y8e_c00127{bottom:229.032704pt;}
.y8d_c00127{bottom:231.311252pt;}
.y8c_c00127{bottom:232.066496pt;}
.y87_c00127{bottom:233.271953pt;}
.y8b_c00127{bottom:233.371136pt;}
.y8a_c00127{bottom:233.648444pt;}
.y89_c00127{bottom:234.417188pt;}
.y88_c00127{bottom:235.208000pt;}
.y86_c00127{bottom:242.310620pt;}
.y85_c00127{bottom:243.745796pt;}
.y84_c00127{bottom:244.517324pt;}
.y83_c00127{bottom:246.262996pt;}
.y82_c00127{bottom:248.681203pt;}
.y81_c00127{bottom:249.173855pt;}
.y80_c00127{bottom:249.616369pt;}
.y7f_c00127{bottom:251.052000pt;}
.y7e_c00127{bottom:259.108560pt;}
.y7d_c00127{bottom:259.607928pt;}
.y7c_c00127{bottom:261.520880pt;}
.y7b_c00127{bottom:261.930035pt;}
.y7a_c00127{bottom:263.654279pt;}
.y79_c00127{bottom:265.171300pt;}
.y78_c00127{bottom:265.502277pt;}
.y77_c00127{bottom:274.703448pt;}
.y76_c00127{bottom:276.531409pt;}
.y75_c00127{bottom:277.111895pt;}
.y74_c00127{bottom:279.481696pt;}
.y73_c00127{bottom:281.337739pt;}
.y72_c00127{bottom:290.956840pt;}
.y71_c00127{bottom:291.338259pt;}
.y70_c00127{bottom:291.634368pt;}
.y6f_c00127{bottom:292.880772pt;}
.y6e_c00127{bottom:293.224271pt;}
.y6d_c00127{bottom:294.604001pt;}
.y6c_c00127{bottom:295.921044pt;}
.y6b_c00127{bottom:296.690296pt;}
.y6a_c00127{bottom:306.114916pt;}
.y69_c00127{bottom:307.259127pt;}
.y68_c00127{bottom:307.712595pt;}
.y67_c00127{bottom:308.244580pt;}
.y66_c00127{bottom:309.327553pt;}
.y65_c00127{bottom:310.492752pt;}
.y64_c00127{bottom:311.436488pt;}
.y63_c00127{bottom:312.523356pt;}
.y62_c00127{bottom:321.095483pt;}
.y61_c00127{bottom:321.626701pt;}
.y60_c00127{bottom:322.880141pt;}
.y5f_c00127{bottom:324.445292pt;}
.y5e_c00127{bottom:325.454431pt;}
.y5d_c00127{bottom:325.878403pt;}
.y5c_c00127{bottom:328.359696pt;}
.y5b_c00127{bottom:337.264768pt;}
.y5a_c00127{bottom:337.937491pt;}
.y59_c00127{bottom:340.221364pt;}
.y58_c00127{bottom:341.773443pt;}
.y57_c00127{bottom:342.595080pt;}
.y56_c00127{bottom:343.579445pt;}
.y55_c00127{bottom:344.435472pt;}
.y54_c00127{bottom:352.557903pt;}
.y53_c00127{bottom:353.262075pt;}
.y52_c00127{bottom:353.773889pt;}
.y51_c00127{bottom:354.409469pt;}
.y50_c00127{bottom:354.903669pt;}
.y4f_c00127{bottom:356.963503pt;}
.y4e_c00127{bottom:358.867935pt;}
.y4d_c00127{bottom:359.663536pt;}
.y4c_c00127{bottom:360.027531pt;}
.y4b_c00127{bottom:367.877325pt;}
.y4a_c00127{bottom:368.963071pt;}
.y49_c00127{bottom:369.431537pt;}
.y48_c00127{bottom:372.031853pt;}
.y47_c00127{bottom:372.525215pt;}
.y46_c00127{bottom:373.393620pt;}
.y45_c00127{bottom:375.006068pt;}
.y44_c00127{bottom:375.863693pt;}
.y43_c00127{bottom:384.435481pt;}
.y42_c00127{bottom:384.870409pt;}
.y41_c00127{bottom:386.737881pt;}
.y40_c00127{bottom:387.440323pt;}
.y3f_c00127{bottom:388.316848pt;}
.y3e_c00127{bottom:389.169840pt;}
.y3d_c00127{bottom:390.014576pt;}
.y3c_c00127{bottom:398.913040pt;}
.y3b_c00127{bottom:399.773293pt;}
.y3a_c00127{bottom:400.663460pt;}
.y39_c00127{bottom:402.181013pt;}
.y38_c00127{bottom:403.602107pt;}
.y37_c00127{bottom:404.325533pt;}
.y36_c00127{bottom:406.040440pt;}
.y35_c00127{bottom:406.813333pt;}
.y34_c00127{bottom:418.451101pt;}
.y33_c00127{bottom:420.540131pt;}
.y32_c00127{bottom:421.185195pt;}
.y31_c00127{bottom:421.702412pt;}
.y30_c00127{bottom:422.155692pt;}
.y2f_c00127{bottom:430.407368pt;}
.y2e_c00127{bottom:431.728675pt;}
.y2d_c00127{bottom:432.941537pt;}
.y2c_c00127{bottom:433.270632pt;}
.y2b_c00127{bottom:435.051285pt;}
.y2a_c00127{bottom:435.736088pt;}
.y29_c00127{bottom:436.562423pt;}
.y28_c00127{bottom:446.520125pt;}
.y27_c00127{bottom:447.219789pt;}
.y26_c00127{bottom:447.846205pt;}
.y25_c00127{bottom:448.222441pt;}
.y24_c00127{bottom:448.757297pt;}
.y23_c00127{bottom:449.171025pt;}
.y22_c00127{bottom:450.725333pt;}
.y21_c00127{bottom:461.035200pt;}
.y20_c00127{bottom:462.007323pt;}
.y1f_c00127{bottom:462.738944pt;}
.y1e_c00127{bottom:463.545605pt;}
.y1d_c00127{bottom:464.758304pt;}
.y1c_c00127{bottom:465.105168pt;}
.y1b_c00127{bottom:466.292891pt;}
.y1a_c00127{bottom:467.003232pt;}
.y19_c00127{bottom:468.248000pt;}
.y18_c00127{bottom:477.549333pt;}
.y17_c00127{bottom:478.605333pt;}
.y16_c00127{bottom:478.953333pt;}
.y15_c00127{bottom:479.365333pt;}
.y14_c00127{bottom:480.558667pt;}
.y13_c00127{bottom:481.013333pt;}
.y12_c00127{bottom:481.269333pt;}
.y11_c00127{bottom:482.490667pt;}
.y10_c00127{bottom:482.886667pt;}
.yf_c00127{bottom:492.793333pt;}
.ye_c00127{bottom:493.178667pt;}
.yd_c00127{bottom:494.308000pt;}
.yc_c00127{bottom:494.993333pt;}
.yb_c00127{bottom:496.673333pt;}
.ya_c00127{bottom:498.246667pt;}
.y9_c00127{bottom:508.461333pt;}
.y8_c00127{bottom:509.182667pt;}
.y7_c00127{bottom:509.748000pt;}
.y6_c00127{bottom:510.722667pt;}
.y5_c00127{bottom:511.148000pt;}
.y4_c00127{bottom:511.717333pt;}
.y3_c00127{bottom:513.065333pt;}
.y2_c00127{bottom:513.606667pt;}
.y1_c00127{bottom:523.076000pt;}
.h11_c00127{height:53.179408pt;}
.h17_c00127{height:53.219388pt;}
.hc_c00127{height:54.112380pt;}
.h1b_c00127{height:54.153061pt;}
.ha_c00127{height:55.045352pt;}
.h8_c00127{height:55.078808pt;}
.hf_c00127{height:55.978324pt;}
.h19_c00127{height:56.020408pt;}
.hb_c00127{height:56.911296pt;}
.h7_c00127{height:56.945886pt;}
.h1c_c00127{height:56.954082pt;}
.h9_c00127{height:57.879425pt;}
.h14_c00127{height:58.821429pt;}
.h6_c00127{height:58.823045pt;}
.h12_c00127{height:58.828247pt;}
.he_c00127{height:59.710212pt;}
.h5_c00127{height:59.733333pt;}
.h13_c00127{height:59.762028pt;}
.h4_c00127{height:60.666667pt;}
.h15_c00127{height:60.688776pt;}
.h10_c00127{height:61.576156pt;}
.hd_c00127{height:62.509128pt;}
.h16_c00127{height:62.556123pt;}
.h18_c00127{height:63.489796pt;}
.h1a_c00127{height:65.357143pt;}
.h3_c00127{height:66.266667pt;}
.h2_c00127{height:72.800000pt;}
.h0_c00127{height:562.533333pt;}
.h1_c00127{height:562.666667pt;}
.w0_c00127{width:330.480000pt;}
.w1_c00127{width:330.666667pt;}
.x0_c00127{left:0.000000pt;}
.x67_c00127{left:32.982125pt;}
.x73_c00127{left:34.074209pt;}
.x6d_c00127{left:35.405801pt;}
.x5c_c00127{left:36.656000pt;}
.x4e_c00127{left:37.870416pt;}
.x36_c00127{left:39.217269pt;}
.x29_c00127{left:40.640201pt;}
.x16_c00127{left:41.697333pt;}
.x2_c00127{left:42.684000pt;}
.x1d_c00127{left:43.893333pt;}
.x55_c00127{left:49.705073pt;}
.x3c_c00127{left:50.651077pt;}
.x83_c00127{left:55.400367pt;}
.x7d_c00127{left:56.726021pt;}
.x63_c00127{left:59.612589pt;}
.xf_c00127{left:60.945333pt;}
.x2c_c00127{left:62.742667pt;}
.x37_c00127{left:64.419596pt;}
.x3_c00127{left:66.208000pt;}
.x4f_c00127{left:67.402151pt;}
.x89_c00127{left:70.032965pt;}
.x31_c00127{left:71.293267pt;}
.x23_c00127{left:72.730076pt;}
.x3d_c00127{left:75.491495pt;}
.x49_c00127{left:81.792867pt;}
.x2a_c00127{left:82.789076pt;}
.x74_c00127{left:83.696876pt;}
.x2d_c00127{left:84.803251pt;}
.x17_c00127{left:86.153333pt;}
.x5b_c00127{left:87.864797pt;}
.x7e_c00127{left:89.686011pt;}
.x5d_c00127{left:94.417333pt;}
.x24_c00127{left:97.209159pt;}
.x75_c00127{left:100.523543pt;}
.x7f_c00127{left:101.615196pt;}
.x32_c00127{left:102.834523pt;}
.x5e_c00127{left:104.688000pt;}
.x53_c00127{left:106.523176pt;}
.xa_c00127{left:107.793333pt;}
.x18_c00127{left:111.522667pt;}
.x58_c00127{left:113.530667pt;}
.x10_c00127{left:116.464000pt;}
.x1e_c00127{left:117.908000pt;}
.x4a_c00127{left:119.464331pt;}
.x85_c00127{left:121.448571pt;}
.x42_c00127{left:122.387331pt;}
.x84_c00127{left:123.867033pt;}
.x4_c00127{left:124.836000pt;}
.x44_c00127{left:127.091637pt;}
.x11_c00127{left:128.128000pt;}
.x8a_c00127{left:132.218951pt;}
.x2e_c00127{left:133.751587pt;}
.x33_c00127{left:135.237816pt;}
.x1f_c00127{left:137.609333pt;}
.x6f_c00127{left:138.770971pt;}
.x68_c00127{left:141.280095pt;}
.x45_c00127{left:142.200204pt;}
.x7a_c00127{left:144.350829pt;}
.x76_c00127{left:147.613009pt;}
.x5_c00127{left:149.586667pt;}
.x38_c00127{left:151.824520pt;}
.x5f_c00127{left:153.008000pt;}
.x19_c00127{left:153.941333pt;}
.x70_c00127{left:155.398072pt;}
.x64_c00127{left:159.652323pt;}
.x25_c00127{left:160.786473pt;}
.x20_c00127{left:163.078667pt;}
.x1_c00127{left:164.880000pt;}
.x1a_c00127{left:166.329333pt;}
.x6_c00127{left:168.073333pt;}
.x56_c00127{left:169.589323pt;}
.x43_c00127{left:170.837257pt;}
.x26_c00127{left:172.519404pt;}
.x7b_c00127{left:174.865235pt;}
.xb_c00127{left:177.804000pt;}
.x77_c00127{left:178.937368pt;}
.x21_c00127{left:180.994667pt;}
.x50_c00127{left:184.214079pt;}
.x65_c00127{left:189.756473pt;}
.x59_c00127{left:191.537333pt;}
.x2f_c00127{left:194.962315pt;}
.x69_c00127{left:196.242881pt;}
.x80_c00127{left:197.926372pt;}
.x3e_c00127{left:199.263299pt;}
.x2b_c00127{left:201.677425pt;}
.x12_c00127{left:203.040000pt;}
.x78_c00127{left:204.058736pt;}
.x61_c00127{left:205.279629pt;}
.xc_c00127{left:206.358667pt;}
.x6a_c00127{left:207.513767pt;}
.x4b_c00127{left:209.289900pt;}
.x7_c00127{left:210.448000pt;}
.x3f_c00127{left:214.701480pt;}
.x27_c00127{left:215.855715pt;}
.x81_c00127{left:217.387339pt;}
.x13_c00127{left:221.745333pt;}
.x6e_c00127{left:222.668823pt;}
.x7c_c00127{left:226.489904pt;}
.x39_c00127{left:228.214716pt;}
.x34_c00127{left:230.287964pt;}
.x51_c00127{left:232.085248pt;}
.x46_c00127{left:234.025469pt;}
.x8_c00127{left:235.025333pt;}
.x14_c00127{left:237.577333pt;}
.x62_c00127{left:239.763488pt;}
.x79_c00127{left:240.900716pt;}
.x3a_c00127{left:241.966751pt;}
.x6b_c00127{left:242.919468pt;}
.x22_c00127{left:244.141333pt;}
.x35_c00127{left:246.356364pt;}
.x4c_c00127{left:248.646951pt;}
.x40_c00127{left:250.534728pt;}
.xd_c00127{left:253.394667pt;}
.x57_c00127{left:255.472744pt;}
.x82_c00127{left:257.229560pt;}
.x52_c00127{left:258.123405pt;}
.x87_c00127{left:259.293755pt;}
.x28_c00127{left:263.022104pt;}
.x1b_c00127{left:264.578667pt;}
.x9_c00127{left:266.365333pt;}
.x71_c00127{left:268.308177pt;}
.xe_c00127{left:269.477333pt;}
.x41_c00127{left:272.499031pt;}
.x3b_c00127{left:273.870603pt;}
.x88_c00127{left:277.600604pt;}
.x47_c00127{left:278.747680pt;}
.x6c_c00127{left:281.248521pt;}
.x54_c00127{left:283.295789pt;}
.x15_c00127{left:285.596000pt;}
.x72_c00127{left:286.992324pt;}
.x30_c00127{left:288.239611pt;}
.x86_c00127{left:290.418976pt;}
.x60_c00127{left:292.390667pt;}
.x4d_c00127{left:294.362545pt;}
.x66_c00127{left:295.921577pt;}
.x48_c00127{left:297.678688pt;}
.x1c_c00127{left:299.297333pt;}
.x5a_c00127{left:319.033333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00128 {
    display:none;
  }
  .loading-indicator_c00128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00128 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00128 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00128" -> "#page-container .classname_c00128")
 */
.pf_c00128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00128 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00128 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00128 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00128 {overflow:visible;}
  }
}
.c_c00128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00128 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00128:after { /* webkit #35443 */
  content: '';
}
.t_c00128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00128 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00128 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00128 { /* info for Javascript */
  display:none;
}
.l_c00128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00128:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00128 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00128.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00128;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.029690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029690,0.000000,0.000000,0.250000,0,0);}
.me8_c00128{transform:matrix(0.104900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104900,0.000000,0.000000,0.250000,0,0);}
.me6_c00128{transform:matrix(0.123610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123610,0.000000,0.000000,0.250000,0,0);}
.mbe_c00128{transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);}
.me1_c00128{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.mcf_c00128{transform:matrix(0.136265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136265,0.000000,0.000000,0.250000,0,0);}
.ma4_c00128{transform:matrix(0.136715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136715,0.000000,0.000000,0.250000,0,0);}
.md3_c00128{transform:matrix(0.137970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137970,0.000000,0.000000,0.250000,0,0);}
.me5_c00128{transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141035,0.000000,0.000000,0.250000,0,0);}
.md0_c00128{transform:matrix(0.141930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141930,0.000000,0.000000,0.250000,0,0);}
.mde_c00128{transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);}
.mac_c00128{transform:matrix(0.145210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145210,0.000000,0.000000,0.250000,0,0);}
.mbd_c00128{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m79_c00128{transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);}
.me7_c00128{transform:matrix(0.150480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150480,0.000000,0.000000,0.250000,0,0);}
.mcb_c00128{transform:matrix(0.150670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150670,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);}
.mc5_c00128{transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00128{transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);}
.md1_c00128{transform:matrix(0.153120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153120,0.000000,0.000000,0.250000,0,0);}
.mc4_c00128{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);}
.mcd_c00128{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.154465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154465,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.m76_c00128{transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.m84_c00128{transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m45_c00128{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.mb9_c00128{transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);}
.m7c_c00128{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.ma7_c00128{transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);}
.m89_c00128{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.mba_c00128{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00128{transform:matrix(0.166560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166560,0.000000,0.000000,0.250000,0,0);}
.m72_c00128{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00128{transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m81_c00128{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00128{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.mad_c00128{transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);}
.m77_c00128{transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);}
.m56_c00128{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00128{transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00128{transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);}
.m50_c00128{transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);}
.m88_c00128{transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00128{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m47_c00128{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00128{transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);}
.md2_c00128{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m9a_c00128{transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);}
.m6f_c00128{transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);}
.m32_c00128{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m7a_c00128{transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);}
.mbf_c00128{transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);}
.mab_c00128{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m6c_c00128{transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);}
.m85_c00128{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m7d_c00128{transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);}
.mc3_c00128{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m2b_c00128{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);}
.md5_c00128{transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);}
.mc9_c00128{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.m30_c00128{transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182570,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.ma3_c00128{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.maa_c00128{transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.mae_c00128{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.ma1_c00128{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m70_c00128{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m91_c00128{transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);}
.m58_c00128{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);}
.m4a_c00128{transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);}
.m42_c00128{transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);}
.m7b_c00128{transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);}
.m8e_c00128{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m41_c00128{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.mdd_c00128{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m80_c00128{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00128{transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);}
.mca_c00128{transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);}
.m53_c00128{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00128{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m44_c00128{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mb0_c00128{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m9e_c00128{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m3c_c00128{transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m9c_c00128{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.m75_c00128{transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);}
.m64_c00128{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.mc8_c00128{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.mda_c00128{transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.m4e_c00128{transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m87_c00128{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00128{transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);}
.md4_c00128{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.me0_c00128{transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);}
.m59_c00128{transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);}
.mc0_c00128{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m8c_c00128{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m48_c00128{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.m9f_c00128{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.m6d_c00128{transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);}
.me2_c00128{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m10_c00128{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.m98_c00128{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m94_c00128{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m99_c00128{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.mce_c00128{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.ma6_c00128{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m65_c00128{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);}
.md9_c00128{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.200495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200495,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.m5e_c00128{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.m73_c00128{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m83_c00128{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00128{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.m93_c00128{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.m86_c00128{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m82_c00128{transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.mc1_c00128{transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);}
.m71_c00128{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.m9b_c00128{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00128{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.m5f_c00128{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.mb7_c00128{transform:matrix(0.206955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206955,0.000000,0.000000,0.250000,0,0);}
.m78_c00128{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.mb6_c00128{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.m69_c00128{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.mb4_c00128{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m8d_c00128{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m26_c00128{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m92_c00128{transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);}
.m6b_c00128{transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00128{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.mcc_c00128{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);}
.m5d_c00128{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.m6a_c00128{transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);}
.m2d_c00128{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00128{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.m3e_c00128{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);}
.m6e_c00128{transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);}
.m43_c00128{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m5b_c00128{transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00128{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.me3_c00128{transform:matrix(0.225155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225155,0.000000,0.000000,0.250000,0,0);}
.m8f_c00128{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.m95_c00128{transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);}
.m67_c00128{transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00128{transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);}
.mb8_c00128{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.mb2_c00128{transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);}
.mdb_c00128{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.me4_c00128{transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);}
.ma2_c00128{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);}
.mb3_c00128{transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);}
.m68_c00128{transform:matrix(0.239215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239215,0.000000,0.000000,0.250000,0,0);}
.m7f_c00128{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m63_c00128{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.md6_c00128{transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);}
.md7_c00128{transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);}
.md8_c00128{transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);}
.mbb_c00128{transform:matrix(0.282765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282765,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);}
.mdf_c00128{transform:matrix(0.315745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315745,0.000000,0.000000,0.250000,0,0);}
.m96_c00128{transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);}
.m36_c00128{transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.334545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334545,0.000000,0.000000,0.250000,0,0);}
.m74_c00128{transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);}
.m97_c00128{transform:matrix(0.372835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372835,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.381230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381230,0.000000,0.000000,0.250000,0,0);}
.maf_c00128{transform:matrix(0.383235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383235,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:0.000000px;}
.fc0_c00128{color:transparent;}
.fsa_c00128{font-size:59.850000px;}
.fs9_c00128{font-size:63.000000px;}
.fs7_c00128{font-size:64.050000px;}
.fs5_c00128{font-size:65.100000px;}
.fs1_c00128{font-size:66.150000px;}
.fs2_c00128{font-size:67.200000px;}
.fs8_c00128{font-size:68.250000px;}
.fs3_c00128{font-size:69.300000px;}
.fs6_c00128{font-size:70.350000px;}
.fsb_c00128{font-size:71.400000px;}
.fs4_c00128{font-size:72.450000px;}
.fs0_c00128{font-size:77.700000px;}
.fsd_c00128{font-size:81.900000px;}
.fsf_c00128{font-size:84.000000px;}
.fse_c00128{font-size:87.150000px;}
.fsc_c00128{font-size:89.250000px;}
.fs10_c00128{font-size:98.700000px;}
.y0_c00128{bottom:0.000000px;}
.ybc_c00128{bottom:22.299000px;}
.ybb_c00128{bottom:25.444500px;}
.yba_c00128{bottom:26.596500px;}
.yb9_c00128{bottom:27.804000px;}
.yb8_c00128{bottom:29.688000px;}
.yb7_c00128{bottom:31.605000px;}
.yb6_c00128{bottom:37.783500px;}
.yb5_c00128{bottom:38.440500px;}
.yb4_c00128{bottom:40.462500px;}
.yb3_c00128{bottom:42.549000px;}
.yb2_c00128{bottom:43.593000px;}
.yb1_c00128{bottom:45.115500px;}
.yb0_c00128{bottom:45.910500px;}
.yaf_c00128{bottom:58.875000px;}
.yae_c00128{bottom:60.793500px;}
.yad_c00128{bottom:61.735500px;}
.yac_c00128{bottom:62.166000px;}
.yab_c00128{bottom:63.667500px;}
.yaa_c00128{bottom:64.803000px;}
.ya9_c00128{bottom:75.792000px;}
.ya8_c00128{bottom:76.057500px;}
.ya7_c00128{bottom:76.710000px;}
.ya6_c00128{bottom:77.761500px;}
.ya5_c00128{bottom:78.802500px;}
.ya4_c00128{bottom:79.339500px;}
.ya3_c00128{bottom:79.647000px;}
.ya2_c00128{bottom:79.890000px;}
.ya1_c00128{bottom:80.731500px;}
.ya0_c00128{bottom:93.537000px;}
.y9f_c00128{bottom:93.937500px;}
.y9e_c00128{bottom:95.782500px;}
.y9d_c00128{bottom:96.741000px;}
.y9c_c00128{bottom:99.337500px;}
.y9b_c00128{bottom:100.111500px;}
.y9a_c00128{bottom:101.254500px;}
.y99_c00128{bottom:111.378000px;}
.y98_c00128{bottom:114.075000px;}
.y97_c00128{bottom:115.413000px;}
.y96_c00128{bottom:116.986500px;}
.y95_c00128{bottom:117.973500px;}
.y94_c00128{bottom:119.346000px;}
.y93_c00128{bottom:124.686000px;}
.y92_c00128{bottom:125.583000px;}
.y91_c00128{bottom:126.753000px;}
.y90_c00128{bottom:127.771500px;}
.y8f_c00128{bottom:129.726000px;}
.y8e_c00128{bottom:131.887500px;}
.y8d_c00128{bottom:133.969500px;}
.y8c_c00128{bottom:134.890500px;}
.y8b_c00128{bottom:137.722500px;}
.y8a_c00128{bottom:144.366000px;}
.y89_c00128{bottom:144.582000px;}
.y88_c00128{bottom:145.705500px;}
.y87_c00128{bottom:146.730000px;}
.y86_c00128{bottom:147.163500px;}
.y85_c00128{bottom:148.180500px;}
.y84_c00128{bottom:148.638000px;}
.y83_c00128{bottom:149.581500px;}
.y82_c00128{bottom:164.044500px;}
.y81_c00128{bottom:165.162000px;}
.y80_c00128{bottom:165.534000px;}
.y7f_c00128{bottom:165.978000px;}
.y7e_c00128{bottom:167.515500px;}
.y7d_c00128{bottom:168.751500px;}
.y7c_c00128{bottom:179.764500px;}
.y7b_c00128{bottom:181.140000px;}
.y7a_c00128{bottom:181.849500px;}
.y79_c00128{bottom:182.997000px;}
.y78_c00128{bottom:183.181500px;}
.y77_c00128{bottom:183.721500px;}
.y76_c00128{bottom:184.801500px;}
.y75_c00128{bottom:184.951500px;}
.y74_c00128{bottom:200.127000px;}
.y73_c00128{bottom:201.522000px;}
.y72_c00128{bottom:202.363500px;}
.y71_c00128{bottom:202.687500px;}
.y70_c00128{bottom:203.853000px;}
.y6f_c00128{bottom:216.306000px;}
.y6e_c00128{bottom:216.778500px;}
.y6d_c00128{bottom:217.648500px;}
.y6c_c00128{bottom:218.509500px;}
.y6b_c00128{bottom:218.902500px;}
.y6a_c00128{bottom:219.946500px;}
.y69_c00128{bottom:220.486500px;}
.y68_c00128{bottom:221.943000px;}
.y67_c00128{bottom:233.043000px;}
.y66_c00128{bottom:233.886000px;}
.y65_c00128{bottom:235.663500px;}
.y64_c00128{bottom:236.698500px;}
.y63_c00128{bottom:237.450000px;}
.y62_c00128{bottom:237.921000px;}
.y61_c00128{bottom:238.432500px;}
.y60_c00128{bottom:239.221500px;}
.y5f_c00128{bottom:250.770000px;}
.y5e_c00128{bottom:251.047500px;}
.y5d_c00128{bottom:251.919000px;}
.y5c_c00128{bottom:252.328500px;}
.y5b_c00128{bottom:252.810000px;}
.y5a_c00128{bottom:253.122000px;}
.y59_c00128{bottom:254.086500px;}
.y58_c00128{bottom:254.698500px;}
.y57_c00128{bottom:256.501500px;}
.y56_c00128{bottom:269.067000px;}
.y55_c00128{bottom:269.574000px;}
.y54_c00128{bottom:270.535500px;}
.y53_c00128{bottom:270.820500px;}
.y52_c00128{bottom:271.966500px;}
.y51_c00128{bottom:273.619500px;}
.y50_c00128{bottom:274.321500px;}
.y4f_c00128{bottom:286.888500px;}
.y4e_c00128{bottom:288.315000px;}
.y4d_c00128{bottom:288.777000px;}
.y4c_c00128{bottom:289.078500px;}
.y4b_c00128{bottom:290.239500px;}
.y4a_c00128{bottom:290.572500px;}
.y49_c00128{bottom:290.983500px;}
.y48_c00128{bottom:291.199500px;}
.y47_c00128{bottom:292.143000px;}
.y46_c00128{bottom:305.026500px;}
.y45_c00128{bottom:306.001500px;}
.y44_c00128{bottom:306.456000px;}
.y43_c00128{bottom:307.062000px;}
.y42_c00128{bottom:307.548000px;}
.y41_c00128{bottom:309.094500px;}
.y40_c00128{bottom:309.963000px;}
.y3f_c00128{bottom:323.476500px;}
.y3e_c00128{bottom:323.809500px;}
.y3d_c00128{bottom:324.310500px;}
.y3c_c00128{bottom:324.565500px;}
.y3b_c00128{bottom:325.261500px;}
.y3a_c00128{bottom:325.647000px;}
.y39_c00128{bottom:326.161500px;}
.y38_c00128{bottom:338.593500px;}
.y37_c00128{bottom:338.998500px;}
.y36_c00128{bottom:340.473000px;}
.y35_c00128{bottom:341.614500px;}
.y34_c00128{bottom:341.755500px;}
.y33_c00128{bottom:342.598500px;}
.y32_c00128{bottom:342.903000px;}
.y31_c00128{bottom:356.029500px;}
.y30_c00128{bottom:356.773500px;}
.y2f_c00128{bottom:357.751500px;}
.y2e_c00128{bottom:358.042500px;}
.y2d_c00128{bottom:358.473000px;}
.y2c_c00128{bottom:359.278500px;}
.y2b_c00128{bottom:359.641500px;}
.y2a_c00128{bottom:372.516000px;}
.y29_c00128{bottom:372.897000px;}
.y28_c00128{bottom:373.939500px;}
.y27_c00128{bottom:374.599500px;}
.y26_c00128{bottom:375.577500px;}
.y25_c00128{bottom:376.941000px;}
.y24_c00128{bottom:390.478500px;}
.y23_c00128{bottom:391.065000px;}
.y22_c00128{bottom:392.223000px;}
.y21_c00128{bottom:392.524500px;}
.y20_c00128{bottom:392.791500px;}
.y1f_c00128{bottom:393.462000px;}
.y1e_c00128{bottom:393.663000px;}
.y1d_c00128{bottom:407.970000px;}
.y1c_c00128{bottom:408.672000px;}
.y1b_c00128{bottom:409.195500px;}
.y1a_c00128{bottom:409.702500px;}
.y19_c00128{bottom:409.939500px;}
.y18_c00128{bottom:410.701500px;}
.y17_c00128{bottom:410.952000px;}
.y16_c00128{bottom:426.841500px;}
.y15_c00128{bottom:442.960500px;}
.y14_c00128{bottom:443.502000px;}
.y13_c00128{bottom:444.078000px;}
.y12_c00128{bottom:444.324000px;}
.y11_c00128{bottom:444.717000px;}
.y10_c00128{bottom:445.555500px;}
.yf_c00128{bottom:446.041500px;}
.ye_c00128{bottom:461.061000px;}
.yd_c00128{bottom:461.253000px;}
.yc_c00128{bottom:462.150000px;}
.yb_c00128{bottom:462.483000px;}
.ya_c00128{bottom:463.335000px;}
.y9_c00128{bottom:464.158500px;}
.y8_c00128{bottom:464.401500px;}
.y7_c00128{bottom:479.269500px;}
.y6_c00128{bottom:496.822500px;}
.y5_c00128{bottom:514.669500px;}
.y4_c00128{bottom:532.069500px;}
.y3_c00128{bottom:549.534000px;}
.y2_c00128{bottom:566.743500px;}
.y1_c00128{bottom:584.032500px;}
.hc_c00128{height:59.850000px;}
.hb_c00128{height:63.000000px;}
.h9_c00128{height:64.050000px;}
.h7_c00128{height:65.100000px;}
.h3_c00128{height:66.150000px;}
.h4_c00128{height:67.200000px;}
.ha_c00128{height:68.250000px;}
.h5_c00128{height:69.300000px;}
.h8_c00128{height:70.350000px;}
.hd_c00128{height:71.400000px;}
.h6_c00128{height:72.450000px;}
.h2_c00128{height:77.700000px;}
.hf_c00128{height:81.900000px;}
.h11_c00128{height:84.000000px;}
.h10_c00128{height:87.150000px;}
.he_c00128{height:89.250000px;}
.h12_c00128{height:98.700000px;}
.h0_c00128{height:632.850000px;}
.h1_c00128{height:633.000000px;}
.w0_c00128{width:371.790000px;}
.w1_c00128{width:372.000000px;}
.x0_c00128{left:0.000000px;}
.x4f_c00128{left:33.799500px;}
.x75_c00128{left:35.341500px;}
.x43_c00128{left:36.522000px;}
.x3_c00128{left:37.800000px;}
.xa_c00128{left:38.880000px;}
.x3c_c00128{left:41.992500px;}
.x64_c00128{left:45.358500px;}
.x1b_c00128{left:47.250000px;}
.x47_c00128{left:56.251500px;}
.x3d_c00128{left:57.397500px;}
.x29_c00128{left:58.725000px;}
.x16_c00128{left:61.020000px;}
.x38_c00128{left:62.250000px;}
.x20_c00128{left:63.990000px;}
.x5a_c00128{left:70.198500px;}
.x58_c00128{left:72.363000px;}
.x2d_c00128{left:78.163500px;}
.x4_c00128{left:79.650000px;}
.x4b_c00128{left:83.839500px;}
.x50_c00128{left:84.856500px;}
.xb_c00128{left:86.130000px;}
.x73_c00128{left:87.217500px;}
.x33_c00128{left:90.448500px;}
.x11_c00128{left:92.880000px;}
.x6c_c00128{left:93.940500px;}
.x62_c00128{left:95.887500px;}
.x21_c00128{left:98.280000px;}
.x5_c00128{left:100.170000px;}
.x5e_c00128{left:102.337500px;}
.x65_c00128{left:105.318000px;}
.x76_c00128{left:106.366500px;}
.x3e_c00128{left:108.934500px;}
.x48_c00128{left:112.492500px;}
.x5b_c00128{left:114.804000px;}
.x40_c00128{left:117.288000px;}
.x4c_c00128{left:118.935000px;}
.x44_c00128{left:120.033000px;}
.x49_c00128{left:121.875000px;}
.x74_c00128{left:123.793500px;}
.x2a_c00128{left:127.314000px;}
.x22_c00128{left:129.870000px;}
.x17_c00128{left:131.760000px;}
.x66_c00128{left:135.342000px;}
.x55_c00128{left:137.179500px;}
.x39_c00128{left:138.396000px;}
.x1c_c00128{left:144.450000px;}
.x67_c00128{left:145.564500px;}
.x2e_c00128{left:148.066500px;}
.x45_c00128{left:150.769500px;}
.x23_c00128{left:152.010000px;}
.x1_c00128{left:153.360000px;}
.xc_c00128{left:155.250000px;}
.x63_c00128{left:157.191000px;}
.x12_c00128{left:161.460000px;}
.x6_c00128{left:162.810000px;}
.x70_c00128{left:165.820500px;}
.x79_c00128{left:166.894500px;}
.x69_c00128{left:168.516000px;}
.x13_c00128{left:170.370000px;}
.x46_c00128{left:171.555000px;}
.x41_c00128{left:174.832500px;}
.x51_c00128{left:175.857000px;}
.x24_c00128{left:178.200000px;}
.x2f_c00128{left:180.760500px;}
.x4d_c00128{left:182.166000px;}
.x2_c00128{left:187.110000px;}
.x6a_c00128{left:189.640500px;}
.x5f_c00128{left:192.258000px;}
.x7_c00128{left:193.590000px;}
.x18_c00128{left:196.830000px;}
.x2b_c00128{left:198.375000px;}
.x6d_c00128{left:199.861500px;}
.x30_c00128{left:201.274500px;}
.x77_c00128{left:202.525500px;}
.x52_c00128{left:204.441000px;}
.x34_c00128{left:206.008500px;}
.xd_c00128{left:207.090000px;}
.x68_c00128{left:209.287500px;}
.x3a_c00128{left:212.911500px;}
.x56_c00128{left:214.153500px;}
.x8_c00128{left:216.270000px;}
.x7b_c00128{left:217.600500px;}
.x25_c00128{left:220.320000px;}
.x2c_c00128{left:226.119000px;}
.x7d_c00128{left:227.895000px;}
.xe_c00128{left:229.770000px;}
.x60_c00128{left:231.406500px;}
.x35_c00128{left:234.628500px;}
.x57_c00128{left:238.444500px;}
.x53_c00128{left:240.075000px;}
.x26_c00128{left:241.110000px;}
.x31_c00128{left:249.324000px;}
.x19_c00128{left:251.910000px;}
.x36_c00128{left:254.338500px;}
.x1d_c00128{left:257.580000px;}
.x6b_c00128{left:260.586000px;}
.x14_c00128{left:265.410000px;}
.xf_c00128{left:267.570000px;}
.x61_c00128{left:270.931500px;}
.x9_c00128{left:274.860000px;}
.x5c_c00128{left:276.844500px;}
.x71_c00128{left:279.924000px;}
.x4e_c00128{left:281.181000px;}
.x7c_c00128{left:284.986500px;}
.x3f_c00128{left:286.837500px;}
.x7a_c00128{left:291.243000px;}
.x37_c00128{left:292.678500px;}
.x32_c00128{left:294.388500px;}
.x4a_c00128{left:296.305500px;}
.x42_c00128{left:297.367500px;}
.x10_c00128{left:298.620000px;}
.x27_c00128{left:299.970000px;}
.x72_c00128{left:305.934000px;}
.x59_c00128{left:309.141000px;}
.x1a_c00128{left:312.930000px;}
.x5d_c00128{left:315.172500px;}
.x1e_c00128{left:316.710000px;}
.x6e_c00128{left:319.236000px;}
.x78_c00128{left:321.189000px;}
.x28_c00128{left:322.380000px;}
.x54_c00128{left:324.135000px;}
.x15_c00128{left:325.890000px;}
.x6f_c00128{left:331.266000px;}
.x3b_c00128{left:335.523000px;}
.x1f_c00128{left:344.790000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
.fsa_c00128{font-size:53.200000pt;}
.fs9_c00128{font-size:56.000000pt;}
.fs7_c00128{font-size:56.933333pt;}
.fs5_c00128{font-size:57.866667pt;}
.fs1_c00128{font-size:58.800000pt;}
.fs2_c00128{font-size:59.733333pt;}
.fs8_c00128{font-size:60.666667pt;}
.fs3_c00128{font-size:61.600000pt;}
.fs6_c00128{font-size:62.533333pt;}
.fsb_c00128{font-size:63.466667pt;}
.fs4_c00128{font-size:64.400000pt;}
.fs0_c00128{font-size:69.066667pt;}
.fsd_c00128{font-size:72.800000pt;}
.fsf_c00128{font-size:74.666667pt;}
.fse_c00128{font-size:77.466667pt;}
.fsc_c00128{font-size:79.333333pt;}
.fs10_c00128{font-size:87.733333pt;}
.y0_c00128{bottom:0.000000pt;}
.ybc_c00128{bottom:19.821333pt;}
.ybb_c00128{bottom:22.617333pt;}
.yba_c00128{bottom:23.641333pt;}
.yb9_c00128{bottom:24.714667pt;}
.yb8_c00128{bottom:26.389333pt;}
.yb7_c00128{bottom:28.093333pt;}
.yb6_c00128{bottom:33.585333pt;}
.yb5_c00128{bottom:34.169333pt;}
.yb4_c00128{bottom:35.966667pt;}
.yb3_c00128{bottom:37.821333pt;}
.yb2_c00128{bottom:38.749333pt;}
.yb1_c00128{bottom:40.102667pt;}
.yb0_c00128{bottom:40.809333pt;}
.yaf_c00128{bottom:52.333333pt;}
.yae_c00128{bottom:54.038667pt;}
.yad_c00128{bottom:54.876000pt;}
.yac_c00128{bottom:55.258667pt;}
.yab_c00128{bottom:56.593333pt;}
.yaa_c00128{bottom:57.602667pt;}
.ya9_c00128{bottom:67.370667pt;}
.ya8_c00128{bottom:67.606667pt;}
.ya7_c00128{bottom:68.186667pt;}
.ya6_c00128{bottom:69.121333pt;}
.ya5_c00128{bottom:70.046667pt;}
.ya4_c00128{bottom:70.524000pt;}
.ya3_c00128{bottom:70.797333pt;}
.ya2_c00128{bottom:71.013333pt;}
.ya1_c00128{bottom:71.761333pt;}
.ya0_c00128{bottom:83.144000pt;}
.y9f_c00128{bottom:83.500000pt;}
.y9e_c00128{bottom:85.140000pt;}
.y9d_c00128{bottom:85.992000pt;}
.y9c_c00128{bottom:88.300000pt;}
.y9b_c00128{bottom:88.988000pt;}
.y9a_c00128{bottom:90.004000pt;}
.y99_c00128{bottom:99.002667pt;}
.y98_c00128{bottom:101.400000pt;}
.y97_c00128{bottom:102.589333pt;}
.y96_c00128{bottom:103.988000pt;}
.y95_c00128{bottom:104.865333pt;}
.y94_c00128{bottom:106.085333pt;}
.y93_c00128{bottom:110.832000pt;}
.y92_c00128{bottom:111.629333pt;}
.y91_c00128{bottom:112.669333pt;}
.y90_c00128{bottom:113.574667pt;}
.y8f_c00128{bottom:115.312000pt;}
.y8e_c00128{bottom:117.233333pt;}
.y8d_c00128{bottom:119.084000pt;}
.y8c_c00128{bottom:119.902667pt;}
.y8b_c00128{bottom:122.420000pt;}
.y8a_c00128{bottom:128.325333pt;}
.y89_c00128{bottom:128.517333pt;}
.y88_c00128{bottom:129.516000pt;}
.y87_c00128{bottom:130.426667pt;}
.y86_c00128{bottom:130.812000pt;}
.y85_c00128{bottom:131.716000pt;}
.y84_c00128{bottom:132.122667pt;}
.y83_c00128{bottom:132.961333pt;}
.y82_c00128{bottom:145.817333pt;}
.y81_c00128{bottom:146.810667pt;}
.y80_c00128{bottom:147.141333pt;}
.y7f_c00128{bottom:147.536000pt;}
.y7e_c00128{bottom:148.902667pt;}
.y7d_c00128{bottom:150.001333pt;}
.y7c_c00128{bottom:159.790667pt;}
.y7b_c00128{bottom:161.013333pt;}
.y7a_c00128{bottom:161.644000pt;}
.y79_c00128{bottom:162.664000pt;}
.y78_c00128{bottom:162.828000pt;}
.y77_c00128{bottom:163.308000pt;}
.y76_c00128{bottom:164.268000pt;}
.y75_c00128{bottom:164.401333pt;}
.y74_c00128{bottom:177.890667pt;}
.y73_c00128{bottom:179.130667pt;}
.y72_c00128{bottom:179.878667pt;}
.y71_c00128{bottom:180.166667pt;}
.y70_c00128{bottom:181.202667pt;}
.y6f_c00128{bottom:192.272000pt;}
.y6e_c00128{bottom:192.692000pt;}
.y6d_c00128{bottom:193.465333pt;}
.y6c_c00128{bottom:194.230667pt;}
.y6b_c00128{bottom:194.580000pt;}
.y6a_c00128{bottom:195.508000pt;}
.y69_c00128{bottom:195.988000pt;}
.y68_c00128{bottom:197.282667pt;}
.y67_c00128{bottom:207.149333pt;}
.y66_c00128{bottom:207.898667pt;}
.y65_c00128{bottom:209.478667pt;}
.y64_c00128{bottom:210.398667pt;}
.y63_c00128{bottom:211.066667pt;}
.y62_c00128{bottom:211.485333pt;}
.y61_c00128{bottom:211.940000pt;}
.y60_c00128{bottom:212.641333pt;}
.y5f_c00128{bottom:222.906667pt;}
.y5e_c00128{bottom:223.153333pt;}
.y5d_c00128{bottom:223.928000pt;}
.y5c_c00128{bottom:224.292000pt;}
.y5b_c00128{bottom:224.720000pt;}
.y5a_c00128{bottom:224.997333pt;}
.y59_c00128{bottom:225.854667pt;}
.y58_c00128{bottom:226.398667pt;}
.y57_c00128{bottom:228.001333pt;}
.y56_c00128{bottom:239.170667pt;}
.y55_c00128{bottom:239.621333pt;}
.y54_c00128{bottom:240.476000pt;}
.y53_c00128{bottom:240.729333pt;}
.y52_c00128{bottom:241.748000pt;}
.y51_c00128{bottom:243.217333pt;}
.y50_c00128{bottom:243.841333pt;}
.y4f_c00128{bottom:255.012000pt;}
.y4e_c00128{bottom:256.280000pt;}
.y4d_c00128{bottom:256.690667pt;}
.y4c_c00128{bottom:256.958667pt;}
.y4b_c00128{bottom:257.990667pt;}
.y4a_c00128{bottom:258.286667pt;}
.y49_c00128{bottom:258.652000pt;}
.y48_c00128{bottom:258.844000pt;}
.y47_c00128{bottom:259.682667pt;}
.y46_c00128{bottom:271.134667pt;}
.y45_c00128{bottom:272.001333pt;}
.y44_c00128{bottom:272.405333pt;}
.y43_c00128{bottom:272.944000pt;}
.y42_c00128{bottom:273.376000pt;}
.y41_c00128{bottom:274.750667pt;}
.y40_c00128{bottom:275.522667pt;}
.y3f_c00128{bottom:287.534667pt;}
.y3e_c00128{bottom:287.830667pt;}
.y3d_c00128{bottom:288.276000pt;}
.y3c_c00128{bottom:288.502667pt;}
.y3b_c00128{bottom:289.121333pt;}
.y3a_c00128{bottom:289.464000pt;}
.y39_c00128{bottom:289.921333pt;}
.y38_c00128{bottom:300.972000pt;}
.y37_c00128{bottom:301.332000pt;}
.y36_c00128{bottom:302.642667pt;}
.y35_c00128{bottom:303.657333pt;}
.y34_c00128{bottom:303.782667pt;}
.y33_c00128{bottom:304.532000pt;}
.y32_c00128{bottom:304.802667pt;}
.y31_c00128{bottom:316.470667pt;}
.y30_c00128{bottom:317.132000pt;}
.y2f_c00128{bottom:318.001333pt;}
.y2e_c00128{bottom:318.260000pt;}
.y2d_c00128{bottom:318.642667pt;}
.y2c_c00128{bottom:319.358667pt;}
.y2b_c00128{bottom:319.681333pt;}
.y2a_c00128{bottom:331.125333pt;}
.y29_c00128{bottom:331.464000pt;}
.y28_c00128{bottom:332.390667pt;}
.y27_c00128{bottom:332.977333pt;}
.y26_c00128{bottom:333.846667pt;}
.y25_c00128{bottom:335.058667pt;}
.y24_c00128{bottom:347.092000pt;}
.y23_c00128{bottom:347.613333pt;}
.y22_c00128{bottom:348.642667pt;}
.y21_c00128{bottom:348.910667pt;}
.y20_c00128{bottom:349.148000pt;}
.y1f_c00128{bottom:349.744000pt;}
.y1e_c00128{bottom:349.922667pt;}
.y1d_c00128{bottom:362.640000pt;}
.y1c_c00128{bottom:363.264000pt;}
.y1b_c00128{bottom:363.729333pt;}
.y1a_c00128{bottom:364.180000pt;}
.y19_c00128{bottom:364.390667pt;}
.y18_c00128{bottom:365.068000pt;}
.y17_c00128{bottom:365.290667pt;}
.y16_c00128{bottom:379.414667pt;}
.y15_c00128{bottom:393.742667pt;}
.y14_c00128{bottom:394.224000pt;}
.y13_c00128{bottom:394.736000pt;}
.y12_c00128{bottom:394.954667pt;}
.y11_c00128{bottom:395.304000pt;}
.y10_c00128{bottom:396.049333pt;}
.yf_c00128{bottom:396.481333pt;}
.ye_c00128{bottom:409.832000pt;}
.yd_c00128{bottom:410.002667pt;}
.yc_c00128{bottom:410.800000pt;}
.yb_c00128{bottom:411.096000pt;}
.ya_c00128{bottom:411.853333pt;}
.y9_c00128{bottom:412.585333pt;}
.y8_c00128{bottom:412.801333pt;}
.y7_c00128{bottom:426.017333pt;}
.y6_c00128{bottom:441.620000pt;}
.y5_c00128{bottom:457.484000pt;}
.y4_c00128{bottom:472.950667pt;}
.y3_c00128{bottom:488.474667pt;}
.y2_c00128{bottom:503.772000pt;}
.y1_c00128{bottom:519.140000pt;}
.hc_c00128{height:53.200000pt;}
.hb_c00128{height:56.000000pt;}
.h9_c00128{height:56.933333pt;}
.h7_c00128{height:57.866667pt;}
.h3_c00128{height:58.800000pt;}
.h4_c00128{height:59.733333pt;}
.ha_c00128{height:60.666667pt;}
.h5_c00128{height:61.600000pt;}
.h8_c00128{height:62.533333pt;}
.hd_c00128{height:63.466667pt;}
.h6_c00128{height:64.400000pt;}
.h2_c00128{height:69.066667pt;}
.hf_c00128{height:72.800000pt;}
.h11_c00128{height:74.666667pt;}
.h10_c00128{height:77.466667pt;}
.he_c00128{height:79.333333pt;}
.h12_c00128{height:87.733333pt;}
.h0_c00128{height:562.533333pt;}
.h1_c00128{height:562.666667pt;}
.w0_c00128{width:330.480000pt;}
.w1_c00128{width:330.666667pt;}
.x0_c00128{left:0.000000pt;}
.x4f_c00128{left:30.044000pt;}
.x75_c00128{left:31.414667pt;}
.x43_c00128{left:32.464000pt;}
.x3_c00128{left:33.600000pt;}
.xa_c00128{left:34.560000pt;}
.x3c_c00128{left:37.326667pt;}
.x64_c00128{left:40.318667pt;}
.x1b_c00128{left:42.000000pt;}
.x47_c00128{left:50.001333pt;}
.x3d_c00128{left:51.020000pt;}
.x29_c00128{left:52.200000pt;}
.x16_c00128{left:54.240000pt;}
.x38_c00128{left:55.333333pt;}
.x20_c00128{left:56.880000pt;}
.x5a_c00128{left:62.398667pt;}
.x58_c00128{left:64.322667pt;}
.x2d_c00128{left:69.478667pt;}
.x4_c00128{left:70.800000pt;}
.x4b_c00128{left:74.524000pt;}
.x50_c00128{left:75.428000pt;}
.xb_c00128{left:76.560000pt;}
.x73_c00128{left:77.526667pt;}
.x33_c00128{left:80.398667pt;}
.x11_c00128{left:82.560000pt;}
.x6c_c00128{left:83.502667pt;}
.x62_c00128{left:85.233333pt;}
.x21_c00128{left:87.360000pt;}
.x5_c00128{left:89.040000pt;}
.x5e_c00128{left:90.966667pt;}
.x65_c00128{left:93.616000pt;}
.x76_c00128{left:94.548000pt;}
.x3e_c00128{left:96.830667pt;}
.x48_c00128{left:99.993333pt;}
.x5b_c00128{left:102.048000pt;}
.x40_c00128{left:104.256000pt;}
.x4c_c00128{left:105.720000pt;}
.x44_c00128{left:106.696000pt;}
.x49_c00128{left:108.333333pt;}
.x74_c00128{left:110.038667pt;}
.x2a_c00128{left:113.168000pt;}
.x22_c00128{left:115.440000pt;}
.x17_c00128{left:117.120000pt;}
.x66_c00128{left:120.304000pt;}
.x55_c00128{left:121.937333pt;}
.x39_c00128{left:123.018667pt;}
.x1c_c00128{left:128.400000pt;}
.x67_c00128{left:129.390667pt;}
.x2e_c00128{left:131.614667pt;}
.x45_c00128{left:134.017333pt;}
.x23_c00128{left:135.120000pt;}
.x1_c00128{left:136.320000pt;}
.xc_c00128{left:138.000000pt;}
.x63_c00128{left:139.725333pt;}
.x12_c00128{left:143.520000pt;}
.x6_c00128{left:144.720000pt;}
.x70_c00128{left:147.396000pt;}
.x79_c00128{left:148.350667pt;}
.x69_c00128{left:149.792000pt;}
.x13_c00128{left:151.440000pt;}
.x46_c00128{left:152.493333pt;}
.x41_c00128{left:155.406667pt;}
.x51_c00128{left:156.317333pt;}
.x24_c00128{left:158.400000pt;}
.x2f_c00128{left:160.676000pt;}
.x4d_c00128{left:161.925333pt;}
.x2_c00128{left:166.320000pt;}
.x6a_c00128{left:168.569333pt;}
.x5f_c00128{left:170.896000pt;}
.x7_c00128{left:172.080000pt;}
.x18_c00128{left:174.960000pt;}
.x2b_c00128{left:176.333333pt;}
.x6d_c00128{left:177.654667pt;}
.x30_c00128{left:178.910667pt;}
.x77_c00128{left:180.022667pt;}
.x52_c00128{left:181.725333pt;}
.x34_c00128{left:183.118667pt;}
.xd_c00128{left:184.080000pt;}
.x68_c00128{left:186.033333pt;}
.x3a_c00128{left:189.254667pt;}
.x56_c00128{left:190.358667pt;}
.x8_c00128{left:192.240000pt;}
.x7b_c00128{left:193.422667pt;}
.x25_c00128{left:195.840000pt;}
.x2c_c00128{left:200.994667pt;}
.x7d_c00128{left:202.573333pt;}
.xe_c00128{left:204.240000pt;}
.x60_c00128{left:205.694667pt;}
.x35_c00128{left:208.558667pt;}
.x57_c00128{left:211.950667pt;}
.x53_c00128{left:213.400000pt;}
.x26_c00128{left:214.320000pt;}
.x31_c00128{left:221.621333pt;}
.x19_c00128{left:223.920000pt;}
.x36_c00128{left:226.078667pt;}
.x1d_c00128{left:228.960000pt;}
.x6b_c00128{left:231.632000pt;}
.x14_c00128{left:235.920000pt;}
.xf_c00128{left:237.840000pt;}
.x61_c00128{left:240.828000pt;}
.x9_c00128{left:244.320000pt;}
.x5c_c00128{left:246.084000pt;}
.x71_c00128{left:248.821333pt;}
.x4e_c00128{left:249.938667pt;}
.x7c_c00128{left:253.321333pt;}
.x3f_c00128{left:254.966667pt;}
.x7a_c00128{left:258.882667pt;}
.x37_c00128{left:260.158667pt;}
.x32_c00128{left:261.678667pt;}
.x4a_c00128{left:263.382667pt;}
.x42_c00128{left:264.326667pt;}
.x10_c00128{left:265.440000pt;}
.x27_c00128{left:266.640000pt;}
.x72_c00128{left:271.941333pt;}
.x59_c00128{left:274.792000pt;}
.x1a_c00128{left:278.160000pt;}
.x5d_c00128{left:280.153333pt;}
.x1e_c00128{left:281.520000pt;}
.x6e_c00128{left:283.765333pt;}
.x78_c00128{left:285.501333pt;}
.x28_c00128{left:286.560000pt;}
.x54_c00128{left:288.120000pt;}
.x15_c00128{left:289.680000pt;}
.x6f_c00128{left:294.458667pt;}
.x3b_c00128{left:298.242667pt;}
.x1f_c00128{left:306.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00129 {
    display:none;
  }
  .loading-indicator_c00129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00129 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00129 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00129" -> "#page-container .classname_c00129")
 */
.pf_c00129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00129 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00129 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00129 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00129 {overflow:visible;}
  }
}
.c_c00129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00129 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00129:after { /* webkit #35443 */
  content: '';
}
.t_c00129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00129 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00129 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00129 { /* info for Javascript */
  display:none;
}
.l_c00129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00129:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00129 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00129.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mec_c00129{transform:matrix(0.056535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056535,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);}
.md6_c00129{transform:matrix(0.102210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102210,0.000000,0.000000,0.250000,0,0);}
.md9_c00129{transform:matrix(0.104205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104205,0.000000,0.000000,0.250000,0,0);}
.md3_c00129{transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);}
.md2_c00129{transform:matrix(0.115210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115210,0.000000,0.000000,0.250000,0,0);}
.md4_c00129{transform:matrix(0.115580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115580,0.000000,0.000000,0.250000,0,0);}
.md8_c00129{transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);}
.mbf_c00129{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.mde_c00129{transform:matrix(0.126095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126095,0.000000,0.000000,0.250000,0,0);}
.me8_c00129{transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.128580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128580,0.000000,0.000000,0.250000,0,0);}
.md7_c00129{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.md5_c00129{transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.129910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{transform:matrix(0.130985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130985,0.000000,0.000000,0.250000,0,0);}
.mdd_c00129{transform:matrix(0.131005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131005,0.000000,0.000000,0.250000,0,0);}
.mb3_c00129{transform:matrix(0.135040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135040,0.000000,0.000000,0.250000,0,0);}
.mc3_c00129{transform:matrix(0.137430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137430,0.000000,0.000000,0.250000,0,0);}
.m2a_c00129{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.mdc_c00129{transform:matrix(0.137980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137980,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00129{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.mdf_c00129{transform:matrix(0.139490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139490,0.000000,0.000000,0.250000,0,0);}
.mdb_c00129{transform:matrix(0.139845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139845,0.000000,0.000000,0.250000,0,0);}
.mc0_c00129{transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);}
.mc1_c00129{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.mef_c00129{transform:matrix(0.145730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145730,0.000000,0.000000,0.250000,0,0);}
.med_c00129{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.mee_c00129{transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00129{transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);}
.mb0_c00129{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m93_c00129{transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);}
.m7e_c00129{transform:matrix(0.154915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154915,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);}
.m90_c00129{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.me9_c00129{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.mc6_c00129{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);}
.mc9_c00129{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m9d_c00129{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.mb6_c00129{transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167345,0.000000,0.000000,0.250000,0,0);}
.m94_c00129{transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);}
.me4_c00129{transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m68_c00129{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m88_c00129{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.me0_c00129{transform:matrix(0.170885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170885,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.mb7_c00129{transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);}
.mf3_c00129{transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);}
.meb_c00129{transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173915,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00129{transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00129{transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);}
.mea_c00129{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.mb1_c00129{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m80_c00129{transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);}
.mc8_c00129{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);}
.mae_c00129{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m61_c00129{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.mf1_c00129{transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);}
.m8d_c00129{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mf6_c00129{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00129{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);}
.m27_c00129{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.me1_c00129{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);}
.me3_c00129{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00129{transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);}
.me5_c00129{transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);}
.maf_c00129{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.187545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187545,0.000000,0.000000,0.250000,0,0);}
.m70_c00129{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m81_c00129{transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00129{transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);}
.m59_c00129{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.mf7_c00129{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);}
.mcd_c00129{transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);}
.mcb_c00129{transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);}
.mf5_c00129{transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00129{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.mf9_c00129{transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);}
.m65_c00129{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.m8b_c00129{transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.mf0_c00129{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.mc7_c00129{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.me2_c00129{transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);}
.mfc_c00129{transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.mf2_c00129{transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);}
.me7_c00129{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mb2_c00129{transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m34_c00129{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m86_c00129{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.mb9_c00129{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);}
.m89_c00129{transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.mf4_c00129{transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mda_c00129{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.mcc_c00129{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m78_c00129{transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);}
.ma8_c00129{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.mfa_c00129{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.m95_c00129{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.mbe_c00129{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.228545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.229185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229185,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(0.232315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232315,0.000000,0.000000,0.250000,0,0);}
.mc5_c00129{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);}
.m64_c00129{transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.md1_c00129{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.mca_c00129{transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);}
.mbc_c00129{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.mfb_c00129{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.mc4_c00129{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.ma1_c00129{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.md0_c00129{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.me6_c00129{transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.mba_c00129{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m63_c00129{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.mce_c00129{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m52_c00129{transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);}
.mf8_c00129{transform:matrix(0.258165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258165,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.ma4_c00129{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);}
.mfd_c00129{transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{transform:matrix(0.274910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274910,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.275140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275140,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00129{transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);}
.mbb_c00129{transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.304155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304155,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);}
.mcf_c00129{transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.316170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316170,0.000000,0.000000,0.250000,0,0);}
.ma6_c00129{transform:matrix(0.321430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321430,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.656195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656195,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:0.000000px;}
.fc0_c00129{color:transparent;}
.fs7_c00129{font-size:44.100000px;}
.fsa_c00129{font-size:49.350000px;}
.fs8_c00129{font-size:54.600000px;}
.fs6_c00129{font-size:57.750000px;}
.fs5_c00129{font-size:58.800000px;}
.fs9_c00129{font-size:61.950000px;}
.fs3_c00129{font-size:63.000000px;}
.fsb_c00129{font-size:64.050000px;}
.fs1_c00129{font-size:65.100000px;}
.fse_c00129{font-size:66.150000px;}
.fsd_c00129{font-size:67.200000px;}
.fs2_c00129{font-size:68.250000px;}
.fs0_c00129{font-size:70.350000px;}
.fsf_c00129{font-size:72.450000px;}
.fsc_c00129{font-size:77.700000px;}
.fs4_c00129{font-size:80.850000px;}
.fs10_c00129{font-size:81.900000px;}
.fs13_c00129{font-size:86.100000px;}
.fs12_c00129{font-size:89.250000px;}
.fs11_c00129{font-size:109.200000px;}
.y0_c00129{bottom:0.000000px;}
.ye4_c00129{bottom:26.214000px;}
.ye5_c00129{bottom:29.071500px;}
.ye6_c00129{bottom:31.926000px;}
.ye7_c00129{bottom:32.823000px;}
.ye8_c00129{bottom:35.022000px;}
.ye9_c00129{bottom:37.161000px;}
.ydc_c00129{bottom:43.473000px;}
.ydd_c00129{bottom:44.005500px;}
.yde_c00129{bottom:44.316000px;}
.ydf_c00129{bottom:45.066000px;}
.ye0_c00129{bottom:45.744000px;}
.ye1_c00129{bottom:47.310000px;}
.ye2_c00129{bottom:49.741500px;}
.ye3_c00129{bottom:50.340000px;}
.yd3_c00129{bottom:57.255000px;}
.yd4_c00129{bottom:57.727500px;}
.yd5_c00129{bottom:58.455000px;}
.yd6_c00129{bottom:60.819000px;}
.yd7_c00129{bottom:61.282500px;}
.yd8_c00129{bottom:63.421500px;}
.yd9_c00129{bottom:63.622500px;}
.yda_c00129{bottom:65.433000px;}
.ydb_c00129{bottom:66.351000px;}
.ycd_c00129{bottom:72.924000px;}
.yce_c00129{bottom:75.660000px;}
.ycf_c00129{bottom:77.254500px;}
.yd0_c00129{bottom:79.786500px;}
.yd1_c00129{bottom:80.520000px;}
.yd2_c00129{bottom:83.046000px;}
.yc5_c00129{bottom:87.235500px;}
.yc6_c00129{bottom:89.280000px;}
.yc7_c00129{bottom:89.571000px;}
.yc8_c00129{bottom:90.217500px;}
.yc9_c00129{bottom:92.257500px;}
.yca_c00129{bottom:93.105000px;}
.ycb_c00129{bottom:94.278000px;}
.ycc_c00129{bottom:96.033000px;}
.ybd_c00129{bottom:105.591000px;}
.ybe_c00129{bottom:106.621500px;}
.ybf_c00129{bottom:108.724500px;}
.yc0_c00129{bottom:109.683000px;}
.yc1_c00129{bottom:112.194000px;}
.yc2_c00129{bottom:112.693500px;}
.yc3_c00129{bottom:114.808500px;}
.yc4_c00129{bottom:115.725000px;}
.ybc_c00129{bottom:133.068000px;}
.yb6_c00129{bottom:147.706500px;}
.yb7_c00129{bottom:151.267500px;}
.yb8_c00129{bottom:152.182500px;}
.yb9_c00129{bottom:152.889000px;}
.yba_c00129{bottom:154.896000px;}
.ybb_c00129{bottom:157.528500px;}
.yad_c00129{bottom:163.915500px;}
.yae_c00129{bottom:165.282000px;}
.yaf_c00129{bottom:166.120500px;}
.yb0_c00129{bottom:168.273000px;}
.yb1_c00129{bottom:168.811500px;}
.yb2_c00129{bottom:169.554000px;}
.yb3_c00129{bottom:171.616500px;}
.yb4_c00129{bottom:172.833000px;}
.yb5_c00129{bottom:174.826500px;}
.ya5_c00129{bottom:175.792500px;}
.ya6_c00129{bottom:177.033000px;}
.ya7_c00129{bottom:178.953000px;}
.ya8_c00129{bottom:179.758500px;}
.ya9_c00129{bottom:180.397500px;}
.yaa_c00129{bottom:183.091500px;}
.yab_c00129{bottom:184.509000px;}
.yac_c00129{bottom:186.535500px;}
.y9d_c00129{bottom:201.970500px;}
.y9e_c00129{bottom:203.307000px;}
.y9f_c00129{bottom:204.291000px;}
.ya0_c00129{bottom:206.043000px;}
.ya1_c00129{bottom:207.852000px;}
.ya2_c00129{bottom:209.536500px;}
.ya3_c00129{bottom:210.277500px;}
.ya4_c00129{bottom:211.161000px;}
.y93_c00129{bottom:217.629000px;}
.y94_c00129{bottom:219.436500px;}
.y95_c00129{bottom:219.960000px;}
.y96_c00129{bottom:220.476000px;}
.y97_c00129{bottom:221.127000px;}
.y98_c00129{bottom:221.812500px;}
.y99_c00129{bottom:222.142500px;}
.y9a_c00129{bottom:223.476000px;}
.y9b_c00129{bottom:225.180000px;}
.y9c_c00129{bottom:225.490500px;}
.y92_c00129{bottom:236.739000px;}
.y91_c00129{bottom:254.734500px;}
.y8b_c00129{bottom:268.663500px;}
.y8c_c00129{bottom:269.689500px;}
.y8d_c00129{bottom:270.457500px;}
.y8e_c00129{bottom:272.242500px;}
.y8f_c00129{bottom:274.962000px;}
.y90_c00129{bottom:277.624500px;}
.y83_c00129{bottom:287.020500px;}
.y84_c00129{bottom:288.493500px;}
.y85_c00129{bottom:289.473000px;}
.y86_c00129{bottom:290.461500px;}
.y87_c00129{bottom:291.235500px;}
.y88_c00129{bottom:293.004000px;}
.y89_c00129{bottom:293.899500px;}
.y8a_c00129{bottom:295.024500px;}
.y79_c00129{bottom:303.495000px;}
.y7a_c00129{bottom:304.314000px;}
.y7b_c00129{bottom:305.890500px;}
.y7c_c00129{bottom:306.724500px;}
.y7d_c00129{bottom:307.681500px;}
.y7e_c00129{bottom:308.487000px;}
.y7f_c00129{bottom:309.499500px;}
.y80_c00129{bottom:310.243500px;}
.y81_c00129{bottom:312.684000px;}
.y82_c00129{bottom:313.795500px;}
.y72_c00129{bottom:321.577500px;}
.y73_c00129{bottom:322.416000px;}
.y74_c00129{bottom:323.721000px;}
.y75_c00129{bottom:326.008500px;}
.y76_c00129{bottom:328.384500px;}
.y77_c00129{bottom:329.193000px;}
.y78_c00129{bottom:331.036500px;}
.y6b_c00129{bottom:340.740000px;}
.y6c_c00129{bottom:341.427000px;}
.y6d_c00129{bottom:343.059000px;}
.y6e_c00129{bottom:343.437000px;}
.y6f_c00129{bottom:344.785500px;}
.y70_c00129{bottom:345.270000px;}
.y71_c00129{bottom:347.589000px;}
.y62_c00129{bottom:357.757500px;}
.y63_c00129{bottom:358.620000px;}
.y64_c00129{bottom:360.174000px;}
.y65_c00129{bottom:362.074500px;}
.y66_c00129{bottom:362.494500px;}
.y67_c00129{bottom:363.045000px;}
.y68_c00129{bottom:364.695000px;}
.y69_c00129{bottom:365.392500px;}
.y6a_c00129{bottom:366.654000px;}
.y59_c00129{bottom:375.304500px;}
.y5a_c00129{bottom:376.390500px;}
.y5b_c00129{bottom:378.097500px;}
.y5c_c00129{bottom:378.687000px;}
.y5d_c00129{bottom:380.533500px;}
.y5e_c00129{bottom:381.291000px;}
.y5f_c00129{bottom:382.258500px;}
.y60_c00129{bottom:384.859500px;}
.y61_c00129{bottom:385.309500px;}
.y53_c00129{bottom:392.595000px;}
.y54_c00129{bottom:396.411000px;}
.y55_c00129{bottom:397.446000px;}
.y56_c00129{bottom:398.232000px;}
.y57_c00129{bottom:399.553500px;}
.y58_c00129{bottom:401.797500px;}
.y4a_c00129{bottom:410.680500px;}
.y4b_c00129{bottom:411.829500px;}
.y4c_c00129{bottom:413.047500px;}
.y4d_c00129{bottom:413.736000px;}
.y4e_c00129{bottom:415.173000px;}
.y4f_c00129{bottom:415.921500px;}
.y50_c00129{bottom:418.258500px;}
.y51_c00129{bottom:418.905000px;}
.y52_c00129{bottom:421.116000px;}
.y42_c00129{bottom:423.105000px;}
.y43_c00129{bottom:425.214000px;}
.y44_c00129{bottom:425.677500px;}
.y45_c00129{bottom:426.306000px;}
.y46_c00129{bottom:428.287500px;}
.y47_c00129{bottom:428.911500px;}
.y48_c00129{bottom:429.865500px;}
.y49_c00129{bottom:431.649000px;}
.y3b_c00129{bottom:443.343000px;}
.y3c_c00129{bottom:445.180500px;}
.y3d_c00129{bottom:446.680500px;}
.y3e_c00129{bottom:447.256500px;}
.y3f_c00129{bottom:449.166000px;}
.y40_c00129{bottom:449.464500px;}
.y41_c00129{bottom:450.601500px;}
.y32_c00129{bottom:462.787500px;}
.y33_c00129{bottom:464.238000px;}
.y34_c00129{bottom:464.929500px;}
.y35_c00129{bottom:466.848000px;}
.y36_c00129{bottom:467.263500px;}
.y37_c00129{bottom:468.183000px;}
.y38_c00129{bottom:469.090500px;}
.y39_c00129{bottom:471.124500px;}
.y3a_c00129{bottom:471.877500px;}
.y2c_c00129{bottom:480.357000px;}
.y2d_c00129{bottom:481.894500px;}
.y2e_c00129{bottom:484.696500px;}
.y2f_c00129{bottom:488.845500px;}
.y30_c00129{bottom:490.012500px;}
.y31_c00129{bottom:491.827500px;}
.y24_c00129{bottom:494.655000px;}
.y25_c00129{bottom:495.414000px;}
.y26_c00129{bottom:496.201500px;}
.y27_c00129{bottom:499.212000px;}
.y28_c00129{bottom:499.852500px;}
.y29_c00129{bottom:502.029000px;}
.y2a_c00129{bottom:503.002500px;}
.y2b_c00129{bottom:504.039000px;}
.y1b_c00129{bottom:511.138500px;}
.y1c_c00129{bottom:512.692500px;}
.y1d_c00129{bottom:513.628500px;}
.y1e_c00129{bottom:515.257500px;}
.y1f_c00129{bottom:518.337000px;}
.y20_c00129{bottom:518.749500px;}
.y21_c00129{bottom:521.005500px;}
.y22_c00129{bottom:522.180000px;}
.y23_c00129{bottom:522.919500px;}
.y13_c00129{bottom:530.821500px;}
.y14_c00129{bottom:531.708000px;}
.y15_c00129{bottom:532.774500px;}
.y16_c00129{bottom:533.224500px;}
.y17_c00129{bottom:533.725500px;}
.y18_c00129{bottom:534.592500px;}
.y19_c00129{bottom:534.870000px;}
.y1a_c00129{bottom:536.224500px;}
.yc_c00129{bottom:548.376000px;}
.yd_c00129{bottom:548.938500px;}
.ye_c00129{bottom:549.084000px;}
.yf_c00129{bottom:550.126500px;}
.y10_c00129{bottom:552.343500px;}
.y11_c00129{bottom:553.816500px;}
.y12_c00129{bottom:554.998500px;}
.y2_c00129{bottom:565.927500px;}
.y3_c00129{bottom:566.976000px;}
.y4_c00129{bottom:567.724500px;}
.y5_c00129{bottom:568.654500px;}
.y6_c00129{bottom:569.616000px;}
.y7_c00129{bottom:571.615500px;}
.y8_c00129{bottom:572.125500px;}
.y9_c00129{bottom:572.910000px;}
.ya_c00129{bottom:573.451500px;}
.yb_c00129{bottom:574.152000px;}
.y1_c00129{bottom:587.119500px;}
.h8_c00129{height:44.100000px;}
.hb_c00129{height:49.350000px;}
.h9_c00129{height:54.600000px;}
.h7_c00129{height:57.750000px;}
.h6_c00129{height:58.800000px;}
.ha_c00129{height:61.950000px;}
.h4_c00129{height:63.000000px;}
.hc_c00129{height:64.050000px;}
.h2_c00129{height:65.100000px;}
.hf_c00129{height:66.150000px;}
.he_c00129{height:67.200000px;}
.h3_c00129{height:68.250000px;}
.h1_c00129{height:70.350000px;}
.h10_c00129{height:72.450000px;}
.hd_c00129{height:77.700000px;}
.h5_c00129{height:80.850000px;}
.h11_c00129{height:81.900000px;}
.h14_c00129{height:86.100000px;}
.h13_c00129{height:89.250000px;}
.h12_c00129{height:109.200000px;}
.h0_c00129{height:627.750000px;}
.w0_c00129{width:371.790000px;}
.w1_c00129{width:372.000000px;}
.x0_c00129{left:0.000000px;}
.x46_c00129{left:42.154500px;}
.x2_c00129{left:44.277000px;}
.x28_c00129{left:45.516000px;}
.x3b_c00129{left:46.770000px;}
.x52_c00129{left:48.007500px;}
.x7c_c00129{left:49.222500px;}
.xc_c00129{left:54.349500px;}
.x81_c00129{left:58.528500px;}
.x7a_c00129{left:61.861500px;}
.x5b_c00129{left:63.186000px;}
.x1f_c00129{left:66.168000px;}
.x4a_c00129{left:68.976000px;}
.x23_c00129{left:71.176500px;}
.x3f_c00129{left:73.425000px;}
.x6b_c00129{left:74.644500px;}
.xd_c00129{left:75.958500px;}
.x57_c00129{left:77.935500px;}
.x3_c00129{left:79.245000px;}
.x7d_c00129{left:80.440500px;}
.xe_c00129{left:81.529500px;}
.x7b_c00129{left:82.635000px;}
.x65_c00129{left:85.669500px;}
.x13_c00129{left:86.994000px;}
.x20_c00129{left:88.029000px;}
.x29_c00129{left:90.864000px;}
.x53_c00129{left:92.662500px;}
.x6c_c00129{left:94.132500px;}
.x1a_c00129{left:99.802500px;}
.x62_c00129{left:101.703000px;}
.x71_c00129{left:102.877500px;}
.x4_c00129{left:104.211000px;}
.x24_c00129{left:105.336000px;}
.x31_c00129{left:106.569000px;}
.x36_c00129{left:107.937000px;}
.x2a_c00129{left:112.459500px;}
.x42_c00129{left:117.421500px;}
.x63_c00129{left:118.605000px;}
.x32_c00129{left:119.793000px;}
.xf_c00129{left:121.609500px;}
.x37_c00129{left:126.561000px;}
.x82_c00129{left:129.964500px;}
.x4d_c00129{left:131.055000px;}
.x72_c00129{left:133.387500px;}
.x5_c00129{left:135.214500px;}
.x14_c00129{left:137.772000px;}
.x6d_c00129{left:144.175500px;}
.x3c_c00129{left:147.192000px;}
.x58_c00129{left:150.903000px;}
.x54_c00129{left:152.293500px;}
.x47_c00129{left:154.500000px;}
.x4e_c00129{left:156.919500px;}
.x15_c00129{left:159.226500px;}
.x77_c00129{left:160.563000px;}
.x5e_c00129{left:161.736000px;}
.x73_c00129{left:163.357500px;}
.x38_c00129{left:165.397500px;}
.x6_c00129{left:167.259000px;}
.x2e_c00129{left:168.589500px;}
.x21_c00129{left:171.669000px;}
.x43_c00129{left:173.329500px;}
.x3d_c00129{left:174.433500px;}
.x55_c00129{left:175.746000px;}
.x1_c00129{left:178.470000px;}
.x5f_c00129{left:180.096000px;}
.x16_c00129{left:183.090000px;}
.x2b_c00129{left:185.416500px;}
.x22_c00129{left:189.475500px;}
.x7e_c00129{left:191.316000px;}
.x74_c00129{left:193.327500px;}
.x33_c00129{left:194.382000px;}
.x6f_c00129{left:200.533500px;}
.x44_c00129{left:201.862500px;}
.x5c_c00129{left:203.046000px;}
.x1b_c00129{left:204.427500px;}
.x40_c00129{left:205.894500px;}
.x10_c00129{left:206.907000px;}
.x48_c00129{left:210.660000px;}
.x34_c00129{left:212.190000px;}
.x1c_c00129{left:213.610500px;}
.x75_c00129{left:214.657500px;}
.x60_c00129{left:217.626000px;}
.x6e_c00129{left:221.922000px;}
.x17_c00129{left:224.404500px;}
.x4f_c00129{left:226.174500px;}
.x59_c00129{left:228.586500px;}
.x3e_c00129{left:229.878000px;}
.x41_c00129{left:232.038000px;}
.x7_c00129{left:233.913000px;}
.x18_c00129{left:237.618000px;}
.x35_c00129{left:239.455500px;}
.x2c_c00129{left:242.509500px;}
.x79_c00129{left:243.580500px;}
.x68_c00129{left:246.105000px;}
.x39_c00129{left:248.773500px;}
.x4b_c00129{left:249.885000px;}
.x8_c00129{left:250.899000px;}
.x56_c00129{left:256.489500px;}
.x66_c00129{left:258.727500px;}
.x25_c00129{left:259.818000px;}
.x11_c00129{left:263.575500px;}
.x3a_c00129{left:266.250000px;}
.x5d_c00129{left:269.736000px;}
.x2f_c00129{left:271.677000px;}
.x4c_c00129{left:274.366500px;}
.x9_c00129{left:277.065000px;}
.x67_c00129{left:279.306000px;}
.x7f_c00129{left:281.371500px;}
.x76_c00129{left:282.697500px;}
.x69_c00129{left:284.403000px;}
.x26_c00129{left:285.768000px;}
.x64_c00129{left:287.016000px;}
.x1d_c00129{left:289.842000px;}
.x50_c00129{left:292.125000px;}
.xa_c00129{left:295.138500px;}
.x61_c00129{left:297.276000px;}
.x19_c00129{left:302.131500px;}
.x80_c00129{left:303.538500px;}
.x5a_c00129{left:304.662000px;}
.x1e_c00129{left:306.267000px;}
.x45_c00129{left:307.990500px;}
.x12_c00129{left:309.048000px;}
.x30_c00129{left:313.780500px;}
.xb_c00129{left:318.502500px;}
.x51_c00129{left:322.164000px;}
.x27_c00129{left:326.116500px;}
.x49_c00129{left:327.418500px;}
.x2d_c00129{left:329.631000px;}
.x83_c00129{left:332.163000px;}
.x78_c00129{left:333.178500px;}
.x70_c00129{left:336.987000px;}
.x6a_c00129{left:339.178500px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs7_c00129{font-size:39.200000pt;}
.fsa_c00129{font-size:43.866667pt;}
.fs8_c00129{font-size:48.533333pt;}
.fs6_c00129{font-size:51.333333pt;}
.fs5_c00129{font-size:52.266667pt;}
.fs9_c00129{font-size:55.066667pt;}
.fs3_c00129{font-size:56.000000pt;}
.fsb_c00129{font-size:56.933333pt;}
.fs1_c00129{font-size:57.866667pt;}
.fse_c00129{font-size:58.800000pt;}
.fsd_c00129{font-size:59.733333pt;}
.fs2_c00129{font-size:60.666667pt;}
.fs0_c00129{font-size:62.533333pt;}
.fsf_c00129{font-size:64.400000pt;}
.fsc_c00129{font-size:69.066667pt;}
.fs4_c00129{font-size:71.866667pt;}
.fs10_c00129{font-size:72.800000pt;}
.fs13_c00129{font-size:76.533333pt;}
.fs12_c00129{font-size:79.333333pt;}
.fs11_c00129{font-size:97.066667pt;}
.y0_c00129{bottom:0.000000pt;}
.ye4_c00129{bottom:23.301333pt;}
.ye5_c00129{bottom:25.841333pt;}
.ye6_c00129{bottom:28.378667pt;}
.ye7_c00129{bottom:29.176000pt;}
.ye8_c00129{bottom:31.130667pt;}
.ye9_c00129{bottom:33.032000pt;}
.ydc_c00129{bottom:38.642667pt;}
.ydd_c00129{bottom:39.116000pt;}
.yde_c00129{bottom:39.392000pt;}
.ydf_c00129{bottom:40.058667pt;}
.ye0_c00129{bottom:40.661333pt;}
.ye1_c00129{bottom:42.053333pt;}
.ye2_c00129{bottom:44.214667pt;}
.ye3_c00129{bottom:44.746667pt;}
.yd3_c00129{bottom:50.893333pt;}
.yd4_c00129{bottom:51.313333pt;}
.yd5_c00129{bottom:51.960000pt;}
.yd6_c00129{bottom:54.061333pt;}
.yd7_c00129{bottom:54.473333pt;}
.yd8_c00129{bottom:56.374667pt;}
.yd9_c00129{bottom:56.553333pt;}
.yda_c00129{bottom:58.162667pt;}
.ydb_c00129{bottom:58.978667pt;}
.ycd_c00129{bottom:64.821333pt;}
.yce_c00129{bottom:67.253333pt;}
.ycf_c00129{bottom:68.670667pt;}
.yd0_c00129{bottom:70.921333pt;}
.yd1_c00129{bottom:71.573333pt;}
.yd2_c00129{bottom:73.818667pt;}
.yc5_c00129{bottom:77.542667pt;}
.yc6_c00129{bottom:79.360000pt;}
.yc7_c00129{bottom:79.618667pt;}
.yc8_c00129{bottom:80.193333pt;}
.yc9_c00129{bottom:82.006667pt;}
.yca_c00129{bottom:82.760000pt;}
.ycb_c00129{bottom:83.802667pt;}
.ycc_c00129{bottom:85.362667pt;}
.ybd_c00129{bottom:93.858667pt;}
.ybe_c00129{bottom:94.774667pt;}
.ybf_c00129{bottom:96.644000pt;}
.yc0_c00129{bottom:97.496000pt;}
.yc1_c00129{bottom:99.728000pt;}
.yc2_c00129{bottom:100.172000pt;}
.yc3_c00129{bottom:102.052000pt;}
.yc4_c00129{bottom:102.866667pt;}
.ybc_c00129{bottom:118.282667pt;}
.yb6_c00129{bottom:131.294667pt;}
.yb7_c00129{bottom:134.460000pt;}
.yb8_c00129{bottom:135.273333pt;}
.yb9_c00129{bottom:135.901333pt;}
.yba_c00129{bottom:137.685333pt;}
.ybb_c00129{bottom:140.025333pt;}
.yad_c00129{bottom:145.702667pt;}
.yae_c00129{bottom:146.917333pt;}
.yaf_c00129{bottom:147.662667pt;}
.yb0_c00129{bottom:149.576000pt;}
.yb1_c00129{bottom:150.054667pt;}
.yb2_c00129{bottom:150.714667pt;}
.yb3_c00129{bottom:152.548000pt;}
.yb4_c00129{bottom:153.629333pt;}
.yb5_c00129{bottom:155.401333pt;}
.ya5_c00129{bottom:156.260000pt;}
.ya6_c00129{bottom:157.362667pt;}
.ya7_c00129{bottom:159.069333pt;}
.ya8_c00129{bottom:159.785333pt;}
.ya9_c00129{bottom:160.353333pt;}
.yaa_c00129{bottom:162.748000pt;}
.yab_c00129{bottom:164.008000pt;}
.yac_c00129{bottom:165.809333pt;}
.y9d_c00129{bottom:179.529333pt;}
.y9e_c00129{bottom:180.717333pt;}
.y9f_c00129{bottom:181.592000pt;}
.ya0_c00129{bottom:183.149333pt;}
.ya1_c00129{bottom:184.757333pt;}
.ya2_c00129{bottom:186.254667pt;}
.ya3_c00129{bottom:186.913333pt;}
.ya4_c00129{bottom:187.698667pt;}
.y93_c00129{bottom:193.448000pt;}
.y94_c00129{bottom:195.054667pt;}
.y95_c00129{bottom:195.520000pt;}
.y96_c00129{bottom:195.978667pt;}
.y97_c00129{bottom:196.557333pt;}
.y98_c00129{bottom:197.166667pt;}
.y99_c00129{bottom:197.460000pt;}
.y9a_c00129{bottom:198.645333pt;}
.y9b_c00129{bottom:200.160000pt;}
.y9c_c00129{bottom:200.436000pt;}
.y92_c00129{bottom:210.434667pt;}
.y91_c00129{bottom:226.430667pt;}
.y8b_c00129{bottom:238.812000pt;}
.y8c_c00129{bottom:239.724000pt;}
.y8d_c00129{bottom:240.406667pt;}
.y8e_c00129{bottom:241.993333pt;}
.y8f_c00129{bottom:244.410667pt;}
.y90_c00129{bottom:246.777333pt;}
.y83_c00129{bottom:255.129333pt;}
.y84_c00129{bottom:256.438667pt;}
.y85_c00129{bottom:257.309333pt;}
.y86_c00129{bottom:258.188000pt;}
.y87_c00129{bottom:258.876000pt;}
.y88_c00129{bottom:260.448000pt;}
.y89_c00129{bottom:261.244000pt;}
.y8a_c00129{bottom:262.244000pt;}
.y79_c00129{bottom:269.773333pt;}
.y7a_c00129{bottom:270.501333pt;}
.y7b_c00129{bottom:271.902667pt;}
.y7c_c00129{bottom:272.644000pt;}
.y7d_c00129{bottom:273.494667pt;}
.y7e_c00129{bottom:274.210667pt;}
.y7f_c00129{bottom:275.110667pt;}
.y80_c00129{bottom:275.772000pt;}
.y81_c00129{bottom:277.941333pt;}
.y82_c00129{bottom:278.929333pt;}
.y72_c00129{bottom:285.846667pt;}
.y73_c00129{bottom:286.592000pt;}
.y74_c00129{bottom:287.752000pt;}
.y75_c00129{bottom:289.785333pt;}
.y76_c00129{bottom:291.897333pt;}
.y77_c00129{bottom:292.616000pt;}
.y78_c00129{bottom:294.254667pt;}
.y6b_c00129{bottom:302.880000pt;}
.y6c_c00129{bottom:303.490667pt;}
.y6d_c00129{bottom:304.941333pt;}
.y6e_c00129{bottom:305.277333pt;}
.y6f_c00129{bottom:306.476000pt;}
.y70_c00129{bottom:306.906667pt;}
.y71_c00129{bottom:308.968000pt;}
.y62_c00129{bottom:318.006667pt;}
.y63_c00129{bottom:318.773333pt;}
.y64_c00129{bottom:320.154667pt;}
.y65_c00129{bottom:321.844000pt;}
.y66_c00129{bottom:322.217333pt;}
.y67_c00129{bottom:322.706667pt;}
.y68_c00129{bottom:324.173333pt;}
.y69_c00129{bottom:324.793333pt;}
.y6a_c00129{bottom:325.914667pt;}
.y59_c00129{bottom:333.604000pt;}
.y5a_c00129{bottom:334.569333pt;}
.y5b_c00129{bottom:336.086667pt;}
.y5c_c00129{bottom:336.610667pt;}
.y5d_c00129{bottom:338.252000pt;}
.y5e_c00129{bottom:338.925333pt;}
.y5f_c00129{bottom:339.785333pt;}
.y60_c00129{bottom:342.097333pt;}
.y61_c00129{bottom:342.497333pt;}
.y53_c00129{bottom:348.973333pt;}
.y54_c00129{bottom:352.365333pt;}
.y55_c00129{bottom:353.285333pt;}
.y56_c00129{bottom:353.984000pt;}
.y57_c00129{bottom:355.158667pt;}
.y58_c00129{bottom:357.153333pt;}
.y4a_c00129{bottom:365.049333pt;}
.y4b_c00129{bottom:366.070667pt;}
.y4c_c00129{bottom:367.153333pt;}
.y4d_c00129{bottom:367.765333pt;}
.y4e_c00129{bottom:369.042667pt;}
.y4f_c00129{bottom:369.708000pt;}
.y50_c00129{bottom:371.785333pt;}
.y51_c00129{bottom:372.360000pt;}
.y52_c00129{bottom:374.325333pt;}
.y42_c00129{bottom:376.093333pt;}
.y43_c00129{bottom:377.968000pt;}
.y44_c00129{bottom:378.380000pt;}
.y45_c00129{bottom:378.938667pt;}
.y46_c00129{bottom:380.700000pt;}
.y47_c00129{bottom:381.254667pt;}
.y48_c00129{bottom:382.102667pt;}
.y49_c00129{bottom:383.688000pt;}
.y3b_c00129{bottom:394.082667pt;}
.y3c_c00129{bottom:395.716000pt;}
.y3d_c00129{bottom:397.049333pt;}
.y3e_c00129{bottom:397.561333pt;}
.y3f_c00129{bottom:399.258667pt;}
.y40_c00129{bottom:399.524000pt;}
.y41_c00129{bottom:400.534667pt;}
.y32_c00129{bottom:411.366667pt;}
.y33_c00129{bottom:412.656000pt;}
.y34_c00129{bottom:413.270667pt;}
.y35_c00129{bottom:414.976000pt;}
.y36_c00129{bottom:415.345333pt;}
.y37_c00129{bottom:416.162667pt;}
.y38_c00129{bottom:416.969333pt;}
.y39_c00129{bottom:418.777333pt;}
.y3a_c00129{bottom:419.446667pt;}
.y2c_c00129{bottom:426.984000pt;}
.y2d_c00129{bottom:428.350667pt;}
.y2e_c00129{bottom:430.841333pt;}
.y2f_c00129{bottom:434.529333pt;}
.y30_c00129{bottom:435.566667pt;}
.y31_c00129{bottom:437.180000pt;}
.y24_c00129{bottom:439.693333pt;}
.y25_c00129{bottom:440.368000pt;}
.y26_c00129{bottom:441.068000pt;}
.y27_c00129{bottom:443.744000pt;}
.y28_c00129{bottom:444.313333pt;}
.y29_c00129{bottom:446.248000pt;}
.y2a_c00129{bottom:447.113333pt;}
.y2b_c00129{bottom:448.034667pt;}
.y1b_c00129{bottom:454.345333pt;}
.y1c_c00129{bottom:455.726667pt;}
.y1d_c00129{bottom:456.558667pt;}
.y1e_c00129{bottom:458.006667pt;}
.y1f_c00129{bottom:460.744000pt;}
.y20_c00129{bottom:461.110667pt;}
.y21_c00129{bottom:463.116000pt;}
.y22_c00129{bottom:464.160000pt;}
.y23_c00129{bottom:464.817333pt;}
.y13_c00129{bottom:471.841333pt;}
.y14_c00129{bottom:472.629333pt;}
.y15_c00129{bottom:473.577333pt;}
.y16_c00129{bottom:473.977333pt;}
.y17_c00129{bottom:474.422667pt;}
.y18_c00129{bottom:475.193333pt;}
.y19_c00129{bottom:475.440000pt;}
.y1a_c00129{bottom:476.644000pt;}
.yc_c00129{bottom:487.445333pt;}
.yd_c00129{bottom:487.945333pt;}
.ye_c00129{bottom:488.074667pt;}
.yf_c00129{bottom:489.001333pt;}
.y10_c00129{bottom:490.972000pt;}
.y11_c00129{bottom:492.281333pt;}
.y12_c00129{bottom:493.332000pt;}
.y2_c00129{bottom:503.046667pt;}
.y3_c00129{bottom:503.978667pt;}
.y4_c00129{bottom:504.644000pt;}
.y5_c00129{bottom:505.470667pt;}
.y6_c00129{bottom:506.325333pt;}
.y7_c00129{bottom:508.102667pt;}
.y8_c00129{bottom:508.556000pt;}
.y9_c00129{bottom:509.253333pt;}
.ya_c00129{bottom:509.734667pt;}
.yb_c00129{bottom:510.357333pt;}
.y1_c00129{bottom:521.884000pt;}
.h8_c00129{height:39.200000pt;}
.hb_c00129{height:43.866667pt;}
.h9_c00129{height:48.533333pt;}
.h7_c00129{height:51.333333pt;}
.h6_c00129{height:52.266667pt;}
.ha_c00129{height:55.066667pt;}
.h4_c00129{height:56.000000pt;}
.hc_c00129{height:56.933333pt;}
.h2_c00129{height:57.866667pt;}
.hf_c00129{height:58.800000pt;}
.he_c00129{height:59.733333pt;}
.h3_c00129{height:60.666667pt;}
.h1_c00129{height:62.533333pt;}
.h10_c00129{height:64.400000pt;}
.hd_c00129{height:69.066667pt;}
.h5_c00129{height:71.866667pt;}
.h11_c00129{height:72.800000pt;}
.h14_c00129{height:76.533333pt;}
.h13_c00129{height:79.333333pt;}
.h12_c00129{height:97.066667pt;}
.h0_c00129{height:558.000000pt;}
.w0_c00129{width:330.480000pt;}
.w1_c00129{width:330.666667pt;}
.x0_c00129{left:0.000000pt;}
.x46_c00129{left:37.470667pt;}
.x2_c00129{left:39.357333pt;}
.x28_c00129{left:40.458667pt;}
.x3b_c00129{left:41.573333pt;}
.x52_c00129{left:42.673333pt;}
.x7c_c00129{left:43.753333pt;}
.xc_c00129{left:48.310667pt;}
.x81_c00129{left:52.025333pt;}
.x7a_c00129{left:54.988000pt;}
.x5b_c00129{left:56.165333pt;}
.x1f_c00129{left:58.816000pt;}
.x4a_c00129{left:61.312000pt;}
.x23_c00129{left:63.268000pt;}
.x3f_c00129{left:65.266667pt;}
.x6b_c00129{left:66.350667pt;}
.xd_c00129{left:67.518667pt;}
.x57_c00129{left:69.276000pt;}
.x3_c00129{left:70.440000pt;}
.x7d_c00129{left:71.502667pt;}
.xe_c00129{left:72.470667pt;}
.x7b_c00129{left:73.453333pt;}
.x65_c00129{left:76.150667pt;}
.x13_c00129{left:77.328000pt;}
.x20_c00129{left:78.248000pt;}
.x29_c00129{left:80.768000pt;}
.x53_c00129{left:82.366667pt;}
.x6c_c00129{left:83.673333pt;}
.x1a_c00129{left:88.713333pt;}
.x62_c00129{left:90.402667pt;}
.x71_c00129{left:91.446667pt;}
.x4_c00129{left:92.632000pt;}
.x24_c00129{left:93.632000pt;}
.x31_c00129{left:94.728000pt;}
.x36_c00129{left:95.944000pt;}
.x2a_c00129{left:99.964000pt;}
.x42_c00129{left:104.374667pt;}
.x63_c00129{left:105.426667pt;}
.x32_c00129{left:106.482667pt;}
.xf_c00129{left:108.097333pt;}
.x37_c00129{left:112.498667pt;}
.x82_c00129{left:115.524000pt;}
.x4d_c00129{left:116.493333pt;}
.x72_c00129{left:118.566667pt;}
.x5_c00129{left:120.190667pt;}
.x14_c00129{left:122.464000pt;}
.x6d_c00129{left:128.156000pt;}
.x3c_c00129{left:130.837333pt;}
.x58_c00129{left:134.136000pt;}
.x54_c00129{left:135.372000pt;}
.x47_c00129{left:137.333333pt;}
.x4e_c00129{left:139.484000pt;}
.x15_c00129{left:141.534667pt;}
.x77_c00129{left:142.722667pt;}
.x5e_c00129{left:143.765333pt;}
.x73_c00129{left:145.206667pt;}
.x38_c00129{left:147.020000pt;}
.x6_c00129{left:148.674667pt;}
.x2e_c00129{left:149.857333pt;}
.x21_c00129{left:152.594667pt;}
.x43_c00129{left:154.070667pt;}
.x3d_c00129{left:155.052000pt;}
.x55_c00129{left:156.218667pt;}
.x1_c00129{left:158.640000pt;}
.x5f_c00129{left:160.085333pt;}
.x16_c00129{left:162.746667pt;}
.x2b_c00129{left:164.814667pt;}
.x22_c00129{left:168.422667pt;}
.x7e_c00129{left:170.058667pt;}
.x74_c00129{left:171.846667pt;}
.x33_c00129{left:172.784000pt;}
.x6f_c00129{left:178.252000pt;}
.x44_c00129{left:179.433333pt;}
.x5c_c00129{left:180.485333pt;}
.x1b_c00129{left:181.713333pt;}
.x40_c00129{left:183.017333pt;}
.x10_c00129{left:183.917333pt;}
.x48_c00129{left:187.253333pt;}
.x34_c00129{left:188.613333pt;}
.x1c_c00129{left:189.876000pt;}
.x75_c00129{left:190.806667pt;}
.x60_c00129{left:193.445333pt;}
.x6e_c00129{left:197.264000pt;}
.x17_c00129{left:199.470667pt;}
.x4f_c00129{left:201.044000pt;}
.x59_c00129{left:203.188000pt;}
.x3e_c00129{left:204.336000pt;}
.x41_c00129{left:206.256000pt;}
.x7_c00129{left:207.922667pt;}
.x18_c00129{left:211.216000pt;}
.x35_c00129{left:212.849333pt;}
.x2c_c00129{left:215.564000pt;}
.x79_c00129{left:216.516000pt;}
.x68_c00129{left:218.760000pt;}
.x39_c00129{left:221.132000pt;}
.x4b_c00129{left:222.120000pt;}
.x8_c00129{left:223.021333pt;}
.x56_c00129{left:227.990667pt;}
.x66_c00129{left:229.980000pt;}
.x25_c00129{left:230.949333pt;}
.x11_c00129{left:234.289333pt;}
.x3a_c00129{left:236.666667pt;}
.x5d_c00129{left:239.765333pt;}
.x2f_c00129{left:241.490667pt;}
.x4c_c00129{left:243.881333pt;}
.x9_c00129{left:246.280000pt;}
.x67_c00129{left:248.272000pt;}
.x7f_c00129{left:250.108000pt;}
.x76_c00129{left:251.286667pt;}
.x69_c00129{left:252.802667pt;}
.x26_c00129{left:254.016000pt;}
.x64_c00129{left:255.125333pt;}
.x1d_c00129{left:257.637333pt;}
.x50_c00129{left:259.666667pt;}
.xa_c00129{left:262.345333pt;}
.x61_c00129{left:264.245333pt;}
.x19_c00129{left:268.561333pt;}
.x80_c00129{left:269.812000pt;}
.x5a_c00129{left:270.810667pt;}
.x1e_c00129{left:272.237333pt;}
.x45_c00129{left:273.769333pt;}
.x12_c00129{left:274.709333pt;}
.x30_c00129{left:278.916000pt;}
.xb_c00129{left:283.113333pt;}
.x51_c00129{left:286.368000pt;}
.x27_c00129{left:289.881333pt;}
.x49_c00129{left:291.038667pt;}
.x2d_c00129{left:293.005333pt;}
.x83_c00129{left:295.256000pt;}
.x78_c00129{left:296.158667pt;}
.x70_c00129{left:299.544000pt;}
.x6a_c00129{left:301.492000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00130 {
    display:none;
  }
  .loading-indicator_c00130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00130 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00130 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00130" -> "#page-container .classname_c00130")
 */
.pf_c00130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00130 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00130 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00130 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00130 {overflow:visible;}
  }
}
.c_c00130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00130 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00130:after { /* webkit #35443 */
  content: '';
}
.t_c00130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00130 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00130 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00130 { /* info for Javascript */
  display:none;
}
.l_c00130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00130:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00130 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00130.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00130{transform:matrix(0.009830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009830,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00130{transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.meb_c00130{transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);}
.md5_c00130{transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143220,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148305,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);}
.m75_c00130{transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);}
.mcc_c00130{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);}
.mc2_c00130{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.me5_c00130{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.ma4_c00130{transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);}
.me0_c00130{transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);}
.m80_c00130{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.mec_c00130{transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169680,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);}
.mea_c00130{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);}
.m7b_c00130{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.mc7_c00130{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.md6_c00130{transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);}
.m86_c00130{transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);}
.ma3_c00130{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00130{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00130{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m65_c00130{transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.me8_c00130{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m90_c00130{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.184090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184090,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.me3_c00130{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00130{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.m4a_c00130{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.m78_c00130{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187110,0.000000,0.000000,0.250000,0,0);}
.m92_c00130{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.mae_c00130{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.me6_c00130{transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.mc6_c00130{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m81_c00130{transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.mdf_c00130{transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);}
.m89_c00130{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mb3_c00130{transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);}
.me9_c00130{transform:matrix(0.192190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192190,0.000000,0.000000,0.250000,0,0);}
.mca_c00130{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.mc8_c00130{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);}
.mcf_c00130{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.m96_c00130{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00130{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00130{transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);}
.md3_c00130{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.mc9_c00130{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00130{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.194820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.me4_c00130{transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);}
.maa_c00130{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m8f_c00130{transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);}
.mc1_c00130{transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m91_c00130{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.mce_c00130{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.m4b_c00130{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m28_c00130{transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m2a_c00130{transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198390,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.mc4_c00130{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.mb0_c00130{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);}
.m8a_c00130{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m87_c00130{transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m69_c00130{transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);}
.mc5_c00130{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);}
.mb6_c00130{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.maf_c00130{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.mf0_c00130{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.md2_c00130{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);}
.mbf_c00130{transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);}
.mb1_c00130{transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);}
.md0_c00130{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.me2_c00130{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mee_c00130{transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);}
.mcd_c00130{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.me7_c00130{transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.m2b_c00130{transform:matrix(0.208405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208405,0.000000,0.000000,0.250000,0,0);}
.mb2_c00130{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.ma1_c00130{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.mc0_c00130{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);}
.mf1_c00130{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m83_c00130{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m64_c00130{transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);}
.mde_c00130{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.m9e_c00130{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.mcb_c00130{transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);}
.mef_c00130{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.mc3_c00130{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);}
.mac_c00130{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00130{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.mbc_c00130{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.md4_c00130{transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m48_c00130{transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223680,0.000000,0.000000,0.250000,0,0);}
.mbd_c00130{transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mbb_c00130{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00130{transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);}
.ma5_c00130{transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230985,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);}
.ma8_c00130{transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00130{transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.me1_c00130{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.mdd_c00130{transform:matrix(0.236895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236895,0.000000,0.000000,0.250000,0,0);}
.m5d_c00130{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);}
.mb5_c00130{transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);}
.mda_c00130{transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);}
.ma6_c00130{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m95_c00130{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);}
.mf2_c00130{transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);}
.m9d_c00130{transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246755,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.med_c00130{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00130{transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);}
.mad_c00130{transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);}
.mba_c00130{transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);}
.m63_c00130{transform:matrix(0.271495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271495,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00130{transform:matrix(0.278140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278140,0.000000,0.000000,0.250000,0,0);}
.mb8_c00130{transform:matrix(0.288780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288780,0.000000,0.000000,0.250000,0,0);}
.md1_c00130{transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);}
.m7d_c00130{transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);}
.mb7_c00130{transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);}
.md8_c00130{transform:matrix(0.389075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389075,0.000000,0.000000,0.250000,0,0);}
.md9_c00130{transform:matrix(0.416255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416255,0.000000,0.000000,0.250000,0,0);}
.md7_c00130{transform:matrix(0.461415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461415,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.783260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.783260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.783260,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:0.000000px;}
.fc0_c00130{color:transparent;}
.fsa_c00130{font-size:53.550000px;}
.fs8_c00130{font-size:59.850000px;}
.fs9_c00130{font-size:60.900000px;}
.fs5_c00130{font-size:63.000000px;}
.fs1_c00130{font-size:64.050000px;}
.fs6_c00130{font-size:65.100000px;}
.fs2_c00130{font-size:66.150000px;}
.fs7_c00130{font-size:67.200000px;}
.fs3_c00130{font-size:68.250000px;}
.fs4_c00130{font-size:69.300000px;}
.fsb_c00130{font-size:70.350000px;}
.fsc_c00130{font-size:71.400000px;}
.fs0_c00130{font-size:77.700000px;}
.y0_c00130{bottom:0.000000px;}
.y5a_c00130{bottom:32.278500px;}
.y59_c00130{bottom:49.290000px;}
.y58_c00130{bottom:49.704000px;}
.y57_c00130{bottom:50.329500px;}
.y56_c00130{bottom:51.316500px;}
.y55_c00130{bottom:51.763500px;}
.y54_c00130{bottom:52.633500px;}
.y53_c00130{bottom:53.796000px;}
.y52_c00130{bottom:54.267000px;}
.y51_c00130{bottom:67.395000px;}
.y50_c00130{bottom:85.476000px;}
.y4f_c00130{bottom:86.269500px;}
.y4e_c00130{bottom:86.586000px;}
.y4d_c00130{bottom:86.830500px;}
.y4c_c00130{bottom:87.126000px;}
.y4b_c00130{bottom:87.372000px;}
.y4a_c00130{bottom:88.446000px;}
.y49_c00130{bottom:88.789500px;}
.y48_c00130{bottom:89.095500px;}
.y47_c00130{bottom:103.366500px;}
.y46_c00130{bottom:103.828500px;}
.y45_c00130{bottom:104.985000px;}
.y44_c00130{bottom:105.271500px;}
.y43_c00130{bottom:105.709500px;}
.y42_c00130{bottom:106.851000px;}
.y41_c00130{bottom:107.307000px;}
.y40_c00130{bottom:108.100500px;}
.y3f_c00130{bottom:108.538500px;}
.y3e_c00130{bottom:120.544500px;}
.y3d_c00130{bottom:120.808500px;}
.y3c_c00130{bottom:121.590000px;}
.y3b_c00130{bottom:121.734000px;}
.y3a_c00130{bottom:123.168000px;}
.y39_c00130{bottom:124.306500px;}
.y38_c00130{bottom:125.181000px;}
.y37_c00130{bottom:125.817000px;}
.y36_c00130{bottom:141.454500px;}
.y35_c00130{bottom:157.174500px;}
.y34_c00130{bottom:157.692000px;}
.y33_c00130{bottom:158.308500px;}
.y32_c00130{bottom:158.722500px;}
.y31_c00130{bottom:158.964000px;}
.y30_c00130{bottom:160.068000px;}
.y2f_c00130{bottom:160.375500px;}
.y2e_c00130{bottom:172.102500px;}
.y2d_c00130{bottom:187.678500px;}
.y2c_c00130{bottom:206.047500px;}
.y2b_c00130{bottom:206.347500px;}
.y2a_c00130{bottom:207.331500px;}
.y29_c00130{bottom:207.801000px;}
.y28_c00130{bottom:208.071000px;}
.y27_c00130{bottom:208.345500px;}
.y26_c00130{bottom:208.977000px;}
.y25_c00130{bottom:225.036000px;}
.y24_c00130{bottom:242.467500px;}
.y23_c00130{bottom:258.720000px;}
.y22_c00130{bottom:259.633500px;}
.y21_c00130{bottom:260.409000px;}
.y20_c00130{bottom:260.683500px;}
.y1f_c00130{bottom:261.312000px;}
.y1e_c00130{bottom:261.592500px;}
.y1d_c00130{bottom:262.158000px;}
.y1c_c00130{bottom:262.438500px;}
.y1b_c00130{bottom:276.229500px;}
.y1a_c00130{bottom:276.532500px;}
.y19_c00130{bottom:276.616500px;}
.y18_c00130{bottom:277.477500px;}
.y17_c00130{bottom:278.001000px;}
.y16_c00130{bottom:278.308500px;}
.y15_c00130{bottom:278.496000px;}
.y14_c00130{bottom:278.626500px;}
.y13_c00130{bottom:278.910000px;}
.y12_c00130{bottom:295.123500px;}
.y11_c00130{bottom:312.703500px;}
.y10_c00130{bottom:329.704500px;}
.yf_c00130{bottom:346.491000px;}
.ye_c00130{bottom:364.042500px;}
.yd_c00130{bottom:379.974000px;}
.yc_c00130{bottom:397.828500px;}
.yb_c00130{bottom:414.508500px;}
.ya_c00130{bottom:432.540000px;}
.y9_c00130{bottom:449.334000px;}
.y8_c00130{bottom:466.426500px;}
.y7_c00130{bottom:484.293000px;}
.y6_c00130{bottom:501.390000px;}
.y5_c00130{bottom:518.379000px;}
.y4_c00130{bottom:536.133000px;}
.y3_c00130{bottom:553.693500px;}
.y2_c00130{bottom:570.645000px;}
.y1_c00130{bottom:584.283000px;}
.hb_c00130{height:53.550000px;}
.h9_c00130{height:59.850000px;}
.ha_c00130{height:60.900000px;}
.h6_c00130{height:63.000000px;}
.h2_c00130{height:64.050000px;}
.h7_c00130{height:65.100000px;}
.h3_c00130{height:66.150000px;}
.h8_c00130{height:67.200000px;}
.h4_c00130{height:68.250000px;}
.h5_c00130{height:69.300000px;}
.hc_c00130{height:70.350000px;}
.hd_c00130{height:71.400000px;}
.h1_c00130{height:77.700000px;}
.h0_c00130{height:627.750000px;}
.w0_c00130{width:371.790000px;}
.w1_c00130{width:372.000000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:20.520000px;}
.x4_c00130{left:27.540000px;}
.x9_c00130{left:30.240000px;}
.x67_c00130{left:31.320000px;}
.x78_c00130{left:32.551500px;}
.x36_c00130{left:34.020000px;}
.x2b_c00130{left:36.720000px;}
.x15_c00130{left:48.600000px;}
.x2c_c00130{left:49.950000px;}
.x5b_c00130{left:52.780500px;}
.x37_c00130{left:54.270000px;}
.x1c_c00130{left:56.700000px;}
.x57_c00130{left:58.717500px;}
.x68_c00130{left:60.750000px;}
.x61_c00130{left:64.258500px;}
.xa_c00130{left:65.610000px;}
.x44_c00130{left:68.040000px;}
.x4e_c00130{left:70.200000px;}
.x58_c00130{left:71.695500px;}
.x3f_c00130{left:72.900000px;}
.x2d_c00130{left:73.980000px;}
.x26_c00130{left:75.600000px;}
.x53_c00130{left:78.840000px;}
.x5e_c00130{left:79.918500px;}
.x6f_c00130{left:81.270000px;}
.x10_c00130{left:82.350000px;}
.x5_c00130{left:88.560000px;}
.x27_c00130{left:90.720000px;}
.x54_c00130{left:91.800000px;}
.x4b_c00130{left:93.960000px;}
.x69_c00130{left:95.040000px;}
.x5c_c00130{left:96.246000px;}
.x4f_c00130{left:98.010000px;}
.x5f_c00130{left:100.708500px;}
.x16_c00130{left:103.680000px;}
.x71_c00130{left:107.241000px;}
.xb_c00130{left:108.810000px;}
.x28_c00130{left:114.750000px;}
.x40_c00130{left:116.910000px;}
.x11_c00130{left:117.990000px;}
.x1d_c00130{left:119.880000px;}
.x59_c00130{left:121.104000px;}
.x45_c00130{left:122.850000px;}
.x3c_c00130{left:123.930000px;}
.x74_c00130{left:125.394000px;}
.x23_c00130{left:127.710000px;}
.xc_c00130{left:130.950000px;}
.x6a_c00130{left:134.460000px;}
.x48_c00130{left:135.810000px;}
.x17_c00130{left:137.430000px;}
.x63_c00130{left:142.980000px;}
.x2e_c00130{left:147.960000px;}
.x6c_c00130{left:149.179500px;}
.x6_c00130{left:151.200000px;}
.x2_c00130{left:153.090000px;}
.x38_c00130{left:158.760000px;}
.x3_c00130{left:163.890000px;}
.x79_c00130{left:165.103500px;}
.x2f_c00130{left:166.590000px;}
.x46_c00130{left:167.940000px;}
.x6d_c00130{left:169.248000px;}
.x3d_c00130{left:171.450000px;}
.x1e_c00130{left:173.340000px;}
.x12_c00130{left:174.420000px;}
.x65_c00130{left:176.310000px;}
.x29_c00130{left:177.660000px;}
.x60_c00130{left:179.548500px;}
.x32_c00130{left:183.600000px;}
.x7_c00130{left:186.300000px;}
.x66_c00130{left:187.920000px;}
.x18_c00130{left:189.270000px;}
.x6b_c00130{left:191.430000px;}
.x7e_c00130{left:194.131500px;}
.x24_c00130{left:195.750000px;}
.xd_c00130{left:197.640000px;}
.x7b_c00130{left:200.611500px;}
.x6e_c00130{left:203.773500px;}
.x41_c00130{left:206.550000px;}
.x49_c00130{left:210.600000px;}
.x33_c00130{left:211.950000px;}
.x75_c00130{left:213.154500px;}
.x50_c00130{left:216.540000px;}
.x25_c00130{left:218.430000px;}
.x47_c00130{left:219.510000px;}
.x1f_c00130{left:222.750000px;}
.x39_c00130{left:223.830000px;}
.x13_c00130{left:225.720000px;}
.x30_c00130{left:227.610000px;}
.x76_c00130{left:229.050000px;}
.x19_c00130{left:235.710000px;}
.x62_c00130{left:241.378500px;}
.x72_c00130{left:243.099000px;}
.x5d_c00130{left:246.897000px;}
.x3a_c00130{left:248.130000px;}
.x7a_c00130{left:249.865500px;}
.x20_c00130{left:251.100000px;}
.x42_c00130{left:254.610000px;}
.x34_c00130{left:255.960000px;}
.x55_c00130{left:258.120000px;}
.x5a_c00130{left:259.621500px;}
.x7c_c00130{left:261.901500px;}
.xe_c00130{left:267.840000px;}
.x21_c00130{left:269.730000px;}
.x4a_c00130{left:273.510000px;}
.x43_c00130{left:274.590000px;}
.x1a_c00130{left:275.940000px;}
.x3e_c00130{left:278.370000px;}
.x35_c00130{left:279.990000px;}
.xf_c00130{left:281.340000px;}
.x2a_c00130{left:283.230000px;}
.x51_c00130{left:285.930000px;}
.x7d_c00130{left:289.171500px;}
.x4c_c00130{left:290.250000px;}
.x3b_c00130{left:291.330000px;}
.x8_c00130{left:292.410000px;}
.x73_c00130{left:295.377000px;}
.x31_c00130{left:296.730000px;}
.x56_c00130{left:298.350000px;}
.x64_c00130{left:302.257500px;}
.x4d_c00130{left:307.530000px;}
.x52_c00130{left:308.880000px;}
.x1b_c00130{left:311.580000px;}
.x70_c00130{left:314.550000px;}
.x14_c00130{left:315.900000px;}
.x22_c00130{left:317.250000px;}
.x77_c00130{left:318.921000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
.fsa_c00130{font-size:47.600000pt;}
.fs8_c00130{font-size:53.200000pt;}
.fs9_c00130{font-size:54.133333pt;}
.fs5_c00130{font-size:56.000000pt;}
.fs1_c00130{font-size:56.933333pt;}
.fs6_c00130{font-size:57.866667pt;}
.fs2_c00130{font-size:58.800000pt;}
.fs7_c00130{font-size:59.733333pt;}
.fs3_c00130{font-size:60.666667pt;}
.fs4_c00130{font-size:61.600000pt;}
.fsb_c00130{font-size:62.533333pt;}
.fsc_c00130{font-size:63.466667pt;}
.fs0_c00130{font-size:69.066667pt;}
.y0_c00130{bottom:0.000000pt;}
.y5a_c00130{bottom:28.692000pt;}
.y59_c00130{bottom:43.813333pt;}
.y58_c00130{bottom:44.181333pt;}
.y57_c00130{bottom:44.737333pt;}
.y56_c00130{bottom:45.614667pt;}
.y55_c00130{bottom:46.012000pt;}
.y54_c00130{bottom:46.785333pt;}
.y53_c00130{bottom:47.818667pt;}
.y52_c00130{bottom:48.237333pt;}
.y51_c00130{bottom:59.906667pt;}
.y50_c00130{bottom:75.978667pt;}
.y4f_c00130{bottom:76.684000pt;}
.y4e_c00130{bottom:76.965333pt;}
.y4d_c00130{bottom:77.182667pt;}
.y4c_c00130{bottom:77.445333pt;}
.y4b_c00130{bottom:77.664000pt;}
.y4a_c00130{bottom:78.618667pt;}
.y49_c00130{bottom:78.924000pt;}
.y48_c00130{bottom:79.196000pt;}
.y47_c00130{bottom:91.881333pt;}
.y46_c00130{bottom:92.292000pt;}
.y45_c00130{bottom:93.320000pt;}
.y44_c00130{bottom:93.574667pt;}
.y43_c00130{bottom:93.964000pt;}
.y42_c00130{bottom:94.978667pt;}
.y41_c00130{bottom:95.384000pt;}
.y40_c00130{bottom:96.089333pt;}
.y3f_c00130{bottom:96.478667pt;}
.y3e_c00130{bottom:107.150667pt;}
.y3d_c00130{bottom:107.385333pt;}
.y3c_c00130{bottom:108.080000pt;}
.y3b_c00130{bottom:108.208000pt;}
.y3a_c00130{bottom:109.482667pt;}
.y39_c00130{bottom:110.494667pt;}
.y38_c00130{bottom:111.272000pt;}
.y37_c00130{bottom:111.837333pt;}
.y36_c00130{bottom:125.737333pt;}
.y35_c00130{bottom:139.710667pt;}
.y34_c00130{bottom:140.170667pt;}
.y33_c00130{bottom:140.718667pt;}
.y32_c00130{bottom:141.086667pt;}
.y31_c00130{bottom:141.301333pt;}
.y30_c00130{bottom:142.282667pt;}
.y2f_c00130{bottom:142.556000pt;}
.y2e_c00130{bottom:152.980000pt;}
.y2d_c00130{bottom:166.825333pt;}
.y2c_c00130{bottom:183.153333pt;}
.y2b_c00130{bottom:183.420000pt;}
.y2a_c00130{bottom:184.294667pt;}
.y29_c00130{bottom:184.712000pt;}
.y28_c00130{bottom:184.952000pt;}
.y27_c00130{bottom:185.196000pt;}
.y26_c00130{bottom:185.757333pt;}
.y25_c00130{bottom:200.032000pt;}
.y24_c00130{bottom:215.526667pt;}
.y23_c00130{bottom:229.973333pt;}
.y22_c00130{bottom:230.785333pt;}
.y21_c00130{bottom:231.474667pt;}
.y20_c00130{bottom:231.718667pt;}
.y1f_c00130{bottom:232.277333pt;}
.y1e_c00130{bottom:232.526667pt;}
.y1d_c00130{bottom:233.029333pt;}
.y1c_c00130{bottom:233.278667pt;}
.y1b_c00130{bottom:245.537333pt;}
.y1a_c00130{bottom:245.806667pt;}
.y19_c00130{bottom:245.881333pt;}
.y18_c00130{bottom:246.646667pt;}
.y17_c00130{bottom:247.112000pt;}
.y16_c00130{bottom:247.385333pt;}
.y15_c00130{bottom:247.552000pt;}
.y14_c00130{bottom:247.668000pt;}
.y13_c00130{bottom:247.920000pt;}
.y12_c00130{bottom:262.332000pt;}
.y11_c00130{bottom:277.958667pt;}
.y10_c00130{bottom:293.070667pt;}
.yf_c00130{bottom:307.992000pt;}
.ye_c00130{bottom:323.593333pt;}
.yd_c00130{bottom:337.754667pt;}
.yc_c00130{bottom:353.625333pt;}
.yb_c00130{bottom:368.452000pt;}
.ya_c00130{bottom:384.480000pt;}
.y9_c00130{bottom:399.408000pt;}
.y8_c00130{bottom:414.601333pt;}
.y7_c00130{bottom:430.482667pt;}
.y6_c00130{bottom:445.680000pt;}
.y5_c00130{bottom:460.781333pt;}
.y4_c00130{bottom:476.562667pt;}
.y3_c00130{bottom:492.172000pt;}
.y2_c00130{bottom:507.240000pt;}
.y1_c00130{bottom:519.362667pt;}
.hb_c00130{height:47.600000pt;}
.h9_c00130{height:53.200000pt;}
.ha_c00130{height:54.133333pt;}
.h6_c00130{height:56.000000pt;}
.h2_c00130{height:56.933333pt;}
.h7_c00130{height:57.866667pt;}
.h3_c00130{height:58.800000pt;}
.h8_c00130{height:59.733333pt;}
.h4_c00130{height:60.666667pt;}
.h5_c00130{height:61.600000pt;}
.hc_c00130{height:62.533333pt;}
.hd_c00130{height:63.466667pt;}
.h1_c00130{height:69.066667pt;}
.h0_c00130{height:558.000000pt;}
.w0_c00130{width:330.480000pt;}
.w1_c00130{width:330.666667pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:18.240000pt;}
.x4_c00130{left:24.480000pt;}
.x9_c00130{left:26.880000pt;}
.x67_c00130{left:27.840000pt;}
.x78_c00130{left:28.934667pt;}
.x36_c00130{left:30.240000pt;}
.x2b_c00130{left:32.640000pt;}
.x15_c00130{left:43.200000pt;}
.x2c_c00130{left:44.400000pt;}
.x5b_c00130{left:46.916000pt;}
.x37_c00130{left:48.240000pt;}
.x1c_c00130{left:50.400000pt;}
.x57_c00130{left:52.193333pt;}
.x68_c00130{left:54.000000pt;}
.x61_c00130{left:57.118667pt;}
.xa_c00130{left:58.320000pt;}
.x44_c00130{left:60.480000pt;}
.x4e_c00130{left:62.400000pt;}
.x58_c00130{left:63.729333pt;}
.x3f_c00130{left:64.800000pt;}
.x2d_c00130{left:65.760000pt;}
.x26_c00130{left:67.200000pt;}
.x53_c00130{left:70.080000pt;}
.x5e_c00130{left:71.038667pt;}
.x6f_c00130{left:72.240000pt;}
.x10_c00130{left:73.200000pt;}
.x5_c00130{left:78.720000pt;}
.x27_c00130{left:80.640000pt;}
.x54_c00130{left:81.600000pt;}
.x4b_c00130{left:83.520000pt;}
.x69_c00130{left:84.480000pt;}
.x5c_c00130{left:85.552000pt;}
.x4f_c00130{left:87.120000pt;}
.x5f_c00130{left:89.518667pt;}
.x16_c00130{left:92.160000pt;}
.x71_c00130{left:95.325333pt;}
.xb_c00130{left:96.720000pt;}
.x28_c00130{left:102.000000pt;}
.x40_c00130{left:103.920000pt;}
.x11_c00130{left:104.880000pt;}
.x1d_c00130{left:106.560000pt;}
.x59_c00130{left:107.648000pt;}
.x45_c00130{left:109.200000pt;}
.x3c_c00130{left:110.160000pt;}
.x74_c00130{left:111.461333pt;}
.x23_c00130{left:113.520000pt;}
.xc_c00130{left:116.400000pt;}
.x6a_c00130{left:119.520000pt;}
.x48_c00130{left:120.720000pt;}
.x17_c00130{left:122.160000pt;}
.x63_c00130{left:127.093333pt;}
.x2e_c00130{left:131.520000pt;}
.x6c_c00130{left:132.604000pt;}
.x6_c00130{left:134.400000pt;}
.x2_c00130{left:136.080000pt;}
.x38_c00130{left:141.120000pt;}
.x3_c00130{left:145.680000pt;}
.x79_c00130{left:146.758667pt;}
.x2f_c00130{left:148.080000pt;}
.x46_c00130{left:149.280000pt;}
.x6d_c00130{left:150.442667pt;}
.x3d_c00130{left:152.400000pt;}
.x1e_c00130{left:154.080000pt;}
.x12_c00130{left:155.040000pt;}
.x65_c00130{left:156.720000pt;}
.x29_c00130{left:157.920000pt;}
.x60_c00130{left:159.598667pt;}
.x32_c00130{left:163.200000pt;}
.x7_c00130{left:165.600000pt;}
.x66_c00130{left:167.040000pt;}
.x18_c00130{left:168.240000pt;}
.x6b_c00130{left:170.160000pt;}
.x7e_c00130{left:172.561333pt;}
.x24_c00130{left:174.000000pt;}
.xd_c00130{left:175.680000pt;}
.x7b_c00130{left:178.321333pt;}
.x6e_c00130{left:181.132000pt;}
.x41_c00130{left:183.600000pt;}
.x49_c00130{left:187.200000pt;}
.x33_c00130{left:188.400000pt;}
.x75_c00130{left:189.470667pt;}
.x50_c00130{left:192.480000pt;}
.x25_c00130{left:194.160000pt;}
.x47_c00130{left:195.120000pt;}
.x1f_c00130{left:198.000000pt;}
.x39_c00130{left:198.960000pt;}
.x13_c00130{left:200.640000pt;}
.x30_c00130{left:202.320000pt;}
.x76_c00130{left:203.600000pt;}
.x19_c00130{left:209.520000pt;}
.x62_c00130{left:214.558667pt;}
.x72_c00130{left:216.088000pt;}
.x5d_c00130{left:219.464000pt;}
.x3a_c00130{left:220.560000pt;}
.x7a_c00130{left:222.102667pt;}
.x20_c00130{left:223.200000pt;}
.x42_c00130{left:226.320000pt;}
.x34_c00130{left:227.520000pt;}
.x55_c00130{left:229.440000pt;}
.x5a_c00130{left:230.774667pt;}
.x7c_c00130{left:232.801333pt;}
.xe_c00130{left:238.080000pt;}
.x21_c00130{left:239.760000pt;}
.x4a_c00130{left:243.120000pt;}
.x43_c00130{left:244.080000pt;}
.x1a_c00130{left:245.280000pt;}
.x3e_c00130{left:247.440000pt;}
.x35_c00130{left:248.880000pt;}
.xf_c00130{left:250.080000pt;}
.x2a_c00130{left:251.760000pt;}
.x51_c00130{left:254.160000pt;}
.x7d_c00130{left:257.041333pt;}
.x4c_c00130{left:258.000000pt;}
.x3b_c00130{left:258.960000pt;}
.x8_c00130{left:259.920000pt;}
.x73_c00130{left:262.557333pt;}
.x31_c00130{left:263.760000pt;}
.x56_c00130{left:265.200000pt;}
.x64_c00130{left:268.673333pt;}
.x4d_c00130{left:273.360000pt;}
.x52_c00130{left:274.560000pt;}
.x1b_c00130{left:276.960000pt;}
.x70_c00130{left:279.600000pt;}
.x14_c00130{left:280.800000pt;}
.x22_c00130{left:282.000000pt;}
.x77_c00130{left:283.485333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00131 {
    display:none;
  }
  .loading-indicator_c00131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00131 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00131 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00131" -> "#page-container .classname_c00131")
 */
.pf_c00131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00131 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00131 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00131 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00131 {overflow:visible;}
  }
}
.c_c00131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00131 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00131:after { /* webkit #35443 */
  content: '';
}
.t_c00131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00131 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00131 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00131 { /* info for Javascript */
  display:none;
}
.l_c00131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00131:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00131 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00131.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00131{transform:matrix(0.056225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056225,0.000000,0.000000,0.250000,0,0);}
.mce_c00131{transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00131{transform:matrix(0.116265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116265,0.000000,0.000000,0.250000,0,0);}
.mda_c00131{transform:matrix(0.124380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124380,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.127370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127370,0.000000,0.000000,0.250000,0,0);}
.m99_c00131{transform:matrix(0.138915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138915,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.139495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139495,0.000000,0.000000,0.250000,0,0);}
.md6_c00131{transform:matrix(0.141235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00131{transform:matrix(0.141730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141730,0.000000,0.000000,0.250000,0,0);}
.m93_c00131{transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143015,0.000000,0.000000,0.250000,0,0);}
.mcf_c00131{transform:matrix(0.144235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144235,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);}
.md7_c00131{transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.150495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150495,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.ma2_c00131{transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);}
.mb3_c00131{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.mba_c00131{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00131{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m76_c00131{transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);}
.maf_c00131{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m8b_c00131{transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00131{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.m95_c00131{transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m98_c00131{transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);}
.m92_c00131{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m96_c00131{transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);}
.mb4_c00131{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m8c_c00131{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.170580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170580,0.000000,0.000000,0.250000,0,0);}
.mc1_c00131{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.mc3_c00131{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);}
.ma3_c00131{transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);}
.ma0_c00131{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mbf_c00131{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);}
.md8_c00131{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.mb6_c00131{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.mb1_c00131{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00131{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180455,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);}
.m72_c00131{transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.182135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182135,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);}
.me3_c00131{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.mbb_c00131{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);}
.m84_c00131{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00131{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00131{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.ma4_c00131{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m8e_c00131{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00131{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);}
.m94_c00131{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.mb8_c00131{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);}
.mb0_c00131{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.mae_c00131{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.mdc_c00131{transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.mc2_c00131{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.mb5_c00131{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.mb2_c00131{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.mde_c00131{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.mc6_c00131{transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);}
.m68_c00131{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m89_c00131{transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);}
.m9b_c00131{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.me7_c00131{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.me5_c00131{transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00131{transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);}
.ma6_c00131{transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);}
.m6f_c00131{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.me0_c00131{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.mbd_c00131{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);}
.md4_c00131{transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.m65_c00131{transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);}
.mca_c00131{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m64_c00131{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00131{transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);}
.mab_c00131{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mdf_c00131{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.me2_c00131{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.mcd_c00131{transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);}
.mbc_c00131{transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);}
.m7d_c00131{transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00131{transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);}
.mdd_c00131{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.me1_c00131{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.md2_c00131{transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);}
.m80_c00131{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);}
.mc7_c00131{transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m63_c00131{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);}
.maa_c00131{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m6c_c00131{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.mad_c00131{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.m6b_c00131{transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.me8_c00131{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.me6_c00131{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m7e_c00131{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.me4_c00131{transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00131{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.mc9_c00131{transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.mc0_c00131{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m9e_c00131{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);}
.ma9_c00131{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.md1_c00131{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m86_c00131{transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00131{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.mc8_c00131{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.md9_c00131{transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);}
.m6a_c00131{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m7c_c00131{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.m79_c00131{transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);}
.md3_c00131{transform:matrix(0.279210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279210,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);}
.md0_c00131{transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);}
.mdb_c00131{transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);}
.mc5_c00131{transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);}
.md5_c00131{transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.362475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362475,0.000000,0.000000,0.250000,0,0);}
.m9a_c00131{transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.464650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464650,0.000000,0.000000,0.250000,0,0);}
.mac_c00131{transform:matrix(0.523665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523665,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:0.000000px;}
._0_c00131{margin-left:-2.429825px;}
.fc0_c00131{color:transparent;}
.fs6_c00131{font-size:32.550000px;}
.fs4_c00131{font-size:52.500000px;}
.fse_c00131{font-size:57.750000px;}
.fsb_c00131{font-size:58.800000px;}
.fs11_c00131{font-size:59.850000px;}
.fs7_c00131{font-size:60.900000px;}
.fs9_c00131{font-size:63.000000px;}
.fs8_c00131{font-size:64.050000px;}
.fsc_c00131{font-size:65.100000px;}
.fs3_c00131{font-size:66.150000px;}
.fs5_c00131{font-size:67.200000px;}
.fs12_c00131{font-size:68.250000px;}
.fs10_c00131{font-size:69.300000px;}
.fsf_c00131{font-size:70.350000px;}
.fsa_c00131{font-size:72.450000px;}
.fs1_c00131{font-size:73.500000px;}
.fs2_c00131{font-size:76.650000px;}
.fs0_c00131{font-size:79.800000px;}
.fsd_c00131{font-size:84.000000px;}
.y0_c00131{bottom:0.000000px;}
.y34_c00131{bottom:28.657500px;}
.y33_c00131{bottom:45.594000px;}
.y32_c00131{bottom:63.523500px;}
.y31_c00131{bottom:80.802000px;}
.y29_c00131{bottom:96.124500px;}
.y2a_c00131{bottom:96.480000px;}
.y2b_c00131{bottom:96.715500px;}
.y2c_c00131{bottom:97.848000px;}
.y2d_c00131{bottom:98.157000px;}
.y2e_c00131{bottom:98.860500px;}
.y2f_c00131{bottom:99.676500px;}
.y30_c00131{bottom:100.017000px;}
.y28_c00131{bottom:116.599500px;}
.y27_c00131{bottom:134.331000px;}
.y1f_c00131{bottom:149.581500px;}
.y20_c00131{bottom:150.259500px;}
.y21_c00131{bottom:150.544500px;}
.y22_c00131{bottom:151.092000px;}
.y23_c00131{bottom:151.956000px;}
.y24_c00131{bottom:152.236500px;}
.y25_c00131{bottom:152.577000px;}
.y26_c00131{bottom:153.181500px;}
.y1e_c00131{bottom:171.061500px;}
.y1d_c00131{bottom:186.522000px;}
.y1c_c00131{bottom:204.658500px;}
.y1b_c00131{bottom:222.399000px;}
.y1a_c00131{bottom:240.009000px;}
.y19_c00131{bottom:257.695500px;}
.y18_c00131{bottom:274.822500px;}
.y17_c00131{bottom:292.138500px;}
.y16_c00131{bottom:309.688500px;}
.y15_c00131{bottom:327.043500px;}
.yf_c00131{bottom:343.440000px;}
.y10_c00131{bottom:344.523000px;}
.y11_c00131{bottom:344.682000px;}
.y12_c00131{bottom:345.492000px;}
.y13_c00131{bottom:345.957000px;}
.y14_c00131{bottom:346.116000px;}
.ye_c00131{bottom:362.184000px;}
.yd_c00131{bottom:380.269500px;}
.yc_c00131{bottom:397.980000px;}
.ya_c00131{bottom:415.294500px;}
.y9_c00131{bottom:433.195500px;}
.y8_c00131{bottom:449.233500px;}
.y7_c00131{bottom:467.827500px;}
.y6_c00131{bottom:485.155500px;}
.y5_c00131{bottom:501.999000px;}
.y4_c00131{bottom:519.900000px;}
.yb_c00131{bottom:541.095000px;}
.y3_c00131{bottom:554.259000px;}
.y2_c00131{bottom:571.687500px;}
.y1_c00131{bottom:585.577500px;}
.h8_c00131{height:32.550000px;}
.h6_c00131{height:52.500000px;}
.h10_c00131{height:57.750000px;}
.hd_c00131{height:58.800000px;}
.h13_c00131{height:59.850000px;}
.h9_c00131{height:60.900000px;}
.hb_c00131{height:63.000000px;}
.ha_c00131{height:64.050000px;}
.he_c00131{height:65.100000px;}
.h5_c00131{height:66.150000px;}
.h7_c00131{height:67.200000px;}
.h14_c00131{height:68.250000px;}
.h12_c00131{height:69.300000px;}
.h11_c00131{height:70.350000px;}
.hc_c00131{height:72.450000px;}
.h3_c00131{height:73.500000px;}
.h4_c00131{height:76.650000px;}
.h2_c00131{height:79.800000px;}
.hf_c00131{height:84.000000px;}
.h0_c00131{height:634.200000px;}
.h1_c00131{height:634.500000px;}
.w0_c00131{width:371.790000px;}
.w1_c00131{width:372.000000px;}
.x0_c00131{left:0.000000px;}
.x77_c00131{left:39.691500px;}
.x6b_c00131{left:41.041500px;}
.x5f_c00131{left:42.121500px;}
.x57_c00131{left:43.201500px;}
.x3c_c00131{left:44.280000px;}
.x2f_c00131{left:46.170000px;}
.x17_c00131{left:47.790000px;}
.x2_c00131{left:49.410000px;}
.x10_c00131{left:51.300000px;}
.x50_c00131{left:56.431500px;}
.x54_c00131{left:60.211500px;}
.x5b_c00131{left:63.181500px;}
.x45_c00131{left:65.071500px;}
.x55_c00131{left:69.391500px;}
.x4d_c00131{left:70.471500px;}
.x3d_c00131{left:73.710000px;}
.x69_c00131{left:74.989500px;}
.x43_c00131{left:76.411500px;}
.x1d_c00131{left:80.190000px;}
.x62_c00131{left:81.811500px;}
.x30_c00131{left:83.970000px;}
.x66_c00131{left:86.400000px;}
.x9_c00131{left:88.560000px;}
.x6e_c00131{left:89.911500px;}
.x3_c00131{left:92.340000px;}
.x22_c00131{left:93.420000px;}
.x60_c00131{left:95.041500px;}
.x3e_c00131{left:97.200000px;}
.x5c_c00131{left:99.631500px;}
.x51_c00131{left:102.061500px;}
.x6f_c00131{left:104.491500px;}
.x29_c00131{left:106.650000px;}
.x18_c00131{left:108.270000px;}
.x11_c00131{left:109.350000px;}
.x58_c00131{left:110.701500px;}
.x1e_c00131{left:113.940000px;}
.x46_c00131{left:116.371500px;}
.x6c_c00131{left:120.421500px;}
.xa_c00131{left:122.580000px;}
.x2a_c00131{left:123.660000px;}
.x19_c00131{left:129.060000px;}
.x52_c00131{left:130.141500px;}
.x59_c00131{left:131.761500px;}
.x78_c00131{left:133.651500px;}
.x47_c00131{left:135.001500px;}
.x35_c00131{left:136.890000px;}
.x1f_c00131{left:140.400000px;}
.x73_c00131{left:143.911500px;}
.x2b_c00131{left:147.420000px;}
.x5a_c00131{left:150.931500px;}
.x42_c00131{left:152.958000px;}
.x4a_c00131{left:157.411500px;}
.x27_c00131{left:158.490000px;}
.x12_c00131{left:161.190000px;}
.x63_c00131{left:165.781500px;}
.x3f_c00131{left:169.290000px;}
.x4_c00131{left:172.800000px;}
.xb_c00131{left:178.470000px;}
.x38_c00131{left:179.820000px;}
.x36_c00131{left:181.980000px;}
.x6d_c00131{left:183.331500px;}
.x1_c00131{left:184.680000px;}
.x23_c00131{left:190.350000px;}
.x68_c00131{left:191.430000px;}
.x6a_c00131{left:194.854500px;}
.x31_c00131{left:196.290000px;}
.x13_c00131{left:197.910000px;}
.xc_c00131{left:200.070000px;}
.x4e_c00131{left:201.691500px;}
.x48_c00131{left:203.311500px;}
.x5_c00131{left:204.930000px;}
.x74_c00131{left:206.821500px;}
.x67_c00131{left:213.300000px;}
.x37_c00131{left:214.380000px;}
.x28_c00131{left:216.270000px;}
.x20_c00131{left:217.890000px;}
.x40_c00131{left:219.780000px;}
.x56_c00131{left:222.481500px;}
.x49_c00131{left:223.561500px;}
.x6_c00131{left:225.180000px;}
.x70_c00131{left:227.881500px;}
.x75_c00131{left:230.851500px;}
.x5d_c00131{left:232.741500px;}
.x14_c00131{left:240.300000px;}
.x4b_c00131{left:242.461500px;}
.x64_c00131{left:245.560500px;}
.x24_c00131{left:247.320000px;}
.x34_c00131{left:250.020000px;}
.x32_c00131{left:251.370000px;}
.x76_c00131{left:253.531500px;}
.x2c_c00131{left:255.960000px;}
.x7_c00131{left:257.040000px;}
.x4c_c00131{left:259.201500px;}
.xd_c00131{left:260.280000px;}
.x1a_c00131{left:261.630000px;}
.x71_c00131{left:265.141500px;}
.x53_c00131{left:266.761500px;}
.x39_c00131{left:272.430000px;}
.x2d_c00131{left:278.370000px;}
.xe_c00131{left:285.930000px;}
.x4f_c00131{left:288.091500px;}
.x3a_c00131{left:289.440000px;}
.x1b_c00131{left:290.790000px;}
.x41_c00131{left:291.870000px;}
.x44_c00131{left:295.381500px;}
.x21_c00131{left:297.270000px;}
.x15_c00131{left:303.480000px;}
.x1c_c00131{left:308.610000px;}
.x25_c00131{left:310.230000px;}
.x2e_c00131{left:311.580000px;}
.x61_c00131{left:312.661500px;}
.x3b_c00131{left:314.820000px;}
.x72_c00131{left:316.441500px;}
.x65_c00131{left:318.234000px;}
.x5e_c00131{left:320.221500px;}
.x8_c00131{left:326.970000px;}
.x16_c00131{left:328.050000px;}
.x26_c00131{left:331.020000px;}
.x33_c00131{left:332.640000px;}
.xf_c00131{left:335.880000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
._0_c00131{margin-left:-2.159845pt;}
.fs6_c00131{font-size:28.933333pt;}
.fs4_c00131{font-size:46.666667pt;}
.fse_c00131{font-size:51.333333pt;}
.fsb_c00131{font-size:52.266667pt;}
.fs11_c00131{font-size:53.200000pt;}
.fs7_c00131{font-size:54.133333pt;}
.fs9_c00131{font-size:56.000000pt;}
.fs8_c00131{font-size:56.933333pt;}
.fsc_c00131{font-size:57.866667pt;}
.fs3_c00131{font-size:58.800000pt;}
.fs5_c00131{font-size:59.733333pt;}
.fs12_c00131{font-size:60.666667pt;}
.fs10_c00131{font-size:61.600000pt;}
.fsf_c00131{font-size:62.533333pt;}
.fsa_c00131{font-size:64.400000pt;}
.fs1_c00131{font-size:65.333333pt;}
.fs2_c00131{font-size:68.133333pt;}
.fs0_c00131{font-size:70.933333pt;}
.fsd_c00131{font-size:74.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y34_c00131{bottom:25.473333pt;}
.y33_c00131{bottom:40.528000pt;}
.y32_c00131{bottom:56.465333pt;}
.y31_c00131{bottom:71.824000pt;}
.y29_c00131{bottom:85.444000pt;}
.y2a_c00131{bottom:85.760000pt;}
.y2b_c00131{bottom:85.969333pt;}
.y2c_c00131{bottom:86.976000pt;}
.y2d_c00131{bottom:87.250667pt;}
.y2e_c00131{bottom:87.876000pt;}
.y2f_c00131{bottom:88.601333pt;}
.y30_c00131{bottom:88.904000pt;}
.y28_c00131{bottom:103.644000pt;}
.y27_c00131{bottom:119.405333pt;}
.y1f_c00131{bottom:132.961333pt;}
.y20_c00131{bottom:133.564000pt;}
.y21_c00131{bottom:133.817333pt;}
.y22_c00131{bottom:134.304000pt;}
.y23_c00131{bottom:135.072000pt;}
.y24_c00131{bottom:135.321333pt;}
.y25_c00131{bottom:135.624000pt;}
.y26_c00131{bottom:136.161333pt;}
.y1e_c00131{bottom:152.054667pt;}
.y1d_c00131{bottom:165.797333pt;}
.y1c_c00131{bottom:181.918667pt;}
.y1b_c00131{bottom:197.688000pt;}
.y1a_c00131{bottom:213.341333pt;}
.y19_c00131{bottom:229.062667pt;}
.y18_c00131{bottom:244.286667pt;}
.y17_c00131{bottom:259.678667pt;}
.y16_c00131{bottom:275.278667pt;}
.y15_c00131{bottom:290.705333pt;}
.yf_c00131{bottom:305.280000pt;}
.y10_c00131{bottom:306.242667pt;}
.y11_c00131{bottom:306.384000pt;}
.y12_c00131{bottom:307.104000pt;}
.y13_c00131{bottom:307.517333pt;}
.y14_c00131{bottom:307.658667pt;}
.ye_c00131{bottom:321.941333pt;}
.yd_c00131{bottom:338.017333pt;}
.yc_c00131{bottom:353.760000pt;}
.ya_c00131{bottom:369.150667pt;}
.y9_c00131{bottom:385.062667pt;}
.y8_c00131{bottom:399.318667pt;}
.y7_c00131{bottom:415.846667pt;}
.y6_c00131{bottom:431.249333pt;}
.y5_c00131{bottom:446.221333pt;}
.y4_c00131{bottom:462.133333pt;}
.yb_c00131{bottom:480.973333pt;}
.y3_c00131{bottom:492.674667pt;}
.y2_c00131{bottom:508.166667pt;}
.y1_c00131{bottom:520.513333pt;}
.h8_c00131{height:28.933333pt;}
.h6_c00131{height:46.666667pt;}
.h10_c00131{height:51.333333pt;}
.hd_c00131{height:52.266667pt;}
.h13_c00131{height:53.200000pt;}
.h9_c00131{height:54.133333pt;}
.hb_c00131{height:56.000000pt;}
.ha_c00131{height:56.933333pt;}
.he_c00131{height:57.866667pt;}
.h5_c00131{height:58.800000pt;}
.h7_c00131{height:59.733333pt;}
.h14_c00131{height:60.666667pt;}
.h12_c00131{height:61.600000pt;}
.h11_c00131{height:62.533333pt;}
.hc_c00131{height:64.400000pt;}
.h3_c00131{height:65.333333pt;}
.h4_c00131{height:68.133333pt;}
.h2_c00131{height:70.933333pt;}
.hf_c00131{height:74.666667pt;}
.h0_c00131{height:563.733333pt;}
.h1_c00131{height:564.000000pt;}
.w0_c00131{width:330.480000pt;}
.w1_c00131{width:330.666667pt;}
.x0_c00131{left:0.000000pt;}
.x77_c00131{left:35.281333pt;}
.x6b_c00131{left:36.481333pt;}
.x5f_c00131{left:37.441333pt;}
.x57_c00131{left:38.401333pt;}
.x3c_c00131{left:39.360000pt;}
.x2f_c00131{left:41.040000pt;}
.x17_c00131{left:42.480000pt;}
.x2_c00131{left:43.920000pt;}
.x10_c00131{left:45.600000pt;}
.x50_c00131{left:50.161333pt;}
.x54_c00131{left:53.521333pt;}
.x5b_c00131{left:56.161333pt;}
.x45_c00131{left:57.841333pt;}
.x55_c00131{left:61.681333pt;}
.x4d_c00131{left:62.641333pt;}
.x3d_c00131{left:65.520000pt;}
.x69_c00131{left:66.657333pt;}
.x43_c00131{left:67.921333pt;}
.x1d_c00131{left:71.280000pt;}
.x62_c00131{left:72.721333pt;}
.x30_c00131{left:74.640000pt;}
.x66_c00131{left:76.800000pt;}
.x9_c00131{left:78.720000pt;}
.x6e_c00131{left:79.921333pt;}
.x3_c00131{left:82.080000pt;}
.x22_c00131{left:83.040000pt;}
.x60_c00131{left:84.481333pt;}
.x3e_c00131{left:86.400000pt;}
.x5c_c00131{left:88.561333pt;}
.x51_c00131{left:90.721333pt;}
.x6f_c00131{left:92.881333pt;}
.x29_c00131{left:94.800000pt;}
.x18_c00131{left:96.240000pt;}
.x11_c00131{left:97.200000pt;}
.x58_c00131{left:98.401333pt;}
.x1e_c00131{left:101.280000pt;}
.x46_c00131{left:103.441333pt;}
.x6c_c00131{left:107.041333pt;}
.xa_c00131{left:108.960000pt;}
.x2a_c00131{left:109.920000pt;}
.x19_c00131{left:114.720000pt;}
.x52_c00131{left:115.681333pt;}
.x59_c00131{left:117.121333pt;}
.x78_c00131{left:118.801333pt;}
.x47_c00131{left:120.001333pt;}
.x35_c00131{left:121.680000pt;}
.x1f_c00131{left:124.800000pt;}
.x73_c00131{left:127.921333pt;}
.x2b_c00131{left:131.040000pt;}
.x5a_c00131{left:134.161333pt;}
.x42_c00131{left:135.962667pt;}
.x4a_c00131{left:139.921333pt;}
.x27_c00131{left:140.880000pt;}
.x12_c00131{left:143.280000pt;}
.x63_c00131{left:147.361333pt;}
.x3f_c00131{left:150.480000pt;}
.x4_c00131{left:153.600000pt;}
.xb_c00131{left:158.640000pt;}
.x38_c00131{left:159.840000pt;}
.x36_c00131{left:161.760000pt;}
.x6d_c00131{left:162.961333pt;}
.x1_c00131{left:164.160000pt;}
.x23_c00131{left:169.200000pt;}
.x68_c00131{left:170.160000pt;}
.x6a_c00131{left:173.204000pt;}
.x31_c00131{left:174.480000pt;}
.x13_c00131{left:175.920000pt;}
.xc_c00131{left:177.840000pt;}
.x4e_c00131{left:179.281333pt;}
.x48_c00131{left:180.721333pt;}
.x5_c00131{left:182.160000pt;}
.x74_c00131{left:183.841333pt;}
.x67_c00131{left:189.600000pt;}
.x37_c00131{left:190.560000pt;}
.x28_c00131{left:192.240000pt;}
.x20_c00131{left:193.680000pt;}
.x40_c00131{left:195.360000pt;}
.x56_c00131{left:197.761333pt;}
.x49_c00131{left:198.721333pt;}
.x6_c00131{left:200.160000pt;}
.x70_c00131{left:202.561333pt;}
.x75_c00131{left:205.201333pt;}
.x5d_c00131{left:206.881333pt;}
.x14_c00131{left:213.600000pt;}
.x4b_c00131{left:215.521333pt;}
.x64_c00131{left:218.276000pt;}
.x24_c00131{left:219.840000pt;}
.x34_c00131{left:222.240000pt;}
.x32_c00131{left:223.440000pt;}
.x76_c00131{left:225.361333pt;}
.x2c_c00131{left:227.520000pt;}
.x7_c00131{left:228.480000pt;}
.x4c_c00131{left:230.401333pt;}
.xd_c00131{left:231.360000pt;}
.x1a_c00131{left:232.560000pt;}
.x71_c00131{left:235.681333pt;}
.x53_c00131{left:237.121333pt;}
.x39_c00131{left:242.160000pt;}
.x2d_c00131{left:247.440000pt;}
.xe_c00131{left:254.160000pt;}
.x4f_c00131{left:256.081333pt;}
.x3a_c00131{left:257.280000pt;}
.x1b_c00131{left:258.480000pt;}
.x41_c00131{left:259.440000pt;}
.x44_c00131{left:262.561333pt;}
.x21_c00131{left:264.240000pt;}
.x15_c00131{left:269.760000pt;}
.x1c_c00131{left:274.320000pt;}
.x25_c00131{left:275.760000pt;}
.x2e_c00131{left:276.960000pt;}
.x61_c00131{left:277.921333pt;}
.x3b_c00131{left:279.840000pt;}
.x72_c00131{left:281.281333pt;}
.x65_c00131{left:282.874667pt;}
.x5e_c00131{left:284.641333pt;}
.x8_c00131{left:290.640000pt;}
.x16_c00131{left:291.600000pt;}
.x26_c00131{left:294.240000pt;}
.x33_c00131{left:295.680000pt;}
.xf_c00131{left:298.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00132 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00132 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00132 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00132 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00132.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00132{transform:matrix(0.115807,0.004521,-0.009752,0.249810,0,0);-ms-transform:matrix(0.115807,0.004521,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.115807,0.004521,-0.009752,0.249810,0,0);}
.mac_c00132{transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);-ms-transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);}
.m5e_c00132{transform:matrix(0.126693,0.004946,-0.009752,0.249810,0,0);-ms-transform:matrix(0.126693,0.004946,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.126693,0.004946,-0.009752,0.249810,0,0);}
.m29_c00132{transform:matrix(0.132369,0.005168,-0.009752,0.249810,0,0);-ms-transform:matrix(0.132369,0.005168,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.132369,0.005168,-0.009752,0.249810,0,0);}
.m51_c00132{transform:matrix(0.139789,0.005457,-0.009752,0.249810,0,0);-ms-transform:matrix(0.139789,0.005457,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.139789,0.005457,-0.009752,0.249810,0,0);}
.m2e_c00132{transform:matrix(0.141132,0.005510,-0.009752,0.249810,0,0);-ms-transform:matrix(0.141132,0.005510,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.141132,0.005510,-0.009752,0.249810,0,0);}
.mba_c00132{transform:matrix(0.141352,0.005518,-0.009752,0.249810,0,0);-ms-transform:matrix(0.141352,0.005518,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.141352,0.005518,-0.009752,0.249810,0,0);}
.m80_c00132{transform:matrix(0.141847,0.005538,-0.009752,0.249810,0,0);-ms-transform:matrix(0.141847,0.005538,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.141847,0.005538,-0.009752,0.249810,0,0);}
.mbb_c00132{transform:matrix(0.147837,0.005771,-0.009752,0.249810,0,0);-ms-transform:matrix(0.147837,0.005771,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.147837,0.005771,-0.009752,0.249810,0,0);}
.m3a_c00132{transform:matrix(0.148472,0.005796,-0.009752,0.249810,0,0);-ms-transform:matrix(0.148472,0.005796,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.148472,0.005796,-0.009752,0.249810,0,0);}
.md2_c00132{transform:matrix(0.148682,0.010886,-0.018256,0.249333,0,0);-ms-transform:matrix(0.148682,0.010886,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.148682,0.010886,-0.018256,0.249333,0,0);}
.m58_c00132{transform:matrix(0.149886,0.005851,-0.009752,0.249810,0,0);-ms-transform:matrix(0.149886,0.005851,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.149886,0.005851,-0.009752,0.249810,0,0);}
.m2a_c00132{transform:matrix(0.151535,0.005916,-0.009752,0.249810,0,0);-ms-transform:matrix(0.151535,0.005916,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.151535,0.005916,-0.009752,0.249810,0,0);}
.me_c00132{transform:matrix(0.151868,0.006081,-0.010002,0.249800,0,0);-ms-transform:matrix(0.151868,0.006081,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.151868,0.006081,-0.010002,0.249800,0,0);}
.ma9_c00132{transform:matrix(0.153003,0.005973,-0.009752,0.249810,0,0);-ms-transform:matrix(0.153003,0.005973,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.153003,0.005973,-0.009752,0.249810,0,0);}
.mb5_c00132{transform:matrix(0.153688,0.006000,-0.009752,0.249810,0,0);-ms-transform:matrix(0.153688,0.006000,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.153688,0.006000,-0.009752,0.249810,0,0);}
.m93_c00132{transform:matrix(0.154947,0.006049,-0.009752,0.249810,0,0);-ms-transform:matrix(0.154947,0.006049,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.154947,0.006049,-0.009752,0.249810,0,0);}
.m39_c00132{transform:matrix(0.156806,0.006122,-0.009752,0.249810,0,0);-ms-transform:matrix(0.156806,0.006122,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.156806,0.006122,-0.009752,0.249810,0,0);}
.m20_c00132{transform:matrix(0.157355,0.006143,-0.009752,0.249810,0,0);-ms-transform:matrix(0.157355,0.006143,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.157355,0.006143,-0.009752,0.249810,0,0);}
.m69_c00132{transform:matrix(0.159543,0.006228,-0.009752,0.249810,0,0);-ms-transform:matrix(0.159543,0.006228,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.159543,0.006228,-0.009752,0.249810,0,0);}
.m6c_c00132{transform:matrix(0.160143,0.006252,-0.009752,0.249810,0,0);-ms-transform:matrix(0.160143,0.006252,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.160143,0.006252,-0.009752,0.249810,0,0);}
.mce_c00132{transform:matrix(0.160889,0.011780,-0.018256,0.249333,0,0);-ms-transform:matrix(0.160889,0.011780,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.160889,0.011780,-0.018256,0.249333,0,0);}
.m32_c00132{transform:matrix(0.161432,0.006302,-0.009752,0.249810,0,0);-ms-transform:matrix(0.161432,0.006302,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.161432,0.006302,-0.009752,0.249810,0,0);}
.m60_c00132{transform:matrix(0.161757,0.006315,-0.009752,0.249810,0,0);-ms-transform:matrix(0.161757,0.006315,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.161757,0.006315,-0.009752,0.249810,0,0);}
.m8f_c00132{transform:matrix(0.162122,0.006329,-0.009752,0.249810,0,0);-ms-transform:matrix(0.162122,0.006329,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.162122,0.006329,-0.009752,0.249810,0,0);}
.m63_c00132{transform:matrix(0.162701,0.006352,-0.009752,0.249810,0,0);-ms-transform:matrix(0.162701,0.006352,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.162701,0.006352,-0.009752,0.249810,0,0);}
.m4e_c00132{transform:matrix(0.162756,0.006354,-0.009752,0.249810,0,0);-ms-transform:matrix(0.162756,0.006354,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.162756,0.006354,-0.009752,0.249810,0,0);}
.m41_c00132{transform:matrix(0.164015,0.006403,-0.009752,0.249810,0,0);-ms-transform:matrix(0.164015,0.006403,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.164015,0.006403,-0.009752,0.249810,0,0);}
.mb4_c00132{transform:matrix(0.165159,0.006448,-0.009752,0.249810,0,0);-ms-transform:matrix(0.165159,0.006448,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.165159,0.006448,-0.009752,0.249810,0,0);}
.m45_c00132{transform:matrix(0.165384,0.006456,-0.009752,0.249810,0,0);-ms-transform:matrix(0.165384,0.006456,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.165384,0.006456,-0.009752,0.249810,0,0);}
.m8_c00132{transform:matrix(0.165417,0.006623,-0.010002,0.249800,0,0);-ms-transform:matrix(0.165417,0.006623,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.165417,0.006623,-0.010002,0.249800,0,0);}
.mb7_c00132{transform:matrix(0.165964,0.006479,-0.009752,0.249810,0,0);-ms-transform:matrix(0.165964,0.006479,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.165964,0.006479,-0.009752,0.249810,0,0);}
.m2b_c00132{transform:matrix(0.166973,0.006518,-0.009752,0.249810,0,0);-ms-transform:matrix(0.166973,0.006518,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.166973,0.006518,-0.009752,0.249810,0,0);}
.m1e_c00132{transform:matrix(0.167226,0.006696,-0.010002,0.249800,0,0);-ms-transform:matrix(0.167226,0.006696,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.167226,0.006696,-0.010002,0.249800,0,0);}
.m3e_c00132{transform:matrix(0.167822,0.006552,-0.009752,0.249810,0,0);-ms-transform:matrix(0.167822,0.006552,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.167822,0.006552,-0.009752,0.249810,0,0);}
.m31_c00132{transform:matrix(0.167937,0.006556,-0.009752,0.249810,0,0);-ms-transform:matrix(0.167937,0.006556,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.167937,0.006556,-0.009752,0.249810,0,0);}
.m49_c00132{transform:matrix(0.168077,0.006562,-0.009752,0.249810,0,0);-ms-transform:matrix(0.168077,0.006562,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.168077,0.006562,-0.009752,0.249810,0,0);}
.m15_c00132{transform:matrix(0.169719,0.006796,-0.010002,0.249800,0,0);-ms-transform:matrix(0.169719,0.006796,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.169719,0.006796,-0.010002,0.249800,0,0);}
.m22_c00132{transform:matrix(0.170190,0.006644,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170190,0.006644,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170190,0.006644,-0.009752,0.249810,0,0);}
.m59_c00132{transform:matrix(0.170545,0.006658,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170545,0.006658,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170545,0.006658,-0.009752,0.249810,0,0);}
.m4c_c00132{transform:matrix(0.170895,0.006672,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170895,0.006672,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170895,0.006672,-0.009752,0.249810,0,0);}
.m2d_c00132{transform:matrix(0.171010,0.006676,-0.009752,0.249810,0,0);-ms-transform:matrix(0.171010,0.006676,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.171010,0.006676,-0.009752,0.249810,0,0);}
.m8e_c00132{transform:matrix(0.171524,0.006696,-0.009752,0.249810,0,0);-ms-transform:matrix(0.171524,0.006696,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.171524,0.006696,-0.009752,0.249810,0,0);}
.m43_c00132{transform:matrix(0.172099,0.006719,-0.009752,0.249810,0,0);-ms-transform:matrix(0.172099,0.006719,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.172099,0.006719,-0.009752,0.249810,0,0);}
.m92_c00132{transform:matrix(0.172254,0.006725,-0.009752,0.249810,0,0);-ms-transform:matrix(0.172254,0.006725,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.172254,0.006725,-0.009752,0.249810,0,0);}
.mdc_c00132{transform:matrix(0.172388,0.009318,-0.013494,0.249636,0,0);-ms-transform:matrix(0.172388,0.009318,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.172388,0.009318,-0.013494,0.249636,0,0);}
.m81_c00132{transform:matrix(0.172534,0.006736,-0.009752,0.249810,0,0);-ms-transform:matrix(0.172534,0.006736,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.172534,0.006736,-0.009752,0.249810,0,0);}
.m6f_c00132{transform:matrix(0.172773,0.006745,-0.009752,0.249810,0,0);-ms-transform:matrix(0.172773,0.006745,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.172773,0.006745,-0.009752,0.249810,0,0);}
.m25_c00132{transform:matrix(0.173133,0.006759,-0.009752,0.249810,0,0);-ms-transform:matrix(0.173133,0.006759,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.173133,0.006759,-0.009752,0.249810,0,0);}
.m33_c00132{transform:matrix(0.173153,0.006760,-0.009752,0.249810,0,0);-ms-transform:matrix(0.173153,0.006760,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.173153,0.006760,-0.009752,0.249810,0,0);}
.m2_c00132{transform:matrix(0.173386,0.006942,-0.010002,0.249800,0,0);-ms-transform:matrix(0.173386,0.006942,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.173386,0.006942,-0.010002,0.249800,0,0);}
.mc9_c00132{transform:matrix(0.173595,0.012711,-0.018256,0.249333,0,0);-ms-transform:matrix(0.173595,0.012711,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.173595,0.012711,-0.018256,0.249333,0,0);}
.m75_c00132{transform:matrix(0.173638,0.006779,-0.009752,0.249810,0,0);-ms-transform:matrix(0.173638,0.006779,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.173638,0.006779,-0.009752,0.249810,0,0);}
.m5f_c00132{transform:matrix(0.173903,0.006789,-0.009752,0.249810,0,0);-ms-transform:matrix(0.173903,0.006789,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.173903,0.006789,-0.009752,0.249810,0,0);}
.m1_c00132{transform:matrix(0.174021,0.006968,-0.010002,0.249800,0,0);-ms-transform:matrix(0.174021,0.006968,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.174021,0.006968,-0.010002,0.249800,0,0);}
.m3b_c00132{transform:matrix(0.174602,0.006816,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174602,0.006816,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174602,0.006816,-0.009752,0.249810,0,0);}
.m96_c00132{transform:matrix(0.174742,0.006822,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174742,0.006822,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174742,0.006822,-0.009752,0.249810,0,0);}
.m9d_c00132{transform:matrix(0.174782,0.006823,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174782,0.006823,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174782,0.006823,-0.009752,0.249810,0,0);}
.m8d_c00132{transform:matrix(0.175561,0.006854,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175561,0.006854,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175561,0.006854,-0.009752,0.249810,0,0);}
.m95_c00132{transform:matrix(0.175581,0.006855,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175581,0.006855,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175581,0.006855,-0.009752,0.249810,0,0);}
.m13_c00132{transform:matrix(0.176064,0.007050,-0.010002,0.249800,0,0);-ms-transform:matrix(0.176064,0.007050,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.176064,0.007050,-0.010002,0.249800,0,0);}
.m7c_c00132{transform:matrix(0.176426,0.006887,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176426,0.006887,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176426,0.006887,-0.009752,0.249810,0,0);}
.mc2_c00132{transform:matrix(0.176556,0.006893,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176556,0.006893,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176556,0.006893,-0.009752,0.249810,0,0);}
.m90_c00132{transform:matrix(0.176605,0.006895,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176605,0.006895,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176605,0.006895,-0.009752,0.249810,0,0);}
.m11_c00132{transform:matrix(0.176718,0.007076,-0.010002,0.249800,0,0);-ms-transform:matrix(0.176718,0.007076,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.176718,0.007076,-0.010002,0.249800,0,0);}
.md4_c00132{transform:matrix(0.177196,0.009578,-0.013494,0.249636,0,0);-ms-transform:matrix(0.177196,0.009578,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.177196,0.009578,-0.013494,0.249636,0,0);}
.m86_c00132{transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177205,0.006918,-0.009752,0.249810,0,0);}
.mad_c00132{transform:matrix(0.177385,0.006925,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177385,0.006925,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177385,0.006925,-0.009752,0.249810,0,0);}
.m94_c00132{transform:matrix(0.177415,0.006926,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177415,0.006926,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177415,0.006926,-0.009752,0.249810,0,0);}
.m34_c00132{transform:matrix(0.177515,0.006930,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177515,0.006930,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177515,0.006930,-0.009752,0.249810,0,0);}
.m37_c00132{transform:matrix(0.177710,0.006938,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177710,0.006938,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177710,0.006938,-0.009752,0.249810,0,0);}
.m4a_c00132{transform:matrix(0.177875,0.006944,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177875,0.006944,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177875,0.006944,-0.009752,0.249810,0,0);}
.mc6_c00132{transform:matrix(0.177879,0.013024,-0.018256,0.249333,0,0);-ms-transform:matrix(0.177879,0.013024,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.177879,0.013024,-0.018256,0.249333,0,0);}
.m3c_c00132{transform:matrix(0.177949,0.006947,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177949,0.006947,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177949,0.006947,-0.009752,0.249810,0,0);}
.m35_c00132{transform:matrix(0.178269,0.006959,-0.009752,0.249810,0,0);-ms-transform:matrix(0.178269,0.006959,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.178269,0.006959,-0.009752,0.249810,0,0);}
.me1_c00132{transform:matrix(0.178380,0.009642,-0.013494,0.249636,0,0);-ms-transform:matrix(0.178380,0.009642,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.178380,0.009642,-0.013494,0.249636,0,0);}
.m1f_c00132{transform:matrix(0.179246,0.007177,-0.010002,0.249800,0,0);-ms-transform:matrix(0.179246,0.007177,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.179246,0.007177,-0.010002,0.249800,0,0);}
.mcd_c00132{transform:matrix(0.179993,0.013179,-0.018256,0.249333,0,0);-ms-transform:matrix(0.179993,0.013179,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.179993,0.013179,-0.018256,0.249333,0,0);}
.m36_c00132{transform:matrix(0.180977,0.007065,-0.009752,0.249810,0,0);-ms-transform:matrix(0.180977,0.007065,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.180977,0.007065,-0.009752,0.249810,0,0);}
.md0_c00132{transform:matrix(0.181394,0.013282,-0.018256,0.249333,0,0);-ms-transform:matrix(0.181394,0.013282,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.181394,0.013282,-0.018256,0.249333,0,0);}
.mb1_c00132{transform:matrix(0.181697,0.007093,-0.009752,0.249810,0,0);-ms-transform:matrix(0.181697,0.007093,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.181697,0.007093,-0.009752,0.249810,0,0);}
.mb6_c00132{transform:matrix(0.182066,0.007108,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182066,0.007108,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182066,0.007108,-0.009752,0.249810,0,0);}
.m7e_c00132{transform:matrix(0.182171,0.007112,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182171,0.007112,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182171,0.007112,-0.009752,0.249810,0,0);}
.m38_c00132{transform:matrix(0.182346,0.007119,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182346,0.007119,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182346,0.007119,-0.009752,0.249810,0,0);}
.m3_c00132{transform:matrix(0.182928,0.007324,-0.010002,0.249800,0,0);-ms-transform:matrix(0.182928,0.007324,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.182928,0.007324,-0.010002,0.249800,0,0);}
.ma2_c00132{transform:matrix(0.182931,0.007141,-0.009752,0.249810,0,0);-ms-transform:matrix(0.182931,0.007141,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.182931,0.007141,-0.009752,0.249810,0,0);}
.mb_c00132{transform:matrix(0.183248,0.007337,-0.010002,0.249800,0,0);-ms-transform:matrix(0.183248,0.007337,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.183248,0.007337,-0.010002,0.249800,0,0);}
.ma6_c00132{transform:matrix(0.183345,0.007158,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183345,0.007158,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183345,0.007158,-0.009752,0.249810,0,0);}
.m3d_c00132{transform:matrix(0.183420,0.007161,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183420,0.007161,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183420,0.007161,-0.009752,0.249810,0,0);}
.mae_c00132{transform:matrix(0.183730,0.007173,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183730,0.007173,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183730,0.007173,-0.009752,0.249810,0,0);}
.m97_c00132{transform:matrix(0.183895,0.007179,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183895,0.007179,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183895,0.007179,-0.009752,0.249810,0,0);}
.m3f_c00132{transform:matrix(0.184035,0.007185,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184035,0.007185,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184035,0.007185,-0.009752,0.249810,0,0);}
.ma0_c00132{transform:matrix(0.184205,0.007191,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184205,0.007191,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184205,0.007191,-0.009752,0.249810,0,0);}
.m99_c00132{transform:matrix(0.184564,0.007205,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184564,0.007205,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184564,0.007205,-0.009752,0.249810,0,0);}
.m6a_c00132{transform:matrix(0.184979,0.007221,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184979,0.007221,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184979,0.007221,-0.009752,0.249810,0,0);}
.m2f_c00132{transform:matrix(0.185239,0.007232,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185239,0.007232,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185239,0.007232,-0.009752,0.249810,0,0);}
.mb9_c00132{transform:matrix(0.185609,0.007246,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185609,0.007246,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185609,0.007246,-0.009752,0.249810,0,0);}
.ma3_c00132{transform:matrix(0.185644,0.007247,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185644,0.007247,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185644,0.007247,-0.009752,0.249810,0,0);}
.mc0_c00132{transform:matrix(0.186183,0.007268,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186183,0.007268,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186183,0.007268,-0.009752,0.249810,0,0);}
.m54_c00132{transform:matrix(0.186313,0.007273,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186313,0.007273,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186313,0.007273,-0.009752,0.249810,0,0);}
.m87_c00132{transform:matrix(0.186663,0.007287,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186663,0.007287,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186663,0.007287,-0.009752,0.249810,0,0);}
.m28_c00132{transform:matrix(0.187382,0.007315,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187382,0.007315,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187382,0.007315,-0.009752,0.249810,0,0);}
.m47_c00132{transform:matrix(0.188377,0.007354,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188377,0.007354,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188377,0.007354,-0.009752,0.249810,0,0);}
.m50_c00132{transform:matrix(0.188406,0.007355,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188406,0.007355,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188406,0.007355,-0.009752,0.249810,0,0);}
.m4d_c00132{transform:matrix(0.189166,0.007385,-0.009752,0.249810,0,0);-ms-transform:matrix(0.189166,0.007385,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.189166,0.007385,-0.009752,0.249810,0,0);}
.m17_c00132{transform:matrix(0.189308,0.007580,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189308,0.007580,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189308,0.007580,-0.010002,0.249800,0,0);}
.ma4_c00132{transform:matrix(0.189426,0.007395,-0.009752,0.249810,0,0);-ms-transform:matrix(0.189426,0.007395,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.189426,0.007395,-0.009752,0.249810,0,0);}
.mb0_c00132{transform:matrix(0.189875,0.007413,-0.009752,0.249810,0,0);-ms-transform:matrix(0.189875,0.007413,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.189875,0.007413,-0.009752,0.249810,0,0);}
.m42_c00132{transform:matrix(0.190275,0.007428,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190275,0.007428,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190275,0.007428,-0.009752,0.249810,0,0);}
.mc5_c00132{transform:matrix(0.190326,0.013936,-0.018256,0.249333,0,0);-ms-transform:matrix(0.190326,0.013936,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.190326,0.013936,-0.018256,0.249333,0,0);}
.m61_c00132{transform:matrix(0.190560,0.007439,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190560,0.007439,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190560,0.007439,-0.009752,0.249810,0,0);}
.m9b_c00132{transform:matrix(0.190665,0.007443,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190665,0.007443,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190665,0.007443,-0.009752,0.249810,0,0);}
.mb8_c00132{transform:matrix(0.190755,0.007447,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190755,0.007447,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190755,0.007447,-0.009752,0.249810,0,0);}
.m83_c00132{transform:matrix(0.191709,0.007484,-0.009752,0.249810,0,0);-ms-transform:matrix(0.191709,0.007484,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.191709,0.007484,-0.009752,0.249810,0,0);}
.m4f_c00132{transform:matrix(0.191979,0.007495,-0.009752,0.249810,0,0);-ms-transform:matrix(0.191979,0.007495,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.191979,0.007495,-0.009752,0.249810,0,0);}
.m84_c00132{transform:matrix(0.192019,0.007496,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192019,0.007496,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192019,0.007496,-0.009752,0.249810,0,0);}
.m7f_c00132{transform:matrix(0.192209,0.007504,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192209,0.007504,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192209,0.007504,-0.009752,0.249810,0,0);}
.m44_c00132{transform:matrix(0.192219,0.007504,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192219,0.007504,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192219,0.007504,-0.009752,0.249810,0,0);}
.m74_c00132{transform:matrix(0.192978,0.007534,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192978,0.007534,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192978,0.007534,-0.009752,0.249810,0,0);}
.m19_c00132{transform:matrix(0.193155,0.007734,-0.010002,0.249800,0,0);-ms-transform:matrix(0.193155,0.007734,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.193155,0.007734,-0.010002,0.249800,0,0);}
.m8b_c00132{transform:matrix(0.193338,0.007548,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193338,0.007548,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193338,0.007548,-0.009752,0.249810,0,0);}
.ma1_c00132{transform:matrix(0.193578,0.007557,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193578,0.007557,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193578,0.007557,-0.009752,0.249810,0,0);}
.m62_c00132{transform:matrix(0.193637,0.007559,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193637,0.007559,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193637,0.007559,-0.009752,0.249810,0,0);}
.m66_c00132{transform:matrix(0.193762,0.007564,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193762,0.007564,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193762,0.007564,-0.009752,0.249810,0,0);}
.mc1_c00132{transform:matrix(0.194182,0.007581,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194182,0.007581,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194182,0.007581,-0.009752,0.249810,0,0);}
.maf_c00132{transform:matrix(0.195166,0.007619,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195166,0.007619,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195166,0.007619,-0.009752,0.249810,0,0);}
.mc_c00132{transform:matrix(0.195279,0.007819,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195279,0.007819,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195279,0.007819,-0.010002,0.249800,0,0);}
.m7a_c00132{transform:matrix(0.195326,0.007625,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195326,0.007625,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195326,0.007625,-0.009752,0.249810,0,0);}
.m18_c00132{transform:matrix(0.195398,0.007824,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195398,0.007824,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195398,0.007824,-0.010002,0.249800,0,0);}
.m68_c00132{transform:matrix(0.196565,0.007674,-0.009752,0.249810,0,0);-ms-transform:matrix(0.196565,0.007674,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.196565,0.007674,-0.009752,0.249810,0,0);}
.ma8_c00132{transform:matrix(0.196610,0.007675,-0.009752,0.249810,0,0);-ms-transform:matrix(0.196610,0.007675,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.196610,0.007675,-0.009752,0.249810,0,0);}
.maa_c00132{transform:matrix(0.196810,0.007683,-0.009752,0.249810,0,0);-ms-transform:matrix(0.196810,0.007683,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.196810,0.007683,-0.009752,0.249810,0,0);}
.mc8_c00132{transform:matrix(0.197412,0.014454,-0.018256,0.249333,0,0);-ms-transform:matrix(0.197412,0.014454,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.197412,0.014454,-0.018256,0.249333,0,0);}
.m64_c00132{transform:matrix(0.197440,0.007708,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197440,0.007708,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197440,0.007708,-0.009752,0.249810,0,0);}
.mbd_c00132{transform:matrix(0.197654,0.007716,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197654,0.007716,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197654,0.007716,-0.009752,0.249810,0,0);}
.m91_c00132{transform:matrix(0.197979,0.007729,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197979,0.007729,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197979,0.007729,-0.009752,0.249810,0,0);}
.m48_c00132{transform:matrix(0.197994,0.007730,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197994,0.007730,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197994,0.007730,-0.009752,0.249810,0,0);}
.m55_c00132{transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);-ms-transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.198309,0.007742,-0.009752,0.249810,0,0);}
.ma_c00132{transform:matrix(0.198841,0.007962,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198841,0.007962,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198841,0.007962,-0.010002,0.249800,0,0);}
.mb3_c00132{transform:matrix(0.198923,0.007766,-0.009752,0.249810,0,0);-ms-transform:matrix(0.198923,0.007766,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.198923,0.007766,-0.009752,0.249810,0,0);}
.mca_c00132{transform:matrix(0.199237,0.014588,-0.018256,0.249333,0,0);-ms-transform:matrix(0.199237,0.014588,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.199237,0.014588,-0.018256,0.249333,0,0);}
.m0_c00132{transform:matrix(0.200629,0.008033,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200629,0.008033,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200629,0.008033,-0.010002,0.249800,0,0);}
.m5c_c00132{transform:matrix(0.200682,0.007834,-0.009752,0.249810,0,0);-ms-transform:matrix(0.200682,0.007834,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.200682,0.007834,-0.009752,0.249810,0,0);}
.m1b_c00132{transform:matrix(0.202233,0.008097,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202233,0.008097,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202233,0.008097,-0.010002,0.249800,0,0);}
.md_c00132{transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);}
.m7d_c00132{transform:matrix(0.202835,0.007919,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202835,0.007919,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202835,0.007919,-0.009752,0.249810,0,0);}
.m24_c00132{transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);}
.m6_c00132{transform:matrix(0.203182,0.008135,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203182,0.008135,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203182,0.008135,-0.010002,0.249800,0,0);}
.m30_c00132{transform:matrix(0.203795,0.007956,-0.009752,0.249810,0,0);-ms-transform:matrix(0.203795,0.007956,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.203795,0.007956,-0.009752,0.249810,0,0);}
.m53_c00132{transform:matrix(0.203960,0.007962,-0.009752,0.249810,0,0);-ms-transform:matrix(0.203960,0.007962,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.203960,0.007962,-0.009752,0.249810,0,0);}
.m2c_c00132{transform:matrix(0.204020,0.007965,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204020,0.007965,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204020,0.007965,-0.009752,0.249810,0,0);}
.m6d_c00132{transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);}
.m71_c00132{transform:matrix(0.205249,0.008013,-0.009752,0.249810,0,0);-ms-transform:matrix(0.205249,0.008013,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.205249,0.008013,-0.009752,0.249810,0,0);}
.md5_c00132{transform:matrix(0.205270,0.011096,-0.013494,0.249636,0,0);-ms-transform:matrix(0.205270,0.011096,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.205270,0.011096,-0.013494,0.249636,0,0);}
.mc7_c00132{transform:matrix(0.205415,0.015040,-0.018256,0.249333,0,0);-ms-transform:matrix(0.205415,0.015040,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.205415,0.015040,-0.018256,0.249333,0,0);}
.m10_c00132{transform:matrix(0.205810,0.008241,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205810,0.008241,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205810,0.008241,-0.010002,0.249800,0,0);}
.mf_c00132{transform:matrix(0.206455,0.008266,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206455,0.008266,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206455,0.008266,-0.010002,0.249800,0,0);}
.m78_c00132{transform:matrix(0.206962,0.008080,-0.009752,0.249810,0,0);-ms-transform:matrix(0.206962,0.008080,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.206962,0.008080,-0.009752,0.249810,0,0);}
.m9f_c00132{transform:matrix(0.206972,0.008080,-0.009752,0.249810,0,0);-ms-transform:matrix(0.206972,0.008080,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.206972,0.008080,-0.009752,0.249810,0,0);}
.m72_c00132{transform:matrix(0.207642,0.008106,-0.009752,0.249810,0,0);-ms-transform:matrix(0.207642,0.008106,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.207642,0.008106,-0.009752,0.249810,0,0);}
.m1c_c00132{transform:matrix(0.208158,0.008335,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208158,0.008335,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208158,0.008335,-0.010002,0.249800,0,0);}
.m12_c00132{transform:matrix(0.208458,0.008347,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208458,0.008347,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208458,0.008347,-0.010002,0.249800,0,0);}
.mf0_c00132{transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.209041,0.008161,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209041,0.008161,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209041,0.008161,-0.009752,0.249810,0,0);}
.m70_c00132{transform:matrix(0.209216,0.008168,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209216,0.008168,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209216,0.008168,-0.009752,0.249810,0,0);}
.m79_c00132{transform:matrix(0.209505,0.008179,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209505,0.008179,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209505,0.008179,-0.009752,0.249810,0,0);}
.m14_c00132{transform:matrix(0.209792,0.008400,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209792,0.008400,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209792,0.008400,-0.010002,0.249800,0,0);}
.m67_c00132{transform:matrix(0.211094,0.008241,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211094,0.008241,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211094,0.008241,-0.009752,0.249810,0,0);}
.mdf_c00132{transform:matrix(0.211287,0.011421,-0.013494,0.249636,0,0);-ms-transform:matrix(0.211287,0.011421,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.211287,0.011421,-0.013494,0.249636,0,0);}
.md6_c00132{transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);-ms-transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.211561,0.011436,-0.013494,0.249636,0,0);}
.m5a_c00132{transform:matrix(0.211649,0.008263,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211649,0.008263,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211649,0.008263,-0.009752,0.249810,0,0);}
.m89_c00132{transform:matrix(0.211819,0.008269,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211819,0.008269,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211819,0.008269,-0.009752,0.249810,0,0);}
.mbf_c00132{transform:matrix(0.212653,0.008302,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212653,0.008302,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212653,0.008302,-0.009752,0.249810,0,0);}
.me0_c00132{transform:matrix(0.212685,0.011496,-0.013494,0.249636,0,0);-ms-transform:matrix(0.212685,0.011496,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.212685,0.011496,-0.013494,0.249636,0,0);}
.mcf_c00132{transform:matrix(0.212985,0.015595,-0.018256,0.249333,0,0);-ms-transform:matrix(0.212985,0.015595,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.212985,0.015595,-0.018256,0.249333,0,0);}
.m98_c00132{transform:matrix(0.213462,0.008333,-0.009752,0.249810,0,0);-ms-transform:matrix(0.213462,0.008333,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.213462,0.008333,-0.009752,0.249810,0,0);}
.m88_c00132{transform:matrix(0.213497,0.008335,-0.009752,0.249810,0,0);-ms-transform:matrix(0.213497,0.008335,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.213497,0.008335,-0.009752,0.249810,0,0);}
.m5b_c00132{transform:matrix(0.214042,0.008356,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214042,0.008356,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214042,0.008356,-0.009752,0.249810,0,0);}
.mcb_c00132{transform:matrix(0.214197,0.015683,-0.018256,0.249333,0,0);-ms-transform:matrix(0.214197,0.015683,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.214197,0.015683,-0.018256,0.249333,0,0);}
.mab_c00132{transform:matrix(0.214931,0.008391,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214931,0.008391,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214931,0.008391,-0.009752,0.249810,0,0);}
.m85_c00132{transform:matrix(0.215176,0.008400,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215176,0.008400,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215176,0.008400,-0.009752,0.249810,0,0);}
.mc3_c00132{transform:matrix(0.215356,0.008407,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215356,0.008407,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215356,0.008407,-0.009752,0.249810,0,0);}
.mcc_c00132{transform:matrix(0.215728,0.015795,-0.018256,0.249333,0,0);-ms-transform:matrix(0.215728,0.015795,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.215728,0.015795,-0.018256,0.249333,0,0);}
.m52_c00132{transform:matrix(0.215791,0.008424,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215791,0.008424,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215791,0.008424,-0.009752,0.249810,0,0);}
.m40_c00132{transform:matrix(0.216140,0.008438,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216140,0.008438,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216140,0.008438,-0.009752,0.249810,0,0);}
.m27_c00132{transform:matrix(0.216260,0.008443,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216260,0.008443,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216260,0.008443,-0.009752,0.249810,0,0);}
.m1a_c00132{transform:matrix(0.217511,0.008709,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217511,0.008709,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217511,0.008709,-0.010002,0.249800,0,0);}
.m82_c00132{transform:matrix(0.217734,0.008500,-0.009752,0.249810,0,0);-ms-transform:matrix(0.217734,0.008500,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.217734,0.008500,-0.009752,0.249810,0,0);}
.md7_c00132{transform:matrix(0.217797,0.011773,-0.013494,0.249636,0,0);-ms-transform:matrix(0.217797,0.011773,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.217797,0.011773,-0.013494,0.249636,0,0);}
.mef_c00132{transform:matrix(0.217817,0.011774,-0.013494,0.249636,0,0);-ms-transform:matrix(0.217817,0.011774,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.217817,0.011774,-0.013494,0.249636,0,0);}
.m4b_c00132{transform:matrix(0.218344,0.008524,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218344,0.008524,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218344,0.008524,-0.009752,0.249810,0,0);}
.m9a_c00132{transform:matrix(0.218623,0.008535,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218623,0.008535,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218623,0.008535,-0.009752,0.249810,0,0);}
.m9c_c00132{transform:matrix(0.218633,0.008535,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218633,0.008535,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218633,0.008535,-0.009752,0.249810,0,0);}
.m8a_c00132{transform:matrix(0.218658,0.008536,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218658,0.008536,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218658,0.008536,-0.009752,0.249810,0,0);}
.mdd_c00132{transform:matrix(0.221841,0.011991,-0.013494,0.249636,0,0);-ms-transform:matrix(0.221841,0.011991,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.221841,0.011991,-0.013494,0.249636,0,0);}
.m26_c00132{transform:matrix(0.222411,0.008683,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222411,0.008683,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222411,0.008683,-0.009752,0.249810,0,0);}
.m21_c00132{transform:matrix(0.222481,0.008685,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222481,0.008685,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222481,0.008685,-0.009752,0.249810,0,0);}
.md3_c00132{transform:matrix(0.223589,0.012086,-0.013494,0.249636,0,0);-ms-transform:matrix(0.223589,0.012086,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.223589,0.012086,-0.013494,0.249636,0,0);}
.mbc_c00132{transform:matrix(0.224209,0.008753,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224209,0.008753,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224209,0.008753,-0.009752,0.249810,0,0);}
.m57_c00132{transform:matrix(0.224649,0.008770,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224649,0.008770,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224649,0.008770,-0.009752,0.249810,0,0);}
.md1_c00132{transform:matrix(0.225217,0.016490,-0.018256,0.249333,0,0);-ms-transform:matrix(0.225217,0.016490,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.225217,0.016490,-0.018256,0.249333,0,0);}
.md8_c00132{transform:matrix(0.225810,0.012206,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225810,0.012206,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225810,0.012206,-0.013494,0.249636,0,0);}
.m6e_c00132{transform:matrix(0.226088,0.008826,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226088,0.008826,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226088,0.008826,-0.009752,0.249810,0,0);}
.m7b_c00132{transform:matrix(0.226163,0.008829,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226163,0.008829,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226163,0.008829,-0.009752,0.249810,0,0);}
.m16_c00132{transform:matrix(0.226793,0.009081,-0.010002,0.249800,0,0);-ms-transform:matrix(0.226793,0.009081,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.226793,0.009081,-0.010002,0.249800,0,0);}
.m1d_c00132{transform:matrix(0.226963,0.009088,-0.010002,0.249800,0,0);-ms-transform:matrix(0.226963,0.009088,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.226963,0.009088,-0.010002,0.249800,0,0);}
.me2_c00132{transform:matrix(0.227817,0.012314,-0.013494,0.249636,0,0);-ms-transform:matrix(0.227817,0.012314,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.227817,0.012314,-0.013494,0.249636,0,0);}
.mdb_c00132{transform:matrix(0.228631,0.012358,-0.013494,0.249636,0,0);-ms-transform:matrix(0.228631,0.012358,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.228631,0.012358,-0.013494,0.249636,0,0);}
.m23_c00132{transform:matrix(0.229945,0.008977,-0.009752,0.249810,0,0);-ms-transform:matrix(0.229945,0.008977,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.229945,0.008977,-0.009752,0.249810,0,0);}
.mc4_c00132{transform:matrix(0.235596,0.009197,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235596,0.009197,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235596,0.009197,-0.009752,0.249810,0,0);}
.m9_c00132{transform:matrix(0.236326,0.009462,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236326,0.009462,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236326,0.009462,-0.010002,0.249800,0,0);}
.m5d_c00132{transform:matrix(0.237269,0.009263,-0.009752,0.249810,0,0);-ms-transform:matrix(0.237269,0.009263,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.237269,0.009263,-0.009752,0.249810,0,0);}
.m76_c00132{transform:matrix(0.238903,0.009327,-0.009752,0.249810,0,0);-ms-transform:matrix(0.238903,0.009327,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.238903,0.009327,-0.009752,0.249810,0,0);}
.m56_c00132{transform:matrix(0.238918,0.009327,-0.009752,0.249810,0,0);-ms-transform:matrix(0.238918,0.009327,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.238918,0.009327,-0.009752,0.249810,0,0);}
.m73_c00132{transform:matrix(0.240397,0.009385,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240397,0.009385,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240397,0.009385,-0.009752,0.249810,0,0);}
.mde_c00132{transform:matrix(0.242231,0.013094,-0.013494,0.249636,0,0);-ms-transform:matrix(0.242231,0.013094,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.242231,0.013094,-0.013494,0.249636,0,0);}
.md9_c00132{transform:matrix(0.242661,0.013117,-0.013494,0.249636,0,0);-ms-transform:matrix(0.242661,0.013117,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.242661,0.013117,-0.013494,0.249636,0,0);}
.m77_c00132{transform:matrix(0.243295,0.009498,-0.009752,0.249810,0,0);-ms-transform:matrix(0.243295,0.009498,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.243295,0.009498,-0.009752,0.249810,0,0);}
.m9e_c00132{transform:matrix(0.251893,0.009834,-0.009752,0.249810,0,0);-ms-transform:matrix(0.251893,0.009834,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.251893,0.009834,-0.009752,0.249810,0,0);}
.me9_c00132{transform:matrix(0.255242,0.013797,-0.013494,0.249636,0,0);-ms-transform:matrix(0.255242,0.013797,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.255242,0.013797,-0.013494,0.249636,0,0);}
.me4_c00132{transform:matrix(0.257284,0.013907,-0.013494,0.249636,0,0);-ms-transform:matrix(0.257284,0.013907,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.257284,0.013907,-0.013494,0.249636,0,0);}
.m65_c00132{transform:matrix(0.260527,0.010171,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260527,0.010171,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260527,0.010171,-0.009752,0.249810,0,0);}
.mda_c00132{transform:matrix(0.274030,0.014812,-0.013494,0.249636,0,0);-ms-transform:matrix(0.274030,0.014812,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.274030,0.014812,-0.013494,0.249636,0,0);}
.med_c00132{transform:matrix(0.275653,0.014900,-0.013494,0.249636,0,0);-ms-transform:matrix(0.275653,0.014900,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.275653,0.014900,-0.013494,0.249636,0,0);}
.m8c_c00132{transform:matrix(0.278203,0.010861,-0.009752,0.249810,0,0);-ms-transform:matrix(0.278203,0.010861,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.278203,0.010861,-0.009752,0.249810,0,0);}
.m5_c00132{transform:matrix(0.285681,0.011439,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285681,0.011439,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285681,0.011439,-0.010002,0.249800,0,0);}
.m6b_c00132{transform:matrix(0.293002,0.011439,-0.009752,0.249810,0,0);-ms-transform:matrix(0.293002,0.011439,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.293002,0.011439,-0.009752,0.249810,0,0);}
.mbe_c00132{transform:matrix(0.296594,0.011579,-0.009752,0.249810,0,0);-ms-transform:matrix(0.296594,0.011579,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.296594,0.011579,-0.009752,0.249810,0,0);}
.me5_c00132{transform:matrix(0.299113,0.016168,-0.013494,0.249636,0,0);-ms-transform:matrix(0.299113,0.016168,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.299113,0.016168,-0.013494,0.249636,0,0);}
.m7_c00132{transform:matrix(0.303032,0.012133,-0.010002,0.249800,0,0);-ms-transform:matrix(0.303032,0.012133,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.303032,0.012133,-0.010002,0.249800,0,0);}
.mea_c00132{transform:matrix(0.303637,0.016413,-0.013494,0.249636,0,0);-ms-transform:matrix(0.303637,0.016413,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.303637,0.016413,-0.013494,0.249636,0,0);}
.meb_c00132{transform:matrix(0.308380,0.016669,-0.013494,0.249636,0,0);-ms-transform:matrix(0.308380,0.016669,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.308380,0.016669,-0.013494,0.249636,0,0);}
.me6_c00132{transform:matrix(0.314461,0.016998,-0.013494,0.249636,0,0);-ms-transform:matrix(0.314461,0.016998,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.314461,0.016998,-0.013494,0.249636,0,0);}
.mee_c00132{transform:matrix(0.318904,0.017238,-0.013494,0.249636,0,0);-ms-transform:matrix(0.318904,0.017238,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.318904,0.017238,-0.013494,0.249636,0,0);}
.me7_c00132{transform:matrix(0.320787,0.017340,-0.013494,0.249636,0,0);-ms-transform:matrix(0.320787,0.017340,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.320787,0.017340,-0.013494,0.249636,0,0);}
.me8_c00132{transform:matrix(0.330637,0.017872,-0.013494,0.249636,0,0);-ms-transform:matrix(0.330637,0.017872,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.330637,0.017872,-0.013494,0.249636,0,0);}
.mec_c00132{transform:matrix(0.333014,0.018001,-0.013494,0.249636,0,0);-ms-transform:matrix(0.333014,0.018001,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.333014,0.018001,-0.013494,0.249636,0,0);}
.me3_c00132{transform:matrix(0.402403,0.021751,-0.013494,0.249636,0,0);-ms-transform:matrix(0.402403,0.021751,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.402403,0.021751,-0.013494,0.249636,0,0);}
.mb2_c00132{transform:matrix(0.427080,0.016673,-0.009752,0.249810,0,0);-ms-transform:matrix(0.427080,0.016673,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.427080,0.016673,-0.009752,0.249810,0,0);}
.ma5_c00132{transform:matrix(0.432546,0.016886,-0.009752,0.249810,0,0);-ms-transform:matrix(0.432546,0.016886,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.432546,0.016886,-0.009752,0.249810,0,0);}
.m4_c00132{transform:matrix(0.496842,0.019894,-0.010002,0.249800,0,0);-ms-transform:matrix(0.496842,0.019894,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.496842,0.019894,-0.010002,0.249800,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:0.000000px;}
.fc0_c00132{color:transparent;}
.fs13_c00132{font-size:44.120215px;}
.fs14_c00132{font-size:50.423103px;}
.fs8_c00132{font-size:59.835694px;}
.fsa_c00132{font-size:60.885443px;}
.fs12_c00132{font-size:60.927916px;}
.fs10_c00132{font-size:61.929491px;}
.fs11_c00132{font-size:61.978398px;}
.fs9_c00132{font-size:62.984941px;}
.fs2_c00132{font-size:62.987430px;}
.fs3_c00132{font-size:64.034690px;}
.fs0_c00132{font-size:64.037221px;}
.fsf_c00132{font-size:65.078448px;}
.fs6_c00132{font-size:65.084439px;}
.fs7_c00132{font-size:66.134188px;}
.fsd_c00132{font-size:67.183937px;}
.fsb_c00132{font-size:68.233686px;}
.fs1_c00132{font-size:68.236383px;}
.fs4_c00132{font-size:69.283435px;}
.fsc_c00132{font-size:70.333184px;}
.fs5_c00132{font-size:71.382933px;}
.fse_c00132{font-size:72.432682px;}
.fs15_c00132{font-size:72.450000px;}
.y0_c00132{bottom:0.000000px;}
.yf7_c00132{bottom:3.780000px;}
.yf6_c00132{bottom:18.746979px;}
.yf5_c00132{bottom:20.024997px;}
.yf4_c00132{bottom:23.270221px;}
.yf3_c00132{bottom:23.813853px;}
.yf2_c00132{bottom:24.789255px;}
.yf1_c00132{bottom:27.078882px;}
.yf0_c00132{bottom:27.897306px;}
.yef_c00132{bottom:28.608729px;}
.yee_c00132{bottom:31.835283px;}
.yed_c00132{bottom:32.960211px;}
.yec_c00132{bottom:36.203289px;}
.yeb_c00132{bottom:36.968982px;}
.yea_c00132{bottom:38.708133px;}
.ye9_c00132{bottom:41.424711px;}
.ye8_c00132{bottom:43.576314px;}
.ye7_c00132{bottom:44.323579px;}
.ye6_c00132{bottom:47.089972px;}
.ye5_c00132{bottom:48.109033px;}
.ye4_c00132{bottom:50.427861px;}
.ye3_c00132{bottom:51.436837px;}
.ye2_c00132{bottom:53.924307px;}
.ye1_c00132{bottom:55.029916px;}
.ye0_c00132{bottom:56.184855px;}
.ydf_c00132{bottom:58.972875px;}
.yde_c00132{bottom:59.705115px;}
.ydd_c00132{bottom:62.624355px;}
.ydc_c00132{bottom:65.031675px;}
.ydb_c00132{bottom:66.093261px;}
.yda_c00132{bottom:69.524016px;}
.yd9_c00132{bottom:70.448307px;}
.yd8_c00132{bottom:74.008500px;}
.yd7_c00132{bottom:115.753272px;}
.yd6_c00132{bottom:119.187781px;}
.yd5_c00132{bottom:123.611943px;}
.yd2_c00132{bottom:126.489817px;}
.yd4_c00132{bottom:126.815592px;}
.yd1_c00132{bottom:127.486158px;}
.yd3_c00132{bottom:127.754255px;}
.yd0_c00132{bottom:131.353807px;}
.ycf_c00132{bottom:132.992584px;}
.yce_c00132{bottom:134.943984px;}
.ycd_c00132{bottom:136.449828px;}
.ycc_c00132{bottom:140.575897px;}
.ycb_c00132{bottom:142.600224px;}
.yca_c00132{bottom:146.674500px;}
.yc9_c00132{bottom:147.377266px;}
.yc8_c00132{bottom:148.423224px;}
.yc7_c00132{bottom:149.578513px;}
.yc6_c00132{bottom:150.803224px;}
.yc5_c00132{bottom:152.037237px;}
.yc4_c00132{bottom:154.378695px;}
.yc3_c00132{bottom:155.422780px;}
.yc2_c00132{bottom:158.333938px;}
.yc1_c00132{bottom:162.026031px;}
.yc0_c00132{bottom:163.546864px;}
.ybf_c00132{bottom:164.281260px;}
.ybe_c00132{bottom:166.803631px;}
.ybd_c00132{bottom:168.436753px;}
.ybc_c00132{bottom:170.530869px;}
.ybb_c00132{bottom:174.252490px;}
.yba_c00132{bottom:180.011361px;}
.yb9_c00132{bottom:181.662285px;}
.yb8_c00132{bottom:182.941527px;}
.yb7_c00132{bottom:185.371050px;}
.yb6_c00132{bottom:186.601692px;}
.yb5_c00132{bottom:190.818133px;}
.yb4_c00132{bottom:192.771097px;}
.yb2_c00132{bottom:196.289701px;}
.yb3_c00132{bottom:196.941630px;}
.yb1_c00132{bottom:199.684366px;}
.yb0_c00132{bottom:202.207552px;}
.yaf_c00132{bottom:203.274489px;}
.yae_c00132{bottom:204.513573px;}
.yad_c00132{bottom:207.543207px;}
.yac_c00132{bottom:209.042296px;}
.yab_c00132{bottom:210.599931px;}
.yaa_c00132{bottom:211.508634px;}
.ya9_c00132{bottom:214.496679px;}
.ya8_c00132{bottom:217.257672px;}
.ya7_c00132{bottom:218.215663px;}
.ya6_c00132{bottom:219.864117px;}
.ya5_c00132{bottom:221.744667px;}
.ya4_c00132{bottom:222.927582px;}
.ya3_c00132{bottom:224.138698px;}
.ya2_c00132{bottom:227.195188px;}
.ya1_c00132{bottom:229.872828px;}
.ya0_c00132{bottom:231.542557px;}
.y9f_c00132{bottom:234.716205px;}
.y9e_c00132{bottom:236.137804px;}
.y9d_c00132{bottom:237.355581px;}
.y9c_c00132{bottom:239.699532px;}
.y9b_c00132{bottom:241.702900px;}
.y9a_c00132{bottom:243.463444px;}
.y99_c00132{bottom:244.754346px;}
.y98_c00132{bottom:246.862470px;}
.y97_c00132{bottom:251.049886px;}
.y96_c00132{bottom:251.883484px;}
.y95_c00132{bottom:254.256776px;}
.y94_c00132{bottom:254.959594px;}
.y93_c00132{bottom:257.781648px;}
.y92_c00132{bottom:258.641715px;}
.y91_c00132{bottom:261.012841px;}
.y90_c00132{bottom:263.331169px;}
.y8f_c00132{bottom:264.964512px;}
.y8e_c00132{bottom:268.330377px;}
.y8d_c00132{bottom:270.597869px;}
.y8c_c00132{bottom:274.134180px;}
.y8b_c00132{bottom:275.578914px;}
.y8a_c00132{bottom:277.882541px;}
.y89_c00132{bottom:279.055042px;}
.y88_c00132{bottom:282.773797px;}
.y87_c00132{bottom:286.054131px;}
.y86_c00132{bottom:290.033697px;}
.y85_c00132{bottom:291.352975px;}
.y84_c00132{bottom:294.972906px;}
.y83_c00132{bottom:295.864833px;}
.y82_c00132{bottom:297.282814px;}
.y81_c00132{bottom:300.586125px;}
.y80_c00132{bottom:305.220949px;}
.y7f_c00132{bottom:306.454912px;}
.y7e_c00132{bottom:307.538148px;}
.y7d_c00132{bottom:310.440715px;}
.y7c_c00132{bottom:311.384667px;}
.y7b_c00132{bottom:312.605688px;}
.y7a_c00132{bottom:313.221657px;}
.y79_c00132{bottom:318.130653px;}
.y78_c00132{bottom:321.872344px;}
.y77_c00132{bottom:324.575967px;}
.y76_c00132{bottom:326.792433px;}
.y75_c00132{bottom:328.371834px;}
.y74_c00132{bottom:329.630871px;}
.y73_c00132{bottom:331.940392px;}
.y72_c00132{bottom:333.279696px;}
.y71_c00132{bottom:334.315051px;}
.y70_c00132{bottom:340.544203px;}
.y6f_c00132{bottom:341.107648px;}
.y6e_c00132{bottom:342.167092px;}
.y6d_c00132{bottom:343.856374px;}
.y6c_c00132{bottom:344.586463px;}
.y6b_c00132{bottom:346.493433px;}
.y6a_c00132{bottom:348.001693px;}
.y69_c00132{bottom:349.432950px;}
.y68_c00132{bottom:355.989774px;}
.y67_c00132{bottom:358.110997px;}
.y66_c00132{bottom:361.442415px;}
.y65_c00132{bottom:362.610817px;}
.y64_c00132{bottom:364.674688px;}
.y63_c00132{bottom:366.712585px;}
.y62_c00132{bottom:373.064506px;}
.y61_c00132{bottom:374.022682px;}
.y60_c00132{bottom:374.877088px;}
.y5f_c00132{bottom:376.932499px;}
.y5e_c00132{bottom:377.853316px;}
.y5d_c00132{bottom:380.821611px;}
.y5c_c00132{bottom:382.828512px;}
.y5b_c00132{bottom:383.793766px;}
.y5a_c00132{bottom:384.251660px;}
.y59_c00132{bottom:391.391382px;}
.y58_c00132{bottom:391.897609px;}
.y57_c00132{bottom:392.903044px;}
.y56_c00132{bottom:393.875054px;}
.y55_c00132{bottom:396.584134px;}
.y54_c00132{bottom:399.096997px;}
.y53_c00132{bottom:400.176984px;}
.y52_c00132{bottom:407.674160px;}
.y51_c00132{bottom:409.919074px;}
.y50_c00132{bottom:410.881044px;}
.y4f_c00132{bottom:412.402557px;}
.y4e_c00132{bottom:413.808267px;}
.y4d_c00132{bottom:414.375335px;}
.y4c_c00132{bottom:416.320954px;}
.y4b_c00132{bottom:417.427932px;}
.y4a_c00132{bottom:419.886070px;}
.y49_c00132{bottom:424.802374px;}
.y48_c00132{bottom:426.899752px;}
.y47_c00132{bottom:427.815138px;}
.y46_c00132{bottom:429.169931px;}
.y45_c00132{bottom:430.359024px;}
.y44_c00132{bottom:432.600726px;}
.y43_c00132{bottom:433.326207px;}
.y42_c00132{bottom:433.821688px;}
.y41_c00132{bottom:434.729973px;}
.y40_c00132{bottom:441.623644px;}
.y3f_c00132{bottom:443.020458px;}
.y3e_c00132{bottom:444.274108px;}
.y3d_c00132{bottom:446.788137px;}
.y3c_c00132{bottom:447.962835px;}
.y3b_c00132{bottom:448.899645px;}
.y3a_c00132{bottom:451.339401px;}
.y39_c00132{bottom:453.363380px;}
.y38_c00132{bottom:460.508727px;}
.y37_c00132{bottom:461.516142px;}
.y36_c00132{bottom:464.831742px;}
.y35_c00132{bottom:467.263056px;}
.y34_c00132{bottom:468.454656px;}
.y33_c00132{bottom:470.348791px;}
.y32_c00132{bottom:472.256886px;}
.y31_c00132{bottom:479.109333px;}
.y30_c00132{bottom:479.784211px;}
.y2f_c00132{bottom:481.754271px;}
.y2e_c00132{bottom:482.849868px;}
.y2d_c00132{bottom:485.384929px;}
.y2c_c00132{bottom:486.438317px;}
.y2b_c00132{bottom:486.824453px;}
.y2a_c00132{bottom:494.723640px;}
.y29_c00132{bottom:496.245400px;}
.y28_c00132{bottom:497.195265px;}
.y27_c00132{bottom:498.731885px;}
.y26_c00132{bottom:499.533218px;}
.y25_c00132{bottom:500.081187px;}
.y24_c00132{bottom:500.777278px;}
.y23_c00132{bottom:504.130089px;}
.y22_c00132{bottom:504.912000px;}
.y21_c00132{bottom:512.335582px;}
.y20_c00132{bottom:513.185084px;}
.y1f_c00132{bottom:513.672296px;}
.y1e_c00132{bottom:517.336110px;}
.y1d_c00132{bottom:518.105690px;}
.y1c_c00132{bottom:520.149402px;}
.y1b_c00132{bottom:521.142428px;}
.y1a_c00132{bottom:523.025096px;}
.y19_c00132{bottom:529.877575px;}
.y18_c00132{bottom:532.663804px;}
.y17_c00132{bottom:533.677017px;}
.y16_c00132{bottom:534.291065px;}
.y15_c00132{bottom:536.142930px;}
.y14_c00132{bottom:537.579609px;}
.y13_c00132{bottom:538.642988px;}
.y12_c00132{bottom:540.027760px;}
.y11_c00132{bottom:547.727042px;}
.y10_c00132{bottom:548.923453px;}
.yf_c00132{bottom:549.653554px;}
.ye_c00132{bottom:552.646686px;}
.yd_c00132{bottom:554.076765px;}
.yc_c00132{bottom:556.557439px;}
.yb_c00132{bottom:557.579112px;}
.ya_c00132{bottom:565.348361px;}
.y9_c00132{bottom:566.775320px;}
.y8_c00132{bottom:567.391409px;}
.y7_c00132{bottom:568.742939px;}
.y6_c00132{bottom:569.644539px;}
.y5_c00132{bottom:572.098212px;}
.y4_c00132{bottom:573.341310px;}
.y3_c00132{bottom:573.937236px;}
.y2_c00132{bottom:575.124408px;}
.y1_c00132{bottom:587.268000px;}
.h15_c00132{height:44.120215px;}
.h16_c00132{height:50.423103px;}
.ha_c00132{height:59.835694px;}
.hc_c00132{height:60.885443px;}
.h14_c00132{height:60.927916px;}
.h12_c00132{height:61.929491px;}
.h13_c00132{height:61.978398px;}
.hb_c00132{height:62.984941px;}
.h4_c00132{height:62.987430px;}
.h5_c00132{height:64.034690px;}
.h2_c00132{height:64.037221px;}
.h11_c00132{height:65.078448px;}
.h8_c00132{height:65.084439px;}
.h9_c00132{height:66.134188px;}
.hf_c00132{height:67.183937px;}
.hd_c00132{height:68.233686px;}
.h3_c00132{height:68.236383px;}
.h6_c00132{height:69.283435px;}
.he_c00132{height:70.333184px;}
.h7_c00132{height:71.382933px;}
.h10_c00132{height:72.432682px;}
.h17_c00132{height:72.450000px;}
.h0_c00132{height:634.200000px;}
.h1_c00132{height:634.500000px;}
.w0_c00132{width:371.790000px;}
.w1_c00132{width:372.000000px;}
.x0_c00132{left:0.000000px;}
.x77_c00132{left:20.448000px;}
.x7f_c00132{left:22.849239px;}
.x5d_c00132{left:24.676941px;}
.x4f_c00132{left:26.654939px;}
.x54_c00132{left:29.459910px;}
.x3a_c00132{left:32.823025px;}
.x18_c00132{left:34.424944px;}
.x4c_c00132{left:36.752592px;}
.x2_c00132{left:37.911345px;}
.x41_c00132{left:41.762172px;}
.x26_c00132{left:43.960687px;}
.x1f_c00132{left:45.034500px;}
.x50_c00132{left:50.715606px;}
.x46_c00132{left:52.120331px;}
.x27_c00132{left:55.312549px;}
.x34_c00132{left:59.903917px;}
.xb_c00132{left:66.007762px;}
.x80_c00132{left:67.116063px;}
.x3_c00132{left:70.859649px;}
.x35_c00132{left:73.672275px;}
.x11_c00132{left:75.895843px;}
.x2b_c00132{left:77.599897px;}
.x6b_c00132{left:81.534625px;}
.x19_c00132{left:82.644099px;}
.x2f_c00132{left:85.146618px;}
.x28_c00132{left:86.255108px;}
.x4_c00132{left:87.392242px;}
.x3b_c00132{left:88.638762px;}
.x75_c00132{left:91.863359px;}
.x36_c00132{left:93.793476px;}
.x57_c00132{left:95.439913px;}
.x63_c00132{left:97.125334px;}
.x5a_c00132{left:98.957527px;}
.x5e_c00132{left:100.604905px;}
.x78_c00132{left:103.739873px;}
.x12_c00132{left:105.415039px;}
.x1a_c00132{left:108.082156px;}
.x6c_c00132{left:109.285626px;}
.x3c_c00132{left:113.765191px;}
.x72_c00132{left:115.475187px;}
.x2c_c00132{left:119.660457px;}
.x4d_c00132{left:120.660717px;}
.x5_c00132{left:121.887239px;}
.x47_c00132{left:124.562694px;}
.x55_c00132{left:127.565103px;}
.x6f_c00132{left:129.169421px;}
.x64_c00132{left:130.304968px;}
.x68_c00132{left:133.509310px;}
.xc_c00132{left:134.822370px;}
.x42_c00132{left:136.216313px;}
.x4b_c00132{left:139.716548px;}
.x58_c00132{left:141.576879px;}
.x13_c00132{left:145.269511px;}
.x7a_c00132{left:148.348369px;}
.x20_c00132{left:150.946981px;}
.x37_c00132{left:155.982486px;}
.x3d_c00132{left:157.951852px;}
.x1b_c00132{left:160.435852px;}
.x5f_c00132{left:162.690753px;}
.x51_c00132{left:164.745660px;}
.x73_c00132{left:166.502626px;}
.x21_c00132{left:168.777633px;}
.x3e_c00132{left:170.824449px;}
.xd_c00132{left:174.512007px;}
.x69_c00132{left:177.803031px;}
.x1_c00132{left:179.647500px;}
.x79_c00132{left:180.657924px;}
.x22_c00132{left:182.814083px;}
.x7c_c00132{left:184.248422px;}
.x38_c00132{left:188.978821px;}
.x6_c00132{left:189.989998px;}
.x5b_c00132{left:191.753985px;}
.x29_c00132{left:192.903141px;}
.x7b_c00132{left:194.618736px;}
.x14_c00132{left:196.655302px;}
.x30_c00132{left:198.768873px;}
.x2d_c00132{left:200.084097px;}
.x52_c00132{left:201.435195px;}
.x23_c00132{left:203.340536px;}
.x74_c00132{left:206.298188px;}
.x43_c00132{left:207.417293px;}
.x65_c00132{left:212.292660px;}
.x15_c00132{left:213.677965px;}
.x7_c00132{left:215.018968px;}
.x60_c00132{left:216.910456px;}
.x48_c00132{left:219.339944px;}
.x76_c00132{left:224.574632px;}
.x39_c00132{left:226.565589px;}
.x61_c00132{left:230.415586px;}
.x44_c00132{left:232.969211px;}
.x66_c00132{left:235.259638px;}
.x3f_c00132{left:237.310455px;}
.x59_c00132{left:240.302217px;}
.x16_c00132{left:241.794325px;}
.x6a_c00132{left:243.096433px;}
.x4e_c00132{left:244.129391px;}
.x7d_c00132{left:248.423182px;}
.x2a_c00132{left:250.786501px;}
.x8_c00132{left:252.521934px;}
.x6d_c00132{left:254.734945px;}
.xe_c00132{left:257.549659px;}
.x40_c00132{left:259.145323px;}
.x70_c00132{left:260.350095px;}
.x31_c00132{left:261.552068px;}
.x56_c00132{left:262.800700px;}
.x24_c00132{left:267.032780px;}
.x9_c00132{left:269.633069px;}
.x45_c00132{left:272.728992px;}
.x1c_c00132{left:274.008730px;}
.x62_c00132{left:276.023302px;}
.xf_c00132{left:277.808124px;}
.x71_c00132{left:281.662311px;}
.x1d_c00132{left:286.476730px;}
.x49_c00132{left:290.223926px;}
.x32_c00132{left:292.857501px;}
.x2e_c00132{left:296.096061px;}
.x5c_c00132{left:301.170171px;}
.x7e_c00132{left:302.429123px;}
.x25_c00132{left:306.013260px;}
.x1e_c00132{left:308.217808px;}
.xa_c00132{left:309.244783px;}
.x10_c00132{left:310.987197px;}
.x4a_c00132{left:313.576234px;}
.x53_c00132{left:315.778436px;}
.x6e_c00132{left:317.548294px;}
.x17_c00132{left:319.102312px;}
.x67_c00132{left:321.906589px;}
.x33_c00132{left:327.753223px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
.fs13_c00132{font-size:39.217969pt;}
.fs14_c00132{font-size:44.820536pt;}
.fs8_c00132{font-size:53.187284pt;}
.fsa_c00132{font-size:54.120394pt;}
.fs12_c00132{font-size:54.158148pt;}
.fs10_c00132{font-size:55.048437pt;}
.fs11_c00132{font-size:55.091909pt;}
.fs9_c00132{font-size:55.986614pt;}
.fs2_c00132{font-size:55.988827pt;}
.fs3_c00132{font-size:56.919725pt;}
.fs0_c00132{font-size:56.921974pt;}
.fsf_c00132{font-size:57.847510pt;}
.fs6_c00132{font-size:57.852835pt;}
.fs7_c00132{font-size:58.785945pt;}
.fsd_c00132{font-size:59.719055pt;}
.fsb_c00132{font-size:60.652166pt;}
.fs1_c00132{font-size:60.654562pt;}
.fs4_c00132{font-size:61.585276pt;}
.fsc_c00132{font-size:62.518386pt;}
.fs5_c00132{font-size:63.451496pt;}
.fse_c00132{font-size:64.384607pt;}
.fs15_c00132{font-size:64.400000pt;}
.y0_c00132{bottom:0.000000pt;}
.yf7_c00132{bottom:3.360000pt;}
.yf6_c00132{bottom:16.663981pt;}
.yf5_c00132{bottom:17.799997pt;}
.yf4_c00132{bottom:20.684641pt;}
.yf3_c00132{bottom:21.167869pt;}
.yf2_c00132{bottom:22.034893pt;}
.yf1_c00132{bottom:24.070117pt;}
.yf0_c00132{bottom:24.797605pt;}
.yef_c00132{bottom:25.429981pt;}
.yee_c00132{bottom:28.298029pt;}
.yed_c00132{bottom:29.297965pt;}
.yec_c00132{bottom:32.180701pt;}
.yeb_c00132{bottom:32.861317pt;}
.yea_c00132{bottom:34.407229pt;}
.ye9_c00132{bottom:36.821965pt;}
.ye8_c00132{bottom:38.734501pt;}
.ye7_c00132{bottom:39.398737pt;}
.ye6_c00132{bottom:41.857753pt;}
.ye5_c00132{bottom:42.763585pt;}
.ye4_c00132{bottom:44.824765pt;}
.ye3_c00132{bottom:45.721633pt;}
.ye2_c00132{bottom:47.932717pt;}
.ye1_c00132{bottom:48.915481pt;}
.ye0_c00132{bottom:49.942093pt;}
.ydf_c00132{bottom:52.420333pt;}
.yde_c00132{bottom:53.071213pt;}
.ydd_c00132{bottom:55.666093pt;}
.ydc_c00132{bottom:57.805933pt;}
.ydb_c00132{bottom:58.749565pt;}
.yda_c00132{bottom:61.799125pt;}
.yd9_c00132{bottom:62.620717pt;}
.yd8_c00132{bottom:65.785333pt;}
.yd7_c00132{bottom:102.891797pt;}
.yd6_c00132{bottom:105.944695pt;}
.yd5_c00132{bottom:109.877283pt;}
.yd2_c00132{bottom:112.435393pt;}
.yd4_c00132{bottom:112.724971pt;}
.yd1_c00132{bottom:113.321029pt;}
.yd3_c00132{bottom:113.559337pt;}
.yd0_c00132{bottom:116.758940pt;}
.ycf_c00132{bottom:118.215631pt;}
.yce_c00132{bottom:119.950208pt;}
.ycd_c00132{bottom:121.288736pt;}
.ycc_c00132{bottom:124.956353pt;}
.ycb_c00132{bottom:126.755755pt;}
.yca_c00132{bottom:130.377333pt;}
.yc9_c00132{bottom:131.002015pt;}
.yc8_c00132{bottom:131.931755pt;}
.yc7_c00132{bottom:132.958679pt;}
.yc6_c00132{bottom:134.047311pt;}
.yc5_c00132{bottom:135.144211pt;}
.yc4_c00132{bottom:137.225507pt;}
.yc3_c00132{bottom:138.153583pt;}
.yc2_c00132{bottom:140.741279pt;}
.yc1_c00132{bottom:144.023139pt;}
.yc0_c00132{bottom:145.374991pt;}
.ybf_c00132{bottom:146.027787pt;}
.ybe_c00132{bottom:148.269895pt;}
.ybd_c00132{bottom:149.721559pt;}
.ybc_c00132{bottom:151.582995pt;}
.ybb_c00132{bottom:154.891103pt;}
.yba_c00132{bottom:160.010099pt;}
.yb9_c00132{bottom:161.477587pt;}
.yb8_c00132{bottom:162.614691pt;}
.yb7_c00132{bottom:164.774267pt;}
.yb6_c00132{bottom:165.868171pt;}
.yb5_c00132{bottom:169.616119pt;}
.yb4_c00132{bottom:171.352087pt;}
.yb2_c00132{bottom:174.479735pt;}
.yb3_c00132{bottom:175.059227pt;}
.yb1_c00132{bottom:177.497215pt;}
.yb0_c00132{bottom:179.740047pt;}
.yaf_c00132{bottom:180.688435pt;}
.yae_c00132{bottom:181.789843pt;}
.yad_c00132{bottom:184.482851pt;}
.yac_c00132{bottom:185.815375pt;}
.yab_c00132{bottom:187.199939pt;}
.yaa_c00132{bottom:188.007675pt;}
.ya9_c00132{bottom:190.663715pt;}
.ya8_c00132{bottom:193.117931pt;}
.ya7_c00132{bottom:193.969479pt;}
.ya6_c00132{bottom:195.434771pt;}
.ya5_c00132{bottom:197.106371pt;}
.ya4_c00132{bottom:198.157851pt;}
.ya3_c00132{bottom:199.234399pt;}
.ya2_c00132{bottom:201.951279pt;}
.ya1_c00132{bottom:204.331403pt;}
.ya0_c00132{bottom:205.815607pt;}
.y9f_c00132{bottom:208.636627pt;}
.y9e_c00132{bottom:209.900271pt;}
.y9d_c00132{bottom:210.982739pt;}
.y9c_c00132{bottom:213.066251pt;}
.y9b_c00132{bottom:214.847023pt;}
.y9a_c00132{bottom:216.411951pt;}
.y99_c00132{bottom:217.559419pt;}
.y98_c00132{bottom:219.433307pt;}
.y97_c00132{bottom:223.155455pt;}
.y96_c00132{bottom:223.896431pt;}
.y95_c00132{bottom:226.006023pt;}
.y94_c00132{bottom:226.630751pt;}
.y93_c00132{bottom:229.139243pt;}
.y92_c00132{bottom:229.903747pt;}
.y91_c00132{bottom:232.011415pt;}
.y90_c00132{bottom:234.072151pt;}
.y8f_c00132{bottom:235.524011pt;}
.y8e_c00132{bottom:238.515891pt;}
.y8d_c00132{bottom:240.531439pt;}
.y8c_c00132{bottom:243.674827pt;}
.y8b_c00132{bottom:244.959035pt;}
.y8a_c00132{bottom:247.006703pt;}
.y89_c00132{bottom:248.048927pt;}
.y88_c00132{bottom:251.354487pt;}
.y87_c00132{bottom:254.270339pt;}
.y86_c00132{bottom:257.807731pt;}
.y85_c00132{bottom:258.980423pt;}
.y84_c00132{bottom:262.198139pt;}
.y83_c00132{bottom:262.990963pt;}
.y82_c00132{bottom:264.251391pt;}
.y81_c00132{bottom:267.187667pt;}
.y80_c00132{bottom:271.307511pt;}
.y7f_c00132{bottom:272.404367pt;}
.y7e_c00132{bottom:273.367243pt;}
.y7d_c00132{bottom:275.947303pt;}
.y7c_c00132{bottom:276.786371pt;}
.y7b_c00132{bottom:277.871723pt;}
.y7a_c00132{bottom:278.419251pt;}
.y79_c00132{bottom:282.782803pt;}
.y78_c00132{bottom:286.108751pt;}
.y77_c00132{bottom:288.511971pt;}
.y76_c00132{bottom:290.482163pt;}
.y75_c00132{bottom:291.886075pt;}
.y74_c00132{bottom:293.005219pt;}
.y73_c00132{bottom:295.058127pt;}
.y72_c00132{bottom:296.248619pt;}
.y71_c00132{bottom:297.168935pt;}
.y70_c00132{bottom:302.705959pt;}
.y6f_c00132{bottom:303.206799pt;}
.y6e_c00132{bottom:304.148527pt;}
.y6d_c00132{bottom:305.650111pt;}
.y6c_c00132{bottom:306.299079pt;}
.y6b_c00132{bottom:307.994163pt;}
.y6a_c00132{bottom:309.334839pt;}
.y69_c00132{bottom:310.607067pt;}
.y68_c00132{bottom:316.435355pt;}
.y67_c00132{bottom:318.320887pt;}
.y66_c00132{bottom:321.282147pt;}
.y65_c00132{bottom:322.320727pt;}
.y64_c00132{bottom:324.155279pt;}
.y63_c00132{bottom:325.966743pt;}
.y62_c00132{bottom:331.612895pt;}
.y61_c00132{bottom:332.464607pt;}
.y60_c00132{bottom:333.224079pt;}
.y5f_c00132{bottom:335.051111pt;}
.y5e_c00132{bottom:335.869615pt;}
.y5d_c00132{bottom:338.508099pt;}
.y5c_c00132{bottom:340.292011pt;}
.y5b_c00132{bottom:341.150015pt;}
.y5a_c00132{bottom:341.557031pt;}
.y59_c00132{bottom:347.903451pt;}
.y58_c00132{bottom:348.353431pt;}
.y57_c00132{bottom:349.247151pt;}
.y56_c00132{bottom:350.111159pt;}
.y55_c00132{bottom:352.519231pt;}
.y54_c00132{bottom:354.752887pt;}
.y53_c00132{bottom:355.712875pt;}
.y52_c00132{bottom:362.377031pt;}
.y51_c00132{bottom:364.372511pt;}
.y50_c00132{bottom:365.227595pt;}
.y4f_c00132{bottom:366.580051pt;}
.y4e_c00132{bottom:367.829571pt;}
.y4d_c00132{bottom:368.333631pt;}
.y4c_c00132{bottom:370.063071pt;}
.y4b_c00132{bottom:371.047051pt;}
.y4a_c00132{bottom:373.232063pt;}
.y49_c00132{bottom:377.602111pt;}
.y48_c00132{bottom:379.466447pt;}
.y47_c00132{bottom:380.280123pt;}
.y46_c00132{bottom:381.484383pt;}
.y45_c00132{bottom:382.541355pt;}
.y44_c00132{bottom:384.533979pt;}
.y43_c00132{bottom:385.178851pt;}
.y42_c00132{bottom:385.619279pt;}
.y41_c00132{bottom:386.426643pt;}
.y40_c00132{bottom:392.554351pt;}
.y3f_c00132{bottom:393.795963pt;}
.y3e_c00132{bottom:394.910319pt;}
.y3d_c00132{bottom:397.145011pt;}
.y3c_c00132{bottom:398.189187pt;}
.y3b_c00132{bottom:399.021907pt;}
.y3a_c00132{bottom:401.190579pt;}
.y39_c00132{bottom:402.989671pt;}
.y38_c00132{bottom:409.341091pt;}
.y37_c00132{bottom:410.236571pt;}
.y36_c00132{bottom:413.183771pt;}
.y35_c00132{bottom:415.344939pt;}
.y34_c00132{bottom:416.404139pt;}
.y33_c00132{bottom:418.087815pt;}
.y32_c00132{bottom:419.783899pt;}
.y31_c00132{bottom:425.874963pt;}
.y30_c00132{bottom:426.474855pt;}
.y2f_c00132{bottom:428.226019pt;}
.y2e_c00132{bottom:429.199883pt;}
.y2d_c00132{bottom:431.453271pt;}
.y2c_c00132{bottom:432.389615pt;}
.y2b_c00132{bottom:432.732847pt;}
.y2a_c00132{bottom:439.754347pt;}
.y29_c00132{bottom:441.107023pt;}
.y28_c00132{bottom:441.951347pt;}
.y27_c00132{bottom:443.317231pt;}
.y26_c00132{bottom:444.029527pt;}
.y25_c00132{bottom:444.516611pt;}
.y24_c00132{bottom:445.135359pt;}
.y23_c00132{bottom:448.115635pt;}
.y22_c00132{bottom:448.810667pt;}
.y21_c00132{bottom:455.409407pt;}
.y20_c00132{bottom:456.164519pt;}
.y1f_c00132{bottom:456.597596pt;}
.y1e_c00132{bottom:459.854320pt;}
.y1d_c00132{bottom:460.538391pt;}
.y1c_c00132{bottom:462.355024pt;}
.y1b_c00132{bottom:463.237713pt;}
.y1a_c00132{bottom:464.911196pt;}
.y19_c00132{bottom:471.002289pt;}
.y18_c00132{bottom:473.478937pt;}
.y17_c00132{bottom:474.379571pt;}
.y16_c00132{bottom:474.925391pt;}
.y15_c00132{bottom:476.571493pt;}
.y14_c00132{bottom:477.848541pt;}
.y13_c00132{bottom:478.793767pt;}
.y12_c00132{bottom:480.024676pt;}
.y11_c00132{bottom:486.868481pt;}
.y10_c00132{bottom:487.931959pt;}
.yf_c00132{bottom:488.580937pt;}
.ye_c00132{bottom:491.241499pt;}
.yd_c00132{bottom:492.512680pt;}
.yc_c00132{bottom:494.717724pt;}
.yb_c00132{bottom:495.625877pt;}
.ya_c00132{bottom:502.531876pt;}
.y9_c00132{bottom:503.800284pt;}
.y8_c00132{bottom:504.347919pt;}
.y7_c00132{bottom:505.549279pt;}
.y6_c00132{bottom:506.350701pt;}
.y5_c00132{bottom:508.531744pt;}
.y4_c00132{bottom:509.636720pt;}
.y3_c00132{bottom:510.166432pt;}
.y2_c00132{bottom:511.221696pt;}
.y1_c00132{bottom:522.016000pt;}
.h15_c00132{height:39.217969pt;}
.h16_c00132{height:44.820536pt;}
.ha_c00132{height:53.187284pt;}
.hc_c00132{height:54.120394pt;}
.h14_c00132{height:54.158148pt;}
.h12_c00132{height:55.048437pt;}
.h13_c00132{height:55.091909pt;}
.hb_c00132{height:55.986614pt;}
.h4_c00132{height:55.988827pt;}
.h5_c00132{height:56.919725pt;}
.h2_c00132{height:56.921974pt;}
.h11_c00132{height:57.847510pt;}
.h8_c00132{height:57.852835pt;}
.h9_c00132{height:58.785945pt;}
.hf_c00132{height:59.719055pt;}
.hd_c00132{height:60.652166pt;}
.h3_c00132{height:60.654562pt;}
.h6_c00132{height:61.585276pt;}
.he_c00132{height:62.518386pt;}
.h7_c00132{height:63.451496pt;}
.h10_c00132{height:64.384607pt;}
.h17_c00132{height:64.400000pt;}
.h0_c00132{height:563.733333pt;}
.h1_c00132{height:564.000000pt;}
.w0_c00132{width:330.480000pt;}
.w1_c00132{width:330.666667pt;}
.x0_c00132{left:0.000000pt;}
.x77_c00132{left:18.176000pt;}
.x7f_c00132{left:20.310435pt;}
.x5d_c00132{left:21.935059pt;}
.x4f_c00132{left:23.693279pt;}
.x54_c00132{left:26.186587pt;}
.x3a_c00132{left:29.176023pt;}
.x18_c00132{left:30.599951pt;}
.x4c_c00132{left:32.668971pt;}
.x2_c00132{left:33.698973pt;}
.x41_c00132{left:37.121931pt;}
.x26_c00132{left:39.076167pt;}
.x1f_c00132{left:40.030667pt;}
.x50_c00132{left:45.080539pt;}
.x46_c00132{left:46.329183pt;}
.x27_c00132{left:49.166711pt;}
.x34_c00132{left:53.247927pt;}
.xb_c00132{left:58.673567pt;}
.x80_c00132{left:59.658723pt;}
.x3_c00132{left:62.986355pt;}
.x35_c00132{left:65.486467pt;}
.x11_c00132{left:67.462972pt;}
.x2b_c00132{left:68.977687pt;}
.x6b_c00132{left:72.475223pt;}
.x19_c00132{left:73.461421pt;}
.x2f_c00132{left:75.685883pt;}
.x28_c00132{left:76.671207pt;}
.x4_c00132{left:77.681993pt;}
.x3b_c00132{left:78.790011pt;}
.x75_c00132{left:81.656319pt;}
.x36_c00132{left:83.371979pt;}
.x57_c00132{left:84.835479pt;}
.x63_c00132{left:86.333631pt;}
.x5a_c00132{left:87.962247pt;}
.x5e_c00132{left:89.426583pt;}
.x78_c00132{left:92.213220pt;}
.x12_c00132{left:93.702257pt;}
.x1a_c00132{left:96.073028pt;}
.x6c_c00132{left:97.142779pt;}
.x3c_c00132{left:101.124615pt;}
.x72_c00132{left:102.644611pt;}
.x2c_c00132{left:106.364851pt;}
.x4d_c00132{left:107.253971pt;}
.x5_c00132{left:108.344212pt;}
.x47_c00132{left:110.722395pt;}
.x55_c00132{left:113.391203pt;}
.x6f_c00132{left:114.817263pt;}
.x64_c00132{left:115.826639pt;}
.x68_c00132{left:118.674943pt;}
.xc_c00132{left:119.842107pt;}
.x42_c00132{left:121.081167pt;}
.x4b_c00132{left:124.192487pt;}
.x58_c00132{left:125.846115pt;}
.x13_c00132{left:129.128455pt;}
.x7a_c00132{left:131.865217pt;}
.x20_c00132{left:134.175095pt;}
.x37_c00132{left:138.651099pt;}
.x3d_c00132{left:140.401647pt;}
.x1b_c00132{left:142.609647pt;}
.x5f_c00132{left:144.614003pt;}
.x51_c00132{left:146.440587pt;}
.x73_c00132{left:148.002335pt;}
.x21_c00132{left:150.024563pt;}
.x3e_c00132{left:151.843955pt;}
.xd_c00132{left:155.121784pt;}
.x69_c00132{left:158.047139pt;}
.x1_c00132{left:159.686667pt;}
.x79_c00132{left:160.584821pt;}
.x22_c00132{left:162.501407pt;}
.x7c_c00132{left:163.776375pt;}
.x38_c00132{left:167.981175pt;}
.x6_c00132{left:168.879999pt;}
.x5b_c00132{left:170.447987pt;}
.x29_c00132{left:171.469459pt;}
.x7b_c00132{left:172.994432pt;}
.x14_c00132{left:174.804713pt;}
.x30_c00132{left:176.683443pt;}
.x2d_c00132{left:177.852531pt;}
.x52_c00132{left:179.053507pt;}
.x23_c00132{left:180.747143pt;}
.x74_c00132{left:183.376167pt;}
.x43_c00132{left:184.370927pt;}
.x65_c00132{left:188.704587pt;}
.x15_c00132{left:189.935969pt;}
.x7_c00132{left:191.127972pt;}
.x60_c00132{left:192.809295pt;}
.x48_c00132{left:194.968839pt;}
.x76_c00132{left:199.621895pt;}
.x39_c00132{left:201.391635pt;}
.x61_c00132{left:204.813855pt;}
.x44_c00132{left:207.083743pt;}
.x66_c00132{left:209.119679pt;}
.x3f_c00132{left:210.942627pt;}
.x59_c00132{left:213.601971pt;}
.x16_c00132{left:214.928289pt;}
.x6a_c00132{left:216.085719pt;}
.x4e_c00132{left:217.003903pt;}
.x7d_c00132{left:220.820607pt;}
.x2a_c00132{left:222.921335pt;}
.x8_c00132{left:224.463941pt;}
.x6d_c00132{left:226.431063pt;}
.xe_c00132{left:228.933031pt;}
.x40_c00132{left:230.351399pt;}
.x70_c00132{left:231.422307pt;}
.x31_c00132{left:232.490727pt;}
.x56_c00132{left:233.600623pt;}
.x24_c00132{left:237.362471pt;}
.x9_c00132{left:239.673839pt;}
.x45_c00132{left:242.425771pt;}
.x1c_c00132{left:243.563316pt;}
.x62_c00132{left:245.354047pt;}
.xf_c00132{left:246.940555pt;}
.x71_c00132{left:250.366499pt;}
.x1d_c00132{left:254.645983pt;}
.x49_c00132{left:257.976823pt;}
.x32_c00132{left:260.317779pt;}
.x2e_c00132{left:263.196499pt;}
.x5c_c00132{left:267.706819pt;}
.x7e_c00132{left:268.825887pt;}
.x25_c00132{left:272.011787pt;}
.x1e_c00132{left:273.971385pt;}
.xa_c00132{left:274.884252pt;}
.x10_c00132{left:276.433064pt;}
.x4a_c00132{left:278.734431pt;}
.x53_c00132{left:280.691943pt;}
.x6e_c00132{left:282.265151pt;}
.x17_c00132{left:283.646500pt;}
.x67_c00132{left:286.139191pt;}
.x33_c00132{left:291.336199pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00133 {
    display:none;
  }
  .loading-indicator_c00133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00133 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00133 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00133" -> "#page-container .classname_c00133")
 */
.pf_c00133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00133 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00133 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00133 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00133 {overflow:visible;}
  }
}
.c_c00133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00133 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00133:after { /* webkit #35443 */
  content: '';
}
.t_c00133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00133 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00133 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00133 { /* info for Javascript */
  display:none;
}
.l_c00133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00133:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00133 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00133.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md5_c00133{transform:matrix(0.118686,-0.002848,0.005998,0.249928,0,0);-ms-transform:matrix(0.118686,-0.002848,0.005998,0.249928,0,0);-webkit-transform:matrix(0.118686,-0.002848,0.005998,0.249928,0,0);}
.mec_c00133{transform:matrix(0.133427,-0.003202,0.005998,0.249928,0,0);-ms-transform:matrix(0.133427,-0.003202,0.005998,0.249928,0,0);-webkit-transform:matrix(0.133427,-0.003202,0.005998,0.249928,0,0);}
.med_c00133{transform:matrix(0.149542,-0.003589,0.005998,0.249928,0,0);-ms-transform:matrix(0.149542,-0.003589,0.005998,0.249928,0,0);-webkit-transform:matrix(0.149542,-0.003589,0.005998,0.249928,0,0);}
.m8f_c00133{transform:matrix(0.150117,-0.003603,0.005998,0.249928,0,0);-ms-transform:matrix(0.150117,-0.003603,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150117,-0.003603,0.005998,0.249928,0,0);}
.mea_c00133{transform:matrix(0.151901,-0.003646,0.005998,0.249928,0,0);-ms-transform:matrix(0.151901,-0.003646,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151901,-0.003646,0.005998,0.249928,0,0);}
.m8c_c00133{transform:matrix(0.152636,-0.003663,0.005998,0.249928,0,0);-ms-transform:matrix(0.152636,-0.003663,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152636,-0.003663,0.005998,0.249928,0,0);}
.md6_c00133{transform:matrix(0.152661,-0.003664,0.005998,0.249928,0,0);-ms-transform:matrix(0.152661,-0.003664,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152661,-0.003664,0.005998,0.249928,0,0);}
.me9_c00133{transform:matrix(0.152961,-0.003671,0.005998,0.249928,0,0);-ms-transform:matrix(0.152961,-0.003671,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152961,-0.003671,0.005998,0.249928,0,0);}
.md3_c00133{transform:matrix(0.153006,-0.003672,0.005998,0.249928,0,0);-ms-transform:matrix(0.153006,-0.003672,0.005998,0.249928,0,0);-webkit-transform:matrix(0.153006,-0.003672,0.005998,0.249928,0,0);}
.m1d_c00133{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.155080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155080,0.000000,0.000000,0.250000,0,0);}
.m99_c00133{transform:matrix(0.155430,-0.003730,0.005998,0.249928,0,0);-ms-transform:matrix(0.155430,-0.003730,0.005998,0.249928,0,0);-webkit-transform:matrix(0.155430,-0.003730,0.005998,0.249928,0,0);}
.m5_c00133{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.m96_c00133{transform:matrix(0.158194,-0.003797,0.005998,0.249928,0,0);-ms-transform:matrix(0.158194,-0.003797,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158194,-0.003797,0.005998,0.249928,0,0);}
.m37_c00133{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);}
.m9f_c00133{transform:matrix(0.159524,-0.003829,0.005998,0.249928,0,0);-ms-transform:matrix(0.159524,-0.003829,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159524,-0.003829,0.005998,0.249928,0,0);}
.m13_c00133{transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);}
.m8d_c00133{transform:matrix(0.164608,-0.003951,0.005998,0.249928,0,0);-ms-transform:matrix(0.164608,-0.003951,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164608,-0.003951,0.005998,0.249928,0,0);}
.m67_c00133{transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.md2_c00133{transform:matrix(0.167247,-0.004014,0.005998,0.249928,0,0);-ms-transform:matrix(0.167247,-0.004014,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167247,-0.004014,0.005998,0.249928,0,0);}
.md_c00133{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.m64_c00133{transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);}
.me8_c00133{transform:matrix(0.167487,-0.004020,0.005998,0.249928,0,0);-ms-transform:matrix(0.167487,-0.004020,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167487,-0.004020,0.005998,0.249928,0,0);}
.md0_c00133{transform:matrix(0.168451,-0.004043,0.005998,0.249928,0,0);-ms-transform:matrix(0.168451,-0.004043,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168451,-0.004043,0.005998,0.249928,0,0);}
.m95_c00133{transform:matrix(0.168951,-0.004055,0.005998,0.249928,0,0);-ms-transform:matrix(0.168951,-0.004055,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168951,-0.004055,0.005998,0.249928,0,0);}
.meb_c00133{transform:matrix(0.169981,-0.004080,0.005998,0.249928,0,0);-ms-transform:matrix(0.169981,-0.004080,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169981,-0.004080,0.005998,0.249928,0,0);}
.m49_c00133{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.md4_c00133{transform:matrix(0.170426,-0.004090,0.005998,0.249928,0,0);-ms-transform:matrix(0.170426,-0.004090,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170426,-0.004090,0.005998,0.249928,0,0);}
.m94_c00133{transform:matrix(0.170941,-0.004103,0.005998,0.249928,0,0);-ms-transform:matrix(0.170941,-0.004103,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170941,-0.004103,0.005998,0.249928,0,0);}
.m40_c00133{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m45_c00133{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mc4_c00133{transform:matrix(0.176744,-0.004242,0.005998,0.249928,0,0);-ms-transform:matrix(0.176744,-0.004242,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176744,-0.004242,0.005998,0.249928,0,0);}
.me2_c00133{transform:matrix(0.176829,-0.004244,0.005998,0.249928,0,0);-ms-transform:matrix(0.176829,-0.004244,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176829,-0.004244,0.005998,0.249928,0,0);}
.mb4_c00133{transform:matrix(0.176904,-0.004246,0.005998,0.249928,0,0);-ms-transform:matrix(0.176904,-0.004246,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176904,-0.004246,0.005998,0.249928,0,0);}
.m9a_c00133{transform:matrix(0.177109,-0.004251,0.005998,0.249928,0,0);-ms-transform:matrix(0.177109,-0.004251,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177109,-0.004251,0.005998,0.249928,0,0);}
.m1f_c00133{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.mc8_c00133{transform:matrix(0.177289,-0.004255,0.005998,0.249928,0,0);-ms-transform:matrix(0.177289,-0.004255,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177289,-0.004255,0.005998,0.249928,0,0);}
.mb7_c00133{transform:matrix(0.177334,-0.004256,0.005998,0.249928,0,0);-ms-transform:matrix(0.177334,-0.004256,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177334,-0.004256,0.005998,0.249928,0,0);}
.m9_c00133{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m92_c00133{transform:matrix(0.177684,-0.004264,0.005998,0.249928,0,0);-ms-transform:matrix(0.177684,-0.004264,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177684,-0.004264,0.005998,0.249928,0,0);}
.m2c_c00133{transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);}
.m44_c00133{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00133{transform:matrix(0.178354,-0.004280,0.005998,0.249928,0,0);-ms-transform:matrix(0.178354,-0.004280,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178354,-0.004280,0.005998,0.249928,0,0);}
.mae_c00133{transform:matrix(0.178469,-0.004283,0.005998,0.249928,0,0);-ms-transform:matrix(0.178469,-0.004283,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178469,-0.004283,0.005998,0.249928,0,0);}
.m6b_c00133{transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);-ms-transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179039,-0.005371,0.007497,0.249888,0,0);}
.md1_c00133{transform:matrix(0.179428,-0.004306,0.005998,0.249928,0,0);-ms-transform:matrix(0.179428,-0.004306,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179428,-0.004306,0.005998,0.249928,0,0);}
.mb_c00133{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00133{transform:matrix(0.179558,-0.004309,0.005998,0.249928,0,0);-ms-transform:matrix(0.179558,-0.004309,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179558,-0.004309,0.005998,0.249928,0,0);}
.m6e_c00133{transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);-ms-transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);}
.mf_c00133{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00133{transform:matrix(0.180188,-0.004325,0.005998,0.249928,0,0);-ms-transform:matrix(0.180188,-0.004325,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180188,-0.004325,0.005998,0.249928,0,0);}
.m51_c00133{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m78_c00133{transform:matrix(0.181168,-0.004348,0.005998,0.249928,0,0);-ms-transform:matrix(0.181168,-0.004348,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181168,-0.004348,0.005998,0.249928,0,0);}
.mca_c00133{transform:matrix(0.181773,-0.004363,0.005998,0.249928,0,0);-ms-transform:matrix(0.181773,-0.004363,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181773,-0.004363,0.005998,0.249928,0,0);}
.m93_c00133{transform:matrix(0.181898,-0.004366,0.005998,0.249928,0,0);-ms-transform:matrix(0.181898,-0.004366,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181898,-0.004366,0.005998,0.249928,0,0);}
.m3_c00133{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.m75_c00133{transform:matrix(0.182477,-0.004379,0.005998,0.249928,0,0);-ms-transform:matrix(0.182477,-0.004379,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182477,-0.004379,0.005998,0.249928,0,0);}
.ma8_c00133{transform:matrix(0.183417,-0.004402,0.005998,0.249928,0,0);-ms-transform:matrix(0.183417,-0.004402,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183417,-0.004402,0.005998,0.249928,0,0);}
.m80_c00133{transform:matrix(0.183722,-0.004409,0.005998,0.249928,0,0);-ms-transform:matrix(0.183722,-0.004409,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183722,-0.004409,0.005998,0.249928,0,0);}
.mcb_c00133{transform:matrix(0.183792,-0.004411,0.005998,0.249928,0,0);-ms-transform:matrix(0.183792,-0.004411,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183792,-0.004411,0.005998,0.249928,0,0);}
.m35_c00133{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.m72_c00133{transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);-ms-transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);}
.m1e_c00133{transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);}
.mbb_c00133{transform:matrix(0.184907,-0.004438,0.005998,0.249928,0,0);-ms-transform:matrix(0.184907,-0.004438,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184907,-0.004438,0.005998,0.249928,0,0);}
.m88_c00133{transform:matrix(0.185017,-0.004440,0.005998,0.249928,0,0);-ms-transform:matrix(0.185017,-0.004440,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185017,-0.004440,0.005998,0.249928,0,0);}
.m66_c00133{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.mda_c00133{transform:matrix(0.185462,-0.004451,0.005998,0.249928,0,0);-ms-transform:matrix(0.185462,-0.004451,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185462,-0.004451,0.005998,0.249928,0,0);}
.maf_c00133{transform:matrix(0.185477,-0.004451,0.005998,0.249928,0,0);-ms-transform:matrix(0.185477,-0.004451,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185477,-0.004451,0.005998,0.249928,0,0);}
.m73_c00133{transform:matrix(0.185497,-0.004452,0.005998,0.249928,0,0);-ms-transform:matrix(0.185497,-0.004452,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185497,-0.004452,0.005998,0.249928,0,0);}
.m12_c00133{transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);}
.m9c_c00133{transform:matrix(0.186491,-0.004476,0.005998,0.249928,0,0);-ms-transform:matrix(0.186491,-0.004476,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186491,-0.004476,0.005998,0.249928,0,0);}
.m24_c00133{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.mb6_c00133{transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);-ms-transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);}
.md7_c00133{transform:matrix(0.186921,-0.004486,0.005998,0.249928,0,0);-ms-transform:matrix(0.186921,-0.004486,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186921,-0.004486,0.005998,0.249928,0,0);}
.maa_c00133{transform:matrix(0.186976,-0.004487,0.005998,0.249928,0,0);-ms-transform:matrix(0.186976,-0.004487,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186976,-0.004487,0.005998,0.249928,0,0);}
.m7b_c00133{transform:matrix(0.187191,-0.004493,0.005998,0.249928,0,0);-ms-transform:matrix(0.187191,-0.004493,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187191,-0.004493,0.005998,0.249928,0,0);}
.m14_c00133{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m76_c00133{transform:matrix(0.187946,-0.004511,0.005998,0.249928,0,0);-ms-transform:matrix(0.187946,-0.004511,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187946,-0.004511,0.005998,0.249928,0,0);}
.m85_c00133{transform:matrix(0.188231,-0.004518,0.005998,0.249928,0,0);-ms-transform:matrix(0.188231,-0.004518,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188231,-0.004518,0.005998,0.249928,0,0);}
.m6_c00133{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);}
.m5d_c00133{transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m52_c00133{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);}
.mb1_c00133{transform:matrix(0.191140,-0.004587,0.005998,0.249928,0,0);-ms-transform:matrix(0.191140,-0.004587,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191140,-0.004587,0.005998,0.249928,0,0);}
.m62_c00133{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m87_c00133{transform:matrix(0.191355,-0.004593,0.005998,0.249928,0,0);-ms-transform:matrix(0.191355,-0.004593,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191355,-0.004593,0.005998,0.249928,0,0);}
.m16_c00133{transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);}
.m91_c00133{transform:matrix(0.191925,-0.004606,0.005998,0.249928,0,0);-ms-transform:matrix(0.191925,-0.004606,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191925,-0.004606,0.005998,0.249928,0,0);}
.me7_c00133{transform:matrix(0.192230,-0.004614,0.005998,0.249928,0,0);-ms-transform:matrix(0.192230,-0.004614,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192230,-0.004614,0.005998,0.249928,0,0);}
.m82_c00133{transform:matrix(0.192300,-0.004615,0.005998,0.249928,0,0);-ms-transform:matrix(0.192300,-0.004615,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192300,-0.004615,0.005998,0.249928,0,0);}
.m8e_c00133{transform:matrix(0.192330,-0.004616,0.005998,0.249928,0,0);-ms-transform:matrix(0.192330,-0.004616,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192330,-0.004616,0.005998,0.249928,0,0);}
.m70_c00133{transform:matrix(0.192350,-0.004616,0.005998,0.249928,0,0);-ms-transform:matrix(0.192350,-0.004616,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192350,-0.004616,0.005998,0.249928,0,0);}
.m81_c00133{transform:matrix(0.192969,-0.004631,0.005998,0.249928,0,0);-ms-transform:matrix(0.192969,-0.004631,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192969,-0.004631,0.005998,0.249928,0,0);}
.m8a_c00133{transform:matrix(0.193484,-0.004644,0.005998,0.249928,0,0);-ms-transform:matrix(0.193484,-0.004644,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193484,-0.004644,0.005998,0.249928,0,0);}
.m61_c00133{transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);}
.mc5_c00133{transform:matrix(0.193829,-0.004652,0.005998,0.249928,0,0);-ms-transform:matrix(0.193829,-0.004652,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193829,-0.004652,0.005998,0.249928,0,0);}
.m97_c00133{transform:matrix(0.194144,-0.004659,0.005998,0.249928,0,0);-ms-transform:matrix(0.194144,-0.004659,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194144,-0.004659,0.005998,0.249928,0,0);}
.mc2_c00133{transform:matrix(0.194254,-0.004662,0.005998,0.249928,0,0);-ms-transform:matrix(0.194254,-0.004662,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194254,-0.004662,0.005998,0.249928,0,0);}
.m63_c00133{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.m90_c00133{transform:matrix(0.195194,-0.004685,0.005998,0.249928,0,0);-ms-transform:matrix(0.195194,-0.004685,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195194,-0.004685,0.005998,0.249928,0,0);}
.m36_c00133{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m8b_c00133{transform:matrix(0.195514,-0.004692,0.005998,0.249928,0,0);-ms-transform:matrix(0.195514,-0.004692,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195514,-0.004692,0.005998,0.249928,0,0);}
.m2d_c00133{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.mb9_c00133{transform:matrix(0.195654,-0.004696,0.005998,0.249928,0,0);-ms-transform:matrix(0.195654,-0.004696,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195654,-0.004696,0.005998,0.249928,0,0);}
.mce_c00133{transform:matrix(0.196228,-0.004709,0.005998,0.249928,0,0);-ms-transform:matrix(0.196228,-0.004709,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196228,-0.004709,0.005998,0.249928,0,0);}
.m5e_c00133{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m9b_c00133{transform:matrix(0.196388,-0.004713,0.005998,0.249928,0,0);-ms-transform:matrix(0.196388,-0.004713,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196388,-0.004713,0.005998,0.249928,0,0);}
.m0_c00133{transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);}
.m4f_c00133{transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);}
.m65_c00133{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.mad_c00133{transform:matrix(0.198028,-0.004753,0.005998,0.249928,0,0);-ms-transform:matrix(0.198028,-0.004753,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198028,-0.004753,0.005998,0.249928,0,0);}
.m60_c00133{transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00133{transform:matrix(0.198528,-0.004765,0.005998,0.249928,0,0);-ms-transform:matrix(0.198528,-0.004765,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198528,-0.004765,0.005998,0.249928,0,0);}
.ma3_c00133{transform:matrix(0.198763,-0.004770,0.005998,0.249928,0,0);-ms-transform:matrix(0.198763,-0.004770,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198763,-0.004770,0.005998,0.249928,0,0);}
.mb2_c00133{transform:matrix(0.199997,-0.004800,0.005998,0.249928,0,0);-ms-transform:matrix(0.199997,-0.004800,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199997,-0.004800,0.005998,0.249928,0,0);}
.m79_c00133{transform:matrix(0.200242,-0.004806,0.005998,0.249928,0,0);-ms-transform:matrix(0.200242,-0.004806,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200242,-0.004806,0.005998,0.249928,0,0);}
.m18_c00133{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.ma6_c00133{transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);-ms-transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);}
.m6c_c00133{transform:matrix(0.200915,-0.006027,0.007497,0.249888,0,0);-ms-transform:matrix(0.200915,-0.006027,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200915,-0.006027,0.007497,0.249888,0,0);}
.m29_c00133{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00133{transform:matrix(0.201567,-0.004838,0.005998,0.249928,0,0);-ms-transform:matrix(0.201567,-0.004838,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201567,-0.004838,0.005998,0.249928,0,0);}
.mbf_c00133{transform:matrix(0.201637,-0.004839,0.005998,0.249928,0,0);-ms-transform:matrix(0.201637,-0.004839,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201637,-0.004839,0.005998,0.249928,0,0);}
.mc9_c00133{transform:matrix(0.201672,-0.004840,0.005998,0.249928,0,0);-ms-transform:matrix(0.201672,-0.004840,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201672,-0.004840,0.005998,0.249928,0,0);}
.m28_c00133{transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.mbc_c00133{transform:matrix(0.203501,-0.004884,0.005998,0.249928,0,0);-ms-transform:matrix(0.203501,-0.004884,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203501,-0.004884,0.005998,0.249928,0,0);}
.m2e_c00133{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.ma0_c00133{transform:matrix(0.203846,-0.004892,0.005998,0.249928,0,0);-ms-transform:matrix(0.203846,-0.004892,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203846,-0.004892,0.005998,0.249928,0,0);}
.ma1_c00133{transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);-ms-transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);}
.mc_c00133{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m86_c00133{transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);-ms-transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);}
.me0_c00133{transform:matrix(0.204376,-0.004905,0.005998,0.249928,0,0);-ms-transform:matrix(0.204376,-0.004905,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204376,-0.004905,0.005998,0.249928,0,0);}
.mdc_c00133{transform:matrix(0.204536,-0.004909,0.005998,0.249928,0,0);-ms-transform:matrix(0.204536,-0.004909,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204536,-0.004909,0.005998,0.249928,0,0);}
.m3e_c00133{transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.204746,-0.004914,0.005998,0.249928,0,0);-ms-transform:matrix(0.204746,-0.004914,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204746,-0.004914,0.005998,0.249928,0,0);}
.m4c_c00133{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00133{transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);}
.mdb_c00133{transform:matrix(0.206016,-0.004944,0.005998,0.249928,0,0);-ms-transform:matrix(0.206016,-0.004944,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206016,-0.004944,0.005998,0.249928,0,0);}
.me6_c00133{transform:matrix(0.206051,-0.004945,0.005998,0.249928,0,0);-ms-transform:matrix(0.206051,-0.004945,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206051,-0.004945,0.005998,0.249928,0,0);}
.ma4_c00133{transform:matrix(0.206586,-0.004958,0.005998,0.249928,0,0);-ms-transform:matrix(0.206586,-0.004958,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206586,-0.004958,0.005998,0.249928,0,0);}
.mcf_c00133{transform:matrix(0.206611,-0.004959,0.005998,0.249928,0,0);-ms-transform:matrix(0.206611,-0.004959,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206611,-0.004959,0.005998,0.249928,0,0);}
.m25_c00133{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);}
.m4a_c00133{transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);}
.mb3_c00133{transform:matrix(0.207410,-0.004978,0.005998,0.249928,0,0);-ms-transform:matrix(0.207410,-0.004978,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207410,-0.004978,0.005998,0.249928,0,0);}
.m57_c00133{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m74_c00133{transform:matrix(0.207915,-0.004990,0.005998,0.249928,0,0);-ms-transform:matrix(0.207915,-0.004990,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207915,-0.004990,0.005998,0.249928,0,0);}
.m7_c00133{transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207935,0.000000,0.000000,0.250000,0,0);}
.m7a_c00133{transform:matrix(0.207945,-0.004991,0.005998,0.249928,0,0);-ms-transform:matrix(0.207945,-0.004991,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207945,-0.004991,0.005998,0.249928,0,0);}
.mcd_c00133{transform:matrix(0.208015,-0.004992,0.005998,0.249928,0,0);-ms-transform:matrix(0.208015,-0.004992,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208015,-0.004992,0.005998,0.249928,0,0);}
.ma5_c00133{transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);-ms-transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);}
.m84_c00133{transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);-ms-transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);}
.m7d_c00133{transform:matrix(0.209605,-0.005031,0.005998,0.249928,0,0);-ms-transform:matrix(0.209605,-0.005031,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209605,-0.005031,0.005998,0.249928,0,0);}
.m9d_c00133{transform:matrix(0.209670,-0.005032,0.005998,0.249928,0,0);-ms-transform:matrix(0.209670,-0.005032,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209670,-0.005032,0.005998,0.249928,0,0);}
.ma7_c00133{transform:matrix(0.209805,-0.005035,0.005998,0.249928,0,0);-ms-transform:matrix(0.209805,-0.005035,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209805,-0.005035,0.005998,0.249928,0,0);}
.me1_c00133{transform:matrix(0.209865,-0.005037,0.005998,0.249928,0,0);-ms-transform:matrix(0.209865,-0.005037,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209865,-0.005037,0.005998,0.249928,0,0);}
.mbe_c00133{transform:matrix(0.210769,-0.005058,0.005998,0.249928,0,0);-ms-transform:matrix(0.210769,-0.005058,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210769,-0.005058,0.005998,0.249928,0,0);}
.mc6_c00133{transform:matrix(0.210989,-0.005064,0.005998,0.249928,0,0);-ms-transform:matrix(0.210989,-0.005064,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210989,-0.005064,0.005998,0.249928,0,0);}
.m48_c00133{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.me4_c00133{transform:matrix(0.211859,-0.005085,0.005998,0.249928,0,0);-ms-transform:matrix(0.211859,-0.005085,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211859,-0.005085,0.005998,0.249928,0,0);}
.m42_c00133{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m58_c00133{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00133{transform:matrix(0.213734,-0.006412,0.007497,0.249888,0,0);-ms-transform:matrix(0.213734,-0.006412,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213734,-0.006412,0.007497,0.249888,0,0);}
.mc1_c00133{transform:matrix(0.213968,-0.005135,0.005998,0.249928,0,0);-ms-transform:matrix(0.213968,-0.005135,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213968,-0.005135,0.005998,0.249928,0,0);}
.m71_c00133{transform:matrix(0.214598,-0.005150,0.005998,0.249928,0,0);-ms-transform:matrix(0.214598,-0.005150,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214598,-0.005150,0.005998,0.249928,0,0);}
.m9e_c00133{transform:matrix(0.214838,-0.005156,0.005998,0.249928,0,0);-ms-transform:matrix(0.214838,-0.005156,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214838,-0.005156,0.005998,0.249928,0,0);}
.m34_c00133{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m7c_c00133{transform:matrix(0.216058,-0.005185,0.005998,0.249928,0,0);-ms-transform:matrix(0.216058,-0.005185,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216058,-0.005185,0.005998,0.249928,0,0);}
.m2f_c00133{transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);}
.m98_c00133{transform:matrix(0.217807,-0.005227,0.005998,0.249928,0,0);-ms-transform:matrix(0.217807,-0.005227,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217807,-0.005227,0.005998,0.249928,0,0);}
.mc3_c00133{transform:matrix(0.218702,-0.005249,0.005998,0.249928,0,0);-ms-transform:matrix(0.218702,-0.005249,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218702,-0.005249,0.005998,0.249928,0,0);}
.mdd_c00133{transform:matrix(0.218832,-0.005252,0.005998,0.249928,0,0);-ms-transform:matrix(0.218832,-0.005252,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218832,-0.005252,0.005998,0.249928,0,0);}
.m55_c00133{transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);}
.m6d_c00133{transform:matrix(0.219112,-0.005259,0.005998,0.249928,0,0);-ms-transform:matrix(0.219112,-0.005259,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219112,-0.005259,0.005998,0.249928,0,0);}
.m5f_c00133{transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);}
.mc7_c00133{transform:matrix(0.222141,-0.005331,0.005998,0.249928,0,0);-ms-transform:matrix(0.222141,-0.005331,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222141,-0.005331,0.005998,0.249928,0,0);}
.m15_c00133{transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00133{transform:matrix(0.222401,-0.005338,0.005998,0.249928,0,0);-ms-transform:matrix(0.222401,-0.005338,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222401,-0.005338,0.005998,0.249928,0,0);}
.m89_c00133{transform:matrix(0.222696,-0.005345,0.005998,0.249928,0,0);-ms-transform:matrix(0.222696,-0.005345,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222696,-0.005345,0.005998,0.249928,0,0);}
.m6f_c00133{transform:matrix(0.222876,-0.005349,0.005998,0.249928,0,0);-ms-transform:matrix(0.222876,-0.005349,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222876,-0.005349,0.005998,0.249928,0,0);}
.m68_c00133{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.m32_c00133{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m33_c00133{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m83_c00133{transform:matrix(0.224205,-0.005381,0.005998,0.249928,0,0);-ms-transform:matrix(0.224205,-0.005381,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224205,-0.005381,0.005998,0.249928,0,0);}
.m47_c00133{transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);}
.m69_c00133{transform:matrix(0.224739,-0.006742,0.007497,0.249888,0,0);-ms-transform:matrix(0.224739,-0.006742,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224739,-0.006742,0.007497,0.249888,0,0);}
.m39_c00133{transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);}
.mcc_c00133{transform:matrix(0.224780,-0.005395,0.005998,0.249928,0,0);-ms-transform:matrix(0.224780,-0.005395,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224780,-0.005395,0.005998,0.249928,0,0);}
.mb8_c00133{transform:matrix(0.226020,-0.005424,0.005998,0.249928,0,0);-ms-transform:matrix(0.226020,-0.005424,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226020,-0.005424,0.005998,0.249928,0,0);}
.mab_c00133{transform:matrix(0.226115,-0.005427,0.005998,0.249928,0,0);-ms-transform:matrix(0.226115,-0.005427,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226115,-0.005427,0.005998,0.249928,0,0);}
.m2b_c00133{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m3d_c00133{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m43_c00133{transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);}
.ma9_c00133{transform:matrix(0.227215,-0.005453,0.005998,0.249928,0,0);-ms-transform:matrix(0.227215,-0.005453,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227215,-0.005453,0.005998,0.249928,0,0);}
.m46_c00133{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.mdf_c00133{transform:matrix(0.228219,-0.005477,0.005998,0.249928,0,0);-ms-transform:matrix(0.228219,-0.005477,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228219,-0.005477,0.005998,0.249928,0,0);}
.me5_c00133{transform:matrix(0.228249,-0.005478,0.005998,0.249928,0,0);-ms-transform:matrix(0.228249,-0.005478,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228249,-0.005478,0.005998,0.249928,0,0);}
.m2_c00133{transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);}
.me3_c00133{transform:matrix(0.231058,-0.005545,0.005998,0.249928,0,0);-ms-transform:matrix(0.231058,-0.005545,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231058,-0.005545,0.005998,0.249928,0,0);}
.mde_c00133{transform:matrix(0.232998,-0.005592,0.005998,0.249928,0,0);-ms-transform:matrix(0.232998,-0.005592,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232998,-0.005592,0.005998,0.249928,0,0);}
.m23_c00133{transform:matrix(0.233190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233190,0.000000,0.000000,0.250000,0,0);}
.mba_c00133{transform:matrix(0.233258,-0.005598,0.005998,0.249928,0,0);-ms-transform:matrix(0.233258,-0.005598,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233258,-0.005598,0.005998,0.249928,0,0);}
.m59_c00133{transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);}
.md9_c00133{transform:matrix(0.234612,-0.005631,0.005998,0.249928,0,0);-ms-transform:matrix(0.234612,-0.005631,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234612,-0.005631,0.005998,0.249928,0,0);}
.m4d_c00133{transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);}
.m56_c00133{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);}
.mac_c00133{transform:matrix(0.241425,-0.005794,0.005998,0.249928,0,0);-ms-transform:matrix(0.241425,-0.005794,0.005998,0.249928,0,0);-webkit-transform:matrix(0.241425,-0.005794,0.005998,0.249928,0,0);}
.m22_c00133{transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);}
.mc0_c00133{transform:matrix(0.251368,-0.006033,0.005998,0.249928,0,0);-ms-transform:matrix(0.251368,-0.006033,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251368,-0.006033,0.005998,0.249928,0,0);}
.md8_c00133{transform:matrix(0.258331,-0.006200,0.005998,0.249928,0,0);-ms-transform:matrix(0.258331,-0.006200,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258331,-0.006200,0.005998,0.249928,0,0);}
.m5b_c00133{transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);}
.m54_c00133{transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{transform:matrix(1.130325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130325,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:0.000000px;}
.fc0_c00133{color:transparent;}
.fs12_c00133{font-size:58.816932px;}
.fs6_c00133{font-size:60.900000px;}
.fsc_c00133{font-size:60.917537px;}
.fsa_c00133{font-size:60.927399px;}
.fs5_c00133{font-size:61.950000px;}
.fsb_c00133{font-size:61.967839px;}
.fs8_c00133{font-size:63.000000px;}
.fsf_c00133{font-size:63.018141px;}
.fs4_c00133{font-size:64.050000px;}
.fs10_c00133{font-size:64.068444px;}
.fs0_c00133{font-size:66.150000px;}
.fs9_c00133{font-size:68.250000px;}
.fse_c00133{font-size:68.269653px;}
.fs7_c00133{font-size:69.300000px;}
.fs11_c00133{font-size:70.370258px;}
.fs3_c00133{font-size:71.400000px;}
.fs2_c00133{font-size:72.450000px;}
.fsd_c00133{font-size:72.470863px;}
.fs1_c00133{font-size:73.500000px;}
.fs13_c00133{font-size:79.822979px;}
.y0_c00133{bottom:0.000000px;}
.yeb_c00133{bottom:20.714232px;}
.yec_c00133{bottom:22.043364px;}
.yed_c00133{bottom:22.793544px;}
.yee_c00133{bottom:24.481188px;}
.yef_c00133{bottom:26.268084px;}
.yf0_c00133{bottom:27.034464px;}
.ye2_c00133{bottom:38.537028px;}
.ye3_c00133{bottom:39.326688px;}
.ye4_c00133{bottom:40.030800px;}
.ye5_c00133{bottom:40.526628px;}
.ye6_c00133{bottom:43.025568px;}
.ye7_c00133{bottom:43.903680px;}
.ye8_c00133{bottom:45.952620px;}
.ye9_c00133{bottom:46.642320px;}
.yea_c00133{bottom:47.119884px;}
.yda_c00133{bottom:56.361300px;}
.ydb_c00133{bottom:57.603324px;}
.ydc_c00133{bottom:58.080360px;}
.ydd_c00133{bottom:58.816404px;}
.yde_c00133{bottom:60.493128px;}
.ydf_c00133{bottom:62.201712px;}
.ye0_c00133{bottom:62.770512px;}
.ye1_c00133{bottom:63.661248px;}
.yd1_c00133{bottom:73.385076px;}
.yd2_c00133{bottom:74.900172px;}
.yd3_c00133{bottom:75.613596px;}
.yd4_c00133{bottom:77.616696px;}
.yd5_c00133{bottom:79.007928px;}
.yd6_c00133{bottom:79.630860px;}
.yd7_c00133{bottom:80.660184px;}
.yd8_c00133{bottom:81.238596px;}
.yd9_c00133{bottom:82.005312px;}
.ycb_c00133{bottom:90.938028px;}
.ycc_c00133{bottom:93.091296px;}
.ycd_c00133{bottom:93.818916px;}
.yce_c00133{bottom:95.226744px;}
.ycf_c00133{bottom:95.722380px;}
.yd0_c00133{bottom:97.425072px;}
.yc3_c00133{bottom:107.956980px;}
.yc4_c00133{bottom:110.669532px;}
.yc5_c00133{bottom:111.338940px;}
.yc6_c00133{bottom:112.439940px;}
.yc7_c00133{bottom:112.885812px;}
.yc8_c00133{bottom:113.591124px;}
.yc9_c00133{bottom:115.078920px;}
.yca_c00133{bottom:115.466868px;}
.ybb_c00133{bottom:125.511144px;}
.ybc_c00133{bottom:127.880028px;}
.ybd_c00133{bottom:128.236584px;}
.ybe_c00133{bottom:128.929848px;}
.ybf_c00133{bottom:130.121208px;}
.yc0_c00133{bottom:131.582952px;}
.yc1_c00133{bottom:132.478872px;}
.yc2_c00133{bottom:133.537788px;}
.yb3_c00133{bottom:143.597436px;}
.yb4_c00133{bottom:144.593772px;}
.yb5_c00133{bottom:145.782864px;}
.yb6_c00133{bottom:147.191016px;}
.yb7_c00133{bottom:147.680172px;}
.yb8_c00133{bottom:148.172244px;}
.yb9_c00133{bottom:149.144076px;}
.yba_c00133{bottom:149.733456px;}
.yac_c00133{bottom:162.770988px;}
.yad_c00133{bottom:163.830204px;}
.yae_c00133{bottom:164.873688px;}
.yaf_c00133{bottom:167.158128px;}
.yb0_c00133{bottom:167.856768px;}
.yb1_c00133{bottom:168.295824px;}
.yb2_c00133{bottom:169.147848px;}
.ya5_c00133{bottom:180.595212px;}
.ya6_c00133{bottom:180.996168px;}
.ya7_c00133{bottom:182.211384px;}
.ya8_c00133{bottom:183.187068px;}
.ya9_c00133{bottom:183.798504px;}
.yaa_c00133{bottom:185.217192px;}
.yab_c00133{bottom:185.801688px;}
.y9e_c00133{bottom:198.689952px;}
.y9f_c00133{bottom:199.186848px;}
.ya0_c00133{bottom:201.012384px;}
.ya1_c00133{bottom:201.571440px;}
.ya2_c00133{bottom:201.966336px;}
.ya3_c00133{bottom:203.210784px;}
.ya4_c00133{bottom:203.609580px;}
.y97_c00133{bottom:215.973936px;}
.y98_c00133{bottom:216.685176px;}
.y99_c00133{bottom:217.098228px;}
.y9a_c00133{bottom:218.409384px;}
.y9b_c00133{bottom:218.736168px;}
.y9c_c00133{bottom:219.154092px;}
.y9d_c00133{bottom:220.375764px;}
.y8d_c00133{bottom:233.529396px;}
.y8e_c00133{bottom:233.730864px;}
.y8f_c00133{bottom:234.171768px;}
.y90_c00133{bottom:234.928788px;}
.y91_c00133{bottom:235.132176px;}
.y92_c00133{bottom:235.388904px;}
.y93_c00133{bottom:236.169000px;}
.y94_c00133{bottom:236.793528px;}
.y95_c00133{bottom:237.254508px;}
.y96_c00133{bottom:238.094748px;}
.y86_c00133{bottom:250.816872px;}
.y87_c00133{bottom:251.479116px;}
.y88_c00133{bottom:251.791068px;}
.y89_c00133{bottom:253.065264px;}
.y8a_c00133{bottom:254.260068px;}
.y8b_c00133{bottom:254.792988px;}
.y8c_c00133{bottom:255.773028px;}
.y7e_c00133{bottom:267.834120px;}
.y7f_c00133{bottom:269.388168px;}
.y80_c00133{bottom:269.757372px;}
.y81_c00133{bottom:270.177768px;}
.y82_c00133{bottom:271.145400px;}
.y83_c00133{bottom:271.514496px;}
.y84_c00133{bottom:271.895748px;}
.y85_c00133{bottom:273.066264px;}
.y75_c00133{bottom:285.120684px;}
.y76_c00133{bottom:285.704232px;}
.y77_c00133{bottom:286.935252px;}
.y78_c00133{bottom:287.562192px;}
.y79_c00133{bottom:288.304932px;}
.y7a_c00133{bottom:289.395540px;}
.y7b_c00133{bottom:289.780716px;}
.y7c_c00133{bottom:290.813508px;}
.y7d_c00133{bottom:291.307308px;}
.y6f_c00133{bottom:302.407500px;}
.y70_c00133{bottom:302.933172px;}
.y71_c00133{bottom:304.508604px;}
.y72_c00133{bottom:306.083424px;}
.y73_c00133{bottom:307.470072px;}
.y74_c00133{bottom:307.963020px;}
.y6b_c00133{bottom:318.612000px;}
.y6c_c00133{bottom:320.758500px;}
.y6d_c00133{bottom:321.447405px;}
.y6e_c00133{bottom:322.193505px;}
.y66_c00133{bottom:335.614500px;}
.y67_c00133{bottom:336.717000px;}
.y68_c00133{bottom:339.238500px;}
.y69_c00133{bottom:341.410500px;}
.y6a_c00133{bottom:343.674000px;}
.y5f_c00133{bottom:353.161500px;}
.y60_c00133{bottom:354.576000px;}
.y61_c00133{bottom:355.783500px;}
.y62_c00133{bottom:357.667500px;}
.y63_c00133{bottom:358.615500px;}
.y64_c00133{bottom:359.353500px;}
.y65_c00133{bottom:360.552000px;}
.y56_c00133{bottom:372.328500px;}
.y57_c00133{bottom:372.654000px;}
.y58_c00133{bottom:373.531500px;}
.y59_c00133{bottom:374.835000px;}
.y5a_c00133{bottom:375.288000px;}
.y5b_c00133{bottom:377.065500px;}
.y5c_c00133{bottom:377.412000px;}
.y5d_c00133{bottom:378.778500px;}
.y5e_c00133{bottom:379.401000px;}
.y4f_c00133{bottom:389.611500px;}
.y50_c00133{bottom:391.141500px;}
.y51_c00133{bottom:391.441500px;}
.y52_c00133{bottom:392.545500px;}
.y53_c00133{bottom:392.937000px;}
.y54_c00133{bottom:394.392000px;}
.y55_c00133{bottom:394.915500px;}
.y46_c00133{bottom:407.431500px;}
.y47_c00133{bottom:408.036000px;}
.y48_c00133{bottom:408.360000px;}
.y49_c00133{bottom:409.558500px;}
.y4a_c00133{bottom:409.947000px;}
.y4b_c00133{bottom:410.799000px;}
.y4c_c00133{bottom:411.220500px;}
.y4d_c00133{bottom:412.155000px;}
.y4e_c00133{bottom:412.566000px;}
.y3f_c00133{bottom:424.174500px;}
.y40_c00133{bottom:424.722000px;}
.y41_c00133{bottom:425.916000px;}
.y42_c00133{bottom:427.287000px;}
.y43_c00133{bottom:427.644000px;}
.y44_c00133{bottom:429.484500px;}
.y45_c00133{bottom:430.006500px;}
.y37_c00133{bottom:442.533000px;}
.y38_c00133{bottom:443.583000px;}
.y39_c00133{bottom:443.809500px;}
.y3a_c00133{bottom:444.580500px;}
.y3b_c00133{bottom:445.647000px;}
.y3c_c00133{bottom:446.113500px;}
.y3d_c00133{bottom:446.431500px;}
.y3e_c00133{bottom:447.579000px;}
.y33_c00133{bottom:459.277500px;}
.y34_c00133{bottom:462.139500px;}
.y35_c00133{bottom:463.263000px;}
.y36_c00133{bottom:464.467500px;}
.y2d_c00133{bottom:477.361500px;}
.y2e_c00133{bottom:477.681000px;}
.y2f_c00133{bottom:478.215000px;}
.y30_c00133{bottom:479.332500px;}
.y31_c00133{bottom:479.841000px;}
.y32_c00133{bottom:481.758000px;}
.y25_c00133{bottom:494.103000px;}
.y26_c00133{bottom:494.611500px;}
.y27_c00133{bottom:495.141000px;}
.y28_c00133{bottom:495.510000px;}
.y29_c00133{bottom:497.170500px;}
.y2a_c00133{bottom:497.527500px;}
.y2b_c00133{bottom:498.814500px;}
.y2c_c00133{bottom:499.212000px;}
.y1d_c00133{bottom:511.386000px;}
.y1e_c00133{bottom:512.428500px;}
.y1f_c00133{bottom:512.823000px;}
.y20_c00133{bottom:513.387000px;}
.y21_c00133{bottom:513.748500px;}
.y22_c00133{bottom:514.621500px;}
.y23_c00133{bottom:515.097000px;}
.y24_c00133{bottom:516.789000px;}
.y14_c00133{bottom:528.933000px;}
.y15_c00133{bottom:529.659000px;}
.y16_c00133{bottom:530.812500px;}
.y17_c00133{bottom:531.388500px;}
.y18_c00133{bottom:531.988500px;}
.y19_c00133{bottom:533.488500px;}
.y1a_c00133{bottom:533.799000px;}
.y1b_c00133{bottom:534.649500px;}
.y1c_c00133{bottom:535.170000px;}
.yb_c00133{bottom:544.336500px;}
.yc_c00133{bottom:545.181000px;}
.yd_c00133{bottom:546.222000px;}
.ye_c00133{bottom:546.594000px;}
.yf_c00133{bottom:547.987500px;}
.y10_c00133{bottom:548.520000px;}
.y11_c00133{bottom:549.733500px;}
.y12_c00133{bottom:550.290000px;}
.y13_c00133{bottom:551.992500px;}
.y2_c00133{bottom:562.149000px;}
.y3_c00133{bottom:563.646000px;}
.y4_c00133{bottom:564.175500px;}
.y5_c00133{bottom:564.843000px;}
.y6_c00133{bottom:565.866000px;}
.y7_c00133{bottom:566.622000px;}
.y8_c00133{bottom:568.530000px;}
.y9_c00133{bottom:568.917000px;}
.ya_c00133{bottom:569.551500px;}
.y1_c00133{bottom:583.869000px;}
.h14_c00133{height:58.816932px;}
.h8_c00133{height:60.900000px;}
.he_c00133{height:60.917537px;}
.hc_c00133{height:60.927399px;}
.h7_c00133{height:61.950000px;}
.hd_c00133{height:61.967839px;}
.ha_c00133{height:63.000000px;}
.h11_c00133{height:63.018141px;}
.h6_c00133{height:64.050000px;}
.h12_c00133{height:64.068444px;}
.h2_c00133{height:66.150000px;}
.hb_c00133{height:68.250000px;}
.h10_c00133{height:68.269653px;}
.h9_c00133{height:69.300000px;}
.h13_c00133{height:70.370258px;}
.h5_c00133{height:71.400000px;}
.h4_c00133{height:72.450000px;}
.hf_c00133{height:72.470863px;}
.h3_c00133{height:73.500000px;}
.h15_c00133{height:79.822979px;}
.h0_c00133{height:634.200000px;}
.h1_c00133{height:634.500000px;}
.w0_c00133{width:371.790000px;}
.w1_c00133{width:372.000000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:44.922000px;}
.x2d_c00133{left:46.936500px;}
.x4f_c00133{left:47.941500px;}
.x5d_c00133{left:49.375248px;}
.x40_c00133{left:60.684000px;}
.x27_c00133{left:63.681000px;}
.x21_c00133{left:69.841500px;}
.x34_c00133{left:71.581500px;}
.x52_c00133{left:73.198500px;}
.xb_c00133{left:74.305500px;}
.x37_c00133{left:76.936500px;}
.x13_c00133{left:78.510000px;}
.x28_c00133{left:79.632000px;}
.x5e_c00133{left:84.222924px;}
.x60_c00133{left:86.562408px;}
.x4c_c00133{left:88.188000px;}
.x6a_c00133{left:89.483724px;}
.x1b_c00133{left:92.800500px;}
.x22_c00133{left:95.053500px;}
.x41_c00133{left:97.222500px;}
.x72_c00133{left:98.698212px;}
.x3_c00133{left:100.377000px;}
.x30_c00133{left:101.664000px;}
.x7c_c00133{left:103.226652px;}
.x29_c00133{left:106.368000px;}
.xc_c00133{left:110.181000px;}
.x76_c00133{left:111.345936px;}
.x23_c00133{left:112.606500px;}
.x3c_c00133{left:116.823000px;}
.x4_c00133{left:120.007500px;}
.x73_c00133{left:121.732860px;}
.xd_c00133{left:123.009000px;}
.x35_c00133{left:125.848500px;}
.x14_c00133{left:130.971000px;}
.x7d_c00133{left:133.233432px;}
.x55_c00133{left:134.740548px;}
.x1c_c00133{left:136.368000px;}
.x77_c00133{left:137.636916px;}
.x50_c00133{left:142.455000px;}
.x5_c00133{left:144.727500px;}
.x47_c00133{left:147.297000px;}
.x59_c00133{left:149.853780px;}
.x42_c00133{left:151.525500px;}
.x1d_c00133{left:152.830500px;}
.x31_c00133{left:154.132500px;}
.x15_c00133{left:157.159500px;}
.x61_c00133{left:158.163432px;}
.x53_c00133{left:160.744500px;}
.x2a_c00133{left:162.252000px;}
.x56_c00133{left:164.615208px;}
.x51_c00133{left:167.325000px;}
.xe_c00133{left:171.060000px;}
.x38_c00133{left:172.527000px;}
.x1_c00133{left:179.010000px;}
.x3d_c00133{left:180.655500px;}
.x6_c00133{left:182.623500px;}
.x16_c00133{left:184.422000px;}
.x74_c00133{left:186.372024px;}
.x2b_c00133{left:187.654500px;}
.xf_c00133{left:189.405000px;}
.x1e_c00133{left:192.513000px;}
.x3e_c00133{left:198.460500px;}
.x57_c00133{left:200.002764px;}
.x65_c00133{left:201.974088px;}
.x36_c00133{left:204.423000px;}
.x24_c00133{left:208.723500px;}
.x7_c00133{left:210.603000px;}
.x6b_c00133{left:212.893236px;}
.x1f_c00133{left:214.144500px;}
.x39_c00133{left:215.158500px;}
.x48_c00133{left:219.759000px;}
.x6f_c00133{left:221.525484px;}
.x5a_c00133{left:222.947064px;}
.x66_c00133{left:225.203436px;}
.x54_c00133{left:226.362000px;}
.x79_c00133{left:228.558456px;}
.x10_c00133{left:231.243000px;}
.x6c_c00133{left:232.583268px;}
.x32_c00133{left:234.858000px;}
.x3a_c00133{left:236.226000px;}
.x70_c00133{left:238.665156px;}
.x62_c00133{left:240.765792px;}
.x5b_c00133{left:242.390904px;}
.x43_c00133{left:244.510500px;}
.x2e_c00133{left:246.241500px;}
.x11_c00133{left:250.435500px;}
.x17_c00133{left:252.616500px;}
.x49_c00133{left:256.198500px;}
.x44_c00133{left:258.942000px;}
.x4d_c00133{left:262.021500px;}
.x3f_c00133{left:264.597000px;}
.x18_c00133{left:266.763000px;}
.x63_c00133{left:267.852828px;}
.x25_c00133{left:269.998500px;}
.x6d_c00133{left:271.450332px;}
.x78_c00133{left:278.815344px;}
.x8_c00133{left:281.292000px;}
.x2c_c00133{left:283.498500px;}
.x4a_c00133{left:284.578500px;}
.x26_c00133{left:288.907500px;}
.x20_c00133{left:291.069000px;}
.x67_c00133{left:293.053692px;}
.x9_c00133{left:295.614000px;}
.x7a_c00133{left:296.858628px;}
.x68_c00133{left:300.512208px;}
.x3b_c00133{left:303.493500px;}
.x19_c00133{left:305.389500px;}
.x2f_c00133{left:306.438000px;}
.x12_c00133{left:309.144000px;}
.x5f_c00133{left:310.288068px;}
.x33_c00133{left:312.034500px;}
.x45_c00133{left:315.904500px;}
.x64_c00133{left:317.308644px;}
.xa_c00133{left:319.123500px;}
.x69_c00133{left:322.694412px;}
.x5c_c00133{left:324.057696px;}
.x6e_c00133{left:326.031588px;}
.x75_c00133{left:327.957264px;}
.x1a_c00133{left:329.043000px;}
.x4b_c00133{left:330.696000px;}
.x7b_c00133{left:335.739012px;}
.x71_c00133{left:337.954404px;}
.x46_c00133{left:341.854500px;}
.x58_c00133{left:342.987060px;}
.x4e_c00133{left:345.828000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fs12_c00133{font-size:52.281717pt;}
.fs6_c00133{font-size:54.133333pt;}
.fsc_c00133{font-size:54.148921pt;}
.fsa_c00133{font-size:54.157688pt;}
.fs5_c00133{font-size:55.066667pt;}
.fsb_c00133{font-size:55.082524pt;}
.fs8_c00133{font-size:56.000000pt;}
.fsf_c00133{font-size:56.016126pt;}
.fs4_c00133{font-size:56.933333pt;}
.fs10_c00133{font-size:56.949728pt;}
.fs0_c00133{font-size:58.800000pt;}
.fs9_c00133{font-size:60.666667pt;}
.fse_c00133{font-size:60.684136pt;}
.fs7_c00133{font-size:61.600000pt;}
.fs11_c00133{font-size:62.551340pt;}
.fs3_c00133{font-size:63.466667pt;}
.fs2_c00133{font-size:64.400000pt;}
.fsd_c00133{font-size:64.418545pt;}
.fs1_c00133{font-size:65.333333pt;}
.fs13_c00133{font-size:70.953759pt;}
.y0_c00133{bottom:0.000000pt;}
.yeb_c00133{bottom:18.412651pt;}
.yec_c00133{bottom:19.594101pt;}
.yed_c00133{bottom:20.260928pt;}
.yee_c00133{bottom:21.761056pt;}
.yef_c00133{bottom:23.349408pt;}
.yf0_c00133{bottom:24.030635pt;}
.ye2_c00133{bottom:34.255136pt;}
.ye3_c00133{bottom:34.957056pt;}
.ye4_c00133{bottom:35.582933pt;}
.ye5_c00133{bottom:36.023669pt;}
.ye6_c00133{bottom:38.244949pt;}
.ye7_c00133{bottom:39.025493pt;}
.ye8_c00133{bottom:40.846773pt;}
.ye9_c00133{bottom:41.459840pt;}
.yea_c00133{bottom:41.884341pt;}
.yda_c00133{bottom:50.098933pt;}
.ydb_c00133{bottom:51.202955pt;}
.ydc_c00133{bottom:51.626987pt;}
.ydd_c00133{bottom:52.281248pt;}
.yde_c00133{bottom:53.771669pt;}
.ydf_c00133{bottom:55.290411pt;}
.ye0_c00133{bottom:55.796011pt;}
.ye1_c00133{bottom:56.587776pt;}
.yd1_c00133{bottom:65.231179pt;}
.yd2_c00133{bottom:66.577931pt;}
.yd3_c00133{bottom:67.212085pt;}
.yd4_c00133{bottom:68.992619pt;}
.yd5_c00133{bottom:70.229269pt;}
.yd6_c00133{bottom:70.782987pt;}
.yd7_c00133{bottom:71.697941pt;}
.yd8_c00133{bottom:72.212085pt;}
.yd9_c00133{bottom:72.893611pt;}
.ycb_c00133{bottom:80.833803pt;}
.ycc_c00133{bottom:82.747819pt;}
.ycd_c00133{bottom:83.394592pt;}
.yce_c00133{bottom:84.645995pt;}
.ycf_c00133{bottom:85.086560pt;}
.yd0_c00133{bottom:86.600064pt;}
.yc3_c00133{bottom:95.961760pt;}
.yc4_c00133{bottom:98.372917pt;}
.yc5_c00133{bottom:98.967947pt;}
.yc6_c00133{bottom:99.946613pt;}
.yc7_c00133{bottom:100.342944pt;}
.yc8_c00133{bottom:100.969888pt;}
.yc9_c00133{bottom:102.292373pt;}
.yca_c00133{bottom:102.637216pt;}
.ybb_c00133{bottom:111.565461pt;}
.ybc_c00133{bottom:113.671136pt;}
.ybd_c00133{bottom:113.988075pt;}
.ybe_c00133{bottom:114.604309pt;}
.ybf_c00133{bottom:115.663296pt;}
.yc0_c00133{bottom:116.962624pt;}
.yc1_c00133{bottom:117.758997pt;}
.yc2_c00133{bottom:118.700256pt;}
.yb3_c00133{bottom:127.642165pt;}
.yb4_c00133{bottom:128.527797pt;}
.yb5_c00133{bottom:129.584768pt;}
.yb6_c00133{bottom:130.836459pt;}
.yb7_c00133{bottom:131.271264pt;}
.yb8_c00133{bottom:131.708661pt;}
.yb9_c00133{bottom:132.572512pt;}
.yba_c00133{bottom:133.096405pt;}
.yac_c00133{bottom:144.685323pt;}
.yad_c00133{bottom:145.626848pt;}
.yae_c00133{bottom:146.554389pt;}
.yaf_c00133{bottom:148.585003pt;}
.yb0_c00133{bottom:149.206016pt;}
.yb1_c00133{bottom:149.596288pt;}
.yb2_c00133{bottom:150.353643pt;}
.ya5_c00133{bottom:160.529077pt;}
.ya6_c00133{bottom:160.885483pt;}
.ya7_c00133{bottom:161.965675pt;}
.ya8_c00133{bottom:162.832949pt;}
.ya9_c00133{bottom:163.376448pt;}
.yaa_c00133{bottom:164.637504pt;}
.yab_c00133{bottom:165.157056pt;}
.y9e_c00133{bottom:176.613291pt;}
.y9f_c00133{bottom:177.054976pt;}
.ya0_c00133{bottom:178.677675pt;}
.ya1_c00133{bottom:179.174613pt;}
.ya2_c00133{bottom:179.525632pt;}
.ya3_c00133{bottom:180.631808pt;}
.ya4_c00133{bottom:180.986293pt;}
.y97_c00133{bottom:191.976832pt;}
.y98_c00133{bottom:192.609045pt;}
.y99_c00133{bottom:192.976203pt;}
.y9a_c00133{bottom:194.141675pt;}
.y9b_c00133{bottom:194.432149pt;}
.y9c_c00133{bottom:194.803637pt;}
.y9d_c00133{bottom:195.889568pt;}
.y8d_c00133{bottom:207.581685pt;}
.y8e_c00133{bottom:207.760768pt;}
.y8f_c00133{bottom:208.152683pt;}
.y90_c00133{bottom:208.825589pt;}
.y91_c00133{bottom:209.006379pt;}
.y92_c00133{bottom:209.234581pt;}
.y93_c00133{bottom:209.928000pt;}
.y94_c00133{bottom:210.483136pt;}
.y95_c00133{bottom:210.892896pt;}
.y96_c00133{bottom:211.639776pt;}
.y86_c00133{bottom:222.948331pt;}
.y87_c00133{bottom:223.536992pt;}
.y88_c00133{bottom:223.814283pt;}
.y89_c00133{bottom:224.946901pt;}
.y8a_c00133{bottom:226.008949pt;}
.y8b_c00133{bottom:226.482656pt;}
.y8c_c00133{bottom:227.353803pt;}
.y7e_c00133{bottom:238.074773pt;}
.y7f_c00133{bottom:239.456149pt;}
.y80_c00133{bottom:239.784331pt;}
.y81_c00133{bottom:240.158016pt;}
.y82_c00133{bottom:241.018133pt;}
.y83_c00133{bottom:241.346219pt;}
.y84_c00133{bottom:241.685109pt;}
.y85_c00133{bottom:242.725568pt;}
.y75_c00133{bottom:253.440608pt;}
.y76_c00133{bottom:253.959317pt;}
.y77_c00133{bottom:255.053557pt;}
.y78_c00133{bottom:255.610837pt;}
.y79_c00133{bottom:256.271051pt;}
.y7a_c00133{bottom:257.240480pt;}
.y7b_c00133{bottom:257.582859pt;}
.y7c_c00133{bottom:258.500896pt;}
.y7d_c00133{bottom:258.939829pt;}
.y6f_c00133{bottom:268.806667pt;}
.y70_c00133{bottom:269.273931pt;}
.y71_c00133{bottom:270.674315pt;}
.y72_c00133{bottom:272.074155pt;}
.y73_c00133{bottom:273.306731pt;}
.y74_c00133{bottom:273.744907pt;}
.y6b_c00133{bottom:283.210667pt;}
.y6c_c00133{bottom:285.118667pt;}
.y6d_c00133{bottom:285.731027pt;}
.y6e_c00133{bottom:286.394227pt;}
.y66_c00133{bottom:298.324000pt;}
.y67_c00133{bottom:299.304000pt;}
.y68_c00133{bottom:301.545333pt;}
.y69_c00133{bottom:303.476000pt;}
.y6a_c00133{bottom:305.488000pt;}
.y5f_c00133{bottom:313.921333pt;}
.y60_c00133{bottom:315.178667pt;}
.y61_c00133{bottom:316.252000pt;}
.y62_c00133{bottom:317.926667pt;}
.y63_c00133{bottom:318.769333pt;}
.y64_c00133{bottom:319.425333pt;}
.y65_c00133{bottom:320.490667pt;}
.y56_c00133{bottom:330.958667pt;}
.y57_c00133{bottom:331.248000pt;}
.y58_c00133{bottom:332.028000pt;}
.y59_c00133{bottom:333.186667pt;}
.y5a_c00133{bottom:333.589333pt;}
.y5b_c00133{bottom:335.169333pt;}
.y5c_c00133{bottom:335.477333pt;}
.y5d_c00133{bottom:336.692000pt;}
.y5e_c00133{bottom:337.245333pt;}
.y4f_c00133{bottom:346.321333pt;}
.y50_c00133{bottom:347.681333pt;}
.y51_c00133{bottom:347.948000pt;}
.y52_c00133{bottom:348.929333pt;}
.y53_c00133{bottom:349.277333pt;}
.y54_c00133{bottom:350.570667pt;}
.y55_c00133{bottom:351.036000pt;}
.y46_c00133{bottom:362.161333pt;}
.y47_c00133{bottom:362.698667pt;}
.y48_c00133{bottom:362.986667pt;}
.y49_c00133{bottom:364.052000pt;}
.y4a_c00133{bottom:364.397333pt;}
.y4b_c00133{bottom:365.154667pt;}
.y4c_c00133{bottom:365.529333pt;}
.y4d_c00133{bottom:366.360000pt;}
.y4e_c00133{bottom:366.725333pt;}
.y3f_c00133{bottom:377.044000pt;}
.y40_c00133{bottom:377.530667pt;}
.y41_c00133{bottom:378.592000pt;}
.y42_c00133{bottom:379.810667pt;}
.y43_c00133{bottom:380.128000pt;}
.y44_c00133{bottom:381.764000pt;}
.y45_c00133{bottom:382.228000pt;}
.y37_c00133{bottom:393.362667pt;}
.y38_c00133{bottom:394.296000pt;}
.y39_c00133{bottom:394.497333pt;}
.y3a_c00133{bottom:395.182667pt;}
.y3b_c00133{bottom:396.130667pt;}
.y3c_c00133{bottom:396.545333pt;}
.y3d_c00133{bottom:396.828000pt;}
.y3e_c00133{bottom:397.848000pt;}
.y33_c00133{bottom:408.246667pt;}
.y34_c00133{bottom:410.790667pt;}
.y35_c00133{bottom:411.789333pt;}
.y36_c00133{bottom:412.860000pt;}
.y2d_c00133{bottom:424.321333pt;}
.y2e_c00133{bottom:424.605333pt;}
.y2f_c00133{bottom:425.080000pt;}
.y30_c00133{bottom:426.073333pt;}
.y31_c00133{bottom:426.525333pt;}
.y32_c00133{bottom:428.229333pt;}
.y25_c00133{bottom:439.202667pt;}
.y26_c00133{bottom:439.654667pt;}
.y27_c00133{bottom:440.125333pt;}
.y28_c00133{bottom:440.453333pt;}
.y29_c00133{bottom:441.929333pt;}
.y2a_c00133{bottom:442.246667pt;}
.y2b_c00133{bottom:443.390667pt;}
.y2c_c00133{bottom:443.744000pt;}
.y1d_c00133{bottom:454.565333pt;}
.y1e_c00133{bottom:455.492000pt;}
.y1f_c00133{bottom:455.842667pt;}
.y20_c00133{bottom:456.344000pt;}
.y21_c00133{bottom:456.665333pt;}
.y22_c00133{bottom:457.441333pt;}
.y23_c00133{bottom:457.864000pt;}
.y24_c00133{bottom:459.368000pt;}
.y14_c00133{bottom:470.162667pt;}
.y15_c00133{bottom:470.808000pt;}
.y16_c00133{bottom:471.833333pt;}
.y17_c00133{bottom:472.345333pt;}
.y18_c00133{bottom:472.878667pt;}
.y19_c00133{bottom:474.212000pt;}
.y1a_c00133{bottom:474.488000pt;}
.y1b_c00133{bottom:475.244000pt;}
.y1c_c00133{bottom:475.706667pt;}
.yb_c00133{bottom:483.854667pt;}
.yc_c00133{bottom:484.605333pt;}
.yd_c00133{bottom:485.530667pt;}
.ye_c00133{bottom:485.861333pt;}
.yf_c00133{bottom:487.100000pt;}
.y10_c00133{bottom:487.573333pt;}
.y11_c00133{bottom:488.652000pt;}
.y12_c00133{bottom:489.146667pt;}
.y13_c00133{bottom:490.660000pt;}
.y2_c00133{bottom:499.688000pt;}
.y3_c00133{bottom:501.018667pt;}
.y4_c00133{bottom:501.489333pt;}
.y5_c00133{bottom:502.082667pt;}
.y6_c00133{bottom:502.992000pt;}
.y7_c00133{bottom:503.664000pt;}
.y8_c00133{bottom:505.360000pt;}
.y9_c00133{bottom:505.704000pt;}
.ya_c00133{bottom:506.268000pt;}
.y1_c00133{bottom:518.994667pt;}
.h14_c00133{height:52.281717pt;}
.h8_c00133{height:54.133333pt;}
.he_c00133{height:54.148921pt;}
.hc_c00133{height:54.157688pt;}
.h7_c00133{height:55.066667pt;}
.hd_c00133{height:55.082524pt;}
.ha_c00133{height:56.000000pt;}
.h11_c00133{height:56.016126pt;}
.h6_c00133{height:56.933333pt;}
.h12_c00133{height:56.949728pt;}
.h2_c00133{height:58.800000pt;}
.hb_c00133{height:60.666667pt;}
.h10_c00133{height:60.684136pt;}
.h9_c00133{height:61.600000pt;}
.h13_c00133{height:62.551340pt;}
.h5_c00133{height:63.466667pt;}
.h4_c00133{height:64.400000pt;}
.hf_c00133{height:64.418545pt;}
.h3_c00133{height:65.333333pt;}
.h15_c00133{height:70.953759pt;}
.h0_c00133{height:563.733333pt;}
.h1_c00133{height:564.000000pt;}
.w0_c00133{width:330.480000pt;}
.w1_c00133{width:330.666667pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:39.930667pt;}
.x2d_c00133{left:41.721333pt;}
.x4f_c00133{left:42.614667pt;}
.x5d_c00133{left:43.889109pt;}
.x40_c00133{left:53.941333pt;}
.x27_c00133{left:56.605333pt;}
.x21_c00133{left:62.081333pt;}
.x34_c00133{left:63.628000pt;}
.x52_c00133{left:65.065333pt;}
.xb_c00133{left:66.049333pt;}
.x37_c00133{left:68.388000pt;}
.x13_c00133{left:69.786667pt;}
.x28_c00133{left:70.784000pt;}
.x5e_c00133{left:74.864821pt;}
.x60_c00133{left:76.944363pt;}
.x4c_c00133{left:78.389333pt;}
.x6a_c00133{left:79.541088pt;}
.x1b_c00133{left:82.489333pt;}
.x22_c00133{left:84.492000pt;}
.x41_c00133{left:86.420000pt;}
.x72_c00133{left:87.731744pt;}
.x3_c00133{left:89.224000pt;}
.x30_c00133{left:90.368000pt;}
.x7c_c00133{left:91.757024pt;}
.x29_c00133{left:94.549333pt;}
.xc_c00133{left:97.938667pt;}
.x76_c00133{left:98.974165pt;}
.x23_c00133{left:100.094667pt;}
.x3c_c00133{left:103.842667pt;}
.x4_c00133{left:106.673333pt;}
.x73_c00133{left:108.206987pt;}
.xd_c00133{left:109.341333pt;}
.x35_c00133{left:111.865333pt;}
.x14_c00133{left:116.418667pt;}
.x7d_c00133{left:118.429717pt;}
.x55_c00133{left:119.769376pt;}
.x1c_c00133{left:121.216000pt;}
.x77_c00133{left:122.343925pt;}
.x50_c00133{left:126.626667pt;}
.x5_c00133{left:128.646667pt;}
.x47_c00133{left:130.930667pt;}
.x59_c00133{left:133.203360pt;}
.x42_c00133{left:134.689333pt;}
.x1d_c00133{left:135.849333pt;}
.x31_c00133{left:137.006667pt;}
.x15_c00133{left:139.697333pt;}
.x61_c00133{left:140.589717pt;}
.x53_c00133{left:142.884000pt;}
.x2a_c00133{left:144.224000pt;}
.x56_c00133{left:146.324629pt;}
.x51_c00133{left:148.733333pt;}
.xe_c00133{left:152.053333pt;}
.x38_c00133{left:153.357333pt;}
.x1_c00133{left:159.120000pt;}
.x3d_c00133{left:160.582667pt;}
.x6_c00133{left:162.332000pt;}
.x16_c00133{left:163.930667pt;}
.x74_c00133{left:165.664021pt;}
.x2b_c00133{left:166.804000pt;}
.xf_c00133{left:168.360000pt;}
.x1e_c00133{left:171.122667pt;}
.x3e_c00133{left:176.409333pt;}
.x57_c00133{left:177.780235pt;}
.x65_c00133{left:179.532523pt;}
.x36_c00133{left:181.709333pt;}
.x24_c00133{left:185.532000pt;}
.x7_c00133{left:187.202667pt;}
.x6b_c00133{left:189.238432pt;}
.x1f_c00133{left:190.350667pt;}
.x39_c00133{left:191.252000pt;}
.x48_c00133{left:195.341333pt;}
.x6f_c00133{left:196.911541pt;}
.x5a_c00133{left:198.175168pt;}
.x66_c00133{left:200.180832pt;}
.x54_c00133{left:201.210667pt;}
.x79_c00133{left:203.163072pt;}
.x10_c00133{left:205.549333pt;}
.x6c_c00133{left:206.740683pt;}
.x32_c00133{left:208.762667pt;}
.x3a_c00133{left:209.978667pt;}
.x70_c00133{left:212.146805pt;}
.x62_c00133{left:214.014037pt;}
.x5b_c00133{left:215.458581pt;}
.x43_c00133{left:217.342667pt;}
.x2e_c00133{left:218.881333pt;}
.x11_c00133{left:222.609333pt;}
.x17_c00133{left:224.548000pt;}
.x49_c00133{left:227.732000pt;}
.x44_c00133{left:230.170667pt;}
.x4d_c00133{left:232.908000pt;}
.x3f_c00133{left:235.197333pt;}
.x18_c00133{left:237.122667pt;}
.x63_c00133{left:238.091403pt;}
.x25_c00133{left:239.998667pt;}
.x6d_c00133{left:241.289184pt;}
.x78_c00133{left:247.835861pt;}
.x8_c00133{left:250.037333pt;}
.x2c_c00133{left:251.998667pt;}
.x4a_c00133{left:252.958667pt;}
.x26_c00133{left:256.806667pt;}
.x20_c00133{left:258.728000pt;}
.x67_c00133{left:260.492171pt;}
.x9_c00133{left:262.768000pt;}
.x7a_c00133{left:263.874336pt;}
.x68_c00133{left:267.121963pt;}
.x3b_c00133{left:269.772000pt;}
.x19_c00133{left:271.457333pt;}
.x2f_c00133{left:272.389333pt;}
.x12_c00133{left:274.794667pt;}
.x5f_c00133{left:275.811616pt;}
.x33_c00133{left:277.364000pt;}
.x45_c00133{left:280.804000pt;}
.x64_c00133{left:282.052128pt;}
.xa_c00133{left:283.665333pt;}
.x69_c00133{left:286.839477pt;}
.x5c_c00133{left:288.051285pt;}
.x6e_c00133{left:289.805856pt;}
.x75_c00133{left:291.517568pt;}
.x1a_c00133{left:292.482667pt;}
.x4b_c00133{left:293.952000pt;}
.x7b_c00133{left:298.434677pt;}
.x71_c00133{left:300.403915pt;}
.x46_c00133{left:303.870667pt;}
.x58_c00133{left:304.877387pt;}
.x4e_c00133{left:307.402667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00134 {
    display:none;
  }
  .loading-indicator_c00134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00134 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00134 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00134" -> "#page-container .classname_c00134")
 */
.pf_c00134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00134 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00134 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00134 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00134 {overflow:visible;}
  }
}
.c_c00134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00134 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00134:after { /* webkit #35443 */
  content: '';
}
.t_c00134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00134 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00134 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00134 { /* info for Javascript */
  display:none;
}
.l_c00134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00134:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00134 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00134.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00134;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf5_c00134{transform:matrix(0.095450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095450,0.000000,0.000000,0.250000,0,0);}
.mc9_c00134{transform:matrix(0.134055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134055,0.000000,0.000000,0.250000,0,0);}
.m80_c00134{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);}
.ma5_c00134{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m7a_c00134{transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);}
.ma0_c00134{transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);}
.mb5_c00134{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.mfb_c00134{transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00134{transform:matrix(0.151990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151990,0.000000,0.000000,0.250000,0,0);}
.maf_c00134{transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);}
.mca_c00134{transform:matrix(0.154265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154265,0.000000,0.000000,0.250000,0,0);}
.m86_c00134{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m5d_c00134{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m77_c00134{transform:matrix(0.155255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155255,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m7e_c00134{transform:matrix(0.156215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156215,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.156455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156455,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.157365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157365,0.000000,0.000000,0.250000,0,0);}
.mc4_c00134{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m84_c00134{transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);}
.m5a_c00134{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m7c_c00134{transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);}
.m99_c00134{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.161335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161335,0.000000,0.000000,0.250000,0,0);}
.m87_c00134{transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);}
.m40_c00134{transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);}
.m3d_c00134{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.ma6_c00134{transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);}
.m75_c00134{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.mce_c00134{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.mcb_c00134{transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);}
.m7f_c00134{transform:matrix(0.164720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164720,0.000000,0.000000,0.250000,0,0);}
.m59_c00134{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m5c_c00134{transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00134{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.me5_c00134{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.mbc_c00134{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m72_c00134{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m78_c00134{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.mc6_c00134{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.maa_c00134{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);}
.m1d_c00134{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m5f_c00134{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m65_c00134{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171690,0.000000,0.000000,0.250000,0,0);}
.md9_c00134{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.m5e_c00134{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m38_c00134{transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);}
.m56_c00134{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.md6_c00134{transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);}
.m24_c00134{transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);}
.m8c_c00134{transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);}
.m92_c00134{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.mcd_c00134{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.mb2_c00134{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.mc7_c00134{transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.mf7_c00134{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.mc5_c00134{transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);}
.mcc_c00134{transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);}
.mb1_c00134{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mef_c00134{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00134{transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);}
.m8d_c00134{transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);}
.mf4_c00134{transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);}
.m7d_c00134{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m27_c00134{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m71_c00134{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.mdf_c00134{transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);}
.mc2_c00134{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.meb_c00134{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00134{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m66_c00134{transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);}
.mc8_c00134{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00134{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.mac_c00134{transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);}
.m9c_c00134{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.md4_c00134{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.mb3_c00134{transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);}
.m88_c00134{transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);}
.mf6_c00134{transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);}
.mc0_c00134{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.me4_c00134{transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);}
.mf8_c00134{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.ma4_c00134{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m44_c00134{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);}
.m97_c00134{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m82_c00134{transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);}
.me0_c00134{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);}
.mbb_c00134{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.m57_c00134{transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);}
.m61_c00134{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.mf3_c00134{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m8e_c00134{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.mdd_c00134{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m33_c00134{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m83_c00134{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m76_c00134{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);}
.mbd_c00134{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m48_c00134{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00134{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.m6f_c00134{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m50_c00134{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.m64_c00134{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.m7b_c00134{transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);}
.m8a_c00134{transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);}
.m6b_c00134{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);}
.me2_c00134{transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);}
.mb8_c00134{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m89_c00134{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.ma1_c00134{transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m60_c00134{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m94_c00134{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m81_c00134{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m70_c00134{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.mc1_c00134{transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);}
.mfa_c00134{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.m41_c00134{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m23_c00134{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.mee_c00134{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.mde_c00134{transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);}
.mc3_c00134{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m2e_c00134{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.mbf_c00134{transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);}
.m8f_c00134{transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);}
.ma2_c00134{transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);}
.mb9_c00134{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.mda_c00134{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m74_c00134{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.me3_c00134{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m68_c00134{transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.mea_c00134{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m93_c00134{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m3a_c00134{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.mba_c00134{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m9d_c00134{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.ma9_c00134{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m67_c00134{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.mf1_c00134{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);}
.mbe_c00134{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m1b_c00134{transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);}
.mec_c00134{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m85_c00134{transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);}
.me7_c00134{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m58_c00134{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m9a_c00134{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.me6_c00134{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.mdb_c00134{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m14_c00134{transform:matrix(0.209090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209090,0.000000,0.000000,0.250000,0,0);}
.m9f_c00134{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m29_c00134{transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);}
.m9b_c00134{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.md3_c00134{transform:matrix(0.212305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212305,0.000000,0.000000,0.250000,0,0);}
.md7_c00134{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.m6c_c00134{transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);}
.mad_c00134{transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.ma7_c00134{transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);}
.mb6_c00134{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m79_c00134{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.ma8_c00134{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00134{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.mb4_c00134{transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219515,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m36_c00134{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00134{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.m69_c00134{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);}
.m2f_c00134{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.mab_c00134{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m62_c00134{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m95_c00134{transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);}
.mae_c00134{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m91_c00134{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00134{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);}
.mf2_c00134{transform:matrix(0.228795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228795,0.000000,0.000000,0.250000,0,0);}
.md5_c00134{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m98_c00134{transform:matrix(0.228910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228910,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);}
.m2a_c00134{transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);}
.med_c00134{transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);}
.m96_c00134{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);}
.m6a_c00134{transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);}
.m6d_c00134{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.m63_c00134{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m90_c00134{transform:matrix(0.237545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237545,0.000000,0.000000,0.250000,0,0);}
.m6e_c00134{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.mf0_c00134{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m73_c00134{transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);}
.md0_c00134{transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00134{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);}
.md2_c00134{transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);}
.md8_c00134{transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);}
.me9_c00134{transform:matrix(0.320805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320805,0.000000,0.000000,0.250000,0,0);}
.me8_c00134{transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);}
.md1_c00134{transform:matrix(0.556835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556835,0.000000,0.000000,0.250000,0,0);}
.me1_c00134{transform:matrix(0.600970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600970,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:0.000000px;}
.fc0_c00134{color:transparent;}
.fse_c00134{font-size:57.750000px;}
.fs6_c00134{font-size:59.850000px;}
.fs5_c00134{font-size:60.900000px;}
.fs9_c00134{font-size:61.950000px;}
.fs8_c00134{font-size:63.000000px;}
.fs3_c00134{font-size:64.050000px;}
.fs4_c00134{font-size:65.100000px;}
.fs2_c00134{font-size:66.150000px;}
.fsa_c00134{font-size:67.200000px;}
.fsb_c00134{font-size:68.250000px;}
.fs7_c00134{font-size:69.300000px;}
.fs1_c00134{font-size:70.350000px;}
.fsc_c00134{font-size:71.400000px;}
.fsf_c00134{font-size:72.450000px;}
.fsd_c00134{font-size:74.550000px;}
.fs0_c00134{font-size:80.850000px;}
.y0_c00134{bottom:0.000000px;}
.yf0_c00134{bottom:26.280000px;}
.yef_c00134{bottom:27.532500px;}
.yee_c00134{bottom:28.326000px;}
.yed_c00134{bottom:30.516000px;}
.yec_c00134{bottom:31.110000px;}
.yeb_c00134{bottom:31.708500px;}
.yea_c00134{bottom:32.034000px;}
.ye9_c00134{bottom:32.953500px;}
.ye8_c00134{bottom:42.621000px;}
.ye7_c00134{bottom:44.067000px;}
.ye6_c00134{bottom:44.724000px;}
.ye5_c00134{bottom:46.449000px;}
.ye4_c00134{bottom:60.979500px;}
.ye3_c00134{bottom:61.927500px;}
.ye2_c00134{bottom:62.472000px;}
.ye1_c00134{bottom:62.739000px;}
.ye0_c00134{bottom:63.084000px;}
.ydf_c00134{bottom:63.556500px;}
.yde_c00134{bottom:64.347000px;}
.ydd_c00134{bottom:65.074500px;}
.ydc_c00134{bottom:78.346500px;}
.ydb_c00134{bottom:79.039500px;}
.yda_c00134{bottom:79.519500px;}
.yd9_c00134{bottom:81.132000px;}
.yd8_c00134{bottom:81.898500px;}
.yd7_c00134{bottom:83.056500px;}
.yd6_c00134{bottom:85.602000px;}
.yd5_c00134{bottom:96.144000px;}
.yd4_c00134{bottom:96.859500px;}
.yd3_c00134{bottom:98.073000px;}
.yd2_c00134{bottom:98.539500px;}
.yd1_c00134{bottom:98.995500px;}
.yd0_c00134{bottom:99.724500px;}
.ycf_c00134{bottom:100.569000px;}
.yce_c00134{bottom:101.079000px;}
.ycd_c00134{bottom:101.413500px;}
.ycc_c00134{bottom:102.610500px;}
.ycb_c00134{bottom:112.840500px;}
.yca_c00134{bottom:113.704500px;}
.yc9_c00134{bottom:114.024000px;}
.yc8_c00134{bottom:115.452000px;}
.yc7_c00134{bottom:115.690500px;}
.yc6_c00134{bottom:116.797500px;}
.yc5_c00134{bottom:117.726000px;}
.yc4_c00134{bottom:130.399500px;}
.yc3_c00134{bottom:132.040500px;}
.yc2_c00134{bottom:133.507500px;}
.yc1_c00134{bottom:134.004000px;}
.yc0_c00134{bottom:135.493500px;}
.ybf_c00134{bottom:135.898500px;}
.ybe_c00134{bottom:136.176000px;}
.ybd_c00134{bottom:136.897500px;}
.ybc_c00134{bottom:147.736500px;}
.ybb_c00134{bottom:148.479000px;}
.yba_c00134{bottom:149.367000px;}
.yb9_c00134{bottom:149.751000px;}
.yb8_c00134{bottom:150.157500px;}
.yb7_c00134{bottom:150.936000px;}
.yb6_c00134{bottom:151.260000px;}
.yb5_c00134{bottom:152.064000px;}
.yb4_c00134{bottom:152.823000px;}
.yb3_c00134{bottom:165.526500px;}
.yb2_c00134{bottom:167.241000px;}
.yb1_c00134{bottom:169.314000px;}
.yb0_c00134{bottom:169.911000px;}
.yaf_c00134{bottom:171.471000px;}
.yae_c00134{bottom:171.976500px;}
.yad_c00134{bottom:173.500500px;}
.yac_c00134{bottom:174.970500px;}
.yab_c00134{bottom:181.578000px;}
.yaa_c00134{bottom:183.282000px;}
.ya9_c00134{bottom:183.765000px;}
.ya8_c00134{bottom:185.089500px;}
.ya7_c00134{bottom:186.519000px;}
.ya6_c00134{bottom:187.074000px;}
.ya5_c00134{bottom:187.963500px;}
.ya4_c00134{bottom:188.503500px;}
.ya3_c00134{bottom:189.003000px;}
.ya2_c00134{bottom:200.961000px;}
.ya1_c00134{bottom:202.137000px;}
.ya0_c00134{bottom:202.702500px;}
.y9f_c00134{bottom:204.346500px;}
.y9e_c00134{bottom:204.762000px;}
.y9d_c00134{bottom:205.531500px;}
.y9c_c00134{bottom:207.094500px;}
.y9b_c00134{bottom:217.089000px;}
.y9a_c00134{bottom:217.879500px;}
.y99_c00134{bottom:218.337000px;}
.y98_c00134{bottom:220.054500px;}
.y97_c00134{bottom:220.594500px;}
.y96_c00134{bottom:222.025500px;}
.y95_c00134{bottom:223.726500px;}
.y94_c00134{bottom:224.104500px;}
.y93_c00134{bottom:235.059000px;}
.y92_c00134{bottom:235.368000px;}
.y91_c00134{bottom:236.542500px;}
.y90_c00134{bottom:236.959500px;}
.y8f_c00134{bottom:237.462000px;}
.y8e_c00134{bottom:238.800000px;}
.y8d_c00134{bottom:239.229000px;}
.y8c_c00134{bottom:240.846000px;}
.y8b_c00134{bottom:251.509500px;}
.y8a_c00134{bottom:252.792000px;}
.y89_c00134{bottom:254.322000px;}
.y88_c00134{bottom:254.814000px;}
.y87_c00134{bottom:255.987000px;}
.y86_c00134{bottom:256.528500px;}
.y85_c00134{bottom:256.881000px;}
.y84_c00134{bottom:258.397500px;}
.y83_c00134{bottom:270.702000px;}
.y82_c00134{bottom:271.024500px;}
.y81_c00134{bottom:271.975500px;}
.y80_c00134{bottom:272.569500px;}
.y7f_c00134{bottom:272.973000px;}
.y7e_c00134{bottom:274.359000px;}
.y7d_c00134{bottom:274.932000px;}
.y7c_c00134{bottom:276.217500px;}
.y7b_c00134{bottom:287.355000px;}
.y7a_c00134{bottom:288.046500px;}
.y79_c00134{bottom:289.276500px;}
.y78_c00134{bottom:289.767000px;}
.y77_c00134{bottom:290.397000px;}
.y76_c00134{bottom:291.450000px;}
.y75_c00134{bottom:292.389000px;}
.y74_c00134{bottom:292.785000px;}
.y73_c00134{bottom:293.767500px;}
.y72_c00134{bottom:305.527500px;}
.y71_c00134{bottom:306.082500px;}
.y70_c00134{bottom:306.808500px;}
.y6f_c00134{bottom:308.136000px;}
.y6e_c00134{bottom:308.772000px;}
.y6d_c00134{bottom:309.588000px;}
.y6c_c00134{bottom:311.316000px;}
.y6b_c00134{bottom:323.257500px;}
.y6a_c00134{bottom:324.216000px;}
.y69_c00134{bottom:324.586500px;}
.y68_c00134{bottom:325.011000px;}
.y67_c00134{bottom:325.495500px;}
.y66_c00134{bottom:325.573500px;}
.y65_c00134{bottom:326.329500px;}
.y64_c00134{bottom:327.276000px;}
.y63_c00134{bottom:327.784500px;}
.y62_c00134{bottom:341.410500px;}
.y61_c00134{bottom:341.856000px;}
.y60_c00134{bottom:342.699000px;}
.y5f_c00134{bottom:343.021500px;}
.y5e_c00134{bottom:343.920000px;}
.y5d_c00134{bottom:344.085000px;}
.y5c_c00134{bottom:344.523000px;}
.y5b_c00134{bottom:358.605000px;}
.y5a_c00134{bottom:374.836500px;}
.y59_c00134{bottom:375.055500px;}
.y58_c00134{bottom:375.420000px;}
.y57_c00134{bottom:375.768000px;}
.y56_c00134{bottom:376.008000px;}
.y55_c00134{bottom:376.587000px;}
.y54_c00134{bottom:376.786500px;}
.y53_c00134{bottom:377.601000px;}
.y52_c00134{bottom:378.274500px;}
.y51_c00134{bottom:391.537500px;}
.y50_c00134{bottom:392.197500px;}
.y4f_c00134{bottom:392.506500px;}
.y4e_c00134{bottom:393.009000px;}
.y4d_c00134{bottom:393.268500px;}
.y4c_c00134{bottom:393.754500px;}
.y4b_c00134{bottom:394.444500px;}
.y4a_c00134{bottom:394.788000px;}
.y49_c00134{bottom:395.014500px;}
.y48_c00134{bottom:409.819500px;}
.y47_c00134{bottom:410.098500px;}
.y46_c00134{bottom:411.463500px;}
.y45_c00134{bottom:412.266000px;}
.y44_c00134{bottom:413.376000px;}
.y43_c00134{bottom:426.417000px;}
.y42_c00134{bottom:427.003500px;}
.y41_c00134{bottom:427.288500px;}
.y40_c00134{bottom:427.456500px;}
.y3f_c00134{bottom:428.202000px;}
.y3e_c00134{bottom:428.668500px;}
.y3d_c00134{bottom:429.384000px;}
.y3c_c00134{bottom:429.844500px;}
.y3b_c00134{bottom:444.100500px;}
.y3a_c00134{bottom:444.370500px;}
.y39_c00134{bottom:444.712500px;}
.y38_c00134{bottom:444.970500px;}
.y37_c00134{bottom:445.516500px;}
.y36_c00134{bottom:445.795500px;}
.y35_c00134{bottom:446.547000px;}
.y34_c00134{bottom:446.746500px;}
.y33_c00134{bottom:447.123000px;}
.y32_c00134{bottom:461.620500px;}
.y31_c00134{bottom:462.172500px;}
.y30_c00134{bottom:462.546000px;}
.y2f_c00134{bottom:462.871500px;}
.y2e_c00134{bottom:463.120500px;}
.y2d_c00134{bottom:463.893000px;}
.y2c_c00134{bottom:464.130000px;}
.y2b_c00134{bottom:478.597500px;}
.y2a_c00134{bottom:478.873500px;}
.y29_c00134{bottom:479.293500px;}
.y28_c00134{bottom:479.536500px;}
.y27_c00134{bottom:479.976000px;}
.y26_c00134{bottom:480.234000px;}
.y25_c00134{bottom:480.840000px;}
.y24_c00134{bottom:481.681500px;}
.y23_c00134{bottom:496.615500px;}
.y22_c00134{bottom:496.788000px;}
.y21_c00134{bottom:497.058000px;}
.y20_c00134{bottom:497.955000px;}
.y1f_c00134{bottom:498.522000px;}
.y1e_c00134{bottom:498.745500px;}
.y1d_c00134{bottom:499.039500px;}
.y1c_c00134{bottom:499.233000px;}
.y1b_c00134{bottom:514.015500px;}
.y1a_c00134{bottom:514.152000px;}
.y19_c00134{bottom:514.756500px;}
.y18_c00134{bottom:514.938000px;}
.y17_c00134{bottom:515.320500px;}
.y16_c00134{bottom:515.823000px;}
.y15_c00134{bottom:516.028500px;}
.y14_c00134{bottom:516.241500px;}
.y13_c00134{bottom:531.720000px;}
.y12_c00134{bottom:548.872500px;}
.y11_c00134{bottom:549.060000px;}
.y10_c00134{bottom:549.285000px;}
.yf_c00134{bottom:550.227000px;}
.ye_c00134{bottom:550.420500px;}
.yd_c00134{bottom:550.566000px;}
.yc_c00134{bottom:551.296500px;}
.yb_c00134{bottom:551.611500px;}
.ya_c00134{bottom:566.412000px;}
.y9_c00134{bottom:566.790000px;}
.y8_c00134{bottom:567.231000px;}
.y7_c00134{bottom:567.658500px;}
.y6_c00134{bottom:568.141500px;}
.y5_c00134{bottom:568.530000px;}
.y4_c00134{bottom:568.738500px;}
.y3_c00134{bottom:569.241000px;}
.y2_c00134{bottom:569.431500px;}
.y1_c00134{bottom:581.433000px;}
.h10_c00134{height:57.750000px;}
.h8_c00134{height:59.850000px;}
.h7_c00134{height:60.900000px;}
.hb_c00134{height:61.950000px;}
.ha_c00134{height:63.000000px;}
.h5_c00134{height:64.050000px;}
.h6_c00134{height:65.100000px;}
.h4_c00134{height:66.150000px;}
.hc_c00134{height:67.200000px;}
.hd_c00134{height:68.250000px;}
.h9_c00134{height:69.300000px;}
.h3_c00134{height:70.350000px;}
.he_c00134{height:71.400000px;}
.h11_c00134{height:72.450000px;}
.hf_c00134{height:74.550000px;}
.h2_c00134{height:80.850000px;}
.h0_c00134{height:634.200000px;}
.h1_c00134{height:634.500000px;}
.w0_c00134{width:371.790000px;}
.w1_c00134{width:372.000000px;}
.x0_c00134{left:0.000000px;}
.xc_c00134{left:14.701500px;}
.x1d_c00134{left:20.638500px;}
.x3_c00134{left:22.846500px;}
.x62_c00134{left:25.407000px;}
.x65_c00134{left:28.626000px;}
.x1_c00134{left:32.940000px;}
.x4_c00134{left:38.739000px;}
.x3b_c00134{left:40.122000px;}
.xd_c00134{left:43.342500px;}
.x46_c00134{left:44.817000px;}
.x14_c00134{left:47.251500px;}
.x4e_c00134{left:52.465500px;}
.x2b_c00134{left:55.482000px;}
.x33_c00134{left:59.793000px;}
.x6b_c00134{left:60.799500px;}
.x67_c00134{left:62.133000px;}
.x18_c00134{left:64.405500px;}
.x4b_c00134{left:67.629000px;}
.x3c_c00134{left:68.715000px;}
.x2c_c00134{left:73.584000px;}
.x5c_c00134{left:76.389000px;}
.x5_c00134{left:80.586000px;}
.x6f_c00134{left:81.811500px;}
.x57_c00134{left:82.878000px;}
.x1e_c00134{left:85.189500px;}
.x66_c00134{left:86.494500px;}
.x47_c00134{left:91.527000px;}
.x39_c00134{left:95.412000px;}
.x6_c00134{left:97.915500px;}
.x5f_c00134{left:99.988500px;}
.x5d_c00134{left:101.302500px;}
.x6c_c00134{left:103.143000px;}
.x52_c00134{left:106.132500px;}
.x63_c00134{left:108.535500px;}
.xe_c00134{left:109.770000px;}
.x15_c00134{left:112.051500px;}
.x27_c00134{left:113.319000px;}
.x19_c00134{left:114.642000px;}
.x34_c00134{left:119.467500px;}
.xf_c00134{left:122.983500px;}
.x3d_c00134{left:126.220500px;}
.x7_c00134{left:130.300500px;}
.x1f_c00134{left:136.759500px;}
.x10_c00134{left:140.535000px;}
.x2d_c00134{left:141.888000px;}
.x48_c00134{left:143.097000px;}
.x53_c00134{left:146.950500px;}
.x3a_c00134{left:148.872000px;}
.x41_c00134{left:151.329000px;}
.x1a_c00134{left:152.964000px;}
.x70_c00134{left:154.777500px;}
.x2_c00134{left:157.140000px;}
.x35_c00134{left:158.344500px;}
.x4c_c00134{left:161.595000px;}
.x4f_c00134{left:163.699500px;}
.x28_c00134{left:165.648000px;}
.x2e_c00134{left:167.301000px;}
.x6a_c00134{left:168.718500px;}
.x8_c00134{left:170.518500px;}
.x58_c00134{left:173.415000px;}
.x22_c00134{left:175.903500px;}
.x68_c00134{left:177.129000px;}
.x54_c00134{left:178.765500px;}
.x75_c00134{left:180.711000px;}
.x6d_c00134{left:182.653500px;}
.x71_c00134{left:184.126500px;}
.x49_c00134{left:187.107000px;}
.x16_c00134{left:189.271500px;}
.x60_c00134{left:191.928000px;}
.x50_c00134{left:193.936500px;}
.x42_c00134{left:195.868500px;}
.x29_c00134{left:199.660500px;}
.x59_c00134{left:202.039500px;}
.x5e_c00134{left:204.897000px;}
.x9_c00134{left:206.127000px;}
.x61_c00134{left:207.891000px;}
.x17_c00134{left:211.681500px;}
.x43_c00134{left:214.291500px;}
.x23_c00134{left:215.871000px;}
.x2f_c00134{left:216.996000px;}
.x20_c00134{left:218.292000px;}
.x36_c00134{left:220.449000px;}
.x5a_c00134{left:224.337000px;}
.x11_c00134{left:226.120500px;}
.x3e_c00134{left:230.155500px;}
.x1b_c00134{left:231.577500px;}
.x37_c00134{left:234.477000px;}
.x24_c00134{left:238.002000px;}
.x30_c00134{left:240.432000px;}
.xa_c00134{left:242.890500px;}
.x1c_c00134{left:245.299500px;}
.x12_c00134{left:246.640500px;}
.x2a_c00134{left:249.877500px;}
.x72_c00134{left:251.355000px;}
.x3f_c00134{left:255.850500px;}
.x21_c00134{left:258.514500px;}
.x4d_c00134{left:260.661000px;}
.x13_c00134{left:263.658000px;}
.x44_c00134{left:269.032500px;}
.x31_c00134{left:271.480500px;}
.xb_c00134{left:274.437000px;}
.x25_c00134{left:276.121500px;}
.x5b_c00134{left:280.266000px;}
.x55_c00134{left:281.443500px;}
.x73_c00134{left:283.533000px;}
.x45_c00134{left:285.832500px;}
.x6e_c00134{left:288.705000px;}
.x32_c00134{left:296.047500px;}
.x4a_c00134{left:298.617000px;}
.x26_c00134{left:301.174500px;}
.x51_c00134{left:303.537000px;}
.x64_c00134{left:305.976000px;}
.x38_c00134{left:307.102500px;}
.x56_c00134{left:309.156000px;}
.x40_c00134{left:310.884000px;}
.x74_c00134{left:314.656500px;}
.x69_c00134{left:317.590500px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
.fse_c00134{font-size:51.333333pt;}
.fs6_c00134{font-size:53.200000pt;}
.fs5_c00134{font-size:54.133333pt;}
.fs9_c00134{font-size:55.066667pt;}
.fs8_c00134{font-size:56.000000pt;}
.fs3_c00134{font-size:56.933333pt;}
.fs4_c00134{font-size:57.866667pt;}
.fs2_c00134{font-size:58.800000pt;}
.fsa_c00134{font-size:59.733333pt;}
.fsb_c00134{font-size:60.666667pt;}
.fs7_c00134{font-size:61.600000pt;}
.fs1_c00134{font-size:62.533333pt;}
.fsc_c00134{font-size:63.466667pt;}
.fsf_c00134{font-size:64.400000pt;}
.fsd_c00134{font-size:66.266667pt;}
.fs0_c00134{font-size:71.866667pt;}
.y0_c00134{bottom:0.000000pt;}
.yf0_c00134{bottom:23.360000pt;}
.yef_c00134{bottom:24.473333pt;}
.yee_c00134{bottom:25.178667pt;}
.yed_c00134{bottom:27.125333pt;}
.yec_c00134{bottom:27.653333pt;}
.yeb_c00134{bottom:28.185333pt;}
.yea_c00134{bottom:28.474667pt;}
.ye9_c00134{bottom:29.292000pt;}
.ye8_c00134{bottom:37.885333pt;}
.ye7_c00134{bottom:39.170667pt;}
.ye6_c00134{bottom:39.754667pt;}
.ye5_c00134{bottom:41.288000pt;}
.ye4_c00134{bottom:54.204000pt;}
.ye3_c00134{bottom:55.046667pt;}
.ye2_c00134{bottom:55.530667pt;}
.ye1_c00134{bottom:55.768000pt;}
.ye0_c00134{bottom:56.074667pt;}
.ydf_c00134{bottom:56.494667pt;}
.yde_c00134{bottom:57.197333pt;}
.ydd_c00134{bottom:57.844000pt;}
.ydc_c00134{bottom:69.641333pt;}
.ydb_c00134{bottom:70.257333pt;}
.yda_c00134{bottom:70.684000pt;}
.yd9_c00134{bottom:72.117333pt;}
.yd8_c00134{bottom:72.798667pt;}
.yd7_c00134{bottom:73.828000pt;}
.yd6_c00134{bottom:76.090667pt;}
.yd5_c00134{bottom:85.461333pt;}
.yd4_c00134{bottom:86.097333pt;}
.yd3_c00134{bottom:87.176000pt;}
.yd2_c00134{bottom:87.590667pt;}
.yd1_c00134{bottom:87.996000pt;}
.yd0_c00134{bottom:88.644000pt;}
.ycf_c00134{bottom:89.394667pt;}
.yce_c00134{bottom:89.848000pt;}
.ycd_c00134{bottom:90.145333pt;}
.ycc_c00134{bottom:91.209333pt;}
.ycb_c00134{bottom:100.302667pt;}
.yca_c00134{bottom:101.070667pt;}
.yc9_c00134{bottom:101.354667pt;}
.yc8_c00134{bottom:102.624000pt;}
.yc7_c00134{bottom:102.836000pt;}
.yc6_c00134{bottom:103.820000pt;}
.yc5_c00134{bottom:104.645333pt;}
.yc4_c00134{bottom:115.910667pt;}
.yc3_c00134{bottom:117.369333pt;}
.yc2_c00134{bottom:118.673333pt;}
.yc1_c00134{bottom:119.114667pt;}
.yc0_c00134{bottom:120.438667pt;}
.ybf_c00134{bottom:120.798667pt;}
.ybe_c00134{bottom:121.045333pt;}
.ybd_c00134{bottom:121.686667pt;}
.ybc_c00134{bottom:131.321333pt;}
.ybb_c00134{bottom:131.981333pt;}
.yba_c00134{bottom:132.770667pt;}
.yb9_c00134{bottom:133.112000pt;}
.yb8_c00134{bottom:133.473333pt;}
.yb7_c00134{bottom:134.165333pt;}
.yb6_c00134{bottom:134.453333pt;}
.yb5_c00134{bottom:135.168000pt;}
.yb4_c00134{bottom:135.842667pt;}
.yb3_c00134{bottom:147.134667pt;}
.yb2_c00134{bottom:148.658667pt;}
.yb1_c00134{bottom:150.501333pt;}
.yb0_c00134{bottom:151.032000pt;}
.yaf_c00134{bottom:152.418667pt;}
.yae_c00134{bottom:152.868000pt;}
.yad_c00134{bottom:154.222667pt;}
.yac_c00134{bottom:155.529333pt;}
.yab_c00134{bottom:161.402667pt;}
.yaa_c00134{bottom:162.917333pt;}
.ya9_c00134{bottom:163.346667pt;}
.ya8_c00134{bottom:164.524000pt;}
.ya7_c00134{bottom:165.794667pt;}
.ya6_c00134{bottom:166.288000pt;}
.ya5_c00134{bottom:167.078667pt;}
.ya4_c00134{bottom:167.558667pt;}
.ya3_c00134{bottom:168.002667pt;}
.ya2_c00134{bottom:178.632000pt;}
.ya1_c00134{bottom:179.677333pt;}
.ya0_c00134{bottom:180.180000pt;}
.y9f_c00134{bottom:181.641333pt;}
.y9e_c00134{bottom:182.010667pt;}
.y9d_c00134{bottom:182.694667pt;}
.y9c_c00134{bottom:184.084000pt;}
.y9b_c00134{bottom:192.968000pt;}
.y9a_c00134{bottom:193.670667pt;}
.y99_c00134{bottom:194.077333pt;}
.y98_c00134{bottom:195.604000pt;}
.y97_c00134{bottom:196.084000pt;}
.y96_c00134{bottom:197.356000pt;}
.y95_c00134{bottom:198.868000pt;}
.y94_c00134{bottom:199.204000pt;}
.y93_c00134{bottom:208.941333pt;}
.y92_c00134{bottom:209.216000pt;}
.y91_c00134{bottom:210.260000pt;}
.y90_c00134{bottom:210.630667pt;}
.y8f_c00134{bottom:211.077333pt;}
.y8e_c00134{bottom:212.266667pt;}
.y8d_c00134{bottom:212.648000pt;}
.y8c_c00134{bottom:214.085333pt;}
.y8b_c00134{bottom:223.564000pt;}
.y8a_c00134{bottom:224.704000pt;}
.y89_c00134{bottom:226.064000pt;}
.y88_c00134{bottom:226.501333pt;}
.y87_c00134{bottom:227.544000pt;}
.y86_c00134{bottom:228.025333pt;}
.y85_c00134{bottom:228.338667pt;}
.y84_c00134{bottom:229.686667pt;}
.y83_c00134{bottom:240.624000pt;}
.y82_c00134{bottom:240.910667pt;}
.y81_c00134{bottom:241.756000pt;}
.y80_c00134{bottom:242.284000pt;}
.y7f_c00134{bottom:242.642667pt;}
.y7e_c00134{bottom:243.874667pt;}
.y7d_c00134{bottom:244.384000pt;}
.y7c_c00134{bottom:245.526667pt;}
.y7b_c00134{bottom:255.426667pt;}
.y7a_c00134{bottom:256.041333pt;}
.y79_c00134{bottom:257.134667pt;}
.y78_c00134{bottom:257.570667pt;}
.y77_c00134{bottom:258.130667pt;}
.y76_c00134{bottom:259.066667pt;}
.y75_c00134{bottom:259.901333pt;}
.y74_c00134{bottom:260.253333pt;}
.y73_c00134{bottom:261.126667pt;}
.y72_c00134{bottom:271.580000pt;}
.y71_c00134{bottom:272.073333pt;}
.y70_c00134{bottom:272.718667pt;}
.y6f_c00134{bottom:273.898667pt;}
.y6e_c00134{bottom:274.464000pt;}
.y6d_c00134{bottom:275.189333pt;}
.y6c_c00134{bottom:276.725333pt;}
.y6b_c00134{bottom:287.340000pt;}
.y6a_c00134{bottom:288.192000pt;}
.y69_c00134{bottom:288.521333pt;}
.y68_c00134{bottom:288.898667pt;}
.y67_c00134{bottom:289.329333pt;}
.y66_c00134{bottom:289.398667pt;}
.y65_c00134{bottom:290.070667pt;}
.y64_c00134{bottom:290.912000pt;}
.y63_c00134{bottom:291.364000pt;}
.y62_c00134{bottom:303.476000pt;}
.y61_c00134{bottom:303.872000pt;}
.y60_c00134{bottom:304.621333pt;}
.y5f_c00134{bottom:304.908000pt;}
.y5e_c00134{bottom:305.706667pt;}
.y5d_c00134{bottom:305.853333pt;}
.y5c_c00134{bottom:306.242667pt;}
.y5b_c00134{bottom:318.760000pt;}
.y5a_c00134{bottom:333.188000pt;}
.y59_c00134{bottom:333.382667pt;}
.y58_c00134{bottom:333.706667pt;}
.y57_c00134{bottom:334.016000pt;}
.y56_c00134{bottom:334.229333pt;}
.y55_c00134{bottom:334.744000pt;}
.y54_c00134{bottom:334.921333pt;}
.y53_c00134{bottom:335.645333pt;}
.y52_c00134{bottom:336.244000pt;}
.y51_c00134{bottom:348.033333pt;}
.y50_c00134{bottom:348.620000pt;}
.y4f_c00134{bottom:348.894667pt;}
.y4e_c00134{bottom:349.341333pt;}
.y4d_c00134{bottom:349.572000pt;}
.y4c_c00134{bottom:350.004000pt;}
.y4b_c00134{bottom:350.617333pt;}
.y4a_c00134{bottom:350.922667pt;}
.y49_c00134{bottom:351.124000pt;}
.y48_c00134{bottom:364.284000pt;}
.y47_c00134{bottom:364.532000pt;}
.y46_c00134{bottom:365.745333pt;}
.y45_c00134{bottom:366.458667pt;}
.y44_c00134{bottom:367.445333pt;}
.y43_c00134{bottom:379.037333pt;}
.y42_c00134{bottom:379.558667pt;}
.y41_c00134{bottom:379.812000pt;}
.y40_c00134{bottom:379.961333pt;}
.y3f_c00134{bottom:380.624000pt;}
.y3e_c00134{bottom:381.038667pt;}
.y3d_c00134{bottom:381.674667pt;}
.y3c_c00134{bottom:382.084000pt;}
.y3b_c00134{bottom:394.756000pt;}
.y3a_c00134{bottom:394.996000pt;}
.y39_c00134{bottom:395.300000pt;}
.y38_c00134{bottom:395.529333pt;}
.y37_c00134{bottom:396.014667pt;}
.y36_c00134{bottom:396.262667pt;}
.y35_c00134{bottom:396.930667pt;}
.y34_c00134{bottom:397.108000pt;}
.y33_c00134{bottom:397.442667pt;}
.y32_c00134{bottom:410.329333pt;}
.y31_c00134{bottom:410.820000pt;}
.y30_c00134{bottom:411.152000pt;}
.y2f_c00134{bottom:411.441333pt;}
.y2e_c00134{bottom:411.662667pt;}
.y2d_c00134{bottom:412.349333pt;}
.y2c_c00134{bottom:412.560000pt;}
.y2b_c00134{bottom:425.420000pt;}
.y2a_c00134{bottom:425.665333pt;}
.y29_c00134{bottom:426.038667pt;}
.y28_c00134{bottom:426.254667pt;}
.y27_c00134{bottom:426.645333pt;}
.y26_c00134{bottom:426.874667pt;}
.y25_c00134{bottom:427.413333pt;}
.y24_c00134{bottom:428.161333pt;}
.y23_c00134{bottom:441.436000pt;}
.y22_c00134{bottom:441.589333pt;}
.y21_c00134{bottom:441.829333pt;}
.y20_c00134{bottom:442.626667pt;}
.y1f_c00134{bottom:443.130667pt;}
.y1e_c00134{bottom:443.329333pt;}
.y1d_c00134{bottom:443.590667pt;}
.y1c_c00134{bottom:443.762667pt;}
.y1b_c00134{bottom:456.902667pt;}
.y1a_c00134{bottom:457.024000pt;}
.y19_c00134{bottom:457.561333pt;}
.y18_c00134{bottom:457.722667pt;}
.y17_c00134{bottom:458.062667pt;}
.y16_c00134{bottom:458.509333pt;}
.y15_c00134{bottom:458.692000pt;}
.y14_c00134{bottom:458.881333pt;}
.y13_c00134{bottom:472.640000pt;}
.y12_c00134{bottom:487.886667pt;}
.y11_c00134{bottom:488.053333pt;}
.y10_c00134{bottom:488.253333pt;}
.yf_c00134{bottom:489.090667pt;}
.ye_c00134{bottom:489.262667pt;}
.yd_c00134{bottom:489.392000pt;}
.yc_c00134{bottom:490.041333pt;}
.yb_c00134{bottom:490.321333pt;}
.ya_c00134{bottom:503.477333pt;}
.y9_c00134{bottom:503.813333pt;}
.y8_c00134{bottom:504.205333pt;}
.y7_c00134{bottom:504.585333pt;}
.y6_c00134{bottom:505.014667pt;}
.y5_c00134{bottom:505.360000pt;}
.y4_c00134{bottom:505.545333pt;}
.y3_c00134{bottom:505.992000pt;}
.y2_c00134{bottom:506.161333pt;}
.y1_c00134{bottom:516.829333pt;}
.h10_c00134{height:51.333333pt;}
.h8_c00134{height:53.200000pt;}
.h7_c00134{height:54.133333pt;}
.hb_c00134{height:55.066667pt;}
.ha_c00134{height:56.000000pt;}
.h5_c00134{height:56.933333pt;}
.h6_c00134{height:57.866667pt;}
.h4_c00134{height:58.800000pt;}
.hc_c00134{height:59.733333pt;}
.hd_c00134{height:60.666667pt;}
.h9_c00134{height:61.600000pt;}
.h3_c00134{height:62.533333pt;}
.he_c00134{height:63.466667pt;}
.h11_c00134{height:64.400000pt;}
.hf_c00134{height:66.266667pt;}
.h2_c00134{height:71.866667pt;}
.h0_c00134{height:563.733333pt;}
.h1_c00134{height:564.000000pt;}
.w0_c00134{width:330.480000pt;}
.w1_c00134{width:330.666667pt;}
.x0_c00134{left:0.000000pt;}
.xc_c00134{left:13.068000pt;}
.x1d_c00134{left:18.345333pt;}
.x3_c00134{left:20.308000pt;}
.x62_c00134{left:22.584000pt;}
.x65_c00134{left:25.445333pt;}
.x1_c00134{left:29.280000pt;}
.x4_c00134{left:34.434667pt;}
.x3b_c00134{left:35.664000pt;}
.xd_c00134{left:38.526667pt;}
.x46_c00134{left:39.837333pt;}
.x14_c00134{left:42.001333pt;}
.x4e_c00134{left:46.636000pt;}
.x2b_c00134{left:49.317333pt;}
.x33_c00134{left:53.149333pt;}
.x6b_c00134{left:54.044000pt;}
.x67_c00134{left:55.229333pt;}
.x18_c00134{left:57.249333pt;}
.x4b_c00134{left:60.114667pt;}
.x3c_c00134{left:61.080000pt;}
.x2c_c00134{left:65.408000pt;}
.x5c_c00134{left:67.901333pt;}
.x5_c00134{left:71.632000pt;}
.x6f_c00134{left:72.721333pt;}
.x57_c00134{left:73.669333pt;}
.x1e_c00134{left:75.724000pt;}
.x66_c00134{left:76.884000pt;}
.x47_c00134{left:81.357333pt;}
.x39_c00134{left:84.810667pt;}
.x6_c00134{left:87.036000pt;}
.x5f_c00134{left:88.878667pt;}
.x5d_c00134{left:90.046667pt;}
.x6c_c00134{left:91.682667pt;}
.x52_c00134{left:94.340000pt;}
.x63_c00134{left:96.476000pt;}
.xe_c00134{left:97.573333pt;}
.x15_c00134{left:99.601333pt;}
.x27_c00134{left:100.728000pt;}
.x19_c00134{left:101.904000pt;}
.x34_c00134{left:106.193333pt;}
.xf_c00134{left:109.318667pt;}
.x3d_c00134{left:112.196000pt;}
.x7_c00134{left:115.822667pt;}
.x1f_c00134{left:121.564000pt;}
.x10_c00134{left:124.920000pt;}
.x2d_c00134{left:126.122667pt;}
.x48_c00134{left:127.197333pt;}
.x53_c00134{left:130.622667pt;}
.x3a_c00134{left:132.330667pt;}
.x41_c00134{left:134.514667pt;}
.x1a_c00134{left:135.968000pt;}
.x70_c00134{left:137.580000pt;}
.x2_c00134{left:139.680000pt;}
.x35_c00134{left:140.750667pt;}
.x4c_c00134{left:143.640000pt;}
.x4f_c00134{left:145.510667pt;}
.x28_c00134{left:147.242667pt;}
.x2e_c00134{left:148.712000pt;}
.x6a_c00134{left:149.972000pt;}
.x8_c00134{left:151.572000pt;}
.x58_c00134{left:154.146667pt;}
.x22_c00134{left:156.358667pt;}
.x68_c00134{left:157.448000pt;}
.x54_c00134{left:158.902667pt;}
.x75_c00134{left:160.632000pt;}
.x6d_c00134{left:162.358667pt;}
.x71_c00134{left:163.668000pt;}
.x49_c00134{left:166.317333pt;}
.x16_c00134{left:168.241333pt;}
.x60_c00134{left:170.602667pt;}
.x50_c00134{left:172.388000pt;}
.x42_c00134{left:174.105333pt;}
.x29_c00134{left:177.476000pt;}
.x59_c00134{left:179.590667pt;}
.x5e_c00134{left:182.130667pt;}
.x9_c00134{left:183.224000pt;}
.x61_c00134{left:184.792000pt;}
.x17_c00134{left:188.161333pt;}
.x43_c00134{left:190.481333pt;}
.x23_c00134{left:191.885333pt;}
.x2f_c00134{left:192.885333pt;}
.x20_c00134{left:194.037333pt;}
.x36_c00134{left:195.954667pt;}
.x5a_c00134{left:199.410667pt;}
.x11_c00134{left:200.996000pt;}
.x3e_c00134{left:204.582667pt;}
.x1b_c00134{left:205.846667pt;}
.x37_c00134{left:208.424000pt;}
.x24_c00134{left:211.557333pt;}
.x30_c00134{left:213.717333pt;}
.xa_c00134{left:215.902667pt;}
.x1c_c00134{left:218.044000pt;}
.x12_c00134{left:219.236000pt;}
.x2a_c00134{left:222.113333pt;}
.x72_c00134{left:223.426667pt;}
.x3f_c00134{left:227.422667pt;}
.x21_c00134{left:229.790667pt;}
.x4d_c00134{left:231.698667pt;}
.x13_c00134{left:234.362667pt;}
.x44_c00134{left:239.140000pt;}
.x31_c00134{left:241.316000pt;}
.xb_c00134{left:243.944000pt;}
.x25_c00134{left:245.441333pt;}
.x5b_c00134{left:249.125333pt;}
.x55_c00134{left:250.172000pt;}
.x73_c00134{left:252.029333pt;}
.x45_c00134{left:254.073333pt;}
.x6e_c00134{left:256.626667pt;}
.x32_c00134{left:263.153333pt;}
.x4a_c00134{left:265.437333pt;}
.x26_c00134{left:267.710667pt;}
.x51_c00134{left:269.810667pt;}
.x64_c00134{left:271.978667pt;}
.x38_c00134{left:272.980000pt;}
.x56_c00134{left:274.805333pt;}
.x40_c00134{left:276.341333pt;}
.x74_c00134{left:279.694667pt;}
.x69_c00134{left:282.302667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00135 {
    display:none;
  }
  .loading-indicator_c00135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00135 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00135 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00135" -> "#page-container .classname_c00135")
 */
.pf_c00135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00135 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00135 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00135 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00135 {overflow:visible;}
  }
}
.c_c00135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00135 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00135:after { /* webkit #35443 */
  content: '';
}
.t_c00135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00135 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00135 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00135 { /* info for Javascript */
  display:none;
}
.l_c00135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00135:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00135 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00135.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8d_c00135{transform:matrix(0.101988,-0.001224,0.003000,0.249982,0,0);-ms-transform:matrix(0.101988,-0.001224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.101988,-0.001224,0.003000,0.249982,0,0);}
.m93_c00135{transform:matrix(0.112567,-0.001351,0.003000,0.249982,0,0);-ms-transform:matrix(0.112567,-0.001351,0.003000,0.249982,0,0);-webkit-transform:matrix(0.112567,-0.001351,0.003000,0.249982,0,0);}
.m7e_c00135{transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);}
.m94_c00135{transform:matrix(0.136335,-0.001636,0.003000,0.249982,0,0);-ms-transform:matrix(0.136335,-0.001636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.136335,-0.001636,0.003000,0.249982,0,0);}
.m16_c00135{transform:matrix(0.142305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142305,0.000000,0.000000,0.250000,0,0);}
.maf_c00135{transform:matrix(0.143955,-0.001727,0.003000,0.249982,0,0);-ms-transform:matrix(0.143955,-0.001727,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143955,-0.001727,0.003000,0.249982,0,0);}
.m7f_c00135{transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m57_c00135{transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m60_c00135{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m65_c00135{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.152370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152370,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.152420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152420,0.000000,0.000000,0.250000,0,0);}
.mef_c00135{transform:matrix(0.152954,-0.004130,0.006748,0.249909,0,0);-ms-transform:matrix(0.152954,-0.004130,0.006748,0.249909,0,0);-webkit-transform:matrix(0.152954,-0.004130,0.006748,0.249909,0,0);}
.m2b_c00135{transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);}
.m92_c00135{transform:matrix(0.153334,-0.001840,0.003000,0.249982,0,0);-ms-transform:matrix(0.153334,-0.001840,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153334,-0.001840,0.003000,0.249982,0,0);}
.m32_c00135{transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m5d_c00135{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00135{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00135{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.mf0_c00135{transform:matrix(0.158177,-0.004271,0.006748,0.249909,0,0);-ms-transform:matrix(0.158177,-0.004271,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158177,-0.004271,0.006748,0.249909,0,0);}
.me9_c00135{transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);-ms-transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159073,-0.003659,0.005748,0.249934,0,0);}
.mf_c00135{transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);}
.m8b_c00135{transform:matrix(0.159838,-0.001918,0.003000,0.249982,0,0);-ms-transform:matrix(0.159838,-0.001918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159838,-0.001918,0.003000,0.249982,0,0);}
.m56_c00135{transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);}
.ma6_c00135{transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);-ms-transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);}
.m26_c00135{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);}
.m8e_c00135{transform:matrix(0.163888,-0.001967,0.003000,0.249982,0,0);-ms-transform:matrix(0.163888,-0.001967,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163888,-0.001967,0.003000,0.249982,0,0);}
.m25_c00135{transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);}
.mab_c00135{transform:matrix(0.164693,-0.001976,0.003000,0.249982,0,0);-ms-transform:matrix(0.164693,-0.001976,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164693,-0.001976,0.003000,0.249982,0,0);}
.m35_c00135{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.m40_c00135{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m64_c00135{transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);}
.me7_c00135{transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);-ms-transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);}
.m5a_c00135{transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);}
.ma7_c00135{transform:matrix(0.169123,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169123,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169123,-0.002029,0.003000,0.249982,0,0);}
.m10_c00135{transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);}
.ma5_c00135{transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);-ms-transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);}
.m7c_c00135{transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);}
.mac_c00135{transform:matrix(0.170778,-0.002049,0.003000,0.249982,0,0);-ms-transform:matrix(0.170778,-0.002049,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170778,-0.002049,0.003000,0.249982,0,0);}
.me6_c00135{transform:matrix(0.170903,-0.005127,0.007497,0.249888,0,0);-ms-transform:matrix(0.170903,-0.005127,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170903,-0.005127,0.007497,0.249888,0,0);}
.mf1_c00135{transform:matrix(0.171068,-0.004619,0.006748,0.249909,0,0);-ms-transform:matrix(0.171068,-0.004619,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171068,-0.004619,0.006748,0.249909,0,0);}
.m14_c00135{transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);}
.mad_c00135{transform:matrix(0.171718,-0.002061,0.003000,0.249982,0,0);-ms-transform:matrix(0.171718,-0.002061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171718,-0.002061,0.003000,0.249982,0,0);}
.m6e_c00135{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.mdd_c00135{transform:matrix(0.172517,-0.005176,0.007497,0.249888,0,0);-ms-transform:matrix(0.172517,-0.005176,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172517,-0.005176,0.007497,0.249888,0,0);}
.mcb_c00135{transform:matrix(0.172528,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172528,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172528,-0.002070,0.003000,0.249982,0,0);}
.maa_c00135{transform:matrix(0.172613,-0.002071,0.003000,0.249982,0,0);-ms-transform:matrix(0.172613,-0.002071,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172613,-0.002071,0.003000,0.249982,0,0);}
.me1_c00135{transform:matrix(0.172707,-0.005181,0.007497,0.249888,0,0);-ms-transform:matrix(0.172707,-0.005181,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172707,-0.005181,0.007497,0.249888,0,0);}
.m1c_c00135{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.mcd_c00135{transform:matrix(0.173283,-0.002079,0.003000,0.249982,0,0);-ms-transform:matrix(0.173283,-0.002079,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173283,-0.002079,0.003000,0.249982,0,0);}
.m2_c00135{transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.m48_c00135{transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);}
.mc9_c00135{transform:matrix(0.174127,-0.002090,0.003000,0.249982,0,0);-ms-transform:matrix(0.174127,-0.002090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174127,-0.002090,0.003000,0.249982,0,0);}
.m1f_c00135{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.mec_c00135{transform:matrix(0.175116,-0.004728,0.006748,0.249909,0,0);-ms-transform:matrix(0.175116,-0.004728,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175116,-0.004728,0.006748,0.249909,0,0);}
.m97_c00135{transform:matrix(0.175297,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175297,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175297,-0.002104,0.003000,0.249982,0,0);}
.m80_c00135{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.ma1_c00135{transform:matrix(0.176322,-0.002116,0.003000,0.249982,0,0);-ms-transform:matrix(0.176322,-0.002116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176322,-0.002116,0.003000,0.249982,0,0);}
.m42_c00135{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.mca_c00135{transform:matrix(0.177667,-0.002132,0.003000,0.249982,0,0);-ms-transform:matrix(0.177667,-0.002132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177667,-0.002132,0.003000,0.249982,0,0);}
.m31_c00135{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.mee_c00135{transform:matrix(0.177725,-0.004799,0.006748,0.249909,0,0);-ms-transform:matrix(0.177725,-0.004799,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177725,-0.004799,0.006748,0.249909,0,0);}
.m95_c00135{transform:matrix(0.178307,-0.002140,0.003000,0.249982,0,0);-ms-transform:matrix(0.178307,-0.002140,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178307,-0.002140,0.003000,0.249982,0,0);}
.m91_c00135{transform:matrix(0.178807,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178807,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178807,-0.002146,0.003000,0.249982,0,0);}
.mc_c00135{transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.me8_c00135{transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);-ms-transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);}
.m88_c00135{transform:matrix(0.180162,-0.002162,0.003000,0.249982,0,0);-ms-transform:matrix(0.180162,-0.002162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180162,-0.002162,0.003000,0.249982,0,0);}
.m7b_c00135{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m8c_c00135{transform:matrix(0.181467,-0.002178,0.003000,0.249982,0,0);-ms-transform:matrix(0.181467,-0.002178,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181467,-0.002178,0.003000,0.249982,0,0);}
.m98_c00135{transform:matrix(0.181522,-0.002178,0.003000,0.249982,0,0);-ms-transform:matrix(0.181522,-0.002178,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181522,-0.002178,0.003000,0.249982,0,0);}
.m61_c00135{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.m6a_c00135{transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);}
.m90_c00135{transform:matrix(0.182622,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182622,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182622,-0.002191,0.003000,0.249982,0,0);}
.mb_c00135{transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);}
.m53_c00135{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.m62_c00135{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.mc4_c00135{transform:matrix(0.184237,-0.002211,0.003000,0.249982,0,0);-ms-transform:matrix(0.184237,-0.002211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184237,-0.002211,0.003000,0.249982,0,0);}
.meb_c00135{transform:matrix(0.184451,-0.004242,0.005748,0.249934,0,0);-ms-transform:matrix(0.184451,-0.004242,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184451,-0.004242,0.005748,0.249934,0,0);}
.m27_c00135{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m58_c00135{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m99_c00135{transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);-ms-transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185537,-0.002226,0.003000,0.249982,0,0);}
.md9_c00135{transform:matrix(0.186137,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186137,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186137,-0.002234,0.003000,0.249982,0,0);}
.m72_c00135{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m74_c00135{transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);}
.m52_c00135{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);}
.m54_c00135{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m4a_c00135{transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m9a_c00135{transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);}
.m13_c00135{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m73_c00135{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m9d_c00135{transform:matrix(0.188001,-0.002256,0.003000,0.249982,0,0);-ms-transform:matrix(0.188001,-0.002256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188001,-0.002256,0.003000,0.249982,0,0);}
.m55_c00135{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.mbb_c00135{transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);}
.m4f_c00135{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.mce_c00135{transform:matrix(0.190486,-0.002286,0.003000,0.249982,0,0);-ms-transform:matrix(0.190486,-0.002286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190486,-0.002286,0.003000,0.249982,0,0);}
.m9_c00135{transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);}
.m4d_c00135{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.md0_c00135{transform:matrix(0.191576,-0.002299,0.003000,0.249982,0,0);-ms-transform:matrix(0.191576,-0.002299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191576,-0.002299,0.003000,0.249982,0,0);}
.md8_c00135{transform:matrix(0.191766,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191766,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191766,-0.002301,0.003000,0.249982,0,0);}
.mbf_c00135{transform:matrix(0.191861,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191861,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191861,-0.002302,0.003000,0.249982,0,0);}
.m8f_c00135{transform:matrix(0.191991,-0.002304,0.003000,0.249982,0,0);-ms-transform:matrix(0.191991,-0.002304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191991,-0.002304,0.003000,0.249982,0,0);}
.m45_c00135{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m50_c00135{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.ma2_c00135{transform:matrix(0.192721,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192721,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192721,-0.002313,0.003000,0.249982,0,0);}
.m51_c00135{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193345,0.000000,0.000000,0.250000,0,0);}
.m3b_c00135{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m9f_c00135{transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);}
.m3d_c00135{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.m82_c00135{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.194110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194110,0.000000,0.000000,0.250000,0,0);}
.mb6_c00135{transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);-ms-transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);}
.m75_c00135{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.mdc_c00135{transform:matrix(0.194862,-0.005846,0.007497,0.249888,0,0);-ms-transform:matrix(0.194862,-0.005846,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194862,-0.005846,0.007497,0.249888,0,0);}
.md2_c00135{transform:matrix(0.194891,-0.002339,0.003000,0.249982,0,0);-ms-transform:matrix(0.194891,-0.002339,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194891,-0.002339,0.003000,0.249982,0,0);}
.m23_c00135{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);}
.mb2_c00135{transform:matrix(0.196316,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196316,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196316,-0.002356,0.003000,0.249982,0,0);}
.m2f_c00135{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m69_c00135{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.mb4_c00135{transform:matrix(0.197706,-0.002372,0.003000,0.249982,0,0);-ms-transform:matrix(0.197706,-0.002372,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197706,-0.002372,0.003000,0.249982,0,0);}
.m79_c00135{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.mb0_c00135{transform:matrix(0.197976,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.197976,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197976,-0.002376,0.003000,0.249982,0,0);}
.m3c_c00135{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m5b_c00135{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.me2_c00135{transform:matrix(0.198641,-0.005959,0.007497,0.249888,0,0);-ms-transform:matrix(0.198641,-0.005959,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198641,-0.005959,0.007497,0.249888,0,0);}
.mbc_c00135{transform:matrix(0.198946,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198946,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198946,-0.002387,0.003000,0.249982,0,0);}
.mdb_c00135{transform:matrix(0.199490,-0.005985,0.007497,0.249888,0,0);-ms-transform:matrix(0.199490,-0.005985,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199490,-0.005985,0.007497,0.249888,0,0);}
.mb8_c00135{transform:matrix(0.199716,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199716,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199716,-0.002397,0.003000,0.249982,0,0);}
.m81_c00135{transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);}
.mc3_c00135{transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);}
.m37_c00135{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.mcf_c00135{transform:matrix(0.203140,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203140,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203140,-0.002438,0.003000,0.249982,0,0);}
.m0_c00135{transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);}
.m63_c00135{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m59_c00135{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.m76_c00135{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00135{transform:matrix(0.204160,-0.002450,0.003000,0.249982,0,0);-ms-transform:matrix(0.204160,-0.002450,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204160,-0.002450,0.003000,0.249982,0,0);}
.m9c_c00135{transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204680,-0.002456,0.003000,0.249982,0,0);}
.m5e_c00135{transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);}
.me4_c00135{transform:matrix(0.205647,-0.006169,0.007497,0.249888,0,0);-ms-transform:matrix(0.205647,-0.006169,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205647,-0.006169,0.007497,0.249888,0,0);}
.mda_c00135{transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205740,-0.002469,0.003000,0.249982,0,0);}
.m39_c00135{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mea_c00135{transform:matrix(0.205821,-0.004734,0.005748,0.249934,0,0);-ms-transform:matrix(0.205821,-0.004734,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205821,-0.004734,0.005748,0.249934,0,0);}
.me5_c00135{transform:matrix(0.205822,-0.006175,0.007497,0.249888,0,0);-ms-transform:matrix(0.205822,-0.006175,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205822,-0.006175,0.007497,0.249888,0,0);}
.mde_c00135{transform:matrix(0.206157,-0.006185,0.007497,0.249888,0,0);-ms-transform:matrix(0.206157,-0.006185,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206157,-0.006185,0.007497,0.249888,0,0);}
.m24_c00135{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.med_c00135{transform:matrix(0.207015,-0.005589,0.006748,0.249909,0,0);-ms-transform:matrix(0.207015,-0.005589,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207015,-0.005589,0.006748,0.249909,0,0);}
.m71_c00135{transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);}
.md4_c00135{transform:matrix(0.208325,-0.002500,0.003000,0.249982,0,0);-ms-transform:matrix(0.208325,-0.002500,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208325,-0.002500,0.003000,0.249982,0,0);}
.mb7_c00135{transform:matrix(0.208660,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208660,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208660,-0.002504,0.003000,0.249982,0,0);}
.m7d_c00135{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.ma4_c00135{transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);-ms-transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);}
.m67_c00135{transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);}
.ma9_c00135{transform:matrix(0.209510,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209510,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209510,-0.002514,0.003000,0.249982,0,0);}
.m3_c00135{transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);}
.ma8_c00135{transform:matrix(0.209795,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209795,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209795,-0.002518,0.003000,0.249982,0,0);}
.mb9_c00135{transform:matrix(0.210605,-0.002527,0.003000,0.249982,0,0);-ms-transform:matrix(0.210605,-0.002527,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210605,-0.002527,0.003000,0.249982,0,0);}
.m46_c00135{transform:matrix(0.212735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212735,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m1b_c00135{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.m6b_c00135{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00135{transform:matrix(0.217394,-0.002609,0.003000,0.249982,0,0);-ms-transform:matrix(0.217394,-0.002609,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217394,-0.002609,0.003000,0.249982,0,0);}
.mc0_c00135{transform:matrix(0.217474,-0.002610,0.003000,0.249982,0,0);-ms-transform:matrix(0.217474,-0.002610,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217474,-0.002610,0.003000,0.249982,0,0);}
.m86_c00135{transform:matrix(0.218004,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.218004,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218004,-0.002616,0.003000,0.249982,0,0);}
.m8a_c00135{transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);-ms-transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218309,-0.002620,0.003000,0.249982,0,0);}
.md5_c00135{transform:matrix(0.218349,-0.002620,0.003000,0.249982,0,0);-ms-transform:matrix(0.218349,-0.002620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218349,-0.002620,0.003000,0.249982,0,0);}
.mbd_c00135{transform:matrix(0.218589,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218589,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218589,-0.002623,0.003000,0.249982,0,0);}
.mbe_c00135{transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);-ms-transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);}
.m9b_c00135{transform:matrix(0.219064,-0.002629,0.003000,0.249982,0,0);-ms-transform:matrix(0.219064,-0.002629,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219064,-0.002629,0.003000,0.249982,0,0);}
.m87_c00135{transform:matrix(0.220504,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220504,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220504,-0.002646,0.003000,0.249982,0,0);}
.ma3_c00135{transform:matrix(0.220864,-0.002650,0.003000,0.249982,0,0);-ms-transform:matrix(0.220864,-0.002650,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220864,-0.002650,0.003000,0.249982,0,0);}
.md7_c00135{transform:matrix(0.221114,-0.002653,0.003000,0.249982,0,0);-ms-transform:matrix(0.221114,-0.002653,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221114,-0.002653,0.003000,0.249982,0,0);}
.m4c_c00135{transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);}
.m89_c00135{transform:matrix(0.222334,-0.002668,0.003000,0.249982,0,0);-ms-transform:matrix(0.222334,-0.002668,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222334,-0.002668,0.003000,0.249982,0,0);}
.md3_c00135{transform:matrix(0.222554,-0.002671,0.003000,0.249982,0,0);-ms-transform:matrix(0.222554,-0.002671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222554,-0.002671,0.003000,0.249982,0,0);}
.ma0_c00135{transform:matrix(0.222719,-0.002673,0.003000,0.249982,0,0);-ms-transform:matrix(0.222719,-0.002673,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222719,-0.002673,0.003000,0.249982,0,0);}
.md6_c00135{transform:matrix(0.223119,-0.002677,0.003000,0.249982,0,0);-ms-transform:matrix(0.223119,-0.002677,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223119,-0.002677,0.003000,0.249982,0,0);}
.m68_c00135{transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);}
.mb5_c00135{transform:matrix(0.224294,-0.002692,0.003000,0.249982,0,0);-ms-transform:matrix(0.224294,-0.002692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224294,-0.002692,0.003000,0.249982,0,0);}
.me0_c00135{transform:matrix(0.224704,-0.006741,0.007497,0.249888,0,0);-ms-transform:matrix(0.224704,-0.006741,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224704,-0.006741,0.007497,0.249888,0,0);}
.mb1_c00135{transform:matrix(0.226439,-0.002717,0.003000,0.249982,0,0);-ms-transform:matrix(0.226439,-0.002717,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226439,-0.002717,0.003000,0.249982,0,0);}
.me3_c00135{transform:matrix(0.227203,-0.006816,0.007497,0.249888,0,0);-ms-transform:matrix(0.227203,-0.006816,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227203,-0.006816,0.007497,0.249888,0,0);}
.mc8_c00135{transform:matrix(0.228284,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228284,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228284,-0.002739,0.003000,0.249982,0,0);}
.m7a_c00135{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);}
.mc1_c00135{transform:matrix(0.229553,-0.002755,0.003000,0.249982,0,0);-ms-transform:matrix(0.229553,-0.002755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229553,-0.002755,0.003000,0.249982,0,0);}
.m84_c00135{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.m96_c00135{transform:matrix(0.231433,-0.002777,0.003000,0.249982,0,0);-ms-transform:matrix(0.231433,-0.002777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231433,-0.002777,0.003000,0.249982,0,0);}
.m38_c00135{transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.m6c_c00135{transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);}
.m6d_c00135{transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);}
.m6f_c00135{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m70_c00135{transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);}
.mdf_c00135{transform:matrix(0.235199,-0.007056,0.007497,0.249888,0,0);-ms-transform:matrix(0.235199,-0.007056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235199,-0.007056,0.007497,0.249888,0,0);}
.mc6_c00135{transform:matrix(0.237278,-0.002847,0.003000,0.249982,0,0);-ms-transform:matrix(0.237278,-0.002847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237278,-0.002847,0.003000,0.249982,0,0);}
.mae_c00135{transform:matrix(0.243033,-0.002916,0.003000,0.249982,0,0);-ms-transform:matrix(0.243033,-0.002916,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243033,-0.002916,0.003000,0.249982,0,0);}
.md1_c00135{transform:matrix(0.246537,-0.002958,0.003000,0.249982,0,0);-ms-transform:matrix(0.246537,-0.002958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246537,-0.002958,0.003000,0.249982,0,0);}
.m7_c00135{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.mba_c00135{transform:matrix(0.259326,-0.003112,0.003000,0.249982,0,0);-ms-transform:matrix(0.259326,-0.003112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259326,-0.003112,0.003000,0.249982,0,0);}
.mcc_c00135{transform:matrix(0.268086,-0.003217,0.003000,0.249982,0,0);-ms-transform:matrix(0.268086,-0.003217,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268086,-0.003217,0.003000,0.249982,0,0);}
.mc7_c00135{transform:matrix(0.269831,-0.003238,0.003000,0.249982,0,0);-ms-transform:matrix(0.269831,-0.003238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269831,-0.003238,0.003000,0.249982,0,0);}
.mb3_c00135{transform:matrix(0.277830,-0.003334,0.003000,0.249982,0,0);-ms-transform:matrix(0.277830,-0.003334,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277830,-0.003334,0.003000,0.249982,0,0);}
.mc2_c00135{transform:matrix(0.299093,-0.003589,0.003000,0.249982,0,0);-ms-transform:matrix(0.299093,-0.003589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299093,-0.003589,0.003000,0.249982,0,0);}
.m85_c00135{transform:matrix(0.305933,-0.003671,0.003000,0.249982,0,0);-ms-transform:matrix(0.305933,-0.003671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.305933,-0.003671,0.003000,0.249982,0,0);}
.m1_c00135{transform:matrix(0.332730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332730,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.381495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381495,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:0.000000px;}
.fc0_c00135{color:transparent;}
.fs11_c00135{font-size:57.754158px;}
.fs9_c00135{font-size:59.850000px;}
.fs12_c00135{font-size:59.854309px;}
.fsc_c00135{font-size:60.904385px;}
.fsa_c00135{font-size:61.950000px;}
.fse_c00135{font-size:61.954460px;}
.fs14_c00135{font-size:61.977871px;}
.fs4_c00135{font-size:63.000000px;}
.fsf_c00135{font-size:63.004536px;}
.fs0_c00135{font-size:64.050000px;}
.fs13_c00135{font-size:64.054611px;}
.fsb_c00135{font-size:65.100000px;}
.fs7_c00135{font-size:66.150000px;}
.fs8_c00135{font-size:68.250000px;}
.fs3_c00135{font-size:69.300000px;}
.fs10_c00135{font-size:69.304989px;}
.fs5_c00135{font-size:70.350000px;}
.fs6_c00135{font-size:71.400000px;}
.fsd_c00135{font-size:71.405141px;}
.fs15_c00135{font-size:71.418883px;}
.fs2_c00135{font-size:72.450000px;}
.fs16_c00135{font-size:72.476403px;}
.fs1_c00135{font-size:74.550000px;}
.y0_c00135{bottom:0.000000px;}
.ydc_c00135{bottom:22.692000px;}
.ydd_c00135{bottom:24.464806px;}
.yde_c00135{bottom:24.808084px;}
.ydf_c00135{bottom:25.545103px;}
.ye0_c00135{bottom:26.088289px;}
.ye1_c00135{bottom:27.451033px;}
.yd7_c00135{bottom:40.777500px;}
.yd8_c00135{bottom:41.872012px;}
.yd9_c00135{bottom:43.695130px;}
.yda_c00135{bottom:44.337176px;}
.ydb_c00135{bottom:45.586351px;}
.yd1_c00135{bottom:58.315995px;}
.yd2_c00135{bottom:59.397345px;}
.yd3_c00135{bottom:60.674295px;}
.yd4_c00135{bottom:60.894840px;}
.yd5_c00135{bottom:61.984620px;}
.yd6_c00135{bottom:62.667855px;}
.yca_c00135{bottom:76.152000px;}
.ycb_c00135{bottom:76.998720px;}
.ycc_c00135{bottom:78.065175px;}
.ycd_c00135{bottom:78.811725px;}
.yce_c00135{bottom:80.729580px;}
.ycf_c00135{bottom:82.130475px;}
.yd0_c00135{bottom:82.901820px;}
.yc2_c00135{bottom:97.194864px;}
.yc3_c00135{bottom:97.587300px;}
.yc4_c00135{bottom:97.779774px;}
.yc5_c00135{bottom:98.225706px;}
.yc6_c00135{bottom:98.450190px;}
.yc7_c00135{bottom:99.068538px;}
.yc8_c00135{bottom:99.591462px;}
.yc9_c00135{bottom:99.868056px;}
.yba_c00135{bottom:108.822150px;}
.ybb_c00135{bottom:109.736016px;}
.ybc_c00135{bottom:110.377500px;}
.ybd_c00135{bottom:110.656578px;}
.ybe_c00135{bottom:113.708010px;}
.ybf_c00135{bottom:114.713904px;}
.yc0_c00135{bottom:116.597730px;}
.yc1_c00135{bottom:118.674618px;}
.yb1_c00135{bottom:129.068376px;}
.yb2_c00135{bottom:129.585666px;}
.yb3_c00135{bottom:130.974894px;}
.yb4_c00135{bottom:131.908626px;}
.yb5_c00135{bottom:132.509904px;}
.yb6_c00135{bottom:133.632618px;}
.yb7_c00135{bottom:133.927458px;}
.yb8_c00135{bottom:134.575650px;}
.yb9_c00135{bottom:135.030048px;}
.yaa_c00135{bottom:147.421368px;}
.yab_c00135{bottom:148.002378px;}
.yac_c00135{bottom:148.402872px;}
.yad_c00135{bottom:149.117934px;}
.yae_c00135{bottom:149.762610px;}
.yaf_c00135{bottom:150.174090px;}
.yb0_c00135{bottom:150.569202px;}
.ya4_c00135{bottom:167.233368px;}
.ya3_c00135{bottom:167.233962px;}
.ya5_c00135{bottom:167.233992px;}
.ya6_c00135{bottom:167.234736px;}
.ya9_c00135{bottom:167.235030px;}
.ya7_c00135{bottom:167.235240px;}
.ya8_c00135{bottom:167.235528px;}
.y9c_c00135{bottom:183.063900px;}
.y9d_c00135{bottom:184.392006px;}
.y9e_c00135{bottom:185.311092px;}
.y9f_c00135{bottom:186.914718px;}
.ya0_c00135{bottom:187.224378px;}
.ya1_c00135{bottom:188.233200px;}
.ya2_c00135{bottom:188.591712px;}
.y93_c00135{bottom:201.689022px;}
.y94_c00135{bottom:202.237128px;}
.y95_c00135{bottom:202.464990px;}
.y96_c00135{bottom:202.809438px;}
.y97_c00135{bottom:203.021202px;}
.y98_c00135{bottom:203.734242px;}
.y99_c00135{bottom:204.516744px;}
.y9a_c00135{bottom:204.772872px;}
.y9b_c00135{bottom:205.194978px;}
.y8b_c00135{bottom:218.970108px;}
.y8c_c00135{bottom:219.449862px;}
.y8d_c00135{bottom:219.906792px;}
.y8e_c00135{bottom:220.781412px;}
.y8f_c00135{bottom:220.985640px;}
.y90_c00135{bottom:221.228622px;}
.y91_c00135{bottom:222.012108px;}
.y92_c00135{bottom:222.349968px;}
.y84_c00135{bottom:236.252730px;}
.y85_c00135{bottom:237.160836px;}
.y86_c00135{bottom:237.658116px;}
.y87_c00135{bottom:238.540968px;}
.y88_c00135{bottom:239.028696px;}
.y89_c00135{bottom:240.054408px;}
.y8a_c00135{bottom:240.896376px;}
.y7c_c00135{bottom:253.800744px;}
.y7d_c00135{bottom:254.428746px;}
.y7e_c00135{bottom:254.631624px;}
.y7f_c00135{bottom:255.656448px;}
.y80_c00135{bottom:256.599792px;}
.y81_c00135{bottom:257.041416px;}
.y82_c00135{bottom:257.344344px;}
.y83_c00135{bottom:257.650122px;}
.y73_c00135{bottom:272.161500px;}
.y74_c00135{bottom:272.773896px;}
.y75_c00135{bottom:273.441210px;}
.y76_c00135{bottom:273.603354px;}
.y77_c00135{bottom:273.859296px;}
.y78_c00135{bottom:274.675092px;}
.y79_c00135{bottom:275.028306px;}
.y7a_c00135{bottom:275.249472px;}
.y7b_c00135{bottom:275.540892px;}
.y6b_c00135{bottom:288.631500px;}
.y6c_c00135{bottom:289.167000px;}
.y6d_c00135{bottom:289.438500px;}
.y6e_c00135{bottom:289.692000px;}
.y6f_c00135{bottom:289.945500px;}
.y70_c00135{bottom:291.007500px;}
.y71_c00135{bottom:291.321000px;}
.y72_c00135{bottom:291.654000px;}
.y64_c00135{bottom:306.181500px;}
.y65_c00135{bottom:306.612000px;}
.y66_c00135{bottom:307.408500px;}
.y67_c00135{bottom:307.656000px;}
.y68_c00135{bottom:308.632500px;}
.y69_c00135{bottom:309.924000px;}
.y6a_c00135{bottom:310.300500px;}
.y5c_c00135{bottom:323.193000px;}
.y5d_c00135{bottom:323.524500px;}
.y5e_c00135{bottom:324.601500px;}
.y5f_c00135{bottom:325.443000px;}
.y60_c00135{bottom:326.625000px;}
.y61_c00135{bottom:327.108000px;}
.y62_c00135{bottom:327.429000px;}
.y63_c00135{bottom:328.024500px;}
.y55_c00135{bottom:340.474500px;}
.y56_c00135{bottom:341.599500px;}
.y57_c00135{bottom:342.886500px;}
.y58_c00135{bottom:343.753500px;}
.y59_c00135{bottom:344.347500px;}
.y5a_c00135{bottom:345.333000px;}
.y5b_c00135{bottom:345.640500px;}
.y4b_c00135{bottom:359.641500px;}
.y4c_c00135{bottom:359.935500px;}
.y4d_c00135{bottom:360.129000px;}
.y4e_c00135{bottom:360.370500px;}
.y4f_c00135{bottom:360.957000px;}
.y50_c00135{bottom:361.245000px;}
.y51_c00135{bottom:361.956000px;}
.y52_c00135{bottom:362.677500px;}
.y53_c00135{bottom:363.294000px;}
.y54_c00135{bottom:363.585000px;}
.y43_c00135{bottom:376.383000px;}
.y44_c00135{bottom:376.894500px;}
.y45_c00135{bottom:377.439000px;}
.y46_c00135{bottom:378.649500px;}
.y47_c00135{bottom:379.644000px;}
.y48_c00135{bottom:380.527500px;}
.y49_c00135{bottom:381.297000px;}
.y4a_c00135{bottom:381.672000px;}
.y3a_c00135{bottom:394.743000px;}
.y3b_c00135{bottom:395.614500px;}
.y3c_c00135{bottom:395.808000px;}
.y3d_c00135{bottom:396.136500px;}
.y3e_c00135{bottom:396.913500px;}
.y3f_c00135{bottom:397.311000px;}
.y40_c00135{bottom:397.804500px;}
.y41_c00135{bottom:398.214000px;}
.y42_c00135{bottom:398.500500px;}
.y33_c00135{bottom:412.021500px;}
.y34_c00135{bottom:412.959000px;}
.y35_c00135{bottom:413.239500px;}
.y36_c00135{bottom:413.868000px;}
.y37_c00135{bottom:414.556500px;}
.y38_c00135{bottom:415.198500px;}
.y39_c00135{bottom:415.476000px;}
.y32_c00135{bottom:431.748000px;}
.y2c_c00135{bottom:447.388500px;}
.y2d_c00135{bottom:447.642000px;}
.y2e_c00135{bottom:448.128000px;}
.y2f_c00135{bottom:448.471500px;}
.y30_c00135{bottom:449.262000px;}
.y31_c00135{bottom:450.147000px;}
.y22_c00135{bottom:464.670000px;}
.y23_c00135{bottom:465.045000px;}
.y24_c00135{bottom:465.517500px;}
.y25_c00135{bottom:465.979500px;}
.y26_c00135{bottom:466.152000px;}
.y27_c00135{bottom:466.758000px;}
.y28_c00135{bottom:466.944000px;}
.y29_c00135{bottom:467.259000px;}
.y2a_c00135{bottom:467.460000px;}
.y2b_c00135{bottom:467.754000px;}
.y1a_c00135{bottom:482.490000px;}
.y1b_c00135{bottom:482.905500px;}
.y1c_c00135{bottom:483.217500px;}
.y1d_c00135{bottom:483.532500px;}
.y1e_c00135{bottom:483.963000px;}
.y1f_c00135{bottom:484.854000px;}
.y20_c00135{bottom:484.993500px;}
.y21_c00135{bottom:485.314500px;}
.y19_c00135{bottom:501.864000px;}
.y12_c00135{bottom:516.781500px;}
.y13_c00135{bottom:517.192500px;}
.y14_c00135{bottom:517.516500px;}
.y15_c00135{bottom:518.559000px;}
.y16_c00135{bottom:518.941500px;}
.y17_c00135{bottom:519.339000px;}
.y18_c00135{bottom:519.648000px;}
.ya_c00135{bottom:534.061500px;}
.yb_c00135{bottom:534.591000px;}
.yc_c00135{bottom:534.771000px;}
.yd_c00135{bottom:535.104000px;}
.ye_c00135{bottom:536.238000px;}
.yf_c00135{bottom:536.895000px;}
.y10_c00135{bottom:537.220500px;}
.y11_c00135{bottom:537.606000px;}
.y3_c00135{bottom:551.073000px;}
.y4_c00135{bottom:551.941500px;}
.y5_c00135{bottom:552.222000px;}
.y6_c00135{bottom:553.318500px;}
.y7_c00135{bottom:554.107500px;}
.y8_c00135{bottom:554.584500px;}
.y9_c00135{bottom:555.159000px;}
.y2_c00135{bottom:570.382500px;}
.y1_c00135{bottom:588.195000px;}
.h13_c00135{height:57.754158px;}
.hb_c00135{height:59.850000px;}
.h14_c00135{height:59.854309px;}
.he_c00135{height:60.904385px;}
.hc_c00135{height:61.950000px;}
.h10_c00135{height:61.954460px;}
.h16_c00135{height:61.977871px;}
.h6_c00135{height:63.000000px;}
.h11_c00135{height:63.004536px;}
.h2_c00135{height:64.050000px;}
.h15_c00135{height:64.054611px;}
.hd_c00135{height:65.100000px;}
.h9_c00135{height:66.150000px;}
.ha_c00135{height:68.250000px;}
.h5_c00135{height:69.300000px;}
.h12_c00135{height:69.304989px;}
.h7_c00135{height:70.350000px;}
.h8_c00135{height:71.400000px;}
.hf_c00135{height:71.405141px;}
.h17_c00135{height:71.418883px;}
.h4_c00135{height:72.450000px;}
.h18_c00135{height:72.476403px;}
.h3_c00135{height:74.550000px;}
.h0_c00135{height:634.200000px;}
.h1_c00135{height:634.500000px;}
.w1_c00135{width:364.500000px;}
.w0_c00135{width:364.770000px;}
.x0_c00135{left:0.000000px;}
.x62_c00135{left:42.865350px;}
.x87_c00135{left:43.936500px;}
.x66_c00135{left:47.242026px;}
.x27_c00135{left:48.967500px;}
.x6a_c00135{left:50.106300px;}
.xa_c00135{left:51.246000px;}
.x2_c00135{left:56.160000px;}
.x71_c00135{left:59.132844px;}
.x5c_c00135{left:63.336000px;}
.x7c_c00135{left:66.308718px;}
.x1d_c00135{left:69.121500px;}
.x50_c00135{left:70.689000px;}
.x30_c00135{left:72.258000px;}
.x7a_c00135{left:74.853822px;}
.x44_c00135{left:78.229500px;}
.x54_c00135{left:79.350000px;}
.x28_c00135{left:83.043000px;}
.x17_c00135{left:84.903000px;}
.x47_c00135{left:86.046000px;}
.x58_c00135{left:87.060000px;}
.x21_c00135{left:89.242500px;}
.x11_c00135{left:92.193000px;}
.x67_c00135{left:95.038512px;}
.x85_c00135{left:96.492000px;}
.x63_c00135{left:98.228352px;}
.x1e_c00135{left:99.361500px;}
.x34_c00135{left:101.248500px;}
.x48_c00135{left:103.333500px;}
.x3_c00135{left:106.920000px;}
.x4c_c00135{left:109.890000px;}
.x18_c00135{left:111.951000px;}
.xb_c00135{left:113.334000px;}
.x5d_c00135{left:114.369000px;}
.x22_c00135{left:117.547500px;}
.x3a_c00135{left:120.066000px;}
.x68_c00135{left:121.226316px;}
.x88_c00135{left:122.310000px;}
.x59_c00135{left:124.650000px;}
.x29_c00135{left:125.971500px;}
.x3f_c00135{left:127.345500px;}
.x77_c00135{left:129.486414px;}
.x12_c00135{left:131.665500px;}
.xc_c00135{left:133.317000px;}
.x35_c00135{left:134.458500px;}
.x6e_c00135{left:136.465134px;}
.x81_c00135{left:137.916000px;}
.x31_c00135{left:141.361500px;}
.x5a_c00135{left:142.744500px;}
.x49_c00135{left:145.179000px;}
.x23_c00135{left:146.214000px;}
.x55_c00135{left:148.978500px;}
.x40_c00135{left:150.850500px;}
.x6f_c00135{left:152.736936px;}
.x72_c00135{left:157.149456px;}
.x4_c00135{left:160.380000px;}
.x4a_c00135{left:165.706500px;}
.x2a_c00135{left:168.027000px;}
.x5e_c00135{left:169.978500px;}
.x36_c00135{left:171.178500px;}
.x7f_c00135{left:172.618470px;}
.x1f_c00135{left:175.231500px;}
.x4d_c00135{left:177.655500px;}
.x78_c00135{left:180.573690px;}
.x2b_c00135{left:183.738000px;}
.x24_c00135{left:185.353500px;}
.x3b_c00135{left:189.976500px;}
.x1_c00135{left:192.510000px;}
.x73_c00135{left:196.842162px;}
.x19_c00135{left:198.817500px;}
.x6b_c00135{left:201.048300px;}
.x7d_c00135{left:202.049640px;}
.x86_c00135{left:203.673000px;}
.x5f_c00135{left:204.819000px;}
.x32_c00135{left:207.199500px;}
.x37_c00135{left:208.438500px;}
.x84_c00135{left:210.588870px;}
.xd_c00135{left:211.594500px;}
.x56_c00135{left:214.045500px;}
.x5_c00135{left:216.000000px;}
.x13_c00135{left:218.875500px;}
.x89_c00135{left:220.197000px;}
.x45_c00135{left:222.918000px;}
.x79_c00135{left:226.670592px;}
.x64_c00135{left:229.362618px;}
.x1a_c00135{left:230.737500px;}
.x41_c00135{left:234.801000px;}
.x74_c00135{left:236.264832px;}
.x2c_c00135{left:238.809000px;}
.x5b_c00135{left:241.012500px;}
.x3c_c00135{left:242.880000px;}
.x6_c00135{left:245.970000px;}
.x69_c00135{left:247.281714px;}
.x82_c00135{left:248.541000px;}
.x51_c00135{left:253.134000px;}
.x38_c00135{left:254.608500px;}
.x2d_c00135{left:255.775500px;}
.x65_c00135{left:258.788556px;}
.x7_c00135{left:261.630000px;}
.x1b_c00135{left:263.890500px;}
.x25_c00135{left:266.346000px;}
.xe_c00135{left:267.964500px;}
.x14_c00135{left:269.361000px;}
.x60_c00135{left:272.802000px;}
.x83_c00135{left:274.252500px;}
.x80_c00135{left:276.350712px;}
.x26_c00135{left:278.995500px;}
.x33_c00135{left:280.947000px;}
.x7e_c00135{left:282.336528px;}
.x2e_c00135{left:284.448000px;}
.x70_c00135{left:287.457816px;}
.x1c_c00135{left:289.602000px;}
.x8_c00135{left:291.060000px;}
.x3d_c00135{left:292.296000px;}
.x15_c00135{left:294.432000px;}
.x42_c00135{left:299.319000px;}
.x52_c00135{left:300.466500px;}
.xf_c00135{left:302.049000px;}
.x6c_c00135{left:303.606300px;}
.x4e_c00135{left:306.420000px;}
.x20_c00135{left:308.881500px;}
.x46_c00135{left:309.904500px;}
.x39_c00135{left:311.308500px;}
.x7b_c00135{left:312.410154px;}
.x3e_c00135{left:313.626000px;}
.x43_c00135{left:319.797000px;}
.x75_c00135{left:321.051036px;}
.x4f_c00135{left:322.620000px;}
.x16_c00135{left:324.133500px;}
.x57_c00135{left:325.240500px;}
.x2f_c00135{left:329.538000px;}
.x6d_c00135{left:331.761300px;}
.x4b_c00135{left:332.773500px;}
.x76_c00135{left:334.011408px;}
.x53_c00135{left:335.511000px;}
.x9_c00135{left:340.200000px;}
.x10_c00135{left:343.096500px;}
.x61_c00135{left:344.952000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.fs11_c00135{font-size:51.337029pt;}
.fs9_c00135{font-size:53.200000pt;}
.fs12_c00135{font-size:53.203830pt;}
.fsc_c00135{font-size:54.137231pt;}
.fsa_c00135{font-size:55.066667pt;}
.fse_c00135{font-size:55.070631pt;}
.fs14_c00135{font-size:55.091441pt;}
.fs4_c00135{font-size:56.000000pt;}
.fsf_c00135{font-size:56.004032pt;}
.fs0_c00135{font-size:56.933333pt;}
.fs13_c00135{font-size:56.937432pt;}
.fsb_c00135{font-size:57.866667pt;}
.fs7_c00135{font-size:58.800000pt;}
.fs8_c00135{font-size:60.666667pt;}
.fs3_c00135{font-size:61.600000pt;}
.fs10_c00135{font-size:61.604435pt;}
.fs5_c00135{font-size:62.533333pt;}
.fs6_c00135{font-size:63.466667pt;}
.fsd_c00135{font-size:63.471236pt;}
.fs15_c00135{font-size:63.483451pt;}
.fs2_c00135{font-size:64.400000pt;}
.fs16_c00135{font-size:64.423470pt;}
.fs1_c00135{font-size:66.266667pt;}
.y0_c00135{bottom:0.000000pt;}
.ydc_c00135{bottom:20.170667pt;}
.ydd_c00135{bottom:21.746495pt;}
.yde_c00135{bottom:22.051631pt;}
.ydf_c00135{bottom:22.706759pt;}
.ye0_c00135{bottom:23.189591pt;}
.ye1_c00135{bottom:24.400919pt;}
.yd7_c00135{bottom:36.246667pt;}
.yd8_c00135{bottom:37.219567pt;}
.yd9_c00135{bottom:38.840116pt;}
.yda_c00135{bottom:39.410823pt;}
.ydb_c00135{bottom:40.521201pt;}
.yd1_c00135{bottom:51.836440pt;}
.yd2_c00135{bottom:52.797640pt;}
.yd3_c00135{bottom:53.932707pt;}
.yd4_c00135{bottom:54.128747pt;}
.yd5_c00135{bottom:55.097440pt;}
.yd6_c00135{bottom:55.704760pt;}
.yca_c00135{bottom:67.690667pt;}
.ycb_c00135{bottom:68.443307pt;}
.ycc_c00135{bottom:69.391267pt;}
.ycd_c00135{bottom:70.054867pt;}
.yce_c00135{bottom:71.759627pt;}
.ycf_c00135{bottom:73.004867pt;}
.yd0_c00135{bottom:73.690507pt;}
.yc2_c00135{bottom:86.395435pt;}
.yc3_c00135{bottom:86.744267pt;}
.yc4_c00135{bottom:86.915355pt;}
.yc5_c00135{bottom:87.311739pt;}
.yc6_c00135{bottom:87.511280pt;}
.yc7_c00135{bottom:88.060923pt;}
.yc8_c00135{bottom:88.525744pt;}
.yc9_c00135{bottom:88.771605pt;}
.yba_c00135{bottom:96.730800pt;}
.ybb_c00135{bottom:97.543125pt;}
.ybc_c00135{bottom:98.113333pt;}
.ybd_c00135{bottom:98.361403pt;}
.ybe_c00135{bottom:101.073787pt;}
.ybf_c00135{bottom:101.967915pt;}
.yc0_c00135{bottom:103.642427pt;}
.yc1_c00135{bottom:105.488549pt;}
.yb1_c00135{bottom:114.727445pt;}
.yb2_c00135{bottom:115.187259pt;}
.yb3_c00135{bottom:116.422128pt;}
.yb4_c00135{bottom:117.252112pt;}
.yb5_c00135{bottom:117.786581pt;}
.yb6_c00135{bottom:118.784549pt;}
.yb7_c00135{bottom:119.046629pt;}
.yb8_c00135{bottom:119.622800pt;}
.yb9_c00135{bottom:120.026709pt;}
.yaa_c00135{bottom:131.041216pt;}
.yab_c00135{bottom:131.557669pt;}
.yac_c00135{bottom:131.913664pt;}
.yad_c00135{bottom:132.549275pt;}
.yae_c00135{bottom:133.122320pt;}
.yaf_c00135{bottom:133.488080pt;}
.yb0_c00135{bottom:133.839291pt;}
.ya4_c00135{bottom:148.651883pt;}
.ya3_c00135{bottom:148.652411pt;}
.ya5_c00135{bottom:148.652437pt;}
.ya6_c00135{bottom:148.653099pt;}
.ya9_c00135{bottom:148.653360pt;}
.ya7_c00135{bottom:148.653547pt;}
.ya8_c00135{bottom:148.653803pt;}
.y9c_c00135{bottom:162.723467pt;}
.y9d_c00135{bottom:163.904005pt;}
.y9e_c00135{bottom:164.720971pt;}
.y9f_c00135{bottom:166.146416pt;}
.ya0_c00135{bottom:166.421669pt;}
.ya1_c00135{bottom:167.318400pt;}
.ya2_c00135{bottom:167.637077pt;}
.y93_c00135{bottom:179.279131pt;}
.y94_c00135{bottom:179.766336pt;}
.y95_c00135{bottom:179.968880pt;}
.y96_c00135{bottom:180.275056pt;}
.y97_c00135{bottom:180.463291pt;}
.y98_c00135{bottom:181.097104pt;}
.y99_c00135{bottom:181.792661pt;}
.y9a_c00135{bottom:182.020331pt;}
.y9b_c00135{bottom:182.395536pt;}
.y8b_c00135{bottom:194.640096pt;}
.y8c_c00135{bottom:195.066544pt;}
.y8d_c00135{bottom:195.472704pt;}
.y8e_c00135{bottom:196.250144pt;}
.y8f_c00135{bottom:196.431680pt;}
.y90_c00135{bottom:196.647664pt;}
.y91_c00135{bottom:197.344096pt;}
.y92_c00135{bottom:197.644416pt;}
.y84_c00135{bottom:210.002427pt;}
.y85_c00135{bottom:210.809632pt;}
.y86_c00135{bottom:211.251659pt;}
.y87_c00135{bottom:212.036416pt;}
.y88_c00135{bottom:212.469952pt;}
.y89_c00135{bottom:213.381696pt;}
.y8a_c00135{bottom:214.130112pt;}
.y7c_c00135{bottom:225.600661pt;}
.y7d_c00135{bottom:226.158885pt;}
.y7e_c00135{bottom:226.339221pt;}
.y7f_c00135{bottom:227.250176pt;}
.y80_c00135{bottom:228.088704pt;}
.y81_c00135{bottom:228.481259pt;}
.y82_c00135{bottom:228.750528pt;}
.y83_c00135{bottom:229.022331pt;}
.y73_c00135{bottom:241.921333pt;}
.y74_c00135{bottom:242.465685pt;}
.y75_c00135{bottom:243.058853pt;}
.y76_c00135{bottom:243.202981pt;}
.y77_c00135{bottom:243.430485pt;}
.y78_c00135{bottom:244.155637pt;}
.y79_c00135{bottom:244.469605pt;}
.y7a_c00135{bottom:244.666197pt;}
.y7b_c00135{bottom:244.925237pt;}
.y6b_c00135{bottom:256.561333pt;}
.y6c_c00135{bottom:257.037333pt;}
.y6d_c00135{bottom:257.278667pt;}
.y6e_c00135{bottom:257.504000pt;}
.y6f_c00135{bottom:257.729333pt;}
.y70_c00135{bottom:258.673333pt;}
.y71_c00135{bottom:258.952000pt;}
.y72_c00135{bottom:259.248000pt;}
.y64_c00135{bottom:272.161333pt;}
.y65_c00135{bottom:272.544000pt;}
.y66_c00135{bottom:273.252000pt;}
.y67_c00135{bottom:273.472000pt;}
.y68_c00135{bottom:274.340000pt;}
.y69_c00135{bottom:275.488000pt;}
.y6a_c00135{bottom:275.822667pt;}
.y5c_c00135{bottom:287.282667pt;}
.y5d_c00135{bottom:287.577333pt;}
.y5e_c00135{bottom:288.534667pt;}
.y5f_c00135{bottom:289.282667pt;}
.y60_c00135{bottom:290.333333pt;}
.y61_c00135{bottom:290.762667pt;}
.y62_c00135{bottom:291.048000pt;}
.y63_c00135{bottom:291.577333pt;}
.y55_c00135{bottom:302.644000pt;}
.y56_c00135{bottom:303.644000pt;}
.y57_c00135{bottom:304.788000pt;}
.y58_c00135{bottom:305.558667pt;}
.y59_c00135{bottom:306.086667pt;}
.y5a_c00135{bottom:306.962667pt;}
.y5b_c00135{bottom:307.236000pt;}
.y4b_c00135{bottom:319.681333pt;}
.y4c_c00135{bottom:319.942667pt;}
.y4d_c00135{bottom:320.114667pt;}
.y4e_c00135{bottom:320.329333pt;}
.y4f_c00135{bottom:320.850667pt;}
.y50_c00135{bottom:321.106667pt;}
.y51_c00135{bottom:321.738667pt;}
.y52_c00135{bottom:322.380000pt;}
.y53_c00135{bottom:322.928000pt;}
.y54_c00135{bottom:323.186667pt;}
.y43_c00135{bottom:334.562667pt;}
.y44_c00135{bottom:335.017333pt;}
.y45_c00135{bottom:335.501333pt;}
.y46_c00135{bottom:336.577333pt;}
.y47_c00135{bottom:337.461333pt;}
.y48_c00135{bottom:338.246667pt;}
.y49_c00135{bottom:338.930667pt;}
.y4a_c00135{bottom:339.264000pt;}
.y3a_c00135{bottom:350.882667pt;}
.y3b_c00135{bottom:351.657333pt;}
.y3c_c00135{bottom:351.829333pt;}
.y3d_c00135{bottom:352.121333pt;}
.y3e_c00135{bottom:352.812000pt;}
.y3f_c00135{bottom:353.165333pt;}
.y40_c00135{bottom:353.604000pt;}
.y41_c00135{bottom:353.968000pt;}
.y42_c00135{bottom:354.222667pt;}
.y33_c00135{bottom:366.241333pt;}
.y34_c00135{bottom:367.074667pt;}
.y35_c00135{bottom:367.324000pt;}
.y36_c00135{bottom:367.882667pt;}
.y37_c00135{bottom:368.494667pt;}
.y38_c00135{bottom:369.065333pt;}
.y39_c00135{bottom:369.312000pt;}
.y32_c00135{bottom:383.776000pt;}
.y2c_c00135{bottom:397.678667pt;}
.y2d_c00135{bottom:397.904000pt;}
.y2e_c00135{bottom:398.336000pt;}
.y2f_c00135{bottom:398.641333pt;}
.y30_c00135{bottom:399.344000pt;}
.y31_c00135{bottom:400.130667pt;}
.y22_c00135{bottom:413.040000pt;}
.y23_c00135{bottom:413.373333pt;}
.y24_c00135{bottom:413.793333pt;}
.y25_c00135{bottom:414.204000pt;}
.y26_c00135{bottom:414.357333pt;}
.y27_c00135{bottom:414.896000pt;}
.y28_c00135{bottom:415.061333pt;}
.y29_c00135{bottom:415.341333pt;}
.y2a_c00135{bottom:415.520000pt;}
.y2b_c00135{bottom:415.781333pt;}
.y1a_c00135{bottom:428.880000pt;}
.y1b_c00135{bottom:429.249333pt;}
.y1c_c00135{bottom:429.526667pt;}
.y1d_c00135{bottom:429.806667pt;}
.y1e_c00135{bottom:430.189333pt;}
.y1f_c00135{bottom:430.981333pt;}
.y20_c00135{bottom:431.105333pt;}
.y21_c00135{bottom:431.390667pt;}
.y19_c00135{bottom:446.101333pt;}
.y12_c00135{bottom:459.361333pt;}
.y13_c00135{bottom:459.726667pt;}
.y14_c00135{bottom:460.014667pt;}
.y15_c00135{bottom:460.941333pt;}
.y16_c00135{bottom:461.281333pt;}
.y17_c00135{bottom:461.634667pt;}
.y18_c00135{bottom:461.909333pt;}
.ya_c00135{bottom:474.721333pt;}
.yb_c00135{bottom:475.192000pt;}
.yc_c00135{bottom:475.352000pt;}
.yd_c00135{bottom:475.648000pt;}
.ye_c00135{bottom:476.656000pt;}
.yf_c00135{bottom:477.240000pt;}
.y10_c00135{bottom:477.529333pt;}
.y11_c00135{bottom:477.872000pt;}
.y3_c00135{bottom:489.842667pt;}
.y4_c00135{bottom:490.614667pt;}
.y5_c00135{bottom:490.864000pt;}
.y6_c00135{bottom:491.838667pt;}
.y7_c00135{bottom:492.540000pt;}
.y8_c00135{bottom:492.964000pt;}
.y9_c00135{bottom:493.474667pt;}
.y2_c00135{bottom:507.006667pt;}
.y1_c00135{bottom:522.840000pt;}
.h13_c00135{height:51.337029pt;}
.hb_c00135{height:53.200000pt;}
.h14_c00135{height:53.203830pt;}
.he_c00135{height:54.137231pt;}
.hc_c00135{height:55.066667pt;}
.h10_c00135{height:55.070631pt;}
.h16_c00135{height:55.091441pt;}
.h6_c00135{height:56.000000pt;}
.h11_c00135{height:56.004032pt;}
.h2_c00135{height:56.933333pt;}
.h15_c00135{height:56.937432pt;}
.hd_c00135{height:57.866667pt;}
.h9_c00135{height:58.800000pt;}
.ha_c00135{height:60.666667pt;}
.h5_c00135{height:61.600000pt;}
.h12_c00135{height:61.604435pt;}
.h7_c00135{height:62.533333pt;}
.h8_c00135{height:63.466667pt;}
.hf_c00135{height:63.471236pt;}
.h17_c00135{height:63.483451pt;}
.h4_c00135{height:64.400000pt;}
.h18_c00135{height:64.423470pt;}
.h3_c00135{height:66.266667pt;}
.h0_c00135{height:563.733333pt;}
.h1_c00135{height:564.000000pt;}
.w1_c00135{width:324.000000pt;}
.w0_c00135{width:324.240000pt;}
.x0_c00135{left:0.000000pt;}
.x62_c00135{left:38.102533pt;}
.x87_c00135{left:39.054667pt;}
.x66_c00135{left:41.992912pt;}
.x27_c00135{left:43.526667pt;}
.x6a_c00135{left:44.538933pt;}
.xa_c00135{left:45.552000pt;}
.x2_c00135{left:49.920000pt;}
.x71_c00135{left:52.562528pt;}
.x5c_c00135{left:56.298667pt;}
.x7c_c00135{left:58.941083pt;}
.x1d_c00135{left:61.441333pt;}
.x50_c00135{left:62.834667pt;}
.x30_c00135{left:64.229333pt;}
.x7a_c00135{left:66.536731pt;}
.x44_c00135{left:69.537333pt;}
.x54_c00135{left:70.533333pt;}
.x28_c00135{left:73.816000pt;}
.x17_c00135{left:75.469333pt;}
.x47_c00135{left:76.485333pt;}
.x58_c00135{left:77.386667pt;}
.x21_c00135{left:79.326667pt;}
.x11_c00135{left:81.949333pt;}
.x67_c00135{left:84.478677pt;}
.x85_c00135{left:85.770667pt;}
.x63_c00135{left:87.314091pt;}
.x1e_c00135{left:88.321333pt;}
.x34_c00135{left:89.998667pt;}
.x48_c00135{left:91.852000pt;}
.x3_c00135{left:95.040000pt;}
.x4c_c00135{left:97.680000pt;}
.x18_c00135{left:99.512000pt;}
.xb_c00135{left:100.741333pt;}
.x5d_c00135{left:101.661333pt;}
.x22_c00135{left:104.486667pt;}
.x3a_c00135{left:106.725333pt;}
.x68_c00135{left:107.756725pt;}
.x88_c00135{left:108.720000pt;}
.x59_c00135{left:110.800000pt;}
.x29_c00135{left:111.974667pt;}
.x3f_c00135{left:113.196000pt;}
.x77_c00135{left:115.099035pt;}
.x12_c00135{left:117.036000pt;}
.xc_c00135{left:118.504000pt;}
.x35_c00135{left:119.518667pt;}
.x6e_c00135{left:121.302341pt;}
.x81_c00135{left:122.592000pt;}
.x31_c00135{left:125.654667pt;}
.x5a_c00135{left:126.884000pt;}
.x49_c00135{left:129.048000pt;}
.x23_c00135{left:129.968000pt;}
.x55_c00135{left:132.425333pt;}
.x40_c00135{left:134.089333pt;}
.x6f_c00135{left:135.766165pt;}
.x72_c00135{left:139.688405pt;}
.x4_c00135{left:142.560000pt;}
.x4a_c00135{left:147.294667pt;}
.x2a_c00135{left:149.357333pt;}
.x5e_c00135{left:151.092000pt;}
.x36_c00135{left:152.158667pt;}
.x7f_c00135{left:153.438640pt;}
.x1f_c00135{left:155.761333pt;}
.x4d_c00135{left:157.916000pt;}
.x78_c00135{left:160.509947pt;}
.x2b_c00135{left:163.322667pt;}
.x24_c00135{left:164.758667pt;}
.x3b_c00135{left:168.868000pt;}
.x1_c00135{left:171.120000pt;}
.x73_c00135{left:174.970811pt;}
.x19_c00135{left:176.726667pt;}
.x6b_c00135{left:178.709600pt;}
.x7d_c00135{left:179.599680pt;}
.x86_c00135{left:181.042667pt;}
.x5f_c00135{left:182.061333pt;}
.x32_c00135{left:184.177333pt;}
.x37_c00135{left:185.278667pt;}
.x84_c00135{left:187.190107pt;}
.xd_c00135{left:188.084000pt;}
.x56_c00135{left:190.262667pt;}
.x5_c00135{left:192.000000pt;}
.x13_c00135{left:194.556000pt;}
.x89_c00135{left:195.730667pt;}
.x45_c00135{left:198.149333pt;}
.x79_c00135{left:201.484971pt;}
.x64_c00135{left:203.877883pt;}
.x1a_c00135{left:205.100000pt;}
.x41_c00135{left:208.712000pt;}
.x74_c00135{left:210.013184pt;}
.x2c_c00135{left:212.274667pt;}
.x5b_c00135{left:214.233333pt;}
.x3c_c00135{left:215.893333pt;}
.x6_c00135{left:218.640000pt;}
.x69_c00135{left:219.805968pt;}
.x82_c00135{left:220.925333pt;}
.x51_c00135{left:225.008000pt;}
.x38_c00135{left:226.318667pt;}
.x2d_c00135{left:227.356000pt;}
.x65_c00135{left:230.034272pt;}
.x7_c00135{left:232.560000pt;}
.x1b_c00135{left:234.569333pt;}
.x25_c00135{left:236.752000pt;}
.xe_c00135{left:238.190667pt;}
.x14_c00135{left:239.432000pt;}
.x60_c00135{left:242.490667pt;}
.x83_c00135{left:243.780000pt;}
.x80_c00135{left:245.645077pt;}
.x26_c00135{left:247.996000pt;}
.x33_c00135{left:249.730667pt;}
.x7e_c00135{left:250.965803pt;}
.x2e_c00135{left:252.842667pt;}
.x70_c00135{left:255.518059pt;}
.x1c_c00135{left:257.424000pt;}
.x8_c00135{left:258.720000pt;}
.x3d_c00135{left:259.818667pt;}
.x15_c00135{left:261.717333pt;}
.x42_c00135{left:266.061333pt;}
.x52_c00135{left:267.081333pt;}
.xf_c00135{left:268.488000pt;}
.x6c_c00135{left:269.872267pt;}
.x4e_c00135{left:272.373333pt;}
.x20_c00135{left:274.561333pt;}
.x46_c00135{left:275.470667pt;}
.x39_c00135{left:276.718667pt;}
.x7b_c00135{left:277.697915pt;}
.x3e_c00135{left:278.778667pt;}
.x43_c00135{left:284.264000pt;}
.x75_c00135{left:285.378699pt;}
.x4f_c00135{left:286.773333pt;}
.x16_c00135{left:288.118667pt;}
.x57_c00135{left:289.102667pt;}
.x2f_c00135{left:292.922667pt;}
.x6d_c00135{left:294.898933pt;}
.x4b_c00135{left:295.798667pt;}
.x76_c00135{left:296.899029pt;}
.x53_c00135{left:298.232000pt;}
.x9_c00135{left:302.400000pt;}
.x10_c00135{left:304.974667pt;}
.x61_c00135{left:306.624000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00136 {
    display:none;
  }
  .loading-indicator_c00136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00136 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00136 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00136" -> "#page-container .classname_c00136")
 */
.pf_c00136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00136 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00136 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00136 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00136 {overflow:visible;}
  }
}
.c_c00136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00136 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00136:after { /* webkit #35443 */
  content: '';
}
.t_c00136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00136 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00136 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00136 { /* info for Javascript */
  display:none;
}
.l_c00136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00136:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00136 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00136.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf9_c00136{transform:matrix(0.010300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010300,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.010366,0.000270,-0.006498,0.249916,0,0);-ms-transform:matrix(0.010366,0.000270,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.010366,0.000270,-0.006498,0.249916,0,0);}
.m2_c00136{transform:matrix(0.100126,0.002603,-0.006498,0.249916,0,0);-ms-transform:matrix(0.100126,0.002603,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.100126,0.002603,-0.006498,0.249916,0,0);}
.m3c_c00136{transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);}
.mde_c00136{transform:matrix(0.125860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125860,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138980,0.000000,0.000000,0.250000,0,0);}
.m63_c00136{transform:matrix(0.144470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144470,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);}
.m3e_c00136{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);}
.mec_c00136{transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);}
.mdb_c00136{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{transform:matrix(0.160145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160145,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);}
.mb6_c00136{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165615,0.000000,0.000000,0.250000,0,0);}
.m80_c00136{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);}
.mc0_c00136{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);}
.mca_c00136{transform:matrix(0.167395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167395,0.000000,0.000000,0.250000,0,0);}
.ma5_c00136{transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mbf_c00136{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.m2f_c00136{transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);}
.mdf_c00136{transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.mc2_c00136{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170510,0.000000,0.000000,0.250000,0,0);}
.md9_c00136{transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);}
.mce_c00136{transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);}
.mc4_c00136{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.me6_c00136{transform:matrix(0.174360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174360,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);}
.md3_c00136{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175760,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m62_c00136{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.mcd_c00136{transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00136{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.mee_c00136{transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m29_c00136{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m94_c00136{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00136{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.me3_c00136{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.mda_c00136{transform:matrix(0.182795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182795,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00136{transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);}
.mcf_c00136{transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);}
.m44_c00136{transform:matrix(0.183230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183230,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.mc6_c00136{transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);}
.m6c_c00136{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m40_c00136{transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);}
.m61_c00136{transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.mf3_c00136{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.mfb_c00136{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.me5_c00136{transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);}
.m13_c00136{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m92_c00136{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);}
.m77_c00136{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.mc5_c00136{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.mc7_c00136{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m85_c00136{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.md6_c00136{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m8f_c00136{transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);}
.m27_c00136{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.m90_c00136{transform:matrix(0.193165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193165,0.000000,0.000000,0.250000,0,0);}
.maf_c00136{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);}
.mf6_c00136{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.md5_c00136{transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);}
.mb1_c00136{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.mf1_c00136{transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.mf5_c00136{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.mdc_c00136{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.mf8_c00136{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.mbd_c00136{transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.me0_c00136{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.mcb_c00136{transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);}
.md8_c00136{transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);}
.m72_c00136{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.mba_c00136{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);}
.me7_c00136{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.m9d_c00136{transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mc8_c00136{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.mbc_c00136{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);}
.m7e_c00136{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.md0_c00136{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.mc9_c00136{transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m67_c00136{transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);}
.md1_c00136{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.mf7_c00136{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.mf2_c00136{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.mdd_c00136{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00136{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.mf4_c00136{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.mb3_c00136{transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.me8_c00136{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.mf0_c00136{transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);}
.m75_c00136{transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);}
.m86_c00136{transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);}
.m32_c00136{transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m8b_c00136{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.mef_c00136{transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.220320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00136{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.me2_c00136{transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);}
.md4_c00136{transform:matrix(0.225895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225895,0.000000,0.000000,0.250000,0,0);}
.mc1_c00136{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.m74_c00136{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228340,0.000000,0.000000,0.250000,0,0);}
.med_c00136{transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);}
.md2_c00136{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.me4_c00136{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00136{transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);}
.m96_c00136{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.meb_c00136{transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);}
.m6a_c00136{transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.md7_c00136{transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.mc3_c00136{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);}
.mfa_c00136{transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);}
.me1_c00136{transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);}
.mb8_c00136{transform:matrix(0.299255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299255,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);}
.me9_c00136{transform:matrix(0.354860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354860,0.000000,0.000000,0.250000,0,0);}
.mea_c00136{transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:0.000000px;}
.fc0_c00136{color:transparent;}
.fs0_c00136{font-size:22.050000px;}
.fsd_c00136{font-size:51.450000px;}
.fsf_c00136{font-size:57.750000px;}
.fsa_c00136{font-size:58.800000px;}
.fsc_c00136{font-size:59.850000px;}
.fs10_c00136{font-size:60.900000px;}
.fs11_c00136{font-size:61.950000px;}
.fsb_c00136{font-size:63.000000px;}
.fs3_c00136{font-size:64.050000px;}
.fs7_c00136{font-size:65.100000px;}
.fs4_c00136{font-size:66.150000px;}
.fse_c00136{font-size:67.200000px;}
.fs5_c00136{font-size:68.250000px;}
.fs2_c00136{font-size:69.300000px;}
.fs8_c00136{font-size:70.350000px;}
.fs9_c00136{font-size:71.400000px;}
.fs6_c00136{font-size:72.450000px;}
.fs1_c00136{font-size:130.244000px;}
.y0_c00136{bottom:0.000000px;}
.yea_c00136{bottom:33.609000px;}
.ye9_c00136{bottom:45.412500px;}
.ye8_c00136{bottom:45.673500px;}
.ye7_c00136{bottom:46.882500px;}
.ye6_c00136{bottom:47.397000px;}
.ye5_c00136{bottom:47.883000px;}
.ye4_c00136{bottom:48.508500px;}
.ye3_c00136{bottom:49.086000px;}
.ye2_c00136{bottom:49.962000px;}
.ye1_c00136{bottom:63.799500px;}
.ye0_c00136{bottom:64.222500px;}
.ydf_c00136{bottom:64.981500px;}
.yde_c00136{bottom:66.193500px;}
.ydd_c00136{bottom:67.180500px;}
.ydc_c00136{bottom:67.519500px;}
.ydb_c00136{bottom:68.845500px;}
.yda_c00136{bottom:69.943500px;}
.yd9_c00136{bottom:80.607000px;}
.yd8_c00136{bottom:81.315000px;}
.yd7_c00136{bottom:82.443000px;}
.yd6_c00136{bottom:83.943000px;}
.yd5_c00136{bottom:84.367500px;}
.yd4_c00136{bottom:84.918000px;}
.yd3_c00136{bottom:86.029500px;}
.yd2_c00136{bottom:86.562000px;}
.yd1_c00136{bottom:88.033500px;}
.yd0_c00136{bottom:98.878500px;}
.ycf_c00136{bottom:99.435000px;}
.yce_c00136{bottom:101.244000px;}
.ycd_c00136{bottom:101.731500px;}
.ycc_c00136{bottom:103.756500px;}
.ycb_c00136{bottom:104.701500px;}
.yca_c00136{bottom:105.952500px;}
.yc9_c00136{bottom:107.209500px;}
.yc8_c00136{bottom:116.766000px;}
.yc7_c00136{bottom:118.848000px;}
.yc6_c00136{bottom:119.563500px;}
.yc5_c00136{bottom:120.144000px;}
.yc4_c00136{bottom:121.725000px;}
.yc3_c00136{bottom:123.127500px;}
.yc2_c00136{bottom:124.354500px;}
.yc1_c00136{bottom:125.296500px;}
.yc0_c00136{bottom:131.713500px;}
.ybf_c00136{bottom:132.618000px;}
.ybe_c00136{bottom:135.150000px;}
.ybd_c00136{bottom:135.951000px;}
.ybc_c00136{bottom:136.710000px;}
.ybb_c00136{bottom:139.602000px;}
.yba_c00136{bottom:140.355000px;}
.yb9_c00136{bottom:140.961000px;}
.yb8_c00136{bottom:150.280500px;}
.yb7_c00136{bottom:150.688500px;}
.yb6_c00136{bottom:151.156500px;}
.yb5_c00136{bottom:152.422500px;}
.yb4_c00136{bottom:153.250500px;}
.yb3_c00136{bottom:153.603000px;}
.yb2_c00136{bottom:154.812000px;}
.yb1_c00136{bottom:155.803500px;}
.yb0_c00136{bottom:168.463500px;}
.yaf_c00136{bottom:169.326000px;}
.yae_c00136{bottom:170.053500px;}
.yad_c00136{bottom:170.956500px;}
.yac_c00136{bottom:171.922500px;}
.yab_c00136{bottom:172.524000px;}
.yaa_c00136{bottom:172.957500px;}
.ya9_c00136{bottom:175.236000px;}
.ya8_c00136{bottom:177.949500px;}
.ya7_c00136{bottom:185.038500px;}
.ya6_c00136{bottom:185.908500px;}
.ya5_c00136{bottom:187.413000px;}
.ya4_c00136{bottom:187.869000px;}
.ya3_c00136{bottom:189.100500px;}
.ya2_c00136{bottom:189.750000px;}
.ya1_c00136{bottom:191.445000px;}
.ya0_c00136{bottom:201.783000px;}
.y9f_c00136{bottom:202.398000px;}
.y9e_c00136{bottom:203.695500px;}
.y9d_c00136{bottom:205.663500px;}
.y9c_c00136{bottom:208.432500px;}
.y9b_c00136{bottom:208.804500px;}
.y9a_c00136{bottom:209.265000px;}
.y99_c00136{bottom:219.993000px;}
.y98_c00136{bottom:220.353000px;}
.y97_c00136{bottom:221.425500px;}
.y96_c00136{bottom:222.175500px;}
.y95_c00136{bottom:224.082000px;}
.y94_c00136{bottom:224.544000px;}
.y93_c00136{bottom:225.238500px;}
.y92_c00136{bottom:225.709500px;}
.y91_c00136{bottom:226.056000px;}
.y90_c00136{bottom:226.545000px;}
.y8f_c00136{bottom:237.403500px;}
.y8e_c00136{bottom:237.936000px;}
.y8d_c00136{bottom:239.376000px;}
.y8c_c00136{bottom:240.919500px;}
.y8b_c00136{bottom:241.744500px;}
.y8a_c00136{bottom:243.603000px;}
.y89_c00136{bottom:245.175000px;}
.y88_c00136{bottom:255.735000px;}
.y87_c00136{bottom:257.025000px;}
.y86_c00136{bottom:258.001500px;}
.y85_c00136{bottom:259.338000px;}
.y84_c00136{bottom:260.629500px;}
.y83_c00136{bottom:261.349500px;}
.y82_c00136{bottom:262.723500px;}
.y81_c00136{bottom:273.333000px;}
.y80_c00136{bottom:276.721500px;}
.y7f_c00136{bottom:278.067000px;}
.y7e_c00136{bottom:278.608500px;}
.y7d_c00136{bottom:279.462000px;}
.y7c_c00136{bottom:291.157500px;}
.y7b_c00136{bottom:291.834000px;}
.y7a_c00136{bottom:294.226500px;}
.y79_c00136{bottom:295.020000px;}
.y78_c00136{bottom:296.497500px;}
.y77_c00136{bottom:296.898000px;}
.y76_c00136{bottom:297.823500px;}
.y75_c00136{bottom:309.102000px;}
.y74_c00136{bottom:309.733500px;}
.y73_c00136{bottom:310.590000px;}
.y72_c00136{bottom:311.173500px;}
.y71_c00136{bottom:312.318000px;}
.y70_c00136{bottom:312.975000px;}
.y6f_c00136{bottom:313.332000px;}
.y6e_c00136{bottom:314.590500px;}
.y6d_c00136{bottom:315.099000px;}
.y6c_c00136{bottom:327.708000px;}
.y6b_c00136{bottom:328.048500px;}
.y6a_c00136{bottom:328.230000px;}
.y69_c00136{bottom:328.849500px;}
.y68_c00136{bottom:329.428500px;}
.y67_c00136{bottom:329.787000px;}
.y66_c00136{bottom:330.055500px;}
.y65_c00136{bottom:330.655500px;}
.y64_c00136{bottom:331.036500px;}
.y63_c00136{bottom:331.567500px;}
.y62_c00136{bottom:344.263500px;}
.y61_c00136{bottom:344.373000px;}
.y60_c00136{bottom:345.453000px;}
.y5f_c00136{bottom:346.570500px;}
.y5e_c00136{bottom:346.875000px;}
.y5d_c00136{bottom:347.166000px;}
.y5c_c00136{bottom:347.496000px;}
.y5b_c00136{bottom:360.621000px;}
.y5a_c00136{bottom:360.976500px;}
.y59_c00136{bottom:361.354500px;}
.y58_c00136{bottom:361.725000px;}
.y57_c00136{bottom:361.971000px;}
.y56_c00136{bottom:362.787000px;}
.y55_c00136{bottom:363.637500px;}
.y54_c00136{bottom:364.056000px;}
.y53_c00136{bottom:364.506000px;}
.y52_c00136{bottom:377.514000px;}
.y51_c00136{bottom:378.301500px;}
.y50_c00136{bottom:378.766500px;}
.y4f_c00136{bottom:379.651500px;}
.y4e_c00136{bottom:380.053500px;}
.y4d_c00136{bottom:380.449500px;}
.y4c_c00136{bottom:381.561000px;}
.y4b_c00136{bottom:381.784500px;}
.y4a_c00136{bottom:395.421000px;}
.y49_c00136{bottom:395.848500px;}
.y48_c00136{bottom:396.463500px;}
.y47_c00136{bottom:397.354500px;}
.y46_c00136{bottom:397.843500px;}
.y45_c00136{bottom:398.251500px;}
.y44_c00136{bottom:412.645500px;}
.y43_c00136{bottom:413.151000px;}
.y42_c00136{bottom:413.776500px;}
.y41_c00136{bottom:413.983500px;}
.y40_c00136{bottom:415.129500px;}
.y3f_c00136{bottom:415.458000px;}
.y3e_c00136{bottom:415.954500px;}
.y3d_c00136{bottom:416.278500px;}
.y3c_c00136{bottom:416.884500px;}
.y3b_c00136{bottom:431.214000px;}
.y3a_c00136{bottom:447.864000px;}
.y39_c00136{bottom:464.109000px;}
.y38_c00136{bottom:464.439000px;}
.y37_c00136{bottom:465.144000px;}
.y36_c00136{bottom:465.637500px;}
.y35_c00136{bottom:465.967500px;}
.y34_c00136{bottom:466.798500px;}
.y33_c00136{bottom:467.212500px;}
.y32_c00136{bottom:467.907000px;}
.y31_c00136{bottom:468.129000px;}
.y30_c00136{bottom:468.723000px;}
.y2f_c00136{bottom:481.729500px;}
.y2e_c00136{bottom:482.100000px;}
.y2d_c00136{bottom:482.332500px;}
.y2c_c00136{bottom:482.467500px;}
.y2b_c00136{bottom:483.123000px;}
.y2a_c00136{bottom:483.501000px;}
.y29_c00136{bottom:483.928500px;}
.y28_c00136{bottom:484.104000px;}
.y27_c00136{bottom:484.381500px;}
.y26_c00136{bottom:500.305500px;}
.y25_c00136{bottom:500.545500px;}
.y24_c00136{bottom:500.769000px;}
.y23_c00136{bottom:500.934000px;}
.y22_c00136{bottom:501.738000px;}
.y21_c00136{bottom:501.997500px;}
.y20_c00136{bottom:502.369500px;}
.y1f_c00136{bottom:502.639500px;}
.y1e_c00136{bottom:503.122500px;}
.y1d_c00136{bottom:503.554500px;}
.y1c_c00136{bottom:517.836000px;}
.y1b_c00136{bottom:518.163000px;}
.y1a_c00136{bottom:518.481000px;}
.y19_c00136{bottom:519.331500px;}
.y18_c00136{bottom:519.837000px;}
.y17_c00136{bottom:520.080000px;}
.y16_c00136{bottom:520.563000px;}
.y15_c00136{bottom:535.399500px;}
.y14_c00136{bottom:535.609500px;}
.y13_c00136{bottom:535.897500px;}
.y12_c00136{bottom:536.032500px;}
.y11_c00136{bottom:536.503500px;}
.y10_c00136{bottom:536.727000px;}
.yf_c00136{bottom:537.628500px;}
.ye_c00136{bottom:537.754500px;}
.yd_c00136{bottom:538.111500px;}
.yc_c00136{bottom:552.867000px;}
.yb_c00136{bottom:553.275000px;}
.ya_c00136{bottom:553.806000px;}
.y9_c00136{bottom:554.032500px;}
.y8_c00136{bottom:554.167500px;}
.y7_c00136{bottom:554.926500px;}
.y6_c00136{bottom:555.469500px;}
.y5_c00136{bottom:555.661500px;}
.y4_c00136{bottom:570.564000px;}
.y3_c00136{bottom:583.824153px;}
.y2_c00136{bottom:586.440000px;}
.y1_c00136{bottom:615.330000px;}
.h2_c00136{height:22.050000px;}
.hf_c00136{height:51.450000px;}
.h11_c00136{height:57.750000px;}
.hc_c00136{height:58.800000px;}
.he_c00136{height:59.850000px;}
.h12_c00136{height:60.900000px;}
.h13_c00136{height:61.950000px;}
.hd_c00136{height:63.000000px;}
.h5_c00136{height:64.050000px;}
.h9_c00136{height:65.100000px;}
.h6_c00136{height:66.150000px;}
.h10_c00136{height:67.200000px;}
.h7_c00136{height:68.250000px;}
.h4_c00136{height:69.300000px;}
.ha_c00136{height:70.350000px;}
.hb_c00136{height:71.400000px;}
.h8_c00136{height:72.450000px;}
.h3_c00136{height:130.244000px;}
.h0_c00136{height:634.200000px;}
.h1_c00136{height:634.500000px;}
.w1_c00136{width:364.500000px;}
.w0_c00136{width:364.770000px;}
.x0_c00136{left:0.000000px;}
.x68_c00136{left:24.484500px;}
.x63_c00136{left:25.827000px;}
.x49_c00136{left:27.417000px;}
.x4_c00136{left:28.620000px;}
.x6a_c00136{left:32.586000px;}
.x38_c00136{left:33.855000px;}
.x5e_c00136{left:38.622000px;}
.x30_c00136{left:41.308500px;}
.xd_c00136{left:47.685000px;}
.x6b_c00136{left:49.408500px;}
.x50_c00136{left:50.779500px;}
.x7c_c00136{left:54.000000px;}
.x23_c00136{left:55.494000px;}
.x5f_c00136{left:56.749500px;}
.x33_c00136{left:59.938500px;}
.x2_c00136{left:61.261500px;}
.x3e_c00136{left:62.766000px;}
.x12_c00136{left:64.744500px;}
.x55_c00136{left:66.676500px;}
.x60_c00136{left:69.583500px;}
.x39_c00136{left:71.722500px;}
.x24_c00136{left:73.053000px;}
.x13_c00136{left:77.382000px;}
.x4a_c00136{left:79.246500px;}
.x74_c00136{left:81.438000px;}
.x56_c00136{left:84.066000px;}
.x5_c00136{left:86.670000px;}
.x4c_c00136{left:88.129500px;}
.x44_c00136{left:89.757000px;}
.x3a_c00136{left:91.980000px;}
.x64_c00136{left:93.622500px;}
.x79_c00136{left:95.344500px;}
.x6f_c00136{left:97.632000px;}
.x7d_c00136{left:99.360000px;}
.xe_c00136{left:101.952000px;}
.x6_c00136{left:103.950000px;}
.x41_c00136{left:106.468500px;}
.x51_c00136{left:110.721000px;}
.x2a_c00136{left:112.120500px;}
.x25_c00136{left:115.759500px;}
.x65_c00136{left:119.587500px;}
.x3b_c00136{left:122.965500px;}
.x1d_c00136{left:126.831000px;}
.x34_c00136{left:128.248500px;}
.x7_c00136{left:130.140000px;}
.x7a_c00136{left:133.456500px;}
.x2b_c00136{left:135.156000px;}
.x71_c00136{left:136.864500px;}
.x59_c00136{left:140.920500px;}
.x75_c00136{left:142.347000px;}
.x3c_c00136{left:143.479500px;}
.x4d_c00136{left:145.981500px;}
.x8_c00136{left:148.770000px;}
.x45_c00136{left:150.517500px;}
.x1a_c00136{left:151.897500px;}
.x26_c00136{left:153.517500px;}
.x1e_c00136{left:157.879500px;}
.x52_c00136{left:159.052500px;}
.x3_c00136{left:161.871000px;}
.x14_c00136{left:167.553000px;}
.x66_c00136{left:168.844500px;}
.x4e_c00136{left:169.924500px;}
.x6c_c00136{left:171.736500px;}
.x9_c00136{left:177.930000px;}
.x1f_c00136{left:179.460000px;}
.x2c_c00136{left:181.315500px;}
.x57_c00136{left:182.796000px;}
.x35_c00136{left:185.218500px;}
.x67_c00136{left:187.105500px;}
.x15_c00136{left:189.966000px;}
.xf_c00136{left:191.316000px;}
.x6d_c00136{left:193.992000px;}
.x76_c00136{left:195.447000px;}
.x1_c00136{left:197.100000px;}
.x2d_c00136{left:199.665000px;}
.x5a_c00136{left:201.895500px;}
.x42_c00136{left:205.554000px;}
.x7b_c00136{left:206.914500px;}
.x46_c00136{left:208.830000px;}
.x10_c00136{left:214.023000px;}
.x3d_c00136{left:215.097000px;}
.xa_c00136{left:217.080000px;}
.x27_c00136{left:219.085500px;}
.x36_c00136{left:224.368500px;}
.x31_c00136{left:225.448500px;}
.x2e_c00136{left:227.109000px;}
.x3f_c00136{left:229.087500px;}
.xb_c00136{left:231.660000px;}
.x43_c00136{left:232.894500px;}
.x5d_c00136{left:234.294000px;}
.x16_c00136{left:236.992500px;}
.x5b_c00136{left:238.086000px;}
.x61_c00136{left:239.968500px;}
.x53_c00136{left:241.383000px;}
.x20_c00136{left:246.430500px;}
.x77_c00136{left:248.119500px;}
.x17_c00136{left:250.473000px;}
.x47_c00136{left:252.895500px;}
.x28_c00136{left:255.876000px;}
.x21_c00136{left:260.196000px;}
.x4f_c00136{left:261.985500px;}
.x40_c00136{left:264.723000px;}
.x11_c00136{left:267.178500px;}
.x1b_c00136{left:268.848000px;}
.x69_c00136{left:270.886500px;}
.x72_c00136{left:276.244500px;}
.x18_c00136{left:279.313500px;}
.x78_c00136{left:281.134500px;}
.x54_c00136{left:282.147000px;}
.x2f_c00136{left:284.590500px;}
.x5c_c00136{left:285.870000px;}
.x4b_c00136{left:287.730000px;}
.x6e_c00136{left:289.428000px;}
.x29_c00136{left:292.857000px;}
.x73_c00136{left:294.183000px;}
.x37_c00136{left:296.458500px;}
.x22_c00136{left:298.797000px;}
.x19_c00136{left:300.382500px;}
.x1c_c00136{left:301.492500px;}
.x48_c00136{left:305.194500px;}
.xc_c00136{left:308.610000px;}
.x70_c00136{left:309.651000px;}
.x62_c00136{left:310.803000px;}
.x32_c00136{left:312.658500px;}
.x58_c00136{left:316.266000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.000000pt;}
.fs0_c00136{font-size:19.600000pt;}
.fsd_c00136{font-size:45.733333pt;}
.fsf_c00136{font-size:51.333333pt;}
.fsa_c00136{font-size:52.266667pt;}
.fsc_c00136{font-size:53.200000pt;}
.fs10_c00136{font-size:54.133333pt;}
.fs11_c00136{font-size:55.066667pt;}
.fsb_c00136{font-size:56.000000pt;}
.fs3_c00136{font-size:56.933333pt;}
.fs7_c00136{font-size:57.866667pt;}
.fs4_c00136{font-size:58.800000pt;}
.fse_c00136{font-size:59.733333pt;}
.fs5_c00136{font-size:60.666667pt;}
.fs2_c00136{font-size:61.600000pt;}
.fs8_c00136{font-size:62.533333pt;}
.fs9_c00136{font-size:63.466667pt;}
.fs6_c00136{font-size:64.400000pt;}
.fs1_c00136{font-size:115.772445pt;}
.y0_c00136{bottom:0.000000pt;}
.yea_c00136{bottom:29.874667pt;}
.ye9_c00136{bottom:40.366667pt;}
.ye8_c00136{bottom:40.598667pt;}
.ye7_c00136{bottom:41.673333pt;}
.ye6_c00136{bottom:42.130667pt;}
.ye5_c00136{bottom:42.562667pt;}
.ye4_c00136{bottom:43.118667pt;}
.ye3_c00136{bottom:43.632000pt;}
.ye2_c00136{bottom:44.410667pt;}
.ye1_c00136{bottom:56.710667pt;}
.ye0_c00136{bottom:57.086667pt;}
.ydf_c00136{bottom:57.761333pt;}
.yde_c00136{bottom:58.838667pt;}
.ydd_c00136{bottom:59.716000pt;}
.ydc_c00136{bottom:60.017333pt;}
.ydb_c00136{bottom:61.196000pt;}
.yda_c00136{bottom:62.172000pt;}
.yd9_c00136{bottom:71.650667pt;}
.yd8_c00136{bottom:72.280000pt;}
.yd7_c00136{bottom:73.282667pt;}
.yd6_c00136{bottom:74.616000pt;}
.yd5_c00136{bottom:74.993333pt;}
.yd4_c00136{bottom:75.482667pt;}
.yd3_c00136{bottom:76.470667pt;}
.yd2_c00136{bottom:76.944000pt;}
.yd1_c00136{bottom:78.252000pt;}
.yd0_c00136{bottom:87.892000pt;}
.ycf_c00136{bottom:88.386667pt;}
.yce_c00136{bottom:89.994667pt;}
.ycd_c00136{bottom:90.428000pt;}
.ycc_c00136{bottom:92.228000pt;}
.ycb_c00136{bottom:93.068000pt;}
.yca_c00136{bottom:94.180000pt;}
.yc9_c00136{bottom:95.297333pt;}
.yc8_c00136{bottom:103.792000pt;}
.yc7_c00136{bottom:105.642667pt;}
.yc6_c00136{bottom:106.278667pt;}
.yc5_c00136{bottom:106.794667pt;}
.yc4_c00136{bottom:108.200000pt;}
.yc3_c00136{bottom:109.446667pt;}
.yc2_c00136{bottom:110.537333pt;}
.yc1_c00136{bottom:111.374667pt;}
.yc0_c00136{bottom:117.078667pt;}
.ybf_c00136{bottom:117.882667pt;}
.ybe_c00136{bottom:120.133333pt;}
.ybd_c00136{bottom:120.845333pt;}
.ybc_c00136{bottom:121.520000pt;}
.ybb_c00136{bottom:124.090667pt;}
.yba_c00136{bottom:124.760000pt;}
.yb9_c00136{bottom:125.298667pt;}
.yb8_c00136{bottom:133.582667pt;}
.yb7_c00136{bottom:133.945333pt;}
.yb6_c00136{bottom:134.361333pt;}
.yb5_c00136{bottom:135.486667pt;}
.yb4_c00136{bottom:136.222667pt;}
.yb3_c00136{bottom:136.536000pt;}
.yb2_c00136{bottom:137.610667pt;}
.yb1_c00136{bottom:138.492000pt;}
.yb0_c00136{bottom:149.745333pt;}
.yaf_c00136{bottom:150.512000pt;}
.yae_c00136{bottom:151.158667pt;}
.yad_c00136{bottom:151.961333pt;}
.yac_c00136{bottom:152.820000pt;}
.yab_c00136{bottom:153.354667pt;}
.yaa_c00136{bottom:153.740000pt;}
.ya9_c00136{bottom:155.765333pt;}
.ya8_c00136{bottom:158.177333pt;}
.ya7_c00136{bottom:164.478667pt;}
.ya6_c00136{bottom:165.252000pt;}
.ya5_c00136{bottom:166.589333pt;}
.ya4_c00136{bottom:166.994667pt;}
.ya3_c00136{bottom:168.089333pt;}
.ya2_c00136{bottom:168.666667pt;}
.ya1_c00136{bottom:170.173333pt;}
.ya0_c00136{bottom:179.362667pt;}
.y9f_c00136{bottom:179.909333pt;}
.y9e_c00136{bottom:181.062667pt;}
.y9d_c00136{bottom:182.812000pt;}
.y9c_c00136{bottom:185.273333pt;}
.y9b_c00136{bottom:185.604000pt;}
.y9a_c00136{bottom:186.013333pt;}
.y99_c00136{bottom:195.549333pt;}
.y98_c00136{bottom:195.869333pt;}
.y97_c00136{bottom:196.822667pt;}
.y96_c00136{bottom:197.489333pt;}
.y95_c00136{bottom:199.184000pt;}
.y94_c00136{bottom:199.594667pt;}
.y93_c00136{bottom:200.212000pt;}
.y92_c00136{bottom:200.630667pt;}
.y91_c00136{bottom:200.938667pt;}
.y90_c00136{bottom:201.373333pt;}
.y8f_c00136{bottom:211.025333pt;}
.y8e_c00136{bottom:211.498667pt;}
.y8d_c00136{bottom:212.778667pt;}
.y8c_c00136{bottom:214.150667pt;}
.y8b_c00136{bottom:214.884000pt;}
.y8a_c00136{bottom:216.536000pt;}
.y89_c00136{bottom:217.933333pt;}
.y88_c00136{bottom:227.320000pt;}
.y87_c00136{bottom:228.466667pt;}
.y86_c00136{bottom:229.334667pt;}
.y85_c00136{bottom:230.522667pt;}
.y84_c00136{bottom:231.670667pt;}
.y83_c00136{bottom:232.310667pt;}
.y82_c00136{bottom:233.532000pt;}
.y81_c00136{bottom:242.962667pt;}
.y80_c00136{bottom:245.974667pt;}
.y7f_c00136{bottom:247.170667pt;}
.y7e_c00136{bottom:247.652000pt;}
.y7d_c00136{bottom:248.410667pt;}
.y7c_c00136{bottom:258.806667pt;}
.y7b_c00136{bottom:259.408000pt;}
.y7a_c00136{bottom:261.534667pt;}
.y79_c00136{bottom:262.240000pt;}
.y78_c00136{bottom:263.553333pt;}
.y77_c00136{bottom:263.909333pt;}
.y76_c00136{bottom:264.732000pt;}
.y75_c00136{bottom:274.757333pt;}
.y74_c00136{bottom:275.318667pt;}
.y73_c00136{bottom:276.080000pt;}
.y72_c00136{bottom:276.598667pt;}
.y71_c00136{bottom:277.616000pt;}
.y70_c00136{bottom:278.200000pt;}
.y6f_c00136{bottom:278.517333pt;}
.y6e_c00136{bottom:279.636000pt;}
.y6d_c00136{bottom:280.088000pt;}
.y6c_c00136{bottom:291.296000pt;}
.y6b_c00136{bottom:291.598667pt;}
.y6a_c00136{bottom:291.760000pt;}
.y69_c00136{bottom:292.310667pt;}
.y68_c00136{bottom:292.825333pt;}
.y67_c00136{bottom:293.144000pt;}
.y66_c00136{bottom:293.382667pt;}
.y65_c00136{bottom:293.916000pt;}
.y64_c00136{bottom:294.254667pt;}
.y63_c00136{bottom:294.726667pt;}
.y62_c00136{bottom:306.012000pt;}
.y61_c00136{bottom:306.109333pt;}
.y60_c00136{bottom:307.069333pt;}
.y5f_c00136{bottom:308.062667pt;}
.y5e_c00136{bottom:308.333333pt;}
.y5d_c00136{bottom:308.592000pt;}
.y5c_c00136{bottom:308.885333pt;}
.y5b_c00136{bottom:320.552000pt;}
.y5a_c00136{bottom:320.868000pt;}
.y59_c00136{bottom:321.204000pt;}
.y58_c00136{bottom:321.533333pt;}
.y57_c00136{bottom:321.752000pt;}
.y56_c00136{bottom:322.477333pt;}
.y55_c00136{bottom:323.233333pt;}
.y54_c00136{bottom:323.605333pt;}
.y53_c00136{bottom:324.005333pt;}
.y52_c00136{bottom:335.568000pt;}
.y51_c00136{bottom:336.268000pt;}
.y50_c00136{bottom:336.681333pt;}
.y4f_c00136{bottom:337.468000pt;}
.y4e_c00136{bottom:337.825333pt;}
.y4d_c00136{bottom:338.177333pt;}
.y4c_c00136{bottom:339.165333pt;}
.y4b_c00136{bottom:339.364000pt;}
.y4a_c00136{bottom:351.485333pt;}
.y49_c00136{bottom:351.865333pt;}
.y48_c00136{bottom:352.412000pt;}
.y47_c00136{bottom:353.204000pt;}
.y46_c00136{bottom:353.638667pt;}
.y45_c00136{bottom:354.001333pt;}
.y44_c00136{bottom:366.796000pt;}
.y43_c00136{bottom:367.245333pt;}
.y42_c00136{bottom:367.801333pt;}
.y41_c00136{bottom:367.985333pt;}
.y40_c00136{bottom:369.004000pt;}
.y3f_c00136{bottom:369.296000pt;}
.y3e_c00136{bottom:369.737333pt;}
.y3d_c00136{bottom:370.025333pt;}
.y3c_c00136{bottom:370.564000pt;}
.y3b_c00136{bottom:383.301333pt;}
.y3a_c00136{bottom:398.101333pt;}
.y39_c00136{bottom:412.541333pt;}
.y38_c00136{bottom:412.834667pt;}
.y37_c00136{bottom:413.461333pt;}
.y36_c00136{bottom:413.900000pt;}
.y35_c00136{bottom:414.193333pt;}
.y34_c00136{bottom:414.932000pt;}
.y33_c00136{bottom:415.300000pt;}
.y32_c00136{bottom:415.917333pt;}
.y31_c00136{bottom:416.114667pt;}
.y30_c00136{bottom:416.642667pt;}
.y2f_c00136{bottom:428.204000pt;}
.y2e_c00136{bottom:428.533333pt;}
.y2d_c00136{bottom:428.740000pt;}
.y2c_c00136{bottom:428.860000pt;}
.y2b_c00136{bottom:429.442667pt;}
.y2a_c00136{bottom:429.778667pt;}
.y29_c00136{bottom:430.158667pt;}
.y28_c00136{bottom:430.314667pt;}
.y27_c00136{bottom:430.561333pt;}
.y26_c00136{bottom:444.716000pt;}
.y25_c00136{bottom:444.929333pt;}
.y24_c00136{bottom:445.128000pt;}
.y23_c00136{bottom:445.274667pt;}
.y22_c00136{bottom:445.989333pt;}
.y21_c00136{bottom:446.220000pt;}
.y20_c00136{bottom:446.550667pt;}
.y1f_c00136{bottom:446.790667pt;}
.y1e_c00136{bottom:447.220000pt;}
.y1d_c00136{bottom:447.604000pt;}
.y1c_c00136{bottom:460.298667pt;}
.y1b_c00136{bottom:460.589333pt;}
.y1a_c00136{bottom:460.872000pt;}
.y19_c00136{bottom:461.628000pt;}
.y18_c00136{bottom:462.077333pt;}
.y17_c00136{bottom:462.293333pt;}
.y16_c00136{bottom:462.722667pt;}
.y15_c00136{bottom:475.910667pt;}
.y14_c00136{bottom:476.097333pt;}
.y13_c00136{bottom:476.353333pt;}
.y12_c00136{bottom:476.473333pt;}
.y11_c00136{bottom:476.892000pt;}
.y10_c00136{bottom:477.090667pt;}
.yf_c00136{bottom:477.892000pt;}
.ye_c00136{bottom:478.004000pt;}
.yd_c00136{bottom:478.321333pt;}
.yc_c00136{bottom:491.437333pt;}
.yb_c00136{bottom:491.800000pt;}
.ya_c00136{bottom:492.272000pt;}
.y9_c00136{bottom:492.473333pt;}
.y8_c00136{bottom:492.593333pt;}
.y7_c00136{bottom:493.268000pt;}
.y6_c00136{bottom:493.750667pt;}
.y5_c00136{bottom:493.921333pt;}
.y4_c00136{bottom:507.168000pt;}
.y3_c00136{bottom:518.954803pt;}
.y2_c00136{bottom:521.280000pt;}
.y1_c00136{bottom:546.960000pt;}
.h2_c00136{height:19.600000pt;}
.hf_c00136{height:45.733333pt;}
.h11_c00136{height:51.333333pt;}
.hc_c00136{height:52.266667pt;}
.he_c00136{height:53.200000pt;}
.h12_c00136{height:54.133333pt;}
.h13_c00136{height:55.066667pt;}
.hd_c00136{height:56.000000pt;}
.h5_c00136{height:56.933333pt;}
.h9_c00136{height:57.866667pt;}
.h6_c00136{height:58.800000pt;}
.h10_c00136{height:59.733333pt;}
.h7_c00136{height:60.666667pt;}
.h4_c00136{height:61.600000pt;}
.ha_c00136{height:62.533333pt;}
.hb_c00136{height:63.466667pt;}
.h8_c00136{height:64.400000pt;}
.h3_c00136{height:115.772445pt;}
.h0_c00136{height:563.733333pt;}
.h1_c00136{height:564.000000pt;}
.w1_c00136{width:324.000000pt;}
.w0_c00136{width:324.240000pt;}
.x0_c00136{left:0.000000pt;}
.x68_c00136{left:21.764000pt;}
.x63_c00136{left:22.957333pt;}
.x49_c00136{left:24.370667pt;}
.x4_c00136{left:25.440000pt;}
.x6a_c00136{left:28.965333pt;}
.x38_c00136{left:30.093333pt;}
.x5e_c00136{left:34.330667pt;}
.x30_c00136{left:36.718667pt;}
.xd_c00136{left:42.386667pt;}
.x6b_c00136{left:43.918667pt;}
.x50_c00136{left:45.137333pt;}
.x7c_c00136{left:48.000000pt;}
.x23_c00136{left:49.328000pt;}
.x5f_c00136{left:50.444000pt;}
.x33_c00136{left:53.278667pt;}
.x2_c00136{left:54.454667pt;}
.x3e_c00136{left:55.792000pt;}
.x12_c00136{left:57.550667pt;}
.x55_c00136{left:59.268000pt;}
.x60_c00136{left:61.852000pt;}
.x39_c00136{left:63.753333pt;}
.x24_c00136{left:64.936000pt;}
.x13_c00136{left:68.784000pt;}
.x4a_c00136{left:70.441333pt;}
.x74_c00136{left:72.389333pt;}
.x56_c00136{left:74.725333pt;}
.x5_c00136{left:77.040000pt;}
.x4c_c00136{left:78.337333pt;}
.x44_c00136{left:79.784000pt;}
.x3a_c00136{left:81.760000pt;}
.x64_c00136{left:83.220000pt;}
.x79_c00136{left:84.750667pt;}
.x6f_c00136{left:86.784000pt;}
.x7d_c00136{left:88.320000pt;}
.xe_c00136{left:90.624000pt;}
.x6_c00136{left:92.400000pt;}
.x41_c00136{left:94.638667pt;}
.x51_c00136{left:98.418667pt;}
.x2a_c00136{left:99.662667pt;}
.x25_c00136{left:102.897333pt;}
.x65_c00136{left:106.300000pt;}
.x3b_c00136{left:109.302667pt;}
.x1d_c00136{left:112.738667pt;}
.x34_c00136{left:113.998667pt;}
.x7_c00136{left:115.680000pt;}
.x7a_c00136{left:118.628000pt;}
.x2b_c00136{left:120.138667pt;}
.x71_c00136{left:121.657333pt;}
.x59_c00136{left:125.262667pt;}
.x75_c00136{left:126.530667pt;}
.x3c_c00136{left:127.537333pt;}
.x4d_c00136{left:129.761333pt;}
.x8_c00136{left:132.240000pt;}
.x45_c00136{left:133.793333pt;}
.x1a_c00136{left:135.020000pt;}
.x26_c00136{left:136.460000pt;}
.x1e_c00136{left:140.337333pt;}
.x52_c00136{left:141.380000pt;}
.x3_c00136{left:143.885333pt;}
.x14_c00136{left:148.936000pt;}
.x66_c00136{left:150.084000pt;}
.x4e_c00136{left:151.044000pt;}
.x6c_c00136{left:152.654667pt;}
.x9_c00136{left:158.160000pt;}
.x1f_c00136{left:159.520000pt;}
.x2c_c00136{left:161.169333pt;}
.x57_c00136{left:162.485333pt;}
.x35_c00136{left:164.638667pt;}
.x67_c00136{left:166.316000pt;}
.x15_c00136{left:168.858667pt;}
.xf_c00136{left:170.058667pt;}
.x6d_c00136{left:172.437333pt;}
.x76_c00136{left:173.730667pt;}
.x1_c00136{left:175.200000pt;}
.x2d_c00136{left:177.480000pt;}
.x5a_c00136{left:179.462667pt;}
.x42_c00136{left:182.714667pt;}
.x7b_c00136{left:183.924000pt;}
.x46_c00136{left:185.626667pt;}
.x10_c00136{left:190.242667pt;}
.x3d_c00136{left:191.197333pt;}
.xa_c00136{left:192.960000pt;}
.x27_c00136{left:194.742667pt;}
.x36_c00136{left:199.438667pt;}
.x31_c00136{left:200.398667pt;}
.x2e_c00136{left:201.874667pt;}
.x3f_c00136{left:203.633333pt;}
.xb_c00136{left:205.920000pt;}
.x43_c00136{left:207.017333pt;}
.x5d_c00136{left:208.261333pt;}
.x16_c00136{left:210.660000pt;}
.x5b_c00136{left:211.632000pt;}
.x61_c00136{left:213.305333pt;}
.x53_c00136{left:214.562667pt;}
.x20_c00136{left:219.049333pt;}
.x77_c00136{left:220.550667pt;}
.x17_c00136{left:222.642667pt;}
.x47_c00136{left:224.796000pt;}
.x28_c00136{left:227.445333pt;}
.x21_c00136{left:231.285333pt;}
.x4f_c00136{left:232.876000pt;}
.x40_c00136{left:235.309333pt;}
.x11_c00136{left:237.492000pt;}
.x1b_c00136{left:238.976000pt;}
.x69_c00136{left:240.788000pt;}
.x72_c00136{left:245.550667pt;}
.x18_c00136{left:248.278667pt;}
.x78_c00136{left:249.897333pt;}
.x54_c00136{left:250.797333pt;}
.x2f_c00136{left:252.969333pt;}
.x5c_c00136{left:254.106667pt;}
.x4b_c00136{left:255.760000pt;}
.x6e_c00136{left:257.269333pt;}
.x29_c00136{left:260.317333pt;}
.x73_c00136{left:261.496000pt;}
.x37_c00136{left:263.518667pt;}
.x22_c00136{left:265.597333pt;}
.x19_c00136{left:267.006667pt;}
.x1c_c00136{left:267.993333pt;}
.x48_c00136{left:271.284000pt;}
.xc_c00136{left:274.320000pt;}
.x70_c00136{left:275.245333pt;}
.x62_c00136{left:276.269333pt;}
.x32_c00136{left:277.918667pt;}
.x58_c00136{left:281.125333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00137 {
    display:none;
  }
  .loading-indicator_c00137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00137 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00137 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00137" -> "#page-container .classname_c00137")
 */
.pf_c00137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00137 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00137 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00137 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00137 {overflow:visible;}
  }
}
.c_c00137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00137 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00137:after { /* webkit #35443 */
  content: '';
}
.t_c00137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00137 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00137 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00137 { /* info for Javascript */
  display:none;
}
.l_c00137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00137:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00137 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00137.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m100_c00137{transform:matrix(0.067646,-0.001082,0.003999,0.249968,0,0);-ms-transform:matrix(0.067646,-0.001082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.067646,-0.001082,0.003999,0.249968,0,0);}
.m1_c00137{transform:matrix(0.122540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122540,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.135170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135170,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.150097,-0.001951,0.003250,0.249979,0,0);-ms-transform:matrix(0.150097,-0.001951,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150097,-0.001951,0.003250,0.249979,0,0);}
.md5_c00137{transform:matrix(0.151060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151060,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.153129,-0.001838,0.003000,0.249982,0,0);-ms-transform:matrix(0.153129,-0.001838,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153129,-0.001838,0.003000,0.249982,0,0);}
.m13_c00137{transform:matrix(0.153365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153365,0.000000,0.000000,0.250000,0,0);}
.mfb_c00137{transform:matrix(0.153503,-0.002303,0.003750,0.249972,0,0);-ms-transform:matrix(0.153503,-0.002303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153503,-0.002303,0.003750,0.249972,0,0);}
.md3_c00137{transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154490,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);}
.mf1_c00137{transform:matrix(0.155348,-0.002330,0.003750,0.249972,0,0);-ms-transform:matrix(0.155348,-0.002330,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155348,-0.002330,0.003750,0.249972,0,0);}
.m18_c00137{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00137{transform:matrix(0.156707,-0.002037,0.003250,0.249979,0,0);-ms-transform:matrix(0.156707,-0.002037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156707,-0.002037,0.003250,0.249979,0,0);}
.mf0_c00137{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.158132,-0.002056,0.003250,0.249979,0,0);-ms-transform:matrix(0.158132,-0.002056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158132,-0.002056,0.003250,0.249979,0,0);}
.mc9_c00137{transform:matrix(0.159182,-0.001592,0.002500,0.249988,0,0);-ms-transform:matrix(0.159182,-0.001592,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159182,-0.001592,0.002500,0.249988,0,0);}
.m16_c00137{transform:matrix(0.159365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.159520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159520,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);}
.m97_c00137{transform:matrix(0.160501,-0.002087,0.003250,0.249979,0,0);-ms-transform:matrix(0.160501,-0.002087,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160501,-0.002087,0.003250,0.249979,0,0);}
.m2d_c00137{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.md8_c00137{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.161860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161860,0.000000,0.000000,0.250000,0,0);}
.mfd_c00137{transform:matrix(0.162812,-0.002442,0.003750,0.249972,0,0);-ms-transform:matrix(0.162812,-0.002442,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162812,-0.002442,0.003750,0.249972,0,0);}
.m40_c00137{transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);-ms-transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163098,-0.001957,0.003000,0.249982,0,0);}
.mfa_c00137{transform:matrix(0.163102,-0.002447,0.003750,0.249972,0,0);-ms-transform:matrix(0.163102,-0.002447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163102,-0.002447,0.003750,0.249972,0,0);}
.mf7_c00137{transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);-ms-transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);}
.mf2_c00137{transform:matrix(0.163837,-0.002458,0.003750,0.249972,0,0);-ms-transform:matrix(0.163837,-0.002458,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163837,-0.002458,0.003750,0.249972,0,0);}
.md1_c00137{transform:matrix(0.164585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164585,0.000000,0.000000,0.250000,0,0);}
.mc5_c00137{transform:matrix(0.164722,-0.001647,0.002500,0.249988,0,0);-ms-transform:matrix(0.164722,-0.001647,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164722,-0.001647,0.002500,0.249988,0,0);}
.m11_c00137{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m98_c00137{transform:matrix(0.165671,-0.002154,0.003250,0.249979,0,0);-ms-transform:matrix(0.165671,-0.002154,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165671,-0.002154,0.003250,0.249979,0,0);}
.mce_c00137{transform:matrix(0.165712,-0.001657,0.002500,0.249988,0,0);-ms-transform:matrix(0.165712,-0.001657,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165712,-0.001657,0.002500,0.249988,0,0);}
.mf5_c00137{transform:matrix(0.166121,-0.002492,0.003750,0.249972,0,0);-ms-transform:matrix(0.166121,-0.002492,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166121,-0.002492,0.003750,0.249972,0,0);}
.ma7_c00137{transform:matrix(0.166326,-0.002162,0.003250,0.249979,0,0);-ms-transform:matrix(0.166326,-0.002162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166326,-0.002162,0.003250,0.249979,0,0);}
.mca_c00137{transform:matrix(0.166972,-0.001670,0.002500,0.249988,0,0);-ms-transform:matrix(0.166972,-0.001670,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166972,-0.001670,0.002500,0.249988,0,0);}
.mf6_c00137{transform:matrix(0.167736,-0.002516,0.003750,0.249972,0,0);-ms-transform:matrix(0.167736,-0.002516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167736,-0.002516,0.003750,0.249972,0,0);}
.mdd_c00137{transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m63_c00137{transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);-ms-transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);}
.m60_c00137{transform:matrix(0.168747,-0.001687,0.002500,0.249988,0,0);-ms-transform:matrix(0.168747,-0.001687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168747,-0.001687,0.002500,0.249988,0,0);}
.m3b_c00137{transform:matrix(0.168798,-0.002026,0.003000,0.249982,0,0);-ms-transform:matrix(0.168798,-0.002026,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168798,-0.002026,0.003000,0.249982,0,0);}
.mbf_c00137{transform:matrix(0.169097,-0.001691,0.002500,0.249988,0,0);-ms-transform:matrix(0.169097,-0.001691,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169097,-0.001691,0.002500,0.249988,0,0);}
.m6b_c00137{transform:matrix(0.169471,-0.002203,0.003250,0.249979,0,0);-ms-transform:matrix(0.169471,-0.002203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169471,-0.002203,0.003250,0.249979,0,0);}
.m67_c00137{transform:matrix(0.170366,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170366,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170366,-0.002215,0.003250,0.249979,0,0);}
.mc6_c00137{transform:matrix(0.170491,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170491,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170491,-0.001705,0.002500,0.249988,0,0);}
.m3a_c00137{transform:matrix(0.172208,-0.002066,0.003000,0.249982,0,0);-ms-transform:matrix(0.172208,-0.002066,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172208,-0.002066,0.003000,0.249982,0,0);}
.mbe_c00137{transform:matrix(0.172246,-0.001722,0.002500,0.249988,0,0);-ms-transform:matrix(0.172246,-0.001722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172246,-0.001722,0.002500,0.249988,0,0);}
.md6_c00137{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m9a_c00137{transform:matrix(0.172570,-0.002243,0.003250,0.249979,0,0);-ms-transform:matrix(0.172570,-0.002243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172570,-0.002243,0.003250,0.249979,0,0);}
.m10_c00137{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.mc8_c00137{transform:matrix(0.173331,-0.001733,0.002500,0.249988,0,0);-ms-transform:matrix(0.173331,-0.001733,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173331,-0.001733,0.002500,0.249988,0,0);}
.m31_c00137{transform:matrix(0.173388,-0.002427,0.003500,0.249976,0,0);-ms-transform:matrix(0.173388,-0.002427,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173388,-0.002427,0.003500,0.249976,0,0);}
.mda_c00137{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.m9c_c00137{transform:matrix(0.174545,-0.002269,0.003250,0.249979,0,0);-ms-transform:matrix(0.174545,-0.002269,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174545,-0.002269,0.003250,0.249979,0,0);}
.m84_c00137{transform:matrix(0.174770,-0.002971,0.004249,0.249964,0,0);-ms-transform:matrix(0.174770,-0.002971,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174770,-0.002971,0.004249,0.249964,0,0);}
.m3d_c00137{transform:matrix(0.174837,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174837,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174837,-0.002098,0.003000,0.249982,0,0);}
.ma_c00137{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);-ms-transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);}
.mf3_c00137{transform:matrix(0.175880,-0.002638,0.003750,0.249972,0,0);-ms-transform:matrix(0.175880,-0.002638,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175880,-0.002638,0.003750,0.249972,0,0);}
.mab_c00137{transform:matrix(0.176340,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176340,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176340,-0.002292,0.003250,0.249979,0,0);}
.m6_c00137{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.mc7_c00137{transform:matrix(0.176531,-0.001765,0.002500,0.249988,0,0);-ms-transform:matrix(0.176531,-0.001765,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176531,-0.001765,0.002500,0.249988,0,0);}
.m43_c00137{transform:matrix(0.176557,-0.002119,0.003000,0.249982,0,0);-ms-transform:matrix(0.176557,-0.002119,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176557,-0.002119,0.003000,0.249982,0,0);}
.mfc_c00137{transform:matrix(0.176635,-0.002650,0.003750,0.249972,0,0);-ms-transform:matrix(0.176635,-0.002650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176635,-0.002650,0.003750,0.249972,0,0);}
.m9e_c00137{transform:matrix(0.176770,-0.002298,0.003250,0.249979,0,0);-ms-transform:matrix(0.176770,-0.002298,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176770,-0.002298,0.003250,0.249979,0,0);}
.m27_c00137{transform:matrix(0.176778,-0.002475,0.003500,0.249976,0,0);-ms-transform:matrix(0.176778,-0.002475,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176778,-0.002475,0.003500,0.249976,0,0);}
.m61_c00137{transform:matrix(0.177611,-0.001776,0.002500,0.249988,0,0);-ms-transform:matrix(0.177611,-0.001776,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177611,-0.001776,0.002500,0.249988,0,0);}
.m1a_c00137{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.178042,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178042,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178042,-0.002137,0.003000,0.249982,0,0);}
.mcd_c00137{transform:matrix(0.178576,-0.001786,0.002500,0.249988,0,0);-ms-transform:matrix(0.178576,-0.001786,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178576,-0.001786,0.002500,0.249988,0,0);}
.m96_c00137{transform:matrix(0.179845,-0.002338,0.003250,0.249979,0,0);-ms-transform:matrix(0.179845,-0.002338,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179845,-0.002338,0.003250,0.249979,0,0);}
.m2b_c00137{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.181007,-0.002534,0.003500,0.249976,0,0);-ms-transform:matrix(0.181007,-0.002534,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181007,-0.002534,0.003500,0.249976,0,0);}
.med_c00137{transform:matrix(0.181187,-0.003443,0.004749,0.249955,0,0);-ms-transform:matrix(0.181187,-0.003443,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181187,-0.003443,0.004749,0.249955,0,0);}
.m7b_c00137{transform:matrix(0.181191,-0.003986,0.005499,0.249940,0,0);-ms-transform:matrix(0.181191,-0.003986,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181191,-0.003986,0.005499,0.249940,0,0);}
.mc2_c00137{transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);}
.m7a_c00137{transform:matrix(0.182041,-0.004005,0.005499,0.249940,0,0);-ms-transform:matrix(0.182041,-0.004005,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182041,-0.004005,0.005499,0.249940,0,0);}
.m1f_c00137{transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);-ms-transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);}
.m93_c00137{transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);-ms-transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);}
.m9b_c00137{transform:matrix(0.183509,-0.002386,0.003250,0.249979,0,0);-ms-transform:matrix(0.183509,-0.002386,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183509,-0.002386,0.003250,0.249979,0,0);}
.md9_c00137{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.m92_c00137{transform:matrix(0.183656,-0.002939,0.003999,0.249968,0,0);-ms-transform:matrix(0.183656,-0.002939,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183656,-0.002939,0.003999,0.249968,0,0);}
.m38_c00137{transform:matrix(0.183977,-0.002576,0.003500,0.249976,0,0);-ms-transform:matrix(0.183977,-0.002576,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183977,-0.002576,0.003500,0.249976,0,0);}
.ma2_c00137{transform:matrix(0.184059,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184059,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184059,-0.002393,0.003250,0.249979,0,0);}
.m51_c00137{transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);}
.mf4_c00137{transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);}
.m99_c00137{transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);-ms-transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);}
.m22_c00137{transform:matrix(0.184732,-0.002586,0.003500,0.249976,0,0);-ms-transform:matrix(0.184732,-0.002586,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184732,-0.002586,0.003500,0.249976,0,0);}
.mb2_c00137{transform:matrix(0.184944,-0.002404,0.003250,0.249979,0,0);-ms-transform:matrix(0.184944,-0.002404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184944,-0.002404,0.003250,0.249979,0,0);}
.m35_c00137{transform:matrix(0.185012,-0.002590,0.003500,0.249976,0,0);-ms-transform:matrix(0.185012,-0.002590,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185012,-0.002590,0.003500,0.249976,0,0);}
.m6e_c00137{transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);-ms-transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185074,-0.002406,0.003250,0.249979,0,0);}
.mc0_c00137{transform:matrix(0.185161,-0.001852,0.002500,0.249988,0,0);-ms-transform:matrix(0.185161,-0.001852,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185161,-0.001852,0.002500,0.249988,0,0);}
.mb5_c00137{transform:matrix(0.185221,-0.001852,0.002500,0.249988,0,0);-ms-transform:matrix(0.185221,-0.001852,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185221,-0.001852,0.002500,0.249988,0,0);}
.me0_c00137{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.186007,-0.002604,0.003500,0.249976,0,0);-ms-transform:matrix(0.186007,-0.002604,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186007,-0.002604,0.003500,0.249976,0,0);}
.m79_c00137{transform:matrix(0.186050,-0.004093,0.005499,0.249940,0,0);-ms-transform:matrix(0.186050,-0.004093,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186050,-0.004093,0.005499,0.249940,0,0);}
.mdb_c00137{transform:matrix(0.186585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186585,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);-ms-transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186812,-0.002242,0.003000,0.249982,0,0);}
.m4a_c00137{transform:matrix(0.186962,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.186962,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186962,-0.002244,0.003000,0.249982,0,0);}
.mfe_c00137{transform:matrix(0.187094,-0.002806,0.003750,0.249972,0,0);-ms-transform:matrix(0.187094,-0.002806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187094,-0.002806,0.003750,0.249972,0,0);}
.mb1_c00137{transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);-ms-transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);}
.mb0_c00137{transform:matrix(0.187189,-0.002433,0.003250,0.249979,0,0);-ms-transform:matrix(0.187189,-0.002433,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187189,-0.002433,0.003250,0.249979,0,0);}
.ma8_c00137{transform:matrix(0.187604,-0.002439,0.003250,0.249979,0,0);-ms-transform:matrix(0.187604,-0.002439,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187604,-0.002439,0.003250,0.249979,0,0);}
.m59_c00137{transform:matrix(0.188051,-0.001881,0.002500,0.249988,0,0);-ms-transform:matrix(0.188051,-0.001881,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188051,-0.001881,0.002500,0.249988,0,0);}
.mf8_c00137{transform:matrix(0.188764,-0.002831,0.003750,0.249972,0,0);-ms-transform:matrix(0.188764,-0.002831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188764,-0.002831,0.003750,0.249972,0,0);}
.m8_c00137{transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);}
.mdc_c00137{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);-ms-transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);}
.m75_c00137{transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);-ms-transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);}
.m89_c00137{transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);-ms-transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);}
.m5e_c00137{transform:matrix(0.189831,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189831,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189831,-0.001898,0.002500,0.249988,0,0);}
.mcc_c00137{transform:matrix(0.189851,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189851,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189851,-0.001899,0.002500,0.249988,0,0);}
.m33_c00137{transform:matrix(0.189876,-0.002658,0.003500,0.249976,0,0);-ms-transform:matrix(0.189876,-0.002658,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189876,-0.002658,0.003500,0.249976,0,0);}
.mae_c00137{transform:matrix(0.190484,-0.002476,0.003250,0.249979,0,0);-ms-transform:matrix(0.190484,-0.002476,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190484,-0.002476,0.003250,0.249979,0,0);}
.mcb_c00137{transform:matrix(0.191035,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.191035,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191035,-0.001910,0.002500,0.249988,0,0);}
.m39_c00137{transform:matrix(0.191046,-0.002675,0.003500,0.249976,0,0);-ms-transform:matrix(0.191046,-0.002675,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191046,-0.002675,0.003500,0.249976,0,0);}
.m26_c00137{transform:matrix(0.191801,-0.002685,0.003500,0.249976,0,0);-ms-transform:matrix(0.191801,-0.002685,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191801,-0.002685,0.003500,0.249976,0,0);}
.maf_c00137{transform:matrix(0.191899,-0.002495,0.003250,0.249979,0,0);-ms-transform:matrix(0.191899,-0.002495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191899,-0.002495,0.003250,0.249979,0,0);}
.m55_c00137{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m78_c00137{transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);-ms-transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);}
.mde_c00137{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.mac_c00137{transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);-ms-transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);}
.mc4_c00137{transform:matrix(0.194600,-0.001946,0.002500,0.249988,0,0);-ms-transform:matrix(0.194600,-0.001946,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194600,-0.001946,0.002500,0.249988,0,0);}
.m72_c00137{transform:matrix(0.194703,-0.004283,0.005499,0.249940,0,0);-ms-transform:matrix(0.194703,-0.004283,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194703,-0.004283,0.005499,0.249940,0,0);}
.mba_c00137{transform:matrix(0.194855,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194855,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194855,-0.001949,0.002500,0.249988,0,0);}
.m24_c00137{transform:matrix(0.195061,-0.002731,0.003500,0.249976,0,0);-ms-transform:matrix(0.195061,-0.002731,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195061,-0.002731,0.003500,0.249976,0,0);}
.m5f_c00137{transform:matrix(0.195205,-0.001952,0.002500,0.249988,0,0);-ms-transform:matrix(0.195205,-0.001952,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195205,-0.001952,0.002500,0.249988,0,0);}
.m2a_c00137{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.mdf_c00137{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.maa_c00137{transform:matrix(0.195478,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195478,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195478,-0.002541,0.003250,0.249979,0,0);}
.m77_c00137{transform:matrix(0.195693,-0.004305,0.005499,0.249940,0,0);-ms-transform:matrix(0.195693,-0.004305,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195693,-0.004305,0.005499,0.249940,0,0);}
.md7_c00137{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00137{transform:matrix(0.196810,-0.001968,0.002500,0.249988,0,0);-ms-transform:matrix(0.196810,-0.001968,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196810,-0.001968,0.002500,0.249988,0,0);}
.m25_c00137{transform:matrix(0.197021,-0.002758,0.003500,0.249976,0,0);-ms-transform:matrix(0.197021,-0.002758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197021,-0.002758,0.003500,0.249976,0,0);}
.m69_c00137{transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);-ms-transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197023,-0.002561,0.003250,0.249979,0,0);}
.m70_c00137{transform:matrix(0.197652,-0.004348,0.005499,0.249940,0,0);-ms-transform:matrix(0.197652,-0.004348,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197652,-0.004348,0.005499,0.249940,0,0);}
.mb3_c00137{transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);-ms-transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);}
.m68_c00137{transform:matrix(0.197863,-0.002572,0.003250,0.249979,0,0);-ms-transform:matrix(0.197863,-0.002572,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197863,-0.002572,0.003250,0.249979,0,0);}
.m7_c00137{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.mbd_c00137{transform:matrix(0.198235,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198235,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198235,-0.001982,0.002500,0.249988,0,0);}
.mf9_c00137{transform:matrix(0.198828,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198828,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198828,-0.002982,0.003750,0.249972,0,0);}
.m5_c00137{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);-ms-transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199535,-0.001995,0.002500,0.249988,0,0);}
.ma1_c00137{transform:matrix(0.200008,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.200008,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200008,-0.002600,0.003250,0.249979,0,0);}
.m3c_c00137{transform:matrix(0.200181,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200181,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200181,-0.002402,0.003000,0.249982,0,0);}
.md0_c00137{transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);}
.md2_c00137{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00137{transform:matrix(0.200516,-0.004411,0.005499,0.249940,0,0);-ms-transform:matrix(0.200516,-0.004411,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200516,-0.004411,0.005499,0.249940,0,0);}
.m12_c00137{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.ma4_c00137{transform:matrix(0.201633,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201633,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201633,-0.002621,0.003250,0.249979,0,0);}
.m1e_c00137{transform:matrix(0.202010,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.202010,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202010,-0.002828,0.003500,0.249976,0,0);}
.m41_c00137{transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);}
.m44_c00137{transform:matrix(0.202740,-0.002433,0.003000,0.249982,0,0);-ms-transform:matrix(0.202740,-0.002433,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202740,-0.002433,0.003000,0.249982,0,0);}
.m20_c00137{transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);}
.m29_c00137{transform:matrix(0.203435,-0.002848,0.003500,0.249976,0,0);-ms-transform:matrix(0.203435,-0.002848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203435,-0.002848,0.003500,0.249976,0,0);}
.mee_c00137{transform:matrix(0.203613,-0.003869,0.004749,0.249955,0,0);-ms-transform:matrix(0.203613,-0.003869,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203613,-0.003869,0.004749,0.249955,0,0);}
.ma5_c00137{transform:matrix(0.204388,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204388,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204388,-0.002657,0.003250,0.249979,0,0);}
.m53_c00137{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);}
.me3_c00137{transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);-ms-transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206518,-0.003924,0.004749,0.249955,0,0);}
.m6d_c00137{transform:matrix(0.206643,-0.002686,0.003250,0.249979,0,0);-ms-transform:matrix(0.206643,-0.002686,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206643,-0.002686,0.003250,0.249979,0,0);}
.m90_c00137{transform:matrix(0.207588,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207588,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207588,-0.003321,0.003999,0.249968,0,0);}
.m36_c00137{transform:matrix(0.207790,-0.002909,0.003500,0.249976,0,0);-ms-transform:matrix(0.207790,-0.002909,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207790,-0.002909,0.003500,0.249976,0,0);}
.ma6_c00137{transform:matrix(0.208392,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208392,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208392,-0.002709,0.003250,0.249979,0,0);}
.m8c_c00137{transform:matrix(0.208488,-0.003336,0.003999,0.249968,0,0);-ms-transform:matrix(0.208488,-0.003336,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208488,-0.003336,0.003999,0.249968,0,0);}
.m8f_c00137{transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);-ms-transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);}
.m85_c00137{transform:matrix(0.209320,-0.003558,0.004249,0.249964,0,0);-ms-transform:matrix(0.209320,-0.003558,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209320,-0.003558,0.004249,0.249964,0,0);}
.m88_c00137{transform:matrix(0.210413,-0.003367,0.003999,0.249968,0,0);-ms-transform:matrix(0.210413,-0.003367,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210413,-0.003367,0.003999,0.249968,0,0);}
.meb_c00137{transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);-ms-transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);}
.m3e_c00137{transform:matrix(0.210830,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210830,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210830,-0.002530,0.003000,0.249982,0,0);}
.mff_c00137{transform:matrix(0.210931,-0.003164,0.003750,0.249972,0,0);-ms-transform:matrix(0.210931,-0.003164,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210931,-0.003164,0.003750,0.249972,0,0);}
.m9_c00137{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.211944,-0.002119,0.002500,0.249988,0,0);-ms-transform:matrix(0.211944,-0.002119,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211944,-0.002119,0.002500,0.249988,0,0);}
.mb9_c00137{transform:matrix(0.212094,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212094,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212094,-0.002121,0.002500,0.249988,0,0);}
.m57_c00137{transform:matrix(0.212234,-0.002122,0.002500,0.249988,0,0);-ms-transform:matrix(0.212234,-0.002122,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212234,-0.002122,0.002500,0.249988,0,0);}
.m86_c00137{transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);-ms-transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);}
.m6c_c00137{transform:matrix(0.213177,-0.002771,0.003250,0.249979,0,0);-ms-transform:matrix(0.213177,-0.002771,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213177,-0.002771,0.003250,0.249979,0,0);}
.m8a_c00137{transform:matrix(0.213463,-0.003415,0.003999,0.249968,0,0);-ms-transform:matrix(0.213463,-0.003415,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213463,-0.003415,0.003999,0.249968,0,0);}
.mbc_c00137{transform:matrix(0.214369,-0.002144,0.002500,0.249988,0,0);-ms-transform:matrix(0.214369,-0.002144,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214369,-0.002144,0.002500,0.249988,0,0);}
.m7c_c00137{transform:matrix(0.214403,-0.004717,0.005499,0.249940,0,0);-ms-transform:matrix(0.214403,-0.004717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214403,-0.004717,0.005499,0.249940,0,0);}
.mc1_c00137{transform:matrix(0.214494,-0.002145,0.002500,0.249988,0,0);-ms-transform:matrix(0.214494,-0.002145,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214494,-0.002145,0.002500,0.249988,0,0);}
.m8d_c00137{transform:matrix(0.214753,-0.003436,0.003999,0.249968,0,0);-ms-transform:matrix(0.214753,-0.003436,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214753,-0.003436,0.003999,0.249968,0,0);}
.m4f_c00137{transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00137{transform:matrix(0.216118,-0.004755,0.005499,0.249940,0,0);-ms-transform:matrix(0.216118,-0.004755,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216118,-0.004755,0.005499,0.249940,0,0);}
.me2_c00137{transform:matrix(0.216446,-0.004112,0.004749,0.249955,0,0);-ms-transform:matrix(0.216446,-0.004112,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216446,-0.004112,0.004749,0.249955,0,0);}
.mec_c00137{transform:matrix(0.216541,-0.004114,0.004749,0.249955,0,0);-ms-transform:matrix(0.216541,-0.004114,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216541,-0.004114,0.004749,0.249955,0,0);}
.m34_c00137{transform:matrix(0.216624,-0.003033,0.003500,0.249976,0,0);-ms-transform:matrix(0.216624,-0.003033,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216624,-0.003033,0.003500,0.249976,0,0);}
.m4c_c00137{transform:matrix(0.217274,-0.002607,0.003000,0.249982,0,0);-ms-transform:matrix(0.217274,-0.002607,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217274,-0.002607,0.003000,0.249982,0,0);}
.m91_c00137{transform:matrix(0.217557,-0.003481,0.003999,0.249968,0,0);-ms-transform:matrix(0.217557,-0.003481,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217557,-0.003481,0.003999,0.249968,0,0);}
.m52_c00137{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.218063,-0.003707,0.004249,0.249964,0,0);-ms-transform:matrix(0.218063,-0.003707,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218063,-0.003707,0.004249,0.249964,0,0);}
.m5b_c00137{transform:matrix(0.218729,-0.002187,0.002500,0.249988,0,0);-ms-transform:matrix(0.218729,-0.002187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218729,-0.002187,0.002500,0.249988,0,0);}
.m4_c00137{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m94_c00137{transform:matrix(0.219522,-0.003512,0.003999,0.249968,0,0);-ms-transform:matrix(0.219522,-0.003512,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219522,-0.003512,0.003999,0.249968,0,0);}
.me6_c00137{transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);-ms-transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);}
.m95_c00137{transform:matrix(0.220212,-0.003523,0.003999,0.249968,0,0);-ms-transform:matrix(0.220212,-0.003523,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220212,-0.003523,0.003999,0.249968,0,0);}
.me4_c00137{transform:matrix(0.220520,-0.004190,0.004749,0.249955,0,0);-ms-transform:matrix(0.220520,-0.004190,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220520,-0.004190,0.004749,0.249955,0,0);}
.m8b_c00137{transform:matrix(0.221277,-0.003540,0.003999,0.249968,0,0);-ms-transform:matrix(0.221277,-0.003540,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221277,-0.003540,0.003999,0.249968,0,0);}
.m9d_c00137{transform:matrix(0.222561,-0.002893,0.003250,0.249979,0,0);-ms-transform:matrix(0.222561,-0.002893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222561,-0.002893,0.003250,0.249979,0,0);}
.me1_c00137{transform:matrix(0.223040,-0.004238,0.004749,0.249955,0,0);-ms-transform:matrix(0.223040,-0.004238,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223040,-0.004238,0.004749,0.249955,0,0);}
.m7d_c00137{transform:matrix(0.223216,-0.004911,0.005499,0.249940,0,0);-ms-transform:matrix(0.223216,-0.004911,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223216,-0.004911,0.005499,0.249940,0,0);}
.mef_c00137{transform:matrix(0.223270,-0.004242,0.004749,0.249955,0,0);-ms-transform:matrix(0.223270,-0.004242,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223270,-0.004242,0.004749,0.249955,0,0);}
.mb8_c00137{transform:matrix(0.223859,-0.002239,0.002500,0.249988,0,0);-ms-transform:matrix(0.223859,-0.002239,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223859,-0.002239,0.002500,0.249988,0,0);}
.m82_c00137{transform:matrix(0.223908,-0.003806,0.004249,0.249964,0,0);-ms-transform:matrix(0.223908,-0.003806,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223908,-0.003806,0.004249,0.249964,0,0);}
.mb4_c00137{transform:matrix(0.223971,-0.002912,0.003250,0.249979,0,0);-ms-transform:matrix(0.223971,-0.002912,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223971,-0.002912,0.003250,0.249979,0,0);}
.m5c_c00137{transform:matrix(0.224004,-0.002240,0.002500,0.249988,0,0);-ms-transform:matrix(0.224004,-0.002240,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224004,-0.002240,0.002500,0.249988,0,0);}
.m23_c00137{transform:matrix(0.224093,-0.003137,0.003500,0.249976,0,0);-ms-transform:matrix(0.224093,-0.003137,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224093,-0.003137,0.003500,0.249976,0,0);}
.m2e_c00137{transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);}
.mbb_c00137{transform:matrix(0.226834,-0.002268,0.002500,0.249988,0,0);-ms-transform:matrix(0.226834,-0.002268,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226834,-0.002268,0.002500,0.249988,0,0);}
.me_c00137{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.228436,-0.002970,0.003250,0.249979,0,0);-ms-transform:matrix(0.228436,-0.002970,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228436,-0.002970,0.003250,0.249979,0,0);}
.mad_c00137{transform:matrix(0.230676,-0.002999,0.003250,0.249979,0,0);-ms-transform:matrix(0.230676,-0.002999,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230676,-0.002999,0.003250,0.249979,0,0);}
.m7f_c00137{transform:matrix(0.232231,-0.003948,0.004249,0.249964,0,0);-ms-transform:matrix(0.232231,-0.003948,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232231,-0.003948,0.004249,0.249964,0,0);}
.m103_c00137{transform:matrix(0.233210,-0.003731,0.003999,0.249968,0,0);-ms-transform:matrix(0.233210,-0.003731,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233210,-0.003731,0.003999,0.249968,0,0);}
.mea_c00137{transform:matrix(0.234203,-0.004450,0.004749,0.249955,0,0);-ms-transform:matrix(0.234203,-0.004450,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234203,-0.004450,0.004749,0.249955,0,0);}
.m54_c00137{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.ma9_c00137{transform:matrix(0.235410,-0.003060,0.003250,0.249979,0,0);-ms-transform:matrix(0.235410,-0.003060,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235410,-0.003060,0.003250,0.249979,0,0);}
.m80_c00137{transform:matrix(0.235801,-0.004009,0.004249,0.249964,0,0);-ms-transform:matrix(0.235801,-0.004009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235801,-0.004009,0.004249,0.249964,0,0);}
.m46_c00137{transform:matrix(0.237073,-0.002845,0.003000,0.249982,0,0);-ms-transform:matrix(0.237073,-0.002845,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237073,-0.002845,0.003000,0.249982,0,0);}
.m76_c00137{transform:matrix(0.237103,-0.005216,0.005499,0.249940,0,0);-ms-transform:matrix(0.237103,-0.005216,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237103,-0.005216,0.005499,0.249940,0,0);}
.m4b_c00137{transform:matrix(0.237813,-0.002854,0.003000,0.249982,0,0);-ms-transform:matrix(0.237813,-0.002854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237813,-0.002854,0.003000,0.249982,0,0);}
.m2c_c00137{transform:matrix(0.237985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237985,0.000000,0.000000,0.250000,0,0);}
.m107_c00137{transform:matrix(0.238245,-0.003812,0.003999,0.249968,0,0);-ms-transform:matrix(0.238245,-0.003812,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238245,-0.003812,0.003999,0.249968,0,0);}
.m87_c00137{transform:matrix(0.239044,-0.003825,0.003999,0.249968,0,0);-ms-transform:matrix(0.239044,-0.003825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239044,-0.003825,0.003999,0.249968,0,0);}
.m2_c00137{transform:matrix(0.240265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240265,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.241996,-0.003388,0.003500,0.249976,0,0);-ms-transform:matrix(0.241996,-0.003388,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241996,-0.003388,0.003500,0.249976,0,0);}
.m8e_c00137{transform:matrix(0.242264,-0.003876,0.003999,0.249968,0,0);-ms-transform:matrix(0.242264,-0.003876,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242264,-0.003876,0.003999,0.249968,0,0);}
.m58_c00137{transform:matrix(0.243823,-0.002438,0.002500,0.249988,0,0);-ms-transform:matrix(0.243823,-0.002438,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243823,-0.002438,0.002500,0.249988,0,0);}
.m49_c00137{transform:matrix(0.244507,-0.002934,0.003000,0.249982,0,0);-ms-transform:matrix(0.244507,-0.002934,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244507,-0.002934,0.003000,0.249982,0,0);}
.mf_c00137{transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);}
.me9_c00137{transform:matrix(0.246501,-0.004684,0.004749,0.249955,0,0);-ms-transform:matrix(0.246501,-0.004684,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246501,-0.004684,0.004749,0.249955,0,0);}
.mcf_c00137{transform:matrix(0.247438,-0.002474,0.002500,0.249988,0,0);-ms-transform:matrix(0.247438,-0.002474,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247438,-0.002474,0.002500,0.249988,0,0);}
.m5a_c00137{transform:matrix(0.249233,-0.002492,0.002500,0.249988,0,0);-ms-transform:matrix(0.249233,-0.002492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249233,-0.002492,0.002500,0.249988,0,0);}
.m106_c00137{transform:matrix(0.252053,-0.004033,0.003999,0.249968,0,0);-ms-transform:matrix(0.252053,-0.004033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252053,-0.004033,0.003999,0.249968,0,0);}
.m47_c00137{transform:matrix(0.253517,-0.003042,0.003000,0.249982,0,0);-ms-transform:matrix(0.253517,-0.003042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253517,-0.003042,0.003000,0.249982,0,0);}
.mb6_c00137{transform:matrix(0.254137,-0.002541,0.002500,0.249988,0,0);-ms-transform:matrix(0.254137,-0.002541,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254137,-0.002541,0.002500,0.249988,0,0);}
.m71_c00137{transform:matrix(0.257083,-0.005656,0.005499,0.249940,0,0);-ms-transform:matrix(0.257083,-0.005656,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257083,-0.005656,0.005499,0.249940,0,0);}
.me5_c00137{transform:matrix(0.257099,-0.004885,0.004749,0.249955,0,0);-ms-transform:matrix(0.257099,-0.004885,0.004749,0.249955,0,0);-webkit-transform:matrix(0.257099,-0.004885,0.004749,0.249955,0,0);}
.ma0_c00137{transform:matrix(0.257643,-0.003349,0.003250,0.249979,0,0);-ms-transform:matrix(0.257643,-0.003349,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257643,-0.003349,0.003250,0.249979,0,0);}
.m81_c00137{transform:matrix(0.257803,-0.004383,0.004249,0.249964,0,0);-ms-transform:matrix(0.257803,-0.004383,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257803,-0.004383,0.004249,0.249964,0,0);}
.md4_c00137{transform:matrix(0.263190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263190,0.000000,0.000000,0.250000,0,0);}
.m73_c00137{transform:matrix(0.268505,-0.005907,0.005499,0.249940,0,0);-ms-transform:matrix(0.268505,-0.005907,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268505,-0.005907,0.005499,0.249940,0,0);}
.m104_c00137{transform:matrix(0.272465,-0.004359,0.003999,0.249968,0,0);-ms-transform:matrix(0.272465,-0.004359,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272465,-0.004359,0.003999,0.249968,0,0);}
.me8_c00137{transform:matrix(0.289603,-0.005502,0.004749,0.249955,0,0);-ms-transform:matrix(0.289603,-0.005502,0.004749,0.249955,0,0);-webkit-transform:matrix(0.289603,-0.005502,0.004749,0.249955,0,0);}
.m9f_c00137{transform:matrix(0.304544,-0.003959,0.003250,0.249979,0,0);-ms-transform:matrix(0.304544,-0.003959,0.003250,0.249979,0,0);-webkit-transform:matrix(0.304544,-0.003959,0.003250,0.249979,0,0);}
.m105_c00137{transform:matrix(0.307806,-0.004925,0.003999,0.249968,0,0);-ms-transform:matrix(0.307806,-0.004925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.307806,-0.004925,0.003999,0.249968,0,0);}
.me7_c00137{transform:matrix(0.312824,-0.005944,0.004749,0.249955,0,0);-ms-transform:matrix(0.312824,-0.005944,0.004749,0.249955,0,0);-webkit-transform:matrix(0.312824,-0.005944,0.004749,0.249955,0,0);}
.m4d_c00137{transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{transform:matrix(0.316328,-0.006959,0.005499,0.249940,0,0);-ms-transform:matrix(0.316328,-0.006959,0.005499,0.249940,0,0);-webkit-transform:matrix(0.316328,-0.006959,0.005499,0.249940,0,0);}
.m102_c00137{transform:matrix(0.320789,-0.005133,0.003999,0.249968,0,0);-ms-transform:matrix(0.320789,-0.005133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.320789,-0.005133,0.003999,0.249968,0,0);}
.m101_c00137{transform:matrix(0.329078,-0.005265,0.003999,0.249968,0,0);-ms-transform:matrix(0.329078,-0.005265,0.003999,0.249968,0,0);-webkit-transform:matrix(0.329078,-0.005265,0.003999,0.249968,0,0);}
.m1d_c00137{transform:matrix(0.344011,-0.004816,0.003500,0.249976,0,0);-ms-transform:matrix(0.344011,-0.004816,0.003500,0.249976,0,0);-webkit-transform:matrix(0.344011,-0.004816,0.003500,0.249976,0,0);}
.mb7_c00137{transform:matrix(0.374826,-0.003748,0.002500,0.249988,0,0);-ms-transform:matrix(0.374826,-0.003748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.374826,-0.003748,0.002500,0.249988,0,0);}
.m66_c00137{transform:matrix(0.511207,-0.006646,0.003250,0.249979,0,0);-ms-transform:matrix(0.511207,-0.006646,0.003250,0.249979,0,0);-webkit-transform:matrix(0.511207,-0.006646,0.003250,0.249979,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:0.000000px;}
._0_c00137{width:309.609947px;}
.fc0_c00137{color:transparent;}
.fs3_c00137{font-size:18.901852px;}
.fs1c_c00137{font-size:22.050000px;}
.fs1f_c00137{font-size:45.155779px;}
.fs1a_c00137{font-size:55.660044px;}
.fsa_c00137{font-size:57.752887px;}
.fs10_c00137{font-size:57.758344px;}
.fse_c00137{font-size:57.763974px;}
.fs9_c00137{font-size:58.800000px;}
.fsf_c00137{font-size:58.814228px;}
.fs8_c00137{font-size:59.854309px;}
.fs11_c00137{font-size:59.857660px;}
.fs4_c00137{font-size:60.905968px;}
.fs16_c00137{font-size:61.953097px;}
.fs15_c00137{font-size:61.955235px;}
.fs1b_c00137{font-size:61.961181px;}
.fs1_c00137{font-size:64.050000px;}
.fs17_c00137{font-size:64.053202px;}
.fsd_c00137{font-size:64.055412px;}
.fs14_c00137{font-size:65.105501px;}
.fsc_c00137{font-size:66.155589px;}
.fs19_c00137{font-size:68.250000px;}
.fs7_c00137{font-size:68.254914px;}
.fs13_c00137{font-size:69.305856px;}
.fs6_c00137{font-size:69.306791px;}
.fs5_c00137{font-size:70.350000px;}
.fs1e_c00137{font-size:70.357914px;}
.fsb_c00137{font-size:71.403570px;}
.fs2_c00137{font-size:72.450000px;}
.fs18_c00137{font-size:72.453622px;}
.fs12_c00137{font-size:75.606388px;}
.fs1d_c00137{font-size:75.608505px;}
.fs0_c00137{font-size:86.100000px;}
.y0_c00137{bottom:0.000000px;}
.yeb_c00137{bottom:28.621500px;}
.yec_c00137{bottom:28.745004px;}
.yed_c00137{bottom:29.526420px;}
.yee_c00137{bottom:31.137780px;}
.yef_c00137{bottom:31.508220px;}
.yf0_c00137{bottom:32.139756px;}
.yf1_c00137{bottom:32.333172px;}
.yf2_c00137{bottom:32.737308px;}
.ye3_c00137{bottom:45.633120px;}
.ye4_c00137{bottom:46.685715px;}
.ye5_c00137{bottom:48.455625px;}
.ye6_c00137{bottom:49.441178px;}
.ye7_c00137{bottom:50.135858px;}
.ye8_c00137{bottom:51.500677px;}
.ye9_c00137{bottom:51.968092px;}
.yea_c00137{bottom:52.993297px;}
.ydc_c00137{bottom:62.913000px;}
.ydd_c00137{bottom:63.196478px;}
.yde_c00137{bottom:64.302308px;}
.ydf_c00137{bottom:64.667010px;}
.ye0_c00137{bottom:65.803710px;}
.ye1_c00137{bottom:66.152280px;}
.ye2_c00137{bottom:66.991508px;}
.ydb_c00137{bottom:75.060000px;}
.yd4_c00137{bottom:80.175000px;}
.yd5_c00137{bottom:80.614926px;}
.yd6_c00137{bottom:82.178521px;}
.yd7_c00137{bottom:82.814527px;}
.yd8_c00137{bottom:83.529136px;}
.yd9_c00137{bottom:84.082977px;}
.yda_c00137{bottom:85.545939px;}
.ycc_c00137{bottom:96.124500px;}
.ycd_c00137{bottom:96.812661px;}
.yce_c00137{bottom:97.679774px;}
.ycf_c00137{bottom:98.212210px;}
.yd0_c00137{bottom:98.852264px;}
.yd1_c00137{bottom:99.160007px;}
.yd2_c00137{bottom:99.690335px;}
.yd3_c00137{bottom:101.516672px;}
.yc4_c00137{bottom:115.300500px;}
.yc5_c00137{bottom:117.421500px;}
.yc6_c00137{bottom:117.837000px;}
.yc7_c00137{bottom:119.125500px;}
.yc8_c00137{bottom:119.632500px;}
.yc9_c00137{bottom:120.364500px;}
.yca_c00137{bottom:121.668000px;}
.ycb_c00137{bottom:122.041500px;}
.yc3_c00137{bottom:136.143000px;}
.ybc_c00137{bottom:150.661785px;}
.ybd_c00137{bottom:151.259340px;}
.ybe_c00137{bottom:152.237340px;}
.ybf_c00137{bottom:153.078930px;}
.yc0_c00137{bottom:153.883845px;}
.yc1_c00137{bottom:154.213290px;}
.yc2_c00137{bottom:154.758015px;}
.yb7_c00137{bottom:169.549530px;}
.yb8_c00137{bottom:170.517915px;}
.yb9_c00137{bottom:170.948475px;}
.yba_c00137{bottom:171.675525px;}
.ybb_c00137{bottom:172.299960px;}
.yb3_c00137{bottom:188.324130px;}
.yb4_c00137{bottom:188.324400px;}
.yb2_c00137{bottom:188.324445px;}
.yb1_c00137{bottom:188.324460px;}
.yaf_c00137{bottom:188.324505px;}
.yb6_c00137{bottom:188.324655px;}
.yb5_c00137{bottom:188.324970px;}
.yb0_c00137{bottom:188.325090px;}
.ya8_c00137{bottom:205.201500px;}
.ya9_c00137{bottom:205.433850px;}
.yaa_c00137{bottom:206.130660px;}
.yab_c00137{bottom:206.281365px;}
.yac_c00137{bottom:206.997210px;}
.yad_c00137{bottom:207.234750px;}
.yae_c00137{bottom:207.785550px;}
.ya0_c00137{bottom:223.017233px;}
.ya1_c00137{bottom:223.269180px;}
.ya2_c00137{bottom:223.521088px;}
.ya3_c00137{bottom:224.162327px;}
.ya4_c00137{bottom:224.607475px;}
.ya5_c00137{bottom:224.886708px;}
.ya6_c00137{bottom:225.163618px;}
.ya7_c00137{bottom:225.822799px;}
.y98_c00137{bottom:239.491359px;}
.y99_c00137{bottom:240.560838px;}
.y9a_c00137{bottom:240.753484px;}
.y9b_c00137{bottom:241.055363px;}
.y9c_c00137{bottom:242.151360px;}
.y9d_c00137{bottom:242.487126px;}
.y9e_c00137{bottom:243.179483px;}
.y9f_c00137{bottom:243.432633px;}
.y92_c00137{bottom:257.040609px;}
.y93_c00137{bottom:257.521425px;}
.y94_c00137{bottom:257.869026px;}
.y95_c00137{bottom:258.746112px;}
.y96_c00137{bottom:260.050686px;}
.y97_c00137{bottom:260.406087px;}
.y89_c00137{bottom:274.051500px;}
.y8a_c00137{bottom:274.434109px;}
.y8b_c00137{bottom:274.894602px;}
.y8c_c00137{bottom:275.241332px;}
.y8d_c00137{bottom:275.859091px;}
.y8e_c00137{bottom:276.235597px;}
.y8f_c00137{bottom:277.028662px;}
.y90_c00137{bottom:277.193847px;}
.y91_c00137{bottom:277.882158px;}
.y81_c00137{bottom:290.774040px;}
.y82_c00137{bottom:291.316536px;}
.y83_c00137{bottom:291.708996px;}
.y84_c00137{bottom:292.431036px;}
.y85_c00137{bottom:292.767192px;}
.y86_c00137{bottom:293.025768px;}
.y87_c00137{bottom:293.600208px;}
.y88_c00137{bottom:293.949444px;}
.y7a_c00137{bottom:308.611500px;}
.y7b_c00137{bottom:309.173100px;}
.y7c_c00137{bottom:309.675324px;}
.y7d_c00137{bottom:310.016772px;}
.y7e_c00137{bottom:311.471460px;}
.y7f_c00137{bottom:311.965116px;}
.y80_c00137{bottom:312.751596px;}
.y72_c00137{bottom:324.813000px;}
.y73_c00137{bottom:325.190732px;}
.y74_c00137{bottom:325.442442px;}
.y75_c00137{bottom:326.678682px;}
.y76_c00137{bottom:327.994100px;}
.y77_c00137{bottom:328.471460px;}
.y78_c00137{bottom:328.852991px;}
.y79_c00137{bottom:329.564262px;}
.y68_c00137{bottom:343.168743px;}
.y69_c00137{bottom:343.528611px;}
.y6a_c00137{bottom:344.099118px;}
.y6b_c00137{bottom:344.606118px;}
.y6c_c00137{bottom:344.936073px;}
.y6d_c00137{bottom:345.291237px;}
.y6e_c00137{bottom:345.851277px;}
.y6f_c00137{bottom:346.123290px;}
.y70_c00137{bottom:346.944927px;}
.y71_c00137{bottom:347.419209px;}
.y62_c00137{bottom:360.724500px;}
.y63_c00137{bottom:361.386414px;}
.y64_c00137{bottom:362.354271px;}
.y65_c00137{bottom:362.693412px;}
.y66_c00137{bottom:363.113106px;}
.y67_c00137{bottom:363.840096px;}
.y60_c00137{bottom:364.622573px;}
.y5d_c00137{bottom:364.622790px;}
.y5f_c00137{bottom:364.622901px;}
.y61_c00137{bottom:364.622953px;}
.y5e_c00137{bottom:364.623251px;}
.y56_c00137{bottom:378.541500px;}
.y57_c00137{bottom:378.945794px;}
.y58_c00137{bottom:379.791684px;}
.y59_c00137{bottom:380.380584px;}
.y5a_c00137{bottom:380.746424px;}
.y5b_c00137{bottom:381.048167px;}
.y5c_c00137{bottom:381.971452px;}
.y50_c00137{bottom:396.361530px;}
.y51_c00137{bottom:397.171575px;}
.y52_c00137{bottom:397.845045px;}
.y53_c00137{bottom:398.031045px;}
.y54_c00137{bottom:398.743500px;}
.y55_c00137{bottom:399.277215px;}
.y49_c00137{bottom:414.451500px;}
.y4a_c00137{bottom:415.064400px;}
.y4b_c00137{bottom:415.679490px;}
.y4c_c00137{bottom:415.836570px;}
.y4d_c00137{bottom:416.095785px;}
.y4e_c00137{bottom:416.722230px;}
.y4f_c00137{bottom:416.927535px;}
.y48_c00137{bottom:433.117500px;}
.y3f_c00137{bottom:448.740468px;}
.y40_c00137{bottom:449.070966px;}
.y41_c00137{bottom:449.486280px;}
.y42_c00137{bottom:450.033030px;}
.y43_c00137{bottom:450.480978px;}
.y44_c00137{bottom:451.364850px;}
.y45_c00137{bottom:451.533312px;}
.y46_c00137{bottom:451.835388px;}
.y47_c00137{bottom:452.210616px;}
.y35_c00137{bottom:465.211500px;}
.y36_c00137{bottom:465.431568px;}
.y37_c00137{bottom:465.674478px;}
.y38_c00137{bottom:466.300374px;}
.y39_c00137{bottom:466.669824px;}
.y3a_c00137{bottom:467.411802px;}
.y3b_c00137{bottom:467.654208px;}
.y3c_c00137{bottom:468.013776px;}
.y3d_c00137{bottom:468.182976px;}
.y3e_c00137{bottom:468.458430px;}
.y2c_c00137{bottom:482.223000px;}
.y2d_c00137{bottom:483.031731px;}
.y2e_c00137{bottom:483.791280px;}
.y2f_c00137{bottom:484.070874px;}
.y30_c00137{bottom:484.245048px;}
.y31_c00137{bottom:484.697703px;}
.y32_c00137{bottom:484.880340px;}
.y33_c00137{bottom:485.651376px;}
.y34_c00137{bottom:485.915157px;}
.y2b_c00137{bottom:502.486500px;}
.y22_c00137{bottom:518.671602px;}
.y23_c00137{bottom:518.976843px;}
.y24_c00137{bottom:519.297642px;}
.y25_c00137{bottom:519.875940px;}
.y26_c00137{bottom:520.268124px;}
.y27_c00137{bottom:520.664175px;}
.y28_c00137{bottom:520.858965px;}
.y29_c00137{bottom:521.031297px;}
.y2a_c00137{bottom:521.417337px;}
.y1e_c00137{bottom:527.581500px;}
.y1f_c00137{bottom:528.371331px;}
.y20_c00137{bottom:529.225590px;}
.y21_c00137{bottom:529.966659px;}
.y13_c00137{bottom:535.141500px;}
.y14_c00137{bottom:535.492500px;}
.y15_c00137{bottom:535.897500px;}
.y16_c00137{bottom:536.347500px;}
.y17_c00137{bottom:536.584500px;}
.y18_c00137{bottom:537.295500px;}
.y19_c00137{bottom:537.696000px;}
.y1a_c00137{bottom:538.096500px;}
.y1b_c00137{bottom:538.279500px;}
.y1c_c00137{bottom:538.600500px;}
.y1d_c00137{bottom:538.876500px;}
.yb_c00137{bottom:552.153000px;}
.yc_c00137{bottom:552.738000px;}
.yd_c00137{bottom:553.141500px;}
.ye_c00137{bottom:553.360500px;}
.yf_c00137{bottom:553.578000px;}
.y10_c00137{bottom:554.550000px;}
.y11_c00137{bottom:554.794500px;}
.y12_c00137{bottom:555.493500px;}
.y2_c00137{bottom:568.888500px;}
.y3_c00137{bottom:569.071500px;}
.y4_c00137{bottom:570.189000px;}
.y5_c00137{bottom:571.180500px;}
.y6_c00137{bottom:571.453500px;}
.y7_c00137{bottom:571.768500px;}
.y8_c00137{bottom:572.667000px;}
.y9_c00137{bottom:573.421500px;}
.ya_c00137{bottom:573.693000px;}
.y1_c00137{bottom:585.099000px;}
.h5_c00137{height:18.901852px;}
.h1e_c00137{height:22.050000px;}
.h21_c00137{height:45.155779px;}
.h1c_c00137{height:55.660044px;}
.hc_c00137{height:57.752887px;}
.h12_c00137{height:57.758344px;}
.h10_c00137{height:57.763974px;}
.hb_c00137{height:58.800000px;}
.h11_c00137{height:58.814228px;}
.ha_c00137{height:59.854309px;}
.h13_c00137{height:59.857660px;}
.h6_c00137{height:60.905968px;}
.h18_c00137{height:61.953097px;}
.h17_c00137{height:61.955235px;}
.h1d_c00137{height:61.961181px;}
.h3_c00137{height:64.050000px;}
.h19_c00137{height:64.053202px;}
.hf_c00137{height:64.055412px;}
.h16_c00137{height:65.105501px;}
.he_c00137{height:66.155589px;}
.h1b_c00137{height:68.250000px;}
.h9_c00137{height:68.254914px;}
.h15_c00137{height:69.305856px;}
.h8_c00137{height:69.306791px;}
.h7_c00137{height:70.350000px;}
.h20_c00137{height:70.357914px;}
.hd_c00137{height:71.403570px;}
.h4_c00137{height:72.450000px;}
.h1a_c00137{height:72.453622px;}
.h14_c00137{height:75.606388px;}
.h1f_c00137{height:75.608505px;}
.h2_c00137{height:86.100000px;}
.h0_c00137{height:634.200000px;}
.h1_c00137{height:634.500000px;}
.w1_c00137{width:364.500000px;}
.w0_c00137{width:364.770000px;}
.x0_c00137{left:0.000000px;}
.x81_c00137{left:35.182500px;}
.x59_c00137{left:39.549000px;}
.xb_c00137{left:41.209500px;}
.x63_c00137{left:42.306708px;}
.x1d_c00137{left:43.865346px;}
.x2_c00137{left:54.903000px;}
.x1a_c00137{left:55.950000px;}
.x33_c00137{left:59.515500px;}
.x7d_c00137{left:61.768500px;}
.x5b_c00137{left:63.405432px;}
.x3_c00137{left:65.064000px;}
.x3a_c00137{left:68.954658px;}
.x5f_c00137{left:71.124000px;}
.x4c_c00137{left:73.086000px;}
.x1e_c00137{left:74.348547px;}
.x64_c00137{left:76.638259px;}
.x34_c00137{left:79.758000px;}
.x26_c00137{left:81.540000px;}
.x7f_c00137{left:82.803337px;}
.xc_c00137{left:86.260500px;}
.x68_c00137{left:88.171638px;}
.x82_c00137{left:91.740000px;}
.x13_c00137{left:94.908000px;}
.x2c_c00137{left:99.015000px;}
.x65_c00137{left:101.414928px;}
.x3b_c00137{left:103.564158px;}
.x1f_c00137{left:106.478853px;}
.x48_c00137{left:109.244535px;}
.x1b_c00137{left:112.366500px;}
.x51_c00137{left:116.115000px;}
.xd_c00137{left:117.288000px;}
.x40_c00137{left:120.960000px;}
.x78_c00137{left:124.518000px;}
.x5c_c00137{left:125.684916px;}
.x4_c00137{left:127.134000px;}
.x27_c00137{left:130.140000px;}
.x35_c00137{left:131.916000px;}
.xe_c00137{left:134.082000px;}
.x6a_c00137{left:135.697500px;}
.x76_c00137{left:136.704000px;}
.x4d_c00137{left:138.154500px;}
.x6d_c00137{left:141.754650px;}
.x14_c00137{left:144.034500px;}
.x28_c00137{left:145.800000px;}
.x7a_c00137{left:147.072000px;}
.x3c_c00137{left:149.126658px;}
.xf_c00137{left:150.850500px;}
.x2d_c00137{left:153.268500px;}
.x71_c00137{left:155.456355px;}
.x52_c00137{left:159.259887px;}
.x36_c00137{left:162.703500px;}
.x20_c00137{left:164.289087px;}
.x49_c00137{left:165.340410px;}
.x6e_c00137{left:167.675745px;}
.x1c_c00137{left:173.385000px;}
.x1_c00137{left:175.770000px;}
.x44_c00137{left:180.214500px;}
.x5_c00137{left:182.191500px;}
.x4e_c00137{left:183.454500px;}
.x2e_c00137{left:185.680500px;}
.x69_c00137{left:186.973212px;}
.x80_c00137{left:188.783355px;}
.x7c_c00137{left:190.080000px;}
.x29_c00137{left:192.240000px;}
.x15_c00137{left:194.845500px;}
.x5d_c00137{left:196.229544px;}
.x6_c00137{left:197.335500px;}
.x41_c00137{left:202.230000px;}
.x21_c00137{left:203.447271px;}
.x45_c00137{left:206.136000px;}
.x60_c00137{left:209.700000px;}
.x4f_c00137{left:211.596000px;}
.x5e_c00137{left:213.515832px;}
.x7_c00137{left:214.840500px;}
.x2f_c00137{left:218.013000px;}
.x53_c00137{left:220.301292px;}
.x6b_c00137{left:222.352500px;}
.x16_c00137{left:223.402500px;}
.x37_c00137{left:224.535000px;}
.x10_c00137{left:225.649500px;}
.x57_c00137{left:229.129500px;}
.x30_c00137{left:231.058500px;}
.x73_c00137{left:232.470000px;}
.x50_c00137{left:234.807000px;}
.x54_c00137{left:238.395564px;}
.x4a_c00137{left:240.184410px;}
.x22_c00137{left:243.095997px;}
.x11_c00137{left:244.497000px;}
.x6c_c00137{left:246.106500px;}
.x7b_c00137{left:247.306500px;}
.x5a_c00137{left:249.150000px;}
.x17_c00137{left:252.016500px;}
.x66_c00137{left:255.840953px;}
.x58_c00137{left:257.209500px;}
.x7e_c00137{left:258.822000px;}
.x3d_c00137{left:260.111658px;}
.x23_c00137{left:262.582089px;}
.x8_c00137{left:264.778500px;}
.x83_c00137{left:267.162000px;}
.x46_c00137{left:268.780500px;}
.x2a_c00137{left:270.540000px;}
.x42_c00137{left:272.970000px;}
.x38_c00137{left:274.699500px;}
.x77_c00137{left:278.584500px;}
.x24_c00137{left:279.821055px;}
.x74_c00137{left:281.880000px;}
.x61_c00137{left:283.411500px;}
.x4b_c00137{left:284.705025px;}
.x31_c00137{left:286.132500px;}
.x18_c00137{left:287.988000px;}
.x47_c00137{left:289.311000px;}
.x6f_c00137{left:291.072075px;}
.x55_c00137{left:293.137479px;}
.x72_c00137{left:296.645715px;}
.x12_c00137{left:298.252500px;}
.x3e_c00137{left:299.323158px;}
.x43_c00137{left:300.510000px;}
.x32_c00137{left:304.974000px;}
.x9_c00137{left:306.682500px;}
.x19_c00137{left:307.705500px;}
.x39_c00137{left:311.754000px;}
.x75_c00137{left:314.820000px;}
.x25_c00137{left:318.433218px;}
.xa_c00137{left:321.802500px;}
.x67_c00137{left:323.379075px;}
.x56_c00137{left:324.723330px;}
.x79_c00137{left:326.460000px;}
.x2b_c00137{left:329.130000px;}
.x3f_c00137{left:330.592158px;}
.x70_c00137{left:333.194790px;}
.x62_c00137{left:336.358500px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
._0_c00137{width:275.208842pt;}
.fs3_c00137{font-size:16.801646pt;}
.fs1c_c00137{font-size:19.600000pt;}
.fs1f_c00137{font-size:40.138470pt;}
.fs1a_c00137{font-size:49.475595pt;}
.fsa_c00137{font-size:51.335900pt;}
.fs10_c00137{font-size:51.340750pt;}
.fse_c00137{font-size:51.345754pt;}
.fs9_c00137{font-size:52.266667pt;}
.fsf_c00137{font-size:52.279314pt;}
.fs8_c00137{font-size:53.203830pt;}
.fs11_c00137{font-size:53.206809pt;}
.fs4_c00137{font-size:54.138638pt;}
.fs16_c00137{font-size:55.069420pt;}
.fs15_c00137{font-size:55.071320pt;}
.fs1b_c00137{font-size:55.076605pt;}
.fs1_c00137{font-size:56.933333pt;}
.fs17_c00137{font-size:56.936180pt;}
.fsd_c00137{font-size:56.938144pt;}
.fs14_c00137{font-size:57.871556pt;}
.fsc_c00137{font-size:58.804968pt;}
.fs19_c00137{font-size:60.666667pt;}
.fs7_c00137{font-size:60.671035pt;}
.fs13_c00137{font-size:61.605205pt;}
.fs6_c00137{font-size:61.606037pt;}
.fs5_c00137{font-size:62.533333pt;}
.fs1e_c00137{font-size:62.540368pt;}
.fsb_c00137{font-size:63.469840pt;}
.fs2_c00137{font-size:64.400000pt;}
.fs18_c00137{font-size:64.403220pt;}
.fs12_c00137{font-size:67.205678pt;}
.fs1d_c00137{font-size:67.207560pt;}
.fs0_c00137{font-size:76.533333pt;}
.y0_c00137{bottom:0.000000pt;}
.yeb_c00137{bottom:25.441333pt;}
.yec_c00137{bottom:25.551115pt;}
.yed_c00137{bottom:26.245707pt;}
.yee_c00137{bottom:27.678027pt;}
.yef_c00137{bottom:28.007307pt;}
.yf0_c00137{bottom:28.568672pt;}
.yf1_c00137{bottom:28.740597pt;}
.yf2_c00137{bottom:29.099829pt;}
.ye3_c00137{bottom:40.562773pt;}
.ye4_c00137{bottom:41.498413pt;}
.ye5_c00137{bottom:43.071667pt;}
.ye6_c00137{bottom:43.947713pt;}
.ye7_c00137{bottom:44.565207pt;}
.ye8_c00137{bottom:45.778380pt;}
.ye9_c00137{bottom:46.193860pt;}
.yea_c00137{bottom:47.105153pt;}
.ydc_c00137{bottom:55.922667pt;}
.ydd_c00137{bottom:56.174647pt;}
.yde_c00137{bottom:57.157607pt;}
.ydf_c00137{bottom:57.481787pt;}
.ye0_c00137{bottom:58.492187pt;}
.ye1_c00137{bottom:58.802027pt;}
.ye2_c00137{bottom:59.548007pt;}
.ydb_c00137{bottom:66.720000pt;}
.yd4_c00137{bottom:71.266667pt;}
.yd5_c00137{bottom:71.657712pt;}
.yd6_c00137{bottom:73.047575pt;}
.yd7_c00137{bottom:73.612913pt;}
.yd8_c00137{bottom:74.248121pt;}
.yd9_c00137{bottom:74.740424pt;}
.yda_c00137{bottom:76.040835pt;}
.ycc_c00137{bottom:85.444000pt;}
.ycd_c00137{bottom:86.055699pt;}
.yce_c00137{bottom:86.826465pt;}
.ycf_c00137{bottom:87.299743pt;}
.yd0_c00137{bottom:87.868679pt;}
.yd1_c00137{bottom:88.142228pt;}
.yd2_c00137{bottom:88.613631pt;}
.yd3_c00137{bottom:90.237041pt;}
.yc4_c00137{bottom:102.489333pt;}
.yc5_c00137{bottom:104.374667pt;}
.yc6_c00137{bottom:104.744000pt;}
.yc7_c00137{bottom:105.889333pt;}
.yc8_c00137{bottom:106.340000pt;}
.yc9_c00137{bottom:106.990667pt;}
.yca_c00137{bottom:108.149333pt;}
.ycb_c00137{bottom:108.481333pt;}
.yc3_c00137{bottom:121.016000pt;}
.ybc_c00137{bottom:133.921587pt;}
.ybd_c00137{bottom:134.452747pt;}
.ybe_c00137{bottom:135.322080pt;}
.ybf_c00137{bottom:136.070160pt;}
.yc0_c00137{bottom:136.785640pt;}
.yc1_c00137{bottom:137.078480pt;}
.yc2_c00137{bottom:137.562680pt;}
.yb7_c00137{bottom:150.710693pt;}
.yb8_c00137{bottom:151.571480pt;}
.yb9_c00137{bottom:151.954200pt;}
.yba_c00137{bottom:152.600467pt;}
.ybb_c00137{bottom:153.155520pt;}
.yb3_c00137{bottom:167.399227pt;}
.yb4_c00137{bottom:167.399467pt;}
.yb2_c00137{bottom:167.399507pt;}
.yb1_c00137{bottom:167.399520pt;}
.yaf_c00137{bottom:167.399560pt;}
.yb6_c00137{bottom:167.399693pt;}
.yb5_c00137{bottom:167.399973pt;}
.yb0_c00137{bottom:167.400080pt;}
.ya8_c00137{bottom:182.401333pt;}
.ya9_c00137{bottom:182.607867pt;}
.yaa_c00137{bottom:183.227253pt;}
.yab_c00137{bottom:183.361213pt;}
.yac_c00137{bottom:183.997520pt;}
.yad_c00137{bottom:184.208667pt;}
.yae_c00137{bottom:184.698267pt;}
.ya0_c00137{bottom:198.237540pt;}
.ya1_c00137{bottom:198.461493pt;}
.ya2_c00137{bottom:198.685412pt;}
.ya3_c00137{bottom:199.255401pt;}
.ya4_c00137{bottom:199.651089pt;}
.ya5_c00137{bottom:199.899296pt;}
.ya6_c00137{bottom:200.145439pt;}
.ya7_c00137{bottom:200.731377pt;}
.y98_c00137{bottom:212.881208pt;}
.y99_c00137{bottom:213.831856pt;}
.y9a_c00137{bottom:214.003097pt;}
.y9b_c00137{bottom:214.271433pt;}
.y9c_c00137{bottom:215.245653pt;}
.y9d_c00137{bottom:215.544112pt;}
.y9e_c00137{bottom:216.159540pt;}
.y9f_c00137{bottom:216.384563pt;}
.y92_c00137{bottom:228.480541pt;}
.y93_c00137{bottom:228.907933pt;}
.y94_c00137{bottom:229.216912pt;}
.y95_c00137{bottom:229.996544pt;}
.y96_c00137{bottom:231.156165pt;}
.y97_c00137{bottom:231.472077pt;}
.y89_c00137{bottom:243.601333pt;}
.y8a_c00137{bottom:243.941431pt;}
.y8b_c00137{bottom:244.350757pt;}
.y8c_c00137{bottom:244.658961pt;}
.y8d_c00137{bottom:245.208081pt;}
.y8e_c00137{bottom:245.542753pt;}
.y8f_c00137{bottom:246.247700pt;}
.y90_c00137{bottom:246.394531pt;}
.y91_c00137{bottom:247.006363pt;}
.y81_c00137{bottom:258.465813pt;}
.y82_c00137{bottom:258.948032pt;}
.y83_c00137{bottom:259.296885pt;}
.y84_c00137{bottom:259.938699pt;}
.y85_c00137{bottom:260.237504pt;}
.y86_c00137{bottom:260.467349pt;}
.y87_c00137{bottom:260.977963pt;}
.y88_c00137{bottom:261.288395pt;}
.y7a_c00137{bottom:274.321333pt;}
.y7b_c00137{bottom:274.820533pt;}
.y7c_c00137{bottom:275.266955pt;}
.y7d_c00137{bottom:275.570464pt;}
.y7e_c00137{bottom:276.863520pt;}
.y7f_c00137{bottom:277.302325pt;}
.y80_c00137{bottom:278.001419pt;}
.y72_c00137{bottom:288.722667pt;}
.y73_c00137{bottom:289.058428pt;}
.y74_c00137{bottom:289.282171pt;}
.y75_c00137{bottom:290.381051pt;}
.y76_c00137{bottom:291.550311pt;}
.y77_c00137{bottom:291.974631pt;}
.y78_c00137{bottom:292.313769pt;}
.y79_c00137{bottom:292.946011pt;}
.y68_c00137{bottom:305.038883pt;}
.y69_c00137{bottom:305.358765pt;}
.y6a_c00137{bottom:305.865883pt;}
.y6b_c00137{bottom:306.316549pt;}
.y6c_c00137{bottom:306.609843pt;}
.y6d_c00137{bottom:306.925544pt;}
.y6e_c00137{bottom:307.423357pt;}
.y6f_c00137{bottom:307.665147pt;}
.y70_c00137{bottom:308.395491pt;}
.y71_c00137{bottom:308.817075pt;}
.y62_c00137{bottom:320.644000pt;}
.y63_c00137{bottom:321.232368pt;}
.y64_c00137{bottom:322.092685pt;}
.y65_c00137{bottom:322.394144pt;}
.y66_c00137{bottom:322.767205pt;}
.y67_c00137{bottom:323.413419pt;}
.y60_c00137{bottom:324.108953pt;}
.y5d_c00137{bottom:324.109147pt;}
.y5f_c00137{bottom:324.109245pt;}
.y61_c00137{bottom:324.109292pt;}
.y5e_c00137{bottom:324.109556pt;}
.y56_c00137{bottom:336.481333pt;}
.y57_c00137{bottom:336.840705pt;}
.y58_c00137{bottom:337.592608pt;}
.y59_c00137{bottom:338.116075pt;}
.y5a_c00137{bottom:338.441265pt;}
.y5b_c00137{bottom:338.709481pt;}
.y5c_c00137{bottom:339.530180pt;}
.y50_c00137{bottom:352.321360pt;}
.y51_c00137{bottom:353.041400pt;}
.y52_c00137{bottom:353.640040pt;}
.y53_c00137{bottom:353.805373pt;}
.y54_c00137{bottom:354.438667pt;}
.y55_c00137{bottom:354.913080pt;}
.y49_c00137{bottom:368.401333pt;}
.y4a_c00137{bottom:368.946133pt;}
.y4b_c00137{bottom:369.492880pt;}
.y4c_c00137{bottom:369.632507pt;}
.y4d_c00137{bottom:369.862920pt;}
.y4e_c00137{bottom:370.419760pt;}
.y4f_c00137{bottom:370.602253pt;}
.y48_c00137{bottom:384.993333pt;}
.y3f_c00137{bottom:398.880416pt;}
.y40_c00137{bottom:399.174192pt;}
.y41_c00137{bottom:399.543360pt;}
.y42_c00137{bottom:400.029360pt;}
.y43_c00137{bottom:400.427536pt;}
.y44_c00137{bottom:401.213200pt;}
.y45_c00137{bottom:401.362944pt;}
.y46_c00137{bottom:401.631456pt;}
.y47_c00137{bottom:401.964992pt;}
.y35_c00137{bottom:413.521333pt;}
.y36_c00137{bottom:413.716949pt;}
.y37_c00137{bottom:413.932869pt;}
.y38_c00137{bottom:414.489221pt;}
.y39_c00137{bottom:414.817621pt;}
.y3a_c00137{bottom:415.477157pt;}
.y3b_c00137{bottom:415.692629pt;}
.y3c_c00137{bottom:416.012245pt;}
.y3d_c00137{bottom:416.162645pt;}
.y3e_c00137{bottom:416.407493pt;}
.y2c_c00137{bottom:428.642667pt;}
.y2d_c00137{bottom:429.361539pt;}
.y2e_c00137{bottom:430.036693pt;}
.y2f_c00137{bottom:430.285221pt;}
.y30_c00137{bottom:430.440043pt;}
.y31_c00137{bottom:430.842403pt;}
.y32_c00137{bottom:431.004747pt;}
.y33_c00137{bottom:431.690112pt;}
.y34_c00137{bottom:431.924584pt;}
.y2b_c00137{bottom:446.654667pt;}
.y22_c00137{bottom:461.041424pt;}
.y23_c00137{bottom:461.312749pt;}
.y24_c00137{bottom:461.597904pt;}
.y25_c00137{bottom:462.111947pt;}
.y26_c00137{bottom:462.460555pt;}
.y27_c00137{bottom:462.812600pt;}
.y28_c00137{bottom:462.985747pt;}
.y29_c00137{bottom:463.138931pt;}
.y2a_c00137{bottom:463.482077pt;}
.y1e_c00137{bottom:468.961333pt;}
.y1f_c00137{bottom:469.663405pt;}
.y20_c00137{bottom:470.422747pt;}
.y21_c00137{bottom:471.081475pt;}
.y13_c00137{bottom:475.681333pt;}
.y14_c00137{bottom:475.993333pt;}
.y15_c00137{bottom:476.353333pt;}
.y16_c00137{bottom:476.753333pt;}
.y17_c00137{bottom:476.964000pt;}
.y18_c00137{bottom:477.596000pt;}
.y19_c00137{bottom:477.952000pt;}
.y1a_c00137{bottom:478.308000pt;}
.y1b_c00137{bottom:478.470667pt;}
.y1c_c00137{bottom:478.756000pt;}
.y1d_c00137{bottom:479.001333pt;}
.yb_c00137{bottom:490.802667pt;}
.yc_c00137{bottom:491.322667pt;}
.yd_c00137{bottom:491.681333pt;}
.ye_c00137{bottom:491.876000pt;}
.yf_c00137{bottom:492.069333pt;}
.y10_c00137{bottom:492.933333pt;}
.y11_c00137{bottom:493.150667pt;}
.y12_c00137{bottom:493.772000pt;}
.y2_c00137{bottom:505.678667pt;}
.y3_c00137{bottom:505.841333pt;}
.y4_c00137{bottom:506.834667pt;}
.y5_c00137{bottom:507.716000pt;}
.y6_c00137{bottom:507.958667pt;}
.y7_c00137{bottom:508.238667pt;}
.y8_c00137{bottom:509.037333pt;}
.y9_c00137{bottom:509.708000pt;}
.ya_c00137{bottom:509.949333pt;}
.y1_c00137{bottom:520.088000pt;}
.h5_c00137{height:16.801646pt;}
.h1e_c00137{height:19.600000pt;}
.h21_c00137{height:40.138470pt;}
.h1c_c00137{height:49.475595pt;}
.hc_c00137{height:51.335900pt;}
.h12_c00137{height:51.340750pt;}
.h10_c00137{height:51.345754pt;}
.hb_c00137{height:52.266667pt;}
.h11_c00137{height:52.279314pt;}
.ha_c00137{height:53.203830pt;}
.h13_c00137{height:53.206809pt;}
.h6_c00137{height:54.138638pt;}
.h18_c00137{height:55.069420pt;}
.h17_c00137{height:55.071320pt;}
.h1d_c00137{height:55.076605pt;}
.h3_c00137{height:56.933333pt;}
.h19_c00137{height:56.936180pt;}
.hf_c00137{height:56.938144pt;}
.h16_c00137{height:57.871556pt;}
.he_c00137{height:58.804968pt;}
.h1b_c00137{height:60.666667pt;}
.h9_c00137{height:60.671035pt;}
.h15_c00137{height:61.605205pt;}
.h8_c00137{height:61.606037pt;}
.h7_c00137{height:62.533333pt;}
.h20_c00137{height:62.540368pt;}
.hd_c00137{height:63.469840pt;}
.h4_c00137{height:64.400000pt;}
.h1a_c00137{height:64.403220pt;}
.h14_c00137{height:67.205678pt;}
.h1f_c00137{height:67.207560pt;}
.h2_c00137{height:76.533333pt;}
.h0_c00137{height:563.733333pt;}
.h1_c00137{height:564.000000pt;}
.w1_c00137{width:324.000000pt;}
.w0_c00137{width:324.240000pt;}
.x0_c00137{left:0.000000pt;}
.x81_c00137{left:31.273333pt;}
.x59_c00137{left:35.154667pt;}
.xb_c00137{left:36.630667pt;}
.x63_c00137{left:37.605963pt;}
.x1d_c00137{left:38.991419pt;}
.x2_c00137{left:48.802667pt;}
.x1a_c00137{left:49.733333pt;}
.x33_c00137{left:52.902667pt;}
.x7d_c00137{left:54.905333pt;}
.x5b_c00137{left:56.360384pt;}
.x3_c00137{left:57.834667pt;}
.x3a_c00137{left:61.293029pt;}
.x5f_c00137{left:63.221333pt;}
.x4c_c00137{left:64.965333pt;}
.x1e_c00137{left:66.087597pt;}
.x64_c00137{left:68.122897pt;}
.x34_c00137{left:70.896000pt;}
.x26_c00137{left:72.480000pt;}
.x7f_c00137{left:73.602967pt;}
.xc_c00137{left:76.676000pt;}
.x68_c00137{left:78.374789pt;}
.x82_c00137{left:81.546667pt;}
.x13_c00137{left:84.362667pt;}
.x2c_c00137{left:88.013333pt;}
.x65_c00137{left:90.146603pt;}
.x3b_c00137{left:92.057029pt;}
.x1f_c00137{left:94.647869pt;}
.x48_c00137{left:97.106253pt;}
.x1b_c00137{left:99.881333pt;}
.x51_c00137{left:103.213333pt;}
.xd_c00137{left:104.256000pt;}
.x40_c00137{left:107.520000pt;}
.x78_c00137{left:110.682667pt;}
.x5c_c00137{left:111.719925pt;}
.x4_c00137{left:113.008000pt;}
.x27_c00137{left:115.680000pt;}
.x35_c00137{left:117.258667pt;}
.xe_c00137{left:119.184000pt;}
.x6a_c00137{left:120.620000pt;}
.x76_c00137{left:121.514667pt;}
.x4d_c00137{left:122.804000pt;}
.x6d_c00137{left:126.004133pt;}
.x14_c00137{left:128.030667pt;}
.x28_c00137{left:129.600000pt;}
.x7a_c00137{left:130.730667pt;}
.x3c_c00137{left:132.557029pt;}
.xf_c00137{left:134.089333pt;}
.x2d_c00137{left:136.238667pt;}
.x71_c00137{left:138.183427pt;}
.x52_c00137{left:141.564344pt;}
.x36_c00137{left:144.625333pt;}
.x20_c00137{left:146.034744pt;}
.x49_c00137{left:146.969253pt;}
.x6e_c00137{left:149.045107pt;}
.x1c_c00137{left:154.120000pt;}
.x1_c00137{left:156.240000pt;}
.x44_c00137{left:160.190667pt;}
.x5_c00137{left:161.948000pt;}
.x4e_c00137{left:163.070667pt;}
.x2e_c00137{left:165.049333pt;}
.x69_c00137{left:166.198411pt;}
.x80_c00137{left:167.807427pt;}
.x7c_c00137{left:168.960000pt;}
.x29_c00137{left:170.880000pt;}
.x15_c00137{left:173.196000pt;}
.x5d_c00137{left:174.426261pt;}
.x6_c00137{left:175.409333pt;}
.x41_c00137{left:179.760000pt;}
.x21_c00137{left:180.842019pt;}
.x45_c00137{left:183.232000pt;}
.x60_c00137{left:186.400000pt;}
.x4f_c00137{left:188.085333pt;}
.x5e_c00137{left:189.791851pt;}
.x7_c00137{left:190.969333pt;}
.x2f_c00137{left:193.789333pt;}
.x53_c00137{left:195.823371pt;}
.x6b_c00137{left:197.646667pt;}
.x16_c00137{left:198.580000pt;}
.x37_c00137{left:199.586667pt;}
.x10_c00137{left:200.577333pt;}
.x57_c00137{left:203.670667pt;}
.x30_c00137{left:205.385333pt;}
.x73_c00137{left:206.640000pt;}
.x50_c00137{left:208.717333pt;}
.x54_c00137{left:211.907168pt;}
.x4a_c00137{left:213.497253pt;}
.x22_c00137{left:216.085331pt;}
.x11_c00137{left:217.330667pt;}
.x6c_c00137{left:218.761333pt;}
.x7b_c00137{left:219.828000pt;}
.x5a_c00137{left:221.466667pt;}
.x17_c00137{left:224.014667pt;}
.x66_c00137{left:227.414180pt;}
.x58_c00137{left:228.630667pt;}
.x7e_c00137{left:230.064000pt;}
.x3d_c00137{left:231.210363pt;}
.x23_c00137{left:233.406301pt;}
.x8_c00137{left:235.358667pt;}
.x83_c00137{left:237.477333pt;}
.x46_c00137{left:238.916000pt;}
.x2a_c00137{left:240.480000pt;}
.x42_c00137{left:242.640000pt;}
.x38_c00137{left:244.177333pt;}
.x77_c00137{left:247.630667pt;}
.x24_c00137{left:248.729827pt;}
.x74_c00137{left:250.560000pt;}
.x61_c00137{left:251.921333pt;}
.x4b_c00137{left:253.071133pt;}
.x31_c00137{left:254.340000pt;}
.x18_c00137{left:255.989333pt;}
.x47_c00137{left:257.165333pt;}
.x6f_c00137{left:258.730733pt;}
.x55_c00137{left:260.566648pt;}
.x72_c00137{left:263.685080pt;}
.x12_c00137{left:265.113333pt;}
.x3e_c00137{left:266.065029pt;}
.x43_c00137{left:267.120000pt;}
.x32_c00137{left:271.088000pt;}
.x9_c00137{left:272.606667pt;}
.x19_c00137{left:273.516000pt;}
.x39_c00137{left:277.114667pt;}
.x75_c00137{left:279.840000pt;}
.x25_c00137{left:283.051749pt;}
.xa_c00137{left:286.046667pt;}
.x67_c00137{left:287.448067pt;}
.x56_c00137{left:288.642960pt;}
.x79_c00137{left:290.186667pt;}
.x2b_c00137{left:292.560000pt;}
.x3f_c00137{left:293.859696pt;}
.x70_c00137{left:296.173147pt;}
.x62_c00137{left:298.985333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00138 {
    display:none;
  }
  .loading-indicator_c00138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00138 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00138 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00138" -> "#page-container .classname_c00138")
 */
.pf_c00138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00138 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00138 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00138 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00138 {overflow:visible;}
  }
}
.c_c00138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00138 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00138:after { /* webkit #35443 */
  content: '';
}
.t_c00138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00138 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00138 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00138 { /* info for Javascript */
  display:none;
}
.l_c00138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00138:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00138 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00138.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00138{transform:matrix(0.035235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035235,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.083020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083020,0.000000,0.000000,0.250000,0,0);}
.m7a_c00138{transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);}
.m94_c00138{transform:matrix(0.135360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135360,0.000000,0.000000,0.250000,0,0);}
.mab_c00138{transform:matrix(0.137735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137735,0.000000,0.000000,0.250000,0,0);}
.m8d_c00138{transform:matrix(0.142360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142360,0.000000,0.000000,0.250000,0,0);}
.md2_c00138{transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);}
.m34_c00138{transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);}
.m58_c00138{transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);}
.m8e_c00138{transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);}
.m28_c00138{transform:matrix(0.147335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147335,0.000000,0.000000,0.250000,0,0);}
.ma6_c00138{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.mb0_c00138{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.md5_c00138{transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);}
.mf9_c00138{transform:matrix(0.150485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);}
.ma8_c00138{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.mfe_c00138{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.mff_c00138{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00138{transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);}
.m90_c00138{transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);}
.mf8_c00138{transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);}
.m61_c00138{transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.mc2_c00138{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.mcf_c00138{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.mbf_c00138{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.m5b_c00138{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.md6_c00138{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162680,0.000000,0.000000,0.250000,0,0);}
.mf6_c00138{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);}
.mbd_c00138{transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);}
.me7_c00138{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m57_c00138{transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166055,0.000000,0.000000,0.250000,0,0);}
.m37_c00138{transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);}
.ma9_c00138{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00138{transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00138{transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);}
.mcc_c00138{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m5d_c00138{transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);}
.m100_c00138{transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);}
.m5c_c00138{transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);}
.m24_c00138{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.mac_c00138{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.ma4_c00138{transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);}
.m102_c00138{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.m49_c00138{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.mf4_c00138{transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);}
.mdd_c00138{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m46_c00138{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);}
.mad_c00138{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00138{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.mfd_c00138{transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);}
.m2d_c00138{transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);}
.m85_c00138{transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.mb4_c00138{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m7d_c00138{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mf7_c00138{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);}
.m105_c00138{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00138{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m4a_c00138{transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);}
.meb_c00138{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m99_c00138{transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);}
.m97_c00138{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mc1_c00138{transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);}
.m84_c00138{transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);}
.m9c_c00138{transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);}
.me8_c00138{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.mfa_c00138{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.mc3_c00138{transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);}
.maa_c00138{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m91_c00138{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.ma5_c00138{transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);}
.m8c_c00138{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.mc4_c00138{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m53_c00138{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.med_c00138{transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);}
.mcd_c00138{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.md0_c00138{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m92_c00138{transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);}
.m103_c00138{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m38_c00138{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m59_c00138{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.m82_c00138{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.mfc_c00138{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.mca_c00138{transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);}
.md3_c00138{transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00138{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.mc9_c00138{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.mcb_c00138{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.m9d_c00138{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m56_c00138{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00138{transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);}
.m41_c00138{transform:matrix(0.187530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187530,0.000000,0.000000,0.250000,0,0);}
.mef_c00138{transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);}
.m3f_c00138{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m95_c00138{transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.m2a_c00138{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m62_c00138{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m36_c00138{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m65_c00138{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.ma0_c00138{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m104_c00138{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m72_c00138{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m52_c00138{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m32_c00138{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.ma1_c00138{transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);}
.mda_c00138{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.mbc_c00138{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m88_c00138{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m6d_c00138{transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m7c_c00138{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mc0_c00138{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.m69_c00138{transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);}
.m93_c00138{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.mec_c00138{transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);}
.ma2_c00138{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.mb5_c00138{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.mf3_c00138{transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);}
.mdf_c00138{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.md4_c00138{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.mfb_c00138{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m6b_c00138{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m87_c00138{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m9b_c00138{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.mea_c00138{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m83_c00138{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.mf5_c00138{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.mee_c00138{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mc7_c00138{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m5f_c00138{transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);}
.mb1_c00138{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m50_c00138{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.me2_c00138{transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m4b_c00138{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.mde_c00138{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.mf0_c00138{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.mf1_c00138{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.m3c_c00138{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m63_c00138{transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m3a_c00138{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.me6_c00138{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m6a_c00138{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.me9_c00138{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m8f_c00138{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m6e_c00138{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m80_c00138{transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201490,0.000000,0.000000,0.250000,0,0);}
.maf_c00138{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.m5e_c00138{transform:matrix(0.201810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201810,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.me0_c00138{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.m4f_c00138{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.md7_c00138{transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);}
.m60_c00138{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.mb3_c00138{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);}
.m55_c00138{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.m54_c00138{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m7e_c00138{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.md9_c00138{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00138{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m3e_c00138{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.m98_c00138{transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);}
.m8a_c00138{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);}
.m66_c00138{transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);}
.m81_c00138{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m7b_c00138{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.mb2_c00138{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);}
.me4_c00138{transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m2b_c00138{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00138{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m64_c00138{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.me1_c00138{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.mae_c00138{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.mba_c00138{transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);}
.m79_c00138{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00138{transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);}
.mc6_c00138{transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);}
.mdb_c00138{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m9a_c00138{transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);}
.md1_c00138{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.mce_c00138{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m68_c00138{transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);}
.m70_c00138{transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);}
.mb9_c00138{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m4d_c00138{transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);}
.m71_c00138{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.mbb_c00138{transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);}
.me3_c00138{transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);}
.m106_c00138{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.m89_c00138{transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);}
.m101_c00138{transform:matrix(0.219260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219260,0.000000,0.000000,0.250000,0,0);}
.m67_c00138{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.me5_c00138{transform:matrix(0.221580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221580,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);}
.m86_c00138{transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);}
.m77_c00138{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);}
.mc8_c00138{transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227315,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);}
.md8_c00138{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.ma3_c00138{transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00138{transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);}
.m6f_c00138{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m75_c00138{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.m8b_c00138{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m96_c00138{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);}
.mdc_c00138{transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);}
.mb7_c00138{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m74_c00138{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.269865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269865,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);}
.mc5_c00138{transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.368595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368595,0.000000,0.000000,0.250000,0,0);}
.m73_c00138{transform:matrix(0.373480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373480,0.000000,0.000000,0.250000,0,0);}
.m78_c00138{transform:matrix(0.591800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591800,0.000000,0.000000,0.250000,0,0);}
.mb6_c00138{transform:matrix(0.600030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600030,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
._0_c00138{width:8.424727px;}
.fc0_c00138{color:transparent;}
.fs6_c00138{font-size:58.800000px;}
.fs7_c00138{font-size:59.850000px;}
.fs5_c00138{font-size:60.900000px;}
.fs8_c00138{font-size:61.950000px;}
.fs1_c00138{font-size:63.000000px;}
.fs9_c00138{font-size:64.050000px;}
.fs2_c00138{font-size:65.100000px;}
.fsc_c00138{font-size:66.150000px;}
.fsb_c00138{font-size:67.200000px;}
.fsd_c00138{font-size:68.250000px;}
.fs4_c00138{font-size:69.300000px;}
.fs3_c00138{font-size:70.350000px;}
.fs0_c00138{font-size:71.400000px;}
.fsa_c00138{font-size:74.550000px;}
.y0_c00138{bottom:0.000000px;}
.y68_c00138{bottom:37.188000px;}
.y67_c00138{bottom:37.497000px;}
.y66_c00138{bottom:37.954500px;}
.y65_c00138{bottom:38.400000px;}
.y64_c00138{bottom:38.755500px;}
.y63_c00138{bottom:39.531000px;}
.y62_c00138{bottom:40.227000px;}
.y61_c00138{bottom:54.570000px;}
.y60_c00138{bottom:70.800000px;}
.y5f_c00138{bottom:72.360000px;}
.y5e_c00138{bottom:73.281000px;}
.y5d_c00138{bottom:73.677000px;}
.y5c_c00138{bottom:74.520000px;}
.y5b_c00138{bottom:75.420000px;}
.y5a_c00138{bottom:75.892500px;}
.y59_c00138{bottom:76.680000px;}
.y58_c00138{bottom:92.839500px;}
.y57_c00138{bottom:107.259000px;}
.y56_c00138{bottom:127.152000px;}
.y55_c00138{bottom:142.276500px;}
.y54_c00138{bottom:160.141500px;}
.y53_c00138{bottom:177.349500px;}
.y52_c00138{bottom:194.529000px;}
.y51_c00138{bottom:194.712000px;}
.y50_c00138{bottom:194.925000px;}
.y4f_c00138{bottom:195.205500px;}
.y4e_c00138{bottom:195.606000px;}
.y4d_c00138{bottom:195.760500px;}
.y4c_c00138{bottom:196.446000px;}
.y4b_c00138{bottom:196.641000px;}
.y4a_c00138{bottom:197.097000px;}
.y49_c00138{bottom:212.493000px;}
.y48_c00138{bottom:230.047500px;}
.y47_c00138{bottom:247.630500px;}
.y46_c00138{bottom:265.161000px;}
.y45_c00138{bottom:282.613500px;}
.y44_c00138{bottom:300.118500px;}
.y43_c00138{bottom:317.821500px;}
.y42_c00138{bottom:334.858500px;}
.y3a_c00138{bottom:350.457000px;}
.y3b_c00138{bottom:350.923500px;}
.y3c_c00138{bottom:351.057000px;}
.y3d_c00138{bottom:351.661500px;}
.y3e_c00138{bottom:352.276500px;}
.y3f_c00138{bottom:352.530000px;}
.y40_c00138{bottom:352.728000px;}
.y41_c00138{bottom:352.900500px;}
.y39_c00138{bottom:368.920500px;}
.y38_c00138{bottom:386.046000px;}
.y37_c00138{bottom:403.207500px;}
.y36_c00138{bottom:420.337500px;}
.y35_c00138{bottom:437.649000px;}
.y2e_c00138{bottom:452.250000px;}
.y2f_c00138{bottom:452.527500px;}
.y30_c00138{bottom:453.471000px;}
.y31_c00138{bottom:454.321500px;}
.y32_c00138{bottom:454.471500px;}
.y33_c00138{bottom:455.346000px;}
.y34_c00138{bottom:456.103500px;}
.y27_c00138{bottom:470.880000px;}
.y28_c00138{bottom:471.120000px;}
.y29_c00138{bottom:471.360000px;}
.y2a_c00138{bottom:471.927000px;}
.y2b_c00138{bottom:472.842000px;}
.y2c_c00138{bottom:473.044500px;}
.y2d_c00138{bottom:473.635500px;}
.y1d_c00138{bottom:488.160000px;}
.y1e_c00138{bottom:488.364000px;}
.y1f_c00138{bottom:488.667000px;}
.y20_c00138{bottom:489.172500px;}
.y21_c00138{bottom:489.429000px;}
.y22_c00138{bottom:489.925500px;}
.y23_c00138{bottom:490.096500px;}
.y24_c00138{bottom:490.428000px;}
.y25_c00138{bottom:490.765500px;}
.y26_c00138{bottom:490.927500px;}
.y14_c00138{bottom:505.441500px;}
.y15_c00138{bottom:505.773000px;}
.y16_c00138{bottom:506.073000px;}
.y17_c00138{bottom:506.415000px;}
.y18_c00138{bottom:507.033000px;}
.y19_c00138{bottom:507.418500px;}
.y1a_c00138{bottom:507.733500px;}
.y1b_c00138{bottom:507.982500px;}
.y1c_c00138{bottom:508.543500px;}
.y13_c00138{bottom:524.901000px;}
.yb_c00138{bottom:540.001500px;}
.yc_c00138{bottom:540.951000px;}
.yd_c00138{bottom:541.537500px;}
.ye_c00138{bottom:541.842000px;}
.yf_c00138{bottom:542.152500px;}
.y10_c00138{bottom:542.574000px;}
.y11_c00138{bottom:543.118500px;}
.y12_c00138{bottom:543.376500px;}
.ya_c00138{bottom:559.579500px;}
.y2_c00138{bottom:574.563000px;}
.y3_c00138{bottom:575.331000px;}
.y4_c00138{bottom:575.934000px;}
.y5_c00138{bottom:576.148500px;}
.y6_c00138{bottom:576.787500px;}
.y7_c00138{bottom:576.981000px;}
.y8_c00138{bottom:577.974000px;}
.y9_c00138{bottom:578.406000px;}
.y1_c00138{bottom:593.613000px;}
.h8_c00138{height:58.800000px;}
.h9_c00138{height:59.850000px;}
.h7_c00138{height:60.900000px;}
.ha_c00138{height:61.950000px;}
.h3_c00138{height:63.000000px;}
.hb_c00138{height:64.050000px;}
.h4_c00138{height:65.100000px;}
.he_c00138{height:66.150000px;}
.hd_c00138{height:67.200000px;}
.hf_c00138{height:68.250000px;}
.h6_c00138{height:69.300000px;}
.h5_c00138{height:70.350000px;}
.h2_c00138{height:71.400000px;}
.hc_c00138{height:74.550000px;}
.h0_c00138{height:634.200000px;}
.h1_c00138{height:634.500000px;}
.w1_c00138{width:364.500000px;}
.w0_c00138{width:364.770000px;}
.x0_c00138{left:0.000000px;}
.x2c_c00138{left:25.221000px;}
.x3_c00138{left:26.685000px;}
.x1f_c00138{left:28.222500px;}
.x35_c00138{left:29.698500px;}
.x47_c00138{left:30.778500px;}
.x5b_c00138{left:32.128500px;}
.x66_c00138{left:33.208500px;}
.x6d_c00138{left:34.288500px;}
.x75_c00138{left:35.368500px;}
.x7f_c00138{left:37.258500px;}
.x83_c00138{left:38.409000px;}
.x2f_c00138{left:45.796500px;}
.x25_c00138{left:49.216500px;}
.x87_c00138{left:51.697500px;}
.x49_c00138{left:52.918500px;}
.x5c_c00138{left:55.618500px;}
.x50_c00138{left:56.698500px;}
.x20_c00138{left:58.399500px;}
.x62_c00138{left:62.638500px;}
.x19_c00138{left:64.800000px;}
.x80_c00138{left:66.148500px;}
.x76_c00138{left:67.228500px;}
.x71_c00138{left:68.308500px;}
.x58_c00138{left:71.818500px;}
.x2d_c00138{left:73.288500px;}
.x1_c00138{left:75.600000px;}
.x3c_c00138{left:77.758500px;}
.x26_c00138{left:79.501500px;}
.x36_c00138{left:83.158500px;}
.x54_c00138{left:84.508500px;}
.x4_c00138{left:85.804500px;}
.xb_c00138{left:87.210000px;}
.x6e_c00138{left:89.638500px;}
.x4d_c00138{left:90.834000px;}
.x67_c00138{left:93.688500px;}
.x79_c00138{left:95.308500px;}
.x3d_c00138{left:97.468500px;}
.x37_c00138{left:98.548500px;}
.x84_c00138{left:101.397000px;}
.x1a_c00138{left:102.600000px;}
.x43_c00138{left:104.488500px;}
.x13_c00138{left:106.540500px;}
.x5f_c00138{left:111.508500px;}
.x7e_c00138{left:113.398500px;}
.x88_c00138{left:114.940500px;}
.x21_c00138{left:116.784000px;}
.x30_c00138{left:118.428000px;}
.x5d_c00138{left:120.958500px;}
.x63_c00138{left:127.708500px;}
.x27_c00138{left:129.997500px;}
.x5_c00138{left:132.198000px;}
.x38_c00138{left:135.268500px;}
.xc_c00138{left:137.700000px;}
.x6f_c00138{left:139.588500px;}
.x7a_c00138{left:142.018500px;}
.x64_c00138{left:146.068500px;}
.x6_c00138{left:148.672500px;}
.x4e_c00138{left:151.308000px;}
.x4a_c00138{left:152.548500px;}
.xd_c00138{left:155.520000px;}
.x51_c00138{left:157.138500px;}
.x55_c00138{left:158.488500px;}
.x2_c00138{left:161.190000px;}
.x39_c00138{left:163.618500px;}
.x81_c00138{left:164.698500px;}
.x69_c00138{left:167.304000px;}
.x3e_c00138{left:170.908500px;}
.x1b_c00138{left:173.880000px;}
.xe_c00138{left:175.500000px;}
.x56_c00138{left:176.848500px;}
.x14_c00138{left:180.732000px;}
.x6a_c00138{left:182.682000px;}
.x31_c00138{left:183.799500px;}
.x44_c00138{left:186.028500px;}
.x5e_c00138{left:188.728500px;}
.x7b_c00138{left:193.858500px;}
.x32_c00138{left:195.324000px;}
.x7_c00138{left:197.814000px;}
.x65_c00138{left:200.338500px;}
.x28_c00138{left:205.279500px;}
.x15_c00138{left:206.658000px;}
.x22_c00138{left:208.041000px;}
.x8_c00138{left:212.661000px;}
.x3a_c00138{left:215.188500px;}
.x3f_c00138{left:216.538500px;}
.x82_c00138{left:217.618500px;}
.x4b_c00138{left:219.238500px;}
.x29_c00138{left:222.336000px;}
.x52_c00138{left:224.098500px;}
.x59_c00138{left:225.988500px;}
.x68_c00138{left:228.688500px;}
.x40_c00138{left:230.038500px;}
.x77_c00138{left:232.198500px;}
.x72_c00138{left:234.088500px;}
.x23_c00138{left:236.664000px;}
.x4f_c00138{left:238.252500px;}
.x16_c00138{left:241.801500px;}
.xf_c00138{left:244.080000px;}
.x5a_c00138{left:245.968500px;}
.x48_c00138{left:250.288500px;}
.x1c_c00138{left:252.180000px;}
.x85_c00138{left:254.328000px;}
.x2a_c00138{left:255.546000px;}
.x45_c00138{left:258.118500px;}
.x10_c00138{left:259.470000px;}
.x33_c00138{left:262.612500px;}
.x1d_c00138{left:264.870000px;}
.x73_c00138{left:267.838500px;}
.x60_c00138{left:269.458500px;}
.x6b_c00138{left:272.089500px;}
.x41_c00138{left:274.588500px;}
.x7c_c00138{left:277.828500px;}
.x11_c00138{left:279.720000px;}
.x4c_c00138{left:281.068500px;}
.x3b_c00138{left:285.658500px;}
.x17_c00138{left:287.164500px;}
.x9_c00138{left:289.065000px;}
.x6c_c00138{left:290.439000px;}
.x78_c00138{left:292.408500px;}
.x53_c00138{left:293.488500px;}
.x7d_c00138{left:296.458500px;}
.x61_c00138{left:298.888500px;}
.x2e_c00138{left:300.900000px;}
.x1e_c00138{left:304.020000px;}
.x2b_c00138{left:305.454000px;}
.x18_c00138{left:308.706000px;}
.x24_c00138{left:310.317000px;}
.x57_c00138{left:311.578500px;}
.x42_c00138{left:314.548500px;}
.x12_c00138{left:316.710000px;}
.x46_c00138{left:318.058500px;}
.x34_c00138{left:320.929500px;}
.xa_c00138{left:322.284000px;}
.x86_c00138{left:323.730000px;}
.x89_c00138{left:327.901500px;}
.x70_c00138{left:332.368500px;}
.x74_c00138{left:333.448500px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
._0_c00138{width:7.488646pt;}
.fs6_c00138{font-size:52.266667pt;}
.fs7_c00138{font-size:53.200000pt;}
.fs5_c00138{font-size:54.133333pt;}
.fs8_c00138{font-size:55.066667pt;}
.fs1_c00138{font-size:56.000000pt;}
.fs9_c00138{font-size:56.933333pt;}
.fs2_c00138{font-size:57.866667pt;}
.fsc_c00138{font-size:58.800000pt;}
.fsb_c00138{font-size:59.733333pt;}
.fsd_c00138{font-size:60.666667pt;}
.fs4_c00138{font-size:61.600000pt;}
.fs3_c00138{font-size:62.533333pt;}
.fs0_c00138{font-size:63.466667pt;}
.fsa_c00138{font-size:66.266667pt;}
.y0_c00138{bottom:0.000000pt;}
.y68_c00138{bottom:33.056000pt;}
.y67_c00138{bottom:33.330667pt;}
.y66_c00138{bottom:33.737333pt;}
.y65_c00138{bottom:34.133333pt;}
.y64_c00138{bottom:34.449333pt;}
.y63_c00138{bottom:35.138667pt;}
.y62_c00138{bottom:35.757333pt;}
.y61_c00138{bottom:48.506667pt;}
.y60_c00138{bottom:62.933333pt;}
.y5f_c00138{bottom:64.320000pt;}
.y5e_c00138{bottom:65.138667pt;}
.y5d_c00138{bottom:65.490667pt;}
.y5c_c00138{bottom:66.240000pt;}
.y5b_c00138{bottom:67.040000pt;}
.y5a_c00138{bottom:67.460000pt;}
.y59_c00138{bottom:68.160000pt;}
.y58_c00138{bottom:82.524000pt;}
.y57_c00138{bottom:95.341333pt;}
.y56_c00138{bottom:113.024000pt;}
.y55_c00138{bottom:126.468000pt;}
.y54_c00138{bottom:142.348000pt;}
.y53_c00138{bottom:157.644000pt;}
.y52_c00138{bottom:172.914667pt;}
.y51_c00138{bottom:173.077333pt;}
.y50_c00138{bottom:173.266667pt;}
.y4f_c00138{bottom:173.516000pt;}
.y4e_c00138{bottom:173.872000pt;}
.y4d_c00138{bottom:174.009333pt;}
.y4c_c00138{bottom:174.618667pt;}
.y4b_c00138{bottom:174.792000pt;}
.y4a_c00138{bottom:175.197333pt;}
.y49_c00138{bottom:188.882667pt;}
.y48_c00138{bottom:204.486667pt;}
.y47_c00138{bottom:220.116000pt;}
.y46_c00138{bottom:235.698667pt;}
.y45_c00138{bottom:251.212000pt;}
.y44_c00138{bottom:266.772000pt;}
.y43_c00138{bottom:282.508000pt;}
.y42_c00138{bottom:297.652000pt;}
.y3a_c00138{bottom:311.517333pt;}
.y3b_c00138{bottom:311.932000pt;}
.y3c_c00138{bottom:312.050667pt;}
.y3d_c00138{bottom:312.588000pt;}
.y3e_c00138{bottom:313.134667pt;}
.y3f_c00138{bottom:313.360000pt;}
.y40_c00138{bottom:313.536000pt;}
.y41_c00138{bottom:313.689333pt;}
.y39_c00138{bottom:327.929333pt;}
.y38_c00138{bottom:343.152000pt;}
.y37_c00138{bottom:358.406667pt;}
.y36_c00138{bottom:373.633333pt;}
.y35_c00138{bottom:389.021333pt;}
.y2e_c00138{bottom:402.000000pt;}
.y2f_c00138{bottom:402.246667pt;}
.y30_c00138{bottom:403.085333pt;}
.y31_c00138{bottom:403.841333pt;}
.y32_c00138{bottom:403.974667pt;}
.y33_c00138{bottom:404.752000pt;}
.y34_c00138{bottom:405.425333pt;}
.y27_c00138{bottom:418.560000pt;}
.y28_c00138{bottom:418.773333pt;}
.y29_c00138{bottom:418.986667pt;}
.y2a_c00138{bottom:419.490667pt;}
.y2b_c00138{bottom:420.304000pt;}
.y2c_c00138{bottom:420.484000pt;}
.y2d_c00138{bottom:421.009333pt;}
.y1d_c00138{bottom:433.920000pt;}
.y1e_c00138{bottom:434.101333pt;}
.y1f_c00138{bottom:434.370667pt;}
.y20_c00138{bottom:434.820000pt;}
.y21_c00138{bottom:435.048000pt;}
.y22_c00138{bottom:435.489333pt;}
.y23_c00138{bottom:435.641333pt;}
.y24_c00138{bottom:435.936000pt;}
.y25_c00138{bottom:436.236000pt;}
.y26_c00138{bottom:436.380000pt;}
.y14_c00138{bottom:449.281333pt;}
.y15_c00138{bottom:449.576000pt;}
.y16_c00138{bottom:449.842667pt;}
.y17_c00138{bottom:450.146667pt;}
.y18_c00138{bottom:450.696000pt;}
.y19_c00138{bottom:451.038667pt;}
.y1a_c00138{bottom:451.318667pt;}
.y1b_c00138{bottom:451.540000pt;}
.y1c_c00138{bottom:452.038667pt;}
.y13_c00138{bottom:466.578667pt;}
.yb_c00138{bottom:480.001333pt;}
.yc_c00138{bottom:480.845333pt;}
.yd_c00138{bottom:481.366667pt;}
.ye_c00138{bottom:481.637333pt;}
.yf_c00138{bottom:481.913333pt;}
.y10_c00138{bottom:482.288000pt;}
.y11_c00138{bottom:482.772000pt;}
.y12_c00138{bottom:483.001333pt;}
.ya_c00138{bottom:497.404000pt;}
.y2_c00138{bottom:510.722667pt;}
.y3_c00138{bottom:511.405333pt;}
.y4_c00138{bottom:511.941333pt;}
.y5_c00138{bottom:512.132000pt;}
.y6_c00138{bottom:512.700000pt;}
.y7_c00138{bottom:512.872000pt;}
.y8_c00138{bottom:513.754667pt;}
.y9_c00138{bottom:514.138667pt;}
.y1_c00138{bottom:527.656000pt;}
.h8_c00138{height:52.266667pt;}
.h9_c00138{height:53.200000pt;}
.h7_c00138{height:54.133333pt;}
.ha_c00138{height:55.066667pt;}
.h3_c00138{height:56.000000pt;}
.hb_c00138{height:56.933333pt;}
.h4_c00138{height:57.866667pt;}
.he_c00138{height:58.800000pt;}
.hd_c00138{height:59.733333pt;}
.hf_c00138{height:60.666667pt;}
.h6_c00138{height:61.600000pt;}
.h5_c00138{height:62.533333pt;}
.h2_c00138{height:63.466667pt;}
.hc_c00138{height:66.266667pt;}
.h0_c00138{height:563.733333pt;}
.h1_c00138{height:564.000000pt;}
.w1_c00138{width:324.000000pt;}
.w0_c00138{width:324.240000pt;}
.x0_c00138{left:0.000000pt;}
.x2c_c00138{left:22.418667pt;}
.x3_c00138{left:23.720000pt;}
.x1f_c00138{left:25.086667pt;}
.x35_c00138{left:26.398667pt;}
.x47_c00138{left:27.358667pt;}
.x5b_c00138{left:28.558667pt;}
.x66_c00138{left:29.518667pt;}
.x6d_c00138{left:30.478667pt;}
.x75_c00138{left:31.438667pt;}
.x7f_c00138{left:33.118667pt;}
.x83_c00138{left:34.141333pt;}
.x2f_c00138{left:40.708000pt;}
.x25_c00138{left:43.748000pt;}
.x87_c00138{left:45.953333pt;}
.x49_c00138{left:47.038667pt;}
.x5c_c00138{left:49.438667pt;}
.x50_c00138{left:50.398667pt;}
.x20_c00138{left:51.910667pt;}
.x62_c00138{left:55.678667pt;}
.x19_c00138{left:57.600000pt;}
.x80_c00138{left:58.798667pt;}
.x76_c00138{left:59.758667pt;}
.x71_c00138{left:60.718667pt;}
.x58_c00138{left:63.838667pt;}
.x2d_c00138{left:65.145333pt;}
.x1_c00138{left:67.200000pt;}
.x3c_c00138{left:69.118667pt;}
.x26_c00138{left:70.668000pt;}
.x36_c00138{left:73.918667pt;}
.x54_c00138{left:75.118667pt;}
.x4_c00138{left:76.270667pt;}
.xb_c00138{left:77.520000pt;}
.x6e_c00138{left:79.678667pt;}
.x4d_c00138{left:80.741333pt;}
.x67_c00138{left:83.278667pt;}
.x79_c00138{left:84.718667pt;}
.x3d_c00138{left:86.638667pt;}
.x37_c00138{left:87.598667pt;}
.x84_c00138{left:90.130667pt;}
.x1a_c00138{left:91.200000pt;}
.x43_c00138{left:92.878667pt;}
.x13_c00138{left:94.702667pt;}
.x5f_c00138{left:99.118667pt;}
.x7e_c00138{left:100.798667pt;}
.x88_c00138{left:102.169333pt;}
.x21_c00138{left:103.808000pt;}
.x30_c00138{left:105.269333pt;}
.x5d_c00138{left:107.518667pt;}
.x63_c00138{left:113.518667pt;}
.x27_c00138{left:115.553333pt;}
.x5_c00138{left:117.509333pt;}
.x38_c00138{left:120.238667pt;}
.xc_c00138{left:122.400000pt;}
.x6f_c00138{left:124.078667pt;}
.x7a_c00138{left:126.238667pt;}
.x64_c00138{left:129.838667pt;}
.x6_c00138{left:132.153333pt;}
.x4e_c00138{left:134.496000pt;}
.x4a_c00138{left:135.598667pt;}
.xd_c00138{left:138.240000pt;}
.x51_c00138{left:139.678667pt;}
.x55_c00138{left:140.878667pt;}
.x2_c00138{left:143.280000pt;}
.x39_c00138{left:145.438667pt;}
.x81_c00138{left:146.398667pt;}
.x69_c00138{left:148.714667pt;}
.x3e_c00138{left:151.918667pt;}
.x1b_c00138{left:154.560000pt;}
.xe_c00138{left:156.000000pt;}
.x56_c00138{left:157.198667pt;}
.x14_c00138{left:160.650667pt;}
.x6a_c00138{left:162.384000pt;}
.x31_c00138{left:163.377333pt;}
.x44_c00138{left:165.358667pt;}
.x5e_c00138{left:167.758667pt;}
.x7b_c00138{left:172.318667pt;}
.x32_c00138{left:173.621333pt;}
.x7_c00138{left:175.834667pt;}
.x65_c00138{left:178.078667pt;}
.x28_c00138{left:182.470667pt;}
.x15_c00138{left:183.696000pt;}
.x22_c00138{left:184.925333pt;}
.x8_c00138{left:189.032000pt;}
.x3a_c00138{left:191.278667pt;}
.x3f_c00138{left:192.478667pt;}
.x82_c00138{left:193.438667pt;}
.x4b_c00138{left:194.878667pt;}
.x29_c00138{left:197.632000pt;}
.x52_c00138{left:199.198667pt;}
.x59_c00138{left:200.878667pt;}
.x68_c00138{left:203.278667pt;}
.x40_c00138{left:204.478667pt;}
.x77_c00138{left:206.398667pt;}
.x72_c00138{left:208.078667pt;}
.x23_c00138{left:210.368000pt;}
.x4f_c00138{left:211.780000pt;}
.x16_c00138{left:214.934667pt;}
.xf_c00138{left:216.960000pt;}
.x5a_c00138{left:218.638667pt;}
.x48_c00138{left:222.478667pt;}
.x1c_c00138{left:224.160000pt;}
.x85_c00138{left:226.069333pt;}
.x2a_c00138{left:227.152000pt;}
.x45_c00138{left:229.438667pt;}
.x10_c00138{left:230.640000pt;}
.x33_c00138{left:233.433333pt;}
.x1d_c00138{left:235.440000pt;}
.x73_c00138{left:238.078667pt;}
.x60_c00138{left:239.518667pt;}
.x6b_c00138{left:241.857333pt;}
.x41_c00138{left:244.078667pt;}
.x7c_c00138{left:246.958667pt;}
.x11_c00138{left:248.640000pt;}
.x4c_c00138{left:249.838667pt;}
.x3b_c00138{left:253.918667pt;}
.x17_c00138{left:255.257333pt;}
.x9_c00138{left:256.946667pt;}
.x6c_c00138{left:258.168000pt;}
.x78_c00138{left:259.918667pt;}
.x53_c00138{left:260.878667pt;}
.x7d_c00138{left:263.518667pt;}
.x61_c00138{left:265.678667pt;}
.x2e_c00138{left:267.466667pt;}
.x1e_c00138{left:270.240000pt;}
.x2b_c00138{left:271.514667pt;}
.x18_c00138{left:274.405333pt;}
.x24_c00138{left:275.837333pt;}
.x57_c00138{left:276.958667pt;}
.x42_c00138{left:279.598667pt;}
.x12_c00138{left:281.520000pt;}
.x46_c00138{left:282.718667pt;}
.x34_c00138{left:285.270667pt;}
.xa_c00138{left:286.474667pt;}
.x86_c00138{left:287.760000pt;}
.x89_c00138{left:291.468000pt;}
.x70_c00138{left:295.438667pt;}
.x74_c00138{left:296.398667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00139 {
    display:none;
  }
  .loading-indicator_c00139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00139 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00139 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00139" -> "#page-container .classname_c00139")
 */
.pf_c00139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00139 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00139 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00139 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00139 {overflow:visible;}
  }
}
.c_c00139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00139 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00139:after { /* webkit #35443 */
  content: '';
}
.t_c00139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00139 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00139 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00139 { /* info for Javascript */
  display:none;
}
.l_c00139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00139:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00139 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00139.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcf_c00139{transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);}
.ma4_c00139{transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);}
.m9a_c00139{transform:matrix(0.097735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097735,0.000000,0.000000,0.250000,0,0);}
.mee_c00139{transform:matrix(0.126262,-0.001389,0.002750,0.249985,0,0);-ms-transform:matrix(0.126262,-0.001389,0.002750,0.249985,0,0);-webkit-transform:matrix(0.126262,-0.001389,0.002750,0.249985,0,0);}
.m12_c00139{transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);}
.m97_c00139{transform:matrix(0.142590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142590,0.000000,0.000000,0.250000,0,0);}
.m7f_c00139{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.144880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144880,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.146405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146405,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.147865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147865,0.000000,0.000000,0.250000,0,0);}
.m39_c00139{transform:matrix(0.148085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148085,0.000000,0.000000,0.250000,0,0);}
.m68_c00139{transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00139{transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);}
.m66_c00139{transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);}
.m98_c00139{transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);}
.m30_c00139{transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m75_c00139{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m78_c00139{transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);}
.m7e_c00139{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m8b_c00139{transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00139{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.md8_c00139{transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.160865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160865,0.000000,0.000000,0.250000,0,0);}
.mda_c00139{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.me1_c00139{transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);}
.md2_c00139{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);}
.m6d_c00139{transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162145,0.000000,0.000000,0.250000,0,0);}
.maa_c00139{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m51_c00139{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{transform:matrix(0.164160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164160,0.000000,0.000000,0.250000,0,0);}
.mf0_c00139{transform:matrix(0.164305,-0.001807,0.002750,0.249985,0,0);-ms-transform:matrix(0.164305,-0.001807,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164305,-0.001807,0.002750,0.249985,0,0);}
.m10_c00139{transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);}
.m7a_c00139{transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m35_c00139{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mf1_c00139{transform:matrix(0.165665,-0.001822,0.002750,0.249985,0,0);-ms-transform:matrix(0.165665,-0.001822,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165665,-0.001822,0.002750,0.249985,0,0);}
.m27_c00139{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.md9_c00139{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.m6e_c00139{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.m76_c00139{transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);}
.mc9_c00139{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m92_c00139{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m89_c00139{transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);}
.m6f_c00139{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.md6_c00139{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.mb0_c00139{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m72_c00139{transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.171685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171685,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);}
.me6_c00139{transform:matrix(0.171905,-0.002235,0.003250,0.249979,0,0);-ms-transform:matrix(0.171905,-0.002235,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171905,-0.002235,0.003250,0.249979,0,0);}
.m5a_c00139{transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m94_c00139{transform:matrix(0.172440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172440,0.000000,0.000000,0.250000,0,0);}
.m2d_c00139{transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);}
.me9_c00139{transform:matrix(0.173240,-0.002252,0.003250,0.249979,0,0);-ms-transform:matrix(0.173240,-0.002252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173240,-0.002252,0.003250,0.249979,0,0);}
.mc6_c00139{transform:matrix(0.173255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173255,0.000000,0.000000,0.250000,0,0);}
.m33_c00139{transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.mb7_c00139{transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);}
.mf2_c00139{transform:matrix(0.174274,-0.001917,0.002750,0.249985,0,0);-ms-transform:matrix(0.174274,-0.001917,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174274,-0.001917,0.002750,0.249985,0,0);}
.m4b_c00139{transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);}
.me8_c00139{transform:matrix(0.174720,-0.002271,0.003250,0.249979,0,0);-ms-transform:matrix(0.174720,-0.002271,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174720,-0.002271,0.003250,0.249979,0,0);}
.m85_c00139{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m79_c00139{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);}
.m37_c00139{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.maf_c00139{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00139{transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);}
.m8d_c00139{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.m9b_c00139{transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.m67_c00139{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.mb3_c00139{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m5f_c00139{transform:matrix(0.177305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177305,0.000000,0.000000,0.250000,0,0);}
.m95_c00139{transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00139{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m8e_c00139{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.mec_c00139{transform:matrix(0.178295,-0.002318,0.003250,0.249979,0,0);-ms-transform:matrix(0.178295,-0.002318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178295,-0.002318,0.003250,0.249979,0,0);}
.m7d_c00139{transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);}
.mdb_c00139{transform:matrix(0.178545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178545,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m86_c00139{transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.mab_c00139{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.mdc_c00139{transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m74_c00139{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m88_c00139{transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m62_c00139{transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);}
.m36_c00139{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00139{transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.mf5_c00139{transform:matrix(0.182423,-0.005473,0.007497,0.249888,0,0);-ms-transform:matrix(0.182423,-0.005473,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182423,-0.005473,0.007497,0.249888,0,0);}
.mba_c00139{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.mf3_c00139{transform:matrix(0.182724,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182724,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182724,-0.002010,0.002750,0.249985,0,0);}
.ma3_c00139{transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.m87_c00139{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m80_c00139{transform:matrix(0.183585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183585,0.000000,0.000000,0.250000,0,0);}
.m34_c00139{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m84_c00139{transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);}
.m7c_c00139{transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);}
.mbd_c00139{transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);}
.md5_c00139{transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m7b_c00139{transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.mf7_c00139{transform:matrix(0.184787,-0.005544,0.007497,0.249888,0,0);-ms-transform:matrix(0.184787,-0.005544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184787,-0.005544,0.007497,0.249888,0,0);}
.m65_c00139{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.mbc_c00139{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.mf6_c00139{transform:matrix(0.186621,-0.005599,0.007497,0.249888,0,0);-ms-transform:matrix(0.186621,-0.005599,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186621,-0.005599,0.007497,0.249888,0,0);}
.me7_c00139{transform:matrix(0.186999,-0.002431,0.003250,0.249979,0,0);-ms-transform:matrix(0.186999,-0.002431,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186999,-0.002431,0.003250,0.249979,0,0);}
.m5e_c00139{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m77_c00139{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00139{transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);}
.mb1_c00139{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m56_c00139{transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);}
.mdf_c00139{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.mca_c00139{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m28_c00139{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m8f_c00139{transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);}
.m73_c00139{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.m63_c00139{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.mcd_c00139{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m64_c00139{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.mdd_c00139{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.m3e_c00139{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.me2_c00139{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00139{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.md1_c00139{transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);}
.m82_c00139{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.me3_c00139{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.mb2_c00139{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.md4_c00139{transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);}
.mad_c00139{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.m91_c00139{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.mbb_c00139{transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);}
.m90_c00139{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m8a_c00139{transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199345,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m61_c00139{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m9e_c00139{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00139{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00139{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m50_c00139{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.med_c00139{transform:matrix(0.202308,-0.002630,0.003250,0.249979,0,0);-ms-transform:matrix(0.202308,-0.002630,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202308,-0.002630,0.003250,0.249979,0,0);}
.m2_c00139{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);}
.mc0_c00139{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.meb_c00139{transform:matrix(0.203028,-0.002639,0.003250,0.249979,0,0);-ms-transform:matrix(0.203028,-0.002639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203028,-0.002639,0.003250,0.249979,0,0);}
.mea_c00139{transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);}
.md3_c00139{transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m83_c00139{transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);}
.m4e_c00139{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.ma8_c00139{transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);}
.md7_c00139{transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);}
.md0_c00139{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.m4d_c00139{transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);}
.m41_c00139{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.ma0_c00139{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.mbe_c00139{transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);}
.m1d_c00139{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m96_c00139{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.mce_c00139{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.m81_c00139{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m6a_c00139{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m93_c00139{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m69_c00139{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.mb6_c00139{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m42_c00139{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00139{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma7_c00139{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.m55_c00139{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m71_c00139{transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.mef_c00139{transform:matrix(0.215997,-0.002376,0.002750,0.249985,0,0);-ms-transform:matrix(0.215997,-0.002376,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215997,-0.002376,0.002750,0.249985,0,0);}
.m9d_c00139{transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);}
.mac_c00139{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00139{transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);}
.mf4_c00139{transform:matrix(0.219171,-0.006575,0.007497,0.249888,0,0);-ms-transform:matrix(0.219171,-0.006575,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219171,-0.006575,0.007497,0.249888,0,0);}
.m8c_c00139{transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);}
.mfa_c00139{transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);-ms-transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219941,-0.006598,0.007497,0.249888,0,0);}
.m70_c00139{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.ma2_c00139{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.mde_c00139{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.ma1_c00139{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00139{transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);}
.mc1_c00139{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.mb5_c00139{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.mc5_c00139{transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);}
.m3c_c00139{transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m46_c00139{transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);}
.m49_c00139{transform:matrix(0.234995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234995,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);}
.m99_c00139{transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);}
.mf9_c00139{transform:matrix(0.239357,-0.007181,0.007497,0.249888,0,0);-ms-transform:matrix(0.239357,-0.007181,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239357,-0.007181,0.007497,0.249888,0,0);}
.m8_c00139{transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m9c_c00139{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);}
.me5_c00139{transform:matrix(0.257193,-0.003344,0.003250,0.249979,0,0);-ms-transform:matrix(0.257193,-0.003344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257193,-0.003344,0.003250,0.249979,0,0);}
.mc4_c00139{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);}
.mc7_c00139{transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);}
.mc3_c00139{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.mf8_c00139{transform:matrix(0.321185,-0.009636,0.007497,0.249888,0,0);-ms-transform:matrix(0.321185,-0.009636,0.007497,0.249888,0,0);-webkit-transform:matrix(0.321185,-0.009636,0.007497,0.249888,0,0);}
.me4_c00139{transform:matrix(0.332167,-0.004318,0.003250,0.249979,0,0);-ms-transform:matrix(0.332167,-0.004318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.332167,-0.004318,0.003250,0.249979,0,0);}
.me0_c00139{transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);}
.m3b_c00139{transform:matrix(0.361185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361185,0.000000,0.000000,0.250000,0,0);}
.mc8_c00139{transform:matrix(0.367960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367960,0.000000,0.000000,0.250000,0,0);}
.m60_c00139{transform:matrix(0.623310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623310,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:0.000000px;}
.fc0_c00139{color:transparent;}
.fse_c00139{font-size:43.050000px;}
.fsb_c00139{font-size:57.750000px;}
.fs8_c00139{font-size:60.900000px;}
.fs3_c00139{font-size:61.950000px;}
.fsd_c00139{font-size:64.050000px;}
.fsf_c00139{font-size:64.055412px;}
.fsc_c00139{font-size:65.100000px;}
.fs9_c00139{font-size:66.150000px;}
.fs7_c00139{font-size:67.200000px;}
.fs1_c00139{font-size:68.250000px;}
.fs6_c00139{font-size:69.300000px;}
.fs5_c00139{font-size:70.350000px;}
.fs4_c00139{font-size:71.400000px;}
.fs11_c00139{font-size:72.482595px;}
.fsa_c00139{font-size:75.600000px;}
.fs10_c00139{font-size:76.654637px;}
.fs2_c00139{font-size:77.700000px;}
.fs0_c00139{font-size:87.150000px;}
.y0_c00139{bottom:0.000000px;}
.y4a_c00139{bottom:24.045000px;}
.y4b_c00139{bottom:25.583550px;}
.y4c_c00139{bottom:26.369610px;}
.y4d_c00139{bottom:28.669470px;}
.y4e_c00139{bottom:29.325255px;}
.y4f_c00139{bottom:31.182000px;}
.y50_c00139{bottom:31.740630px;}
.y44_c00139{bottom:44.281500px;}
.y45_c00139{bottom:44.765478px;}
.y46_c00139{bottom:45.742162px;}
.y47_c00139{bottom:46.078301px;}
.y48_c00139{bottom:46.918233px;}
.y49_c00139{bottom:47.292882px;}
.y3a_c00139{bottom:62.103000px;}
.y3b_c00139{bottom:62.556199px;}
.y3c_c00139{bottom:62.825767px;}
.y3d_c00139{bottom:63.124274px;}
.y3e_c00139{bottom:63.544791px;}
.y3f_c00139{bottom:63.801860px;}
.y40_c00139{bottom:64.054424px;}
.y41_c00139{bottom:64.872137px;}
.y42_c00139{bottom:65.135328px;}
.y43_c00139{bottom:65.440990px;}
.y33_c00139{bottom:78.843000px;}
.y34_c00139{bottom:79.095000px;}
.y35_c00139{bottom:79.959000px;}
.y36_c00139{bottom:80.266500px;}
.y37_c00139{bottom:80.496000px;}
.y38_c00139{bottom:81.267000px;}
.y39_c00139{bottom:81.483000px;}
.y2c_c00139{bottom:97.201500px;}
.y2d_c00139{bottom:97.393500px;}
.y2e_c00139{bottom:97.992000px;}
.y2f_c00139{bottom:98.214000px;}
.y30_c00139{bottom:98.457000px;}
.y31_c00139{bottom:98.919000px;}
.y32_c00139{bottom:99.745500px;}
.y2b_c00139{bottom:116.050500px;}
.y2a_c00139{bottom:133.953000px;}
.y29_c00139{bottom:152.389500px;}
.y28_c00139{bottom:169.167000px;}
.y27_c00139{bottom:187.380000px;}
.y26_c00139{bottom:205.003500px;}
.y25_c00139{bottom:222.780000px;}
.y24_c00139{bottom:240.496500px;}
.y23_c00139{bottom:257.446500px;}
.y22_c00139{bottom:274.939500px;}
.y21_c00139{bottom:292.759500px;}
.y20_c00139{bottom:309.598500px;}
.y1f_c00139{bottom:327.498000px;}
.y1e_c00139{bottom:344.946000px;}
.y1d_c00139{bottom:362.959500px;}
.y1c_c00139{bottom:380.509500px;}
.y1b_c00139{bottom:399.100500px;}
.y13_c00139{bottom:413.373000px;}
.y14_c00139{bottom:413.859000px;}
.y15_c00139{bottom:414.231000px;}
.y16_c00139{bottom:414.498000px;}
.y17_c00139{bottom:415.000500px;}
.y18_c00139{bottom:415.597500px;}
.y19_c00139{bottom:415.806000px;}
.y1a_c00139{bottom:415.978500px;}
.y12_c00139{bottom:433.428000px;}
.y11_c00139{bottom:449.788500px;}
.y10_c00139{bottom:467.988000px;}
.yf_c00139{bottom:485.613000px;}
.ye_c00139{bottom:503.665500px;}
.yd_c00139{bottom:519.709500px;}
.yc_c00139{bottom:537.334500px;}
.yb_c00139{bottom:554.997000px;}
.y2_c00139{bottom:570.241500px;}
.y3_c00139{bottom:570.393000px;}
.y4_c00139{bottom:570.699000px;}
.y5_c00139{bottom:571.020000px;}
.y6_c00139{bottom:571.714500px;}
.y7_c00139{bottom:572.166000px;}
.y8_c00139{bottom:572.490000px;}
.y9_c00139{bottom:573.162000px;}
.ya_c00139{bottom:573.361500px;}
.y1_c00139{bottom:585.226500px;}
.h10_c00139{height:43.050000px;}
.hd_c00139{height:57.750000px;}
.ha_c00139{height:60.900000px;}
.h5_c00139{height:61.950000px;}
.hf_c00139{height:64.050000px;}
.h11_c00139{height:64.055412px;}
.he_c00139{height:65.100000px;}
.hb_c00139{height:66.150000px;}
.h9_c00139{height:67.200000px;}
.h3_c00139{height:68.250000px;}
.h8_c00139{height:69.300000px;}
.h7_c00139{height:70.350000px;}
.h6_c00139{height:71.400000px;}
.h13_c00139{height:72.482595px;}
.hc_c00139{height:75.600000px;}
.h12_c00139{height:76.654637px;}
.h4_c00139{height:77.700000px;}
.h2_c00139{height:87.150000px;}
.h0_c00139{height:634.200000px;}
.h1_c00139{height:634.500000px;}
.w1_c00139{width:364.500000px;}
.w0_c00139{width:364.770000px;}
.x0_c00139{left:0.000000px;}
.x4d_c00139{left:25.113000px;}
.x1e_c00139{left:30.241500px;}
.x44_c00139{left:31.593000px;}
.x2_c00139{left:32.815500px;}
.x6c_c00139{left:34.560000px;}
.x5e_c00139{left:41.040000px;}
.x3_c00139{left:46.584000px;}
.x6f_c00139{left:49.680000px;}
.x6a_c00139{left:56.700000px;}
.x18_c00139{left:57.781500px;}
.x1f_c00139{left:61.021500px;}
.x25_c00139{left:63.181500px;}
.x4e_c00139{left:64.533000px;}
.x3e_c00139{left:67.773000px;}
.x2b_c00139{left:70.741500px;}
.x11_c00139{left:72.631500px;}
.x4_c00139{left:74.400000px;}
.x19_c00139{left:77.491500px;}
.x38_c00139{left:80.832000px;}
.xa_c00139{left:82.351500px;}
.x12_c00139{left:85.591500px;}
.x20_c00139{left:91.531500px;}
.x35_c00139{left:92.611500px;}
.x26_c00139{left:95.851500px;}
.xb_c00139{left:96.931500px;}
.x5_c00139{left:103.582500px;}
.x49_c00139{left:105.303000px;}
.x5f_c00139{left:107.190000px;}
.x75_c00139{left:108.718500px;}
.x41_c00139{left:109.893000px;}
.x6d_c00139{left:110.970000px;}
.x54_c00139{left:113.133000px;}
.x51_c00139{left:114.483000px;}
.x58_c00139{left:116.370000px;}
.x39_c00139{left:118.089000px;}
.x30_c00139{left:123.391500px;}
.x4f_c00139{left:126.363000px;}
.x13_c00139{left:129.061500px;}
.x59_c00139{left:130.140000px;}
.x2c_c00139{left:131.761500px;}
.x1a_c00139{left:136.621500px;}
.x14_c00139{left:137.971500px;}
.xc_c00139{left:140.131500px;}
.x52_c00139{left:141.753000px;}
.x3a_c00139{left:144.811500px;}
.x21_c00139{left:148.231500px;}
.x4a_c00139{left:149.853000px;}
.x55_c00139{left:151.743000px;}
.x70_c00139{left:152.820000px;}
.x5a_c00139{left:155.790000px;}
.x74_c00139{left:157.005000px;}
.x76_c00139{left:160.840500px;}
.x78_c00139{left:162.918000px;}
.x42_c00139{left:165.783000px;}
.x1_c00139{left:167.130000px;}
.x62_c00139{left:168.210000px;}
.x27_c00139{left:169.291500px;}
.x1b_c00139{left:173.611500px;}
.x71_c00139{left:176.580000px;}
.x47_c00139{left:180.363000px;}
.x31_c00139{left:182.521500px;}
.x65_c00139{left:184.410000px;}
.x15_c00139{left:187.381500px;}
.x2d_c00139{left:189.001500px;}
.x22_c00139{left:190.621500px;}
.x79_c00139{left:193.476000px;}
.x3b_c00139{left:195.061500px;}
.x3f_c00139{left:199.263000px;}
.x1c_c00139{left:203.041500px;}
.x5b_c00139{left:204.660000px;}
.x68_c00139{left:205.740000px;}
.x6_c00139{left:207.766500px;}
.x2e_c00139{left:209.251500px;}
.x69_c00139{left:210.330000px;}
.x56_c00139{left:212.223000px;}
.x50_c00139{left:214.113000px;}
.xd_c00139{left:217.351500px;}
.x63_c00139{left:218.700000px;}
.x4b_c00139{left:220.863000px;}
.x16_c00139{left:223.561500px;}
.x72_c00139{left:227.610000px;}
.x28_c00139{left:230.851500px;}
.x45_c00139{left:233.823000px;}
.x48_c00139{left:235.983000px;}
.x7_c00139{left:237.205500px;}
.xe_c00139{left:241.111500px;}
.x77_c00139{left:243.169500px;}
.x66_c00139{left:245.430000px;}
.x32_c00139{left:247.051500px;}
.x2f_c00139{left:248.671500px;}
.x23_c00139{left:252.721500px;}
.x3c_c00139{left:254.728500px;}
.x17_c00139{left:255.961500px;}
.x67_c00139{left:259.200000px;}
.x43_c00139{left:261.363000px;}
.x6b_c00139{left:264.060000px;}
.x24_c00139{left:265.951500px;}
.x29_c00139{left:268.651500px;}
.xf_c00139{left:269.731500px;}
.x4c_c00139{left:272.703000px;}
.x33_c00139{left:274.861500px;}
.x6e_c00139{left:276.210000px;}
.x5c_c00139{left:279.720000px;}
.x36_c00139{left:282.691500px;}
.x1d_c00139{left:284.851500px;}
.x40_c00139{left:286.473000px;}
.x73_c00139{left:289.170000px;}
.x3d_c00139{left:292.786500px;}
.x34_c00139{left:294.571500px;}
.x64_c00139{left:295.650000px;}
.x8_c00139{left:298.230000px;}
.x46_c00139{left:299.433000px;}
.x53_c00139{left:300.783000px;}
.x37_c00139{left:303.211500px;}
.x60_c00139{left:306.990000px;}
.x5d_c00139{left:312.390000px;}
.x57_c00139{left:314.823000px;}
.x9_c00139{left:316.306500px;}
.x10_c00139{left:322.921500px;}
.x2a_c00139{left:326.971500px;}
.x61_c00139{left:350.460000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
.fse_c00139{font-size:38.266667pt;}
.fsb_c00139{font-size:51.333333pt;}
.fs8_c00139{font-size:54.133333pt;}
.fs3_c00139{font-size:55.066667pt;}
.fsd_c00139{font-size:56.933333pt;}
.fsf_c00139{font-size:56.938144pt;}
.fsc_c00139{font-size:57.866667pt;}
.fs9_c00139{font-size:58.800000pt;}
.fs7_c00139{font-size:59.733333pt;}
.fs1_c00139{font-size:60.666667pt;}
.fs6_c00139{font-size:61.600000pt;}
.fs5_c00139{font-size:62.533333pt;}
.fs4_c00139{font-size:63.466667pt;}
.fs11_c00139{font-size:64.428973pt;}
.fsa_c00139{font-size:67.200000pt;}
.fs10_c00139{font-size:68.137455pt;}
.fs2_c00139{font-size:69.066667pt;}
.fs0_c00139{font-size:77.466667pt;}
.y0_c00139{bottom:0.000000pt;}
.y4a_c00139{bottom:21.373333pt;}
.y4b_c00139{bottom:22.740933pt;}
.y4c_c00139{bottom:23.439653pt;}
.y4d_c00139{bottom:25.483973pt;}
.y4e_c00139{bottom:26.066893pt;}
.y4f_c00139{bottom:27.717333pt;}
.y50_c00139{bottom:28.213893pt;}
.y44_c00139{bottom:39.361333pt;}
.y45_c00139{bottom:39.791536pt;}
.y46_c00139{bottom:40.659700pt;}
.y47_c00139{bottom:40.958489pt;}
.y48_c00139{bottom:41.705096pt;}
.y49_c00139{bottom:42.038117pt;}
.y3a_c00139{bottom:55.202667pt;}
.y3b_c00139{bottom:55.605511pt;}
.y3c_c00139{bottom:55.845127pt;}
.y3d_c00139{bottom:56.110465pt;}
.y3e_c00139{bottom:56.484259pt;}
.y3f_c00139{bottom:56.712764pt;}
.y40_c00139{bottom:56.937265pt;}
.y41_c00139{bottom:57.664121pt;}
.y42_c00139{bottom:57.898069pt;}
.y43_c00139{bottom:58.169769pt;}
.y33_c00139{bottom:70.082667pt;}
.y34_c00139{bottom:70.306667pt;}
.y35_c00139{bottom:71.074667pt;}
.y36_c00139{bottom:71.348000pt;}
.y37_c00139{bottom:71.552000pt;}
.y38_c00139{bottom:72.237333pt;}
.y39_c00139{bottom:72.429333pt;}
.y2c_c00139{bottom:86.401333pt;}
.y2d_c00139{bottom:86.572000pt;}
.y2e_c00139{bottom:87.104000pt;}
.y2f_c00139{bottom:87.301333pt;}
.y30_c00139{bottom:87.517333pt;}
.y31_c00139{bottom:87.928000pt;}
.y32_c00139{bottom:88.662667pt;}
.y2b_c00139{bottom:103.156000pt;}
.y2a_c00139{bottom:119.069333pt;}
.y29_c00139{bottom:135.457333pt;}
.y28_c00139{bottom:150.370667pt;}
.y27_c00139{bottom:166.560000pt;}
.y26_c00139{bottom:182.225333pt;}
.y25_c00139{bottom:198.026667pt;}
.y24_c00139{bottom:213.774667pt;}
.y23_c00139{bottom:228.841333pt;}
.y22_c00139{bottom:244.390667pt;}
.y21_c00139{bottom:260.230667pt;}
.y20_c00139{bottom:275.198667pt;}
.y1f_c00139{bottom:291.109333pt;}
.y1e_c00139{bottom:306.618667pt;}
.y1d_c00139{bottom:322.630667pt;}
.y1c_c00139{bottom:338.230667pt;}
.y1b_c00139{bottom:354.756000pt;}
.y13_c00139{bottom:367.442667pt;}
.y14_c00139{bottom:367.874667pt;}
.y15_c00139{bottom:368.205333pt;}
.y16_c00139{bottom:368.442667pt;}
.y17_c00139{bottom:368.889333pt;}
.y18_c00139{bottom:369.420000pt;}
.y19_c00139{bottom:369.605333pt;}
.y1a_c00139{bottom:369.758667pt;}
.y12_c00139{bottom:385.269333pt;}
.y11_c00139{bottom:399.812000pt;}
.y10_c00139{bottom:415.989333pt;}
.yf_c00139{bottom:431.656000pt;}
.ye_c00139{bottom:447.702667pt;}
.yd_c00139{bottom:461.964000pt;}
.yc_c00139{bottom:477.630667pt;}
.yb_c00139{bottom:493.330667pt;}
.y2_c00139{bottom:506.881333pt;}
.y3_c00139{bottom:507.016000pt;}
.y4_c00139{bottom:507.288000pt;}
.y5_c00139{bottom:507.573333pt;}
.y6_c00139{bottom:508.190667pt;}
.y7_c00139{bottom:508.592000pt;}
.y8_c00139{bottom:508.880000pt;}
.y9_c00139{bottom:509.477333pt;}
.ya_c00139{bottom:509.654667pt;}
.y1_c00139{bottom:520.201333pt;}
.h10_c00139{height:38.266667pt;}
.hd_c00139{height:51.333333pt;}
.ha_c00139{height:54.133333pt;}
.h5_c00139{height:55.066667pt;}
.hf_c00139{height:56.933333pt;}
.h11_c00139{height:56.938144pt;}
.he_c00139{height:57.866667pt;}
.hb_c00139{height:58.800000pt;}
.h9_c00139{height:59.733333pt;}
.h3_c00139{height:60.666667pt;}
.h8_c00139{height:61.600000pt;}
.h7_c00139{height:62.533333pt;}
.h6_c00139{height:63.466667pt;}
.h13_c00139{height:64.428973pt;}
.hc_c00139{height:67.200000pt;}
.h12_c00139{height:68.137455pt;}
.h4_c00139{height:69.066667pt;}
.h2_c00139{height:77.466667pt;}
.h0_c00139{height:563.733333pt;}
.h1_c00139{height:564.000000pt;}
.w1_c00139{width:324.000000pt;}
.w0_c00139{width:324.240000pt;}
.x0_c00139{left:0.000000pt;}
.x4d_c00139{left:22.322667pt;}
.x1e_c00139{left:26.881333pt;}
.x44_c00139{left:28.082667pt;}
.x2_c00139{left:29.169333pt;}
.x6c_c00139{left:30.720000pt;}
.x5e_c00139{left:36.480000pt;}
.x3_c00139{left:41.408000pt;}
.x6f_c00139{left:44.160000pt;}
.x6a_c00139{left:50.400000pt;}
.x18_c00139{left:51.361333pt;}
.x1f_c00139{left:54.241333pt;}
.x25_c00139{left:56.161333pt;}
.x4e_c00139{left:57.362667pt;}
.x3e_c00139{left:60.242667pt;}
.x2b_c00139{left:62.881333pt;}
.x11_c00139{left:64.561333pt;}
.x4_c00139{left:66.133333pt;}
.x19_c00139{left:68.881333pt;}
.x38_c00139{left:71.850667pt;}
.xa_c00139{left:73.201333pt;}
.x12_c00139{left:76.081333pt;}
.x20_c00139{left:81.361333pt;}
.x35_c00139{left:82.321333pt;}
.x26_c00139{left:85.201333pt;}
.xb_c00139{left:86.161333pt;}
.x5_c00139{left:92.073333pt;}
.x49_c00139{left:93.602667pt;}
.x5f_c00139{left:95.280000pt;}
.x75_c00139{left:96.638667pt;}
.x41_c00139{left:97.682667pt;}
.x6d_c00139{left:98.640000pt;}
.x54_c00139{left:100.562667pt;}
.x51_c00139{left:101.762667pt;}
.x58_c00139{left:103.440000pt;}
.x39_c00139{left:104.968000pt;}
.x30_c00139{left:109.681333pt;}
.x4f_c00139{left:112.322667pt;}
.x13_c00139{left:114.721333pt;}
.x59_c00139{left:115.680000pt;}
.x2c_c00139{left:117.121333pt;}
.x1a_c00139{left:121.441333pt;}
.x14_c00139{left:122.641333pt;}
.xc_c00139{left:124.561333pt;}
.x52_c00139{left:126.002667pt;}
.x3a_c00139{left:128.721333pt;}
.x21_c00139{left:131.761333pt;}
.x4a_c00139{left:133.202667pt;}
.x55_c00139{left:134.882667pt;}
.x70_c00139{left:135.840000pt;}
.x5a_c00139{left:138.480000pt;}
.x74_c00139{left:139.560000pt;}
.x76_c00139{left:142.969333pt;}
.x78_c00139{left:144.816000pt;}
.x42_c00139{left:147.362667pt;}
.x1_c00139{left:148.560000pt;}
.x62_c00139{left:149.520000pt;}
.x27_c00139{left:150.481333pt;}
.x1b_c00139{left:154.321333pt;}
.x71_c00139{left:156.960000pt;}
.x47_c00139{left:160.322667pt;}
.x31_c00139{left:162.241333pt;}
.x65_c00139{left:163.920000pt;}
.x15_c00139{left:166.561333pt;}
.x2d_c00139{left:168.001333pt;}
.x22_c00139{left:169.441333pt;}
.x79_c00139{left:171.978667pt;}
.x3b_c00139{left:173.388000pt;}
.x3f_c00139{left:177.122667pt;}
.x1c_c00139{left:180.481333pt;}
.x5b_c00139{left:181.920000pt;}
.x68_c00139{left:182.880000pt;}
.x6_c00139{left:184.681333pt;}
.x2e_c00139{left:186.001333pt;}
.x69_c00139{left:186.960000pt;}
.x56_c00139{left:188.642667pt;}
.x50_c00139{left:190.322667pt;}
.xd_c00139{left:193.201333pt;}
.x63_c00139{left:194.400000pt;}
.x4b_c00139{left:196.322667pt;}
.x16_c00139{left:198.721333pt;}
.x72_c00139{left:202.320000pt;}
.x28_c00139{left:205.201333pt;}
.x45_c00139{left:207.842667pt;}
.x48_c00139{left:209.762667pt;}
.x7_c00139{left:210.849333pt;}
.xe_c00139{left:214.321333pt;}
.x77_c00139{left:216.150667pt;}
.x66_c00139{left:218.160000pt;}
.x32_c00139{left:219.601333pt;}
.x2f_c00139{left:221.041333pt;}
.x23_c00139{left:224.641333pt;}
.x3c_c00139{left:226.425333pt;}
.x17_c00139{left:227.521333pt;}
.x67_c00139{left:230.400000pt;}
.x43_c00139{left:232.322667pt;}
.x6b_c00139{left:234.720000pt;}
.x24_c00139{left:236.401333pt;}
.x29_c00139{left:238.801333pt;}
.xf_c00139{left:239.761333pt;}
.x4c_c00139{left:242.402667pt;}
.x33_c00139{left:244.321333pt;}
.x6e_c00139{left:245.520000pt;}
.x5c_c00139{left:248.640000pt;}
.x36_c00139{left:251.281333pt;}
.x1d_c00139{left:253.201333pt;}
.x40_c00139{left:254.642667pt;}
.x73_c00139{left:257.040000pt;}
.x3d_c00139{left:260.254667pt;}
.x34_c00139{left:261.841333pt;}
.x64_c00139{left:262.800000pt;}
.x8_c00139{left:265.093333pt;}
.x46_c00139{left:266.162667pt;}
.x53_c00139{left:267.362667pt;}
.x37_c00139{left:269.521333pt;}
.x60_c00139{left:272.880000pt;}
.x5d_c00139{left:277.680000pt;}
.x57_c00139{left:279.842667pt;}
.x9_c00139{left:281.161333pt;}
.x10_c00139{left:287.041333pt;}
.x2a_c00139{left:290.641333pt;}
.x61_c00139{left:311.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00140 {
    display:none;
  }
  .loading-indicator_c00140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00140 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00140 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00140" -> "#page-container .classname_c00140")
 */
.pf_c00140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00140 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00140 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00140 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00140 {overflow:visible;}
  }
}
.c_c00140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00140 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00140:after { /* webkit #35443 */
  content: '';
}
.t_c00140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00140 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00140 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00140 { /* info for Javascript */
  display:none;
}
.l_c00140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00140:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00140 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00140.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00140;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00140{transform:matrix(0.013950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013950,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{transform:matrix(0.073620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073620,0.000000,0.000000,0.250000,0,0);}
.mc6_c00140{transform:matrix(0.136985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136985,0.000000,0.000000,0.250000,0,0);}
.mc0_c00140{transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);}
.mc2_c00140{transform:matrix(0.144615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144615,0.000000,0.000000,0.250000,0,0);}
.mc3_c00140{transform:matrix(0.145520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145520,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);}
.m75_c00140{transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);}
.m73_c00140{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m78_c00140{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.me6_c00140{transform:matrix(0.157310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157310,0.000000,0.000000,0.250000,0,0);}
.mc1_c00140{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{transform:matrix(0.158310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158310,0.000000,0.000000,0.250000,0,0);}
.mbf_c00140{transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);}
.mdc_c00140{transform:matrix(0.158630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158630,0.000000,0.000000,0.250000,0,0);}
.md1_c00140{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.mf0_c00140{transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);}
.mec_c00140{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);}
.mb6_c00140{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.mf3_c00140{transform:matrix(0.163840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163840,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);}
.m93_c00140{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);}
.me9_c00140{transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);}
.mab_c00140{transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166935,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);}
.m79_c00140{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);}
.m7c_c00140{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m97_c00140{transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);}
.m85_c00140{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.mc4_c00140{transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174130,0.000000,0.000000,0.250000,0,0);}
.m51_c00140{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);}
.m77_c00140{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m6f_c00140{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00140{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m9d_c00140{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.m98_c00140{transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);}
.m62_c00140{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m91_c00140{transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);}
.m9c_c00140{transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);}
.ma2_c00140{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m5d_c00140{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.mea_c00140{transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);}
.m64_c00140{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m72_c00140{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m9a_c00140{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.m8f_c00140{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00140{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.me7_c00140{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.md0_c00140{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00140{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.mc9_c00140{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m96_c00140{transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00140{transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);}
.m86_c00140{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.mde_c00140{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.mef_c00140{transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m94_c00140{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00140{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.m8c_c00140{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m95_c00140{transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);}
.ma4_c00140{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{transform:matrix(0.187430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187430,0.000000,0.000000,0.250000,0,0);}
.mbe_c00140{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m9b_c00140{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.me1_c00140{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m36_c00140{transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.ma5_c00140{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.mc8_c00140{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m7e_c00140{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.me5_c00140{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.m37_c00140{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m83_c00140{transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00140{transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00140{transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);}
.m4d_c00140{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.ma0_c00140{transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00140{transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00140{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.mdd_c00140{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.m87_c00140{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m61_c00140{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.m2e_c00140{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.mce_c00140{transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.m63_c00140{transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);}
.me2_c00140{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.m5a_c00140{transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);}
.me4_c00140{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.md4_c00140{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.mf4_c00140{transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);}
.m3d_c00140{transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);}
.m35_c00140{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00140{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.med_c00140{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00140{transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m54_c00140{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m92_c00140{transform:matrix(0.205115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205115,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);}
.m84_c00140{transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);}
.m8d_c00140{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.m5f_c00140{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.ma1_c00140{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m99_c00140{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.mb5_c00140{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m52_c00140{transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m69_c00140{transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.md7_c00140{transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);}
.ma9_c00140{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.mf1_c00140{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.ma8_c00140{transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);}
.mc7_c00140{transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);}
.mdf_c00140{transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.m56_c00140{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.mba_c00140{transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);}
.mac_c00140{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.maf_c00140{transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);}
.meb_c00140{transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.maa_c00140{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);}
.m8e_c00140{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.md8_c00140{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.mcf_c00140{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.mca_c00140{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m6d_c00140{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.md3_c00140{transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m3e_c00140{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.mcc_c00140{transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);}
.mb8_c00140{transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);}
.mb9_c00140{transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);}
.m50_c00140{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00140{transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);}
.m65_c00140{transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m60_c00140{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.me8_c00140{transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m80_c00140{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m68_c00140{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.md2_c00140{transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);}
.m5c_c00140{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.me0_c00140{transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);}
.m90_c00140{transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225280,0.000000,0.000000,0.250000,0,0);}
.m7d_c00140{transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);}
.me3_c00140{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.mbc_c00140{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.mee_c00140{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.mcd_c00140{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00140{transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.m3c_c00140{transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);}
.md5_c00140{transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);}
.m6b_c00140{transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.mbb_c00140{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);}
.m74_c00140{transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00140{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.m39_c00140{transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);}
.mb0_c00140{transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);}
.md9_c00140{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.md6_c00140{transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);}
.m6a_c00140{transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.mae_c00140{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.mb2_c00140{transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);}
.m66_c00140{transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);}
.mdb_c00140{transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);}
.mb1_c00140{transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00140{transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);}
.mda_c00140{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.mad_c00140{transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);}
.m70_c00140{transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);}
.mb3_c00140{transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);}
.mf2_c00140{transform:matrix(0.337995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00140{transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);}
.m6c_c00140{transform:matrix(0.362210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362210,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:0.000000px;}
.fc0_c00140{color:transparent;}
.fse_c00140{font-size:54.600000px;}
.fs8_c00140{font-size:57.750000px;}
.fsb_c00140{font-size:59.850000px;}
.fs5_c00140{font-size:60.900000px;}
.fs4_c00140{font-size:61.950000px;}
.fsa_c00140{font-size:63.000000px;}
.fs6_c00140{font-size:64.050000px;}
.fs2_c00140{font-size:65.100000px;}
.fs7_c00140{font-size:66.150000px;}
.fsd_c00140{font-size:67.200000px;}
.fs9_c00140{font-size:68.250000px;}
.fs3_c00140{font-size:69.300000px;}
.fs1_c00140{font-size:70.350000px;}
.fsf_c00140{font-size:71.400000px;}
.fsc_c00140{font-size:77.700000px;}
.fs0_c00140{font-size:79.800000px;}
.y0_c00140{bottom:0.000000px;}
.y58_c00140{bottom:35.089500px;}
.y57_c00140{bottom:35.305500px;}
.y56_c00140{bottom:35.446500px;}
.y55_c00140{bottom:35.889000px;}
.y54_c00140{bottom:36.159000px;}
.y53_c00140{bottom:36.424500px;}
.y52_c00140{bottom:36.748500px;}
.y51_c00140{bottom:37.003500px;}
.y50_c00140{bottom:37.804500px;}
.y4f_c00140{bottom:52.932000px;}
.y4e_c00140{bottom:53.418000px;}
.y4d_c00140{bottom:53.707500px;}
.y4c_c00140{bottom:53.994000px;}
.y4b_c00140{bottom:54.484500px;}
.y4a_c00140{bottom:54.832500px;}
.y49_c00140{bottom:55.504500px;}
.y48_c00140{bottom:55.771500px;}
.y47_c00140{bottom:55.893000px;}
.y46_c00140{bottom:73.206000px;}
.y45_c00140{bottom:89.149500px;}
.y44_c00140{bottom:89.569500px;}
.y43_c00140{bottom:90.462000px;}
.y42_c00140{bottom:90.940500px;}
.y41_c00140{bottom:91.200000px;}
.y40_c00140{bottom:91.519500px;}
.y3f_c00140{bottom:92.251500px;}
.y3e_c00140{bottom:92.884500px;}
.y3d_c00140{bottom:109.165500px;}
.y3c_c00140{bottom:121.312500px;}
.y3b_c00140{bottom:122.658000px;}
.y3a_c00140{bottom:123.114000px;}
.y39_c00140{bottom:124.284000px;}
.y38_c00140{bottom:125.721000px;}
.y37_c00140{bottom:126.988500px;}
.y36_c00140{bottom:127.716000px;}
.y35_c00140{bottom:138.063000px;}
.y34_c00140{bottom:138.429000px;}
.y33_c00140{bottom:139.401000px;}
.y32_c00140{bottom:139.773000px;}
.y31_c00140{bottom:140.439000px;}
.y30_c00140{bottom:140.704500px;}
.y2f_c00140{bottom:141.802500px;}
.y2e_c00140{bottom:142.564500px;}
.y2d_c00140{bottom:157.575000px;}
.y2c_c00140{bottom:158.214000px;}
.y2b_c00140{bottom:158.353500px;}
.y2a_c00140{bottom:159.241500px;}
.y29_c00140{bottom:159.951000px;}
.y28_c00140{bottom:160.923000px;}
.y27_c00140{bottom:174.349500px;}
.y26_c00140{bottom:193.321500px;}
.y25_c00140{bottom:211.659000px;}
.y24_c00140{bottom:228.586500px;}
.y23_c00140{bottom:246.523500px;}
.y22_c00140{bottom:264.226500px;}
.y21_c00140{bottom:281.928000px;}
.y20_c00140{bottom:299.746500px;}
.y1f_c00140{bottom:317.344500px;}
.y19_c00140{bottom:333.994500px;}
.y1a_c00140{bottom:334.297500px;}
.y1b_c00140{bottom:334.591500px;}
.y1c_c00140{bottom:335.929500px;}
.y1d_c00140{bottom:336.526500px;}
.y1e_c00140{bottom:336.745500px;}
.y18_c00140{bottom:351.345000px;}
.y17_c00140{bottom:367.321500px;}
.y16_c00140{bottom:385.752000px;}
.y15_c00140{bottom:403.419000px;}
.y14_c00140{bottom:420.012000px;}
.ya_c00140{bottom:435.243000px;}
.yb_c00140{bottom:435.439500px;}
.yc_c00140{bottom:435.582000px;}
.yd_c00140{bottom:436.477500px;}
.ye_c00140{bottom:436.597500px;}
.yf_c00140{bottom:436.716000px;}
.y10_c00140{bottom:437.037000px;}
.y11_c00140{bottom:437.263500px;}
.y12_c00140{bottom:437.463000px;}
.y13_c00140{bottom:438.357000px;}
.y9_c00140{bottom:455.172000px;}
.y8_c00140{bottom:471.073500px;}
.y7_c00140{bottom:489.762000px;}
.y6_c00140{bottom:505.858500px;}
.y5_c00140{bottom:525.171000px;}
.y4_c00140{bottom:542.413500px;}
.y3_c00140{bottom:558.850500px;}
.y2_c00140{bottom:576.519000px;}
.y1_c00140{bottom:590.478000px;}
.h10_c00140{height:54.600000px;}
.ha_c00140{height:57.750000px;}
.hd_c00140{height:59.850000px;}
.h7_c00140{height:60.900000px;}
.h6_c00140{height:61.950000px;}
.hc_c00140{height:63.000000px;}
.h8_c00140{height:64.050000px;}
.h4_c00140{height:65.100000px;}
.h9_c00140{height:66.150000px;}
.hf_c00140{height:67.200000px;}
.hb_c00140{height:68.250000px;}
.h5_c00140{height:69.300000px;}
.h3_c00140{height:70.350000px;}
.h11_c00140{height:71.400000px;}
.he_c00140{height:77.700000px;}
.h2_c00140{height:79.800000px;}
.h0_c00140{height:634.200000px;}
.h1_c00140{height:634.500000px;}
.w1_c00140{width:364.500000px;}
.w0_c00140{width:364.770000px;}
.x0_c00140{left:0.000000px;}
.x37_c00140{left:34.288500px;}
.x3_c00140{left:35.370000px;}
.x50_c00140{left:41.850000px;}
.x1f_c00140{left:44.010000px;}
.x7a_c00140{left:47.409000px;}
.x38_c00140{left:50.758500px;}
.x31_c00140{left:53.286000px;}
.x79_c00140{left:55.086000px;}
.x20_c00140{left:56.160000px;}
.x40_c00140{left:58.048500px;}
.x4_c00140{left:61.290000px;}
.x32_c00140{left:66.286500px;}
.x48_c00140{left:68.308500px;}
.x45_c00140{left:72.628500px;}
.x6d_c00140{left:73.710000px;}
.xa_c00140{left:75.330000px;}
.x5a_c00140{left:78.300000px;}
.x10_c00140{left:79.650000px;}
.x26_c00140{left:81.540000px;}
.x3c_c00140{left:84.508500px;}
.x57_c00140{left:87.210000px;}
.x4e_c00140{left:88.929000px;}
.x19_c00140{left:90.180000px;}
.x6a_c00140{left:91.260000px;}
.x5e_c00140{left:93.690000px;}
.x41_c00140{left:96.658500px;}
.x46_c00140{left:98.818500px;}
.x11_c00140{left:102.060000px;}
.x66_c00140{left:104.490000px;}
.x3d_c00140{left:105.568500px;}
.x1a_c00140{left:108.000000px;}
.x61_c00140{left:111.240000px;}
.x42_c00140{left:114.208500px;}
.x39_c00140{left:115.558500px;}
.x12_c00140{left:122.310000px;}
.x67_c00140{left:123.660000px;}
.x71_c00140{left:125.373000px;}
.x6e_c00140{left:127.440000px;}
.x51_c00140{left:129.060000px;}
.x2c_c00140{left:131.490000px;}
.x3a_c00140{left:133.108500px;}
.x7b_c00140{left:141.402000px;}
.x27_c00140{left:142.830000px;}
.x49_c00140{left:143.908500px;}
.x52_c00140{left:145.530000px;}
.x21_c00140{left:147.150000px;}
.xb_c00140{left:151.740000px;}
.x58_c00140{left:152.820000px;}
.x2d_c00140{left:154.710000px;}
.x5f_c00140{left:156.870000px;}
.x33_c00140{left:158.613000px;}
.x3e_c00140{left:160.378500px;}
.x28_c00140{left:164.970000px;}
.x5_c00140{left:167.670000px;}
.x34_c00140{left:169.366500px;}
.x22_c00140{left:170.370000px;}
.x1_c00140{left:171.450000px;}
.x1b_c00140{left:173.880000px;}
.x13_c00140{left:175.770000px;}
.x4a_c00140{left:177.118500px;}
.x62_c00140{left:179.280000px;}
.x7d_c00140{left:184.347000px;}
.x47_c00140{left:186.028500px;}
.x6_c00140{left:187.110000px;}
.x14_c00140{left:189.270000px;}
.x72_c00140{left:190.681500px;}
.x6b_c00140{left:191.700000px;}
.x1c_c00140{left:193.860000px;}
.x78_c00140{left:196.960500px;}
.x35_c00140{left:198.579000px;}
.x2e_c00140{left:208.170000px;}
.x7_c00140{left:210.060000px;}
.x15_c00140{left:212.490000px;}
.x53_c00140{left:216.540000px;}
.x63_c00140{left:218.160000px;}
.x29_c00140{left:219.510000px;}
.xc_c00140{left:221.400000px;}
.x75_c00140{left:225.994500px;}
.x23_c00140{left:228.150000px;}
.x4b_c00140{left:230.038500px;}
.x43_c00140{left:231.928500px;}
.x2a_c00140{left:235.440000px;}
.x36_c00140{left:237.204000px;}
.x5c_c00140{left:240.840000px;}
.xd_c00140{left:241.920000px;}
.x73_c00140{left:243.852000px;}
.x6c_c00140{left:245.970000px;}
.x24_c00140{left:248.400000px;}
.x6f_c00140{left:249.633000px;}
.x76_c00140{left:251.914500px;}
.x5d_c00140{left:253.530000px;}
.x54_c00140{left:255.960000px;}
.x64_c00140{left:258.660000px;}
.x8_c00140{left:260.550000px;}
.x68_c00140{left:262.440000px;}
.x4f_c00140{left:264.933000px;}
.x4c_c00140{left:266.488500px;}
.x1d_c00140{left:270.810000px;}
.x65_c00140{left:271.890000px;}
.x55_c00140{left:273.240000px;}
.x9_c00140{left:274.860000px;}
.x77_c00140{left:277.564500px;}
.x2f_c00140{left:278.910000px;}
.x4d_c00140{left:279.988500px;}
.x16_c00140{left:281.340000px;}
.x7c_c00140{left:282.880500px;}
.x2_c00140{left:284.040000px;}
.x3b_c00140{left:285.388500px;}
.x69_c00140{left:287.550000px;}
.x1e_c00140{left:288.900000px;}
.x44_c00140{left:291.328500px;}
.xe_c00140{left:294.840000px;}
.x30_c00140{left:298.350000px;}
.x56_c00140{left:299.430000px;}
.x60_c00140{left:308.880000px;}
.x17_c00140{left:310.770000px;}
.xf_c00140{left:312.390000px;}
.x70_c00140{left:314.443500px;}
.x3f_c00140{left:317.248500px;}
.x2b_c00140{left:319.410000px;}
.x25_c00140{left:320.760000px;}
.x18_c00140{left:323.730000px;}
.x74_c00140{left:325.726500px;}
.x5b_c00140{left:332.100000px;}
.x59_c00140{left:333.450000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
.fse_c00140{font-size:48.533333pt;}
.fs8_c00140{font-size:51.333333pt;}
.fsb_c00140{font-size:53.200000pt;}
.fs5_c00140{font-size:54.133333pt;}
.fs4_c00140{font-size:55.066667pt;}
.fsa_c00140{font-size:56.000000pt;}
.fs6_c00140{font-size:56.933333pt;}
.fs2_c00140{font-size:57.866667pt;}
.fs7_c00140{font-size:58.800000pt;}
.fsd_c00140{font-size:59.733333pt;}
.fs9_c00140{font-size:60.666667pt;}
.fs3_c00140{font-size:61.600000pt;}
.fs1_c00140{font-size:62.533333pt;}
.fsf_c00140{font-size:63.466667pt;}
.fsc_c00140{font-size:69.066667pt;}
.fs0_c00140{font-size:70.933333pt;}
.y0_c00140{bottom:0.000000pt;}
.y58_c00140{bottom:31.190667pt;}
.y57_c00140{bottom:31.382667pt;}
.y56_c00140{bottom:31.508000pt;}
.y55_c00140{bottom:31.901333pt;}
.y54_c00140{bottom:32.141333pt;}
.y53_c00140{bottom:32.377333pt;}
.y52_c00140{bottom:32.665333pt;}
.y51_c00140{bottom:32.892000pt;}
.y50_c00140{bottom:33.604000pt;}
.y4f_c00140{bottom:47.050667pt;}
.y4e_c00140{bottom:47.482667pt;}
.y4d_c00140{bottom:47.740000pt;}
.y4c_c00140{bottom:47.994667pt;}
.y4b_c00140{bottom:48.430667pt;}
.y4a_c00140{bottom:48.740000pt;}
.y49_c00140{bottom:49.337333pt;}
.y48_c00140{bottom:49.574667pt;}
.y47_c00140{bottom:49.682667pt;}
.y46_c00140{bottom:65.072000pt;}
.y45_c00140{bottom:79.244000pt;}
.y44_c00140{bottom:79.617333pt;}
.y43_c00140{bottom:80.410667pt;}
.y42_c00140{bottom:80.836000pt;}
.y41_c00140{bottom:81.066667pt;}
.y40_c00140{bottom:81.350667pt;}
.y3f_c00140{bottom:82.001333pt;}
.y3e_c00140{bottom:82.564000pt;}
.y3d_c00140{bottom:97.036000pt;}
.y3c_c00140{bottom:107.833333pt;}
.y3b_c00140{bottom:109.029333pt;}
.y3a_c00140{bottom:109.434667pt;}
.y39_c00140{bottom:110.474667pt;}
.y38_c00140{bottom:111.752000pt;}
.y37_c00140{bottom:112.878667pt;}
.y36_c00140{bottom:113.525333pt;}
.y35_c00140{bottom:122.722667pt;}
.y34_c00140{bottom:123.048000pt;}
.y33_c00140{bottom:123.912000pt;}
.y32_c00140{bottom:124.242667pt;}
.y31_c00140{bottom:124.834667pt;}
.y30_c00140{bottom:125.070667pt;}
.y2f_c00140{bottom:126.046667pt;}
.y2e_c00140{bottom:126.724000pt;}
.y2d_c00140{bottom:140.066667pt;}
.y2c_c00140{bottom:140.634667pt;}
.y2b_c00140{bottom:140.758667pt;}
.y2a_c00140{bottom:141.548000pt;}
.y29_c00140{bottom:142.178667pt;}
.y28_c00140{bottom:143.042667pt;}
.y27_c00140{bottom:154.977333pt;}
.y26_c00140{bottom:171.841333pt;}
.y25_c00140{bottom:188.141333pt;}
.y24_c00140{bottom:203.188000pt;}
.y23_c00140{bottom:219.132000pt;}
.y22_c00140{bottom:234.868000pt;}
.y21_c00140{bottom:250.602667pt;}
.y20_c00140{bottom:266.441333pt;}
.y1f_c00140{bottom:282.084000pt;}
.y19_c00140{bottom:296.884000pt;}
.y1a_c00140{bottom:297.153333pt;}
.y1b_c00140{bottom:297.414667pt;}
.y1c_c00140{bottom:298.604000pt;}
.y1d_c00140{bottom:299.134667pt;}
.y1e_c00140{bottom:299.329333pt;}
.y18_c00140{bottom:312.306667pt;}
.y17_c00140{bottom:326.508000pt;}
.y16_c00140{bottom:342.890667pt;}
.y15_c00140{bottom:358.594667pt;}
.y14_c00140{bottom:373.344000pt;}
.ya_c00140{bottom:386.882667pt;}
.yb_c00140{bottom:387.057333pt;}
.yc_c00140{bottom:387.184000pt;}
.yd_c00140{bottom:387.980000pt;}
.ye_c00140{bottom:388.086667pt;}
.yf_c00140{bottom:388.192000pt;}
.y10_c00140{bottom:388.477333pt;}
.y11_c00140{bottom:388.678667pt;}
.y12_c00140{bottom:388.856000pt;}
.y13_c00140{bottom:389.650667pt;}
.y9_c00140{bottom:404.597333pt;}
.y8_c00140{bottom:418.732000pt;}
.y7_c00140{bottom:435.344000pt;}
.y6_c00140{bottom:449.652000pt;}
.y5_c00140{bottom:466.818667pt;}
.y4_c00140{bottom:482.145333pt;}
.y3_c00140{bottom:496.756000pt;}
.y2_c00140{bottom:512.461333pt;}
.y1_c00140{bottom:524.869333pt;}
.h10_c00140{height:48.533333pt;}
.ha_c00140{height:51.333333pt;}
.hd_c00140{height:53.200000pt;}
.h7_c00140{height:54.133333pt;}
.h6_c00140{height:55.066667pt;}
.hc_c00140{height:56.000000pt;}
.h8_c00140{height:56.933333pt;}
.h4_c00140{height:57.866667pt;}
.h9_c00140{height:58.800000pt;}
.hf_c00140{height:59.733333pt;}
.hb_c00140{height:60.666667pt;}
.h5_c00140{height:61.600000pt;}
.h3_c00140{height:62.533333pt;}
.h11_c00140{height:63.466667pt;}
.he_c00140{height:69.066667pt;}
.h2_c00140{height:70.933333pt;}
.h0_c00140{height:563.733333pt;}
.h1_c00140{height:564.000000pt;}
.w1_c00140{width:324.000000pt;}
.w0_c00140{width:324.240000pt;}
.x0_c00140{left:0.000000pt;}
.x37_c00140{left:30.478667pt;}
.x3_c00140{left:31.440000pt;}
.x50_c00140{left:37.200000pt;}
.x1f_c00140{left:39.120000pt;}
.x7a_c00140{left:42.141333pt;}
.x38_c00140{left:45.118667pt;}
.x31_c00140{left:47.365333pt;}
.x79_c00140{left:48.965333pt;}
.x20_c00140{left:49.920000pt;}
.x40_c00140{left:51.598667pt;}
.x4_c00140{left:54.480000pt;}
.x32_c00140{left:58.921333pt;}
.x48_c00140{left:60.718667pt;}
.x45_c00140{left:64.558667pt;}
.x6d_c00140{left:65.520000pt;}
.xa_c00140{left:66.960000pt;}
.x5a_c00140{left:69.600000pt;}
.x10_c00140{left:70.800000pt;}
.x26_c00140{left:72.480000pt;}
.x3c_c00140{left:75.118667pt;}
.x57_c00140{left:77.520000pt;}
.x4e_c00140{left:79.048000pt;}
.x19_c00140{left:80.160000pt;}
.x6a_c00140{left:81.120000pt;}
.x5e_c00140{left:83.280000pt;}
.x41_c00140{left:85.918667pt;}
.x46_c00140{left:87.838667pt;}
.x11_c00140{left:90.720000pt;}
.x66_c00140{left:92.880000pt;}
.x3d_c00140{left:93.838667pt;}
.x1a_c00140{left:96.000000pt;}
.x61_c00140{left:98.880000pt;}
.x42_c00140{left:101.518667pt;}
.x39_c00140{left:102.718667pt;}
.x12_c00140{left:108.720000pt;}
.x67_c00140{left:109.920000pt;}
.x71_c00140{left:111.442667pt;}
.x6e_c00140{left:113.280000pt;}
.x51_c00140{left:114.720000pt;}
.x2c_c00140{left:116.880000pt;}
.x3a_c00140{left:118.318667pt;}
.x7b_c00140{left:125.690667pt;}
.x27_c00140{left:126.960000pt;}
.x49_c00140{left:127.918667pt;}
.x52_c00140{left:129.360000pt;}
.x21_c00140{left:130.800000pt;}
.xb_c00140{left:134.880000pt;}
.x58_c00140{left:135.840000pt;}
.x2d_c00140{left:137.520000pt;}
.x5f_c00140{left:139.440000pt;}
.x33_c00140{left:140.989333pt;}
.x3e_c00140{left:142.558667pt;}
.x28_c00140{left:146.640000pt;}
.x5_c00140{left:149.040000pt;}
.x34_c00140{left:150.548000pt;}
.x22_c00140{left:151.440000pt;}
.x1_c00140{left:152.400000pt;}
.x1b_c00140{left:154.560000pt;}
.x13_c00140{left:156.240000pt;}
.x4a_c00140{left:157.438667pt;}
.x62_c00140{left:159.360000pt;}
.x7d_c00140{left:163.864000pt;}
.x47_c00140{left:165.358667pt;}
.x6_c00140{left:166.320000pt;}
.x14_c00140{left:168.240000pt;}
.x72_c00140{left:169.494667pt;}
.x6b_c00140{left:170.400000pt;}
.x1c_c00140{left:172.320000pt;}
.x78_c00140{left:175.076000pt;}
.x35_c00140{left:176.514667pt;}
.x2e_c00140{left:185.040000pt;}
.x7_c00140{left:186.720000pt;}
.x15_c00140{left:188.880000pt;}
.x53_c00140{left:192.480000pt;}
.x63_c00140{left:193.920000pt;}
.x29_c00140{left:195.120000pt;}
.xc_c00140{left:196.800000pt;}
.x75_c00140{left:200.884000pt;}
.x23_c00140{left:202.800000pt;}
.x4b_c00140{left:204.478667pt;}
.x43_c00140{left:206.158667pt;}
.x2a_c00140{left:209.280000pt;}
.x36_c00140{left:210.848000pt;}
.x5c_c00140{left:214.080000pt;}
.xd_c00140{left:215.040000pt;}
.x73_c00140{left:216.757333pt;}
.x6c_c00140{left:218.640000pt;}
.x24_c00140{left:220.800000pt;}
.x6f_c00140{left:221.896000pt;}
.x76_c00140{left:223.924000pt;}
.x5d_c00140{left:225.360000pt;}
.x54_c00140{left:227.520000pt;}
.x64_c00140{left:229.920000pt;}
.x8_c00140{left:231.600000pt;}
.x68_c00140{left:233.280000pt;}
.x4f_c00140{left:235.496000pt;}
.x4c_c00140{left:236.878667pt;}
.x1d_c00140{left:240.720000pt;}
.x65_c00140{left:241.680000pt;}
.x55_c00140{left:242.880000pt;}
.x9_c00140{left:244.320000pt;}
.x77_c00140{left:246.724000pt;}
.x2f_c00140{left:247.920000pt;}
.x4d_c00140{left:248.878667pt;}
.x16_c00140{left:250.080000pt;}
.x7c_c00140{left:251.449333pt;}
.x2_c00140{left:252.480000pt;}
.x3b_c00140{left:253.678667pt;}
.x69_c00140{left:255.600000pt;}
.x1e_c00140{left:256.800000pt;}
.x44_c00140{left:258.958667pt;}
.xe_c00140{left:262.080000pt;}
.x30_c00140{left:265.200000pt;}
.x56_c00140{left:266.160000pt;}
.x60_c00140{left:274.560000pt;}
.x17_c00140{left:276.240000pt;}
.xf_c00140{left:277.680000pt;}
.x70_c00140{left:279.505333pt;}
.x3f_c00140{left:281.998667pt;}
.x2b_c00140{left:283.920000pt;}
.x25_c00140{left:285.120000pt;}
.x18_c00140{left:287.760000pt;}
.x74_c00140{left:289.534667pt;}
.x5b_c00140{left:295.200000pt;}
.x59_c00140{left:296.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00141 {
    display:none;
  }
  .loading-indicator_c00141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00141 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00141 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00141" -> "#page-container .classname_c00141")
 */
.pf_c00141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00141 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00141 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00141 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00141 {overflow:visible;}
  }
}
.c_c00141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00141 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00141:after { /* webkit #35443 */
  content: '';
}
.t_c00141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00141 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00141 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00141 { /* info for Javascript */
  display:none;
}
.l_c00141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00141:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00141 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00141.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00141{transform:matrix(0.013328,0.000213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.013328,0.000213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.013328,0.000213,-0.003999,0.249968,0,0);}
.mb4_c00141{transform:matrix(0.097443,0.001559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.097443,0.001559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.097443,0.001559,-0.003999,0.249968,0,0);}
.ma1_c00141{transform:matrix(0.107891,0.001726,-0.003999,0.249968,0,0);-ms-transform:matrix(0.107891,0.001726,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.107891,0.001726,-0.003999,0.249968,0,0);}
.m97_c00141{transform:matrix(0.129713,0.002075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129713,0.002075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129713,0.002075,-0.003999,0.249968,0,0);}
.md5_c00141{transform:matrix(0.135708,0.002714,-0.004999,0.249950,0,0);-ms-transform:matrix(0.135708,0.002714,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.135708,0.002714,-0.004999,0.249950,0,0);}
.md4_c00141{transform:matrix(0.140887,0.002818,-0.004999,0.249950,0,0);-ms-transform:matrix(0.140887,0.002818,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.140887,0.002818,-0.004999,0.249950,0,0);}
.md3_c00141{transform:matrix(0.141967,0.002839,-0.004999,0.249950,0,0);-ms-transform:matrix(0.141967,0.002839,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.141967,0.002839,-0.004999,0.249950,0,0);}
.ma7_c00141{transform:matrix(0.148501,0.002376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148501,0.002376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148501,0.002376,-0.003999,0.249968,0,0);}
.m2f_c00141{transform:matrix(0.149066,0.002385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149066,0.002385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149066,0.002385,-0.003999,0.249968,0,0);}
.md7_c00141{transform:matrix(0.149160,0.002983,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149160,0.002983,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149160,0.002983,-0.004999,0.249950,0,0);}
.mab_c00141{transform:matrix(0.149231,0.002388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149231,0.002388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149231,0.002388,-0.003999,0.249968,0,0);}
.ma6_c00141{transform:matrix(0.150081,0.002401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150081,0.002401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150081,0.002401,-0.003999,0.249968,0,0);}
.m87_c00141{transform:matrix(0.150601,0.002410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150601,0.002410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150601,0.002410,-0.003999,0.249968,0,0);}
.m19_c00141{transform:matrix(0.151808,0.002581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151808,0.002581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151808,0.002581,-0.004249,0.249964,0,0);}
.m5e_c00141{transform:matrix(0.153380,0.002454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153380,0.002454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153380,0.002454,-0.003999,0.249968,0,0);}
.mae_c00141{transform:matrix(0.154315,0.002469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154315,0.002469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154315,0.002469,-0.003999,0.249968,0,0);}
.m8a_c00141{transform:matrix(0.157395,0.002518,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157395,0.002518,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157395,0.002518,-0.003999,0.249968,0,0);}
.m9b_c00141{transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158225,0.002532,-0.003999,0.249968,0,0);}
.md6_c00141{transform:matrix(0.160078,0.003202,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160078,0.003202,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160078,0.003202,-0.004999,0.249950,0,0);}
.me7_c00141{transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);}
.m98_c00141{transform:matrix(0.161824,0.002589,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161824,0.002589,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161824,0.002589,-0.003999,0.249968,0,0);}
.m43_c00141{transform:matrix(0.162869,0.002606,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162869,0.002606,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162869,0.002606,-0.003999,0.249968,0,0);}
.m5_c00141{transform:matrix(0.162976,0.002771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162976,0.002771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162976,0.002771,-0.004249,0.249964,0,0);}
.ma5_c00141{transform:matrix(0.163859,0.002622,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163859,0.002622,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163859,0.002622,-0.003999,0.249968,0,0);}
.m60_c00141{transform:matrix(0.163919,0.002623,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163919,0.002623,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163919,0.002623,-0.003999,0.249968,0,0);}
.mbe_c00141{transform:matrix(0.164274,0.002628,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164274,0.002628,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164274,0.002628,-0.003999,0.249968,0,0);}
.md8_c00141{transform:matrix(0.166017,0.003320,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166017,0.003320,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166017,0.003320,-0.004999,0.249950,0,0);}
.m7_c00141{transform:matrix(0.166646,0.002833,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166646,0.002833,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166646,0.002833,-0.004249,0.249964,0,0);}
.m64_c00141{transform:matrix(0.168933,0.002703,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168933,0.002703,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168933,0.002703,-0.003999,0.249968,0,0);}
.m7f_c00141{transform:matrix(0.169358,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169358,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169358,0.002710,-0.003999,0.249968,0,0);}
.m85_c00141{transform:matrix(0.169368,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169368,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169368,0.002710,-0.003999,0.249968,0,0);}
.me3_c00141{transform:matrix(0.169826,0.003397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169826,0.003397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169826,0.003397,-0.004999,0.249950,0,0);}
.mef_c00141{transform:matrix(0.170476,0.003410,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170476,0.003410,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170476,0.003410,-0.004999,0.249950,0,0);}
.mdb_c00141{transform:matrix(0.170611,0.003412,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170611,0.003412,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170611,0.003412,-0.004999,0.249950,0,0);}
.mac_c00141{transform:matrix(0.170933,0.002735,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170933,0.002735,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170933,0.002735,-0.003999,0.249968,0,0);}
.m44_c00141{transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);}
.m79_c00141{transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171548,0.002745,-0.003999,0.249968,0,0);}
.m9a_c00141{transform:matrix(0.171753,0.002748,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171753,0.002748,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171753,0.002748,-0.003999,0.249968,0,0);}
.m54_c00141{transform:matrix(0.171813,0.002749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171813,0.002749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171813,0.002749,-0.003999,0.249968,0,0);}
.m88_c00141{transform:matrix(0.172173,0.002755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172173,0.002755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172173,0.002755,-0.003999,0.249968,0,0);}
.maa_c00141{transform:matrix(0.172223,0.002756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172223,0.002756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172223,0.002756,-0.003999,0.249968,0,0);}
.ma9_c00141{transform:matrix(0.172443,0.002759,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172443,0.002759,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172443,0.002759,-0.003999,0.249968,0,0);}
.m77_c00141{transform:matrix(0.172473,0.002760,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172473,0.002760,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172473,0.002760,-0.003999,0.249968,0,0);}
.mc3_c00141{transform:matrix(0.172788,0.002765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172788,0.002765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172788,0.002765,-0.003999,0.249968,0,0);}
.mec_c00141{transform:matrix(0.173055,0.003461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173055,0.003461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173055,0.003461,-0.004999,0.249950,0,0);}
.md9_c00141{transform:matrix(0.173120,0.003462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173120,0.003462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173120,0.003462,-0.004999,0.249950,0,0);}
.m5d_c00141{transform:matrix(0.174233,0.002788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174233,0.002788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174233,0.002788,-0.003999,0.249968,0,0);}
.m48_c00141{transform:matrix(0.174283,0.002789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174283,0.002789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174283,0.002789,-0.003999,0.249968,0,0);}
.m82_c00141{transform:matrix(0.174933,0.002799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174933,0.002799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174933,0.002799,-0.003999,0.249968,0,0);}
.m32_c00141{transform:matrix(0.175113,0.002802,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175113,0.002802,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175113,0.002802,-0.003999,0.249968,0,0);}
.m1b_c00141{transform:matrix(0.175350,0.002981,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175350,0.002981,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175350,0.002981,-0.004249,0.249964,0,0);}
.m57_c00141{transform:matrix(0.175548,0.002809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175548,0.002809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175548,0.002809,-0.003999,0.249968,0,0);}
.mb8_c00141{transform:matrix(0.175593,0.002809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175593,0.002809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175593,0.002809,-0.003999,0.249968,0,0);}
.m71_c00141{transform:matrix(0.176047,0.002817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176047,0.002817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176047,0.002817,-0.003999,0.249968,0,0);}
.m73_c00141{transform:matrix(0.176392,0.002822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176392,0.002822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176392,0.002822,-0.003999,0.249968,0,0);}
.m49_c00141{transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);}
.m1f_c00141{transform:matrix(0.177382,0.002838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177382,0.002838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177382,0.002838,-0.003999,0.249968,0,0);}
.mca_c00141{transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);}
.mb2_c00141{transform:matrix(0.177842,0.002845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177842,0.002845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177842,0.002845,-0.003999,0.249968,0,0);}
.ma_c00141{transform:matrix(0.178054,0.003027,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178054,0.003027,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178054,0.003027,-0.004249,0.249964,0,0);}
.maf_c00141{transform:matrix(0.178707,0.002859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178707,0.002859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178707,0.002859,-0.003999,0.249968,0,0);}
.m47_c00141{transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179172,0.002867,-0.003999,0.249968,0,0);}
.m86_c00141{transform:matrix(0.179257,0.002868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179257,0.002868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179257,0.002868,-0.003999,0.249968,0,0);}
.m3c_c00141{transform:matrix(0.180057,0.002881,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180057,0.002881,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180057,0.002881,-0.003999,0.249968,0,0);}
.me8_c00141{transform:matrix(0.180344,0.003607,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180344,0.003607,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180344,0.003607,-0.004999,0.249950,0,0);}
.me6_c00141{transform:matrix(0.180624,0.003612,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180624,0.003612,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180624,0.003612,-0.004999,0.249950,0,0);}
.mc1_c00141{transform:matrix(0.181197,0.002899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181197,0.002899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181197,0.002899,-0.003999,0.249968,0,0);}
.m2a_c00141{transform:matrix(0.181292,0.002901,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181292,0.002901,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181292,0.002901,-0.003999,0.249968,0,0);}
.mb_c00141{transform:matrix(0.181524,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181524,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181524,0.003086,-0.004249,0.249964,0,0);}
.ma4_c00141{transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);}
.me4_c00141{transform:matrix(0.182104,0.003642,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182104,0.003642,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182104,0.003642,-0.004999,0.249950,0,0);}
.m62_c00141{transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);}
.mcf_c00141{transform:matrix(0.182309,0.003646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182309,0.003646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182309,0.003646,-0.004999,0.249950,0,0);}
.md0_c00141{transform:matrix(0.182633,0.003653,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182633,0.003653,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182633,0.003653,-0.004999,0.249950,0,0);}
.m61_c00141{transform:matrix(0.182782,0.002925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182782,0.002925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182782,0.002925,-0.003999,0.249968,0,0);}
.mcd_c00141{transform:matrix(0.183178,0.003664,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183178,0.003664,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183178,0.003664,-0.004999,0.249950,0,0);}
.m6d_c00141{transform:matrix(0.183257,0.002932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183257,0.002932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183257,0.002932,-0.003999,0.249968,0,0);}
.mf8_c00141{transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183353,0.003667,-0.004999,0.249950,0,0);}
.m29_c00141{transform:matrix(0.183392,0.002934,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183392,0.002934,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183392,0.002934,-0.003999,0.249968,0,0);}
.md2_c00141{transform:matrix(0.183673,0.003673,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183673,0.003673,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183673,0.003673,-0.004999,0.249950,0,0);}
.mb3_c00141{transform:matrix(0.183846,0.002942,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183846,0.002942,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183846,0.002942,-0.003999,0.249968,0,0);}
.m4a_c00141{transform:matrix(0.184786,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184786,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184786,0.002957,-0.003999,0.249968,0,0);}
.m99_c00141{transform:matrix(0.184791,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184791,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184791,0.002957,-0.003999,0.249968,0,0);}
.mc0_c00141{transform:matrix(0.185016,0.002960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185016,0.002960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185016,0.002960,-0.003999,0.249968,0,0);}
.ma8_c00141{transform:matrix(0.185676,0.002971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185676,0.002971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185676,0.002971,-0.003999,0.249968,0,0);}
.m51_c00141{transform:matrix(0.185826,0.002973,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185826,0.002973,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185826,0.002973,-0.003999,0.249968,0,0);}
.m8d_c00141{transform:matrix(0.186456,0.002983,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186456,0.002983,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186456,0.002983,-0.003999,0.249968,0,0);}
.m1c_c00141{transform:matrix(0.186878,0.003177,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186878,0.003177,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186878,0.003177,-0.004249,0.249964,0,0);}
.mbd_c00141{transform:matrix(0.186926,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186926,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186926,0.002991,-0.003999,0.249968,0,0);}
.m31_c00141{transform:matrix(0.187001,0.002992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187001,0.002992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187001,0.002992,-0.003999,0.249968,0,0);}
.m4c_c00141{transform:matrix(0.187111,0.002994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187111,0.002994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187111,0.002994,-0.003999,0.249968,0,0);}
.m7b_c00141{transform:matrix(0.187366,0.002998,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187366,0.002998,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187366,0.002998,-0.003999,0.249968,0,0);}
.m94_c00141{transform:matrix(0.188261,0.003012,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188261,0.003012,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188261,0.003012,-0.003999,0.249968,0,0);}
.m1_c00141{transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188318,0.003201,-0.004249,0.249964,0,0);}
.mba_c00141{transform:matrix(0.188711,0.003019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188711,0.003019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188711,0.003019,-0.003999,0.249968,0,0);}
.m5a_c00141{transform:matrix(0.188726,0.003020,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188726,0.003020,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188726,0.003020,-0.003999,0.249968,0,0);}
.m66_c00141{transform:matrix(0.188816,0.003021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188816,0.003021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188816,0.003021,-0.003999,0.249968,0,0);}
.mf9_c00141{transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);}
.mb1_c00141{transform:matrix(0.189886,0.003038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189886,0.003038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189886,0.003038,-0.003999,0.249968,0,0);}
.m84_c00141{transform:matrix(0.189966,0.003039,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189966,0.003039,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189966,0.003039,-0.003999,0.249968,0,0);}
.m0_c00141{transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);}
.m8b_c00141{transform:matrix(0.191166,0.003059,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191166,0.003059,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191166,0.003059,-0.003999,0.249968,0,0);}
.m69_c00141{transform:matrix(0.191640,0.003066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191640,0.003066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191640,0.003066,-0.003999,0.249968,0,0);}
.m70_c00141{transform:matrix(0.192590,0.003081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192590,0.003081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192590,0.003081,-0.003999,0.249968,0,0);}
.m2e_c00141{transform:matrix(0.192755,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192755,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192755,0.003084,-0.003999,0.249968,0,0);}
.m18_c00141{transform:matrix(0.192827,0.003278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192827,0.003278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192827,0.003278,-0.004249,0.249964,0,0);}
.m8_c00141{transform:matrix(0.192837,0.003278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192837,0.003278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192837,0.003278,-0.004249,0.249964,0,0);}
.m5c_c00141{transform:matrix(0.193125,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193125,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193125,0.003090,-0.003999,0.249968,0,0);}
.m68_c00141{transform:matrix(0.193530,0.003096,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193530,0.003096,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193530,0.003096,-0.003999,0.249968,0,0);}
.me5_c00141{transform:matrix(0.193626,0.003873,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193626,0.003873,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193626,0.003873,-0.004999,0.249950,0,0);}
.m27_c00141{transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193875,0.003102,-0.003999,0.249968,0,0);}
.m83_c00141{transform:matrix(0.193930,0.003103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193930,0.003103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193930,0.003103,-0.003999,0.249968,0,0);}
.m2c_c00141{transform:matrix(0.193955,0.003103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193955,0.003103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193955,0.003103,-0.003999,0.249968,0,0);}
.mdf_c00141{transform:matrix(0.194001,0.003880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194001,0.003880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194001,0.003880,-0.004999,0.249950,0,0);}
.m5f_c00141{transform:matrix(0.194700,0.003115,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194700,0.003115,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194700,0.003115,-0.003999,0.249968,0,0);}
.mad_c00141{transform:matrix(0.195280,0.003124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195280,0.003124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195280,0.003124,-0.003999,0.249968,0,0);}
.m17_c00141{transform:matrix(0.195457,0.003323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195457,0.003323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195457,0.003323,-0.004249,0.249964,0,0);}
.m9_c00141{transform:matrix(0.195577,0.003325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195577,0.003325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195577,0.003325,-0.004249,0.249964,0,0);}
.m89_c00141{transform:matrix(0.195750,0.003132,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195750,0.003132,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195750,0.003132,-0.003999,0.249968,0,0);}
.mdd_c00141{transform:matrix(0.195826,0.003917,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195826,0.003917,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195826,0.003917,-0.004999,0.249950,0,0);}
.m72_c00141{transform:matrix(0.196260,0.003140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196260,0.003140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196260,0.003140,-0.003999,0.249968,0,0);}
.m1a_c00141{transform:matrix(0.196677,0.003344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196677,0.003344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196677,0.003344,-0.004249,0.249964,0,0);}
.m26_c00141{transform:matrix(0.196955,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196955,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196955,0.003151,-0.003999,0.249968,0,0);}
.m1d_c00141{transform:matrix(0.196992,0.003349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196992,0.003349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196992,0.003349,-0.004249,0.249964,0,0);}
.m3a_c00141{transform:matrix(0.197220,0.003156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197220,0.003156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197220,0.003156,-0.003999,0.249968,0,0);}
.m45_c00141{transform:matrix(0.197430,0.003159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197430,0.003159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197430,0.003159,-0.003999,0.249968,0,0);}
.m3_c00141{transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);}
.me1_c00141{transform:matrix(0.198340,0.003967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198340,0.003967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198340,0.003967,-0.004999,0.249950,0,0);}
.mdc_c00141{transform:matrix(0.198735,0.003975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198735,0.003975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198735,0.003975,-0.004999,0.249950,0,0);}
.m22_c00141{transform:matrix(0.198805,0.003181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198805,0.003181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198805,0.003181,-0.003999,0.249968,0,0);}
.m35_c00141{transform:matrix(0.199374,0.003190,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199374,0.003190,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199374,0.003190,-0.003999,0.249968,0,0);}
.mcb_c00141{transform:matrix(0.199495,0.003990,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199495,0.003990,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199495,0.003990,-0.004999,0.249950,0,0);}
.m37_c00141{transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);}
.m21_c00141{transform:matrix(0.200924,0.003215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200924,0.003215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200924,0.003215,-0.003999,0.249968,0,0);}
.m16_c00141{transform:matrix(0.201001,0.003417,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201001,0.003417,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201001,0.003417,-0.004249,0.249964,0,0);}
.m7e_c00141{transform:matrix(0.201164,0.003219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201164,0.003219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201164,0.003219,-0.003999,0.249968,0,0);}
.m25_c00141{transform:matrix(0.201304,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201304,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201304,0.003221,-0.003999,0.249968,0,0);}
.m30_c00141{transform:matrix(0.201734,0.003228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201734,0.003228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201734,0.003228,-0.003999,0.249968,0,0);}
.m12_c00141{transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);}
.me0_c00141{transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);}
.md1_c00141{transform:matrix(0.202564,0.004051,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202564,0.004051,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202564,0.004051,-0.004999,0.249950,0,0);}
.m46_c00141{transform:matrix(0.202619,0.003242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202619,0.003242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202619,0.003242,-0.003999,0.249968,0,0);}
.m6f_c00141{transform:matrix(0.203114,0.003250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203114,0.003250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203114,0.003250,-0.003999,0.249968,0,0);}
.m96_c00141{transform:matrix(0.204234,0.003268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204234,0.003268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204234,0.003268,-0.003999,0.249968,0,0);}
.mc2_c00141{transform:matrix(0.204434,0.003271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204434,0.003271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204434,0.003271,-0.003999,0.249968,0,0);}
.m28_c00141{transform:matrix(0.204529,0.003272,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204529,0.003272,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204529,0.003272,-0.003999,0.249968,0,0);}
.mb9_c00141{transform:matrix(0.204869,0.003278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204869,0.003278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204869,0.003278,-0.003999,0.249968,0,0);}
.m10_c00141{transform:matrix(0.205425,0.003492,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205425,0.003492,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205425,0.003492,-0.004249,0.249964,0,0);}
.m53_c00141{transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);}
.m33_c00141{transform:matrix(0.205799,0.003293,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205799,0.003293,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205799,0.003293,-0.003999,0.249968,0,0);}
.mc5_c00141{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.mc7_c00141{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.206405,0.003509,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206405,0.003509,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206405,0.003509,-0.004249,0.249964,0,0);}
.mb0_c00141{transform:matrix(0.206544,0.003305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206544,0.003305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206544,0.003305,-0.003999,0.249968,0,0);}
.m58_c00141{transform:matrix(0.207238,0.003316,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207238,0.003316,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207238,0.003316,-0.003999,0.249968,0,0);}
.m8e_c00141{transform:matrix(0.207608,0.003322,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207608,0.003322,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207608,0.003322,-0.003999,0.249968,0,0);}
.mf4_c00141{transform:matrix(0.208158,0.004163,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208158,0.004163,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208158,0.004163,-0.004999,0.249950,0,0);}
.m8f_c00141{transform:matrix(0.208308,0.003333,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208308,0.003333,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208308,0.003333,-0.003999,0.249968,0,0);}
.m90_c00141{transform:matrix(0.209018,0.003344,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209018,0.003344,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209018,0.003344,-0.003999,0.249968,0,0);}
.m3e_c00141{transform:matrix(0.209138,0.003346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209138,0.003346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209138,0.003346,-0.003999,0.249968,0,0);}
.m34_c00141{transform:matrix(0.209373,0.003350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209373,0.003350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209373,0.003350,-0.003999,0.249968,0,0);}
.m63_c00141{transform:matrix(0.209583,0.003353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209583,0.003353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209583,0.003353,-0.003999,0.249968,0,0);}
.m67_c00141{transform:matrix(0.210728,0.003372,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210728,0.003372,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210728,0.003372,-0.003999,0.249968,0,0);}
.m4e_c00141{transform:matrix(0.210813,0.003373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210813,0.003373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210813,0.003373,-0.003999,0.249968,0,0);}
.m6e_c00141{transform:matrix(0.211653,0.003386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211653,0.003386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211653,0.003386,-0.003999,0.249968,0,0);}
.m1e_c00141{transform:matrix(0.211763,0.003388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211763,0.003388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211763,0.003388,-0.003999,0.249968,0,0);}
.m50_c00141{transform:matrix(0.211923,0.003391,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211923,0.003391,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211923,0.003391,-0.003999,0.249968,0,0);}
.mc8_c00141{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.mde_c00141{transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);}
.m2_c00141{transform:matrix(0.212459,0.003612,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212459,0.003612,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212459,0.003612,-0.004249,0.249964,0,0);}
.m91_c00141{transform:matrix(0.212803,0.003405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212803,0.003405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212803,0.003405,-0.003999,0.249968,0,0);}
.mc4_c00141{transform:matrix(0.213053,0.003409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213053,0.003409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213053,0.003409,-0.003999,0.249968,0,0);}
.mb6_c00141{transform:matrix(0.213093,0.003409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213093,0.003409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213093,0.003409,-0.003999,0.249968,0,0);}
.m4b_c00141{transform:matrix(0.213123,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213123,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213123,0.003410,-0.003999,0.249968,0,0);}
.m81_c00141{transform:matrix(0.213148,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213148,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213148,0.003410,-0.003999,0.249968,0,0);}
.m41_c00141{transform:matrix(0.213313,0.003413,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213313,0.003413,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213313,0.003413,-0.003999,0.249968,0,0);}
.m15_c00141{transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);}
.m6b_c00141{transform:matrix(0.213348,0.003414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213348,0.003414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213348,0.003414,-0.003999,0.249968,0,0);}
.mee_c00141{transform:matrix(0.213752,0.004275,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213752,0.004275,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213752,0.004275,-0.004999,0.249950,0,0);}
.mce_c00141{transform:matrix(0.213962,0.004279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213962,0.004279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213962,0.004279,-0.004999,0.249950,0,0);}
.mb5_c00141{transform:matrix(0.214403,0.003430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214403,0.003430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214403,0.003430,-0.003999,0.249968,0,0);}
.m78_c00141{transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);}
.m52_c00141{transform:matrix(0.214733,0.003436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214733,0.003436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214733,0.003436,-0.003999,0.249968,0,0);}
.m74_c00141{transform:matrix(0.215152,0.003442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215152,0.003442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215152,0.003442,-0.003999,0.249968,0,0);}
.m40_c00141{transform:matrix(0.215972,0.003456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215972,0.003456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215972,0.003456,-0.003999,0.249968,0,0);}
.m7c_c00141{transform:matrix(0.216112,0.003458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216112,0.003458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216112,0.003458,-0.003999,0.249968,0,0);}
.m36_c00141{transform:matrix(0.216357,0.003462,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216357,0.003462,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216357,0.003462,-0.003999,0.249968,0,0);}
.m4f_c00141{transform:matrix(0.217022,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217022,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217022,0.003472,-0.003999,0.249968,0,0);}
.m2b_c00141{transform:matrix(0.218152,0.003490,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218152,0.003490,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218152,0.003490,-0.003999,0.249968,0,0);}
.m4_c00141{transform:matrix(0.218458,0.003714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218458,0.003714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218458,0.003714,-0.004249,0.249964,0,0);}
.m3d_c00141{transform:matrix(0.218862,0.003502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218862,0.003502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218862,0.003502,-0.003999,0.249968,0,0);}
.m38_c00141{transform:matrix(0.218977,0.003504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218977,0.003504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218977,0.003504,-0.003999,0.249968,0,0);}
.m3f_c00141{transform:matrix(0.219302,0.003509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219302,0.003509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219302,0.003509,-0.003999,0.249968,0,0);}
.m6c_c00141{transform:matrix(0.219387,0.003510,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219387,0.003510,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219387,0.003510,-0.003999,0.249968,0,0);}
.m56_c00141{transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);}
.m65_c00141{transform:matrix(0.220112,0.003522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220112,0.003522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220112,0.003522,-0.003999,0.249968,0,0);}
.m39_c00141{transform:matrix(0.220232,0.003524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220232,0.003524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220232,0.003524,-0.003999,0.249968,0,0);}
.m3b_c00141{transform:matrix(0.220362,0.003526,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220362,0.003526,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220362,0.003526,-0.003999,0.249968,0,0);}
.m9c_c00141{transform:matrix(0.220432,0.003527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220432,0.003527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220432,0.003527,-0.003999,0.249968,0,0);}
.m2d_c00141{transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);}
.mc6_c00141{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.222493,0.003782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222493,0.003782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222493,0.003782,-0.004249,0.249964,0,0);}
.m7a_c00141{transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);}
.m6_c00141{transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);}
.m80_c00141{transform:matrix(0.225331,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225331,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225331,0.003605,-0.003999,0.249968,0,0);}
.m59_c00141{transform:matrix(0.226001,0.003616,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226001,0.003616,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226001,0.003616,-0.003999,0.249968,0,0);}
.m20_c00141{transform:matrix(0.226281,0.003620,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226281,0.003620,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226281,0.003620,-0.003999,0.249968,0,0);}
.mf3_c00141{transform:matrix(0.226720,0.004534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226720,0.004534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226720,0.004534,-0.004999,0.249950,0,0);}
.mf0_c00141{transform:matrix(0.227460,0.004549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227460,0.004549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227460,0.004549,-0.004999,0.249950,0,0);}
.mc9_c00141{transform:matrix(0.227569,0.004551,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227569,0.004551,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227569,0.004551,-0.004999,0.249950,0,0);}
.m13_c00141{transform:matrix(0.228562,0.003886,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228562,0.003886,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228562,0.003886,-0.004249,0.249964,0,0);}
.m4d_c00141{transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229646,0.003674,-0.003999,0.249968,0,0);}
.m5b_c00141{transform:matrix(0.230001,0.003680,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230001,0.003680,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230001,0.003680,-0.003999,0.249968,0,0);}
.m9f_c00141{transform:matrix(0.231820,0.003709,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231820,0.003709,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231820,0.003709,-0.003999,0.249968,0,0);}
.m8c_c00141{transform:matrix(0.233470,0.003736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233470,0.003736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233470,0.003736,-0.003999,0.249968,0,0);}
.m6a_c00141{transform:matrix(0.234720,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234720,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234720,0.003756,-0.003999,0.249968,0,0);}
.m55_c00141{transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);}
.m76_c00141{transform:matrix(0.235055,0.003761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235055,0.003761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235055,0.003761,-0.003999,0.249968,0,0);}
.mf7_c00141{transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);}
.m11_c00141{transform:matrix(0.236201,0.004015,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236201,0.004015,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236201,0.004015,-0.004249,0.249964,0,0);}
.mcc_c00141{transform:matrix(0.236358,0.004727,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236358,0.004727,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236358,0.004727,-0.004999,0.249950,0,0);}
.m75_c00141{transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);}
.m7d_c00141{transform:matrix(0.238719,0.003820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238719,0.003820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238719,0.003820,-0.003999,0.249968,0,0);}
.mbb_c00141{transform:matrix(0.238884,0.003822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238884,0.003822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238884,0.003822,-0.003999,0.249968,0,0);}
.me2_c00141{transform:matrix(0.239617,0.004792,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239617,0.004792,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239617,0.004792,-0.004999,0.249950,0,0);}
.med_c00141{transform:matrix(0.239732,0.004795,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239732,0.004795,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239732,0.004795,-0.004999,0.249950,0,0);}
.mf1_c00141{transform:matrix(0.241447,0.004829,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241447,0.004829,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241447,0.004829,-0.004999,0.249950,0,0);}
.mbf_c00141{transform:matrix(0.242919,0.003887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242919,0.003887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242919,0.003887,-0.003999,0.249968,0,0);}
.md_c00141{transform:matrix(0.248539,0.004225,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248539,0.004225,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248539,0.004225,-0.004249,0.249964,0,0);}
.m42_c00141{transform:matrix(0.248578,0.003977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248578,0.003977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248578,0.003977,-0.003999,0.249968,0,0);}
.mf2_c00141{transform:matrix(0.249280,0.004986,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249280,0.004986,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249280,0.004986,-0.004999,0.249950,0,0);}
.me9_c00141{transform:matrix(0.249580,0.004992,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249580,0.004992,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249580,0.004992,-0.004999,0.249950,0,0);}
.ma3_c00141{transform:matrix(0.250493,0.004008,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250493,0.004008,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250493,0.004008,-0.003999,0.249968,0,0);}
.m93_c00141{transform:matrix(0.255732,0.004092,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255732,0.004092,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255732,0.004092,-0.003999,0.249968,0,0);}
.ma2_c00141{transform:matrix(0.257462,0.004119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257462,0.004119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257462,0.004119,-0.003999,0.249968,0,0);}
.mb7_c00141{transform:matrix(0.257842,0.004125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257842,0.004125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257842,0.004125,-0.003999,0.249968,0,0);}
.m95_c00141{transform:matrix(0.260037,0.004161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260037,0.004161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260037,0.004161,-0.003999,0.249968,0,0);}
.ma0_c00141{transform:matrix(0.262721,0.004204,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262721,0.004204,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262721,0.004204,-0.003999,0.249968,0,0);}
.me_c00141{transform:matrix(0.265692,0.004517,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265692,0.004517,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265692,0.004517,-0.004249,0.249964,0,0);}
.m9e_c00141{transform:matrix(0.268391,0.004294,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268391,0.004294,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268391,0.004294,-0.003999,0.249968,0,0);}
.m9d_c00141{transform:matrix(0.274535,0.004393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274535,0.004393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274535,0.004393,-0.003999,0.249968,0,0);}
.m92_c00141{transform:matrix(0.278199,0.004451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278199,0.004451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278199,0.004451,-0.003999,0.249968,0,0);}
.meb_c00141{transform:matrix(0.287373,0.005747,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287373,0.005747,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287373,0.005747,-0.004999,0.249950,0,0);}
.mea_c00141{transform:matrix(0.299505,0.005990,-0.004999,0.249950,0,0);-ms-transform:matrix(0.299505,0.005990,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.299505,0.005990,-0.004999,0.249950,0,0);}
.mda_c00141{transform:matrix(0.305339,0.006107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.305339,0.006107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.305339,0.006107,-0.004999,0.249950,0,0);}
.mc_c00141{transform:matrix(0.305921,0.005201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.305921,0.005201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.305921,0.005201,-0.004249,0.249964,0,0);}
.mbc_c00141{transform:matrix(0.341591,0.005465,-0.003999,0.249968,0,0);-ms-transform:matrix(0.341591,0.005465,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.341591,0.005465,-0.003999,0.249968,0,0);}
.mf6_c00141{transform:matrix(0.342507,0.006850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.342507,0.006850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.342507,0.006850,-0.004999,0.249950,0,0);}
.m24_c00141{transform:matrix(0.369763,0.005916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369763,0.005916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369763,0.005916,-0.003999,0.249968,0,0);}
.mf5_c00141{transform:matrix(0.628804,0.012576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.628804,0.012576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.628804,0.012576,-0.004999,0.249950,0,0);}
.mfa_c00141{transform:matrix(2.352170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.352170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.352170,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
.fc0_c00141{color:transparent;}
.fs16_c00141{font-size:22.050000px;}
.fsd_c00141{font-size:49.356316px;}
.fsf_c00141{font-size:56.700000px;}
.fs8_c00141{font-size:60.907795px;}
.fs14_c00141{font-size:60.912179px;}
.fs7_c00141{font-size:61.957929px;}
.fs3_c00141{font-size:63.009103px;}
.fs5_c00141{font-size:64.058198px;}
.fs10_c00141{font-size:64.062809px;}
.fs9_c00141{font-size:65.108332px;}
.fs1_c00141{font-size:65.109406px;}
.fs12_c00141{font-size:65.113019px;}
.fs0_c00141{font-size:66.150000px;}
.fsb_c00141{font-size:67.208601px;}
.fs2_c00141{font-size:67.209710px;}
.fsa_c00141{font-size:69.308870px;}
.fsc_c00141{font-size:70.359004px;}
.fs4_c00141{font-size:70.360165px;}
.fse_c00141{font-size:71.409139px;}
.fs13_c00141{font-size:71.414279px;}
.fs15_c00141{font-size:72.464489px;}
.fs6_c00141{font-size:73.509407px;}
.fs11_c00141{font-size:76.665328px;}
.y0_c00141{bottom:0.000000px;}
.yf9_c00141{bottom:32.669910px;}
.yf8_c00141{bottom:33.180330px;}
.yf7_c00141{bottom:33.419100px;}
.yf6_c00141{bottom:34.244340px;}
.yf5_c00141{bottom:35.071140px;}
.yf4_c00141{bottom:35.498910px;}
.yf3_c00141{bottom:36.830220px;}
.yf2_c00141{bottom:37.248060px;}
.yf0_c00141{bottom:51.479640px;}
.yf1_c00141{bottom:51.479730px;}
.yef_c00141{bottom:51.480390px;}
.yee_c00141{bottom:51.481110px;}
.yec_c00141{bottom:51.481680px;}
.yed_c00141{bottom:51.481800px;}
.yeb_c00141{bottom:51.481950px;}
.yea_c00141{bottom:68.514480px;}
.ye9_c00141{bottom:69.319800px;}
.ye8_c00141{bottom:69.634080px;}
.ye7_c00141{bottom:70.149240px;}
.ye6_c00141{bottom:71.101140px;}
.ye5_c00141{bottom:71.469000px;}
.ye4_c00141{bottom:72.242190px;}
.ye3_c00141{bottom:72.892860px;}
.ye2_c00141{bottom:86.300370px;}
.ye1_c00141{bottom:86.889990px;}
.ye0_c00141{bottom:87.158070px;}
.ydf_c00141{bottom:87.559620px;}
.yde_c00141{bottom:88.392600px;}
.ydd_c00141{bottom:89.224890px;}
.ydc_c00141{bottom:89.488770px;}
.ydb_c00141{bottom:89.911980px;}
.yda_c00141{bottom:102.977250px;}
.yd9_c00141{bottom:104.002950px;}
.yd8_c00141{bottom:104.497920px;}
.yd7_c00141{bottom:105.893100px;}
.yd6_c00141{bottom:106.307940px;}
.yd5_c00141{bottom:107.141430px;}
.yd4_c00141{bottom:107.679060px;}
.yd3_c00141{bottom:108.003000px;}
.yd2_c00141{bottom:120.997140px;}
.yd1_c00141{bottom:121.391370px;}
.yd0_c00141{bottom:121.859460px;}
.ycf_c00141{bottom:122.502150px;}
.yce_c00141{bottom:123.239100px;}
.ycd_c00141{bottom:123.498030px;}
.ycc_c00141{bottom:124.362390px;}
.ycb_c00141{bottom:124.686330px;}
.yca_c00141{bottom:125.556000px;}
.yfb_c00141{bottom:132.030000px;}
.yc8_c00141{bottom:138.436632px;}
.yc7_c00141{bottom:139.150008px;}
.yc6_c00141{bottom:139.338816px;}
.yc5_c00141{bottom:140.163912px;}
.yc4_c00141{bottom:140.927508px;}
.yc3_c00141{bottom:141.158556px;}
.yc2_c00141{bottom:141.415020px;}
.yc1_c00141{bottom:142.096080px;}
.yc0_c00141{bottom:142.518600px;}
.ybf_c00141{bottom:156.556752px;}
.ybe_c00141{bottom:156.886116px;}
.ybd_c00141{bottom:157.590912px;}
.ybc_c00141{bottom:157.815156px;}
.ybb_c00141{bottom:158.180628px;}
.yba_c00141{bottom:159.276180px;}
.yb9_c00141{bottom:160.230624px;}
.yb8_c00141{bottom:160.337508px;}
.yb7_c00141{bottom:175.332720px;}
.yb6_c00141{bottom:175.788468px;}
.yb5_c00141{bottom:176.204964px;}
.yb4_c00141{bottom:176.774172px;}
.yb3_c00141{bottom:177.084804px;}
.yb2_c00141{bottom:177.696084px;}
.yb1_c00141{bottom:177.885240px;}
.yb0_c00141{bottom:178.161288px;}
.yaf_c00141{bottom:191.048760px;}
.yae_c00141{bottom:191.404644px;}
.yad_c00141{bottom:192.450060px;}
.yac_c00141{bottom:193.623840px;}
.yab_c00141{bottom:194.048076px;}
.yaa_c00141{bottom:194.580576px;}
.ya9_c00141{bottom:195.049452px;}
.ya8_c00141{bottom:196.150620px;}
.ya7_c00141{bottom:196.798284px;}
.ya6_c00141{bottom:209.736156px;}
.ya5_c00141{bottom:210.443724px;}
.ya4_c00141{bottom:210.617808px;}
.ya3_c00141{bottom:212.106024px;}
.ya2_c00141{bottom:212.872152px;}
.ya1_c00141{bottom:213.305976px;}
.ya0_c00141{bottom:214.618356px;}
.y9f_c00141{bottom:226.124688px;}
.y9e_c00141{bottom:226.554840px;}
.y9d_c00141{bottom:227.296272px;}
.y9c_c00141{bottom:229.028508px;}
.y9b_c00141{bottom:229.465032px;}
.y9a_c00141{bottom:230.103132px;}
.y99_c00141{bottom:231.630036px;}
.yc9_c00141{bottom:244.504500px;}
.y98_c00141{bottom:247.032996px;}
.y97_c00141{bottom:247.480848px;}
.y96_c00141{bottom:247.923768px;}
.y95_c00141{bottom:249.338052px;}
.y94_c00141{bottom:249.723300px;}
.y93_c00141{bottom:261.920484px;}
.y92_c00141{bottom:263.674908px;}
.y91_c00141{bottom:264.385656px;}
.y90_c00141{bottom:265.732416px;}
.y8f_c00141{bottom:266.733648px;}
.y8e_c00141{bottom:279.952188px;}
.y8d_c00141{bottom:280.227768px;}
.y8c_c00141{bottom:280.501956px;}
.y8b_c00141{bottom:281.355216px;}
.y8a_c00141{bottom:281.902188px;}
.y89_c00141{bottom:282.521676px;}
.y88_c00141{bottom:282.837780px;}
.y87_c00141{bottom:283.052652px;}
.y86_c00141{bottom:283.796544px;}
.y85_c00141{bottom:284.283108px;}
.y84_c00141{bottom:296.366304px;}
.y83_c00141{bottom:297.386520px;}
.y82_c00141{bottom:297.784260px;}
.y81_c00141{bottom:298.362072px;}
.y80_c00141{bottom:298.664040px;}
.y7f_c00141{bottom:300.129084px;}
.y7e_c00141{bottom:300.661968px;}
.y7d_c00141{bottom:301.565064px;}
.y7c_c00141{bottom:314.616624px;}
.y7b_c00141{bottom:315.044772px;}
.y7a_c00141{bottom:315.896292px;}
.y79_c00141{bottom:316.739376px;}
.y78_c00141{bottom:316.956528px;}
.y77_c00141{bottom:318.111876px;}
.y76_c00141{bottom:318.598116px;}
.y75_c00141{bottom:318.845424px;}
.y74_c00141{bottom:332.386524px;}
.y73_c00141{bottom:333.099372px;}
.y72_c00141{bottom:333.551820px;}
.y71_c00141{bottom:334.523892px;}
.y70_c00141{bottom:335.592108px;}
.y6f_c00141{bottom:336.128340px;}
.yfa_c00141{bottom:343.170000px;}
.y6e_c00141{bottom:349.468032px;}
.y6d_c00141{bottom:350.028072px;}
.y6c_c00141{bottom:350.954952px;}
.y6b_c00141{bottom:351.671520px;}
.y6a_c00141{bottom:352.222416px;}
.y69_c00141{bottom:353.095560px;}
.y68_c00141{bottom:353.421876px;}
.y67_c00141{bottom:354.219792px;}
.y66_c00141{bottom:366.374616px;}
.y65_c00141{bottom:367.284840px;}
.y64_c00141{bottom:367.670436px;}
.y63_c00141{bottom:369.050376px;}
.y62_c00141{bottom:369.586416px;}
.y61_c00141{bottom:370.506780px;}
.y60_c00141{bottom:370.905108px;}
.y5f_c00141{bottom:371.773608px;}
.y5e_c00141{bottom:384.146352px;}
.y5d_c00141{bottom:384.374472px;}
.y5c_c00141{bottom:384.879048px;}
.y5b_c00141{bottom:385.501356px;}
.y5a_c00141{bottom:386.508084px;}
.y59_c00141{bottom:387.006936px;}
.y58_c00141{bottom:387.261024px;}
.y57_c00141{bottom:388.213476px;}
.y56_c00141{bottom:388.559256px;}
.y55_c00141{bottom:389.130708px;}
.y54_c00141{bottom:390.137244px;}
.y53_c00141{bottom:402.134772px;}
.y52_c00141{bottom:403.130448px;}
.y51_c00141{bottom:404.973384px;}
.y50_c00141{bottom:406.365936px;}
.y4f_c00141{bottom:406.645500px;}
.y4e_c00141{bottom:407.689752px;}
.y4d_c00141{bottom:419.677692px;}
.y4c_c00141{bottom:420.346512px;}
.y4b_c00141{bottom:421.245384px;}
.y4a_c00141{bottom:421.763940px;}
.y49_c00141{bottom:422.536512px;}
.y48_c00141{bottom:423.160740px;}
.y47_c00141{bottom:424.263888px;}
.y46_c00141{bottom:424.669344px;}
.y45_c00141{bottom:425.239608px;}
.y44_c00141{bottom:437.254392px;}
.y43_c00141{bottom:437.767524px;}
.y42_c00141{bottom:439.158996px;}
.y41_c00141{bottom:441.122280px;}
.y40_c00141{bottom:441.589008px;}
.y3f_c00141{bottom:442.797240px;}
.y3e_c00141{bottom:453.297648px;}
.y3d_c00141{bottom:453.523392px;}
.y3c_c00141{bottom:454.510596px;}
.y3b_c00141{bottom:454.840032px;}
.y3a_c00141{bottom:455.136024px;}
.y39_c00141{bottom:456.247908px;}
.y38_c00141{bottom:456.513264px;}
.y37_c00141{bottom:458.075268px;}
.y36_c00141{bottom:459.586236px;}
.y35_c00141{bottom:460.077960px;}
.y34_c00141{bottom:472.111032px;}
.y33_c00141{bottom:473.322888px;}
.y32_c00141{bottom:474.484896px;}
.y31_c00141{bottom:474.907680px;}
.y30_c00141{bottom:475.209204px;}
.y2f_c00141{bottom:476.994060px;}
.y2e_c00141{bottom:477.359868px;}
.y2d_c00141{bottom:489.526476px;}
.y2c_c00141{bottom:490.009056px;}
.y2b_c00141{bottom:491.018856px;}
.y2a_c00141{bottom:491.691900px;}
.y29_c00141{bottom:492.497760px;}
.y28_c00141{bottom:492.877536px;}
.y27_c00141{bottom:493.663044px;}
.y26_c00141{bottom:494.371848px;}
.y25_c00141{bottom:505.334112px;}
.y24_c00141{bottom:507.475344px;}
.y23_c00141{bottom:507.799440px;}
.y22_c00141{bottom:508.525464px;}
.y21_c00141{bottom:508.784688px;}
.y20_c00141{bottom:510.033000px;}
.y1f_c00141{bottom:523.892382px;}
.y1e_c00141{bottom:524.962258px;}
.y1d_c00141{bottom:525.553435px;}
.y1c_c00141{bottom:526.555774px;}
.y1b_c00141{bottom:527.052711px;}
.y1a_c00141{bottom:527.281465px;}
.y19_c00141{bottom:528.114937px;}
.y18_c00141{bottom:541.742571px;}
.y17_c00141{bottom:541.899897px;}
.y16_c00141{bottom:542.307434px;}
.y15_c00141{bottom:542.823342px;}
.y14_c00141{bottom:543.044808px;}
.y13_c00141{bottom:543.609084px;}
.y12_c00141{bottom:544.378569px;}
.y11_c00141{bottom:544.693123px;}
.y10_c00141{bottom:545.157830px;}
.yf_c00141{bottom:545.396194px;}
.ye_c00141{bottom:558.889508px;}
.yd_c00141{bottom:559.395146px;}
.yc_c00141{bottom:560.728715px;}
.yb_c00141{bottom:560.951266px;}
.ya_c00141{bottom:562.117442px;}
.y9_c00141{bottom:563.218641px;}
.y8_c00141{bottom:576.592853px;}
.y7_c00141{bottom:577.112236px;}
.y6_c00141{bottom:577.879047px;}
.y5_c00141{bottom:578.548702px;}
.y4_c00141{bottom:578.870665px;}
.y3_c00141{bottom:580.830468px;}
.y2_c00141{bottom:581.311500px;}
.y1_c00141{bottom:595.614000px;}
.h18_c00141{height:22.050000px;}
.hf_c00141{height:49.356316px;}
.h11_c00141{height:56.700000px;}
.ha_c00141{height:60.907795px;}
.h16_c00141{height:60.912179px;}
.h9_c00141{height:61.957929px;}
.h5_c00141{height:63.009103px;}
.h7_c00141{height:64.058198px;}
.h12_c00141{height:64.062809px;}
.hb_c00141{height:65.108332px;}
.h3_c00141{height:65.109406px;}
.h14_c00141{height:65.113019px;}
.h2_c00141{height:66.150000px;}
.hd_c00141{height:67.208601px;}
.h4_c00141{height:67.209710px;}
.hc_c00141{height:69.308870px;}
.he_c00141{height:70.359004px;}
.h6_c00141{height:70.360165px;}
.h10_c00141{height:71.409139px;}
.h15_c00141{height:71.414279px;}
.h17_c00141{height:72.464489px;}
.h8_c00141{height:73.509407px;}
.h13_c00141{height:76.665328px;}
.h0_c00141{height:633.690000px;}
.h1_c00141{height:633.750000px;}
.w1_c00141{width:383.250000px;}
.w0_c00141{width:383.400000px;}
.x0_c00141{left:0.000000px;}
.x69_c00141{left:37.756260px;}
.x2_c00141{left:42.531000px;}
.x1d_c00141{left:43.789500px;}
.x3b_c00141{left:44.825424px;}
.x6a_c00141{left:46.030668px;}
.x65_c00141{left:48.214044px;}
.x22_c00141{left:51.863052px;}
.x27_c00141{left:59.104932px;}
.xe_c00141{left:61.108433px;}
.x76_c00141{left:62.764500px;}
.x2c_c00141{left:64.754424px;}
.x7e_c00141{left:67.007310px;}
.x3_c00141{left:70.827000px;}
.x37_c00141{left:72.909984px;}
.x61_c00141{left:74.769096px;}
.x66_c00141{left:75.782184px;}
.x48_c00141{left:77.844876px;}
.x77_c00141{left:78.961500px;}
.x23_c00141{left:89.130252px;}
.x33_c00141{left:91.206312px;}
.x38_c00141{left:93.187188px;}
.x17_c00141{left:94.306214px;}
.xf_c00141{left:96.828855px;}
.x54_c00141{left:101.307912px;}
.x78_c00141{left:105.843000px;}
.x18_c00141{left:108.644969px;}
.x34_c00141{left:109.874124px;}
.x40_c00141{left:110.994852px;}
.x9_c00141{left:115.376341px;}
.x4e_c00141{left:117.226692px;}
.x5a_c00141{left:118.353852px;}
.x3c_c00141{left:119.912400px;}
.x10_c00141{left:121.069013px;}
.x58_c00141{left:123.569244px;}
.x62_c00141{left:124.837296px;}
.x2d_c00141{left:127.681860px;}
.x7d_c00141{left:129.077040px;}
.x24_c00141{left:130.441260px;}
.x5f_c00141{left:132.924456px;}
.x28_c00141{left:136.712244px;}
.x1e_c00141{left:138.010500px;}
.x19_c00141{left:139.730004px;}
.x6e_c00141{left:141.535536px;}
.x59_c00141{left:142.812084px;}
.x49_c00141{left:144.608376px;}
.x63_c00141{left:146.171256px;}
.x39_c00141{left:148.349160px;}
.x25_c00141{left:150.426300px;}
.x7b_c00141{left:154.254030px;}
.x67_c00141{left:155.723340px;}
.x6f_c00141{left:158.039064px;}
.x41_c00141{left:159.421524px;}
.x44_c00141{left:162.144468px;}
.x73_c00141{left:163.899000px;}
.x29_c00141{left:168.196716px;}
.x5b_c00141{left:169.576272px;}
.x4c_c00141{left:170.825580px;}
.x55_c00141{left:176.103012px;}
.x1_c00141{left:177.390000px;}
.x11_c00141{left:180.278042px;}
.x3d_c00141{left:181.734456px;}
.x1f_c00141{left:183.387000px;}
.x4_c00141{left:186.109500px;}
.x35_c00141{left:188.411820px;}
.x4f_c00141{left:190.506012px;}
.xa_c00141{left:193.153993px;}
.x45_c00141{left:194.512440px;}
.x74_c00141{left:200.746500px;}
.x1a_c00141{left:202.398075px;}
.x20_c00141{left:203.643000px;}
.x5_c00141{left:205.048500px;}
.xb_c00141{left:208.010503px;}
.x70_c00141{left:212.609316px;}
.x7c_c00141{left:213.760170px;}
.x56_c00141{left:215.554740px;}
.x3e_c00141{left:217.634100px;}
.x2a_c00141{left:218.691552px;}
.x12_c00141{left:223.709000px;}
.x26_c00141{left:228.229056px;}
.x6b_c00141{left:231.787572px;}
.x4a_c00141{left:233.640876px;}
.x72_c00141{left:235.170000px;}
.x46_c00141{left:236.672268px;}
.x79_c00141{left:238.018500px;}
.x1b_c00141{left:239.379713px;}
.x13_c00141{left:240.708147px;}
.x64_c00141{left:243.037968px;}
.x6_c00141{left:244.440000px;}
.x60_c00141{left:245.688756px;}
.x6c_c00141{left:249.084912px;}
.x2e_c00141{left:250.150188px;}
.x5c_c00141{left:252.053172px;}
.x50_c00141{left:254.409432px;}
.x75_c00141{left:256.285500px;}
.x42_c00141{left:260.321700px;}
.x2f_c00141{left:262.460604px;}
.x36_c00141{left:264.594852px;}
.x51_c00141{left:267.771768px;}
.x2b_c00141{left:271.364148px;}
.x30_c00141{left:276.204852px;}
.x4b_c00141{left:278.193876px;}
.x14_c00141{left:280.411350px;}
.x7f_c00141{left:281.614650px;}
.x52_c00141{left:283.877004px;}
.x68_c00141{left:285.319272px;}
.x5d_c00141{left:287.327340px;}
.x7_c00141{left:289.546500px;}
.x47_c00141{left:291.226404px;}
.x3f_c00141{left:295.161384px;}
.xc_c00141{left:296.870513px;}
.x4d_c00141{left:298.281120px;}
.x53_c00141{left:300.069240px;}
.x6d_c00141{left:303.356028px;}
.x1c_c00141{left:306.285360px;}
.x5e_c00141{left:307.835208px;}
.x15_c00141{left:311.797992px;}
.x57_c00141{left:313.015620px;}
.x7a_c00141{left:314.052000px;}
.x31_c00141{left:317.368596px;}
.x8_c00141{left:320.098500px;}
.x3a_c00141{left:322.528524px;}
.x16_c00141{left:323.876808px;}
.x32_c00141{left:326.788896px;}
.x43_c00141{left:328.463412px;}
.xd_c00141{left:330.585660px;}
.x71_c00141{left:335.943252px;}
.x21_c00141{left:337.470000px;}
.x80_c00141{left:375.840000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.fs16_c00141{font-size:19.600000pt;}
.fsd_c00141{font-size:43.872281pt;}
.fsf_c00141{font-size:50.400000pt;}
.fs8_c00141{font-size:54.140262pt;}
.fs14_c00141{font-size:54.144159pt;}
.fs7_c00141{font-size:55.073715pt;}
.fs3_c00141{font-size:56.008091pt;}
.fs5_c00141{font-size:56.940620pt;}
.fs10_c00141{font-size:56.944719pt;}
.fs9_c00141{font-size:57.874073pt;}
.fs1_c00141{font-size:57.875028pt;}
.fs12_c00141{font-size:57.878239pt;}
.fs0_c00141{font-size:58.800000pt;}
.fsb_c00141{font-size:59.740979pt;}
.fs2_c00141{font-size:59.741964pt;}
.fsa_c00141{font-size:61.607884pt;}
.fsc_c00141{font-size:62.541337pt;}
.fs4_c00141{font-size:62.542369pt;}
.fse_c00141{font-size:63.474790pt;}
.fs13_c00141{font-size:63.479359pt;}
.fs15_c00141{font-size:64.412879pt;}
.fs6_c00141{font-size:65.341695pt;}
.fs11_c00141{font-size:68.146959pt;}
.y0_c00141{bottom:0.000000pt;}
.yf9_c00141{bottom:29.039920pt;}
.yf8_c00141{bottom:29.493627pt;}
.yf7_c00141{bottom:29.705867pt;}
.yf6_c00141{bottom:30.439413pt;}
.yf5_c00141{bottom:31.174347pt;}
.yf4_c00141{bottom:31.554587pt;}
.yf3_c00141{bottom:32.737973pt;}
.yf2_c00141{bottom:33.109387pt;}
.yf0_c00141{bottom:45.759680pt;}
.yf1_c00141{bottom:45.759760pt;}
.yef_c00141{bottom:45.760347pt;}
.yee_c00141{bottom:45.760987pt;}
.yec_c00141{bottom:45.761493pt;}
.yed_c00141{bottom:45.761600pt;}
.yeb_c00141{bottom:45.761733pt;}
.yea_c00141{bottom:60.901760pt;}
.ye9_c00141{bottom:61.617600pt;}
.ye8_c00141{bottom:61.896960pt;}
.ye7_c00141{bottom:62.354880pt;}
.ye6_c00141{bottom:63.201013pt;}
.ye5_c00141{bottom:63.528000pt;}
.ye4_c00141{bottom:64.215280pt;}
.ye3_c00141{bottom:64.793653pt;}
.ye2_c00141{bottom:76.711440pt;}
.ye1_c00141{bottom:77.235547pt;}
.ye0_c00141{bottom:77.473840pt;}
.ydf_c00141{bottom:77.830773pt;}
.yde_c00141{bottom:78.571200pt;}
.ydd_c00141{bottom:79.311013pt;}
.ydc_c00141{bottom:79.545573pt;}
.ydb_c00141{bottom:79.921760pt;}
.yda_c00141{bottom:91.535333pt;}
.yd9_c00141{bottom:92.447067pt;}
.yd8_c00141{bottom:92.887040pt;}
.yd7_c00141{bottom:94.127200pt;}
.yd6_c00141{bottom:94.495947pt;}
.yd5_c00141{bottom:95.236827pt;}
.yd4_c00141{bottom:95.714720pt;}
.yd3_c00141{bottom:96.002667pt;}
.yd2_c00141{bottom:107.553013pt;}
.yd1_c00141{bottom:107.903440pt;}
.yd0_c00141{bottom:108.319520pt;}
.ycf_c00141{bottom:108.890800pt;}
.yce_c00141{bottom:109.545867pt;}
.ycd_c00141{bottom:109.776027pt;}
.ycc_c00141{bottom:110.544347pt;}
.ycb_c00141{bottom:110.832293pt;}
.yca_c00141{bottom:111.605333pt;}
.yfb_c00141{bottom:117.360000pt;}
.yc8_c00141{bottom:123.054784pt;}
.yc7_c00141{bottom:123.688896pt;}
.yc6_c00141{bottom:123.856725pt;}
.yc5_c00141{bottom:124.590144pt;}
.yc4_c00141{bottom:125.268896pt;}
.yc3_c00141{bottom:125.474272pt;}
.yc2_c00141{bottom:125.702240pt;}
.yc1_c00141{bottom:126.307627pt;}
.yc0_c00141{bottom:126.683200pt;}
.ybf_c00141{bottom:139.161557pt;}
.ybe_c00141{bottom:139.454325pt;}
.ybd_c00141{bottom:140.080811pt;}
.ybc_c00141{bottom:140.280139pt;}
.ybb_c00141{bottom:140.605003pt;}
.yba_c00141{bottom:141.578827pt;}
.yb9_c00141{bottom:142.427221pt;}
.yb8_c00141{bottom:142.522229pt;}
.yb7_c00141{bottom:155.851307pt;}
.yb6_c00141{bottom:156.256416pt;}
.yb5_c00141{bottom:156.626635pt;}
.yb4_c00141{bottom:157.132597pt;}
.yb3_c00141{bottom:157.408715pt;}
.yb2_c00141{bottom:157.952075pt;}
.yb1_c00141{bottom:158.120213pt;}
.yb0_c00141{bottom:158.365589pt;}
.yaf_c00141{bottom:169.821120pt;}
.yae_c00141{bottom:170.137461pt;}
.yad_c00141{bottom:171.066720pt;}
.yac_c00141{bottom:172.110080pt;}
.yab_c00141{bottom:172.487179pt;}
.yaa_c00141{bottom:172.960512pt;}
.ya9_c00141{bottom:173.377291pt;}
.ya8_c00141{bottom:174.356107pt;}
.ya7_c00141{bottom:174.931808pt;}
.ya6_c00141{bottom:186.432139pt;}
.ya5_c00141{bottom:187.061088pt;}
.ya4_c00141{bottom:187.215829pt;}
.ya3_c00141{bottom:188.538688pt;}
.ya2_c00141{bottom:189.219691pt;}
.ya1_c00141{bottom:189.605312pt;}
.ya0_c00141{bottom:190.771872pt;}
.y9f_c00141{bottom:200.999723pt;}
.y9e_c00141{bottom:201.382080pt;}
.y9d_c00141{bottom:202.041131pt;}
.y9c_c00141{bottom:203.580896pt;}
.y9b_c00141{bottom:203.968917pt;}
.y9a_c00141{bottom:204.536117pt;}
.y99_c00141{bottom:205.893365pt;}
.yc9_c00141{bottom:217.337333pt;}
.y98_c00141{bottom:219.584885pt;}
.y97_c00141{bottom:219.982976pt;}
.y96_c00141{bottom:220.376683pt;}
.y95_c00141{bottom:221.633824pt;}
.y94_c00141{bottom:221.976267pt;}
.y93_c00141{bottom:232.818208pt;}
.y92_c00141{bottom:234.377696pt;}
.y91_c00141{bottom:235.009472pt;}
.y90_c00141{bottom:236.206592pt;}
.y8f_c00141{bottom:237.096576pt;}
.y8e_c00141{bottom:248.846389pt;}
.y8d_c00141{bottom:249.091349pt;}
.y8c_c00141{bottom:249.335072pt;}
.y8b_c00141{bottom:250.093525pt;}
.y8a_c00141{bottom:250.579723pt;}
.y89_c00141{bottom:251.130379pt;}
.y88_c00141{bottom:251.411360pt;}
.y87_c00141{bottom:251.602357pt;}
.y86_c00141{bottom:252.263595pt;}
.y85_c00141{bottom:252.696096pt;}
.y84_c00141{bottom:263.436715pt;}
.y83_c00141{bottom:264.343573pt;}
.y82_c00141{bottom:264.697120pt;}
.y81_c00141{bottom:265.210731pt;}
.y80_c00141{bottom:265.479147pt;}
.y7f_c00141{bottom:266.781408pt;}
.y7e_c00141{bottom:267.255083pt;}
.y7d_c00141{bottom:268.057835pt;}
.y7c_c00141{bottom:279.659221pt;}
.y7b_c00141{bottom:280.039797pt;}
.y7a_c00141{bottom:280.796704pt;}
.y79_c00141{bottom:281.546112pt;}
.y78_c00141{bottom:281.739136pt;}
.y77_c00141{bottom:282.766112pt;}
.y76_c00141{bottom:283.198325pt;}
.y75_c00141{bottom:283.418155pt;}
.y74_c00141{bottom:295.454688pt;}
.y73_c00141{bottom:296.088331pt;}
.y72_c00141{bottom:296.490507pt;}
.y71_c00141{bottom:297.354571pt;}
.y70_c00141{bottom:298.304096pt;}
.y6f_c00141{bottom:298.780747pt;}
.yfa_c00141{bottom:305.040000pt;}
.y6e_c00141{bottom:310.638251pt;}
.y6d_c00141{bottom:311.136064pt;}
.y6c_c00141{bottom:311.959957pt;}
.y6b_c00141{bottom:312.596907pt;}
.y6a_c00141{bottom:313.086592pt;}
.y69_c00141{bottom:313.862720pt;}
.y68_c00141{bottom:314.152779pt;}
.y67_c00141{bottom:314.862037pt;}
.y66_c00141{bottom:325.666325pt;}
.y65_c00141{bottom:326.475413pt;}
.y64_c00141{bottom:326.818165pt;}
.y63_c00141{bottom:328.044779pt;}
.y62_c00141{bottom:328.521259pt;}
.y61_c00141{bottom:329.339360pt;}
.y60_c00141{bottom:329.693429pt;}
.y5f_c00141{bottom:330.465429pt;}
.y5e_c00141{bottom:341.463424pt;}
.y5d_c00141{bottom:341.666197pt;}
.y5c_c00141{bottom:342.114709pt;}
.y5b_c00141{bottom:342.667872pt;}
.y5a_c00141{bottom:343.562741pt;}
.y59_c00141{bottom:344.006165pt;}
.y58_c00141{bottom:344.232021pt;}
.y57_c00141{bottom:345.078645pt;}
.y56_c00141{bottom:345.386005pt;}
.y55_c00141{bottom:345.893963pt;}
.y54_c00141{bottom:346.788661pt;}
.y53_c00141{bottom:357.453131pt;}
.y52_c00141{bottom:358.338176pt;}
.y51_c00141{bottom:359.976341pt;}
.y50_c00141{bottom:361.214165pt;}
.y4f_c00141{bottom:361.462667pt;}
.y4e_c00141{bottom:362.390891pt;}
.y4d_c00141{bottom:373.046837pt;}
.y4c_c00141{bottom:373.641344pt;}
.y4b_c00141{bottom:374.440341pt;}
.y4a_c00141{bottom:374.901280pt;}
.y49_c00141{bottom:375.588011pt;}
.y48_c00141{bottom:376.142880pt;}
.y47_c00141{bottom:377.123456pt;}
.y46_c00141{bottom:377.483861pt;}
.y45_c00141{bottom:377.990763pt;}
.y44_c00141{bottom:388.670571pt;}
.y43_c00141{bottom:389.126688pt;}
.y42_c00141{bottom:390.363552pt;}
.y41_c00141{bottom:392.108693pt;}
.y40_c00141{bottom:392.523563pt;}
.y3f_c00141{bottom:393.597547pt;}
.y3e_c00141{bottom:402.931243pt;}
.y3d_c00141{bottom:403.131904pt;}
.y3c_c00141{bottom:404.009419pt;}
.y3b_c00141{bottom:404.302251pt;}
.y3a_c00141{bottom:404.565355pt;}
.y39_c00141{bottom:405.553696pt;}
.y38_c00141{bottom:405.789568pt;}
.y37_c00141{bottom:407.178016pt;}
.y36_c00141{bottom:408.521099pt;}
.y35_c00141{bottom:408.958187pt;}
.y34_c00141{bottom:419.654251pt;}
.y33_c00141{bottom:420.731456pt;}
.y32_c00141{bottom:421.764352pt;}
.y31_c00141{bottom:422.140160pt;}
.y30_c00141{bottom:422.408181pt;}
.y2f_c00141{bottom:423.994720pt;}
.y2e_c00141{bottom:424.319883pt;}
.y2d_c00141{bottom:435.134645pt;}
.y2c_c00141{bottom:435.563605pt;}
.y2b_c00141{bottom:436.461205pt;}
.y2a_c00141{bottom:437.059467pt;}
.y29_c00141{bottom:437.775787pt;}
.y28_c00141{bottom:438.113365pt;}
.y27_c00141{bottom:438.811595pt;}
.y26_c00141{bottom:439.441643pt;}
.y25_c00141{bottom:449.185877pt;}
.y24_c00141{bottom:451.089195pt;}
.y23_c00141{bottom:451.377280pt;}
.y22_c00141{bottom:452.022635pt;}
.y21_c00141{bottom:452.253056pt;}
.y20_c00141{bottom:453.362667pt;}
.y1f_c00141{bottom:465.682117pt;}
.y1e_c00141{bottom:466.633119pt;}
.y1d_c00141{bottom:467.158609pt;}
.y1c_c00141{bottom:468.049577pt;}
.y1b_c00141{bottom:468.491299pt;}
.y1a_c00141{bottom:468.694636pt;}
.y19_c00141{bottom:469.435500pt;}
.y18_c00141{bottom:481.548952pt;}
.y17_c00141{bottom:481.688797pt;}
.y16_c00141{bottom:482.051052pt;}
.y15_c00141{bottom:482.509637pt;}
.y14_c00141{bottom:482.706496pt;}
.y13_c00141{bottom:483.208075pt;}
.y12_c00141{bottom:483.892061pt;}
.y11_c00141{bottom:484.171665pt;}
.y10_c00141{bottom:484.584737pt;}
.yf_c00141{bottom:484.796617pt;}
.ye_c00141{bottom:496.790673pt;}
.yd_c00141{bottom:497.240129pt;}
.yc_c00141{bottom:498.425524pt;}
.yb_c00141{bottom:498.623348pt;}
.ya_c00141{bottom:499.659948pt;}
.y9_c00141{bottom:500.638792pt;}
.y8_c00141{bottom:512.526980pt;}
.y7_c00141{bottom:512.988655pt;}
.y6_c00141{bottom:513.670264pt;}
.y5_c00141{bottom:514.265513pt;}
.y4_c00141{bottom:514.551703pt;}
.y3_c00141{bottom:516.293749pt;}
.y2_c00141{bottom:516.721333pt;}
.y1_c00141{bottom:529.434667pt;}
.h18_c00141{height:19.600000pt;}
.hf_c00141{height:43.872281pt;}
.h11_c00141{height:50.400000pt;}
.ha_c00141{height:54.140262pt;}
.h16_c00141{height:54.144159pt;}
.h9_c00141{height:55.073715pt;}
.h5_c00141{height:56.008091pt;}
.h7_c00141{height:56.940620pt;}
.h12_c00141{height:56.944719pt;}
.hb_c00141{height:57.874073pt;}
.h3_c00141{height:57.875028pt;}
.h14_c00141{height:57.878239pt;}
.h2_c00141{height:58.800000pt;}
.hd_c00141{height:59.740979pt;}
.h4_c00141{height:59.741964pt;}
.hc_c00141{height:61.607884pt;}
.he_c00141{height:62.541337pt;}
.h6_c00141{height:62.542369pt;}
.h10_c00141{height:63.474790pt;}
.h15_c00141{height:63.479359pt;}
.h17_c00141{height:64.412879pt;}
.h8_c00141{height:65.341695pt;}
.h13_c00141{height:68.146959pt;}
.h0_c00141{height:563.280000pt;}
.h1_c00141{height:563.333333pt;}
.w1_c00141{width:340.666667pt;}
.w0_c00141{width:340.800000pt;}
.x0_c00141{left:0.000000pt;}
.x69_c00141{left:33.561120pt;}
.x2_c00141{left:37.805333pt;}
.x1d_c00141{left:38.924000pt;}
.x3b_c00141{left:39.844821pt;}
.x6a_c00141{left:40.916149pt;}
.x65_c00141{left:42.856928pt;}
.x22_c00141{left:46.100491pt;}
.x27_c00141{left:52.537717pt;}
.xe_c00141{left:54.318607pt;}
.x76_c00141{left:55.790667pt;}
.x2c_c00141{left:57.559488pt;}
.x7e_c00141{left:59.562053pt;}
.x3_c00141{left:62.957333pt;}
.x37_c00141{left:64.808875pt;}
.x61_c00141{left:66.461419pt;}
.x66_c00141{left:67.361941pt;}
.x48_c00141{left:69.195445pt;}
.x77_c00141{left:70.188000pt;}
.x23_c00141{left:79.226891pt;}
.x33_c00141{left:81.072277pt;}
.x38_c00141{left:82.833056pt;}
.x17_c00141{left:83.827745pt;}
.xf_c00141{left:86.070093pt;}
.x54_c00141{left:90.051477pt;}
.x78_c00141{left:94.082667pt;}
.x18_c00141{left:96.573305pt;}
.x34_c00141{left:97.665888pt;}
.x40_c00141{left:98.662091pt;}
.x9_c00141{left:102.556748pt;}
.x4e_c00141{left:104.201504pt;}
.x5a_c00141{left:105.203424pt;}
.x3c_c00141{left:106.588800pt;}
.x10_c00141{left:107.616900pt;}
.x58_c00141{left:109.839328pt;}
.x62_c00141{left:110.966485pt;}
.x2d_c00141{left:113.494987pt;}
.x7d_c00141{left:114.735147pt;}
.x24_c00141{left:115.947787pt;}
.x5f_c00141{left:118.155072pt;}
.x28_c00141{left:121.521995pt;}
.x1e_c00141{left:122.676000pt;}
.x19_c00141{left:124.204448pt;}
.x6e_c00141{left:125.809365pt;}
.x59_c00141{left:126.944075pt;}
.x49_c00141{left:128.540779pt;}
.x63_c00141{left:129.930005pt;}
.x39_c00141{left:131.865920pt;}
.x25_c00141{left:133.712267pt;}
.x7b_c00141{left:137.114693pt;}
.x67_c00141{left:138.420747pt;}
.x6f_c00141{left:140.479168pt;}
.x41_c00141{left:141.708021pt;}
.x44_c00141{left:144.128416pt;}
.x73_c00141{left:145.688000pt;}
.x29_c00141{left:149.508192pt;}
.x5b_c00141{left:150.734464pt;}
.x4c_c00141{left:151.844960pt;}
.x55_c00141{left:156.536011pt;}
.x1_c00141{left:157.680000pt;}
.x11_c00141{left:160.247148pt;}
.x3d_c00141{left:161.541739pt;}
.x1f_c00141{left:163.010667pt;}
.x4_c00141{left:165.430667pt;}
.x35_c00141{left:167.477173pt;}
.x4f_c00141{left:169.338677pt;}
.xa_c00141{left:171.692439pt;}
.x45_c00141{left:172.899947pt;}
.x74_c00141{left:178.441333pt;}
.x1a_c00141{left:179.909400pt;}
.x20_c00141{left:181.016000pt;}
.x5_c00141{left:182.265333pt;}
.xb_c00141{left:184.898225pt;}
.x70_c00141{left:188.986059pt;}
.x7c_c00141{left:190.009040pt;}
.x56_c00141{left:191.604213pt;}
.x3e_c00141{left:193.452533pt;}
.x2a_c00141{left:194.392491pt;}
.x12_c00141{left:198.852444pt;}
.x26_c00141{left:202.870272pt;}
.x6b_c00141{left:206.033397pt;}
.x4a_c00141{left:207.680779pt;}
.x72_c00141{left:209.040000pt;}
.x46_c00141{left:210.375349pt;}
.x79_c00141{left:211.572000pt;}
.x1b_c00141{left:212.781967pt;}
.x13_c00141{left:213.962797pt;}
.x64_c00141{left:216.033749pt;}
.x6_c00141{left:217.280000pt;}
.x60_c00141{left:218.390005pt;}
.x6c_c00141{left:221.408811pt;}
.x2e_c00141{left:222.355723pt;}
.x5c_c00141{left:224.047264pt;}
.x50_c00141{left:226.141717pt;}
.x75_c00141{left:227.809333pt;}
.x42_c00141{left:231.397067pt;}
.x2f_c00141{left:233.298315pt;}
.x36_c00141{left:235.195424pt;}
.x51_c00141{left:238.019349pt;}
.x2b_c00141{left:241.212576pt;}
.x30_c00141{left:245.515424pt;}
.x4b_c00141{left:247.283445pt;}
.x14_c00141{left:249.254533pt;}
.x7f_c00141{left:250.324133pt;}
.x52_c00141{left:252.335115pt;}
.x68_c00141{left:253.617131pt;}
.x5d_c00141{left:255.402080pt;}
.x7_c00141{left:257.374667pt;}
.x47_c00141{left:258.867915pt;}
.x3f_c00141{left:262.365675pt;}
.xc_c00141{left:263.884900pt;}
.x4d_c00141{left:265.138773pt;}
.x53_c00141{left:266.728213pt;}
.x6d_c00141{left:269.649803pt;}
.x1c_c00141{left:272.253653pt;}
.x5e_c00141{left:273.631296pt;}
.x15_c00141{left:277.153771pt;}
.x57_c00141{left:278.236107pt;}
.x7a_c00141{left:279.157333pt;}
.x31_c00141{left:282.105419pt;}
.x8_c00141{left:284.532000pt;}
.x3a_c00141{left:286.692021pt;}
.x16_c00141{left:287.890496pt;}
.x32_c00141{left:290.479019pt;}
.x43_c00141{left:291.967477pt;}
.xd_c00141{left:293.853920pt;}
.x71_c00141{left:298.616224pt;}
.x21_c00141{left:299.973333pt;}
.x80_c00141{left:334.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00142 {
    display:none;
  }
  .loading-indicator_c00142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00142 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00142 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00142" -> "#page-container .classname_c00142")
 */
.pf_c00142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00142 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00142 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00142 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00142 {overflow:visible;}
  }
}
.c_c00142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00142 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00142:after { /* webkit #35443 */
  content: '';
}
.t_c00142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00142 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00142 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00142 { /* info for Javascript */
  display:none;
}
.l_c00142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00142:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00142 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00142.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb0_c00142{transform:matrix(0.023798,-0.000309,0.003250,0.249979,0,0);-ms-transform:matrix(0.023798,-0.000309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.023798,-0.000309,0.003250,0.249979,0,0);}
.me9_c00142{transform:matrix(0.057155,-0.000743,0.003250,0.249979,0,0);-ms-transform:matrix(0.057155,-0.000743,0.003250,0.249979,0,0);-webkit-transform:matrix(0.057155,-0.000743,0.003250,0.249979,0,0);}
.m88_c00142{transform:matrix(0.089492,-0.001163,0.003250,0.249979,0,0);-ms-transform:matrix(0.089492,-0.001163,0.003250,0.249979,0,0);-webkit-transform:matrix(0.089492,-0.001163,0.003250,0.249979,0,0);}
.m6_c00142{transform:matrix(0.089745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089745,0.000000,0.000000,0.250000,0,0);}
.me3_c00142{transform:matrix(0.126149,-0.001640,0.003250,0.249979,0,0);-ms-transform:matrix(0.126149,-0.001640,0.003250,0.249979,0,0);-webkit-transform:matrix(0.126149,-0.001640,0.003250,0.249979,0,0);}
.me5_c00142{transform:matrix(0.127634,-0.001659,0.003250,0.249979,0,0);-ms-transform:matrix(0.127634,-0.001659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127634,-0.001659,0.003250,0.249979,0,0);}
.m8e_c00142{transform:matrix(0.142688,-0.001855,0.003250,0.249979,0,0);-ms-transform:matrix(0.142688,-0.001855,0.003250,0.249979,0,0);-webkit-transform:matrix(0.142688,-0.001855,0.003250,0.249979,0,0);}
.m4e_c00142{transform:matrix(0.143461,-0.002869,0.004999,0.249950,0,0);-ms-transform:matrix(0.143461,-0.002869,0.004999,0.249950,0,0);-webkit-transform:matrix(0.143461,-0.002869,0.004999,0.249950,0,0);}
.md9_c00142{transform:matrix(0.145268,-0.001888,0.003250,0.249979,0,0);-ms-transform:matrix(0.145268,-0.001888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145268,-0.001888,0.003250,0.249979,0,0);}
.m5b_c00142{transform:matrix(0.149015,-0.002980,0.004999,0.249950,0,0);-ms-transform:matrix(0.149015,-0.002980,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149015,-0.002980,0.004999,0.249950,0,0);}
.mae_c00142{transform:matrix(0.149152,-0.001939,0.003250,0.249979,0,0);-ms-transform:matrix(0.149152,-0.001939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149152,-0.001939,0.003250,0.249979,0,0);}
.m94_c00142{transform:matrix(0.149737,-0.001947,0.003250,0.249979,0,0);-ms-transform:matrix(0.149737,-0.001947,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149737,-0.001947,0.003250,0.249979,0,0);}
.mdd_c00142{transform:matrix(0.149927,-0.001949,0.003250,0.249979,0,0);-ms-transform:matrix(0.149927,-0.001949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149927,-0.001949,0.003250,0.249979,0,0);}
.m1b_c00142{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.me2_c00142{transform:matrix(0.150922,-0.001962,0.003250,0.249979,0,0);-ms-transform:matrix(0.150922,-0.001962,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150922,-0.001962,0.003250,0.249979,0,0);}
.md6_c00142{transform:matrix(0.152197,-0.001979,0.003250,0.249979,0,0);-ms-transform:matrix(0.152197,-0.001979,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152197,-0.001979,0.003250,0.249979,0,0);}
.ma4_c00142{transform:matrix(0.152762,-0.001986,0.003250,0.249979,0,0);-ms-transform:matrix(0.152762,-0.001986,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152762,-0.001986,0.003250,0.249979,0,0);}
.m51_c00142{transform:matrix(0.152924,-0.003058,0.004999,0.249950,0,0);-ms-transform:matrix(0.152924,-0.003058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152924,-0.003058,0.004999,0.249950,0,0);}
.mdf_c00142{transform:matrix(0.153317,-0.001993,0.003250,0.249979,0,0);-ms-transform:matrix(0.153317,-0.001993,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153317,-0.001993,0.003250,0.249979,0,0);}
.maa_c00142{transform:matrix(0.155717,-0.002024,0.003250,0.249979,0,0);-ms-transform:matrix(0.155717,-0.002024,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155717,-0.002024,0.003250,0.249979,0,0);}
.m91_c00142{transform:matrix(0.155822,-0.002026,0.003250,0.249979,0,0);-ms-transform:matrix(0.155822,-0.002026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155822,-0.002026,0.003250,0.249979,0,0);}
.me0_c00142{transform:matrix(0.156217,-0.002031,0.003250,0.249979,0,0);-ms-transform:matrix(0.156217,-0.002031,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156217,-0.002031,0.003250,0.249979,0,0);}
.mab_c00142{transform:matrix(0.156312,-0.002032,0.003250,0.249979,0,0);-ms-transform:matrix(0.156312,-0.002032,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156312,-0.002032,0.003250,0.249979,0,0);}
.mb8_c00142{transform:matrix(0.156687,-0.002037,0.003250,0.249979,0,0);-ms-transform:matrix(0.156687,-0.002037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156687,-0.002037,0.003250,0.249979,0,0);}
.m8b_c00142{transform:matrix(0.157867,-0.002052,0.003250,0.249979,0,0);-ms-transform:matrix(0.157867,-0.002052,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157867,-0.002052,0.003250,0.249979,0,0);}
.m24_c00142{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.mcf_c00142{transform:matrix(0.158437,-0.002060,0.003250,0.249979,0,0);-ms-transform:matrix(0.158437,-0.002060,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158437,-0.002060,0.003250,0.249979,0,0);}
.me1_c00142{transform:matrix(0.158462,-0.002060,0.003250,0.249979,0,0);-ms-transform:matrix(0.158462,-0.002060,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158462,-0.002060,0.003250,0.249979,0,0);}
.m61_c00142{transform:matrix(0.159783,-0.003196,0.004999,0.249950,0,0);-ms-transform:matrix(0.159783,-0.003196,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159783,-0.003196,0.004999,0.249950,0,0);}
.m4d_c00142{transform:matrix(0.161323,-0.003226,0.004999,0.249950,0,0);-ms-transform:matrix(0.161323,-0.003226,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161323,-0.003226,0.004999,0.249950,0,0);}
.m56_c00142{transform:matrix(0.161813,-0.003236,0.004999,0.249950,0,0);-ms-transform:matrix(0.161813,-0.003236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161813,-0.003236,0.004999,0.249950,0,0);}
.m55_c00142{transform:matrix(0.161968,-0.003239,0.004999,0.249950,0,0);-ms-transform:matrix(0.161968,-0.003239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161968,-0.003239,0.004999,0.249950,0,0);}
.m7c_c00142{transform:matrix(0.162231,-0.002109,0.003250,0.249979,0,0);-ms-transform:matrix(0.162231,-0.002109,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162231,-0.002109,0.003250,0.249979,0,0);}
.m8d_c00142{transform:matrix(0.162656,-0.002115,0.003250,0.249979,0,0);-ms-transform:matrix(0.162656,-0.002115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162656,-0.002115,0.003250,0.249979,0,0);}
.md3_c00142{transform:matrix(0.162761,-0.002116,0.003250,0.249979,0,0);-ms-transform:matrix(0.162761,-0.002116,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162761,-0.002116,0.003250,0.249979,0,0);}
.m5c_c00142{transform:matrix(0.163562,-0.003271,0.004999,0.249950,0,0);-ms-transform:matrix(0.163562,-0.003271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163562,-0.003271,0.004999,0.249950,0,0);}
.mc1_c00142{transform:matrix(0.163586,-0.002127,0.003250,0.249979,0,0);-ms-transform:matrix(0.163586,-0.002127,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163586,-0.002127,0.003250,0.249979,0,0);}
.m4f_c00142{transform:matrix(0.163617,-0.003272,0.004999,0.249950,0,0);-ms-transform:matrix(0.163617,-0.003272,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163617,-0.003272,0.004999,0.249950,0,0);}
.m4a_c00142{transform:matrix(0.164067,-0.003281,0.004999,0.249950,0,0);-ms-transform:matrix(0.164067,-0.003281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164067,-0.003281,0.004999,0.249950,0,0);}
.m90_c00142{transform:matrix(0.164146,-0.002134,0.003250,0.249979,0,0);-ms-transform:matrix(0.164146,-0.002134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164146,-0.002134,0.003250,0.249979,0,0);}
.m98_c00142{transform:matrix(0.164426,-0.002138,0.003250,0.249979,0,0);-ms-transform:matrix(0.164426,-0.002138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164426,-0.002138,0.003250,0.249979,0,0);}
.m70_c00142{transform:matrix(0.164701,-0.002141,0.003250,0.249979,0,0);-ms-transform:matrix(0.164701,-0.002141,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164701,-0.002141,0.003250,0.249979,0,0);}
.m75_c00142{transform:matrix(0.164836,-0.002143,0.003250,0.249979,0,0);-ms-transform:matrix(0.164836,-0.002143,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164836,-0.002143,0.003250,0.249979,0,0);}
.m1f_c00142{transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);}
.md5_c00142{transform:matrix(0.165211,-0.002148,0.003250,0.249979,0,0);-ms-transform:matrix(0.165211,-0.002148,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165211,-0.002148,0.003250,0.249979,0,0);}
.mdc_c00142{transform:matrix(0.166006,-0.002158,0.003250,0.249979,0,0);-ms-transform:matrix(0.166006,-0.002158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166006,-0.002158,0.003250,0.249979,0,0);}
.mc4_c00142{transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);-ms-transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);}
.m0_c00142{transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m78_c00142{transform:matrix(0.167126,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167126,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167126,-0.002173,0.003250,0.249979,0,0);}
.m5f_c00142{transform:matrix(0.167357,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167357,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167357,-0.003347,0.004999,0.249950,0,0);}
.mb3_c00142{transform:matrix(0.167926,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167926,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167926,-0.002183,0.003250,0.249979,0,0);}
.md7_c00142{transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);-ms-transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168441,-0.002190,0.003250,0.249979,0,0);}
.m83_c00142{transform:matrix(0.168651,-0.002192,0.003250,0.249979,0,0);-ms-transform:matrix(0.168651,-0.002192,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168651,-0.002192,0.003250,0.249979,0,0);}
.m71_c00142{transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);-ms-transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169351,-0.002202,0.003250,0.249979,0,0);}
.m9d_c00142{transform:matrix(0.170646,-0.002218,0.003250,0.249979,0,0);-ms-transform:matrix(0.170646,-0.002218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170646,-0.002218,0.003250,0.249979,0,0);}
.m50_c00142{transform:matrix(0.170851,-0.003417,0.004999,0.249950,0,0);-ms-transform:matrix(0.170851,-0.003417,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170851,-0.003417,0.004999,0.249950,0,0);}
.m9a_c00142{transform:matrix(0.171216,-0.002226,0.003250,0.249979,0,0);-ms-transform:matrix(0.171216,-0.002226,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171216,-0.002226,0.003250,0.249979,0,0);}
.m62_c00142{transform:matrix(0.171431,-0.003429,0.004999,0.249950,0,0);-ms-transform:matrix(0.171431,-0.003429,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171431,-0.003429,0.004999,0.249950,0,0);}
.ma9_c00142{transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);-ms-transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);}
.m8c_c00142{transform:matrix(0.172070,-0.002237,0.003250,0.249979,0,0);-ms-transform:matrix(0.172070,-0.002237,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172070,-0.002237,0.003250,0.249979,0,0);}
.mdb_c00142{transform:matrix(0.172470,-0.002242,0.003250,0.249979,0,0);-ms-transform:matrix(0.172470,-0.002242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172470,-0.002242,0.003250,0.249979,0,0);}
.ma8_c00142{transform:matrix(0.172615,-0.002244,0.003250,0.249979,0,0);-ms-transform:matrix(0.172615,-0.002244,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172615,-0.002244,0.003250,0.249979,0,0);}
.m97_c00142{transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);-ms-transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173165,-0.002251,0.003250,0.249979,0,0);}
.m7e_c00142{transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);-ms-transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);}
.mcb_c00142{transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);}
.m8f_c00142{transform:matrix(0.173925,-0.002261,0.003250,0.249979,0,0);-ms-transform:matrix(0.173925,-0.002261,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173925,-0.002261,0.003250,0.249979,0,0);}
.md2_c00142{transform:matrix(0.174145,-0.002264,0.003250,0.249979,0,0);-ms-transform:matrix(0.174145,-0.002264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174145,-0.002264,0.003250,0.249979,0,0);}
.m52_c00142{transform:matrix(0.174245,-0.003485,0.004999,0.249950,0,0);-ms-transform:matrix(0.174245,-0.003485,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174245,-0.003485,0.004999,0.249950,0,0);}
.m9b_c00142{transform:matrix(0.174375,-0.002267,0.003250,0.249979,0,0);-ms-transform:matrix(0.174375,-0.002267,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174375,-0.002267,0.003250,0.249979,0,0);}
.mb9_c00142{transform:matrix(0.175820,-0.002286,0.003250,0.249979,0,0);-ms-transform:matrix(0.175820,-0.002286,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175820,-0.002286,0.003250,0.249979,0,0);}
.ma2_c00142{transform:matrix(0.176650,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176650,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176650,-0.002296,0.003250,0.249979,0,0);}
.m6d_c00142{transform:matrix(0.177125,-0.002303,0.003250,0.249979,0,0);-ms-transform:matrix(0.177125,-0.002303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177125,-0.002303,0.003250,0.249979,0,0);}
.m77_c00142{transform:matrix(0.177330,-0.002305,0.003250,0.249979,0,0);-ms-transform:matrix(0.177330,-0.002305,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177330,-0.002305,0.003250,0.249979,0,0);}
.meb_c00142{transform:matrix(0.177365,-0.002306,0.003250,0.249979,0,0);-ms-transform:matrix(0.177365,-0.002306,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177365,-0.002306,0.003250,0.249979,0,0);}
.m32_c00142{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);}
.m99_c00142{transform:matrix(0.178565,-0.002321,0.003250,0.249979,0,0);-ms-transform:matrix(0.178565,-0.002321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178565,-0.002321,0.003250,0.249979,0,0);}
.me8_c00142{transform:matrix(0.178695,-0.002323,0.003250,0.249979,0,0);-ms-transform:matrix(0.178695,-0.002323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178695,-0.002323,0.003250,0.249979,0,0);}
.m9f_c00142{transform:matrix(0.178810,-0.002325,0.003250,0.249979,0,0);-ms-transform:matrix(0.178810,-0.002325,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178810,-0.002325,0.003250,0.249979,0,0);}
.mb2_c00142{transform:matrix(0.179025,-0.002327,0.003250,0.249979,0,0);-ms-transform:matrix(0.179025,-0.002327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179025,-0.002327,0.003250,0.249979,0,0);}
.mea_c00142{transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);-ms-transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);}
.me6_c00142{transform:matrix(0.179400,-0.002332,0.003250,0.249979,0,0);-ms-transform:matrix(0.179400,-0.002332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179400,-0.002332,0.003250,0.249979,0,0);}
.m63_c00142{transform:matrix(0.179555,-0.002334,0.003250,0.249979,0,0);-ms-transform:matrix(0.179555,-0.002334,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179555,-0.002334,0.003250,0.249979,0,0);}
.m2a_c00142{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m79_c00142{transform:matrix(0.180180,-0.002342,0.003250,0.249979,0,0);-ms-transform:matrix(0.180180,-0.002342,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180180,-0.002342,0.003250,0.249979,0,0);}
.m20_c00142{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.mb7_c00142{transform:matrix(0.181300,-0.002357,0.003250,0.249979,0,0);-ms-transform:matrix(0.181300,-0.002357,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181300,-0.002357,0.003250,0.249979,0,0);}
.mda_c00142{transform:matrix(0.181790,-0.002363,0.003250,0.249979,0,0);-ms-transform:matrix(0.181790,-0.002363,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181790,-0.002363,0.003250,0.249979,0,0);}
.m5e_c00142{transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);}
.m6a_c00142{transform:matrix(0.182895,-0.002378,0.003250,0.249979,0,0);-ms-transform:matrix(0.182895,-0.002378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182895,-0.002378,0.003250,0.249979,0,0);}
.m93_c00142{transform:matrix(0.182965,-0.002379,0.003250,0.249979,0,0);-ms-transform:matrix(0.182965,-0.002379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182965,-0.002379,0.003250,0.249979,0,0);}
.m13_c00142{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m64_c00142{transform:matrix(0.183375,-0.002384,0.003250,0.249979,0,0);-ms-transform:matrix(0.183375,-0.002384,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183375,-0.002384,0.003250,0.249979,0,0);}
.m96_c00142{transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);}
.m21_c00142{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.ma3_c00142{transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-ms-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);}
.m9e_c00142{transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);-ms-transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184659,-0.002401,0.003250,0.249979,0,0);}
.m53_c00142{transform:matrix(0.184673,-0.003693,0.004999,0.249950,0,0);-ms-transform:matrix(0.184673,-0.003693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184673,-0.003693,0.004999,0.249950,0,0);}
.ma7_c00142{transform:matrix(0.184864,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184864,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184864,-0.002403,0.003250,0.249979,0,0);}
.m4c_c00142{transform:matrix(0.184878,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184878,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184878,-0.003698,0.004999,0.249950,0,0);}
.m60_c00142{transform:matrix(0.185063,-0.003701,0.004999,0.249950,0,0);-ms-transform:matrix(0.185063,-0.003701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185063,-0.003701,0.004999,0.249950,0,0);}
.maf_c00142{transform:matrix(0.185349,-0.002410,0.003250,0.249979,0,0);-ms-transform:matrix(0.185349,-0.002410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185349,-0.002410,0.003250,0.249979,0,0);}
.m25_c00142{transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.185603,-0.003712,0.004999,0.249950,0,0);-ms-transform:matrix(0.185603,-0.003712,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185603,-0.003712,0.004999,0.249950,0,0);}
.md0_c00142{transform:matrix(0.185674,-0.002414,0.003250,0.249979,0,0);-ms-transform:matrix(0.185674,-0.002414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185674,-0.002414,0.003250,0.249979,0,0);}
.me4_c00142{transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);}
.m95_c00142{transform:matrix(0.186074,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186074,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186074,-0.002419,0.003250,0.249979,0,0);}
.m5a_c00142{transform:matrix(0.186443,-0.003729,0.004999,0.249950,0,0);-ms-transform:matrix(0.186443,-0.003729,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186443,-0.003729,0.004999,0.249950,0,0);}
.mb6_c00142{transform:matrix(0.186459,-0.002424,0.003250,0.249979,0,0);-ms-transform:matrix(0.186459,-0.002424,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186459,-0.002424,0.003250,0.249979,0,0);}
.m65_c00142{transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);-ms-transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);}
.m23_c00142{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m54_c00142{transform:matrix(0.187877,-0.003758,0.004999,0.249950,0,0);-ms-transform:matrix(0.187877,-0.003758,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187877,-0.003758,0.004999,0.249950,0,0);}
.md8_c00142{transform:matrix(0.187894,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187894,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187894,-0.002443,0.003250,0.249979,0,0);}
.m9c_c00142{transform:matrix(0.187909,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187909,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187909,-0.002443,0.003250,0.249979,0,0);}
.m80_c00142{transform:matrix(0.188334,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188334,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188334,-0.002448,0.003250,0.249979,0,0);}
.m1_c00142{transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);}
.m86_c00142{transform:matrix(0.188404,-0.002449,0.003250,0.249979,0,0);-ms-transform:matrix(0.188404,-0.002449,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188404,-0.002449,0.003250,0.249979,0,0);}
.m68_c00142{transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);-ms-transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);}
.m5d_c00142{transform:matrix(0.189482,-0.003790,0.004999,0.249950,0,0);-ms-transform:matrix(0.189482,-0.003790,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189482,-0.003790,0.004999,0.249950,0,0);}
.md_c00142{transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.mb4_c00142{transform:matrix(0.191984,-0.002496,0.003250,0.249979,0,0);-ms-transform:matrix(0.191984,-0.002496,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191984,-0.002496,0.003250,0.249979,0,0);}
.mac_c00142{transform:matrix(0.192774,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192774,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192774,-0.002506,0.003250,0.249979,0,0);}
.m33_c00142{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{transform:matrix(0.193026,-0.003861,0.004999,0.249950,0,0);-ms-transform:matrix(0.193026,-0.003861,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193026,-0.003861,0.004999,0.249950,0,0);}
.mde_c00142{transform:matrix(0.193324,-0.002513,0.003250,0.249979,0,0);-ms-transform:matrix(0.193324,-0.002513,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193324,-0.002513,0.003250,0.249979,0,0);}
.m6f_c00142{transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);-ms-transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);}
.m72_c00142{transform:matrix(0.193814,-0.002520,0.003250,0.249979,0,0);-ms-transform:matrix(0.193814,-0.002520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193814,-0.002520,0.003250,0.249979,0,0);}
.m16_c00142{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.m66_c00142{transform:matrix(0.194289,-0.002526,0.003250,0.249979,0,0);-ms-transform:matrix(0.194289,-0.002526,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194289,-0.002526,0.003250,0.249979,0,0);}
.m37_c00142{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.mbd_c00142{transform:matrix(0.194954,-0.002534,0.003250,0.249979,0,0);-ms-transform:matrix(0.194954,-0.002534,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194954,-0.002534,0.003250,0.249979,0,0);}
.m7b_c00142{transform:matrix(0.195483,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195483,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195483,-0.002541,0.003250,0.249979,0,0);}
.m7f_c00142{transform:matrix(0.195733,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195733,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195733,-0.002545,0.003250,0.249979,0,0);}
.m4b_c00142{transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);-ms-transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);}
.md1_c00142{transform:matrix(0.195818,-0.002546,0.003250,0.249979,0,0);-ms-transform:matrix(0.195818,-0.002546,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195818,-0.002546,0.003250,0.249979,0,0);}
.me_c00142{transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);}
.m84_c00142{transform:matrix(0.195913,-0.002547,0.003250,0.249979,0,0);-ms-transform:matrix(0.195913,-0.002547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195913,-0.002547,0.003250,0.249979,0,0);}
.ma5_c00142{transform:matrix(0.196268,-0.002551,0.003250,0.249979,0,0);-ms-transform:matrix(0.196268,-0.002551,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196268,-0.002551,0.003250,0.249979,0,0);}
.mb_c00142{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.m34_c00142{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.m73_c00142{transform:matrix(0.197663,-0.002570,0.003250,0.249979,0,0);-ms-transform:matrix(0.197663,-0.002570,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197663,-0.002570,0.003250,0.249979,0,0);}
.mbf_c00142{transform:matrix(0.198143,-0.002576,0.003250,0.249979,0,0);-ms-transform:matrix(0.198143,-0.002576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198143,-0.002576,0.003250,0.249979,0,0);}
.m82_c00142{transform:matrix(0.198528,-0.002581,0.003250,0.249979,0,0);-ms-transform:matrix(0.198528,-0.002581,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198528,-0.002581,0.003250,0.249979,0,0);}
.m3f_c00142{transform:matrix(0.198820,-0.003976,0.004999,0.249950,0,0);-ms-transform:matrix(0.198820,-0.003976,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198820,-0.003976,0.004999,0.249950,0,0);}
.m58_c00142{transform:matrix(0.199165,-0.003983,0.004999,0.249950,0,0);-ms-transform:matrix(0.199165,-0.003983,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199165,-0.003983,0.004999,0.249950,0,0);}
.m89_c00142{transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);-ms-transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);}
.m10_c00142{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m6e_c00142{transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);-ms-transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);}
.m2e_c00142{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);}
.mc0_c00142{transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);}
.m8a_c00142{transform:matrix(0.201293,-0.002617,0.003250,0.249979,0,0);-ms-transform:matrix(0.201293,-0.002617,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201293,-0.002617,0.003250,0.249979,0,0);}
.m59_c00142{transform:matrix(0.201530,-0.004031,0.004999,0.249950,0,0);-ms-transform:matrix(0.201530,-0.004031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201530,-0.004031,0.004999,0.249950,0,0);}
.me7_c00142{transform:matrix(0.201763,-0.002623,0.003250,0.249979,0,0);-ms-transform:matrix(0.201763,-0.002623,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201763,-0.002623,0.003250,0.249979,0,0);}
.m45_c00142{transform:matrix(0.201785,-0.004036,0.004999,0.249950,0,0);-ms-transform:matrix(0.201785,-0.004036,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201785,-0.004036,0.004999,0.249950,0,0);}
.m43_c00142{transform:matrix(0.201925,-0.004038,0.004999,0.249950,0,0);-ms-transform:matrix(0.201925,-0.004038,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201925,-0.004038,0.004999,0.249950,0,0);}
.mba_c00142{transform:matrix(0.202123,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202123,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202123,-0.002628,0.003250,0.249979,0,0);}
.mc5_c00142{transform:matrix(0.202498,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202498,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202498,-0.002632,0.003250,0.249979,0,0);}
.m7a_c00142{transform:matrix(0.202778,-0.002636,0.003250,0.249979,0,0);-ms-transform:matrix(0.202778,-0.002636,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202778,-0.002636,0.003250,0.249979,0,0);}
.ma6_c00142{transform:matrix(0.203218,-0.002642,0.003250,0.249979,0,0);-ms-transform:matrix(0.203218,-0.002642,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203218,-0.002642,0.003250,0.249979,0,0);}
.mb1_c00142{transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);}
.m1c_c00142{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);}
.m6c_c00142{transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);-ms-transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);}
.m47_c00142{transform:matrix(0.206499,-0.004130,0.004999,0.249950,0,0);-ms-transform:matrix(0.206499,-0.004130,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206499,-0.004130,0.004999,0.249950,0,0);}
.md4_c00142{transform:matrix(0.206768,-0.002688,0.003250,0.249979,0,0);-ms-transform:matrix(0.206768,-0.002688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206768,-0.002688,0.003250,0.249979,0,0);}
.m3_c00142{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.m81_c00142{transform:matrix(0.207742,-0.002701,0.003250,0.249979,0,0);-ms-transform:matrix(0.207742,-0.002701,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207742,-0.002701,0.003250,0.249979,0,0);}
.m7d_c00142{transform:matrix(0.208162,-0.002706,0.003250,0.249979,0,0);-ms-transform:matrix(0.208162,-0.002706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208162,-0.002706,0.003250,0.249979,0,0);}
.mad_c00142{transform:matrix(0.209167,-0.002719,0.003250,0.249979,0,0);-ms-transform:matrix(0.209167,-0.002719,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209167,-0.002719,0.003250,0.249979,0,0);}
.mcd_c00142{transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);-ms-transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);}
.mbb_c00142{transform:matrix(0.209412,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209412,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209412,-0.002722,0.003250,0.249979,0,0);}
.m2b_c00142{transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);}
.mbe_c00142{transform:matrix(0.210262,-0.002733,0.003250,0.249979,0,0);-ms-transform:matrix(0.210262,-0.002733,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210262,-0.002733,0.003250,0.249979,0,0);}
.m6b_c00142{transform:matrix(0.211352,-0.002748,0.003250,0.249979,0,0);-ms-transform:matrix(0.211352,-0.002748,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211352,-0.002748,0.003250,0.249979,0,0);}
.m49_c00142{transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);-ms-transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);}
.m40_c00142{transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);}
.m41_c00142{transform:matrix(0.212118,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212118,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212118,-0.004242,0.004999,0.249950,0,0);}
.m85_c00142{transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);}
.mce_c00142{transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);}
.mcc_c00142{transform:matrix(0.213502,-0.002776,0.003250,0.249979,0,0);-ms-transform:matrix(0.213502,-0.002776,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213502,-0.002776,0.003250,0.249979,0,0);}
.mc6_c00142{transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);-ms-transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);}
.m92_c00142{transform:matrix(0.214267,-0.002785,0.003250,0.249979,0,0);-ms-transform:matrix(0.214267,-0.002785,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214267,-0.002785,0.003250,0.249979,0,0);}
.m12_c00142{transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.mc7_c00142{transform:matrix(0.215502,-0.002802,0.003250,0.249979,0,0);-ms-transform:matrix(0.215502,-0.002802,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215502,-0.002802,0.003250,0.249979,0,0);}
.m1e_c00142{transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);}
.m74_c00142{transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);-ms-transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);}
.ma0_c00142{transform:matrix(0.217197,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217197,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217197,-0.002824,0.003250,0.249979,0,0);}
.mf_c00142{transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);}
.m87_c00142{transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);-ms-transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);}
.m3d_c00142{transform:matrix(0.218281,-0.004366,0.004999,0.249950,0,0);-ms-transform:matrix(0.218281,-0.004366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218281,-0.004366,0.004999,0.249950,0,0);}
.m29_c00142{transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);}
.ma1_c00142{transform:matrix(0.219391,-0.002852,0.003250,0.249979,0,0);-ms-transform:matrix(0.219391,-0.002852,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219391,-0.002852,0.003250,0.249979,0,0);}
.m46_c00142{transform:matrix(0.219456,-0.004389,0.004999,0.249950,0,0);-ms-transform:matrix(0.219456,-0.004389,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219456,-0.004389,0.004999,0.249950,0,0);}
.m11_c00142{transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(0.220301,-0.004406,0.004999,0.249950,0,0);-ms-transform:matrix(0.220301,-0.004406,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220301,-0.004406,0.004999,0.249950,0,0);}
.mc3_c00142{transform:matrix(0.222096,-0.002887,0.003250,0.249979,0,0);-ms-transform:matrix(0.222096,-0.002887,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222096,-0.002887,0.003250,0.249979,0,0);}
.m8_c00142{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.m76_c00142{transform:matrix(0.228806,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228806,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228806,-0.002974,0.003250,0.249979,0,0);}
.m3a_c00142{transform:matrix(0.229340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229340,0.000000,0.000000,0.250000,0,0);}
.mbc_c00142{transform:matrix(0.232785,-0.003026,0.003250,0.249979,0,0);-ms-transform:matrix(0.232785,-0.003026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232785,-0.003026,0.003250,0.249979,0,0);}
.mca_c00142{transform:matrix(0.233735,-0.003039,0.003250,0.249979,0,0);-ms-transform:matrix(0.233735,-0.003039,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233735,-0.003039,0.003250,0.249979,0,0);}
.mc2_c00142{transform:matrix(0.234160,-0.003044,0.003250,0.249979,0,0);-ms-transform:matrix(0.234160,-0.003044,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234160,-0.003044,0.003250,0.249979,0,0);}
.m2c_c00142{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m3c_c00142{transform:matrix(0.239432,-0.004789,0.004999,0.249950,0,0);-ms-transform:matrix(0.239432,-0.004789,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239432,-0.004789,0.004999,0.249950,0,0);}
.m15_c00142{transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m67_c00142{transform:matrix(0.248694,-0.003233,0.003250,0.249979,0,0);-ms-transform:matrix(0.248694,-0.003233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248694,-0.003233,0.003250,0.249979,0,0);}
.mc9_c00142{transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);-ms-transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);}
.mc8_c00142{transform:matrix(0.258198,-0.003357,0.003250,0.249979,0,0);-ms-transform:matrix(0.258198,-0.003357,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258198,-0.003357,0.003250,0.249979,0,0);}
.m36_c00142{transform:matrix(0.259150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259150,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.263572,-0.005271,0.004999,0.249950,0,0);-ms-transform:matrix(0.263572,-0.005271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263572,-0.005271,0.004999,0.249950,0,0);}
.m42_c00142{transform:matrix(0.268566,-0.005371,0.004999,0.249950,0,0);-ms-transform:matrix(0.268566,-0.005371,0.004999,0.249950,0,0);-webkit-transform:matrix(0.268566,-0.005371,0.004999,0.249950,0,0);}
.m28_c00142{transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.m69_c00142{transform:matrix(0.335787,-0.004365,0.003250,0.249979,0,0);-ms-transform:matrix(0.335787,-0.004365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.335787,-0.004365,0.003250,0.249979,0,0);}
.m18_c00142{transform:matrix(0.368670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368670,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.405294,-0.008106,0.004999,0.249950,0,0);-ms-transform:matrix(0.405294,-0.008106,0.004999,0.249950,0,0);-webkit-transform:matrix(0.405294,-0.008106,0.004999,0.249950,0,0);}
.mb5_c00142{transform:matrix(0.479469,-0.006233,0.003250,0.249979,0,0);-ms-transform:matrix(0.479469,-0.006233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.479469,-0.006233,0.003250,0.249979,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:0.000000px;}
.fc0_c00142{color:transparent;}
.fs7_c00142{font-size:54.610919px;}
.fs2_c00142{font-size:59.850000px;}
.fsf_c00142{font-size:59.855057px;}
.fs3_c00142{font-size:60.900000px;}
.fs1_c00142{font-size:61.950000px;}
.fs12_c00142{font-size:61.955235px;}
.fs6_c00142{font-size:61.962389px;}
.fsc_c00142{font-size:64.055412px;}
.fsd_c00142{font-size:66.155589px;}
.fs5_c00142{font-size:67.200000px;}
.fs13_c00142{font-size:67.205678px;}
.fs4_c00142{font-size:68.250000px;}
.fsb_c00142{font-size:69.305856px;}
.fs9_c00142{font-size:69.313859px;}
.fse_c00142{font-size:70.355944px;}
.fs8_c00142{font-size:70.364069px;}
.fs10_c00142{font-size:71.406033px;}
.fs11_c00142{font-size:74.556299px;}
.fsa_c00142{font-size:74.564909px;}
.fs0_c00142{font-size:79.800000px;}
.fs14_c00142{font-size:92.407807px;}
.y0_c00142{bottom:0.000000px;}
.ye9_c00142{bottom:36.568584px;}
.yea_c00142{bottom:36.568675px;}
.ye8_c00142{bottom:36.568962px;}
.yec_c00142{bottom:36.569028px;}
.yeb_c00142{bottom:36.569317px;}
.yed_c00142{bottom:36.569400px;}
.ye0_c00142{bottom:49.116352px;}
.ye1_c00142{bottom:49.570578px;}
.ye2_c00142{bottom:50.269230px;}
.ye3_c00142{bottom:50.762155px;}
.ye4_c00142{bottom:51.241765px;}
.ye5_c00142{bottom:52.296595px;}
.ye6_c00142{bottom:53.337330px;}
.ye7_c00142{bottom:53.738545px;}
.yd7_c00142{bottom:72.860104px;}
.yde_c00142{bottom:72.860311px;}
.ydb_c00142{bottom:72.860368px;}
.ydd_c00142{bottom:72.860410px;}
.ydf_c00142{bottom:72.860673px;}
.yd8_c00142{bottom:72.860695px;}
.ydc_c00142{bottom:72.860719px;}
.yda_c00142{bottom:72.860898px;}
.yd9_c00142{bottom:72.861166px;}
.yd4_c00142{bottom:90.347944px;}
.yd5_c00142{bottom:90.347965px;}
.yd3_c00142{bottom:90.348133px;}
.yd6_c00142{bottom:90.348276px;}
.yd2_c00142{bottom:90.348841px;}
.yd1_c00142{bottom:90.348921px;}
.yd0_c00142{bottom:90.349519px;}
.ycf_c00142{bottom:108.058630px;}
.yce_c00142{bottom:108.058918px;}
.ycb_c00142{bottom:108.058993px;}
.ycc_c00142{bottom:108.059125px;}
.ycd_c00142{bottom:108.059148px;}
.yca_c00142{bottom:108.059613px;}
.yc6_c00142{bottom:126.067849px;}
.yc5_c00142{bottom:126.068506px;}
.yc9_c00142{bottom:126.068542px;}
.yc7_c00142{bottom:126.068580px;}
.yc8_c00142{bottom:126.068592px;}
.yc4_c00142{bottom:126.069195px;}
.yc1_c00142{bottom:143.062857px;}
.yc2_c00142{bottom:143.063298px;}
.yc0_c00142{bottom:143.063576px;}
.yc3_c00142{bottom:143.063659px;}
.ybf_c00142{bottom:143.064024px;}
.ybe_c00142{bottom:143.064232px;}
.ybc_c00142{bottom:143.064782px;}
.ybd_c00142{bottom:143.064923px;}
.yb7_c00142{bottom:160.100918px;}
.ybb_c00142{bottom:160.100984px;}
.yb8_c00142{bottom:160.101349px;}
.yba_c00142{bottom:160.101573px;}
.yb9_c00142{bottom:160.101771px;}
.yb5_c00142{bottom:176.771070px;}
.yb6_c00142{bottom:176.771542px;}
.yb3_c00142{bottom:176.771658px;}
.yb4_c00142{bottom:176.771809px;}
.yb1_c00142{bottom:176.771865px;}
.yb2_c00142{bottom:176.772105px;}
.yac_c00142{bottom:195.466520px;}
.yb0_c00142{bottom:195.466572px;}
.yad_c00142{bottom:195.466590px;}
.yaa_c00142{bottom:195.466627px;}
.yab_c00142{bottom:195.466779px;}
.yaf_c00142{bottom:195.466831px;}
.ya9_c00142{bottom:195.466966px;}
.yae_c00142{bottom:195.467091px;}
.ya8_c00142{bottom:195.467355px;}
.ya1_c00142{bottom:212.823261px;}
.ya0_c00142{bottom:212.823270px;}
.ya4_c00142{bottom:212.823705px;}
.ya2_c00142{bottom:212.823933px;}
.ya6_c00142{bottom:212.823966px;}
.ya5_c00142{bottom:212.824225px;}
.ya3_c00142{bottom:212.824393px;}
.ya7_c00142{bottom:212.824608px;}
.y9e_c00142{bottom:230.297811px;}
.y9a_c00142{bottom:230.298327px;}
.y9d_c00142{bottom:230.298520px;}
.y9f_c00142{bottom:230.298532px;}
.y9b_c00142{bottom:230.298858px;}
.y99_c00142{bottom:230.298975px;}
.y9c_c00142{bottom:230.298999px;}
.y98_c00142{bottom:230.299224px;}
.y96_c00142{bottom:248.464751px;}
.y97_c00142{bottom:248.465002px;}
.y93_c00142{bottom:248.465147px;}
.y94_c00142{bottom:248.465308px;}
.y95_c00142{bottom:248.465400px;}
.y91_c00142{bottom:248.465835px;}
.y92_c00142{bottom:248.465886px;}
.y8c_c00142{bottom:266.016513px;}
.y8b_c00142{bottom:266.016532px;}
.y8a_c00142{bottom:266.017030px;}
.y8d_c00142{bottom:266.017153px;}
.y89_c00142{bottom:266.017260px;}
.y88_c00142{bottom:266.017749px;}
.y8e_c00142{bottom:266.017815px;}
.y8f_c00142{bottom:266.017836px;}
.y90_c00142{bottom:266.018057px;}
.y87_c00142{bottom:284.030289px;}
.y86_c00142{bottom:284.030557px;}
.y85_c00142{bottom:284.030566px;}
.y81_c00142{bottom:284.030662px;}
.y84_c00142{bottom:284.030736px;}
.y83_c00142{bottom:284.031165px;}
.y80_c00142{bottom:284.031241px;}
.y82_c00142{bottom:284.031303px;}
.y7e_c00142{bottom:301.882110px;}
.y78_c00142{bottom:301.882314px;}
.y7f_c00142{bottom:301.882572px;}
.y7d_c00142{bottom:301.882639px;}
.y7c_c00142{bottom:301.882768px;}
.y79_c00142{bottom:301.882774px;}
.y7a_c00142{bottom:301.882836px;}
.y7b_c00142{bottom:301.883298px;}
.y74_c00142{bottom:319.976810px;}
.y75_c00142{bottom:319.977101px;}
.y73_c00142{bottom:319.977108px;}
.y70_c00142{bottom:319.977356px;}
.y72_c00142{bottom:319.977458px;}
.y76_c00142{bottom:319.977552px;}
.y71_c00142{bottom:319.977627px;}
.y77_c00142{bottom:319.978023px;}
.y6a_c00142{bottom:334.787205px;}
.y6b_c00142{bottom:336.128412px;}
.y6c_c00142{bottom:337.036211px;}
.y6d_c00142{bottom:337.372774px;}
.y6e_c00142{bottom:338.418011px;}
.y6f_c00142{bottom:338.709906px;}
.y64_c00142{bottom:351.001500px;}
.y65_c00142{bottom:351.699522px;}
.y66_c00142{bottom:352.233588px;}
.y67_c00142{bottom:352.563723px;}
.y68_c00142{bottom:353.827225px;}
.y69_c00142{bottom:354.224285px;}
.y5b_c00142{bottom:367.458300px;}
.y5c_c00142{bottom:367.674090px;}
.y5d_c00142{bottom:367.989210px;}
.y5e_c00142{bottom:368.439480px;}
.y5f_c00142{bottom:368.653200px;}
.y60_c00142{bottom:369.174840px;}
.y61_c00142{bottom:369.561450px;}
.y62_c00142{bottom:369.693390px;}
.y63_c00142{bottom:369.907980px;}
.y53_c00142{bottom:385.280400px;}
.y54_c00142{bottom:385.925670px;}
.y55_c00142{bottom:386.319600px;}
.y56_c00142{bottom:386.530770px;}
.y57_c00142{bottom:386.700990px;}
.y58_c00142{bottom:387.106620px;}
.y59_c00142{bottom:387.264000px;}
.y5a_c00142{bottom:387.903390px;}
.y4b_c00142{bottom:402.833340px;}
.y4c_c00142{bottom:403.503660px;}
.y4d_c00142{bottom:404.206890px;}
.y4e_c00142{bottom:405.185460px;}
.y4f_c00142{bottom:405.480750px;}
.y50_c00142{bottom:405.749820px;}
.y51_c00142{bottom:406.550760px;}
.y52_c00142{bottom:406.899150px;}
.y43_c00142{bottom:419.041380px;}
.y44_c00142{bottom:419.908410px;}
.y45_c00142{bottom:420.697050px;}
.y46_c00142{bottom:421.569810px;}
.y47_c00142{bottom:421.901310px;}
.y48_c00142{bottom:423.034710px;}
.y49_c00142{bottom:423.455760px;}
.y4a_c00142{bottom:424.340040px;}
.y3c_c00142{bottom:436.594500px;}
.y3d_c00142{bottom:437.431320px;}
.y3e_c00142{bottom:438.414150px;}
.y3f_c00142{bottom:439.408320px;}
.y40_c00142{bottom:439.764540px;}
.y41_c00142{bottom:440.530860px;}
.y42_c00142{bottom:442.190910px;}
.y38_c00142{bottom:453.328500px;}
.y39_c00142{bottom:453.766500px;}
.y3a_c00142{bottom:454.083000px;}
.y3b_c00142{bottom:456.978000px;}
.y30_c00142{bottom:470.880000px;}
.y31_c00142{bottom:471.610500px;}
.y32_c00142{bottom:472.702500px;}
.y33_c00142{bottom:473.337000px;}
.y34_c00142{bottom:474.231000px;}
.y35_c00142{bottom:474.457500px;}
.y36_c00142{bottom:475.935000px;}
.y37_c00142{bottom:476.166000px;}
.y28_c00142{bottom:487.888500px;}
.y29_c00142{bottom:488.554500px;}
.y2a_c00142{bottom:488.847000px;}
.y2b_c00142{bottom:489.658500px;}
.y2c_c00142{bottom:490.108500px;}
.y2d_c00142{bottom:491.170500px;}
.y2e_c00142{bottom:491.392500px;}
.y2f_c00142{bottom:491.605500px;}
.y22_c00142{bottom:505.980000px;}
.y23_c00142{bottom:507.097500px;}
.y24_c00142{bottom:508.108500px;}
.y25_c00142{bottom:508.435500px;}
.y26_c00142{bottom:508.933500px;}
.y27_c00142{bottom:510.048000px;}
.y19_c00142{bottom:523.533000px;}
.y1a_c00142{bottom:524.436000px;}
.y1b_c00142{bottom:524.844000px;}
.y1c_c00142{bottom:525.571500px;}
.y1d_c00142{bottom:526.002000px;}
.y1e_c00142{bottom:527.094000px;}
.y1f_c00142{bottom:528.964500px;}
.y20_c00142{bottom:529.252500px;}
.y21_c00142{bottom:529.618500px;}
.y12_c00142{bottom:540.813000px;}
.y13_c00142{bottom:542.104500px;}
.y14_c00142{bottom:543.550500px;}
.y15_c00142{bottom:543.954000px;}
.y16_c00142{bottom:545.320500px;}
.y17_c00142{bottom:546.108000px;}
.y18_c00142{bottom:547.170000px;}
.yb_c00142{bottom:558.360000px;}
.yc_c00142{bottom:559.650000px;}
.yd_c00142{bottom:560.238000px;}
.ye_c00142{bottom:561.241500px;}
.yf_c00142{bottom:561.642000px;}
.y10_c00142{bottom:562.129500px;}
.y11_c00142{bottom:563.295000px;}
.y2_c00142{bottom:575.914500px;}
.y3_c00142{bottom:577.393500px;}
.y4_c00142{bottom:578.380500px;}
.y5_c00142{bottom:579.423000px;}
.y6_c00142{bottom:579.843000px;}
.y7_c00142{bottom:581.040000px;}
.y8_c00142{bottom:581.259000px;}
.y9_c00142{bottom:581.455500px;}
.ya_c00142{bottom:581.869500px;}
.y1_c00142{bottom:593.467500px;}
.h9_c00142{height:54.610919px;}
.h4_c00142{height:59.850000px;}
.h11_c00142{height:59.855057px;}
.h5_c00142{height:60.900000px;}
.h3_c00142{height:61.950000px;}
.h14_c00142{height:61.955235px;}
.h8_c00142{height:61.962389px;}
.he_c00142{height:64.055412px;}
.hf_c00142{height:66.155589px;}
.h7_c00142{height:67.200000px;}
.h15_c00142{height:67.205678px;}
.h6_c00142{height:68.250000px;}
.hd_c00142{height:69.305856px;}
.hb_c00142{height:69.313859px;}
.h10_c00142{height:70.355944px;}
.ha_c00142{height:70.364069px;}
.h12_c00142{height:71.406033px;}
.h13_c00142{height:74.556299px;}
.hc_c00142{height:74.564909px;}
.h2_c00142{height:79.800000px;}
.h16_c00142{height:92.407807px;}
.h0_c00142{height:633.690000px;}
.h1_c00142{height:633.750000px;}
.w1_c00142{width:383.250000px;}
.w0_c00142{width:383.400000px;}
.x0_c00142{left:0.000000px;}
.x69_c00142{left:25.378419px;}
.x2_c00142{left:32.677500px;}
.x4e_c00142{left:34.287067px;}
.x5a_c00142{left:35.638288px;}
.x2d_c00142{left:39.123000px;}
.x6c_c00142{left:42.389912px;}
.x41_c00142{left:55.211790px;}
.x48_c00142{left:59.014500px;}
.x2b_c00142{left:61.744500px;}
.x62_c00142{left:62.908172px;}
.x5b_c00142{left:65.070261px;}
.x5e_c00142{left:69.660167px;}
.x24_c00142{left:70.984500px;}
.x53_c00142{left:72.899820px;}
.x17_c00142{left:74.032500px;}
.x57_c00142{left:76.142003px;}
.x34_c00142{left:77.717520px;}
.x2e_c00142{left:80.964000px;}
.x2c_c00142{left:82.807500px;}
.x73_c00142{left:85.323857px;}
.x42_c00142{left:86.799120px;}
.x11_c00142{left:89.125500px;}
.x54_c00142{left:90.721323px;}
.x18_c00142{left:92.611500px;}
.x65_c00142{left:93.962513px;}
.x3a_c00142{left:97.592850px;}
.x3_c00142{left:103.083000px;}
.x79_c00142{left:105.577305px;}
.x4f_c00142{left:106.653294px;}
.xb_c00142{left:108.214500px;}
.x74_c00142{left:110.706646px;}
.x49_c00142{left:112.708500px;}
.x35_c00142{left:119.250360px;}
.x4b_c00142{left:121.942450px;}
.x19_c00142{left:125.704500px;}
.x25_c00142{left:128.484000px;}
.x2f_c00142{left:130.105500px;}
.x38_c00142{left:131.401890px;}
.x6d_c00142{left:132.577661px;}
.x5f_c00142{left:135.275262px;}
.x3b_c00142{left:137.022240px;}
.xc_c00142{left:142.788000px;}
.x1a_c00142{left:145.254000px;}
.x4_c00142{left:150.111000px;}
.x12_c00142{left:152.020500px;}
.x43_c00142{left:153.236910px;}
.x55_c00142{left:156.606458px;}
.x3c_c00142{left:158.084940px;}
.x5c_c00142{left:160.118829px;}
.x26_c00142{left:161.895000px;}
.x60_c00142{left:164.167137px;}
.x1e_c00142{left:165.708000px;}
.x58_c00142{left:167.139888px;}
.x13_c00142{left:169.561500px;}
.x1_c00142{left:170.910000px;}
.x50_c00142{left:172.268390px;}
.x3d_c00142{left:175.074330px;}
.x6a_c00142{left:177.130562px;}
.x30_c00142{left:179.814000px;}
.x36_c00142{left:182.689650px;}
.x1f_c00142{left:186.187500px;}
.x75_c00142{left:188.203751px;}
.x6e_c00142{left:189.552794px;}
.x71_c00142{left:193.872431px;}
.x1b_c00142{left:194.898000px;}
.x61_c00142{left:196.029519px;}
.x31_c00142{left:197.625000px;}
.x5_c00142{left:199.786500px;}
.xd_c00142{left:201.837000px;}
.x77_c00142{left:203.055558px;}
.x44_c00142{left:205.354320px;}
.x66_c00142{left:206.562545px;}
.x27_c00142{left:208.914000px;}
.x63_c00142{left:214.121717px;}
.x3e_c00142{left:215.613930px;}
.x20_c00142{left:217.303500px;}
.x6_c00142{left:219.786000px;}
.x28_c00142{left:220.861500px;}
.x39_c00142{left:222.330780px;}
.xe_c00142{left:225.403500px;}
.x14_c00142{left:228.999000px;}
.x3f_c00142{left:231.286050px;}
.x78_c00142{left:233.279954px;}
.x32_c00142{left:235.941000px;}
.x21_c00142{left:238.012500px;}
.x6f_c00142{left:239.236698px;}
.x37_c00142{left:242.360850px;}
.x45_c00142{left:243.967530px;}
.x6b_c00142{left:246.256926px;}
.x64_c00142{left:249.224645px;}
.x22_c00142{left:251.848500px;}
.xf_c00142{left:254.103000px;}
.x46_c00142{left:257.167170px;}
.x59_c00142{left:258.407793px;}
.x15_c00142{left:263.209500px;}
.x23_c00142{left:265.119000px;}
.x76_c00142{left:266.781030px;}
.x4c_c00142{left:274.522972px;}
.x7_c00142{left:276.808500px;}
.x47_c00142{left:278.550930px;}
.x1c_c00142{left:279.889500px;}
.x67_c00142{left:284.599727px;}
.x8_c00142{left:287.268000px;}
.x51_c00142{left:289.727721px;}
.x5d_c00142{left:291.078961px;}
.x1d_c00142{left:292.968000px;}
.x4d_c00142{left:293.975965px;}
.x40_c00142{left:295.293360px;}
.x9_c00142{left:296.646000px;}
.x29_c00142{left:298.609500px;}
.x68_c00142{left:305.121697px;}
.x4a_c00142{left:306.921000px;}
.x16_c00142{left:309.355500px;}
.x2a_c00142{left:310.759500px;}
.x72_c00142{left:313.763769px;}
.xa_c00142{left:316.353000px;}
.x33_c00142{left:318.943500px;}
.x52_c00142{left:320.241078px;}
.x10_c00142{left:322.639500px;}
.x56_c00142{left:326.183122px;}
.x70_c00142{left:331.044701px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
.fs7_c00142{font-size:48.543039pt;}
.fs2_c00142{font-size:53.200000pt;}
.fsf_c00142{font-size:53.204495pt;}
.fs3_c00142{font-size:54.133333pt;}
.fs1_c00142{font-size:55.066667pt;}
.fs12_c00142{font-size:55.071320pt;}
.fs6_c00142{font-size:55.077679pt;}
.fsc_c00142{font-size:56.938144pt;}
.fsd_c00142{font-size:58.804968pt;}
.fs5_c00142{font-size:59.733333pt;}
.fs13_c00142{font-size:59.738381pt;}
.fs4_c00142{font-size:60.666667pt;}
.fsb_c00142{font-size:61.605205pt;}
.fs9_c00142{font-size:61.612319pt;}
.fse_c00142{font-size:62.538617pt;}
.fs8_c00142{font-size:62.545839pt;}
.fs10_c00142{font-size:63.472029pt;}
.fs11_c00142{font-size:66.272266pt;}
.fsa_c00142{font-size:66.279919pt;}
.fs0_c00142{font-size:70.933333pt;}
.fs14_c00142{font-size:82.140273pt;}
.y0_c00142{bottom:0.000000pt;}
.ye9_c00142{bottom:32.505408pt;}
.yea_c00142{bottom:32.505489pt;}
.ye8_c00142{bottom:32.505744pt;}
.yec_c00142{bottom:32.505803pt;}
.yeb_c00142{bottom:32.506060pt;}
.yed_c00142{bottom:32.506133pt;}
.ye0_c00142{bottom:43.658980pt;}
.ye1_c00142{bottom:44.062736pt;}
.ye2_c00142{bottom:44.683760pt;}
.ye3_c00142{bottom:45.121916pt;}
.ye4_c00142{bottom:45.548236pt;}
.ye5_c00142{bottom:46.485863pt;}
.ye6_c00142{bottom:47.410960pt;}
.ye7_c00142{bottom:47.767596pt;}
.yd7_c00142{bottom:64.764537pt;}
.yde_c00142{bottom:64.764721pt;}
.ydb_c00142{bottom:64.764772pt;}
.ydd_c00142{bottom:64.764809pt;}
.ydf_c00142{bottom:64.765043pt;}
.yd8_c00142{bottom:64.765063pt;}
.ydc_c00142{bottom:64.765084pt;}
.yda_c00142{bottom:64.765243pt;}
.yd9_c00142{bottom:64.765481pt;}
.yd4_c00142{bottom:80.309284pt;}
.yd5_c00142{bottom:80.309303pt;}
.yd3_c00142{bottom:80.309452pt;}
.yd6_c00142{bottom:80.309579pt;}
.yd2_c00142{bottom:80.310081pt;}
.yd1_c00142{bottom:80.310152pt;}
.yd0_c00142{bottom:80.310684pt;}
.ycf_c00142{bottom:96.052116pt;}
.yce_c00142{bottom:96.052372pt;}
.ycb_c00142{bottom:96.052439pt;}
.ycc_c00142{bottom:96.052556pt;}
.ycd_c00142{bottom:96.052576pt;}
.yca_c00142{bottom:96.052989pt;}
.yc6_c00142{bottom:112.060311pt;}
.yc5_c00142{bottom:112.060895pt;}
.yc9_c00142{bottom:112.060927pt;}
.yc7_c00142{bottom:112.060960pt;}
.yc8_c00142{bottom:112.060971pt;}
.yc4_c00142{bottom:112.061507pt;}
.yc1_c00142{bottom:127.166984pt;}
.yc2_c00142{bottom:127.167376pt;}
.yc0_c00142{bottom:127.167623pt;}
.yc3_c00142{bottom:127.167697pt;}
.ybf_c00142{bottom:127.168021pt;}
.ybe_c00142{bottom:127.168207pt;}
.ybc_c00142{bottom:127.168695pt;}
.ybd_c00142{bottom:127.168820pt;}
.yb7_c00142{bottom:142.311927pt;}
.ybb_c00142{bottom:142.311985pt;}
.yb8_c00142{bottom:142.312311pt;}
.yba_c00142{bottom:142.312509pt;}
.yb9_c00142{bottom:142.312685pt;}
.yb5_c00142{bottom:157.129840pt;}
.yb6_c00142{bottom:157.130260pt;}
.yb3_c00142{bottom:157.130363pt;}
.yb4_c00142{bottom:157.130497pt;}
.yb1_c00142{bottom:157.130547pt;}
.yb2_c00142{bottom:157.130760pt;}
.yac_c00142{bottom:173.748017pt;}
.yb0_c00142{bottom:173.748064pt;}
.yad_c00142{bottom:173.748080pt;}
.yaa_c00142{bottom:173.748113pt;}
.yab_c00142{bottom:173.748248pt;}
.yaf_c00142{bottom:173.748295pt;}
.ya9_c00142{bottom:173.748415pt;}
.yae_c00142{bottom:173.748525pt;}
.ya8_c00142{bottom:173.748760pt;}
.ya1_c00142{bottom:189.176232pt;}
.ya0_c00142{bottom:189.176240pt;}
.ya4_c00142{bottom:189.176627pt;}
.ya2_c00142{bottom:189.176829pt;}
.ya6_c00142{bottom:189.176859pt;}
.ya5_c00142{bottom:189.177089pt;}
.ya3_c00142{bottom:189.177239pt;}
.ya7_c00142{bottom:189.177429pt;}
.y9e_c00142{bottom:204.709165pt;}
.y9a_c00142{bottom:204.709624pt;}
.y9d_c00142{bottom:204.709796pt;}
.y9f_c00142{bottom:204.709807pt;}
.y9b_c00142{bottom:204.710096pt;}
.y99_c00142{bottom:204.710200pt;}
.y9c_c00142{bottom:204.710221pt;}
.y98_c00142{bottom:204.710421pt;}
.y96_c00142{bottom:220.857556pt;}
.y97_c00142{bottom:220.857780pt;}
.y93_c00142{bottom:220.857908pt;}
.y94_c00142{bottom:220.858052pt;}
.y95_c00142{bottom:220.858133pt;}
.y91_c00142{bottom:220.858520pt;}
.y92_c00142{bottom:220.858565pt;}
.y8c_c00142{bottom:236.459123pt;}
.y8b_c00142{bottom:236.459140pt;}
.y8a_c00142{bottom:236.459583pt;}
.y8d_c00142{bottom:236.459692pt;}
.y89_c00142{bottom:236.459787pt;}
.y88_c00142{bottom:236.460221pt;}
.y8e_c00142{bottom:236.460280pt;}
.y8f_c00142{bottom:236.460299pt;}
.y90_c00142{bottom:236.460495pt;}
.y87_c00142{bottom:252.471368pt;}
.y86_c00142{bottom:252.471607pt;}
.y85_c00142{bottom:252.471615pt;}
.y81_c00142{bottom:252.471700pt;}
.y84_c00142{bottom:252.471765pt;}
.y83_c00142{bottom:252.472147pt;}
.y80_c00142{bottom:252.472215pt;}
.y82_c00142{bottom:252.472269pt;}
.y7e_c00142{bottom:268.339653pt;}
.y78_c00142{bottom:268.339835pt;}
.y7f_c00142{bottom:268.340064pt;}
.y7d_c00142{bottom:268.340124pt;}
.y7c_c00142{bottom:268.340239pt;}
.y79_c00142{bottom:268.340244pt;}
.y7a_c00142{bottom:268.340299pt;}
.y7b_c00142{bottom:268.340709pt;}
.y74_c00142{bottom:284.423831pt;}
.y75_c00142{bottom:284.424089pt;}
.y73_c00142{bottom:284.424096pt;}
.y70_c00142{bottom:284.424316pt;}
.y72_c00142{bottom:284.424407pt;}
.y76_c00142{bottom:284.424491pt;}
.y71_c00142{bottom:284.424557pt;}
.y77_c00142{bottom:284.424909pt;}
.y6a_c00142{bottom:297.588627pt;}
.y6b_c00142{bottom:298.780811pt;}
.y6c_c00142{bottom:299.587743pt;}
.y6d_c00142{bottom:299.886911pt;}
.y6e_c00142{bottom:300.816009pt;}
.y6f_c00142{bottom:301.075472pt;}
.y64_c00142{bottom:312.001333pt;}
.y65_c00142{bottom:312.621797pt;}
.y66_c00142{bottom:313.096523pt;}
.y67_c00142{bottom:313.389976pt;}
.y68_c00142{bottom:314.513089pt;}
.y69_c00142{bottom:314.866031pt;}
.y5b_c00142{bottom:326.629600pt;}
.y5c_c00142{bottom:326.821413pt;}
.y5d_c00142{bottom:327.101520pt;}
.y5e_c00142{bottom:327.501760pt;}
.y5f_c00142{bottom:327.691733pt;}
.y60_c00142{bottom:328.155413pt;}
.y61_c00142{bottom:328.499067pt;}
.y62_c00142{bottom:328.616347pt;}
.y63_c00142{bottom:328.807093pt;}
.y53_c00142{bottom:342.471467pt;}
.y54_c00142{bottom:343.045040pt;}
.y55_c00142{bottom:343.395200pt;}
.y56_c00142{bottom:343.582907pt;}
.y57_c00142{bottom:343.734213pt;}
.y58_c00142{bottom:344.094773pt;}
.y59_c00142{bottom:344.234667pt;}
.y5a_c00142{bottom:344.803013pt;}
.y4b_c00142{bottom:358.074080pt;}
.y4c_c00142{bottom:358.669920pt;}
.y4d_c00142{bottom:359.295013pt;}
.y4e_c00142{bottom:360.164853pt;}
.y4f_c00142{bottom:360.427333pt;}
.y50_c00142{bottom:360.666507pt;}
.y51_c00142{bottom:361.378453pt;}
.y52_c00142{bottom:361.688133pt;}
.y43_c00142{bottom:372.481227pt;}
.y44_c00142{bottom:373.251920pt;}
.y45_c00142{bottom:373.952933pt;}
.y46_c00142{bottom:374.728720pt;}
.y47_c00142{bottom:375.023387pt;}
.y48_c00142{bottom:376.030853pt;}
.y49_c00142{bottom:376.405120pt;}
.y4a_c00142{bottom:377.191147pt;}
.y3c_c00142{bottom:388.084000pt;}
.y3d_c00142{bottom:388.827840pt;}
.y3e_c00142{bottom:389.701467pt;}
.y3f_c00142{bottom:390.585173pt;}
.y40_c00142{bottom:390.901813pt;}
.y41_c00142{bottom:391.582987pt;}
.y42_c00142{bottom:393.058587pt;}
.y38_c00142{bottom:402.958667pt;}
.y39_c00142{bottom:403.348000pt;}
.y3a_c00142{bottom:403.629333pt;}
.y3b_c00142{bottom:406.202667pt;}
.y30_c00142{bottom:418.560000pt;}
.y31_c00142{bottom:419.209333pt;}
.y32_c00142{bottom:420.180000pt;}
.y33_c00142{bottom:420.744000pt;}
.y34_c00142{bottom:421.538667pt;}
.y35_c00142{bottom:421.740000pt;}
.y36_c00142{bottom:423.053333pt;}
.y37_c00142{bottom:423.258667pt;}
.y28_c00142{bottom:433.678667pt;}
.y29_c00142{bottom:434.270667pt;}
.y2a_c00142{bottom:434.530667pt;}
.y2b_c00142{bottom:435.252000pt;}
.y2c_c00142{bottom:435.652000pt;}
.y2d_c00142{bottom:436.596000pt;}
.y2e_c00142{bottom:436.793333pt;}
.y2f_c00142{bottom:436.982667pt;}
.y22_c00142{bottom:449.760000pt;}
.y23_c00142{bottom:450.753333pt;}
.y24_c00142{bottom:451.652000pt;}
.y25_c00142{bottom:451.942667pt;}
.y26_c00142{bottom:452.385333pt;}
.y27_c00142{bottom:453.376000pt;}
.y19_c00142{bottom:465.362667pt;}
.y1a_c00142{bottom:466.165333pt;}
.y1b_c00142{bottom:466.528000pt;}
.y1c_c00142{bottom:467.174667pt;}
.y1d_c00142{bottom:467.557333pt;}
.y1e_c00142{bottom:468.528000pt;}
.y1f_c00142{bottom:470.190667pt;}
.y20_c00142{bottom:470.446667pt;}
.y21_c00142{bottom:470.772000pt;}
.y12_c00142{bottom:480.722667pt;}
.y13_c00142{bottom:481.870667pt;}
.y14_c00142{bottom:483.156000pt;}
.y15_c00142{bottom:483.514667pt;}
.y16_c00142{bottom:484.729333pt;}
.y17_c00142{bottom:485.429333pt;}
.y18_c00142{bottom:486.373333pt;}
.yb_c00142{bottom:496.320000pt;}
.yc_c00142{bottom:497.466667pt;}
.yd_c00142{bottom:497.989333pt;}
.ye_c00142{bottom:498.881333pt;}
.yf_c00142{bottom:499.237333pt;}
.y10_c00142{bottom:499.670667pt;}
.y11_c00142{bottom:500.706667pt;}
.y2_c00142{bottom:511.924000pt;}
.y3_c00142{bottom:513.238667pt;}
.y4_c00142{bottom:514.116000pt;}
.y5_c00142{bottom:515.042667pt;}
.y6_c00142{bottom:515.416000pt;}
.y7_c00142{bottom:516.480000pt;}
.y8_c00142{bottom:516.674667pt;}
.y9_c00142{bottom:516.849333pt;}
.ya_c00142{bottom:517.217333pt;}
.y1_c00142{bottom:527.526667pt;}
.h9_c00142{height:48.543039pt;}
.h4_c00142{height:53.200000pt;}
.h11_c00142{height:53.204495pt;}
.h5_c00142{height:54.133333pt;}
.h3_c00142{height:55.066667pt;}
.h14_c00142{height:55.071320pt;}
.h8_c00142{height:55.077679pt;}
.he_c00142{height:56.938144pt;}
.hf_c00142{height:58.804968pt;}
.h7_c00142{height:59.733333pt;}
.h15_c00142{height:59.738381pt;}
.h6_c00142{height:60.666667pt;}
.hd_c00142{height:61.605205pt;}
.hb_c00142{height:61.612319pt;}
.h10_c00142{height:62.538617pt;}
.ha_c00142{height:62.545839pt;}
.h12_c00142{height:63.472029pt;}
.h13_c00142{height:66.272266pt;}
.hc_c00142{height:66.279919pt;}
.h2_c00142{height:70.933333pt;}
.h16_c00142{height:82.140273pt;}
.h0_c00142{height:563.280000pt;}
.h1_c00142{height:563.333333pt;}
.w1_c00142{width:340.666667pt;}
.w0_c00142{width:340.800000pt;}
.x0_c00142{left:0.000000pt;}
.x69_c00142{left:22.558595pt;}
.x2_c00142{left:29.046667pt;}
.x4e_c00142{left:30.477393pt;}
.x5a_c00142{left:31.678479pt;}
.x2d_c00142{left:34.776000pt;}
.x6c_c00142{left:37.679921pt;}
.x41_c00142{left:49.077147pt;}
.x48_c00142{left:52.457333pt;}
.x2b_c00142{left:54.884000pt;}
.x62_c00142{left:55.918375pt;}
.x5b_c00142{left:57.840232pt;}
.x5e_c00142{left:61.920148pt;}
.x24_c00142{left:63.097333pt;}
.x53_c00142{left:64.799840pt;}
.x17_c00142{left:65.806667pt;}
.x57_c00142{left:67.681780pt;}
.x34_c00142{left:69.082240pt;}
.x2e_c00142{left:71.968000pt;}
.x2c_c00142{left:73.606667pt;}
.x73_c00142{left:75.843428pt;}
.x42_c00142{left:77.154773pt;}
.x11_c00142{left:79.222667pt;}
.x54_c00142{left:80.641176pt;}
.x18_c00142{left:82.321333pt;}
.x65_c00142{left:83.522233pt;}
.x3a_c00142{left:86.749200pt;}
.x3_c00142{left:91.629333pt;}
.x79_c00142{left:93.846493pt;}
.x4f_c00142{left:94.802928pt;}
.xb_c00142{left:96.190667pt;}
.x74_c00142{left:98.405908pt;}
.x49_c00142{left:100.185333pt;}
.x35_c00142{left:106.000320pt;}
.x4b_c00142{left:108.393289pt;}
.x19_c00142{left:111.737333pt;}
.x25_c00142{left:114.208000pt;}
.x2f_c00142{left:115.649333pt;}
.x38_c00142{left:116.801680pt;}
.x6d_c00142{left:117.846809pt;}
.x5f_c00142{left:120.244677pt;}
.x3b_c00142{left:121.797547pt;}
.xc_c00142{left:126.922667pt;}
.x1a_c00142{left:129.114667pt;}
.x4_c00142{left:133.432000pt;}
.x12_c00142{left:135.129333pt;}
.x43_c00142{left:136.210587pt;}
.x55_c00142{left:139.205740pt;}
.x3c_c00142{left:140.519947pt;}
.x5c_c00142{left:142.327848pt;}
.x26_c00142{left:143.906667pt;}
.x60_c00142{left:145.926344pt;}
.x1e_c00142{left:147.296000pt;}
.x58_c00142{left:148.568789pt;}
.x13_c00142{left:150.721333pt;}
.x1_c00142{left:151.920000pt;}
.x50_c00142{left:153.127457pt;}
.x3d_c00142{left:155.621627pt;}
.x6a_c00142{left:157.449388pt;}
.x30_c00142{left:159.834667pt;}
.x36_c00142{left:162.390800pt;}
.x1f_c00142{left:165.500000pt;}
.x75_c00142{left:167.292223pt;}
.x6e_c00142{left:168.491372pt;}
.x71_c00142{left:172.331049pt;}
.x1b_c00142{left:173.242667pt;}
.x61_c00142{left:174.248461pt;}
.x31_c00142{left:175.666667pt;}
.x5_c00142{left:177.588000pt;}
.xd_c00142{left:179.410667pt;}
.x77_c00142{left:180.493829pt;}
.x44_c00142{left:182.537173pt;}
.x66_c00142{left:183.611151pt;}
.x27_c00142{left:185.701333pt;}
.x63_c00142{left:190.330415pt;}
.x3e_c00142{left:191.656827pt;}
.x20_c00142{left:193.158667pt;}
.x6_c00142{left:195.365333pt;}
.x28_c00142{left:196.321333pt;}
.x39_c00142{left:197.627360pt;}
.xe_c00142{left:200.358667pt;}
.x14_c00142{left:203.554667pt;}
.x3f_c00142{left:205.587600pt;}
.x78_c00142{left:207.359959pt;}
.x32_c00142{left:209.725333pt;}
.x21_c00142{left:211.566667pt;}
.x6f_c00142{left:212.654843pt;}
.x37_c00142{left:215.431867pt;}
.x45_c00142{left:216.860027pt;}
.x6b_c00142{left:218.895045pt;}
.x64_c00142{left:221.533017pt;}
.x22_c00142{left:223.865333pt;}
.xf_c00142{left:225.869333pt;}
.x46_c00142{left:228.593040pt;}
.x59_c00142{left:229.695816pt;}
.x15_c00142{left:233.964000pt;}
.x23_c00142{left:235.661333pt;}
.x76_c00142{left:237.138693pt;}
.x4c_c00142{left:244.020420pt;}
.x7_c00142{left:246.052000pt;}
.x47_c00142{left:247.600827pt;}
.x1c_c00142{left:248.790667pt;}
.x67_c00142{left:252.977535pt;}
.x8_c00142{left:255.349333pt;}
.x51_c00142{left:257.535752pt;}
.x5d_c00142{left:258.736855pt;}
.x1d_c00142{left:260.416000pt;}
.x4d_c00142{left:261.311969pt;}
.x40_c00142{left:262.482987pt;}
.x9_c00142{left:263.685333pt;}
.x29_c00142{left:265.430667pt;}
.x68_c00142{left:271.219287pt;}
.x4a_c00142{left:272.818667pt;}
.x16_c00142{left:274.982667pt;}
.x2a_c00142{left:276.230667pt;}
.x72_c00142{left:278.901128pt;}
.xa_c00142{left:281.202667pt;}
.x33_c00142{left:283.505333pt;}
.x52_c00142{left:284.658736pt;}
.x10_c00142{left:286.790667pt;}
.x56_c00142{left:289.940553pt;}
.x70_c00142{left:294.261956pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00143 {
    display:none;
  }
  .loading-indicator_c00143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00143 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00143 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00143" -> "#page-container .classname_c00143")
 */
.pf_c00143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00143 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00143 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00143 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00143 {overflow:visible;}
  }
}
.c_c00143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00143 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00143:after { /* webkit #35443 */
  content: '';
}
.t_c00143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00143 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00143 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00143 { /* info for Javascript */
  display:none;
}
.l_c00143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00143:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00143 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00143.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00143{transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027440,0.000000,0.000000,0.250000,0,0);}
.m70_c00143{transform:matrix(0.027975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027975,0.000000,0.000000,0.250000,0,0);}
.m55_c00143{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);}
.m77_c00143{transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.142995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142995,0.000000,0.000000,0.250000,0,0);}
.m93_c00143{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m68_c00143{transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);}
.m81_c00143{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.mc0_c00143{transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(0.150505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150505,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.152615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152615,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);}
.med_c00143{transform:matrix(0.154070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154070,0.000000,0.000000,0.250000,0,0);}
.m73_c00143{transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00143{transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);}
.m98_c00143{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.m7d_c00143{transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);}
.md6_c00143{transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);}
.m6a_c00143{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.mdb_c00143{transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);}
.m9a_c00143{transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);}
.m64_c00143{transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.mcc_c00143{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.m82_c00143{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.m8b_c00143{transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);}
.mc2_c00143{transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);}
.mdd_c00143{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m6b_c00143{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.mc8_c00143{transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);}
.mf1_c00143{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.mb0_c00143{transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.m95_c00143{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.m32_c00143{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.me2_c00143{transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);}
.m6c_c00143{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m52_c00143{transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);}
.mc5_c00143{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m69_c00143{transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);}
.mef_c00143{transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);}
.m65_c00143{transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);}
.m5a_c00143{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.mda_c00143{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00143{transform:matrix(0.171670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171670,0.000000,0.000000,0.250000,0,0);}
.m99_c00143{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00143{transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172785,0.000000,0.000000,0.250000,0,0);}
.m97_c00143{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m88_c00143{transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);}
.md8_c00143{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.mce_c00143{transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);}
.md7_c00143{transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);}
.m74_c00143{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m80_c00143{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);}
.m61_c00143{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.mbb_c00143{transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);}
.m76_c00143{transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);}
.m4b_c00143{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mc1_c00143{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.me7_c00143{transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);}
.mf0_c00143{transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);}
.m87_c00143{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.mba_c00143{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.m59_c00143{transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);}
.mc9_c00143{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.mee_c00143{transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);}
.md2_c00143{transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.mb3_c00143{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mde_c00143{transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);}
.me9_c00143{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.mb7_c00143{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m5c_c00143{transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m46_c00143{transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.me5_c00143{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);}
.m62_c00143{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.md3_c00143{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m7b_c00143{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00143{transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.mca_c00143{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m94_c00143{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.186290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186290,0.000000,0.000000,0.250000,0,0);}
.m96_c00143{transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);}
.maf_c00143{transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);}
.mcf_c00143{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m78_c00143{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.mdc_c00143{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.mae_c00143{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.ma9_c00143{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.mcd_c00143{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.m75_c00143{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.m5d_c00143{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.m3e_c00143{transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189935,0.000000,0.000000,0.250000,0,0);}
.md9_c00143{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.m6d_c00143{transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);}
.me6_c00143{transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);}
.m8c_c00143{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m90_c00143{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00143{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.ma0_c00143{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.m66_c00143{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m8e_c00143{transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00143{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.ma8_c00143{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.m9f_c00143{transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);}
.m58_c00143{transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);}
.m60_c00143{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.mb9_c00143{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.md0_c00143{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.mea_c00143{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m89_c00143{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);}
.m7c_c00143{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.mbf_c00143{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.mf2_c00143{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.md5_c00143{transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);}
.m72_c00143{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m4f_c00143{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.mc3_c00143{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m57_c00143{transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);}
.m49_c00143{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);}
.mcb_c00143{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00143{transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);}
.ma3_c00143{transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);}
.ma5_c00143{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m8d_c00143{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);}
.ma7_c00143{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);}
.md4_c00143{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.md1_c00143{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.m9b_c00143{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.mab_c00143{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.mc7_c00143{transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);}
.me8_c00143{transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.mb8_c00143{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.me0_c00143{transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.mb6_c00143{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.me1_c00143{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00143{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.m7f_c00143{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m9d_c00143{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.mb5_c00143{transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);}
.m5e_c00143{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.m54_c00143{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.maa_c00143{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00143{transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);}
.m84_c00143{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.ma4_c00143{transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);}
.m63_c00143{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);}
.m50_c00143{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.mad_c00143{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);}
.m92_c00143{transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);}
.mbc_c00143{transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);}
.ma2_c00143{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.mb4_c00143{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m86_c00143{transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);}
.m53_c00143{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.meb_c00143{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00143{transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);}
.mbd_c00143{transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);}
.m91_c00143{transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);}
.mec_c00143{transform:matrix(0.270755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270755,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.304320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304320,0.000000,0.000000,0.250000,0,0);}
.m79_c00143{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.m67_c00143{transform:matrix(0.311845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311845,0.000000,0.000000,0.250000,0,0);}
.mc6_c00143{transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);}
.m71_c00143{transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);}
.me4_c00143{transform:matrix(0.335290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335290,0.000000,0.000000,0.250000,0,0);}
.m9c_c00143{transform:matrix(0.367780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367780,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.387330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387330,0.000000,0.000000,0.250000,0,0);}
.m85_c00143{transform:matrix(0.509810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509810,0.000000,0.000000,0.250000,0,0);}
.me3_c00143{transform:matrix(0.542610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542610,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
.fc0_c00143{color:transparent;}
.fsa_c00143{font-size:54.600000px;}
.fsd_c00143{font-size:58.800000px;}
.fs5_c00143{font-size:59.850000px;}
.fs4_c00143{font-size:61.950000px;}
.fs0_c00143{font-size:63.000000px;}
.fsc_c00143{font-size:64.050000px;}
.fs8_c00143{font-size:65.100000px;}
.fsb_c00143{font-size:66.150000px;}
.fs7_c00143{font-size:68.250000px;}
.fs2_c00143{font-size:69.300000px;}
.fs1_c00143{font-size:70.350000px;}
.fs3_c00143{font-size:71.400000px;}
.fs9_c00143{font-size:72.450000px;}
.fs6_c00143{font-size:73.500000px;}
.y0_c00143{bottom:0.000000px;}
.y6b_c00143{bottom:35.617500px;}
.y6a_c00143{bottom:52.207500px;}
.y69_c00143{bottom:69.364500px;}
.y68_c00143{bottom:87.903000px;}
.y67_c00143{bottom:105.493500px;}
.y66_c00143{bottom:122.290500px;}
.y65_c00143{bottom:140.683500px;}
.y64_c00143{bottom:156.865500px;}
.y63_c00143{bottom:157.345500px;}
.y62_c00143{bottom:157.905000px;}
.y61_c00143{bottom:158.458500px;}
.y60_c00143{bottom:158.623500px;}
.y5f_c00143{bottom:158.769000px;}
.y5e_c00143{bottom:159.298500px;}
.y5d_c00143{bottom:175.623000px;}
.y5c_c00143{bottom:192.594000px;}
.y5b_c00143{bottom:209.322000px;}
.y5a_c00143{bottom:209.590500px;}
.y59_c00143{bottom:209.976000px;}
.y58_c00143{bottom:210.244500px;}
.y57_c00143{bottom:210.945000px;}
.y56_c00143{bottom:211.381500px;}
.y55_c00143{bottom:211.705500px;}
.y54_c00143{bottom:212.217000px;}
.y53_c00143{bottom:227.361000px;}
.y52_c00143{bottom:227.509500px;}
.y51_c00143{bottom:228.252000px;}
.y50_c00143{bottom:228.528000px;}
.y4f_c00143{bottom:228.910500px;}
.y4e_c00143{bottom:229.738500px;}
.y4d_c00143{bottom:229.981500px;}
.y4c_c00143{bottom:230.307000px;}
.y4b_c00143{bottom:244.828500px;}
.y4a_c00143{bottom:245.007000px;}
.y49_c00143{bottom:245.365500px;}
.y48_c00143{bottom:245.689500px;}
.y47_c00143{bottom:245.992500px;}
.y46_c00143{bottom:246.418500px;}
.y45_c00143{bottom:246.649500px;}
.y44_c00143{bottom:247.167000px;}
.y43_c00143{bottom:247.585500px;}
.y42_c00143{bottom:263.223000px;}
.y41_c00143{bottom:279.076500px;}
.y40_c00143{bottom:279.492000px;}
.y3f_c00143{bottom:280.015500px;}
.y3e_c00143{bottom:280.585500px;}
.y3d_c00143{bottom:281.367000px;}
.y3c_c00143{bottom:281.578500px;}
.y3b_c00143{bottom:282.145500px;}
.y3a_c00143{bottom:296.167500px;}
.y39_c00143{bottom:296.655000px;}
.y38_c00143{bottom:296.860500px;}
.y37_c00143{bottom:297.103500px;}
.y36_c00143{bottom:297.303000px;}
.y35_c00143{bottom:297.454500px;}
.y34_c00143{bottom:297.865500px;}
.y33_c00143{bottom:298.156500px;}
.y32_c00143{bottom:298.323000px;}
.y31_c00143{bottom:298.837500px;}
.y30_c00143{bottom:299.061000px;}
.y2f_c00143{bottom:299.428500px;}
.y2e_c00143{bottom:314.793000px;}
.y2d_c00143{bottom:331.564500px;}
.y2c_c00143{bottom:333.243000px;}
.y2b_c00143{bottom:333.448500px;}
.y2a_c00143{bottom:349.800000px;}
.y29_c00143{bottom:366.925500px;}
.y28_c00143{bottom:383.811000px;}
.y27_c00143{bottom:384.357000px;}
.y26_c00143{bottom:384.681000px;}
.y25_c00143{bottom:385.051500px;}
.y24_c00143{bottom:385.297500px;}
.y23_c00143{bottom:386.100000px;}
.y22_c00143{bottom:401.041500px;}
.y21_c00143{bottom:401.251500px;}
.y20_c00143{bottom:401.533500px;}
.y1f_c00143{bottom:402.273000px;}
.y1e_c00143{bottom:402.475500px;}
.y1d_c00143{bottom:403.242000px;}
.y1c_c00143{bottom:403.399500px;}
.y1b_c00143{bottom:403.920000px;}
.y1a_c00143{bottom:419.268000px;}
.y19_c00143{bottom:435.562500px;}
.y18_c00143{bottom:435.954000px;}
.y17_c00143{bottom:436.725000px;}
.y16_c00143{bottom:436.920000px;}
.y15_c00143{bottom:437.074500px;}
.y14_c00143{bottom:437.895000px;}
.y13_c00143{bottom:438.214500px;}
.y12_c00143{bottom:438.444000px;}
.y11_c00143{bottom:438.748500px;}
.y10_c00143{bottom:453.850500px;}
.yf_c00143{bottom:470.067000px;}
.ye_c00143{bottom:470.229000px;}
.yd_c00143{bottom:470.896500px;}
.yc_c00143{bottom:471.145500px;}
.yb_c00143{bottom:472.108500px;}
.ya_c00143{bottom:472.714500px;}
.y9_c00143{bottom:472.960500px;}
.y8_c00143{bottom:473.581500px;}
.y7_c00143{bottom:488.554500px;}
.y6_c00143{bottom:506.434500px;}
.y5_c00143{bottom:522.652500px;}
.y4_c00143{bottom:539.695500px;}
.y3_c00143{bottom:557.323500px;}
.y2_c00143{bottom:574.603500px;}
.y1_c00143{bottom:591.835500px;}
.hc_c00143{height:54.600000px;}
.hf_c00143{height:58.800000px;}
.h7_c00143{height:59.850000px;}
.h6_c00143{height:61.950000px;}
.h2_c00143{height:63.000000px;}
.he_c00143{height:64.050000px;}
.ha_c00143{height:65.100000px;}
.hd_c00143{height:66.150000px;}
.h9_c00143{height:68.250000px;}
.h4_c00143{height:69.300000px;}
.h3_c00143{height:70.350000px;}
.h5_c00143{height:71.400000px;}
.hb_c00143{height:72.450000px;}
.h8_c00143{height:73.500000px;}
.h0_c00143{height:633.420000px;}
.h1_c00143{height:633.750000px;}
.w1_c00143{width:383.250000px;}
.w0_c00143{width:383.400000px;}
.x0_c00143{left:0.000000px;}
.x65_c00143{left:30.777000px;}
.x7b_c00143{left:31.860000px;}
.x3_c00143{left:34.560000px;}
.x31_c00143{left:35.638500px;}
.x4e_c00143{left:37.152000px;}
.x25_c00143{left:44.550000px;}
.x11_c00143{left:46.710000px;}
.x4f_c00143{left:49.408500px;}
.x3c_c00143{left:55.620000px;}
.x37_c00143{left:61.734000px;}
.x49_c00143{left:65.338500px;}
.xb_c00143{left:67.230000px;}
.x66_c00143{left:68.307000px;}
.x54_c00143{left:70.846500px;}
.x26_c00143{left:73.710000px;}
.x32_c00143{left:74.788500px;}
.x6e_c00143{left:76.407000px;}
.x71_c00143{left:78.837000px;}
.x1e_c00143{left:80.190000px;}
.x45_c00143{left:82.618500px;}
.x50_c00143{left:83.968500px;}
.x2a_c00143{left:86.517000px;}
.x40_c00143{left:87.879000px;}
.x4_c00143{left:89.640000px;}
.x55_c00143{left:91.141500px;}
.xc_c00143{left:95.040000px;}
.x3d_c00143{left:96.660000px;}
.x46_c00143{left:100.708500px;}
.x41_c00143{left:103.558500px;}
.x5_c00143{left:105.570000px;}
.x2b_c00143{left:107.040000px;}
.x4a_c00143{left:109.348500px;}
.xd_c00143{left:114.210000px;}
.x5c_c00143{left:115.555500px;}
.x18_c00143{left:117.720000px;}
.x12_c00143{left:120.690000px;}
.x72_c00143{left:124.467000px;}
.x51_c00143{left:129.328500px;}
.x5e_c00143{left:131.941500px;}
.x33_c00143{left:133.648500px;}
.x27_c00143{left:135.270000px;}
.x56_c00143{left:137.854500px;}
.x69_c00143{left:139.857000px;}
.x44_c00143{left:141.355500px;}
.x13_c00143{left:142.560000px;}
.x1f_c00143{left:144.180000px;}
.x1_c00143{left:146.610000px;}
.x73_c00143{left:147.957000px;}
.x19_c00143{left:149.310000px;}
.x28_c00143{left:153.360000px;}
.x67_c00143{left:154.977000px;}
.x2c_c00143{left:157.539000px;}
.x79_c00143{left:161.190000px;}
.x6_c00143{left:163.890000px;}
.x2_c00143{left:167.940000px;}
.x75_c00143{left:169.020000px;}
.x6f_c00143{left:170.367000px;}
.xe_c00143{left:172.530000px;}
.x38_c00143{left:175.947000px;}
.x6d_c00143{left:176.982000px;}
.x3e_c00143{left:179.280000px;}
.x7_c00143{left:185.220000px;}
.x74_c00143{left:186.837000px;}
.x39_c00143{left:188.850000px;}
.x20_c00143{left:190.350000px;}
.x5f_c00143{left:191.611500px;}
.x47_c00143{left:193.318500px;}
.x1a_c00143{left:197.370000px;}
.x62_c00143{left:198.847500px;}
.x42_c00143{left:200.494500px;}
.x6a_c00143{left:201.687000px;}
.x3a_c00143{left:205.071000px;}
.x34_c00143{left:209.248500px;}
.x8_c00143{left:210.870000px;}
.x14_c00143{left:213.030000px;}
.x21_c00143{left:214.650000px;}
.x57_c00143{left:216.741000px;}
.x60_c00143{left:219.133500px;}
.x76_c00143{left:222.750000px;}
.x63_c00143{left:223.960500px;}
.x7a_c00143{left:227.340000px;}
.x58_c00143{left:230.452500px;}
.x4b_c00143{left:232.468500px;}
.x7c_c00143{left:236.520000px;}
.x2d_c00143{left:237.739500px;}
.x68_c00143{left:240.027000px;}
.x15_c00143{left:241.380000px;}
.x6b_c00143{left:247.317000px;}
.x59_c00143{left:248.544000px;}
.xf_c00143{left:250.560000px;}
.x52_c00143{left:252.448500px;}
.x1b_c00143{left:256.230000px;}
.x2e_c00143{left:258.529500px;}
.x22_c00143{left:260.820000px;}
.x9_c00143{left:265.410000px;}
.x35_c00143{left:270.268500px;}
.x1c_c00143{left:273.780000px;}
.x23_c00143{left:275.670000px;}
.x4c_c00143{left:278.908500px;}
.x10_c00143{left:279.990000px;}
.x61_c00143{left:281.197500px;}
.x16_c00143{left:284.040000px;}
.x77_c00143{left:287.280000px;}
.x36_c00143{left:288.358500px;}
.x64_c00143{left:291.517500px;}
.x24_c00143{left:293.220000px;}
.x29_c00143{left:294.300000px;}
.x53_c00143{left:295.378500px;}
.x3f_c00143{left:297.540000px;}
.xa_c00143{left:299.430000px;}
.x3b_c00143{left:301.981500px;}
.x4d_c00143{left:304.288500px;}
.x78_c00143{left:311.850000px;}
.x2f_c00143{left:314.190000px;}
.x5b_c00143{left:315.796500px;}
.x17_c00143{left:317.250000px;}
.x1d_c00143{left:318.600000px;}
.x5d_c00143{left:321.295500px;}
.x43_c00143{left:323.602500px;}
.x70_c00143{left:324.807000px;}
.x30_c00143{left:327.630000px;}
.x6c_c00143{left:328.857000px;}
.x48_c00143{left:329.938500px;}
.x5a_c00143{left:333.579000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
.fsa_c00143{font-size:48.533333pt;}
.fsd_c00143{font-size:52.266667pt;}
.fs5_c00143{font-size:53.200000pt;}
.fs4_c00143{font-size:55.066667pt;}
.fs0_c00143{font-size:56.000000pt;}
.fsc_c00143{font-size:56.933333pt;}
.fs8_c00143{font-size:57.866667pt;}
.fsb_c00143{font-size:58.800000pt;}
.fs7_c00143{font-size:60.666667pt;}
.fs2_c00143{font-size:61.600000pt;}
.fs1_c00143{font-size:62.533333pt;}
.fs3_c00143{font-size:63.466667pt;}
.fs9_c00143{font-size:64.400000pt;}
.fs6_c00143{font-size:65.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.y6b_c00143{bottom:31.660000pt;}
.y6a_c00143{bottom:46.406667pt;}
.y69_c00143{bottom:61.657333pt;}
.y68_c00143{bottom:78.136000pt;}
.y67_c00143{bottom:93.772000pt;}
.y66_c00143{bottom:108.702667pt;}
.y65_c00143{bottom:125.052000pt;}
.y64_c00143{bottom:139.436000pt;}
.y63_c00143{bottom:139.862667pt;}
.y62_c00143{bottom:140.360000pt;}
.y61_c00143{bottom:140.852000pt;}
.y60_c00143{bottom:140.998667pt;}
.y5f_c00143{bottom:141.128000pt;}
.y5e_c00143{bottom:141.598667pt;}
.y5d_c00143{bottom:156.109333pt;}
.y5c_c00143{bottom:171.194667pt;}
.y5b_c00143{bottom:186.064000pt;}
.y5a_c00143{bottom:186.302667pt;}
.y59_c00143{bottom:186.645333pt;}
.y58_c00143{bottom:186.884000pt;}
.y57_c00143{bottom:187.506667pt;}
.y56_c00143{bottom:187.894667pt;}
.y55_c00143{bottom:188.182667pt;}
.y54_c00143{bottom:188.637333pt;}
.y53_c00143{bottom:202.098667pt;}
.y52_c00143{bottom:202.230667pt;}
.y51_c00143{bottom:202.890667pt;}
.y50_c00143{bottom:203.136000pt;}
.y4f_c00143{bottom:203.476000pt;}
.y4e_c00143{bottom:204.212000pt;}
.y4d_c00143{bottom:204.428000pt;}
.y4c_c00143{bottom:204.717333pt;}
.y4b_c00143{bottom:217.625333pt;}
.y4a_c00143{bottom:217.784000pt;}
.y49_c00143{bottom:218.102667pt;}
.y48_c00143{bottom:218.390667pt;}
.y47_c00143{bottom:218.660000pt;}
.y46_c00143{bottom:219.038667pt;}
.y45_c00143{bottom:219.244000pt;}
.y44_c00143{bottom:219.704000pt;}
.y43_c00143{bottom:220.076000pt;}
.y42_c00143{bottom:233.976000pt;}
.y41_c00143{bottom:248.068000pt;}
.y40_c00143{bottom:248.437333pt;}
.y3f_c00143{bottom:248.902667pt;}
.y3e_c00143{bottom:249.409333pt;}
.y3d_c00143{bottom:250.104000pt;}
.y3c_c00143{bottom:250.292000pt;}
.y3b_c00143{bottom:250.796000pt;}
.y3a_c00143{bottom:263.260000pt;}
.y39_c00143{bottom:263.693333pt;}
.y38_c00143{bottom:263.876000pt;}
.y37_c00143{bottom:264.092000pt;}
.y36_c00143{bottom:264.269333pt;}
.y35_c00143{bottom:264.404000pt;}
.y34_c00143{bottom:264.769333pt;}
.y33_c00143{bottom:265.028000pt;}
.y32_c00143{bottom:265.176000pt;}
.y31_c00143{bottom:265.633333pt;}
.y30_c00143{bottom:265.832000pt;}
.y2f_c00143{bottom:266.158667pt;}
.y2e_c00143{bottom:279.816000pt;}
.y2d_c00143{bottom:294.724000pt;}
.y2c_c00143{bottom:296.216000pt;}
.y2b_c00143{bottom:296.398667pt;}
.y2a_c00143{bottom:310.933333pt;}
.y29_c00143{bottom:326.156000pt;}
.y28_c00143{bottom:341.165333pt;}
.y27_c00143{bottom:341.650667pt;}
.y26_c00143{bottom:341.938667pt;}
.y25_c00143{bottom:342.268000pt;}
.y24_c00143{bottom:342.486667pt;}
.y23_c00143{bottom:343.200000pt;}
.y22_c00143{bottom:356.481333pt;}
.y21_c00143{bottom:356.668000pt;}
.y20_c00143{bottom:356.918667pt;}
.y1f_c00143{bottom:357.576000pt;}
.y1e_c00143{bottom:357.756000pt;}
.y1d_c00143{bottom:358.437333pt;}
.y1c_c00143{bottom:358.577333pt;}
.y1b_c00143{bottom:359.040000pt;}
.y1a_c00143{bottom:372.682667pt;}
.y19_c00143{bottom:387.166667pt;}
.y18_c00143{bottom:387.514667pt;}
.y17_c00143{bottom:388.200000pt;}
.y16_c00143{bottom:388.373333pt;}
.y15_c00143{bottom:388.510667pt;}
.y14_c00143{bottom:389.240000pt;}
.y13_c00143{bottom:389.524000pt;}
.y12_c00143{bottom:389.728000pt;}
.y11_c00143{bottom:389.998667pt;}
.y10_c00143{bottom:403.422667pt;}
.yf_c00143{bottom:417.837333pt;}
.ye_c00143{bottom:417.981333pt;}
.yd_c00143{bottom:418.574667pt;}
.yc_c00143{bottom:418.796000pt;}
.yb_c00143{bottom:419.652000pt;}
.ya_c00143{bottom:420.190667pt;}
.y9_c00143{bottom:420.409333pt;}
.y8_c00143{bottom:420.961333pt;}
.y7_c00143{bottom:434.270667pt;}
.y6_c00143{bottom:450.164000pt;}
.y5_c00143{bottom:464.580000pt;}
.y4_c00143{bottom:479.729333pt;}
.y3_c00143{bottom:495.398667pt;}
.y2_c00143{bottom:510.758667pt;}
.y1_c00143{bottom:526.076000pt;}
.hc_c00143{height:48.533333pt;}
.hf_c00143{height:52.266667pt;}
.h7_c00143{height:53.200000pt;}
.h6_c00143{height:55.066667pt;}
.h2_c00143{height:56.000000pt;}
.he_c00143{height:56.933333pt;}
.ha_c00143{height:57.866667pt;}
.hd_c00143{height:58.800000pt;}
.h9_c00143{height:60.666667pt;}
.h4_c00143{height:61.600000pt;}
.h3_c00143{height:62.533333pt;}
.h5_c00143{height:63.466667pt;}
.hb_c00143{height:64.400000pt;}
.h8_c00143{height:65.333333pt;}
.h0_c00143{height:563.040000pt;}
.h1_c00143{height:563.333333pt;}
.w1_c00143{width:340.666667pt;}
.w0_c00143{width:340.800000pt;}
.x0_c00143{left:0.000000pt;}
.x65_c00143{left:27.357333pt;}
.x7b_c00143{left:28.320000pt;}
.x3_c00143{left:30.720000pt;}
.x31_c00143{left:31.678667pt;}
.x4e_c00143{left:33.024000pt;}
.x25_c00143{left:39.600000pt;}
.x11_c00143{left:41.520000pt;}
.x4f_c00143{left:43.918667pt;}
.x3c_c00143{left:49.440000pt;}
.x37_c00143{left:54.874667pt;}
.x49_c00143{left:58.078667pt;}
.xb_c00143{left:59.760000pt;}
.x66_c00143{left:60.717333pt;}
.x54_c00143{left:62.974667pt;}
.x26_c00143{left:65.520000pt;}
.x32_c00143{left:66.478667pt;}
.x6e_c00143{left:67.917333pt;}
.x71_c00143{left:70.077333pt;}
.x1e_c00143{left:71.280000pt;}
.x45_c00143{left:73.438667pt;}
.x50_c00143{left:74.638667pt;}
.x2a_c00143{left:76.904000pt;}
.x40_c00143{left:78.114667pt;}
.x4_c00143{left:79.680000pt;}
.x55_c00143{left:81.014667pt;}
.xc_c00143{left:84.480000pt;}
.x3d_c00143{left:85.920000pt;}
.x46_c00143{left:89.518667pt;}
.x41_c00143{left:92.052000pt;}
.x5_c00143{left:93.840000pt;}
.x2b_c00143{left:95.146667pt;}
.x4a_c00143{left:97.198667pt;}
.xd_c00143{left:101.520000pt;}
.x5c_c00143{left:102.716000pt;}
.x18_c00143{left:104.640000pt;}
.x12_c00143{left:107.280000pt;}
.x72_c00143{left:110.637333pt;}
.x51_c00143{left:114.958667pt;}
.x5e_c00143{left:117.281333pt;}
.x33_c00143{left:118.798667pt;}
.x27_c00143{left:120.240000pt;}
.x56_c00143{left:122.537333pt;}
.x69_c00143{left:124.317333pt;}
.x44_c00143{left:125.649333pt;}
.x13_c00143{left:126.720000pt;}
.x1f_c00143{left:128.160000pt;}
.x1_c00143{left:130.320000pt;}
.x73_c00143{left:131.517333pt;}
.x19_c00143{left:132.720000pt;}
.x28_c00143{left:136.320000pt;}
.x67_c00143{left:137.757333pt;}
.x2c_c00143{left:140.034667pt;}
.x79_c00143{left:143.280000pt;}
.x6_c00143{left:145.680000pt;}
.x2_c00143{left:149.280000pt;}
.x75_c00143{left:150.240000pt;}
.x6f_c00143{left:151.437333pt;}
.xe_c00143{left:153.360000pt;}
.x38_c00143{left:156.397333pt;}
.x6d_c00143{left:157.317333pt;}
.x3e_c00143{left:159.360000pt;}
.x7_c00143{left:164.640000pt;}
.x74_c00143{left:166.077333pt;}
.x39_c00143{left:167.866667pt;}
.x20_c00143{left:169.200000pt;}
.x5f_c00143{left:170.321333pt;}
.x47_c00143{left:171.838667pt;}
.x1a_c00143{left:175.440000pt;}
.x62_c00143{left:176.753333pt;}
.x42_c00143{left:178.217333pt;}
.x6a_c00143{left:179.277333pt;}
.x3a_c00143{left:182.285333pt;}
.x34_c00143{left:185.998667pt;}
.x8_c00143{left:187.440000pt;}
.x14_c00143{left:189.360000pt;}
.x21_c00143{left:190.800000pt;}
.x57_c00143{left:192.658667pt;}
.x60_c00143{left:194.785333pt;}
.x76_c00143{left:198.000000pt;}
.x63_c00143{left:199.076000pt;}
.x7a_c00143{left:202.080000pt;}
.x58_c00143{left:204.846667pt;}
.x4b_c00143{left:206.638667pt;}
.x7c_c00143{left:210.240000pt;}
.x2d_c00143{left:211.324000pt;}
.x68_c00143{left:213.357333pt;}
.x15_c00143{left:214.560000pt;}
.x6b_c00143{left:219.837333pt;}
.x59_c00143{left:220.928000pt;}
.xf_c00143{left:222.720000pt;}
.x52_c00143{left:224.398667pt;}
.x1b_c00143{left:227.760000pt;}
.x2e_c00143{left:229.804000pt;}
.x22_c00143{left:231.840000pt;}
.x9_c00143{left:235.920000pt;}
.x35_c00143{left:240.238667pt;}
.x1c_c00143{left:243.360000pt;}
.x23_c00143{left:245.040000pt;}
.x4c_c00143{left:247.918667pt;}
.x10_c00143{left:248.880000pt;}
.x61_c00143{left:249.953333pt;}
.x16_c00143{left:252.480000pt;}
.x77_c00143{left:255.360000pt;}
.x36_c00143{left:256.318667pt;}
.x64_c00143{left:259.126667pt;}
.x24_c00143{left:260.640000pt;}
.x29_c00143{left:261.600000pt;}
.x53_c00143{left:262.558667pt;}
.x3f_c00143{left:264.480000pt;}
.xa_c00143{left:266.160000pt;}
.x3b_c00143{left:268.428000pt;}
.x4d_c00143{left:270.478667pt;}
.x78_c00143{left:277.200000pt;}
.x2f_c00143{left:279.280000pt;}
.x5b_c00143{left:280.708000pt;}
.x17_c00143{left:282.000000pt;}
.x1d_c00143{left:283.200000pt;}
.x5d_c00143{left:285.596000pt;}
.x43_c00143{left:287.646667pt;}
.x70_c00143{left:288.717333pt;}
.x30_c00143{left:291.226667pt;}
.x6c_c00143{left:292.317333pt;}
.x48_c00143{left:293.278667pt;}
.x5a_c00143{left:296.514667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00144 {
    display:none;
  }
  .loading-indicator_c00144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00144 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00144 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00144" -> "#page-container .classname_c00144")
 */
.pf_c00144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00144 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00144 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00144 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00144 {overflow:visible;}
  }
}
.c_c00144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00144 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00144:after { /* webkit #35443 */
  content: '';
}
.t_c00144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00144 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00144 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00144 { /* info for Javascript */
  display:none;
}
.l_c00144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00144:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00144 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00144.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me7_c00144{transform:matrix(0.070240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070240,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);}
.mda_c00144{transform:matrix(0.127130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127130,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.131480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131480,0.000000,0.000000,0.250000,0,0);}
.md8_c00144{transform:matrix(0.138315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138315,0.000000,0.000000,0.250000,0,0);}
.m8a_c00144{transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);}
.md7_c00144{transform:matrix(0.147795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147795,0.000000,0.000000,0.250000,0,0);}
.md9_c00144{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00144{transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.mc5_c00144{transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00144{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);}
.m9f_c00144{transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);}
.m7b_c00144{transform:matrix(0.153230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153230,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m8b_c00144{transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);}
.mab_c00144{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00144{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155190,0.000000,0.000000,0.250000,0,0);}
.m9d_c00144{transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.ma1_c00144{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00144{transform:matrix(0.157420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157420,0.000000,0.000000,0.250000,0,0);}
.me2_c00144{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.m9a_c00144{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.mc1_c00144{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m46_c00144{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);}
.me0_c00144{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00144{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165770,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m99_c00144{transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.166030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166030,0.000000,0.000000,0.250000,0,0);}
.m7a_c00144{transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);}
.m7d_c00144{transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);}
.mdc_c00144{transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);}
.mcf_c00144{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.me1_c00144{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.mca_c00144{transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00144{transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);}
.ma0_c00144{transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);}
.m7e_c00144{transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);}
.mbb_c00144{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00144{transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);}
.m90_c00144{transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);}
.maa_c00144{transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00144{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m8c_c00144{transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);}
.mb3_c00144{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00144{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.mba_c00144{transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.m85_c00144{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.me8_c00144{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.mdf_c00144{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.me9_c00144{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m86_c00144{transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.mad_c00144{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);}
.mcc_c00144{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m68_c00144{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.mce_c00144{transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00144{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m93_c00144{transform:matrix(0.176285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176285,0.000000,0.000000,0.250000,0,0);}
.m8d_c00144{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.m5a_c00144{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.ma7_c00144{transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);}
.m5d_c00144{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);}
.md2_c00144{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.mdd_c00144{transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);}
.ma8_c00144{transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);}
.md4_c00144{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.mb0_c00144{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00144{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m71_c00144{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);}
.me4_c00144{transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.mdb_c00144{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m74_c00144{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.me6_c00144{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m6e_c00144{transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.m76_c00144{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.mee_c00144{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.mc6_c00144{transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);}
.ma5_c00144{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m83_c00144{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m87_c00144{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m4d_c00144{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m91_c00144{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00144{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.med_c00144{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.mbd_c00144{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.ma4_c00144{transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);}
.mb5_c00144{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.mde_c00144{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.mb2_c00144{transform:matrix(0.191235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191235,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.m79_c00144{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.ma9_c00144{transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);}
.m84_c00144{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.mef_c00144{transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);}
.m9c_c00144{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.mbf_c00144{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.mb1_c00144{transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);}
.m88_c00144{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m94_c00144{transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);}
.mbe_c00144{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);}
.mbc_c00144{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00144{transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);}
.me3_c00144{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);}
.m54_c00144{transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);}
.mc3_c00144{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m80_c00144{transform:matrix(0.200640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200640,0.000000,0.000000,0.250000,0,0);}
.mc2_c00144{transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);}
.mcd_c00144{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m59_c00144{transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);}
.mea_c00144{transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);}
.mb4_c00144{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m97_c00144{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m7f_c00144{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.m89_c00144{transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);}
.m63_c00144{transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);}
.m73_c00144{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m82_c00144{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.md6_c00144{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.m95_c00144{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m3c_c00144{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.md3_c00144{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m98_c00144{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m8f_c00144{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00144{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00144{transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.mb7_c00144{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.md1_c00144{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.md5_c00144{transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.me5_c00144{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00144{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);}
.mb8_c00144{transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);}
.mec_c00144{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.m81_c00144{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);}
.m77_c00144{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);}
.m6f_c00144{transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);}
.mae_c00144{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m92_c00144{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m6d_c00144{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m72_c00144{transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);}
.m75_c00144{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m65_c00144{transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);}
.m3e_c00144{transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(0.229795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229795,0.000000,0.000000,0.250000,0,0);}
.maf_c00144{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.m70_c00144{transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m5f_c00144{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m96_c00144{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.md0_c00144{transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);}
.m57_c00144{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00144{transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);}
.mc0_c00144{transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243760,0.000000,0.000000,0.250000,0,0);}
.mb6_c00144{transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);}
.mf0_c00144{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255925,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);}
.meb_c00144{transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);}
.mac_c00144{transform:matrix(0.317190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317190,0.000000,0.000000,0.250000,0,0);}
.m78_c00144{transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.396945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.416675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416675,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:0.000000px;}
.fc0_c00144{color:transparent;}
.fs9_c00144{font-size:57.750000px;}
.fs5_c00144{font-size:59.850000px;}
.fs1_c00144{font-size:60.900000px;}
.fs2_c00144{font-size:61.950000px;}
.fs3_c00144{font-size:63.000000px;}
.fs8_c00144{font-size:64.050000px;}
.fsb_c00144{font-size:65.100000px;}
.fs6_c00144{font-size:68.250000px;}
.fs7_c00144{font-size:69.300000px;}
.fsa_c00144{font-size:70.350000px;}
.fs4_c00144{font-size:71.400000px;}
.fs0_c00144{font-size:73.500000px;}
.fsc_c00144{font-size:76.650000px;}
.y0_c00144{bottom:0.000000px;}
.y44_c00144{bottom:36.292500px;}
.y43_c00144{bottom:36.832500px;}
.y42_c00144{bottom:37.680000px;}
.y41_c00144{bottom:38.029500px;}
.y40_c00144{bottom:38.703000px;}
.y3f_c00144{bottom:39.000000px;}
.y3e_c00144{bottom:40.509000px;}
.y3d_c00144{bottom:56.472000px;}
.y3c_c00144{bottom:70.374000px;}
.y3b_c00144{bottom:70.939500px;}
.y3a_c00144{bottom:71.158500px;}
.y39_c00144{bottom:72.088500px;}
.y38_c00144{bottom:72.454500px;}
.y37_c00144{bottom:73.210500px;}
.y36_c00144{bottom:73.617000px;}
.y35_c00144{bottom:74.506500px;}
.y34_c00144{bottom:74.778000px;}
.y33_c00144{bottom:75.066000px;}
.y32_c00144{bottom:91.227000px;}
.y31_c00144{bottom:107.167500px;}
.y30_c00144{bottom:107.907000px;}
.y2f_c00144{bottom:108.661500px;}
.y2e_c00144{bottom:108.885000px;}
.y2d_c00144{bottom:109.521000px;}
.y2c_c00144{bottom:110.164500px;}
.y2b_c00144{bottom:124.294500px;}
.y2a_c00144{bottom:124.524000px;}
.y29_c00144{bottom:125.128500px;}
.y28_c00144{bottom:125.692500px;}
.y27_c00144{bottom:125.997000px;}
.y26_c00144{bottom:126.267000px;}
.y25_c00144{bottom:126.399000px;}
.y24_c00144{bottom:126.924000px;}
.y23_c00144{bottom:127.174500px;}
.y22_c00144{bottom:142.573500px;}
.y21_c00144{bottom:143.506500px;}
.y20_c00144{bottom:143.752500px;}
.y1f_c00144{bottom:144.295500px;}
.y1e_c00144{bottom:144.492000px;}
.y1d_c00144{bottom:144.729000px;}
.y1c_c00144{bottom:145.263000px;}
.y1b_c00144{bottom:145.533000px;}
.y1a_c00144{bottom:159.541500px;}
.y19_c00144{bottom:176.815500px;}
.y18_c00144{bottom:194.565000px;}
.y17_c00144{bottom:212.113500px;}
.y16_c00144{bottom:229.240500px;}
.y15_c00144{bottom:246.558000px;}
.y14_c00144{bottom:264.378000px;}
.y13_c00144{bottom:282.088500px;}
.y12_c00144{bottom:299.836500px;}
.y11_c00144{bottom:317.418000px;}
.y10_c00144{bottom:334.413000px;}
.yf_c00144{bottom:351.372000px;}
.ye_c00144{bottom:368.128500px;}
.yd_c00144{bottom:385.099500px;}
.yc_c00144{bottom:402.225000px;}
.yb_c00144{bottom:419.377500px;}
.ya_c00144{bottom:436.480500px;}
.y9_c00144{bottom:454.797000px;}
.y8_c00144{bottom:470.947500px;}
.y7_c00144{bottom:488.647500px;}
.y6_c00144{bottom:505.657500px;}
.y5_c00144{bottom:523.474500px;}
.y4_c00144{bottom:540.517500px;}
.y3_c00144{bottom:558.183000px;}
.y2_c00144{bottom:575.322000px;}
.y1_c00144{bottom:589.950000px;}
.hb_c00144{height:57.750000px;}
.h7_c00144{height:59.850000px;}
.h3_c00144{height:60.900000px;}
.h4_c00144{height:61.950000px;}
.h5_c00144{height:63.000000px;}
.ha_c00144{height:64.050000px;}
.hd_c00144{height:65.100000px;}
.h8_c00144{height:68.250000px;}
.h9_c00144{height:69.300000px;}
.hc_c00144{height:70.350000px;}
.h6_c00144{height:71.400000px;}
.h2_c00144{height:73.500000px;}
.he_c00144{height:76.650000px;}
.h0_c00144{height:633.420000px;}
.h1_c00144{height:633.750000px;}
.w1_c00144{width:383.250000px;}
.w0_c00144{width:383.400000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:41.580000px;}
.x9_c00144{left:44.280000px;}
.x1f_c00144{left:45.630000px;}
.x33_c00144{left:47.250000px;}
.x6a_c00144{left:48.457500px;}
.x67_c00144{left:53.730000px;}
.x54_c00144{left:61.290000px;}
.x61_c00144{left:66.960000px;}
.x36_c00144{left:68.310000px;}
.x2c_c00144{left:70.470000px;}
.x2f_c00144{left:71.550000px;}
.x5c_c00144{left:72.900000px;}
.x71_c00144{left:73.977000px;}
.x46_c00144{left:75.060000px;}
.x10_c00144{left:76.410000px;}
.x20_c00144{left:78.300000px;}
.x25_c00144{left:80.460000px;}
.x3c_c00144{left:84.510000px;}
.x21_c00144{left:87.750000px;}
.xa_c00144{left:90.180000px;}
.x16_c00144{left:92.070000px;}
.x26_c00144{left:93.690000px;}
.x49_c00144{left:94.770000px;}
.x1c_c00144{left:99.090000px;}
.x4e_c00144{left:101.790000px;}
.xb_c00144{left:102.870000px;}
.x40_c00144{left:104.490000px;}
.x3d_c00144{left:105.570000px;}
.x3_c00144{left:106.650000px;}
.x11_c00144{left:108.000000px;}
.x37_c00144{left:112.860000px;}
.x4a_c00144{left:122.040000px;}
.x2d_c00144{left:123.390000px;}
.x4_c00144{left:125.010000px;}
.x4f_c00144{left:127.170000px;}
.x72_c00144{left:128.247000px;}
.x41_c00144{left:130.950000px;}
.x62_c00144{left:132.030000px;}
.x59_c00144{left:133.110000px;}
.x5d_c00144{left:137.700000px;}
.x27_c00144{left:138.780000px;}
.x6b_c00144{left:143.254500px;}
.x2e_c00144{left:144.450000px;}
.x12_c00144{left:146.340000px;}
.x42_c00144{left:148.230000px;}
.x30_c00144{left:150.660000px;}
.x5a_c00144{left:153.630000px;}
.x38_c00144{left:156.330000px;}
.x56_c00144{left:157.410000px;}
.x28_c00144{left:159.300000px;}
.xc_c00144{left:160.650000px;}
.x5_c00144{left:164.160000px;}
.x68_c00144{left:166.860000px;}
.x5e_c00144{left:168.210000px;}
.x1d_c00144{left:173.610000px;}
.xd_c00144{left:175.230000px;}
.x1_c00144{left:177.930000px;}
.x50_c00144{left:183.330000px;}
.x31_c00144{left:184.410000px;}
.x64_c00144{left:185.760000px;}
.x29_c00144{left:189.810000px;}
.x17_c00144{left:196.290000px;}
.x5f_c00144{left:200.880000px;}
.x39_c00144{left:203.580000px;}
.xe_c00144{left:205.740000px;}
.x53_c00144{left:206.820000px;}
.x2a_c00144{left:207.900000px;}
.x6_c00144{left:209.520000px;}
.x43_c00144{left:211.140000px;}
.x34_c00144{left:212.760000px;}
.x55_c00144{left:216.000000px;}
.x4b_c00144{left:220.320000px;}
.x51_c00144{left:221.670000px;}
.x6e_c00144{left:225.718500px;}
.x3a_c00144{left:227.610000px;}
.x22_c00144{left:231.390000px;}
.x6c_c00144{left:232.903500px;}
.x13_c00144{left:234.360000px;}
.x69_c00144{left:236.250000px;}
.x44_c00144{left:239.760000px;}
.x4c_c00144{left:240.840000px;}
.x35_c00144{left:242.730000px;}
.x47_c00144{left:244.620000px;}
.x14_c00144{left:248.400000px;}
.x7_c00144{left:251.100000px;}
.x6d_c00144{left:252.877500px;}
.x60_c00144{left:256.770000px;}
.x65_c00144{left:259.470000px;}
.x57_c00144{left:261.630000px;}
.x18_c00144{left:265.680000px;}
.x45_c00144{left:277.830000px;}
.x48_c00144{left:281.070000px;}
.x52_c00144{left:282.960000px;}
.x19_c00144{left:285.930000px;}
.x5b_c00144{left:289.710000px;}
.x6f_c00144{left:292.794000px;}
.x3b_c00144{left:294.840000px;}
.xf_c00144{left:296.730000px;}
.x73_c00144{left:298.617000px;}
.x4d_c00144{left:299.700000px;}
.x63_c00144{left:300.780000px;}
.x2b_c00144{left:304.290000px;}
.x1e_c00144{left:306.450000px;}
.x15_c00144{left:310.770000px;}
.x23_c00144{left:311.850000px;}
.x32_c00144{left:314.010000px;}
.x1a_c00144{left:315.630000px;}
.x58_c00144{left:317.520000px;}
.x3e_c00144{left:318.870000px;}
.x66_c00144{left:320.490000px;}
.x8_c00144{left:322.380000px;}
.x24_c00144{left:324.270000px;}
.x1b_c00144{left:332.910000px;}
.x74_c00144{left:334.527000px;}
.x3f_c00144{left:335.880000px;}
.x70_c00144{left:341.860500px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.fs9_c00144{font-size:51.333333pt;}
.fs5_c00144{font-size:53.200000pt;}
.fs1_c00144{font-size:54.133333pt;}
.fs2_c00144{font-size:55.066667pt;}
.fs3_c00144{font-size:56.000000pt;}
.fs8_c00144{font-size:56.933333pt;}
.fsb_c00144{font-size:57.866667pt;}
.fs6_c00144{font-size:60.666667pt;}
.fs7_c00144{font-size:61.600000pt;}
.fsa_c00144{font-size:62.533333pt;}
.fs4_c00144{font-size:63.466667pt;}
.fs0_c00144{font-size:65.333333pt;}
.fsc_c00144{font-size:68.133333pt;}
.y0_c00144{bottom:0.000000pt;}
.y44_c00144{bottom:32.260000pt;}
.y43_c00144{bottom:32.740000pt;}
.y42_c00144{bottom:33.493333pt;}
.y41_c00144{bottom:33.804000pt;}
.y40_c00144{bottom:34.402667pt;}
.y3f_c00144{bottom:34.666667pt;}
.y3e_c00144{bottom:36.008000pt;}
.y3d_c00144{bottom:50.197333pt;}
.y3c_c00144{bottom:62.554667pt;}
.y3b_c00144{bottom:63.057333pt;}
.y3a_c00144{bottom:63.252000pt;}
.y39_c00144{bottom:64.078667pt;}
.y38_c00144{bottom:64.404000pt;}
.y37_c00144{bottom:65.076000pt;}
.y36_c00144{bottom:65.437333pt;}
.y35_c00144{bottom:66.228000pt;}
.y34_c00144{bottom:66.469333pt;}
.y33_c00144{bottom:66.725333pt;}
.y32_c00144{bottom:81.090667pt;}
.y31_c00144{bottom:95.260000pt;}
.y30_c00144{bottom:95.917333pt;}
.y2f_c00144{bottom:96.588000pt;}
.y2e_c00144{bottom:96.786667pt;}
.y2d_c00144{bottom:97.352000pt;}
.y2c_c00144{bottom:97.924000pt;}
.y2b_c00144{bottom:110.484000pt;}
.y2a_c00144{bottom:110.688000pt;}
.y29_c00144{bottom:111.225333pt;}
.y28_c00144{bottom:111.726667pt;}
.y27_c00144{bottom:111.997333pt;}
.y26_c00144{bottom:112.237333pt;}
.y25_c00144{bottom:112.354667pt;}
.y24_c00144{bottom:112.821333pt;}
.y23_c00144{bottom:113.044000pt;}
.y22_c00144{bottom:126.732000pt;}
.y21_c00144{bottom:127.561333pt;}
.y20_c00144{bottom:127.780000pt;}
.y1f_c00144{bottom:128.262667pt;}
.y1e_c00144{bottom:128.437333pt;}
.y1d_c00144{bottom:128.648000pt;}
.y1c_c00144{bottom:129.122667pt;}
.y1b_c00144{bottom:129.362667pt;}
.y1a_c00144{bottom:141.814667pt;}
.y19_c00144{bottom:157.169333pt;}
.y18_c00144{bottom:172.946667pt;}
.y17_c00144{bottom:188.545333pt;}
.y16_c00144{bottom:203.769333pt;}
.y15_c00144{bottom:219.162667pt;}
.y14_c00144{bottom:235.002667pt;}
.y13_c00144{bottom:250.745333pt;}
.y12_c00144{bottom:266.521333pt;}
.y11_c00144{bottom:282.149333pt;}
.y10_c00144{bottom:297.256000pt;}
.yf_c00144{bottom:312.330667pt;}
.ye_c00144{bottom:327.225333pt;}
.yd_c00144{bottom:342.310667pt;}
.yc_c00144{bottom:357.533333pt;}
.yb_c00144{bottom:372.780000pt;}
.ya_c00144{bottom:387.982667pt;}
.y9_c00144{bottom:404.264000pt;}
.y8_c00144{bottom:418.620000pt;}
.y7_c00144{bottom:434.353333pt;}
.y6_c00144{bottom:449.473333pt;}
.y5_c00144{bottom:465.310667pt;}
.y4_c00144{bottom:480.460000pt;}
.y3_c00144{bottom:496.162667pt;}
.y2_c00144{bottom:511.397333pt;}
.y1_c00144{bottom:524.400000pt;}
.hb_c00144{height:51.333333pt;}
.h7_c00144{height:53.200000pt;}
.h3_c00144{height:54.133333pt;}
.h4_c00144{height:55.066667pt;}
.h5_c00144{height:56.000000pt;}
.ha_c00144{height:56.933333pt;}
.hd_c00144{height:57.866667pt;}
.h8_c00144{height:60.666667pt;}
.h9_c00144{height:61.600000pt;}
.hc_c00144{height:62.533333pt;}
.h6_c00144{height:63.466667pt;}
.h2_c00144{height:65.333333pt;}
.he_c00144{height:68.133333pt;}
.h0_c00144{height:563.040000pt;}
.h1_c00144{height:563.333333pt;}
.w1_c00144{width:340.666667pt;}
.w0_c00144{width:340.800000pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:36.960000pt;}
.x9_c00144{left:39.360000pt;}
.x1f_c00144{left:40.560000pt;}
.x33_c00144{left:42.000000pt;}
.x6a_c00144{left:43.073333pt;}
.x67_c00144{left:47.760000pt;}
.x54_c00144{left:54.480000pt;}
.x61_c00144{left:59.520000pt;}
.x36_c00144{left:60.720000pt;}
.x2c_c00144{left:62.640000pt;}
.x2f_c00144{left:63.600000pt;}
.x5c_c00144{left:64.800000pt;}
.x71_c00144{left:65.757333pt;}
.x46_c00144{left:66.720000pt;}
.x10_c00144{left:67.920000pt;}
.x20_c00144{left:69.600000pt;}
.x25_c00144{left:71.520000pt;}
.x3c_c00144{left:75.120000pt;}
.x21_c00144{left:78.000000pt;}
.xa_c00144{left:80.160000pt;}
.x16_c00144{left:81.840000pt;}
.x26_c00144{left:83.280000pt;}
.x49_c00144{left:84.240000pt;}
.x1c_c00144{left:88.080000pt;}
.x4e_c00144{left:90.480000pt;}
.xb_c00144{left:91.440000pt;}
.x40_c00144{left:92.880000pt;}
.x3d_c00144{left:93.840000pt;}
.x3_c00144{left:94.800000pt;}
.x11_c00144{left:96.000000pt;}
.x37_c00144{left:100.320000pt;}
.x4a_c00144{left:108.480000pt;}
.x2d_c00144{left:109.680000pt;}
.x4_c00144{left:111.120000pt;}
.x4f_c00144{left:113.040000pt;}
.x72_c00144{left:113.997333pt;}
.x41_c00144{left:116.400000pt;}
.x62_c00144{left:117.360000pt;}
.x59_c00144{left:118.320000pt;}
.x5d_c00144{left:122.400000pt;}
.x27_c00144{left:123.360000pt;}
.x6b_c00144{left:127.337333pt;}
.x2e_c00144{left:128.400000pt;}
.x12_c00144{left:130.080000pt;}
.x42_c00144{left:131.760000pt;}
.x30_c00144{left:133.920000pt;}
.x5a_c00144{left:136.560000pt;}
.x38_c00144{left:138.960000pt;}
.x56_c00144{left:139.920000pt;}
.x28_c00144{left:141.600000pt;}
.xc_c00144{left:142.800000pt;}
.x5_c00144{left:145.920000pt;}
.x68_c00144{left:148.320000pt;}
.x5e_c00144{left:149.520000pt;}
.x1d_c00144{left:154.320000pt;}
.xd_c00144{left:155.760000pt;}
.x1_c00144{left:158.160000pt;}
.x50_c00144{left:162.960000pt;}
.x31_c00144{left:163.920000pt;}
.x64_c00144{left:165.120000pt;}
.x29_c00144{left:168.720000pt;}
.x17_c00144{left:174.480000pt;}
.x5f_c00144{left:178.560000pt;}
.x39_c00144{left:180.960000pt;}
.xe_c00144{left:182.880000pt;}
.x53_c00144{left:183.840000pt;}
.x2a_c00144{left:184.800000pt;}
.x6_c00144{left:186.240000pt;}
.x43_c00144{left:187.680000pt;}
.x34_c00144{left:189.120000pt;}
.x55_c00144{left:192.000000pt;}
.x4b_c00144{left:195.840000pt;}
.x51_c00144{left:197.040000pt;}
.x6e_c00144{left:200.638667pt;}
.x3a_c00144{left:202.320000pt;}
.x22_c00144{left:205.680000pt;}
.x6c_c00144{left:207.025333pt;}
.x13_c00144{left:208.320000pt;}
.x69_c00144{left:210.000000pt;}
.x44_c00144{left:213.120000pt;}
.x4c_c00144{left:214.080000pt;}
.x35_c00144{left:215.760000pt;}
.x47_c00144{left:217.440000pt;}
.x14_c00144{left:220.800000pt;}
.x7_c00144{left:223.200000pt;}
.x6d_c00144{left:224.780000pt;}
.x60_c00144{left:228.240000pt;}
.x65_c00144{left:230.640000pt;}
.x57_c00144{left:232.560000pt;}
.x18_c00144{left:236.160000pt;}
.x45_c00144{left:246.960000pt;}
.x48_c00144{left:249.840000pt;}
.x52_c00144{left:251.520000pt;}
.x19_c00144{left:254.160000pt;}
.x5b_c00144{left:257.520000pt;}
.x6f_c00144{left:260.261333pt;}
.x3b_c00144{left:262.080000pt;}
.xf_c00144{left:263.760000pt;}
.x73_c00144{left:265.437333pt;}
.x4d_c00144{left:266.400000pt;}
.x63_c00144{left:267.360000pt;}
.x2b_c00144{left:270.480000pt;}
.x1e_c00144{left:272.400000pt;}
.x15_c00144{left:276.240000pt;}
.x23_c00144{left:277.200000pt;}
.x32_c00144{left:279.120000pt;}
.x1a_c00144{left:280.560000pt;}
.x58_c00144{left:282.240000pt;}
.x3e_c00144{left:283.440000pt;}
.x66_c00144{left:284.880000pt;}
.x8_c00144{left:286.560000pt;}
.x24_c00144{left:288.240000pt;}
.x1b_c00144{left:295.920000pt;}
.x74_c00144{left:297.357333pt;}
.x3f_c00144{left:298.560000pt;}
.x70_c00144{left:303.876000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00145 {
    display:none;
  }
  .loading-indicator_c00145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00145 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00145 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00145" -> "#page-container .classname_c00145")
 */
.pf_c00145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00145 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00145 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00145 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00145 {overflow:visible;}
  }
}
.c_c00145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00145 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00145:after { /* webkit #35443 */
  content: '';
}
.t_c00145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00145 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00145 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00145 { /* info for Javascript */
  display:none;
}
.l_c00145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00145:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00145 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00145.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me2_c00145{transform:matrix(0.072535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072535,0.000000,0.000000,0.250000,0,0);}
.mb2_c00145{transform:matrix(0.144115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144115,0.000000,0.000000,0.250000,0,0);}
.m47_c00145{transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);}
.mc3_c00145{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.me9_c00145{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);}
.mc9_c00145{transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);}
.m44_c00145{transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);}
.m40_c00145{transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);}
.mc4_c00145{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.m23_c00145{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m57_c00145{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);}
.m72_c00145{transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);}
.m64_c00145{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00145{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);}
.m45_c00145{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.me6_c00145{transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);}
.md0_c00145{transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);}
.m5c_c00145{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);}
.m2a_c00145{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.mf1_c00145{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mcd_c00145{transform:matrix(0.164830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164830,0.000000,0.000000,0.250000,0,0);}
.m94_c00145{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.m5b_c00145{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.md2_c00145{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.mbb_c00145{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.me0_c00145{transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);}
.mc8_c00145{transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m43_c00145{transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m35_c00145{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.m88_c00145{transform:matrix(0.170428,0.002727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170428,0.002727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170428,0.002727,-0.003999,0.249968,0,0);}
.mce_c00145{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);}
.mdb_c00145{transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.m8b_c00145{transform:matrix(0.172723,0.002764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172723,0.002764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172723,0.002764,-0.003999,0.249968,0,0);}
.ma2_c00145{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m49_c00145{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m73_c00145{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m33_c00145{transform:matrix(0.174585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174585,0.000000,0.000000,0.250000,0,0);}
.mf9_c00145{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.mf8_c00145{transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);}
.m6d_c00145{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.maa_c00145{transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);}
.m6c_c00145{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.mac_c00145{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m31_c00145{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.mad_c00145{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.mca_c00145{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m90_c00145{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.md1_c00145{transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);}
.m63_c00145{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.mdc_c00145{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m62_c00145{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m6e_c00145{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m7a_c00145{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m37_c00145{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00145{transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);}
.ma1_c00145{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m24_c00145{transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);}
.mc7_c00145{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.m36_c00145{transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);}
.mfc_c00145{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.m3f_c00145{transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);}
.mc0_c00145{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00145{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.mb0_c00145{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.mfb_c00145{transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);}
.m78_c00145{transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);}
.mb9_c00145{transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);}
.mcb_c00145{transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);}
.m42_c00145{transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);}
.m91_c00145{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00145{transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);}
.mbf_c00145{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.mc5_c00145{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m5a_c00145{transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);}
.m75_c00145{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.m6b_c00145{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m3c_c00145{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);}
.m48_c00145{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m65_c00145{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.mf5_c00145{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00145{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m4c_c00145{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m55_c00145{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m61_c00145{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m60_c00145{transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00145{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);}
.mf2_c00145{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.mcc_c00145{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.mba_c00145{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.mbd_c00145{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.mb1_c00145{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m34_c00145{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.mee_c00145{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.m8e_c00145{transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);}
.m59_c00145{transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);}
.m70_c00145{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m92_c00145{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m99_c00145{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.mec_c00145{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.mf3_c00145{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.mae_c00145{transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);}
.mc2_c00145{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mb7_c00145{transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);}
.meb_c00145{transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00145{transform:matrix(0.194560,0.003113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194560,0.003113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194560,0.003113,-0.003999,0.249968,0,0);}
.m95_c00145{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);}
.mdd_c00145{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mea_c00145{transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.md4_c00145{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.mb6_c00145{transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);}
.mf4_c00145{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.me4_c00145{transform:matrix(0.199170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199170,0.000000,0.000000,0.250000,0,0);}
.med_c00145{transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);}
.m87_c00145{transform:matrix(0.199639,0.003194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199639,0.003194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199639,0.003194,-0.003999,0.249968,0,0);}
.m8f_c00145{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.ma8_c00145{transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.mb8_c00145{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m74_c00145{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m9b_c00145{transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m81_c00145{transform:matrix(0.201579,0.003225,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201579,0.003225,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201579,0.003225,-0.003999,0.249968,0,0);}
.maf_c00145{transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.md3_c00145{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m82_c00145{transform:matrix(0.202579,0.003241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202579,0.003241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202579,0.003241,-0.003999,0.249968,0,0);}
.m5_c00145{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mc1_c00145{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.mbe_c00145{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00145{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00145{transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00145{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me5_c00145{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mef_c00145{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m6f_c00145{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m66_c00145{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mbc_c00145{transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.m93_c00145{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.me7_c00145{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00145{transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);}
.m77_c00145{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m98_c00145{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m76_c00145{transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);}
.m7b_c00145{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.mcf_c00145{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m71_c00145{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m79_c00145{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.ma6_c00145{transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);}
.mab_c00145{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.md8_c00145{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);}
.m97_c00145{transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);}
.mc6_c00145{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.m9e_c00145{transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);}
.m69_c00145{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.me8_c00145{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.me1_c00145{transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);}
.m84_c00145{transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);}
.me3_c00145{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.m7f_c00145{transform:matrix(0.218107,0.003490,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218107,0.003490,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218107,0.003490,-0.003999,0.249968,0,0);}
.m7c_c00145{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.m9f_c00145{transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);}
.m9a_c00145{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.mfa_c00145{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.m9c_c00145{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.m85_c00145{transform:matrix(0.220842,0.003533,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220842,0.003533,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220842,0.003533,-0.003999,0.249968,0,0);}
.m2f_c00145{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m67_c00145{transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);}
.mde_c00145{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m58_c00145{transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.ma3_c00145{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.md7_c00145{transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);}
.m89_c00145{transform:matrix(0.224546,0.003593,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224546,0.003593,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224546,0.003593,-0.003999,0.249968,0,0);}
.m1d_c00145{transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);}
.mb5_c00145{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.ma9_c00145{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m4b_c00145{transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);}
.m68_c00145{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);}
.m8d_c00145{transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);}
.md9_c00145{transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.md6_c00145{transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);}
.m105_c00145{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m80_c00145{transform:matrix(0.234465,0.003751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234465,0.003751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234465,0.003751,-0.003999,0.249968,0,0);}
.m8c_c00145{transform:matrix(0.234585,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234585,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234585,0.003753,-0.003999,0.249968,0,0);}
.mf7_c00145{transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);}
.m4e_c00145{transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235460,0.000000,0.000000,0.250000,0,0);}
.ma7_c00145{transform:matrix(0.236860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236860,0.000000,0.000000,0.250000,0,0);}
.m5d_c00145{transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);}
.m9d_c00145{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00145{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.md5_c00145{transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);}
.mda_c00145{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00145{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m83_c00145{transform:matrix(0.261617,0.004186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261617,0.004186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261617,0.004186,-0.003999,0.249968,0,0);}
.m96_c00145{transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263650,0.000000,0.000000,0.250000,0,0);}
.m86_c00145{transform:matrix(0.263796,0.004221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263796,0.004221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263796,0.004221,-0.003999,0.249968,0,0);}
.m7e_c00145{transform:matrix(0.270550,0.004329,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270550,0.004329,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270550,0.004329,-0.003999,0.249968,0,0);}
.m104_c00145{transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);}
.mf6_c00145{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.m7d_c00145{transform:matrix(0.321549,0.005145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.321549,0.005145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.321549,0.005145,-0.003999,0.249968,0,0);}
.m106_c00145{transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);}
.m102_c00145{transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);}
.mfd_c00145{transform:matrix(0.371315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371315,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.487590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487590,0.000000,0.000000,0.250000,0,0);}
.m103_c00145{transform:matrix(0.509340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509340,0.000000,0.000000,0.250000,0,0);}
.mff_c00145{transform:matrix(0.583790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583790,0.000000,0.000000,0.250000,0,0);}
.m101_c00145{transform:matrix(0.616305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616305,0.000000,0.000000,0.250000,0,0);}
.mfe_c00145{transform:matrix(0.717555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717555,0.000000,0.000000,0.250000,0,0);}
.m100_c00145{transform:matrix(0.972665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972665,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:transparent;}
.fs10_c00145{font-size:22.050000px;}
.fs9_c00145{font-size:55.650000px;}
.fsc_c00145{font-size:55.657123px;}
.fsb_c00145{font-size:56.707257px;}
.fsf_c00145{font-size:57.750000px;}
.fsa_c00145{font-size:59.850000px;}
.fs3_c00145{font-size:60.900000px;}
.fsd_c00145{font-size:61.950000px;}
.fs2_c00145{font-size:63.000000px;}
.fs4_c00145{font-size:64.050000px;}
.fs6_c00145{font-size:65.100000px;}
.fs5_c00145{font-size:66.150000px;}
.fse_c00145{font-size:67.200000px;}
.fs7_c00145{font-size:68.250000px;}
.fs8_c00145{font-size:70.350000px;}
.fs1_c00145{font-size:73.500000px;}
.fs0_c00145{font-size:78.750000px;}
.y0_c00145{bottom:0.000000px;}
.y75_c00145{bottom:31.732500px;}
.y74_c00145{bottom:32.397000px;}
.y73_c00145{bottom:33.172500px;}
.y72_c00145{bottom:33.972000px;}
.y71_c00145{bottom:34.242000px;}
.y70_c00145{bottom:34.548000px;}
.y6f_c00145{bottom:35.106000px;}
.y6e_c00145{bottom:51.634500px;}
.y6d_c00145{bottom:68.614500px;}
.y6c_c00145{bottom:82.293000px;}
.y6b_c00145{bottom:102.873000px;}
.y77_c00145{bottom:110.160000px;}
.y6a_c00145{bottom:116.388000px;}
.y69_c00145{bottom:117.339000px;}
.y68_c00145{bottom:117.622500px;}
.y67_c00145{bottom:118.740000px;}
.y66_c00145{bottom:119.500500px;}
.y65_c00145{bottom:119.857500px;}
.y64_c00145{bottom:120.067500px;}
.y63_c00145{bottom:120.424500px;}
.y62_c00145{bottom:133.921500px;}
.y61_c00145{bottom:154.257000px;}
.y60_c00145{bottom:171.369000px;}
.y5f_c00145{bottom:186.835500px;}
.y5e_c00145{bottom:187.140000px;}
.y5d_c00145{bottom:187.446000px;}
.y5c_c00145{bottom:187.932000px;}
.y5b_c00145{bottom:188.551500px;}
.y5a_c00145{bottom:189.397500px;}
.y59_c00145{bottom:189.792000px;}
.y58_c00145{bottom:190.893000px;}
.y57_c00145{bottom:202.108500px;}
.y56_c00145{bottom:202.401000px;}
.y55_c00145{bottom:203.463000px;}
.y54_c00145{bottom:203.790000px;}
.y53_c00145{bottom:205.254000px;}
.y52_c00145{bottom:206.182500px;}
.y51_c00145{bottom:206.860500px;}
.y50_c00145{bottom:207.633000px;}
.y4f_c00145{bottom:219.528000px;}
.y4e_c00145{bottom:220.825500px;}
.y4d_c00145{bottom:221.292000px;}
.y4c_c00145{bottom:221.844000px;}
.y4b_c00145{bottom:223.944000px;}
.y4a_c00145{bottom:224.914500px;}
.y49_c00145{bottom:238.204500px;}
.y48_c00145{bottom:238.632000px;}
.y47_c00145{bottom:238.902000px;}
.y46_c00145{bottom:239.400000px;}
.y45_c00145{bottom:239.664000px;}
.y44_c00145{bottom:240.151500px;}
.y43_c00145{bottom:240.408000px;}
.y42_c00145{bottom:241.293000px;}
.y41_c00145{bottom:241.650000px;}
.y76_c00145{bottom:243.000000px;}
.y40_c00145{bottom:258.238500px;}
.y3f_c00145{bottom:272.739732px;}
.y3e_c00145{bottom:273.322812px;}
.y3d_c00145{bottom:273.808404px;}
.y3c_c00145{bottom:275.003616px;}
.y3b_c00145{bottom:275.265336px;}
.y3a_c00145{bottom:275.748372px;}
.y39_c00145{bottom:275.938812px;}
.y38_c00145{bottom:289.233432px;}
.y37_c00145{bottom:289.741536px;}
.y36_c00145{bottom:290.131608px;}
.y35_c00145{bottom:291.393168px;}
.y34_c00145{bottom:291.754968px;}
.y33_c00145{bottom:291.959088px;}
.y32_c00145{bottom:292.663584px;}
.y31_c00145{bottom:292.961976px;}
.y30_c00145{bottom:293.493000px;}
.y2f_c00145{bottom:306.457500px;}
.y2e_c00145{bottom:306.717000px;}
.y2d_c00145{bottom:306.931500px;}
.y2c_c00145{bottom:307.654500px;}
.y2b_c00145{bottom:307.854000px;}
.y2a_c00145{bottom:308.092500px;}
.y29_c00145{bottom:308.464500px;}
.y28_c00145{bottom:309.655500px;}
.y27_c00145{bottom:309.961500px;}
.y26_c00145{bottom:323.734500px;}
.y25_c00145{bottom:323.980500px;}
.y24_c00145{bottom:324.216000px;}
.y23_c00145{bottom:324.741000px;}
.y22_c00145{bottom:325.284000px;}
.y21_c00145{bottom:325.545000px;}
.y20_c00145{bottom:326.002500px;}
.y1f_c00145{bottom:326.214000px;}
.y1e_c00145{bottom:326.430000px;}
.y1d_c00145{bottom:342.361500px;}
.y1c_c00145{bottom:360.117000px;}
.y1b_c00145{bottom:377.904000px;}
.y1a_c00145{bottom:395.458500px;}
.y19_c00145{bottom:409.726500px;}
.y18_c00145{bottom:410.022000px;}
.y17_c00145{bottom:410.860500px;}
.y16_c00145{bottom:411.268500px;}
.y15_c00145{bottom:411.622500px;}
.y14_c00145{bottom:412.375500px;}
.y13_c00145{bottom:412.707000px;}
.y12_c00145{bottom:413.370000px;}
.y11_c00145{bottom:429.928500px;}
.y10_c00145{bottom:443.806500px;}
.yf_c00145{bottom:444.400500px;}
.ye_c00145{bottom:444.835500px;}
.yd_c00145{bottom:445.266000px;}
.yc_c00145{bottom:446.014500px;}
.yb_c00145{bottom:446.347500px;}
.ya_c00145{bottom:446.611500px;}
.y9_c00145{bottom:447.120000px;}
.y8_c00145{bottom:463.440000px;}
.y7_c00145{bottom:480.748500px;}
.y6_c00145{bottom:498.553500px;}
.y5_c00145{bottom:513.627000px;}
.y4_c00145{bottom:530.478000px;}
.y3_c00145{bottom:547.650000px;}
.y2_c00145{bottom:564.778500px;}
.y1_c00145{bottom:579.828000px;}
.h12_c00145{height:22.050000px;}
.hb_c00145{height:55.650000px;}
.he_c00145{height:55.657123px;}
.hd_c00145{height:56.707257px;}
.h11_c00145{height:57.750000px;}
.hc_c00145{height:59.850000px;}
.h5_c00145{height:60.900000px;}
.hf_c00145{height:61.950000px;}
.h4_c00145{height:63.000000px;}
.h6_c00145{height:64.050000px;}
.h8_c00145{height:65.100000px;}
.h7_c00145{height:66.150000px;}
.h10_c00145{height:67.200000px;}
.h9_c00145{height:68.250000px;}
.ha_c00145{height:70.350000px;}
.h3_c00145{height:73.500000px;}
.h2_c00145{height:78.750000px;}
.h1_c00145{height:623.250000px;}
.h0_c00145{height:623.400000px;}
.w1_c00145{width:383.250000px;}
.w0_c00145{width:383.400000px;}
.x0_c00145{left:0.000000px;}
.x6b_c00145{left:35.371500px;}
.x6d_c00145{left:43.201500px;}
.x3e_c00145{left:44.281500px;}
.x2_c00145{left:45.360000px;}
.x71_c00145{left:46.711500px;}
.x58_c00145{left:58.715916px;}
.x43_c00145{left:61.831500px;}
.x6_c00145{left:62.910000px;}
.x72_c00145{left:65.341500px;}
.xd_c00145{left:66.960000px;}
.x4e_c00145{left:69.510000px;}
.x17_c00145{left:70.740000px;}
.x39_c00145{left:72.091500px;}
.x14_c00145{left:73.710000px;}
.x53_c00145{left:79.177500px;}
.x48_c00145{left:80.731500px;}
.x2f_c00145{left:82.620000px;}
.x2a_c00145{left:84.334500px;}
.x1f_c00145{left:85.590000px;}
.x34_c00145{left:89.983500px;}
.x18_c00145{left:92.610000px;}
.x24_c00145{left:93.690000px;}
.x3_c00145{left:98.280000px;}
.x49_c00145{left:100.171500px;}
.xe_c00145{left:102.870000px;}
.x2b_c00145{left:104.592000px;}
.x7_c00145{left:108.270000px;}
.x65_c00145{left:111.010500px;}
.x35_c00145{left:112.114500px;}
.x44_c00145{left:113.131500px;}
.x3f_c00145{left:114.481500px;}
.x61_c00145{left:119.902500px;}
.x4d_c00145{left:123.792000px;}
.x45_c00145{left:127.171500px;}
.x40_c00145{left:128.251500px;}
.x2c_c00145{left:130.224000px;}
.xf_c00145{left:133.110000px;}
.x66_c00145{left:134.238000px;}
.x19_c00145{left:137.430000px;}
.x8_c00145{left:140.130000px;}
.x54_c00145{left:141.858000px;}
.x74_c00145{left:144.183000px;}
.x25_c00145{left:146.610000px;}
.x30_c00145{left:148.770000px;}
.x4a_c00145{left:149.851500px;}
.x7d_c00145{left:150.933000px;}
.x6e_c00145{left:153.361500px;}
.x55_c00145{left:154.615500px;}
.x1a_c00145{left:157.680000px;}
.x5e_c00145{left:159.409500px;}
.x20_c00145{left:160.650000px;}
.x36_c00145{left:162.331500px;}
.x15_c00145{left:165.240000px;}
.x78_c00145{left:166.323000px;}
.x7c_c00145{left:167.403000px;}
.x62_c00145{left:168.790500px;}
.x46_c00145{left:170.641500px;}
.x9_c00145{left:171.720000px;}
.x5a_c00145{left:173.340000px;}
.x3a_c00145{left:176.851500px;}
.x1_c00145{left:178.740000px;}
.x16_c00145{left:180.630000px;}
.x67_c00145{left:184.014000px;}
.x4_c00145{left:186.300000px;}
.x2d_c00145{left:187.804500px;}
.x4b_c00145{left:190.081500px;}
.x41_c00145{left:192.511500px;}
.x26_c00145{left:194.670000px;}
.x80_c00145{left:195.838500px;}
.x10_c00145{left:197.370000px;}
.x75_c00145{left:198.993000px;}
.x3b_c00145{left:204.121500px;}
.x4f_c00145{left:208.014000px;}
.x31_c00145{left:211.140000px;}
.x37_c00145{left:213.108000px;}
.xa_c00145{left:214.110000px;}
.x11_c00145{left:217.080000px;}
.x1b_c00145{left:220.050000px;}
.x50_c00145{left:223.405500px;}
.x76_c00145{left:224.913000px;}
.x6c_c00145{left:225.991500px;}
.x21_c00145{left:228.150000px;}
.x5b_c00145{left:229.230000px;}
.x79_c00145{left:231.393000px;}
.x60_c00145{left:234.138000px;}
.x32_c00145{left:238.950000px;}
.x27_c00145{left:242.730000px;}
.x12_c00145{left:244.080000px;}
.x22_c00145{left:246.510000px;}
.x68_c00145{left:249.106500px;}
.x5c_c00145{left:250.560000px;}
.x73_c00145{left:252.276000px;}
.x28_c00145{left:255.150000px;}
.x59_c00145{left:259.321632px;}
.x33_c00145{left:261.900000px;}
.x63_c00145{left:263.032500px;}
.x7e_c00145{left:264.063000px;}
.x4c_c00145{left:265.951500px;}
.x69_c00145{left:267.123000px;}
.x5_c00145{left:269.730000px;}
.xb_c00145{left:272.970000px;}
.x7a_c00145{left:274.323000px;}
.x3c_c00145{left:276.211500px;}
.x51_c00145{left:279.027000px;}
.x56_c00145{left:280.455000px;}
.x1c_c00145{left:282.150000px;}
.x6a_c00145{left:285.001500px;}
.x38_c00145{left:288.712500px;}
.x77_c00145{left:292.413000px;}
.xc_c00145{left:296.460000px;}
.x2e_c00145{left:300.141000px;}
.x3d_c00145{left:304.291500px;}
.x1d_c00145{left:305.640000px;}
.x7f_c00145{left:306.723000px;}
.x29_c00145{left:308.070000px;}
.x5f_c00145{left:309.262500px;}
.x57_c00145{left:312.211500px;}
.x6f_c00145{left:314.281500px;}
.x52_c00145{left:315.474000px;}
.x13_c00145{left:316.980000px;}
.x5d_c00145{left:318.060000px;}
.x47_c00145{left:319.141500px;}
.x23_c00145{left:325.080000px;}
.x1e_c00145{left:326.160000px;}
.x70_c00145{left:327.511500px;}
.x42_c00145{left:331.291500px;}
.x7b_c00145{left:332.373000px;}
.x64_c00145{left:334.276500px;}
.x81_c00145{left:376.650000px;}
.x82_c00145{left:380.160000px;}
.x83_c00145{left:381.240000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs10_c00145{font-size:19.600000pt;}
.fs9_c00145{font-size:49.466667pt;}
.fsc_c00145{font-size:49.472998pt;}
.fsb_c00145{font-size:50.406451pt;}
.fsf_c00145{font-size:51.333333pt;}
.fsa_c00145{font-size:53.200000pt;}
.fs3_c00145{font-size:54.133333pt;}
.fsd_c00145{font-size:55.066667pt;}
.fs2_c00145{font-size:56.000000pt;}
.fs4_c00145{font-size:56.933333pt;}
.fs6_c00145{font-size:57.866667pt;}
.fs5_c00145{font-size:58.800000pt;}
.fse_c00145{font-size:59.733333pt;}
.fs7_c00145{font-size:60.666667pt;}
.fs8_c00145{font-size:62.533333pt;}
.fs1_c00145{font-size:65.333333pt;}
.fs0_c00145{font-size:70.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y75_c00145{bottom:28.206667pt;}
.y74_c00145{bottom:28.797333pt;}
.y73_c00145{bottom:29.486667pt;}
.y72_c00145{bottom:30.197333pt;}
.y71_c00145{bottom:30.437333pt;}
.y70_c00145{bottom:30.709333pt;}
.y6f_c00145{bottom:31.205333pt;}
.y6e_c00145{bottom:45.897333pt;}
.y6d_c00145{bottom:60.990667pt;}
.y6c_c00145{bottom:73.149333pt;}
.y6b_c00145{bottom:91.442667pt;}
.y77_c00145{bottom:97.920000pt;}
.y6a_c00145{bottom:103.456000pt;}
.y69_c00145{bottom:104.301333pt;}
.y68_c00145{bottom:104.553333pt;}
.y67_c00145{bottom:105.546667pt;}
.y66_c00145{bottom:106.222667pt;}
.y65_c00145{bottom:106.540000pt;}
.y64_c00145{bottom:106.726667pt;}
.y63_c00145{bottom:107.044000pt;}
.y62_c00145{bottom:119.041333pt;}
.y61_c00145{bottom:137.117333pt;}
.y60_c00145{bottom:152.328000pt;}
.y5f_c00145{bottom:166.076000pt;}
.y5e_c00145{bottom:166.346667pt;}
.y5d_c00145{bottom:166.618667pt;}
.y5c_c00145{bottom:167.050667pt;}
.y5b_c00145{bottom:167.601333pt;}
.y5a_c00145{bottom:168.353333pt;}
.y59_c00145{bottom:168.704000pt;}
.y58_c00145{bottom:169.682667pt;}
.y57_c00145{bottom:179.652000pt;}
.y56_c00145{bottom:179.912000pt;}
.y55_c00145{bottom:180.856000pt;}
.y54_c00145{bottom:181.146667pt;}
.y53_c00145{bottom:182.448000pt;}
.y52_c00145{bottom:183.273333pt;}
.y51_c00145{bottom:183.876000pt;}
.y50_c00145{bottom:184.562667pt;}
.y4f_c00145{bottom:195.136000pt;}
.y4e_c00145{bottom:196.289333pt;}
.y4d_c00145{bottom:196.704000pt;}
.y4c_c00145{bottom:197.194667pt;}
.y4b_c00145{bottom:199.061333pt;}
.y4a_c00145{bottom:199.924000pt;}
.y49_c00145{bottom:211.737333pt;}
.y48_c00145{bottom:212.117333pt;}
.y47_c00145{bottom:212.357333pt;}
.y46_c00145{bottom:212.800000pt;}
.y45_c00145{bottom:213.034667pt;}
.y44_c00145{bottom:213.468000pt;}
.y43_c00145{bottom:213.696000pt;}
.y42_c00145{bottom:214.482667pt;}
.y41_c00145{bottom:214.800000pt;}
.y76_c00145{bottom:216.000000pt;}
.y40_c00145{bottom:229.545333pt;}
.y3f_c00145{bottom:242.435317pt;}
.y3e_c00145{bottom:242.953611pt;}
.y3d_c00145{bottom:243.385248pt;}
.y3c_c00145{bottom:244.447659pt;}
.y3b_c00145{bottom:244.680299pt;}
.y3a_c00145{bottom:245.109664pt;}
.y39_c00145{bottom:245.278944pt;}
.y38_c00145{bottom:257.096384pt;}
.y37_c00145{bottom:257.548032pt;}
.y36_c00145{bottom:257.894763pt;}
.y35_c00145{bottom:259.016149pt;}
.y34_c00145{bottom:259.337749pt;}
.y33_c00145{bottom:259.519189pt;}
.y32_c00145{bottom:260.145408pt;}
.y31_c00145{bottom:260.410645pt;}
.y30_c00145{bottom:260.882667pt;}
.y2f_c00145{bottom:272.406667pt;}
.y2e_c00145{bottom:272.637333pt;}
.y2d_c00145{bottom:272.828000pt;}
.y2c_c00145{bottom:273.470667pt;}
.y2b_c00145{bottom:273.648000pt;}
.y2a_c00145{bottom:273.860000pt;}
.y29_c00145{bottom:274.190667pt;}
.y28_c00145{bottom:275.249333pt;}
.y27_c00145{bottom:275.521333pt;}
.y26_c00145{bottom:287.764000pt;}
.y25_c00145{bottom:287.982667pt;}
.y24_c00145{bottom:288.192000pt;}
.y23_c00145{bottom:288.658667pt;}
.y22_c00145{bottom:289.141333pt;}
.y21_c00145{bottom:289.373333pt;}
.y20_c00145{bottom:289.780000pt;}
.y1f_c00145{bottom:289.968000pt;}
.y1e_c00145{bottom:290.160000pt;}
.y1d_c00145{bottom:304.321333pt;}
.y1c_c00145{bottom:320.104000pt;}
.y1b_c00145{bottom:335.914667pt;}
.y1a_c00145{bottom:351.518667pt;}
.y19_c00145{bottom:364.201333pt;}
.y18_c00145{bottom:364.464000pt;}
.y17_c00145{bottom:365.209333pt;}
.y16_c00145{bottom:365.572000pt;}
.y15_c00145{bottom:365.886667pt;}
.y14_c00145{bottom:366.556000pt;}
.y13_c00145{bottom:366.850667pt;}
.y12_c00145{bottom:367.440000pt;}
.y11_c00145{bottom:382.158667pt;}
.y10_c00145{bottom:394.494667pt;}
.yf_c00145{bottom:395.022667pt;}
.ye_c00145{bottom:395.409333pt;}
.yd_c00145{bottom:395.792000pt;}
.yc_c00145{bottom:396.457333pt;}
.yb_c00145{bottom:396.753333pt;}
.ya_c00145{bottom:396.988000pt;}
.y9_c00145{bottom:397.440000pt;}
.y8_c00145{bottom:411.946667pt;}
.y7_c00145{bottom:427.332000pt;}
.y6_c00145{bottom:443.158667pt;}
.y5_c00145{bottom:456.557333pt;}
.y4_c00145{bottom:471.536000pt;}
.y3_c00145{bottom:486.800000pt;}
.y2_c00145{bottom:502.025333pt;}
.y1_c00145{bottom:515.402667pt;}
.h12_c00145{height:19.600000pt;}
.hb_c00145{height:49.466667pt;}
.he_c00145{height:49.472998pt;}
.hd_c00145{height:50.406451pt;}
.h11_c00145{height:51.333333pt;}
.hc_c00145{height:53.200000pt;}
.h5_c00145{height:54.133333pt;}
.hf_c00145{height:55.066667pt;}
.h4_c00145{height:56.000000pt;}
.h6_c00145{height:56.933333pt;}
.h8_c00145{height:57.866667pt;}
.h7_c00145{height:58.800000pt;}
.h10_c00145{height:59.733333pt;}
.h9_c00145{height:60.666667pt;}
.ha_c00145{height:62.533333pt;}
.h3_c00145{height:65.333333pt;}
.h2_c00145{height:70.000000pt;}
.h1_c00145{height:554.000000pt;}
.h0_c00145{height:554.133333pt;}
.w1_c00145{width:340.666667pt;}
.w0_c00145{width:340.800000pt;}
.x0_c00145{left:0.000000pt;}
.x6b_c00145{left:31.441333pt;}
.x6d_c00145{left:38.401333pt;}
.x3e_c00145{left:39.361333pt;}
.x2_c00145{left:40.320000pt;}
.x71_c00145{left:41.521333pt;}
.x58_c00145{left:52.191925pt;}
.x43_c00145{left:54.961333pt;}
.x6_c00145{left:55.920000pt;}
.x72_c00145{left:58.081333pt;}
.xd_c00145{left:59.520000pt;}
.x4e_c00145{left:61.786667pt;}
.x17_c00145{left:62.880000pt;}
.x39_c00145{left:64.081333pt;}
.x14_c00145{left:65.520000pt;}
.x53_c00145{left:70.380000pt;}
.x48_c00145{left:71.761333pt;}
.x2f_c00145{left:73.440000pt;}
.x2a_c00145{left:74.964000pt;}
.x1f_c00145{left:76.080000pt;}
.x34_c00145{left:79.985333pt;}
.x18_c00145{left:82.320000pt;}
.x24_c00145{left:83.280000pt;}
.x3_c00145{left:87.360000pt;}
.x49_c00145{left:89.041333pt;}
.xe_c00145{left:91.440000pt;}
.x2b_c00145{left:92.970667pt;}
.x7_c00145{left:96.240000pt;}
.x65_c00145{left:98.676000pt;}
.x35_c00145{left:99.657333pt;}
.x44_c00145{left:100.561333pt;}
.x3f_c00145{left:101.761333pt;}
.x61_c00145{left:106.580000pt;}
.x4d_c00145{left:110.037333pt;}
.x45_c00145{left:113.041333pt;}
.x40_c00145{left:114.001333pt;}
.x2c_c00145{left:115.754667pt;}
.xf_c00145{left:118.320000pt;}
.x66_c00145{left:119.322667pt;}
.x19_c00145{left:122.160000pt;}
.x8_c00145{left:124.560000pt;}
.x54_c00145{left:126.096000pt;}
.x74_c00145{left:128.162667pt;}
.x25_c00145{left:130.320000pt;}
.x30_c00145{left:132.240000pt;}
.x4a_c00145{left:133.201333pt;}
.x7d_c00145{left:134.162667pt;}
.x6e_c00145{left:136.321333pt;}
.x55_c00145{left:137.436000pt;}
.x1a_c00145{left:140.160000pt;}
.x5e_c00145{left:141.697333pt;}
.x20_c00145{left:142.800000pt;}
.x36_c00145{left:144.294667pt;}
.x15_c00145{left:146.880000pt;}
.x78_c00145{left:147.842667pt;}
.x7c_c00145{left:148.802667pt;}
.x62_c00145{left:150.036000pt;}
.x46_c00145{left:151.681333pt;}
.x9_c00145{left:152.640000pt;}
.x5a_c00145{left:154.080000pt;}
.x3a_c00145{left:157.201333pt;}
.x1_c00145{left:158.880000pt;}
.x16_c00145{left:160.560000pt;}
.x67_c00145{left:163.568000pt;}
.x4_c00145{left:165.600000pt;}
.x2d_c00145{left:166.937333pt;}
.x4b_c00145{left:168.961333pt;}
.x41_c00145{left:171.121333pt;}
.x26_c00145{left:173.040000pt;}
.x80_c00145{left:174.078667pt;}
.x10_c00145{left:175.440000pt;}
.x75_c00145{left:176.882667pt;}
.x3b_c00145{left:181.441333pt;}
.x4f_c00145{left:184.901333pt;}
.x31_c00145{left:187.680000pt;}
.x37_c00145{left:189.429333pt;}
.xa_c00145{left:190.320000pt;}
.x11_c00145{left:192.960000pt;}
.x1b_c00145{left:195.600000pt;}
.x50_c00145{left:198.582667pt;}
.x76_c00145{left:199.922667pt;}
.x6c_c00145{left:200.881333pt;}
.x21_c00145{left:202.800000pt;}
.x5b_c00145{left:203.760000pt;}
.x79_c00145{left:205.682667pt;}
.x60_c00145{left:208.122667pt;}
.x32_c00145{left:212.400000pt;}
.x27_c00145{left:215.760000pt;}
.x12_c00145{left:216.960000pt;}
.x22_c00145{left:219.120000pt;}
.x68_c00145{left:221.428000pt;}
.x5c_c00145{left:222.720000pt;}
.x73_c00145{left:224.245333pt;}
.x28_c00145{left:226.800000pt;}
.x59_c00145{left:230.508117pt;}
.x33_c00145{left:232.800000pt;}
.x63_c00145{left:233.806667pt;}
.x7e_c00145{left:234.722667pt;}
.x4c_c00145{left:236.401333pt;}
.x69_c00145{left:237.442667pt;}
.x5_c00145{left:239.760000pt;}
.xb_c00145{left:242.640000pt;}
.x7a_c00145{left:243.842667pt;}
.x3c_c00145{left:245.521333pt;}
.x51_c00145{left:248.024000pt;}
.x56_c00145{left:249.293333pt;}
.x1c_c00145{left:250.800000pt;}
.x6a_c00145{left:253.334667pt;}
.x38_c00145{left:256.633333pt;}
.x77_c00145{left:259.922667pt;}
.xc_c00145{left:263.520000pt;}
.x2e_c00145{left:266.792000pt;}
.x3d_c00145{left:270.481333pt;}
.x1d_c00145{left:271.680000pt;}
.x7f_c00145{left:272.642667pt;}
.x29_c00145{left:273.840000pt;}
.x5f_c00145{left:274.900000pt;}
.x57_c00145{left:277.521333pt;}
.x6f_c00145{left:279.361333pt;}
.x52_c00145{left:280.421333pt;}
.x13_c00145{left:281.760000pt;}
.x5d_c00145{left:282.720000pt;}
.x47_c00145{left:283.681333pt;}
.x23_c00145{left:288.960000pt;}
.x1e_c00145{left:289.920000pt;}
.x70_c00145{left:291.121333pt;}
.x42_c00145{left:294.481333pt;}
.x7b_c00145{left:295.442667pt;}
.x64_c00145{left:297.134667pt;}
.x81_c00145{left:334.800000pt;}
.x82_c00145{left:337.920000pt;}
.x83_c00145{left:338.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00146 {
    display:none;
  }
  .loading-indicator_c00146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00146 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00146 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00146" -> "#page-container .classname_c00146")
 */
.pf_c00146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00146 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00146 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00146 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00146 {overflow:visible;}
  }
}
.c_c00146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00146 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00146:after { /* webkit #35443 */
  content: '';
}
.t_c00146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00146 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00146 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00146 { /* info for Javascript */
  display:none;
}
.l_c00146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00146:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00146 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00146.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.007530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007530,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.113635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113635,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.125720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125720,0.000000,0.000000,0.250000,0,0);}
.me5_c00146{transform:matrix(0.128220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128220,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.133210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133210,0.000000,0.000000,0.250000,0,0);}
.m85_c00146{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.me8_c00146{transform:matrix(0.143365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143365,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);}
.mb1_c00146{transform:matrix(0.150660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150660,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.mae_c00146{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00146{transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);}
.m5b_c00146{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.me7_c00146{transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.mc0_c00146{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m93_c00146{transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.mc6_c00146{transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);}
.mca_c00146{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.mb7_c00146{transform:matrix(0.162610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162610,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m3f_c00146{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{transform:matrix(0.168360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168360,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.m94_c00146{transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.m9c_c00146{transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);}
.me9_c00146{transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.ma1_c00146{transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m80_c00146{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);}
.meb_c00146{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m23_c00146{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.m49_c00146{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.mc4_c00146{transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.mab_c00146{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.md7_c00146{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);}
.me3_c00146{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.180310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180310,0.000000,0.000000,0.250000,0,0);}
.mea_c00146{transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.md1_c00146{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.m5c_c00146{transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181410,0.000000,0.000000,0.250000,0,0);}
.md4_c00146{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.mbb_c00146{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.mde_c00146{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00146{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.md2_c00146{transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.m64_c00146{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m99_c00146{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.mc2_c00146{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m58_c00146{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00146{transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);}
.mc1_c00146{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);}
.mbc_c00146{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m6b_c00146{transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);}
.ma6_c00146{transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00146{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.m5e_c00146{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.md9_c00146{transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);}
.mda_c00146{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.mba_c00146{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);}
.mc7_c00146{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00146{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mb6_c00146{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);}
.m87_c00146{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00146{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m9a_c00146{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.ma4_c00146{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00146{transform:matrix(0.194015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194015,0.000000,0.000000,0.250000,0,0);}
.m7e_c00146{transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);}
.mc5_c00146{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.m84_c00146{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m61_c00146{transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00146{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00146{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.md0_c00146{transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);}
.m55_c00146{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);}
.mb0_c00146{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.m56_c00146{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m89_c00146{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.mce_c00146{transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);}
.mbe_c00146{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00146{transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);}
.m96_c00146{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.md8_c00146{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.md6_c00146{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.m79_c00146{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.mbd_c00146{transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);}
.m51_c00146{transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);}
.m69_c00146{transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);}
.mb4_c00146{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);}
.m73_c00146{transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);}
.md5_c00146{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m98_c00146{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00146{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.mb9_c00146{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.maf_c00146{transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);}
.mcf_c00146{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.ma8_c00146{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);}
.m9d_c00146{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);}
.me0_c00146{transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);}
.m71_c00146{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.me2_c00146{transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);}
.mdf_c00146{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00146{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.me4_c00146{transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);}
.me1_c00146{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.mac_c00146{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m97_c00146{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);}
.mcc_c00146{transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00146{transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.mb8_c00146{transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{transform:matrix(0.220680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220680,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.me6_c00146{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.m50_c00146{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222645,0.000000,0.000000,0.250000,0,0);}
.m76_c00146{transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.mcb_c00146{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m75_c00146{transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.mdc_c00146{transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);}
.md3_c00146{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.mad_c00146{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00146{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);}
.mb2_c00146{transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);}
.mb3_c00146{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.266925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266925,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);}
.mc9_c00146{transform:matrix(0.563935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563935,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:0.000000px;}
.fc0_c00146{color:transparent;}
.fs8_c00146{font-size:57.750000px;}
.fs9_c00146{font-size:58.800000px;}
.fsa_c00146{font-size:59.850000px;}
.fs3_c00146{font-size:60.900000px;}
.fs2_c00146{font-size:61.950000px;}
.fsd_c00146{font-size:63.000000px;}
.fsb_c00146{font-size:65.100000px;}
.fs6_c00146{font-size:66.150000px;}
.fs5_c00146{font-size:67.200000px;}
.fs7_c00146{font-size:68.250000px;}
.fsc_c00146{font-size:69.300000px;}
.fs1_c00146{font-size:71.400000px;}
.fs4_c00146{font-size:72.450000px;}
.fse_c00146{font-size:76.650000px;}
.fs0_c00146{font-size:113.400000px;}
.y0_c00146{bottom:0.000000px;}
.y84_c00146{bottom:31.576500px;}
.y83_c00146{bottom:32.133000px;}
.y82_c00146{bottom:33.748500px;}
.y81_c00146{bottom:34.200000px;}
.y80_c00146{bottom:35.076000px;}
.y7f_c00146{bottom:36.580500px;}
.y7e_c00146{bottom:36.718500px;}
.y7d_c00146{bottom:50.449500px;}
.y7c_c00146{bottom:50.829000px;}
.y7b_c00146{bottom:52.018500px;}
.y7a_c00146{bottom:52.450500px;}
.y79_c00146{bottom:53.272500px;}
.y78_c00146{bottom:53.850000px;}
.y77_c00146{bottom:54.808500px;}
.y76_c00146{bottom:66.735000px;}
.y75_c00146{bottom:68.043000px;}
.y74_c00146{bottom:69.177000px;}
.y73_c00146{bottom:69.577500px;}
.y72_c00146{bottom:70.639500px;}
.y71_c00146{bottom:71.008500px;}
.y70_c00146{bottom:87.336000px;}
.y6f_c00146{bottom:101.485500px;}
.y6e_c00146{bottom:101.920500px;}
.y6d_c00146{bottom:102.702000px;}
.y6c_c00146{bottom:103.338000px;}
.y6b_c00146{bottom:103.741500px;}
.y6a_c00146{bottom:104.757000px;}
.y69_c00146{bottom:120.978000px;}
.y68_c00146{bottom:121.378500px;}
.y67_c00146{bottom:122.754000px;}
.y66_c00146{bottom:123.391500px;}
.y65_c00146{bottom:135.720000px;}
.y64_c00146{bottom:153.910500px;}
.y63_c00146{bottom:154.540500px;}
.y62_c00146{bottom:155.562000px;}
.y61_c00146{bottom:155.844000px;}
.y60_c00146{bottom:156.252000px;}
.y5f_c00146{bottom:157.177500px;}
.y5e_c00146{bottom:157.720500px;}
.y5d_c00146{bottom:158.295000px;}
.y5c_c00146{bottom:158.757000px;}
.y5b_c00146{bottom:170.133000px;}
.y5a_c00146{bottom:170.733000px;}
.y59_c00146{bottom:171.444000px;}
.y58_c00146{bottom:171.766500px;}
.y57_c00146{bottom:172.774500px;}
.y56_c00146{bottom:173.143500px;}
.y55_c00146{bottom:173.326500px;}
.y54_c00146{bottom:174.147000px;}
.y53_c00146{bottom:187.089000px;}
.y52_c00146{bottom:187.360500px;}
.y51_c00146{bottom:187.557000px;}
.y50_c00146{bottom:188.566500px;}
.y4f_c00146{bottom:188.835000px;}
.y4e_c00146{bottom:189.481500px;}
.y4d_c00146{bottom:190.158000px;}
.y4c_c00146{bottom:190.494000px;}
.y4b_c00146{bottom:191.155500px;}
.y4a_c00146{bottom:204.640500px;}
.y49_c00146{bottom:204.835500px;}
.y48_c00146{bottom:205.455000px;}
.y47_c00146{bottom:205.801500px;}
.y46_c00146{bottom:206.515500px;}
.y45_c00146{bottom:206.794500px;}
.y44_c00146{bottom:207.364500px;}
.y43_c00146{bottom:207.627000px;}
.y42_c00146{bottom:221.088000px;}
.y41_c00146{bottom:221.889000px;}
.y40_c00146{bottom:222.247500px;}
.y3f_c00146{bottom:222.630000px;}
.y3e_c00146{bottom:223.003500px;}
.y3d_c00146{bottom:223.273500px;}
.y3c_c00146{bottom:223.905000px;}
.y3b_c00146{bottom:224.638500px;}
.y3a_c00146{bottom:238.579500px;}
.y39_c00146{bottom:239.284500px;}
.y38_c00146{bottom:239.697000px;}
.y37_c00146{bottom:239.887500px;}
.y36_c00146{bottom:240.199500px;}
.y35_c00146{bottom:240.565500px;}
.y34_c00146{bottom:240.775500px;}
.y33_c00146{bottom:240.936000px;}
.y32_c00146{bottom:241.650000px;}
.y31_c00146{bottom:255.739500px;}
.y30_c00146{bottom:256.321500px;}
.y2f_c00146{bottom:256.539000px;}
.y2e_c00146{bottom:256.942500px;}
.y2d_c00146{bottom:258.118500px;}
.y2c_c00146{bottom:258.483000px;}
.y2b_c00146{bottom:258.886500px;}
.y2a_c00146{bottom:259.470000px;}
.y29_c00146{bottom:273.030000px;}
.y28_c00146{bottom:273.303000px;}
.y27_c00146{bottom:273.876000px;}
.y26_c00146{bottom:274.218000px;}
.y25_c00146{bottom:275.283000px;}
.y24_c00146{bottom:275.644500px;}
.y23_c00146{bottom:275.911500px;}
.y22_c00146{bottom:276.508500px;}
.y21_c00146{bottom:276.750000px;}
.y20_c00146{bottom:290.760000px;}
.y1f_c00146{bottom:291.291000px;}
.y1e_c00146{bottom:291.508500px;}
.y1d_c00146{bottom:291.748500px;}
.y1c_c00146{bottom:292.687500px;}
.y1b_c00146{bottom:292.939500px;}
.y1a_c00146{bottom:293.515500px;}
.y19_c00146{bottom:293.758500px;}
.y18_c00146{bottom:308.508000px;}
.y17_c00146{bottom:309.108000px;}
.y16_c00146{bottom:309.303000px;}
.y15_c00146{bottom:309.903000px;}
.y14_c00146{bottom:310.068000px;}
.y13_c00146{bottom:310.479000px;}
.y12_c00146{bottom:310.687500px;}
.y11_c00146{bottom:311.041500px;}
.y10_c00146{bottom:326.721000px;}
.yf_c00146{bottom:343.914000px;}
.ye_c00146{bottom:359.791500px;}
.yd_c00146{bottom:376.849500px;}
.yc_c00146{bottom:393.709500px;}
.yb_c00146{bottom:411.609000px;}
.ya_c00146{bottom:428.151000px;}
.y9_c00146{bottom:445.671000px;}
.y8_c00146{bottom:462.717000px;}
.y7_c00146{bottom:479.725500px;}
.y6_c00146{bottom:497.154000px;}
.y5_c00146{bottom:513.672000px;}
.y4_c00146{bottom:531.354000px;}
.y3_c00146{bottom:548.577000px;}
.y2_c00146{bottom:565.704000px;}
.y1_c00146{bottom:579.436500px;}
.ha_c00146{height:57.750000px;}
.hb_c00146{height:58.800000px;}
.hc_c00146{height:59.850000px;}
.h5_c00146{height:60.900000px;}
.h4_c00146{height:61.950000px;}
.hf_c00146{height:63.000000px;}
.hd_c00146{height:65.100000px;}
.h8_c00146{height:66.150000px;}
.h7_c00146{height:67.200000px;}
.h9_c00146{height:68.250000px;}
.he_c00146{height:69.300000px;}
.h3_c00146{height:71.400000px;}
.h6_c00146{height:72.450000px;}
.h10_c00146{height:76.650000px;}
.h2_c00146{height:113.400000px;}
.h1_c00146{height:623.250000px;}
.h0_c00146{height:623.400000px;}
.w1_c00146{width:383.250000px;}
.w0_c00146{width:383.400000px;}
.x0_c00146{left:0.000000px;}
.xf_c00146{left:29.700000px;}
.x1a_c00146{left:36.180000px;}
.x3_c00146{left:38.070000px;}
.x22_c00146{left:39.150000px;}
.x4c_c00146{left:40.230000px;}
.x60_c00146{left:41.425500px;}
.x80_c00146{left:48.429000px;}
.x65_c00146{left:50.598000px;}
.x59_c00146{left:55.728000px;}
.x56_c00146{left:58.444500px;}
.x41_c00146{left:60.750000px;}
.x13_c00146{left:63.720000px;}
.x3c_c00146{left:64.800000px;}
.x45_c00146{left:65.880000px;}
.x1b_c00146{left:67.500000px;}
.x32_c00146{left:70.470000px;}
.x9_c00146{left:73.710000px;}
.x10_c00146{left:76.410000px;}
.x4d_c00146{left:79.110000px;}
.x1_c00146{left:80.460000px;}
.x1c_c00146{left:83.970000px;}
.x14_c00146{left:85.860000px;}
.x49_c00146{left:89.640000px;}
.xa_c00146{left:90.720000px;}
.x7e_c00146{left:93.048000px;}
.x52_c00146{left:94.372500px;}
.x23_c00146{left:95.850000px;}
.x11_c00146{left:97.740000px;}
.x6e_c00146{left:99.211500px;}
.x5a_c00146{left:101.620500px;}
.x66_c00146{left:102.979500px;}
.x72_c00146{left:104.650500px;}
.x61_c00146{left:106.300500px;}
.x4a_c00146{left:109.890000px;}
.x3d_c00146{left:111.510000px;}
.x33_c00146{left:112.590000px;}
.x15_c00146{left:115.290000px;}
.x5e_c00146{left:117.087000px;}
.x2e_c00146{left:118.530000px;}
.x62_c00146{left:120.882000px;}
.x5b_c00146{left:122.137500px;}
.x4_c00146{left:124.740000px;}
.x4e_c00146{left:129.330000px;}
.x1d_c00146{left:131.490000px;}
.x28_c00146{left:132.570000px;}
.x37_c00146{left:134.730000px;}
.x46_c00146{left:136.620000px;}
.x6f_c00146{left:138.636000px;}
.x63_c00146{left:139.999500px;}
.x5_c00146{left:141.210000px;}
.x24_c00146{left:143.100000px;}
.x5f_c00146{left:145.095000px;}
.x3e_c00146{left:147.150000px;}
.x4f_c00146{left:148.230000px;}
.x5c_c00146{left:149.946000px;}
.x53_c00146{left:151.879500px;}
.x38_c00146{left:155.790000px;}
.x6a_c00146{left:161.317500px;}
.x7a_c00146{left:163.626000px;}
.x25_c00146{left:166.050000px;}
.xb_c00146{left:167.670000px;}
.x7f_c00146{left:170.739000px;}
.x2_c00146{left:172.260000px;}
.x42_c00146{left:173.880000px;}
.x7b_c00146{left:177.666000px;}
.x16_c00146{left:179.280000px;}
.x76_c00146{left:180.633000px;}
.x73_c00146{left:181.899000px;}
.x50_c00146{left:183.870000px;}
.x34_c00146{left:184.950000px;}
.x78_c00146{left:187.251000px;}
.x29_c00146{left:189.270000px;}
.x2f_c00146{left:190.350000px;}
.x6_c00146{left:194.400000px;}
.x7c_c00146{left:195.756000px;}
.x1e_c00146{left:198.450000px;}
.x47_c00146{left:201.150000px;}
.x12_c00146{left:203.310000px;}
.x81_c00146{left:204.708000px;}
.x2a_c00146{left:208.440000px;}
.x70_c00146{left:210.655500px;}
.x3f_c00146{left:211.680000px;}
.x7_c00146{left:213.300000px;}
.x74_c00146{left:218.284500px;}
.x1f_c00146{left:219.780000px;}
.x67_c00146{left:221.299500px;}
.x68_c00146{left:222.607500px;}
.x26_c00146{left:224.100000px;}
.x2b_c00146{left:225.990000px;}
.x40_c00146{left:228.690000px;}
.x54_c00146{left:231.252000px;}
.x35_c00146{left:233.550000px;}
.x43_c00146{left:234.630000px;}
.x20_c00146{left:236.790000px;}
.x57_c00146{left:241.014000px;}
.x39_c00146{left:243.270000px;}
.x27_c00146{left:245.970000px;}
.xc_c00146{left:251.640000px;}
.x64_c00146{left:256.365000px;}
.x5d_c00146{left:258.219000px;}
.x48_c00146{left:260.010000px;}
.x3a_c00146{left:262.980000px;}
.x30_c00146{left:266.490000px;}
.x17_c00146{left:270.270000px;}
.x75_c00146{left:272.031000px;}
.x69_c00146{left:274.180500px;}
.x4b_c00146{left:275.940000px;}
.x31_c00146{left:278.370000px;}
.x7d_c00146{left:279.996000px;}
.x2c_c00146{left:281.070000px;}
.x18_c00146{left:283.230000px;}
.x71_c00146{left:284.433000px;}
.x21_c00146{left:288.090000px;}
.x82_c00146{left:289.728000px;}
.x55_c00146{left:291.199500px;}
.xd_c00146{left:293.760000px;}
.x77_c00146{left:295.653000px;}
.x6b_c00146{left:298.803000px;}
.x44_c00146{left:301.590000px;}
.x2d_c00146{left:304.560000px;}
.x8_c00146{left:306.990000px;}
.x58_c00146{left:309.009000px;}
.x6c_c00146{left:312.837000px;}
.xe_c00146{left:314.550000px;}
.x36_c00146{left:319.410000px;}
.x51_c00146{left:322.650000px;}
.x19_c00146{left:324.000000px;}
.x3b_c00146{left:327.510000px;}
.x79_c00146{left:329.776500px;}
.x6d_c00146{left:332.202000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.fs8_c00146{font-size:51.333333pt;}
.fs9_c00146{font-size:52.266667pt;}
.fsa_c00146{font-size:53.200000pt;}
.fs3_c00146{font-size:54.133333pt;}
.fs2_c00146{font-size:55.066667pt;}
.fsd_c00146{font-size:56.000000pt;}
.fsb_c00146{font-size:57.866667pt;}
.fs6_c00146{font-size:58.800000pt;}
.fs5_c00146{font-size:59.733333pt;}
.fs7_c00146{font-size:60.666667pt;}
.fsc_c00146{font-size:61.600000pt;}
.fs1_c00146{font-size:63.466667pt;}
.fs4_c00146{font-size:64.400000pt;}
.fse_c00146{font-size:68.133333pt;}
.fs0_c00146{font-size:100.800000pt;}
.y0_c00146{bottom:0.000000pt;}
.y84_c00146{bottom:28.068000pt;}
.y83_c00146{bottom:28.562667pt;}
.y82_c00146{bottom:29.998667pt;}
.y81_c00146{bottom:30.400000pt;}
.y80_c00146{bottom:31.178667pt;}
.y7f_c00146{bottom:32.516000pt;}
.y7e_c00146{bottom:32.638667pt;}
.y7d_c00146{bottom:44.844000pt;}
.y7c_c00146{bottom:45.181333pt;}
.y7b_c00146{bottom:46.238667pt;}
.y7a_c00146{bottom:46.622667pt;}
.y79_c00146{bottom:47.353333pt;}
.y78_c00146{bottom:47.866667pt;}
.y77_c00146{bottom:48.718667pt;}
.y76_c00146{bottom:59.320000pt;}
.y75_c00146{bottom:60.482667pt;}
.y74_c00146{bottom:61.490667pt;}
.y73_c00146{bottom:61.846667pt;}
.y72_c00146{bottom:62.790667pt;}
.y71_c00146{bottom:63.118667pt;}
.y70_c00146{bottom:77.632000pt;}
.y6f_c00146{bottom:90.209333pt;}
.y6e_c00146{bottom:90.596000pt;}
.y6d_c00146{bottom:91.290667pt;}
.y6c_c00146{bottom:91.856000pt;}
.y6b_c00146{bottom:92.214667pt;}
.y6a_c00146{bottom:93.117333pt;}
.y69_c00146{bottom:107.536000pt;}
.y68_c00146{bottom:107.892000pt;}
.y67_c00146{bottom:109.114667pt;}
.y66_c00146{bottom:109.681333pt;}
.y65_c00146{bottom:120.640000pt;}
.y64_c00146{bottom:136.809333pt;}
.y63_c00146{bottom:137.369333pt;}
.y62_c00146{bottom:138.277333pt;}
.y61_c00146{bottom:138.528000pt;}
.y60_c00146{bottom:138.890667pt;}
.y5f_c00146{bottom:139.713333pt;}
.y5e_c00146{bottom:140.196000pt;}
.y5d_c00146{bottom:140.706667pt;}
.y5c_c00146{bottom:141.117333pt;}
.y5b_c00146{bottom:151.229333pt;}
.y5a_c00146{bottom:151.762667pt;}
.y59_c00146{bottom:152.394667pt;}
.y58_c00146{bottom:152.681333pt;}
.y57_c00146{bottom:153.577333pt;}
.y56_c00146{bottom:153.905333pt;}
.y55_c00146{bottom:154.068000pt;}
.y54_c00146{bottom:154.797333pt;}
.y53_c00146{bottom:166.301333pt;}
.y52_c00146{bottom:166.542667pt;}
.y51_c00146{bottom:166.717333pt;}
.y50_c00146{bottom:167.614667pt;}
.y4f_c00146{bottom:167.853333pt;}
.y4e_c00146{bottom:168.428000pt;}
.y4d_c00146{bottom:169.029333pt;}
.y4c_c00146{bottom:169.328000pt;}
.y4b_c00146{bottom:169.916000pt;}
.y4a_c00146{bottom:181.902667pt;}
.y49_c00146{bottom:182.076000pt;}
.y48_c00146{bottom:182.626667pt;}
.y47_c00146{bottom:182.934667pt;}
.y46_c00146{bottom:183.569333pt;}
.y45_c00146{bottom:183.817333pt;}
.y44_c00146{bottom:184.324000pt;}
.y43_c00146{bottom:184.557333pt;}
.y42_c00146{bottom:196.522667pt;}
.y41_c00146{bottom:197.234667pt;}
.y40_c00146{bottom:197.553333pt;}
.y3f_c00146{bottom:197.893333pt;}
.y3e_c00146{bottom:198.225333pt;}
.y3d_c00146{bottom:198.465333pt;}
.y3c_c00146{bottom:199.026667pt;}
.y3b_c00146{bottom:199.678667pt;}
.y3a_c00146{bottom:212.070667pt;}
.y39_c00146{bottom:212.697333pt;}
.y38_c00146{bottom:213.064000pt;}
.y37_c00146{bottom:213.233333pt;}
.y36_c00146{bottom:213.510667pt;}
.y35_c00146{bottom:213.836000pt;}
.y34_c00146{bottom:214.022667pt;}
.y33_c00146{bottom:214.165333pt;}
.y32_c00146{bottom:214.800000pt;}
.y31_c00146{bottom:227.324000pt;}
.y30_c00146{bottom:227.841333pt;}
.y2f_c00146{bottom:228.034667pt;}
.y2e_c00146{bottom:228.393333pt;}
.y2d_c00146{bottom:229.438667pt;}
.y2c_c00146{bottom:229.762667pt;}
.y2b_c00146{bottom:230.121333pt;}
.y2a_c00146{bottom:230.640000pt;}
.y29_c00146{bottom:242.693333pt;}
.y28_c00146{bottom:242.936000pt;}
.y27_c00146{bottom:243.445333pt;}
.y26_c00146{bottom:243.749333pt;}
.y25_c00146{bottom:244.696000pt;}
.y24_c00146{bottom:245.017333pt;}
.y23_c00146{bottom:245.254667pt;}
.y22_c00146{bottom:245.785333pt;}
.y21_c00146{bottom:246.000000pt;}
.y20_c00146{bottom:258.453333pt;}
.y1f_c00146{bottom:258.925333pt;}
.y1e_c00146{bottom:259.118667pt;}
.y1d_c00146{bottom:259.332000pt;}
.y1c_c00146{bottom:260.166667pt;}
.y1b_c00146{bottom:260.390667pt;}
.y1a_c00146{bottom:260.902667pt;}
.y19_c00146{bottom:261.118667pt;}
.y18_c00146{bottom:274.229333pt;}
.y17_c00146{bottom:274.762667pt;}
.y16_c00146{bottom:274.936000pt;}
.y15_c00146{bottom:275.469333pt;}
.y14_c00146{bottom:275.616000pt;}
.y13_c00146{bottom:275.981333pt;}
.y12_c00146{bottom:276.166667pt;}
.y11_c00146{bottom:276.481333pt;}
.y10_c00146{bottom:290.418667pt;}
.yf_c00146{bottom:305.701333pt;}
.ye_c00146{bottom:319.814667pt;}
.yd_c00146{bottom:334.977333pt;}
.yc_c00146{bottom:349.964000pt;}
.yb_c00146{bottom:365.874667pt;}
.ya_c00146{bottom:380.578667pt;}
.y9_c00146{bottom:396.152000pt;}
.y8_c00146{bottom:411.304000pt;}
.y7_c00146{bottom:426.422667pt;}
.y6_c00146{bottom:441.914667pt;}
.y5_c00146{bottom:456.597333pt;}
.y4_c00146{bottom:472.314667pt;}
.y3_c00146{bottom:487.624000pt;}
.y2_c00146{bottom:502.848000pt;}
.y1_c00146{bottom:515.054667pt;}
.ha_c00146{height:51.333333pt;}
.hb_c00146{height:52.266667pt;}
.hc_c00146{height:53.200000pt;}
.h5_c00146{height:54.133333pt;}
.h4_c00146{height:55.066667pt;}
.hf_c00146{height:56.000000pt;}
.hd_c00146{height:57.866667pt;}
.h8_c00146{height:58.800000pt;}
.h7_c00146{height:59.733333pt;}
.h9_c00146{height:60.666667pt;}
.he_c00146{height:61.600000pt;}
.h3_c00146{height:63.466667pt;}
.h6_c00146{height:64.400000pt;}
.h10_c00146{height:68.133333pt;}
.h2_c00146{height:100.800000pt;}
.h1_c00146{height:554.000000pt;}
.h0_c00146{height:554.133333pt;}
.w1_c00146{width:340.666667pt;}
.w0_c00146{width:340.800000pt;}
.x0_c00146{left:0.000000pt;}
.xf_c00146{left:26.400000pt;}
.x1a_c00146{left:32.160000pt;}
.x3_c00146{left:33.840000pt;}
.x22_c00146{left:34.800000pt;}
.x4c_c00146{left:35.760000pt;}
.x60_c00146{left:36.822667pt;}
.x80_c00146{left:43.048000pt;}
.x65_c00146{left:44.976000pt;}
.x59_c00146{left:49.536000pt;}
.x56_c00146{left:51.950667pt;}
.x41_c00146{left:54.000000pt;}
.x13_c00146{left:56.640000pt;}
.x3c_c00146{left:57.600000pt;}
.x45_c00146{left:58.560000pt;}
.x1b_c00146{left:60.000000pt;}
.x32_c00146{left:62.640000pt;}
.x9_c00146{left:65.520000pt;}
.x10_c00146{left:67.920000pt;}
.x4d_c00146{left:70.320000pt;}
.x1_c00146{left:71.520000pt;}
.x1c_c00146{left:74.640000pt;}
.x14_c00146{left:76.320000pt;}
.x49_c00146{left:79.680000pt;}
.xa_c00146{left:80.640000pt;}
.x7e_c00146{left:82.709333pt;}
.x52_c00146{left:83.886667pt;}
.x23_c00146{left:85.200000pt;}
.x11_c00146{left:86.880000pt;}
.x6e_c00146{left:88.188000pt;}
.x5a_c00146{left:90.329333pt;}
.x66_c00146{left:91.537333pt;}
.x72_c00146{left:93.022667pt;}
.x61_c00146{left:94.489333pt;}
.x4a_c00146{left:97.680000pt;}
.x3d_c00146{left:99.120000pt;}
.x33_c00146{left:100.080000pt;}
.x15_c00146{left:102.480000pt;}
.x5e_c00146{left:104.077333pt;}
.x2e_c00146{left:105.360000pt;}
.x62_c00146{left:107.450667pt;}
.x5b_c00146{left:108.566667pt;}
.x4_c00146{left:110.880000pt;}
.x4e_c00146{left:114.960000pt;}
.x1d_c00146{left:116.880000pt;}
.x28_c00146{left:117.840000pt;}
.x37_c00146{left:119.760000pt;}
.x46_c00146{left:121.440000pt;}
.x6f_c00146{left:123.232000pt;}
.x63_c00146{left:124.444000pt;}
.x5_c00146{left:125.520000pt;}
.x24_c00146{left:127.200000pt;}
.x5f_c00146{left:128.973333pt;}
.x3e_c00146{left:130.800000pt;}
.x4f_c00146{left:131.760000pt;}
.x5c_c00146{left:133.285333pt;}
.x53_c00146{left:135.004000pt;}
.x38_c00146{left:138.480000pt;}
.x6a_c00146{left:143.393333pt;}
.x7a_c00146{left:145.445333pt;}
.x25_c00146{left:147.600000pt;}
.xb_c00146{left:149.040000pt;}
.x7f_c00146{left:151.768000pt;}
.x2_c00146{left:153.120000pt;}
.x42_c00146{left:154.560000pt;}
.x7b_c00146{left:157.925333pt;}
.x16_c00146{left:159.360000pt;}
.x76_c00146{left:160.562667pt;}
.x73_c00146{left:161.688000pt;}
.x50_c00146{left:163.440000pt;}
.x34_c00146{left:164.400000pt;}
.x78_c00146{left:166.445333pt;}
.x29_c00146{left:168.240000pt;}
.x2f_c00146{left:169.200000pt;}
.x6_c00146{left:172.800000pt;}
.x7c_c00146{left:174.005333pt;}
.x1e_c00146{left:176.400000pt;}
.x47_c00146{left:178.800000pt;}
.x12_c00146{left:180.720000pt;}
.x81_c00146{left:181.962667pt;}
.x2a_c00146{left:185.280000pt;}
.x70_c00146{left:187.249333pt;}
.x3f_c00146{left:188.160000pt;}
.x7_c00146{left:189.600000pt;}
.x74_c00146{left:194.030667pt;}
.x1f_c00146{left:195.360000pt;}
.x67_c00146{left:196.710667pt;}
.x68_c00146{left:197.873333pt;}
.x26_c00146{left:199.200000pt;}
.x2b_c00146{left:200.880000pt;}
.x40_c00146{left:203.280000pt;}
.x54_c00146{left:205.557333pt;}
.x35_c00146{left:207.600000pt;}
.x43_c00146{left:208.560000pt;}
.x20_c00146{left:210.480000pt;}
.x57_c00146{left:214.234667pt;}
.x39_c00146{left:216.240000pt;}
.x27_c00146{left:218.640000pt;}
.xc_c00146{left:223.680000pt;}
.x64_c00146{left:227.880000pt;}
.x5d_c00146{left:229.528000pt;}
.x48_c00146{left:231.120000pt;}
.x3a_c00146{left:233.760000pt;}
.x30_c00146{left:236.880000pt;}
.x17_c00146{left:240.240000pt;}
.x75_c00146{left:241.805333pt;}
.x69_c00146{left:243.716000pt;}
.x4b_c00146{left:245.280000pt;}
.x31_c00146{left:247.440000pt;}
.x7d_c00146{left:248.885333pt;}
.x2c_c00146{left:249.840000pt;}
.x18_c00146{left:251.760000pt;}
.x71_c00146{left:252.829333pt;}
.x21_c00146{left:256.080000pt;}
.x82_c00146{left:257.536000pt;}
.x55_c00146{left:258.844000pt;}
.xd_c00146{left:261.120000pt;}
.x77_c00146{left:262.802667pt;}
.x6b_c00146{left:265.602667pt;}
.x44_c00146{left:268.080000pt;}
.x2d_c00146{left:270.720000pt;}
.x8_c00146{left:272.880000pt;}
.x58_c00146{left:274.674667pt;}
.x6c_c00146{left:278.077333pt;}
.xe_c00146{left:279.600000pt;}
.x36_c00146{left:283.920000pt;}
.x51_c00146{left:286.800000pt;}
.x19_c00146{left:288.000000pt;}
.x3b_c00146{left:291.120000pt;}
.x79_c00146{left:293.134667pt;}
.x6d_c00146{left:295.290667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00147 {
    display:none;
  }
  .loading-indicator_c00147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00147 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00147 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00147" -> "#page-container .classname_c00147")
 */
.pf_c00147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00147 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00147 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00147 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00147 {overflow:visible;}
  }
}
.c_c00147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00147 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00147:after { /* webkit #35443 */
  content: '';
}
.t_c00147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00147 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00147 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00147 { /* info for Javascript */
  display:none;
}
.l_c00147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00147:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00147 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00147.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00147{transform:matrix(0.118841,-0.002377,0.004999,0.249950,0,0);-ms-transform:matrix(0.118841,-0.002377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.118841,-0.002377,0.004999,0.249950,0,0);}
.m36_c00147{transform:matrix(0.140422,-0.002808,0.004999,0.249950,0,0);-ms-transform:matrix(0.140422,-0.002808,0.004999,0.249950,0,0);-webkit-transform:matrix(0.140422,-0.002808,0.004999,0.249950,0,0);}
.ma4_c00147{transform:matrix(0.144870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144870,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.144961,-0.002899,0.004999,0.249950,0,0);-ms-transform:matrix(0.144961,-0.002899,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144961,-0.002899,0.004999,0.249950,0,0);}
.m8_c00147{transform:matrix(0.146341,-0.002927,0.004999,0.249950,0,0);-ms-transform:matrix(0.146341,-0.002927,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146341,-0.002927,0.004999,0.249950,0,0);}
.mee_c00147{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.153414,-0.003068,0.004999,0.249950,0,0);-ms-transform:matrix(0.153414,-0.003068,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153414,-0.003068,0.004999,0.249950,0,0);}
.m18_c00147{transform:matrix(0.153489,-0.003070,0.004999,0.249950,0,0);-ms-transform:matrix(0.153489,-0.003070,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153489,-0.003070,0.004999,0.249950,0,0);}
.ma6_c00147{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.157728,-0.003155,0.004999,0.249950,0,0);-ms-transform:matrix(0.157728,-0.003155,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157728,-0.003155,0.004999,0.249950,0,0);}
.m50_c00147{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{transform:matrix(0.160188,-0.003204,0.004999,0.249950,0,0);-ms-transform:matrix(0.160188,-0.003204,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160188,-0.003204,0.004999,0.249950,0,0);}
.mc_c00147{transform:matrix(0.160588,-0.003212,0.004999,0.249950,0,0);-ms-transform:matrix(0.160588,-0.003212,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160588,-0.003212,0.004999,0.249950,0,0);}
.m7f_c00147{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.mea_c00147{transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.m83_c00147{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.ma8_c00147{transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);}
.m67_c00147{transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00147{transform:matrix(0.162697,-0.003254,0.004999,0.249950,0,0);-ms-transform:matrix(0.162697,-0.003254,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162697,-0.003254,0.004999,0.249950,0,0);}
.mb1_c00147{transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);}
.mc1_c00147{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m94_c00147{transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);-ms-transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);}
.m1_c00147{transform:matrix(0.164432,-0.003289,0.004999,0.249950,0,0);-ms-transform:matrix(0.164432,-0.003289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164432,-0.003289,0.004999,0.249950,0,0);}
.m14_c00147{transform:matrix(0.165807,-0.003316,0.004999,0.249950,0,0);-ms-transform:matrix(0.165807,-0.003316,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165807,-0.003316,0.004999,0.249950,0,0);}
.med_c00147{transform:matrix(0.166915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166915,0.000000,0.000000,0.250000,0,0);}
.maa_c00147{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.ma3_c00147{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.ma2_c00147{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.ma1_c00147{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.mef_c00147{transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);}
.m9d_c00147{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.171576,-0.003432,0.004999,0.249950,0,0);-ms-transform:matrix(0.171576,-0.003432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171576,-0.003432,0.004999,0.249950,0,0);}
.ma9_c00147{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.172226,-0.003445,0.004999,0.249950,0,0);-ms-transform:matrix(0.172226,-0.003445,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172226,-0.003445,0.004999,0.249950,0,0);}
.m2a_c00147{transform:matrix(0.172431,-0.003449,0.004999,0.249950,0,0);-ms-transform:matrix(0.172431,-0.003449,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172431,-0.003449,0.004999,0.249950,0,0);}
.mf0_c00147{transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);}
.me6_c00147{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m5d_c00147{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.mc8_c00147{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{transform:matrix(0.174200,-0.003484,0.004999,0.249950,0,0);-ms-transform:matrix(0.174200,-0.003484,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174200,-0.003484,0.004999,0.249950,0,0);}
.m3d_c00147{transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);-ms-transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174525,-0.003491,0.004999,0.249950,0,0);}
.m60_c00147{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00147{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m64_c00147{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.ma5_c00147{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.mbb_c00147{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.mc9_c00147{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.mc5_c00147{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.mc3_c00147{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{transform:matrix(0.177694,-0.003554,0.004999,0.249950,0,0);-ms-transform:matrix(0.177694,-0.003554,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177694,-0.003554,0.004999,0.249950,0,0);}
.m8d_c00147{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.meb_c00147{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00147{transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);}
.m92_c00147{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.179104,-0.003582,0.004999,0.249950,0,0);-ms-transform:matrix(0.179104,-0.003582,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179104,-0.003582,0.004999,0.249950,0,0);}
.mda_c00147{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);}
.mce_c00147{transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.179524,-0.003590,0.004999,0.249950,0,0);-ms-transform:matrix(0.179524,-0.003590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179524,-0.003590,0.004999,0.249950,0,0);}
.m59_c00147{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);}
.m74_c00147{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.mec_c00147{transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);}
.m49_c00147{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.md0_c00147{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.182528,-0.003651,0.004999,0.249950,0,0);-ms-transform:matrix(0.182528,-0.003651,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182528,-0.003651,0.004999,0.249950,0,0);}
.m17_c00147{transform:matrix(0.182778,-0.003656,0.004999,0.249950,0,0);-ms-transform:matrix(0.182778,-0.003656,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182778,-0.003656,0.004999,0.249950,0,0);}
.m33_c00147{transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);-ms-transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);}
.m6a_c00147{transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);}
.me7_c00147{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.mf1_c00147{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m6f_c00147{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m88_c00147{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m61_c00147{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m23_c00147{transform:matrix(0.185033,-0.003701,0.004999,0.249950,0,0);-ms-transform:matrix(0.185033,-0.003701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185033,-0.003701,0.004999,0.249950,0,0);}
.me5_c00147{transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);}
.mbc_c00147{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.mad_c00147{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m9e_c00147{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.185693,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185693,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185693,-0.003714,0.004999,0.249950,0,0);}
.m34_c00147{transform:matrix(0.185838,-0.003717,0.004999,0.249950,0,0);-ms-transform:matrix(0.185838,-0.003717,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185838,-0.003717,0.004999,0.249950,0,0);}
.m9c_c00147{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{transform:matrix(0.186098,-0.003722,0.004999,0.249950,0,0);-ms-transform:matrix(0.186098,-0.003722,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186098,-0.003722,0.004999,0.249950,0,0);}
.m9a_c00147{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m84_c00147{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m80_c00147{transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);}
.md2_c00147{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m2e_c00147{transform:matrix(0.187952,-0.003759,0.004999,0.249950,0,0);-ms-transform:matrix(0.187952,-0.003759,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187952,-0.003759,0.004999,0.249950,0,0);}
.m81_c00147{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.mac_c00147{transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);}
.m82_c00147{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.md8_c00147{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00147{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.mbf_c00147{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.mb6_c00147{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.mb9_c00147{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.191667,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191667,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191667,-0.003833,0.004999,0.249950,0,0);}
.mae_c00147{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00147{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.192027,-0.003841,0.004999,0.249950,0,0);-ms-transform:matrix(0.192027,-0.003841,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192027,-0.003841,0.004999,0.249950,0,0);}
.m37_c00147{transform:matrix(0.192816,-0.003856,0.004999,0.249950,0,0);-ms-transform:matrix(0.192816,-0.003856,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192816,-0.003856,0.004999,0.249950,0,0);}
.m57_c00147{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00147{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{transform:matrix(0.193321,-0.003866,0.004999,0.249950,0,0);-ms-transform:matrix(0.193321,-0.003866,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193321,-0.003866,0.004999,0.249950,0,0);}
.m90_c00147{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.193486,-0.003870,0.004999,0.249950,0,0);-ms-transform:matrix(0.193486,-0.003870,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193486,-0.003870,0.004999,0.249950,0,0);}
.mcb_c00147{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.mdf_c00147{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m8c_c00147{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.194716,-0.003894,0.004999,0.249950,0,0);-ms-transform:matrix(0.194716,-0.003894,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194716,-0.003894,0.004999,0.249950,0,0);}
.m1e_c00147{transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-ms-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);}
.m7a_c00147{transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);}
.m70_c00147{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m39_c00147{transform:matrix(0.196221,-0.003924,0.004999,0.249950,0,0);-ms-transform:matrix(0.196221,-0.003924,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196221,-0.003924,0.004999,0.249950,0,0);}
.m54_c00147{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.196611,-0.003932,0.004999,0.249950,0,0);-ms-transform:matrix(0.196611,-0.003932,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196611,-0.003932,0.004999,0.249950,0,0);}
.me8_c00147{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.mc6_c00147{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.197880,-0.003958,0.004999,0.249950,0,0);-ms-transform:matrix(0.197880,-0.003958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197880,-0.003958,0.004999,0.249950,0,0);}
.m47_c00147{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.md1_c00147{transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00147{transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-ms-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);}
.m5e_c00147{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.mb5_c00147{transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);}
.m9b_c00147{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m27_c00147{transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);-ms-transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);}
.m7d_c00147{transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);}
.m63_c00147{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m71_c00147{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.me2_c00147{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.mb2_c00147{transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);}
.mca_c00147{transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);-ms-transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);}
.m99_c00147{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m32_c00147{transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203564,-0.004071,0.004999,0.249950,0,0);}
.m73_c00147{transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);-ms-transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);}
.m2c_c00147{transform:matrix(0.204979,-0.004100,0.004999,0.249950,0,0);-ms-transform:matrix(0.204979,-0.004100,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204979,-0.004100,0.004999,0.249950,0,0);}
.m93_c00147{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m98_c00147{transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);}
.m75_c00147{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00147{transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);-ms-transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);}
.m4a_c00147{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{transform:matrix(0.206664,-0.004133,0.004999,0.249950,0,0);-ms-transform:matrix(0.206664,-0.004133,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206664,-0.004133,0.004999,0.249950,0,0);}
.m89_c00147{transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);}
.m25_c00147{transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-ms-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);}
.mc7_c00147{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.m6e_c00147{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);-ms-transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);}
.me9_c00147{transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);}
.md4_c00147{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{transform:matrix(0.208423,-0.004168,0.004999,0.249950,0,0);-ms-transform:matrix(0.208423,-0.004168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208423,-0.004168,0.004999,0.249950,0,0);}
.m65_c00147{transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);}
.md6_c00147{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-ms-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);}
.m48_c00147{transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);}
.md9_c00147{transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);}
.m68_c00147{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.mb0_c00147{transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m43_c00147{transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);-ms-transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210473,-0.004209,0.004999,0.249950,0,0);}
.md3_c00147{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.mdb_c00147{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m76_c00147{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mbe_c00147{transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211615,0.000000,0.000000,0.250000,0,0);}
.mcd_c00147{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.mb4_c00147{transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);}
.m7e_c00147{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.me3_c00147{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{transform:matrix(0.213207,-0.004264,0.004999,0.249950,0,0);-ms-transform:matrix(0.213207,-0.004264,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213207,-0.004264,0.004999,0.249950,0,0);}
.m5f_c00147{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.m3a_c00147{transform:matrix(0.213277,-0.004266,0.004999,0.249950,0,0);-ms-transform:matrix(0.213277,-0.004266,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213277,-0.004266,0.004999,0.249950,0,0);}
.m26_c00147{transform:matrix(0.213372,-0.004267,0.004999,0.249950,0,0);-ms-transform:matrix(0.213372,-0.004267,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213372,-0.004267,0.004999,0.249950,0,0);}
.mb7_c00147{transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{transform:matrix(0.213852,-0.004277,0.004999,0.249950,0,0);-ms-transform:matrix(0.213852,-0.004277,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213852,-0.004277,0.004999,0.249950,0,0);}
.m8a_c00147{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.mab_c00147{transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);}
.me0_c00147{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m58_c00147{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.mc4_c00147{transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);}
.mdc_c00147{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{transform:matrix(0.216730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216730,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);-ms-transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);}
.m7b_c00147{transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);}
.m66_c00147{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m52_c00147{transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-ms-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);}
.mc2_c00147{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.m86_c00147{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.mde_c00147{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.me4_c00147{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mb3_c00147{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.m56_c00147{transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);}
.m78_c00147{transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.221606,-0.004432,0.004999,0.249950,0,0);-ms-transform:matrix(0.221606,-0.004432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221606,-0.004432,0.004999,0.249950,0,0);}
.m24_c00147{transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);-ms-transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);}
.m62_c00147{transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);}
.maf_c00147{transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);}
.m22_c00147{transform:matrix(0.223465,-0.004469,0.004999,0.249950,0,0);-ms-transform:matrix(0.223465,-0.004469,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223465,-0.004469,0.004999,0.249950,0,0);}
.m2d_c00147{transform:matrix(0.223880,-0.004478,0.004999,0.249950,0,0);-ms-transform:matrix(0.223880,-0.004478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223880,-0.004478,0.004999,0.249950,0,0);}
.md7_c00147{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m85_c00147{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00147{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m69_c00147{transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);}
.md5_c00147{transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);}
.m38_c00147{transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);-ms-transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);}
.m20_c00147{transform:matrix(0.229554,-0.004591,0.004999,0.249950,0,0);-ms-transform:matrix(0.229554,-0.004591,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229554,-0.004591,0.004999,0.249950,0,0);}
.me1_c00147{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.m79_c00147{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m41_c00147{transform:matrix(0.231064,-0.004621,0.004999,0.249950,0,0);-ms-transform:matrix(0.231064,-0.004621,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231064,-0.004621,0.004999,0.249950,0,0);}
.m87_c00147{transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231130,0.000000,0.000000,0.250000,0,0);}
.mb8_c00147{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.mdd_c00147{transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);}
.mcf_c00147{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m4e_c00147{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.mc0_c00147{transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.241972,-0.004839,0.004999,0.249950,0,0);-ms-transform:matrix(0.241972,-0.004839,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241972,-0.004839,0.004999,0.249950,0,0);}
.m6b_c00147{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00147{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m97_c00147{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m21_c00147{transform:matrix(0.253739,-0.005075,0.004999,0.249950,0,0);-ms-transform:matrix(0.253739,-0.005075,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253739,-0.005075,0.004999,0.249950,0,0);}
.mba_c00147{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m7c_c00147{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m96_c00147{transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.339192,-0.006784,0.004999,0.249950,0,0);-ms-transform:matrix(0.339192,-0.006784,0.004999,0.249950,0,0);-webkit-transform:matrix(0.339192,-0.006784,0.004999,0.249950,0,0);}
.m4_c00147{transform:matrix(0.528454,-0.010569,0.004999,0.249950,0,0);-ms-transform:matrix(0.528454,-0.010569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.528454,-0.010569,0.004999,0.249950,0,0);}
.m6d_c00147{transform:matrix(0.643360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643360,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:0.000000px;}
.fc0_c00147{color:transparent;}
.fsc_c00147{font-size:58.800000px;}
.fs8_c00147{font-size:59.850000px;}
.fs6_c00147{font-size:59.861969px;}
.fsa_c00147{font-size:60.900000px;}
.fs4_c00147{font-size:60.912179px;}
.fs9_c00147{font-size:61.950000px;}
.fs0_c00147{font-size:63.000000px;}
.fsf_c00147{font-size:64.050000px;}
.fsd_c00147{font-size:65.100000px;}
.fs10_c00147{font-size:66.150000px;}
.fsb_c00147{font-size:67.200000px;}
.fs1_c00147{font-size:67.213439px;}
.fs7_c00147{font-size:68.250000px;}
.fs5_c00147{font-size:68.263649px;}
.fs3_c00147{font-size:70.364069px;}
.fs2_c00147{font-size:71.414279px;}
.fse_c00147{font-size:72.450000px;}
.fs11_c00147{font-size:74.550000px;}
.y0_c00147{bottom:0.000000px;}
.y91_c00147{bottom:24.168000px;}
.y90_c00147{bottom:41.986500px;}
.y8f_c00147{bottom:58.660500px;}
.y8e_c00147{bottom:75.853500px;}
.y8d_c00147{bottom:93.250500px;}
.y86_c00147{bottom:109.083000px;}
.y87_c00147{bottom:110.044500px;}
.y88_c00147{bottom:110.410500px;}
.y89_c00147{bottom:111.139500px;}
.y8a_c00147{bottom:111.424500px;}
.y8b_c00147{bottom:111.916500px;}
.y8c_c00147{bottom:112.306500px;}
.y85_c00147{bottom:128.080500px;}
.y7e_c00147{bottom:143.913000px;}
.y7f_c00147{bottom:144.534000px;}
.y80_c00147{bottom:145.467000px;}
.y81_c00147{bottom:145.882500px;}
.y82_c00147{bottom:146.014500px;}
.y83_c00147{bottom:146.284500px;}
.y84_c00147{bottom:146.571000px;}
.y77_c00147{bottom:161.461500px;}
.y78_c00147{bottom:161.883000px;}
.y79_c00147{bottom:162.058500px;}
.y7a_c00147{bottom:162.510000px;}
.y7b_c00147{bottom:163.144500px;}
.y7c_c00147{bottom:163.762500px;}
.y7d_c00147{bottom:164.286000px;}
.y76_c00147{bottom:181.306500px;}
.y75_c00147{bottom:198.312000px;}
.y74_c00147{bottom:216.336000px;}
.y73_c00147{bottom:233.802000px;}
.y72_c00147{bottom:251.118000px;}
.y71_c00147{bottom:268.365000px;}
.y69_c00147{bottom:284.311500px;}
.y6a_c00147{bottom:284.881500px;}
.y6b_c00147{bottom:285.030000px;}
.y6c_c00147{bottom:285.288000px;}
.y6d_c00147{bottom:286.063500px;}
.y6e_c00147{bottom:286.345500px;}
.y6f_c00147{bottom:286.770000px;}
.y70_c00147{bottom:286.993500px;}
.y68_c00147{bottom:302.956500px;}
.y62_c00147{bottom:318.333000px;}
.y63_c00147{bottom:319.548000px;}
.y64_c00147{bottom:319.861500px;}
.y65_c00147{bottom:320.182500px;}
.y66_c00147{bottom:320.791500px;}
.y67_c00147{bottom:321.018000px;}
.y5a_c00147{bottom:336.153000px;}
.y5b_c00147{bottom:336.439500px;}
.y5c_c00147{bottom:336.624000px;}
.y5d_c00147{bottom:337.036500px;}
.y5e_c00147{bottom:337.753500px;}
.y5f_c00147{bottom:337.956000px;}
.y60_c00147{bottom:338.655000px;}
.y61_c00147{bottom:338.949000px;}
.y53_c00147{bottom:353.164500px;}
.y54_c00147{bottom:353.556000px;}
.y55_c00147{bottom:353.868000px;}
.y56_c00147{bottom:354.486000px;}
.y57_c00147{bottom:355.222500px;}
.y58_c00147{bottom:355.680000px;}
.y59_c00147{bottom:355.884000px;}
.y4b_c00147{bottom:370.983000px;}
.y4c_c00147{bottom:371.562000px;}
.y4d_c00147{bottom:372.139500px;}
.y4e_c00147{bottom:372.342000px;}
.y4f_c00147{bottom:373.045500px;}
.y50_c00147{bottom:373.252500px;}
.y51_c00147{bottom:373.909500px;}
.y52_c00147{bottom:374.088000px;}
.y4a_c00147{bottom:390.283500px;}
.y49_c00147{bottom:407.874000px;}
.y48_c00147{bottom:424.661760px;}
.y42_c00147{bottom:424.662000px;}
.y43_c00147{bottom:424.662210px;}
.y47_c00147{bottom:424.662390px;}
.y44_c00147{bottom:424.662930px;}
.y45_c00147{bottom:424.663050px;}
.y46_c00147{bottom:424.663110px;}
.y3a_c00147{bottom:440.884950px;}
.y3b_c00147{bottom:441.018000px;}
.y3c_c00147{bottom:441.835560px;}
.y3d_c00147{bottom:442.307910px;}
.y3e_c00147{bottom:442.484280px;}
.y3f_c00147{bottom:443.050080px;}
.y40_c00147{bottom:443.231490px;}
.y41_c00147{bottom:443.442960px;}
.y39_c00147{bottom:459.528930px;}
.y38_c00147{bottom:459.529590px;}
.y37_c00147{bottom:459.529710px;}
.y36_c00147{bottom:459.530400px;}
.y35_c00147{bottom:459.530490px;}
.y32_c00147{bottom:459.530610px;}
.y34_c00147{bottom:459.530700px;}
.y33_c00147{bottom:459.530760px;}
.y2a_c00147{bottom:474.912660px;}
.y2b_c00147{bottom:475.211610px;}
.y2c_c00147{bottom:475.454640px;}
.y2d_c00147{bottom:475.716690px;}
.y2e_c00147{bottom:476.439270px;}
.y2f_c00147{bottom:477.138930px;}
.y30_c00147{bottom:477.832680px;}
.y31_c00147{bottom:478.338090px;}
.y21_c00147{bottom:491.658810px;}
.y22_c00147{bottom:492.069450px;}
.y23_c00147{bottom:492.212400px;}
.y24_c00147{bottom:493.114200px;}
.y25_c00147{bottom:493.425660px;}
.y26_c00147{bottom:494.118000px;}
.y27_c00147{bottom:494.350200px;}
.y28_c00147{bottom:494.802510px;}
.y29_c00147{bottom:495.139350px;}
.y1a_c00147{bottom:507.864360px;}
.y1b_c00147{bottom:509.139000px;}
.y1c_c00147{bottom:509.546550px;}
.y1d_c00147{bottom:511.085040px;}
.y1e_c00147{bottom:511.407120px;}
.y1f_c00147{bottom:511.670460px;}
.y20_c00147{bottom:512.530680px;}
.y13_c00147{bottom:524.607780px;}
.y14_c00147{bottom:525.635100px;}
.y15_c00147{bottom:526.968840px;}
.y16_c00147{bottom:527.308530px;}
.y17_c00147{bottom:528.604710px;}
.y18_c00147{bottom:529.895490px;}
.y19_c00147{bottom:530.311320px;}
.yb_c00147{bottom:542.162550px;}
.yc_c00147{bottom:543.281460px;}
.yd_c00147{bottom:543.665910px;}
.ye_c00147{bottom:544.497060px;}
.yf_c00147{bottom:545.171670px;}
.y10_c00147{bottom:545.722920px;}
.y11_c00147{bottom:546.907500px;}
.y12_c00147{bottom:547.439670px;}
.y2_c00147{bottom:559.176000px;}
.y3_c00147{bottom:560.245200px;}
.y4_c00147{bottom:560.656380px;}
.y5_c00147{bottom:561.845340px;}
.y6_c00147{bottom:562.201560px;}
.y7_c00147{bottom:562.626990px;}
.y8_c00147{bottom:563.792400px;}
.y9_c00147{bottom:564.223680px;}
.ya_c00147{bottom:564.657870px;}
.y1_c00147{bottom:576.990000px;}
.he_c00147{height:58.800000px;}
.ha_c00147{height:59.850000px;}
.h8_c00147{height:59.861969px;}
.hc_c00147{height:60.900000px;}
.h6_c00147{height:60.912179px;}
.hb_c00147{height:61.950000px;}
.h2_c00147{height:63.000000px;}
.h11_c00147{height:64.050000px;}
.hf_c00147{height:65.100000px;}
.h12_c00147{height:66.150000px;}
.hd_c00147{height:67.200000px;}
.h3_c00147{height:67.213439px;}
.h9_c00147{height:68.250000px;}
.h7_c00147{height:68.263649px;}
.h5_c00147{height:70.364069px;}
.h4_c00147{height:71.414279px;}
.h10_c00147{height:72.450000px;}
.h13_c00147{height:74.550000px;}
.h0_c00147{height:623.100000px;}
.h1_c00147{height:623.250000px;}
.w1_c00147{width:383.250000px;}
.w0_c00147{width:383.400000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:45.910500px;}
.x2f_c00147{left:47.098350px;}
.x54_c00147{left:48.205500px;}
.x66_c00147{left:50.086500px;}
.x30_c00147{left:60.353490px;}
.x4e_c00147{left:62.643000px;}
.x37_c00147{left:66.693510px;}
.x6e_c00147{left:69.394500px;}
.x25_c00147{left:70.904610px;}
.x6a_c00147{left:74.254500px;}
.x47_c00147{left:75.945000px;}
.x1e_c00147{left:77.437200px;}
.x46_c00147{left:83.037000px;}
.x2b_c00147{left:86.681910px;}
.x1f_c00147{left:88.486260px;}
.x26_c00147{left:91.159350px;}
.x3b_c00147{left:93.690000px;}
.x59_c00147{left:94.773000px;}
.x12_c00147{left:97.256580px;}
.x3_c00147{left:99.370500px;}
.x2c_c00147{left:101.534850px;}
.xb_c00147{left:104.499690px;}
.x65_c00147{left:108.144000px;}
.x38_c00147{left:111.522420px;}
.x27_c00147{left:113.040360px;}
.x5a_c00147{left:114.483000px;}
.x18_c00147{left:116.163930px;}
.x5e_c00147{left:117.723000px;}
.x4_c00147{left:119.929500px;}
.x4f_c00147{left:121.773000px;}
.xc_c00147{left:124.772610px;}
.x6f_c00147{left:127.174500px;}
.x3f_c00147{left:129.870000px;}
.x6b_c00147{left:132.304500px;}
.x48_c00147{left:135.679500px;}
.x55_c00147{left:137.022000px;}
.x19_c00147{left:138.792330px;}
.x31_c00147{left:142.122840px;}
.x75_c00147{left:143.914500px;}
.x5f_c00147{left:145.263000px;}
.x4a_c00147{left:148.651500px;}
.x2d_c00147{left:152.844870px;}
.x39_c00147{left:153.920370px;}
.x5b_c00147{left:154.983000px;}
.x20_c00147{left:157.885980px;}
.x3c_c00147{left:161.460000px;}
.x13_c00147{left:163.943580px;}
.x50_c00147{left:166.053000px;}
.xd_c00147{left:168.505980px;}
.x44_c00147{left:170.544000px;}
.x28_c00147{left:173.253990px;}
.x4b_c00147{left:174.783000px;}
.x57_c00147{left:177.393000px;}
.x5_c00147{left:179.377500px;}
.x14_c00147{left:180.928080px;}
.x76_c00147{left:184.684500px;}
.x1_c00147{left:186.030000px;}
.x32_c00147{left:189.374790px;}
.x62_c00147{left:190.623000px;}
.x71_c00147{left:192.514500px;}
.x6_c00147{left:197.188500px;}
.x73_c00147{left:198.994500px;}
.x4c_c00147{left:201.574500px;}
.xe_c00147{left:204.037200px;}
.x67_c00147{left:205.555500px;}
.x33_c00147{left:206.971800px;}
.x51_c00147{left:208.443000px;}
.x5c_c00147{left:210.063000px;}
.x3a_c00147{left:213.872340px;}
.x60_c00147{left:215.463000px;}
.x40_c00147{left:217.080000px;}
.x7_c00147{left:218.460000px;}
.x63_c00147{left:220.323000px;}
.x52_c00147{left:221.403000px;}
.x77_c00147{left:222.484500px;}
.x1a_c00147{left:224.270250px;}
.x6c_c00147{left:225.454500px;}
.x72_c00147{left:227.074500px;}
.x41_c00147{left:228.150000px;}
.x6d_c00147{left:229.923000px;}
.x29_c00147{left:231.571320px;}
.xf_c00147{left:233.025270px;}
.x21_c00147{left:235.086780px;}
.x5d_c00147{left:239.223000px;}
.x1b_c00147{left:242.174970px;}
.x78_c00147{left:243.814500px;}
.x15_c00147{left:245.737080px;}
.x68_c00147{left:247.141500px;}
.x70_c00147{left:250.564500px;}
.x22_c00147{left:252.924270px;}
.x1c_c00147{left:256.767540px;}
.x69_c00147{left:260.346000px;}
.x3d_c00147{left:262.170000px;}
.x34_c00147{left:263.623140px;}
.x2e_c00147{left:267.076560px;}
.x4d_c00147{left:271.245000px;}
.x42_c00147{left:272.970000px;}
.x7a_c00147{left:274.594500px;}
.x8_c00147{left:276.730500px;}
.x53_c00147{left:278.913000px;}
.x35_c00147{left:281.772270px;}
.x74_c00147{left:282.964500px;}
.x23_c00147{left:287.769660px;}
.x2a_c00147{left:289.368060px;}
.x58_c00147{left:290.793000px;}
.x56_c00147{left:292.003500px;}
.x43_c00147{left:293.490000px;}
.x10_c00147{left:295.405530px;}
.x9_c00147{left:298.294500px;}
.x36_c00147{left:302.849970px;}
.x1d_c00147{left:304.580460px;}
.x3e_c00147{left:306.990000px;}
.x16_c00147{left:310.276080px;}
.x24_c00147{left:313.690290px;}
.x61_c00147{left:315.633000px;}
.x79_c00147{left:317.254500px;}
.xa_c00147{left:320.004000px;}
.x11_c00147{left:323.439600px;}
.x49_c00147{left:327.102000px;}
.x45_c00147{left:329.265000px;}
.x17_c00147{left:331.067580px;}
.x64_c00147{left:339.663000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
.fsc_c00147{font-size:52.266667pt;}
.fs8_c00147{font-size:53.200000pt;}
.fs6_c00147{font-size:53.210639pt;}
.fsa_c00147{font-size:54.133333pt;}
.fs4_c00147{font-size:54.144159pt;}
.fs9_c00147{font-size:55.066667pt;}
.fs0_c00147{font-size:56.000000pt;}
.fsf_c00147{font-size:56.933333pt;}
.fsd_c00147{font-size:57.866667pt;}
.fs10_c00147{font-size:58.800000pt;}
.fsb_c00147{font-size:59.733333pt;}
.fs1_c00147{font-size:59.745279pt;}
.fs7_c00147{font-size:60.666667pt;}
.fs5_c00147{font-size:60.678799pt;}
.fs3_c00147{font-size:62.545839pt;}
.fs2_c00147{font-size:63.479359pt;}
.fse_c00147{font-size:64.400000pt;}
.fs11_c00147{font-size:66.266667pt;}
.y0_c00147{bottom:0.000000pt;}
.y91_c00147{bottom:21.482667pt;}
.y90_c00147{bottom:37.321333pt;}
.y8f_c00147{bottom:52.142667pt;}
.y8e_c00147{bottom:67.425333pt;}
.y8d_c00147{bottom:82.889333pt;}
.y86_c00147{bottom:96.962667pt;}
.y87_c00147{bottom:97.817333pt;}
.y88_c00147{bottom:98.142667pt;}
.y89_c00147{bottom:98.790667pt;}
.y8a_c00147{bottom:99.044000pt;}
.y8b_c00147{bottom:99.481333pt;}
.y8c_c00147{bottom:99.828000pt;}
.y85_c00147{bottom:113.849333pt;}
.y7e_c00147{bottom:127.922667pt;}
.y7f_c00147{bottom:128.474667pt;}
.y80_c00147{bottom:129.304000pt;}
.y81_c00147{bottom:129.673333pt;}
.y82_c00147{bottom:129.790667pt;}
.y83_c00147{bottom:130.030667pt;}
.y84_c00147{bottom:130.285333pt;}
.y77_c00147{bottom:143.521333pt;}
.y78_c00147{bottom:143.896000pt;}
.y79_c00147{bottom:144.052000pt;}
.y7a_c00147{bottom:144.453333pt;}
.y7b_c00147{bottom:145.017333pt;}
.y7c_c00147{bottom:145.566667pt;}
.y7d_c00147{bottom:146.032000pt;}
.y76_c00147{bottom:161.161333pt;}
.y75_c00147{bottom:176.277333pt;}
.y74_c00147{bottom:192.298667pt;}
.y73_c00147{bottom:207.824000pt;}
.y72_c00147{bottom:223.216000pt;}
.y71_c00147{bottom:238.546667pt;}
.y69_c00147{bottom:252.721333pt;}
.y6a_c00147{bottom:253.228000pt;}
.y6b_c00147{bottom:253.360000pt;}
.y6c_c00147{bottom:253.589333pt;}
.y6d_c00147{bottom:254.278667pt;}
.y6e_c00147{bottom:254.529333pt;}
.y6f_c00147{bottom:254.906667pt;}
.y70_c00147{bottom:255.105333pt;}
.y68_c00147{bottom:269.294667pt;}
.y62_c00147{bottom:282.962667pt;}
.y63_c00147{bottom:284.042667pt;}
.y64_c00147{bottom:284.321333pt;}
.y65_c00147{bottom:284.606667pt;}
.y66_c00147{bottom:285.148000pt;}
.y67_c00147{bottom:285.349333pt;}
.y5a_c00147{bottom:298.802667pt;}
.y5b_c00147{bottom:299.057333pt;}
.y5c_c00147{bottom:299.221333pt;}
.y5d_c00147{bottom:299.588000pt;}
.y5e_c00147{bottom:300.225333pt;}
.y5f_c00147{bottom:300.405333pt;}
.y60_c00147{bottom:301.026667pt;}
.y61_c00147{bottom:301.288000pt;}
.y53_c00147{bottom:313.924000pt;}
.y54_c00147{bottom:314.272000pt;}
.y55_c00147{bottom:314.549333pt;}
.y56_c00147{bottom:315.098667pt;}
.y57_c00147{bottom:315.753333pt;}
.y58_c00147{bottom:316.160000pt;}
.y59_c00147{bottom:316.341333pt;}
.y4b_c00147{bottom:329.762667pt;}
.y4c_c00147{bottom:330.277333pt;}
.y4d_c00147{bottom:330.790667pt;}
.y4e_c00147{bottom:330.970667pt;}
.y4f_c00147{bottom:331.596000pt;}
.y50_c00147{bottom:331.780000pt;}
.y51_c00147{bottom:332.364000pt;}
.y52_c00147{bottom:332.522667pt;}
.y4a_c00147{bottom:346.918667pt;}
.y49_c00147{bottom:362.554667pt;}
.y48_c00147{bottom:377.477120pt;}
.y42_c00147{bottom:377.477333pt;}
.y43_c00147{bottom:377.477520pt;}
.y47_c00147{bottom:377.477680pt;}
.y44_c00147{bottom:377.478160pt;}
.y45_c00147{bottom:377.478267pt;}
.y46_c00147{bottom:377.478320pt;}
.y3a_c00147{bottom:391.897733pt;}
.y3b_c00147{bottom:392.016000pt;}
.y3c_c00147{bottom:392.742720pt;}
.y3d_c00147{bottom:393.162587pt;}
.y3e_c00147{bottom:393.319360pt;}
.y3f_c00147{bottom:393.822293pt;}
.y40_c00147{bottom:393.983547pt;}
.y41_c00147{bottom:394.171520pt;}
.y39_c00147{bottom:408.470160pt;}
.y38_c00147{bottom:408.470747pt;}
.y37_c00147{bottom:408.470853pt;}
.y36_c00147{bottom:408.471467pt;}
.y35_c00147{bottom:408.471547pt;}
.y32_c00147{bottom:408.471653pt;}
.y34_c00147{bottom:408.471733pt;}
.y33_c00147{bottom:408.471787pt;}
.y2a_c00147{bottom:422.144587pt;}
.y2b_c00147{bottom:422.410320pt;}
.y2c_c00147{bottom:422.626347pt;}
.y2d_c00147{bottom:422.859280pt;}
.y2e_c00147{bottom:423.501573pt;}
.y2f_c00147{bottom:424.123493pt;}
.y30_c00147{bottom:424.740160pt;}
.y31_c00147{bottom:425.189413pt;}
.y21_c00147{bottom:437.030053pt;}
.y22_c00147{bottom:437.395067pt;}
.y23_c00147{bottom:437.522133pt;}
.y24_c00147{bottom:438.323733pt;}
.y25_c00147{bottom:438.600587pt;}
.y26_c00147{bottom:439.216000pt;}
.y27_c00147{bottom:439.422400pt;}
.y28_c00147{bottom:439.824453pt;}
.y29_c00147{bottom:440.123867pt;}
.y1a_c00147{bottom:451.434987pt;}
.y1b_c00147{bottom:452.568000pt;}
.y1c_c00147{bottom:452.930267pt;}
.y1d_c00147{bottom:454.297813pt;}
.y1e_c00147{bottom:454.584107pt;}
.y1f_c00147{bottom:454.818187pt;}
.y20_c00147{bottom:455.582827pt;}
.y13_c00147{bottom:466.318027pt;}
.y14_c00147{bottom:467.231200pt;}
.y15_c00147{bottom:468.416747pt;}
.y16_c00147{bottom:468.718693pt;}
.y17_c00147{bottom:469.870853pt;}
.y18_c00147{bottom:471.018213pt;}
.y19_c00147{bottom:471.387840pt;}
.yb_c00147{bottom:481.922267pt;}
.yc_c00147{bottom:482.916853pt;}
.yd_c00147{bottom:483.258587pt;}
.ye_c00147{bottom:483.997387pt;}
.yf_c00147{bottom:484.597040pt;}
.y10_c00147{bottom:485.087040pt;}
.y11_c00147{bottom:486.140000pt;}
.y12_c00147{bottom:486.613040pt;}
.y2_c00147{bottom:497.045333pt;}
.y3_c00147{bottom:497.995733pt;}
.y4_c00147{bottom:498.361227pt;}
.y5_c00147{bottom:499.418080pt;}
.y6_c00147{bottom:499.734720pt;}
.y7_c00147{bottom:500.112880pt;}
.y8_c00147{bottom:501.148800pt;}
.y9_c00147{bottom:501.532160pt;}
.ya_c00147{bottom:501.918107pt;}
.y1_c00147{bottom:512.880000pt;}
.he_c00147{height:52.266667pt;}
.ha_c00147{height:53.200000pt;}
.h8_c00147{height:53.210639pt;}
.hc_c00147{height:54.133333pt;}
.h6_c00147{height:54.144159pt;}
.hb_c00147{height:55.066667pt;}
.h2_c00147{height:56.000000pt;}
.h11_c00147{height:56.933333pt;}
.hf_c00147{height:57.866667pt;}
.h12_c00147{height:58.800000pt;}
.hd_c00147{height:59.733333pt;}
.h3_c00147{height:59.745279pt;}
.h9_c00147{height:60.666667pt;}
.h7_c00147{height:60.678799pt;}
.h5_c00147{height:62.545839pt;}
.h4_c00147{height:63.479359pt;}
.h10_c00147{height:64.400000pt;}
.h13_c00147{height:66.266667pt;}
.h0_c00147{height:553.866667pt;}
.h1_c00147{height:554.000000pt;}
.w1_c00147{width:340.666667pt;}
.w0_c00147{width:340.800000pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:40.809333pt;}
.x2f_c00147{left:41.865200pt;}
.x54_c00147{left:42.849333pt;}
.x66_c00147{left:44.521333pt;}
.x30_c00147{left:53.647547pt;}
.x4e_c00147{left:55.682667pt;}
.x37_c00147{left:59.283120pt;}
.x6e_c00147{left:61.684000pt;}
.x25_c00147{left:63.026320pt;}
.x6a_c00147{left:66.004000pt;}
.x47_c00147{left:67.506667pt;}
.x1e_c00147{left:68.833067pt;}
.x46_c00147{left:73.810667pt;}
.x2b_c00147{left:77.050587pt;}
.x1f_c00147{left:78.654453pt;}
.x26_c00147{left:81.030533pt;}
.x3b_c00147{left:83.280000pt;}
.x59_c00147{left:84.242667pt;}
.x12_c00147{left:86.450293pt;}
.x3_c00147{left:88.329333pt;}
.x2c_c00147{left:90.253200pt;}
.xb_c00147{left:92.888613pt;}
.x65_c00147{left:96.128000pt;}
.x38_c00147{left:99.131040pt;}
.x27_c00147{left:100.480320pt;}
.x5a_c00147{left:101.762667pt;}
.x18_c00147{left:103.256827pt;}
.x5e_c00147{left:104.642667pt;}
.x4_c00147{left:106.604000pt;}
.x4f_c00147{left:108.242667pt;}
.xc_c00147{left:110.908987pt;}
.x6f_c00147{left:113.044000pt;}
.x3f_c00147{left:115.440000pt;}
.x6b_c00147{left:117.604000pt;}
.x48_c00147{left:120.604000pt;}
.x55_c00147{left:121.797333pt;}
.x19_c00147{left:123.370960pt;}
.x31_c00147{left:126.331413pt;}
.x75_c00147{left:127.924000pt;}
.x5f_c00147{left:129.122667pt;}
.x4a_c00147{left:132.134667pt;}
.x2d_c00147{left:135.862107pt;}
.x39_c00147{left:136.818107pt;}
.x5b_c00147{left:137.762667pt;}
.x20_c00147{left:140.343093pt;}
.x3c_c00147{left:143.520000pt;}
.x13_c00147{left:145.727627pt;}
.x50_c00147{left:147.602667pt;}
.xd_c00147{left:149.783093pt;}
.x44_c00147{left:151.594667pt;}
.x28_c00147{left:154.003547pt;}
.x4b_c00147{left:155.362667pt;}
.x57_c00147{left:157.682667pt;}
.x5_c00147{left:159.446667pt;}
.x14_c00147{left:160.824960pt;}
.x76_c00147{left:164.164000pt;}
.x1_c00147{left:165.360000pt;}
.x32_c00147{left:168.333147pt;}
.x62_c00147{left:169.442667pt;}
.x71_c00147{left:171.124000pt;}
.x6_c00147{left:175.278667pt;}
.x73_c00147{left:176.884000pt;}
.x4c_c00147{left:179.177333pt;}
.xe_c00147{left:181.366400pt;}
.x67_c00147{left:182.716000pt;}
.x33_c00147{left:183.974933pt;}
.x51_c00147{left:185.282667pt;}
.x5c_c00147{left:186.722667pt;}
.x3a_c00147{left:190.108747pt;}
.x60_c00147{left:191.522667pt;}
.x40_c00147{left:192.960000pt;}
.x7_c00147{left:194.186667pt;}
.x63_c00147{left:195.842667pt;}
.x52_c00147{left:196.802667pt;}
.x77_c00147{left:197.764000pt;}
.x1a_c00147{left:199.351333pt;}
.x6c_c00147{left:200.404000pt;}
.x72_c00147{left:201.844000pt;}
.x41_c00147{left:202.800000pt;}
.x6d_c00147{left:204.376000pt;}
.x29_c00147{left:205.841173pt;}
.xf_c00147{left:207.133573pt;}
.x21_c00147{left:208.966027pt;}
.x5d_c00147{left:212.642667pt;}
.x1b_c00147{left:215.266640pt;}
.x78_c00147{left:216.724000pt;}
.x15_c00147{left:218.432960pt;}
.x68_c00147{left:219.681333pt;}
.x70_c00147{left:222.724000pt;}
.x22_c00147{left:224.821573pt;}
.x1c_c00147{left:228.237813pt;}
.x69_c00147{left:231.418667pt;}
.x3d_c00147{left:233.040000pt;}
.x34_c00147{left:234.331680pt;}
.x2e_c00147{left:237.401387pt;}
.x4d_c00147{left:241.106667pt;}
.x42_c00147{left:242.640000pt;}
.x7a_c00147{left:244.084000pt;}
.x8_c00147{left:245.982667pt;}
.x53_c00147{left:247.922667pt;}
.x35_c00147{left:250.464240pt;}
.x74_c00147{left:251.524000pt;}
.x23_c00147{left:255.795253pt;}
.x2a_c00147{left:257.216053pt;}
.x58_c00147{left:258.482667pt;}
.x56_c00147{left:259.558667pt;}
.x43_c00147{left:260.880000pt;}
.x10_c00147{left:262.582693pt;}
.x9_c00147{left:265.150667pt;}
.x36_c00147{left:269.199973pt;}
.x1d_c00147{left:270.738187pt;}
.x3e_c00147{left:272.880000pt;}
.x16_c00147{left:275.800960pt;}
.x24_c00147{left:278.835813pt;}
.x61_c00147{left:280.562667pt;}
.x79_c00147{left:282.004000pt;}
.xa_c00147{left:284.448000pt;}
.x11_c00147{left:287.501867pt;}
.x49_c00147{left:290.757333pt;}
.x45_c00147{left:292.680000pt;}
.x17_c00147{left:294.282293pt;}
.x64_c00147{left:301.922667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00148 {
    display:none;
  }
  .loading-indicator_c00148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00148 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00148 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00148" -> "#page-container .classname_c00148")
 */
.pf_c00148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00148 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00148 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00148 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00148 {overflow:visible;}
  }
}
.c_c00148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00148 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00148:after { /* webkit #35443 */
  content: '';
}
.t_c00148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00148 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00148 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00148 { /* info for Javascript */
  display:none;
}
.l_c00148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00148:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00148 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00148.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00148{transform:matrix(0.081355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081355,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{transform:matrix(0.114590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114590,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);}
.m48_c00148{transform:matrix(0.141330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141330,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145355,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);}
.m33_c00148{transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00148{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.ma6_c00148{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m2b_c00148{transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152065,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.maa_c00148{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{transform:matrix(0.154720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154720,0.000000,0.000000,0.250000,0,0);}
.ma8_c00148{transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m60_c00148{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.m23_c00148{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m36_c00148{transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m97_c00148{transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);}
.md2_c00148{transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);}
.md7_c00148{transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159670,0.000000,0.000000,0.250000,0,0);}
.mbe_c00148{transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m62_c00148{transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00148{transform:matrix(0.162085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162085,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.mfa_c00148{transform:matrix(0.163198,0.001958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163198,0.001958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163198,0.001958,-0.003000,0.249982,0,0);}
.m5e_c00148{transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);}
.m44_c00148{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m37_c00148{transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);}
.m5d_c00148{transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165330,0.000000,0.000000,0.250000,0,0);}
.m91_c00148{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.m94_c00148{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.mf5_c00148{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m4a_c00148{transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);}
.m5b_c00148{transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166545,0.000000,0.000000,0.250000,0,0);}
.m2a_c00148{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00148{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m9d_c00148{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00148{transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);}
.mf7_c00148{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m8a_c00148{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m8d_c00148{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m68_c00148{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.mad_c00148{transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);}
.m63_c00148{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.ma5_c00148{transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);}
.m42_c00148{transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);}
.mb3_c00148{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m86_c00148{transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);}
.m88_c00148{transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);}
.m30_c00148{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.mcb_c00148{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.mce_c00148{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.mf8_c00148{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m8c_c00148{transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);}
.mf3_c00148{transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);}
.ma0_c00148{transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);}
.ma3_c00148{transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);}
.me3_c00148{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m96_c00148{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.mb5_c00148{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.m50_c00148{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mef_c00148{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.m59_c00148{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.mfe_c00148{transform:matrix(0.178187,0.002138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178187,0.002138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178187,0.002138,-0.003000,0.249982,0,0);}
.md4_c00148{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.mec_c00148{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m89_c00148{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.mcd_c00148{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);}
.m73_c00148{transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);}
.m78_c00148{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.m9f_c00148{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m61_c00148{transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);}
.md8_c00148{transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180615,0.000000,0.000000,0.250000,0,0);}
.m8b_c00148{transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);}
.mcc_c00148{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m6a_c00148{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);}
.m92_c00148{transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);}
.mdc_c00148{transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);}
.m47_c00148{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);}
.m29_c00148{transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);}
.m38_c00148{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.ma2_c00148{transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m8e_c00148{transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);}
.m9c_c00148{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00148{transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);}
.mf1_c00148{transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);}
.m1d_c00148{transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00148{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m87_c00148{transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);}
.m71_c00148{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.187935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187935,0.000000,0.000000,0.250000,0,0);}
.mff_c00148{transform:matrix(0.188051,0.002257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188051,0.002257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188051,0.002257,-0.003000,0.249982,0,0);}
.mc9_c00148{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m4b_c00148{transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);}
.mb7_c00148{transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00148{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.mab_c00148{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.mf6_c00148{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.mb1_c00148{transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mfd_c00148{transform:matrix(0.191641,0.002300,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191641,0.002300,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191641,0.002300,-0.003000,0.249982,0,0);}
.m72_c00148{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m18_c00148{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.maf_c00148{transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);}
.m1f_c00148{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00148{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.mca_c00148{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);}
.mb8_c00148{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.mb2_c00148{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.me7_c00148{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.mc8_c00148{transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);}
.mc3_c00148{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.mf4_c00148{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00148{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.mae_c00148{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.md0_c00148{transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);}
.mfb_c00148{transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);}
.me2_c00148{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m3c_c00148{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m20_c00148{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.med_c00148{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00148{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.md5_c00148{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.mee_c00148{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00148{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m69_c00148{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.m52_c00148{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m76_c00148{transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);}
.mc7_c00148{transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);}
.mf9_c00148{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.me0_c00148{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m7f_c00148{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00148{transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);}
.mde_c00148{transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);}
.mb6_c00148{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.mc4_c00148{transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);}
.me8_c00148{transform:matrix(0.205095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205095,0.000000,0.000000,0.250000,0,0);}
.me9_c00148{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.mb0_c00148{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.mbf_c00148{transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);}
.mdd_c00148{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m90_c00148{transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);}
.m6c_c00148{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m6b_c00148{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.mba_c00148{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.mdb_c00148{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.mcf_c00148{transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);}
.mf0_c00148{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m51_c00148{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{transform:matrix(0.211960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211960,0.000000,0.000000,0.250000,0,0);}
.me1_c00148{transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);}
.mc5_c00148{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.md9_c00148{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.me6_c00148{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00148{transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);}
.m43_c00148{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00148{transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);}
.meb_c00148{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me4_c00148{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m70_c00148{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m39_c00148{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m54_c00148{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.mea_c00148{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m84_c00148{transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);}
.m40_c00148{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.mbc_c00148{transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);}
.md3_c00148{transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);}
.m6d_c00148{transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);}
.m85_c00148{transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);}
.m46_c00148{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m74_c00148{transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);}
.m6e_c00148{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m101_c00148{transform:matrix(0.221019,0.002652,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221019,0.002652,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221019,0.002652,-0.003000,0.249982,0,0);}
.m3_c00148{transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);}
.m65_c00148{transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);}
.mda_c00148{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m77_c00148{transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);}
.m75_c00148{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m7a_c00148{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m83_c00148{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m6f_c00148{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m7d_c00148{transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);}
.mbd_c00148{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m102_c00148{transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);}
.m79_c00148{transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);}
.mbb_c00148{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m7b_c00148{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);}
.mc1_c00148{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.mc0_c00148{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00148{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mfc_c00148{transform:matrix(0.257406,0.003089,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257406,0.003089,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257406,0.003089,-0.003000,0.249982,0,0);}
.m10_c00148{transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);}
.me5_c00148{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.mf2_c00148{transform:matrix(0.261960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261960,0.000000,0.000000,0.250000,0,0);}
.m100_c00148{transform:matrix(0.289064,0.003469,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289064,0.003469,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289064,0.003469,-0.003000,0.249982,0,0);}
.m82_c00148{transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);}
.m4e_c00148{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.md6_c00148{transform:matrix(0.379280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379280,0.000000,0.000000,0.250000,0,0);}
.md1_c00148{transform:matrix(0.386340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386340,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);}
.m81_c00148{transform:matrix(0.487140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487140,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.513220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513220,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
.fc0_c00148{color:transparent;}
.fsd_c00148{font-size:46.203326px;}
.fs9_c00148{font-size:58.800000px;}
.fsb_c00148{font-size:60.900000px;}
.fs7_c00148{font-size:61.950000px;}
.fs1_c00148{font-size:63.000000px;}
.fs6_c00148{font-size:64.050000px;}
.fs5_c00148{font-size:65.100000px;}
.fsa_c00148{font-size:66.150000px;}
.fs0_c00148{font-size:67.200000px;}
.fsc_c00148{font-size:67.204838px;}
.fs8_c00148{font-size:70.350000px;}
.fs3_c00148{font-size:71.400000px;}
.fs2_c00148{font-size:72.450000px;}
.fs4_c00148{font-size:74.550000px;}
.y0_c00148{bottom:0.000000px;}
.y3d_c00148{bottom:17.298678px;}
.y3c_c00148{bottom:17.298894px;}
.y3b_c00148{bottom:17.299578px;}
.y3a_c00148{bottom:33.802368px;}
.y39_c00148{bottom:34.041714px;}
.y38_c00148{bottom:34.851930px;}
.y37_c00148{bottom:35.045934px;}
.y36_c00148{bottom:35.539008px;}
.y35_c00148{bottom:35.911500px;}
.y34_c00148{bottom:50.259000px;}
.y33_c00148{bottom:50.817000px;}
.y32_c00148{bottom:51.018000px;}
.y31_c00148{bottom:51.747000px;}
.y30_c00148{bottom:51.948000px;}
.y2f_c00148{bottom:52.528500px;}
.y2e_c00148{bottom:52.827000px;}
.y2d_c00148{bottom:53.731500px;}
.y2c_c00148{bottom:67.029000px;}
.y2b_c00148{bottom:67.510500px;}
.y2a_c00148{bottom:67.741500px;}
.y29_c00148{bottom:67.990500px;}
.y28_c00148{bottom:68.626500px;}
.y27_c00148{bottom:68.814000px;}
.y26_c00148{bottom:70.201500px;}
.y25_c00148{bottom:86.368500px;}
.y24_c00148{bottom:104.230500px;}
.y23_c00148{bottom:120.468000px;}
.y22_c00148{bottom:120.993000px;}
.y21_c00148{bottom:121.596000px;}
.y20_c00148{bottom:122.122500px;}
.y1f_c00148{bottom:122.371500px;}
.y1e_c00148{bottom:122.998500px;}
.y1d_c00148{bottom:123.280500px;}
.y1c_c00148{bottom:123.663000px;}
.y1b_c00148{bottom:138.051000px;}
.y1a_c00148{bottom:154.783500px;}
.y19_c00148{bottom:173.388000px;}
.y18_c00148{bottom:190.747500px;}
.y17_c00148{bottom:207.912000px;}
.y16_c00148{bottom:224.958000px;}
.y15_c00148{bottom:242.308500px;}
.y14_c00148{bottom:260.596500px;}
.y13_c00148{bottom:277.759500px;}
.y12_c00148{bottom:295.075500px;}
.y11_c00148{bottom:313.164000px;}
.y10_c00148{bottom:329.893500px;}
.yf_c00148{bottom:347.440500px;}
.ye_c00148{bottom:363.708000px;}
.yd_c00148{bottom:380.769000px;}
.yc_c00148{bottom:397.146000px;}
.yb_c00148{bottom:415.198500px;}
.ya_c00148{bottom:432.013500px;}
.y9_c00148{bottom:449.800500px;}
.y8_c00148{bottom:467.131500px;}
.y7_c00148{bottom:484.477500px;}
.y6_c00148{bottom:502.263000px;}
.y5_c00148{bottom:519.546000px;}
.y4_c00148{bottom:536.979000px;}
.y3_c00148{bottom:553.861500px;}
.y2_c00148{bottom:571.927500px;}
.y1_c00148{bottom:588.600000px;}
.hf_c00148{height:46.203326px;}
.hb_c00148{height:58.800000px;}
.hd_c00148{height:60.900000px;}
.h9_c00148{height:61.950000px;}
.h3_c00148{height:63.000000px;}
.h8_c00148{height:64.050000px;}
.h7_c00148{height:65.100000px;}
.hc_c00148{height:66.150000px;}
.h2_c00148{height:67.200000px;}
.he_c00148{height:67.204838px;}
.ha_c00148{height:70.350000px;}
.h5_c00148{height:71.400000px;}
.h4_c00148{height:72.450000px;}
.h6_c00148{height:74.550000px;}
.h0_c00148{height:623.100000px;}
.h1_c00148{height:623.250000px;}
.w1_c00148{width:383.250000px;}
.w0_c00148{width:383.400000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:29.700000px;}
.x13_c00148{left:30.780000px;}
.x46_c00148{left:31.860000px;}
.xa_c00148{left:33.480000px;}
.x80_c00148{left:34.560000px;}
.x84_c00148{left:37.123500px;}
.x3c_c00148{left:40.770000px;}
.x7e_c00148{left:43.470000px;}
.x42_c00148{left:52.110000px;}
.x2f_c00148{left:55.890000px;}
.x22_c00148{left:58.320000px;}
.x6e_c00148{left:60.210000px;}
.x65_c00148{left:62.370000px;}
.x3d_c00148{left:64.260000px;}
.xb_c00148{left:65.880000px;}
.x69_c00148{left:68.310000px;}
.x61_c00148{left:69.660000px;}
.x3_c00148{left:72.090000px;}
.x31_c00148{left:73.980000px;}
.x6f_c00148{left:75.870000px;}
.x78_c00148{left:76.950000px;}
.x7f_c00148{left:79.650000px;}
.x23_c00148{left:81.540000px;}
.x75_c00148{left:85.050000px;}
.xc_c00148{left:87.210000px;}
.x37_c00148{left:89.370000px;}
.x47_c00148{left:90.990000px;}
.x50_c00148{left:92.070000px;}
.x14_c00148{left:93.150000px;}
.x7c_c00148{left:94.632000px;}
.x32_c00148{left:96.660000px;}
.x1b_c00148{left:99.090000px;}
.x4d_c00148{left:100.440000px;}
.x70_c00148{left:101.790000px;}
.x55_c00148{left:103.410000px;}
.x5e_c00148{left:105.030000px;}
.x88_c00148{left:106.554000px;}
.x1c_c00148{left:109.350000px;}
.x2b_c00148{left:111.510000px;}
.x62_c00148{left:113.940000px;}
.x15_c00148{left:116.100000px;}
.x38_c00148{left:117.990000px;}
.x4_c00148{left:122.040000px;}
.x56_c00148{left:124.470000px;}
.x51_c00148{left:129.330000px;}
.x3e_c00148{left:130.950000px;}
.x24_c00148{left:132.570000px;}
.x66_c00148{left:133.920000px;}
.x5f_c00148{left:135.810000px;}
.xd_c00148{left:137.970000px;}
.x57_c00148{left:141.480000px;}
.x43_c00148{left:143.100000px;}
.x33_c00148{left:145.260000px;}
.x39_c00148{left:149.850000px;}
.x7d_c00148{left:151.621500px;}
.x2c_c00148{left:153.360000px;}
.x25_c00148{left:154.440000px;}
.x34_c00148{left:157.140000px;}
.x16_c00148{left:159.570000px;}
.x5_c00148{left:161.460000px;}
.x73_c00148{left:163.350000px;}
.x3f_c00148{left:166.860000px;}
.x1_c00148{left:168.750000px;}
.x1d_c00148{left:170.910000px;}
.x3a_c00148{left:171.990000px;}
.x2d_c00148{left:173.610000px;}
.x4b_c00148{left:175.500000px;}
.x71_c00148{left:176.580000px;}
.x48_c00148{left:179.280000px;}
.x26_c00148{left:180.630000px;}
.x58_c00148{left:182.790000px;}
.x1e_c00148{left:184.680000px;}
.x30_c00148{left:185.760000px;}
.xe_c00148{left:186.840000px;}
.x76_c00148{left:189.810000px;}
.x6d_c00148{left:192.240000px;}
.x52_c00148{left:194.130000px;}
.x27_c00148{left:198.180000px;}
.xf_c00148{left:200.610000px;}
.x85_c00148{left:202.362000px;}
.x81_c00148{left:204.390000px;}
.x6_c00148{left:208.170000px;}
.x79_c00148{left:209.520000px;}
.x5b_c00148{left:211.140000px;}
.x67_c00148{left:212.760000px;}
.x4e_c00148{left:214.380000px;}
.x74_c00148{left:215.460000px;}
.x63_c00148{left:217.350000px;}
.x6a_c00148{left:221.400000px;}
.x17_c00148{left:226.530000px;}
.x77_c00148{left:232.740000px;}
.x7_c00148{left:234.090000px;}
.x1f_c00148{left:237.330000px;}
.x10_c00148{left:242.190000px;}
.x7a_c00148{left:243.270000px;}
.x44_c00148{left:244.350000px;}
.x18_c00148{left:245.430000px;}
.x28_c00148{left:247.320000px;}
.x6b_c00148{left:248.940000px;}
.x20_c00148{left:252.720000px;}
.x8_c00148{left:254.880000px;}
.x35_c00148{left:258.120000px;}
.x59_c00148{left:261.900000px;}
.x86_c00148{left:263.086500px;}
.x45_c00148{left:264.330000px;}
.x2e_c00148{left:267.840000px;}
.x5c_c00148{left:269.190000px;}
.x9_c00148{left:270.810000px;}
.x53_c00148{left:271.890000px;}
.x40_c00148{left:273.780000px;}
.x36_c00148{left:274.860000px;}
.x3b_c00148{left:277.020000px;}
.x83_c00148{left:278.752500px;}
.x87_c00148{left:279.828000px;}
.x4f_c00148{left:281.610000px;}
.x82_c00148{left:284.040000px;}
.x4c_c00148{left:285.390000px;}
.x29_c00148{left:287.280000px;}
.x68_c00148{left:288.360000px;}
.x19_c00148{left:291.330000px;}
.x7b_c00148{left:293.220000px;}
.x5d_c00148{left:295.920000px;}
.x11_c00148{left:297.540000px;}
.x6c_c00148{left:298.620000px;}
.x49_c00148{left:302.130000px;}
.x72_c00148{left:304.560000px;}
.x12_c00148{left:307.530000px;}
.x60_c00148{left:309.150000px;}
.x2a_c00148{left:310.770000px;}
.x1a_c00148{left:312.930000px;}
.x5a_c00148{left:314.820000px;}
.x21_c00148{left:318.870000px;}
.x41_c00148{left:321.570000px;}
.x54_c00148{left:324.810000px;}
.x64_c00148{left:326.160000px;}
.x4a_c00148{left:328.590000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
.fsd_c00148{font-size:41.069623pt;}
.fs9_c00148{font-size:52.266667pt;}
.fsb_c00148{font-size:54.133333pt;}
.fs7_c00148{font-size:55.066667pt;}
.fs1_c00148{font-size:56.000000pt;}
.fs6_c00148{font-size:56.933333pt;}
.fs5_c00148{font-size:57.866667pt;}
.fsa_c00148{font-size:58.800000pt;}
.fs0_c00148{font-size:59.733333pt;}
.fsc_c00148{font-size:59.737634pt;}
.fs8_c00148{font-size:62.533333pt;}
.fs3_c00148{font-size:63.466667pt;}
.fs2_c00148{font-size:64.400000pt;}
.fs4_c00148{font-size:66.266667pt;}
.y0_c00148{bottom:0.000000pt;}
.y3d_c00148{bottom:15.376603pt;}
.y3c_c00148{bottom:15.376795pt;}
.y3b_c00148{bottom:15.377403pt;}
.y3a_c00148{bottom:30.046549pt;}
.y39_c00148{bottom:30.259301pt;}
.y38_c00148{bottom:30.979493pt;}
.y37_c00148{bottom:31.151941pt;}
.y36_c00148{bottom:31.590229pt;}
.y35_c00148{bottom:31.921333pt;}
.y34_c00148{bottom:44.674667pt;}
.y33_c00148{bottom:45.170667pt;}
.y32_c00148{bottom:45.349333pt;}
.y31_c00148{bottom:45.997333pt;}
.y30_c00148{bottom:46.176000pt;}
.y2f_c00148{bottom:46.692000pt;}
.y2e_c00148{bottom:46.957333pt;}
.y2d_c00148{bottom:47.761333pt;}
.y2c_c00148{bottom:59.581333pt;}
.y2b_c00148{bottom:60.009333pt;}
.y2a_c00148{bottom:60.214667pt;}
.y29_c00148{bottom:60.436000pt;}
.y28_c00148{bottom:61.001333pt;}
.y27_c00148{bottom:61.168000pt;}
.y26_c00148{bottom:62.401333pt;}
.y25_c00148{bottom:76.772000pt;}
.y24_c00148{bottom:92.649333pt;}
.y23_c00148{bottom:107.082667pt;}
.y22_c00148{bottom:107.549333pt;}
.y21_c00148{bottom:108.085333pt;}
.y20_c00148{bottom:108.553333pt;}
.y1f_c00148{bottom:108.774667pt;}
.y1e_c00148{bottom:109.332000pt;}
.y1d_c00148{bottom:109.582667pt;}
.y1c_c00148{bottom:109.922667pt;}
.y1b_c00148{bottom:122.712000pt;}
.y1a_c00148{bottom:137.585333pt;}
.y19_c00148{bottom:154.122667pt;}
.y18_c00148{bottom:169.553333pt;}
.y17_c00148{bottom:184.810667pt;}
.y16_c00148{bottom:199.962667pt;}
.y15_c00148{bottom:215.385333pt;}
.y14_c00148{bottom:231.641333pt;}
.y13_c00148{bottom:246.897333pt;}
.y12_c00148{bottom:262.289333pt;}
.y11_c00148{bottom:278.368000pt;}
.y10_c00148{bottom:293.238667pt;}
.yf_c00148{bottom:308.836000pt;}
.ye_c00148{bottom:323.296000pt;}
.yd_c00148{bottom:338.461333pt;}
.yc_c00148{bottom:353.018667pt;}
.yb_c00148{bottom:369.065333pt;}
.ya_c00148{bottom:384.012000pt;}
.y9_c00148{bottom:399.822667pt;}
.y8_c00148{bottom:415.228000pt;}
.y7_c00148{bottom:430.646667pt;}
.y6_c00148{bottom:446.456000pt;}
.y5_c00148{bottom:461.818667pt;}
.y4_c00148{bottom:477.314667pt;}
.y3_c00148{bottom:492.321333pt;}
.y2_c00148{bottom:508.380000pt;}
.y1_c00148{bottom:523.200000pt;}
.hf_c00148{height:41.069623pt;}
.hb_c00148{height:52.266667pt;}
.hd_c00148{height:54.133333pt;}
.h9_c00148{height:55.066667pt;}
.h3_c00148{height:56.000000pt;}
.h8_c00148{height:56.933333pt;}
.h7_c00148{height:57.866667pt;}
.hc_c00148{height:58.800000pt;}
.h2_c00148{height:59.733333pt;}
.he_c00148{height:59.737634pt;}
.ha_c00148{height:62.533333pt;}
.h5_c00148{height:63.466667pt;}
.h4_c00148{height:64.400000pt;}
.h6_c00148{height:66.266667pt;}
.h0_c00148{height:553.866667pt;}
.h1_c00148{height:554.000000pt;}
.w1_c00148{width:340.666667pt;}
.w0_c00148{width:340.800000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:26.400000pt;}
.x13_c00148{left:27.360000pt;}
.x46_c00148{left:28.320000pt;}
.xa_c00148{left:29.760000pt;}
.x80_c00148{left:30.720000pt;}
.x84_c00148{left:32.998667pt;}
.x3c_c00148{left:36.240000pt;}
.x7e_c00148{left:38.640000pt;}
.x42_c00148{left:46.320000pt;}
.x2f_c00148{left:49.680000pt;}
.x22_c00148{left:51.840000pt;}
.x6e_c00148{left:53.520000pt;}
.x65_c00148{left:55.440000pt;}
.x3d_c00148{left:57.120000pt;}
.xb_c00148{left:58.560000pt;}
.x69_c00148{left:60.720000pt;}
.x61_c00148{left:61.920000pt;}
.x3_c00148{left:64.080000pt;}
.x31_c00148{left:65.760000pt;}
.x6f_c00148{left:67.440000pt;}
.x78_c00148{left:68.400000pt;}
.x7f_c00148{left:70.800000pt;}
.x23_c00148{left:72.480000pt;}
.x75_c00148{left:75.600000pt;}
.xc_c00148{left:77.520000pt;}
.x37_c00148{left:79.440000pt;}
.x47_c00148{left:80.880000pt;}
.x50_c00148{left:81.840000pt;}
.x14_c00148{left:82.800000pt;}
.x7c_c00148{left:84.117333pt;}
.x32_c00148{left:85.920000pt;}
.x1b_c00148{left:88.080000pt;}
.x4d_c00148{left:89.280000pt;}
.x70_c00148{left:90.480000pt;}
.x55_c00148{left:91.920000pt;}
.x5e_c00148{left:93.360000pt;}
.x88_c00148{left:94.714667pt;}
.x1c_c00148{left:97.200000pt;}
.x2b_c00148{left:99.120000pt;}
.x62_c00148{left:101.280000pt;}
.x15_c00148{left:103.200000pt;}
.x38_c00148{left:104.880000pt;}
.x4_c00148{left:108.480000pt;}
.x56_c00148{left:110.640000pt;}
.x51_c00148{left:114.960000pt;}
.x3e_c00148{left:116.400000pt;}
.x24_c00148{left:117.840000pt;}
.x66_c00148{left:119.040000pt;}
.x5f_c00148{left:120.720000pt;}
.xd_c00148{left:122.640000pt;}
.x57_c00148{left:125.760000pt;}
.x43_c00148{left:127.200000pt;}
.x33_c00148{left:129.120000pt;}
.x39_c00148{left:133.200000pt;}
.x7d_c00148{left:134.774667pt;}
.x2c_c00148{left:136.320000pt;}
.x25_c00148{left:137.280000pt;}
.x34_c00148{left:139.680000pt;}
.x16_c00148{left:141.840000pt;}
.x5_c00148{left:143.520000pt;}
.x73_c00148{left:145.200000pt;}
.x3f_c00148{left:148.320000pt;}
.x1_c00148{left:150.000000pt;}
.x1d_c00148{left:151.920000pt;}
.x3a_c00148{left:152.880000pt;}
.x2d_c00148{left:154.320000pt;}
.x4b_c00148{left:156.000000pt;}
.x71_c00148{left:156.960000pt;}
.x48_c00148{left:159.360000pt;}
.x26_c00148{left:160.560000pt;}
.x58_c00148{left:162.480000pt;}
.x1e_c00148{left:164.160000pt;}
.x30_c00148{left:165.120000pt;}
.xe_c00148{left:166.080000pt;}
.x76_c00148{left:168.720000pt;}
.x6d_c00148{left:170.880000pt;}
.x52_c00148{left:172.560000pt;}
.x27_c00148{left:176.160000pt;}
.xf_c00148{left:178.320000pt;}
.x85_c00148{left:179.877333pt;}
.x81_c00148{left:181.680000pt;}
.x6_c00148{left:185.040000pt;}
.x79_c00148{left:186.240000pt;}
.x5b_c00148{left:187.680000pt;}
.x67_c00148{left:189.120000pt;}
.x4e_c00148{left:190.560000pt;}
.x74_c00148{left:191.520000pt;}
.x63_c00148{left:193.200000pt;}
.x6a_c00148{left:196.800000pt;}
.x17_c00148{left:201.360000pt;}
.x77_c00148{left:206.880000pt;}
.x7_c00148{left:208.080000pt;}
.x1f_c00148{left:210.960000pt;}
.x10_c00148{left:215.280000pt;}
.x7a_c00148{left:216.240000pt;}
.x44_c00148{left:217.200000pt;}
.x18_c00148{left:218.160000pt;}
.x28_c00148{left:219.840000pt;}
.x6b_c00148{left:221.280000pt;}
.x20_c00148{left:224.640000pt;}
.x8_c00148{left:226.560000pt;}
.x35_c00148{left:229.440000pt;}
.x59_c00148{left:232.800000pt;}
.x86_c00148{left:233.854667pt;}
.x45_c00148{left:234.960000pt;}
.x2e_c00148{left:238.080000pt;}
.x5c_c00148{left:239.280000pt;}
.x9_c00148{left:240.720000pt;}
.x53_c00148{left:241.680000pt;}
.x40_c00148{left:243.360000pt;}
.x36_c00148{left:244.320000pt;}
.x3b_c00148{left:246.240000pt;}
.x83_c00148{left:247.780000pt;}
.x87_c00148{left:248.736000pt;}
.x4f_c00148{left:250.320000pt;}
.x82_c00148{left:252.480000pt;}
.x4c_c00148{left:253.680000pt;}
.x29_c00148{left:255.360000pt;}
.x68_c00148{left:256.320000pt;}
.x19_c00148{left:258.960000pt;}
.x7b_c00148{left:260.640000pt;}
.x5d_c00148{left:263.040000pt;}
.x11_c00148{left:264.480000pt;}
.x6c_c00148{left:265.440000pt;}
.x49_c00148{left:268.560000pt;}
.x72_c00148{left:270.720000pt;}
.x12_c00148{left:273.360000pt;}
.x60_c00148{left:274.800000pt;}
.x2a_c00148{left:276.240000pt;}
.x1a_c00148{left:278.160000pt;}
.x5a_c00148{left:279.840000pt;}
.x21_c00148{left:283.440000pt;}
.x41_c00148{left:285.840000pt;}
.x54_c00148{left:288.720000pt;}
.x64_c00148{left:289.920000pt;}
.x4a_c00148{left:292.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00149 {
    display:none;
  }
  .loading-indicator_c00149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00149 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00149 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00149" -> "#page-container .classname_c00149")
 */
.pf_c00149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00149 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00149 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00149 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00149 {overflow:visible;}
  }
}
.c_c00149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00149 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00149:after { /* webkit #35443 */
  content: '';
}
.t_c00149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00149 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00149 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00149 { /* info for Javascript */
  display:none;
}
.l_c00149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00149:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00149 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00149.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00149{transform:matrix(0.035550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035550,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.073620,-0.002727,0.009253,0.249829,0,0);-ms-transform:matrix(0.073620,-0.002727,0.009253,0.249829,0,0);-webkit-transform:matrix(0.073620,-0.002727,0.009253,0.249829,0,0);}
.mb6_c00149{transform:matrix(0.074385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074385,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.077236,-0.001931,0.006248,0.249922,0,0);-ms-transform:matrix(0.077236,-0.001931,0.006248,0.249922,0,0);-webkit-transform:matrix(0.077236,-0.001931,0.006248,0.249922,0,0);}
.m2_c00149{transform:matrix(0.087880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087880,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.100885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100885,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126160,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.145855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);}
.mcc_c00149{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{transform:matrix(0.155005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155005,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.156480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156480,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.156815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156815,0.000000,0.000000,0.250000,0,0);}
.m77_c00149{transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.158137,-0.005857,0.009253,0.249829,0,0);-ms-transform:matrix(0.158137,-0.005857,0.009253,0.249829,0,0);-webkit-transform:matrix(0.158137,-0.005857,0.009253,0.249829,0,0);}
.m79_c00149{transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);}
.mbf_c00149{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.mc8_c00149{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164270,0.000000,0.000000,0.250000,0,0);}
.mce_c00149{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);}
.ma2_c00149{transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);}
.mc7_c00149{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.mbd_c00149{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.mcf_c00149{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m74_c00149{transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);}
.m7d_c00149{transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);}
.m84_c00149{transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);}
.m26_c00149{transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.mcb_c00149{transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{transform:matrix(0.177420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177420,0.000000,0.000000,0.250000,0,0);}
.mc0_c00149{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.mbe_c00149{transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180790,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.mc5_c00149{transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.m86_c00149{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);}
.m6c_c00149{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.mb0_c00149{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.mc2_c00149{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.mcd_c00149{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.m4f_c00149{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m75_c00149{transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188055,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00149{transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191460,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00149{transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193465,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.maf_c00149{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00149{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);-ms-transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);}
.m43_c00149{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.mc9_c00149{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.mc1_c00149{transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.205294,-0.007603,0.009253,0.249829,0,0);-ms-transform:matrix(0.205294,-0.007603,0.009253,0.249829,0,0);-webkit-transform:matrix(0.205294,-0.007603,0.009253,0.249829,0,0);}
.m7f_c00149{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.ma7_c00149{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.m71_c00149{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.mad_c00149{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.md1_c00149{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.ma8_c00149{transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.md4_c00149{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m32_c00149{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.214345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214345,0.000000,0.000000,0.250000,0,0);}
.md0_c00149{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.md8_c00149{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.m67_c00149{transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);}
.m7b_c00149{transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.maa_c00149{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m50_c00149{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m24_c00149{transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);}
.md5_c00149{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.221916,-0.005548,0.006248,0.249922,0,0);-ms-transform:matrix(0.221916,-0.005548,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221916,-0.005548,0.006248,0.249922,0,0);}
.m94_c00149{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.223095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223095,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.223955,-0.005599,0.006248,0.249922,0,0);-ms-transform:matrix(0.223955,-0.005599,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223955,-0.005599,0.006248,0.249922,0,0);}
.m3f_c00149{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.228263,-0.008454,0.009253,0.249829,0,0);-ms-transform:matrix(0.228263,-0.008454,0.009253,0.249829,0,0);-webkit-transform:matrix(0.228263,-0.008454,0.009253,0.249829,0,0);}
.m65_c00149{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m93_c00149{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00149{transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.mab_c00149{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.ma6_c00149{transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);}
.mbc_c00149{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.235451,-0.005886,0.006248,0.249922,0,0);-ms-transform:matrix(0.235451,-0.005886,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235451,-0.005886,0.006248,0.249922,0,0);}
.m98_c00149{transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);}
.mb4_c00149{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);}
.mba_c00149{transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.244088,-0.009040,0.009253,0.249829,0,0);-ms-transform:matrix(0.244088,-0.009040,0.009253,0.249829,0,0);-webkit-transform:matrix(0.244088,-0.009040,0.009253,0.249829,0,0);}
.m4c_c00149{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m81_c00149{transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.mc6_c00149{transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249065,0.000000,0.000000,0.250000,0,0);}
.m2d_c00149{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.mae_c00149{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.md6_c00149{transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.md9_c00149{transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00149{transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);}
.md7_c00149{transform:matrix(0.271450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271450,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.272395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272395,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.276475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276475,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.283207,-0.007080,0.006248,0.249922,0,0);-ms-transform:matrix(0.283207,-0.007080,0.006248,0.249922,0,0);-webkit-transform:matrix(0.283207,-0.007080,0.006248,0.249922,0,0);}
.md2_c00149{transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.295598,-0.007390,0.006248,0.249922,0,0);-ms-transform:matrix(0.295598,-0.007390,0.006248,0.249922,0,0);-webkit-transform:matrix(0.295598,-0.007390,0.006248,0.249922,0,0);}
.md3_c00149{transform:matrix(0.296450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296450,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.304170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304170,0.000000,0.000000,0.250000,0,0);}
.mb8_c00149{transform:matrix(0.307725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307725,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.309673,-0.011469,0.009253,0.249829,0,0);-ms-transform:matrix(0.309673,-0.011469,0.009253,0.249829,0,0);-webkit-transform:matrix(0.309673,-0.011469,0.009253,0.249829,0,0);}
.m9_c00149{transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.323009,-0.011963,0.009253,0.249829,0,0);-ms-transform:matrix(0.323009,-0.011963,0.009253,0.249829,0,0);-webkit-transform:matrix(0.323009,-0.011963,0.009253,0.249829,0,0);}
.m17_c00149{transform:matrix(0.347611,-0.008690,0.006248,0.249922,0,0);-ms-transform:matrix(0.347611,-0.008690,0.006248,0.249922,0,0);-webkit-transform:matrix(0.347611,-0.008690,0.006248,0.249922,0,0);}
.ma1_c00149{transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.377211,-0.013971,0.009253,0.249829,0,0);-ms-transform:matrix(0.377211,-0.013971,0.009253,0.249829,0,0);-webkit-transform:matrix(0.377211,-0.013971,0.009253,0.249829,0,0);}
.m7_c00149{transform:matrix(0.408255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408255,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{transform:matrix(0.429570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00149{transform:matrix(0.459310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459310,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.469818,-0.011745,0.006248,0.249922,0,0);-ms-transform:matrix(0.469818,-0.011745,0.006248,0.249922,0,0);-webkit-transform:matrix(0.469818,-0.011745,0.006248,0.249922,0,0);}
.m18_c00149{transform:matrix(0.474982,-0.011875,0.006248,0.249922,0,0);-ms-transform:matrix(0.474982,-0.011875,0.006248,0.249922,0,0);-webkit-transform:matrix(0.474982,-0.011875,0.006248,0.249922,0,0);}
.m25_c00149{transform:matrix(0.497210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497210,0.000000,0.000000,0.250000,0,0);}
.m54_c00149{transform:matrix(0.524985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524985,0.000000,0.000000,0.250000,0,0);}
.mb2_c00149{transform:matrix(0.537600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537600,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.558905,-0.013973,0.006248,0.249922,0,0);-ms-transform:matrix(0.558905,-0.013973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.558905,-0.013973,0.006248,0.249922,0,0);}
.mb7_c00149{transform:matrix(0.748935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748935,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.752260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752260,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.818959,-0.020474,0.006248,0.249922,0,0);-ms-transform:matrix(0.818959,-0.020474,0.006248,0.249922,0,0);-webkit-transform:matrix(0.818959,-0.020474,0.006248,0.249922,0,0);}
.m1c_c00149{transform:matrix(1.082877,-0.027072,0.006248,0.249922,0,0);-ms-transform:matrix(1.082877,-0.027072,0.006248,0.249922,0,0);-webkit-transform:matrix(1.082877,-0.027072,0.006248,0.249922,0,0);}
.m1_c00149{transform:matrix(1.141630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.141630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.141630,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:0.000000px;}
.fc0_c00149{color:transparent;}
.fsa_c00149{font-size:12.603937px;}
.fs2_c00149{font-size:16.800000px;}
.fs0_c00149{font-size:23.100000px;}
.fs1_c00149{font-size:26.250000px;}
.fs1a_c00149{font-size:28.350000px;}
.fsb_c00149{font-size:34.650000px;}
.fs8_c00149{font-size:39.912467px;}
.fs4_c00149{font-size:46.200000px;}
.fs6_c00149{font-size:47.250000px;}
.fs5_c00149{font-size:49.350000px;}
.fs1c_c00149{font-size:50.400000px;}
.fs9_c00149{font-size:50.415748px;}
.fsd_c00149{font-size:57.750000px;}
.fse_c00149{font-size:58.800000px;}
.fs18_c00149{font-size:59.850000px;}
.fsf_c00149{font-size:60.900000px;}
.fs17_c00149{font-size:61.950000px;}
.fs10_c00149{font-size:63.000000px;}
.fs12_c00149{font-size:65.100000px;}
.fs14_c00149{font-size:66.150000px;}
.fs19_c00149{font-size:67.200000px;}
.fsc_c00149{font-size:68.250000px;}
.fs11_c00149{font-size:69.300000px;}
.fs7_c00149{font-size:70.327836px;}
.fs15_c00149{font-size:70.350000px;}
.fs16_c00149{font-size:71.400000px;}
.fs13_c00149{font-size:72.450000px;}
.fs1b_c00149{font-size:73.500000px;}
.fs3_c00149{font-size:92.400000px;}
.y0_c00149{bottom:0.000000px;}
.y4e_c00149{bottom:29.278500px;}
.y4d_c00149{bottom:29.929500px;}
.y4c_c00149{bottom:30.168000px;}
.y4b_c00149{bottom:30.747000px;}
.y4a_c00149{bottom:31.630500px;}
.y49_c00149{bottom:31.989000px;}
.y48_c00149{bottom:32.350500px;}
.y47_c00149{bottom:32.527500px;}
.y46_c00149{bottom:33.100500px;}
.y45_c00149{bottom:33.480000px;}
.y44_c00149{bottom:45.873000px;}
.y43_c00149{bottom:46.305000px;}
.y42_c00149{bottom:46.960500px;}
.y41_c00149{bottom:47.512500px;}
.y40_c00149{bottom:48.310500px;}
.y3f_c00149{bottom:48.603000px;}
.y3e_c00149{bottom:65.718000px;}
.y33_c00149{bottom:66.010500px;}
.y3d_c00149{bottom:66.328500px;}
.y3c_c00149{bottom:66.780000px;}
.y3b_c00149{bottom:67.429500px;}
.y3a_c00149{bottom:67.950000px;}
.y39_c00149{bottom:69.093000px;}
.y38_c00149{bottom:69.934500px;}
.y32_c00149{bottom:78.030000px;}
.y37_c00149{bottom:82.783500px;}
.y31_c00149{bottom:99.292500px;}
.y30_c00149{bottom:117.601500px;}
.y2f_c00149{bottom:134.119500px;}
.y2e_c00149{bottom:152.041500px;}
.y2d_c00149{bottom:168.184500px;}
.y2c_c00149{bottom:186.928500px;}
.y2b_c00149{bottom:205.438500px;}
.y2a_c00149{bottom:223.798500px;}
.y29_c00149{bottom:239.997000px;}
.y28_c00149{bottom:257.548500px;}
.y27_c00149{bottom:274.792500px;}
.y26_c00149{bottom:291.666000px;}
.y25_c00149{bottom:308.913000px;}
.y24_c00149{bottom:343.429500px;}
.y23_c00149{bottom:361.282500px;}
.y22_c00149{bottom:379.240500px;}
.y21_c00149{bottom:395.674500px;}
.y20_c00149{bottom:414.760500px;}
.y1f_c00149{bottom:431.125500px;}
.y1e_c00149{bottom:448.081500px;}
.y36_c00149{bottom:466.153500px;}
.y35_c00149{bottom:468.576000px;}
.y1b_c00149{bottom:471.405188px;}
.y1a_c00149{bottom:471.405262px;}
.y1c_c00149{bottom:471.405788px;}
.y34_c00149{bottom:471.537000px;}
.y1d_c00149{bottom:485.602500px;}
.y18_c00149{bottom:488.726475px;}
.y17_c00149{bottom:488.726813px;}
.y19_c00149{bottom:488.727075px;}
.y16_c00149{bottom:488.727262px;}
.y11_c00149{bottom:500.314500px;}
.y12_c00149{bottom:501.072113px;}
.y13_c00149{bottom:502.790138px;}
.y14_c00149{bottom:503.470838px;}
.y15_c00149{bottom:505.035000px;}
.y9_c00149{bottom:508.440000px;}
.ya_c00149{bottom:509.063043px;}
.yb_c00149{bottom:510.249189px;}
.yc_c00149{bottom:511.380612px;}
.yd_c00149{bottom:512.941716px;}
.ye_c00149{bottom:514.444378px;}
.yf_c00149{bottom:515.999156px;}
.y10_c00149{bottom:518.100052px;}
.y8_c00149{bottom:531.630000px;}
.y2_c00149{bottom:547.830000px;}
.y7_c00149{bottom:549.582000px;}
.y3_c00149{bottom:553.500000px;}
.y5_c00149{bottom:566.809500px;}
.y6_c00149{bottom:571.590000px;}
.y1_c00149{bottom:571.738500px;}
.y4_c00149{bottom:577.266000px;}
.hc_c00149{height:12.603937px;}
.h4_c00149{height:16.800000px;}
.h2_c00149{height:23.100000px;}
.h3_c00149{height:26.250000px;}
.h1c_c00149{height:28.350000px;}
.hd_c00149{height:34.650000px;}
.ha_c00149{height:39.912467px;}
.h6_c00149{height:46.200000px;}
.h8_c00149{height:47.250000px;}
.h7_c00149{height:49.350000px;}
.h1e_c00149{height:50.400000px;}
.hb_c00149{height:50.415748px;}
.hf_c00149{height:57.750000px;}
.h10_c00149{height:58.800000px;}
.h1a_c00149{height:59.850000px;}
.h11_c00149{height:60.900000px;}
.h19_c00149{height:61.950000px;}
.h12_c00149{height:63.000000px;}
.h14_c00149{height:65.100000px;}
.h16_c00149{height:66.150000px;}
.h1b_c00149{height:67.200000px;}
.he_c00149{height:68.250000px;}
.h13_c00149{height:69.300000px;}
.h9_c00149{height:70.327836px;}
.h17_c00149{height:70.350000px;}
.h18_c00149{height:71.400000px;}
.h15_c00149{height:72.450000px;}
.h1d_c00149{height:73.500000px;}
.h5_c00149{height:92.400000px;}
.h0_c00149{height:623.100000px;}
.h1_c00149{height:623.250000px;}
.w1_c00149{width:383.250000px;}
.w0_c00149{width:383.400000px;}
.x0_c00149{left:0.000000px;}
.x64_c00149{left:46.710000px;}
.x18_c00149{left:48.795000px;}
.xe_c00149{left:50.220000px;}
.x67_c00149{left:51.415500px;}
.xd_c00149{left:52.920000px;}
.xf_c00149{left:55.890000px;}
.x8_c00149{left:59.400000px;}
.x3f_c00149{left:61.560000px;}
.x56_c00149{left:64.260000px;}
.x34_c00149{left:65.610000px;}
.x6a_c00149{left:69.217500px;}
.x60_c00149{left:76.410000px;}
.x19_c00149{left:79.099500px;}
.x24_c00149{left:82.350000px;}
.x5c_c00149{left:86.400000px;}
.x10_c00149{left:87.487500px;}
.x2d_c00149{left:89.370000px;}
.x4d_c00149{left:91.260000px;}
.x1d_c00149{left:94.243387px;}
.x5b_c00149{left:95.580000px;}
.x46_c00149{left:100.710000px;}
.x9_c00149{left:101.790000px;}
.x11_c00149{left:104.309661px;}
.x57_c00149{left:108.540000px;}
.x65_c00149{left:112.320000px;}
.x6c_c00149{left:114.684000px;}
.x32_c00149{left:116.910000px;}
.x6_c00149{left:122.580000px;}
.x6d_c00149{left:126.480000px;}
.x2e_c00149{left:128.520000px;}
.x25_c00149{left:132.300000px;}
.x58_c00149{left:133.380000px;}
.x12_c00149{left:136.335603px;}
.x49_c00149{left:139.590000px;}
.x68_c00149{left:141.618000px;}
.x39_c00149{left:143.100000px;}
.x3c_c00149{left:144.450000px;}
.x22_c00149{left:146.368725px;}
.x1a_c00149{left:147.820500px;}
.x43_c00149{left:149.580000px;}
.x1e_c00149{left:153.122175px;}
.xa_c00149{left:154.710000px;}
.x2f_c00149{left:157.140000px;}
.x47_c00149{left:159.840000px;}
.x50_c00149{left:163.350000px;}
.x29_c00149{left:164.700000px;}
.x13_c00149{left:166.884024px;}
.x4e_c00149{left:170.370000px;}
.x5d_c00149{left:171.990000px;}
.x1b_c00149{left:175.048500px;}
.x7_c00149{left:178.740000px;}
.x52_c00149{left:182.520000px;}
.x48_c00149{left:184.680000px;}
.x2a_c00149{left:189.540000px;}
.x4a_c00149{left:190.890000px;}
.xb_c00149{left:192.510000px;}
.x69_c00149{left:194.782500px;}
.x1f_c00149{left:198.497025px;}
.x40_c00149{left:201.690000px;}
.x6b_c00149{left:202.890000px;}
.x3a_c00149{left:207.900000px;}
.x14_c00149{left:209.033832px;}
.x51_c00149{left:210.060000px;}
.x44_c00149{left:211.950000px;}
.x20_c00149{left:215.511637px;}
.x30_c00149{left:220.050000px;}
.x5e_c00149{left:221.670000px;}
.x61_c00149{left:223.020000px;}
.x26_c00149{left:225.180000px;}
.x36_c00149{left:228.420000px;}
.x3d_c00149{left:230.850000px;}
.x1_c00149{left:233.010000px;}
.xc_c00149{left:234.360000px;}
.x1c_c00149{left:237.615000px;}
.x62_c00149{left:238.680000px;}
.x41_c00149{left:243.810000px;}
.x21_c00149{left:246.840712px;}
.x53_c00149{left:248.130000px;}
.x15_c00149{left:249.605720px;}
.x66_c00149{left:253.800000px;}
.x4f_c00149{left:257.580000px;}
.x4b_c00149{left:261.630000px;}
.x37_c00149{left:263.250000px;}
.x27_c00149{left:265.950000px;}
.x23_c00149{left:267.365288px;}
.x2_c00149{left:268.650000px;}
.x55_c00149{left:271.350000px;}
.x5f_c00149{left:277.020000px;}
.x2b_c00149{left:278.910000px;}
.x38_c00149{left:284.040000px;}
.x3_c00149{left:288.090000px;}
.x4c_c00149{left:289.710000px;}
.x16_c00149{left:291.584698px;}
.x33_c00149{left:295.650000px;}
.x2c_c00149{left:299.430000px;}
.x59_c00149{left:306.720000px;}
.x28_c00149{left:307.800000px;}
.x3e_c00149{left:310.230000px;}
.x3b_c00149{left:311.850000px;}
.x31_c00149{left:313.470000px;}
.x42_c00149{left:316.980000px;}
.x35_c00149{left:321.300000px;}
.x5a_c00149{left:322.650000px;}
.x4_c00149{left:325.890000px;}
.x63_c00149{left:329.670000px;}
.x45_c00149{left:331.830000px;}
.x5_c00149{left:336.420000px;}
.x54_c00149{left:343.980000px;}
.x17_c00149{left:348.308918px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.fsa_c00149{font-size:11.203499pt;}
.fs2_c00149{font-size:14.933333pt;}
.fs0_c00149{font-size:20.533333pt;}
.fs1_c00149{font-size:23.333333pt;}
.fs1a_c00149{font-size:25.200000pt;}
.fsb_c00149{font-size:30.800000pt;}
.fs8_c00149{font-size:35.477748pt;}
.fs4_c00149{font-size:41.066667pt;}
.fs6_c00149{font-size:42.000000pt;}
.fs5_c00149{font-size:43.866667pt;}
.fs1c_c00149{font-size:44.800000pt;}
.fs9_c00149{font-size:44.813998pt;}
.fsd_c00149{font-size:51.333333pt;}
.fse_c00149{font-size:52.266667pt;}
.fs18_c00149{font-size:53.200000pt;}
.fsf_c00149{font-size:54.133333pt;}
.fs17_c00149{font-size:55.066667pt;}
.fs10_c00149{font-size:56.000000pt;}
.fs12_c00149{font-size:57.866667pt;}
.fs14_c00149{font-size:58.800000pt;}
.fs19_c00149{font-size:59.733333pt;}
.fsc_c00149{font-size:60.666667pt;}
.fs11_c00149{font-size:61.600000pt;}
.fs7_c00149{font-size:62.513632pt;}
.fs15_c00149{font-size:62.533333pt;}
.fs16_c00149{font-size:63.466667pt;}
.fs13_c00149{font-size:64.400000pt;}
.fs1b_c00149{font-size:65.333333pt;}
.fs3_c00149{font-size:82.133333pt;}
.y0_c00149{bottom:0.000000pt;}
.y4e_c00149{bottom:26.025333pt;}
.y4d_c00149{bottom:26.604000pt;}
.y4c_c00149{bottom:26.816000pt;}
.y4b_c00149{bottom:27.330667pt;}
.y4a_c00149{bottom:28.116000pt;}
.y49_c00149{bottom:28.434667pt;}
.y48_c00149{bottom:28.756000pt;}
.y47_c00149{bottom:28.913333pt;}
.y46_c00149{bottom:29.422667pt;}
.y45_c00149{bottom:29.760000pt;}
.y44_c00149{bottom:40.776000pt;}
.y43_c00149{bottom:41.160000pt;}
.y42_c00149{bottom:41.742667pt;}
.y41_c00149{bottom:42.233333pt;}
.y40_c00149{bottom:42.942667pt;}
.y3f_c00149{bottom:43.202667pt;}
.y3e_c00149{bottom:58.416000pt;}
.y33_c00149{bottom:58.676000pt;}
.y3d_c00149{bottom:58.958667pt;}
.y3c_c00149{bottom:59.360000pt;}
.y3b_c00149{bottom:59.937333pt;}
.y3a_c00149{bottom:60.400000pt;}
.y39_c00149{bottom:61.416000pt;}
.y38_c00149{bottom:62.164000pt;}
.y32_c00149{bottom:69.360000pt;}
.y37_c00149{bottom:73.585333pt;}
.y31_c00149{bottom:88.260000pt;}
.y30_c00149{bottom:104.534667pt;}
.y2f_c00149{bottom:119.217333pt;}
.y2e_c00149{bottom:135.148000pt;}
.y2d_c00149{bottom:149.497333pt;}
.y2c_c00149{bottom:166.158667pt;}
.y2b_c00149{bottom:182.612000pt;}
.y2a_c00149{bottom:198.932000pt;}
.y29_c00149{bottom:213.330667pt;}
.y28_c00149{bottom:228.932000pt;}
.y27_c00149{bottom:244.260000pt;}
.y26_c00149{bottom:259.258667pt;}
.y25_c00149{bottom:274.589333pt;}
.y24_c00149{bottom:305.270667pt;}
.y23_c00149{bottom:321.140000pt;}
.y22_c00149{bottom:337.102667pt;}
.y21_c00149{bottom:351.710667pt;}
.y20_c00149{bottom:368.676000pt;}
.y1f_c00149{bottom:383.222667pt;}
.y1e_c00149{bottom:398.294667pt;}
.y36_c00149{bottom:414.358667pt;}
.y35_c00149{bottom:416.512000pt;}
.y1b_c00149{bottom:419.026833pt;}
.y1a_c00149{bottom:419.026900pt;}
.y1c_c00149{bottom:419.027367pt;}
.y34_c00149{bottom:419.144000pt;}
.y1d_c00149{bottom:431.646667pt;}
.y18_c00149{bottom:434.423533pt;}
.y17_c00149{bottom:434.423833pt;}
.y19_c00149{bottom:434.424067pt;}
.y16_c00149{bottom:434.424233pt;}
.y11_c00149{bottom:444.724000pt;}
.y12_c00149{bottom:445.397433pt;}
.y13_c00149{bottom:446.924567pt;}
.y14_c00149{bottom:447.529633pt;}
.y15_c00149{bottom:448.920000pt;}
.y9_c00149{bottom:451.946667pt;}
.ya_c00149{bottom:452.500483pt;}
.yb_c00149{bottom:453.554835pt;}
.yc_c00149{bottom:454.560544pt;}
.yd_c00149{bottom:455.948192pt;}
.ye_c00149{bottom:457.283892pt;}
.yf_c00149{bottom:458.665916pt;}
.y10_c00149{bottom:460.533380pt;}
.y8_c00149{bottom:472.560000pt;}
.y2_c00149{bottom:486.960000pt;}
.y7_c00149{bottom:488.517333pt;}
.y3_c00149{bottom:492.000000pt;}
.y5_c00149{bottom:503.830667pt;}
.y6_c00149{bottom:508.080000pt;}
.y1_c00149{bottom:508.212000pt;}
.y4_c00149{bottom:513.125333pt;}
.hc_c00149{height:11.203499pt;}
.h4_c00149{height:14.933333pt;}
.h2_c00149{height:20.533333pt;}
.h3_c00149{height:23.333333pt;}
.h1c_c00149{height:25.200000pt;}
.hd_c00149{height:30.800000pt;}
.ha_c00149{height:35.477748pt;}
.h6_c00149{height:41.066667pt;}
.h8_c00149{height:42.000000pt;}
.h7_c00149{height:43.866667pt;}
.h1e_c00149{height:44.800000pt;}
.hb_c00149{height:44.813998pt;}
.hf_c00149{height:51.333333pt;}
.h10_c00149{height:52.266667pt;}
.h1a_c00149{height:53.200000pt;}
.h11_c00149{height:54.133333pt;}
.h19_c00149{height:55.066667pt;}
.h12_c00149{height:56.000000pt;}
.h14_c00149{height:57.866667pt;}
.h16_c00149{height:58.800000pt;}
.h1b_c00149{height:59.733333pt;}
.he_c00149{height:60.666667pt;}
.h13_c00149{height:61.600000pt;}
.h9_c00149{height:62.513632pt;}
.h17_c00149{height:62.533333pt;}
.h18_c00149{height:63.466667pt;}
.h15_c00149{height:64.400000pt;}
.h1d_c00149{height:65.333333pt;}
.h5_c00149{height:82.133333pt;}
.h0_c00149{height:553.866667pt;}
.h1_c00149{height:554.000000pt;}
.w1_c00149{width:340.666667pt;}
.w0_c00149{width:340.800000pt;}
.x0_c00149{left:0.000000pt;}
.x64_c00149{left:41.520000pt;}
.x18_c00149{left:43.373333pt;}
.xe_c00149{left:44.640000pt;}
.x67_c00149{left:45.702667pt;}
.xd_c00149{left:47.040000pt;}
.xf_c00149{left:49.680000pt;}
.x8_c00149{left:52.800000pt;}
.x3f_c00149{left:54.720000pt;}
.x56_c00149{left:57.120000pt;}
.x34_c00149{left:58.320000pt;}
.x6a_c00149{left:61.526667pt;}
.x60_c00149{left:67.920000pt;}
.x19_c00149{left:70.310667pt;}
.x24_c00149{left:73.200000pt;}
.x5c_c00149{left:76.800000pt;}
.x10_c00149{left:77.766667pt;}
.x2d_c00149{left:79.440000pt;}
.x4d_c00149{left:81.120000pt;}
.x1d_c00149{left:83.771900pt;}
.x5b_c00149{left:84.960000pt;}
.x46_c00149{left:89.520000pt;}
.x9_c00149{left:90.480000pt;}
.x11_c00149{left:92.719699pt;}
.x57_c00149{left:96.480000pt;}
.x65_c00149{left:99.840000pt;}
.x6c_c00149{left:101.941333pt;}
.x32_c00149{left:103.920000pt;}
.x6_c00149{left:108.960000pt;}
.x6d_c00149{left:112.426667pt;}
.x2e_c00149{left:114.240000pt;}
.x25_c00149{left:117.600000pt;}
.x58_c00149{left:118.560000pt;}
.x12_c00149{left:121.187203pt;}
.x49_c00149{left:124.080000pt;}
.x68_c00149{left:125.882667pt;}
.x39_c00149{left:127.200000pt;}
.x3c_c00149{left:128.400000pt;}
.x22_c00149{left:130.105533pt;}
.x1a_c00149{left:131.396000pt;}
.x43_c00149{left:132.960000pt;}
.x1e_c00149{left:136.108600pt;}
.xa_c00149{left:137.520000pt;}
.x2f_c00149{left:139.680000pt;}
.x47_c00149{left:142.080000pt;}
.x50_c00149{left:145.200000pt;}
.x29_c00149{left:146.400000pt;}
.x13_c00149{left:148.341355pt;}
.x4e_c00149{left:151.440000pt;}
.x5d_c00149{left:152.880000pt;}
.x1b_c00149{left:155.598667pt;}
.x7_c00149{left:158.880000pt;}
.x52_c00149{left:162.240000pt;}
.x48_c00149{left:164.160000pt;}
.x2a_c00149{left:168.480000pt;}
.x4a_c00149{left:169.680000pt;}
.xb_c00149{left:171.120000pt;}
.x69_c00149{left:173.140000pt;}
.x1f_c00149{left:176.441800pt;}
.x40_c00149{left:179.280000pt;}
.x6b_c00149{left:180.346667pt;}
.x3a_c00149{left:184.800000pt;}
.x14_c00149{left:185.807851pt;}
.x51_c00149{left:186.720000pt;}
.x44_c00149{left:188.400000pt;}
.x20_c00149{left:191.565900pt;}
.x30_c00149{left:195.600000pt;}
.x5e_c00149{left:197.040000pt;}
.x61_c00149{left:198.240000pt;}
.x26_c00149{left:200.160000pt;}
.x36_c00149{left:203.040000pt;}
.x3d_c00149{left:205.200000pt;}
.x1_c00149{left:207.120000pt;}
.xc_c00149{left:208.320000pt;}
.x1c_c00149{left:211.213333pt;}
.x62_c00149{left:212.160000pt;}
.x41_c00149{left:216.720000pt;}
.x21_c00149{left:219.413967pt;}
.x53_c00149{left:220.560000pt;}
.x15_c00149{left:221.871751pt;}
.x66_c00149{left:225.600000pt;}
.x4f_c00149{left:228.960000pt;}
.x4b_c00149{left:232.560000pt;}
.x37_c00149{left:234.000000pt;}
.x27_c00149{left:236.400000pt;}
.x23_c00149{left:237.658033pt;}
.x2_c00149{left:238.800000pt;}
.x55_c00149{left:241.200000pt;}
.x5f_c00149{left:246.240000pt;}
.x2b_c00149{left:247.920000pt;}
.x38_c00149{left:252.480000pt;}
.x3_c00149{left:256.080000pt;}
.x4c_c00149{left:257.520000pt;}
.x16_c00149{left:259.186399pt;}
.x33_c00149{left:262.800000pt;}
.x2c_c00149{left:266.160000pt;}
.x59_c00149{left:272.640000pt;}
.x28_c00149{left:273.600000pt;}
.x3e_c00149{left:275.760000pt;}
.x3b_c00149{left:277.200000pt;}
.x31_c00149{left:278.640000pt;}
.x42_c00149{left:281.760000pt;}
.x35_c00149{left:285.600000pt;}
.x5a_c00149{left:286.800000pt;}
.x4_c00149{left:289.680000pt;}
.x63_c00149{left:293.040000pt;}
.x45_c00149{left:294.960000pt;}
.x5_c00149{left:299.040000pt;}
.x54_c00149{left:305.760000pt;}
.x17_c00149{left:309.607927pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00150 {
    display:none;
  }
  .loading-indicator_c00150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00150 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00150 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00150" -> "#page-container .classname_c00150")
 */
.pf_c00150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00150 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00150 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00150 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00150 {overflow:visible;}
  }
}
.c_c00150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00150 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00150:after { /* webkit #35443 */
  content: '';
}
.t_c00150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00150 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00150 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00150 { /* info for Javascript */
  display:none;
}
.l_c00150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00150:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00150 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00150.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00150{transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);}
.mc7_c00150{transform:matrix(0.091545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091545,0.000000,0.000000,0.250000,0,0);}
.m26_c00150{transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);}
.mbb_c00150{transform:matrix(0.112410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112410,0.000000,0.000000,0.250000,0,0);}
.m25_c00150{transform:matrix(0.123045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123045,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m6e_c00150{transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137715,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.137785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137785,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{transform:matrix(0.138120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138120,0.000000,0.000000,0.250000,0,0);}
.mf1_c00150{transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);}
.mef_c00150{transform:matrix(0.139595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139595,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m40_c00150{transform:matrix(0.143710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143710,0.000000,0.000000,0.250000,0,0);}
.m92_c00150{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);}
.m9a_c00150{transform:matrix(0.147740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147740,0.000000,0.000000,0.250000,0,0);}
.mf4_c00150{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00150{transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);}
.mf0_c00150{transform:matrix(0.150895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150895,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00150{transform:matrix(0.151670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151670,0.000000,0.000000,0.250000,0,0);}
.m96_c00150{transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);}
.me7_c00150{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m30_c00150{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.mec_c00150{transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);}
.m7d_c00150{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m9f_c00150{transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.m9d_c00150{transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);}
.med_c00150{transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);}
.mb7_c00150{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m33_c00150{transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);}
.m5c_c00150{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m6f_c00150{transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);}
.m7a_c00150{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m32_c00150{transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.161745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161745,0.000000,0.000000,0.250000,0,0);}
.m31_c00150{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{transform:matrix(0.163540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163540,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m90_c00150{transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);}
.ma9_c00150{transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);}
.m73_c00150{transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00150{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.ma4_c00150{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00150{transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);}
.m8f_c00150{transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166195,0.000000,0.000000,0.250000,0,0);}
.m4e_c00150{transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);}
.m91_c00150{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.mbe_c00150{transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);}
.mee_c00150{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.m8c_c00150{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m34_c00150{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m41_c00150{transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);}
.mea_c00150{transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00150{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m72_c00150{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.md0_c00150{transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00150{transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m94_c00150{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m6b_c00150{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m75_c00150{transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);}
.mc8_c00150{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m82_c00150{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);}
.mbd_c00150{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);}
.m38_c00150{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m8d_c00150{transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);}
.meb_c00150{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.me2_c00150{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m2d_c00150{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.m2f_c00150{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m57_c00150{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.m79_c00150{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.md8_c00150{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m97_c00150{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m65_c00150{transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m83_c00150{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m64_c00150{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00150{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.mb5_c00150{transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);}
.m58_c00150{transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);}
.m69_c00150{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);}
.m71_c00150{transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);}
.ma7_c00150{transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181115,0.000000,0.000000,0.250000,0,0);}
.mae_c00150{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.mc2_c00150{transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);}
.m76_c00150{transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);}
.ma6_c00150{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00150{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.md4_c00150{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.maa_c00150{transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);}
.mab_c00150{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.me3_c00150{transform:matrix(0.184065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184065,0.000000,0.000000,0.250000,0,0);}
.m5b_c00150{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.me6_c00150{transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);}
.mda_c00150{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m7b_c00150{transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.mdc_c00150{transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);}
.m43_c00150{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.mbc_c00150{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.me8_c00150{transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);}
.ma5_c00150{transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);}
.ma8_c00150{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00150{transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.m10_c00150{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.ma2_c00150{transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);}
.m24_c00150{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.me1_c00150{transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);}
.m93_c00150{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.md9_c00150{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.ma3_c00150{transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.me5_c00150{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.mb9_c00150{transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191785,0.000000,0.000000,0.250000,0,0);}
.m66_c00150{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.m63_c00150{transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);}
.m68_c00150{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m74_c00150{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.m62_c00150{transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);}
.m77_c00150{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m99_c00150{transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);}
.mf3_c00150{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m5d_c00150{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m78_c00150{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m6a_c00150{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);}
.me4_c00150{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);}
.m80_c00150{transform:matrix(0.195765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195765,0.000000,0.000000,0.250000,0,0);}
.mb8_c00150{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.mde_c00150{transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.mac_c00150{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.me9_c00150{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.mb6_c00150{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m70_c00150{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m3c_c00150{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);}
.mb1_c00150{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.me0_c00150{transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mbf_c00150{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);}
.md5_c00150{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.m2e_c00150{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m95_c00150{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.maf_c00150{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m6d_c00150{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);}
.ma1_c00150{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.mb4_c00150{transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);}
.mdb_c00150{transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);}
.mb0_c00150{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m81_c00150{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.mcf_c00150{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.mc0_c00150{transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);}
.mdf_c00150{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.mcc_c00150{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.mc1_c00150{transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);}
.m88_c00150{transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);}
.mc9_c00150{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.md7_c00150{transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00150{transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);}
.md2_c00150{transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);}
.mdd_c00150{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.md6_c00150{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.mc5_c00150{transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);}
.mcd_c00150{transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.226020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226020,0.000000,0.000000,0.250000,0,0);}
.mca_c00150{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.mce_c00150{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00150{transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.mba_c00150{transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);}
.mcb_c00150{transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);}
.md3_c00150{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);}
.mb2_c00150{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.mc4_c00150{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.mc3_c00150{transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);}
.mad_c00150{transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);}
.m28_c00150{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);}
.mf2_c00150{transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);}
.m86_c00150{transform:matrix(0.312865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312865,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);}
.md1_c00150{transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:0.000000px;}
._0_c00150{width:32.842150px;}
.fc0_c00150{color:transparent;}
.fsb_c00150{font-size:55.650000px;}
.fsa_c00150{font-size:58.800000px;}
.fsc_c00150{font-size:60.900000px;}
.fsd_c00150{font-size:61.950000px;}
.fs3_c00150{font-size:63.000000px;}
.fse_c00150{font-size:65.100000px;}
.fs7_c00150{font-size:66.150000px;}
.fs5_c00150{font-size:67.200000px;}
.fs2_c00150{font-size:68.250000px;}
.fs0_c00150{font-size:69.300000px;}
.fs1_c00150{font-size:70.350000px;}
.fs4_c00150{font-size:71.400000px;}
.fs9_c00150{font-size:72.450000px;}
.fs6_c00150{font-size:73.500000px;}
.fs8_c00150{font-size:74.550000px;}
.fsf_c00150{font-size:78.750000px;}
.y0_c00150{bottom:0.000000px;}
.y50_c00150{bottom:31.914000px;}
.y4f_c00150{bottom:50.662500px;}
.y4e_c00150{bottom:67.516500px;}
.y4d_c00150{bottom:67.807500px;}
.y4c_c00150{bottom:68.155500px;}
.y4b_c00150{bottom:68.863500px;}
.y4a_c00150{bottom:69.141000px;}
.y49_c00150{bottom:69.876000px;}
.y48_c00150{bottom:70.197000px;}
.y47_c00150{bottom:85.678500px;}
.y46_c00150{bottom:86.421000px;}
.y45_c00150{bottom:86.809500px;}
.y44_c00150{bottom:87.550500px;}
.y43_c00150{bottom:88.110000px;}
.y42_c00150{bottom:88.558500px;}
.y41_c00150{bottom:102.919500px;}
.y40_c00150{bottom:119.911500px;}
.y3f_c00150{bottom:137.157000px;}
.y3e_c00150{bottom:155.110500px;}
.y3d_c00150{bottom:171.261000px;}
.y3c_c00150{bottom:188.776500px;}
.y3b_c00150{bottom:206.652000px;}
.y3a_c00150{bottom:207.006000px;}
.y39_c00150{bottom:207.670500px;}
.y38_c00150{bottom:208.056000px;}
.y37_c00150{bottom:208.302000px;}
.y36_c00150{bottom:209.035500px;}
.y35_c00150{bottom:209.232000px;}
.y34_c00150{bottom:209.790000px;}
.y33_c00150{bottom:223.627500px;}
.y32_c00150{bottom:223.867500px;}
.y31_c00150{bottom:224.340000px;}
.y30_c00150{bottom:224.578500px;}
.y2f_c00150{bottom:225.192000px;}
.y2e_c00150{bottom:225.505500px;}
.y2d_c00150{bottom:226.465500px;}
.y2c_c00150{bottom:226.798500px;}
.y2b_c00150{bottom:240.850500px;}
.y2a_c00150{bottom:241.486500px;}
.y29_c00150{bottom:241.687500px;}
.y28_c00150{bottom:241.978500px;}
.y27_c00150{bottom:242.163000px;}
.y26_c00150{bottom:242.781000px;}
.y25_c00150{bottom:243.441000px;}
.y24_c00150{bottom:243.601500px;}
.y23_c00150{bottom:243.808500px;}
.y22_c00150{bottom:258.136500px;}
.y21_c00150{bottom:258.853500px;}
.y20_c00150{bottom:259.518000px;}
.y1f_c00150{bottom:259.876500px;}
.y1e_c00150{bottom:260.226000px;}
.y1d_c00150{bottom:260.479500px;}
.y1c_c00150{bottom:260.874000px;}
.y1b_c00150{bottom:261.088500px;}
.y1a_c00150{bottom:275.970000px;}
.y19_c00150{bottom:276.693000px;}
.y18_c00150{bottom:276.916500px;}
.y17_c00150{bottom:277.432500px;}
.y16_c00150{bottom:277.614000px;}
.y15_c00150{bottom:278.148000px;}
.y14_c00150{bottom:278.941500px;}
.y13_c00150{bottom:279.178500px;}
.y12_c00150{bottom:294.825000px;}
.y11_c00150{bottom:312.558000px;}
.y10_c00150{bottom:329.517000px;}
.yf_c00150{bottom:346.443000px;}
.ye_c00150{bottom:362.845500px;}
.yd_c00150{bottom:379.704000px;}
.yc_c00150{bottom:396.660000px;}
.yb_c00150{bottom:414.501000px;}
.ya_c00150{bottom:431.880000px;}
.y9_c00150{bottom:448.770000px;}
.y8_c00150{bottom:465.748500px;}
.y7_c00150{bottom:483.298500px;}
.y6_c00150{bottom:500.967000px;}
.y5_c00150{bottom:518.128500px;}
.y4_c00150{bottom:535.560000px;}
.y3_c00150{bottom:552.991500px;}
.y2_c00150{bottom:570.240000px;}
.y1_c00150{bottom:592.650000px;}
.hd_c00150{height:55.650000px;}
.hc_c00150{height:58.800000px;}
.he_c00150{height:60.900000px;}
.hf_c00150{height:61.950000px;}
.h5_c00150{height:63.000000px;}
.h10_c00150{height:65.100000px;}
.h9_c00150{height:66.150000px;}
.h7_c00150{height:67.200000px;}
.h4_c00150{height:68.250000px;}
.h2_c00150{height:69.300000px;}
.h3_c00150{height:70.350000px;}
.h6_c00150{height:71.400000px;}
.hb_c00150{height:72.450000px;}
.h8_c00150{height:73.500000px;}
.ha_c00150{height:74.550000px;}
.h11_c00150{height:78.750000px;}
.h0_c00150{height:623.100000px;}
.h1_c00150{height:623.250000px;}
.w1_c00150{width:383.250000px;}
.w0_c00150{width:383.400000px;}
.x0_c00150{left:0.000000px;}
.x18_c00150{left:21.330000px;}
.x56_c00150{left:26.377500px;}
.x2_c00150{left:29.970000px;}
.x67_c00150{left:31.051500px;}
.x77_c00150{left:32.299500px;}
.x7b_c00150{left:41.310000px;}
.x57_c00150{left:47.928000px;}
.x5d_c00150{left:49.287000px;}
.x33_c00150{left:50.760000px;}
.x3_c00150{left:54.270000px;}
.x37_c00150{left:55.620000px;}
.x7c_c00150{left:57.240000px;}
.x60_c00150{left:58.456500px;}
.x3c_c00150{left:60.750000px;}
.x44_c00150{left:62.100000px;}
.x19_c00150{left:63.990000px;}
.xb_c00150{left:69.930000px;}
.x34_c00150{left:71.550000px;}
.x68_c00150{left:73.171500px;}
.x29_c00150{left:74.520000px;}
.x78_c00150{left:77.098500px;}
.x11_c00150{left:78.840000px;}
.x24_c00150{left:81.270000px;}
.x1e_c00150{left:85.050000px;}
.x41_c00150{left:87.480000px;}
.x65_c00150{left:88.954500px;}
.x51_c00150{left:92.610000px;}
.x35_c00150{left:94.500000px;}
.x25_c00150{left:96.390000px;}
.x2e_c00150{left:97.470000px;}
.x12_c00150{left:100.710000px;}
.x38_c00150{left:101.790000px;}
.x1a_c00150{left:103.410000px;}
.x2a_c00150{left:105.300000px;}
.x4d_c00150{left:109.350000px;}
.x6e_c00150{left:110.971500px;}
.x3d_c00150{left:112.050000px;}
.x39_c00150{left:113.130000px;}
.x52_c00150{left:114.750000px;}
.x58_c00150{left:120.045000px;}
.x4_c00150{left:121.500000px;}
.x13_c00150{left:122.850000px;}
.x2f_c00150{left:126.900000px;}
.x6b_c00150{left:131.761500px;}
.x6f_c00150{left:133.651500px;}
.x73_c00150{left:135.541500px;}
.xc_c00150{left:136.890000px;}
.x61_c00150{left:138.430500px;}
.x1f_c00150{left:139.860000px;}
.x5_c00150{left:143.370000px;}
.x3a_c00150{left:146.070000px;}
.x4e_c00150{left:150.390000px;}
.x14_c00150{left:153.900000px;}
.x26_c00150{left:155.250000px;}
.x20_c00150{left:159.300000px;}
.x69_c00150{left:160.921500px;}
.x45_c00150{left:163.620000px;}
.x2b_c00150{left:165.780000px;}
.x30_c00150{left:168.210000px;}
.x1_c00150{left:170.370000px;}
.x5b_c00150{left:173.208000px;}
.x27_c00150{left:175.500000px;}
.x5e_c00150{left:179.953500px;}
.x3b_c00150{left:184.140000px;}
.x53_c00150{left:186.840000px;}
.x48_c00150{left:189.270000px;}
.x6_c00150{left:193.050000px;}
.xd_c00150{left:194.940000px;}
.x5f_c00150{left:196.735500px;}
.x21_c00150{left:197.910000px;}
.x46_c00150{left:199.530000px;}
.x7_c00150{left:203.850000px;}
.x6c_c00150{left:206.011500px;}
.x54_c00150{left:207.090000px;}
.x31_c00150{left:209.250000px;}
.x70_c00150{left:210.871500px;}
.x4f_c00150{left:212.220000px;}
.x15_c00150{left:213.570000px;}
.x62_c00150{left:215.640000px;}
.x1b_c00150{left:217.890000px;}
.x49_c00150{left:220.050000px;}
.x42_c00150{left:222.750000px;}
.x4b_c00150{left:227.070000px;}
.x76_c00150{left:228.691500px;}
.x2c_c00150{left:231.390000px;}
.x28_c00150{left:232.740000px;}
.x8_c00150{left:234.630000px;}
.x79_c00150{left:236.431500px;}
.x6d_c00150{left:238.411500px;}
.xe_c00150{left:242.460000px;}
.x66_c00150{left:245.052000px;}
.x47_c00150{left:246.510000px;}
.x3e_c00150{left:249.210000px;}
.x59_c00150{left:252.301500px;}
.xf_c00150{left:254.610000px;}
.x4c_c00150{left:257.850000px;}
.x32_c00150{left:258.930000px;}
.x74_c00150{left:260.281500px;}
.x55_c00150{left:261.360000px;}
.x50_c00150{left:262.710000px;}
.x1c_c00150{left:266.490000px;}
.x3f_c00150{left:270.000000px;}
.x22_c00150{left:271.620000px;}
.x36_c00150{left:273.240000px;}
.x63_c00150{left:274.986000px;}
.x16_c00150{left:277.830000px;}
.x43_c00150{left:279.990000px;}
.x71_c00150{left:285.391500px;}
.x1d_c00150{left:286.740000px;}
.x9_c00150{left:289.710000px;}
.x6a_c00150{left:293.761500px;}
.x64_c00150{left:294.963000px;}
.x75_c00150{left:297.541500px;}
.x5c_c00150{left:298.801500px;}
.x7a_c00150{left:300.405000px;}
.x17_c00150{left:305.370000px;}
.xa_c00150{left:308.610000px;}
.x4a_c00150{left:311.310000px;}
.x72_c00150{left:312.661500px;}
.x10_c00150{left:316.710000px;}
.x5a_c00150{left:317.968500px;}
.x40_c00150{left:319.950000px;}
.x2d_c00150{left:324.810000px;}
.x23_c00150{left:325.890000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
._0_c00150{width:29.193023pt;}
.fsb_c00150{font-size:49.466667pt;}
.fsa_c00150{font-size:52.266667pt;}
.fsc_c00150{font-size:54.133333pt;}
.fsd_c00150{font-size:55.066667pt;}
.fs3_c00150{font-size:56.000000pt;}
.fse_c00150{font-size:57.866667pt;}
.fs7_c00150{font-size:58.800000pt;}
.fs5_c00150{font-size:59.733333pt;}
.fs2_c00150{font-size:60.666667pt;}
.fs0_c00150{font-size:61.600000pt;}
.fs1_c00150{font-size:62.533333pt;}
.fs4_c00150{font-size:63.466667pt;}
.fs9_c00150{font-size:64.400000pt;}
.fs6_c00150{font-size:65.333333pt;}
.fs8_c00150{font-size:66.266667pt;}
.fsf_c00150{font-size:70.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y50_c00150{bottom:28.368000pt;}
.y4f_c00150{bottom:45.033333pt;}
.y4e_c00150{bottom:60.014667pt;}
.y4d_c00150{bottom:60.273333pt;}
.y4c_c00150{bottom:60.582667pt;}
.y4b_c00150{bottom:61.212000pt;}
.y4a_c00150{bottom:61.458667pt;}
.y49_c00150{bottom:62.112000pt;}
.y48_c00150{bottom:62.397333pt;}
.y47_c00150{bottom:76.158667pt;}
.y46_c00150{bottom:76.818667pt;}
.y45_c00150{bottom:77.164000pt;}
.y44_c00150{bottom:77.822667pt;}
.y43_c00150{bottom:78.320000pt;}
.y42_c00150{bottom:78.718667pt;}
.y41_c00150{bottom:91.484000pt;}
.y40_c00150{bottom:106.588000pt;}
.y3f_c00150{bottom:121.917333pt;}
.y3e_c00150{bottom:137.876000pt;}
.y3d_c00150{bottom:152.232000pt;}
.y3c_c00150{bottom:167.801333pt;}
.y3b_c00150{bottom:183.690667pt;}
.y3a_c00150{bottom:184.005333pt;}
.y39_c00150{bottom:184.596000pt;}
.y38_c00150{bottom:184.938667pt;}
.y37_c00150{bottom:185.157333pt;}
.y36_c00150{bottom:185.809333pt;}
.y35_c00150{bottom:185.984000pt;}
.y34_c00150{bottom:186.480000pt;}
.y33_c00150{bottom:198.780000pt;}
.y32_c00150{bottom:198.993333pt;}
.y31_c00150{bottom:199.413333pt;}
.y30_c00150{bottom:199.625333pt;}
.y2f_c00150{bottom:200.170667pt;}
.y2e_c00150{bottom:200.449333pt;}
.y2d_c00150{bottom:201.302667pt;}
.y2c_c00150{bottom:201.598667pt;}
.y2b_c00150{bottom:214.089333pt;}
.y2a_c00150{bottom:214.654667pt;}
.y29_c00150{bottom:214.833333pt;}
.y28_c00150{bottom:215.092000pt;}
.y27_c00150{bottom:215.256000pt;}
.y26_c00150{bottom:215.805333pt;}
.y25_c00150{bottom:216.392000pt;}
.y24_c00150{bottom:216.534667pt;}
.y23_c00150{bottom:216.718667pt;}
.y22_c00150{bottom:229.454667pt;}
.y21_c00150{bottom:230.092000pt;}
.y20_c00150{bottom:230.682667pt;}
.y1f_c00150{bottom:231.001333pt;}
.y1e_c00150{bottom:231.312000pt;}
.y1d_c00150{bottom:231.537333pt;}
.y1c_c00150{bottom:231.888000pt;}
.y1b_c00150{bottom:232.078667pt;}
.y1a_c00150{bottom:245.306667pt;}
.y19_c00150{bottom:245.949333pt;}
.y18_c00150{bottom:246.148000pt;}
.y17_c00150{bottom:246.606667pt;}
.y16_c00150{bottom:246.768000pt;}
.y15_c00150{bottom:247.242667pt;}
.y14_c00150{bottom:247.948000pt;}
.y13_c00150{bottom:248.158667pt;}
.y12_c00150{bottom:262.066667pt;}
.y11_c00150{bottom:277.829333pt;}
.y10_c00150{bottom:292.904000pt;}
.yf_c00150{bottom:307.949333pt;}
.ye_c00150{bottom:322.529333pt;}
.yd_c00150{bottom:337.514667pt;}
.yc_c00150{bottom:352.586667pt;}
.yb_c00150{bottom:368.445333pt;}
.ya_c00150{bottom:383.893333pt;}
.y9_c00150{bottom:398.906667pt;}
.y8_c00150{bottom:413.998667pt;}
.y7_c00150{bottom:429.598667pt;}
.y6_c00150{bottom:445.304000pt;}
.y5_c00150{bottom:460.558667pt;}
.y4_c00150{bottom:476.053333pt;}
.y3_c00150{bottom:491.548000pt;}
.y2_c00150{bottom:506.880000pt;}
.y1_c00150{bottom:526.800000pt;}
.hd_c00150{height:49.466667pt;}
.hc_c00150{height:52.266667pt;}
.he_c00150{height:54.133333pt;}
.hf_c00150{height:55.066667pt;}
.h5_c00150{height:56.000000pt;}
.h10_c00150{height:57.866667pt;}
.h9_c00150{height:58.800000pt;}
.h7_c00150{height:59.733333pt;}
.h4_c00150{height:60.666667pt;}
.h2_c00150{height:61.600000pt;}
.h3_c00150{height:62.533333pt;}
.h6_c00150{height:63.466667pt;}
.hb_c00150{height:64.400000pt;}
.h8_c00150{height:65.333333pt;}
.ha_c00150{height:66.266667pt;}
.h11_c00150{height:70.000000pt;}
.h0_c00150{height:553.866667pt;}
.h1_c00150{height:554.000000pt;}
.w1_c00150{width:340.666667pt;}
.w0_c00150{width:340.800000pt;}
.x0_c00150{left:0.000000pt;}
.x18_c00150{left:18.960000pt;}
.x56_c00150{left:23.446667pt;}
.x2_c00150{left:26.640000pt;}
.x67_c00150{left:27.601333pt;}
.x77_c00150{left:28.710667pt;}
.x7b_c00150{left:36.720000pt;}
.x57_c00150{left:42.602667pt;}
.x5d_c00150{left:43.810667pt;}
.x33_c00150{left:45.120000pt;}
.x3_c00150{left:48.240000pt;}
.x37_c00150{left:49.440000pt;}
.x7c_c00150{left:50.880000pt;}
.x60_c00150{left:51.961333pt;}
.x3c_c00150{left:54.000000pt;}
.x44_c00150{left:55.200000pt;}
.x19_c00150{left:56.880000pt;}
.xb_c00150{left:62.160000pt;}
.x34_c00150{left:63.600000pt;}
.x68_c00150{left:65.041333pt;}
.x29_c00150{left:66.240000pt;}
.x78_c00150{left:68.532000pt;}
.x11_c00150{left:70.080000pt;}
.x24_c00150{left:72.240000pt;}
.x1e_c00150{left:75.600000pt;}
.x41_c00150{left:77.760000pt;}
.x65_c00150{left:79.070667pt;}
.x51_c00150{left:82.320000pt;}
.x35_c00150{left:84.000000pt;}
.x25_c00150{left:85.680000pt;}
.x2e_c00150{left:86.640000pt;}
.x12_c00150{left:89.520000pt;}
.x38_c00150{left:90.480000pt;}
.x1a_c00150{left:91.920000pt;}
.x2a_c00150{left:93.600000pt;}
.x4d_c00150{left:97.200000pt;}
.x6e_c00150{left:98.641333pt;}
.x3d_c00150{left:99.600000pt;}
.x39_c00150{left:100.560000pt;}
.x52_c00150{left:102.000000pt;}
.x58_c00150{left:106.706667pt;}
.x4_c00150{left:108.000000pt;}
.x13_c00150{left:109.200000pt;}
.x2f_c00150{left:112.800000pt;}
.x6b_c00150{left:117.121333pt;}
.x6f_c00150{left:118.801333pt;}
.x73_c00150{left:120.481333pt;}
.xc_c00150{left:121.680000pt;}
.x61_c00150{left:123.049333pt;}
.x1f_c00150{left:124.320000pt;}
.x5_c00150{left:127.440000pt;}
.x3a_c00150{left:129.840000pt;}
.x4e_c00150{left:133.680000pt;}
.x14_c00150{left:136.800000pt;}
.x26_c00150{left:138.000000pt;}
.x20_c00150{left:141.600000pt;}
.x69_c00150{left:143.041333pt;}
.x45_c00150{left:145.440000pt;}
.x2b_c00150{left:147.360000pt;}
.x30_c00150{left:149.520000pt;}
.x1_c00150{left:151.440000pt;}
.x5b_c00150{left:153.962667pt;}
.x27_c00150{left:156.000000pt;}
.x5e_c00150{left:159.958667pt;}
.x3b_c00150{left:163.680000pt;}
.x53_c00150{left:166.080000pt;}
.x48_c00150{left:168.240000pt;}
.x6_c00150{left:171.600000pt;}
.xd_c00150{left:173.280000pt;}
.x5f_c00150{left:174.876000pt;}
.x21_c00150{left:175.920000pt;}
.x46_c00150{left:177.360000pt;}
.x7_c00150{left:181.200000pt;}
.x6c_c00150{left:183.121333pt;}
.x54_c00150{left:184.080000pt;}
.x31_c00150{left:186.000000pt;}
.x70_c00150{left:187.441333pt;}
.x4f_c00150{left:188.640000pt;}
.x15_c00150{left:189.840000pt;}
.x62_c00150{left:191.680000pt;}
.x1b_c00150{left:193.680000pt;}
.x49_c00150{left:195.600000pt;}
.x42_c00150{left:198.000000pt;}
.x4b_c00150{left:201.840000pt;}
.x76_c00150{left:203.281333pt;}
.x2c_c00150{left:205.680000pt;}
.x28_c00150{left:206.880000pt;}
.x8_c00150{left:208.560000pt;}
.x79_c00150{left:210.161333pt;}
.x6d_c00150{left:211.921333pt;}
.xe_c00150{left:215.520000pt;}
.x66_c00150{left:217.824000pt;}
.x47_c00150{left:219.120000pt;}
.x3e_c00150{left:221.520000pt;}
.x59_c00150{left:224.268000pt;}
.xf_c00150{left:226.320000pt;}
.x4c_c00150{left:229.200000pt;}
.x32_c00150{left:230.160000pt;}
.x74_c00150{left:231.361333pt;}
.x55_c00150{left:232.320000pt;}
.x50_c00150{left:233.520000pt;}
.x1c_c00150{left:236.880000pt;}
.x3f_c00150{left:240.000000pt;}
.x22_c00150{left:241.440000pt;}
.x36_c00150{left:242.880000pt;}
.x63_c00150{left:244.432000pt;}
.x16_c00150{left:246.960000pt;}
.x43_c00150{left:248.880000pt;}
.x71_c00150{left:253.681333pt;}
.x1d_c00150{left:254.880000pt;}
.x9_c00150{left:257.520000pt;}
.x6a_c00150{left:261.121333pt;}
.x64_c00150{left:262.189333pt;}
.x75_c00150{left:264.481333pt;}
.x5c_c00150{left:265.601333pt;}
.x7a_c00150{left:267.026667pt;}
.x17_c00150{left:271.440000pt;}
.xa_c00150{left:274.320000pt;}
.x4a_c00150{left:276.720000pt;}
.x72_c00150{left:277.921333pt;}
.x10_c00150{left:281.520000pt;}
.x5a_c00150{left:282.638667pt;}
.x40_c00150{left:284.400000pt;}
.x2d_c00150{left:288.720000pt;}
.x23_c00150{left:289.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00151 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00151 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00151 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00151 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00151.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00151{transform:matrix(0.011364,-0.000136,0.003000,0.249982,0,0);-ms-transform:matrix(0.011364,-0.000136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011364,-0.000136,0.003000,0.249982,0,0);}
.m3f_c00151{transform:matrix(0.096630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096630,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.111956,-0.001455,0.003250,0.249979,0,0);-ms-transform:matrix(0.111956,-0.001455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.111956,-0.001455,0.003250,0.249979,0,0);}
.ma9_c00151{transform:matrix(0.125951,-0.001511,0.003000,0.249982,0,0);-ms-transform:matrix(0.125951,-0.001511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.125951,-0.001511,0.003000,0.249982,0,0);}
.m2b_c00151{transform:matrix(0.133434,-0.001735,0.003250,0.249979,0,0);-ms-transform:matrix(0.133434,-0.001735,0.003250,0.249979,0,0);-webkit-transform:matrix(0.133434,-0.001735,0.003250,0.249979,0,0);}
.m1e_c00151{transform:matrix(0.139268,-0.001810,0.003250,0.249979,0,0);-ms-transform:matrix(0.139268,-0.001810,0.003250,0.249979,0,0);-webkit-transform:matrix(0.139268,-0.001810,0.003250,0.249979,0,0);}
.m9b_c00151{transform:matrix(0.139760,-0.001677,0.003000,0.249982,0,0);-ms-transform:matrix(0.139760,-0.001677,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139760,-0.001677,0.003000,0.249982,0,0);}
.m77_c00151{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.mde_c00151{transform:matrix(0.151979,-0.001824,0.003000,0.249982,0,0);-ms-transform:matrix(0.151979,-0.001824,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151979,-0.001824,0.003000,0.249982,0,0);}
.m70_c00151{transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152030,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.152102,-0.001977,0.003250,0.249979,0,0);-ms-transform:matrix(0.152102,-0.001977,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152102,-0.001977,0.003250,0.249979,0,0);}
.m1f_c00151{transform:matrix(0.153087,-0.001990,0.003250,0.249979,0,0);-ms-transform:matrix(0.153087,-0.001990,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153087,-0.001990,0.003250,0.249979,0,0);}
.m20_c00151{transform:matrix(0.155852,-0.002026,0.003250,0.249979,0,0);-ms-transform:matrix(0.155852,-0.002026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155852,-0.002026,0.003250,0.249979,0,0);}
.m1b_c00151{transform:matrix(0.157052,-0.002042,0.003250,0.249979,0,0);-ms-transform:matrix(0.157052,-0.002042,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157052,-0.002042,0.003250,0.249979,0,0);}
.m3b_c00151{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.158649,-0.001904,0.003000,0.249982,0,0);-ms-transform:matrix(0.158649,-0.001904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158649,-0.001904,0.003000,0.249982,0,0);}
.m99_c00151{transform:matrix(0.159324,-0.001912,0.003000,0.249982,0,0);-ms-transform:matrix(0.159324,-0.001912,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159324,-0.001912,0.003000,0.249982,0,0);}
.m3d_c00151{transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.160226,-0.002083,0.003250,0.249979,0,0);-ms-transform:matrix(0.160226,-0.002083,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160226,-0.002083,0.003250,0.249979,0,0);}
.m6e_c00151{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.mb7_c00151{transform:matrix(0.161813,-0.001942,0.003000,0.249982,0,0);-ms-transform:matrix(0.161813,-0.001942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161813,-0.001942,0.003000,0.249982,0,0);}
.m67_c00151{transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.164268,-0.001971,0.003000,0.249982,0,0);-ms-transform:matrix(0.164268,-0.001971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164268,-0.001971,0.003000,0.249982,0,0);}
.mc7_c00151{transform:matrix(0.164613,-0.001975,0.003000,0.249982,0,0);-ms-transform:matrix(0.164613,-0.001975,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164613,-0.001975,0.003000,0.249982,0,0);}
.m95_c00151{transform:matrix(0.164903,-0.001979,0.003000,0.249982,0,0);-ms-transform:matrix(0.164903,-0.001979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164903,-0.001979,0.003000,0.249982,0,0);}
.ma4_c00151{transform:matrix(0.165778,-0.001989,0.003000,0.249982,0,0);-ms-transform:matrix(0.165778,-0.001989,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165778,-0.001989,0.003000,0.249982,0,0);}
.m64_c00151{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mb9_c00151{transform:matrix(0.167453,-0.002009,0.003000,0.249982,0,0);-ms-transform:matrix(0.167453,-0.002009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167453,-0.002009,0.003000,0.249982,0,0);}
.mcc_c00151{transform:matrix(0.168463,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168463,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168463,-0.002022,0.003000,0.249982,0,0);}
.m73_c00151{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);-ms-transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169001,-0.002197,0.003250,0.249979,0,0);}
.m28_c00151{transform:matrix(0.169081,-0.002198,0.003250,0.249979,0,0);-ms-transform:matrix(0.169081,-0.002198,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169081,-0.002198,0.003250,0.249979,0,0);}
.m17_c00151{transform:matrix(0.170191,-0.002212,0.003250,0.249979,0,0);-ms-transform:matrix(0.170191,-0.002212,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170191,-0.002212,0.003250,0.249979,0,0);}
.ma2_c00151{transform:matrix(0.170973,-0.002052,0.003000,0.249982,0,0);-ms-transform:matrix(0.170973,-0.002052,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170973,-0.002052,0.003000,0.249982,0,0);}
.m8f_c00151{transform:matrix(0.171203,-0.002054,0.003000,0.249982,0,0);-ms-transform:matrix(0.171203,-0.002054,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171203,-0.002054,0.003000,0.249982,0,0);}
.m45_c00151{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.171556,-0.002230,0.003250,0.249979,0,0);-ms-transform:matrix(0.171556,-0.002230,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171556,-0.002230,0.003250,0.249979,0,0);}
.me3_c00151{transform:matrix(0.172248,-0.002067,0.003000,0.249982,0,0);-ms-transform:matrix(0.172248,-0.002067,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172248,-0.002067,0.003000,0.249982,0,0);}
.m54_c00151{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);}
.mca_c00151{transform:matrix(0.173603,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173603,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173603,-0.002083,0.003000,0.249982,0,0);}
.ma1_c00151{transform:matrix(0.174902,-0.002099,0.003000,0.249982,0,0);-ms-transform:matrix(0.174902,-0.002099,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174902,-0.002099,0.003000,0.249982,0,0);}
.m7b_c00151{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.maa_c00151{transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);}
.m31_c00151{transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);}
.mce_c00151{transform:matrix(0.177922,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177922,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177922,-0.002135,0.003000,0.249982,0,0);}
.m97_c00151{transform:matrix(0.177932,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177932,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177932,-0.002135,0.003000,0.249982,0,0);}
.m5c_c00151{transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);}
.mdc_c00151{transform:matrix(0.178882,-0.002147,0.003000,0.249982,0,0);-ms-transform:matrix(0.178882,-0.002147,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178882,-0.002147,0.003000,0.249982,0,0);}
.mc4_c00151{transform:matrix(0.179027,-0.002148,0.003000,0.249982,0,0);-ms-transform:matrix(0.179027,-0.002148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179027,-0.002148,0.003000,0.249982,0,0);}
.ma_c00151{transform:matrix(0.179650,-0.002335,0.003250,0.249979,0,0);-ms-transform:matrix(0.179650,-0.002335,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179650,-0.002335,0.003250,0.249979,0,0);}
.mc1_c00151{transform:matrix(0.180032,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.180032,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180032,-0.002160,0.003000,0.249982,0,0);}
.m32_c00151{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.180477,-0.002166,0.003000,0.249982,0,0);-ms-transform:matrix(0.180477,-0.002166,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180477,-0.002166,0.003000,0.249982,0,0);}
.m4c_c00151{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.180975,-0.002353,0.003250,0.249979,0,0);-ms-transform:matrix(0.180975,-0.002353,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180975,-0.002353,0.003250,0.249979,0,0);}
.m1a_c00151{transform:matrix(0.181350,-0.002358,0.003250,0.249979,0,0);-ms-transform:matrix(0.181350,-0.002358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181350,-0.002358,0.003250,0.249979,0,0);}
.m26_c00151{transform:matrix(0.181745,-0.002363,0.003250,0.249979,0,0);-ms-transform:matrix(0.181745,-0.002363,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181745,-0.002363,0.003250,0.249979,0,0);}
.m30_c00151{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.182225,-0.002369,0.003250,0.249979,0,0);-ms-transform:matrix(0.182225,-0.002369,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182225,-0.002369,0.003250,0.249979,0,0);}
.m12_c00151{transform:matrix(0.182245,-0.002369,0.003250,0.249979,0,0);-ms-transform:matrix(0.182245,-0.002369,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182245,-0.002369,0.003250,0.249979,0,0);}
.m8_c00151{transform:matrix(0.182520,-0.002373,0.003250,0.249979,0,0);-ms-transform:matrix(0.182520,-0.002373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182520,-0.002373,0.003250,0.249979,0,0);}
.mb_c00151{transform:matrix(0.182575,-0.002373,0.003250,0.249979,0,0);-ms-transform:matrix(0.182575,-0.002373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182575,-0.002373,0.003250,0.249979,0,0);}
.m69_c00151{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.182977,-0.002196,0.003000,0.249982,0,0);-ms-transform:matrix(0.182977,-0.002196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182977,-0.002196,0.003000,0.249982,0,0);}
.m35_c00151{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.183340,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183340,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183340,-0.002383,0.003250,0.249979,0,0);}
.m6a_c00151{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.184799,-0.002402,0.003250,0.249979,0,0);-ms-transform:matrix(0.184799,-0.002402,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184799,-0.002402,0.003250,0.249979,0,0);}
.mc2_c00151{transform:matrix(0.184952,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184952,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184952,-0.002219,0.003000,0.249982,0,0);}
.mb6_c00151{transform:matrix(0.185162,-0.002222,0.003000,0.249982,0,0);-ms-transform:matrix(0.185162,-0.002222,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185162,-0.002222,0.003000,0.249982,0,0);}
.m50_c00151{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);}
.m40_c00151{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.186872,-0.002242,0.003000,0.249982,0,0);-ms-transform:matrix(0.186872,-0.002242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186872,-0.002242,0.003000,0.249982,0,0);}
.m93_c00151{transform:matrix(0.186937,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186937,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186937,-0.002243,0.003000,0.249982,0,0);}
.md7_c00151{transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);}
.m9c_c00151{transform:matrix(0.187072,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187072,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187072,-0.002245,0.003000,0.249982,0,0);}
.m1_c00151{transform:matrix(0.187249,-0.002434,0.003250,0.249979,0,0);-ms-transform:matrix(0.187249,-0.002434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187249,-0.002434,0.003250,0.249979,0,0);}
.m2e_c00151{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.187876,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187876,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187876,-0.002255,0.003000,0.249982,0,0);}
.m1c_c00151{transform:matrix(0.188154,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188154,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188154,-0.002446,0.003250,0.249979,0,0);}
.mdb_c00151{transform:matrix(0.188191,-0.002258,0.003000,0.249982,0,0);-ms-transform:matrix(0.188191,-0.002258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188191,-0.002258,0.003000,0.249982,0,0);}
.m94_c00151{transform:matrix(0.188211,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188211,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188211,-0.002259,0.003000,0.249982,0,0);}
.md5_c00151{transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);}
.m25_c00151{transform:matrix(0.188839,-0.002455,0.003250,0.249979,0,0);-ms-transform:matrix(0.188839,-0.002455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188839,-0.002455,0.003250,0.249979,0,0);}
.me2_c00151{transform:matrix(0.189946,-0.002279,0.003000,0.249982,0,0);-ms-transform:matrix(0.189946,-0.002279,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189946,-0.002279,0.003000,0.249982,0,0);}
.m6c_c00151{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.me5_c00151{transform:matrix(0.190771,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190771,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190771,-0.002289,0.003000,0.249982,0,0);}
.mcb_c00151{transform:matrix(0.191491,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191491,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191491,-0.002298,0.003000,0.249982,0,0);}
.m72_c00151{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);}
.m6d_c00151{transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m66_c00151{transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);}
.md9_c00151{transform:matrix(0.193231,-0.002319,0.003000,0.249982,0,0);-ms-transform:matrix(0.193231,-0.002319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193231,-0.002319,0.003000,0.249982,0,0);}
.mb4_c00151{transform:matrix(0.193536,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193536,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193536,-0.002322,0.003000,0.249982,0,0);}
.m55_c00151{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.194774,-0.002532,0.003250,0.249979,0,0);-ms-transform:matrix(0.194774,-0.002532,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194774,-0.002532,0.003250,0.249979,0,0);}
.m0_c00151{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195745,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.196688,-0.002557,0.003250,0.249979,0,0);-ms-transform:matrix(0.196688,-0.002557,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196688,-0.002557,0.003250,0.249979,0,0);}
.m65_c00151{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);}
.m2d_c00151{transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.198253,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198253,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198253,-0.002577,0.003250,0.249979,0,0);}
.mb3_c00151{transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);-ms-transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198636,-0.002384,0.003000,0.249982,0,0);}
.mbf_c00151{transform:matrix(0.198956,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198956,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198956,-0.002387,0.003000,0.249982,0,0);}
.mb0_c00151{transform:matrix(0.199111,-0.002389,0.003000,0.249982,0,0);-ms-transform:matrix(0.199111,-0.002389,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199111,-0.002389,0.003000,0.249982,0,0);}
.m3a_c00151{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.me4_c00151{transform:matrix(0.199601,-0.002395,0.003000,0.249982,0,0);-ms-transform:matrix(0.199601,-0.002395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199601,-0.002395,0.003000,0.249982,0,0);}
.m87_c00151{transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200611,-0.002407,0.003000,0.249982,0,0);}
.mbc_c00151{transform:matrix(0.201191,-0.002414,0.003000,0.249982,0,0);-ms-transform:matrix(0.201191,-0.002414,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201191,-0.002414,0.003000,0.249982,0,0);}
.mc6_c00151{transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);-ms-transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);}
.mc8_c00151{transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);-ms-transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201980,-0.002424,0.003000,0.249982,0,0);}
.m92_c00151{transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202170,-0.002426,0.003000,0.249982,0,0);}
.mcf_c00151{transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202190,-0.002426,0.003000,0.249982,0,0);}
.mcd_c00151{transform:matrix(0.202280,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202280,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202280,-0.002427,0.003000,0.249982,0,0);}
.mdf_c00151{transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);}
.me0_c00151{transform:matrix(0.202715,-0.002433,0.003000,0.249982,0,0);-ms-transform:matrix(0.202715,-0.002433,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202715,-0.002433,0.003000,0.249982,0,0);}
.m5e_c00151{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.203183,-0.002641,0.003250,0.249979,0,0);-ms-transform:matrix(0.203183,-0.002641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203183,-0.002641,0.003250,0.249979,0,0);}
.m8c_c00151{transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);-ms-transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);}
.m2f_c00151{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00151{transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-ms-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);}
.m5d_c00151{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.204318,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204318,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204318,-0.002656,0.003250,0.249979,0,0);}
.m2_c00151{transform:matrix(0.204378,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204378,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204378,-0.002657,0.003250,0.249979,0,0);}
.mf_c00151{transform:matrix(0.204808,-0.002663,0.003250,0.249979,0,0);-ms-transform:matrix(0.204808,-0.002663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204808,-0.002663,0.003250,0.249979,0,0);}
.mb2_c00151{transform:matrix(0.205040,-0.002460,0.003000,0.249982,0,0);-ms-transform:matrix(0.205040,-0.002460,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205040,-0.002460,0.003000,0.249982,0,0);}
.m84_c00151{transform:matrix(0.205545,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205545,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205545,-0.002467,0.003000,0.249982,0,0);}
.ma8_c00151{transform:matrix(0.205860,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205860,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205860,-0.002470,0.003000,0.249982,0,0);}
.ma5_c00151{transform:matrix(0.206095,-0.002473,0.003000,0.249982,0,0);-ms-transform:matrix(0.206095,-0.002473,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206095,-0.002473,0.003000,0.249982,0,0);}
.m79_c00151{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.206410,-0.002477,0.003000,0.249982,0,0);-ms-transform:matrix(0.206410,-0.002477,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206410,-0.002477,0.003000,0.249982,0,0);}
.m39_c00151{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.mae_c00151{transform:matrix(0.206910,-0.002483,0.003000,0.249982,0,0);-ms-transform:matrix(0.206910,-0.002483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206910,-0.002483,0.003000,0.249982,0,0);}
.md0_c00151{transform:matrix(0.206975,-0.002484,0.003000,0.249982,0,0);-ms-transform:matrix(0.206975,-0.002484,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206975,-0.002484,0.003000,0.249982,0,0);}
.m58_c00151{transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.207450,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207450,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207450,-0.002489,0.003000,0.249982,0,0);}
.m34_c00151{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.ma6_c00151{transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207585,-0.002491,0.003000,0.249982,0,0);}
.m49_c00151{transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.207947,-0.002703,0.003250,0.249979,0,0);-ms-transform:matrix(0.207947,-0.002703,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207947,-0.002703,0.003250,0.249979,0,0);}
.m83_c00151{transform:matrix(0.208475,-0.002502,0.003000,0.249982,0,0);-ms-transform:matrix(0.208475,-0.002502,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208475,-0.002502,0.003000,0.249982,0,0);}
.maf_c00151{transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208695,-0.002504,0.003000,0.249982,0,0);}
.m48_c00151{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{transform:matrix(0.208895,-0.002507,0.003000,0.249982,0,0);-ms-transform:matrix(0.208895,-0.002507,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208895,-0.002507,0.003000,0.249982,0,0);}
.mc5_c00151{transform:matrix(0.209055,-0.002509,0.003000,0.249982,0,0);-ms-transform:matrix(0.209055,-0.002509,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209055,-0.002509,0.003000,0.249982,0,0);}
.m4f_c00151{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.md6_c00151{transform:matrix(0.210790,-0.002529,0.003000,0.249982,0,0);-ms-transform:matrix(0.210790,-0.002529,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210790,-0.002529,0.003000,0.249982,0,0);}
.m68_c00151{transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.210915,-0.002531,0.003000,0.249982,0,0);-ms-transform:matrix(0.210915,-0.002531,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210915,-0.002531,0.003000,0.249982,0,0);}
.m4a_c00151{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.211177,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211177,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211177,-0.002745,0.003250,0.249979,0,0);}
.mb5_c00151{transform:matrix(0.211570,-0.002539,0.003000,0.249982,0,0);-ms-transform:matrix(0.211570,-0.002539,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211570,-0.002539,0.003000,0.249982,0,0);}
.mab_c00151{transform:matrix(0.211580,-0.002539,0.003000,0.249982,0,0);-ms-transform:matrix(0.211580,-0.002539,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211580,-0.002539,0.003000,0.249982,0,0);}
.m46_c00151{transform:matrix(0.211890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211890,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.md1_c00151{transform:matrix(0.213835,-0.002566,0.003000,0.249982,0,0);-ms-transform:matrix(0.213835,-0.002566,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213835,-0.002566,0.003000,0.249982,0,0);}
.m33_c00151{transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214695,0.000000,0.000000,0.250000,0,0);}
.me1_c00151{transform:matrix(0.214720,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214720,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214720,-0.002577,0.003000,0.249982,0,0);}
.md3_c00151{transform:matrix(0.214905,-0.002579,0.003000,0.249982,0,0);-ms-transform:matrix(0.214905,-0.002579,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214905,-0.002579,0.003000,0.249982,0,0);}
.md4_c00151{transform:matrix(0.215135,-0.002582,0.003000,0.249982,0,0);-ms-transform:matrix(0.215135,-0.002582,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215135,-0.002582,0.003000,0.249982,0,0);}
.mc9_c00151{transform:matrix(0.215175,-0.002582,0.003000,0.249982,0,0);-ms-transform:matrix(0.215175,-0.002582,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215175,-0.002582,0.003000,0.249982,0,0);}
.m3c_c00151{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.215737,-0.002805,0.003250,0.249979,0,0);-ms-transform:matrix(0.215737,-0.002805,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215737,-0.002805,0.003250,0.249979,0,0);}
.m80_c00151{transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.216299,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216299,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216299,-0.002596,0.003000,0.249982,0,0);}
.m4b_c00151{transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.217232,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217232,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217232,-0.002824,0.003250,0.249979,0,0);}
.m9f_c00151{transform:matrix(0.217469,-0.002610,0.003000,0.249982,0,0);-ms-transform:matrix(0.217469,-0.002610,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217469,-0.002610,0.003000,0.249982,0,0);}
.md8_c00151{transform:matrix(0.218024,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.218024,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218024,-0.002616,0.003000,0.249982,0,0);}
.m7a_c00151{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m5b_c00151{transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.219786,-0.002857,0.003250,0.249979,0,0);-ms-transform:matrix(0.219786,-0.002857,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219786,-0.002857,0.003250,0.249979,0,0);}
.me6_c00151{transform:matrix(0.220284,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220284,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220284,-0.002643,0.003000,0.249982,0,0);}
.m81_c00151{transform:matrix(0.222104,-0.002665,0.003000,0.249982,0,0);-ms-transform:matrix(0.222104,-0.002665,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222104,-0.002665,0.003000,0.249982,0,0);}
.m36_c00151{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mbd_c00151{transform:matrix(0.223179,-0.002678,0.003000,0.249982,0,0);-ms-transform:matrix(0.223179,-0.002678,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223179,-0.002678,0.003000,0.249982,0,0);}
.m8a_c00151{transform:matrix(0.223439,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223439,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223439,-0.002681,0.003000,0.249982,0,0);}
.m5f_c00151{transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);}
.mdd_c00151{transform:matrix(0.224429,-0.002693,0.003000,0.249982,0,0);-ms-transform:matrix(0.224429,-0.002693,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224429,-0.002693,0.003000,0.249982,0,0);}
.m53_c00151{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.225984,-0.002712,0.003000,0.249982,0,0);-ms-transform:matrix(0.225984,-0.002712,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225984,-0.002712,0.003000,0.249982,0,0);}
.md2_c00151{transform:matrix(0.226089,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226089,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226089,-0.002713,0.003000,0.249982,0,0);}
.m85_c00151{transform:matrix(0.227129,-0.002726,0.003000,0.249982,0,0);-ms-transform:matrix(0.227129,-0.002726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227129,-0.002726,0.003000,0.249982,0,0);}
.mda_c00151{transform:matrix(0.227169,-0.002726,0.003000,0.249982,0,0);-ms-transform:matrix(0.227169,-0.002726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227169,-0.002726,0.003000,0.249982,0,0);}
.m82_c00151{transform:matrix(0.228619,-0.002743,0.003000,0.249982,0,0);-ms-transform:matrix(0.228619,-0.002743,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228619,-0.002743,0.003000,0.249982,0,0);}
.m86_c00151{transform:matrix(0.228644,-0.002744,0.003000,0.249982,0,0);-ms-transform:matrix(0.228644,-0.002744,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228644,-0.002744,0.003000,0.249982,0,0);}
.m8e_c00151{transform:matrix(0.230398,-0.002765,0.003000,0.249982,0,0);-ms-transform:matrix(0.230398,-0.002765,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230398,-0.002765,0.003000,0.249982,0,0);}
.m29_c00151{transform:matrix(0.230825,-0.003001,0.003250,0.249979,0,0);-ms-transform:matrix(0.230825,-0.003001,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230825,-0.003001,0.003250,0.249979,0,0);}
.m75_c00151{transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);}
.m44_c00151{transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234630,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.235583,-0.002827,0.003000,0.249982,0,0);-ms-transform:matrix(0.235583,-0.002827,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235583,-0.002827,0.003000,0.249982,0,0);}
.mbe_c00151{transform:matrix(0.235878,-0.002831,0.003000,0.249982,0,0);-ms-transform:matrix(0.235878,-0.002831,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235878,-0.002831,0.003000,0.249982,0,0);}
.mc3_c00151{transform:matrix(0.237358,-0.002848,0.003000,0.249982,0,0);-ms-transform:matrix(0.237358,-0.002848,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237358,-0.002848,0.003000,0.249982,0,0);}
.m38_c00151{transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);}
.m51_c00151{transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);}
.mc0_c00151{transform:matrix(0.254652,-0.003056,0.003000,0.249982,0,0);-ms-transform:matrix(0.254652,-0.003056,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254652,-0.003056,0.003000,0.249982,0,0);}
.m24_c00151{transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);-ms-transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);}
.m89_c00151{transform:matrix(0.265431,-0.003185,0.003000,0.249982,0,0);-ms-transform:matrix(0.265431,-0.003185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265431,-0.003185,0.003000,0.249982,0,0);}
.m23_c00151{transform:matrix(0.330357,-0.004295,0.003250,0.249979,0,0);-ms-transform:matrix(0.330357,-0.004295,0.003250,0.249979,0,0);-webkit-transform:matrix(0.330357,-0.004295,0.003250,0.249979,0,0);}
.m4_c00151{transform:matrix(0.374798,-0.004872,0.003250,0.249979,0,0);-ms-transform:matrix(0.374798,-0.004872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.374798,-0.004872,0.003250,0.249979,0,0);}
.mbb_c00151{transform:matrix(0.395747,-0.004749,0.003000,0.249982,0,0);-ms-transform:matrix(0.395747,-0.004749,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395747,-0.004749,0.003000,0.249982,0,0);}
.mb1_c00151{transform:matrix(0.399121,-0.004789,0.003000,0.249982,0,0);-ms-transform:matrix(0.399121,-0.004789,0.003000,0.249982,0,0);-webkit-transform:matrix(0.399121,-0.004789,0.003000,0.249982,0,0);}
.m2c_c00151{transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:0.000000px;}
.fc0_c00151{color:transparent;}
.fs14_c00151{font-size:53.553855px;}
.fs9_c00151{font-size:58.800000px;}
.fs8_c00151{font-size:59.850000px;}
.fse_c00151{font-size:59.854309px;}
.fs6_c00151{font-size:60.900000px;}
.fsf_c00151{font-size:60.904385px;}
.fsb_c00151{font-size:61.950000px;}
.fs12_c00151{font-size:61.954460px;}
.fs1_c00151{font-size:61.955235px;}
.fsd_c00151{font-size:63.000000px;}
.fs11_c00151{font-size:63.004536px;}
.fsa_c00151{font-size:64.050000px;}
.fs16_c00151{font-size:64.054611px;}
.fs15_c00151{font-size:65.104687px;}
.fs0_c00151{font-size:66.150000px;}
.fs2_c00151{font-size:66.155589px;}
.fs13_c00151{font-size:67.204838px;}
.fs5_c00151{font-size:67.205678px;}
.fs10_c00151{font-size:68.254914px;}
.fs3_c00151{font-size:68.255767px;}
.fs7_c00151{font-size:69.300000px;}
.fs4_c00151{font-size:71.406033px;}
.fsc_c00151{font-size:72.450000px;}
.y0_c00151{bottom:0.000000px;}
.y9d_c00151{bottom:33.280530px;}
.y9c_c00151{bottom:33.281124px;}
.y9b_c00151{bottom:33.281178px;}
.y9a_c00151{bottom:33.281634px;}
.y99_c00151{bottom:33.281988px;}
.y97_c00151{bottom:33.282102px;}
.y98_c00151{bottom:33.282684px;}
.y96_c00151{bottom:51.894948px;}
.y95_c00151{bottom:51.895146px;}
.y92_c00151{bottom:51.895176px;}
.y93_c00151{bottom:51.895200px;}
.y94_c00151{bottom:51.895422px;}
.y91_c00151{bottom:51.895632px;}
.y90_c00151{bottom:51.896286px;}
.y86_c00151{bottom:66.411654px;}
.y87_c00151{bottom:66.639834px;}
.y88_c00151{bottom:67.159026px;}
.y89_c00151{bottom:67.698864px;}
.y8a_c00151{bottom:67.825644px;}
.y8b_c00151{bottom:68.182122px;}
.y8c_c00151{bottom:68.478432px;}
.y8d_c00151{bottom:68.697912px;}
.y8e_c00151{bottom:68.908074px;}
.y8f_c00151{bottom:69.153882px;}
.y85_c00151{bottom:83.131014px;}
.y7e_c00151{bottom:83.131284px;}
.y82_c00151{bottom:83.131620px;}
.y84_c00151{bottom:83.131650px;}
.y7f_c00151{bottom:83.131686px;}
.y81_c00151{bottom:83.131716px;}
.y80_c00151{bottom:83.131932px;}
.y83_c00151{bottom:83.132166px;}
.y79_c00151{bottom:100.260096px;}
.y7c_c00151{bottom:100.260252px;}
.y78_c00151{bottom:100.260492px;}
.y7d_c00151{bottom:100.260558px;}
.y7b_c00151{bottom:100.260690px;}
.y7a_c00151{bottom:100.260762px;}
.y72_c00151{bottom:117.869712px;}
.y75_c00151{bottom:117.870012px;}
.y73_c00151{bottom:117.870420px;}
.y74_c00151{bottom:117.870462px;}
.y77_c00151{bottom:117.870516px;}
.y76_c00151{bottom:117.870654px;}
.y6c_c00151{bottom:136.969704px;}
.y6d_c00151{bottom:136.970310px;}
.y6f_c00151{bottom:136.970358px;}
.y6e_c00151{bottom:136.970616px;}
.y70_c00151{bottom:136.970862px;}
.y71_c00151{bottom:136.971294px;}
.y64_c00151{bottom:154.706532px;}
.y65_c00151{bottom:154.934490px;}
.y66_c00151{bottom:155.249916px;}
.y67_c00151{bottom:155.858040px;}
.y68_c00151{bottom:156.465318px;}
.y69_c00151{bottom:156.804726px;}
.y6a_c00151{bottom:157.630464px;}
.y6b_c00151{bottom:157.855470px;}
.y63_c00151{bottom:171.239124px;}
.y62_c00151{bottom:171.239580px;}
.y5d_c00151{bottom:171.239604px;}
.y61_c00151{bottom:171.239718px;}
.y5c_c00151{bottom:171.239940px;}
.y60_c00151{bottom:171.240216px;}
.y5e_c00151{bottom:171.240246px;}
.y5f_c00151{bottom:171.240348px;}
.y55_c00151{bottom:188.661702px;}
.y59_c00151{bottom:188.661936px;}
.y5b_c00151{bottom:188.661948px;}
.y58_c00151{bottom:188.662014px;}
.y56_c00151{bottom:188.662086px;}
.y57_c00151{bottom:188.662092px;}
.y5a_c00151{bottom:188.662662px;}
.y4f_c00151{bottom:207.142656px;}
.y50_c00151{bottom:207.143064px;}
.y53_c00151{bottom:207.143112px;}
.y4d_c00151{bottom:207.143124px;}
.y52_c00151{bottom:207.143328px;}
.y54_c00151{bottom:207.143334px;}
.y4e_c00151{bottom:207.143352px;}
.y51_c00151{bottom:207.143466px;}
.y49_c00151{bottom:225.297186px;}
.y48_c00151{bottom:225.297300px;}
.y47_c00151{bottom:225.297474px;}
.y4a_c00151{bottom:225.297828px;}
.y4b_c00151{bottom:225.297930px;}
.y4c_c00151{bottom:225.298296px;}
.y3f_c00151{bottom:239.348568px;}
.y46_c00151{bottom:239.348934px;}
.y45_c00151{bottom:239.348952px;}
.y40_c00151{bottom:239.349252px;}
.y41_c00151{bottom:239.349474px;}
.y44_c00151{bottom:239.349486px;}
.y42_c00151{bottom:239.349720px;}
.y43_c00151{bottom:239.349984px;}
.y38_c00151{bottom:256.231500px;}
.y39_c00151{bottom:256.562466px;}
.y3a_c00151{bottom:257.362422px;}
.y3b_c00151{bottom:258.233136px;}
.y3c_c00151{bottom:258.806724px;}
.y3d_c00151{bottom:259.277190px;}
.y3e_c00151{bottom:259.727874px;}
.y37_c00151{bottom:277.213500px;}
.y36_c00151{bottom:294.085500px;}
.y35_c00151{bottom:310.834500px;}
.y34_c00151{bottom:329.043000px;}
.y33_c00151{bottom:346.020000px;}
.y32_c00151{bottom:363.960000px;}
.y31_c00151{bottom:380.700000px;}
.y30_c00151{bottom:398.670000px;}
.y2f_c00151{bottom:416.158500px;}
.y2e_c00151{bottom:433.080000px;}
.y2d_c00151{bottom:450.024000px;}
.y2b_c00151{bottom:468.046621px;}
.y2c_c00151{bottom:468.047077px;}
.y25_c00151{bottom:484.728480px;}
.y2a_c00151{bottom:484.728667px;}
.y26_c00151{bottom:484.728760px;}
.y27_c00151{bottom:484.729072px;}
.y24_c00151{bottom:484.729149px;}
.y29_c00151{bottom:484.729236px;}
.y28_c00151{bottom:484.729753px;}
.y1e_c00151{bottom:499.493890px;}
.y1f_c00151{bottom:499.974885px;}
.y20_c00151{bottom:500.309215px;}
.y21_c00151{bottom:500.719911px;}
.y22_c00151{bottom:501.558897px;}
.y23_c00151{bottom:501.864768px;}
.y16_c00151{bottom:516.235959px;}
.y17_c00151{bottom:516.881097px;}
.y18_c00151{bottom:517.127596px;}
.y19_c00151{bottom:517.359237px;}
.y1a_c00151{bottom:517.681357px;}
.y1b_c00151{bottom:518.296017px;}
.y1c_c00151{bottom:518.566306px;}
.y1d_c00151{bottom:518.914089px;}
.y10_c00151{bottom:532.707501px;}
.y11_c00151{bottom:533.389559px;}
.y12_c00151{bottom:534.466419px;}
.y13_c00151{bottom:535.460982px;}
.y14_c00151{bottom:535.883919px;}
.y15_c00151{bottom:536.661573px;}
.y8_c00151{bottom:550.529623px;}
.y9_c00151{bottom:551.092470px;}
.ya_c00151{bottom:551.483007px;}
.yb_c00151{bottom:551.717653px;}
.yc_c00151{bottom:552.525520px;}
.yd_c00151{bottom:553.405531px;}
.ye_c00151{bottom:553.639768px;}
.yf_c00151{bottom:554.067295px;}
.y2_c00151{bottom:568.081500px;}
.y3_c00151{bottom:568.780029px;}
.y4_c00151{bottom:569.703256px;}
.y5_c00151{bottom:570.000807px;}
.y6_c00151{bottom:570.349213px;}
.y7_c00151{bottom:571.328601px;}
.y1_c00151{bottom:584.011500px;}
.h16_c00151{height:53.553855px;}
.hb_c00151{height:58.800000px;}
.ha_c00151{height:59.850000px;}
.h10_c00151{height:59.854309px;}
.h8_c00151{height:60.900000px;}
.h11_c00151{height:60.904385px;}
.hd_c00151{height:61.950000px;}
.h14_c00151{height:61.954460px;}
.h3_c00151{height:61.955235px;}
.hf_c00151{height:63.000000px;}
.h13_c00151{height:63.004536px;}
.hc_c00151{height:64.050000px;}
.h18_c00151{height:64.054611px;}
.h17_c00151{height:65.104687px;}
.h2_c00151{height:66.150000px;}
.h4_c00151{height:66.155589px;}
.h15_c00151{height:67.204838px;}
.h7_c00151{height:67.205678px;}
.h12_c00151{height:68.254914px;}
.h5_c00151{height:68.255767px;}
.h9_c00151{height:69.300000px;}
.h6_c00151{height:71.406033px;}
.he_c00151{height:72.450000px;}
.h0_c00151{height:623.100000px;}
.h1_c00151{height:623.250000px;}
.w1_c00151{width:383.250000px;}
.w0_c00151{width:383.400000px;}
.x0_c00151{left:0.000000px;}
.x23_c00151{left:45.622746px;}
.x60_c00151{left:48.600870px;}
.x2_c00151{left:51.468000px;}
.x4b_c00151{left:52.650000px;}
.x25_c00151{left:54.540000px;}
.x2f_c00151{left:68.580000px;}
.x46_c00151{left:73.980000px;}
.x67_c00151{left:75.874260px;}
.x42_c00151{left:77.760000px;}
.x4e_c00151{left:80.109000px;}
.x36_c00151{left:82.080000px;}
.x30_c00151{left:85.590000px;}
.x1e_c00151{left:88.017582px;}
.x8_c00151{left:91.385565px;}
.x3b_c00151{left:93.960000px;}
.xf_c00151{left:96.931101px;}
.x19_c00151{left:99.506353px;}
.x14_c00151{left:101.110881px;}
.x5e_c00151{left:102.740334px;}
.x3_c00151{left:105.201000px;}
.x1f_c00151{left:109.619728px;}
.x61_c00151{left:111.785460px;}
.x3c_c00151{left:114.210000px;}
.x47_c00151{left:117.180000px;}
.x9_c00151{left:119.234195px;}
.x2b_c00151{left:122.310000px;}
.x53_c00151{left:123.934938px;}
.x26_c00151{left:127.710000px;}
.x1a_c00151{left:132.956160px;}
.x31_c00151{left:134.460000px;}
.xa_c00151{left:136.014480px;}
.x15_c00151{left:137.890881px;}
.x56_c00151{left:139.325970px;}
.x5d_c00151{left:141.215016px;}
.x48_c00151{left:146.880000px;}
.x63_c00151{left:148.237374px;}
.x43_c00151{left:149.310000px;}
.x3f_c00151{left:150.660000px;}
.x6e_c00151{left:154.717896px;}
.x32_c00151{left:159.030000px;}
.x68_c00151{left:160.388928px;}
.x16_c00151{left:162.669381px;}
.x65_c00151{left:164.979570px;}
.x10_c00151{left:168.687729px;}
.x37_c00151{left:170.370000px;}
.x27_c00151{left:171.990000px;}
.x1b_c00151{left:174.011259px;}
.x4_c00151{left:176.218500px;}
.x72_c00151{left:177.941070px;}
.x54_c00151{left:179.558448px;}
.x3d_c00151{left:182.250000px;}
.x1_c00151{left:183.330000px;}
.x41_c00151{left:185.760000px;}
.x4c_c00151{left:189.270000px;}
.xb_c00151{left:193.772739px;}
.x55_c00151{left:195.489234px;}
.x5_c00151{left:199.107000px;}
.x49_c00151{left:200.610000px;}
.x5a_c00151{left:203.320428px;}
.x3e_c00151{left:205.740000px;}
.x20_c00151{left:207.097186px;}
.x17_c00151{left:209.950881px;}
.x33_c00151{left:211.680000px;}
.x5f_c00151{left:213.275166px;}
.x4f_c00151{left:219.331500px;}
.x73_c00151{left:223.034568px;}
.x6_c00151{left:225.907500px;}
.x6f_c00151{left:227.623890px;}
.x34_c00151{left:228.960000px;}
.x18_c00151{left:230.742381px;}
.x51_c00151{left:232.213920px;}
.x11_c00151{left:235.037013px;}
.x28_c00151{left:238.410000px;}
.x2c_c00151{left:241.920000px;}
.x45_c00151{left:243.270000px;}
.x57_c00151{left:245.442252px;}
.x38_c00151{left:250.290000px;}
.x52_c00151{left:251.925264px;}
.x69_c00151{left:253.814874px;}
.xc_c00151{left:256.618920px;}
.x1c_c00151{left:257.936535px;}
.x6b_c00151{left:260.347134px;}
.x2d_c00151{left:261.900000px;}
.x12_c00151{left:263.185272px;}
.x24_c00151{left:266.772108px;}
.x4d_c00151{left:268.380000px;}
.x35_c00151{left:270.000000px;}
.x5b_c00151{left:271.634256px;}
.xd_c00151{left:273.367705px;}
.x70_c00151{left:274.607658px;}
.x64_c00151{left:277.847040px;}
.x6c_c00151{left:282.262656px;}
.x39_c00151{left:284.040000px;}
.x44_c00151{left:285.660000px;}
.x6a_c00151{left:287.026662px;}
.x1d_c00151{left:288.504724px;}
.x21_c00151{left:290.263746px;}
.x58_c00151{left:291.345858px;}
.x71_c00151{left:292.968804px;}
.x29_c00151{left:297.000000px;}
.x7_c00151{left:301.245000px;}
.xe_c00151{left:303.946315px;}
.x50_c00151{left:306.336000px;}
.x13_c00151{left:315.041926px;}
.x2a_c00151{left:319.410000px;}
.x59_c00151{left:323.207448px;}
.x6d_c00151{left:327.886254px;}
.x2e_c00151{left:330.750000px;}
.x40_c00151{left:331.830000px;}
.x5c_c00151{left:336.709134px;}
.x3a_c00151{left:338.580000px;}
.x4a_c00151{left:339.660000px;}
.x66_c00151{left:342.113076px;}
.x22_c00151{left:343.998333px;}
.x74_c00151{left:345.623226px;}
.x62_c00151{left:349.401660px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.fs14_c00151{font-size:47.603427pt;}
.fs9_c00151{font-size:52.266667pt;}
.fs8_c00151{font-size:53.200000pt;}
.fse_c00151{font-size:53.203830pt;}
.fs6_c00151{font-size:54.133333pt;}
.fsf_c00151{font-size:54.137231pt;}
.fsb_c00151{font-size:55.066667pt;}
.fs12_c00151{font-size:55.070631pt;}
.fs1_c00151{font-size:55.071320pt;}
.fsd_c00151{font-size:56.000000pt;}
.fs11_c00151{font-size:56.004032pt;}
.fsa_c00151{font-size:56.933333pt;}
.fs16_c00151{font-size:56.937432pt;}
.fs15_c00151{font-size:57.870833pt;}
.fs0_c00151{font-size:58.800000pt;}
.fs2_c00151{font-size:58.804968pt;}
.fs13_c00151{font-size:59.737634pt;}
.fs5_c00151{font-size:59.738381pt;}
.fs10_c00151{font-size:60.671035pt;}
.fs3_c00151{font-size:60.671793pt;}
.fs7_c00151{font-size:61.600000pt;}
.fs4_c00151{font-size:63.472029pt;}
.fsc_c00151{font-size:64.400000pt;}
.y0_c00151{bottom:0.000000pt;}
.y9d_c00151{bottom:29.582693pt;}
.y9c_c00151{bottom:29.583221pt;}
.y9b_c00151{bottom:29.583269pt;}
.y9a_c00151{bottom:29.583675pt;}
.y99_c00151{bottom:29.583989pt;}
.y97_c00151{bottom:29.584091pt;}
.y98_c00151{bottom:29.584608pt;}
.y96_c00151{bottom:46.128843pt;}
.y95_c00151{bottom:46.129019pt;}
.y92_c00151{bottom:46.129045pt;}
.y93_c00151{bottom:46.129067pt;}
.y94_c00151{bottom:46.129264pt;}
.y91_c00151{bottom:46.129451pt;}
.y90_c00151{bottom:46.130032pt;}
.y86_c00151{bottom:59.032581pt;}
.y87_c00151{bottom:59.235408pt;}
.y88_c00151{bottom:59.696912pt;}
.y89_c00151{bottom:60.176768pt;}
.y8a_c00151{bottom:60.289461pt;}
.y8b_c00151{bottom:60.606331pt;}
.y8c_c00151{bottom:60.869717pt;}
.y8d_c00151{bottom:61.064811pt;}
.y8e_c00151{bottom:61.251621pt;}
.y8f_c00151{bottom:61.470117pt;}
.y85_c00151{bottom:73.894235pt;}
.y7e_c00151{bottom:73.894475pt;}
.y82_c00151{bottom:73.894773pt;}
.y84_c00151{bottom:73.894800pt;}
.y7f_c00151{bottom:73.894832pt;}
.y81_c00151{bottom:73.894859pt;}
.y80_c00151{bottom:73.895051pt;}
.y83_c00151{bottom:73.895259pt;}
.y79_c00151{bottom:89.120085pt;}
.y7c_c00151{bottom:89.120224pt;}
.y78_c00151{bottom:89.120437pt;}
.y7d_c00151{bottom:89.120496pt;}
.y7b_c00151{bottom:89.120613pt;}
.y7a_c00151{bottom:89.120677pt;}
.y72_c00151{bottom:104.773077pt;}
.y75_c00151{bottom:104.773344pt;}
.y73_c00151{bottom:104.773707pt;}
.y74_c00151{bottom:104.773744pt;}
.y77_c00151{bottom:104.773792pt;}
.y76_c00151{bottom:104.773915pt;}
.y6c_c00151{bottom:121.750848pt;}
.y6d_c00151{bottom:121.751387pt;}
.y6f_c00151{bottom:121.751429pt;}
.y6e_c00151{bottom:121.751659pt;}
.y70_c00151{bottom:121.751877pt;}
.y71_c00151{bottom:121.752261pt;}
.y64_c00151{bottom:137.516917pt;}
.y65_c00151{bottom:137.719547pt;}
.y66_c00151{bottom:137.999925pt;}
.y67_c00151{bottom:138.540480pt;}
.y68_c00151{bottom:139.080283pt;}
.y69_c00151{bottom:139.381979pt;}
.y6a_c00151{bottom:140.115968pt;}
.y6b_c00151{bottom:140.315973pt;}
.y63_c00151{bottom:152.212555pt;}
.y62_c00151{bottom:152.212960pt;}
.y5d_c00151{bottom:152.212981pt;}
.y61_c00151{bottom:152.213083pt;}
.y5c_c00151{bottom:152.213280pt;}
.y60_c00151{bottom:152.213525pt;}
.y5e_c00151{bottom:152.213552pt;}
.y5f_c00151{bottom:152.213643pt;}
.y55_c00151{bottom:167.699291pt;}
.y59_c00151{bottom:167.699499pt;}
.y5b_c00151{bottom:167.699509pt;}
.y58_c00151{bottom:167.699568pt;}
.y56_c00151{bottom:167.699632pt;}
.y57_c00151{bottom:167.699637pt;}
.y5a_c00151{bottom:167.700144pt;}
.y4f_c00151{bottom:184.126805pt;}
.y50_c00151{bottom:184.127168pt;}
.y53_c00151{bottom:184.127211pt;}
.y4d_c00151{bottom:184.127221pt;}
.y52_c00151{bottom:184.127403pt;}
.y54_c00151{bottom:184.127408pt;}
.y4e_c00151{bottom:184.127424pt;}
.y51_c00151{bottom:184.127525pt;}
.y49_c00151{bottom:200.264165pt;}
.y48_c00151{bottom:200.264267pt;}
.y47_c00151{bottom:200.264421pt;}
.y4a_c00151{bottom:200.264736pt;}
.y4b_c00151{bottom:200.264827pt;}
.y4c_c00151{bottom:200.265152pt;}
.y3f_c00151{bottom:212.754283pt;}
.y46_c00151{bottom:212.754608pt;}
.y45_c00151{bottom:212.754624pt;}
.y40_c00151{bottom:212.754891pt;}
.y41_c00151{bottom:212.755088pt;}
.y44_c00151{bottom:212.755099pt;}
.y42_c00151{bottom:212.755307pt;}
.y43_c00151{bottom:212.755541pt;}
.y38_c00151{bottom:227.761333pt;}
.y39_c00151{bottom:228.055525pt;}
.y3a_c00151{bottom:228.766597pt;}
.y3b_c00151{bottom:229.540565pt;}
.y3c_c00151{bottom:230.050421pt;}
.y3d_c00151{bottom:230.468613pt;}
.y3e_c00151{bottom:230.869221pt;}
.y37_c00151{bottom:246.412000pt;}
.y36_c00151{bottom:261.409333pt;}
.y35_c00151{bottom:276.297333pt;}
.y34_c00151{bottom:292.482667pt;}
.y33_c00151{bottom:307.573333pt;}
.y32_c00151{bottom:323.520000pt;}
.y31_c00151{bottom:338.400000pt;}
.y30_c00151{bottom:354.373333pt;}
.y2f_c00151{bottom:369.918667pt;}
.y2e_c00151{bottom:384.960000pt;}
.y2d_c00151{bottom:400.021333pt;}
.y2b_c00151{bottom:416.041441pt;}
.y2c_c00151{bottom:416.041847pt;}
.y25_c00151{bottom:430.869760pt;}
.y2a_c00151{bottom:430.869927pt;}
.y26_c00151{bottom:430.870009pt;}
.y27_c00151{bottom:430.870287pt;}
.y24_c00151{bottom:430.870355pt;}
.y29_c00151{bottom:430.870432pt;}
.y28_c00151{bottom:430.870892pt;}
.y1e_c00151{bottom:443.994569pt;}
.y1f_c00151{bottom:444.422120pt;}
.y20_c00151{bottom:444.719303pt;}
.y21_c00151{bottom:445.084365pt;}
.y22_c00151{bottom:445.830131pt;}
.y23_c00151{bottom:446.102016pt;}
.y16_c00151{bottom:458.876408pt;}
.y17_c00151{bottom:459.449864pt;}
.y18_c00151{bottom:459.668975pt;}
.y19_c00151{bottom:459.874877pt;}
.y1a_c00151{bottom:460.161207pt;}
.y1b_c00151{bottom:460.707571pt;}
.y1c_c00151{bottom:460.947828pt;}
.y1d_c00151{bottom:461.256968pt;}
.y10_c00151{bottom:473.517779pt;}
.y11_c00151{bottom:474.124052pt;}
.y12_c00151{bottom:475.081261pt;}
.y13_c00151{bottom:475.965317pt;}
.y14_c00151{bottom:476.341261pt;}
.y15_c00151{bottom:477.032509pt;}
.y8_c00151{bottom:489.359665pt;}
.y9_c00151{bottom:489.859973pt;}
.ya_c00151{bottom:490.207117pt;}
.yb_c00151{bottom:490.415692pt;}
.yc_c00151{bottom:491.133796pt;}
.yd_c00151{bottom:491.916028pt;}
.ye_c00151{bottom:492.124239pt;}
.yf_c00151{bottom:492.504263pt;}
.y2_c00151{bottom:504.961333pt;}
.y3_c00151{bottom:505.582248pt;}
.y4_c00151{bottom:506.402895pt;}
.y5_c00151{bottom:506.667384pt;}
.y6_c00151{bottom:506.977079pt;}
.y7_c00151{bottom:507.847645pt;}
.y1_c00151{bottom:519.121333pt;}
.h16_c00151{height:47.603427pt;}
.hb_c00151{height:52.266667pt;}
.ha_c00151{height:53.200000pt;}
.h10_c00151{height:53.203830pt;}
.h8_c00151{height:54.133333pt;}
.h11_c00151{height:54.137231pt;}
.hd_c00151{height:55.066667pt;}
.h14_c00151{height:55.070631pt;}
.h3_c00151{height:55.071320pt;}
.hf_c00151{height:56.000000pt;}
.h13_c00151{height:56.004032pt;}
.hc_c00151{height:56.933333pt;}
.h18_c00151{height:56.937432pt;}
.h17_c00151{height:57.870833pt;}
.h2_c00151{height:58.800000pt;}
.h4_c00151{height:58.804968pt;}
.h15_c00151{height:59.737634pt;}
.h7_c00151{height:59.738381pt;}
.h12_c00151{height:60.671035pt;}
.h5_c00151{height:60.671793pt;}
.h9_c00151{height:61.600000pt;}
.h6_c00151{height:63.472029pt;}
.he_c00151{height:64.400000pt;}
.h0_c00151{height:553.866667pt;}
.h1_c00151{height:554.000000pt;}
.w1_c00151{width:340.666667pt;}
.w0_c00151{width:340.800000pt;}
.x0_c00151{left:0.000000pt;}
.x23_c00151{left:40.553552pt;}
.x60_c00151{left:43.200773pt;}
.x2_c00151{left:45.749333pt;}
.x4b_c00151{left:46.800000pt;}
.x25_c00151{left:48.480000pt;}
.x2f_c00151{left:60.960000pt;}
.x46_c00151{left:65.760000pt;}
.x67_c00151{left:67.443787pt;}
.x42_c00151{left:69.120000pt;}
.x4e_c00151{left:71.208000pt;}
.x36_c00151{left:72.960000pt;}
.x30_c00151{left:76.080000pt;}
.x1e_c00151{left:78.237851pt;}
.x8_c00151{left:81.231613pt;}
.x3b_c00151{left:83.520000pt;}
.xf_c00151{left:86.160979pt;}
.x19_c00151{left:88.450092pt;}
.x14_c00151{left:89.876339pt;}
.x5e_c00151{left:91.324741pt;}
.x3_c00151{left:93.512000pt;}
.x1f_c00151{left:97.439759pt;}
.x61_c00151{left:99.364853pt;}
.x3c_c00151{left:101.520000pt;}
.x47_c00151{left:104.160000pt;}
.x9_c00151{left:105.985951pt;}
.x2b_c00151{left:108.720000pt;}
.x53_c00151{left:110.164389pt;}
.x26_c00151{left:113.520000pt;}
.x1a_c00151{left:118.183253pt;}
.x31_c00151{left:119.520000pt;}
.xa_c00151{left:120.901760pt;}
.x15_c00151{left:122.569672pt;}
.x56_c00151{left:123.845307pt;}
.x5d_c00151{left:125.524459pt;}
.x48_c00151{left:130.560000pt;}
.x63_c00151{left:131.766555pt;}
.x43_c00151{left:132.720000pt;}
.x3f_c00151{left:133.920000pt;}
.x6e_c00151{left:137.527019pt;}
.x32_c00151{left:141.360000pt;}
.x68_c00151{left:142.567936pt;}
.x16_c00151{left:144.595005pt;}
.x65_c00151{left:146.648507pt;}
.x10_c00151{left:149.944648pt;}
.x37_c00151{left:151.440000pt;}
.x27_c00151{left:152.880000pt;}
.x1b_c00151{left:154.676675pt;}
.x4_c00151{left:156.638667pt;}
.x72_c00151{left:158.169840pt;}
.x54_c00151{left:159.607509pt;}
.x3d_c00151{left:162.000000pt;}
.x1_c00151{left:162.960000pt;}
.x41_c00151{left:165.120000pt;}
.x4c_c00151{left:168.240000pt;}
.xb_c00151{left:172.242435pt;}
.x55_c00151{left:173.768208pt;}
.x5_c00151{left:176.984000pt;}
.x49_c00151{left:178.320000pt;}
.x5a_c00151{left:180.729269pt;}
.x3e_c00151{left:182.880000pt;}
.x20_c00151{left:184.086388pt;}
.x17_c00151{left:186.623005pt;}
.x33_c00151{left:188.160000pt;}
.x5f_c00151{left:189.577925pt;}
.x4f_c00151{left:194.961333pt;}
.x73_c00151{left:198.252949pt;}
.x6_c00151{left:200.806667pt;}
.x6f_c00151{left:202.332347pt;}
.x34_c00151{left:203.520000pt;}
.x18_c00151{left:205.104339pt;}
.x51_c00151{left:206.412373pt;}
.x11_c00151{left:208.921789pt;}
.x28_c00151{left:211.920000pt;}
.x2c_c00151{left:215.040000pt;}
.x45_c00151{left:216.240000pt;}
.x57_c00151{left:218.170891pt;}
.x38_c00151{left:222.480000pt;}
.x52_c00151{left:223.933568pt;}
.x69_c00151{left:225.613221pt;}
.xc_c00151{left:228.105707pt;}
.x1c_c00151{left:229.276920pt;}
.x6b_c00151{left:231.419675pt;}
.x2d_c00151{left:232.800000pt;}
.x12_c00151{left:233.942464pt;}
.x24_c00151{left:237.130763pt;}
.x4d_c00151{left:238.560000pt;}
.x35_c00151{left:240.000000pt;}
.x5b_c00151{left:241.452672pt;}
.xd_c00151{left:242.993516pt;}
.x70_c00151{left:244.095696pt;}
.x64_c00151{left:246.975147pt;}
.x6c_c00151{left:250.900139pt;}
.x39_c00151{left:252.480000pt;}
.x44_c00151{left:253.920000pt;}
.x6a_c00151{left:255.134811pt;}
.x1d_c00151{left:256.448644pt;}
.x21_c00151{left:258.012219pt;}
.x58_c00151{left:258.974096pt;}
.x71_c00151{left:260.416715pt;}
.x29_c00151{left:264.000000pt;}
.x7_c00151{left:267.773333pt;}
.xe_c00151{left:270.174503pt;}
.x50_c00151{left:272.298667pt;}
.x13_c00151{left:280.037268pt;}
.x2a_c00151{left:283.920000pt;}
.x59_c00151{left:287.295509pt;}
.x6d_c00151{left:291.454448pt;}
.x2e_c00151{left:294.000000pt;}
.x40_c00151{left:294.960000pt;}
.x5c_c00151{left:299.297008pt;}
.x3a_c00151{left:300.960000pt;}
.x4a_c00151{left:301.920000pt;}
.x66_c00151{left:304.100512pt;}
.x22_c00151{left:305.776296pt;}
.x74_c00151{left:307.220645pt;}
.x62_c00151{left:310.579253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00152 {
    display:none;
  }
  .loading-indicator_c00152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00152 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00152 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00152" -> "#page-container .classname_c00152")
 */
.pf_c00152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00152 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00152 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00152 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00152 {overflow:visible;}
  }
}
.c_c00152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00152 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00152:after { /* webkit #35443 */
  content: '';
}
.t_c00152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00152 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00152 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00152 { /* info for Javascript */
  display:none;
}
.l_c00152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00152:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00152 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00152.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00152{transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.018280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018280,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.064260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064260,0.000000,0.000000,0.250000,0,0);}
.md2_c00152{transform:matrix(0.078915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078915,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.097640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097640,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.123105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123105,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125105,0.000000,0.000000,0.250000,0,0);}
.mbc_c00152{transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);}
.me0_c00152{transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.mc0_c00152{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);}
.m81_c00152{transform:matrix(0.155230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155230,0.000000,0.000000,0.250000,0,0);}
.me2_c00152{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.me1_c00152{transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);}
.mbb_c00152{transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.mf2_c00152{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.me4_c00152{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.me3_c00152{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.ma4_c00152{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);}
.mc4_c00152{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m98_c00152{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00152{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.md6_c00152{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);}
.mba_c00152{transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);}
.mee_c00152{transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);}
.me5_c00152{transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);}
.mf0_c00152{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.mf1_c00152{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.mce_c00152{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);}
.m86_c00152{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.mcd_c00152{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);}
.mc6_c00152{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.md5_c00152{transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);}
.meb_c00152{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);}
.mc9_c00152{transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);}
.m9e_c00152{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m8d_c00152{transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);}
.m4e_c00152{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.190085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190085,0.000000,0.000000,0.250000,0,0);}
.mc2_c00152{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m48_c00152{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.m8a_c00152{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.me8_c00152{transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);}
.mc3_c00152{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.mf3_c00152{transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m91_c00152{transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);}
.mcc_c00152{transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);}
.mb0_c00152{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.mdb_c00152{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m9b_c00152{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m47_c00152{transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.md0_c00152{transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);}
.m97_c00152{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);}
.m7d_c00152{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.md1_c00152{transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mea_c00152{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.m8e_c00152{transform:matrix(0.199995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199995,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.mbd_c00152{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.mbf_c00152{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.mdf_c00152{transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.mc7_c00152{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m87_c00152{transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);}
.md8_c00152{transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);}
.md9_c00152{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.mef_c00152{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m89_c00152{transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);}
.med_c00152{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mdc_c00152{transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);}
.mc5_c00152{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);}
.mcf_c00152{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);}
.m9c_c00152{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.210740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210740,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m4b_c00152{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.ma5_c00152{transform:matrix(0.212805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212805,0.000000,0.000000,0.250000,0,0);}
.mec_c00152{transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);}
.mda_c00152{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);}
.mf4_c00152{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m2e_c00152{transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);}
.me9_c00152{transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m73_c00152{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.m40_c00152{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.mbe_c00152{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);}
.mad_c00152{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.mde_c00152{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);}
.md3_c00152{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m53_c00152{transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225965,0.000000,0.000000,0.250000,0,0);}
.mb3_c00152{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.mc1_c00152{transform:matrix(0.226610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226610,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);}
.mb8_c00152{transform:matrix(0.227395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227395,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.mca_c00152{transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00152{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m7b_c00152{transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237585,0.000000,0.000000,0.250000,0,0);}
.me7_c00152{transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.mc8_c00152{transform:matrix(0.241185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241185,0.000000,0.000000,0.250000,0,0);}
.md4_c00152{transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);}
.m76_c00152{transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);}
.m88_c00152{transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);}
.md7_c00152{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00152{transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00152{transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);}
.mdd_c00152{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.me6_c00152{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.262080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262080,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{transform:matrix(0.262410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262410,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.302265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302265,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);}
.m6b_c00152{transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);}
.mb9_c00152{transform:matrix(0.340950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340950,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{transform:matrix(0.438270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438270,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:0.000000px;}
.fc0_c00152{color:transparent;}
.fs9_c00152{font-size:57.750000px;}
.fsa_c00152{font-size:58.800000px;}
.fs8_c00152{font-size:59.850000px;}
.fs4_c00152{font-size:60.900000px;}
.fs3_c00152{font-size:61.950000px;}
.fs5_c00152{font-size:63.000000px;}
.fsb_c00152{font-size:64.050000px;}
.fs6_c00152{font-size:65.100000px;}
.fs7_c00152{font-size:66.150000px;}
.fs2_c00152{font-size:68.250000px;}
.fsc_c00152{font-size:69.300000px;}
.fsd_c00152{font-size:71.400000px;}
.fs1_c00152{font-size:73.500000px;}
.fs0_c00152{font-size:74.550000px;}
.y0_c00152{bottom:0.000000px;}
.y62_c00152{bottom:23.104500px;}
.y61_c00152{bottom:23.617500px;}
.y60_c00152{bottom:23.857500px;}
.y5f_c00152{bottom:24.240000px;}
.y5e_c00152{bottom:25.200000px;}
.y5d_c00152{bottom:25.345500px;}
.y5c_c00152{bottom:25.924500px;}
.y5b_c00152{bottom:41.428500px;}
.y5a_c00152{bottom:42.309000px;}
.y59_c00152{bottom:42.619500px;}
.y58_c00152{bottom:43.264500px;}
.y57_c00152{bottom:43.812000px;}
.y56_c00152{bottom:44.554500px;}
.y55_c00152{bottom:59.965500px;}
.y54_c00152{bottom:77.848500px;}
.y53_c00152{bottom:92.494500px;}
.y52_c00152{bottom:93.342000px;}
.y51_c00152{bottom:94.209000px;}
.y50_c00152{bottom:94.597500px;}
.y4f_c00152{bottom:95.364000px;}
.y4e_c00152{bottom:96.472500px;}
.y4d_c00152{bottom:97.369500px;}
.y4c_c00152{bottom:97.533000px;}
.y4b_c00152{bottom:98.289000px;}
.y4a_c00152{bottom:113.002500px;}
.y49_c00152{bottom:129.894000px;}
.y48_c00152{bottom:130.117500px;}
.y47_c00152{bottom:131.419500px;}
.y46_c00152{bottom:131.698500px;}
.y45_c00152{bottom:132.181500px;}
.y44_c00152{bottom:132.489000px;}
.y43_c00152{bottom:132.846000px;}
.y42_c00152{bottom:145.825500px;}
.y41_c00152{bottom:146.085000px;}
.y40_c00152{bottom:147.268500px;}
.y3f_c00152{bottom:147.463500px;}
.y3e_c00152{bottom:148.599000px;}
.y3d_c00152{bottom:148.848000px;}
.y3c_c00152{bottom:149.586000px;}
.y3b_c00152{bottom:162.975000px;}
.y3a_c00152{bottom:163.098000px;}
.y39_c00152{bottom:163.477500px;}
.y38_c00152{bottom:164.005500px;}
.y37_c00152{bottom:164.151000px;}
.y36_c00152{bottom:164.605500px;}
.y35_c00152{bottom:165.102000px;}
.y34_c00152{bottom:165.334500px;}
.y33_c00152{bottom:165.586500px;}
.y32_c00152{bottom:166.056000px;}
.y31_c00152{bottom:178.299000px;}
.y30_c00152{bottom:180.334500px;}
.y2f_c00152{bottom:181.242000px;}
.y2e_c00152{bottom:182.797500px;}
.y2d_c00152{bottom:196.879500px;}
.y2c_c00152{bottom:213.774000px;}
.y2b_c00152{bottom:230.854500px;}
.y2a_c00152{bottom:231.397500px;}
.y29_c00152{bottom:232.035000px;}
.y28_c00152{bottom:232.275000px;}
.y27_c00152{bottom:233.044500px;}
.y26_c00152{bottom:233.334000px;}
.y25_c00152{bottom:233.824500px;}
.y24_c00152{bottom:249.345000px;}
.y23_c00152{bottom:266.079000px;}
.y22_c00152{bottom:266.263500px;}
.y21_c00152{bottom:266.565000px;}
.y20_c00152{bottom:266.923500px;}
.y1f_c00152{bottom:267.730500px;}
.y1e_c00152{bottom:268.398000px;}
.y1d_c00152{bottom:268.699500px;}
.y1c_c00152{bottom:269.463000px;}
.y1b_c00152{bottom:283.213500px;}
.y1a_c00152{bottom:283.432500px;}
.y19_c00152{bottom:283.737000px;}
.y18_c00152{bottom:283.864500px;}
.y17_c00152{bottom:284.040000px;}
.y16_c00152{bottom:284.961000px;}
.y15_c00152{bottom:285.441000px;}
.y14_c00152{bottom:285.640500px;}
.y13_c00152{bottom:285.924000px;}
.y12_c00152{bottom:286.203000px;}
.y11_c00152{bottom:302.452500px;}
.y10_c00152{bottom:320.761500px;}
.yf_c00152{bottom:336.540000px;}
.ye_c00152{bottom:353.548500px;}
.yd_c00152{bottom:370.018500px;}
.yc_c00152{bottom:387.382500px;}
.yb_c00152{bottom:404.308500px;}
.ya_c00152{bottom:421.260000px;}
.y9_c00152{bottom:438.328500px;}
.y8_c00152{bottom:455.913000px;}
.y7_c00152{bottom:473.511000px;}
.y6_c00152{bottom:490.791000px;}
.y5_c00152{bottom:508.224000px;}
.y4_c00152{bottom:525.624000px;}
.y3_c00152{bottom:542.904000px;}
.y2_c00152{bottom:560.217000px;}
.y1_c00152{bottom:574.125000px;}
.hb_c00152{height:57.750000px;}
.hc_c00152{height:58.800000px;}
.ha_c00152{height:59.850000px;}
.h6_c00152{height:60.900000px;}
.h5_c00152{height:61.950000px;}
.h7_c00152{height:63.000000px;}
.hd_c00152{height:64.050000px;}
.h8_c00152{height:65.100000px;}
.h9_c00152{height:66.150000px;}
.h4_c00152{height:68.250000px;}
.he_c00152{height:69.300000px;}
.hf_c00152{height:71.400000px;}
.h3_c00152{height:73.500000px;}
.h2_c00152{height:74.550000px;}
.h0_c00152{height:623.100000px;}
.h1_c00152{height:623.250000px;}
.w1_c00152{width:383.250000px;}
.w0_c00152{width:383.400000px;}
.x0_c00152{left:0.000000px;}
.x55_c00152{left:25.531500px;}
.x64_c00152{left:26.731500px;}
.x4_c00152{left:28.620000px;}
.x6d_c00152{left:29.698500px;}
.x74_c00152{left:31.050000px;}
.x39_c00152{left:32.400000px;}
.x30_c00152{left:45.900000px;}
.x4c_c00152{left:49.140000px;}
.x4a_c00152{left:51.030000px;}
.x1b_c00152{left:52.110000px;}
.x23_c00152{left:53.190000px;}
.xc_c00152{left:55.080000px;}
.x44_c00152{left:58.590000px;}
.x2c_c00152{left:60.750000px;}
.x31_c00152{left:67.770000px;}
.x52_c00152{left:69.930000px;}
.x3a_c00152{left:71.820000px;}
.x50_c00152{left:73.710000px;}
.x68_c00152{left:74.980500px;}
.x5d_c00152{left:77.913000px;}
.x45_c00152{left:79.650000px;}
.x53_c00152{left:81.270000px;}
.x78_c00152{left:82.537500px;}
.x75_c00152{left:84.240000px;}
.xd_c00152{left:85.590000px;}
.x1c_c00152{left:88.020000px;}
.x14_c00152{left:90.450000px;}
.x5_c00152{left:91.800000px;}
.x32_c00152{left:94.770000px;}
.x28_c00152{left:97.740000px;}
.x46_c00152{left:99.900000px;}
.x56_c00152{left:101.707500px;}
.x1d_c00152{left:107.730000px;}
.x65_c00152{left:108.811500px;}
.x6_c00152{left:111.510000px;}
.x3e_c00152{left:115.020000px;}
.x59_c00152{left:117.345000px;}
.x15_c00152{left:119.610000px;}
.x6f_c00152{left:120.750000px;}
.x29_c00152{left:123.660000px;}
.x3b_c00152{left:125.550000px;}
.x2d_c00152{left:127.440000px;}
.x24_c00152{left:128.520000px;}
.x42_c00152{left:135.810000px;}
.x77_c00152{left:137.034000px;}
.x33_c00152{left:139.320000px;}
.x5e_c00152{left:141.211500px;}
.x6c_c00152{left:148.120500px;}
.xe_c00152{left:149.850000px;}
.x34_c00152{left:152.280000px;}
.x47_c00152{left:154.170000px;}
.x1e_c00152{left:157.950000px;}
.x16_c00152{left:160.380000px;}
.x71_c00152{left:162.000000px;}
.x5f_c00152{left:163.081500px;}
.x2a_c00152{left:164.160000px;}
.x4d_c00152{left:165.240000px;}
.xf_c00152{left:168.750000px;}
.x1_c00152{left:170.370000px;}
.x7_c00152{left:172.800000px;}
.x76_c00152{left:174.150000px;}
.x17_c00152{left:176.310000px;}
.x66_c00152{left:177.661500px;}
.x6a_c00152{left:180.573000px;}
.x67_c00152{left:181.812000px;}
.x8_c00152{left:183.330000px;}
.x60_c00152{left:185.491500px;}
.x72_c00152{left:187.920000px;}
.x10_c00152{left:189.810000px;}
.x4e_c00152{left:191.160000px;}
.x6b_c00152{left:194.553000px;}
.x3f_c00152{left:200.340000px;}
.x51_c00152{left:201.690000px;}
.x11_c00152{left:204.120000px;}
.x69_c00152{left:205.368000px;}
.x35_c00152{left:206.820000px;}
.x6e_c00152{left:208.438500px;}
.x25_c00152{left:214.380000px;}
.x40_c00152{left:216.540000px;}
.x79_c00152{left:217.746000px;}
.x54_c00152{left:218.970000px;}
.x36_c00152{left:222.480000px;}
.x1f_c00152{left:226.800000px;}
.x18_c00152{left:229.500000px;}
.x61_c00152{left:234.091500px;}
.x2_c00152{left:235.980000px;}
.x4f_c00152{left:237.870000px;}
.x9_c00152{left:240.300000px;}
.x57_c00152{left:241.782000px;}
.x3c_c00152{left:249.480000px;}
.x12_c00152{left:253.800000px;}
.x48_c00152{left:255.420000px;}
.x62_c00152{left:256.501500px;}
.x58_c00152{left:259.344000px;}
.xa_c00152{left:261.360000px;}
.x73_c00152{left:264.060000px;}
.x2b_c00152{left:265.950000px;}
.x5c_c00152{left:267.843000px;}
.x5a_c00152{left:270.144000px;}
.x26_c00152{left:272.430000px;}
.x4b_c00152{left:274.050000px;}
.x20_c00152{left:275.130000px;}
.x37_c00152{left:277.290000px;}
.x19_c00152{left:279.450000px;}
.xb_c00152{left:285.390000px;}
.x13_c00152{left:287.280000px;}
.x49_c00152{left:289.170000px;}
.x3d_c00152{left:292.410000px;}
.x41_c00152{left:294.030000px;}
.x5b_c00152{left:295.246500px;}
.x21_c00152{left:297.540000px;}
.x2e_c00152{left:299.430000px;}
.x43_c00152{left:302.130000px;}
.x38_c00152{left:304.290000px;}
.x2f_c00152{left:305.370000px;}
.x22_c00152{left:307.530000px;}
.x1a_c00152{left:309.150000px;}
.x27_c00152{left:311.580000px;}
.x70_c00152{left:319.656000px;}
.x63_c00152{left:322.921500px;}
.x3_c00152{left:325.080000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:0.000000pt;}
.fs9_c00152{font-size:51.333333pt;}
.fsa_c00152{font-size:52.266667pt;}
.fs8_c00152{font-size:53.200000pt;}
.fs4_c00152{font-size:54.133333pt;}
.fs3_c00152{font-size:55.066667pt;}
.fs5_c00152{font-size:56.000000pt;}
.fsb_c00152{font-size:56.933333pt;}
.fs6_c00152{font-size:57.866667pt;}
.fs7_c00152{font-size:58.800000pt;}
.fs2_c00152{font-size:60.666667pt;}
.fsc_c00152{font-size:61.600000pt;}
.fsd_c00152{font-size:63.466667pt;}
.fs1_c00152{font-size:65.333333pt;}
.fs0_c00152{font-size:66.266667pt;}
.y0_c00152{bottom:0.000000pt;}
.y62_c00152{bottom:20.537333pt;}
.y61_c00152{bottom:20.993333pt;}
.y60_c00152{bottom:21.206667pt;}
.y5f_c00152{bottom:21.546667pt;}
.y5e_c00152{bottom:22.400000pt;}
.y5d_c00152{bottom:22.529333pt;}
.y5c_c00152{bottom:23.044000pt;}
.y5b_c00152{bottom:36.825333pt;}
.y5a_c00152{bottom:37.608000pt;}
.y59_c00152{bottom:37.884000pt;}
.y58_c00152{bottom:38.457333pt;}
.y57_c00152{bottom:38.944000pt;}
.y56_c00152{bottom:39.604000pt;}
.y55_c00152{bottom:53.302667pt;}
.y54_c00152{bottom:69.198667pt;}
.y53_c00152{bottom:82.217333pt;}
.y52_c00152{bottom:82.970667pt;}
.y51_c00152{bottom:83.741333pt;}
.y50_c00152{bottom:84.086667pt;}
.y4f_c00152{bottom:84.768000pt;}
.y4e_c00152{bottom:85.753333pt;}
.y4d_c00152{bottom:86.550667pt;}
.y4c_c00152{bottom:86.696000pt;}
.y4b_c00152{bottom:87.368000pt;}
.y4a_c00152{bottom:100.446667pt;}
.y49_c00152{bottom:115.461333pt;}
.y48_c00152{bottom:115.660000pt;}
.y47_c00152{bottom:116.817333pt;}
.y46_c00152{bottom:117.065333pt;}
.y45_c00152{bottom:117.494667pt;}
.y44_c00152{bottom:117.768000pt;}
.y43_c00152{bottom:118.085333pt;}
.y42_c00152{bottom:129.622667pt;}
.y41_c00152{bottom:129.853333pt;}
.y40_c00152{bottom:130.905333pt;}
.y3f_c00152{bottom:131.078667pt;}
.y3e_c00152{bottom:132.088000pt;}
.y3d_c00152{bottom:132.309333pt;}
.y3c_c00152{bottom:132.965333pt;}
.y3b_c00152{bottom:144.866667pt;}
.y3a_c00152{bottom:144.976000pt;}
.y39_c00152{bottom:145.313333pt;}
.y38_c00152{bottom:145.782667pt;}
.y37_c00152{bottom:145.912000pt;}
.y36_c00152{bottom:146.316000pt;}
.y35_c00152{bottom:146.757333pt;}
.y34_c00152{bottom:146.964000pt;}
.y33_c00152{bottom:147.188000pt;}
.y32_c00152{bottom:147.605333pt;}
.y31_c00152{bottom:158.488000pt;}
.y30_c00152{bottom:160.297333pt;}
.y2f_c00152{bottom:161.104000pt;}
.y2e_c00152{bottom:162.486667pt;}
.y2d_c00152{bottom:175.004000pt;}
.y2c_c00152{bottom:190.021333pt;}
.y2b_c00152{bottom:205.204000pt;}
.y2a_c00152{bottom:205.686667pt;}
.y29_c00152{bottom:206.253333pt;}
.y28_c00152{bottom:206.466667pt;}
.y27_c00152{bottom:207.150667pt;}
.y26_c00152{bottom:207.408000pt;}
.y25_c00152{bottom:207.844000pt;}
.y24_c00152{bottom:221.640000pt;}
.y23_c00152{bottom:236.514667pt;}
.y22_c00152{bottom:236.678667pt;}
.y21_c00152{bottom:236.946667pt;}
.y20_c00152{bottom:237.265333pt;}
.y1f_c00152{bottom:237.982667pt;}
.y1e_c00152{bottom:238.576000pt;}
.y1d_c00152{bottom:238.844000pt;}
.y1c_c00152{bottom:239.522667pt;}
.y1b_c00152{bottom:251.745333pt;}
.y1a_c00152{bottom:251.940000pt;}
.y19_c00152{bottom:252.210667pt;}
.y18_c00152{bottom:252.324000pt;}
.y17_c00152{bottom:252.480000pt;}
.y16_c00152{bottom:253.298667pt;}
.y15_c00152{bottom:253.725333pt;}
.y14_c00152{bottom:253.902667pt;}
.y13_c00152{bottom:254.154667pt;}
.y12_c00152{bottom:254.402667pt;}
.y11_c00152{bottom:268.846667pt;}
.y10_c00152{bottom:285.121333pt;}
.yf_c00152{bottom:299.146667pt;}
.ye_c00152{bottom:314.265333pt;}
.yd_c00152{bottom:328.905333pt;}
.yc_c00152{bottom:344.340000pt;}
.yb_c00152{bottom:359.385333pt;}
.ya_c00152{bottom:374.453333pt;}
.y9_c00152{bottom:389.625333pt;}
.y8_c00152{bottom:405.256000pt;}
.y7_c00152{bottom:420.898667pt;}
.y6_c00152{bottom:436.258667pt;}
.y5_c00152{bottom:451.754667pt;}
.y4_c00152{bottom:467.221333pt;}
.y3_c00152{bottom:482.581333pt;}
.y2_c00152{bottom:497.970667pt;}
.y1_c00152{bottom:510.333333pt;}
.hb_c00152{height:51.333333pt;}
.hc_c00152{height:52.266667pt;}
.ha_c00152{height:53.200000pt;}
.h6_c00152{height:54.133333pt;}
.h5_c00152{height:55.066667pt;}
.h7_c00152{height:56.000000pt;}
.hd_c00152{height:56.933333pt;}
.h8_c00152{height:57.866667pt;}
.h9_c00152{height:58.800000pt;}
.h4_c00152{height:60.666667pt;}
.he_c00152{height:61.600000pt;}
.hf_c00152{height:63.466667pt;}
.h3_c00152{height:65.333333pt;}
.h2_c00152{height:66.266667pt;}
.h0_c00152{height:553.866667pt;}
.h1_c00152{height:554.000000pt;}
.w1_c00152{width:340.666667pt;}
.w0_c00152{width:340.800000pt;}
.x0_c00152{left:0.000000pt;}
.x55_c00152{left:22.694667pt;}
.x64_c00152{left:23.761333pt;}
.x4_c00152{left:25.440000pt;}
.x6d_c00152{left:26.398667pt;}
.x74_c00152{left:27.600000pt;}
.x39_c00152{left:28.800000pt;}
.x30_c00152{left:40.800000pt;}
.x4c_c00152{left:43.680000pt;}
.x4a_c00152{left:45.360000pt;}
.x1b_c00152{left:46.320000pt;}
.x23_c00152{left:47.280000pt;}
.xc_c00152{left:48.960000pt;}
.x44_c00152{left:52.080000pt;}
.x2c_c00152{left:54.000000pt;}
.x31_c00152{left:60.240000pt;}
.x52_c00152{left:62.160000pt;}
.x3a_c00152{left:63.840000pt;}
.x50_c00152{left:65.520000pt;}
.x68_c00152{left:66.649333pt;}
.x5d_c00152{left:69.256000pt;}
.x45_c00152{left:70.800000pt;}
.x53_c00152{left:72.240000pt;}
.x78_c00152{left:73.366667pt;}
.x75_c00152{left:74.880000pt;}
.xd_c00152{left:76.080000pt;}
.x1c_c00152{left:78.240000pt;}
.x14_c00152{left:80.400000pt;}
.x5_c00152{left:81.600000pt;}
.x32_c00152{left:84.240000pt;}
.x28_c00152{left:86.880000pt;}
.x46_c00152{left:88.800000pt;}
.x56_c00152{left:90.406667pt;}
.x1d_c00152{left:95.760000pt;}
.x65_c00152{left:96.721333pt;}
.x6_c00152{left:99.120000pt;}
.x3e_c00152{left:102.240000pt;}
.x59_c00152{left:104.306667pt;}
.x15_c00152{left:106.320000pt;}
.x6f_c00152{left:107.333333pt;}
.x29_c00152{left:109.920000pt;}
.x3b_c00152{left:111.600000pt;}
.x2d_c00152{left:113.280000pt;}
.x24_c00152{left:114.240000pt;}
.x42_c00152{left:120.720000pt;}
.x77_c00152{left:121.808000pt;}
.x33_c00152{left:123.840000pt;}
.x5e_c00152{left:125.521333pt;}
.x6c_c00152{left:131.662667pt;}
.xe_c00152{left:133.200000pt;}
.x34_c00152{left:135.360000pt;}
.x47_c00152{left:137.040000pt;}
.x1e_c00152{left:140.400000pt;}
.x16_c00152{left:142.560000pt;}
.x71_c00152{left:144.000000pt;}
.x5f_c00152{left:144.961333pt;}
.x2a_c00152{left:145.920000pt;}
.x4d_c00152{left:146.880000pt;}
.xf_c00152{left:150.000000pt;}
.x1_c00152{left:151.440000pt;}
.x7_c00152{left:153.600000pt;}
.x76_c00152{left:154.800000pt;}
.x17_c00152{left:156.720000pt;}
.x66_c00152{left:157.921333pt;}
.x6a_c00152{left:160.509333pt;}
.x67_c00152{left:161.610667pt;}
.x8_c00152{left:162.960000pt;}
.x60_c00152{left:164.881333pt;}
.x72_c00152{left:167.040000pt;}
.x10_c00152{left:168.720000pt;}
.x4e_c00152{left:169.920000pt;}
.x6b_c00152{left:172.936000pt;}
.x3f_c00152{left:178.080000pt;}
.x51_c00152{left:179.280000pt;}
.x11_c00152{left:181.440000pt;}
.x69_c00152{left:182.549333pt;}
.x35_c00152{left:183.840000pt;}
.x6e_c00152{left:185.278667pt;}
.x25_c00152{left:190.560000pt;}
.x40_c00152{left:192.480000pt;}
.x79_c00152{left:193.552000pt;}
.x54_c00152{left:194.640000pt;}
.x36_c00152{left:197.760000pt;}
.x1f_c00152{left:201.600000pt;}
.x18_c00152{left:204.000000pt;}
.x61_c00152{left:208.081333pt;}
.x2_c00152{left:209.760000pt;}
.x4f_c00152{left:211.440000pt;}
.x9_c00152{left:213.600000pt;}
.x57_c00152{left:214.917333pt;}
.x3c_c00152{left:221.760000pt;}
.x12_c00152{left:225.600000pt;}
.x48_c00152{left:227.040000pt;}
.x62_c00152{left:228.001333pt;}
.x58_c00152{left:230.528000pt;}
.xa_c00152{left:232.320000pt;}
.x73_c00152{left:234.720000pt;}
.x2b_c00152{left:236.400000pt;}
.x5c_c00152{left:238.082667pt;}
.x5a_c00152{left:240.128000pt;}
.x26_c00152{left:242.160000pt;}
.x4b_c00152{left:243.600000pt;}
.x20_c00152{left:244.560000pt;}
.x37_c00152{left:246.480000pt;}
.x19_c00152{left:248.400000pt;}
.xb_c00152{left:253.680000pt;}
.x13_c00152{left:255.360000pt;}
.x49_c00152{left:257.040000pt;}
.x3d_c00152{left:259.920000pt;}
.x41_c00152{left:261.360000pt;}
.x5b_c00152{left:262.441333pt;}
.x21_c00152{left:264.480000pt;}
.x2e_c00152{left:266.160000pt;}
.x43_c00152{left:268.560000pt;}
.x38_c00152{left:270.480000pt;}
.x2f_c00152{left:271.440000pt;}
.x22_c00152{left:273.360000pt;}
.x1a_c00152{left:274.800000pt;}
.x27_c00152{left:276.960000pt;}
.x70_c00152{left:284.138667pt;}
.x63_c00152{left:287.041333pt;}
.x3_c00152{left:288.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00153 {
    display:none;
  }
  .loading-indicator_c00153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00153 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00153 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00153" -> "#page-container .classname_c00153")
 */
.pf_c00153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00153 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00153 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00153 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00153 {overflow:visible;}
  }
}
.c_c00153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00153 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00153:after { /* webkit #35443 */
  content: '';
}
.t_c00153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00153 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00153 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00153 { /* info for Javascript */
  display:none;
}
.l_c00153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00153:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00153 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00153.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_c00153{transform:matrix(0.030490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030490,0.000000,0.000000,0.250000,0,0);}
.m92_c00153{transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107140,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.114110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114110,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.124735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124735,0.000000,0.000000,0.250000,0,0);}
.m4d_c00153{transform:matrix(0.126270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126270,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132180,0.000000,0.000000,0.250000,0,0);}
.m7c_c00153{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);}
.mf1_c00153{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.147190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147190,0.000000,0.000000,0.250000,0,0);}
.mee_c00153{transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);}
.m35_c00153{transform:matrix(0.150140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150140,0.000000,0.000000,0.250000,0,0);}
.m77_c00153{transform:matrix(0.150945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150945,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);}
.me2_c00153{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00153{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00153{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.154110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154110,0.000000,0.000000,0.250000,0,0);}
.mf3_c00153{transform:matrix(0.154510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154510,0.000000,0.000000,0.250000,0,0);}
.m37_c00153{transform:matrix(0.156515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156515,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);}
.me3_c00153{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.mc2_c00153{transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);}
.m7d_c00153{transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);}
.m6b_c00153{transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m34_c00153{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00153{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m97_c00153{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m96_c00153{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.mf2_c00153{transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);}
.mf0_c00153{transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);}
.ma4_c00153{transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);}
.m60_c00153{transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00153{transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);}
.mc9_c00153{transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);}
.ma2_c00153{transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);}
.m38_c00153{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m75_c00153{transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);}
.mba_c00153{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mc8_c00153{transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);}
.m69_c00153{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.mce_c00153{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.171030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171030,0.000000,0.000000,0.250000,0,0);}
.m62_c00153{transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);}
.ma7_c00153{transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);}
.me0_c00153{transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);}
.mc4_c00153{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m7e_c00153{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);}
.m59_c00153{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.mbe_c00153{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.mef_c00153{transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);}
.m7a_c00153{transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);}
.m40_c00153{transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);}
.mc3_c00153{transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);}
.med_c00153{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);}
.m85_c00153{transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.m70_c00153{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);}
.m66_c00153{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00153{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);}
.mdd_c00153{transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);}
.m94_c00153{transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m56_c00153{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.md1_c00153{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.m63_c00153{transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mb7_c00153{transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);}
.me8_c00153{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m61_c00153{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m2f_c00153{transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);}
.md0_c00153{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.me9_c00153{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.mcc_c00153{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m44_c00153{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.mca_c00153{transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);}
.m9b_c00153{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.mde_c00153{transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);}
.ma5_c00153{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);}
.m89_c00153{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.mb1_c00153{transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);}
.m72_c00153{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.md2_c00153{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);}
.m95_c00153{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.meb_c00153{transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);}
.ma0_c00153{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m84_c00153{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m8e_c00153{transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);}
.ma1_c00153{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m80_c00153{transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);}
.mac_c00153{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m7f_c00153{transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);}
.mc1_c00153{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.me4_c00153{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m8a_c00153{transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);}
.m82_c00153{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.m5f_c00153{transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);}
.m74_c00153{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);}
.m6f_c00153{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.m8d_c00153{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mc5_c00153{transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);}
.m71_c00153{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.m81_c00153{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.mcb_c00153{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.md4_c00153{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m43_c00153{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.mf6_c00153{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m76_c00153{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);}
.m88_c00153{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.me5_c00153{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.mc0_c00153{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.ma6_c00153{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.mcf_c00153{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.m3e_c00153{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m79_c00153{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.mdf_c00153{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m98_c00153{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.mb6_c00153{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.me7_c00153{transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);}
.m6d_c00153{transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);}
.mec_c00153{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m45_c00153{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00153{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);}
.m87_c00153{transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);}
.m67_c00153{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md3_c00153{transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209605,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.210085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00153{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m42_c00153{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m68_c00153{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.mc7_c00153{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.m3a_c00153{transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);}
.m53_c00153{transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);}
.m8b_c00153{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m9d_c00153{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);}
.mbc_c00153{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.mea_c00153{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.mcd_c00153{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m5c_c00153{transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);}
.mab_c00153{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m8c_c00153{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m99_c00153{transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00153{transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);}
.m8f_c00153{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.me6_c00153{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m90_c00153{transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);}
.mdb_c00153{transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);}
.mb4_c00153{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.mda_c00153{transform:matrix(0.228820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228820,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.mb0_c00153{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);}
.m9c_c00153{transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);}
.mb3_c00153{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.mbf_c00153{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);}
.m86_c00153{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mf4_c00153{transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00153{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.mb2_c00153{transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);}
.m78_c00153{transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);}
.md6_c00153{transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);}
.md9_c00153{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m54_c00153{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.ma9_c00153{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.mc6_c00153{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00153{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.mae_c00153{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m91_c00153{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);}
.me1_c00153{transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.261530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261530,0.000000,0.000000,0.250000,0,0);}
.mb5_c00153{transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.md7_c00153{transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);}
.md8_c00153{transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);}
.md5_c00153{transform:matrix(0.351695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351695,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);}
.m48_c00153{transform:matrix(0.361430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361430,0.000000,0.000000,0.250000,0,0);}
.m7b_c00153{transform:matrix(0.461900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461900,0.000000,0.000000,0.250000,0,0);}
.mf5_c00153{transform:matrix(1.911615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.911615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.911615,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:0.000000px;}
.fc0_c00153{color:transparent;}
.fsf_c00153{font-size:22.050000px;}
.fse_c00153{font-size:30.450000px;}
.fsd_c00153{font-size:48.300000px;}
.fsc_c00153{font-size:54.600000px;}
.fs8_c00153{font-size:58.800000px;}
.fs2_c00153{font-size:60.900000px;}
.fs7_c00153{font-size:61.950000px;}
.fsb_c00153{font-size:64.050000px;}
.fsa_c00153{font-size:66.150000px;}
.fs3_c00153{font-size:68.250000px;}
.fs4_c00153{font-size:69.300000px;}
.fs0_c00153{font-size:70.350000px;}
.fs5_c00153{font-size:71.400000px;}
.fs9_c00153{font-size:74.550000px;}
.fs6_c00153{font-size:75.600000px;}
.fs1_c00153{font-size:76.650000px;}
.y0_c00153{bottom:0.000000px;}
.y31_c00153{bottom:23.190000px;}
.y30_c00153{bottom:41.581500px;}
.y2f_c00153{bottom:58.591500px;}
.y2e_c00153{bottom:76.558500px;}
.y2d_c00153{bottom:92.821500px;}
.y2c_c00153{bottom:109.653000px;}
.y2b_c00153{bottom:127.699500px;}
.y2a_c00153{bottom:144.756000px;}
.y29_c00153{bottom:162.270000px;}
.y28_c00153{bottom:179.700000px;}
.y27_c00153{bottom:198.241500px;}
.y26_c00153{bottom:213.990000px;}
.y25_c00153{bottom:232.078500px;}
.y24_c00153{bottom:248.016000px;}
.y32_c00153{bottom:250.830000px;}
.y23_c00153{bottom:266.791500px;}
.y22_c00153{bottom:283.380000px;}
.y21_c00153{bottom:300.390000px;}
.y20_c00153{bottom:318.034500px;}
.y1f_c00153{bottom:335.352000px;}
.y1e_c00153{bottom:352.956000px;}
.y1d_c00153{bottom:370.806000px;}
.y1c_c00153{bottom:387.030000px;}
.y1b_c00153{bottom:405.333000px;}
.y1a_c00153{bottom:423.123000px;}
.y19_c00153{bottom:439.893000px;}
.y18_c00153{bottom:456.670500px;}
.y17_c00153{bottom:474.061500px;}
.y33_c00153{bottom:478.710000px;}
.ye_c00153{bottom:488.701500px;}
.yf_c00153{bottom:489.348000px;}
.y10_c00153{bottom:489.604500px;}
.y11_c00153{bottom:490.246500px;}
.y12_c00153{bottom:490.425000px;}
.y13_c00153{bottom:490.668000px;}
.y14_c00153{bottom:491.569500px;}
.y15_c00153{bottom:492.007500px;}
.y16_c00153{bottom:492.313500px;}
.yd_c00153{bottom:508.116000px;}
.yc_c00153{bottom:525.487500px;}
.y3_c00153{bottom:540.811500px;}
.y4_c00153{bottom:541.191000px;}
.y5_c00153{bottom:541.657500px;}
.y6_c00153{bottom:541.810500px;}
.y7_c00153{bottom:542.127000px;}
.y8_c00153{bottom:542.889000px;}
.y9_c00153{bottom:543.174000px;}
.ya_c00153{bottom:543.406500px;}
.yb_c00153{bottom:544.206000px;}
.y2_c00153{bottom:560.698500px;}
.y1_c00153{bottom:576.300000px;}
.h11_c00153{height:22.050000px;}
.h10_c00153{height:30.450000px;}
.hf_c00153{height:48.300000px;}
.he_c00153{height:54.600000px;}
.ha_c00153{height:58.800000px;}
.h4_c00153{height:60.900000px;}
.h9_c00153{height:61.950000px;}
.hd_c00153{height:64.050000px;}
.hc_c00153{height:66.150000px;}
.h5_c00153{height:68.250000px;}
.h6_c00153{height:69.300000px;}
.h2_c00153{height:70.350000px;}
.h7_c00153{height:71.400000px;}
.hb_c00153{height:74.550000px;}
.h8_c00153{height:75.600000px;}
.h3_c00153{height:76.650000px;}
.h0_c00153{height:623.100000px;}
.h1_c00153{height:623.250000px;}
.w1_c00153{width:383.250000px;}
.w0_c00153{width:383.400000px;}
.x0_c00153{left:0.000000px;}
.x28_c00153{left:47.250000px;}
.x18_c00153{left:49.410000px;}
.x3_c00153{left:50.760000px;}
.x2e_c00153{left:51.840000px;}
.x4a_c00153{left:53.190000px;}
.x58_c00153{left:54.270000px;}
.x5c_c00153{left:55.890000px;}
.x12_c00153{left:60.480000px;}
.x29_c00153{left:65.070000px;}
.x19_c00153{left:68.040000px;}
.x62_c00153{left:69.390000px;}
.x6d_c00153{left:71.550000px;}
.x50_c00153{left:73.440000px;}
.x5d_c00153{left:74.790000px;}
.x48_c00153{left:76.680000px;}
.x72_c00153{left:81.270000px;}
.xb_c00153{left:82.485000px;}
.x6f_c00153{left:86.400000px;}
.x13_c00153{left:87.480000px;}
.x34_c00153{left:88.830000px;}
.x74_c00153{left:90.450000px;}
.x1a_c00153{left:93.150000px;}
.x6b_c00153{left:95.580000px;}
.x42_c00153{left:96.930000px;}
.x68_c00153{left:99.900000px;}
.x20_c00153{left:101.199000px;}
.x63_c00153{left:102.330000px;}
.x2a_c00153{left:106.380000px;}
.x25_c00153{left:110.160000px;}
.x1b_c00153{left:112.320000px;}
.x3d_c00153{left:115.560000px;}
.x4_c00153{left:118.800000px;}
.xc_c00153{left:121.347000px;}
.x5f_c00153{left:123.390000px;}
.x2f_c00153{left:124.470000px;}
.x55_c00153{left:127.170000px;}
.x75_c00153{left:129.330000px;}
.x1_c00153{left:131.490000px;}
.x38_c00153{left:132.840000px;}
.x5_c00153{left:135.000000px;}
.x56_c00153{left:137.160000px;}
.x64_c00153{left:143.370000px;}
.x14_c00153{left:144.990000px;}
.x35_c00153{left:148.770000px;}
.x43_c00153{left:150.390000px;}
.x30_c00153{left:152.010000px;}
.x3b_c00153{left:156.870000px;}
.x69_c00153{left:158.490000px;}
.xd_c00153{left:160.543500px;}
.x76_c00153{left:161.730000px;}
.x44_c00153{left:165.510000px;}
.x2b_c00153{left:166.590000px;}
.x31_c00153{left:169.290000px;}
.x21_c00153{left:170.307000px;}
.x15_c00153{left:174.420000px;}
.x59_c00153{left:177.930000px;}
.x4e_c00153{left:179.550000px;}
.x2_c00153{left:184.410000px;}
.x51_c00153{left:186.300000px;}
.x1c_c00153{left:188.460000px;}
.x3e_c00153{left:191.970000px;}
.x5a_c00153{left:193.590000px;}
.x6_c00153{left:196.020000px;}
.x22_c00153{left:202.666500px;}
.x60_c00153{left:204.660000px;}
.x3f_c00153{left:209.790000px;}
.x36_c00153{left:211.680000px;}
.x7_c00153{left:213.570000px;}
.x5b_c00153{left:216.810000px;}
.x26_c00153{left:217.890000px;}
.x52_c00153{left:220.050000px;}
.x49_c00153{left:221.940000px;}
.xe_c00153{left:223.987500px;}
.x4b_c00153{left:231.390000px;}
.x2c_c00153{left:236.250000px;}
.x16_c00153{left:237.330000px;}
.x45_c00153{left:240.030000px;}
.x40_c00153{left:244.080000px;}
.xf_c00153{left:247.750500px;}
.x65_c00153{left:249.210000px;}
.x5e_c00153{left:250.830000px;}
.x32_c00153{left:252.450000px;}
.x70_c00153{left:254.610000px;}
.x4f_c00153{left:261.630000px;}
.x2d_c00153{left:264.870000px;}
.x3c_c00153{left:265.950000px;}
.x10_c00153{left:267.187500px;}
.x53_c00153{left:271.350000px;}
.x8_c00153{left:272.700000px;}
.x66_c00153{left:277.020000px;}
.x71_c00153{left:279.450000px;}
.x1d_c00153{left:281.070000px;}
.x41_c00153{left:283.230000px;}
.x17_c00153{left:285.390000px;}
.x27_c00153{left:291.600000px;}
.x6e_c00153{left:292.680000px;}
.x39_c00153{left:293.760000px;}
.x61_c00153{left:296.460000px;}
.x1e_c00153{left:297.540000px;}
.x73_c00153{left:298.890000px;}
.x9_c00153{left:299.970000px;}
.x77_c00153{left:302.400000px;}
.x23_c00153{left:305.803500px;}
.x46_c00153{left:308.070000px;}
.x54_c00153{left:311.850000px;}
.x6c_c00153{left:314.820000px;}
.x6a_c00153{left:318.870000px;}
.xa_c00153{left:319.950000px;}
.x4c_c00153{left:324.810000px;}
.x24_c00153{left:329.293500px;}
.x33_c00153{left:331.020000px;}
.x47_c00153{left:332.640000px;}
.x11_c00153{left:333.822000px;}
.x37_c00153{left:335.340000px;}
.x3a_c00153{left:338.580000px;}
.x1f_c00153{left:339.660000px;}
.x4d_c00153{left:343.170000px;}
.x67_c00153{left:344.520000px;}
.x57_c00153{left:346.950000px;}
.x78_c00153{left:378.810000px;}
.x79_c00153{left:381.240000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
.fsf_c00153{font-size:19.600000pt;}
.fse_c00153{font-size:27.066667pt;}
.fsd_c00153{font-size:42.933333pt;}
.fsc_c00153{font-size:48.533333pt;}
.fs8_c00153{font-size:52.266667pt;}
.fs2_c00153{font-size:54.133333pt;}
.fs7_c00153{font-size:55.066667pt;}
.fsb_c00153{font-size:56.933333pt;}
.fsa_c00153{font-size:58.800000pt;}
.fs3_c00153{font-size:60.666667pt;}
.fs4_c00153{font-size:61.600000pt;}
.fs0_c00153{font-size:62.533333pt;}
.fs5_c00153{font-size:63.466667pt;}
.fs9_c00153{font-size:66.266667pt;}
.fs6_c00153{font-size:67.200000pt;}
.fs1_c00153{font-size:68.133333pt;}
.y0_c00153{bottom:0.000000pt;}
.y31_c00153{bottom:20.613333pt;}
.y30_c00153{bottom:36.961333pt;}
.y2f_c00153{bottom:52.081333pt;}
.y2e_c00153{bottom:68.052000pt;}
.y2d_c00153{bottom:82.508000pt;}
.y2c_c00153{bottom:97.469333pt;}
.y2b_c00153{bottom:113.510667pt;}
.y2a_c00153{bottom:128.672000pt;}
.y29_c00153{bottom:144.240000pt;}
.y28_c00153{bottom:159.733333pt;}
.y27_c00153{bottom:176.214667pt;}
.y26_c00153{bottom:190.213333pt;}
.y25_c00153{bottom:206.292000pt;}
.y24_c00153{bottom:220.458667pt;}
.y32_c00153{bottom:222.960000pt;}
.y23_c00153{bottom:237.148000pt;}
.y22_c00153{bottom:251.893333pt;}
.y21_c00153{bottom:267.013333pt;}
.y20_c00153{bottom:282.697333pt;}
.y1f_c00153{bottom:298.090667pt;}
.y1e_c00153{bottom:313.738667pt;}
.y1d_c00153{bottom:329.605333pt;}
.y1c_c00153{bottom:344.026667pt;}
.y1b_c00153{bottom:360.296000pt;}
.y1a_c00153{bottom:376.109333pt;}
.y19_c00153{bottom:391.016000pt;}
.y18_c00153{bottom:405.929333pt;}
.y17_c00153{bottom:421.388000pt;}
.y33_c00153{bottom:425.520000pt;}
.ye_c00153{bottom:434.401333pt;}
.yf_c00153{bottom:434.976000pt;}
.y10_c00153{bottom:435.204000pt;}
.y11_c00153{bottom:435.774667pt;}
.y12_c00153{bottom:435.933333pt;}
.y13_c00153{bottom:436.149333pt;}
.y14_c00153{bottom:436.950667pt;}
.y15_c00153{bottom:437.340000pt;}
.y16_c00153{bottom:437.612000pt;}
.yd_c00153{bottom:451.658667pt;}
.yc_c00153{bottom:467.100000pt;}
.y3_c00153{bottom:480.721333pt;}
.y4_c00153{bottom:481.058667pt;}
.y5_c00153{bottom:481.473333pt;}
.y6_c00153{bottom:481.609333pt;}
.y7_c00153{bottom:481.890667pt;}
.y8_c00153{bottom:482.568000pt;}
.y9_c00153{bottom:482.821333pt;}
.ya_c00153{bottom:483.028000pt;}
.yb_c00153{bottom:483.738667pt;}
.y2_c00153{bottom:498.398667pt;}
.y1_c00153{bottom:512.266667pt;}
.h11_c00153{height:19.600000pt;}
.h10_c00153{height:27.066667pt;}
.hf_c00153{height:42.933333pt;}
.he_c00153{height:48.533333pt;}
.ha_c00153{height:52.266667pt;}
.h4_c00153{height:54.133333pt;}
.h9_c00153{height:55.066667pt;}
.hd_c00153{height:56.933333pt;}
.hc_c00153{height:58.800000pt;}
.h5_c00153{height:60.666667pt;}
.h6_c00153{height:61.600000pt;}
.h2_c00153{height:62.533333pt;}
.h7_c00153{height:63.466667pt;}
.hb_c00153{height:66.266667pt;}
.h8_c00153{height:67.200000pt;}
.h3_c00153{height:68.133333pt;}
.h0_c00153{height:553.866667pt;}
.h1_c00153{height:554.000000pt;}
.w1_c00153{width:340.666667pt;}
.w0_c00153{width:340.800000pt;}
.x0_c00153{left:0.000000pt;}
.x28_c00153{left:42.000000pt;}
.x18_c00153{left:43.920000pt;}
.x3_c00153{left:45.120000pt;}
.x2e_c00153{left:46.080000pt;}
.x4a_c00153{left:47.280000pt;}
.x58_c00153{left:48.240000pt;}
.x5c_c00153{left:49.680000pt;}
.x12_c00153{left:53.760000pt;}
.x29_c00153{left:57.840000pt;}
.x19_c00153{left:60.480000pt;}
.x62_c00153{left:61.680000pt;}
.x6d_c00153{left:63.600000pt;}
.x50_c00153{left:65.280000pt;}
.x5d_c00153{left:66.480000pt;}
.x48_c00153{left:68.160000pt;}
.x72_c00153{left:72.240000pt;}
.xb_c00153{left:73.320000pt;}
.x6f_c00153{left:76.800000pt;}
.x13_c00153{left:77.760000pt;}
.x34_c00153{left:78.960000pt;}
.x74_c00153{left:80.400000pt;}
.x1a_c00153{left:82.800000pt;}
.x6b_c00153{left:84.960000pt;}
.x42_c00153{left:86.160000pt;}
.x68_c00153{left:88.800000pt;}
.x20_c00153{left:89.954667pt;}
.x63_c00153{left:90.960000pt;}
.x2a_c00153{left:94.560000pt;}
.x25_c00153{left:97.920000pt;}
.x1b_c00153{left:99.840000pt;}
.x3d_c00153{left:102.720000pt;}
.x4_c00153{left:105.600000pt;}
.xc_c00153{left:107.864000pt;}
.x5f_c00153{left:109.680000pt;}
.x2f_c00153{left:110.640000pt;}
.x55_c00153{left:113.040000pt;}
.x75_c00153{left:114.960000pt;}
.x1_c00153{left:116.880000pt;}
.x38_c00153{left:118.080000pt;}
.x5_c00153{left:120.000000pt;}
.x56_c00153{left:121.920000pt;}
.x64_c00153{left:127.440000pt;}
.x14_c00153{left:128.880000pt;}
.x35_c00153{left:132.240000pt;}
.x43_c00153{left:133.680000pt;}
.x30_c00153{left:135.120000pt;}
.x3b_c00153{left:139.440000pt;}
.x69_c00153{left:140.880000pt;}
.xd_c00153{left:142.705333pt;}
.x76_c00153{left:143.760000pt;}
.x44_c00153{left:147.120000pt;}
.x2b_c00153{left:148.080000pt;}
.x31_c00153{left:150.480000pt;}
.x21_c00153{left:151.384000pt;}
.x15_c00153{left:155.040000pt;}
.x59_c00153{left:158.160000pt;}
.x4e_c00153{left:159.600000pt;}
.x2_c00153{left:163.920000pt;}
.x51_c00153{left:165.600000pt;}
.x1c_c00153{left:167.520000pt;}
.x3e_c00153{left:170.640000pt;}
.x5a_c00153{left:172.080000pt;}
.x6_c00153{left:174.240000pt;}
.x22_c00153{left:180.148000pt;}
.x60_c00153{left:181.920000pt;}
.x3f_c00153{left:186.480000pt;}
.x36_c00153{left:188.160000pt;}
.x7_c00153{left:189.840000pt;}
.x5b_c00153{left:192.720000pt;}
.x26_c00153{left:193.680000pt;}
.x52_c00153{left:195.600000pt;}
.x49_c00153{left:197.280000pt;}
.xe_c00153{left:199.100000pt;}
.x4b_c00153{left:205.680000pt;}
.x2c_c00153{left:210.000000pt;}
.x16_c00153{left:210.960000pt;}
.x45_c00153{left:213.360000pt;}
.x40_c00153{left:216.960000pt;}
.xf_c00153{left:220.222667pt;}
.x65_c00153{left:221.520000pt;}
.x5e_c00153{left:222.960000pt;}
.x32_c00153{left:224.400000pt;}
.x70_c00153{left:226.320000pt;}
.x4f_c00153{left:232.560000pt;}
.x2d_c00153{left:235.440000pt;}
.x3c_c00153{left:236.400000pt;}
.x10_c00153{left:237.500000pt;}
.x53_c00153{left:241.200000pt;}
.x8_c00153{left:242.400000pt;}
.x66_c00153{left:246.240000pt;}
.x71_c00153{left:248.400000pt;}
.x1d_c00153{left:249.840000pt;}
.x41_c00153{left:251.760000pt;}
.x17_c00153{left:253.680000pt;}
.x27_c00153{left:259.200000pt;}
.x6e_c00153{left:260.160000pt;}
.x39_c00153{left:261.120000pt;}
.x61_c00153{left:263.520000pt;}
.x1e_c00153{left:264.480000pt;}
.x73_c00153{left:265.680000pt;}
.x9_c00153{left:266.640000pt;}
.x77_c00153{left:268.800000pt;}
.x23_c00153{left:271.825333pt;}
.x46_c00153{left:273.840000pt;}
.x54_c00153{left:277.200000pt;}
.x6c_c00153{left:279.840000pt;}
.x6a_c00153{left:283.440000pt;}
.xa_c00153{left:284.400000pt;}
.x4c_c00153{left:288.720000pt;}
.x24_c00153{left:292.705333pt;}
.x33_c00153{left:294.240000pt;}
.x47_c00153{left:295.680000pt;}
.x11_c00153{left:296.730667pt;}
.x37_c00153{left:298.080000pt;}
.x3a_c00153{left:300.960000pt;}
.x1f_c00153{left:301.920000pt;}
.x4d_c00153{left:305.040000pt;}
.x67_c00153{left:306.240000pt;}
.x57_c00153{left:308.400000pt;}
.x78_c00153{left:336.720000pt;}
.x79_c00153{left:338.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00154 {
    display:none;
  }
  .loading-indicator_c00154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00154 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00154 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00154" -> "#page-container .classname_c00154")
 */
.pf_c00154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00154 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00154 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00154 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00154 {overflow:visible;}
  }
}
.c_c00154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00154 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00154:after { /* webkit #35443 */
  content: '';
}
.t_c00154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00154 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00154 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00154 { /* info for Javascript */
  display:none;
}
.l_c00154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00154:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00154 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00154.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00154{transform:matrix(0.007949,-0.000127,0.003999,0.249968,0,0);-ms-transform:matrix(0.007949,-0.000127,0.003999,0.249968,0,0);-webkit-transform:matrix(0.007949,-0.000127,0.003999,0.249968,0,0);}
.ma0_c00154{transform:matrix(0.095828,-0.001533,0.003999,0.249968,0,0);-ms-transform:matrix(0.095828,-0.001533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.095828,-0.001533,0.003999,0.249968,0,0);}
.m2_c00154{transform:matrix(0.102963,-0.002368,0.005748,0.249934,0,0);-ms-transform:matrix(0.102963,-0.002368,0.005748,0.249934,0,0);-webkit-transform:matrix(0.102963,-0.002368,0.005748,0.249934,0,0);}
.mc3_c00154{transform:matrix(0.108396,-0.001734,0.003999,0.249968,0,0);-ms-transform:matrix(0.108396,-0.001734,0.003999,0.249968,0,0);-webkit-transform:matrix(0.108396,-0.001734,0.003999,0.249968,0,0);}
.m1_c00154{transform:matrix(0.114410,-0.002631,0.005748,0.249934,0,0);-ms-transform:matrix(0.114410,-0.002631,0.005748,0.249934,0,0);-webkit-transform:matrix(0.114410,-0.002631,0.005748,0.249934,0,0);}
.ma_c00154{transform:matrix(0.139783,-0.003215,0.005748,0.249934,0,0);-ms-transform:matrix(0.139783,-0.003215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.139783,-0.003215,0.005748,0.249934,0,0);}
.mbf_c00154{transform:matrix(0.144701,-0.002315,0.003999,0.249968,0,0);-ms-transform:matrix(0.144701,-0.002315,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144701,-0.002315,0.003999,0.249968,0,0);}
.m59_c00154{transform:matrix(0.144836,-0.002317,0.003999,0.249968,0,0);-ms-transform:matrix(0.144836,-0.002317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144836,-0.002317,0.003999,0.249968,0,0);}
.m42_c00154{transform:matrix(0.144851,-0.002318,0.003999,0.249968,0,0);-ms-transform:matrix(0.144851,-0.002318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144851,-0.002318,0.003999,0.249968,0,0);}
.mc4_c00154{transform:matrix(0.145551,-0.002329,0.003999,0.249968,0,0);-ms-transform:matrix(0.145551,-0.002329,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145551,-0.002329,0.003999,0.249968,0,0);}
.mb5_c00154{transform:matrix(0.153305,-0.002453,0.003999,0.249968,0,0);-ms-transform:matrix(0.153305,-0.002453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153305,-0.002453,0.003999,0.249968,0,0);}
.m7c_c00154{transform:matrix(0.154800,-0.002477,0.003999,0.249968,0,0);-ms-transform:matrix(0.154800,-0.002477,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154800,-0.002477,0.003999,0.249968,0,0);}
.m0_c00154{transform:matrix(0.157238,-0.003616,0.005748,0.249934,0,0);-ms-transform:matrix(0.157238,-0.003616,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157238,-0.003616,0.005748,0.249934,0,0);}
.m75_c00154{transform:matrix(0.160544,-0.002569,0.003999,0.249968,0,0);-ms-transform:matrix(0.160544,-0.002569,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160544,-0.002569,0.003999,0.249968,0,0);}
.mb4_c00154{transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);-ms-transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);}
.m5_c00154{transform:matrix(0.162707,-0.003742,0.005748,0.249934,0,0);-ms-transform:matrix(0.162707,-0.003742,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162707,-0.003742,0.005748,0.249934,0,0);}
.m4_c00154{transform:matrix(0.163572,-0.003762,0.005748,0.249934,0,0);-ms-transform:matrix(0.163572,-0.003762,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163572,-0.003762,0.005748,0.249934,0,0);}
.m57_c00154{transform:matrix(0.164784,-0.002637,0.003999,0.249968,0,0);-ms-transform:matrix(0.164784,-0.002637,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164784,-0.002637,0.003999,0.249968,0,0);}
.mb1_c00154{transform:matrix(0.165084,-0.002641,0.003999,0.249968,0,0);-ms-transform:matrix(0.165084,-0.002641,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165084,-0.002641,0.003999,0.249968,0,0);}
.maa_c00154{transform:matrix(0.165554,-0.002649,0.003999,0.249968,0,0);-ms-transform:matrix(0.165554,-0.002649,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165554,-0.002649,0.003999,0.249968,0,0);}
.mf_c00154{transform:matrix(0.166326,-0.003825,0.005748,0.249934,0,0);-ms-transform:matrix(0.166326,-0.003825,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166326,-0.003825,0.005748,0.249934,0,0);}
.mba_c00154{transform:matrix(0.166569,-0.002665,0.003999,0.249968,0,0);-ms-transform:matrix(0.166569,-0.002665,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166569,-0.002665,0.003999,0.249968,0,0);}
.m7e_c00154{transform:matrix(0.167959,-0.002687,0.003999,0.249968,0,0);-ms-transform:matrix(0.167959,-0.002687,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167959,-0.002687,0.003999,0.249968,0,0);}
.m6_c00154{transform:matrix(0.168111,-0.003867,0.005748,0.249934,0,0);-ms-transform:matrix(0.168111,-0.003867,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168111,-0.003867,0.005748,0.249934,0,0);}
.mc1_c00154{transform:matrix(0.169543,-0.002713,0.003999,0.249968,0,0);-ms-transform:matrix(0.169543,-0.002713,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169543,-0.002713,0.003999,0.249968,0,0);}
.mb7_c00154{transform:matrix(0.170183,-0.002723,0.003999,0.249968,0,0);-ms-transform:matrix(0.170183,-0.002723,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170183,-0.002723,0.003999,0.249968,0,0);}
.m81_c00154{transform:matrix(0.171003,-0.002736,0.003999,0.249968,0,0);-ms-transform:matrix(0.171003,-0.002736,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171003,-0.002736,0.003999,0.249968,0,0);}
.md4_c00154{transform:matrix(0.171293,-0.002741,0.003999,0.249968,0,0);-ms-transform:matrix(0.171293,-0.002741,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171293,-0.002741,0.003999,0.249968,0,0);}
.mb9_c00154{transform:matrix(0.171973,-0.002752,0.003999,0.249968,0,0);-ms-transform:matrix(0.171973,-0.002752,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171973,-0.002752,0.003999,0.249968,0,0);}
.m76_c00154{transform:matrix(0.172513,-0.002760,0.003999,0.249968,0,0);-ms-transform:matrix(0.172513,-0.002760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172513,-0.002760,0.003999,0.249968,0,0);}
.m85_c00154{transform:matrix(0.172578,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172578,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172578,-0.002761,0.003999,0.249968,0,0);}
.m9c_c00154{transform:matrix(0.172583,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172583,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172583,-0.002761,0.003999,0.249968,0,0);}
.m2d_c00154{transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);}
.mb0_c00154{transform:matrix(0.172743,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172743,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172743,-0.002764,0.003999,0.249968,0,0);}
.md1_c00154{transform:matrix(0.172978,-0.002768,0.003999,0.249968,0,0);-ms-transform:matrix(0.172978,-0.002768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172978,-0.002768,0.003999,0.249968,0,0);}
.m45_c00154{transform:matrix(0.173263,-0.002772,0.003999,0.249968,0,0);-ms-transform:matrix(0.173263,-0.002772,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173263,-0.002772,0.003999,0.249968,0,0);}
.md_c00154{transform:matrix(0.173549,-0.003992,0.005748,0.249934,0,0);-ms-transform:matrix(0.173549,-0.003992,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173549,-0.003992,0.005748,0.249934,0,0);}
.m43_c00154{transform:matrix(0.173573,-0.002777,0.003999,0.249968,0,0);-ms-transform:matrix(0.173573,-0.002777,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173573,-0.002777,0.003999,0.249968,0,0);}
.m48_c00154{transform:matrix(0.173588,-0.002777,0.003999,0.249968,0,0);-ms-transform:matrix(0.173588,-0.002777,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173588,-0.002777,0.003999,0.249968,0,0);}
.m6e_c00154{transform:matrix(0.173698,-0.002779,0.003999,0.249968,0,0);-ms-transform:matrix(0.173698,-0.002779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173698,-0.002779,0.003999,0.249968,0,0);}
.m22_c00154{transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);-ms-transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);}
.m56_c00154{transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);-ms-transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);}
.m78_c00154{transform:matrix(0.174908,-0.002799,0.003999,0.249968,0,0);-ms-transform:matrix(0.174908,-0.002799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174908,-0.002799,0.003999,0.249968,0,0);}
.m35_c00154{transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);-ms-transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);}
.m7a_c00154{transform:matrix(0.176017,-0.002816,0.003999,0.249968,0,0);-ms-transform:matrix(0.176017,-0.002816,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176017,-0.002816,0.003999,0.249968,0,0);}
.m73_c00154{transform:matrix(0.176092,-0.002817,0.003999,0.249968,0,0);-ms-transform:matrix(0.176092,-0.002817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176092,-0.002817,0.003999,0.249968,0,0);}
.mb8_c00154{transform:matrix(0.176167,-0.002819,0.003999,0.249968,0,0);-ms-transform:matrix(0.176167,-0.002819,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176167,-0.002819,0.003999,0.249968,0,0);}
.meb_c00154{transform:matrix(0.176247,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176247,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176247,-0.002820,0.003999,0.249968,0,0);}
.m51_c00154{transform:matrix(0.177677,-0.002843,0.003999,0.249968,0,0);-ms-transform:matrix(0.177677,-0.002843,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177677,-0.002843,0.003999,0.249968,0,0);}
.m30_c00154{transform:matrix(0.178177,-0.002851,0.003999,0.249968,0,0);-ms-transform:matrix(0.178177,-0.002851,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178177,-0.002851,0.003999,0.249968,0,0);}
.mb2_c00154{transform:matrix(0.178227,-0.002852,0.003999,0.249968,0,0);-ms-transform:matrix(0.178227,-0.002852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178227,-0.002852,0.003999,0.249968,0,0);}
.m18_c00154{transform:matrix(0.178288,-0.004101,0.005748,0.249934,0,0);-ms-transform:matrix(0.178288,-0.004101,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178288,-0.004101,0.005748,0.249934,0,0);}
.m96_c00154{transform:matrix(0.178627,-0.002858,0.003999,0.249968,0,0);-ms-transform:matrix(0.178627,-0.002858,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178627,-0.002858,0.003999,0.249968,0,0);}
.m9b_c00154{transform:matrix(0.178767,-0.002860,0.003999,0.249968,0,0);-ms-transform:matrix(0.178767,-0.002860,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178767,-0.002860,0.003999,0.249968,0,0);}
.m5c_c00154{transform:matrix(0.178897,-0.002862,0.003999,0.249968,0,0);-ms-transform:matrix(0.178897,-0.002862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178897,-0.002862,0.003999,0.249968,0,0);}
.mae_c00154{transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);-ms-transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);}
.maf_c00154{transform:matrix(0.179017,-0.002864,0.003999,0.249968,0,0);-ms-transform:matrix(0.179017,-0.002864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179017,-0.002864,0.003999,0.249968,0,0);}
.m4c_c00154{transform:matrix(0.179162,-0.002867,0.003999,0.249968,0,0);-ms-transform:matrix(0.179162,-0.002867,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179162,-0.002867,0.003999,0.249968,0,0);}
.me3_c00154{transform:matrix(0.180167,-0.002883,0.003999,0.249968,0,0);-ms-transform:matrix(0.180167,-0.002883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180167,-0.002883,0.003999,0.249968,0,0);}
.m60_c00154{transform:matrix(0.180442,-0.002887,0.003999,0.249968,0,0);-ms-transform:matrix(0.180442,-0.002887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180442,-0.002887,0.003999,0.249968,0,0);}
.m5e_c00154{transform:matrix(0.180802,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180802,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180802,-0.002893,0.003999,0.249968,0,0);}
.m95_c00154{transform:matrix(0.180827,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180827,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180827,-0.002893,0.003999,0.249968,0,0);}
.m80_c00154{transform:matrix(0.180842,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180842,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180842,-0.002893,0.003999,0.249968,0,0);}
.ma9_c00154{transform:matrix(0.181017,-0.002896,0.003999,0.249968,0,0);-ms-transform:matrix(0.181017,-0.002896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181017,-0.002896,0.003999,0.249968,0,0);}
.ma2_c00154{transform:matrix(0.181057,-0.002897,0.003999,0.249968,0,0);-ms-transform:matrix(0.181057,-0.002897,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181057,-0.002897,0.003999,0.249968,0,0);}
.m3_c00154{transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);-ms-transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181372,-0.004172,0.005748,0.249934,0,0);}
.mde_c00154{transform:matrix(0.182012,-0.002912,0.003999,0.249968,0,0);-ms-transform:matrix(0.182012,-0.002912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182012,-0.002912,0.003999,0.249968,0,0);}
.m68_c00154{transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);}
.m8b_c00154{transform:matrix(0.182522,-0.002920,0.003999,0.249968,0,0);-ms-transform:matrix(0.182522,-0.002920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182522,-0.002920,0.003999,0.249968,0,0);}
.m41_c00154{transform:matrix(0.183172,-0.002931,0.003999,0.249968,0,0);-ms-transform:matrix(0.183172,-0.002931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183172,-0.002931,0.003999,0.249968,0,0);}
.m93_c00154{transform:matrix(0.183252,-0.002932,0.003999,0.249968,0,0);-ms-transform:matrix(0.183252,-0.002932,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183252,-0.002932,0.003999,0.249968,0,0);}
.m46_c00154{transform:matrix(0.183527,-0.002936,0.003999,0.249968,0,0);-ms-transform:matrix(0.183527,-0.002936,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183527,-0.002936,0.003999,0.249968,0,0);}
.me1_c00154{transform:matrix(0.183796,-0.002941,0.003999,0.249968,0,0);-ms-transform:matrix(0.183796,-0.002941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183796,-0.002941,0.003999,0.249968,0,0);}
.m14_c00154{transform:matrix(0.183841,-0.004228,0.005748,0.249934,0,0);-ms-transform:matrix(0.183841,-0.004228,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183841,-0.004228,0.005748,0.249934,0,0);}
.m2a_c00154{transform:matrix(0.184321,-0.002949,0.003999,0.249968,0,0);-ms-transform:matrix(0.184321,-0.002949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184321,-0.002949,0.003999,0.249968,0,0);}
.m7b_c00154{transform:matrix(0.184836,-0.002957,0.003999,0.249968,0,0);-ms-transform:matrix(0.184836,-0.002957,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184836,-0.002957,0.003999,0.249968,0,0);}
.m53_c00154{transform:matrix(0.185166,-0.002963,0.003999,0.249968,0,0);-ms-transform:matrix(0.185166,-0.002963,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185166,-0.002963,0.003999,0.249968,0,0);}
.m8d_c00154{transform:matrix(0.185896,-0.002974,0.003999,0.249968,0,0);-ms-transform:matrix(0.185896,-0.002974,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185896,-0.002974,0.003999,0.249968,0,0);}
.mad_c00154{transform:matrix(0.185986,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.185986,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185986,-0.002976,0.003999,0.249968,0,0);}
.mea_c00154{transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);-ms-transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);}
.ma7_c00154{transform:matrix(0.186211,-0.002979,0.003999,0.249968,0,0);-ms-transform:matrix(0.186211,-0.002979,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186211,-0.002979,0.003999,0.249968,0,0);}
.m4d_c00154{transform:matrix(0.186261,-0.002980,0.003999,0.249968,0,0);-ms-transform:matrix(0.186261,-0.002980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186261,-0.002980,0.003999,0.249968,0,0);}
.m71_c00154{transform:matrix(0.186756,-0.002988,0.003999,0.249968,0,0);-ms-transform:matrix(0.186756,-0.002988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186756,-0.002988,0.003999,0.249968,0,0);}
.me5_c00154{transform:matrix(0.187876,-0.003006,0.003999,0.249968,0,0);-ms-transform:matrix(0.187876,-0.003006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187876,-0.003006,0.003999,0.249968,0,0);}
.ma1_c00154{transform:matrix(0.188051,-0.003009,0.003999,0.249968,0,0);-ms-transform:matrix(0.188051,-0.003009,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188051,-0.003009,0.003999,0.249968,0,0);}
.m15_c00154{transform:matrix(0.188585,-0.004337,0.005748,0.249934,0,0);-ms-transform:matrix(0.188585,-0.004337,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188585,-0.004337,0.005748,0.249934,0,0);}
.me7_c00154{transform:matrix(0.188691,-0.003019,0.003999,0.249968,0,0);-ms-transform:matrix(0.188691,-0.003019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188691,-0.003019,0.003999,0.249968,0,0);}
.m89_c00154{transform:matrix(0.188806,-0.003021,0.003999,0.249968,0,0);-ms-transform:matrix(0.188806,-0.003021,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188806,-0.003021,0.003999,0.249968,0,0);}
.m31_c00154{transform:matrix(0.188916,-0.003023,0.003999,0.249968,0,0);-ms-transform:matrix(0.188916,-0.003023,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188916,-0.003023,0.003999,0.249968,0,0);}
.me2_c00154{transform:matrix(0.189296,-0.003029,0.003999,0.249968,0,0);-ms-transform:matrix(0.189296,-0.003029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189296,-0.003029,0.003999,0.249968,0,0);}
.mbc_c00154{transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);-ms-transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);}
.m65_c00154{transform:matrix(0.191171,-0.003059,0.003999,0.249968,0,0);-ms-transform:matrix(0.191171,-0.003059,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191171,-0.003059,0.003999,0.249968,0,0);}
.m86_c00154{transform:matrix(0.191445,-0.003063,0.003999,0.249968,0,0);-ms-transform:matrix(0.191445,-0.003063,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191445,-0.003063,0.003999,0.249968,0,0);}
.ma5_c00154{transform:matrix(0.191640,-0.003066,0.003999,0.249968,0,0);-ms-transform:matrix(0.191640,-0.003066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191640,-0.003066,0.003999,0.249968,0,0);}
.m21_c00154{transform:matrix(0.192199,-0.004421,0.005748,0.249934,0,0);-ms-transform:matrix(0.192199,-0.004421,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192199,-0.004421,0.005748,0.249934,0,0);}
.mc2_c00154{transform:matrix(0.192360,-0.003078,0.003999,0.249968,0,0);-ms-transform:matrix(0.192360,-0.003078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192360,-0.003078,0.003999,0.249968,0,0);}
.m8e_c00154{transform:matrix(0.193185,-0.003091,0.003999,0.249968,0,0);-ms-transform:matrix(0.193185,-0.003091,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193185,-0.003091,0.003999,0.249968,0,0);}
.me4_c00154{transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);-ms-transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);}
.m1c_c00154{transform:matrix(0.193774,-0.004457,0.005748,0.249934,0,0);-ms-transform:matrix(0.193774,-0.004457,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193774,-0.004457,0.005748,0.249934,0,0);}
.m67_c00154{transform:matrix(0.195225,-0.003124,0.003999,0.249968,0,0);-ms-transform:matrix(0.195225,-0.003124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195225,-0.003124,0.003999,0.249968,0,0);}
.me8_c00154{transform:matrix(0.195415,-0.003127,0.003999,0.249968,0,0);-ms-transform:matrix(0.195415,-0.003127,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195415,-0.003127,0.003999,0.249968,0,0);}
.ma8_c00154{transform:matrix(0.195600,-0.003130,0.003999,0.249968,0,0);-ms-transform:matrix(0.195600,-0.003130,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195600,-0.003130,0.003999,0.249968,0,0);}
.m9f_c00154{transform:matrix(0.195655,-0.003130,0.003999,0.249968,0,0);-ms-transform:matrix(0.195655,-0.003130,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195655,-0.003130,0.003999,0.249968,0,0);}
.md6_c00154{transform:matrix(0.196200,-0.003139,0.003999,0.249968,0,0);-ms-transform:matrix(0.196200,-0.003139,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196200,-0.003139,0.003999,0.249968,0,0);}
.mb3_c00154{transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);-ms-transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);}
.mcc_c00154{transform:matrix(0.196535,-0.003145,0.003999,0.249968,0,0);-ms-transform:matrix(0.196535,-0.003145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196535,-0.003145,0.003999,0.249968,0,0);}
.m3a_c00154{transform:matrix(0.196855,-0.003150,0.003999,0.249968,0,0);-ms-transform:matrix(0.196855,-0.003150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196855,-0.003150,0.003999,0.249968,0,0);}
.mab_c00154{transform:matrix(0.197005,-0.003152,0.003999,0.249968,0,0);-ms-transform:matrix(0.197005,-0.003152,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197005,-0.003152,0.003999,0.249968,0,0);}
.m92_c00154{transform:matrix(0.197665,-0.003163,0.003999,0.249968,0,0);-ms-transform:matrix(0.197665,-0.003163,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197665,-0.003163,0.003999,0.249968,0,0);}
.m2b_c00154{transform:matrix(0.197905,-0.003166,0.003999,0.249968,0,0);-ms-transform:matrix(0.197905,-0.003166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197905,-0.003166,0.003999,0.249968,0,0);}
.m10_c00154{transform:matrix(0.197968,-0.004553,0.005748,0.249934,0,0);-ms-transform:matrix(0.197968,-0.004553,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197968,-0.004553,0.005748,0.249934,0,0);}
.m7d_c00154{transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);}
.m32_c00154{transform:matrix(0.198335,-0.003173,0.003999,0.249968,0,0);-ms-transform:matrix(0.198335,-0.003173,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198335,-0.003173,0.003999,0.249968,0,0);}
.m9d_c00154{transform:matrix(0.198405,-0.003174,0.003999,0.249968,0,0);-ms-transform:matrix(0.198405,-0.003174,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198405,-0.003174,0.003999,0.249968,0,0);}
.m49_c00154{transform:matrix(0.198580,-0.003177,0.003999,0.249968,0,0);-ms-transform:matrix(0.198580,-0.003177,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198580,-0.003177,0.003999,0.249968,0,0);}
.md2_c00154{transform:matrix(0.198735,-0.003180,0.003999,0.249968,0,0);-ms-transform:matrix(0.198735,-0.003180,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198735,-0.003180,0.003999,0.249968,0,0);}
.m16_c00154{transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);-ms-transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);}
.mbb_c00154{transform:matrix(0.199045,-0.003185,0.003999,0.249968,0,0);-ms-transform:matrix(0.199045,-0.003185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199045,-0.003185,0.003999,0.249968,0,0);}
.m9_c00154{transform:matrix(0.199497,-0.004588,0.005748,0.249934,0,0);-ms-transform:matrix(0.199497,-0.004588,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199497,-0.004588,0.005748,0.249934,0,0);}
.m54_c00154{transform:matrix(0.199639,-0.003194,0.003999,0.249968,0,0);-ms-transform:matrix(0.199639,-0.003194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199639,-0.003194,0.003999,0.249968,0,0);}
.m4f_c00154{transform:matrix(0.199684,-0.003195,0.003999,0.249968,0,0);-ms-transform:matrix(0.199684,-0.003195,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199684,-0.003195,0.003999,0.249968,0,0);}
.mbd_c00154{transform:matrix(0.200309,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200309,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200309,-0.003205,0.003999,0.249968,0,0);}
.m8a_c00154{transform:matrix(0.200319,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200319,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200319,-0.003205,0.003999,0.249968,0,0);}
.mc0_c00154{transform:matrix(0.200529,-0.003208,0.003999,0.249968,0,0);-ms-transform:matrix(0.200529,-0.003208,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200529,-0.003208,0.003999,0.249968,0,0);}
.m36_c00154{transform:matrix(0.200584,-0.003209,0.003999,0.249968,0,0);-ms-transform:matrix(0.200584,-0.003209,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200584,-0.003209,0.003999,0.249968,0,0);}
.m17_c00154{transform:matrix(0.200652,-0.004615,0.005748,0.249934,0,0);-ms-transform:matrix(0.200652,-0.004615,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200652,-0.004615,0.005748,0.249934,0,0);}
.m39_c00154{transform:matrix(0.201394,-0.003222,0.003999,0.249968,0,0);-ms-transform:matrix(0.201394,-0.003222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201394,-0.003222,0.003999,0.249968,0,0);}
.m29_c00154{transform:matrix(0.201949,-0.003231,0.003999,0.249968,0,0);-ms-transform:matrix(0.201949,-0.003231,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201949,-0.003231,0.003999,0.249968,0,0);}
.m69_c00154{transform:matrix(0.202609,-0.003242,0.003999,0.249968,0,0);-ms-transform:matrix(0.202609,-0.003242,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202609,-0.003242,0.003999,0.249968,0,0);}
.me0_c00154{transform:matrix(0.202704,-0.003243,0.003999,0.249968,0,0);-ms-transform:matrix(0.202704,-0.003243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202704,-0.003243,0.003999,0.249968,0,0);}
.m2c_c00154{transform:matrix(0.203949,-0.003263,0.003999,0.249968,0,0);-ms-transform:matrix(0.203949,-0.003263,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203949,-0.003263,0.003999,0.249968,0,0);}
.m94_c00154{transform:matrix(0.205264,-0.003284,0.003999,0.249968,0,0);-ms-transform:matrix(0.205264,-0.003284,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205264,-0.003284,0.003999,0.249968,0,0);}
.mc9_c00154{transform:matrix(0.205459,-0.003287,0.003999,0.249968,0,0);-ms-transform:matrix(0.205459,-0.003287,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205459,-0.003287,0.003999,0.249968,0,0);}
.m84_c00154{transform:matrix(0.205594,-0.003289,0.003999,0.249968,0,0);-ms-transform:matrix(0.205594,-0.003289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205594,-0.003289,0.003999,0.249968,0,0);}
.m55_c00154{transform:matrix(0.205694,-0.003291,0.003999,0.249968,0,0);-ms-transform:matrix(0.205694,-0.003291,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205694,-0.003291,0.003999,0.249968,0,0);}
.m5b_c00154{transform:matrix(0.205974,-0.003296,0.003999,0.249968,0,0);-ms-transform:matrix(0.205974,-0.003296,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205974,-0.003296,0.003999,0.249968,0,0);}
.ma4_c00154{transform:matrix(0.206189,-0.003299,0.003999,0.249968,0,0);-ms-transform:matrix(0.206189,-0.003299,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206189,-0.003299,0.003999,0.249968,0,0);}
.m4b_c00154{transform:matrix(0.206534,-0.003305,0.003999,0.249968,0,0);-ms-transform:matrix(0.206534,-0.003305,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206534,-0.003305,0.003999,0.249968,0,0);}
.m77_c00154{transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);-ms-transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);}
.md5_c00154{transform:matrix(0.206829,-0.003309,0.003999,0.249968,0,0);-ms-transform:matrix(0.206829,-0.003309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206829,-0.003309,0.003999,0.249968,0,0);}
.m74_c00154{transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);-ms-transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);}
.md8_c00154{transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);}
.m40_c00154{transform:matrix(0.207568,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207568,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207568,-0.003321,0.003999,0.249968,0,0);}
.m44_c00154{transform:matrix(0.207668,-0.003323,0.003999,0.249968,0,0);-ms-transform:matrix(0.207668,-0.003323,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207668,-0.003323,0.003999,0.249968,0,0);}
.mce_c00154{transform:matrix(0.207733,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207733,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207733,-0.003324,0.003999,0.249968,0,0);}
.m33_c00154{transform:matrix(0.208003,-0.003328,0.003999,0.249968,0,0);-ms-transform:matrix(0.208003,-0.003328,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208003,-0.003328,0.003999,0.249968,0,0);}
.m4e_c00154{transform:matrix(0.208178,-0.003331,0.003999,0.249968,0,0);-ms-transform:matrix(0.208178,-0.003331,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208178,-0.003331,0.003999,0.249968,0,0);}
.md0_c00154{transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);-ms-transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);}
.m72_c00154{transform:matrix(0.208998,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.208998,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208998,-0.003344,0.003999,0.249968,0,0);}
.mb6_c00154{transform:matrix(0.209008,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.209008,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209008,-0.003344,0.003999,0.249968,0,0);}
.m3b_c00154{transform:matrix(0.209318,-0.003349,0.003999,0.249968,0,0);-ms-transform:matrix(0.209318,-0.003349,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209318,-0.003349,0.003999,0.249968,0,0);}
.m7f_c00154{transform:matrix(0.209438,-0.003351,0.003999,0.249968,0,0);-ms-transform:matrix(0.209438,-0.003351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209438,-0.003351,0.003999,0.249968,0,0);}
.m1e_c00154{transform:matrix(0.209869,-0.004827,0.005748,0.249934,0,0);-ms-transform:matrix(0.209869,-0.004827,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209869,-0.004827,0.005748,0.249934,0,0);}
.m23_c00154{transform:matrix(0.210489,-0.004841,0.005748,0.249934,0,0);-ms-transform:matrix(0.210489,-0.004841,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210489,-0.004841,0.005748,0.249934,0,0);}
.m13_c00154{transform:matrix(0.211079,-0.004855,0.005748,0.249934,0,0);-ms-transform:matrix(0.211079,-0.004855,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211079,-0.004855,0.005748,0.249934,0,0);}
.m27_c00154{transform:matrix(0.211103,-0.003378,0.003999,0.249968,0,0);-ms-transform:matrix(0.211103,-0.003378,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211103,-0.003378,0.003999,0.249968,0,0);}
.mc_c00154{transform:matrix(0.211779,-0.004871,0.005748,0.249934,0,0);-ms-transform:matrix(0.211779,-0.004871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211779,-0.004871,0.005748,0.249934,0,0);}
.m6c_c00154{transform:matrix(0.211858,-0.003390,0.003999,0.249968,0,0);-ms-transform:matrix(0.211858,-0.003390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211858,-0.003390,0.003999,0.249968,0,0);}
.m3e_c00154{transform:matrix(0.211913,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211913,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211913,-0.003391,0.003999,0.249968,0,0);}
.m3c_c00154{transform:matrix(0.211963,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211963,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211963,-0.003391,0.003999,0.249968,0,0);}
.ma3_c00154{transform:matrix(0.212008,-0.003392,0.003999,0.249968,0,0);-ms-transform:matrix(0.212008,-0.003392,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212008,-0.003392,0.003999,0.249968,0,0);}
.me_c00154{transform:matrix(0.212129,-0.004879,0.005748,0.249934,0,0);-ms-transform:matrix(0.212129,-0.004879,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212129,-0.004879,0.005748,0.249934,0,0);}
.m1d_c00154{transform:matrix(0.212194,-0.004880,0.005748,0.249934,0,0);-ms-transform:matrix(0.212194,-0.004880,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212194,-0.004880,0.005748,0.249934,0,0);}
.mdd_c00154{transform:matrix(0.212858,-0.003406,0.003999,0.249968,0,0);-ms-transform:matrix(0.212858,-0.003406,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212858,-0.003406,0.003999,0.249968,0,0);}
.m28_c00154{transform:matrix(0.213613,-0.003418,0.003999,0.249968,0,0);-ms-transform:matrix(0.213613,-0.003418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213613,-0.003418,0.003999,0.249968,0,0);}
.m5d_c00154{transform:matrix(0.213638,-0.003418,0.003999,0.249968,0,0);-ms-transform:matrix(0.213638,-0.003418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213638,-0.003418,0.003999,0.249968,0,0);}
.mc8_c00154{transform:matrix(0.213803,-0.003421,0.003999,0.249968,0,0);-ms-transform:matrix(0.213803,-0.003421,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213803,-0.003421,0.003999,0.249968,0,0);}
.mac_c00154{transform:matrix(0.214168,-0.003427,0.003999,0.249968,0,0);-ms-transform:matrix(0.214168,-0.003427,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214168,-0.003427,0.003999,0.249968,0,0);}
.m1a_c00154{transform:matrix(0.214278,-0.004928,0.005748,0.249934,0,0);-ms-transform:matrix(0.214278,-0.004928,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214278,-0.004928,0.005748,0.249934,0,0);}
.m19_c00154{transform:matrix(0.214608,-0.004936,0.005748,0.249934,0,0);-ms-transform:matrix(0.214608,-0.004936,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214608,-0.004936,0.005748,0.249934,0,0);}
.m70_c00154{transform:matrix(0.214738,-0.003436,0.003999,0.249968,0,0);-ms-transform:matrix(0.214738,-0.003436,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214738,-0.003436,0.003999,0.249968,0,0);}
.mcf_c00154{transform:matrix(0.214823,-0.003437,0.003999,0.249968,0,0);-ms-transform:matrix(0.214823,-0.003437,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214823,-0.003437,0.003999,0.249968,0,0);}
.m8f_c00154{transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);}
.mc7_c00154{transform:matrix(0.215367,-0.003446,0.003999,0.249968,0,0);-ms-transform:matrix(0.215367,-0.003446,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215367,-0.003446,0.003999,0.249968,0,0);}
.m6f_c00154{transform:matrix(0.215492,-0.003448,0.003999,0.249968,0,0);-ms-transform:matrix(0.215492,-0.003448,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215492,-0.003448,0.003999,0.249968,0,0);}
.m50_c00154{transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);-ms-transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);}
.mcd_c00154{transform:matrix(0.217492,-0.003480,0.003999,0.249968,0,0);-ms-transform:matrix(0.217492,-0.003480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217492,-0.003480,0.003999,0.249968,0,0);}
.m9a_c00154{transform:matrix(0.217932,-0.003487,0.003999,0.249968,0,0);-ms-transform:matrix(0.217932,-0.003487,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217932,-0.003487,0.003999,0.249968,0,0);}
.md3_c00154{transform:matrix(0.218302,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218302,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218302,-0.003493,0.003999,0.249968,0,0);}
.m1b_c00154{transform:matrix(0.218512,-0.005026,0.005748,0.249934,0,0);-ms-transform:matrix(0.218512,-0.005026,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218512,-0.005026,0.005748,0.249934,0,0);}
.mdb_c00154{transform:matrix(0.218967,-0.003503,0.003999,0.249968,0,0);-ms-transform:matrix(0.218967,-0.003503,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218967,-0.003503,0.003999,0.249968,0,0);}
.ma6_c00154{transform:matrix(0.219682,-0.003515,0.003999,0.249968,0,0);-ms-transform:matrix(0.219682,-0.003515,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219682,-0.003515,0.003999,0.249968,0,0);}
.me6_c00154{transform:matrix(0.220727,-0.003532,0.003999,0.249968,0,0);-ms-transform:matrix(0.220727,-0.003532,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220727,-0.003532,0.003999,0.249968,0,0);}
.m5f_c00154{transform:matrix(0.221212,-0.003539,0.003999,0.249968,0,0);-ms-transform:matrix(0.221212,-0.003539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221212,-0.003539,0.003999,0.249968,0,0);}
.mdf_c00154{transform:matrix(0.221912,-0.003551,0.003999,0.249968,0,0);-ms-transform:matrix(0.221912,-0.003551,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221912,-0.003551,0.003999,0.249968,0,0);}
.m66_c00154{transform:matrix(0.222007,-0.003552,0.003999,0.249968,0,0);-ms-transform:matrix(0.222007,-0.003552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222007,-0.003552,0.003999,0.249968,0,0);}
.mc5_c00154{transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);-ms-transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);}
.m9e_c00154{transform:matrix(0.222781,-0.003565,0.003999,0.249968,0,0);-ms-transform:matrix(0.222781,-0.003565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222781,-0.003565,0.003999,0.249968,0,0);}
.m6d_c00154{transform:matrix(0.223391,-0.003574,0.003999,0.249968,0,0);-ms-transform:matrix(0.223391,-0.003574,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223391,-0.003574,0.003999,0.249968,0,0);}
.m52_c00154{transform:matrix(0.224016,-0.003584,0.003999,0.249968,0,0);-ms-transform:matrix(0.224016,-0.003584,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224016,-0.003584,0.003999,0.249968,0,0);}
.m87_c00154{transform:matrix(0.224996,-0.003600,0.003999,0.249968,0,0);-ms-transform:matrix(0.224996,-0.003600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224996,-0.003600,0.003999,0.249968,0,0);}
.m1f_c00154{transform:matrix(0.226660,-0.005213,0.005748,0.249934,0,0);-ms-transform:matrix(0.226660,-0.005213,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226660,-0.005213,0.005748,0.249934,0,0);}
.m7_c00154{transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);-ms-transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);}
.m82_c00154{transform:matrix(0.227821,-0.003645,0.003999,0.249968,0,0);-ms-transform:matrix(0.227821,-0.003645,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227821,-0.003645,0.003999,0.249968,0,0);}
.m88_c00154{transform:matrix(0.229626,-0.003674,0.003999,0.249968,0,0);-ms-transform:matrix(0.229626,-0.003674,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229626,-0.003674,0.003999,0.249968,0,0);}
.m3d_c00154{transform:matrix(0.230211,-0.003683,0.003999,0.249968,0,0);-ms-transform:matrix(0.230211,-0.003683,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230211,-0.003683,0.003999,0.249968,0,0);}
.m8c_c00154{transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);-ms-transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);}
.m4a_c00154{transform:matrix(0.231090,-0.003697,0.003999,0.249968,0,0);-ms-transform:matrix(0.231090,-0.003697,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231090,-0.003697,0.003999,0.249968,0,0);}
.m47_c00154{transform:matrix(0.231290,-0.003701,0.003999,0.249968,0,0);-ms-transform:matrix(0.231290,-0.003701,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231290,-0.003701,0.003999,0.249968,0,0);}
.m12_c00154{transform:matrix(0.231674,-0.005328,0.005748,0.249934,0,0);-ms-transform:matrix(0.231674,-0.005328,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231674,-0.005328,0.005748,0.249934,0,0);}
.md9_c00154{transform:matrix(0.231990,-0.003712,0.003999,0.249968,0,0);-ms-transform:matrix(0.231990,-0.003712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231990,-0.003712,0.003999,0.249968,0,0);}
.m20_c00154{transform:matrix(0.232279,-0.005342,0.005748,0.249934,0,0);-ms-transform:matrix(0.232279,-0.005342,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232279,-0.005342,0.005748,0.249934,0,0);}
.m25_c00154{transform:matrix(0.236113,-0.005431,0.005748,0.249934,0,0);-ms-transform:matrix(0.236113,-0.005431,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236113,-0.005431,0.005748,0.249934,0,0);}
.mbe_c00154{transform:matrix(0.236515,-0.003784,0.003999,0.249968,0,0);-ms-transform:matrix(0.236515,-0.003784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236515,-0.003784,0.003999,0.249968,0,0);}
.me9_c00154{transform:matrix(0.237875,-0.003806,0.003999,0.249968,0,0);-ms-transform:matrix(0.237875,-0.003806,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237875,-0.003806,0.003999,0.249968,0,0);}
.m24_c00154{transform:matrix(0.238312,-0.005481,0.005748,0.249934,0,0);-ms-transform:matrix(0.238312,-0.005481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.238312,-0.005481,0.005748,0.249934,0,0);}
.m79_c00154{transform:matrix(0.240034,-0.003841,0.003999,0.249968,0,0);-ms-transform:matrix(0.240034,-0.003841,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240034,-0.003841,0.003999,0.249968,0,0);}
.m26_c00154{transform:matrix(0.240044,-0.003841,0.003999,0.249968,0,0);-ms-transform:matrix(0.240044,-0.003841,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240044,-0.003841,0.003999,0.249968,0,0);}
.mda_c00154{transform:matrix(0.240944,-0.003855,0.003999,0.249968,0,0);-ms-transform:matrix(0.240944,-0.003855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240944,-0.003855,0.003999,0.249968,0,0);}
.m99_c00154{transform:matrix(0.245669,-0.003931,0.003999,0.249968,0,0);-ms-transform:matrix(0.245669,-0.003931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245669,-0.003931,0.003999,0.249968,0,0);}
.m3f_c00154{transform:matrix(0.246338,-0.003941,0.003999,0.249968,0,0);-ms-transform:matrix(0.246338,-0.003941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246338,-0.003941,0.003999,0.249968,0,0);}
.m8_c00154{transform:matrix(0.248344,-0.005712,0.005748,0.249934,0,0);-ms-transform:matrix(0.248344,-0.005712,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248344,-0.005712,0.005748,0.249934,0,0);}
.md7_c00154{transform:matrix(0.250033,-0.004001,0.003999,0.249968,0,0);-ms-transform:matrix(0.250033,-0.004001,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250033,-0.004001,0.003999,0.249968,0,0);}
.mc6_c00154{transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-ms-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);}
.m6a_c00154{transform:matrix(0.252868,-0.004046,0.003999,0.249968,0,0);-ms-transform:matrix(0.252868,-0.004046,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252868,-0.004046,0.003999,0.249968,0,0);}
.m2e_c00154{transform:matrix(0.253318,-0.004053,0.003999,0.249968,0,0);-ms-transform:matrix(0.253318,-0.004053,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253318,-0.004053,0.003999,0.249968,0,0);}
.m62_c00154{transform:matrix(0.254587,-0.004073,0.003999,0.249968,0,0);-ms-transform:matrix(0.254587,-0.004073,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254587,-0.004073,0.003999,0.249968,0,0);}
.m64_c00154{transform:matrix(0.255537,-0.004089,0.003999,0.249968,0,0);-ms-transform:matrix(0.255537,-0.004089,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255537,-0.004089,0.003999,0.249968,0,0);}
.m38_c00154{transform:matrix(0.256277,-0.004100,0.003999,0.249968,0,0);-ms-transform:matrix(0.256277,-0.004100,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256277,-0.004100,0.003999,0.249968,0,0);}
.mdc_c00154{transform:matrix(0.256657,-0.004107,0.003999,0.249968,0,0);-ms-transform:matrix(0.256657,-0.004107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256657,-0.004107,0.003999,0.249968,0,0);}
.m83_c00154{transform:matrix(0.267656,-0.004282,0.003999,0.249968,0,0);-ms-transform:matrix(0.267656,-0.004282,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267656,-0.004282,0.003999,0.249968,0,0);}
.mcb_c00154{transform:matrix(0.268036,-0.004289,0.003999,0.249968,0,0);-ms-transform:matrix(0.268036,-0.004289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268036,-0.004289,0.003999,0.249968,0,0);}
.mca_c00154{transform:matrix(0.270800,-0.004333,0.003999,0.249968,0,0);-ms-transform:matrix(0.270800,-0.004333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270800,-0.004333,0.003999,0.249968,0,0);}
.m34_c00154{transform:matrix(0.273860,-0.004382,0.003999,0.249968,0,0);-ms-transform:matrix(0.273860,-0.004382,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273860,-0.004382,0.003999,0.249968,0,0);}
.m90_c00154{transform:matrix(0.274470,-0.004392,0.003999,0.249968,0,0);-ms-transform:matrix(0.274470,-0.004392,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274470,-0.004392,0.003999,0.249968,0,0);}
.m58_c00154{transform:matrix(0.274940,-0.004399,0.003999,0.249968,0,0);-ms-transform:matrix(0.274940,-0.004399,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274940,-0.004399,0.003999,0.249968,0,0);}
.m61_c00154{transform:matrix(0.275625,-0.004410,0.003999,0.249968,0,0);-ms-transform:matrix(0.275625,-0.004410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275625,-0.004410,0.003999,0.249968,0,0);}
.mb_c00154{transform:matrix(0.282635,-0.006501,0.005748,0.249934,0,0);-ms-transform:matrix(0.282635,-0.006501,0.005748,0.249934,0,0);-webkit-transform:matrix(0.282635,-0.006501,0.005748,0.249934,0,0);}
.m37_c00154{transform:matrix(0.292838,-0.004685,0.003999,0.249968,0,0);-ms-transform:matrix(0.292838,-0.004685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.292838,-0.004685,0.003999,0.249968,0,0);}
.m91_c00154{transform:matrix(0.325223,-0.005204,0.003999,0.249968,0,0);-ms-transform:matrix(0.325223,-0.005204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.325223,-0.005204,0.003999,0.249968,0,0);}
.m2f_c00154{transform:matrix(0.340906,-0.005455,0.003999,0.249968,0,0);-ms-transform:matrix(0.340906,-0.005455,0.003999,0.249968,0,0);-webkit-transform:matrix(0.340906,-0.005455,0.003999,0.249968,0,0);}
.m6b_c00154{transform:matrix(0.344541,-0.005513,0.003999,0.249968,0,0);-ms-transform:matrix(0.344541,-0.005513,0.003999,0.249968,0,0);-webkit-transform:matrix(0.344541,-0.005513,0.003999,0.249968,0,0);}
.m5a_c00154{transform:matrix(0.368453,-0.005895,0.003999,0.249968,0,0);-ms-transform:matrix(0.368453,-0.005895,0.003999,0.249968,0,0);-webkit-transform:matrix(0.368453,-0.005895,0.003999,0.249968,0,0);}
.m98_c00154{transform:matrix(0.382261,-0.006116,0.003999,0.249968,0,0);-ms-transform:matrix(0.382261,-0.006116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.382261,-0.006116,0.003999,0.249968,0,0);}
.m11_c00154{transform:matrix(0.397875,-0.009151,0.005748,0.249934,0,0);-ms-transform:matrix(0.397875,-0.009151,0.005748,0.249934,0,0);-webkit-transform:matrix(0.397875,-0.009151,0.005748,0.249934,0,0);}
.m63_c00154{transform:matrix(0.509615,-0.008154,0.003999,0.249968,0,0);-ms-transform:matrix(0.509615,-0.008154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.509615,-0.008154,0.003999,0.249968,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:0.000000px;}
.fc0_c00154{color:transparent;}
.fs12_c00154{font-size:58.807526px;}
.fsa_c00154{font-size:59.857660px;}
.fs5_c00154{font-size:59.865828px;}
.fs6_c00154{font-size:60.907795px;}
.fsf_c00154{font-size:61.957929px;}
.fs4_c00154{font-size:61.966384px;}
.fs7_c00154{font-size:63.008063px;}
.fsb_c00154{font-size:64.058198px;}
.fs8_c00154{font-size:65.108332px;}
.fse_c00154{font-size:67.208601px;}
.fs11_c00154{font-size:68.258735px;}
.fs3_c00154{font-size:68.268050px;}
.fsd_c00154{font-size:69.308870px;}
.fs2_c00154{font-size:70.368605px;}
.fs10_c00154{font-size:71.409139px;}
.fs9_c00154{font-size:72.459273px;}
.fs1_c00154{font-size:72.469160px;}
.fsc_c00154{font-size:76.659811px;}
.fs0_c00154{font-size:81.921660px;}
.y0_c00154{bottom:0.000000px;}
.yed_c00154{bottom:34.137156px;}
.yec_c00154{bottom:34.137612px;}
.ye8_c00154{bottom:34.137780px;}
.yeb_c00154{bottom:34.137816px;}
.yea_c00154{bottom:34.137888px;}
.ye7_c00154{bottom:34.138284px;}
.ye9_c00154{bottom:34.138296px;}
.ye6_c00154{bottom:52.900368px;}
.ye5_c00154{bottom:52.900416px;}
.ye4_c00154{bottom:52.900440px;}
.ye3_c00154{bottom:52.901100px;}
.ye1_c00154{bottom:52.901232px;}
.ye2_c00154{bottom:52.901820px;}
.ye0_c00154{bottom:70.763124px;}
.yde_c00154{bottom:70.763340px;}
.ydf_c00154{bottom:70.763628px;}
.ydb_c00154{bottom:70.763640px;}
.ydd_c00154{bottom:70.763748px;}
.ydc_c00154{bottom:70.763796px;}
.yd9_c00154{bottom:70.763940px;}
.yda_c00154{bottom:70.764048px;}
.yd8_c00154{bottom:70.764528px;}
.yd0_c00154{bottom:86.083404px;}
.yd1_c00154{bottom:87.222324px;}
.yd2_c00154{bottom:87.924048px;}
.yd3_c00154{bottom:88.307280px;}
.yd4_c00154{bottom:88.607016px;}
.yd5_c00154{bottom:88.968780px;}
.yd6_c00154{bottom:89.192688px;}
.yd7_c00154{bottom:89.879904px;}
.yc8_c00154{bottom:100.936368px;}
.yc9_c00154{bottom:101.853900px;}
.yca_c00154{bottom:102.178452px;}
.ycb_c00154{bottom:102.673476px;}
.ycc_c00154{bottom:103.686120px;}
.ycd_c00154{bottom:104.030772px;}
.yce_c00154{bottom:105.003144px;}
.ycf_c00154{bottom:105.306444px;}
.ybf_c00154{bottom:122.404596px;}
.yc0_c00154{bottom:122.404608px;}
.yc1_c00154{bottom:122.405100px;}
.yc3_c00154{bottom:122.405112px;}
.yc5_c00154{bottom:122.405376px;}
.yc2_c00154{bottom:122.405496px;}
.yc7_c00154{bottom:122.405532px;}
.yc4_c00154{bottom:122.405724px;}
.yc6_c00154{bottom:122.405988px;}
.yb6_c00154{bottom:135.230076px;}
.yb7_c00154{bottom:135.841908px;}
.yb8_c00154{bottom:136.041996px;}
.yb9_c00154{bottom:136.300620px;}
.yba_c00154{bottom:137.305740px;}
.ybb_c00154{bottom:137.626692px;}
.ybc_c00154{bottom:138.486204px;}
.ybd_c00154{bottom:139.060140px;}
.ybe_c00154{bottom:139.519188px;}
.yaf_c00154{bottom:152.508276px;}
.yb0_c00154{bottom:153.004620px;}
.yb1_c00154{bottom:153.732852px;}
.yb2_c00154{bottom:154.172712px;}
.yb3_c00154{bottom:154.421712px;}
.yb4_c00154{bottom:155.301624px;}
.yb5_c00154{bottom:155.576544px;}
.yae_c00154{bottom:172.865244px;}
.yad_c00154{bottom:172.865580px;}
.ya8_c00154{bottom:172.865616px;}
.ya9_c00154{bottom:172.866072px;}
.yac_c00154{bottom:172.866264px;}
.yaa_c00154{bottom:172.866432px;}
.yab_c00154{bottom:172.866672px;}
.y9f_c00154{bottom:186.803688px;}
.ya0_c00154{bottom:187.335876px;}
.ya1_c00154{bottom:188.017728px;}
.ya2_c00154{bottom:188.167440px;}
.ya3_c00154{bottom:188.733888px;}
.ya4_c00154{bottom:189.471936px;}
.ya5_c00154{bottom:189.623952px;}
.ya6_c00154{bottom:190.020576px;}
.ya7_c00154{bottom:190.875348px;}
.y99_c00154{bottom:205.165092px;}
.y9a_c00154{bottom:205.438272px;}
.y9b_c00154{bottom:205.945836px;}
.y9c_c00154{bottom:207.060396px;}
.y9d_c00154{bottom:207.516672px;}
.y9e_c00154{bottom:207.756696px;}
.y93_c00154{bottom:223.797180px;}
.y94_c00154{bottom:224.536788px;}
.y95_c00154{bottom:224.679576px;}
.y96_c00154{bottom:225.222684px;}
.y97_c00154{bottom:225.492924px;}
.y98_c00154{bottom:226.234332px;}
.y8f_c00154{bottom:241.347240px;}
.y92_c00154{bottom:241.347432px;}
.y90_c00154{bottom:241.347468px;}
.y8d_c00154{bottom:241.347708px;}
.y8b_c00154{bottom:241.347756px;}
.y91_c00154{bottom:241.347768px;}
.y8e_c00154{bottom:241.347864px;}
.y8c_c00154{bottom:241.347960px;}
.y85_c00154{bottom:259.473780px;}
.y87_c00154{bottom:259.473972px;}
.y84_c00154{bottom:259.474068px;}
.y86_c00154{bottom:259.474260px;}
.y88_c00154{bottom:259.474560px;}
.y8a_c00154{bottom:259.474584px;}
.y89_c00154{bottom:259.474656px;}
.y7b_c00154{bottom:274.833636px;}
.y7c_c00154{bottom:275.131620px;}
.y7d_c00154{bottom:275.462268px;}
.y7e_c00154{bottom:275.695500px;}
.y7f_c00154{bottom:276.737700px;}
.y80_c00154{bottom:277.049712px;}
.y81_c00154{bottom:277.500192px;}
.y82_c00154{bottom:277.807512px;}
.y83_c00154{bottom:278.241780px;}
.y73_c00154{bottom:293.466504px;}
.y74_c00154{bottom:294.137760px;}
.y75_c00154{bottom:294.884916px;}
.y76_c00154{bottom:295.034208px;}
.y77_c00154{bottom:295.300908px;}
.y78_c00154{bottom:295.533708px;}
.y79_c00154{bottom:295.958484px;}
.y7a_c00154{bottom:296.231400px;}
.y6f_c00154{bottom:312.935868px;}
.y6b_c00154{bottom:312.936168px;}
.y70_c00154{bottom:312.936192px;}
.y71_c00154{bottom:312.936216px;}
.y72_c00154{bottom:312.936228px;}
.y6c_c00154{bottom:312.936312px;}
.y6e_c00154{bottom:312.936372px;}
.y6d_c00154{bottom:312.936768px;}
.y6a_c00154{bottom:312.936888px;}
.y62_c00154{bottom:326.687448px;}
.y63_c00154{bottom:327.734544px;}
.y64_c00154{bottom:328.083420px;}
.y65_c00154{bottom:329.360220px;}
.y66_c00154{bottom:330.206064px;}
.y67_c00154{bottom:331.378764px;}
.y68_c00154{bottom:331.712184px;}
.y69_c00154{bottom:332.283000px;}
.y5b_c00154{bottom:343.430640px;}
.y5c_c00154{bottom:344.150712px;}
.y5d_c00154{bottom:344.917128px;}
.y5e_c00154{bottom:345.256476px;}
.y5f_c00154{bottom:346.285260px;}
.y60_c00154{bottom:347.138160px;}
.y61_c00154{bottom:347.619900px;}
.y58_c00154{bottom:362.187624px;}
.y57_c00154{bottom:362.187732px;}
.y59_c00154{bottom:362.187744px;}
.y5a_c00154{bottom:362.188200px;}
.y50_c00154{bottom:377.183460px;}
.y51_c00154{bottom:377.484672px;}
.y52_c00154{bottom:377.657820px;}
.y53_c00154{bottom:378.007104px;}
.y54_c00154{bottom:379.168392px;}
.y55_c00154{bottom:379.475076px;}
.y56_c00154{bottom:380.632116px;}
.y48_c00154{bottom:395.005536px;}
.y49_c00154{bottom:395.786808px;}
.y4a_c00154{bottom:395.994696px;}
.y4b_c00154{bottom:396.430980px;}
.y4c_c00154{bottom:397.255884px;}
.y4d_c00154{bottom:397.534488px;}
.y4e_c00154{bottom:398.120856px;}
.y4f_c00154{bottom:398.680044px;}
.y42_c00154{bottom:413.095116px;}
.y43_c00154{bottom:414.011892px;}
.y44_c00154{bottom:414.205224px;}
.y45_c00154{bottom:414.880032px;}
.y46_c00154{bottom:415.495296px;}
.y47_c00154{bottom:416.285916px;}
.y3b_c00154{bottom:429.030252px;}
.y3c_c00154{bottom:429.535596px;}
.y3d_c00154{bottom:431.022228px;}
.y3e_c00154{bottom:432.205836px;}
.y3f_c00154{bottom:432.555180px;}
.y40_c00154{bottom:433.406760px;}
.y41_c00154{bottom:433.679652px;}
.y35_c00154{bottom:446.581824px;}
.y36_c00154{bottom:448.485600px;}
.y37_c00154{bottom:448.935576px;}
.y38_c00154{bottom:449.752992px;}
.y39_c00154{bottom:450.694968px;}
.y3a_c00154{bottom:451.087704px;}
.y2d_c00154{bottom:463.319940px;}
.y2e_c00154{bottom:463.802712px;}
.y2f_c00154{bottom:464.404920px;}
.y30_c00154{bottom:465.599052px;}
.y31_c00154{bottom:465.842676px;}
.y32_c00154{bottom:466.145676px;}
.y33_c00154{bottom:466.825800px;}
.y34_c00154{bottom:467.175216px;}
.y27_c00154{bottom:480.873000px;}
.y28_c00154{bottom:481.339776px;}
.y29_c00154{bottom:482.627328px;}
.y2a_c00154{bottom:483.612504px;}
.y2b_c00154{bottom:484.843608px;}
.y2c_c00154{bottom:485.089824px;}
.y20_c00154{bottom:498.402183px;}
.y21_c00154{bottom:499.498924px;}
.y22_c00154{bottom:500.247534px;}
.y23_c00154{bottom:501.081788px;}
.y24_c00154{bottom:501.395206px;}
.y25_c00154{bottom:502.310999px;}
.y26_c00154{bottom:502.514309px;}
.y19_c00154{bottom:517.573666px;}
.y1a_c00154{bottom:517.831780px;}
.y1b_c00154{bottom:518.409366px;}
.y1c_c00154{bottom:518.971435px;}
.y1d_c00154{bottom:520.044435px;}
.y1e_c00154{bottom:520.225349px;}
.y1f_c00154{bottom:520.762721px;}
.y11_c00154{bottom:532.700835px;}
.y12_c00154{bottom:533.619318px;}
.y13_c00154{bottom:534.213698px;}
.y14_c00154{bottom:534.640022px;}
.y15_c00154{bottom:535.063429px;}
.y16_c00154{bottom:535.933761px;}
.y17_c00154{bottom:537.206057px;}
.y18_c00154{bottom:537.473382px;}
.yb_c00154{bottom:551.063679px;}
.yc_c00154{bottom:551.332365px;}
.yd_c00154{bottom:552.296795px;}
.ye_c00154{bottom:552.704526px;}
.yf_c00154{bottom:553.901940px;}
.y10_c00154{bottom:554.428200px;}
.y4_c00154{bottom:568.887277px;}
.y5_c00154{bottom:569.703421px;}
.y6_c00154{bottom:569.913882px;}
.y7_c00154{bottom:571.126111px;}
.y8_c00154{bottom:571.227535px;}
.y9_c00154{bottom:571.846853px;}
.ya_c00154{bottom:572.063077px;}
.y1_c00154{bottom:583.749000px;}
.y2_c00154{bottom:586.067780px;}
.y3_c00154{bottom:587.176161px;}
.h14_c00154{height:58.807526px;}
.hc_c00154{height:59.857660px;}
.h7_c00154{height:59.865828px;}
.h8_c00154{height:60.907795px;}
.h11_c00154{height:61.957929px;}
.h6_c00154{height:61.966384px;}
.h9_c00154{height:63.008063px;}
.hd_c00154{height:64.058198px;}
.ha_c00154{height:65.108332px;}
.h10_c00154{height:67.208601px;}
.h13_c00154{height:68.258735px;}
.h5_c00154{height:68.268050px;}
.hf_c00154{height:69.308870px;}
.h4_c00154{height:70.368605px;}
.h12_c00154{height:71.409139px;}
.hb_c00154{height:72.459273px;}
.h3_c00154{height:72.469160px;}
.he_c00154{height:76.659811px;}
.h2_c00154{height:81.921660px;}
.h0_c00154{height:623.100000px;}
.h1_c00154{height:623.250000px;}
.w1_c00154{width:383.250000px;}
.w0_c00154{width:383.400000px;}
.x0_c00154{left:0.000000px;}
.x4_c00154{left:34.145687px;}
.x2b_c00154{left:35.867364px;}
.x64_c00154{left:38.577444px;}
.x7a_c00154{left:39.681252px;}
.x21_c00154{left:42.331500px;}
.x30_c00154{left:45.333540px;}
.xb_c00154{left:54.172325px;}
.x6a_c00154{left:55.891320px;}
.x16_c00154{left:58.093004px;}
.x41_c00154{left:60.211056px;}
.x75_c00154{left:61.295880px;}
.x25_c00154{left:63.404448px;}
.x3c_c00154{left:66.533484px;}
.x22_c00154{left:71.505000px;}
.x31_c00154{left:75.042060px;}
.x65_c00154{left:76.621668px;}
.x80_c00154{left:77.768856px;}
.x3d_c00154{left:78.949392px;}
.x76_c00154{left:80.737848px;}
.x6d_c00154{left:83.594112px;}
.x10_c00154{left:85.006812px;}
.x54_c00154{left:87.114192px;}
.x6f_c00154{left:89.640492px;}
.x38_c00154{left:92.443356px;}
.x4d_c00154{left:95.854500px;}
.x4f_c00154{left:97.630152px;}
.x1b_c00154{left:99.564363px;}
.x7b_c00154{left:100.871736px;}
.x5_c00154{left:102.190902px;}
.x3e_c00154{left:103.874184px;}
.x70_c00154{left:105.804492px;}
.x39_c00154{left:107.311836px;}
.x17_c00154{left:110.545959px;}
.x61_c00154{left:114.081072px;}
.x5f_c00154{left:116.234460px;}
.x11_c00154{left:118.027107px;}
.x6_c00154{left:119.758853px;}
.x59_c00154{left:121.508688px;}
.xc_c00154{left:123.053073px;}
.x66_c00154{left:125.332728px;}
.x44_c00154{left:129.536556px;}
.x5a_c00154{left:134.740572px;}
.x35_c00154{left:136.498512px;}
.x3a_c00154{left:138.424320px;}
.x12_c00154{left:141.717833px;}
.x1c_c00154{left:143.596935px;}
.x77_c00154{left:147.435912px;}
.x45_c00154{left:149.526744px;}
.xd_c00154{left:152.199611px;}
.x2c_c00154{left:154.853364px;}
.x18_c00154{left:161.606535px;}
.x13_c00154{left:165.216524px;}
.x26_c00154{left:169.017744px;}
.x1_c00154{left:170.233500px;}
.x57_c00154{left:172.003656px;}
.x6b_c00154{left:173.896512px;}
.x49_c00154{left:177.397152px;}
.x50_c00154{left:179.164680px;}
.x42_c00154{left:181.187016px;}
.x27_c00154{left:183.306504px;}
.x3f_c00154{left:186.769824px;}
.x71_c00154{left:188.683992px;}
.x60_c00154{left:190.230888px;}
.x1d_c00154{left:192.658197px;}
.x36_c00154{left:197.803908px;}
.x28_c00154{left:201.118716px;}
.x51_c00154{left:203.429124px;}
.x5b_c00154{left:205.219620px;}
.x40_c00154{left:208.657020px;}
.x46_c00154{left:210.074784px;}
.x1e_c00154{left:211.113750px;}
.x6e_c00154{left:212.391408px;}
.x14_c00154{left:213.562578px;}
.x3b_c00154{left:217.239840px;}
.x55_c00154{left:219.431664px;}
.x7_c00154{left:220.750883px;}
.x4a_c00154{left:221.916516px;}
.x7c_c00154{left:222.981180px;}
.x52_c00154{left:224.543304px;}
.x62_c00154{left:225.564276px;}
.x8_c00154{left:229.140987px;}
.x32_c00154{left:232.179564px;}
.x2d_c00154{left:234.065364px;}
.x5c_c00154{left:236.273064px;}
.xe_c00154{left:237.735309px;}
.x67_c00154{left:239.975376px;}
.x29_c00154{left:241.094568px;}
.x72_c00154{left:242.403492px;}
.x78_c00154{left:243.568512px;}
.x7d_c00154{left:245.928540px;}
.x58_c00154{left:248.154144px;}
.x33_c00154{left:252.700728px;}
.x5d_c00154{left:255.715032px;}
.x4e_c00154{left:257.334828px;}
.x19_c00154{left:259.089911px;}
.x47_c00154{left:260.286492px;}
.x2a_c00154{left:261.620232px;}
.x53_c00154{left:263.094876px;}
.x1f_c00154{left:265.025202px;}
.x79_c00154{left:266.521392px;}
.x68_c00154{left:268.327788px;}
.x2_c00154{left:271.050000px;}
.xf_c00154{left:275.363106px;}
.x20_c00154{left:276.996858px;}
.x73_c00154{left:278.274492px;}
.x9_c00154{left:280.733028px;}
.x56_c00154{left:282.548196px;}
.x15_c00154{left:284.279220px;}
.x7f_c00154{left:286.774632px;}
.x48_c00154{left:288.613536px;}
.x23_c00154{left:290.494500px;}
.x2e_c00154{left:292.938864px;}
.x63_c00154{left:295.245972px;}
.xa_c00154{left:298.812617px;}
.x4b_c00154{left:301.232724px;}
.x34_c00154{left:302.829936px;}
.x24_c00154{left:305.883000px;}
.x74_c00154{left:306.964992px;}
.x7e_c00154{left:310.734072px;}
.x43_c00154{left:315.124788px;}
.x2f_c00154{left:317.484864px;}
.x3_c00154{left:319.240500px;}
.x6c_c00154{left:321.876408px;}
.x1a_c00154{left:324.446454px;}
.x37_c00154{left:325.525608px;}
.x81_c00154{left:328.091580px;}
.x69_c00154{left:329.346732px;}
.x4c_c00154{left:331.282284px;}
.x5e_c00154{left:337.265412px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
.fs12_c00154{font-size:52.273356pt;}
.fsa_c00154{font-size:53.206809pt;}
.fs5_c00154{font-size:53.214070pt;}
.fs6_c00154{font-size:54.140262pt;}
.fsf_c00154{font-size:55.073715pt;}
.fs4_c00154{font-size:55.081230pt;}
.fs7_c00154{font-size:56.007168pt;}
.fsb_c00154{font-size:56.940620pt;}
.fs8_c00154{font-size:57.874073pt;}
.fse_c00154{font-size:59.740979pt;}
.fs11_c00154{font-size:60.674432pt;}
.fs3_c00154{font-size:60.682711pt;}
.fsd_c00154{font-size:61.607884pt;}
.fs2_c00154{font-size:62.549871pt;}
.fs10_c00154{font-size:63.474790pt;}
.fs9_c00154{font-size:64.408243pt;}
.fs1_c00154{font-size:64.417032pt;}
.fsc_c00154{font-size:68.142054pt;}
.fs0_c00154{font-size:72.819253pt;}
.y0_c00154{bottom:0.000000pt;}
.yed_c00154{bottom:30.344139pt;}
.yec_c00154{bottom:30.344544pt;}
.ye8_c00154{bottom:30.344693pt;}
.yeb_c00154{bottom:30.344725pt;}
.yea_c00154{bottom:30.344789pt;}
.ye7_c00154{bottom:30.345141pt;}
.ye9_c00154{bottom:30.345152pt;}
.ye6_c00154{bottom:47.022549pt;}
.ye5_c00154{bottom:47.022592pt;}
.ye4_c00154{bottom:47.022613pt;}
.ye3_c00154{bottom:47.023200pt;}
.ye1_c00154{bottom:47.023317pt;}
.ye2_c00154{bottom:47.023840pt;}
.ye0_c00154{bottom:62.900555pt;}
.yde_c00154{bottom:62.900747pt;}
.ydf_c00154{bottom:62.901003pt;}
.ydb_c00154{bottom:62.901013pt;}
.ydd_c00154{bottom:62.901109pt;}
.ydc_c00154{bottom:62.901152pt;}
.yd9_c00154{bottom:62.901280pt;}
.yda_c00154{bottom:62.901376pt;}
.yd8_c00154{bottom:62.901803pt;}
.yd0_c00154{bottom:76.518581pt;}
.yd1_c00154{bottom:77.530955pt;}
.yd2_c00154{bottom:78.154709pt;}
.yd3_c00154{bottom:78.495360pt;}
.yd4_c00154{bottom:78.761792pt;}
.yd5_c00154{bottom:79.083360pt;}
.yd6_c00154{bottom:79.282389pt;}
.yd7_c00154{bottom:79.893248pt;}
.yc8_c00154{bottom:89.721216pt;}
.yc9_c00154{bottom:90.536800pt;}
.yca_c00154{bottom:90.825291pt;}
.ycb_c00154{bottom:91.265312pt;}
.ycc_c00154{bottom:92.165440pt;}
.ycd_c00154{bottom:92.471797pt;}
.yce_c00154{bottom:93.336128pt;}
.ycf_c00154{bottom:93.605728pt;}
.ybf_c00154{bottom:108.804085pt;}
.yc0_c00154{bottom:108.804096pt;}
.yc1_c00154{bottom:108.804533pt;}
.yc3_c00154{bottom:108.804544pt;}
.yc5_c00154{bottom:108.804779pt;}
.yc2_c00154{bottom:108.804885pt;}
.yc7_c00154{bottom:108.804917pt;}
.yc4_c00154{bottom:108.805088pt;}
.yc6_c00154{bottom:108.805323pt;}
.yb6_c00154{bottom:120.204512pt;}
.yb7_c00154{bottom:120.748363pt;}
.yb8_c00154{bottom:120.926219pt;}
.yb9_c00154{bottom:121.156107pt;}
.yba_c00154{bottom:122.049547pt;}
.ybb_c00154{bottom:122.334837pt;}
.ybc_c00154{bottom:123.098848pt;}
.ybd_c00154{bottom:123.609013pt;}
.ybe_c00154{bottom:124.017056pt;}
.yaf_c00154{bottom:135.562912pt;}
.yb0_c00154{bottom:136.004107pt;}
.yb1_c00154{bottom:136.651424pt;}
.yb2_c00154{bottom:137.042411pt;}
.yb3_c00154{bottom:137.263744pt;}
.yb4_c00154{bottom:138.045888pt;}
.yb5_c00154{bottom:138.290261pt;}
.yae_c00154{bottom:153.657995pt;}
.yad_c00154{bottom:153.658293pt;}
.ya8_c00154{bottom:153.658325pt;}
.ya9_c00154{bottom:153.658731pt;}
.yac_c00154{bottom:153.658901pt;}
.yaa_c00154{bottom:153.659051pt;}
.yab_c00154{bottom:153.659264pt;}
.y9f_c00154{bottom:166.047723pt;}
.ya0_c00154{bottom:166.520779pt;}
.ya1_c00154{bottom:167.126869pt;}
.ya2_c00154{bottom:167.259947pt;}
.ya3_c00154{bottom:167.763456pt;}
.ya4_c00154{bottom:168.419499pt;}
.ya5_c00154{bottom:168.554624pt;}
.ya6_c00154{bottom:168.907179pt;}
.ya7_c00154{bottom:169.666976pt;}
.y99_c00154{bottom:182.368971pt;}
.y9a_c00154{bottom:182.611797pt;}
.y9b_c00154{bottom:183.062965pt;}
.y9c_c00154{bottom:184.053685pt;}
.y9d_c00154{bottom:184.459264pt;}
.y9e_c00154{bottom:184.672619pt;}
.y93_c00154{bottom:198.930827pt;}
.y94_c00154{bottom:199.588256pt;}
.y95_c00154{bottom:199.715179pt;}
.y96_c00154{bottom:200.197941pt;}
.y97_c00154{bottom:200.438155pt;}
.y98_c00154{bottom:201.097184pt;}
.y8f_c00154{bottom:214.530880pt;}
.y92_c00154{bottom:214.531051pt;}
.y90_c00154{bottom:214.531083pt;}
.y8d_c00154{bottom:214.531296pt;}
.y8b_c00154{bottom:214.531339pt;}
.y91_c00154{bottom:214.531349pt;}
.y8e_c00154{bottom:214.531435pt;}
.y8c_c00154{bottom:214.531520pt;}
.y85_c00154{bottom:230.643360pt;}
.y87_c00154{bottom:230.643531pt;}
.y84_c00154{bottom:230.643616pt;}
.y86_c00154{bottom:230.643787pt;}
.y88_c00154{bottom:230.644053pt;}
.y8a_c00154{bottom:230.644075pt;}
.y89_c00154{bottom:230.644139pt;}
.y7b_c00154{bottom:244.296565pt;}
.y7c_c00154{bottom:244.561440pt;}
.y7d_c00154{bottom:244.855349pt;}
.y7e_c00154{bottom:245.062667pt;}
.y7f_c00154{bottom:245.989067pt;}
.y80_c00154{bottom:246.266411pt;}
.y81_c00154{bottom:246.666837pt;}
.y82_c00154{bottom:246.940011pt;}
.y83_c00154{bottom:247.326027pt;}
.y73_c00154{bottom:260.859115pt;}
.y74_c00154{bottom:261.455787pt;}
.y75_c00154{bottom:262.119925pt;}
.y76_c00154{bottom:262.252629pt;}
.y77_c00154{bottom:262.489696pt;}
.y78_c00154{bottom:262.696629pt;}
.y79_c00154{bottom:263.074208pt;}
.y7a_c00154{bottom:263.316800pt;}
.y6f_c00154{bottom:278.165216pt;}
.y6b_c00154{bottom:278.165483pt;}
.y70_c00154{bottom:278.165504pt;}
.y71_c00154{bottom:278.165525pt;}
.y72_c00154{bottom:278.165536pt;}
.y6c_c00154{bottom:278.165611pt;}
.y6e_c00154{bottom:278.165664pt;}
.y6d_c00154{bottom:278.166016pt;}
.y6a_c00154{bottom:278.166123pt;}
.y62_c00154{bottom:290.388843pt;}
.y63_c00154{bottom:291.319595pt;}
.y64_c00154{bottom:291.629707pt;}
.y65_c00154{bottom:292.764640pt;}
.y66_c00154{bottom:293.516501pt;}
.y67_c00154{bottom:294.558901pt;}
.y68_c00154{bottom:294.855275pt;}
.y69_c00154{bottom:295.362667pt;}
.y5b_c00154{bottom:305.271680pt;}
.y5c_c00154{bottom:305.911744pt;}
.y5d_c00154{bottom:306.593003pt;}
.y5e_c00154{bottom:306.894645pt;}
.y5f_c00154{bottom:307.809120pt;}
.y60_c00154{bottom:308.567253pt;}
.y61_c00154{bottom:308.995467pt;}
.y58_c00154{bottom:321.944555pt;}
.y57_c00154{bottom:321.944651pt;}
.y59_c00154{bottom:321.944661pt;}
.y5a_c00154{bottom:321.945067pt;}
.y50_c00154{bottom:335.274187pt;}
.y51_c00154{bottom:335.541931pt;}
.y52_c00154{bottom:335.695840pt;}
.y53_c00154{bottom:336.006315pt;}
.y54_c00154{bottom:337.038571pt;}
.y55_c00154{bottom:337.311179pt;}
.y56_c00154{bottom:338.339659pt;}
.y48_c00154{bottom:351.116032pt;}
.y49_c00154{bottom:351.810496pt;}
.y4a_c00154{bottom:351.995285pt;}
.y4b_c00154{bottom:352.383093pt;}
.y4c_c00154{bottom:353.116341pt;}
.y4d_c00154{bottom:353.363989pt;}
.y4e_c00154{bottom:353.885205pt;}
.y4f_c00154{bottom:354.382261pt;}
.y42_c00154{bottom:367.195659pt;}
.y43_c00154{bottom:368.010571pt;}
.y44_c00154{bottom:368.182421pt;}
.y45_c00154{bottom:368.782251pt;}
.y46_c00154{bottom:369.329152pt;}
.y47_c00154{bottom:370.031925pt;}
.y3b_c00154{bottom:381.360224pt;}
.y3c_c00154{bottom:381.809419pt;}
.y3d_c00154{bottom:383.130869pt;}
.y3e_c00154{bottom:384.182965pt;}
.y3f_c00154{bottom:384.493493pt;}
.y40_c00154{bottom:385.250453pt;}
.y41_c00154{bottom:385.493024pt;}
.y35_c00154{bottom:396.961621pt;}
.y36_c00154{bottom:398.653867pt;}
.y37_c00154{bottom:399.053845pt;}
.y38_c00154{bottom:399.780437pt;}
.y39_c00154{bottom:400.617749pt;}
.y3a_c00154{bottom:400.966848pt;}
.y2d_c00154{bottom:411.839947pt;}
.y2e_c00154{bottom:412.269077pt;}
.y2f_c00154{bottom:412.804373pt;}
.y30_c00154{bottom:413.865824pt;}
.y31_c00154{bottom:414.082379pt;}
.y32_c00154{bottom:414.351712pt;}
.y33_c00154{bottom:414.956267pt;}
.y34_c00154{bottom:415.266859pt;}
.y27_c00154{bottom:427.442667pt;}
.y28_c00154{bottom:427.857579pt;}
.y29_c00154{bottom:429.002069pt;}
.y2a_c00154{bottom:429.877781pt;}
.y2b_c00154{bottom:430.972096pt;}
.y2c_c00154{bottom:431.190955pt;}
.y20_c00154{bottom:443.024163pt;}
.y21_c00154{bottom:443.999044pt;}
.y22_c00154{bottom:444.664475pt;}
.y23_c00154{bottom:445.406033pt;}
.y24_c00154{bottom:445.684628pt;}
.y25_c00154{bottom:446.498665pt;}
.y26_c00154{bottom:446.679385pt;}
.y19_c00154{bottom:460.065481pt;}
.y1a_c00154{bottom:460.294916pt;}
.y1b_c00154{bottom:460.808325pt;}
.y1c_c00154{bottom:461.307943pt;}
.y1d_c00154{bottom:462.261720pt;}
.y1e_c00154{bottom:462.422532pt;}
.y1f_c00154{bottom:462.900196pt;}
.y11_c00154{bottom:473.511853pt;}
.y12_c00154{bottom:474.328283pt;}
.y13_c00154{bottom:474.856620pt;}
.y14_c00154{bottom:475.235575pt;}
.y15_c00154{bottom:475.611937pt;}
.y16_c00154{bottom:476.385565pt;}
.y17_c00154{bottom:477.516495pt;}
.y18_c00154{bottom:477.754117pt;}
.yb_c00154{bottom:489.834381pt;}
.yc_c00154{bottom:490.073213pt;}
.yd_c00154{bottom:490.930484pt;}
.ye_c00154{bottom:491.292912pt;}
.yf_c00154{bottom:492.357280pt;}
.y10_c00154{bottom:492.825067pt;}
.y4_c00154{bottom:505.677580pt;}
.y5_c00154{bottom:506.403041pt;}
.y6_c00154{bottom:506.590117pt;}
.y7_c00154{bottom:507.667655pt;}
.y8_c00154{bottom:507.757809pt;}
.y9_c00154{bottom:508.308313pt;}
.ya_c00154{bottom:508.500513pt;}
.y1_c00154{bottom:518.888000pt;}
.y2_c00154{bottom:520.949137pt;}
.y3_c00154{bottom:521.934365pt;}
.h14_c00154{height:52.273356pt;}
.hc_c00154{height:53.206809pt;}
.h7_c00154{height:53.214070pt;}
.h8_c00154{height:54.140262pt;}
.h11_c00154{height:55.073715pt;}
.h6_c00154{height:55.081230pt;}
.h9_c00154{height:56.007168pt;}
.hd_c00154{height:56.940620pt;}
.ha_c00154{height:57.874073pt;}
.h10_c00154{height:59.740979pt;}
.h13_c00154{height:60.674432pt;}
.h5_c00154{height:60.682711pt;}
.hf_c00154{height:61.607884pt;}
.h4_c00154{height:62.549871pt;}
.h12_c00154{height:63.474790pt;}
.hb_c00154{height:64.408243pt;}
.h3_c00154{height:64.417032pt;}
.he_c00154{height:68.142054pt;}
.h2_c00154{height:72.819253pt;}
.h0_c00154{height:553.866667pt;}
.h1_c00154{height:554.000000pt;}
.w1_c00154{width:340.666667pt;}
.w0_c00154{width:340.800000pt;}
.x0_c00154{left:0.000000pt;}
.x4_c00154{left:30.351721pt;}
.x2b_c00154{left:31.882101pt;}
.x64_c00154{left:34.291061pt;}
.x7a_c00154{left:35.272224pt;}
.x21_c00154{left:37.628000pt;}
.x30_c00154{left:40.296480pt;}
.xb_c00154{left:48.153177pt;}
.x6a_c00154{left:49.681173pt;}
.x16_c00154{left:51.638225pt;}
.x41_c00154{left:53.520939pt;}
.x75_c00154{left:54.485227pt;}
.x25_c00154{left:56.359509pt;}
.x3c_c00154{left:59.140875pt;}
.x22_c00154{left:63.560000pt;}
.x31_c00154{left:66.704053pt;}
.x65_c00154{left:68.108149pt;}
.x80_c00154{left:69.127872pt;}
.x3d_c00154{left:70.177237pt;}
.x76_c00154{left:71.766976pt;}
.x6d_c00154{left:74.305877pt;}
.x10_c00154{left:75.561611pt;}
.x54_c00154{left:77.434837pt;}
.x6f_c00154{left:79.680437pt;}
.x38_c00154{left:82.171872pt;}
.x4d_c00154{left:85.204000pt;}
.x4f_c00154{left:86.782357pt;}
.x1b_c00154{left:88.501656pt;}
.x7b_c00154{left:89.663765pt;}
.x5_c00154{left:90.836357pt;}
.x3e_c00154{left:92.332608pt;}
.x70_c00154{left:94.048437pt;}
.x39_c00154{left:95.388299pt;}
.x17_c00154{left:98.263075pt;}
.x61_c00154{left:101.405397pt;}
.x5f_c00154{left:103.319520pt;}
.x11_c00154{left:104.912984pt;}
.x6_c00154{left:106.452313pt;}
.x59_c00154{left:108.007723pt;}
.xc_c00154{left:109.380509pt;}
.x66_c00154{left:111.406869pt;}
.x44_c00154{left:115.143605pt;}
.x5a_c00154{left:119.769397pt;}
.x35_c00154{left:121.332011pt;}
.x3a_c00154{left:123.043840pt;}
.x12_c00154{left:125.971407pt;}
.x1c_c00154{left:127.641720pt;}
.x77_c00154{left:131.054144pt;}
.x45_c00154{left:132.912661pt;}
.xd_c00154{left:135.288543pt;}
.x2c_c00154{left:137.647435pt;}
.x18_c00154{left:143.650253pt;}
.x13_c00154{left:146.859132pt;}
.x26_c00154{left:150.237995pt;}
.x1_c00154{left:151.318667pt;}
.x57_c00154{left:152.892139pt;}
.x6b_c00154{left:154.574677pt;}
.x49_c00154{left:157.686357pt;}
.x50_c00154{left:159.257493pt;}
.x42_c00154{left:161.055125pt;}
.x27_c00154{left:162.939115pt;}
.x3f_c00154{left:166.017621pt;}
.x71_c00154{left:167.719104pt;}
.x60_c00154{left:169.094123pt;}
.x1d_c00154{left:171.251731pt;}
.x36_c00154{left:175.825696pt;}
.x28_c00154{left:178.772192pt;}
.x51_c00154{left:180.825888pt;}
.x5b_c00154{left:182.417440pt;}
.x40_c00154{left:185.472907pt;}
.x46_c00154{left:186.733141pt;}
.x1e_c00154{left:187.656667pt;}
.x6e_c00154{left:188.792363pt;}
.x14_c00154{left:189.833403pt;}
.x3b_c00154{left:193.102080pt;}
.x55_c00154{left:195.050368pt;}
.x7_c00154{left:196.223007pt;}
.x4a_c00154{left:197.259125pt;}
.x7c_c00154{left:198.205493pt;}
.x52_c00154{left:199.594048pt;}
.x62_c00154{left:200.501579pt;}
.x8_c00154{left:203.680877pt;}
.x32_c00154{left:206.381835pt;}
.x2d_c00154{left:208.058101pt;}
.x5c_c00154{left:210.020501pt;}
.xe_c00154{left:211.320275pt;}
.x67_c00154{left:213.311445pt;}
.x29_c00154{left:214.306283pt;}
.x72_c00154{left:215.469771pt;}
.x78_c00154{left:216.505344pt;}
.x7d_c00154{left:218.603147pt;}
.x58_c00154{left:220.581461pt;}
.x33_c00154{left:224.622869pt;}
.x5d_c00154{left:227.302251pt;}
.x4e_c00154{left:228.742069pt;}
.x19_c00154{left:230.302143pt;}
.x47_c00154{left:231.365771pt;}
.x2a_c00154{left:232.551317pt;}
.x53_c00154{left:233.862112pt;}
.x1f_c00154{left:235.577957pt;}
.x79_c00154{left:236.907904pt;}
.x68_c00154{left:238.513589pt;}
.x2_c00154{left:240.933333pt;}
.xf_c00154{left:244.767205pt;}
.x20_c00154{left:246.219429pt;}
.x73_c00154{left:247.355104pt;}
.x9_c00154{left:249.540469pt;}
.x56_c00154{left:251.153952pt;}
.x15_c00154{left:252.692640pt;}
.x7f_c00154{left:254.910784pt;}
.x48_c00154{left:256.545365pt;}
.x23_c00154{left:258.217333pt;}
.x2e_c00154{left:260.390101pt;}
.x63_c00154{left:262.440864pt;}
.xa_c00154{left:265.611215pt;}
.x4b_c00154{left:267.762421pt;}
.x34_c00154{left:269.182165pt;}
.x24_c00154{left:271.896000pt;}
.x74_c00154{left:272.857771pt;}
.x7e_c00154{left:276.208064pt;}
.x43_c00154{left:280.110923pt;}
.x2f_c00154{left:282.208768pt;}
.x3_c00154{left:283.769333pt;}
.x6c_c00154{left:286.112363pt;}
.x1a_c00154{left:288.396848pt;}
.x37_c00154{left:289.356096pt;}
.x81_c00154{left:291.636960pt;}
.x69_c00154{left:292.752651pt;}
.x4c_c00154{left:294.473141pt;}
.x5e_c00154{left:299.791477pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00155 {
    display:none;
  }
  .loading-indicator_c00155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00155 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00155 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00155" -> "#page-container .classname_c00155")
 */
.pf_c00155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00155 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00155 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00155 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00155 {overflow:visible;}
  }
}
.c_c00155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00155 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00155:after { /* webkit #35443 */
  content: '';
}
.t_c00155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00155 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00155 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00155 { /* info for Javascript */
  display:none;
}
.l_c00155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00155:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00155 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00155.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.013770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013770,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.027540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027540,0.000000,0.000000,0.250000,0,0);}
.m91_c00155{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.md2_c00155{transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);}
.mf6_c00155{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.mb8_c00155{transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);}
.m50_c00155{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00155{transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149355,0.000000,0.000000,0.250000,0,0);}
.mcd_c00155{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m53_c00155{transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153315,0.000000,0.000000,0.250000,0,0);}
.m7a_c00155{transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);}
.mbb_c00155{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.m54_c00155{transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);}
.mc7_c00155{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.m93_c00155{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00155{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.maf_c00155{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.mf_c00155{transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00155{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160090,0.000000,0.000000,0.250000,0,0);}
.md7_c00155{transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);}
.m96_c00155{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m7d_c00155{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.mcc_c00155{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.ma5_c00155{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m55_c00155{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m35_c00155{transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00155{transform:matrix(0.165365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165365,0.000000,0.000000,0.250000,0,0);}
.me0_c00155{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.mcb_c00155{transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);}
.mf8_c00155{transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);}
.mc6_c00155{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.mdb_c00155{transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167435,0.000000,0.000000,0.250000,0,0);}
.m3c_c00155{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00155{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.ma8_c00155{transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.m7c_c00155{transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);}
.m5f_c00155{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00155{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m99_c00155{transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);}
.mf7_c00155{transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);}
.mab_c00155{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.mf9_c00155{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.mdd_c00155{transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.mcf_c00155{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.m94_c00155{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.me2_c00155{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m34_c00155{transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);}
.m97_c00155{transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m51_c00155{transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);}
.m6d_c00155{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m4f_c00155{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m37_c00155{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.mee_c00155{transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);}
.mf5_c00155{transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);}
.m58_c00155{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.md9_c00155{transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);}
.m8b_c00155{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.md0_c00155{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.mca_c00155{transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m42_c00155{transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);}
.ma4_c00155{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.mec_c00155{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.maa_c00155{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00155{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.md3_c00155{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m47_c00155{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m98_c00155{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.mb4_c00155{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.mb7_c00155{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00155{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.mfa_c00155{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m4d_c00155{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.md8_c00155{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.mf3_c00155{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m88_c00155{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);}
.m61_c00155{transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);}
.m43_c00155{transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);}
.m39_c00155{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m76_c00155{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m6f_c00155{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.me1_c00155{transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);}
.md4_c00155{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);}
.m60_c00155{transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);}
.mac_c00155{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.mba_c00155{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.ma3_c00155{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m69_c00155{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.md5_c00155{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.m25_c00155{transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);}
.mea_c00155{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.mf0_c00155{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.m75_c00155{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.mdc_c00155{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m68_c00155{transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.mc5_c00155{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.mad_c00155{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);}
.mbe_c00155{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m49_c00155{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.mde_c00155{transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m70_c00155{transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);}
.m77_c00155{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m82_c00155{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m65_c00155{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.mc8_c00155{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.mb5_c00155{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m29_c00155{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m32_c00155{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m78_c00155{transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);}
.m80_c00155{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.mc3_c00155{transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);}
.m7b_c00155{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.mc1_c00155{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m4b_c00155{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m4a_c00155{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.md1_c00155{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.m57_c00155{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m6b_c00155{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.me8_c00155{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m5c_c00155{transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);}
.mf4_c00155{transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);}
.mf1_c00155{transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m63_c00155{transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00155{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m79_c00155{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.me7_c00155{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.me9_c00155{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.mb6_c00155{transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);}
.mda_c00155{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.ma6_c00155{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.mb9_c00155{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m8c_c00155{transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);}
.m74_c00155{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m48_c00155{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m59_c00155{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m8a_c00155{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.me6_c00155{transform:matrix(0.210030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210030,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00155{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.m71_c00155{transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);}
.mdf_c00155{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.med_c00155{transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);}
.m87_c00155{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);}
.m44_c00155{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.meb_c00155{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m3b_c00155{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.mc0_c00155{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.m5b_c00155{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m38_c00155{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00155{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.mae_c00155{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.mef_c00155{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m86_c00155{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.md6_c00155{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m83_c00155{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.m41_c00155{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m72_c00155{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m36_c00155{transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);}
.m46_c00155{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m73_c00155{transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);}
.m89_c00155{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);}
.mf2_c00155{transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);}
.mb1_c00155{transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);}
.m90_c00155{transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);}
.m22_c00155{transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);}
.m66_c00155{transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232715,0.000000,0.000000,0.250000,0,0);}
.m45_c00155{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m5d_c00155{transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);}
.ma1_c00155{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.mce_c00155{transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);}
.mc4_c00155{transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);}
.mc2_c00155{transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);}
.m24_c00155{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);}
.m9f_c00155{transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);}
.ma0_c00155{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.me5_c00155{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.mbd_c00155{transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.258970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258970,0.000000,0.000000,0.250000,0,0);}
.mb3_c00155{transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00155{transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{transform:matrix(0.273255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273255,0.000000,0.000000,0.250000,0,0);}
.ma2_c00155{transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m9d_c00155{transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);}
.m3f_c00155{transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);}
.m9e_c00155{transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);}
.m6a_c00155{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00155{transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);}
.me3_c00155{transform:matrix(0.336225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336225,0.000000,0.000000,0.250000,0,0);}
.m81_c00155{transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);}
.me4_c00155{transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);}
.m92_c00155{transform:matrix(0.341425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341425,0.000000,0.000000,0.250000,0,0);}
.mb2_c00155{transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(0.407740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407740,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:0.000000px;}
._0_c00155{margin-left:-20.482333px;}
.fc0_c00155{color:transparent;}
.fsd_c00155{font-size:45.150000px;}
.fs7_c00155{font-size:57.750000px;}
.fs6_c00155{font-size:58.800000px;}
.fs5_c00155{font-size:59.850000px;}
.fs3_c00155{font-size:60.900000px;}
.fsf_c00155{font-size:61.950000px;}
.fs1_c00155{font-size:63.000000px;}
.fsa_c00155{font-size:64.050000px;}
.fsb_c00155{font-size:65.100000px;}
.fs9_c00155{font-size:66.150000px;}
.fsc_c00155{font-size:67.200000px;}
.fs4_c00155{font-size:68.250000px;}
.fse_c00155{font-size:69.300000px;}
.fs2_c00155{font-size:70.350000px;}
.fs10_c00155{font-size:71.400000px;}
.fs8_c00155{font-size:72.450000px;}
.fs0_c00155{font-size:80.850000px;}
.y0_c00155{bottom:0.000000px;}
.y8a_c00155{bottom:30.732000px;}
.y89_c00155{bottom:49.477500px;}
.y88_c00155{bottom:66.562500px;}
.y87_c00155{bottom:82.470000px;}
.y86_c00155{bottom:82.642500px;}
.y85_c00155{bottom:82.761000px;}
.y84_c00155{bottom:83.244000px;}
.y83_c00155{bottom:83.457000px;}
.y82_c00155{bottom:84.264000px;}
.y81_c00155{bottom:84.471000px;}
.y80_c00155{bottom:85.051500px;}
.y7f_c00155{bottom:100.300500px;}
.y7e_c00155{bottom:117.174000px;}
.y7d_c00155{bottom:132.771000px;}
.y7c_c00155{bottom:132.973500px;}
.y7b_c00155{bottom:133.189500px;}
.y7a_c00155{bottom:133.495500px;}
.y79_c00155{bottom:133.957500px;}
.y78_c00155{bottom:134.106000px;}
.y77_c00155{bottom:134.736000px;}
.y76_c00155{bottom:134.935500px;}
.y75_c00155{bottom:135.100500px;}
.y74_c00155{bottom:135.306000px;}
.y73_c00155{bottom:135.543000px;}
.y72_c00155{bottom:150.474000px;}
.y71_c00155{bottom:151.128000px;}
.y70_c00155{bottom:151.734000px;}
.y6f_c00155{bottom:152.256000px;}
.y6e_c00155{bottom:152.611500px;}
.y6d_c00155{bottom:153.021000px;}
.y6c_c00155{bottom:153.633000px;}
.y6b_c00155{bottom:167.421000px;}
.y6a_c00155{bottom:167.676000px;}
.y69_c00155{bottom:168.298500px;}
.y68_c00155{bottom:169.165500px;}
.y67_c00155{bottom:169.414500px;}
.y66_c00155{bottom:169.702500px;}
.y65_c00155{bottom:170.404500px;}
.y64_c00155{bottom:170.572500px;}
.y63_c00155{bottom:171.183000px;}
.y62_c00155{bottom:186.693000px;}
.y61_c00155{bottom:203.173500px;}
.y60_c00155{bottom:203.410500px;}
.y5f_c00155{bottom:204.216000px;}
.y5e_c00155{bottom:204.393000px;}
.y5d_c00155{bottom:205.021500px;}
.y5c_c00155{bottom:205.260000px;}
.y5b_c00155{bottom:205.993500px;}
.y5a_c00155{bottom:206.284500px;}
.y59_c00155{bottom:221.211000px;}
.y58_c00155{bottom:221.398500px;}
.y57_c00155{bottom:221.698500px;}
.y56_c00155{bottom:222.034500px;}
.y55_c00155{bottom:222.477000px;}
.y54_c00155{bottom:222.840000px;}
.y53_c00155{bottom:223.546500px;}
.y52_c00155{bottom:223.899000px;}
.y51_c00155{bottom:224.104500px;}
.y50_c00155{bottom:237.438000px;}
.y4f_c00155{bottom:237.772500px;}
.y4e_c00155{bottom:238.764000px;}
.y4d_c00155{bottom:239.062500px;}
.y4c_c00155{bottom:239.602500px;}
.y4b_c00155{bottom:240.099000px;}
.y4a_c00155{bottom:240.421500px;}
.y49_c00155{bottom:241.165500px;}
.y48_c00155{bottom:241.458000px;}
.y47_c00155{bottom:241.927500px;}
.y46_c00155{bottom:255.918000px;}
.y45_c00155{bottom:256.218000px;}
.y44_c00155{bottom:256.897500px;}
.y43_c00155{bottom:257.331000px;}
.y42_c00155{bottom:258.465000px;}
.y41_c00155{bottom:259.206000px;}
.y40_c00155{bottom:273.075000px;}
.y3f_c00155{bottom:273.591000px;}
.y3e_c00155{bottom:273.766500px;}
.y3d_c00155{bottom:274.279500px;}
.y3c_c00155{bottom:274.573500px;}
.y3b_c00155{bottom:274.782000px;}
.y3a_c00155{bottom:275.187000px;}
.y39_c00155{bottom:275.787000px;}
.y38_c00155{bottom:275.980500px;}
.y37_c00155{bottom:276.214500px;}
.y36_c00155{bottom:289.984500px;}
.y35_c00155{bottom:290.223000px;}
.y34_c00155{bottom:290.494500px;}
.y33_c00155{bottom:290.943000px;}
.y32_c00155{bottom:291.208500px;}
.y31_c00155{bottom:291.789000px;}
.y30_c00155{bottom:292.389000px;}
.y2f_c00155{bottom:292.560000px;}
.y2e_c00155{bottom:293.224500px;}
.y2d_c00155{bottom:308.755500px;}
.y2c_c00155{bottom:325.498500px;}
.y2b_c00155{bottom:343.869000px;}
.y2a_c00155{bottom:360.630000px;}
.y29_c00155{bottom:378.267000px;}
.y28_c00155{bottom:395.814000px;}
.y27_c00155{bottom:412.405500px;}
.y26_c00155{bottom:412.672500px;}
.y25_c00155{bottom:413.068500px;}
.y24_c00155{bottom:413.661000px;}
.y23_c00155{bottom:414.370500px;}
.y22_c00155{bottom:414.651000px;}
.y21_c00155{bottom:414.994500px;}
.y20_c00155{bottom:430.639500px;}
.y1f_c00155{bottom:445.737000px;}
.y1e_c00155{bottom:446.832000px;}
.y1d_c00155{bottom:447.343500px;}
.y1c_c00155{bottom:447.598500px;}
.y1b_c00155{bottom:447.859500px;}
.y1a_c00155{bottom:448.147500px;}
.y19_c00155{bottom:448.378500px;}
.y18_c00155{bottom:448.738500px;}
.y17_c00155{bottom:448.995000px;}
.y16_c00155{bottom:449.553000px;}
.y15_c00155{bottom:463.425000px;}
.y14_c00155{bottom:463.819500px;}
.y13_c00155{bottom:464.275500px;}
.y12_c00155{bottom:464.428500px;}
.y11_c00155{bottom:465.103500px;}
.y10_c00155{bottom:465.238500px;}
.yf_c00155{bottom:465.736500px;}
.ye_c00155{bottom:465.960000px;}
.yd_c00155{bottom:466.291500px;}
.yc_c00155{bottom:482.127000px;}
.yb_c00155{bottom:498.322500px;}
.ya_c00155{bottom:498.912000px;}
.y9_c00155{bottom:499.741500px;}
.y8_c00155{bottom:500.568000px;}
.y7_c00155{bottom:500.794500px;}
.y6_c00155{bottom:501.663000px;}
.y5_c00155{bottom:516.660000px;}
.y4_c00155{bottom:532.471500px;}
.y3_c00155{bottom:549.721500px;}
.y2_c00155{bottom:567.180000px;}
.y1_c00155{bottom:580.078500px;}
.hf_c00155{height:45.150000px;}
.h9_c00155{height:57.750000px;}
.h8_c00155{height:58.800000px;}
.h7_c00155{height:59.850000px;}
.h5_c00155{height:60.900000px;}
.h11_c00155{height:61.950000px;}
.h3_c00155{height:63.000000px;}
.hc_c00155{height:64.050000px;}
.hd_c00155{height:65.100000px;}
.hb_c00155{height:66.150000px;}
.he_c00155{height:67.200000px;}
.h6_c00155{height:68.250000px;}
.h10_c00155{height:69.300000px;}
.h4_c00155{height:70.350000px;}
.h12_c00155{height:71.400000px;}
.ha_c00155{height:72.450000px;}
.h2_c00155{height:80.850000px;}
.h0_c00155{height:623.100000px;}
.h1_c00155{height:623.250000px;}
.w1_c00155{width:383.250000px;}
.w0_c00155{width:383.400000px;}
.x0_c00155{left:0.000000px;}
.x29_c00155{left:45.505500px;}
.x4_c00155{left:47.790000px;}
.x3e_c00155{left:49.284000px;}
.x1f_c00155{left:51.436500px;}
.x4c_c00155{left:58.050000px;}
.x56_c00155{left:66.279000px;}
.xb_c00155{left:68.040000px;}
.x41_c00155{left:69.928500px;}
.x69_c00155{left:71.140500px;}
.x13_c00155{left:74.790000px;}
.x47_c00155{left:76.678500px;}
.x2a_c00155{left:78.709500px;}
.x3f_c00155{left:83.619000px;}
.x4d_c00155{left:86.670000px;}
.x6f_c00155{left:88.555500px;}
.x31_c00155{left:91.420500px;}
.x48_c00155{left:93.688500px;}
.x64_c00155{left:96.216000px;}
.x25_c00155{left:99.897000px;}
.x2b_c00155{left:101.119500px;}
.x4f_c00155{left:103.140000px;}
.x76_c00155{left:106.525500px;}
.x6a_c00155{left:108.166500px;}
.x65_c00155{left:109.185000px;}
.x32_c00155{left:111.130500px;}
.x1b_c00155{left:113.130000px;}
.x42_c00155{left:116.908500px;}
.x20_c00155{left:123.772500px;}
.xc_c00155{left:126.900000px;}
.x50_c00155{left:127.980000px;}
.x5_c00155{left:130.140000px;}
.x49_c00155{left:132.028500px;}
.x67_c00155{left:134.082000px;}
.x14_c00155{left:136.890000px;}
.x33_c00155{left:138.879000px;}
.x1c_c00155{left:140.400000px;}
.x1_c00155{left:141.480000px;}
.x21_c00155{left:142.692000px;}
.x26_c00155{left:145.797000px;}
.x2c_c00155{left:150.853500px;}
.x1d_c00155{left:155.250000px;}
.xd_c00155{left:156.600000px;}
.x15_c00155{left:158.220000px;}
.x54_c00155{left:159.427500px;}
.x39_c00155{left:162.538500px;}
.x2d_c00155{left:164.308500px;}
.x6_c00155{left:168.750000px;}
.x43_c00155{left:173.878500px;}
.x57_c00155{left:175.170000px;}
.x51_c00155{left:177.660000px;}
.x34_c00155{left:178.851000px;}
.xe_c00155{left:181.440000px;}
.x40_c00155{left:182.664000px;}
.x5f_c00155{left:184.810500px;}
.x2_c00155{left:186.840000px;}
.x61_c00155{left:189.270000px;}
.x6b_c00155{left:191.080500px;}
.x70_c00155{left:192.775500px;}
.x4a_c00155{left:194.128500px;}
.x74_c00155{left:195.745500px;}
.xf_c00155{left:197.100000px;}
.x35_c00155{left:198.898500px;}
.x44_c00155{left:200.608500px;}
.x59_c00155{left:203.427000px;}
.x27_c00155{left:204.927000px;}
.x68_c00155{left:207.187500px;}
.x71_c00155{left:210.595500px;}
.x22_c00155{left:211.609500px;}
.x36_c00155{left:218.566500px;}
.x45_c00155{left:220.588500px;}
.x10_c00155{left:224.370000px;}
.x3a_c00155{left:226.258500px;}
.x16_c00155{left:228.420000px;}
.x2e_c00155{left:231.871500px;}
.x7_c00155{left:233.010000px;}
.x5b_c00155{left:235.521000px;}
.x5d_c00155{left:237.220500px;}
.x3b_c00155{left:239.488500px;}
.x17_c00155{left:242.730000px;}
.x62_c00155{left:244.890000px;}
.x2f_c00155{left:247.206000px;}
.x11_c00155{left:249.210000px;}
.x6c_c00155{left:252.064500px;}
.x8_c00155{left:254.070000px;}
.x37_c00155{left:257.949000px;}
.x55_c00155{left:259.054500px;}
.x75_c00155{left:261.625500px;}
.x78_c00155{left:263.245500px;}
.x52_c00155{left:265.410000px;}
.x58_c00155{left:267.447000px;}
.x5a_c00155{left:268.740000px;}
.x60_c00155{left:271.969500px;}
.x72_c00155{left:273.505500px;}
.x3_c00155{left:277.830000px;}
.x23_c00155{left:280.716000px;}
.x18_c00155{left:283.500000px;}
.x73_c00155{left:286.195500px;}
.x77_c00155{left:289.573500px;}
.x30_c00155{left:292.828500px;}
.x5e_c00155{left:294.987000px;}
.x3c_c00155{left:299.158500px;}
.x46_c00155{left:303.208500px;}
.x6d_c00155{left:304.215000px;}
.x19_c00155{left:305.370000px;}
.x4b_c00155{left:307.528500px;}
.x9_c00155{left:309.150000px;}
.x53_c00155{left:311.580000px;}
.x5c_c00155{left:313.519500px;}
.x28_c00155{left:314.817000px;}
.x3d_c00155{left:316.438500px;}
.x66_c00155{left:319.041000px;}
.x6e_c00155{left:324.397500px;}
.x12_c00155{left:325.890000px;}
.x79_c00155{left:327.775500px;}
.x24_c00155{left:329.784000px;}
.xa_c00155{left:332.640000px;}
.x1a_c00155{left:333.720000px;}
.x4e_c00155{left:335.880000px;}
.x63_c00155{left:337.500000px;}
.x1e_c00155{left:338.580000px;}
.x38_c00155{left:342.196500px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._0_c00155{margin-left:-18.206518pt;}
.fsd_c00155{font-size:40.133333pt;}
.fs7_c00155{font-size:51.333333pt;}
.fs6_c00155{font-size:52.266667pt;}
.fs5_c00155{font-size:53.200000pt;}
.fs3_c00155{font-size:54.133333pt;}
.fsf_c00155{font-size:55.066667pt;}
.fs1_c00155{font-size:56.000000pt;}
.fsa_c00155{font-size:56.933333pt;}
.fsb_c00155{font-size:57.866667pt;}
.fs9_c00155{font-size:58.800000pt;}
.fsc_c00155{font-size:59.733333pt;}
.fs4_c00155{font-size:60.666667pt;}
.fse_c00155{font-size:61.600000pt;}
.fs2_c00155{font-size:62.533333pt;}
.fs10_c00155{font-size:63.466667pt;}
.fs8_c00155{font-size:64.400000pt;}
.fs0_c00155{font-size:71.866667pt;}
.y0_c00155{bottom:0.000000pt;}
.y8a_c00155{bottom:27.317333pt;}
.y89_c00155{bottom:43.980000pt;}
.y88_c00155{bottom:59.166667pt;}
.y87_c00155{bottom:73.306667pt;}
.y86_c00155{bottom:73.460000pt;}
.y85_c00155{bottom:73.565333pt;}
.y84_c00155{bottom:73.994667pt;}
.y83_c00155{bottom:74.184000pt;}
.y82_c00155{bottom:74.901333pt;}
.y81_c00155{bottom:75.085333pt;}
.y80_c00155{bottom:75.601333pt;}
.y7f_c00155{bottom:89.156000pt;}
.y7e_c00155{bottom:104.154667pt;}
.y7d_c00155{bottom:118.018667pt;}
.y7c_c00155{bottom:118.198667pt;}
.y7b_c00155{bottom:118.390667pt;}
.y7a_c00155{bottom:118.662667pt;}
.y79_c00155{bottom:119.073333pt;}
.y78_c00155{bottom:119.205333pt;}
.y77_c00155{bottom:119.765333pt;}
.y76_c00155{bottom:119.942667pt;}
.y75_c00155{bottom:120.089333pt;}
.y74_c00155{bottom:120.272000pt;}
.y73_c00155{bottom:120.482667pt;}
.y72_c00155{bottom:133.754667pt;}
.y71_c00155{bottom:134.336000pt;}
.y70_c00155{bottom:134.874667pt;}
.y6f_c00155{bottom:135.338667pt;}
.y6e_c00155{bottom:135.654667pt;}
.y6d_c00155{bottom:136.018667pt;}
.y6c_c00155{bottom:136.562667pt;}
.y6b_c00155{bottom:148.818667pt;}
.y6a_c00155{bottom:149.045333pt;}
.y69_c00155{bottom:149.598667pt;}
.y68_c00155{bottom:150.369333pt;}
.y67_c00155{bottom:150.590667pt;}
.y66_c00155{bottom:150.846667pt;}
.y65_c00155{bottom:151.470667pt;}
.y64_c00155{bottom:151.620000pt;}
.y63_c00155{bottom:152.162667pt;}
.y62_c00155{bottom:165.949333pt;}
.y61_c00155{bottom:180.598667pt;}
.y60_c00155{bottom:180.809333pt;}
.y5f_c00155{bottom:181.525333pt;}
.y5e_c00155{bottom:181.682667pt;}
.y5d_c00155{bottom:182.241333pt;}
.y5c_c00155{bottom:182.453333pt;}
.y5b_c00155{bottom:183.105333pt;}
.y5a_c00155{bottom:183.364000pt;}
.y59_c00155{bottom:196.632000pt;}
.y58_c00155{bottom:196.798667pt;}
.y57_c00155{bottom:197.065333pt;}
.y56_c00155{bottom:197.364000pt;}
.y55_c00155{bottom:197.757333pt;}
.y54_c00155{bottom:198.080000pt;}
.y53_c00155{bottom:198.708000pt;}
.y52_c00155{bottom:199.021333pt;}
.y51_c00155{bottom:199.204000pt;}
.y50_c00155{bottom:211.056000pt;}
.y4f_c00155{bottom:211.353333pt;}
.y4e_c00155{bottom:212.234667pt;}
.y4d_c00155{bottom:212.500000pt;}
.y4c_c00155{bottom:212.980000pt;}
.y4b_c00155{bottom:213.421333pt;}
.y4a_c00155{bottom:213.708000pt;}
.y49_c00155{bottom:214.369333pt;}
.y48_c00155{bottom:214.629333pt;}
.y47_c00155{bottom:215.046667pt;}
.y46_c00155{bottom:227.482667pt;}
.y45_c00155{bottom:227.749333pt;}
.y44_c00155{bottom:228.353333pt;}
.y43_c00155{bottom:228.738667pt;}
.y42_c00155{bottom:229.746667pt;}
.y41_c00155{bottom:230.405333pt;}
.y40_c00155{bottom:242.733333pt;}
.y3f_c00155{bottom:243.192000pt;}
.y3e_c00155{bottom:243.348000pt;}
.y3d_c00155{bottom:243.804000pt;}
.y3c_c00155{bottom:244.065333pt;}
.y3b_c00155{bottom:244.250667pt;}
.y3a_c00155{bottom:244.610667pt;}
.y39_c00155{bottom:245.144000pt;}
.y38_c00155{bottom:245.316000pt;}
.y37_c00155{bottom:245.524000pt;}
.y36_c00155{bottom:257.764000pt;}
.y35_c00155{bottom:257.976000pt;}
.y34_c00155{bottom:258.217333pt;}
.y33_c00155{bottom:258.616000pt;}
.y32_c00155{bottom:258.852000pt;}
.y31_c00155{bottom:259.368000pt;}
.y30_c00155{bottom:259.901333pt;}
.y2f_c00155{bottom:260.053333pt;}
.y2e_c00155{bottom:260.644000pt;}
.y2d_c00155{bottom:274.449333pt;}
.y2c_c00155{bottom:289.332000pt;}
.y2b_c00155{bottom:305.661333pt;}
.y2a_c00155{bottom:320.560000pt;}
.y29_c00155{bottom:336.237333pt;}
.y28_c00155{bottom:351.834667pt;}
.y27_c00155{bottom:366.582667pt;}
.y26_c00155{bottom:366.820000pt;}
.y25_c00155{bottom:367.172000pt;}
.y24_c00155{bottom:367.698667pt;}
.y23_c00155{bottom:368.329333pt;}
.y22_c00155{bottom:368.578667pt;}
.y21_c00155{bottom:368.884000pt;}
.y20_c00155{bottom:382.790667pt;}
.y1f_c00155{bottom:396.210667pt;}
.y1e_c00155{bottom:397.184000pt;}
.y1d_c00155{bottom:397.638667pt;}
.y1c_c00155{bottom:397.865333pt;}
.y1b_c00155{bottom:398.097333pt;}
.y1a_c00155{bottom:398.353333pt;}
.y19_c00155{bottom:398.558667pt;}
.y18_c00155{bottom:398.878667pt;}
.y17_c00155{bottom:399.106667pt;}
.y16_c00155{bottom:399.602667pt;}
.y15_c00155{bottom:411.933333pt;}
.y14_c00155{bottom:412.284000pt;}
.y13_c00155{bottom:412.689333pt;}
.y12_c00155{bottom:412.825333pt;}
.y11_c00155{bottom:413.425333pt;}
.y10_c00155{bottom:413.545333pt;}
.yf_c00155{bottom:413.988000pt;}
.ye_c00155{bottom:414.186667pt;}
.yd_c00155{bottom:414.481333pt;}
.yc_c00155{bottom:428.557333pt;}
.yb_c00155{bottom:442.953333pt;}
.ya_c00155{bottom:443.477333pt;}
.y9_c00155{bottom:444.214667pt;}
.y8_c00155{bottom:444.949333pt;}
.y7_c00155{bottom:445.150667pt;}
.y6_c00155{bottom:445.922667pt;}
.y5_c00155{bottom:459.253333pt;}
.y4_c00155{bottom:473.308000pt;}
.y3_c00155{bottom:488.641333pt;}
.y2_c00155{bottom:504.160000pt;}
.y1_c00155{bottom:515.625333pt;}
.hf_c00155{height:40.133333pt;}
.h9_c00155{height:51.333333pt;}
.h8_c00155{height:52.266667pt;}
.h7_c00155{height:53.200000pt;}
.h5_c00155{height:54.133333pt;}
.h11_c00155{height:55.066667pt;}
.h3_c00155{height:56.000000pt;}
.hc_c00155{height:56.933333pt;}
.hd_c00155{height:57.866667pt;}
.hb_c00155{height:58.800000pt;}
.he_c00155{height:59.733333pt;}
.h6_c00155{height:60.666667pt;}
.h10_c00155{height:61.600000pt;}
.h4_c00155{height:62.533333pt;}
.h12_c00155{height:63.466667pt;}
.ha_c00155{height:64.400000pt;}
.h2_c00155{height:71.866667pt;}
.h0_c00155{height:553.866667pt;}
.h1_c00155{height:554.000000pt;}
.w1_c00155{width:340.666667pt;}
.w0_c00155{width:340.800000pt;}
.x0_c00155{left:0.000000pt;}
.x29_c00155{left:40.449333pt;}
.x4_c00155{left:42.480000pt;}
.x3e_c00155{left:43.808000pt;}
.x1f_c00155{left:45.721333pt;}
.x4c_c00155{left:51.600000pt;}
.x56_c00155{left:58.914667pt;}
.xb_c00155{left:60.480000pt;}
.x41_c00155{left:62.158667pt;}
.x69_c00155{left:63.236000pt;}
.x13_c00155{left:66.480000pt;}
.x47_c00155{left:68.158667pt;}
.x2a_c00155{left:69.964000pt;}
.x3f_c00155{left:74.328000pt;}
.x4d_c00155{left:77.040000pt;}
.x6f_c00155{left:78.716000pt;}
.x31_c00155{left:81.262667pt;}
.x48_c00155{left:83.278667pt;}
.x64_c00155{left:85.525333pt;}
.x25_c00155{left:88.797333pt;}
.x2b_c00155{left:89.884000pt;}
.x4f_c00155{left:91.680000pt;}
.x76_c00155{left:94.689333pt;}
.x6a_c00155{left:96.148000pt;}
.x65_c00155{left:97.053333pt;}
.x32_c00155{left:98.782667pt;}
.x1b_c00155{left:100.560000pt;}
.x42_c00155{left:103.918667pt;}
.x20_c00155{left:110.020000pt;}
.xc_c00155{left:112.800000pt;}
.x50_c00155{left:113.760000pt;}
.x5_c00155{left:115.680000pt;}
.x49_c00155{left:117.358667pt;}
.x67_c00155{left:119.184000pt;}
.x14_c00155{left:121.680000pt;}
.x33_c00155{left:123.448000pt;}
.x1c_c00155{left:124.800000pt;}
.x1_c00155{left:125.760000pt;}
.x21_c00155{left:126.837333pt;}
.x26_c00155{left:129.597333pt;}
.x2c_c00155{left:134.092000pt;}
.x1d_c00155{left:138.000000pt;}
.xd_c00155{left:139.200000pt;}
.x15_c00155{left:140.640000pt;}
.x54_c00155{left:141.713333pt;}
.x39_c00155{left:144.478667pt;}
.x2d_c00155{left:146.052000pt;}
.x6_c00155{left:150.000000pt;}
.x43_c00155{left:154.558667pt;}
.x57_c00155{left:155.706667pt;}
.x51_c00155{left:157.920000pt;}
.x34_c00155{left:158.978667pt;}
.xe_c00155{left:161.280000pt;}
.x40_c00155{left:162.368000pt;}
.x5f_c00155{left:164.276000pt;}
.x2_c00155{left:166.080000pt;}
.x61_c00155{left:168.240000pt;}
.x6b_c00155{left:169.849333pt;}
.x70_c00155{left:171.356000pt;}
.x4a_c00155{left:172.558667pt;}
.x74_c00155{left:173.996000pt;}
.xf_c00155{left:175.200000pt;}
.x35_c00155{left:176.798667pt;}
.x44_c00155{left:178.318667pt;}
.x59_c00155{left:180.824000pt;}
.x27_c00155{left:182.157333pt;}
.x68_c00155{left:184.166667pt;}
.x71_c00155{left:187.196000pt;}
.x22_c00155{left:188.097333pt;}
.x36_c00155{left:194.281333pt;}
.x45_c00155{left:196.078667pt;}
.x10_c00155{left:199.440000pt;}
.x3a_c00155{left:201.118667pt;}
.x16_c00155{left:203.040000pt;}
.x2e_c00155{left:206.108000pt;}
.x7_c00155{left:207.120000pt;}
.x5b_c00155{left:209.352000pt;}
.x5d_c00155{left:210.862667pt;}
.x3b_c00155{left:212.878667pt;}
.x17_c00155{left:215.760000pt;}
.x62_c00155{left:217.680000pt;}
.x2f_c00155{left:219.738667pt;}
.x11_c00155{left:221.520000pt;}
.x6c_c00155{left:224.057333pt;}
.x8_c00155{left:225.840000pt;}
.x37_c00155{left:229.288000pt;}
.x55_c00155{left:230.270667pt;}
.x75_c00155{left:232.556000pt;}
.x78_c00155{left:233.996000pt;}
.x52_c00155{left:235.920000pt;}
.x58_c00155{left:237.730667pt;}
.x5a_c00155{left:238.880000pt;}
.x60_c00155{left:241.750667pt;}
.x72_c00155{left:243.116000pt;}
.x3_c00155{left:246.960000pt;}
.x23_c00155{left:249.525333pt;}
.x18_c00155{left:252.000000pt;}
.x73_c00155{left:254.396000pt;}
.x77_c00155{left:257.398667pt;}
.x30_c00155{left:260.292000pt;}
.x5e_c00155{left:262.210667pt;}
.x3c_c00155{left:265.918667pt;}
.x46_c00155{left:269.518667pt;}
.x6d_c00155{left:270.413333pt;}
.x19_c00155{left:271.440000pt;}
.x4b_c00155{left:273.358667pt;}
.x9_c00155{left:274.800000pt;}
.x53_c00155{left:276.960000pt;}
.x5c_c00155{left:278.684000pt;}
.x28_c00155{left:279.837333pt;}
.x3d_c00155{left:281.278667pt;}
.x66_c00155{left:283.592000pt;}
.x6e_c00155{left:288.353333pt;}
.x12_c00155{left:289.680000pt;}
.x79_c00155{left:291.356000pt;}
.x24_c00155{left:293.141333pt;}
.xa_c00155{left:295.680000pt;}
.x1a_c00155{left:296.640000pt;}
.x4e_c00155{left:298.560000pt;}
.x63_c00155{left:300.000000pt;}
.x1e_c00155{left:300.960000pt;}
.x38_c00155{left:304.174667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00156 {
    display:none;
  }
  .loading-indicator_c00156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00156 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00156 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00156" -> "#page-container .classname_c00156")
 */
.pf_c00156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00156 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00156 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00156 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00156 {overflow:visible;}
  }
}
.c_c00156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00156 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00156:after { /* webkit #35443 */
  content: '';
}
.t_c00156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00156 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00156 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00156 { /* info for Javascript */
  display:none;
}
.l_c00156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00156:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00156 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00156.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc9_c00156{transform:matrix(0.015710,-0.000408,0.006498,0.249916,0,0);-ms-transform:matrix(0.015710,-0.000408,0.006498,0.249916,0,0);-webkit-transform:matrix(0.015710,-0.000408,0.006498,0.249916,0,0);}
.m41_c00156{transform:matrix(0.071331,-0.001855,0.006498,0.249916,0,0);-ms-transform:matrix(0.071331,-0.001855,0.006498,0.249916,0,0);-webkit-transform:matrix(0.071331,-0.001855,0.006498,0.249916,0,0);}
.md3_c00156{transform:matrix(0.105054,-0.002731,0.006498,0.249916,0,0);-ms-transform:matrix(0.105054,-0.002731,0.006498,0.249916,0,0);-webkit-transform:matrix(0.105054,-0.002731,0.006498,0.249916,0,0);}
.m8e_c00156{transform:matrix(0.111857,-0.002908,0.006498,0.249916,0,0);-ms-transform:matrix(0.111857,-0.002908,0.006498,0.249916,0,0);-webkit-transform:matrix(0.111857,-0.002908,0.006498,0.249916,0,0);}
.m29_c00156{transform:matrix(0.134590,-0.003499,0.006498,0.249916,0,0);-ms-transform:matrix(0.134590,-0.003499,0.006498,0.249916,0,0);-webkit-transform:matrix(0.134590,-0.003499,0.006498,0.249916,0,0);}
.m6c_c00156{transform:matrix(0.135564,-0.003525,0.006498,0.249916,0,0);-ms-transform:matrix(0.135564,-0.003525,0.006498,0.249916,0,0);-webkit-transform:matrix(0.135564,-0.003525,0.006498,0.249916,0,0);}
.mdf_c00156{transform:matrix(0.136929,-0.003560,0.006498,0.249916,0,0);-ms-transform:matrix(0.136929,-0.003560,0.006498,0.249916,0,0);-webkit-transform:matrix(0.136929,-0.003560,0.006498,0.249916,0,0);}
.m14_c00156{transform:matrix(0.140310,-0.003367,0.005998,0.249928,0,0);-ms-transform:matrix(0.140310,-0.003367,0.005998,0.249928,0,0);-webkit-transform:matrix(0.140310,-0.003367,0.005998,0.249928,0,0);}
.m30_c00156{transform:matrix(0.145136,-0.003774,0.006498,0.249916,0,0);-ms-transform:matrix(0.145136,-0.003774,0.006498,0.249916,0,0);-webkit-transform:matrix(0.145136,-0.003774,0.006498,0.249916,0,0);}
.me2_c00156{transform:matrix(0.146955,-0.003821,0.006498,0.249916,0,0);-ms-transform:matrix(0.146955,-0.003821,0.006498,0.249916,0,0);-webkit-transform:matrix(0.146955,-0.003821,0.006498,0.249916,0,0);}
.md2_c00156{transform:matrix(0.147690,-0.003840,0.006498,0.249916,0,0);-ms-transform:matrix(0.147690,-0.003840,0.006498,0.249916,0,0);-webkit-transform:matrix(0.147690,-0.003840,0.006498,0.249916,0,0);}
.m2b_c00156{transform:matrix(0.149724,-0.003893,0.006498,0.249916,0,0);-ms-transform:matrix(0.149724,-0.003893,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149724,-0.003893,0.006498,0.249916,0,0);}
.mae_c00156{transform:matrix(0.149854,-0.003896,0.006498,0.249916,0,0);-ms-transform:matrix(0.149854,-0.003896,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149854,-0.003896,0.006498,0.249916,0,0);}
.m22_c00156{transform:matrix(0.151069,-0.003928,0.006498,0.249916,0,0);-ms-transform:matrix(0.151069,-0.003928,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151069,-0.003928,0.006498,0.249916,0,0);}
.me1_c00156{transform:matrix(0.151344,-0.003935,0.006498,0.249916,0,0);-ms-transform:matrix(0.151344,-0.003935,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151344,-0.003935,0.006498,0.249916,0,0);}
.m19_c00156{transform:matrix(0.151411,-0.003634,0.005998,0.249928,0,0);-ms-transform:matrix(0.151411,-0.003634,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151411,-0.003634,0.005998,0.249928,0,0);}
.m8d_c00156{transform:matrix(0.151934,-0.003950,0.006498,0.249916,0,0);-ms-transform:matrix(0.151934,-0.003950,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151934,-0.003950,0.006498,0.249916,0,0);}
.mac_c00156{transform:matrix(0.152049,-0.003953,0.006498,0.249916,0,0);-ms-transform:matrix(0.152049,-0.003953,0.006498,0.249916,0,0);-webkit-transform:matrix(0.152049,-0.003953,0.006498,0.249916,0,0);}
.m2d_c00156{transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);-ms-transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);-webkit-transform:matrix(0.154773,-0.004024,0.006498,0.249916,0,0);}
.m4e_c00156{transform:matrix(0.156692,-0.004074,0.006498,0.249916,0,0);-ms-transform:matrix(0.156692,-0.004074,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156692,-0.004074,0.006498,0.249916,0,0);}
.mb5_c00156{transform:matrix(0.157427,-0.004093,0.006498,0.249916,0,0);-ms-transform:matrix(0.157427,-0.004093,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157427,-0.004093,0.006498,0.249916,0,0);}
.m5a_c00156{transform:matrix(0.157882,-0.004105,0.006498,0.249916,0,0);-ms-transform:matrix(0.157882,-0.004105,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157882,-0.004105,0.006498,0.249916,0,0);}
.mab_c00156{transform:matrix(0.159151,-0.004138,0.006498,0.249916,0,0);-ms-transform:matrix(0.159151,-0.004138,0.006498,0.249916,0,0);-webkit-transform:matrix(0.159151,-0.004138,0.006498,0.249916,0,0);}
.m48_c00156{transform:matrix(0.159286,-0.004141,0.006498,0.249916,0,0);-ms-transform:matrix(0.159286,-0.004141,0.006498,0.249916,0,0);-webkit-transform:matrix(0.159286,-0.004141,0.006498,0.249916,0,0);}
.m4b_c00156{transform:matrix(0.159451,-0.004146,0.006498,0.249916,0,0);-ms-transform:matrix(0.159451,-0.004146,0.006498,0.249916,0,0);-webkit-transform:matrix(0.159451,-0.004146,0.006498,0.249916,0,0);}
.mfd_c00156{transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.161149,-0.003868,0.005998,0.249928,0,0);-ms-transform:matrix(0.161149,-0.003868,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161149,-0.003868,0.005998,0.249928,0,0);}
.m34_c00156{transform:matrix(0.161285,-0.004193,0.006498,0.249916,0,0);-ms-transform:matrix(0.161285,-0.004193,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161285,-0.004193,0.006498,0.249916,0,0);}
.ma4_c00156{transform:matrix(0.162200,-0.004217,0.006498,0.249916,0,0);-ms-transform:matrix(0.162200,-0.004217,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162200,-0.004217,0.006498,0.249916,0,0);}
.m4d_c00156{transform:matrix(0.162270,-0.004219,0.006498,0.249916,0,0);-ms-transform:matrix(0.162270,-0.004219,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162270,-0.004219,0.006498,0.249916,0,0);}
.m6f_c00156{transform:matrix(0.162435,-0.004223,0.006498,0.249916,0,0);-ms-transform:matrix(0.162435,-0.004223,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162435,-0.004223,0.006498,0.249916,0,0);}
.m57_c00156{transform:matrix(0.162710,-0.004230,0.006498,0.249916,0,0);-ms-transform:matrix(0.162710,-0.004230,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162710,-0.004230,0.006498,0.249916,0,0);}
.m47_c00156{transform:matrix(0.163245,-0.004244,0.006498,0.249916,0,0);-ms-transform:matrix(0.163245,-0.004244,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163245,-0.004244,0.006498,0.249916,0,0);}
.m49_c00156{transform:matrix(0.163545,-0.004252,0.006498,0.249916,0,0);-ms-transform:matrix(0.163545,-0.004252,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163545,-0.004252,0.006498,0.249916,0,0);}
.me4_c00156{transform:matrix(0.164215,-0.004270,0.006498,0.249916,0,0);-ms-transform:matrix(0.164215,-0.004270,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164215,-0.004270,0.006498,0.249916,0,0);}
.mb8_c00156{transform:matrix(0.164359,-0.004273,0.006498,0.249916,0,0);-ms-transform:matrix(0.164359,-0.004273,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164359,-0.004273,0.006498,0.249916,0,0);}
.m7c_c00156{transform:matrix(0.165974,-0.004315,0.006498,0.249916,0,0);-ms-transform:matrix(0.165974,-0.004315,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165974,-0.004315,0.006498,0.249916,0,0);}
.m43_c00156{transform:matrix(0.166419,-0.004327,0.006498,0.249916,0,0);-ms-transform:matrix(0.166419,-0.004327,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166419,-0.004327,0.006498,0.249916,0,0);}
.m77_c00156{transform:matrix(0.166449,-0.004328,0.006498,0.249916,0,0);-ms-transform:matrix(0.166449,-0.004328,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166449,-0.004328,0.006498,0.249916,0,0);}
.ma8_c00156{transform:matrix(0.166494,-0.004329,0.006498,0.249916,0,0);-ms-transform:matrix(0.166494,-0.004329,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166494,-0.004329,0.006498,0.249916,0,0);}
.mf6_c00156{transform:matrix(0.166589,-0.004331,0.006498,0.249916,0,0);-ms-transform:matrix(0.166589,-0.004331,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166589,-0.004331,0.006498,0.249916,0,0);}
.m17_c00156{transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);-ms-transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);}
.maa_c00156{transform:matrix(0.167184,-0.004347,0.006498,0.249916,0,0);-ms-transform:matrix(0.167184,-0.004347,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167184,-0.004347,0.006498,0.249916,0,0);}
.m1b_c00156{transform:matrix(0.167382,-0.004017,0.005998,0.249928,0,0);-ms-transform:matrix(0.167382,-0.004017,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167382,-0.004017,0.005998,0.249928,0,0);}
.mcc_c00156{transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);-ms-transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167888,-0.004365,0.006498,0.249916,0,0);}
.m1e_c00156{transform:matrix(0.168741,-0.004050,0.005998,0.249928,0,0);-ms-transform:matrix(0.168741,-0.004050,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168741,-0.004050,0.005998,0.249928,0,0);}
.ma9_c00156{transform:matrix(0.169763,-0.004414,0.006498,0.249916,0,0);-ms-transform:matrix(0.169763,-0.004414,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169763,-0.004414,0.006498,0.249916,0,0);}
.mea_c00156{transform:matrix(0.169808,-0.004415,0.006498,0.249916,0,0);-ms-transform:matrix(0.169808,-0.004415,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169808,-0.004415,0.006498,0.249916,0,0);}
.m90_c00156{transform:matrix(0.170048,-0.004421,0.006498,0.249916,0,0);-ms-transform:matrix(0.170048,-0.004421,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170048,-0.004421,0.006498,0.249916,0,0);}
.mf0_c00156{transform:matrix(0.170078,-0.004422,0.006498,0.249916,0,0);-ms-transform:matrix(0.170078,-0.004422,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170078,-0.004422,0.006498,0.249916,0,0);}
.mb7_c00156{transform:matrix(0.170447,-0.004432,0.006498,0.249916,0,0);-ms-transform:matrix(0.170447,-0.004432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170447,-0.004432,0.006498,0.249916,0,0);}
.m72_c00156{transform:matrix(0.170477,-0.004432,0.006498,0.249916,0,0);-ms-transform:matrix(0.170477,-0.004432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170477,-0.004432,0.006498,0.249916,0,0);}
.ma7_c00156{transform:matrix(0.171582,-0.004461,0.006498,0.249916,0,0);-ms-transform:matrix(0.171582,-0.004461,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171582,-0.004461,0.006498,0.249916,0,0);}
.me9_c00156{transform:matrix(0.171717,-0.004465,0.006498,0.249916,0,0);-ms-transform:matrix(0.171717,-0.004465,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171717,-0.004465,0.006498,0.249916,0,0);}
.m98_c00156{transform:matrix(0.172062,-0.004474,0.006498,0.249916,0,0);-ms-transform:matrix(0.172062,-0.004474,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172062,-0.004474,0.006498,0.249916,0,0);}
.m75_c00156{transform:matrix(0.172427,-0.004483,0.006498,0.249916,0,0);-ms-transform:matrix(0.172427,-0.004483,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172427,-0.004483,0.006498,0.249916,0,0);}
.m71_c00156{transform:matrix(0.172637,-0.004489,0.006498,0.249916,0,0);-ms-transform:matrix(0.172637,-0.004489,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172637,-0.004489,0.006498,0.249916,0,0);}
.mb1_c00156{transform:matrix(0.172742,-0.004491,0.006498,0.249916,0,0);-ms-transform:matrix(0.172742,-0.004491,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172742,-0.004491,0.006498,0.249916,0,0);}
.me0_c00156{transform:matrix(0.172847,-0.004494,0.006498,0.249916,0,0);-ms-transform:matrix(0.172847,-0.004494,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172847,-0.004494,0.006498,0.249916,0,0);}
.mf8_c00156{transform:matrix(0.173196,-0.004503,0.006498,0.249916,0,0);-ms-transform:matrix(0.173196,-0.004503,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173196,-0.004503,0.006498,0.249916,0,0);}
.m37_c00156{transform:matrix(0.173281,-0.004505,0.006498,0.249916,0,0);-ms-transform:matrix(0.173281,-0.004505,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173281,-0.004505,0.006498,0.249916,0,0);}
.m27_c00156{transform:matrix(0.173341,-0.004507,0.006498,0.249916,0,0);-ms-transform:matrix(0.173341,-0.004507,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173341,-0.004507,0.006498,0.249916,0,0);}
.mbb_c00156{transform:matrix(0.173471,-0.004510,0.006498,0.249916,0,0);-ms-transform:matrix(0.173471,-0.004510,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173471,-0.004510,0.006498,0.249916,0,0);}
.m7f_c00156{transform:matrix(0.173641,-0.004515,0.006498,0.249916,0,0);-ms-transform:matrix(0.173641,-0.004515,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173641,-0.004515,0.006498,0.249916,0,0);}
.me3_c00156{transform:matrix(0.174231,-0.004530,0.006498,0.249916,0,0);-ms-transform:matrix(0.174231,-0.004530,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174231,-0.004530,0.006498,0.249916,0,0);}
.m9c_c00156{transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);-ms-transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);}
.m8f_c00156{transform:matrix(0.174361,-0.004533,0.006498,0.249916,0,0);-ms-transform:matrix(0.174361,-0.004533,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174361,-0.004533,0.006498,0.249916,0,0);}
.m2e_c00156{transform:matrix(0.174476,-0.004536,0.006498,0.249916,0,0);-ms-transform:matrix(0.174476,-0.004536,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174476,-0.004536,0.006498,0.249916,0,0);}
.mee_c00156{transform:matrix(0.175191,-0.004555,0.006498,0.249916,0,0);-ms-transform:matrix(0.175191,-0.004555,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175191,-0.004555,0.006498,0.249916,0,0);}
.m23_c00156{transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);-ms-transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);}
.m8a_c00156{transform:matrix(0.175706,-0.004568,0.006498,0.249916,0,0);-ms-transform:matrix(0.175706,-0.004568,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175706,-0.004568,0.006498,0.249916,0,0);}
.mb6_c00156{transform:matrix(0.175871,-0.004573,0.006498,0.249916,0,0);-ms-transform:matrix(0.175871,-0.004573,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175871,-0.004573,0.006498,0.249916,0,0);}
.m3b_c00156{transform:matrix(0.176355,-0.004585,0.006498,0.249916,0,0);-ms-transform:matrix(0.176355,-0.004585,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176355,-0.004585,0.006498,0.249916,0,0);}
.m18_c00156{transform:matrix(0.176989,-0.004248,0.005998,0.249928,0,0);-ms-transform:matrix(0.176989,-0.004248,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176989,-0.004248,0.005998,0.249928,0,0);}
.m89_c00156{transform:matrix(0.177300,-0.004610,0.006498,0.249916,0,0);-ms-transform:matrix(0.177300,-0.004610,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177300,-0.004610,0.006498,0.249916,0,0);}
.ma6_c00156{transform:matrix(0.177490,-0.004615,0.006498,0.249916,0,0);-ms-transform:matrix(0.177490,-0.004615,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177490,-0.004615,0.006498,0.249916,0,0);}
.m8b_c00156{transform:matrix(0.178025,-0.004629,0.006498,0.249916,0,0);-ms-transform:matrix(0.178025,-0.004629,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178025,-0.004629,0.006498,0.249916,0,0);}
.m3e_c00156{transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);-ms-transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);}
.m67_c00156{transform:matrix(0.179309,-0.004662,0.006498,0.249916,0,0);-ms-transform:matrix(0.179309,-0.004662,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179309,-0.004662,0.006498,0.249916,0,0);}
.me7_c00156{transform:matrix(0.179949,-0.004679,0.006498,0.249916,0,0);-ms-transform:matrix(0.179949,-0.004679,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179949,-0.004679,0.006498,0.249916,0,0);}
.m31_c00156{transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);-ms-transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);}
.m94_c00156{transform:matrix(0.180839,-0.004702,0.006498,0.249916,0,0);-ms-transform:matrix(0.180839,-0.004702,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180839,-0.004702,0.006498,0.249916,0,0);}
.mfb_c00156{transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);}
.meb_c00156{transform:matrix(0.181634,-0.004722,0.006498,0.249916,0,0);-ms-transform:matrix(0.181634,-0.004722,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181634,-0.004722,0.006498,0.249916,0,0);}
.ma0_c00156{transform:matrix(0.181804,-0.004727,0.006498,0.249916,0,0);-ms-transform:matrix(0.181804,-0.004727,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181804,-0.004727,0.006498,0.249916,0,0);}
.maf_c00156{transform:matrix(0.181939,-0.004730,0.006498,0.249916,0,0);-ms-transform:matrix(0.181939,-0.004730,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181939,-0.004730,0.006498,0.249916,0,0);}
.m92_c00156{transform:matrix(0.182398,-0.004742,0.006498,0.249916,0,0);-ms-transform:matrix(0.182398,-0.004742,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182398,-0.004742,0.006498,0.249916,0,0);}
.md1_c00156{transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);-ms-transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182418,-0.004743,0.006498,0.249916,0,0);}
.m35_c00156{transform:matrix(0.182678,-0.004750,0.006498,0.249916,0,0);-ms-transform:matrix(0.182678,-0.004750,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182678,-0.004750,0.006498,0.249916,0,0);}
.md0_c00156{transform:matrix(0.182898,-0.004755,0.006498,0.249916,0,0);-ms-transform:matrix(0.182898,-0.004755,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182898,-0.004755,0.006498,0.249916,0,0);}
.mde_c00156{transform:matrix(0.182933,-0.004756,0.006498,0.249916,0,0);-ms-transform:matrix(0.182933,-0.004756,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182933,-0.004756,0.006498,0.249916,0,0);}
.m21_c00156{transform:matrix(0.183038,-0.004759,0.006498,0.249916,0,0);-ms-transform:matrix(0.183038,-0.004759,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183038,-0.004759,0.006498,0.249916,0,0);}
.m83_c00156{transform:matrix(0.183258,-0.004765,0.006498,0.249916,0,0);-ms-transform:matrix(0.183258,-0.004765,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183258,-0.004765,0.006498,0.249916,0,0);}
.m87_c00156{transform:matrix(0.183518,-0.004771,0.006498,0.249916,0,0);-ms-transform:matrix(0.183518,-0.004771,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183518,-0.004771,0.006498,0.249916,0,0);}
.mf7_c00156{transform:matrix(0.183618,-0.004774,0.006498,0.249916,0,0);-ms-transform:matrix(0.183618,-0.004774,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183618,-0.004774,0.006498,0.249916,0,0);}
.m6e_c00156{transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);-ms-transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);}
.mc7_c00156{transform:matrix(0.184962,-0.004809,0.006498,0.249916,0,0);-ms-transform:matrix(0.184962,-0.004809,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184962,-0.004809,0.006498,0.249916,0,0);}
.m46_c00156{transform:matrix(0.185317,-0.004818,0.006498,0.249916,0,0);-ms-transform:matrix(0.185317,-0.004818,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185317,-0.004818,0.006498,0.249916,0,0);}
.mc3_c00156{transform:matrix(0.186017,-0.004836,0.006498,0.249916,0,0);-ms-transform:matrix(0.186017,-0.004836,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186017,-0.004836,0.006498,0.249916,0,0);}
.mb4_c00156{transform:matrix(0.186172,-0.004840,0.006498,0.249916,0,0);-ms-transform:matrix(0.186172,-0.004840,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186172,-0.004840,0.006498,0.249916,0,0);}
.m2_c00156{transform:matrix(0.186431,-0.004474,0.005998,0.249928,0,0);-ms-transform:matrix(0.186431,-0.004474,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186431,-0.004474,0.005998,0.249928,0,0);}
.m1_c00156{transform:matrix(0.186481,-0.004476,0.005998,0.249928,0,0);-ms-transform:matrix(0.186481,-0.004476,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186481,-0.004476,0.005998,0.249928,0,0);}
.m56_c00156{transform:matrix(0.186782,-0.004856,0.006498,0.249916,0,0);-ms-transform:matrix(0.186782,-0.004856,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186782,-0.004856,0.006498,0.249916,0,0);}
.m33_c00156{transform:matrix(0.187062,-0.004864,0.006498,0.249916,0,0);-ms-transform:matrix(0.187062,-0.004864,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187062,-0.004864,0.006498,0.249916,0,0);}
.m6d_c00156{transform:matrix(0.187297,-0.004870,0.006498,0.249916,0,0);-ms-transform:matrix(0.187297,-0.004870,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187297,-0.004870,0.006498,0.249916,0,0);}
.mfa_c00156{transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.188071,-0.004514,0.005998,0.249928,0,0);-ms-transform:matrix(0.188071,-0.004514,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188071,-0.004514,0.005998,0.249928,0,0);}
.m6_c00156{transform:matrix(0.188091,-0.004514,0.005998,0.249928,0,0);-ms-transform:matrix(0.188091,-0.004514,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188091,-0.004514,0.005998,0.249928,0,0);}
.ma1_c00156{transform:matrix(0.188411,-0.004899,0.006498,0.249916,0,0);-ms-transform:matrix(0.188411,-0.004899,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188411,-0.004899,0.006498,0.249916,0,0);}
.me5_c00156{transform:matrix(0.188671,-0.004905,0.006498,0.249916,0,0);-ms-transform:matrix(0.188671,-0.004905,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188671,-0.004905,0.006498,0.249916,0,0);}
.m62_c00156{transform:matrix(0.188791,-0.004909,0.006498,0.249916,0,0);-ms-transform:matrix(0.188791,-0.004909,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188791,-0.004909,0.006498,0.249916,0,0);}
.m28_c00156{transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);-ms-transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);}
.m55_c00156{transform:matrix(0.189241,-0.004920,0.006498,0.249916,0,0);-ms-transform:matrix(0.189241,-0.004920,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189241,-0.004920,0.006498,0.249916,0,0);}
.ma2_c00156{transform:matrix(0.189316,-0.004922,0.006498,0.249916,0,0);-ms-transform:matrix(0.189316,-0.004922,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189316,-0.004922,0.006498,0.249916,0,0);}
.m26_c00156{transform:matrix(0.189646,-0.004931,0.006498,0.249916,0,0);-ms-transform:matrix(0.189646,-0.004931,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189646,-0.004931,0.006498,0.249916,0,0);}
.mc8_c00156{transform:matrix(0.189681,-0.004932,0.006498,0.249916,0,0);-ms-transform:matrix(0.189681,-0.004932,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189681,-0.004932,0.006498,0.249916,0,0);}
.ma3_c00156{transform:matrix(0.189731,-0.004933,0.006498,0.249916,0,0);-ms-transform:matrix(0.189731,-0.004933,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189731,-0.004933,0.006498,0.249916,0,0);}
.m79_c00156{transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);-ms-transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);}
.m85_c00156{transform:matrix(0.189836,-0.004936,0.006498,0.249916,0,0);-ms-transform:matrix(0.189836,-0.004936,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189836,-0.004936,0.006498,0.249916,0,0);}
.m5f_c00156{transform:matrix(0.190146,-0.004944,0.006498,0.249916,0,0);-ms-transform:matrix(0.190146,-0.004944,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190146,-0.004944,0.006498,0.249916,0,0);}
.m59_c00156{transform:matrix(0.190566,-0.004955,0.006498,0.249916,0,0);-ms-transform:matrix(0.190566,-0.004955,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190566,-0.004955,0.006498,0.249916,0,0);}
.me_c00156{transform:matrix(0.190610,-0.004575,0.005998,0.249928,0,0);-ms-transform:matrix(0.190610,-0.004575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190610,-0.004575,0.005998,0.249928,0,0);}
.m60_c00156{transform:matrix(0.190751,-0.004960,0.006498,0.249916,0,0);-ms-transform:matrix(0.190751,-0.004960,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190751,-0.004960,0.006498,0.249916,0,0);}
.mfc_c00156{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mf2_c00156{transform:matrix(0.191180,-0.004971,0.006498,0.249916,0,0);-ms-transform:matrix(0.191180,-0.004971,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191180,-0.004971,0.006498,0.249916,0,0);}
.mbd_c00156{transform:matrix(0.191620,-0.004982,0.006498,0.249916,0,0);-ms-transform:matrix(0.191620,-0.004982,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191620,-0.004982,0.006498,0.249916,0,0);}
.mc5_c00156{transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-ms-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);}
.mad_c00156{transform:matrix(0.191780,-0.004986,0.006498,0.249916,0,0);-ms-transform:matrix(0.191780,-0.004986,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191780,-0.004986,0.006498,0.249916,0,0);}
.me8_c00156{transform:matrix(0.191815,-0.004987,0.006498,0.249916,0,0);-ms-transform:matrix(0.191815,-0.004987,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191815,-0.004987,0.006498,0.249916,0,0);}
.m7d_c00156{transform:matrix(0.191880,-0.004989,0.006498,0.249916,0,0);-ms-transform:matrix(0.191880,-0.004989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191880,-0.004989,0.006498,0.249916,0,0);}
.m8_c00156{transform:matrix(0.192105,-0.004611,0.005998,0.249928,0,0);-ms-transform:matrix(0.192105,-0.004611,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192105,-0.004611,0.005998,0.249928,0,0);}
.mec_c00156{transform:matrix(0.192690,-0.005010,0.006498,0.249916,0,0);-ms-transform:matrix(0.192690,-0.005010,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192690,-0.005010,0.006498,0.249916,0,0);}
.ma_c00156{transform:matrix(0.192705,-0.004625,0.005998,0.249928,0,0);-ms-transform:matrix(0.192705,-0.004625,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192705,-0.004625,0.005998,0.249928,0,0);}
.ma5_c00156{transform:matrix(0.192790,-0.005013,0.006498,0.249916,0,0);-ms-transform:matrix(0.192790,-0.005013,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192790,-0.005013,0.006498,0.249916,0,0);}
.md4_c00156{transform:matrix(0.193210,-0.005023,0.006498,0.249916,0,0);-ms-transform:matrix(0.193210,-0.005023,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193210,-0.005023,0.006498,0.249916,0,0);}
.m82_c00156{transform:matrix(0.193815,-0.005039,0.006498,0.249916,0,0);-ms-transform:matrix(0.193815,-0.005039,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193815,-0.005039,0.006498,0.249916,0,0);}
.m2f_c00156{transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);-ms-transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);}
.mf4_c00156{transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);-ms-transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);}
.m40_c00156{transform:matrix(0.195354,-0.005079,0.006498,0.249916,0,0);-ms-transform:matrix(0.195354,-0.005079,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195354,-0.005079,0.006498,0.249916,0,0);}
.m81_c00156{transform:matrix(0.195744,-0.005089,0.006498,0.249916,0,0);-ms-transform:matrix(0.195744,-0.005089,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195744,-0.005089,0.006498,0.249916,0,0);}
.mb2_c00156{transform:matrix(0.196194,-0.005101,0.006498,0.249916,0,0);-ms-transform:matrix(0.196194,-0.005101,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196194,-0.005101,0.006498,0.249916,0,0);}
.m91_c00156{transform:matrix(0.196504,-0.005109,0.006498,0.249916,0,0);-ms-transform:matrix(0.196504,-0.005109,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196504,-0.005109,0.006498,0.249916,0,0);}
.mb3_c00156{transform:matrix(0.196639,-0.005113,0.006498,0.249916,0,0);-ms-transform:matrix(0.196639,-0.005113,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196639,-0.005113,0.006498,0.249916,0,0);}
.m84_c00156{transform:matrix(0.196664,-0.005113,0.006498,0.249916,0,0);-ms-transform:matrix(0.196664,-0.005113,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196664,-0.005113,0.006498,0.249916,0,0);}
.m24_c00156{transform:matrix(0.196704,-0.005114,0.006498,0.249916,0,0);-ms-transform:matrix(0.196704,-0.005114,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196704,-0.005114,0.006498,0.249916,0,0);}
.m20_c00156{transform:matrix(0.196733,-0.004722,0.005998,0.249928,0,0);-ms-transform:matrix(0.196733,-0.004722,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196733,-0.004722,0.005998,0.249928,0,0);}
.m45_c00156{transform:matrix(0.197328,-0.005131,0.006498,0.249916,0,0);-ms-transform:matrix(0.197328,-0.005131,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197328,-0.005131,0.006498,0.249916,0,0);}
.m2c_c00156{transform:matrix(0.197538,-0.005136,0.006498,0.249916,0,0);-ms-transform:matrix(0.197538,-0.005136,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197538,-0.005136,0.006498,0.249916,0,0);}
.m7e_c00156{transform:matrix(0.198368,-0.005158,0.006498,0.249916,0,0);-ms-transform:matrix(0.198368,-0.005158,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198368,-0.005158,0.006498,0.249916,0,0);}
.m86_c00156{transform:matrix(0.199018,-0.005174,0.006498,0.249916,0,0);-ms-transform:matrix(0.199018,-0.005174,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199018,-0.005174,0.006498,0.249916,0,0);}
.m5b_c00156{transform:matrix(0.199033,-0.005175,0.006498,0.249916,0,0);-ms-transform:matrix(0.199033,-0.005175,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199033,-0.005175,0.006498,0.249916,0,0);}
.mbf_c00156{transform:matrix(0.199048,-0.005175,0.006498,0.249916,0,0);-ms-transform:matrix(0.199048,-0.005175,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199048,-0.005175,0.006498,0.249916,0,0);}
.m58_c00156{transform:matrix(0.199143,-0.005178,0.006498,0.249916,0,0);-ms-transform:matrix(0.199143,-0.005178,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199143,-0.005178,0.006498,0.249916,0,0);}
.mc6_c00156{transform:matrix(0.199243,-0.005180,0.006498,0.249916,0,0);-ms-transform:matrix(0.199243,-0.005180,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199243,-0.005180,0.006498,0.249916,0,0);}
.md8_c00156{transform:matrix(0.199293,-0.005182,0.006498,0.249916,0,0);-ms-transform:matrix(0.199293,-0.005182,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199293,-0.005182,0.006498,0.249916,0,0);}
.m4a_c00156{transform:matrix(0.199538,-0.005188,0.006498,0.249916,0,0);-ms-transform:matrix(0.199538,-0.005188,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199538,-0.005188,0.006498,0.249916,0,0);}
.m44_c00156{transform:matrix(0.200027,-0.005201,0.006498,0.249916,0,0);-ms-transform:matrix(0.200027,-0.005201,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200027,-0.005201,0.006498,0.249916,0,0);}
.mb_c00156{transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);-ms-transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);}
.m73_c00156{transform:matrix(0.200847,-0.005222,0.006498,0.249916,0,0);-ms-transform:matrix(0.200847,-0.005222,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200847,-0.005222,0.006498,0.249916,0,0);}
.m8c_c00156{transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);-ms-transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200867,-0.005223,0.006498,0.249916,0,0);}
.m9d_c00156{transform:matrix(0.201512,-0.005239,0.006498,0.249916,0,0);-ms-transform:matrix(0.201512,-0.005239,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201512,-0.005239,0.006498,0.249916,0,0);}
.mbc_c00156{transform:matrix(0.201657,-0.005243,0.006498,0.249916,0,0);-ms-transform:matrix(0.201657,-0.005243,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201657,-0.005243,0.006498,0.249916,0,0);}
.m97_c00156{transform:matrix(0.202572,-0.005267,0.006498,0.249916,0,0);-ms-transform:matrix(0.202572,-0.005267,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202572,-0.005267,0.006498,0.249916,0,0);}
.mbe_c00156{transform:matrix(0.202736,-0.005271,0.006498,0.249916,0,0);-ms-transform:matrix(0.202736,-0.005271,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202736,-0.005271,0.006498,0.249916,0,0);}
.m96_c00156{transform:matrix(0.202886,-0.005275,0.006498,0.249916,0,0);-ms-transform:matrix(0.202886,-0.005275,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202886,-0.005275,0.006498,0.249916,0,0);}
.m6b_c00156{transform:matrix(0.203746,-0.005297,0.006498,0.249916,0,0);-ms-transform:matrix(0.203746,-0.005297,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203746,-0.005297,0.006498,0.249916,0,0);}
.mba_c00156{transform:matrix(0.203841,-0.005300,0.006498,0.249916,0,0);-ms-transform:matrix(0.203841,-0.005300,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203841,-0.005300,0.006498,0.249916,0,0);}
.md7_c00156{transform:matrix(0.203871,-0.005301,0.006498,0.249916,0,0);-ms-transform:matrix(0.203871,-0.005301,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203871,-0.005301,0.006498,0.249916,0,0);}
.m52_c00156{transform:matrix(0.204191,-0.005309,0.006498,0.249916,0,0);-ms-transform:matrix(0.204191,-0.005309,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204191,-0.005309,0.006498,0.249916,0,0);}
.m80_c00156{transform:matrix(0.204481,-0.005317,0.006498,0.249916,0,0);-ms-transform:matrix(0.204481,-0.005317,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204481,-0.005317,0.006498,0.249916,0,0);}
.mc_c00156{transform:matrix(0.205606,-0.004935,0.005998,0.249928,0,0);-ms-transform:matrix(0.205606,-0.004935,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205606,-0.004935,0.005998,0.249928,0,0);}
.m78_c00156{transform:matrix(0.206000,-0.005356,0.006498,0.249916,0,0);-ms-transform:matrix(0.206000,-0.005356,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206000,-0.005356,0.006498,0.249916,0,0);}
.m1f_c00156{transform:matrix(0.206576,-0.004958,0.005998,0.249928,0,0);-ms-transform:matrix(0.206576,-0.004958,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206576,-0.004958,0.005998,0.249928,0,0);}
.m66_c00156{transform:matrix(0.206750,-0.005376,0.006498,0.249916,0,0);-ms-transform:matrix(0.206750,-0.005376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206750,-0.005376,0.006498,0.249916,0,0);}
.m9f_c00156{transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-ms-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);}
.med_c00156{transform:matrix(0.207025,-0.005383,0.006498,0.249916,0,0);-ms-transform:matrix(0.207025,-0.005383,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207025,-0.005383,0.006498,0.249916,0,0);}
.m99_c00156{transform:matrix(0.207135,-0.005386,0.006498,0.249916,0,0);-ms-transform:matrix(0.207135,-0.005386,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207135,-0.005386,0.006498,0.249916,0,0);}
.mf9_c00156{transform:matrix(0.207495,-0.005395,0.006498,0.249916,0,0);-ms-transform:matrix(0.207495,-0.005395,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207495,-0.005395,0.006498,0.249916,0,0);}
.m10_c00156{transform:matrix(0.207540,-0.004981,0.005998,0.249928,0,0);-ms-transform:matrix(0.207540,-0.004981,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207540,-0.004981,0.005998,0.249928,0,0);}
.m5c_c00156{transform:matrix(0.207560,-0.005397,0.006498,0.249916,0,0);-ms-transform:matrix(0.207560,-0.005397,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207560,-0.005397,0.006498,0.249916,0,0);}
.m39_c00156{transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);-ms-transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);}
.mef_c00156{transform:matrix(0.208255,-0.005415,0.006498,0.249916,0,0);-ms-transform:matrix(0.208255,-0.005415,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208255,-0.005415,0.006498,0.249916,0,0);}
.m38_c00156{transform:matrix(0.208315,-0.005416,0.006498,0.249916,0,0);-ms-transform:matrix(0.208315,-0.005416,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208315,-0.005416,0.006498,0.249916,0,0);}
.m3f_c00156{transform:matrix(0.208874,-0.005431,0.006498,0.249916,0,0);-ms-transform:matrix(0.208874,-0.005431,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208874,-0.005431,0.006498,0.249916,0,0);}
.mc0_c00156{transform:matrix(0.209049,-0.005435,0.006498,0.249916,0,0);-ms-transform:matrix(0.209049,-0.005435,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209049,-0.005435,0.006498,0.249916,0,0);}
.m13_c00156{transform:matrix(0.209150,-0.005020,0.005998,0.249928,0,0);-ms-transform:matrix(0.209150,-0.005020,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209150,-0.005020,0.005998,0.249928,0,0);}
.mf_c00156{transform:matrix(0.209725,-0.005033,0.005998,0.249928,0,0);-ms-transform:matrix(0.209725,-0.005033,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209725,-0.005033,0.005998,0.249928,0,0);}
.m25_c00156{transform:matrix(0.210644,-0.005477,0.006498,0.249916,0,0);-ms-transform:matrix(0.210644,-0.005477,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210644,-0.005477,0.006498,0.249916,0,0);}
.m61_c00156{transform:matrix(0.211439,-0.005497,0.006498,0.249916,0,0);-ms-transform:matrix(0.211439,-0.005497,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211439,-0.005497,0.006498,0.249916,0,0);}
.m9b_c00156{transform:matrix(0.211703,-0.005504,0.006498,0.249916,0,0);-ms-transform:matrix(0.211703,-0.005504,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211703,-0.005504,0.006498,0.249916,0,0);}
.m11_c00156{transform:matrix(0.211994,-0.005088,0.005998,0.249928,0,0);-ms-transform:matrix(0.211994,-0.005088,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211994,-0.005088,0.005998,0.249928,0,0);}
.m3c_c00156{transform:matrix(0.212498,-0.005525,0.006498,0.249916,0,0);-ms-transform:matrix(0.212498,-0.005525,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212498,-0.005525,0.006498,0.249916,0,0);}
.m36_c00156{transform:matrix(0.212873,-0.005535,0.006498,0.249916,0,0);-ms-transform:matrix(0.212873,-0.005535,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212873,-0.005535,0.006498,0.249916,0,0);}
.mf5_c00156{transform:matrix(0.213363,-0.005547,0.006498,0.249916,0,0);-ms-transform:matrix(0.213363,-0.005547,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213363,-0.005547,0.006498,0.249916,0,0);}
.m63_c00156{transform:matrix(0.213548,-0.005552,0.006498,0.249916,0,0);-ms-transform:matrix(0.213548,-0.005552,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213548,-0.005552,0.006498,0.249916,0,0);}
.m4c_c00156{transform:matrix(0.213688,-0.005556,0.006498,0.249916,0,0);-ms-transform:matrix(0.213688,-0.005556,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213688,-0.005556,0.006498,0.249916,0,0);}
.m12_c00156{transform:matrix(0.214563,-0.005150,0.005998,0.249928,0,0);-ms-transform:matrix(0.214563,-0.005150,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214563,-0.005150,0.005998,0.249928,0,0);}
.mcf_c00156{transform:matrix(0.214882,-0.005587,0.006498,0.249916,0,0);-ms-transform:matrix(0.214882,-0.005587,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214882,-0.005587,0.006498,0.249916,0,0);}
.mf3_c00156{transform:matrix(0.214902,-0.005587,0.006498,0.249916,0,0);-ms-transform:matrix(0.214902,-0.005587,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214902,-0.005587,0.006498,0.249916,0,0);}
.m69_c00156{transform:matrix(0.215552,-0.005604,0.006498,0.249916,0,0);-ms-transform:matrix(0.215552,-0.005604,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215552,-0.005604,0.006498,0.249916,0,0);}
.m70_c00156{transform:matrix(0.216192,-0.005621,0.006498,0.249916,0,0);-ms-transform:matrix(0.216192,-0.005621,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216192,-0.005621,0.006498,0.249916,0,0);}
.mdd_c00156{transform:matrix(0.216647,-0.005633,0.006498,0.249916,0,0);-ms-transform:matrix(0.216647,-0.005633,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216647,-0.005633,0.006498,0.249916,0,0);}
.m5_c00156{transform:matrix(0.217197,-0.005213,0.005998,0.249928,0,0);-ms-transform:matrix(0.217197,-0.005213,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217197,-0.005213,0.005998,0.249928,0,0);}
.m9_c00156{transform:matrix(0.217287,-0.005215,0.005998,0.249928,0,0);-ms-transform:matrix(0.217287,-0.005215,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217287,-0.005215,0.005998,0.249928,0,0);}
.m74_c00156{transform:matrix(0.217516,-0.005655,0.006498,0.249916,0,0);-ms-transform:matrix(0.217516,-0.005655,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217516,-0.005655,0.006498,0.249916,0,0);}
.m93_c00156{transform:matrix(0.217531,-0.005656,0.006498,0.249916,0,0);-ms-transform:matrix(0.217531,-0.005656,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217531,-0.005656,0.006498,0.249916,0,0);}
.mc4_c00156{transform:matrix(0.217706,-0.005660,0.006498,0.249916,0,0);-ms-transform:matrix(0.217706,-0.005660,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217706,-0.005660,0.006498,0.249916,0,0);}
.m7b_c00156{transform:matrix(0.217851,-0.005664,0.006498,0.249916,0,0);-ms-transform:matrix(0.217851,-0.005664,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217851,-0.005664,0.006498,0.249916,0,0);}
.mdb_c00156{transform:matrix(0.218076,-0.005670,0.006498,0.249916,0,0);-ms-transform:matrix(0.218076,-0.005670,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218076,-0.005670,0.006498,0.249916,0,0);}
.m64_c00156{transform:matrix(0.218201,-0.005673,0.006498,0.249916,0,0);-ms-transform:matrix(0.218201,-0.005673,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218201,-0.005673,0.006498,0.249916,0,0);}
.m68_c00156{transform:matrix(0.218761,-0.005688,0.006498,0.249916,0,0);-ms-transform:matrix(0.218761,-0.005688,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218761,-0.005688,0.006498,0.249916,0,0);}
.m42_c00156{transform:matrix(0.219076,-0.005696,0.006498,0.249916,0,0);-ms-transform:matrix(0.219076,-0.005696,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219076,-0.005696,0.006498,0.249916,0,0);}
.mf1_c00156{transform:matrix(0.219776,-0.005714,0.006498,0.249916,0,0);-ms-transform:matrix(0.219776,-0.005714,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219776,-0.005714,0.006498,0.249916,0,0);}
.md5_c00156{transform:matrix(0.220421,-0.005731,0.006498,0.249916,0,0);-ms-transform:matrix(0.220421,-0.005731,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220421,-0.005731,0.006498,0.249916,0,0);}
.m1d_c00156{transform:matrix(0.220512,-0.005292,0.005998,0.249928,0,0);-ms-transform:matrix(0.220512,-0.005292,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220512,-0.005292,0.005998,0.249928,0,0);}
.m65_c00156{transform:matrix(0.220840,-0.005742,0.006498,0.249916,0,0);-ms-transform:matrix(0.220840,-0.005742,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220840,-0.005742,0.006498,0.249916,0,0);}
.m5d_c00156{transform:matrix(0.221095,-0.005748,0.006498,0.249916,0,0);-ms-transform:matrix(0.221095,-0.005748,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221095,-0.005748,0.006498,0.249916,0,0);}
.m76_c00156{transform:matrix(0.221205,-0.005751,0.006498,0.249916,0,0);-ms-transform:matrix(0.221205,-0.005751,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221205,-0.005751,0.006498,0.249916,0,0);}
.md_c00156{transform:matrix(0.222016,-0.005328,0.005998,0.249928,0,0);-ms-transform:matrix(0.222016,-0.005328,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222016,-0.005328,0.005998,0.249928,0,0);}
.mb9_c00156{transform:matrix(0.222715,-0.005791,0.006498,0.249916,0,0);-ms-transform:matrix(0.222715,-0.005791,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222715,-0.005791,0.006498,0.249916,0,0);}
.m2a_c00156{transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);-ms-transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);}
.mce_c00156{transform:matrix(0.222915,-0.005796,0.006498,0.249916,0,0);-ms-transform:matrix(0.222915,-0.005796,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222915,-0.005796,0.006498,0.249916,0,0);}
.m50_c00156{transform:matrix(0.223709,-0.005816,0.006498,0.249916,0,0);-ms-transform:matrix(0.223709,-0.005816,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223709,-0.005816,0.006498,0.249916,0,0);}
.m32_c00156{transform:matrix(0.223884,-0.005821,0.006498,0.249916,0,0);-ms-transform:matrix(0.223884,-0.005821,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223884,-0.005821,0.006498,0.249916,0,0);}
.m1a_c00156{transform:matrix(0.224340,-0.005384,0.005998,0.249928,0,0);-ms-transform:matrix(0.224340,-0.005384,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224340,-0.005384,0.005998,0.249928,0,0);}
.mcd_c00156{transform:matrix(0.224579,-0.005839,0.006498,0.249916,0,0);-ms-transform:matrix(0.224579,-0.005839,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224579,-0.005839,0.006498,0.249916,0,0);}
.m7a_c00156{transform:matrix(0.224919,-0.005848,0.006498,0.249916,0,0);-ms-transform:matrix(0.224919,-0.005848,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224919,-0.005848,0.006498,0.249916,0,0);}
.m9a_c00156{transform:matrix(0.225544,-0.005864,0.006498,0.249916,0,0);-ms-transform:matrix(0.225544,-0.005864,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225544,-0.005864,0.006498,0.249916,0,0);}
.md6_c00156{transform:matrix(0.225794,-0.005871,0.006498,0.249916,0,0);-ms-transform:matrix(0.225794,-0.005871,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225794,-0.005871,0.006498,0.249916,0,0);}
.m88_c00156{transform:matrix(0.225934,-0.005874,0.006498,0.249916,0,0);-ms-transform:matrix(0.225934,-0.005874,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225934,-0.005874,0.006498,0.249916,0,0);}
.m3d_c00156{transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);-ms-transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);}
.mff_c00156{transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);}
.m51_c00156{transform:matrix(0.227573,-0.005917,0.006498,0.249916,0,0);-ms-transform:matrix(0.227573,-0.005917,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227573,-0.005917,0.006498,0.249916,0,0);}
.m1c_c00156{transform:matrix(0.232683,-0.005584,0.005998,0.249928,0,0);-ms-transform:matrix(0.232683,-0.005584,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232683,-0.005584,0.005998,0.249928,0,0);}
.mb0_c00156{transform:matrix(0.237355,-0.006171,0.006498,0.249916,0,0);-ms-transform:matrix(0.237355,-0.006171,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237355,-0.006171,0.006498,0.249916,0,0);}
.mfe_c00156{transform:matrix(0.239755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239755,0.000000,0.000000,0.250000,0,0);}
.m5e_c00156{transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);-ms-transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);-webkit-transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);}
.m3a_c00156{transform:matrix(0.243453,-0.006330,0.006498,0.249916,0,0);-ms-transform:matrix(0.243453,-0.006330,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243453,-0.006330,0.006498,0.249916,0,0);}
.m54_c00156{transform:matrix(0.250050,-0.006501,0.006498,0.249916,0,0);-ms-transform:matrix(0.250050,-0.006501,0.006498,0.249916,0,0);-webkit-transform:matrix(0.250050,-0.006501,0.006498,0.249916,0,0);}
.m15_c00156{transform:matrix(0.251423,-0.006034,0.005998,0.249928,0,0);-ms-transform:matrix(0.251423,-0.006034,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251423,-0.006034,0.005998,0.249928,0,0);}
.mdc_c00156{transform:matrix(0.251945,-0.006551,0.006498,0.249916,0,0);-ms-transform:matrix(0.251945,-0.006551,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251945,-0.006551,0.006498,0.249916,0,0);}
.md9_c00156{transform:matrix(0.256808,-0.006677,0.006498,0.249916,0,0);-ms-transform:matrix(0.256808,-0.006677,0.006498,0.249916,0,0);-webkit-transform:matrix(0.256808,-0.006677,0.006498,0.249916,0,0);}
.m6a_c00156{transform:matrix(0.257963,-0.006707,0.006498,0.249916,0,0);-ms-transform:matrix(0.257963,-0.006707,0.006498,0.249916,0,0);-webkit-transform:matrix(0.257963,-0.006707,0.006498,0.249916,0,0);}
.me6_c00156{transform:matrix(0.259852,-0.006756,0.006498,0.249916,0,0);-ms-transform:matrix(0.259852,-0.006756,0.006498,0.249916,0,0);-webkit-transform:matrix(0.259852,-0.006756,0.006498,0.249916,0,0);}
.mda_c00156{transform:matrix(0.261022,-0.006787,0.006498,0.249916,0,0);-ms-transform:matrix(0.261022,-0.006787,0.006498,0.249916,0,0);-webkit-transform:matrix(0.261022,-0.006787,0.006498,0.249916,0,0);}
.mc2_c00156{transform:matrix(0.265425,-0.006901,0.006498,0.249916,0,0);-ms-transform:matrix(0.265425,-0.006901,0.006498,0.249916,0,0);-webkit-transform:matrix(0.265425,-0.006901,0.006498,0.249916,0,0);}
.m3_c00156{transform:matrix(0.265893,-0.006381,0.005998,0.249928,0,0);-ms-transform:matrix(0.265893,-0.006381,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265893,-0.006381,0.005998,0.249928,0,0);}
.m9e_c00156{transform:matrix(0.275007,-0.007150,0.006498,0.249916,0,0);-ms-transform:matrix(0.275007,-0.007150,0.006498,0.249916,0,0);-webkit-transform:matrix(0.275007,-0.007150,0.006498,0.249916,0,0);}
.m53_c00156{transform:matrix(0.299259,-0.007781,0.006498,0.249916,0,0);-ms-transform:matrix(0.299259,-0.007781,0.006498,0.249916,0,0);-webkit-transform:matrix(0.299259,-0.007781,0.006498,0.249916,0,0);}
.mc1_c00156{transform:matrix(0.301298,-0.007834,0.006498,0.249916,0,0);-ms-transform:matrix(0.301298,-0.007834,0.006498,0.249916,0,0);-webkit-transform:matrix(0.301298,-0.007834,0.006498,0.249916,0,0);}
.m4f_c00156{transform:matrix(0.318727,-0.008287,0.006498,0.249916,0,0);-ms-transform:matrix(0.318727,-0.008287,0.006498,0.249916,0,0);-webkit-transform:matrix(0.318727,-0.008287,0.006498,0.249916,0,0);}
.m16_c00156{transform:matrix(0.356162,-0.008548,0.005998,0.249928,0,0);-ms-transform:matrix(0.356162,-0.008548,0.005998,0.249928,0,0);-webkit-transform:matrix(0.356162,-0.008548,0.005998,0.249928,0,0);}
.m95_c00156{transform:matrix(0.473560,-0.012313,0.006498,0.249916,0,0);-ms-transform:matrix(0.473560,-0.012313,0.006498,0.249916,0,0);-webkit-transform:matrix(0.473560,-0.012313,0.006498,0.249916,0,0);}
.mca_c00156{transform:matrix(0.722376,-0.018782,0.006498,0.249916,0,0);-ms-transform:matrix(0.722376,-0.018782,0.006498,0.249916,0,0);-webkit-transform:matrix(0.722376,-0.018782,0.006498,0.249916,0,0);}
.m0_c00156{transform:matrix(0.880207,-0.021125,0.005998,0.249928,0,0);-ms-transform:matrix(0.880207,-0.021125,0.005998,0.249928,0,0);-webkit-transform:matrix(0.880207,-0.021125,0.005998,0.249928,0,0);}
.mcb_c00156{transform:matrix(1.000842,-0.026022,0.006498,0.249916,0,0);-ms-transform:matrix(1.000842,-0.026022,0.006498,0.249916,0,0);-webkit-transform:matrix(1.000842,-0.026022,0.006498,0.249916,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:0.000000px;}
.fc0_c00156{color:transparent;}
.fs2_c00156{font-size:58.816932px;}
.fs8_c00156{font-size:58.819871px;}
.fsa_c00156{font-size:59.870226px;}
.fs3_c00156{font-size:61.967839px;}
.fsc_c00156{font-size:61.970936px;}
.fs4_c00156{font-size:63.018141px;}
.fse_c00156{font-size:63.021290px;}
.fs10_c00156{font-size:64.071645px;}
.fs9_c00156{font-size:65.122000px;}
.fs7_c00156{font-size:66.172355px;}
.fs6_c00156{font-size:67.222710px;}
.fs1_c00156{font-size:68.269653px;}
.fs5_c00156{font-size:68.273065px;}
.fs11_c00156{font-size:69.300000px;}
.fsd_c00156{font-size:69.323419px;}
.fsb_c00156{font-size:70.373774px;}
.fsf_c00156{font-size:72.474484px;}
.fs0_c00156{font-size:128.136887px;}
.y0_c00156{bottom:0.000000px;}
.yfd_c00156{bottom:36.721500px;}
.yf3_c00156{bottom:49.792803px;}
.yf4_c00156{bottom:50.190090px;}
.yf5_c00156{bottom:50.494989px;}
.yf6_c00156{bottom:51.083001px;}
.yf7_c00156{bottom:52.205313px;}
.yf8_c00156{bottom:52.650228px;}
.yf9_c00156{bottom:53.915013px;}
.yfa_c00156{bottom:54.681171px;}
.yfb_c00156{bottom:55.413705px;}
.yfc_c00156{bottom:55.921656px;}
.yea_c00156{bottom:70.313928px;}
.yeb_c00156{bottom:70.621626px;}
.yec_c00156{bottom:70.982211px;}
.yed_c00156{bottom:71.196453px;}
.yee_c00156{bottom:71.494020px;}
.yef_c00156{bottom:71.970804px;}
.yf0_c00156{bottom:72.233229px;}
.yf1_c00156{bottom:73.033350px;}
.yf2_c00156{bottom:73.299387px;}
.ye1_c00156{bottom:87.063501px;}
.ye2_c00156{bottom:87.702999px;}
.ye3_c00156{bottom:88.078269px;}
.ye4_c00156{bottom:89.193603px;}
.ye5_c00156{bottom:89.630526px;}
.ye6_c00156{bottom:90.051612px;}
.ye7_c00156{bottom:91.151265px;}
.ye8_c00156{bottom:91.672038px;}
.ye9_c00156{bottom:92.361897px;}
.yd9_c00156{bottom:106.776750px;}
.yda_c00156{bottom:107.385960px;}
.ydb_c00156{bottom:108.045393px;}
.ydc_c00156{bottom:108.133284px;}
.ydd_c00156{bottom:108.497553px;}
.yde_c00156{bottom:109.081632px;}
.ydf_c00156{bottom:109.211427px;}
.ye0_c00156{bottom:109.586241px;}
.yd3_c00156{bottom:124.063908px;}
.yd4_c00156{bottom:124.417698px;}
.yd5_c00156{bottom:125.248617px;}
.yd6_c00156{bottom:126.029064px;}
.yd7_c00156{bottom:126.196584px;}
.yd8_c00156{bottom:126.685608px;}
.ycc_c00156{bottom:137.301912px;}
.ycd_c00156{bottom:137.437443px;}
.yce_c00156{bottom:139.825125px;}
.ycf_c00156{bottom:141.092310px;}
.yd0_c00156{bottom:141.504186px;}
.yd1_c00156{bottom:142.482933px;}
.yd2_c00156{bottom:143.254767px;}
.yc4_c00156{bottom:155.400123px;}
.yc5_c00156{bottom:155.965395px;}
.yc6_c00156{bottom:156.345027px;}
.yc7_c00156{bottom:157.789902px;}
.yc8_c00156{bottom:158.046912px;}
.yc9_c00156{bottom:158.464551px;}
.yca_c00156{bottom:159.351822px;}
.ycb_c00156{bottom:160.289253px;}
.ybc_c00156{bottom:174.574176px;}
.ybd_c00156{bottom:175.381617px;}
.ybe_c00156{bottom:175.589001px;}
.ybf_c00156{bottom:175.829664px;}
.yc0_c00156{bottom:176.039763px;}
.yc1_c00156{bottom:176.498319px;}
.yc2_c00156{bottom:176.992518px;}
.yc3_c00156{bottom:177.394803px;}
.yb3_c00156{bottom:187.254120px;}
.yb4_c00156{bottom:187.982955px;}
.yb5_c00156{bottom:189.360921px;}
.yb6_c00156{bottom:189.526236px;}
.yb7_c00156{bottom:191.196024px;}
.yb8_c00156{bottom:191.882091px;}
.yb9_c00156{bottom:192.486954px;}
.yba_c00156{bottom:193.704987px;}
.ybb_c00156{bottom:194.107110px;}
.yab_c00156{bottom:206.991435px;}
.yac_c00156{bottom:208.036923px;}
.yad_c00156{bottom:208.769103px;}
.yae_c00156{bottom:209.483082px;}
.yaf_c00156{bottom:210.028584px;}
.yb0_c00156{bottom:210.314913px;}
.yb1_c00156{bottom:210.617199px;}
.yb2_c00156{bottom:211.075086px;}
.ya3_c00156{bottom:225.084975px;}
.ya4_c00156{bottom:225.666030px;}
.ya5_c00156{bottom:225.893352px;}
.ya6_c00156{bottom:226.381929px;}
.ya7_c00156{bottom:226.982001px;}
.ya8_c00156{bottom:227.642340px;}
.ya9_c00156{bottom:227.781246px;}
.yaa_c00156{bottom:228.342603px;}
.y9c_c00156{bottom:243.451785px;}
.y9d_c00156{bottom:244.030281px;}
.y9e_c00156{bottom:244.378947px;}
.y9f_c00156{bottom:244.963905px;}
.ya0_c00156{bottom:245.186139px;}
.ya1_c00156{bottom:245.638044px;}
.ya2_c00156{bottom:246.326943px;}
.y94_c00156{bottom:259.927974px;}
.y95_c00156{bottom:260.257737px;}
.y96_c00156{bottom:260.900982px;}
.y97_c00156{bottom:261.910356px;}
.y98_c00156{bottom:262.178514px;}
.y99_c00156{bottom:262.800132px;}
.y9a_c00156{bottom:263.250369px;}
.y9b_c00156{bottom:263.629749px;}
.y8b_c00156{bottom:277.213083px;}
.y8c_c00156{bottom:277.811295px;}
.y8d_c00156{bottom:278.338980px;}
.y8e_c00156{bottom:278.991870px;}
.y8f_c00156{bottom:279.190623px;}
.y90_c00156{bottom:279.647550px;}
.y91_c00156{bottom:279.940518px;}
.y92_c00156{bottom:280.649823px;}
.y93_c00156{bottom:281.234919px;}
.y85_c00156{bottom:295.038498px;}
.y86_c00156{bottom:295.847112px;}
.y87_c00156{bottom:297.311100px;}
.y88_c00156{bottom:298.030872px;}
.y89_c00156{bottom:299.410779px;}
.y8a_c00156{bottom:300.328407px;}
.y7e_c00156{bottom:312.594912px;}
.y7f_c00156{bottom:313.048020px;}
.y80_c00156{bottom:313.843545px;}
.y81_c00156{bottom:314.924208px;}
.y82_c00156{bottom:315.374664px;}
.y83_c00156{bottom:316.153665px;}
.y84_c00156{bottom:317.510355px;}
.y75_c00156{bottom:328.805508px;}
.y76_c00156{bottom:329.612880px;}
.y77_c00156{bottom:330.306504px;}
.y78_c00156{bottom:330.781758px;}
.y79_c00156{bottom:332.473431px;}
.y7a_c00156{bottom:332.978520px;}
.y7b_c00156{bottom:334.111827px;}
.y7c_c00156{bottom:335.269920px;}
.y7d_c00156{bottom:335.609409px;}
.y6d_c00156{bottom:345.282717px;}
.y6e_c00156{bottom:346.443981px;}
.y6f_c00156{bottom:346.826766px;}
.y70_c00156{bottom:348.859524px;}
.y71_c00156{bottom:349.631841px;}
.y72_c00156{bottom:350.133927px;}
.y73_c00156{bottom:351.187317px;}
.y74_c00156{bottom:352.435707px;}
.y65_c00156{bottom:361.755762px;}
.y66_c00156{bottom:362.274627px;}
.y67_c00156{bottom:363.824553px;}
.y68_c00156{bottom:365.141559px;}
.y69_c00156{bottom:365.655120px;}
.y6a_c00156{bottom:366.122733px;}
.y6b_c00156{bottom:367.288692px;}
.y6c_c00156{bottom:368.309709px;}
.y5d_c00156{bottom:379.851393px;}
.y5e_c00156{bottom:381.019662px;}
.y5f_c00156{bottom:382.148259px;}
.y60_c00156{bottom:382.586196px;}
.y61_c00156{bottom:383.856339px;}
.y62_c00156{bottom:384.201825px;}
.y63_c00156{bottom:385.226619px;}
.y64_c00156{bottom:385.665453px;}
.y54_c00156{bottom:396.598482px;}
.y55_c00156{bottom:397.183149px;}
.y56_c00156{bottom:397.635666px;}
.y57_c00156{bottom:399.026880px;}
.y58_c00156{bottom:400.300065px;}
.y59_c00156{bottom:400.685007px;}
.y5a_c00156{bottom:401.970069px;}
.y5b_c00156{bottom:402.516354px;}
.y5c_c00156{bottom:403.132614px;}
.y4b_c00156{bottom:413.074407px;}
.y4c_c00156{bottom:413.631171px;}
.y4d_c00156{bottom:414.094335px;}
.y4e_c00156{bottom:415.773207px;}
.y4f_c00156{bottom:416.436948px;}
.y50_c00156{bottom:417.248343px;}
.y51_c00156{bottom:418.113714px;}
.y52_c00156{bottom:418.719501px;}
.y53_c00156{bottom:419.593686px;}
.y41_c00156{bottom:430.629192px;}
.y42_c00156{bottom:431.623911px;}
.y43_c00156{bottom:431.853738px;}
.y44_c00156{bottom:432.141543px;}
.y45_c00156{bottom:432.524964px;}
.y46_c00156{bottom:434.350686px;}
.y47_c00156{bottom:435.007521px;}
.y48_c00156{bottom:436.359237px;}
.y49_c00156{bottom:436.868190px;}
.y4a_c00156{bottom:437.274624px;}
.y39_c00156{bottom:447.649662px;}
.y3a_c00156{bottom:449.281557px;}
.y3b_c00156{bottom:449.880243px;}
.y3c_c00156{bottom:451.760676px;}
.y3d_c00156{bottom:452.199156px;}
.y3e_c00156{bottom:454.087368px;}
.y3f_c00156{bottom:454.466532px;}
.y40_c00156{bottom:454.974780px;}
.y33_c00156{bottom:464.939388px;}
.y34_c00156{bottom:466.502748px;}
.y35_c00156{bottom:467.130564px;}
.y36_c00156{bottom:467.808726px;}
.y37_c00156{bottom:470.087256px;}
.y38_c00156{bottom:473.057889px;}
.y2a_c00156{bottom:483.569004px;}
.y2b_c00156{bottom:484.253910px;}
.y2c_c00156{bottom:484.876815px;}
.y2d_c00156{bottom:485.552340px;}
.y2e_c00156{bottom:486.826350px;}
.y2f_c00156{bottom:487.195065px;}
.y30_c00156{bottom:488.436426px;}
.y31_c00156{bottom:488.689563px;}
.y32_c00156{bottom:489.078639px;}
.y22_c00156{bottom:500.589000px;}
.y23_c00156{bottom:501.129345px;}
.y24_c00156{bottom:501.720117px;}
.y25_c00156{bottom:503.249580px;}
.y26_c00156{bottom:503.588061px;}
.y27_c00156{bottom:504.381594px;}
.y28_c00156{bottom:505.674132px;}
.y29_c00156{bottom:507.716445px;}
.y1a_c00156{bottom:517.577484px;}
.y1b_c00156{bottom:518.027388px;}
.y1c_c00156{bottom:520.101564px;}
.y1d_c00156{bottom:520.487148px;}
.y1e_c00156{bottom:521.648196px;}
.y1f_c00156{bottom:522.148956px;}
.y20_c00156{bottom:522.622848px;}
.y21_c00156{bottom:523.735200px;}
.y11_c00156{bottom:535.672872px;}
.y12_c00156{bottom:536.141100px;}
.y13_c00156{bottom:537.280464px;}
.y14_c00156{bottom:537.479688px;}
.y15_c00156{bottom:538.838268px;}
.y16_c00156{bottom:539.381148px;}
.y17_c00156{bottom:540.957432px;}
.y18_c00156{bottom:541.188504px;}
.y19_c00156{bottom:541.745040px;}
.ya_c00156{bottom:552.957792px;}
.yb_c00156{bottom:553.926564px;}
.yc_c00156{bottom:554.358756px;}
.yd_c00156{bottom:554.958000px;}
.ye_c00156{bottom:556.435344px;}
.yf_c00156{bottom:558.062172px;}
.y10_c00156{bottom:559.095408px;}
.y2_c00156{bottom:569.162424px;}
.y3_c00156{bottom:569.914788px;}
.y4_c00156{bottom:571.425924px;}
.y5_c00156{bottom:571.760196px;}
.y6_c00156{bottom:573.408876px;}
.y7_c00156{bottom:574.415292px;}
.y8_c00156{bottom:575.527212px;}
.y9_c00156{bottom:576.810840px;}
.y1_c00156{bottom:585.640500px;}
.h4_c00156{height:58.816932px;}
.ha_c00156{height:58.819871px;}
.hc_c00156{height:59.870226px;}
.h5_c00156{height:61.967839px;}
.he_c00156{height:61.970936px;}
.h6_c00156{height:63.018141px;}
.h10_c00156{height:63.021290px;}
.h12_c00156{height:64.071645px;}
.hb_c00156{height:65.122000px;}
.h9_c00156{height:66.172355px;}
.h8_c00156{height:67.222710px;}
.h3_c00156{height:68.269653px;}
.h7_c00156{height:68.273065px;}
.h13_c00156{height:69.300000px;}
.hf_c00156{height:69.323419px;}
.hd_c00156{height:70.373774px;}
.h11_c00156{height:72.474484px;}
.h2_c00156{height:128.136887px;}
.h0_c00156{height:623.100000px;}
.h1_c00156{height:623.250000px;}
.w1_c00156{width:383.250000px;}
.w0_c00156{width:383.400000px;}
.x0_c00156{left:0.000000px;}
.x74_c00156{left:32.232126px;}
.x2_c00156{left:33.442848px;}
.xf_c00156{left:34.536264px;}
.x2b_c00156{left:36.298053px;}
.x4d_c00156{left:37.324218px;}
.x6f_c00156{left:38.431890px;}
.x76_c00156{left:39.543183px;}
.x7b_c00156{left:41.065293px;}
.x1f_c00156{left:49.192500px;}
.x18_c00156{left:54.555036px;}
.x10_c00156{left:55.796772px;}
.x3c_c00156{left:57.290847px;}
.x7c_c00156{left:59.116665px;}
.x3_c00156{left:60.288756px;}
.x42_c00156{left:61.624134px;}
.x5e_c00156{left:63.070767px;}
.x27_c00156{left:66.413559px;}
.x52_c00156{left:68.527938px;}
.x20_c00156{left:69.975000px;}
.x71_c00156{left:72.119649px;}
.x3d_c00156{left:75.104847px;}
.xa_c00156{left:76.380516px;}
.x34_c00156{left:78.077394px;}
.x43_c00156{left:81.280155px;}
.x56_c00156{left:82.596759px;}
.x64_c00156{left:86.015544px;}
.x35_c00156{left:87.667401px;}
.x62_c00156{left:89.454219px;}
.x21_c00156{left:92.697000px;}
.xb_c00156{left:95.201484px;}
.x2e_c00156{left:97.002390px;}
.x36_c00156{left:99.660525px;}
.x65_c00156{left:104.919408px;}
.x7f_c00156{left:106.110000px;}
.x11_c00156{left:107.585256px;}
.x59_c00156{left:112.489857px;}
.x4_c00156{left:114.247572px;}
.x37_c00156{left:115.619844px;}
.x12_c00156{left:116.636688px;}
.x2f_c00156{left:119.162805px;}
.xc_c00156{left:121.233096px;}
.x5_c00156{left:126.174420px;}
.x6d_c00156{left:132.667059px;}
.x69_c00156{left:137.049543px;}
.x2c_c00156{left:138.805749px;}
.x70_c00156{left:139.986627px;}
.x44_c00156{left:141.773874px;}
.x19_c00156{left:144.731196px;}
.x49_c00156{left:146.056815px;}
.x22_c00156{left:151.522500px;}
.x77_c00156{left:154.843611px;}
.x5a_c00156{left:156.017298px;}
.x75_c00156{left:157.272270px;}
.x1a_c00156{left:161.485092px;}
.x78_c00156{left:162.900270px;}
.x23_c00156{left:164.541000px;}
.x1_c00156{left:167.023500px;}
.x5b_c00156{left:169.261581px;}
.x7d_c00156{left:170.941287px;}
.x4e_c00156{left:174.893718px;}
.x6a_c00156{left:176.749311px;}
.x13_c00156{left:178.372140px;}
.x72_c00156{left:179.414226px;}
.x28_c00156{left:183.365727px;}
.x6_c00156{left:185.051268px;}
.x30_c00156{left:188.831511px;}
.x5f_c00156{left:190.195206px;}
.x38_c00156{left:191.670783px;}
.x24_c00156{left:195.061500px;}
.x3e_c00156{left:196.412847px;}
.x29_c00156{left:200.144982px;}
.x14_c00156{left:203.055828px;}
.x31_c00156{left:205.061082px;}
.x6b_c00156{left:207.082629px;}
.x60_c00156{left:210.785148px;}
.x1b_c00156{left:211.988316px;}
.x45_c00156{left:213.919029px;}
.x39_c00156{left:219.069726px;}
.x7_c00156{left:220.981812px;}
.x4f_c00156{left:223.909218px;}
.x4b_c00156{left:225.525882px;}
.x4a_c00156{left:227.397384px;}
.x7e_c00156{left:228.419754px;}
.x3f_c00156{left:229.696347px;}
.x6e_c00156{left:230.839668px;}
.x1c_c00156{left:233.791356px;}
.x55_c00156{left:235.212744px;}
.x6c_c00156{left:239.766915px;}
.x25_c00156{left:244.774500px;}
.x53_c00156{left:248.492118px;}
.x66_c00156{left:250.760487px;}
.x40_c00156{left:252.995847px;}
.x1d_c00156{left:254.412360px;}
.xd_c00156{left:256.201836px;}
.x61_c00156{left:258.594294px;}
.x79_c00156{left:259.672347px;}
.x8_c00156{left:260.682996px;}
.x67_c00156{left:262.395738px;}
.x50_c00156{left:264.424218px;}
.x5c_c00156{left:266.489349px;}
.x2a_c00156{left:268.075041px;}
.x46_c00156{left:269.810397px;}
.x73_c00156{left:271.355754px;}
.x15_c00156{left:274.675248px;}
.x4c_c00156{left:276.201321px;}
.x57_c00156{left:280.567404px;}
.x16_c00156{left:285.178752px;}
.x41_c00156{left:286.618347px;}
.x32_c00156{left:289.034898px;}
.x7a_c00156{left:292.498098px;}
.x47_c00156{left:293.534730px;}
.x54_c00156{left:294.823827px;}
.x3a_c00156{left:296.580243px;}
.x63_c00156{left:298.272612px;}
.xe_c00156{left:301.129416px;}
.x1e_c00156{left:302.761512px;}
.x5d_c00156{left:305.446464px;}
.x9_c00156{left:306.538104px;}
.x33_c00156{left:307.832391px;}
.x68_c00156{left:309.157242px;}
.x17_c00156{left:310.493976px;}
.x51_c00156{left:312.439218px;}
.x3b_c00156{left:313.540140px;}
.x48_c00156{left:320.296797px;}
.x80_c00156{left:321.840000px;}
.x26_c00156{left:323.325000px;}
.x2d_c00156{left:326.321538px;}
.x58_c00156{left:331.505973px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.fs2_c00156{font-size:52.281717pt;}
.fs8_c00156{font-size:52.284330pt;}
.fsa_c00156{font-size:53.217979pt;}
.fs3_c00156{font-size:55.082524pt;}
.fsc_c00156{font-size:55.085276pt;}
.fs4_c00156{font-size:56.016126pt;}
.fse_c00156{font-size:56.018925pt;}
.fs10_c00156{font-size:56.952574pt;}
.fs9_c00156{font-size:57.886222pt;}
.fs7_c00156{font-size:58.819871pt;}
.fs6_c00156{font-size:59.753520pt;}
.fs1_c00156{font-size:60.684136pt;}
.fs5_c00156{font-size:60.687169pt;}
.fs11_c00156{font-size:61.600000pt;}
.fsd_c00156{font-size:61.620817pt;}
.fsb_c00156{font-size:62.554466pt;}
.fsf_c00156{font-size:64.421764pt;}
.fs0_c00156{font-size:113.899456pt;}
.y0_c00156{bottom:0.000000pt;}
.yfd_c00156{bottom:32.641333pt;}
.yf3_c00156{bottom:44.260269pt;}
.yf4_c00156{bottom:44.613413pt;}
.yf5_c00156{bottom:44.884435pt;}
.yf6_c00156{bottom:45.407112pt;}
.yf7_c00156{bottom:46.404723pt;}
.yf8_c00156{bottom:46.800203pt;}
.yf9_c00156{bottom:47.924456pt;}
.yfa_c00156{bottom:48.605485pt;}
.yfb_c00156{bottom:49.256627pt;}
.yfc_c00156{bottom:49.708139pt;}
.yea_c00156{bottom:62.501269pt;}
.yeb_c00156{bottom:62.774779pt;}
.yec_c00156{bottom:63.095299pt;}
.yed_c00156{bottom:63.285736pt;}
.yee_c00156{bottom:63.550240pt;}
.yef_c00156{bottom:63.974048pt;}
.yf0_c00156{bottom:64.207315pt;}
.yf1_c00156{bottom:64.918533pt;}
.yf2_c00156{bottom:65.155011pt;}
.ye1_c00156{bottom:77.389779pt;}
.ye2_c00156{bottom:77.958221pt;}
.ye3_c00156{bottom:78.291795pt;}
.ye4_c00156{bottom:79.283203pt;}
.ye5_c00156{bottom:79.671579pt;}
.ye6_c00156{bottom:80.045877pt;}
.ye7_c00156{bottom:81.023347pt;}
.ye8_c00156{bottom:81.486256pt;}
.ye9_c00156{bottom:82.099464pt;}
.yd9_c00156{bottom:94.912667pt;}
.yda_c00156{bottom:95.454187pt;}
.ydb_c00156{bottom:96.040349pt;}
.ydc_c00156{bottom:96.118475pt;}
.ydd_c00156{bottom:96.442269pt;}
.yde_c00156{bottom:96.961451pt;}
.ydf_c00156{bottom:97.076824pt;}
.ye0_c00156{bottom:97.409992pt;}
.yd3_c00156{bottom:110.279029pt;}
.yd4_c00156{bottom:110.593509pt;}
.yd5_c00156{bottom:111.332104pt;}
.yd6_c00156{bottom:112.025835pt;}
.yd7_c00156{bottom:112.174741pt;}
.yd8_c00156{bottom:112.609429pt;}
.ycc_c00156{bottom:122.046144pt;}
.ycd_c00156{bottom:122.166616pt;}
.yce_c00156{bottom:124.289000pt;}
.ycf_c00156{bottom:125.415387pt;}
.yd0_c00156{bottom:125.781499pt;}
.yd1_c00156{bottom:126.651496pt;}
.yd2_c00156{bottom:127.337571pt;}
.yc4_c00156{bottom:138.133443pt;}
.yc5_c00156{bottom:138.635907pt;}
.yc6_c00156{bottom:138.973357pt;}
.yc7_c00156{bottom:140.257691pt;}
.yc8_c00156{bottom:140.486144pt;}
.yc9_c00156{bottom:140.857379pt;}
.yca_c00156{bottom:141.646064pt;}
.ycb_c00156{bottom:142.479336pt;}
.ybc_c00156{bottom:155.177045pt;}
.ybd_c00156{bottom:155.894771pt;}
.ybe_c00156{bottom:156.079112pt;}
.ybf_c00156{bottom:156.293035pt;}
.yc0_c00156{bottom:156.479789pt;}
.yc1_c00156{bottom:156.887395pt;}
.yc2_c00156{bottom:157.326683pt;}
.yc3_c00156{bottom:157.684269pt;}
.yb3_c00156{bottom:166.448107pt;}
.yb4_c00156{bottom:167.095960pt;}
.yb5_c00156{bottom:168.320819pt;}
.yb6_c00156{bottom:168.467765pt;}
.yb7_c00156{bottom:169.952021pt;}
.yb8_c00156{bottom:170.561859pt;}
.yb9_c00156{bottom:171.099515pt;}
.yba_c00156{bottom:172.182211pt;}
.ybb_c00156{bottom:172.539653pt;}
.yab_c00156{bottom:183.992387pt;}
.yac_c00156{bottom:184.921709pt;}
.yad_c00156{bottom:185.572536pt;}
.yae_c00156{bottom:186.207184pt;}
.yaf_c00156{bottom:186.692075pt;}
.yb0_c00156{bottom:186.946589pt;}
.yb1_c00156{bottom:187.215288pt;}
.yb2_c00156{bottom:187.622299pt;}
.ya3_c00156{bottom:200.075533pt;}
.ya4_c00156{bottom:200.592027pt;}
.ya5_c00156{bottom:200.794091pt;}
.ya6_c00156{bottom:201.228381pt;}
.ya7_c00156{bottom:201.761779pt;}
.ya8_c00156{bottom:202.348747pt;}
.ya9_c00156{bottom:202.472219pt;}
.yaa_c00156{bottom:202.971203pt;}
.y9c_c00156{bottom:216.401587pt;}
.y9d_c00156{bottom:216.915805pt;}
.y9e_c00156{bottom:217.225731pt;}
.y9f_c00156{bottom:217.745693pt;}
.ya0_c00156{bottom:217.943235pt;}
.ya1_c00156{bottom:218.344928pt;}
.ya2_c00156{bottom:218.957283pt;}
.y94_c00156{bottom:231.047088pt;}
.y95_c00156{bottom:231.340211pt;}
.y96_c00156{bottom:231.911984pt;}
.y97_c00156{bottom:232.809205pt;}
.y98_c00156{bottom:233.047568pt;}
.y99_c00156{bottom:233.600117pt;}
.y9a_c00156{bottom:234.000328pt;}
.y9b_c00156{bottom:234.337555pt;}
.y8b_c00156{bottom:246.411629pt;}
.y8c_c00156{bottom:246.943373pt;}
.y8d_c00156{bottom:247.412427pt;}
.y8e_c00156{bottom:247.992773pt;}
.y8f_c00156{bottom:248.169443pt;}
.y90_c00156{bottom:248.575600pt;}
.y91_c00156{bottom:248.836016pt;}
.y92_c00156{bottom:249.466509pt;}
.y93_c00156{bottom:249.986595pt;}
.y85_c00156{bottom:262.256443pt;}
.y86_c00156{bottom:262.975211pt;}
.y87_c00156{bottom:264.276533pt;}
.y88_c00156{bottom:264.916331pt;}
.y89_c00156{bottom:266.142915pt;}
.y8a_c00156{bottom:266.958584pt;}
.y7e_c00156{bottom:277.862144pt;}
.y7f_c00156{bottom:278.264907pt;}
.y80_c00156{bottom:278.972040pt;}
.y81_c00156{bottom:279.932629pt;}
.y82_c00156{bottom:280.333035pt;}
.y83_c00156{bottom:281.025480pt;}
.y84_c00156{bottom:282.231427pt;}
.y75_c00156{bottom:292.271563pt;}
.y76_c00156{bottom:292.989227pt;}
.y77_c00156{bottom:293.605781pt;}
.y78_c00156{bottom:294.028229pt;}
.y79_c00156{bottom:295.531939pt;}
.y7a_c00156{bottom:295.980907pt;}
.y7b_c00156{bottom:296.988291pt;}
.y7c_c00156{bottom:298.017707pt;}
.y7d_c00156{bottom:298.319475pt;}
.y6d_c00156{bottom:306.917971pt;}
.y6e_c00156{bottom:307.950205pt;}
.y6f_c00156{bottom:308.290459pt;}
.y70_c00156{bottom:310.097355pt;}
.y71_c00156{bottom:310.783859pt;}
.y72_c00156{bottom:311.230157pt;}
.y73_c00156{bottom:312.166504pt;}
.y74_c00156{bottom:313.276184pt;}
.y65_c00156{bottom:321.560677pt;}
.y66_c00156{bottom:322.021891pt;}
.y67_c00156{bottom:323.399603pt;}
.y68_c00156{bottom:324.570275pt;}
.y69_c00156{bottom:325.026773pt;}
.y6a_c00156{bottom:325.442429pt;}
.y6b_c00156{bottom:326.478837pt;}
.y6c_c00156{bottom:327.386408pt;}
.y5d_c00156{bottom:337.645683pt;}
.y5e_c00156{bottom:338.684144pt;}
.y5f_c00156{bottom:339.687341pt;}
.y60_c00156{bottom:340.076619pt;}
.y61_c00156{bottom:341.205635pt;}
.y62_c00156{bottom:341.512733pt;}
.y63_c00156{bottom:342.423661pt;}
.y64_c00156{bottom:342.813736pt;}
.y54_c00156{bottom:352.531984pt;}
.y55_c00156{bottom:353.051688pt;}
.y56_c00156{bottom:353.453925pt;}
.y57_c00156{bottom:354.690560pt;}
.y58_c00156{bottom:355.822280pt;}
.y59_c00156{bottom:356.164451pt;}
.y5a_c00156{bottom:357.306728pt;}
.y5b_c00156{bottom:357.792315pt;}
.y5c_c00156{bottom:358.340101pt;}
.y4b_c00156{bottom:367.177251pt;}
.y4c_c00156{bottom:367.672152pt;}
.y4d_c00156{bottom:368.083853pt;}
.y4e_c00156{bottom:369.576184pt;}
.y4f_c00156{bottom:370.166176pt;}
.y50_c00156{bottom:370.887416pt;}
.y51_c00156{bottom:371.656635pt;}
.y52_c00156{bottom:372.195112pt;}
.y53_c00156{bottom:372.972165pt;}
.y41_c00156{bottom:382.781504pt;}
.y42_c00156{bottom:383.665699pt;}
.y43_c00156{bottom:383.869989pt;}
.y44_c00156{bottom:384.125816pt;}
.y45_c00156{bottom:384.466635pt;}
.y46_c00156{bottom:386.089499pt;}
.y47_c00156{bottom:386.673352pt;}
.y48_c00156{bottom:387.874877pt;}
.y49_c00156{bottom:388.327280pt;}
.y4a_c00156{bottom:388.688555pt;}
.y39_c00156{bottom:397.910811pt;}
.y3a_c00156{bottom:399.361384pt;}
.y3b_c00156{bottom:399.893549pt;}
.y3c_c00156{bottom:401.565045pt;}
.y3d_c00156{bottom:401.954805pt;}
.y3e_c00156{bottom:403.633216pt;}
.y3f_c00156{bottom:403.970251pt;}
.y40_c00156{bottom:404.422027pt;}
.y33_c00156{bottom:413.279456pt;}
.y34_c00156{bottom:414.669109pt;}
.y35_c00156{bottom:415.227168pt;}
.y36_c00156{bottom:415.829979pt;}
.y37_c00156{bottom:417.855339pt;}
.y38_c00156{bottom:420.495901pt;}
.y2a_c00156{bottom:429.839115pt;}
.y2b_c00156{bottom:430.447920pt;}
.y2c_c00156{bottom:431.001613pt;}
.y2d_c00156{bottom:431.602080pt;}
.y2e_c00156{bottom:432.734533pt;}
.y2f_c00156{bottom:433.062280pt;}
.y30_c00156{bottom:434.165712pt;}
.y31_c00156{bottom:434.390723pt;}
.y32_c00156{bottom:434.736568pt;}
.y22_c00156{bottom:444.968000pt;}
.y23_c00156{bottom:445.448307pt;}
.y24_c00156{bottom:445.973437pt;}
.y25_c00156{bottom:447.332960pt;}
.y26_c00156{bottom:447.633832pt;}
.y27_c00156{bottom:448.339195pt;}
.y28_c00156{bottom:449.488117pt;}
.y29_c00156{bottom:451.303507pt;}
.y1a_c00156{bottom:460.068875pt;}
.y1b_c00156{bottom:460.468789pt;}
.y1c_c00156{bottom:462.312501pt;}
.y1d_c00156{bottom:462.655243pt;}
.y1e_c00156{bottom:463.687285pt;}
.y1f_c00156{bottom:464.132405pt;}
.y20_c00156{bottom:464.553643pt;}
.y21_c00156{bottom:465.542400pt;}
.y11_c00156{bottom:476.153664pt;}
.y12_c00156{bottom:476.569867pt;}
.y13_c00156{bottom:477.582635pt;}
.y14_c00156{bottom:477.759723pt;}
.y15_c00156{bottom:478.967349pt;}
.y16_c00156{bottom:479.449909pt;}
.y17_c00156{bottom:480.851051pt;}
.y18_c00156{bottom:481.056448pt;}
.y19_c00156{bottom:481.551147pt;}
.ya_c00156{bottom:491.518037pt;}
.yb_c00156{bottom:492.379168pt;}
.yc_c00156{bottom:492.763339pt;}
.yd_c00156{bottom:493.296000pt;}
.ye_c00156{bottom:494.609195pt;}
.yf_c00156{bottom:496.055264pt;}
.y10_c00156{bottom:496.973696pt;}
.y2_c00156{bottom:505.922155pt;}
.y3_c00156{bottom:506.590923pt;}
.y4_c00156{bottom:507.934155pt;}
.y5_c00156{bottom:508.231285pt;}
.y6_c00156{bottom:509.696779pt;}
.y7_c00156{bottom:510.591371pt;}
.y8_c00156{bottom:511.579744pt;}
.y9_c00156{bottom:512.720747pt;}
.y1_c00156{bottom:520.569333pt;}
.h4_c00156{height:52.281717pt;}
.ha_c00156{height:52.284330pt;}
.hc_c00156{height:53.217979pt;}
.h5_c00156{height:55.082524pt;}
.he_c00156{height:55.085276pt;}
.h6_c00156{height:56.016126pt;}
.h10_c00156{height:56.018925pt;}
.h12_c00156{height:56.952574pt;}
.hb_c00156{height:57.886222pt;}
.h9_c00156{height:58.819871pt;}
.h8_c00156{height:59.753520pt;}
.h3_c00156{height:60.684136pt;}
.h7_c00156{height:60.687169pt;}
.h13_c00156{height:61.600000pt;}
.hf_c00156{height:61.620817pt;}
.hd_c00156{height:62.554466pt;}
.h11_c00156{height:64.421764pt;}
.h2_c00156{height:113.899456pt;}
.h0_c00156{height:553.866667pt;}
.h1_c00156{height:554.000000pt;}
.w1_c00156{width:340.666667pt;}
.w0_c00156{width:340.800000pt;}
.x0_c00156{left:0.000000pt;}
.x74_c00156{left:28.650779pt;}
.x2_c00156{left:29.726976pt;}
.xf_c00156{left:30.698901pt;}
.x2b_c00156{left:32.264936pt;}
.x4d_c00156{left:33.177083pt;}
.x6f_c00156{left:34.161680pt;}
.x76_c00156{left:35.149496pt;}
.x7b_c00156{left:36.502483pt;}
.x1f_c00156{left:43.726667pt;}
.x18_c00156{left:48.493365pt;}
.x10_c00156{left:49.597131pt;}
.x3c_c00156{left:50.925197pt;}
.x7c_c00156{left:52.548147pt;}
.x3_c00156{left:53.590005pt;}
.x42_c00156{left:54.777008pt;}
.x5e_c00156{left:56.062904pt;}
.x27_c00156{left:59.034275pt;}
.x52_c00156{left:60.913723pt;}
.x20_c00156{left:62.200000pt;}
.x71_c00156{left:64.106355pt;}
.x3d_c00156{left:66.759864pt;}
.xa_c00156{left:67.893792pt;}
.x34_c00156{left:69.402128pt;}
.x43_c00156{left:72.249027pt;}
.x56_c00156{left:73.419341pt;}
.x64_c00156{left:76.458261pt;}
.x35_c00156{left:77.926579pt;}
.x62_c00156{left:79.514861pt;}
.x21_c00156{left:82.397333pt;}
.xb_c00156{left:84.623541pt;}
.x2e_c00156{left:86.224347pt;}
.x36_c00156{left:88.587133pt;}
.x65_c00156{left:93.261696pt;}
.x7f_c00156{left:94.320000pt;}
.x11_c00156{left:95.631339pt;}
.x59_c00156{left:99.990984pt;}
.x4_c00156{left:101.553397pt;}
.x37_c00156{left:102.773195pt;}
.x12_c00156{left:103.677056pt;}
.x2f_c00156{left:105.922493pt;}
.xc_c00156{left:107.762752pt;}
.x5_c00156{left:112.155040pt;}
.x6d_c00156{left:117.926275pt;}
.x69_c00156{left:121.821816pt;}
.x2c_c00156{left:123.382888pt;}
.x70_c00156{left:124.432557pt;}
.x44_c00156{left:126.021221pt;}
.x19_c00156{left:128.649952pt;}
.x49_c00156{left:129.828280pt;}
.x22_c00156{left:134.686667pt;}
.x77_c00156{left:137.638765pt;}
.x5a_c00156{left:138.682043pt;}
.x75_c00156{left:139.797573pt;}
.x1a_c00156{left:143.542304pt;}
.x78_c00156{left:144.800240pt;}
.x23_c00156{left:146.258667pt;}
.x1_c00156{left:148.465333pt;}
.x5b_c00156{left:150.454739pt;}
.x7d_c00156{left:151.947811pt;}
.x4e_c00156{left:155.461083pt;}
.x6a_c00156{left:157.110499pt;}
.x13_c00156{left:158.553013pt;}
.x72_c00156{left:159.479312pt;}
.x28_c00156{left:162.991757pt;}
.x6_c00156{left:164.490016pt;}
.x30_c00156{left:167.850232pt;}
.x5f_c00156{left:169.062405pt;}
.x38_c00156{left:170.374029pt;}
.x24_c00156{left:173.388000pt;}
.x3e_c00156{left:174.589197pt;}
.x29_c00156{left:177.906651pt;}
.x14_c00156{left:180.494069pt;}
.x31_c00156{left:182.276517pt;}
.x6b_c00156{left:184.073448pt;}
.x60_c00156{left:187.364576pt;}
.x1b_c00156{left:188.434059pt;}
.x45_c00156{left:190.150248pt;}
.x39_c00156{left:194.728645pt;}
.x7_c00156{left:196.428277pt;}
.x4f_c00156{left:199.030416pt;}
.x4b_c00156{left:200.467451pt;}
.x4a_c00156{left:202.131008pt;}
.x7e_c00156{left:203.039781pt;}
.x3f_c00156{left:204.174531pt;}
.x6e_c00156{left:205.190816pt;}
.x1c_c00156{left:207.814539pt;}
.x55_c00156{left:209.077995pt;}
.x6c_c00156{left:213.126147pt;}
.x25_c00156{left:217.577333pt;}
.x53_c00156{left:220.881883pt;}
.x66_c00156{left:222.898211pt;}
.x40_c00156{left:224.885197pt;}
.x1d_c00156{left:226.144320pt;}
.xd_c00156{left:227.734965pt;}
.x61_c00156{left:229.861595pt;}
.x79_c00156{left:230.819864pt;}
.x8_c00156{left:231.718219pt;}
.x67_c00156{left:233.240656pt;}
.x50_c00156{left:235.043749pt;}
.x5c_c00156{left:236.879421pt;}
.x2a_c00156{left:238.288925pt;}
.x46_c00156{left:239.831464pt;}
.x73_c00156{left:241.205115pt;}
.x15_c00156{left:244.155776pt;}
.x4c_c00156{left:245.512285pt;}
.x57_c00156{left:249.393248pt;}
.x16_c00156{left:253.492224pt;}
.x41_c00156{left:254.771864pt;}
.x32_c00156{left:256.919909pt;}
.x7a_c00156{left:259.998309pt;}
.x47_c00156{left:260.919760pt;}
.x54_c00156{left:262.065624pt;}
.x3a_c00156{left:263.626883pt;}
.x63_c00156{left:265.131211pt;}
.xe_c00156{left:267.670592pt;}
.x1e_c00156{left:269.121344pt;}
.x5d_c00156{left:271.507968pt;}
.x9_c00156{left:272.478315pt;}
.x33_c00156{left:273.628792pt;}
.x68_c00156{left:274.806437pt;}
.x17_c00156{left:275.994645pt;}
.x51_c00156{left:277.723749pt;}
.x3b_c00156{left:278.702347pt;}
.x48_c00156{left:284.708264pt;}
.x80_c00156{left:286.080000pt;}
.x26_c00156{left:287.400000pt;}
.x2d_c00156{left:290.063589pt;}
.x58_c00156{left:294.671976pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00157 {
    display:none;
  }
  .loading-indicator_c00157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00157 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00157 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00157" -> "#page-container .classname_c00157")
 */
.pf_c00157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00157 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00157 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00157 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00157 {overflow:visible;}
  }
}
.c_c00157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00157 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00157:after { /* webkit #35443 */
  content: '';
}
.t_c00157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00157 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00157 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00157 { /* info for Javascript */
  display:none;
}
.l_c00157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00157:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00157 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00157.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me6_c00157{transform:matrix(0.099346,0.001689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.099346,0.001689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.099346,0.001689,-0.004249,0.249964,0,0);}
.m0_c00157{transform:matrix(0.106870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106870,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.113124,0.001923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.113124,0.001923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.113124,0.001923,-0.004249,0.249964,0,0);}
.m1_c00157{transform:matrix(0.143860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.147810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147810,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.150698,0.002562,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150698,0.002562,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150698,0.002562,-0.004249,0.249964,0,0);}
.m29_c00157{transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);}
.m74_c00157{transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(0.158765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158765,0.000000,0.000000,0.250000,0,0);}
.m7b_c00157{transform:matrix(0.159097,0.002705,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159097,0.002705,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159097,0.002705,-0.004249,0.249964,0,0);}
.m12_c00157{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m7c_c00157{transform:matrix(0.160522,0.002729,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160522,0.002729,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160522,0.002729,-0.004249,0.249964,0,0);}
.mc3_c00157{transform:matrix(0.161947,0.002753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161947,0.002753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161947,0.002753,-0.004249,0.249964,0,0);}
.m6b_c00157{transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);}
.m40_c00157{transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);}
.m9f_c00157{transform:matrix(0.166576,0.002832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166576,0.002832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166576,0.002832,-0.004249,0.249964,0,0);}
.m8d_c00157{transform:matrix(0.166866,0.002837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166866,0.002837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166866,0.002837,-0.004249,0.249964,0,0);}
.m76_c00157{transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166910,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);}
.me0_c00157{transform:matrix(0.168711,0.002868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168711,0.002868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168711,0.002868,-0.004249,0.249964,0,0);}
.m3c_c00157{transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.md6_c00157{transform:matrix(0.170535,0.002899,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170535,0.002899,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170535,0.002899,-0.004249,0.249964,0,0);}
.md2_c00157{transform:matrix(0.170715,0.002902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170715,0.002902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170715,0.002902,-0.004249,0.249964,0,0);}
.m5f_c00157{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.maf_c00157{transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);}
.m2_c00157{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.m87_c00157{transform:matrix(0.174065,0.002959,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174065,0.002959,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174065,0.002959,-0.004249,0.249964,0,0);}
.m7e_c00157{transform:matrix(0.174105,0.002960,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174105,0.002960,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174105,0.002960,-0.004249,0.249964,0,0);}
.m13_c00157{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.ma8_c00157{transform:matrix(0.174285,0.002963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174285,0.002963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174285,0.002963,-0.004249,0.249964,0,0);}
.mb2_c00157{transform:matrix(0.174360,0.002964,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174360,0.002964,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174360,0.002964,-0.004249,0.249964,0,0);}
.mc_c00157{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.mae_c00157{transform:matrix(0.175100,0.002977,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175100,0.002977,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175100,0.002977,-0.004249,0.249964,0,0);}
.m45_c00157{transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.175220,0.002979,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175220,0.002979,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175220,0.002979,-0.004249,0.249964,0,0);}
.m86_c00157{transform:matrix(0.175570,0.002985,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175570,0.002985,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175570,0.002985,-0.004249,0.249964,0,0);}
.m73_c00157{transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175935,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);}
.me4_c00157{transform:matrix(0.177264,0.003013,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177264,0.003013,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177264,0.003013,-0.004249,0.249964,0,0);}
.md8_c00157{transform:matrix(0.177314,0.003014,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177314,0.003014,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177314,0.003014,-0.004249,0.249964,0,0);}
.m5_c00157{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.me2_c00157{transform:matrix(0.177704,0.003021,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177704,0.003021,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177704,0.003021,-0.004249,0.249964,0,0);}
.m6a_c00157{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{transform:matrix(0.178124,0.003028,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178124,0.003028,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178124,0.003028,-0.004249,0.249964,0,0);}
.m68_c00157{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.mdf_c00157{transform:matrix(0.179344,0.003049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179344,0.003049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179344,0.003049,-0.004249,0.249964,0,0);}
.m36_c00157{transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);}
.m8b_c00157{transform:matrix(0.179544,0.003052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179544,0.003052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179544,0.003052,-0.004249,0.249964,0,0);}
.maa_c00157{transform:matrix(0.179804,0.003057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179804,0.003057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179804,0.003057,-0.004249,0.249964,0,0);}
.m28_c00157{transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);}
.me5_c00157{transform:matrix(0.180894,0.003075,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180894,0.003075,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180894,0.003075,-0.004249,0.249964,0,0);}
.m8c_c00157{transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);}
.m3a_c00157{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.mc9_c00157{transform:matrix(0.181249,0.003081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181249,0.003081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181249,0.003081,-0.004249,0.249964,0,0);}
.m62_c00157{transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{transform:matrix(0.181714,0.003089,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181714,0.003089,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181714,0.003089,-0.004249,0.249964,0,0);}
.mf_c00157{transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);}
.mda_c00157{transform:matrix(0.182384,0.003101,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182384,0.003101,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182384,0.003101,-0.004249,0.249964,0,0);}
.m41_c00157{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m93_c00157{transform:matrix(0.182954,0.003110,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182954,0.003110,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182954,0.003110,-0.004249,0.249964,0,0);}
.mcc_c00157{transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);}
.mad_c00157{transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);}
.m33_c00157{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);}
.md7_c00157{transform:matrix(0.185553,0.003154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185553,0.003154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185553,0.003154,-0.004249,0.249964,0,0);}
.m9_c00157{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m98_c00157{transform:matrix(0.186168,0.003165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186168,0.003165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186168,0.003165,-0.004249,0.249964,0,0);}
.me3_c00157{transform:matrix(0.187033,0.003180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187033,0.003180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187033,0.003180,-0.004249,0.249964,0,0);}
.m30_c00157{transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);}
.m99_c00157{transform:matrix(0.187198,0.003182,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187198,0.003182,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187198,0.003182,-0.004249,0.249964,0,0);}
.m22_c00157{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m9b_c00157{transform:matrix(0.187958,0.003195,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187958,0.003195,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187958,0.003195,-0.004249,0.249964,0,0);}
.m60_c00157{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);}
.m61_c00157{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{transform:matrix(0.192487,0.003272,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192487,0.003272,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192487,0.003272,-0.004249,0.249964,0,0);}
.m97_c00157{transform:matrix(0.192987,0.003281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192987,0.003281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192987,0.003281,-0.004249,0.249964,0,0);}
.ma9_c00157{transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);}
.mdc_c00157{transform:matrix(0.194442,0.003306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194442,0.003306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194442,0.003306,-0.004249,0.249964,0,0);}
.m14_c00157{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.mcb_c00157{transform:matrix(0.194572,0.003308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194572,0.003308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194572,0.003308,-0.004249,0.249964,0,0);}
.m3d_c00157{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.mbf_c00157{transform:matrix(0.196397,0.003339,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196397,0.003339,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196397,0.003339,-0.004249,0.249964,0,0);}
.m1f_c00157{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.196857,0.003347,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196857,0.003347,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196857,0.003347,-0.004249,0.249964,0,0);}
.mbe_c00157{transform:matrix(0.197142,0.003351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197142,0.003351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197142,0.003351,-0.004249,0.249964,0,0);}
.m53_c00157{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.197591,0.003359,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197591,0.003359,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197591,0.003359,-0.004249,0.249964,0,0);}
.m82_c00157{transform:matrix(0.197996,0.003366,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197996,0.003366,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197996,0.003366,-0.004249,0.249964,0,0);}
.ma4_c00157{transform:matrix(0.198021,0.003366,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198021,0.003366,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198021,0.003366,-0.004249,0.249964,0,0);}
.ma7_c00157{transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);}
.m5a_c00157{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mcf_c00157{transform:matrix(0.199526,0.003392,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199526,0.003392,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199526,0.003392,-0.004249,0.249964,0,0);}
.m64_c00157{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m8a_c00157{transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200771,0.003413,-0.004249,0.249964,0,0);}
.m95_c00157{transform:matrix(0.200906,0.003415,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200906,0.003415,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200906,0.003415,-0.004249,0.249964,0,0);}
.md9_c00157{transform:matrix(0.201541,0.003426,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201541,0.003426,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201541,0.003426,-0.004249,0.249964,0,0);}
.mb3_c00157{transform:matrix(0.201701,0.003429,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201701,0.003429,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201701,0.003429,-0.004249,0.249964,0,0);}
.m20_c00157{transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.m90_c00157{transform:matrix(0.203346,0.003457,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203346,0.003457,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203346,0.003457,-0.004249,0.249964,0,0);}
.ma2_c00157{transform:matrix(0.203796,0.003465,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203796,0.003465,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203796,0.003465,-0.004249,0.249964,0,0);}
.m6_c00157{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.mab_c00157{transform:matrix(0.204111,0.003470,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204111,0.003470,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204111,0.003470,-0.004249,0.249964,0,0);}
.me1_c00157{transform:matrix(0.204280,0.003473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204280,0.003473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204280,0.003473,-0.004249,0.249964,0,0);}
.m25_c00157{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.mac_c00157{transform:matrix(0.204705,0.003480,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204705,0.003480,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204705,0.003480,-0.004249,0.249964,0,0);}
.mde_c00157{transform:matrix(0.205110,0.003487,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205110,0.003487,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205110,0.003487,-0.004249,0.249964,0,0);}
.m8f_c00157{transform:matrix(0.205405,0.003492,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205405,0.003492,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205405,0.003492,-0.004249,0.249964,0,0);}
.m6e_c00157{transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205730,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{transform:matrix(0.205870,0.003500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205870,0.003500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205870,0.003500,-0.004249,0.249964,0,0);}
.m35_c00157{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);}
.mdd_c00157{transform:matrix(0.208435,0.003543,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208435,0.003543,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208435,0.003543,-0.004249,0.249964,0,0);}
.md3_c00157{transform:matrix(0.209340,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209340,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209340,0.003559,-0.004249,0.249964,0,0);}
.m80_c00157{transform:matrix(0.209620,0.003564,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209620,0.003564,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209620,0.003564,-0.004249,0.249964,0,0);}
.ma3_c00157{transform:matrix(0.210120,0.003572,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210120,0.003572,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210120,0.003572,-0.004249,0.249964,0,0);}
.mdb_c00157{transform:matrix(0.210540,0.003579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210540,0.003579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210540,0.003579,-0.004249,0.249964,0,0);}
.m55_c00157{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.210930,0.003586,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210930,0.003586,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210930,0.003586,-0.004249,0.249964,0,0);}
.m11_c00157{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00157{transform:matrix(0.212749,0.003617,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212749,0.003617,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212749,0.003617,-0.004249,0.249964,0,0);}
.m84_c00157{transform:matrix(0.212894,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212894,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212894,0.003619,-0.004249,0.249964,0,0);}
.ma_c00157{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.mc4_c00157{transform:matrix(0.213689,0.003633,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213689,0.003633,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213689,0.003633,-0.004249,0.249964,0,0);}
.m9e_c00157{transform:matrix(0.213749,0.003634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213749,0.003634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213749,0.003634,-0.004249,0.249964,0,0);}
.mb4_c00157{transform:matrix(0.215049,0.003656,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215049,0.003656,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215049,0.003656,-0.004249,0.249964,0,0);}
.m5b_c00157{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m7f_c00157{transform:matrix(0.216089,0.003674,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216089,0.003674,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216089,0.003674,-0.004249,0.249964,0,0);}
.mb_c00157{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.mca_c00157{transform:matrix(0.216624,0.003683,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216624,0.003683,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216624,0.003683,-0.004249,0.249964,0,0);}
.mb1_c00157{transform:matrix(0.216909,0.003687,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216909,0.003687,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216909,0.003687,-0.004249,0.249964,0,0);}
.m58_c00157{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.mcd_c00157{transform:matrix(0.217379,0.003695,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217379,0.003695,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217379,0.003695,-0.004249,0.249964,0,0);}
.m44_c00157{transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);}
.md0_c00157{transform:matrix(0.218163,0.003709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218163,0.003709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218163,0.003709,-0.004249,0.249964,0,0);}
.ma1_c00157{transform:matrix(0.219093,0.003725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219093,0.003725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219093,0.003725,-0.004249,0.249964,0,0);}
.mb9_c00157{transform:matrix(0.219308,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219308,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219308,0.003728,-0.004249,0.249964,0,0);}
.m94_c00157{transform:matrix(0.219593,0.003733,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219593,0.003733,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219593,0.003733,-0.004249,0.249964,0,0);}
.m91_c00157{transform:matrix(0.219778,0.003736,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219778,0.003736,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219778,0.003736,-0.004249,0.249964,0,0);}
.m72_c00157{transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00157{transform:matrix(0.221723,0.003769,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221723,0.003769,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221723,0.003769,-0.004249,0.249964,0,0);}
.mc6_c00157{transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);}
.md1_c00157{transform:matrix(0.222468,0.003782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222468,0.003782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222468,0.003782,-0.004249,0.249964,0,0);}
.m65_c00157{transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00157{transform:matrix(0.224093,0.003810,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224093,0.003810,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224093,0.003810,-0.004249,0.249964,0,0);}
.mbb_c00157{transform:matrix(0.225782,0.003838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225782,0.003838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225782,0.003838,-0.004249,0.249964,0,0);}
.m7_c00157{transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);}
.mce_c00157{transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);}
.m19_c00157{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.227372,0.003865,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227372,0.003865,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227372,0.003865,-0.004249,0.249964,0,0);}
.m5d_c00157{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.mba_c00157{transform:matrix(0.228812,0.003890,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228812,0.003890,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228812,0.003890,-0.004249,0.249964,0,0);}
.m54_c00157{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.232991,0.003961,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232991,0.003961,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232991,0.003961,-0.004249,0.249964,0,0);}
.m57_c00157{transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);}
.mc5_c00157{transform:matrix(0.233936,0.003977,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233936,0.003977,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233936,0.003977,-0.004249,0.249964,0,0);}
.ma6_c00157{transform:matrix(0.235021,0.003995,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235021,0.003995,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235021,0.003995,-0.004249,0.249964,0,0);}
.mb5_c00157{transform:matrix(0.235641,0.004006,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235641,0.004006,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235641,0.004006,-0.004249,0.249964,0,0);}
.m5e_c00157{transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239080,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.239750,0.004076,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239750,0.004076,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239750,0.004076,-0.004249,0.249964,0,0);}
.m66_c00157{transform:matrix(0.244135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244135,0.000000,0.000000,0.250000,0,0);}
.md5_c00157{transform:matrix(0.244620,0.004159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244620,0.004159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244620,0.004159,-0.004249,0.249964,0,0);}
.m67_c00157{transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{transform:matrix(0.246539,0.004191,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246539,0.004191,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246539,0.004191,-0.004249,0.249964,0,0);}
.m48_c00157{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.mb0_c00157{transform:matrix(0.247614,0.004209,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247614,0.004209,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247614,0.004209,-0.004249,0.249964,0,0);}
.mc7_c00157{transform:matrix(0.248589,0.004226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248589,0.004226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248589,0.004226,-0.004249,0.249964,0,0);}
.m56_c00157{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.md4_c00157{transform:matrix(0.253243,0.004305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253243,0.004305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253243,0.004305,-0.004249,0.249964,0,0);}
.m4c_c00157{transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);}
.mc2_c00157{transform:matrix(0.264032,0.004489,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264032,0.004489,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264032,0.004489,-0.004249,0.249964,0,0);}
.m4a_c00157{transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);}
.mb6_c00157{transform:matrix(0.264992,0.004505,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264992,0.004505,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264992,0.004505,-0.004249,0.249964,0,0);}
.m4d_c00157{transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.268770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268770,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.270261,0.004594,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270261,0.004594,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270261,0.004594,-0.004249,0.249964,0,0);}
.m4b_c00157{transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.mbc_c00157{transform:matrix(0.300532,0.005109,-0.004249,0.249964,0,0);-ms-transform:matrix(0.300532,0.005109,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.300532,0.005109,-0.004249,0.249964,0,0);}
.m4f_c00157{transform:matrix(0.313820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313820,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.333195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333195,0.000000,0.000000,0.250000,0,0);}
.mc8_c00157{transform:matrix(0.333347,0.005667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.333347,0.005667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.333347,0.005667,-0.004249,0.249964,0,0);}
.mbd_c00157{transform:matrix(0.358978,0.006103,-0.004249,0.249964,0,0);-ms-transform:matrix(0.358978,0.006103,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.358978,0.006103,-0.004249,0.249964,0,0);}
.mc1_c00157{transform:matrix(0.370746,0.006303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.370746,0.006303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.370746,0.006303,-0.004249,0.249964,0,0);}
.mb7_c00157{transform:matrix(0.400412,0.006807,-0.004249,0.249964,0,0);-ms-transform:matrix(0.400412,0.006807,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.400412,0.006807,-0.004249,0.249964,0,0);}
.mc0_c00157{transform:matrix(0.456114,0.007754,-0.004249,0.249964,0,0);-ms-transform:matrix(0.456114,0.007754,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.456114,0.007754,-0.004249,0.249964,0,0);}
.m70_c00157{transform:matrix(0.893700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893700,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:0.000000px;}
.fc0_c00157{color:transparent;}
.fs4_c00157{font-size:45.150000px;}
.fsa_c00157{font-size:47.250000px;}
.fs16_c00157{font-size:55.658041px;}
.fs17_c00157{font-size:57.758344px;}
.fs2_c00157{font-size:58.800000px;}
.fs18_c00157{font-size:58.808496px;}
.fs15_c00157{font-size:59.858648px;}
.fs7_c00157{font-size:60.900000px;}
.fs12_c00157{font-size:60.908799px;}
.fs6_c00157{font-size:61.950000px;}
.fs10_c00157{font-size:61.958951px;}
.fsb_c00157{font-size:63.000000px;}
.fs14_c00157{font-size:63.009103px;}
.fs13_c00157{font-size:64.059255px;}
.fs5_c00157{font-size:66.150000px;}
.fs8_c00157{font-size:67.200000px;}
.fs3_c00157{font-size:68.250000px;}
.fs11_c00157{font-size:69.310013px;}
.fs1_c00157{font-size:70.350000px;}
.fs19_c00157{font-size:70.360165px;}
.fsc_c00157{font-size:71.400000px;}
.fs9_c00157{font-size:73.500000px;}
.fsd_c00157{font-size:75.600000px;}
.fse_c00157{font-size:77.700000px;}
.fsf_c00157{font-size:81.911834px;}
.fs0_c00157{font-size:118.650000px;}
.y0_c00157{bottom:0.000000px;}
.ye9_c00157{bottom:36.897377px;}
.ye8_c00157{bottom:37.599581px;}
.ye7_c00157{bottom:38.025006px;}
.ye6_c00157{bottom:38.225111px;}
.ye5_c00157{bottom:38.751075px;}
.ye4_c00157{bottom:39.364892px;}
.ye3_c00157{bottom:39.601340px;}
.ye2_c00157{bottom:39.973166px;}
.ye1_c00157{bottom:40.739255px;}
.ye0_c00157{bottom:54.386835px;}
.ydf_c00157{bottom:54.929958px;}
.yde_c00157{bottom:56.169603px;}
.ydd_c00157{bottom:56.949374px;}
.ydc_c00157{bottom:58.827566px;}
.ydb_c00157{bottom:59.433479px;}
.yda_c00157{bottom:60.512615px;}
.yd9_c00157{bottom:61.262709px;}
.yd8_c00157{bottom:71.139775px;}
.yd7_c00157{bottom:72.318807px;}
.yd6_c00157{bottom:73.343832px;}
.yd5_c00157{bottom:74.842734px;}
.yd4_c00157{bottom:75.284474px;}
.yd3_c00157{bottom:76.814493px;}
.yd2_c00157{bottom:77.193385px;}
.yd1_c00157{bottom:89.966148px;}
.yd0_c00157{bottom:91.486995px;}
.ycf_c00157{bottom:91.802977px;}
.yce_c00157{bottom:92.354209px;}
.ycd_c00157{bottom:93.393171px;}
.ycc_c00157{bottom:105.385267px;}
.ycb_c00157{bottom:105.625054px;}
.yca_c00157{bottom:106.391815px;}
.yc9_c00157{bottom:106.885670px;}
.yc8_c00157{bottom:107.899378px;}
.yc7_c00157{bottom:108.813732px;}
.yc6_c00157{bottom:109.336473px;}
.yc5_c00157{bottom:109.688391px;}
.yc4_c00157{bottom:109.926776px;}
.yc3_c00157{bottom:110.407778px;}
.yc2_c00157{bottom:122.129955px;}
.yc1_c00157{bottom:122.369163px;}
.yc0_c00157{bottom:122.588829px;}
.ybf_c00157{bottom:123.325919px;}
.ybe_c00157{bottom:123.598520px;}
.ybd_c00157{bottom:124.302807px;}
.ybc_c00157{bottom:125.019492px;}
.ybb_c00157{bottom:125.506200px;}
.yba_c00157{bottom:125.647605px;}
.yb9_c00157{bottom:126.092046px;}
.yb8_c00157{bottom:126.338730px;}
.yb7_c00157{bottom:139.252021px;}
.yb6_c00157{bottom:140.107173px;}
.yb5_c00157{bottom:140.340007px;}
.yb4_c00157{bottom:141.970273px;}
.yb3_c00157{bottom:143.081337px;}
.yb2_c00157{bottom:155.739051px;}
.yb1_c00157{bottom:156.223969px;}
.yb0_c00157{bottom:156.979051px;}
.yaf_c00157{bottom:158.464656px;}
.yae_c00157{bottom:158.938057px;}
.yad_c00157{bottom:160.078974px;}
.yac_c00157{bottom:161.608147px;}
.yab_c00157{bottom:162.527892px;}
.yaa_c00157{bottom:173.008266px;}
.ya9_c00157{bottom:174.200887px;}
.ya8_c00157{bottom:174.495463px;}
.ya7_c00157{bottom:177.004123px;}
.ya6_c00157{bottom:177.510103px;}
.ya5_c00157{bottom:179.924793px;}
.ya4_c00157{bottom:180.353181px;}
.ya3_c00157{bottom:192.962196px;}
.ya2_c00157{bottom:193.376032px;}
.ya1_c00157{bottom:193.841335px;}
.ya0_c00157{bottom:195.251499px;}
.y9f_c00157{bottom:196.026150px;}
.y9e_c00157{bottom:196.640302px;}
.y9d_c00157{bottom:198.170739px;}
.y9c_c00157{bottom:208.736652px;}
.y9b_c00157{bottom:209.986729px;}
.y9a_c00157{bottom:210.367617px;}
.y99_c00157{bottom:211.027183px;}
.y98_c00157{bottom:211.900143px;}
.y97_c00157{bottom:212.667528px;}
.y96_c00157{bottom:213.777246px;}
.y95_c00157{bottom:214.642611px;}
.y94_c00157{bottom:225.973464px;}
.y93_c00157{bottom:227.047564px;}
.y92_c00157{bottom:228.796027px;}
.y91_c00157{bottom:229.282966px;}
.y90_c00157{bottom:230.655282px;}
.y8f_c00157{bottom:231.390123px;}
.y8e_c00157{bottom:242.229271px;}
.y8d_c00157{bottom:242.849892px;}
.y8c_c00157{bottom:244.057597px;}
.y8b_c00157{bottom:245.237088px;}
.y8a_c00157{bottom:246.302992px;}
.y89_c00157{bottom:246.840660px;}
.y88_c00157{bottom:247.587943px;}
.y87_c00157{bottom:258.867905px;}
.y86_c00157{bottom:259.868098px;}
.y85_c00157{bottom:260.717806px;}
.y84_c00157{bottom:261.471328px;}
.y83_c00157{bottom:262.372404px;}
.y82_c00157{bottom:263.344953px;}
.y81_c00157{bottom:263.764329px;}
.y80_c00157{bottom:264.335211px;}
.y7f_c00157{bottom:274.644397px;}
.y7e_c00157{bottom:276.138264px;}
.y7d_c00157{bottom:277.289028px;}
.y7c_c00157{bottom:278.042145px;}
.y7b_c00157{bottom:278.318208px;}
.y7a_c00157{bottom:278.914500px;}
.y79_c00157{bottom:291.118500px;}
.y78_c00157{bottom:293.068500px;}
.y77_c00157{bottom:293.350500px;}
.y76_c00157{bottom:293.935500px;}
.y75_c00157{bottom:295.572000px;}
.y74_c00157{bottom:295.920000px;}
.y73_c00157{bottom:310.276500px;}
.y72_c00157{bottom:311.577000px;}
.y71_c00157{bottom:313.201500px;}
.y70_c00157{bottom:326.544000px;}
.y6f_c00157{bottom:327.351000px;}
.y6e_c00157{bottom:327.729000px;}
.y6d_c00157{bottom:328.332000px;}
.y6c_c00157{bottom:328.641000px;}
.y6b_c00157{bottom:329.328000px;}
.y6a_c00157{bottom:329.554500px;}
.y69_c00157{bottom:329.940000px;}
.y68_c00157{bottom:345.837000px;}
.y67_c00157{bottom:346.141500px;}
.y66_c00157{bottom:346.848000px;}
.y65_c00157{bottom:347.358000px;}
.y64_c00157{bottom:347.920500px;}
.y63_c00157{bottom:348.187500px;}
.y62_c00157{bottom:349.146000px;}
.y61_c00157{bottom:349.650000px;}
.y60_c00157{bottom:364.332000px;}
.y5f_c00157{bottom:365.394000px;}
.y5e_c00157{bottom:366.219000px;}
.y5d_c00157{bottom:367.605000px;}
.y5c_c00157{bottom:368.008500px;}
.y5b_c00157{bottom:379.354500px;}
.y5a_c00157{bottom:379.575000px;}
.y59_c00157{bottom:380.203500px;}
.y58_c00157{bottom:380.388000px;}
.y57_c00157{bottom:381.075000px;}
.y56_c00157{bottom:381.285000px;}
.y55_c00157{bottom:381.949500px;}
.y54_c00157{bottom:382.089000px;}
.y53_c00157{bottom:382.588500px;}
.y52_c00157{bottom:396.657000px;}
.y51_c00157{bottom:397.048500px;}
.y50_c00157{bottom:397.311000px;}
.y4f_c00157{bottom:397.732500px;}
.y4e_c00157{bottom:397.929000px;}
.y4d_c00157{bottom:398.413500px;}
.y4c_c00157{bottom:398.610000px;}
.y4b_c00157{bottom:399.115500px;}
.y4a_c00157{bottom:399.598500px;}
.y49_c00157{bottom:410.629500px;}
.y48_c00157{bottom:411.247500px;}
.y47_c00157{bottom:412.336500px;}
.y46_c00157{bottom:413.011500px;}
.y45_c00157{bottom:414.390000px;}
.y44_c00157{bottom:414.721500px;}
.y43_c00157{bottom:429.189000px;}
.y42_c00157{bottom:429.603000px;}
.y41_c00157{bottom:430.269000px;}
.y40_c00157{bottom:431.754000px;}
.y3f_c00157{bottom:432.151500px;}
.y3e_c00157{bottom:433.294500px;}
.y3d_c00157{bottom:434.655000px;}
.y3c_c00157{bottom:435.244500px;}
.y3b_c00157{bottom:446.295000px;}
.y3a_c00157{bottom:446.832000px;}
.y39_c00157{bottom:448.903500px;}
.y38_c00157{bottom:450.465000px;}
.y37_c00157{bottom:450.985500px;}
.y36_c00157{bottom:451.584000px;}
.y35_c00157{bottom:452.274000px;}
.y34_c00157{bottom:453.336000px;}
.y33_c00157{bottom:463.335000px;}
.y32_c00157{bottom:463.746000px;}
.y31_c00157{bottom:464.209500px;}
.y30_c00157{bottom:466.969500px;}
.y2f_c00157{bottom:467.875500px;}
.y2e_c00157{bottom:468.259500px;}
.y2d_c00157{bottom:469.536000px;}
.y2c_c00157{bottom:478.941000px;}
.y2b_c00157{bottom:479.487000px;}
.y2a_c00157{bottom:480.813000px;}
.y29_c00157{bottom:481.152000px;}
.y28_c00157{bottom:481.822500px;}
.y27_c00157{bottom:482.811000px;}
.y26_c00157{bottom:483.274500px;}
.y25_c00157{bottom:483.843000px;}
.y24_c00157{bottom:497.007000px;}
.y23_c00157{bottom:497.467500px;}
.y22_c00157{bottom:498.334500px;}
.y21_c00157{bottom:499.417500px;}
.y20_c00157{bottom:500.197500px;}
.y1f_c00157{bottom:500.464500px;}
.y1e_c00157{bottom:500.887500px;}
.y1d_c00157{bottom:501.663000px;}
.y1c_c00157{bottom:516.211500px;}
.y1b_c00157{bottom:517.033500px;}
.y1a_c00157{bottom:517.246500px;}
.y19_c00157{bottom:518.305500px;}
.y18_c00157{bottom:519.801000px;}
.y17_c00157{bottom:520.539000px;}
.y16_c00157{bottom:520.833000px;}
.y15_c00157{bottom:533.314500px;}
.y14_c00157{bottom:534.210000px;}
.y13_c00157{bottom:534.721500px;}
.y12_c00157{bottom:535.549500px;}
.y11_c00157{bottom:536.089500px;}
.y10_c00157{bottom:537.849000px;}
.yf_c00157{bottom:548.214000px;}
.ye_c00157{bottom:548.496000px;}
.yd_c00157{bottom:548.688000px;}
.yc_c00157{bottom:549.396000px;}
.yb_c00157{bottom:550.083000px;}
.ya_c00157{bottom:550.446000px;}
.y9_c00157{bottom:550.813500px;}
.y8_c00157{bottom:552.151500px;}
.y7_c00157{bottom:566.220000px;}
.y6_c00157{bottom:568.171500px;}
.y5_c00157{bottom:569.502000px;}
.y4_c00157{bottom:569.926500px;}
.y3_c00157{bottom:571.354500px;}
.y2_c00157{bottom:571.869000px;}
.y1_c00157{bottom:581.721000px;}
.h6_c00157{height:45.150000px;}
.hc_c00157{height:47.250000px;}
.h18_c00157{height:55.658041px;}
.h19_c00157{height:57.758344px;}
.h4_c00157{height:58.800000px;}
.h1a_c00157{height:58.808496px;}
.h17_c00157{height:59.858648px;}
.h9_c00157{height:60.900000px;}
.h14_c00157{height:60.908799px;}
.h8_c00157{height:61.950000px;}
.h12_c00157{height:61.958951px;}
.hd_c00157{height:63.000000px;}
.h16_c00157{height:63.009103px;}
.h15_c00157{height:64.059255px;}
.h7_c00157{height:66.150000px;}
.ha_c00157{height:67.200000px;}
.h5_c00157{height:68.250000px;}
.h13_c00157{height:69.310013px;}
.h3_c00157{height:70.350000px;}
.h1b_c00157{height:70.360165px;}
.he_c00157{height:71.400000px;}
.hb_c00157{height:73.500000px;}
.hf_c00157{height:75.600000px;}
.h10_c00157{height:77.700000px;}
.h11_c00157{height:81.911834px;}
.h2_c00157{height:118.650000px;}
.h1_c00157{height:623.250000px;}
.h0_c00157{height:623.400000px;}
.w1_c00157{width:383.250000px;}
.w0_c00157{width:383.400000px;}
.x0_c00157{left:0.000000px;}
.x64_c00157{left:45.638805px;}
.x61_c00157{left:48.103458px;}
.x49_c00157{left:49.774500px;}
.x44_c00157{left:50.836500px;}
.x2a_c00157{left:51.841500px;}
.x1f_c00157{left:52.923000px;}
.x2_c00157{left:54.192000px;}
.x18_c00157{left:56.722500px;}
.x6e_c00157{left:64.048140px;}
.x68_c00157{left:65.272386px;}
.x4f_c00157{left:69.649500px;}
.x3_c00157{left:72.591000px;}
.x56_c00157{left:74.992055px;}
.x31_c00157{left:76.902000px;}
.x42_c00157{left:78.127500px;}
.x45_c00157{left:80.518500px;}
.x4a_c00157{left:81.886500px;}
.x20_c00157{left:86.394000px;}
.x54_c00157{left:87.456000px;}
.x2b_c00157{left:91.152000px;}
.x3c_c00157{left:92.442000px;}
.x6f_c00157{left:93.722160px;}
.x37_c00157{left:99.478500px;}
.x4b_c00157{left:100.822500px;}
.x19_c00157{left:102.339000px;}
.x3d_c00157{left:104.056500px;}
.x26_c00157{left:107.538000px;}
.x5b_c00157{left:111.490343px;}
.x21_c00157{left:113.670000px;}
.x2c_c00157{left:116.695500px;}
.x13_c00157{left:118.057500px;}
.xf_c00157{left:119.649000px;}
.x4_c00157{left:123.573000px;}
.x1a_c00157{left:127.189500px;}
.x5e_c00157{left:134.385701px;}
.x32_c00157{left:136.056000px;}
.x5_c00157{left:138.726000px;}
.x74_c00157{left:141.543864px;}
.x1b_c00157{left:142.858500px;}
.x55_c00157{left:147.996000px;}
.x8_c00157{left:149.914500px;}
.x76_c00157{left:151.638011px;}
.x46_c00157{left:152.683500px;}
.x5f_c00157{left:153.850049px;}
.x2d_c00157{left:158.172000px;}
.x3e_c00157{left:159.405000px;}
.x50_c00157{left:160.590000px;}
.x5c_c00157{left:162.275400px;}
.x27_c00157{left:163.618500px;}
.x10_c00157{left:170.307000px;}
.x22_c00157{left:171.813000px;}
.x57_c00157{left:174.658380px;}
.x9_c00157{left:176.122500px;}
.x69_c00157{left:177.588699px;}
.x4c_c00157{left:183.733500px;}
.x6_c00157{left:186.223500px;}
.x1_c00157{left:187.920000px;}
.x11_c00157{left:189.229500px;}
.x51_c00157{left:193.066500px;}
.x6b_c00157{left:197.585442px;}
.x65_c00157{left:199.353603px;}
.x35_c00157{left:200.400000px;}
.xa_c00157{left:202.098000px;}
.x58_c00157{left:207.421040px;}
.x52_c00157{left:208.735500px;}
.x14_c00157{left:211.506000px;}
.x75_c00157{left:213.808823px;}
.x2e_c00157{left:215.997000px;}
.x38_c00157{left:218.091000px;}
.x6d_c00157{left:219.925821px;}
.x12_c00157{left:222.408000px;}
.x60_c00157{left:223.779537px;}
.x43_c00157{left:225.538500px;}
.x23_c00157{left:231.181500px;}
.x3f_c00157{left:234.274500px;}
.x39_c00157{left:237.772500px;}
.x77_c00157{left:239.336977px;}
.x62_c00157{left:242.468960px;}
.x59_c00157{left:244.341266px;}
.x70_c00157{left:248.561939px;}
.x40_c00157{left:249.652500px;}
.xb_c00157{left:251.202000px;}
.x1c_c00157{left:252.516000px;}
.x78_c00157{left:254.726523px;}
.x7_c00157{left:255.904500px;}
.x47_c00157{left:257.298000px;}
.x63_c00157{left:259.754981px;}
.x4d_c00157{left:265.495500px;}
.x33_c00157{left:267.633000px;}
.x72_c00157{left:270.639521px;}
.x66_c00157{left:273.566579px;}
.x48_c00157{left:275.232000px;}
.x15_c00157{left:277.674000px;}
.x3a_c00157{left:279.877500px;}
.x28_c00157{left:283.615500px;}
.x6a_c00157{left:285.380201px;}
.x5a_c00157{left:287.818829px;}
.x16_c00157{left:290.970000px;}
.x2f_c00157{left:292.701000px;}
.x34_c00157{left:296.563500px;}
.x67_c00157{left:298.024737px;}
.xc_c00157{left:301.753500px;}
.x1d_c00157{left:303.535500px;}
.x5d_c00157{left:305.490159px;}
.x36_c00157{left:307.053000px;}
.x24_c00157{left:309.202500px;}
.x6c_c00157{left:310.635978px;}
.x30_c00157{left:312.579000px;}
.xd_c00157{left:315.520500px;}
.x53_c00157{left:317.086500px;}
.x41_c00157{left:320.370000px;}
.x29_c00157{left:321.642000px;}
.x73_c00157{left:326.582577px;}
.x71_c00157{left:328.180116px;}
.x1e_c00157{left:330.601500px;}
.x4e_c00157{left:332.803500px;}
.xe_c00157{left:335.706000px;}
.x25_c00157{left:341.328000px;}
.x17_c00157{left:342.330000px;}
.x3b_c00157{left:345.238500px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.fs4_c00157{font-size:40.133333pt;}
.fsa_c00157{font-size:42.000000pt;}
.fs16_c00157{font-size:49.473814pt;}
.fs17_c00157{font-size:51.340750pt;}
.fs2_c00157{font-size:52.266667pt;}
.fs18_c00157{font-size:52.274219pt;}
.fs15_c00157{font-size:53.207687pt;}
.fs7_c00157{font-size:54.133333pt;}
.fs12_c00157{font-size:54.141155pt;}
.fs6_c00157{font-size:55.066667pt;}
.fs10_c00157{font-size:55.074623pt;}
.fsb_c00157{font-size:56.000000pt;}
.fs14_c00157{font-size:56.008091pt;}
.fs13_c00157{font-size:56.941560pt;}
.fs5_c00157{font-size:58.800000pt;}
.fs8_c00157{font-size:59.733333pt;}
.fs3_c00157{font-size:60.666667pt;}
.fs11_c00157{font-size:61.608901pt;}
.fs1_c00157{font-size:62.533333pt;}
.fs19_c00157{font-size:62.542369pt;}
.fsc_c00157{font-size:63.466667pt;}
.fs9_c00157{font-size:65.333333pt;}
.fsd_c00157{font-size:67.200000pt;}
.fse_c00157{font-size:69.066667pt;}
.fsf_c00157{font-size:72.810519pt;}
.fs0_c00157{font-size:105.466667pt;}
.y0_c00157{bottom:0.000000pt;}
.ye9_c00157{bottom:32.797668pt;}
.ye8_c00157{bottom:33.421849pt;}
.ye7_c00157{bottom:33.800005pt;}
.ye6_c00157{bottom:33.977876pt;}
.ye5_c00157{bottom:34.445400pt;}
.ye4_c00157{bottom:34.991015pt;}
.ye3_c00157{bottom:35.201191pt;}
.ye2_c00157{bottom:35.531703pt;}
.ye1_c00157{bottom:36.212671pt;}
.ye0_c00157{bottom:48.343853pt;}
.ydf_c00157{bottom:48.826629pt;}
.yde_c00157{bottom:49.928536pt;}
.ydd_c00157{bottom:50.621665pt;}
.ydc_c00157{bottom:52.291169pt;}
.ydb_c00157{bottom:52.829759pt;}
.yda_c00157{bottom:53.788991pt;}
.yd9_c00157{bottom:54.455741pt;}
.yd8_c00157{bottom:63.235356pt;}
.yd7_c00157{bottom:64.283384pt;}
.yd6_c00157{bottom:65.194517pt;}
.yd5_c00157{bottom:66.526875pt;}
.yd4_c00157{bottom:66.919532pt;}
.yd3_c00157{bottom:68.279549pt;}
.yd2_c00157{bottom:68.616343pt;}
.yd1_c00157{bottom:79.969909pt;}
.yd0_c00157{bottom:81.321773pt;}
.ycf_c00157{bottom:81.602647pt;}
.yce_c00157{bottom:82.092631pt;}
.ycd_c00157{bottom:83.016152pt;}
.ycc_c00157{bottom:93.675793pt;}
.ycb_c00157{bottom:93.888937pt;}
.yca_c00157{bottom:94.570503pt;}
.yc9_c00157{bottom:95.009484pt;}
.yc8_c00157{bottom:95.910559pt;}
.yc7_c00157{bottom:96.723317pt;}
.yc6_c00157{bottom:97.187976pt;}
.yc5_c00157{bottom:97.500792pt;}
.yc4_c00157{bottom:97.712689pt;}
.yc3_c00157{bottom:98.140247pt;}
.yc2_c00157{bottom:108.559960pt;}
.yc1_c00157{bottom:108.772589pt;}
.yc0_c00157{bottom:108.967848pt;}
.ybf_c00157{bottom:109.623039pt;}
.ybe_c00157{bottom:109.865351pt;}
.ybd_c00157{bottom:110.491384pt;}
.ybc_c00157{bottom:111.128437pt;}
.ybb_c00157{bottom:111.561067pt;}
.yba_c00157{bottom:111.686760pt;}
.yb9_c00157{bottom:112.081819pt;}
.yb8_c00157{bottom:112.301093pt;}
.yb7_c00157{bottom:123.779575pt;}
.yb6_c00157{bottom:124.539709pt;}
.yb5_c00157{bottom:124.746673pt;}
.yb4_c00157{bottom:126.195799pt;}
.yb3_c00157{bottom:127.183411pt;}
.yb2_c00157{bottom:138.434712pt;}
.yb1_c00157{bottom:138.865751pt;}
.yb0_c00157{bottom:139.536935pt;}
.yaf_c00157{bottom:140.857472pt;}
.yae_c00157{bottom:141.278273pt;}
.yad_c00157{bottom:142.292421pt;}
.yac_c00157{bottom:143.651687pt;}
.yab_c00157{bottom:144.469237pt;}
.yaa_c00157{bottom:153.785125pt;}
.ya9_c00157{bottom:154.845233pt;}
.ya8_c00157{bottom:155.107079pt;}
.ya7_c00157{bottom:157.336999pt;}
.ya6_c00157{bottom:157.786759pt;}
.ya5_c00157{bottom:159.933149pt;}
.ya4_c00157{bottom:160.313939pt;}
.ya3_c00157{bottom:171.521952pt;}
.ya2_c00157{bottom:171.889807pt;}
.ya1_c00157{bottom:172.303409pt;}
.ya0_c00157{bottom:173.556888pt;}
.y9f_c00157{bottom:174.245467pt;}
.y9e_c00157{bottom:174.791380pt;}
.y9d_c00157{bottom:176.151768pt;}
.y9c_c00157{bottom:185.543691pt;}
.y9b_c00157{bottom:186.654871pt;}
.y9a_c00157{bottom:186.993437pt;}
.y99_c00157{bottom:187.579719pt;}
.y98_c00157{bottom:188.355683pt;}
.y97_c00157{bottom:189.037803pt;}
.y96_c00157{bottom:190.024219pt;}
.y95_c00157{bottom:190.793432pt;}
.y94_c00157{bottom:200.865301pt;}
.y93_c00157{bottom:201.820057pt;}
.y92_c00157{bottom:203.374247pt;}
.y91_c00157{bottom:203.807081pt;}
.y90_c00157{bottom:205.026917pt;}
.y8f_c00157{bottom:205.680109pt;}
.y8e_c00157{bottom:215.314908pt;}
.y8d_c00157{bottom:215.866571pt;}
.y8c_c00157{bottom:216.940087pt;}
.y8b_c00157{bottom:217.988523pt;}
.y8a_c00157{bottom:218.935993pt;}
.y89_c00157{bottom:219.413920pt;}
.y88_c00157{bottom:220.078172pt;}
.y87_c00157{bottom:230.104804pt;}
.y86_c00157{bottom:230.993865pt;}
.y85_c00157{bottom:231.749161pt;}
.y84_c00157{bottom:232.418959pt;}
.y83_c00157{bottom:233.219915pt;}
.y82_c00157{bottom:234.084403pt;}
.y81_c00157{bottom:234.457181pt;}
.y80_c00157{bottom:234.964632pt;}
.y7f_c00157{bottom:244.128353pt;}
.y7e_c00157{bottom:245.456235pt;}
.y7d_c00157{bottom:246.479136pt;}
.y7c_c00157{bottom:247.148573pt;}
.y7b_c00157{bottom:247.393963pt;}
.y7a_c00157{bottom:247.924000pt;}
.y79_c00157{bottom:258.772000pt;}
.y78_c00157{bottom:260.505333pt;}
.y77_c00157{bottom:260.756000pt;}
.y76_c00157{bottom:261.276000pt;}
.y75_c00157{bottom:262.730667pt;}
.y74_c00157{bottom:263.040000pt;}
.y73_c00157{bottom:275.801333pt;}
.y72_c00157{bottom:276.957333pt;}
.y71_c00157{bottom:278.401333pt;}
.y70_c00157{bottom:290.261333pt;}
.y6f_c00157{bottom:290.978667pt;}
.y6e_c00157{bottom:291.314667pt;}
.y6d_c00157{bottom:291.850667pt;}
.y6c_c00157{bottom:292.125333pt;}
.y6b_c00157{bottom:292.736000pt;}
.y6a_c00157{bottom:292.937333pt;}
.y69_c00157{bottom:293.280000pt;}
.y68_c00157{bottom:307.410667pt;}
.y67_c00157{bottom:307.681333pt;}
.y66_c00157{bottom:308.309333pt;}
.y65_c00157{bottom:308.762667pt;}
.y64_c00157{bottom:309.262667pt;}
.y63_c00157{bottom:309.500000pt;}
.y62_c00157{bottom:310.352000pt;}
.y61_c00157{bottom:310.800000pt;}
.y60_c00157{bottom:323.850667pt;}
.y5f_c00157{bottom:324.794667pt;}
.y5e_c00157{bottom:325.528000pt;}
.y5d_c00157{bottom:326.760000pt;}
.y5c_c00157{bottom:327.118667pt;}
.y5b_c00157{bottom:337.204000pt;}
.y5a_c00157{bottom:337.400000pt;}
.y59_c00157{bottom:337.958667pt;}
.y58_c00157{bottom:338.122667pt;}
.y57_c00157{bottom:338.733333pt;}
.y56_c00157{bottom:338.920000pt;}
.y55_c00157{bottom:339.510667pt;}
.y54_c00157{bottom:339.634667pt;}
.y53_c00157{bottom:340.078667pt;}
.y52_c00157{bottom:352.584000pt;}
.y51_c00157{bottom:352.932000pt;}
.y50_c00157{bottom:353.165333pt;}
.y4f_c00157{bottom:353.540000pt;}
.y4e_c00157{bottom:353.714667pt;}
.y4d_c00157{bottom:354.145333pt;}
.y4c_c00157{bottom:354.320000pt;}
.y4b_c00157{bottom:354.769333pt;}
.y4a_c00157{bottom:355.198667pt;}
.y49_c00157{bottom:365.004000pt;}
.y48_c00157{bottom:365.553333pt;}
.y47_c00157{bottom:366.521333pt;}
.y46_c00157{bottom:367.121333pt;}
.y45_c00157{bottom:368.346667pt;}
.y44_c00157{bottom:368.641333pt;}
.y43_c00157{bottom:381.501333pt;}
.y42_c00157{bottom:381.869333pt;}
.y41_c00157{bottom:382.461333pt;}
.y40_c00157{bottom:383.781333pt;}
.y3f_c00157{bottom:384.134667pt;}
.y3e_c00157{bottom:385.150667pt;}
.y3d_c00157{bottom:386.360000pt;}
.y3c_c00157{bottom:386.884000pt;}
.y3b_c00157{bottom:396.706667pt;}
.y3a_c00157{bottom:397.184000pt;}
.y39_c00157{bottom:399.025333pt;}
.y38_c00157{bottom:400.413333pt;}
.y37_c00157{bottom:400.876000pt;}
.y36_c00157{bottom:401.408000pt;}
.y35_c00157{bottom:402.021333pt;}
.y34_c00157{bottom:402.965333pt;}
.y33_c00157{bottom:411.853333pt;}
.y32_c00157{bottom:412.218667pt;}
.y31_c00157{bottom:412.630667pt;}
.y30_c00157{bottom:415.084000pt;}
.y2f_c00157{bottom:415.889333pt;}
.y2e_c00157{bottom:416.230667pt;}
.y2d_c00157{bottom:417.365333pt;}
.y2c_c00157{bottom:425.725333pt;}
.y2b_c00157{bottom:426.210667pt;}
.y2a_c00157{bottom:427.389333pt;}
.y29_c00157{bottom:427.690667pt;}
.y28_c00157{bottom:428.286667pt;}
.y27_c00157{bottom:429.165333pt;}
.y26_c00157{bottom:429.577333pt;}
.y25_c00157{bottom:430.082667pt;}
.y24_c00157{bottom:441.784000pt;}
.y23_c00157{bottom:442.193333pt;}
.y22_c00157{bottom:442.964000pt;}
.y21_c00157{bottom:443.926667pt;}
.y20_c00157{bottom:444.620000pt;}
.y1f_c00157{bottom:444.857333pt;}
.y1e_c00157{bottom:445.233333pt;}
.y1d_c00157{bottom:445.922667pt;}
.y1c_c00157{bottom:458.854667pt;}
.y1b_c00157{bottom:459.585333pt;}
.y1a_c00157{bottom:459.774667pt;}
.y19_c00157{bottom:460.716000pt;}
.y18_c00157{bottom:462.045333pt;}
.y17_c00157{bottom:462.701333pt;}
.y16_c00157{bottom:462.962667pt;}
.y15_c00157{bottom:474.057333pt;}
.y14_c00157{bottom:474.853333pt;}
.y13_c00157{bottom:475.308000pt;}
.y12_c00157{bottom:476.044000pt;}
.y11_c00157{bottom:476.524000pt;}
.y10_c00157{bottom:478.088000pt;}
.yf_c00157{bottom:487.301333pt;}
.ye_c00157{bottom:487.552000pt;}
.yd_c00157{bottom:487.722667pt;}
.yc_c00157{bottom:488.352000pt;}
.yb_c00157{bottom:488.962667pt;}
.ya_c00157{bottom:489.285333pt;}
.y9_c00157{bottom:489.612000pt;}
.y8_c00157{bottom:490.801333pt;}
.y7_c00157{bottom:503.306667pt;}
.y6_c00157{bottom:505.041333pt;}
.y5_c00157{bottom:506.224000pt;}
.y4_c00157{bottom:506.601333pt;}
.y3_c00157{bottom:507.870667pt;}
.y2_c00157{bottom:508.328000pt;}
.y1_c00157{bottom:517.085333pt;}
.h6_c00157{height:40.133333pt;}
.hc_c00157{height:42.000000pt;}
.h18_c00157{height:49.473814pt;}
.h19_c00157{height:51.340750pt;}
.h4_c00157{height:52.266667pt;}
.h1a_c00157{height:52.274219pt;}
.h17_c00157{height:53.207687pt;}
.h9_c00157{height:54.133333pt;}
.h14_c00157{height:54.141155pt;}
.h8_c00157{height:55.066667pt;}
.h12_c00157{height:55.074623pt;}
.hd_c00157{height:56.000000pt;}
.h16_c00157{height:56.008091pt;}
.h15_c00157{height:56.941560pt;}
.h7_c00157{height:58.800000pt;}
.ha_c00157{height:59.733333pt;}
.h5_c00157{height:60.666667pt;}
.h13_c00157{height:61.608901pt;}
.h3_c00157{height:62.533333pt;}
.h1b_c00157{height:62.542369pt;}
.he_c00157{height:63.466667pt;}
.hb_c00157{height:65.333333pt;}
.hf_c00157{height:67.200000pt;}
.h10_c00157{height:69.066667pt;}
.h11_c00157{height:72.810519pt;}
.h2_c00157{height:105.466667pt;}
.h1_c00157{height:554.000000pt;}
.h0_c00157{height:554.133333pt;}
.w1_c00157{width:340.666667pt;}
.w0_c00157{width:340.800000pt;}
.x0_c00157{left:0.000000pt;}
.x64_c00157{left:40.567827pt;}
.x61_c00157{left:42.758629pt;}
.x49_c00157{left:44.244000pt;}
.x44_c00157{left:45.188000pt;}
.x2a_c00157{left:46.081333pt;}
.x1f_c00157{left:47.042667pt;}
.x2_c00157{left:48.170667pt;}
.x18_c00157{left:50.420000pt;}
.x6e_c00157{left:56.931680pt;}
.x68_c00157{left:58.019899pt;}
.x4f_c00157{left:61.910667pt;}
.x3_c00157{left:64.525333pt;}
.x56_c00157{left:66.659604pt;}
.x31_c00157{left:68.357333pt;}
.x42_c00157{left:69.446667pt;}
.x45_c00157{left:71.572000pt;}
.x4a_c00157{left:72.788000pt;}
.x20_c00157{left:76.794667pt;}
.x54_c00157{left:77.738667pt;}
.x2b_c00157{left:81.024000pt;}
.x3c_c00157{left:82.170667pt;}
.x6f_c00157{left:83.308587pt;}
.x37_c00157{left:88.425333pt;}
.x4b_c00157{left:89.620000pt;}
.x19_c00157{left:90.968000pt;}
.x3d_c00157{left:92.494667pt;}
.x26_c00157{left:95.589333pt;}
.x5b_c00157{left:99.102527pt;}
.x21_c00157{left:101.040000pt;}
.x2c_c00157{left:103.729333pt;}
.x13_c00157{left:104.940000pt;}
.xf_c00157{left:106.354667pt;}
.x4_c00157{left:109.842667pt;}
.x1a_c00157{left:113.057333pt;}
.x5e_c00157{left:119.453956pt;}
.x32_c00157{left:120.938667pt;}
.x5_c00157{left:123.312000pt;}
.x74_c00157{left:125.816768pt;}
.x1b_c00157{left:126.985333pt;}
.x55_c00157{left:131.552000pt;}
.x8_c00157{left:133.257333pt;}
.x76_c00157{left:134.789343pt;}
.x46_c00157{left:135.718667pt;}
.x5f_c00157{left:136.755599pt;}
.x2d_c00157{left:140.597333pt;}
.x3e_c00157{left:141.693333pt;}
.x50_c00157{left:142.746667pt;}
.x5c_c00157{left:144.244800pt;}
.x27_c00157{left:145.438667pt;}
.x10_c00157{left:151.384000pt;}
.x22_c00157{left:152.722667pt;}
.x57_c00157{left:155.251893pt;}
.x9_c00157{left:156.553333pt;}
.x69_c00157{left:157.856621pt;}
.x4c_c00157{left:163.318667pt;}
.x6_c00157{left:165.532000pt;}
.x1_c00157{left:167.040000pt;}
.x11_c00157{left:168.204000pt;}
.x51_c00157{left:171.614667pt;}
.x6b_c00157{left:175.631504pt;}
.x65_c00157{left:177.203203pt;}
.x35_c00157{left:178.133333pt;}
.xa_c00157{left:179.642667pt;}
.x58_c00157{left:184.374257pt;}
.x52_c00157{left:185.542667pt;}
.x14_c00157{left:188.005333pt;}
.x75_c00157{left:190.052287pt;}
.x2e_c00157{left:191.997333pt;}
.x38_c00157{left:193.858667pt;}
.x6d_c00157{left:195.489619pt;}
.x12_c00157{left:197.696000pt;}
.x60_c00157{left:198.915144pt;}
.x43_c00157{left:200.478667pt;}
.x23_c00157{left:205.494667pt;}
.x3f_c00157{left:208.244000pt;}
.x39_c00157{left:211.353333pt;}
.x77_c00157{left:212.743980pt;}
.x62_c00157{left:215.527964pt;}
.x59_c00157{left:217.192236pt;}
.x70_c00157{left:220.943945pt;}
.x40_c00157{left:221.913333pt;}
.xb_c00157{left:223.290667pt;}
.x1c_c00157{left:224.458667pt;}
.x78_c00157{left:226.423576pt;}
.x7_c00157{left:227.470667pt;}
.x47_c00157{left:228.709333pt;}
.x63_c00157{left:230.893316pt;}
.x4d_c00157{left:235.996000pt;}
.x33_c00157{left:237.896000pt;}
.x72_c00157{left:240.568463pt;}
.x66_c00157{left:243.170292pt;}
.x48_c00157{left:244.650667pt;}
.x15_c00157{left:246.821333pt;}
.x3a_c00157{left:248.780000pt;}
.x28_c00157{left:252.102667pt;}
.x6a_c00157{left:253.671289pt;}
.x5a_c00157{left:255.838959pt;}
.x16_c00157{left:258.640000pt;}
.x2f_c00157{left:260.178667pt;}
.x34_c00157{left:263.612000pt;}
.x67_c00157{left:264.910877pt;}
.xc_c00157{left:268.225333pt;}
.x1d_c00157{left:269.809333pt;}
.x5d_c00157{left:271.546808pt;}
.x36_c00157{left:272.936000pt;}
.x24_c00157{left:274.846667pt;}
.x6c_c00157{left:276.120869pt;}
.x30_c00157{left:277.848000pt;}
.xd_c00157{left:280.462667pt;}
.x53_c00157{left:281.854667pt;}
.x41_c00157{left:284.773333pt;}
.x29_c00157{left:285.904000pt;}
.x73_c00157{left:290.295624pt;}
.x71_c00157{left:291.715659pt;}
.x1e_c00157{left:293.868000pt;}
.x4e_c00157{left:295.825333pt;}
.xe_c00157{left:298.405333pt;}
.x25_c00157{left:303.402667pt;}
.x17_c00157{left:304.293333pt;}
.x3b_c00157{left:306.878667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00158 {
    display:none;
  }
  .loading-indicator_c00158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00158 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00158 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00158" -> "#page-container .classname_c00158")
 */
.pf_c00158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00158 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00158 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00158 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00158 {overflow:visible;}
  }
}
.c_c00158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00158 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00158:after { /* webkit #35443 */
  content: '';
}
.t_c00158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00158 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00158 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00158 { /* info for Javascript */
  display:none;
}
.l_c00158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00158:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00158 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00158.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00158{transform:matrix(0.104148,-0.001250,0.003000,0.249982,0,0);-ms-transform:matrix(0.104148,-0.001250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.104148,-0.001250,0.003000,0.249982,0,0);}
.m8e_c00158{transform:matrix(0.110497,-0.001326,0.003000,0.249982,0,0);-ms-transform:matrix(0.110497,-0.001326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.110497,-0.001326,0.003000,0.249982,0,0);}
.me9_c00158{transform:matrix(0.136247,-0.001907,0.003500,0.249976,0,0);-ms-transform:matrix(0.136247,-0.001907,0.003500,0.249976,0,0);-webkit-transform:matrix(0.136247,-0.001907,0.003500,0.249976,0,0);}
.me3_c00158{transform:matrix(0.138366,-0.001937,0.003500,0.249976,0,0);-ms-transform:matrix(0.138366,-0.001937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.138366,-0.001937,0.003500,0.249976,0,0);}
.m8_c00158{transform:matrix(0.140844,-0.003380,0.005998,0.249928,0,0);-ms-transform:matrix(0.140844,-0.003380,0.005998,0.249928,0,0);-webkit-transform:matrix(0.140844,-0.003380,0.005998,0.249928,0,0);}
.m34_c00158{transform:matrix(0.144011,-0.002880,0.004999,0.249950,0,0);-ms-transform:matrix(0.144011,-0.002880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144011,-0.002880,0.004999,0.249950,0,0);}
.m55_c00158{transform:matrix(0.145286,-0.002906,0.004999,0.249950,0,0);-ms-transform:matrix(0.145286,-0.002906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145286,-0.002906,0.004999,0.249950,0,0);}
.m8b_c00158{transform:matrix(0.146459,-0.001758,0.003000,0.249982,0,0);-ms-transform:matrix(0.146459,-0.001758,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146459,-0.001758,0.003000,0.249982,0,0);}
.m62_c00158{transform:matrix(0.149425,-0.002989,0.004999,0.249950,0,0);-ms-transform:matrix(0.149425,-0.002989,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149425,-0.002989,0.004999,0.249950,0,0);}
.meb_c00158{transform:matrix(0.151140,-0.002116,0.003500,0.249976,0,0);-ms-transform:matrix(0.151140,-0.002116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151140,-0.002116,0.003500,0.249976,0,0);}
.m41_c00158{transform:matrix(0.154294,-0.003086,0.004999,0.249950,0,0);-ms-transform:matrix(0.154294,-0.003086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154294,-0.003086,0.004999,0.249950,0,0);}
.mc7_c00158{transform:matrix(0.154329,-0.001852,0.003000,0.249982,0,0);-ms-transform:matrix(0.154329,-0.001852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154329,-0.001852,0.003000,0.249982,0,0);}
.me7_c00158{transform:matrix(0.154630,-0.002165,0.003500,0.249976,0,0);-ms-transform:matrix(0.154630,-0.002165,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154630,-0.002165,0.003500,0.249976,0,0);}
.m32_c00158{transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-ms-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);}
.mcd_c00158{transform:matrix(0.156054,-0.001873,0.003000,0.249982,0,0);-ms-transform:matrix(0.156054,-0.001873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156054,-0.001873,0.003000,0.249982,0,0);}
.m8c_c00158{transform:matrix(0.156254,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156254,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156254,-0.001875,0.003000,0.249982,0,0);}
.mc2_c00158{transform:matrix(0.157929,-0.001895,0.003000,0.249982,0,0);-ms-transform:matrix(0.157929,-0.001895,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157929,-0.001895,0.003000,0.249982,0,0);}
.m8d_c00158{transform:matrix(0.158689,-0.001904,0.003000,0.249982,0,0);-ms-transform:matrix(0.158689,-0.001904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158689,-0.001904,0.003000,0.249982,0,0);}
.mac_c00158{transform:matrix(0.160083,-0.001921,0.003000,0.249982,0,0);-ms-transform:matrix(0.160083,-0.001921,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160083,-0.001921,0.003000,0.249982,0,0);}
.mcc_c00158{transform:matrix(0.160798,-0.001930,0.003000,0.249982,0,0);-ms-transform:matrix(0.160798,-0.001930,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160798,-0.001930,0.003000,0.249982,0,0);}
.m66_c00158{transform:matrix(0.160828,-0.003217,0.004999,0.249950,0,0);-ms-transform:matrix(0.160828,-0.003217,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160828,-0.003217,0.004999,0.249950,0,0);}
.m5a_c00158{transform:matrix(0.161628,-0.003233,0.004999,0.249950,0,0);-ms-transform:matrix(0.161628,-0.003233,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161628,-0.003233,0.004999,0.249950,0,0);}
.m98_c00158{transform:matrix(0.161828,-0.001942,0.003000,0.249982,0,0);-ms-transform:matrix(0.161828,-0.001942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161828,-0.001942,0.003000,0.249982,0,0);}
.m18_c00158{transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);-ms-transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164212,-0.003284,0.004999,0.249950,0,0);}
.mb1_c00158{transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);-ms-transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);}
.m85_c00158{transform:matrix(0.164778,-0.001977,0.003000,0.249982,0,0);-ms-transform:matrix(0.164778,-0.001977,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164778,-0.001977,0.003000,0.249982,0,0);}
.m60_c00158{transform:matrix(0.164937,-0.003299,0.004999,0.249950,0,0);-ms-transform:matrix(0.164937,-0.003299,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164937,-0.003299,0.004999,0.249950,0,0);}
.mc_c00158{transform:matrix(0.165622,-0.003975,0.005998,0.249928,0,0);-ms-transform:matrix(0.165622,-0.003975,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165622,-0.003975,0.005998,0.249928,0,0);}
.m17_c00158{transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-ms-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);}
.m15_c00158{transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);-ms-transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);}
.m3b_c00158{transform:matrix(0.166442,-0.003329,0.004999,0.249950,0,0);-ms-transform:matrix(0.166442,-0.003329,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166442,-0.003329,0.004999,0.249950,0,0);}
.m1e_c00158{transform:matrix(0.167297,-0.003346,0.004999,0.249950,0,0);-ms-transform:matrix(0.167297,-0.003346,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167297,-0.003346,0.004999,0.249950,0,0);}
.mc4_c00158{transform:matrix(0.167748,-0.002013,0.003000,0.249982,0,0);-ms-transform:matrix(0.167748,-0.002013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167748,-0.002013,0.003000,0.249982,0,0);}
.m3_c00158{transform:matrix(0.169666,-0.004072,0.005998,0.249928,0,0);-ms-transform:matrix(0.169666,-0.004072,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169666,-0.004072,0.005998,0.249928,0,0);}
.mb5_c00158{transform:matrix(0.171243,-0.002055,0.003000,0.249982,0,0);-ms-transform:matrix(0.171243,-0.002055,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171243,-0.002055,0.003000,0.249982,0,0);}
.m9_c00158{transform:matrix(0.171266,-0.004110,0.005998,0.249928,0,0);-ms-transform:matrix(0.171266,-0.004110,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171266,-0.004110,0.005998,0.249928,0,0);}
.m6f_c00158{transform:matrix(0.171401,-0.003428,0.004999,0.249950,0,0);-ms-transform:matrix(0.171401,-0.003428,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171401,-0.003428,0.004999,0.249950,0,0);}
.mae_c00158{transform:matrix(0.171408,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171408,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171408,-0.002057,0.003000,0.249982,0,0);}
.m30_c00158{transform:matrix(0.171671,-0.003433,0.004999,0.249950,0,0);-ms-transform:matrix(0.171671,-0.003433,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171671,-0.003433,0.004999,0.249950,0,0);}
.m7d_c00158{transform:matrix(0.171908,-0.002063,0.003000,0.249982,0,0);-ms-transform:matrix(0.171908,-0.002063,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171908,-0.002063,0.003000,0.249982,0,0);}
.m44_c00158{transform:matrix(0.172316,-0.003446,0.004999,0.249950,0,0);-ms-transform:matrix(0.172316,-0.003446,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172316,-0.003446,0.004999,0.249950,0,0);}
.me_c00158{transform:matrix(0.172380,-0.004137,0.005998,0.249928,0,0);-ms-transform:matrix(0.172380,-0.004137,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172380,-0.004137,0.005998,0.249928,0,0);}
.m10_c00158{transform:matrix(0.172900,-0.004150,0.005998,0.249928,0,0);-ms-transform:matrix(0.172900,-0.004150,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172900,-0.004150,0.005998,0.249928,0,0);}
.m9b_c00158{transform:matrix(0.172918,-0.002075,0.003000,0.249982,0,0);-ms-transform:matrix(0.172918,-0.002075,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172918,-0.002075,0.003000,0.249982,0,0);}
.m25_c00158{transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);-ms-transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173060,-0.003461,0.004999,0.249950,0,0);}
.mbe_c00158{transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173148,-0.002078,0.003000,0.249982,0,0);}
.maf_c00158{transform:matrix(0.173488,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173488,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173488,-0.002082,0.003000,0.249982,0,0);}
.mc6_c00158{transform:matrix(0.173642,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173642,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173642,-0.002084,0.003000,0.249982,0,0);}
.m65_c00158{transform:matrix(0.173890,-0.003478,0.004999,0.249950,0,0);-ms-transform:matrix(0.173890,-0.003478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173890,-0.003478,0.004999,0.249950,0,0);}
.ma4_c00158{transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);-ms-transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174722,-0.002097,0.003000,0.249982,0,0);}
.me2_c00158{transform:matrix(0.175088,-0.002451,0.003500,0.249976,0,0);-ms-transform:matrix(0.175088,-0.002451,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175088,-0.002451,0.003500,0.249976,0,0);}
.m2b_c00158{transform:matrix(0.175175,-0.003503,0.004999,0.249950,0,0);-ms-transform:matrix(0.175175,-0.003503,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175175,-0.003503,0.004999,0.249950,0,0);}
.m7f_c00158{transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);}
.mea_c00158{transform:matrix(0.176473,-0.002471,0.003500,0.249976,0,0);-ms-transform:matrix(0.176473,-0.002471,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176473,-0.002471,0.003500,0.249976,0,0);}
.mc5_c00158{transform:matrix(0.176907,-0.002123,0.003000,0.249982,0,0);-ms-transform:matrix(0.176907,-0.002123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176907,-0.002123,0.003000,0.249982,0,0);}
.m83_c00158{transform:matrix(0.177032,-0.002124,0.003000,0.249982,0,0);-ms-transform:matrix(0.177032,-0.002124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177032,-0.002124,0.003000,0.249982,0,0);}
.m42_c00158{transform:matrix(0.177100,-0.003542,0.004999,0.249950,0,0);-ms-transform:matrix(0.177100,-0.003542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177100,-0.003542,0.004999,0.249950,0,0);}
.md7_c00158{transform:matrix(0.177118,-0.002480,0.003500,0.249976,0,0);-ms-transform:matrix(0.177118,-0.002480,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177118,-0.002480,0.003500,0.249976,0,0);}
.mce_c00158{transform:matrix(0.177307,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177307,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177307,-0.002128,0.003000,0.249982,0,0);}
.ma1_c00158{transform:matrix(0.177362,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177362,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177362,-0.002128,0.003000,0.249982,0,0);}
.m9e_c00158{transform:matrix(0.177717,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177717,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177717,-0.002133,0.003000,0.249982,0,0);}
.m31_c00158{transform:matrix(0.177844,-0.003557,0.004999,0.249950,0,0);-ms-transform:matrix(0.177844,-0.003557,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177844,-0.003557,0.004999,0.249950,0,0);}
.m4a_c00158{transform:matrix(0.177934,-0.003559,0.004999,0.249950,0,0);-ms-transform:matrix(0.177934,-0.003559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177934,-0.003559,0.004999,0.249950,0,0);}
.m4b_c00158{transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);-ms-transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);}
.m81_c00158{transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178867,-0.002146,0.003000,0.249982,0,0);}
.m2d_c00158{transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);-ms-transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);}
.m9a_c00158{transform:matrix(0.179977,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.179977,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179977,-0.002160,0.003000,0.249982,0,0);}
.me0_c00158{transform:matrix(0.180117,-0.002522,0.003500,0.249976,0,0);-ms-transform:matrix(0.180117,-0.002522,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180117,-0.002522,0.003500,0.249976,0,0);}
.md0_c00158{transform:matrix(0.180577,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180577,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180577,-0.002167,0.003000,0.249982,0,0);}
.m69_c00158{transform:matrix(0.180599,-0.003612,0.004999,0.249950,0,0);-ms-transform:matrix(0.180599,-0.003612,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180599,-0.003612,0.004999,0.249950,0,0);}
.m1f_c00158{transform:matrix(0.180914,-0.003618,0.004999,0.249950,0,0);-ms-transform:matrix(0.180914,-0.003618,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180914,-0.003618,0.004999,0.249950,0,0);}
.ma2_c00158{transform:matrix(0.181317,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181317,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181317,-0.002176,0.003000,0.249982,0,0);}
.m52_c00158{transform:matrix(0.181339,-0.003627,0.004999,0.249950,0,0);-ms-transform:matrix(0.181339,-0.003627,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181339,-0.003627,0.004999,0.249950,0,0);}
.m99_c00158{transform:matrix(0.181797,-0.002182,0.003000,0.249982,0,0);-ms-transform:matrix(0.181797,-0.002182,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181797,-0.002182,0.003000,0.249982,0,0);}
.mb2_c00158{transform:matrix(0.182122,-0.002185,0.003000,0.249982,0,0);-ms-transform:matrix(0.182122,-0.002185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182122,-0.002185,0.003000,0.249982,0,0);}
.mad_c00158{transform:matrix(0.182542,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182542,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182542,-0.002191,0.003000,0.249982,0,0);}
.me8_c00158{transform:matrix(0.182727,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182727,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182727,-0.002558,0.003500,0.249976,0,0);}
.m97_c00158{transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);}
.m90_c00158{transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);}
.m3c_c00158{transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);}
.m1b_c00158{transform:matrix(0.185218,-0.003704,0.004999,0.249950,0,0);-ms-transform:matrix(0.185218,-0.003704,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185218,-0.003704,0.004999,0.249950,0,0);}
.ma9_c00158{transform:matrix(0.185387,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185387,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185387,-0.002225,0.003000,0.249982,0,0);}
.m9f_c00158{transform:matrix(0.185427,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185427,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185427,-0.002225,0.003000,0.249982,0,0);}
.m4_c00158{transform:matrix(0.186381,-0.004473,0.005998,0.249928,0,0);-ms-transform:matrix(0.186381,-0.004473,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186381,-0.004473,0.005998,0.249928,0,0);}
.mb9_c00158{transform:matrix(0.186417,-0.002237,0.003000,0.249982,0,0);-ms-transform:matrix(0.186417,-0.002237,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186417,-0.002237,0.003000,0.249982,0,0);}
.me6_c00158{transform:matrix(0.186597,-0.002612,0.003500,0.249976,0,0);-ms-transform:matrix(0.186597,-0.002612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186597,-0.002612,0.003500,0.249976,0,0);}
.mf_c00158{transform:matrix(0.186971,-0.004487,0.005998,0.249928,0,0);-ms-transform:matrix(0.186971,-0.004487,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186971,-0.004487,0.005998,0.249928,0,0);}
.m84_c00158{transform:matrix(0.187097,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187097,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187097,-0.002245,0.003000,0.249982,0,0);}
.ma0_c00158{transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187122,-0.002245,0.003000,0.249982,0,0);}
.m4f_c00158{transform:matrix(0.187607,-0.003752,0.004999,0.249950,0,0);-ms-transform:matrix(0.187607,-0.003752,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187607,-0.003752,0.004999,0.249950,0,0);}
.m37_c00158{transform:matrix(0.187702,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187702,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187702,-0.003754,0.004999,0.249950,0,0);}
.mc3_c00158{transform:matrix(0.187731,-0.002253,0.003000,0.249982,0,0);-ms-transform:matrix(0.187731,-0.002253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187731,-0.002253,0.003000,0.249982,0,0);}
.m38_c00158{transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);}
.mde_c00158{transform:matrix(0.188507,-0.002639,0.003500,0.249976,0,0);-ms-transform:matrix(0.188507,-0.002639,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188507,-0.002639,0.003500,0.249976,0,0);}
.m9d_c00158{transform:matrix(0.188901,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188901,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188901,-0.002267,0.003000,0.249982,0,0);}
.mb4_c00158{transform:matrix(0.189116,-0.002269,0.003000,0.249982,0,0);-ms-transform:matrix(0.189116,-0.002269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189116,-0.002269,0.003000,0.249982,0,0);}
.mcf_c00158{transform:matrix(0.189136,-0.002270,0.003000,0.249982,0,0);-ms-transform:matrix(0.189136,-0.002270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189136,-0.002270,0.003000,0.249982,0,0);}
.m64_c00158{transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);}
.m20_c00158{transform:matrix(0.189192,-0.003784,0.004999,0.249950,0,0);-ms-transform:matrix(0.189192,-0.003784,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189192,-0.003784,0.004999,0.249950,0,0);}
.m35_c00158{transform:matrix(0.189322,-0.003786,0.004999,0.249950,0,0);-ms-transform:matrix(0.189322,-0.003786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189322,-0.003786,0.004999,0.249950,0,0);}
.m8a_c00158{transform:matrix(0.189461,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189461,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189461,-0.002274,0.003000,0.249982,0,0);}
.m12_c00158{transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);-ms-transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);}
.mab_c00158{transform:matrix(0.190141,-0.002282,0.003000,0.249982,0,0);-ms-transform:matrix(0.190141,-0.002282,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190141,-0.002282,0.003000,0.249982,0,0);}
.m14_c00158{transform:matrix(0.190185,-0.004564,0.005998,0.249928,0,0);-ms-transform:matrix(0.190185,-0.004564,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190185,-0.004564,0.005998,0.249928,0,0);}
.m89_c00158{transform:matrix(0.190261,-0.002283,0.003000,0.249982,0,0);-ms-transform:matrix(0.190261,-0.002283,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190261,-0.002283,0.003000,0.249982,0,0);}
.maa_c00158{transform:matrix(0.190856,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190856,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190856,-0.002290,0.003000,0.249982,0,0);}
.m22_c00158{transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);-ms-transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190892,-0.003818,0.004999,0.249950,0,0);}
.m2c_c00158{transform:matrix(0.190977,-0.003820,0.004999,0.249950,0,0);-ms-transform:matrix(0.190977,-0.003820,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190977,-0.003820,0.004999,0.249950,0,0);}
.m13_c00158{transform:matrix(0.191195,-0.004589,0.005998,0.249928,0,0);-ms-transform:matrix(0.191195,-0.004589,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191195,-0.004589,0.005998,0.249928,0,0);}
.m2_c00158{transform:matrix(0.191240,-0.004590,0.005998,0.249928,0,0);-ms-transform:matrix(0.191240,-0.004590,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191240,-0.004590,0.005998,0.249928,0,0);}
.m0_c00158{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.192806,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192806,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192806,-0.002314,0.003000,0.249982,0,0);}
.md8_c00158{transform:matrix(0.192866,-0.002700,0.003500,0.249976,0,0);-ms-transform:matrix(0.192866,-0.002700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192866,-0.002700,0.003500,0.249976,0,0);}
.m72_c00158{transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);}
.m1a_c00158{transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193021,-0.003860,0.004999,0.249950,0,0);}
.m7_c00158{transform:matrix(0.193044,-0.004633,0.005998,0.249928,0,0);-ms-transform:matrix(0.193044,-0.004633,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193044,-0.004633,0.005998,0.249928,0,0);}
.m11_c00158{transform:matrix(0.193254,-0.004638,0.005998,0.249928,0,0);-ms-transform:matrix(0.193254,-0.004638,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193254,-0.004638,0.005998,0.249928,0,0);}
.m91_c00158{transform:matrix(0.194301,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194301,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194301,-0.002332,0.003000,0.249982,0,0);}
.mb6_c00158{transform:matrix(0.194366,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194366,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194366,-0.002332,0.003000,0.249982,0,0);}
.m33_c00158{transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);-ms-transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);}
.m86_c00158{transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);}
.mdd_c00158{transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);-ms-transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195691,-0.002740,0.003500,0.249976,0,0);}
.md1_c00158{transform:matrix(0.196011,-0.002352,0.003000,0.249982,0,0);-ms-transform:matrix(0.196011,-0.002352,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196011,-0.002352,0.003000,0.249982,0,0);}
.m87_c00158{transform:matrix(0.196516,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196516,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196516,-0.002358,0.003000,0.249982,0,0);}
.mb_c00158{transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);-ms-transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);}
.m1c_c00158{transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);-ms-transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);}
.m6d_c00158{transform:matrix(0.197236,-0.003945,0.004999,0.249950,0,0);-ms-transform:matrix(0.197236,-0.003945,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197236,-0.003945,0.004999,0.249950,0,0);}
.mdb_c00158{transform:matrix(0.197581,-0.002766,0.003500,0.249976,0,0);-ms-transform:matrix(0.197581,-0.002766,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197581,-0.002766,0.003500,0.249976,0,0);}
.md_c00158{transform:matrix(0.197608,-0.004743,0.005998,0.249928,0,0);-ms-transform:matrix(0.197608,-0.004743,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197608,-0.004743,0.005998,0.249928,0,0);}
.m63_c00158{transform:matrix(0.197690,-0.003954,0.004999,0.249950,0,0);-ms-transform:matrix(0.197690,-0.003954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197690,-0.003954,0.004999,0.249950,0,0);}
.m5_c00158{transform:matrix(0.197883,-0.004749,0.005998,0.249928,0,0);-ms-transform:matrix(0.197883,-0.004749,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197883,-0.004749,0.005998,0.249928,0,0);}
.m28_c00158{transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);-ms-transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);}
.m80_c00158{transform:matrix(0.198121,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198121,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198121,-0.002377,0.003000,0.249982,0,0);}
.m3a_c00158{transform:matrix(0.198280,-0.003966,0.004999,0.249950,0,0);-ms-transform:matrix(0.198280,-0.003966,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198280,-0.003966,0.004999,0.249950,0,0);}
.m47_c00158{transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);-ms-transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);}
.m5e_c00158{transform:matrix(0.198435,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198435,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198435,-0.003969,0.004999,0.249950,0,0);}
.m36_c00158{transform:matrix(0.198500,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198500,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198500,-0.003970,0.004999,0.249950,0,0);}
.m6a_c00158{transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);-ms-transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);}
.m39_c00158{transform:matrix(0.198625,-0.003973,0.004999,0.249950,0,0);-ms-transform:matrix(0.198625,-0.003973,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198625,-0.003973,0.004999,0.249950,0,0);}
.m45_c00158{transform:matrix(0.198790,-0.003976,0.004999,0.249950,0,0);-ms-transform:matrix(0.198790,-0.003976,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198790,-0.003976,0.004999,0.249950,0,0);}
.m59_c00158{transform:matrix(0.199295,-0.003986,0.004999,0.249950,0,0);-ms-transform:matrix(0.199295,-0.003986,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199295,-0.003986,0.004999,0.249950,0,0);}
.md2_c00158{transform:matrix(0.199356,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199356,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199356,-0.002392,0.003000,0.249982,0,0);}
.m1d_c00158{transform:matrix(0.199835,-0.003997,0.004999,0.249950,0,0);-ms-transform:matrix(0.199835,-0.003997,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199835,-0.003997,0.004999,0.249950,0,0);}
.ma3_c00158{transform:matrix(0.200251,-0.002403,0.003000,0.249982,0,0);-ms-transform:matrix(0.200251,-0.002403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200251,-0.002403,0.003000,0.249982,0,0);}
.ma_c00158{transform:matrix(0.200912,-0.004822,0.005998,0.249928,0,0);-ms-transform:matrix(0.200912,-0.004822,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200912,-0.004822,0.005998,0.249928,0,0);}
.m2f_c00158{transform:matrix(0.201275,-0.004025,0.004999,0.249950,0,0);-ms-transform:matrix(0.201275,-0.004025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201275,-0.004025,0.004999,0.249950,0,0);}
.m67_c00158{transform:matrix(0.201380,-0.004028,0.004999,0.249950,0,0);-ms-transform:matrix(0.201380,-0.004028,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201380,-0.004028,0.004999,0.249950,0,0);}
.mc0_c00158{transform:matrix(0.201930,-0.002423,0.003000,0.249982,0,0);-ms-transform:matrix(0.201930,-0.002423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201930,-0.002423,0.003000,0.249982,0,0);}
.m54_c00158{transform:matrix(0.202270,-0.004045,0.004999,0.249950,0,0);-ms-transform:matrix(0.202270,-0.004045,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202270,-0.004045,0.004999,0.249950,0,0);}
.m21_c00158{transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);-ms-transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);}
.ma5_c00158{transform:matrix(0.202960,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202960,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202960,-0.002436,0.003000,0.249982,0,0);}
.m5b_c00158{transform:matrix(0.203164,-0.004063,0.004999,0.249950,0,0);-ms-transform:matrix(0.203164,-0.004063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203164,-0.004063,0.004999,0.249950,0,0);}
.m5d_c00158{transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);}
.m77_c00158{transform:matrix(0.203324,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203324,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203324,-0.004066,0.004999,0.249950,0,0);}
.mb0_c00158{transform:matrix(0.203440,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203440,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203440,-0.002441,0.003000,0.249982,0,0);}
.mcb_c00158{transform:matrix(0.203490,-0.002442,0.003000,0.249982,0,0);-ms-transform:matrix(0.203490,-0.002442,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203490,-0.002442,0.003000,0.249982,0,0);}
.m68_c00158{transform:matrix(0.203789,-0.004076,0.004999,0.249950,0,0);-ms-transform:matrix(0.203789,-0.004076,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203789,-0.004076,0.004999,0.249950,0,0);}
.m19_c00158{transform:matrix(0.203914,-0.004078,0.004999,0.249950,0,0);-ms-transform:matrix(0.203914,-0.004078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203914,-0.004078,0.004999,0.249950,0,0);}
.m50_c00158{transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);-ms-transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);}
.m3e_c00158{transform:matrix(0.204514,-0.004090,0.004999,0.249950,0,0);-ms-transform:matrix(0.204514,-0.004090,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204514,-0.004090,0.004999,0.249950,0,0);}
.mca_c00158{transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205720,-0.002469,0.003000,0.249982,0,0);}
.md9_c00158{transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-ms-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);}
.m3d_c00158{transform:matrix(0.206819,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206819,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206819,-0.004136,0.004999,0.249950,0,0);}
.m26_c00158{transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);-ms-transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206859,-0.004137,0.004999,0.249950,0,0);}
.mb3_c00158{transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);-ms-transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);}
.m4d_c00158{transform:matrix(0.207948,-0.004159,0.004999,0.249950,0,0);-ms-transform:matrix(0.207948,-0.004159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207948,-0.004159,0.004999,0.249950,0,0);}
.m93_c00158{transform:matrix(0.208700,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208700,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208700,-0.002504,0.003000,0.249982,0,0);}
.m51_c00158{transform:matrix(0.209118,-0.004182,0.004999,0.249950,0,0);-ms-transform:matrix(0.209118,-0.004182,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209118,-0.004182,0.004999,0.249950,0,0);}
.md5_c00158{transform:matrix(0.209509,-0.002933,0.003500,0.249976,0,0);-ms-transform:matrix(0.209509,-0.002933,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209509,-0.002933,0.003500,0.249976,0,0);}
.m7e_c00158{transform:matrix(0.209845,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209845,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209845,-0.002518,0.003000,0.249982,0,0);}
.m23_c00158{transform:matrix(0.210373,-0.004207,0.004999,0.249950,0,0);-ms-transform:matrix(0.210373,-0.004207,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210373,-0.004207,0.004999,0.249950,0,0);}
.m6b_c00158{transform:matrix(0.210413,-0.004208,0.004999,0.249950,0,0);-ms-transform:matrix(0.210413,-0.004208,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210413,-0.004208,0.004999,0.249950,0,0);}
.m92_c00158{transform:matrix(0.210635,-0.002528,0.003000,0.249982,0,0);-ms-transform:matrix(0.210635,-0.002528,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210635,-0.002528,0.003000,0.249982,0,0);}
.m61_c00158{transform:matrix(0.211783,-0.004236,0.004999,0.249950,0,0);-ms-transform:matrix(0.211783,-0.004236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211783,-0.004236,0.004999,0.249950,0,0);}
.m7c_c00158{transform:matrix(0.211860,-0.002542,0.003000,0.249982,0,0);-ms-transform:matrix(0.211860,-0.002542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211860,-0.002542,0.003000,0.249982,0,0);}
.ma6_c00158{transform:matrix(0.212240,-0.002547,0.003000,0.249982,0,0);-ms-transform:matrix(0.212240,-0.002547,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212240,-0.002547,0.003000,0.249982,0,0);}
.me1_c00158{transform:matrix(0.212514,-0.002975,0.003500,0.249976,0,0);-ms-transform:matrix(0.212514,-0.002975,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212514,-0.002975,0.003500,0.249976,0,0);}
.m24_c00158{transform:matrix(0.212617,-0.004252,0.004999,0.249950,0,0);-ms-transform:matrix(0.212617,-0.004252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212617,-0.004252,0.004999,0.249950,0,0);}
.m16_c00158{transform:matrix(0.212719,-0.005105,0.005998,0.249928,0,0);-ms-transform:matrix(0.212719,-0.005105,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212719,-0.005105,0.005998,0.249928,0,0);}
.m7a_c00158{transform:matrix(0.212850,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212850,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212850,-0.002554,0.003000,0.249982,0,0);}
.m6_c00158{transform:matrix(0.213199,-0.005117,0.005998,0.249928,0,0);-ms-transform:matrix(0.213199,-0.005117,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213199,-0.005117,0.005998,0.249928,0,0);}
.m96_c00158{transform:matrix(0.214130,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214130,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214130,-0.002570,0.003000,0.249982,0,0);}
.m27_c00158{transform:matrix(0.214242,-0.004285,0.004999,0.249950,0,0);-ms-transform:matrix(0.214242,-0.004285,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214242,-0.004285,0.004999,0.249950,0,0);}
.m1_c00158{transform:matrix(0.214268,-0.005142,0.005998,0.249928,0,0);-ms-transform:matrix(0.214268,-0.005142,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214268,-0.005142,0.005998,0.249928,0,0);}
.mbc_c00158{transform:matrix(0.214645,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214645,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214645,-0.002576,0.003000,0.249982,0,0);}
.mb8_c00158{transform:matrix(0.214820,-0.002578,0.003000,0.249982,0,0);-ms-transform:matrix(0.214820,-0.002578,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214820,-0.002578,0.003000,0.249982,0,0);}
.m6e_c00158{transform:matrix(0.215117,-0.004302,0.004999,0.249950,0,0);-ms-transform:matrix(0.215117,-0.004302,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215117,-0.004302,0.004999,0.249950,0,0);}
.m74_c00158{transform:matrix(0.215132,-0.004303,0.004999,0.249950,0,0);-ms-transform:matrix(0.215132,-0.004303,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215132,-0.004303,0.004999,0.249950,0,0);}
.m94_c00158{transform:matrix(0.216089,-0.002593,0.003000,0.249982,0,0);-ms-transform:matrix(0.216089,-0.002593,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216089,-0.002593,0.003000,0.249982,0,0);}
.md6_c00158{transform:matrix(0.216614,-0.003033,0.003500,0.249976,0,0);-ms-transform:matrix(0.216614,-0.003033,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216614,-0.003033,0.003500,0.249976,0,0);}
.mbd_c00158{transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);-ms-transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218874,-0.002626,0.003000,0.249982,0,0);}
.m71_c00158{transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);-ms-transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);}
.mbf_c00158{transform:matrix(0.220559,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220559,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220559,-0.002647,0.003000,0.249982,0,0);}
.m56_c00158{transform:matrix(0.220951,-0.004419,0.004999,0.249950,0,0);-ms-transform:matrix(0.220951,-0.004419,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220951,-0.004419,0.004999,0.249950,0,0);}
.m43_c00158{transform:matrix(0.221786,-0.004436,0.004999,0.249950,0,0);-ms-transform:matrix(0.221786,-0.004436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221786,-0.004436,0.004999,0.249950,0,0);}
.m4c_c00158{transform:matrix(0.222246,-0.004445,0.004999,0.249950,0,0);-ms-transform:matrix(0.222246,-0.004445,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222246,-0.004445,0.004999,0.249950,0,0);}
.m7b_c00158{transform:matrix(0.222369,-0.002668,0.003000,0.249982,0,0);-ms-transform:matrix(0.222369,-0.002668,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222369,-0.002668,0.003000,0.249982,0,0);}
.m88_c00158{transform:matrix(0.223829,-0.002686,0.003000,0.249982,0,0);-ms-transform:matrix(0.223829,-0.002686,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223829,-0.002686,0.003000,0.249982,0,0);}
.m6c_c00158{transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);-ms-transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);}
.m9c_c00158{transform:matrix(0.224484,-0.002694,0.003000,0.249982,0,0);-ms-transform:matrix(0.224484,-0.002694,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224484,-0.002694,0.003000,0.249982,0,0);}
.mdf_c00158{transform:matrix(0.226233,-0.003167,0.003500,0.249976,0,0);-ms-transform:matrix(0.226233,-0.003167,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226233,-0.003167,0.003500,0.249976,0,0);}
.m73_c00158{transform:matrix(0.226870,-0.004537,0.004999,0.249950,0,0);-ms-transform:matrix(0.226870,-0.004537,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226870,-0.004537,0.004999,0.249950,0,0);}
.m46_c00158{transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);-ms-transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);}
.m95_c00158{transform:matrix(0.229124,-0.002749,0.003000,0.249982,0,0);-ms-transform:matrix(0.229124,-0.002749,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229124,-0.002749,0.003000,0.249982,0,0);}
.mda_c00158{transform:matrix(0.229578,-0.003214,0.003500,0.249976,0,0);-ms-transform:matrix(0.229578,-0.003214,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229578,-0.003214,0.003500,0.249976,0,0);}
.mba_c00158{transform:matrix(0.230088,-0.002761,0.003000,0.249982,0,0);-ms-transform:matrix(0.230088,-0.002761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230088,-0.002761,0.003000,0.249982,0,0);}
.m82_c00158{transform:matrix(0.230453,-0.002765,0.003000,0.249982,0,0);-ms-transform:matrix(0.230453,-0.002765,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230453,-0.002765,0.003000,0.249982,0,0);}
.m2e_c00158{transform:matrix(0.232024,-0.004640,0.004999,0.249950,0,0);-ms-transform:matrix(0.232024,-0.004640,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232024,-0.004640,0.004999,0.249950,0,0);}
.m29_c00158{transform:matrix(0.234628,-0.004693,0.004999,0.249950,0,0);-ms-transform:matrix(0.234628,-0.004693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234628,-0.004693,0.004999,0.249950,0,0);}
.m53_c00158{transform:matrix(0.235018,-0.004700,0.004999,0.249950,0,0);-ms-transform:matrix(0.235018,-0.004700,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235018,-0.004700,0.004999,0.249950,0,0);}
.m5f_c00158{transform:matrix(0.237518,-0.004750,0.004999,0.249950,0,0);-ms-transform:matrix(0.237518,-0.004750,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237518,-0.004750,0.004999,0.249950,0,0);}
.m5c_c00158{transform:matrix(0.237592,-0.004752,0.004999,0.249950,0,0);-ms-transform:matrix(0.237592,-0.004752,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237592,-0.004752,0.004999,0.249950,0,0);}
.me4_c00158{transform:matrix(0.238372,-0.003337,0.003500,0.249976,0,0);-ms-transform:matrix(0.238372,-0.003337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238372,-0.003337,0.003500,0.249976,0,0);}
.m40_c00158{transform:matrix(0.240577,-0.004812,0.004999,0.249950,0,0);-ms-transform:matrix(0.240577,-0.004812,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240577,-0.004812,0.004999,0.249950,0,0);}
.mdc_c00158{transform:matrix(0.241176,-0.003376,0.003500,0.249976,0,0);-ms-transform:matrix(0.241176,-0.003376,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241176,-0.003376,0.003500,0.249976,0,0);}
.m3f_c00158{transform:matrix(0.241757,-0.004835,0.004999,0.249950,0,0);-ms-transform:matrix(0.241757,-0.004835,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241757,-0.004835,0.004999,0.249950,0,0);}
.m4e_c00158{transform:matrix(0.246471,-0.004929,0.004999,0.249950,0,0);-ms-transform:matrix(0.246471,-0.004929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246471,-0.004929,0.004999,0.249950,0,0);}
.mb7_c00158{transform:matrix(0.247442,-0.002969,0.003000,0.249982,0,0);-ms-transform:matrix(0.247442,-0.002969,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247442,-0.002969,0.003000,0.249982,0,0);}
.ma7_c00158{transform:matrix(0.249052,-0.002989,0.003000,0.249982,0,0);-ms-transform:matrix(0.249052,-0.002989,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249052,-0.002989,0.003000,0.249982,0,0);}
.m48_c00158{transform:matrix(0.250110,-0.005002,0.004999,0.249950,0,0);-ms-transform:matrix(0.250110,-0.005002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250110,-0.005002,0.004999,0.249950,0,0);}
.mc9_c00158{transform:matrix(0.252047,-0.003025,0.003000,0.249982,0,0);-ms-transform:matrix(0.252047,-0.003025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252047,-0.003025,0.003000,0.249982,0,0);}
.me5_c00158{transform:matrix(0.252295,-0.003532,0.003500,0.249976,0,0);-ms-transform:matrix(0.252295,-0.003532,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252295,-0.003532,0.003500,0.249976,0,0);}
.md4_c00158{transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);-ms-transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);}
.md3_c00158{transform:matrix(0.262636,-0.003152,0.003000,0.249982,0,0);-ms-transform:matrix(0.262636,-0.003152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262636,-0.003152,0.003000,0.249982,0,0);}
.m58_c00158{transform:matrix(0.263647,-0.005273,0.004999,0.249950,0,0);-ms-transform:matrix(0.263647,-0.005273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263647,-0.005273,0.004999,0.249950,0,0);}
.mbb_c00158{transform:matrix(0.264346,-0.003172,0.003000,0.249982,0,0);-ms-transform:matrix(0.264346,-0.003172,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264346,-0.003172,0.003000,0.249982,0,0);}
.m76_c00158{transform:matrix(0.265957,-0.005319,0.004999,0.249950,0,0);-ms-transform:matrix(0.265957,-0.005319,0.004999,0.249950,0,0);-webkit-transform:matrix(0.265957,-0.005319,0.004999,0.249950,0,0);}
.m75_c00158{transform:matrix(0.270891,-0.005418,0.004999,0.249950,0,0);-ms-transform:matrix(0.270891,-0.005418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.270891,-0.005418,0.004999,0.249950,0,0);}
.mc8_c00158{transform:matrix(0.276025,-0.003312,0.003000,0.249982,0,0);-ms-transform:matrix(0.276025,-0.003312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276025,-0.003312,0.003000,0.249982,0,0);}
.m70_c00158{transform:matrix(0.281884,-0.005638,0.004999,0.249950,0,0);-ms-transform:matrix(0.281884,-0.005638,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281884,-0.005638,0.004999,0.249950,0,0);}
.mc1_c00158{transform:matrix(0.284919,-0.003419,0.003000,0.249982,0,0);-ms-transform:matrix(0.284919,-0.003419,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284919,-0.003419,0.003000,0.249982,0,0);}
.m49_c00158{transform:matrix(0.287438,-0.005749,0.004999,0.249950,0,0);-ms-transform:matrix(0.287438,-0.005749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.287438,-0.005749,0.004999,0.249950,0,0);}
.m57_c00158{transform:matrix(0.320111,-0.006402,0.004999,0.249950,0,0);-ms-transform:matrix(0.320111,-0.006402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.320111,-0.006402,0.004999,0.249950,0,0);}
.m78_c00158{transform:matrix(0.345461,-0.006909,0.004999,0.249950,0,0);-ms-transform:matrix(0.345461,-0.006909,0.004999,0.249950,0,0);-webkit-transform:matrix(0.345461,-0.006909,0.004999,0.249950,0,0);}
.m2a_c00158{transform:matrix(0.348965,-0.006979,0.004999,0.249950,0,0);-ms-transform:matrix(0.348965,-0.006979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.348965,-0.006979,0.004999,0.249950,0,0);}
.ma8_c00158{transform:matrix(0.356099,-0.004273,0.003000,0.249982,0,0);-ms-transform:matrix(0.356099,-0.004273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.356099,-0.004273,0.003000,0.249982,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:0.000000px;}
.fc0_c00158{color:transparent;}
.fsa_c00158{font-size:57.761549px;}
.fs5_c00158{font-size:58.811759px;}
.fs16_c00158{font-size:59.855865px;}
.fs6_c00158{font-size:59.861969px;}
.fsf_c00158{font-size:60.904385px;}
.fs4_c00158{font-size:60.912179px;}
.fsc_c00158{font-size:61.954460px;}
.fs17_c00158{font-size:61.956071px;}
.fsb_c00158{font-size:61.962389px;}
.fs14_c00158{font-size:63.004536px;}
.fs9_c00158{font-size:63.012599px;}
.fs3_c00158{font-size:63.018141px;}
.fs11_c00158{font-size:64.054611px;}
.fs2_c00158{font-size:64.068444px;}
.fs0_c00158{font-size:65.100000px;}
.fs12_c00158{font-size:65.104687px;}
.fs8_c00158{font-size:65.113019px;}
.fs1_c00158{font-size:65.118746px;}
.fs13_c00158{font-size:66.154763px;}
.fs7_c00158{font-size:67.213439px;}
.fsd_c00158{font-size:68.254914px;}
.fs10_c00158{font-size:69.304989px;}
.fse_c00158{font-size:70.355065px;}
.fs18_c00158{font-size:70.356894px;}
.fs15_c00158{font-size:71.405141px;}
.y0_c00158{bottom:0.000000px;}
.ye3_c00158{bottom:34.288872px;}
.ye5_c00158{bottom:34.289229px;}
.ye4_c00158{bottom:34.289490px;}
.ye7_c00158{bottom:34.289964px;}
.ye8_c00158{bottom:34.289982px;}
.ye6_c00158{bottom:34.289985px;}
.yea_c00158{bottom:34.290078px;}
.ye9_c00158{bottom:34.290321px;}
.yeb_c00158{bottom:34.290537px;}
.yec_c00158{bottom:34.290855px;}
.ydc_c00158{bottom:52.919487px;}
.yde_c00158{bottom:52.919658px;}
.ydd_c00158{bottom:52.919664px;}
.ye0_c00158{bottom:52.919955px;}
.ydf_c00158{bottom:52.920357px;}
.ye2_c00158{bottom:52.920588px;}
.ye1_c00158{bottom:52.920630px;}
.yd5_c00158{bottom:67.503000px;}
.yd6_c00158{bottom:68.754117px;}
.yd7_c00158{bottom:69.418494px;}
.yd8_c00158{bottom:69.812475px;}
.yd9_c00158{bottom:70.038981px;}
.yda_c00158{bottom:70.659783px;}
.ydb_c00158{bottom:70.939524px;}
.yd3_c00158{bottom:86.082978px;}
.yd4_c00158{bottom:86.083164px;}
.ycc_c00158{bottom:102.046212px;}
.ycd_c00158{bottom:103.176234px;}
.yce_c00158{bottom:103.480776px;}
.ycf_c00158{bottom:103.847418px;}
.yd0_c00158{bottom:104.630976px;}
.yd1_c00158{bottom:105.014124px;}
.yd2_c00158{bottom:105.318702px;}
.yc3_c00158{bottom:119.057400px;}
.yc4_c00158{bottom:119.326338px;}
.yc5_c00158{bottom:119.745054px;}
.yc6_c00158{bottom:120.331296px;}
.yc7_c00158{bottom:120.577482px;}
.yc8_c00158{bottom:121.345272px;}
.yc9_c00158{bottom:121.566006px;}
.yca_c00158{bottom:122.201352px;}
.ycb_c00158{bottom:122.460372px;}
.ybc_c00158{bottom:136.611186px;}
.ybd_c00158{bottom:137.368524px;}
.ybe_c00158{bottom:138.658578px;}
.ybf_c00158{bottom:139.802544px;}
.yc0_c00158{bottom:140.132130px;}
.yc1_c00158{bottom:141.169962px;}
.yc2_c00158{bottom:142.276896px;}
.yb7_c00158{bottom:155.334192px;}
.ybb_c00158{bottom:155.334672px;}
.yb8_c00158{bottom:155.334798px;}
.yb9_c00158{bottom:155.335320px;}
.yba_c00158{bottom:155.335326px;}
.yb1_c00158{bottom:169.821978px;}
.yb2_c00158{bottom:170.298294px;}
.yb3_c00158{bottom:171.077646px;}
.yb4_c00158{bottom:172.291254px;}
.yb5_c00158{bottom:172.692762px;}
.yb6_c00158{bottom:173.588016px;}
.ya8_c00158{bottom:185.753232px;}
.ya9_c00158{bottom:185.982564px;}
.yaa_c00158{bottom:186.054270px;}
.yab_c00158{bottom:186.313314px;}
.yac_c00158{bottom:186.691698px;}
.yad_c00158{bottom:187.281234px;}
.yae_c00158{bottom:187.513356px;}
.yaf_c00158{bottom:188.150748px;}
.yb0_c00158{bottom:188.387886px;}
.ya0_c00158{bottom:201.146724px;}
.ya1_c00158{bottom:202.290618px;}
.ya2_c00158{bottom:202.927650px;}
.ya3_c00158{bottom:203.479782px;}
.ya4_c00158{bottom:204.590232px;}
.ya5_c00158{bottom:205.152300px;}
.ya6_c00158{bottom:205.560042px;}
.ya7_c00158{bottom:206.392344px;}
.y9a_c00158{bottom:219.776898px;}
.y9b_c00158{bottom:220.696788px;}
.y9c_c00158{bottom:220.951890px;}
.y9d_c00158{bottom:221.652090px;}
.y9e_c00158{bottom:222.924666px;}
.y9f_c00158{bottom:223.984650px;}
.y92_c00158{bottom:238.135464px;}
.y93_c00158{bottom:238.420986px;}
.y94_c00158{bottom:239.047230px;}
.y95_c00158{bottom:239.338416px;}
.y96_c00158{bottom:239.888532px;}
.y97_c00158{bottom:240.887064px;}
.y98_c00158{bottom:241.047150px;}
.y99_c00158{bottom:241.245654px;}
.y8a_c00158{bottom:253.799460px;}
.y8b_c00158{bottom:254.346810px;}
.y8c_c00158{bottom:254.806632px;}
.y8d_c00158{bottom:255.869226px;}
.y8e_c00158{bottom:256.188864px;}
.y8f_c00158{bottom:257.016198px;}
.y90_c00158{bottom:257.137890px;}
.y91_c00158{bottom:258.075546px;}
.y82_c00158{bottom:270.814194px;}
.y83_c00158{bottom:271.546002px;}
.y84_c00158{bottom:271.839348px;}
.y85_c00158{bottom:272.633646px;}
.y86_c00158{bottom:273.702720px;}
.y87_c00158{bottom:274.026138px;}
.y88_c00158{bottom:274.836084px;}
.y89_c00158{bottom:275.214528px;}
.y7a_c00158{bottom:289.978500px;}
.y7b_c00158{bottom:290.177256px;}
.y7c_c00158{bottom:290.647056px;}
.y7d_c00158{bottom:291.224244px;}
.y7e_c00158{bottom:291.984654px;}
.y7f_c00158{bottom:292.254330px;}
.y80_c00158{bottom:292.937916px;}
.y81_c00158{bottom:293.177424px;}
.y75_c00158{bottom:306.947040px;}
.y76_c00158{bottom:307.547700px;}
.y77_c00158{bottom:308.473410px;}
.y78_c00158{bottom:308.768790px;}
.y79_c00158{bottom:310.961430px;}
.y6d_c00158{bottom:323.420400px;}
.y6e_c00158{bottom:323.909190px;}
.y6f_c00158{bottom:324.206910px;}
.y70_c00158{bottom:325.157760px;}
.y71_c00158{bottom:325.680750px;}
.y72_c00158{bottom:326.494080px;}
.y73_c00158{bottom:327.066960px;}
.y74_c00158{bottom:327.417450px;}
.y65_c00158{bottom:338.819040px;}
.y66_c00158{bottom:339.279390px;}
.y67_c00158{bottom:339.799620px;}
.y68_c00158{bottom:340.315440px;}
.y69_c00158{bottom:341.790420px;}
.y6a_c00158{bottom:342.485310px;}
.y6b_c00158{bottom:343.040010px;}
.y6c_c00158{bottom:344.190600px;}
.y5e_c00158{bottom:353.138190px;}
.y5f_c00158{bottom:355.160160px;}
.y60_c00158{bottom:355.430970px;}
.y61_c00158{bottom:357.332850px;}
.y62_c00158{bottom:358.946370px;}
.y63_c00158{bottom:359.578830px;}
.y64_c00158{bottom:360.280140px;}
.y57_c00158{bottom:372.306840px;}
.y58_c00158{bottom:373.553430px;}
.y59_c00158{bottom:375.030750px;}
.y5a_c00158{bottom:375.603810px;}
.y5b_c00158{bottom:376.075230px;}
.y5c_c00158{bottom:376.410120px;}
.y5d_c00158{bottom:377.338260px;}
.y50_c00158{bottom:389.051520px;}
.y51_c00158{bottom:389.979450px;}
.y52_c00158{bottom:391.030860px;}
.y53_c00158{bottom:391.775220px;}
.y54_c00158{bottom:392.145180px;}
.y55_c00158{bottom:394.053540px;}
.y56_c00158{bottom:394.415820px;}
.y47_c00158{bottom:404.986320px;}
.y48_c00158{bottom:405.526500px;}
.y49_c00158{bottom:406.054860px;}
.y4a_c00158{bottom:407.849040px;}
.y4b_c00158{bottom:408.259830px;}
.y4c_c00158{bottom:408.732000px;}
.y4d_c00158{bottom:409.595400px;}
.y4e_c00158{bottom:410.114400px;}
.y4f_c00158{bottom:410.881410px;}
.y3e_c00158{bottom:422.808240px;}
.y3f_c00158{bottom:423.494010px;}
.y40_c00158{bottom:423.872790px;}
.y41_c00158{bottom:425.566110px;}
.y42_c00158{bottom:425.841660px;}
.y43_c00158{bottom:426.200040px;}
.y44_c00158{bottom:426.508110px;}
.y45_c00158{bottom:427.219140px;}
.y46_c00158{bottom:427.604520px;}
.y37_c00158{bottom:439.014240px;}
.y38_c00158{bottom:440.437140px;}
.y39_c00158{bottom:441.510840px;}
.y3a_c00158{bottom:441.970470px;}
.y3b_c00158{bottom:443.300880px;}
.y3c_c00158{bottom:445.076100px;}
.y3d_c00158{bottom:445.448250px;}
.y30_c00158{bottom:456.296460px;}
.y31_c00158{bottom:456.970980px;}
.y32_c00158{bottom:457.991550px;}
.y33_c00158{bottom:459.656610px;}
.y34_c00158{bottom:460.220820px;}
.y35_c00158{bottom:461.734530px;}
.y36_c00158{bottom:462.262560px;}
.y28_c00158{bottom:474.119580px;}
.y29_c00158{bottom:475.534530px;}
.y2a_c00158{bottom:476.323200px;}
.y2b_c00158{bottom:477.641610px;}
.y2c_c00158{bottom:477.943530px;}
.y2d_c00158{bottom:478.310970px;}
.y2e_c00158{bottom:479.331690px;}
.y2f_c00158{bottom:479.666520px;}
.y21_c00158{bottom:490.050600px;}
.y22_c00158{bottom:490.611840px;}
.y23_c00158{bottom:491.804850px;}
.y24_c00158{bottom:492.240990px;}
.y25_c00158{bottom:493.768530px;}
.y26_c00158{bottom:495.145020px;}
.y27_c00158{bottom:495.738750px;}
.y18_c00158{bottom:508.413000px;}
.y19_c00158{bottom:508.780140px;}
.y1a_c00158{bottom:509.170920px;}
.y1b_c00158{bottom:510.116040px;}
.y1c_c00158{bottom:511.151430px;}
.y1d_c00158{bottom:511.671900px;}
.y1e_c00158{bottom:513.232200px;}
.y1f_c00158{bottom:513.686460px;}
.y20_c00158{bottom:514.010820px;}
.y10_c00158{bottom:525.145176px;}
.y11_c00158{bottom:526.080624px;}
.y12_c00158{bottom:526.589520px;}
.y13_c00158{bottom:527.182824px;}
.y14_c00158{bottom:528.356004px;}
.y15_c00158{bottom:529.563420px;}
.y16_c00158{bottom:530.585004px;}
.y17_c00158{bottom:530.970468px;}
.y8_c00158{bottom:542.430504px;}
.y9_c00158{bottom:543.466368px;}
.ya_c00158{bottom:543.886716px;}
.yb_c00158{bottom:544.279056px;}
.yc_c00158{bottom:545.871936px;}
.yd_c00158{bottom:546.286512px;}
.ye_c00158{bottom:546.768852px;}
.yf_c00158{bottom:548.037720px;}
.y2_c00158{bottom:558.907500px;}
.y3_c00158{bottom:559.672392px;}
.y4_c00158{bottom:561.649008px;}
.y5_c00158{bottom:562.303920px;}
.y6_c00158{bottom:563.632248px;}
.y7_c00158{bottom:564.189816px;}
.y1_c00158{bottom:578.880000px;}
.hc_c00158{height:57.761549px;}
.h7_c00158{height:58.811759px;}
.h18_c00158{height:59.855865px;}
.h8_c00158{height:59.861969px;}
.h11_c00158{height:60.904385px;}
.h6_c00158{height:60.912179px;}
.he_c00158{height:61.954460px;}
.h19_c00158{height:61.956071px;}
.hd_c00158{height:61.962389px;}
.h16_c00158{height:63.004536px;}
.hb_c00158{height:63.012599px;}
.h5_c00158{height:63.018141px;}
.h13_c00158{height:64.054611px;}
.h4_c00158{height:64.068444px;}
.h2_c00158{height:65.100000px;}
.h14_c00158{height:65.104687px;}
.ha_c00158{height:65.113019px;}
.h3_c00158{height:65.118746px;}
.h15_c00158{height:66.154763px;}
.h9_c00158{height:67.213439px;}
.hf_c00158{height:68.254914px;}
.h12_c00158{height:69.304989px;}
.h10_c00158{height:70.355065px;}
.h1a_c00158{height:70.356894px;}
.h17_c00158{height:71.405141px;}
.h1_c00158{height:623.250000px;}
.h0_c00158{height:623.400000px;}
.w1_c00158{width:383.250000px;}
.w0_c00158{width:383.400000px;}
.x0_c00158{left:0.000000px;}
.x5e_c00158{left:32.599908px;}
.x2d_c00158{left:36.205230px;}
.x20_c00158{left:38.278740px;}
.x8_c00158{left:39.426204px;}
.x5b_c00158{left:40.501902px;}
.x66_c00158{left:41.576832px;}
.x17_c00158{left:47.935500px;}
.x42_c00158{left:59.440920px;}
.x21_c00158{left:62.664270px;}
.x2_c00158{left:63.774000px;}
.x53_c00158{left:64.908018px;}
.x18_c00158{left:66.292500px;}
.x46_c00158{left:70.117470px;}
.x29_c00158{left:71.272260px;}
.x31_c00158{left:73.668990px;}
.x6b_c00158{left:75.058662px;}
.x4f_c00158{left:76.305216px;}
.x43_c00158{left:82.076070px;}
.x10_c00158{left:83.411196px;}
.x19_c00158{left:85.831500px;}
.x9_c00158{left:88.778268px;}
.x50_c00158{left:90.999312px;}
.x32_c00158{left:92.607990px;}
.x3_c00158{left:95.644500px;}
.x2e_c00158{left:98.046510px;}
.x56_c00158{left:100.359282px;}
.x3d_c00158{left:103.650390px;}
.x11_c00158{left:107.616924px;}
.xa_c00158{left:108.794208px;}
.x5c_c00158{left:110.437464px;}
.x22_c00158{left:114.511650px;}
.x40_c00158{left:117.020040px;}
.x2a_c00158{left:119.899800px;}
.x54_c00158{left:121.845702px;}
.xb_c00158{left:127.455540px;}
.x5d_c00158{left:129.608718px;}
.x51_c00158{left:130.686996px;}
.x1a_c00158{left:133.087500px;}
.x12_c00158{left:135.839940px;}
.x2f_c00158{left:144.753720px;}
.x4a_c00158{left:147.893160px;}
.x25_c00158{left:149.027460px;}
.x4c_c00158{left:151.933500px;}
.x58_c00158{left:154.698180px;}
.x61_c00158{left:159.398172px;}
.x6c_c00158{left:161.468088px;}
.x30_c00158{left:164.734020px;}
.x5f_c00158{left:167.544714px;}
.x44_c00158{left:168.635880px;}
.x1_c00158{left:170.910000px;}
.x67_c00158{left:173.079099px;}
.x4_c00158{left:178.003500px;}
.x47_c00158{left:180.829320px;}
.x36_c00158{left:182.007870px;}
.x3a_c00158{left:183.032340px;}
.x1b_c00158{left:184.857000px;}
.x52_c00158{left:189.244236px;}
.x13_c00158{left:191.726472px;}
.x68_c00158{left:193.061505px;}
.x55_c00158{left:198.330120px;}
.x23_c00158{left:199.865520px;}
.xc_c00158{left:203.331012px;}
.x5_c00158{left:205.291500px;}
.x33_c00158{left:208.970490px;}
.x1c_c00158{left:210.880500px;}
.x26_c00158{left:214.947960px;}
.x69_c00158{left:216.823167px;}
.xd_c00158{left:223.043916px;}
.x34_c00158{left:224.373990px;}
.x2b_c00158{left:226.036170px;}
.x27_c00158{left:230.043960px;}
.x48_c00158{left:231.624870px;}
.x3e_c00158{left:236.418060px;}
.x41_c00158{left:238.243230px;}
.x37_c00158{left:240.082890px;}
.xe_c00158{left:246.018072px;}
.x64_c00158{left:247.198500px;}
.x14_c00158{left:249.227112px;}
.x3f_c00158{left:254.062920px;}
.x62_c00158{left:255.248172px;}
.x59_c00158{left:258.668190px;}
.x6_c00158{left:260.638500px;}
.x38_c00158{left:262.656540px;}
.x49_c00158{left:267.471750px;}
.x45_c00158{left:273.038640px;}
.x35_c00158{left:279.194490px;}
.x7_c00158{left:283.870500px;}
.x24_c00158{left:285.471360px;}
.x63_c00158{left:287.177172px;}
.x1d_c00158{left:288.895500px;}
.x65_c00158{left:291.541500px;}
.x4d_c00158{left:294.739500px;}
.x39_c00158{left:295.980030px;}
.x15_c00158{left:297.859104px;}
.x28_c00158{left:299.451960px;}
.x3b_c00158{left:302.950740px;}
.xf_c00158{left:306.454428px;}
.x1e_c00158{left:311.608500px;}
.x4e_c00158{left:314.698500px;}
.x16_c00158{left:316.233936px;}
.x6a_c00158{left:318.352554px;}
.x57_c00158{left:319.589898px;}
.x3c_c00158{left:322.040130px;}
.x2c_c00158{left:323.246220px;}
.x60_c00158{left:324.452214px;}
.x4b_c00158{left:325.565460px;}
.x1f_c00158{left:327.826500px;}
.x5a_c00158{left:329.851548px;}
.x6d_c00158{left:333.206730px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.fsa_c00158{font-size:51.343599pt;}
.fs5_c00158{font-size:52.277119pt;}
.fs16_c00158{font-size:53.205213pt;}
.fs6_c00158{font-size:53.210639pt;}
.fsf_c00158{font-size:54.137231pt;}
.fs4_c00158{font-size:54.144159pt;}
.fsc_c00158{font-size:55.070631pt;}
.fs17_c00158{font-size:55.072063pt;}
.fsb_c00158{font-size:55.077679pt;}
.fs14_c00158{font-size:56.004032pt;}
.fs9_c00158{font-size:56.011199pt;}
.fs3_c00158{font-size:56.016126pt;}
.fs11_c00158{font-size:56.937432pt;}
.fs2_c00158{font-size:56.949728pt;}
.fs0_c00158{font-size:57.866667pt;}
.fs12_c00158{font-size:57.870833pt;}
.fs8_c00158{font-size:57.878239pt;}
.fs1_c00158{font-size:57.883330pt;}
.fs13_c00158{font-size:58.804233pt;}
.fs7_c00158{font-size:59.745279pt;}
.fsd_c00158{font-size:60.671035pt;}
.fs10_c00158{font-size:61.604435pt;}
.fse_c00158{font-size:62.537836pt;}
.fs18_c00158{font-size:62.539461pt;}
.fs15_c00158{font-size:63.471236pt;}
.y0_c00158{bottom:0.000000pt;}
.ye3_c00158{bottom:30.478997pt;}
.ye5_c00158{bottom:30.479315pt;}
.ye4_c00158{bottom:30.479547pt;}
.ye7_c00158{bottom:30.479968pt;}
.ye8_c00158{bottom:30.479984pt;}
.ye6_c00158{bottom:30.479987pt;}
.yea_c00158{bottom:30.480069pt;}
.ye9_c00158{bottom:30.480285pt;}
.yeb_c00158{bottom:30.480477pt;}
.yec_c00158{bottom:30.480760pt;}
.ydc_c00158{bottom:47.039544pt;}
.yde_c00158{bottom:47.039696pt;}
.ydd_c00158{bottom:47.039701pt;}
.ye0_c00158{bottom:47.039960pt;}
.ydf_c00158{bottom:47.040317pt;}
.ye2_c00158{bottom:47.040523pt;}
.ye1_c00158{bottom:47.040560pt;}
.yd5_c00158{bottom:60.002667pt;}
.yd6_c00158{bottom:61.114771pt;}
.yd7_c00158{bottom:61.705328pt;}
.yd8_c00158{bottom:62.055533pt;}
.yd9_c00158{bottom:62.256872pt;}
.yda_c00158{bottom:62.808696pt;}
.ydb_c00158{bottom:63.057355pt;}
.yd3_c00158{bottom:76.518203pt;}
.yd4_c00158{bottom:76.518368pt;}
.ycc_c00158{bottom:90.707744pt;}
.ycd_c00158{bottom:91.712208pt;}
.yce_c00158{bottom:91.982912pt;}
.ycf_c00158{bottom:92.308816pt;}
.yd0_c00158{bottom:93.005312pt;}
.yd1_c00158{bottom:93.345888pt;}
.yd2_c00158{bottom:93.616624pt;}
.yc3_c00158{bottom:105.828800pt;}
.yc4_c00158{bottom:106.067856pt;}
.yc5_c00158{bottom:106.440048pt;}
.yc6_c00158{bottom:106.961152pt;}
.yc7_c00158{bottom:107.179984pt;}
.yc8_c00158{bottom:107.862464pt;}
.yc9_c00158{bottom:108.058672pt;}
.yca_c00158{bottom:108.623424pt;}
.ycb_c00158{bottom:108.853664pt;}
.ybc_c00158{bottom:121.432165pt;}
.ybd_c00158{bottom:122.105355pt;}
.ybe_c00158{bottom:123.252069pt;}
.ybf_c00158{bottom:124.268928pt;}
.yc0_c00158{bottom:124.561893pt;}
.yc1_c00158{bottom:125.484411pt;}
.yc2_c00158{bottom:126.468352pt;}
.yb7_c00158{bottom:138.074837pt;}
.ybb_c00158{bottom:138.075264pt;}
.yb8_c00158{bottom:138.075376pt;}
.yb9_c00158{bottom:138.075840pt;}
.yba_c00158{bottom:138.075845pt;}
.yb1_c00158{bottom:150.952869pt;}
.yb2_c00158{bottom:151.376261pt;}
.yb3_c00158{bottom:152.069019pt;}
.yb4_c00158{bottom:153.147781pt;}
.yb5_c00158{bottom:153.504677pt;}
.yb6_c00158{bottom:154.300459pt;}
.ya8_c00158{bottom:165.113984pt;}
.ya9_c00158{bottom:165.317835pt;}
.yaa_c00158{bottom:165.381573pt;}
.yab_c00158{bottom:165.611835pt;}
.yac_c00158{bottom:165.948176pt;}
.yad_c00158{bottom:166.472208pt;}
.yae_c00158{bottom:166.678539pt;}
.yaf_c00158{bottom:167.245109pt;}
.yb0_c00158{bottom:167.455899pt;}
.ya0_c00158{bottom:178.797088pt;}
.ya1_c00158{bottom:179.813883pt;}
.ya2_c00158{bottom:180.380133pt;}
.ya3_c00158{bottom:180.870917pt;}
.ya4_c00158{bottom:181.857984pt;}
.ya5_c00158{bottom:182.357600pt;}
.ya6_c00158{bottom:182.720037pt;}
.ya7_c00158{bottom:183.459861pt;}
.y9a_c00158{bottom:195.357243pt;}
.y9b_c00158{bottom:196.174923pt;}
.y9c_c00158{bottom:196.401680pt;}
.y9d_c00158{bottom:197.024080pt;}
.y9e_c00158{bottom:198.155259pt;}
.y9f_c00158{bottom:199.097467pt;}
.y92_c00158{bottom:211.675968pt;}
.y93_c00158{bottom:211.929765pt;}
.y94_c00158{bottom:212.486427pt;}
.y95_c00158{bottom:212.745259pt;}
.y96_c00158{bottom:213.234251pt;}
.y97_c00158{bottom:214.121835pt;}
.y98_c00158{bottom:214.264133pt;}
.y99_c00158{bottom:214.440581pt;}
.y8a_c00158{bottom:225.599520pt;}
.y8b_c00158{bottom:226.086053pt;}
.y8c_c00158{bottom:226.494784pt;}
.y8d_c00158{bottom:227.439312pt;}
.y8e_c00158{bottom:227.723435pt;}
.y8f_c00158{bottom:228.458843pt;}
.y90_c00158{bottom:228.567013pt;}
.y91_c00158{bottom:229.400485pt;}
.y82_c00158{bottom:240.723728pt;}
.y83_c00158{bottom:241.374224pt;}
.y84_c00158{bottom:241.634976pt;}
.y85_c00158{bottom:242.341019pt;}
.y86_c00158{bottom:243.291307pt;}
.y87_c00158{bottom:243.578789pt;}
.y88_c00158{bottom:244.298741pt;}
.y89_c00158{bottom:244.635136pt;}
.y7a_c00158{bottom:257.758667pt;}
.y7b_c00158{bottom:257.935339pt;}
.y7c_c00158{bottom:258.352939pt;}
.y7d_c00158{bottom:258.865995pt;}
.y7e_c00158{bottom:259.541915pt;}
.y7f_c00158{bottom:259.781627pt;}
.y80_c00158{bottom:260.389259pt;}
.y81_c00158{bottom:260.602155pt;}
.y75_c00158{bottom:272.841813pt;}
.y76_c00158{bottom:273.375733pt;}
.y77_c00158{bottom:274.198587pt;}
.y78_c00158{bottom:274.461147pt;}
.y79_c00158{bottom:276.410160pt;}
.y6d_c00158{bottom:287.484800pt;}
.y6e_c00158{bottom:287.919280pt;}
.y6f_c00158{bottom:288.183920pt;}
.y70_c00158{bottom:289.029120pt;}
.y71_c00158{bottom:289.494000pt;}
.y72_c00158{bottom:290.216960pt;}
.y73_c00158{bottom:290.726187pt;}
.y74_c00158{bottom:291.037733pt;}
.y65_c00158{bottom:301.172480pt;}
.y66_c00158{bottom:301.581680pt;}
.y67_c00158{bottom:302.044107pt;}
.y68_c00158{bottom:302.502613pt;}
.y69_c00158{bottom:303.813707pt;}
.y6a_c00158{bottom:304.431387pt;}
.y6b_c00158{bottom:304.924453pt;}
.y6c_c00158{bottom:305.947200pt;}
.y5e_c00158{bottom:313.900613pt;}
.y5f_c00158{bottom:315.697920pt;}
.y60_c00158{bottom:315.938640pt;}
.y61_c00158{bottom:317.629200pt;}
.y62_c00158{bottom:319.063440pt;}
.y63_c00158{bottom:319.625627pt;}
.y64_c00158{bottom:320.249013pt;}
.y57_c00158{bottom:330.939413pt;}
.y58_c00158{bottom:332.047493pt;}
.y59_c00158{bottom:333.360667pt;}
.y5a_c00158{bottom:333.870053pt;}
.y5b_c00158{bottom:334.289093pt;}
.y5c_c00158{bottom:334.586773pt;}
.y5d_c00158{bottom:335.411787pt;}
.y50_c00158{bottom:345.823573pt;}
.y51_c00158{bottom:346.648400pt;}
.y52_c00158{bottom:347.582987pt;}
.y53_c00158{bottom:348.244640pt;}
.y54_c00158{bottom:348.573493pt;}
.y55_c00158{bottom:350.269813pt;}
.y56_c00158{bottom:350.591840pt;}
.y47_c00158{bottom:359.987840pt;}
.y48_c00158{bottom:360.468000pt;}
.y49_c00158{bottom:360.937653pt;}
.y4a_c00158{bottom:362.532480pt;}
.y4b_c00158{bottom:362.897627pt;}
.y4c_c00158{bottom:363.317333pt;}
.y4d_c00158{bottom:364.084800pt;}
.y4e_c00158{bottom:364.546133pt;}
.y4f_c00158{bottom:365.227920pt;}
.y3e_c00158{bottom:375.829547pt;}
.y3f_c00158{bottom:376.439120pt;}
.y40_c00158{bottom:376.775813pt;}
.y41_c00158{bottom:378.280987pt;}
.y42_c00158{bottom:378.525920pt;}
.y43_c00158{bottom:378.844480pt;}
.y44_c00158{bottom:379.118320pt;}
.y45_c00158{bottom:379.750347pt;}
.y46_c00158{bottom:380.092907pt;}
.y37_c00158{bottom:390.234880pt;}
.y38_c00158{bottom:391.499680pt;}
.y39_c00158{bottom:392.454080pt;}
.y3a_c00158{bottom:392.862640pt;}
.y3b_c00158{bottom:394.045227pt;}
.y3c_c00158{bottom:395.623200pt;}
.y3d_c00158{bottom:395.954000pt;}
.y30_c00158{bottom:405.596853pt;}
.y31_c00158{bottom:406.196427pt;}
.y32_c00158{bottom:407.103600pt;}
.y33_c00158{bottom:408.583653pt;}
.y34_c00158{bottom:409.085173pt;}
.y35_c00158{bottom:410.430693pt;}
.y36_c00158{bottom:410.900053pt;}
.y28_c00158{bottom:421.439627pt;}
.y29_c00158{bottom:422.697360pt;}
.y2a_c00158{bottom:423.398400pt;}
.y2b_c00158{bottom:424.570320pt;}
.y2c_c00158{bottom:424.838693pt;}
.y2d_c00158{bottom:425.165307pt;}
.y2e_c00158{bottom:426.072613pt;}
.y2f_c00158{bottom:426.370240pt;}
.y21_c00158{bottom:435.600533pt;}
.y22_c00158{bottom:436.099413pt;}
.y23_c00158{bottom:437.159867pt;}
.y24_c00158{bottom:437.547547pt;}
.y25_c00158{bottom:438.905360pt;}
.y26_c00158{bottom:440.128907pt;}
.y27_c00158{bottom:440.656667pt;}
.y18_c00158{bottom:451.922667pt;}
.y19_c00158{bottom:452.249013pt;}
.y1a_c00158{bottom:452.596373pt;}
.y1b_c00158{bottom:453.436480pt;}
.y1c_c00158{bottom:454.356827pt;}
.y1d_c00158{bottom:454.819467pt;}
.y1e_c00158{bottom:456.206400pt;}
.y1f_c00158{bottom:456.610187pt;}
.y20_c00158{bottom:456.898507pt;}
.y10_c00158{bottom:466.795712pt;}
.y11_c00158{bottom:467.627221pt;}
.y12_c00158{bottom:468.079573pt;}
.y13_c00158{bottom:468.606955pt;}
.y14_c00158{bottom:469.649781pt;}
.y15_c00158{bottom:470.723040pt;}
.y16_c00158{bottom:471.631115pt;}
.y17_c00158{bottom:471.973749pt;}
.y8_c00158{bottom:482.160448pt;}
.y9_c00158{bottom:483.081216pt;}
.ya_c00158{bottom:483.454859pt;}
.yb_c00158{bottom:483.803605pt;}
.yc_c00158{bottom:485.219499pt;}
.yd_c00158{bottom:485.588011pt;}
.ye_c00158{bottom:486.016757pt;}
.yf_c00158{bottom:487.144640pt;}
.y2_c00158{bottom:496.806667pt;}
.y3_c00158{bottom:497.486571pt;}
.y4_c00158{bottom:499.243563pt;}
.y5_c00158{bottom:499.825707pt;}
.y6_c00158{bottom:501.006443pt;}
.y7_c00158{bottom:501.502059pt;}
.y1_c00158{bottom:514.560000pt;}
.hc_c00158{height:51.343599pt;}
.h7_c00158{height:52.277119pt;}
.h18_c00158{height:53.205213pt;}
.h8_c00158{height:53.210639pt;}
.h11_c00158{height:54.137231pt;}
.h6_c00158{height:54.144159pt;}
.he_c00158{height:55.070631pt;}
.h19_c00158{height:55.072063pt;}
.hd_c00158{height:55.077679pt;}
.h16_c00158{height:56.004032pt;}
.hb_c00158{height:56.011199pt;}
.h5_c00158{height:56.016126pt;}
.h13_c00158{height:56.937432pt;}
.h4_c00158{height:56.949728pt;}
.h2_c00158{height:57.866667pt;}
.h14_c00158{height:57.870833pt;}
.ha_c00158{height:57.878239pt;}
.h3_c00158{height:57.883330pt;}
.h15_c00158{height:58.804233pt;}
.h9_c00158{height:59.745279pt;}
.hf_c00158{height:60.671035pt;}
.h12_c00158{height:61.604435pt;}
.h10_c00158{height:62.537836pt;}
.h1a_c00158{height:62.539461pt;}
.h17_c00158{height:63.471236pt;}
.h1_c00158{height:554.000000pt;}
.h0_c00158{height:554.133333pt;}
.w1_c00158{width:340.666667pt;}
.w0_c00158{width:340.800000pt;}
.x0_c00158{left:0.000000pt;}
.x5e_c00158{left:28.977696pt;}
.x2d_c00158{left:32.182427pt;}
.x20_c00158{left:34.025547pt;}
.x8_c00158{left:35.045515pt;}
.x5b_c00158{left:36.001691pt;}
.x66_c00158{left:36.957184pt;}
.x17_c00158{left:42.609333pt;}
.x42_c00158{left:52.836373pt;}
.x21_c00158{left:55.701573pt;}
.x2_c00158{left:56.688000pt;}
.x53_c00158{left:57.696016pt;}
.x18_c00158{left:58.926667pt;}
.x46_c00158{left:62.326640pt;}
.x29_c00158{left:63.353120pt;}
.x31_c00158{left:65.483547pt;}
.x6b_c00158{left:66.718811pt;}
.x4f_c00158{left:67.826859pt;}
.x43_c00158{left:72.956507pt;}
.x10_c00158{left:74.143285pt;}
.x19_c00158{left:76.294667pt;}
.x9_c00158{left:78.914016pt;}
.x50_c00158{left:80.888277pt;}
.x32_c00158{left:82.318213pt;}
.x3_c00158{left:85.017333pt;}
.x2e_c00158{left:87.152453pt;}
.x56_c00158{left:89.208251pt;}
.x3d_c00158{left:92.133680pt;}
.x11_c00158{left:95.659488pt;}
.xa_c00158{left:96.705963pt;}
.x5c_c00158{left:98.166635pt;}
.x22_c00158{left:101.788133pt;}
.x40_c00158{left:104.017813pt;}
.x2a_c00158{left:106.577600pt;}
.x54_c00158{left:108.307291pt;}
.xb_c00158{left:113.293813pt;}
.x5d_c00158{left:115.207749pt;}
.x51_c00158{left:116.166219pt;}
.x1a_c00158{left:118.300000pt;}
.x12_c00158{left:120.746613pt;}
.x2f_c00158{left:128.669973pt;}
.x4a_c00158{left:131.460587pt;}
.x25_c00158{left:132.468853pt;}
.x4c_c00158{left:135.052000pt;}
.x58_c00158{left:137.509493pt;}
.x61_c00158{left:141.687264pt;}
.x6c_c00158{left:143.527189pt;}
.x30_c00158{left:146.430240pt;}
.x5f_c00158{left:148.928635pt;}
.x44_c00158{left:149.898560pt;}
.x1_c00158{left:151.920000pt;}
.x67_c00158{left:153.848088pt;}
.x4_c00158{left:158.225333pt;}
.x47_c00158{left:160.737173pt;}
.x36_c00158{left:161.784773pt;}
.x3a_c00158{left:162.695413pt;}
.x1b_c00158{left:164.317333pt;}
.x52_c00158{left:168.217099pt;}
.x13_c00158{left:170.423531pt;}
.x68_c00158{left:171.610227pt;}
.x55_c00158{left:176.293440pt;}
.x23_c00158{left:177.658240pt;}
.xc_c00158{left:180.738677pt;}
.x5_c00158{left:182.481333pt;}
.x33_c00158{left:185.751547pt;}
.x1c_c00158{left:187.449333pt;}
.x26_c00158{left:191.064853pt;}
.x69_c00158{left:192.731704pt;}
.xd_c00158{left:198.261259pt;}
.x34_c00158{left:199.443547pt;}
.x2b_c00158{left:200.921040pt;}
.x27_c00158{left:204.483520pt;}
.x48_c00158{left:205.888773pt;}
.x3e_c00158{left:210.149387pt;}
.x41_c00158{left:211.771760pt;}
.x37_c00158{left:213.407013pt;}
.xe_c00158{left:218.682731pt;}
.x64_c00158{left:219.732000pt;}
.x14_c00158{left:221.535211pt;}
.x3f_c00158{left:225.833707pt;}
.x62_c00158{left:226.887264pt;}
.x59_c00158{left:229.927280pt;}
.x6_c00158{left:231.678667pt;}
.x38_c00158{left:233.472480pt;}
.x49_c00158{left:237.752667pt;}
.x45_c00158{left:242.701013pt;}
.x35_c00158{left:248.172880pt;}
.x7_c00158{left:252.329333pt;}
.x24_c00158{left:253.752320pt;}
.x63_c00158{left:255.268597pt;}
.x1d_c00158{left:256.796000pt;}
.x65_c00158{left:259.148000pt;}
.x4d_c00158{left:261.990667pt;}
.x39_c00158{left:263.093360pt;}
.x15_c00158{left:264.763648pt;}
.x28_c00158{left:266.179520pt;}
.x3b_c00158{left:269.289547pt;}
.xf_c00158{left:272.403936pt;}
.x1e_c00158{left:276.985333pt;}
.x4e_c00158{left:279.732000pt;}
.x16_c00158{left:281.096832pt;}
.x6a_c00158{left:282.980048pt;}
.x57_c00158{left:284.079909pt;}
.x3c_c00158{left:286.257893pt;}
.x2c_c00158{left:287.329973pt;}
.x60_c00158{left:288.401968pt;}
.x4b_c00158{left:289.391520pt;}
.x1f_c00158{left:291.401333pt;}
.x5a_c00158{left:293.201376pt;}
.x6d_c00158{left:296.183760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00159 {
    display:none;
  }
  .loading-indicator_c00159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00159 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00159 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00159" -> "#page-container .classname_c00159")
 */
.pf_c00159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00159 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00159 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00159 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00159 {overflow:visible;}
  }
}
.c_c00159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00159 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00159:after { /* webkit #35443 */
  content: '';
}
.t_c00159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00159 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00159 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00159 { /* info for Javascript */
  display:none;
}
.l_c00159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00159:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00159 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00159.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md3_c00159{transform:matrix(0.006059,0.000133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.006059,0.000133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.006059,0.000133,-0.005499,0.249940,0,0);}
.me4_c00159{transform:matrix(0.010852,0.000239,-0.005499,0.249940,0,0);-ms-transform:matrix(0.010852,0.000239,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.010852,0.000239,-0.005499,0.249940,0,0);}
.m1_c00159{transform:matrix(0.053060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053060,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.072417,0.001593,-0.005499,0.249940,0,0);-ms-transform:matrix(0.072417,0.001593,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.072417,0.001593,-0.005499,0.249940,0,0);}
.me2_c00159{transform:matrix(0.089093,0.001960,-0.005499,0.249940,0,0);-ms-transform:matrix(0.089093,0.001960,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.089093,0.001960,-0.005499,0.249940,0,0);}
.m79_c00159{transform:matrix(0.091523,0.002014,-0.005499,0.249940,0,0);-ms-transform:matrix(0.091523,0.002014,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.091523,0.002014,-0.005499,0.249940,0,0);}
.m98_c00159{transform:matrix(0.101076,0.002224,-0.005499,0.249940,0,0);-ms-transform:matrix(0.101076,0.002224,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.101076,0.002224,-0.005499,0.249940,0,0);}
.m77_c00159{transform:matrix(0.132208,0.002909,-0.005499,0.249940,0,0);-ms-transform:matrix(0.132208,0.002909,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.132208,0.002909,-0.005499,0.249940,0,0);}
.mbf_c00159{transform:matrix(0.133843,0.002945,-0.005499,0.249940,0,0);-ms-transform:matrix(0.133843,0.002945,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.133843,0.002945,-0.005499,0.249940,0,0);}
.mda_c00159{transform:matrix(0.138946,0.003057,-0.005499,0.249940,0,0);-ms-transform:matrix(0.138946,0.003057,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.138946,0.003057,-0.005499,0.249940,0,0);}
.m8_c00159{transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);}
.md6_c00159{transform:matrix(0.146889,0.003232,-0.005499,0.249940,0,0);-ms-transform:matrix(0.146889,0.003232,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.146889,0.003232,-0.005499,0.249940,0,0);}
.m9_c00159{transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);}
.m8b_c00159{transform:matrix(0.152243,0.003349,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152243,0.003349,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152243,0.003349,-0.005499,0.249940,0,0);}
.md7_c00159{transform:matrix(0.157377,0.003462,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157377,0.003462,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157377,0.003462,-0.005499,0.249940,0,0);}
.mdd_c00159{transform:matrix(0.159191,0.003502,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159191,0.003502,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159191,0.003502,-0.005499,0.249940,0,0);}
.m8d_c00159{transform:matrix(0.159241,0.003503,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159241,0.003503,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159241,0.003503,-0.005499,0.249940,0,0);}
.me0_c00159{transform:matrix(0.159541,0.003510,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159541,0.003510,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159541,0.003510,-0.005499,0.249940,0,0);}
.md9_c00159{transform:matrix(0.161616,0.003556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161616,0.003556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161616,0.003556,-0.005499,0.249940,0,0);}
.mb2_c00159{transform:matrix(0.162661,0.003579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162661,0.003579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162661,0.003579,-0.005499,0.249940,0,0);}
.m55_c00159{transform:matrix(0.162826,0.003582,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162826,0.003582,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162826,0.003582,-0.005499,0.249940,0,0);}
.md0_c00159{transform:matrix(0.163690,0.003601,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163690,0.003601,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163690,0.003601,-0.005499,0.249940,0,0);}
.m72_c00159{transform:matrix(0.163925,0.003606,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163925,0.003606,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163925,0.003606,-0.005499,0.249940,0,0);}
.m87_c00159{transform:matrix(0.165450,0.003640,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165450,0.003640,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165450,0.003640,-0.005499,0.249940,0,0);}
.m36_c00159{transform:matrix(0.166135,0.003655,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166135,0.003655,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166135,0.003655,-0.005499,0.249940,0,0);}
.mc9_c00159{transform:matrix(0.166450,0.003662,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166450,0.003662,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166450,0.003662,-0.005499,0.249940,0,0);}
.m5_c00159{transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);}
.m6b_c00159{transform:matrix(0.167924,0.003694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167924,0.003694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167924,0.003694,-0.005499,0.249940,0,0);}
.mea_c00159{transform:matrix(0.167939,0.003695,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167939,0.003695,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167939,0.003695,-0.005499,0.249940,0,0);}
.mae_c00159{transform:matrix(0.168389,0.003705,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168389,0.003705,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168389,0.003705,-0.005499,0.249940,0,0);}
.m75_c00159{transform:matrix(0.169014,0.003718,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169014,0.003718,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169014,0.003718,-0.005499,0.249940,0,0);}
.md4_c00159{transform:matrix(0.169244,0.003723,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169244,0.003723,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169244,0.003723,-0.005499,0.249940,0,0);}
.mde_c00159{transform:matrix(0.170414,0.003749,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170414,0.003749,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170414,0.003749,-0.005499,0.249940,0,0);}
.m41_c00159{transform:matrix(0.170424,0.003749,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170424,0.003749,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170424,0.003749,-0.005499,0.249940,0,0);}
.ma2_c00159{transform:matrix(0.170559,0.003752,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170559,0.003752,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170559,0.003752,-0.005499,0.249940,0,0);}
.mb5_c00159{transform:matrix(0.171558,0.003774,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171558,0.003774,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171558,0.003774,-0.005499,0.249940,0,0);}
.mb9_c00159{transform:matrix(0.171978,0.003784,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171978,0.003784,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171978,0.003784,-0.005499,0.249940,0,0);}
.m16_c00159{transform:matrix(0.172127,0.004647,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172127,0.004647,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172127,0.004647,-0.006748,0.249909,0,0);}
.me3_c00159{transform:matrix(0.173818,0.003824,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173818,0.003824,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173818,0.003824,-0.005499,0.249940,0,0);}
.mca_c00159{transform:matrix(0.174033,0.003829,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174033,0.003829,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174033,0.003829,-0.005499,0.249940,0,0);}
.m40_c00159{transform:matrix(0.174123,0.003831,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174123,0.003831,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174123,0.003831,-0.005499,0.249940,0,0);}
.me9_c00159{transform:matrix(0.174733,0.003844,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174733,0.003844,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174733,0.003844,-0.005499,0.249940,0,0);}
.m48_c00159{transform:matrix(0.174808,0.003846,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174808,0.003846,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174808,0.003846,-0.005499,0.249940,0,0);}
.m1a_c00159{transform:matrix(0.174921,0.004723,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174921,0.004723,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174921,0.004723,-0.006748,0.249909,0,0);}
.m6a_c00159{transform:matrix(0.175498,0.003861,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175498,0.003861,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175498,0.003861,-0.005499,0.249940,0,0);}
.m9e_c00159{transform:matrix(0.177822,0.003912,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177822,0.003912,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177822,0.003912,-0.005499,0.249940,0,0);}
.ma6_c00159{transform:matrix(0.178012,0.003916,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178012,0.003916,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178012,0.003916,-0.005499,0.249940,0,0);}
.meb_c00159{transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);}
.md1_c00159{transform:matrix(0.180081,0.003962,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180081,0.003962,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180081,0.003962,-0.005499,0.249940,0,0);}
.mab_c00159{transform:matrix(0.180301,0.003967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180301,0.003967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180301,0.003967,-0.005499,0.249940,0,0);}
.m6_c00159{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.mcd_c00159{transform:matrix(0.181471,0.003992,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181471,0.003992,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181471,0.003992,-0.005499,0.249940,0,0);}
.m64_c00159{transform:matrix(0.181576,0.003995,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181576,0.003995,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181576,0.003995,-0.005499,0.249940,0,0);}
.mcb_c00159{transform:matrix(0.181921,0.004002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181921,0.004002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181921,0.004002,-0.005499,0.249940,0,0);}
.m93_c00159{transform:matrix(0.182246,0.004009,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182246,0.004009,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182246,0.004009,-0.005499,0.249940,0,0);}
.mc2_c00159{transform:matrix(0.182606,0.004017,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182606,0.004017,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182606,0.004017,-0.005499,0.249940,0,0);}
.m96_c00159{transform:matrix(0.182661,0.004019,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182661,0.004019,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182661,0.004019,-0.005499,0.249940,0,0);}
.mef_c00159{transform:matrix(0.182881,0.004023,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182881,0.004023,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182881,0.004023,-0.005499,0.249940,0,0);}
.m45_c00159{transform:matrix(0.183176,0.004030,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183176,0.004030,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183176,0.004030,-0.005499,0.249940,0,0);}
.m44_c00159{transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);}
.mb8_c00159{transform:matrix(0.184505,0.004059,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184505,0.004059,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184505,0.004059,-0.005499,0.249940,0,0);}
.m63_c00159{transform:matrix(0.184560,0.004060,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184560,0.004060,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184560,0.004060,-0.005499,0.249940,0,0);}
.m11_c00159{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.185093,0.004997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185093,0.004997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185093,0.004997,-0.006748,0.249909,0,0);}
.m12_c00159{transform:matrix(0.185252,0.005002,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185252,0.005002,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185252,0.005002,-0.006748,0.249909,0,0);}
.mdb_c00159{transform:matrix(0.185410,0.004079,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185410,0.004079,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185410,0.004079,-0.005499,0.249940,0,0);}
.ma1_c00159{transform:matrix(0.185550,0.004082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185550,0.004082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185550,0.004082,-0.005499,0.249940,0,0);}
.m4_c00159{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.me8_c00159{transform:matrix(0.186015,0.004092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186015,0.004092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186015,0.004092,-0.005499,0.249940,0,0);}
.m3d_c00159{transform:matrix(0.186145,0.004095,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186145,0.004095,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186145,0.004095,-0.005499,0.249940,0,0);}
.m14_c00159{transform:matrix(0.186327,0.005031,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186327,0.005031,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186327,0.005031,-0.006748,0.249909,0,0);}
.m7_c00159{transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.186915,0.004112,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186915,0.004112,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186915,0.004112,-0.005499,0.249940,0,0);}
.mc0_c00159{transform:matrix(0.187320,0.004121,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187320,0.004121,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187320,0.004121,-0.005499,0.249940,0,0);}
.m70_c00159{transform:matrix(0.187435,0.004124,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187435,0.004124,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187435,0.004124,-0.005499,0.249940,0,0);}
.m13_c00159{transform:matrix(0.187467,0.005062,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187467,0.005062,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187467,0.005062,-0.006748,0.249909,0,0);}
.m6f_c00159{transform:matrix(0.188894,0.004156,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188894,0.004156,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188894,0.004156,-0.005499,0.249940,0,0);}
.mc4_c00159{transform:matrix(0.189539,0.004170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189539,0.004170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189539,0.004170,-0.005499,0.249940,0,0);}
.m91_c00159{transform:matrix(0.190224,0.004185,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190224,0.004185,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190224,0.004185,-0.005499,0.249940,0,0);}
.m26_c00159{transform:matrix(0.190269,0.004186,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190269,0.004186,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190269,0.004186,-0.005499,0.249940,0,0);}
.m59_c00159{transform:matrix(0.190419,0.004189,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190419,0.004189,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190419,0.004189,-0.005499,0.249940,0,0);}
.m31_c00159{transform:matrix(0.190454,0.004190,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190454,0.004190,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190454,0.004190,-0.005499,0.249940,0,0);}
.md5_c00159{transform:matrix(0.190504,0.004191,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190504,0.004191,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190504,0.004191,-0.005499,0.249940,0,0);}
.m5c_c00159{transform:matrix(0.190684,0.004195,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190684,0.004195,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190684,0.004195,-0.005499,0.249940,0,0);}
.mee_c00159{transform:matrix(0.190934,0.004201,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190934,0.004201,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190934,0.004201,-0.005499,0.249940,0,0);}
.mb_c00159{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.191584,0.004215,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191584,0.004215,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191584,0.004215,-0.005499,0.249940,0,0);}
.mec_c00159{transform:matrix(0.191739,0.004218,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191739,0.004218,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191739,0.004218,-0.005499,0.249940,0,0);}
.m71_c00159{transform:matrix(0.191814,0.004220,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191814,0.004220,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191814,0.004220,-0.005499,0.249940,0,0);}
.m76_c00159{transform:matrix(0.191844,0.004221,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191844,0.004221,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191844,0.004221,-0.005499,0.249940,0,0);}
.m92_c00159{transform:matrix(0.192104,0.004226,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192104,0.004226,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192104,0.004226,-0.005499,0.249940,0,0);}
.mc3_c00159{transform:matrix(0.192573,0.004237,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192573,0.004237,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192573,0.004237,-0.005499,0.249940,0,0);}
.mdc_c00159{transform:matrix(0.192583,0.004237,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192583,0.004237,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192583,0.004237,-0.005499,0.249940,0,0);}
.m1f_c00159{transform:matrix(0.192623,0.004238,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192623,0.004238,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192623,0.004238,-0.005499,0.249940,0,0);}
.mdf_c00159{transform:matrix(0.193583,0.004259,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193583,0.004259,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193583,0.004259,-0.005499,0.249940,0,0);}
.m80_c00159{transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);}
.m4f_c00159{transform:matrix(0.193778,0.004263,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193778,0.004263,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193778,0.004263,-0.005499,0.249940,0,0);}
.ma_c00159{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.m82_c00159{transform:matrix(0.194433,0.004278,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194433,0.004278,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194433,0.004278,-0.005499,0.249940,0,0);}
.m69_c00159{transform:matrix(0.195003,0.004290,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195003,0.004290,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195003,0.004290,-0.005499,0.249940,0,0);}
.mbb_c00159{transform:matrix(0.195363,0.004298,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195363,0.004298,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195363,0.004298,-0.005499,0.249940,0,0);}
.mf3_c00159{transform:matrix(0.195653,0.004304,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195653,0.004304,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195653,0.004304,-0.005499,0.249940,0,0);}
.m8f_c00159{transform:matrix(0.195923,0.004310,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195923,0.004310,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195923,0.004310,-0.005499,0.249940,0,0);}
.md2_c00159{transform:matrix(0.196018,0.004312,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196018,0.004312,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196018,0.004312,-0.005499,0.249940,0,0);}
.m88_c00159{transform:matrix(0.196033,0.004313,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196033,0.004313,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196033,0.004313,-0.005499,0.249940,0,0);}
.m81_c00159{transform:matrix(0.196278,0.004318,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196278,0.004318,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196278,0.004318,-0.005499,0.249940,0,0);}
.m2d_c00159{transform:matrix(0.196432,0.004322,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196432,0.004322,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196432,0.004322,-0.005499,0.249940,0,0);}
.m15_c00159{transform:matrix(0.196613,0.005309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196613,0.005309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196613,0.005309,-0.006748,0.249909,0,0);}
.m19_c00159{transform:matrix(0.196743,0.005312,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196743,0.005312,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196743,0.005312,-0.006748,0.249909,0,0);}
.m85_c00159{transform:matrix(0.197687,0.004349,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197687,0.004349,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197687,0.004349,-0.005499,0.249940,0,0);}
.m2b_c00159{transform:matrix(0.197697,0.004349,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197697,0.004349,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197697,0.004349,-0.005499,0.249940,0,0);}
.m86_c00159{transform:matrix(0.198422,0.004365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198422,0.004365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198422,0.004365,-0.005499,0.249940,0,0);}
.mce_c00159{transform:matrix(0.198652,0.004370,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198652,0.004370,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198652,0.004370,-0.005499,0.249940,0,0);}
.mcc_c00159{transform:matrix(0.198982,0.004378,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198982,0.004378,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198982,0.004378,-0.005499,0.249940,0,0);}
.ma4_c00159{transform:matrix(0.199087,0.004380,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199087,0.004380,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199087,0.004380,-0.005499,0.249940,0,0);}
.m3a_c00159{transform:matrix(0.199097,0.004380,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199097,0.004380,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199097,0.004380,-0.005499,0.249940,0,0);}
.me1_c00159{transform:matrix(0.199117,0.004381,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199117,0.004381,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199117,0.004381,-0.005499,0.249940,0,0);}
.me6_c00159{transform:matrix(0.199332,0.004385,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199332,0.004385,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199332,0.004385,-0.005499,0.249940,0,0);}
.m8c_c00159{transform:matrix(0.199707,0.004394,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199707,0.004394,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199707,0.004394,-0.005499,0.249940,0,0);}
.mc_c00159{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.200277,0.004406,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200277,0.004406,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200277,0.004406,-0.005499,0.249940,0,0);}
.m2c_c00159{transform:matrix(0.200541,0.004412,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200541,0.004412,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200541,0.004412,-0.005499,0.249940,0,0);}
.m61_c00159{transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);}
.ma7_c00159{transform:matrix(0.201146,0.004425,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201146,0.004425,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201146,0.004425,-0.005499,0.249940,0,0);}
.m7d_c00159{transform:matrix(0.201426,0.004431,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201426,0.004431,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201426,0.004431,-0.005499,0.249940,0,0);}
.md_c00159{transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201985,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.202986,0.004466,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202986,0.004466,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202986,0.004466,-0.005499,0.249940,0,0);}
.mf2_c00159{transform:matrix(0.203021,0.004466,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203021,0.004466,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203021,0.004466,-0.005499,0.249940,0,0);}
.m9b_c00159{transform:matrix(0.203126,0.004469,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203126,0.004469,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203126,0.004469,-0.005499,0.249940,0,0);}
.mb1_c00159{transform:matrix(0.203511,0.004477,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203511,0.004477,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203511,0.004477,-0.005499,0.249940,0,0);}
.m5d_c00159{transform:matrix(0.204595,0.004501,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204595,0.004501,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204595,0.004501,-0.005499,0.249940,0,0);}
.m3f_c00159{transform:matrix(0.204760,0.004505,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204760,0.004505,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204760,0.004505,-0.005499,0.249940,0,0);}
.med_c00159{transform:matrix(0.205100,0.004512,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205100,0.004512,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205100,0.004512,-0.005499,0.249940,0,0);}
.m33_c00159{transform:matrix(0.205150,0.004513,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205150,0.004513,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205150,0.004513,-0.005499,0.249940,0,0);}
.m0_c00159{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00159{transform:matrix(0.205650,0.004524,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205650,0.004524,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205650,0.004524,-0.005499,0.249940,0,0);}
.m8a_c00159{transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);}
.m8e_c00159{transform:matrix(0.206395,0.004541,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206395,0.004541,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206395,0.004541,-0.005499,0.249940,0,0);}
.m2f_c00159{transform:matrix(0.206495,0.004543,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206495,0.004543,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206495,0.004543,-0.005499,0.249940,0,0);}
.m2a_c00159{transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);}
.m7f_c00159{transform:matrix(0.206740,0.004548,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206740,0.004548,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206740,0.004548,-0.005499,0.249940,0,0);}
.m32_c00159{transform:matrix(0.206830,0.004550,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206830,0.004550,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206830,0.004550,-0.005499,0.249940,0,0);}
.ma9_c00159{transform:matrix(0.207370,0.004562,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207370,0.004562,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207370,0.004562,-0.005499,0.249940,0,0);}
.m18_c00159{transform:matrix(0.207769,0.005610,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207769,0.005610,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207769,0.005610,-0.006748,0.249909,0,0);}
.mb4_c00159{transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);}
.m5b_c00159{transform:matrix(0.208115,0.004579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208115,0.004579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208115,0.004579,-0.005499,0.249940,0,0);}
.m6d_c00159{transform:matrix(0.208759,0.004593,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208759,0.004593,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208759,0.004593,-0.005499,0.249940,0,0);}
.m20_c00159{transform:matrix(0.209299,0.004605,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209299,0.004605,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209299,0.004605,-0.005499,0.249940,0,0);}
.m6c_c00159{transform:matrix(0.209744,0.004614,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209744,0.004614,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209744,0.004614,-0.005499,0.249940,0,0);}
.m35_c00159{transform:matrix(0.209849,0.004617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209849,0.004617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209849,0.004617,-0.005499,0.249940,0,0);}
.m99_c00159{transform:matrix(0.210634,0.004634,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210634,0.004634,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210634,0.004634,-0.005499,0.249940,0,0);}
.m46_c00159{transform:matrix(0.210754,0.004637,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210754,0.004637,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210754,0.004637,-0.005499,0.249940,0,0);}
.me7_c00159{transform:matrix(0.211259,0.004648,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211259,0.004648,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211259,0.004648,-0.005499,0.249940,0,0);}
.m66_c00159{transform:matrix(0.211269,0.004648,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211269,0.004648,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211269,0.004648,-0.005499,0.249940,0,0);}
.m23_c00159{transform:matrix(0.212184,0.004668,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212184,0.004668,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212184,0.004668,-0.005499,0.249940,0,0);}
.mbc_c00159{transform:matrix(0.212259,0.004670,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212259,0.004670,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212259,0.004670,-0.005499,0.249940,0,0);}
.m6e_c00159{transform:matrix(0.212484,0.004675,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212484,0.004675,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212484,0.004675,-0.005499,0.249940,0,0);}
.mb6_c00159{transform:matrix(0.213088,0.004688,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213088,0.004688,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213088,0.004688,-0.005499,0.249940,0,0);}
.m7b_c00159{transform:matrix(0.213248,0.004691,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213248,0.004691,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213248,0.004691,-0.005499,0.249940,0,0);}
.m3e_c00159{transform:matrix(0.213968,0.004707,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213968,0.004707,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213968,0.004707,-0.005499,0.249940,0,0);}
.mf_c00159{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m57_c00159{transform:matrix(0.214933,0.004729,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214933,0.004729,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214933,0.004729,-0.005499,0.249940,0,0);}
.m29_c00159{transform:matrix(0.215028,0.004731,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215028,0.004731,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215028,0.004731,-0.005499,0.249940,0,0);}
.m54_c00159{transform:matrix(0.215813,0.004748,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215813,0.004748,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215813,0.004748,-0.005499,0.249940,0,0);}
.m27_c00159{transform:matrix(0.216038,0.004753,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216038,0.004753,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216038,0.004753,-0.005499,0.249940,0,0);}
.ma5_c00159{transform:matrix(0.216318,0.004759,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216318,0.004759,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216318,0.004759,-0.005499,0.249940,0,0);}
.m51_c00159{transform:matrix(0.216948,0.004773,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216948,0.004773,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216948,0.004773,-0.005499,0.249940,0,0);}
.m10_c00159{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.217426,0.005870,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217426,0.005870,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217426,0.005870,-0.006748,0.249909,0,0);}
.m53_c00159{transform:matrix(0.217622,0.004788,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217622,0.004788,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217622,0.004788,-0.005499,0.249940,0,0);}
.m4d_c00159{transform:matrix(0.217832,0.004792,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217832,0.004792,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217832,0.004792,-0.005499,0.249940,0,0);}
.m3c_c00159{transform:matrix(0.217867,0.004793,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217867,0.004793,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217867,0.004793,-0.005499,0.249940,0,0);}
.maf_c00159{transform:matrix(0.218042,0.004797,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218042,0.004797,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218042,0.004797,-0.005499,0.249940,0,0);}
.mad_c00159{transform:matrix(0.218232,0.004801,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218232,0.004801,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218232,0.004801,-0.005499,0.249940,0,0);}
.mc7_c00159{transform:matrix(0.218387,0.004805,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218387,0.004805,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218387,0.004805,-0.005499,0.249940,0,0);}
.mbe_c00159{transform:matrix(0.218732,0.004812,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218732,0.004812,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218732,0.004812,-0.005499,0.249940,0,0);}
.m25_c00159{transform:matrix(0.219307,0.004825,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219307,0.004825,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219307,0.004825,-0.005499,0.249940,0,0);}
.m5e_c00159{transform:matrix(0.221136,0.004865,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221136,0.004865,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221136,0.004865,-0.005499,0.249940,0,0);}
.mb0_c00159{transform:matrix(0.221191,0.004866,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221191,0.004866,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221191,0.004866,-0.005499,0.249940,0,0);}
.m95_c00159{transform:matrix(0.221416,0.004871,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221416,0.004871,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221416,0.004871,-0.005499,0.249940,0,0);}
.me5_c00159{transform:matrix(0.221686,0.004877,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221686,0.004877,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221686,0.004877,-0.005499,0.249940,0,0);}
.mc1_c00159{transform:matrix(0.221771,0.004879,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221771,0.004879,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221771,0.004879,-0.005499,0.249940,0,0);}
.m7c_c00159{transform:matrix(0.222011,0.004884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222011,0.004884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222011,0.004884,-0.005499,0.249940,0,0);}
.mc6_c00159{transform:matrix(0.222831,0.004902,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222831,0.004902,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222831,0.004902,-0.005499,0.249940,0,0);}
.m21_c00159{transform:matrix(0.222921,0.004904,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222921,0.004904,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222921,0.004904,-0.005499,0.249940,0,0);}
.mc5_c00159{transform:matrix(0.223586,0.004919,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223586,0.004919,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223586,0.004919,-0.005499,0.249940,0,0);}
.m42_c00159{transform:matrix(0.223596,0.004919,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223596,0.004919,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223596,0.004919,-0.005499,0.249940,0,0);}
.m97_c00159{transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);}
.m3_c00159{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m68_c00159{transform:matrix(0.224071,0.004930,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224071,0.004930,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224071,0.004930,-0.005499,0.249940,0,0);}
.m34_c00159{transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);}
.m1e_c00159{transform:matrix(0.224471,0.004938,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224471,0.004938,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224471,0.004938,-0.005499,0.249940,0,0);}
.m74_c00159{transform:matrix(0.224706,0.004944,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224706,0.004944,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224706,0.004944,-0.005499,0.249940,0,0);}
.m30_c00159{transform:matrix(0.224856,0.004947,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224856,0.004947,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224856,0.004947,-0.005499,0.249940,0,0);}
.m56_c00159{transform:matrix(0.225131,0.004953,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225131,0.004953,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225131,0.004953,-0.005499,0.249940,0,0);}
.m4c_c00159{transform:matrix(0.225690,0.004965,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225690,0.004965,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225690,0.004965,-0.005499,0.249940,0,0);}
.m67_c00159{transform:matrix(0.226270,0.004978,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226270,0.004978,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226270,0.004978,-0.005499,0.249940,0,0);}
.mf1_c00159{transform:matrix(0.226705,0.004988,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226705,0.004988,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226705,0.004988,-0.005499,0.249940,0,0);}
.m90_c00159{transform:matrix(0.226735,0.004988,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226735,0.004988,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226735,0.004988,-0.005499,0.249940,0,0);}
.m84_c00159{transform:matrix(0.227080,0.004996,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227080,0.004996,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227080,0.004996,-0.005499,0.249940,0,0);}
.m24_c00159{transform:matrix(0.227175,0.004998,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227175,0.004998,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227175,0.004998,-0.005499,0.249940,0,0);}
.mcf_c00159{transform:matrix(0.228055,0.005017,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228055,0.005017,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228055,0.005017,-0.005499,0.249940,0,0);}
.mb3_c00159{transform:matrix(0.228190,0.005020,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228190,0.005020,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228190,0.005020,-0.005499,0.249940,0,0);}
.m47_c00159{transform:matrix(0.229290,0.005044,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229290,0.005044,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229290,0.005044,-0.005499,0.249940,0,0);}
.me_c00159{transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.230084,0.005062,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230084,0.005062,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230084,0.005062,-0.005499,0.249940,0,0);}
.mac_c00159{transform:matrix(0.230699,0.005075,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230699,0.005075,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230699,0.005075,-0.005499,0.249940,0,0);}
.mc8_c00159{transform:matrix(0.230719,0.005076,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230719,0.005076,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230719,0.005076,-0.005499,0.249940,0,0);}
.m78_c00159{transform:matrix(0.231299,0.005089,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231299,0.005089,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231299,0.005089,-0.005499,0.249940,0,0);}
.mbd_c00159{transform:matrix(0.231774,0.005099,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231774,0.005099,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231774,0.005099,-0.005499,0.249940,0,0);}
.m94_c00159{transform:matrix(0.232139,0.005107,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232139,0.005107,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232139,0.005107,-0.005499,0.249940,0,0);}
.mf0_c00159{transform:matrix(0.232749,0.005120,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232749,0.005120,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232749,0.005120,-0.005499,0.249940,0,0);}
.m4b_c00159{transform:matrix(0.233054,0.005127,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233054,0.005127,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233054,0.005127,-0.005499,0.249940,0,0);}
.m22_c00159{transform:matrix(0.233593,0.005139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233593,0.005139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233593,0.005139,-0.005499,0.249940,0,0);}
.m50_c00159{transform:matrix(0.234913,0.005168,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234913,0.005168,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234913,0.005168,-0.005499,0.249940,0,0);}
.m2e_c00159{transform:matrix(0.235998,0.005192,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235998,0.005192,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235998,0.005192,-0.005499,0.249940,0,0);}
.mba_c00159{transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);}
.m4a_c00159{transform:matrix(0.236738,0.005208,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236738,0.005208,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236738,0.005208,-0.005499,0.249940,0,0);}
.m39_c00159{transform:matrix(0.236823,0.005210,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236823,0.005210,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236823,0.005210,-0.005499,0.249940,0,0);}
.m4e_c00159{transform:matrix(0.239152,0.005261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239152,0.005261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239152,0.005261,-0.005499,0.249940,0,0);}
.m9f_c00159{transform:matrix(0.239822,0.005276,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239822,0.005276,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239822,0.005276,-0.005499,0.249940,0,0);}
.ma8_c00159{transform:matrix(0.240712,0.005296,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240712,0.005296,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240712,0.005296,-0.005499,0.249940,0,0);}
.m65_c00159{transform:matrix(0.241452,0.005312,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241452,0.005312,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241452,0.005312,-0.005499,0.249940,0,0);}
.m62_c00159{transform:matrix(0.242226,0.005329,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242226,0.005329,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242226,0.005329,-0.005499,0.249940,0,0);}
.m7e_c00159{transform:matrix(0.243306,0.005353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243306,0.005353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243306,0.005353,-0.005499,0.249940,0,0);}
.m73_c00159{transform:matrix(0.243386,0.005354,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243386,0.005354,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243386,0.005354,-0.005499,0.249940,0,0);}
.ma3_c00159{transform:matrix(0.243606,0.005359,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243606,0.005359,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243606,0.005359,-0.005499,0.249940,0,0);}
.maa_c00159{transform:matrix(0.244756,0.005385,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244756,0.005385,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244756,0.005385,-0.005499,0.249940,0,0);}
.m9c_c00159{transform:matrix(0.247035,0.005435,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247035,0.005435,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247035,0.005435,-0.005499,0.249940,0,0);}
.m43_c00159{transform:matrix(0.251089,0.005524,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251089,0.005524,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251089,0.005524,-0.005499,0.249940,0,0);}
.m60_c00159{transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);}
.mb7_c00159{transform:matrix(0.255338,0.005617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255338,0.005617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255338,0.005617,-0.005499,0.249940,0,0);}
.m1d_c00159{transform:matrix(0.262387,0.005773,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262387,0.005773,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262387,0.005773,-0.005499,0.249940,0,0);}
.m38_c00159{transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);}
.m9d_c00159{transform:matrix(0.285581,0.006283,-0.005499,0.249940,0,0);-ms-transform:matrix(0.285581,0.006283,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.285581,0.006283,-0.005499,0.249940,0,0);}
.m49_c00159{transform:matrix(0.289490,0.006369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.289490,0.006369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.289490,0.006369,-0.005499,0.249940,0,0);}
.m58_c00159{transform:matrix(0.303422,0.006675,-0.005499,0.249940,0,0);-ms-transform:matrix(0.303422,0.006675,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.303422,0.006675,-0.005499,0.249940,0,0);}
.m5f_c00159{transform:matrix(0.326226,0.007177,-0.005499,0.249940,0,0);-ms-transform:matrix(0.326226,0.007177,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.326226,0.007177,-0.005499,0.249940,0,0);}
.m7a_c00159{transform:matrix(0.328765,0.007233,-0.005499,0.249940,0,0);-ms-transform:matrix(0.328765,0.007233,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.328765,0.007233,-0.005499,0.249940,0,0);}
.m37_c00159{transform:matrix(0.333699,0.007341,-0.005499,0.249940,0,0);-ms-transform:matrix(0.333699,0.007341,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.333699,0.007341,-0.005499,0.249940,0,0);}
.m1c_c00159{transform:matrix(0.362912,0.007984,-0.005499,0.249940,0,0);-ms-transform:matrix(0.362912,0.007984,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.362912,0.007984,-0.005499,0.249940,0,0);}
.m5a_c00159{transform:matrix(0.370550,0.008152,-0.005499,0.249940,0,0);-ms-transform:matrix(0.370550,0.008152,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.370550,0.008152,-0.005499,0.249940,0,0);}
.md8_c00159{transform:matrix(0.505298,0.011117,-0.005499,0.249940,0,0);-ms-transform:matrix(0.505298,0.011117,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.505298,0.011117,-0.005499,0.249940,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:0.000000px;}
.fc0_c00159{color:transparent;}
.fsa_c00159{font-size:54.613212px;}
.fsd_c00159{font-size:55.663466px;}
.fs4_c00159{font-size:57.763974px;}
.fs5_c00159{font-size:58.814228px;}
.fs9_c00159{font-size:59.864482px;}
.fs7_c00159{font-size:60.914736px;}
.fs3_c00159{font-size:60.922194px;}
.fs8_c00159{font-size:61.964990px;}
.fs6_c00159{font-size:63.015244px;}
.fs2_c00159{font-size:64.050000px;}
.fse_c00159{font-size:64.065498px;}
.fs0_c00159{font-size:66.150000px;}
.fsb_c00159{font-size:66.166006px;}
.fsf_c00159{font-size:67.216260px;}
.fs10_c00159{font-size:68.266515px;}
.fsc_c00159{font-size:69.316769px;}
.fs11_c00159{font-size:70.367023px;}
.fs1_c00159{font-size:75.600000px;}
.y0_c00159{bottom:0.000000px;}
.yf4_c00159{bottom:27.961506px;}
.yf3_c00159{bottom:28.913700px;}
.yf2_c00159{bottom:29.804940px;}
.yf1_c00159{bottom:30.098637px;}
.yf0_c00159{bottom:31.581018px;}
.yef_c00159{bottom:32.084952px;}
.yee_c00159{bottom:32.555472px;}
.yed_c00159{bottom:33.390081px;}
.yec_c00159{bottom:33.901440px;}
.yeb_c00159{bottom:44.658951px;}
.yea_c00159{bottom:45.237108px;}
.ye9_c00159{bottom:46.219803px;}
.ye8_c00159{bottom:47.657487px;}
.ye7_c00159{bottom:48.775842px;}
.ye6_c00159{bottom:49.292340px;}
.ye5_c00159{bottom:61.622052px;}
.ye4_c00159{bottom:63.871383px;}
.ye3_c00159{bottom:64.155171px;}
.ye2_c00159{bottom:65.282814px;}
.ye1_c00159{bottom:65.687211px;}
.ye0_c00159{bottom:66.584541px;}
.ydf_c00159{bottom:67.485303px;}
.yde_c00159{bottom:68.008413px;}
.ydd_c00159{bottom:68.468166px;}
.ydc_c00159{bottom:80.525892px;}
.ydb_c00159{bottom:80.968917px;}
.yda_c00159{bottom:81.474081px;}
.yd9_c00159{bottom:82.621260px;}
.yd8_c00159{bottom:83.655480px;}
.yd7_c00159{bottom:84.386331px;}
.yd6_c00159{bottom:84.833019px;}
.yd5_c00159{bottom:86.021118px;}
.yd4_c00159{bottom:95.223246px;}
.yd3_c00159{bottom:96.150156px;}
.yd2_c00159{bottom:97.154241px;}
.yd1_c00159{bottom:97.684371px;}
.yd0_c00159{bottom:98.520594px;}
.ycf_c00159{bottom:99.521841px;}
.yce_c00159{bottom:100.067445px;}
.ycd_c00159{bottom:101.313234px;}
.ycc_c00159{bottom:103.039611px;}
.ycb_c00159{bottom:113.181459px;}
.yca_c00159{bottom:113.686779px;}
.yc9_c00159{bottom:115.040937px;}
.yc8_c00159{bottom:115.351887px;}
.yc7_c00159{bottom:116.809227px;}
.yc6_c00159{bottom:117.138936px;}
.yc5_c00159{bottom:117.990348px;}
.yc4_c00159{bottom:119.466975px;}
.yc3_c00159{bottom:120.050004px;}
.yc2_c00159{bottom:131.735901px;}
.yc1_c00159{bottom:132.332598px;}
.yc0_c00159{bottom:132.645324px;}
.ybf_c00159{bottom:134.623188px;}
.ybe_c00159{bottom:135.908307px;}
.ybd_c00159{bottom:136.434510px;}
.ybc_c00159{bottom:137.605830px;}
.ybb_c00159{bottom:148.219479px;}
.yba_c00159{bottom:148.722669px;}
.yb9_c00159{bottom:150.219321px;}
.yb8_c00159{bottom:151.240416px;}
.yb7_c00159{bottom:152.608128px;}
.yb6_c00159{bottom:153.140748px;}
.yb5_c00159{bottom:153.749139px;}
.yb4_c00159{bottom:155.161905px;}
.yb3_c00159{bottom:166.328628px;}
.yb2_c00159{bottom:167.634153px;}
.yb1_c00159{bottom:167.926959px;}
.yb0_c00159{bottom:169.484022px;}
.yaf_c00159{bottom:169.967049px;}
.yae_c00159{bottom:170.415342px;}
.yad_c00159{bottom:171.623397px;}
.yac_c00159{bottom:172.444245px;}
.yab_c00159{bottom:183.880980px;}
.yaa_c00159{bottom:185.552061px;}
.ya9_c00159{bottom:186.099045px;}
.ya8_c00159{bottom:187.084827px;}
.ya7_c00159{bottom:187.566078px;}
.ya6_c00159{bottom:188.956407px;}
.ya5_c00159{bottom:190.540536px;}
.ya4_c00159{bottom:200.854161px;}
.ya3_c00159{bottom:201.797511px;}
.ya2_c00159{bottom:202.567962px;}
.ya1_c00159{bottom:204.288774px;}
.ya0_c00159{bottom:206.314887px;}
.y9f_c00159{bottom:206.935764px;}
.y9e_c00159{bottom:208.099161px;}
.y9d_c00159{bottom:217.919178px;}
.y9c_c00159{bottom:218.626263px;}
.y9b_c00159{bottom:220.937157px;}
.y9a_c00159{bottom:222.316158px;}
.y99_c00159{bottom:222.753468px;}
.y98_c00159{bottom:222.981228px;}
.y97_c00159{bottom:225.221124px;}
.y96_c00159{bottom:225.924993px;}
.y95_c00159{bottom:235.724373px;}
.y94_c00159{bottom:237.924210px;}
.y93_c00159{bottom:238.492695px;}
.y92_c00159{bottom:239.580687px;}
.y91_c00159{bottom:240.317568px;}
.y90_c00159{bottom:242.686692px;}
.y8f_c00159{bottom:243.745287px;}
.y8e_c00159{bottom:254.109267px;}
.y8d_c00159{bottom:254.605017px;}
.y8c_c00159{bottom:256.689192px;}
.y8b_c00159{bottom:257.273349px;}
.y8a_c00159{bottom:258.045093px;}
.y89_c00159{bottom:258.367146px;}
.y88_c00159{bottom:259.312140px;}
.y87_c00159{bottom:259.986123px;}
.y86_c00159{bottom:261.298884px;}
.y85_c00159{bottom:270.086577px;}
.y84_c00159{bottom:273.417072px;}
.y83_c00159{bottom:274.121088px;}
.y82_c00159{bottom:274.735467px;}
.y81_c00159{bottom:276.349050px;}
.y80_c00159{bottom:277.240011px;}
.y7f_c00159{bottom:278.584980px;}
.y7e_c00159{bottom:287.722656px;}
.y7d_c00159{bottom:288.087894px;}
.y7c_c00159{bottom:290.089323px;}
.y7b_c00159{bottom:292.238589px;}
.y7a_c00159{bottom:292.623210px;}
.y79_c00159{bottom:292.913127px;}
.y78_c00159{bottom:295.600131px;}
.y77_c00159{bottom:304.722984px;}
.y76_c00159{bottom:305.306316px;}
.y75_c00159{bottom:306.327081px;}
.y74_c00159{bottom:306.853218px;}
.y73_c00159{bottom:308.747397px;}
.y72_c00159{bottom:309.280974px;}
.y71_c00159{bottom:309.637440px;}
.y70_c00159{bottom:311.576673px;}
.y6f_c00159{bottom:312.613440px;}
.y6e_c00159{bottom:322.760160px;}
.y6d_c00159{bottom:325.237800px;}
.y6c_c00159{bottom:326.871780px;}
.y6b_c00159{bottom:327.563823px;}
.y6a_c00159{bottom:328.076928px;}
.y69_c00159{bottom:329.086623px;}
.y68_c00159{bottom:339.625623px;}
.y67_c00159{bottom:341.778318px;}
.y66_c00159{bottom:342.370185px;}
.y65_c00159{bottom:342.714894px;}
.y64_c00159{bottom:343.544712px;}
.y63_c00159{bottom:344.182377px;}
.y62_c00159{bottom:346.640697px;}
.y61_c00159{bottom:357.750873px;}
.y60_c00159{bottom:358.179804px;}
.y5f_c00159{bottom:358.859613px;}
.y5e_c00159{bottom:360.895296px;}
.y5d_c00159{bottom:362.153316px;}
.y5c_c00159{bottom:362.600709px;}
.y5b_c00159{bottom:363.385515px;}
.y5a_c00159{bottom:377.224083px;}
.y59_c00159{bottom:381.208791px;}
.y58_c00159{bottom:390.345108px;}
.y57_c00159{bottom:391.719360px;}
.y56_c00159{bottom:393.171237px;}
.y55_c00159{bottom:393.958602px;}
.y54_c00159{bottom:394.843023px;}
.y53_c00159{bottom:397.560681px;}
.y52_c00159{bottom:398.123007px;}
.y51_c00159{bottom:399.034050px;}
.y50_c00159{bottom:409.801305px;}
.y4f_c00159{bottom:410.662371px;}
.y4e_c00159{bottom:411.101754px;}
.y4d_c00159{bottom:412.698414px;}
.y4c_c00159{bottom:413.723604px;}
.y4b_c00159{bottom:414.975141px;}
.y4a_c00159{bottom:415.397319px;}
.y49_c00159{bottom:417.129003px;}
.y48_c00159{bottom:426.232473px;}
.y47_c00159{bottom:428.078832px;}
.y46_c00159{bottom:428.673816px;}
.y45_c00159{bottom:429.562515px;}
.y44_c00159{bottom:430.046022px;}
.y43_c00159{bottom:431.720703px;}
.y42_c00159{bottom:433.604100px;}
.y41_c00159{bottom:442.251180px;}
.y40_c00159{bottom:442.882632px;}
.y3f_c00159{bottom:444.676809px;}
.y3e_c00159{bottom:447.044439px;}
.y3d_c00159{bottom:447.871413px;}
.y3c_c00159{bottom:448.401252px;}
.y3b_c00159{bottom:450.892896px;}
.y3a_c00159{bottom:460.085442px;}
.y39_c00159{bottom:461.750634px;}
.y38_c00159{bottom:462.364569px;}
.y37_c00159{bottom:463.769235px;}
.y36_c00159{bottom:464.287680px;}
.y35_c00159{bottom:466.213941px;}
.y34_c00159{bottom:466.838499px;}
.y33_c00159{bottom:467.512329px;}
.y32_c00159{bottom:468.716364px;}
.y31_c00159{bottom:477.466401px;}
.y30_c00159{bottom:477.951756px;}
.y2f_c00159{bottom:479.512896px;}
.y2e_c00159{bottom:480.231609px;}
.y2d_c00159{bottom:481.103661px;}
.y2c_c00159{bottom:482.590968px;}
.y2b_c00159{bottom:484.830210px;}
.y2a_c00159{bottom:486.002442px;}
.y29_c00159{bottom:495.729114px;}
.y28_c00159{bottom:496.136292px;}
.y27_c00159{bottom:497.111163px;}
.y26_c00159{bottom:497.765943px;}
.y25_c00159{bottom:499.302534px;}
.y24_c00159{bottom:500.896815px;}
.y23_c00159{bottom:501.935199px;}
.y22_c00159{bottom:513.837426px;}
.y21_c00159{bottom:514.490793px;}
.y20_c00159{bottom:515.077005px;}
.y1f_c00159{bottom:515.608668px;}
.y1e_c00159{bottom:516.862371px;}
.y1d_c00159{bottom:517.260780px;}
.y1c_c00159{bottom:517.866000px;}
.y1b_c00159{bottom:529.162464px;}
.y1a_c00159{bottom:529.577832px;}
.y19_c00159{bottom:530.430438px;}
.y18_c00159{bottom:531.880621px;}
.y17_c00159{bottom:532.541622px;}
.y16_c00159{bottom:533.012151px;}
.y15_c00159{bottom:534.252383px;}
.y14_c00159{bottom:534.803466px;}
.y13_c00159{bottom:535.455597px;}
.y12_c00159{bottom:536.497500px;}
.y11_c00159{bottom:546.322500px;}
.y10_c00159{bottom:548.025000px;}
.yf_c00159{bottom:548.491500px;}
.ye_c00159{bottom:548.809500px;}
.yd_c00159{bottom:551.545500px;}
.yc_c00159{bottom:552.166500px;}
.yb_c00159{bottom:552.697500px;}
.ya_c00159{bottom:563.728500px;}
.y9_c00159{bottom:564.541500px;}
.y8_c00159{bottom:564.772500px;}
.y7_c00159{bottom:565.531500px;}
.y6_c00159{bottom:566.262000px;}
.y5_c00159{bottom:566.530500px;}
.y4_c00159{bottom:566.931000px;}
.y3_c00159{bottom:567.115500px;}
.y2_c00159{bottom:567.543000px;}
.y1_c00159{bottom:582.360000px;}
.hc_c00159{height:54.613212px;}
.hf_c00159{height:55.663466px;}
.h6_c00159{height:57.763974px;}
.h7_c00159{height:58.814228px;}
.hb_c00159{height:59.864482px;}
.h9_c00159{height:60.914736px;}
.h5_c00159{height:60.922194px;}
.ha_c00159{height:61.964990px;}
.h8_c00159{height:63.015244px;}
.h4_c00159{height:64.050000px;}
.h10_c00159{height:64.065498px;}
.h2_c00159{height:66.150000px;}
.hd_c00159{height:66.166006px;}
.h11_c00159{height:67.216260px;}
.h12_c00159{height:68.266515px;}
.he_c00159{height:69.316769px;}
.h13_c00159{height:70.367023px;}
.h3_c00159{height:75.600000px;}
.h0_c00159{height:623.100000px;}
.h1_c00159{height:623.250000px;}
.w1_c00159{width:383.250000px;}
.w0_c00159{width:383.400000px;}
.x0_c00159{left:0.000000px;}
.x3b_c00159{left:39.905679px;}
.x79_c00159{left:41.823279px;}
.x6d_c00159{left:42.855618px;}
.x45_c00159{left:44.013804px;}
.x2c_c00159{left:46.117557px;}
.x3_c00159{left:48.118500px;}
.x7a_c00159{left:61.834350px;}
.x74_c00159{left:66.397098px;}
.x61_c00159{left:68.193933px;}
.x46_c00159{left:70.442667px;}
.xc_c00159{left:71.661000px;}
.x20_c00159{left:73.118580px;}
.x1a_c00159{left:75.021000px;}
.x4_c00159{left:78.672000px;}
.x5e_c00159{left:81.490422px;}
.x4f_c00159{left:82.620315px;}
.x26_c00159{left:85.247820px;}
.x12_c00159{left:86.628000px;}
.x55_c00159{left:88.489113px;}
.x5_c00159{left:91.891500px;}
.x1b_c00159{left:93.130500px;}
.x6e_c00159{left:95.202876px;}
.xd_c00159{left:99.897000px;}
.x3c_c00159{left:101.769528px;}
.x47_c00159{left:103.114215px;}
.x4c_c00159{left:105.407886px;}
.x2d_c00159{left:106.713078px;}
.x73_c00159{left:108.172842px;}
.x13_c00159{left:110.781000px;}
.x67_c00159{left:112.041207px;}
.x3d_c00159{left:116.866548px;}
.x56_c00159{left:118.209399px;}
.x6_c00159{left:120.490500px;}
.x48_c00159{left:121.744890px;}
.x7b_c00159{left:123.758997px;}
.x2e_c00159{left:126.848085px;}
.x32_c00159{left:128.306601px;}
.x14_c00159{left:131.191500px;}
.x4d_c00159{left:133.112571px;}
.x53_c00159{left:136.328898px;}
.x6f_c00159{left:137.448723px;}
.x7_c00159{left:139.687500px;}
.x49_c00159{left:143.084544px;}
.x33_c00159{left:145.977999px;}
.x1c_c00159{left:150.117000px;}
.x59_c00159{left:151.712196px;}
.x62_c00159{left:153.278832px;}
.x50_c00159{left:154.463928px;}
.x27_c00159{left:157.494531px;}
.x54_c00159{left:159.554301px;}
.x3e_c00159{left:161.544141px;}
.x5a_c00159{left:163.622376px;}
.x5f_c00159{left:166.121268px;}
.x4a_c00159{left:168.590361px;}
.x21_c00159{left:170.615355px;}
.x57_c00159{left:171.976428px;}
.x1d_c00159{left:174.283500px;}
.x42_c00159{left:176.071497px;}
.x15_c00159{left:177.126000px;}
.x64_c00159{left:179.462472px;}
.x1_c00159{left:181.440000px;}
.x6a_c00159{left:184.165413px;}
.x36_c00159{left:187.646688px;}
.x2f_c00159{left:188.961276px;}
.x8_c00159{left:191.856000px;}
.x68_c00159{left:193.429425px;}
.x16_c00159{left:194.553000px;}
.x78_c00159{left:196.682412px;}
.x3f_c00159{left:198.184323px;}
.x1e_c00159{left:200.929500px;}
.x43_c00159{left:203.720925px;}
.x28_c00159{left:205.453527px;}
.x37_c00159{left:206.963901px;}
.x5b_c00159{left:213.862365px;}
.x4b_c00159{left:215.565759px;}
.x17_c00159{left:219.034500px;}
.x7e_c00159{left:222.886650px;}
.xe_c00159{left:224.227500px;}
.x70_c00159{left:225.907488px;}
.x22_c00159{left:227.499585px;}
.x7c_c00159{left:229.341654px;}
.x1f_c00159{left:230.628000px;}
.x29_c00159{left:233.563950px;}
.x69_c00159{left:236.259468px;}
.xf_c00159{left:238.681500px;}
.x65_c00159{left:240.900354px;}
.x38_c00159{left:242.516058px;}
.x9_c00159{left:246.058500px;}
.x76_c00159{left:248.238081px;}
.x23_c00159{left:251.736912px;}
.x40_c00159{left:255.206799px;}
.x2a_c00159{left:256.750863px;}
.x6b_c00159{left:258.283530px;}
.x10_c00159{left:259.855500px;}
.xa_c00159{left:262.597500px;}
.x39_c00159{left:266.286474px;}
.x66_c00159{left:268.417224px;}
.x30_c00159{left:270.788073px;}
.x18_c00159{left:272.745000px;}
.x51_c00159{left:277.034931px;}
.x7f_c00159{left:279.271371px;}
.x71_c00159{left:281.317383px;}
.x24_c00159{left:287.863452px;}
.x5c_c00159{left:291.066384px;}
.x7d_c00159{left:292.572747px;}
.x63_c00159{left:295.584420px;}
.x4e_c00159{left:297.561714px;}
.x72_c00159{left:299.960337px;}
.x41_c00159{left:301.630161px;}
.x25_c00159{left:302.960802px;}
.x19_c00159{left:304.323000px;}
.x2b_c00159{left:307.110897px;}
.x5d_c00159{left:309.439371px;}
.x34_c00159{left:312.234228px;}
.x52_c00159{left:314.838273px;}
.x44_c00159{left:316.673109px;}
.xb_c00159{left:320.655000px;}
.x2_c00159{left:323.460000px;}
.x31_c00159{left:324.513447px;}
.x58_c00159{left:326.944170px;}
.x75_c00159{left:328.363614px;}
.x60_c00159{left:330.222153px;}
.x35_c00159{left:333.296532px;}
.x6c_c00159{left:334.345680px;}
.x11_c00159{left:337.231500px;}
.x3a_c00159{left:340.116090px;}
.x77_c00159{left:342.917265px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:0.000000pt;}
.fsa_c00159{font-size:48.545077pt;}
.fsd_c00159{font-size:49.478636pt;}
.fs4_c00159{font-size:51.345754pt;}
.fs5_c00159{font-size:52.279314pt;}
.fs9_c00159{font-size:53.212873pt;}
.fs7_c00159{font-size:54.146432pt;}
.fs3_c00159{font-size:54.153061pt;}
.fs8_c00159{font-size:55.079991pt;}
.fs6_c00159{font-size:56.013550pt;}
.fs2_c00159{font-size:56.933333pt;}
.fse_c00159{font-size:56.947110pt;}
.fs0_c00159{font-size:58.800000pt;}
.fsb_c00159{font-size:58.814228pt;}
.fsf_c00159{font-size:59.747787pt;}
.fs10_c00159{font-size:60.681346pt;}
.fsc_c00159{font-size:61.614905pt;}
.fs11_c00159{font-size:62.548465pt;}
.fs1_c00159{font-size:67.200000pt;}
.y0_c00159{bottom:0.000000pt;}
.yf4_c00159{bottom:24.854672pt;}
.yf3_c00159{bottom:25.701067pt;}
.yf2_c00159{bottom:26.493280pt;}
.yf1_c00159{bottom:26.754344pt;}
.yf0_c00159{bottom:28.072016pt;}
.yef_c00159{bottom:28.519957pt;}
.yee_c00159{bottom:28.938197pt;}
.yed_c00159{bottom:29.680072pt;}
.yec_c00159{bottom:30.134613pt;}
.yeb_c00159{bottom:39.696845pt;}
.yea_c00159{bottom:40.210763pt;}
.ye9_c00159{bottom:41.084269pt;}
.ye8_c00159{bottom:42.362211pt;}
.ye7_c00159{bottom:43.356304pt;}
.ye6_c00159{bottom:43.815413pt;}
.ye5_c00159{bottom:54.775157pt;}
.ye4_c00159{bottom:56.774563pt;}
.ye3_c00159{bottom:57.026819pt;}
.ye2_c00159{bottom:58.029168pt;}
.ye1_c00159{bottom:58.388632pt;}
.ye0_c00159{bottom:59.186259pt;}
.ydf_c00159{bottom:59.986936pt;}
.yde_c00159{bottom:60.451923pt;}
.ydd_c00159{bottom:60.860592pt;}
.ydc_c00159{bottom:71.578571pt;}
.ydb_c00159{bottom:71.972371pt;}
.yda_c00159{bottom:72.421405pt;}
.yd9_c00159{bottom:73.441120pt;}
.yd8_c00159{bottom:74.360427pt;}
.yd7_c00159{bottom:75.010072pt;}
.yd6_c00159{bottom:75.407128pt;}
.yd5_c00159{bottom:76.463216pt;}
.yd4_c00159{bottom:84.642885pt;}
.yd3_c00159{bottom:85.466805pt;}
.yd2_c00159{bottom:86.359325pt;}
.yd1_c00159{bottom:86.830552pt;}
.yd0_c00159{bottom:87.573861pt;}
.ycf_c00159{bottom:88.463859pt;}
.yce_c00159{bottom:88.948840pt;}
.ycd_c00159{bottom:90.056208pt;}
.ycc_c00159{bottom:91.590765pt;}
.ycb_c00159{bottom:100.605741pt;}
.yca_c00159{bottom:101.054915pt;}
.yc9_c00159{bottom:102.258611pt;}
.yc8_c00159{bottom:102.535011pt;}
.yc7_c00159{bottom:103.830424pt;}
.yc6_c00159{bottom:104.123499pt;}
.yc5_c00159{bottom:104.880309pt;}
.yc4_c00159{bottom:106.192867pt;}
.yc3_c00159{bottom:106.711115pt;}
.yc2_c00159{bottom:117.098579pt;}
.yc1_c00159{bottom:117.628976pt;}
.yc0_c00159{bottom:117.906955pt;}
.ybf_c00159{bottom:119.665056pt;}
.ybe_c00159{bottom:120.807384pt;}
.ybd_c00159{bottom:121.275120pt;}
.ybc_c00159{bottom:122.316293pt;}
.ybb_c00159{bottom:131.750648pt;}
.yba_c00159{bottom:132.197928pt;}
.yb9_c00159{bottom:133.528285pt;}
.yb8_c00159{bottom:134.435925pt;}
.yb7_c00159{bottom:135.651669pt;}
.yb6_c00159{bottom:136.125109pt;}
.yb5_c00159{bottom:136.665901pt;}
.yb4_c00159{bottom:137.921693pt;}
.yb3_c00159{bottom:147.847669pt;}
.yb2_c00159{bottom:149.008136pt;}
.yb1_c00159{bottom:149.268408pt;}
.yb0_c00159{bottom:150.652464pt;}
.yaf_c00159{bottom:151.081821pt;}
.yae_c00159{bottom:151.480304pt;}
.yad_c00159{bottom:152.554131pt;}
.yac_c00159{bottom:153.283773pt;}
.yab_c00159{bottom:163.449760pt;}
.yaa_c00159{bottom:164.935165pt;}
.ya9_c00159{bottom:165.421373pt;}
.ya8_c00159{bottom:166.297624pt;}
.ya7_c00159{bottom:166.725403pt;}
.ya6_c00159{bottom:167.961251pt;}
.ya5_c00159{bottom:169.369365pt;}
.ya4_c00159{bottom:178.537032pt;}
.ya3_c00159{bottom:179.375565pt;}
.ya2_c00159{bottom:180.060411pt;}
.ya1_c00159{bottom:181.590021pt;}
.ya0_c00159{bottom:183.391011pt;}
.y9f_c00159{bottom:183.942901pt;}
.y9e_c00159{bottom:184.977032pt;}
.y9d_c00159{bottom:193.705936pt;}
.y9c_c00159{bottom:194.334456pt;}
.y9b_c00159{bottom:196.388584pt;}
.y9a_c00159{bottom:197.614363pt;}
.y99_c00159{bottom:198.003083pt;}
.y98_c00159{bottom:198.205536pt;}
.y97_c00159{bottom:200.196555pt;}
.y96_c00159{bottom:200.822216pt;}
.y95_c00159{bottom:209.532776pt;}
.y94_c00159{bottom:211.488187pt;}
.y93_c00159{bottom:211.993507pt;}
.y92_c00159{bottom:212.960611pt;}
.y91_c00159{bottom:213.615616pt;}
.y90_c00159{bottom:215.721504pt;}
.y8f_c00159{bottom:216.662477pt;}
.y8e_c00159{bottom:225.874904pt;}
.y8d_c00159{bottom:226.315571pt;}
.y8c_c00159{bottom:228.168171pt;}
.y8b_c00159{bottom:228.687421pt;}
.y8a_c00159{bottom:229.373416pt;}
.y89_c00159{bottom:229.659685pt;}
.y88_c00159{bottom:230.499680pt;}
.y87_c00159{bottom:231.098776pt;}
.y86_c00159{bottom:232.265675pt;}
.y85_c00159{bottom:240.076957pt;}
.y84_c00159{bottom:243.037397pt;}
.y83_c00159{bottom:243.663189pt;}
.y82_c00159{bottom:244.209304pt;}
.y81_c00159{bottom:245.643600pt;}
.y80_c00159{bottom:246.435565pt;}
.y7f_c00159{bottom:247.631093pt;}
.y7e_c00159{bottom:255.753472pt;}
.y7d_c00159{bottom:256.078128pt;}
.y7c_c00159{bottom:257.857176pt;}
.y7b_c00159{bottom:259.767635pt;}
.y7a_c00159{bottom:260.109520pt;}
.y79_c00159{bottom:260.367224pt;}
.y78_c00159{bottom:262.755672pt;}
.y77_c00159{bottom:270.864875pt;}
.y76_c00159{bottom:271.383392pt;}
.y75_c00159{bottom:272.290739pt;}
.y74_c00159{bottom:272.758416pt;}
.y73_c00159{bottom:274.442131pt;}
.y72_c00159{bottom:274.916421pt;}
.y71_c00159{bottom:275.233280pt;}
.y70_c00159{bottom:276.957043pt;}
.y6f_c00159{bottom:277.878613pt;}
.y6e_c00159{bottom:286.897920pt;}
.y6d_c00159{bottom:289.100267pt;}
.y6c_c00159{bottom:290.552693pt;}
.y6b_c00159{bottom:291.167843pt;}
.y6a_c00159{bottom:291.623936pt;}
.y69_c00159{bottom:292.521443pt;}
.y68_c00159{bottom:301.889443pt;}
.y67_c00159{bottom:303.802949pt;}
.y66_c00159{bottom:304.329053pt;}
.y65_c00159{bottom:304.635461pt;}
.y64_c00159{bottom:305.373077pt;}
.y63_c00159{bottom:305.939891pt;}
.y62_c00159{bottom:308.125064pt;}
.y61_c00159{bottom:318.000776pt;}
.y60_c00159{bottom:318.382048pt;}
.y5f_c00159{bottom:318.986323pt;}
.y5e_c00159{bottom:320.795819pt;}
.y5d_c00159{bottom:321.914059pt;}
.y5c_c00159{bottom:322.311741pt;}
.y5b_c00159{bottom:323.009347pt;}
.y5a_c00159{bottom:335.310296pt;}
.y59_c00159{bottom:338.852259pt;}
.y58_c00159{bottom:346.973429pt;}
.y57_c00159{bottom:348.194987pt;}
.y56_c00159{bottom:349.485544pt;}
.y55_c00159{bottom:350.185424pt;}
.y54_c00159{bottom:350.971576pt;}
.y53_c00159{bottom:353.387272pt;}
.y52_c00159{bottom:353.887117pt;}
.y51_c00159{bottom:354.696933pt;}
.y50_c00159{bottom:364.267827pt;}
.y4f_c00159{bottom:365.033219pt;}
.y4e_c00159{bottom:365.423781pt;}
.y4d_c00159{bottom:366.843035pt;}
.y4c_c00159{bottom:367.754315pt;}
.y4b_c00159{bottom:368.866792pt;}
.y4a_c00159{bottom:369.242061pt;}
.y49_c00159{bottom:370.781336pt;}
.y48_c00159{bottom:378.873309pt;}
.y47_c00159{bottom:380.514517pt;}
.y46_c00159{bottom:381.043392pt;}
.y45_c00159{bottom:381.833347pt;}
.y44_c00159{bottom:382.263131pt;}
.y43_c00159{bottom:383.751736pt;}
.y42_c00159{bottom:385.425867pt;}
.y41_c00159{bottom:393.112160pt;}
.y40_c00159{bottom:393.673451pt;}
.y3f_c00159{bottom:395.268275pt;}
.y3e_c00159{bottom:397.372835pt;}
.y3d_c00159{bottom:398.107923pt;}
.y3c_c00159{bottom:398.578891pt;}
.y3b_c00159{bottom:400.793685pt;}
.y3a_c00159{bottom:408.964837pt;}
.y39_c00159{bottom:410.445008pt;}
.y38_c00159{bottom:410.990728pt;}
.y37_c00159{bottom:412.239320pt;}
.y36_c00159{bottom:412.700160pt;}
.y35_c00159{bottom:414.412392pt;}
.y34_c00159{bottom:414.967555pt;}
.y33_c00159{bottom:415.566515pt;}
.y32_c00159{bottom:416.636768pt;}
.y31_c00159{bottom:424.414579pt;}
.y30_c00159{bottom:424.846005pt;}
.y2f_c00159{bottom:426.233685pt;}
.y2e_c00159{bottom:426.872541pt;}
.y2d_c00159{bottom:427.647699pt;}
.y2c_c00159{bottom:428.969749pt;}
.y2b_c00159{bottom:430.960187pt;}
.y2a_c00159{bottom:432.002171pt;}
.y29_c00159{bottom:440.648101pt;}
.y28_c00159{bottom:441.010037pt;}
.y27_c00159{bottom:441.876589pt;}
.y26_c00159{bottom:442.458616pt;}
.y25_c00159{bottom:443.824475pt;}
.y24_c00159{bottom:445.241613pt;}
.y23_c00159{bottom:446.164621pt;}
.y22_c00159{bottom:456.744379pt;}
.y21_c00159{bottom:457.325149pt;}
.y20_c00159{bottom:457.846227pt;}
.y1f_c00159{bottom:458.318816pt;}
.y1e_c00159{bottom:459.433219pt;}
.y1d_c00159{bottom:459.787360pt;}
.y1c_c00159{bottom:460.325333pt;}
.y1b_c00159{bottom:470.366635pt;}
.y1a_c00159{bottom:470.735851pt;}
.y19_c00159{bottom:471.493723pt;}
.y18_c00159{bottom:472.782775pt;}
.y17_c00159{bottom:473.370331pt;}
.y16_c00159{bottom:473.788579pt;}
.y15_c00159{bottom:474.891007pt;}
.y14_c00159{bottom:475.380859pt;}
.y13_c00159{bottom:475.960531pt;}
.y12_c00159{bottom:476.886667pt;}
.y11_c00159{bottom:485.620000pt;}
.y10_c00159{bottom:487.133333pt;}
.yf_c00159{bottom:487.548000pt;}
.ye_c00159{bottom:487.830667pt;}
.yd_c00159{bottom:490.262667pt;}
.yc_c00159{bottom:490.814667pt;}
.yb_c00159{bottom:491.286667pt;}
.ya_c00159{bottom:501.092000pt;}
.y9_c00159{bottom:501.814667pt;}
.y8_c00159{bottom:502.020000pt;}
.y7_c00159{bottom:502.694667pt;}
.y6_c00159{bottom:503.344000pt;}
.y5_c00159{bottom:503.582667pt;}
.y4_c00159{bottom:503.938667pt;}
.y3_c00159{bottom:504.102667pt;}
.y2_c00159{bottom:504.482667pt;}
.y1_c00159{bottom:517.653333pt;}
.hc_c00159{height:48.545077pt;}
.hf_c00159{height:49.478636pt;}
.h6_c00159{height:51.345754pt;}
.h7_c00159{height:52.279314pt;}
.hb_c00159{height:53.212873pt;}
.h9_c00159{height:54.146432pt;}
.h5_c00159{height:54.153061pt;}
.ha_c00159{height:55.079991pt;}
.h8_c00159{height:56.013550pt;}
.h4_c00159{height:56.933333pt;}
.h10_c00159{height:56.947110pt;}
.h2_c00159{height:58.800000pt;}
.hd_c00159{height:58.814228pt;}
.h11_c00159{height:59.747787pt;}
.h12_c00159{height:60.681346pt;}
.he_c00159{height:61.614905pt;}
.h13_c00159{height:62.548465pt;}
.h3_c00159{height:67.200000pt;}
.h0_c00159{height:553.866667pt;}
.h1_c00159{height:554.000000pt;}
.w1_c00159{width:340.666667pt;}
.w0_c00159{width:340.800000pt;}
.x0_c00159{left:0.000000pt;}
.x3b_c00159{left:35.471715pt;}
.x79_c00159{left:37.176248pt;}
.x6d_c00159{left:38.093883pt;}
.x45_c00159{left:39.123381pt;}
.x2c_c00159{left:40.993384pt;}
.x3_c00159{left:42.772000pt;}
.x7a_c00159{left:54.963867pt;}
.x74_c00159{left:59.019643pt;}
.x61_c00159{left:60.616829pt;}
.x46_c00159{left:62.615704pt;}
.xc_c00159{left:63.698667pt;}
.x20_c00159{left:64.994293pt;}
.x1a_c00159{left:66.685333pt;}
.x4_c00159{left:69.930667pt;}
.x5e_c00159{left:72.435931pt;}
.x4f_c00159{left:73.440280pt;}
.x26_c00159{left:75.775840pt;}
.x12_c00159{left:77.002667pt;}
.x55_c00159{left:78.656989pt;}
.x5_c00159{left:81.681333pt;}
.x1b_c00159{left:82.782667pt;}
.x6e_c00159{left:84.624779pt;}
.xd_c00159{left:88.797333pt;}
.x3c_c00159{left:90.461803pt;}
.x47_c00159{left:91.657080pt;}
.x4c_c00159{left:93.695899pt;}
.x2d_c00159{left:94.856069pt;}
.x73_c00159{left:96.153637pt;}
.x13_c00159{left:98.472000pt;}
.x67_c00159{left:99.592184pt;}
.x3d_c00159{left:103.881376pt;}
.x56_c00159{left:105.075021pt;}
.x6_c00159{left:107.102667pt;}
.x48_c00159{left:108.217680pt;}
.x7b_c00159{left:110.007997pt;}
.x2e_c00159{left:112.753853pt;}
.x32_c00159{left:114.050312pt;}
.x14_c00159{left:116.614667pt;}
.x4d_c00159{left:118.322285pt;}
.x53_c00159{left:121.181243pt;}
.x6f_c00159{left:122.176643pt;}
.x7_c00159{left:124.166667pt;}
.x49_c00159{left:127.186261pt;}
.x33_c00159{left:129.758221pt;}
.x1c_c00159{left:133.437333pt;}
.x59_c00159{left:134.855285pt;}
.x62_c00159{left:136.247851pt;}
.x50_c00159{left:137.301269pt;}
.x27_c00159{left:139.995139pt;}
.x54_c00159{left:141.826045pt;}
.x3e_c00159{left:143.594792pt;}
.x5a_c00159{left:145.442112pt;}
.x5f_c00159{left:147.663349pt;}
.x4a_c00159{left:149.858099pt;}
.x21_c00159{left:151.658093pt;}
.x57_c00159{left:152.867936pt;}
.x1d_c00159{left:154.918667pt;}
.x42_c00159{left:156.507997pt;}
.x15_c00159{left:157.445333pt;}
.x64_c00159{left:159.522197pt;}
.x1_c00159{left:161.280000pt;}
.x6a_c00159{left:163.702589pt;}
.x36_c00159{left:166.797056pt;}
.x2f_c00159{left:167.965579pt;}
.x8_c00159{left:170.538667pt;}
.x68_c00159{left:171.937267pt;}
.x16_c00159{left:172.936000pt;}
.x78_c00159{left:174.828811pt;}
.x3f_c00159{left:176.163843pt;}
.x1e_c00159{left:178.604000pt;}
.x43_c00159{left:181.085267pt;}
.x28_c00159{left:182.625357pt;}
.x37_c00159{left:183.967912pt;}
.x5b_c00159{left:190.099880pt;}
.x4b_c00159{left:191.614008pt;}
.x17_c00159{left:194.697333pt;}
.x7e_c00159{left:198.121467pt;}
.xe_c00159{left:199.313333pt;}
.x70_c00159{left:200.806656pt;}
.x22_c00159{left:202.221853pt;}
.x7c_c00159{left:203.859248pt;}
.x1f_c00159{left:205.002667pt;}
.x29_c00159{left:207.612400pt;}
.x69_c00159{left:210.008416pt;}
.xf_c00159{left:212.161333pt;}
.x65_c00159{left:214.133648pt;}
.x38_c00159{left:215.569829pt;}
.x9_c00159{left:218.718667pt;}
.x76_c00159{left:220.656072pt;}
.x23_c00159{left:223.766144pt;}
.x40_c00159{left:226.850488pt;}
.x2a_c00159{left:228.222989pt;}
.x6b_c00159{left:229.585360pt;}
.x10_c00159{left:230.982667pt;}
.xa_c00159{left:233.420000pt;}
.x39_c00159{left:236.699088pt;}
.x66_c00159{left:238.593088pt;}
.x30_c00159{left:240.700509pt;}
.x18_c00159{left:242.440000pt;}
.x51_c00159{left:246.253272pt;}
.x7f_c00159{left:248.241219pt;}
.x71_c00159{left:250.059896pt;}
.x24_c00159{left:255.878624pt;}
.x5c_c00159{left:258.725675pt;}
.x7d_c00159{left:260.064664pt;}
.x63_c00159{left:262.741707pt;}
.x4e_c00159{left:264.499301pt;}
.x72_c00159{left:266.631411pt;}
.x41_c00159{left:268.115699pt;}
.x25_c00159{left:269.298491pt;}
.x19_c00159{left:270.509333pt;}
.x2b_c00159{left:272.987464pt;}
.x5d_c00159{left:275.057219pt;}
.x34_c00159{left:277.541536pt;}
.x52_c00159{left:279.856243pt;}
.x44_c00159{left:281.487208pt;}
.xb_c00159{left:285.026667pt;}
.x2_c00159{left:287.520000pt;}
.x31_c00159{left:288.456397pt;}
.x58_c00159{left:290.617040pt;}
.x75_c00159{left:291.878768pt;}
.x60_c00159{left:293.530803pt;}
.x35_c00159{left:296.263584pt;}
.x6c_c00159{left:297.196160pt;}
.x11_c00159{left:299.761333pt;}
.x3a_c00159{left:302.325413pt;}
.x77_c00159{left:304.815347pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00160 {
    display:none;
  }
  .loading-indicator_c00160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00160 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00160 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00160" -> "#page-container .classname_c00160")
 */
.pf_c00160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00160 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00160 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00160 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00160 {overflow:visible;}
  }
}
.c_c00160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00160 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00160:after { /* webkit #35443 */
  content: '';
}
.t_c00160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00160 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00160 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00160 { /* info for Javascript */
  display:none;
}
.l_c00160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00160:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00160 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00160.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00160{transform:matrix(0.113355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113355,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);}
.maf_c00160{transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);}
.m90_c00160{transform:matrix(0.135120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135120,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.mb0_c00160{transform:matrix(0.145590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145590,0.000000,0.000000,0.250000,0,0);}
.mda_c00160{transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);}
.ma6_c00160{transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.ma3_c00160{transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);}
.m8e_c00160{transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);}
.m27_c00160{transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);}
.m89_c00160{transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);}
.m74_c00160{transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);}
.mac_c00160{transform:matrix(0.157695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157695,0.000000,0.000000,0.250000,0,0);}
.md2_c00160{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);}
.mcb_c00160{transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);}
.md0_c00160{transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);}
.mad_c00160{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);}
.m1d_c00160{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.mc9_c00160{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.m97_c00160{transform:matrix(0.162638,0.001952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162638,0.001952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162638,0.001952,-0.003000,0.249982,0,0);}
.mdc_c00160{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.164210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164210,0.000000,0.000000,0.250000,0,0);}
.m20_c00160{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m6a_c00160{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.mcf_c00160{transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);}
.m81_c00160{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00160{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m9b_c00160{transform:matrix(0.169343,0.002032,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169343,0.002032,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169343,0.002032,-0.003000,0.249982,0,0);}
.m2d_c00160{transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169880,0.000000,0.000000,0.250000,0,0);}
.m9f_c00160{transform:matrix(0.170958,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170958,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170958,0.002051,-0.003000,0.249982,0,0);}
.mf8_c00160{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.m88_c00160{transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);}
.mfc_c00160{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);}
.md5_c00160{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.mf2_c00160{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m69_c00160{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00160{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m55_c00160{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m39_c00160{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m72_c00160{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.mb8_c00160{transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);}
.m35_c00160{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00160{transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);}
.m64_c00160{transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);}
.m21_c00160{transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.179017,0.002148,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179017,0.002148,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179017,0.002148,-0.003000,0.249982,0,0);}
.m17_c00160{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m28_c00160{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m7c_c00160{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.ma4_c00160{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00160{transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);}
.mbc_c00160{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m98_c00160{transform:matrix(0.180252,0.002163,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180252,0.002163,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180252,0.002163,-0.003000,0.249982,0,0);}
.md1_c00160{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.md4_c00160{transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);}
.mc1_c00160{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m9a_c00160{transform:matrix(0.182322,0.002188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182322,0.002188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182322,0.002188,-0.003000,0.249982,0,0);}
.mfd_c00160{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m66_c00160{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00160{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.m5e_c00160{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.md7_c00160{transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);}
.mbb_c00160{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.mde_c00160{transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);}
.me0_c00160{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.ma8_c00160{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);}
.m65_c00160{transform:matrix(0.185560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185560,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);}
.m75_c00160{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.mae_c00160{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m8b_c00160{transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);}
.m59_c00160{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.mf7_c00160{transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);}
.me7_c00160{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.mc7_c00160{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.m1f_c00160{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.ma2_c00160{transform:matrix(0.189356,0.002272,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189356,0.002272,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189356,0.002272,-0.003000,0.249982,0,0);}
.ma9_c00160{transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);}
.md8_c00160{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.m9e_c00160{transform:matrix(0.189731,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189731,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189731,0.002277,-0.003000,0.249982,0,0);}
.m5_c00160{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m6f_c00160{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m19_c00160{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.mf0_c00160{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.mdd_c00160{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.maa_c00160{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.mf9_c00160{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.m60_c00160{transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);}
.m6d_c00160{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.mbd_c00160{transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);}
.me5_c00160{transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.ma0_c00160{transform:matrix(0.194366,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194366,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194366,0.002332,-0.003000,0.249982,0,0);}
.m83_c00160{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.mf6_c00160{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194505,0.000000,0.000000,0.250000,0,0);}
.m6c_c00160{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.mea_c00160{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.md3_c00160{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m93_c00160{transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{transform:matrix(0.195721,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195721,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195721,0.002349,-0.003000,0.249982,0,0);}
.m70_c00160{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m40_c00160{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m1c_c00160{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m8d_c00160{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m41_c00160{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m8c_c00160{transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);}
.m7e_c00160{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00160{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.m2e_c00160{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.mc2_c00160{transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);}
.m36_c00160{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.mec_c00160{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.mc8_c00160{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.ma1_c00160{transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);}
.mdb_c00160{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.m46_c00160{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m31_c00160{transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);}
.mcd_c00160{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m61_c00160{transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);}
.mb6_c00160{transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);}
.m37_c00160{transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);}
.mb3_c00160{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m73_c00160{transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);}
.mc6_c00160{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m80_c00160{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.m94_c00160{transform:matrix(0.205365,0.002464,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205365,0.002464,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205365,0.002464,-0.003000,0.249982,0,0);}
.mb4_c00160{transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m6b_c00160{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.ma5_c00160{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.me8_c00160{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.mf5_c00160{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.mfa_c00160{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc5_c00160{transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00160{transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);}
.m7a_c00160{transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);}
.m86_c00160{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.mdf_c00160{transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m32_c00160{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.mc4_c00160{transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);}
.mee_c00160{transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);}
.m48_c00160{transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m5c_c00160{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m68_c00160{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.m6e_c00160{transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);}
.md9_c00160{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m4a_c00160{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.me6_c00160{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.m77_c00160{transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);}
.m87_c00160{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.mca_c00160{transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);}
.m3c_c00160{transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);}
.mb5_c00160{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.mf4_c00160{transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);}
.m71_c00160{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.mba_c00160{transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);}
.ma7_c00160{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.mb2_c00160{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.mc0_c00160{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m38_c00160{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mef_c00160{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.me4_c00160{transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);}
.me2_c00160{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m62_c00160{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m9d_c00160{transform:matrix(0.221749,0.002661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221749,0.002661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221749,0.002661,-0.003000,0.249982,0,0);}
.m15_c00160{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.m7f_c00160{transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);}
.m84_c00160{transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.m4b_c00160{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.me3_c00160{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);}
.me1_c00160{transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);}
.me9_c00160{transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.mf3_c00160{transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225215,0.000000,0.000000,0.250000,0,0);}
.m78_c00160{transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);}
.m7d_c00160{transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m33_c00160{transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);}
.mf1_c00160{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00160{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.med_c00160{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.meb_c00160{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);}
.m91_c00160{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m51_c00160{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.mbf_c00160{transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m85_c00160{transform:matrix(0.236295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236295,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.mb7_c00160{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.mcc_c00160{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);}
.mce_c00160{transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00160{transform:matrix(0.271900,0.003263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271900,0.003263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271900,0.003263,-0.003000,0.249982,0,0);}
.m56_c00160{transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);}
.md6_c00160{transform:matrix(0.374845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374845,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:0.000000px;}
.fc0_c00160{color:transparent;}
.fs7_c00160{font-size:57.750000px;}
.fs6_c00160{font-size:58.800000px;}
.fs1_c00160{font-size:59.850000px;}
.fs9_c00160{font-size:60.900000px;}
.fs8_c00160{font-size:61.950000px;}
.fs2_c00160{font-size:63.000000px;}
.fsf_c00160{font-size:65.100000px;}
.fs3_c00160{font-size:66.150000px;}
.fse_c00160{font-size:67.200000px;}
.fsc_c00160{font-size:67.204838px;}
.fs4_c00160{font-size:68.250000px;}
.fs5_c00160{font-size:69.300000px;}
.fsa_c00160{font-size:70.350000px;}
.fsb_c00160{font-size:70.355065px;}
.fsd_c00160{font-size:72.450000px;}
.fs0_c00160{font-size:77.700000px;}
.y0_c00160{bottom:0.000000px;}
.y7c_c00160{bottom:35.680500px;}
.y7b_c00160{bottom:35.961000px;}
.y7a_c00160{bottom:36.297000px;}
.y79_c00160{bottom:37.045500px;}
.y78_c00160{bottom:37.476000px;}
.y77_c00160{bottom:37.779000px;}
.y76_c00160{bottom:38.250000px;}
.y75_c00160{bottom:38.779500px;}
.y74_c00160{bottom:39.423000px;}
.y73_c00160{bottom:54.268500px;}
.y72_c00160{bottom:54.844500px;}
.y71_c00160{bottom:55.032000px;}
.y70_c00160{bottom:55.194000px;}
.y6f_c00160{bottom:55.488000px;}
.y6e_c00160{bottom:55.744500px;}
.y6d_c00160{bottom:56.656500px;}
.y6c_c00160{bottom:56.787000px;}
.y6b_c00160{bottom:57.241500px;}
.y6a_c00160{bottom:71.383500px;}
.y69_c00160{bottom:71.772000px;}
.y68_c00160{bottom:72.814500px;}
.y67_c00160{bottom:73.825500px;}
.y66_c00160{bottom:74.347500px;}
.y65_c00160{bottom:75.519000px;}
.y64_c00160{bottom:76.144500px;}
.y63_c00160{bottom:88.095000px;}
.y62_c00160{bottom:106.762500px;}
.y61_c00160{bottom:107.029500px;}
.y60_c00160{bottom:107.587500px;}
.y5f_c00160{bottom:107.860500px;}
.y5e_c00160{bottom:108.036000px;}
.y5d_c00160{bottom:108.651000px;}
.y5c_c00160{bottom:109.492500px;}
.y5b_c00160{bottom:110.166000px;}
.y5a_c00160{bottom:122.302500px;}
.y59_c00160{bottom:122.565000px;}
.y58_c00160{bottom:123.351000px;}
.y57_c00160{bottom:123.624000px;}
.y56_c00160{bottom:124.044000px;}
.y55_c00160{bottom:124.552500px;}
.y54_c00160{bottom:124.974000px;}
.y53_c00160{bottom:125.160000px;}
.y52_c00160{bottom:125.542500px;}
.y51_c00160{bottom:125.817000px;}
.y50_c00160{bottom:126.094500px;}
.y4f_c00160{bottom:140.652000px;}
.y4e_c00160{bottom:156.954000px;}
.y4d_c00160{bottom:174.366000px;}
.y4c_c00160{bottom:174.990000px;}
.y4b_c00160{bottom:176.844000px;}
.y4a_c00160{bottom:179.211000px;}
.y49_c00160{bottom:179.569500px;}
.y48_c00160{bottom:180.507000px;}
.y47_c00160{bottom:181.101000px;}
.y46_c00160{bottom:181.446000px;}
.y45_c00160{bottom:190.668000px;}
.y44_c00160{bottom:190.843500px;}
.y43_c00160{bottom:191.467500px;}
.y42_c00160{bottom:191.644500px;}
.y41_c00160{bottom:192.085500px;}
.y40_c00160{bottom:192.481500px;}
.y3f_c00160{bottom:192.711000px;}
.y3e_c00160{bottom:192.904500px;}
.y3d_c00160{bottom:193.321500px;}
.y3c_c00160{bottom:208.998000px;}
.y3b_c00160{bottom:225.469284px;}
.y3a_c00160{bottom:225.911364px;}
.y39_c00160{bottom:226.920444px;}
.y38_c00160{bottom:227.506680px;}
.y37_c00160{bottom:227.798142px;}
.y36_c00160{bottom:228.123660px;}
.y35_c00160{bottom:229.230210px;}
.y34_c00160{bottom:242.607498px;}
.y33_c00160{bottom:242.950956px;}
.y32_c00160{bottom:243.107088px;}
.y31_c00160{bottom:243.758436px;}
.y30_c00160{bottom:244.286592px;}
.y2f_c00160{bottom:244.541832px;}
.y2e_c00160{bottom:244.876344px;}
.y2d_c00160{bottom:245.971500px;}
.y2c_c00160{bottom:262.851000px;}
.y2b_c00160{bottom:277.653000px;}
.y2a_c00160{bottom:277.857000px;}
.y29_c00160{bottom:278.488500px;}
.y28_c00160{bottom:279.072000px;}
.y27_c00160{bottom:279.727500px;}
.y26_c00160{bottom:280.452000px;}
.y25_c00160{bottom:280.716000px;}
.y24_c00160{bottom:281.341500px;}
.y23_c00160{bottom:295.413000px;}
.y22_c00160{bottom:295.644000px;}
.y21_c00160{bottom:296.359500px;}
.y20_c00160{bottom:296.703000px;}
.y1f_c00160{bottom:297.312000px;}
.y1e_c00160{bottom:297.594000px;}
.y1d_c00160{bottom:297.937500px;}
.y1c_c00160{bottom:298.164000px;}
.y1b_c00160{bottom:298.621500px;}
.y1a_c00160{bottom:313.131000px;}
.y19_c00160{bottom:313.638000px;}
.y18_c00160{bottom:313.840500px;}
.y17_c00160{bottom:313.972500px;}
.y16_c00160{bottom:314.539500px;}
.y15_c00160{bottom:314.745000px;}
.y14_c00160{bottom:314.881500px;}
.y13_c00160{bottom:315.241500px;}
.y12_c00160{bottom:315.468000px;}
.y11_c00160{bottom:315.900000px;}
.y10_c00160{bottom:331.338000px;}
.yf_c00160{bottom:348.213000px;}
.ye_c00160{bottom:364.972500px;}
.yd_c00160{bottom:381.834000px;}
.yc_c00160{bottom:398.994000px;}
.yb_c00160{bottom:415.884000px;}
.ya_c00160{bottom:433.675500px;}
.y9_c00160{bottom:450.834000px;}
.y8_c00160{bottom:468.114000px;}
.y7_c00160{bottom:485.157000px;}
.y6_c00160{bottom:502.674000px;}
.y5_c00160{bottom:520.225500px;}
.y4_c00160{bottom:537.657000px;}
.y3_c00160{bottom:554.644500px;}
.y2_c00160{bottom:571.440000px;}
.y1_c00160{bottom:584.691000px;}
.h9_c00160{height:57.750000px;}
.h8_c00160{height:58.800000px;}
.h3_c00160{height:59.850000px;}
.hb_c00160{height:60.900000px;}
.ha_c00160{height:61.950000px;}
.h4_c00160{height:63.000000px;}
.h11_c00160{height:65.100000px;}
.h5_c00160{height:66.150000px;}
.h10_c00160{height:67.200000px;}
.he_c00160{height:67.204838px;}
.h6_c00160{height:68.250000px;}
.h7_c00160{height:69.300000px;}
.hc_c00160{height:70.350000px;}
.hd_c00160{height:70.355065px;}
.hf_c00160{height:72.450000px;}
.h2_c00160{height:77.700000px;}
.h0_c00160{height:623.100000px;}
.h1_c00160{height:623.250000px;}
.w1_c00160{width:383.250000px;}
.w0_c00160{width:383.400000px;}
.x0_c00160{left:0.000000px;}
.xa_c00160{left:35.910000px;}
.x2_c00160{left:37.260000px;}
.x68_c00160{left:38.341500px;}
.x5e_c00160{left:45.481500px;}
.x76_c00160{left:48.330000px;}
.x66_c00160{left:50.209500px;}
.x1b_c00160{left:56.700000px;}
.x37_c00160{left:60.480000px;}
.x31_c00160{left:63.450000px;}
.x11_c00160{left:64.530000px;}
.x77_c00160{left:65.610000px;}
.x4c_c00160{left:69.390000px;}
.x18_c00160{left:71.820000px;}
.x50_c00160{left:74.902500px;}
.x21_c00160{left:77.490000px;}
.x47_c00160{left:79.650000px;}
.x3_c00160{left:82.080000px;}
.x58_c00160{left:85.153500px;}
.xb_c00160{left:86.400000px;}
.x44_c00160{left:89.100000px;}
.x32_c00160{left:90.990000px;}
.x22_c00160{left:92.610000px;}
.x51_c00160{left:93.838500px;}
.x48_c00160{left:97.470000px;}
.x19_c00160{left:98.820000px;}
.x2c_c00160{left:100.710000px;}
.x40_c00160{left:102.600000px;}
.x4_c00160{left:104.760000px;}
.xc_c00160{left:108.810000px;}
.x12_c00160{left:109.890000px;}
.x5b_c00160{left:112.320000px;}
.x6c_c00160{left:115.291500px;}
.x63_c00160{left:116.722614px;}
.x4d_c00160{left:118.260000px;}
.x38_c00160{left:120.150000px;}
.x2d_c00160{left:121.230000px;}
.x52_c00160{left:122.418000px;}
.x70_c00160{left:124.338000px;}
.x1c_c00160{left:126.630000px;}
.x78_c00160{left:127.980000px;}
.x5_c00160{left:129.600000px;}
.x5c_c00160{left:131.760000px;}
.x69_c00160{left:133.381500px;}
.x5f_c00160{left:136.744500px;}
.x27_c00160{left:139.320000px;}
.x2e_c00160{left:140.940000px;}
.x53_c00160{left:145.908000px;}
.x64_c00160{left:147.150000px;}
.x39_c00160{left:148.500000px;}
.x3c_c00160{left:149.850000px;}
.x1d_c00160{left:151.470000px;}
.x75_c00160{left:154.846500px;}
.x71_c00160{left:156.778500px;}
.x33_c00160{left:157.950000px;}
.x1a_c00160{left:161.190000px;}
.x3d_c00160{left:162.540000px;}
.x5d_c00160{left:164.160000px;}
.x45_c00160{left:166.320000px;}
.x23_c00160{left:168.210000px;}
.x1_c00160{left:170.910000px;}
.x4f_c00160{left:172.675500px;}
.x13_c00160{left:176.040000px;}
.x7b_c00160{left:177.576000px;}
.x28_c00160{left:180.360000px;}
.x41_c00160{left:184.680000px;}
.x65_c00160{left:185.760000px;}
.x24_c00160{left:186.840000px;}
.x49_c00160{left:189.810000px;}
.x6_c00160{left:193.050000px;}
.x3a_c00160{left:194.940000px;}
.x54_c00160{left:196.671000px;}
.x14_c00160{left:199.530000px;}
.x6a_c00160{left:201.421500px;}
.xd_c00160{left:203.040000px;}
.x1e_c00160{left:204.390000px;}
.x7c_c00160{left:208.278000px;}
.x2f_c00160{left:210.060000px;}
.x59_c00160{left:211.509000px;}
.x79_c00160{left:214.110000px;}
.x3e_c00160{left:215.460000px;}
.x42_c00160{left:223.560000px;}
.x55_c00160{left:225.283500px;}
.x34_c00160{left:226.800000px;}
.xe_c00160{left:228.690000px;}
.x60_c00160{left:229.903500px;}
.x25_c00160{left:236.250000px;}
.x1f_c00160{left:238.680000px;}
.x35_c00160{left:241.650000px;}
.x3f_c00160{left:248.130000px;}
.x72_c00160{left:249.345000px;}
.x6d_c00160{left:252.721500px;}
.xf_c00160{left:254.880000px;}
.x5a_c00160{left:256.395000px;}
.x7_c00160{left:258.390000px;}
.x7d_c00160{left:261.784500px;}
.x15_c00160{left:263.250000px;}
.x6e_c00160{left:264.331500px;}
.x29_c00160{left:268.650000px;}
.x10_c00160{left:270.810000px;}
.x8_c00160{left:274.050000px;}
.x4a_c00160{left:278.910000px;}
.x7a_c00160{left:282.150000px;}
.x16_c00160{left:283.230000px;}
.x56_c00160{left:284.958000px;}
.x6f_c00160{left:287.011500px;}
.x2a_c00160{left:289.710000px;}
.x67_c00160{left:290.742000px;}
.x26_c00160{left:293.760000px;}
.x9_c00160{left:295.920000px;}
.x61_c00160{left:297.193500px;}
.x43_c00160{left:299.160000px;}
.x4b_c00160{left:300.510000px;}
.x46_c00160{left:302.400000px;}
.x57_c00160{left:304.197000px;}
.x17_c00160{left:306.180000px;}
.x30_c00160{left:308.340000px;}
.x73_c00160{left:309.804000px;}
.x3b_c00160{left:311.580000px;}
.x2b_c00160{left:312.660000px;}
.x6b_c00160{left:315.631500px;}
.x36_c00160{left:317.790000px;}
.x20_c00160{left:319.950000px;}
.x4e_c00160{left:323.730000px;}
.x62_c00160{left:325.815000px;}
.x74_c00160{left:330.046500px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.fs7_c00160{font-size:51.333333pt;}
.fs6_c00160{font-size:52.266667pt;}
.fs1_c00160{font-size:53.200000pt;}
.fs9_c00160{font-size:54.133333pt;}
.fs8_c00160{font-size:55.066667pt;}
.fs2_c00160{font-size:56.000000pt;}
.fsf_c00160{font-size:57.866667pt;}
.fs3_c00160{font-size:58.800000pt;}
.fse_c00160{font-size:59.733333pt;}
.fsc_c00160{font-size:59.737634pt;}
.fs4_c00160{font-size:60.666667pt;}
.fs5_c00160{font-size:61.600000pt;}
.fsa_c00160{font-size:62.533333pt;}
.fsb_c00160{font-size:62.537836pt;}
.fsd_c00160{font-size:64.400000pt;}
.fs0_c00160{font-size:69.066667pt;}
.y0_c00160{bottom:0.000000pt;}
.y7c_c00160{bottom:31.716000pt;}
.y7b_c00160{bottom:31.965333pt;}
.y7a_c00160{bottom:32.264000pt;}
.y79_c00160{bottom:32.929333pt;}
.y78_c00160{bottom:33.312000pt;}
.y77_c00160{bottom:33.581333pt;}
.y76_c00160{bottom:34.000000pt;}
.y75_c00160{bottom:34.470667pt;}
.y74_c00160{bottom:35.042667pt;}
.y73_c00160{bottom:48.238667pt;}
.y72_c00160{bottom:48.750667pt;}
.y71_c00160{bottom:48.917333pt;}
.y70_c00160{bottom:49.061333pt;}
.y6f_c00160{bottom:49.322667pt;}
.y6e_c00160{bottom:49.550667pt;}
.y6d_c00160{bottom:50.361333pt;}
.y6c_c00160{bottom:50.477333pt;}
.y6b_c00160{bottom:50.881333pt;}
.y6a_c00160{bottom:63.452000pt;}
.y69_c00160{bottom:63.797333pt;}
.y68_c00160{bottom:64.724000pt;}
.y67_c00160{bottom:65.622667pt;}
.y66_c00160{bottom:66.086667pt;}
.y65_c00160{bottom:67.128000pt;}
.y64_c00160{bottom:67.684000pt;}
.y63_c00160{bottom:78.306667pt;}
.y62_c00160{bottom:94.900000pt;}
.y61_c00160{bottom:95.137333pt;}
.y60_c00160{bottom:95.633333pt;}
.y5f_c00160{bottom:95.876000pt;}
.y5e_c00160{bottom:96.032000pt;}
.y5d_c00160{bottom:96.578667pt;}
.y5c_c00160{bottom:97.326667pt;}
.y5b_c00160{bottom:97.925333pt;}
.y5a_c00160{bottom:108.713333pt;}
.y59_c00160{bottom:108.946667pt;}
.y58_c00160{bottom:109.645333pt;}
.y57_c00160{bottom:109.888000pt;}
.y56_c00160{bottom:110.261333pt;}
.y55_c00160{bottom:110.713333pt;}
.y54_c00160{bottom:111.088000pt;}
.y53_c00160{bottom:111.253333pt;}
.y52_c00160{bottom:111.593333pt;}
.y51_c00160{bottom:111.837333pt;}
.y50_c00160{bottom:112.084000pt;}
.y4f_c00160{bottom:125.024000pt;}
.y4e_c00160{bottom:139.514667pt;}
.y4d_c00160{bottom:154.992000pt;}
.y4c_c00160{bottom:155.546667pt;}
.y4b_c00160{bottom:157.194667pt;}
.y4a_c00160{bottom:159.298667pt;}
.y49_c00160{bottom:159.617333pt;}
.y48_c00160{bottom:160.450667pt;}
.y47_c00160{bottom:160.978667pt;}
.y46_c00160{bottom:161.285333pt;}
.y45_c00160{bottom:169.482667pt;}
.y44_c00160{bottom:169.638667pt;}
.y43_c00160{bottom:170.193333pt;}
.y42_c00160{bottom:170.350667pt;}
.y41_c00160{bottom:170.742667pt;}
.y40_c00160{bottom:171.094667pt;}
.y3f_c00160{bottom:171.298667pt;}
.y3e_c00160{bottom:171.470667pt;}
.y3d_c00160{bottom:171.841333pt;}
.y3c_c00160{bottom:185.776000pt;}
.y3b_c00160{bottom:200.417141pt;}
.y3a_c00160{bottom:200.810101pt;}
.y39_c00160{bottom:201.707061pt;}
.y38_c00160{bottom:202.228160pt;}
.y37_c00160{bottom:202.487237pt;}
.y36_c00160{bottom:202.776587pt;}
.y35_c00160{bottom:203.760187pt;}
.y34_c00160{bottom:215.651109pt;}
.y33_c00160{bottom:215.956405pt;}
.y32_c00160{bottom:216.095189pt;}
.y31_c00160{bottom:216.674165pt;}
.y30_c00160{bottom:217.143637pt;}
.y2f_c00160{bottom:217.370517pt;}
.y2e_c00160{bottom:217.667861pt;}
.y2d_c00160{bottom:218.641333pt;}
.y2c_c00160{bottom:233.645333pt;}
.y2b_c00160{bottom:246.802667pt;}
.y2a_c00160{bottom:246.984000pt;}
.y29_c00160{bottom:247.545333pt;}
.y28_c00160{bottom:248.064000pt;}
.y27_c00160{bottom:248.646667pt;}
.y26_c00160{bottom:249.290667pt;}
.y25_c00160{bottom:249.525333pt;}
.y24_c00160{bottom:250.081333pt;}
.y23_c00160{bottom:262.589333pt;}
.y22_c00160{bottom:262.794667pt;}
.y21_c00160{bottom:263.430667pt;}
.y20_c00160{bottom:263.736000pt;}
.y1f_c00160{bottom:264.277333pt;}
.y1e_c00160{bottom:264.528000pt;}
.y1d_c00160{bottom:264.833333pt;}
.y1c_c00160{bottom:265.034667pt;}
.y1b_c00160{bottom:265.441333pt;}
.y1a_c00160{bottom:278.338667pt;}
.y19_c00160{bottom:278.789333pt;}
.y18_c00160{bottom:278.969333pt;}
.y17_c00160{bottom:279.086667pt;}
.y16_c00160{bottom:279.590667pt;}
.y15_c00160{bottom:279.773333pt;}
.y14_c00160{bottom:279.894667pt;}
.y13_c00160{bottom:280.214667pt;}
.y12_c00160{bottom:280.416000pt;}
.y11_c00160{bottom:280.800000pt;}
.y10_c00160{bottom:294.522667pt;}
.yf_c00160{bottom:309.522667pt;}
.ye_c00160{bottom:324.420000pt;}
.yd_c00160{bottom:339.408000pt;}
.yc_c00160{bottom:354.661333pt;}
.yb_c00160{bottom:369.674667pt;}
.ya_c00160{bottom:385.489333pt;}
.y9_c00160{bottom:400.741333pt;}
.y8_c00160{bottom:416.101333pt;}
.y7_c00160{bottom:431.250667pt;}
.y6_c00160{bottom:446.821333pt;}
.y5_c00160{bottom:462.422667pt;}
.y4_c00160{bottom:477.917333pt;}
.y3_c00160{bottom:493.017333pt;}
.y2_c00160{bottom:507.946667pt;}
.y1_c00160{bottom:519.725333pt;}
.h9_c00160{height:51.333333pt;}
.h8_c00160{height:52.266667pt;}
.h3_c00160{height:53.200000pt;}
.hb_c00160{height:54.133333pt;}
.ha_c00160{height:55.066667pt;}
.h4_c00160{height:56.000000pt;}
.h11_c00160{height:57.866667pt;}
.h5_c00160{height:58.800000pt;}
.h10_c00160{height:59.733333pt;}
.he_c00160{height:59.737634pt;}
.h6_c00160{height:60.666667pt;}
.h7_c00160{height:61.600000pt;}
.hc_c00160{height:62.533333pt;}
.hd_c00160{height:62.537836pt;}
.hf_c00160{height:64.400000pt;}
.h2_c00160{height:69.066667pt;}
.h0_c00160{height:553.866667pt;}
.h1_c00160{height:554.000000pt;}
.w1_c00160{width:340.666667pt;}
.w0_c00160{width:340.800000pt;}
.x0_c00160{left:0.000000pt;}
.xa_c00160{left:31.920000pt;}
.x2_c00160{left:33.120000pt;}
.x68_c00160{left:34.081333pt;}
.x5e_c00160{left:40.428000pt;}
.x76_c00160{left:42.960000pt;}
.x66_c00160{left:44.630667pt;}
.x1b_c00160{left:50.400000pt;}
.x37_c00160{left:53.760000pt;}
.x31_c00160{left:56.400000pt;}
.x11_c00160{left:57.360000pt;}
.x77_c00160{left:58.320000pt;}
.x4c_c00160{left:61.680000pt;}
.x18_c00160{left:63.840000pt;}
.x50_c00160{left:66.580000pt;}
.x21_c00160{left:68.880000pt;}
.x47_c00160{left:70.800000pt;}
.x3_c00160{left:72.960000pt;}
.x58_c00160{left:75.692000pt;}
.xb_c00160{left:76.800000pt;}
.x44_c00160{left:79.200000pt;}
.x32_c00160{left:80.880000pt;}
.x22_c00160{left:82.320000pt;}
.x51_c00160{left:83.412000pt;}
.x48_c00160{left:86.640000pt;}
.x19_c00160{left:87.840000pt;}
.x2c_c00160{left:89.520000pt;}
.x40_c00160{left:91.200000pt;}
.x4_c00160{left:93.120000pt;}
.xc_c00160{left:96.720000pt;}
.x12_c00160{left:97.680000pt;}
.x5b_c00160{left:99.840000pt;}
.x6c_c00160{left:102.481333pt;}
.x63_c00160{left:103.753435pt;}
.x4d_c00160{left:105.120000pt;}
.x38_c00160{left:106.800000pt;}
.x2d_c00160{left:107.760000pt;}
.x52_c00160{left:108.816000pt;}
.x70_c00160{left:110.522667pt;}
.x1c_c00160{left:112.560000pt;}
.x78_c00160{left:113.760000pt;}
.x5_c00160{left:115.200000pt;}
.x5c_c00160{left:117.120000pt;}
.x69_c00160{left:118.561333pt;}
.x5f_c00160{left:121.550667pt;}
.x27_c00160{left:123.840000pt;}
.x2e_c00160{left:125.280000pt;}
.x53_c00160{left:129.696000pt;}
.x64_c00160{left:130.800000pt;}
.x39_c00160{left:132.000000pt;}
.x3c_c00160{left:133.200000pt;}
.x1d_c00160{left:134.640000pt;}
.x75_c00160{left:137.641333pt;}
.x71_c00160{left:139.358667pt;}
.x33_c00160{left:140.400000pt;}
.x1a_c00160{left:143.280000pt;}
.x3d_c00160{left:144.480000pt;}
.x5d_c00160{left:145.920000pt;}
.x45_c00160{left:147.840000pt;}
.x23_c00160{left:149.520000pt;}
.x1_c00160{left:151.920000pt;}
.x4f_c00160{left:153.489333pt;}
.x13_c00160{left:156.480000pt;}
.x7b_c00160{left:157.845333pt;}
.x28_c00160{left:160.320000pt;}
.x41_c00160{left:164.160000pt;}
.x65_c00160{left:165.120000pt;}
.x24_c00160{left:166.080000pt;}
.x49_c00160{left:168.720000pt;}
.x6_c00160{left:171.600000pt;}
.x3a_c00160{left:173.280000pt;}
.x54_c00160{left:174.818667pt;}
.x14_c00160{left:177.360000pt;}
.x6a_c00160{left:179.041333pt;}
.xd_c00160{left:180.480000pt;}
.x1e_c00160{left:181.680000pt;}
.x7c_c00160{left:185.136000pt;}
.x2f_c00160{left:186.720000pt;}
.x59_c00160{left:188.008000pt;}
.x79_c00160{left:190.320000pt;}
.x3e_c00160{left:191.520000pt;}
.x42_c00160{left:198.720000pt;}
.x55_c00160{left:200.252000pt;}
.x34_c00160{left:201.600000pt;}
.xe_c00160{left:203.280000pt;}
.x60_c00160{left:204.358667pt;}
.x25_c00160{left:210.000000pt;}
.x1f_c00160{left:212.160000pt;}
.x35_c00160{left:214.800000pt;}
.x3f_c00160{left:220.560000pt;}
.x72_c00160{left:221.640000pt;}
.x6d_c00160{left:224.641333pt;}
.xf_c00160{left:226.560000pt;}
.x5a_c00160{left:227.906667pt;}
.x7_c00160{left:229.680000pt;}
.x7d_c00160{left:232.697333pt;}
.x15_c00160{left:234.000000pt;}
.x6e_c00160{left:234.961333pt;}
.x29_c00160{left:238.800000pt;}
.x10_c00160{left:240.720000pt;}
.x8_c00160{left:243.600000pt;}
.x4a_c00160{left:247.920000pt;}
.x7a_c00160{left:250.800000pt;}
.x16_c00160{left:251.760000pt;}
.x56_c00160{left:253.296000pt;}
.x6f_c00160{left:255.121333pt;}
.x2a_c00160{left:257.520000pt;}
.x67_c00160{left:258.437333pt;}
.x26_c00160{left:261.120000pt;}
.x9_c00160{left:263.040000pt;}
.x61_c00160{left:264.172000pt;}
.x43_c00160{left:265.920000pt;}
.x4b_c00160{left:267.120000pt;}
.x46_c00160{left:268.800000pt;}
.x57_c00160{left:270.397333pt;}
.x17_c00160{left:272.160000pt;}
.x30_c00160{left:274.080000pt;}
.x73_c00160{left:275.381333pt;}
.x3b_c00160{left:276.960000pt;}
.x2b_c00160{left:277.920000pt;}
.x6b_c00160{left:280.561333pt;}
.x36_c00160{left:282.480000pt;}
.x20_c00160{left:284.400000pt;}
.x4e_c00160{left:287.760000pt;}
.x62_c00160{left:289.613333pt;}
.x74_c00160{left:293.374667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00161 {
    display:none;
  }
  .loading-indicator_c00161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00161 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00161 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00161" -> "#page-container .classname_c00161")
 */
.pf_c00161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00161 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00161 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00161 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00161 {overflow:visible;}
  }
}
.c_c00161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00161 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00161:after { /* webkit #35443 */
  content: '';
}
.t_c00161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00161 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00161 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00161 { /* info for Javascript */
  display:none;
}
.l_c00161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00161:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00161 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00161.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfb_c00161{transform:matrix(0.089680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089680,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.140457,-0.002247,0.003999,0.249968,0,0);-ms-transform:matrix(0.140457,-0.002247,0.003999,0.249968,0,0);-webkit-transform:matrix(0.140457,-0.002247,0.003999,0.249968,0,0);}
.mea_c00161{transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);}
.mf2_c00161{transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);}
.mf4_c00161{transform:matrix(0.146320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146320,0.000000,0.000000,0.250000,0,0);}
.m98_c00161{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.mca_c00161{transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);}
.mda_c00161{transform:matrix(0.148445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148445,0.000000,0.000000,0.250000,0,0);}
.mc0_c00161{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.150436,-0.002407,0.003999,0.249968,0,0);-ms-transform:matrix(0.150436,-0.002407,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150436,-0.002407,0.003999,0.249968,0,0);}
.m33_c00161{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.mf7_c00161{transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150980,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.151526,-0.001667,0.002750,0.249985,0,0);-ms-transform:matrix(0.151526,-0.001667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151526,-0.001667,0.002750,0.249985,0,0);}
.m2e_c00161{transform:matrix(0.152690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152690,0.000000,0.000000,0.250000,0,0);}
.mf3_c00161{transform:matrix(0.153095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153095,0.000000,0.000000,0.250000,0,0);}
.md6_c00161{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.me4_c00161{transform:matrix(0.154718,-0.002321,0.003750,0.249972,0,0);-ms-transform:matrix(0.154718,-0.002321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154718,-0.002321,0.003750,0.249972,0,0);}
.m12_c00161{transform:matrix(0.155160,-0.002483,0.003999,0.249968,0,0);-ms-transform:matrix(0.155160,-0.002483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155160,-0.002483,0.003999,0.249968,0,0);}
.m29_c00161{transform:matrix(0.156095,-0.002498,0.003999,0.249968,0,0);-ms-transform:matrix(0.156095,-0.002498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156095,-0.002498,0.003999,0.249968,0,0);}
.mf9_c00161{transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.158905,-0.002542,0.003999,0.249968,0,0);-ms-transform:matrix(0.158905,-0.002542,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158905,-0.002542,0.003999,0.249968,0,0);}
.mcf_c00161{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.159150,-0.002546,0.003999,0.249968,0,0);-ms-transform:matrix(0.159150,-0.002546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159150,-0.002546,0.003999,0.249968,0,0);}
.mf1_c00161{transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);}
.m65_c00161{transform:matrix(0.160705,-0.001768,0.002750,0.249985,0,0);-ms-transform:matrix(0.160705,-0.001768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160705,-0.001768,0.002750,0.249985,0,0);}
.m5_c00161{transform:matrix(0.160769,-0.002572,0.003999,0.249968,0,0);-ms-transform:matrix(0.160769,-0.002572,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160769,-0.002572,0.003999,0.249968,0,0);}
.mc5_c00161{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.161745,-0.001779,0.002750,0.249985,0,0);-ms-transform:matrix(0.161745,-0.001779,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161745,-0.001779,0.002750,0.249985,0,0);}
.m19_c00161{transform:matrix(0.161764,-0.002588,0.003999,0.249968,0,0);-ms-transform:matrix(0.161764,-0.002588,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161764,-0.002588,0.003999,0.249968,0,0);}
.m3_c00161{transform:matrix(0.161814,-0.002589,0.003999,0.249968,0,0);-ms-transform:matrix(0.161814,-0.002589,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161814,-0.002589,0.003999,0.249968,0,0);}
.md9_c00161{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);-ms-transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);}
.mb1_c00161{transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);}
.mfc_c00161{transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);}
.mcc_c00161{transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(0.165890,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165890,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165890,-0.001825,0.002750,0.249985,0,0);}
.m3d_c00161{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.167109,-0.002674,0.003999,0.249968,0,0);-ms-transform:matrix(0.167109,-0.002674,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167109,-0.002674,0.003999,0.249968,0,0);}
.md1_c00161{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.167714,-0.002683,0.003999,0.249968,0,0);-ms-transform:matrix(0.167714,-0.002683,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167714,-0.002683,0.003999,0.249968,0,0);}
.mee_c00161{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m88_c00161{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.mbd_c00161{transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.169825,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169825,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169825,-0.001868,0.002750,0.249985,0,0);}
.me7_c00161{transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);}
.md7_c00161{transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);}
.m63_c00161{transform:matrix(0.171300,-0.001884,0.002750,0.249985,0,0);-ms-transform:matrix(0.171300,-0.001884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171300,-0.001884,0.002750,0.249985,0,0);}
.mbc_c00161{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{transform:matrix(0.172105,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172105,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172105,-0.001893,0.002750,0.249985,0,0);}
.m7a_c00161{transform:matrix(0.172565,-0.001898,0.002750,0.249985,0,0);-ms-transform:matrix(0.172565,-0.001898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172565,-0.001898,0.002750,0.249985,0,0);}
.mb4_c00161{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);}
.mcd_c00161{transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.173788,-0.002781,0.003999,0.249968,0,0);-ms-transform:matrix(0.173788,-0.002781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173788,-0.002781,0.003999,0.249968,0,0);}
.m75_c00161{transform:matrix(0.173914,-0.001913,0.002750,0.249985,0,0);-ms-transform:matrix(0.173914,-0.001913,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173914,-0.001913,0.002750,0.249985,0,0);}
.mc9_c00161{transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);}
.mfa_c00161{transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);}
.m99_c00161{transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.175817,-0.002813,0.003999,0.249968,0,0);-ms-transform:matrix(0.175817,-0.002813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175817,-0.002813,0.003999,0.249968,0,0);}
.me9_c00161{transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);}
.m36_c00161{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.meb_c00161{transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);}
.m9e_c00161{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00161{transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);}
.m8e_c00161{transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);}
.m6e_c00161{transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176604,-0.001943,0.002750,0.249985,0,0);}
.m15_c00161{transform:matrix(0.176662,-0.002827,0.003999,0.249968,0,0);-ms-transform:matrix(0.176662,-0.002827,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176662,-0.002827,0.003999,0.249968,0,0);}
.m85_c00161{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.177254,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177254,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177254,-0.001950,0.002750,0.249985,0,0);}
.m9_c00161{transform:matrix(0.177357,-0.002838,0.003999,0.249968,0,0);-ms-transform:matrix(0.177357,-0.002838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177357,-0.002838,0.003999,0.249968,0,0);}
.me2_c00161{transform:matrix(0.177435,-0.002662,0.003750,0.249972,0,0);-ms-transform:matrix(0.177435,-0.002662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177435,-0.002662,0.003750,0.249972,0,0);}
.m27_c00161{transform:matrix(0.177652,-0.002842,0.003999,0.249968,0,0);-ms-transform:matrix(0.177652,-0.002842,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177652,-0.002842,0.003999,0.249968,0,0);}
.mdc_c00161{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.mb5_c00161{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m95_c00161{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00161{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00161{transform:matrix(0.178509,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178509,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178509,-0.001964,0.002750,0.249985,0,0);}
.m62_c00161{transform:matrix(0.178514,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178514,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178514,-0.001964,0.002750,0.249985,0,0);}
.mba_c00161{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);-ms-transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);}
.m46_c00161{transform:matrix(0.179929,-0.001979,0.002750,0.249985,0,0);-ms-transform:matrix(0.179929,-0.001979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179929,-0.001979,0.002750,0.249985,0,0);}
.m94_c00161{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);}
.mc3_c00161{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.md3_c00161{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.180452,-0.002887,0.003999,0.249968,0,0);-ms-transform:matrix(0.180452,-0.002887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180452,-0.002887,0.003999,0.249968,0,0);}
.mad_c00161{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.181937,-0.002911,0.003999,0.249968,0,0);-ms-transform:matrix(0.181937,-0.002911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181937,-0.002911,0.003999,0.249968,0,0);}
.m80_c00161{transform:matrix(0.182219,-0.002004,0.002750,0.249985,0,0);-ms-transform:matrix(0.182219,-0.002004,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182219,-0.002004,0.002750,0.249985,0,0);}
.m61_c00161{transform:matrix(0.182294,-0.002005,0.002750,0.249985,0,0);-ms-transform:matrix(0.182294,-0.002005,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182294,-0.002005,0.002750,0.249985,0,0);}
.m93_c00161{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{transform:matrix(0.183159,-0.002015,0.002750,0.249985,0,0);-ms-transform:matrix(0.183159,-0.002015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183159,-0.002015,0.002750,0.249985,0,0);}
.m58_c00161{transform:matrix(0.183169,-0.002015,0.002750,0.249985,0,0);-ms-transform:matrix(0.183169,-0.002015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183169,-0.002015,0.002750,0.249985,0,0);}
.md2_c00161{transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.183664,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183664,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183664,-0.002020,0.002750,0.249985,0,0);}
.ma3_c00161{transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.184311,-0.002949,0.003999,0.249968,0,0);-ms-transform:matrix(0.184311,-0.002949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184311,-0.002949,0.003999,0.249968,0,0);}
.med_c00161{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.184549,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184549,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184549,-0.002030,0.002750,0.249985,0,0);}
.m1_c00161{transform:matrix(0.184601,-0.002954,0.003999,0.249968,0,0);-ms-transform:matrix(0.184601,-0.002954,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184601,-0.002954,0.003999,0.249968,0,0);}
.m48_c00161{transform:matrix(0.185309,-0.002038,0.002750,0.249985,0,0);-ms-transform:matrix(0.185309,-0.002038,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185309,-0.002038,0.002750,0.249985,0,0);}
.m31_c00161{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.mce_c00161{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m7d_c00161{transform:matrix(0.186394,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186394,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186394,-0.002050,0.002750,0.249985,0,0);}
.m68_c00161{transform:matrix(0.186509,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186509,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186509,-0.002052,0.002750,0.249985,0,0);}
.m16_c00161{transform:matrix(0.186841,-0.002989,0.003999,0.249968,0,0);-ms-transform:matrix(0.186841,-0.002989,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186841,-0.002989,0.003999,0.249968,0,0);}
.m6f_c00161{transform:matrix(0.187204,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187204,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187204,-0.002059,0.002750,0.249985,0,0);}
.m66_c00161{transform:matrix(0.187389,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187389,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187389,-0.002061,0.002750,0.249985,0,0);}
.mb8_c00161{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.md4_c00161{transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.188736,-0.003020,0.003999,0.249968,0,0);-ms-transform:matrix(0.188736,-0.003020,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188736,-0.003020,0.003999,0.249968,0,0);}
.mc6_c00161{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.mc1_c00161{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);}
.me3_c00161{transform:matrix(0.191014,-0.002865,0.003750,0.249972,0,0);-ms-transform:matrix(0.191014,-0.002865,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191014,-0.002865,0.003750,0.249972,0,0);}
.m6c_c00161{transform:matrix(0.191803,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191803,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191803,-0.002110,0.002750,0.249985,0,0);}
.mdb_c00161{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);}
.me6_c00161{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.192415,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192415,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192415,-0.003079,0.003999,0.249968,0,0);}
.mf6_c00161{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.193350,-0.003094,0.003999,0.249968,0,0);-ms-transform:matrix(0.193350,-0.003094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193350,-0.003094,0.003999,0.249968,0,0);}
.maa_c00161{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mc4_c00161{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.194248,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194248,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194248,-0.002137,0.002750,0.249985,0,0);}
.m1e_c00161{transform:matrix(0.194365,-0.003110,0.003999,0.249968,0,0);-ms-transform:matrix(0.194365,-0.003110,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194365,-0.003110,0.003999,0.249968,0,0);}
.m7c_c00161{transform:matrix(0.194388,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194388,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194388,-0.002138,0.002750,0.249985,0,0);}
.ma2_c00161{transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);}
.ma7_c00161{transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);-ms-transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);}
.m83_c00161{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.mdd_c00161{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.195623,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195623,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195623,-0.002152,0.002750,0.249985,0,0);}
.mcb_c00161{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.ma4_c00161{transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);}
.me8_c00161{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.ma8_c00161{transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m90_c00161{transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.197190,-0.003155,0.003999,0.249968,0,0);-ms-transform:matrix(0.197190,-0.003155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197190,-0.003155,0.003999,0.249968,0,0);}
.mb3_c00161{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.197443,-0.002172,0.002750,0.249985,0,0);-ms-transform:matrix(0.197443,-0.002172,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197443,-0.002172,0.002750,0.249985,0,0);}
.m9b_c00161{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.198260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198260,0.000000,0.000000,0.250000,0,0);}
.m97_c00161{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m6d_c00161{transform:matrix(0.198873,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198873,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198873,-0.002188,0.002750,0.249985,0,0);}
.m4e_c00161{transform:matrix(0.199493,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199493,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199493,-0.002194,0.002750,0.249985,0,0);}
.m34_c00161{transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199660,0.000000,0.000000,0.250000,0,0);}
.mb6_c00161{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.200249,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200249,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200249,-0.003204,0.003999,0.249968,0,0);}
.m76_c00161{transform:matrix(0.200663,-0.002207,0.002750,0.249985,0,0);-ms-transform:matrix(0.200663,-0.002207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200663,-0.002207,0.002750,0.249985,0,0);}
.m1b_c00161{transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);-ms-transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);}
.m20_c00161{transform:matrix(0.200839,-0.003213,0.003999,0.249968,0,0);-ms-transform:matrix(0.200839,-0.003213,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200839,-0.003213,0.003999,0.249968,0,0);}
.md_c00161{transform:matrix(0.200944,-0.003215,0.003999,0.249968,0,0);-ms-transform:matrix(0.200944,-0.003215,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200944,-0.003215,0.003999,0.249968,0,0);}
.mbe_c00161{transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.201363,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201363,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201363,-0.002215,0.002750,0.249985,0,0);}
.m51_c00161{transform:matrix(0.201808,-0.002220,0.002750,0.249985,0,0);-ms-transform:matrix(0.201808,-0.002220,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201808,-0.002220,0.002750,0.249985,0,0);}
.m47_c00161{transform:matrix(0.202003,-0.002222,0.002750,0.249985,0,0);-ms-transform:matrix(0.202003,-0.002222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202003,-0.002222,0.002750,0.249985,0,0);}
.m84_c00161{transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.202574,-0.003241,0.003999,0.249968,0,0);-ms-transform:matrix(0.202574,-0.003241,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202574,-0.003241,0.003999,0.249968,0,0);}
.mab_c00161{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{transform:matrix(0.202968,-0.002233,0.002750,0.249985,0,0);-ms-transform:matrix(0.202968,-0.002233,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202968,-0.002233,0.002750,0.249985,0,0);}
.mde_c00161{transform:matrix(0.202997,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202997,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202997,-0.003045,0.003750,0.249972,0,0);}
.m96_c00161{transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.mbf_c00161{transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.203624,-0.003258,0.003999,0.249968,0,0);-ms-transform:matrix(0.203624,-0.003258,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203624,-0.003258,0.003999,0.249968,0,0);}
.m59_c00161{transform:matrix(0.203898,-0.002243,0.002750,0.249985,0,0);-ms-transform:matrix(0.203898,-0.002243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203898,-0.002243,0.002750,0.249985,0,0);}
.mf8_c00161{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00161{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00161{transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.204599,-0.003274,0.003999,0.249968,0,0);-ms-transform:matrix(0.204599,-0.003274,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204599,-0.003274,0.003999,0.249968,0,0);}
.mb_c00161{transform:matrix(0.204944,-0.003279,0.003999,0.249968,0,0);-ms-transform:matrix(0.204944,-0.003279,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204944,-0.003279,0.003999,0.249968,0,0);}
.m89_c00161{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.md5_c00161{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m92_c00161{transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);}
.m8d_c00161{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.mb9_c00161{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.md0_c00161{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m79_c00161{transform:matrix(0.207857,-0.002286,0.002750,0.249985,0,0);-ms-transform:matrix(0.207857,-0.002286,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207857,-0.002286,0.002750,0.249985,0,0);}
.m91_c00161{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{transform:matrix(0.208802,-0.002297,0.002750,0.249985,0,0);-ms-transform:matrix(0.208802,-0.002297,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208802,-0.002297,0.002750,0.249985,0,0);}
.m56_c00161{transform:matrix(0.208927,-0.002298,0.002750,0.249985,0,0);-ms-transform:matrix(0.208927,-0.002298,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208927,-0.002298,0.002750,0.249985,0,0);}
.m70_c00161{transform:matrix(0.209167,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209167,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209167,-0.002301,0.002750,0.249985,0,0);}
.m9d_c00161{transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);}
.ma5_c00161{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m82_c00161{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.mb7_c00161{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.me5_c00161{transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);-ms-transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);}
.mfd_c00161{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.210742,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210742,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210742,-0.002318,0.002750,0.249985,0,0);}
.m78_c00161{transform:matrix(0.210817,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210817,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210817,-0.002319,0.002750,0.249985,0,0);}
.m3f_c00161{transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.211353,-0.003382,0.003999,0.249968,0,0);-ms-transform:matrix(0.211353,-0.003382,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211353,-0.003382,0.003999,0.249968,0,0);}
.mdf_c00161{transform:matrix(0.211846,-0.003178,0.003750,0.249972,0,0);-ms-transform:matrix(0.211846,-0.003178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211846,-0.003178,0.003750,0.249972,0,0);}
.mec_c00161{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.212412,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212412,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212412,-0.002337,0.002750,0.249985,0,0);}
.m43_c00161{transform:matrix(0.212582,-0.002338,0.002750,0.249985,0,0);-ms-transform:matrix(0.212582,-0.002338,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212582,-0.002338,0.002750,0.249985,0,0);}
.me0_c00161{transform:matrix(0.212596,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212596,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212596,-0.003189,0.003750,0.249972,0,0);}
.m9f_c00161{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.md8_c00161{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.214187,-0.002356,0.002750,0.249985,0,0);-ms-transform:matrix(0.214187,-0.002356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214187,-0.002356,0.002750,0.249985,0,0);}
.ma1_c00161{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.214867,-0.003438,0.003999,0.249968,0,0);-ms-transform:matrix(0.214867,-0.003438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214867,-0.003438,0.003999,0.249968,0,0);}
.m60_c00161{transform:matrix(0.215062,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215062,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215062,-0.002366,0.002750,0.249985,0,0);}
.m21_c00161{transform:matrix(0.215307,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215307,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215307,-0.003445,0.003999,0.249968,0,0);}
.mbb_c00161{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{transform:matrix(0.215772,-0.002373,0.002750,0.249985,0,0);-ms-transform:matrix(0.215772,-0.002373,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215772,-0.002373,0.002750,0.249985,0,0);}
.m1c_c00161{transform:matrix(0.216752,-0.003468,0.003999,0.249968,0,0);-ms-transform:matrix(0.216752,-0.003468,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216752,-0.003468,0.003999,0.249968,0,0);}
.m57_c00161{transform:matrix(0.216767,-0.002384,0.002750,0.249985,0,0);-ms-transform:matrix(0.216767,-0.002384,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216767,-0.002384,0.002750,0.249985,0,0);}
.m8a_c00161{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.m8c_c00161{transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.219317,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219317,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219317,-0.002412,0.002750,0.249985,0,0);}
.m8f_c00161{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00161{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);}
.m6b_c00161{transform:matrix(0.224621,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224621,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224621,-0.002471,0.002750,0.249985,0,0);}
.me1_c00161{transform:matrix(0.224970,-0.003375,0.003750,0.249972,0,0);-ms-transform:matrix(0.224970,-0.003375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224970,-0.003375,0.003750,0.249972,0,0);}
.ma6_c00161{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.227216,-0.002499,0.002750,0.249985,0,0);-ms-transform:matrix(0.227216,-0.002499,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227216,-0.002499,0.002750,0.249985,0,0);}
.m5a_c00161{transform:matrix(0.228041,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.228041,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228041,-0.002508,0.002750,0.249985,0,0);}
.mac_c00161{transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);}
.mae_c00161{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00161{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{transform:matrix(0.230755,-0.003692,0.003999,0.249968,0,0);-ms-transform:matrix(0.230755,-0.003692,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230755,-0.003692,0.003999,0.249968,0,0);}
.ma9_c00161{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.232456,-0.002557,0.002750,0.249985,0,0);-ms-transform:matrix(0.232456,-0.002557,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232456,-0.002557,0.002750,0.249985,0,0);}
.m50_c00161{transform:matrix(0.234141,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234141,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234141,-0.002576,0.002750,0.249985,0,0);}
.m5f_c00161{transform:matrix(0.234456,-0.002579,0.002750,0.249985,0,0);-ms-transform:matrix(0.234456,-0.002579,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234456,-0.002579,0.002750,0.249985,0,0);}
.m3b_c00161{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);-ms-transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);}
.m5e_c00161{transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);-ms-transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);}
.m9a_c00161{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.mb0_c00161{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.mf0_c00161{transform:matrix(0.269760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269760,0.000000,0.000000,0.250000,0,0);}
.mef_c00161{transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);}
.maf_c00161{transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{transform:matrix(0.338150,-0.003720,0.002750,0.249985,0,0);-ms-transform:matrix(0.338150,-0.003720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.338150,-0.003720,0.002750,0.249985,0,0);}
.mc7_c00161{transform:matrix(0.338440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338440,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.549850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549850,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.644203,-0.010307,0.003999,0.249968,0,0);-ms-transform:matrix(0.644203,-0.010307,0.003999,0.249968,0,0);-webkit-transform:matrix(0.644203,-0.010307,0.003999,0.249968,0,0);}
.m4c_c00161{transform:matrix(0.729451,-0.008024,0.002750,0.249985,0,0);-ms-transform:matrix(0.729451,-0.008024,0.002750,0.249985,0,0);-webkit-transform:matrix(0.729451,-0.008024,0.002750,0.249985,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:0.000000px;}
.fc0_c00161{color:transparent;}
.fsb_c00161{font-size:58.803557px;}
.fsf_c00161{font-size:59.850000px;}
.fs10_c00161{font-size:60.900000px;}
.fsa_c00161{font-size:60.903684px;}
.fs11_c00161{font-size:61.950000px;}
.fs9_c00161{font-size:61.953748px;}
.fs13_c00161{font-size:61.956969px;}
.fs4_c00161{font-size:61.957929px;}
.fs7_c00161{font-size:63.000000px;}
.fsd_c00161{font-size:63.003811px;}
.fs2_c00161{font-size:64.058198px;}
.fs8_c00161{font-size:65.100000px;}
.fse_c00161{font-size:65.103938px;}
.fs0_c00161{font-size:66.150000px;}
.fs6_c00161{font-size:67.200000px;}
.fsc_c00161{font-size:67.204065px;}
.fs5_c00161{font-size:68.258735px;}
.fs12_c00161{font-size:69.300000px;}
.fs3_c00161{font-size:69.308870px;}
.fs15_c00161{font-size:71.400000px;}
.fs1_c00161{font-size:71.409139px;}
.fs14_c00161{font-size:72.450000px;}
.fs16_c00161{font-size:73.500000px;}
.y0_c00161{bottom:0.000000px;}
.yb2_c00161{bottom:24.031500px;}
.yb3_c00161{bottom:24.582000px;}
.yb4_c00161{bottom:24.763500px;}
.yb5_c00161{bottom:25.036500px;}
.yb6_c00161{bottom:25.549500px;}
.yb7_c00161{bottom:25.755000px;}
.yb8_c00161{bottom:26.364000px;}
.yb9_c00161{bottom:26.499000px;}
.yba_c00161{bottom:26.992500px;}
.yaa_c00161{bottom:41.581500px;}
.yab_c00161{bottom:41.866500px;}
.yac_c00161{bottom:42.432000px;}
.yad_c00161{bottom:42.678000px;}
.yae_c00161{bottom:42.883500px;}
.yaf_c00161{bottom:43.368000px;}
.yb0_c00161{bottom:43.834500px;}
.yb1_c00161{bottom:44.205000px;}
.ya9_c00161{bottom:59.685000px;}
.ya1_c00161{bottom:75.603000px;}
.ya2_c00161{bottom:77.073285px;}
.ya3_c00161{bottom:77.376810px;}
.ya4_c00161{bottom:78.343365px;}
.ya5_c00161{bottom:78.575408px;}
.ya6_c00161{bottom:78.829433px;}
.ya7_c00161{bottom:79.262670px;}
.ya8_c00161{bottom:79.580123px;}
.y9b_c00161{bottom:92.610000px;}
.y9c_c00161{bottom:93.367500px;}
.y9d_c00161{bottom:93.618000px;}
.y9e_c00161{bottom:94.201500px;}
.y9f_c00161{bottom:95.344500px;}
.ya0_c00161{bottom:95.649000px;}
.y8f_c00161{bottom:109.891500px;}
.y90_c00161{bottom:110.145000px;}
.y91_c00161{bottom:110.701500px;}
.y92_c00161{bottom:111.042000px;}
.y93_c00161{bottom:111.468000px;}
.y94_c00161{bottom:111.688500px;}
.y95_c00161{bottom:111.937500px;}
.y96_c00161{bottom:112.527000px;}
.y97_c00161{bottom:112.776000px;}
.y98_c00161{bottom:113.545500px;}
.y99_c00161{bottom:113.731500px;}
.y9a_c00161{bottom:113.973000px;}
.y88_c00161{bottom:127.713000px;}
.y89_c00161{bottom:128.061000px;}
.y8a_c00161{bottom:128.800500px;}
.y8b_c00161{bottom:129.217500px;}
.y8c_c00161{bottom:129.882000px;}
.y8d_c00161{bottom:130.947000px;}
.y8e_c00161{bottom:131.227500px;}
.y7e_c00161{bottom:144.723000px;}
.y7f_c00161{bottom:145.081500px;}
.y80_c00161{bottom:145.366500px;}
.y81_c00161{bottom:145.603500px;}
.y82_c00161{bottom:146.536500px;}
.y83_c00161{bottom:146.964000px;}
.y84_c00161{bottom:147.171000px;}
.y85_c00161{bottom:147.532500px;}
.y86_c00161{bottom:147.880500px;}
.y87_c00161{bottom:148.095000px;}
.y76_c00161{bottom:162.541500px;}
.y77_c00161{bottom:163.200000px;}
.y78_c00161{bottom:163.408500px;}
.y79_c00161{bottom:163.573500px;}
.y7a_c00161{bottom:163.849500px;}
.y7b_c00161{bottom:164.427000px;}
.y7c_c00161{bottom:164.958000px;}
.y7d_c00161{bottom:165.244500px;}
.y75_c00161{bottom:182.350500px;}
.y74_c00161{bottom:199.720500px;}
.y73_c00161{bottom:216.606000px;}
.y72_c00161{bottom:234.957000px;}
.y71_c00161{bottom:252.295500px;}
.y70_c00161{bottom:269.778000px;}
.y6e_c00161{bottom:286.718577px;}
.y6f_c00161{bottom:286.718874px;}
.y6d_c00161{bottom:303.600195px;}
.y6a_c00161{bottom:303.600354px;}
.y6c_c00161{bottom:303.600721px;}
.y69_c00161{bottom:303.600747px;}
.y6b_c00161{bottom:303.600904px;}
.y68_c00161{bottom:303.601306px;}
.y67_c00161{bottom:303.601653px;}
.y5f_c00161{bottom:319.402411px;}
.y60_c00161{bottom:319.699623px;}
.y61_c00161{bottom:320.384524px;}
.y62_c00161{bottom:320.549623px;}
.y63_c00161{bottom:320.793121px;}
.y64_c00161{bottom:321.040960px;}
.y65_c00161{bottom:321.929541px;}
.y66_c00161{bottom:322.199524px;}
.y57_c00161{bottom:336.416895px;}
.y58_c00161{bottom:336.601251px;}
.y59_c00161{bottom:337.326696px;}
.y5a_c00161{bottom:338.175352px;}
.y5b_c00161{bottom:338.405772px;}
.y5c_c00161{bottom:339.147385px;}
.y5d_c00161{bottom:339.441639px;}
.y5e_c00161{bottom:339.770836px;}
.y50_c00161{bottom:354.239373px;}
.y51_c00161{bottom:354.837125px;}
.y52_c00161{bottom:355.049521px;}
.y53_c00161{bottom:355.447181px;}
.y54_c00161{bottom:356.584866px;}
.y55_c00161{bottom:357.514542px;}
.y56_c00161{bottom:358.430097px;}
.y4d_c00161{bottom:373.266775px;}
.y49_c00161{bottom:373.266905px;}
.y4f_c00161{bottom:373.266936px;}
.y48_c00161{bottom:373.267118px;}
.y4b_c00161{bottom:373.267365px;}
.y4c_c00161{bottom:373.267439px;}
.y4a_c00161{bottom:373.267458px;}
.y4e_c00161{bottom:373.267523px;}
.y44_c00161{bottom:390.512751px;}
.y43_c00161{bottom:390.513068px;}
.y41_c00161{bottom:390.513180px;}
.y3f_c00161{bottom:390.513183px;}
.y42_c00161{bottom:390.513237px;}
.y45_c00161{bottom:390.513425px;}
.y46_c00161{bottom:390.513452px;}
.y47_c00161{bottom:390.513795px;}
.y40_c00161{bottom:390.513797px;}
.y38_c00161{bottom:406.892226px;}
.y39_c00161{bottom:407.309594px;}
.y3a_c00161{bottom:407.891879px;}
.y3b_c00161{bottom:408.856980px;}
.y3c_c00161{bottom:409.099876px;}
.y3d_c00161{bottom:409.613885px;}
.y3e_c00161{bottom:410.050871px;}
.y2f_c00161{bottom:424.711500px;}
.y30_c00161{bottom:425.353185px;}
.y31_c00161{bottom:425.694752px;}
.y32_c00161{bottom:425.899632px;}
.y33_c00161{bottom:426.312413px;}
.y34_c00161{bottom:426.573756px;}
.y35_c00161{bottom:426.814310px;}
.y36_c00161{bottom:427.381580px;}
.y37_c00161{bottom:427.735026px;}
.y2e_c00161{bottom:442.261500px;}
.y2d_c00161{bottom:459.921000px;}
.y2c_c00161{bottom:476.793000px;}
.y23_c00161{bottom:492.470232px;}
.y24_c00161{bottom:492.818076px;}
.y25_c00161{bottom:493.288116px;}
.y26_c00161{bottom:493.645200px;}
.y27_c00161{bottom:494.273424px;}
.y28_c00161{bottom:494.604276px;}
.y29_c00161{bottom:495.158496px;}
.y2a_c00161{bottom:495.352404px;}
.y2b_c00161{bottom:495.699576px;}
.y1c_c00161{bottom:508.944396px;}
.y1d_c00161{bottom:509.916108px;}
.y1e_c00161{bottom:510.113220px;}
.y1f_c00161{bottom:510.439764px;}
.y20_c00161{bottom:511.323300px;}
.y21_c00161{bottom:511.776708px;}
.y22_c00161{bottom:512.415924px;}
.y14_c00161{bottom:525.685860px;}
.y15_c00161{bottom:526.719108px;}
.y16_c00161{bottom:527.049696px;}
.y17_c00161{bottom:527.450208px;}
.y18_c00161{bottom:528.288852px;}
.y19_c00161{bottom:528.726936px;}
.y1a_c00161{bottom:528.995328px;}
.y1b_c00161{bottom:529.906248px;}
.yb_c00161{bottom:542.969640px;}
.yc_c00161{bottom:543.502968px;}
.yd_c00161{bottom:543.933708px;}
.ye_c00161{bottom:544.468284px;}
.yf_c00161{bottom:545.099940px;}
.y10_c00161{bottom:545.387136px;}
.y11_c00161{bottom:545.901420px;}
.y12_c00161{bottom:546.315204px;}
.y13_c00161{bottom:547.293492px;}
.y2_c00161{bottom:560.253000px;}
.y3_c00161{bottom:561.099960px;}
.y4_c00161{bottom:561.496872px;}
.y5_c00161{bottom:562.132344px;}
.y6_c00161{bottom:563.234328px;}
.y7_c00161{bottom:563.480616px;}
.y8_c00161{bottom:564.132912px;}
.y9_c00161{bottom:564.456936px;}
.ya_c00161{bottom:564.719328px;}
.y1_c00161{bottom:580.230000px;}
.hd_c00161{height:58.803557px;}
.h11_c00161{height:59.850000px;}
.h12_c00161{height:60.900000px;}
.hc_c00161{height:60.903684px;}
.h13_c00161{height:61.950000px;}
.hb_c00161{height:61.953748px;}
.h15_c00161{height:61.956969px;}
.h6_c00161{height:61.957929px;}
.h9_c00161{height:63.000000px;}
.hf_c00161{height:63.003811px;}
.h4_c00161{height:64.058198px;}
.ha_c00161{height:65.100000px;}
.h10_c00161{height:65.103938px;}
.h2_c00161{height:66.150000px;}
.h8_c00161{height:67.200000px;}
.he_c00161{height:67.204065px;}
.h7_c00161{height:68.258735px;}
.h14_c00161{height:69.300000px;}
.h5_c00161{height:69.308870px;}
.h17_c00161{height:71.400000px;}
.h3_c00161{height:71.409139px;}
.h16_c00161{height:72.450000px;}
.h18_c00161{height:73.500000px;}
.h0_c00161{height:623.100000px;}
.h1_c00161{height:623.250000px;}
.w1_c00161{width:383.250000px;}
.w0_c00161{width:383.400000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:48.807000px;}
.x4d_c00161{left:49.870235px;}
.x29_c00161{left:51.570000px;}
.x81_c00161{left:52.759500px;}
.x24_c00161{left:56.970000px;}
.x59_c00161{left:58.590000px;}
.x37_c00161{left:61.153500px;}
.x50_c00161{left:64.964056px;}
.x7d_c00161{left:66.150000px;}
.x73_c00161{left:70.101000px;}
.x30_c00161{left:75.330000px;}
.x1e_c00161{left:77.116428px;}
.x2a_c00161{left:78.840000px;}
.x25_c00161{left:82.890000px;}
.xb_c00161{left:84.644604px;}
.x61_c00161{left:86.130000px;}
.x3f_c00161{left:87.356568px;}
.x4e_c00161{left:89.754986px;}
.x5a_c00161{left:96.390000px;}
.x66_c00161{left:98.820000px;}
.x3_c00161{left:101.742000px;}
.x42_c00161{left:103.414749px;}
.x48_c00161{left:105.034131px;}
.x31_c00161{left:108.810000px;}
.x74_c00161{left:109.816500px;}
.xc_c00161{left:113.347560px;}
.x77_c00161{left:114.583500px;}
.x67_c00161{left:116.100000px;}
.x13_c00161{left:117.148896px;}
.x38_c00161{left:119.488500px;}
.x18_c00161{left:123.044184px;}
.x51_c00161{left:125.458396px;}
.x4_c00161{left:126.549000px;}
.x32_c00161{left:127.980000px;}
.x4f_c00161{left:130.349187px;}
.x5b_c00161{left:132.570000px;}
.x75_c00161{left:134.130000px;}
.x78_c00161{left:135.448500px;}
.x19_c00161{left:138.176904px;}
.x14_c00161{left:139.217256px;}
.x2b_c00161{left:140.670000px;}
.x62_c00161{left:142.020000px;}
.x26_c00161{left:144.450000px;}
.x1f_c00161{left:145.972320px;}
.xd_c00161{left:149.009136px;}
.x39_c00161{left:150.540000px;}
.x82_c00161{left:153.216000px;}
.x6e_c00161{left:154.269000px;}
.x43_c00161{left:156.608184px;}
.x27_c00161{left:158.220000px;}
.x72_c00161{left:159.495000px;}
.x1a_c00161{left:163.274604px;}
.x54_c00161{left:164.550151px;}
.x5_c00161{left:166.266000px;}
.x49_c00161{left:167.947238px;}
.x3a_c00161{left:169.165500px;}
.x7b_c00161{left:170.313000px;}
.x68_c00161{left:171.990000px;}
.x5c_c00161{left:174.150000px;}
.x6c_c00161{left:176.040000px;}
.x2c_c00161{left:177.120000px;}
.x33_c00161{left:180.090000px;}
.x1_c00161{left:181.710000px;}
.x79_c00161{left:184.032000px;}
.x55_c00161{left:188.868415px;}
.xe_c00161{left:191.113308px;}
.x52_c00161{left:196.199121px;}
.x20_c00161{left:198.364680px;}
.x70_c00161{left:203.479500px;}
.x7e_c00161{left:205.200000px;}
.x3b_c00161{left:206.691000px;}
.x2d_c00161{left:208.440000px;}
.xf_c00161{left:210.282120px;}
.x56_c00161{left:213.717696px;}
.x53_c00161{left:215.373406px;}
.x5d_c00161{left:216.540000px;}
.x15_c00161{left:221.822076px;}
.x34_c00161{left:223.560000px;}
.x21_c00161{left:225.888432px;}
.x40_c00161{left:228.028068px;}
.x1b_c00161{left:231.248868px;}
.x6_c00161{left:235.140000px;}
.x63_c00161{left:236.520000px;}
.x69_c00161{left:238.950000px;}
.x4a_c00161{left:240.311499px;}
.x44_c00161{left:241.392447px;}
.x2e_c00161{left:242.460000px;}
.x10_c00161{left:244.581672px;}
.x7_c00161{left:250.533000px;}
.x3c_c00161{left:252.318000px;}
.x5e_c00161{left:254.610000px;}
.x7f_c00161{left:256.092000px;}
.x64_c00161{left:257.310000px;}
.x45_c00161{left:262.183455px;}
.x6a_c00161{left:264.330000px;}
.x1c_c00161{left:266.151048px;}
.x7c_c00161{left:267.154500px;}
.x16_c00161{left:268.883820px;}
.x2f_c00161{left:270.270000px;}
.x11_c00161{left:272.131104px;}
.x28_c00161{left:276.750000px;}
.x7a_c00161{left:279.312000px;}
.x6d_c00161{left:283.770000px;}
.x35_c00161{left:285.930000px;}
.x22_c00161{left:288.212916px;}
.x80_c00161{left:289.837500px;}
.x8_c00161{left:291.301500px;}
.x6f_c00161{left:292.753500px;}
.x41_c00161{left:296.837568px;}
.x36_c00161{left:298.890000px;}
.x4b_c00161{left:300.795809px;}
.x46_c00161{left:302.145290px;}
.x3d_c00161{left:303.888000px;}
.x5f_c00161{left:305.910000px;}
.x9_c00161{left:311.553000px;}
.x57_c00161{left:312.672487px;}
.x1d_c00161{left:315.291900px;}
.x23_c00161{left:317.131764px;}
.x6b_c00161{left:318.330000px;}
.x4c_c00161{left:319.426569px;}
.x65_c00161{left:320.490000px;}
.x60_c00161{left:323.730000px;}
.x47_c00161{left:325.906661px;}
.xa_c00161{left:327.952500px;}
.x17_c00161{left:329.567280px;}
.x58_c00161{left:330.763182px;}
.x71_c00161{left:333.324000px;}
.x3e_c00161{left:336.019500px;}
.x12_c00161{left:337.400160px;}
.x76_c00161{left:343.609500px;}
.x83_c00161{left:348.948000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.fsb_c00161{font-size:52.269829pt;}
.fsf_c00161{font-size:53.200000pt;}
.fs10_c00161{font-size:54.133333pt;}
.fsa_c00161{font-size:54.136608pt;}
.fs11_c00161{font-size:55.066667pt;}
.fs9_c00161{font-size:55.069998pt;}
.fs13_c00161{font-size:55.072861pt;}
.fs4_c00161{font-size:55.073715pt;}
.fs7_c00161{font-size:56.000000pt;}
.fsd_c00161{font-size:56.003388pt;}
.fs2_c00161{font-size:56.940620pt;}
.fs8_c00161{font-size:57.866667pt;}
.fse_c00161{font-size:57.870167pt;}
.fs0_c00161{font-size:58.800000pt;}
.fs6_c00161{font-size:59.733333pt;}
.fsc_c00161{font-size:59.736947pt;}
.fs5_c00161{font-size:60.674432pt;}
.fs12_c00161{font-size:61.600000pt;}
.fs3_c00161{font-size:61.607884pt;}
.fs15_c00161{font-size:63.466667pt;}
.fs1_c00161{font-size:63.474790pt;}
.fs14_c00161{font-size:64.400000pt;}
.fs16_c00161{font-size:65.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.yb2_c00161{bottom:21.361333pt;}
.yb3_c00161{bottom:21.850667pt;}
.yb4_c00161{bottom:22.012000pt;}
.yb5_c00161{bottom:22.254667pt;}
.yb6_c00161{bottom:22.710667pt;}
.yb7_c00161{bottom:22.893333pt;}
.yb8_c00161{bottom:23.434667pt;}
.yb9_c00161{bottom:23.554667pt;}
.yba_c00161{bottom:23.993333pt;}
.yaa_c00161{bottom:36.961333pt;}
.yab_c00161{bottom:37.214667pt;}
.yac_c00161{bottom:37.717333pt;}
.yad_c00161{bottom:37.936000pt;}
.yae_c00161{bottom:38.118667pt;}
.yaf_c00161{bottom:38.549333pt;}
.yb0_c00161{bottom:38.964000pt;}
.yb1_c00161{bottom:39.293333pt;}
.ya9_c00161{bottom:53.053333pt;}
.ya1_c00161{bottom:67.202667pt;}
.ya2_c00161{bottom:68.509587pt;}
.ya3_c00161{bottom:68.779387pt;}
.ya4_c00161{bottom:69.638547pt;}
.ya5_c00161{bottom:69.844807pt;}
.ya6_c00161{bottom:70.070607pt;}
.ya7_c00161{bottom:70.455707pt;}
.ya8_c00161{bottom:70.737887pt;}
.y9b_c00161{bottom:82.320000pt;}
.y9c_c00161{bottom:82.993333pt;}
.y9d_c00161{bottom:83.216000pt;}
.y9e_c00161{bottom:83.734667pt;}
.y9f_c00161{bottom:84.750667pt;}
.ya0_c00161{bottom:85.021333pt;}
.y8f_c00161{bottom:97.681333pt;}
.y90_c00161{bottom:97.906667pt;}
.y91_c00161{bottom:98.401333pt;}
.y92_c00161{bottom:98.704000pt;}
.y93_c00161{bottom:99.082667pt;}
.y94_c00161{bottom:99.278667pt;}
.y95_c00161{bottom:99.500000pt;}
.y96_c00161{bottom:100.024000pt;}
.y97_c00161{bottom:100.245333pt;}
.y98_c00161{bottom:100.929333pt;}
.y99_c00161{bottom:101.094667pt;}
.y9a_c00161{bottom:101.309333pt;}
.y88_c00161{bottom:113.522667pt;}
.y89_c00161{bottom:113.832000pt;}
.y8a_c00161{bottom:114.489333pt;}
.y8b_c00161{bottom:114.860000pt;}
.y8c_c00161{bottom:115.450667pt;}
.y8d_c00161{bottom:116.397333pt;}
.y8e_c00161{bottom:116.646667pt;}
.y7e_c00161{bottom:128.642667pt;}
.y7f_c00161{bottom:128.961333pt;}
.y80_c00161{bottom:129.214667pt;}
.y81_c00161{bottom:129.425333pt;}
.y82_c00161{bottom:130.254667pt;}
.y83_c00161{bottom:130.634667pt;}
.y84_c00161{bottom:130.818667pt;}
.y85_c00161{bottom:131.140000pt;}
.y86_c00161{bottom:131.449333pt;}
.y87_c00161{bottom:131.640000pt;}
.y76_c00161{bottom:144.481333pt;}
.y77_c00161{bottom:145.066667pt;}
.y78_c00161{bottom:145.252000pt;}
.y79_c00161{bottom:145.398667pt;}
.y7a_c00161{bottom:145.644000pt;}
.y7b_c00161{bottom:146.157333pt;}
.y7c_c00161{bottom:146.629333pt;}
.y7d_c00161{bottom:146.884000pt;}
.y75_c00161{bottom:162.089333pt;}
.y74_c00161{bottom:177.529333pt;}
.y73_c00161{bottom:192.538667pt;}
.y72_c00161{bottom:208.850667pt;}
.y71_c00161{bottom:224.262667pt;}
.y70_c00161{bottom:239.802667pt;}
.y6e_c00161{bottom:254.860957pt;}
.y6f_c00161{bottom:254.861221pt;}
.y6d_c00161{bottom:269.866840pt;}
.y6a_c00161{bottom:269.866981pt;}
.y6c_c00161{bottom:269.867308pt;}
.y69_c00161{bottom:269.867331pt;}
.y6b_c00161{bottom:269.867471pt;}
.y68_c00161{bottom:269.867828pt;}
.y67_c00161{bottom:269.868136pt;}
.y5f_c00161{bottom:283.913255pt;}
.y60_c00161{bottom:284.177443pt;}
.y61_c00161{bottom:284.786244pt;}
.y62_c00161{bottom:284.932999pt;}
.y63_c00161{bottom:285.149441pt;}
.y64_c00161{bottom:285.369743pt;}
.y65_c00161{bottom:286.159592pt;}
.y66_c00161{bottom:286.399577pt;}
.y57_c00161{bottom:299.037240pt;}
.y58_c00161{bottom:299.201112pt;}
.y59_c00161{bottom:299.845952pt;}
.y5a_c00161{bottom:300.600313pt;}
.y5b_c00161{bottom:300.805131pt;}
.y5c_c00161{bottom:301.464343pt;}
.y5d_c00161{bottom:301.725901pt;}
.y5e_c00161{bottom:302.018521pt;}
.y50_c00161{bottom:314.879443pt;}
.y51_c00161{bottom:315.410777pt;}
.y52_c00161{bottom:315.599575pt;}
.y53_c00161{bottom:315.953049pt;}
.y54_c00161{bottom:316.964325pt;}
.y55_c00161{bottom:317.790704pt;}
.y56_c00161{bottom:318.604531pt;}
.y4d_c00161{bottom:331.792689pt;}
.y49_c00161{bottom:331.792804pt;}
.y4f_c00161{bottom:331.792832pt;}
.y48_c00161{bottom:331.792993pt;}
.y4b_c00161{bottom:331.793213pt;}
.y4c_c00161{bottom:331.793279pt;}
.y4a_c00161{bottom:331.793296pt;}
.y4e_c00161{bottom:331.793353pt;}
.y44_c00161{bottom:347.122445pt;}
.y43_c00161{bottom:347.122727pt;}
.y41_c00161{bottom:347.122827pt;}
.y3f_c00161{bottom:347.122829pt;}
.y42_c00161{bottom:347.122877pt;}
.y45_c00161{bottom:347.123044pt;}
.y46_c00161{bottom:347.123068pt;}
.y47_c00161{bottom:347.123373pt;}
.y40_c00161{bottom:347.123375pt;}
.y38_c00161{bottom:361.681979pt;}
.y39_c00161{bottom:362.052972pt;}
.y3a_c00161{bottom:362.570559pt;}
.y3b_c00161{bottom:363.428427pt;}
.y3c_c00161{bottom:363.644335pt;}
.y3d_c00161{bottom:364.101231pt;}
.y3e_c00161{bottom:364.489663pt;}
.y2f_c00161{bottom:377.521333pt;}
.y30_c00161{bottom:378.091720pt;}
.y31_c00161{bottom:378.395335pt;}
.y32_c00161{bottom:378.577451pt;}
.y33_c00161{bottom:378.944367pt;}
.y34_c00161{bottom:379.176672pt;}
.y35_c00161{bottom:379.390497pt;}
.y36_c00161{bottom:379.894737pt;}
.y37_c00161{bottom:380.208912pt;}
.y2e_c00161{bottom:393.121333pt;}
.y2d_c00161{bottom:408.818667pt;}
.y2c_c00161{bottom:423.816000pt;}
.y23_c00161{bottom:437.751317pt;}
.y24_c00161{bottom:438.060512pt;}
.y25_c00161{bottom:438.478325pt;}
.y26_c00161{bottom:438.795733pt;}
.y27_c00161{bottom:439.354155pt;}
.y28_c00161{bottom:439.648245pt;}
.y29_c00161{bottom:440.140885pt;}
.y2a_c00161{bottom:440.313248pt;}
.y2b_c00161{bottom:440.621845pt;}
.y1c_c00161{bottom:452.395019pt;}
.y1d_c00161{bottom:453.258763pt;}
.y1e_c00161{bottom:453.433973pt;}
.y1f_c00161{bottom:453.724235pt;}
.y20_c00161{bottom:454.509600pt;}
.y21_c00161{bottom:454.912629pt;}
.y22_c00161{bottom:455.480821pt;}
.y14_c00161{bottom:467.276320pt;}
.y15_c00161{bottom:468.194763pt;}
.y16_c00161{bottom:468.488619pt;}
.y17_c00161{bottom:468.844629pt;}
.y18_c00161{bottom:469.590091pt;}
.y19_c00161{bottom:469.979499pt;}
.y1a_c00161{bottom:470.218069pt;}
.y1b_c00161{bottom:471.027776pt;}
.yb_c00161{bottom:482.639680pt;}
.yc_c00161{bottom:483.113749pt;}
.yd_c00161{bottom:483.496629pt;}
.ye_c00161{bottom:483.971808pt;}
.yf_c00161{bottom:484.533280pt;}
.y10_c00161{bottom:484.788565pt;}
.y11_c00161{bottom:485.245707pt;}
.y12_c00161{bottom:485.613515pt;}
.y13_c00161{bottom:486.483104pt;}
.y2_c00161{bottom:498.002667pt;}
.y3_c00161{bottom:498.755520pt;}
.y4_c00161{bottom:499.108331pt;}
.y5_c00161{bottom:499.673195pt;}
.y6_c00161{bottom:500.652736pt;}
.y7_c00161{bottom:500.871659pt;}
.y8_c00161{bottom:501.451477pt;}
.y9_c00161{bottom:501.739499pt;}
.ya_c00161{bottom:501.972736pt;}
.y1_c00161{bottom:515.760000pt;}
.hd_c00161{height:52.269829pt;}
.h11_c00161{height:53.200000pt;}
.h12_c00161{height:54.133333pt;}
.hc_c00161{height:54.136608pt;}
.h13_c00161{height:55.066667pt;}
.hb_c00161{height:55.069998pt;}
.h15_c00161{height:55.072861pt;}
.h6_c00161{height:55.073715pt;}
.h9_c00161{height:56.000000pt;}
.hf_c00161{height:56.003388pt;}
.h4_c00161{height:56.940620pt;}
.ha_c00161{height:57.866667pt;}
.h10_c00161{height:57.870167pt;}
.h2_c00161{height:58.800000pt;}
.h8_c00161{height:59.733333pt;}
.he_c00161{height:59.736947pt;}
.h7_c00161{height:60.674432pt;}
.h14_c00161{height:61.600000pt;}
.h5_c00161{height:61.607884pt;}
.h17_c00161{height:63.466667pt;}
.h3_c00161{height:63.474790pt;}
.h16_c00161{height:64.400000pt;}
.h18_c00161{height:65.333333pt;}
.h0_c00161{height:553.866667pt;}
.h1_c00161{height:554.000000pt;}
.w1_c00161{width:340.666667pt;}
.w0_c00161{width:340.800000pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:43.384000pt;}
.x4d_c00161{left:44.329097pt;}
.x29_c00161{left:45.840000pt;}
.x81_c00161{left:46.897333pt;}
.x24_c00161{left:50.640000pt;}
.x59_c00161{left:52.080000pt;}
.x37_c00161{left:54.358667pt;}
.x50_c00161{left:57.745828pt;}
.x7d_c00161{left:58.800000pt;}
.x73_c00161{left:62.312000pt;}
.x30_c00161{left:66.960000pt;}
.x1e_c00161{left:68.547936pt;}
.x2a_c00161{left:70.080000pt;}
.x25_c00161{left:73.680000pt;}
.xb_c00161{left:75.239648pt;}
.x61_c00161{left:76.560000pt;}
.x3f_c00161{left:77.650283pt;}
.x4e_c00161{left:79.782209pt;}
.x5a_c00161{left:85.680000pt;}
.x66_c00161{left:87.840000pt;}
.x3_c00161{left:90.437333pt;}
.x42_c00161{left:91.924221pt;}
.x48_c00161{left:93.363672pt;}
.x31_c00161{left:96.720000pt;}
.x74_c00161{left:97.614667pt;}
.xc_c00161{left:100.753387pt;}
.x77_c00161{left:101.852000pt;}
.x67_c00161{left:103.200000pt;}
.x13_c00161{left:104.132352pt;}
.x38_c00161{left:106.212000pt;}
.x18_c00161{left:109.372608pt;}
.x51_c00161{left:111.518575pt;}
.x4_c00161{left:112.488000pt;}
.x32_c00161{left:113.760000pt;}
.x4f_c00161{left:115.865944pt;}
.x5b_c00161{left:117.840000pt;}
.x75_c00161{left:119.226667pt;}
.x78_c00161{left:120.398667pt;}
.x19_c00161{left:122.823915pt;}
.x14_c00161{left:123.748672pt;}
.x2b_c00161{left:125.040000pt;}
.x62_c00161{left:126.240000pt;}
.x26_c00161{left:128.400000pt;}
.x1f_c00161{left:129.753173pt;}
.xd_c00161{left:132.452565pt;}
.x39_c00161{left:133.813333pt;}
.x82_c00161{left:136.192000pt;}
.x6e_c00161{left:137.128000pt;}
.x43_c00161{left:139.207275pt;}
.x27_c00161{left:140.640000pt;}
.x72_c00161{left:141.773333pt;}
.x1a_c00161{left:145.132981pt;}
.x54_c00161{left:146.266801pt;}
.x5_c00161{left:147.792000pt;}
.x49_c00161{left:149.286433pt;}
.x3a_c00161{left:150.369333pt;}
.x7b_c00161{left:151.389333pt;}
.x68_c00161{left:152.880000pt;}
.x5c_c00161{left:154.800000pt;}
.x6c_c00161{left:156.480000pt;}
.x2c_c00161{left:157.440000pt;}
.x33_c00161{left:160.080000pt;}
.x1_c00161{left:161.520000pt;}
.x79_c00161{left:163.584000pt;}
.x55_c00161{left:167.883036pt;}
.xe_c00161{left:169.878496pt;}
.x52_c00161{left:174.399219pt;}
.x20_c00161{left:176.324160pt;}
.x70_c00161{left:180.870667pt;}
.x7e_c00161{left:182.400000pt;}
.x3b_c00161{left:183.725333pt;}
.x2d_c00161{left:185.280000pt;}
.xf_c00161{left:186.917440pt;}
.x56_c00161{left:189.971285pt;}
.x53_c00161{left:191.443028pt;}
.x5d_c00161{left:192.480000pt;}
.x15_c00161{left:197.175179pt;}
.x34_c00161{left:198.720000pt;}
.x21_c00161{left:200.789717pt;}
.x40_c00161{left:202.691616pt;}
.x1b_c00161{left:205.554549pt;}
.x6_c00161{left:209.013333pt;}
.x63_c00161{left:210.240000pt;}
.x69_c00161{left:212.400000pt;}
.x4a_c00161{left:213.610221pt;}
.x44_c00161{left:214.571064pt;}
.x2e_c00161{left:215.520000pt;}
.x10_c00161{left:217.405931pt;}
.x7_c00161{left:222.696000pt;}
.x3c_c00161{left:224.282667pt;}
.x5e_c00161{left:226.320000pt;}
.x7f_c00161{left:227.637333pt;}
.x64_c00161{left:228.720000pt;}
.x45_c00161{left:233.051960pt;}
.x6a_c00161{left:234.960000pt;}
.x1c_c00161{left:236.578709pt;}
.x7c_c00161{left:237.470667pt;}
.x16_c00161{left:239.007840pt;}
.x2f_c00161{left:240.240000pt;}
.x11_c00161{left:241.894315pt;}
.x28_c00161{left:246.000000pt;}
.x7a_c00161{left:248.277333pt;}
.x6d_c00161{left:252.240000pt;}
.x35_c00161{left:254.160000pt;}
.x22_c00161{left:256.189259pt;}
.x80_c00161{left:257.633333pt;}
.x8_c00161{left:258.934667pt;}
.x6f_c00161{left:260.225333pt;}
.x41_c00161{left:263.855616pt;}
.x36_c00161{left:265.680000pt;}
.x4b_c00161{left:267.374052pt;}
.x46_c00161{left:268.573591pt;}
.x3d_c00161{left:270.122667pt;}
.x5f_c00161{left:271.920000pt;}
.x9_c00161{left:276.936000pt;}
.x57_c00161{left:277.931100pt;}
.x1d_c00161{left:280.259467pt;}
.x23_c00161{left:281.894901pt;}
.x6b_c00161{left:282.960000pt;}
.x4c_c00161{left:283.934728pt;}
.x65_c00161{left:284.880000pt;}
.x60_c00161{left:287.760000pt;}
.x47_c00161{left:289.694809pt;}
.xa_c00161{left:291.513333pt;}
.x17_c00161{left:292.948693pt;}
.x58_c00161{left:294.011717pt;}
.x71_c00161{left:296.288000pt;}
.x3e_c00161{left:298.684000pt;}
.x12_c00161{left:299.911253pt;}
.x76_c00161{left:305.430667pt;}
.x83_c00161{left:310.176000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00162 {
    display:none;
  }
  .loading-indicator_c00162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00162 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00162 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00162" -> "#page-container .classname_c00162")
 */
.pf_c00162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00162 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00162 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00162 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00162 {overflow:visible;}
  }
}
.c_c00162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00162 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00162:after { /* webkit #35443 */
  content: '';
}
.t_c00162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00162 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00162 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00162 { /* info for Javascript */
  display:none;
}
.l_c00162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00162:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00162 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00162.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00162{transform:matrix(0.012685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.075065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075065,0.000000,0.000000,0.250000,0,0);}
.me3_c00162{transform:matrix(0.128416,0.001926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.128416,0.001926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.128416,0.001926,-0.003750,0.249972,0,0);}
.m3_c00162{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00162{transform:matrix(0.141174,0.002118,-0.003750,0.249972,0,0);-ms-transform:matrix(0.141174,0.002118,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.141174,0.002118,-0.003750,0.249972,0,0);}
.m33_c00162{transform:matrix(0.149268,0.002239,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149268,0.002239,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149268,0.002239,-0.003750,0.249972,0,0);}
.m6d_c00162{transform:matrix(0.149593,0.002244,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149593,0.002244,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149593,0.002244,-0.003750,0.249972,0,0);}
.m9e_c00162{transform:matrix(0.150698,0.002260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150698,0.002260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150698,0.002260,-0.003750,0.249972,0,0);}
.mdd_c00162{transform:matrix(0.153503,0.002303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153503,0.002303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153503,0.002303,-0.003750,0.249972,0,0);}
.ma5_c00162{transform:matrix(0.153543,0.002303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153543,0.002303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153543,0.002303,-0.003750,0.249972,0,0);}
.m10_c00162{transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.155572,0.002334,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155572,0.002334,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155572,0.002334,-0.003750,0.249972,0,0);}
.m31_c00162{transform:matrix(0.156097,0.002341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156097,0.002341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156097,0.002341,-0.003750,0.249972,0,0);}
.m46_c00162{transform:matrix(0.157267,0.002359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157267,0.002359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157267,0.002359,-0.003750,0.249972,0,0);}
.m8c_c00162{transform:matrix(0.160097,0.002401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160097,0.002401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160097,0.002401,-0.003750,0.249972,0,0);}
.m6b_c00162{transform:matrix(0.160252,0.002404,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160252,0.002404,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160252,0.002404,-0.003750,0.249972,0,0);}
.mc_c00162{transform:matrix(0.161685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.162197,0.002433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162197,0.002433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162197,0.002433,-0.003750,0.249972,0,0);}
.m50_c00162{transform:matrix(0.162307,0.002435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162307,0.002435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162307,0.002435,-0.003750,0.249972,0,0);}
.m57_c00162{transform:matrix(0.162337,0.002435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162337,0.002435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162337,0.002435,-0.003750,0.249972,0,0);}
.m22_c00162{transform:matrix(0.162932,0.002444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162932,0.002444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162932,0.002444,-0.003750,0.249972,0,0);}
.m4b_c00162{transform:matrix(0.162942,0.002444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162942,0.002444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162942,0.002444,-0.003750,0.249972,0,0);}
.m59_c00162{transform:matrix(0.163112,0.002447,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163112,0.002447,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163112,0.002447,-0.003750,0.249972,0,0);}
.m9_c00162{transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.163282,0.002449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163282,0.002449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163282,0.002449,-0.003750,0.249972,0,0);}
.m1a_c00162{transform:matrix(0.163615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163615,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.165296,0.002479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165296,0.002479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165296,0.002479,-0.003750,0.249972,0,0);}
.m20_c00162{transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);}
.m12_c00162{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(0.165881,0.002488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165881,0.002488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165881,0.002488,-0.003750,0.249972,0,0);}
.m13_c00162{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.ma2_c00162{transform:matrix(0.166216,0.002493,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166216,0.002493,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166216,0.002493,-0.003750,0.249972,0,0);}
.m39_c00162{transform:matrix(0.166321,0.002495,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166321,0.002495,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166321,0.002495,-0.003750,0.249972,0,0);}
.m7e_c00162{transform:matrix(0.166486,0.002497,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166486,0.002497,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166486,0.002497,-0.003750,0.249972,0,0);}
.m29_c00162{transform:matrix(0.167096,0.002506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167096,0.002506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167096,0.002506,-0.003750,0.249972,0,0);}
.m5d_c00162{transform:matrix(0.167176,0.002508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167176,0.002508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167176,0.002508,-0.003750,0.249972,0,0);}
.m52_c00162{transform:matrix(0.167191,0.002508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167191,0.002508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167191,0.002508,-0.003750,0.249972,0,0);}
.m64_c00162{transform:matrix(0.167746,0.002516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167746,0.002516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167746,0.002516,-0.003750,0.249972,0,0);}
.mae_c00162{transform:matrix(0.167966,0.002519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167966,0.002519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167966,0.002519,-0.003750,0.249972,0,0);}
.m45_c00162{transform:matrix(0.169151,0.002537,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169151,0.002537,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169151,0.002537,-0.003750,0.249972,0,0);}
.mb3_c00162{transform:matrix(0.169476,0.002542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169476,0.002542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169476,0.002542,-0.003750,0.249972,0,0);}
.mac_c00162{transform:matrix(0.169591,0.002544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169591,0.002544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169591,0.002544,-0.003750,0.249972,0,0);}
.mc2_c00162{transform:matrix(0.169711,0.002546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169711,0.002546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169711,0.002546,-0.003750,0.249972,0,0);}
.md_c00162{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{transform:matrix(0.169956,0.002549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169956,0.002549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169956,0.002549,-0.003750,0.249972,0,0);}
.mb_c00162{transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170430,0.000000,0.000000,0.250000,0,0);}
.m95_c00162{transform:matrix(0.170911,0.002564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170911,0.002564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170911,0.002564,-0.003750,0.249972,0,0);}
.mda_c00162{transform:matrix(0.171566,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171566,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171566,0.002573,-0.003750,0.249972,0,0);}
.m44_c00162{transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);}
.m68_c00162{transform:matrix(0.171751,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171751,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171751,0.002576,-0.003750,0.249972,0,0);}
.m77_c00162{transform:matrix(0.171901,0.002579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171901,0.002579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171901,0.002579,-0.003750,0.249972,0,0);}
.mb0_c00162{transform:matrix(0.172251,0.002584,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172251,0.002584,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172251,0.002584,-0.003750,0.249972,0,0);}
.m6c_c00162{transform:matrix(0.173745,0.002606,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173745,0.002606,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173745,0.002606,-0.003750,0.249972,0,0);}
.mcb_c00162{transform:matrix(0.173805,0.002607,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173805,0.002607,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173805,0.002607,-0.003750,0.249972,0,0);}
.mb9_c00162{transform:matrix(0.174345,0.002615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174345,0.002615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174345,0.002615,-0.003750,0.249972,0,0);}
.mdc_c00162{transform:matrix(0.174370,0.002616,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174370,0.002616,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174370,0.002616,-0.003750,0.249972,0,0);}
.maf_c00162{transform:matrix(0.174485,0.002617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174485,0.002617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174485,0.002617,-0.003750,0.249972,0,0);}
.mca_c00162{transform:matrix(0.174515,0.002618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174515,0.002618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174515,0.002618,-0.003750,0.249972,0,0);}
.m11_c00162{transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);}
.me5_c00162{transform:matrix(0.175340,0.002630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175340,0.002630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175340,0.002630,-0.003750,0.249972,0,0);}
.mb4_c00162{transform:matrix(0.176050,0.002641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176050,0.002641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176050,0.002641,-0.003750,0.249972,0,0);}
.m32_c00162{transform:matrix(0.176235,0.002644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176235,0.002644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176235,0.002644,-0.003750,0.249972,0,0);}
.m62_c00162{transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);}
.m1b_c00162{transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176685,0.000000,0.000000,0.250000,0,0);}
.mee_c00162{transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);}
.mc7_c00162{transform:matrix(0.176940,0.002654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176940,0.002654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176940,0.002654,-0.003750,0.249972,0,0);}
.mce_c00162{transform:matrix(0.176965,0.002654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176965,0.002654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176965,0.002654,-0.003750,0.249972,0,0);}
.m3e_c00162{transform:matrix(0.177275,0.002659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177275,0.002659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177275,0.002659,-0.003750,0.249972,0,0);}
.m83_c00162{transform:matrix(0.177435,0.002662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177435,0.002662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177435,0.002662,-0.003750,0.249972,0,0);}
.m51_c00162{transform:matrix(0.177580,0.002664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177580,0.002664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177580,0.002664,-0.003750,0.249972,0,0);}
.m4d_c00162{transform:matrix(0.178280,0.002674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178280,0.002674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178280,0.002674,-0.003750,0.249972,0,0);}
.m53_c00162{transform:matrix(0.178445,0.002677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178445,0.002677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178445,0.002677,-0.003750,0.249972,0,0);}
.me0_c00162{transform:matrix(0.178910,0.002684,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178910,0.002684,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178910,0.002684,-0.003750,0.249972,0,0);}
.m91_c00162{transform:matrix(0.179385,0.002691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179385,0.002691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179385,0.002691,-0.003750,0.249972,0,0);}
.mdb_c00162{transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);}
.mdf_c00162{transform:matrix(0.179830,0.002697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179830,0.002697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179830,0.002697,-0.003750,0.249972,0,0);}
.m23_c00162{transform:matrix(0.180085,0.002701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180085,0.002701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180085,0.002701,-0.003750,0.249972,0,0);}
.me8_c00162{transform:matrix(0.180365,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180365,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180365,0.002705,-0.003750,0.249972,0,0);}
.ma0_c00162{transform:matrix(0.180830,0.002712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180830,0.002712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180830,0.002712,-0.003750,0.249972,0,0);}
.m42_c00162{transform:matrix(0.180905,0.002714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180905,0.002714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180905,0.002714,-0.003750,0.249972,0,0);}
.md7_c00162{transform:matrix(0.180910,0.002714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180910,0.002714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180910,0.002714,-0.003750,0.249972,0,0);}
.mcd_c00162{transform:matrix(0.181220,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181220,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181220,0.002718,-0.003750,0.249972,0,0);}
.m8b_c00162{transform:matrix(0.181415,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181415,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181415,0.002721,-0.003750,0.249972,0,0);}
.m61_c00162{transform:matrix(0.181605,0.002724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181605,0.002724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181605,0.002724,-0.003750,0.249972,0,0);}
.mb1_c00162{transform:matrix(0.181810,0.002727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181810,0.002727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181810,0.002727,-0.003750,0.249972,0,0);}
.ma3_c00162{transform:matrix(0.181885,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181885,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181885,0.002728,-0.003750,0.249972,0,0);}
.m81_c00162{transform:matrix(0.182015,0.002730,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182015,0.002730,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182015,0.002730,-0.003750,0.249972,0,0);}
.m6e_c00162{transform:matrix(0.182140,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182140,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182140,0.002732,-0.003750,0.249972,0,0);}
.m9f_c00162{transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);}
.mc8_c00162{transform:matrix(0.182544,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182544,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182544,0.002738,-0.003750,0.249972,0,0);}
.ma7_c00162{transform:matrix(0.182684,0.002740,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182684,0.002740,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182684,0.002740,-0.003750,0.249972,0,0);}
.m54_c00162{transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182924,0.002744,-0.003750,0.249972,0,0);}
.med_c00162{transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);}
.me_c00162{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.m78_c00162{transform:matrix(0.184489,0.002767,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184489,0.002767,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184489,0.002767,-0.003750,0.249972,0,0);}
.m69_c00162{transform:matrix(0.184529,0.002768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184529,0.002768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184529,0.002768,-0.003750,0.249972,0,0);}
.m6f_c00162{transform:matrix(0.184689,0.002770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184689,0.002770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184689,0.002770,-0.003750,0.249972,0,0);}
.m2a_c00162{transform:matrix(0.184859,0.002773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184859,0.002773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184859,0.002773,-0.003750,0.249972,0,0);}
.ma4_c00162{transform:matrix(0.184909,0.002774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184909,0.002774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184909,0.002774,-0.003750,0.249972,0,0);}
.m97_c00162{transform:matrix(0.185364,0.002780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185364,0.002780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185364,0.002780,-0.003750,0.249972,0,0);}
.m5a_c00162{transform:matrix(0.185614,0.002784,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185614,0.002784,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185614,0.002784,-0.003750,0.249972,0,0);}
.mea_c00162{transform:matrix(0.185744,0.002786,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185744,0.002786,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185744,0.002786,-0.003750,0.249972,0,0);}
.m1f_c00162{transform:matrix(0.186314,0.002795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186314,0.002795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186314,0.002795,-0.003750,0.249972,0,0);}
.m2_c00162{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.mbf_c00162{transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186719,0.002801,-0.003750,0.249972,0,0);}
.mef_c00162{transform:matrix(0.186874,0.002803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186874,0.002803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186874,0.002803,-0.003750,0.249972,0,0);}
.mb7_c00162{transform:matrix(0.187004,0.002805,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187004,0.002805,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187004,0.002805,-0.003750,0.249972,0,0);}
.m65_c00162{transform:matrix(0.187449,0.002812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187449,0.002812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187449,0.002812,-0.003750,0.249972,0,0);}
.md2_c00162{transform:matrix(0.187744,0.002816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187744,0.002816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187744,0.002816,-0.003750,0.249972,0,0);}
.m38_c00162{transform:matrix(0.188824,0.002832,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188824,0.002832,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188824,0.002832,-0.003750,0.249972,0,0);}
.m58_c00162{transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188859,0.002833,-0.003750,0.249972,0,0);}
.ma_c00162{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.189544,0.002843,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189544,0.002843,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189544,0.002843,-0.003750,0.249972,0,0);}
.m4_c00162{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.189879,0.002848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189879,0.002848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189879,0.002848,-0.003750,0.249972,0,0);}
.mde_c00162{transform:matrix(0.189914,0.002849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189914,0.002849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189914,0.002849,-0.003750,0.249972,0,0);}
.mad_c00162{transform:matrix(0.190679,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190679,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190679,0.002860,-0.003750,0.249972,0,0);}
.m34_c00162{transform:matrix(0.190724,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190724,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190724,0.002861,-0.003750,0.249972,0,0);}
.m60_c00162{transform:matrix(0.191303,0.002870,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191303,0.002870,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191303,0.002870,-0.003750,0.249972,0,0);}
.m21_c00162{transform:matrix(0.191643,0.002875,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191643,0.002875,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191643,0.002875,-0.003750,0.249972,0,0);}
.mc5_c00162{transform:matrix(0.191753,0.002876,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191753,0.002876,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191753,0.002876,-0.003750,0.249972,0,0);}
.m7a_c00162{transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192138,0.002882,-0.003750,0.249972,0,0);}
.m56_c00162{transform:matrix(0.192718,0.002891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192718,0.002891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192718,0.002891,-0.003750,0.249972,0,0);}
.m26_c00162{transform:matrix(0.192788,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192788,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192788,0.002892,-0.003750,0.249972,0,0);}
.m5c_c00162{transform:matrix(0.192873,0.002893,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192873,0.002893,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192873,0.002893,-0.003750,0.249972,0,0);}
.m40_c00162{transform:matrix(0.192893,0.002893,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192893,0.002893,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192893,0.002893,-0.003750,0.249972,0,0);}
.m3f_c00162{transform:matrix(0.193033,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193033,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193033,0.002895,-0.003750,0.249972,0,0);}
.me2_c00162{transform:matrix(0.193113,0.002897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193113,0.002897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193113,0.002897,-0.003750,0.249972,0,0);}
.m8d_c00162{transform:matrix(0.193428,0.002901,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193428,0.002901,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193428,0.002901,-0.003750,0.249972,0,0);}
.mb6_c00162{transform:matrix(0.193858,0.002908,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193858,0.002908,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193858,0.002908,-0.003750,0.249972,0,0);}
.m2d_c00162{transform:matrix(0.193898,0.002908,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193898,0.002908,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193898,0.002908,-0.003750,0.249972,0,0);}
.m37_c00162{transform:matrix(0.194873,0.002923,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194873,0.002923,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194873,0.002923,-0.003750,0.249972,0,0);}
.maa_c00162{transform:matrix(0.195043,0.002926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195043,0.002926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195043,0.002926,-0.003750,0.249972,0,0);}
.m4e_c00162{transform:matrix(0.195048,0.002926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195048,0.002926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195048,0.002926,-0.003750,0.249972,0,0);}
.m89_c00162{transform:matrix(0.195453,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195453,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195453,0.002932,-0.003750,0.249972,0,0);}
.m79_c00162{transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);}
.m2b_c00162{transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);}
.ma1_c00162{transform:matrix(0.196093,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196093,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196093,0.002941,-0.003750,0.249972,0,0);}
.m87_c00162{transform:matrix(0.196383,0.002946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196383,0.002946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196383,0.002946,-0.003750,0.249972,0,0);}
.m43_c00162{transform:matrix(0.196393,0.002946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196393,0.002946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196393,0.002946,-0.003750,0.249972,0,0);}
.mf0_c00162{transform:matrix(0.197208,0.002958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197208,0.002958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197208,0.002958,-0.003750,0.249972,0,0);}
.m4a_c00162{transform:matrix(0.197223,0.002958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197223,0.002958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197223,0.002958,-0.003750,0.249972,0,0);}
.ma9_c00162{transform:matrix(0.197538,0.002963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197538,0.002963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197538,0.002963,-0.003750,0.249972,0,0);}
.m30_c00162{transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);}
.m7c_c00162{transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);}
.m63_c00162{transform:matrix(0.198668,0.002980,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198668,0.002980,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198668,0.002980,-0.003750,0.249972,0,0);}
.mec_c00162{transform:matrix(0.198768,0.002982,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198768,0.002982,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198768,0.002982,-0.003750,0.249972,0,0);}
.md8_c00162{transform:matrix(0.199348,0.002990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199348,0.002990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199348,0.002990,-0.003750,0.249972,0,0);}
.m4f_c00162{transform:matrix(0.199458,0.002992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199458,0.002992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199458,0.002992,-0.003750,0.249972,0,0);}
.m7_c00162{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.200012,0.003000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200012,0.003000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200012,0.003000,-0.003750,0.249972,0,0);}
.m9b_c00162{transform:matrix(0.200337,0.003005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200337,0.003005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200337,0.003005,-0.003750,0.249972,0,0);}
.me1_c00162{transform:matrix(0.200507,0.003008,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200507,0.003008,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200507,0.003008,-0.003750,0.249972,0,0);}
.mba_c00162{transform:matrix(0.200817,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200817,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200817,0.003012,-0.003750,0.249972,0,0);}
.md3_c00162{transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);}
.md5_c00162{transform:matrix(0.201767,0.003027,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201767,0.003027,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201767,0.003027,-0.003750,0.249972,0,0);}
.m7b_c00162{transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);}
.m18_c00162{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m96_c00162{transform:matrix(0.202727,0.003041,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202727,0.003041,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202727,0.003041,-0.003750,0.249972,0,0);}
.mcc_c00162{transform:matrix(0.203657,0.003055,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203657,0.003055,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203657,0.003055,-0.003750,0.249972,0,0);}
.m48_c00162{transform:matrix(0.203932,0.003059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203932,0.003059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203932,0.003059,-0.003750,0.249972,0,0);}
.md6_c00162{transform:matrix(0.204867,0.003073,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204867,0.003073,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204867,0.003073,-0.003750,0.249972,0,0);}
.m8_c00162{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{transform:matrix(0.205232,0.003078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205232,0.003078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205232,0.003078,-0.003750,0.249972,0,0);}
.mc4_c00162{transform:matrix(0.205602,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205602,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205602,0.003084,-0.003750,0.249972,0,0);}
.m7f_c00162{transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);}
.me6_c00162{transform:matrix(0.205982,0.003090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205982,0.003090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205982,0.003090,-0.003750,0.249972,0,0);}
.m9a_c00162{transform:matrix(0.206897,0.003103,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206897,0.003103,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206897,0.003103,-0.003750,0.249972,0,0);}
.m84_c00162{transform:matrix(0.207332,0.003110,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207332,0.003110,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207332,0.003110,-0.003750,0.249972,0,0);}
.m2c_c00162{transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207732,0.003116,-0.003750,0.249972,0,0);}
.m17_c00162{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.md1_c00162{transform:matrix(0.208142,0.003122,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208142,0.003122,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208142,0.003122,-0.003750,0.249972,0,0);}
.ma6_c00162{transform:matrix(0.208327,0.003125,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208327,0.003125,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208327,0.003125,-0.003750,0.249972,0,0);}
.m41_c00162{transform:matrix(0.208357,0.003125,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208357,0.003125,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208357,0.003125,-0.003750,0.249972,0,0);}
.m93_c00162{transform:matrix(0.208592,0.003129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208592,0.003129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208592,0.003129,-0.003750,0.249972,0,0);}
.m25_c00162{transform:matrix(0.208612,0.003129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208612,0.003129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208612,0.003129,-0.003750,0.249972,0,0);}
.meb_c00162{transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208752,0.003131,-0.003750,0.249972,0,0);}
.md0_c00162{transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);}
.m99_c00162{transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);}
.m82_c00162{transform:matrix(0.209701,0.003146,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209701,0.003146,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209701,0.003146,-0.003750,0.249972,0,0);}
.mbd_c00162{transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);}
.m19_c00162{transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.212271,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212271,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212271,0.003184,-0.003750,0.249972,0,0);}
.m94_c00162{transform:matrix(0.212516,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212516,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212516,0.003188,-0.003750,0.249972,0,0);}
.mc1_c00162{transform:matrix(0.213011,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213011,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213011,0.003195,-0.003750,0.249972,0,0);}
.m2e_c00162{transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);}
.m3d_c00162{transform:matrix(0.213481,0.003202,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213481,0.003202,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213481,0.003202,-0.003750,0.249972,0,0);}
.m5_c00162{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.mcf_c00162{transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);}
.m3c_c00162{transform:matrix(0.216346,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216346,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216346,0.003245,-0.003750,0.249972,0,0);}
.m8a_c00162{transform:matrix(0.216361,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216361,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216361,0.003245,-0.003750,0.249972,0,0);}
.m6_c00162{transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.216431,0.003246,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216431,0.003246,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216431,0.003246,-0.003750,0.249972,0,0);}
.m92_c00162{transform:matrix(0.216566,0.003248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216566,0.003248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216566,0.003248,-0.003750,0.249972,0,0);}
.m86_c00162{transform:matrix(0.216756,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216756,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216756,0.003251,-0.003750,0.249972,0,0);}
.mc6_c00162{transform:matrix(0.217306,0.003260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217306,0.003260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217306,0.003260,-0.003750,0.249972,0,0);}
.mb8_c00162{transform:matrix(0.217371,0.003261,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217371,0.003261,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217371,0.003261,-0.003750,0.249972,0,0);}
.m73_c00162{transform:matrix(0.217676,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217676,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217676,0.003265,-0.003750,0.249972,0,0);}
.m49_c00162{transform:matrix(0.218425,0.003276,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218425,0.003276,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218425,0.003276,-0.003750,0.249972,0,0);}
.m85_c00162{transform:matrix(0.219855,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219855,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219855,0.003298,-0.003750,0.249972,0,0);}
.m70_c00162{transform:matrix(0.220070,0.003301,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220070,0.003301,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220070,0.003301,-0.003750,0.249972,0,0);}
.mc9_c00162{transform:matrix(0.220370,0.003306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220370,0.003306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220370,0.003306,-0.003750,0.249972,0,0);}
.m47_c00162{transform:matrix(0.220715,0.003311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220715,0.003311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220715,0.003311,-0.003750,0.249972,0,0);}
.me4_c00162{transform:matrix(0.221220,0.003318,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221220,0.003318,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221220,0.003318,-0.003750,0.249972,0,0);}
.m16_c00162{transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.222400,0.003336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222400,0.003336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222400,0.003336,-0.003750,0.249972,0,0);}
.md9_c00162{transform:matrix(0.222985,0.003345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222985,0.003345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222985,0.003345,-0.003750,0.249972,0,0);}
.m5f_c00162{transform:matrix(0.225190,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225190,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225190,0.003378,-0.003750,0.249972,0,0);}
.mbe_c00162{transform:matrix(0.229464,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229464,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229464,0.003442,-0.003750,0.249972,0,0);}
.me7_c00162{transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);}
.m76_c00162{transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);}
.m4c_c00162{transform:matrix(0.233734,0.003506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233734,0.003506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233734,0.003506,-0.003750,0.249972,0,0);}
.m98_c00162{transform:matrix(0.234459,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234459,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234459,0.003517,-0.003750,0.249972,0,0);}
.mb5_c00162{transform:matrix(0.235848,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235848,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235848,0.003538,-0.003750,0.249972,0,0);}
.m1e_c00162{transform:matrix(0.236888,0.003553,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236888,0.003553,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236888,0.003553,-0.003750,0.249972,0,0);}
.me9_c00162{transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238428,0.003576,-0.003750,0.249972,0,0);}
.mbb_c00162{transform:matrix(0.241453,0.003622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241453,0.003622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241453,0.003622,-0.003750,0.249972,0,0);}
.m15_c00162{transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);}
.mbc_c00162{transform:matrix(0.244128,0.003662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244128,0.003662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244128,0.003662,-0.003750,0.249972,0,0);}
.m80_c00162{transform:matrix(0.244393,0.003666,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244393,0.003666,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244393,0.003666,-0.003750,0.249972,0,0);}
.mf_c00162{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.md4_c00162{transform:matrix(0.256996,0.003855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256996,0.003855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256996,0.003855,-0.003750,0.249972,0,0);}
.m72_c00162{transform:matrix(0.259171,0.003888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259171,0.003888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259171,0.003888,-0.003750,0.249972,0,0);}
.mc3_c00162{transform:matrix(0.259936,0.003899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259936,0.003899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259936,0.003899,-0.003750,0.249972,0,0);}
.m90_c00162{transform:matrix(0.261786,0.003927,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261786,0.003927,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261786,0.003927,-0.003750,0.249972,0,0);}
.m3b_c00162{transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);}
.m0_c00162{transform:matrix(0.263745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263745,0.000000,0.000000,0.250000,0,0);}
.mb2_c00162{transform:matrix(0.266190,0.003993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266190,0.003993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266190,0.003993,-0.003750,0.249972,0,0);}
.m7d_c00162{transform:matrix(0.269200,0.004038,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269200,0.004038,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269200,0.004038,-0.003750,0.249972,0,0);}
.m75_c00162{transform:matrix(0.270385,0.004056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270385,0.004056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270385,0.004056,-0.003750,0.249972,0,0);}
.mc0_c00162{transform:matrix(0.272264,0.004084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272264,0.004084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272264,0.004084,-0.003750,0.249972,0,0);}
.m5e_c00162{transform:matrix(0.279319,0.004190,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279319,0.004190,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279319,0.004190,-0.003750,0.249972,0,0);}
.m66_c00162{transform:matrix(0.286633,0.004299,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286633,0.004299,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286633,0.004299,-0.003750,0.249972,0,0);}
.mab_c00162{transform:matrix(0.294012,0.004410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294012,0.004410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294012,0.004410,-0.003750,0.249972,0,0);}
.m8f_c00162{transform:matrix(0.295802,0.004437,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295802,0.004437,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295802,0.004437,-0.003750,0.249972,0,0);}
.ma8_c00162{transform:matrix(0.309750,0.004646,-0.003750,0.249972,0,0);-ms-transform:matrix(0.309750,0.004646,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.309750,0.004646,-0.003750,0.249972,0,0);}
.m3a_c00162{transform:matrix(0.312210,0.004683,-0.003750,0.249972,0,0);-ms-transform:matrix(0.312210,0.004683,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.312210,0.004683,-0.003750,0.249972,0,0);}
.m71_c00162{transform:matrix(0.315490,0.004732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315490,0.004732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315490,0.004732,-0.003750,0.249972,0,0);}
.m74_c00162{transform:matrix(0.355055,0.005326,-0.003750,0.249972,0,0);-ms-transform:matrix(0.355055,0.005326,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.355055,0.005326,-0.003750,0.249972,0,0);}
.m1d_c00162{transform:matrix(0.510875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510875,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:0.000000px;}
.fc0_c00162{color:transparent;}
.fs11_c00162{font-size:58.806615px;}
.fsc_c00162{font-size:60.906851px;}
.fsb_c00162{font-size:61.956969px;}
.fsa_c00162{font-size:63.007087px;}
.fsd_c00162{font-size:64.057205px;}
.fs6_c00162{font-size:65.107323px;}
.fs4_c00162{font-size:66.150000px;}
.fs8_c00162{font-size:66.157441px;}
.fs1_c00162{font-size:67.200000px;}
.fs9_c00162{font-size:67.207560px;}
.fs7_c00162{font-size:68.257678px;}
.fsf_c00162{font-size:69.307796px;}
.fs13_c00162{font-size:70.357914px;}
.fs2_c00162{font-size:71.400000px;}
.fse_c00162{font-size:71.408032px;}
.fs3_c00162{font-size:72.450000px;}
.fs5_c00162{font-size:72.458150px;}
.fs10_c00162{font-size:73.508268px;}
.fs12_c00162{font-size:75.608505px;}
.fs0_c00162{font-size:90.300000px;}
.y0_c00162{bottom:0.000000px;}
.yf1_c00162{bottom:20.611763px;}
.yf0_c00162{bottom:21.489983px;}
.yef_c00162{bottom:22.907078px;}
.yee_c00162{bottom:24.479790px;}
.yed_c00162{bottom:24.918540px;}
.yec_c00162{bottom:25.345207px;}
.yeb_c00162{bottom:25.754655px;}
.yea_c00162{bottom:26.695725px;}
.ye9_c00162{bottom:37.823265px;}
.ye8_c00162{bottom:40.260210px;}
.ye7_c00162{bottom:43.229685px;}
.ye6_c00162{bottom:44.178022px;}
.ye5_c00162{bottom:44.720265px;}
.ye4_c00162{bottom:45.075285px;}
.ye3_c00162{bottom:47.600737px;}
.ye2_c00162{bottom:49.389142px;}
.ye1_c00162{bottom:56.352870px;}
.ye0_c00162{bottom:57.021750px;}
.ydf_c00162{bottom:58.850602px;}
.yde_c00162{bottom:59.280952px;}
.ydd_c00162{bottom:60.218377px;}
.ydc_c00162{bottom:61.579665px;}
.ydb_c00162{bottom:63.689137px;}
.yda_c00162{bottom:75.583575px;}
.yd9_c00162{bottom:78.207600px;}
.yd8_c00162{bottom:78.716527px;}
.yd7_c00162{bottom:81.179700px;}
.yd6_c00162{bottom:82.510395px;}
.yd5_c00162{bottom:83.168010px;}
.yd4_c00162{bottom:84.481605px;}
.yd3_c00162{bottom:94.044765px;}
.yd2_c00162{bottom:94.821495px;}
.yd1_c00162{bottom:97.573455px;}
.yd0_c00162{bottom:99.103410px;}
.ycf_c00162{bottom:99.798082px;}
.yce_c00162{bottom:101.219535px;}
.ycd_c00162{bottom:110.771617px;}
.ycc_c00162{bottom:111.282930px;}
.ycb_c00162{bottom:113.325637px;}
.yca_c00162{bottom:114.176025px;}
.yc9_c00162{bottom:116.267857px;}
.yc8_c00162{bottom:117.963247px;}
.yc7_c00162{bottom:125.928607px;}
.yc6_c00162{bottom:127.541932px;}
.yc5_c00162{bottom:129.423645px;}
.yc4_c00162{bottom:130.032855px;}
.yc3_c00162{bottom:130.878420px;}
.yc2_c00162{bottom:132.000412px;}
.yc1_c00162{bottom:143.127960px;}
.yc0_c00162{bottom:144.011212px;}
.ybf_c00162{bottom:145.859685px;}
.ybe_c00162{bottom:146.679517px;}
.ybd_c00162{bottom:148.439190px;}
.ybc_c00162{bottom:149.281755px;}
.ybb_c00162{bottom:160.367715px;}
.yba_c00162{bottom:160.919775px;}
.yb9_c00162{bottom:161.793097px;}
.yb8_c00162{bottom:163.661880px;}
.yb7_c00162{bottom:164.222857px;}
.yb6_c00162{bottom:164.680297px;}
.yb5_c00162{bottom:166.137217px;}
.yb4_c00162{bottom:166.565497px;}
.yb3_c00162{bottom:176.635305px;}
.yb2_c00162{bottom:178.215187px;}
.yb1_c00162{bottom:179.510160px;}
.yb0_c00162{bottom:181.210207px;}
.yaf_c00162{bottom:181.853025px;}
.yae_c00162{bottom:184.929487px;}
.yad_c00162{bottom:193.930102px;}
.yac_c00162{bottom:194.237557px;}
.yab_c00162{bottom:196.078935px;}
.yaa_c00162{bottom:197.731260px;}
.ya9_c00162{bottom:198.054022px;}
.ya8_c00162{bottom:199.506487px;}
.ya7_c00162{bottom:211.618710px;}
.ya6_c00162{bottom:212.297130px;}
.ya5_c00162{bottom:214.433100px;}
.ya4_c00162{bottom:215.972145px;}
.ya3_c00162{bottom:216.766342px;}
.ya2_c00162{bottom:218.954557px;}
.ya1_c00162{bottom:229.853610px;}
.ya0_c00162{bottom:230.850097px;}
.y9f_c00162{bottom:232.258140px;}
.y9e_c00162{bottom:232.897905px;}
.y9d_c00162{bottom:234.287002px;}
.y9c_c00162{bottom:235.918830px;}
.y9b_c00162{bottom:237.856567px;}
.y9a_c00162{bottom:246.438570px;}
.y99_c00162{bottom:247.042972px;}
.y98_c00162{bottom:248.697457px;}
.y97_c00162{bottom:249.425850px;}
.y96_c00162{bottom:251.279355px;}
.y95_c00162{bottom:252.093487px;}
.y94_c00162{bottom:252.856792px;}
.y93_c00162{bottom:254.324737px;}
.y92_c00162{bottom:265.506615px;}
.y91_c00162{bottom:266.188830px;}
.y90_c00162{bottom:267.145072px;}
.y8f_c00162{bottom:269.268472px;}
.y8e_c00162{bottom:269.899410px;}
.y8d_c00162{bottom:271.270463px;}
.y8c_c00162{bottom:272.688322px;}
.y8b_c00162{bottom:282.267915px;}
.y8a_c00162{bottom:282.633187px;}
.y89_c00162{bottom:284.093490px;}
.y88_c00162{bottom:284.816625px;}
.y87_c00162{bottom:285.954330px;}
.y86_c00162{bottom:286.332127px;}
.y85_c00162{bottom:287.935222px;}
.y84_c00162{bottom:289.227772px;}
.y83_c00162{bottom:289.650847px;}
.y82_c00162{bottom:290.241427px;}
.y81_c00162{bottom:301.207432px;}
.y80_c00162{bottom:301.561537px;}
.y7f_c00162{bottom:303.715072px;}
.y7e_c00162{bottom:304.152855px;}
.y7d_c00162{bottom:304.528837px;}
.y7c_c00162{bottom:305.504347px;}
.y7b_c00162{bottom:305.974297px;}
.y7a_c00162{bottom:307.251592px;}
.y79_c00162{bottom:318.761910px;}
.y78_c00162{bottom:319.782135px;}
.y77_c00162{bottom:320.165505px;}
.y76_c00162{bottom:321.327877px;}
.y75_c00162{bottom:321.738405px;}
.y74_c00162{bottom:322.252192px;}
.y73_c00162{bottom:323.015520px;}
.y72_c00162{bottom:323.381602px;}
.y71_c00162{bottom:323.993520px;}
.y70_c00162{bottom:335.864767px;}
.y6f_c00162{bottom:336.141082px;}
.y6e_c00162{bottom:337.342755px;}
.y6d_c00162{bottom:337.595483px;}
.y6c_c00162{bottom:338.371410px;}
.y6b_c00162{bottom:338.720002px;}
.y6a_c00162{bottom:338.989305px;}
.y69_c00162{bottom:339.877215px;}
.y68_c00162{bottom:340.286092px;}
.y67_c00162{bottom:340.465087px;}
.y66_c00162{bottom:351.903967px;}
.y65_c00162{bottom:352.715497px;}
.y64_c00162{bottom:353.302237px;}
.y63_c00162{bottom:354.231187px;}
.y62_c00162{bottom:354.575827px;}
.y61_c00162{bottom:355.304445px;}
.y60_c00162{bottom:356.242545px;}
.y5f_c00162{bottom:357.205327px;}
.y5e_c00162{bottom:368.679322px;}
.y5d_c00162{bottom:369.824557px;}
.y5c_c00162{bottom:370.708470px;}
.y5b_c00162{bottom:371.791177px;}
.y5a_c00162{bottom:372.963915px;}
.y59_c00162{bottom:373.404465px;}
.y58_c00162{bottom:374.045092px;}
.y57_c00162{bottom:374.754922px;}
.y56_c00162{bottom:387.248805px;}
.y55_c00162{bottom:387.516127px;}
.y54_c00162{bottom:387.924097px;}
.y53_c00162{bottom:388.308870px;}
.y52_c00162{bottom:388.670557px;}
.y51_c00162{bottom:389.265840px;}
.y50_c00162{bottom:389.618325px;}
.y4f_c00162{bottom:389.816572px;}
.y4e_c00162{bottom:390.954870px;}
.y4d_c00162{bottom:403.138612px;}
.y4c_c00162{bottom:403.720725px;}
.y4b_c00162{bottom:404.175765px;}
.y4a_c00162{bottom:404.648347px;}
.y49_c00162{bottom:405.851865px;}
.y48_c00162{bottom:406.196205px;}
.y47_c00162{bottom:407.110447px;}
.y46_c00162{bottom:407.376532px;}
.y45_c00162{bottom:407.968118px;}
.y44_c00162{bottom:420.697882px;}
.y43_c00162{bottom:420.925087px;}
.y42_c00162{bottom:421.743390px;}
.y41_c00162{bottom:422.569680px;}
.y40_c00162{bottom:422.767995px;}
.y3f_c00162{bottom:423.833213px;}
.y3e_c00162{bottom:424.979790px;}
.y3d_c00162{bottom:438.078397px;}
.y3c_c00162{bottom:438.977932px;}
.y3b_c00162{bottom:439.217190px;}
.y3a_c00162{bottom:439.862610px;}
.y39_c00162{bottom:440.199127px;}
.y38_c00162{bottom:440.587845px;}
.y37_c00162{bottom:441.298290px;}
.y36_c00162{bottom:441.989535px;}
.y35_c00162{bottom:455.472577px;}
.y34_c00162{bottom:456.042075px;}
.y33_c00162{bottom:456.349147px;}
.y32_c00162{bottom:457.266052px;}
.y31_c00162{bottom:457.705005px;}
.y30_c00162{bottom:457.973617px;}
.y2f_c00162{bottom:458.984452px;}
.y2e_c00162{bottom:459.238845px;}
.y2d_c00162{bottom:460.081703px;}
.y2c_c00162{bottom:472.901197px;}
.y2b_c00162{bottom:473.289787px;}
.y2a_c00162{bottom:474.140160px;}
.y29_c00162{bottom:474.437700px;}
.y28_c00162{bottom:474.705322px;}
.y27_c00162{bottom:475.027357px;}
.y26_c00162{bottom:475.995345px;}
.y25_c00162{bottom:477.361320px;}
.y24_c00162{bottom:489.620572px;}
.y23_c00162{bottom:490.531530px;}
.y22_c00162{bottom:491.346097px;}
.y21_c00162{bottom:491.584845px;}
.y20_c00162{bottom:492.168337px;}
.y1f_c00162{bottom:492.949898px;}
.y1e_c00162{bottom:493.833000px;}
.y1d_c00162{bottom:509.014500px;}
.y1c_c00162{bottom:509.968500px;}
.y1b_c00162{bottom:512.190000px;}
.y1a_c00162{bottom:524.707500px;}
.y19_c00162{bottom:525.156000px;}
.y18_c00162{bottom:525.489000px;}
.y17_c00162{bottom:526.630500px;}
.y16_c00162{bottom:527.178000px;}
.y15_c00162{bottom:528.450000px;}
.y14_c00162{bottom:529.455000px;}
.y13_c00162{bottom:530.551500px;}
.y12_c00162{bottom:542.371500px;}
.y11_c00162{bottom:542.836500px;}
.y10_c00162{bottom:543.850500px;}
.yf_c00162{bottom:544.369500px;}
.ye_c00162{bottom:544.822500px;}
.yd_c00162{bottom:545.322000px;}
.yc_c00162{bottom:546.367500px;}
.yb_c00162{bottom:546.753000px;}
.ya_c00162{bottom:560.262000px;}
.y9_c00162{bottom:560.643000px;}
.y8_c00162{bottom:560.811000px;}
.y7_c00162{bottom:561.679500px;}
.y6_c00162{bottom:561.864000px;}
.y5_c00162{bottom:562.927500px;}
.y4_c00162{bottom:563.247000px;}
.y3_c00162{bottom:563.544000px;}
.y2_c00162{bottom:564.573000px;}
.y1_c00162{bottom:573.789000px;}
.h13_c00162{height:58.806615px;}
.he_c00162{height:60.906851px;}
.hd_c00162{height:61.956969px;}
.hc_c00162{height:63.007087px;}
.hf_c00162{height:64.057205px;}
.h8_c00162{height:65.107323px;}
.h6_c00162{height:66.150000px;}
.ha_c00162{height:66.157441px;}
.h3_c00162{height:67.200000px;}
.hb_c00162{height:67.207560px;}
.h9_c00162{height:68.257678px;}
.h11_c00162{height:69.307796px;}
.h15_c00162{height:70.357914px;}
.h4_c00162{height:71.400000px;}
.h10_c00162{height:71.408032px;}
.h5_c00162{height:72.450000px;}
.h7_c00162{height:72.458150px;}
.h12_c00162{height:73.508268px;}
.h14_c00162{height:75.608505px;}
.h2_c00162{height:90.300000px;}
.h0_c00162{height:623.100000px;}
.h1_c00162{height:623.250000px;}
.w1_c00162{width:383.250000px;}
.w0_c00162{width:383.400000px;}
.x0_c00162{left:0.000000px;}
.x3_c00162{left:31.129500px;}
.x17_c00162{left:32.704500px;}
.x70_c00162{left:34.179533px;}
.x19_c00162{left:43.002000px;}
.x53_c00162{left:52.585613px;}
.xc_c00162{left:57.330000px;}
.x3d_c00162{left:66.571388px;}
.x32_c00162{left:67.575472px;}
.x63_c00162{left:71.482665px;}
.x6b_c00162{left:74.716545px;}
.x6e_c00162{left:77.935380px;}
.x2a_c00162{left:81.636848px;}
.x33_c00162{left:83.214000px;}
.x26_c00162{left:84.669578px;}
.x13_c00162{left:86.439000px;}
.x4d_c00162{left:89.108625px;}
.x4_c00162{left:95.464500px;}
.x3e_c00162{left:97.077143px;}
.x27_c00162{left:100.528830px;}
.x1a_c00162{left:101.875500px;}
.x71_c00162{left:105.247868px;}
.x2f_c00162{left:108.919568px;}
.x4e_c00162{left:110.436375px;}
.x67_c00162{left:111.803865px;}
.x5_c00162{left:114.016500px;}
.x1f_c00162{left:117.028148px;}
.x3f_c00162{left:118.045253px;}
.x46_c00162{left:119.510078px;}
.x38_c00162{left:121.601813px;}
.x72_c00162{left:122.795235px;}
.xd_c00162{left:126.987000px;}
.x4b_c00162{left:128.868683px;}
.x1_c00162{left:132.300000px;}
.x6_c00162{left:133.999500px;}
.x47_c00162{left:135.363105px;}
.x14_c00162{left:136.671000px;}
.x43_c00162{left:138.082928px;}
.x60_c00162{left:139.590188px;}
.x5f_c00162{left:141.710558px;}
.x5c_c00162{left:143.314590px;}
.x39_c00162{left:145.100813px;}
.x18_c00162{left:149.619000px;}
.x5a_c00162{left:151.800660px;}
.x1b_c00162{left:153.979500px;}
.x48_c00162{left:155.901998px;}
.x34_c00162{left:157.217272px;}
.x55_c00162{left:158.428755px;}
.xe_c00162{left:160.263000px;}
.x28_c00162{left:163.716885px;}
.x61_c00162{left:165.086010px;}
.x68_c00162{left:168.490673px;}
.x4f_c00162{left:171.829418px;}
.x40_c00162{left:173.922735px;}
.x20_c00162{left:177.559748px;}
.x29_c00162{left:180.524138px;}
.x2b_c00162{left:184.250400px;}
.x73_c00162{left:185.733308px;}
.x6f_c00162{left:187.197908px;}
.x64_c00162{left:188.737358px;}
.xf_c00162{left:190.440000px;}
.x50_c00162{left:191.712825px;}
.x1c_c00162{left:192.879000px;}
.x21_c00162{left:197.728455px;}
.x7_c00162{left:200.493000px;}
.x49_c00162{left:201.529125px;}
.x6c_c00162{left:206.241953px;}
.x1d_c00162{left:208.795500px;}
.x8_c00162{left:212.017500px;}
.x5e_c00162{left:213.346013px;}
.x22_c00162{left:214.469708px;}
.x4a_c00162{left:216.377175px;}
.x5b_c00162{left:219.442950px;}
.x10_c00162{left:225.000000px;}
.x15_c00162{left:227.629500px;}
.x2c_c00162{left:230.379098px;}
.x23_c00162{left:233.105438px;}
.x3a_c00162{left:234.550313px;}
.x56_c00162{left:237.074603px;}
.x59_c00162{left:240.539730px;}
.x74_c00162{left:242.397803px;}
.x4c_c00162{left:244.775963px;}
.x2d_c00162{left:247.429845px;}
.x44_c00162{left:249.358433px;}
.x54_c00162{left:251.037413px;}
.x35_c00162{left:255.854325px;}
.x3b_c00162{left:261.748313px;}
.x1e_c00162{left:263.100000px;}
.x9_c00162{left:266.299500px;}
.x41_c00162{left:267.622320px;}
.x69_c00162{left:270.436335px;}
.x57_c00162{left:272.517735px;}
.xa_c00162{left:276.814500px;}
.x3c_c00162{left:279.569813px;}
.x36_c00162{left:282.589515px;}
.x16_c00162{left:284.706000px;}
.x24_c00162{left:286.296150px;}
.x51_c00162{left:289.571543px;}
.x11_c00162{left:292.570500px;}
.x6d_c00162{left:295.440060px;}
.x58_c00162{left:297.794190px;}
.x6a_c00162{left:299.213160px;}
.xb_c00162{left:300.582000px;}
.x30_c00162{left:302.794568px;}
.x5d_c00162{left:304.514565px;}
.x52_c00162{left:305.676855px;}
.x66_c00162{left:309.442808px;}
.x25_c00162{left:310.601790px;}
.x2e_c00162{left:311.699813px;}
.x65_c00162{left:312.939330px;}
.x62_c00162{left:314.881305px;}
.x37_c00162{left:316.795980px;}
.x31_c00162{left:317.941568px;}
.x2_c00162{left:320.760000px;}
.x42_c00162{left:322.166415px;}
.x12_c00162{left:323.536500px;}
.x45_c00162{left:327.072945px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.fs11_c00162{font-size:52.272546pt;}
.fsc_c00162{font-size:54.139423pt;}
.fsb_c00162{font-size:55.072861pt;}
.fsa_c00162{font-size:56.006300pt;}
.fsd_c00162{font-size:56.939738pt;}
.fs6_c00162{font-size:57.873176pt;}
.fs4_c00162{font-size:58.800000pt;}
.fs8_c00162{font-size:58.806615pt;}
.fs1_c00162{font-size:59.733333pt;}
.fs9_c00162{font-size:59.740053pt;}
.fs7_c00162{font-size:60.673491pt;}
.fsf_c00162{font-size:61.606930pt;}
.fs13_c00162{font-size:62.540368pt;}
.fs2_c00162{font-size:63.466667pt;}
.fse_c00162{font-size:63.473806pt;}
.fs3_c00162{font-size:64.400000pt;}
.fs5_c00162{font-size:64.407245pt;}
.fs10_c00162{font-size:65.340683pt;}
.fs12_c00162{font-size:67.207560pt;}
.fs0_c00162{font-size:80.266667pt;}
.y0_c00162{bottom:0.000000pt;}
.yf1_c00162{bottom:18.321567pt;}
.yf0_c00162{bottom:19.102207pt;}
.yef_c00162{bottom:20.361847pt;}
.yee_c00162{bottom:21.759813pt;}
.yed_c00162{bottom:22.149813pt;}
.yec_c00162{bottom:22.529073pt;}
.yeb_c00162{bottom:22.893027pt;}
.yea_c00162{bottom:23.729533pt;}
.ye9_c00162{bottom:33.620680pt;}
.ye8_c00162{bottom:35.786853pt;}
.ye7_c00162{bottom:38.426387pt;}
.ye6_c00162{bottom:39.269353pt;}
.ye5_c00162{bottom:39.751347pt;}
.ye4_c00162{bottom:40.066920pt;}
.ye3_c00162{bottom:42.311767pt;}
.ye2_c00162{bottom:43.901460pt;}
.ye1_c00162{bottom:50.091440pt;}
.ye0_c00162{bottom:50.686000pt;}
.ydf_c00162{bottom:52.311647pt;}
.yde_c00162{bottom:52.694180pt;}
.ydd_c00162{bottom:53.527447pt;}
.ydc_c00162{bottom:54.737480pt;}
.ydb_c00162{bottom:56.612567pt;}
.yda_c00162{bottom:67.185400pt;}
.yd9_c00162{bottom:69.517867pt;}
.yd8_c00162{bottom:69.970247pt;}
.yd7_c00162{bottom:72.159733pt;}
.yd6_c00162{bottom:73.342573pt;}
.yd5_c00162{bottom:73.927120pt;}
.yd4_c00162{bottom:75.094760pt;}
.yd3_c00162{bottom:83.595347pt;}
.yd2_c00162{bottom:84.285773pt;}
.yd1_c00162{bottom:86.731960pt;}
.yd0_c00162{bottom:88.091920pt;}
.ycf_c00162{bottom:88.709407pt;}
.yce_c00162{bottom:89.972920pt;}
.ycd_c00162{bottom:98.463660pt;}
.ycc_c00162{bottom:98.918160pt;}
.ycb_c00162{bottom:100.733900pt;}
.yca_c00162{bottom:101.489800pt;}
.yc9_c00162{bottom:103.349207pt;}
.yc8_c00162{bottom:104.856220pt;}
.yc7_c00162{bottom:111.936540pt;}
.yc6_c00162{bottom:113.370607pt;}
.yc5_c00162{bottom:115.043240pt;}
.yc4_c00162{bottom:115.584760pt;}
.yc3_c00162{bottom:116.336373pt;}
.yc2_c00162{bottom:117.333700pt;}
.yc1_c00162{bottom:127.224853pt;}
.yc0_c00162{bottom:128.009967pt;}
.ybf_c00162{bottom:129.653053pt;}
.ybe_c00162{bottom:130.381793pt;}
.ybd_c00162{bottom:131.945947pt;}
.ybc_c00162{bottom:132.694893pt;}
.ybb_c00162{bottom:142.549080pt;}
.yba_c00162{bottom:143.039800pt;}
.yb9_c00162{bottom:143.816087pt;}
.yb8_c00162{bottom:145.477227pt;}
.yb7_c00162{bottom:145.975873pt;}
.yb6_c00162{bottom:146.382487pt;}
.yb5_c00162{bottom:147.677527pt;}
.yb4_c00162{bottom:148.058220pt;}
.yb3_c00162{bottom:157.009160pt;}
.yb2_c00162{bottom:158.413500pt;}
.yb1_c00162{bottom:159.564587pt;}
.yb0_c00162{bottom:161.075740pt;}
.yaf_c00162{bottom:161.647133pt;}
.yae_c00162{bottom:164.381767pt;}
.yad_c00162{bottom:172.382313pt;}
.yac_c00162{bottom:172.655607pt;}
.yab_c00162{bottom:174.292387pt;}
.yaa_c00162{bottom:175.761120pt;}
.ya9_c00162{bottom:176.048020pt;}
.ya8_c00162{bottom:177.339100pt;}
.ya7_c00162{bottom:188.105520pt;}
.ya6_c00162{bottom:188.708560pt;}
.ya5_c00162{bottom:190.607200pt;}
.ya4_c00162{bottom:191.975240pt;}
.ya3_c00162{bottom:192.681193pt;}
.ya2_c00162{bottom:194.626273pt;}
.ya1_c00162{bottom:204.314320pt;}
.ya0_c00162{bottom:205.200087pt;}
.y9f_c00162{bottom:206.451680pt;}
.y9e_c00162{bottom:207.020360pt;}
.y9d_c00162{bottom:208.255113pt;}
.y9c_c00162{bottom:209.705627pt;}
.y9b_c00162{bottom:211.428060pt;}
.y9a_c00162{bottom:219.056507pt;}
.y99_c00162{bottom:219.593753pt;}
.y98_c00162{bottom:221.064407pt;}
.y97_c00162{bottom:221.711867pt;}
.y96_c00162{bottom:223.359427pt;}
.y95_c00162{bottom:224.083100pt;}
.y94_c00162{bottom:224.761593pt;}
.y93_c00162{bottom:226.066433pt;}
.y92_c00162{bottom:236.005880pt;}
.y91_c00162{bottom:236.612293pt;}
.y90_c00162{bottom:237.462287pt;}
.y8f_c00162{bottom:239.349753pt;}
.y8e_c00162{bottom:239.910587pt;}
.y8d_c00162{bottom:241.129300pt;}
.y8c_c00162{bottom:242.389620pt;}
.y8b_c00162{bottom:250.904813pt;}
.y8a_c00162{bottom:251.229500pt;}
.y89_c00162{bottom:252.527547pt;}
.y88_c00162{bottom:253.170333pt;}
.y87_c00162{bottom:254.181627pt;}
.y86_c00162{bottom:254.517447pt;}
.y85_c00162{bottom:255.942420pt;}
.y84_c00162{bottom:257.091353pt;}
.y83_c00162{bottom:257.467420pt;}
.y82_c00162{bottom:257.992380pt;}
.y81_c00162{bottom:267.739940pt;}
.y80_c00162{bottom:268.054700pt;}
.y7f_c00162{bottom:269.968953pt;}
.y7e_c00162{bottom:270.358093pt;}
.y7d_c00162{bottom:270.692300pt;}
.y7c_c00162{bottom:271.559420pt;}
.y7b_c00162{bottom:271.977153pt;}
.y7a_c00162{bottom:273.112527pt;}
.y79_c00162{bottom:283.343920pt;}
.y78_c00162{bottom:284.250787pt;}
.y77_c00162{bottom:284.591560pt;}
.y76_c00162{bottom:285.624780pt;}
.y75_c00162{bottom:285.989693pt;}
.y74_c00162{bottom:286.446393pt;}
.y73_c00162{bottom:287.124907pt;}
.y72_c00162{bottom:287.450313pt;}
.y71_c00162{bottom:287.994240pt;}
.y70_c00162{bottom:298.546460pt;}
.y6f_c00162{bottom:298.792073pt;}
.y6e_c00162{bottom:299.860227pt;}
.y6d_c00162{bottom:300.084873pt;}
.y6c_c00162{bottom:300.774587pt;}
.y6b_c00162{bottom:301.084447pt;}
.y6a_c00162{bottom:301.323827pt;}
.y69_c00162{bottom:302.113080pt;}
.y68_c00162{bottom:302.476527pt;}
.y67_c00162{bottom:302.635633pt;}
.y66_c00162{bottom:312.803527pt;}
.y65_c00162{bottom:313.524887pt;}
.y64_c00162{bottom:314.046433pt;}
.y63_c00162{bottom:314.872167pt;}
.y62_c00162{bottom:315.178513pt;}
.y61_c00162{bottom:315.826173pt;}
.y60_c00162{bottom:316.660040pt;}
.y5f_c00162{bottom:317.515847pt;}
.y5e_c00162{bottom:327.714953pt;}
.y5d_c00162{bottom:328.732940pt;}
.y5c_c00162{bottom:329.518640pt;}
.y5b_c00162{bottom:330.481047pt;}
.y5a_c00162{bottom:331.523480pt;}
.y59_c00162{bottom:331.915080pt;}
.y58_c00162{bottom:332.484527pt;}
.y57_c00162{bottom:333.115487pt;}
.y56_c00162{bottom:344.221160pt;}
.y55_c00162{bottom:344.458780pt;}
.y54_c00162{bottom:344.821420pt;}
.y53_c00162{bottom:345.163440pt;}
.y52_c00162{bottom:345.484940pt;}
.y51_c00162{bottom:346.014080pt;}
.y50_c00162{bottom:346.327400pt;}
.y4f_c00162{bottom:346.503620pt;}
.y4e_c00162{bottom:347.515440pt;}
.y4d_c00162{bottom:358.345433pt;}
.y4c_c00162{bottom:358.862867pt;}
.y4b_c00162{bottom:359.267347pt;}
.y4a_c00162{bottom:359.687420pt;}
.y49_c00162{bottom:360.757213pt;}
.y48_c00162{bottom:361.063293pt;}
.y47_c00162{bottom:361.875953pt;}
.y46_c00162{bottom:362.112473pt;}
.y45_c00162{bottom:362.638327pt;}
.y44_c00162{bottom:373.953673pt;}
.y43_c00162{bottom:374.155633pt;}
.y42_c00162{bottom:374.883013pt;}
.y41_c00162{bottom:375.617493pt;}
.y40_c00162{bottom:375.793773pt;}
.y3f_c00162{bottom:376.740633pt;}
.y3e_c00162{bottom:377.759813pt;}
.y3d_c00162{bottom:389.403020pt;}
.y3c_c00162{bottom:390.202607pt;}
.y3b_c00162{bottom:390.415280pt;}
.y3a_c00162{bottom:390.988987pt;}
.y39_c00162{bottom:391.288113pt;}
.y38_c00162{bottom:391.633640pt;}
.y37_c00162{bottom:392.265147pt;}
.y36_c00162{bottom:392.879587pt;}
.y35_c00162{bottom:404.864513pt;}
.y34_c00162{bottom:405.370733pt;}
.y33_c00162{bottom:405.643687pt;}
.y32_c00162{bottom:406.458713pt;}
.y31_c00162{bottom:406.848893pt;}
.y30_c00162{bottom:407.087660pt;}
.y2f_c00162{bottom:407.986180pt;}
.y2e_c00162{bottom:408.212307pt;}
.y2d_c00162{bottom:408.961513pt;}
.y2c_c00162{bottom:420.356620pt;}
.y2b_c00162{bottom:420.702033pt;}
.y2a_c00162{bottom:421.457920pt;}
.y29_c00162{bottom:421.722400pt;}
.y28_c00162{bottom:421.960287pt;}
.y27_c00162{bottom:422.246540pt;}
.y26_c00162{bottom:423.106973pt;}
.y25_c00162{bottom:424.321173pt;}
.y24_c00162{bottom:435.218287pt;}
.y23_c00162{bottom:436.028027pt;}
.y22_c00162{bottom:436.752087pt;}
.y21_c00162{bottom:436.964307pt;}
.y20_c00162{bottom:437.482967pt;}
.y1f_c00162{bottom:438.177687pt;}
.y1e_c00162{bottom:438.962667pt;}
.y1d_c00162{bottom:452.457333pt;}
.y1c_c00162{bottom:453.305333pt;}
.y1b_c00162{bottom:455.280000pt;}
.y1a_c00162{bottom:466.406667pt;}
.y19_c00162{bottom:466.805333pt;}
.y18_c00162{bottom:467.101333pt;}
.y17_c00162{bottom:468.116000pt;}
.y16_c00162{bottom:468.602667pt;}
.y15_c00162{bottom:469.733333pt;}
.y14_c00162{bottom:470.626667pt;}
.y13_c00162{bottom:471.601333pt;}
.y12_c00162{bottom:482.108000pt;}
.y11_c00162{bottom:482.521333pt;}
.y10_c00162{bottom:483.422667pt;}
.yf_c00162{bottom:483.884000pt;}
.ye_c00162{bottom:484.286667pt;}
.yd_c00162{bottom:484.730667pt;}
.yc_c00162{bottom:485.660000pt;}
.yb_c00162{bottom:486.002667pt;}
.ya_c00162{bottom:498.010667pt;}
.y9_c00162{bottom:498.349333pt;}
.y8_c00162{bottom:498.498667pt;}
.y7_c00162{bottom:499.270667pt;}
.y6_c00162{bottom:499.434667pt;}
.y5_c00162{bottom:500.380000pt;}
.y4_c00162{bottom:500.664000pt;}
.y3_c00162{bottom:500.928000pt;}
.y2_c00162{bottom:501.842667pt;}
.y1_c00162{bottom:510.034667pt;}
.h13_c00162{height:52.272546pt;}
.he_c00162{height:54.139423pt;}
.hd_c00162{height:55.072861pt;}
.hc_c00162{height:56.006300pt;}
.hf_c00162{height:56.939738pt;}
.h8_c00162{height:57.873176pt;}
.h6_c00162{height:58.800000pt;}
.ha_c00162{height:58.806615pt;}
.h3_c00162{height:59.733333pt;}
.hb_c00162{height:59.740053pt;}
.h9_c00162{height:60.673491pt;}
.h11_c00162{height:61.606930pt;}
.h15_c00162{height:62.540368pt;}
.h4_c00162{height:63.466667pt;}
.h10_c00162{height:63.473806pt;}
.h5_c00162{height:64.400000pt;}
.h7_c00162{height:64.407245pt;}
.h12_c00162{height:65.340683pt;}
.h14_c00162{height:67.207560pt;}
.h2_c00162{height:80.266667pt;}
.h0_c00162{height:553.866667pt;}
.h1_c00162{height:554.000000pt;}
.w1_c00162{width:340.666667pt;}
.w0_c00162{width:340.800000pt;}
.x0_c00162{left:0.000000pt;}
.x3_c00162{left:27.670667pt;}
.x17_c00162{left:29.070667pt;}
.x70_c00162{left:30.381807pt;}
.x19_c00162{left:38.224000pt;}
.x53_c00162{left:46.742767pt;}
.xc_c00162{left:50.960000pt;}
.x3d_c00162{left:59.174567pt;}
.x32_c00162{left:60.067087pt;}
.x63_c00162{left:63.540147pt;}
.x6b_c00162{left:66.414707pt;}
.x6e_c00162{left:69.275893pt;}
.x2a_c00162{left:72.566087pt;}
.x33_c00162{left:73.968000pt;}
.x26_c00162{left:75.261847pt;}
.x13_c00162{left:76.834667pt;}
.x4d_c00162{left:79.207667pt;}
.x4_c00162{left:84.857333pt;}
.x3e_c00162{left:86.290793pt;}
.x27_c00162{left:89.358960pt;}
.x1a_c00162{left:90.556000pt;}
.x71_c00162{left:93.553660pt;}
.x2f_c00162{left:96.817393pt;}
.x4e_c00162{left:98.165667pt;}
.x67_c00162{left:99.381213pt;}
.x5_c00162{left:101.348000pt;}
.x1f_c00162{left:104.025020pt;}
.x3f_c00162{left:104.929113pt;}
.x46_c00162{left:106.231180pt;}
.x38_c00162{left:108.090500pt;}
.x72_c00162{left:109.151320pt;}
.xd_c00162{left:112.877333pt;}
.x4b_c00162{left:114.549940pt;}
.x1_c00162{left:117.600000pt;}
.x6_c00162{left:119.110667pt;}
.x47_c00162{left:120.322760pt;}
.x14_c00162{left:121.485333pt;}
.x43_c00162{left:122.740380pt;}
.x60_c00162{left:124.080167pt;}
.x5f_c00162{left:125.964940pt;}
.x5c_c00162{left:127.390747pt;}
.x39_c00162{left:128.978500pt;}
.x18_c00162{left:132.994667pt;}
.x5a_c00162{left:134.933920pt;}
.x1b_c00162{left:136.870667pt;}
.x48_c00162{left:138.579553pt;}
.x34_c00162{left:139.748687pt;}
.x55_c00162{left:140.825560pt;}
.xe_c00162{left:142.456000pt;}
.x28_c00162{left:145.526120pt;}
.x61_c00162{left:146.743120pt;}
.x68_c00162{left:149.769487pt;}
.x4f_c00162{left:152.737260pt;}
.x40_c00162{left:154.597987pt;}
.x20_c00162{left:157.830887pt;}
.x29_c00162{left:160.465900pt;}
.x2b_c00162{left:163.778133pt;}
.x73_c00162{left:165.096273pt;}
.x6f_c00162{left:166.398140pt;}
.x64_c00162{left:167.766540pt;}
.xf_c00162{left:169.280000pt;}
.x50_c00162{left:170.411400pt;}
.x1c_c00162{left:171.448000pt;}
.x21_c00162{left:175.758627pt;}
.x7_c00162{left:178.216000pt;}
.x49_c00162{left:179.137000pt;}
.x6c_c00162{left:183.326180pt;}
.x1d_c00162{left:185.596000pt;}
.x8_c00162{left:188.460000pt;}
.x5e_c00162{left:189.640900pt;}
.x22_c00162{left:190.639740pt;}
.x4a_c00162{left:192.335267pt;}
.x5b_c00162{left:195.060400pt;}
.x10_c00162{left:200.000000pt;}
.x15_c00162{left:202.337333pt;}
.x2c_c00162{left:204.781420pt;}
.x23_c00162{left:207.204833pt;}
.x3a_c00162{left:208.489167pt;}
.x56_c00162{left:210.732980pt;}
.x59_c00162{left:213.813093pt;}
.x74_c00162{left:215.464713pt;}
.x4c_c00162{left:217.578633pt;}
.x2d_c00162{left:219.937640pt;}
.x44_c00162{left:221.651940pt;}
.x54_c00162{left:223.144367pt;}
.x35_c00162{left:227.426067pt;}
.x3b_c00162{left:232.665167pt;}
.x1e_c00162{left:233.866667pt;}
.x9_c00162{left:236.710667pt;}
.x41_c00162{left:237.886507pt;}
.x69_c00162{left:240.387853pt;}
.x57_c00162{left:242.237987pt;}
.xa_c00162{left:246.057333pt;}
.x3c_c00162{left:248.506500pt;}
.x36_c00162{left:251.190680pt;}
.x16_c00162{left:253.072000pt;}
.x24_c00162{left:254.485467pt;}
.x51_c00162{left:257.396927pt;}
.x11_c00162{left:260.062667pt;}
.x6d_c00162{left:262.613387pt;}
.x58_c00162{left:264.705947pt;}
.x6a_c00162{left:265.967253pt;}
.xb_c00162{left:267.184000pt;}
.x30_c00162{left:269.150727pt;}
.x5d_c00162{left:270.679613pt;}
.x52_c00162{left:271.712760pt;}
.x66_c00162{left:275.060273pt;}
.x25_c00162{left:276.090480pt;}
.x2e_c00162{left:277.066500pt;}
.x65_c00162{left:278.168293pt;}
.x62_c00162{left:279.894493pt;}
.x37_c00162{left:281.596427pt;}
.x31_c00162{left:282.614727pt;}
.x2_c00162{left:285.120000pt;}
.x42_c00162{left:286.370147pt;}
.x12_c00162{left:287.588000pt;}
.x45_c00162{left:290.731507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00163 {
    display:none;
  }
  .loading-indicator_c00163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00163 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00163 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00163" -> "#page-container .classname_c00163")
 */
.pf_c00163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00163 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00163 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00163 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00163 {overflow:visible;}
  }
}
.c_c00163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00163 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00163:after { /* webkit #35443 */
  content: '';
}
.t_c00163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00163 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00163 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00163 { /* info for Javascript */
  display:none;
}
.l_c00163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00163:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00163 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00163.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf7_c00163{transform:matrix(0.062945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062945,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.078881,-0.001183,0.003750,0.249972,0,0);-ms-transform:matrix(0.078881,-0.001183,0.003750,0.249972,0,0);-webkit-transform:matrix(0.078881,-0.001183,0.003750,0.249972,0,0);}
.me3_c00163{transform:matrix(0.127255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00163{transform:matrix(0.135865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135865,0.000000,0.000000,0.250000,0,0);}
.m97_c00163{transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);}
.m91_c00163{transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142330,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.145739,-0.002186,0.003750,0.249972,0,0);-ms-transform:matrix(0.145739,-0.002186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145739,-0.002186,0.003750,0.249972,0,0);}
.m1_c00163{transform:matrix(0.145774,-0.002187,0.003750,0.249972,0,0);-ms-transform:matrix(0.145774,-0.002187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145774,-0.002187,0.003750,0.249972,0,0);}
.mde_c00163{transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);}
.me0_c00163{transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);}
.m95_c00163{transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);}
.m74_c00163{transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00163{transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);}
.me6_c00163{transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m65_c00163{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m9c_c00163{transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);}
.m6b_c00163{transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);}
.mc8_c00163{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.m68_c00163{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.md3_c00163{transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);}
.m58_c00163{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m75_c00163{transform:matrix(0.156335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156335,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.mf4_c00163{transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);}
.mc1_c00163{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m76_c00163{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.md8_c00163{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.mc0_c00163{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.me4_c00163{transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-ms-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);}
.mda_c00163{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.162147,-0.002432,0.003750,0.249972,0,0);-ms-transform:matrix(0.162147,-0.002432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162147,-0.002432,0.003750,0.249972,0,0);}
.m9d_c00163{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.mc5_c00163{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.164856,-0.002473,0.003750,0.249972,0,0);-ms-transform:matrix(0.164856,-0.002473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164856,-0.002473,0.003750,0.249972,0,0);}
.m6e_c00163{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mca_c00163{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00163{transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);}
.m60_c00163{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.165931,-0.002489,0.003750,0.249972,0,0);-ms-transform:matrix(0.165931,-0.002489,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165931,-0.002489,0.003750,0.249972,0,0);}
.md1_c00163{transform:matrix(0.166135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166135,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.166146,-0.002492,0.003750,0.249972,0,0);-ms-transform:matrix(0.166146,-0.002492,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166146,-0.002492,0.003750,0.249972,0,0);}
.mce_c00163{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);}
.m7f_c00163{transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);}
.m96_c00163{transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);}
.m3b_c00163{transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);}
.ma1_c00163{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);}
.m6a_c00163{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.170515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170515,0.000000,0.000000,0.250000,0,0);}
.mdf_c00163{transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.170991,-0.002565,0.003750,0.249972,0,0);-ms-transform:matrix(0.170991,-0.002565,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170991,-0.002565,0.003750,0.249972,0,0);}
.m1e_c00163{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.ma5_c00163{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);}
.m81_c00163{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.me9_c00163{transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.174630,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174630,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174630,-0.002619,0.003750,0.249972,0,0);}
.m4a_c00163{transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174680,0.000000,0.000000,0.250000,0,0);}
.mc6_c00163{transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);}
.mc3_c00163{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.ma6_c00163{transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);}
.mb7_c00163{transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.175385,-0.002631,0.003750,0.249972,0,0);-ms-transform:matrix(0.175385,-0.002631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175385,-0.002631,0.003750,0.249972,0,0);}
.mf5_c00163{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m29_c00163{transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);}
.md5_c00163{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.176335,-0.002645,0.003750,0.249972,0,0);-ms-transform:matrix(0.176335,-0.002645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176335,-0.002645,0.003750,0.249972,0,0);}
.m5c_c00163{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00163{transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);}
.mb4_c00163{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.mf2_c00163{transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);}
.mc2_c00163{transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.177655,-0.002665,0.003750,0.249972,0,0);-ms-transform:matrix(0.177655,-0.002665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177655,-0.002665,0.003750,0.249972,0,0);}
.m48_c00163{transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);}
.ma9_c00163{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m59_c00163{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.179520,-0.002693,0.003750,0.249972,0,0);-ms-transform:matrix(0.179520,-0.002693,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179520,-0.002693,0.003750,0.249972,0,0);}
.mec_c00163{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.mf6_c00163{transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);}
.m93_c00163{transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00163{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);}
.mae_c00163{transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);}
.md2_c00163{transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);}
.m99_c00163{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m73_c00163{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00163{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.md4_c00163{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.m84_c00163{transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);}
.mad_c00163{transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);}
.m94_c00163{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.185424,-0.002781,0.003750,0.249972,0,0);-ms-transform:matrix(0.185424,-0.002781,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185424,-0.002781,0.003750,0.249972,0,0);}
.md6_c00163{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.ma2_c00163{transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185680,0.000000,0.000000,0.250000,0,0);}
.mab_c00163{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00163{transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m54_c00163{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.187149,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187149,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187149,-0.002807,0.003750,0.249972,0,0);}
.m1c_c00163{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.ma4_c00163{transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);}
.m5b_c00163{transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);}
.med_c00163{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m71_c00163{transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);}
.me7_c00163{transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00163{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.189269,-0.002839,0.003750,0.249972,0,0);-ms-transform:matrix(0.189269,-0.002839,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189269,-0.002839,0.003750,0.249972,0,0);}
.m22_c00163{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m64_c00163{transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.me8_c00163{transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m80_c00163{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.me1_c00163{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00163{transform:matrix(0.191835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191835,0.000000,0.000000,0.250000,0,0);}
.me2_c00163{transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);}
.mc9_c00163{transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);}
.md0_c00163{transform:matrix(0.192315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192315,0.000000,0.000000,0.250000,0,0);}
.ma8_c00163{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);}
.m8f_c00163{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.me5_c00163{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.ma0_c00163{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);}
.meb_c00163{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.194703,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194703,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194703,-0.002921,0.003750,0.249972,0,0);}
.m20_c00163{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.196328,-0.002945,0.003750,0.249972,0,0);-ms-transform:matrix(0.196328,-0.002945,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196328,-0.002945,0.003750,0.249972,0,0);}
.m2c_c00163{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m87_c00163{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.mf3_c00163{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m92_c00163{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.md9_c00163{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.m2b_c00163{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00163{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.mef_c00163{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.mcf_c00163{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.mb8_c00163{transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);}
.mc7_c00163{transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);}
.m5f_c00163{transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);}
.m8b_c00163{transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00163{transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.m43_c00163{transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);}
.mdd_c00163{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00163{transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202945,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);}
.mf0_c00163{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.mf1_c00163{transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);}
.m7d_c00163{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m7a_c00163{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);}
.m7b_c00163{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);}
.mbb_c00163{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.205847,-0.003088,0.003750,0.249972,0,0);-ms-transform:matrix(0.205847,-0.003088,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205847,-0.003088,0.003750,0.249972,0,0);}
.mdc_c00163{transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);}
.m66_c00163{transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206770,0.000000,0.000000,0.250000,0,0);}
.mcc_c00163{transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);}
.mbe_c00163{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m23_c00163{transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);}
.mb9_c00163{transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207560,0.000000,0.000000,0.250000,0,0);}
.md7_c00163{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.maa_c00163{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m67_c00163{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.mac_c00163{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.mba_c00163{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m7e_c00163{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00163{transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m98_c00163{transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);}
.mb0_c00163{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m62_c00163{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.mbc_c00163{transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);}
.m90_c00163{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);-ms-transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);}
.m79_c00163{transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);}
.maf_c00163{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m82_c00163{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.m55_c00163{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m42_c00163{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);}
.ma3_c00163{transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);}
.m8d_c00163{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00163{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m56_c00163{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.mee_c00163{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);}
.m63_c00163{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.mb2_c00163{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);}
.m88_c00163{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.mb6_c00163{transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);}
.m4f_c00163{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00163{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.mea_c00163{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m89_c00163{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00163{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m3f_c00163{transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);}
.m78_c00163{transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.271464,-0.004072,0.003750,0.249972,0,0);-ms-transform:matrix(0.271464,-0.004072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271464,-0.004072,0.003750,0.249972,0,0);}
.m31_c00163{transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);}
.m9a_c00163{transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);}
.m38_c00163{transform:matrix(0.304645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304645,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.317645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317645,0.000000,0.000000,0.250000,0,0);}
.m70_c00163{transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.334460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334460,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.347440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347440,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{transform:matrix(0.351745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351745,0.000000,0.000000,0.250000,0,0);}
.m77_c00163{transform:matrix(0.360100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360100,0.000000,0.000000,0.250000,0,0);}
.mb1_c00163{transform:matrix(0.376745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376745,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:0.000000px;}
.fc0_c00163{color:transparent;}
.fs7_c00163{font-size:37.800000px;}
.fse_c00163{font-size:57.750000px;}
.fs9_c00163{font-size:58.800000px;}
.fs8_c00163{font-size:60.900000px;}
.fsb_c00163{font-size:61.950000px;}
.fsc_c00163{font-size:63.000000px;}
.fs5_c00163{font-size:64.050000px;}
.fs3_c00163{font-size:64.057205px;}
.fs6_c00163{font-size:65.100000px;}
.fs4_c00163{font-size:66.150000px;}
.fs10_c00163{font-size:67.200000px;}
.fsf_c00163{font-size:68.250000px;}
.fs0_c00163{font-size:69.300000px;}
.fs2_c00163{font-size:69.307796px;}
.fsd_c00163{font-size:70.350000px;}
.fsa_c00163{font-size:71.400000px;}
.fs1_c00163{font-size:71.408032px;}
.y0_c00163{bottom:0.000000px;}
.y52_c00163{bottom:24.666000px;}
.y51_c00163{bottom:41.040000px;}
.y50_c00163{bottom:58.590000px;}
.y4f_c00163{bottom:76.174500px;}
.y4e_c00163{bottom:93.420000px;}
.y4d_c00163{bottom:110.160000px;}
.y4c_c00163{bottom:127.594500px;}
.y4b_c00163{bottom:145.378500px;}
.y4a_c00163{bottom:163.717500px;}
.y49_c00163{bottom:181.137000px;}
.y48_c00163{bottom:196.897500px;}
.y47_c00163{bottom:215.224500px;}
.y46_c00163{bottom:233.382000px;}
.y45_c00163{bottom:251.758500px;}
.y44_c00163{bottom:268.615500px;}
.y43_c00163{bottom:286.351500px;}
.y42_c00163{bottom:303.544500px;}
.y41_c00163{bottom:320.284500px;}
.y40_c00163{bottom:338.104500px;}
.y3f_c00163{bottom:354.930000px;}
.y3e_c00163{bottom:373.051500px;}
.y3d_c00163{bottom:390.570000px;}
.y3c_c00163{bottom:408.168000px;}
.y35_c00163{bottom:420.667500px;}
.y36_c00163{bottom:421.978500px;}
.y37_c00163{bottom:422.196000px;}
.y38_c00163{bottom:423.292500px;}
.y39_c00163{bottom:424.603500px;}
.y3a_c00163{bottom:425.302500px;}
.y3b_c00163{bottom:425.754000px;}
.y2e_c00163{bottom:438.216000px;}
.y2f_c00163{bottom:438.663000px;}
.y30_c00163{bottom:439.732500px;}
.y31_c00163{bottom:440.134500px;}
.y32_c00163{bottom:441.087000px;}
.y33_c00163{bottom:441.364500px;}
.y34_c00163{bottom:442.249500px;}
.y26_c00163{bottom:458.464500px;}
.y27_c00163{bottom:459.075000px;}
.y28_c00163{bottom:460.129500px;}
.y29_c00163{bottom:460.776000px;}
.y2a_c00163{bottom:461.257500px;}
.y2b_c00163{bottom:461.685000px;}
.y2c_c00163{bottom:462.598500px;}
.y2d_c00163{bottom:462.823500px;}
.y25_c00163{bottom:477.030000px;}
.y1c_c00163{bottom:491.133000px;}
.y1d_c00163{bottom:491.533500px;}
.y1e_c00163{bottom:491.722500px;}
.y1f_c00163{bottom:492.802500px;}
.y20_c00163{bottom:492.991500px;}
.y21_c00163{bottom:493.765500px;}
.y22_c00163{bottom:494.166000px;}
.y23_c00163{bottom:494.473500px;}
.y24_c00163{bottom:494.806500px;}
.y1b_c00163{bottom:511.411500px;}
.y13_c00163{bottom:525.956737px;}
.y14_c00163{bottom:526.286460px;}
.y15_c00163{bottom:526.437172px;}
.y16_c00163{bottom:527.114467px;}
.y17_c00163{bottom:527.335995px;}
.y18_c00163{bottom:527.769548px;}
.y19_c00163{bottom:528.050858px;}
.y1a_c00163{bottom:528.714510px;}
.y9_c00163{bottom:542.700090px;}
.ya_c00163{bottom:543.421830px;}
.yb_c00163{bottom:543.603045px;}
.yc_c00163{bottom:543.898935px;}
.yd_c00163{bottom:544.461817px;}
.ye_c00163{bottom:544.684177px;}
.yf_c00163{bottom:545.780677px;}
.y10_c00163{bottom:546.044700px;}
.y11_c00163{bottom:546.580207px;}
.y12_c00163{bottom:546.703057px;}
.y2_c00163{bottom:560.251500px;}
.y3_c00163{bottom:560.692725px;}
.y4_c00163{bottom:561.285420px;}
.y5_c00163{bottom:562.633867px;}
.y6_c00163{bottom:563.553105px;}
.y7_c00163{bottom:563.784045px;}
.y8_c00163{bottom:564.163912px;}
.y1_c00163{bottom:579.150000px;}
.h9_c00163{height:37.800000px;}
.h10_c00163{height:57.750000px;}
.hb_c00163{height:58.800000px;}
.ha_c00163{height:60.900000px;}
.hd_c00163{height:61.950000px;}
.he_c00163{height:63.000000px;}
.h7_c00163{height:64.050000px;}
.h5_c00163{height:64.057205px;}
.h8_c00163{height:65.100000px;}
.h6_c00163{height:66.150000px;}
.h12_c00163{height:67.200000px;}
.h11_c00163{height:68.250000px;}
.h2_c00163{height:69.300000px;}
.h4_c00163{height:69.307796px;}
.hf_c00163{height:70.350000px;}
.hc_c00163{height:71.400000px;}
.h3_c00163{height:71.408032px;}
.h0_c00163{height:623.100000px;}
.h1_c00163{height:623.250000px;}
.w1_c00163{width:383.250000px;}
.w0_c00163{width:383.400000px;}
.x0_c00163{left:0.000000px;}
.x9_c00163{left:48.778125px;}
.x70_c00163{left:50.490000px;}
.x2_c00163{left:53.610000px;}
.x5b_c00163{left:54.810000px;}
.x7a_c00163{left:55.890000px;}
.x6d_c00163{left:62.910000px;}
.x3a_c00163{left:68.310000px;}
.x26_c00163{left:75.598500px;}
.x13_c00163{left:78.989070px;}
.x5c_c00163{left:81.810000px;}
.x3_c00163{left:83.025000px;}
.x34_c00163{left:86.940000px;}
.x75_c00163{left:88.560000px;}
.x14_c00163{left:90.636930px;}
.x20_c00163{left:96.349500px;}
.x6a_c00163{left:97.470000px;}
.x40_c00163{left:99.090000px;}
.xa_c00163{left:100.294890px;}
.x4b_c00163{left:101.790000px;}
.x3b_c00163{left:104.220000px;}
.x61_c00163{left:106.650000px;}
.x7d_c00163{left:109.620000px;}
.x56_c00163{left:110.970000px;}
.xb_c00163{left:113.276093px;}
.x35_c00163{left:115.020000px;}
.x6e_c00163{left:116.100000px;}
.x6b_c00163{left:117.720000px;}
.x51_c00163{left:118.800000px;}
.x62_c00163{left:120.150000px;}
.x4_c00163{left:122.538000px;}
.x76_c00163{left:123.930000px;}
.x7b_c00163{left:125.010000px;}
.x1a_c00163{left:126.630000px;}
.x36_c00163{left:132.300000px;}
.xc_c00163{left:134.402408px;}
.x7e_c00163{left:135.810000px;}
.x2f_c00163{left:138.244500px;}
.x15_c00163{left:142.691483px;}
.x71_c00163{left:144.720000px;}
.x52_c00163{left:145.800000px;}
.x5d_c00163{left:149.310000px;}
.x27_c00163{left:151.738500px;}
.x1b_c00163{left:155.790000px;}
.x16_c00163{left:159.760500px;}
.x63_c00163{left:161.460000px;}
.x74_c00163{left:163.620000px;}
.x48_c00163{left:167.400000px;}
.x3c_c00163{left:169.290000px;}
.x45_c00163{left:171.180000px;}
.x21_c00163{left:173.455500px;}
.xd_c00163{left:174.628515px;}
.x4c_c00163{left:175.770000px;}
.x68_c00163{left:178.200000px;}
.x46_c00163{left:184.410000px;}
.x1_c00163{left:186.030000px;}
.x64_c00163{left:187.650000px;}
.xe_c00163{left:190.552763px;}
.x77_c00163{left:191.700000px;}
.x17_c00163{left:193.165013px;}
.x53_c00163{left:195.480000px;}
.x1c_c00163{left:197.370000px;}
.x28_c00163{left:200.878500px;}
.x57_c00163{left:203.850000px;}
.x65_c00163{left:204.930000px;}
.x72_c00163{left:207.090000px;}
.x66_c00163{left:208.980000px;}
.x41_c00163{left:211.410000px;}
.x5_c00163{left:212.434500px;}
.x30_c00163{left:213.472500px;}
.x18_c00163{left:214.819665px;}
.x2b_c00163{left:218.247000px;}
.x6f_c00163{left:220.590000px;}
.x5e_c00163{left:221.670000px;}
.x3d_c00163{left:223.560000px;}
.x58_c00163{left:225.720000px;}
.x31_c00163{left:228.901500px;}
.x42_c00163{left:231.660000px;}
.x37_c00163{left:239.760000px;}
.x22_c00163{left:242.292000px;}
.x2c_c00163{left:243.432000px;}
.x3e_c00163{left:246.240000px;}
.x47_c00163{left:248.400000px;}
.x5f_c00163{left:251.370000px;}
.x49_c00163{left:252.450000px;}
.x1d_c00163{left:254.340000px;}
.x4d_c00163{left:255.420000px;}
.x54_c00163{left:257.310000px;}
.x29_c00163{left:260.548500px;}
.x59_c00163{left:263.520000px;}
.x67_c00163{left:264.600000px;}
.x19_c00163{left:265.864695px;}
.x38_c00163{left:267.030000px;}
.xf_c00163{left:268.853933px;}
.x23_c00163{left:270.910500px;}
.x78_c00163{left:272.700000px;}
.x6_c00163{left:273.717000px;}
.x32_c00163{left:278.044500px;}
.x1e_c00163{left:282.420000px;}
.x10_c00163{left:287.755725px;}
.x7_c00163{left:289.113000px;}
.x24_c00163{left:292.848000px;}
.x6c_c00163{left:295.110000px;}
.x2d_c00163{left:297.132000px;}
.x39_c00163{left:300.510000px;}
.x7c_c00163{left:302.670000px;}
.x43_c00163{left:303.750000px;}
.x1f_c00163{left:305.100000px;}
.x60_c00163{left:309.150000px;}
.x2e_c00163{left:310.395000px;}
.x4e_c00163{left:311.850000px;}
.x8_c00163{left:314.437500px;}
.x25_c00163{left:316.614000px;}
.x3f_c00163{left:318.600000px;}
.x69_c00163{left:320.490000px;}
.x33_c00163{left:321.786000px;}
.x4a_c00163{left:324.000000px;}
.x11_c00163{left:325.956788px;}
.x44_c00163{left:329.400000px;}
.x2a_c00163{left:330.478500px;}
.x55_c00163{left:331.560000px;}
.x12_c00163{left:334.746923px;}
.x79_c00163{left:337.500000px;}
.x5a_c00163{left:338.850000px;}
.x50_c00163{left:340.470000px;}
.x73_c00163{left:343.440000px;}
.x4f_c00163{left:345.600000px;}
.x7f_c00163{left:357.210000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
.fs7_c00163{font-size:33.600000pt;}
.fse_c00163{font-size:51.333333pt;}
.fs9_c00163{font-size:52.266667pt;}
.fs8_c00163{font-size:54.133333pt;}
.fsb_c00163{font-size:55.066667pt;}
.fsc_c00163{font-size:56.000000pt;}
.fs5_c00163{font-size:56.933333pt;}
.fs3_c00163{font-size:56.939738pt;}
.fs6_c00163{font-size:57.866667pt;}
.fs4_c00163{font-size:58.800000pt;}
.fs10_c00163{font-size:59.733333pt;}
.fsf_c00163{font-size:60.666667pt;}
.fs0_c00163{font-size:61.600000pt;}
.fs2_c00163{font-size:61.606930pt;}
.fsd_c00163{font-size:62.533333pt;}
.fsa_c00163{font-size:63.466667pt;}
.fs1_c00163{font-size:63.473806pt;}
.y0_c00163{bottom:0.000000pt;}
.y52_c00163{bottom:21.925333pt;}
.y51_c00163{bottom:36.480000pt;}
.y50_c00163{bottom:52.080000pt;}
.y4f_c00163{bottom:67.710667pt;}
.y4e_c00163{bottom:83.040000pt;}
.y4d_c00163{bottom:97.920000pt;}
.y4c_c00163{bottom:113.417333pt;}
.y4b_c00163{bottom:129.225333pt;}
.y4a_c00163{bottom:145.526667pt;}
.y49_c00163{bottom:161.010667pt;}
.y48_c00163{bottom:175.020000pt;}
.y47_c00163{bottom:191.310667pt;}
.y46_c00163{bottom:207.450667pt;}
.y45_c00163{bottom:223.785333pt;}
.y44_c00163{bottom:238.769333pt;}
.y43_c00163{bottom:254.534667pt;}
.y42_c00163{bottom:269.817333pt;}
.y41_c00163{bottom:284.697333pt;}
.y40_c00163{bottom:300.537333pt;}
.y3f_c00163{bottom:315.493333pt;}
.y3e_c00163{bottom:331.601333pt;}
.y3d_c00163{bottom:347.173333pt;}
.y3c_c00163{bottom:362.816000pt;}
.y35_c00163{bottom:373.926667pt;}
.y36_c00163{bottom:375.092000pt;}
.y37_c00163{bottom:375.285333pt;}
.y38_c00163{bottom:376.260000pt;}
.y39_c00163{bottom:377.425333pt;}
.y3a_c00163{bottom:378.046667pt;}
.y3b_c00163{bottom:378.448000pt;}
.y2e_c00163{bottom:389.525333pt;}
.y2f_c00163{bottom:389.922667pt;}
.y30_c00163{bottom:390.873333pt;}
.y31_c00163{bottom:391.230667pt;}
.y32_c00163{bottom:392.077333pt;}
.y33_c00163{bottom:392.324000pt;}
.y34_c00163{bottom:393.110667pt;}
.y26_c00163{bottom:407.524000pt;}
.y27_c00163{bottom:408.066667pt;}
.y28_c00163{bottom:409.004000pt;}
.y29_c00163{bottom:409.578667pt;}
.y2a_c00163{bottom:410.006667pt;}
.y2b_c00163{bottom:410.386667pt;}
.y2c_c00163{bottom:411.198667pt;}
.y2d_c00163{bottom:411.398667pt;}
.y25_c00163{bottom:424.026667pt;}
.y1c_c00163{bottom:436.562667pt;}
.y1d_c00163{bottom:436.918667pt;}
.y1e_c00163{bottom:437.086667pt;}
.y1f_c00163{bottom:438.046667pt;}
.y20_c00163{bottom:438.214667pt;}
.y21_c00163{bottom:438.902667pt;}
.y22_c00163{bottom:439.258667pt;}
.y23_c00163{bottom:439.532000pt;}
.y24_c00163{bottom:439.828000pt;}
.y1b_c00163{bottom:454.588000pt;}
.y13_c00163{bottom:467.517100pt;}
.y14_c00163{bottom:467.810187pt;}
.y15_c00163{bottom:467.944153pt;}
.y16_c00163{bottom:468.546193pt;}
.y17_c00163{bottom:468.743107pt;}
.y18_c00163{bottom:469.128487pt;}
.y19_c00163{bottom:469.378540pt;}
.y1a_c00163{bottom:469.968453pt;}
.y9_c00163{bottom:482.400080pt;}
.ya_c00163{bottom:483.041627pt;}
.yb_c00163{bottom:483.202707pt;}
.yc_c00163{bottom:483.465720pt;}
.yd_c00163{bottom:483.966060pt;}
.ye_c00163{bottom:484.163713pt;}
.yf_c00163{bottom:485.138380pt;}
.y10_c00163{bottom:485.373067pt;}
.y11_c00163{bottom:485.849073pt;}
.y12_c00163{bottom:485.958273pt;}
.y2_c00163{bottom:498.001333pt;}
.y3_c00163{bottom:498.393533pt;}
.y4_c00163{bottom:498.920373pt;}
.y5_c00163{bottom:500.118993pt;}
.y6_c00163{bottom:500.936093pt;}
.y7_c00163{bottom:501.141373pt;}
.y8_c00163{bottom:501.479033pt;}
.y1_c00163{bottom:514.800000pt;}
.h9_c00163{height:33.600000pt;}
.h10_c00163{height:51.333333pt;}
.hb_c00163{height:52.266667pt;}
.ha_c00163{height:54.133333pt;}
.hd_c00163{height:55.066667pt;}
.he_c00163{height:56.000000pt;}
.h7_c00163{height:56.933333pt;}
.h5_c00163{height:56.939738pt;}
.h8_c00163{height:57.866667pt;}
.h6_c00163{height:58.800000pt;}
.h12_c00163{height:59.733333pt;}
.h11_c00163{height:60.666667pt;}
.h2_c00163{height:61.600000pt;}
.h4_c00163{height:61.606930pt;}
.hf_c00163{height:62.533333pt;}
.hc_c00163{height:63.466667pt;}
.h3_c00163{height:63.473806pt;}
.h0_c00163{height:553.866667pt;}
.h1_c00163{height:554.000000pt;}
.w1_c00163{width:340.666667pt;}
.w0_c00163{width:340.800000pt;}
.x0_c00163{left:0.000000pt;}
.x9_c00163{left:43.358333pt;}
.x70_c00163{left:44.880000pt;}
.x2_c00163{left:47.653333pt;}
.x5b_c00163{left:48.720000pt;}
.x7a_c00163{left:49.680000pt;}
.x6d_c00163{left:55.920000pt;}
.x3a_c00163{left:60.720000pt;}
.x26_c00163{left:67.198667pt;}
.x13_c00163{left:70.212507pt;}
.x5c_c00163{left:72.720000pt;}
.x3_c00163{left:73.800000pt;}
.x34_c00163{left:77.280000pt;}
.x75_c00163{left:78.720000pt;}
.x14_c00163{left:80.566160pt;}
.x20_c00163{left:85.644000pt;}
.x6a_c00163{left:86.640000pt;}
.x40_c00163{left:88.080000pt;}
.xa_c00163{left:89.151013pt;}
.x4b_c00163{left:90.480000pt;}
.x3b_c00163{left:92.640000pt;}
.x61_c00163{left:94.800000pt;}
.x7d_c00163{left:97.440000pt;}
.x56_c00163{left:98.640000pt;}
.xb_c00163{left:100.689860pt;}
.x35_c00163{left:102.240000pt;}
.x6e_c00163{left:103.200000pt;}
.x6b_c00163{left:104.640000pt;}
.x51_c00163{left:105.600000pt;}
.x62_c00163{left:106.800000pt;}
.x4_c00163{left:108.922667pt;}
.x76_c00163{left:110.160000pt;}
.x7b_c00163{left:111.120000pt;}
.x1a_c00163{left:112.560000pt;}
.x36_c00163{left:117.600000pt;}
.xc_c00163{left:119.468807pt;}
.x7e_c00163{left:120.720000pt;}
.x2f_c00163{left:122.884000pt;}
.x15_c00163{left:126.836873pt;}
.x71_c00163{left:128.640000pt;}
.x52_c00163{left:129.600000pt;}
.x5d_c00163{left:132.720000pt;}
.x27_c00163{left:134.878667pt;}
.x1b_c00163{left:138.480000pt;}
.x16_c00163{left:142.009333pt;}
.x63_c00163{left:143.520000pt;}
.x74_c00163{left:145.440000pt;}
.x48_c00163{left:148.800000pt;}
.x3c_c00163{left:150.480000pt;}
.x45_c00163{left:152.160000pt;}
.x21_c00163{left:154.182667pt;}
.xd_c00163{left:155.225347pt;}
.x4c_c00163{left:156.240000pt;}
.x68_c00163{left:158.400000pt;}
.x46_c00163{left:163.920000pt;}
.x1_c00163{left:165.360000pt;}
.x64_c00163{left:166.800000pt;}
.xe_c00163{left:169.380233pt;}
.x77_c00163{left:170.400000pt;}
.x17_c00163{left:171.702233pt;}
.x53_c00163{left:173.760000pt;}
.x1c_c00163{left:175.440000pt;}
.x28_c00163{left:178.558667pt;}
.x57_c00163{left:181.200000pt;}
.x65_c00163{left:182.160000pt;}
.x72_c00163{left:184.080000pt;}
.x66_c00163{left:185.760000pt;}
.x41_c00163{left:187.920000pt;}
.x5_c00163{left:188.830667pt;}
.x30_c00163{left:189.753333pt;}
.x18_c00163{left:190.950813pt;}
.x2b_c00163{left:193.997333pt;}
.x6f_c00163{left:196.080000pt;}
.x5e_c00163{left:197.040000pt;}
.x3d_c00163{left:198.720000pt;}
.x58_c00163{left:200.640000pt;}
.x31_c00163{left:203.468000pt;}
.x42_c00163{left:205.920000pt;}
.x37_c00163{left:213.120000pt;}
.x22_c00163{left:215.370667pt;}
.x2c_c00163{left:216.384000pt;}
.x3e_c00163{left:218.880000pt;}
.x47_c00163{left:220.800000pt;}
.x5f_c00163{left:223.440000pt;}
.x49_c00163{left:224.400000pt;}
.x1d_c00163{left:226.080000pt;}
.x4d_c00163{left:227.040000pt;}
.x54_c00163{left:228.720000pt;}
.x29_c00163{left:231.598667pt;}
.x59_c00163{left:234.240000pt;}
.x67_c00163{left:235.200000pt;}
.x19_c00163{left:236.324173pt;}
.x38_c00163{left:237.360000pt;}
.xf_c00163{left:238.981273pt;}
.x23_c00163{left:240.809333pt;}
.x78_c00163{left:242.400000pt;}
.x6_c00163{left:243.304000pt;}
.x32_c00163{left:247.150667pt;}
.x1e_c00163{left:251.040000pt;}
.x10_c00163{left:255.782867pt;}
.x7_c00163{left:256.989333pt;}
.x24_c00163{left:260.309333pt;}
.x6c_c00163{left:262.320000pt;}
.x2d_c00163{left:264.117333pt;}
.x39_c00163{left:267.120000pt;}
.x7c_c00163{left:269.040000pt;}
.x43_c00163{left:270.000000pt;}
.x1f_c00163{left:271.200000pt;}
.x60_c00163{left:274.800000pt;}
.x2e_c00163{left:275.906667pt;}
.x4e_c00163{left:277.200000pt;}
.x8_c00163{left:279.500000pt;}
.x25_c00163{left:281.434667pt;}
.x3f_c00163{left:283.200000pt;}
.x69_c00163{left:284.880000pt;}
.x33_c00163{left:286.032000pt;}
.x4a_c00163{left:288.000000pt;}
.x11_c00163{left:289.739367pt;}
.x44_c00163{left:292.800000pt;}
.x2a_c00163{left:293.758667pt;}
.x55_c00163{left:294.720000pt;}
.x12_c00163{left:297.552820pt;}
.x79_c00163{left:300.000000pt;}
.x5a_c00163{left:301.200000pt;}
.x50_c00163{left:302.640000pt;}
.x73_c00163{left:305.280000pt;}
.x4f_c00163{left:307.200000pt;}
.x7f_c00163{left:317.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00164 {
    display:none;
  }
  .loading-indicator_c00164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00164 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00164 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00164" -> "#page-container .classname_c00164")
 */
.pf_c00164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00164 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00164 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00164 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00164 {overflow:visible;}
  }
}
.c_c00164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00164 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00164:after { /* webkit #35443 */
  content: '';
}
.t_c00164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00164 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00164 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00164 { /* info for Javascript */
  display:none;
}
.l_c00164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00164:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00164 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00164.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00164;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00164{transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);}
.mc8_c00164{transform:matrix(0.122620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122620,0.000000,0.000000,0.250000,0,0);}
.mb1_c00164{transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134255,0.000000,0.000000,0.250000,0,0);}
.mec_c00164{transform:matrix(0.140035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140035,0.000000,0.000000,0.250000,0,0);}
.m2d_c00164{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m98_c00164{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.m45_c00164{transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);}
.ma7_c00164{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m31_c00164{transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.150435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150435,0.000000,0.000000,0.250000,0,0);}
.m7f_c00164{transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);}
.m7d_c00164{transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);}
.m3b_c00164{transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);}
.md2_c00164{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.m38_c00164{transform:matrix(0.154715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154715,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.156130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156130,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m4b_c00164{transform:matrix(0.156945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156945,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.mde_c00164{transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);}
.m33_c00164{transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.mb3_c00164{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);}
.mb7_c00164{transform:matrix(0.159585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159585,0.000000,0.000000,0.250000,0,0);}
.md5_c00164{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);}
.m7e_c00164{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.md7_c00164{transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);}
.m9b_c00164{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.mcf_c00164{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mf2_c00164{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m82_c00164{transform:matrix(0.164305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164305,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00164{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m77_c00164{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.165690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165690,0.000000,0.000000,0.250000,0,0);}
.mf4_c00164{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00164{transform:matrix(0.167010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167010,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.m70_c00164{transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);}
.m28_c00164{transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m61_c00164{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m51_c00164{transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);}
.m71_c00164{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);}
.m29_c00164{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m3f_c00164{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);}
.md0_c00164{transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);}
.mba_c00164{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.me4_c00164{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.mdb_c00164{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m81_c00164{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m80_c00164{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m9e_c00164{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);}
.mee_c00164{transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m35_c00164{transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);}
.m21_c00164{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00164{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.mf3_c00164{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m2c_c00164{transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);}
.me6_c00164{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.mbc_c00164{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00164{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m9c_c00164{transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);}
.m6f_c00164{transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);}
.m93_c00164{transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m84_c00164{transform:matrix(0.179285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179285,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);}
.mb2_c00164{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mbb_c00164{transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);}
.maa_c00164{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.mf0_c00164{transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);}
.m46_c00164{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.ma8_c00164{transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);}
.mad_c00164{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.mea_c00164{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.m4c_c00164{transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.m75_c00164{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.md4_c00164{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m87_c00164{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.maf_c00164{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.mb9_c00164{transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);}
.mdd_c00164{transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00164{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.md9_c00164{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m66_c00164{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.mb4_c00164{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);}
.m3d_c00164{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.md6_c00164{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);}
.mab_c00164{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m99_c00164{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.me3_c00164{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.meb_c00164{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.ma6_c00164{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.m60_c00164{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00164{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);}
.m9a_c00164{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.m8c_c00164{transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);}
.md3_c00164{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m97_c00164{transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);}
.m63_c00164{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.mef_c00164{transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191905,0.000000,0.000000,0.250000,0,0);}
.mbd_c00164{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00164{transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);}
.mb6_c00164{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.ma1_c00164{transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);}
.m76_c00164{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m8b_c00164{transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);}
.mc7_c00164{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.m1b_c00164{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.me7_c00164{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.md8_c00164{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00164{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.m57_c00164{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.m94_c00164{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m6a_c00164{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.mcd_c00164{transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);}
.m25_c00164{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m6d_c00164{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.m7a_c00164{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mb0_c00164{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.me0_c00164{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.m22_c00164{transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);}
.mbf_c00164{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m96_c00164{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.m89_c00164{transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);}
.m67_c00164{transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);}
.m53_c00164{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.mb5_c00164{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m95_c00164{transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);}
.mf1_c00164{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m7b_c00164{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00164{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.m8a_c00164{transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);}
.m2b_c00164{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.ma5_c00164{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m74_c00164{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.ma2_c00164{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.mf6_c00164{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.m20_c00164{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);}
.m2a_c00164{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m4d_c00164{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m92_c00164{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m91_c00164{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.m90_c00164{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207355,0.000000,0.000000,0.250000,0,0);}
.m9f_c00164{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.md1_c00164{transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);}
.me2_c00164{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m68_c00164{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m72_c00164{transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);}
.ma0_c00164{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.mce_c00164{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.ma9_c00164{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00164{transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);}
.mc4_c00164{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.me8_c00164{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.mc3_c00164{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00164{transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);}
.mdf_c00164{transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);}
.m69_c00164{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);}
.me5_c00164{transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);}
.m64_c00164{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.m56_c00164{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.mae_c00164{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.m8d_c00164{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.me1_c00164{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.mac_c00164{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m6b_c00164{transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216405,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);}
.mdc_c00164{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m9d_c00164{transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);}
.mca_c00164{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.mcb_c00164{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00164{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);}
.mc2_c00164{transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);}
.m88_c00164{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00164{transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);}
.me9_c00164{transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232770,0.000000,0.000000,0.250000,0,0);}
.mf7_c00164{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.mc5_c00164{transform:matrix(0.233730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233730,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);}
.m78_c00164{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.mc9_c00164{transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236185,0.000000,0.000000,0.250000,0,0);}
.m5c_c00164{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.m5d_c00164{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.mda_c00164{transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.med_c00164{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.m5f_c00164{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.mc0_c00164{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00164{transform:matrix(0.295020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295020,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.309155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309155,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);}
.mf5_c00164{transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);}
.mc1_c00164{transform:matrix(0.378815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378815,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(0.523385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523385,0.000000,0.000000,0.250000,0,0);}
.mb8_c00164{transform:matrix(0.656790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656790,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:0.000000px;}
.fc0_c00164{color:transparent;}
.fsd_c00164{font-size:40.950000px;}
.fs7_c00164{font-size:57.750000px;}
.fsa_c00164{font-size:59.850000px;}
.fs3_c00164{font-size:60.900000px;}
.fs8_c00164{font-size:61.950000px;}
.fs4_c00164{font-size:63.000000px;}
.fs9_c00164{font-size:64.050000px;}
.fs2_c00164{font-size:65.100000px;}
.fs0_c00164{font-size:67.200000px;}
.fsc_c00164{font-size:68.250000px;}
.fs5_c00164{font-size:69.300000px;}
.fs6_c00164{font-size:70.350000px;}
.fs1_c00164{font-size:71.400000px;}
.fsb_c00164{font-size:73.500000px;}
.y0_c00164{bottom:0.000000px;}
.y65_c00164{bottom:21.978000px;}
.y64_c00164{bottom:31.015500px;}
.y63_c00164{bottom:49.621500px;}
.y62_c00164{bottom:51.220500px;}
.y61_c00164{bottom:51.861000px;}
.y60_c00164{bottom:52.183500px;}
.y5f_c00164{bottom:53.877000px;}
.y5e_c00164{bottom:54.753000px;}
.y5d_c00164{bottom:56.026500px;}
.y5c_c00164{bottom:56.706000px;}
.y5b_c00164{bottom:69.220500px;}
.y5a_c00164{bottom:69.567000px;}
.y59_c00164{bottom:70.209000px;}
.y58_c00164{bottom:70.597500px;}
.y57_c00164{bottom:71.890500px;}
.y56_c00164{bottom:72.091500px;}
.y55_c00164{bottom:84.745500px;}
.y54_c00164{bottom:86.404500px;}
.y53_c00164{bottom:87.627000px;}
.y52_c00164{bottom:88.054500px;}
.y51_c00164{bottom:88.438500px;}
.y50_c00164{bottom:89.371500px;}
.y4f_c00164{bottom:101.785500px;}
.y4e_c00164{bottom:102.297000px;}
.y4d_c00164{bottom:103.197000px;}
.y4c_c00164{bottom:103.554000px;}
.y4b_c00164{bottom:104.404500px;}
.y4a_c00164{bottom:104.682000px;}
.y49_c00164{bottom:105.289500px;}
.y48_c00164{bottom:106.413000px;}
.y47_c00164{bottom:106.947000px;}
.y46_c00164{bottom:107.733000px;}
.y45_c00164{bottom:119.508000px;}
.y44_c00164{bottom:135.426000px;}
.y43_c00164{bottom:154.297500px;}
.y42_c00164{bottom:169.362000px;}
.y41_c00164{bottom:187.464000px;}
.y40_c00164{bottom:205.288500px;}
.y3f_c00164{bottom:205.551000px;}
.y3e_c00164{bottom:206.470500px;}
.y3d_c00164{bottom:206.956500px;}
.y3c_c00164{bottom:207.684000px;}
.y3b_c00164{bottom:208.005000px;}
.y3a_c00164{bottom:208.963500px;}
.y39_c00164{bottom:209.251500px;}
.y38_c00164{bottom:221.776500px;}
.y37_c00164{bottom:222.369000px;}
.y36_c00164{bottom:222.654000px;}
.y35_c00164{bottom:223.021500px;}
.y34_c00164{bottom:223.603500px;}
.y33_c00164{bottom:223.897500px;}
.y32_c00164{bottom:225.004500px;}
.y31_c00164{bottom:225.843000px;}
.y30_c00164{bottom:226.534500px;}
.y2f_c00164{bottom:239.431500px;}
.y2e_c00164{bottom:240.102000px;}
.y2d_c00164{bottom:240.411000px;}
.y2c_c00164{bottom:241.176000px;}
.y2b_c00164{bottom:241.608000px;}
.y2a_c00164{bottom:241.945500px;}
.y29_c00164{bottom:242.545500px;}
.y28_c00164{bottom:242.752500px;}
.y27_c00164{bottom:243.813000px;}
.y26_c00164{bottom:256.962000px;}
.y25_c00164{bottom:258.148500px;}
.y24_c00164{bottom:258.808500px;}
.y23_c00164{bottom:259.003500px;}
.y22_c00164{bottom:259.672500px;}
.y21_c00164{bottom:259.972500px;}
.y20_c00164{bottom:260.316000px;}
.y1f_c00164{bottom:261.094500px;}
.y1e_c00164{bottom:276.717000px;}
.y1d_c00164{bottom:292.273500px;}
.y1c_c00164{bottom:292.882500px;}
.y1b_c00164{bottom:294.162000px;}
.y1a_c00164{bottom:294.565500px;}
.y19_c00164{bottom:295.381500px;}
.y18_c00164{bottom:310.452000px;}
.y17_c00164{bottom:310.900500px;}
.y16_c00164{bottom:311.037000px;}
.y15_c00164{bottom:311.553000px;}
.y14_c00164{bottom:312.099000px;}
.y13_c00164{bottom:312.505500px;}
.y12_c00164{bottom:312.772500px;}
.y11_c00164{bottom:313.200000px;}
.y10_c00164{bottom:328.369500px;}
.yf_c00164{bottom:344.920500px;}
.ye_c00164{bottom:360.649500px;}
.yd_c00164{bottom:378.052500px;}
.yc_c00164{bottom:395.362500px;}
.yb_c00164{bottom:412.681500px;}
.ya_c00164{bottom:429.915000px;}
.y9_c00164{bottom:447.592500px;}
.y8_c00164{bottom:464.748000px;}
.y7_c00164{bottom:482.419500px;}
.y6_c00164{bottom:499.671000px;}
.y5_c00164{bottom:516.712500px;}
.y4_c00164{bottom:534.882000px;}
.y3_c00164{bottom:551.932500px;}
.y2_c00164{bottom:568.323000px;}
.y1_c00164{bottom:586.170000px;}
.hf_c00164{height:40.950000px;}
.h9_c00164{height:57.750000px;}
.hc_c00164{height:59.850000px;}
.h5_c00164{height:60.900000px;}
.ha_c00164{height:61.950000px;}
.h6_c00164{height:63.000000px;}
.hb_c00164{height:64.050000px;}
.h4_c00164{height:65.100000px;}
.h2_c00164{height:67.200000px;}
.he_c00164{height:68.250000px;}
.h7_c00164{height:69.300000px;}
.h8_c00164{height:70.350000px;}
.h3_c00164{height:71.400000px;}
.hd_c00164{height:73.500000px;}
.h0_c00164{height:623.100000px;}
.h1_c00164{height:623.250000px;}
.w1_c00164{width:383.250000px;}
.w0_c00164{width:383.400000px;}
.x0_c00164{left:0.000000px;}
.x73_c00164{left:25.650000px;}
.x52_c00164{left:30.904500px;}
.xd_c00164{left:32.400000px;}
.x7_c00164{left:33.480000px;}
.x7b_c00164{left:34.891500px;}
.x66_c00164{left:36.840000px;}
.x37_c00164{left:39.690000px;}
.x28_c00164{left:41.850000px;}
.x42_c00164{left:44.280000px;}
.x57_c00164{left:49.680000px;}
.x82_c00164{left:51.570000px;}
.x2_c00164{left:52.650000px;}
.x2d_c00164{left:55.350000px;}
.x38_c00164{left:57.240000px;}
.x7c_c00164{left:62.097000px;}
.x1b_c00164{left:63.720000px;}
.x35_c00164{left:66.150000px;}
.x13_c00164{left:68.040000px;}
.x4d_c00164{left:70.389000px;}
.x8_c00164{left:71.820000px;}
.x39_c00164{left:75.060000px;}
.x74_c00164{left:78.300000px;}
.x29_c00164{left:79.380000px;}
.x4a_c00164{left:81.810000px;}
.x5a_c00164{left:83.587500px;}
.x2e_c00164{left:86.940000px;}
.xe_c00164{left:89.370000px;}
.x43_c00164{left:90.990000px;}
.x1c_c00164{left:92.610000px;}
.x4e_c00164{left:94.641000px;}
.x78_c00164{left:96.691500px;}
.x70_c00164{left:97.740000px;}
.x3_c00164{left:101.790000px;}
.x44_c00164{left:103.680000px;}
.x53_c00164{left:105.148500px;}
.x5b_c00164{left:106.455000px;}
.x3a_c00164{left:107.730000px;}
.x76_c00164{left:109.350000px;}
.x2f_c00164{left:111.780000px;}
.x7d_c00164{left:113.007000px;}
.x14_c00164{left:114.480000px;}
.x22_c00164{left:115.830000px;}
.x67_c00164{left:119.977500px;}
.xf_c00164{left:121.770000px;}
.x1d_c00164{left:125.550000px;}
.x5f_c00164{left:127.524000px;}
.x36_c00164{left:129.870000px;}
.x4f_c00164{left:131.632500px;}
.x6e_c00164{left:134.190000px;}
.x23_c00164{left:138.240000px;}
.x46_c00164{left:139.590000px;}
.x15_c00164{left:140.670000px;}
.x54_c00164{left:141.873000px;}
.x77_c00164{left:143.100000px;}
.x9_c00164{left:146.610000px;}
.x7e_c00164{left:148.038000px;}
.x1e_c00164{left:149.310000px;}
.x3b_c00164{left:150.930000px;}
.x75_c00164{left:154.440000px;}
.x58_c00164{left:155.790000px;}
.x16_c00164{left:157.680000px;}
.x24_c00164{left:160.110000px;}
.x6b_c00164{left:163.620000px;}
.x1_c00164{left:164.970000px;}
.x5c_c00164{left:171.070500px;}
.x71_c00164{left:174.690000px;}
.x2a_c00164{left:177.930000px;}
.x79_c00164{left:179.091000px;}
.x50_c00164{left:181.336500px;}
.x3f_c00164{left:183.060000px;}
.x17_c00164{left:184.410000px;}
.x30_c00164{left:186.570000px;}
.x47_c00164{left:188.730000px;}
.x59_c00164{left:190.350000px;}
.x4_c00164{left:193.050000px;}
.x10_c00164{left:194.670000px;}
.x60_c00164{left:196.722000px;}
.x1f_c00164{left:201.420000px;}
.x18_c00164{left:202.770000px;}
.xa_c00164{left:207.900000px;}
.x25_c00164{left:210.060000px;}
.x2b_c00164{left:213.300000px;}
.x61_c00164{left:215.082000px;}
.x11_c00164{left:217.620000px;}
.x5_c00164{left:218.970000px;}
.x20_c00164{left:220.320000px;}
.x68_c00164{left:222.309000px;}
.x31_c00164{left:225.720000px;}
.x26_c00164{left:227.610000px;}
.x7f_c00164{left:228.703500px;}
.xb_c00164{left:233.820000px;}
.x2c_c00164{left:235.440000px;}
.x3c_c00164{left:238.410000px;}
.x6c_c00164{left:239.490000px;}
.x51_c00164{left:240.696000px;}
.x40_c00164{left:244.350000px;}
.x32_c00164{left:248.940000px;}
.x62_c00164{left:251.445000px;}
.x48_c00164{left:254.880000px;}
.x55_c00164{left:258.241500px;}
.xc_c00164{left:265.410000px;}
.x7a_c00164{left:269.124000px;}
.x4b_c00164{left:270.540000px;}
.x41_c00164{left:271.890000px;}
.x63_c00164{left:274.398000px;}
.x12_c00164{left:276.480000px;}
.x72_c00164{left:278.100000px;}
.x5d_c00164{left:279.336000px;}
.x49_c00164{left:281.070000px;}
.x21_c00164{left:282.420000px;}
.x69_c00164{left:283.609500px;}
.x19_c00164{left:285.660000px;}
.x81_c00164{left:288.900000px;}
.x33_c00164{left:290.520000px;}
.x64_c00164{left:292.209000px;}
.x6_c00164{left:294.030000px;}
.x3d_c00164{left:296.730000px;}
.x6a_c00164{left:301.135500px;}
.x6d_c00164{left:305.910000px;}
.x27_c00164{left:307.260000px;}
.x45_c00164{left:309.150000px;}
.x1a_c00164{left:311.310000px;}
.x56_c00164{left:313.593000px;}
.x4c_c00164{left:315.360000px;}
.x3e_c00164{left:317.250000px;}
.x80_c00164{left:318.280500px;}
.x6f_c00164{left:319.410000px;}
.x34_c00164{left:320.760000px;}
.x5e_c00164{left:324.069000px;}
.x65_c00164{left:329.194500px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
.fsd_c00164{font-size:36.400000pt;}
.fs7_c00164{font-size:51.333333pt;}
.fsa_c00164{font-size:53.200000pt;}
.fs3_c00164{font-size:54.133333pt;}
.fs8_c00164{font-size:55.066667pt;}
.fs4_c00164{font-size:56.000000pt;}
.fs9_c00164{font-size:56.933333pt;}
.fs2_c00164{font-size:57.866667pt;}
.fs0_c00164{font-size:59.733333pt;}
.fsc_c00164{font-size:60.666667pt;}
.fs5_c00164{font-size:61.600000pt;}
.fs6_c00164{font-size:62.533333pt;}
.fs1_c00164{font-size:63.466667pt;}
.fsb_c00164{font-size:65.333333pt;}
.y0_c00164{bottom:0.000000pt;}
.y65_c00164{bottom:19.536000pt;}
.y64_c00164{bottom:27.569333pt;}
.y63_c00164{bottom:44.108000pt;}
.y62_c00164{bottom:45.529333pt;}
.y61_c00164{bottom:46.098667pt;}
.y60_c00164{bottom:46.385333pt;}
.y5f_c00164{bottom:47.890667pt;}
.y5e_c00164{bottom:48.669333pt;}
.y5d_c00164{bottom:49.801333pt;}
.y5c_c00164{bottom:50.405333pt;}
.y5b_c00164{bottom:61.529333pt;}
.y5a_c00164{bottom:61.837333pt;}
.y59_c00164{bottom:62.408000pt;}
.y58_c00164{bottom:62.753333pt;}
.y57_c00164{bottom:63.902667pt;}
.y56_c00164{bottom:64.081333pt;}
.y55_c00164{bottom:75.329333pt;}
.y54_c00164{bottom:76.804000pt;}
.y53_c00164{bottom:77.890667pt;}
.y52_c00164{bottom:78.270667pt;}
.y51_c00164{bottom:78.612000pt;}
.y50_c00164{bottom:79.441333pt;}
.y4f_c00164{bottom:90.476000pt;}
.y4e_c00164{bottom:90.930667pt;}
.y4d_c00164{bottom:91.730667pt;}
.y4c_c00164{bottom:92.048000pt;}
.y4b_c00164{bottom:92.804000pt;}
.y4a_c00164{bottom:93.050667pt;}
.y49_c00164{bottom:93.590667pt;}
.y48_c00164{bottom:94.589333pt;}
.y47_c00164{bottom:95.064000pt;}
.y46_c00164{bottom:95.762667pt;}
.y45_c00164{bottom:106.229333pt;}
.y44_c00164{bottom:120.378667pt;}
.y43_c00164{bottom:137.153333pt;}
.y42_c00164{bottom:150.544000pt;}
.y41_c00164{bottom:166.634667pt;}
.y40_c00164{bottom:182.478667pt;}
.y3f_c00164{bottom:182.712000pt;}
.y3e_c00164{bottom:183.529333pt;}
.y3d_c00164{bottom:183.961333pt;}
.y3c_c00164{bottom:184.608000pt;}
.y3b_c00164{bottom:184.893333pt;}
.y3a_c00164{bottom:185.745333pt;}
.y39_c00164{bottom:186.001333pt;}
.y38_c00164{bottom:197.134667pt;}
.y37_c00164{bottom:197.661333pt;}
.y36_c00164{bottom:197.914667pt;}
.y35_c00164{bottom:198.241333pt;}
.y34_c00164{bottom:198.758667pt;}
.y33_c00164{bottom:199.020000pt;}
.y32_c00164{bottom:200.004000pt;}
.y31_c00164{bottom:200.749333pt;}
.y30_c00164{bottom:201.364000pt;}
.y2f_c00164{bottom:212.828000pt;}
.y2e_c00164{bottom:213.424000pt;}
.y2d_c00164{bottom:213.698667pt;}
.y2c_c00164{bottom:214.378667pt;}
.y2b_c00164{bottom:214.762667pt;}
.y2a_c00164{bottom:215.062667pt;}
.y29_c00164{bottom:215.596000pt;}
.y28_c00164{bottom:215.780000pt;}
.y27_c00164{bottom:216.722667pt;}
.y26_c00164{bottom:228.410667pt;}
.y25_c00164{bottom:229.465333pt;}
.y24_c00164{bottom:230.052000pt;}
.y23_c00164{bottom:230.225333pt;}
.y22_c00164{bottom:230.820000pt;}
.y21_c00164{bottom:231.086667pt;}
.y20_c00164{bottom:231.392000pt;}
.y1f_c00164{bottom:232.084000pt;}
.y1e_c00164{bottom:245.970667pt;}
.y1d_c00164{bottom:259.798667pt;}
.y1c_c00164{bottom:260.340000pt;}
.y1b_c00164{bottom:261.477333pt;}
.y1a_c00164{bottom:261.836000pt;}
.y19_c00164{bottom:262.561333pt;}
.y18_c00164{bottom:275.957333pt;}
.y17_c00164{bottom:276.356000pt;}
.y16_c00164{bottom:276.477333pt;}
.y15_c00164{bottom:276.936000pt;}
.y14_c00164{bottom:277.421333pt;}
.y13_c00164{bottom:277.782667pt;}
.y12_c00164{bottom:278.020000pt;}
.y11_c00164{bottom:278.400000pt;}
.y10_c00164{bottom:291.884000pt;}
.yf_c00164{bottom:306.596000pt;}
.ye_c00164{bottom:320.577333pt;}
.yd_c00164{bottom:336.046667pt;}
.yc_c00164{bottom:351.433333pt;}
.yb_c00164{bottom:366.828000pt;}
.ya_c00164{bottom:382.146667pt;}
.y9_c00164{bottom:397.860000pt;}
.y8_c00164{bottom:413.109333pt;}
.y7_c00164{bottom:428.817333pt;}
.y6_c00164{bottom:444.152000pt;}
.y5_c00164{bottom:459.300000pt;}
.y4_c00164{bottom:475.450667pt;}
.y3_c00164{bottom:490.606667pt;}
.y2_c00164{bottom:505.176000pt;}
.y1_c00164{bottom:521.040000pt;}
.hf_c00164{height:36.400000pt;}
.h9_c00164{height:51.333333pt;}
.hc_c00164{height:53.200000pt;}
.h5_c00164{height:54.133333pt;}
.ha_c00164{height:55.066667pt;}
.h6_c00164{height:56.000000pt;}
.hb_c00164{height:56.933333pt;}
.h4_c00164{height:57.866667pt;}
.h2_c00164{height:59.733333pt;}
.he_c00164{height:60.666667pt;}
.h7_c00164{height:61.600000pt;}
.h8_c00164{height:62.533333pt;}
.h3_c00164{height:63.466667pt;}
.hd_c00164{height:65.333333pt;}
.h0_c00164{height:553.866667pt;}
.h1_c00164{height:554.000000pt;}
.w1_c00164{width:340.666667pt;}
.w0_c00164{width:340.800000pt;}
.x0_c00164{left:0.000000pt;}
.x73_c00164{left:22.800000pt;}
.x52_c00164{left:27.470667pt;}
.xd_c00164{left:28.800000pt;}
.x7_c00164{left:29.760000pt;}
.x7b_c00164{left:31.014667pt;}
.x66_c00164{left:32.746667pt;}
.x37_c00164{left:35.280000pt;}
.x28_c00164{left:37.200000pt;}
.x42_c00164{left:39.360000pt;}
.x57_c00164{left:44.160000pt;}
.x82_c00164{left:45.840000pt;}
.x2_c00164{left:46.800000pt;}
.x2d_c00164{left:49.200000pt;}
.x38_c00164{left:50.880000pt;}
.x7c_c00164{left:55.197333pt;}
.x1b_c00164{left:56.640000pt;}
.x35_c00164{left:58.800000pt;}
.x13_c00164{left:60.480000pt;}
.x4d_c00164{left:62.568000pt;}
.x8_c00164{left:63.840000pt;}
.x39_c00164{left:66.720000pt;}
.x74_c00164{left:69.600000pt;}
.x29_c00164{left:70.560000pt;}
.x4a_c00164{left:72.720000pt;}
.x5a_c00164{left:74.300000pt;}
.x2e_c00164{left:77.280000pt;}
.xe_c00164{left:79.440000pt;}
.x43_c00164{left:80.880000pt;}
.x1c_c00164{left:82.320000pt;}
.x4e_c00164{left:84.125333pt;}
.x78_c00164{left:85.948000pt;}
.x70_c00164{left:86.880000pt;}
.x3_c00164{left:90.480000pt;}
.x44_c00164{left:92.160000pt;}
.x53_c00164{left:93.465333pt;}
.x5b_c00164{left:94.626667pt;}
.x3a_c00164{left:95.760000pt;}
.x76_c00164{left:97.200000pt;}
.x2f_c00164{left:99.360000pt;}
.x7d_c00164{left:100.450667pt;}
.x14_c00164{left:101.760000pt;}
.x22_c00164{left:102.960000pt;}
.x67_c00164{left:106.646667pt;}
.xf_c00164{left:108.240000pt;}
.x1d_c00164{left:111.600000pt;}
.x5f_c00164{left:113.354667pt;}
.x36_c00164{left:115.440000pt;}
.x4f_c00164{left:117.006667pt;}
.x6e_c00164{left:119.280000pt;}
.x23_c00164{left:122.880000pt;}
.x46_c00164{left:124.080000pt;}
.x15_c00164{left:125.040000pt;}
.x54_c00164{left:126.109333pt;}
.x77_c00164{left:127.200000pt;}
.x9_c00164{left:130.320000pt;}
.x7e_c00164{left:131.589333pt;}
.x1e_c00164{left:132.720000pt;}
.x3b_c00164{left:134.160000pt;}
.x75_c00164{left:137.280000pt;}
.x58_c00164{left:138.480000pt;}
.x16_c00164{left:140.160000pt;}
.x24_c00164{left:142.320000pt;}
.x6b_c00164{left:145.440000pt;}
.x1_c00164{left:146.640000pt;}
.x5c_c00164{left:152.062667pt;}
.x71_c00164{left:155.280000pt;}
.x2a_c00164{left:158.160000pt;}
.x79_c00164{left:159.192000pt;}
.x50_c00164{left:161.188000pt;}
.x3f_c00164{left:162.720000pt;}
.x17_c00164{left:163.920000pt;}
.x30_c00164{left:165.840000pt;}
.x47_c00164{left:167.760000pt;}
.x59_c00164{left:169.200000pt;}
.x4_c00164{left:171.600000pt;}
.x10_c00164{left:173.040000pt;}
.x60_c00164{left:174.864000pt;}
.x1f_c00164{left:179.040000pt;}
.x18_c00164{left:180.240000pt;}
.xa_c00164{left:184.800000pt;}
.x25_c00164{left:186.720000pt;}
.x2b_c00164{left:189.600000pt;}
.x61_c00164{left:191.184000pt;}
.x11_c00164{left:193.440000pt;}
.x5_c00164{left:194.640000pt;}
.x20_c00164{left:195.840000pt;}
.x68_c00164{left:197.608000pt;}
.x31_c00164{left:200.640000pt;}
.x26_c00164{left:202.320000pt;}
.x7f_c00164{left:203.292000pt;}
.xb_c00164{left:207.840000pt;}
.x2c_c00164{left:209.280000pt;}
.x3c_c00164{left:211.920000pt;}
.x6c_c00164{left:212.880000pt;}
.x51_c00164{left:213.952000pt;}
.x40_c00164{left:217.200000pt;}
.x32_c00164{left:221.280000pt;}
.x62_c00164{left:223.506667pt;}
.x48_c00164{left:226.560000pt;}
.x55_c00164{left:229.548000pt;}
.xc_c00164{left:235.920000pt;}
.x7a_c00164{left:239.221333pt;}
.x4b_c00164{left:240.480000pt;}
.x41_c00164{left:241.680000pt;}
.x63_c00164{left:243.909333pt;}
.x12_c00164{left:245.760000pt;}
.x72_c00164{left:247.200000pt;}
.x5d_c00164{left:248.298667pt;}
.x49_c00164{left:249.840000pt;}
.x21_c00164{left:251.040000pt;}
.x69_c00164{left:252.097333pt;}
.x19_c00164{left:253.920000pt;}
.x81_c00164{left:256.800000pt;}
.x33_c00164{left:258.240000pt;}
.x64_c00164{left:259.741333pt;}
.x6_c00164{left:261.360000pt;}
.x3d_c00164{left:263.760000pt;}
.x6a_c00164{left:267.676000pt;}
.x6d_c00164{left:271.920000pt;}
.x27_c00164{left:273.120000pt;}
.x45_c00164{left:274.800000pt;}
.x1a_c00164{left:276.720000pt;}
.x56_c00164{left:278.749333pt;}
.x4c_c00164{left:280.320000pt;}
.x3e_c00164{left:282.000000pt;}
.x80_c00164{left:282.916000pt;}
.x6f_c00164{left:283.920000pt;}
.x34_c00164{left:285.120000pt;}
.x5e_c00164{left:288.061333pt;}
.x65_c00164{left:292.617333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00165 {
    display:none;
  }
  .loading-indicator_c00165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00165 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00165 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00165" -> "#page-container .classname_c00165")
 */
.pf_c00165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00165 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00165 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00165 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00165 {overflow:visible;}
  }
}
.c_c00165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00165 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00165:after { /* webkit #35443 */
  content: '';
}
.t_c00165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00165 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00165 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00165 { /* info for Javascript */
  display:none;
}
.l_c00165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00165:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00165 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00165.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m94_c00165{transform:matrix(0.011924,-0.000143,0.003000,0.249982,0,0);-ms-transform:matrix(0.011924,-0.000143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011924,-0.000143,0.003000,0.249982,0,0);}
.mfb_c00165{transform:matrix(0.027380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027380,0.000000,0.000000,0.250000,0,0);}
.mfe_c00165{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.086794,-0.001042,0.003000,0.249982,0,0);-ms-transform:matrix(0.086794,-0.001042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.086794,-0.001042,0.003000,0.249982,0,0);}
.mb_c00165{transform:matrix(0.114432,-0.001373,0.003000,0.249982,0,0);-ms-transform:matrix(0.114432,-0.001373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.114432,-0.001373,0.003000,0.249982,0,0);}
.md8_c00165{transform:matrix(0.117910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117910,0.000000,0.000000,0.250000,0,0);}
.me4_c00165{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m76_c00165{transform:matrix(0.141320,-0.001696,0.003000,0.249982,0,0);-ms-transform:matrix(0.141320,-0.001696,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141320,-0.001696,0.003000,0.249982,0,0);}
.ma3_c00165{transform:matrix(0.141480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141480,0.000000,0.000000,0.250000,0,0);}
.md6_c00165{transform:matrix(0.141795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141795,0.000000,0.000000,0.250000,0,0);}
.mc7_c00165{transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);}
.mc3_c00165{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.ma5_c00165{transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.149084,-0.001789,0.003000,0.249982,0,0);-ms-transform:matrix(0.149084,-0.001789,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149084,-0.001789,0.003000,0.249982,0,0);}
.mc2_c00165{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.mc4_c00165{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.md5_c00165{transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);}
.m6e_c00165{transform:matrix(0.153704,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153704,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153704,-0.001844,0.003000,0.249982,0,0);}
.m5f_c00165{transform:matrix(0.153979,-0.001848,0.003000,0.249982,0,0);-ms-transform:matrix(0.153979,-0.001848,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153979,-0.001848,0.003000,0.249982,0,0);}
.m78_c00165{transform:matrix(0.154349,-0.001852,0.003000,0.249982,0,0);-ms-transform:matrix(0.154349,-0.001852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154349,-0.001852,0.003000,0.249982,0,0);}
.m73_c00165{transform:matrix(0.154754,-0.001857,0.003000,0.249982,0,0);-ms-transform:matrix(0.154754,-0.001857,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154754,-0.001857,0.003000,0.249982,0,0);}
.m8_c00165{transform:matrix(0.155169,-0.001862,0.003000,0.249982,0,0);-ms-transform:matrix(0.155169,-0.001862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155169,-0.001862,0.003000,0.249982,0,0);}
.m24_c00165{transform:matrix(0.155889,-0.001871,0.003000,0.249982,0,0);-ms-transform:matrix(0.155889,-0.001871,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155889,-0.001871,0.003000,0.249982,0,0);}
.maf_c00165{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);}
.md2_c00165{transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);}
.me3_c00165{transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);}
.m1c_c00165{transform:matrix(0.158004,-0.001896,0.003000,0.249982,0,0);-ms-transform:matrix(0.158004,-0.001896,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158004,-0.001896,0.003000,0.249982,0,0);}
.mf7_c00165{transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);}
.md7_c00165{transform:matrix(0.159240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159240,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{transform:matrix(0.163128,-0.001958,0.003000,0.249982,0,0);-ms-transform:matrix(0.163128,-0.001958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163128,-0.001958,0.003000,0.249982,0,0);}
.mf1_c00165{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.163968,-0.001968,0.003000,0.249982,0,0);-ms-transform:matrix(0.163968,-0.001968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163968,-0.001968,0.003000,0.249982,0,0);}
.m90_c00165{transform:matrix(0.164088,-0.001969,0.003000,0.249982,0,0);-ms-transform:matrix(0.164088,-0.001969,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164088,-0.001969,0.003000,0.249982,0,0);}
.mf3_c00165{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{transform:matrix(0.164608,-0.001975,0.003000,0.249982,0,0);-ms-transform:matrix(0.164608,-0.001975,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164608,-0.001975,0.003000,0.249982,0,0);}
.m97_c00165{transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);}
.m59_c00165{transform:matrix(0.166743,-0.002001,0.003000,0.249982,0,0);-ms-transform:matrix(0.166743,-0.002001,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166743,-0.002001,0.003000,0.249982,0,0);}
.m7a_c00165{transform:matrix(0.166763,-0.002001,0.003000,0.249982,0,0);-ms-transform:matrix(0.166763,-0.002001,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166763,-0.002001,0.003000,0.249982,0,0);}
.md3_c00165{transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{transform:matrix(0.167613,-0.002011,0.003000,0.249982,0,0);-ms-transform:matrix(0.167613,-0.002011,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167613,-0.002011,0.003000,0.249982,0,0);}
.m70_c00165{transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);-ms-transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167993,-0.002016,0.003000,0.249982,0,0);}
.ma0_c00165{transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);}
.m4a_c00165{transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);-ms-transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);}
.me6_c00165{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.mf5_c00165{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00165{transform:matrix(0.171673,-0.002060,0.003000,0.249982,0,0);-ms-transform:matrix(0.171673,-0.002060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171673,-0.002060,0.003000,0.249982,0,0);}
.m7f_c00165{transform:matrix(0.171693,-0.002060,0.003000,0.249982,0,0);-ms-transform:matrix(0.171693,-0.002060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171693,-0.002060,0.003000,0.249982,0,0);}
.mb2_c00165{transform:matrix(0.171790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171790,0.000000,0.000000,0.250000,0,0);}
.md0_c00165{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172868,-0.002074,0.003000,0.249982,0,0);}
.mc_c00165{transform:matrix(0.173672,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173672,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173672,-0.002084,0.003000,0.249982,0,0);}
.m7c_c00165{transform:matrix(0.173952,-0.002087,0.003000,0.249982,0,0);-ms-transform:matrix(0.173952,-0.002087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173952,-0.002087,0.003000,0.249982,0,0);}
.m63_c00165{transform:matrix(0.174247,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174247,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174247,-0.002091,0.003000,0.249982,0,0);}
.m9a_c00165{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);-ms-transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);}
.mb8_c00165{transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);}
.mec_c00165{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.176227,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176227,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176227,-0.002115,0.003000,0.249982,0,0);}
.m15_c00165{transform:matrix(0.176712,-0.002121,0.003000,0.249982,0,0);-ms-transform:matrix(0.176712,-0.002121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176712,-0.002121,0.003000,0.249982,0,0);}
.m16_c00165{transform:matrix(0.177352,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177352,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177352,-0.002128,0.003000,0.249982,0,0);}
.m51_c00165{transform:matrix(0.177392,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177392,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177392,-0.002129,0.003000,0.249982,0,0);}
.mf6_c00165{transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);}
.mba_c00165{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.mc6_c00165{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.mb6_c00165{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m4e_c00165{transform:matrix(0.178832,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178832,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178832,-0.002146,0.003000,0.249982,0,0);}
.m99_c00165{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m1e_c00165{transform:matrix(0.179487,-0.002154,0.003000,0.249982,0,0);-ms-transform:matrix(0.179487,-0.002154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179487,-0.002154,0.003000,0.249982,0,0);}
.m28_c00165{transform:matrix(0.179587,-0.002155,0.003000,0.249982,0,0);-ms-transform:matrix(0.179587,-0.002155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179587,-0.002155,0.003000,0.249982,0,0);}
.m5e_c00165{transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);}
.m6b_c00165{transform:matrix(0.179842,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179842,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179842,-0.002158,0.003000,0.249982,0,0);}
.m62_c00165{transform:matrix(0.180247,-0.002163,0.003000,0.249982,0,0);-ms-transform:matrix(0.180247,-0.002163,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180247,-0.002163,0.003000,0.249982,0,0);}
.mf8_c00165{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.181592,-0.002179,0.003000,0.249982,0,0);-ms-transform:matrix(0.181592,-0.002179,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181592,-0.002179,0.003000,0.249982,0,0);}
.m5c_c00165{transform:matrix(0.182552,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182552,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182552,-0.002191,0.003000,0.249982,0,0);}
.md9_c00165{transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);}
.md4_c00165{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mcd_c00165{transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00165{transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.184087,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184087,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184087,-0.002209,0.003000,0.249982,0,0);}
.m6d_c00165{transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184317,-0.002212,0.003000,0.249982,0,0);}
.mb7_c00165{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m48_c00165{transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184947,-0.002219,0.003000,0.249982,0,0);}
.m50_c00165{transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185382,-0.002225,0.003000,0.249982,0,0);}
.m7e_c00165{transform:matrix(0.185417,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185417,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185417,-0.002225,0.003000,0.249982,0,0);}
.mdc_c00165{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);-ms-transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186222,-0.002235,0.003000,0.249982,0,0);}
.m4b_c00165{transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);-ms-transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186542,-0.002238,0.003000,0.249982,0,0);}
.m31_c00165{transform:matrix(0.186567,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186567,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186567,-0.002239,0.003000,0.249982,0,0);}
.m56_c00165{transform:matrix(0.186597,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186597,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186597,-0.002239,0.003000,0.249982,0,0);}
.ma9_c00165{transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186627,-0.002240,0.003000,0.249982,0,0);}
.mb4_c00165{transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.186957,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186957,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186957,-0.002243,0.003000,0.249982,0,0);}
.m1f_c00165{transform:matrix(0.187382,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187382,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187382,-0.002249,0.003000,0.249982,0,0);}
.mc1_c00165{transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.187437,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187437,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187437,-0.002249,0.003000,0.249982,0,0);}
.m80_c00165{transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188286,-0.002259,0.003000,0.249982,0,0);}
.me8_c00165{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.188336,-0.002260,0.003000,0.249982,0,0);-ms-transform:matrix(0.188336,-0.002260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188336,-0.002260,0.003000,0.249982,0,0);}
.m42_c00165{transform:matrix(0.188411,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188411,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188411,-0.002261,0.003000,0.249982,0,0);}
.mab_c00165{transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189216,-0.002271,0.003000,0.249982,0,0);}
.mc8_c00165{transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);}
.m1d_c00165{transform:matrix(0.189631,-0.002276,0.003000,0.249982,0,0);-ms-transform:matrix(0.189631,-0.002276,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189631,-0.002276,0.003000,0.249982,0,0);}
.mb1_c00165{transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);}
.m8d_c00165{transform:matrix(0.189816,-0.002278,0.003000,0.249982,0,0);-ms-transform:matrix(0.189816,-0.002278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189816,-0.002278,0.003000,0.249982,0,0);}
.m49_c00165{transform:matrix(0.189821,-0.002278,0.003000,0.249982,0,0);-ms-transform:matrix(0.189821,-0.002278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189821,-0.002278,0.003000,0.249982,0,0);}
.m44_c00165{transform:matrix(0.190116,-0.002281,0.003000,0.249982,0,0);-ms-transform:matrix(0.190116,-0.002281,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190116,-0.002281,0.003000,0.249982,0,0);}
.m84_c00165{transform:matrix(0.190271,-0.002283,0.003000,0.249982,0,0);-ms-transform:matrix(0.190271,-0.002283,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190271,-0.002283,0.003000,0.249982,0,0);}
.me2_c00165{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.190621,-0.002287,0.003000,0.249982,0,0);-ms-transform:matrix(0.190621,-0.002287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190621,-0.002287,0.003000,0.249982,0,0);}
.m2_c00165{transform:matrix(0.191151,-0.002294,0.003000,0.249982,0,0);-ms-transform:matrix(0.191151,-0.002294,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191151,-0.002294,0.003000,0.249982,0,0);}
.mf4_c00165{transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);}
.mb3_c00165{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.191846,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191846,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191846,-0.002302,0.003000,0.249982,0,0);}
.m30_c00165{transform:matrix(0.191906,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191906,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191906,-0.002303,0.003000,0.249982,0,0);}
.m75_c00165{transform:matrix(0.192341,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192341,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192341,-0.002308,0.003000,0.249982,0,0);}
.m9c_c00165{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.193291,-0.002319,0.003000,0.249982,0,0);-ms-transform:matrix(0.193291,-0.002319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193291,-0.002319,0.003000,0.249982,0,0);}
.m38_c00165{transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);}
.mb5_c00165{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.194076,-0.002329,0.003000,0.249982,0,0);-ms-transform:matrix(0.194076,-0.002329,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194076,-0.002329,0.003000,0.249982,0,0);}
.m3b_c00165{transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);}
.m18_c00165{transform:matrix(0.194346,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194346,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194346,-0.002332,0.003000,0.249982,0,0);}
.m3d_c00165{transform:matrix(0.194606,-0.002335,0.003000,0.249982,0,0);-ms-transform:matrix(0.194606,-0.002335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194606,-0.002335,0.003000,0.249982,0,0);}
.m8c_c00165{transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194646,-0.002336,0.003000,0.249982,0,0);}
.me7_c00165{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.ma2_c00165{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m68_c00165{transform:matrix(0.195141,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195141,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195141,-0.002342,0.003000,0.249982,0,0);}
.m86_c00165{transform:matrix(0.195551,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195551,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195551,-0.002347,0.003000,0.249982,0,0);}
.m32_c00165{transform:matrix(0.195651,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195651,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195651,-0.002348,0.003000,0.249982,0,0);}
.m40_c00165{transform:matrix(0.195776,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195776,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195776,-0.002349,0.003000,0.249982,0,0);}
.m58_c00165{transform:matrix(0.196151,-0.002354,0.003000,0.249982,0,0);-ms-transform:matrix(0.196151,-0.002354,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196151,-0.002354,0.003000,0.249982,0,0);}
.mc0_c00165{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);}
.m4_c00165{transform:matrix(0.196471,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196471,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196471,-0.002358,0.003000,0.249982,0,0);}
.mbe_c00165{transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.196726,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196726,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196726,-0.002361,0.003000,0.249982,0,0);}
.m74_c00165{transform:matrix(0.197046,-0.002365,0.003000,0.249982,0,0);-ms-transform:matrix(0.197046,-0.002365,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197046,-0.002365,0.003000,0.249982,0,0);}
.m6f_c00165{transform:matrix(0.197086,-0.002365,0.003000,0.249982,0,0);-ms-transform:matrix(0.197086,-0.002365,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197086,-0.002365,0.003000,0.249982,0,0);}
.mcb_c00165{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);-ms-transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197211,-0.002367,0.003000,0.249982,0,0);}
.m46_c00165{transform:matrix(0.197266,-0.002367,0.003000,0.249982,0,0);-ms-transform:matrix(0.197266,-0.002367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197266,-0.002367,0.003000,0.249982,0,0);}
.m93_c00165{transform:matrix(0.197321,-0.002368,0.003000,0.249982,0,0);-ms-transform:matrix(0.197321,-0.002368,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197321,-0.002368,0.003000,0.249982,0,0);}
.m4d_c00165{transform:matrix(0.197371,-0.002368,0.003000,0.249982,0,0);-ms-transform:matrix(0.197371,-0.002368,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197371,-0.002368,0.003000,0.249982,0,0);}
.m47_c00165{transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);-ms-transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);}
.m3a_c00165{transform:matrix(0.198016,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.198016,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198016,-0.002376,0.003000,0.249982,0,0);}
.mc5_c00165{transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);}
.mde_c00165{transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);}
.md1_c00165{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m9e_c00165{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.mdf_c00165{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);-ms-transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199561,-0.002395,0.003000,0.249982,0,0);}
.m6a_c00165{transform:matrix(0.199761,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199761,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199761,-0.002397,0.003000,0.249982,0,0);}
.m8b_c00165{transform:matrix(0.199791,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199791,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199791,-0.002397,0.003000,0.249982,0,0);}
.m3c_c00165{transform:matrix(0.199991,-0.002400,0.003000,0.249982,0,0);-ms-transform:matrix(0.199991,-0.002400,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199991,-0.002400,0.003000,0.249982,0,0);}
.m3e_c00165{transform:matrix(0.200741,-0.002409,0.003000,0.249982,0,0);-ms-transform:matrix(0.200741,-0.002409,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200741,-0.002409,0.003000,0.249982,0,0);}
.m1_c00165{transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);}
.m60_c00165{transform:matrix(0.201171,-0.002414,0.003000,0.249982,0,0);-ms-transform:matrix(0.201171,-0.002414,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201171,-0.002414,0.003000,0.249982,0,0);}
.mce_c00165{transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.201366,-0.002416,0.003000,0.249982,0,0);-ms-transform:matrix(0.201366,-0.002416,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201366,-0.002416,0.003000,0.249982,0,0);}
.me5_c00165{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.mda_c00165{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.mdd_c00165{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{transform:matrix(0.201675,-0.002420,0.003000,0.249982,0,0);-ms-transform:matrix(0.201675,-0.002420,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201675,-0.002420,0.003000,0.249982,0,0);}
.mc9_c00165{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m8e_c00165{transform:matrix(0.201705,-0.002420,0.003000,0.249982,0,0);-ms-transform:matrix(0.201705,-0.002420,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201705,-0.002420,0.003000,0.249982,0,0);}
.m77_c00165{transform:matrix(0.201790,-0.002421,0.003000,0.249982,0,0);-ms-transform:matrix(0.201790,-0.002421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201790,-0.002421,0.003000,0.249982,0,0);}
.m96_c00165{transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.202980,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202980,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202980,-0.002436,0.003000,0.249982,0,0);}
.m79_c00165{transform:matrix(0.203025,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.203025,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203025,-0.002436,0.003000,0.249982,0,0);}
.mf2_c00165{transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203415,0.000000,0.000000,0.250000,0,0);}
.m2c_c00165{transform:matrix(0.203640,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203640,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203640,-0.002444,0.003000,0.249982,0,0);}
.m4f_c00165{transform:matrix(0.203650,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203650,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203650,-0.002444,0.003000,0.249982,0,0);}
.mbb_c00165{transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.204700,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204700,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204700,-0.002456,0.003000,0.249982,0,0);}
.mbf_c00165{transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.205955,-0.002471,0.003000,0.249982,0,0);-ms-transform:matrix(0.205955,-0.002471,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205955,-0.002471,0.003000,0.249982,0,0);}
.m2a_c00165{transform:matrix(0.206730,-0.002481,0.003000,0.249982,0,0);-ms-transform:matrix(0.206730,-0.002481,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206730,-0.002481,0.003000,0.249982,0,0);}
.m6c_c00165{transform:matrix(0.206770,-0.002481,0.003000,0.249982,0,0);-ms-transform:matrix(0.206770,-0.002481,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206770,-0.002481,0.003000,0.249982,0,0);}
.m66_c00165{transform:matrix(0.206840,-0.002482,0.003000,0.249982,0,0);-ms-transform:matrix(0.206840,-0.002482,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206840,-0.002482,0.003000,0.249982,0,0);}
.m37_c00165{transform:matrix(0.206990,-0.002484,0.003000,0.249982,0,0);-ms-transform:matrix(0.206990,-0.002484,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206990,-0.002484,0.003000,0.249982,0,0);}
.mac_c00165{transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.207555,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207555,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207555,-0.002491,0.003000,0.249982,0,0);}
.m83_c00165{transform:matrix(0.207570,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207570,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207570,-0.002491,0.003000,0.249982,0,0);}
.mcf_c00165{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m92_c00165{transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);}
.med_c00165{transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.m7b_c00165{transform:matrix(0.208995,-0.002508,0.003000,0.249982,0,0);-ms-transform:matrix(0.208995,-0.002508,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208995,-0.002508,0.003000,0.249982,0,0);}
.m91_c00165{transform:matrix(0.209005,-0.002508,0.003000,0.249982,0,0);-ms-transform:matrix(0.209005,-0.002508,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209005,-0.002508,0.003000,0.249982,0,0);}
.m45_c00165{transform:matrix(0.209740,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209740,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209740,-0.002517,0.003000,0.249982,0,0);}
.mad_c00165{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.209900,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209900,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209900,-0.002519,0.003000,0.249982,0,0);}
.md_c00165{transform:matrix(0.210185,-0.002522,0.003000,0.249982,0,0);-ms-transform:matrix(0.210185,-0.002522,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210185,-0.002522,0.003000,0.249982,0,0);}
.m12_c00165{transform:matrix(0.210310,-0.002524,0.003000,0.249982,0,0);-ms-transform:matrix(0.210310,-0.002524,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210310,-0.002524,0.003000,0.249982,0,0);}
.m2b_c00165{transform:matrix(0.210540,-0.002526,0.003000,0.249982,0,0);-ms-transform:matrix(0.210540,-0.002526,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210540,-0.002526,0.003000,0.249982,0,0);}
.m29_c00165{transform:matrix(0.211340,-0.002536,0.003000,0.249982,0,0);-ms-transform:matrix(0.211340,-0.002536,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211340,-0.002536,0.003000,0.249982,0,0);}
.mbc_c00165{transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);-ms-transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);}
.maa_c00165{transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);}
.m87_c00165{transform:matrix(0.211940,-0.002543,0.003000,0.249982,0,0);-ms-transform:matrix(0.211940,-0.002543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211940,-0.002543,0.003000,0.249982,0,0);}
.me9_c00165{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.mcc_c00165{transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);}
.m2d_c00165{transform:matrix(0.213500,-0.002562,0.003000,0.249982,0,0);-ms-transform:matrix(0.213500,-0.002562,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213500,-0.002562,0.003000,0.249982,0,0);}
.m9f_c00165{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.mb0_c00165{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.me1_c00165{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217599,-0.002611,0.003000,0.249982,0,0);}
.m5b_c00165{transform:matrix(0.218469,-0.002622,0.003000,0.249982,0,0);-ms-transform:matrix(0.218469,-0.002622,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218469,-0.002622,0.003000,0.249982,0,0);}
.me0_c00165{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.220254,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220254,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220254,-0.002643,0.003000,0.249982,0,0);}
.m8f_c00165{transform:matrix(0.221129,-0.002654,0.003000,0.249982,0,0);-ms-transform:matrix(0.221129,-0.002654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221129,-0.002654,0.003000,0.249982,0,0);}
.m57_c00165{transform:matrix(0.221169,-0.002654,0.003000,0.249982,0,0);-ms-transform:matrix(0.221169,-0.002654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221169,-0.002654,0.003000,0.249982,0,0);}
.m9d_c00165{transform:matrix(0.222320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222320,0.000000,0.000000,0.250000,0,0);}
.mbd_c00165{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.meb_c00165{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{transform:matrix(0.224789,-0.002697,0.003000,0.249982,0,0);-ms-transform:matrix(0.224789,-0.002697,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224789,-0.002697,0.003000,0.249982,0,0);}
.mee_c00165{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.226554,-0.002719,0.003000,0.249982,0,0);-ms-transform:matrix(0.226554,-0.002719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226554,-0.002719,0.003000,0.249982,0,0);}
.m13_c00165{transform:matrix(0.228344,-0.002740,0.003000,0.249982,0,0);-ms-transform:matrix(0.228344,-0.002740,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228344,-0.002740,0.003000,0.249982,0,0);}
.m22_c00165{transform:matrix(0.228529,-0.002742,0.003000,0.249982,0,0);-ms-transform:matrix(0.228529,-0.002742,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228529,-0.002742,0.003000,0.249982,0,0);}
.m2f_c00165{transform:matrix(0.229193,-0.002750,0.003000,0.249982,0,0);-ms-transform:matrix(0.229193,-0.002750,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229193,-0.002750,0.003000,0.249982,0,0);}
.m55_c00165{transform:matrix(0.229253,-0.002751,0.003000,0.249982,0,0);-ms-transform:matrix(0.229253,-0.002751,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229253,-0.002751,0.003000,0.249982,0,0);}
.ma4_c00165{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.mca_c00165{transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.233378,-0.002801,0.003000,0.249982,0,0);-ms-transform:matrix(0.233378,-0.002801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233378,-0.002801,0.003000,0.249982,0,0);}
.m34_c00165{transform:matrix(0.233878,-0.002807,0.003000,0.249982,0,0);-ms-transform:matrix(0.233878,-0.002807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233878,-0.002807,0.003000,0.249982,0,0);}
.ma_c00165{transform:matrix(0.235228,-0.002823,0.003000,0.249982,0,0);-ms-transform:matrix(0.235228,-0.002823,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235228,-0.002823,0.003000,0.249982,0,0);}
.mea_c00165{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.237703,-0.002852,0.003000,0.249982,0,0);-ms-transform:matrix(0.237703,-0.002852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237703,-0.002852,0.003000,0.249982,0,0);}
.m7_c00165{transform:matrix(0.241553,-0.002899,0.003000,0.249982,0,0);-ms-transform:matrix(0.241553,-0.002899,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241553,-0.002899,0.003000,0.249982,0,0);}
.m20_c00165{transform:matrix(0.241883,-0.002903,0.003000,0.249982,0,0);-ms-transform:matrix(0.241883,-0.002903,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241883,-0.002903,0.003000,0.249982,0,0);}
.m52_c00165{transform:matrix(0.243742,-0.002925,0.003000,0.249982,0,0);-ms-transform:matrix(0.243742,-0.002925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243742,-0.002925,0.003000,0.249982,0,0);}
.m33_c00165{transform:matrix(0.247552,-0.002971,0.003000,0.249982,0,0);-ms-transform:matrix(0.247552,-0.002971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247552,-0.002971,0.003000,0.249982,0,0);}
.mae_c00165{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.255442,-0.003065,0.003000,0.249982,0,0);-ms-transform:matrix(0.255442,-0.003065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255442,-0.003065,0.003000,0.249982,0,0);}
.mb9_c00165{transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258440,0.000000,0.000000,0.250000,0,0);}
.mef_c00165{transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.308213,-0.003699,0.003000,0.249982,0,0);-ms-transform:matrix(0.308213,-0.003699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308213,-0.003699,0.003000,0.249982,0,0);}
.m9_c00165{transform:matrix(0.372953,-0.004475,0.003000,0.249982,0,0);-ms-transform:matrix(0.372953,-0.004475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.372953,-0.004475,0.003000,0.249982,0,0);}
.mf0_c00165{transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);}
.mfc_c00165{transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00165{transform:matrix(0.398066,-0.004777,0.003000,0.249982,0,0);-ms-transform:matrix(0.398066,-0.004777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.398066,-0.004777,0.003000,0.249982,0,0);}
.mfa_c00165{transform:matrix(0.676245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676245,0.000000,0.000000,0.250000,0,0);}
.ma8_c00165{transform:matrix(0.828795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828795,0.000000,0.000000,0.250000,0,0);}
.mf9_c00165{transform:matrix(1.567775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.567775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.567775,0.000000,0.000000,0.250000,0,0);}
.mfd_c00165{transform:matrix(2.433760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.433760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.433760,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:0.000000px;}
.fc0_c00165{color:transparent;}
.fs15_c00165{font-size:22.050000px;}
.fse_c00165{font-size:44.100000px;}
.fs5_c00165{font-size:58.804233px;}
.fs14_c00165{font-size:59.850000px;}
.fsf_c00165{font-size:60.900000px;}
.fs4_c00165{font-size:60.904385px;}
.fs7_c00165{font-size:61.954460px;}
.fs6_c00165{font-size:63.004536px;}
.fsd_c00165{font-size:64.050000px;}
.fs1_c00165{font-size:64.054611px;}
.fs0_c00165{font-size:65.100000px;}
.fs9_c00165{font-size:65.104687px;}
.fs13_c00165{font-size:66.150000px;}
.fsb_c00165{font-size:66.154763px;}
.fs10_c00165{font-size:67.200000px;}
.fs8_c00165{font-size:67.204838px;}
.fs2_c00165{font-size:68.254914px;}
.fsc_c00165{font-size:69.300000px;}
.fsa_c00165{font-size:70.355065px;}
.fs11_c00165{font-size:71.400000px;}
.fs3_c00165{font-size:72.455216px;}
.fs12_c00165{font-size:75.600000px;}
.y0_c00165{bottom:0.000000px;}
.yb3_c00165{bottom:30.139500px;}
.yb2_c00165{bottom:47.943000px;}
.yb1_c00165{bottom:63.535500px;}
.yb0_c00165{bottom:78.912000px;}
.yaf_c00165{bottom:79.116000px;}
.yae_c00165{bottom:79.546500px;}
.yad_c00165{bottom:79.968000px;}
.yac_c00165{bottom:80.820000px;}
.yab_c00165{bottom:81.108000px;}
.yaa_c00165{bottom:81.625500px;}
.ya9_c00165{bottom:82.083000px;}
.ya8_c00165{bottom:97.555500px;}
.ya7_c00165{bottom:115.846500px;}
.ya6_c00165{bottom:130.725000px;}
.ya5_c00165{bottom:130.857000px;}
.ya4_c00165{bottom:131.289000px;}
.ya3_c00165{bottom:131.523000px;}
.ya2_c00165{bottom:131.725500px;}
.ya1_c00165{bottom:132.559500px;}
.ya0_c00165{bottom:132.718500px;}
.y9f_c00165{bottom:133.009500px;}
.y9e_c00165{bottom:133.213500px;}
.y9d_c00165{bottom:133.651500px;}
.y9c_c00165{bottom:151.516500px;}
.y9b_c00165{bottom:168.138000px;}
.y9a_c00165{bottom:186.039000px;}
.y99_c00165{bottom:194.200500px;}
.y98_c00165{bottom:203.508000px;}
.y97_c00165{bottom:220.393500px;}
.y96_c00165{bottom:237.386346px;}
.y95_c00165{bottom:237.386772px;}
.y94_c00165{bottom:237.387018px;}
.y8c_c00165{bottom:251.618826px;}
.y8d_c00165{bottom:252.195600px;}
.y8e_c00165{bottom:253.268532px;}
.y8f_c00165{bottom:253.625940px;}
.y90_c00165{bottom:254.342976px;}
.y91_c00165{bottom:254.738646px;}
.y92_c00165{bottom:255.033990px;}
.y93_c00165{bottom:255.275622px;}
.y85_c00165{bottom:271.471080px;}
.y84_c00165{bottom:271.471116px;}
.y86_c00165{bottom:271.471722px;}
.y8a_c00165{bottom:271.472196px;}
.y87_c00165{bottom:271.472406px;}
.y89_c00165{bottom:271.472712px;}
.y8b_c00165{bottom:271.472778px;}
.y88_c00165{bottom:271.473030px;}
.y7f_c00165{bottom:289.219980px;}
.y81_c00165{bottom:289.220088px;}
.y7e_c00165{bottom:289.220172px;}
.y80_c00165{bottom:289.220322px;}
.y82_c00165{bottom:289.220574px;}
.y83_c00165{bottom:289.221156px;}
.y7d_c00165{bottom:306.616236px;}
.y7c_c00165{bottom:306.616272px;}
.y7b_c00165{bottom:306.616986px;}
.y7a_c00165{bottom:306.617262px;}
.y79_c00165{bottom:306.617700px;}
.y78_c00165{bottom:306.617952px;}
.y73_c00165{bottom:324.171066px;}
.y75_c00165{bottom:324.171210px;}
.y72_c00165{bottom:324.171318px;}
.y77_c00165{bottom:324.171420px;}
.y70_c00165{bottom:324.171492px;}
.y76_c00165{bottom:324.171636px;}
.y74_c00165{bottom:324.171648px;}
.y71_c00165{bottom:324.171996px;}
.y6f_c00165{bottom:341.685858px;}
.y6c_c00165{bottom:341.686038px;}
.y6d_c00165{bottom:341.686044px;}
.y6e_c00165{bottom:341.686194px;}
.y6b_c00165{bottom:341.686734px;}
.y6a_c00165{bottom:341.686770px;}
.y69_c00165{bottom:358.815900px;}
.y68_c00165{bottom:358.816056px;}
.y66_c00165{bottom:358.816368px;}
.y67_c00165{bottom:358.816434px;}
.y64_c00165{bottom:358.816542px;}
.y65_c00165{bottom:358.816866px;}
.y63_c00165{bottom:358.817238px;}
.y5b_c00165{bottom:377.242944px;}
.y5c_c00165{bottom:377.243010px;}
.y5a_c00165{bottom:377.243142px;}
.y5d_c00165{bottom:377.243412px;}
.y61_c00165{bottom:377.243946px;}
.y5e_c00165{bottom:377.244078px;}
.y60_c00165{bottom:377.244204px;}
.y62_c00165{bottom:377.244390px;}
.y5f_c00165{bottom:377.244720px;}
.y53_c00165{bottom:394.797180px;}
.y55_c00165{bottom:394.797210px;}
.y54_c00165{bottom:394.797768px;}
.y56_c00165{bottom:394.797936px;}
.y57_c00165{bottom:394.798158px;}
.y58_c00165{bottom:394.798260px;}
.y59_c00165{bottom:394.798848px;}
.yb4_c00165{bottom:399.060000px;}
.y52_c00165{bottom:411.286584px;}
.y51_c00165{bottom:411.286638px;}
.y4d_c00165{bottom:411.286668px;}
.y4b_c00165{bottom:411.286764px;}
.y4f_c00165{bottom:411.286794px;}
.y4c_c00165{bottom:411.287226px;}
.y50_c00165{bottom:411.287256px;}
.y4a_c00165{bottom:411.287316px;}
.y4e_c00165{bottom:411.287352px;}
.y40_c00165{bottom:428.687358px;}
.y42_c00165{bottom:428.687844px;}
.y41_c00165{bottom:428.687940px;}
.y43_c00165{bottom:428.688486px;}
.y47_c00165{bottom:428.688738px;}
.y44_c00165{bottom:428.688792px;}
.y46_c00165{bottom:428.688876px;}
.y48_c00165{bottom:428.689200px;}
.y45_c00165{bottom:428.689374px;}
.y49_c00165{bottom:428.689644px;}
.y36_c00165{bottom:441.975258px;}
.y37_c00165{bottom:442.605684px;}
.y38_c00165{bottom:443.301618px;}
.y39_c00165{bottom:443.417664px;}
.y3a_c00165{bottom:443.915826px;}
.y3b_c00165{bottom:444.189402px;}
.y3c_c00165{bottom:444.436314px;}
.y3d_c00165{bottom:444.677892px;}
.y3e_c00165{bottom:445.162566px;}
.y3f_c00165{bottom:445.442820px;}
.y2f_c00165{bottom:462.231390px;}
.y30_c00165{bottom:462.601716px;}
.y31_c00165{bottom:463.403388px;}
.y32_c00165{bottom:463.805022px;}
.y33_c00165{bottom:464.028834px;}
.y34_c00165{bottom:464.438796px;}
.y35_c00165{bottom:464.733528px;}
.y2e_c00165{bottom:479.377614px;}
.y2a_c00165{bottom:479.377758px;}
.y2d_c00165{bottom:479.377770px;}
.y2c_c00165{bottom:479.377986px;}
.y2b_c00165{bottom:479.378244px;}
.y29_c00165{bottom:479.378496px;}
.y28_c00165{bottom:479.379072px;}
.y27_c00165{bottom:479.379090px;}
.y23_c00165{bottom:496.857024px;}
.y24_c00165{bottom:496.857510px;}
.y26_c00165{bottom:496.857594px;}
.y22_c00165{bottom:496.857720px;}
.y25_c00165{bottom:496.857732px;}
.y20_c00165{bottom:496.857852px;}
.y21_c00165{bottom:496.858098px;}
.y17_c00165{bottom:512.457588px;}
.y18_c00165{bottom:512.770374px;}
.y19_c00165{bottom:512.846130px;}
.y1a_c00165{bottom:513.127734px;}
.y1b_c00165{bottom:513.616782px;}
.y1c_c00165{bottom:513.721908px;}
.y1d_c00165{bottom:514.451100px;}
.y1e_c00165{bottom:514.612428px;}
.y1f_c00165{bottom:515.328654px;}
.y11_c00165{bottom:529.727406px;}
.y12_c00165{bottom:530.443230px;}
.y13_c00165{bottom:530.815614px;}
.y14_c00165{bottom:531.797190px;}
.y15_c00165{bottom:532.700394px;}
.y16_c00165{bottom:532.911840px;}
.ya_c00165{bottom:547.021308px;}
.yb_c00165{bottom:547.828518px;}
.yc_c00165{bottom:548.489010px;}
.yd_c00165{bottom:548.991174px;}
.ye_c00165{bottom:549.227514px;}
.yf_c00165{bottom:549.748992px;}
.y10_c00165{bottom:550.462278px;}
.y2_c00165{bottom:564.031500px;}
.y3_c00165{bottom:564.300906px;}
.y4_c00165{bottom:564.638190px;}
.y5_c00165{bottom:565.363932px;}
.y6_c00165{bottom:566.308536px;}
.y7_c00165{bottom:566.403378px;}
.y8_c00165{bottom:567.317076px;}
.y9_c00165{bottom:567.498498px;}
.y1_c00165{bottom:582.793500px;}
.h17_c00165{height:22.050000px;}
.h10_c00165{height:44.100000px;}
.h7_c00165{height:58.804233px;}
.h16_c00165{height:59.850000px;}
.h11_c00165{height:60.900000px;}
.h6_c00165{height:60.904385px;}
.h9_c00165{height:61.954460px;}
.h8_c00165{height:63.004536px;}
.hf_c00165{height:64.050000px;}
.h3_c00165{height:64.054611px;}
.h2_c00165{height:65.100000px;}
.hb_c00165{height:65.104687px;}
.h15_c00165{height:66.150000px;}
.hd_c00165{height:66.154763px;}
.h12_c00165{height:67.200000px;}
.ha_c00165{height:67.204838px;}
.h4_c00165{height:68.254914px;}
.he_c00165{height:69.300000px;}
.hc_c00165{height:70.355065px;}
.h13_c00165{height:71.400000px;}
.h5_c00165{height:72.455216px;}
.h14_c00165{height:75.600000px;}
.h0_c00165{height:623.100000px;}
.h1_c00165{height:623.250000px;}
.w1_c00165{width:383.250000px;}
.w0_c00165{width:383.400000px;}
.x0_c00165{left:0.000000px;}
.x63_c00165{left:40.500000px;}
.x10_c00165{left:48.000372px;}
.x2_c00165{left:49.513500px;}
.x6d_c00165{left:50.619000px;}
.x58_c00165{left:54.540000px;}
.x75_c00165{left:65.880000px;}
.x22_c00165{left:69.663084px;}
.x3_c00165{left:71.964000px;}
.x5e_c00165{left:73.710000px;}
.x3d_c00165{left:74.795280px;}
.x30_c00165{left:79.386690px;}
.x16_c00165{left:80.872560px;}
.x28_c00165{left:86.003736px;}
.x17_c00165{left:88.435740px;}
.x42_c00165{left:90.456648px;}
.x68_c00165{left:91.528500px;}
.x66_c00165{left:93.057000px;}
.x55_c00165{left:94.436460px;}
.x46_c00165{left:95.856072px;}
.x2c_c00165{left:97.909368px;}
.x4_c00165{left:100.071000px;}
.x11_c00165{left:107.652372px;}
.x47_c00165{left:113.677146px;}
.x1c_c00165{left:115.295436px;}
.xa_c00165{left:116.844102px;}
.x23_c00165{left:117.997050px;}
.x64_c00165{left:119.070000px;}
.x50_c00165{left:120.427422px;}
.x35_c00165{left:123.128772px;}
.x72_c00165{left:124.200000px;}
.x69_c00165{left:125.818500px;}
.x43_c00165{left:128.529138px;}
.x3a_c00165{left:133.120050px;}
.x4e_c00165{left:134.738034px;}
.x24_c00165{left:137.438358px;}
.x12_c00165{left:138.684372px;}
.x67_c00165{left:142.683000px;}
.x36_c00165{left:143.920260px;}
.x1d_c00165{left:145.268256px;}
.x4b_c00165{left:147.429624px;}
.x2d_c00165{left:151.403220px;}
.x3b_c00165{left:154.451628px;}
.x40_c00165{left:158.230380px;}
.x5_c00165{left:160.549500px;}
.x51_c00165{left:161.740362px;}
.x6c_c00165{left:163.888500px;}
.x18_c00165{left:165.408576px;}
.x76_c00165{left:166.590000px;}
.xb_c00165{left:171.885102px;}
.x73_c00165{left:173.610000px;}
.x19_c00165{left:175.919328px;}
.x56_c00165{left:176.971470px;}
.x44_c00165{left:180.912180px;}
.x1_c00165{left:183.330000px;}
.x59_c00165{left:184.950000px;}
.x4c_c00165{left:187.662420px;}
.x25_c00165{left:190.361472px;}
.x31_c00165{left:195.224358px;}
.x1e_c00165{left:196.842690px;}
.x2e_c00165{left:198.586644px;}
.x52_c00165{left:204.673536px;}
.x29_c00165{left:206.407134px;}
.xc_c00165{left:213.732102px;}
.x60_c00165{left:215.460000px;}
.x26_c00165{left:217.093824px;}
.x13_c00165{left:220.482372px;}
.x48_c00165{left:223.845504px;}
.x70_c00165{left:226.800000px;}
.x2a_c00165{left:228.808674px;}
.x5a_c00165{left:230.580000px;}
.x3e_c00165{left:232.215924px;}
.xd_c00165{left:233.427102px;}
.x37_c00165{left:234.647328px;}
.x61_c00165{left:236.250000px;}
.x6_c00165{left:239.266500px;}
.x65_c00165{left:242.730000px;}
.x7_c00165{left:247.170000px;}
.x1a_c00165{left:248.812074px;}
.x5b_c00165{left:250.560000px;}
.x3c_c00165{left:251.928150px;}
.x71_c00165{left:254.070000px;}
.x38_c00165{left:255.438816px;}
.x1f_c00165{left:256.516776px;}
.x57_c00165{left:259.632480px;}
.x32_c00165{left:262.729578px;}
.x1b_c00165{left:265.006470px;}
.x5c_c00165{left:266.490000px;}
.x77_c00165{left:267.840000px;}
.x20_c00165{left:270.287256px;}
.xe_c00165{left:276.883602px;}
.x39_c00165{left:278.390628px;}
.x53_c00165{left:279.739854px;}
.x6e_c00165{left:281.208000px;}
.x33_c00165{left:283.521066px;}
.x4d_c00165{left:286.489158px;}
.x5f_c00165{left:287.550000px;}
.x45_c00165{left:289.190268px;}
.x6a_c00165{left:291.598500px;}
.x21_c00165{left:293.779140px;}
.x14_c00165{left:295.749372px;}
.x2b_c00165{left:299.284866px;}
.x4f_c00165{left:301.610046px;}
.x41_c00165{left:302.962224px;}
.x54_c00165{left:304.041846px;}
.x27_c00165{left:306.200658px;}
.x49_c00165{left:309.981906px;}
.x15_c00165{left:313.369872px;}
.x2f_c00165{left:316.084740px;}
.x62_c00165{left:317.250000px;}
.x6b_c00165{left:318.868500px;}
.x6f_c00165{left:320.389500px;}
.x8_c00165{left:323.311500px;}
.x3f_c00165{left:326.451996px;}
.x78_c00165{left:328.590000px;}
.x5d_c00165{left:329.940000px;}
.x34_c00165{left:331.314942px;}
.xf_c00165{left:336.324102px;}
.x9_c00165{left:338.430000px;}
.x4a_c00165{left:341.843496px;}
.x74_c00165{left:346.680000px;}
.x7a_c00165{left:376.650000px;}
.x79_c00165{left:380.700000px;}
.x7b_c00165{left:383.130000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fs15_c00165{font-size:19.600000pt;}
.fse_c00165{font-size:39.200000pt;}
.fs5_c00165{font-size:52.270430pt;}
.fs14_c00165{font-size:53.200000pt;}
.fsf_c00165{font-size:54.133333pt;}
.fs4_c00165{font-size:54.137231pt;}
.fs7_c00165{font-size:55.070631pt;}
.fs6_c00165{font-size:56.004032pt;}
.fsd_c00165{font-size:56.933333pt;}
.fs1_c00165{font-size:56.937432pt;}
.fs0_c00165{font-size:57.866667pt;}
.fs9_c00165{font-size:57.870833pt;}
.fs13_c00165{font-size:58.800000pt;}
.fsb_c00165{font-size:58.804233pt;}
.fs10_c00165{font-size:59.733333pt;}
.fs8_c00165{font-size:59.737634pt;}
.fs2_c00165{font-size:60.671035pt;}
.fsc_c00165{font-size:61.600000pt;}
.fsa_c00165{font-size:62.537836pt;}
.fs11_c00165{font-size:63.466667pt;}
.fs3_c00165{font-size:64.404637pt;}
.fs12_c00165{font-size:67.200000pt;}
.y0_c00165{bottom:0.000000pt;}
.yb3_c00165{bottom:26.790667pt;}
.yb2_c00165{bottom:42.616000pt;}
.yb1_c00165{bottom:56.476000pt;}
.yb0_c00165{bottom:70.144000pt;}
.yaf_c00165{bottom:70.325333pt;}
.yae_c00165{bottom:70.708000pt;}
.yad_c00165{bottom:71.082667pt;}
.yac_c00165{bottom:71.840000pt;}
.yab_c00165{bottom:72.096000pt;}
.yaa_c00165{bottom:72.556000pt;}
.ya9_c00165{bottom:72.962667pt;}
.ya8_c00165{bottom:86.716000pt;}
.ya7_c00165{bottom:102.974667pt;}
.ya6_c00165{bottom:116.200000pt;}
.ya5_c00165{bottom:116.317333pt;}
.ya4_c00165{bottom:116.701333pt;}
.ya3_c00165{bottom:116.909333pt;}
.ya2_c00165{bottom:117.089333pt;}
.ya1_c00165{bottom:117.830667pt;}
.ya0_c00165{bottom:117.972000pt;}
.y9f_c00165{bottom:118.230667pt;}
.y9e_c00165{bottom:118.412000pt;}
.y9d_c00165{bottom:118.801333pt;}
.y9c_c00165{bottom:134.681333pt;}
.y9b_c00165{bottom:149.456000pt;}
.y9a_c00165{bottom:165.368000pt;}
.y99_c00165{bottom:172.622667pt;}
.y98_c00165{bottom:180.896000pt;}
.y97_c00165{bottom:195.905333pt;}
.y96_c00165{bottom:211.010085pt;}
.y95_c00165{bottom:211.010464pt;}
.y94_c00165{bottom:211.010683pt;}
.y8c_c00165{bottom:223.661179pt;}
.y8d_c00165{bottom:224.173867pt;}
.y8e_c00165{bottom:225.127584pt;}
.y8f_c00165{bottom:225.445280pt;}
.y90_c00165{bottom:226.082645pt;}
.y91_c00165{bottom:226.434352pt;}
.y92_c00165{bottom:226.696880pt;}
.y93_c00165{bottom:226.911664pt;}
.y85_c00165{bottom:241.307627pt;}
.y84_c00165{bottom:241.307659pt;}
.y86_c00165{bottom:241.308197pt;}
.y8a_c00165{bottom:241.308619pt;}
.y87_c00165{bottom:241.308805pt;}
.y89_c00165{bottom:241.309077pt;}
.y8b_c00165{bottom:241.309136pt;}
.y88_c00165{bottom:241.309360pt;}
.y7f_c00165{bottom:257.084427pt;}
.y81_c00165{bottom:257.084523pt;}
.y7e_c00165{bottom:257.084597pt;}
.y80_c00165{bottom:257.084731pt;}
.y82_c00165{bottom:257.084955pt;}
.y83_c00165{bottom:257.085472pt;}
.y7d_c00165{bottom:272.547765pt;}
.y7c_c00165{bottom:272.547797pt;}
.y7b_c00165{bottom:272.548432pt;}
.y7a_c00165{bottom:272.548677pt;}
.y79_c00165{bottom:272.549067pt;}
.y78_c00165{bottom:272.549291pt;}
.y73_c00165{bottom:288.152059pt;}
.y75_c00165{bottom:288.152187pt;}
.y72_c00165{bottom:288.152283pt;}
.y77_c00165{bottom:288.152373pt;}
.y70_c00165{bottom:288.152437pt;}
.y76_c00165{bottom:288.152565pt;}
.y74_c00165{bottom:288.152576pt;}
.y71_c00165{bottom:288.152885pt;}
.y6f_c00165{bottom:303.720763pt;}
.y6c_c00165{bottom:303.720923pt;}
.y6d_c00165{bottom:303.720928pt;}
.y6e_c00165{bottom:303.721061pt;}
.y6b_c00165{bottom:303.721541pt;}
.y6a_c00165{bottom:303.721573pt;}
.y69_c00165{bottom:318.947467pt;}
.y68_c00165{bottom:318.947605pt;}
.y66_c00165{bottom:318.947883pt;}
.y67_c00165{bottom:318.947941pt;}
.y64_c00165{bottom:318.948037pt;}
.y65_c00165{bottom:318.948325pt;}
.y63_c00165{bottom:318.948656pt;}
.y5b_c00165{bottom:335.327061pt;}
.y5c_c00165{bottom:335.327120pt;}
.y5a_c00165{bottom:335.327237pt;}
.y5d_c00165{bottom:335.327477pt;}
.y61_c00165{bottom:335.327952pt;}
.y5e_c00165{bottom:335.328069pt;}
.y60_c00165{bottom:335.328181pt;}
.y62_c00165{bottom:335.328347pt;}
.y5f_c00165{bottom:335.328640pt;}
.y53_c00165{bottom:350.930827pt;}
.y55_c00165{bottom:350.930853pt;}
.y54_c00165{bottom:350.931349pt;}
.y56_c00165{bottom:350.931499pt;}
.y57_c00165{bottom:350.931696pt;}
.y58_c00165{bottom:350.931787pt;}
.y59_c00165{bottom:350.932309pt;}
.yb4_c00165{bottom:354.720000pt;}
.y52_c00165{bottom:365.588075pt;}
.y51_c00165{bottom:365.588123pt;}
.y4d_c00165{bottom:365.588149pt;}
.y4b_c00165{bottom:365.588235pt;}
.y4f_c00165{bottom:365.588261pt;}
.y4c_c00165{bottom:365.588645pt;}
.y50_c00165{bottom:365.588672pt;}
.y4a_c00165{bottom:365.588725pt;}
.y4e_c00165{bottom:365.588757pt;}
.y40_c00165{bottom:381.055429pt;}
.y42_c00165{bottom:381.055861pt;}
.y41_c00165{bottom:381.055947pt;}
.y43_c00165{bottom:381.056432pt;}
.y47_c00165{bottom:381.056656pt;}
.y44_c00165{bottom:381.056704pt;}
.y46_c00165{bottom:381.056779pt;}
.y48_c00165{bottom:381.057067pt;}
.y45_c00165{bottom:381.057221pt;}
.y49_c00165{bottom:381.057461pt;}
.y36_c00165{bottom:392.866896pt;}
.y37_c00165{bottom:393.427275pt;}
.y38_c00165{bottom:394.045883pt;}
.y39_c00165{bottom:394.149035pt;}
.y3a_c00165{bottom:394.591845pt;}
.y3b_c00165{bottom:394.835024pt;}
.y3c_c00165{bottom:395.054501pt;}
.y3d_c00165{bottom:395.269237pt;}
.y3e_c00165{bottom:395.700059pt;}
.y3f_c00165{bottom:395.949173pt;}
.y2f_c00165{bottom:410.872347pt;}
.y30_c00165{bottom:411.201525pt;}
.y31_c00165{bottom:411.914123pt;}
.y32_c00165{bottom:412.271131pt;}
.y33_c00165{bottom:412.470075pt;}
.y34_c00165{bottom:412.834485pt;}
.y35_c00165{bottom:413.096469pt;}
.y2e_c00165{bottom:426.113435pt;}
.y2a_c00165{bottom:426.113563pt;}
.y2d_c00165{bottom:426.113573pt;}
.y2c_c00165{bottom:426.113765pt;}
.y2b_c00165{bottom:426.113995pt;}
.y29_c00165{bottom:426.114219pt;}
.y28_c00165{bottom:426.114731pt;}
.y27_c00165{bottom:426.114747pt;}
.y23_c00165{bottom:441.650688pt;}
.y24_c00165{bottom:441.651120pt;}
.y26_c00165{bottom:441.651195pt;}
.y22_c00165{bottom:441.651307pt;}
.y25_c00165{bottom:441.651317pt;}
.y20_c00165{bottom:441.651424pt;}
.y21_c00165{bottom:441.651643pt;}
.y17_c00165{bottom:455.517856pt;}
.y18_c00165{bottom:455.795888pt;}
.y19_c00165{bottom:455.863227pt;}
.y1a_c00165{bottom:456.113541pt;}
.y1b_c00165{bottom:456.548251pt;}
.y1c_c00165{bottom:456.641696pt;}
.y1d_c00165{bottom:457.289867pt;}
.y1e_c00165{bottom:457.433269pt;}
.y1f_c00165{bottom:458.069915pt;}
.y11_c00165{bottom:470.868805pt;}
.y12_c00165{bottom:471.505093pt;}
.y13_c00165{bottom:471.836101pt;}
.y14_c00165{bottom:472.708613pt;}
.y15_c00165{bottom:473.511461pt;}
.y16_c00165{bottom:473.699413pt;}
.ya_c00165{bottom:486.241163pt;}
.yb_c00165{bottom:486.958683pt;}
.yc_c00165{bottom:487.545787pt;}
.yd_c00165{bottom:487.992155pt;}
.ye_c00165{bottom:488.202235pt;}
.yf_c00165{bottom:488.665771pt;}
.y10_c00165{bottom:489.299803pt;}
.y2_c00165{bottom:501.361333pt;}
.y3_c00165{bottom:501.600805pt;}
.y4_c00165{bottom:501.900613pt;}
.y5_c00165{bottom:502.545717pt;}
.y6_c00165{bottom:503.385365pt;}
.y7_c00165{bottom:503.469669pt;}
.y8_c00165{bottom:504.281845pt;}
.y9_c00165{bottom:504.443109pt;}
.y1_c00165{bottom:518.038667pt;}
.h17_c00165{height:19.600000pt;}
.h10_c00165{height:39.200000pt;}
.h7_c00165{height:52.270430pt;}
.h16_c00165{height:53.200000pt;}
.h11_c00165{height:54.133333pt;}
.h6_c00165{height:54.137231pt;}
.h9_c00165{height:55.070631pt;}
.h8_c00165{height:56.004032pt;}
.hf_c00165{height:56.933333pt;}
.h3_c00165{height:56.937432pt;}
.h2_c00165{height:57.866667pt;}
.hb_c00165{height:57.870833pt;}
.h15_c00165{height:58.800000pt;}
.hd_c00165{height:58.804233pt;}
.h12_c00165{height:59.733333pt;}
.ha_c00165{height:59.737634pt;}
.h4_c00165{height:60.671035pt;}
.he_c00165{height:61.600000pt;}
.hc_c00165{height:62.537836pt;}
.h13_c00165{height:63.466667pt;}
.h5_c00165{height:64.404637pt;}
.h14_c00165{height:67.200000pt;}
.h0_c00165{height:553.866667pt;}
.h1_c00165{height:554.000000pt;}
.w1_c00165{width:340.666667pt;}
.w0_c00165{width:340.800000pt;}
.x0_c00165{left:0.000000pt;}
.x63_c00165{left:36.000000pt;}
.x10_c00165{left:42.666997pt;}
.x2_c00165{left:44.012000pt;}
.x6d_c00165{left:44.994667pt;}
.x58_c00165{left:48.480000pt;}
.x75_c00165{left:58.560000pt;}
.x22_c00165{left:61.922741pt;}
.x3_c00165{left:63.968000pt;}
.x5e_c00165{left:65.520000pt;}
.x3d_c00165{left:66.484693pt;}
.x30_c00165{left:70.565947pt;}
.x16_c00165{left:71.886720pt;}
.x28_c00165{left:76.447765pt;}
.x17_c00165{left:78.609547pt;}
.x42_c00165{left:80.405909pt;}
.x68_c00165{left:81.358667pt;}
.x66_c00165{left:82.717333pt;}
.x55_c00165{left:83.943520pt;}
.x46_c00165{left:85.205397pt;}
.x2c_c00165{left:87.030549pt;}
.x4_c00165{left:88.952000pt;}
.x11_c00165{left:95.690997pt;}
.x47_c00165{left:101.046352pt;}
.x1c_c00165{left:102.484832pt;}
.xa_c00165{left:103.861424pt;}
.x23_c00165{left:104.886267pt;}
.x64_c00165{left:105.840000pt;}
.x50_c00165{left:107.046597pt;}
.x35_c00165{left:109.447797pt;}
.x72_c00165{left:110.400000pt;}
.x69_c00165{left:111.838667pt;}
.x43_c00165{left:114.248123pt;}
.x3a_c00165{left:118.328933pt;}
.x4e_c00165{left:119.767141pt;}
.x24_c00165{left:122.167429pt;}
.x12_c00165{left:123.274997pt;}
.x67_c00165{left:126.829333pt;}
.x36_c00165{left:127.929120pt;}
.x1d_c00165{left:129.127339pt;}
.x4b_c00165{left:131.048555pt;}
.x2d_c00165{left:134.580640pt;}
.x3b_c00165{left:137.290336pt;}
.x40_c00165{left:140.649227pt;}
.x5_c00165{left:142.710667pt;}
.x51_c00165{left:143.769211pt;}
.x6c_c00165{left:145.678667pt;}
.x18_c00165{left:147.029845pt;}
.x76_c00165{left:148.080000pt;}
.xb_c00165{left:152.786757pt;}
.x73_c00165{left:154.320000pt;}
.x19_c00165{left:156.372736pt;}
.x56_c00165{left:157.307973pt;}
.x44_c00165{left:160.810827pt;}
.x1_c00165{left:162.960000pt;}
.x59_c00165{left:164.400000pt;}
.x4c_c00165{left:166.811040pt;}
.x25_c00165{left:169.210197pt;}
.x31_c00165{left:173.532763pt;}
.x1e_c00165{left:174.971280pt;}
.x2e_c00165{left:176.521461pt;}
.x52_c00165{left:181.932032pt;}
.x29_c00165{left:183.473008pt;}
.xc_c00165{left:189.984091pt;}
.x60_c00165{left:191.520000pt;}
.x26_c00165{left:192.972288pt;}
.x13_c00165{left:195.984331pt;}
.x48_c00165{left:198.973781pt;}
.x70_c00165{left:201.600000pt;}
.x2a_c00165{left:203.385488pt;}
.x5a_c00165{left:204.960000pt;}
.x3e_c00165{left:206.414155pt;}
.xd_c00165{left:207.490757pt;}
.x37_c00165{left:208.575403pt;}
.x61_c00165{left:210.000000pt;}
.x6_c00165{left:212.681333pt;}
.x65_c00165{left:215.760000pt;}
.x7_c00165{left:219.706667pt;}
.x1a_c00165{left:221.166288pt;}
.x5b_c00165{left:222.720000pt;}
.x3c_c00165{left:223.936133pt;}
.x71_c00165{left:225.840000pt;}
.x38_c00165{left:227.056725pt;}
.x1f_c00165{left:228.014912pt;}
.x57_c00165{left:230.784427pt;}
.x32_c00165{left:233.537403pt;}
.x1b_c00165{left:235.561307pt;}
.x5c_c00165{left:236.880000pt;}
.x77_c00165{left:238.080000pt;}
.x20_c00165{left:240.255339pt;}
.xe_c00165{left:246.118757pt;}
.x39_c00165{left:247.458336pt;}
.x53_c00165{left:248.657648pt;}
.x6e_c00165{left:249.962667pt;}
.x33_c00165{left:252.018725pt;}
.x4d_c00165{left:254.657029pt;}
.x5f_c00165{left:255.600000pt;}
.x45_c00165{left:257.058016pt;}
.x6a_c00165{left:259.198667pt;}
.x21_c00165{left:261.137013pt;}
.x14_c00165{left:262.888331pt;}
.x2b_c00165{left:266.030992pt;}
.x4f_c00165{left:268.097819pt;}
.x41_c00165{left:269.299755pt;}
.x54_c00165{left:270.259419pt;}
.x27_c00165{left:272.178363pt;}
.x49_c00165{left:275.539472pt;}
.x15_c00165{left:278.550997pt;}
.x2f_c00165{left:280.964213pt;}
.x62_c00165{left:282.000000pt;}
.x6b_c00165{left:283.438667pt;}
.x6f_c00165{left:284.790667pt;}
.x8_c00165{left:287.388000pt;}
.x3f_c00165{left:290.179552pt;}
.x78_c00165{left:292.080000pt;}
.x5d_c00165{left:293.280000pt;}
.x34_c00165{left:294.502171pt;}
.xf_c00165{left:298.954757pt;}
.x9_c00165{left:300.826667pt;}
.x4a_c00165{left:303.860885pt;}
.x74_c00165{left:308.160000pt;}
.x7a_c00165{left:334.800000pt;}
.x79_c00165{left:338.400000pt;}
.x7b_c00165{left:340.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00166 {
    display:none;
  }
  .loading-indicator_c00166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00166 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00166 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00166" -> "#page-container .classname_c00166")
 */
.pf_c00166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00166 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00166 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00166 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00166 {overflow:visible;}
  }
}
.c_c00166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00166 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00166:after { /* webkit #35443 */
  content: '';
}
.t_c00166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00166 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00166 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00166 { /* info for Javascript */
  display:none;
}
.l_c00166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00166:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00166 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00166.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00166{transform:matrix(0.085120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085120,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.128755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128755,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.131290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131290,0.000000,0.000000,0.250000,0,0);}
.m8b_c00166{transform:matrix(0.134765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134765,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);}
.ma1_c00166{transform:matrix(0.139230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139230,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00166{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00166{transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00166{transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);}
.ma6_c00166{transform:matrix(0.149170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149170,0.000000,0.000000,0.250000,0,0);}
.m78_c00166{transform:matrix(0.150655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150655,0.000000,0.000000,0.250000,0,0);}
.m76_c00166{transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);}
.ma0_c00166{transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153665,0.000000,0.000000,0.250000,0,0);}
.m7e_c00166{transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00166{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.med_c00166{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m7f_c00166{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.me0_c00166{transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00166{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.mb1_c00166{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.ma4_c00166{transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);}
.m51_c00166{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.mb6_c00166{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m89_c00166{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.mef_c00166{transform:matrix(0.162485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162485,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m97_c00166{transform:matrix(0.163080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163080,0.000000,0.000000,0.250000,0,0);}
.m5c_c00166{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m45_c00166{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.m6c_c00166{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);}
.mc9_c00166{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);}
.m8f_c00166{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);}
.m65_c00166{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m87_c00166{transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00166{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m63_c00166{transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);}
.m90_c00166{transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);}
.mbe_c00166{transform:matrix(0.169820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169820,0.000000,0.000000,0.250000,0,0);}
.ma7_c00166{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m73_c00166{transform:matrix(0.170040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170040,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.170230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170230,0.000000,0.000000,0.250000,0,0);}
.mdb_c00166{transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);}
.m62_c00166{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.m56_c00166{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00166{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m94_c00166{transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);}
.md1_c00166{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.173015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173015,0.000000,0.000000,0.250000,0,0);}
.mf0_c00166{transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);}
.m82_c00166{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.mdd_c00166{transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.m75_c00166{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m9b_c00166{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m92_c00166{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m86_c00166{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.m95_c00166{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);}
.md3_c00166{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.m6d_c00166{transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);}
.m40_c00166{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m84_c00166{transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);}
.md9_c00166{transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180360,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.mb5_c00166{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.mee_c00166{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m64_c00166{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);}
.mb9_c00166{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.ma9_c00166{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.m9a_c00166{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.me9_c00166{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.me1_c00166{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m9d_c00166{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m49_c00166{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m71_c00166{transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m74_c00166{transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);}
.m5e_c00166{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00166{transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);}
.ma8_c00166{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.ma2_c00166{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);}
.m91_c00166{transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);}
.m5b_c00166{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.m5d_c00166{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.mde_c00166{transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);}
.mcd_c00166{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.mf3_c00166{transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);}
.mf1_c00166{transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);}
.m2f_c00166{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.md4_c00166{transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m66_c00166{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m60_c00166{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00166{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.mf2_c00166{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00166{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.m81_c00166{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.mbb_c00166{transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);}
.me3_c00166{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.mbf_c00166{transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);}
.mcb_c00166{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m83_c00166{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.me2_c00166{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.mc7_c00166{transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);}
.mb4_c00166{transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);}
.md0_c00166{transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);}
.m77_c00166{transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00166{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);}
.me4_c00166{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m69_c00166{transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);}
.me5_c00166{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.mab_c00166{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00166{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.m96_c00166{transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.maa_c00166{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);}
.md2_c00166{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00166{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00166{transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);}
.me8_c00166{transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);}
.m68_c00166{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00166{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.md8_c00166{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m48_c00166{transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);}
.m4f_c00166{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.mc3_c00166{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00166{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.mc8_c00166{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m6a_c00166{transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);}
.mac_c00166{transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m88_c00166{transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);}
.mcf_c00166{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m72_c00166{transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);}
.mdf_c00166{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.meb_c00166{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.md6_c00166{transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);}
.me7_c00166{transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);}
.mb8_c00166{transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);}
.mb0_c00166{transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);}
.m8e_c00166{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.md7_c00166{transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);}
.m61_c00166{transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);}
.mdc_c00166{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.m93_c00166{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.mcc_c00166{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.mec_c00166{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m6b_c00166{transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00166{transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);}
.mba_c00166{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m67_c00166{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m7c_c00166{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224890,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.mea_c00166{transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);}
.m6f_c00166{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.mda_c00166{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m85_c00166{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.m70_c00166{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.mca_c00166{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.md5_c00166{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.mce_c00166{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.m98_c00166{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.me6_c00166{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.mc2_c00166{transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335310,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00166{transform:matrix(0.381540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381540,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.520310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520310,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:0.000000px;}
.fc0_c00166{color:transparent;}
.fsc_c00166{font-size:59.850000px;}
.fsd_c00166{font-size:61.950000px;}
.fs9_c00166{font-size:63.000000px;}
.fs8_c00166{font-size:64.050000px;}
.fs3_c00166{font-size:65.100000px;}
.fs4_c00166{font-size:66.150000px;}
.fsb_c00166{font-size:67.200000px;}
.fs6_c00166{font-size:68.250000px;}
.fs5_c00166{font-size:69.300000px;}
.fs2_c00166{font-size:70.350000px;}
.fs1_c00166{font-size:71.400000px;}
.fs7_c00166{font-size:73.500000px;}
.fsa_c00166{font-size:74.550000px;}
.fs0_c00166{font-size:128.100000px;}
.y0_c00166{bottom:0.000000px;}
.y2f_c00166{bottom:27.061500px;}
.y2e_c00166{bottom:45.592500px;}
.y2d_c00166{bottom:45.862500px;}
.y2c_c00166{bottom:46.344000px;}
.y2b_c00166{bottom:46.558500px;}
.y2a_c00166{bottom:47.077500px;}
.y29_c00166{bottom:48.337500px;}
.y28_c00166{bottom:48.871500px;}
.y27_c00166{bottom:62.955000px;}
.y26_c00166{bottom:82.498500px;}
.y25_c00166{bottom:98.986500px;}
.y24_c00166{bottom:114.249000px;}
.y23_c00166{bottom:114.745500px;}
.y22_c00166{bottom:114.982500px;}
.y21_c00166{bottom:115.747500px;}
.y20_c00166{bottom:116.032500px;}
.y1f_c00166{bottom:116.181000px;}
.y1e_c00166{bottom:116.727000px;}
.y1d_c00166{bottom:116.940000px;}
.y1c_c00166{bottom:117.180000px;}
.y1b_c00166{bottom:131.773500px;}
.y1a_c00166{bottom:148.687500px;}
.y19_c00166{bottom:164.230500px;}
.y18_c00166{bottom:184.269000px;}
.y17_c00166{bottom:199.251000px;}
.y16_c00166{bottom:217.774500px;}
.y15_c00166{bottom:235.134000px;}
.y14_c00166{bottom:252.954000px;}
.y13_c00166{bottom:270.738000px;}
.y12_c00166{bottom:288.207000px;}
.y11_c00166{bottom:306.063000px;}
.y10_c00166{bottom:322.992000px;}
.yf_c00166{bottom:339.649500px;}
.ye_c00166{bottom:356.400000px;}
.yd_c00166{bottom:372.753000px;}
.yc_c00166{bottom:390.643500px;}
.yb_c00166{bottom:407.533500px;}
.ya_c00166{bottom:425.083500px;}
.y9_c00166{bottom:442.395000px;}
.y8_c00166{bottom:460.869000px;}
.y7_c00166{bottom:476.887500px;}
.y6_c00166{bottom:494.170500px;}
.y5_c00166{bottom:511.869000px;}
.y4_c00166{bottom:527.733000px;}
.y3_c00166{bottom:545.964000px;}
.y2_c00166{bottom:564.171000px;}
.y1_c00166{bottom:577.800000px;}
.he_c00166{height:59.850000px;}
.hf_c00166{height:61.950000px;}
.hb_c00166{height:63.000000px;}
.ha_c00166{height:64.050000px;}
.h5_c00166{height:65.100000px;}
.h6_c00166{height:66.150000px;}
.hd_c00166{height:67.200000px;}
.h8_c00166{height:68.250000px;}
.h7_c00166{height:69.300000px;}
.h4_c00166{height:70.350000px;}
.h3_c00166{height:71.400000px;}
.h9_c00166{height:73.500000px;}
.hc_c00166{height:74.550000px;}
.h2_c00166{height:128.100000px;}
.h0_c00166{height:623.100000px;}
.h1_c00166{height:623.250000px;}
.w1_c00166{width:383.250000px;}
.w0_c00166{width:383.400000px;}
.x0_c00166{left:0.000000px;}
.x48_c00166{left:34.290000px;}
.x2_c00166{left:35.640000px;}
.x84_c00166{left:40.498500px;}
.x78_c00166{left:42.660000px;}
.x6d_c00166{left:48.330000px;}
.xa_c00166{left:51.570000px;}
.x5b_c00166{left:55.080000px;}
.x40_c00166{left:58.050000px;}
.xd_c00166{left:60.750000px;}
.x5f_c00166{left:61.830000px;}
.x1a_c00166{left:64.530000px;}
.x66_c00166{left:65.610000px;}
.x21_c00166{left:66.690000px;}
.x51_c00166{left:68.040000px;}
.x4a_c00166{left:70.740000px;}
.x7e_c00166{left:75.060000px;}
.x58_c00166{left:76.410000px;}
.x26_c00166{left:79.110000px;}
.x71_c00166{left:81.154500px;}
.x45_c00166{left:82.890000px;}
.x1b_c00166{left:83.970000px;}
.x15_c00166{left:85.050000px;}
.x3e_c00166{left:87.480000px;}
.x7f_c00166{left:88.830000px;}
.x3_c00166{left:90.990000px;}
.x34_c00166{left:92.880000px;}
.x2c_c00166{left:94.230000px;}
.x2e_c00166{left:95.310000px;}
.x52_c00166{left:96.930000px;}
.x6e_c00166{left:99.630000px;}
.x16_c00166{left:102.600000px;}
.xe_c00166{left:103.680000px;}
.x27_c00166{left:105.840000px;}
.x41_c00166{left:108.000000px;}
.x38_c00166{left:109.080000px;}
.x6f_c00166{left:110.970000px;}
.x67_c00166{left:112.860000px;}
.xb_c00166{left:114.480000px;}
.x62_c00166{left:117.720000px;}
.x28_c00166{left:122.850000px;}
.x76_c00166{left:124.738500px;}
.x6b_c00166{left:127.440000px;}
.x1c_c00166{left:128.790000px;}
.x68_c00166{left:130.140000px;}
.x3f_c00166{left:131.490000px;}
.x5c_c00166{left:134.190000px;}
.x4_c00166{left:136.620000px;}
.x79_c00166{left:139.320000px;}
.xf_c00166{left:141.210000px;}
.x4e_c00166{left:143.100000px;}
.x2f_c00166{left:144.990000px;}
.x5_c00166{left:149.310000px;}
.x22_c00166{left:151.200000px;}
.x10_c00166{left:154.710000px;}
.x17_c00166{left:156.600000px;}
.x30_c00166{left:159.570000px;}
.x60_c00166{left:162.540000px;}
.x59_c00166{left:164.430000px;}
.x39_c00166{left:166.050000px;}
.x35_c00166{left:168.480000px;}
.x1_c00166{left:169.560000px;}
.x11_c00166{left:171.990000px;}
.x23_c00166{left:173.610000px;}
.x63_c00166{left:177.390000px;}
.x72_c00166{left:179.062500px;}
.x29_c00166{left:181.440000px;}
.x82_c00166{left:184.567500px;}
.x3a_c00166{left:186.570000px;}
.x6_c00166{left:187.650000px;}
.x2d_c00166{left:190.620000px;}
.x4b_c00166{left:193.590000px;}
.x42_c00166{left:195.750000px;}
.x7_c00166{left:197.910000px;}
.x36_c00166{left:199.800000px;}
.x53_c00166{left:201.420000px;}
.x18_c00166{left:204.390000px;}
.x70_c00166{left:207.630000px;}
.x7a_c00166{left:208.710000px;}
.x3b_c00166{left:210.060000px;}
.x1d_c00166{left:214.380000px;}
.x46_c00166{left:216.810000px;}
.x64_c00166{left:220.860000px;}
.x12_c00166{left:224.370000px;}
.x7b_c00166{left:227.070000px;}
.x5d_c00166{left:228.150000px;}
.x54_c00166{left:232.470000px;}
.x65_c00166{left:233.820000px;}
.x31_c00166{left:234.900000px;}
.x24_c00166{left:237.870000px;}
.x43_c00166{left:239.220000px;}
.x5e_c00166{left:244.350000px;}
.x83_c00166{left:245.601000px;}
.x77_c00166{left:248.398500px;}
.x8_c00166{left:249.480000px;}
.x69_c00166{left:252.450000px;}
.x55_c00166{left:254.070000px;}
.x73_c00166{left:255.586500px;}
.x32_c00166{left:257.580000px;}
.x4f_c00166{left:259.200000px;}
.x3c_c00166{left:261.090000px;}
.x1e_c00166{left:265.140000px;}
.x13_c00166{left:267.570000px;}
.x9_c00166{left:271.080000px;}
.x3d_c00166{left:276.750000px;}
.x33_c00166{left:278.100000px;}
.x74_c00166{left:279.330000px;}
.xc_c00166{left:280.530000px;}
.x7c_c00166{left:281.610000px;}
.x50_c00166{left:282.690000px;}
.x2a_c00166{left:286.740000px;}
.x25_c00166{left:288.090000px;}
.x1f_c00166{left:290.790000px;}
.x56_c00166{left:291.870000px;}
.x19_c00166{left:292.950000px;}
.x80_c00166{left:294.840000px;}
.x5a_c00166{left:296.190000px;}
.x47_c00166{left:298.890000px;}
.x61_c00166{left:300.780000px;}
.x7d_c00166{left:301.860000px;}
.x4c_c00166{left:303.750000px;}
.x44_c00166{left:308.070000px;}
.x6a_c00166{left:310.230000px;}
.x2b_c00166{left:311.310000px;}
.x6c_c00166{left:312.390000px;}
.x14_c00166{left:314.820000px;}
.x57_c00166{left:316.440000px;}
.x81_c00166{left:317.790000px;}
.x20_c00166{left:322.110000px;}
.x49_c00166{left:324.810000px;}
.x4d_c00166{left:326.430000px;}
.x75_c00166{left:328.986000px;}
.x37_c00166{left:332.640000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.fsc_c00166{font-size:53.200000pt;}
.fsd_c00166{font-size:55.066667pt;}
.fs9_c00166{font-size:56.000000pt;}
.fs8_c00166{font-size:56.933333pt;}
.fs3_c00166{font-size:57.866667pt;}
.fs4_c00166{font-size:58.800000pt;}
.fsb_c00166{font-size:59.733333pt;}
.fs6_c00166{font-size:60.666667pt;}
.fs5_c00166{font-size:61.600000pt;}
.fs2_c00166{font-size:62.533333pt;}
.fs1_c00166{font-size:63.466667pt;}
.fs7_c00166{font-size:65.333333pt;}
.fsa_c00166{font-size:66.266667pt;}
.fs0_c00166{font-size:113.866667pt;}
.y0_c00166{bottom:0.000000pt;}
.y2f_c00166{bottom:24.054667pt;}
.y2e_c00166{bottom:40.526667pt;}
.y2d_c00166{bottom:40.766667pt;}
.y2c_c00166{bottom:41.194667pt;}
.y2b_c00166{bottom:41.385333pt;}
.y2a_c00166{bottom:41.846667pt;}
.y29_c00166{bottom:42.966667pt;}
.y28_c00166{bottom:43.441333pt;}
.y27_c00166{bottom:55.960000pt;}
.y26_c00166{bottom:73.332000pt;}
.y25_c00166{bottom:87.988000pt;}
.y24_c00166{bottom:101.554667pt;}
.y23_c00166{bottom:101.996000pt;}
.y22_c00166{bottom:102.206667pt;}
.y21_c00166{bottom:102.886667pt;}
.y20_c00166{bottom:103.140000pt;}
.y1f_c00166{bottom:103.272000pt;}
.y1e_c00166{bottom:103.757333pt;}
.y1d_c00166{bottom:103.946667pt;}
.y1c_c00166{bottom:104.160000pt;}
.y1b_c00166{bottom:117.132000pt;}
.y1a_c00166{bottom:132.166667pt;}
.y19_c00166{bottom:145.982667pt;}
.y18_c00166{bottom:163.794667pt;}
.y17_c00166{bottom:177.112000pt;}
.y16_c00166{bottom:193.577333pt;}
.y15_c00166{bottom:209.008000pt;}
.y14_c00166{bottom:224.848000pt;}
.y13_c00166{bottom:240.656000pt;}
.y12_c00166{bottom:256.184000pt;}
.y11_c00166{bottom:272.056000pt;}
.y10_c00166{bottom:287.104000pt;}
.yf_c00166{bottom:301.910667pt;}
.ye_c00166{bottom:316.800000pt;}
.yd_c00166{bottom:331.336000pt;}
.yc_c00166{bottom:347.238667pt;}
.yb_c00166{bottom:362.252000pt;}
.ya_c00166{bottom:377.852000pt;}
.y9_c00166{bottom:393.240000pt;}
.y8_c00166{bottom:409.661333pt;}
.y7_c00166{bottom:423.900000pt;}
.y6_c00166{bottom:439.262667pt;}
.y5_c00166{bottom:454.994667pt;}
.y4_c00166{bottom:469.096000pt;}
.y3_c00166{bottom:485.301333pt;}
.y2_c00166{bottom:501.485333pt;}
.y1_c00166{bottom:513.600000pt;}
.he_c00166{height:53.200000pt;}
.hf_c00166{height:55.066667pt;}
.hb_c00166{height:56.000000pt;}
.ha_c00166{height:56.933333pt;}
.h5_c00166{height:57.866667pt;}
.h6_c00166{height:58.800000pt;}
.hd_c00166{height:59.733333pt;}
.h8_c00166{height:60.666667pt;}
.h7_c00166{height:61.600000pt;}
.h4_c00166{height:62.533333pt;}
.h3_c00166{height:63.466667pt;}
.h9_c00166{height:65.333333pt;}
.hc_c00166{height:66.266667pt;}
.h2_c00166{height:113.866667pt;}
.h0_c00166{height:553.866667pt;}
.h1_c00166{height:554.000000pt;}
.w1_c00166{width:340.666667pt;}
.w0_c00166{width:340.800000pt;}
.x0_c00166{left:0.000000pt;}
.x48_c00166{left:30.480000pt;}
.x2_c00166{left:31.680000pt;}
.x84_c00166{left:35.998667pt;}
.x78_c00166{left:37.920000pt;}
.x6d_c00166{left:42.960000pt;}
.xa_c00166{left:45.840000pt;}
.x5b_c00166{left:48.960000pt;}
.x40_c00166{left:51.600000pt;}
.xd_c00166{left:54.000000pt;}
.x5f_c00166{left:54.960000pt;}
.x1a_c00166{left:57.360000pt;}
.x66_c00166{left:58.320000pt;}
.x21_c00166{left:59.280000pt;}
.x51_c00166{left:60.480000pt;}
.x4a_c00166{left:62.880000pt;}
.x7e_c00166{left:66.720000pt;}
.x58_c00166{left:67.920000pt;}
.x26_c00166{left:70.320000pt;}
.x71_c00166{left:72.137333pt;}
.x45_c00166{left:73.680000pt;}
.x1b_c00166{left:74.640000pt;}
.x15_c00166{left:75.600000pt;}
.x3e_c00166{left:77.760000pt;}
.x7f_c00166{left:78.960000pt;}
.x3_c00166{left:80.880000pt;}
.x34_c00166{left:82.560000pt;}
.x2c_c00166{left:83.760000pt;}
.x2e_c00166{left:84.720000pt;}
.x52_c00166{left:86.160000pt;}
.x6e_c00166{left:88.560000pt;}
.x16_c00166{left:91.200000pt;}
.xe_c00166{left:92.160000pt;}
.x27_c00166{left:94.080000pt;}
.x41_c00166{left:96.000000pt;}
.x38_c00166{left:96.960000pt;}
.x6f_c00166{left:98.640000pt;}
.x67_c00166{left:100.320000pt;}
.xb_c00166{left:101.760000pt;}
.x62_c00166{left:104.640000pt;}
.x28_c00166{left:109.200000pt;}
.x76_c00166{left:110.878667pt;}
.x6b_c00166{left:113.280000pt;}
.x1c_c00166{left:114.480000pt;}
.x68_c00166{left:115.680000pt;}
.x3f_c00166{left:116.880000pt;}
.x5c_c00166{left:119.280000pt;}
.x4_c00166{left:121.440000pt;}
.x79_c00166{left:123.840000pt;}
.xf_c00166{left:125.520000pt;}
.x4e_c00166{left:127.200000pt;}
.x2f_c00166{left:128.880000pt;}
.x5_c00166{left:132.720000pt;}
.x22_c00166{left:134.400000pt;}
.x10_c00166{left:137.520000pt;}
.x17_c00166{left:139.200000pt;}
.x30_c00166{left:141.840000pt;}
.x60_c00166{left:144.480000pt;}
.x59_c00166{left:146.160000pt;}
.x39_c00166{left:147.600000pt;}
.x35_c00166{left:149.760000pt;}
.x1_c00166{left:150.720000pt;}
.x11_c00166{left:152.880000pt;}
.x23_c00166{left:154.320000pt;}
.x63_c00166{left:157.680000pt;}
.x72_c00166{left:159.166667pt;}
.x29_c00166{left:161.280000pt;}
.x82_c00166{left:164.060000pt;}
.x3a_c00166{left:165.840000pt;}
.x6_c00166{left:166.800000pt;}
.x2d_c00166{left:169.440000pt;}
.x4b_c00166{left:172.080000pt;}
.x42_c00166{left:174.000000pt;}
.x7_c00166{left:175.920000pt;}
.x36_c00166{left:177.600000pt;}
.x53_c00166{left:179.040000pt;}
.x18_c00166{left:181.680000pt;}
.x70_c00166{left:184.560000pt;}
.x7a_c00166{left:185.520000pt;}
.x3b_c00166{left:186.720000pt;}
.x1d_c00166{left:190.560000pt;}
.x46_c00166{left:192.720000pt;}
.x64_c00166{left:196.320000pt;}
.x12_c00166{left:199.440000pt;}
.x7b_c00166{left:201.840000pt;}
.x5d_c00166{left:202.800000pt;}
.x54_c00166{left:206.640000pt;}
.x65_c00166{left:207.840000pt;}
.x31_c00166{left:208.800000pt;}
.x24_c00166{left:211.440000pt;}
.x43_c00166{left:212.640000pt;}
.x5e_c00166{left:217.200000pt;}
.x83_c00166{left:218.312000pt;}
.x77_c00166{left:220.798667pt;}
.x8_c00166{left:221.760000pt;}
.x69_c00166{left:224.400000pt;}
.x55_c00166{left:225.840000pt;}
.x73_c00166{left:227.188000pt;}
.x32_c00166{left:228.960000pt;}
.x4f_c00166{left:230.400000pt;}
.x3c_c00166{left:232.080000pt;}
.x1e_c00166{left:235.680000pt;}
.x13_c00166{left:237.840000pt;}
.x9_c00166{left:240.960000pt;}
.x3d_c00166{left:246.000000pt;}
.x33_c00166{left:247.200000pt;}
.x74_c00166{left:248.293333pt;}
.xc_c00166{left:249.360000pt;}
.x7c_c00166{left:250.320000pt;}
.x50_c00166{left:251.280000pt;}
.x2a_c00166{left:254.880000pt;}
.x25_c00166{left:256.080000pt;}
.x1f_c00166{left:258.480000pt;}
.x56_c00166{left:259.440000pt;}
.x19_c00166{left:260.400000pt;}
.x80_c00166{left:262.080000pt;}
.x5a_c00166{left:263.280000pt;}
.x47_c00166{left:265.680000pt;}
.x61_c00166{left:267.360000pt;}
.x7d_c00166{left:268.320000pt;}
.x4c_c00166{left:270.000000pt;}
.x44_c00166{left:273.840000pt;}
.x6a_c00166{left:275.760000pt;}
.x2b_c00166{left:276.720000pt;}
.x6c_c00166{left:277.680000pt;}
.x14_c00166{left:279.840000pt;}
.x57_c00166{left:281.280000pt;}
.x81_c00166{left:282.480000pt;}
.x20_c00166{left:286.320000pt;}
.x49_c00166{left:288.720000pt;}
.x4d_c00166{left:290.160000pt;}
.x75_c00166{left:292.432000pt;}
.x37_c00166{left:295.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00167 {
    display:none;
  }
  .loading-indicator_c00167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00167 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00167 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00167" -> "#page-container .classname_c00167")
 */
.pf_c00167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00167 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00167 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00167 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00167 {overflow:visible;}
  }
}
.c_c00167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00167 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00167:after { /* webkit #35443 */
  content: '';
}
.t_c00167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00167 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00167 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00167 { /* info for Javascript */
  display:none;
}
.l_c00167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00167:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00167 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00167.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me7_c00167{transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);}
.m82_c00167{transform:matrix(0.092490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00167{transform:matrix(0.093075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093075,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m86_c00167{transform:matrix(0.146735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146735,0.000000,0.000000,0.250000,0,0);}
.m9a_c00167{transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);}
.m95_c00167{transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m8d_c00167{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.157185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157185,0.000000,0.000000,0.250000,0,0);}
.ma0_c00167{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.md3_c00167{transform:matrix(0.160880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160880,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.161180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161180,0.000000,0.000000,0.250000,0,0);}
.md0_c00167{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00167{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.mec_c00167{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m18_c00167{transform:matrix(0.166980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166980,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);}
.m57_c00167{transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);}
.ma5_c00167{transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.mea_c00167{transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170005,0.000000,0.000000,0.250000,0,0);}
.m8b_c00167{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.md8_c00167{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00167{transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.172695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172695,0.000000,0.000000,0.250000,0,0);}
.me8_c00167{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.m94_c00167{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m87_c00167{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);}
.me1_c00167{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.mbc_c00167{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00167{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.mc1_c00167{transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);}
.mca_c00167{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.md7_c00167{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m85_c00167{transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m8c_c00167{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.m9f_c00167{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m1f_c00167{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);}
.mab_c00167{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.m69_c00167{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.mcb_c00167{transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);}
.mc3_c00167{transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.ma2_c00167{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.me3_c00167{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.mb9_c00167{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);}
.m3b_c00167{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.mb8_c00167{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.mb4_c00167{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00167{transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.mcc_c00167{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.md2_c00167{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.190420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190420,0.000000,0.000000,0.250000,0,0);}
.maa_c00167{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.m8e_c00167{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.me4_c00167{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.mb5_c00167{transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mda_c00167{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.m9d_c00167{transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);}
.m8f_c00167{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m83_c00167{transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.mbe_c00167{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m92_c00167{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mdb_c00167{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.med_c00167{transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);}
.md6_c00167{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.mba_c00167{transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);}
.m9e_c00167{transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.me9_c00167{transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201845,0.000000,0.000000,0.250000,0,0);}
.me5_c00167{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.md1_c00167{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00167{transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.md9_c00167{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m6b_c00167{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m99_c00167{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.mc6_c00167{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.mb7_c00167{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.ma3_c00167{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.mc5_c00167{transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.me6_c00167{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.mb3_c00167{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m93_c00167{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);}
.mc2_c00167{transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);}
.mbf_c00167{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);}
.m9b_c00167{transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00167{transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.me2_c00167{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.mdc_c00167{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.mce_c00167{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m90_c00167{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.ma9_c00167{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);}
.mde_c00167{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.meb_c00167{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00167{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m97_c00167{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.mb6_c00167{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m80_c00167{transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);}
.mdf_c00167{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.maf_c00167{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.me0_c00167{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00167{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.mcf_c00167{transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);}
.m98_c00167{transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.m91_c00167{transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);}
.mc9_c00167{transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.ma8_c00167{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.ma4_c00167{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md5_c00167{transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);}
.mc4_c00167{transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);}
.mb2_c00167{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.mb0_c00167{transform:matrix(0.242535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242535,0.000000,0.000000,0.250000,0,0);}
.mcd_c00167{transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.246530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246530,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.mad_c00167{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.m96_c00167{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.mae_c00167{transform:matrix(0.270020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270020,0.000000,0.000000,0.250000,0,0);}
.mac_c00167{transform:matrix(0.277395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277395,0.000000,0.000000,0.250000,0,0);}
.mdd_c00167{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.mb1_c00167{transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00167{transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.373810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373810,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.414810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414810,0.000000,0.000000,0.250000,0,0);}
.md4_c00167{transform:matrix(0.441585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441585,0.000000,0.000000,0.250000,0,0);}
.ma1_c00167{transform:matrix(1.197845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.197845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.197845,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:0.000000px;}
.fc0_c00167{color:transparent;}
.fsc_c00167{font-size:50.400000px;}
.fs6_c00167{font-size:58.800000px;}
.fs5_c00167{font-size:59.850000px;}
.fs1_c00167{font-size:60.900000px;}
.fs9_c00167{font-size:61.950000px;}
.fs3_c00167{font-size:63.000000px;}
.fsd_c00167{font-size:64.050000px;}
.fs2_c00167{font-size:65.100000px;}
.fs7_c00167{font-size:66.150000px;}
.fsa_c00167{font-size:67.200000px;}
.fsb_c00167{font-size:68.250000px;}
.fs8_c00167{font-size:69.300000px;}
.fs4_c00167{font-size:73.500000px;}
.fs0_c00167{font-size:78.750000px;}
.y0_c00167{bottom:0.000000px;}
.y36_c00167{bottom:25.713000px;}
.y35_c00167{bottom:43.116000px;}
.y34_c00167{bottom:60.597000px;}
.y33_c00167{bottom:78.856500px;}
.y32_c00167{bottom:94.615500px;}
.y31_c00167{bottom:111.112500px;}
.y30_c00167{bottom:126.427500px;}
.y2f_c00167{bottom:147.997500px;}
.y2e_c00167{bottom:163.437000px;}
.y2d_c00167{bottom:180.237000px;}
.y2c_c00167{bottom:196.605000px;}
.y2b_c00167{bottom:197.272500px;}
.y2a_c00167{bottom:197.491500px;}
.y29_c00167{bottom:198.334500px;}
.y28_c00167{bottom:198.496500px;}
.y27_c00167{bottom:198.793500px;}
.y26_c00167{bottom:199.531500px;}
.y25_c00167{bottom:214.470000px;}
.y24_c00167{bottom:232.858500px;}
.y23_c00167{bottom:251.007000px;}
.y22_c00167{bottom:267.727500px;}
.y21_c00167{bottom:284.896500px;}
.y20_c00167{bottom:301.794000px;}
.y1f_c00167{bottom:318.720000px;}
.y1e_c00167{bottom:336.000000px;}
.y1d_c00167{bottom:353.701500px;}
.y1c_c00167{bottom:370.981500px;}
.y1b_c00167{bottom:388.231500px;}
.y1a_c00167{bottom:405.751500px;}
.y19_c00167{bottom:424.053000px;}
.y18_c00167{bottom:439.713000px;}
.y17_c00167{bottom:458.211000px;}
.y16_c00167{bottom:475.468500px;}
.y15_c00167{bottom:491.700000px;}
.y14_c00167{bottom:509.218500px;}
.y13_c00167{bottom:525.232500px;}
.yb_c00167{bottom:540.270000px;}
.yc_c00167{bottom:540.681000px;}
.yd_c00167{bottom:541.147500px;}
.ye_c00167{bottom:541.821000px;}
.yf_c00167{bottom:542.583000px;}
.y10_c00167{bottom:542.832000px;}
.y11_c00167{bottom:543.148500px;}
.y12_c00167{bottom:543.745500px;}
.y2_c00167{bottom:558.630000px;}
.y3_c00167{bottom:558.816000px;}
.y4_c00167{bottom:558.991500px;}
.y5_c00167{bottom:559.609500px;}
.y6_c00167{bottom:559.830000px;}
.y7_c00167{bottom:560.454000px;}
.y8_c00167{bottom:560.736000px;}
.y9_c00167{bottom:560.962500px;}
.ya_c00167{bottom:561.151500px;}
.y1_c00167{bottom:574.420500px;}
.he_c00167{height:50.400000px;}
.h8_c00167{height:58.800000px;}
.h7_c00167{height:59.850000px;}
.h3_c00167{height:60.900000px;}
.hb_c00167{height:61.950000px;}
.h5_c00167{height:63.000000px;}
.hf_c00167{height:64.050000px;}
.h4_c00167{height:65.100000px;}
.h9_c00167{height:66.150000px;}
.hc_c00167{height:67.200000px;}
.hd_c00167{height:68.250000px;}
.ha_c00167{height:69.300000px;}
.h6_c00167{height:73.500000px;}
.h2_c00167{height:78.750000px;}
.h0_c00167{height:623.100000px;}
.h1_c00167{height:623.250000px;}
.w1_c00167{width:383.250000px;}
.w0_c00167{width:383.400000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:43.332000px;}
.x31_c00167{left:45.090000px;}
.x22_c00167{left:47.790000px;}
.xb_c00167{left:50.091000px;}
.x55_c00167{left:51.570000px;}
.x1a_c00167{left:53.730000px;}
.x13_c00167{left:56.970000px;}
.x3_c00167{left:61.968000px;}
.x7a_c00167{left:65.340000px;}
.x3a_c00167{left:68.040000px;}
.x1b_c00167{left:73.980000px;}
.x14_c00167{left:75.600000px;}
.x6e_c00167{left:78.031500px;}
.x4_c00167{left:79.510500px;}
.xc_c00167{left:81.724500px;}
.x23_c00167{left:83.430000px;}
.x30_c00167{left:85.050000px;}
.x15_c00167{left:88.020000px;}
.x4a_c00167{left:89.910000px;}
.x76_c00167{left:91.800000px;}
.x5e_c00167{left:96.120000px;}
.x33_c00167{left:98.010000px;}
.x2a_c00167{left:102.330000px;}
.x24_c00167{left:105.570000px;}
.x36_c00167{left:107.190000px;}
.x1c_c00167{left:108.270000px;}
.x32_c00167{left:109.890000px;}
.x66_c00167{left:111.781500px;}
.x2b_c00167{left:115.020000px;}
.xd_c00167{left:117.600000px;}
.x71_c00167{left:122.581500px;}
.x62_c00167{left:126.277500px;}
.x4e_c00167{left:127.710000px;}
.x53_c00167{left:130.950000px;}
.x16_c00167{left:132.840000px;}
.x37_c00167{left:133.920000px;}
.x3b_c00167{left:138.780000px;}
.x5_c00167{left:141.310500px;}
.x6a_c00167{left:143.101500px;}
.x1d_c00167{left:144.990000px;}
.x5f_c00167{left:146.340000px;}
.x3c_c00167{left:148.230000px;}
.x17_c00167{left:155.250000px;}
.x4f_c00167{left:158.490000px;}
.x2c_c00167{left:160.380000px;}
.x56_c00167{left:161.730000px;}
.x6_c00167{left:163.369500px;}
.x77_c00167{left:167.130000px;}
.x6b_c00167{left:168.211500px;}
.xe_c00167{left:169.438500px;}
.x25_c00167{left:170.640000px;}
.x63_c00167{left:172.149000px;}
.x40_c00167{left:173.340000px;}
.x7b_c00167{left:177.120000px;}
.x60_c00167{left:178.740000px;}
.x1_c00167{left:180.360000px;}
.x4b_c00167{left:182.520000px;}
.x50_c00167{left:184.140000px;}
.x41_c00167{left:187.110000px;}
.x3d_c00167{left:189.000000px;}
.x67_c00167{left:191.161500px;}
.x6c_c00167{left:195.211500px;}
.x4d_c00167{left:198.990000px;}
.x2d_c00167{left:202.230000px;}
.x26_c00167{left:203.310000px;}
.x38_c00167{left:205.200000px;}
.x42_c00167{left:207.630000px;}
.x34_c00167{left:208.710000px;}
.x1e_c00167{left:210.600000px;}
.x27_c00167{left:217.350000px;}
.x59_c00167{left:222.210000px;}
.x48_c00167{left:223.560000px;}
.x7_c00167{left:225.804000px;}
.xf_c00167{left:228.033000px;}
.x6d_c00167{left:229.231500px;}
.x1f_c00167{left:231.120000px;}
.x78_c00167{left:233.550000px;}
.x51_c00167{left:235.170000px;}
.x49_c00167{left:236.520000px;}
.x43_c00167{left:237.870000px;}
.x68_c00167{left:240.571500px;}
.x69_c00167{left:242.191500px;}
.x20_c00167{left:243.540000px;}
.x10_c00167{left:247.224000px;}
.x7c_c00167{left:249.750000px;}
.x5a_c00167{left:251.640000px;}
.x8_c00167{left:253.930500px;}
.x18_c00167{left:255.960000px;}
.x57_c00167{left:257.850000px;}
.x3e_c00167{left:261.630000px;}
.x46_c00167{left:264.600000px;}
.x61_c00167{left:268.380000px;}
.x11_c00167{left:271.519500px;}
.x28_c00167{left:272.970000px;}
.x5b_c00167{left:274.590000px;}
.x9_c00167{left:276.606000px;}
.x64_c00167{left:278.254500px;}
.x21_c00167{left:283.770000px;}
.x3f_c00167{left:284.850000px;}
.x47_c00167{left:288.360000px;}
.x29_c00167{left:290.790000px;}
.x39_c00167{left:292.680000px;}
.xa_c00167{left:295.485000px;}
.x58_c00167{left:296.730000px;}
.x5c_c00167{left:297.810000px;}
.x7d_c00167{left:299.970000px;}
.x6f_c00167{left:301.051500px;}
.x74_c00167{left:302.940000px;}
.x72_c00167{left:304.831500px;}
.x2e_c00167{left:305.910000px;}
.x44_c00167{left:311.310000px;}
.x70_c00167{left:312.391500px;}
.x12_c00167{left:317.419500px;}
.x35_c00167{left:318.600000px;}
.x52_c00167{left:319.950000px;}
.x73_c00167{left:321.301500px;}
.x19_c00167{left:323.190000px;}
.x54_c00167{left:324.270000px;}
.x2f_c00167{left:326.160000px;}
.x45_c00167{left:329.670000px;}
.x5d_c00167{left:333.990000px;}
.x4c_c00167{left:336.960000px;}
.x79_c00167{left:341.550000px;}
.x65_c00167{left:344.962500px;}
.x75_c00167{left:348.570000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fsc_c00167{font-size:44.800000pt;}
.fs6_c00167{font-size:52.266667pt;}
.fs5_c00167{font-size:53.200000pt;}
.fs1_c00167{font-size:54.133333pt;}
.fs9_c00167{font-size:55.066667pt;}
.fs3_c00167{font-size:56.000000pt;}
.fsd_c00167{font-size:56.933333pt;}
.fs2_c00167{font-size:57.866667pt;}
.fs7_c00167{font-size:58.800000pt;}
.fsa_c00167{font-size:59.733333pt;}
.fsb_c00167{font-size:60.666667pt;}
.fs8_c00167{font-size:61.600000pt;}
.fs4_c00167{font-size:65.333333pt;}
.fs0_c00167{font-size:70.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y36_c00167{bottom:22.856000pt;}
.y35_c00167{bottom:38.325333pt;}
.y34_c00167{bottom:53.864000pt;}
.y33_c00167{bottom:70.094667pt;}
.y32_c00167{bottom:84.102667pt;}
.y31_c00167{bottom:98.766667pt;}
.y30_c00167{bottom:112.380000pt;}
.y2f_c00167{bottom:131.553333pt;}
.y2e_c00167{bottom:145.277333pt;}
.y2d_c00167{bottom:160.210667pt;}
.y2c_c00167{bottom:174.760000pt;}
.y2b_c00167{bottom:175.353333pt;}
.y2a_c00167{bottom:175.548000pt;}
.y29_c00167{bottom:176.297333pt;}
.y28_c00167{bottom:176.441333pt;}
.y27_c00167{bottom:176.705333pt;}
.y26_c00167{bottom:177.361333pt;}
.y25_c00167{bottom:190.640000pt;}
.y24_c00167{bottom:206.985333pt;}
.y23_c00167{bottom:223.117333pt;}
.y22_c00167{bottom:237.980000pt;}
.y21_c00167{bottom:253.241333pt;}
.y20_c00167{bottom:268.261333pt;}
.y1f_c00167{bottom:283.306667pt;}
.y1e_c00167{bottom:298.666667pt;}
.y1d_c00167{bottom:314.401333pt;}
.y1c_c00167{bottom:329.761333pt;}
.y1b_c00167{bottom:345.094667pt;}
.y1a_c00167{bottom:360.668000pt;}
.y19_c00167{bottom:376.936000pt;}
.y18_c00167{bottom:390.856000pt;}
.y17_c00167{bottom:407.298667pt;}
.y16_c00167{bottom:422.638667pt;}
.y15_c00167{bottom:437.066667pt;}
.y14_c00167{bottom:452.638667pt;}
.y13_c00167{bottom:466.873333pt;}
.yb_c00167{bottom:480.240000pt;}
.yc_c00167{bottom:480.605333pt;}
.yd_c00167{bottom:481.020000pt;}
.ye_c00167{bottom:481.618667pt;}
.yf_c00167{bottom:482.296000pt;}
.y10_c00167{bottom:482.517333pt;}
.y11_c00167{bottom:482.798667pt;}
.y12_c00167{bottom:483.329333pt;}
.y2_c00167{bottom:496.560000pt;}
.y3_c00167{bottom:496.725333pt;}
.y4_c00167{bottom:496.881333pt;}
.y5_c00167{bottom:497.430667pt;}
.y6_c00167{bottom:497.626667pt;}
.y7_c00167{bottom:498.181333pt;}
.y8_c00167{bottom:498.432000pt;}
.y9_c00167{bottom:498.633333pt;}
.ya_c00167{bottom:498.801333pt;}
.y1_c00167{bottom:510.596000pt;}
.he_c00167{height:44.800000pt;}
.h8_c00167{height:52.266667pt;}
.h7_c00167{height:53.200000pt;}
.h3_c00167{height:54.133333pt;}
.hb_c00167{height:55.066667pt;}
.h5_c00167{height:56.000000pt;}
.hf_c00167{height:56.933333pt;}
.h4_c00167{height:57.866667pt;}
.h9_c00167{height:58.800000pt;}
.hc_c00167{height:59.733333pt;}
.hd_c00167{height:60.666667pt;}
.ha_c00167{height:61.600000pt;}
.h6_c00167{height:65.333333pt;}
.h2_c00167{height:70.000000pt;}
.h0_c00167{height:553.866667pt;}
.h1_c00167{height:554.000000pt;}
.w1_c00167{width:340.666667pt;}
.w0_c00167{width:340.800000pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:38.517333pt;}
.x31_c00167{left:40.080000pt;}
.x22_c00167{left:42.480000pt;}
.xb_c00167{left:44.525333pt;}
.x55_c00167{left:45.840000pt;}
.x1a_c00167{left:47.760000pt;}
.x13_c00167{left:50.640000pt;}
.x3_c00167{left:55.082667pt;}
.x7a_c00167{left:58.080000pt;}
.x3a_c00167{left:60.480000pt;}
.x1b_c00167{left:65.760000pt;}
.x14_c00167{left:67.200000pt;}
.x6e_c00167{left:69.361333pt;}
.x4_c00167{left:70.676000pt;}
.xc_c00167{left:72.644000pt;}
.x23_c00167{left:74.160000pt;}
.x30_c00167{left:75.600000pt;}
.x15_c00167{left:78.240000pt;}
.x4a_c00167{left:79.920000pt;}
.x76_c00167{left:81.600000pt;}
.x5e_c00167{left:85.440000pt;}
.x33_c00167{left:87.120000pt;}
.x2a_c00167{left:90.960000pt;}
.x24_c00167{left:93.840000pt;}
.x36_c00167{left:95.280000pt;}
.x1c_c00167{left:96.240000pt;}
.x32_c00167{left:97.680000pt;}
.x66_c00167{left:99.361333pt;}
.x2b_c00167{left:102.240000pt;}
.xd_c00167{left:104.533333pt;}
.x71_c00167{left:108.961333pt;}
.x62_c00167{left:112.246667pt;}
.x4e_c00167{left:113.520000pt;}
.x53_c00167{left:116.400000pt;}
.x16_c00167{left:118.080000pt;}
.x37_c00167{left:119.040000pt;}
.x3b_c00167{left:123.360000pt;}
.x5_c00167{left:125.609333pt;}
.x6a_c00167{left:127.201333pt;}
.x1d_c00167{left:128.880000pt;}
.x5f_c00167{left:130.080000pt;}
.x3c_c00167{left:131.760000pt;}
.x17_c00167{left:138.000000pt;}
.x4f_c00167{left:140.880000pt;}
.x2c_c00167{left:142.560000pt;}
.x56_c00167{left:143.760000pt;}
.x6_c00167{left:145.217333pt;}
.x77_c00167{left:148.560000pt;}
.x6b_c00167{left:149.521333pt;}
.xe_c00167{left:150.612000pt;}
.x25_c00167{left:151.680000pt;}
.x63_c00167{left:153.021333pt;}
.x40_c00167{left:154.080000pt;}
.x7b_c00167{left:157.440000pt;}
.x60_c00167{left:158.880000pt;}
.x1_c00167{left:160.320000pt;}
.x4b_c00167{left:162.240000pt;}
.x50_c00167{left:163.680000pt;}
.x41_c00167{left:166.320000pt;}
.x3d_c00167{left:168.000000pt;}
.x67_c00167{left:169.921333pt;}
.x6c_c00167{left:173.521333pt;}
.x4d_c00167{left:176.880000pt;}
.x2d_c00167{left:179.760000pt;}
.x26_c00167{left:180.720000pt;}
.x38_c00167{left:182.400000pt;}
.x42_c00167{left:184.560000pt;}
.x34_c00167{left:185.520000pt;}
.x1e_c00167{left:187.200000pt;}
.x27_c00167{left:193.200000pt;}
.x59_c00167{left:197.520000pt;}
.x48_c00167{left:198.720000pt;}
.x7_c00167{left:200.714667pt;}
.xf_c00167{left:202.696000pt;}
.x6d_c00167{left:203.761333pt;}
.x1f_c00167{left:205.440000pt;}
.x78_c00167{left:207.600000pt;}
.x51_c00167{left:209.040000pt;}
.x49_c00167{left:210.240000pt;}
.x43_c00167{left:211.440000pt;}
.x68_c00167{left:213.841333pt;}
.x69_c00167{left:215.281333pt;}
.x20_c00167{left:216.480000pt;}
.x10_c00167{left:219.754667pt;}
.x7c_c00167{left:222.000000pt;}
.x5a_c00167{left:223.680000pt;}
.x8_c00167{left:225.716000pt;}
.x18_c00167{left:227.520000pt;}
.x57_c00167{left:229.200000pt;}
.x3e_c00167{left:232.560000pt;}
.x46_c00167{left:235.200000pt;}
.x61_c00167{left:238.560000pt;}
.x11_c00167{left:241.350667pt;}
.x28_c00167{left:242.640000pt;}
.x5b_c00167{left:244.080000pt;}
.x9_c00167{left:245.872000pt;}
.x64_c00167{left:247.337333pt;}
.x21_c00167{left:252.240000pt;}
.x3f_c00167{left:253.200000pt;}
.x47_c00167{left:256.320000pt;}
.x29_c00167{left:258.480000pt;}
.x39_c00167{left:260.160000pt;}
.xa_c00167{left:262.653333pt;}
.x58_c00167{left:263.760000pt;}
.x5c_c00167{left:264.720000pt;}
.x7d_c00167{left:266.640000pt;}
.x6f_c00167{left:267.601333pt;}
.x74_c00167{left:269.280000pt;}
.x72_c00167{left:270.961333pt;}
.x2e_c00167{left:271.920000pt;}
.x44_c00167{left:276.720000pt;}
.x70_c00167{left:277.681333pt;}
.x12_c00167{left:282.150667pt;}
.x35_c00167{left:283.200000pt;}
.x52_c00167{left:284.400000pt;}
.x73_c00167{left:285.601333pt;}
.x19_c00167{left:287.280000pt;}
.x54_c00167{left:288.240000pt;}
.x2f_c00167{left:289.920000pt;}
.x45_c00167{left:293.040000pt;}
.x5d_c00167{left:296.880000pt;}
.x4c_c00167{left:299.520000pt;}
.x79_c00167{left:303.600000pt;}
.x65_c00167{left:306.633333pt;}
.x75_c00167{left:309.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00168 {
    display:none;
  }
  .loading-indicator_c00168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00168 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00168 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00168" -> "#page-container .classname_c00168")
 */
.pf_c00168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00168 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00168 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00168 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00168 {overflow:visible;}
  }
}
.c_c00168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00168 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00168:after { /* webkit #35443 */
  content: '';
}
.t_c00168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00168 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00168 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00168 { /* info for Javascript */
  display:none;
}
.l_c00168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00168:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00168 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00168.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00168{transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);}
.md1_c00168{transform:matrix(0.124880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124880,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.mea_c00168{transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148810,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151245,0.000000,0.000000,0.250000,0,0);}
.me8_c00168{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.me9_c00168{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.mac_c00168{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.mb2_c00168{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);}
.ma2_c00168{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.mb1_c00168{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);}
.mda_c00168{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.mb4_c00168{transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m9b_c00168{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.ma3_c00168{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.mec_c00168{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.me6_c00168{transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.md3_c00168{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.m70_c00168{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174660,0.000000,0.000000,0.250000,0,0);}
.m73_c00168{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00168{transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00168{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m92_c00168{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00168{transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);}
.m29_c00168{transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);}
.m66_c00168{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m85_c00168{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.me2_c00168{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);}
.m90_c00168{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);}
.m9f_c00168{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.m35_c00168{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);}
.m54_c00168{transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00168{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m8f_c00168{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.ma1_c00168{transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.meb_c00168{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.ma0_c00168{transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);}
.m16_c00168{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.mae_c00168{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);}
.ma9_c00168{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.md7_c00168{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00168{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.me5_c00168{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mdf_c00168{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.mb6_c00168{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.mab_c00168{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.me1_c00168{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.me3_c00168{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.mb8_c00168{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m49_c00168{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00168{transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197745,0.000000,0.000000,0.250000,0,0);}
.maa_c00168{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);}
.me7_c00168{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.mb3_c00168{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);}
.mb9_c00168{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m81_c00168{transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);}
.m8d_c00168{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.md2_c00168{transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);}
.m99_c00168{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.md4_c00168{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);}
.mbb_c00168{transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);}
.m7a_c00168{transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);}
.m65_c00168{transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);}
.md8_c00168{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.md9_c00168{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.mdb_c00168{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.ma6_c00168{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.mad_c00168{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.md6_c00168{transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00168{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.mc6_c00168{transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m9d_c00168{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.mb0_c00168{transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217790,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00168{transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);}
.md0_c00168{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);}
.mb7_c00168{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mbd_c00168{transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);}
.m63_c00168{transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);}
.m67_c00168{transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);}
.m2b_c00168{transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);}
.me0_c00168{transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);}
.mc1_c00168{transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);}
.ma4_c00168{transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227240,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.m87_c00168{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.ma8_c00168{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.me4_c00168{transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.mbf_c00168{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);}
.mc8_c00168{transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);}
.mdc_c00168{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);}
.ma5_c00168{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);}
.maf_c00168{transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);}
.mba_c00168{transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238740,0.000000,0.000000,0.250000,0,0);}
.mdd_c00168{transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m71_c00168{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.mc5_c00168{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m42_c00168{transform:matrix(0.241730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241730,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.mcc_c00168{transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);}
.mc2_c00168{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.mc3_c00168{transform:matrix(0.252740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252740,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.261970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261970,0.000000,0.000000,0.250000,0,0);}
.mc4_c00168{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.ma7_c00168{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.mcd_c00168{transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);}
.md5_c00168{transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);}
.mcf_c00168{transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.296810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296810,0.000000,0.000000,0.250000,0,0);}
.mca_c00168{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.mce_c00168{transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);}
.mc0_c00168{transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);}
.mc7_c00168{transform:matrix(0.312980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312980,0.000000,0.000000,0.250000,0,0);}
.mcb_c00168{transform:matrix(0.318870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318870,0.000000,0.000000,0.250000,0,0);}
.mc9_c00168{transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);}
.mde_c00168{transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.358685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358685,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:0.000000px;}
.fc0_c00168{color:transparent;}
.fsc_c00168{font-size:46.200000px;}
.fsb_c00168{font-size:50.400000px;}
.fsa_c00168{font-size:55.650000px;}
.fs6_c00168{font-size:57.750000px;}
.fs4_c00168{font-size:59.850000px;}
.fs2_c00168{font-size:60.900000px;}
.fs8_c00168{font-size:61.950000px;}
.fsd_c00168{font-size:63.000000px;}
.fs9_c00168{font-size:64.050000px;}
.fs1_c00168{font-size:65.100000px;}
.fs5_c00168{font-size:66.150000px;}
.fs7_c00168{font-size:67.200000px;}
.fs0_c00168{font-size:70.350000px;}
.fs3_c00168{font-size:71.400000px;}
.fse_c00168{font-size:72.450000px;}
.y0_c00168{bottom:0.000000px;}
.y36_c00168{bottom:18.384000px;}
.y2e_c00168{bottom:34.026000px;}
.y2f_c00168{bottom:34.354500px;}
.y30_c00168{bottom:34.989000px;}
.y31_c00168{bottom:35.457000px;}
.y32_c00168{bottom:36.571500px;}
.y33_c00168{bottom:37.044000px;}
.y34_c00168{bottom:37.426500px;}
.y35_c00168{bottom:37.612500px;}
.y2d_c00168{bottom:55.807500px;}
.y2c_c00168{bottom:74.965500px;}
.y2b_c00168{bottom:89.761500px;}
.y2a_c00168{bottom:106.855500px;}
.y29_c00168{bottom:126.504000px;}
.y28_c00168{bottom:140.454000px;}
.y27_c00168{bottom:140.670000px;}
.y26_c00168{bottom:140.817000px;}
.y25_c00168{bottom:141.420000px;}
.y24_c00168{bottom:141.910500px;}
.y23_c00168{bottom:142.225500px;}
.y22_c00168{bottom:143.241000px;}
.y21_c00168{bottom:143.401500px;}
.y20_c00168{bottom:143.641500px;}
.y19_c00168{bottom:156.061500px;}
.y1a_c00168{bottom:156.418500px;}
.y1b_c00168{bottom:157.344000px;}
.y1c_c00168{bottom:157.657500px;}
.y1d_c00168{bottom:157.830000px;}
.y1e_c00168{bottom:158.100000px;}
.y1f_c00168{bottom:158.640000px;}
.y18_c00168{bottom:177.679500px;}
.y17_c00168{bottom:191.680500px;}
.y16_c00168{bottom:211.411500px;}
.y15_c00168{bottom:227.862000px;}
.y14_c00168{bottom:246.393000px;}
.y13_c00168{bottom:263.521500px;}
.y12_c00168{bottom:281.104500px;}
.y11_c00168{bottom:298.654500px;}
.y10_c00168{bottom:315.967500px;}
.yf_c00168{bottom:332.047500px;}
.ye_c00168{bottom:348.907500px;}
.yd_c00168{bottom:365.784000px;}
.yc_c00168{bottom:382.873500px;}
.yb_c00168{bottom:399.189000px;}
.ya_c00168{bottom:417.516000px;}
.y9_c00168{bottom:434.797500px;}
.y8_c00168{bottom:452.194500px;}
.y7_c00168{bottom:469.204500px;}
.y6_c00168{bottom:486.031500px;}
.y5_c00168{bottom:503.442000px;}
.y4_c00168{bottom:520.729500px;}
.y3_c00168{bottom:537.991500px;}
.y2_c00168{bottom:555.843000px;}
.y1_c00168{bottom:569.020500px;}
.he_c00168{height:46.200000px;}
.hd_c00168{height:50.400000px;}
.hc_c00168{height:55.650000px;}
.h8_c00168{height:57.750000px;}
.h6_c00168{height:59.850000px;}
.h4_c00168{height:60.900000px;}
.ha_c00168{height:61.950000px;}
.hf_c00168{height:63.000000px;}
.hb_c00168{height:64.050000px;}
.h3_c00168{height:65.100000px;}
.h7_c00168{height:66.150000px;}
.h9_c00168{height:67.200000px;}
.h2_c00168{height:70.350000px;}
.h5_c00168{height:71.400000px;}
.h10_c00168{height:72.450000px;}
.h0_c00168{height:623.100000px;}
.h1_c00168{height:623.250000px;}
.w1_c00168{width:383.250000px;}
.w0_c00168{width:383.400000px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:39.420000px;}
.x26_c00168{left:40.770000px;}
.x4b_c00168{left:42.390000px;}
.x64_c00168{left:43.470000px;}
.x70_c00168{left:44.692500px;}
.x7d_c00168{left:45.897000px;}
.x44_c00168{left:47.790000px;}
.xd_c00168{left:55.890000px;}
.x4_c00168{left:59.670000px;}
.x3b_c00168{left:61.830000px;}
.x19_c00168{left:64.800000px;}
.x31_c00168{left:66.150000px;}
.x2b_c00168{left:68.310000px;}
.x7f_c00168{left:69.361500px;}
.x7b_c00168{left:72.897000px;}
.x57_c00168{left:74.790000px;}
.x6e_c00168{left:76.140000px;}
.x16_c00168{left:77.490000px;}
.x27_c00168{left:80.190000px;}
.x5_c00168{left:81.810000px;}
.x20_c00168{left:84.510000px;}
.x47_c00168{left:85.590000px;}
.x60_c00168{left:87.480000px;}
.x7c_c00168{left:90.717000px;}
.x5b_c00168{left:91.800000px;}
.x1a_c00168{left:92.880000px;}
.xe_c00168{left:94.770000px;}
.x17_c00168{left:97.470000px;}
.x28_c00168{left:98.550000px;}
.x37_c00168{left:99.900000px;}
.x45_c00168{left:101.520000px;}
.x7e_c00168{left:104.757000px;}
.x4c_c00168{left:106.920000px;}
.x3c_c00168{left:109.890000px;}
.x81_c00168{left:111.507000px;}
.x5c_c00168{left:114.210000px;}
.x78_c00168{left:116.097000px;}
.x6a_c00168{left:117.720000px;}
.x41_c00168{left:119.070000px;}
.x32_c00168{left:120.150000px;}
.x21_c00168{left:122.040000px;}
.x3d_c00168{left:126.360000px;}
.x65_c00168{left:127.980000px;}
.x1b_c00168{left:129.870000px;}
.x33_c00168{left:131.490000px;}
.x6_c00168{left:137.160000px;}
.xf_c00168{left:138.510000px;}
.x79_c00168{left:140.667000px;}
.x48_c00168{left:141.750000px;}
.x2c_c00168{left:146.070000px;}
.x80_c00168{left:148.128000px;}
.x42_c00168{left:151.200000px;}
.x34_c00168{left:152.550000px;}
.x75_c00168{left:159.297000px;}
.x54_c00168{left:160.920000px;}
.x58_c00168{left:163.350000px;}
.x2d_c00168{left:165.780000px;}
.x10_c00168{left:168.750000px;}
.x1_c00168{left:172.530000px;}
.x7_c00168{left:176.310000px;}
.x22_c00168{left:179.280000px;}
.x1c_c00168{left:181.170000px;}
.x2e_c00168{left:182.790000px;}
.x63_c00168{left:184.410000px;}
.x51_c00168{left:185.490000px;}
.x4d_c00168{left:188.460000px;}
.x11_c00168{left:192.240000px;}
.x5d_c00168{left:197.910000px;}
.x1d_c00168{left:199.530000px;}
.x61_c00168{left:200.610000px;}
.x6b_c00168{left:202.770000px;}
.x38_c00168{left:204.120000px;}
.x3e_c00168{left:207.360000px;}
.x66_c00168{left:210.060000px;}
.x5e_c00168{left:211.140000px;}
.x8_c00168{left:213.300000px;}
.x35_c00168{left:214.650000px;}
.x49_c00168{left:218.430000px;}
.x46_c00168{left:220.590000px;}
.x55_c00168{left:222.750000px;}
.x76_c00168{left:224.907000px;}
.x9_c00168{left:228.420000px;}
.x7a_c00168{left:230.577000px;}
.x67_c00168{left:233.010000px;}
.x29_c00168{left:235.170000px;}
.x2f_c00168{left:236.250000px;}
.x3f_c00168{left:241.110000px;}
.x23_c00168{left:242.460000px;}
.x6f_c00168{left:244.350000px;}
.x12_c00168{left:246.780000px;}
.xa_c00168{left:248.940000px;}
.x1e_c00168{left:250.830000px;}
.x68_c00168{left:252.720000px;}
.x18_c00168{left:258.660000px;}
.x13_c00168{left:260.550000px;}
.x4e_c00168{left:261.630000px;}
.x59_c00168{left:262.710000px;}
.x6c_c00168{left:264.060000px;}
.x2_c00168{left:266.220000px;}
.x43_c00168{left:267.300000px;}
.x24_c00168{left:268.380000px;}
.xb_c00168{left:270.540000px;}
.x82_c00168{left:273.237000px;}
.x39_c00168{left:274.590000px;}
.x4f_c00168{left:279.180000px;}
.x14_c00168{left:282.150000px;}
.x52_c00168{left:283.230000px;}
.x30_c00168{left:288.090000px;}
.x2a_c00168{left:289.440000px;}
.x56_c00168{left:291.870000px;}
.x5f_c00168{left:292.950000px;}
.x62_c00168{left:295.380000px;}
.x36_c00168{left:296.730000px;}
.x3a_c00168{left:298.080000px;}
.x72_c00168{left:301.507500px;}
.x71_c00168{left:302.523000px;}
.x69_c00168{left:306.450000px;}
.x40_c00168{left:307.530000px;}
.xc_c00168{left:308.610000px;}
.x25_c00168{left:309.960000px;}
.x73_c00168{left:314.937000px;}
.x15_c00168{left:317.790000px;}
.x53_c00168{left:319.950000px;}
.x1f_c00168{left:322.920000px;}
.x77_c00168{left:324.267000px;}
.x5a_c00168{left:325.350000px;}
.x4a_c00168{left:328.590000px;}
.x50_c00168{left:329.670000px;}
.x74_c00168{left:334.632000px;}
.x6d_c00168{left:339.120000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.000000pt;}
.fsc_c00168{font-size:41.066667pt;}
.fsb_c00168{font-size:44.800000pt;}
.fsa_c00168{font-size:49.466667pt;}
.fs6_c00168{font-size:51.333333pt;}
.fs4_c00168{font-size:53.200000pt;}
.fs2_c00168{font-size:54.133333pt;}
.fs8_c00168{font-size:55.066667pt;}
.fsd_c00168{font-size:56.000000pt;}
.fs9_c00168{font-size:56.933333pt;}
.fs1_c00168{font-size:57.866667pt;}
.fs5_c00168{font-size:58.800000pt;}
.fs7_c00168{font-size:59.733333pt;}
.fs0_c00168{font-size:62.533333pt;}
.fs3_c00168{font-size:63.466667pt;}
.fse_c00168{font-size:64.400000pt;}
.y0_c00168{bottom:0.000000pt;}
.y36_c00168{bottom:16.341333pt;}
.y2e_c00168{bottom:30.245333pt;}
.y2f_c00168{bottom:30.537333pt;}
.y30_c00168{bottom:31.101333pt;}
.y31_c00168{bottom:31.517333pt;}
.y32_c00168{bottom:32.508000pt;}
.y33_c00168{bottom:32.928000pt;}
.y34_c00168{bottom:33.268000pt;}
.y35_c00168{bottom:33.433333pt;}
.y2d_c00168{bottom:49.606667pt;}
.y2c_c00168{bottom:66.636000pt;}
.y2b_c00168{bottom:79.788000pt;}
.y2a_c00168{bottom:94.982667pt;}
.y29_c00168{bottom:112.448000pt;}
.y28_c00168{bottom:124.848000pt;}
.y27_c00168{bottom:125.040000pt;}
.y26_c00168{bottom:125.170667pt;}
.y25_c00168{bottom:125.706667pt;}
.y24_c00168{bottom:126.142667pt;}
.y23_c00168{bottom:126.422667pt;}
.y22_c00168{bottom:127.325333pt;}
.y21_c00168{bottom:127.468000pt;}
.y20_c00168{bottom:127.681333pt;}
.y19_c00168{bottom:138.721333pt;}
.y1a_c00168{bottom:139.038667pt;}
.y1b_c00168{bottom:139.861333pt;}
.y1c_c00168{bottom:140.140000pt;}
.y1d_c00168{bottom:140.293333pt;}
.y1e_c00168{bottom:140.533333pt;}
.y1f_c00168{bottom:141.013333pt;}
.y18_c00168{bottom:157.937333pt;}
.y17_c00168{bottom:170.382667pt;}
.y16_c00168{bottom:187.921333pt;}
.y15_c00168{bottom:202.544000pt;}
.y14_c00168{bottom:219.016000pt;}
.y13_c00168{bottom:234.241333pt;}
.y12_c00168{bottom:249.870667pt;}
.y11_c00168{bottom:265.470667pt;}
.y10_c00168{bottom:280.860000pt;}
.yf_c00168{bottom:295.153333pt;}
.ye_c00168{bottom:310.140000pt;}
.yd_c00168{bottom:325.141333pt;}
.yc_c00168{bottom:340.332000pt;}
.yb_c00168{bottom:354.834667pt;}
.ya_c00168{bottom:371.125333pt;}
.y9_c00168{bottom:386.486667pt;}
.y8_c00168{bottom:401.950667pt;}
.y7_c00168{bottom:417.070667pt;}
.y6_c00168{bottom:432.028000pt;}
.y5_c00168{bottom:447.504000pt;}
.y4_c00168{bottom:462.870667pt;}
.y3_c00168{bottom:478.214667pt;}
.y2_c00168{bottom:494.082667pt;}
.y1_c00168{bottom:505.796000pt;}
.he_c00168{height:41.066667pt;}
.hd_c00168{height:44.800000pt;}
.hc_c00168{height:49.466667pt;}
.h8_c00168{height:51.333333pt;}
.h6_c00168{height:53.200000pt;}
.h4_c00168{height:54.133333pt;}
.ha_c00168{height:55.066667pt;}
.hf_c00168{height:56.000000pt;}
.hb_c00168{height:56.933333pt;}
.h3_c00168{height:57.866667pt;}
.h7_c00168{height:58.800000pt;}
.h9_c00168{height:59.733333pt;}
.h2_c00168{height:62.533333pt;}
.h5_c00168{height:63.466667pt;}
.h10_c00168{height:64.400000pt;}
.h0_c00168{height:553.866667pt;}
.h1_c00168{height:554.000000pt;}
.w1_c00168{width:340.666667pt;}
.w0_c00168{width:340.800000pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:35.040000pt;}
.x26_c00168{left:36.240000pt;}
.x4b_c00168{left:37.680000pt;}
.x64_c00168{left:38.640000pt;}
.x70_c00168{left:39.726667pt;}
.x7d_c00168{left:40.797333pt;}
.x44_c00168{left:42.480000pt;}
.xd_c00168{left:49.680000pt;}
.x4_c00168{left:53.040000pt;}
.x3b_c00168{left:54.960000pt;}
.x19_c00168{left:57.600000pt;}
.x31_c00168{left:58.800000pt;}
.x2b_c00168{left:60.720000pt;}
.x7f_c00168{left:61.654667pt;}
.x7b_c00168{left:64.797333pt;}
.x57_c00168{left:66.480000pt;}
.x6e_c00168{left:67.680000pt;}
.x16_c00168{left:68.880000pt;}
.x27_c00168{left:71.280000pt;}
.x5_c00168{left:72.720000pt;}
.x20_c00168{left:75.120000pt;}
.x47_c00168{left:76.080000pt;}
.x60_c00168{left:77.760000pt;}
.x7c_c00168{left:80.637333pt;}
.x5b_c00168{left:81.600000pt;}
.x1a_c00168{left:82.560000pt;}
.xe_c00168{left:84.240000pt;}
.x17_c00168{left:86.640000pt;}
.x28_c00168{left:87.600000pt;}
.x37_c00168{left:88.800000pt;}
.x45_c00168{left:90.240000pt;}
.x7e_c00168{left:93.117333pt;}
.x4c_c00168{left:95.040000pt;}
.x3c_c00168{left:97.680000pt;}
.x81_c00168{left:99.117333pt;}
.x5c_c00168{left:101.520000pt;}
.x78_c00168{left:103.197333pt;}
.x6a_c00168{left:104.640000pt;}
.x41_c00168{left:105.840000pt;}
.x32_c00168{left:106.800000pt;}
.x21_c00168{left:108.480000pt;}
.x3d_c00168{left:112.320000pt;}
.x65_c00168{left:113.760000pt;}
.x1b_c00168{left:115.440000pt;}
.x33_c00168{left:116.880000pt;}
.x6_c00168{left:121.920000pt;}
.xf_c00168{left:123.120000pt;}
.x79_c00168{left:125.037333pt;}
.x48_c00168{left:126.000000pt;}
.x2c_c00168{left:129.840000pt;}
.x80_c00168{left:131.669333pt;}
.x42_c00168{left:134.400000pt;}
.x34_c00168{left:135.600000pt;}
.x75_c00168{left:141.597333pt;}
.x54_c00168{left:143.040000pt;}
.x58_c00168{left:145.200000pt;}
.x2d_c00168{left:147.360000pt;}
.x10_c00168{left:150.000000pt;}
.x1_c00168{left:153.360000pt;}
.x7_c00168{left:156.720000pt;}
.x22_c00168{left:159.360000pt;}
.x1c_c00168{left:161.040000pt;}
.x2e_c00168{left:162.480000pt;}
.x63_c00168{left:163.920000pt;}
.x51_c00168{left:164.880000pt;}
.x4d_c00168{left:167.520000pt;}
.x11_c00168{left:170.880000pt;}
.x5d_c00168{left:175.920000pt;}
.x1d_c00168{left:177.360000pt;}
.x61_c00168{left:178.320000pt;}
.x6b_c00168{left:180.240000pt;}
.x38_c00168{left:181.440000pt;}
.x3e_c00168{left:184.320000pt;}
.x66_c00168{left:186.720000pt;}
.x5e_c00168{left:187.680000pt;}
.x8_c00168{left:189.600000pt;}
.x35_c00168{left:190.800000pt;}
.x49_c00168{left:194.160000pt;}
.x46_c00168{left:196.080000pt;}
.x55_c00168{left:198.000000pt;}
.x76_c00168{left:199.917333pt;}
.x9_c00168{left:203.040000pt;}
.x7a_c00168{left:204.957333pt;}
.x67_c00168{left:207.120000pt;}
.x29_c00168{left:209.040000pt;}
.x2f_c00168{left:210.000000pt;}
.x3f_c00168{left:214.320000pt;}
.x23_c00168{left:215.520000pt;}
.x6f_c00168{left:217.200000pt;}
.x12_c00168{left:219.360000pt;}
.xa_c00168{left:221.280000pt;}
.x1e_c00168{left:222.960000pt;}
.x68_c00168{left:224.640000pt;}
.x18_c00168{left:229.920000pt;}
.x13_c00168{left:231.600000pt;}
.x4e_c00168{left:232.560000pt;}
.x59_c00168{left:233.520000pt;}
.x6c_c00168{left:234.720000pt;}
.x2_c00168{left:236.640000pt;}
.x43_c00168{left:237.600000pt;}
.x24_c00168{left:238.560000pt;}
.xb_c00168{left:240.480000pt;}
.x82_c00168{left:242.877333pt;}
.x39_c00168{left:244.080000pt;}
.x4f_c00168{left:248.160000pt;}
.x14_c00168{left:250.800000pt;}
.x52_c00168{left:251.760000pt;}
.x30_c00168{left:256.080000pt;}
.x2a_c00168{left:257.280000pt;}
.x56_c00168{left:259.440000pt;}
.x5f_c00168{left:260.400000pt;}
.x62_c00168{left:262.560000pt;}
.x36_c00168{left:263.760000pt;}
.x3a_c00168{left:264.960000pt;}
.x72_c00168{left:268.006667pt;}
.x71_c00168{left:268.909333pt;}
.x69_c00168{left:272.400000pt;}
.x40_c00168{left:273.360000pt;}
.xc_c00168{left:274.320000pt;}
.x25_c00168{left:275.520000pt;}
.x73_c00168{left:279.944000pt;}
.x15_c00168{left:282.480000pt;}
.x53_c00168{left:284.400000pt;}
.x1f_c00168{left:287.040000pt;}
.x77_c00168{left:288.237333pt;}
.x5a_c00168{left:289.200000pt;}
.x4a_c00168{left:292.080000pt;}
.x50_c00168{left:293.040000pt;}
.x74_c00168{left:297.450667pt;}
.x6d_c00168{left:301.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00169 {
    display:none;
  }
  .loading-indicator_c00169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00169 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00169 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00169" -> "#page-container .classname_c00169")
 */
.pf_c00169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00169 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00169 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00169 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00169 {overflow:visible;}
  }
}
.c_c00169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00169 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00169:after { /* webkit #35443 */
  content: '';
}
.t_c00169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00169 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00169 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00169 { /* info for Javascript */
  display:none;
}
.l_c00169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00169:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00169 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00169.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00169{transform:matrix(0.030901,-0.000525,0.004249,0.249964,0,0);-ms-transform:matrix(0.030901,-0.000525,0.004249,0.249964,0,0);-webkit-transform:matrix(0.030901,-0.000525,0.004249,0.249964,0,0);}
.m6_c00169{transform:matrix(0.036360,-0.000618,0.004249,0.249964,0,0);-ms-transform:matrix(0.036360,-0.000618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.036360,-0.000618,0.004249,0.249964,0,0);}
.m0_c00169{transform:matrix(0.048478,-0.000824,0.004249,0.249964,0,0);-ms-transform:matrix(0.048478,-0.000824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.048478,-0.000824,0.004249,0.249964,0,0);}
.m101_c00169{transform:matrix(0.123060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123060,0.000000,0.000000,0.250000,0,0);}
.m31_c00169{transform:matrix(0.126847,-0.002156,0.004249,0.249964,0,0);-ms-transform:matrix(0.126847,-0.002156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.126847,-0.002156,0.004249,0.249964,0,0);}
.md3_c00169{transform:matrix(0.129820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129820,0.000000,0.000000,0.250000,0,0);}
.mca_c00169{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.md1_c00169{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.md8_c00169{transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148995,0.000000,0.000000,0.250000,0,0);}
.mcf_c00169{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m8b_c00169{transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00169{transform:matrix(0.151943,-0.002583,0.004249,0.249964,0,0);-ms-transform:matrix(0.151943,-0.002583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151943,-0.002583,0.004249,0.249964,0,0);}
.m83_c00169{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.mab_c00169{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00169{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.mf1_c00169{transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);}
.me8_c00169{transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(0.156332,-0.002658,0.004249,0.249964,0,0);-ms-transform:matrix(0.156332,-0.002658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156332,-0.002658,0.004249,0.249964,0,0);}
.m14_c00169{transform:matrix(0.156852,-0.002666,0.004249,0.249964,0,0);-ms-transform:matrix(0.156852,-0.002666,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156852,-0.002666,0.004249,0.249964,0,0);}
.m2a_c00169{transform:matrix(0.158287,-0.002691,0.004249,0.249964,0,0);-ms-transform:matrix(0.158287,-0.002691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158287,-0.002691,0.004249,0.249964,0,0);}
.ma8_c00169{transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159510,0.000000,0.000000,0.250000,0,0);}
.ma6_c00169{transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);}
.mc6_c00169{transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.161882,-0.002752,0.004249,0.249964,0,0);-ms-transform:matrix(0.161882,-0.002752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161882,-0.002752,0.004249,0.249964,0,0);}
.m77_c00169{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.162185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00169{transform:matrix(0.162292,-0.002759,0.004249,0.249964,0,0);-ms-transform:matrix(0.162292,-0.002759,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162292,-0.002759,0.004249,0.249964,0,0);}
.m3d_c00169{transform:matrix(0.162487,-0.002762,0.004249,0.249964,0,0);-ms-transform:matrix(0.162487,-0.002762,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162487,-0.002762,0.004249,0.249964,0,0);}
.ma3_c00169{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{transform:matrix(0.164851,-0.002802,0.004249,0.249964,0,0);-ms-transform:matrix(0.164851,-0.002802,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164851,-0.002802,0.004249,0.249964,0,0);}
.md_c00169{transform:matrix(0.166261,-0.002826,0.004249,0.249964,0,0);-ms-transform:matrix(0.166261,-0.002826,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166261,-0.002826,0.004249,0.249964,0,0);}
.m67_c00169{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00169{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00169{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.m62_c00169{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m69_c00169{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{transform:matrix(0.168256,-0.002860,0.004249,0.249964,0,0);-ms-transform:matrix(0.168256,-0.002860,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168256,-0.002860,0.004249,0.249964,0,0);}
.m39_c00169{transform:matrix(0.168266,-0.002861,0.004249,0.249964,0,0);-ms-transform:matrix(0.168266,-0.002861,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168266,-0.002861,0.004249,0.249964,0,0);}
.mb2_c00169{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.mf8_c00169{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m24_c00169{transform:matrix(0.170045,-0.002891,0.004249,0.249964,0,0);-ms-transform:matrix(0.170045,-0.002891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170045,-0.002891,0.004249,0.249964,0,0);}
.m13_c00169{transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);}
.md4_c00169{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m26_c00169{transform:matrix(0.172080,-0.002925,0.004249,0.249964,0,0);-ms-transform:matrix(0.172080,-0.002925,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172080,-0.002925,0.004249,0.249964,0,0);}
.mfe_c00169{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.m7f_c00169{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.me0_c00169{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.m98_c00169{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m75_c00169{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m85_c00169{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.mfc_c00169{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.m4e_c00169{transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);-ms-transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);}
.m5a_c00169{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m78_c00169{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.ma7_c00169{transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);}
.mae_c00169{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.176679,-0.003004,0.004249,0.249964,0,0);-ms-transform:matrix(0.176679,-0.003004,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176679,-0.003004,0.004249,0.249964,0,0);}
.ma4_c00169{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.md5_c00169{transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.177484,-0.003017,0.004249,0.249964,0,0);-ms-transform:matrix(0.177484,-0.003017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177484,-0.003017,0.004249,0.249964,0,0);}
.m93_c00169{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m4f_c00169{transform:matrix(0.179384,-0.003050,0.004249,0.249964,0,0);-ms-transform:matrix(0.179384,-0.003050,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179384,-0.003050,0.004249,0.249964,0,0);}
.mbb_c00169{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m87_c00169{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.mf4_c00169{transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);}
.ma1_c00169{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m54_c00169{transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);}
.m6d_c00169{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.mda_c00169{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00169{transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);}
.mec_c00169{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.m57_c00169{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);}
.m86_c00169{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.md2_c00169{transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182730,0.000000,0.000000,0.250000,0,0);}
.m34_c00169{transform:matrix(0.182879,-0.003109,0.004249,0.249964,0,0);-ms-transform:matrix(0.182879,-0.003109,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182879,-0.003109,0.004249,0.249964,0,0);}
.mfb_c00169{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mef_c00169{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.mc9_c00169{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m53_c00169{transform:matrix(0.184098,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184098,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184098,-0.003130,0.004249,0.249964,0,0);}
.m5b_c00169{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.md9_c00169{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.mc3_c00169{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m44_c00169{transform:matrix(0.184833,-0.003142,0.004249,0.249964,0,0);-ms-transform:matrix(0.184833,-0.003142,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184833,-0.003142,0.004249,0.249964,0,0);}
.m38_c00169{transform:matrix(0.185048,-0.003146,0.004249,0.249964,0,0);-ms-transform:matrix(0.185048,-0.003146,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185048,-0.003146,0.004249,0.249964,0,0);}
.med_c00169{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m6b_c00169{transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);}
.mf0_c00169{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m96_c00169{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.186238,-0.003166,0.004249,0.249964,0,0);-ms-transform:matrix(0.186238,-0.003166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186238,-0.003166,0.004249,0.249964,0,0);}
.m36_c00169{transform:matrix(0.186268,-0.003167,0.004249,0.249964,0,0);-ms-transform:matrix(0.186268,-0.003167,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186268,-0.003167,0.004249,0.249964,0,0);}
.m82_c00169{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.186778,-0.003175,0.004249,0.249964,0,0);-ms-transform:matrix(0.186778,-0.003175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186778,-0.003175,0.004249,0.249964,0,0);}
.m94_c00169{transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);}
.me9_c00169{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{transform:matrix(0.187823,-0.003193,0.004249,0.249964,0,0);-ms-transform:matrix(0.187823,-0.003193,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187823,-0.003193,0.004249,0.249964,0,0);}
.m20_c00169{transform:matrix(0.188048,-0.003197,0.004249,0.249964,0,0);-ms-transform:matrix(0.188048,-0.003197,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188048,-0.003197,0.004249,0.249964,0,0);}
.mcb_c00169{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.190073,-0.003231,0.004249,0.249964,0,0);-ms-transform:matrix(0.190073,-0.003231,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190073,-0.003231,0.004249,0.249964,0,0);}
.m92_c00169{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.mac_c00169{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.mc7_c00169{transform:matrix(0.190255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190255,0.000000,0.000000,0.250000,0,0);}
.mce_c00169{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00169{transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);}
.me7_c00169{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00169{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m79_c00169{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m1f_c00169{transform:matrix(0.191352,-0.003253,0.004249,0.249964,0,0);-ms-transform:matrix(0.191352,-0.003253,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191352,-0.003253,0.004249,0.249964,0,0);}
.m88_c00169{transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);}
.me4_c00169{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.m74_c00169{transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.191607,-0.003257,0.004249,0.249964,0,0);-ms-transform:matrix(0.191607,-0.003257,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191607,-0.003257,0.004249,0.249964,0,0);}
.m15_c00169{transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);}
.m7d_c00169{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m63_c00169{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m97_c00169{transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);}
.m8c_c00169{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.m29_c00169{transform:matrix(0.192727,-0.003276,0.004249,0.249964,0,0);-ms-transform:matrix(0.192727,-0.003276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192727,-0.003276,0.004249,0.249964,0,0);}
.mee_c00169{transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m40_c00169{transform:matrix(0.193417,-0.003288,0.004249,0.249964,0,0);-ms-transform:matrix(0.193417,-0.003288,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193417,-0.003288,0.004249,0.249964,0,0);}
.mfd_c00169{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m89_c00169{transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);}
.m41_c00169{transform:matrix(0.194092,-0.003300,0.004249,0.249964,0,0);-ms-transform:matrix(0.194092,-0.003300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194092,-0.003300,0.004249,0.249964,0,0);}
.me3_c00169{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);}
.m3c_c00169{transform:matrix(0.194392,-0.003305,0.004249,0.249964,0,0);-ms-transform:matrix(0.194392,-0.003305,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194392,-0.003305,0.004249,0.249964,0,0);}
.m2d_c00169{transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);-ms-transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);}
.m68_c00169{transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);}
.maa_c00169{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.mde_c00169{transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);}
.m5e_c00169{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.m61_c00169{transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);}
.mf7_c00169{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00169{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.m51_c00169{transform:matrix(0.196427,-0.003339,0.004249,0.249964,0,0);-ms-transform:matrix(0.196427,-0.003339,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196427,-0.003339,0.004249,0.249964,0,0);}
.m59_c00169{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.197646,-0.003360,0.004249,0.249964,0,0);-ms-transform:matrix(0.197646,-0.003360,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197646,-0.003360,0.004249,0.249964,0,0);}
.m1c_c00169{transform:matrix(0.197796,-0.003363,0.004249,0.249964,0,0);-ms-transform:matrix(0.197796,-0.003363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197796,-0.003363,0.004249,0.249964,0,0);}
.mf9_c00169{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);-ms-transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);}
.mdf_c00169{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.mc4_c00169{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.mdd_c00169{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.me1_c00169{transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00169{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.ma9_c00169{transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);}
.m81_c00169{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{transform:matrix(0.199941,-0.003399,0.004249,0.249964,0,0);-ms-transform:matrix(0.199941,-0.003399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199941,-0.003399,0.004249,0.249964,0,0);}
.mbc_c00169{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.m60_c00169{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.200691,-0.003412,0.004249,0.249964,0,0);-ms-transform:matrix(0.200691,-0.003412,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200691,-0.003412,0.004249,0.249964,0,0);}
.mfa_c00169{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{transform:matrix(0.200966,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200966,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200966,-0.003416,0.004249,0.249964,0,0);}
.me5_c00169{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);-ms-transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);}
.m4a_c00169{transform:matrix(0.201081,-0.003418,0.004249,0.249964,0,0);-ms-transform:matrix(0.201081,-0.003418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201081,-0.003418,0.004249,0.249964,0,0);}
.mb3_c00169{transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.201391,-0.003424,0.004249,0.249964,0,0);-ms-transform:matrix(0.201391,-0.003424,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201391,-0.003424,0.004249,0.249964,0,0);}
.m9a_c00169{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.mdc_c00169{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m4b_c00169{transform:matrix(0.203061,-0.003452,0.004249,0.249964,0,0);-ms-transform:matrix(0.203061,-0.003452,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203061,-0.003452,0.004249,0.249964,0,0);}
.mb_c00169{transform:matrix(0.203096,-0.003453,0.004249,0.249964,0,0);-ms-transform:matrix(0.203096,-0.003453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203096,-0.003453,0.004249,0.249964,0,0);}
.m8e_c00169{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.maf_c00169{transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{transform:matrix(0.203946,-0.003467,0.004249,0.249964,0,0);-ms-transform:matrix(0.203946,-0.003467,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203946,-0.003467,0.004249,0.249964,0,0);}
.md0_c00169{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.204545,-0.003477,0.004249,0.249964,0,0);-ms-transform:matrix(0.204545,-0.003477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204545,-0.003477,0.004249,0.249964,0,0);}
.m1e_c00169{transform:matrix(0.205250,-0.003489,0.004249,0.249964,0,0);-ms-transform:matrix(0.205250,-0.003489,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205250,-0.003489,0.004249,0.249964,0,0);}
.m4d_c00169{transform:matrix(0.205290,-0.003490,0.004249,0.249964,0,0);-ms-transform:matrix(0.205290,-0.003490,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205290,-0.003490,0.004249,0.249964,0,0);}
.me6_c00169{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m30_c00169{transform:matrix(0.205665,-0.003496,0.004249,0.249964,0,0);-ms-transform:matrix(0.205665,-0.003496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205665,-0.003496,0.004249,0.249964,0,0);}
.mbd_c00169{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.mad_c00169{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m9b_c00169{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{transform:matrix(0.208705,-0.003548,0.004249,0.249964,0,0);-ms-transform:matrix(0.208705,-0.003548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208705,-0.003548,0.004249,0.249964,0,0);}
.m6a_c00169{transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);}
.m7c_c00169{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.mb6_c00169{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m6f_c00169{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m47_c00169{transform:matrix(0.210245,-0.003574,0.004249,0.249964,0,0);-ms-transform:matrix(0.210245,-0.003574,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210245,-0.003574,0.004249,0.249964,0,0);}
.mc1_c00169{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.210425,-0.003577,0.004249,0.249964,0,0);-ms-transform:matrix(0.210425,-0.003577,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210425,-0.003577,0.004249,0.249964,0,0);}
.m80_c00169{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{transform:matrix(0.210655,-0.003581,0.004249,0.249964,0,0);-ms-transform:matrix(0.210655,-0.003581,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210655,-0.003581,0.004249,0.249964,0,0);}
.mba_c00169{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m46_c00169{transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);-ms-transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);}
.mc8_c00169{transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);}
.m5c_c00169{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.me2_c00169{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.md7_c00169{transform:matrix(0.214685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214685,0.000000,0.000000,0.250000,0,0);}
.m33_c00169{transform:matrix(0.214769,-0.003651,0.004249,0.249964,0,0);-ms-transform:matrix(0.214769,-0.003651,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214769,-0.003651,0.004249,0.249964,0,0);}
.m65_c00169{transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{transform:matrix(0.216369,-0.003678,0.004249,0.249964,0,0);-ms-transform:matrix(0.216369,-0.003678,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216369,-0.003678,0.004249,0.249964,0,0);}
.m73_c00169{transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);}
.mb5_c00169{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.mf3_c00169{transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);}
.m95_c00169{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m49_c00169{transform:matrix(0.216999,-0.003689,0.004249,0.249964,0,0);-ms-transform:matrix(0.216999,-0.003689,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216999,-0.003689,0.004249,0.249964,0,0);}
.mb1_c00169{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m72_c00169{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.m21_c00169{transform:matrix(0.217994,-0.003706,0.004249,0.249964,0,0);-ms-transform:matrix(0.217994,-0.003706,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217994,-0.003706,0.004249,0.249964,0,0);}
.m17_c00169{transform:matrix(0.218523,-0.003715,0.004249,0.249964,0,0);-ms-transform:matrix(0.218523,-0.003715,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218523,-0.003715,0.004249,0.249964,0,0);}
.m8f_c00169{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.m64_c00169{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);}
.m91_c00169{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m66_c00169{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.mc0_c00169{transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);}
.m7a_c00169{transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);}
.m9c_c00169{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00169{transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);}
.mff_c00169{transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.226477,-0.003850,0.004249,0.249964,0,0);-ms-transform:matrix(0.226477,-0.003850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226477,-0.003850,0.004249,0.249964,0,0);}
.m71_c00169{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.mf2_c00169{transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);}
.mdb_c00169{transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.227492,-0.003867,0.004249,0.249964,0,0);-ms-transform:matrix(0.227492,-0.003867,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227492,-0.003867,0.004249,0.249964,0,0);}
.m7b_c00169{transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);}
.mf6_c00169{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.ma5_c00169{transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);}
.m84_c00169{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.m70_c00169{transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00169{transform:matrix(0.231047,-0.003928,0.004249,0.249964,0,0);-ms-transform:matrix(0.231047,-0.003928,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231047,-0.003928,0.004249,0.249964,0,0);}
.m6c_c00169{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m9e_c00169{transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);}
.m8d_c00169{transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);}
.md6_c00169{transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);}
.m99_c00169{transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.241490,-0.004105,0.004249,0.249964,0,0);-ms-transform:matrix(0.241490,-0.004105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241490,-0.004105,0.004249,0.249964,0,0);}
.m9d_c00169{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00169{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.247349,-0.004205,0.004249,0.249964,0,0);-ms-transform:matrix(0.247349,-0.004205,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247349,-0.004205,0.004249,0.249964,0,0);}
.m19_c00169{transform:matrix(0.248264,-0.004220,0.004249,0.249964,0,0);-ms-transform:matrix(0.248264,-0.004220,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248264,-0.004220,0.004249,0.249964,0,0);}
.m90_c00169{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m1b_c00169{transform:matrix(0.254198,-0.004321,0.004249,0.249964,0,0);-ms-transform:matrix(0.254198,-0.004321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254198,-0.004321,0.004249,0.249964,0,0);}
.meb_c00169{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00169{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.ma0_c00169{transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);}
.mcd_c00169{transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.273750,-0.004654,0.004249,0.249964,0,0);-ms-transform:matrix(0.273750,-0.004654,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273750,-0.004654,0.004249,0.249964,0,0);}
.mb0_c00169{transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);-ms-transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);}
.m18_c00169{transform:matrix(0.300382,-0.005106,0.004249,0.249964,0,0);-ms-transform:matrix(0.300382,-0.005106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.300382,-0.005106,0.004249,0.249964,0,0);}
.mea_c00169{transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.319884,-0.005438,0.004249,0.249964,0,0);-ms-transform:matrix(0.319884,-0.005438,0.004249,0.249964,0,0);-webkit-transform:matrix(0.319884,-0.005438,0.004249,0.249964,0,0);}
.m9f_c00169{transform:matrix(0.337865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00169{transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.358823,-0.006100,0.004249,0.249964,0,0);-ms-transform:matrix(0.358823,-0.006100,0.004249,0.249964,0,0);-webkit-transform:matrix(0.358823,-0.006100,0.004249,0.249964,0,0);}
.m5_c00169{transform:matrix(0.399912,-0.006799,0.004249,0.249964,0,0);-ms-transform:matrix(0.399912,-0.006799,0.004249,0.249964,0,0);-webkit-transform:matrix(0.399912,-0.006799,0.004249,0.249964,0,0);}
.m102_c00169{transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.404812,-0.006882,0.004249,0.249964,0,0);-ms-transform:matrix(0.404812,-0.006882,0.004249,0.249964,0,0);-webkit-transform:matrix(0.404812,-0.006882,0.004249,0.249964,0,0);}
.m100_c00169{transform:matrix(0.495275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495275,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.675797,-0.011489,0.004249,0.249964,0,0);-ms-transform:matrix(0.675797,-0.011489,0.004249,0.249964,0,0);-webkit-transform:matrix(0.675797,-0.011489,0.004249,0.249964,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:0.000000px;}
.fc0_c00169{color:transparent;}
.fs12_c00169{font-size:22.050000px;}
.fs0_c00169{font-size:31.504551px;}
.fsb_c00169{font-size:55.650000px;}
.fs3_c00169{font-size:57.758344px;}
.fs7_c00169{font-size:58.808496px;}
.fsc_c00169{font-size:59.850000px;}
.fse_c00169{font-size:60.900000px;}
.fs9_c00169{font-size:61.950000px;}
.fs8_c00169{font-size:63.000000px;}
.fs6_c00169{font-size:63.009103px;}
.fsa_c00169{font-size:64.050000px;}
.fs1_c00169{font-size:64.059255px;}
.fsd_c00169{font-size:65.100000px;}
.fs10_c00169{font-size:66.150000px;}
.fs4_c00169{font-size:66.159558px;}
.fsf_c00169{font-size:67.200000px;}
.fs11_c00169{font-size:68.250000px;}
.fs2_c00169{font-size:68.259861px;}
.fs5_c00169{font-size:77.711227px;}
.y0_c00169{bottom:0.000000px;}
.y8f_c00169{bottom:14.313000px;}
.y90_c00169{bottom:14.716500px;}
.y91_c00169{bottom:15.000000px;}
.y92_c00169{bottom:15.418500px;}
.y93_c00169{bottom:15.927000px;}
.y94_c00169{bottom:16.429500px;}
.y95_c00169{bottom:17.262000px;}
.y96_c00169{bottom:17.581500px;}
.y89_c00169{bottom:30.783000px;}
.y8a_c00169{bottom:32.200500px;}
.y8b_c00169{bottom:33.216000px;}
.y8c_c00169{bottom:33.651000px;}
.y8d_c00169{bottom:34.500000px;}
.y8e_c00169{bottom:34.735500px;}
.y85_c00169{bottom:48.871500px;}
.y86_c00169{bottom:49.642500px;}
.y87_c00169{bottom:49.884000px;}
.y88_c00169{bottom:52.000500px;}
.y7b_c00169{bottom:66.688500px;}
.y7c_c00169{bottom:66.913500px;}
.y7d_c00169{bottom:67.291500px;}
.y7e_c00169{bottom:67.440000px;}
.y7f_c00169{bottom:67.956000px;}
.y80_c00169{bottom:68.250000px;}
.y81_c00169{bottom:68.680500px;}
.y82_c00169{bottom:68.961000px;}
.y83_c00169{bottom:69.133500px;}
.y84_c00169{bottom:69.598500px;}
.y74_c00169{bottom:82.890000px;}
.y75_c00169{bottom:83.602500px;}
.y76_c00169{bottom:84.870000px;}
.y77_c00169{bottom:85.173000px;}
.y78_c00169{bottom:85.825500px;}
.y79_c00169{bottom:86.742000px;}
.y7a_c00169{bottom:87.070500px;}
.y6c_c00169{bottom:101.518500px;}
.y6d_c00169{bottom:102.207000px;}
.y6e_c00169{bottom:102.460500px;}
.y6f_c00169{bottom:102.987000px;}
.y70_c00169{bottom:103.219500px;}
.y71_c00169{bottom:103.780500px;}
.y72_c00169{bottom:104.116500px;}
.y73_c00169{bottom:104.355000px;}
.y6b_c00169{bottom:119.716500px;}
.y6a_c00169{bottom:136.959000px;}
.y69_c00169{bottom:155.218500px;}
.y68_c00169{bottom:172.462500px;}
.y67_c00169{bottom:189.877500px;}
.y97_c00169{bottom:206.280000px;}
.y66_c00169{bottom:208.102500px;}
.y65_c00169{bottom:225.450000px;}
.y64_c00169{bottom:243.388500px;}
.y63_c00169{bottom:259.641000px;}
.y62_c00169{bottom:277.441500px;}
.y5a_c00169{bottom:289.984500px;}
.y5b_c00169{bottom:290.590500px;}
.y5c_c00169{bottom:291.138000px;}
.y5d_c00169{bottom:291.757500px;}
.y5e_c00169{bottom:292.506000px;}
.y5f_c00169{bottom:293.109000px;}
.y60_c00169{bottom:293.340000px;}
.y61_c00169{bottom:294.106500px;}
.y59_c00169{bottom:310.903500px;}
.y58_c00169{bottom:329.163000px;}
.y57_c00169{bottom:346.594500px;}
.y56_c00169{bottom:364.263000px;}
.y55_c00169{bottom:381.396000px;}
.y4d_c00169{bottom:398.618319px;}
.y4e_c00169{bottom:398.618383px;}
.y54_c00169{bottom:398.618560px;}
.y53_c00169{bottom:398.618923px;}
.y4f_c00169{bottom:398.619024px;}
.y52_c00169{bottom:398.619141px;}
.y51_c00169{bottom:398.619166px;}
.y50_c00169{bottom:398.619303px;}
.y47_c00169{bottom:415.221535px;}
.y4c_c00169{bottom:415.221660px;}
.y49_c00169{bottom:415.221717px;}
.y48_c00169{bottom:415.221793px;}
.y46_c00169{bottom:415.222048px;}
.y4b_c00169{bottom:415.222237px;}
.y4a_c00169{bottom:415.222305px;}
.y40_c00169{bottom:431.958984px;}
.y3f_c00169{bottom:431.959458px;}
.y41_c00169{bottom:431.959503px;}
.y42_c00169{bottom:431.960040px;}
.y43_c00169{bottom:431.960649px;}
.y44_c00169{bottom:431.961018px;}
.y45_c00169{bottom:431.961499px;}
.y39_c00169{bottom:449.869524px;}
.y3c_c00169{bottom:449.869680px;}
.y3b_c00169{bottom:449.869761px;}
.y3e_c00169{bottom:449.869870px;}
.y3a_c00169{bottom:449.869953px;}
.y38_c00169{bottom:449.869968px;}
.y37_c00169{bottom:449.870224px;}
.y3d_c00169{bottom:449.870401px;}
.y2e_c00169{bottom:463.580769px;}
.y2f_c00169{bottom:464.464414px;}
.y30_c00169{bottom:464.711506px;}
.y31_c00169{bottom:465.104109px;}
.y32_c00169{bottom:466.059441px;}
.y33_c00169{bottom:466.313932px;}
.y34_c00169{bottom:466.622221px;}
.y35_c00169{bottom:467.104339px;}
.y36_c00169{bottom:467.784210px;}
.y29_c00169{bottom:484.107051px;}
.y28_c00169{bottom:484.107144px;}
.y2a_c00169{bottom:484.107768px;}
.y2b_c00169{bottom:484.107922px;}
.y2c_c00169{bottom:484.108473px;}
.y2d_c00169{bottom:484.108671px;}
.y21_c00169{bottom:498.683394px;}
.y22_c00169{bottom:499.437135px;}
.y23_c00169{bottom:500.058636px;}
.y24_c00169{bottom:501.126137px;}
.y25_c00169{bottom:501.773091px;}
.y26_c00169{bottom:502.387120px;}
.y27_c00169{bottom:502.823736px;}
.y18_c00169{bottom:513.807792px;}
.y19_c00169{bottom:514.480227px;}
.y1a_c00169{bottom:514.785280px;}
.y1b_c00169{bottom:515.406395px;}
.y1c_c00169{bottom:516.481277px;}
.y1d_c00169{bottom:516.881836px;}
.y1e_c00169{bottom:518.019076px;}
.y1f_c00169{bottom:518.726144px;}
.y20_c00169{bottom:520.133295px;}
.y10_c00169{bottom:533.517747px;}
.y11_c00169{bottom:533.912211px;}
.y12_c00169{bottom:534.628284px;}
.y13_c00169{bottom:535.475043px;}
.y14_c00169{bottom:536.158003px;}
.y15_c00169{bottom:536.777493px;}
.y16_c00169{bottom:537.187797px;}
.y17_c00169{bottom:537.690145px;}
.y9_c00169{bottom:551.609718px;}
.ya_c00169{bottom:552.037892px;}
.yb_c00169{bottom:552.846464px;}
.yc_c00169{bottom:553.138846px;}
.yd_c00169{bottom:553.597917px;}
.ye_c00169{bottom:554.196310px;}
.yf_c00169{bottom:554.402145px;}
.y1_c00169{bottom:564.570000px;}
.y2_c00169{bottom:565.328804px;}
.y3_c00169{bottom:566.123001px;}
.y4_c00169{bottom:566.390343px;}
.y5_c00169{bottom:566.861404px;}
.y6_c00169{bottom:567.127140px;}
.y7_c00169{bottom:567.810617px;}
.y8_c00169{bottom:568.536270px;}
.h14_c00169{height:22.050000px;}
.h2_c00169{height:31.504551px;}
.hd_c00169{height:55.650000px;}
.h5_c00169{height:57.758344px;}
.h9_c00169{height:58.808496px;}
.he_c00169{height:59.850000px;}
.h10_c00169{height:60.900000px;}
.hb_c00169{height:61.950000px;}
.ha_c00169{height:63.000000px;}
.h8_c00169{height:63.009103px;}
.hc_c00169{height:64.050000px;}
.h3_c00169{height:64.059255px;}
.hf_c00169{height:65.100000px;}
.h12_c00169{height:66.150000px;}
.h6_c00169{height:66.159558px;}
.h11_c00169{height:67.200000px;}
.h13_c00169{height:68.250000px;}
.h4_c00169{height:68.259861px;}
.h7_c00169{height:77.711227px;}
.h0_c00169{height:623.100000px;}
.h1_c00169{height:623.250000px;}
.w1_c00169{width:383.250000px;}
.w0_c00169{width:383.400000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:29.970000px;}
.x9_c00169{left:31.144600px;}
.x65_c00169{left:33.478500px;}
.xf_c00169{left:37.690966px;}
.x70_c00169{left:44.278500px;}
.x4d_c00169{left:45.360000px;}
.x17_c00169{left:46.413459px;}
.x1f_c00169{left:54.178743px;}
.x3d_c00169{left:59.674444px;}
.x10_c00169{left:63.983859px;}
.x61_c00169{left:67.768500px;}
.x7c_c00169{left:68.814000px;}
.x30_c00169{left:72.635664px;}
.x2_c00169{left:74.605500px;}
.x7d_c00169{left:75.741000px;}
.x18_c00169{left:76.965858px;}
.x6b_c00169{left:78.568500px;}
.x54_c00169{left:84.778500px;}
.x52_c00169{left:86.295000px;}
.x48_c00169{left:88.560000px;}
.x19_c00169{left:90.850185px;}
.x41_c00169{left:95.310000px;}
.x7e_c00169{left:97.543500px;}
.x20_c00169{left:101.252533px;}
.x62_c00169{left:103.408500px;}
.x2a_c00169{left:105.011484px;}
.x4b_c00169{left:107.730000px;}
.x26_c00169{left:109.363413px;}
.x11_c00169{left:111.754491px;}
.x49_c00169{left:114.480000px;}
.x4e_c00169{left:116.100000px;}
.x55_c00169{left:117.178500px;}
.x1a_c00169{left:119.089788px;}
.x3_c00169{left:121.323000px;}
.x53_c00169{left:122.797500px;}
.x4c_c00169{left:123.930000px;}
.x36_c00169{left:126.103510px;}
.x56_c00169{left:129.598500px;}
.x71_c00169{left:132.568500px;}
.x4_c00169{left:137.049000px;}
.x73_c00169{left:138.105000px;}
.x21_c00169{left:140.106196px;}
.x42_c00169{left:142.830000px;}
.x37_c00169{left:145.816197px;}
.x2b_c00169{left:147.671437px;}
.x66_c00169{left:149.848500px;}
.x43_c00169{left:151.200000px;}
.x3e_c00169{left:152.297694px;}
.x39_c00169{left:153.649419px;}
.xa_c00169{left:154.820814px;}
.x59_c00169{left:156.328500px;}
.x31_c00169{left:157.428169px;}
.x5_c00169{left:164.758500px;}
.x12_c00169{left:168.183403px;}
.x44_c00169{left:169.830000px;}
.x57_c00169{left:171.718500px;}
.x27_c00169{left:174.983359px;}
.x32_c00169{left:176.870779px;}
.x6_c00169{left:180.390000px;}
.xb_c00169{left:184.023282px;}
.x1b_c00169{left:186.110076px;}
.x28_c00169{left:189.025914px;}
.x74_c00169{left:190.690500px;}
.x45_c00169{left:193.320000px;}
.x76_c00169{left:196.131000px;}
.x5b_c00169{left:197.638500px;}
.x67_c00169{left:199.528500px;}
.x78_c00169{left:200.680500px;}
.x51_c00169{left:202.500000px;}
.x5c_c00169{left:203.848500px;}
.x22_c00169{left:206.783818px;}
.x2c_c00169{left:211.369605px;}
.x13_c00169{left:213.741459px;}
.x33_c00169{left:217.106407px;}
.x3a_c00169{left:218.727712px;}
.x7_c00169{left:220.594500px;}
.x63_c00169{left:222.478500px;}
.x5d_c00169{left:224.638500px;}
.x6d_c00169{left:227.068500px;}
.x2d_c00169{left:228.369691px;}
.xc_c00169{left:229.915239px;}
.x4f_c00169{left:234.090000px;}
.x1c_c00169{left:237.825690px;}
.x34_c00169{left:239.519884px;}
.x79_c00169{left:243.666000px;}
.x23_c00169{left:247.223007px;}
.x2e_c00169{left:248.887380px;}
.x50_c00169{left:250.560000px;}
.x5e_c00169{left:252.988500px;}
.x14_c00169{left:255.036361px;}
.x6e_c00169{left:256.228500px;}
.x5a_c00169{left:258.928500px;}
.x4a_c00169{left:261.630000px;}
.x8_c00169{left:263.280000px;}
.x5f_c00169{left:267.028500px;}
.x3b_c00169{left:268.414569px;}
.x1d_c00169{left:269.973961px;}
.x7a_c00169{left:271.756500px;}
.x3f_c00169{left:274.356460px;}
.x2f_c00169{left:281.042476px;}
.x15_c00169{left:282.349279px;}
.x24_c00169{left:285.637170px;}
.x68_c00169{left:286.738500px;}
.x6c_c00169{left:288.088500px;}
.xd_c00169{left:289.827879px;}
.x60_c00169{left:292.678500px;}
.x46_c00169{left:294.300000px;}
.x58_c00169{left:295.918500px;}
.x69_c00169{left:300.778500px;}
.x75_c00169{left:303.711000px;}
.x47_c00169{left:307.530000px;}
.xe_c00169{left:310.408827px;}
.x6f_c00169{left:311.578500px;}
.x25_c00169{left:312.909129px;}
.x16_c00169{left:315.870927px;}
.x6a_c00169{left:318.598500px;}
.x3c_c00169{left:321.072292px;}
.x77_c00169{left:322.555500px;}
.x64_c00169{left:326.158500px;}
.x29_c00169{left:327.286347px;}
.x38_c00169{left:328.633482px;}
.x35_c00169{left:330.792751px;}
.x1e_c00169{left:333.948030px;}
.x7b_c00169{left:335.458500px;}
.x40_c00169{left:336.735489px;}
.x72_c00169{left:339.658500px;}
.x80_c00169{left:378.810000px;}
.x7f_c00169{left:380.430000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fs12_c00169{font-size:19.600000pt;}
.fs0_c00169{font-size:28.004046pt;}
.fsb_c00169{font-size:49.466667pt;}
.fs3_c00169{font-size:51.340750pt;}
.fs7_c00169{font-size:52.274219pt;}
.fsc_c00169{font-size:53.200000pt;}
.fse_c00169{font-size:54.133333pt;}
.fs9_c00169{font-size:55.066667pt;}
.fs8_c00169{font-size:56.000000pt;}
.fs6_c00169{font-size:56.008091pt;}
.fsa_c00169{font-size:56.933333pt;}
.fs1_c00169{font-size:56.941560pt;}
.fsd_c00169{font-size:57.866667pt;}
.fs10_c00169{font-size:58.800000pt;}
.fs4_c00169{font-size:58.808496pt;}
.fsf_c00169{font-size:59.733333pt;}
.fs11_c00169{font-size:60.666667pt;}
.fs2_c00169{font-size:60.675432pt;}
.fs5_c00169{font-size:69.076646pt;}
.y0_c00169{bottom:0.000000pt;}
.y8f_c00169{bottom:12.722667pt;}
.y90_c00169{bottom:13.081333pt;}
.y91_c00169{bottom:13.333333pt;}
.y92_c00169{bottom:13.705333pt;}
.y93_c00169{bottom:14.157333pt;}
.y94_c00169{bottom:14.604000pt;}
.y95_c00169{bottom:15.344000pt;}
.y96_c00169{bottom:15.628000pt;}
.y89_c00169{bottom:27.362667pt;}
.y8a_c00169{bottom:28.622667pt;}
.y8b_c00169{bottom:29.525333pt;}
.y8c_c00169{bottom:29.912000pt;}
.y8d_c00169{bottom:30.666667pt;}
.y8e_c00169{bottom:30.876000pt;}
.y85_c00169{bottom:43.441333pt;}
.y86_c00169{bottom:44.126667pt;}
.y87_c00169{bottom:44.341333pt;}
.y88_c00169{bottom:46.222667pt;}
.y7b_c00169{bottom:59.278667pt;}
.y7c_c00169{bottom:59.478667pt;}
.y7d_c00169{bottom:59.814667pt;}
.y7e_c00169{bottom:59.946667pt;}
.y7f_c00169{bottom:60.405333pt;}
.y80_c00169{bottom:60.666667pt;}
.y81_c00169{bottom:61.049333pt;}
.y82_c00169{bottom:61.298667pt;}
.y83_c00169{bottom:61.452000pt;}
.y84_c00169{bottom:61.865333pt;}
.y74_c00169{bottom:73.680000pt;}
.y75_c00169{bottom:74.313333pt;}
.y76_c00169{bottom:75.440000pt;}
.y77_c00169{bottom:75.709333pt;}
.y78_c00169{bottom:76.289333pt;}
.y79_c00169{bottom:77.104000pt;}
.y7a_c00169{bottom:77.396000pt;}
.y6c_c00169{bottom:90.238667pt;}
.y6d_c00169{bottom:90.850667pt;}
.y6e_c00169{bottom:91.076000pt;}
.y6f_c00169{bottom:91.544000pt;}
.y70_c00169{bottom:91.750667pt;}
.y71_c00169{bottom:92.249333pt;}
.y72_c00169{bottom:92.548000pt;}
.y73_c00169{bottom:92.760000pt;}
.y6b_c00169{bottom:106.414667pt;}
.y6a_c00169{bottom:121.741333pt;}
.y69_c00169{bottom:137.972000pt;}
.y68_c00169{bottom:153.300000pt;}
.y67_c00169{bottom:168.780000pt;}
.y97_c00169{bottom:183.360000pt;}
.y66_c00169{bottom:184.980000pt;}
.y65_c00169{bottom:200.400000pt;}
.y64_c00169{bottom:216.345333pt;}
.y63_c00169{bottom:230.792000pt;}
.y62_c00169{bottom:246.614667pt;}
.y5a_c00169{bottom:257.764000pt;}
.y5b_c00169{bottom:258.302667pt;}
.y5c_c00169{bottom:258.789333pt;}
.y5d_c00169{bottom:259.340000pt;}
.y5e_c00169{bottom:260.005333pt;}
.y5f_c00169{bottom:260.541333pt;}
.y60_c00169{bottom:260.746667pt;}
.y61_c00169{bottom:261.428000pt;}
.y59_c00169{bottom:276.358667pt;}
.y58_c00169{bottom:292.589333pt;}
.y57_c00169{bottom:308.084000pt;}
.y56_c00169{bottom:323.789333pt;}
.y55_c00169{bottom:339.018667pt;}
.y4d_c00169{bottom:354.327395pt;}
.y4e_c00169{bottom:354.327452pt;}
.y54_c00169{bottom:354.327609pt;}
.y53_c00169{bottom:354.327932pt;}
.y4f_c00169{bottom:354.328021pt;}
.y52_c00169{bottom:354.328125pt;}
.y51_c00169{bottom:354.328148pt;}
.y50_c00169{bottom:354.328269pt;}
.y47_c00169{bottom:369.085809pt;}
.y4c_c00169{bottom:369.085920pt;}
.y49_c00169{bottom:369.085971pt;}
.y48_c00169{bottom:369.086039pt;}
.y46_c00169{bottom:369.086265pt;}
.y4b_c00169{bottom:369.086433pt;}
.y4a_c00169{bottom:369.086493pt;}
.y40_c00169{bottom:383.963541pt;}
.y3f_c00169{bottom:383.963963pt;}
.y41_c00169{bottom:383.964003pt;}
.y42_c00169{bottom:383.964480pt;}
.y43_c00169{bottom:383.965021pt;}
.y44_c00169{bottom:383.965349pt;}
.y45_c00169{bottom:383.965777pt;}
.y39_c00169{bottom:399.884021pt;}
.y3c_c00169{bottom:399.884160pt;}
.y3b_c00169{bottom:399.884232pt;}
.y3e_c00169{bottom:399.884329pt;}
.y3a_c00169{bottom:399.884403pt;}
.y38_c00169{bottom:399.884416pt;}
.y37_c00169{bottom:399.884644pt;}
.y3d_c00169{bottom:399.884801pt;}
.y2e_c00169{bottom:412.071795pt;}
.y2f_c00169{bottom:412.857257pt;}
.y30_c00169{bottom:413.076895pt;}
.y31_c00169{bottom:413.425875pt;}
.y32_c00169{bottom:414.275059pt;}
.y33_c00169{bottom:414.501273pt;}
.y34_c00169{bottom:414.775308pt;}
.y35_c00169{bottom:415.203857pt;}
.y36_c00169{bottom:415.808187pt;}
.y29_c00169{bottom:430.317379pt;}
.y28_c00169{bottom:430.317461pt;}
.y2a_c00169{bottom:430.318016pt;}
.y2b_c00169{bottom:430.318153pt;}
.y2c_c00169{bottom:430.318643pt;}
.y2d_c00169{bottom:430.318819pt;}
.y21_c00169{bottom:443.274128pt;}
.y22_c00169{bottom:443.944120pt;}
.y23_c00169{bottom:444.496565pt;}
.y24_c00169{bottom:445.445455pt;}
.y25_c00169{bottom:446.020525pt;}
.y26_c00169{bottom:446.566329pt;}
.y27_c00169{bottom:446.954432pt;}
.y18_c00169{bottom:456.718037pt;}
.y19_c00169{bottom:457.315757pt;}
.y1a_c00169{bottom:457.586916pt;}
.y1b_c00169{bottom:458.139017pt;}
.y1c_c00169{bottom:459.094468pt;}
.y1d_c00169{bottom:459.450521pt;}
.y1e_c00169{bottom:460.461401pt;}
.y1f_c00169{bottom:461.089905pt;}
.y20_c00169{bottom:462.340707pt;}
.y10_c00169{bottom:474.237997pt;}
.y11_c00169{bottom:474.588632pt;}
.y12_c00169{bottom:475.225141pt;}
.y13_c00169{bottom:475.977816pt;}
.y14_c00169{bottom:476.584892pt;}
.y15_c00169{bottom:477.135549pt;}
.y16_c00169{bottom:477.500264pt;}
.y17_c00169{bottom:477.946796pt;}
.y9_c00169{bottom:490.319749pt;}
.ya_c00169{bottom:490.700348pt;}
.yb_c00169{bottom:491.419079pt;}
.yc_c00169{bottom:491.678975pt;}
.yd_c00169{bottom:492.087037pt;}
.ye_c00169{bottom:492.618943pt;}
.yf_c00169{bottom:492.801907pt;}
.y1_c00169{bottom:501.840000pt;}
.y2_c00169{bottom:502.514492pt;}
.y3_c00169{bottom:503.220445pt;}
.y4_c00169{bottom:503.458083pt;}
.y5_c00169{bottom:503.876804pt;}
.y6_c00169{bottom:504.113013pt;}
.y7_c00169{bottom:504.720548pt;}
.y8_c00169{bottom:505.365573pt;}
.h14_c00169{height:19.600000pt;}
.h2_c00169{height:28.004046pt;}
.hd_c00169{height:49.466667pt;}
.h5_c00169{height:51.340750pt;}
.h9_c00169{height:52.274219pt;}
.he_c00169{height:53.200000pt;}
.h10_c00169{height:54.133333pt;}
.hb_c00169{height:55.066667pt;}
.ha_c00169{height:56.000000pt;}
.h8_c00169{height:56.008091pt;}
.hc_c00169{height:56.933333pt;}
.h3_c00169{height:56.941560pt;}
.hf_c00169{height:57.866667pt;}
.h12_c00169{height:58.800000pt;}
.h6_c00169{height:58.808496pt;}
.h11_c00169{height:59.733333pt;}
.h13_c00169{height:60.666667pt;}
.h4_c00169{height:60.675432pt;}
.h7_c00169{height:69.076646pt;}
.h0_c00169{height:553.866667pt;}
.h1_c00169{height:554.000000pt;}
.w1_c00169{width:340.666667pt;}
.w0_c00169{width:340.800000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:26.640000pt;}
.x9_c00169{left:27.684089pt;}
.x65_c00169{left:29.758667pt;}
.xf_c00169{left:33.503081pt;}
.x70_c00169{left:39.358667pt;}
.x4d_c00169{left:40.320000pt;}
.x17_c00169{left:41.256408pt;}
.x1f_c00169{left:48.158883pt;}
.x3d_c00169{left:53.043951pt;}
.x10_c00169{left:56.874541pt;}
.x61_c00169{left:60.238667pt;}
.x7c_c00169{left:61.168000pt;}
.x30_c00169{left:64.565035pt;}
.x2_c00169{left:66.316000pt;}
.x7d_c00169{left:67.325333pt;}
.x18_c00169{left:68.414096pt;}
.x6b_c00169{left:69.838667pt;}
.x54_c00169{left:75.358667pt;}
.x52_c00169{left:76.706667pt;}
.x48_c00169{left:78.720000pt;}
.x19_c00169{left:80.755720pt;}
.x41_c00169{left:84.720000pt;}
.x7e_c00169{left:86.705333pt;}
.x20_c00169{left:90.002252pt;}
.x62_c00169{left:91.918667pt;}
.x2a_c00169{left:93.343541pt;}
.x4b_c00169{left:95.760000pt;}
.x26_c00169{left:97.211923pt;}
.x11_c00169{left:99.337325pt;}
.x49_c00169{left:101.760000pt;}
.x4e_c00169{left:103.200000pt;}
.x55_c00169{left:104.158667pt;}
.x1a_c00169{left:105.857589pt;}
.x3_c00169{left:107.842667pt;}
.x53_c00169{left:109.153333pt;}
.x4c_c00169{left:110.160000pt;}
.x36_c00169{left:112.092009pt;}
.x56_c00169{left:115.198667pt;}
.x71_c00169{left:117.838667pt;}
.x4_c00169{left:121.821333pt;}
.x73_c00169{left:122.760000pt;}
.x21_c00169{left:124.538841pt;}
.x42_c00169{left:126.960000pt;}
.x37_c00169{left:129.614397pt;}
.x2b_c00169{left:131.263500pt;}
.x66_c00169{left:133.198667pt;}
.x43_c00169{left:134.400000pt;}
.x3e_c00169{left:135.375728pt;}
.x39_c00169{left:136.577261pt;}
.xa_c00169{left:137.618501pt;}
.x59_c00169{left:138.958667pt;}
.x31_c00169{left:139.936151pt;}
.x5_c00169{left:146.452000pt;}
.x12_c00169{left:149.496359pt;}
.x44_c00169{left:150.960000pt;}
.x57_c00169{left:152.638667pt;}
.x27_c00169{left:155.540764pt;}
.x32_c00169{left:157.218471pt;}
.x6_c00169{left:160.346667pt;}
.xb_c00169{left:163.576251pt;}
.x1b_c00169{left:165.431179pt;}
.x28_c00169{left:168.023035pt;}
.x74_c00169{left:169.502667pt;}
.x45_c00169{left:171.840000pt;}
.x76_c00169{left:174.338667pt;}
.x5b_c00169{left:175.678667pt;}
.x67_c00169{left:177.358667pt;}
.x78_c00169{left:178.382667pt;}
.x51_c00169{left:180.000000pt;}
.x5c_c00169{left:181.198667pt;}
.x22_c00169{left:183.807839pt;}
.x2c_c00169{left:187.884093pt;}
.x13_c00169{left:189.992408pt;}
.x33_c00169{left:192.983473pt;}
.x3a_c00169{left:194.424633pt;}
.x7_c00169{left:196.084000pt;}
.x63_c00169{left:197.758667pt;}
.x5d_c00169{left:199.678667pt;}
.x6d_c00169{left:201.838667pt;}
.x2d_c00169{left:202.995281pt;}
.xc_c00169{left:204.369101pt;}
.x4f_c00169{left:208.080000pt;}
.x1c_c00169{left:211.400613pt;}
.x34_c00169{left:212.906564pt;}
.x79_c00169{left:216.592000pt;}
.x23_c00169{left:219.753784pt;}
.x2e_c00169{left:221.233227pt;}
.x50_c00169{left:222.720000pt;}
.x5e_c00169{left:224.878667pt;}
.x14_c00169{left:226.698988pt;}
.x6e_c00169{left:227.758667pt;}
.x5a_c00169{left:230.158667pt;}
.x4a_c00169{left:232.560000pt;}
.x8_c00169{left:234.026667pt;}
.x5f_c00169{left:237.358667pt;}
.x3b_c00169{left:238.590728pt;}
.x1d_c00169{left:239.976855pt;}
.x7a_c00169{left:241.561333pt;}
.x3f_c00169{left:243.872409pt;}
.x2f_c00169{left:249.815535pt;}
.x15_c00169{left:250.977137pt;}
.x24_c00169{left:253.899707pt;}
.x68_c00169{left:254.878667pt;}
.x6c_c00169{left:256.078667pt;}
.xd_c00169{left:257.624781pt;}
.x60_c00169{left:260.158667pt;}
.x46_c00169{left:261.600000pt;}
.x58_c00169{left:263.038667pt;}
.x69_c00169{left:267.358667pt;}
.x75_c00169{left:269.965333pt;}
.x47_c00169{left:273.360000pt;}
.xe_c00169{left:275.918957pt;}
.x6f_c00169{left:276.958667pt;}
.x25_c00169{left:278.141448pt;}
.x16_c00169{left:280.774157pt;}
.x6a_c00169{left:283.198667pt;}
.x3c_c00169{left:285.397593pt;}
.x77_c00169{left:286.716000pt;}
.x64_c00169{left:289.918667pt;}
.x29_c00169{left:290.921197pt;}
.x38_c00169{left:292.118651pt;}
.x35_c00169{left:294.038001pt;}
.x1e_c00169{left:296.842693pt;}
.x7b_c00169{left:298.185333pt;}
.x40_c00169{left:299.320435pt;}
.x72_c00169{left:301.918667pt;}
.x80_c00169{left:336.720000pt;}
.x7f_c00169{left:338.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00170 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00170 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00170 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00170 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00170.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00170{transform:matrix(0.100627,-0.001912,0.004749,0.249955,0,0);-ms-transform:matrix(0.100627,-0.001912,0.004749,0.249955,0,0);-webkit-transform:matrix(0.100627,-0.001912,0.004749,0.249955,0,0);}
.m24_c00170{transform:matrix(0.133046,-0.002528,0.004749,0.249955,0,0);-ms-transform:matrix(0.133046,-0.002528,0.004749,0.249955,0,0);-webkit-transform:matrix(0.133046,-0.002528,0.004749,0.249955,0,0);}
.mc_c00170{transform:matrix(0.137120,-0.002605,0.004749,0.249955,0,0);-ms-transform:matrix(0.137120,-0.002605,0.004749,0.249955,0,0);-webkit-transform:matrix(0.137120,-0.002605,0.004749,0.249955,0,0);}
.ma4_c00170{transform:matrix(0.139040,-0.001668,0.003000,0.249982,0,0);-ms-transform:matrix(0.139040,-0.001668,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139040,-0.001668,0.003000,0.249982,0,0);}
.med_c00170{transform:matrix(0.139685,-0.001676,0.003000,0.249982,0,0);-ms-transform:matrix(0.139685,-0.001676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139685,-0.001676,0.003000,0.249982,0,0);}
.mb_c00170{transform:matrix(0.143089,-0.002719,0.004749,0.249955,0,0);-ms-transform:matrix(0.143089,-0.002719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143089,-0.002719,0.004749,0.249955,0,0);}
.m2b_c00170{transform:matrix(0.143599,-0.002728,0.004749,0.249955,0,0);-ms-transform:matrix(0.143599,-0.002728,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143599,-0.002728,0.004749,0.249955,0,0);}
.m4c_c00170{transform:matrix(0.144089,-0.002738,0.004749,0.249955,0,0);-ms-transform:matrix(0.144089,-0.002738,0.004749,0.249955,0,0);-webkit-transform:matrix(0.144089,-0.002738,0.004749,0.249955,0,0);}
.mb5_c00170{transform:matrix(0.149194,-0.001790,0.003000,0.249982,0,0);-ms-transform:matrix(0.149194,-0.001790,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149194,-0.001790,0.003000,0.249982,0,0);}
.m1d_c00170{transform:matrix(0.150598,-0.002861,0.004749,0.249955,0,0);-ms-transform:matrix(0.150598,-0.002861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150598,-0.002861,0.004749,0.249955,0,0);}
.m1e_c00170{transform:matrix(0.151383,-0.002876,0.004749,0.249955,0,0);-ms-transform:matrix(0.151383,-0.002876,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151383,-0.002876,0.004749,0.249955,0,0);}
.m2e_c00170{transform:matrix(0.151408,-0.002877,0.004749,0.249955,0,0);-ms-transform:matrix(0.151408,-0.002877,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151408,-0.002877,0.004749,0.249955,0,0);}
.mf4_c00170{transform:matrix(0.151739,-0.001821,0.003000,0.249982,0,0);-ms-transform:matrix(0.151739,-0.001821,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151739,-0.001821,0.003000,0.249982,0,0);}
.mf0_c00170{transform:matrix(0.151939,-0.001823,0.003000,0.249982,0,0);-ms-transform:matrix(0.151939,-0.001823,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151939,-0.001823,0.003000,0.249982,0,0);}
.mb9_c00170{transform:matrix(0.153554,-0.001843,0.003000,0.249982,0,0);-ms-transform:matrix(0.153554,-0.001843,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153554,-0.001843,0.003000,0.249982,0,0);}
.m0_c00170{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m27_c00170{transform:matrix(0.154747,-0.002940,0.004749,0.249955,0,0);-ms-transform:matrix(0.154747,-0.002940,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154747,-0.002940,0.004749,0.249955,0,0);}
.m5d_c00170{transform:matrix(0.154797,-0.002941,0.004749,0.249955,0,0);-ms-transform:matrix(0.154797,-0.002941,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154797,-0.002941,0.004749,0.249955,0,0);}
.m9d_c00170{transform:matrix(0.155464,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155464,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155464,-0.001866,0.003000,0.249982,0,0);}
.mc2_c00170{transform:matrix(0.155524,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155524,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155524,-0.001866,0.003000,0.249982,0,0);}
.mf3_c00170{transform:matrix(0.155624,-0.001867,0.003000,0.249982,0,0);-ms-transform:matrix(0.155624,-0.001867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155624,-0.001867,0.003000,0.249982,0,0);}
.m2_c00170{transform:matrix(0.156672,-0.002977,0.004749,0.249955,0,0);-ms-transform:matrix(0.156672,-0.002977,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156672,-0.002977,0.004749,0.249955,0,0);}
.md_c00170{transform:matrix(0.156742,-0.002978,0.004749,0.249955,0,0);-ms-transform:matrix(0.156742,-0.002978,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156742,-0.002978,0.004749,0.249955,0,0);}
.m60_c00170{transform:matrix(0.157737,-0.002997,0.004749,0.249955,0,0);-ms-transform:matrix(0.157737,-0.002997,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157737,-0.002997,0.004749,0.249955,0,0);}
.m1a_c00170{transform:matrix(0.158276,-0.003007,0.004749,0.249955,0,0);-ms-transform:matrix(0.158276,-0.003007,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158276,-0.003007,0.004749,0.249955,0,0);}
.m18_c00170{transform:matrix(0.158596,-0.003013,0.004749,0.249955,0,0);-ms-transform:matrix(0.158596,-0.003013,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158596,-0.003013,0.004749,0.249955,0,0);}
.mec_c00170{transform:matrix(0.158709,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158709,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158709,-0.001905,0.003000,0.249982,0,0);}
.m75_c00170{transform:matrix(0.159064,-0.001909,0.003000,0.249982,0,0);-ms-transform:matrix(0.159064,-0.001909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159064,-0.001909,0.003000,0.249982,0,0);}
.m1_c00170{transform:matrix(0.159151,-0.003024,0.004749,0.249955,0,0);-ms-transform:matrix(0.159151,-0.003024,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159151,-0.003024,0.004749,0.249955,0,0);}
.m13_c00170{transform:matrix(0.159201,-0.003025,0.004749,0.249955,0,0);-ms-transform:matrix(0.159201,-0.003025,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159201,-0.003025,0.004749,0.249955,0,0);}
.m96_c00170{transform:matrix(0.159699,-0.001916,0.003000,0.249982,0,0);-ms-transform:matrix(0.159699,-0.001916,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159699,-0.001916,0.003000,0.249982,0,0);}
.mbf_c00170{transform:matrix(0.159958,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.159958,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159958,-0.001920,0.003000,0.249982,0,0);}
.m8_c00170{transform:matrix(0.160116,-0.003042,0.004749,0.249955,0,0);-ms-transform:matrix(0.160116,-0.003042,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160116,-0.003042,0.004749,0.249955,0,0);}
.me5_c00170{transform:matrix(0.160413,-0.001925,0.003000,0.249982,0,0);-ms-transform:matrix(0.160413,-0.001925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160413,-0.001925,0.003000,0.249982,0,0);}
.m40_c00170{transform:matrix(0.161001,-0.003059,0.004749,0.249955,0,0);-ms-transform:matrix(0.161001,-0.003059,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161001,-0.003059,0.004749,0.249955,0,0);}
.me6_c00170{transform:matrix(0.161413,-0.001937,0.003000,0.249982,0,0);-ms-transform:matrix(0.161413,-0.001937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161413,-0.001937,0.003000,0.249982,0,0);}
.mc4_c00170{transform:matrix(0.161488,-0.001938,0.003000,0.249982,0,0);-ms-transform:matrix(0.161488,-0.001938,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161488,-0.001938,0.003000,0.249982,0,0);}
.mc9_c00170{transform:matrix(0.162003,-0.001944,0.003000,0.249982,0,0);-ms-transform:matrix(0.162003,-0.001944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162003,-0.001944,0.003000,0.249982,0,0);}
.mba_c00170{transform:matrix(0.162323,-0.001948,0.003000,0.249982,0,0);-ms-transform:matrix(0.162323,-0.001948,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162323,-0.001948,0.003000,0.249982,0,0);}
.m90_c00170{transform:matrix(0.162523,-0.001950,0.003000,0.249982,0,0);-ms-transform:matrix(0.162523,-0.001950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162523,-0.001950,0.003000,0.249982,0,0);}
.m66_c00170{transform:matrix(0.163081,-0.003099,0.004749,0.249955,0,0);-ms-transform:matrix(0.163081,-0.003099,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163081,-0.003099,0.004749,0.249955,0,0);}
.me3_c00170{transform:matrix(0.163473,-0.001962,0.003000,0.249982,0,0);-ms-transform:matrix(0.163473,-0.001962,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163473,-0.001962,0.003000,0.249982,0,0);}
.m99_c00170{transform:matrix(0.164383,-0.001973,0.003000,0.249982,0,0);-ms-transform:matrix(0.164383,-0.001973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164383,-0.001973,0.003000,0.249982,0,0);}
.mca_c00170{transform:matrix(0.165853,-0.001990,0.003000,0.249982,0,0);-ms-transform:matrix(0.165853,-0.001990,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165853,-0.001990,0.003000,0.249982,0,0);}
.m56_c00170{transform:matrix(0.166350,-0.003161,0.004749,0.249955,0,0);-ms-transform:matrix(0.166350,-0.003161,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166350,-0.003161,0.004749,0.249955,0,0);}
.md0_c00170{transform:matrix(0.167033,-0.002004,0.003000,0.249982,0,0);-ms-transform:matrix(0.167033,-0.002004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167033,-0.002004,0.003000,0.249982,0,0);}
.me_c00170{transform:matrix(0.168340,-0.003198,0.004749,0.249955,0,0);-ms-transform:matrix(0.168340,-0.003198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168340,-0.003198,0.004749,0.249955,0,0);}
.m29_c00170{transform:matrix(0.168570,-0.003203,0.004749,0.249955,0,0);-ms-transform:matrix(0.168570,-0.003203,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168570,-0.003203,0.004749,0.249955,0,0);}
.me7_c00170{transform:matrix(0.168583,-0.002023,0.003000,0.249982,0,0);-ms-transform:matrix(0.168583,-0.002023,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168583,-0.002023,0.003000,0.249982,0,0);}
.md3_c00170{transform:matrix(0.168788,-0.002025,0.003000,0.249982,0,0);-ms-transform:matrix(0.168788,-0.002025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168788,-0.002025,0.003000,0.249982,0,0);}
.mbc_c00170{transform:matrix(0.169078,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169078,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169078,-0.002029,0.003000,0.249982,0,0);}
.m14_c00170{transform:matrix(0.169554,-0.003222,0.004749,0.249955,0,0);-ms-transform:matrix(0.169554,-0.003222,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169554,-0.003222,0.004749,0.249955,0,0);}
.m17_c00170{transform:matrix(0.170539,-0.003240,0.004749,0.249955,0,0);-ms-transform:matrix(0.170539,-0.003240,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170539,-0.003240,0.004749,0.249955,0,0);}
.md1_c00170{transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);-ms-transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);}
.m53_c00170{transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);-ms-transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);}
.m16_c00170{transform:matrix(0.170704,-0.003243,0.004749,0.249955,0,0);-ms-transform:matrix(0.170704,-0.003243,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170704,-0.003243,0.004749,0.249955,0,0);}
.ma2_c00170{transform:matrix(0.170798,-0.002050,0.003000,0.249982,0,0);-ms-transform:matrix(0.170798,-0.002050,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170798,-0.002050,0.003000,0.249982,0,0);}
.m84_c00170{transform:matrix(0.170993,-0.002052,0.003000,0.249982,0,0);-ms-transform:matrix(0.170993,-0.002052,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170993,-0.002052,0.003000,0.249982,0,0);}
.mbb_c00170{transform:matrix(0.171503,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171503,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171503,-0.002058,0.003000,0.249982,0,0);}
.ma1_c00170{transform:matrix(0.172258,-0.002067,0.003000,0.249982,0,0);-ms-transform:matrix(0.172258,-0.002067,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172258,-0.002067,0.003000,0.249982,0,0);}
.m87_c00170{transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);-ms-transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);}
.m50_c00170{transform:matrix(0.172869,-0.003285,0.004749,0.249955,0,0);-ms-transform:matrix(0.172869,-0.003285,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172869,-0.003285,0.004749,0.249955,0,0);}
.m63_c00170{transform:matrix(0.173334,-0.003293,0.004749,0.249955,0,0);-ms-transform:matrix(0.173334,-0.003293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173334,-0.003293,0.004749,0.249955,0,0);}
.m41_c00170{transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);-ms-transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);}
.m7_c00170{transform:matrix(0.174199,-0.003310,0.004749,0.249955,0,0);-ms-transform:matrix(0.174199,-0.003310,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174199,-0.003310,0.004749,0.249955,0,0);}
.mb4_c00170{transform:matrix(0.174347,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174347,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174347,-0.002092,0.003000,0.249982,0,0);}
.mce_c00170{transform:matrix(0.174532,-0.002094,0.003000,0.249982,0,0);-ms-transform:matrix(0.174532,-0.002094,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174532,-0.002094,0.003000,0.249982,0,0);}
.m71_c00170{transform:matrix(0.174942,-0.002099,0.003000,0.249982,0,0);-ms-transform:matrix(0.174942,-0.002099,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174942,-0.002099,0.003000,0.249982,0,0);}
.m9a_c00170{transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);}
.m5b_c00170{transform:matrix(0.175703,-0.003338,0.004749,0.249955,0,0);-ms-transform:matrix(0.175703,-0.003338,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175703,-0.003338,0.004749,0.249955,0,0);}
.m2c_c00170{transform:matrix(0.175783,-0.003340,0.004749,0.249955,0,0);-ms-transform:matrix(0.175783,-0.003340,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175783,-0.003340,0.004749,0.249955,0,0);}
.m94_c00170{transform:matrix(0.175882,-0.002111,0.003000,0.249982,0,0);-ms-transform:matrix(0.175882,-0.002111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175882,-0.002111,0.003000,0.249982,0,0);}
.mcb_c00170{transform:matrix(0.176472,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176472,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176472,-0.002118,0.003000,0.249982,0,0);}
.m54_c00170{transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);-ms-transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177108,-0.003365,0.004749,0.249955,0,0);}
.mdc_c00170{transform:matrix(0.177232,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177232,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177232,-0.002127,0.003000,0.249982,0,0);}
.m83_c00170{transform:matrix(0.177712,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177712,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177712,-0.002133,0.003000,0.249982,0,0);}
.m5a_c00170{transform:matrix(0.178858,-0.003398,0.004749,0.249955,0,0);-ms-transform:matrix(0.178858,-0.003398,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178858,-0.003398,0.004749,0.249955,0,0);}
.m4f_c00170{transform:matrix(0.179003,-0.003401,0.004749,0.249955,0,0);-ms-transform:matrix(0.179003,-0.003401,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179003,-0.003401,0.004749,0.249955,0,0);}
.m8e_c00170{transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);}
.m7b_c00170{transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);}
.mae_c00170{transform:matrix(0.179512,-0.002154,0.003000,0.249982,0,0);-ms-transform:matrix(0.179512,-0.002154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179512,-0.002154,0.003000,0.249982,0,0);}
.m19_c00170{transform:matrix(0.179813,-0.003416,0.004749,0.249955,0,0);-ms-transform:matrix(0.179813,-0.003416,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179813,-0.003416,0.004749,0.249955,0,0);}
.m2d_c00170{transform:matrix(0.181302,-0.003445,0.004749,0.249955,0,0);-ms-transform:matrix(0.181302,-0.003445,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181302,-0.003445,0.004749,0.249955,0,0);}
.m3f_c00170{transform:matrix(0.181962,-0.003457,0.004749,0.249955,0,0);-ms-transform:matrix(0.181962,-0.003457,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181962,-0.003457,0.004749,0.249955,0,0);}
.m33_c00170{transform:matrix(0.182227,-0.003462,0.004749,0.249955,0,0);-ms-transform:matrix(0.182227,-0.003462,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182227,-0.003462,0.004749,0.249955,0,0);}
.m57_c00170{transform:matrix(0.182512,-0.003468,0.004749,0.249955,0,0);-ms-transform:matrix(0.182512,-0.003468,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182512,-0.003468,0.004749,0.249955,0,0);}
.m2f_c00170{transform:matrix(0.183432,-0.003485,0.004749,0.249955,0,0);-ms-transform:matrix(0.183432,-0.003485,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183432,-0.003485,0.004749,0.249955,0,0);}
.mdb_c00170{transform:matrix(0.183437,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183437,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183437,-0.002201,0.003000,0.249982,0,0);}
.mad_c00170{transform:matrix(0.183482,-0.002202,0.003000,0.249982,0,0);-ms-transform:matrix(0.183482,-0.002202,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183482,-0.002202,0.003000,0.249982,0,0);}
.m9c_c00170{transform:matrix(0.183747,-0.002205,0.003000,0.249982,0,0);-ms-transform:matrix(0.183747,-0.002205,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183747,-0.002205,0.003000,0.249982,0,0);}
.m93_c00170{transform:matrix(0.183922,-0.002207,0.003000,0.249982,0,0);-ms-transform:matrix(0.183922,-0.002207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183922,-0.002207,0.003000,0.249982,0,0);}
.m1f_c00170{transform:matrix(0.184507,-0.003506,0.004749,0.249955,0,0);-ms-transform:matrix(0.184507,-0.003506,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184507,-0.003506,0.004749,0.249955,0,0);}
.m4d_c00170{transform:matrix(0.184552,-0.003506,0.004749,0.249955,0,0);-ms-transform:matrix(0.184552,-0.003506,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184552,-0.003506,0.004749,0.249955,0,0);}
.mcf_c00170{transform:matrix(0.184702,-0.002216,0.003000,0.249982,0,0);-ms-transform:matrix(0.184702,-0.002216,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184702,-0.002216,0.003000,0.249982,0,0);}
.m72_c00170{transform:matrix(0.184892,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184892,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184892,-0.002219,0.003000,0.249982,0,0);}
.m6f_c00170{transform:matrix(0.185122,-0.003517,0.004749,0.249955,0,0);-ms-transform:matrix(0.185122,-0.003517,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185122,-0.003517,0.004749,0.249955,0,0);}
.m3b_c00170{transform:matrix(0.185172,-0.003518,0.004749,0.249955,0,0);-ms-transform:matrix(0.185172,-0.003518,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185172,-0.003518,0.004749,0.249955,0,0);}
.mbe_c00170{transform:matrix(0.185242,-0.002223,0.003000,0.249982,0,0);-ms-transform:matrix(0.185242,-0.002223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185242,-0.002223,0.003000,0.249982,0,0);}
.m85_c00170{transform:matrix(0.186827,-0.002242,0.003000,0.249982,0,0);-ms-transform:matrix(0.186827,-0.002242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186827,-0.002242,0.003000,0.249982,0,0);}
.m23_c00170{transform:matrix(0.187396,-0.003561,0.004749,0.249955,0,0);-ms-transform:matrix(0.187396,-0.003561,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187396,-0.003561,0.004749,0.249955,0,0);}
.me1_c00170{transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187886,-0.002255,0.003000,0.249982,0,0);}
.m92_c00170{transform:matrix(0.188021,-0.002256,0.003000,0.249982,0,0);-ms-transform:matrix(0.188021,-0.002256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188021,-0.002256,0.003000,0.249982,0,0);}
.m20_c00170{transform:matrix(0.188166,-0.003575,0.004749,0.249955,0,0);-ms-transform:matrix(0.188166,-0.003575,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188166,-0.003575,0.004749,0.249955,0,0);}
.m15_c00170{transform:matrix(0.188236,-0.003576,0.004749,0.249955,0,0);-ms-transform:matrix(0.188236,-0.003576,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188236,-0.003576,0.004749,0.249955,0,0);}
.m2a_c00170{transform:matrix(0.188301,-0.003578,0.004749,0.249955,0,0);-ms-transform:matrix(0.188301,-0.003578,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188301,-0.003578,0.004749,0.249955,0,0);}
.mb7_c00170{transform:matrix(0.188376,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188376,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188376,-0.002261,0.003000,0.249982,0,0);}
.m74_c00170{transform:matrix(0.188566,-0.002263,0.003000,0.249982,0,0);-ms-transform:matrix(0.188566,-0.002263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188566,-0.002263,0.003000,0.249982,0,0);}
.mea_c00170{transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188911,-0.002267,0.003000,0.249982,0,0);}
.me9_c00170{transform:matrix(0.189096,-0.002269,0.003000,0.249982,0,0);-ms-transform:matrix(0.189096,-0.002269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189096,-0.002269,0.003000,0.249982,0,0);}
.m7d_c00170{transform:matrix(0.189271,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189271,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189271,-0.002271,0.003000,0.249982,0,0);}
.md8_c00170{transform:matrix(0.189366,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189366,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189366,-0.002272,0.003000,0.249982,0,0);}
.m4b_c00170{transform:matrix(0.189831,-0.003607,0.004749,0.249955,0,0);-ms-transform:matrix(0.189831,-0.003607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189831,-0.003607,0.004749,0.249955,0,0);}
.m6c_c00170{transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);-ms-transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);}
.mbd_c00170{transform:matrix(0.190096,-0.002281,0.003000,0.249982,0,0);-ms-transform:matrix(0.190096,-0.002281,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190096,-0.002281,0.003000,0.249982,0,0);}
.m77_c00170{transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);-ms-transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);}
.m1c_c00170{transform:matrix(0.190331,-0.003616,0.004749,0.249955,0,0);-ms-transform:matrix(0.190331,-0.003616,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190331,-0.003616,0.004749,0.249955,0,0);}
.m28_c00170{transform:matrix(0.190431,-0.003618,0.004749,0.249955,0,0);-ms-transform:matrix(0.190431,-0.003618,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190431,-0.003618,0.004749,0.249955,0,0);}
.mc6_c00170{transform:matrix(0.190716,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190716,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190716,-0.002289,0.003000,0.249982,0,0);}
.ma0_c00170{transform:matrix(0.190851,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190851,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190851,-0.002290,0.003000,0.249982,0,0);}
.m97_c00170{transform:matrix(0.191046,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191046,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191046,-0.002293,0.003000,0.249982,0,0);}
.m5e_c00170{transform:matrix(0.191061,-0.003630,0.004749,0.249955,0,0);-ms-transform:matrix(0.191061,-0.003630,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191061,-0.003630,0.004749,0.249955,0,0);}
.m98_c00170{transform:matrix(0.191156,-0.002294,0.003000,0.249982,0,0);-ms-transform:matrix(0.191156,-0.002294,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191156,-0.002294,0.003000,0.249982,0,0);}
.meb_c00170{transform:matrix(0.191516,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191516,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191516,-0.002298,0.003000,0.249982,0,0);}
.mb3_c00170{transform:matrix(0.191801,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191801,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191801,-0.002302,0.003000,0.249982,0,0);}
.m1b_c00170{transform:matrix(0.192060,-0.003649,0.004749,0.249955,0,0);-ms-transform:matrix(0.192060,-0.003649,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192060,-0.003649,0.004749,0.249955,0,0);}
.mef_c00170{transform:matrix(0.192256,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192256,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192256,-0.002307,0.003000,0.249982,0,0);}
.mc7_c00170{transform:matrix(0.192286,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192286,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192286,-0.002307,0.003000,0.249982,0,0);}
.mee_c00170{transform:matrix(0.193521,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193521,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193521,-0.002322,0.003000,0.249982,0,0);}
.m8d_c00170{transform:matrix(0.193531,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193531,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193531,-0.002322,0.003000,0.249982,0,0);}
.m95_c00170{transform:matrix(0.193556,-0.002323,0.003000,0.249982,0,0);-ms-transform:matrix(0.193556,-0.002323,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193556,-0.002323,0.003000,0.249982,0,0);}
.m9b_c00170{transform:matrix(0.193591,-0.002323,0.003000,0.249982,0,0);-ms-transform:matrix(0.193591,-0.002323,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193591,-0.002323,0.003000,0.249982,0,0);}
.m68_c00170{transform:matrix(0.193720,-0.003681,0.004749,0.249955,0,0);-ms-transform:matrix(0.193720,-0.003681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193720,-0.003681,0.004749,0.249955,0,0);}
.m61_c00170{transform:matrix(0.193810,-0.003682,0.004749,0.249955,0,0);-ms-transform:matrix(0.193810,-0.003682,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193810,-0.003682,0.004749,0.249955,0,0);}
.m9f_c00170{transform:matrix(0.193891,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193891,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193891,-0.002327,0.003000,0.249982,0,0);}
.m52_c00170{transform:matrix(0.193935,-0.003685,0.004749,0.249955,0,0);-ms-transform:matrix(0.193935,-0.003685,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193935,-0.003685,0.004749,0.249955,0,0);}
.me4_c00170{transform:matrix(0.193981,-0.002328,0.003000,0.249982,0,0);-ms-transform:matrix(0.193981,-0.002328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193981,-0.002328,0.003000,0.249982,0,0);}
.mf2_c00170{transform:matrix(0.194051,-0.002329,0.003000,0.249982,0,0);-ms-transform:matrix(0.194051,-0.002329,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194051,-0.002329,0.003000,0.249982,0,0);}
.m64_c00170{transform:matrix(0.194175,-0.003689,0.004749,0.249955,0,0);-ms-transform:matrix(0.194175,-0.003689,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194175,-0.003689,0.004749,0.249955,0,0);}
.mb1_c00170{transform:matrix(0.194476,-0.002334,0.003000,0.249982,0,0);-ms-transform:matrix(0.194476,-0.002334,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194476,-0.002334,0.003000,0.249982,0,0);}
.ma5_c00170{transform:matrix(0.195226,-0.002343,0.003000,0.249982,0,0);-ms-transform:matrix(0.195226,-0.002343,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195226,-0.002343,0.003000,0.249982,0,0);}
.ma9_c00170{transform:matrix(0.195461,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195461,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195461,-0.002346,0.003000,0.249982,0,0);}
.m7f_c00170{transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195581,-0.002347,0.003000,0.249982,0,0);}
.m80_c00170{transform:matrix(0.195656,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195656,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195656,-0.002348,0.003000,0.249982,0,0);}
.mc5_c00170{transform:matrix(0.195661,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195661,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195661,-0.002348,0.003000,0.249982,0,0);}
.m38_c00170{transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);-ms-transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195830,-0.003721,0.004749,0.249955,0,0);}
.m86_c00170{transform:matrix(0.195851,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195851,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195851,-0.002350,0.003000,0.249982,0,0);}
.m47_c00170{transform:matrix(0.196115,-0.003726,0.004749,0.249955,0,0);-ms-transform:matrix(0.196115,-0.003726,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196115,-0.003726,0.004749,0.249955,0,0);}
.m62_c00170{transform:matrix(0.196325,-0.003730,0.004749,0.249955,0,0);-ms-transform:matrix(0.196325,-0.003730,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196325,-0.003730,0.004749,0.249955,0,0);}
.m44_c00170{transform:matrix(0.196385,-0.003731,0.004749,0.249955,0,0);-ms-transform:matrix(0.196385,-0.003731,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196385,-0.003731,0.004749,0.249955,0,0);}
.m91_c00170{transform:matrix(0.196401,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196401,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196401,-0.002357,0.003000,0.249982,0,0);}
.mc0_c00170{transform:matrix(0.196641,-0.002360,0.003000,0.249982,0,0);-ms-transform:matrix(0.196641,-0.002360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196641,-0.002360,0.003000,0.249982,0,0);}
.m7e_c00170{transform:matrix(0.196751,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196751,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196751,-0.002361,0.003000,0.249982,0,0);}
.md2_c00170{transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);-ms-transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);}
.m3d_c00170{transform:matrix(0.196944,-0.003742,0.004749,0.249955,0,0);-ms-transform:matrix(0.196944,-0.003742,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196944,-0.003742,0.004749,0.249955,0,0);}
.m65_c00170{transform:matrix(0.197554,-0.003754,0.004749,0.249955,0,0);-ms-transform:matrix(0.197554,-0.003754,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197554,-0.003754,0.004749,0.249955,0,0);}
.m6e_c00170{transform:matrix(0.198384,-0.003769,0.004749,0.249955,0,0);-ms-transform:matrix(0.198384,-0.003769,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198384,-0.003769,0.004749,0.249955,0,0);}
.m55_c00170{transform:matrix(0.198404,-0.003770,0.004749,0.249955,0,0);-ms-transform:matrix(0.198404,-0.003770,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198404,-0.003770,0.004749,0.249955,0,0);}
.m21_c00170{transform:matrix(0.198694,-0.003775,0.004749,0.249955,0,0);-ms-transform:matrix(0.198694,-0.003775,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198694,-0.003775,0.004749,0.249955,0,0);}
.m25_c00170{transform:matrix(0.198804,-0.003777,0.004749,0.249955,0,0);-ms-transform:matrix(0.198804,-0.003777,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198804,-0.003777,0.004749,0.249955,0,0);}
.m51_c00170{transform:matrix(0.199059,-0.003782,0.004749,0.249955,0,0);-ms-transform:matrix(0.199059,-0.003782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199059,-0.003782,0.004749,0.249955,0,0);}
.m81_c00170{transform:matrix(0.199091,-0.002389,0.003000,0.249982,0,0);-ms-transform:matrix(0.199091,-0.002389,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199091,-0.002389,0.003000,0.249982,0,0);}
.m9e_c00170{transform:matrix(0.199136,-0.002390,0.003000,0.249982,0,0);-ms-transform:matrix(0.199136,-0.002390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199136,-0.002390,0.003000,0.249982,0,0);}
.me2_c00170{transform:matrix(0.200561,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200561,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200561,-0.002407,0.003000,0.249982,0,0);}
.m22_c00170{transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);-ms-transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);}
.m3a_c00170{transform:matrix(0.200629,-0.003812,0.004749,0.249955,0,0);-ms-transform:matrix(0.200629,-0.003812,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200629,-0.003812,0.004749,0.249955,0,0);}
.m4_c00170{transform:matrix(0.200914,-0.003817,0.004749,0.249955,0,0);-ms-transform:matrix(0.200914,-0.003817,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200914,-0.003817,0.004749,0.249955,0,0);}
.m59_c00170{transform:matrix(0.201149,-0.003822,0.004749,0.249955,0,0);-ms-transform:matrix(0.201149,-0.003822,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201149,-0.003822,0.004749,0.249955,0,0);}
.ma8_c00170{transform:matrix(0.201271,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201271,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201271,-0.002415,0.003000,0.249982,0,0);}
.m3_c00170{transform:matrix(0.201354,-0.003826,0.004749,0.249955,0,0);-ms-transform:matrix(0.201354,-0.003826,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201354,-0.003826,0.004749,0.249955,0,0);}
.m3e_c00170{transform:matrix(0.201464,-0.003828,0.004749,0.249955,0,0);-ms-transform:matrix(0.201464,-0.003828,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201464,-0.003828,0.004749,0.249955,0,0);}
.mc1_c00170{transform:matrix(0.201645,-0.002420,0.003000,0.249982,0,0);-ms-transform:matrix(0.201645,-0.002420,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201645,-0.002420,0.003000,0.249982,0,0);}
.m34_c00170{transform:matrix(0.202194,-0.003842,0.004749,0.249955,0,0);-ms-transform:matrix(0.202194,-0.003842,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202194,-0.003842,0.004749,0.249955,0,0);}
.me8_c00170{transform:matrix(0.202245,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202245,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202245,-0.002427,0.003000,0.249982,0,0);}
.m70_c00170{transform:matrix(0.202600,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202600,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202600,-0.002431,0.003000,0.249982,0,0);}
.m39_c00170{transform:matrix(0.202613,-0.003850,0.004749,0.249955,0,0);-ms-transform:matrix(0.202613,-0.003850,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202613,-0.003850,0.004749,0.249955,0,0);}
.m31_c00170{transform:matrix(0.202838,-0.003854,0.004749,0.249955,0,0);-ms-transform:matrix(0.202838,-0.003854,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202838,-0.003854,0.004749,0.249955,0,0);}
.m8f_c00170{transform:matrix(0.203280,-0.002439,0.003000,0.249982,0,0);-ms-transform:matrix(0.203280,-0.002439,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203280,-0.002439,0.003000,0.249982,0,0);}
.m4e_c00170{transform:matrix(0.203348,-0.003864,0.004749,0.249955,0,0);-ms-transform:matrix(0.203348,-0.003864,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203348,-0.003864,0.004749,0.249955,0,0);}
.m6d_c00170{transform:matrix(0.203898,-0.003874,0.004749,0.249955,0,0);-ms-transform:matrix(0.203898,-0.003874,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203898,-0.003874,0.004749,0.249955,0,0);}
.m42_c00170{transform:matrix(0.203923,-0.003875,0.004749,0.249955,0,0);-ms-transform:matrix(0.203923,-0.003875,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203923,-0.003875,0.004749,0.249955,0,0);}
.m37_c00170{transform:matrix(0.204608,-0.003888,0.004749,0.249955,0,0);-ms-transform:matrix(0.204608,-0.003888,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204608,-0.003888,0.004749,0.249955,0,0);}
.mf1_c00170{transform:matrix(0.204895,-0.002459,0.003000,0.249982,0,0);-ms-transform:matrix(0.204895,-0.002459,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204895,-0.002459,0.003000,0.249982,0,0);}
.m3c_c00170{transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);-ms-transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);}
.m4a_c00170{transform:matrix(0.205458,-0.003904,0.004749,0.249955,0,0);-ms-transform:matrix(0.205458,-0.003904,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205458,-0.003904,0.004749,0.249955,0,0);}
.m69_c00170{transform:matrix(0.205688,-0.003908,0.004749,0.249955,0,0);-ms-transform:matrix(0.205688,-0.003908,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205688,-0.003908,0.004749,0.249955,0,0);}
.m58_c00170{transform:matrix(0.206253,-0.003919,0.004749,0.249955,0,0);-ms-transform:matrix(0.206253,-0.003919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206253,-0.003919,0.004749,0.249955,0,0);}
.m5f_c00170{transform:matrix(0.207203,-0.003937,0.004749,0.249955,0,0);-ms-transform:matrix(0.207203,-0.003937,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207203,-0.003937,0.004749,0.249955,0,0);}
.ma7_c00170{transform:matrix(0.207340,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207340,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207340,-0.002488,0.003000,0.249982,0,0);}
.m5_c00170{transform:matrix(0.208327,-0.003958,0.004749,0.249955,0,0);-ms-transform:matrix(0.208327,-0.003958,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208327,-0.003958,0.004749,0.249955,0,0);}
.m36_c00170{transform:matrix(0.208567,-0.003963,0.004749,0.249955,0,0);-ms-transform:matrix(0.208567,-0.003963,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208567,-0.003963,0.004749,0.249955,0,0);}
.m78_c00170{transform:matrix(0.208680,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208680,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208680,-0.002504,0.003000,0.249982,0,0);}
.m43_c00170{transform:matrix(0.208747,-0.003966,0.004749,0.249955,0,0);-ms-transform:matrix(0.208747,-0.003966,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208747,-0.003966,0.004749,0.249955,0,0);}
.m5c_c00170{transform:matrix(0.209082,-0.003973,0.004749,0.249955,0,0);-ms-transform:matrix(0.209082,-0.003973,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209082,-0.003973,0.004749,0.249955,0,0);}
.m6a_c00170{transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);-ms-transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);}
.mdd_c00170{transform:matrix(0.209470,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209470,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209470,-0.002514,0.003000,0.249982,0,0);}
.ma6_c00170{transform:matrix(0.209985,-0.002520,0.003000,0.249982,0,0);-ms-transform:matrix(0.209985,-0.002520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209985,-0.002520,0.003000,0.249982,0,0);}
.m7c_c00170{transform:matrix(0.210105,-0.002521,0.003000,0.249982,0,0);-ms-transform:matrix(0.210105,-0.002521,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210105,-0.002521,0.003000,0.249982,0,0);}
.m89_c00170{transform:matrix(0.210620,-0.002527,0.003000,0.249982,0,0);-ms-transform:matrix(0.210620,-0.002527,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210620,-0.002527,0.003000,0.249982,0,0);}
.mab_c00170{transform:matrix(0.210855,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210855,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210855,-0.002530,0.003000,0.249982,0,0);}
.m30_c00170{transform:matrix(0.211802,-0.004024,0.004749,0.249955,0,0);-ms-transform:matrix(0.211802,-0.004024,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211802,-0.004024,0.004749,0.249955,0,0);}
.m7a_c00170{transform:matrix(0.212515,-0.002550,0.003000,0.249982,0,0);-ms-transform:matrix(0.212515,-0.002550,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212515,-0.002550,0.003000,0.249982,0,0);}
.ma_c00170{transform:matrix(0.212827,-0.004044,0.004749,0.249955,0,0);-ms-transform:matrix(0.212827,-0.004044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212827,-0.004044,0.004749,0.249955,0,0);}
.md6_c00170{transform:matrix(0.213525,-0.002562,0.003000,0.249982,0,0);-ms-transform:matrix(0.213525,-0.002562,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213525,-0.002562,0.003000,0.249982,0,0);}
.mdf_c00170{transform:matrix(0.213655,-0.002564,0.003000,0.249982,0,0);-ms-transform:matrix(0.213655,-0.002564,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213655,-0.002564,0.003000,0.249982,0,0);}
.mcc_c00170{transform:matrix(0.214090,-0.002569,0.003000,0.249982,0,0);-ms-transform:matrix(0.214090,-0.002569,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214090,-0.002569,0.003000,0.249982,0,0);}
.mb8_c00170{transform:matrix(0.214265,-0.002571,0.003000,0.249982,0,0);-ms-transform:matrix(0.214265,-0.002571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214265,-0.002571,0.003000,0.249982,0,0);}
.m9_c00170{transform:matrix(0.215126,-0.004087,0.004749,0.249955,0,0);-ms-transform:matrix(0.215126,-0.004087,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215126,-0.004087,0.004749,0.249955,0,0);}
.m32_c00170{transform:matrix(0.215266,-0.004090,0.004749,0.249955,0,0);-ms-transform:matrix(0.215266,-0.004090,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215266,-0.004090,0.004749,0.249955,0,0);}
.mda_c00170{transform:matrix(0.215784,-0.002589,0.003000,0.249982,0,0);-ms-transform:matrix(0.215784,-0.002589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215784,-0.002589,0.003000,0.249982,0,0);}
.m6b_c00170{transform:matrix(0.216736,-0.004118,0.004749,0.249955,0,0);-ms-transform:matrix(0.216736,-0.004118,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216736,-0.004118,0.004749,0.249955,0,0);}
.mcd_c00170{transform:matrix(0.216989,-0.002604,0.003000,0.249982,0,0);-ms-transform:matrix(0.216989,-0.002604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216989,-0.002604,0.003000,0.249982,0,0);}
.m48_c00170{transform:matrix(0.217551,-0.004133,0.004749,0.249955,0,0);-ms-transform:matrix(0.217551,-0.004133,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217551,-0.004133,0.004749,0.249955,0,0);}
.mb6_c00170{transform:matrix(0.218009,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.218009,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218009,-0.002616,0.003000,0.249982,0,0);}
.md7_c00170{transform:matrix(0.218239,-0.002619,0.003000,0.249982,0,0);-ms-transform:matrix(0.218239,-0.002619,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218239,-0.002619,0.003000,0.249982,0,0);}
.m8c_c00170{transform:matrix(0.218549,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218549,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218549,-0.002623,0.003000,0.249982,0,0);}
.m49_c00170{transform:matrix(0.219020,-0.004161,0.004749,0.249955,0,0);-ms-transform:matrix(0.219020,-0.004161,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219020,-0.004161,0.004749,0.249955,0,0);}
.ma3_c00170{transform:matrix(0.219169,-0.002630,0.003000,0.249982,0,0);-ms-transform:matrix(0.219169,-0.002630,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219169,-0.002630,0.003000,0.249982,0,0);}
.mac_c00170{transform:matrix(0.221264,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221264,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221264,-0.002655,0.003000,0.249982,0,0);}
.mde_c00170{transform:matrix(0.222154,-0.002666,0.003000,0.249982,0,0);-ms-transform:matrix(0.222154,-0.002666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222154,-0.002666,0.003000,0.249982,0,0);}
.m8b_c00170{transform:matrix(0.222199,-0.002666,0.003000,0.249982,0,0);-ms-transform:matrix(0.222199,-0.002666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222199,-0.002666,0.003000,0.249982,0,0);}
.mc3_c00170{transform:matrix(0.222699,-0.002672,0.003000,0.249982,0,0);-ms-transform:matrix(0.222699,-0.002672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222699,-0.002672,0.003000,0.249982,0,0);}
.m6_c00170{transform:matrix(0.222700,-0.004231,0.004749,0.249955,0,0);-ms-transform:matrix(0.222700,-0.004231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222700,-0.004231,0.004749,0.249955,0,0);}
.md4_c00170{transform:matrix(0.222994,-0.002676,0.003000,0.249982,0,0);-ms-transform:matrix(0.222994,-0.002676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222994,-0.002676,0.003000,0.249982,0,0);}
.mc8_c00170{transform:matrix(0.223129,-0.002678,0.003000,0.249982,0,0);-ms-transform:matrix(0.223129,-0.002678,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223129,-0.002678,0.003000,0.249982,0,0);}
.m76_c00170{transform:matrix(0.223504,-0.002682,0.003000,0.249982,0,0);-ms-transform:matrix(0.223504,-0.002682,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223504,-0.002682,0.003000,0.249982,0,0);}
.mf_c00170{transform:matrix(0.223540,-0.004247,0.004749,0.249955,0,0);-ms-transform:matrix(0.223540,-0.004247,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223540,-0.004247,0.004749,0.249955,0,0);}
.m82_c00170{transform:matrix(0.226729,-0.002721,0.003000,0.249982,0,0);-ms-transform:matrix(0.226729,-0.002721,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226729,-0.002721,0.003000,0.249982,0,0);}
.m35_c00170{transform:matrix(0.227144,-0.004316,0.004749,0.249955,0,0);-ms-transform:matrix(0.227144,-0.004316,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227144,-0.004316,0.004749,0.249955,0,0);}
.m11_c00170{transform:matrix(0.227829,-0.004329,0.004749,0.249955,0,0);-ms-transform:matrix(0.227829,-0.004329,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227829,-0.004329,0.004749,0.249955,0,0);}
.m8a_c00170{transform:matrix(0.228069,-0.002737,0.003000,0.249982,0,0);-ms-transform:matrix(0.228069,-0.002737,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228069,-0.002737,0.003000,0.249982,0,0);}
.m88_c00170{transform:matrix(0.228734,-0.002745,0.003000,0.249982,0,0);-ms-transform:matrix(0.228734,-0.002745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228734,-0.002745,0.003000,0.249982,0,0);}
.md9_c00170{transform:matrix(0.229388,-0.002753,0.003000,0.249982,0,0);-ms-transform:matrix(0.229388,-0.002753,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229388,-0.002753,0.003000,0.249982,0,0);}
.mb0_c00170{transform:matrix(0.232278,-0.002787,0.003000,0.249982,0,0);-ms-transform:matrix(0.232278,-0.002787,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232278,-0.002787,0.003000,0.249982,0,0);}
.md5_c00170{transform:matrix(0.234438,-0.002813,0.003000,0.249982,0,0);-ms-transform:matrix(0.234438,-0.002813,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234438,-0.002813,0.003000,0.249982,0,0);}
.m46_c00170{transform:matrix(0.236567,-0.004495,0.004749,0.249955,0,0);-ms-transform:matrix(0.236567,-0.004495,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236567,-0.004495,0.004749,0.249955,0,0);}
.m10_c00170{transform:matrix(0.253464,-0.004816,0.004749,0.249955,0,0);-ms-transform:matrix(0.253464,-0.004816,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253464,-0.004816,0.004749,0.249955,0,0);}
.maa_c00170{transform:matrix(0.253762,-0.003045,0.003000,0.249982,0,0);-ms-transform:matrix(0.253762,-0.003045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253762,-0.003045,0.003000,0.249982,0,0);}
.m79_c00170{transform:matrix(0.262006,-0.003144,0.003000,0.249982,0,0);-ms-transform:matrix(0.262006,-0.003144,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262006,-0.003144,0.003000,0.249982,0,0);}
.me0_c00170{transform:matrix(0.263191,-0.003158,0.003000,0.249982,0,0);-ms-transform:matrix(0.263191,-0.003158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263191,-0.003158,0.003000,0.249982,0,0);}
.m12_c00170{transform:matrix(0.263377,-0.005004,0.004749,0.249955,0,0);-ms-transform:matrix(0.263377,-0.005004,0.004749,0.249955,0,0);-webkit-transform:matrix(0.263377,-0.005004,0.004749,0.249955,0,0);}
.m45_c00170{transform:matrix(0.295152,-0.005608,0.004749,0.249955,0,0);-ms-transform:matrix(0.295152,-0.005608,0.004749,0.249955,0,0);-webkit-transform:matrix(0.295152,-0.005608,0.004749,0.249955,0,0);}
.m73_c00170{transform:matrix(0.297844,-0.003574,0.003000,0.249982,0,0);-ms-transform:matrix(0.297844,-0.003574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.297844,-0.003574,0.003000,0.249982,0,0);}
.m67_c00170{transform:matrix(0.354781,-0.006741,0.004749,0.249955,0,0);-ms-transform:matrix(0.354781,-0.006741,0.004749,0.249955,0,0);-webkit-transform:matrix(0.354781,-0.006741,0.004749,0.249955,0,0);}
.mb2_c00170{transform:matrix(0.358639,-0.004304,0.003000,0.249982,0,0);-ms-transform:matrix(0.358639,-0.004304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.358639,-0.004304,0.003000,0.249982,0,0);}
.maf_c00170{transform:matrix(0.646093,-0.007753,0.003000,0.249982,0,0);-ms-transform:matrix(0.646093,-0.007753,0.003000,0.249982,0,0);-webkit-transform:matrix(0.646093,-0.007753,0.003000,0.249982,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:0.000000px;}
.fc0_c00170{color:transparent;}
.fsc_c00170{font-size:58.804233px;}
.fse_c00170{font-size:59.854309px;}
.fs6_c00170{font-size:59.860802px;}
.fs8_c00170{font-size:61.961181px;}
.fsb_c00170{font-size:64.054611px;}
.fs1_c00170{font-size:64.061560px;}
.fsd_c00170{font-size:65.104687px;}
.fs4_c00170{font-size:65.111749px;}
.fs10_c00170{font-size:66.154763px;}
.fs7_c00170{font-size:66.161939px;}
.fs13_c00170{font-size:67.204838px;}
.fsa_c00170{font-size:67.212129px;}
.fs11_c00170{font-size:68.254914px;}
.fs9_c00170{font-size:68.262318px;}
.fs12_c00170{font-size:69.304989px;}
.fsf_c00170{font-size:70.355065px;}
.fs3_c00170{font-size:70.362697px;}
.fs5_c00170{font-size:72.463076px;}
.fs2_c00170{font-size:78.764213px;}
.fs0_c00170{font-size:84.000000px;}
.y0_c00170{bottom:0.000000px;}
.yee_c00170{bottom:29.538804px;}
.yef_c00170{bottom:29.539026px;}
.yed_c00170{bottom:29.539158px;}
.yf0_c00170{bottom:29.539230px;}
.yf1_c00170{bottom:29.539272px;}
.yf2_c00170{bottom:29.539638px;}
.yf7_c00170{bottom:29.539668px;}
.yf4_c00170{bottom:29.539782px;}
.yf5_c00170{bottom:29.540064px;}
.yf6_c00170{bottom:29.540106px;}
.yf3_c00170{bottom:29.540160px;}
.ye7_c00170{bottom:48.255282px;}
.ye9_c00170{bottom:48.255372px;}
.ye6_c00170{bottom:48.255378px;}
.yea_c00170{bottom:48.255618px;}
.ye8_c00170{bottom:48.255810px;}
.yeb_c00170{bottom:48.256020px;}
.yec_c00170{bottom:48.256764px;}
.yde_c00170{bottom:62.891292px;}
.ydf_c00170{bottom:63.364602px;}
.ye0_c00170{bottom:63.642558px;}
.ye1_c00170{bottom:64.309872px;}
.ye2_c00170{bottom:64.689744px;}
.ye3_c00170{bottom:65.558226px;}
.ye4_c00170{bottom:65.872632px;}
.ye5_c00170{bottom:66.124902px;}
.ydc_c00170{bottom:82.348368px;}
.ydd_c00170{bottom:82.348596px;}
.ydb_c00170{bottom:82.348686px;}
.yd8_c00170{bottom:82.348956px;}
.yd9_c00170{bottom:82.349298px;}
.yda_c00170{bottom:82.349322px;}
.yd7_c00170{bottom:82.349388px;}
.yd1_c00170{bottom:99.592842px;}
.ycf_c00170{bottom:99.592914px;}
.yce_c00170{bottom:99.593112px;}
.yd2_c00170{bottom:99.593388px;}
.yd0_c00170{bottom:99.593520px;}
.yd3_c00170{bottom:99.593610px;}
.yd4_c00170{bottom:99.594312px;}
.yd5_c00170{bottom:99.594798px;}
.yd6_c00170{bottom:99.595020px;}
.yc6_c00170{bottom:116.353440px;}
.yc7_c00170{bottom:116.774592px;}
.yc8_c00170{bottom:117.505398px;}
.yc9_c00170{bottom:117.710868px;}
.yca_c00170{bottom:118.097514px;}
.ycb_c00170{bottom:118.328478px;}
.ycc_c00170{bottom:118.521384px;}
.ycd_c00170{bottom:118.869864px;}
.ybe_c00170{bottom:130.667970px;}
.ybf_c00170{bottom:131.016492px;}
.yc0_c00170{bottom:131.690634px;}
.yc1_c00170{bottom:132.790866px;}
.yc2_c00170{bottom:133.162470px;}
.yc3_c00170{bottom:134.259930px;}
.yc4_c00170{bottom:134.601462px;}
.yc5_c00170{bottom:134.965554px;}
.yb6_c00170{bottom:147.140148px;}
.yb7_c00170{bottom:148.117518px;}
.yb8_c00170{bottom:148.367736px;}
.yb9_c00170{bottom:148.825500px;}
.yba_c00170{bottom:149.666652px;}
.ybb_c00170{bottom:150.771660px;}
.ybc_c00170{bottom:151.096974px;}
.ybd_c00170{bottom:151.831008px;}
.yac_c00170{bottom:166.309188px;}
.yad_c00170{bottom:166.684920px;}
.yae_c00170{bottom:166.899516px;}
.yaf_c00170{bottom:167.792568px;}
.yb0_c00170{bottom:168.046674px;}
.yb1_c00170{bottom:168.328104px;}
.yb2_c00170{bottom:168.837180px;}
.yb3_c00170{bottom:169.099170px;}
.yb4_c00170{bottom:169.598526px;}
.yb5_c00170{bottom:169.750644px;}
.ya4_c00170{bottom:181.702662px;}
.ya5_c00170{bottom:182.497038px;}
.ya6_c00170{bottom:182.946342px;}
.ya7_c00170{bottom:183.324030px;}
.ya8_c00170{bottom:183.722802px;}
.ya9_c00170{bottom:184.264284px;}
.yaa_c00170{bottom:185.448240px;}
.yab_c00170{bottom:186.469986px;}
.y9e_c00170{bottom:200.603130px;}
.y9f_c00170{bottom:201.427584px;}
.ya0_c00170{bottom:201.736254px;}
.ya1_c00170{bottom:202.640940px;}
.ya2_c00170{bottom:203.102262px;}
.ya3_c00170{bottom:204.306780px;}
.y9c_c00170{bottom:219.252240px;}
.y9d_c00170{bottom:219.252444px;}
.y9b_c00170{bottom:219.252678px;}
.y9a_c00170{bottom:219.253272px;}
.y99_c00170{bottom:219.253344px;}
.y98_c00170{bottom:219.253440px;}
.y97_c00170{bottom:219.253476px;}
.y92_c00170{bottom:236.919810px;}
.y96_c00170{bottom:236.919996px;}
.y93_c00170{bottom:236.920434px;}
.y94_c00170{bottom:236.920440px;}
.y95_c00170{bottom:236.920548px;}
.y8a_c00170{bottom:252.986400px;}
.y8b_c00170{bottom:253.485432px;}
.y8c_c00170{bottom:253.708974px;}
.y8d_c00170{bottom:254.071980px;}
.y8e_c00170{bottom:254.751678px;}
.y8f_c00170{bottom:255.082914px;}
.y90_c00170{bottom:255.759372px;}
.y91_c00170{bottom:255.999546px;}
.y81_c00170{bottom:269.729214px;}
.y82_c00170{bottom:270.753594px;}
.y83_c00170{bottom:271.173036px;}
.y84_c00170{bottom:271.813038px;}
.y85_c00170{bottom:272.240262px;}
.y86_c00170{bottom:272.689776px;}
.y87_c00170{bottom:272.935938px;}
.y88_c00170{bottom:274.192260px;}
.y89_c00170{bottom:274.529160px;}
.y79_c00170{bottom:288.358794px;}
.y7a_c00170{bottom:288.633504px;}
.y7b_c00170{bottom:289.465992px;}
.y7c_c00170{bottom:289.918416px;}
.y7d_c00170{bottom:290.206614px;}
.y7e_c00170{bottom:290.515878px;}
.y7f_c00170{bottom:291.574854px;}
.y80_c00170{bottom:292.066458px;}
.y72_c00170{bottom:305.371500px;}
.y73_c00170{bottom:306.622014px;}
.y74_c00170{bottom:306.913740px;}
.y75_c00170{bottom:307.289706px;}
.y76_c00170{bottom:307.662126px;}
.y77_c00170{bottom:307.985676px;}
.y78_c00170{bottom:308.226156px;}
.y6c_c00170{bottom:321.292835px;}
.y6d_c00170{bottom:323.087335px;}
.y6e_c00170{bottom:323.900405px;}
.y6f_c00170{bottom:324.316533px;}
.y70_c00170{bottom:324.804789px;}
.y71_c00170{bottom:327.299119px;}
.y64_c00170{bottom:337.765665px;}
.y65_c00170{bottom:338.785388px;}
.y66_c00170{bottom:339.091212px;}
.y67_c00170{bottom:340.606590px;}
.y68_c00170{bottom:341.544431px;}
.y69_c00170{bottom:342.093414px;}
.y6a_c00170{bottom:343.417575px;}
.y6b_c00170{bottom:344.058472px;}
.y5e_c00170{bottom:355.046025px;}
.y5f_c00170{bottom:355.451609px;}
.y60_c00170{bottom:356.545467px;}
.y61_c00170{bottom:357.723600px;}
.y62_c00170{bottom:358.055454px;}
.y63_c00170{bottom:359.742910px;}
.y53_c00170{bottom:372.059811px;}
.y54_c00170{bottom:372.628842px;}
.y55_c00170{bottom:373.189864px;}
.y56_c00170{bottom:373.538533px;}
.y57_c00170{bottom:374.215950px;}
.y58_c00170{bottom:374.534039px;}
.y59_c00170{bottom:375.036893px;}
.y5a_c00170{bottom:376.109462px;}
.y5b_c00170{bottom:376.483980px;}
.y5c_c00170{bottom:376.822589px;}
.y5d_c00170{bottom:377.567094px;}
.y4d_c00170{bottom:389.343000px;}
.y4e_c00170{bottom:389.754996px;}
.y4f_c00170{bottom:390.560663px;}
.y50_c00170{bottom:391.543970px;}
.y51_c00170{bottom:392.325724px;}
.y52_c00170{bottom:393.906363px;}
.y46_c00170{bottom:405.790602px;}
.y47_c00170{bottom:407.110239px;}
.y48_c00170{bottom:408.104655px;}
.y49_c00170{bottom:409.316009px;}
.y4a_c00170{bottom:409.972179px;}
.y4b_c00170{bottom:411.281025px;}
.y4c_c00170{bottom:411.676684px;}
.y3e_c00170{bottom:423.342087px;}
.y3f_c00170{bottom:423.811998px;}
.y40_c00170{bottom:424.315101px;}
.y41_c00170{bottom:425.519176px;}
.y42_c00170{bottom:425.999861px;}
.y43_c00170{bottom:427.024135px;}
.y44_c00170{bottom:427.684192px;}
.y45_c00170{bottom:428.700374px;}
.y37_c00170{bottom:440.083188px;}
.y38_c00170{bottom:440.370280px;}
.y39_c00170{bottom:441.512010px;}
.y3a_c00170{bottom:443.340423px;}
.y3b_c00170{bottom:443.632920px;}
.y3c_c00170{bottom:444.720324px;}
.y3d_c00170{bottom:445.623682px;}
.y30_c00170{bottom:458.447070px;}
.y31_c00170{bottom:459.315816px;}
.y32_c00170{bottom:459.559749px;}
.y33_c00170{bottom:461.239179px;}
.y34_c00170{bottom:461.660433px;}
.y35_c00170{bottom:462.135987px;}
.y36_c00170{bottom:463.065274px;}
.y29_c00170{bottom:475.459605px;}
.y2a_c00170{bottom:476.101661px;}
.y2b_c00170{bottom:477.682313px;}
.y2c_c00170{bottom:477.942309px;}
.y2d_c00170{bottom:478.452394px;}
.y2e_c00170{bottom:479.926100px;}
.y2f_c00170{bottom:481.179545px;}
.y22_c00170{bottom:493.280635px;}
.y23_c00170{bottom:494.247620px;}
.y24_c00170{bottom:494.856307px;}
.y25_c00170{bottom:495.876807px;}
.y26_c00170{bottom:496.410366px;}
.y27_c00170{bottom:497.747017px;}
.y28_c00170{bottom:497.967862px;}
.y1b_c00170{bottom:510.024989px;}
.y1c_c00170{bottom:510.866698px;}
.y1d_c00170{bottom:511.743339px;}
.y1e_c00170{bottom:512.904561px;}
.y1f_c00170{bottom:513.321426px;}
.y20_c00170{bottom:514.518120px;}
.y21_c00170{bottom:514.676813px;}
.y14_c00170{bottom:525.693048px;}
.y15_c00170{bottom:526.320342px;}
.y16_c00170{bottom:527.559999px;}
.y17_c00170{bottom:529.120503px;}
.y18_c00170{bottom:531.154631px;}
.y19_c00170{bottom:532.247959px;}
.y1a_c00170{bottom:532.926819px;}
.yc_c00170{bottom:544.322005px;}
.yd_c00170{bottom:545.211321px;}
.ye_c00170{bottom:545.746100px;}
.yf_c00170{bottom:547.522222px;}
.y10_c00170{bottom:547.976697px;}
.y11_c00170{bottom:549.065100px;}
.y12_c00170{bottom:549.498630px;}
.y13_c00170{bottom:550.957823px;}
.y2_c00170{bottom:562.684500px;}
.y3_c00170{bottom:563.195362px;}
.y4_c00170{bottom:563.565235px;}
.y5_c00170{bottom:564.274885px;}
.y6_c00170{bottom:564.675140px;}
.y7_c00170{bottom:565.668621px;}
.y8_c00170{bottom:565.937291px;}
.y9_c00170{bottom:566.404320px;}
.ya_c00170{bottom:567.172309px;}
.yb_c00170{bottom:567.728287px;}
.y1_c00170{bottom:578.740500px;}
.he_c00170{height:58.804233px;}
.h10_c00170{height:59.854309px;}
.h8_c00170{height:59.860802px;}
.ha_c00170{height:61.961181px;}
.hd_c00170{height:64.054611px;}
.h3_c00170{height:64.061560px;}
.hf_c00170{height:65.104687px;}
.h6_c00170{height:65.111749px;}
.h12_c00170{height:66.154763px;}
.h9_c00170{height:66.161939px;}
.h15_c00170{height:67.204838px;}
.hc_c00170{height:67.212129px;}
.h13_c00170{height:68.254914px;}
.hb_c00170{height:68.262318px;}
.h14_c00170{height:69.304989px;}
.h11_c00170{height:70.355065px;}
.h5_c00170{height:70.362697px;}
.h7_c00170{height:72.463076px;}
.h4_c00170{height:78.764213px;}
.h2_c00170{height:84.000000px;}
.h0_c00170{height:623.100000px;}
.h1_c00170{height:623.250000px;}
.w1_c00170{width:383.250000px;}
.w0_c00170{width:383.400000px;}
.x0_c00170{left:0.000000px;}
.x57_c00170{left:33.158616px;}
.x2_c00170{left:34.536000px;}
.x13_c00170{left:36.031123px;}
.x28_c00170{left:38.047063px;}
.x52_c00170{left:39.776046px;}
.x5e_c00170{left:41.311446px;}
.x67_c00170{left:43.315440px;}
.x70_c00170{left:44.686020px;}
.x7d_c00170{left:46.023666px;}
.x2d_c00170{left:50.774491px;}
.x4e_c00170{left:57.675000px;}
.x14_c00170{left:59.253589px;}
.x3_c00170{left:61.423500px;}
.x6e_c00170{left:66.059166px;}
.x24_c00170{left:69.122461px;}
.x39_c00170{left:72.052500px;}
.xc_c00170{left:73.741018px;}
.x5f_c00170{left:75.330810px;}
.x1a_c00170{left:78.467536px;}
.x4_c00170{left:80.890500px;}
.x5b_c00170{left:81.962040px;}
.x71_c00170{left:83.032488px;}
.x46_c00170{left:85.203819px;}
.x31_c00170{left:86.661880px;}
.x64_c00170{left:88.990290px;}
.x1f_c00170{left:90.046363px;}
.x68_c00170{left:92.509440px;}
.x29_c00170{left:93.687009px;}
.xd_c00170{left:96.990751px;}
.x3e_c00170{left:98.238073px;}
.x36_c00170{left:100.895791px;}
.x2e_c00170{left:102.652027px;}
.x15_c00170{left:105.149607px;}
.x6f_c00170{left:108.235650px;}
.x60_c00170{left:110.702904px;}
.x3a_c00170{left:114.456000px;}
.x3f_c00170{left:116.589073px;}
.x5_c00170{left:118.240500px;}
.x4a_c00170{left:119.906498px;}
.x1b_c00170{left:122.316210px;}
.x20_c00170{left:123.899019px;}
.x53_c00170{left:124.916520px;}
.x62_c00170{left:128.908200px;}
.x5c_c00170{left:130.841040px;}
.x76_c00170{left:133.114842px;}
.x65_c00170{left:137.653374px;}
.x6_c00170{left:139.306500px;}
.x32_c00170{left:146.875240px;}
.x25_c00170{left:148.128951px;}
.x72_c00170{left:149.433780px;}
.x77_c00170{left:150.935916px;}
.x40_c00170{left:152.242573px;}
.x4b_c00170{left:156.855389px;}
.x54_c00170{left:159.743106px;}
.x26_c00170{left:161.102194px;}
.x16_c00170{left:162.956829px;}
.x7e_c00170{left:164.238666px;}
.x3b_c00170{left:166.209000px;}
.x47_c00170{left:167.946588px;}
.x1_c00170{left:169.560000px;}
.x33_c00170{left:170.910784px;}
.xe_c00170{left:174.201880px;}
.x4c_c00170{left:175.755806px;}
.x2a_c00170{left:177.655413px;}
.x1c_c00170{left:180.353098px;}
.x55_c00170{left:181.884336px;}
.x7a_c00170{left:184.687668px;}
.x27_c00170{left:186.606210px;}
.x69_c00170{left:188.105940px;}
.x58_c00170{left:190.030074px;}
.x7_c00170{left:191.595000px;}
.xf_c00170{left:193.935870px;}
.x41_c00170{left:195.450074px;}
.x44_c00170{left:196.881621px;}
.x2b_c00170{left:198.721014px;}
.x1d_c00170{left:201.187700px;}
.x73_c00170{left:203.152410px;}
.x8_c00170{left:205.735500px;}
.x3c_c00170{left:207.354000px;}
.x21_c00170{left:210.272172px;}
.x6a_c00170{left:211.558440px;}
.x5d_c00170{left:215.085540px;}
.x4f_c00170{left:217.525500px;}
.x7b_c00170{left:221.139924px;}
.x2c_c00170{left:222.486558px;}
.x74_c00170{left:224.149662px;}
.x9_c00170{left:230.316000px;}
.x59_c00170{left:233.500986px;}
.x48_c00170{left:235.538741px;}
.x37_c00170{left:237.150604px;}
.x17_c00170{left:238.267872px;}
.x10_c00170{left:241.269279px;}
.x7c_c00170{left:242.741538px;}
.x2f_c00170{left:248.449705px;}
.x81_c00170{left:250.839258px;}
.x42_c00170{left:251.901074px;}
.x6b_c00170{left:253.981440px;}
.x34_c00170{left:255.137188px;}
.x78_c00170{left:257.323716px;}
.x11_c00170{left:260.137854px;}
.x66_c00170{left:262.663386px;}
.x84_c00170{left:267.038148px;}
.x1e_c00170{left:268.969917px;}
.xa_c00170{left:270.736500px;}
.x75_c00170{left:273.390756px;}
.x50_c00170{left:275.523000px;}
.x18_c00170{left:278.752716px;}
.x82_c00170{left:280.001952px;}
.x22_c00170{left:284.492068px;}
.x45_c00170{left:285.695121px;}
.x56_c00170{left:287.153076px;}
.x30_c00170{left:289.518868px;}
.x3d_c00170{left:290.545500px;}
.x7f_c00170{left:294.468666px;}
.x51_c00170{left:295.563000px;}
.x23_c00170{left:296.747296px;}
.xb_c00170{left:299.998500px;}
.x19_c00170{left:303.899397px;}
.x35_c00170{left:305.935219px;}
.x79_c00170{left:310.246830px;}
.x4d_c00170{left:311.331582px;}
.x61_c00170{left:312.406956px;}
.x80_c00170{left:315.491166px;}
.x38_c00170{left:318.332026px;}
.x83_c00170{left:319.694658px;}
.x12_c00170{left:323.590537px;}
.x49_c00170{left:324.905168px;}
.x63_c00170{left:326.616324px;}
.x43_c00170{left:328.618574px;}
.x6c_c00170{left:330.103440px;}
.x5a_c00170{left:333.139716px;}
.x6d_c00170{left:336.391350px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.fsc_c00170{font-size:52.270430pt;}
.fse_c00170{font-size:53.203830pt;}
.fs6_c00170{font-size:53.209602pt;}
.fs8_c00170{font-size:55.076605pt;}
.fsb_c00170{font-size:56.937432pt;}
.fs1_c00170{font-size:56.943609pt;}
.fsd_c00170{font-size:57.870833pt;}
.fs4_c00170{font-size:57.877111pt;}
.fs10_c00170{font-size:58.804233pt;}
.fs7_c00170{font-size:58.810612pt;}
.fs13_c00170{font-size:59.737634pt;}
.fsa_c00170{font-size:59.744114pt;}
.fs11_c00170{font-size:60.671035pt;}
.fs9_c00170{font-size:60.677616pt;}
.fs12_c00170{font-size:61.604435pt;}
.fsf_c00170{font-size:62.537836pt;}
.fs3_c00170{font-size:62.544620pt;}
.fs5_c00170{font-size:64.411623pt;}
.fs2_c00170{font-size:70.012634pt;}
.fs0_c00170{font-size:74.666667pt;}
.y0_c00170{bottom:0.000000pt;}
.yee_c00170{bottom:26.256715pt;}
.yef_c00170{bottom:26.256912pt;}
.yed_c00170{bottom:26.257029pt;}
.yf0_c00170{bottom:26.257093pt;}
.yf1_c00170{bottom:26.257131pt;}
.yf2_c00170{bottom:26.257456pt;}
.yf7_c00170{bottom:26.257483pt;}
.yf4_c00170{bottom:26.257584pt;}
.yf5_c00170{bottom:26.257835pt;}
.yf6_c00170{bottom:26.257872pt;}
.yf3_c00170{bottom:26.257920pt;}
.ye7_c00170{bottom:42.893584pt;}
.ye9_c00170{bottom:42.893664pt;}
.ye6_c00170{bottom:42.893669pt;}
.yea_c00170{bottom:42.893883pt;}
.ye8_c00170{bottom:42.894053pt;}
.yeb_c00170{bottom:42.894240pt;}
.yec_c00170{bottom:42.894901pt;}
.yde_c00170{bottom:55.903371pt;}
.ydf_c00170{bottom:56.324091pt;}
.ye0_c00170{bottom:56.571163pt;}
.ye1_c00170{bottom:57.164331pt;}
.ye2_c00170{bottom:57.501995pt;}
.ye3_c00170{bottom:58.273979pt;}
.ye4_c00170{bottom:58.553451pt;}
.ye5_c00170{bottom:58.777691pt;}
.ydc_c00170{bottom:73.198549pt;}
.ydd_c00170{bottom:73.198752pt;}
.ydb_c00170{bottom:73.198832pt;}
.yd8_c00170{bottom:73.199072pt;}
.yd9_c00170{bottom:73.199376pt;}
.yda_c00170{bottom:73.199397pt;}
.yd7_c00170{bottom:73.199456pt;}
.yd1_c00170{bottom:88.526971pt;}
.ycf_c00170{bottom:88.527035pt;}
.yce_c00170{bottom:88.527211pt;}
.yd2_c00170{bottom:88.527456pt;}
.yd0_c00170{bottom:88.527573pt;}
.yd3_c00170{bottom:88.527653pt;}
.yd4_c00170{bottom:88.528277pt;}
.yd5_c00170{bottom:88.528709pt;}
.yd6_c00170{bottom:88.528907pt;}
.yc6_c00170{bottom:103.425280pt;}
.yc7_c00170{bottom:103.799637pt;}
.yc8_c00170{bottom:104.449243pt;}
.yc9_c00170{bottom:104.631883pt;}
.yca_c00170{bottom:104.975568pt;}
.ycb_c00170{bottom:105.180869pt;}
.ycc_c00170{bottom:105.352341pt;}
.ycd_c00170{bottom:105.662101pt;}
.ybe_c00170{bottom:116.149307pt;}
.ybf_c00170{bottom:116.459104pt;}
.yc0_c00170{bottom:117.058341pt;}
.yc1_c00170{bottom:118.036325pt;}
.yc2_c00170{bottom:118.366640pt;}
.yc3_c00170{bottom:119.342160pt;}
.yc4_c00170{bottom:119.645744pt;}
.yc5_c00170{bottom:119.969381pt;}
.yb6_c00170{bottom:130.791243pt;}
.yb7_c00170{bottom:131.660016pt;}
.yb8_c00170{bottom:131.882432pt;}
.yb9_c00170{bottom:132.289333pt;}
.yba_c00170{bottom:133.037024pt;}
.ybb_c00170{bottom:134.019253pt;}
.ybc_c00170{bottom:134.308421pt;}
.ybd_c00170{bottom:134.960896pt;}
.yac_c00170{bottom:147.830389pt;}
.yad_c00170{bottom:148.164373pt;}
.yae_c00170{bottom:148.355125pt;}
.yaf_c00170{bottom:149.148949pt;}
.yb0_c00170{bottom:149.374821pt;}
.yb1_c00170{bottom:149.624981pt;}
.yb2_c00170{bottom:150.077493pt;}
.yb3_c00170{bottom:150.310373pt;}
.yb4_c00170{bottom:150.754245pt;}
.yb5_c00170{bottom:150.889461pt;}
.ya4_c00170{bottom:161.513477pt;}
.ya5_c00170{bottom:162.219589pt;}
.ya6_c00170{bottom:162.618971pt;}
.ya7_c00170{bottom:162.954693pt;}
.ya8_c00170{bottom:163.309157pt;}
.ya9_c00170{bottom:163.790475pt;}
.yaa_c00170{bottom:164.842880pt;}
.yab_c00170{bottom:165.751099pt;}
.y9e_c00170{bottom:178.313893pt;}
.y9f_c00170{bottom:179.046741pt;}
.ya0_c00170{bottom:179.321115pt;}
.ya1_c00170{bottom:180.125280pt;}
.ya2_c00170{bottom:180.535344pt;}
.ya3_c00170{bottom:181.606027pt;}
.y9c_c00170{bottom:194.890880pt;}
.y9d_c00170{bottom:194.891061pt;}
.y9b_c00170{bottom:194.891269pt;}
.y9a_c00170{bottom:194.891797pt;}
.y99_c00170{bottom:194.891861pt;}
.y98_c00170{bottom:194.891947pt;}
.y97_c00170{bottom:194.891979pt;}
.y92_c00170{bottom:210.595387pt;}
.y96_c00170{bottom:210.595552pt;}
.y93_c00170{bottom:210.595941pt;}
.y94_c00170{bottom:210.595947pt;}
.y95_c00170{bottom:210.596043pt;}
.y8a_c00170{bottom:224.876800pt;}
.y8b_c00170{bottom:225.320384pt;}
.y8c_c00170{bottom:225.519088pt;}
.y8d_c00170{bottom:225.841760pt;}
.y8e_c00170{bottom:226.445936pt;}
.y8f_c00170{bottom:226.740368pt;}
.y90_c00170{bottom:227.341664pt;}
.y91_c00170{bottom:227.555152pt;}
.y81_c00170{bottom:239.759301pt;}
.y82_c00170{bottom:240.669861pt;}
.y83_c00170{bottom:241.042699pt;}
.y84_c00170{bottom:241.611589pt;}
.y85_c00170{bottom:241.991344pt;}
.y86_c00170{bottom:242.390912pt;}
.y87_c00170{bottom:242.609723pt;}
.y88_c00170{bottom:243.726453pt;}
.y89_c00170{bottom:244.025920pt;}
.y79_c00170{bottom:256.318928pt;}
.y7a_c00170{bottom:256.563115pt;}
.y7b_c00170{bottom:257.303104pt;}
.y7c_c00170{bottom:257.705259pt;}
.y7d_c00170{bottom:257.961435pt;}
.y7e_c00170{bottom:258.236336pt;}
.y7f_c00170{bottom:259.177648pt;}
.y80_c00170{bottom:259.614629pt;}
.y72_c00170{bottom:271.441333pt;}
.y73_c00170{bottom:272.552901pt;}
.y74_c00170{bottom:272.812213pt;}
.y75_c00170{bottom:273.146405pt;}
.y76_c00170{bottom:273.477445pt;}
.y77_c00170{bottom:273.765045pt;}
.y78_c00170{bottom:273.978805pt;}
.y6c_c00170{bottom:285.593631pt;}
.y6d_c00170{bottom:287.188743pt;}
.y6e_c00170{bottom:287.911471pt;}
.y6f_c00170{bottom:288.281363pt;}
.y70_c00170{bottom:288.715368pt;}
.y71_c00170{bottom:290.932551pt;}
.y64_c00170{bottom:300.236147pt;}
.y65_c00170{bottom:301.142567pt;}
.y66_c00170{bottom:301.414411pt;}
.y67_c00170{bottom:302.761413pt;}
.y68_c00170{bottom:303.595049pt;}
.y69_c00170{bottom:304.083035pt;}
.y6a_c00170{bottom:305.260067pt;}
.y6b_c00170{bottom:305.829753pt;}
.y5e_c00170{bottom:315.596467pt;}
.y5f_c00170{bottom:315.956985pt;}
.y60_c00170{bottom:316.929304pt;}
.y61_c00170{bottom:317.976533pt;}
.y62_c00170{bottom:318.271515pt;}
.y63_c00170{bottom:319.771476pt;}
.y53_c00170{bottom:330.719832pt;}
.y54_c00170{bottom:331.225637pt;}
.y55_c00170{bottom:331.724324pt;}
.y56_c00170{bottom:332.034252pt;}
.y57_c00170{bottom:332.636400pt;}
.y58_c00170{bottom:332.919145pt;}
.y59_c00170{bottom:333.366127pt;}
.y5a_c00170{bottom:334.319521pt;}
.y5b_c00170{bottom:334.652427pt;}
.y5c_c00170{bottom:334.953412pt;}
.y5d_c00170{bottom:335.615195pt;}
.y4d_c00170{bottom:346.082667pt;}
.y4e_c00170{bottom:346.448885pt;}
.y4f_c00170{bottom:347.165033pt;}
.y50_c00170{bottom:348.039084pt;}
.y51_c00170{bottom:348.733977pt;}
.y52_c00170{bottom:350.138989pt;}
.y46_c00170{bottom:360.702757pt;}
.y47_c00170{bottom:361.875768pt;}
.y48_c00170{bottom:362.759693pt;}
.y49_c00170{bottom:363.836452pt;}
.y4a_c00170{bottom:364.419715pt;}
.y4b_c00170{bottom:365.583133pt;}
.y4c_c00170{bottom:365.934831pt;}
.y3e_c00170{bottom:376.304077pt;}
.y3f_c00170{bottom:376.721776pt;}
.y40_c00170{bottom:377.168979pt;}
.y41_c00170{bottom:378.239268pt;}
.y42_c00170{bottom:378.666543pt;}
.y43_c00170{bottom:379.577009pt;}
.y44_c00170{bottom:380.163727pt;}
.y45_c00170{bottom:381.066999pt;}
.y37_c00170{bottom:391.185056pt;}
.y38_c00170{bottom:391.440249pt;}
.y39_c00170{bottom:392.455120pt;}
.y3a_c00170{bottom:394.080376pt;}
.y3b_c00170{bottom:394.340373pt;}
.y3c_c00170{bottom:395.306955pt;}
.y3d_c00170{bottom:396.109940pt;}
.y30_c00170{bottom:407.508507pt;}
.y31_c00170{bottom:408.280725pt;}
.y32_c00170{bottom:408.497555pt;}
.y33_c00170{bottom:409.990381pt;}
.y34_c00170{bottom:410.364829pt;}
.y35_c00170{bottom:410.787544pt;}
.y36_c00170{bottom:411.613577pt;}
.y29_c00170{bottom:422.630760pt;}
.y2a_c00170{bottom:423.201476pt;}
.y2b_c00170{bottom:424.606500pt;}
.y2c_c00170{bottom:424.837608pt;}
.y2d_c00170{bottom:425.291017pt;}
.y2e_c00170{bottom:426.600977pt;}
.y2f_c00170{bottom:427.715151pt;}
.y22_c00170{bottom:438.471676pt;}
.y23_c00170{bottom:439.331217pt;}
.y24_c00170{bottom:439.872273pt;}
.y25_c00170{bottom:440.779384pt;}
.y26_c00170{bottom:441.253659pt;}
.y27_c00170{bottom:442.441793pt;}
.y28_c00170{bottom:442.638100pt;}
.y1b_c00170{bottom:453.355545pt;}
.y1c_c00170{bottom:454.103732pt;}
.y1d_c00170{bottom:454.882968pt;}
.y1e_c00170{bottom:455.915165pt;}
.y1f_c00170{bottom:456.285712pt;}
.y20_c00170{bottom:457.349440pt;}
.y21_c00170{bottom:457.490500pt;}
.y14_c00170{bottom:467.282709pt;}
.y15_c00170{bottom:467.840304pt;}
.y16_c00170{bottom:468.942221pt;}
.y17_c00170{bottom:470.329336pt;}
.y18_c00170{bottom:472.137449pt;}
.y19_c00170{bottom:473.109297pt;}
.y1a_c00170{bottom:473.712728pt;}
.yc_c00170{bottom:483.841783pt;}
.yd_c00170{bottom:484.632285pt;}
.ye_c00170{bottom:485.107644pt;}
.yf_c00170{bottom:486.686420pt;}
.y10_c00170{bottom:487.090397pt;}
.y11_c00170{bottom:488.057867pt;}
.y12_c00170{bottom:488.443227pt;}
.y13_c00170{bottom:489.740287pt;}
.y2_c00170{bottom:500.164000pt;}
.y3_c00170{bottom:500.618100pt;}
.y4_c00170{bottom:500.946876pt;}
.y5_c00170{bottom:501.577676pt;}
.y6_c00170{bottom:501.933457pt;}
.y7_c00170{bottom:502.816552pt;}
.y8_c00170{bottom:503.055369pt;}
.y9_c00170{bottom:503.470507pt;}
.ya_c00170{bottom:504.153164pt;}
.yb_c00170{bottom:504.647367pt;}
.y1_c00170{bottom:514.436000pt;}
.he_c00170{height:52.270430pt;}
.h10_c00170{height:53.203830pt;}
.h8_c00170{height:53.209602pt;}
.ha_c00170{height:55.076605pt;}
.hd_c00170{height:56.937432pt;}
.h3_c00170{height:56.943609pt;}
.hf_c00170{height:57.870833pt;}
.h6_c00170{height:57.877111pt;}
.h12_c00170{height:58.804233pt;}
.h9_c00170{height:58.810612pt;}
.h15_c00170{height:59.737634pt;}
.hc_c00170{height:59.744114pt;}
.h13_c00170{height:60.671035pt;}
.hb_c00170{height:60.677616pt;}
.h14_c00170{height:61.604435pt;}
.h11_c00170{height:62.537836pt;}
.h5_c00170{height:62.544620pt;}
.h7_c00170{height:64.411623pt;}
.h4_c00170{height:70.012634pt;}
.h2_c00170{height:74.666667pt;}
.h0_c00170{height:553.866667pt;}
.h1_c00170{height:554.000000pt;}
.w1_c00170{width:340.666667pt;}
.w0_c00170{width:340.800000pt;}
.x0_c00170{left:0.000000pt;}
.x57_c00170{left:29.474325pt;}
.x2_c00170{left:30.698667pt;}
.x13_c00170{left:32.027665pt;}
.x28_c00170{left:33.819612pt;}
.x52_c00170{left:35.356485pt;}
.x5e_c00170{left:36.721285pt;}
.x67_c00170{left:38.502613pt;}
.x70_c00170{left:39.720907pt;}
.x7d_c00170{left:40.909925pt;}
.x2d_c00170{left:45.132881pt;}
.x4e_c00170{left:51.266667pt;}
.x14_c00170{left:52.669857pt;}
.x3_c00170{left:54.598667pt;}
.x6e_c00170{left:58.719259pt;}
.x24_c00170{left:61.442188pt;}
.x39_c00170{left:64.046667pt;}
.xc_c00170{left:65.547572pt;}
.x5f_c00170{left:66.960720pt;}
.x1a_c00170{left:69.748921pt;}
.x4_c00170{left:71.902667pt;}
.x5b_c00170{left:72.855147pt;}
.x71_c00170{left:73.806656pt;}
.x46_c00170{left:75.736728pt;}
.x31_c00170{left:77.032783pt;}
.x64_c00170{left:79.102480pt;}
.x1f_c00170{left:80.041212pt;}
.x68_c00170{left:82.230613pt;}
.x29_c00170{left:83.277341pt;}
.xd_c00170{left:86.214001pt;}
.x3e_c00170{left:87.322732pt;}
.x36_c00170{left:89.685148pt;}
.x2e_c00170{left:91.246247pt;}
.x15_c00170{left:93.466317pt;}
.x6f_c00170{left:96.209467pt;}
.x60_c00170{left:98.402581pt;}
.x3a_c00170{left:101.738667pt;}
.x3f_c00170{left:103.634732pt;}
.x5_c00170{left:105.102667pt;}
.x4a_c00170{left:106.583553pt;}
.x1b_c00170{left:108.725520pt;}
.x20_c00170{left:110.132461pt;}
.x53_c00170{left:111.036907pt;}
.x62_c00170{left:114.585067pt;}
.x5c_c00170{left:116.303147pt;}
.x76_c00170{left:118.324304pt;}
.x65_c00170{left:122.358555pt;}
.x6_c00170{left:123.828000pt;}
.x32_c00170{left:130.555769pt;}
.x25_c00170{left:131.670179pt;}
.x72_c00170{left:132.830027pt;}
.x77_c00170{left:134.165259pt;}
.x40_c00170{left:135.326732pt;}
.x4b_c00170{left:139.427012pt;}
.x54_c00170{left:141.993872pt;}
.x26_c00170{left:143.201951pt;}
.x16_c00170{left:144.850515pt;}
.x7e_c00170{left:145.989925pt;}
.x3b_c00170{left:147.741333pt;}
.x47_c00170{left:149.285856pt;}
.x1_c00170{left:150.720000pt;}
.x33_c00170{left:151.920697pt;}
.xe_c00170{left:154.846116pt;}
.x4c_c00170{left:156.227383pt;}
.x2a_c00170{left:157.915923pt;}
.x1c_c00170{left:160.313865pt;}
.x55_c00170{left:161.674965pt;}
.x7a_c00170{left:164.166816pt;}
.x27_c00170{left:165.872187pt;}
.x69_c00170{left:167.205280pt;}
.x58_c00170{left:168.915621pt;}
.x7_c00170{left:170.306667pt;}
.xf_c00170{left:172.387440pt;}
.x41_c00170{left:173.733399pt;}
.x44_c00170{left:175.005885pt;}
.x2b_c00170{left:176.640901pt;}
.x1d_c00170{left:178.833511pt;}
.x73_c00170{left:180.579920pt;}
.x8_c00170{left:182.876000pt;}
.x3c_c00170{left:184.314667pt;}
.x21_c00170{left:186.908597pt;}
.x6a_c00170{left:188.051947pt;}
.x5d_c00170{left:191.187147pt;}
.x4f_c00170{left:193.356000pt;}
.x7b_c00170{left:196.568821pt;}
.x2c_c00170{left:197.765829pt;}
.x74_c00170{left:199.244144pt;}
.x9_c00170{left:204.725333pt;}
.x59_c00170{left:207.556432pt;}
.x48_c00170{left:209.367769pt;}
.x37_c00170{left:210.800537pt;}
.x17_c00170{left:211.793664pt;}
.x10_c00170{left:214.461581pt;}
.x7c_c00170{left:215.770256pt;}
.x2f_c00170{left:220.844183pt;}
.x81_c00170{left:222.968229pt;}
.x42_c00170{left:223.912065pt;}
.x6b_c00170{left:225.761280pt;}
.x34_c00170{left:226.788612pt;}
.x78_c00170{left:228.732192pt;}
.x11_c00170{left:231.233648pt;}
.x66_c00170{left:233.478565pt;}
.x84_c00170{left:237.367243pt;}
.x1e_c00170{left:239.084371pt;}
.xa_c00170{left:240.654667pt;}
.x75_c00170{left:243.014005pt;}
.x50_c00170{left:244.909333pt;}
.x18_c00170{left:247.780192pt;}
.x82_c00170{left:248.890624pt;}
.x22_c00170{left:252.881839pt;}
.x45_c00170{left:253.951219pt;}
.x56_c00170{left:255.247179pt;}
.x30_c00170{left:257.350105pt;}
.x3d_c00170{left:258.262667pt;}
.x7f_c00170{left:261.749925pt;}
.x51_c00170{left:262.722667pt;}
.x23_c00170{left:263.775375pt;}
.xb_c00170{left:266.665333pt;}
.x19_c00170{left:270.132797pt;}
.x35_c00170{left:271.942417pt;}
.x79_c00170{left:275.774960pt;}
.x4d_c00170{left:276.739184pt;}
.x61_c00170{left:277.695072pt;}
.x80_c00170{left:280.436592pt;}
.x38_c00170{left:282.961801pt;}
.x83_c00170{left:284.173029pt;}
.x12_c00170{left:287.636033pt;}
.x49_c00170{left:288.804593pt;}
.x63_c00170{left:290.325621pt;}
.x43_c00170{left:292.105399pt;}
.x6c_c00170{left:293.425280pt;}
.x5a_c00170{left:296.124192pt;}
.x6d_c00170{left:299.014533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00171 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00171 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00171 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00171 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00171.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00171{transform:matrix(0.014953,0.000254,-0.004249,0.249964,0,0);-ms-transform:matrix(0.014953,0.000254,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.014953,0.000254,-0.004249,0.249964,0,0);}
.m4b_c00171{transform:matrix(0.033440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033440,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.051293,0.000872,-0.004249,0.249964,0,0);-ms-transform:matrix(0.051293,0.000872,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.051293,0.000872,-0.004249,0.249964,0,0);}
.m96_c00171{transform:matrix(0.054642,0.000929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.054642,0.000929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.054642,0.000929,-0.004249,0.249964,0,0);}
.mb_c00171{transform:matrix(0.101255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101255,0.000000,0.000000,0.250000,0,0);}
.m93_c00171{transform:matrix(0.112024,0.001904,-0.004249,0.249964,0,0);-ms-transform:matrix(0.112024,0.001904,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.112024,0.001904,-0.004249,0.249964,0,0);}
.m5a_c00171{transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00171{transform:matrix(0.145234,0.002469,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145234,0.002469,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145234,0.002469,-0.004249,0.249964,0,0);}
.m9b_c00171{transform:matrix(0.145634,0.002476,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145634,0.002476,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145634,0.002476,-0.004249,0.249964,0,0);}
.m88_c00171{transform:matrix(0.146589,0.002492,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146589,0.002492,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146589,0.002492,-0.004249,0.249964,0,0);}
.m11_c00171{transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);}
.m7e_c00171{transform:matrix(0.151968,0.002583,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151968,0.002583,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151968,0.002583,-0.004249,0.249964,0,0);}
.m9a_c00171{transform:matrix(0.152493,0.002592,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152493,0.002592,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152493,0.002592,-0.004249,0.249964,0,0);}
.m6b_c00171{transform:matrix(0.157547,0.002678,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157547,0.002678,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157547,0.002678,-0.004249,0.249964,0,0);}
.m67_c00171{transform:matrix(0.158677,0.002698,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158677,0.002698,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158677,0.002698,-0.004249,0.249964,0,0);}
.mb9_c00171{transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);}
.ma_c00171{transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.160482,0.002728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160482,0.002728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160482,0.002728,-0.004249,0.249964,0,0);}
.m62_c00171{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.m6a_c00171{transform:matrix(0.160767,0.002733,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160767,0.002733,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160767,0.002733,-0.004249,0.249964,0,0);}
.m3_c00171{transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161465,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.162730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162730,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.162910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162910,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.163851,0.002785,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163851,0.002785,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163851,0.002785,-0.004249,0.249964,0,0);}
.m58_c00171{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m37_c00171{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{transform:matrix(0.165646,0.002816,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165646,0.002816,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165646,0.002816,-0.004249,0.249964,0,0);}
.m46_c00171{transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.166566,0.002832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166566,0.002832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166566,0.002832,-0.004249,0.249964,0,0);}
.ma5_c00171{transform:matrix(0.166696,0.002834,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166696,0.002834,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166696,0.002834,-0.004249,0.249964,0,0);}
.m4_c00171{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);}
.m29_c00171{transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);}
.me9_c00171{transform:matrix(0.167933,0.004366,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167933,0.004366,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167933,0.004366,-0.006498,0.249916,0,0);}
.m39_c00171{transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);}
.mb6_c00171{transform:matrix(0.168646,0.002867,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168646,0.002867,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168646,0.002867,-0.004249,0.249964,0,0);}
.m72_c00171{transform:matrix(0.168846,0.002870,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168846,0.002870,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168846,0.002870,-0.004249,0.249964,0,0);}
.m68_c00171{transform:matrix(0.169790,0.002886,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169790,0.002886,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169790,0.002886,-0.004249,0.249964,0,0);}
.mc_c00171{transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.mbd_c00171{transform:matrix(0.171110,0.002909,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171110,0.002909,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171110,0.002909,-0.004249,0.249964,0,0);}
.m6e_c00171{transform:matrix(0.171490,0.002915,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171490,0.002915,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171490,0.002915,-0.004249,0.249964,0,0);}
.maf_c00171{transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172280,0.002929,-0.004249,0.249964,0,0);}
.m44_c00171{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.mb4_c00171{transform:matrix(0.174145,0.002960,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174145,0.002960,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174145,0.002960,-0.004249,0.249964,0,0);}
.m63_c00171{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.174295,0.002963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174295,0.002963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174295,0.002963,-0.004249,0.249964,0,0);}
.m3f_c00171{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.mac_c00171{transform:matrix(0.175030,0.002976,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175030,0.002976,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175030,0.002976,-0.004249,0.249964,0,0);}
.m1e_c00171{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00171{transform:matrix(0.175255,0.002979,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175255,0.002979,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175255,0.002979,-0.004249,0.249964,0,0);}
.ma7_c00171{transform:matrix(0.176310,0.002997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176310,0.002997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176310,0.002997,-0.004249,0.249964,0,0);}
.mdf_c00171{transform:matrix(0.176355,0.004585,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176355,0.004585,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176355,0.004585,-0.006498,0.249916,0,0);}
.m32_c00171{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.ma9_c00171{transform:matrix(0.178379,0.003032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178379,0.003032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178379,0.003032,-0.004249,0.249964,0,0);}
.m25_c00171{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m6f_c00171{transform:matrix(0.178604,0.003036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178604,0.003036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178604,0.003036,-0.004249,0.249964,0,0);}
.mb5_c00171{transform:matrix(0.178634,0.003037,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178634,0.003037,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178634,0.003037,-0.004249,0.249964,0,0);}
.m8c_c00171{transform:matrix(0.179109,0.003045,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179109,0.003045,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179109,0.003045,-0.004249,0.249964,0,0);}
.m21_c00171{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.m4f_c00171{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.mee_c00171{transform:matrix(0.180884,0.004703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180884,0.004703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180884,0.004703,-0.006498,0.249916,0,0);}
.m54_c00171{transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{transform:matrix(0.182744,0.003107,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182744,0.003107,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182744,0.003107,-0.004249,0.249964,0,0);}
.m10_c00171{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);}
.md1_c00171{transform:matrix(0.184003,0.003128,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184003,0.003128,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184003,0.003128,-0.004249,0.249964,0,0);}
.m60_c00171{transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.184908,0.003143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184908,0.003143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184908,0.003143,-0.004249,0.249964,0,0);}
.m43_c00171{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.md8_c00171{transform:matrix(0.185542,0.004824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185542,0.004824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185542,0.004824,-0.006498,0.249916,0,0);}
.m73_c00171{transform:matrix(0.185888,0.003160,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185888,0.003160,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185888,0.003160,-0.004249,0.249964,0,0);}
.m1c_c00171{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.186123,0.003164,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186123,0.003164,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186123,0.003164,-0.004249,0.249964,0,0);}
.m7a_c00171{transform:matrix(0.186273,0.003167,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186273,0.003167,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186273,0.003167,-0.004249,0.249964,0,0);}
.m5_c00171{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m7d_c00171{transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);}
.m26_c00171{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{transform:matrix(0.186848,0.003176,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186848,0.003176,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186848,0.003176,-0.004249,0.249964,0,0);}
.m87_c00171{transform:matrix(0.187098,0.003181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187098,0.003181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187098,0.003181,-0.004249,0.249964,0,0);}
.mcb_c00171{transform:matrix(0.187383,0.003186,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187383,0.003186,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187383,0.003186,-0.004249,0.249964,0,0);}
.ma3_c00171{transform:matrix(0.188713,0.003208,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188713,0.003208,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188713,0.003208,-0.004249,0.249964,0,0);}
.meb_c00171{transform:matrix(0.190191,0.004945,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190191,0.004945,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190191,0.004945,-0.006498,0.249916,0,0);}
.m17_c00171{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.mde_c00171{transform:matrix(0.190676,0.004958,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190676,0.004958,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190676,0.004958,-0.006498,0.249916,0,0);}
.mb1_c00171{transform:matrix(0.190732,0.003242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190732,0.003242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190732,0.003242,-0.004249,0.249964,0,0);}
.mbe_c00171{transform:matrix(0.191047,0.003248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191047,0.003248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191047,0.003248,-0.004249,0.249964,0,0);}
.m56_c00171{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{transform:matrix(0.191552,0.003256,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191552,0.003256,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191552,0.003256,-0.004249,0.249964,0,0);}
.ma8_c00171{transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);}
.m78_c00171{transform:matrix(0.191757,0.003260,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191757,0.003260,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191757,0.003260,-0.004249,0.249964,0,0);}
.m53_c00171{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{transform:matrix(0.192507,0.003273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192507,0.003273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192507,0.003273,-0.004249,0.249964,0,0);}
.ma4_c00171{transform:matrix(0.192727,0.003276,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192727,0.003276,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192727,0.003276,-0.004249,0.249964,0,0);}
.m28_c00171{transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);}
.m47_c00171{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mc8_c00171{transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);}
.m48_c00171{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194387,0.003305,-0.004249,0.249964,0,0);}
.m91_c00171{transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);}
.m7f_c00171{transform:matrix(0.194812,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194812,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194812,0.003312,-0.004249,0.249964,0,0);}
.md0_c00171{transform:matrix(0.194907,0.003313,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194907,0.003313,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194907,0.003313,-0.004249,0.249964,0,0);}
.m84_c00171{transform:matrix(0.195087,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195087,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195087,0.003316,-0.004249,0.249964,0,0);}
.m4d_c00171{transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.195592,0.003325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195592,0.003325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195592,0.003325,-0.004249,0.249964,0,0);}
.m9d_c00171{transform:matrix(0.196282,0.003337,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196282,0.003337,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196282,0.003337,-0.004249,0.249964,0,0);}
.mb3_c00171{transform:matrix(0.196657,0.003343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196657,0.003343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196657,0.003343,-0.004249,0.249964,0,0);}
.mbb_c00171{transform:matrix(0.197022,0.003349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197022,0.003349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197022,0.003349,-0.004249,0.249964,0,0);}
.m5b_c00171{transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.197197,0.003352,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197197,0.003352,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197197,0.003352,-0.004249,0.249964,0,0);}
.m42_c00171{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.mad_c00171{transform:matrix(0.197601,0.003359,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197601,0.003359,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197601,0.003359,-0.004249,0.249964,0,0);}
.m74_c00171{transform:matrix(0.197666,0.003360,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197666,0.003360,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197666,0.003360,-0.004249,0.249964,0,0);}
.me0_c00171{transform:matrix(0.198098,0.005151,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198098,0.005151,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198098,0.005151,-0.006498,0.249916,0,0);}
.m9e_c00171{transform:matrix(0.198441,0.003374,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198441,0.003374,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198441,0.003374,-0.004249,0.249964,0,0);}
.m57_c00171{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.mb7_c00171{transform:matrix(0.198661,0.003377,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198661,0.003377,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198661,0.003377,-0.004249,0.249964,0,0);}
.m20_c00171{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.mef_c00171{transform:matrix(0.199738,0.005193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199738,0.005193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199738,0.005193,-0.006498,0.249916,0,0);}
.m3a_c00171{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{transform:matrix(0.200411,0.003407,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200411,0.003407,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200411,0.003407,-0.004249,0.249964,0,0);}
.mab_c00171{transform:matrix(0.200481,0.003408,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200481,0.003408,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200481,0.003408,-0.004249,0.249964,0,0);}
.m92_c00171{transform:matrix(0.201016,0.003417,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201016,0.003417,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201016,0.003417,-0.004249,0.249964,0,0);}
.mc5_c00171{transform:matrix(0.201546,0.003426,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201546,0.003426,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201546,0.003426,-0.004249,0.249964,0,0);}
.med_c00171{transform:matrix(0.201577,0.005241,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201577,0.005241,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201577,0.005241,-0.006498,0.249916,0,0);}
.m0_c00171{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{transform:matrix(0.201861,0.003432,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201861,0.003432,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201861,0.003432,-0.004249,0.249964,0,0);}
.mba_c00171{transform:matrix(0.201956,0.003433,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201956,0.003433,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201956,0.003433,-0.004249,0.249964,0,0);}
.m24_c00171{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.202446,0.003442,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202446,0.003442,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202446,0.003442,-0.004249,0.249964,0,0);}
.m3e_c00171{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.mcf_c00171{transform:matrix(0.204195,0.003471,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204195,0.003471,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204195,0.003471,-0.004249,0.249964,0,0);}
.m4e_c00171{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{transform:matrix(0.204655,0.003479,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204655,0.003479,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204655,0.003479,-0.004249,0.249964,0,0);}
.m45_c00171{transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00171{transform:matrix(0.205485,0.003493,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205485,0.003493,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205485,0.003493,-0.004249,0.249964,0,0);}
.m76_c00171{transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206260,0.003506,-0.004249,0.249964,0,0);}
.m40_c00171{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.mca_c00171{transform:matrix(0.206915,0.003518,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206915,0.003518,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206915,0.003518,-0.004249,0.249964,0,0);}
.mc2_c00171{transform:matrix(0.207195,0.003522,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207195,0.003522,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207195,0.003522,-0.004249,0.249964,0,0);}
.m35_c00171{transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207245,0.000000,0.000000,0.250000,0,0);}
.m38_c00171{transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m5d_c00171{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.mcd_c00171{transform:matrix(0.209250,0.003557,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209250,0.003557,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209250,0.003557,-0.004249,0.249964,0,0);}
.m1d_c00171{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.211015,0.003587,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211015,0.003587,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211015,0.003587,-0.004249,0.249964,0,0);}
.mf_c00171{transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);}
.m1f_c00171{transform:matrix(0.211670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211670,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);}
.m2d_c00171{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212030,0.000000,0.000000,0.250000,0,0);}
.mdb_c00171{transform:matrix(0.212113,0.005515,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212113,0.005515,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212113,0.005515,-0.006498,0.249916,0,0);}
.m5e_c00171{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00171{transform:matrix(0.212504,0.003613,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212504,0.003613,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212504,0.003613,-0.004249,0.249964,0,0);}
.m33_c00171{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.mc3_c00171{transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);}
.md6_c00171{transform:matrix(0.213893,0.005561,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213893,0.005561,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213893,0.005561,-0.006498,0.249916,0,0);}
.mdc_c00171{transform:matrix(0.214043,0.005565,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214043,0.005565,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214043,0.005565,-0.006498,0.249916,0,0);}
.m1b_c00171{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.mce_c00171{transform:matrix(0.214799,0.003652,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214799,0.003652,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214799,0.003652,-0.004249,0.249964,0,0);}
.mec_c00171{transform:matrix(0.214897,0.005587,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214897,0.005587,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214897,0.005587,-0.006498,0.249916,0,0);}
.mb2_c00171{transform:matrix(0.215324,0.003661,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215324,0.003661,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215324,0.003661,-0.004249,0.249964,0,0);}
.mea_c00171{transform:matrix(0.215607,0.005606,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215607,0.005606,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215607,0.005606,-0.006498,0.249916,0,0);}
.m6c_c00171{transform:matrix(0.215659,0.003666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215659,0.003666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215659,0.003666,-0.004249,0.249964,0,0);}
.m13_c00171{transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);}
.m41_c00171{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.m98_c00171{transform:matrix(0.217084,0.003690,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217084,0.003690,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217084,0.003690,-0.004249,0.249964,0,0);}
.m50_c00171{transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{transform:matrix(0.218883,0.003721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218883,0.003721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218883,0.003721,-0.004249,0.249964,0,0);}
.m2f_c00171{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.md3_c00171{transform:matrix(0.219076,0.005696,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219076,0.005696,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219076,0.005696,-0.006498,0.249916,0,0);}
.m8d_c00171{transform:matrix(0.219118,0.003725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219118,0.003725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219118,0.003725,-0.004249,0.249964,0,0);}
.mb0_c00171{transform:matrix(0.219698,0.003735,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219698,0.003735,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219698,0.003735,-0.004249,0.249964,0,0);}
.mda_c00171{transform:matrix(0.220885,0.005743,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220885,0.005743,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220885,0.005743,-0.006498,0.249916,0,0);}
.m8f_c00171{transform:matrix(0.221438,0.003764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221438,0.003764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221438,0.003764,-0.004249,0.249964,0,0);}
.mcc_c00171{transform:matrix(0.222138,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222138,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222138,0.003776,-0.004249,0.249964,0,0);}
.maa_c00171{transform:matrix(0.222248,0.003778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222248,0.003778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222248,0.003778,-0.004249,0.249964,0,0);}
.md7_c00171{transform:matrix(0.223414,0.005809,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223414,0.005809,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223414,0.005809,-0.006498,0.249916,0,0);}
.md2_c00171{transform:matrix(0.225152,0.003828,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225152,0.003828,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225152,0.003828,-0.004249,0.249964,0,0);}
.me2_c00171{transform:matrix(0.226518,0.005889,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226518,0.005889,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226518,0.005889,-0.006498,0.249916,0,0);}
.mdd_c00171{transform:matrix(0.227903,0.005925,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227903,0.005925,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227903,0.005925,-0.006498,0.249916,0,0);}
.m8a_c00171{transform:matrix(0.228242,0.003880,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228242,0.003880,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228242,0.003880,-0.004249,0.249964,0,0);}
.mc9_c00171{transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);}
.m64_c00171{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.229712,0.003905,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229712,0.003905,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229712,0.003905,-0.004249,0.249964,0,0);}
.md5_c00171{transform:matrix(0.229917,0.005978,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229917,0.005978,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229917,0.005978,-0.006498,0.249916,0,0);}
.me4_c00171{transform:matrix(0.231897,0.006029,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231897,0.006029,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231897,0.006029,-0.006498,0.249916,0,0);}
.md9_c00171{transform:matrix(0.232401,0.006042,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232401,0.006042,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232401,0.006042,-0.006498,0.249916,0,0);}
.md4_c00171{transform:matrix(0.234246,0.006090,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234246,0.006090,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234246,0.006090,-0.006498,0.249916,0,0);}
.m1_c00171{transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);}
.mf0_c00171{transform:matrix(0.236240,0.006142,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236240,0.006142,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236240,0.006142,-0.006498,0.249916,0,0);}
.me7_c00171{transform:matrix(0.244008,0.006344,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244008,0.006344,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244008,0.006344,-0.006498,0.249916,0,0);}
.mc6_c00171{transform:matrix(0.246999,0.004199,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246999,0.004199,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246999,0.004199,-0.004249,0.249964,0,0);}
.m7b_c00171{transform:matrix(0.248249,0.004220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248249,0.004220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248249,0.004220,-0.004249,0.249964,0,0);}
.me5_c00171{transform:matrix(0.249086,0.006476,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249086,0.006476,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249086,0.006476,-0.006498,0.249916,0,0);}
.mb8_c00171{transform:matrix(0.252883,0.004299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252883,0.004299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252883,0.004299,-0.004249,0.249964,0,0);}
.mc7_c00171{transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);}
.mbf_c00171{transform:matrix(0.261922,0.004453,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261922,0.004453,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261922,0.004453,-0.004249,0.249964,0,0);}
.m51_c00171{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.me6_c00171{transform:matrix(0.265945,0.006915,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265945,0.006915,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265945,0.006915,-0.006498,0.249916,0,0);}
.mc1_c00171{transform:matrix(0.269066,0.004574,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269066,0.004574,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269066,0.004574,-0.004249,0.249964,0,0);}
.me8_c00171{transform:matrix(0.270264,0.007027,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270264,0.007027,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270264,0.007027,-0.006498,0.249916,0,0);}
.m89_c00171{transform:matrix(0.272736,0.004637,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272736,0.004637,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272736,0.004637,-0.004249,0.249964,0,0);}
.mc0_c00171{transform:matrix(0.274270,0.004663,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274270,0.004663,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274270,0.004663,-0.004249,0.249964,0,0);}
.mc4_c00171{transform:matrix(0.278295,0.004731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278295,0.004731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278295,0.004731,-0.004249,0.249964,0,0);}
.me1_c00171{transform:matrix(0.280965,0.007305,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280965,0.007305,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280965,0.007305,-0.006498,0.249916,0,0);}
.me3_c00171{transform:matrix(0.293781,0.007638,-0.006498,0.249916,0,0);-ms-transform:matrix(0.293781,0.007638,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.293781,0.007638,-0.006498,0.249916,0,0);}
.m2_c00171{transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336150,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:0.000000px;}
.fc0_c00171{color:transparent;}
.fs15_c00171{font-size:46.215613px;}
.fs12_c00171{font-size:52.507586px;}
.fs9_c00171{font-size:53.550000px;}
.fs13_c00171{font-size:57.769516px;}
.fse_c00171{font-size:58.808496px;}
.fs14_c00171{font-size:58.819871px;}
.fs7_c00171{font-size:60.900000px;}
.fs11_c00171{font-size:61.958951px;}
.fs6_c00171{font-size:63.000000px;}
.fs10_c00171{font-size:63.009103px;}
.fs16_c00171{font-size:63.021290px;}
.fs3_c00171{font-size:64.050000px;}
.fsd_c00171{font-size:64.059255px;}
.fs8_c00171{font-size:65.100000px;}
.fsc_c00171{font-size:65.109406px;}
.fs1_c00171{font-size:66.150000px;}
.fsb_c00171{font-size:66.159558px;}
.fs2_c00171{font-size:67.200000px;}
.fsf_c00171{font-size:67.209710px;}
.fs4_c00171{font-size:68.250000px;}
.fs5_c00171{font-size:69.300000px;}
.fsa_c00171{font-size:71.410317px;}
.fs0_c00171{font-size:123.900000px;}
.y0_c00171{bottom:0.000000px;}
.yf2_c00171{bottom:24.169905px;}
.yf1_c00171{bottom:24.965427px;}
.yf0_c00171{bottom:25.576158px;}
.yef_c00171{bottom:26.408217px;}
.yee_c00171{bottom:27.150387px;}
.yed_c00171{bottom:27.857952px;}
.yec_c00171{bottom:28.845834px;}
.yeb_c00171{bottom:29.149482px;}
.yea_c00171{bottom:42.494316px;}
.ye9_c00171{bottom:42.804867px;}
.ye8_c00171{bottom:43.777890px;}
.ye7_c00171{bottom:44.109282px;}
.ye6_c00171{bottom:44.478297px;}
.ye5_c00171{bottom:45.620763px;}
.ye4_c00171{bottom:46.090920px;}
.ye3_c00171{bottom:46.431894px;}
.ye2_c00171{bottom:59.187507px;}
.ye1_c00171{bottom:59.748402px;}
.ye0_c00171{bottom:60.554061px;}
.ydf_c00171{bottom:61.472769px;}
.yde_c00171{bottom:63.565149px;}
.ydd_c00171{bottom:64.064994px;}
.ydc_c00171{bottom:64.530219px;}
.ydb_c00171{bottom:76.376046px;}
.yda_c00171{bottom:76.860075px;}
.yd9_c00171{bottom:78.342426px;}
.yd8_c00171{bottom:79.417227px;}
.yd7_c00171{bottom:80.546706px;}
.yd6_c00171{bottom:80.925123px;}
.yd5_c00171{bottom:81.816000px;}
.yd4_c00171{bottom:92.927914px;}
.yd3_c00171{bottom:93.482085px;}
.yd2_c00171{bottom:94.045737px;}
.yd1_c00171{bottom:95.080203px;}
.yd0_c00171{bottom:95.580069px;}
.ycf_c00171{bottom:97.053909px;}
.yce_c00171{bottom:97.734397px;}
.ycd_c00171{bottom:98.139547px;}
.ycc_c00171{bottom:99.065817px;}
.ycb_c00171{bottom:110.082054px;}
.yca_c00171{bottom:110.701960px;}
.yc9_c00171{bottom:111.305556px;}
.yc8_c00171{bottom:112.277536px;}
.yc7_c00171{bottom:112.744153px;}
.yc6_c00171{bottom:113.031969px;}
.yc5_c00171{bottom:114.111688px;}
.yc4_c00171{bottom:114.441867px;}
.yc3_c00171{bottom:114.684366px;}
.yc2_c00171{bottom:114.935709px;}
.yc1_c00171{bottom:115.537468px;}
.yc0_c00171{bottom:128.055646px;}
.ybf_c00171{bottom:128.383320px;}
.ybe_c00171{bottom:128.680734px;}
.ybd_c00171{bottom:130.888413px;}
.ybc_c00171{bottom:132.289375px;}
.ybb_c00171{bottom:132.641443px;}
.yba_c00171{bottom:133.088956px;}
.yb9_c00171{bottom:145.405900px;}
.yb8_c00171{bottom:145.764243px;}
.yb7_c00171{bottom:146.612220px;}
.yb6_c00171{bottom:146.958786px;}
.yb5_c00171{bottom:147.919908px;}
.yb4_c00171{bottom:148.145964px;}
.yb3_c00171{bottom:149.189772px;}
.yb2_c00171{bottom:150.322152px;}
.yb1_c00171{bottom:150.642466px;}
.yb0_c00171{bottom:163.531933px;}
.yaf_c00171{bottom:164.925523px;}
.yae_c00171{bottom:165.459465px;}
.yad_c00171{bottom:165.975600px;}
.yac_c00171{bottom:166.350829px;}
.yab_c00171{bottom:167.982309px;}
.yaa_c00171{bottom:169.127767px;}
.ya9_c00171{bottom:169.545745px;}
.ya8_c00171{bottom:179.461639px;}
.ya7_c00171{bottom:179.992188px;}
.ya6_c00171{bottom:180.500697px;}
.ya5_c00171{bottom:181.925895px;}
.ya4_c00171{bottom:183.506457px;}
.ya3_c00171{bottom:183.909057px;}
.ya2_c00171{bottom:185.374789px;}
.ya1_c00171{bottom:186.286179px;}
.ya0_c00171{bottom:196.142211px;}
.y9f_c00171{bottom:197.031922px;}
.y9e_c00171{bottom:198.963510px;}
.y9d_c00171{bottom:199.534248px;}
.y9c_c00171{bottom:200.150317px;}
.y9b_c00171{bottom:201.958417px;}
.y9a_c00171{bottom:202.667798px;}
.y99_c00171{bottom:203.737687px;}
.y98_c00171{bottom:204.378206px;}
.y97_c00171{bottom:216.044242px;}
.y96_c00171{bottom:218.075751px;}
.y95_c00171{bottom:219.753983px;}
.y94_c00171{bottom:221.118105px;}
.y93_c00171{bottom:232.034102px;}
.y92_c00171{bottom:233.135809px;}
.y91_c00171{bottom:233.669388px;}
.y90_c00171{bottom:234.106917px;}
.y8f_c00171{bottom:235.176139px;}
.y8e_c00171{bottom:235.905030px;}
.y8d_c00171{bottom:236.700927px;}
.y8c_c00171{bottom:238.423041px;}
.y8b_c00171{bottom:238.973997px;}
.y8a_c00171{bottom:249.649157px;}
.y89_c00171{bottom:250.106087px;}
.y88_c00171{bottom:251.089614px;}
.y87_c00171{bottom:252.701009px;}
.y86_c00171{bottom:253.551312px;}
.y85_c00171{bottom:255.956696px;}
.y84_c00171{bottom:266.704991px;}
.y83_c00171{bottom:267.192552px;}
.y82_c00171{bottom:268.507881px;}
.y81_c00171{bottom:268.983441px;}
.y80_c00171{bottom:269.797218px;}
.y7f_c00171{bottom:270.245532px;}
.y7e_c00171{bottom:271.926069px;}
.y7d_c00171{bottom:272.335059px;}
.y7c_c00171{bottom:272.697666px;}
.y75_c00171{bottom:284.356223px;}
.y79_c00171{bottom:284.356280px;}
.y7a_c00171{bottom:284.356403px;}
.y7b_c00171{bottom:284.356698px;}
.y76_c00171{bottom:284.356744px;}
.y78_c00171{bottom:284.356829px;}
.y77_c00171{bottom:284.356893px;}
.y74_c00171{bottom:301.708438px;}
.y73_c00171{bottom:302.534479px;}
.y72_c00171{bottom:303.868497px;}
.y71_c00171{bottom:304.250263px;}
.y70_c00171{bottom:305.322150px;}
.y6f_c00171{bottom:305.661473px;}
.y6e_c00171{bottom:305.917768px;}
.y6d_c00171{bottom:306.450374px;}
.y6c_c00171{bottom:318.452436px;}
.y6b_c00171{bottom:318.755478px;}
.y6a_c00171{bottom:319.903055px;}
.y69_c00171{bottom:320.591759px;}
.y68_c00171{bottom:321.099923px;}
.y67_c00171{bottom:321.996400px;}
.y66_c00171{bottom:322.653000px;}
.y65_c00171{bottom:340.201500px;}
.y64_c00171{bottom:353.025000px;}
.y63_c00171{bottom:353.424000px;}
.y62_c00171{bottom:354.462000px;}
.y61_c00171{bottom:355.507500px;}
.y60_c00171{bottom:355.912500px;}
.y5f_c00171{bottom:356.232000px;}
.y5e_c00171{bottom:357.442500px;}
.y5d_c00171{bottom:358.032000px;}
.y5c_c00171{bottom:370.539000px;}
.y5b_c00171{bottom:370.923000px;}
.y5a_c00171{bottom:372.475500px;}
.y59_c00171{bottom:373.039500px;}
.y58_c00171{bottom:374.031000px;}
.y57_c00171{bottom:375.610500px;}
.y56_c00171{bottom:376.119000px;}
.y55_c00171{bottom:388.710000px;}
.y54_c00171{bottom:390.142500px;}
.y53_c00171{bottom:390.451500px;}
.y52_c00171{bottom:391.390500px;}
.y51_c00171{bottom:392.761500px;}
.y50_c00171{bottom:393.162000px;}
.y4f_c00171{bottom:393.769500px;}
.y4e_c00171{bottom:394.477500px;}
.y4d_c00171{bottom:405.295500px;}
.y4c_c00171{bottom:405.405000px;}
.y4b_c00171{bottom:407.323500px;}
.y4a_c00171{bottom:407.821500px;}
.y49_c00171{bottom:409.048500px;}
.y48_c00171{bottom:410.166000px;}
.y47_c00171{bottom:411.220500px;}
.y46_c00171{bottom:422.095500px;}
.y45_c00171{bottom:422.617500px;}
.y44_c00171{bottom:423.516000px;}
.y43_c00171{bottom:425.008500px;}
.y42_c00171{bottom:426.114000px;}
.y41_c00171{bottom:427.396500px;}
.y40_c00171{bottom:427.801500px;}
.y3f_c00171{bottom:428.232000px;}
.y3e_c00171{bottom:440.029500px;}
.y3d_c00171{bottom:440.347500px;}
.y3c_c00171{bottom:440.752500px;}
.y3b_c00171{bottom:441.367500px;}
.y3a_c00171{bottom:441.808500px;}
.y39_c00171{bottom:442.849500px;}
.y38_c00171{bottom:443.167500px;}
.y37_c00171{bottom:443.617500px;}
.y36_c00171{bottom:444.535500px;}
.y35_c00171{bottom:444.967500px;}
.y34_c00171{bottom:457.056000px;}
.y33_c00171{bottom:457.392000px;}
.y32_c00171{bottom:458.106000px;}
.y31_c00171{bottom:459.019500px;}
.y30_c00171{bottom:460.356000px;}
.y2f_c00171{bottom:460.680000px;}
.y2e_c00171{bottom:461.707500px;}
.y2d_c00171{bottom:474.220500px;}
.y2c_c00171{bottom:474.691500px;}
.y2b_c00171{bottom:475.362000px;}
.y2a_c00171{bottom:477.141000px;}
.y29_c00171{bottom:477.912000px;}
.y28_c00171{bottom:479.233500px;}
.y27_c00171{bottom:480.339000px;}
.y26_c00171{bottom:491.173500px;}
.y25_c00171{bottom:491.473500px;}
.y24_c00171{bottom:492.790500px;}
.y23_c00171{bottom:493.290000px;}
.y22_c00171{bottom:494.280000px;}
.y21_c00171{bottom:495.493500px;}
.y20_c00171{bottom:497.077500px;}
.y1f_c00171{bottom:508.171500px;}
.y1e_c00171{bottom:508.381500px;}
.y1d_c00171{bottom:509.817000px;}
.y1c_c00171{bottom:510.087000px;}
.y1b_c00171{bottom:511.206000px;}
.y1a_c00171{bottom:512.466000px;}
.y19_c00171{bottom:525.793500px;}
.y18_c00171{bottom:526.485000px;}
.y17_c00171{bottom:526.737000px;}
.y16_c00171{bottom:527.001000px;}
.y15_c00171{bottom:528.097500px;}
.y14_c00171{bottom:528.936000px;}
.y13_c00171{bottom:542.859000px;}
.y12_c00171{bottom:543.135000px;}
.y11_c00171{bottom:543.586500px;}
.y10_c00171{bottom:544.219500px;}
.yf_c00171{bottom:544.468500px;}
.ye_c00171{bottom:544.962000px;}
.yd_c00171{bottom:545.193000px;}
.yc_c00171{bottom:545.361000px;}
.yb_c00171{bottom:545.943000px;}
.ya_c00171{bottom:560.587500px;}
.y9_c00171{bottom:560.820000px;}
.y8_c00171{bottom:560.989500px;}
.y7_c00171{bottom:561.556500px;}
.y6_c00171{bottom:561.928500px;}
.y5_c00171{bottom:562.125000px;}
.y4_c00171{bottom:562.641000px;}
.y3_c00171{bottom:562.833000px;}
.y2_c00171{bottom:563.221500px;}
.y1_c00171{bottom:575.113500px;}
.h17_c00171{height:46.215613px;}
.h14_c00171{height:52.507586px;}
.hb_c00171{height:53.550000px;}
.h15_c00171{height:57.769516px;}
.h10_c00171{height:58.808496px;}
.h16_c00171{height:58.819871px;}
.h9_c00171{height:60.900000px;}
.h13_c00171{height:61.958951px;}
.h8_c00171{height:63.000000px;}
.h12_c00171{height:63.009103px;}
.h18_c00171{height:63.021290px;}
.h5_c00171{height:64.050000px;}
.hf_c00171{height:64.059255px;}
.ha_c00171{height:65.100000px;}
.he_c00171{height:65.109406px;}
.h3_c00171{height:66.150000px;}
.hd_c00171{height:66.159558px;}
.h4_c00171{height:67.200000px;}
.h11_c00171{height:67.209710px;}
.h6_c00171{height:68.250000px;}
.h7_c00171{height:69.300000px;}
.hc_c00171{height:71.410317px;}
.h2_c00171{height:123.900000px;}
.h0_c00171{height:623.100000px;}
.h1_c00171{height:623.250000px;}
.w1_c00171{width:383.250000px;}
.w0_c00171{width:383.400000px;}
.x0_c00171{left:0.000000px;}
.x68_c00171{left:30.523281px;}
.x81_c00171{left:44.560062px;}
.x6f_c00171{left:45.925145px;}
.x59_c00171{left:46.928460px;}
.x22_c00171{left:48.885000px;}
.x31_c00171{left:49.927500px;}
.x17_c00171{left:51.369000px;}
.x2_c00171{left:52.791000px;}
.x82_c00171{left:60.510948px;}
.x6c_c00171{left:62.211230px;}
.x51_c00171{left:65.614833px;}
.x7c_c00171{left:67.520763px;}
.x32_c00171{left:68.616000px;}
.x5a_c00171{left:69.893732px;}
.x2c_c00171{left:73.272000px;}
.x44_c00171{left:74.299500px;}
.x49_c00171{left:76.735287px;}
.x40_c00171{left:80.745000px;}
.x39_c00171{left:83.824500px;}
.x52_c00171{left:85.083507px;}
.x33_c00171{left:86.206500px;}
.x70_c00171{left:88.016717px;}
.x4a_c00171{left:90.222828px;}
.x3_c00171{left:91.656000px;}
.x69_c00171{left:93.099290px;}
.x23_c00171{left:96.931500px;}
.x7f_c00171{left:99.206442px;}
.x35_c00171{left:100.707000px;}
.x79_c00171{left:102.310500px;}
.xb_c00171{left:106.011000px;}
.x4b_c00171{left:108.064716px;}
.x60_c00171{left:109.252940px;}
.x4_c00171{left:110.868000px;}
.x45_c00171{left:112.923000px;}
.x3a_c00171{left:114.225000px;}
.x13_c00171{left:116.464500px;}
.x6d_c00171{left:118.848348px;}
.xc_c00171{left:121.345500px;}
.x28_c00171{left:124.246500px;}
.x1c_c00171{left:125.913000px;}
.x5e_c00171{left:129.244097px;}
.x61_c00171{left:132.887712px;}
.x3b_c00171{left:134.224500px;}
.x18_c00171{left:135.340500px;}
.x77_c00171{left:136.606425px;}
.xd_c00171{left:142.402500px;}
.x2d_c00171{left:145.275000px;}
.x66_c00171{left:146.341349px;}
.x1_c00171{left:150.390000px;}
.x24_c00171{left:154.417500px;}
.x55_c00171{left:158.013297px;}
.x41_c00171{left:161.289000px;}
.x5_c00171{left:162.441000px;}
.x4c_c00171{left:164.497304px;}
.x46_c00171{left:165.657000px;}
.x6e_c00171{left:171.069696px;}
.x6a_c00171{left:173.365376px;}
.x5b_c00171{left:174.764237px;}
.x4e_c00171{left:178.218177px;}
.x6_c00171{left:182.127000px;}
.x1d_c00171{left:183.724500px;}
.x72_c00171{left:185.578731px;}
.xe_c00171{left:187.234500px;}
.x83_c00171{left:188.788770px;}
.x34_c00171{left:190.057500px;}
.x62_c00171{left:193.174401px;}
.x47_c00171{left:195.549000px;}
.x56_c00171{left:196.645508px;}
.x29_c00171{left:198.507000px;}
.x14_c00171{left:200.775000px;}
.x3c_c00171{left:202.798500px;}
.x5c_c00171{left:205.107116px;}
.x73_c00171{left:208.878533px;}
.xf_c00171{left:209.932500px;}
.x36_c00171{left:212.332500px;}
.x63_c00171{left:213.703362px;}
.x3d_c00171{left:215.434500px;}
.x2e_c00171{left:216.870000px;}
.x7_c00171{left:219.381000px;}
.x15_c00171{left:221.025000px;}
.x80_c00171{left:222.102081px;}
.x53_c00171{left:225.257996px;}
.x78_c00171{left:226.316801px;}
.x19_c00171{left:227.965500px;}
.x67_c00171{left:229.017531px;}
.x1e_c00171{left:230.886000px;}
.x64_c00171{left:232.713155px;}
.x7d_c00171{left:234.712986px;}
.x37_c00171{left:236.037000px;}
.x42_c00171{left:237.609000px;}
.x16_c00171{left:240.394500px;}
.x7a_c00171{left:244.104000px;}
.x54_c00171{left:247.936466px;}
.x2a_c00171{left:249.274500px;}
.x1f_c00171{left:254.641500px;}
.x74_c00171{left:257.492559px;}
.x4f_c00171{left:261.120121px;}
.x7b_c00171{left:262.720500px;}
.x25_c00171{left:265.258500px;}
.x10_c00171{left:267.417000px;}
.x57_c00171{left:269.897786px;}
.x6b_c00171{left:271.126590px;}
.x2f_c00171{left:272.479500px;}
.x50_c00171{left:273.812294px;}
.x8_c00171{left:276.085500px;}
.x71_c00171{left:277.959765px;}
.x3e_c00171{left:286.024500px;}
.x75_c00171{left:287.702529px;}
.x2b_c00171{left:288.961500px;}
.x5d_c00171{left:290.086992px;}
.x9_c00171{left:293.094000px;}
.x26_c00171{left:294.415500px;}
.x65_c00171{left:297.086426px;}
.x4d_c00171{left:298.217739px;}
.x7e_c00171{left:299.800449px;}
.x3f_c00171{left:303.483000px;}
.x84_c00171{left:306.572181px;}
.x11_c00171{left:308.517000px;}
.x30_c00171{left:310.557000px;}
.x43_c00171{left:313.237500px;}
.x27_c00171{left:314.887500px;}
.xa_c00171{left:316.314000px;}
.x20_c00171{left:317.373000px;}
.x76_c00171{left:318.695448px;}
.x48_c00171{left:321.391500px;}
.x1a_c00171{left:323.617500px;}
.x38_c00171{left:327.403500px;}
.x21_c00171{left:331.671000px;}
.x12_c00171{left:333.573000px;}
.x58_c00171{left:335.389727px;}
.x1b_c00171{left:337.642500px;}
.x5f_c00171{left:347.464097px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
.fs15_c00171{font-size:41.080545pt;}
.fs12_c00171{font-size:46.673410pt;}
.fs9_c00171{font-size:47.600000pt;}
.fs13_c00171{font-size:51.350681pt;}
.fse_c00171{font-size:52.274219pt;}
.fs14_c00171{font-size:52.284330pt;}
.fs7_c00171{font-size:54.133333pt;}
.fs11_c00171{font-size:55.074623pt;}
.fs6_c00171{font-size:56.000000pt;}
.fs10_c00171{font-size:56.008091pt;}
.fs16_c00171{font-size:56.018925pt;}
.fs3_c00171{font-size:56.933333pt;}
.fsd_c00171{font-size:56.941560pt;}
.fs8_c00171{font-size:57.866667pt;}
.fsc_c00171{font-size:57.875028pt;}
.fs1_c00171{font-size:58.800000pt;}
.fsb_c00171{font-size:58.808496pt;}
.fs2_c00171{font-size:59.733333pt;}
.fsf_c00171{font-size:59.741964pt;}
.fs4_c00171{font-size:60.666667pt;}
.fs5_c00171{font-size:61.600000pt;}
.fsa_c00171{font-size:63.475837pt;}
.fs0_c00171{font-size:110.133333pt;}
.y0_c00171{bottom:0.000000pt;}
.yf2_c00171{bottom:21.484360pt;}
.yf1_c00171{bottom:22.191491pt;}
.yf0_c00171{bottom:22.734363pt;}
.yef_c00171{bottom:23.473971pt;}
.yee_c00171{bottom:24.133677pt;}
.yed_c00171{bottom:24.762624pt;}
.yec_c00171{bottom:25.640741pt;}
.yeb_c00171{bottom:25.910651pt;}
.yea_c00171{bottom:37.772725pt;}
.ye9_c00171{bottom:38.048771pt;}
.ye8_c00171{bottom:38.913680pt;}
.ye7_c00171{bottom:39.208251pt;}
.ye6_c00171{bottom:39.536264pt;}
.ye5_c00171{bottom:40.551789pt;}
.ye4_c00171{bottom:40.969707pt;}
.ye3_c00171{bottom:41.272795pt;}
.ye2_c00171{bottom:52.611117pt;}
.ye1_c00171{bottom:53.109691pt;}
.ye0_c00171{bottom:53.825832pt;}
.ydf_c00171{bottom:54.642461pt;}
.yde_c00171{bottom:56.502355pt;}
.ydd_c00171{bottom:56.946661pt;}
.ydc_c00171{bottom:57.360195pt;}
.ydb_c00171{bottom:67.889819pt;}
.yda_c00171{bottom:68.320067pt;}
.yd9_c00171{bottom:69.637712pt;}
.yd8_c00171{bottom:70.593091pt;}
.yd7_c00171{bottom:71.597072pt;}
.yd6_c00171{bottom:71.933443pt;}
.yd5_c00171{bottom:72.725333pt;}
.yd4_c00171{bottom:82.602591pt;}
.yd3_c00171{bottom:83.095187pt;}
.yd2_c00171{bottom:83.596211pt;}
.yd1_c00171{bottom:84.515736pt;}
.yd0_c00171{bottom:84.960061pt;}
.ycf_c00171{bottom:86.270141pt;}
.yce_c00171{bottom:86.875020pt;}
.ycd_c00171{bottom:87.235153pt;}
.ycc_c00171{bottom:88.058504pt;}
.ycb_c00171{bottom:97.850715pt;}
.yca_c00171{bottom:98.401743pt;}
.yc9_c00171{bottom:98.938272pt;}
.yc8_c00171{bottom:99.802255pt;}
.yc7_c00171{bottom:100.217025pt;}
.yc6_c00171{bottom:100.472861pt;}
.yc5_c00171{bottom:101.432612pt;}
.yc4_c00171{bottom:101.726104pt;}
.yc3_c00171{bottom:101.941659pt;}
.yc2_c00171{bottom:102.165075pt;}
.yc1_c00171{bottom:102.699972pt;}
.yc0_c00171{bottom:113.827241pt;}
.ybf_c00171{bottom:114.118507pt;}
.ybe_c00171{bottom:114.382875pt;}
.ybd_c00171{bottom:116.345256pt;}
.ybc_c00171{bottom:117.590556pt;}
.ybb_c00171{bottom:117.903505pt;}
.yba_c00171{bottom:118.301295pt;}
.yb9_c00171{bottom:129.249689pt;}
.yb8_c00171{bottom:129.568216pt;}
.yb7_c00171{bottom:130.321973pt;}
.yb6_c00171{bottom:130.630032pt;}
.yb5_c00171{bottom:131.484363pt;}
.yb4_c00171{bottom:131.685301pt;}
.yb3_c00171{bottom:132.613131pt;}
.yb2_c00171{bottom:133.619691pt;}
.yb1_c00171{bottom:133.904415pt;}
.yb0_c00171{bottom:145.361719pt;}
.yaf_c00171{bottom:146.600465pt;}
.yae_c00171{bottom:147.075080pt;}
.yad_c00171{bottom:147.533867pt;}
.yac_c00171{bottom:147.867404pt;}
.yab_c00171{bottom:149.317608pt;}
.yaa_c00171{bottom:150.335793pt;}
.ya9_c00171{bottom:150.707329pt;}
.ya8_c00171{bottom:159.521457pt;}
.ya7_c00171{bottom:159.993056pt;}
.ya6_c00171{bottom:160.445064pt;}
.ya5_c00171{bottom:161.711907pt;}
.ya4_c00171{bottom:163.116851pt;}
.ya3_c00171{bottom:163.474717pt;}
.ya2_c00171{bottom:164.777591pt;}
.ya1_c00171{bottom:165.587715pt;}
.ya0_c00171{bottom:174.348632pt;}
.y9f_c00171{bottom:175.139487pt;}
.y9e_c00171{bottom:176.856453pt;}
.y9d_c00171{bottom:177.363776pt;}
.y9c_c00171{bottom:177.911393pt;}
.y9b_c00171{bottom:179.518593pt;}
.y9a_c00171{bottom:180.149153pt;}
.y99_c00171{bottom:181.100167pt;}
.y98_c00171{bottom:181.669516pt;}
.y97_c00171{bottom:192.039327pt;}
.y96_c00171{bottom:193.845112pt;}
.y95_c00171{bottom:195.336873pt;}
.y94_c00171{bottom:196.549427pt;}
.y93_c00171{bottom:206.252535pt;}
.y92_c00171{bottom:207.231831pt;}
.y91_c00171{bottom:207.706123pt;}
.y90_c00171{bottom:208.095037pt;}
.y8f_c00171{bottom:209.045457pt;}
.y8e_c00171{bottom:209.693360pt;}
.y8d_c00171{bottom:210.400824pt;}
.y8c_c00171{bottom:211.931592pt;}
.y8b_c00171{bottom:212.421331pt;}
.y8a_c00171{bottom:221.910361pt;}
.y89_c00171{bottom:222.316521pt;}
.y88_c00171{bottom:223.190768pt;}
.y87_c00171{bottom:224.623119pt;}
.y86_c00171{bottom:225.378944pt;}
.y85_c00171{bottom:227.517063pt;}
.y84_c00171{bottom:237.071103pt;}
.y83_c00171{bottom:237.504491pt;}
.y82_c00171{bottom:238.673672pt;}
.y81_c00171{bottom:239.096392pt;}
.y80_c00171{bottom:239.819749pt;}
.y7f_c00171{bottom:240.218251pt;}
.y7e_c00171{bottom:241.712061pt;}
.y7d_c00171{bottom:242.075608pt;}
.y7c_c00171{bottom:242.397925pt;}
.y75_c00171{bottom:252.761087pt;}
.y79_c00171{bottom:252.761137pt;}
.y7a_c00171{bottom:252.761247pt;}
.y7b_c00171{bottom:252.761509pt;}
.y76_c00171{bottom:252.761551pt;}
.y78_c00171{bottom:252.761625pt;}
.y77_c00171{bottom:252.761683pt;}
.y74_c00171{bottom:268.185279pt;}
.y73_c00171{bottom:268.919537pt;}
.y72_c00171{bottom:270.105331pt;}
.y71_c00171{bottom:270.444679pt;}
.y70_c00171{bottom:271.397467pt;}
.y6f_c00171{bottom:271.699087pt;}
.y6e_c00171{bottom:271.926905pt;}
.y6d_c00171{bottom:272.400332pt;}
.y6c_c00171{bottom:283.068832pt;}
.y6b_c00171{bottom:283.338203pt;}
.y6a_c00171{bottom:284.358271pt;}
.y69_c00171{bottom:284.970452pt;}
.y68_c00171{bottom:285.422153pt;}
.y67_c00171{bottom:286.219023pt;}
.y66_c00171{bottom:286.802667pt;}
.y65_c00171{bottom:302.401333pt;}
.y64_c00171{bottom:313.800000pt;}
.y63_c00171{bottom:314.154667pt;}
.y62_c00171{bottom:315.077333pt;}
.y61_c00171{bottom:316.006667pt;}
.y60_c00171{bottom:316.366667pt;}
.y5f_c00171{bottom:316.650667pt;}
.y5e_c00171{bottom:317.726667pt;}
.y5d_c00171{bottom:318.250667pt;}
.y5c_c00171{bottom:329.368000pt;}
.y5b_c00171{bottom:329.709333pt;}
.y5a_c00171{bottom:331.089333pt;}
.y59_c00171{bottom:331.590667pt;}
.y58_c00171{bottom:332.472000pt;}
.y57_c00171{bottom:333.876000pt;}
.y56_c00171{bottom:334.328000pt;}
.y55_c00171{bottom:345.520000pt;}
.y54_c00171{bottom:346.793333pt;}
.y53_c00171{bottom:347.068000pt;}
.y52_c00171{bottom:347.902667pt;}
.y51_c00171{bottom:349.121333pt;}
.y50_c00171{bottom:349.477333pt;}
.y4f_c00171{bottom:350.017333pt;}
.y4e_c00171{bottom:350.646667pt;}
.y4d_c00171{bottom:360.262667pt;}
.y4c_c00171{bottom:360.360000pt;}
.y4b_c00171{bottom:362.065333pt;}
.y4a_c00171{bottom:362.508000pt;}
.y49_c00171{bottom:363.598667pt;}
.y48_c00171{bottom:364.592000pt;}
.y47_c00171{bottom:365.529333pt;}
.y46_c00171{bottom:375.196000pt;}
.y45_c00171{bottom:375.660000pt;}
.y44_c00171{bottom:376.458667pt;}
.y43_c00171{bottom:377.785333pt;}
.y42_c00171{bottom:378.768000pt;}
.y41_c00171{bottom:379.908000pt;}
.y40_c00171{bottom:380.268000pt;}
.y3f_c00171{bottom:380.650667pt;}
.y3e_c00171{bottom:391.137333pt;}
.y3d_c00171{bottom:391.420000pt;}
.y3c_c00171{bottom:391.780000pt;}
.y3b_c00171{bottom:392.326667pt;}
.y3a_c00171{bottom:392.718667pt;}
.y39_c00171{bottom:393.644000pt;}
.y38_c00171{bottom:393.926667pt;}
.y37_c00171{bottom:394.326667pt;}
.y36_c00171{bottom:395.142667pt;}
.y35_c00171{bottom:395.526667pt;}
.y34_c00171{bottom:406.272000pt;}
.y33_c00171{bottom:406.570667pt;}
.y32_c00171{bottom:407.205333pt;}
.y31_c00171{bottom:408.017333pt;}
.y30_c00171{bottom:409.205333pt;}
.y2f_c00171{bottom:409.493333pt;}
.y2e_c00171{bottom:410.406667pt;}
.y2d_c00171{bottom:421.529333pt;}
.y2c_c00171{bottom:421.948000pt;}
.y2b_c00171{bottom:422.544000pt;}
.y2a_c00171{bottom:424.125333pt;}
.y29_c00171{bottom:424.810667pt;}
.y28_c00171{bottom:425.985333pt;}
.y27_c00171{bottom:426.968000pt;}
.y26_c00171{bottom:436.598667pt;}
.y25_c00171{bottom:436.865333pt;}
.y24_c00171{bottom:438.036000pt;}
.y23_c00171{bottom:438.480000pt;}
.y22_c00171{bottom:439.360000pt;}
.y21_c00171{bottom:440.438667pt;}
.y20_c00171{bottom:441.846667pt;}
.y1f_c00171{bottom:451.708000pt;}
.y1e_c00171{bottom:451.894667pt;}
.y1d_c00171{bottom:453.170667pt;}
.y1c_c00171{bottom:453.410667pt;}
.y1b_c00171{bottom:454.405333pt;}
.y1a_c00171{bottom:455.525333pt;}
.y19_c00171{bottom:467.372000pt;}
.y18_c00171{bottom:467.986667pt;}
.y17_c00171{bottom:468.210667pt;}
.y16_c00171{bottom:468.445333pt;}
.y15_c00171{bottom:469.420000pt;}
.y14_c00171{bottom:470.165333pt;}
.y13_c00171{bottom:482.541333pt;}
.y12_c00171{bottom:482.786667pt;}
.y11_c00171{bottom:483.188000pt;}
.y10_c00171{bottom:483.750667pt;}
.yf_c00171{bottom:483.972000pt;}
.ye_c00171{bottom:484.410667pt;}
.yd_c00171{bottom:484.616000pt;}
.yc_c00171{bottom:484.765333pt;}
.yb_c00171{bottom:485.282667pt;}
.ya_c00171{bottom:498.300000pt;}
.y9_c00171{bottom:498.506667pt;}
.y8_c00171{bottom:498.657333pt;}
.y7_c00171{bottom:499.161333pt;}
.y6_c00171{bottom:499.492000pt;}
.y5_c00171{bottom:499.666667pt;}
.y4_c00171{bottom:500.125333pt;}
.y3_c00171{bottom:500.296000pt;}
.y2_c00171{bottom:500.641333pt;}
.y1_c00171{bottom:511.212000pt;}
.h17_c00171{height:41.080545pt;}
.h14_c00171{height:46.673410pt;}
.hb_c00171{height:47.600000pt;}
.h15_c00171{height:51.350681pt;}
.h10_c00171{height:52.274219pt;}
.h16_c00171{height:52.284330pt;}
.h9_c00171{height:54.133333pt;}
.h13_c00171{height:55.074623pt;}
.h8_c00171{height:56.000000pt;}
.h12_c00171{height:56.008091pt;}
.h18_c00171{height:56.018925pt;}
.h5_c00171{height:56.933333pt;}
.hf_c00171{height:56.941560pt;}
.ha_c00171{height:57.866667pt;}
.he_c00171{height:57.875028pt;}
.h3_c00171{height:58.800000pt;}
.hd_c00171{height:58.808496pt;}
.h4_c00171{height:59.733333pt;}
.h11_c00171{height:59.741964pt;}
.h6_c00171{height:60.666667pt;}
.h7_c00171{height:61.600000pt;}
.hc_c00171{height:63.475837pt;}
.h2_c00171{height:110.133333pt;}
.h0_c00171{height:553.866667pt;}
.h1_c00171{height:554.000000pt;}
.w1_c00171{width:340.666667pt;}
.w0_c00171{width:340.800000pt;}
.x0_c00171{left:0.000000pt;}
.x68_c00171{left:27.131805pt;}
.x81_c00171{left:39.608944pt;}
.x6f_c00171{left:40.822351pt;}
.x59_c00171{left:41.714187pt;}
.x22_c00171{left:43.453333pt;}
.x31_c00171{left:44.380000pt;}
.x17_c00171{left:45.661333pt;}
.x2_c00171{left:46.925333pt;}
.x82_c00171{left:53.787509pt;}
.x6c_c00171{left:55.298871pt;}
.x51_c00171{left:58.324296pt;}
.x7c_c00171{left:60.018456pt;}
.x32_c00171{left:60.992000pt;}
.x5a_c00171{left:62.127761pt;}
.x2c_c00171{left:65.130667pt;}
.x44_c00171{left:66.044000pt;}
.x49_c00171{left:68.209144pt;}
.x40_c00171{left:71.773333pt;}
.x39_c00171{left:74.510667pt;}
.x52_c00171{left:75.629784pt;}
.x33_c00171{left:76.628000pt;}
.x70_c00171{left:78.237081pt;}
.x4a_c00171{left:80.198069pt;}
.x3_c00171{left:81.472000pt;}
.x69_c00171{left:82.754924pt;}
.x23_c00171{left:86.161333pt;}
.x7f_c00171{left:88.183504pt;}
.x35_c00171{left:89.517333pt;}
.x79_c00171{left:90.942667pt;}
.xb_c00171{left:94.232000pt;}
.x4b_c00171{left:96.057525pt;}
.x60_c00171{left:97.113724pt;}
.x4_c00171{left:98.549333pt;}
.x45_c00171{left:100.376000pt;}
.x3a_c00171{left:101.533333pt;}
.x13_c00171{left:103.524000pt;}
.x6d_c00171{left:105.642976pt;}
.xc_c00171{left:107.862667pt;}
.x28_c00171{left:110.441333pt;}
.x1c_c00171{left:111.922667pt;}
.x5e_c00171{left:114.883641pt;}
.x61_c00171{left:118.122411pt;}
.x3b_c00171{left:119.310667pt;}
.x18_c00171{left:120.302667pt;}
.x77_c00171{left:121.427933pt;}
.xd_c00171{left:126.580000pt;}
.x2d_c00171{left:129.133333pt;}
.x66_c00171{left:130.081199pt;}
.x1_c00171{left:133.680000pt;}
.x24_c00171{left:137.260000pt;}
.x55_c00171{left:140.456264pt;}
.x41_c00171{left:143.368000pt;}
.x5_c00171{left:144.392000pt;}
.x4c_c00171{left:146.219825pt;}
.x46_c00171{left:147.250667pt;}
.x6e_c00171{left:152.061952pt;}
.x6a_c00171{left:154.102556pt;}
.x5b_c00171{left:155.345988pt;}
.x4e_c00171{left:158.416157pt;}
.x6_c00171{left:161.890667pt;}
.x1d_c00171{left:163.310667pt;}
.x72_c00171{left:164.958872pt;}
.xe_c00171{left:166.430667pt;}
.x83_c00171{left:167.812240pt;}
.x34_c00171{left:168.940000pt;}
.x62_c00171{left:171.710579pt;}
.x47_c00171{left:173.821333pt;}
.x56_c00171{left:174.796007pt;}
.x29_c00171{left:176.450667pt;}
.x14_c00171{left:178.466667pt;}
.x3c_c00171{left:180.265333pt;}
.x5c_c00171{left:182.317436pt;}
.x73_c00171{left:185.669807pt;}
.xf_c00171{left:186.606667pt;}
.x36_c00171{left:188.740000pt;}
.x63_c00171{left:189.958544pt;}
.x3d_c00171{left:191.497333pt;}
.x2e_c00171{left:192.773333pt;}
.x7_c00171{left:195.005333pt;}
.x15_c00171{left:196.466667pt;}
.x80_c00171{left:197.424072pt;}
.x53_c00171{left:200.229329pt;}
.x78_c00171{left:201.170489pt;}
.x19_c00171{left:202.636000pt;}
.x67_c00171{left:203.571139pt;}
.x1e_c00171{left:205.232000pt;}
.x64_c00171{left:206.856137pt;}
.x7d_c00171{left:208.633765pt;}
.x37_c00171{left:209.810667pt;}
.x42_c00171{left:211.208000pt;}
.x16_c00171{left:213.684000pt;}
.x7a_c00171{left:216.981333pt;}
.x54_c00171{left:220.387969pt;}
.x2a_c00171{left:221.577333pt;}
.x1f_c00171{left:226.348000pt;}
.x74_c00171{left:228.882275pt;}
.x4f_c00171{left:232.106775pt;}
.x7b_c00171{left:233.529333pt;}
.x25_c00171{left:235.785333pt;}
.x10_c00171{left:237.704000pt;}
.x57_c00171{left:239.909143pt;}
.x6b_c00171{left:241.001413pt;}
.x2f_c00171{left:242.204000pt;}
.x50_c00171{left:243.388705pt;}
.x8_c00171{left:245.409333pt;}
.x71_c00171{left:247.075347pt;}
.x3e_c00171{left:254.244000pt;}
.x75_c00171{left:255.735581pt;}
.x2b_c00171{left:256.854667pt;}
.x5d_c00171{left:257.855104pt;}
.x9_c00171{left:260.528000pt;}
.x26_c00171{left:261.702667pt;}
.x65_c00171{left:264.076823pt;}
.x4d_c00171{left:265.082435pt;}
.x7e_c00171{left:266.489288pt;}
.x3f_c00171{left:269.762667pt;}
.x84_c00171{left:272.508605pt;}
.x11_c00171{left:274.237333pt;}
.x30_c00171{left:276.050667pt;}
.x43_c00171{left:278.433333pt;}
.x27_c00171{left:279.900000pt;}
.xa_c00171{left:281.168000pt;}
.x20_c00171{left:282.109333pt;}
.x76_c00171{left:283.284843pt;}
.x48_c00171{left:285.681333pt;}
.x1a_c00171{left:287.660000pt;}
.x38_c00171{left:291.025333pt;}
.x21_c00171{left:294.818667pt;}
.x12_c00171{left:296.509333pt;}
.x58_c00171{left:298.124201pt;}
.x1b_c00171{left:300.126667pt;}
.x5f_c00171{left:308.856975pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00172 {
    display:none;
  }
  .loading-indicator_c00172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00172 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00172 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00172" -> "#page-container .classname_c00172")
 */
.pf_c00172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00172 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00172 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00172 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00172 {overflow:visible;}
  }
}
.c_c00172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00172 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00172:after { /* webkit #35443 */
  content: '';
}
.t_c00172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00172 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00172 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00172 { /* info for Javascript */
  display:none;
}
.l_c00172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00172:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00172 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00172.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me1_c00172{transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);-ms-transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);}
.m1_c00172{transform:matrix(0.034555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034555,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);}
.mc9_c00172{transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);-ms-transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);}
.m28_c00172{transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);}
.m9d_c00172{transform:matrix(0.154814,-0.001858,0.003000,0.249982,0,0);-ms-transform:matrix(0.154814,-0.001858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154814,-0.001858,0.003000,0.249982,0,0);}
.m7d_c00172{transform:matrix(0.155239,-0.001863,0.003000,0.249982,0,0);-ms-transform:matrix(0.155239,-0.001863,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155239,-0.001863,0.003000,0.249982,0,0);}
.m25_c00172{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.m9e_c00172{transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);}
.m1f_c00172{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.me3_c00172{transform:matrix(0.158589,-0.001903,0.003000,0.249982,0,0);-ms-transform:matrix(0.158589,-0.001903,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158589,-0.001903,0.003000,0.249982,0,0);}
.mc7_c00172{transform:matrix(0.159034,-0.001908,0.003000,0.249982,0,0);-ms-transform:matrix(0.159034,-0.001908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159034,-0.001908,0.003000,0.249982,0,0);}
.m2b_c00172{transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160270,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(0.160398,-0.001925,0.003000,0.249982,0,0);-ms-transform:matrix(0.160398,-0.001925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160398,-0.001925,0.003000,0.249982,0,0);}
.m95_c00172{transform:matrix(0.160693,-0.001928,0.003000,0.249982,0,0);-ms-transform:matrix(0.160693,-0.001928,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160693,-0.001928,0.003000,0.249982,0,0);}
.m3b_c00172{transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);}
.me6_c00172{transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);-ms-transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163373,-0.001960,0.003000,0.249982,0,0);}
.mdb_c00172{transform:matrix(0.164233,-0.001971,0.003000,0.249982,0,0);-ms-transform:matrix(0.164233,-0.001971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164233,-0.001971,0.003000,0.249982,0,0);}
.m16_c00172{transform:matrix(0.164760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164760,0.000000,0.000000,0.250000,0,0);}
.m63_c00172{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.ma8_c00172{transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);-ms-transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);}
.mad_c00172{transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);-ms-transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);}
.mb_c00172{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);}
.md5_c00172{transform:matrix(0.168403,-0.002021,0.003000,0.249982,0,0);-ms-transform:matrix(0.168403,-0.002021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168403,-0.002021,0.003000,0.249982,0,0);}
.m24_c00172{transform:matrix(0.170485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170485,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);-ms-transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171273,-0.002055,0.003000,0.249982,0,0);}
.m3e_c00172{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.md7_c00172{transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);-ms-transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172543,-0.002071,0.003000,0.249982,0,0);}
.me4_c00172{transform:matrix(0.173757,-0.002085,0.003000,0.249982,0,0);-ms-transform:matrix(0.173757,-0.002085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173757,-0.002085,0.003000,0.249982,0,0);}
.m83_c00172{transform:matrix(0.174322,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174322,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174322,-0.002092,0.003000,0.249982,0,0);}
.m8b_c00172{transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175602,-0.002107,0.003000,0.249982,0,0);}
.m29_c00172{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175740,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m9b_c00172{transform:matrix(0.176182,-0.002114,0.003000,0.249982,0,0);-ms-transform:matrix(0.176182,-0.002114,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176182,-0.002114,0.003000,0.249982,0,0);}
.m10_c00172{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.ma9_c00172{transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);-ms-transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176742,-0.002121,0.003000,0.249982,0,0);}
.mdf_c00172{transform:matrix(0.176782,-0.002121,0.003000,0.249982,0,0);-ms-transform:matrix(0.176782,-0.002121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176782,-0.002121,0.003000,0.249982,0,0);}
.m89_c00172{transform:matrix(0.176837,-0.002122,0.003000,0.249982,0,0);-ms-transform:matrix(0.176837,-0.002122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176837,-0.002122,0.003000,0.249982,0,0);}
.me8_c00172{transform:matrix(0.177002,-0.002124,0.003000,0.249982,0,0);-ms-transform:matrix(0.177002,-0.002124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177002,-0.002124,0.003000,0.249982,0,0);}
.ma1_c00172{transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177442,-0.002129,0.003000,0.249982,0,0);}
.m60_c00172{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.mbf_c00172{transform:matrix(0.178237,-0.002139,0.003000,0.249982,0,0);-ms-transform:matrix(0.178237,-0.002139,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178237,-0.002139,0.003000,0.249982,0,0);}
.mc_c00172{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.mef_c00172{transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.mc4_c00172{transform:matrix(0.178717,-0.002145,0.003000,0.249982,0,0);-ms-transform:matrix(0.178717,-0.002145,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178717,-0.002145,0.003000,0.249982,0,0);}
.m90_c00172{transform:matrix(0.179312,-0.002152,0.003000,0.249982,0,0);-ms-transform:matrix(0.179312,-0.002152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179312,-0.002152,0.003000,0.249982,0,0);}
.m4f_c00172{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00172{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);}
.m5e_c00172{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.mae_c00172{transform:matrix(0.180027,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.180027,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180027,-0.002160,0.003000,0.249982,0,0);}
.m23_c00172{transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00172{transform:matrix(0.180712,-0.002169,0.003000,0.249982,0,0);-ms-transform:matrix(0.180712,-0.002169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180712,-0.002169,0.003000,0.249982,0,0);}
.me5_c00172{transform:matrix(0.181327,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181327,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181327,-0.002176,0.003000,0.249982,0,0);}
.m36_c00172{transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);}
.m80_c00172{transform:matrix(0.181532,-0.002178,0.003000,0.249982,0,0);-ms-transform:matrix(0.181532,-0.002178,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181532,-0.002178,0.003000,0.249982,0,0);}
.m94_c00172{transform:matrix(0.181767,-0.002181,0.003000,0.249982,0,0);-ms-transform:matrix(0.181767,-0.002181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181767,-0.002181,0.003000,0.249982,0,0);}
.m49_c00172{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.181967,-0.002184,0.003000,0.249982,0,0);-ms-transform:matrix(0.181967,-0.002184,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181967,-0.002184,0.003000,0.249982,0,0);}
.mc3_c00172{transform:matrix(0.182402,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182402,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182402,-0.002189,0.003000,0.249982,0,0);}
.m79_c00172{transform:matrix(0.182452,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182452,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182452,-0.002189,0.003000,0.249982,0,0);}
.m58_c00172{transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);}
.m50_c00172{transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);}
.med_c00172{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.mb7_c00172{transform:matrix(0.184807,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184807,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184807,-0.002218,0.003000,0.249982,0,0);}
.m5b_c00172{transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m88_c00172{transform:matrix(0.186327,-0.002236,0.003000,0.249982,0,0);-ms-transform:matrix(0.186327,-0.002236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186327,-0.002236,0.003000,0.249982,0,0);}
.m3d_c00172{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.m9a_c00172{transform:matrix(0.186897,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186897,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186897,-0.002243,0.003000,0.249982,0,0);}
.m48_c00172{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m74_c00172{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.189491,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189491,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189491,-0.002274,0.003000,0.249982,0,0);}
.m8e_c00172{transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190041,-0.002280,0.003000,0.249982,0,0);}
.mc5_c00172{transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);-ms-transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190326,-0.002284,0.003000,0.249982,0,0);}
.md6_c00172{transform:matrix(0.190906,-0.002291,0.003000,0.249982,0,0);-ms-transform:matrix(0.190906,-0.002291,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190906,-0.002291,0.003000,0.249982,0,0);}
.m97_c00172{transform:matrix(0.191016,-0.002292,0.003000,0.249982,0,0);-ms-transform:matrix(0.191016,-0.002292,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191016,-0.002292,0.003000,0.249982,0,0);}
.mbb_c00172{transform:matrix(0.191331,-0.002296,0.003000,0.249982,0,0);-ms-transform:matrix(0.191331,-0.002296,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191331,-0.002296,0.003000,0.249982,0,0);}
.mba_c00172{transform:matrix(0.191856,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191856,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191856,-0.002302,0.003000,0.249982,0,0);}
.maa_c00172{transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);}
.m3c_c00172{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.mbe_c00172{transform:matrix(0.192141,-0.002306,0.003000,0.249982,0,0);-ms-transform:matrix(0.192141,-0.002306,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192141,-0.002306,0.003000,0.249982,0,0);}
.m1d_c00172{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.mb3_c00172{transform:matrix(0.192576,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192576,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192576,-0.002311,0.003000,0.249982,0,0);}
.m27_c00172{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00172{transform:matrix(0.194006,-0.002328,0.003000,0.249982,0,0);-ms-transform:matrix(0.194006,-0.002328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194006,-0.002328,0.003000,0.249982,0,0);}
.m64_c00172{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.194271,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194271,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194271,-0.002331,0.003000,0.249982,0,0);}
.mbd_c00172{transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194316,-0.002332,0.003000,0.249982,0,0);}
.mc6_c00172{transform:matrix(0.194341,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194341,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194341,-0.002332,0.003000,0.249982,0,0);}
.m13_c00172{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.194786,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194786,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194786,-0.002337,0.003000,0.249982,0,0);}
.m7a_c00172{transform:matrix(0.195126,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195126,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195126,-0.002342,0.003000,0.249982,0,0);}
.mb4_c00172{transform:matrix(0.195171,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195171,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195171,-0.002342,0.003000,0.249982,0,0);}
.me_c00172{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.md2_c00172{transform:matrix(0.195341,-0.002344,0.003000,0.249982,0,0);-ms-transform:matrix(0.195341,-0.002344,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195341,-0.002344,0.003000,0.249982,0,0);}
.m6a_c00172{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.ma4_c00172{transform:matrix(0.196451,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196451,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196451,-0.002357,0.003000,0.249982,0,0);}
.mac_c00172{transform:matrix(0.196506,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196506,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196506,-0.002358,0.003000,0.249982,0,0);}
.mee_c00172{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.m66_c00172{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);}
.mcb_c00172{transform:matrix(0.198236,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198236,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198236,-0.002379,0.003000,0.249982,0,0);}
.m56_c00172{transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.md8_c00172{transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);-ms-transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);}
.m37_c00172{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.mea_c00172{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m82_c00172{transform:matrix(0.199371,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199371,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199371,-0.002392,0.003000,0.249982,0,0);}
.m43_c00172{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.me7_c00172{transform:matrix(0.199636,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199636,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199636,-0.002396,0.003000,0.249982,0,0);}
.mf0_c00172{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.ma3_c00172{transform:matrix(0.200321,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200321,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200321,-0.002404,0.003000,0.249982,0,0);}
.md9_c00172{transform:matrix(0.200811,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200811,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200811,-0.002410,0.003000,0.249982,0,0);}
.m78_c00172{transform:matrix(0.201655,-0.002420,0.003000,0.249982,0,0);-ms-transform:matrix(0.201655,-0.002420,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201655,-0.002420,0.003000,0.249982,0,0);}
.m8f_c00172{transform:matrix(0.201860,-0.002422,0.003000,0.249982,0,0);-ms-transform:matrix(0.201860,-0.002422,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201860,-0.002422,0.003000,0.249982,0,0);}
.mc8_c00172{transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);}
.m9_c00172{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.203300,-0.002440,0.003000,0.249982,0,0);-ms-transform:matrix(0.203300,-0.002440,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203300,-0.002440,0.003000,0.249982,0,0);}
.m68_c00172{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.204360,-0.002452,0.003000,0.249982,0,0);-ms-transform:matrix(0.204360,-0.002452,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204360,-0.002452,0.003000,0.249982,0,0);}
.ma0_c00172{transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);}
.m6c_c00172{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{transform:matrix(0.205255,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205255,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205255,-0.002463,0.003000,0.249982,0,0);}
.m61_c00172{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.mbc_c00172{transform:matrix(0.205400,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205400,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205400,-0.002465,0.003000,0.249982,0,0);}
.mde_c00172{transform:matrix(0.205635,-0.002468,0.003000,0.249982,0,0);-ms-transform:matrix(0.205635,-0.002468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205635,-0.002468,0.003000,0.249982,0,0);}
.m7f_c00172{transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205810,-0.002470,0.003000,0.249982,0,0);}
.m93_c00172{transform:matrix(0.206260,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206260,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206260,-0.002475,0.003000,0.249982,0,0);}
.m9c_c00172{transform:matrix(0.206815,-0.002482,0.003000,0.249982,0,0);-ms-transform:matrix(0.206815,-0.002482,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206815,-0.002482,0.003000,0.249982,0,0);}
.m51_c00172{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m2e_c00172{transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.mcf_c00172{transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);}
.mc1_c00172{transform:matrix(0.210025,-0.002520,0.003000,0.249982,0,0);-ms-transform:matrix(0.210025,-0.002520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210025,-0.002520,0.003000,0.249982,0,0);}
.m4_c00172{transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.210190,-0.002522,0.003000,0.249982,0,0);-ms-transform:matrix(0.210190,-0.002522,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210190,-0.002522,0.003000,0.249982,0,0);}
.m77_c00172{transform:matrix(0.210240,-0.002523,0.003000,0.249982,0,0);-ms-transform:matrix(0.210240,-0.002523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210240,-0.002523,0.003000,0.249982,0,0);}
.ma6_c00172{transform:matrix(0.210870,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210870,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210870,-0.002530,0.003000,0.249982,0,0);}
.md0_c00172{transform:matrix(0.211055,-0.002533,0.003000,0.249982,0,0);-ms-transform:matrix(0.211055,-0.002533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211055,-0.002533,0.003000,0.249982,0,0);}
.m44_c00172{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.211400,-0.002537,0.003000,0.249982,0,0);-ms-transform:matrix(0.211400,-0.002537,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211400,-0.002537,0.003000,0.249982,0,0);}
.m22_c00172{transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.212450,-0.002549,0.003000,0.249982,0,0);-ms-transform:matrix(0.212450,-0.002549,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212450,-0.002549,0.003000,0.249982,0,0);}
.m32_c00172{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.mec_c00172{transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214365,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);}
.mc2_c00172{transform:matrix(0.215919,-0.002591,0.003000,0.249982,0,0);-ms-transform:matrix(0.215919,-0.002591,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215919,-0.002591,0.003000,0.249982,0,0);}
.mb6_c00172{transform:matrix(0.216234,-0.002595,0.003000,0.249982,0,0);-ms-transform:matrix(0.216234,-0.002595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216234,-0.002595,0.003000,0.249982,0,0);}
.m86_c00172{transform:matrix(0.216369,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216369,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216369,-0.002596,0.003000,0.249982,0,0);}
.mca_c00172{transform:matrix(0.216414,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216414,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216414,-0.002597,0.003000,0.249982,0,0);}
.mb1_c00172{transform:matrix(0.216784,-0.002601,0.003000,0.249982,0,0);-ms-transform:matrix(0.216784,-0.002601,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216784,-0.002601,0.003000,0.249982,0,0);}
.m5c_c00172{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.mb2_c00172{transform:matrix(0.216959,-0.002604,0.003000,0.249982,0,0);-ms-transform:matrix(0.216959,-0.002604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216959,-0.002604,0.003000,0.249982,0,0);}
.md3_c00172{transform:matrix(0.217569,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217569,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217569,-0.002611,0.003000,0.249982,0,0);}
.m46_c00172{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.218734,-0.002625,0.003000,0.249982,0,0);-ms-transform:matrix(0.218734,-0.002625,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218734,-0.002625,0.003000,0.249982,0,0);}
.m3a_c00172{transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);}
.mb0_c00172{transform:matrix(0.218984,-0.002628,0.003000,0.249982,0,0);-ms-transform:matrix(0.218984,-0.002628,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218984,-0.002628,0.003000,0.249982,0,0);}
.m3f_c00172{transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.219799,-0.002638,0.003000,0.249982,0,0);-ms-transform:matrix(0.219799,-0.002638,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219799,-0.002638,0.003000,0.249982,0,0);}
.m85_c00172{transform:matrix(0.220244,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220244,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220244,-0.002643,0.003000,0.249982,0,0);}
.m1a_c00172{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.mdc_c00172{transform:matrix(0.221094,-0.002653,0.003000,0.249982,0,0);-ms-transform:matrix(0.221094,-0.002653,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221094,-0.002653,0.003000,0.249982,0,0);}
.m59_c00172{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.meb_c00172{transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221970,0.000000,0.000000,0.250000,0,0);}
.mb5_c00172{transform:matrix(0.223399,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223399,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223399,-0.002681,0.003000,0.249982,0,0);}
.m65_c00172{transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.mab_c00172{transform:matrix(0.223694,-0.002684,0.003000,0.249982,0,0);-ms-transform:matrix(0.223694,-0.002684,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223694,-0.002684,0.003000,0.249982,0,0);}
.m31_c00172{transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224410,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226665,0.000000,0.000000,0.250000,0,0);}
.mb8_c00172{transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);-ms-transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);}
.m39_c00172{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.mda_c00172{transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);-ms-transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);}
.m75_c00172{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);}
.me2_c00172{transform:matrix(0.230458,-0.002766,0.003000,0.249982,0,0);-ms-transform:matrix(0.230458,-0.002766,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230458,-0.002766,0.003000,0.249982,0,0);}
.maf_c00172{transform:matrix(0.231423,-0.002777,0.003000,0.249982,0,0);-ms-transform:matrix(0.231423,-0.002777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231423,-0.002777,0.003000,0.249982,0,0);}
.md4_c00172{transform:matrix(0.231733,-0.002781,0.003000,0.249982,0,0);-ms-transform:matrix(0.231733,-0.002781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231733,-0.002781,0.003000,0.249982,0,0);}
.mb9_c00172{transform:matrix(0.232358,-0.002788,0.003000,0.249982,0,0);-ms-transform:matrix(0.232358,-0.002788,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232358,-0.002788,0.003000,0.249982,0,0);}
.m38_c00172{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.mc0_c00172{transform:matrix(0.232863,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232863,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232863,-0.002794,0.003000,0.249982,0,0);}
.me0_c00172{transform:matrix(0.233013,-0.002796,0.003000,0.249982,0,0);-ms-transform:matrix(0.233013,-0.002796,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233013,-0.002796,0.003000,0.249982,0,0);}
.mdd_c00172{transform:matrix(0.234248,-0.002811,0.003000,0.249982,0,0);-ms-transform:matrix(0.234248,-0.002811,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234248,-0.002811,0.003000,0.249982,0,0);}
.m72_c00172{transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.mcd_c00172{transform:matrix(0.236728,-0.002841,0.003000,0.249982,0,0);-ms-transform:matrix(0.236728,-0.002841,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236728,-0.002841,0.003000,0.249982,0,0);}
.m1e_c00172{transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);}
.mcc_c00172{transform:matrix(0.239533,-0.002874,0.003000,0.249982,0,0);-ms-transform:matrix(0.239533,-0.002874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239533,-0.002874,0.003000,0.249982,0,0);}
.m8_c00172{transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);}
.ma5_c00172{transform:matrix(0.243502,-0.002922,0.003000,0.249982,0,0);-ms-transform:matrix(0.243502,-0.002922,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243502,-0.002922,0.003000,0.249982,0,0);}
.ma2_c00172{transform:matrix(0.245307,-0.002944,0.003000,0.249982,0,0);-ms-transform:matrix(0.245307,-0.002944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245307,-0.002944,0.003000,0.249982,0,0);}
.md1_c00172{transform:matrix(0.246617,-0.002959,0.003000,0.249982,0,0);-ms-transform:matrix(0.246617,-0.002959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246617,-0.002959,0.003000,0.249982,0,0);}
.mce_c00172{transform:matrix(0.246832,-0.002962,0.003000,0.249982,0,0);-ms-transform:matrix(0.246832,-0.002962,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246832,-0.002962,0.003000,0.249982,0,0);}
.m6d_c00172{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m6f_c00172{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.me9_c00172{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);}
.m6e_c00172{transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);}
.ma7_c00172{transform:matrix(0.336466,-0.004038,0.003000,0.249982,0,0);-ms-transform:matrix(0.336466,-0.004038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.336466,-0.004038,0.003000,0.249982,0,0);}
.m34_c00172{transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.359960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359960,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:0.000000px;}
.fc0_c00172{color:transparent;}
.fs9_c00172{font-size:52.500000px;}
.fs7_c00172{font-size:57.750000px;}
.fs10_c00172{font-size:58.804233px;}
.fs6_c00172{font-size:59.850000px;}
.fs11_c00172{font-size:59.854309px;}
.fs1_c00172{font-size:60.900000px;}
.fsf_c00172{font-size:60.904385px;}
.fs5_c00172{font-size:61.950000px;}
.fsb_c00172{font-size:61.954460px;}
.fs0_c00172{font-size:63.000000px;}
.fsa_c00172{font-size:63.004536px;}
.fs3_c00172{font-size:64.050000px;}
.fs12_c00172{font-size:64.054611px;}
.fs8_c00172{font-size:65.100000px;}
.fse_c00172{font-size:65.104687px;}
.fsc_c00172{font-size:66.154763px;}
.fsd_c00172{font-size:67.204838px;}
.fs4_c00172{font-size:68.250000px;}
.fs2_c00172{font-size:71.400000px;}
.y0_c00172{bottom:0.000000px;}
.ye8_c00172{bottom:28.720500px;}
.ye0_c00172{bottom:43.940472px;}
.ye1_c00172{bottom:43.941114px;}
.ye2_c00172{bottom:43.941762px;}
.ye3_c00172{bottom:43.941864px;}
.ye6_c00172{bottom:43.942212px;}
.ye4_c00172{bottom:43.942248px;}
.ye7_c00172{bottom:43.942458px;}
.ye5_c00172{bottom:43.942650px;}
.yd9_c00172{bottom:56.157708px;}
.yda_c00172{bottom:57.418974px;}
.ydb_c00172{bottom:57.800148px;}
.ydc_c00172{bottom:58.706070px;}
.ydd_c00172{bottom:58.950096px;}
.yde_c00172{bottom:59.952432px;}
.ydf_c00172{bottom:60.321924px;}
.yd4_c00172{bottom:79.372650px;}
.yd3_c00172{bottom:79.372884px;}
.yd5_c00172{bottom:79.372914px;}
.yd6_c00172{bottom:79.373220px;}
.yd8_c00172{bottom:79.373832px;}
.yd7_c00172{bottom:79.373904px;}
.ycb_c00172{bottom:90.723402px;}
.ycc_c00172{bottom:92.066394px;}
.ycd_c00172{bottom:92.483568px;}
.yce_c00172{bottom:94.010766px;}
.ycf_c00172{bottom:94.415028px;}
.yd0_c00172{bottom:96.184878px;}
.yd1_c00172{bottom:96.821496px;}
.yd2_c00172{bottom:97.470342px;}
.yc3_c00172{bottom:114.044910px;}
.yc5_c00172{bottom:114.044940px;}
.yc6_c00172{bottom:114.045162px;}
.yc4_c00172{bottom:114.045174px;}
.yc7_c00172{bottom:114.045444px;}
.yc8_c00172{bottom:114.045810px;}
.yc9_c00172{bottom:114.046392px;}
.yca_c00172{bottom:114.046578px;}
.ybb_c00172{bottom:129.595644px;}
.ybc_c00172{bottom:130.114098px;}
.ybd_c00172{bottom:130.408020px;}
.ybe_c00172{bottom:130.948308px;}
.ybf_c00172{bottom:131.162196px;}
.yc0_c00172{bottom:131.626440px;}
.yc1_c00172{bottom:131.855682px;}
.yc2_c00172{bottom:132.560376px;}
.yb4_c00172{bottom:149.923116px;}
.yb5_c00172{bottom:149.923422px;}
.yb6_c00172{bottom:149.923650px;}
.yb7_c00172{bottom:149.924292px;}
.yb8_c00172{bottom:149.924538px;}
.yba_c00172{bottom:149.924742px;}
.yb9_c00172{bottom:149.925240px;}
.yae_c00172{bottom:161.190366px;}
.yaf_c00172{bottom:162.667038px;}
.yb0_c00172{bottom:162.928620px;}
.yb1_c00172{bottom:164.347344px;}
.yb2_c00172{bottom:165.443568px;}
.yb3_c00172{bottom:166.598046px;}
.ya7_c00172{bottom:184.287768px;}
.ya6_c00172{bottom:184.288086px;}
.ya9_c00172{bottom:184.288272px;}
.ya8_c00172{bottom:184.288290px;}
.yad_c00172{bottom:184.288368px;}
.yab_c00172{bottom:184.288680px;}
.yaa_c00172{bottom:184.288794px;}
.yac_c00172{bottom:184.288806px;}
.ya1_c00172{bottom:200.356932px;}
.ya4_c00172{bottom:200.357106px;}
.ya0_c00172{bottom:200.357130px;}
.ya2_c00172{bottom:200.357316px;}
.ya3_c00172{bottom:200.357460px;}
.ya5_c00172{bottom:200.357514px;}
.y98_c00172{bottom:215.728176px;}
.y99_c00172{bottom:215.998674px;}
.y9a_c00172{bottom:216.599082px;}
.y9b_c00172{bottom:217.171182px;}
.y9c_c00172{bottom:217.326216px;}
.y9d_c00172{bottom:217.543902px;}
.y9e_c00172{bottom:217.779096px;}
.y9f_c00172{bottom:218.832828px;}
.y91_c00172{bottom:236.078400px;}
.y90_c00172{bottom:236.078796px;}
.y92_c00172{bottom:236.079006px;}
.y97_c00172{bottom:236.079324px;}
.y94_c00172{bottom:236.079534px;}
.y93_c00172{bottom:236.079708px;}
.y96_c00172{bottom:236.079858px;}
.y95_c00172{bottom:236.079996px;}
.y8f_c00172{bottom:253.360668px;}
.y88_c00172{bottom:253.361058px;}
.y8d_c00172{bottom:253.361154px;}
.y8e_c00172{bottom:253.361220px;}
.y89_c00172{bottom:253.361340px;}
.y8c_c00172{bottom:253.361472px;}
.y8a_c00172{bottom:253.361562px;}
.y8b_c00172{bottom:253.361964px;}
.y7d_c00172{bottom:270.830598px;}
.y87_c00172{bottom:270.830766px;}
.y86_c00172{bottom:270.831144px;}
.y7e_c00172{bottom:270.831162px;}
.y83_c00172{bottom:270.831216px;}
.y82_c00172{bottom:270.831354px;}
.y84_c00172{bottom:270.831360px;}
.y80_c00172{bottom:270.831366px;}
.y81_c00172{bottom:270.831372px;}
.y85_c00172{bottom:270.831642px;}
.y7f_c00172{bottom:270.831864px;}
.y75_c00172{bottom:286.471500px;}
.y76_c00172{bottom:286.744416px;}
.y77_c00172{bottom:287.272500px;}
.y78_c00172{bottom:287.930256px;}
.y79_c00172{bottom:288.321576px;}
.y7a_c00172{bottom:288.672396px;}
.y7b_c00172{bottom:289.556934px;}
.y7c_c00172{bottom:289.806396px;}
.y6e_c00172{bottom:304.293000px;}
.y6f_c00172{bottom:305.101500px;}
.y70_c00172{bottom:305.343000px;}
.y71_c00172{bottom:306.265500px;}
.y72_c00172{bottom:306.631500px;}
.y73_c00172{bottom:306.991500px;}
.y74_c00172{bottom:307.528500px;}
.y6c_c00172{bottom:318.876000px;}
.y6d_c00172{bottom:320.284500px;}
.y64_c00172{bottom:337.237500px;}
.y65_c00172{bottom:338.041500px;}
.y66_c00172{bottom:338.451000px;}
.y67_c00172{bottom:339.610500px;}
.y68_c00172{bottom:339.924000px;}
.y69_c00172{bottom:340.293000px;}
.y6a_c00172{bottom:341.227500px;}
.y6b_c00172{bottom:342.709500px;}
.y5c_c00172{bottom:353.436000px;}
.y5d_c00172{bottom:354.046500px;}
.y5e_c00172{bottom:354.390000px;}
.y5f_c00172{bottom:355.498500px;}
.y60_c00172{bottom:356.011500px;}
.y61_c00172{bottom:357.207000px;}
.y62_c00172{bottom:357.672000px;}
.y63_c00172{bottom:358.078500px;}
.y55_c00172{bottom:369.366000px;}
.y56_c00172{bottom:369.961500px;}
.y57_c00172{bottom:371.035500px;}
.y58_c00172{bottom:372.777000px;}
.y59_c00172{bottom:373.104000px;}
.y5a_c00172{bottom:374.182500px;}
.y5b_c00172{bottom:374.976000px;}
.y4d_c00172{bottom:387.456000px;}
.y4e_c00172{bottom:387.909000px;}
.y4f_c00172{bottom:388.284000px;}
.y50_c00172{bottom:389.718000px;}
.y51_c00172{bottom:390.339000px;}
.y52_c00172{bottom:391.150500px;}
.y53_c00172{bottom:391.483500px;}
.y54_c00172{bottom:393.069000px;}
.y46_c00172{bottom:403.929000px;}
.y47_c00172{bottom:405.045000px;}
.y48_c00172{bottom:405.954000px;}
.y49_c00172{bottom:406.506000px;}
.y4a_c00172{bottom:407.617500px;}
.y4b_c00172{bottom:408.109500px;}
.y4c_c00172{bottom:408.574500px;}
.y40_c00172{bottom:422.016000px;}
.y41_c00172{bottom:423.429000px;}
.y42_c00172{bottom:424.045500px;}
.y43_c00172{bottom:424.917000px;}
.y44_c00172{bottom:425.581500px;}
.y45_c00172{bottom:427.465500px;}
.y37_c00172{bottom:439.024500px;}
.y38_c00172{bottom:439.197000px;}
.y39_c00172{bottom:439.728000px;}
.y3a_c00172{bottom:440.730000px;}
.y3b_c00172{bottom:441.213000px;}
.y3c_c00172{bottom:442.800000px;}
.y3d_c00172{bottom:443.436000px;}
.y3e_c00172{bottom:443.794500px;}
.y3f_c00172{bottom:444.787500px;}
.y30_c00172{bottom:456.034500px;}
.y31_c00172{bottom:456.262500px;}
.y32_c00172{bottom:457.623000px;}
.y33_c00172{bottom:458.922000px;}
.y34_c00172{bottom:459.181500px;}
.y35_c00172{bottom:459.951000px;}
.y36_c00172{bottom:460.680000px;}
.y2b_c00172{bottom:473.586000px;}
.y2c_c00172{bottom:475.423500px;}
.y2d_c00172{bottom:477.210000px;}
.y2e_c00172{bottom:478.978500px;}
.y2f_c00172{bottom:479.515500px;}
.y23_c00172{bottom:491.136000px;}
.y24_c00172{bottom:491.928000px;}
.y25_c00172{bottom:492.382500px;}
.y26_c00172{bottom:493.431000px;}
.y27_c00172{bottom:493.753500px;}
.y28_c00172{bottom:494.413500px;}
.y29_c00172{bottom:495.988500px;}
.y2a_c00172{bottom:496.837500px;}
.y1c_c00172{bottom:508.416000px;}
.y1d_c00172{bottom:510.292500px;}
.y1e_c00172{bottom:510.925500px;}
.y1f_c00172{bottom:511.416000px;}
.y20_c00172{bottom:512.581500px;}
.y21_c00172{bottom:513.043500px;}
.y22_c00172{bottom:513.837000px;}
.y12_c00172{bottom:525.966000px;}
.y13_c00172{bottom:526.554000px;}
.y14_c00172{bottom:526.825500px;}
.y15_c00172{bottom:527.608500px;}
.y16_c00172{bottom:528.685500px;}
.y17_c00172{bottom:529.273500px;}
.y18_c00172{bottom:529.744500px;}
.y19_c00172{bottom:530.104500px;}
.y1a_c00172{bottom:530.797500px;}
.y1b_c00172{bottom:532.362000px;}
.ya_c00172{bottom:543.514500px;}
.yb_c00172{bottom:544.438500px;}
.yc_c00172{bottom:544.897500px;}
.yd_c00172{bottom:546.031500px;}
.ye_c00172{bottom:547.785000px;}
.yf_c00172{bottom:548.014500px;}
.y10_c00172{bottom:548.652000px;}
.y11_c00172{bottom:549.025500px;}
.y2_c00172{bottom:561.334500px;}
.y3_c00172{bottom:562.329000px;}
.y4_c00172{bottom:563.518500px;}
.y5_c00172{bottom:563.769000px;}
.y6_c00172{bottom:564.909000px;}
.y7_c00172{bottom:565.581000px;}
.y8_c00172{bottom:566.073000px;}
.y9_c00172{bottom:566.791500px;}
.y1_c00172{bottom:587.562000px;}
.hb_c00172{height:52.500000px;}
.h9_c00172{height:57.750000px;}
.h12_c00172{height:58.804233px;}
.h8_c00172{height:59.850000px;}
.h13_c00172{height:59.854309px;}
.h3_c00172{height:60.900000px;}
.h11_c00172{height:60.904385px;}
.h7_c00172{height:61.950000px;}
.hd_c00172{height:61.954460px;}
.h2_c00172{height:63.000000px;}
.hc_c00172{height:63.004536px;}
.h5_c00172{height:64.050000px;}
.h14_c00172{height:64.054611px;}
.ha_c00172{height:65.100000px;}
.h10_c00172{height:65.104687px;}
.he_c00172{height:66.154763px;}
.hf_c00172{height:67.204838px;}
.h6_c00172{height:68.250000px;}
.h4_c00172{height:71.400000px;}
.h0_c00172{height:623.100000px;}
.h1_c00172{height:623.250000px;}
.w1_c00172{width:383.250000px;}
.w0_c00172{width:383.400000px;}
.x0_c00172{left:0.000000px;}
.x4_c00172{left:33.466500px;}
.x25_c00172{left:34.561500px;}
.x36_c00172{left:36.162000px;}
.x4a_c00172{left:37.251000px;}
.x6e_c00172{left:39.149118px;}
.x76_c00172{left:40.229778px;}
.x2e_c00172{left:43.888500px;}
.x2a_c00172{left:45.903000px;}
.x7a_c00172{left:48.330072px;}
.x63_c00172{left:56.159472px;}
.x3e_c00172{left:60.447000px;}
.x12_c00172{left:61.525500px;}
.x4f_c00172{left:62.550000px;}
.x7b_c00172{left:64.260858px;}
.x43_c00172{left:65.598000px;}
.x46_c00172{left:69.069000px;}
.x2f_c00172{left:70.452000px;}
.x13_c00172{left:74.446500px;}
.xb_c00172{left:77.476500px;}
.x3f_c00172{left:80.160000px;}
.x5d_c00172{left:81.273492px;}
.x5a_c00172{left:83.704974px;}
.x66_c00172{left:85.052928px;}
.x1_c00172{left:86.670000px;}
.x6b_c00172{left:90.062646px;}
.x20_c00172{left:96.582000px;}
.x74_c00172{left:97.753260px;}
.xc_c00172{left:99.354000px;}
.x4b_c00172{left:101.181000px;}
.x51_c00172{left:103.837500px;}
.x64_c00172{left:105.573582px;}
.x37_c00172{left:106.792500px;}
.x2b_c00172{left:110.713500px;}
.x14_c00172{left:111.763500px;}
.x4e_c00172{left:114.447000px;}
.x54_c00172{left:115.566954px;}
.x44_c00172{left:119.328000px;}
.x30_c00172{left:120.565500px;}
.x26_c00172{left:122.037000px;}
.x1b_c00172{left:123.645000px;}
.x3b_c00172{left:128.529000px;}
.x67_c00172{left:131.226570px;}
.x69_c00172{left:132.843588px;}
.x38_c00172{left:137.581500px;}
.x7c_c00172{left:139.325658px;}
.x31_c00172{left:144.705000px;}
.x5_c00172{left:148.440000px;}
.x6f_c00172{left:150.667674px;}
.x5e_c00172{left:152.017662px;}
.xd_c00172{left:153.364500px;}
.x40_c00172{left:155.656500px;}
.x2_c00172{left:159.570000px;}
.x6_c00172{left:161.652000px;}
.x15_c00172{left:163.018500px;}
.x21_c00172{left:165.150000px;}
.x3_c00172{left:168.210000px;}
.x70_c00172{left:171.189126px;}
.x2c_c00172{left:172.539000px;}
.x55_c00172{left:174.700968px;}
.x1c_c00172{left:177.121500px;}
.x4c_c00172{left:178.653000px;}
.x39_c00172{left:181.131000px;}
.x61_c00172{left:182.331036px;}
.x2d_c00172{left:184.927500px;}
.x68_c00172{left:186.850080px;}
.x41_c00172{left:188.335500px;}
.x16_c00172{left:191.052000px;}
.x56_c00172{left:194.952384px;}
.x71_c00172{left:196.841316px;}
.x22_c00172{left:198.174000px;}
.x5b_c00172{left:199.812696px;}
.x62_c00172{left:202.096770px;}
.x3c_c00172{left:204.120000px;}
.x27_c00172{left:207.100500px;}
.x17_c00172{left:213.457500px;}
.x65_c00172{left:216.822102px;}
.x57_c00172{left:218.444268px;}
.x52_c00172{left:220.495500px;}
.x7_c00172{left:221.635500px;}
.x45_c00172{left:222.739500px;}
.x32_c00172{left:224.074500px;}
.x3d_c00172{left:226.516500px;}
.x7d_c00172{left:228.162438px;}
.x18_c00172{left:230.578500px;}
.x1d_c00172{left:232.638000px;}
.x47_c00172{left:235.380000px;}
.xe_c00172{left:236.832000px;}
.x6c_c00172{left:241.219764px;}
.x5f_c00172{left:243.554838px;}
.x7e_c00172{left:246.253548px;}
.xf_c00172{left:247.755000px;}
.x78_c00172{left:251.372190px;}
.x72_c00172{left:253.004898px;}
.x1e_c00172{left:254.611500px;}
.x33_c00172{left:255.841500px;}
.x8_c00172{left:257.008500px;}
.x6a_c00172{left:258.660528px;}
.x48_c00172{left:259.869000px;}
.x19_c00172{left:263.544000px;}
.x58_c00172{left:267.588342px;}
.x73_c00172{left:270.555918px;}
.x79_c00172{left:271.911714px;}
.x34_c00172{left:273.784500px;}
.x23_c00172{left:276.949500px;}
.x10_c00172{left:278.100000px;}
.x59_c00172{left:279.738588px;}
.x49_c00172{left:281.238000px;}
.x9_c00172{left:282.930000px;}
.x28_c00172{left:291.331500px;}
.x1f_c00172{left:292.423500px;}
.x50_c00172{left:293.680500px;}
.x11_c00172{left:295.855500px;}
.x75_c00172{left:304.484472px;}
.x7f_c00172{left:305.657598px;}
.x3a_c00172{left:308.584500px;}
.x53_c00172{left:314.995500px;}
.x29_c00172{left:316.885500px;}
.x77_c00172{left:318.348810px;}
.x24_c00172{left:319.398000px;}
.xa_c00172{left:320.737500px;}
.x35_c00172{left:323.445000px;}
.x4d_c00172{left:325.318500px;}
.x60_c00172{left:327.260898px;}
.x5c_c00172{left:331.041096px;}
.x42_c00172{left:332.067000px;}
.x6d_c00172{left:334.675014px;}
.x1a_c00172{left:338.053500px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:0.000000pt;}
.fs9_c00172{font-size:46.666667pt;}
.fs7_c00172{font-size:51.333333pt;}
.fs10_c00172{font-size:52.270430pt;}
.fs6_c00172{font-size:53.200000pt;}
.fs11_c00172{font-size:53.203830pt;}
.fs1_c00172{font-size:54.133333pt;}
.fsf_c00172{font-size:54.137231pt;}
.fs5_c00172{font-size:55.066667pt;}
.fsb_c00172{font-size:55.070631pt;}
.fs0_c00172{font-size:56.000000pt;}
.fsa_c00172{font-size:56.004032pt;}
.fs3_c00172{font-size:56.933333pt;}
.fs12_c00172{font-size:56.937432pt;}
.fs8_c00172{font-size:57.866667pt;}
.fse_c00172{font-size:57.870833pt;}
.fsc_c00172{font-size:58.804233pt;}
.fsd_c00172{font-size:59.737634pt;}
.fs4_c00172{font-size:60.666667pt;}
.fs2_c00172{font-size:63.466667pt;}
.y0_c00172{bottom:0.000000pt;}
.ye8_c00172{bottom:25.529333pt;}
.ye0_c00172{bottom:39.058197pt;}
.ye1_c00172{bottom:39.058768pt;}
.ye2_c00172{bottom:39.059344pt;}
.ye3_c00172{bottom:39.059435pt;}
.ye6_c00172{bottom:39.059744pt;}
.ye4_c00172{bottom:39.059776pt;}
.ye7_c00172{bottom:39.059963pt;}
.ye5_c00172{bottom:39.060133pt;}
.yd9_c00172{bottom:49.917963pt;}
.yda_c00172{bottom:51.039088pt;}
.ydb_c00172{bottom:51.377909pt;}
.ydc_c00172{bottom:52.183173pt;}
.ydd_c00172{bottom:52.400085pt;}
.yde_c00172{bottom:53.291051pt;}
.ydf_c00172{bottom:53.619488pt;}
.yd4_c00172{bottom:70.553467pt;}
.yd3_c00172{bottom:70.553675pt;}
.yd5_c00172{bottom:70.553701pt;}
.yd6_c00172{bottom:70.553973pt;}
.yd8_c00172{bottom:70.554517pt;}
.yd7_c00172{bottom:70.554581pt;}
.ycb_c00172{bottom:80.643024pt;}
.ycc_c00172{bottom:81.836795pt;}
.ycd_c00172{bottom:82.207616pt;}
.yce_c00172{bottom:83.565125pt;}
.ycf_c00172{bottom:83.924469pt;}
.yd0_c00172{bottom:85.497669pt;}
.yd1_c00172{bottom:86.063552pt;}
.yd2_c00172{bottom:86.640304pt;}
.yc3_c00172{bottom:101.373253pt;}
.yc5_c00172{bottom:101.373280pt;}
.yc6_c00172{bottom:101.373477pt;}
.yc4_c00172{bottom:101.373488pt;}
.yc7_c00172{bottom:101.373728pt;}
.yc8_c00172{bottom:101.374053pt;}
.yc9_c00172{bottom:101.374571pt;}
.yca_c00172{bottom:101.374736pt;}
.ybb_c00172{bottom:115.196128pt;}
.ybc_c00172{bottom:115.656976pt;}
.ybd_c00172{bottom:115.918240pt;}
.ybe_c00172{bottom:116.398496pt;}
.ybf_c00172{bottom:116.588619pt;}
.yc0_c00172{bottom:117.001280pt;}
.yc1_c00172{bottom:117.205051pt;}
.yc2_c00172{bottom:117.831445pt;}
.yb4_c00172{bottom:133.264992pt;}
.yb5_c00172{bottom:133.265264pt;}
.yb6_c00172{bottom:133.265467pt;}
.yb7_c00172{bottom:133.266037pt;}
.yb8_c00172{bottom:133.266256pt;}
.yba_c00172{bottom:133.266437pt;}
.yb9_c00172{bottom:133.266880pt;}
.yae_c00172{bottom:143.280325pt;}
.yaf_c00172{bottom:144.592923pt;}
.yb0_c00172{bottom:144.825440pt;}
.yb1_c00172{bottom:146.086528pt;}
.yb2_c00172{bottom:147.060949pt;}
.yb3_c00172{bottom:148.087152pt;}
.ya7_c00172{bottom:163.811349pt;}
.ya6_c00172{bottom:163.811632pt;}
.ya9_c00172{bottom:163.811797pt;}
.ya8_c00172{bottom:163.811813pt;}
.yad_c00172{bottom:163.811883pt;}
.yab_c00172{bottom:163.812160pt;}
.yaa_c00172{bottom:163.812261pt;}
.yac_c00172{bottom:163.812272pt;}
.ya1_c00172{bottom:178.095051pt;}
.ya4_c00172{bottom:178.095205pt;}
.ya0_c00172{bottom:178.095227pt;}
.ya2_c00172{bottom:178.095392pt;}
.ya3_c00172{bottom:178.095520pt;}
.ya5_c00172{bottom:178.095568pt;}
.y98_c00172{bottom:191.758379pt;}
.y99_c00172{bottom:191.998821pt;}
.y9a_c00172{bottom:192.532517pt;}
.y9b_c00172{bottom:193.041051pt;}
.y9c_c00172{bottom:193.178859pt;}
.y9d_c00172{bottom:193.372357pt;}
.y9e_c00172{bottom:193.581419pt;}
.y9f_c00172{bottom:194.518069pt;}
.y91_c00172{bottom:209.847467pt;}
.y90_c00172{bottom:209.847819pt;}
.y92_c00172{bottom:209.848005pt;}
.y97_c00172{bottom:209.848288pt;}
.y94_c00172{bottom:209.848475pt;}
.y93_c00172{bottom:209.848629pt;}
.y96_c00172{bottom:209.848763pt;}
.y95_c00172{bottom:209.848885pt;}
.y8f_c00172{bottom:225.209483pt;}
.y88_c00172{bottom:225.209829pt;}
.y8d_c00172{bottom:225.209915pt;}
.y8e_c00172{bottom:225.209973pt;}
.y89_c00172{bottom:225.210080pt;}
.y8c_c00172{bottom:225.210197pt;}
.y8a_c00172{bottom:225.210277pt;}
.y8b_c00172{bottom:225.210635pt;}
.y7d_c00172{bottom:240.738309pt;}
.y87_c00172{bottom:240.738459pt;}
.y86_c00172{bottom:240.738795pt;}
.y7e_c00172{bottom:240.738811pt;}
.y83_c00172{bottom:240.738859pt;}
.y82_c00172{bottom:240.738981pt;}
.y84_c00172{bottom:240.738987pt;}
.y80_c00172{bottom:240.738992pt;}
.y81_c00172{bottom:240.738997pt;}
.y85_c00172{bottom:240.739237pt;}
.y7f_c00172{bottom:240.739435pt;}
.y75_c00172{bottom:254.641333pt;}
.y76_c00172{bottom:254.883925pt;}
.y77_c00172{bottom:255.353333pt;}
.y78_c00172{bottom:255.938005pt;}
.y79_c00172{bottom:256.285845pt;}
.y7a_c00172{bottom:256.597685pt;}
.y7b_c00172{bottom:257.383941pt;}
.y7c_c00172{bottom:257.605685pt;}
.y6e_c00172{bottom:270.482667pt;}
.y6f_c00172{bottom:271.201333pt;}
.y70_c00172{bottom:271.416000pt;}
.y71_c00172{bottom:272.236000pt;}
.y72_c00172{bottom:272.561333pt;}
.y73_c00172{bottom:272.881333pt;}
.y74_c00172{bottom:273.358667pt;}
.y6c_c00172{bottom:283.445333pt;}
.y6d_c00172{bottom:284.697333pt;}
.y64_c00172{bottom:299.766667pt;}
.y65_c00172{bottom:300.481333pt;}
.y66_c00172{bottom:300.845333pt;}
.y67_c00172{bottom:301.876000pt;}
.y68_c00172{bottom:302.154667pt;}
.y69_c00172{bottom:302.482667pt;}
.y6a_c00172{bottom:303.313333pt;}
.y6b_c00172{bottom:304.630667pt;}
.y5c_c00172{bottom:314.165333pt;}
.y5d_c00172{bottom:314.708000pt;}
.y5e_c00172{bottom:315.013333pt;}
.y5f_c00172{bottom:315.998667pt;}
.y60_c00172{bottom:316.454667pt;}
.y61_c00172{bottom:317.517333pt;}
.y62_c00172{bottom:317.930667pt;}
.y63_c00172{bottom:318.292000pt;}
.y55_c00172{bottom:328.325333pt;}
.y56_c00172{bottom:328.854667pt;}
.y57_c00172{bottom:329.809333pt;}
.y58_c00172{bottom:331.357333pt;}
.y59_c00172{bottom:331.648000pt;}
.y5a_c00172{bottom:332.606667pt;}
.y5b_c00172{bottom:333.312000pt;}
.y4d_c00172{bottom:344.405333pt;}
.y4e_c00172{bottom:344.808000pt;}
.y4f_c00172{bottom:345.141333pt;}
.y50_c00172{bottom:346.416000pt;}
.y51_c00172{bottom:346.968000pt;}
.y52_c00172{bottom:347.689333pt;}
.y53_c00172{bottom:347.985333pt;}
.y54_c00172{bottom:349.394667pt;}
.y46_c00172{bottom:359.048000pt;}
.y47_c00172{bottom:360.040000pt;}
.y48_c00172{bottom:360.848000pt;}
.y49_c00172{bottom:361.338667pt;}
.y4a_c00172{bottom:362.326667pt;}
.y4b_c00172{bottom:362.764000pt;}
.y4c_c00172{bottom:363.177333pt;}
.y40_c00172{bottom:375.125333pt;}
.y41_c00172{bottom:376.381333pt;}
.y42_c00172{bottom:376.929333pt;}
.y43_c00172{bottom:377.704000pt;}
.y44_c00172{bottom:378.294667pt;}
.y45_c00172{bottom:379.969333pt;}
.y37_c00172{bottom:390.244000pt;}
.y38_c00172{bottom:390.397333pt;}
.y39_c00172{bottom:390.869333pt;}
.y3a_c00172{bottom:391.760000pt;}
.y3b_c00172{bottom:392.189333pt;}
.y3c_c00172{bottom:393.600000pt;}
.y3d_c00172{bottom:394.165333pt;}
.y3e_c00172{bottom:394.484000pt;}
.y3f_c00172{bottom:395.366667pt;}
.y30_c00172{bottom:405.364000pt;}
.y31_c00172{bottom:405.566667pt;}
.y32_c00172{bottom:406.776000pt;}
.y33_c00172{bottom:407.930667pt;}
.y34_c00172{bottom:408.161333pt;}
.y35_c00172{bottom:408.845333pt;}
.y36_c00172{bottom:409.493333pt;}
.y2b_c00172{bottom:420.965333pt;}
.y2c_c00172{bottom:422.598667pt;}
.y2d_c00172{bottom:424.186667pt;}
.y2e_c00172{bottom:425.758667pt;}
.y2f_c00172{bottom:426.236000pt;}
.y23_c00172{bottom:436.565333pt;}
.y24_c00172{bottom:437.269333pt;}
.y25_c00172{bottom:437.673333pt;}
.y26_c00172{bottom:438.605333pt;}
.y27_c00172{bottom:438.892000pt;}
.y28_c00172{bottom:439.478667pt;}
.y29_c00172{bottom:440.878667pt;}
.y2a_c00172{bottom:441.633333pt;}
.y1c_c00172{bottom:451.925333pt;}
.y1d_c00172{bottom:453.593333pt;}
.y1e_c00172{bottom:454.156000pt;}
.y1f_c00172{bottom:454.592000pt;}
.y20_c00172{bottom:455.628000pt;}
.y21_c00172{bottom:456.038667pt;}
.y22_c00172{bottom:456.744000pt;}
.y12_c00172{bottom:467.525333pt;}
.y13_c00172{bottom:468.048000pt;}
.y14_c00172{bottom:468.289333pt;}
.y15_c00172{bottom:468.985333pt;}
.y16_c00172{bottom:469.942667pt;}
.y17_c00172{bottom:470.465333pt;}
.y18_c00172{bottom:470.884000pt;}
.y19_c00172{bottom:471.204000pt;}
.y1a_c00172{bottom:471.820000pt;}
.y1b_c00172{bottom:473.210667pt;}
.ya_c00172{bottom:483.124000pt;}
.yb_c00172{bottom:483.945333pt;}
.yc_c00172{bottom:484.353333pt;}
.yd_c00172{bottom:485.361333pt;}
.ye_c00172{bottom:486.920000pt;}
.yf_c00172{bottom:487.124000pt;}
.y10_c00172{bottom:487.690667pt;}
.y11_c00172{bottom:488.022667pt;}
.y2_c00172{bottom:498.964000pt;}
.y3_c00172{bottom:499.848000pt;}
.y4_c00172{bottom:500.905333pt;}
.y5_c00172{bottom:501.128000pt;}
.y6_c00172{bottom:502.141333pt;}
.y7_c00172{bottom:502.738667pt;}
.y8_c00172{bottom:503.176000pt;}
.y9_c00172{bottom:503.814667pt;}
.y1_c00172{bottom:522.277333pt;}
.hb_c00172{height:46.666667pt;}
.h9_c00172{height:51.333333pt;}
.h12_c00172{height:52.270430pt;}
.h8_c00172{height:53.200000pt;}
.h13_c00172{height:53.203830pt;}
.h3_c00172{height:54.133333pt;}
.h11_c00172{height:54.137231pt;}
.h7_c00172{height:55.066667pt;}
.hd_c00172{height:55.070631pt;}
.h2_c00172{height:56.000000pt;}
.hc_c00172{height:56.004032pt;}
.h5_c00172{height:56.933333pt;}
.h14_c00172{height:56.937432pt;}
.ha_c00172{height:57.866667pt;}
.h10_c00172{height:57.870833pt;}
.he_c00172{height:58.804233pt;}
.hf_c00172{height:59.737634pt;}
.h6_c00172{height:60.666667pt;}
.h4_c00172{height:63.466667pt;}
.h0_c00172{height:553.866667pt;}
.h1_c00172{height:554.000000pt;}
.w1_c00172{width:340.666667pt;}
.w0_c00172{width:340.800000pt;}
.x0_c00172{left:0.000000pt;}
.x4_c00172{left:29.748000pt;}
.x25_c00172{left:30.721333pt;}
.x36_c00172{left:32.144000pt;}
.x4a_c00172{left:33.112000pt;}
.x6e_c00172{left:34.799216pt;}
.x76_c00172{left:35.759803pt;}
.x2e_c00172{left:39.012000pt;}
.x2a_c00172{left:40.802667pt;}
.x7a_c00172{left:42.960064pt;}
.x63_c00172{left:49.919531pt;}
.x3e_c00172{left:53.730667pt;}
.x12_c00172{left:54.689333pt;}
.x4f_c00172{left:55.600000pt;}
.x7b_c00172{left:57.120763pt;}
.x43_c00172{left:58.309333pt;}
.x46_c00172{left:61.394667pt;}
.x2f_c00172{left:62.624000pt;}
.x13_c00172{left:66.174667pt;}
.xb_c00172{left:68.868000pt;}
.x3f_c00172{left:71.253333pt;}
.x5d_c00172{left:72.243104pt;}
.x5a_c00172{left:74.404421pt;}
.x66_c00172{left:75.602603pt;}
.x1_c00172{left:77.040000pt;}
.x6b_c00172{left:80.055685pt;}
.x20_c00172{left:85.850667pt;}
.x74_c00172{left:86.891787pt;}
.xc_c00172{left:88.314667pt;}
.x4b_c00172{left:89.938667pt;}
.x51_c00172{left:92.300000pt;}
.x64_c00172{left:93.843184pt;}
.x37_c00172{left:94.926667pt;}
.x2b_c00172{left:98.412000pt;}
.x14_c00172{left:99.345333pt;}
.x4e_c00172{left:101.730667pt;}
.x54_c00172{left:102.726181pt;}
.x44_c00172{left:106.069333pt;}
.x30_c00172{left:107.169333pt;}
.x26_c00172{left:108.477333pt;}
.x1b_c00172{left:109.906667pt;}
.x3b_c00172{left:114.248000pt;}
.x67_c00172{left:116.645840pt;}
.x69_c00172{left:118.083189pt;}
.x38_c00172{left:122.294667pt;}
.x7c_c00172{left:123.845029pt;}
.x31_c00172{left:128.626667pt;}
.x5_c00172{left:131.946667pt;}
.x6f_c00172{left:133.926821pt;}
.x5e_c00172{left:135.126811pt;}
.xd_c00172{left:136.324000pt;}
.x40_c00172{left:138.361333pt;}
.x2_c00172{left:141.840000pt;}
.x6_c00172{left:143.690667pt;}
.x15_c00172{left:144.905333pt;}
.x21_c00172{left:146.800000pt;}
.x3_c00172{left:149.520000pt;}
.x70_c00172{left:152.168112pt;}
.x2c_c00172{left:153.368000pt;}
.x55_c00172{left:155.289749pt;}
.x1c_c00172{left:157.441333pt;}
.x4c_c00172{left:158.802667pt;}
.x39_c00172{left:161.005333pt;}
.x61_c00172{left:162.072032pt;}
.x2d_c00172{left:164.380000pt;}
.x68_c00172{left:166.088960pt;}
.x41_c00172{left:167.409333pt;}
.x16_c00172{left:169.824000pt;}
.x56_c00172{left:173.291008pt;}
.x71_c00172{left:174.970059pt;}
.x22_c00172{left:176.154667pt;}
.x5b_c00172{left:177.611285pt;}
.x62_c00172{left:179.641573pt;}
.x3c_c00172{left:181.440000pt;}
.x27_c00172{left:184.089333pt;}
.x17_c00172{left:189.740000pt;}
.x65_c00172{left:192.730757pt;}
.x57_c00172{left:194.172683pt;}
.x52_c00172{left:195.996000pt;}
.x7_c00172{left:197.009333pt;}
.x45_c00172{left:197.990667pt;}
.x32_c00172{left:199.177333pt;}
.x3d_c00172{left:201.348000pt;}
.x7d_c00172{left:202.811056pt;}
.x18_c00172{left:204.958667pt;}
.x1d_c00172{left:206.789333pt;}
.x47_c00172{left:209.226667pt;}
.xe_c00172{left:210.517333pt;}
.x6c_c00172{left:214.417568pt;}
.x5f_c00172{left:216.493189pt;}
.x7e_c00172{left:218.892043pt;}
.xf_c00172{left:220.226667pt;}
.x78_c00172{left:223.441947pt;}
.x72_c00172{left:224.893243pt;}
.x1e_c00172{left:226.321333pt;}
.x33_c00172{left:227.414667pt;}
.x8_c00172{left:228.452000pt;}
.x6a_c00172{left:229.920469pt;}
.x48_c00172{left:230.994667pt;}
.x19_c00172{left:234.261333pt;}
.x58_c00172{left:237.856304pt;}
.x73_c00172{left:240.494149pt;}
.x79_c00172{left:241.699301pt;}
.x34_c00172{left:243.364000pt;}
.x23_c00172{left:246.177333pt;}
.x10_c00172{left:247.200000pt;}
.x59_c00172{left:248.656523pt;}
.x49_c00172{left:249.989333pt;}
.x9_c00172{left:251.493333pt;}
.x28_c00172{left:258.961333pt;}
.x1f_c00172{left:259.932000pt;}
.x50_c00172{left:261.049333pt;}
.x11_c00172{left:262.982667pt;}
.x75_c00172{left:270.652864pt;}
.x7f_c00172{left:271.695643pt;}
.x3a_c00172{left:274.297333pt;}
.x53_c00172{left:279.996000pt;}
.x29_c00172{left:281.676000pt;}
.x77_c00172{left:282.976720pt;}
.x24_c00172{left:283.909333pt;}
.xa_c00172{left:285.100000pt;}
.x35_c00172{left:287.506667pt;}
.x4d_c00172{left:289.172000pt;}
.x60_c00172{left:290.898576pt;}
.x5c_c00172{left:294.258752pt;}
.x42_c00172{left:295.170667pt;}
.x6d_c00172{left:297.488901pt;}
.x1a_c00172{left:300.492000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00173 {
    display:none;
  }
  .loading-indicator_c00173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00173 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00173 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00173" -> "#page-container .classname_c00173")
 */
.pf_c00173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00173 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00173 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00173 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00173 {overflow:visible;}
  }
}
.c_c00173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00173 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00173:after { /* webkit #35443 */
  content: '';
}
.t_c00173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00173 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00173 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00173 { /* info for Javascript */
  display:none;
}
.l_c00173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00173:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00173 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00173.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf7_c00173{transform:matrix(0.132976,0.002792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.132976,0.002792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.132976,0.002792,-0.005249,0.249945,0,0);}
.mb2_c00173{transform:matrix(0.133251,0.002798,-0.005249,0.249945,0,0);-ms-transform:matrix(0.133251,0.002798,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.133251,0.002798,-0.005249,0.249945,0,0);}
.mb4_c00173{transform:matrix(0.149977,0.003150,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149977,0.003150,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149977,0.003150,-0.005249,0.249945,0,0);}
.m79_c00173{transform:matrix(0.153986,0.003234,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153986,0.003234,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153986,0.003234,-0.005249,0.249945,0,0);}
.m8c_c00173{transform:matrix(0.154791,0.003251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154791,0.003251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154791,0.003251,-0.005249,0.249945,0,0);}
.m68_c00173{transform:matrix(0.156371,0.003284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156371,0.003284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156371,0.003284,-0.005249,0.249945,0,0);}
.med_c00173{transform:matrix(0.158785,0.003334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158785,0.003334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158785,0.003334,-0.005249,0.249945,0,0);}
.md_c00173{transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);}
.me4_c00173{transform:matrix(0.160640,0.003373,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160640,0.003373,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160640,0.003373,-0.005249,0.249945,0,0);}
.m51_c00173{transform:matrix(0.161254,0.003386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161254,0.003386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161254,0.003386,-0.005249,0.249945,0,0);}
.m41_c00173{transform:matrix(0.161424,0.003390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161424,0.003390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161424,0.003390,-0.005249,0.249945,0,0);}
.m7d_c00173{transform:matrix(0.161964,0.003401,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161964,0.003401,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161964,0.003401,-0.005249,0.249945,0,0);}
.m69_c00173{transform:matrix(0.163134,0.003426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163134,0.003426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163134,0.003426,-0.005249,0.249945,0,0);}
.mea_c00173{transform:matrix(0.163249,0.003428,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163249,0.003428,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163249,0.003428,-0.005249,0.249945,0,0);}
.mec_c00173{transform:matrix(0.163379,0.003431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163379,0.003431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163379,0.003431,-0.005249,0.249945,0,0);}
.m85_c00173{transform:matrix(0.164039,0.003445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164039,0.003445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164039,0.003445,-0.005249,0.249945,0,0);}
.m84_c00173{transform:matrix(0.165089,0.003467,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165089,0.003467,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165089,0.003467,-0.005249,0.249945,0,0);}
.mdb_c00173{transform:matrix(0.165159,0.003468,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165159,0.003468,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165159,0.003468,-0.005249,0.249945,0,0);}
.me1_c00173{transform:matrix(0.165539,0.003476,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165539,0.003476,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165539,0.003476,-0.005249,0.249945,0,0);}
.m16_c00173{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m7e_c00173{transform:matrix(0.166848,0.003504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166848,0.003504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166848,0.003504,-0.005249,0.249945,0,0);}
.m6d_c00173{transform:matrix(0.166963,0.003506,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166963,0.003506,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166963,0.003506,-0.005249,0.249945,0,0);}
.me5_c00173{transform:matrix(0.167138,0.003510,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167138,0.003510,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167138,0.003510,-0.005249,0.249945,0,0);}
.m17_c00173{transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.169535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169535,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(0.170217,0.003575,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170217,0.003575,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170217,0.003575,-0.005249,0.249945,0,0);}
.m96_c00173{transform:matrix(0.171042,0.003592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171042,0.003592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171042,0.003592,-0.005249,0.249945,0,0);}
.m1b_c00173{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.171722,0.003606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171722,0.003606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171722,0.003606,-0.005249,0.249945,0,0);}
.mee_c00173{transform:matrix(0.172057,0.003613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172057,0.003613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172057,0.003613,-0.005249,0.249945,0,0);}
.mad_c00173{transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);}
.m20_c00173{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.me2_c00173{transform:matrix(0.173952,0.003653,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173952,0.003653,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173952,0.003653,-0.005249,0.249945,0,0);}
.m48_c00173{transform:matrix(0.173962,0.003653,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173962,0.003653,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173962,0.003653,-0.005249,0.249945,0,0);}
.m15_c00173{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m8f_c00173{transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174582,0.003666,-0.005249,0.249945,0,0);}
.m24_c00173{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);}
.me_c00173{transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);}
.mbd_c00173{transform:matrix(0.176786,0.003713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176786,0.003713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176786,0.003713,-0.005249,0.249945,0,0);}
.m18_c00173{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);}
.m65_c00173{transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);}
.md1_c00173{transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);}
.m7a_c00173{transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);}
.mcd_c00173{transform:matrix(0.177901,0.003736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177901,0.003736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177901,0.003736,-0.005249,0.249945,0,0);}
.m97_c00173{transform:matrix(0.177916,0.003736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177916,0.003736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177916,0.003736,-0.005249,0.249945,0,0);}
.m70_c00173{transform:matrix(0.178121,0.003741,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178121,0.003741,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178121,0.003741,-0.005249,0.249945,0,0);}
.m72_c00173{transform:matrix(0.178281,0.003744,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178281,0.003744,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178281,0.003744,-0.005249,0.249945,0,0);}
.mc3_c00173{transform:matrix(0.178611,0.003751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178611,0.003751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178611,0.003751,-0.005249,0.249945,0,0);}
.m7f_c00173{transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);}
.me6_c00173{transform:matrix(0.179315,0.003766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179315,0.003766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179315,0.003766,-0.005249,0.249945,0,0);}
.m5_c00173{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.mca_c00173{transform:matrix(0.180385,0.003788,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180385,0.003788,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180385,0.003788,-0.005249,0.249945,0,0);}
.m9f_c00173{transform:matrix(0.180405,0.003789,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180405,0.003789,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180405,0.003789,-0.005249,0.249945,0,0);}
.m63_c00173{transform:matrix(0.180690,0.003794,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180690,0.003794,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180690,0.003794,-0.005249,0.249945,0,0);}
.meb_c00173{transform:matrix(0.180865,0.003798,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180865,0.003798,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180865,0.003798,-0.005249,0.249945,0,0);}
.m6b_c00173{transform:matrix(0.181150,0.003804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181150,0.003804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181150,0.003804,-0.005249,0.249945,0,0);}
.m23_c00173{transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.m6e_c00173{transform:matrix(0.181940,0.003821,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181940,0.003821,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181940,0.003821,-0.005249,0.249945,0,0);}
.mc_c00173{transform:matrix(0.181955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181955,0.000000,0.000000,0.250000,0,0);}
.mfc_c00173{transform:matrix(0.182415,0.003831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182415,0.003831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182415,0.003831,-0.005249,0.249945,0,0);}
.ma_c00173{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.mcb_c00173{transform:matrix(0.182660,0.003836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182660,0.003836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182660,0.003836,-0.005249,0.249945,0,0);}
.m88_c00173{transform:matrix(0.182740,0.003838,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182740,0.003838,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182740,0.003838,-0.005249,0.249945,0,0);}
.m6f_c00173{transform:matrix(0.183375,0.003851,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183375,0.003851,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183375,0.003851,-0.005249,0.249945,0,0);}
.m1e_c00173{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.mae_c00173{transform:matrix(0.183834,0.003861,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183834,0.003861,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183834,0.003861,-0.005249,0.249945,0,0);}
.m73_c00173{transform:matrix(0.183974,0.003863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183974,0.003863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183974,0.003863,-0.005249,0.249945,0,0);}
.m6_c00173{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.m81_c00173{transform:matrix(0.184394,0.003872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184394,0.003872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184394,0.003872,-0.005249,0.249945,0,0);}
.m7b_c00173{transform:matrix(0.184399,0.003872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184399,0.003872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184399,0.003872,-0.005249,0.249945,0,0);}
.m71_c00173{transform:matrix(0.184869,0.003882,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184869,0.003882,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184869,0.003882,-0.005249,0.249945,0,0);}
.m60_c00173{transform:matrix(0.185284,0.003891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185284,0.003891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185284,0.003891,-0.005249,0.249945,0,0);}
.m9c_c00173{transform:matrix(0.186429,0.003915,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186429,0.003915,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186429,0.003915,-0.005249,0.249945,0,0);}
.m4e_c00173{transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);}
.me8_c00173{transform:matrix(0.186664,0.003920,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186664,0.003920,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186664,0.003920,-0.005249,0.249945,0,0);}
.m3f_c00173{transform:matrix(0.187399,0.003935,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187399,0.003935,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187399,0.003935,-0.005249,0.249945,0,0);}
.m78_c00173{transform:matrix(0.187619,0.003940,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187619,0.003940,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187619,0.003940,-0.005249,0.249945,0,0);}
.m98_c00173{transform:matrix(0.187849,0.003945,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187849,0.003945,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187849,0.003945,-0.005249,0.249945,0,0);}
.m58_c00173{transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187929,0.003946,-0.005249,0.249945,0,0);}
.me9_c00173{transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187939,0.003947,-0.005249,0.249945,0,0);}
.m6c_c00173{transform:matrix(0.188428,0.003957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188428,0.003957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188428,0.003957,-0.005249,0.249945,0,0);}
.m80_c00173{transform:matrix(0.188763,0.003964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188763,0.003964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188763,0.003964,-0.005249,0.249945,0,0);}
.m93_c00173{transform:matrix(0.188878,0.003966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188878,0.003966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188878,0.003966,-0.005249,0.249945,0,0);}
.m22_c00173{transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.189268,0.003975,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189268,0.003975,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189268,0.003975,-0.005249,0.249945,0,0);}
.m53_c00173{transform:matrix(0.189283,0.003975,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189283,0.003975,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189283,0.003975,-0.005249,0.249945,0,0);}
.m4c_c00173{transform:matrix(0.189378,0.003977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189378,0.003977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189378,0.003977,-0.005249,0.249945,0,0);}
.m1c_c00173{transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.mcc_c00173{transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);}
.m13_c00173{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m2d_c00173{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m6a_c00173{transform:matrix(0.191088,0.004013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191088,0.004013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191088,0.004013,-0.005249,0.249945,0,0);}
.m46_c00173{transform:matrix(0.191338,0.004018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191338,0.004018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191338,0.004018,-0.005249,0.249945,0,0);}
.mfb_c00173{transform:matrix(0.191368,0.004019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191368,0.004019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191368,0.004019,-0.005249,0.249945,0,0);}
.mdf_c00173{transform:matrix(0.191488,0.004021,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191488,0.004021,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191488,0.004021,-0.005249,0.249945,0,0);}
.m82_c00173{transform:matrix(0.191588,0.004023,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191588,0.004023,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191588,0.004023,-0.005249,0.249945,0,0);}
.m10_c00173{transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);}
.mdc_c00173{transform:matrix(0.192263,0.004038,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192263,0.004038,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192263,0.004038,-0.005249,0.249945,0,0);}
.mf4_c00173{transform:matrix(0.192343,0.004039,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192343,0.004039,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192343,0.004039,-0.005249,0.249945,0,0);}
.m2f_c00173{transform:matrix(0.192623,0.004045,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192623,0.004045,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192623,0.004045,-0.005249,0.249945,0,0);}
.m21_c00173{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{transform:matrix(0.193532,0.004064,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193532,0.004064,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193532,0.004064,-0.005249,0.249945,0,0);}
.m52_c00173{transform:matrix(0.193622,0.004066,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193622,0.004066,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193622,0.004066,-0.005249,0.249945,0,0);}
.m11_c00173{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m92_c00173{transform:matrix(0.194287,0.004080,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194287,0.004080,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194287,0.004080,-0.005249,0.249945,0,0);}
.mb1_c00173{transform:matrix(0.194782,0.004090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194782,0.004090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194782,0.004090,-0.005249,0.249945,0,0);}
.mf9_c00173{transform:matrix(0.194807,0.004091,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194807,0.004091,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194807,0.004091,-0.005249,0.249945,0,0);}
.m7c_c00173{transform:matrix(0.195227,0.004100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195227,0.004100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195227,0.004100,-0.005249,0.249945,0,0);}
.mc6_c00173{transform:matrix(0.195447,0.004104,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195447,0.004104,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195447,0.004104,-0.005249,0.249945,0,0);}
.md2_c00173{transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);}
.mde_c00173{transform:matrix(0.195672,0.004109,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195672,0.004109,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195672,0.004109,-0.005249,0.249945,0,0);}
.mf6_c00173{transform:matrix(0.195747,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195747,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195747,0.004111,-0.005249,0.249945,0,0);}
.mb3_c00173{transform:matrix(0.195852,0.004113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195852,0.004113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195852,0.004113,-0.005249,0.249945,0,0);}
.mef_c00173{transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);}
.m8b_c00173{transform:matrix(0.196337,0.004123,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196337,0.004123,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196337,0.004123,-0.005249,0.249945,0,0);}
.m1a_c00173{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.ma4_c00173{transform:matrix(0.197371,0.004145,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197371,0.004145,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197371,0.004145,-0.005249,0.249945,0,0);}
.mc5_c00173{transform:matrix(0.197536,0.004148,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197536,0.004148,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197536,0.004148,-0.005249,0.249945,0,0);}
.m4f_c00173{transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197836,0.004155,-0.005249,0.249945,0,0);}
.m95_c00173{transform:matrix(0.198331,0.004165,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198331,0.004165,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198331,0.004165,-0.005249,0.249945,0,0);}
.m89_c00173{transform:matrix(0.198536,0.004169,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198536,0.004169,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198536,0.004169,-0.005249,0.249945,0,0);}
.m1_c00173{transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);}
.me7_c00173{transform:matrix(0.198781,0.004174,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198781,0.004174,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198781,0.004174,-0.005249,0.249945,0,0);}
.m76_c00173{transform:matrix(0.199296,0.004185,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199296,0.004185,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199296,0.004185,-0.005249,0.249945,0,0);}
.m74_c00173{transform:matrix(0.199336,0.004186,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199336,0.004186,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199336,0.004186,-0.005249,0.249945,0,0);}
.mf8_c00173{transform:matrix(0.199771,0.004195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199771,0.004195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199771,0.004195,-0.005249,0.249945,0,0);}
.m83_c00173{transform:matrix(0.199931,0.004199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199931,0.004199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199931,0.004199,-0.005249,0.249945,0,0);}
.mc7_c00173{transform:matrix(0.199981,0.004200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199981,0.004200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199981,0.004200,-0.005249,0.249945,0,0);}
.mb_c00173{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.200221,0.004205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200221,0.004205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200221,0.004205,-0.005249,0.249945,0,0);}
.mb8_c00173{transform:matrix(0.200291,0.004206,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200291,0.004206,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200291,0.004206,-0.005249,0.249945,0,0);}
.m1f_c00173{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.mdd_c00173{transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);}
.me3_c00173{transform:matrix(0.201491,0.004231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201491,0.004231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201491,0.004231,-0.005249,0.249945,0,0);}
.mbc_c00173{transform:matrix(0.201576,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201576,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201576,0.004233,-0.005249,0.249945,0,0);}
.m5b_c00173{transform:matrix(0.201885,0.004240,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201885,0.004240,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201885,0.004240,-0.005249,0.249945,0,0);}
.md0_c00173{transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);}
.m75_c00173{transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202145,0.004245,-0.005249,0.249945,0,0);}
.m94_c00173{transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);}
.m47_c00173{transform:matrix(0.202630,0.004255,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202630,0.004255,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202630,0.004255,-0.005249,0.249945,0,0);}
.ma5_c00173{transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);}
.m4b_c00173{transform:matrix(0.203510,0.004274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203510,0.004274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203510,0.004274,-0.005249,0.249945,0,0);}
.m99_c00173{transform:matrix(0.203620,0.004276,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203620,0.004276,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203620,0.004276,-0.005249,0.249945,0,0);}
.md5_c00173{transform:matrix(0.203785,0.004279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203785,0.004279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203785,0.004279,-0.005249,0.249945,0,0);}
.m44_c00173{transform:matrix(0.203850,0.004281,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203850,0.004281,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203850,0.004281,-0.005249,0.249945,0,0);}
.m59_c00173{transform:matrix(0.204175,0.004288,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204175,0.004288,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204175,0.004288,-0.005249,0.249945,0,0);}
.m14_c00173{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00173{transform:matrix(0.204660,0.004298,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204660,0.004298,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204660,0.004298,-0.005249,0.249945,0,0);}
.mce_c00173{transform:matrix(0.204845,0.004302,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204845,0.004302,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204845,0.004302,-0.005249,0.249945,0,0);}
.m9e_c00173{transform:matrix(0.204945,0.004304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204945,0.004304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204945,0.004304,-0.005249,0.249945,0,0);}
.m5e_c00173{transform:matrix(0.205350,0.004312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205350,0.004312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205350,0.004312,-0.005249,0.249945,0,0);}
.m25_c00173{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.mf0_c00173{transform:matrix(0.205710,0.004320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205710,0.004320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205710,0.004320,-0.005249,0.249945,0,0);}
.m32_c00173{transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);}
.m27_c00173{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);}
.md6_c00173{transform:matrix(0.206145,0.004329,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206145,0.004329,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206145,0.004329,-0.005249,0.249945,0,0);}
.mbb_c00173{transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206774,0.004342,-0.005249,0.249945,0,0);}
.m61_c00173{transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);}
.m66_c00173{transform:matrix(0.206894,0.004345,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206894,0.004345,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206894,0.004345,-0.005249,0.249945,0,0);}
.m9a_c00173{transform:matrix(0.207124,0.004350,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207124,0.004350,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207124,0.004350,-0.005249,0.249945,0,0);}
.m43_c00173{transform:matrix(0.207249,0.004352,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207249,0.004352,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207249,0.004352,-0.005249,0.249945,0,0);}
.m8e_c00173{transform:matrix(0.207369,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207369,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207369,0.004355,-0.005249,0.249945,0,0);}
.mfa_c00173{transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);}
.m9_c00173{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00173{transform:matrix(0.208374,0.004376,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208374,0.004376,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208374,0.004376,-0.005249,0.249945,0,0);}
.m62_c00173{transform:matrix(0.208539,0.004379,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208539,0.004379,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208539,0.004379,-0.005249,0.249945,0,0);}
.m30_c00173{transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208654,0.004382,-0.005249,0.249945,0,0);}
.m49_c00173{transform:matrix(0.208839,0.004386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208839,0.004386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208839,0.004386,-0.005249,0.249945,0,0);}
.mb5_c00173{transform:matrix(0.208929,0.004388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208929,0.004388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208929,0.004388,-0.005249,0.249945,0,0);}
.m40_c00173{transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210469,0.004420,-0.005249,0.249945,0,0);}
.mbf_c00173{transform:matrix(0.211018,0.004431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211018,0.004431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211018,0.004431,-0.005249,0.249945,0,0);}
.maa_c00173{transform:matrix(0.211198,0.004435,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211198,0.004435,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211198,0.004435,-0.005249,0.249945,0,0);}
.mab_c00173{transform:matrix(0.211243,0.004436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211243,0.004436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211243,0.004436,-0.005249,0.249945,0,0);}
.m90_c00173{transform:matrix(0.211398,0.004439,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211398,0.004439,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211398,0.004439,-0.005249,0.249945,0,0);}
.mf_c00173{transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);}
.ma3_c00173{transform:matrix(0.212863,0.004470,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212863,0.004470,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212863,0.004470,-0.005249,0.249945,0,0);}
.mb7_c00173{transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212998,0.004473,-0.005249,0.249945,0,0);}
.mb6_c00173{transform:matrix(0.213393,0.004481,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213393,0.004481,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213393,0.004481,-0.005249,0.249945,0,0);}
.m64_c00173{transform:matrix(0.214003,0.004494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214003,0.004494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214003,0.004494,-0.005249,0.249945,0,0);}
.m9b_c00173{transform:matrix(0.214933,0.004514,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214933,0.004514,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214933,0.004514,-0.005249,0.249945,0,0);}
.m5c_c00173{transform:matrix(0.215353,0.004522,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215353,0.004522,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215353,0.004522,-0.005249,0.249945,0,0);}
.m77_c00173{transform:matrix(0.215582,0.004527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215582,0.004527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215582,0.004527,-0.005249,0.249945,0,0);}
.mac_c00173{transform:matrix(0.216152,0.004539,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216152,0.004539,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216152,0.004539,-0.005249,0.249945,0,0);}
.md4_c00173{transform:matrix(0.216732,0.004551,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216732,0.004551,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216732,0.004551,-0.005249,0.249945,0,0);}
.md8_c00173{transform:matrix(0.216852,0.004554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216852,0.004554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216852,0.004554,-0.005249,0.249945,0,0);}
.mb9_c00173{transform:matrix(0.217037,0.004558,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217037,0.004558,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217037,0.004558,-0.005249,0.249945,0,0);}
.m35_c00173{transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);}
.m8d_c00173{transform:matrix(0.218067,0.004579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218067,0.004579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218067,0.004579,-0.005249,0.249945,0,0);}
.m26_c00173{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.ma2_c00173{transform:matrix(0.220441,0.004629,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220441,0.004629,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220441,0.004629,-0.005249,0.249945,0,0);}
.mbe_c00173{transform:matrix(0.221016,0.004641,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221016,0.004641,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221016,0.004641,-0.005249,0.249945,0,0);}
.mc9_c00173{transform:matrix(0.221151,0.004644,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221151,0.004644,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221151,0.004644,-0.005249,0.249945,0,0);}
.mda_c00173{transform:matrix(0.221256,0.004646,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221256,0.004646,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221256,0.004646,-0.005249,0.249945,0,0);}
.mf3_c00173{transform:matrix(0.221936,0.004661,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221936,0.004661,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221936,0.004661,-0.005249,0.249945,0,0);}
.m2c_c00173{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m54_c00173{transform:matrix(0.222996,0.004683,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222996,0.004683,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222996,0.004683,-0.005249,0.249945,0,0);}
.md3_c00173{transform:matrix(0.223146,0.004686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223146,0.004686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223146,0.004686,-0.005249,0.249945,0,0);}
.ma8_c00173{transform:matrix(0.223611,0.004696,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223611,0.004696,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223611,0.004696,-0.005249,0.249945,0,0);}
.me0_c00173{transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);}
.md9_c00173{transform:matrix(0.223966,0.004703,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223966,0.004703,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223966,0.004703,-0.005249,0.249945,0,0);}
.m5a_c00173{transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);}
.m5d_c00173{transform:matrix(0.224466,0.004714,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224466,0.004714,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224466,0.004714,-0.005249,0.249945,0,0);}
.mc8_c00173{transform:matrix(0.224760,0.004720,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224760,0.004720,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224760,0.004720,-0.005249,0.249945,0,0);}
.ma6_c00173{transform:matrix(0.224930,0.004724,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224930,0.004724,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224930,0.004724,-0.005249,0.249945,0,0);}
.ma9_c00173{transform:matrix(0.225025,0.004726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225025,0.004726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225025,0.004726,-0.005249,0.249945,0,0);}
.mc4_c00173{transform:matrix(0.225560,0.004737,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225560,0.004737,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225560,0.004737,-0.005249,0.249945,0,0);}
.mc2_c00173{transform:matrix(0.226495,0.004756,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226495,0.004756,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226495,0.004756,-0.005249,0.249945,0,0);}
.m2e_c00173{transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);}
.mc0_c00173{transform:matrix(0.226960,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226960,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226960,0.004766,-0.005249,0.249945,0,0);}
.mcf_c00173{transform:matrix(0.229209,0.004813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229209,0.004813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229209,0.004813,-0.005249,0.249945,0,0);}
.mf5_c00173{transform:matrix(0.229894,0.004828,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229894,0.004828,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229894,0.004828,-0.005249,0.249945,0,0);}
.ma0_c00173{transform:matrix(0.230334,0.004837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230334,0.004837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230334,0.004837,-0.005249,0.249945,0,0);}
.m42_c00173{transform:matrix(0.231179,0.004855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231179,0.004855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231179,0.004855,-0.005249,0.249945,0,0);}
.m4a_c00173{transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);}
.m29_c00173{transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);}
.m2a_c00173{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.mf2_c00173{transform:matrix(0.232749,0.004888,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232749,0.004888,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232749,0.004888,-0.005249,0.249945,0,0);}
.mba_c00173{transform:matrix(0.236328,0.004963,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236328,0.004963,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236328,0.004963,-0.005249,0.249945,0,0);}
.m33_c00173{transform:matrix(0.237663,0.004991,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237663,0.004991,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237663,0.004991,-0.005249,0.249945,0,0);}
.m55_c00173{transform:matrix(0.237963,0.004997,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237963,0.004997,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237963,0.004997,-0.005249,0.249945,0,0);}
.ma1_c00173{transform:matrix(0.238697,0.005013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238697,0.005013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238697,0.005013,-0.005249,0.249945,0,0);}
.m56_c00173{transform:matrix(0.240572,0.005052,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240572,0.005052,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240572,0.005052,-0.005249,0.249945,0,0);}
.m2_c00173{transform:matrix(0.243945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.247051,0.005188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247051,0.005188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247051,0.005188,-0.005249,0.249945,0,0);}
.md7_c00173{transform:matrix(0.252434,0.005301,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252434,0.005301,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252434,0.005301,-0.005249,0.249945,0,0);}
.m57_c00173{transform:matrix(0.254019,0.005334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254019,0.005334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254019,0.005334,-0.005249,0.249945,0,0);}
.m31_c00173{transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);}
.m3c_c00173{transform:matrix(0.267206,0.005611,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267206,0.005611,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267206,0.005611,-0.005249,0.249945,0,0);}
.m37_c00173{transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);}
.m38_c00173{transform:matrix(0.295225,0.006200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.295225,0.006200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.295225,0.006200,-0.005249,0.249945,0,0);}
.m39_c00173{transform:matrix(0.299279,0.006285,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299279,0.006285,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299279,0.006285,-0.005249,0.249945,0,0);}
.m3e_c00173{transform:matrix(0.300929,0.006320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300929,0.006320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300929,0.006320,-0.005249,0.249945,0,0);}
.mc1_c00173{transform:matrix(0.305238,0.006410,-0.005249,0.249945,0,0);-ms-transform:matrix(0.305238,0.006410,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.305238,0.006410,-0.005249,0.249945,0,0);}
.m36_c00173{transform:matrix(0.307127,0.006450,-0.005249,0.249945,0,0);-ms-transform:matrix(0.307127,0.006450,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.307127,0.006450,-0.005249,0.249945,0,0);}
.m3b_c00173{transform:matrix(0.323864,0.006801,-0.005249,0.249945,0,0);-ms-transform:matrix(0.323864,0.006801,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.323864,0.006801,-0.005249,0.249945,0,0);}
.m3d_c00173{transform:matrix(0.331242,0.006956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.331242,0.006956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.331242,0.006956,-0.005249,0.249945,0,0);}
.mf1_c00173{transform:matrix(0.336581,0.007068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.336581,0.007068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.336581,0.007068,-0.005249,0.249945,0,0);}
.m3a_c00173{transform:matrix(0.342589,0.007194,-0.005249,0.249945,0,0);-ms-transform:matrix(0.342589,0.007194,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.342589,0.007194,-0.005249,0.249945,0,0);}
.maf_c00173{transform:matrix(0.346839,0.007284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.346839,0.007284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.346839,0.007284,-0.005249,0.249945,0,0);}
.m3_c00173{transform:matrix(0.359195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.371148,0.007794,-0.005249,0.249945,0,0);-ms-transform:matrix(0.371148,0.007794,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.371148,0.007794,-0.005249,0.249945,0,0);}
.m4_c00173{transform:matrix(0.424285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424285,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
.fc0_c00173{color:transparent;}
.fs5_c00173{font-size:40.959028px;}
.fs8_c00173{font-size:57.762732px;}
.fs3_c00173{font-size:58.800000px;}
.fs7_c00173{font-size:59.863195px;}
.fsc_c00173{font-size:60.913427px;}
.fs4_c00173{font-size:61.963658px;}
.fs0_c00173{font-size:63.000000px;}
.fs6_c00173{font-size:63.013890px;}
.fs2_c00173{font-size:67.200000px;}
.fsb_c00173{font-size:67.214816px;}
.fsa_c00173{font-size:68.265047px;}
.fs9_c00173{font-size:69.315279px;}
.fsd_c00173{font-size:70.365510px;}
.fs1_c00173{font-size:74.550000px;}
.y0_c00173{bottom:0.000000px;}
.yf1_c00173{bottom:24.224580px;}
.yf0_c00173{bottom:24.224664px;}
.yf4_c00173{bottom:24.224665px;}
.yec_c00173{bottom:24.224844px;}
.yf3_c00173{bottom:24.224923px;}
.yf2_c00173{bottom:24.225249px;}
.yef_c00173{bottom:24.225289px;}
.yed_c00173{bottom:24.225547px;}
.yee_c00173{bottom:24.225910px;}
.yeb_c00173{bottom:40.695223px;}
.ye5_c00173{bottom:40.695460px;}
.yea_c00173{bottom:40.695633px;}
.ye9_c00173{bottom:40.695744px;}
.ye7_c00173{bottom:40.696081px;}
.ye6_c00173{bottom:40.696188px;}
.ye8_c00173{bottom:40.696236px;}
.ye4_c00173{bottom:58.751998px;}
.ye2_c00173{bottom:58.752558px;}
.ye3_c00173{bottom:58.752684px;}
.ye1_c00173{bottom:58.753242px;}
.yde_c00173{bottom:58.753254px;}
.ydc_c00173{bottom:58.753260px;}
.ydd_c00173{bottom:58.753420px;}
.ydf_c00173{bottom:58.753714px;}
.ye0_c00173{bottom:58.753719px;}
.yd9_c00173{bottom:75.770653px;}
.yd6_c00173{bottom:75.770683px;}
.yd8_c00173{bottom:75.770857px;}
.yda_c00173{bottom:75.771022px;}
.yd7_c00173{bottom:75.771091px;}
.yd5_c00173{bottom:75.771187px;}
.ydb_c00173{bottom:75.771390px;}
.yd4_c00173{bottom:75.771927px;}
.ycd_c00173{bottom:93.209889px;}
.yd1_c00173{bottom:93.210142px;}
.ycc_c00173{bottom:93.210273px;}
.yd0_c00173{bottom:93.210312px;}
.yce_c00173{bottom:93.210324px;}
.yd2_c00173{bottom:93.210657px;}
.ycf_c00173{bottom:93.210750px;}
.yd3_c00173{bottom:93.210817px;}
.ycb_c00173{bottom:107.765889px;}
.yca_c00173{bottom:107.926345px;}
.yc9_c00173{bottom:108.986380px;}
.yc8_c00173{bottom:109.569535px;}
.yc7_c00173{bottom:109.780692px;}
.yc6_c00173{bottom:110.030002px;}
.yc5_c00173{bottom:110.848725px;}
.yc4_c00173{bottom:111.179565px;}
.yc3_c00173{bottom:125.460318px;}
.yc2_c00173{bottom:126.190689px;}
.yc1_c00173{bottom:126.811447px;}
.yc0_c00173{bottom:127.126585px;}
.ybf_c00173{bottom:127.843788px;}
.ybe_c00173{bottom:128.128545px;}
.ybd_c00173{bottom:128.464251px;}
.yba_c00173{bottom:144.780589px;}
.yb9_c00173{bottom:144.780615px;}
.yb7_c00173{bottom:144.780810px;}
.ybb_c00173{bottom:144.781080px;}
.yb8_c00173{bottom:144.781236px;}
.ybc_c00173{bottom:144.781390px;}
.yb5_c00173{bottom:144.781398px;}
.yb6_c00173{bottom:144.781432px;}
.yb3_c00173{bottom:144.781684px;}
.yb4_c00173{bottom:144.782112px;}
.yb2_c00173{bottom:161.013250px;}
.yb1_c00173{bottom:161.238324px;}
.yb0_c00173{bottom:161.829591px;}
.yaf_c00173{bottom:162.042925px;}
.yae_c00173{bottom:162.375028px;}
.yad_c00173{bottom:162.612754px;}
.yac_c00173{bottom:163.382631px;}
.yab_c00173{bottom:164.109871px;}
.yaa_c00173{bottom:178.647999px;}
.ya9_c00173{bottom:179.560914px;}
.ya8_c00173{bottom:179.914803px;}
.ya7_c00173{bottom:181.611825px;}
.ya6_c00173{bottom:183.658881px;}
.ya5_c00173{bottom:184.637037px;}
.ya4_c00173{bottom:197.161329px;}
.ya3_c00173{bottom:197.708163px;}
.ya2_c00173{bottom:198.031030px;}
.ya1_c00173{bottom:199.015982px;}
.ya0_c00173{bottom:199.699524px;}
.y9f_c00173{bottom:200.470576px;}
.y9e_c00173{bottom:202.131207px;}
.y9d_c00173{bottom:202.732784px;}
.y9c_c00173{bottom:214.529744px;}
.y9b_c00173{bottom:214.809760px;}
.y9a_c00173{bottom:215.895424px;}
.y99_c00173{bottom:216.696964px;}
.y98_c00173{bottom:217.359352px;}
.y97_c00173{bottom:218.125890px;}
.y96_c00173{bottom:232.766502px;}
.y95_c00173{bottom:233.694180px;}
.y94_c00173{bottom:234.014641px;}
.y93_c00173{bottom:234.278128px;}
.y92_c00173{bottom:234.725797px;}
.y91_c00173{bottom:235.601817px;}
.y90_c00173{bottom:235.901680px;}
.y8f_c00173{bottom:236.488885px;}
.y8e_c00173{bottom:249.286186px;}
.y8d_c00173{bottom:249.487605px;}
.y8c_c00173{bottom:249.803964px;}
.y8b_c00173{bottom:250.411626px;}
.y8a_c00173{bottom:250.871262px;}
.y89_c00173{bottom:251.536089px;}
.y88_c00173{bottom:251.901166px;}
.y87_c00173{bottom:252.530734px;}
.y86_c00173{bottom:252.965535px;}
.y85_c00173{bottom:266.721028px;}
.y84_c00173{bottom:266.954309px;}
.y83_c00173{bottom:268.021075px;}
.y82_c00173{bottom:268.395815px;}
.y81_c00173{bottom:268.640616px;}
.y80_c00173{bottom:269.309550px;}
.y7f_c00173{bottom:270.297738px;}
.y7e_c00173{bottom:271.330961px;}
.y7d_c00173{bottom:283.720594px;}
.y7c_c00173{bottom:284.074215px;}
.y7b_c00173{bottom:284.518194px;}
.y7a_c00173{bottom:284.777097px;}
.y79_c00173{bottom:285.253618px;}
.y78_c00173{bottom:285.833706px;}
.y77_c00173{bottom:286.349622px;}
.y76_c00173{bottom:286.603102px;}
.y75_c00173{bottom:286.994763px;}
.y74_c00173{bottom:301.265503px;}
.y73_c00173{bottom:301.483268px;}
.y72_c00173{bottom:301.642440px;}
.y71_c00173{bottom:302.377530px;}
.y70_c00173{bottom:303.154137px;}
.y6f_c00173{bottom:303.581766px;}
.y6e_c00173{bottom:303.799069px;}
.y6d_c00173{bottom:304.548154px;}
.y6c_c00173{bottom:318.857757px;}
.y6b_c00173{bottom:319.095654px;}
.y6a_c00173{bottom:319.733305px;}
.y69_c00173{bottom:319.999564px;}
.y68_c00173{bottom:320.322996px;}
.y67_c00173{bottom:320.817669px;}
.y66_c00173{bottom:321.290553px;}
.y65_c00173{bottom:335.456610px;}
.y64_c00173{bottom:336.057034px;}
.y63_c00173{bottom:336.698960px;}
.y62_c00173{bottom:337.162305px;}
.y61_c00173{bottom:337.682028px;}
.y60_c00173{bottom:338.046771px;}
.y5f_c00173{bottom:338.348442px;}
.y5e_c00173{bottom:338.556826px;}
.y5d_c00173{bottom:339.114825px;}
.y5c_c00173{bottom:353.448645px;}
.y5b_c00173{bottom:353.713828px;}
.y5a_c00173{bottom:354.125004px;}
.y59_c00173{bottom:354.867430px;}
.y58_c00173{bottom:355.147605px;}
.y57_c00173{bottom:356.262286px;}
.y56_c00173{bottom:356.512038px;}
.y55_c00173{bottom:356.941902px;}
.y54_c00173{bottom:369.978625px;}
.y53_c00173{bottom:370.252392px;}
.y52_c00173{bottom:371.676790px;}
.y51_c00173{bottom:372.635052px;}
.y50_c00173{bottom:373.383933px;}
.y4f_c00173{bottom:374.244387px;}
.y4e_c00173{bottom:374.602825px;}
.y4d_c00173{bottom:375.306000px;}
.y4c_c00173{bottom:388.124754px;}
.y4b_c00173{bottom:389.307768px;}
.y4a_c00173{bottom:389.797685px;}
.y49_c00173{bottom:390.250216px;}
.y48_c00173{bottom:390.866214px;}
.y47_c00173{bottom:391.252002px;}
.y46_c00173{bottom:392.296224px;}
.y45_c00173{bottom:392.568252px;}
.y44_c00173{bottom:404.314890px;}
.y43_c00173{bottom:404.747827px;}
.y42_c00173{bottom:405.733701px;}
.y41_c00173{bottom:406.775211px;}
.y40_c00173{bottom:407.844189px;}
.y3f_c00173{bottom:408.343221px;}
.y3e_c00173{bottom:409.661898px;}
.y3d_c00173{bottom:410.125064px;}
.y3c_c00173{bottom:422.284625px;}
.y3b_c00173{bottom:422.747814px;}
.y3a_c00173{bottom:423.860527px;}
.y39_c00173{bottom:424.638223px;}
.y38_c00173{bottom:425.762163px;}
.y37_c00173{bottom:426.100173px;}
.y36_c00173{bottom:426.329143px;}
.y35_c00173{bottom:427.135616px;}
.y34_c00173{bottom:441.650470px;}
.y33_c00173{bottom:441.786633px;}
.y32_c00173{bottom:442.250756px;}
.y31_c00173{bottom:442.790948px;}
.y30_c00173{bottom:442.933005px;}
.y2f_c00173{bottom:443.462706px;}
.y2e_c00173{bottom:443.650113px;}
.y2d_c00173{bottom:444.053828px;}
.y2c_c00173{bottom:444.686848px;}
.y2b_c00173{bottom:457.574859px;}
.y2a_c00173{bottom:458.241525px;}
.y29_c00173{bottom:459.162113px;}
.y28_c00173{bottom:459.656127px;}
.y27_c00173{bottom:461.023479px;}
.y26_c00173{bottom:461.295356px;}
.y25_c00173{bottom:462.514500px;}
.y24_c00173{bottom:474.036000px;}
.y23_c00173{bottom:474.325500px;}
.y22_c00173{bottom:474.820500px;}
.y21_c00173{bottom:475.236000px;}
.y20_c00173{bottom:475.477500px;}
.y1f_c00173{bottom:476.701500px;}
.y1e_c00173{bottom:477.168000px;}
.y1d_c00173{bottom:478.174500px;}
.y1c_c00173{bottom:491.646000px;}
.y1b_c00173{bottom:492.043500px;}
.y1a_c00173{bottom:492.708000px;}
.y19_c00173{bottom:492.964500px;}
.y18_c00173{bottom:493.656000px;}
.y17_c00173{bottom:493.992000px;}
.y16_c00173{bottom:494.611500px;}
.y15_c00173{bottom:494.862000px;}
.y14_c00173{bottom:495.451500px;}
.y13_c00173{bottom:508.693500px;}
.y12_c00173{bottom:509.155500px;}
.y11_c00173{bottom:509.652000px;}
.y10_c00173{bottom:509.847000px;}
.yf_c00173{bottom:510.625500px;}
.ye_c00173{bottom:510.889500px;}
.yd_c00173{bottom:511.167000px;}
.yc_c00173{bottom:511.380000px;}
.yb_c00173{bottom:526.398000px;}
.ya_c00173{bottom:526.579500px;}
.y9_c00173{bottom:526.789500px;}
.y8_c00173{bottom:527.437500px;}
.y7_c00173{bottom:527.694000px;}
.y6_c00173{bottom:528.091500px;}
.y5_c00173{bottom:528.723000px;}
.y4_c00173{bottom:529.200000px;}
.y3_c00173{bottom:544.644000px;}
.y2_c00173{bottom:562.315500px;}
.y1_c00173{bottom:579.015000px;}
.h7_c00173{height:40.959028px;}
.ha_c00173{height:57.762732px;}
.h5_c00173{height:58.800000px;}
.h9_c00173{height:59.863195px;}
.he_c00173{height:60.913427px;}
.h6_c00173{height:61.963658px;}
.h2_c00173{height:63.000000px;}
.h8_c00173{height:63.013890px;}
.h4_c00173{height:67.200000px;}
.hd_c00173{height:67.214816px;}
.hc_c00173{height:68.265047px;}
.hb_c00173{height:69.315279px;}
.hf_c00173{height:70.365510px;}
.h3_c00173{height:74.550000px;}
.h0_c00173{height:623.100000px;}
.h1_c00173{height:623.250000px;}
.w1_c00173{width:383.250000px;}
.w0_c00173{width:383.400000px;}
.x0_c00173{left:0.000000px;}
.x66_c00173{left:30.533105px;}
.x68_c00173{left:37.660866px;}
.x6a_c00173{left:44.004950px;}
.x6e_c00173{left:46.827179px;}
.x5a_c00173{left:49.237615px;}
.x2d_c00173{left:50.354307px;}
.x2_c00173{left:51.840000px;}
.x3d_c00173{left:59.145000px;}
.x28_c00173{left:60.511500px;}
.x39_c00173{left:68.196954px;}
.x15_c00173{left:72.243000px;}
.x70_c00173{left:74.375559px;}
.x62_c00173{left:75.650208px;}
.x6f_c00173{left:77.319573px;}
.x42_c00173{left:80.281818px;}
.x52_c00173{left:82.740961px;}
.x5d_c00173{left:89.461664px;}
.x9_c00173{left:91.800000px;}
.x1c_c00173{left:92.965500px;}
.x34_c00173{left:95.093687px;}
.x49_c00173{left:97.128993px;}
.xe_c00173{left:98.958000px;}
.x16_c00173{left:100.029000px;}
.x53_c00173{left:103.815430px;}
.x2e_c00173{left:107.867372px;}
.x3e_c00173{left:109.698000px;}
.x1d_c00173{left:110.808000px;}
.x4d_c00173{left:112.187898px;}
.x3_c00173{left:113.400000px;}
.xa_c00173{left:116.640000px;}
.x29_c00173{left:118.566000px;}
.x75_c00173{left:120.971285px;}
.x6b_c00173{left:122.051348px;}
.x7b_c00173{left:123.403394px;}
.x17_c00173{left:126.481500px;}
.x4e_c00173{left:130.324831px;}
.x2a_c00173{left:131.512500px;}
.x3a_c00173{left:137.787711px;}
.x78_c00173{left:139.605257px;}
.x23_c00173{left:143.149500px;}
.x2f_c00173{left:144.599589px;}
.x4a_c00173{left:146.553396px;}
.x63_c00173{left:147.867684px;}
.x3f_c00173{left:150.672000px;}
.x60_c00173{left:151.882058px;}
.x37_c00173{left:153.896094px;}
.x1e_c00173{left:155.061000px;}
.x5b_c00173{left:159.182074px;}
.x45_c00173{left:160.231805px;}
.xf_c00173{left:162.135000px;}
.x3b_c00173{left:163.518956px;}
.x4f_c00173{left:165.980572px;}
.x56_c00173{left:168.418224px;}
.x4_c00173{left:174.420000px;}
.x73_c00173{left:175.524912px;}
.x43_c00173{left:177.769150px;}
.x1f_c00173{left:179.101500px;}
.xb_c00173{left:180.900000px;}
.x40_c00173{left:186.333000px;}
.x6c_c00173{left:187.946891px;}
.x35_c00173{left:189.119640px;}
.x1_c00173{left:194.130000px;}
.x54_c00173{left:195.166192px;}
.x5_c00173{left:197.370000px;}
.x46_c00173{left:200.201514px;}
.x10_c00173{left:201.846000px;}
.x18_c00173{left:204.265500px;}
.x4b_c00173{left:205.647567px;}
.x57_c00173{left:207.775531px;}
.x30_c00173{left:209.761260px;}
.x64_c00173{left:211.060007px;}
.x5e_c00173{left:215.336540px;}
.x24_c00173{left:219.613500px;}
.x31_c00173{left:222.671469px;}
.x19_c00173{left:223.714500px;}
.x69_c00173{left:225.626336px;}
.x11_c00173{left:227.493000px;}
.x20_c00173{left:228.535500px;}
.x71_c00173{left:229.659417px;}
.x50_c00173{left:230.759826px;}
.x36_c00173{left:232.298349px;}
.x25_c00173{left:234.717000px;}
.x47_c00173{left:235.842999px;}
.x76_c00173{left:240.878432px;}
.x58_c00173{left:244.209087px;}
.xc_c00173{left:246.510000px;}
.x38_c00173{left:249.822078px;}
.x7c_c00173{left:252.491783px;}
.x65_c00173{left:253.889211px;}
.x55_c00173{left:256.412253px;}
.x26_c00173{left:260.716500px;}
.x2b_c00173{left:263.986500px;}
.x77_c00173{left:265.993488px;}
.x3c_c00173{left:267.458060px;}
.x4c_c00173{left:269.383777px;}
.x32_c00173{left:271.833801px;}
.x1a_c00173{left:273.384000px;}
.x74_c00173{left:276.526922px;}
.x6_c00173{left:278.100000px;}
.x44_c00173{left:280.130676px;}
.x79_c00173{left:283.547198px;}
.x48_c00173{left:285.276315px;}
.x61_c00173{left:286.625840px;}
.x12_c00173{left:292.291500px;}
.x21_c00173{left:294.406500px;}
.x2c_c00173{left:295.732500px;}
.xd_c00173{left:297.270000px;}
.x5f_c00173{left:298.496498px;}
.x41_c00173{left:299.793000px;}
.x51_c00173{left:305.286406px;}
.x7_c00173{left:306.450000px;}
.x27_c00173{left:309.762000px;}
.x13_c00173{left:313.350000px;}
.x5c_c00173{left:316.612472px;}
.x72_c00173{left:318.011112px;}
.x1b_c00173{left:319.555500px;}
.x59_c00173{left:320.622481px;}
.x22_c00173{left:322.815000px;}
.x33_c00173{left:326.430267px;}
.x7d_c00173{left:327.838484px;}
.x67_c00173{left:330.017405px;}
.x14_c00173{left:331.432500px;}
.x7a_c00173{left:334.589189px;}
.x6d_c00173{left:342.150368px;}
.x8_c00173{left:346.410000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.fs5_c00173{font-size:36.408025pt;}
.fs8_c00173{font-size:51.344651pt;}
.fs3_c00173{font-size:52.266667pt;}
.fs7_c00173{font-size:53.211729pt;}
.fsc_c00173{font-size:54.145268pt;}
.fs4_c00173{font-size:55.078808pt;}
.fs0_c00173{font-size:56.000000pt;}
.fs6_c00173{font-size:56.012347pt;}
.fs2_c00173{font-size:59.733333pt;}
.fsb_c00173{font-size:59.746503pt;}
.fsa_c00173{font-size:60.680042pt;}
.fs9_c00173{font-size:61.613581pt;}
.fsd_c00173{font-size:62.547120pt;}
.fs1_c00173{font-size:66.266667pt;}
.y0_c00173{bottom:0.000000pt;}
.yf1_c00173{bottom:21.532960pt;}
.yf0_c00173{bottom:21.533035pt;}
.yf4_c00173{bottom:21.533036pt;}
.yec_c00173{bottom:21.533195pt;}
.yf3_c00173{bottom:21.533265pt;}
.yf2_c00173{bottom:21.533555pt;}
.yef_c00173{bottom:21.533591pt;}
.yed_c00173{bottom:21.533820pt;}
.yee_c00173{bottom:21.534143pt;}
.yeb_c00173{bottom:36.173532pt;}
.ye5_c00173{bottom:36.173743pt;}
.yea_c00173{bottom:36.173896pt;}
.ye9_c00173{bottom:36.173995pt;}
.ye7_c00173{bottom:36.174295pt;}
.ye6_c00173{bottom:36.174389pt;}
.ye8_c00173{bottom:36.174432pt;}
.ye4_c00173{bottom:52.223999pt;}
.ye2_c00173{bottom:52.224496pt;}
.ye3_c00173{bottom:52.224608pt;}
.ye1_c00173{bottom:52.225104pt;}
.yde_c00173{bottom:52.225115pt;}
.ydc_c00173{bottom:52.225120pt;}
.ydd_c00173{bottom:52.225263pt;}
.ydf_c00173{bottom:52.225524pt;}
.ye0_c00173{bottom:52.225528pt;}
.yd9_c00173{bottom:67.351692pt;}
.yd6_c00173{bottom:67.351719pt;}
.yd8_c00173{bottom:67.351873pt;}
.yda_c00173{bottom:67.352020pt;}
.yd7_c00173{bottom:67.352081pt;}
.yd5_c00173{bottom:67.352167pt;}
.ydb_c00173{bottom:67.352347pt;}
.yd4_c00173{bottom:67.352824pt;}
.ycd_c00173{bottom:82.853235pt;}
.yd1_c00173{bottom:82.853460pt;}
.ycc_c00173{bottom:82.853576pt;}
.yd0_c00173{bottom:82.853611pt;}
.yce_c00173{bottom:82.853621pt;}
.yd2_c00173{bottom:82.853917pt;}
.ycf_c00173{bottom:82.854000pt;}
.yd3_c00173{bottom:82.854060pt;}
.ycb_c00173{bottom:95.791901pt;}
.yca_c00173{bottom:95.934529pt;}
.yc9_c00173{bottom:96.876783pt;}
.yc8_c00173{bottom:97.395143pt;}
.yc7_c00173{bottom:97.582837pt;}
.yc6_c00173{bottom:97.804447pt;}
.yc5_c00173{bottom:98.532200pt;}
.yc4_c00173{bottom:98.826280pt;}
.yc3_c00173{bottom:111.520283pt;}
.yc2_c00173{bottom:112.169501pt;}
.yc1_c00173{bottom:112.721287pt;}
.yc0_c00173{bottom:113.001409pt;}
.ybf_c00173{bottom:113.638923pt;}
.ybe_c00173{bottom:113.892040pt;}
.ybd_c00173{bottom:114.190445pt;}
.yba_c00173{bottom:128.693857pt;}
.yb9_c00173{bottom:128.693880pt;}
.yb7_c00173{bottom:128.694053pt;}
.ybb_c00173{bottom:128.694293pt;}
.yb8_c00173{bottom:128.694432pt;}
.ybc_c00173{bottom:128.694569pt;}
.yb5_c00173{bottom:128.694576pt;}
.yb6_c00173{bottom:128.694607pt;}
.yb3_c00173{bottom:128.694831pt;}
.yb4_c00173{bottom:128.695211pt;}
.yb2_c00173{bottom:143.122889pt;}
.yb1_c00173{bottom:143.322955pt;}
.yb0_c00173{bottom:143.848525pt;}
.yaf_c00173{bottom:144.038156pt;}
.yae_c00173{bottom:144.333359pt;}
.yad_c00173{bottom:144.544671pt;}
.yac_c00173{bottom:145.229005pt;}
.yab_c00173{bottom:145.875441pt;}
.yaa_c00173{bottom:158.798221pt;}
.ya9_c00173{bottom:159.609701pt;}
.ya8_c00173{bottom:159.924269pt;}
.ya7_c00173{bottom:161.432733pt;}
.ya6_c00173{bottom:163.252339pt;}
.ya5_c00173{bottom:164.121811pt;}
.ya4_c00173{bottom:175.254515pt;}
.ya3_c00173{bottom:175.740589pt;}
.ya2_c00173{bottom:176.027583pt;}
.ya1_c00173{bottom:176.903095pt;}
.ya0_c00173{bottom:177.510688pt;}
.y9f_c00173{bottom:178.196068pt;}
.y9e_c00173{bottom:179.672184pt;}
.y9d_c00173{bottom:180.206919pt;}
.y9c_c00173{bottom:190.693105pt;}
.y9b_c00173{bottom:190.942009pt;}
.y9a_c00173{bottom:191.907044pt;}
.y99_c00173{bottom:192.619524pt;}
.y98_c00173{bottom:193.208313pt;}
.y97_c00173{bottom:193.889680pt;}
.y96_c00173{bottom:206.903557pt;}
.y95_c00173{bottom:207.728160pt;}
.y94_c00173{bottom:208.013015pt;}
.y93_c00173{bottom:208.247225pt;}
.y92_c00173{bottom:208.645153pt;}
.y91_c00173{bottom:209.423837pt;}
.y90_c00173{bottom:209.690383pt;}
.y8f_c00173{bottom:210.212343pt;}
.y8e_c00173{bottom:221.587721pt;}
.y8d_c00173{bottom:221.766760pt;}
.y8c_c00173{bottom:222.047968pt;}
.y8b_c00173{bottom:222.588112pt;}
.y8a_c00173{bottom:222.996677pt;}
.y89_c00173{bottom:223.587635pt;}
.y88_c00173{bottom:223.912148pt;}
.y87_c00173{bottom:224.471764pt;}
.y86_c00173{bottom:224.858253pt;}
.y85_c00173{bottom:237.085359pt;}
.y84_c00173{bottom:237.292719pt;}
.y83_c00173{bottom:238.240956pt;}
.y82_c00173{bottom:238.574057pt;}
.y81_c00173{bottom:238.791659pt;}
.y80_c00173{bottom:239.386267pt;}
.y7f_c00173{bottom:240.264656pt;}
.y7e_c00173{bottom:241.183076pt;}
.y7d_c00173{bottom:252.196084pt;}
.y7c_c00173{bottom:252.510413pt;}
.y7b_c00173{bottom:252.905061pt;}
.y7a_c00173{bottom:253.135197pt;}
.y79_c00173{bottom:253.558772pt;}
.y78_c00173{bottom:254.074405pt;}
.y77_c00173{bottom:254.532997pt;}
.y76_c00173{bottom:254.758313pt;}
.y75_c00173{bottom:255.106456pt;}
.y74_c00173{bottom:267.791559pt;}
.y73_c00173{bottom:267.985127pt;}
.y72_c00173{bottom:268.126613pt;}
.y71_c00173{bottom:268.780027pt;}
.y70_c00173{bottom:269.470344pt;}
.y6f_c00173{bottom:269.850459pt;}
.y6e_c00173{bottom:270.043617pt;}
.y6d_c00173{bottom:270.709471pt;}
.y6c_c00173{bottom:283.429117pt;}
.y6b_c00173{bottom:283.640581pt;}
.y6a_c00173{bottom:284.207383pt;}
.y69_c00173{bottom:284.444057pt;}
.y68_c00173{bottom:284.731552pt;}
.y67_c00173{bottom:285.171261pt;}
.y66_c00173{bottom:285.591603pt;}
.y65_c00173{bottom:298.183653pt;}
.y64_c00173{bottom:298.717364pt;}
.y63_c00173{bottom:299.287964pt;}
.y62_c00173{bottom:299.699827pt;}
.y61_c00173{bottom:300.161803pt;}
.y60_c00173{bottom:300.486019pt;}
.y5f_c00173{bottom:300.754171pt;}
.y5e_c00173{bottom:300.939401pt;}
.y5d_c00173{bottom:301.435400pt;}
.y5c_c00173{bottom:314.176573pt;}
.y5b_c00173{bottom:314.412292pt;}
.y5a_c00173{bottom:314.777781pt;}
.y59_c00173{bottom:315.437716pt;}
.y58_c00173{bottom:315.686760pt;}
.y57_c00173{bottom:316.677588pt;}
.y56_c00173{bottom:316.899589pt;}
.y55_c00173{bottom:317.281691pt;}
.y54_c00173{bottom:328.869889pt;}
.y53_c00173{bottom:329.113237pt;}
.y52_c00173{bottom:330.379369pt;}
.y51_c00173{bottom:331.231157pt;}
.y50_c00173{bottom:331.896829pt;}
.y4f_c00173{bottom:332.661677pt;}
.y4e_c00173{bottom:332.980289pt;}
.y4d_c00173{bottom:333.605333pt;}
.y4c_c00173{bottom:344.999781pt;}
.y4b_c00173{bottom:346.051349pt;}
.y4a_c00173{bottom:346.486831pt;}
.y49_c00173{bottom:346.889081pt;}
.y48_c00173{bottom:347.436635pt;}
.y47_c00173{bottom:347.779557pt;}
.y46_c00173{bottom:348.707755pt;}
.y45_c00173{bottom:348.949557pt;}
.y44_c00173{bottom:359.391013pt;}
.y43_c00173{bottom:359.775847pt;}
.y42_c00173{bottom:360.652179pt;}
.y41_c00173{bottom:361.577965pt;}
.y40_c00173{bottom:362.528168pt;}
.y3f_c00173{bottom:362.971752pt;}
.y3e_c00173{bottom:364.143909pt;}
.y3d_c00173{bottom:364.555612pt;}
.y3c_c00173{bottom:375.364111pt;}
.y3b_c00173{bottom:375.775835pt;}
.y3a_c00173{bottom:376.764913pt;}
.y39_c00173{bottom:377.456199pt;}
.y38_c00173{bottom:378.455256pt;}
.y37_c00173{bottom:378.755709pt;}
.y36_c00173{bottom:378.959239pt;}
.y35_c00173{bottom:379.676103pt;}
.y34_c00173{bottom:392.578196pt;}
.y33_c00173{bottom:392.699229pt;}
.y32_c00173{bottom:393.111783pt;}
.y31_c00173{bottom:393.591953pt;}
.y30_c00173{bottom:393.718227pt;}
.y2f_c00173{bottom:394.189072pt;}
.y2e_c00173{bottom:394.355656pt;}
.y2d_c00173{bottom:394.714513pt;}
.y2c_c00173{bottom:395.277199pt;}
.y2b_c00173{bottom:406.733208pt;}
.y2a_c00173{bottom:407.325800pt;}
.y29_c00173{bottom:408.144100pt;}
.y28_c00173{bottom:408.583224pt;}
.y27_c00173{bottom:409.798648pt;}
.y26_c00173{bottom:410.040316pt;}
.y25_c00173{bottom:411.124000pt;}
.y24_c00173{bottom:421.365333pt;}
.y23_c00173{bottom:421.622667pt;}
.y22_c00173{bottom:422.062667pt;}
.y21_c00173{bottom:422.432000pt;}
.y20_c00173{bottom:422.646667pt;}
.y1f_c00173{bottom:423.734667pt;}
.y1e_c00173{bottom:424.149333pt;}
.y1d_c00173{bottom:425.044000pt;}
.y1c_c00173{bottom:437.018667pt;}
.y1b_c00173{bottom:437.372000pt;}
.y1a_c00173{bottom:437.962667pt;}
.y19_c00173{bottom:438.190667pt;}
.y18_c00173{bottom:438.805333pt;}
.y17_c00173{bottom:439.104000pt;}
.y16_c00173{bottom:439.654667pt;}
.y15_c00173{bottom:439.877333pt;}
.y14_c00173{bottom:440.401333pt;}
.y13_c00173{bottom:452.172000pt;}
.y12_c00173{bottom:452.582667pt;}
.y11_c00173{bottom:453.024000pt;}
.y10_c00173{bottom:453.197333pt;}
.yf_c00173{bottom:453.889333pt;}
.ye_c00173{bottom:454.124000pt;}
.yd_c00173{bottom:454.370667pt;}
.yc_c00173{bottom:454.560000pt;}
.yb_c00173{bottom:467.909333pt;}
.ya_c00173{bottom:468.070667pt;}
.y9_c00173{bottom:468.257333pt;}
.y8_c00173{bottom:468.833333pt;}
.y7_c00173{bottom:469.061333pt;}
.y6_c00173{bottom:469.414667pt;}
.y5_c00173{bottom:469.976000pt;}
.y4_c00173{bottom:470.400000pt;}
.y3_c00173{bottom:484.128000pt;}
.y2_c00173{bottom:499.836000pt;}
.y1_c00173{bottom:514.680000pt;}
.h7_c00173{height:36.408025pt;}
.ha_c00173{height:51.344651pt;}
.h5_c00173{height:52.266667pt;}
.h9_c00173{height:53.211729pt;}
.he_c00173{height:54.145268pt;}
.h6_c00173{height:55.078808pt;}
.h2_c00173{height:56.000000pt;}
.h8_c00173{height:56.012347pt;}
.h4_c00173{height:59.733333pt;}
.hd_c00173{height:59.746503pt;}
.hc_c00173{height:60.680042pt;}
.hb_c00173{height:61.613581pt;}
.hf_c00173{height:62.547120pt;}
.h3_c00173{height:66.266667pt;}
.h0_c00173{height:553.866667pt;}
.h1_c00173{height:554.000000pt;}
.w1_c00173{width:340.666667pt;}
.w0_c00173{width:340.800000pt;}
.x0_c00173{left:0.000000pt;}
.x66_c00173{left:27.140537pt;}
.x68_c00173{left:33.476325pt;}
.x6a_c00173{left:39.115511pt;}
.x6e_c00173{left:41.624159pt;}
.x5a_c00173{left:43.766769pt;}
.x2d_c00173{left:44.759384pt;}
.x2_c00173{left:46.080000pt;}
.x3d_c00173{left:52.573333pt;}
.x28_c00173{left:53.788000pt;}
.x39_c00173{left:60.619515pt;}
.x15_c00173{left:64.216000pt;}
.x70_c00173{left:66.111608pt;}
.x62_c00173{left:67.244629pt;}
.x6f_c00173{left:68.728509pt;}
.x42_c00173{left:71.361616pt;}
.x52_c00173{left:73.547521pt;}
.x5d_c00173{left:79.521479pt;}
.x9_c00173{left:81.600000pt;}
.x1c_c00173{left:82.636000pt;}
.x34_c00173{left:84.527721pt;}
.x49_c00173{left:86.336883pt;}
.xe_c00173{left:87.962667pt;}
.x16_c00173{left:88.914667pt;}
.x53_c00173{left:92.280383pt;}
.x2e_c00173{left:95.882108pt;}
.x3e_c00173{left:97.509333pt;}
.x1d_c00173{left:98.496000pt;}
.x4d_c00173{left:99.722576pt;}
.x3_c00173{left:100.800000pt;}
.xa_c00173{left:103.680000pt;}
.x29_c00173{left:105.392000pt;}
.x75_c00173{left:107.530031pt;}
.x6b_c00173{left:108.490087pt;}
.x7b_c00173{left:109.691905pt;}
.x17_c00173{left:112.428000pt;}
.x4e_c00173{left:115.844295pt;}
.x2a_c00173{left:116.900000pt;}
.x3a_c00173{left:122.477965pt;}
.x78_c00173{left:124.093561pt;}
.x23_c00173{left:127.244000pt;}
.x2f_c00173{left:128.532968pt;}
.x4a_c00173{left:130.269685pt;}
.x63_c00173{left:131.437941pt;}
.x3f_c00173{left:133.930667pt;}
.x60_c00173{left:135.006273pt;}
.x37_c00173{left:136.796528pt;}
.x1e_c00173{left:137.832000pt;}
.x5b_c00173{left:141.495177pt;}
.x45_c00173{left:142.428271pt;}
.xf_c00173{left:144.120000pt;}
.x3b_c00173{left:145.350183pt;}
.x4f_c00173{left:147.538287pt;}
.x56_c00173{left:149.705088pt;}
.x4_c00173{left:155.040000pt;}
.x73_c00173{left:156.022144pt;}
.x43_c00173{left:158.017023pt;}
.x1f_c00173{left:159.201333pt;}
.xb_c00173{left:160.800000pt;}
.x40_c00173{left:165.629333pt;}
.x6c_c00173{left:167.063903pt;}
.x35_c00173{left:168.106347pt;}
.x1_c00173{left:172.560000pt;}
.x54_c00173{left:173.481060pt;}
.x5_c00173{left:175.440000pt;}
.x46_c00173{left:177.956901pt;}
.x10_c00173{left:179.418667pt;}
.x18_c00173{left:181.569333pt;}
.x4b_c00173{left:182.797837pt;}
.x57_c00173{left:184.689361pt;}
.x30_c00173{left:186.454453pt;}
.x64_c00173{left:187.608895pt;}
.x5e_c00173{left:191.410257pt;}
.x24_c00173{left:195.212000pt;}
.x31_c00173{left:197.930195pt;}
.x19_c00173{left:198.857333pt;}
.x69_c00173{left:200.556743pt;}
.x11_c00173{left:202.216000pt;}
.x20_c00173{left:203.142667pt;}
.x71_c00173{left:204.141704pt;}
.x50_c00173{left:205.119845pt;}
.x36_c00173{left:206.487421pt;}
.x25_c00173{left:208.637333pt;}
.x47_c00173{left:209.638221pt;}
.x76_c00173{left:214.114161pt;}
.x58_c00173{left:217.074744pt;}
.xc_c00173{left:219.120000pt;}
.x38_c00173{left:222.064069pt;}
.x7c_c00173{left:224.437140pt;}
.x65_c00173{left:225.679299pt;}
.x55_c00173{left:227.922003pt;}
.x26_c00173{left:231.748000pt;}
.x2b_c00173{left:234.654667pt;}
.x77_c00173{left:236.438656pt;}
.x3c_c00173{left:237.740497pt;}
.x4c_c00173{left:239.452247pt;}
.x32_c00173{left:241.630045pt;}
.x1a_c00173{left:243.008000pt;}
.x74_c00173{left:245.801708pt;}
.x6_c00173{left:247.200000pt;}
.x44_c00173{left:249.005045pt;}
.x79_c00173{left:252.041953pt;}
.x48_c00173{left:253.578947pt;}
.x61_c00173{left:254.778524pt;}
.x12_c00173{left:259.814667pt;}
.x21_c00173{left:261.694667pt;}
.x2c_c00173{left:262.873333pt;}
.xd_c00173{left:264.240000pt;}
.x5f_c00173{left:265.330220pt;}
.x41_c00173{left:266.482667pt;}
.x51_c00173{left:271.365695pt;}
.x7_c00173{left:272.400000pt;}
.x27_c00173{left:275.344000pt;}
.x13_c00173{left:278.533333pt;}
.x5c_c00173{left:281.433308pt;}
.x72_c00173{left:282.676544pt;}
.x1b_c00173{left:284.049333pt;}
.x59_c00173{left:284.997761pt;}
.x22_c00173{left:286.946667pt;}
.x33_c00173{left:290.160237pt;}
.x7d_c00173{left:291.411985pt;}
.x67_c00173{left:293.348804pt;}
.x14_c00173{left:294.606667pt;}
.x7a_c00173{left:297.412612pt;}
.x6d_c00173{left:304.133660pt;}
.x8_c00173{left:307.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00174 {
    display:none;
  }
  .loading-indicator_c00174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00174 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00174 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00174" -> "#page-container .classname_c00174")
 */
.pf_c00174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00174 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00174 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00174 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00174 {overflow:visible;}
  }
}
.c_c00174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00174 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00174:after { /* webkit #35443 */
  content: '';
}
.t_c00174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00174 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00174 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00174 { /* info for Javascript */
  display:none;
}
.l_c00174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00174:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00174 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00174.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.meb_c00174{transform:matrix(0.027895,-0.000753,0.006748,0.249909,0,0);-ms-transform:matrix(0.027895,-0.000753,0.006748,0.249909,0,0);-webkit-transform:matrix(0.027895,-0.000753,0.006748,0.249909,0,0);}
.ma0_c00174{transform:matrix(0.128023,-0.003457,0.006748,0.249909,0,0);-ms-transform:matrix(0.128023,-0.003457,0.006748,0.249909,0,0);-webkit-transform:matrix(0.128023,-0.003457,0.006748,0.249909,0,0);}
.ma3_c00174{transform:matrix(0.156663,-0.004230,0.006748,0.249909,0,0);-ms-transform:matrix(0.156663,-0.004230,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156663,-0.004230,0.006748,0.249909,0,0);}
.m3_c00174{transform:matrix(0.156993,-0.004239,0.006748,0.249909,0,0);-ms-transform:matrix(0.156993,-0.004239,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156993,-0.004239,0.006748,0.249909,0,0);}
.mce_c00174{transform:matrix(0.157708,-0.004258,0.006748,0.249909,0,0);-ms-transform:matrix(0.157708,-0.004258,0.006748,0.249909,0,0);-webkit-transform:matrix(0.157708,-0.004258,0.006748,0.249909,0,0);}
.m5d_c00174{transform:matrix(0.159582,-0.004309,0.006748,0.249909,0,0);-ms-transform:matrix(0.159582,-0.004309,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159582,-0.004309,0.006748,0.249909,0,0);}
.m1c_c00174{transform:matrix(0.159757,-0.004313,0.006748,0.249909,0,0);-ms-transform:matrix(0.159757,-0.004313,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159757,-0.004313,0.006748,0.249909,0,0);}
.maf_c00174{transform:matrix(0.160696,-0.004339,0.006748,0.249909,0,0);-ms-transform:matrix(0.160696,-0.004339,0.006748,0.249909,0,0);-webkit-transform:matrix(0.160696,-0.004339,0.006748,0.249909,0,0);}
.mb4_c00174{transform:matrix(0.162296,-0.004382,0.006748,0.249909,0,0);-ms-transform:matrix(0.162296,-0.004382,0.006748,0.249909,0,0);-webkit-transform:matrix(0.162296,-0.004382,0.006748,0.249909,0,0);}
.m3d_c00174{transform:matrix(0.163605,-0.004417,0.006748,0.249909,0,0);-ms-transform:matrix(0.163605,-0.004417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163605,-0.004417,0.006748,0.249909,0,0);}
.mb8_c00174{transform:matrix(0.163865,-0.004424,0.006748,0.249909,0,0);-ms-transform:matrix(0.163865,-0.004424,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163865,-0.004424,0.006748,0.249909,0,0);}
.ma_c00174{transform:matrix(0.163900,-0.004425,0.006748,0.249909,0,0);-ms-transform:matrix(0.163900,-0.004425,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163900,-0.004425,0.006748,0.249909,0,0);}
.mb9_c00174{transform:matrix(0.164430,-0.004440,0.006748,0.249909,0,0);-ms-transform:matrix(0.164430,-0.004440,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164430,-0.004440,0.006748,0.249909,0,0);}
.m47_c00174{transform:matrix(0.164850,-0.004451,0.006748,0.249909,0,0);-ms-transform:matrix(0.164850,-0.004451,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164850,-0.004451,0.006748,0.249909,0,0);}
.m48_c00174{transform:matrix(0.165815,-0.004477,0.006748,0.249909,0,0);-ms-transform:matrix(0.165815,-0.004477,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165815,-0.004477,0.006748,0.249909,0,0);}
.me1_c00174{transform:matrix(0.166014,-0.004482,0.006748,0.249909,0,0);-ms-transform:matrix(0.166014,-0.004482,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166014,-0.004482,0.006748,0.249909,0,0);}
.m18_c00174{transform:matrix(0.166354,-0.004492,0.006748,0.249909,0,0);-ms-transform:matrix(0.166354,-0.004492,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166354,-0.004492,0.006748,0.249909,0,0);}
.m17_c00174{transform:matrix(0.167354,-0.004519,0.006748,0.249909,0,0);-ms-transform:matrix(0.167354,-0.004519,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167354,-0.004519,0.006748,0.249909,0,0);}
.m32_c00174{transform:matrix(0.167414,-0.004520,0.006748,0.249909,0,0);-ms-transform:matrix(0.167414,-0.004520,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167414,-0.004520,0.006748,0.249909,0,0);}
.m11_c00174{transform:matrix(0.167884,-0.004533,0.006748,0.249909,0,0);-ms-transform:matrix(0.167884,-0.004533,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167884,-0.004533,0.006748,0.249909,0,0);}
.m1a_c00174{transform:matrix(0.168554,-0.004551,0.006748,0.249909,0,0);-ms-transform:matrix(0.168554,-0.004551,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168554,-0.004551,0.006748,0.249909,0,0);}
.md_c00174{transform:matrix(0.168559,-0.004551,0.006748,0.249909,0,0);-ms-transform:matrix(0.168559,-0.004551,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168559,-0.004551,0.006748,0.249909,0,0);}
.ma4_c00174{transform:matrix(0.169008,-0.004563,0.006748,0.249909,0,0);-ms-transform:matrix(0.169008,-0.004563,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169008,-0.004563,0.006748,0.249909,0,0);}
.m54_c00174{transform:matrix(0.169888,-0.004587,0.006748,0.249909,0,0);-ms-transform:matrix(0.169888,-0.004587,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169888,-0.004587,0.006748,0.249909,0,0);}
.m45_c00174{transform:matrix(0.170318,-0.004599,0.006748,0.249909,0,0);-ms-transform:matrix(0.170318,-0.004599,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170318,-0.004599,0.006748,0.249909,0,0);}
.m55_c00174{transform:matrix(0.170413,-0.004601,0.006748,0.249909,0,0);-ms-transform:matrix(0.170413,-0.004601,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170413,-0.004601,0.006748,0.249909,0,0);}
.mbb_c00174{transform:matrix(0.171927,-0.004642,0.006748,0.249909,0,0);-ms-transform:matrix(0.171927,-0.004642,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171927,-0.004642,0.006748,0.249909,0,0);}
.m40_c00174{transform:matrix(0.172782,-0.004665,0.006748,0.249909,0,0);-ms-transform:matrix(0.172782,-0.004665,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172782,-0.004665,0.006748,0.249909,0,0);}
.mbe_c00174{transform:matrix(0.172892,-0.004668,0.006748,0.249909,0,0);-ms-transform:matrix(0.172892,-0.004668,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172892,-0.004668,0.006748,0.249909,0,0);}
.m15_c00174{transform:matrix(0.173347,-0.004680,0.006748,0.249909,0,0);-ms-transform:matrix(0.173347,-0.004680,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173347,-0.004680,0.006748,0.249909,0,0);}
.m59_c00174{transform:matrix(0.175366,-0.004735,0.006748,0.249909,0,0);-ms-transform:matrix(0.175366,-0.004735,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175366,-0.004735,0.006748,0.249909,0,0);}
.md3_c00174{transform:matrix(0.175426,-0.004737,0.006748,0.249909,0,0);-ms-transform:matrix(0.175426,-0.004737,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175426,-0.004737,0.006748,0.249909,0,0);}
.mc3_c00174{transform:matrix(0.175636,-0.004742,0.006748,0.249909,0,0);-ms-transform:matrix(0.175636,-0.004742,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175636,-0.004742,0.006748,0.249909,0,0);}
.ma5_c00174{transform:matrix(0.176291,-0.004760,0.006748,0.249909,0,0);-ms-transform:matrix(0.176291,-0.004760,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176291,-0.004760,0.006748,0.249909,0,0);}
.mbc_c00174{transform:matrix(0.176536,-0.004766,0.006748,0.249909,0,0);-ms-transform:matrix(0.176536,-0.004766,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176536,-0.004766,0.006748,0.249909,0,0);}
.m1_c00174{transform:matrix(0.177085,-0.004781,0.006748,0.249909,0,0);-ms-transform:matrix(0.177085,-0.004781,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177085,-0.004781,0.006748,0.249909,0,0);}
.m7a_c00174{transform:matrix(0.177100,-0.004782,0.006748,0.249909,0,0);-ms-transform:matrix(0.177100,-0.004782,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177100,-0.004782,0.006748,0.249909,0,0);}
.m4f_c00174{transform:matrix(0.177290,-0.004787,0.006748,0.249909,0,0);-ms-transform:matrix(0.177290,-0.004787,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177290,-0.004787,0.006748,0.249909,0,0);}
.m8f_c00174{transform:matrix(0.177480,-0.004792,0.006748,0.249909,0,0);-ms-transform:matrix(0.177480,-0.004792,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177480,-0.004792,0.006748,0.249909,0,0);}
.m6f_c00174{transform:matrix(0.177855,-0.004802,0.006748,0.249909,0,0);-ms-transform:matrix(0.177855,-0.004802,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177855,-0.004802,0.006748,0.249909,0,0);}
.mc8_c00174{transform:matrix(0.178275,-0.004813,0.006748,0.249909,0,0);-ms-transform:matrix(0.178275,-0.004813,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178275,-0.004813,0.006748,0.249909,0,0);}
.md2_c00174{transform:matrix(0.178850,-0.004829,0.006748,0.249909,0,0);-ms-transform:matrix(0.178850,-0.004829,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178850,-0.004829,0.006748,0.249909,0,0);}
.m41_c00174{transform:matrix(0.178865,-0.004829,0.006748,0.249909,0,0);-ms-transform:matrix(0.178865,-0.004829,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178865,-0.004829,0.006748,0.249909,0,0);}
.m0_c00174{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.180614,-0.004877,0.006748,0.249909,0,0);-ms-transform:matrix(0.180614,-0.004877,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180614,-0.004877,0.006748,0.249909,0,0);}
.m93_c00174{transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);-ms-transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);}
.m4a_c00174{transform:matrix(0.182209,-0.004920,0.006748,0.249909,0,0);-ms-transform:matrix(0.182209,-0.004920,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182209,-0.004920,0.006748,0.249909,0,0);}
.me5_c00174{transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);-ms-transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);}
.m8a_c00174{transform:matrix(0.182783,-0.004935,0.006748,0.249909,0,0);-ms-transform:matrix(0.182783,-0.004935,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182783,-0.004935,0.006748,0.249909,0,0);}
.m65_c00174{transform:matrix(0.182803,-0.004936,0.006748,0.249909,0,0);-ms-transform:matrix(0.182803,-0.004936,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182803,-0.004936,0.006748,0.249909,0,0);}
.m89_c00174{transform:matrix(0.183078,-0.004943,0.006748,0.249909,0,0);-ms-transform:matrix(0.183078,-0.004943,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183078,-0.004943,0.006748,0.249909,0,0);}
.m9e_c00174{transform:matrix(0.183158,-0.004945,0.006748,0.249909,0,0);-ms-transform:matrix(0.183158,-0.004945,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183158,-0.004945,0.006748,0.249909,0,0);}
.m2a_c00174{transform:matrix(0.183353,-0.004951,0.006748,0.249909,0,0);-ms-transform:matrix(0.183353,-0.004951,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183353,-0.004951,0.006748,0.249909,0,0);}
.m7b_c00174{transform:matrix(0.183418,-0.004952,0.006748,0.249909,0,0);-ms-transform:matrix(0.183418,-0.004952,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183418,-0.004952,0.006748,0.249909,0,0);}
.md1_c00174{transform:matrix(0.183583,-0.004957,0.006748,0.249909,0,0);-ms-transform:matrix(0.183583,-0.004957,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183583,-0.004957,0.006748,0.249909,0,0);}
.mb5_c00174{transform:matrix(0.183673,-0.004959,0.006748,0.249909,0,0);-ms-transform:matrix(0.183673,-0.004959,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183673,-0.004959,0.006748,0.249909,0,0);}
.mba_c00174{transform:matrix(0.183693,-0.004960,0.006748,0.249909,0,0);-ms-transform:matrix(0.183693,-0.004960,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183693,-0.004960,0.006748,0.249909,0,0);}
.mcf_c00174{transform:matrix(0.184048,-0.004969,0.006748,0.249909,0,0);-ms-transform:matrix(0.184048,-0.004969,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184048,-0.004969,0.006748,0.249909,0,0);}
.mcd_c00174{transform:matrix(0.184273,-0.004975,0.006748,0.249909,0,0);-ms-transform:matrix(0.184273,-0.004975,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184273,-0.004975,0.006748,0.249909,0,0);}
.m39_c00174{transform:matrix(0.184328,-0.004977,0.006748,0.249909,0,0);-ms-transform:matrix(0.184328,-0.004977,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184328,-0.004977,0.006748,0.249909,0,0);}
.m97_c00174{transform:matrix(0.184443,-0.004980,0.006748,0.249909,0,0);-ms-transform:matrix(0.184443,-0.004980,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184443,-0.004980,0.006748,0.249909,0,0);}
.m42_c00174{transform:matrix(0.185023,-0.004996,0.006748,0.249909,0,0);-ms-transform:matrix(0.185023,-0.004996,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185023,-0.004996,0.006748,0.249909,0,0);}
.m8d_c00174{transform:matrix(0.185367,-0.005005,0.006748,0.249909,0,0);-ms-transform:matrix(0.185367,-0.005005,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185367,-0.005005,0.006748,0.249909,0,0);}
.m37_c00174{transform:matrix(0.185977,-0.005021,0.006748,0.249909,0,0);-ms-transform:matrix(0.185977,-0.005021,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185977,-0.005021,0.006748,0.249909,0,0);}
.mc1_c00174{transform:matrix(0.186142,-0.005026,0.006748,0.249909,0,0);-ms-transform:matrix(0.186142,-0.005026,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186142,-0.005026,0.006748,0.249909,0,0);}
.m61_c00174{transform:matrix(0.186462,-0.005034,0.006748,0.249909,0,0);-ms-transform:matrix(0.186462,-0.005034,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186462,-0.005034,0.006748,0.249909,0,0);}
.mad_c00174{transform:matrix(0.186537,-0.005036,0.006748,0.249909,0,0);-ms-transform:matrix(0.186537,-0.005036,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186537,-0.005036,0.006748,0.249909,0,0);}
.me2_c00174{transform:matrix(0.186822,-0.005044,0.006748,0.249909,0,0);-ms-transform:matrix(0.186822,-0.005044,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186822,-0.005044,0.006748,0.249909,0,0);}
.m25_c00174{transform:matrix(0.187177,-0.005054,0.006748,0.249909,0,0);-ms-transform:matrix(0.187177,-0.005054,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187177,-0.005054,0.006748,0.249909,0,0);}
.m43_c00174{transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);-ms-transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);}
.m2e_c00174{transform:matrix(0.187907,-0.005073,0.006748,0.249909,0,0);-ms-transform:matrix(0.187907,-0.005073,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187907,-0.005073,0.006748,0.249909,0,0);}
.m8_c00174{transform:matrix(0.188331,-0.005085,0.006748,0.249909,0,0);-ms-transform:matrix(0.188331,-0.005085,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188331,-0.005085,0.006748,0.249909,0,0);}
.m9d_c00174{transform:matrix(0.188991,-0.005103,0.006748,0.249909,0,0);-ms-transform:matrix(0.188991,-0.005103,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188991,-0.005103,0.006748,0.249909,0,0);}
.m92_c00174{transform:matrix(0.189256,-0.005110,0.006748,0.249909,0,0);-ms-transform:matrix(0.189256,-0.005110,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189256,-0.005110,0.006748,0.249909,0,0);}
.m4_c00174{transform:matrix(0.189611,-0.005119,0.006748,0.249909,0,0);-ms-transform:matrix(0.189611,-0.005119,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189611,-0.005119,0.006748,0.249909,0,0);}
.m3b_c00174{transform:matrix(0.189616,-0.005120,0.006748,0.249909,0,0);-ms-transform:matrix(0.189616,-0.005120,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189616,-0.005120,0.006748,0.249909,0,0);}
.m51_c00174{transform:matrix(0.189871,-0.005127,0.006748,0.249909,0,0);-ms-transform:matrix(0.189871,-0.005127,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189871,-0.005127,0.006748,0.249909,0,0);}
.m7_c00174{transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-ms-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);}
.m3e_c00174{transform:matrix(0.190216,-0.005136,0.006748,0.249909,0,0);-ms-transform:matrix(0.190216,-0.005136,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190216,-0.005136,0.006748,0.249909,0,0);}
.md0_c00174{transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);-ms-transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);}
.m10_c00174{transform:matrix(0.190481,-0.005143,0.006748,0.249909,0,0);-ms-transform:matrix(0.190481,-0.005143,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190481,-0.005143,0.006748,0.249909,0,0);}
.mf_c00174{transform:matrix(0.190676,-0.005148,0.006748,0.249909,0,0);-ms-transform:matrix(0.190676,-0.005148,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190676,-0.005148,0.006748,0.249909,0,0);}
.mb1_c00174{transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);-ms-transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);}
.m5b_c00174{transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);-ms-transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);}
.md4_c00174{transform:matrix(0.191840,-0.005180,0.006748,0.249909,0,0);-ms-transform:matrix(0.191840,-0.005180,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191840,-0.005180,0.006748,0.249909,0,0);}
.ma9_c00174{transform:matrix(0.192145,-0.005188,0.006748,0.249909,0,0);-ms-transform:matrix(0.192145,-0.005188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192145,-0.005188,0.006748,0.249909,0,0);}
.m1d_c00174{transform:matrix(0.192785,-0.005205,0.006748,0.249909,0,0);-ms-transform:matrix(0.192785,-0.005205,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192785,-0.005205,0.006748,0.249909,0,0);}
.m52_c00174{transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);-ms-transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);}
.mc0_c00174{transform:matrix(0.193300,-0.005219,0.006748,0.249909,0,0);-ms-transform:matrix(0.193300,-0.005219,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193300,-0.005219,0.006748,0.249909,0,0);}
.m5f_c00174{transform:matrix(0.193619,-0.005228,0.006748,0.249909,0,0);-ms-transform:matrix(0.193619,-0.005228,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193619,-0.005228,0.006748,0.249909,0,0);}
.m80_c00174{transform:matrix(0.193734,-0.005231,0.006748,0.249909,0,0);-ms-transform:matrix(0.193734,-0.005231,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193734,-0.005231,0.006748,0.249909,0,0);}
.mdb_c00174{transform:matrix(0.193909,-0.005236,0.006748,0.249909,0,0);-ms-transform:matrix(0.193909,-0.005236,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193909,-0.005236,0.006748,0.249909,0,0);}
.mde_c00174{transform:matrix(0.194764,-0.005259,0.006748,0.249909,0,0);-ms-transform:matrix(0.194764,-0.005259,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194764,-0.005259,0.006748,0.249909,0,0);}
.m46_c00174{transform:matrix(0.194879,-0.005262,0.006748,0.249909,0,0);-ms-transform:matrix(0.194879,-0.005262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194879,-0.005262,0.006748,0.249909,0,0);}
.m7e_c00174{transform:matrix(0.195029,-0.005266,0.006748,0.249909,0,0);-ms-transform:matrix(0.195029,-0.005266,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195029,-0.005266,0.006748,0.249909,0,0);}
.mc2_c00174{transform:matrix(0.195379,-0.005275,0.006748,0.249909,0,0);-ms-transform:matrix(0.195379,-0.005275,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195379,-0.005275,0.006748,0.249909,0,0);}
.m9f_c00174{transform:matrix(0.195704,-0.005284,0.006748,0.249909,0,0);-ms-transform:matrix(0.195704,-0.005284,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195704,-0.005284,0.006748,0.249909,0,0);}
.m60_c00174{transform:matrix(0.195819,-0.005287,0.006748,0.249909,0,0);-ms-transform:matrix(0.195819,-0.005287,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195819,-0.005287,0.006748,0.249909,0,0);}
.mac_c00174{transform:matrix(0.195984,-0.005292,0.006748,0.249909,0,0);-ms-transform:matrix(0.195984,-0.005292,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195984,-0.005292,0.006748,0.249909,0,0);}
.mab_c00174{transform:matrix(0.196408,-0.005303,0.006748,0.249909,0,0);-ms-transform:matrix(0.196408,-0.005303,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196408,-0.005303,0.006748,0.249909,0,0);}
.m26_c00174{transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);-ms-transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);}
.m14_c00174{transform:matrix(0.196683,-0.005310,0.006748,0.249909,0,0);-ms-transform:matrix(0.196683,-0.005310,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196683,-0.005310,0.006748,0.249909,0,0);}
.m49_c00174{transform:matrix(0.196688,-0.005311,0.006748,0.249909,0,0);-ms-transform:matrix(0.196688,-0.005311,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196688,-0.005311,0.006748,0.249909,0,0);}
.m3c_c00174{transform:matrix(0.196713,-0.005311,0.006748,0.249909,0,0);-ms-transform:matrix(0.196713,-0.005311,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196713,-0.005311,0.006748,0.249909,0,0);}
.m6e_c00174{transform:matrix(0.196948,-0.005318,0.006748,0.249909,0,0);-ms-transform:matrix(0.196948,-0.005318,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196948,-0.005318,0.006748,0.249909,0,0);}
.m2_c00174{transform:matrix(0.196958,-0.005318,0.006748,0.249909,0,0);-ms-transform:matrix(0.196958,-0.005318,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196958,-0.005318,0.006748,0.249909,0,0);}
.m79_c00174{transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);-ms-transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);}
.m12_c00174{transform:matrix(0.197218,-0.005325,0.006748,0.249909,0,0);-ms-transform:matrix(0.197218,-0.005325,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197218,-0.005325,0.006748,0.249909,0,0);}
.m8e_c00174{transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);-ms-transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);}
.me_c00174{transform:matrix(0.198348,-0.005355,0.006748,0.249909,0,0);-ms-transform:matrix(0.198348,-0.005355,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198348,-0.005355,0.006748,0.249909,0,0);}
.ma6_c00174{transform:matrix(0.198673,-0.005364,0.006748,0.249909,0,0);-ms-transform:matrix(0.198673,-0.005364,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198673,-0.005364,0.006748,0.249909,0,0);}
.m38_c00174{transform:matrix(0.198878,-0.005370,0.006748,0.249909,0,0);-ms-transform:matrix(0.198878,-0.005370,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198878,-0.005370,0.006748,0.249909,0,0);}
.m4d_c00174{transform:matrix(0.199132,-0.005377,0.006748,0.249909,0,0);-ms-transform:matrix(0.199132,-0.005377,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199132,-0.005377,0.006748,0.249909,0,0);}
.m5a_c00174{transform:matrix(0.199202,-0.005378,0.006748,0.249909,0,0);-ms-transform:matrix(0.199202,-0.005378,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199202,-0.005378,0.006748,0.249909,0,0);}
.m81_c00174{transform:matrix(0.199702,-0.005392,0.006748,0.249909,0,0);-ms-transform:matrix(0.199702,-0.005392,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199702,-0.005392,0.006748,0.249909,0,0);}
.m88_c00174{transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);-ms-transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);}
.mb0_c00174{transform:matrix(0.200377,-0.005410,0.006748,0.249909,0,0);-ms-transform:matrix(0.200377,-0.005410,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200377,-0.005410,0.006748,0.249909,0,0);}
.m30_c00174{transform:matrix(0.200517,-0.005414,0.006748,0.249909,0,0);-ms-transform:matrix(0.200517,-0.005414,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200517,-0.005414,0.006748,0.249909,0,0);}
.m3f_c00174{transform:matrix(0.200597,-0.005416,0.006748,0.249909,0,0);-ms-transform:matrix(0.200597,-0.005416,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200597,-0.005416,0.006748,0.249909,0,0);}
.mae_c00174{transform:matrix(0.200802,-0.005422,0.006748,0.249909,0,0);-ms-transform:matrix(0.200802,-0.005422,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200802,-0.005422,0.006748,0.249909,0,0);}
.m56_c00174{transform:matrix(0.200902,-0.005424,0.006748,0.249909,0,0);-ms-transform:matrix(0.200902,-0.005424,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200902,-0.005424,0.006748,0.249909,0,0);}
.m5c_c00174{transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);-ms-transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);}
.mb6_c00174{transform:matrix(0.200987,-0.005427,0.006748,0.249909,0,0);-ms-transform:matrix(0.200987,-0.005427,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200987,-0.005427,0.006748,0.249909,0,0);}
.m19_c00174{transform:matrix(0.201022,-0.005428,0.006748,0.249909,0,0);-ms-transform:matrix(0.201022,-0.005428,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201022,-0.005428,0.006748,0.249909,0,0);}
.maa_c00174{transform:matrix(0.201202,-0.005432,0.006748,0.249909,0,0);-ms-transform:matrix(0.201202,-0.005432,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201202,-0.005432,0.006748,0.249909,0,0);}
.m4e_c00174{transform:matrix(0.201372,-0.005437,0.006748,0.249909,0,0);-ms-transform:matrix(0.201372,-0.005437,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201372,-0.005437,0.006748,0.249909,0,0);}
.m90_c00174{transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);-ms-transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);}
.m1b_c00174{transform:matrix(0.201627,-0.005444,0.006748,0.249909,0,0);-ms-transform:matrix(0.201627,-0.005444,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201627,-0.005444,0.006748,0.249909,0,0);}
.m23_c00174{transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);-ms-transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);}
.m5e_c00174{transform:matrix(0.201926,-0.005452,0.006748,0.249909,0,0);-ms-transform:matrix(0.201926,-0.005452,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201926,-0.005452,0.006748,0.249909,0,0);}
.m96_c00174{transform:matrix(0.201936,-0.005452,0.006748,0.249909,0,0);-ms-transform:matrix(0.201936,-0.005452,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201936,-0.005452,0.006748,0.249909,0,0);}
.m6_c00174{transform:matrix(0.202046,-0.005455,0.006748,0.249909,0,0);-ms-transform:matrix(0.202046,-0.005455,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202046,-0.005455,0.006748,0.249909,0,0);}
.m2d_c00174{transform:matrix(0.202536,-0.005468,0.006748,0.249909,0,0);-ms-transform:matrix(0.202536,-0.005468,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202536,-0.005468,0.006748,0.249909,0,0);}
.m9_c00174{transform:matrix(0.202586,-0.005470,0.006748,0.249909,0,0);-ms-transform:matrix(0.202586,-0.005470,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202586,-0.005470,0.006748,0.249909,0,0);}
.m35_c00174{transform:matrix(0.203596,-0.005497,0.006748,0.249909,0,0);-ms-transform:matrix(0.203596,-0.005497,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203596,-0.005497,0.006748,0.249909,0,0);}
.m84_c00174{transform:matrix(0.203711,-0.005500,0.006748,0.249909,0,0);-ms-transform:matrix(0.203711,-0.005500,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203711,-0.005500,0.006748,0.249909,0,0);}
.mb3_c00174{transform:matrix(0.204151,-0.005512,0.006748,0.249909,0,0);-ms-transform:matrix(0.204151,-0.005512,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204151,-0.005512,0.006748,0.249909,0,0);}
.m50_c00174{transform:matrix(0.205005,-0.005535,0.006748,0.249909,0,0);-ms-transform:matrix(0.205005,-0.005535,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205005,-0.005535,0.006748,0.249909,0,0);}
.me0_c00174{transform:matrix(0.205090,-0.005537,0.006748,0.249909,0,0);-ms-transform:matrix(0.205090,-0.005537,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205090,-0.005537,0.006748,0.249909,0,0);}
.mb7_c00174{transform:matrix(0.205645,-0.005552,0.006748,0.249909,0,0);-ms-transform:matrix(0.205645,-0.005552,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205645,-0.005552,0.006748,0.249909,0,0);}
.mb_c00174{transform:matrix(0.205840,-0.005558,0.006748,0.249909,0,0);-ms-transform:matrix(0.205840,-0.005558,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205840,-0.005558,0.006748,0.249909,0,0);}
.m58_c00174{transform:matrix(0.205995,-0.005562,0.006748,0.249909,0,0);-ms-transform:matrix(0.205995,-0.005562,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205995,-0.005562,0.006748,0.249909,0,0);}
.m98_c00174{transform:matrix(0.206250,-0.005569,0.006748,0.249909,0,0);-ms-transform:matrix(0.206250,-0.005569,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206250,-0.005569,0.006748,0.249909,0,0);}
.m9c_c00174{transform:matrix(0.206305,-0.005570,0.006748,0.249909,0,0);-ms-transform:matrix(0.206305,-0.005570,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206305,-0.005570,0.006748,0.249909,0,0);}
.m87_c00174{transform:matrix(0.206525,-0.005576,0.006748,0.249909,0,0);-ms-transform:matrix(0.206525,-0.005576,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206525,-0.005576,0.006748,0.249909,0,0);}
.m85_c00174{transform:matrix(0.206680,-0.005580,0.006748,0.249909,0,0);-ms-transform:matrix(0.206680,-0.005580,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206680,-0.005580,0.006748,0.249909,0,0);}
.m76_c00174{transform:matrix(0.207095,-0.005592,0.006748,0.249909,0,0);-ms-transform:matrix(0.207095,-0.005592,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207095,-0.005592,0.006748,0.249909,0,0);}
.m99_c00174{transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);-ms-transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);}
.mdd_c00174{transform:matrix(0.207779,-0.005610,0.006748,0.249909,0,0);-ms-transform:matrix(0.207779,-0.005610,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207779,-0.005610,0.006748,0.249909,0,0);}
.mda_c00174{transform:matrix(0.208124,-0.005619,0.006748,0.249909,0,0);-ms-transform:matrix(0.208124,-0.005619,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208124,-0.005619,0.006748,0.249909,0,0);}
.me7_c00174{transform:matrix(0.209044,-0.005644,0.006748,0.249909,0,0);-ms-transform:matrix(0.209044,-0.005644,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209044,-0.005644,0.006748,0.249909,0,0);}
.me8_c00174{transform:matrix(0.209214,-0.005649,0.006748,0.249909,0,0);-ms-transform:matrix(0.209214,-0.005649,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209214,-0.005649,0.006748,0.249909,0,0);}
.m16_c00174{transform:matrix(0.209634,-0.005660,0.006748,0.249909,0,0);-ms-transform:matrix(0.209634,-0.005660,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209634,-0.005660,0.006748,0.249909,0,0);}
.m33_c00174{transform:matrix(0.209804,-0.005665,0.006748,0.249909,0,0);-ms-transform:matrix(0.209804,-0.005665,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209804,-0.005665,0.006748,0.249909,0,0);}
.mb2_c00174{transform:matrix(0.210538,-0.005685,0.006748,0.249909,0,0);-ms-transform:matrix(0.210538,-0.005685,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210538,-0.005685,0.006748,0.249909,0,0);}
.me4_c00174{transform:matrix(0.210793,-0.005691,0.006748,0.249909,0,0);-ms-transform:matrix(0.210793,-0.005691,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210793,-0.005691,0.006748,0.249909,0,0);}
.m63_c00174{transform:matrix(0.210813,-0.005692,0.006748,0.249909,0,0);-ms-transform:matrix(0.210813,-0.005692,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210813,-0.005692,0.006748,0.249909,0,0);}
.m74_c00174{transform:matrix(0.210818,-0.005692,0.006748,0.249909,0,0);-ms-transform:matrix(0.210818,-0.005692,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210818,-0.005692,0.006748,0.249909,0,0);}
.me3_c00174{transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);-ms-transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);}
.m1f_c00174{transform:matrix(0.211998,-0.005724,0.006748,0.249909,0,0);-ms-transform:matrix(0.211998,-0.005724,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211998,-0.005724,0.006748,0.249909,0,0);}
.md7_c00174{transform:matrix(0.212458,-0.005736,0.006748,0.249909,0,0);-ms-transform:matrix(0.212458,-0.005736,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212458,-0.005736,0.006748,0.249909,0,0);}
.m75_c00174{transform:matrix(0.212827,-0.005746,0.006748,0.249909,0,0);-ms-transform:matrix(0.212827,-0.005746,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212827,-0.005746,0.006748,0.249909,0,0);}
.m21_c00174{transform:matrix(0.212937,-0.005749,0.006748,0.249909,0,0);-ms-transform:matrix(0.212937,-0.005749,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212937,-0.005749,0.006748,0.249909,0,0);}
.mea_c00174{transform:matrix(0.213472,-0.005764,0.006748,0.249909,0,0);-ms-transform:matrix(0.213472,-0.005764,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213472,-0.005764,0.006748,0.249909,0,0);}
.m91_c00174{transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);-ms-transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);}
.m20_c00174{transform:matrix(0.214582,-0.005794,0.006748,0.249909,0,0);-ms-transform:matrix(0.214582,-0.005794,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214582,-0.005794,0.006748,0.249909,0,0);}
.m9a_c00174{transform:matrix(0.215097,-0.005808,0.006748,0.249909,0,0);-ms-transform:matrix(0.215097,-0.005808,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215097,-0.005808,0.006748,0.249909,0,0);}
.m9b_c00174{transform:matrix(0.215491,-0.005818,0.006748,0.249909,0,0);-ms-transform:matrix(0.215491,-0.005818,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215491,-0.005818,0.006748,0.249909,0,0);}
.m44_c00174{transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);-ms-transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);}
.m1e_c00174{transform:matrix(0.215706,-0.005824,0.006748,0.249909,0,0);-ms-transform:matrix(0.215706,-0.005824,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215706,-0.005824,0.006748,0.249909,0,0);}
.md6_c00174{transform:matrix(0.215726,-0.005825,0.006748,0.249909,0,0);-ms-transform:matrix(0.215726,-0.005825,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215726,-0.005825,0.006748,0.249909,0,0);}
.mc_c00174{transform:matrix(0.216156,-0.005836,0.006748,0.249909,0,0);-ms-transform:matrix(0.216156,-0.005836,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216156,-0.005836,0.006748,0.249909,0,0);}
.m95_c00174{transform:matrix(0.216201,-0.005837,0.006748,0.249909,0,0);-ms-transform:matrix(0.216201,-0.005837,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216201,-0.005837,0.006748,0.249909,0,0);}
.m13_c00174{transform:matrix(0.216351,-0.005841,0.006748,0.249909,0,0);-ms-transform:matrix(0.216351,-0.005841,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216351,-0.005841,0.006748,0.249909,0,0);}
.m8c_c00174{transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);-ms-transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);}
.ma7_c00174{transform:matrix(0.217526,-0.005873,0.006748,0.249909,0,0);-ms-transform:matrix(0.217526,-0.005873,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217526,-0.005873,0.006748,0.249909,0,0);}
.mdc_c00174{transform:matrix(0.217591,-0.005875,0.006748,0.249909,0,0);-ms-transform:matrix(0.217591,-0.005875,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217591,-0.005875,0.006748,0.249909,0,0);}
.me6_c00174{transform:matrix(0.217851,-0.005882,0.006748,0.249909,0,0);-ms-transform:matrix(0.217851,-0.005882,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217851,-0.005882,0.006748,0.249909,0,0);}
.m7d_c00174{transform:matrix(0.217921,-0.005884,0.006748,0.249909,0,0);-ms-transform:matrix(0.217921,-0.005884,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217921,-0.005884,0.006748,0.249909,0,0);}
.m29_c00174{transform:matrix(0.218360,-0.005896,0.006748,0.249909,0,0);-ms-transform:matrix(0.218360,-0.005896,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218360,-0.005896,0.006748,0.249909,0,0);}
.md5_c00174{transform:matrix(0.219075,-0.005915,0.006748,0.249909,0,0);-ms-transform:matrix(0.219075,-0.005915,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219075,-0.005915,0.006748,0.249909,0,0);}
.m4b_c00174{transform:matrix(0.219570,-0.005928,0.006748,0.249909,0,0);-ms-transform:matrix(0.219570,-0.005928,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219570,-0.005928,0.006748,0.249909,0,0);}
.m53_c00174{transform:matrix(0.220290,-0.005948,0.006748,0.249909,0,0);-ms-transform:matrix(0.220290,-0.005948,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220290,-0.005948,0.006748,0.249909,0,0);}
.mbf_c00174{transform:matrix(0.221729,-0.005987,0.006748,0.249909,0,0);-ms-transform:matrix(0.221729,-0.005987,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221729,-0.005987,0.006748,0.249909,0,0);}
.m7f_c00174{transform:matrix(0.221809,-0.005989,0.006748,0.249909,0,0);-ms-transform:matrix(0.221809,-0.005989,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221809,-0.005989,0.006748,0.249909,0,0);}
.m3a_c00174{transform:matrix(0.221969,-0.005993,0.006748,0.249909,0,0);-ms-transform:matrix(0.221969,-0.005993,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221969,-0.005993,0.006748,0.249909,0,0);}
.m7c_c00174{transform:matrix(0.222204,-0.006000,0.006748,0.249909,0,0);-ms-transform:matrix(0.222204,-0.006000,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222204,-0.006000,0.006748,0.249909,0,0);}
.mc7_c00174{transform:matrix(0.222224,-0.006000,0.006748,0.249909,0,0);-ms-transform:matrix(0.222224,-0.006000,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222224,-0.006000,0.006748,0.249909,0,0);}
.m6c_c00174{transform:matrix(0.222329,-0.006003,0.006748,0.249909,0,0);-ms-transform:matrix(0.222329,-0.006003,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222329,-0.006003,0.006748,0.249909,0,0);}
.m67_c00174{transform:matrix(0.222689,-0.006013,0.006748,0.249909,0,0);-ms-transform:matrix(0.222689,-0.006013,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222689,-0.006013,0.006748,0.249909,0,0);}
.md9_c00174{transform:matrix(0.222744,-0.006014,0.006748,0.249909,0,0);-ms-transform:matrix(0.222744,-0.006014,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222744,-0.006014,0.006748,0.249909,0,0);}
.md8_c00174{transform:matrix(0.222889,-0.006018,0.006748,0.249909,0,0);-ms-transform:matrix(0.222889,-0.006018,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222889,-0.006018,0.006748,0.249909,0,0);}
.m24_c00174{transform:matrix(0.224808,-0.006070,0.006748,0.249909,0,0);-ms-transform:matrix(0.224808,-0.006070,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224808,-0.006070,0.006748,0.249909,0,0);}
.m82_c00174{transform:matrix(0.224988,-0.006075,0.006748,0.249909,0,0);-ms-transform:matrix(0.224988,-0.006075,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224988,-0.006075,0.006748,0.249909,0,0);}
.m27_c00174{transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);-ms-transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225003,-0.006075,0.006748,0.249909,0,0);}
.m4c_c00174{transform:matrix(0.225568,-0.006090,0.006748,0.249909,0,0);-ms-transform:matrix(0.225568,-0.006090,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225568,-0.006090,0.006748,0.249909,0,0);}
.m68_c00174{transform:matrix(0.226008,-0.006102,0.006748,0.249909,0,0);-ms-transform:matrix(0.226008,-0.006102,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226008,-0.006102,0.006748,0.249909,0,0);}
.ma8_c00174{transform:matrix(0.226368,-0.006112,0.006748,0.249909,0,0);-ms-transform:matrix(0.226368,-0.006112,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226368,-0.006112,0.006748,0.249909,0,0);}
.m86_c00174{transform:matrix(0.226642,-0.006119,0.006748,0.249909,0,0);-ms-transform:matrix(0.226642,-0.006119,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226642,-0.006119,0.006748,0.249909,0,0);}
.mdf_c00174{transform:matrix(0.227152,-0.006133,0.006748,0.249909,0,0);-ms-transform:matrix(0.227152,-0.006133,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227152,-0.006133,0.006748,0.249909,0,0);}
.m36_c00174{transform:matrix(0.227237,-0.006135,0.006748,0.249909,0,0);-ms-transform:matrix(0.227237,-0.006135,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227237,-0.006135,0.006748,0.249909,0,0);}
.m83_c00174{transform:matrix(0.227667,-0.006147,0.006748,0.249909,0,0);-ms-transform:matrix(0.227667,-0.006147,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227667,-0.006147,0.006748,0.249909,0,0);}
.m6d_c00174{transform:matrix(0.228492,-0.006169,0.006748,0.249909,0,0);-ms-transform:matrix(0.228492,-0.006169,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228492,-0.006169,0.006748,0.249909,0,0);}
.m72_c00174{transform:matrix(0.229171,-0.006188,0.006748,0.249909,0,0);-ms-transform:matrix(0.229171,-0.006188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229171,-0.006188,0.006748,0.249909,0,0);}
.m28_c00174{transform:matrix(0.229216,-0.006189,0.006748,0.249909,0,0);-ms-transform:matrix(0.229216,-0.006189,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229216,-0.006189,0.006748,0.249909,0,0);}
.m94_c00174{transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);-ms-transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);}
.m22_c00174{transform:matrix(0.230211,-0.006216,0.006748,0.249909,0,0);-ms-transform:matrix(0.230211,-0.006216,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230211,-0.006216,0.006748,0.249909,0,0);}
.m73_c00174{transform:matrix(0.230866,-0.006233,0.006748,0.249909,0,0);-ms-transform:matrix(0.230866,-0.006233,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230866,-0.006233,0.006748,0.249909,0,0);}
.mc4_c00174{transform:matrix(0.231726,-0.006257,0.006748,0.249909,0,0);-ms-transform:matrix(0.231726,-0.006257,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231726,-0.006257,0.006748,0.249909,0,0);}
.m71_c00174{transform:matrix(0.231900,-0.006261,0.006748,0.249909,0,0);-ms-transform:matrix(0.231900,-0.006261,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231900,-0.006261,0.006748,0.249909,0,0);}
.mc9_c00174{transform:matrix(0.231970,-0.006263,0.006748,0.249909,0,0);-ms-transform:matrix(0.231970,-0.006263,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231970,-0.006263,0.006748,0.249909,0,0);}
.m62_c00174{transform:matrix(0.232975,-0.006290,0.006748,0.249909,0,0);-ms-transform:matrix(0.232975,-0.006290,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232975,-0.006290,0.006748,0.249909,0,0);}
.m66_c00174{transform:matrix(0.234814,-0.006340,0.006748,0.249909,0,0);-ms-transform:matrix(0.234814,-0.006340,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234814,-0.006340,0.006748,0.249909,0,0);}
.m8b_c00174{transform:matrix(0.236149,-0.006376,0.006748,0.249909,0,0);-ms-transform:matrix(0.236149,-0.006376,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236149,-0.006376,0.006748,0.249909,0,0);}
.me9_c00174{transform:matrix(0.236279,-0.006380,0.006748,0.249909,0,0);-ms-transform:matrix(0.236279,-0.006380,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236279,-0.006380,0.006748,0.249909,0,0);}
.mc6_c00174{transform:matrix(0.236294,-0.006380,0.006748,0.249909,0,0);-ms-transform:matrix(0.236294,-0.006380,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236294,-0.006380,0.006748,0.249909,0,0);}
.m31_c00174{transform:matrix(0.236974,-0.006398,0.006748,0.249909,0,0);-ms-transform:matrix(0.236974,-0.006398,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236974,-0.006398,0.006748,0.249909,0,0);}
.mca_c00174{transform:matrix(0.238428,-0.006438,0.006748,0.249909,0,0);-ms-transform:matrix(0.238428,-0.006438,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238428,-0.006438,0.006748,0.249909,0,0);}
.m77_c00174{transform:matrix(0.238898,-0.006450,0.006748,0.249909,0,0);-ms-transform:matrix(0.238898,-0.006450,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238898,-0.006450,0.006748,0.249909,0,0);}
.m57_c00174{transform:matrix(0.239678,-0.006471,0.006748,0.249909,0,0);-ms-transform:matrix(0.239678,-0.006471,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239678,-0.006471,0.006748,0.249909,0,0);}
.m34_c00174{transform:matrix(0.240142,-0.006484,0.006748,0.249909,0,0);-ms-transform:matrix(0.240142,-0.006484,0.006748,0.249909,0,0);-webkit-transform:matrix(0.240142,-0.006484,0.006748,0.249909,0,0);}
.m78_c00174{transform:matrix(0.240997,-0.006507,0.006748,0.249909,0,0);-ms-transform:matrix(0.240997,-0.006507,0.006748,0.249909,0,0);-webkit-transform:matrix(0.240997,-0.006507,0.006748,0.249909,0,0);}
.mbd_c00174{transform:matrix(0.246015,-0.006642,0.006748,0.249909,0,0);-ms-transform:matrix(0.246015,-0.006642,0.006748,0.249909,0,0);-webkit-transform:matrix(0.246015,-0.006642,0.006748,0.249909,0,0);}
.mcc_c00174{transform:matrix(0.246690,-0.006661,0.006748,0.249909,0,0);-ms-transform:matrix(0.246690,-0.006661,0.006748,0.249909,0,0);-webkit-transform:matrix(0.246690,-0.006661,0.006748,0.249909,0,0);}
.mc5_c00174{transform:matrix(0.249629,-0.006740,0.006748,0.249909,0,0);-ms-transform:matrix(0.249629,-0.006740,0.006748,0.249909,0,0);-webkit-transform:matrix(0.249629,-0.006740,0.006748,0.249909,0,0);}
.m64_c00174{transform:matrix(0.250989,-0.006777,0.006748,0.249909,0,0);-ms-transform:matrix(0.250989,-0.006777,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250989,-0.006777,0.006748,0.249909,0,0);}
.m2b_c00174{transform:matrix(0.257016,-0.006939,0.006748,0.249909,0,0);-ms-transform:matrix(0.257016,-0.006939,0.006748,0.249909,0,0);-webkit-transform:matrix(0.257016,-0.006939,0.006748,0.249909,0,0);}
.m2f_c00174{transform:matrix(0.264339,-0.007137,0.006748,0.249909,0,0);-ms-transform:matrix(0.264339,-0.007137,0.006748,0.249909,0,0);-webkit-transform:matrix(0.264339,-0.007137,0.006748,0.249909,0,0);}
.m2c_c00174{transform:matrix(0.266993,-0.007209,0.006748,0.249909,0,0);-ms-transform:matrix(0.266993,-0.007209,0.006748,0.249909,0,0);-webkit-transform:matrix(0.266993,-0.007209,0.006748,0.249909,0,0);}
.m6b_c00174{transform:matrix(0.279973,-0.007559,0.006748,0.249909,0,0);-ms-transform:matrix(0.279973,-0.007559,0.006748,0.249909,0,0);-webkit-transform:matrix(0.279973,-0.007559,0.006748,0.249909,0,0);}
.m69_c00174{transform:matrix(0.285611,-0.007711,0.006748,0.249909,0,0);-ms-transform:matrix(0.285611,-0.007711,0.006748,0.249909,0,0);-webkit-transform:matrix(0.285611,-0.007711,0.006748,0.249909,0,0);}
.ma2_c00174{transform:matrix(0.287175,-0.007754,0.006748,0.249909,0,0);-ms-transform:matrix(0.287175,-0.007754,0.006748,0.249909,0,0);-webkit-transform:matrix(0.287175,-0.007754,0.006748,0.249909,0,0);}
.ma1_c00174{transform:matrix(0.290874,-0.007854,0.006748,0.249909,0,0);-ms-transform:matrix(0.290874,-0.007854,0.006748,0.249909,0,0);-webkit-transform:matrix(0.290874,-0.007854,0.006748,0.249909,0,0);}
.m6a_c00174{transform:matrix(0.365307,-0.009863,0.006748,0.249909,0,0);-ms-transform:matrix(0.365307,-0.009863,0.006748,0.249909,0,0);-webkit-transform:matrix(0.365307,-0.009863,0.006748,0.249909,0,0);}
.mcb_c00174{transform:matrix(0.435526,-0.011759,0.006748,0.249909,0,0);-ms-transform:matrix(0.435526,-0.011759,0.006748,0.249909,0,0);-webkit-transform:matrix(0.435526,-0.011759,0.006748,0.249909,0,0);}
.m70_c00174{transform:matrix(0.545481,-0.014728,0.006748,0.249909,0,0);-ms-transform:matrix(0.545481,-0.014728,0.006748,0.249909,0,0);-webkit-transform:matrix(0.545481,-0.014728,0.006748,0.249909,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:0.000000px;}
.fc0_c00174{color:transparent;}
.fsa_c00174{font-size:54.619898px;}
.fsb_c00174{font-size:56.720663px;}
.fs6_c00174{font-size:58.821429px;}
.fsd_c00174{font-size:59.871811px;}
.fsc_c00174{font-size:60.922194px;}
.fs5_c00174{font-size:61.972577px;}
.fs7_c00174{font-size:63.022959px;}
.fs2_c00174{font-size:64.073342px;}
.fs8_c00174{font-size:65.123725px;}
.fs9_c00174{font-size:66.174107px;}
.fsf_c00174{font-size:67.224490px;}
.fs3_c00174{font-size:68.274873px;}
.fse_c00174{font-size:69.325255px;}
.fs0_c00174{font-size:70.350000px;}
.fs1_c00174{font-size:70.375638px;}
.fs4_c00174{font-size:71.426021px;}
.y0_c00174{bottom:0.000000px;}
.yef_c00174{bottom:26.274183px;}
.yee_c00174{bottom:26.274294px;}
.yed_c00174{bottom:26.274606px;}
.yec_c00174{bottom:26.274814px;}
.yeb_c00174{bottom:26.274877px;}
.ye4_c00174{bottom:42.072144px;}
.ye5_c00174{bottom:42.734445px;}
.ye6_c00174{bottom:43.216071px;}
.ye7_c00174{bottom:44.621964px;}
.ye8_c00174{bottom:45.012666px;}
.ye9_c00174{bottom:45.445875px;}
.yea_c00174{bottom:47.030782px;}
.ydd_c00174{bottom:59.898301px;}
.yde_c00174{bottom:60.411106px;}
.ydf_c00174{bottom:60.743628px;}
.ye0_c00174{bottom:61.645327px;}
.ye1_c00174{bottom:62.483695px;}
.ye2_c00174{bottom:62.930659px;}
.ye3_c00174{bottom:63.806461px;}
.yd6_c00174{bottom:79.347169px;}
.yd7_c00174{bottom:79.852778px;}
.yd8_c00174{bottom:80.725638px;}
.yd9_c00174{bottom:81.989599px;}
.yda_c00174{bottom:83.113179px;}
.ydb_c00174{bottom:83.448361px;}
.ydc_c00174{bottom:85.224652px;}
.ycd_c00174{bottom:97.982281px;}
.yce_c00174{bottom:98.695777px;}
.ycf_c00174{bottom:99.703320px;}
.yd0_c00174{bottom:99.936363px;}
.yd1_c00174{bottom:100.893426px;}
.yd2_c00174{bottom:101.170875px;}
.yd3_c00174{bottom:102.090454px;}
.yd4_c00174{bottom:102.469183px;}
.yd5_c00174{bottom:103.008454px;}
.yc7_c00174{bottom:109.604029px;}
.yc8_c00174{bottom:111.775060px;}
.yc9_c00174{bottom:114.063387px;}
.yca_c00174{bottom:114.461691px;}
.ycb_c00174{bottom:116.918874px;}
.ycc_c00174{bottom:117.421635px;}
.ybf_c00174{bottom:131.202888px;}
.yc0_c00174{bottom:131.514106px;}
.yc1_c00174{bottom:131.750776px;}
.yc2_c00174{bottom:132.457186px;}
.yc3_c00174{bottom:132.865281px;}
.yc4_c00174{bottom:133.873200px;}
.yc5_c00174{bottom:134.498508px;}
.yc6_c00174{bottom:134.653873px;}
.yb8_c00174{bottom:143.642788px;}
.yb9_c00174{bottom:144.998904px;}
.yba_c00174{bottom:146.110375px;}
.ybb_c00174{bottom:148.938124px;}
.ybc_c00174{bottom:149.761370px;}
.ybd_c00174{bottom:150.297157px;}
.ybe_c00174{bottom:152.088003px;}
.yb4_c00174{bottom:168.619764px;}
.yb5_c00174{bottom:168.619862px;}
.yb3_c00174{bottom:168.620110px;}
.yb2_c00174{bottom:168.620173px;}
.yb6_c00174{bottom:168.620214px;}
.yb1_c00174{bottom:168.620553px;}
.yb7_c00174{bottom:168.620933px;}
.yb0_c00174{bottom:168.621157px;}
.ya9_c00174{bottom:179.829000px;}
.yaa_c00174{bottom:181.080855px;}
.yab_c00174{bottom:181.499382px;}
.yac_c00174{bottom:183.365743px;}
.yad_c00174{bottom:184.771822px;}
.yae_c00174{bottom:186.210585px;}
.yaf_c00174{bottom:186.698853px;}
.ya0_c00174{bottom:196.706833px;}
.ya1_c00174{bottom:197.676519px;}
.ya2_c00174{bottom:198.951828px;}
.ya3_c00174{bottom:199.319338px;}
.ya4_c00174{bottom:199.899279px;}
.ya5_c00174{bottom:201.608481px;}
.ya6_c00174{bottom:202.363995px;}
.ya7_c00174{bottom:203.060539px;}
.ya8_c00174{bottom:204.952078px;}
.y99_c00174{bottom:216.962287px;}
.y9a_c00174{bottom:218.038632px;}
.y9b_c00174{bottom:218.593890px;}
.y9c_c00174{bottom:220.067628px;}
.y9d_c00174{bottom:220.555837px;}
.y9e_c00174{bottom:221.483629px;}
.y9f_c00174{bottom:222.102738px;}
.y91_c00174{bottom:233.707242px;}
.y92_c00174{bottom:234.937783px;}
.y93_c00174{bottom:235.316514px;}
.y94_c00174{bottom:236.659221px;}
.y95_c00174{bottom:238.048048px;}
.y96_c00174{bottom:238.672207px;}
.y97_c00174{bottom:239.070294px;}
.y98_c00174{bottom:240.105901px;}
.y88_c00174{bottom:252.342595px;}
.y89_c00174{bottom:253.009309px;}
.y8a_c00174{bottom:253.378635px;}
.y8b_c00174{bottom:254.404311px;}
.y8c_c00174{bottom:254.799424px;}
.y8d_c00174{bottom:255.136566px;}
.y8e_c00174{bottom:256.029216px;}
.y8f_c00174{bottom:256.288023px;}
.y90_c00174{bottom:257.769822px;}
.y81_c00174{bottom:268.819528px;}
.y82_c00174{bottom:270.074203px;}
.y83_c00174{bottom:271.528428px;}
.y84_c00174{bottom:272.000494px;}
.y85_c00174{bottom:272.790067px;}
.y86_c00174{bottom:273.300522px;}
.y87_c00174{bottom:275.366757px;}
.y78_c00174{bottom:286.377321px;}
.y79_c00174{bottom:287.579062px;}
.y7a_c00174{bottom:288.078751px;}
.y7b_c00174{bottom:289.641886px;}
.y7c_c00174{bottom:289.970194px;}
.y7d_c00174{bottom:291.127753px;}
.y7e_c00174{bottom:291.642954px;}
.y7f_c00174{bottom:292.468804px;}
.y80_c00174{bottom:293.697273px;}
.y71_c00174{bottom:303.930837px;}
.y72_c00174{bottom:304.495872px;}
.y73_c00174{bottom:305.724715px;}
.y74_c00174{bottom:306.411892px;}
.y75_c00174{bottom:307.289089px;}
.y76_c00174{bottom:309.298137px;}
.y77_c00174{bottom:309.938823px;}
.y69_c00174{bottom:320.682033px;}
.y6a_c00174{bottom:321.331434px;}
.y6b_c00174{bottom:321.952482px;}
.y6c_c00174{bottom:323.370163px;}
.y6d_c00174{bottom:323.870550px;}
.y6e_c00174{bottom:325.848241px;}
.y6f_c00174{bottom:327.030798px;}
.y70_c00174{bottom:328.756230px;}
.y63_c00174{bottom:336.343435px;}
.y64_c00174{bottom:337.562583px;}
.y65_c00174{bottom:338.988625px;}
.y66_c00174{bottom:339.249208px;}
.y67_c00174{bottom:339.677860px;}
.y68_c00174{bottom:341.272294px;}
.y5b_c00174{bottom:354.710485px;}
.y5c_c00174{bottom:355.792197px;}
.y5d_c00174{bottom:357.155400px;}
.y5e_c00174{bottom:357.422193px;}
.y5f_c00174{bottom:357.880671px;}
.y60_c00174{bottom:358.583712px;}
.y61_c00174{bottom:359.672671px;}
.y62_c00174{bottom:361.013038px;}
.y53_c00174{bottom:369.306514px;}
.y54_c00174{bottom:370.906026px;}
.y55_c00174{bottom:372.361855px;}
.y56_c00174{bottom:373.169997px;}
.y57_c00174{bottom:373.842070px;}
.y58_c00174{bottom:375.954013px;}
.y59_c00174{bottom:377.450796px;}
.y5a_c00174{bottom:379.219674px;}
.y4d_c00174{bottom:386.055771px;}
.y4e_c00174{bottom:388.140694px;}
.y4f_c00174{bottom:389.182690px;}
.y50_c00174{bottom:391.987609px;}
.y51_c00174{bottom:393.067723px;}
.y52_c00174{bottom:395.727541px;}
.y44_c00174{bottom:403.338355px;}
.y45_c00174{bottom:404.882169px;}
.y46_c00174{bottom:405.356197px;}
.y47_c00174{bottom:406.204036px;}
.y48_c00174{bottom:407.219418px;}
.y49_c00174{bottom:407.843854px;}
.y4a_c00174{bottom:408.424825px;}
.y4b_c00174{bottom:410.996781px;}
.y4c_c00174{bottom:413.186296px;}
.y3c_c00174{bottom:419.826630px;}
.y3d_c00174{bottom:420.997155px;}
.y3e_c00174{bottom:422.159091px;}
.y3f_c00174{bottom:423.219661px;}
.y40_c00174{bottom:425.922663px;}
.y41_c00174{bottom:427.211205px;}
.y42_c00174{bottom:429.500601px;}
.y43_c00174{bottom:430.907970px;}
.y37_c00174{bottom:437.916262px;}
.y38_c00174{bottom:441.679720px;}
.y39_c00174{bottom:442.723099px;}
.y3a_c00174{bottom:445.295755px;}
.y3b_c00174{bottom:446.623567px;}
.y30_c00174{bottom:455.470540px;}
.y31_c00174{bottom:457.786354px;}
.y32_c00174{bottom:458.799612px;}
.y33_c00174{bottom:460.707262px;}
.y34_c00174{bottom:461.478538px;}
.y35_c00174{bottom:463.781550px;}
.y36_c00174{bottom:465.839664px;}
.y28_c00174{bottom:472.484895px;}
.y29_c00174{bottom:473.172945px;}
.y2a_c00174{bottom:474.507886px;}
.y2b_c00174{bottom:474.987273px;}
.y2c_c00174{bottom:475.596087px;}
.y2d_c00174{bottom:478.480669px;}
.y2e_c00174{bottom:479.099934px;}
.y2f_c00174{bottom:480.537324px;}
.y1f_c00174{bottom:491.119471px;}
.y20_c00174{bottom:492.059259px;}
.y21_c00174{bottom:493.614702px;}
.y22_c00174{bottom:494.271633px;}
.y23_c00174{bottom:496.142215px;}
.y24_c00174{bottom:496.580170px;}
.y25_c00174{bottom:497.246094px;}
.y26_c00174{bottom:499.190113px;}
.y27_c00174{bottom:499.759753px;}
.y18_c00174{bottom:508.403724px;}
.y19_c00174{bottom:510.345768px;}
.y1a_c00174{bottom:511.486576px;}
.y1b_c00174{bottom:513.383010px;}
.y1c_c00174{bottom:515.501829px;}
.y1d_c00174{bottom:515.971714px;}
.y1e_c00174{bottom:518.199133px;}
.y10_c00174{bottom:525.155352px;}
.y11_c00174{bottom:527.072533px;}
.y12_c00174{bottom:527.794408px;}
.y13_c00174{bottom:528.689095px;}
.y14_c00174{bottom:531.186652px;}
.y15_c00174{bottom:531.641368px;}
.y16_c00174{bottom:532.904446px;}
.y17_c00174{bottom:534.997722px;}
.y9_c00174{bottom:544.326645px;}
.ya_c00174{bottom:545.722569px;}
.yb_c00174{bottom:546.678786px;}
.yc_c00174{bottom:548.690179px;}
.yd_c00174{bottom:549.976936px;}
.ye_c00174{bottom:551.715877px;}
.yf_c00174{bottom:552.617652px;}
.y2_c00174{bottom:561.879000px;}
.y3_c00174{bottom:562.825566px;}
.y4_c00174{bottom:563.518440px;}
.y5_c00174{bottom:564.088032px;}
.y6_c00174{bottom:566.115097px;}
.y7_c00174{bottom:566.932468px;}
.y8_c00174{bottom:568.829529px;}
.y1_c00174{bottom:580.776000px;}
.hc_c00174{height:54.619898px;}
.hd_c00174{height:56.720663px;}
.h8_c00174{height:58.821429px;}
.hf_c00174{height:59.871811px;}
.he_c00174{height:60.922194px;}
.h7_c00174{height:61.972577px;}
.h9_c00174{height:63.022959px;}
.h4_c00174{height:64.073342px;}
.ha_c00174{height:65.123725px;}
.hb_c00174{height:66.174107px;}
.h11_c00174{height:67.224490px;}
.h5_c00174{height:68.274873px;}
.h10_c00174{height:69.325255px;}
.h2_c00174{height:70.350000px;}
.h3_c00174{height:70.375638px;}
.h6_c00174{height:71.426021px;}
.h0_c00174{height:623.100000px;}
.h1_c00174{height:623.250000px;}
.w1_c00174{width:383.250000px;}
.w0_c00174{width:383.400000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:27.349500px;}
.x15_c00174{left:28.505123px;}
.x28_c00174{left:30.224029px;}
.x3c_c00174{left:31.511701px;}
.x53_c00174{left:32.705744px;}
.x59_c00174{left:33.754349px;}
.x6b_c00174{left:35.384923px;}
.x70_c00174{left:37.387759px;}
.x5b_c00174{left:40.527567px;}
.x62_c00174{left:47.592000px;}
.x22_c00174{left:48.793440px;}
.x49_c00174{left:52.800093px;}
.x1b_c00174{left:58.172714px;}
.x78_c00174{left:61.031682px;}
.x3_c00174{left:62.407500px;}
.x56_c00174{left:68.261210px;}
.x9_c00174{left:70.263667px;}
.x7d_c00174{left:71.843523px;}
.x4a_c00174{left:73.522433px;}
.x33_c00174{left:75.867671px;}
.x3d_c00174{left:78.577332px;}
.x41_c00174{left:80.159260px;}
.x6d_c00174{left:81.183136px;}
.xf_c00174{left:83.089695px;}
.x23_c00174{left:86.949718px;}
.x4_c00174{left:88.069500px;}
.x29_c00174{left:89.586792px;}
.x38_c00174{left:91.887531px;}
.x63_c00174{left:93.957000px;}
.x7e_c00174{left:97.186990px;}
.xa_c00174{left:99.229969px;}
.x24_c00174{left:100.646262px;}
.x10_c00174{left:103.710240px;}
.x1c_c00174{left:106.775153px;}
.x5_c00174{left:109.165500px;}
.x2f_c00174{left:113.177598px;}
.x2a_c00174{left:115.550868px;}
.x25_c00174{left:118.024495px;}
.x4b_c00174{left:120.803126px;}
.x16_c00174{left:121.947516px;}
.x1d_c00174{left:127.325399px;}
.x11_c00174{left:129.285732px;}
.x74_c00174{left:131.474923px;}
.x7f_c00174{left:132.875074px;}
.x4c_c00174{left:137.501289px;}
.x6e_c00174{left:140.036950px;}
.x42_c00174{left:142.156644px;}
.x34_c00174{left:144.641710px;}
.x5e_c00174{left:148.381001px;}
.x54_c00174{left:150.436920px;}
.x66_c00174{left:152.051013px;}
.x7b_c00174{left:153.240096px;}
.x43_c00174{left:154.317304px;}
.x2d_c00174{left:156.476931px;}
.x79_c00174{left:158.130763px;}
.xb_c00174{left:160.160587px;}
.x1_c00174{left:161.190000px;}
.x35_c00174{left:162.987728px;}
.x2b_c00174{left:164.466532px;}
.x47_c00174{left:169.745357px;}
.x55_c00174{left:170.978648px;}
.x6f_c00174{left:174.054220px;}
.x44_c00174{left:175.134099px;}
.x67_c00174{left:176.900116px;}
.x17_c00174{left:179.398701px;}
.x6_c00174{left:184.242000px;}
.x1e_c00174{left:185.765001px;}
.x5c_c00174{left:188.453043px;}
.x48_c00174{left:190.124637px;}
.x71_c00174{left:191.151957px;}
.x75_c00174{left:197.568961px;}
.xc_c00174{left:199.145269px;}
.x12_c00174{left:200.661342px;}
.x4d_c00174{left:203.410443px;}
.x39_c00174{left:205.011147px;}
.x45_c00174{left:207.121432px;}
.x5f_c00174{left:209.405340px;}
.x30_c00174{left:210.531324px;}
.x5d_c00174{left:211.705310px;}
.x76_c00174{left:212.959687px;}
.x7_c00174{left:214.515000px;}
.x26_c00174{left:218.163909px;}
.x1f_c00174{left:220.255844px;}
.x50_c00174{left:221.916695px;}
.x2e_c00174{left:224.184843px;}
.x3e_c00174{left:227.011765px;}
.x68_c00174{left:228.758403px;}
.x64_c00174{left:230.659500px;}
.x3a_c00174{left:236.787153px;}
.x4e_c00174{left:238.248849px;}
.x6c_c00174{left:239.371440px;}
.x57_c00174{left:240.899010px;}
.x51_c00174{left:242.499288px;}
.x18_c00174{left:243.585293px;}
.x69_c00174{left:247.664673px;}
.x13_c00174{left:249.772771px;}
.xd_c00174{left:251.819724px;}
.x36_c00174{left:255.689691px;}
.x19_c00174{left:257.819484px;}
.x27_c00174{left:259.225039px;}
.x60_c00174{left:261.239423px;}
.x4f_c00174{left:262.867497px;}
.x77_c00174{left:264.030580px;}
.x31_c00174{left:266.358224px;}
.x3f_c00174{left:271.050963px;}
.x52_c00174{left:275.532570px;}
.xe_c00174{left:279.158810px;}
.x20_c00174{left:281.026162px;}
.x8_c00174{left:284.776500px;}
.x72_c00174{left:289.627651px;}
.x2c_c00174{left:296.068426px;}
.x7c_c00174{left:297.328752px;}
.x21_c00174{left:298.843773px;}
.x32_c00174{left:300.692263px;}
.x65_c00174{left:302.031000px;}
.x7a_c00174{left:305.189608px;}
.x73_c00174{left:306.969720px;}
.x6a_c00174{left:308.166237px;}
.x14_c00174{left:309.566352px;}
.x5a_c00174{left:311.882819px;}
.x3b_c00174{left:315.006371px;}
.x46_c00174{left:317.555836px;}
.x58_c00174{left:318.852818px;}
.x37_c00174{left:320.104041px;}
.x40_c00174{left:323.055121px;}
.x1a_c00174{left:325.305549px;}
.x61_c00174{left:328.794600px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.fsa_c00174{font-size:48.551021pt;}
.fsb_c00174{font-size:50.418367pt;}
.fs6_c00174{font-size:52.285714pt;}
.fsd_c00174{font-size:53.219388pt;}
.fsc_c00174{font-size:54.153061pt;}
.fs5_c00174{font-size:55.086735pt;}
.fs7_c00174{font-size:56.020408pt;}
.fs2_c00174{font-size:56.954082pt;}
.fs8_c00174{font-size:57.887755pt;}
.fs9_c00174{font-size:58.821429pt;}
.fsf_c00174{font-size:59.755102pt;}
.fs3_c00174{font-size:60.688776pt;}
.fse_c00174{font-size:61.622449pt;}
.fs0_c00174{font-size:62.533333pt;}
.fs1_c00174{font-size:62.556123pt;}
.fs4_c00174{font-size:63.489796pt;}
.y0_c00174{bottom:0.000000pt;}
.yef_c00174{bottom:23.354829pt;}
.yee_c00174{bottom:23.354928pt;}
.yed_c00174{bottom:23.355205pt;}
.yec_c00174{bottom:23.355391pt;}
.yeb_c00174{bottom:23.355447pt;}
.ye4_c00174{bottom:37.397461pt;}
.ye5_c00174{bottom:37.986173pt;}
.ye6_c00174{bottom:38.414285pt;}
.ye7_c00174{bottom:39.663968pt;}
.ye8_c00174{bottom:40.011259pt;}
.ye9_c00174{bottom:40.396333pt;}
.yea_c00174{bottom:41.805140pt;}
.ydd_c00174{bottom:53.242935pt;}
.yde_c00174{bottom:53.698761pt;}
.ydf_c00174{bottom:53.994336pt;}
.ye0_c00174{bottom:54.795847pt;}
.ye1_c00174{bottom:55.541063pt;}
.ye2_c00174{bottom:55.938364pt;}
.ye3_c00174{bottom:56.716855pt;}
.yd6_c00174{bottom:70.530817pt;}
.yd7_c00174{bottom:70.980247pt;}
.yd8_c00174{bottom:71.756123pt;}
.yd9_c00174{bottom:72.879644pt;}
.yda_c00174{bottom:73.878381pt;}
.ydb_c00174{bottom:74.176321pt;}
.ydc_c00174{bottom:75.755247pt;}
.ycd_c00174{bottom:87.095361pt;}
.yce_c00174{bottom:87.729580pt;}
.ycf_c00174{bottom:88.625173pt;}
.yd0_c00174{bottom:88.832323pt;}
.yd1_c00174{bottom:89.683045pt;}
.yd2_c00174{bottom:89.929667pt;}
.yd3_c00174{bottom:90.747071pt;}
.yd4_c00174{bottom:91.083719pt;}
.yd5_c00174{bottom:91.563071pt;}
.yc7_c00174{bottom:97.425804pt;}
.yc8_c00174{bottom:99.355609pt;}
.yc9_c00174{bottom:101.389677pt;}
.yca_c00174{bottom:101.743725pt;}
.ycb_c00174{bottom:103.927888pt;}
.ycc_c00174{bottom:104.374787pt;}
.ybf_c00174{bottom:116.624789pt;}
.yc0_c00174{bottom:116.901428pt;}
.yc1_c00174{bottom:117.111801pt;}
.yc2_c00174{bottom:117.739721pt;}
.yc3_c00174{bottom:118.102472pt;}
.yc4_c00174{bottom:118.998400pt;}
.yc5_c00174{bottom:119.554229pt;}
.yc6_c00174{bottom:119.692332pt;}
.yb8_c00174{bottom:127.682479pt;}
.yb9_c00174{bottom:128.887915pt;}
.yba_c00174{bottom:129.875889pt;}
.ybb_c00174{bottom:132.389444pt;}
.ybc_c00174{bottom:133.121217pt;}
.ybd_c00174{bottom:133.597473pt;}
.ybe_c00174{bottom:135.189336pt;}
.yb4_c00174{bottom:149.884235pt;}
.yb5_c00174{bottom:149.884321pt;}
.yb3_c00174{bottom:149.884543pt;}
.yb2_c00174{bottom:149.884599pt;}
.yb6_c00174{bottom:149.884635pt;}
.yb1_c00174{bottom:149.884936pt;}
.yb7_c00174{bottom:149.885273pt;}
.yb0_c00174{bottom:149.885473pt;}
.ya9_c00174{bottom:159.848000pt;}
.yaa_c00174{bottom:160.960760pt;}
.yab_c00174{bottom:161.332784pt;}
.yac_c00174{bottom:162.991772pt;}
.yad_c00174{bottom:164.241620pt;}
.yae_c00174{bottom:165.520520pt;}
.yaf_c00174{bottom:165.954536pt;}
.ya0_c00174{bottom:174.850519pt;}
.ya1_c00174{bottom:175.712461pt;}
.ya2_c00174{bottom:176.846069pt;}
.ya3_c00174{bottom:177.172745pt;}
.ya4_c00174{bottom:177.688248pt;}
.ya5_c00174{bottom:179.207539pt;}
.ya6_c00174{bottom:179.879107pt;}
.ya7_c00174{bottom:180.498257pt;}
.ya8_c00174{bottom:182.179625pt;}
.y99_c00174{bottom:192.855367pt;}
.y9a_c00174{bottom:193.812117pt;}
.y9b_c00174{bottom:194.305680pt;}
.y9c_c00174{bottom:195.615669pt;}
.y9d_c00174{bottom:196.049633pt;}
.y9e_c00174{bottom:196.874337pt;}
.y9f_c00174{bottom:197.424656pt;}
.y91_c00174{bottom:207.739771pt;}
.y92_c00174{bottom:208.833585pt;}
.y93_c00174{bottom:209.170235pt;}
.y94_c00174{bottom:210.363752pt;}
.y95_c00174{bottom:211.598265pt;}
.y96_c00174{bottom:212.153073pt;}
.y97_c00174{bottom:212.506928pt;}
.y98_c00174{bottom:213.427468pt;}
.y88_c00174{bottom:224.304529pt;}
.y89_c00174{bottom:224.897164pt;}
.y8a_c00174{bottom:225.225453pt;}
.y8b_c00174{bottom:226.137165pt;}
.y8c_c00174{bottom:226.488377pt;}
.y8d_c00174{bottom:226.788059pt;}
.y8e_c00174{bottom:227.581525pt;}
.y8f_c00174{bottom:227.811576pt;}
.y90_c00174{bottom:229.128731pt;}
.y81_c00174{bottom:238.950692pt;}
.y82_c00174{bottom:240.065959pt;}
.y83_c00174{bottom:241.358603pt;}
.y84_c00174{bottom:241.778217pt;}
.y85_c00174{bottom:242.480060pt;}
.y86_c00174{bottom:242.933797pt;}
.y87_c00174{bottom:244.770451pt;}
.y78_c00174{bottom:254.557619pt;}
.y79_c00174{bottom:255.625833pt;}
.y7a_c00174{bottom:256.070001pt;}
.y7b_c00174{bottom:257.459455pt;}
.y7c_c00174{bottom:257.751284pt;}
.y7d_c00174{bottom:258.780225pt;}
.y7e_c00174{bottom:259.238181pt;}
.y7f_c00174{bottom:259.972271pt;}
.y80_c00174{bottom:261.064243pt;}
.y71_c00174{bottom:270.160744pt;}
.y72_c00174{bottom:270.662997pt;}
.y73_c00174{bottom:271.755303pt;}
.y74_c00174{bottom:272.366127pt;}
.y75_c00174{bottom:273.145857pt;}
.y76_c00174{bottom:274.931677pt;}
.y77_c00174{bottom:275.501176pt;}
.y69_c00174{bottom:285.050696pt;}
.y6a_c00174{bottom:285.627941pt;}
.y6b_c00174{bottom:286.179984pt;}
.y6c_c00174{bottom:287.440145pt;}
.y6d_c00174{bottom:287.884933pt;}
.y6e_c00174{bottom:289.642881pt;}
.y6f_c00174{bottom:290.694043pt;}
.y70_c00174{bottom:292.227760pt;}
.y63_c00174{bottom:298.971943pt;}
.y64_c00174{bottom:300.055629pt;}
.y65_c00174{bottom:301.323223pt;}
.y66_c00174{bottom:301.554852pt;}
.y67_c00174{bottom:301.935876pt;}
.y68_c00174{bottom:303.353151pt;}
.y5b_c00174{bottom:315.298209pt;}
.y5c_c00174{bottom:316.259731pt;}
.y5d_c00174{bottom:317.471467pt;}
.y5e_c00174{bottom:317.708616pt;}
.y5f_c00174{bottom:318.116152pt;}
.y60_c00174{bottom:318.741077pt;}
.y61_c00174{bottom:319.709041pt;}
.y62_c00174{bottom:320.900479pt;}
.y53_c00174{bottom:328.272457pt;}
.y54_c00174{bottom:329.694245pt;}
.y55_c00174{bottom:330.988316pt;}
.y56_c00174{bottom:331.706664pt;}
.y57_c00174{bottom:332.304063pt;}
.y58_c00174{bottom:334.181345pt;}
.y59_c00174{bottom:335.511819pt;}
.y5a_c00174{bottom:337.084155pt;}
.y4d_c00174{bottom:343.160685pt;}
.y4e_c00174{bottom:345.013951pt;}
.y4f_c00174{bottom:345.940169pt;}
.y50_c00174{bottom:348.433431pt;}
.y51_c00174{bottom:349.393532pt;}
.y52_c00174{bottom:351.757815pt;}
.y44_c00174{bottom:358.522983pt;}
.y45_c00174{bottom:359.895261pt;}
.y46_c00174{bottom:360.316620pt;}
.y47_c00174{bottom:361.070255pt;}
.y48_c00174{bottom:361.972816pt;}
.y49_c00174{bottom:362.527871pt;}
.y4a_c00174{bottom:363.044289pt;}
.y4b_c00174{bottom:365.330472pt;}
.y4c_c00174{bottom:367.276708pt;}
.y3c_c00174{bottom:373.179227pt;}
.y3d_c00174{bottom:374.219693pt;}
.y3e_c00174{bottom:375.252525pt;}
.y3f_c00174{bottom:376.195255pt;}
.y40_c00174{bottom:378.597923pt;}
.y41_c00174{bottom:379.743293pt;}
.y42_c00174{bottom:381.778312pt;}
.y43_c00174{bottom:383.029307pt;}
.y37_c00174{bottom:389.258900pt;}
.y38_c00174{bottom:392.604196pt;}
.y39_c00174{bottom:393.531644pt;}
.y3a_c00174{bottom:395.818449pt;}
.y3b_c00174{bottom:396.998727pt;}
.y30_c00174{bottom:404.862703pt;}
.y31_c00174{bottom:406.921204pt;}
.y32_c00174{bottom:407.821877pt;}
.y33_c00174{bottom:409.517567pt;}
.y34_c00174{bottom:410.203145pt;}
.y35_c00174{bottom:412.250267pt;}
.y36_c00174{bottom:414.079701pt;}
.y28_c00174{bottom:419.986573pt;}
.y29_c00174{bottom:420.598173pt;}
.y2a_c00174{bottom:421.784788pt;}
.y2b_c00174{bottom:422.210909pt;}
.y2c_c00174{bottom:422.752077pt;}
.y2d_c00174{bottom:425.316151pt;}
.y2e_c00174{bottom:425.866608pt;}
.y2f_c00174{bottom:427.144288pt;}
.y1f_c00174{bottom:436.550641pt;}
.y20_c00174{bottom:437.386008pt;}
.y21_c00174{bottom:438.768624pt;}
.y22_c00174{bottom:439.352563pt;}
.y23_c00174{bottom:441.015303pt;}
.y24_c00174{bottom:441.404596pt;}
.y25_c00174{bottom:441.996528pt;}
.y26_c00174{bottom:443.724545pt;}
.y27_c00174{bottom:444.230892pt;}
.y18_c00174{bottom:451.914421pt;}
.y19_c00174{bottom:453.640683pt;}
.y1a_c00174{bottom:454.654735pt;}
.y1b_c00174{bottom:456.340453pt;}
.y1c_c00174{bottom:458.223848pt;}
.y1d_c00174{bottom:458.641524pt;}
.y1e_c00174{bottom:460.621452pt;}
.y10_c00174{bottom:466.804757pt;}
.y11_c00174{bottom:468.508919pt;}
.y12_c00174{bottom:469.150585pt;}
.y13_c00174{bottom:469.945863pt;}
.y14_c00174{bottom:472.165913pt;}
.y15_c00174{bottom:472.570105pt;}
.y16_c00174{bottom:473.692841pt;}
.y17_c00174{bottom:475.553531pt;}
.y9_c00174{bottom:483.845907pt;}
.ya_c00174{bottom:485.086728pt;}
.yb_c00174{bottom:485.936699pt;}
.yc_c00174{bottom:487.724604pt;}
.yd_c00174{bottom:488.868388pt;}
.ye_c00174{bottom:490.414113pt;}
.yf_c00174{bottom:491.215691pt;}
.y2_c00174{bottom:499.448000pt;}
.y3_c00174{bottom:500.289392pt;}
.y4_c00174{bottom:500.905280pt;}
.y5_c00174{bottom:501.411584pt;}
.y6_c00174{bottom:503.213420pt;}
.y7_c00174{bottom:503.939972pt;}
.y8_c00174{bottom:505.626248pt;}
.y1_c00174{bottom:516.245333pt;}
.hc_c00174{height:48.551021pt;}
.hd_c00174{height:50.418367pt;}
.h8_c00174{height:52.285714pt;}
.hf_c00174{height:53.219388pt;}
.he_c00174{height:54.153061pt;}
.h7_c00174{height:55.086735pt;}
.h9_c00174{height:56.020408pt;}
.h4_c00174{height:56.954082pt;}
.ha_c00174{height:57.887755pt;}
.hb_c00174{height:58.821429pt;}
.h11_c00174{height:59.755102pt;}
.h5_c00174{height:60.688776pt;}
.h10_c00174{height:61.622449pt;}
.h2_c00174{height:62.533333pt;}
.h3_c00174{height:62.556123pt;}
.h6_c00174{height:63.489796pt;}
.h0_c00174{height:553.866667pt;}
.h1_c00174{height:554.000000pt;}
.w1_c00174{width:340.666667pt;}
.w0_c00174{width:340.800000pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:24.310667pt;}
.x15_c00174{left:25.337887pt;}
.x28_c00174{left:26.865804pt;}
.x3c_c00174{left:28.010401pt;}
.x53_c00174{left:29.071772pt;}
.x59_c00174{left:30.003865pt;}
.x6b_c00174{left:31.453265pt;}
.x70_c00174{left:33.233564pt;}
.x5b_c00174{left:36.024504pt;}
.x62_c00174{left:42.304000pt;}
.x22_c00174{left:43.371947pt;}
.x49_c00174{left:46.933416pt;}
.x1b_c00174{left:51.709079pt;}
.x78_c00174{left:54.250384pt;}
.x3_c00174{left:55.473333pt;}
.x56_c00174{left:60.676631pt;}
.x9_c00174{left:62.456593pt;}
.x7d_c00174{left:63.860909pt;}
.x4a_c00174{left:65.353273pt;}
.x33_c00174{left:67.437929pt;}
.x3d_c00174{left:69.846517pt;}
.x41_c00174{left:71.252676pt;}
.x6d_c00174{left:72.162788pt;}
.xf_c00174{left:73.857507pt;}
.x23_c00174{left:77.288639pt;}
.x4_c00174{left:78.284000pt;}
.x29_c00174{left:79.632704pt;}
.x38_c00174{left:81.677805pt;}
.x63_c00174{left:83.517333pt;}
.x7e_c00174{left:86.388436pt;}
.xa_c00174{left:88.204417pt;}
.x24_c00174{left:89.463344pt;}
.x10_c00174{left:92.186880pt;}
.x1c_c00174{left:94.911247pt;}
.x5_c00174{left:97.036000pt;}
.x2f_c00174{left:100.602309pt;}
.x2a_c00174{left:102.711883pt;}
.x25_c00174{left:104.910663pt;}
.x4b_c00174{left:107.380556pt;}
.x16_c00174{left:108.397792pt;}
.x1d_c00174{left:113.178132pt;}
.x11_c00174{left:114.920651pt;}
.x74_c00174{left:116.866599pt;}
.x7f_c00174{left:118.111177pt;}
.x4c_c00174{left:122.223368pt;}
.x6e_c00174{left:124.477289pt;}
.x42_c00174{left:126.361461pt;}
.x34_c00174{left:128.570409pt;}
.x5e_c00174{left:131.894223pt;}
.x54_c00174{left:133.721707pt;}
.x66_c00174{left:135.156456pt;}
.x7b_c00174{left:136.213419pt;}
.x43_c00174{left:137.170937pt;}
.x2d_c00174{left:139.090605pt;}
.x79_c00174{left:140.560679pt;}
.xb_c00174{left:142.364967pt;}
.x1_c00174{left:143.280000pt;}
.x35_c00174{left:144.877980pt;}
.x2b_c00174{left:146.192473pt;}
.x47_c00174{left:150.884761pt;}
.x55_c00174{left:151.981020pt;}
.x6f_c00174{left:154.714863pt;}
.x44_c00174{left:155.674755pt;}
.x67_c00174{left:157.244548pt;}
.x17_c00174{left:159.465512pt;}
.x6_c00174{left:163.770667pt;}
.x1e_c00174{left:165.124445pt;}
.x5c_c00174{left:167.513816pt;}
.x48_c00174{left:168.999677pt;}
.x71_c00174{left:169.912851pt;}
.x75_c00174{left:175.616855pt;}
.xc_c00174{left:177.018017pt;}
.x12_c00174{left:178.365637pt;}
.x4d_c00174{left:180.809283pt;}
.x39_c00174{left:182.232131pt;}
.x45_c00174{left:184.107940pt;}
.x5f_c00174{left:186.138080pt;}
.x30_c00174{left:187.138955pt;}
.x5d_c00174{left:188.182497pt;}
.x76_c00174{left:189.297500pt;}
.x7_c00174{left:190.680000pt;}
.x26_c00174{left:193.923475pt;}
.x1f_c00174{left:195.782972pt;}
.x50_c00174{left:197.259284pt;}
.x2e_c00174{left:199.275416pt;}
.x3e_c00174{left:201.788236pt;}
.x68_c00174{left:203.340803pt;}
.x64_c00174{left:205.030667pt;}
.x3a_c00174{left:210.477469pt;}
.x4e_c00174{left:211.776755pt;}
.x6c_c00174{left:212.774613pt;}
.x57_c00174{left:214.132453pt;}
.x51_c00174{left:215.554923pt;}
.x18_c00174{left:216.520260pt;}
.x69_c00174{left:220.146376pt;}
.x13_c00174{left:222.020241pt;}
.xd_c00174{left:223.839755pt;}
.x36_c00174{left:227.279725pt;}
.x19_c00174{left:229.172875pt;}
.x27_c00174{left:230.422257pt;}
.x60_c00174{left:232.212820pt;}
.x4f_c00174{left:233.659997pt;}
.x77_c00174{left:234.693849pt;}
.x31_c00174{left:236.762865pt;}
.x3f_c00174{left:240.934189pt;}
.x52_c00174{left:244.917840pt;}
.xe_c00174{left:248.141164pt;}
.x20_c00174{left:249.801033pt;}
.x8_c00174{left:253.134667pt;}
.x72_c00174{left:257.446801pt;}
.x2c_c00174{left:263.171935pt;}
.x7c_c00174{left:264.292224pt;}
.x21_c00174{left:265.638909pt;}
.x32_c00174{left:267.282012pt;}
.x65_c00174{left:268.472000pt;}
.x7a_c00174{left:271.279652pt;}
.x73_c00174{left:272.861973pt;}
.x6a_c00174{left:273.925544pt;}
.x14_c00174{left:275.170091pt;}
.x5a_c00174{left:277.229172pt;}
.x3b_c00174{left:280.005663pt;}
.x46_c00174{left:282.271855pt;}
.x58_c00174{left:283.424727pt;}
.x37_c00174{left:284.536925pt;}
.x40_c00174{left:287.160108pt;}
.x1a_c00174{left:289.160488pt;}
.x61_c00174{left:292.261867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00175 {
    display:none;
  }
  .loading-indicator_c00175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00175 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00175 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00175" -> "#page-container .classname_c00175")
 */
.pf_c00175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00175 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00175 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00175 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00175 {overflow:visible;}
  }
}
.c_c00175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00175 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00175:after { /* webkit #35443 */
  content: '';
}
.t_c00175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00175 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00175 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00175 { /* info for Javascript */
  display:none;
}
.l_c00175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00175:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00175 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00175.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00175{transform:matrix(0.021576,0.000778,-0.009003,0.249838,0,0);-ms-transform:matrix(0.021576,0.000778,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.021576,0.000778,-0.009003,0.249838,0,0);}
.m92_c00175{transform:matrix(0.100585,0.003625,-0.009003,0.249838,0,0);-ms-transform:matrix(0.100585,0.003625,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.100585,0.003625,-0.009003,0.249838,0,0);}
.ma2_c00175{transform:matrix(0.124044,0.004470,-0.009003,0.249838,0,0);-ms-transform:matrix(0.124044,0.004470,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.124044,0.004470,-0.009003,0.249838,0,0);}
.m15_c00175{transform:matrix(0.132329,0.004769,-0.009003,0.249838,0,0);-ms-transform:matrix(0.132329,0.004769,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.132329,0.004769,-0.009003,0.249838,0,0);}
.ma8_c00175{transform:matrix(0.141038,0.005082,-0.009003,0.249838,0,0);-ms-transform:matrix(0.141038,0.005082,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.141038,0.005082,-0.009003,0.249838,0,0);}
.m14_c00175{transform:matrix(0.143762,0.005181,-0.009003,0.249838,0,0);-ms-transform:matrix(0.143762,0.005181,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.143762,0.005181,-0.009003,0.249838,0,0);}
.mc8_c00175{transform:matrix(0.144076,0.005192,-0.009003,0.249838,0,0);-ms-transform:matrix(0.144076,0.005192,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.144076,0.005192,-0.009003,0.249838,0,0);}
.m5f_c00175{transform:matrix(0.148379,0.005347,-0.009003,0.249838,0,0);-ms-transform:matrix(0.148379,0.005347,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.148379,0.005347,-0.009003,0.249838,0,0);}
.me_c00175{transform:matrix(0.150038,0.005407,-0.009003,0.249838,0,0);-ms-transform:matrix(0.150038,0.005407,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.150038,0.005407,-0.009003,0.249838,0,0);}
.m13_c00175{transform:matrix(0.150637,0.005428,-0.009003,0.249838,0,0);-ms-transform:matrix(0.150637,0.005428,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.150637,0.005428,-0.009003,0.249838,0,0);}
.me2_c00175{transform:matrix(0.151742,0.005468,-0.009003,0.249838,0,0);-ms-transform:matrix(0.151742,0.005468,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.151742,0.005468,-0.009003,0.249838,0,0);}
.mb9_c00175{transform:matrix(0.152056,0.005480,-0.009003,0.249838,0,0);-ms-transform:matrix(0.152056,0.005480,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.152056,0.005480,-0.009003,0.249838,0,0);}
.mad_c00175{transform:matrix(0.154670,0.005574,-0.009003,0.249838,0,0);-ms-transform:matrix(0.154670,0.005574,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.154670,0.005574,-0.009003,0.249838,0,0);}
.m58_c00175{transform:matrix(0.154974,0.005585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.154974,0.005585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.154974,0.005585,-0.009003,0.249838,0,0);}
.mc1_c00175{transform:matrix(0.155094,0.005589,-0.009003,0.249838,0,0);-ms-transform:matrix(0.155094,0.005589,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.155094,0.005589,-0.009003,0.249838,0,0);}
.m60_c00175{transform:matrix(0.156653,0.005645,-0.009003,0.249838,0,0);-ms-transform:matrix(0.156653,0.005645,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.156653,0.005645,-0.009003,0.249838,0,0);}
.m7d_c00175{transform:matrix(0.157343,0.005670,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157343,0.005670,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157343,0.005670,-0.009003,0.249838,0,0);}
.m1a_c00175{transform:matrix(0.157418,0.005673,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157418,0.005673,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157418,0.005673,-0.009003,0.249838,0,0);}
.m5e_c00175{transform:matrix(0.157893,0.005690,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157893,0.005690,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157893,0.005690,-0.009003,0.249838,0,0);}
.mc6_c00175{transform:matrix(0.158092,0.005697,-0.009003,0.249838,0,0);-ms-transform:matrix(0.158092,0.005697,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.158092,0.005697,-0.009003,0.249838,0,0);}
.m11_c00175{transform:matrix(0.159127,0.005734,-0.009003,0.249838,0,0);-ms-transform:matrix(0.159127,0.005734,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.159127,0.005734,-0.009003,0.249838,0,0);}
.ma7_c00175{transform:matrix(0.159397,0.005744,-0.009003,0.249838,0,0);-ms-transform:matrix(0.159397,0.005744,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.159397,0.005744,-0.009003,0.249838,0,0);}
.me1_c00175{transform:matrix(0.161850,0.005832,-0.009003,0.249838,0,0);-ms-transform:matrix(0.161850,0.005832,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.161850,0.005832,-0.009003,0.249838,0,0);}
.m78_c00175{transform:matrix(0.162914,0.005871,-0.009003,0.249838,0,0);-ms-transform:matrix(0.162914,0.005871,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.162914,0.005871,-0.009003,0.249838,0,0);}
.m64_c00175{transform:matrix(0.163339,0.005886,-0.009003,0.249838,0,0);-ms-transform:matrix(0.163339,0.005886,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.163339,0.005886,-0.009003,0.249838,0,0);}
.m63_c00175{transform:matrix(0.163399,0.005888,-0.009003,0.249838,0,0);-ms-transform:matrix(0.163399,0.005888,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.163399,0.005888,-0.009003,0.249838,0,0);}
.md3_c00175{transform:matrix(0.164143,0.005915,-0.009003,0.249838,0,0);-ms-transform:matrix(0.164143,0.005915,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.164143,0.005915,-0.009003,0.249838,0,0);}
.ma4_c00175{transform:matrix(0.164728,0.005936,-0.009003,0.249838,0,0);-ms-transform:matrix(0.164728,0.005936,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.164728,0.005936,-0.009003,0.249838,0,0);}
.mc3_c00175{transform:matrix(0.165208,0.005953,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165208,0.005953,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165208,0.005953,-0.009003,0.249838,0,0);}
.m36_c00175{transform:matrix(0.166222,0.005990,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166222,0.005990,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166222,0.005990,-0.009003,0.249838,0,0);}
.m96_c00175{transform:matrix(0.166492,0.006000,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166492,0.006000,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166492,0.006000,-0.009003,0.249838,0,0);}
.m21_c00175{transform:matrix(0.166832,0.006012,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166832,0.006012,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166832,0.006012,-0.009003,0.249838,0,0);}
.m43_c00175{transform:matrix(0.167107,0.006022,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167107,0.006022,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167107,0.006022,-0.009003,0.249838,0,0);}
.mb7_c00175{transform:matrix(0.167251,0.006027,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167251,0.006027,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167251,0.006027,-0.009003,0.249838,0,0);}
.mbb_c00175{transform:matrix(0.167516,0.006037,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167516,0.006037,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167516,0.006037,-0.009003,0.249838,0,0);}
.me3_c00175{transform:matrix(0.167991,0.006054,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167991,0.006054,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167991,0.006054,-0.009003,0.249838,0,0);}
.m4c_c00175{transform:matrix(0.168181,0.006061,-0.009003,0.249838,0,0);-ms-transform:matrix(0.168181,0.006061,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.168181,0.006061,-0.009003,0.249838,0,0);}
.m3f_c00175{transform:matrix(0.169165,0.006096,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169165,0.006096,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169165,0.006096,-0.009003,0.249838,0,0);}
.m1c_c00175{transform:matrix(0.169845,0.006121,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169845,0.006121,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169845,0.006121,-0.009003,0.249838,0,0);}
.md8_c00175{transform:matrix(0.170409,0.006141,-0.009003,0.249838,0,0);-ms-transform:matrix(0.170409,0.006141,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.170409,0.006141,-0.009003,0.249838,0,0);}
.mc_c00175{transform:matrix(0.170624,0.006149,-0.009003,0.249838,0,0);-ms-transform:matrix(0.170624,0.006149,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.170624,0.006149,-0.009003,0.249838,0,0);}
.m3c_c00175{transform:matrix(0.171024,0.006163,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171024,0.006163,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171024,0.006163,-0.009003,0.249838,0,0);}
.m48_c00175{transform:matrix(0.171788,0.006191,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171788,0.006191,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171788,0.006191,-0.009003,0.249838,0,0);}
.m97_c00175{transform:matrix(0.172573,0.006219,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172573,0.006219,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172573,0.006219,-0.009003,0.249838,0,0);}
.mc0_c00175{transform:matrix(0.172838,0.006228,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172838,0.006228,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172838,0.006228,-0.009003,0.249838,0,0);}
.m7a_c00175{transform:matrix(0.173657,0.006258,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173657,0.006258,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173657,0.006258,-0.009003,0.249838,0,0);}
.m98_c00175{transform:matrix(0.174941,0.006304,-0.009003,0.249838,0,0);-ms-transform:matrix(0.174941,0.006304,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.174941,0.006304,-0.009003,0.249838,0,0);}
.m33_c00175{transform:matrix(0.175351,0.006319,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175351,0.006319,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175351,0.006319,-0.009003,0.249838,0,0);}
.m7f_c00175{transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175966,0.006341,-0.009003,0.249838,0,0);}
.mf_c00175{transform:matrix(0.176121,0.006347,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176121,0.006347,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176121,0.006347,-0.009003,0.249838,0,0);}
.m91_c00175{transform:matrix(0.176620,0.006365,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176620,0.006365,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176620,0.006365,-0.009003,0.249838,0,0);}
.m45_c00175{transform:matrix(0.176810,0.006372,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176810,0.006372,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176810,0.006372,-0.009003,0.249838,0,0);}
.m37_c00175{transform:matrix(0.177360,0.006391,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177360,0.006391,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177360,0.006391,-0.009003,0.249838,0,0);}
.m31_c00175{transform:matrix(0.177535,0.006398,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177535,0.006398,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177535,0.006398,-0.009003,0.249838,0,0);}
.m67_c00175{transform:matrix(0.177910,0.006411,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177910,0.006411,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177910,0.006411,-0.009003,0.249838,0,0);}
.mc4_c00175{transform:matrix(0.178109,0.006418,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178109,0.006418,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178109,0.006418,-0.009003,0.249838,0,0);}
.m8a_c00175{transform:matrix(0.178224,0.006422,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178224,0.006422,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178224,0.006422,-0.009003,0.249838,0,0);}
.m28_c00175{transform:matrix(0.178829,0.006444,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178829,0.006444,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178829,0.006444,-0.009003,0.249838,0,0);}
.mea_c00175{transform:matrix(0.178924,0.006448,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178924,0.006448,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178924,0.006448,-0.009003,0.249838,0,0);}
.m46_c00175{transform:matrix(0.178994,0.006450,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178994,0.006450,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178994,0.006450,-0.009003,0.249838,0,0);}
.m10_c00175{transform:matrix(0.179224,0.006459,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179224,0.006459,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179224,0.006459,-0.009003,0.249838,0,0);}
.m80_c00175{transform:matrix(0.179583,0.006471,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179583,0.006471,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179583,0.006471,-0.009003,0.249838,0,0);}
.mb4_c00175{transform:matrix(0.179723,0.006477,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179723,0.006477,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179723,0.006477,-0.009003,0.249838,0,0);}
.me9_c00175{transform:matrix(0.180703,0.006512,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180703,0.006512,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180703,0.006512,-0.009003,0.249838,0,0);}
.m86_c00175{transform:matrix(0.180968,0.006521,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180968,0.006521,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180968,0.006521,-0.009003,0.249838,0,0);}
.m16_c00175{transform:matrix(0.181132,0.006527,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181132,0.006527,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181132,0.006527,-0.009003,0.249838,0,0);}
.m7e_c00175{transform:matrix(0.181487,0.006540,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181487,0.006540,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181487,0.006540,-0.009003,0.249838,0,0);}
.m6_c00175{transform:matrix(0.181852,0.006553,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181852,0.006553,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181852,0.006553,-0.009003,0.249838,0,0);}
.mef_c00175{transform:matrix(0.181892,0.006555,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181892,0.006555,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181892,0.006555,-0.009003,0.249838,0,0);}
.m59_c00175{transform:matrix(0.182042,0.006560,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182042,0.006560,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182042,0.006560,-0.009003,0.249838,0,0);}
.mb3_c00175{transform:matrix(0.183616,0.006617,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183616,0.006617,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183616,0.006617,-0.009003,0.249838,0,0);}
.me8_c00175{transform:matrix(0.183841,0.006625,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183841,0.006625,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183841,0.006625,-0.009003,0.249838,0,0);}
.m5c_c00175{transform:matrix(0.183876,0.006626,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183876,0.006626,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183876,0.006626,-0.009003,0.249838,0,0);}
.m18_c00175{transform:matrix(0.183896,0.006627,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183896,0.006627,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183896,0.006627,-0.009003,0.249838,0,0);}
.m7b_c00175{transform:matrix(0.184265,0.006640,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184265,0.006640,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184265,0.006640,-0.009003,0.249838,0,0);}
.m26_c00175{transform:matrix(0.184300,0.006641,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184300,0.006641,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184300,0.006641,-0.009003,0.249838,0,0);}
.maf_c00175{transform:matrix(0.184315,0.006642,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184315,0.006642,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184315,0.006642,-0.009003,0.249838,0,0);}
.m6a_c00175{transform:matrix(0.184485,0.006648,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184485,0.006648,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184485,0.006648,-0.009003,0.249838,0,0);}
.m65_c00175{transform:matrix(0.184610,0.006653,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184610,0.006653,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184610,0.006653,-0.009003,0.249838,0,0);}
.m6f_c00175{transform:matrix(0.184730,0.006657,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184730,0.006657,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184730,0.006657,-0.009003,0.249838,0,0);}
.mb6_c00175{transform:matrix(0.184975,0.006666,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184975,0.006666,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184975,0.006666,-0.009003,0.249838,0,0);}
.ma_c00175{transform:matrix(0.185610,0.006689,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185610,0.006689,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185610,0.006689,-0.009003,0.249838,0,0);}
.m32_c00175{transform:matrix(0.185919,0.006700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185919,0.006700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185919,0.006700,-0.009003,0.249838,0,0);}
.m85_c00175{transform:matrix(0.186494,0.006721,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186494,0.006721,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186494,0.006721,-0.009003,0.249838,0,0);}
.mce_c00175{transform:matrix(0.186499,0.006721,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186499,0.006721,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186499,0.006721,-0.009003,0.249838,0,0);}
.m81_c00175{transform:matrix(0.187014,0.006739,-0.009003,0.249838,0,0);-ms-transform:matrix(0.187014,0.006739,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.187014,0.006739,-0.009003,0.249838,0,0);}
.m6d_c00175{transform:matrix(0.187518,0.006757,-0.009003,0.249838,0,0);-ms-transform:matrix(0.187518,0.006757,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.187518,0.006757,-0.009003,0.249838,0,0);}
.mbd_c00175{transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);}
.m68_c00175{transform:matrix(0.188518,0.006793,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188518,0.006793,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188518,0.006793,-0.009003,0.249838,0,0);}
.mdd_c00175{transform:matrix(0.189682,0.006835,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189682,0.006835,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189682,0.006835,-0.009003,0.249838,0,0);}
.m69_c00175{transform:matrix(0.189847,0.006841,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189847,0.006841,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189847,0.006841,-0.009003,0.249838,0,0);}
.m9f_c00175{transform:matrix(0.190112,0.006851,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190112,0.006851,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190112,0.006851,-0.009003,0.249838,0,0);}
.m2b_c00175{transform:matrix(0.190456,0.006863,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190456,0.006863,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190456,0.006863,-0.009003,0.249838,0,0);}
.mc2_c00175{transform:matrix(0.191256,0.006892,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191256,0.006892,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191256,0.006892,-0.009003,0.249838,0,0);}
.m5a_c00175{transform:matrix(0.191451,0.006899,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191451,0.006899,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191451,0.006899,-0.009003,0.249838,0,0);}
.m8e_c00175{transform:matrix(0.191721,0.006909,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191721,0.006909,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191721,0.006909,-0.009003,0.249838,0,0);}
.m87_c00175{transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);}
.m1b_c00175{transform:matrix(0.192800,0.006948,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192800,0.006948,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192800,0.006948,-0.009003,0.249838,0,0);}
.ma3_c00175{transform:matrix(0.193165,0.006961,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193165,0.006961,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193165,0.006961,-0.009003,0.249838,0,0);}
.m9_c00175{transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193310,0.006966,-0.009003,0.249838,0,0);}
.m41_c00175{transform:matrix(0.193774,0.006983,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193774,0.006983,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193774,0.006983,-0.009003,0.249838,0,0);}
.m34_c00175{transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);}
.mc7_c00175{transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);}
.me5_c00175{transform:matrix(0.195263,0.007037,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195263,0.007037,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195263,0.007037,-0.009003,0.249838,0,0);}
.mae_c00175{transform:matrix(0.195308,0.007038,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195308,0.007038,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195308,0.007038,-0.009003,0.249838,0,0);}
.m3d_c00175{transform:matrix(0.195578,0.007048,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195578,0.007048,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195578,0.007048,-0.009003,0.249838,0,0);}
.mc9_c00175{transform:matrix(0.195978,0.007062,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195978,0.007062,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195978,0.007062,-0.009003,0.249838,0,0);}
.m4f_c00175{transform:matrix(0.196068,0.007066,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196068,0.007066,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196068,0.007066,-0.009003,0.249838,0,0);}
.mb8_c00175{transform:matrix(0.196233,0.007071,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196233,0.007071,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196233,0.007071,-0.009003,0.249838,0,0);}
.m51_c00175{transform:matrix(0.196572,0.007084,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196572,0.007084,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196572,0.007084,-0.009003,0.249838,0,0);}
.m25_c00175{transform:matrix(0.196607,0.007085,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196607,0.007085,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196607,0.007085,-0.009003,0.249838,0,0);}
.m2e_c00175{transform:matrix(0.196827,0.007093,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196827,0.007093,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196827,0.007093,-0.009003,0.249838,0,0);}
.m76_c00175{transform:matrix(0.196937,0.007097,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196937,0.007097,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196937,0.007097,-0.009003,0.249838,0,0);}
.mac_c00175{transform:matrix(0.196977,0.007098,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196977,0.007098,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196977,0.007098,-0.009003,0.249838,0,0);}
.m8_c00175{transform:matrix(0.197457,0.007116,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197457,0.007116,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197457,0.007116,-0.009003,0.249838,0,0);}
.mba_c00175{transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);}
.m7_c00175{transform:matrix(0.197812,0.007128,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197812,0.007128,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197812,0.007128,-0.009003,0.249838,0,0);}
.m82_c00175{transform:matrix(0.198751,0.007162,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198751,0.007162,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198751,0.007162,-0.009003,0.249838,0,0);}
.maa_c00175{transform:matrix(0.198846,0.007166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198846,0.007166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198846,0.007166,-0.009003,0.249838,0,0);}
.md_c00175{transform:matrix(0.198991,0.007171,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198991,0.007171,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198991,0.007171,-0.009003,0.249838,0,0);}
.m3a_c00175{transform:matrix(0.199206,0.007179,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199206,0.007179,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199206,0.007179,-0.009003,0.249838,0,0);}
.mb_c00175{transform:matrix(0.199790,0.007200,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199790,0.007200,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199790,0.007200,-0.009003,0.249838,0,0);}
.m49_c00175{transform:matrix(0.199810,0.007200,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199810,0.007200,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199810,0.007200,-0.009003,0.249838,0,0);}
.m19_c00175{transform:matrix(0.199985,0.007207,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199985,0.007207,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199985,0.007207,-0.009003,0.249838,0,0);}
.m22_c00175{transform:matrix(0.200460,0.007224,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200460,0.007224,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200460,0.007224,-0.009003,0.249838,0,0);}
.me7_c00175{transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);}
.m79_c00175{transform:matrix(0.200650,0.007231,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200650,0.007231,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200650,0.007231,-0.009003,0.249838,0,0);}
.m1f_c00175{transform:matrix(0.201020,0.007244,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201020,0.007244,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201020,0.007244,-0.009003,0.249838,0,0);}
.m9c_c00175{transform:matrix(0.201164,0.007249,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201164,0.007249,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201164,0.007249,-0.009003,0.249838,0,0);}
.m2f_c00175{transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201309,0.007254,-0.009003,0.249838,0,0);}
.m39_c00175{transform:matrix(0.201704,0.007269,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201704,0.007269,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201704,0.007269,-0.009003,0.249838,0,0);}
.m4d_c00175{transform:matrix(0.202114,0.007283,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202114,0.007283,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202114,0.007283,-0.009003,0.249838,0,0);}
.mcd_c00175{transform:matrix(0.202299,0.007290,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202299,0.007290,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202299,0.007290,-0.009003,0.249838,0,0);}
.m95_c00175{transform:matrix(0.202479,0.007297,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202479,0.007297,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202479,0.007297,-0.009003,0.249838,0,0);}
.mee_c00175{transform:matrix(0.202638,0.007302,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202638,0.007302,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202638,0.007302,-0.009003,0.249838,0,0);}
.mdb_c00175{transform:matrix(0.202673,0.007304,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202673,0.007304,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202673,0.007304,-0.009003,0.249838,0,0);}
.m61_c00175{transform:matrix(0.203183,0.007322,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203183,0.007322,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203183,0.007322,-0.009003,0.249838,0,0);}
.m1e_c00175{transform:matrix(0.203198,0.007322,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203198,0.007322,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203198,0.007322,-0.009003,0.249838,0,0);}
.m62_c00175{transform:matrix(0.203228,0.007324,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203228,0.007324,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203228,0.007324,-0.009003,0.249838,0,0);}
.m17_c00175{transform:matrix(0.204078,0.007354,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204078,0.007354,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204078,0.007354,-0.009003,0.249838,0,0);}
.m35_c00175{transform:matrix(0.204262,0.007361,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204262,0.007361,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204262,0.007361,-0.009003,0.249838,0,0);}
.m9e_c00175{transform:matrix(0.204782,0.007380,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204782,0.007380,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204782,0.007380,-0.009003,0.249838,0,0);}
.m66_c00175{transform:matrix(0.205217,0.007395,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205217,0.007395,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205217,0.007395,-0.009003,0.249838,0,0);}
.mab_c00175{transform:matrix(0.205272,0.007397,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205272,0.007397,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205272,0.007397,-0.009003,0.249838,0,0);}
.m47_c00175{transform:matrix(0.205367,0.007401,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205367,0.007401,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205367,0.007401,-0.009003,0.249838,0,0);}
.mc5_c00175{transform:matrix(0.205457,0.007404,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205457,0.007404,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205457,0.007404,-0.009003,0.249838,0,0);}
.ma5_c00175{transform:matrix(0.206031,0.007425,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206031,0.007425,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206031,0.007425,-0.009003,0.249838,0,0);}
.mbc_c00175{transform:matrix(0.206166,0.007429,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206166,0.007429,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206166,0.007429,-0.009003,0.249838,0,0);}
.m71_c00175{transform:matrix(0.206196,0.007430,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206196,0.007430,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206196,0.007430,-0.009003,0.249838,0,0);}
.m1d_c00175{transform:matrix(0.206351,0.007436,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206351,0.007436,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206351,0.007436,-0.009003,0.249838,0,0);}
.m20_c00175{transform:matrix(0.206501,0.007441,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206501,0.007441,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206501,0.007441,-0.009003,0.249838,0,0);}
.m89_c00175{transform:matrix(0.206891,0.007456,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206891,0.007456,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206891,0.007456,-0.009003,0.249838,0,0);}
.m5d_c00175{transform:matrix(0.207161,0.007465,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207161,0.007465,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207161,0.007465,-0.009003,0.249838,0,0);}
.mbf_c00175{transform:matrix(0.207181,0.007466,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207181,0.007466,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207181,0.007466,-0.009003,0.249838,0,0);}
.m3b_c00175{transform:matrix(0.207265,0.007469,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207265,0.007469,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207265,0.007469,-0.009003,0.249838,0,0);}
.m5b_c00175{transform:matrix(0.207310,0.007471,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207310,0.007471,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207310,0.007471,-0.009003,0.249838,0,0);}
.mec_c00175{transform:matrix(0.207385,0.007473,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207385,0.007473,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207385,0.007473,-0.009003,0.249838,0,0);}
.m83_c00175{transform:matrix(0.207630,0.007482,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207630,0.007482,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207630,0.007482,-0.009003,0.249838,0,0);}
.m94_c00175{transform:matrix(0.207965,0.007494,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207965,0.007494,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207965,0.007494,-0.009003,0.249838,0,0);}
.m6b_c00175{transform:matrix(0.208430,0.007511,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208430,0.007511,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208430,0.007511,-0.009003,0.249838,0,0);}
.m12_c00175{transform:matrix(0.209374,0.007545,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209374,0.007545,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209374,0.007545,-0.009003,0.249838,0,0);}
.m74_c00175{transform:matrix(0.209484,0.007549,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209484,0.007549,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209484,0.007549,-0.009003,0.249838,0,0);}
.mb5_c00175{transform:matrix(0.210194,0.007575,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210194,0.007575,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210194,0.007575,-0.009003,0.249838,0,0);}
.m44_c00175{transform:matrix(0.210433,0.007583,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210433,0.007583,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210433,0.007583,-0.009003,0.249838,0,0);}
.md4_c00175{transform:matrix(0.211033,0.007605,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211033,0.007605,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211033,0.007605,-0.009003,0.249838,0,0);}
.m3_c00175{transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);}
.me4_c00175{transform:matrix(0.211793,0.007632,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211793,0.007632,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211793,0.007632,-0.009003,0.249838,0,0);}
.md1_c00175{transform:matrix(0.211952,0.007638,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211952,0.007638,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211952,0.007638,-0.009003,0.249838,0,0);}
.m7c_c00175{transform:matrix(0.212347,0.007652,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212347,0.007652,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212347,0.007652,-0.009003,0.249838,0,0);}
.m88_c00175{transform:matrix(0.212392,0.007654,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212392,0.007654,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212392,0.007654,-0.009003,0.249838,0,0);}
.m42_c00175{transform:matrix(0.213237,0.007684,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213237,0.007684,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213237,0.007684,-0.009003,0.249838,0,0);}
.me6_c00175{transform:matrix(0.213866,0.007707,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213866,0.007707,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213866,0.007707,-0.009003,0.249838,0,0);}
.m57_c00175{transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213901,0.007708,-0.009003,0.249838,0,0);}
.m6e_c00175{transform:matrix(0.213936,0.007709,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213936,0.007709,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213936,0.007709,-0.009003,0.249838,0,0);}
.m77_c00175{transform:matrix(0.214371,0.007725,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214371,0.007725,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214371,0.007725,-0.009003,0.249838,0,0);}
.m73_c00175{transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);}
.m3e_c00175{transform:matrix(0.215145,0.007753,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215145,0.007753,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215145,0.007753,-0.009003,0.249838,0,0);}
.md2_c00175{transform:matrix(0.216609,0.007806,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216609,0.007806,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216609,0.007806,-0.009003,0.249838,0,0);}
.m24_c00175{transform:matrix(0.216639,0.007807,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216639,0.007807,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216639,0.007807,-0.009003,0.249838,0,0);}
.m8d_c00175{transform:matrix(0.216814,0.007813,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216814,0.007813,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216814,0.007813,-0.009003,0.249838,0,0);}
.m4b_c00175{transform:matrix(0.217789,0.007848,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217789,0.007848,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217789,0.007848,-0.009003,0.249838,0,0);}
.m27_c00175{transform:matrix(0.218298,0.007867,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218298,0.007867,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218298,0.007867,-0.009003,0.249838,0,0);}
.m9b_c00175{transform:matrix(0.220357,0.007941,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220357,0.007941,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220357,0.007941,-0.009003,0.249838,0,0);}
.ma9_c00175{transform:matrix(0.220362,0.007941,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220362,0.007941,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220362,0.007941,-0.009003,0.249838,0,0);}
.m84_c00175{transform:matrix(0.220532,0.007947,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220532,0.007947,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220532,0.007947,-0.009003,0.249838,0,0);}
.m40_c00175{transform:matrix(0.221166,0.007970,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221166,0.007970,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221166,0.007970,-0.009003,0.249838,0,0);}
.m30_c00175{transform:matrix(0.221271,0.007974,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221271,0.007974,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221271,0.007974,-0.009003,0.249838,0,0);}
.mdc_c00175{transform:matrix(0.221781,0.007992,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221781,0.007992,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221781,0.007992,-0.009003,0.249838,0,0);}
.m50_c00175{transform:matrix(0.222556,0.008020,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222556,0.008020,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222556,0.008020,-0.009003,0.249838,0,0);}
.mbe_c00175{transform:matrix(0.222591,0.008021,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222591,0.008021,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222591,0.008021,-0.009003,0.249838,0,0);}
.m4e_c00175{transform:matrix(0.222635,0.008023,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222635,0.008023,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222635,0.008023,-0.009003,0.249838,0,0);}
.me0_c00175{transform:matrix(0.223095,0.008039,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223095,0.008039,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223095,0.008039,-0.009003,0.249838,0,0);}
.ma6_c00175{transform:matrix(0.223155,0.008042,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223155,0.008042,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223155,0.008042,-0.009003,0.249838,0,0);}
.m75_c00175{transform:matrix(0.223255,0.008045,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223255,0.008045,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223255,0.008045,-0.009003,0.249838,0,0);}
.m2a_c00175{transform:matrix(0.223390,0.008050,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223390,0.008050,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223390,0.008050,-0.009003,0.249838,0,0);}
.m55_c00175{transform:matrix(0.223415,0.008051,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223415,0.008051,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223415,0.008051,-0.009003,0.249838,0,0);}
.mca_c00175{transform:matrix(0.223485,0.008054,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223485,0.008054,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223485,0.008054,-0.009003,0.249838,0,0);}
.m23_c00175{transform:matrix(0.224849,0.008103,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224849,0.008103,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224849,0.008103,-0.009003,0.249838,0,0);}
.m90_c00175{transform:matrix(0.224864,0.008103,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224864,0.008103,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224864,0.008103,-0.009003,0.249838,0,0);}
.m4a_c00175{transform:matrix(0.224959,0.008107,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224959,0.008107,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224959,0.008107,-0.009003,0.249838,0,0);}
.m70_c00175{transform:matrix(0.225244,0.008117,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225244,0.008117,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225244,0.008117,-0.009003,0.249838,0,0);}
.md5_c00175{transform:matrix(0.226013,0.008145,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226013,0.008145,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226013,0.008145,-0.009003,0.249838,0,0);}
.m4_c00175{transform:matrix(0.226753,0.008171,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226753,0.008171,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226753,0.008171,-0.009003,0.249838,0,0);}
.m9a_c00175{transform:matrix(0.227158,0.008186,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227158,0.008186,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227158,0.008186,-0.009003,0.249838,0,0);}
.m9d_c00175{transform:matrix(0.227447,0.008196,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227447,0.008196,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227447,0.008196,-0.009003,0.249838,0,0);}
.m52_c00175{transform:matrix(0.228277,0.008226,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228277,0.008226,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228277,0.008226,-0.009003,0.249838,0,0);}
.m8b_c00175{transform:matrix(0.229571,0.008273,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229571,0.008273,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229571,0.008273,-0.009003,0.249838,0,0);}
.meb_c00175{transform:matrix(0.232519,0.008379,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232519,0.008379,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232519,0.008379,-0.009003,0.249838,0,0);}
.md9_c00175{transform:matrix(0.232699,0.008386,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232699,0.008386,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232699,0.008386,-0.009003,0.249838,0,0);}
.m99_c00175{transform:matrix(0.233803,0.008425,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233803,0.008425,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233803,0.008425,-0.009003,0.249838,0,0);}
.m8f_c00175{transform:matrix(0.234778,0.008460,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234778,0.008460,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234778,0.008460,-0.009003,0.249838,0,0);}
.mcc_c00175{transform:matrix(0.235492,0.008486,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235492,0.008486,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235492,0.008486,-0.009003,0.249838,0,0);}
.mb0_c00175{transform:matrix(0.235517,0.008487,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235517,0.008487,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235517,0.008487,-0.009003,0.249838,0,0);}
.m8c_c00175{transform:matrix(0.236192,0.008511,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236192,0.008511,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236192,0.008511,-0.009003,0.249838,0,0);}
.m72_c00175{transform:matrix(0.236322,0.008516,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236322,0.008516,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236322,0.008516,-0.009003,0.249838,0,0);}
.m6c_c00175{transform:matrix(0.236591,0.008526,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236591,0.008526,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236591,0.008526,-0.009003,0.249838,0,0);}
.med_c00175{transform:matrix(0.236906,0.008537,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236906,0.008537,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236906,0.008537,-0.009003,0.249838,0,0);}
.m93_c00175{transform:matrix(0.237886,0.008572,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237886,0.008572,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237886,0.008572,-0.009003,0.249838,0,0);}
.m56_c00175{transform:matrix(0.240434,0.008664,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240434,0.008664,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240434,0.008664,-0.009003,0.249838,0,0);}
.mf0_c00175{transform:matrix(0.242518,0.008739,-0.009003,0.249838,0,0);-ms-transform:matrix(0.242518,0.008739,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.242518,0.008739,-0.009003,0.249838,0,0);}
.mde_c00175{transform:matrix(0.243302,0.008768,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243302,0.008768,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243302,0.008768,-0.009003,0.249838,0,0);}
.m2_c00175{transform:matrix(0.245241,0.008838,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245241,0.008838,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245241,0.008838,-0.009003,0.249838,0,0);}
.mb1_c00175{transform:matrix(0.246635,0.008888,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246635,0.008888,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246635,0.008888,-0.009003,0.249838,0,0);}
.mb2_c00175{transform:matrix(0.247459,0.008917,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247459,0.008917,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247459,0.008917,-0.009003,0.249838,0,0);}
.ma1_c00175{transform:matrix(0.248863,0.008968,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248863,0.008968,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248863,0.008968,-0.009003,0.249838,0,0);}
.m54_c00175{transform:matrix(0.249453,0.008989,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249453,0.008989,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249453,0.008989,-0.009003,0.249838,0,0);}
.mcf_c00175{transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);}
.m29_c00175{transform:matrix(0.252676,0.009105,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252676,0.009105,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252676,0.009105,-0.009003,0.249838,0,0);}
.m2c_c00175{transform:matrix(0.254365,0.009166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254365,0.009166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254365,0.009166,-0.009003,0.249838,0,0);}
.m38_c00175{transform:matrix(0.258772,0.009325,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258772,0.009325,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258772,0.009325,-0.009003,0.249838,0,0);}
.m53_c00175{transform:matrix(0.259342,0.009346,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259342,0.009346,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259342,0.009346,-0.009003,0.249838,0,0);}
.m2d_c00175{transform:matrix(0.266917,0.009619,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266917,0.009619,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266917,0.009619,-0.009003,0.249838,0,0);}
.md6_c00175{transform:matrix(0.267786,0.009650,-0.009003,0.249838,0,0);-ms-transform:matrix(0.267786,0.009650,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.267786,0.009650,-0.009003,0.249838,0,0);}
.mdf_c00175{transform:matrix(0.273887,0.009870,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273887,0.009870,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273887,0.009870,-0.009003,0.249838,0,0);}
.md0_c00175{transform:matrix(0.275206,0.009917,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275206,0.009917,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275206,0.009917,-0.009003,0.249838,0,0);}
.ma0_c00175{transform:matrix(0.294204,0.010602,-0.009003,0.249838,0,0);-ms-transform:matrix(0.294204,0.010602,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.294204,0.010602,-0.009003,0.249838,0,0);}
.m0_c00175{transform:matrix(0.295358,0.010644,-0.009003,0.249838,0,0);-ms-transform:matrix(0.295358,0.010644,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.295358,0.010644,-0.009003,0.249838,0,0);}
.md7_c00175{transform:matrix(0.341333,0.012300,-0.009003,0.249838,0,0);-ms-transform:matrix(0.341333,0.012300,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.341333,0.012300,-0.009003,0.249838,0,0);}
.mcb_c00175{transform:matrix(0.372293,0.013416,-0.009003,0.249838,0,0);-ms-transform:matrix(0.372293,0.013416,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.372293,0.013416,-0.009003,0.249838,0,0);}
.mda_c00175{transform:matrix(0.671394,0.024194,-0.009003,0.249838,0,0);-ms-transform:matrix(0.671394,0.024194,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.671394,0.024194,-0.009003,0.249838,0,0);}
.m5_c00175{transform:matrix(0.765838,0.027598,-0.009003,0.249838,0,0);-ms-transform:matrix(0.765838,0.027598,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.765838,0.027598,-0.009003,0.249838,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:0.000000px;}
.fc0_c00175{color:transparent;}
.fs8_c00175{font-size:54.580805px;}
.fsc_c00175{font-size:57.729697px;}
.fsb_c00175{font-size:58.779328px;}
.fsa_c00175{font-size:59.828959px;}
.fs7_c00175{font-size:60.878590px;}
.fs5_c00175{font-size:61.928221px;}
.fs6_c00175{font-size:62.977852px;}
.fs9_c00175{font-size:64.027482px;}
.fs1_c00175{font-size:65.077113px;}
.fsd_c00175{font-size:66.126744px;}
.fs4_c00175{font-size:67.176375px;}
.fs2_c00175{font-size:69.275637px;}
.fs3_c00175{font-size:70.325268px;}
.fs0_c00175{font-size:118.608287px;}
.y0_c00175{bottom:0.000000px;}
.yf5_c00175{bottom:22.490615px;}
.yf4_c00175{bottom:23.450181px;}
.yf3_c00175{bottom:24.215780px;}
.yf2_c00175{bottom:25.756143px;}
.yf1_c00175{bottom:26.301557px;}
.yf0_c00175{bottom:27.390980px;}
.yef_c00175{bottom:27.870500px;}
.yee_c00175{bottom:29.101875px;}
.yed_c00175{bottom:38.390537px;}
.yec_c00175{bottom:40.191369px;}
.yeb_c00175{bottom:41.934368px;}
.yea_c00175{bottom:42.554531px;}
.ye9_c00175{bottom:44.052288px;}
.ye8_c00175{bottom:44.573807px;}
.ye7_c00175{bottom:45.409119px;}
.ye6_c00175{bottom:46.110215px;}
.ye5_c00175{bottom:55.678299px;}
.ye4_c00175{bottom:57.997721px;}
.ye3_c00175{bottom:58.538301px;}
.ye2_c00175{bottom:59.908335px;}
.ye1_c00175{bottom:60.411575px;}
.ye0_c00175{bottom:62.518209px;}
.ydf_c00175{bottom:63.650616px;}
.yde_c00175{bottom:74.893011px;}
.ydd_c00175{bottom:75.520761px;}
.ydc_c00175{bottom:75.935643px;}
.ydb_c00175{bottom:78.389497px;}
.yda_c00175{bottom:78.826412px;}
.yd9_c00175{bottom:81.144146px;}
.yd8_c00175{bottom:81.732516px;}
.yd7_c00175{bottom:83.628834px;}
.yd6_c00175{bottom:91.710623px;}
.yd5_c00175{bottom:92.223596px;}
.yd4_c00175{bottom:93.067818px;}
.yd3_c00175{bottom:94.305647px;}
.yd2_c00175{bottom:96.032337px;}
.yd1_c00175{bottom:97.659641px;}
.yd0_c00175{bottom:108.048120px;}
.ycf_c00175{bottom:116.287940px;}
.yce_c00175{bottom:125.778507px;}
.ycd_c00175{bottom:126.370415px;}
.ycc_c00175{bottom:127.294206px;}
.ycb_c00175{bottom:127.951049px;}
.yca_c00175{bottom:130.550879px;}
.yc9_c00175{bottom:132.402242px;}
.yc8_c00175{bottom:132.931712px;}
.yc7_c00175{bottom:133.553252px;}
.yc6_c00175{bottom:134.908881px;}
.yc5_c00175{bottom:142.063274px;}
.yc4_c00175{bottom:142.997055px;}
.yc3_c00175{bottom:143.445768px;}
.yc2_c00175{bottom:145.187484px;}
.yc1_c00175{bottom:146.401512px;}
.yc0_c00175{bottom:147.057045px;}
.ybf_c00175{bottom:149.074364px;}
.ybe_c00175{bottom:149.704233px;}
.ybd_c00175{bottom:151.907460px;}
.ybc_c00175{bottom:160.668380px;}
.ybb_c00175{bottom:161.491907px;}
.yba_c00175{bottom:163.481496px;}
.yb9_c00175{bottom:165.144926px;}
.yb8_c00175{bottom:166.154753px;}
.yb7_c00175{bottom:166.496424px;}
.yb6_c00175{bottom:167.461094px;}
.yb5_c00175{bottom:168.041931px;}
.yb4_c00175{bottom:169.184355px;}
.yb3_c00175{bottom:178.933596px;}
.yb2_c00175{bottom:179.654766px;}
.yb1_c00175{bottom:181.885587px;}
.yb0_c00175{bottom:183.984608px;}
.yaf_c00175{bottom:186.189590px;}
.yae_c00175{bottom:194.698370px;}
.yad_c00175{bottom:195.388827px;}
.yac_c00175{bottom:196.601694px;}
.yab_c00175{bottom:197.251409px;}
.yaa_c00175{bottom:199.449681px;}
.ya9_c00175{bottom:201.713631px;}
.ya8_c00175{bottom:204.462542px;}
.ya7_c00175{bottom:205.620477px;}
.ya6_c00175{bottom:212.544492px;}
.ya5_c00175{bottom:214.219397px;}
.ya4_c00175{bottom:214.763015px;}
.ya3_c00175{bottom:216.562011px;}
.ya2_c00175{bottom:217.661316px;}
.ya1_c00175{bottom:219.002231px;}
.ya0_c00175{bottom:219.376262px;}
.y9f_c00175{bottom:221.274645px;}
.y9e_c00175{bottom:229.906127px;}
.y9d_c00175{bottom:231.232421px;}
.y9c_c00175{bottom:231.874211px;}
.y9b_c00175{bottom:232.665149px;}
.y9a_c00175{bottom:234.488945px;}
.y99_c00175{bottom:237.387503px;}
.y98_c00175{bottom:239.727107px;}
.y97_c00175{bottom:240.165641px;}
.y96_c00175{bottom:248.119260px;}
.y95_c00175{bottom:249.049950px;}
.y94_c00175{bottom:251.443892px;}
.y93_c00175{bottom:251.849378px;}
.y92_c00175{bottom:253.298684px;}
.y91_c00175{bottom:255.558327px;}
.y90_c00175{bottom:257.712792px;}
.y8f_c00175{bottom:266.904523px;}
.y8e_c00175{bottom:267.643135px;}
.y8d_c00175{bottom:269.471413px;}
.y8c_c00175{bottom:270.268993px;}
.y8b_c00175{bottom:272.535427px;}
.y8a_c00175{bottom:273.412118px;}
.y89_c00175{bottom:275.259134px;}
.y88_c00175{bottom:284.436353px;}
.y87_c00175{bottom:285.092601px;}
.y86_c00175{bottom:287.685249px;}
.y85_c00175{bottom:289.259228px;}
.y84_c00175{bottom:289.796001px;}
.y83_c00175{bottom:290.539500px;}
.y82_c00175{bottom:291.870802px;}
.y81_c00175{bottom:292.529211px;}
.y80_c00175{bottom:300.598742px;}
.y7f_c00175{bottom:302.408039px;}
.y7e_c00175{bottom:303.104301px;}
.y7d_c00175{bottom:304.030590px;}
.y7c_c00175{bottom:304.800023px;}
.y7b_c00175{bottom:305.636712px;}
.y7a_c00175{bottom:307.366872px;}
.y79_c00175{bottom:318.599844px;}
.y78_c00175{bottom:320.673215px;}
.y77_c00175{bottom:321.653841px;}
.y76_c00175{bottom:322.173821px;}
.y75_c00175{bottom:323.400242px;}
.y74_c00175{bottom:324.534444px;}
.y73_c00175{bottom:325.451459px;}
.y72_c00175{bottom:335.480946px;}
.y71_c00175{bottom:336.293862px;}
.y70_c00175{bottom:336.696675px;}
.y6f_c00175{bottom:339.224577px;}
.y6e_c00175{bottom:340.007631px;}
.y6d_c00175{bottom:341.639632px;}
.y6c_c00175{bottom:342.471975px;}
.y6b_c00175{bottom:343.264074px;}
.y6a_c00175{bottom:353.069556px;}
.y69_c00175{bottom:354.553895px;}
.y68_c00175{bottom:355.576412px;}
.y67_c00175{bottom:356.203446px;}
.y66_c00175{bottom:358.369224px;}
.y65_c00175{bottom:359.412180px;}
.y64_c00175{bottom:361.084223px;}
.y63_c00175{bottom:369.777021px;}
.y62_c00175{bottom:370.462565px;}
.y61_c00175{bottom:372.431135px;}
.y60_c00175{bottom:373.088301px;}
.y5f_c00175{bottom:374.524526px;}
.y5e_c00175{bottom:375.234288px;}
.y5d_c00175{bottom:377.407208px;}
.y5c_c00175{bottom:378.098435px;}
.y5b_c00175{bottom:378.896096px;}
.y5a_c00175{bottom:385.853645px;}
.y59_c00175{bottom:387.212474px;}
.y58_c00175{bottom:389.776893px;}
.y57_c00175{bottom:390.359472px;}
.y56_c00175{bottom:391.491555px;}
.y55_c00175{bottom:393.185009px;}
.y54_c00175{bottom:393.837801px;}
.y53_c00175{bottom:396.441667px;}
.y52_c00175{bottom:406.143793px;}
.y51_c00175{bottom:406.826961px;}
.y50_c00175{bottom:407.290132px;}
.y4f_c00175{bottom:408.666836px;}
.y4e_c00175{bottom:409.353783px;}
.y4d_c00175{bottom:411.591368px;}
.y4c_c00175{bottom:412.000688px;}
.y4b_c00175{bottom:414.256362px;}
.y4a_c00175{bottom:421.328877px;}
.y49_c00175{bottom:421.950403px;}
.y48_c00175{bottom:423.248874px;}
.y47_c00175{bottom:424.062371px;}
.y46_c00175{bottom:426.483461px;}
.y45_c00175{bottom:427.348392px;}
.y44_c00175{bottom:428.340831px;}
.y43_c00175{bottom:429.907047px;}
.y42_c00175{bottom:439.012190px;}
.y41_c00175{bottom:439.672151px;}
.y40_c00175{bottom:440.165373px;}
.y3f_c00175{bottom:441.472402px;}
.y3e_c00175{bottom:442.103879px;}
.y3d_c00175{bottom:443.474803px;}
.y3c_c00175{bottom:445.335171px;}
.y3b_c00175{bottom:447.036455px;}
.y3a_c00175{bottom:447.541220px;}
.y39_c00175{bottom:449.077641px;}
.y38_c00175{bottom:455.822457px;}
.y37_c00175{bottom:456.562000px;}
.y36_c00175{bottom:457.518799px;}
.y35_c00175{bottom:459.893827px;}
.y34_c00175{bottom:460.839759px;}
.y33_c00175{bottom:462.041542px;}
.y32_c00175{bottom:462.727261px;}
.y31_c00175{bottom:464.728785px;}
.y30_c00175{bottom:473.307306px;}
.y2f_c00175{bottom:475.040854px;}
.y2e_c00175{bottom:475.566787px;}
.y2d_c00175{bottom:477.302172px;}
.y2c_c00175{bottom:478.455369px;}
.y2b_c00175{bottom:479.316102px;}
.y2a_c00175{bottom:481.741876px;}
.y29_c00175{bottom:490.112713px;}
.y28_c00175{bottom:490.514217px;}
.y27_c00175{bottom:492.364014px;}
.y26_c00175{bottom:493.660662px;}
.y25_c00175{bottom:494.091852px;}
.y24_c00175{bottom:494.614788px;}
.y23_c00175{bottom:496.428580px;}
.y22_c00175{bottom:497.124830px;}
.y21_c00175{bottom:499.002032px;}
.y20_c00175{bottom:507.715228px;}
.y1f_c00175{bottom:508.125224px;}
.y1e_c00175{bottom:511.401201px;}
.y1d_c00175{bottom:512.204005px;}
.y1c_c00175{bottom:513.945951px;}
.y1b_c00175{bottom:514.636854px;}
.y1a_c00175{bottom:516.277063px;}
.y19_c00175{bottom:525.079819px;}
.y18_c00175{bottom:527.250228px;}
.y17_c00175{bottom:527.813016px;}
.y16_c00175{bottom:528.881055px;}
.y15_c00175{bottom:529.335519px;}
.y14_c00175{bottom:529.949351px;}
.y13_c00175{bottom:530.278372px;}
.y12_c00175{bottom:531.599563px;}
.y11_c00175{bottom:532.198437px;}
.y10_c00175{bottom:543.681429px;}
.yf_c00175{bottom:544.145276px;}
.ye_c00175{bottom:544.459771px;}
.yd_c00175{bottom:545.543443px;}
.yc_c00175{bottom:545.890826px;}
.yb_c00175{bottom:547.853901px;}
.ya_c00175{bottom:549.201647px;}
.y9_c00175{bottom:560.471393px;}
.y8_c00175{bottom:560.904284px;}
.y7_c00175{bottom:562.099411px;}
.y6_c00175{bottom:563.640140px;}
.y5_c00175{bottom:563.898988px;}
.y4_c00175{bottom:564.814869px;}
.y3_c00175{bottom:565.393047px;}
.y2_c00175{bottom:570.865380px;}
.y1_c00175{bottom:577.009500px;}
.ha_c00175{height:54.580805px;}
.he_c00175{height:57.729697px;}
.hd_c00175{height:58.779328px;}
.hc_c00175{height:59.828959px;}
.h9_c00175{height:60.878590px;}
.h7_c00175{height:61.928221px;}
.h8_c00175{height:62.977852px;}
.hb_c00175{height:64.027482px;}
.h3_c00175{height:65.077113px;}
.hf_c00175{height:66.126744px;}
.h6_c00175{height:67.176375px;}
.h4_c00175{height:69.275637px;}
.h5_c00175{height:70.325268px;}
.h2_c00175{height:118.608287px;}
.h0_c00175{height:623.100000px;}
.h1_c00175{height:623.250000px;}
.w1_c00175{width:383.250000px;}
.w0_c00175{width:383.400000px;}
.x0_c00175{left:0.000000px;}
.x7b_c00175{left:47.203516px;}
.x75_c00175{left:48.637703px;}
.x67_c00175{left:49.640172px;}
.x5c_c00175{left:51.102411px;}
.x32_c00175{left:53.110685px;}
.x11_c00175{left:54.551566px;}
.x27_c00175{left:55.996782px;}
.xa_c00175{left:57.003841px;}
.x69_c00175{left:64.280882px;}
.x1e_c00175{left:66.433186px;}
.x60_c00175{left:71.781306px;}
.x6a_c00175{left:76.450200px;}
.x12_c00175{left:77.540824px;}
.x79_c00175{left:78.760860px;}
.x6f_c00175{left:80.144381px;}
.x3_c00175{left:82.400190px;}
.x57_c00175{left:90.839189px;}
.x33_c00175{left:92.457029px;}
.x63_c00175{left:101.932287px;}
.x4d_c00175{left:103.204122px;}
.x34_c00175{left:105.381686px;}
.x3c_c00175{left:107.756876px;}
.x19_c00175{left:108.940069px;}
.x54_c00175{left:109.954352px;}
.x4_c00175{left:111.268941px;}
.xb_c00175{left:113.098960px;}
.x5d_c00175{left:115.103103px;}
.x2c_c00175{left:117.730122px;}
.x43_c00175{left:121.546815px;}
.x49_c00175{left:123.711635px;}
.x1f_c00175{left:125.020973px;}
.x64_c00175{left:126.260435px;}
.x13_c00175{left:128.277307px;}
.x1a_c00175{left:130.527595px;}
.x76_c00175{left:131.877879px;}
.x44_c00175{left:133.238544px;}
.x58_c00175{left:134.429784px;}
.x28_c00175{left:136.760897px;}
.x2d_c00175{left:138.507594px;}
.x3d_c00175{left:139.710620px;}
.x14_c00175{left:140.905207px;}
.x55_c00175{left:143.559767px;}
.x20_c00175{left:146.756850px;}
.x35_c00175{left:148.969851px;}
.x70_c00175{left:150.555777px;}
.x61_c00175{left:153.329460px;}
.x73_c00175{left:155.297166px;}
.x5_c00175{left:156.962027px;}
.x15_c00175{left:164.476099px;}
.x3e_c00175{left:167.584745px;}
.x6_c00175{left:169.891044px;}
.x4e_c00175{left:171.039003px;}
.x6d_c00175{left:172.597349px;}
.x2e_c00175{left:174.896615px;}
.x16_c00175{left:181.917411px;}
.x4a_c00175{left:183.823476px;}
.x1b_c00175{left:184.904002px;}
.x65_c00175{left:189.153978px;}
.x1_c00175{left:191.157000px;}
.x4f_c00175{left:193.191518px;}
.xc_c00175{left:194.763511px;}
.x36_c00175{left:196.639499px;}
.x59_c00175{left:201.504305px;}
.x21_c00175{left:203.376836px;}
.xd_c00175{left:209.233297px;}
.x66_c00175{left:211.286823px;}
.x4b_c00175{left:212.823812px;}
.x7d_c00175{left:215.045844px;}
.x45_c00175{left:216.726000px;}
.x22_c00175{left:219.720354px;}
.x6b_c00175{left:221.809196px;}
.x17_c00175{left:222.964134px;}
.x4c_c00175{left:227.741258px;}
.x7c_c00175{left:229.077676px;}
.x37_c00175{left:231.768051px;}
.x23_c00175{left:233.184822px;}
.x5e_c00175{left:234.552791px;}
.x50_c00175{left:238.001595px;}
.x5a_c00175{left:239.167671px;}
.x18_c00175{left:244.577283px;}
.x3f_c00175{left:245.595710px;}
.x7_c00175{left:246.788893px;}
.x38_c00175{left:247.959114px;}
.xe_c00175{left:254.294650px;}
.x46_c00175{left:256.012080px;}
.x51_c00175{left:258.528021px;}
.x29_c00175{left:261.581424px;}
.x71_c00175{left:264.847493px;}
.xf_c00175{left:267.352201px;}
.x47_c00175{left:269.239826px;}
.x40_c00175{left:271.792689px;}
.x24_c00175{left:273.663641px;}
.x2f_c00175{left:275.422353px;}
.x7e_c00175{left:277.196024px;}
.x2a_c00175{left:279.090681px;}
.x39_c00175{left:281.439479px;}
.x62_c00175{left:283.401515px;}
.x10_c00175{left:286.677735px;}
.x48_c00175{left:288.739010px;}
.x3a_c00175{left:294.085469px;}
.x77_c00175{left:297.273264px;}
.x7a_c00175{left:298.807444px;}
.x5f_c00175{left:301.499007px;}
.x30_c00175{left:304.388493px;}
.x8_c00175{left:306.435066px;}
.x3b_c00175{left:310.983716px;}
.x1c_c00175{left:312.246911px;}
.x41_c00175{left:313.612841px;}
.x56_c00175{left:315.368772px;}
.x78_c00175{left:316.402237px;}
.x5b_c00175{left:318.813149px;}
.x52_c00175{left:319.984368px;}
.x1d_c00175{left:325.039942px;}
.x31_c00175{left:326.784507px;}
.x9_c00175{left:328.024387px;}
.x72_c00175{left:330.281466px;}
.x25_c00175{left:331.407663px;}
.x42_c00175{left:333.649905px;}
.x2b_c00175{left:336.814886px;}
.x74_c00175{left:337.939301px;}
.x68_c00175{left:340.010363px;}
.x53_c00175{left:341.381531px;}
.x6e_c00175{left:342.902630px;}
.x26_c00175{left:343.923419px;}
.x6c_c00175{left:348.982395px;}
.x2_c00175{left:361.656330px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
.fs8_c00175{font-size:48.516271pt;}
.fsc_c00175{font-size:51.315286pt;}
.fsb_c00175{font-size:52.248292pt;}
.fsa_c00175{font-size:53.181297pt;}
.fs7_c00175{font-size:54.114302pt;}
.fs5_c00175{font-size:55.047307pt;}
.fs6_c00175{font-size:55.980313pt;}
.fs9_c00175{font-size:56.913318pt;}
.fs1_c00175{font-size:57.846323pt;}
.fsd_c00175{font-size:58.779328pt;}
.fs4_c00175{font-size:59.712333pt;}
.fs2_c00175{font-size:61.578344pt;}
.fs3_c00175{font-size:62.511349pt;}
.fs0_c00175{font-size:105.429589pt;}
.y0_c00175{bottom:0.000000pt;}
.yf5_c00175{bottom:19.991657pt;}
.yf4_c00175{bottom:20.844605pt;}
.yf3_c00175{bottom:21.525137pt;}
.yf2_c00175{bottom:22.894349pt;}
.yf1_c00175{bottom:23.379161pt;}
.yf0_c00175{bottom:24.347537pt;}
.yef_c00175{bottom:24.773777pt;}
.yee_c00175{bottom:25.868333pt;}
.yed_c00175{bottom:34.124921pt;}
.yec_c00175{bottom:35.725661pt;}
.yeb_c00175{bottom:37.274993pt;}
.yea_c00175{bottom:37.826249pt;}
.ye9_c00175{bottom:39.157589pt;}
.ye8_c00175{bottom:39.621161pt;}
.ye7_c00175{bottom:40.363661pt;}
.ye6_c00175{bottom:40.986857pt;}
.ye5_c00175{bottom:49.491821pt;}
.ye4_c00175{bottom:51.553529pt;}
.ye3_c00175{bottom:52.034045pt;}
.ye2_c00175{bottom:53.251853pt;}
.ye1_c00175{bottom:53.699177pt;}
.ye0_c00175{bottom:55.571741pt;}
.ydf_c00175{bottom:56.578325pt;}
.yde_c00175{bottom:66.571565pt;}
.ydd_c00175{bottom:67.129565pt;}
.ydc_c00175{bottom:67.498349pt;}
.ydb_c00175{bottom:69.679553pt;}
.yda_c00175{bottom:70.067921pt;}
.yd9_c00175{bottom:72.128129pt;}
.yd8_c00175{bottom:72.651125pt;}
.yd7_c00175{bottom:74.336741pt;}
.yd6_c00175{bottom:81.520553pt;}
.yd5_c00175{bottom:81.976529pt;}
.yd4_c00175{bottom:82.726949pt;}
.yd3_c00175{bottom:83.827241pt;}
.yd2_c00175{bottom:85.362077pt;}
.yd1_c00175{bottom:86.808569pt;}
.yd0_c00175{bottom:96.042773pt;}
.ycf_c00175{bottom:103.367057pt;}
.yce_c00175{bottom:111.803117pt;}
.ycd_c00175{bottom:112.329257pt;}
.ycc_c00175{bottom:113.150405pt;}
.ycb_c00175{bottom:113.734265pt;}
.yca_c00175{bottom:116.045225pt;}
.yc9_c00175{bottom:117.690881pt;}
.yc8_c00175{bottom:118.161521pt;}
.yc7_c00175{bottom:118.714001pt;}
.yc6_c00175{bottom:119.919005pt;}
.yc5_c00175{bottom:126.278465pt;}
.yc4_c00175{bottom:127.108493pt;}
.yc3_c00175{bottom:127.507349pt;}
.yc2_c00175{bottom:129.055541pt;}
.yc1_c00175{bottom:130.134677pt;}
.yc0_c00175{bottom:130.717373pt;}
.ybf_c00175{bottom:132.510545pt;}
.ybe_c00175{bottom:133.070429pt;}
.ybd_c00175{bottom:135.028853pt;}
.ybc_c00175{bottom:142.816337pt;}
.ybb_c00175{bottom:143.548361pt;}
.yba_c00175{bottom:145.316885pt;}
.yb9_c00175{bottom:146.795489pt;}
.yb8_c00175{bottom:147.693113pt;}
.yb7_c00175{bottom:147.996821pt;}
.yb6_c00175{bottom:148.854305pt;}
.yb5_c00175{bottom:149.370605pt;}
.yb4_c00175{bottom:150.386093pt;}
.yb3_c00175{bottom:159.052085pt;}
.yb2_c00175{bottom:159.693125pt;}
.yb1_c00175{bottom:161.676077pt;}
.yb0_c00175{bottom:163.541873pt;}
.yaf_c00175{bottom:165.501857pt;}
.yae_c00175{bottom:173.065217pt;}
.yad_c00175{bottom:173.678957pt;}
.yac_c00175{bottom:174.757061pt;}
.yab_c00175{bottom:175.334585pt;}
.yaa_c00175{bottom:177.288605pt;}
.ya9_c00175{bottom:179.301005pt;}
.ya8_c00175{bottom:181.744481pt;}
.ya7_c00175{bottom:182.773757pt;}
.ya6_c00175{bottom:188.928437pt;}
.ya5_c00175{bottom:190.417241pt;}
.ya4_c00175{bottom:190.900457pt;}
.ya3_c00175{bottom:192.499565pt;}
.ya2_c00175{bottom:193.476725pt;}
.ya1_c00175{bottom:194.668649pt;}
.ya0_c00175{bottom:195.001121pt;}
.y9f_c00175{bottom:196.688573pt;}
.y9e_c00175{bottom:204.361001pt;}
.y9d_c00175{bottom:205.539929pt;}
.y9c_c00175{bottom:206.110409pt;}
.y9b_c00175{bottom:206.813465pt;}
.y9a_c00175{bottom:208.434617pt;}
.y99_c00175{bottom:211.011113pt;}
.y98_c00175{bottom:213.090761pt;}
.y97_c00175{bottom:213.480569pt;}
.y96_c00175{bottom:220.550453pt;}
.y95_c00175{bottom:221.377733pt;}
.y94_c00175{bottom:223.505681pt;}
.y93_c00175{bottom:223.866113pt;}
.y92_c00175{bottom:225.154385pt;}
.y91_c00175{bottom:227.162957pt;}
.y90_c00175{bottom:229.078037pt;}
.y8f_c00175{bottom:237.248465pt;}
.y8e_c00175{bottom:237.905009pt;}
.y8d_c00175{bottom:239.530145pt;}
.y8c_c00175{bottom:240.239105pt;}
.y8b_c00175{bottom:242.253713pt;}
.y8a_c00175{bottom:243.032993pt;}
.y89_c00175{bottom:244.674785pt;}
.y88_c00175{bottom:252.832313pt;}
.y87_c00175{bottom:253.415645pt;}
.y86_c00175{bottom:255.720221pt;}
.y85_c00175{bottom:257.119313pt;}
.y84_c00175{bottom:257.596445pt;}
.y83_c00175{bottom:258.257333pt;}
.y82_c00175{bottom:259.440713pt;}
.y81_c00175{bottom:260.025965pt;}
.y80_c00175{bottom:267.198881pt;}
.y7f_c00175{bottom:268.807145pt;}
.y7e_c00175{bottom:269.426045pt;}
.y7d_c00175{bottom:270.249413pt;}
.y7c_c00175{bottom:270.933353pt;}
.y7b_c00175{bottom:271.677077pt;}
.y7a_c00175{bottom:273.214997pt;}
.y79_c00175{bottom:283.199861pt;}
.y78_c00175{bottom:285.042857pt;}
.y77_c00175{bottom:285.914525pt;}
.y76_c00175{bottom:286.376729pt;}
.y75_c00175{bottom:287.466881pt;}
.y74_c00175{bottom:288.475061pt;}
.y73_c00175{bottom:289.290185pt;}
.y72_c00175{bottom:298.205285pt;}
.y71_c00175{bottom:298.927877pt;}
.y70_c00175{bottom:299.285933pt;}
.y6f_c00175{bottom:301.532957pt;}
.y6e_c00175{bottom:302.229005pt;}
.y6d_c00175{bottom:303.679673pt;}
.y6c_c00175{bottom:304.419533pt;}
.y6b_c00175{bottom:305.123621pt;}
.y6a_c00175{bottom:313.839605pt;}
.y69_c00175{bottom:315.159017pt;}
.y68_c00175{bottom:316.067921pt;}
.y67_c00175{bottom:316.625285pt;}
.y66_c00175{bottom:318.550421pt;}
.y65_c00175{bottom:319.477493pt;}
.y64_c00175{bottom:320.963753pt;}
.y63_c00175{bottom:328.690685pt;}
.y62_c00175{bottom:329.300057pt;}
.y61_c00175{bottom:331.049897pt;}
.y60_c00175{bottom:331.634045pt;}
.y5f_c00175{bottom:332.910689pt;}
.y5e_c00175{bottom:333.541589pt;}
.y5d_c00175{bottom:335.473073pt;}
.y5c_c00175{bottom:336.087497pt;}
.y5b_c00175{bottom:336.796529pt;}
.y5a_c00175{bottom:342.981017pt;}
.y59_c00175{bottom:344.188865pt;}
.y58_c00175{bottom:346.468349pt;}
.y57_c00175{bottom:346.986197pt;}
.y56_c00175{bottom:347.992493pt;}
.y55_c00175{bottom:349.497785pt;}
.y54_c00175{bottom:350.078045pt;}
.y53_c00175{bottom:352.392593pt;}
.y52_c00175{bottom:361.016705pt;}
.y51_c00175{bottom:361.623965pt;}
.y50_c00175{bottom:362.035673pt;}
.y4f_c00175{bottom:363.259409pt;}
.y4e_c00175{bottom:363.870029pt;}
.y4d_c00175{bottom:365.858993pt;}
.y4c_c00175{bottom:366.222833pt;}
.y4b_c00175{bottom:368.227877pt;}
.y4a_c00175{bottom:374.514557pt;}
.y49_c00175{bottom:375.067025pt;}
.y48_c00175{bottom:376.221221pt;}
.y47_c00175{bottom:376.944329pt;}
.y46_c00175{bottom:379.096409pt;}
.y45_c00175{bottom:379.865237pt;}
.y44_c00175{bottom:380.747405pt;}
.y43_c00175{bottom:382.139597pt;}
.y42_c00175{bottom:390.233057pt;}
.y41_c00175{bottom:390.819689pt;}
.y40_c00175{bottom:391.258109pt;}
.y3f_c00175{bottom:392.419913pt;}
.y3e_c00175{bottom:392.981225pt;}
.y3d_c00175{bottom:394.199825pt;}
.y3c_c00175{bottom:395.853485pt;}
.y3b_c00175{bottom:397.365737pt;}
.y3a_c00175{bottom:397.814417pt;}
.y39_c00175{bottom:399.180125pt;}
.y38_c00175{bottom:405.175517pt;}
.y37_c00175{bottom:405.832889pt;}
.y36_c00175{bottom:406.683377pt;}
.y35_c00175{bottom:408.794513pt;}
.y34_c00175{bottom:409.635341pt;}
.y33_c00175{bottom:410.703593pt;}
.y32_c00175{bottom:411.313121pt;}
.y31_c00175{bottom:413.092253pt;}
.y30_c00175{bottom:420.717605pt;}
.y2f_c00175{bottom:422.258537pt;}
.y2e_c00175{bottom:422.726033pt;}
.y2d_c00175{bottom:424.268597pt;}
.y2c_c00175{bottom:425.293661pt;}
.y2b_c00175{bottom:426.058757pt;}
.y2a_c00175{bottom:428.215001pt;}
.y29_c00175{bottom:435.655745pt;}
.y28_c00175{bottom:436.012637pt;}
.y27_c00175{bottom:437.656901pt;}
.y26_c00175{bottom:438.809477pt;}
.y25_c00175{bottom:439.192757pt;}
.y24_c00175{bottom:439.657589pt;}
.y23_c00175{bottom:441.269849pt;}
.y22_c00175{bottom:441.888737pt;}
.y21_c00175{bottom:443.557361pt;}
.y20_c00175{bottom:451.302425pt;}
.y1f_c00175{bottom:451.666865pt;}
.y1e_c00175{bottom:454.578845pt;}
.y1d_c00175{bottom:455.292449pt;}
.y1c_c00175{bottom:456.840845pt;}
.y1b_c00175{bottom:457.454981pt;}
.y1a_c00175{bottom:458.912945pt;}
.y19_c00175{bottom:466.737617pt;}
.y18_c00175{bottom:468.666869pt;}
.y17_c00175{bottom:469.167125pt;}
.y16_c00175{bottom:470.116493pt;}
.y15_c00175{bottom:470.520461pt;}
.y14_c00175{bottom:471.066089pt;}
.y13_c00175{bottom:471.358553pt;}
.y12_c00175{bottom:472.532945pt;}
.y11_c00175{bottom:473.065277pt;}
.y10_c00175{bottom:483.272381pt;}
.yf_c00175{bottom:483.684689pt;}
.ye_c00175{bottom:483.964241pt;}
.yd_c00175{bottom:484.927505pt;}
.yc_c00175{bottom:485.236289pt;}
.yb_c00175{bottom:486.981245pt;}
.ya_c00175{bottom:488.179241pt;}
.y9_c00175{bottom:498.196793pt;}
.y8_c00175{bottom:498.581585pt;}
.y7_c00175{bottom:499.643921pt;}
.y6_c00175{bottom:501.013457pt;}
.y5_c00175{bottom:501.243545pt;}
.y4_c00175{bottom:502.057661pt;}
.y3_c00175{bottom:502.571597pt;}
.y2_c00175{bottom:507.435893pt;}
.y1_c00175{bottom:512.897333pt;}
.ha_c00175{height:48.516271pt;}
.he_c00175{height:51.315286pt;}
.hd_c00175{height:52.248292pt;}
.hc_c00175{height:53.181297pt;}
.h9_c00175{height:54.114302pt;}
.h7_c00175{height:55.047307pt;}
.h8_c00175{height:55.980313pt;}
.hb_c00175{height:56.913318pt;}
.h3_c00175{height:57.846323pt;}
.hf_c00175{height:58.779328pt;}
.h6_c00175{height:59.712333pt;}
.h4_c00175{height:61.578344pt;}
.h5_c00175{height:62.511349pt;}
.h2_c00175{height:105.429589pt;}
.h0_c00175{height:553.866667pt;}
.h1_c00175{height:554.000000pt;}
.w1_c00175{width:340.666667pt;}
.w0_c00175{width:340.800000pt;}
.x0_c00175{left:0.000000pt;}
.x7b_c00175{left:41.958681pt;}
.x75_c00175{left:43.233513pt;}
.x67_c00175{left:44.124597pt;}
.x5c_c00175{left:45.424365pt;}
.x32_c00175{left:47.209497pt;}
.x11_c00175{left:48.490281pt;}
.x27_c00175{left:49.774917pt;}
.xa_c00175{left:50.670081pt;}
.x69_c00175{left:57.138561pt;}
.x1e_c00175{left:59.051721pt;}
.x60_c00175{left:63.805605pt;}
.x6a_c00175{left:67.955733pt;}
.x12_c00175{left:68.925177pt;}
.x79_c00175{left:70.009653pt;}
.x6f_c00175{left:71.239449pt;}
.x3_c00175{left:73.244613pt;}
.x57_c00175{left:80.745945pt;}
.x33_c00175{left:82.184025pt;}
.x63_c00175{left:90.606477pt;}
.x4d_c00175{left:91.736997pt;}
.x34_c00175{left:93.672609pt;}
.x3c_c00175{left:95.783889pt;}
.x19_c00175{left:96.835617pt;}
.x54_c00175{left:97.737201pt;}
.x4_c00175{left:98.905725pt;}
.xb_c00175{left:100.532409pt;}
.x5d_c00175{left:102.313869pt;}
.x2c_c00175{left:104.648997pt;}
.x43_c00175{left:108.041613pt;}
.x49_c00175{left:109.965897pt;}
.x1f_c00175{left:111.129753pt;}
.x64_c00175{left:112.231497pt;}
.x13_c00175{left:114.024273pt;}
.x1a_c00175{left:116.024529pt;}
.x76_c00175{left:117.224781pt;}
.x44_c00175{left:118.434261pt;}
.x58_c00175{left:119.493141pt;}
.x28_c00175{left:121.565241pt;}
.x2d_c00175{left:123.117861pt;}
.x3d_c00175{left:124.187217pt;}
.x14_c00175{left:125.249073pt;}
.x55_c00175{left:127.608681pt;}
.x20_c00175{left:130.450533pt;}
.x35_c00175{left:132.417645pt;}
.x70_c00175{left:133.827357pt;}
.x61_c00175{left:136.292853pt;}
.x73_c00175{left:138.041925pt;}
.x5_c00175{left:139.521801pt;}
.x15_c00175{left:146.200977pt;}
.x3e_c00175{left:148.964217pt;}
.x6_c00175{left:151.014261pt;}
.x4e_c00175{left:152.034669pt;}
.x6d_c00175{left:153.419865pt;}
.x2e_c00175{left:155.463657pt;}
.x16_c00175{left:161.704365pt;}
.x4a_c00175{left:163.398645pt;}
.x1b_c00175{left:164.359113pt;}
.x65_c00175{left:168.136869pt;}
.x1_c00175{left:169.917333pt;}
.x4f_c00175{left:171.725793pt;}
.xc_c00175{left:173.123121pt;}
.x36_c00175{left:174.790665pt;}
.x59_c00175{left:179.114937pt;}
.x21_c00175{left:180.779409pt;}
.xd_c00175{left:185.985153pt;}
.x66_c00175{left:187.810509pt;}
.x4b_c00175{left:189.176721pt;}
.x7d_c00175{left:191.151861pt;}
.x45_c00175{left:192.645333pt;}
.x22_c00175{left:195.306981pt;}
.x6b_c00175{left:197.163729pt;}
.x17_c00175{left:198.190341pt;}
.x4c_c00175{left:202.436673pt;}
.x7c_c00175{left:203.624601pt;}
.x37_c00175{left:206.016045pt;}
.x23_c00175{left:207.275397pt;}
.x5e_c00175{left:208.491369pt;}
.x50_c00175{left:211.556973pt;}
.x5a_c00175{left:212.593485pt;}
.x18_c00175{left:217.402029pt;}
.x3f_c00175{left:218.307297pt;}
.x7_c00175{left:219.367905pt;}
.x38_c00175{left:220.408101pt;}
.xe_c00175{left:226.039689pt;}
.x46_c00175{left:227.566293pt;}
.x51_c00175{left:229.802685pt;}
.x29_c00175{left:232.516821pt;}
.x71_c00175{left:235.419993pt;}
.xf_c00175{left:237.646401pt;}
.x47_c00175{left:239.324289pt;}
.x40_c00175{left:241.593501pt;}
.x24_c00175{left:243.256569pt;}
.x2f_c00175{left:244.819869pt;}
.x7e_c00175{left:246.396465pt;}
.x2a_c00175{left:248.080605pt;}
.x39_c00175{left:250.168425pt;}
.x62_c00175{left:251.912457pt;}
.x10_c00175{left:254.824653pt;}
.x48_c00175{left:256.656897pt;}
.x3a_c00175{left:261.409305pt;}
.x77_c00175{left:264.242901pt;}
.x7a_c00175{left:265.606617pt;}
.x5f_c00175{left:267.999117pt;}
.x30_c00175{left:270.567549pt;}
.x8_c00175{left:272.386725pt;}
.x3b_c00175{left:276.429969pt;}
.x1c_c00175{left:277.552809pt;}
.x41_c00175{left:278.766969pt;}
.x56_c00175{left:280.327797pt;}
.x78_c00175{left:281.246433pt;}
.x5b_c00175{left:283.389465pt;}
.x52_c00175{left:284.430549pt;}
.x1d_c00175{left:288.924393pt;}
.x31_c00175{left:290.475117pt;}
.x9_c00175{left:291.577233pt;}
.x72_c00175{left:293.583525pt;}
.x25_c00175{left:294.584589pt;}
.x42_c00175{left:296.577693pt;}
.x2b_c00175{left:299.391009pt;}
.x74_c00175{left:300.390489pt;}
.x68_c00175{left:302.231433pt;}
.x53_c00175{left:303.450249pt;}
.x6e_c00175{left:304.802337pt;}
.x26_c00175{left:305.709705pt;}
.x6c_c00175{left:310.206573pt;}
.x2_c00175{left:321.472293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00176 {
    display:none;
  }
  .loading-indicator_c00176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00176 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00176 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00176" -> "#page-container .classname_c00176")
 */
.pf_c00176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00176 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00176 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00176 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00176 {overflow:visible;}
  }
}
.c_c00176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00176 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00176:after { /* webkit #35443 */
  content: '';
}
.t_c00176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00176 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00176 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00176 { /* info for Javascript */
  display:none;
}
.l_c00176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00176:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00176 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00176.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00176{transform:matrix(0.115950,-0.001855,0.003999,0.249968,0,0);-ms-transform:matrix(0.115950,-0.001855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.115950,-0.001855,0.003999,0.249968,0,0);}
.me7_c00176{transform:matrix(0.116751,-0.002102,0.004499,0.249960,0,0);-ms-transform:matrix(0.116751,-0.002102,0.004499,0.249960,0,0);-webkit-transform:matrix(0.116751,-0.002102,0.004499,0.249960,0,0);}
.m80_c00176{transform:matrix(0.141282,-0.002543,0.004499,0.249960,0,0);-ms-transform:matrix(0.141282,-0.002543,0.004499,0.249960,0,0);-webkit-transform:matrix(0.141282,-0.002543,0.004499,0.249960,0,0);}
.mf5_c00176{transform:matrix(0.143710,-0.003162,0.005499,0.249940,0,0);-ms-transform:matrix(0.143710,-0.003162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.143710,-0.003162,0.005499,0.249940,0,0);}
.m2a_c00176{transform:matrix(0.145131,-0.002322,0.003999,0.249968,0,0);-ms-transform:matrix(0.145131,-0.002322,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145131,-0.002322,0.003999,0.249968,0,0);}
.mbe_c00176{transform:matrix(0.145651,-0.002622,0.004499,0.249960,0,0);-ms-transform:matrix(0.145651,-0.002622,0.004499,0.249960,0,0);-webkit-transform:matrix(0.145651,-0.002622,0.004499,0.249960,0,0);}
.m90_c00176{transform:matrix(0.151016,-0.002718,0.004499,0.249960,0,0);-ms-transform:matrix(0.151016,-0.002718,0.004499,0.249960,0,0);-webkit-transform:matrix(0.151016,-0.002718,0.004499,0.249960,0,0);}
.m88_c00176{transform:matrix(0.154280,-0.002777,0.004499,0.249960,0,0);-ms-transform:matrix(0.154280,-0.002777,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154280,-0.002777,0.004499,0.249960,0,0);}
.m9f_c00176{transform:matrix(0.155540,-0.002800,0.004499,0.249960,0,0);-ms-transform:matrix(0.155540,-0.002800,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155540,-0.002800,0.004499,0.249960,0,0);}
.m5_c00176{transform:matrix(0.155690,-0.002491,0.003999,0.249968,0,0);-ms-transform:matrix(0.155690,-0.002491,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155690,-0.002491,0.003999,0.249968,0,0);}
.m82_c00176{transform:matrix(0.155800,-0.002804,0.004499,0.249960,0,0);-ms-transform:matrix(0.155800,-0.002804,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155800,-0.002804,0.004499,0.249960,0,0);}
.med_c00176{transform:matrix(0.155905,-0.002806,0.004499,0.249960,0,0);-ms-transform:matrix(0.155905,-0.002806,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155905,-0.002806,0.004499,0.249960,0,0);}
.mad_c00176{transform:matrix(0.156685,-0.002820,0.004499,0.249960,0,0);-ms-transform:matrix(0.156685,-0.002820,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156685,-0.002820,0.004499,0.249960,0,0);}
.m7_c00176{transform:matrix(0.156855,-0.002510,0.003999,0.249968,0,0);-ms-transform:matrix(0.156855,-0.002510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156855,-0.002510,0.003999,0.249968,0,0);}
.m76_c00176{transform:matrix(0.156940,-0.002825,0.004499,0.249960,0,0);-ms-transform:matrix(0.156940,-0.002825,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156940,-0.002825,0.004499,0.249960,0,0);}
.mf1_c00176{transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);-ms-transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);}
.mb2_c00176{transform:matrix(0.159489,-0.002871,0.004499,0.249960,0,0);-ms-transform:matrix(0.159489,-0.002871,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159489,-0.002871,0.004499,0.249960,0,0);}
.m86_c00176{transform:matrix(0.159554,-0.002872,0.004499,0.249960,0,0);-ms-transform:matrix(0.159554,-0.002872,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159554,-0.002872,0.004499,0.249960,0,0);}
.m9_c00176{transform:matrix(0.160299,-0.002565,0.003999,0.249968,0,0);-ms-transform:matrix(0.160299,-0.002565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160299,-0.002565,0.003999,0.249968,0,0);}
.m54_c00176{transform:matrix(0.160989,-0.002576,0.003999,0.249968,0,0);-ms-transform:matrix(0.160989,-0.002576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160989,-0.002576,0.003999,0.249968,0,0);}
.m41_c00176{transform:matrix(0.161174,-0.002579,0.003999,0.249968,0,0);-ms-transform:matrix(0.161174,-0.002579,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161174,-0.002579,0.003999,0.249968,0,0);}
.mae_c00176{transform:matrix(0.161719,-0.002911,0.004499,0.249960,0,0);-ms-transform:matrix(0.161719,-0.002911,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161719,-0.002911,0.004499,0.249960,0,0);}
.m85_c00176{transform:matrix(0.161914,-0.002914,0.004499,0.249960,0,0);-ms-transform:matrix(0.161914,-0.002914,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161914,-0.002914,0.004499,0.249960,0,0);}
.mac_c00176{transform:matrix(0.162504,-0.002925,0.004499,0.249960,0,0);-ms-transform:matrix(0.162504,-0.002925,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162504,-0.002925,0.004499,0.249960,0,0);}
.m77_c00176{transform:matrix(0.162904,-0.002932,0.004499,0.249960,0,0);-ms-transform:matrix(0.162904,-0.002932,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162904,-0.002932,0.004499,0.249960,0,0);}
.m66_c00176{transform:matrix(0.162999,-0.002934,0.004499,0.249960,0,0);-ms-transform:matrix(0.162999,-0.002934,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162999,-0.002934,0.004499,0.249960,0,0);}
.mc1_c00176{transform:matrix(0.163673,-0.002946,0.004499,0.249960,0,0);-ms-transform:matrix(0.163673,-0.002946,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163673,-0.002946,0.004499,0.249960,0,0);}
.m78_c00176{transform:matrix(0.164318,-0.002958,0.004499,0.249960,0,0);-ms-transform:matrix(0.164318,-0.002958,0.004499,0.249960,0,0);-webkit-transform:matrix(0.164318,-0.002958,0.004499,0.249960,0,0);}
.md8_c00176{transform:matrix(0.165363,-0.002977,0.004499,0.249960,0,0);-ms-transform:matrix(0.165363,-0.002977,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165363,-0.002977,0.004499,0.249960,0,0);}
.m7f_c00176{transform:matrix(0.165688,-0.002982,0.004499,0.249960,0,0);-ms-transform:matrix(0.165688,-0.002982,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165688,-0.002982,0.004499,0.249960,0,0);}
.m44_c00176{transform:matrix(0.165734,-0.002652,0.003999,0.249968,0,0);-ms-transform:matrix(0.165734,-0.002652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165734,-0.002652,0.003999,0.249968,0,0);}
.m81_c00176{transform:matrix(0.166243,-0.002992,0.004499,0.249960,0,0);-ms-transform:matrix(0.166243,-0.002992,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166243,-0.002992,0.004499,0.249960,0,0);}
.md_c00176{transform:matrix(0.166359,-0.002662,0.003999,0.249968,0,0);-ms-transform:matrix(0.166359,-0.002662,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166359,-0.002662,0.003999,0.249968,0,0);}
.m75_c00176{transform:matrix(0.167118,-0.003008,0.004499,0.249960,0,0);-ms-transform:matrix(0.167118,-0.003008,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167118,-0.003008,0.004499,0.249960,0,0);}
.m4b_c00176{transform:matrix(0.167264,-0.002676,0.003999,0.249968,0,0);-ms-transform:matrix(0.167264,-0.002676,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167264,-0.002676,0.003999,0.249968,0,0);}
.m12_c00176{transform:matrix(0.167729,-0.002684,0.003999,0.249968,0,0);-ms-transform:matrix(0.167729,-0.002684,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167729,-0.002684,0.003999,0.249968,0,0);}
.m3a_c00176{transform:matrix(0.168078,-0.002689,0.003999,0.249968,0,0);-ms-transform:matrix(0.168078,-0.002689,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168078,-0.002689,0.003999,0.249968,0,0);}
.m50_c00176{transform:matrix(0.168328,-0.002693,0.003999,0.249968,0,0);-ms-transform:matrix(0.168328,-0.002693,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168328,-0.002693,0.003999,0.249968,0,0);}
.mf2_c00176{transform:matrix(0.168553,-0.003034,0.004499,0.249960,0,0);-ms-transform:matrix(0.168553,-0.003034,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168553,-0.003034,0.004499,0.249960,0,0);}
.m3e_c00176{transform:matrix(0.169183,-0.002707,0.003999,0.249968,0,0);-ms-transform:matrix(0.169183,-0.002707,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169183,-0.002707,0.003999,0.249968,0,0);}
.m0_c00176{transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170955,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.171112,-0.003080,0.004499,0.249960,0,0);-ms-transform:matrix(0.171112,-0.003080,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171112,-0.003080,0.004499,0.249960,0,0);}
.m22_c00176{transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);}
.m83_c00176{transform:matrix(0.172002,-0.003096,0.004499,0.249960,0,0);-ms-transform:matrix(0.172002,-0.003096,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172002,-0.003096,0.004499,0.249960,0,0);}
.ma7_c00176{transform:matrix(0.172897,-0.003112,0.004499,0.249960,0,0);-ms-transform:matrix(0.172897,-0.003112,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172897,-0.003112,0.004499,0.249960,0,0);}
.mb9_c00176{transform:matrix(0.173377,-0.003121,0.004499,0.249960,0,0);-ms-transform:matrix(0.173377,-0.003121,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173377,-0.003121,0.004499,0.249960,0,0);}
.mf3_c00176{transform:matrix(0.173597,-0.003125,0.004499,0.249960,0,0);-ms-transform:matrix(0.173597,-0.003125,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173597,-0.003125,0.004499,0.249960,0,0);}
.m98_c00176{transform:matrix(0.173897,-0.003130,0.004499,0.249960,0,0);-ms-transform:matrix(0.173897,-0.003130,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173897,-0.003130,0.004499,0.249960,0,0);}
.m84_c00176{transform:matrix(0.173997,-0.003132,0.004499,0.249960,0,0);-ms-transform:matrix(0.173997,-0.003132,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173997,-0.003132,0.004499,0.249960,0,0);}
.mba_c00176{transform:matrix(0.174957,-0.003149,0.004499,0.249960,0,0);-ms-transform:matrix(0.174957,-0.003149,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174957,-0.003149,0.004499,0.249960,0,0);}
.me8_c00176{transform:matrix(0.175632,-0.003161,0.004499,0.249960,0,0);-ms-transform:matrix(0.175632,-0.003161,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175632,-0.003161,0.004499,0.249960,0,0);}
.ma3_c00176{transform:matrix(0.175827,-0.003165,0.004499,0.249960,0,0);-ms-transform:matrix(0.175827,-0.003165,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175827,-0.003165,0.004499,0.249960,0,0);}
.m9d_c00176{transform:matrix(0.175966,-0.003167,0.004499,0.249960,0,0);-ms-transform:matrix(0.175966,-0.003167,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175966,-0.003167,0.004499,0.249960,0,0);}
.m8_c00176{transform:matrix(0.176442,-0.002823,0.003999,0.249968,0,0);-ms-transform:matrix(0.176442,-0.002823,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176442,-0.002823,0.003999,0.249968,0,0);}
.md4_c00176{transform:matrix(0.176626,-0.003179,0.004499,0.249960,0,0);-ms-transform:matrix(0.176626,-0.003179,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176626,-0.003179,0.004499,0.249960,0,0);}
.m95_c00176{transform:matrix(0.176636,-0.003179,0.004499,0.249960,0,0);-ms-transform:matrix(0.176636,-0.003179,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176636,-0.003179,0.004499,0.249960,0,0);}
.m4_c00176{transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-ms-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);}
.maa_c00176{transform:matrix(0.177296,-0.003191,0.004499,0.249960,0,0);-ms-transform:matrix(0.177296,-0.003191,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177296,-0.003191,0.004499,0.249960,0,0);}
.m87_c00176{transform:matrix(0.177776,-0.003200,0.004499,0.249960,0,0);-ms-transform:matrix(0.177776,-0.003200,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177776,-0.003200,0.004499,0.249960,0,0);}
.mea_c00176{transform:matrix(0.177846,-0.003201,0.004499,0.249960,0,0);-ms-transform:matrix(0.177846,-0.003201,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177846,-0.003201,0.004499,0.249960,0,0);}
.m7e_c00176{transform:matrix(0.177996,-0.003204,0.004499,0.249960,0,0);-ms-transform:matrix(0.177996,-0.003204,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177996,-0.003204,0.004499,0.249960,0,0);}
.m1b_c00176{transform:matrix(0.178352,-0.002854,0.003999,0.249968,0,0);-ms-transform:matrix(0.178352,-0.002854,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178352,-0.002854,0.003999,0.249968,0,0);}
.m16_c00176{transform:matrix(0.178422,-0.002855,0.003999,0.249968,0,0);-ms-transform:matrix(0.178422,-0.002855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178422,-0.002855,0.003999,0.249968,0,0);}
.mf7_c00176{transform:matrix(0.178572,-0.003929,0.005499,0.249940,0,0);-ms-transform:matrix(0.178572,-0.003929,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178572,-0.003929,0.005499,0.249940,0,0);}
.m29_c00176{transform:matrix(0.179042,-0.002865,0.003999,0.249968,0,0);-ms-transform:matrix(0.179042,-0.002865,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179042,-0.002865,0.003999,0.249968,0,0);}
.mfa_c00176{transform:matrix(0.179861,-0.003957,0.005499,0.249940,0,0);-ms-transform:matrix(0.179861,-0.003957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179861,-0.003957,0.005499,0.249940,0,0);}
.me6_c00176{transform:matrix(0.180931,-0.003257,0.004499,0.249960,0,0);-ms-transform:matrix(0.180931,-0.003257,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180931,-0.003257,0.004499,0.249960,0,0);}
.m47_c00176{transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);-ms-transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);}
.m4d_c00176{transform:matrix(0.181352,-0.002902,0.003999,0.249968,0,0);-ms-transform:matrix(0.181352,-0.002902,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181352,-0.002902,0.003999,0.249968,0,0);}
.m36_c00176{transform:matrix(0.181482,-0.002904,0.003999,0.249968,0,0);-ms-transform:matrix(0.181482,-0.002904,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181482,-0.002904,0.003999,0.249968,0,0);}
.mcf_c00176{transform:matrix(0.181556,-0.003268,0.004499,0.249960,0,0);-ms-transform:matrix(0.181556,-0.003268,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181556,-0.003268,0.004499,0.249960,0,0);}
.m2c_c00176{transform:matrix(0.181597,-0.002906,0.003999,0.249968,0,0);-ms-transform:matrix(0.181597,-0.002906,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181597,-0.002906,0.003999,0.249968,0,0);}
.mc3_c00176{transform:matrix(0.181696,-0.003271,0.004499,0.249960,0,0);-ms-transform:matrix(0.181696,-0.003271,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181696,-0.003271,0.004499,0.249960,0,0);}
.m1_c00176{transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);-ms-transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);}
.m42_c00176{transform:matrix(0.181887,-0.002910,0.003999,0.249968,0,0);-ms-transform:matrix(0.181887,-0.002910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181887,-0.002910,0.003999,0.249968,0,0);}
.m1f_c00176{transform:matrix(0.182247,-0.002916,0.003999,0.249968,0,0);-ms-transform:matrix(0.182247,-0.002916,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182247,-0.002916,0.003999,0.249968,0,0);}
.maf_c00176{transform:matrix(0.183270,-0.003299,0.004499,0.249960,0,0);-ms-transform:matrix(0.183270,-0.003299,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183270,-0.003299,0.004499,0.249960,0,0);}
.m37_c00176{transform:matrix(0.183302,-0.002933,0.003999,0.249968,0,0);-ms-transform:matrix(0.183302,-0.002933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183302,-0.002933,0.003999,0.249968,0,0);}
.m89_c00176{transform:matrix(0.183560,-0.003304,0.004499,0.249960,0,0);-ms-transform:matrix(0.183560,-0.003304,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183560,-0.003304,0.004499,0.249960,0,0);}
.m65_c00176{transform:matrix(0.183645,-0.003306,0.004499,0.249960,0,0);-ms-transform:matrix(0.183645,-0.003306,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183645,-0.003306,0.004499,0.249960,0,0);}
.me9_c00176{transform:matrix(0.183965,-0.003311,0.004499,0.249960,0,0);-ms-transform:matrix(0.183965,-0.003311,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183965,-0.003311,0.004499,0.249960,0,0);}
.m72_c00176{transform:matrix(0.184765,-0.003326,0.004499,0.249960,0,0);-ms-transform:matrix(0.184765,-0.003326,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184765,-0.003326,0.004499,0.249960,0,0);}
.m4a_c00176{transform:matrix(0.185146,-0.002962,0.003999,0.249968,0,0);-ms-transform:matrix(0.185146,-0.002962,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185146,-0.002962,0.003999,0.249968,0,0);}
.mbf_c00176{transform:matrix(0.185405,-0.003337,0.004499,0.249960,0,0);-ms-transform:matrix(0.185405,-0.003337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185405,-0.003337,0.004499,0.249960,0,0);}
.mc_c00176{transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);-ms-transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);}
.m19_c00176{transform:matrix(0.186021,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.186021,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186021,-0.002976,0.003999,0.249968,0,0);}
.m6_c00176{transform:matrix(0.186416,-0.002983,0.003999,0.249968,0,0);-ms-transform:matrix(0.186416,-0.002983,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186416,-0.002983,0.003999,0.249968,0,0);}
.m9b_c00176{transform:matrix(0.186665,-0.003360,0.004499,0.249960,0,0);-ms-transform:matrix(0.186665,-0.003360,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186665,-0.003360,0.004499,0.249960,0,0);}
.m43_c00176{transform:matrix(0.187301,-0.002997,0.003999,0.249968,0,0);-ms-transform:matrix(0.187301,-0.002997,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187301,-0.002997,0.003999,0.249968,0,0);}
.m7d_c00176{transform:matrix(0.187720,-0.003379,0.004499,0.249960,0,0);-ms-transform:matrix(0.187720,-0.003379,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187720,-0.003379,0.004499,0.249960,0,0);}
.m32_c00176{transform:matrix(0.187891,-0.003006,0.003999,0.249968,0,0);-ms-transform:matrix(0.187891,-0.003006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187891,-0.003006,0.003999,0.249968,0,0);}
.mec_c00176{transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);-ms-transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);}
.m4c_c00176{transform:matrix(0.188901,-0.003022,0.003999,0.249968,0,0);-ms-transform:matrix(0.188901,-0.003022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188901,-0.003022,0.003999,0.249968,0,0);}
.m74_c00176{transform:matrix(0.189354,-0.003408,0.004499,0.249960,0,0);-ms-transform:matrix(0.189354,-0.003408,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189354,-0.003408,0.004499,0.249960,0,0);}
.m79_c00176{transform:matrix(0.189714,-0.003415,0.004499,0.249960,0,0);-ms-transform:matrix(0.189714,-0.003415,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189714,-0.003415,0.004499,0.249960,0,0);}
.m1c_c00176{transform:matrix(0.189756,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189756,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189756,-0.003036,0.003999,0.249968,0,0);}
.m5d_c00176{transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);}
.mcc_c00176{transform:matrix(0.189969,-0.003419,0.004499,0.249960,0,0);-ms-transform:matrix(0.189969,-0.003419,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189969,-0.003419,0.004499,0.249960,0,0);}
.m1a_c00176{transform:matrix(0.190186,-0.003043,0.003999,0.249968,0,0);-ms-transform:matrix(0.190186,-0.003043,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190186,-0.003043,0.003999,0.249968,0,0);}
.m1e_c00176{transform:matrix(0.190691,-0.003051,0.003999,0.249968,0,0);-ms-transform:matrix(0.190691,-0.003051,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190691,-0.003051,0.003999,0.249968,0,0);}
.m5b_c00176{transform:matrix(0.190906,-0.003054,0.003999,0.249968,0,0);-ms-transform:matrix(0.190906,-0.003054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190906,-0.003054,0.003999,0.249968,0,0);}
.m35_c00176{transform:matrix(0.190971,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.190971,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190971,-0.003056,0.003999,0.249968,0,0);}
.m28_c00176{transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);}
.mab_c00176{transform:matrix(0.191769,-0.003452,0.004499,0.249960,0,0);-ms-transform:matrix(0.191769,-0.003452,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191769,-0.003452,0.004499,0.249960,0,0);}
.m56_c00176{transform:matrix(0.191795,-0.003069,0.003999,0.249968,0,0);-ms-transform:matrix(0.191795,-0.003069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191795,-0.003069,0.003999,0.249968,0,0);}
.m2e_c00176{transform:matrix(0.192235,-0.003076,0.003999,0.249968,0,0);-ms-transform:matrix(0.192235,-0.003076,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192235,-0.003076,0.003999,0.249968,0,0);}
.m69_c00176{transform:matrix(0.192334,-0.003462,0.004499,0.249960,0,0);-ms-transform:matrix(0.192334,-0.003462,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192334,-0.003462,0.004499,0.249960,0,0);}
.me_c00176{transform:matrix(0.192610,-0.003082,0.003999,0.249968,0,0);-ms-transform:matrix(0.192610,-0.003082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192610,-0.003082,0.003999,0.249968,0,0);}
.m18_c00176{transform:matrix(0.193035,-0.003089,0.003999,0.249968,0,0);-ms-transform:matrix(0.193035,-0.003089,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193035,-0.003089,0.003999,0.249968,0,0);}
.m73_c00176{transform:matrix(0.194084,-0.003494,0.004499,0.249960,0,0);-ms-transform:matrix(0.194084,-0.003494,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194084,-0.003494,0.004499,0.249960,0,0);}
.mbd_c00176{transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);-ms-transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);}
.m8b_c00176{transform:matrix(0.195533,-0.003520,0.004499,0.249960,0,0);-ms-transform:matrix(0.195533,-0.003520,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195533,-0.003520,0.004499,0.249960,0,0);}
.mbc_c00176{transform:matrix(0.196228,-0.003532,0.004499,0.249960,0,0);-ms-transform:matrix(0.196228,-0.003532,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196228,-0.003532,0.004499,0.249960,0,0);}
.md5_c00176{transform:matrix(0.196443,-0.003536,0.004499,0.249960,0,0);-ms-transform:matrix(0.196443,-0.003536,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196443,-0.003536,0.004499,0.249960,0,0);}
.mc2_c00176{transform:matrix(0.196538,-0.003538,0.004499,0.249960,0,0);-ms-transform:matrix(0.196538,-0.003538,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196538,-0.003538,0.004499,0.249960,0,0);}
.mc9_c00176{transform:matrix(0.196873,-0.003544,0.004499,0.249960,0,0);-ms-transform:matrix(0.196873,-0.003544,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196873,-0.003544,0.004499,0.249960,0,0);}
.m20_c00176{transform:matrix(0.197045,-0.003153,0.003999,0.249968,0,0);-ms-transform:matrix(0.197045,-0.003153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197045,-0.003153,0.003999,0.249968,0,0);}
.mf_c00176{transform:matrix(0.197200,-0.003155,0.003999,0.249968,0,0);-ms-transform:matrix(0.197200,-0.003155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197200,-0.003155,0.003999,0.249968,0,0);}
.mf0_c00176{transform:matrix(0.197613,-0.003557,0.004499,0.249960,0,0);-ms-transform:matrix(0.197613,-0.003557,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197613,-0.003557,0.004499,0.249960,0,0);}
.m3f_c00176{transform:matrix(0.197720,-0.003164,0.003999,0.249968,0,0);-ms-transform:matrix(0.197720,-0.003164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197720,-0.003164,0.003999,0.249968,0,0);}
.md0_c00176{transform:matrix(0.197733,-0.003559,0.004499,0.249960,0,0);-ms-transform:matrix(0.197733,-0.003559,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197733,-0.003559,0.004499,0.249960,0,0);}
.m6c_c00176{transform:matrix(0.198023,-0.003564,0.004499,0.249960,0,0);-ms-transform:matrix(0.198023,-0.003564,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198023,-0.003564,0.004499,0.249960,0,0);}
.m39_c00176{transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);}
.mf4_c00176{transform:matrix(0.198398,-0.003571,0.004499,0.249960,0,0);-ms-transform:matrix(0.198398,-0.003571,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198398,-0.003571,0.004499,0.249960,0,0);}
.m6b_c00176{transform:matrix(0.198448,-0.003572,0.004499,0.249960,0,0);-ms-transform:matrix(0.198448,-0.003572,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198448,-0.003572,0.004499,0.249960,0,0);}
.m8c_c00176{transform:matrix(0.198463,-0.003572,0.004499,0.249960,0,0);-ms-transform:matrix(0.198463,-0.003572,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198463,-0.003572,0.004499,0.249960,0,0);}
.mf9_c00176{transform:matrix(0.198662,-0.004371,0.005499,0.249940,0,0);-ms-transform:matrix(0.198662,-0.004371,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198662,-0.004371,0.005499,0.249940,0,0);}
.mb8_c00176{transform:matrix(0.198838,-0.003579,0.004499,0.249960,0,0);-ms-transform:matrix(0.198838,-0.003579,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198838,-0.003579,0.004499,0.249960,0,0);}
.m92_c00176{transform:matrix(0.198988,-0.003582,0.004499,0.249960,0,0);-ms-transform:matrix(0.198988,-0.003582,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198988,-0.003582,0.004499,0.249960,0,0);}
.mc0_c00176{transform:matrix(0.199278,-0.003587,0.004499,0.249960,0,0);-ms-transform:matrix(0.199278,-0.003587,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199278,-0.003587,0.004499,0.249960,0,0);}
.ma0_c00176{transform:matrix(0.199518,-0.003591,0.004499,0.249960,0,0);-ms-transform:matrix(0.199518,-0.003591,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199518,-0.003591,0.004499,0.249960,0,0);}
.ma6_c00176{transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);-ms-transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);}
.mf8_c00176{transform:matrix(0.200372,-0.004408,0.005499,0.249940,0,0);-ms-transform:matrix(0.200372,-0.004408,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200372,-0.004408,0.005499,0.249940,0,0);}
.m2_c00176{transform:matrix(0.200764,-0.003212,0.003999,0.249968,0,0);-ms-transform:matrix(0.200764,-0.003212,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200764,-0.003212,0.003999,0.249968,0,0);}
.mde_c00176{transform:matrix(0.201132,-0.003620,0.004499,0.249960,0,0);-ms-transform:matrix(0.201132,-0.003620,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201132,-0.003620,0.004499,0.249960,0,0);}
.mf6_c00176{transform:matrix(0.201246,-0.004427,0.005499,0.249940,0,0);-ms-transform:matrix(0.201246,-0.004427,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201246,-0.004427,0.005499,0.249940,0,0);}
.mb_c00176{transform:matrix(0.201314,-0.003221,0.003999,0.249968,0,0);-ms-transform:matrix(0.201314,-0.003221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201314,-0.003221,0.003999,0.249968,0,0);}
.mc5_c00176{transform:matrix(0.201327,-0.003624,0.004499,0.249960,0,0);-ms-transform:matrix(0.201327,-0.003624,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201327,-0.003624,0.004499,0.249960,0,0);}
.mbb_c00176{transform:matrix(0.201427,-0.003626,0.004499,0.249960,0,0);-ms-transform:matrix(0.201427,-0.003626,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201427,-0.003626,0.004499,0.249960,0,0);}
.m4f_c00176{transform:matrix(0.201534,-0.003225,0.003999,0.249968,0,0);-ms-transform:matrix(0.201534,-0.003225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201534,-0.003225,0.003999,0.249968,0,0);}
.m9c_c00176{transform:matrix(0.201967,-0.003635,0.004499,0.249960,0,0);-ms-transform:matrix(0.201967,-0.003635,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201967,-0.003635,0.004499,0.249960,0,0);}
.m7b_c00176{transform:matrix(0.202192,-0.003639,0.004499,0.249960,0,0);-ms-transform:matrix(0.202192,-0.003639,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202192,-0.003639,0.004499,0.249960,0,0);}
.m68_c00176{transform:matrix(0.202787,-0.003650,0.004499,0.249960,0,0);-ms-transform:matrix(0.202787,-0.003650,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202787,-0.003650,0.004499,0.249960,0,0);}
.m25_c00176{transform:matrix(0.202914,-0.003247,0.003999,0.249968,0,0);-ms-transform:matrix(0.202914,-0.003247,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202914,-0.003247,0.003999,0.249968,0,0);}
.mda_c00176{transform:matrix(0.202947,-0.003653,0.004499,0.249960,0,0);-ms-transform:matrix(0.202947,-0.003653,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202947,-0.003653,0.004499,0.249960,0,0);}
.m10_c00176{transform:matrix(0.202954,-0.003247,0.003999,0.249968,0,0);-ms-transform:matrix(0.202954,-0.003247,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202954,-0.003247,0.003999,0.249968,0,0);}
.m63_c00176{transform:matrix(0.202957,-0.003653,0.004499,0.249960,0,0);-ms-transform:matrix(0.202957,-0.003653,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202957,-0.003653,0.004499,0.249960,0,0);}
.m40_c00176{transform:matrix(0.203129,-0.003250,0.003999,0.249968,0,0);-ms-transform:matrix(0.203129,-0.003250,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203129,-0.003250,0.003999,0.249968,0,0);}
.ma1_c00176{transform:matrix(0.203272,-0.003659,0.004499,0.249960,0,0);-ms-transform:matrix(0.203272,-0.003659,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203272,-0.003659,0.004499,0.249960,0,0);}
.m62_c00176{transform:matrix(0.203312,-0.003660,0.004499,0.249960,0,0);-ms-transform:matrix(0.203312,-0.003660,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203312,-0.003660,0.004499,0.249960,0,0);}
.m4e_c00176{transform:matrix(0.203609,-0.003258,0.003999,0.249968,0,0);-ms-transform:matrix(0.203609,-0.003258,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203609,-0.003258,0.003999,0.249968,0,0);}
.m97_c00176{transform:matrix(0.203627,-0.003665,0.004499,0.249960,0,0);-ms-transform:matrix(0.203627,-0.003665,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203627,-0.003665,0.004499,0.249960,0,0);}
.mb1_c00176{transform:matrix(0.203827,-0.003669,0.004499,0.249960,0,0);-ms-transform:matrix(0.203827,-0.003669,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203827,-0.003669,0.004499,0.249960,0,0);}
.ma_c00176{transform:matrix(0.203969,-0.003264,0.003999,0.249968,0,0);-ms-transform:matrix(0.203969,-0.003264,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203969,-0.003264,0.003999,0.249968,0,0);}
.mb3_c00176{transform:matrix(0.204227,-0.003676,0.004499,0.249960,0,0);-ms-transform:matrix(0.204227,-0.003676,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204227,-0.003676,0.004499,0.249960,0,0);}
.m8a_c00176{transform:matrix(0.204282,-0.003677,0.004499,0.249960,0,0);-ms-transform:matrix(0.204282,-0.003677,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204282,-0.003677,0.004499,0.249960,0,0);}
.meb_c00176{transform:matrix(0.204427,-0.003680,0.004499,0.249960,0,0);-ms-transform:matrix(0.204427,-0.003680,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204427,-0.003680,0.004499,0.249960,0,0);}
.m7c_c00176{transform:matrix(0.204677,-0.003684,0.004499,0.249960,0,0);-ms-transform:matrix(0.204677,-0.003684,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204677,-0.003684,0.004499,0.249960,0,0);}
.m1d_c00176{transform:matrix(0.204899,-0.003278,0.003999,0.249968,0,0);-ms-transform:matrix(0.204899,-0.003278,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204899,-0.003278,0.003999,0.249968,0,0);}
.m94_c00176{transform:matrix(0.205592,-0.003701,0.004499,0.249960,0,0);-ms-transform:matrix(0.205592,-0.003701,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205592,-0.003701,0.004499,0.249960,0,0);}
.m5e_c00176{transform:matrix(0.205599,-0.003290,0.003999,0.249968,0,0);-ms-transform:matrix(0.205599,-0.003290,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205599,-0.003290,0.003999,0.249968,0,0);}
.ma8_c00176{transform:matrix(0.206372,-0.003715,0.004499,0.249960,0,0);-ms-transform:matrix(0.206372,-0.003715,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206372,-0.003715,0.004499,0.249960,0,0);}
.m93_c00176{transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);-ms-transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);}
.m15_c00176{transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);-ms-transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206804,-0.003309,0.003999,0.249968,0,0);}
.m17_c00176{transform:matrix(0.206944,-0.003311,0.003999,0.249968,0,0);-ms-transform:matrix(0.206944,-0.003311,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206944,-0.003311,0.003999,0.249968,0,0);}
.md3_c00176{transform:matrix(0.207001,-0.003726,0.004499,0.249960,0,0);-ms-transform:matrix(0.207001,-0.003726,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207001,-0.003726,0.004499,0.249960,0,0);}
.mca_c00176{transform:matrix(0.207106,-0.003728,0.004499,0.249960,0,0);-ms-transform:matrix(0.207106,-0.003728,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207106,-0.003728,0.004499,0.249960,0,0);}
.m48_c00176{transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-ms-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);}
.m2d_c00176{transform:matrix(0.207378,-0.003318,0.003999,0.249968,0,0);-ms-transform:matrix(0.207378,-0.003318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207378,-0.003318,0.003999,0.249968,0,0);}
.ma5_c00176{transform:matrix(0.207786,-0.003740,0.004499,0.249960,0,0);-ms-transform:matrix(0.207786,-0.003740,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207786,-0.003740,0.004499,0.249960,0,0);}
.mb5_c00176{transform:matrix(0.207811,-0.003741,0.004499,0.249960,0,0);-ms-transform:matrix(0.207811,-0.003741,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207811,-0.003741,0.004499,0.249960,0,0);}
.m30_c00176{transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);-ms-transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);}
.m96_c00176{transform:matrix(0.208546,-0.003754,0.004499,0.249960,0,0);-ms-transform:matrix(0.208546,-0.003754,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208546,-0.003754,0.004499,0.249960,0,0);}
.mef_c00176{transform:matrix(0.209431,-0.003770,0.004499,0.249960,0,0);-ms-transform:matrix(0.209431,-0.003770,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209431,-0.003770,0.004499,0.249960,0,0);}
.m8e_c00176{transform:matrix(0.209461,-0.003770,0.004499,0.249960,0,0);-ms-transform:matrix(0.209461,-0.003770,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209461,-0.003770,0.004499,0.249960,0,0);}
.m3b_c00176{transform:matrix(0.209988,-0.003360,0.003999,0.249968,0,0);-ms-transform:matrix(0.209988,-0.003360,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209988,-0.003360,0.003999,0.249968,0,0);}
.m57_c00176{transform:matrix(0.210198,-0.003363,0.003999,0.249968,0,0);-ms-transform:matrix(0.210198,-0.003363,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210198,-0.003363,0.003999,0.249968,0,0);}
.m9e_c00176{transform:matrix(0.210411,-0.003787,0.004499,0.249960,0,0);-ms-transform:matrix(0.210411,-0.003787,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210411,-0.003787,0.004499,0.249960,0,0);}
.m2f_c00176{transform:matrix(0.210598,-0.003370,0.003999,0.249968,0,0);-ms-transform:matrix(0.210598,-0.003370,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210598,-0.003370,0.003999,0.249968,0,0);}
.m27_c00176{transform:matrix(0.210823,-0.003373,0.003999,0.249968,0,0);-ms-transform:matrix(0.210823,-0.003373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210823,-0.003373,0.003999,0.249968,0,0);}
.md2_c00176{transform:matrix(0.211461,-0.003806,0.004499,0.249960,0,0);-ms-transform:matrix(0.211461,-0.003806,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211461,-0.003806,0.004499,0.249960,0,0);}
.mb0_c00176{transform:matrix(0.211546,-0.003808,0.004499,0.249960,0,0);-ms-transform:matrix(0.211546,-0.003808,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211546,-0.003808,0.004499,0.249960,0,0);}
.m67_c00176{transform:matrix(0.211551,-0.003808,0.004499,0.249960,0,0);-ms-transform:matrix(0.211551,-0.003808,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211551,-0.003808,0.004499,0.249960,0,0);}
.m38_c00176{transform:matrix(0.211753,-0.003388,0.003999,0.249968,0,0);-ms-transform:matrix(0.211753,-0.003388,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211753,-0.003388,0.003999,0.249968,0,0);}
.m58_c00176{transform:matrix(0.211918,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211918,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211918,-0.003391,0.003999,0.249968,0,0);}
.m71_c00176{transform:matrix(0.212281,-0.003821,0.004499,0.249960,0,0);-ms-transform:matrix(0.212281,-0.003821,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212281,-0.003821,0.004499,0.249960,0,0);}
.mc6_c00176{transform:matrix(0.212516,-0.003825,0.004499,0.249960,0,0);-ms-transform:matrix(0.212516,-0.003825,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212516,-0.003825,0.004499,0.249960,0,0);}
.m3c_c00176{transform:matrix(0.213303,-0.003413,0.003999,0.249968,0,0);-ms-transform:matrix(0.213303,-0.003413,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213303,-0.003413,0.003999,0.249968,0,0);}
.m8d_c00176{transform:matrix(0.213400,-0.003841,0.004499,0.249960,0,0);-ms-transform:matrix(0.213400,-0.003841,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213400,-0.003841,0.004499,0.249960,0,0);}
.md7_c00176{transform:matrix(0.213470,-0.003842,0.004499,0.249960,0,0);-ms-transform:matrix(0.213470,-0.003842,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213470,-0.003842,0.004499,0.249960,0,0);}
.mb6_c00176{transform:matrix(0.213835,-0.003849,0.004499,0.249960,0,0);-ms-transform:matrix(0.213835,-0.003849,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213835,-0.003849,0.004499,0.249960,0,0);}
.m11_c00176{transform:matrix(0.213863,-0.003422,0.003999,0.249968,0,0);-ms-transform:matrix(0.213863,-0.003422,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213863,-0.003422,0.003999,0.249968,0,0);}
.m3d_c00176{transform:matrix(0.214413,-0.003431,0.003999,0.249968,0,0);-ms-transform:matrix(0.214413,-0.003431,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214413,-0.003431,0.003999,0.249968,0,0);}
.m60_c00176{transform:matrix(0.214760,-0.003866,0.004499,0.249960,0,0);-ms-transform:matrix(0.214760,-0.003866,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214760,-0.003866,0.004499,0.249960,0,0);}
.mdf_c00176{transform:matrix(0.214765,-0.003866,0.004499,0.249960,0,0);-ms-transform:matrix(0.214765,-0.003866,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214765,-0.003866,0.004499,0.249960,0,0);}
.m49_c00176{transform:matrix(0.214768,-0.003436,0.003999,0.249968,0,0);-ms-transform:matrix(0.214768,-0.003436,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214768,-0.003436,0.003999,0.249968,0,0);}
.m52_c00176{transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);-ms-transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);}
.m46_c00176{transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);-ms-transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);}
.m34_c00176{transform:matrix(0.215407,-0.003447,0.003999,0.249968,0,0);-ms-transform:matrix(0.215407,-0.003447,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215407,-0.003447,0.003999,0.249968,0,0);}
.m99_c00176{transform:matrix(0.215495,-0.003879,0.004499,0.249960,0,0);-ms-transform:matrix(0.215495,-0.003879,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215495,-0.003879,0.004499,0.249960,0,0);}
.m55_c00176{transform:matrix(0.215642,-0.003450,0.003999,0.249968,0,0);-ms-transform:matrix(0.215642,-0.003450,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215642,-0.003450,0.003999,0.249968,0,0);}
.m26_c00176{transform:matrix(0.215877,-0.003454,0.003999,0.249968,0,0);-ms-transform:matrix(0.215877,-0.003454,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215877,-0.003454,0.003999,0.249968,0,0);}
.m9a_c00176{transform:matrix(0.215935,-0.003887,0.004499,0.249960,0,0);-ms-transform:matrix(0.215935,-0.003887,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215935,-0.003887,0.004499,0.249960,0,0);}
.m51_c00176{transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);-ms-transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);}
.m70_c00176{transform:matrix(0.216925,-0.003905,0.004499,0.249960,0,0);-ms-transform:matrix(0.216925,-0.003905,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216925,-0.003905,0.004499,0.249960,0,0);}
.m2b_c00176{transform:matrix(0.218197,-0.003491,0.003999,0.249968,0,0);-ms-transform:matrix(0.218197,-0.003491,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218197,-0.003491,0.003999,0.249968,0,0);}
.mc7_c00176{transform:matrix(0.218525,-0.003933,0.004499,0.249960,0,0);-ms-transform:matrix(0.218525,-0.003933,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218525,-0.003933,0.004499,0.249960,0,0);}
.m45_c00176{transform:matrix(0.219277,-0.003508,0.003999,0.249968,0,0);-ms-transform:matrix(0.219277,-0.003508,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219277,-0.003508,0.003999,0.249968,0,0);}
.md6_c00176{transform:matrix(0.219644,-0.003954,0.004499,0.249960,0,0);-ms-transform:matrix(0.219644,-0.003954,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219644,-0.003954,0.004499,0.249960,0,0);}
.m53_c00176{transform:matrix(0.219677,-0.003515,0.003999,0.249968,0,0);-ms-transform:matrix(0.219677,-0.003515,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219677,-0.003515,0.003999,0.249968,0,0);}
.m6f_c00176{transform:matrix(0.220499,-0.003969,0.004499,0.249960,0,0);-ms-transform:matrix(0.220499,-0.003969,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220499,-0.003969,0.004499,0.249960,0,0);}
.me0_c00176{transform:matrix(0.220579,-0.003970,0.004499,0.249960,0,0);-ms-transform:matrix(0.220579,-0.003970,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220579,-0.003970,0.004499,0.249960,0,0);}
.ma4_c00176{transform:matrix(0.220714,-0.003973,0.004499,0.249960,0,0);-ms-transform:matrix(0.220714,-0.003973,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220714,-0.003973,0.004499,0.249960,0,0);}
.m5c_c00176{transform:matrix(0.220857,-0.003534,0.003999,0.249968,0,0);-ms-transform:matrix(0.220857,-0.003534,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220857,-0.003534,0.003999,0.249968,0,0);}
.mcb_c00176{transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);-ms-transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);}
.mce_c00176{transform:matrix(0.221794,-0.003992,0.004499,0.249960,0,0);-ms-transform:matrix(0.221794,-0.003992,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221794,-0.003992,0.004499,0.249960,0,0);}
.m7a_c00176{transform:matrix(0.221964,-0.003995,0.004499,0.249960,0,0);-ms-transform:matrix(0.221964,-0.003995,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221964,-0.003995,0.004499,0.249960,0,0);}
.m6e_c00176{transform:matrix(0.222224,-0.004000,0.004499,0.249960,0,0);-ms-transform:matrix(0.222224,-0.004000,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222224,-0.004000,0.004499,0.249960,0,0);}
.mb7_c00176{transform:matrix(0.222249,-0.004000,0.004499,0.249960,0,0);-ms-transform:matrix(0.222249,-0.004000,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222249,-0.004000,0.004499,0.249960,0,0);}
.m64_c00176{transform:matrix(0.222564,-0.004006,0.004499,0.249960,0,0);-ms-transform:matrix(0.222564,-0.004006,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222564,-0.004006,0.004499,0.249960,0,0);}
.md9_c00176{transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);-ms-transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);}
.m59_c00176{transform:matrix(0.224151,-0.003586,0.003999,0.249968,0,0);-ms-transform:matrix(0.224151,-0.003586,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224151,-0.003586,0.003999,0.249968,0,0);}
.m8f_c00176{transform:matrix(0.224674,-0.004044,0.004499,0.249960,0,0);-ms-transform:matrix(0.224674,-0.004044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224674,-0.004044,0.004499,0.249960,0,0);}
.m31_c00176{transform:matrix(0.225376,-0.003606,0.003999,0.249968,0,0);-ms-transform:matrix(0.225376,-0.003606,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225376,-0.003606,0.003999,0.249968,0,0);}
.ma2_c00176{transform:matrix(0.225828,-0.004065,0.004499,0.249960,0,0);-ms-transform:matrix(0.225828,-0.004065,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225828,-0.004065,0.004499,0.249960,0,0);}
.mb4_c00176{transform:matrix(0.227458,-0.004094,0.004499,0.249960,0,0);-ms-transform:matrix(0.227458,-0.004094,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227458,-0.004094,0.004499,0.249960,0,0);}
.m24_c00176{transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);-ms-transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);}
.me5_c00176{transform:matrix(0.231847,-0.004173,0.004499,0.249960,0,0);-ms-transform:matrix(0.231847,-0.004173,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231847,-0.004173,0.004499,0.249960,0,0);}
.m23_c00176{transform:matrix(0.236910,-0.003791,0.003999,0.249968,0,0);-ms-transform:matrix(0.236910,-0.003791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236910,-0.003791,0.003999,0.249968,0,0);}
.md1_c00176{transform:matrix(0.237811,-0.004281,0.004499,0.249960,0,0);-ms-transform:matrix(0.237811,-0.004281,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237811,-0.004281,0.004499,0.249960,0,0);}
.m6d_c00176{transform:matrix(0.240751,-0.004334,0.004499,0.249960,0,0);-ms-transform:matrix(0.240751,-0.004334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240751,-0.004334,0.004499,0.249960,0,0);}
.m61_c00176{transform:matrix(0.240936,-0.004337,0.004499,0.249960,0,0);-ms-transform:matrix(0.240936,-0.004337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240936,-0.004337,0.004499,0.249960,0,0);}
.mdd_c00176{transform:matrix(0.242996,-0.004374,0.004499,0.249960,0,0);-ms-transform:matrix(0.242996,-0.004374,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242996,-0.004374,0.004499,0.249960,0,0);}
.me3_c00176{transform:matrix(0.244640,-0.004404,0.004499,0.249960,0,0);-ms-transform:matrix(0.244640,-0.004404,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244640,-0.004404,0.004499,0.249960,0,0);}
.m33_c00176{transform:matrix(0.245409,-0.003927,0.003999,0.249968,0,0);-ms-transform:matrix(0.245409,-0.003927,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245409,-0.003927,0.003999,0.249968,0,0);}
.mcd_c00176{transform:matrix(0.246180,-0.004431,0.004499,0.249960,0,0);-ms-transform:matrix(0.246180,-0.004431,0.004499,0.249960,0,0);-webkit-transform:matrix(0.246180,-0.004431,0.004499,0.249960,0,0);}
.me2_c00176{transform:matrix(0.249125,-0.004484,0.004499,0.249960,0,0);-ms-transform:matrix(0.249125,-0.004484,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249125,-0.004484,0.004499,0.249960,0,0);}
.m91_c00176{transform:matrix(0.249960,-0.004499,0.004499,0.249960,0,0);-ms-transform:matrix(0.249960,-0.004499,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249960,-0.004499,0.004499,0.249960,0,0);}
.m6a_c00176{transform:matrix(0.255424,-0.004598,0.004499,0.249960,0,0);-ms-transform:matrix(0.255424,-0.004598,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255424,-0.004598,0.004499,0.249960,0,0);}
.m21_c00176{transform:matrix(0.258017,-0.004128,0.003999,0.249968,0,0);-ms-transform:matrix(0.258017,-0.004128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258017,-0.004128,0.003999,0.249968,0,0);}
.mdb_c00176{transform:matrix(0.263827,-0.004749,0.004499,0.249960,0,0);-ms-transform:matrix(0.263827,-0.004749,0.004499,0.249960,0,0);-webkit-transform:matrix(0.263827,-0.004749,0.004499,0.249960,0,0);}
.me4_c00176{transform:matrix(0.264512,-0.004761,0.004499,0.249960,0,0);-ms-transform:matrix(0.264512,-0.004761,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264512,-0.004761,0.004499,0.249960,0,0);}
.me1_c00176{transform:matrix(0.267012,-0.004806,0.004499,0.249960,0,0);-ms-transform:matrix(0.267012,-0.004806,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267012,-0.004806,0.004499,0.249960,0,0);}
.mc8_c00176{transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);-ms-transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);}
.mdc_c00176{transform:matrix(0.269846,-0.004857,0.004499,0.249960,0,0);-ms-transform:matrix(0.269846,-0.004857,0.004499,0.249960,0,0);-webkit-transform:matrix(0.269846,-0.004857,0.004499,0.249960,0,0);}
.m13_c00176{transform:matrix(0.274525,-0.004392,0.003999,0.249968,0,0);-ms-transform:matrix(0.274525,-0.004392,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274525,-0.004392,0.003999,0.249968,0,0);}
.m5f_c00176{transform:matrix(0.279759,-0.004476,0.003999,0.249968,0,0);-ms-transform:matrix(0.279759,-0.004476,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279759,-0.004476,0.003999,0.249968,0,0);}
.mc4_c00176{transform:matrix(0.284599,-0.005123,0.004499,0.249960,0,0);-ms-transform:matrix(0.284599,-0.005123,0.004499,0.249960,0,0);-webkit-transform:matrix(0.284599,-0.005123,0.004499,0.249960,0,0);}
.m3_c00176{transform:matrix(0.377842,-0.006045,0.003999,0.249968,0,0);-ms-transform:matrix(0.377842,-0.006045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.377842,-0.006045,0.003999,0.249968,0,0);}
.mee_c00176{transform:matrix(0.528309,-0.009510,0.004499,0.249960,0,0);-ms-transform:matrix(0.528309,-0.009510,0.004499,0.249960,0,0);-webkit-transform:matrix(0.528309,-0.009510,0.004499,0.249960,0,0);}
.m5a_c00176{transform:matrix(0.840057,-0.013441,0.003999,0.249968,0,0);-ms-transform:matrix(0.840057,-0.013441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.840057,-0.013441,0.003999,0.249968,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:0.000000px;}
.fc0_c00176{color:transparent;}
.fs12_c00176{font-size:52.508504px;}
.fs11_c00176{font-size:55.659015px;}
.fs8_c00176{font-size:57.759355px;}
.fs6_c00176{font-size:58.807526px;}
.fs7_c00176{font-size:58.809525px;}
.fs4_c00176{font-size:59.857660px;}
.fs5_c00176{font-size:60.907795px;}
.fsf_c00176{font-size:60.909865px;}
.fsb_c00176{font-size:61.960035px;}
.fs14_c00176{font-size:63.010205px;}
.fs2_c00176{font-size:64.058198px;}
.fsd_c00176{font-size:65.110545px;}
.fs10_c00176{font-size:66.160715px;}
.fs3_c00176{font-size:67.208601px;}
.fs9_c00176{font-size:67.210886px;}
.fs1_c00176{font-size:68.258735px;}
.fs13_c00176{font-size:69.311226px;}
.fsa_c00176{font-size:70.361396px;}
.fs15_c00176{font-size:71.417277px;}
.fsc_c00176{font-size:72.461736px;}
.fs0_c00176{font-size:75.600000px;}
.fse_c00176{font-size:76.662416px;}
.y0_c00176{bottom:0.000000px;}
.yf8_c00176{bottom:25.117500px;}
.yf9_c00176{bottom:25.374042px;}
.yfa_c00176{bottom:26.733180px;}
.yfb_c00176{bottom:28.381233px;}
.yfc_c00176{bottom:28.651074px;}
.yfd_c00176{bottom:29.359320px;}
.yf1_c00176{bottom:47.203182px;}
.yf2_c00176{bottom:47.710578px;}
.yf3_c00176{bottom:48.298869px;}
.yf4_c00176{bottom:48.702789px;}
.yf5_c00176{bottom:48.946323px;}
.yf6_c00176{bottom:49.578360px;}
.yf7_c00176{bottom:49.839645px;}
.yea_c00176{bottom:64.353885px;}
.yeb_c00176{bottom:64.354284px;}
.yef_c00176{bottom:64.354305px;}
.yee_c00176{bottom:64.354332px;}
.ye9_c00176{bottom:64.354347px;}
.yec_c00176{bottom:64.354662px;}
.yf0_c00176{bottom:64.354824px;}
.ye8_c00176{bottom:64.354968px;}
.yed_c00176{bottom:64.355061px;}
.yde_c00176{bottom:79.341015px;}
.ydf_c00176{bottom:79.883757px;}
.ye0_c00176{bottom:80.135262px;}
.ye1_c00176{bottom:80.680029px;}
.ye2_c00176{bottom:81.135192px;}
.ye3_c00176{bottom:81.536784px;}
.ye4_c00176{bottom:82.265769px;}
.ye5_c00176{bottom:83.233473px;}
.ye6_c00176{bottom:83.795616px;}
.ye7_c00176{bottom:84.697248px;}
.ydd_c00176{bottom:103.409835px;}
.ydc_c00176{bottom:103.410237px;}
.ydb_c00176{bottom:103.410264px;}
.yda_c00176{bottom:103.410531px;}
.yd9_c00176{bottom:103.410846px;}
.yd6_c00176{bottom:103.411071px;}
.yd7_c00176{bottom:103.411095px;}
.yd8_c00176{bottom:103.411281px;}
.yce_c00176{bottom:113.907945px;}
.ycf_c00176{bottom:115.346019px;}
.yd0_c00176{bottom:115.622742px;}
.yd1_c00176{bottom:116.383791px;}
.yd2_c00176{bottom:116.856453px;}
.yd3_c00176{bottom:117.102612px;}
.yd4_c00176{bottom:117.517575px;}
.yd5_c00176{bottom:118.558155px;}
.yc7_c00176{bottom:130.378905px;}
.yc8_c00176{bottom:131.451375px;}
.yc9_c00176{bottom:131.935281px;}
.yca_c00176{bottom:132.324750px;}
.ycb_c00176{bottom:133.432551px;}
.ycc_c00176{bottom:135.155592px;}
.ycd_c00176{bottom:135.545790px;}
.ybf_c00176{bottom:144.430764px;}
.yc0_c00176{bottom:146.312454px;}
.yc1_c00176{bottom:147.157323px;}
.yc2_c00176{bottom:147.706632px;}
.yc3_c00176{bottom:148.989006px;}
.yc4_c00176{bottom:149.572914px;}
.yc5_c00176{bottom:150.215445px;}
.yc6_c00176{bottom:152.119215px;}
.yb7_c00176{bottom:165.211965px;}
.yb8_c00176{bottom:165.370164px;}
.yb9_c00176{bottom:166.058319px;}
.yba_c00176{bottom:166.907898px;}
.ybb_c00176{bottom:167.676630px;}
.ybc_c00176{bottom:168.321588px;}
.ybd_c00176{bottom:168.592023px;}
.ybe_c00176{bottom:168.808506px;}
.yb2_c00176{bottom:180.877575px;}
.yb3_c00176{bottom:182.160588px;}
.yb4_c00176{bottom:183.299778px;}
.yb5_c00176{bottom:185.243556px;}
.yb6_c00176{bottom:185.695344px;}
.yac_c00176{bottom:199.510122px;}
.yad_c00176{bottom:200.306448px;}
.yae_c00176{bottom:201.212889px;}
.yaf_c00176{bottom:201.825978px;}
.yb0_c00176{bottom:202.876437px;}
.yb1_c00176{bottom:203.567520px;}
.ya5_c00176{bottom:220.061790px;}
.ya6_c00176{bottom:220.062396px;}
.ya8_c00176{bottom:220.062906px;}
.ya7_c00176{bottom:220.063128px;}
.ya9_c00176{bottom:220.063263px;}
.yaa_c00176{bottom:220.063722px;}
.yab_c00176{bottom:220.064121px;}
.ya3_c00176{bottom:237.805233px;}
.ya4_c00176{bottom:237.805539px;}
.ya2_c00176{bottom:237.805668px;}
.y9d_c00176{bottom:237.805821px;}
.ya0_c00176{bottom:237.805872px;}
.y9e_c00176{bottom:237.805953px;}
.y9f_c00176{bottom:237.806286px;}
.ya1_c00176{bottom:237.806409px;}
.y96_c00176{bottom:255.275082px;}
.y95_c00176{bottom:255.275631px;}
.y97_c00176{bottom:255.275760px;}
.y98_c00176{bottom:255.276426px;}
.y99_c00176{bottom:255.276531px;}
.y9a_c00176{bottom:255.276630px;}
.y9b_c00176{bottom:255.276669px;}
.y9c_c00176{bottom:255.277347px;}
.y94_c00176{bottom:272.570058px;}
.y91_c00176{bottom:272.570142px;}
.y93_c00176{bottom:272.570394px;}
.y8f_c00176{bottom:272.570418px;}
.y92_c00176{bottom:272.570448px;}
.y8e_c00176{bottom:272.570727px;}
.y90_c00176{bottom:272.570817px;}
.y85_c00176{bottom:288.621051px;}
.y86_c00176{bottom:289.330983px;}
.y87_c00176{bottom:289.556424px;}
.y88_c00176{bottom:290.043045px;}
.y89_c00176{bottom:290.244498px;}
.y8a_c00176{bottom:290.517591px;}
.y8b_c00176{bottom:290.713986px;}
.y8c_c00176{bottom:291.474066px;}
.y8d_c00176{bottom:291.628839px;}
.y7d_c00176{bottom:306.175911px;}
.y7e_c00176{bottom:306.656151px;}
.y7f_c00176{bottom:306.811098px;}
.y80_c00176{bottom:307.242378px;}
.y81_c00176{bottom:307.961448px;}
.y82_c00176{bottom:308.926368px;}
.y83_c00176{bottom:309.155064px;}
.y84_c00176{bottom:309.957762px;}
.y74_c00176{bottom:322.378659px;}
.y75_c00176{bottom:323.044452px;}
.y76_c00176{bottom:323.959482px;}
.y77_c00176{bottom:324.897138px;}
.y78_c00176{bottom:325.479285px;}
.y79_c00176{bottom:325.903698px;}
.y7a_c00176{bottom:326.267874px;}
.y7b_c00176{bottom:326.949381px;}
.y7c_c00176{bottom:327.318849px;}
.y6a_c00176{bottom:339.393489px;}
.y6b_c00176{bottom:340.008246px;}
.y6c_c00176{bottom:340.353732px;}
.y6d_c00176{bottom:341.600757px;}
.y6e_c00176{bottom:342.123030px;}
.y6f_c00176{bottom:342.687225px;}
.y70_c00176{bottom:343.274196px;}
.y71_c00176{bottom:343.966599px;}
.y72_c00176{bottom:344.176815px;}
.y73_c00176{bottom:345.025470px;}
.y62_c00176{bottom:355.053000px;}
.y63_c00176{bottom:356.048706px;}
.y64_c00176{bottom:356.298105px;}
.y65_c00176{bottom:357.022488px;}
.y66_c00176{bottom:357.737394px;}
.y67_c00176{bottom:359.107860px;}
.y68_c00176{bottom:359.398110px;}
.y69_c00176{bottom:359.774031px;}
.y5c_c00176{bottom:372.037524px;}
.y5d_c00176{bottom:374.432580px;}
.y5e_c00176{bottom:374.771892px;}
.y5f_c00176{bottom:376.060332px;}
.y60_c00176{bottom:376.547568px;}
.y61_c00176{bottom:377.547468px;}
.y55_c00176{bottom:389.319828px;}
.y56_c00176{bottom:390.192228px;}
.y57_c00176{bottom:390.554028px;}
.y58_c00176{bottom:391.803888px;}
.y59_c00176{bottom:392.136624px;}
.y5a_c00176{bottom:393.192156px;}
.y5b_c00176{bottom:394.784556px;}
.y4d_c00176{bottom:406.872576px;}
.y4e_c00176{bottom:407.519184px;}
.y4f_c00176{bottom:408.233436px;}
.y50_c00176{bottom:408.579108px;}
.y51_c00176{bottom:409.405092px;}
.y52_c00176{bottom:410.830860px;}
.y53_c00176{bottom:411.471048px;}
.y54_c00176{bottom:412.143432px;}
.y44_c00176{bottom:423.615336px;}
.y45_c00176{bottom:424.217352px;}
.y46_c00176{bottom:424.779132px;}
.y47_c00176{bottom:425.181300px;}
.y48_c00176{bottom:426.515820px;}
.y49_c00176{bottom:427.428924px;}
.y4a_c00176{bottom:428.314596px;}
.y4b_c00176{bottom:428.766180px;}
.y4c_c00176{bottom:429.387552px;}
.y3a_c00176{bottom:441.436320px;}
.y3b_c00176{bottom:441.982908px;}
.y3c_c00176{bottom:442.268916px;}
.y3d_c00176{bottom:442.626060px;}
.y3e_c00176{bottom:444.050100px;}
.y3f_c00176{bottom:444.330456px;}
.y40_c00176{bottom:445.390308px;}
.y41_c00176{bottom:445.714128px;}
.y42_c00176{bottom:446.560596px;}
.y43_c00176{bottom:447.138936px;}
.y31_c00176{bottom:457.912596px;}
.y32_c00176{bottom:458.303148px;}
.y33_c00176{bottom:459.278688px;}
.y34_c00176{bottom:459.633072px;}
.y35_c00176{bottom:459.902844px;}
.y36_c00176{bottom:461.238492px;}
.y37_c00176{bottom:461.699544px;}
.y38_c00176{bottom:462.463572px;}
.y39_c00176{bottom:463.145388px;}
.y29_c00176{bottom:477.351480px;}
.y2a_c00176{bottom:478.144188px;}
.y2b_c00176{bottom:478.412508px;}
.y2c_c00176{bottom:478.715724px;}
.y2d_c00176{bottom:479.119572px;}
.y2e_c00176{bottom:479.558880px;}
.y2f_c00176{bottom:480.428292px;}
.y30_c00176{bottom:480.810120px;}
.y1f_c00176{bottom:493.283244px;}
.y20_c00176{bottom:494.062140px;}
.y21_c00176{bottom:494.394540px;}
.y22_c00176{bottom:494.864808px;}
.y23_c00176{bottom:495.172668px;}
.y24_c00176{bottom:495.579324px;}
.y25_c00176{bottom:496.959636px;}
.y26_c00176{bottom:497.231676px;}
.y27_c00176{bottom:498.256584px;}
.y28_c00176{bottom:498.786540px;}
.y18_c00176{bottom:511.105884px;}
.y19_c00176{bottom:512.416956px;}
.y1a_c00176{bottom:513.050448px;}
.y1b_c00176{bottom:513.792912px;}
.y1c_c00176{bottom:514.696980px;}
.y1d_c00176{bottom:515.179728px;}
.y1e_c00176{bottom:516.165432px;}
.y11_c00176{bottom:528.389652px;}
.y12_c00176{bottom:529.693812px;}
.y13_c00176{bottom:529.961268px;}
.y14_c00176{bottom:530.307300px;}
.y15_c00176{bottom:532.207296px;}
.y16_c00176{bottom:532.898136px;}
.y17_c00176{bottom:533.163132px;}
.y9_c00176{bottom:545.942196px;}
.ya_c00176{bottom:547.144236px;}
.yb_c00176{bottom:547.713132px;}
.yc_c00176{bottom:548.807532px;}
.yd_c00176{bottom:549.355152px;}
.ye_c00176{bottom:550.348032px;}
.yf_c00176{bottom:550.656492px;}
.y10_c00176{bottom:551.698416px;}
.y2_c00176{bottom:564.303000px;}
.y3_c00176{bottom:564.946872px;}
.y4_c00176{bottom:566.582736px;}
.y5_c00176{bottom:567.158856px;}
.y6_c00176{bottom:568.199016px;}
.y7_c00176{bottom:568.627680px;}
.y8_c00176{bottom:568.816896px;}
.y1_c00176{bottom:579.144000px;}
.h14_c00176{height:52.508504px;}
.h13_c00176{height:55.659015px;}
.ha_c00176{height:57.759355px;}
.h8_c00176{height:58.807526px;}
.h9_c00176{height:58.809525px;}
.h6_c00176{height:59.857660px;}
.h7_c00176{height:60.907795px;}
.h11_c00176{height:60.909865px;}
.hd_c00176{height:61.960035px;}
.h16_c00176{height:63.010205px;}
.h4_c00176{height:64.058198px;}
.hf_c00176{height:65.110545px;}
.h12_c00176{height:66.160715px;}
.h5_c00176{height:67.208601px;}
.hb_c00176{height:67.210886px;}
.h3_c00176{height:68.258735px;}
.h15_c00176{height:69.311226px;}
.hc_c00176{height:70.361396px;}
.h17_c00176{height:71.417277px;}
.he_c00176{height:72.461736px;}
.h2_c00176{height:75.600000px;}
.h10_c00176{height:76.662416px;}
.h0_c00176{height:623.100000px;}
.h1_c00176{height:623.250000px;}
.w1_c00176{width:383.250000px;}
.w0_c00176{width:383.400000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:27.742500px;}
.x22_c00176{left:29.351280px;}
.x39_c00176{left:31.327344px;}
.x43_c00176{left:32.375700px;}
.x57_c00176{left:34.167171px;}
.x67_c00176{left:35.636814px;}
.x6b_c00176{left:37.775094px;}
.x70_c00176{left:39.191883px;}
.x7c_c00176{left:41.311467px;}
.x4a_c00176{left:42.555000px;}
.x2a_c00176{left:48.608904px;}
.x6e_c00176{left:49.618473px;}
.x80_c00176{left:51.369000px;}
.x32_c00176{left:57.482232px;}
.x3a_c00176{left:61.451424px;}
.x81_c00176{left:63.030000px;}
.x3f_c00176{left:64.146216px;}
.x3_c00176{left:67.984500px;}
.x52_c00176{left:69.803793px;}
.x33_c00176{left:71.794320px;}
.x44_c00176{left:76.022916px;}
.x4f_c00176{left:80.955939px;}
.x23_c00176{left:82.177620px;}
.x1b_c00176{left:84.127680px;}
.x9_c00176{left:88.203444px;}
.x34_c00176{left:89.614668px;}
.x10_c00176{left:93.019812px;}
.x2b_c00176{left:95.045184px;}
.x68_c00176{left:96.397470px;}
.x16_c00176{left:97.618848px;}
.x58_c00176{left:98.699298px;}
.x24_c00176{left:100.072908px;}
.x60_c00176{left:102.068697px;}
.x64_c00176{left:105.039003px;}
.x11_c00176{left:106.359948px;}
.x1c_c00176{left:107.611668px;}
.x3b_c00176{left:109.601328px;}
.x2c_c00176{left:111.942840px;}
.x55_c00176{left:115.459926px;}
.xa_c00176{left:116.632620px;}
.x59_c00176{left:119.226390px;}
.x25_c00176{left:120.336744px;}
.x12_c00176{left:123.673344px;}
.x2d_c00176{left:124.771308px;}
.x5e_c00176{left:127.723284px;}
.x17_c00176{left:130.929240px;}
.x76_c00176{left:134.712198px;}
.x71_c00176{left:140.151021px;}
.x73_c00176{left:141.469848px;}
.x1d_c00176{left:143.360388px;}
.x26_c00176{left:147.265176px;}
.x7d_c00176{left:149.058378px;}
.x4b_c00176{left:151.971000px;}
.x61_c00176{left:154.456653px;}
.x7a_c00176{left:155.501280px;}
.x45_c00176{left:156.590256px;}
.x40_c00176{left:158.478192px;}
.x1_c00176{left:159.840000px;}
.x5a_c00176{left:163.516479px;}
.x6c_c00176{left:165.256299px;}
.x6f_c00176{left:167.892111px;}
.x4_c00176{left:170.226000px;}
.xb_c00176{left:171.341616px;}
.x46_c00176{left:173.260200px;}
.x35_c00176{left:174.852720px;}
.x27_c00176{left:176.503632px;}
.x5b_c00176{left:181.877301px;}
.x65_c00176{left:185.511558px;}
.x2e_c00176{left:188.369220px;}
.x4c_c00176{left:191.688000px;}
.x7b_c00176{left:193.833078px;}
.x50_c00176{left:197.590227px;}
.xc_c00176{left:198.722364px;}
.x74_c00176{left:199.763295px;}
.x69_c00176{left:201.084540px;}
.x77_c00176{left:203.251698px;}
.x53_c00176{left:205.072293px;}
.x5_c00176{left:206.233500px;}
.x72_c00176{left:207.983532px;}
.x2f_c00176{left:210.339468px;}
.x1e_c00176{left:212.375472px;}
.x18_c00176{left:217.614588px;}
.x13_c00176{left:218.698272px;}
.x3c_c00176{left:221.945628px;}
.x5c_c00176{left:224.548674px;}
.x1f_c00176{left:226.002108px;}
.x36_c00176{left:227.871336px;}
.x41_c00176{left:229.771632px;}
.x28_c00176{left:234.499068px;}
.x78_c00176{left:239.980698px;}
.x19_c00176{left:243.003864px;}
.x37_c00176{left:244.077804px;}
.x30_c00176{left:246.744564px;}
.xd_c00176{left:248.399196px;}
.x14_c00176{left:253.248564px;}
.x66_c00176{left:256.802670px;}
.x29_c00176{left:259.957476px;}
.x42_c00176{left:261.812592px;}
.xe_c00176{left:263.833212px;}
.x15_c00176{left:266.528724px;}
.x4d_c00176{left:267.825000px;}
.x48_c00176{left:269.468184px;}
.x6_c00176{left:271.243500px;}
.x62_c00176{left:273.545709px;}
.x6a_c00176{left:276.115440px;}
.x20_c00176{left:277.211820px;}
.x31_c00176{left:279.230472px;}
.x5f_c00176{left:281.647653px;}
.x4e_c00176{left:283.950000px;}
.x38_c00176{left:286.385592px;}
.x3d_c00176{left:288.832356px;}
.x6d_c00176{left:291.341031px;}
.x5d_c00176{left:293.617368px;}
.x1a_c00176{left:294.857868px;}
.x7_c00176{left:298.035000px;}
.x79_c00176{left:300.824262px;}
.x7e_c00176{left:302.442558px;}
.x21_c00176{left:303.676116px;}
.x47_c00176{left:305.653728px;}
.x54_c00176{left:307.270293px;}
.x8_c00176{left:309.861000px;}
.x75_c00176{left:310.996797px;}
.x51_c00176{left:314.488515px;}
.xf_c00176{left:315.918876px;}
.x3e_c00176{left:319.884864px;}
.x49_c00176{left:322.115664px;}
.x56_c00176{left:324.416745px;}
.x63_c00176{left:325.933665px;}
.x7f_c00176{left:332.147670px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:0.000000pt;}
.fs12_c00176{font-size:46.674226pt;}
.fs11_c00176{font-size:49.474680pt;}
.fs8_c00176{font-size:51.341649pt;}
.fs6_c00176{font-size:52.273356pt;}
.fs7_c00176{font-size:52.275133pt;}
.fs4_c00176{font-size:53.206809pt;}
.fs5_c00176{font-size:54.140262pt;}
.fsf_c00176{font-size:54.142102pt;}
.fsb_c00176{font-size:55.075587pt;}
.fs14_c00176{font-size:56.009071pt;}
.fs2_c00176{font-size:56.940620pt;}
.fsd_c00176{font-size:57.876040pt;}
.fs10_c00176{font-size:58.809525pt;}
.fs3_c00176{font-size:59.740979pt;}
.fs9_c00176{font-size:59.743009pt;}
.fs1_c00176{font-size:60.674432pt;}
.fs13_c00176{font-size:61.609978pt;}
.fsa_c00176{font-size:62.543463pt;}
.fs15_c00176{font-size:63.482024pt;}
.fsc_c00176{font-size:64.410432pt;}
.fs0_c00176{font-size:67.200000pt;}
.fse_c00176{font-size:68.144370pt;}
.y0_c00176{bottom:0.000000pt;}
.yf8_c00176{bottom:22.326667pt;}
.yf9_c00176{bottom:22.554704pt;}
.yfa_c00176{bottom:23.762827pt;}
.yfb_c00176{bottom:25.227763pt;}
.yfc_c00176{bottom:25.467621pt;}
.yfd_c00176{bottom:26.097173pt;}
.yf1_c00176{bottom:41.958384pt;}
.yf2_c00176{bottom:42.409403pt;}
.yf3_c00176{bottom:42.932328pt;}
.yf4_c00176{bottom:43.291368pt;}
.yf5_c00176{bottom:43.507843pt;}
.yf6_c00176{bottom:44.069653pt;}
.yf7_c00176{bottom:44.301907pt;}
.yea_c00176{bottom:57.203453pt;}
.yeb_c00176{bottom:57.203808pt;}
.yef_c00176{bottom:57.203827pt;}
.yee_c00176{bottom:57.203851pt;}
.ye9_c00176{bottom:57.203864pt;}
.yec_c00176{bottom:57.204144pt;}
.yf0_c00176{bottom:57.204288pt;}
.ye8_c00176{bottom:57.204416pt;}
.yed_c00176{bottom:57.204499pt;}
.yde_c00176{bottom:70.525347pt;}
.ydf_c00176{bottom:71.007784pt;}
.ye0_c00176{bottom:71.231344pt;}
.ye1_c00176{bottom:71.715581pt;}
.ye2_c00176{bottom:72.120171pt;}
.ye3_c00176{bottom:72.477141pt;}
.ye4_c00176{bottom:73.125128pt;}
.ye5_c00176{bottom:73.985309pt;}
.ye6_c00176{bottom:74.484992pt;}
.ye7_c00176{bottom:75.286443pt;}
.ydd_c00176{bottom:91.919853pt;}
.ydc_c00176{bottom:91.920211pt;}
.ydb_c00176{bottom:91.920235pt;}
.yda_c00176{bottom:91.920472pt;}
.yd9_c00176{bottom:91.920752pt;}
.yd6_c00176{bottom:91.920952pt;}
.yd7_c00176{bottom:91.920973pt;}
.yd8_c00176{bottom:91.921139pt;}
.yce_c00176{bottom:101.251507pt;}
.ycf_c00176{bottom:102.529795pt;}
.yd0_c00176{bottom:102.775771pt;}
.yd1_c00176{bottom:103.452259pt;}
.yd2_c00176{bottom:103.872403pt;}
.yd3_c00176{bottom:104.091211pt;}
.yd4_c00176{bottom:104.460067pt;}
.yd5_c00176{bottom:105.385027pt;}
.yc7_c00176{bottom:115.892360pt;}
.yc8_c00176{bottom:116.845667pt;}
.yc9_c00176{bottom:117.275805pt;}
.yca_c00176{bottom:117.622000pt;}
.ycb_c00176{bottom:118.606712pt;}
.ycc_c00176{bottom:120.138304pt;}
.ycd_c00176{bottom:120.485147pt;}
.ybf_c00176{bottom:128.382901pt;}
.yc0_c00176{bottom:130.055515pt;}
.yc1_c00176{bottom:130.806509pt;}
.yc2_c00176{bottom:131.294784pt;}
.yc3_c00176{bottom:132.434672pt;}
.yc4_c00176{bottom:132.953701pt;}
.yc5_c00176{bottom:133.524840pt;}
.yc6_c00176{bottom:135.217080pt;}
.yb7_c00176{bottom:146.855080pt;}
.yb8_c00176{bottom:146.995701pt;}
.yb9_c00176{bottom:147.607395pt;}
.yba_c00176{bottom:148.362576pt;}
.ybb_c00176{bottom:149.045893pt;}
.ybc_c00176{bottom:149.619189pt;}
.ybd_c00176{bottom:149.859576pt;}
.ybe_c00176{bottom:150.052005pt;}
.yb2_c00176{bottom:160.780067pt;}
.yb3_c00176{bottom:161.920523pt;}
.yb4_c00176{bottom:162.933136pt;}
.yb5_c00176{bottom:164.660939pt;}
.yb6_c00176{bottom:165.062528pt;}
.yac_c00176{bottom:177.342331pt;}
.yad_c00176{bottom:178.050176pt;}
.yae_c00176{bottom:178.855901pt;}
.yaf_c00176{bottom:179.400869pt;}
.yb0_c00176{bottom:180.334611pt;}
.yb1_c00176{bottom:180.948907pt;}
.ya5_c00176{bottom:195.610480pt;}
.ya6_c00176{bottom:195.611019pt;}
.ya8_c00176{bottom:195.611472pt;}
.ya7_c00176{bottom:195.611669pt;}
.ya9_c00176{bottom:195.611789pt;}
.yaa_c00176{bottom:195.612197pt;}
.yab_c00176{bottom:195.612552pt;}
.ya3_c00176{bottom:211.382429pt;}
.ya4_c00176{bottom:211.382701pt;}
.ya2_c00176{bottom:211.382816pt;}
.y9d_c00176{bottom:211.382952pt;}
.ya0_c00176{bottom:211.382997pt;}
.y9e_c00176{bottom:211.383069pt;}
.y9f_c00176{bottom:211.383365pt;}
.ya1_c00176{bottom:211.383475pt;}
.y96_c00176{bottom:226.911184pt;}
.y95_c00176{bottom:226.911672pt;}
.y97_c00176{bottom:226.911787pt;}
.y98_c00176{bottom:226.912379pt;}
.y99_c00176{bottom:226.912472pt;}
.y9a_c00176{bottom:226.912560pt;}
.y9b_c00176{bottom:226.912595pt;}
.y9c_c00176{bottom:226.913197pt;}
.y94_c00176{bottom:242.284496pt;}
.y91_c00176{bottom:242.284571pt;}
.y93_c00176{bottom:242.284795pt;}
.y8f_c00176{bottom:242.284816pt;}
.y92_c00176{bottom:242.284843pt;}
.y8e_c00176{bottom:242.285091pt;}
.y90_c00176{bottom:242.285171pt;}
.y85_c00176{bottom:256.552045pt;}
.y86_c00176{bottom:257.183096pt;}
.y87_c00176{bottom:257.383488pt;}
.y88_c00176{bottom:257.816040pt;}
.y89_c00176{bottom:257.995109pt;}
.y8a_c00176{bottom:258.237859pt;}
.y8b_c00176{bottom:258.412432pt;}
.y8c_c00176{bottom:259.088059pt;}
.y8d_c00176{bottom:259.225635pt;}
.y7d_c00176{bottom:272.156365pt;}
.y7e_c00176{bottom:272.583245pt;}
.y7f_c00176{bottom:272.720976pt;}
.y80_c00176{bottom:273.104336pt;}
.y81_c00176{bottom:273.743509pt;}
.y82_c00176{bottom:274.601216pt;}
.y83_c00176{bottom:274.804501pt;}
.y84_c00176{bottom:275.518011pt;}
.y74_c00176{bottom:286.558808pt;}
.y75_c00176{bottom:287.150624pt;}
.y76_c00176{bottom:287.963984pt;}
.y77_c00176{bottom:288.797456pt;}
.y78_c00176{bottom:289.314920pt;}
.y79_c00176{bottom:289.692176pt;}
.y7a_c00176{bottom:290.015888pt;}
.y7b_c00176{bottom:290.621672pt;}
.y7c_c00176{bottom:290.950088pt;}
.y6a_c00176{bottom:301.683101pt;}
.y6b_c00176{bottom:302.229552pt;}
.y6c_c00176{bottom:302.536651pt;}
.y6d_c00176{bottom:303.645117pt;}
.y6e_c00176{bottom:304.109360pt;}
.y6f_c00176{bottom:304.610867pt;}
.y70_c00176{bottom:305.132619pt;}
.y71_c00176{bottom:305.748088pt;}
.y72_c00176{bottom:305.934947pt;}
.y73_c00176{bottom:306.689307pt;}
.y62_c00176{bottom:315.602667pt;}
.y63_c00176{bottom:316.487739pt;}
.y64_c00176{bottom:316.709427pt;}
.y65_c00176{bottom:317.353323pt;}
.y66_c00176{bottom:317.988795pt;}
.y67_c00176{bottom:319.206987pt;}
.y68_c00176{bottom:319.464987pt;}
.y69_c00176{bottom:319.799139pt;}
.y5c_c00176{bottom:330.700021pt;}
.y5d_c00176{bottom:332.828960pt;}
.y5e_c00176{bottom:333.130571pt;}
.y5f_c00176{bottom:334.275851pt;}
.y60_c00176{bottom:334.708949pt;}
.y61_c00176{bottom:335.597749pt;}
.y55_c00176{bottom:346.062069pt;}
.y56_c00176{bottom:346.837536pt;}
.y57_c00176{bottom:347.159136pt;}
.y58_c00176{bottom:348.270123pt;}
.y59_c00176{bottom:348.565888pt;}
.y5a_c00176{bottom:349.504139pt;}
.y5b_c00176{bottom:350.919605pt;}
.y4d_c00176{bottom:361.664512pt;}
.y4e_c00176{bottom:362.239275pt;}
.y4f_c00176{bottom:362.874165pt;}
.y50_c00176{bottom:363.181429pt;}
.y51_c00176{bottom:363.915637pt;}
.y52_c00176{bottom:365.182987pt;}
.y53_c00176{bottom:365.752043pt;}
.y54_c00176{bottom:366.349717pt;}
.y44_c00176{bottom:376.546965pt;}
.y45_c00176{bottom:377.082091pt;}
.y46_c00176{bottom:377.581451pt;}
.y47_c00176{bottom:377.938933pt;}
.y48_c00176{bottom:379.125173pt;}
.y49_c00176{bottom:379.936821pt;}
.y4a_c00176{bottom:380.724085pt;}
.y4b_c00176{bottom:381.125493pt;}
.y4c_c00176{bottom:381.677824pt;}
.y3a_c00176{bottom:392.387840pt;}
.y3b_c00176{bottom:392.873696pt;}
.y3c_c00176{bottom:393.127925pt;}
.y3d_c00176{bottom:393.445387pt;}
.y3e_c00176{bottom:394.711200pt;}
.y3f_c00176{bottom:394.960405pt;}
.y40_c00176{bottom:395.902496pt;}
.y41_c00176{bottom:396.190336pt;}
.y42_c00176{bottom:396.942752pt;}
.y43_c00176{bottom:397.456832pt;}
.y31_c00176{bottom:407.033419pt;}
.y32_c00176{bottom:407.380576pt;}
.y33_c00176{bottom:408.247723pt;}
.y34_c00176{bottom:408.562731pt;}
.y35_c00176{bottom:408.802528pt;}
.y36_c00176{bottom:409.989771pt;}
.y37_c00176{bottom:410.399595pt;}
.y38_c00176{bottom:411.078731pt;}
.y39_c00176{bottom:411.684789pt;}
.y29_c00176{bottom:424.312427pt;}
.y2a_c00176{bottom:425.017056pt;}
.y2b_c00176{bottom:425.255563pt;}
.y2c_c00176{bottom:425.525088pt;}
.y2d_c00176{bottom:425.884064pt;}
.y2e_c00176{bottom:426.274560pt;}
.y2f_c00176{bottom:427.047371pt;}
.y30_c00176{bottom:427.386773pt;}
.y1f_c00176{bottom:438.473995pt;}
.y20_c00176{bottom:439.166347pt;}
.y21_c00176{bottom:439.461813pt;}
.y22_c00176{bottom:439.879829pt;}
.y23_c00176{bottom:440.153483pt;}
.y24_c00176{bottom:440.514955pt;}
.y25_c00176{bottom:441.741899pt;}
.y26_c00176{bottom:441.983712pt;}
.y27_c00176{bottom:442.894741pt;}
.y28_c00176{bottom:443.365813pt;}
.y18_c00176{bottom:454.316341pt;}
.y19_c00176{bottom:455.481739pt;}
.y1a_c00176{bottom:456.044843pt;}
.y1b_c00176{bottom:456.704811pt;}
.y1c_c00176{bottom:457.508427pt;}
.y1d_c00176{bottom:457.937536pt;}
.y1e_c00176{bottom:458.813717pt;}
.y11_c00176{bottom:469.679691pt;}
.y12_c00176{bottom:470.838944pt;}
.y13_c00176{bottom:471.076683pt;}
.y14_c00176{bottom:471.384267pt;}
.y15_c00176{bottom:473.073152pt;}
.y16_c00176{bottom:473.687232pt;}
.y17_c00176{bottom:473.922784pt;}
.y9_c00176{bottom:485.281952pt;}
.ya_c00176{bottom:486.350432pt;}
.yb_c00176{bottom:486.856117pt;}
.yc_c00176{bottom:487.828917pt;}
.yd_c00176{bottom:488.315691pt;}
.ye_c00176{bottom:489.198251pt;}
.yf_c00176{bottom:489.472437pt;}
.y10_c00176{bottom:490.398592pt;}
.y2_c00176{bottom:501.602667pt;}
.y3_c00176{bottom:502.174997pt;}
.y4_c00176{bottom:503.629099pt;}
.y5_c00176{bottom:504.141205pt;}
.y6_c00176{bottom:505.065792pt;}
.y7_c00176{bottom:505.446827pt;}
.y8_c00176{bottom:505.615019pt;}
.y1_c00176{bottom:514.794667pt;}
.h14_c00176{height:46.674226pt;}
.h13_c00176{height:49.474680pt;}
.ha_c00176{height:51.341649pt;}
.h8_c00176{height:52.273356pt;}
.h9_c00176{height:52.275133pt;}
.h6_c00176{height:53.206809pt;}
.h7_c00176{height:54.140262pt;}
.h11_c00176{height:54.142102pt;}
.hd_c00176{height:55.075587pt;}
.h16_c00176{height:56.009071pt;}
.h4_c00176{height:56.940620pt;}
.hf_c00176{height:57.876040pt;}
.h12_c00176{height:58.809525pt;}
.h5_c00176{height:59.740979pt;}
.hb_c00176{height:59.743009pt;}
.h3_c00176{height:60.674432pt;}
.h15_c00176{height:61.609978pt;}
.hc_c00176{height:62.543463pt;}
.h17_c00176{height:63.482024pt;}
.he_c00176{height:64.410432pt;}
.h2_c00176{height:67.200000pt;}
.h10_c00176{height:68.144370pt;}
.h0_c00176{height:553.866667pt;}
.h1_c00176{height:554.000000pt;}
.w1_c00176{width:340.666667pt;}
.w0_c00176{width:340.800000pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:24.660000pt;}
.x22_c00176{left:26.090027pt;}
.x39_c00176{left:27.846528pt;}
.x43_c00176{left:28.778400pt;}
.x57_c00176{left:30.370819pt;}
.x67_c00176{left:31.677168pt;}
.x6b_c00176{left:33.577861pt;}
.x70_c00176{left:34.837229pt;}
.x7c_c00176{left:36.721304pt;}
.x4a_c00176{left:37.826667pt;}
.x2a_c00176{left:43.207915pt;}
.x6e_c00176{left:44.105309pt;}
.x80_c00176{left:45.661333pt;}
.x32_c00176{left:51.095317pt;}
.x3a_c00176{left:54.623488pt;}
.x81_c00176{left:56.026667pt;}
.x3f_c00176{left:57.018859pt;}
.x3_c00176{left:60.430667pt;}
.x52_c00176{left:62.047816pt;}
.x33_c00176{left:63.817173pt;}
.x44_c00176{left:67.575925pt;}
.x4f_c00176{left:71.960835pt;}
.x23_c00176{left:73.046773pt;}
.x1b_c00176{left:74.780160pt;}
.x9_c00176{left:78.403061pt;}
.x34_c00176{left:79.657483pt;}
.x10_c00176{left:82.684277pt;}
.x2b_c00176{left:84.484608pt;}
.x68_c00176{left:85.686640pt;}
.x16_c00176{left:86.772309pt;}
.x58_c00176{left:87.732709pt;}
.x24_c00176{left:88.953696pt;}
.x60_c00176{left:90.727731pt;}
.x64_c00176{left:93.368003pt;}
.x11_c00176{left:94.542176pt;}
.x1c_c00176{left:95.654816pt;}
.x3b_c00176{left:97.423403pt;}
.x2c_c00176{left:99.504747pt;}
.x55_c00176{left:102.631045pt;}
.xa_c00176{left:103.673440pt;}
.x59_c00176{left:105.979013pt;}
.x25_c00176{left:106.965995pt;}
.x12_c00176{left:109.931861pt;}
.x2d_c00176{left:110.907829pt;}
.x5e_c00176{left:113.531808pt;}
.x17_c00176{left:116.381547pt;}
.x76_c00176{left:119.744176pt;}
.x71_c00176{left:124.578685pt;}
.x73_c00176{left:125.750976pt;}
.x1d_c00176{left:127.431456pt;}
.x26_c00176{left:130.902379pt;}
.x7d_c00176{left:132.496336pt;}
.x4b_c00176{left:135.085333pt;}
.x61_c00176{left:137.294803pt;}
.x7a_c00176{left:138.223360pt;}
.x45_c00176{left:139.191339pt;}
.x40_c00176{left:140.869504pt;}
.x1_c00176{left:142.080000pt;}
.x5a_c00176{left:145.347981pt;}
.x6c_c00176{left:146.894488pt;}
.x6f_c00176{left:149.237432pt;}
.x4_c00176{left:151.312000pt;}
.xb_c00176{left:152.303659pt;}
.x46_c00176{left:154.009067pt;}
.x35_c00176{left:155.424640pt;}
.x27_c00176{left:156.892117pt;}
.x5b_c00176{left:161.668712pt;}
.x65_c00176{left:164.899163pt;}
.x2e_c00176{left:167.439307pt;}
.x4c_c00176{left:170.389333pt;}
.x7b_c00176{left:172.296069pt;}
.x50_c00176{left:175.635757pt;}
.xc_c00176{left:176.642101pt;}
.x74_c00176{left:177.567373pt;}
.x69_c00176{left:178.741813pt;}
.x77_c00176{left:180.668176pt;}
.x53_c00176{left:182.286483pt;}
.x5_c00176{left:183.318667pt;}
.x72_c00176{left:184.874251pt;}
.x2f_c00176{left:186.968416pt;}
.x1e_c00176{left:188.778197pt;}
.x18_c00176{left:193.435189pt;}
.x13_c00176{left:194.398464pt;}
.x3c_c00176{left:197.285003pt;}
.x5c_c00176{left:199.598821pt;}
.x1f_c00176{left:200.890763pt;}
.x36_c00176{left:202.552299pt;}
.x41_c00176{left:204.241451pt;}
.x28_c00176{left:208.443616pt;}
.x78_c00176{left:213.316176pt;}
.x19_c00176{left:216.003435pt;}
.x37_c00176{left:216.958048pt;}
.x30_c00176{left:219.328501pt;}
.xd_c00176{left:220.799285pt;}
.x14_c00176{left:225.109835pt;}
.x66_c00176{left:228.269040pt;}
.x29_c00176{left:231.073312pt;}
.x42_c00176{left:232.722304pt;}
.xe_c00176{left:234.518411pt;}
.x15_c00176{left:236.914421pt;}
.x4d_c00176{left:238.066667pt;}
.x48_c00176{left:239.527275pt;}
.x6_c00176{left:241.105333pt;}
.x62_c00176{left:243.151741pt;}
.x6a_c00176{left:245.435947pt;}
.x20_c00176{left:246.410507pt;}
.x31_c00176{left:248.204864pt;}
.x5f_c00176{left:250.353469pt;}
.x4e_c00176{left:252.400000pt;}
.x38_c00176{left:254.564971pt;}
.x3d_c00176{left:256.739872pt;}
.x6d_c00176{left:258.969805pt;}
.x5d_c00176{left:260.993216pt;}
.x1a_c00176{left:262.095883pt;}
.x7_c00176{left:264.920000pt;}
.x79_c00176{left:267.399344pt;}
.x7e_c00176{left:268.837829pt;}
.x21_c00176{left:269.934325pt;}
.x47_c00176{left:271.692203pt;}
.x54_c00176{left:273.129149pt;}
.x8_c00176{left:275.432000pt;}
.x75_c00176{left:276.441597pt;}
.x51_c00176{left:279.545347pt;}
.xf_c00176{left:280.816779pt;}
.x3e_c00176{left:284.342101pt;}
.x49_c00176{left:286.325035pt;}
.x56_c00176{left:288.370440pt;}
.x63_c00176{left:289.718813pt;}
.x7f_c00176{left:295.242373pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00177 {
    display:none;
  }
  .loading-indicator_c00177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00177 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00177 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00177" -> "#page-container .classname_c00177")
 */
.pf_c00177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00177 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00177 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00177 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00177 {overflow:visible;}
  }
}
.c_c00177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00177 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00177:after { /* webkit #35443 */
  content: '';
}
.t_c00177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00177 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00177 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00177 { /* info for Javascript */
  display:none;
}
.l_c00177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00177:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00177 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00177.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md9_c00177{transform:matrix(0.028860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028860,0.000000,0.000000,0.250000,0,0);}
.mb7_c00177{transform:matrix(0.031350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031350,0.000000,0.000000,0.250000,0,0);}
.md3_c00177{transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114290,0.000000,0.000000,0.250000,0,0);}
.mb6_c00177{transform:matrix(0.120605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120605,0.000000,0.000000,0.250000,0,0);}
.m92_c00177{transform:matrix(0.121380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121380,0.000000,0.000000,0.250000,0,0);}
.m5d_c00177{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00177{transform:matrix(0.136380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136380,0.000000,0.000000,0.250000,0,0);}
.mac_c00177{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.144130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144130,0.000000,0.000000,0.250000,0,0);}
.m49_c00177{transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);}
.mec_c00177{transform:matrix(0.148245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148245,0.000000,0.000000,0.250000,0,0);}
.mb_c00177{transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00177{transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.m82_c00177{transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);}
.maa_c00177{transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);}
.mb0_c00177{transform:matrix(0.153270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153270,0.000000,0.000000,0.250000,0,0);}
.m40_c00177{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.me3_c00177{transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);}
.mdf_c00177{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.m3a_c00177{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m3d_c00177{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00177{transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00177{transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);}
.mba_c00177{transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157055,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157990,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.m38_c00177{transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);}
.m56_c00177{transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);}
.med_c00177{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);}
.m98_c00177{transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);}
.m39_c00177{transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.m12_c00177{transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);}
.mea_c00177{transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);}
.m53_c00177{transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.m68_c00177{transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);}
.m3c_c00177{transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);}
.m37_c00177{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m7d_c00177{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m84_c00177{transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);}
.m73_c00177{transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);}
.m47_c00177{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m29_c00177{transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);}
.m88_c00177{transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);}
.m93_c00177{transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);}
.m5b_c00177{transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);}
.m6a_c00177{transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);}
.mad_c00177{transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);}
.m50_c00177{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.ma_c00177{transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);}
.m2b_c00177{transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);}
.m20_c00177{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.m4c_c00177{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.me9_c00177{transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);}
.mc1_c00177{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00177{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.mee_c00177{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00177{transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);}
.m75_c00177{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.m41_c00177{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m89_c00177{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m8c_c00177{transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);}
.m5_c00177{transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);}
.m64_c00177{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.mc5_c00177{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m6c_c00177{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00177{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.m8_c00177{transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);}
.mbb_c00177{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.me0_c00177{transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);}
.m90_c00177{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.meb_c00177{transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);}
.m91_c00177{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m25_c00177{transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);}
.mae_c00177{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m36_c00177{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m28_c00177{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.md4_c00177{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.ma3_c00177{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.m83_c00177{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.ma8_c00177{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.mc3_c00177{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.md5_c00177{transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00177{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.mbe_c00177{transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);}
.ma1_c00177{transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m77_c00177{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m61_c00177{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.mb5_c00177{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.m17_c00177{transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);}
.m71_c00177{transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);}
.mc_c00177{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m7a_c00177{transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);}
.m4e_c00177{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m5a_c00177{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.m48_c00177{transform:matrix(0.184660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184660,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.mca_c00177{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m5c_c00177{transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);}
.me2_c00177{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.mef_c00177{transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);}
.m85_c00177{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.m76_c00177{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.m59_c00177{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00177{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m7e_c00177{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.m9e_c00177{transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186915,0.000000,0.000000,0.250000,0,0);}
.maf_c00177{transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);}
.ma0_c00177{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);}
.md2_c00177{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.m72_c00177{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m81_c00177{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00177{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.mdd_c00177{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.mbf_c00177{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m58_c00177{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.mdc_c00177{transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);}
.m8f_c00177{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.me4_c00177{transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);}
.m51_c00177{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m54_c00177{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m5f_c00177{transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191540,0.000000,0.000000,0.250000,0,0);}
.m57_c00177{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mab_c00177{transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.me6_c00177{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.m9_c00177{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.mc0_c00177{transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);}
.m80_c00177{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.md6_c00177{transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);}
.mbc_c00177{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.m8a_c00177{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.m94_c00177{transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00177{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m6b_c00177{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m4b_c00177{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m52_c00177{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.m9a_c00177{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.mdb_c00177{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00177{transform:matrix(0.197605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197605,0.000000,0.000000,0.250000,0,0);}
.m6f_c00177{transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);}
.m87_c00177{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m3f_c00177{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m3b_c00177{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.m97_c00177{transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);}
.m5e_c00177{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.me1_c00177{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00177{transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);}
.m8b_c00177{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m9f_c00177{transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);}
.md8_c00177{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m46_c00177{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.mc4_c00177{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m4d_c00177{transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);}
.md0_c00177{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00177{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.m31_c00177{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.mda_c00177{transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);}
.m27_c00177{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m66_c00177{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00177{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m45_c00177{transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);}
.mde_c00177{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m74_c00177{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.mcb_c00177{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.mc8_c00177{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m42_c00177{transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);}
.me5_c00177{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.ma6_c00177{transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);}
.md7_c00177{transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);}
.m62_c00177{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m43_c00177{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00177{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m79_c00177{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.m7f_c00177{transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);}
.mcc_c00177{transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);}
.ma7_c00177{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m99_c00177{transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);}
.mb2_c00177{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m44_c00177{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m69_c00177{transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);}
.m95_c00177{transform:matrix(0.218960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218960,0.000000,0.000000,0.250000,0,0);}
.m63_c00177{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.mb3_c00177{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m65_c00177{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.mc9_c00177{transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);}
.mce_c00177{transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);}
.mcf_c00177{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m30_c00177{transform:matrix(0.228045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228045,0.000000,0.000000,0.250000,0,0);}
.m86_c00177{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m33_c00177{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.md1_c00177{transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);}
.m60_c00177{transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);}
.m6e_c00177{transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);}
.me7_c00177{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.ma4_c00177{transform:matrix(0.236065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236065,0.000000,0.000000,0.250000,0,0);}
.m32_c00177{transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236230,0.000000,0.000000,0.250000,0,0);}
.m55_c00177{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m67_c00177{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00177{transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241770,0.000000,0.000000,0.250000,0,0);}
.ma9_c00177{transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);}
.m35_c00177{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m78_c00177{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m34_c00177{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m70_c00177{transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);}
.mb8_c00177{transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00177{transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);}
.mc7_c00177{transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);}
.m8e_c00177{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.mc6_c00177{transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.276435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276435,0.000000,0.000000,0.250000,0,0);}
.m2e_c00177{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2d_c00177{transform:matrix(0.304585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304585,0.000000,0.000000,0.250000,0,0);}
.m6d_c00177{transform:matrix(0.319650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319650,0.000000,0.000000,0.250000,0,0);}
.m2c_c00177{transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);}
.me8_c00177{transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);}
.m8d_c00177{transform:matrix(0.401145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401145,0.000000,0.000000,0.250000,0,0);}
.m96_c00177{transform:matrix(0.507520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507520,0.000000,0.000000,0.250000,0,0);}
.m9b_c00177{transform:matrix(0.541855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541855,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:0.000000px;}
.fc0_c00177{color:transparent;}
.fs5_c00177{font-size:52.500000px;}
.fs8_c00177{font-size:60.900000px;}
.fsc_c00177{font-size:61.950000px;}
.fsa_c00177{font-size:63.000000px;}
.fs6_c00177{font-size:66.150000px;}
.fs7_c00177{font-size:67.200000px;}
.fs9_c00177{font-size:68.250000px;}
.fs1_c00177{font-size:69.300000px;}
.fs2_c00177{font-size:70.350000px;}
.fs4_c00177{font-size:72.450000px;}
.fs3_c00177{font-size:76.650000px;}
.fsb_c00177{font-size:77.700000px;}
.fs0_c00177{font-size:78.750000px;}
.y0_c00177{bottom:0.000000px;}
.y78_c00177{bottom:29.314500px;}
.y77_c00177{bottom:46.251000px;}
.y76_c00177{bottom:63.954000px;}
.y75_c00177{bottom:81.426000px;}
.y74_c00177{bottom:98.052000px;}
.y73_c00177{bottom:115.635000px;}
.y72_c00177{bottom:133.323000px;}
.y71_c00177{bottom:150.123000px;}
.y70_c00177{bottom:166.513500px;}
.y6f_c00177{bottom:167.167500px;}
.y6e_c00177{bottom:167.413500px;}
.y6d_c00177{bottom:168.298500px;}
.y6c_c00177{bottom:168.505500px;}
.y6b_c00177{bottom:168.673500px;}
.y6a_c00177{bottom:169.293000px;}
.y69_c00177{bottom:183.220500px;}
.y68_c00177{bottom:183.490500px;}
.y67_c00177{bottom:183.729000px;}
.y66_c00177{bottom:184.513500px;}
.y65_c00177{bottom:184.780500px;}
.y64_c00177{bottom:185.770500px;}
.y63_c00177{bottom:186.064500px;}
.y62_c00177{bottom:186.304500px;}
.y61_c00177{bottom:200.653500px;}
.y60_c00177{bottom:218.650500px;}
.y5f_c00177{bottom:219.463500px;}
.y5e_c00177{bottom:219.895500px;}
.y5d_c00177{bottom:220.980000px;}
.y5c_c00177{bottom:221.292000px;}
.y5b_c00177{bottom:221.902500px;}
.y5a_c00177{bottom:222.909000px;}
.y59_c00177{bottom:223.297500px;}
.y58_c00177{bottom:236.128500px;}
.y57_c00177{bottom:236.463000px;}
.y56_c00177{bottom:237.531000px;}
.y55_c00177{bottom:239.508000px;}
.y54_c00177{bottom:240.511500px;}
.y53_c00177{bottom:240.901500px;}
.y52_c00177{bottom:241.387500px;}
.y51_c00177{bottom:254.505000px;}
.y50_c00177{bottom:271.489500px;}
.y4f_c00177{bottom:271.719000px;}
.y4e_c00177{bottom:272.608500px;}
.y4d_c00177{bottom:273.346500px;}
.y4c_c00177{bottom:274.302000px;}
.y4b_c00177{bottom:274.780500px;}
.y4a_c00177{bottom:275.113500px;}
.y49_c00177{bottom:275.674500px;}
.y48_c00177{bottom:289.279500px;}
.y47_c00177{bottom:289.911000px;}
.y46_c00177{bottom:290.157000px;}
.y45_c00177{bottom:290.538000px;}
.y44_c00177{bottom:291.040500px;}
.y43_c00177{bottom:291.691500px;}
.y42_c00177{bottom:292.158000px;}
.y41_c00177{bottom:303.900000px;}
.y40_c00177{bottom:304.267500px;}
.y3f_c00177{bottom:305.313000px;}
.y3e_c00177{bottom:305.817000px;}
.y3d_c00177{bottom:306.742500px;}
.y3c_c00177{bottom:307.165500px;}
.y3b_c00177{bottom:307.560000px;}
.y3a_c00177{bottom:308.346000px;}
.y39_c00177{bottom:322.392000px;}
.y38_c00177{bottom:323.020500px;}
.y37_c00177{bottom:323.235000px;}
.y36_c00177{bottom:323.464500px;}
.y35_c00177{bottom:324.180000px;}
.y34_c00177{bottom:324.331500px;}
.y33_c00177{bottom:324.999000px;}
.y32_c00177{bottom:325.605000px;}
.y31_c00177{bottom:325.893000px;}
.y30_c00177{bottom:340.159500px;}
.y2f_c00177{bottom:341.122500px;}
.y2e_c00177{bottom:341.782500px;}
.y2d_c00177{bottom:342.079500px;}
.y2c_c00177{bottom:342.907500px;}
.y2b_c00177{bottom:343.174500px;}
.y2a_c00177{bottom:343.441500px;}
.y29_c00177{bottom:360.036000px;}
.y28_c00177{bottom:376.117500px;}
.y27_c00177{bottom:376.840500px;}
.y26_c00177{bottom:377.086500px;}
.y25_c00177{bottom:377.841000px;}
.y24_c00177{bottom:378.048000px;}
.y23_c00177{bottom:378.216000px;}
.y22_c00177{bottom:379.081500px;}
.y21_c00177{bottom:393.328500px;}
.y20_c00177{bottom:394.128000px;}
.y1f_c00177{bottom:394.810500px;}
.y1e_c00177{bottom:395.025000px;}
.y1d_c00177{bottom:395.187000px;}
.y1c_c00177{bottom:395.752500px;}
.y1b_c00177{bottom:396.031500px;}
.y1a_c00177{bottom:396.361500px;}
.y19_c00177{bottom:409.822500px;}
.y18_c00177{bottom:410.593500px;}
.y17_c00177{bottom:410.887500px;}
.y16_c00177{bottom:411.496500px;}
.y15_c00177{bottom:411.769500px;}
.y14_c00177{bottom:411.993000px;}
.y13_c00177{bottom:412.666500px;}
.y12_c00177{bottom:413.683500px;}
.y11_c00177{bottom:413.914500px;}
.y10_c00177{bottom:427.812000px;}
.yf_c00177{bottom:428.808000px;}
.ye_c00177{bottom:429.064500px;}
.yd_c00177{bottom:429.301500px;}
.yc_c00177{bottom:430.138500px;}
.yb_c00177{bottom:430.441500px;}
.ya_c00177{bottom:431.194500px;}
.y9_c00177{bottom:444.199500px;}
.y8_c00177{bottom:462.480000px;}
.y7_c00177{bottom:480.028500px;}
.y6_c00177{bottom:496.764000px;}
.y5_c00177{bottom:514.665000px;}
.y4_c00177{bottom:531.405000px;}
.y3_c00177{bottom:548.961000px;}
.y2_c00177{bottom:565.758000px;}
.y1_c00177{bottom:580.770000px;}
.h7_c00177{height:52.500000px;}
.ha_c00177{height:60.900000px;}
.he_c00177{height:61.950000px;}
.hc_c00177{height:63.000000px;}
.h8_c00177{height:66.150000px;}
.h9_c00177{height:67.200000px;}
.hb_c00177{height:68.250000px;}
.h3_c00177{height:69.300000px;}
.h4_c00177{height:70.350000px;}
.h6_c00177{height:72.450000px;}
.h5_c00177{height:76.650000px;}
.hd_c00177{height:77.700000px;}
.h2_c00177{height:78.750000px;}
.h0_c00177{height:623.100000px;}
.h1_c00177{height:623.250000px;}
.w1_c00177{width:383.250000px;}
.w0_c00177{width:383.400000px;}
.x0_c00177{left:0.000000px;}
.x7c_c00177{left:42.390000px;}
.x74_c00177{left:43.470000px;}
.x66_c00177{left:44.668500px;}
.x52_c00177{left:45.721500px;}
.x4f_c00177{left:47.034000px;}
.x45_c00177{left:48.058500px;}
.x34_c00177{left:50.008500px;}
.x1d_c00177{left:51.570000px;}
.xf_c00177{left:52.650000px;}
.x9_c00177{left:53.730000px;}
.x63_c00177{left:63.723000px;}
.x39_c00177{left:66.237000px;}
.x6e_c00177{left:69.120000px;}
.x5e_c00177{left:70.192500px;}
.x49_c00177{left:71.946000px;}
.x81_c00177{left:74.250000px;}
.x78_c00177{left:75.600000px;}
.x17_c00177{left:77.220000px;}
.x2_c00177{left:79.380000px;}
.x53_c00177{left:81.646500px;}
.x46_c00177{left:85.588500px;}
.x10_c00177{left:87.480000px;}
.x5f_c00177{left:89.679000px;}
.x2f_c00177{left:90.720000px;}
.x67_c00177{left:93.238500px;}
.x35_c00177{left:94.266000px;}
.x2a_c00177{left:95.850000px;}
.x6f_c00177{left:98.010000px;}
.x3_c00177{left:99.090000px;}
.x57_c00177{left:102.468000px;}
.x3e_c00177{left:104.887500px;}
.x1e_c00177{left:108.810000px;}
.x6a_c00177{left:109.977000px;}
.x25_c00177{left:112.590000px;}
.x5b_c00177{left:114.213000px;}
.xa_c00177{left:116.910000px;}
.x43_c00177{left:121.104000px;}
.x61_c00177{left:122.893500px;}
.x82_c00177{left:124.200000px;}
.x6b_c00177{left:127.264500px;}
.x1f_c00177{left:129.600000px;}
.x54_c00177{left:131.673000px;}
.x44_c00177{left:135.109500px;}
.x11_c00177{left:136.350000px;}
.x18_c00177{left:138.240000px;}
.x60_c00177{left:139.884000px;}
.x6d_c00177{left:144.181500px;}
.x50_c00177{left:147.220500px;}
.x83_c00177{left:148.500000px;}
.x19_c00177{left:152.550000px;}
.x3f_c00177{left:156.237000px;}
.x2b_c00177{left:158.490000px;}
.x4_c00177{left:160.920000px;}
.x79_c00177{left:165.780000px;}
.x30_c00177{left:169.830000px;}
.x40_c00177{left:171.031500px;}
.x62_c00177{left:174.177000px;}
.x36_c00177{left:175.270500px;}
.x47_c00177{left:177.118500px;}
.x5_c00177{left:178.470000px;}
.x70_c00177{left:181.440000px;}
.x68_c00177{left:183.181500px;}
.x20_c00177{left:185.490000px;}
.x2c_c00177{left:186.570000px;}
.x7e_c00177{left:187.920000px;}
.x37_c00177{left:190.399500px;}
.x58_c00177{left:192.076500px;}
.x7d_c00177{left:194.130000px;}
.x1_c00177{left:196.290000px;}
.x4a_c00177{left:198.570000px;}
.x55_c00177{left:199.653000px;}
.x6c_c00177{left:200.992500px;}
.x3a_c00177{left:202.861500px;}
.x12_c00177{left:204.660000px;}
.x69_c00177{left:207.433500px;}
.x75_c00177{left:209.790000px;}
.x2d_c00177{left:213.030000px;}
.x31_c00177{left:214.380000px;}
.xb_c00177{left:216.000000px;}
.x21_c00177{left:217.890000px;}
.x6_c00177{left:220.860000px;}
.x3b_c00177{left:222.358500px;}
.x26_c00177{left:224.640000px;}
.x76_c00177{left:227.340000px;}
.x7f_c00177{left:229.500000px;}
.x1a_c00177{left:230.580000px;}
.x22_c00177{left:235.170000px;}
.xc_c00177{left:236.250000px;}
.x2e_c00177{left:237.870000px;}
.x48_c00177{left:242.188500px;}
.x27_c00177{left:244.620000px;}
.x38_c00177{left:249.013500px;}
.x5c_c00177{left:250.833000px;}
.x41_c00177{left:252.540000px;}
.x71_c00177{left:254.880000px;}
.x64_c00177{left:256.233000px;}
.x4b_c00177{left:258.526500px;}
.x13_c00177{left:260.010000px;}
.x3c_c00177{left:265.866000px;}
.x56_c00177{left:267.153000px;}
.x4d_c00177{left:268.986000px;}
.x1b_c00177{left:276.480000px;}
.x72_c00177{left:277.830000px;}
.x7_c00177{left:279.450000px;}
.x7a_c00177{left:282.960000px;}
.x14_c00177{left:284.040000px;}
.x23_c00177{left:287.010000px;}
.x77_c00177{left:290.250000px;}
.x28_c00177{left:291.330000px;}
.x8_c00177{left:292.680000px;}
.x59_c00177{left:293.823000px;}
.xd_c00177{left:295.110000px;}
.x5d_c00177{left:300.243000px;}
.x51_c00177{left:301.914000px;}
.x15_c00177{left:304.020000px;}
.x65_c00177{left:305.643000px;}
.x5a_c00177{left:308.155500px;}
.x80_c00177{left:309.690000px;}
.x7b_c00177{left:311.040000px;}
.x32_c00177{left:315.630000px;}
.x29_c00177{left:316.710000px;}
.xe_c00177{left:318.870000px;}
.x42_c00177{left:325.255500px;}
.x73_c00177{left:329.400000px;}
.x33_c00177{left:332.640000px;}
.x24_c00177{left:335.610000px;}
.x4e_c00177{left:339.175500px;}
.x3d_c00177{left:341.911500px;}
.x16_c00177{left:343.170000px;}
.x4c_c00177{left:346.053000px;}
.x1c_c00177{left:348.570000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs5_c00177{font-size:46.666667pt;}
.fs8_c00177{font-size:54.133333pt;}
.fsc_c00177{font-size:55.066667pt;}
.fsa_c00177{font-size:56.000000pt;}
.fs6_c00177{font-size:58.800000pt;}
.fs7_c00177{font-size:59.733333pt;}
.fs9_c00177{font-size:60.666667pt;}
.fs1_c00177{font-size:61.600000pt;}
.fs2_c00177{font-size:62.533333pt;}
.fs4_c00177{font-size:64.400000pt;}
.fs3_c00177{font-size:68.133333pt;}
.fsb_c00177{font-size:69.066667pt;}
.fs0_c00177{font-size:70.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y78_c00177{bottom:26.057333pt;}
.y77_c00177{bottom:41.112000pt;}
.y76_c00177{bottom:56.848000pt;}
.y75_c00177{bottom:72.378667pt;}
.y74_c00177{bottom:87.157333pt;}
.y73_c00177{bottom:102.786667pt;}
.y72_c00177{bottom:118.509333pt;}
.y71_c00177{bottom:133.442667pt;}
.y70_c00177{bottom:148.012000pt;}
.y6f_c00177{bottom:148.593333pt;}
.y6e_c00177{bottom:148.812000pt;}
.y6d_c00177{bottom:149.598667pt;}
.y6c_c00177{bottom:149.782667pt;}
.y6b_c00177{bottom:149.932000pt;}
.y6a_c00177{bottom:150.482667pt;}
.y69_c00177{bottom:162.862667pt;}
.y68_c00177{bottom:163.102667pt;}
.y67_c00177{bottom:163.314667pt;}
.y66_c00177{bottom:164.012000pt;}
.y65_c00177{bottom:164.249333pt;}
.y64_c00177{bottom:165.129333pt;}
.y63_c00177{bottom:165.390667pt;}
.y62_c00177{bottom:165.604000pt;}
.y61_c00177{bottom:178.358667pt;}
.y60_c00177{bottom:194.356000pt;}
.y5f_c00177{bottom:195.078667pt;}
.y5e_c00177{bottom:195.462667pt;}
.y5d_c00177{bottom:196.426667pt;}
.y5c_c00177{bottom:196.704000pt;}
.y5b_c00177{bottom:197.246667pt;}
.y5a_c00177{bottom:198.141333pt;}
.y59_c00177{bottom:198.486667pt;}
.y58_c00177{bottom:209.892000pt;}
.y57_c00177{bottom:210.189333pt;}
.y56_c00177{bottom:211.138667pt;}
.y55_c00177{bottom:212.896000pt;}
.y54_c00177{bottom:213.788000pt;}
.y53_c00177{bottom:214.134667pt;}
.y52_c00177{bottom:214.566667pt;}
.y51_c00177{bottom:226.226667pt;}
.y50_c00177{bottom:241.324000pt;}
.y4f_c00177{bottom:241.528000pt;}
.y4e_c00177{bottom:242.318667pt;}
.y4d_c00177{bottom:242.974667pt;}
.y4c_c00177{bottom:243.824000pt;}
.y4b_c00177{bottom:244.249333pt;}
.y4a_c00177{bottom:244.545333pt;}
.y49_c00177{bottom:245.044000pt;}
.y48_c00177{bottom:257.137333pt;}
.y47_c00177{bottom:257.698667pt;}
.y46_c00177{bottom:257.917333pt;}
.y45_c00177{bottom:258.256000pt;}
.y44_c00177{bottom:258.702667pt;}
.y43_c00177{bottom:259.281333pt;}
.y42_c00177{bottom:259.696000pt;}
.y41_c00177{bottom:270.133333pt;}
.y40_c00177{bottom:270.460000pt;}
.y3f_c00177{bottom:271.389333pt;}
.y3e_c00177{bottom:271.837333pt;}
.y3d_c00177{bottom:272.660000pt;}
.y3c_c00177{bottom:273.036000pt;}
.y3b_c00177{bottom:273.386667pt;}
.y3a_c00177{bottom:274.085333pt;}
.y39_c00177{bottom:286.570667pt;}
.y38_c00177{bottom:287.129333pt;}
.y37_c00177{bottom:287.320000pt;}
.y36_c00177{bottom:287.524000pt;}
.y35_c00177{bottom:288.160000pt;}
.y34_c00177{bottom:288.294667pt;}
.y33_c00177{bottom:288.888000pt;}
.y32_c00177{bottom:289.426667pt;}
.y31_c00177{bottom:289.682667pt;}
.y30_c00177{bottom:302.364000pt;}
.y2f_c00177{bottom:303.220000pt;}
.y2e_c00177{bottom:303.806667pt;}
.y2d_c00177{bottom:304.070667pt;}
.y2c_c00177{bottom:304.806667pt;}
.y2b_c00177{bottom:305.044000pt;}
.y2a_c00177{bottom:305.281333pt;}
.y29_c00177{bottom:320.032000pt;}
.y28_c00177{bottom:334.326667pt;}
.y27_c00177{bottom:334.969333pt;}
.y26_c00177{bottom:335.188000pt;}
.y25_c00177{bottom:335.858667pt;}
.y24_c00177{bottom:336.042667pt;}
.y23_c00177{bottom:336.192000pt;}
.y22_c00177{bottom:336.961333pt;}
.y21_c00177{bottom:349.625333pt;}
.y20_c00177{bottom:350.336000pt;}
.y1f_c00177{bottom:350.942667pt;}
.y1e_c00177{bottom:351.133333pt;}
.y1d_c00177{bottom:351.277333pt;}
.y1c_c00177{bottom:351.780000pt;}
.y1b_c00177{bottom:352.028000pt;}
.y1a_c00177{bottom:352.321333pt;}
.y19_c00177{bottom:364.286667pt;}
.y18_c00177{bottom:364.972000pt;}
.y17_c00177{bottom:365.233333pt;}
.y16_c00177{bottom:365.774667pt;}
.y15_c00177{bottom:366.017333pt;}
.y14_c00177{bottom:366.216000pt;}
.y13_c00177{bottom:366.814667pt;}
.y12_c00177{bottom:367.718667pt;}
.y11_c00177{bottom:367.924000pt;}
.y10_c00177{bottom:380.277333pt;}
.yf_c00177{bottom:381.162667pt;}
.ye_c00177{bottom:381.390667pt;}
.yd_c00177{bottom:381.601333pt;}
.yc_c00177{bottom:382.345333pt;}
.yb_c00177{bottom:382.614667pt;}
.ya_c00177{bottom:383.284000pt;}
.y9_c00177{bottom:394.844000pt;}
.y8_c00177{bottom:411.093333pt;}
.y7_c00177{bottom:426.692000pt;}
.y6_c00177{bottom:441.568000pt;}
.y5_c00177{bottom:457.480000pt;}
.y4_c00177{bottom:472.360000pt;}
.y3_c00177{bottom:487.965333pt;}
.y2_c00177{bottom:502.896000pt;}
.y1_c00177{bottom:516.240000pt;}
.h7_c00177{height:46.666667pt;}
.ha_c00177{height:54.133333pt;}
.he_c00177{height:55.066667pt;}
.hc_c00177{height:56.000000pt;}
.h8_c00177{height:58.800000pt;}
.h9_c00177{height:59.733333pt;}
.hb_c00177{height:60.666667pt;}
.h3_c00177{height:61.600000pt;}
.h4_c00177{height:62.533333pt;}
.h6_c00177{height:64.400000pt;}
.h5_c00177{height:68.133333pt;}
.hd_c00177{height:69.066667pt;}
.h2_c00177{height:70.000000pt;}
.h0_c00177{height:553.866667pt;}
.h1_c00177{height:554.000000pt;}
.w1_c00177{width:340.666667pt;}
.w0_c00177{width:340.800000pt;}
.x0_c00177{left:0.000000pt;}
.x7c_c00177{left:37.680000pt;}
.x74_c00177{left:38.640000pt;}
.x66_c00177{left:39.705333pt;}
.x52_c00177{left:40.641333pt;}
.x4f_c00177{left:41.808000pt;}
.x45_c00177{left:42.718667pt;}
.x34_c00177{left:44.452000pt;}
.x1d_c00177{left:45.840000pt;}
.xf_c00177{left:46.800000pt;}
.x9_c00177{left:47.760000pt;}
.x63_c00177{left:56.642667pt;}
.x39_c00177{left:58.877333pt;}
.x6e_c00177{left:61.440000pt;}
.x5e_c00177{left:62.393333pt;}
.x49_c00177{left:63.952000pt;}
.x81_c00177{left:66.000000pt;}
.x78_c00177{left:67.200000pt;}
.x17_c00177{left:68.640000pt;}
.x2_c00177{left:70.560000pt;}
.x53_c00177{left:72.574667pt;}
.x46_c00177{left:76.078667pt;}
.x10_c00177{left:77.760000pt;}
.x5f_c00177{left:79.714667pt;}
.x2f_c00177{left:80.640000pt;}
.x67_c00177{left:82.878667pt;}
.x35_c00177{left:83.792000pt;}
.x2a_c00177{left:85.200000pt;}
.x6f_c00177{left:87.120000pt;}
.x3_c00177{left:88.080000pt;}
.x57_c00177{left:91.082667pt;}
.x3e_c00177{left:93.233333pt;}
.x1e_c00177{left:96.720000pt;}
.x6a_c00177{left:97.757333pt;}
.x25_c00177{left:100.080000pt;}
.x5b_c00177{left:101.522667pt;}
.xa_c00177{left:103.920000pt;}
.x43_c00177{left:107.648000pt;}
.x61_c00177{left:109.238667pt;}
.x82_c00177{left:110.400000pt;}
.x6b_c00177{left:113.124000pt;}
.x1f_c00177{left:115.200000pt;}
.x54_c00177{left:117.042667pt;}
.x44_c00177{left:120.097333pt;}
.x11_c00177{left:121.200000pt;}
.x18_c00177{left:122.880000pt;}
.x60_c00177{left:124.341333pt;}
.x6d_c00177{left:128.161333pt;}
.x50_c00177{left:130.862667pt;}
.x83_c00177{left:132.000000pt;}
.x19_c00177{left:135.600000pt;}
.x3f_c00177{left:138.877333pt;}
.x2b_c00177{left:140.880000pt;}
.x4_c00177{left:143.040000pt;}
.x79_c00177{left:147.360000pt;}
.x30_c00177{left:150.960000pt;}
.x40_c00177{left:152.028000pt;}
.x62_c00177{left:154.824000pt;}
.x36_c00177{left:155.796000pt;}
.x47_c00177{left:157.438667pt;}
.x5_c00177{left:158.640000pt;}
.x70_c00177{left:161.280000pt;}
.x68_c00177{left:162.828000pt;}
.x20_c00177{left:164.880000pt;}
.x2c_c00177{left:165.840000pt;}
.x7e_c00177{left:167.040000pt;}
.x37_c00177{left:169.244000pt;}
.x58_c00177{left:170.734667pt;}
.x7d_c00177{left:172.560000pt;}
.x1_c00177{left:174.480000pt;}
.x4a_c00177{left:176.506667pt;}
.x55_c00177{left:177.469333pt;}
.x6c_c00177{left:178.660000pt;}
.x3a_c00177{left:180.321333pt;}
.x12_c00177{left:181.920000pt;}
.x69_c00177{left:184.385333pt;}
.x75_c00177{left:186.480000pt;}
.x2d_c00177{left:189.360000pt;}
.x31_c00177{left:190.560000pt;}
.xb_c00177{left:192.000000pt;}
.x21_c00177{left:193.680000pt;}
.x6_c00177{left:196.320000pt;}
.x3b_c00177{left:197.652000pt;}
.x26_c00177{left:199.680000pt;}
.x76_c00177{left:202.080000pt;}
.x7f_c00177{left:204.000000pt;}
.x1a_c00177{left:204.960000pt;}
.x22_c00177{left:209.040000pt;}
.xc_c00177{left:210.000000pt;}
.x2e_c00177{left:211.440000pt;}
.x48_c00177{left:215.278667pt;}
.x27_c00177{left:217.440000pt;}
.x38_c00177{left:221.345333pt;}
.x5c_c00177{left:222.962667pt;}
.x41_c00177{left:224.480000pt;}
.x71_c00177{left:226.560000pt;}
.x64_c00177{left:227.762667pt;}
.x4b_c00177{left:229.801333pt;}
.x13_c00177{left:231.120000pt;}
.x3c_c00177{left:236.325333pt;}
.x56_c00177{left:237.469333pt;}
.x4d_c00177{left:239.098667pt;}
.x1b_c00177{left:245.760000pt;}
.x72_c00177{left:246.960000pt;}
.x7_c00177{left:248.400000pt;}
.x7a_c00177{left:251.520000pt;}
.x14_c00177{left:252.480000pt;}
.x23_c00177{left:255.120000pt;}
.x77_c00177{left:258.000000pt;}
.x28_c00177{left:258.960000pt;}
.x8_c00177{left:260.160000pt;}
.x59_c00177{left:261.176000pt;}
.xd_c00177{left:262.320000pt;}
.x5d_c00177{left:266.882667pt;}
.x51_c00177{left:268.368000pt;}
.x15_c00177{left:270.240000pt;}
.x65_c00177{left:271.682667pt;}
.x5a_c00177{left:273.916000pt;}
.x80_c00177{left:275.280000pt;}
.x7b_c00177{left:276.480000pt;}
.x32_c00177{left:280.560000pt;}
.x29_c00177{left:281.520000pt;}
.xe_c00177{left:283.440000pt;}
.x42_c00177{left:289.116000pt;}
.x73_c00177{left:292.800000pt;}
.x33_c00177{left:295.680000pt;}
.x24_c00177{left:298.320000pt;}
.x4e_c00177{left:301.489333pt;}
.x3d_c00177{left:303.921333pt;}
.x16_c00177{left:305.040000pt;}
.x4c_c00177{left:307.602667pt;}
.x1c_c00177{left:309.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00178 {
    display:none;
  }
  .loading-indicator_c00178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00178 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00178 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00178" -> "#page-container .classname_c00178")
 */
.pf_c00178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00178 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00178 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00178 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00178 {overflow:visible;}
  }
}
.c_c00178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00178 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00178:after { /* webkit #35443 */
  content: '';
}
.t_c00178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00178 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00178 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00178 { /* info for Javascript */
  display:none;
}
.l_c00178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00178:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00178 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00178.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m73_c00178{transform:matrix(0.017594,-0.000176,0.002500,0.249988,0,0);-ms-transform:matrix(0.017594,-0.000176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.017594,-0.000176,0.002500,0.249988,0,0);}
.m25_c00178{transform:matrix(0.029739,-0.000297,0.002500,0.249988,0,0);-ms-transform:matrix(0.029739,-0.000297,0.002500,0.249988,0,0);-webkit-transform:matrix(0.029739,-0.000297,0.002500,0.249988,0,0);}
.me3_c00178{transform:matrix(0.037893,-0.000379,0.002500,0.249988,0,0);-ms-transform:matrix(0.037893,-0.000379,0.002500,0.249988,0,0);-webkit-transform:matrix(0.037893,-0.000379,0.002500,0.249988,0,0);}
.ma7_c00178{transform:matrix(0.105380,-0.001054,0.002500,0.249988,0,0);-ms-transform:matrix(0.105380,-0.001054,0.002500,0.249988,0,0);-webkit-transform:matrix(0.105380,-0.001054,0.002500,0.249988,0,0);}
.meb_c00178{transform:matrix(0.128884,-0.001289,0.002500,0.249988,0,0);-ms-transform:matrix(0.128884,-0.001289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.128884,-0.001289,0.002500,0.249988,0,0);}
.m97_c00178{transform:matrix(0.134828,-0.001348,0.002500,0.249988,0,0);-ms-transform:matrix(0.134828,-0.001348,0.002500,0.249988,0,0);-webkit-transform:matrix(0.134828,-0.001348,0.002500,0.249988,0,0);}
.m0_c00178{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m54_c00178{transform:matrix(0.149108,-0.001491,0.002500,0.249988,0,0);-ms-transform:matrix(0.149108,-0.001491,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149108,-0.001491,0.002500,0.249988,0,0);}
.mf_c00178{transform:matrix(0.151347,-0.001513,0.002500,0.249988,0,0);-ms-transform:matrix(0.151347,-0.001513,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151347,-0.001513,0.002500,0.249988,0,0);}
.ma8_c00178{transform:matrix(0.151512,-0.001515,0.002500,0.249988,0,0);-ms-transform:matrix(0.151512,-0.001515,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151512,-0.001515,0.002500,0.249988,0,0);}
.mda_c00178{transform:matrix(0.152972,-0.001530,0.002500,0.249988,0,0);-ms-transform:matrix(0.152972,-0.001530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152972,-0.001530,0.002500,0.249988,0,0);}
.m47_c00178{transform:matrix(0.153637,-0.001536,0.002500,0.249988,0,0);-ms-transform:matrix(0.153637,-0.001536,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153637,-0.001536,0.002500,0.249988,0,0);}
.m19_c00178{transform:matrix(0.156502,-0.001565,0.002500,0.249988,0,0);-ms-transform:matrix(0.156502,-0.001565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156502,-0.001565,0.002500,0.249988,0,0);}
.m41_c00178{transform:matrix(0.158362,-0.001584,0.002500,0.249988,0,0);-ms-transform:matrix(0.158362,-0.001584,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158362,-0.001584,0.002500,0.249988,0,0);}
.md7_c00178{transform:matrix(0.159007,-0.001590,0.002500,0.249988,0,0);-ms-transform:matrix(0.159007,-0.001590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159007,-0.001590,0.002500,0.249988,0,0);}
.md5_c00178{transform:matrix(0.160442,-0.001604,0.002500,0.249988,0,0);-ms-transform:matrix(0.160442,-0.001604,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160442,-0.001604,0.002500,0.249988,0,0);}
.m8_c00178{transform:matrix(0.160552,-0.001606,0.002500,0.249988,0,0);-ms-transform:matrix(0.160552,-0.001606,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160552,-0.001606,0.002500,0.249988,0,0);}
.m87_c00178{transform:matrix(0.160612,-0.001606,0.002500,0.249988,0,0);-ms-transform:matrix(0.160612,-0.001606,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160612,-0.001606,0.002500,0.249988,0,0);}
.maa_c00178{transform:matrix(0.163012,-0.001630,0.002500,0.249988,0,0);-ms-transform:matrix(0.163012,-0.001630,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163012,-0.001630,0.002500,0.249988,0,0);}
.m4a_c00178{transform:matrix(0.163707,-0.001637,0.002500,0.249988,0,0);-ms-transform:matrix(0.163707,-0.001637,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163707,-0.001637,0.002500,0.249988,0,0);}
.m2e_c00178{transform:matrix(0.164242,-0.001642,0.002500,0.249988,0,0);-ms-transform:matrix(0.164242,-0.001642,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164242,-0.001642,0.002500,0.249988,0,0);}
.md6_c00178{transform:matrix(0.166032,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166032,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166032,-0.001660,0.002500,0.249988,0,0);}
.m27_c00178{transform:matrix(0.166797,-0.001668,0.002500,0.249988,0,0);-ms-transform:matrix(0.166797,-0.001668,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166797,-0.001668,0.002500,0.249988,0,0);}
.mb0_c00178{transform:matrix(0.167832,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167832,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167832,-0.001678,0.002500,0.249988,0,0);}
.m63_c00178{transform:matrix(0.168702,-0.001687,0.002500,0.249988,0,0);-ms-transform:matrix(0.168702,-0.001687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168702,-0.001687,0.002500,0.249988,0,0);}
.m39_c00178{transform:matrix(0.169202,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169202,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169202,-0.001692,0.002500,0.249988,0,0);}
.mce_c00178{transform:matrix(0.169712,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169712,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169712,-0.001697,0.002500,0.249988,0,0);}
.m35_c00178{transform:matrix(0.169722,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169722,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169722,-0.001697,0.002500,0.249988,0,0);}
.mb_c00178{transform:matrix(0.170121,-0.001701,0.002500,0.249988,0,0);-ms-transform:matrix(0.170121,-0.001701,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170121,-0.001701,0.002500,0.249988,0,0);}
.m70_c00178{transform:matrix(0.170351,-0.001704,0.002500,0.249988,0,0);-ms-transform:matrix(0.170351,-0.001704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170351,-0.001704,0.002500,0.249988,0,0);}
.m93_c00178{transform:matrix(0.170466,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170466,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170466,-0.001705,0.002500,0.249988,0,0);}
.m26_c00178{transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);-ms-transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);}
.m72_c00178{transform:matrix(0.171911,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171911,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171911,-0.001719,0.002500,0.249988,0,0);}
.m64_c00178{transform:matrix(0.173436,-0.001734,0.002500,0.249988,0,0);-ms-transform:matrix(0.173436,-0.001734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173436,-0.001734,0.002500,0.249988,0,0);}
.m69_c00178{transform:matrix(0.173571,-0.001736,0.002500,0.249988,0,0);-ms-transform:matrix(0.173571,-0.001736,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173571,-0.001736,0.002500,0.249988,0,0);}
.m91_c00178{transform:matrix(0.173791,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173791,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173791,-0.001738,0.002500,0.249988,0,0);}
.m40_c00178{transform:matrix(0.173806,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173806,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173806,-0.001738,0.002500,0.249988,0,0);}
.md0_c00178{transform:matrix(0.174161,-0.001742,0.002500,0.249988,0,0);-ms-transform:matrix(0.174161,-0.001742,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174161,-0.001742,0.002500,0.249988,0,0);}
.m99_c00178{transform:matrix(0.174451,-0.001745,0.002500,0.249988,0,0);-ms-transform:matrix(0.174451,-0.001745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174451,-0.001745,0.002500,0.249988,0,0);}
.m1e_c00178{transform:matrix(0.174706,-0.001747,0.002500,0.249988,0,0);-ms-transform:matrix(0.174706,-0.001747,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174706,-0.001747,0.002500,0.249988,0,0);}
.m5c_c00178{transform:matrix(0.174831,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174831,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174831,-0.001748,0.002500,0.249988,0,0);}
.m5f_c00178{transform:matrix(0.175666,-0.001757,0.002500,0.249988,0,0);-ms-transform:matrix(0.175666,-0.001757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175666,-0.001757,0.002500,0.249988,0,0);}
.m95_c00178{transform:matrix(0.175676,-0.001757,0.002500,0.249988,0,0);-ms-transform:matrix(0.175676,-0.001757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175676,-0.001757,0.002500,0.249988,0,0);}
.m53_c00178{transform:matrix(0.175796,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175796,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175796,-0.001758,0.002500,0.249988,0,0);}
.mb6_c00178{transform:matrix(0.175951,-0.001760,0.002500,0.249988,0,0);-ms-transform:matrix(0.175951,-0.001760,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175951,-0.001760,0.002500,0.249988,0,0);}
.m1c_c00178{transform:matrix(0.176046,-0.001760,0.002500,0.249988,0,0);-ms-transform:matrix(0.176046,-0.001760,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176046,-0.001760,0.002500,0.249988,0,0);}
.mb9_c00178{transform:matrix(0.176076,-0.001761,0.002500,0.249988,0,0);-ms-transform:matrix(0.176076,-0.001761,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176076,-0.001761,0.002500,0.249988,0,0);}
.m62_c00178{transform:matrix(0.176766,-0.001768,0.002500,0.249988,0,0);-ms-transform:matrix(0.176766,-0.001768,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176766,-0.001768,0.002500,0.249988,0,0);}
.m3_c00178{transform:matrix(0.177661,-0.001777,0.002500,0.249988,0,0);-ms-transform:matrix(0.177661,-0.001777,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177661,-0.001777,0.002500,0.249988,0,0);}
.m9_c00178{transform:matrix(0.178651,-0.001787,0.002500,0.249988,0,0);-ms-transform:matrix(0.178651,-0.001787,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178651,-0.001787,0.002500,0.249988,0,0);}
.m5_c00178{transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178891,-0.001789,0.002500,0.249988,0,0);}
.md9_c00178{transform:matrix(0.179216,-0.001792,0.002500,0.249988,0,0);-ms-transform:matrix(0.179216,-0.001792,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179216,-0.001792,0.002500,0.249988,0,0);}
.m9b_c00178{transform:matrix(0.179381,-0.001794,0.002500,0.249988,0,0);-ms-transform:matrix(0.179381,-0.001794,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179381,-0.001794,0.002500,0.249988,0,0);}
.mdb_c00178{transform:matrix(0.179661,-0.001797,0.002500,0.249988,0,0);-ms-transform:matrix(0.179661,-0.001797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179661,-0.001797,0.002500,0.249988,0,0);}
.m58_c00178{transform:matrix(0.180346,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180346,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180346,-0.001803,0.002500,0.249988,0,0);}
.me_c00178{transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181511,-0.001815,0.002500,0.249988,0,0);}
.m12_c00178{transform:matrix(0.181546,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181546,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181546,-0.001815,0.002500,0.249988,0,0);}
.m59_c00178{transform:matrix(0.181596,-0.001816,0.002500,0.249988,0,0);-ms-transform:matrix(0.181596,-0.001816,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181596,-0.001816,0.002500,0.249988,0,0);}
.mea_c00178{transform:matrix(0.181686,-0.001817,0.002500,0.249988,0,0);-ms-transform:matrix(0.181686,-0.001817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181686,-0.001817,0.002500,0.249988,0,0);}
.md3_c00178{transform:matrix(0.181771,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181771,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181771,-0.001818,0.002500,0.249988,0,0);}
.mbe_c00178{transform:matrix(0.182296,-0.001823,0.002500,0.249988,0,0);-ms-transform:matrix(0.182296,-0.001823,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182296,-0.001823,0.002500,0.249988,0,0);}
.m23_c00178{transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);-ms-transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);}
.m3d_c00178{transform:matrix(0.182861,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182861,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182861,-0.001829,0.002500,0.249988,0,0);}
.m38_c00178{transform:matrix(0.183136,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183136,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183136,-0.001831,0.002500,0.249988,0,0);}
.m65_c00178{transform:matrix(0.183316,-0.001833,0.002500,0.249988,0,0);-ms-transform:matrix(0.183316,-0.001833,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183316,-0.001833,0.002500,0.249988,0,0);}
.mae_c00178{transform:matrix(0.183881,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183881,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183881,-0.001839,0.002500,0.249988,0,0);}
.m9e_c00178{transform:matrix(0.184071,-0.001841,0.002500,0.249988,0,0);-ms-transform:matrix(0.184071,-0.001841,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184071,-0.001841,0.002500,0.249988,0,0);}
.m88_c00178{transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);-ms-transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184336,-0.001843,0.002500,0.249988,0,0);}
.m50_c00178{transform:matrix(0.184406,-0.001844,0.002500,0.249988,0,0);-ms-transform:matrix(0.184406,-0.001844,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184406,-0.001844,0.002500,0.249988,0,0);}
.md_c00178{transform:matrix(0.184786,-0.001848,0.002500,0.249988,0,0);-ms-transform:matrix(0.184786,-0.001848,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184786,-0.001848,0.002500,0.249988,0,0);}
.m31_c00178{transform:matrix(0.185046,-0.001850,0.002500,0.249988,0,0);-ms-transform:matrix(0.185046,-0.001850,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185046,-0.001850,0.002500,0.249988,0,0);}
.ma2_c00178{transform:matrix(0.185086,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185086,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185086,-0.001851,0.002500,0.249988,0,0);}
.m42_c00178{transform:matrix(0.185311,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185311,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185311,-0.001853,0.002500,0.249988,0,0);}
.m98_c00178{transform:matrix(0.185671,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185671,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185671,-0.001857,0.002500,0.249988,0,0);}
.mc3_c00178{transform:matrix(0.185961,-0.001860,0.002500,0.249988,0,0);-ms-transform:matrix(0.185961,-0.001860,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185961,-0.001860,0.002500,0.249988,0,0);}
.md4_c00178{transform:matrix(0.186556,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186556,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186556,-0.001866,0.002500,0.249988,0,0);}
.m71_c00178{transform:matrix(0.187761,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187761,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187761,-0.001878,0.002500,0.249988,0,0);}
.m1a_c00178{transform:matrix(0.187811,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187811,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187811,-0.001878,0.002500,0.249988,0,0);}
.m3b_c00178{transform:matrix(0.188406,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188406,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188406,-0.001884,0.002500,0.249988,0,0);}
.m49_c00178{transform:matrix(0.189431,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189431,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189431,-0.001894,0.002500,0.249988,0,0);}
.ma4_c00178{transform:matrix(0.189646,-0.001896,0.002500,0.249988,0,0);-ms-transform:matrix(0.189646,-0.001896,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189646,-0.001896,0.002500,0.249988,0,0);}
.m4_c00178{transform:matrix(0.190705,-0.001907,0.002500,0.249988,0,0);-ms-transform:matrix(0.190705,-0.001907,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190705,-0.001907,0.002500,0.249988,0,0);}
.ma0_c00178{transform:matrix(0.191085,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191085,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191085,-0.001911,0.002500,0.249988,0,0);}
.m21_c00178{transform:matrix(0.191130,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191130,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191130,-0.001911,0.002500,0.249988,0,0);}
.m96_c00178{transform:matrix(0.191725,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191725,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191725,-0.001917,0.002500,0.249988,0,0);}
.m13_c00178{transform:matrix(0.191845,-0.001918,0.002500,0.249988,0,0);-ms-transform:matrix(0.191845,-0.001918,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191845,-0.001918,0.002500,0.249988,0,0);}
.m16_c00178{transform:matrix(0.191855,-0.001919,0.002500,0.249988,0,0);-ms-transform:matrix(0.191855,-0.001919,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191855,-0.001919,0.002500,0.249988,0,0);}
.m2f_c00178{transform:matrix(0.192390,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192390,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192390,-0.001924,0.002500,0.249988,0,0);}
.m15_c00178{transform:matrix(0.192400,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192400,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192400,-0.001924,0.002500,0.249988,0,0);}
.m94_c00178{transform:matrix(0.192980,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192980,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192980,-0.001930,0.002500,0.249988,0,0);}
.mac_c00178{transform:matrix(0.193500,-0.001935,0.002500,0.249988,0,0);-ms-transform:matrix(0.193500,-0.001935,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193500,-0.001935,0.002500,0.249988,0,0);}
.me9_c00178{transform:matrix(0.193620,-0.001936,0.002500,0.249988,0,0);-ms-transform:matrix(0.193620,-0.001936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193620,-0.001936,0.002500,0.249988,0,0);}
.m2_c00178{transform:matrix(0.193800,-0.001938,0.002500,0.249988,0,0);-ms-transform:matrix(0.193800,-0.001938,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193800,-0.001938,0.002500,0.249988,0,0);}
.m86_c00178{transform:matrix(0.194060,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194060,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194060,-0.001941,0.002500,0.249988,0,0);}
.m14_c00178{transform:matrix(0.194110,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194110,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194110,-0.001941,0.002500,0.249988,0,0);}
.m82_c00178{transform:matrix(0.194275,-0.001943,0.002500,0.249988,0,0);-ms-transform:matrix(0.194275,-0.001943,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194275,-0.001943,0.002500,0.249988,0,0);}
.m4b_c00178{transform:matrix(0.194720,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194720,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194720,-0.001947,0.002500,0.249988,0,0);}
.m6f_c00178{transform:matrix(0.194740,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194740,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194740,-0.001947,0.002500,0.249988,0,0);}
.m84_c00178{transform:matrix(0.194885,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194885,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194885,-0.001949,0.002500,0.249988,0,0);}
.m10_c00178{transform:matrix(0.194905,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194905,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194905,-0.001949,0.002500,0.249988,0,0);}
.mb8_c00178{transform:matrix(0.195015,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195015,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195015,-0.001950,0.002500,0.249988,0,0);}
.mcd_c00178{transform:matrix(0.195500,-0.001955,0.002500,0.249988,0,0);-ms-transform:matrix(0.195500,-0.001955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195500,-0.001955,0.002500,0.249988,0,0);}
.mcf_c00178{transform:matrix(0.195635,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195635,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195635,-0.001956,0.002500,0.249988,0,0);}
.m4f_c00178{transform:matrix(0.195760,-0.001958,0.002500,0.249988,0,0);-ms-transform:matrix(0.195760,-0.001958,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195760,-0.001958,0.002500,0.249988,0,0);}
.m3c_c00178{transform:matrix(0.195900,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195900,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195900,-0.001959,0.002500,0.249988,0,0);}
.m1_c00178{transform:matrix(0.195925,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195925,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195925,-0.001959,0.002500,0.249988,0,0);}
.m6e_c00178{transform:matrix(0.197025,-0.001970,0.002500,0.249988,0,0);-ms-transform:matrix(0.197025,-0.001970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197025,-0.001970,0.002500,0.249988,0,0);}
.m6b_c00178{transform:matrix(0.197170,-0.001972,0.002500,0.249988,0,0);-ms-transform:matrix(0.197170,-0.001972,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197170,-0.001972,0.002500,0.249988,0,0);}
.mb2_c00178{transform:matrix(0.197700,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197700,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197700,-0.001977,0.002500,0.249988,0,0);}
.mcb_c00178{transform:matrix(0.197740,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197740,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197740,-0.001977,0.002500,0.249988,0,0);}
.m83_c00178{transform:matrix(0.198075,-0.001981,0.002500,0.249988,0,0);-ms-transform:matrix(0.198075,-0.001981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198075,-0.001981,0.002500,0.249988,0,0);}
.m92_c00178{transform:matrix(0.198300,-0.001983,0.002500,0.249988,0,0);-ms-transform:matrix(0.198300,-0.001983,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198300,-0.001983,0.002500,0.249988,0,0);}
.m4c_c00178{transform:matrix(0.198350,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198350,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198350,-0.001984,0.002500,0.249988,0,0);}
.ma_c00178{transform:matrix(0.198545,-0.001985,0.002500,0.249988,0,0);-ms-transform:matrix(0.198545,-0.001985,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198545,-0.001985,0.002500,0.249988,0,0);}
.m1f_c00178{transform:matrix(0.199150,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199150,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199150,-0.001992,0.002500,0.249988,0,0);}
.m5b_c00178{transform:matrix(0.199345,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199345,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199345,-0.001993,0.002500,0.249988,0,0);}
.m17_c00178{transform:matrix(0.199580,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199580,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199580,-0.001996,0.002500,0.249988,0,0);}
.me4_c00178{transform:matrix(0.199615,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199615,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199615,-0.001996,0.002500,0.249988,0,0);}
.mad_c00178{transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);}
.m37_c00178{transform:matrix(0.199810,-0.001998,0.002500,0.249988,0,0);-ms-transform:matrix(0.199810,-0.001998,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199810,-0.001998,0.002500,0.249988,0,0);}
.m28_c00178{transform:matrix(0.200010,-0.002000,0.002500,0.249988,0,0);-ms-transform:matrix(0.200010,-0.002000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200010,-0.002000,0.002500,0.249988,0,0);}
.mc0_c00178{transform:matrix(0.200365,-0.002004,0.002500,0.249988,0,0);-ms-transform:matrix(0.200365,-0.002004,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200365,-0.002004,0.002500,0.249988,0,0);}
.m81_c00178{transform:matrix(0.200725,-0.002007,0.002500,0.249988,0,0);-ms-transform:matrix(0.200725,-0.002007,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200725,-0.002007,0.002500,0.249988,0,0);}
.m76_c00178{transform:matrix(0.201680,-0.002017,0.002500,0.249988,0,0);-ms-transform:matrix(0.201680,-0.002017,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201680,-0.002017,0.002500,0.249988,0,0);}
.m52_c00178{transform:matrix(0.202030,-0.002020,0.002500,0.249988,0,0);-ms-transform:matrix(0.202030,-0.002020,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202030,-0.002020,0.002500,0.249988,0,0);}
.m61_c00178{transform:matrix(0.202490,-0.002025,0.002500,0.249988,0,0);-ms-transform:matrix(0.202490,-0.002025,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202490,-0.002025,0.002500,0.249988,0,0);}
.m74_c00178{transform:matrix(0.202655,-0.002027,0.002500,0.249988,0,0);-ms-transform:matrix(0.202655,-0.002027,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202655,-0.002027,0.002500,0.249988,0,0);}
.m11_c00178{transform:matrix(0.203120,-0.002031,0.002500,0.249988,0,0);-ms-transform:matrix(0.203120,-0.002031,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203120,-0.002031,0.002500,0.249988,0,0);}
.m18_c00178{transform:matrix(0.203410,-0.002034,0.002500,0.249988,0,0);-ms-transform:matrix(0.203410,-0.002034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203410,-0.002034,0.002500,0.249988,0,0);}
.m24_c00178{transform:matrix(0.203460,-0.002035,0.002500,0.249988,0,0);-ms-transform:matrix(0.203460,-0.002035,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203460,-0.002035,0.002500,0.249988,0,0);}
.m5d_c00178{transform:matrix(0.203655,-0.002037,0.002500,0.249988,0,0);-ms-transform:matrix(0.203655,-0.002037,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203655,-0.002037,0.002500,0.249988,0,0);}
.m6a_c00178{transform:matrix(0.203760,-0.002038,0.002500,0.249988,0,0);-ms-transform:matrix(0.203760,-0.002038,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203760,-0.002038,0.002500,0.249988,0,0);}
.mc_c00178{transform:matrix(0.204255,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204255,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204255,-0.002043,0.002500,0.249988,0,0);}
.md8_c00178{transform:matrix(0.204780,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204780,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204780,-0.002048,0.002500,0.249988,0,0);}
.mbc_c00178{transform:matrix(0.204910,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204910,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204910,-0.002049,0.002500,0.249988,0,0);}
.mc9_c00178{transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);}
.mc6_c00178{transform:matrix(0.205410,-0.002054,0.002500,0.249988,0,0);-ms-transform:matrix(0.205410,-0.002054,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205410,-0.002054,0.002500,0.249988,0,0);}
.m20_c00178{transform:matrix(0.205670,-0.002057,0.002500,0.249988,0,0);-ms-transform:matrix(0.205670,-0.002057,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205670,-0.002057,0.002500,0.249988,0,0);}
.ma1_c00178{transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206105,-0.002061,0.002500,0.249988,0,0);}
.m4e_c00178{transform:matrix(0.206250,-0.002062,0.002500,0.249988,0,0);-ms-transform:matrix(0.206250,-0.002062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206250,-0.002062,0.002500,0.249988,0,0);}
.mb5_c00178{transform:matrix(0.206455,-0.002065,0.002500,0.249988,0,0);-ms-transform:matrix(0.206455,-0.002065,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206455,-0.002065,0.002500,0.249988,0,0);}
.m46_c00178{transform:matrix(0.206760,-0.002068,0.002500,0.249988,0,0);-ms-transform:matrix(0.206760,-0.002068,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206760,-0.002068,0.002500,0.249988,0,0);}
.m8f_c00178{transform:matrix(0.206890,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206890,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206890,-0.002069,0.002500,0.249988,0,0);}
.m7f_c00178{transform:matrix(0.206990,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.206990,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206990,-0.002070,0.002500,0.249988,0,0);}
.m8d_c00178{transform:matrix(0.207425,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207425,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207425,-0.002074,0.002500,0.249988,0,0);}
.mba_c00178{transform:matrix(0.207465,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207465,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207465,-0.002075,0.002500,0.249988,0,0);}
.mb3_c00178{transform:matrix(0.207775,-0.002078,0.002500,0.249988,0,0);-ms-transform:matrix(0.207775,-0.002078,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207775,-0.002078,0.002500,0.249988,0,0);}
.mc7_c00178{transform:matrix(0.208165,-0.002082,0.002500,0.249988,0,0);-ms-transform:matrix(0.208165,-0.002082,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208165,-0.002082,0.002500,0.249988,0,0);}
.m8a_c00178{transform:matrix(0.209365,-0.002094,0.002500,0.249988,0,0);-ms-transform:matrix(0.209365,-0.002094,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209365,-0.002094,0.002500,0.249988,0,0);}
.m60_c00178{transform:matrix(0.209410,-0.002094,0.002500,0.249988,0,0);-ms-transform:matrix(0.209410,-0.002094,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209410,-0.002094,0.002500,0.249988,0,0);}
.mbf_c00178{transform:matrix(0.209875,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209875,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209875,-0.002099,0.002500,0.249988,0,0);}
.m66_c00178{transform:matrix(0.209995,-0.002100,0.002500,0.249988,0,0);-ms-transform:matrix(0.209995,-0.002100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209995,-0.002100,0.002500,0.249988,0,0);}
.m1d_c00178{transform:matrix(0.210319,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210319,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210319,-0.002103,0.002500,0.249988,0,0);}
.m6d_c00178{transform:matrix(0.211044,-0.002110,0.002500,0.249988,0,0);-ms-transform:matrix(0.211044,-0.002110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211044,-0.002110,0.002500,0.249988,0,0);}
.m29_c00178{transform:matrix(0.212894,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212894,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212894,-0.002129,0.002500,0.249988,0,0);}
.m75_c00178{transform:matrix(0.213109,-0.002131,0.002500,0.249988,0,0);-ms-transform:matrix(0.213109,-0.002131,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213109,-0.002131,0.002500,0.249988,0,0);}
.m5e_c00178{transform:matrix(0.213504,-0.002135,0.002500,0.249988,0,0);-ms-transform:matrix(0.213504,-0.002135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213504,-0.002135,0.002500,0.249988,0,0);}
.m2c_c00178{transform:matrix(0.213534,-0.002135,0.002500,0.249988,0,0);-ms-transform:matrix(0.213534,-0.002135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213534,-0.002135,0.002500,0.249988,0,0);}
.m34_c00178{transform:matrix(0.213719,-0.002137,0.002500,0.249988,0,0);-ms-transform:matrix(0.213719,-0.002137,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213719,-0.002137,0.002500,0.249988,0,0);}
.m3e_c00178{transform:matrix(0.214019,-0.002140,0.002500,0.249988,0,0);-ms-transform:matrix(0.214019,-0.002140,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214019,-0.002140,0.002500,0.249988,0,0);}
.m8c_c00178{transform:matrix(0.215504,-0.002155,0.002500,0.249988,0,0);-ms-transform:matrix(0.215504,-0.002155,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215504,-0.002155,0.002500,0.249988,0,0);}
.me7_c00178{transform:matrix(0.215564,-0.002156,0.002500,0.249988,0,0);-ms-transform:matrix(0.215564,-0.002156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215564,-0.002156,0.002500,0.249988,0,0);}
.m22_c00178{transform:matrix(0.216189,-0.002162,0.002500,0.249988,0,0);-ms-transform:matrix(0.216189,-0.002162,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216189,-0.002162,0.002500,0.249988,0,0);}
.m90_c00178{transform:matrix(0.216519,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216519,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216519,-0.002165,0.002500,0.249988,0,0);}
.me8_c00178{transform:matrix(0.217574,-0.002176,0.002500,0.249988,0,0);-ms-transform:matrix(0.217574,-0.002176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217574,-0.002176,0.002500,0.249988,0,0);}
.maf_c00178{transform:matrix(0.217674,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217674,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217674,-0.002177,0.002500,0.249988,0,0);}
.mca_c00178{transform:matrix(0.218004,-0.002180,0.002500,0.249988,0,0);-ms-transform:matrix(0.218004,-0.002180,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218004,-0.002180,0.002500,0.249988,0,0);}
.mcc_c00178{transform:matrix(0.218419,-0.002184,0.002500,0.249988,0,0);-ms-transform:matrix(0.218419,-0.002184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218419,-0.002184,0.002500,0.249988,0,0);}
.mb1_c00178{transform:matrix(0.218444,-0.002184,0.002500,0.249988,0,0);-ms-transform:matrix(0.218444,-0.002184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218444,-0.002184,0.002500,0.249988,0,0);}
.m48_c00178{transform:matrix(0.219024,-0.002190,0.002500,0.249988,0,0);-ms-transform:matrix(0.219024,-0.002190,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219024,-0.002190,0.002500,0.249988,0,0);}
.m2a_c00178{transform:matrix(0.219684,-0.002197,0.002500,0.249988,0,0);-ms-transform:matrix(0.219684,-0.002197,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219684,-0.002197,0.002500,0.249988,0,0);}
.m1b_c00178{transform:matrix(0.219804,-0.002198,0.002500,0.249988,0,0);-ms-transform:matrix(0.219804,-0.002198,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219804,-0.002198,0.002500,0.249988,0,0);}
.ma6_c00178{transform:matrix(0.220239,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220239,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220239,-0.002202,0.002500,0.249988,0,0);}
.m9c_c00178{transform:matrix(0.221199,-0.002212,0.002500,0.249988,0,0);-ms-transform:matrix(0.221199,-0.002212,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221199,-0.002212,0.002500,0.249988,0,0);}
.m78_c00178{transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);-ms-transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221659,-0.002217,0.002500,0.249988,0,0);}
.m80_c00178{transform:matrix(0.222769,-0.002228,0.002500,0.249988,0,0);-ms-transform:matrix(0.222769,-0.002228,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222769,-0.002228,0.002500,0.249988,0,0);}
.m36_c00178{transform:matrix(0.223034,-0.002230,0.002500,0.249988,0,0);-ms-transform:matrix(0.223034,-0.002230,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223034,-0.002230,0.002500,0.249988,0,0);}
.mde_c00178{transform:matrix(0.223234,-0.002232,0.002500,0.249988,0,0);-ms-transform:matrix(0.223234,-0.002232,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223234,-0.002232,0.002500,0.249988,0,0);}
.ma3_c00178{transform:matrix(0.223469,-0.002235,0.002500,0.249988,0,0);-ms-transform:matrix(0.223469,-0.002235,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223469,-0.002235,0.002500,0.249988,0,0);}
.m7_c00178{transform:matrix(0.223644,-0.002236,0.002500,0.249988,0,0);-ms-transform:matrix(0.223644,-0.002236,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223644,-0.002236,0.002500,0.249988,0,0);}
.m8b_c00178{transform:matrix(0.224144,-0.002241,0.002500,0.249988,0,0);-ms-transform:matrix(0.224144,-0.002241,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224144,-0.002241,0.002500,0.249988,0,0);}
.m68_c00178{transform:matrix(0.224239,-0.002242,0.002500,0.249988,0,0);-ms-transform:matrix(0.224239,-0.002242,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224239,-0.002242,0.002500,0.249988,0,0);}
.m51_c00178{transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);-ms-transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224509,-0.002245,0.002500,0.249988,0,0);}
.mc4_c00178{transform:matrix(0.224749,-0.002247,0.002500,0.249988,0,0);-ms-transform:matrix(0.224749,-0.002247,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224749,-0.002247,0.002500,0.249988,0,0);}
.m6_c00178{transform:matrix(0.224899,-0.002249,0.002500,0.249988,0,0);-ms-transform:matrix(0.224899,-0.002249,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224899,-0.002249,0.002500,0.249988,0,0);}
.mec_c00178{transform:matrix(0.225934,-0.002259,0.002500,0.249988,0,0);-ms-transform:matrix(0.225934,-0.002259,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225934,-0.002259,0.002500,0.249988,0,0);}
.md2_c00178{transform:matrix(0.226014,-0.002260,0.002500,0.249988,0,0);-ms-transform:matrix(0.226014,-0.002260,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226014,-0.002260,0.002500,0.249988,0,0);}
.mdf_c00178{transform:matrix(0.226389,-0.002264,0.002500,0.249988,0,0);-ms-transform:matrix(0.226389,-0.002264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226389,-0.002264,0.002500,0.249988,0,0);}
.m8e_c00178{transform:matrix(0.226499,-0.002265,0.002500,0.249988,0,0);-ms-transform:matrix(0.226499,-0.002265,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226499,-0.002265,0.002500,0.249988,0,0);}
.m89_c00178{transform:matrix(0.226594,-0.002266,0.002500,0.249988,0,0);-ms-transform:matrix(0.226594,-0.002266,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226594,-0.002266,0.002500,0.249988,0,0);}
.m85_c00178{transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);-ms-transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);}
.m9f_c00178{transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);-ms-transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);}
.m56_c00178{transform:matrix(0.229034,-0.002290,0.002500,0.249988,0,0);-ms-transform:matrix(0.229034,-0.002290,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229034,-0.002290,0.002500,0.249988,0,0);}
.m30_c00178{transform:matrix(0.229044,-0.002290,0.002500,0.249988,0,0);-ms-transform:matrix(0.229044,-0.002290,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229044,-0.002290,0.002500,0.249988,0,0);}
.m7e_c00178{transform:matrix(0.230508,-0.002305,0.002500,0.249988,0,0);-ms-transform:matrix(0.230508,-0.002305,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230508,-0.002305,0.002500,0.249988,0,0);}
.me0_c00178{transform:matrix(0.231293,-0.002313,0.002500,0.249988,0,0);-ms-transform:matrix(0.231293,-0.002313,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231293,-0.002313,0.002500,0.249988,0,0);}
.mc8_c00178{transform:matrix(0.231473,-0.002315,0.002500,0.249988,0,0);-ms-transform:matrix(0.231473,-0.002315,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231473,-0.002315,0.002500,0.249988,0,0);}
.m45_c00178{transform:matrix(0.233133,-0.002331,0.002500,0.249988,0,0);-ms-transform:matrix(0.233133,-0.002331,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233133,-0.002331,0.002500,0.249988,0,0);}
.m44_c00178{transform:matrix(0.233673,-0.002337,0.002500,0.249988,0,0);-ms-transform:matrix(0.233673,-0.002337,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233673,-0.002337,0.002500,0.249988,0,0);}
.m33_c00178{transform:matrix(0.233968,-0.002340,0.002500,0.249988,0,0);-ms-transform:matrix(0.233968,-0.002340,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233968,-0.002340,0.002500,0.249988,0,0);}
.m3a_c00178{transform:matrix(0.234433,-0.002344,0.002500,0.249988,0,0);-ms-transform:matrix(0.234433,-0.002344,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234433,-0.002344,0.002500,0.249988,0,0);}
.m4d_c00178{transform:matrix(0.235353,-0.002354,0.002500,0.249988,0,0);-ms-transform:matrix(0.235353,-0.002354,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235353,-0.002354,0.002500,0.249988,0,0);}
.md1_c00178{transform:matrix(0.236308,-0.002363,0.002500,0.249988,0,0);-ms-transform:matrix(0.236308,-0.002363,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236308,-0.002363,0.002500,0.249988,0,0);}
.m5a_c00178{transform:matrix(0.236353,-0.002364,0.002500,0.249988,0,0);-ms-transform:matrix(0.236353,-0.002364,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236353,-0.002364,0.002500,0.249988,0,0);}
.m32_c00178{transform:matrix(0.236733,-0.002367,0.002500,0.249988,0,0);-ms-transform:matrix(0.236733,-0.002367,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236733,-0.002367,0.002500,0.249988,0,0);}
.mdd_c00178{transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);-ms-transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);}
.mbd_c00178{transform:matrix(0.238143,-0.002381,0.002500,0.249988,0,0);-ms-transform:matrix(0.238143,-0.002381,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238143,-0.002381,0.002500,0.249988,0,0);}
.m9d_c00178{transform:matrix(0.238638,-0.002386,0.002500,0.249988,0,0);-ms-transform:matrix(0.238638,-0.002386,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238638,-0.002386,0.002500,0.249988,0,0);}
.mc2_c00178{transform:matrix(0.239018,-0.002390,0.002500,0.249988,0,0);-ms-transform:matrix(0.239018,-0.002390,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239018,-0.002390,0.002500,0.249988,0,0);}
.m2b_c00178{transform:matrix(0.240818,-0.002408,0.002500,0.249988,0,0);-ms-transform:matrix(0.240818,-0.002408,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240818,-0.002408,0.002500,0.249988,0,0);}
.ma5_c00178{transform:matrix(0.242683,-0.002427,0.002500,0.249988,0,0);-ms-transform:matrix(0.242683,-0.002427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242683,-0.002427,0.002500,0.249988,0,0);}
.mc1_c00178{transform:matrix(0.243018,-0.002430,0.002500,0.249988,0,0);-ms-transform:matrix(0.243018,-0.002430,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243018,-0.002430,0.002500,0.249988,0,0);}
.m77_c00178{transform:matrix(0.244353,-0.002444,0.002500,0.249988,0,0);-ms-transform:matrix(0.244353,-0.002444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244353,-0.002444,0.002500,0.249988,0,0);}
.m7b_c00178{transform:matrix(0.245633,-0.002456,0.002500,0.249988,0,0);-ms-transform:matrix(0.245633,-0.002456,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245633,-0.002456,0.002500,0.249988,0,0);}
.mc5_c00178{transform:matrix(0.253487,-0.002535,0.002500,0.249988,0,0);-ms-transform:matrix(0.253487,-0.002535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253487,-0.002535,0.002500,0.249988,0,0);}
.m9a_c00178{transform:matrix(0.256157,-0.002562,0.002500,0.249988,0,0);-ms-transform:matrix(0.256157,-0.002562,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256157,-0.002562,0.002500,0.249988,0,0);}
.m6c_c00178{transform:matrix(0.256387,-0.002564,0.002500,0.249988,0,0);-ms-transform:matrix(0.256387,-0.002564,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256387,-0.002564,0.002500,0.249988,0,0);}
.m2d_c00178{transform:matrix(0.256872,-0.002569,0.002500,0.249988,0,0);-ms-transform:matrix(0.256872,-0.002569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256872,-0.002569,0.002500,0.249988,0,0);}
.mb7_c00178{transform:matrix(0.257197,-0.002572,0.002500,0.249988,0,0);-ms-transform:matrix(0.257197,-0.002572,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257197,-0.002572,0.002500,0.249988,0,0);}
.m57_c00178{transform:matrix(0.258607,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258607,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258607,-0.002586,0.002500,0.249988,0,0);}
.me2_c00178{transform:matrix(0.267282,-0.002673,0.002500,0.249988,0,0);-ms-transform:matrix(0.267282,-0.002673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267282,-0.002673,0.002500,0.249988,0,0);}
.mab_c00178{transform:matrix(0.268522,-0.002685,0.002500,0.249988,0,0);-ms-transform:matrix(0.268522,-0.002685,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268522,-0.002685,0.002500,0.249988,0,0);}
.m3f_c00178{transform:matrix(0.268727,-0.002687,0.002500,0.249988,0,0);-ms-transform:matrix(0.268727,-0.002687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268727,-0.002687,0.002500,0.249988,0,0);}
.m7a_c00178{transform:matrix(0.277106,-0.002771,0.002500,0.249988,0,0);-ms-transform:matrix(0.277106,-0.002771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277106,-0.002771,0.002500,0.249988,0,0);}
.m7c_c00178{transform:matrix(0.286651,-0.002867,0.002500,0.249988,0,0);-ms-transform:matrix(0.286651,-0.002867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.286651,-0.002867,0.002500,0.249988,0,0);}
.m43_c00178{transform:matrix(0.290645,-0.002906,0.002500,0.249988,0,0);-ms-transform:matrix(0.290645,-0.002906,0.002500,0.249988,0,0);-webkit-transform:matrix(0.290645,-0.002906,0.002500,0.249988,0,0);}
.m55_c00178{transform:matrix(0.293570,-0.002936,0.002500,0.249988,0,0);-ms-transform:matrix(0.293570,-0.002936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293570,-0.002936,0.002500,0.249988,0,0);}
.m67_c00178{transform:matrix(0.301810,-0.003018,0.002500,0.249988,0,0);-ms-transform:matrix(0.301810,-0.003018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.301810,-0.003018,0.002500,0.249988,0,0);}
.mbb_c00178{transform:matrix(0.323909,-0.003239,0.002500,0.249988,0,0);-ms-transform:matrix(0.323909,-0.003239,0.002500,0.249988,0,0);-webkit-transform:matrix(0.323909,-0.003239,0.002500,0.249988,0,0);}
.me1_c00178{transform:matrix(0.336183,-0.003362,0.002500,0.249988,0,0);-ms-transform:matrix(0.336183,-0.003362,0.002500,0.249988,0,0);-webkit-transform:matrix(0.336183,-0.003362,0.002500,0.249988,0,0);}
.mb4_c00178{transform:matrix(0.350167,-0.003502,0.002500,0.249988,0,0);-ms-transform:matrix(0.350167,-0.003502,0.002500,0.249988,0,0);-webkit-transform:matrix(0.350167,-0.003502,0.002500,0.249988,0,0);}
.me6_c00178{transform:matrix(0.362347,-0.003623,0.002500,0.249988,0,0);-ms-transform:matrix(0.362347,-0.003623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.362347,-0.003623,0.002500,0.249988,0,0);}
.ma9_c00178{transform:matrix(0.365962,-0.003660,0.002500,0.249988,0,0);-ms-transform:matrix(0.365962,-0.003660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.365962,-0.003660,0.002500,0.249988,0,0);}
.m7d_c00178{transform:matrix(0.371391,-0.003714,0.002500,0.249988,0,0);-ms-transform:matrix(0.371391,-0.003714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.371391,-0.003714,0.002500,0.249988,0,0);}
.mdc_c00178{transform:matrix(0.572106,-0.005721,0.002500,0.249988,0,0);-ms-transform:matrix(0.572106,-0.005721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.572106,-0.005721,0.002500,0.249988,0,0);}
.me5_c00178{transform:matrix(0.629384,-0.006294,0.002500,0.249988,0,0);-ms-transform:matrix(0.629384,-0.006294,0.002500,0.249988,0,0);-webkit-transform:matrix(0.629384,-0.006294,0.002500,0.249988,0,0);}
.m79_c00178{transform:matrix(1.826569,-0.018266,0.002500,0.249988,0,0);-ms-transform:matrix(1.826569,-0.018266,0.002500,0.249988,0,0);-webkit-transform:matrix(1.826569,-0.018266,0.002500,0.249988,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:0.000000px;}
.fc0_c00178{color:transparent;}
.fsa_c00178{font-size:54.602730px;}
.fse_c00178{font-size:55.652782px;}
.fsc_c00178{font-size:57.752887px;}
.fs9_c00178{font-size:58.802940px;}
.fs6_c00178{font-size:59.852992px;}
.fs5_c00178{font-size:60.903045px;}
.fs7_c00178{font-size:61.953097px;}
.fs1_c00178{font-size:63.003150px;}
.fs8_c00178{font-size:64.053202px;}
.fs4_c00178{font-size:65.103255px;}
.fs3_c00178{font-size:66.153307px;}
.fsd_c00178{font-size:69.303465px;}
.fsb_c00178{font-size:70.353517px;}
.fs2_c00178{font-size:72.453622px;}
.fs0_c00178{font-size:78.750000px;}
.y0_c00178{bottom:0.000000px;}
.ye8_c00178{bottom:36.149145px;}
.ye9_c00178{bottom:36.548835px;}
.yea_c00178{bottom:36.683715px;}
.yeb_c00178{bottom:37.331520px;}
.yec_c00178{bottom:37.571760px;}
.yed_c00178{bottom:37.771710px;}
.yee_c00178{bottom:38.408550px;}
.yef_c00178{bottom:38.638395px;}
.ye5_c00178{bottom:56.053410px;}
.ye6_c00178{bottom:56.053665px;}
.ye3_c00178{bottom:56.053740px;}
.ydf_c00178{bottom:56.053815px;}
.ye4_c00178{bottom:56.054025px;}
.ye2_c00178{bottom:56.054070px;}
.ye7_c00178{bottom:56.054265px;}
.ye1_c00178{bottom:56.054385px;}
.ye0_c00178{bottom:56.054400px;}
.yde_c00178{bottom:72.214500px;}
.ydd_c00178{bottom:72.214515px;}
.yd8_c00178{bottom:72.214605px;}
.yd7_c00178{bottom:72.214620px;}
.yd6_c00178{bottom:72.214650px;}
.ydc_c00178{bottom:72.214830px;}
.ydb_c00178{bottom:72.214860px;}
.yda_c00178{bottom:72.214875px;}
.yd9_c00178{bottom:72.215190px;}
.yd1_c00178{bottom:90.614235px;}
.yd0_c00178{bottom:90.614250px;}
.yce_c00178{bottom:90.614295px;}
.yd2_c00178{bottom:90.614520px;}
.yd5_c00178{bottom:90.614760px;}
.yd3_c00178{bottom:90.614805px;}
.ycf_c00178{bottom:90.614895px;}
.yd4_c00178{bottom:90.615090px;}
.ycc_c00178{bottom:108.048330px;}
.ycd_c00178{bottom:108.048615px;}
.ycb_c00178{bottom:108.048960px;}
.yc8_c00178{bottom:108.049050px;}
.yc9_c00178{bottom:108.049320px;}
.yca_c00178{bottom:108.049575px;}
.yc7_c00178{bottom:124.441650px;}
.yc5_c00178{bottom:124.441695px;}
.yc4_c00178{bottom:124.441740px;}
.yc2_c00178{bottom:124.441800px;}
.yc6_c00178{bottom:124.441965px;}
.yc3_c00178{bottom:124.442370px;}
.yba_c00178{bottom:138.485910px;}
.ybb_c00178{bottom:139.142625px;}
.ybc_c00178{bottom:140.105250px;}
.ybd_c00178{bottom:140.527335px;}
.ybe_c00178{bottom:141.283410px;}
.ybf_c00178{bottom:141.641985px;}
.yc0_c00178{bottom:142.592385px;}
.yc1_c00178{bottom:142.857255px;}
.yb4_c00178{bottom:157.536030px;}
.yb8_c00178{bottom:157.536210px;}
.yb5_c00178{bottom:157.536585px;}
.yb9_c00178{bottom:157.536765px;}
.yb7_c00178{bottom:157.536825px;}
.yb6_c00178{bottom:157.537170px;}
.yad_c00178{bottom:172.775100px;}
.yae_c00178{bottom:173.017965px;}
.yaf_c00178{bottom:173.461815px;}
.yb0_c00178{bottom:173.817765px;}
.yb1_c00178{bottom:174.578685px;}
.yb2_c00178{bottom:175.460610px;}
.yb3_c00178{bottom:176.492730px;}
.ya7_c00178{bottom:191.945250px;}
.ya8_c00178{bottom:192.261330px;}
.ya9_c00178{bottom:192.639255px;}
.yaa_c00178{bottom:193.742955px;}
.yab_c00178{bottom:193.907700px;}
.yac_c00178{bottom:194.188455px;}
.ya4_c00178{bottom:210.805710px;}
.ya3_c00178{bottom:210.805740px;}
.ya2_c00178{bottom:210.806070px;}
.ya5_c00178{bottom:210.806280px;}
.ya6_c00178{bottom:210.806865px;}
.ya0_c00178{bottom:228.124575px;}
.y9e_c00178{bottom:228.124650px;}
.y9f_c00178{bottom:228.124890px;}
.ya1_c00178{bottom:228.125160px;}
.y9d_c00178{bottom:228.125280px;}
.y9c_c00178{bottom:228.125895px;}
.y9b_c00178{bottom:228.125910px;}
.y99_c00178{bottom:245.950260px;}
.y9a_c00178{bottom:245.950845px;}
.y98_c00178{bottom:245.950920px;}
.y97_c00178{bottom:245.950950px;}
.y96_c00178{bottom:245.950980px;}
.y95_c00178{bottom:245.950995px;}
.y91_c00178{bottom:263.838105px;}
.y8f_c00178{bottom:263.838180px;}
.y92_c00178{bottom:263.838375px;}
.y90_c00178{bottom:263.838450px;}
.y93_c00178{bottom:263.838660px;}
.y94_c00178{bottom:263.838945px;}
.y8e_c00178{bottom:281.048370px;}
.y8d_c00178{bottom:281.048685px;}
.y8c_c00178{bottom:281.049000px;}
.y88_c00178{bottom:281.049390px;}
.y87_c00178{bottom:281.049405px;}
.y86_c00178{bottom:281.049420px;}
.y8b_c00178{bottom:281.049645px;}
.y89_c00178{bottom:281.049975px;}
.y8a_c00178{bottom:281.050260px;}
.y84_c00178{bottom:298.291725px;}
.y83_c00178{bottom:298.291740px;}
.y85_c00178{bottom:298.291995px;}
.y82_c00178{bottom:298.292340px;}
.y81_c00178{bottom:298.292655px;}
.y7e_c00178{bottom:298.292730px;}
.y80_c00178{bottom:298.292985px;}
.y7f_c00178{bottom:298.293285px;}
.y7a_c00178{bottom:316.380315px;}
.y7d_c00178{bottom:316.380510px;}
.y7c_c00178{bottom:316.380525px;}
.y79_c00178{bottom:316.380645px;}
.y7b_c00178{bottom:316.380870px;}
.y70_c00178{bottom:331.275210px;}
.y71_c00178{bottom:331.557135px;}
.y72_c00178{bottom:331.779120px;}
.y73_c00178{bottom:332.048835px;}
.y74_c00178{bottom:332.785950px;}
.y75_c00178{bottom:333.233445px;}
.y76_c00178{bottom:333.317370px;}
.y77_c00178{bottom:333.866400px;}
.y78_c00178{bottom:334.098105px;}
.y68_c00178{bottom:348.287160px;}
.y69_c00178{bottom:348.853470px;}
.y6a_c00178{bottom:349.500690px;}
.y6b_c00178{bottom:349.782555px;}
.y6c_c00178{bottom:350.052300px;}
.y6d_c00178{bottom:350.424345px;}
.y6e_c00178{bottom:350.744580px;}
.y6f_c00178{bottom:351.383640px;}
.y60_c00178{bottom:364.490100px;}
.y61_c00178{bottom:364.908480px;}
.y62_c00178{bottom:365.567880px;}
.y63_c00178{bottom:365.804865px;}
.y64_c00178{bottom:366.517470px;}
.y65_c00178{bottom:367.232220px;}
.y66_c00178{bottom:367.452075px;}
.y67_c00178{bottom:367.632765px;}
.y5c_c00178{bottom:384.046935px;}
.y5f_c00178{bottom:384.047145px;}
.y5d_c00178{bottom:384.047175px;}
.y5b_c00178{bottom:384.047550px;}
.y5e_c00178{bottom:384.047760px;}
.y5a_c00178{bottom:384.048165px;}
.y59_c00178{bottom:384.048495px;}
.y51_c00178{bottom:397.971120px;}
.y52_c00178{bottom:398.337615px;}
.y53_c00178{bottom:398.924865px;}
.y54_c00178{bottom:400.023345px;}
.y55_c00178{bottom:400.331280px;}
.y56_c00178{bottom:400.577445px;}
.y57_c00178{bottom:401.284950px;}
.y58_c00178{bottom:401.655945px;}
.y4b_c00178{bottom:418.797330px;}
.y4a_c00178{bottom:418.797345px;}
.y4c_c00178{bottom:418.797615px;}
.y49_c00178{bottom:418.797645px;}
.y4e_c00178{bottom:418.797855px;}
.y4d_c00178{bottom:418.797870px;}
.y48_c00178{bottom:418.797960px;}
.y4f_c00178{bottom:418.798140px;}
.y50_c00178{bottom:418.798725px;}
.y40_c00178{bottom:433.343130px;}
.y41_c00178{bottom:433.883700px;}
.y42_c00178{bottom:434.159775px;}
.y43_c00178{bottom:434.846235px;}
.y44_c00178{bottom:435.146985px;}
.y45_c00178{bottom:435.759375px;}
.y46_c00178{bottom:436.046910px;}
.y47_c00178{bottom:436.545705px;}
.y38_c00178{bottom:450.894120px;}
.y39_c00178{bottom:451.457850px;}
.y3a_c00178{bottom:451.716225px;}
.y3b_c00178{bottom:452.036895px;}
.y3c_c00178{bottom:452.517495px;}
.y3d_c00178{bottom:452.981085px;}
.y3e_c00178{bottom:453.657765px;}
.y3f_c00178{bottom:454.116105px;}
.y2f_c00178{bottom:467.908785px;}
.y30_c00178{bottom:468.213885px;}
.y31_c00178{bottom:468.708480px;}
.y32_c00178{bottom:468.873150px;}
.y33_c00178{bottom:469.731960px;}
.y34_c00178{bottom:469.890015px;}
.y35_c00178{bottom:470.086485px;}
.y36_c00178{bottom:471.355695px;}
.y37_c00178{bottom:471.616140px;}
.y26_c00178{bottom:485.726865px;}
.y27_c00178{bottom:485.811510px;}
.y28_c00178{bottom:486.186285px;}
.y29_c00178{bottom:486.386610px;}
.y2a_c00178{bottom:486.983415px;}
.y2b_c00178{bottom:487.726020px;}
.y2c_c00178{bottom:487.936575px;}
.y2d_c00178{bottom:488.403735px;}
.y2e_c00178{bottom:488.611620px;}
.y20_c00178{bottom:505.201470px;}
.y23_c00178{bottom:505.201695px;}
.y22_c00178{bottom:505.201725px;}
.y1e_c00178{bottom:505.201815px;}
.y25_c00178{bottom:505.201965px;}
.y21_c00178{bottom:505.202040px;}
.y1f_c00178{bottom:505.202085px;}
.y24_c00178{bottom:505.202280px;}
.y16_c00178{bottom:520.290210px;}
.y17_c00178{bottom:520.605045px;}
.y18_c00178{bottom:521.198205px;}
.y19_c00178{bottom:521.645880px;}
.y1a_c00178{bottom:522.655770px;}
.y1b_c00178{bottom:522.896250px;}
.y1c_c00178{bottom:523.394295px;}
.y1d_c00178{bottom:523.565985px;}
.y11_c00178{bottom:538.110735px;}
.y12_c00178{bottom:538.636755px;}
.y13_c00178{bottom:539.718585px;}
.y14_c00178{bottom:540.193785px;}
.y15_c00178{bottom:541.075635px;}
.y9_c00178{bottom:555.661425px;}
.ya_c00178{bottom:556.106280px;}
.yb_c00178{bottom:556.424340px;}
.yc_c00178{bottom:557.166735px;}
.yd_c00178{bottom:557.589165px;}
.ye_c00178{bottom:557.921310px;}
.yf_c00178{bottom:558.402060px;}
.y10_c00178{bottom:558.734505px;}
.y2_c00178{bottom:574.021500px;}
.y3_c00178{bottom:574.483155px;}
.y4_c00178{bottom:575.331000px;}
.y5_c00178{bottom:575.727450px;}
.y6_c00178{bottom:576.008745px;}
.y7_c00178{bottom:576.445665px;}
.y8_c00178{bottom:576.588870px;}
.y1_c00178{bottom:587.647500px;}
.hc_c00178{height:54.602730px;}
.h10_c00178{height:55.652782px;}
.he_c00178{height:57.752887px;}
.hb_c00178{height:58.802940px;}
.h8_c00178{height:59.852992px;}
.h7_c00178{height:60.903045px;}
.h9_c00178{height:61.953097px;}
.h3_c00178{height:63.003150px;}
.ha_c00178{height:64.053202px;}
.h6_c00178{height:65.103255px;}
.h5_c00178{height:66.153307px;}
.hf_c00178{height:69.303465px;}
.hd_c00178{height:70.353517px;}
.h4_c00178{height:72.453622px;}
.h2_c00178{height:78.750000px;}
.h0_c00178{height:623.100000px;}
.h1_c00178{height:623.250000px;}
.w1_c00178{width:383.250000px;}
.w0_c00178{width:383.400000px;}
.x0_c00178{left:0.000000px;}
.x21_c00178{left:21.359985px;}
.x2_c00178{left:30.091500px;}
.x47_c00178{left:32.564865px;}
.x64_c00178{left:34.137285px;}
.x5b_c00178{left:35.911605px;}
.x68_c00178{left:39.564510px;}
.x74_c00178{left:44.685645px;}
.x6d_c00178{left:47.516325px;}
.x27_c00178{left:53.890350px;}
.x14_c00178{left:56.582760px;}
.x4a_c00178{left:58.182210px;}
.x5d_c00178{left:61.022970px;}
.x65_c00178{left:65.745285px;}
.x22_c00178{left:67.301985px;}
.x41_c00178{left:68.984310px;}
.x9_c00178{left:70.552680px;}
.x55_c00178{left:75.064425px;}
.x3_c00178{left:76.257000px;}
.x10_c00178{left:78.175620px;}
.x5f_c00178{left:79.383045px;}
.x2d_c00178{left:81.407145px;}
.x1b_c00178{left:84.243540px;}
.x71_c00178{left:85.314675px;}
.x23_c00178{left:87.334485px;}
.x28_c00178{left:91.948710px;}
.x3d_c00178{left:98.014335px;}
.xa_c00178{left:99.508395px;}
.x4b_c00178{left:103.001775px;}
.x29_c00178{left:104.665335px;}
.x15_c00178{left:105.997770px;}
.x35_c00178{left:109.084485px;}
.x56_c00178{left:115.026915px;}
.x70_c00178{left:117.178275px;}
.x50_c00178{left:119.885985px;}
.x60_c00178{left:124.474560px;}
.x3e_c00178{left:125.555595px;}
.x42_c00178{left:128.923710px;}
.x36_c00178{left:130.415115px;}
.x2e_c00178{left:134.061120px;}
.x16_c00178{left:143.264520px;}
.x62_c00178{left:144.455730px;}
.x57_c00178{left:145.808490px;}
.x24_c00178{left:147.014985px;}
.x43_c00178{left:150.522000px;}
.x31_c00178{left:156.219225px;}
.x4e_c00178{left:158.767515px;}
.x4_c00178{left:161.041500px;}
.x75_c00178{left:162.923145px;}
.x1_c00178{left:164.160000px;}
.x58_c00178{left:165.248940px;}
.xb_c00178{left:166.997220px;}
.x48_c00178{left:168.603015px;}
.x1c_c00178{left:170.647680px;}
.x11_c00178{left:176.457630px;}
.x2f_c00178{left:177.770685px;}
.x32_c00178{left:181.343730px;}
.x2a_c00178{left:182.949495px;}
.x76_c00178{left:186.947145px;}
.x5e_c00178{left:189.279795px;}
.x49_c00178{left:193.177275px;}
.x6e_c00178{left:194.943570px;}
.x2b_c00178{left:198.096045px;}
.x39_c00178{left:199.173135px;}
.x5_c00178{left:200.686500px;}
.xc_c00178{left:205.339830px;}
.x77_c00178{left:206.942145px;}
.x37_c00178{left:208.448415px;}
.x4c_c00178{left:210.661695px;}
.x1d_c00178{left:212.770395px;}
.x63_c00178{left:214.119690px;}
.x44_c00178{left:215.331855px;}
.x3a_c00178{left:216.738930px;}
.x4d_c00178{left:218.304120px;}
.x12_c00178{left:219.627195px;}
.x25_c00178{left:221.275485px;}
.x17_c00178{left:227.451840px;}
.x6_c00178{left:228.816000px;}
.x66_c00178{left:230.382285px;}
.x33_c00178{left:232.381710px;}
.xd_c00178{left:235.554030px;}
.x51_c00178{left:236.803185px;}
.x26_c00178{left:242.330985px;}
.x59_c00178{left:245.442465px;}
.x18_c00178{left:247.449435px;}
.x5c_c00178{left:248.952405px;}
.x52_c00178{left:250.844595px;}
.x34_c00178{left:256.334730px;}
.x67_c00178{left:258.457785px;}
.x4f_c00178{left:261.643305px;}
.x3f_c00178{left:264.882030px;}
.x5a_c00178{left:265.963020px;}
.x3b_c00178{left:267.237405px;}
.x38_c00178{left:268.931460px;}
.x78_c00178{left:270.626145px;}
.x7_c00178{left:272.508000px;}
.x53_c00178{left:275.145525px;}
.xe_c00178{left:279.278595px;}
.x45_c00178{left:280.356210px;}
.x1e_c00178{left:281.624280px;}
.x6b_c00178{left:284.858820px;}
.x8_c00178{left:286.828500px;}
.x19_c00178{left:289.003110px;}
.x3c_c00178{left:293.685840px;}
.x2c_c00178{left:295.764120px;}
.x1f_c00178{left:297.284340px;}
.x6f_c00178{left:298.627935px;}
.x13_c00178{left:299.861400px;}
.x1a_c00178{left:303.321825px;}
.x61_c00178{left:304.843590px;}
.x6c_c00178{left:306.729510px;}
.xf_c00178{left:309.522795px;}
.x20_c00178{left:315.104625px;}
.x46_c00178{left:316.810350px;}
.x54_c00178{left:320.777085px;}
.x30_c00178{left:323.080230px;}
.x40_c00178{left:324.284970px;}
.x69_c00178{left:325.518930px;}
.x72_c00178{left:328.867035px;}
.x6a_c00178{left:330.762495px;}
.x73_c00178{left:335.077650px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
.fsa_c00178{font-size:48.535760pt;}
.fse_c00178{font-size:49.469140pt;}
.fsc_c00178{font-size:51.335900pt;}
.fs9_c00178{font-size:52.269280pt;}
.fs6_c00178{font-size:53.202660pt;}
.fs5_c00178{font-size:54.136040pt;}
.fs7_c00178{font-size:55.069420pt;}
.fs1_c00178{font-size:56.002800pt;}
.fs8_c00178{font-size:56.936180pt;}
.fs4_c00178{font-size:57.869560pt;}
.fs3_c00178{font-size:58.802940pt;}
.fsd_c00178{font-size:61.603080pt;}
.fsb_c00178{font-size:62.536460pt;}
.fs2_c00178{font-size:64.403220pt;}
.fs0_c00178{font-size:70.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.ye8_c00178{bottom:32.132573pt;}
.ye9_c00178{bottom:32.487853pt;}
.yea_c00178{bottom:32.607747pt;}
.yeb_c00178{bottom:33.183573pt;}
.yec_c00178{bottom:33.397120pt;}
.yed_c00178{bottom:33.574853pt;}
.yee_c00178{bottom:34.140933pt;}
.yef_c00178{bottom:34.345240pt;}
.ye5_c00178{bottom:49.825253pt;}
.ye6_c00178{bottom:49.825480pt;}
.ye3_c00178{bottom:49.825547pt;}
.ydf_c00178{bottom:49.825613pt;}
.ye4_c00178{bottom:49.825800pt;}
.ye2_c00178{bottom:49.825840pt;}
.ye7_c00178{bottom:49.826013pt;}
.ye1_c00178{bottom:49.826120pt;}
.ye0_c00178{bottom:49.826133pt;}
.yde_c00178{bottom:64.190667pt;}
.ydd_c00178{bottom:64.190680pt;}
.yd8_c00178{bottom:64.190760pt;}
.yd7_c00178{bottom:64.190773pt;}
.yd6_c00178{bottom:64.190800pt;}
.ydc_c00178{bottom:64.190960pt;}
.ydb_c00178{bottom:64.190987pt;}
.yda_c00178{bottom:64.191000pt;}
.yd9_c00178{bottom:64.191280pt;}
.yd1_c00178{bottom:80.545987pt;}
.yd0_c00178{bottom:80.546000pt;}
.yce_c00178{bottom:80.546040pt;}
.yd2_c00178{bottom:80.546240pt;}
.yd5_c00178{bottom:80.546453pt;}
.yd3_c00178{bottom:80.546493pt;}
.ycf_c00178{bottom:80.546573pt;}
.yd4_c00178{bottom:80.546747pt;}
.ycc_c00178{bottom:96.042960pt;}
.ycd_c00178{bottom:96.043213pt;}
.ycb_c00178{bottom:96.043520pt;}
.yc8_c00178{bottom:96.043600pt;}
.yc9_c00178{bottom:96.043840pt;}
.yca_c00178{bottom:96.044067pt;}
.yc7_c00178{bottom:110.614800pt;}
.yc5_c00178{bottom:110.614840pt;}
.yc4_c00178{bottom:110.614880pt;}
.yc2_c00178{bottom:110.614933pt;}
.yc6_c00178{bottom:110.615080pt;}
.yc3_c00178{bottom:110.615440pt;}
.yba_c00178{bottom:123.098587pt;}
.ybb_c00178{bottom:123.682333pt;}
.ybc_c00178{bottom:124.538000pt;}
.ybd_c00178{bottom:124.913187pt;}
.ybe_c00178{bottom:125.585253pt;}
.ybf_c00178{bottom:125.903987pt;}
.yc0_c00178{bottom:126.748787pt;}
.yc1_c00178{bottom:126.984227pt;}
.yb4_c00178{bottom:140.032027pt;}
.yb8_c00178{bottom:140.032187pt;}
.yb5_c00178{bottom:140.032520pt;}
.yb9_c00178{bottom:140.032680pt;}
.yb7_c00178{bottom:140.032733pt;}
.yb6_c00178{bottom:140.033040pt;}
.yad_c00178{bottom:153.577867pt;}
.yae_c00178{bottom:153.793747pt;}
.yaf_c00178{bottom:154.188280pt;}
.yb0_c00178{bottom:154.504680pt;}
.yb1_c00178{bottom:155.181053pt;}
.yb2_c00178{bottom:155.964987pt;}
.yb3_c00178{bottom:156.882427pt;}
.ya7_c00178{bottom:170.618000pt;}
.ya8_c00178{bottom:170.898960pt;}
.ya9_c00178{bottom:171.234893pt;}
.yaa_c00178{bottom:172.215960pt;}
.yab_c00178{bottom:172.362400pt;}
.yac_c00178{bottom:172.611960pt;}
.ya4_c00178{bottom:187.382853pt;}
.ya3_c00178{bottom:187.382880pt;}
.ya2_c00178{bottom:187.383173pt;}
.ya5_c00178{bottom:187.383360pt;}
.ya6_c00178{bottom:187.383880pt;}
.ya0_c00178{bottom:202.777400pt;}
.y9e_c00178{bottom:202.777467pt;}
.y9f_c00178{bottom:202.777680pt;}
.ya1_c00178{bottom:202.777920pt;}
.y9d_c00178{bottom:202.778027pt;}
.y9c_c00178{bottom:202.778573pt;}
.y9b_c00178{bottom:202.778587pt;}
.y99_c00178{bottom:218.622453pt;}
.y9a_c00178{bottom:218.622973pt;}
.y98_c00178{bottom:218.623040pt;}
.y97_c00178{bottom:218.623067pt;}
.y96_c00178{bottom:218.623093pt;}
.y95_c00178{bottom:218.623107pt;}
.y91_c00178{bottom:234.522760pt;}
.y8f_c00178{bottom:234.522827pt;}
.y92_c00178{bottom:234.523000pt;}
.y90_c00178{bottom:234.523067pt;}
.y93_c00178{bottom:234.523253pt;}
.y94_c00178{bottom:234.523507pt;}
.y8e_c00178{bottom:249.820773pt;}
.y8d_c00178{bottom:249.821053pt;}
.y8c_c00178{bottom:249.821333pt;}
.y88_c00178{bottom:249.821680pt;}
.y87_c00178{bottom:249.821693pt;}
.y86_c00178{bottom:249.821707pt;}
.y8b_c00178{bottom:249.821907pt;}
.y89_c00178{bottom:249.822200pt;}
.y8a_c00178{bottom:249.822453pt;}
.y84_c00178{bottom:265.148200pt;}
.y83_c00178{bottom:265.148213pt;}
.y85_c00178{bottom:265.148440pt;}
.y82_c00178{bottom:265.148747pt;}
.y81_c00178{bottom:265.149027pt;}
.y7e_c00178{bottom:265.149093pt;}
.y80_c00178{bottom:265.149320pt;}
.y7f_c00178{bottom:265.149587pt;}
.y7a_c00178{bottom:281.226947pt;}
.y7d_c00178{bottom:281.227120pt;}
.y7c_c00178{bottom:281.227133pt;}
.y79_c00178{bottom:281.227240pt;}
.y7b_c00178{bottom:281.227440pt;}
.y70_c00178{bottom:294.466853pt;}
.y71_c00178{bottom:294.717453pt;}
.y72_c00178{bottom:294.914773pt;}
.y73_c00178{bottom:295.154520pt;}
.y74_c00178{bottom:295.809733pt;}
.y75_c00178{bottom:296.207507pt;}
.y76_c00178{bottom:296.282107pt;}
.y77_c00178{bottom:296.770133pt;}
.y78_c00178{bottom:296.976093pt;}
.y68_c00178{bottom:309.588587pt;}
.y69_c00178{bottom:310.091973pt;}
.y6a_c00178{bottom:310.667280pt;}
.y6b_c00178{bottom:310.917827pt;}
.y6c_c00178{bottom:311.157600pt;}
.y6d_c00178{bottom:311.488307pt;}
.y6e_c00178{bottom:311.772960pt;}
.y6f_c00178{bottom:312.341013pt;}
.y60_c00178{bottom:323.991200pt;}
.y61_c00178{bottom:324.363093pt;}
.y62_c00178{bottom:324.949227pt;}
.y63_c00178{bottom:325.159880pt;}
.y64_c00178{bottom:325.793307pt;}
.y65_c00178{bottom:326.428640pt;}
.y66_c00178{bottom:326.624067pt;}
.y67_c00178{bottom:326.784680pt;}
.y5c_c00178{bottom:341.375053pt;}
.y5f_c00178{bottom:341.375240pt;}
.y5d_c00178{bottom:341.375267pt;}
.y5b_c00178{bottom:341.375600pt;}
.y5e_c00178{bottom:341.375787pt;}
.y5a_c00178{bottom:341.376147pt;}
.y59_c00178{bottom:341.376440pt;}
.y51_c00178{bottom:353.752107pt;}
.y52_c00178{bottom:354.077880pt;}
.y53_c00178{bottom:354.599880pt;}
.y54_c00178{bottom:355.576307pt;}
.y55_c00178{bottom:355.850027pt;}
.y56_c00178{bottom:356.068840pt;}
.y57_c00178{bottom:356.697733pt;}
.y58_c00178{bottom:357.027507pt;}
.y4b_c00178{bottom:372.264293pt;}
.y4a_c00178{bottom:372.264307pt;}
.y4c_c00178{bottom:372.264547pt;}
.y49_c00178{bottom:372.264573pt;}
.y4e_c00178{bottom:372.264760pt;}
.y4d_c00178{bottom:372.264773pt;}
.y48_c00178{bottom:372.264853pt;}
.y4f_c00178{bottom:372.265013pt;}
.y50_c00178{bottom:372.265533pt;}
.y40_c00178{bottom:385.193893pt;}
.y41_c00178{bottom:385.674400pt;}
.y42_c00178{bottom:385.919800pt;}
.y43_c00178{bottom:386.529987pt;}
.y44_c00178{bottom:386.797320pt;}
.y45_c00178{bottom:387.341667pt;}
.y46_c00178{bottom:387.597253pt;}
.y47_c00178{bottom:388.040627pt;}
.y38_c00178{bottom:400.794773pt;}
.y39_c00178{bottom:401.295867pt;}
.y3a_c00178{bottom:401.525533pt;}
.y3b_c00178{bottom:401.810573pt;}
.y3c_c00178{bottom:402.237773pt;}
.y3d_c00178{bottom:402.649853pt;}
.y3e_c00178{bottom:403.251347pt;}
.y3f_c00178{bottom:403.658760pt;}
.y2f_c00178{bottom:415.918920pt;}
.y30_c00178{bottom:416.190120pt;}
.y31_c00178{bottom:416.629760pt;}
.y32_c00178{bottom:416.776133pt;}
.y33_c00178{bottom:417.539520pt;}
.y34_c00178{bottom:417.680013pt;}
.y35_c00178{bottom:417.854653pt;}
.y36_c00178{bottom:418.982840pt;}
.y37_c00178{bottom:419.214347pt;}
.y26_c00178{bottom:431.757213pt;}
.y27_c00178{bottom:431.832453pt;}
.y28_c00178{bottom:432.165587pt;}
.y29_c00178{bottom:432.343653pt;}
.y2a_c00178{bottom:432.874147pt;}
.y2b_c00178{bottom:433.534240pt;}
.y2c_c00178{bottom:433.721400pt;}
.y2d_c00178{bottom:434.136653pt;}
.y2e_c00178{bottom:434.321440pt;}
.y20_c00178{bottom:449.067973pt;}
.y23_c00178{bottom:449.068173pt;}
.y22_c00178{bottom:449.068200pt;}
.y1e_c00178{bottom:449.068280pt;}
.y25_c00178{bottom:449.068413pt;}
.y21_c00178{bottom:449.068480pt;}
.y1f_c00178{bottom:449.068520pt;}
.y24_c00178{bottom:449.068693pt;}
.y16_c00178{bottom:462.480187pt;}
.y17_c00178{bottom:462.760040pt;}
.y18_c00178{bottom:463.287293pt;}
.y19_c00178{bottom:463.685227pt;}
.y1a_c00178{bottom:464.582907pt;}
.y1b_c00178{bottom:464.796667pt;}
.y1c_c00178{bottom:465.239373pt;}
.y1d_c00178{bottom:465.391987pt;}
.y11_c00178{bottom:478.320653pt;}
.y12_c00178{bottom:478.788227pt;}
.y13_c00178{bottom:479.749853pt;}
.y14_c00178{bottom:480.172253pt;}
.y15_c00178{bottom:480.956120pt;}
.y9_c00178{bottom:493.921267pt;}
.ya_c00178{bottom:494.316693pt;}
.yb_c00178{bottom:494.599413pt;}
.yc_c00178{bottom:495.259320pt;}
.yd_c00178{bottom:495.634813pt;}
.ye_c00178{bottom:495.930053pt;}
.yf_c00178{bottom:496.357387pt;}
.y10_c00178{bottom:496.652893pt;}
.y2_c00178{bottom:510.241333pt;}
.y3_c00178{bottom:510.651693pt;}
.y4_c00178{bottom:511.405333pt;}
.y5_c00178{bottom:511.757733pt;}
.y6_c00178{bottom:512.007773pt;}
.y7_c00178{bottom:512.396147pt;}
.y8_c00178{bottom:512.523440pt;}
.y1_c00178{bottom:522.353333pt;}
.hc_c00178{height:48.535760pt;}
.h10_c00178{height:49.469140pt;}
.he_c00178{height:51.335900pt;}
.hb_c00178{height:52.269280pt;}
.h8_c00178{height:53.202660pt;}
.h7_c00178{height:54.136040pt;}
.h9_c00178{height:55.069420pt;}
.h3_c00178{height:56.002800pt;}
.ha_c00178{height:56.936180pt;}
.h6_c00178{height:57.869560pt;}
.h5_c00178{height:58.802940pt;}
.hf_c00178{height:61.603080pt;}
.hd_c00178{height:62.536460pt;}
.h4_c00178{height:64.403220pt;}
.h2_c00178{height:70.000000pt;}
.h0_c00178{height:553.866667pt;}
.h1_c00178{height:554.000000pt;}
.w1_c00178{width:340.666667pt;}
.w0_c00178{width:340.800000pt;}
.x0_c00178{left:0.000000pt;}
.x21_c00178{left:18.986653pt;}
.x2_c00178{left:26.748000pt;}
.x47_c00178{left:28.946547pt;}
.x64_c00178{left:30.344253pt;}
.x5b_c00178{left:31.921427pt;}
.x68_c00178{left:35.168453pt;}
.x74_c00178{left:39.720573pt;}
.x6d_c00178{left:42.236733pt;}
.x27_c00178{left:47.902533pt;}
.x14_c00178{left:50.295787pt;}
.x4a_c00178{left:51.717520pt;}
.x5d_c00178{left:54.242640pt;}
.x65_c00178{left:58.440253pt;}
.x22_c00178{left:59.823987pt;}
.x41_c00178{left:61.319387pt;}
.x9_c00178{left:62.713493pt;}
.x55_c00178{left:66.723933pt;}
.x3_c00178{left:67.784000pt;}
.x10_c00178{left:69.489440pt;}
.x5f_c00178{left:70.562707pt;}
.x2d_c00178{left:72.361907pt;}
.x1b_c00178{left:74.883147pt;}
.x71_c00178{left:75.835267pt;}
.x23_c00178{left:77.630653pt;}
.x28_c00178{left:81.732187pt;}
.x3d_c00178{left:87.123853pt;}
.xa_c00178{left:88.451907pt;}
.x4b_c00178{left:91.557133pt;}
.x29_c00178{left:93.035853pt;}
.x15_c00178{left:94.220240pt;}
.x35_c00178{left:96.963987pt;}
.x56_c00178{left:102.246147pt;}
.x70_c00178{left:104.158467pt;}
.x50_c00178{left:106.565320pt;}
.x60_c00178{left:110.644053pt;}
.x3e_c00178{left:111.604973pt;}
.x42_c00178{left:114.598853pt;}
.x36_c00178{left:115.924547pt;}
.x2e_c00178{left:119.165440pt;}
.x16_c00178{left:127.346240pt;}
.x62_c00178{left:128.405093pt;}
.x57_c00178{left:129.607547pt;}
.x24_c00178{left:130.679987pt;}
.x43_c00178{left:133.797333pt;}
.x31_c00178{left:138.861533pt;}
.x4e_c00178{left:141.126680pt;}
.x4_c00178{left:143.148000pt;}
.x75_c00178{left:144.820573pt;}
.x1_c00178{left:145.920000pt;}
.x58_c00178{left:146.887947pt;}
.xb_c00178{left:148.441973pt;}
.x48_c00178{left:149.869347pt;}
.x1c_c00178{left:151.686827pt;}
.x11_c00178{left:156.851227pt;}
.x2f_c00178{left:158.018387pt;}
.x32_c00178{left:161.194427pt;}
.x2a_c00178{left:162.621773pt;}
.x76_c00178{left:166.175240pt;}
.x5e_c00178{left:168.248707pt;}
.x49_c00178{left:171.713133pt;}
.x6e_c00178{left:173.283173pt;}
.x2b_c00178{left:176.085373pt;}
.x39_c00178{left:177.042787pt;}
.x5_c00178{left:178.388000pt;}
.xc_c00178{left:182.524293pt;}
.x77_c00178{left:183.948573pt;}
.x37_c00178{left:185.287480pt;}
.x4c_c00178{left:187.254840pt;}
.x1d_c00178{left:189.129240pt;}
.x63_c00178{left:190.328613pt;}
.x44_c00178{left:191.406093pt;}
.x3a_c00178{left:192.656827pt;}
.x4d_c00178{left:194.048107pt;}
.x12_c00178{left:195.224173pt;}
.x25_c00178{left:196.689320pt;}
.x17_c00178{left:202.179413pt;}
.x6_c00178{left:203.392000pt;}
.x66_c00178{left:204.784253pt;}
.x33_c00178{left:206.561520pt;}
.xd_c00178{left:209.381360pt;}
.x51_c00178{left:210.491720pt;}
.x26_c00178{left:215.405320pt;}
.x59_c00178{left:218.171080pt;}
.x18_c00178{left:219.955053pt;}
.x5c_c00178{left:221.291027pt;}
.x52_c00178{left:222.972973pt;}
.x34_c00178{left:227.853093pt;}
.x67_c00178{left:229.740253pt;}
.x4f_c00178{left:232.571827pt;}
.x3f_c00178{left:235.450693pt;}
.x5a_c00178{left:236.411573pt;}
.x3b_c00178{left:237.544360pt;}
.x38_c00178{left:239.050187pt;}
.x78_c00178{left:240.556573pt;}
.x7_c00178{left:242.229333pt;}
.x53_c00178{left:244.573800pt;}
.xe_c00178{left:248.247640pt;}
.x45_c00178{left:249.205520pt;}
.x1e_c00178{left:250.332693pt;}
.x6b_c00178{left:253.207840pt;}
.x8_c00178{left:254.958667pt;}
.x19_c00178{left:256.891653pt;}
.x3c_c00178{left:261.054080pt;}
.x2c_c00178{left:262.901440pt;}
.x1f_c00178{left:264.252747pt;}
.x6f_c00178{left:265.447053pt;}
.x13_c00178{left:266.543467pt;}
.x1a_c00178{left:269.619400pt;}
.x61_c00178{left:270.972080pt;}
.x6c_c00178{left:272.648453pt;}
.xf_c00178{left:275.131373pt;}
.x20_c00178{left:280.093000pt;}
.x46_c00178{left:281.609200pt;}
.x54_c00178{left:285.135187pt;}
.x30_c00178{left:287.182427pt;}
.x40_c00178{left:288.253307pt;}
.x69_c00178{left:289.350160pt;}
.x72_c00178{left:292.326253pt;}
.x6a_c00178{left:294.011107pt;}
.x73_c00178{left:297.846800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00179 {
    display:none;
  }
  .loading-indicator_c00179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00179 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00179 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00179" -> "#page-container .classname_c00179")
 */
.pf_c00179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00179 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00179 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00179 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00179 {overflow:visible;}
  }
}
.c_c00179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00179 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00179:after { /* webkit #35443 */
  content: '';
}
.t_c00179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00179 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00179 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00179 { /* info for Javascript */
  display:none;
}
.l_c00179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00179:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00179 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00179.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00179{transform:matrix(0.057585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057585,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{transform:matrix(0.130080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130080,0.000000,0.000000,0.250000,0,0);}
.mbd_c00179{transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);}
.mca_c00179{transform:matrix(0.142535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142535,0.000000,0.000000,0.250000,0,0);}
.mc0_c00179{transform:matrix(0.144395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144395,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{transform:matrix(0.145220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145220,0.000000,0.000000,0.250000,0,0);}
.mcb_c00179{transform:matrix(0.148635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148635,0.000000,0.000000,0.250000,0,0);}
.ma3_c00179{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.mda_c00179{transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);}
.mc9_c00179{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.mb7_c00179{transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);}
.md6_c00179{transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);}
.mcd_c00179{transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m8f_c00179{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m96_c00179{transform:matrix(0.153460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153460,0.000000,0.000000,0.250000,0,0);}
.ma4_c00179{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.ma0_c00179{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.md9_c00179{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.mdf_c00179{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.mdc_c00179{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.me3_c00179{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.mb2_c00179{transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);}
.md7_c00179{transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.md8_c00179{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.mb8_c00179{transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);}
.m9e_c00179{transform:matrix(0.162660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162660,0.000000,0.000000,0.250000,0,0);}
.mdb_c00179{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.mbb_c00179{transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);}
.m65_c00179{transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);}
.m6e_c00179{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);}
.mf2_c00179{transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);}
.m1f_c00179{transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);}
.m35_c00179{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.mba_c00179{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.m8e_c00179{transform:matrix(0.170060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170060,0.000000,0.000000,0.250000,0,0);}
.mcc_c00179{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);}
.mb1_c00179{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.me2_c00179{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.mea_c00179{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.m8c_c00179{transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);}
.m70_c00179{transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.md5_c00179{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.mbf_c00179{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.me6_c00179{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00179{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m7b_c00179{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m8a_c00179{transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);}
.mc7_c00179{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m6b_c00179{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00179{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.mbe_c00179{transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);}
.m74_c00179{transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);}
.md2_c00179{transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);}
.m86_c00179{transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.mb5_c00179{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);}
.m27_c00179{transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);}
.m3d_c00179{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.mef_c00179{transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.me0_c00179{transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);}
.mc1_c00179{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.mde_c00179{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.me4_c00179{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.mf3_c00179{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);}
.mb3_c00179{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.m8d_c00179{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m72_c00179{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m90_c00179{transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);}
.mab_c00179{transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m77_c00179{transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.ma5_c00179{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mf0_c00179{transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);}
.mb9_c00179{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m84_c00179{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.mc2_c00179{transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);}
.m25_c00179{transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187730,0.000000,0.000000,0.250000,0,0);}
.med_c00179{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.m83_c00179{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m69_c00179{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.maf_c00179{transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);}
.ma9_c00179{transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.mc8_c00179{transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);}
.mee_c00179{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.maa_c00179{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m6c_c00179{transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);}
.m89_c00179{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);}
.m73_c00179{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.mc3_c00179{transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);}
.m4c_c00179{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mad_c00179{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.ma8_c00179{transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);}
.me7_c00179{transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00179{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.md1_c00179{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m75_c00179{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m50_c00179{transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);}
.mc5_c00179{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.mce_c00179{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.m59_c00179{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00179{transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);}
.m64_c00179{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m38_c00179{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m78_c00179{transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.ma1_c00179{transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00179{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m8b_c00179{transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);}
.me8_c00179{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199630,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.me1_c00179{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m66_c00179{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);}
.m20_c00179{transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);}
.md4_c00179{transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.mf1_c00179{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m58_c00179{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.md0_c00179{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.m91_c00179{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m93_c00179{transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);}
.mc6_c00179{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mac_c00179{transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);}
.m81_c00179{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m40_c00179{transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);}
.m5f_c00179{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m7f_c00179{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.m6f_c00179{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m85_c00179{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00179{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.m5a_c00179{transform:matrix(0.214360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214360,0.000000,0.000000,0.250000,0,0);}
.m51_c00179{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.m95_c00179{transform:matrix(0.215015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215015,0.000000,0.000000,0.250000,0,0);}
.me5_c00179{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m88_c00179{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.meb_c00179{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);}
.md3_c00179{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217885,0.000000,0.000000,0.250000,0,0);}
.m6a_c00179{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00179{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m82_c00179{transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.222565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222565,0.000000,0.000000,0.250000,0,0);}
.mec_c00179{transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);}
.m87_c00179{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m7d_c00179{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m9b_c00179{transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);}
.mc4_c00179{transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231910,0.000000,0.000000,0.250000,0,0);}
.m97_c00179{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);}
.mbc_c00179{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m67_c00179{transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);}
.m79_c00179{transform:matrix(0.257980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257980,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258320,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);}
.me9_c00179{transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);}
.m53_c00179{transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.mb0_c00179{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00179{transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.350990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350990,0.000000,0.000000,0.250000,0,0);}
.m9a_c00179{transform:matrix(0.999475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999475,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:0.000000px;}
.fc0_c00179{color:transparent;}
.fs9_c00179{font-size:57.750000px;}
.fs8_c00179{font-size:58.800000px;}
.fs7_c00179{font-size:59.850000px;}
.fs5_c00179{font-size:60.900000px;}
.fs1_c00179{font-size:61.950000px;}
.fs2_c00179{font-size:63.000000px;}
.fs4_c00179{font-size:64.050000px;}
.fs3_c00179{font-size:65.100000px;}
.fsc_c00179{font-size:66.150000px;}
.fsf_c00179{font-size:67.200000px;}
.fs10_c00179{font-size:68.250000px;}
.fs6_c00179{font-size:69.300000px;}
.fsa_c00179{font-size:71.400000px;}
.fsb_c00179{font-size:72.450000px;}
.fsd_c00179{font-size:74.550000px;}
.fse_c00179{font-size:76.650000px;}
.fs0_c00179{font-size:82.950000px;}
.y0_c00179{bottom:0.000000px;}
.y2d_c00179{bottom:34.255500px;}
.y2c_c00179{bottom:51.384000px;}
.y2b_c00179{bottom:69.576000px;}
.y2a_c00179{bottom:86.352000px;}
.y29_c00179{bottom:103.257000px;}
.y28_c00179{bottom:121.417500px;}
.y27_c00179{bottom:137.550000px;}
.y26_c00179{bottom:155.989500px;}
.y25_c00179{bottom:172.497000px;}
.y24_c00179{bottom:190.926000px;}
.y23_c00179{bottom:208.906500px;}
.y22_c00179{bottom:225.799500px;}
.y21_c00179{bottom:243.270000px;}
.y20_c00179{bottom:260.128500px;}
.y1f_c00179{bottom:277.290000px;}
.y1e_c00179{bottom:294.603000px;}
.y1d_c00179{bottom:311.496000px;}
.y1c_c00179{bottom:328.932000px;}
.y1b_c00179{bottom:346.477500px;}
.y1a_c00179{bottom:364.770000px;}
.y19_c00179{bottom:382.126500px;}
.y18_c00179{bottom:400.392000px;}
.y17_c00179{bottom:416.541000px;}
.y16_c00179{bottom:433.273500px;}
.y15_c00179{bottom:451.132500px;}
.y14_c00179{bottom:467.791500px;}
.y13_c00179{bottom:485.307000px;}
.y12_c00179{bottom:502.506000px;}
.y11_c00179{bottom:518.923500px;}
.ya_c00179{bottom:534.600000px;}
.yb_c00179{bottom:535.272000px;}
.yc_c00179{bottom:535.653000px;}
.yd_c00179{bottom:535.942500px;}
.ye_c00179{bottom:536.142000px;}
.yf_c00179{bottom:536.890500px;}
.y10_c00179{bottom:537.118500px;}
.y9_c00179{bottom:553.791000px;}
.y2_c00179{bottom:569.701500px;}
.y3_c00179{bottom:570.093000px;}
.y4_c00179{bottom:570.757500px;}
.y5_c00179{bottom:570.981000px;}
.y6_c00179{bottom:572.023500px;}
.y7_c00179{bottom:572.454000px;}
.y8_c00179{bottom:572.677500px;}
.y1_c00179{bottom:585.112500px;}
.hb_c00179{height:57.750000px;}
.ha_c00179{height:58.800000px;}
.h9_c00179{height:59.850000px;}
.h7_c00179{height:60.900000px;}
.h3_c00179{height:61.950000px;}
.h4_c00179{height:63.000000px;}
.h6_c00179{height:64.050000px;}
.h5_c00179{height:65.100000px;}
.he_c00179{height:66.150000px;}
.h11_c00179{height:67.200000px;}
.h12_c00179{height:68.250000px;}
.h8_c00179{height:69.300000px;}
.hc_c00179{height:71.400000px;}
.hd_c00179{height:72.450000px;}
.hf_c00179{height:74.550000px;}
.h10_c00179{height:76.650000px;}
.h2_c00179{height:82.950000px;}
.h0_c00179{height:623.100000px;}
.h1_c00179{height:623.250000px;}
.w1_c00179{width:383.250000px;}
.w0_c00179{width:383.400000px;}
.x0_c00179{left:0.000000px;}
.x3_c00179{left:51.172500px;}
.x72_c00179{left:52.380000px;}
.x2a_c00179{left:72.630000px;}
.x6e_c00179{left:73.710000px;}
.x7a_c00179{left:76.410000px;}
.xa_c00179{left:80.190000px;}
.x3f_c00179{left:81.540000px;}
.x20_c00179{left:82.620000px;}
.x5e_c00179{left:85.050000px;}
.x4_c00179{left:86.823000px;}
.x30_c00179{left:88.020000px;}
.x69_c00179{left:89.370000px;}
.x56_c00179{left:91.530000px;}
.x52_c00179{left:93.420000px;}
.x62_c00179{left:94.770000px;}
.x40_c00179{left:97.200000px;}
.x1c_c00179{left:98.820000px;}
.x45_c00179{left:102.060000px;}
.x15_c00179{left:103.680000px;}
.x7b_c00179{left:105.030000px;}
.x57_c00179{left:108.270000px;}
.x3b_c00179{left:109.620000px;}
.x4f_c00179{left:114.750000px;}
.x6a_c00179{left:116.640000px;}
.x10_c00179{left:118.137000px;}
.x36_c00179{left:121.770000px;}
.xb_c00179{left:124.740000px;}
.x53_c00179{left:127.440000px;}
.x1d_c00179{left:129.600000px;}
.x2b_c00179{left:131.760000px;}
.x25_c00179{left:133.110000px;}
.x58_c00179{left:134.190000px;}
.x3c_c00179{left:136.890000px;}
.x4a_c00179{left:142.020000px;}
.xc_c00179{left:143.370000px;}
.x37_c00179{left:146.070000px;}
.x5_c00179{left:147.271500px;}
.x78_c00179{left:149.040000px;}
.x65_c00179{left:150.930000px;}
.x2c_c00179{left:154.170000px;}
.x11_c00179{left:156.162000px;}
.x41_c00179{left:157.950000px;}
.x59_c00179{left:159.570000px;}
.x5f_c00179{left:163.080000px;}
.x66_c00179{left:166.050000px;}
.x6_c00179{left:167.551500px;}
.x21_c00179{left:171.990000px;}
.x16_c00179{left:177.120000px;}
.x63_c00179{left:183.870000px;}
.x1_c00179{left:185.220000px;}
.x2d_c00179{left:187.110000px;}
.x31_c00179{left:188.460000px;}
.x60_c00179{left:190.620000px;}
.x17_c00179{left:197.370000px;}
.x42_c00179{left:198.450000px;}
.x46_c00179{left:200.070000px;}
.x38_c00179{left:201.420000px;}
.x12_c00179{left:205.068000px;}
.x22_c00179{left:206.280000px;}
.x4b_c00179{left:208.980000px;}
.x26_c00179{left:213.030000px;}
.x47_c00179{left:215.460000px;}
.x1e_c00179{left:217.350000px;}
.x32_c00179{left:220.590000px;}
.x5a_c00179{left:223.020000px;}
.xd_c00179{left:224.640000px;}
.x3d_c00179{left:226.260000px;}
.x67_c00179{left:227.610000px;}
.x4c_c00179{left:230.040000px;}
.x6b_c00179{left:231.390000px;}
.x5c_c00179{left:233.820000px;}
.x18_c00179{left:238.410000px;}
.x27_c00179{left:240.570000px;}
.x75_c00179{left:243.540000px;}
.x50_c00179{left:245.160000px;}
.xe_c00179{left:246.780000px;}
.x33_c00179{left:248.130000px;}
.x19_c00179{left:251.640000px;}
.x6c_c00179{left:252.990000px;}
.x4d_c00179{left:254.610000px;}
.x5b_c00179{left:255.960000px;}
.x73_c00179{left:258.120000px;}
.x2e_c00179{left:260.550000px;}
.x7_c00179{left:262.284000px;}
.x48_c00179{left:265.140000px;}
.x23_c00179{left:266.760000px;}
.x39_c00179{left:269.190000px;}
.xf_c00179{left:271.350000px;}
.x68_c00179{left:274.050000px;}
.x1a_c00179{left:275.130000px;}
.x64_c00179{left:276.480000px;}
.x5d_c00179{left:278.370000px;}
.x13_c00179{left:279.850500px;}
.x6f_c00179{left:281.880000px;}
.x2f_c00179{left:283.500000px;}
.x7c_c00179{left:284.580000px;}
.x79_c00179{left:285.930000px;}
.x7d_c00179{left:287.010000px;}
.x28_c00179{left:288.090000px;}
.x77_c00179{left:292.680000px;}
.x3a_c00179{left:293.760000px;}
.x34_c00179{left:295.920000px;}
.x51_c00179{left:297.810000px;}
.x8_c00179{left:301.462500px;}
.x14_c00179{left:302.647500px;}
.x71_c00179{left:306.720000px;}
.x43_c00179{left:307.800000px;}
.x54_c00179{left:309.420000px;}
.x29_c00179{left:311.040000px;}
.x24_c00179{left:312.120000px;}
.x35_c00179{left:314.280000px;}
.x7e_c00179{left:316.170000px;}
.x1f_c00179{left:317.520000px;}
.x9_c00179{left:321.712500px;}
.x3e_c00179{left:324.000000px;}
.x44_c00179{left:325.890000px;}
.x49_c00179{left:327.510000px;}
.x55_c00179{left:328.860000px;}
.x76_c00179{left:330.480000px;}
.x70_c00179{left:332.370000px;}
.x61_c00179{left:333.990000px;}
.x4e_c00179{left:335.610000px;}
.x74_c00179{left:336.960000px;}
.x1b_c00179{left:339.930000px;}
.x2_c00179{left:342.630000px;}
.x6d_c00179{left:345.330000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.fs9_c00179{font-size:51.333333pt;}
.fs8_c00179{font-size:52.266667pt;}
.fs7_c00179{font-size:53.200000pt;}
.fs5_c00179{font-size:54.133333pt;}
.fs1_c00179{font-size:55.066667pt;}
.fs2_c00179{font-size:56.000000pt;}
.fs4_c00179{font-size:56.933333pt;}
.fs3_c00179{font-size:57.866667pt;}
.fsc_c00179{font-size:58.800000pt;}
.fsf_c00179{font-size:59.733333pt;}
.fs10_c00179{font-size:60.666667pt;}
.fs6_c00179{font-size:61.600000pt;}
.fsa_c00179{font-size:63.466667pt;}
.fsb_c00179{font-size:64.400000pt;}
.fsd_c00179{font-size:66.266667pt;}
.fse_c00179{font-size:68.133333pt;}
.fs0_c00179{font-size:73.733333pt;}
.y0_c00179{bottom:0.000000pt;}
.y2d_c00179{bottom:30.449333pt;}
.y2c_c00179{bottom:45.674667pt;}
.y2b_c00179{bottom:61.845333pt;}
.y2a_c00179{bottom:76.757333pt;}
.y29_c00179{bottom:91.784000pt;}
.y28_c00179{bottom:107.926667pt;}
.y27_c00179{bottom:122.266667pt;}
.y26_c00179{bottom:138.657333pt;}
.y25_c00179{bottom:153.330667pt;}
.y24_c00179{bottom:169.712000pt;}
.y23_c00179{bottom:185.694667pt;}
.y22_c00179{bottom:200.710667pt;}
.y21_c00179{bottom:216.240000pt;}
.y20_c00179{bottom:231.225333pt;}
.y1f_c00179{bottom:246.480000pt;}
.y1e_c00179{bottom:261.869333pt;}
.y1d_c00179{bottom:276.885333pt;}
.y1c_c00179{bottom:292.384000pt;}
.y1b_c00179{bottom:307.980000pt;}
.y1a_c00179{bottom:324.240000pt;}
.y19_c00179{bottom:339.668000pt;}
.y18_c00179{bottom:355.904000pt;}
.y17_c00179{bottom:370.258667pt;}
.y16_c00179{bottom:385.132000pt;}
.y15_c00179{bottom:401.006667pt;}
.y14_c00179{bottom:415.814667pt;}
.y13_c00179{bottom:431.384000pt;}
.y12_c00179{bottom:446.672000pt;}
.y11_c00179{bottom:461.265333pt;}
.ya_c00179{bottom:475.200000pt;}
.yb_c00179{bottom:475.797333pt;}
.yc_c00179{bottom:476.136000pt;}
.yd_c00179{bottom:476.393333pt;}
.ye_c00179{bottom:476.570667pt;}
.yf_c00179{bottom:477.236000pt;}
.y10_c00179{bottom:477.438667pt;}
.y9_c00179{bottom:492.258667pt;}
.y2_c00179{bottom:506.401333pt;}
.y3_c00179{bottom:506.749333pt;}
.y4_c00179{bottom:507.340000pt;}
.y5_c00179{bottom:507.538667pt;}
.y6_c00179{bottom:508.465333pt;}
.y7_c00179{bottom:508.848000pt;}
.y8_c00179{bottom:509.046667pt;}
.y1_c00179{bottom:520.100000pt;}
.hb_c00179{height:51.333333pt;}
.ha_c00179{height:52.266667pt;}
.h9_c00179{height:53.200000pt;}
.h7_c00179{height:54.133333pt;}
.h3_c00179{height:55.066667pt;}
.h4_c00179{height:56.000000pt;}
.h6_c00179{height:56.933333pt;}
.h5_c00179{height:57.866667pt;}
.he_c00179{height:58.800000pt;}
.h11_c00179{height:59.733333pt;}
.h12_c00179{height:60.666667pt;}
.h8_c00179{height:61.600000pt;}
.hc_c00179{height:63.466667pt;}
.hd_c00179{height:64.400000pt;}
.hf_c00179{height:66.266667pt;}
.h10_c00179{height:68.133333pt;}
.h2_c00179{height:73.733333pt;}
.h0_c00179{height:553.866667pt;}
.h1_c00179{height:554.000000pt;}
.w1_c00179{width:340.666667pt;}
.w0_c00179{width:340.800000pt;}
.x0_c00179{left:0.000000pt;}
.x3_c00179{left:45.486667pt;}
.x72_c00179{left:46.560000pt;}
.x2a_c00179{left:64.560000pt;}
.x6e_c00179{left:65.520000pt;}
.x7a_c00179{left:67.920000pt;}
.xa_c00179{left:71.280000pt;}
.x3f_c00179{left:72.480000pt;}
.x20_c00179{left:73.440000pt;}
.x5e_c00179{left:75.600000pt;}
.x4_c00179{left:77.176000pt;}
.x30_c00179{left:78.240000pt;}
.x69_c00179{left:79.440000pt;}
.x56_c00179{left:81.360000pt;}
.x52_c00179{left:83.040000pt;}
.x62_c00179{left:84.240000pt;}
.x40_c00179{left:86.400000pt;}
.x1c_c00179{left:87.840000pt;}
.x45_c00179{left:90.720000pt;}
.x15_c00179{left:92.160000pt;}
.x7b_c00179{left:93.360000pt;}
.x57_c00179{left:96.240000pt;}
.x3b_c00179{left:97.440000pt;}
.x4f_c00179{left:102.000000pt;}
.x6a_c00179{left:103.680000pt;}
.x10_c00179{left:105.010667pt;}
.x36_c00179{left:108.240000pt;}
.xb_c00179{left:110.880000pt;}
.x53_c00179{left:113.280000pt;}
.x1d_c00179{left:115.200000pt;}
.x2b_c00179{left:117.120000pt;}
.x25_c00179{left:118.320000pt;}
.x58_c00179{left:119.280000pt;}
.x3c_c00179{left:121.680000pt;}
.x4a_c00179{left:126.240000pt;}
.xc_c00179{left:127.440000pt;}
.x37_c00179{left:129.840000pt;}
.x5_c00179{left:130.908000pt;}
.x78_c00179{left:132.480000pt;}
.x65_c00179{left:134.160000pt;}
.x2c_c00179{left:137.040000pt;}
.x11_c00179{left:138.810667pt;}
.x41_c00179{left:140.400000pt;}
.x59_c00179{left:141.840000pt;}
.x5f_c00179{left:144.960000pt;}
.x66_c00179{left:147.600000pt;}
.x6_c00179{left:148.934667pt;}
.x21_c00179{left:152.880000pt;}
.x16_c00179{left:157.440000pt;}
.x63_c00179{left:163.440000pt;}
.x1_c00179{left:164.640000pt;}
.x2d_c00179{left:166.320000pt;}
.x31_c00179{left:167.520000pt;}
.x60_c00179{left:169.440000pt;}
.x17_c00179{left:175.440000pt;}
.x42_c00179{left:176.400000pt;}
.x46_c00179{left:177.840000pt;}
.x38_c00179{left:179.040000pt;}
.x12_c00179{left:182.282667pt;}
.x22_c00179{left:183.360000pt;}
.x4b_c00179{left:185.760000pt;}
.x26_c00179{left:189.360000pt;}
.x47_c00179{left:191.520000pt;}
.x1e_c00179{left:193.200000pt;}
.x32_c00179{left:196.080000pt;}
.x5a_c00179{left:198.240000pt;}
.xd_c00179{left:199.680000pt;}
.x3d_c00179{left:201.120000pt;}
.x67_c00179{left:202.320000pt;}
.x4c_c00179{left:204.480000pt;}
.x6b_c00179{left:205.680000pt;}
.x5c_c00179{left:207.840000pt;}
.x18_c00179{left:211.920000pt;}
.x27_c00179{left:213.840000pt;}
.x75_c00179{left:216.480000pt;}
.x50_c00179{left:217.920000pt;}
.xe_c00179{left:219.360000pt;}
.x33_c00179{left:220.560000pt;}
.x19_c00179{left:223.680000pt;}
.x6c_c00179{left:224.880000pt;}
.x4d_c00179{left:226.320000pt;}
.x5b_c00179{left:227.520000pt;}
.x73_c00179{left:229.440000pt;}
.x2e_c00179{left:231.600000pt;}
.x7_c00179{left:233.141333pt;}
.x48_c00179{left:235.680000pt;}
.x23_c00179{left:237.120000pt;}
.x39_c00179{left:239.280000pt;}
.xf_c00179{left:241.200000pt;}
.x68_c00179{left:243.600000pt;}
.x1a_c00179{left:244.560000pt;}
.x64_c00179{left:245.760000pt;}
.x5d_c00179{left:247.440000pt;}
.x13_c00179{left:248.756000pt;}
.x6f_c00179{left:250.560000pt;}
.x2f_c00179{left:252.000000pt;}
.x7c_c00179{left:252.960000pt;}
.x79_c00179{left:254.160000pt;}
.x7d_c00179{left:255.120000pt;}
.x28_c00179{left:256.080000pt;}
.x77_c00179{left:260.160000pt;}
.x3a_c00179{left:261.120000pt;}
.x34_c00179{left:263.040000pt;}
.x51_c00179{left:264.720000pt;}
.x8_c00179{left:267.966667pt;}
.x14_c00179{left:269.020000pt;}
.x71_c00179{left:272.640000pt;}
.x43_c00179{left:273.600000pt;}
.x54_c00179{left:275.040000pt;}
.x29_c00179{left:276.480000pt;}
.x24_c00179{left:277.440000pt;}
.x35_c00179{left:279.360000pt;}
.x7e_c00179{left:281.040000pt;}
.x1f_c00179{left:282.240000pt;}
.x9_c00179{left:285.966667pt;}
.x3e_c00179{left:288.000000pt;}
.x44_c00179{left:289.680000pt;}
.x49_c00179{left:291.120000pt;}
.x55_c00179{left:292.320000pt;}
.x76_c00179{left:293.760000pt;}
.x70_c00179{left:295.440000pt;}
.x61_c00179{left:296.880000pt;}
.x4e_c00179{left:298.320000pt;}
.x74_c00179{left:299.520000pt;}
.x1b_c00179{left:302.160000pt;}
.x2_c00179{left:304.560000pt;}
.x6d_c00179{left:306.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00180 {
    display:none;
  }
  .loading-indicator_c00180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00180 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00180 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00180" -> "#page-container .classname_c00180")
 */
.pf_c00180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00180 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00180 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00180 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00180 {overflow:visible;}
  }
}
.c_c00180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00180 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00180:after { /* webkit #35443 */
  content: '';
}
.t_c00180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00180 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00180 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00180 { /* info for Javascript */
  display:none;
}
.l_c00180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00180:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00180 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00180.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00180{transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.144788,-0.004054,0.006997,0.249902,0,0);-ms-transform:matrix(0.144788,-0.004054,0.006997,0.249902,0,0);-webkit-transform:matrix(0.144788,-0.004054,0.006997,0.249902,0,0);}
.md_c00180{transform:matrix(0.148290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.152280,-0.004264,0.006997,0.249902,0,0);-ms-transform:matrix(0.152280,-0.004264,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152280,-0.004264,0.006997,0.249902,0,0);}
.m68_c00180{transform:matrix(0.152310,-0.004265,0.006997,0.249902,0,0);-ms-transform:matrix(0.152310,-0.004265,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152310,-0.004265,0.006997,0.249902,0,0);}
.mc_c00180{transform:matrix(0.152335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152335,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.mcc_c00180{transform:matrix(0.156840,-0.002196,0.003500,0.249976,0,0);-ms-transform:matrix(0.156840,-0.002196,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156840,-0.002196,0.003500,0.249976,0,0);}
.m7a_c00180{transform:matrix(0.157378,-0.004407,0.006997,0.249902,0,0);-ms-transform:matrix(0.157378,-0.004407,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157378,-0.004407,0.006997,0.249902,0,0);}
.m5e_c00180{transform:matrix(0.157728,-0.004416,0.006997,0.249902,0,0);-ms-transform:matrix(0.157728,-0.004416,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157728,-0.004416,0.006997,0.249902,0,0);}
.m52_c00180{transform:matrix(0.157938,-0.004422,0.006997,0.249902,0,0);-ms-transform:matrix(0.157938,-0.004422,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157938,-0.004422,0.006997,0.249902,0,0);}
.m88_c00180{transform:matrix(0.158075,-0.002529,0.003999,0.249968,0,0);-ms-transform:matrix(0.158075,-0.002529,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158075,-0.002529,0.003999,0.249968,0,0);}
.m63_c00180{transform:matrix(0.158873,-0.004448,0.006997,0.249902,0,0);-ms-transform:matrix(0.158873,-0.004448,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158873,-0.004448,0.006997,0.249902,0,0);}
.m35_c00180{transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.159952,-0.004479,0.006997,0.249902,0,0);-ms-transform:matrix(0.159952,-0.004479,0.006997,0.249902,0,0);-webkit-transform:matrix(0.159952,-0.004479,0.006997,0.249902,0,0);}
.m7_c00180{transform:matrix(0.160485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160485,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);}
.mc6_c00180{transform:matrix(0.162874,-0.002280,0.003500,0.249976,0,0);-ms-transform:matrix(0.162874,-0.002280,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162874,-0.002280,0.003500,0.249976,0,0);}
.m17_c00180{transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.mf6_c00180{transform:matrix(0.163820,-0.001802,0.002750,0.249985,0,0);-ms-transform:matrix(0.163820,-0.001802,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163820,-0.001802,0.002750,0.249985,0,0);}
.m38_c00180{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.mc3_c00180{transform:matrix(0.164959,-0.002309,0.003500,0.249976,0,0);-ms-transform:matrix(0.164959,-0.002309,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164959,-0.002309,0.003500,0.249976,0,0);}
.mc8_c00180{transform:matrix(0.165634,-0.002319,0.003500,0.249976,0,0);-ms-transform:matrix(0.165634,-0.002319,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165634,-0.002319,0.003500,0.249976,0,0);}
.m30_c00180{transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166165,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{transform:matrix(0.166179,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166179,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166179,-0.002659,0.003999,0.249968,0,0);}
.m2c_c00180{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.mdd_c00180{transform:matrix(0.167099,-0.002339,0.003500,0.249976,0,0);-ms-transform:matrix(0.167099,-0.002339,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167099,-0.002339,0.003500,0.249976,0,0);}
.mcf_c00180{transform:matrix(0.167109,-0.002340,0.003500,0.249976,0,0);-ms-transform:matrix(0.167109,-0.002340,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167109,-0.002340,0.003500,0.249976,0,0);}
.m13_c00180{transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.168224,-0.004710,0.006997,0.249902,0,0);-ms-transform:matrix(0.168224,-0.004710,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168224,-0.004710,0.006997,0.249902,0,0);}
.m5c_c00180{transform:matrix(0.168824,-0.004727,0.006997,0.249902,0,0);-ms-transform:matrix(0.168824,-0.004727,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168824,-0.004727,0.006997,0.249902,0,0);}
.mab_c00180{transform:matrix(0.168903,-0.002365,0.003500,0.249976,0,0);-ms-transform:matrix(0.168903,-0.002365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168903,-0.002365,0.003500,0.249976,0,0);}
.m5_c00180{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m74_c00180{transform:matrix(0.169499,-0.004746,0.006997,0.249902,0,0);-ms-transform:matrix(0.169499,-0.004746,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169499,-0.004746,0.006997,0.249902,0,0);}
.mbf_c00180{transform:matrix(0.169638,-0.002375,0.003500,0.249976,0,0);-ms-transform:matrix(0.169638,-0.002375,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169638,-0.002375,0.003500,0.249976,0,0);}
.ma_c00180{transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);}
.m62_c00180{transform:matrix(0.171098,-0.004791,0.006997,0.249902,0,0);-ms-transform:matrix(0.171098,-0.004791,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171098,-0.004791,0.006997,0.249902,0,0);}
.m2b_c00180{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00180{transform:matrix(0.171828,-0.002406,0.003500,0.249976,0,0);-ms-transform:matrix(0.171828,-0.002406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171828,-0.002406,0.003500,0.249976,0,0);}
.meb_c00180{transform:matrix(0.172028,-0.002408,0.003500,0.249976,0,0);-ms-transform:matrix(0.172028,-0.002408,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172028,-0.002408,0.003500,0.249976,0,0);}
.m11_c00180{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.173337,-0.003120,0.004499,0.249960,0,0);-ms-transform:matrix(0.173337,-0.003120,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173337,-0.003120,0.004499,0.249960,0,0);}
.ma6_c00180{transform:matrix(0.174322,-0.003138,0.004499,0.249960,0,0);-ms-transform:matrix(0.174322,-0.003138,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174322,-0.003138,0.004499,0.249960,0,0);}
.mc4_c00180{transform:matrix(0.174333,-0.002441,0.003500,0.249976,0,0);-ms-transform:matrix(0.174333,-0.002441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174333,-0.002441,0.003500,0.249976,0,0);}
.mb2_c00180{transform:matrix(0.174573,-0.002444,0.003500,0.249976,0,0);-ms-transform:matrix(0.174573,-0.002444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174573,-0.002444,0.003500,0.249976,0,0);}
.m6_c00180{transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.175291,-0.004908,0.006997,0.249902,0,0);-ms-transform:matrix(0.175291,-0.004908,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175291,-0.004908,0.006997,0.249902,0,0);}
.m8_c00180{transform:matrix(0.175330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175330,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.175546,-0.004915,0.006997,0.249902,0,0);-ms-transform:matrix(0.175546,-0.004915,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175546,-0.004915,0.006997,0.249902,0,0);}
.m82_c00180{transform:matrix(0.175638,-0.002810,0.003999,0.249968,0,0);-ms-transform:matrix(0.175638,-0.002810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175638,-0.002810,0.003999,0.249968,0,0);}
.me0_c00180{transform:matrix(0.175948,-0.002463,0.003500,0.249976,0,0);-ms-transform:matrix(0.175948,-0.002463,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175948,-0.002463,0.003500,0.249976,0,0);}
.m4d_c00180{transform:matrix(0.175951,-0.004927,0.006997,0.249902,0,0);-ms-transform:matrix(0.175951,-0.004927,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175951,-0.004927,0.006997,0.249902,0,0);}
.m1a_c00180{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(0.176571,-0.004944,0.006997,0.249902,0,0);-ms-transform:matrix(0.176571,-0.004944,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176571,-0.004944,0.006997,0.249902,0,0);}
.m3a_c00180{transform:matrix(0.176876,-0.004953,0.006997,0.249902,0,0);-ms-transform:matrix(0.176876,-0.004953,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176876,-0.004953,0.006997,0.249902,0,0);}
.mac_c00180{transform:matrix(0.177033,-0.002478,0.003500,0.249976,0,0);-ms-transform:matrix(0.177033,-0.002478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177033,-0.002478,0.003500,0.249976,0,0);}
.mf1_c00180{transform:matrix(0.177163,-0.002480,0.003500,0.249976,0,0);-ms-transform:matrix(0.177163,-0.002480,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177163,-0.002480,0.003500,0.249976,0,0);}
.m94_c00180{transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);-ms-transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);}
.m4_c00180{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.178120,-0.004987,0.006997,0.249902,0,0);-ms-transform:matrix(0.178120,-0.004987,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178120,-0.004987,0.006997,0.249902,0,0);}
.maf_c00180{transform:matrix(0.178553,-0.002500,0.003500,0.249976,0,0);-ms-transform:matrix(0.178553,-0.002500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178553,-0.002500,0.003500,0.249976,0,0);}
.m6f_c00180{transform:matrix(0.178815,-0.005007,0.006997,0.249902,0,0);-ms-transform:matrix(0.178815,-0.005007,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178815,-0.005007,0.006997,0.249902,0,0);}
.m4c_c00180{transform:matrix(0.179435,-0.005024,0.006997,0.249902,0,0);-ms-transform:matrix(0.179435,-0.005024,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179435,-0.005024,0.006997,0.249902,0,0);}
.m2d_c00180{transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00180{transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-ms-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);}
.m28_c00180{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.md3_c00180{transform:matrix(0.180697,-0.002530,0.003500,0.249976,0,0);-ms-transform:matrix(0.180697,-0.002530,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180697,-0.002530,0.003500,0.249976,0,0);}
.m58_c00180{transform:matrix(0.181209,-0.005074,0.006997,0.249902,0,0);-ms-transform:matrix(0.181209,-0.005074,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181209,-0.005074,0.006997,0.249902,0,0);}
.m8a_c00180{transform:matrix(0.181746,-0.003271,0.004499,0.249960,0,0);-ms-transform:matrix(0.181746,-0.003271,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181746,-0.003271,0.004499,0.249960,0,0);}
.m8d_c00180{transform:matrix(0.181786,-0.003272,0.004499,0.249960,0,0);-ms-transform:matrix(0.181786,-0.003272,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181786,-0.003272,0.004499,0.249960,0,0);}
.m33_c00180{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.182424,-0.005108,0.006997,0.249902,0,0);-ms-transform:matrix(0.182424,-0.005108,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182424,-0.005108,0.006997,0.249902,0,0);}
.mc7_c00180{transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-ms-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);}
.m76_c00180{transform:matrix(0.182603,-0.005113,0.006997,0.249902,0,0);-ms-transform:matrix(0.182603,-0.005113,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182603,-0.005113,0.006997,0.249902,0,0);}
.mb9_c00180{transform:matrix(0.182742,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182742,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182742,-0.002558,0.003500,0.249976,0,0);}
.m86_c00180{transform:matrix(0.182852,-0.002926,0.003999,0.249968,0,0);-ms-transform:matrix(0.182852,-0.002926,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182852,-0.002926,0.003999,0.249968,0,0);}
.md4_c00180{transform:matrix(0.183812,-0.002573,0.003500,0.249976,0,0);-ms-transform:matrix(0.183812,-0.002573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183812,-0.002573,0.003500,0.249976,0,0);}
.m8b_c00180{transform:matrix(0.183970,-0.003311,0.004499,0.249960,0,0);-ms-transform:matrix(0.183970,-0.003311,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183970,-0.003311,0.004499,0.249960,0,0);}
.ma1_c00180{transform:matrix(0.184325,-0.003318,0.004499,0.249960,0,0);-ms-transform:matrix(0.184325,-0.003318,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184325,-0.003318,0.004499,0.249960,0,0);}
.m9_c00180{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.184873,-0.005176,0.006997,0.249902,0,0);-ms-transform:matrix(0.184873,-0.005176,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184873,-0.005176,0.006997,0.249902,0,0);}
.ma5_c00180{transform:matrix(0.185060,-0.003331,0.004499,0.249960,0,0);-ms-transform:matrix(0.185060,-0.003331,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185060,-0.003331,0.004499,0.249960,0,0);}
.m69_c00180{transform:matrix(0.185432,-0.005192,0.006997,0.249902,0,0);-ms-transform:matrix(0.185432,-0.005192,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185432,-0.005192,0.006997,0.249902,0,0);}
.m67_c00180{transform:matrix(0.187072,-0.005238,0.006997,0.249902,0,0);-ms-transform:matrix(0.187072,-0.005238,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187072,-0.005238,0.006997,0.249902,0,0);}
.m7f_c00180{transform:matrix(0.187328,-0.003747,0.004999,0.249950,0,0);-ms-transform:matrix(0.187328,-0.003747,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187328,-0.003747,0.004999,0.249950,0,0);}
.m22_c00180{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.189731,-0.005312,0.006997,0.249902,0,0);-ms-transform:matrix(0.189731,-0.005312,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189731,-0.005312,0.006997,0.249902,0,0);}
.m59_c00180{transform:matrix(0.190965,-0.005347,0.006997,0.249902,0,0);-ms-transform:matrix(0.190965,-0.005347,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190965,-0.005347,0.006997,0.249902,0,0);}
.ma7_c00180{transform:matrix(0.190984,-0.003438,0.004499,0.249960,0,0);-ms-transform:matrix(0.190984,-0.003438,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190984,-0.003438,0.004499,0.249960,0,0);}
.m18_c00180{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m78_c00180{transform:matrix(0.191885,-0.005373,0.006997,0.249902,0,0);-ms-transform:matrix(0.191885,-0.005373,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191885,-0.005373,0.006997,0.249902,0,0);}
.mf0_c00180{transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);-ms-transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);}
.m83_c00180{transform:matrix(0.192140,-0.003074,0.003999,0.249968,0,0);-ms-transform:matrix(0.192140,-0.003074,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192140,-0.003074,0.003999,0.249968,0,0);}
.mc5_c00180{transform:matrix(0.192221,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192221,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192221,-0.002691,0.003500,0.249976,0,0);}
.mad_c00180{transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);-ms-transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);}
.me7_c00180{transform:matrix(0.192551,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192551,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192551,-0.002696,0.003500,0.249976,0,0);}
.m46_c00180{transform:matrix(0.193234,-0.005411,0.006997,0.249902,0,0);-ms-transform:matrix(0.193234,-0.005411,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193234,-0.005411,0.006997,0.249902,0,0);}
.mb5_c00180{transform:matrix(0.193796,-0.002713,0.003500,0.249976,0,0);-ms-transform:matrix(0.193796,-0.002713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193796,-0.002713,0.003500,0.249976,0,0);}
.mc1_c00180{transform:matrix(0.194171,-0.002718,0.003500,0.249976,0,0);-ms-transform:matrix(0.194171,-0.002718,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194171,-0.002718,0.003500,0.249976,0,0);}
.m1e_c00180{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m6b_c00180{transform:matrix(0.194909,-0.005457,0.006997,0.249902,0,0);-ms-transform:matrix(0.194909,-0.005457,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194909,-0.005457,0.006997,0.249902,0,0);}
.m42_c00180{transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);-ms-transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);}
.mae_c00180{transform:matrix(0.196291,-0.002748,0.003500,0.249976,0,0);-ms-transform:matrix(0.196291,-0.002748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196291,-0.002748,0.003500,0.249976,0,0);}
.m98_c00180{transform:matrix(0.196668,-0.003540,0.004499,0.249960,0,0);-ms-transform:matrix(0.196668,-0.003540,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196668,-0.003540,0.004499,0.249960,0,0);}
.m57_c00180{transform:matrix(0.196978,-0.005515,0.006997,0.249902,0,0);-ms-transform:matrix(0.196978,-0.005515,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196978,-0.005515,0.006997,0.249902,0,0);}
.mea_c00180{transform:matrix(0.197126,-0.002760,0.003500,0.249976,0,0);-ms-transform:matrix(0.197126,-0.002760,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197126,-0.002760,0.003500,0.249976,0,0);}
.m53_c00180{transform:matrix(0.198087,-0.005546,0.006997,0.249902,0,0);-ms-transform:matrix(0.198087,-0.005546,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198087,-0.005546,0.006997,0.249902,0,0);}
.m90_c00180{transform:matrix(0.198283,-0.003569,0.004499,0.249960,0,0);-ms-transform:matrix(0.198283,-0.003569,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198283,-0.003569,0.004499,0.249960,0,0);}
.m9b_c00180{transform:matrix(0.198613,-0.003575,0.004499,0.249960,0,0);-ms-transform:matrix(0.198613,-0.003575,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198613,-0.003575,0.004499,0.249960,0,0);}
.mdc_c00180{transform:matrix(0.198856,-0.002784,0.003500,0.249976,0,0);-ms-transform:matrix(0.198856,-0.002784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198856,-0.002784,0.003500,0.249976,0,0);}
.m12_c00180{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.md1_c00180{transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);-ms-transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);}
.m79_c00180{transform:matrix(0.199457,-0.005585,0.006997,0.249902,0,0);-ms-transform:matrix(0.199457,-0.005585,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199457,-0.005585,0.006997,0.249902,0,0);}
.m3b_c00180{transform:matrix(0.199527,-0.005587,0.006997,0.249902,0,0);-ms-transform:matrix(0.199527,-0.005587,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199527,-0.005587,0.006997,0.249902,0,0);}
.me1_c00180{transform:matrix(0.199990,-0.002800,0.003500,0.249976,0,0);-ms-transform:matrix(0.199990,-0.002800,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199990,-0.002800,0.003500,0.249976,0,0);}
.m71_c00180{transform:matrix(0.200232,-0.005606,0.006997,0.249902,0,0);-ms-transform:matrix(0.200232,-0.005606,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200232,-0.005606,0.006997,0.249902,0,0);}
.mb0_c00180{transform:matrix(0.200405,-0.002806,0.003500,0.249976,0,0);-ms-transform:matrix(0.200405,-0.002806,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200405,-0.002806,0.003500,0.249976,0,0);}
.md9_c00180{transform:matrix(0.200450,-0.002806,0.003500,0.249976,0,0);-ms-transform:matrix(0.200450,-0.002806,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200450,-0.002806,0.003500,0.249976,0,0);}
.m84_c00180{transform:matrix(0.200519,-0.003208,0.003999,0.249968,0,0);-ms-transform:matrix(0.200519,-0.003208,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200519,-0.003208,0.003999,0.249968,0,0);}
.m5f_c00180{transform:matrix(0.200756,-0.005621,0.006997,0.249902,0,0);-ms-transform:matrix(0.200756,-0.005621,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200756,-0.005621,0.006997,0.249902,0,0);}
.m32_c00180{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.201057,-0.003619,0.004499,0.249960,0,0);-ms-transform:matrix(0.201057,-0.003619,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201057,-0.003619,0.004499,0.249960,0,0);}
.m10_c00180{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.m95_c00180{transform:matrix(0.201872,-0.003634,0.004499,0.249960,0,0);-ms-transform:matrix(0.201872,-0.003634,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201872,-0.003634,0.004499,0.249960,0,0);}
.mef_c00180{transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);}
.m1f_c00180{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m8f_c00180{transform:matrix(0.202577,-0.003646,0.004499,0.249960,0,0);-ms-transform:matrix(0.202577,-0.003646,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202577,-0.003646,0.004499,0.249960,0,0);}
.m91_c00180{transform:matrix(0.202607,-0.003647,0.004499,0.249960,0,0);-ms-transform:matrix(0.202607,-0.003647,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202607,-0.003647,0.004499,0.249960,0,0);}
.m9c_c00180{transform:matrix(0.202722,-0.003649,0.004499,0.249960,0,0);-ms-transform:matrix(0.202722,-0.003649,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202722,-0.003649,0.004499,0.249960,0,0);}
.m6c_c00180{transform:matrix(0.202736,-0.005677,0.006997,0.249902,0,0);-ms-transform:matrix(0.202736,-0.005677,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202736,-0.005677,0.006997,0.249902,0,0);}
.m75_c00180{transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);-ms-transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);}
.m96_c00180{transform:matrix(0.203077,-0.003655,0.004499,0.249960,0,0);-ms-transform:matrix(0.203077,-0.003655,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203077,-0.003655,0.004499,0.249960,0,0);}
.mde_c00180{transform:matrix(0.203080,-0.002843,0.003500,0.249976,0,0);-ms-transform:matrix(0.203080,-0.002843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203080,-0.002843,0.003500,0.249976,0,0);}
.m21_c00180{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.mfc_c00180{transform:matrix(0.204333,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204333,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204333,-0.002248,0.002750,0.249985,0,0);}
.m51_c00180{transform:matrix(0.204335,-0.005721,0.006997,0.249902,0,0);-ms-transform:matrix(0.204335,-0.005721,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204335,-0.005721,0.006997,0.249902,0,0);}
.m77_c00180{transform:matrix(0.204510,-0.005726,0.006997,0.249902,0,0);-ms-transform:matrix(0.204510,-0.005726,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204510,-0.005726,0.006997,0.249902,0,0);}
.mbe_c00180{transform:matrix(0.204535,-0.002863,0.003500,0.249976,0,0);-ms-transform:matrix(0.204535,-0.002863,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204535,-0.002863,0.003500,0.249976,0,0);}
.m47_c00180{transform:matrix(0.205100,-0.005743,0.006997,0.249902,0,0);-ms-transform:matrix(0.205100,-0.005743,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205100,-0.005743,0.006997,0.249902,0,0);}
.mbd_c00180{transform:matrix(0.205585,-0.002878,0.003500,0.249976,0,0);-ms-transform:matrix(0.205585,-0.002878,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205585,-0.002878,0.003500,0.249976,0,0);}
.m5a_c00180{transform:matrix(0.205614,-0.005757,0.006997,0.249902,0,0);-ms-transform:matrix(0.205614,-0.005757,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205614,-0.005757,0.006997,0.249902,0,0);}
.mec_c00180{transform:matrix(0.205790,-0.002881,0.003500,0.249976,0,0);-ms-transform:matrix(0.205790,-0.002881,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205790,-0.002881,0.003500,0.249976,0,0);}
.m1b_c00180{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.205854,-0.004117,0.004999,0.249950,0,0);-ms-transform:matrix(0.205854,-0.004117,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205854,-0.004117,0.004999,0.249950,0,0);}
.maa_c00180{transform:matrix(0.206245,-0.002887,0.003500,0.249976,0,0);-ms-transform:matrix(0.206245,-0.002887,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206245,-0.002887,0.003500,0.249976,0,0);}
.m48_c00180{transform:matrix(0.206344,-0.005778,0.006997,0.249902,0,0);-ms-transform:matrix(0.206344,-0.005778,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206344,-0.005778,0.006997,0.249902,0,0);}
.mf8_c00180{transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);-ms-transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);}
.mb6_c00180{transform:matrix(0.206640,-0.002893,0.003500,0.249976,0,0);-ms-transform:matrix(0.206640,-0.002893,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206640,-0.002893,0.003500,0.249976,0,0);}
.mb3_c00180{transform:matrix(0.206680,-0.002894,0.003500,0.249976,0,0);-ms-transform:matrix(0.206680,-0.002894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206680,-0.002894,0.003500,0.249976,0,0);}
.m93_c00180{transform:matrix(0.206792,-0.003722,0.004499,0.249960,0,0);-ms-transform:matrix(0.206792,-0.003722,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206792,-0.003722,0.004499,0.249960,0,0);}
.m73_c00180{transform:matrix(0.206864,-0.005792,0.006997,0.249902,0,0);-ms-transform:matrix(0.206864,-0.005792,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206864,-0.005792,0.006997,0.249902,0,0);}
.m2f_c00180{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00180{transform:matrix(0.207082,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207082,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207082,-0.002278,0.002750,0.249985,0,0);}
.m4f_c00180{transform:matrix(0.207089,-0.005798,0.006997,0.249902,0,0);-ms-transform:matrix(0.207089,-0.005798,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207089,-0.005798,0.006997,0.249902,0,0);}
.mf3_c00180{transform:matrix(0.207197,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207197,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207197,-0.002279,0.002750,0.249985,0,0);}
.m44_c00180{transform:matrix(0.207554,-0.005812,0.006997,0.249902,0,0);-ms-transform:matrix(0.207554,-0.005812,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207554,-0.005812,0.006997,0.249902,0,0);}
.m29_c00180{transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.207843,-0.003325,0.003999,0.249968,0,0);-ms-transform:matrix(0.207843,-0.003325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207843,-0.003325,0.003999,0.249968,0,0);}
.mfa_c00180{transform:matrix(0.207932,-0.002287,0.002750,0.249985,0,0);-ms-transform:matrix(0.207932,-0.002287,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207932,-0.002287,0.002750,0.249985,0,0);}
.m1d_c00180{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mdf_c00180{transform:matrix(0.208405,-0.002918,0.003500,0.249976,0,0);-ms-transform:matrix(0.208405,-0.002918,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208405,-0.002918,0.003500,0.249976,0,0);}
.m4e_c00180{transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);-ms-transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);}
.m92_c00180{transform:matrix(0.208671,-0.003756,0.004499,0.249960,0,0);-ms-transform:matrix(0.208671,-0.003756,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208671,-0.003756,0.004499,0.249960,0,0);}
.m8e_c00180{transform:matrix(0.208771,-0.003758,0.004499,0.249960,0,0);-ms-transform:matrix(0.208771,-0.003758,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208771,-0.003758,0.004499,0.249960,0,0);}
.mfd_c00180{transform:matrix(0.208787,-0.002297,0.002750,0.249985,0,0);-ms-transform:matrix(0.208787,-0.002297,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208787,-0.002297,0.002750,0.249985,0,0);}
.mc0_c00180{transform:matrix(0.208990,-0.002926,0.003500,0.249976,0,0);-ms-transform:matrix(0.208990,-0.002926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208990,-0.002926,0.003500,0.249976,0,0);}
.m97_c00180{transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);-ms-transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);}
.me8_c00180{transform:matrix(0.209459,-0.002932,0.003500,0.249976,0,0);-ms-transform:matrix(0.209459,-0.002932,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209459,-0.002932,0.003500,0.249976,0,0);}
.m9a_c00180{transform:matrix(0.210691,-0.003792,0.004499,0.249960,0,0);-ms-transform:matrix(0.210691,-0.003792,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210691,-0.003792,0.004499,0.249960,0,0);}
.mca_c00180{transform:matrix(0.210784,-0.002951,0.003500,0.249976,0,0);-ms-transform:matrix(0.210784,-0.002951,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210784,-0.002951,0.003500,0.249976,0,0);}
.m27_c00180{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.ma4_c00180{transform:matrix(0.211121,-0.003800,0.004499,0.249960,0,0);-ms-transform:matrix(0.211121,-0.003800,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211121,-0.003800,0.004499,0.249960,0,0);}
.mb8_c00180{transform:matrix(0.211414,-0.002960,0.003500,0.249976,0,0);-ms-transform:matrix(0.211414,-0.002960,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211414,-0.002960,0.003500,0.249976,0,0);}
.m9e_c00180{transform:matrix(0.211576,-0.003808,0.004499,0.249960,0,0);-ms-transform:matrix(0.211576,-0.003808,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211576,-0.003808,0.004499,0.249960,0,0);}
.m6d_c00180{transform:matrix(0.211617,-0.005925,0.006997,0.249902,0,0);-ms-transform:matrix(0.211617,-0.005925,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211617,-0.005925,0.006997,0.249902,0,0);}
.mc9_c00180{transform:matrix(0.211809,-0.002965,0.003500,0.249976,0,0);-ms-transform:matrix(0.211809,-0.002965,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211809,-0.002965,0.003500,0.249976,0,0);}
.mda_c00180{transform:matrix(0.211964,-0.002967,0.003500,0.249976,0,0);-ms-transform:matrix(0.211964,-0.002967,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211964,-0.002967,0.003500,0.249976,0,0);}
.md7_c00180{transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);-ms-transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);}
.md2_c00180{transform:matrix(0.212669,-0.002977,0.003500,0.249976,0,0);-ms-transform:matrix(0.212669,-0.002977,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212669,-0.002977,0.003500,0.249976,0,0);}
.mba_c00180{transform:matrix(0.212754,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212754,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212754,-0.002979,0.003500,0.249976,0,0);}
.m3e_c00180{transform:matrix(0.213056,-0.005966,0.006997,0.249902,0,0);-ms-transform:matrix(0.213056,-0.005966,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213056,-0.005966,0.006997,0.249902,0,0);}
.mf9_c00180{transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);-ms-transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);}
.m4a_c00180{transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);-ms-transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);}
.mb7_c00180{transform:matrix(0.213514,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213514,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213514,-0.002989,0.003500,0.249976,0,0);}
.m6e_c00180{transform:matrix(0.214781,-0.006014,0.006997,0.249902,0,0);-ms-transform:matrix(0.214781,-0.006014,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214781,-0.006014,0.006997,0.249902,0,0);}
.m9f_c00180{transform:matrix(0.215300,-0.003875,0.004499,0.249960,0,0);-ms-transform:matrix(0.215300,-0.003875,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215300,-0.003875,0.004499,0.249960,0,0);}
.m70_c00180{transform:matrix(0.215351,-0.006030,0.006997,0.249902,0,0);-ms-transform:matrix(0.215351,-0.006030,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215351,-0.006030,0.006997,0.249902,0,0);}
.m25_c00180{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.216050,-0.003889,0.004499,0.249960,0,0);-ms-transform:matrix(0.216050,-0.003889,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216050,-0.003889,0.004499,0.249960,0,0);}
.m7c_c00180{transform:matrix(0.216117,-0.004322,0.004999,0.249950,0,0);-ms-transform:matrix(0.216117,-0.004322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216117,-0.004322,0.004999,0.249950,0,0);}
.mc2_c00180{transform:matrix(0.216234,-0.003027,0.003500,0.249976,0,0);-ms-transform:matrix(0.216234,-0.003027,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216234,-0.003027,0.003500,0.249976,0,0);}
.m8c_c00180{transform:matrix(0.216600,-0.003899,0.004499,0.249960,0,0);-ms-transform:matrix(0.216600,-0.003899,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216600,-0.003899,0.004499,0.249960,0,0);}
.md5_c00180{transform:matrix(0.216829,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216829,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216829,-0.003036,0.003500,0.249976,0,0);}
.mb1_c00180{transform:matrix(0.217909,-0.003051,0.003500,0.249976,0,0);-ms-transform:matrix(0.217909,-0.003051,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217909,-0.003051,0.003500,0.249976,0,0);}
.mbc_c00180{transform:matrix(0.217934,-0.003051,0.003500,0.249976,0,0);-ms-transform:matrix(0.217934,-0.003051,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217934,-0.003051,0.003500,0.249976,0,0);}
.m55_c00180{transform:matrix(0.217960,-0.006103,0.006997,0.249902,0,0);-ms-transform:matrix(0.217960,-0.006103,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217960,-0.006103,0.006997,0.249902,0,0);}
.med_c00180{transform:matrix(0.218204,-0.003055,0.003500,0.249976,0,0);-ms-transform:matrix(0.218204,-0.003055,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218204,-0.003055,0.003500,0.249976,0,0);}
.m26_c00180{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.218474,-0.006117,0.006997,0.249902,0,0);-ms-transform:matrix(0.218474,-0.006117,0.006997,0.249902,0,0);-webkit-transform:matrix(0.218474,-0.006117,0.006997,0.249902,0,0);}
.mf5_c00180{transform:matrix(0.219222,-0.002411,0.002750,0.249985,0,0);-ms-transform:matrix(0.219222,-0.002411,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219222,-0.002411,0.002750,0.249985,0,0);}
.mb4_c00180{transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);}
.mf4_c00180{transform:matrix(0.220022,-0.002420,0.002750,0.249985,0,0);-ms-transform:matrix(0.220022,-0.002420,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220022,-0.002420,0.002750,0.249985,0,0);}
.m5b_c00180{transform:matrix(0.220534,-0.006175,0.006997,0.249902,0,0);-ms-transform:matrix(0.220534,-0.006175,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220534,-0.006175,0.006997,0.249902,0,0);}
.m9d_c00180{transform:matrix(0.220649,-0.003972,0.004499,0.249960,0,0);-ms-transform:matrix(0.220649,-0.003972,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220649,-0.003972,0.004499,0.249960,0,0);}
.mcb_c00180{transform:matrix(0.220823,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220823,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220823,-0.003092,0.003500,0.249976,0,0);}
.ma3_c00180{transform:matrix(0.220829,-0.003975,0.004499,0.249960,0,0);-ms-transform:matrix(0.220829,-0.003975,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220829,-0.003975,0.004499,0.249960,0,0);}
.mbb_c00180{transform:matrix(0.221818,-0.003105,0.003500,0.249976,0,0);-ms-transform:matrix(0.221818,-0.003105,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221818,-0.003105,0.003500,0.249976,0,0);}
.mf2_c00180{transform:matrix(0.224521,-0.002470,0.002750,0.249985,0,0);-ms-transform:matrix(0.224521,-0.002470,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224521,-0.002470,0.002750,0.249985,0,0);}
.m40_c00180{transform:matrix(0.225697,-0.006320,0.006997,0.249902,0,0);-ms-transform:matrix(0.225697,-0.006320,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225697,-0.006320,0.006997,0.249902,0,0);}
.m7e_c00180{transform:matrix(0.226390,-0.004528,0.004999,0.249950,0,0);-ms-transform:matrix(0.226390,-0.004528,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226390,-0.004528,0.004999,0.249950,0,0);}
.mce_c00180{transform:matrix(0.227698,-0.003188,0.003500,0.249976,0,0);-ms-transform:matrix(0.227698,-0.003188,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227698,-0.003188,0.003500,0.249976,0,0);}
.m24_c00180{transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);}
.md0_c00180{transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);-ms-transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);}
.m2a_c00180{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.me3_c00180{transform:matrix(0.228858,-0.003204,0.003500,0.249976,0,0);-ms-transform:matrix(0.228858,-0.003204,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228858,-0.003204,0.003500,0.249976,0,0);}
.mcd_c00180{transform:matrix(0.232087,-0.003249,0.003500,0.249976,0,0);-ms-transform:matrix(0.232087,-0.003249,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232087,-0.003249,0.003500,0.249976,0,0);}
.m6a_c00180{transform:matrix(0.232254,-0.006503,0.006997,0.249902,0,0);-ms-transform:matrix(0.232254,-0.006503,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232254,-0.006503,0.006997,0.249902,0,0);}
.m3d_c00180{transform:matrix(0.235123,-0.006583,0.006997,0.249902,0,0);-ms-transform:matrix(0.235123,-0.006583,0.006997,0.249902,0,0);-webkit-transform:matrix(0.235123,-0.006583,0.006997,0.249902,0,0);}
.m49_c00180{transform:matrix(0.235888,-0.006605,0.006997,0.249902,0,0);-ms-transform:matrix(0.235888,-0.006605,0.006997,0.249902,0,0);-webkit-transform:matrix(0.235888,-0.006605,0.006997,0.249902,0,0);}
.m80_c00180{transform:matrix(0.236193,-0.004724,0.004999,0.249950,0,0);-ms-transform:matrix(0.236193,-0.004724,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236193,-0.004724,0.004999,0.249950,0,0);}
.m41_c00180{transform:matrix(0.239386,-0.006703,0.006997,0.249902,0,0);-ms-transform:matrix(0.239386,-0.006703,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239386,-0.006703,0.006997,0.249902,0,0);}
.me2_c00180{transform:matrix(0.240051,-0.003361,0.003500,0.249976,0,0);-ms-transform:matrix(0.240051,-0.003361,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240051,-0.003361,0.003500,0.249976,0,0);}
.m39_c00180{transform:matrix(0.241825,-0.006771,0.006997,0.249902,0,0);-ms-transform:matrix(0.241825,-0.006771,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241825,-0.006771,0.006997,0.249902,0,0);}
.md8_c00180{transform:matrix(0.242901,-0.003401,0.003500,0.249976,0,0);-ms-transform:matrix(0.242901,-0.003401,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242901,-0.003401,0.003500,0.249976,0,0);}
.m60_c00180{transform:matrix(0.245264,-0.006867,0.006997,0.249902,0,0);-ms-transform:matrix(0.245264,-0.006867,0.006997,0.249902,0,0);-webkit-transform:matrix(0.245264,-0.006867,0.006997,0.249902,0,0);}
.me6_c00180{transform:matrix(0.245451,-0.003436,0.003500,0.249976,0,0);-ms-transform:matrix(0.245451,-0.003436,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245451,-0.003436,0.003500,0.249976,0,0);}
.mee_c00180{transform:matrix(0.247571,-0.003466,0.003500,0.249976,0,0);-ms-transform:matrix(0.247571,-0.003466,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247571,-0.003466,0.003500,0.249976,0,0);}
.me4_c00180{transform:matrix(0.248381,-0.003477,0.003500,0.249976,0,0);-ms-transform:matrix(0.248381,-0.003477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248381,-0.003477,0.003500,0.249976,0,0);}
.md6_c00180{transform:matrix(0.248791,-0.003483,0.003500,0.249976,0,0);-ms-transform:matrix(0.248791,-0.003483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248791,-0.003483,0.003500,0.249976,0,0);}
.me9_c00180{transform:matrix(0.249226,-0.003489,0.003500,0.249976,0,0);-ms-transform:matrix(0.249226,-0.003489,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249226,-0.003489,0.003500,0.249976,0,0);}
.me5_c00180{transform:matrix(0.249886,-0.003498,0.003500,0.249976,0,0);-ms-transform:matrix(0.249886,-0.003498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249886,-0.003498,0.003500,0.249976,0,0);}
.mfb_c00180{transform:matrix(0.252935,-0.002782,0.002750,0.249985,0,0);-ms-transform:matrix(0.252935,-0.002782,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252935,-0.002782,0.002750,0.249985,0,0);}
.m72_c00180{transform:matrix(0.253546,-0.007099,0.006997,0.249902,0,0);-ms-transform:matrix(0.253546,-0.007099,0.006997,0.249902,0,0);-webkit-transform:matrix(0.253546,-0.007099,0.006997,0.249902,0,0);}
.m89_c00180{transform:matrix(0.254644,-0.004584,0.004499,0.249960,0,0);-ms-transform:matrix(0.254644,-0.004584,0.004499,0.249960,0,0);-webkit-transform:matrix(0.254644,-0.004584,0.004499,0.249960,0,0);}
.m81_c00180{transform:matrix(0.257187,-0.004115,0.003999,0.249968,0,0);-ms-transform:matrix(0.257187,-0.004115,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257187,-0.004115,0.003999,0.249968,0,0);}
.m0_c00180{transform:matrix(0.268735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268735,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.340162,-0.009525,0.006997,0.249902,0,0);-ms-transform:matrix(0.340162,-0.009525,0.006997,0.249902,0,0);-webkit-transform:matrix(0.340162,-0.009525,0.006997,0.249902,0,0);}
.ma0_c00180{transform:matrix(0.362126,-0.006518,0.004499,0.249960,0,0);-ms-transform:matrix(0.362126,-0.006518,0.004499,0.249960,0,0);-webkit-transform:matrix(0.362126,-0.006518,0.004499,0.249960,0,0);}
.m4b_c00180{transform:matrix(0.526973,-0.014755,0.006997,0.249902,0,0);-ms-transform:matrix(0.526973,-0.014755,0.006997,0.249902,0,0);-webkit-transform:matrix(0.526973,-0.014755,0.006997,0.249902,0,0);}
.m2_c00180{transform:matrix(0.879185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.879185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.879185,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:0.000000px;}
.fc0_c00180{color:transparent;}
.fs0_c00180{font-size:24.150000px;}
.fs1a_c00180{font-size:51.453113px;}
.fs18_c00180{font-size:54.605351px;}
.fs16_c00180{font-size:58.805762px;}
.fse_c00180{font-size:58.811759px;}
.fs8_c00180{font-size:58.823045px;}
.fs6_c00180{font-size:59.850000px;}
.fs14_c00180{font-size:59.855865px;}
.fs10_c00180{font-size:59.859695px;}
.fs11_c00180{font-size:60.909865px;}
.fsa_c00180{font-size:60.923868px;}
.fs12_c00180{font-size:61.960035px;}
.fs9_c00180{font-size:61.974280px;}
.fs5_c00180{font-size:63.000000px;}
.fsb_c00180{font-size:63.024691px;}
.fs17_c00180{font-size:64.056277px;}
.fsd_c00180{font-size:64.075103px;}
.fs15_c00180{font-size:65.106379px;}
.fsf_c00180{font-size:65.108332px;}
.fs19_c00180{font-size:66.154002px;}
.fs7_c00180{font-size:67.200000px;}
.fs13_c00180{font-size:67.206585px;}
.fs4_c00180{font-size:69.300000px;}
.fs3_c00180{font-size:71.400000px;}
.fsc_c00180{font-size:71.427983px;}
.fs2_c00180{font-size:72.450000px;}
.fs1_c00180{font-size:78.750000px;}
.y0_c00180{bottom:0.000000px;}
.yfc_c00180{bottom:22.784140px;}
.yfa_c00180{bottom:22.784183px;}
.yfb_c00180{bottom:22.784556px;}
.yf1_c00180{bottom:38.611500px;}
.yf2_c00180{bottom:38.991512px;}
.yf3_c00180{bottom:39.350865px;}
.yf4_c00180{bottom:39.932754px;}
.yf5_c00180{bottom:40.074852px;}
.yf6_c00180{bottom:40.295276px;}
.yf7_c00180{bottom:41.029179px;}
.yf8_c00180{bottom:41.198585px;}
.yf9_c00180{bottom:41.635109px;}
.yf0_c00180{bottom:58.871937px;}
.yea_c00180{bottom:58.872057px;}
.yef_c00180{bottom:58.872159px;}
.yeb_c00180{bottom:58.872255px;}
.yee_c00180{bottom:58.872684px;}
.yed_c00180{bottom:58.872708px;}
.yec_c00180{bottom:58.872951px;}
.ye1_c00180{bottom:74.779452px;}
.ye2_c00180{bottom:75.060282px;}
.ye3_c00180{bottom:75.268779px;}
.ye4_c00180{bottom:75.926889px;}
.ye5_c00180{bottom:76.055892px;}
.ye6_c00180{bottom:76.473729px;}
.ye7_c00180{bottom:76.646040px;}
.ye8_c00180{bottom:76.914726px;}
.ye9_c00180{bottom:77.379180px;}
.yd9_c00180{bottom:90.444975px;}
.yda_c00180{bottom:91.364121px;}
.ydb_c00180{bottom:92.205591px;}
.ydc_c00180{bottom:92.609688px;}
.ydd_c00180{bottom:93.430878px;}
.yde_c00180{bottom:94.516830px;}
.ydf_c00180{bottom:95.612964px;}
.ye0_c00180{bottom:96.088041px;}
.yd0_c00180{bottom:108.264261px;}
.yd1_c00180{bottom:108.517896px;}
.yd2_c00180{bottom:108.998820px;}
.yd3_c00180{bottom:109.198977px;}
.yd4_c00180{bottom:109.614534px;}
.yd5_c00180{bottom:109.819230px;}
.yd6_c00180{bottom:110.300028px;}
.yd7_c00180{bottom:110.526405px;}
.yd8_c00180{bottom:111.106227px;}
.yc8_c00180{bottom:125.819415px;}
.yc9_c00180{bottom:126.890775px;}
.yca_c00180{bottom:127.205505px;}
.ycb_c00180{bottom:127.786587px;}
.ycc_c00180{bottom:128.073012px;}
.ycd_c00180{bottom:129.484938px;}
.yce_c00180{bottom:129.688371px;}
.ycf_c00180{bottom:129.991710px;}
.yc0_c00180{bottom:140.130603px;}
.yc1_c00180{bottom:141.279957px;}
.yc2_c00180{bottom:142.118235px;}
.yc3_c00180{bottom:142.385511px;}
.yc4_c00180{bottom:142.934445px;}
.yc5_c00180{bottom:143.261280px;}
.yc6_c00180{bottom:143.703684px;}
.yc7_c00180{bottom:144.767610px;}
.yb9_c00180{bottom:161.223030px;}
.ybc_c00180{bottom:161.223399px;}
.yba_c00180{bottom:161.223564px;}
.ybf_c00180{bottom:161.223651px;}
.ybd_c00180{bottom:161.223894px;}
.ybb_c00180{bottom:161.223960px;}
.ybe_c00180{bottom:161.224053px;}
.yaf_c00180{bottom:171.998352px;}
.yb0_c00180{bottom:172.656099px;}
.yb1_c00180{bottom:173.629995px;}
.yb2_c00180{bottom:174.090948px;}
.yb3_c00180{bottom:175.746624px;}
.yb4_c00180{bottom:176.556333px;}
.yb5_c00180{bottom:177.034728px;}
.yb6_c00180{bottom:178.589121px;}
.yb7_c00180{bottom:179.387412px;}
.yb8_c00180{bottom:180.417129px;}
.ya8_c00180{bottom:193.591500px;}
.ya9_c00180{bottom:193.913241px;}
.yaa_c00180{bottom:195.412809px;}
.yab_c00180{bottom:195.686103px;}
.yac_c00180{bottom:196.362975px;}
.yad_c00180{bottom:196.910235px;}
.yae_c00180{bottom:197.323326px;}
.y9f_c00180{bottom:211.131756px;}
.ya0_c00180{bottom:211.469790px;}
.ya1_c00180{bottom:211.775022px;}
.ya2_c00180{bottom:211.962375px;}
.ya3_c00180{bottom:212.654889px;}
.ya4_c00180{bottom:212.998602px;}
.ya5_c00180{bottom:213.213078px;}
.ya6_c00180{bottom:213.790320px;}
.ya7_c00180{bottom:214.173489px;}
.y99_c00180{bottom:227.339181px;}
.y9a_c00180{bottom:227.931378px;}
.y9b_c00180{bottom:228.609969px;}
.y9c_c00180{bottom:229.546341px;}
.y9d_c00180{bottom:230.783610px;}
.y9e_c00180{bottom:231.257445px;}
.y90_c00180{bottom:245.160393px;}
.y91_c00180{bottom:246.166692px;}
.y92_c00180{bottom:246.774048px;}
.y93_c00180{bottom:247.271448px;}
.y94_c00180{bottom:247.613577px;}
.y95_c00180{bottom:248.124204px;}
.y96_c00180{bottom:248.742684px;}
.y97_c00180{bottom:249.079872px;}
.y98_c00180{bottom:249.836061px;}
.y88_c00180{bottom:262.174500px;}
.y89_c00180{bottom:263.073627px;}
.y8a_c00180{bottom:263.378349px;}
.y8b_c00180{bottom:263.937249px;}
.y8c_c00180{bottom:264.449223px;}
.y8d_c00180{bottom:264.872151px;}
.y8e_c00180{bottom:266.451840px;}
.y8f_c00180{bottom:267.300882px;}
.y80_c00180{bottom:279.723000px;}
.y81_c00180{bottom:280.285560px;}
.y82_c00180{bottom:281.454960px;}
.y83_c00180{bottom:282.004992px;}
.y84_c00180{bottom:283.023408px;}
.y85_c00180{bottom:283.314336px;}
.y86_c00180{bottom:284.048376px;}
.y87_c00180{bottom:284.268936px;}
.y7b_c00180{bottom:297.546000px;}
.y7c_c00180{bottom:298.242900px;}
.y7d_c00180{bottom:299.550090px;}
.y7e_c00180{bottom:300.943350px;}
.y7f_c00180{bottom:301.424400px;}
.y79_c00180{bottom:313.692198px;}
.y7a_c00180{bottom:322.698120px;}
.y71_c00180{bottom:330.164562px;}
.y72_c00180{bottom:331.100196px;}
.y73_c00180{bottom:331.587510px;}
.y74_c00180{bottom:332.300496px;}
.y75_c00180{bottom:334.479636px;}
.y76_c00180{bottom:335.456670px;}
.y77_c00180{bottom:336.532050px;}
.y78_c00180{bottom:338.707116px;}
.y69_c00180{bottom:344.753304px;}
.y6a_c00180{bottom:345.358944px;}
.y6b_c00180{bottom:346.478034px;}
.y6c_c00180{bottom:348.707562px;}
.y6d_c00180{bottom:349.117776px;}
.y6e_c00180{bottom:350.959140px;}
.y6f_c00180{bottom:351.567090px;}
.y70_c00180{bottom:352.550772px;}
.y5f_c00180{bottom:362.850090px;}
.y60_c00180{bottom:363.209442px;}
.y61_c00180{bottom:363.779592px;}
.y62_c00180{bottom:364.641306px;}
.y63_c00180{bottom:365.418852px;}
.y64_c00180{bottom:367.312128px;}
.y65_c00180{bottom:369.119094px;}
.y66_c00180{bottom:369.403308px;}
.y67_c00180{bottom:370.291482px;}
.y68_c00180{bottom:370.757052px;}
.y58_c00180{bottom:380.678550px;}
.y59_c00180{bottom:382.061076px;}
.y5a_c00180{bottom:383.475210px;}
.y5b_c00180{bottom:383.780112px;}
.y5c_c00180{bottom:384.356586px;}
.y5d_c00180{bottom:386.578746px;}
.y5e_c00180{bottom:387.017124px;}
.y51_c00180{bottom:398.502312px;}
.y52_c00180{bottom:399.074910px;}
.y53_c00180{bottom:401.163762px;}
.y54_c00180{bottom:401.644290px;}
.y55_c00180{bottom:404.035692px;}
.y56_c00180{bottom:404.986362px;}
.y57_c00180{bottom:405.615402px;}
.y4a_c00180{bottom:414.445824px;}
.y4b_c00180{bottom:415.815408px;}
.y4c_c00180{bottom:417.758082px;}
.y4d_c00180{bottom:418.431582px;}
.y4e_c00180{bottom:420.318588px;}
.y4f_c00180{bottom:420.996528px;}
.y50_c00180{bottom:421.623168px;}
.y41_c00180{bottom:432.540282px;}
.y42_c00180{bottom:433.017702px;}
.y43_c00180{bottom:433.972248px;}
.y44_c00180{bottom:434.828088px;}
.y45_c00180{bottom:435.241332px;}
.y46_c00180{bottom:436.485054px;}
.y47_c00180{bottom:437.165694px;}
.y48_c00180{bottom:438.532938px;}
.y49_c00180{bottom:439.144980px;}
.y38_c00180{bottom:449.025000px;}
.y39_c00180{bottom:449.957190px;}
.y3a_c00180{bottom:450.418602px;}
.y3b_c00180{bottom:451.318536px;}
.y3c_c00180{bottom:452.328846px;}
.y3d_c00180{bottom:453.444156px;}
.y3e_c00180{bottom:454.696092px;}
.y3f_c00180{bottom:455.252214px;}
.y40_c00180{bottom:457.375944px;}
.y2e_c00180{bottom:466.027500px;}
.y2f_c00180{bottom:467.260500px;}
.y30_c00180{bottom:467.985000px;}
.y31_c00180{bottom:469.801500px;}
.y32_c00180{bottom:470.395500px;}
.y33_c00180{bottom:470.910000px;}
.y34_c00180{bottom:472.039500px;}
.y35_c00180{bottom:472.633500px;}
.y36_c00180{bottom:474.139500px;}
.y37_c00180{bottom:474.543000px;}
.y28_c00180{bottom:483.579000px;}
.y29_c00180{bottom:485.707500px;}
.y2a_c00180{bottom:487.290000px;}
.y2b_c00180{bottom:487.782000px;}
.y2c_c00180{bottom:489.715500px;}
.y2d_c00180{bottom:490.215000px;}
.y20_c00180{bottom:500.856000px;}
.y21_c00180{bottom:501.610500px;}
.y22_c00180{bottom:502.216500px;}
.y23_c00180{bottom:504.730500px;}
.y24_c00180{bottom:505.321500px;}
.y25_c00180{bottom:506.479500px;}
.y26_c00180{bottom:507.022500px;}
.y27_c00180{bottom:507.616500px;}
.y18_c00180{bottom:518.140500px;}
.y19_c00180{bottom:518.670000px;}
.y1a_c00180{bottom:519.351000px;}
.y1b_c00180{bottom:519.772500px;}
.y1c_c00180{bottom:521.035500px;}
.y1d_c00180{bottom:522.553500px;}
.y1e_c00180{bottom:523.239000px;}
.y1f_c00180{bottom:524.052000px;}
.y10_c00180{bottom:536.227500px;}
.y11_c00180{bottom:536.709000px;}
.y12_c00180{bottom:537.375000px;}
.y13_c00180{bottom:538.705500px;}
.y14_c00180{bottom:538.998000px;}
.y15_c00180{bottom:539.419500px;}
.y16_c00180{bottom:539.973000px;}
.y17_c00180{bottom:542.059500px;}
.y8_c00180{bottom:552.972000px;}
.y9_c00180{bottom:554.089500px;}
.ya_c00180{bottom:554.574000px;}
.yb_c00180{bottom:555.820500px;}
.yc_c00180{bottom:556.218000px;}
.yd_c00180{bottom:556.755000px;}
.ye_c00180{bottom:557.229000px;}
.yf_c00180{bottom:559.156500px;}
.y2_c00180{bottom:570.519000px;}
.y3_c00180{bottom:571.375500px;}
.y4_c00180{bottom:572.584500px;}
.y5_c00180{bottom:574.428000px;}
.y6_c00180{bottom:576.538500px;}
.y7_c00180{bottom:577.389000px;}
.y1_c00180{bottom:587.649000px;}
.h2_c00180{height:24.150000px;}
.h1c_c00180{height:51.453113px;}
.h1a_c00180{height:54.605351px;}
.h18_c00180{height:58.805762px;}
.h10_c00180{height:58.811759px;}
.ha_c00180{height:58.823045px;}
.h8_c00180{height:59.850000px;}
.h16_c00180{height:59.855865px;}
.h12_c00180{height:59.859695px;}
.h13_c00180{height:60.909865px;}
.hc_c00180{height:60.923868px;}
.h14_c00180{height:61.960035px;}
.hb_c00180{height:61.974280px;}
.h7_c00180{height:63.000000px;}
.hd_c00180{height:63.024691px;}
.h19_c00180{height:64.056277px;}
.hf_c00180{height:64.075103px;}
.h17_c00180{height:65.106379px;}
.h11_c00180{height:65.108332px;}
.h1b_c00180{height:66.154002px;}
.h9_c00180{height:67.200000px;}
.h15_c00180{height:67.206585px;}
.h6_c00180{height:69.300000px;}
.h5_c00180{height:71.400000px;}
.he_c00180{height:71.427983px;}
.h4_c00180{height:72.450000px;}
.h3_c00180{height:78.750000px;}
.h0_c00180{height:623.100000px;}
.h1_c00180{height:623.250000px;}
.w1_c00180{width:383.250000px;}
.w0_c00180{width:383.400000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:1.350000px;}
.x58_c00180{left:24.463500px;}
.x3_c00180{left:27.600000px;}
.x16_c00180{left:29.250000px;}
.x24_c00180{left:30.618000px;}
.x37_c00180{left:32.250684px;}
.x3f_c00180{left:33.275730px;}
.x54_c00180{left:34.316694px;}
.x5c_c00180{left:35.598000px;}
.x63_c00180{left:36.679683px;}
.x69_c00180{left:38.190867px;}
.x70_c00180{left:39.592020px;}
.x74_c00180{left:42.877809px;}
.x3c_c00180{left:45.027762px;}
.x46_c00180{left:46.413774px;}
.xf_c00180{left:49.041000px;}
.x17_c00180{left:50.425500px;}
.x4c_c00180{left:55.742004px;}
.x1d_c00180{left:58.110000px;}
.x55_c00180{left:59.124000px;}
.x6a_c00180{left:60.846600px;}
.x4_c00180{left:61.888500px;}
.x2e_c00180{left:64.617000px;}
.x72_c00180{left:65.730816px;}
.x9_c00180{left:67.581000px;}
.x78_c00180{left:70.048977px;}
.x64_c00180{left:71.496804px;}
.x28_c00180{left:73.392000px;}
.x10_c00180{left:77.989500px;}
.x38_c00180{left:79.502382px;}
.x1e_c00180{left:80.569500px;}
.xa_c00180{left:84.877500px;}
.x40_c00180{left:86.458212px;}
.x75_c00180{left:88.812945px;}
.x33_c00180{left:91.033422px;}
.x7c_c00180{left:93.555000px;}
.x18_c00180{left:94.555500px;}
.x4d_c00180{left:95.709504px;}
.x29_c00180{left:98.398500px;}
.x5d_c00180{left:102.478500px;}
.x50_c00180{left:105.130044px;}
.x25_c00180{left:106.660500px;}
.x5_c00180{left:110.229000px;}
.x65_c00180{left:111.447033px;}
.x2f_c00180{left:113.236500px;}
.x47_c00180{left:125.321274px;}
.x34_c00180{left:126.692412px;}
.xb_c00180{left:129.408000px;}
.x76_c00180{left:130.914417px;}
.x59_c00180{left:132.711000px;}
.x73_c00180{left:133.776117px;}
.x11_c00180{left:135.807000px;}
.x7a_c00180{left:139.872738px;}
.x41_c00180{left:140.876778px;}
.xc_c00180{left:143.593500px;}
.x19_c00180{left:145.074000px;}
.x39_c00180{left:146.470992px;}
.x12_c00180{left:148.521000px;}
.x77_c00180{left:151.098216px;}
.x42_c00180{left:152.623950px;}
.x79_c00180{left:156.704328px;}
.x56_c00180{left:159.328500px;}
.x2a_c00180{left:161.025000px;}
.x2_c00180{left:162.540000px;}
.x13_c00180{left:166.872000px;}
.x3a_c00180{left:169.720362px;}
.x1f_c00180{left:173.680500px;}
.x43_c00180{left:174.820710px;}
.x51_c00180{left:177.755970px;}
.xd_c00180{left:179.671500px;}
.x26_c00180{left:180.756000px;}
.x6_c00180{left:183.960000px;}
.x5e_c00180{left:185.467500px;}
.x30_c00180{left:189.151500px;}
.x14_c00180{left:190.951500px;}
.x48_c00180{left:192.938274px;}
.x20_c00180{left:195.579000px;}
.x2b_c00180{left:199.287000px;}
.x1a_c00180{left:205.819500px;}
.x52_c00180{left:210.344664px;}
.x6b_c00180{left:211.788390px;}
.x6e_c00180{left:214.031640px;}
.x61_c00180{left:221.088903px;}
.x35_c00180{left:224.117832px;}
.x57_c00180{left:228.991500px;}
.x5a_c00180{left:230.739000px;}
.x1b_c00180{left:233.227500px;}
.x3b_c00180{left:234.808056px;}
.x21_c00180{left:238.492500px;}
.x68_c00180{left:243.184500px;}
.x53_c00180{left:246.177648px;}
.xe_c00180{left:248.527500px;}
.x27_c00180{left:249.829500px;}
.x31_c00180{left:253.725000px;}
.x4e_c00180{left:255.749004px;}
.x49_c00180{left:257.472774px;}
.x22_c00180{left:258.610500px;}
.x44_c00180{left:260.295498px;}
.x6f_c00180{left:262.118796px;}
.x1c_c00180{left:265.768500px;}
.x66_c00180{left:267.281868px;}
.x7_c00180{left:268.356000px;}
.x5f_c00180{left:273.228000px;}
.x45_c00180{left:277.184964px;}
.x6d_c00180{left:278.391750px;}
.x23_c00180{left:280.624500px;}
.x15_c00180{left:281.655000px;}
.x67_c00180{left:289.904607px;}
.x6c_c00180{left:292.927359px;}
.x3d_c00180{left:294.454248px;}
.x4a_c00180{left:299.343774px;}
.x71_c00180{left:300.427233px;}
.x8_c00180{left:302.361000px;}
.x7b_c00180{left:303.776868px;}
.x36_c00180{left:306.601572px;}
.x5b_c00180{left:308.584500px;}
.x2c_c00180{left:310.711500px;}
.x4f_c00180{left:312.593004px;}
.x4b_c00180{left:315.971274px;}
.x3e_c00180{left:318.635592px;}
.x60_c00180{left:320.397000px;}
.x2d_c00180{left:324.627000px;}
.x62_c00180{left:328.029237px;}
.x32_c00180{left:329.572500px;}
.x7d_c00180{left:333.882000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:0.000000pt;}
.fs0_c00180{font-size:21.466667pt;}
.fs1a_c00180{font-size:45.736100pt;}
.fs18_c00180{font-size:48.538089pt;}
.fs16_c00180{font-size:52.271789pt;}
.fse_c00180{font-size:52.277119pt;}
.fs8_c00180{font-size:52.287151pt;}
.fs6_c00180{font-size:53.200000pt;}
.fs14_c00180{font-size:53.205213pt;}
.fs10_c00180{font-size:53.208618pt;}
.fs11_c00180{font-size:54.142102pt;}
.fsa_c00180{font-size:54.154549pt;}
.fs12_c00180{font-size:55.075587pt;}
.fs9_c00180{font-size:55.088249pt;}
.fs5_c00180{font-size:56.000000pt;}
.fsb_c00180{font-size:56.021948pt;}
.fs17_c00180{font-size:56.938913pt;}
.fsd_c00180{font-size:56.955647pt;}
.fs15_c00180{font-size:57.872337pt;}
.fsf_c00180{font-size:57.874073pt;}
.fs19_c00180{font-size:58.803557pt;}
.fs7_c00180{font-size:59.733333pt;}
.fs13_c00180{font-size:59.739187pt;}
.fs4_c00180{font-size:61.600000pt;}
.fs3_c00180{font-size:63.466667pt;}
.fsc_c00180{font-size:63.491541pt;}
.fs2_c00180{font-size:64.400000pt;}
.fs1_c00180{font-size:70.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.yfc_c00180{bottom:20.252569pt;}
.yfa_c00180{bottom:20.252607pt;}
.yfb_c00180{bottom:20.252939pt;}
.yf1_c00180{bottom:34.321333pt;}
.yf2_c00180{bottom:34.659121pt;}
.yf3_c00180{bottom:34.978547pt;}
.yf4_c00180{bottom:35.495781pt;}
.yf5_c00180{bottom:35.622091pt;}
.yf6_c00180{bottom:35.818023pt;}
.yf7_c00180{bottom:36.470381pt;}
.yf8_c00180{bottom:36.620964pt;}
.yf9_c00180{bottom:37.008985pt;}
.yf0_c00180{bottom:52.330611pt;}
.yea_c00180{bottom:52.330717pt;}
.yef_c00180{bottom:52.330808pt;}
.yeb_c00180{bottom:52.330893pt;}
.yee_c00180{bottom:52.331275pt;}
.yed_c00180{bottom:52.331296pt;}
.yec_c00180{bottom:52.331512pt;}
.ye1_c00180{bottom:66.470624pt;}
.ye2_c00180{bottom:66.720251pt;}
.ye3_c00180{bottom:66.905581pt;}
.ye4_c00180{bottom:67.490568pt;}
.ye5_c00180{bottom:67.605237pt;}
.ye6_c00180{bottom:67.976648pt;}
.ye7_c00180{bottom:68.129813pt;}
.ye8_c00180{bottom:68.368645pt;}
.ye9_c00180{bottom:68.781493pt;}
.yd9_c00180{bottom:80.395533pt;}
.yda_c00180{bottom:81.212552pt;}
.ydb_c00180{bottom:81.960525pt;}
.ydc_c00180{bottom:82.319723pt;}
.ydd_c00180{bottom:83.049669pt;}
.yde_c00180{bottom:84.014960pt;}
.ydf_c00180{bottom:84.989301pt;}
.ye0_c00180{bottom:85.411592pt;}
.yd0_c00180{bottom:96.234899pt;}
.yd1_c00180{bottom:96.460352pt;}
.yd2_c00180{bottom:96.887840pt;}
.yd3_c00180{bottom:97.065757pt;}
.yd4_c00180{bottom:97.435141pt;}
.yd5_c00180{bottom:97.617093pt;}
.yd6_c00180{bottom:98.044469pt;}
.yd7_c00180{bottom:98.245693pt;}
.yd8_c00180{bottom:98.761091pt;}
.yc8_c00180{bottom:111.839480pt;}
.yc9_c00180{bottom:112.791800pt;}
.yca_c00180{bottom:113.071560pt;}
.ycb_c00180{bottom:113.588077pt;}
.ycc_c00180{bottom:113.842677pt;}
.ycd_c00180{bottom:115.097723pt;}
.yce_c00180{bottom:115.278552pt;}
.ycf_c00180{bottom:115.548187pt;}
.yc0_c00180{bottom:124.560536pt;}
.yc1_c00180{bottom:125.582184pt;}
.yc2_c00180{bottom:126.327320pt;}
.yc3_c00180{bottom:126.564899pt;}
.yc4_c00180{bottom:127.052840pt;}
.yc5_c00180{bottom:127.343360pt;}
.yc6_c00180{bottom:127.736608pt;}
.yc7_c00180{bottom:128.682320pt;}
.yb9_c00180{bottom:143.309360pt;}
.ybc_c00180{bottom:143.309688pt;}
.yba_c00180{bottom:143.309835pt;}
.ybf_c00180{bottom:143.309912pt;}
.ybd_c00180{bottom:143.310128pt;}
.ybb_c00180{bottom:143.310187pt;}
.ybe_c00180{bottom:143.310269pt;}
.yaf_c00180{bottom:152.887424pt;}
.yb0_c00180{bottom:153.472088pt;}
.yb1_c00180{bottom:154.337773pt;}
.yb2_c00180{bottom:154.747509pt;}
.yb3_c00180{bottom:156.219221pt;}
.yb4_c00180{bottom:156.938963pt;}
.yb5_c00180{bottom:157.364203pt;}
.yb6_c00180{bottom:158.745885pt;}
.yb7_c00180{bottom:159.455477pt;}
.yb8_c00180{bottom:160.370781pt;}
.ya8_c00180{bottom:172.081333pt;}
.ya9_c00180{bottom:172.367325pt;}
.yaa_c00180{bottom:173.700275pt;}
.yab_c00180{bottom:173.943203pt;}
.yac_c00180{bottom:174.544867pt;}
.yad_c00180{bottom:175.031320pt;}
.yae_c00180{bottom:175.398512pt;}
.y9f_c00180{bottom:187.672672pt;}
.ya0_c00180{bottom:187.973147pt;}
.ya1_c00180{bottom:188.244464pt;}
.ya2_c00180{bottom:188.411000pt;}
.ya3_c00180{bottom:189.026568pt;}
.ya4_c00180{bottom:189.332091pt;}
.ya5_c00180{bottom:189.522736pt;}
.ya6_c00180{bottom:190.035840pt;}
.ya7_c00180{bottom:190.376435pt;}
.y99_c00180{bottom:202.079272pt;}
.y9a_c00180{bottom:202.605669pt;}
.y9b_c00180{bottom:203.208861pt;}
.y9c_c00180{bottom:204.041192pt;}
.y9d_c00180{bottom:205.140987pt;}
.y9e_c00180{bottom:205.562173pt;}
.y90_c00180{bottom:217.920349pt;}
.y91_c00180{bottom:218.814837pt;}
.y92_c00180{bottom:219.354709pt;}
.y93_c00180{bottom:219.796843pt;}
.y94_c00180{bottom:220.100957pt;}
.y95_c00180{bottom:220.554848pt;}
.y96_c00180{bottom:221.104608pt;}
.y97_c00180{bottom:221.404331pt;}
.y98_c00180{bottom:222.076499pt;}
.y88_c00180{bottom:233.044000pt;}
.y89_c00180{bottom:233.843224pt;}
.y8a_c00180{bottom:234.114088pt;}
.y8b_c00180{bottom:234.610888pt;}
.y8c_c00180{bottom:235.065976pt;}
.y8d_c00180{bottom:235.441912pt;}
.y8e_c00180{bottom:236.846080pt;}
.y8f_c00180{bottom:237.600784pt;}
.y80_c00180{bottom:248.642667pt;}
.y81_c00180{bottom:249.142720pt;}
.y82_c00180{bottom:250.182187pt;}
.y83_c00180{bottom:250.671104pt;}
.y84_c00180{bottom:251.576363pt;}
.y85_c00180{bottom:251.834965pt;}
.y86_c00180{bottom:252.487445pt;}
.y87_c00180{bottom:252.683499pt;}
.y7b_c00180{bottom:264.485333pt;}
.y7c_c00180{bottom:265.104800pt;}
.y7d_c00180{bottom:266.266747pt;}
.y7e_c00180{bottom:267.505200pt;}
.y7f_c00180{bottom:267.932800pt;}
.y79_c00180{bottom:278.837509pt;}
.y7a_c00180{bottom:286.842773pt;}
.y71_c00180{bottom:293.479611pt;}
.y72_c00180{bottom:294.311285pt;}
.y73_c00180{bottom:294.744453pt;}
.y74_c00180{bottom:295.378219pt;}
.y75_c00180{bottom:297.315232pt;}
.y76_c00180{bottom:298.183707pt;}
.y77_c00180{bottom:299.139600pt;}
.y78_c00180{bottom:301.072992pt;}
.y69_c00180{bottom:306.447381pt;}
.y6a_c00180{bottom:306.985728pt;}
.y6b_c00180{bottom:307.980475pt;}
.y6c_c00180{bottom:309.962277pt;}
.y6d_c00180{bottom:310.326912pt;}
.y6e_c00180{bottom:311.963680pt;}
.y6f_c00180{bottom:312.504080pt;}
.y70_c00180{bottom:313.378464pt;}
.y5f_c00180{bottom:322.533413pt;}
.y60_c00180{bottom:322.852837pt;}
.y61_c00180{bottom:323.359637pt;}
.y62_c00180{bottom:324.125605pt;}
.y63_c00180{bottom:324.816757pt;}
.y64_c00180{bottom:326.499669pt;}
.y65_c00180{bottom:328.105861pt;}
.y66_c00180{bottom:328.358496pt;}
.y67_c00180{bottom:329.147984pt;}
.y68_c00180{bottom:329.561824pt;}
.y58_c00180{bottom:338.380933pt;}
.y59_c00180{bottom:339.609845pt;}
.y5a_c00180{bottom:340.866853pt;}
.y5b_c00180{bottom:341.137877pt;}
.y5c_c00180{bottom:341.650299pt;}
.y5d_c00180{bottom:343.625552pt;}
.y5e_c00180{bottom:344.015221pt;}
.y51_c00180{bottom:354.224277pt;}
.y52_c00180{bottom:354.733253pt;}
.y53_c00180{bottom:356.590011pt;}
.y54_c00180{bottom:357.017147pt;}
.y55_c00180{bottom:359.142837pt;}
.y56_c00180{bottom:359.987877pt;}
.y57_c00180{bottom:360.547024pt;}
.y4a_c00180{bottom:368.396288pt;}
.y4b_c00180{bottom:369.613696pt;}
.y4c_c00180{bottom:371.340517pt;}
.y4d_c00180{bottom:371.939184pt;}
.y4e_c00180{bottom:373.616523pt;}
.y4f_c00180{bottom:374.219136pt;}
.y50_c00180{bottom:374.776149pt;}
.y41_c00180{bottom:384.480251pt;}
.y42_c00180{bottom:384.904624pt;}
.y43_c00180{bottom:385.753109pt;}
.y44_c00180{bottom:386.513856pt;}
.y45_c00180{bottom:386.881184pt;}
.y46_c00180{bottom:387.986715pt;}
.y47_c00180{bottom:388.591728pt;}
.y48_c00180{bottom:389.807056pt;}
.y49_c00180{bottom:390.351093pt;}
.y38_c00180{bottom:399.133333pt;}
.y39_c00180{bottom:399.961947pt;}
.y3a_c00180{bottom:400.372091pt;}
.y3b_c00180{bottom:401.172032pt;}
.y3c_c00180{bottom:402.070085pt;}
.y3d_c00180{bottom:403.061472pt;}
.y3e_c00180{bottom:404.174304pt;}
.y3f_c00180{bottom:404.668635pt;}
.y40_c00180{bottom:406.556395pt;}
.y2e_c00180{bottom:414.246667pt;}
.y2f_c00180{bottom:415.342667pt;}
.y30_c00180{bottom:415.986667pt;}
.y31_c00180{bottom:417.601333pt;}
.y32_c00180{bottom:418.129333pt;}
.y33_c00180{bottom:418.586667pt;}
.y34_c00180{bottom:419.590667pt;}
.y35_c00180{bottom:420.118667pt;}
.y36_c00180{bottom:421.457333pt;}
.y37_c00180{bottom:421.816000pt;}
.y28_c00180{bottom:429.848000pt;}
.y29_c00180{bottom:431.740000pt;}
.y2a_c00180{bottom:433.146667pt;}
.y2b_c00180{bottom:433.584000pt;}
.y2c_c00180{bottom:435.302667pt;}
.y2d_c00180{bottom:435.746667pt;}
.y20_c00180{bottom:445.205333pt;}
.y21_c00180{bottom:445.876000pt;}
.y22_c00180{bottom:446.414667pt;}
.y23_c00180{bottom:448.649333pt;}
.y24_c00180{bottom:449.174667pt;}
.y25_c00180{bottom:450.204000pt;}
.y26_c00180{bottom:450.686667pt;}
.y27_c00180{bottom:451.214667pt;}
.y18_c00180{bottom:460.569333pt;}
.y19_c00180{bottom:461.040000pt;}
.y1a_c00180{bottom:461.645333pt;}
.y1b_c00180{bottom:462.020000pt;}
.y1c_c00180{bottom:463.142667pt;}
.y1d_c00180{bottom:464.492000pt;}
.y1e_c00180{bottom:465.101333pt;}
.y1f_c00180{bottom:465.824000pt;}
.y10_c00180{bottom:476.646667pt;}
.y11_c00180{bottom:477.074667pt;}
.y12_c00180{bottom:477.666667pt;}
.y13_c00180{bottom:478.849333pt;}
.y14_c00180{bottom:479.109333pt;}
.y15_c00180{bottom:479.484000pt;}
.y16_c00180{bottom:479.976000pt;}
.y17_c00180{bottom:481.830667pt;}
.y8_c00180{bottom:491.530667pt;}
.y9_c00180{bottom:492.524000pt;}
.ya_c00180{bottom:492.954667pt;}
.yb_c00180{bottom:494.062667pt;}
.yc_c00180{bottom:494.416000pt;}
.yd_c00180{bottom:494.893333pt;}
.ye_c00180{bottom:495.314667pt;}
.yf_c00180{bottom:497.028000pt;}
.y2_c00180{bottom:507.128000pt;}
.y3_c00180{bottom:507.889333pt;}
.y4_c00180{bottom:508.964000pt;}
.y5_c00180{bottom:510.602667pt;}
.y6_c00180{bottom:512.478667pt;}
.y7_c00180{bottom:513.234667pt;}
.y1_c00180{bottom:522.354667pt;}
.h2_c00180{height:21.466667pt;}
.h1c_c00180{height:45.736100pt;}
.h1a_c00180{height:48.538089pt;}
.h18_c00180{height:52.271789pt;}
.h10_c00180{height:52.277119pt;}
.ha_c00180{height:52.287151pt;}
.h8_c00180{height:53.200000pt;}
.h16_c00180{height:53.205213pt;}
.h12_c00180{height:53.208618pt;}
.h13_c00180{height:54.142102pt;}
.hc_c00180{height:54.154549pt;}
.h14_c00180{height:55.075587pt;}
.hb_c00180{height:55.088249pt;}
.h7_c00180{height:56.000000pt;}
.hd_c00180{height:56.021948pt;}
.h19_c00180{height:56.938913pt;}
.hf_c00180{height:56.955647pt;}
.h17_c00180{height:57.872337pt;}
.h11_c00180{height:57.874073pt;}
.h1b_c00180{height:58.803557pt;}
.h9_c00180{height:59.733333pt;}
.h15_c00180{height:59.739187pt;}
.h6_c00180{height:61.600000pt;}
.h5_c00180{height:63.466667pt;}
.he_c00180{height:63.491541pt;}
.h4_c00180{height:64.400000pt;}
.h3_c00180{height:70.000000pt;}
.h0_c00180{height:553.866667pt;}
.h1_c00180{height:554.000000pt;}
.w1_c00180{width:340.666667pt;}
.w0_c00180{width:340.800000pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:1.200000pt;}
.x58_c00180{left:21.745333pt;}
.x3_c00180{left:24.533333pt;}
.x16_c00180{left:26.000000pt;}
.x24_c00180{left:27.216000pt;}
.x37_c00180{left:28.667275pt;}
.x3f_c00180{left:29.578427pt;}
.x54_c00180{left:30.503728pt;}
.x5c_c00180{left:31.642667pt;}
.x63_c00180{left:32.604163pt;}
.x69_c00180{left:33.947437pt;}
.x70_c00180{left:35.192907pt;}
.x74_c00180{left:38.113608pt;}
.x3c_c00180{left:40.024677pt;}
.x46_c00180{left:41.256688pt;}
.xf_c00180{left:43.592000pt;}
.x17_c00180{left:44.822667pt;}
.x4c_c00180{left:49.548448pt;}
.x1d_c00180{left:51.653333pt;}
.x55_c00180{left:52.554667pt;}
.x6a_c00180{left:54.085867pt;}
.x4_c00180{left:55.012000pt;}
.x2e_c00180{left:57.437333pt;}
.x72_c00180{left:58.427392pt;}
.x9_c00180{left:60.072000pt;}
.x78_c00180{left:62.265757pt;}
.x64_c00180{left:63.552715pt;}
.x28_c00180{left:65.237333pt;}
.x10_c00180{left:69.324000pt;}
.x38_c00180{left:70.668784pt;}
.x1e_c00180{left:71.617333pt;}
.xa_c00180{left:75.446667pt;}
.x40_c00180{left:76.851744pt;}
.x75_c00180{left:78.944840pt;}
.x33_c00180{left:80.918597pt;}
.x7c_c00180{left:83.160000pt;}
.x18_c00180{left:84.049333pt;}
.x4d_c00180{left:85.075115pt;}
.x29_c00180{left:87.465333pt;}
.x5d_c00180{left:91.092000pt;}
.x50_c00180{left:93.448928pt;}
.x25_c00180{left:94.809333pt;}
.x5_c00180{left:97.981333pt;}
.x65_c00180{left:99.064029pt;}
.x2f_c00180{left:100.654667pt;}
.x47_c00180{left:111.396688pt;}
.x34_c00180{left:112.615477pt;}
.xb_c00180{left:115.029333pt;}
.x76_c00180{left:116.368371pt;}
.x59_c00180{left:117.965333pt;}
.x73_c00180{left:118.912104pt;}
.x11_c00180{left:120.717333pt;}
.x7a_c00180{left:124.331323pt;}
.x41_c00180{left:125.223803pt;}
.xc_c00180{left:127.638667pt;}
.x19_c00180{left:128.954667pt;}
.x39_c00180{left:130.196437pt;}
.x12_c00180{left:132.018667pt;}
.x77_c00180{left:134.309525pt;}
.x42_c00180{left:135.665733pt;}
.x79_c00180{left:139.292736pt;}
.x56_c00180{left:141.625333pt;}
.x2a_c00180{left:143.133333pt;}
.x2_c00180{left:144.480000pt;}
.x13_c00180{left:148.330667pt;}
.x3a_c00180{left:150.862544pt;}
.x1f_c00180{left:154.382667pt;}
.x43_c00180{left:155.396187pt;}
.x51_c00180{left:158.005307pt;}
.xd_c00180{left:159.708000pt;}
.x26_c00180{left:160.672000pt;}
.x6_c00180{left:163.520000pt;}
.x5e_c00180{left:164.860000pt;}
.x30_c00180{left:168.134667pt;}
.x14_c00180{left:169.734667pt;}
.x48_c00180{left:171.500688pt;}
.x20_c00180{left:173.848000pt;}
.x2b_c00180{left:177.144000pt;}
.x1a_c00180{left:182.950667pt;}
.x52_c00180{left:186.973035pt;}
.x6b_c00180{left:188.256347pt;}
.x6e_c00180{left:190.250347pt;}
.x61_c00180{left:196.523469pt;}
.x35_c00180{left:199.215851pt;}
.x57_c00180{left:203.548000pt;}
.x5a_c00180{left:205.101333pt;}
.x1b_c00180{left:207.313333pt;}
.x3b_c00180{left:208.718272pt;}
.x21_c00180{left:211.993333pt;}
.x68_c00180{left:216.164000pt;}
.x53_c00180{left:218.824576pt;}
.xe_c00180{left:220.913333pt;}
.x27_c00180{left:222.070667pt;}
.x31_c00180{left:225.533333pt;}
.x4e_c00180{left:227.332448pt;}
.x49_c00180{left:228.864688pt;}
.x22_c00180{left:229.876000pt;}
.x44_c00180{left:231.373776pt;}
.x6f_c00180{left:232.994485pt;}
.x1c_c00180{left:236.238667pt;}
.x66_c00180{left:237.583883pt;}
.x7_c00180{left:238.538667pt;}
.x5f_c00180{left:242.869333pt;}
.x45_c00180{left:246.386635pt;}
.x6d_c00180{left:247.459333pt;}
.x23_c00180{left:249.444000pt;}
.x15_c00180{left:250.360000pt;}
.x67_c00180{left:257.692984pt;}
.x6c_c00180{left:260.379875pt;}
.x3d_c00180{left:261.737109pt;}
.x4a_c00180{left:266.083355pt;}
.x71_c00180{left:267.046429pt;}
.x8_c00180{left:268.765333pt;}
.x7b_c00180{left:270.023883pt;}
.x36_c00180{left:272.534731pt;}
.x5b_c00180{left:274.297333pt;}
.x2c_c00180{left:276.188000pt;}
.x4f_c00180{left:277.860448pt;}
.x4b_c00180{left:280.863355pt;}
.x3e_c00180{left:283.231637pt;}
.x60_c00180{left:284.797333pt;}
.x2d_c00180{left:288.557333pt;}
.x62_c00180{left:291.581544pt;}
.x32_c00180{left:292.953333pt;}
.x7d_c00180{left:296.784000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00181 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00181 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00181 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00181 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00181.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00181{transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);}
.mb1_c00181{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m51_c00181{transform:matrix(0.145630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145630,0.000000,0.000000,0.250000,0,0);}
.mbf_c00181{transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);}
.m69_c00181{transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);}
.mf3_c00181{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.med_c00181{transform:matrix(0.153005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153005,0.000000,0.000000,0.250000,0,0);}
.mfb_c00181{transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);}
.m77_c00181{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m5b_c00181{transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);}
.m5a_c00181{transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);}
.m8b_c00181{transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);}
.m57_c00181{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.me4_c00181{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m74_c00181{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.mf1_c00181{transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);}
.m4d_c00181{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m59_c00181{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m79_c00181{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m78_c00181{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.mdb_c00181{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.mc0_c00181{transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);}
.mac_c00181{transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161870,0.000000,0.000000,0.250000,0,0);}
.m99_c00181{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m8f_c00181{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.md1_c00181{transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);}
.m5d_c00181{transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);}
.m65_c00181{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.mb2_c00181{transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);}
.m67_c00181{transform:matrix(0.167790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167790,0.000000,0.000000,0.250000,0,0);}
.m75_c00181{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m52_c00181{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00181{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m4f_c00181{transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);}
.m2e_c00181{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.m31_c00181{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m6b_c00181{transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);}
.ma9_c00181{transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);}
.mc4_c00181{transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.mf0_c00181{transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171280,0.000000,0.000000,0.250000,0,0);}
.m61_c00181{transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171660,0.000000,0.000000,0.250000,0,0);}
.m63_c00181{transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);}
.mae_c00181{transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);}
.m4c_c00181{transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);}
.m73_c00181{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.mb4_c00181{transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);}
.m17_c00181{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m62_c00181{transform:matrix(0.173965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173965,0.000000,0.000000,0.250000,0,0);}
.me3_c00181{transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00181{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.ma3_c00181{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m5f_c00181{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.mc1_c00181{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.mbc_c00181{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m43_c00181{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.mef_c00181{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.m29_c00181{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.m4a_c00181{transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00181{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.ma2_c00181{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.m58_c00181{transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);}
.mca_c00181{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m66_c00181{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.mad_c00181{transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);}
.mb0_c00181{transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);}
.m2a_c00181{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.me7_c00181{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00181{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00181{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m47_c00181{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m7a_c00181{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.mda_c00181{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.mfa_c00181{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.m6a_c00181{transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);}
.ma4_c00181{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.mf2_c00181{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m49_c00181{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.mce_c00181{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.md3_c00181{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m88_c00181{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.mab_c00181{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m25_c00181{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.m6d_c00181{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m9c_c00181{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.m3a_c00181{transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187960,0.000000,0.000000,0.250000,0,0);}
.m53_c00181{transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);}
.mee_c00181{transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);}
.mf4_c00181{transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);}
.md5_c00181{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.mcc_c00181{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00181{transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);}
.mf5_c00181{transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.189455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189455,0.000000,0.000000,0.250000,0,0);}
.m68_c00181{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00181{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.m91_c00181{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mbd_c00181{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m42_c00181{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m9a_c00181{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me6_c00181{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.maf_c00181{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m50_c00181{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m96_c00181{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.m7b_c00181{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m8e_c00181{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m56_c00181{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m93_c00181{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m32_c00181{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.mf9_c00181{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m90_c00181{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.mb5_c00181{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mb3_c00181{transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);}
.m3c_c00181{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m23_c00181{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.m46_c00181{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m80_c00181{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.mf6_c00181{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.mdd_c00181{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m9d_c00181{transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m95_c00181{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m64_c00181{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m76_c00181{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.me5_c00181{transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);}
.m6e_c00181{transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);}
.m60_c00181{transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.mbe_c00181{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.mec_c00181{transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);}
.mc6_c00181{transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201090,0.000000,0.000000,0.250000,0,0);}
.ma5_c00181{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.md8_c00181{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.mc3_c00181{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);}
.mc9_c00181{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00181{transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);}
.m45_c00181{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m54_c00181{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.me0_c00181{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.ma8_c00181{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.md4_c00181{transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);}
.mb8_c00181{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mc8_c00181{transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);}
.m2d_c00181{transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);}
.m7d_c00181{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00181{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.me2_c00181{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.m28_c00181{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00181{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m38_c00181{transform:matrix(0.208245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00181{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.md7_c00181{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mf7_c00181{transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);}
.mb7_c00181{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m82_c00181{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.ma7_c00181{transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mbb_c00181{transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);}
.m3b_c00181{transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);}
.meb_c00181{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00181{transform:matrix(0.211940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211940,0.000000,0.000000,0.250000,0,0);}
.mf8_c00181{transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);}
.m35_c00181{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m44_c00181{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m83_c00181{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m48_c00181{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m39_c00181{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.md6_c00181{transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);}
.m27_c00181{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);}
.mc5_c00181{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m7f_c00181{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.m70_c00181{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m87_c00181{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00181{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.m92_c00181{transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);}
.mdc_c00181{transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);}
.m84_c00181{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00181{transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);}
.m9f_c00181{transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);}
.mea_c00181{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.me9_c00181{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.m89_c00181{transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);}
.m36_c00181{transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);}
.m6f_c00181{transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);}
.m71_c00181{transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00181{transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);}
.m2b_c00181{transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00181{transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);}
.mba_c00181{transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);}
.ma1_c00181{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);}
.md0_c00181{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.md9_c00181{transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);}
.m86_c00181{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);}
.m30_c00181{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m8c_c00181{transform:matrix(0.227170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00181{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.m34_c00181{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m81_c00181{transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m97_c00181{transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);}
.mcb_c00181{transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);}
.m7e_c00181{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);}
.m94_c00181{transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231210,0.000000,0.000000,0.250000,0,0);}
.mdf_c00181{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.mb9_c00181{transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);}
.mc7_c00181{transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);}
.me8_c00181{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.mde_c00181{transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);}
.md2_c00181{transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);}
.me1_c00181{transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);}
.m98_c00181{transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);}
.ma0_c00181{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m85_c00181{transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);}
.m33_c00181{transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.m72_c00181{transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m5c_c00181{transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);}
.m16_c00181{transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);}
.m8a_c00181{transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.351570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351570,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.363850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363850,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(1.336445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.336445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.336445,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:0.000000px;}
.fc0_c00181{color:transparent;}
.fs9_c00181{font-size:57.750000px;}
.fs4_c00181{font-size:58.800000px;}
.fs1_c00181{font-size:59.850000px;}
.fs0_c00181{font-size:60.900000px;}
.fs3_c00181{font-size:61.950000px;}
.fsa_c00181{font-size:63.000000px;}
.fs8_c00181{font-size:65.100000px;}
.fs5_c00181{font-size:67.200000px;}
.fs2_c00181{font-size:68.250000px;}
.fs6_c00181{font-size:70.350000px;}
.fs7_c00181{font-size:71.400000px;}
.y0_c00181{bottom:0.000000px;}
.yd6_c00181{bottom:29.890500px;}
.yd5_c00181{bottom:47.509500px;}
.yce_c00181{bottom:62.914500px;}
.ycf_c00181{bottom:63.255000px;}
.yd0_c00181{bottom:63.598500px;}
.yd1_c00181{bottom:64.464000px;}
.yd2_c00181{bottom:64.777500px;}
.yd3_c00181{bottom:65.331000px;}
.yd4_c00181{bottom:66.105000px;}
.yc6_c00181{bottom:78.844500px;}
.yc7_c00181{bottom:79.599000px;}
.yc8_c00181{bottom:79.765500px;}
.yc9_c00181{bottom:80.511000px;}
.yca_c00181{bottom:81.256500px;}
.ycb_c00181{bottom:81.505500px;}
.ycc_c00181{bottom:81.922500px;}
.ycd_c00181{bottom:82.128000px;}
.ybe_c00181{bottom:96.666000px;}
.ybf_c00181{bottom:97.752000px;}
.yc0_c00181{bottom:98.302500px;}
.yc1_c00181{bottom:99.112500px;}
.yc2_c00181{bottom:100.260000px;}
.yc3_c00181{bottom:100.774500px;}
.yc4_c00181{bottom:101.205000px;}
.yc5_c00181{bottom:102.181500px;}
.yb7_c00181{bottom:113.133000px;}
.yb8_c00181{bottom:114.018000px;}
.yb9_c00181{bottom:114.199500px;}
.yba_c00181{bottom:114.462000px;}
.ybb_c00181{bottom:115.213500px;}
.ybc_c00181{bottom:115.518000px;}
.ybd_c00181{bottom:116.487000px;}
.yae_c00181{bottom:130.683000px;}
.yaf_c00181{bottom:131.052000px;}
.yb0_c00181{bottom:131.307000px;}
.yb1_c00181{bottom:132.105000px;}
.yb2_c00181{bottom:132.336000px;}
.yb3_c00181{bottom:132.523500px;}
.yb4_c00181{bottom:133.096500px;}
.yb5_c00181{bottom:133.320000px;}
.yb6_c00181{bottom:133.842000px;}
.ya3_c00181{bottom:147.693000px;}
.ya4_c00181{bottom:148.072500px;}
.ya5_c00181{bottom:148.293000px;}
.ya6_c00181{bottom:148.749000px;}
.ya7_c00181{bottom:149.113500px;}
.ya8_c00181{bottom:149.367000px;}
.ya9_c00181{bottom:149.602500px;}
.yaa_c00181{bottom:150.118500px;}
.yab_c00181{bottom:150.481500px;}
.yac_c00181{bottom:150.972000px;}
.yad_c00181{bottom:151.320000px;}
.ya2_c00181{bottom:167.961000px;}
.y9a_c00181{bottom:183.873000px;}
.y9b_c00181{bottom:184.339500px;}
.y9c_c00181{bottom:185.041500px;}
.y9d_c00181{bottom:185.229000px;}
.y9e_c00181{bottom:186.298500px;}
.y9f_c00181{bottom:186.534000px;}
.ya0_c00181{bottom:187.123500px;}
.ya1_c00181{bottom:187.320000px;}
.y99_c00181{bottom:203.332500px;}
.y98_c00181{bottom:220.879500px;}
.y90_c00181{bottom:235.981500px;}
.y91_c00181{bottom:236.563500px;}
.y92_c00181{bottom:237.076500px;}
.y93_c00181{bottom:237.784500px;}
.y94_c00181{bottom:238.045500px;}
.y95_c00181{bottom:238.714500px;}
.y96_c00181{bottom:239.055000px;}
.y97_c00181{bottom:240.075000px;}
.y86_c00181{bottom:253.800000px;}
.y87_c00181{bottom:254.008500px;}
.y88_c00181{bottom:254.131500px;}
.y89_c00181{bottom:254.331000px;}
.y8a_c00181{bottom:254.958000px;}
.y8b_c00181{bottom:255.099000px;}
.y8c_c00181{bottom:255.636000px;}
.y8d_c00181{bottom:255.831000px;}
.y8e_c00181{bottom:256.384500px;}
.y8f_c00181{bottom:256.584000px;}
.y7e_c00181{bottom:270.811500px;}
.y7f_c00181{bottom:271.035000px;}
.y80_c00181{bottom:271.731000px;}
.y81_c00181{bottom:271.861500px;}
.y82_c00181{bottom:272.676000px;}
.y83_c00181{bottom:272.811000px;}
.y84_c00181{bottom:273.402000px;}
.y85_c00181{bottom:273.537000px;}
.y77_c00181{bottom:287.821500px;}
.y78_c00181{bottom:288.135000px;}
.y79_c00181{bottom:288.498000px;}
.y7a_c00181{bottom:289.398000px;}
.y7b_c00181{bottom:289.567500px;}
.y7c_c00181{bottom:290.190000px;}
.y7d_c00181{bottom:290.767500px;}
.y6f_c00181{bottom:304.561500px;}
.y70_c00181{bottom:305.332500px;}
.y71_c00181{bottom:305.533500px;}
.y72_c00181{bottom:306.438000px;}
.y73_c00181{bottom:306.868500px;}
.y74_c00181{bottom:307.039500px;}
.y75_c00181{bottom:307.561500px;}
.y76_c00181{bottom:307.872000px;}
.y67_c00181{bottom:321.031500px;}
.y68_c00181{bottom:321.679500px;}
.y69_c00181{bottom:322.027500px;}
.y6a_c00181{bottom:322.294500px;}
.y6b_c00181{bottom:322.909500px;}
.y6c_c00181{bottom:323.413500px;}
.y6d_c00181{bottom:324.216000px;}
.y6e_c00181{bottom:325.479000px;}
.y5e_c00181{bottom:338.041500px;}
.y5f_c00181{bottom:338.605500px;}
.y60_c00181{bottom:338.835000px;}
.y61_c00181{bottom:339.619500px;}
.y62_c00181{bottom:339.960000px;}
.y63_c00181{bottom:340.887000px;}
.y64_c00181{bottom:341.149500px;}
.y65_c00181{bottom:341.577000px;}
.y66_c00181{bottom:342.651000px;}
.y56_c00181{bottom:355.321500px;}
.y57_c00181{bottom:355.764000px;}
.y58_c00181{bottom:355.992000px;}
.y59_c00181{bottom:356.757000px;}
.y5a_c00181{bottom:357.141000px;}
.y5b_c00181{bottom:358.168500px;}
.y5c_c00181{bottom:359.131500px;}
.y5d_c00181{bottom:359.754000px;}
.y4d_c00181{bottom:373.681500px;}
.y4e_c00181{bottom:373.915500px;}
.y4f_c00181{bottom:374.557500px;}
.y50_c00181{bottom:374.716500px;}
.y51_c00181{bottom:375.577500px;}
.y52_c00181{bottom:375.964500px;}
.y53_c00181{bottom:376.300500px;}
.y54_c00181{bottom:377.208000px;}
.y55_c00181{bottom:377.544000px;}
.y43_c00181{bottom:390.963000px;}
.y44_c00181{bottom:391.648500px;}
.y45_c00181{bottom:391.866000px;}
.y46_c00181{bottom:392.418000px;}
.y47_c00181{bottom:392.850000px;}
.y48_c00181{bottom:393.672000px;}
.y49_c00181{bottom:393.943500px;}
.y4a_c00181{bottom:394.810500px;}
.y4b_c00181{bottom:395.160000px;}
.y4c_c00181{bottom:395.622000px;}
.y39_c00181{bottom:408.784500px;}
.y3a_c00181{bottom:409.404000px;}
.y3b_c00181{bottom:409.698000px;}
.y3c_c00181{bottom:410.146500px;}
.y3d_c00181{bottom:411.064500px;}
.y3e_c00181{bottom:411.411000px;}
.y3f_c00181{bottom:412.680000px;}
.y40_c00181{bottom:413.100000px;}
.y41_c00181{bottom:414.034500px;}
.y42_c00181{bottom:414.378000px;}
.y34_c00181{bottom:426.063000px;}
.y35_c00181{bottom:427.030500px;}
.y36_c00181{bottom:427.447500px;}
.y37_c00181{bottom:428.835000px;}
.y38_c00181{bottom:429.675000px;}
.y33_c00181{bottom:445.266000px;}
.y2b_c00181{bottom:460.350000px;}
.y2c_c00181{bottom:460.729500px;}
.y2d_c00181{bottom:461.028000px;}
.y2e_c00181{bottom:461.934000px;}
.y2f_c00181{bottom:462.228000px;}
.y30_c00181{bottom:463.083000px;}
.y31_c00181{bottom:463.266000px;}
.y32_c00181{bottom:463.599000px;}
.y23_c00181{bottom:476.551500px;}
.y24_c00181{bottom:477.336000px;}
.y25_c00181{bottom:477.754500px;}
.y26_c00181{bottom:478.419000px;}
.y27_c00181{bottom:479.386500px;}
.y28_c00181{bottom:479.577000px;}
.y29_c00181{bottom:480.415500px;}
.y2a_c00181{bottom:480.778500px;}
.y1c_c00181{bottom:493.023000px;}
.y1d_c00181{bottom:493.537500px;}
.y1e_c00181{bottom:493.714500px;}
.y1f_c00181{bottom:494.962500px;}
.y20_c00181{bottom:496.240500px;}
.y21_c00181{bottom:496.726500px;}
.y22_c00181{bottom:497.659500px;}
.y17_c00181{bottom:511.650000px;}
.y18_c00181{bottom:512.013000px;}
.y19_c00181{bottom:513.174000px;}
.y1a_c00181{bottom:514.686000px;}
.y1b_c00181{bottom:515.359500px;}
.y10_c00181{bottom:526.776000px;}
.y11_c00181{bottom:527.977500px;}
.y12_c00181{bottom:528.249000px;}
.y13_c00181{bottom:529.816500px;}
.y14_c00181{bottom:530.220000px;}
.y15_c00181{bottom:531.835500px;}
.y16_c00181{bottom:531.972000px;}
.y8_c00181{bottom:545.134500px;}
.y9_c00181{bottom:545.955000px;}
.ya_c00181{bottom:546.345000px;}
.yb_c00181{bottom:547.492500px;}
.yc_c00181{bottom:547.740000px;}
.yd_c00181{bottom:548.959500px;}
.ye_c00181{bottom:549.172500px;}
.yf_c00181{bottom:549.502500px;}
.y2_c00181{bottom:562.689000px;}
.y3_c00181{bottom:565.663500px;}
.y4_c00181{bottom:566.076000px;}
.y5_c00181{bottom:566.859000px;}
.y6_c00181{bottom:567.529500px;}
.y7_c00181{bottom:567.787500px;}
.y1_c00181{bottom:581.596500px;}
.hb_c00181{height:57.750000px;}
.h6_c00181{height:58.800000px;}
.h3_c00181{height:59.850000px;}
.h2_c00181{height:60.900000px;}
.h5_c00181{height:61.950000px;}
.hc_c00181{height:63.000000px;}
.ha_c00181{height:65.100000px;}
.h7_c00181{height:67.200000px;}
.h4_c00181{height:68.250000px;}
.h8_c00181{height:70.350000px;}
.h9_c00181{height:71.400000px;}
.h0_c00181{height:623.100000px;}
.h1_c00181{height:623.250000px;}
.w1_c00181{width:383.250000px;}
.w0_c00181{width:383.400000px;}
.x0_c00181{left:0.000000px;}
.x9_c00181{left:50.752500px;}
.x3_c00181{left:51.795000px;}
.x33_c00181{left:53.175000px;}
.x6e_c00181{left:54.175500px;}
.x42_c00181{left:69.025500px;}
.x5b_c00181{left:74.901000px;}
.x15_c00181{left:77.385000px;}
.x19_c00181{left:80.119500px;}
.x24_c00181{left:81.165000px;}
.x34_c00181{left:82.648500px;}
.x75_c00181{left:84.117000px;}
.x4d_c00181{left:85.527000px;}
.x5f_c00181{left:86.733000px;}
.x1a_c00181{left:89.919000px;}
.x67_c00181{left:91.527000px;}
.x48_c00181{left:94.138500px;}
.x3c_c00181{left:95.431500px;}
.x35_c00181{left:96.648000px;}
.x6f_c00181{left:98.005500px;}
.xa_c00181{left:99.031500px;}
.x71_c00181{left:100.087500px;}
.x29_c00181{left:102.330000px;}
.x1f_c00181{left:104.097000px;}
.x11_c00181{left:106.230000px;}
.x76_c00181{left:107.334000px;}
.x3d_c00181{left:108.993000px;}
.x57_c00181{left:110.029500px;}
.x68_c00181{left:111.777000px;}
.x43_c00181{left:114.921000px;}
.x2f_c00181{left:117.102000px;}
.x12_c00181{left:118.596000px;}
.xb_c00181{left:122.007000px;}
.x6a_c00181{left:123.117000px;}
.x1_c00181{left:126.090000px;}
.x79_c00181{left:127.867500px;}
.x69_c00181{left:129.057000px;}
.x20_c00181{left:131.970000px;}
.x55_c00181{left:133.527000px;}
.x72_c00181{left:135.108000px;}
.x51_c00181{left:136.746000px;}
.x7c_c00181{left:140.376000px;}
.x49_c00181{left:141.972000px;}
.x3e_c00181{left:143.509500px;}
.x30_c00181{left:144.922500px;}
.x70_c00181{left:156.055500px;}
.x5c_c00181{left:157.528500px;}
.x1b_c00181{left:159.282000px;}
.x16_c00181{left:160.303500px;}
.x36_c00181{left:161.728500px;}
.x73_c00181{left:163.173000px;}
.x7a_c00181{left:164.854500px;}
.x4a_c00181{left:166.009500px;}
.x60_c00181{left:169.390500px;}
.x2a_c00181{left:170.640000px;}
.x25_c00181{left:173.779500px;}
.x21_c00181{left:176.244000px;}
.x37_c00181{left:178.197000px;}
.x77_c00181{left:179.946000px;}
.x62_c00181{left:181.870500px;}
.x7d_c00181{left:182.995500px;}
.x2_c00181{left:184.140000px;}
.x44_c00181{left:187.785000px;}
.xc_c00181{left:189.547500px;}
.x7f_c00181{left:193.198500px;}
.x2b_c00181{left:194.940000px;}
.x26_c00181{left:196.444500px;}
.x58_c00181{left:199.120500px;}
.x63_c00181{left:200.497500px;}
.xd_c00181{left:204.073500px;}
.x6b_c00181{left:206.817000px;}
.x13_c00181{left:208.204500px;}
.x80_c00181{left:209.923500px;}
.x52_c00181{left:211.342500px;}
.x45_c00181{left:215.388000px;}
.x4_c00181{left:217.038000px;}
.x4e_c00181{left:219.732000px;}
.x3f_c00181{left:221.880000px;}
.x7b_c00181{left:227.476500px;}
.x1c_c00181{left:230.278500px;}
.x2c_c00181{left:234.900000px;}
.x31_c00181{left:237.430500px;}
.x38_c00181{left:238.627500px;}
.x5_c00181{left:239.995500px;}
.x7e_c00181{left:243.351000px;}
.x56_c00181{left:244.767000px;}
.x64_c00181{left:248.293500px;}
.x59_c00181{left:250.966500px;}
.x22_c00181{left:253.455000px;}
.x2d_c00181{left:255.690000px;}
.x1d_c00181{left:257.280000px;}
.x39_c00181{left:258.604500px;}
.x4f_c00181{left:260.251500px;}
.x27_c00181{left:262.254000px;}
.x53_c00181{left:264.802500px;}
.x17_c00181{left:268.285500px;}
.x6c_c00181{left:270.537000px;}
.x65_c00181{left:272.596500px;}
.xe_c00181{left:275.803500px;}
.x14_c00181{left:281.602500px;}
.x6_c00181{left:283.461000px;}
.x81_c00181{left:285.117000px;}
.xf_c00181{left:288.307500px;}
.x4b_c00181{left:290.466000px;}
.x32_c00181{left:293.397000px;}
.x5a_c00181{left:299.052000px;}
.x28_c00181{left:302.010000px;}
.x3a_c00181{left:303.135000px;}
.x46_c00181{left:304.180500px;}
.x74_c00181{left:306.004500px;}
.x10_c00181{left:307.755000px;}
.x1e_c00181{left:309.108000px;}
.x5d_c00181{left:311.647500px;}
.x6d_c00181{left:313.737000px;}
.x40_c00181{left:314.928000px;}
.x18_c00181{left:316.344000px;}
.x3b_c00181{left:319.524000px;}
.x7_c00181{left:320.709000px;}
.x82_c00181{left:322.377000px;}
.x50_c00181{left:323.418000px;}
.x5e_c00181{left:325.207500px;}
.x47_c00181{left:328.213500px;}
.x4c_c00181{left:329.331000px;}
.x61_c00181{left:331.948500px;}
.x23_c00181{left:333.574500px;}
.x8_c00181{left:335.034000px;}
.x78_c00181{left:337.876500px;}
.x2e_c00181{left:340.470000px;}
.x83_c00181{left:342.627000px;}
.x41_c00181{left:343.831500px;}
.x66_c00181{left:345.444000px;}
.x54_c00181{left:348.967500px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs9_c00181{font-size:51.333333pt;}
.fs4_c00181{font-size:52.266667pt;}
.fs1_c00181{font-size:53.200000pt;}
.fs0_c00181{font-size:54.133333pt;}
.fs3_c00181{font-size:55.066667pt;}
.fsa_c00181{font-size:56.000000pt;}
.fs8_c00181{font-size:57.866667pt;}
.fs5_c00181{font-size:59.733333pt;}
.fs2_c00181{font-size:60.666667pt;}
.fs6_c00181{font-size:62.533333pt;}
.fs7_c00181{font-size:63.466667pt;}
.y0_c00181{bottom:0.000000pt;}
.yd6_c00181{bottom:26.569333pt;}
.yd5_c00181{bottom:42.230667pt;}
.yce_c00181{bottom:55.924000pt;}
.ycf_c00181{bottom:56.226667pt;}
.yd0_c00181{bottom:56.532000pt;}
.yd1_c00181{bottom:57.301333pt;}
.yd2_c00181{bottom:57.580000pt;}
.yd3_c00181{bottom:58.072000pt;}
.yd4_c00181{bottom:58.760000pt;}
.yc6_c00181{bottom:70.084000pt;}
.yc7_c00181{bottom:70.754667pt;}
.yc8_c00181{bottom:70.902667pt;}
.yc9_c00181{bottom:71.565333pt;}
.yca_c00181{bottom:72.228000pt;}
.ycb_c00181{bottom:72.449333pt;}
.ycc_c00181{bottom:72.820000pt;}
.ycd_c00181{bottom:73.002667pt;}
.ybe_c00181{bottom:85.925333pt;}
.ybf_c00181{bottom:86.890667pt;}
.yc0_c00181{bottom:87.380000pt;}
.yc1_c00181{bottom:88.100000pt;}
.yc2_c00181{bottom:89.120000pt;}
.yc3_c00181{bottom:89.577333pt;}
.yc4_c00181{bottom:89.960000pt;}
.yc5_c00181{bottom:90.828000pt;}
.yb7_c00181{bottom:100.562667pt;}
.yb8_c00181{bottom:101.349333pt;}
.yb9_c00181{bottom:101.510667pt;}
.yba_c00181{bottom:101.744000pt;}
.ybb_c00181{bottom:102.412000pt;}
.ybc_c00181{bottom:102.682667pt;}
.ybd_c00181{bottom:103.544000pt;}
.yae_c00181{bottom:116.162667pt;}
.yaf_c00181{bottom:116.490667pt;}
.yb0_c00181{bottom:116.717333pt;}
.yb1_c00181{bottom:117.426667pt;}
.yb2_c00181{bottom:117.632000pt;}
.yb3_c00181{bottom:117.798667pt;}
.yb4_c00181{bottom:118.308000pt;}
.yb5_c00181{bottom:118.506667pt;}
.yb6_c00181{bottom:118.970667pt;}
.ya3_c00181{bottom:131.282667pt;}
.ya4_c00181{bottom:131.620000pt;}
.ya5_c00181{bottom:131.816000pt;}
.ya6_c00181{bottom:132.221333pt;}
.ya7_c00181{bottom:132.545333pt;}
.ya8_c00181{bottom:132.770667pt;}
.ya9_c00181{bottom:132.980000pt;}
.yaa_c00181{bottom:133.438667pt;}
.yab_c00181{bottom:133.761333pt;}
.yac_c00181{bottom:134.197333pt;}
.yad_c00181{bottom:134.506667pt;}
.ya2_c00181{bottom:149.298667pt;}
.y9a_c00181{bottom:163.442667pt;}
.y9b_c00181{bottom:163.857333pt;}
.y9c_c00181{bottom:164.481333pt;}
.y9d_c00181{bottom:164.648000pt;}
.y9e_c00181{bottom:165.598667pt;}
.y9f_c00181{bottom:165.808000pt;}
.ya0_c00181{bottom:166.332000pt;}
.ya1_c00181{bottom:166.506667pt;}
.y99_c00181{bottom:180.740000pt;}
.y98_c00181{bottom:196.337333pt;}
.y90_c00181{bottom:209.761333pt;}
.y91_c00181{bottom:210.278667pt;}
.y92_c00181{bottom:210.734667pt;}
.y93_c00181{bottom:211.364000pt;}
.y94_c00181{bottom:211.596000pt;}
.y95_c00181{bottom:212.190667pt;}
.y96_c00181{bottom:212.493333pt;}
.y97_c00181{bottom:213.400000pt;}
.y86_c00181{bottom:225.600000pt;}
.y87_c00181{bottom:225.785333pt;}
.y88_c00181{bottom:225.894667pt;}
.y89_c00181{bottom:226.072000pt;}
.y8a_c00181{bottom:226.629333pt;}
.y8b_c00181{bottom:226.754667pt;}
.y8c_c00181{bottom:227.232000pt;}
.y8d_c00181{bottom:227.405333pt;}
.y8e_c00181{bottom:227.897333pt;}
.y8f_c00181{bottom:228.074667pt;}
.y7e_c00181{bottom:240.721333pt;}
.y7f_c00181{bottom:240.920000pt;}
.y80_c00181{bottom:241.538667pt;}
.y81_c00181{bottom:241.654667pt;}
.y82_c00181{bottom:242.378667pt;}
.y83_c00181{bottom:242.498667pt;}
.y84_c00181{bottom:243.024000pt;}
.y85_c00181{bottom:243.144000pt;}
.y77_c00181{bottom:255.841333pt;}
.y78_c00181{bottom:256.120000pt;}
.y79_c00181{bottom:256.442667pt;}
.y7a_c00181{bottom:257.242667pt;}
.y7b_c00181{bottom:257.393333pt;}
.y7c_c00181{bottom:257.946667pt;}
.y7d_c00181{bottom:258.460000pt;}
.y6f_c00181{bottom:270.721333pt;}
.y70_c00181{bottom:271.406667pt;}
.y71_c00181{bottom:271.585333pt;}
.y72_c00181{bottom:272.389333pt;}
.y73_c00181{bottom:272.772000pt;}
.y74_c00181{bottom:272.924000pt;}
.y75_c00181{bottom:273.388000pt;}
.y76_c00181{bottom:273.664000pt;}
.y67_c00181{bottom:285.361333pt;}
.y68_c00181{bottom:285.937333pt;}
.y69_c00181{bottom:286.246667pt;}
.y6a_c00181{bottom:286.484000pt;}
.y6b_c00181{bottom:287.030667pt;}
.y6c_c00181{bottom:287.478667pt;}
.y6d_c00181{bottom:288.192000pt;}
.y6e_c00181{bottom:289.314667pt;}
.y5e_c00181{bottom:300.481333pt;}
.y5f_c00181{bottom:300.982667pt;}
.y60_c00181{bottom:301.186667pt;}
.y61_c00181{bottom:301.884000pt;}
.y62_c00181{bottom:302.186667pt;}
.y63_c00181{bottom:303.010667pt;}
.y64_c00181{bottom:303.244000pt;}
.y65_c00181{bottom:303.624000pt;}
.y66_c00181{bottom:304.578667pt;}
.y56_c00181{bottom:315.841333pt;}
.y57_c00181{bottom:316.234667pt;}
.y58_c00181{bottom:316.437333pt;}
.y59_c00181{bottom:317.117333pt;}
.y5a_c00181{bottom:317.458667pt;}
.y5b_c00181{bottom:318.372000pt;}
.y5c_c00181{bottom:319.228000pt;}
.y5d_c00181{bottom:319.781333pt;}
.y4d_c00181{bottom:332.161333pt;}
.y4e_c00181{bottom:332.369333pt;}
.y4f_c00181{bottom:332.940000pt;}
.y50_c00181{bottom:333.081333pt;}
.y51_c00181{bottom:333.846667pt;}
.y52_c00181{bottom:334.190667pt;}
.y53_c00181{bottom:334.489333pt;}
.y54_c00181{bottom:335.296000pt;}
.y55_c00181{bottom:335.594667pt;}
.y43_c00181{bottom:347.522667pt;}
.y44_c00181{bottom:348.132000pt;}
.y45_c00181{bottom:348.325333pt;}
.y46_c00181{bottom:348.816000pt;}
.y47_c00181{bottom:349.200000pt;}
.y48_c00181{bottom:349.930667pt;}
.y49_c00181{bottom:350.172000pt;}
.y4a_c00181{bottom:350.942667pt;}
.y4b_c00181{bottom:351.253333pt;}
.y4c_c00181{bottom:351.664000pt;}
.y39_c00181{bottom:363.364000pt;}
.y3a_c00181{bottom:363.914667pt;}
.y3b_c00181{bottom:364.176000pt;}
.y3c_c00181{bottom:364.574667pt;}
.y3d_c00181{bottom:365.390667pt;}
.y3e_c00181{bottom:365.698667pt;}
.y3f_c00181{bottom:366.826667pt;}
.y40_c00181{bottom:367.200000pt;}
.y41_c00181{bottom:368.030667pt;}
.y42_c00181{bottom:368.336000pt;}
.y34_c00181{bottom:378.722667pt;}
.y35_c00181{bottom:379.582667pt;}
.y36_c00181{bottom:379.953333pt;}
.y37_c00181{bottom:381.186667pt;}
.y38_c00181{bottom:381.933333pt;}
.y33_c00181{bottom:395.792000pt;}
.y2b_c00181{bottom:409.200000pt;}
.y2c_c00181{bottom:409.537333pt;}
.y2d_c00181{bottom:409.802667pt;}
.y2e_c00181{bottom:410.608000pt;}
.y2f_c00181{bottom:410.869333pt;}
.y30_c00181{bottom:411.629333pt;}
.y31_c00181{bottom:411.792000pt;}
.y32_c00181{bottom:412.088000pt;}
.y23_c00181{bottom:423.601333pt;}
.y24_c00181{bottom:424.298667pt;}
.y25_c00181{bottom:424.670667pt;}
.y26_c00181{bottom:425.261333pt;}
.y27_c00181{bottom:426.121333pt;}
.y28_c00181{bottom:426.290667pt;}
.y29_c00181{bottom:427.036000pt;}
.y2a_c00181{bottom:427.358667pt;}
.y1c_c00181{bottom:438.242667pt;}
.y1d_c00181{bottom:438.700000pt;}
.y1e_c00181{bottom:438.857333pt;}
.y1f_c00181{bottom:439.966667pt;}
.y20_c00181{bottom:441.102667pt;}
.y21_c00181{bottom:441.534667pt;}
.y22_c00181{bottom:442.364000pt;}
.y17_c00181{bottom:454.800000pt;}
.y18_c00181{bottom:455.122667pt;}
.y19_c00181{bottom:456.154667pt;}
.y1a_c00181{bottom:457.498667pt;}
.y1b_c00181{bottom:458.097333pt;}
.y10_c00181{bottom:468.245333pt;}
.y11_c00181{bottom:469.313333pt;}
.y12_c00181{bottom:469.554667pt;}
.y13_c00181{bottom:470.948000pt;}
.y14_c00181{bottom:471.306667pt;}
.y15_c00181{bottom:472.742667pt;}
.y16_c00181{bottom:472.864000pt;}
.y8_c00181{bottom:484.564000pt;}
.y9_c00181{bottom:485.293333pt;}
.ya_c00181{bottom:485.640000pt;}
.yb_c00181{bottom:486.660000pt;}
.yc_c00181{bottom:486.880000pt;}
.yd_c00181{bottom:487.964000pt;}
.ye_c00181{bottom:488.153333pt;}
.yf_c00181{bottom:488.446667pt;}
.y2_c00181{bottom:500.168000pt;}
.y3_c00181{bottom:502.812000pt;}
.y4_c00181{bottom:503.178667pt;}
.y5_c00181{bottom:503.874667pt;}
.y6_c00181{bottom:504.470667pt;}
.y7_c00181{bottom:504.700000pt;}
.y1_c00181{bottom:516.974667pt;}
.hb_c00181{height:51.333333pt;}
.h6_c00181{height:52.266667pt;}
.h3_c00181{height:53.200000pt;}
.h2_c00181{height:54.133333pt;}
.h5_c00181{height:55.066667pt;}
.hc_c00181{height:56.000000pt;}
.ha_c00181{height:57.866667pt;}
.h7_c00181{height:59.733333pt;}
.h4_c00181{height:60.666667pt;}
.h8_c00181{height:62.533333pt;}
.h9_c00181{height:63.466667pt;}
.h0_c00181{height:553.866667pt;}
.h1_c00181{height:554.000000pt;}
.w1_c00181{width:340.666667pt;}
.w0_c00181{width:340.800000pt;}
.x0_c00181{left:0.000000pt;}
.x9_c00181{left:45.113333pt;}
.x3_c00181{left:46.040000pt;}
.x33_c00181{left:47.266667pt;}
.x6e_c00181{left:48.156000pt;}
.x42_c00181{left:61.356000pt;}
.x5b_c00181{left:66.578667pt;}
.x15_c00181{left:68.786667pt;}
.x19_c00181{left:71.217333pt;}
.x24_c00181{left:72.146667pt;}
.x34_c00181{left:73.465333pt;}
.x75_c00181{left:74.770667pt;}
.x4d_c00181{left:76.024000pt;}
.x5f_c00181{left:77.096000pt;}
.x1a_c00181{left:79.928000pt;}
.x67_c00181{left:81.357333pt;}
.x48_c00181{left:83.678667pt;}
.x3c_c00181{left:84.828000pt;}
.x35_c00181{left:85.909333pt;}
.x6f_c00181{left:87.116000pt;}
.xa_c00181{left:88.028000pt;}
.x71_c00181{left:88.966667pt;}
.x29_c00181{left:90.960000pt;}
.x1f_c00181{left:92.530667pt;}
.x11_c00181{left:94.426667pt;}
.x76_c00181{left:95.408000pt;}
.x3d_c00181{left:96.882667pt;}
.x57_c00181{left:97.804000pt;}
.x68_c00181{left:99.357333pt;}
.x43_c00181{left:102.152000pt;}
.x2f_c00181{left:104.090667pt;}
.x12_c00181{left:105.418667pt;}
.xb_c00181{left:108.450667pt;}
.x6a_c00181{left:109.437333pt;}
.x1_c00181{left:112.080000pt;}
.x79_c00181{left:113.660000pt;}
.x69_c00181{left:114.717333pt;}
.x20_c00181{left:117.306667pt;}
.x55_c00181{left:118.690667pt;}
.x72_c00181{left:120.096000pt;}
.x51_c00181{left:121.552000pt;}
.x7c_c00181{left:124.778667pt;}
.x49_c00181{left:126.197333pt;}
.x3e_c00181{left:127.564000pt;}
.x30_c00181{left:128.820000pt;}
.x70_c00181{left:138.716000pt;}
.x5c_c00181{left:140.025333pt;}
.x1b_c00181{left:141.584000pt;}
.x16_c00181{left:142.492000pt;}
.x36_c00181{left:143.758667pt;}
.x73_c00181{left:145.042667pt;}
.x7a_c00181{left:146.537333pt;}
.x4a_c00181{left:147.564000pt;}
.x60_c00181{left:150.569333pt;}
.x2a_c00181{left:151.680000pt;}
.x25_c00181{left:154.470667pt;}
.x21_c00181{left:156.661333pt;}
.x37_c00181{left:158.397333pt;}
.x77_c00181{left:159.952000pt;}
.x62_c00181{left:161.662667pt;}
.x7d_c00181{left:162.662667pt;}
.x2_c00181{left:163.680000pt;}
.x44_c00181{left:166.920000pt;}
.xc_c00181{left:168.486667pt;}
.x7f_c00181{left:171.732000pt;}
.x2b_c00181{left:173.280000pt;}
.x26_c00181{left:174.617333pt;}
.x58_c00181{left:176.996000pt;}
.x63_c00181{left:178.220000pt;}
.xd_c00181{left:181.398667pt;}
.x6b_c00181{left:183.837333pt;}
.x13_c00181{left:185.070667pt;}
.x80_c00181{left:186.598667pt;}
.x52_c00181{left:187.860000pt;}
.x45_c00181{left:191.456000pt;}
.x4_c00181{left:192.922667pt;}
.x4e_c00181{left:195.317333pt;}
.x3f_c00181{left:197.226667pt;}
.x7b_c00181{left:202.201333pt;}
.x1c_c00181{left:204.692000pt;}
.x2c_c00181{left:208.800000pt;}
.x31_c00181{left:211.049333pt;}
.x38_c00181{left:212.113333pt;}
.x5_c00181{left:213.329333pt;}
.x7e_c00181{left:216.312000pt;}
.x56_c00181{left:217.570667pt;}
.x64_c00181{left:220.705333pt;}
.x59_c00181{left:223.081333pt;}
.x22_c00181{left:225.293333pt;}
.x2d_c00181{left:227.280000pt;}
.x1d_c00181{left:228.693333pt;}
.x39_c00181{left:229.870667pt;}
.x4f_c00181{left:231.334667pt;}
.x27_c00181{left:233.114667pt;}
.x53_c00181{left:235.380000pt;}
.x17_c00181{left:238.476000pt;}
.x6c_c00181{left:240.477333pt;}
.x65_c00181{left:242.308000pt;}
.xe_c00181{left:245.158667pt;}
.x14_c00181{left:250.313333pt;}
.x6_c00181{left:251.965333pt;}
.x81_c00181{left:253.437333pt;}
.xf_c00181{left:256.273333pt;}
.x4b_c00181{left:258.192000pt;}
.x32_c00181{left:260.797333pt;}
.x5a_c00181{left:265.824000pt;}
.x28_c00181{left:268.453333pt;}
.x3a_c00181{left:269.453333pt;}
.x46_c00181{left:270.382667pt;}
.x74_c00181{left:272.004000pt;}
.x10_c00181{left:273.560000pt;}
.x1e_c00181{left:274.762667pt;}
.x5d_c00181{left:277.020000pt;}
.x6d_c00181{left:278.877333pt;}
.x40_c00181{left:279.936000pt;}
.x18_c00181{left:281.194667pt;}
.x3b_c00181{left:284.021333pt;}
.x7_c00181{left:285.074667pt;}
.x82_c00181{left:286.557333pt;}
.x50_c00181{left:287.482667pt;}
.x5e_c00181{left:289.073333pt;}
.x47_c00181{left:291.745333pt;}
.x4c_c00181{left:292.738667pt;}
.x61_c00181{left:295.065333pt;}
.x23_c00181{left:296.510667pt;}
.x8_c00181{left:297.808000pt;}
.x78_c00181{left:300.334667pt;}
.x2e_c00181{left:302.640000pt;}
.x83_c00181{left:304.557333pt;}
.x41_c00181{left:305.628000pt;}
.x66_c00181{left:307.061333pt;}
.x54_c00181{left:310.193333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00182 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00182 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00182 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00182 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00182.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00182{transform:matrix(0.031620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031620,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.035355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00182{transform:matrix(0.041059,-0.000944,0.005748,0.249934,0,0);-ms-transform:matrix(0.041059,-0.000944,0.005748,0.249934,0,0);-webkit-transform:matrix(0.041059,-0.000944,0.005748,0.249934,0,0);}
.m18_c00182{transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);}
.m107_c00182{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m105_c00182{transform:matrix(0.142865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142865,0.000000,0.000000,0.250000,0,0);}
.m100_c00182{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.mcd_c00182{transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);}
.m109_c00182{transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);}
.mc5_c00182{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m101_c00182{transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.149465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);}
.m108_c00182{transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);}
.m103_c00182{transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);}
.mc3_c00182{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.mf2_c00182{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00182{transform:matrix(0.154845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154845,0.000000,0.000000,0.250000,0,0);}
.md3_c00182{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.155280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155280,0.000000,0.000000,0.250000,0,0);}
.me7_c00182{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.155740,-0.002180,0.003500,0.249976,0,0);-ms-transform:matrix(0.155740,-0.002180,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155740,-0.002180,0.003500,0.249976,0,0);}
.mb0_c00182{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.ma3_c00182{transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m7a_c00182{transform:matrix(0.159804,-0.002237,0.003500,0.249976,0,0);-ms-transform:matrix(0.159804,-0.002237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159804,-0.002237,0.003500,0.249976,0,0);}
.m32_c00182{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m49_c00182{transform:matrix(0.160734,-0.002250,0.003500,0.249976,0,0);-ms-transform:matrix(0.160734,-0.002250,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160734,-0.002250,0.003500,0.249976,0,0);}
.mad_c00182{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m98_c00182{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00182{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.mbe_c00182{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m91_c00182{transform:matrix(0.162727,-0.003743,0.005748,0.249934,0,0);-ms-transform:matrix(0.162727,-0.003743,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162727,-0.003743,0.005748,0.249934,0,0);}
.m15_c00182{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.mbb_c00182{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mfb_c00182{transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);}
.mf6_c00182{transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);}
.m41_c00182{transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);}
.m8c_c00182{transform:matrix(0.165346,-0.003803,0.005748,0.249934,0,0);-ms-transform:matrix(0.165346,-0.003803,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165346,-0.003803,0.005748,0.249934,0,0);}
.m38_c00182{transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);}
.md6_c00182{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00182{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{transform:matrix(0.166734,-0.002334,0.003500,0.249976,0,0);-ms-transform:matrix(0.166734,-0.002334,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166734,-0.002334,0.003500,0.249976,0,0);}
.mdf_c00182{transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);}
.mfd_c00182{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.mf0_c00182{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.mb2_c00182{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.mf8_c00182{transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);}
.mb3_c00182{transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);}
.m72_c00182{transform:matrix(0.169363,-0.002371,0.003500,0.249976,0,0);-ms-transform:matrix(0.169363,-0.002371,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169363,-0.002371,0.003500,0.249976,0,0);}
.m29_c00182{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.mfa_c00182{transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);}
.m4b_c00182{transform:matrix(0.170503,-0.002387,0.003500,0.249976,0,0);-ms-transform:matrix(0.170503,-0.002387,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170503,-0.002387,0.003500,0.249976,0,0);}
.m106_c00182{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.m9a_c00182{transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);}
.m78_c00182{transform:matrix(0.170613,-0.002389,0.003500,0.249976,0,0);-ms-transform:matrix(0.170613,-0.002389,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170613,-0.002389,0.003500,0.249976,0,0);}
.m13_c00182{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.mcb_c00182{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.maf_c00182{transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00182{transform:matrix(0.172084,-0.003958,0.005748,0.249934,0,0);-ms-transform:matrix(0.172084,-0.003958,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172084,-0.003958,0.005748,0.249934,0,0);}
.mb4_c00182{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.me0_c00182{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.maa_c00182{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m73_c00182{transform:matrix(0.172888,-0.002420,0.003500,0.249976,0,0);-ms-transform:matrix(0.172888,-0.002420,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172888,-0.002420,0.003500,0.249976,0,0);}
.m9c_c00182{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.mb5_c00182{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m99_c00182{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);}
.me2_c00182{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m94_c00182{transform:matrix(0.174499,-0.004013,0.005748,0.249934,0,0);-ms-transform:matrix(0.174499,-0.004013,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174499,-0.004013,0.005748,0.249934,0,0);}
.m79_c00182{transform:matrix(0.175228,-0.002453,0.003500,0.249976,0,0);-ms-transform:matrix(0.175228,-0.002453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175228,-0.002453,0.003500,0.249976,0,0);}
.mef_c00182{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.m76_c00182{transform:matrix(0.176083,-0.002465,0.003500,0.249976,0,0);-ms-transform:matrix(0.176083,-0.002465,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176083,-0.002465,0.003500,0.249976,0,0);}
.mf3_c00182{transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00182{transform:matrix(0.176363,-0.002469,0.003500,0.249976,0,0);-ms-transform:matrix(0.176363,-0.002469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176363,-0.002469,0.003500,0.249976,0,0);}
.md1_c00182{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.md7_c00182{transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);}
.mb7_c00182{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.mae_c00182{transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{transform:matrix(0.179657,-0.002515,0.003500,0.249976,0,0);-ms-transform:matrix(0.179657,-0.002515,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179657,-0.002515,0.003500,0.249976,0,0);}
.mda_c00182{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.mbc_c00182{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.me1_c00182{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.mf7_c00182{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m24_c00182{transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);}
.m65_c00182{transform:matrix(0.182632,-0.002557,0.003500,0.249976,0,0);-ms-transform:matrix(0.182632,-0.002557,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182632,-0.002557,0.003500,0.249976,0,0);}
.mf4_c00182{transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);}
.m92_c00182{transform:matrix(0.183082,-0.004211,0.005748,0.249934,0,0);-ms-transform:matrix(0.183082,-0.004211,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183082,-0.004211,0.005748,0.249934,0,0);}
.m42_c00182{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.mce_c00182{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.mc4_c00182{transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.mc9_c00182{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.mc6_c00182{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.m8d_c00182{transform:matrix(0.185391,-0.004264,0.005748,0.249934,0,0);-ms-transform:matrix(0.185391,-0.004264,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185391,-0.004264,0.005748,0.249934,0,0);}
.m97_c00182{transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.ma8_c00182{transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);}
.me6_c00182{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.m9d_c00182{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m88_c00182{transform:matrix(0.187066,-0.004303,0.005748,0.249934,0,0);-ms-transform:matrix(0.187066,-0.004303,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187066,-0.004303,0.005748,0.249934,0,0);}
.mdc_c00182{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);}
.m31_c00182{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m71_c00182{transform:matrix(0.188002,-0.002632,0.003500,0.249976,0,0);-ms-transform:matrix(0.188002,-0.002632,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188002,-0.002632,0.003500,0.249976,0,0);}
.m61_c00182{transform:matrix(0.188107,-0.002633,0.003500,0.249976,0,0);-ms-transform:matrix(0.188107,-0.002633,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188107,-0.002633,0.003500,0.249976,0,0);}
.mba_c00182{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m55_c00182{transform:matrix(0.188227,-0.002635,0.003500,0.249976,0,0);-ms-transform:matrix(0.188227,-0.002635,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188227,-0.002635,0.003500,0.249976,0,0);}
.m5d_c00182{transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);-ms-transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);}
.mb8_c00182{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.mf5_c00182{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m9e_c00182{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.m93_c00182{transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);-ms-transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);}
.m44_c00182{transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);}
.mcc_c00182{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.me3_c00182{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.md8_c00182{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m6a_c00182{transform:matrix(0.192321,-0.002692,0.003500,0.249976,0,0);-ms-transform:matrix(0.192321,-0.002692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192321,-0.002692,0.003500,0.249976,0,0);}
.m11_c00182{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.ma0_c00182{transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{transform:matrix(0.193786,-0.002713,0.003500,0.249976,0,0);-ms-transform:matrix(0.193786,-0.002713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193786,-0.002713,0.003500,0.249976,0,0);}
.m45_c00182{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mde_c00182{transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);}
.med_c00182{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00182{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.mdb_c00182{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m95_c00182{transform:matrix(0.195528,-0.004497,0.005748,0.249934,0,0);-ms-transform:matrix(0.195528,-0.004497,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195528,-0.004497,0.005748,0.249934,0,0);}
.md2_c00182{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m104_c00182{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00182{transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m102_c00182{transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);}
.m69_c00182{transform:matrix(0.198181,-0.002775,0.003500,0.249976,0,0);-ms-transform:matrix(0.198181,-0.002775,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198181,-0.002775,0.003500,0.249976,0,0);}
.m82_c00182{transform:matrix(0.198747,-0.004571,0.005748,0.249934,0,0);-ms-transform:matrix(0.198747,-0.004571,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198747,-0.004571,0.005748,0.249934,0,0);}
.md9_c00182{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.mfc_c00182{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.md4_c00182{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mf9_c00182{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);}
.m51_c00182{transform:matrix(0.200555,-0.002808,0.003500,0.249976,0,0);-ms-transform:matrix(0.200555,-0.002808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200555,-0.002808,0.003500,0.249976,0,0);}
.m6c_c00182{transform:matrix(0.200575,-0.002808,0.003500,0.249976,0,0);-ms-transform:matrix(0.200575,-0.002808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200575,-0.002808,0.003500,0.249976,0,0);}
.m26_c00182{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.m54_c00182{transform:matrix(0.201605,-0.002822,0.003500,0.249976,0,0);-ms-transform:matrix(0.201605,-0.002822,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201605,-0.002822,0.003500,0.249976,0,0);}
.me9_c00182{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m8f_c00182{transform:matrix(0.202157,-0.004650,0.005748,0.249934,0,0);-ms-transform:matrix(0.202157,-0.004650,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202157,-0.004650,0.005748,0.249934,0,0);}
.mca_c00182{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.mc7_c00182{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.m62_c00182{transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);}
.ma5_c00182{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.mbf_c00182{transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);}
.m83_c00182{transform:matrix(0.203336,-0.004677,0.005748,0.249934,0,0);-ms-transform:matrix(0.203336,-0.004677,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203336,-0.004677,0.005748,0.249934,0,0);}
.m3f_c00182{transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);}
.mc2_c00182{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.meb_c00182{transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);}
.m8e_c00182{transform:matrix(0.204166,-0.004696,0.005748,0.249934,0,0);-ms-transform:matrix(0.204166,-0.004696,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204166,-0.004696,0.005748,0.249934,0,0);}
.mea_c00182{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m77_c00182{transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);-ms-transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);}
.mb6_c00182{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.mf1_c00182{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.mc8_c00182{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00182{transform:matrix(0.205215,-0.002873,0.003500,0.249976,0,0);-ms-transform:matrix(0.205215,-0.002873,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205215,-0.002873,0.003500,0.249976,0,0);}
.m2_c00182{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m75_c00182{transform:matrix(0.205395,-0.002876,0.003500,0.249976,0,0);-ms-transform:matrix(0.205395,-0.002876,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205395,-0.002876,0.003500,0.249976,0,0);}
.me4_c00182{transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);}
.mfe_c00182{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.m9b_c00182{transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);}
.md0_c00182{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);}
.me5_c00182{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m6b_c00182{transform:matrix(0.207015,-0.002898,0.003500,0.249976,0,0);-ms-transform:matrix(0.207015,-0.002898,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207015,-0.002898,0.003500,0.249976,0,0);}
.md5_c00182{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.mac_c00182{transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);}
.mee_c00182{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m86_c00182{transform:matrix(0.208880,-0.004804,0.005748,0.249934,0,0);-ms-transform:matrix(0.208880,-0.004804,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208880,-0.004804,0.005748,0.249934,0,0);}
.me8_c00182{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.mc1_c00182{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.m64_c00182{transform:matrix(0.210224,-0.002943,0.003500,0.249976,0,0);-ms-transform:matrix(0.210224,-0.002943,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210224,-0.002943,0.003500,0.249976,0,0);}
.m5e_c00182{transform:matrix(0.210544,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210544,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210544,-0.002948,0.003500,0.249976,0,0);}
.mb1_c00182{transform:matrix(0.210595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210595,0.000000,0.000000,0.250000,0,0);}
.mab_c00182{transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210815,0.000000,0.000000,0.250000,0,0);}
.m5b_c00182{transform:matrix(0.210944,-0.002953,0.003500,0.249976,0,0);-ms-transform:matrix(0.210944,-0.002953,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210944,-0.002953,0.003500,0.249976,0,0);}
.m90_c00182{transform:matrix(0.211419,-0.004863,0.005748,0.249934,0,0);-ms-transform:matrix(0.211419,-0.004863,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211419,-0.004863,0.005748,0.249934,0,0);}
.m89_c00182{transform:matrix(0.211939,-0.004875,0.005748,0.249934,0,0);-ms-transform:matrix(0.211939,-0.004875,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211939,-0.004875,0.005748,0.249934,0,0);}
.m3c_c00182{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m68_c00182{transform:matrix(0.212314,-0.002972,0.003500,0.249976,0,0);-ms-transform:matrix(0.212314,-0.002972,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212314,-0.002972,0.003500,0.249976,0,0);}
.m5a_c00182{transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);-ms-transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212509,-0.002975,0.003500,0.249976,0,0);}
.m50_c00182{transform:matrix(0.212854,-0.002980,0.003500,0.249976,0,0);-ms-transform:matrix(0.212854,-0.002980,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212854,-0.002980,0.003500,0.249976,0,0);}
.mec_c00182{transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);}
.ma9_c00182{transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00182{transform:matrix(0.214409,-0.003002,0.003500,0.249976,0,0);-ms-transform:matrix(0.214409,-0.003002,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214409,-0.003002,0.003500,0.249976,0,0);}
.m1e_c00182{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.mb9_c00182{transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);}
.m70_c00182{transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);-ms-transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);}
.m6e_c00182{transform:matrix(0.216004,-0.003024,0.003500,0.249976,0,0);-ms-transform:matrix(0.216004,-0.003024,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216004,-0.003024,0.003500,0.249976,0,0);}
.m66_c00182{transform:matrix(0.216844,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216844,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216844,-0.003036,0.003500,0.249976,0,0);}
.m67_c00182{transform:matrix(0.217519,-0.003045,0.003500,0.249976,0,0);-ms-transform:matrix(0.217519,-0.003045,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217519,-0.003045,0.003500,0.249976,0,0);}
.m81_c00182{transform:matrix(0.217752,-0.005008,0.005748,0.249934,0,0);-ms-transform:matrix(0.217752,-0.005008,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217752,-0.005008,0.005748,0.249934,0,0);}
.mbd_c00182{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.m74_c00182{transform:matrix(0.218594,-0.003060,0.003500,0.249976,0,0);-ms-transform:matrix(0.218594,-0.003060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218594,-0.003060,0.003500,0.249976,0,0);}
.mff_c00182{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m6d_c00182{transform:matrix(0.219968,-0.003080,0.003500,0.249976,0,0);-ms-transform:matrix(0.219968,-0.003080,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219968,-0.003080,0.003500,0.249976,0,0);}
.mc0_c00182{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.m56_c00182{transform:matrix(0.220098,-0.003081,0.003500,0.249976,0,0);-ms-transform:matrix(0.220098,-0.003081,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220098,-0.003081,0.003500,0.249976,0,0);}
.m8a_c00182{transform:matrix(0.221616,-0.005097,0.005748,0.249934,0,0);-ms-transform:matrix(0.221616,-0.005097,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221616,-0.005097,0.005748,0.249934,0,0);}
.ma6_c00182{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.ma1_c00182{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.m5f_c00182{transform:matrix(0.223198,-0.003125,0.003500,0.249976,0,0);-ms-transform:matrix(0.223198,-0.003125,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223198,-0.003125,0.003500,0.249976,0,0);}
.m53_c00182{transform:matrix(0.224028,-0.003136,0.003500,0.249976,0,0);-ms-transform:matrix(0.224028,-0.003136,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224028,-0.003136,0.003500,0.249976,0,0);}
.m3a_c00182{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.mcf_c00182{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.mdd_c00182{transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);}
.m60_c00182{transform:matrix(0.229208,-0.003209,0.003500,0.249976,0,0);-ms-transform:matrix(0.229208,-0.003209,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229208,-0.003209,0.003500,0.249976,0,0);}
.m3_c00182{transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);}
.m7d_c00182{transform:matrix(0.236102,-0.003305,0.003500,0.249976,0,0);-ms-transform:matrix(0.236102,-0.003305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236102,-0.003305,0.003500,0.249976,0,0);}
.m63_c00182{transform:matrix(0.238622,-0.003341,0.003500,0.249976,0,0);-ms-transform:matrix(0.238622,-0.003341,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238622,-0.003341,0.003500,0.249976,0,0);}
.m87_c00182{transform:matrix(0.241191,-0.005547,0.005748,0.249934,0,0);-ms-transform:matrix(0.241191,-0.005547,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241191,-0.005547,0.005748,0.249934,0,0);}
.m47_c00182{transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);}
.m5c_c00182{transform:matrix(0.241726,-0.003384,0.003500,0.249976,0,0);-ms-transform:matrix(0.241726,-0.003384,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241726,-0.003384,0.003500,0.249976,0,0);}
.m80_c00182{transform:matrix(0.241936,-0.005565,0.005748,0.249934,0,0);-ms-transform:matrix(0.241936,-0.005565,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241936,-0.005565,0.005748,0.249934,0,0);}
.m1d_c00182{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m85_c00182{transform:matrix(0.245625,-0.005649,0.005748,0.249934,0,0);-ms-transform:matrix(0.245625,-0.005649,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245625,-0.005649,0.005748,0.249934,0,0);}
.m96_c00182{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m59_c00182{transform:matrix(0.251770,-0.003525,0.003500,0.249976,0,0);-ms-transform:matrix(0.251770,-0.003525,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251770,-0.003525,0.003500,0.249976,0,0);}
.m52_c00182{transform:matrix(0.254410,-0.003562,0.003500,0.249976,0,0);-ms-transform:matrix(0.254410,-0.003562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254410,-0.003562,0.003500,0.249976,0,0);}
.m14_c00182{transform:matrix(0.263930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263930,0.000000,0.000000,0.250000,0,0);}
.m4e_c00182{transform:matrix(0.266499,-0.003731,0.003500,0.249976,0,0);-ms-transform:matrix(0.266499,-0.003731,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266499,-0.003731,0.003500,0.249976,0,0);}
.m2b_c00182{transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00182{transform:matrix(0.267789,-0.003749,0.003500,0.249976,0,0);-ms-transform:matrix(0.267789,-0.003749,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267789,-0.003749,0.003500,0.249976,0,0);}
.m84_c00182{transform:matrix(0.268269,-0.006170,0.005748,0.249934,0,0);-ms-transform:matrix(0.268269,-0.006170,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268269,-0.006170,0.005748,0.249934,0,0);}
.mb_c00182{transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.272978,-0.003822,0.003500,0.249976,0,0);-ms-transform:matrix(0.272978,-0.003822,0.003500,0.249976,0,0);-webkit-transform:matrix(0.272978,-0.003822,0.003500,0.249976,0,0);}
.m8_c00182{transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00182{transform:matrix(0.318369,-0.004457,0.003500,0.249976,0,0);-ms-transform:matrix(0.318369,-0.004457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.318369,-0.004457,0.003500,0.249976,0,0);}
.mc_c00182{transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.338550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338550,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.373355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373355,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.389905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389905,0.000000,0.000000,0.250000,0,0);}
.m48_c00182{transform:matrix(0.436937,-0.006117,0.003500,0.249976,0,0);-ms-transform:matrix(0.436937,-0.006117,0.003500,0.249976,0,0);-webkit-transform:matrix(0.436937,-0.006117,0.003500,0.249976,0,0);}
.m10_c00182{transform:matrix(0.461395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461395,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.534865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534865,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.587570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587570,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.643050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643050,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.764400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764400,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(5.279485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.279485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.279485,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:0.000000px;}
.fc0_c00182{color:transparent;}
.fs4_c00182{font-size:24.150000px;}
.fs2_c00182{font-size:36.750000px;}
.fs1_c00182{font-size:40.950000px;}
.fsf_c00182{font-size:57.765273px;}
.fsb_c00182{font-size:58.805762px;}
.fse_c00182{font-size:58.815551px;}
.fsc_c00182{font-size:59.855865px;}
.fsa_c00182{font-size:60.905968px;}
.fs0_c00182{font-size:61.950000px;}
.fs6_c00182{font-size:63.000000px;}
.fs12_c00182{font-size:64.050000px;}
.fs8_c00182{font-size:65.100000px;}
.fs9_c00182{font-size:65.106379px;}
.fs10_c00182{font-size:65.117217px;}
.fs7_c00182{font-size:67.200000px;}
.fsd_c00182{font-size:67.206585px;}
.fs11_c00182{font-size:68.250000px;}
.fs13_c00182{font-size:69.300000px;}
.fs5_c00182{font-size:72.450000px;}
.fs3_c00182{font-size:73.500000px;}
.fs14_c00182{font-size:74.550000px;}
.y0_c00182{bottom:0.000000px;}
.y9f_c00182{bottom:32.523000px;}
.y9e_c00182{bottom:49.464000px;}
.y2_c00182{bottom:61.020000px;}
.y9d_c00182{bottom:68.095500px;}
.y9c_c00182{bottom:84.714000px;}
.y9b_c00182{bottom:103.327500px;}
.y9a_c00182{bottom:120.573000px;}
.y99_c00182{bottom:133.900500px;}
.y98_c00182{bottom:134.674500px;}
.y97_c00182{bottom:135.187500px;}
.y96_c00182{bottom:135.963000px;}
.y95_c00182{bottom:136.272000px;}
.y94_c00182{bottom:136.492500px;}
.y93_c00182{bottom:137.676000px;}
.y92_c00182{bottom:138.007500px;}
.y91_c00182{bottom:138.244500px;}
.y90_c00182{bottom:153.832500px;}
.y8f_c00182{bottom:171.583500px;}
.y8e_c00182{bottom:188.461500px;}
.y8d_c00182{bottom:204.708000px;}
.y8c_c00182{bottom:222.187500px;}
.y8b_c00182{bottom:240.334500px;}
.y8a_c00182{bottom:256.800000px;}
.y89_c00182{bottom:274.845000px;}
.y88_c00182{bottom:292.842000px;}
.y7d_c00182{bottom:308.331645px;}
.y7e_c00182{bottom:308.646394px;}
.y7f_c00182{bottom:308.843670px;}
.y80_c00182{bottom:309.309686px;}
.y81_c00182{bottom:309.644109px;}
.y82_c00182{bottom:310.129971px;}
.y83_c00182{bottom:310.583906px;}
.y84_c00182{bottom:310.872665px;}
.y85_c00182{bottom:311.228903px;}
.y86_c00182{bottom:311.458312px;}
.y87_c00182{bottom:311.671466px;}
.y74_c00182{bottom:325.616601px;}
.y75_c00182{bottom:325.877667px;}
.y76_c00182{bottom:326.225461px;}
.y77_c00182{bottom:326.349333px;}
.y78_c00182{bottom:327.086568px;}
.y79_c00182{bottom:327.666121px;}
.y7a_c00182{bottom:328.135042px;}
.y7b_c00182{bottom:328.363816px;}
.y7c_c00182{bottom:328.575157px;}
.y71_c00182{bottom:340.738500px;}
.y1_c00182{bottom:342.384000px;}
.y72_c00182{bottom:344.665531px;}
.y73_c00182{bottom:345.814933px;}
.y68_c00182{bottom:359.909292px;}
.y69_c00182{bottom:360.373347px;}
.y6a_c00182{bottom:361.518102px;}
.y6b_c00182{bottom:361.847703px;}
.y6c_c00182{bottom:362.463186px;}
.y6d_c00182{bottom:362.803578px;}
.y6e_c00182{bottom:364.059411px;}
.y6f_c00182{bottom:364.634544px;}
.y70_c00182{bottom:365.730594px;}
.y61_c00182{bottom:374.758623px;}
.y62_c00182{bottom:375.695769px;}
.y63_c00182{bottom:376.012407px;}
.y64_c00182{bottom:376.454667px;}
.y65_c00182{bottom:376.731006px;}
.y66_c00182{bottom:377.193069px;}
.y67_c00182{bottom:378.478416px;}
.y5a_c00182{bottom:392.039457px;}
.y5b_c00182{bottom:393.066987px;}
.y5c_c00182{bottom:393.758391px;}
.y5d_c00182{bottom:394.061883px;}
.y5e_c00182{bottom:394.870887px;}
.y5f_c00182{bottom:395.842137px;}
.y60_c00182{bottom:396.001149px;}
.y51_c00182{bottom:409.321917px;}
.y52_c00182{bottom:409.656771px;}
.y53_c00182{bottom:410.470803px;}
.y54_c00182{bottom:410.904687px;}
.y55_c00182{bottom:411.769557px;}
.y56_c00182{bottom:411.989853px;}
.y57_c00182{bottom:412.301934px;}
.y58_c00182{bottom:412.565823px;}
.y59_c00182{bottom:413.622798px;}
.y4a_c00182{bottom:426.331857px;}
.y4b_c00182{bottom:426.565509px;}
.y4c_c00182{bottom:427.231038px;}
.y4d_c00182{bottom:427.535622px;}
.y4e_c00182{bottom:428.925519px;}
.y4f_c00182{bottom:429.962199px;}
.y50_c00182{bottom:430.339197px;}
.y43_c00182{bottom:443.883000px;}
.y44_c00182{bottom:444.540489px;}
.y45_c00182{bottom:445.289223px;}
.y46_c00182{bottom:445.928043px;}
.y47_c00182{bottom:446.695635px;}
.y48_c00182{bottom:447.716088px;}
.y49_c00182{bottom:447.881589px;}
.y3a_c00182{bottom:460.353000px;}
.y3b_c00182{bottom:461.206986px;}
.y3c_c00182{bottom:461.604012px;}
.y3d_c00182{bottom:461.830056px;}
.y3e_c00182{bottom:462.292224px;}
.y3f_c00182{bottom:462.602163px;}
.y40_c00182{bottom:463.339515px;}
.y41_c00182{bottom:464.212989px;}
.y42_c00182{bottom:464.511378px;}
.y31_c00182{bottom:478.176000px;}
.y32_c00182{bottom:478.905000px;}
.y33_c00182{bottom:479.286000px;}
.y34_c00182{bottom:479.805000px;}
.y35_c00182{bottom:480.484500px;}
.y36_c00182{bottom:480.901500px;}
.y37_c00182{bottom:481.654500px;}
.y38_c00182{bottom:481.999500px;}
.y39_c00182{bottom:483.154500px;}
.y2a_c00182{bottom:495.993000px;}
.y2b_c00182{bottom:496.804500px;}
.y2c_c00182{bottom:497.055000px;}
.y2d_c00182{bottom:497.799000px;}
.y2e_c00182{bottom:498.019500px;}
.y2f_c00182{bottom:498.768000px;}
.y30_c00182{bottom:499.048500px;}
.y22_c00182{bottom:513.004500px;}
.y23_c00182{bottom:513.397500px;}
.y24_c00182{bottom:513.700500px;}
.y25_c00182{bottom:513.967500px;}
.y26_c00182{bottom:514.855500px;}
.y27_c00182{bottom:516.018000px;}
.y28_c00182{bottom:516.321000px;}
.y29_c00182{bottom:517.150500px;}
.y1a_c00182{bottom:530.554500px;}
.y1b_c00182{bottom:530.814000px;}
.y1c_c00182{bottom:531.123000px;}
.y1d_c00182{bottom:531.667500px;}
.y1e_c00182{bottom:532.464000px;}
.y1f_c00182{bottom:532.684500px;}
.y20_c00182{bottom:533.517000px;}
.y21_c00182{bottom:533.868000px;}
.y12_c00182{bottom:548.103000px;}
.y13_c00182{bottom:548.553000px;}
.y14_c00182{bottom:548.857500px;}
.y15_c00182{bottom:549.360000px;}
.y16_c00182{bottom:549.627000px;}
.y17_c00182{bottom:550.131000px;}
.y18_c00182{bottom:550.371000px;}
.y19_c00182{bottom:551.364000px;}
.y11_c00182{bottom:560.008500px;}
.ya_c00182{bottom:565.653000px;}
.yb_c00182{bottom:566.793000px;}
.yc_c00182{bottom:567.138000px;}
.yd_c00182{bottom:568.176000px;}
.ye_c00182{bottom:568.369500px;}
.yf_c00182{bottom:568.980000px;}
.y10_c00182{bottom:569.157000px;}
.y4_c00182{bottom:574.023000px;}
.y5_c00182{bottom:574.873500px;}
.y6_c00182{bottom:576.370500px;}
.y7_c00182{bottom:577.353000px;}
.y8_c00182{bottom:578.037000px;}
.y9_c00182{bottom:578.950500px;}
.y3_c00182{bottom:592.110000px;}
.h6_c00182{height:24.150000px;}
.h4_c00182{height:36.750000px;}
.h3_c00182{height:40.950000px;}
.h11_c00182{height:57.765273px;}
.hd_c00182{height:58.805762px;}
.h10_c00182{height:58.815551px;}
.he_c00182{height:59.855865px;}
.hc_c00182{height:60.905968px;}
.h2_c00182{height:61.950000px;}
.h8_c00182{height:63.000000px;}
.h14_c00182{height:64.050000px;}
.ha_c00182{height:65.100000px;}
.hb_c00182{height:65.106379px;}
.h12_c00182{height:65.117217px;}
.h9_c00182{height:67.200000px;}
.hf_c00182{height:67.206585px;}
.h13_c00182{height:68.250000px;}
.h15_c00182{height:69.300000px;}
.h7_c00182{height:72.450000px;}
.h5_c00182{height:73.500000px;}
.h16_c00182{height:74.550000px;}
.h0_c00182{height:623.100000px;}
.h1_c00182{height:623.250000px;}
.w1_c00182{width:383.250000px;}
.w0_c00182{width:383.400000px;}
.x0_c00182{left:0.000000px;}
.x37_c00182{left:6.132000px;}
.x61_c00182{left:12.960000px;}
.x1_c00182{left:21.870000px;}
.xe_c00182{left:29.067000px;}
.x1d_c00182{left:32.245500px;}
.x3e_c00182{left:33.394500px;}
.x8_c00182{left:34.435500px;}
.x7c_c00182{left:35.785500px;}
.x82_c00182{left:36.988500px;}
.x7f_c00182{left:38.608500px;}
.x74_c00182{left:43.740000px;}
.x43_c00182{left:49.283511px;}
.x24_c00182{left:52.270500px;}
.x47_c00182{left:56.004504px;}
.x58_c00182{left:57.091496px;}
.x29_c00182{left:58.501500px;}
.x2_c00182{left:62.910000px;}
.x6e_c00182{left:63.990000px;}
.x1e_c00182{left:66.849000px;}
.x7d_c00182{left:69.214500px;}
.x62_c00182{left:72.360000px;}
.x25_c00182{left:76.030500px;}
.x2a_c00182{left:78.751500px;}
.x3f_c00182{left:80.358000px;}
.x9_c00182{left:81.655500px;}
.x79_c00182{left:84.240000px;}
.x6a_c00182{left:86.130000px;}
.x65_c00182{left:87.480000px;}
.x59_c00182{left:88.721724px;}
.x1f_c00182{left:90.297000px;}
.x44_c00182{left:93.606381px;}
.x38_c00182{left:95.490000px;}
.x2b_c00182{left:96.538500px;}
.x15_c00182{left:97.743000px;}
.x34_c00182{left:98.766000px;}
.x4f_c00182{left:100.345554px;}
.x4c_c00182{left:105.440403px;}
.x66_c00182{left:107.460000px;}
.x2f_c00182{left:108.717000px;}
.x48_c00182{left:110.291748px;}
.x39_c00182{left:111.636000px;}
.x3_c00182{left:113.130000px;}
.x5b_c00182{left:114.612270px;}
.xf_c00182{left:116.746500px;}
.x26_c00182{left:117.904500px;}
.x6b_c00182{left:119.070000px;}
.x50_c00182{left:122.962554px;}
.x75_c00182{left:124.200000px;}
.x20_c00182{left:128.956500px;}
.x53_c00182{left:130.326264px;}
.x40_c00182{left:133.839000px;}
.x49_c00182{left:139.247349px;}
.x10_c00182{left:143.268000px;}
.x3a_c00182{left:144.648000px;}
.x81_c00182{left:146.608500px;}
.x21_c00182{left:149.479500px;}
.x72_c00182{left:150.930000px;}
.x4_c00182{left:152.010000px;}
.x51_c00182{left:154.552554px;}
.x2c_c00182{left:155.724000px;}
.x6f_c00182{left:157.950000px;}
.x30_c00182{left:161.836500px;}
.xa_c00182{left:164.796000px;}
.x3b_c00182{left:166.786500px;}
.x16_c00182{left:168.213000px;}
.x35_c00182{left:169.239000px;}
.x84_c00182{left:170.908500px;}
.x7_c00182{left:172.800000px;}
.x52_c00182{left:174.291054px;}
.x76_c00182{left:175.500000px;}
.x4d_c00182{left:176.504403px;}
.x31_c00182{left:177.576000px;}
.x5_c00182{left:180.090000px;}
.x5c_c00182{left:182.968054px;}
.x87_c00182{left:185.758500px;}
.x86_c00182{left:186.838500px;}
.x22_c00182{left:188.304000px;}
.x17_c00182{left:194.673000px;}
.x27_c00182{left:196.197000px;}
.x7a_c00182{left:201.960000px;}
.x88_c00182{left:205.468500px;}
.x6_c00182{left:206.820000px;}
.x18_c00182{left:211.683000px;}
.x7e_c00182{left:215.608500px;}
.x70_c00182{left:216.810000px;}
.xb_c00182{left:219.394500px;}
.x5d_c00182{left:220.779111px;}
.x11_c00182{left:223.167000px;}
.x6c_c00182{left:225.450000px;}
.x67_c00182{left:227.070000px;}
.x63_c00182{left:229.230000px;}
.x32_c00182{left:231.040500px;}
.x2d_c00182{left:233.212500px;}
.x41_c00182{left:234.297000px;}
.x19_c00182{left:236.793000px;}
.x12_c00182{left:238.008000px;}
.x68_c00182{left:239.490000px;}
.x54_c00182{left:240.938982px;}
.x71_c00182{left:242.190000px;}
.x5e_c00182{left:244.818183px;}
.x4a_c00182{left:249.969795px;}
.x33_c00182{left:251.023500px;}
.x80_c00182{left:252.448500px;}
.x2e_c00182{left:253.462500px;}
.x64_c00182{left:254.610000px;}
.xc_c00182{left:257.409000px;}
.x85_c00182{left:258.658500px;}
.x1a_c00182{left:259.743000px;}
.x5a_c00182{left:262.316610px;}
.x6d_c00182{left:264.330000px;}
.x77_c00182{left:268.110000px;}
.x55_c00182{left:269.696067px;}
.x5f_c00182{left:274.531704px;}
.x45_c00182{left:275.615319px;}
.x83_c00182{left:277.018500px;}
.x1b_c00182{left:278.643000px;}
.x3c_c00182{left:281.845500px;}
.x23_c00182{left:283.086000px;}
.x13_c00182{left:284.959500px;}
.x28_c00182{left:287.185500px;}
.x57_c00182{left:288.441000px;}
.x78_c00182{left:289.710000px;}
.x73_c00182{left:291.870000px;}
.x1c_c00182{left:293.763000px;}
.x14_c00182{left:298.521000px;}
.x46_c00182{left:300.721962px;}
.x69_c00182{left:302.130000px;}
.x3d_c00182{left:303.159000px;}
.x7b_c00182{left:304.560000px;}
.xd_c00182{left:308.152500px;}
.x60_c00182{left:311.522088px;}
.x4e_c00182{left:315.023403px;}
.x42_c00182{left:319.008000px;}
.x4b_c00182{left:320.431308px;}
.x89_c00182{left:322.108500px;}
.x56_c00182{left:324.516468px;}
.x36_c00182{left:326.305500px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.000000pt;}
.fs4_c00182{font-size:21.466667pt;}
.fs2_c00182{font-size:32.666667pt;}
.fs1_c00182{font-size:36.400000pt;}
.fsf_c00182{font-size:51.346909pt;}
.fsb_c00182{font-size:52.271789pt;}
.fse_c00182{font-size:52.280489pt;}
.fsc_c00182{font-size:53.205213pt;}
.fsa_c00182{font-size:54.138638pt;}
.fs0_c00182{font-size:55.066667pt;}
.fs6_c00182{font-size:56.000000pt;}
.fs12_c00182{font-size:56.933333pt;}
.fs8_c00182{font-size:57.866667pt;}
.fs9_c00182{font-size:57.872337pt;}
.fs10_c00182{font-size:57.881970pt;}
.fs7_c00182{font-size:59.733333pt;}
.fsd_c00182{font-size:59.739187pt;}
.fs11_c00182{font-size:60.666667pt;}
.fs13_c00182{font-size:61.600000pt;}
.fs5_c00182{font-size:64.400000pt;}
.fs3_c00182{font-size:65.333333pt;}
.fs14_c00182{font-size:66.266667pt;}
.y0_c00182{bottom:0.000000pt;}
.y9f_c00182{bottom:28.909333pt;}
.y9e_c00182{bottom:43.968000pt;}
.y2_c00182{bottom:54.240000pt;}
.y9d_c00182{bottom:60.529333pt;}
.y9c_c00182{bottom:75.301333pt;}
.y9b_c00182{bottom:91.846667pt;}
.y9a_c00182{bottom:107.176000pt;}
.y99_c00182{bottom:119.022667pt;}
.y98_c00182{bottom:119.710667pt;}
.y97_c00182{bottom:120.166667pt;}
.y96_c00182{bottom:120.856000pt;}
.y95_c00182{bottom:121.130667pt;}
.y94_c00182{bottom:121.326667pt;}
.y93_c00182{bottom:122.378667pt;}
.y92_c00182{bottom:122.673333pt;}
.y91_c00182{bottom:122.884000pt;}
.y90_c00182{bottom:136.740000pt;}
.y8f_c00182{bottom:152.518667pt;}
.y8e_c00182{bottom:167.521333pt;}
.y8d_c00182{bottom:181.962667pt;}
.y8c_c00182{bottom:197.500000pt;}
.y8b_c00182{bottom:213.630667pt;}
.y8a_c00182{bottom:228.266667pt;}
.y89_c00182{bottom:244.306667pt;}
.y88_c00182{bottom:260.304000pt;}
.y7d_c00182{bottom:274.072573pt;}
.y7e_c00182{bottom:274.352351pt;}
.y7f_c00182{bottom:274.527707pt;}
.y80_c00182{bottom:274.941943pt;}
.y81_c00182{bottom:275.239208pt;}
.y82_c00182{bottom:275.671085pt;}
.y83_c00182{bottom:276.074583pt;}
.y84_c00182{bottom:276.331257pt;}
.y85_c00182{bottom:276.647913pt;}
.y86_c00182{bottom:276.851833pt;}
.y87_c00182{bottom:277.041303pt;}
.y74_c00182{bottom:289.436979pt;}
.y75_c00182{bottom:289.669037pt;}
.y76_c00182{bottom:289.978188pt;}
.y77_c00182{bottom:290.088296pt;}
.y78_c00182{bottom:290.743616pt;}
.y79_c00182{bottom:291.258775pt;}
.y7a_c00182{bottom:291.675593pt;}
.y7b_c00182{bottom:291.878948pt;}
.y7c_c00182{bottom:292.066807pt;}
.y71_c00182{bottom:302.878667pt;}
.y1_c00182{bottom:304.341333pt;}
.y72_c00182{bottom:306.369361pt;}
.y73_c00182{bottom:307.391052pt;}
.y68_c00182{bottom:319.919371pt;}
.y69_c00182{bottom:320.331864pt;}
.y6a_c00182{bottom:321.349424pt;}
.y6b_c00182{bottom:321.642403pt;}
.y6c_c00182{bottom:322.189499pt;}
.y6d_c00182{bottom:322.492069pt;}
.y6e_c00182{bottom:323.608365pt;}
.y6f_c00182{bottom:324.119595pt;}
.y70_c00182{bottom:325.093861pt;}
.y61_c00182{bottom:333.118776pt;}
.y62_c00182{bottom:333.951795pt;}
.y63_c00182{bottom:334.233251pt;}
.y64_c00182{bottom:334.626371pt;}
.y65_c00182{bottom:334.872005pt;}
.y66_c00182{bottom:335.282728pt;}
.y67_c00182{bottom:336.425259pt;}
.y5a_c00182{bottom:348.479517pt;}
.y5b_c00182{bottom:349.392877pt;}
.y5c_c00182{bottom:350.007459pt;}
.y5d_c00182{bottom:350.277229pt;}
.y5e_c00182{bottom:350.996344pt;}
.y5f_c00182{bottom:351.859677pt;}
.y60_c00182{bottom:352.001021pt;}
.y51_c00182{bottom:363.841704pt;}
.y52_c00182{bottom:364.139352pt;}
.y53_c00182{bottom:364.862936pt;}
.y54_c00182{bottom:365.248611pt;}
.y55_c00182{bottom:366.017384pt;}
.y56_c00182{bottom:366.213203pt;}
.y57_c00182{bottom:366.490608pt;}
.y58_c00182{bottom:366.725176pt;}
.y59_c00182{bottom:367.664709pt;}
.y4a_c00182{bottom:378.961651pt;}
.y4b_c00182{bottom:379.169341pt;}
.y4c_c00182{bottom:379.760923pt;}
.y4d_c00182{bottom:380.031664pt;}
.y4e_c00182{bottom:381.267128pt;}
.y4f_c00182{bottom:382.188621pt;}
.y50_c00182{bottom:382.523731pt;}
.y43_c00182{bottom:394.562667pt;}
.y44_c00182{bottom:395.147101pt;}
.y45_c00182{bottom:395.812643pt;}
.y46_c00182{bottom:396.380483pt;}
.y47_c00182{bottom:397.062787pt;}
.y48_c00182{bottom:397.969856pt;}
.y49_c00182{bottom:398.116968pt;}
.y3a_c00182{bottom:409.202667pt;}
.y3b_c00182{bottom:409.961765pt;}
.y3c_c00182{bottom:410.314677pt;}
.y3d_c00182{bottom:410.515605pt;}
.y3e_c00182{bottom:410.926421pt;}
.y3f_c00182{bottom:411.201923pt;}
.y40_c00182{bottom:411.857347pt;}
.y41_c00182{bottom:412.633768pt;}
.y42_c00182{bottom:412.899003pt;}
.y31_c00182{bottom:425.045333pt;}
.y32_c00182{bottom:425.693333pt;}
.y33_c00182{bottom:426.032000pt;}
.y34_c00182{bottom:426.493333pt;}
.y35_c00182{bottom:427.097333pt;}
.y36_c00182{bottom:427.468000pt;}
.y37_c00182{bottom:428.137333pt;}
.y38_c00182{bottom:428.444000pt;}
.y39_c00182{bottom:429.470667pt;}
.y2a_c00182{bottom:440.882667pt;}
.y2b_c00182{bottom:441.604000pt;}
.y2c_c00182{bottom:441.826667pt;}
.y2d_c00182{bottom:442.488000pt;}
.y2e_c00182{bottom:442.684000pt;}
.y2f_c00182{bottom:443.349333pt;}
.y30_c00182{bottom:443.598667pt;}
.y22_c00182{bottom:456.004000pt;}
.y23_c00182{bottom:456.353333pt;}
.y24_c00182{bottom:456.622667pt;}
.y25_c00182{bottom:456.860000pt;}
.y26_c00182{bottom:457.649333pt;}
.y27_c00182{bottom:458.682667pt;}
.y28_c00182{bottom:458.952000pt;}
.y29_c00182{bottom:459.689333pt;}
.y1a_c00182{bottom:471.604000pt;}
.y1b_c00182{bottom:471.834667pt;}
.y1c_c00182{bottom:472.109333pt;}
.y1d_c00182{bottom:472.593333pt;}
.y1e_c00182{bottom:473.301333pt;}
.y1f_c00182{bottom:473.497333pt;}
.y20_c00182{bottom:474.237333pt;}
.y21_c00182{bottom:474.549333pt;}
.y12_c00182{bottom:487.202667pt;}
.y13_c00182{bottom:487.602667pt;}
.y14_c00182{bottom:487.873333pt;}
.y15_c00182{bottom:488.320000pt;}
.y16_c00182{bottom:488.557333pt;}
.y17_c00182{bottom:489.005333pt;}
.y18_c00182{bottom:489.218667pt;}
.y19_c00182{bottom:490.101333pt;}
.y11_c00182{bottom:497.785333pt;}
.ya_c00182{bottom:502.802667pt;}
.yb_c00182{bottom:503.816000pt;}
.yc_c00182{bottom:504.122667pt;}
.yd_c00182{bottom:505.045333pt;}
.ye_c00182{bottom:505.217333pt;}
.yf_c00182{bottom:505.760000pt;}
.y10_c00182{bottom:505.917333pt;}
.y4_c00182{bottom:510.242667pt;}
.y5_c00182{bottom:510.998667pt;}
.y6_c00182{bottom:512.329333pt;}
.y7_c00182{bottom:513.202667pt;}
.y8_c00182{bottom:513.810667pt;}
.y9_c00182{bottom:514.622667pt;}
.y3_c00182{bottom:526.320000pt;}
.h6_c00182{height:21.466667pt;}
.h4_c00182{height:32.666667pt;}
.h3_c00182{height:36.400000pt;}
.h11_c00182{height:51.346909pt;}
.hd_c00182{height:52.271789pt;}
.h10_c00182{height:52.280489pt;}
.he_c00182{height:53.205213pt;}
.hc_c00182{height:54.138638pt;}
.h2_c00182{height:55.066667pt;}
.h8_c00182{height:56.000000pt;}
.h14_c00182{height:56.933333pt;}
.ha_c00182{height:57.866667pt;}
.hb_c00182{height:57.872337pt;}
.h12_c00182{height:57.881970pt;}
.h9_c00182{height:59.733333pt;}
.hf_c00182{height:59.739187pt;}
.h13_c00182{height:60.666667pt;}
.h15_c00182{height:61.600000pt;}
.h7_c00182{height:64.400000pt;}
.h5_c00182{height:65.333333pt;}
.h16_c00182{height:66.266667pt;}
.h0_c00182{height:553.866667pt;}
.h1_c00182{height:554.000000pt;}
.w1_c00182{width:340.666667pt;}
.w0_c00182{width:340.800000pt;}
.x0_c00182{left:0.000000pt;}
.x37_c00182{left:5.450667pt;}
.x61_c00182{left:11.520000pt;}
.x1_c00182{left:19.440000pt;}
.xe_c00182{left:25.837333pt;}
.x1d_c00182{left:28.662667pt;}
.x3e_c00182{left:29.684000pt;}
.x8_c00182{left:30.609333pt;}
.x7c_c00182{left:31.809333pt;}
.x82_c00182{left:32.878667pt;}
.x7f_c00182{left:34.318667pt;}
.x74_c00182{left:38.880000pt;}
.x43_c00182{left:43.807565pt;}
.x24_c00182{left:46.462667pt;}
.x47_c00182{left:49.781781pt;}
.x58_c00182{left:50.747996pt;}
.x29_c00182{left:52.001333pt;}
.x2_c00182{left:55.920000pt;}
.x6e_c00182{left:56.880000pt;}
.x1e_c00182{left:59.421333pt;}
.x7d_c00182{left:61.524000pt;}
.x62_c00182{left:64.320000pt;}
.x25_c00182{left:67.582667pt;}
.x2a_c00182{left:70.001333pt;}
.x3f_c00182{left:71.429333pt;}
.x9_c00182{left:72.582667pt;}
.x79_c00182{left:74.880000pt;}
.x6a_c00182{left:76.560000pt;}
.x65_c00182{left:77.760000pt;}
.x59_c00182{left:78.863755pt;}
.x1f_c00182{left:80.264000pt;}
.x44_c00182{left:83.205672pt;}
.x38_c00182{left:84.880000pt;}
.x2b_c00182{left:85.812000pt;}
.x15_c00182{left:86.882667pt;}
.x34_c00182{left:87.792000pt;}
.x4f_c00182{left:89.196048pt;}
.x4c_c00182{left:93.724803pt;}
.x66_c00182{left:95.520000pt;}
.x2f_c00182{left:96.637333pt;}
.x48_c00182{left:98.037109pt;}
.x39_c00182{left:99.232000pt;}
.x3_c00182{left:100.560000pt;}
.x5b_c00182{left:101.877573pt;}
.xf_c00182{left:103.774667pt;}
.x26_c00182{left:104.804000pt;}
.x6b_c00182{left:105.840000pt;}
.x50_c00182{left:109.300048pt;}
.x75_c00182{left:110.400000pt;}
.x20_c00182{left:114.628000pt;}
.x53_c00182{left:115.845568pt;}
.x40_c00182{left:118.968000pt;}
.x49_c00182{left:123.775421pt;}
.x10_c00182{left:127.349333pt;}
.x3a_c00182{left:128.576000pt;}
.x81_c00182{left:130.318667pt;}
.x21_c00182{left:132.870667pt;}
.x72_c00182{left:134.160000pt;}
.x4_c00182{left:135.120000pt;}
.x51_c00182{left:137.380048pt;}
.x2c_c00182{left:138.421333pt;}
.x6f_c00182{left:140.400000pt;}
.x30_c00182{left:143.854667pt;}
.xa_c00182{left:146.485333pt;}
.x3b_c00182{left:148.254667pt;}
.x16_c00182{left:149.522667pt;}
.x35_c00182{left:150.434667pt;}
.x84_c00182{left:151.918667pt;}
.x7_c00182{left:153.600000pt;}
.x52_c00182{left:154.925381pt;}
.x76_c00182{left:156.000000pt;}
.x4d_c00182{left:156.892803pt;}
.x31_c00182{left:157.845333pt;}
.x5_c00182{left:160.080000pt;}
.x5c_c00182{left:162.638271pt;}
.x87_c00182{left:165.118667pt;}
.x86_c00182{left:166.078667pt;}
.x22_c00182{left:167.381333pt;}
.x17_c00182{left:173.042667pt;}
.x27_c00182{left:174.397333pt;}
.x7a_c00182{left:179.520000pt;}
.x88_c00182{left:182.638667pt;}
.x6_c00182{left:183.840000pt;}
.x18_c00182{left:188.162667pt;}
.x7e_c00182{left:191.652000pt;}
.x70_c00182{left:192.720000pt;}
.xb_c00182{left:195.017333pt;}
.x5d_c00182{left:196.248099pt;}
.x11_c00182{left:198.370667pt;}
.x6c_c00182{left:200.400000pt;}
.x67_c00182{left:201.840000pt;}
.x63_c00182{left:203.760000pt;}
.x32_c00182{left:205.369333pt;}
.x2d_c00182{left:207.300000pt;}
.x41_c00182{left:208.264000pt;}
.x19_c00182{left:210.482667pt;}
.x12_c00182{left:211.562667pt;}
.x68_c00182{left:212.880000pt;}
.x54_c00182{left:214.167984pt;}
.x71_c00182{left:215.280000pt;}
.x5e_c00182{left:217.616163pt;}
.x4a_c00182{left:222.195373pt;}
.x33_c00182{left:223.132000pt;}
.x80_c00182{left:224.398667pt;}
.x2e_c00182{left:225.300000pt;}
.x64_c00182{left:226.320000pt;}
.xc_c00182{left:228.808000pt;}
.x85_c00182{left:229.918667pt;}
.x1a_c00182{left:230.882667pt;}
.x5a_c00182{left:233.170320pt;}
.x6d_c00182{left:234.960000pt;}
.x77_c00182{left:238.320000pt;}
.x55_c00182{left:239.729837pt;}
.x5f_c00182{left:244.028181pt;}
.x45_c00182{left:244.991395pt;}
.x83_c00182{left:246.238667pt;}
.x1b_c00182{left:247.682667pt;}
.x3c_c00182{left:250.529333pt;}
.x23_c00182{left:251.632000pt;}
.x13_c00182{left:253.297333pt;}
.x28_c00182{left:255.276000pt;}
.x57_c00182{left:256.392000pt;}
.x78_c00182{left:257.520000pt;}
.x73_c00182{left:259.440000pt;}
.x1c_c00182{left:261.122667pt;}
.x14_c00182{left:265.352000pt;}
.x46_c00182{left:267.308411pt;}
.x69_c00182{left:268.560000pt;}
.x3d_c00182{left:269.474667pt;}
.x7b_c00182{left:270.720000pt;}
.xd_c00182{left:273.913333pt;}
.x60_c00182{left:276.908523pt;}
.x4e_c00182{left:280.020803pt;}
.x42_c00182{left:283.562667pt;}
.x4b_c00182{left:284.827829pt;}
.x89_c00182{left:286.318667pt;}
.x56_c00182{left:288.459083pt;}
.x36_c00182{left:290.049333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00183 {
    display:none;
  }
  .loading-indicator_c00183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00183 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00183 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00183" -> "#page-container .classname_c00183")
 */
.pf_c00183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00183 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00183 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00183 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00183 {overflow:visible;}
  }
}
.c_c00183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00183 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00183:after { /* webkit #35443 */
  content: '';
}
.t_c00183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00183 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00183 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00183 { /* info for Javascript */
  display:none;
}
.l_c00183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00183 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00183.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.med_c00183{transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);}
.m80_c00183{transform:matrix(0.039655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039655,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.067826,-0.001357,0.004999,0.249950,0,0);-ms-transform:matrix(0.067826,-0.001357,0.004999,0.249950,0,0);-webkit-transform:matrix(0.067826,-0.001357,0.004999,0.249950,0,0);}
.md3_c00183{transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);}
.m7e_c00183{transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);}
.m66_c00183{transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151965,0.000000,0.000000,0.250000,0,0);}
.md6_c00183{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m37_c00183{transform:matrix(0.159043,-0.003181,0.004999,0.249950,0,0);-ms-transform:matrix(0.159043,-0.003181,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159043,-0.003181,0.004999,0.249950,0,0);}
.mc4_c00183{transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.161248,-0.003225,0.004999,0.249950,0,0);-ms-transform:matrix(0.161248,-0.003225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161248,-0.003225,0.004999,0.249950,0,0);}
.m1d_c00183{transform:matrix(0.161458,-0.003229,0.004999,0.249950,0,0);-ms-transform:matrix(0.161458,-0.003229,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161458,-0.003229,0.004999,0.249950,0,0);}
.m1a_c00183{transform:matrix(0.161793,-0.003236,0.004999,0.249950,0,0);-ms-transform:matrix(0.161793,-0.003236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161793,-0.003236,0.004999,0.249950,0,0);}
.m69_c00183{transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.162183,-0.003244,0.004999,0.249950,0,0);-ms-transform:matrix(0.162183,-0.003244,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162183,-0.003244,0.004999,0.249950,0,0);}
.ma6_c00183{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m6e_c00183{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);-ms-transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);}
.mde_c00183{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.md0_c00183{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m85_c00183{transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);}
.m74_c00183{transform:matrix(0.165470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165470,0.000000,0.000000,0.250000,0,0);}
.mdd_c00183{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.167936,-0.003359,0.004999,0.249950,0,0);-ms-transform:matrix(0.167936,-0.003359,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167936,-0.003359,0.004999,0.249950,0,0);}
.m89_c00183{transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);}
.mce_c00183{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00183{transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169685,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.170131,-0.003403,0.004999,0.249950,0,0);-ms-transform:matrix(0.170131,-0.003403,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170131,-0.003403,0.004999,0.249950,0,0);}
.maf_c00183{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00183{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.m7b_c00183{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m82_c00183{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.maa_c00183{transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);}
.m6f_c00183{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.mdb_c00183{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mf1_c00183{transform:matrix(0.173135,-0.002251,0.003250,0.249979,0,0);-ms-transform:matrix(0.173135,-0.002251,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173135,-0.002251,0.003250,0.249979,0,0);}
.mb4_c00183{transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);}
.m75_c00183{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.173585,-0.003472,0.004999,0.249950,0,0);-ms-transform:matrix(0.173585,-0.003472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173585,-0.003472,0.004999,0.249950,0,0);}
.m9c_c00183{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m58_c00183{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.mc3_c00183{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m8f_c00183{transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);}
.m91_c00183{transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);}
.ma0_c00183{transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175770,0.000000,0.000000,0.250000,0,0);}
.mb5_c00183{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m71_c00183{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m79_c00183{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);}
.mca_c00183{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);}
.m6d_c00183{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.mb9_c00183{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.m61_c00183{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00183{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.178734,-0.003575,0.004999,0.249950,0,0);-ms-transform:matrix(0.178734,-0.003575,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178734,-0.003575,0.004999,0.249950,0,0);}
.md7_c00183{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.md4_c00183{transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);}
.m2e_c00183{transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);-ms-transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);}
.mb1_c00183{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.me5_c00183{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m78_c00183{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mc2_c00183{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m5c_c00183{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.mdc_c00183{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.181359,-0.003627,0.004999,0.249950,0,0);-ms-transform:matrix(0.181359,-0.003627,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181359,-0.003627,0.004999,0.249950,0,0);}
.md8_c00183{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.181504,-0.003630,0.004999,0.249950,0,0);-ms-transform:matrix(0.181504,-0.003630,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181504,-0.003630,0.004999,0.249950,0,0);}
.mc5_c00183{transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);}
.m67_c00183{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m95_c00183{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.mf7_c00183{transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);-ms-transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);}
.m9a_c00183{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m48_c00183{transform:matrix(0.182748,-0.003655,0.004999,0.249950,0,0);-ms-transform:matrix(0.182748,-0.003655,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182748,-0.003655,0.004999,0.249950,0,0);}
.m51_c00183{transform:matrix(0.182833,-0.003657,0.004999,0.249950,0,0);-ms-transform:matrix(0.182833,-0.003657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182833,-0.003657,0.004999,0.249950,0,0);}
.m4d_c00183{transform:matrix(0.182853,-0.003657,0.004999,0.249950,0,0);-ms-transform:matrix(0.182853,-0.003657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182853,-0.003657,0.004999,0.249950,0,0);}
.m3c_c00183{transform:matrix(0.183128,-0.003663,0.004999,0.249950,0,0);-ms-transform:matrix(0.183128,-0.003663,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183128,-0.003663,0.004999,0.249950,0,0);}
.m6a_c00183{transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);}
.m84_c00183{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);-ms-transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183553,-0.003671,0.004999,0.249950,0,0);}
.m29_c00183{transform:matrix(0.183583,-0.003672,0.004999,0.249950,0,0);-ms-transform:matrix(0.183583,-0.003672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183583,-0.003672,0.004999,0.249950,0,0);}
.me2_c00183{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.me4_c00183{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.me1_c00183{transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);}
.m88_c00183{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m57_c00183{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.185653,-0.003713,0.004999,0.249950,0,0);-ms-transform:matrix(0.185653,-0.003713,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185653,-0.003713,0.004999,0.249950,0,0);}
.m44_c00183{transform:matrix(0.185803,-0.003716,0.004999,0.249950,0,0);-ms-transform:matrix(0.185803,-0.003716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185803,-0.003716,0.004999,0.249950,0,0);}
.m8b_c00183{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.ma2_c00183{transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);}
.md1_c00183{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{transform:matrix(0.186793,-0.003736,0.004999,0.249950,0,0);-ms-transform:matrix(0.186793,-0.003736,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186793,-0.003736,0.004999,0.249950,0,0);}
.m1f_c00183{transform:matrix(0.186903,-0.003738,0.004999,0.249950,0,0);-ms-transform:matrix(0.186903,-0.003738,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186903,-0.003738,0.004999,0.249950,0,0);}
.m36_c00183{transform:matrix(0.187263,-0.003745,0.004999,0.249950,0,0);-ms-transform:matrix(0.187263,-0.003745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187263,-0.003745,0.004999,0.249950,0,0);}
.m70_c00183{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);}
.m18_c00183{transform:matrix(0.187907,-0.003758,0.004999,0.249950,0,0);-ms-transform:matrix(0.187907,-0.003758,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187907,-0.003758,0.004999,0.249950,0,0);}
.m4_c00183{transform:matrix(0.188287,-0.003766,0.004999,0.249950,0,0);-ms-transform:matrix(0.188287,-0.003766,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188287,-0.003766,0.004999,0.249950,0,0);}
.m83_c00183{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00183{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m7d_c00183{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.mdf_c00183{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.m81_c00183{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m43_c00183{transform:matrix(0.189072,-0.003781,0.004999,0.249950,0,0);-ms-transform:matrix(0.189072,-0.003781,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189072,-0.003781,0.004999,0.249950,0,0);}
.mad_c00183{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.m8c_c00183{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.189852,-0.003797,0.004999,0.249950,0,0);-ms-transform:matrix(0.189852,-0.003797,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189852,-0.003797,0.004999,0.249950,0,0);}
.m40_c00183{transform:matrix(0.190042,-0.003801,0.004999,0.249950,0,0);-ms-transform:matrix(0.190042,-0.003801,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190042,-0.003801,0.004999,0.249950,0,0);}
.m63_c00183{transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190680,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{transform:matrix(0.191007,-0.003820,0.004999,0.249950,0,0);-ms-transform:matrix(0.191007,-0.003820,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191007,-0.003820,0.004999,0.249950,0,0);}
.m35_c00183{transform:matrix(0.191632,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191632,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191632,-0.003833,0.004999,0.249950,0,0);}
.md9_c00183{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.192916,-0.003858,0.004999,0.249950,0,0);-ms-transform:matrix(0.192916,-0.003858,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192916,-0.003858,0.004999,0.249950,0,0);}
.m5d_c00183{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.mcf_c00183{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.m32_c00183{transform:matrix(0.193311,-0.003866,0.004999,0.249950,0,0);-ms-transform:matrix(0.193311,-0.003866,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193311,-0.003866,0.004999,0.249950,0,0);}
.m65_c00183{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.mef_c00183{transform:matrix(0.193704,-0.002518,0.003250,0.249979,0,0);-ms-transform:matrix(0.193704,-0.002518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193704,-0.002518,0.003250,0.249979,0,0);}
.mf2_c00183{transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);}
.mb7_c00183{transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);}
.mae_c00183{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.195141,-0.003903,0.004999,0.249950,0,0);-ms-transform:matrix(0.195141,-0.003903,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195141,-0.003903,0.004999,0.249950,0,0);}
.m94_c00183{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.mbf_c00183{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);-ms-transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);}
.mc0_c00183{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.ma3_c00183{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m8a_c00183{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m7f_c00183{transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.md5_c00183{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.198365,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198365,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198365,-0.003967,0.004999,0.249950,0,0);}
.m30_c00183{transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198495,-0.003970,0.004999,0.249950,0,0);}
.m42_c00183{transform:matrix(0.198610,-0.003972,0.004999,0.249950,0,0);-ms-transform:matrix(0.198610,-0.003972,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198610,-0.003972,0.004999,0.249950,0,0);}
.m77_c00183{transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);}
.mc9_c00183{transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);}
.m9f_c00183{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.m62_c00183{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.mf6_c00183{transform:matrix(0.199243,-0.002590,0.003250,0.249979,0,0);-ms-transform:matrix(0.199243,-0.002590,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199243,-0.002590,0.003250,0.249979,0,0);}
.m50_c00183{transform:matrix(0.199540,-0.003991,0.004999,0.249950,0,0);-ms-transform:matrix(0.199540,-0.003991,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199540,-0.003991,0.004999,0.249950,0,0);}
.mf4_c00183{transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);-ms-transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);}
.mf8_c00183{transform:matrix(0.200033,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.200033,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200033,-0.002600,0.003250,0.249979,0,0);}
.mf0_c00183{transform:matrix(0.200493,-0.002606,0.003250,0.249979,0,0);-ms-transform:matrix(0.200493,-0.002606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200493,-0.002606,0.003250,0.249979,0,0);}
.md2_c00183{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);-ms-transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);}
.mc1_c00183{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.mab_c00183{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.202874,-0.004057,0.004999,0.249950,0,0);-ms-transform:matrix(0.202874,-0.004057,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202874,-0.004057,0.004999,0.249950,0,0);}
.m3_c00183{transform:matrix(0.203149,-0.004063,0.004999,0.249950,0,0);-ms-transform:matrix(0.203149,-0.004063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203149,-0.004063,0.004999,0.249950,0,0);}
.m3f_c00183{transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);-ms-transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);}
.m39_c00183{transform:matrix(0.203669,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203669,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203669,-0.004073,0.004999,0.249950,0,0);}
.m72_c00183{transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);}
.m68_c00183{transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.204929,-0.004099,0.004999,0.249950,0,0);-ms-transform:matrix(0.204929,-0.004099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204929,-0.004099,0.004999,0.249950,0,0);}
.m24_c00183{transform:matrix(0.204959,-0.004099,0.004999,0.249950,0,0);-ms-transform:matrix(0.204959,-0.004099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204959,-0.004099,0.004999,0.249950,0,0);}
.mf9_c00183{transform:matrix(0.205003,-0.002665,0.003250,0.249979,0,0);-ms-transform:matrix(0.205003,-0.002665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205003,-0.002665,0.003250,0.249979,0,0);}
.me3_c00183{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m25_c00183{transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);-ms-transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);}
.mb3_c00183{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mac_c00183{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{transform:matrix(0.205909,-0.004118,0.004999,0.249950,0,0);-ms-transform:matrix(0.205909,-0.004118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205909,-0.004118,0.004999,0.249950,0,0);}
.mea_c00183{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00183{transform:matrix(0.206459,-0.004129,0.004999,0.249950,0,0);-ms-transform:matrix(0.206459,-0.004129,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206459,-0.004129,0.004999,0.249950,0,0);}
.m4b_c00183{transform:matrix(0.206479,-0.004130,0.004999,0.249950,0,0);-ms-transform:matrix(0.206479,-0.004130,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206479,-0.004130,0.004999,0.249950,0,0);}
.m2a_c00183{transform:matrix(0.206599,-0.004132,0.004999,0.249950,0,0);-ms-transform:matrix(0.206599,-0.004132,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206599,-0.004132,0.004999,0.249950,0,0);}
.m8d_c00183{transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);}
.mda_c00183{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);-ms-transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);}
.m8_c00183{transform:matrix(0.208053,-0.004161,0.004999,0.249950,0,0);-ms-transform:matrix(0.208053,-0.004161,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208053,-0.004161,0.004999,0.249950,0,0);}
.m38_c00183{transform:matrix(0.208358,-0.004167,0.004999,0.249950,0,0);-ms-transform:matrix(0.208358,-0.004167,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208358,-0.004167,0.004999,0.249950,0,0);}
.m2d_c00183{transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);}
.mcc_c00183{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.mbb_c00183{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m99_c00183{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{transform:matrix(0.209768,-0.004195,0.004999,0.249950,0,0);-ms-transform:matrix(0.209768,-0.004195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209768,-0.004195,0.004999,0.249950,0,0);}
.m98_c00183{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.210143,-0.004203,0.004999,0.249950,0,0);-ms-transform:matrix(0.210143,-0.004203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210143,-0.004203,0.004999,0.249950,0,0);}
.me6_c00183{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.210498,-0.004210,0.004999,0.249950,0,0);-ms-transform:matrix(0.210498,-0.004210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210498,-0.004210,0.004999,0.249950,0,0);}
.ma9_c00183{transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);}
.m93_c00183{transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);}
.me8_c00183{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{transform:matrix(0.212862,-0.004257,0.004999,0.249950,0,0);-ms-transform:matrix(0.212862,-0.004257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212862,-0.004257,0.004999,0.249950,0,0);}
.mc7_c00183{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m90_c00183{transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.213447,-0.004269,0.004999,0.249950,0,0);-ms-transform:matrix(0.213447,-0.004269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213447,-0.004269,0.004999,0.249950,0,0);}
.m5e_c00183{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m64_c00183{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m6b_c00183{transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);}
.m92_c00183{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m96_c00183{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00183{transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216370,0.000000,0.000000,0.250000,0,0);}
.mb0_c00183{transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);}
.ma1_c00183{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00183{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.217901,-0.004358,0.004999,0.249950,0,0);-ms-transform:matrix(0.217901,-0.004358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217901,-0.004358,0.004999,0.249950,0,0);}
.m4c_c00183{transform:matrix(0.218051,-0.004361,0.004999,0.249950,0,0);-ms-transform:matrix(0.218051,-0.004361,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218051,-0.004361,0.004999,0.249950,0,0);}
.m59_c00183{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-ms-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);}
.meb_c00183{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m31_c00183{transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-ms-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219836,-0.004397,0.004999,0.249950,0,0);}
.m33_c00183{transform:matrix(0.219851,-0.004397,0.004999,0.249950,0,0);-ms-transform:matrix(0.219851,-0.004397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219851,-0.004397,0.004999,0.249950,0,0);}
.m55_c00183{transform:matrix(0.220306,-0.004406,0.004999,0.249950,0,0);-ms-transform:matrix(0.220306,-0.004406,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220306,-0.004406,0.004999,0.249950,0,0);}
.m28_c00183{transform:matrix(0.220531,-0.004411,0.004999,0.249950,0,0);-ms-transform:matrix(0.220531,-0.004411,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220531,-0.004411,0.004999,0.249950,0,0);}
.mb8_c00183{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.mec_c00183{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.mcd_c00183{transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);}
.ma7_c00183{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.mfa_c00183{transform:matrix(0.223296,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223296,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223296,-0.002903,0.003250,0.249979,0,0);}
.mf5_c00183{transform:matrix(0.223571,-0.002906,0.003250,0.249979,0,0);-ms-transform:matrix(0.223571,-0.002906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223571,-0.002906,0.003250,0.249979,0,0);}
.m3e_c00183{transform:matrix(0.223915,-0.004478,0.004999,0.249950,0,0);-ms-transform:matrix(0.223915,-0.004478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223915,-0.004478,0.004999,0.249950,0,0);}
.mb2_c00183{transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);}
.ma5_c00183{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.m23_c00183{transform:matrix(0.224470,-0.004489,0.004999,0.249950,0,0);-ms-transform:matrix(0.224470,-0.004489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224470,-0.004489,0.004999,0.249950,0,0);}
.m86_c00183{transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00183{transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);}
.mc8_c00183{transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);}
.mb6_c00183{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.m7a_c00183{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{transform:matrix(0.228299,-0.004566,0.004999,0.249950,0,0);-ms-transform:matrix(0.228299,-0.004566,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228299,-0.004566,0.004999,0.249950,0,0);}
.me0_c00183{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.mbe_c00183{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.mbd_c00183{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.230669,-0.004613,0.004999,0.249950,0,0);-ms-transform:matrix(0.230669,-0.004613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230669,-0.004613,0.004999,0.249950,0,0);}
.mba_c00183{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.mf3_c00183{transform:matrix(0.231775,-0.003013,0.003250,0.249979,0,0);-ms-transform:matrix(0.231775,-0.003013,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231775,-0.003013,0.003250,0.249979,0,0);}
.me9_c00183{transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);-ms-transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);}
.m54_c00183{transform:matrix(0.234633,-0.004693,0.004999,0.249950,0,0);-ms-transform:matrix(0.234633,-0.004693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234633,-0.004693,0.004999,0.249950,0,0);}
.m60_c00183{transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);}
.mee_c00183{transform:matrix(0.235465,-0.003061,0.003250,0.249979,0,0);-ms-transform:matrix(0.235465,-0.003061,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235465,-0.003061,0.003250,0.249979,0,0);}
.mcb_c00183{transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.238897,-0.004778,0.004999,0.249950,0,0);-ms-transform:matrix(0.238897,-0.004778,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238897,-0.004778,0.004999,0.249950,0,0);}
.m45_c00183{transform:matrix(0.239687,-0.004794,0.004999,0.249950,0,0);-ms-transform:matrix(0.239687,-0.004794,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239687,-0.004794,0.004999,0.249950,0,0);}
.m52_c00183{transform:matrix(0.240912,-0.004818,0.004999,0.249950,0,0);-ms-transform:matrix(0.240912,-0.004818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240912,-0.004818,0.004999,0.249950,0,0);}
.me7_c00183{transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243980,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.244206,-0.004884,0.004999,0.249950,0,0);-ms-transform:matrix(0.244206,-0.004884,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244206,-0.004884,0.004999,0.249950,0,0);}
.m47_c00183{transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);-ms-transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);}
.m2c_c00183{transform:matrix(0.250145,-0.005003,0.004999,0.249950,0,0);-ms-transform:matrix(0.250145,-0.005003,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250145,-0.005003,0.004999,0.249950,0,0);}
.ma4_c00183{transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);}
.m6c_c00183{transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);}
.mc6_c00183{transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.412163,-0.008243,0.004999,0.249950,0,0);-ms-transform:matrix(0.412163,-0.008243,0.004999,0.249950,0,0);-webkit-transform:matrix(0.412163,-0.008243,0.004999,0.249950,0,0);}
.m1_c00183{transform:matrix(0.427265,-0.008545,0.004999,0.249950,0,0);-ms-transform:matrix(0.427265,-0.008545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.427265,-0.008545,0.004999,0.249950,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:0.000000px;}
.fc0_c00183{color:transparent;}
.fs4_c00183{font-size:57.761549px;}
.fsd_c00183{font-size:58.800000px;}
.fs8_c00183{font-size:58.811759px;}
.fs10_c00183{font-size:59.850000px;}
.fs5_c00183{font-size:59.861969px;}
.fs9_c00183{font-size:60.900000px;}
.fs13_c00183{font-size:60.905146px;}
.fse_c00183{font-size:61.950000px;}
.fs1_c00183{font-size:61.962389px;}
.fs11_c00183{font-size:63.000000px;}
.fs12_c00183{font-size:63.005323px;}
.fs7_c00183{font-size:63.012599px;}
.fs6_c00183{font-size:64.062809px;}
.fsb_c00183{font-size:65.100000px;}
.fsa_c00183{font-size:67.200000px;}
.fsc_c00183{font-size:68.250000px;}
.fsf_c00183{font-size:69.300000px;}
.fs3_c00183{font-size:70.364069px;}
.fs2_c00183{font-size:71.414279px;}
.fs0_c00183{font-size:86.117218px;}
.y0_c00183{bottom:0.000000px;}
.yd1_c00183{bottom:28.329252px;}
.yd0_c00183{bottom:28.329392px;}
.ycf_c00183{bottom:28.329420px;}
.yd2_c00183{bottom:28.329603px;}
.yd3_c00183{bottom:28.329785px;}
.yce_c00183{bottom:28.329959px;}
.ycd_c00183{bottom:28.330478px;}
.yc7_c00183{bottom:43.201500px;}
.yc8_c00183{bottom:43.559715px;}
.yc9_c00183{bottom:44.875712px;}
.yca_c00183{bottom:45.212555px;}
.ycb_c00183{bottom:45.584497px;}
.ycc_c00183{bottom:45.981186px;}
.yc5_c00183{bottom:60.213000px;}
.yc6_c00183{bottom:64.350000px;}
.ybd_c00183{bottom:77.491500px;}
.ybe_c00183{bottom:77.734500px;}
.ybf_c00183{bottom:78.405000px;}
.yc0_c00183{bottom:78.693000px;}
.yc1_c00183{bottom:79.305000px;}
.yc2_c00183{bottom:79.600500px;}
.yc3_c00183{bottom:80.440500px;}
.yc4_c00183{bottom:80.959500px;}
.yb2_c00183{bottom:94.233000px;}
.yb3_c00183{bottom:94.612500px;}
.yb4_c00183{bottom:94.996500px;}
.yb5_c00183{bottom:95.214000px;}
.yb6_c00183{bottom:95.862000px;}
.yb7_c00183{bottom:96.132000px;}
.yb8_c00183{bottom:96.462000px;}
.yb9_c00183{bottom:97.141500px;}
.yba_c00183{bottom:97.353000px;}
.ybb_c00183{bottom:97.689000px;}
.ybc_c00183{bottom:98.047500px;}
.ya7_c00183{bottom:111.783000px;}
.ya8_c00183{bottom:112.143000px;}
.ya9_c00183{bottom:112.740000px;}
.yaa_c00183{bottom:113.059500px;}
.yab_c00183{bottom:114.076500px;}
.yac_c00183{bottom:114.306000px;}
.yad_c00183{bottom:114.597000px;}
.yae_c00183{bottom:115.188000px;}
.yaf_c00183{bottom:115.395000px;}
.yb0_c00183{bottom:115.806000px;}
.yb1_c00183{bottom:116.337000px;}
.ya6_c00183{bottom:131.569500px;}
.y9f_c00183{bottom:145.530000px;}
.ya0_c00183{bottom:145.773000px;}
.ya1_c00183{bottom:146.470500px;}
.ya2_c00183{bottom:147.126000px;}
.ya3_c00183{bottom:147.348000px;}
.ya4_c00183{bottom:147.660000px;}
.ya5_c00183{bottom:148.074000px;}
.y97_c00183{bottom:163.078500px;}
.y98_c00183{bottom:164.091000px;}
.y99_c00183{bottom:164.364000px;}
.y9a_c00183{bottom:164.848500px;}
.y9b_c00183{bottom:165.075000px;}
.y9c_c00183{bottom:165.706500px;}
.y9d_c00183{bottom:165.841500px;}
.y9e_c00183{bottom:166.062000px;}
.y96_c00183{bottom:182.314500px;}
.y8f_c00183{bottom:196.290000px;}
.y90_c00183{bottom:197.161500px;}
.y91_c00183{bottom:197.505000px;}
.y92_c00183{bottom:198.363000px;}
.y93_c00183{bottom:198.651000px;}
.y94_c00183{bottom:198.919500px;}
.y95_c00183{bottom:199.593000px;}
.y8e_c00183{bottom:217.485000px;}
.y87_c00183{bottom:232.470000px;}
.y88_c00183{bottom:232.900500px;}
.y89_c00183{bottom:233.238000px;}
.y8a_c00183{bottom:233.779500px;}
.y8b_c00183{bottom:234.607500px;}
.y8c_c00183{bottom:234.774000px;}
.y8d_c00183{bottom:235.668000px;}
.y86_c00183{bottom:252.375000px;}
.y85_c00183{bottom:269.206500px;}
.y7c_c00183{bottom:284.580000px;}
.y7d_c00183{bottom:285.057000px;}
.y7e_c00183{bottom:285.345000px;}
.y7f_c00183{bottom:285.883500px;}
.y80_c00183{bottom:286.144500px;}
.y81_c00183{bottom:286.699500px;}
.y82_c00183{bottom:287.011500px;}
.y83_c00183{bottom:287.554500px;}
.y84_c00183{bottom:287.800500px;}
.y71_c00183{bottom:300.781500px;}
.y72_c00183{bottom:301.560000px;}
.y73_c00183{bottom:302.083500px;}
.y74_c00183{bottom:302.314500px;}
.y75_c00183{bottom:302.626500px;}
.y76_c00183{bottom:303.226500px;}
.y77_c00183{bottom:303.459000px;}
.y78_c00183{bottom:303.663000px;}
.y79_c00183{bottom:304.062000px;}
.y7a_c00183{bottom:304.287000px;}
.y7b_c00183{bottom:304.894500px;}
.y68_c00183{bottom:318.061500px;}
.y69_c00183{bottom:318.471000px;}
.y6a_c00183{bottom:318.775500px;}
.y6b_c00183{bottom:319.338000px;}
.y6c_c00183{bottom:319.804500px;}
.y6d_c00183{bottom:320.913000px;}
.y6e_c00183{bottom:321.370500px;}
.y6f_c00183{bottom:321.634500px;}
.y70_c00183{bottom:322.414500px;}
.y60_c00183{bottom:335.341500px;}
.y61_c00183{bottom:335.742000px;}
.y62_c00183{bottom:336.099000px;}
.y63_c00183{bottom:336.915000px;}
.y64_c00183{bottom:338.151000px;}
.y65_c00183{bottom:338.506500px;}
.y66_c00183{bottom:338.922000px;}
.y67_c00183{bottom:339.658500px;}
.y58_c00183{bottom:352.891500px;}
.y59_c00183{bottom:353.568000px;}
.y5a_c00183{bottom:354.214500px;}
.y5b_c00183{bottom:354.517500px;}
.y5c_c00183{bottom:355.053000px;}
.y5d_c00183{bottom:355.545000px;}
.y5e_c00183{bottom:355.927500px;}
.y5f_c00183{bottom:356.650500px;}
.y57_c00183{bottom:372.778500px;}
.y52_c00183{bottom:387.149340px;}
.y53_c00183{bottom:387.696240px;}
.y54_c00183{bottom:389.084400px;}
.y55_c00183{bottom:389.913900px;}
.y56_c00183{bottom:390.158790px;}
.y48_c00183{bottom:405.510270px;}
.y49_c00183{bottom:405.669180px;}
.y4a_c00183{bottom:406.047750px;}
.y4b_c00183{bottom:406.909440px;}
.y4c_c00183{bottom:407.072520px;}
.y4d_c00183{bottom:407.545440px;}
.y4e_c00183{bottom:407.680980px;}
.y4f_c00183{bottom:407.963100px;}
.y50_c00183{bottom:408.513690px;}
.y51_c00183{bottom:408.747120px;}
.y46_c00183{bottom:424.793040px;}
.y47_c00183{bottom:424.793610px;}
.y45_c00183{bottom:424.793760px;}
.y44_c00183{bottom:424.793970px;}
.y42_c00183{bottom:424.794330px;}
.y43_c00183{bottom:424.794360px;}
.y41_c00183{bottom:424.794420px;}
.y39_c00183{bottom:438.996870px;}
.y3a_c00183{bottom:439.611840px;}
.y3b_c00183{bottom:440.317140px;}
.y3c_c00183{bottom:440.857380px;}
.y3d_c00183{bottom:441.029100px;}
.y3e_c00183{bottom:441.296520px;}
.y3f_c00183{bottom:441.812040px;}
.y40_c00183{bottom:442.381170px;}
.y33_c00183{bottom:456.552960px;}
.y34_c00183{bottom:457.415370px;}
.y35_c00183{bottom:458.251410px;}
.y36_c00183{bottom:459.220140px;}
.y37_c00183{bottom:460.261710px;}
.y38_c00183{bottom:460.663680px;}
.y2c_c00183{bottom:474.104010px;}
.y2d_c00183{bottom:474.525630px;}
.y2e_c00183{bottom:475.150860px;}
.y2f_c00183{bottom:475.449240px;}
.y30_c00183{bottom:475.793820px;}
.y31_c00183{bottom:477.054570px;}
.y32_c00183{bottom:477.812970px;}
.y23_c00183{bottom:489.769200px;}
.y24_c00183{bottom:490.074270px;}
.y25_c00183{bottom:490.555860px;}
.y26_c00183{bottom:491.585700px;}
.y27_c00183{bottom:492.362370px;}
.y28_c00183{bottom:492.704850px;}
.y29_c00183{bottom:493.857120px;}
.y2a_c00183{bottom:494.225400px;}
.y2b_c00183{bottom:494.703870px;}
.y1c_c00183{bottom:508.672470px;}
.y1d_c00183{bottom:508.981410px;}
.y1e_c00183{bottom:509.724540px;}
.y1f_c00183{bottom:510.075900px;}
.y20_c00183{bottom:510.587580px;}
.y21_c00183{bottom:511.002810px;}
.y22_c00183{bottom:512.020650px;}
.y15_c00183{bottom:523.261050px;}
.y16_c00183{bottom:524.510190px;}
.y17_c00183{bottom:525.519240px;}
.y18_c00183{bottom:526.689390px;}
.y19_c00183{bottom:527.538510px;}
.y1a_c00183{bottom:528.958020px;}
.y1b_c00183{bottom:529.408590px;}
.yc_c00183{bottom:542.156820px;}
.yd_c00183{bottom:542.392980px;}
.ye_c00183{bottom:543.226710px;}
.yf_c00183{bottom:543.541380px;}
.y10_c00183{bottom:544.314270px;}
.y11_c00183{bottom:544.774140px;}
.y12_c00183{bottom:545.382810px;}
.y13_c00183{bottom:546.057780px;}
.y14_c00183{bottom:546.844890px;}
.y4_c00183{bottom:557.553660px;}
.y5_c00183{bottom:558.564120px;}
.y6_c00183{bottom:558.903330px;}
.y7_c00183{bottom:559.881540px;}
.y8_c00183{bottom:560.650020px;}
.y9_c00183{bottom:561.534360px;}
.ya_c00183{bottom:563.001570px;}
.yb_c00183{bottom:563.613840px;}
.y1_c00183{bottom:569.971500px;}
.y2_c00183{bottom:571.425660px;}
.y3_c00183{bottom:575.080290px;}
.h6_c00183{height:57.761549px;}
.hf_c00183{height:58.800000px;}
.ha_c00183{height:58.811759px;}
.h12_c00183{height:59.850000px;}
.h7_c00183{height:59.861969px;}
.hb_c00183{height:60.900000px;}
.h15_c00183{height:60.905146px;}
.h10_c00183{height:61.950000px;}
.h3_c00183{height:61.962389px;}
.h13_c00183{height:63.000000px;}
.h14_c00183{height:63.005323px;}
.h9_c00183{height:63.012599px;}
.h8_c00183{height:64.062809px;}
.hd_c00183{height:65.100000px;}
.hc_c00183{height:67.200000px;}
.he_c00183{height:68.250000px;}
.h11_c00183{height:69.300000px;}
.h5_c00183{height:70.364069px;}
.h4_c00183{height:71.414279px;}
.h2_c00183{height:86.117218px;}
.h0_c00183{height:623.100000px;}
.h1_c00183{height:623.250000px;}
.w1_c00183{width:383.250000px;}
.w0_c00183{width:383.400000px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:55.093470px;}
.x20_c00183{left:56.101020px;}
.x3a_c00183{left:57.985350px;}
.x5c_c00183{left:59.139000px;}
.x1_c00183{left:60.814500px;}
.x78_c00183{left:62.830500px;}
.xc_c00183{left:70.168590px;}
.x21_c00183{left:73.080210px;}
.x30_c00183{left:75.064080px;}
.x1a_c00183{left:79.286700px;}
.x3e_c00183{left:80.460000px;}
.x74_c00183{left:81.685500px;}
.x6c_c00183{left:82.809000px;}
.x61_c00183{left:84.249000px;}
.x3b_c00183{left:85.330350px;}
.x7a_c00183{left:86.562000px;}
.x27_c00183{left:89.015430px;}
.x5f_c00183{left:94.878000px;}
.x22_c00183{left:99.860790px;}
.x5_c00183{left:101.039640px;}
.x55_c00183{left:102.142500px;}
.x2c_c00183{left:103.304640px;}
.x4a_c00183{left:104.910000px;}
.x41_c00183{left:108.664500px;}
.x47_c00183{left:110.889000px;}
.x14_c00183{left:112.403490px;}
.x7b_c00183{left:114.117000px;}
.x6_c00183{left:116.424510px;}
.x4e_c00183{left:117.888000px;}
.x6d_c00183{left:120.085500px;}
.xd_c00183{left:122.284260px;}
.x3f_c00183{left:128.520000px;}
.x62_c00183{left:132.309000px;}
.x2_c00183{left:133.522500px;}
.x1b_c00183{left:136.476210px;}
.x75_c00183{left:137.580000px;}
.x6e_c00183{left:140.061000px;}
.xe_c00183{left:141.919320px;}
.x31_c00183{left:144.468330px;}
.x40_c00183{left:149.850000px;}
.x63_c00183{left:150.939000px;}
.x65_c00183{left:152.416500px;}
.x3c_c00183{left:154.738350px;}
.x23_c00183{left:157.055070px;}
.x15_c00183{left:158.279160px;}
.x7_c00183{left:160.908240px;}
.x1c_c00183{left:163.497990px;}
.x5d_c00183{left:165.519000px;}
.x60_c00183{left:168.102000px;}
.x48_c00183{left:169.216500px;}
.x6b_c00183{left:170.910000px;}
.x35_c00183{left:173.466480px;}
.x4f_c00183{left:175.935000px;}
.x56_c00183{left:177.253500px;}
.x42_c00183{left:181.630500px;}
.x28_c00183{left:186.488550px;}
.xf_c00183{left:190.242690px;}
.x8_c00183{left:195.805830px;}
.x2d_c00183{left:199.120050px;}
.x24_c00183{left:200.240310px;}
.x1d_c00183{left:202.887510px;}
.x5a_c00183{left:204.669000px;}
.x70_c00183{left:206.622000px;}
.x3d_c00183{left:208.457850px;}
.x16_c00183{left:211.459530px;}
.x76_c00183{left:212.613000px;}
.x7c_c00183{left:215.347500px;}
.x32_c00183{left:216.842280px;}
.x10_c00183{left:218.938470px;}
.x66_c00183{left:221.260500px;}
.x43_c00183{left:222.877500px;}
.x69_c00183{left:224.179500px;}
.x36_c00183{left:226.424940px;}
.x2e_c00183{left:232.931790px;}
.x1e_c00183{left:234.828480px;}
.x9_c00183{left:235.971210px;}
.x37_c00183{left:237.778770px;}
.x67_c00183{left:241.783500px;}
.x33_c00183{left:245.467740px;}
.x4b_c00183{left:247.449000px;}
.x17_c00183{left:250.089000px;}
.x57_c00183{left:251.506500px;}
.x6a_c00183{left:252.553500px;}
.x11_c00183{left:256.950000px;}
.x5e_c00183{left:258.939000px;}
.x44_c00183{left:260.674500px;}
.x2a_c00183{left:261.841020px;}
.x50_c00183{left:263.961000px;}
.x7d_c00183{left:269.869500px;}
.x2f_c00183{left:272.588340px;}
.x4c_c00183{left:277.951500px;}
.x51_c00183{left:279.622500px;}
.x64_c00183{left:281.620500px;}
.x25_c00183{left:283.231110px;}
.x71_c00183{left:284.383500px;}
.x6f_c00183{left:286.068000px;}
.x45_c00183{left:290.152500px;}
.x4d_c00183{left:295.570500px;}
.x12_c00183{left:299.101860px;}
.x72_c00183{left:300.651000px;}
.xa_c00183{left:302.654040px;}
.x26_c00183{left:303.670920px;}
.x38_c00183{left:307.175370px;}
.x52_c00183{left:310.330500px;}
.x68_c00183{left:311.445000px;}
.x1f_c00183{left:313.106430px;}
.x18_c00183{left:314.611920px;}
.x3_c00183{left:316.254000px;}
.x34_c00183{left:325.403190px;}
.x39_c00183{left:326.574960px;}
.x53_c00183{left:327.636000px;}
.x58_c00183{left:329.269500px;}
.xb_c00183{left:330.491430px;}
.x5b_c00183{left:331.839000px;}
.x7e_c00183{left:333.203475px;}
.x19_c00183{left:335.114610px;}
.x29_c00183{left:341.767770px;}
.x46_c00183{left:345.763500px;}
.x13_c00183{left:348.286290px;}
.x77_c00183{left:350.338500px;}
.x59_c00183{left:351.694500px;}
.x73_c00183{left:354.123000px;}
.x79_c00183{left:358.381500px;}
.x49_c00183{left:365.223000px;}
.x2b_c00183{left:372.958590px;}
.x54_c00183{left:374.338500px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:0.000000pt;}
.fs4_c00183{font-size:51.343599pt;}
.fsd_c00183{font-size:52.266667pt;}
.fs8_c00183{font-size:52.277119pt;}
.fs10_c00183{font-size:53.200000pt;}
.fs5_c00183{font-size:53.210639pt;}
.fs9_c00183{font-size:54.133333pt;}
.fs13_c00183{font-size:54.137907pt;}
.fse_c00183{font-size:55.066667pt;}
.fs1_c00183{font-size:55.077679pt;}
.fs11_c00183{font-size:56.000000pt;}
.fs12_c00183{font-size:56.004732pt;}
.fs7_c00183{font-size:56.011199pt;}
.fs6_c00183{font-size:56.944719pt;}
.fsb_c00183{font-size:57.866667pt;}
.fsa_c00183{font-size:59.733333pt;}
.fsc_c00183{font-size:60.666667pt;}
.fsf_c00183{font-size:61.600000pt;}
.fs3_c00183{font-size:62.545839pt;}
.fs2_c00183{font-size:63.479359pt;}
.fs0_c00183{font-size:76.548638pt;}
.y0_c00183{bottom:0.000000pt;}
.yd1_c00183{bottom:25.181557pt;}
.yd0_c00183{bottom:25.181681pt;}
.ycf_c00183{bottom:25.181707pt;}
.yd2_c00183{bottom:25.181869pt;}
.yd3_c00183{bottom:25.182031pt;}
.yce_c00183{bottom:25.182185pt;}
.ycd_c00183{bottom:25.182647pt;}
.yc7_c00183{bottom:38.401333pt;}
.yc8_c00183{bottom:38.719747pt;}
.yc9_c00183{bottom:39.889521pt;}
.yca_c00183{bottom:40.188937pt;}
.ycb_c00183{bottom:40.519553pt;}
.ycc_c00183{bottom:40.872165pt;}
.yc5_c00183{bottom:53.522667pt;}
.yc6_c00183{bottom:57.200000pt;}
.ybd_c00183{bottom:68.881333pt;}
.ybe_c00183{bottom:69.097333pt;}
.ybf_c00183{bottom:69.693333pt;}
.yc0_c00183{bottom:69.949333pt;}
.yc1_c00183{bottom:70.493333pt;}
.yc2_c00183{bottom:70.756000pt;}
.yc3_c00183{bottom:71.502667pt;}
.yc4_c00183{bottom:71.964000pt;}
.yb2_c00183{bottom:83.762667pt;}
.yb3_c00183{bottom:84.100000pt;}
.yb4_c00183{bottom:84.441333pt;}
.yb5_c00183{bottom:84.634667pt;}
.yb6_c00183{bottom:85.210667pt;}
.yb7_c00183{bottom:85.450667pt;}
.yb8_c00183{bottom:85.744000pt;}
.yb9_c00183{bottom:86.348000pt;}
.yba_c00183{bottom:86.536000pt;}
.ybb_c00183{bottom:86.834667pt;}
.ybc_c00183{bottom:87.153333pt;}
.ya7_c00183{bottom:99.362667pt;}
.ya8_c00183{bottom:99.682667pt;}
.ya9_c00183{bottom:100.213333pt;}
.yaa_c00183{bottom:100.497333pt;}
.yab_c00183{bottom:101.401333pt;}
.yac_c00183{bottom:101.605333pt;}
.yad_c00183{bottom:101.864000pt;}
.yae_c00183{bottom:102.389333pt;}
.yaf_c00183{bottom:102.573333pt;}
.yb0_c00183{bottom:102.938667pt;}
.yb1_c00183{bottom:103.410667pt;}
.ya6_c00183{bottom:116.950667pt;}
.y9f_c00183{bottom:129.360000pt;}
.ya0_c00183{bottom:129.576000pt;}
.ya1_c00183{bottom:130.196000pt;}
.ya2_c00183{bottom:130.778667pt;}
.ya3_c00183{bottom:130.976000pt;}
.ya4_c00183{bottom:131.253333pt;}
.ya5_c00183{bottom:131.621333pt;}
.y97_c00183{bottom:144.958667pt;}
.y98_c00183{bottom:145.858667pt;}
.y99_c00183{bottom:146.101333pt;}
.y9a_c00183{bottom:146.532000pt;}
.y9b_c00183{bottom:146.733333pt;}
.y9c_c00183{bottom:147.294667pt;}
.y9d_c00183{bottom:147.414667pt;}
.y9e_c00183{bottom:147.610667pt;}
.y96_c00183{bottom:162.057333pt;}
.y8f_c00183{bottom:174.480000pt;}
.y90_c00183{bottom:175.254667pt;}
.y91_c00183{bottom:175.560000pt;}
.y92_c00183{bottom:176.322667pt;}
.y93_c00183{bottom:176.578667pt;}
.y94_c00183{bottom:176.817333pt;}
.y95_c00183{bottom:177.416000pt;}
.y8e_c00183{bottom:193.320000pt;}
.y87_c00183{bottom:206.640000pt;}
.y88_c00183{bottom:207.022667pt;}
.y89_c00183{bottom:207.322667pt;}
.y8a_c00183{bottom:207.804000pt;}
.y8b_c00183{bottom:208.540000pt;}
.y8c_c00183{bottom:208.688000pt;}
.y8d_c00183{bottom:209.482667pt;}
.y86_c00183{bottom:224.333333pt;}
.y85_c00183{bottom:239.294667pt;}
.y7c_c00183{bottom:252.960000pt;}
.y7d_c00183{bottom:253.384000pt;}
.y7e_c00183{bottom:253.640000pt;}
.y7f_c00183{bottom:254.118667pt;}
.y80_c00183{bottom:254.350667pt;}
.y81_c00183{bottom:254.844000pt;}
.y82_c00183{bottom:255.121333pt;}
.y83_c00183{bottom:255.604000pt;}
.y84_c00183{bottom:255.822667pt;}
.y71_c00183{bottom:267.361333pt;}
.y72_c00183{bottom:268.053333pt;}
.y73_c00183{bottom:268.518667pt;}
.y74_c00183{bottom:268.724000pt;}
.y75_c00183{bottom:269.001333pt;}
.y76_c00183{bottom:269.534667pt;}
.y77_c00183{bottom:269.741333pt;}
.y78_c00183{bottom:269.922667pt;}
.y79_c00183{bottom:270.277333pt;}
.y7a_c00183{bottom:270.477333pt;}
.y7b_c00183{bottom:271.017333pt;}
.y68_c00183{bottom:282.721333pt;}
.y69_c00183{bottom:283.085333pt;}
.y6a_c00183{bottom:283.356000pt;}
.y6b_c00183{bottom:283.856000pt;}
.y6c_c00183{bottom:284.270667pt;}
.y6d_c00183{bottom:285.256000pt;}
.y6e_c00183{bottom:285.662667pt;}
.y6f_c00183{bottom:285.897333pt;}
.y70_c00183{bottom:286.590667pt;}
.y60_c00183{bottom:298.081333pt;}
.y61_c00183{bottom:298.437333pt;}
.y62_c00183{bottom:298.754667pt;}
.y63_c00183{bottom:299.480000pt;}
.y64_c00183{bottom:300.578667pt;}
.y65_c00183{bottom:300.894667pt;}
.y66_c00183{bottom:301.264000pt;}
.y67_c00183{bottom:301.918667pt;}
.y58_c00183{bottom:313.681333pt;}
.y59_c00183{bottom:314.282667pt;}
.y5a_c00183{bottom:314.857333pt;}
.y5b_c00183{bottom:315.126667pt;}
.y5c_c00183{bottom:315.602667pt;}
.y5d_c00183{bottom:316.040000pt;}
.y5e_c00183{bottom:316.380000pt;}
.y5f_c00183{bottom:317.022667pt;}
.y57_c00183{bottom:331.358667pt;}
.y52_c00183{bottom:344.132747pt;}
.y53_c00183{bottom:344.618880pt;}
.y54_c00183{bottom:345.852800pt;}
.y55_c00183{bottom:346.590133pt;}
.y56_c00183{bottom:346.807813pt;}
.y48_c00183{bottom:360.453573pt;}
.y49_c00183{bottom:360.594827pt;}
.y4a_c00183{bottom:360.931333pt;}
.y4b_c00183{bottom:361.697280pt;}
.y4c_c00183{bottom:361.842240pt;}
.y4d_c00183{bottom:362.262613pt;}
.y4e_c00183{bottom:362.383093pt;}
.y4f_c00183{bottom:362.633867pt;}
.y50_c00183{bottom:363.123280pt;}
.y51_c00183{bottom:363.330773pt;}
.y46_c00183{bottom:377.593813pt;}
.y47_c00183{bottom:377.594320pt;}
.y45_c00183{bottom:377.594453pt;}
.y44_c00183{bottom:377.594640pt;}
.y42_c00183{bottom:377.594960pt;}
.y43_c00183{bottom:377.594987pt;}
.y41_c00183{bottom:377.595040pt;}
.y39_c00183{bottom:390.219440pt;}
.y3a_c00183{bottom:390.766080pt;}
.y3b_c00183{bottom:391.393013pt;}
.y3c_c00183{bottom:391.873227pt;}
.y3d_c00183{bottom:392.025867pt;}
.y3e_c00183{bottom:392.263573pt;}
.y3f_c00183{bottom:392.721813pt;}
.y40_c00183{bottom:393.227707pt;}
.y33_c00183{bottom:405.824853pt;}
.y34_c00183{bottom:406.591440pt;}
.y35_c00183{bottom:407.334587pt;}
.y36_c00183{bottom:408.195680pt;}
.y37_c00183{bottom:409.121520pt;}
.y38_c00183{bottom:409.478827pt;}
.y2c_c00183{bottom:421.425787pt;}
.y2d_c00183{bottom:421.800560pt;}
.y2e_c00183{bottom:422.356320pt;}
.y2f_c00183{bottom:422.621547pt;}
.y30_c00183{bottom:422.927840pt;}
.y31_c00183{bottom:424.048507pt;}
.y32_c00183{bottom:424.722640pt;}
.y23_c00183{bottom:435.350400pt;}
.y24_c00183{bottom:435.621573pt;}
.y25_c00183{bottom:436.049653pt;}
.y26_c00183{bottom:436.965067pt;}
.y27_c00183{bottom:437.655440pt;}
.y28_c00183{bottom:437.959867pt;}
.y29_c00183{bottom:438.984107pt;}
.y2a_c00183{bottom:439.311467pt;}
.y2b_c00183{bottom:439.736773pt;}
.y1c_c00183{bottom:452.153307pt;}
.y1d_c00183{bottom:452.427920pt;}
.y1e_c00183{bottom:453.088480pt;}
.y1f_c00183{bottom:453.400800pt;}
.y20_c00183{bottom:453.855627pt;}
.y21_c00183{bottom:454.224720pt;}
.y22_c00183{bottom:455.129467pt;}
.y15_c00183{bottom:465.120933pt;}
.y16_c00183{bottom:466.231280pt;}
.y17_c00183{bottom:467.128213pt;}
.y18_c00183{bottom:468.168347pt;}
.y19_c00183{bottom:468.923120pt;}
.y1a_c00183{bottom:470.184907pt;}
.y1b_c00183{bottom:470.585413pt;}
.yc_c00183{bottom:481.917173pt;}
.yd_c00183{bottom:482.127093pt;}
.ye_c00183{bottom:482.868187pt;}
.yf_c00183{bottom:483.147893pt;}
.y10_c00183{bottom:483.834907pt;}
.y11_c00183{bottom:484.243680pt;}
.y12_c00183{bottom:484.784720pt;}
.y13_c00183{bottom:485.384693pt;}
.y14_c00183{bottom:486.084347pt;}
.y4_c00183{bottom:495.603253pt;}
.y5_c00183{bottom:496.501440pt;}
.y6_c00183{bottom:496.802960pt;}
.y7_c00183{bottom:497.672480pt;}
.y8_c00183{bottom:498.355573pt;}
.y9_c00183{bottom:499.141653pt;}
.ya_c00183{bottom:500.445840pt;}
.yb_c00183{bottom:500.990080pt;}
.y1_c00183{bottom:506.641333pt;}
.y2_c00183{bottom:507.933920pt;}
.y3_c00183{bottom:511.182480pt;}
.h6_c00183{height:51.343599pt;}
.hf_c00183{height:52.266667pt;}
.ha_c00183{height:52.277119pt;}
.h12_c00183{height:53.200000pt;}
.h7_c00183{height:53.210639pt;}
.hb_c00183{height:54.133333pt;}
.h15_c00183{height:54.137907pt;}
.h10_c00183{height:55.066667pt;}
.h3_c00183{height:55.077679pt;}
.h13_c00183{height:56.000000pt;}
.h14_c00183{height:56.004732pt;}
.h9_c00183{height:56.011199pt;}
.h8_c00183{height:56.944719pt;}
.hd_c00183{height:57.866667pt;}
.hc_c00183{height:59.733333pt;}
.he_c00183{height:60.666667pt;}
.h11_c00183{height:61.600000pt;}
.h5_c00183{height:62.545839pt;}
.h4_c00183{height:63.479359pt;}
.h2_c00183{height:76.548638pt;}
.h0_c00183{height:553.866667pt;}
.h1_c00183{height:554.000000pt;}
.w1_c00183{width:340.666667pt;}
.w0_c00183{width:340.800000pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:48.971973pt;}
.x20_c00183{left:49.867573pt;}
.x3a_c00183{left:51.542533pt;}
.x5c_c00183{left:52.568000pt;}
.x1_c00183{left:54.057333pt;}
.x78_c00183{left:55.849333pt;}
.xc_c00183{left:62.372080pt;}
.x21_c00183{left:64.960187pt;}
.x30_c00183{left:66.723627pt;}
.x1a_c00183{left:70.477067pt;}
.x3e_c00183{left:71.520000pt;}
.x74_c00183{left:72.609333pt;}
.x6c_c00183{left:73.608000pt;}
.x61_c00183{left:74.888000pt;}
.x3b_c00183{left:75.849200pt;}
.x7a_c00183{left:76.944000pt;}
.x27_c00183{left:79.124827pt;}
.x5f_c00183{left:84.336000pt;}
.x22_c00183{left:88.765147pt;}
.x5_c00183{left:89.813013pt;}
.x55_c00183{left:90.793333pt;}
.x2c_c00183{left:91.826347pt;}
.x4a_c00183{left:93.253333pt;}
.x41_c00183{left:96.590667pt;}
.x47_c00183{left:98.568000pt;}
.x14_c00183{left:99.914213pt;}
.x7b_c00183{left:101.437333pt;}
.x6_c00183{left:103.488453pt;}
.x4e_c00183{left:104.789333pt;}
.x6d_c00183{left:106.742667pt;}
.xd_c00183{left:108.697120pt;}
.x3f_c00183{left:114.240000pt;}
.x62_c00183{left:117.608000pt;}
.x2_c00183{left:118.686667pt;}
.x1b_c00183{left:121.312187pt;}
.x75_c00183{left:122.293333pt;}
.x6e_c00183{left:124.498667pt;}
.xe_c00183{left:126.150507pt;}
.x31_c00183{left:128.416293pt;}
.x40_c00183{left:133.200000pt;}
.x63_c00183{left:134.168000pt;}
.x65_c00183{left:135.481333pt;}
.x3c_c00183{left:137.545200pt;}
.x23_c00183{left:139.604507pt;}
.x15_c00183{left:140.692587pt;}
.x7_c00183{left:143.029547pt;}
.x1c_c00183{left:145.331547pt;}
.x5d_c00183{left:147.128000pt;}
.x60_c00183{left:149.424000pt;}
.x48_c00183{left:150.414667pt;}
.x6b_c00183{left:151.920000pt;}
.x35_c00183{left:154.192427pt;}
.x4f_c00183{left:156.386667pt;}
.x56_c00183{left:157.558667pt;}
.x42_c00183{left:161.449333pt;}
.x28_c00183{left:165.767600pt;}
.xf_c00183{left:169.104613pt;}
.x8_c00183{left:174.049627pt;}
.x2d_c00183{left:176.995600pt;}
.x24_c00183{left:177.991387pt;}
.x1d_c00183{left:180.344453pt;}
.x5a_c00183{left:181.928000pt;}
.x70_c00183{left:183.664000pt;}
.x3d_c00183{left:185.295867pt;}
.x16_c00183{left:187.964027pt;}
.x76_c00183{left:188.989333pt;}
.x7c_c00183{left:191.420000pt;}
.x32_c00183{left:192.748693pt;}
.x10_c00183{left:194.611973pt;}
.x66_c00183{left:196.676000pt;}
.x43_c00183{left:198.113333pt;}
.x69_c00183{left:199.270667pt;}
.x36_c00183{left:201.266613pt;}
.x2e_c00183{left:207.050480pt;}
.x1e_c00183{left:208.736427pt;}
.x9_c00183{left:209.752187pt;}
.x37_c00183{left:211.358907pt;}
.x67_c00183{left:214.918667pt;}
.x33_c00183{left:218.193547pt;}
.x4b_c00183{left:219.954667pt;}
.x17_c00183{left:222.301333pt;}
.x57_c00183{left:223.561333pt;}
.x6a_c00183{left:224.492000pt;}
.x11_c00183{left:228.400000pt;}
.x5e_c00183{left:230.168000pt;}
.x44_c00183{left:231.710667pt;}
.x2a_c00183{left:232.747573pt;}
.x50_c00183{left:234.632000pt;}
.x7d_c00183{left:239.884000pt;}
.x2f_c00183{left:242.300747pt;}
.x4c_c00183{left:247.068000pt;}
.x51_c00183{left:248.553333pt;}
.x64_c00183{left:250.329333pt;}
.x25_c00183{left:251.760987pt;}
.x71_c00183{left:252.785333pt;}
.x6f_c00183{left:254.282667pt;}
.x45_c00183{left:257.913333pt;}
.x4d_c00183{left:262.729333pt;}
.x12_c00183{left:265.868320pt;}
.x72_c00183{left:267.245333pt;}
.xa_c00183{left:269.025813pt;}
.x26_c00183{left:269.929707pt;}
.x38_c00183{left:273.044773pt;}
.x52_c00183{left:275.849333pt;}
.x68_c00183{left:276.840000pt;}
.x1f_c00183{left:278.316827pt;}
.x18_c00183{left:279.655040pt;}
.x3_c00183{left:281.114667pt;}
.x34_c00183{left:289.247280pt;}
.x39_c00183{left:290.288853pt;}
.x53_c00183{left:291.232000pt;}
.x58_c00183{left:292.684000pt;}
.xb_c00183{left:293.770160pt;}
.x5b_c00183{left:294.968000pt;}
.x7e_c00183{left:296.180867pt;}
.x19_c00183{left:297.879653pt;}
.x29_c00183{left:303.793573pt;}
.x46_c00183{left:307.345333pt;}
.x13_c00183{left:309.587813pt;}
.x77_c00183{left:311.412000pt;}
.x59_c00183{left:312.617333pt;}
.x73_c00183{left:314.776000pt;}
.x79_c00183{left:318.561333pt;}
.x49_c00183{left:324.642667pt;}
.x2b_c00183{left:331.518747pt;}
.x54_c00183{left:332.745333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00184 {
    display:none;
  }
  .loading-indicator_c00184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00184 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00184 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00184" -> "#page-container .classname_c00184")
 */
.pf_c00184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00184 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00184 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00184 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00184 {overflow:visible;}
  }
}
.c_c00184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00184 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00184:after { /* webkit #35443 */
  content: '';
}
.t_c00184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00184 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00184 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00184 { /* info for Javascript */
  display:none;
}
.l_c00184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00184:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00184 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00184.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7e_c00184{transform:matrix(0.146993,-0.004263,0.007247,0.249895,0,0);-ms-transform:matrix(0.146993,-0.004263,0.007247,0.249895,0,0);-webkit-transform:matrix(0.146993,-0.004263,0.007247,0.249895,0,0);}
.m6a_c00184{transform:matrix(0.147418,-0.004275,0.007247,0.249895,0,0);-ms-transform:matrix(0.147418,-0.004275,0.007247,0.249895,0,0);-webkit-transform:matrix(0.147418,-0.004275,0.007247,0.249895,0,0);}
.m8_c00184{transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147460,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.148857,-0.004317,0.007247,0.249895,0,0);-ms-transform:matrix(0.148857,-0.004317,0.007247,0.249895,0,0);-webkit-transform:matrix(0.148857,-0.004317,0.007247,0.249895,0,0);}
.m4_c00184{transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.149460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149460,0.000000,0.000000,0.250000,0,0);}
.m91_c00184{transform:matrix(0.149973,-0.003749,0.006248,0.249922,0,0);-ms-transform:matrix(0.149973,-0.003749,0.006248,0.249922,0,0);-webkit-transform:matrix(0.149973,-0.003749,0.006248,0.249922,0,0);}
.m7_c00184{transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{transform:matrix(0.151293,-0.003782,0.006248,0.249922,0,0);-ms-transform:matrix(0.151293,-0.003782,0.006248,0.249922,0,0);-webkit-transform:matrix(0.151293,-0.003782,0.006248,0.249922,0,0);}
.m16_c00184{transform:matrix(0.153730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153730,0.000000,0.000000,0.250000,0,0);}
.md7_c00184{transform:matrix(0.154097,-0.003852,0.006248,0.249922,0,0);-ms-transform:matrix(0.154097,-0.003852,0.006248,0.249922,0,0);-webkit-transform:matrix(0.154097,-0.003852,0.006248,0.249922,0,0);}
.m15_c00184{transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{transform:matrix(0.156764,-0.004546,0.007247,0.249895,0,0);-ms-transform:matrix(0.156764,-0.004546,0.007247,0.249895,0,0);-webkit-transform:matrix(0.156764,-0.004546,0.007247,0.249895,0,0);}
.m82_c00184{transform:matrix(0.157691,-0.003942,0.006248,0.249922,0,0);-ms-transform:matrix(0.157691,-0.003942,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157691,-0.003942,0.006248,0.249922,0,0);}
.m9_c00184{transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.159985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159985,0.000000,0.000000,0.250000,0,0);}
.m7b_c00184{transform:matrix(0.161337,-0.004679,0.007247,0.249895,0,0);-ms-transform:matrix(0.161337,-0.004679,0.007247,0.249895,0,0);-webkit-transform:matrix(0.161337,-0.004679,0.007247,0.249895,0,0);}
.mad_c00184{transform:matrix(0.161964,-0.004049,0.006248,0.249922,0,0);-ms-transform:matrix(0.161964,-0.004049,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161964,-0.004049,0.006248,0.249922,0,0);}
.mde_c00184{transform:matrix(0.162099,-0.004052,0.006248,0.249922,0,0);-ms-transform:matrix(0.162099,-0.004052,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162099,-0.004052,0.006248,0.249922,0,0);}
.m6_c00184{transform:matrix(0.162315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162315,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{transform:matrix(0.162409,-0.004060,0.006248,0.249922,0,0);-ms-transform:matrix(0.162409,-0.004060,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162409,-0.004060,0.006248,0.249922,0,0);}
.m8a_c00184{transform:matrix(0.163454,-0.004086,0.006248,0.249922,0,0);-ms-transform:matrix(0.163454,-0.004086,0.006248,0.249922,0,0);-webkit-transform:matrix(0.163454,-0.004086,0.006248,0.249922,0,0);}
.m8e_c00184{transform:matrix(0.164219,-0.004105,0.006248,0.249922,0,0);-ms-transform:matrix(0.164219,-0.004105,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164219,-0.004105,0.006248,0.249922,0,0);}
.m6d_c00184{transform:matrix(0.164346,-0.004766,0.007247,0.249895,0,0);-ms-transform:matrix(0.164346,-0.004766,0.007247,0.249895,0,0);-webkit-transform:matrix(0.164346,-0.004766,0.007247,0.249895,0,0);}
.mc2_c00184{transform:matrix(0.164923,-0.004123,0.006248,0.249922,0,0);-ms-transform:matrix(0.164923,-0.004123,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164923,-0.004123,0.006248,0.249922,0,0);}
.ma9_c00184{transform:matrix(0.165243,-0.004131,0.006248,0.249922,0,0);-ms-transform:matrix(0.165243,-0.004131,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165243,-0.004131,0.006248,0.249922,0,0);}
.mc5_c00184{transform:matrix(0.165338,-0.004133,0.006248,0.249922,0,0);-ms-transform:matrix(0.165338,-0.004133,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165338,-0.004133,0.006248,0.249922,0,0);}
.m5f_c00184{transform:matrix(0.165392,-0.003969,0.005998,0.249928,0,0);-ms-transform:matrix(0.165392,-0.003969,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165392,-0.003969,0.005998,0.249928,0,0);}
.me0_c00184{transform:matrix(0.165853,-0.004146,0.006248,0.249922,0,0);-ms-transform:matrix(0.165853,-0.004146,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165853,-0.004146,0.006248,0.249922,0,0);}
.m89_c00184{transform:matrix(0.166233,-0.004156,0.006248,0.249922,0,0);-ms-transform:matrix(0.166233,-0.004156,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166233,-0.004156,0.006248,0.249922,0,0);}
.ma5_c00184{transform:matrix(0.167063,-0.004177,0.006248,0.249922,0,0);-ms-transform:matrix(0.167063,-0.004177,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167063,-0.004177,0.006248,0.249922,0,0);}
.md_c00184{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);}
.md4_c00184{transform:matrix(0.169432,-0.004236,0.006248,0.249922,0,0);-ms-transform:matrix(0.169432,-0.004236,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169432,-0.004236,0.006248,0.249922,0,0);}
.mcb_c00184{transform:matrix(0.170182,-0.004255,0.006248,0.249922,0,0);-ms-transform:matrix(0.170182,-0.004255,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170182,-0.004255,0.006248,0.249922,0,0);}
.m32_c00184{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);}
.mc1_c00184{transform:matrix(0.171047,-0.004276,0.006248,0.249922,0,0);-ms-transform:matrix(0.171047,-0.004276,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171047,-0.004276,0.006248,0.249922,0,0);}
.me2_c00184{transform:matrix(0.171261,-0.004282,0.006248,0.249922,0,0);-ms-transform:matrix(0.171261,-0.004282,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171261,-0.004282,0.006248,0.249922,0,0);}
.m2b_c00184{transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);}
.mf4_c00184{transform:matrix(0.172206,-0.004305,0.006248,0.249922,0,0);-ms-transform:matrix(0.172206,-0.004305,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172206,-0.004305,0.006248,0.249922,0,0);}
.m66_c00184{transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);-ms-transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);}
.ma_c00184{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.174677,-0.005066,0.007247,0.249895,0,0);-ms-transform:matrix(0.174677,-0.005066,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174677,-0.005066,0.007247,0.249895,0,0);}
.m7c_c00184{transform:matrix(0.175181,-0.005080,0.007247,0.249895,0,0);-ms-transform:matrix(0.175181,-0.005080,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175181,-0.005080,0.007247,0.249895,0,0);}
.m78_c00184{transform:matrix(0.175266,-0.005083,0.007247,0.249895,0,0);-ms-transform:matrix(0.175266,-0.005083,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175266,-0.005083,0.007247,0.249895,0,0);}
.me4_c00184{transform:matrix(0.175345,-0.004384,0.006248,0.249922,0,0);-ms-transform:matrix(0.175345,-0.004384,0.006248,0.249922,0,0);-webkit-transform:matrix(0.175345,-0.004384,0.006248,0.249922,0,0);}
.m92_c00184{transform:matrix(0.175665,-0.004392,0.006248,0.249922,0,0);-ms-transform:matrix(0.175665,-0.004392,0.006248,0.249922,0,0);-webkit-transform:matrix(0.175665,-0.004392,0.006248,0.249922,0,0);}
.m19_c00184{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.ma0_c00184{transform:matrix(0.175925,-0.004398,0.006248,0.249922,0,0);-ms-transform:matrix(0.175925,-0.004398,0.006248,0.249922,0,0);-webkit-transform:matrix(0.175925,-0.004398,0.006248,0.249922,0,0);}
.m1f_c00184{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176330,0.000000,0.000000,0.250000,0,0);}
.mac_c00184{transform:matrix(0.176695,-0.004417,0.006248,0.249922,0,0);-ms-transform:matrix(0.176695,-0.004417,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176695,-0.004417,0.006248,0.249922,0,0);}
.mc3_c00184{transform:matrix(0.176700,-0.004417,0.006248,0.249922,0,0);-ms-transform:matrix(0.176700,-0.004417,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176700,-0.004417,0.006248,0.249922,0,0);}
.m93_c00184{transform:matrix(0.176950,-0.004424,0.006248,0.249922,0,0);-ms-transform:matrix(0.176950,-0.004424,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176950,-0.004424,0.006248,0.249922,0,0);}
.m17_c00184{transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);}
.mb0_c00184{transform:matrix(0.177694,-0.004442,0.006248,0.249922,0,0);-ms-transform:matrix(0.177694,-0.004442,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177694,-0.004442,0.006248,0.249922,0,0);}
.m18_c00184{transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);}
.ma6_c00184{transform:matrix(0.178694,-0.004467,0.006248,0.249922,0,0);-ms-transform:matrix(0.178694,-0.004467,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178694,-0.004467,0.006248,0.249922,0,0);}
.md5_c00184{transform:matrix(0.179439,-0.004486,0.006248,0.249922,0,0);-ms-transform:matrix(0.179439,-0.004486,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179439,-0.004486,0.006248,0.249922,0,0);}
.m45_c00184{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);-ms-transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);}
.m9b_c00184{transform:matrix(0.180119,-0.004503,0.006248,0.249922,0,0);-ms-transform:matrix(0.180119,-0.004503,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180119,-0.004503,0.006248,0.249922,0,0);}
.m13_c00184{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.me6_c00184{transform:matrix(0.180694,-0.004517,0.006248,0.249922,0,0);-ms-transform:matrix(0.180694,-0.004517,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180694,-0.004517,0.006248,0.249922,0,0);}
.m59_c00184{transform:matrix(0.180793,-0.004339,0.005998,0.249928,0,0);-ms-transform:matrix(0.180793,-0.004339,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180793,-0.004339,0.005998,0.249928,0,0);}
.mec_c00184{transform:matrix(0.180898,-0.004522,0.006248,0.249922,0,0);-ms-transform:matrix(0.180898,-0.004522,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180898,-0.004522,0.006248,0.249922,0,0);}
.m8b_c00184{transform:matrix(0.180963,-0.004524,0.006248,0.249922,0,0);-ms-transform:matrix(0.180963,-0.004524,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180963,-0.004524,0.006248,0.249922,0,0);}
.m3f_c00184{transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);}
.mb1_c00184{transform:matrix(0.181078,-0.004527,0.006248,0.249922,0,0);-ms-transform:matrix(0.181078,-0.004527,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181078,-0.004527,0.006248,0.249922,0,0);}
.m5_c00184{transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.mf2_c00184{transform:matrix(0.182148,-0.004554,0.006248,0.249922,0,0);-ms-transform:matrix(0.182148,-0.004554,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182148,-0.004554,0.006248,0.249922,0,0);}
.mcc_c00184{transform:matrix(0.182703,-0.004568,0.006248,0.249922,0,0);-ms-transform:matrix(0.182703,-0.004568,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182703,-0.004568,0.006248,0.249922,0,0);}
.m63_c00184{transform:matrix(0.183292,-0.004399,0.005998,0.249928,0,0);-ms-transform:matrix(0.183292,-0.004399,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183292,-0.004399,0.005998,0.249928,0,0);}
.mb2_c00184{transform:matrix(0.183308,-0.004583,0.006248,0.249922,0,0);-ms-transform:matrix(0.183308,-0.004583,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183308,-0.004583,0.006248,0.249922,0,0);}
.m12_c00184{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);-ms-transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);}
.m75_c00184{transform:matrix(0.183963,-0.005335,0.007247,0.249895,0,0);-ms-transform:matrix(0.183963,-0.005335,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183963,-0.005335,0.007247,0.249895,0,0);}
.m8c_c00184{transform:matrix(0.184042,-0.004601,0.006248,0.249922,0,0);-ms-transform:matrix(0.184042,-0.004601,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184042,-0.004601,0.006248,0.249922,0,0);}
.m65_c00184{transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);}
.m94_c00184{transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);-ms-transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);}
.m96_c00184{transform:matrix(0.184452,-0.004611,0.006248,0.249922,0,0);-ms-transform:matrix(0.184452,-0.004611,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184452,-0.004611,0.006248,0.249922,0,0);}
.m56_c00184{transform:matrix(0.184882,-0.004437,0.005998,0.249928,0,0);-ms-transform:matrix(0.184882,-0.004437,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184882,-0.004437,0.005998,0.249928,0,0);}
.m3a_c00184{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m90_c00184{transform:matrix(0.184962,-0.004624,0.006248,0.249922,0,0);-ms-transform:matrix(0.184962,-0.004624,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184962,-0.004624,0.006248,0.249922,0,0);}
.m80_c00184{transform:matrix(0.185017,-0.004625,0.006248,0.249922,0,0);-ms-transform:matrix(0.185017,-0.004625,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185017,-0.004625,0.006248,0.249922,0,0);}
.m28_c00184{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);}
.me5_c00184{transform:matrix(0.185472,-0.004637,0.006248,0.249922,0,0);-ms-transform:matrix(0.185472,-0.004637,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185472,-0.004637,0.006248,0.249922,0,0);}
.md9_c00184{transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);-ms-transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);}
.me_c00184{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.mbf_c00184{transform:matrix(0.186412,-0.004660,0.006248,0.249922,0,0);-ms-transform:matrix(0.186412,-0.004660,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186412,-0.004660,0.006248,0.249922,0,0);}
.m30_c00184{transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);-ms-transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186911,-0.004486,0.005998,0.249928,0,0);}
.m4b_c00184{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m9a_c00184{transform:matrix(0.187476,-0.004687,0.006248,0.249922,0,0);-ms-transform:matrix(0.187476,-0.004687,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187476,-0.004687,0.006248,0.249922,0,0);}
.m76_c00184{transform:matrix(0.187576,-0.005440,0.007247,0.249895,0,0);-ms-transform:matrix(0.187576,-0.005440,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187576,-0.005440,0.007247,0.249895,0,0);}
.m70_c00184{transform:matrix(0.188011,-0.005452,0.007247,0.249895,0,0);-ms-transform:matrix(0.188011,-0.005452,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188011,-0.005452,0.007247,0.249895,0,0);}
.m4d_c00184{transform:matrix(0.188911,-0.004534,0.005998,0.249928,0,0);-ms-transform:matrix(0.188911,-0.004534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188911,-0.004534,0.005998,0.249928,0,0);}
.m14_c00184{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.mce_c00184{transform:matrix(0.189101,-0.004728,0.006248,0.249922,0,0);-ms-transform:matrix(0.189101,-0.004728,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189101,-0.004728,0.006248,0.249922,0,0);}
.mb5_c00184{transform:matrix(0.189301,-0.004733,0.006248,0.249922,0,0);-ms-transform:matrix(0.189301,-0.004733,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189301,-0.004733,0.006248,0.249922,0,0);}
.mf7_c00184{transform:matrix(0.190126,-0.004753,0.006248,0.249922,0,0);-ms-transform:matrix(0.190126,-0.004753,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190126,-0.004753,0.006248,0.249922,0,0);}
.m24_c00184{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.md1_c00184{transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);-ms-transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);}
.m36_c00184{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.mbe_c00184{transform:matrix(0.191095,-0.004777,0.006248,0.249922,0,0);-ms-transform:matrix(0.191095,-0.004777,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191095,-0.004777,0.006248,0.249922,0,0);}
.mbd_c00184{transform:matrix(0.191140,-0.004779,0.006248,0.249922,0,0);-ms-transform:matrix(0.191140,-0.004779,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191140,-0.004779,0.006248,0.249922,0,0);}
.mc0_c00184{transform:matrix(0.191525,-0.004788,0.006248,0.249922,0,0);-ms-transform:matrix(0.191525,-0.004788,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191525,-0.004788,0.006248,0.249922,0,0);}
.mda_c00184{transform:matrix(0.191550,-0.004789,0.006248,0.249922,0,0);-ms-transform:matrix(0.191550,-0.004789,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191550,-0.004789,0.006248,0.249922,0,0);}
.m84_c00184{transform:matrix(0.191950,-0.004799,0.006248,0.249922,0,0);-ms-transform:matrix(0.191950,-0.004799,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191950,-0.004799,0.006248,0.249922,0,0);}
.m2f_c00184{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.192074,-0.005570,0.007247,0.249895,0,0);-ms-transform:matrix(0.192074,-0.005570,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192074,-0.005570,0.007247,0.249895,0,0);}
.m41_c00184{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.maa_c00184{transform:matrix(0.193465,-0.004837,0.006248,0.249922,0,0);-ms-transform:matrix(0.193465,-0.004837,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193465,-0.004837,0.006248,0.249922,0,0);}
.ma3_c00184{transform:matrix(0.194024,-0.004851,0.006248,0.249922,0,0);-ms-transform:matrix(0.194024,-0.004851,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194024,-0.004851,0.006248,0.249922,0,0);}
.mdc_c00184{transform:matrix(0.194184,-0.004855,0.006248,0.249922,0,0);-ms-transform:matrix(0.194184,-0.004855,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194184,-0.004855,0.006248,0.249922,0,0);}
.mc7_c00184{transform:matrix(0.194294,-0.004857,0.006248,0.249922,0,0);-ms-transform:matrix(0.194294,-0.004857,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194294,-0.004857,0.006248,0.249922,0,0);}
.m81_c00184{transform:matrix(0.194344,-0.004859,0.006248,0.249922,0,0);-ms-transform:matrix(0.194344,-0.004859,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194344,-0.004859,0.006248,0.249922,0,0);}
.m25_c00184{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.mfa_c00184{transform:matrix(0.194669,-0.004867,0.006248,0.249922,0,0);-ms-transform:matrix(0.194669,-0.004867,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194669,-0.004867,0.006248,0.249922,0,0);}
.m1a_c00184{transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);}
.m61_c00184{transform:matrix(0.195189,-0.004685,0.005998,0.249928,0,0);-ms-transform:matrix(0.195189,-0.004685,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195189,-0.004685,0.005998,0.249928,0,0);}
.m7a_c00184{transform:matrix(0.195333,-0.005665,0.007247,0.249895,0,0);-ms-transform:matrix(0.195333,-0.005665,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195333,-0.005665,0.007247,0.249895,0,0);}
.mc_c00184{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.me7_c00184{transform:matrix(0.195634,-0.004891,0.006248,0.249922,0,0);-ms-transform:matrix(0.195634,-0.004891,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195634,-0.004891,0.006248,0.249922,0,0);}
.mf5_c00184{transform:matrix(0.195774,-0.004894,0.006248,0.249922,0,0);-ms-transform:matrix(0.195774,-0.004894,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195774,-0.004894,0.006248,0.249922,0,0);}
.mdb_c00184{transform:matrix(0.196274,-0.004907,0.006248,0.249922,0,0);-ms-transform:matrix(0.196274,-0.004907,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196274,-0.004907,0.006248,0.249922,0,0);}
.mb3_c00184{transform:matrix(0.196279,-0.004907,0.006248,0.249922,0,0);-ms-transform:matrix(0.196279,-0.004907,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196279,-0.004907,0.006248,0.249922,0,0);}
.m26_c00184{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.mb7_c00184{transform:matrix(0.197103,-0.004928,0.006248,0.249922,0,0);-ms-transform:matrix(0.197103,-0.004928,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197103,-0.004928,0.006248,0.249922,0,0);}
.m86_c00184{transform:matrix(0.197238,-0.004931,0.006248,0.249922,0,0);-ms-transform:matrix(0.197238,-0.004931,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197238,-0.004931,0.006248,0.249922,0,0);}
.m42_c00184{transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197360,0.000000,0.000000,0.250000,0,0);}
.mdd_c00184{transform:matrix(0.198108,-0.004953,0.006248,0.249922,0,0);-ms-transform:matrix(0.198108,-0.004953,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198108,-0.004953,0.006248,0.249922,0,0);}
.m7d_c00184{transform:matrix(0.198192,-0.005748,0.007247,0.249895,0,0);-ms-transform:matrix(0.198192,-0.005748,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198192,-0.005748,0.007247,0.249895,0,0);}
.m64_c00184{transform:matrix(0.198578,-0.004766,0.005998,0.249928,0,0);-ms-transform:matrix(0.198578,-0.004766,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198578,-0.004766,0.005998,0.249928,0,0);}
.mae_c00184{transform:matrix(0.198763,-0.004969,0.006248,0.249922,0,0);-ms-transform:matrix(0.198763,-0.004969,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198763,-0.004969,0.006248,0.249922,0,0);}
.m1c_c00184{transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.198921,-0.005769,0.007247,0.249895,0,0);-ms-transform:matrix(0.198921,-0.005769,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198921,-0.005769,0.007247,0.249895,0,0);}
.m6c_c00184{transform:matrix(0.199246,-0.005778,0.007247,0.249895,0,0);-ms-transform:matrix(0.199246,-0.005778,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199246,-0.005778,0.007247,0.249895,0,0);}
.m48_c00184{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.md0_c00184{transform:matrix(0.200327,-0.005008,0.006248,0.249922,0,0);-ms-transform:matrix(0.200327,-0.005008,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200327,-0.005008,0.006248,0.249922,0,0);}
.m4a_c00184{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.mb6_c00184{transform:matrix(0.201277,-0.005032,0.006248,0.249922,0,0);-ms-transform:matrix(0.201277,-0.005032,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201277,-0.005032,0.006248,0.249922,0,0);}
.m53_c00184{transform:matrix(0.201957,-0.004847,0.005998,0.249928,0,0);-ms-transform:matrix(0.201957,-0.004847,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201957,-0.004847,0.005998,0.249928,0,0);}
.ma1_c00184{transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);-ms-transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202092,-0.005052,0.006248,0.249922,0,0);}
.m58_c00184{transform:matrix(0.202177,-0.004852,0.005998,0.249928,0,0);-ms-transform:matrix(0.202177,-0.004852,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202177,-0.004852,0.005998,0.249928,0,0);}
.m23_c00184{transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);}
.mf6_c00184{transform:matrix(0.202832,-0.005071,0.006248,0.249922,0,0);-ms-transform:matrix(0.202832,-0.005071,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202832,-0.005071,0.006248,0.249922,0,0);}
.m0_c00184{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);}
.m9e_c00184{transform:matrix(0.203192,-0.005080,0.006248,0.249922,0,0);-ms-transform:matrix(0.203192,-0.005080,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203192,-0.005080,0.006248,0.249922,0,0);}
.me3_c00184{transform:matrix(0.203296,-0.005082,0.006248,0.249922,0,0);-ms-transform:matrix(0.203296,-0.005082,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203296,-0.005082,0.006248,0.249922,0,0);}
.m3b_c00184{transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);}
.maf_c00184{transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);-ms-transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);}
.m5b_c00184{transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);-ms-transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203851,-0.004892,0.005998,0.249928,0,0);}
.m47_c00184{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m46_c00184{transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.204094,-0.005919,0.007247,0.249895,0,0);-ms-transform:matrix(0.204094,-0.005919,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204094,-0.005919,0.007247,0.249895,0,0);}
.ma8_c00184{transform:matrix(0.204101,-0.005103,0.006248,0.249922,0,0);-ms-transform:matrix(0.204101,-0.005103,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204101,-0.005103,0.006248,0.249922,0,0);}
.m2a_c00184{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.mb4_c00184{transform:matrix(0.205396,-0.005135,0.006248,0.249922,0,0);-ms-transform:matrix(0.205396,-0.005135,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205396,-0.005135,0.006248,0.249922,0,0);}
.m3c_c00184{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.mf3_c00184{transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);-ms-transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);}
.m55_c00184{transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);-ms-transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);}
.mfb_c00184{transform:matrix(0.206520,-0.005163,0.006248,0.249922,0,0);-ms-transform:matrix(0.206520,-0.005163,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206520,-0.005163,0.006248,0.249922,0,0);}
.m5a_c00184{transform:matrix(0.206810,-0.004963,0.005998,0.249928,0,0);-ms-transform:matrix(0.206810,-0.004963,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206810,-0.004963,0.005998,0.249928,0,0);}
.m43_c00184{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.ma2_c00184{transform:matrix(0.207805,-0.005195,0.006248,0.249922,0,0);-ms-transform:matrix(0.207805,-0.005195,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207805,-0.005195,0.006248,0.249922,0,0);}
.m73_c00184{transform:matrix(0.207843,-0.006027,0.007247,0.249895,0,0);-ms-transform:matrix(0.207843,-0.006027,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207843,-0.006027,0.007247,0.249895,0,0);}
.mcf_c00184{transform:matrix(0.207860,-0.005197,0.006248,0.249922,0,0);-ms-transform:matrix(0.207860,-0.005197,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207860,-0.005197,0.006248,0.249922,0,0);}
.mee_c00184{transform:matrix(0.208460,-0.005211,0.006248,0.249922,0,0);-ms-transform:matrix(0.208460,-0.005211,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208460,-0.005211,0.006248,0.249922,0,0);}
.mf9_c00184{transform:matrix(0.208520,-0.005213,0.006248,0.249922,0,0);-ms-transform:matrix(0.208520,-0.005213,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208520,-0.005213,0.006248,0.249922,0,0);}
.m4f_c00184{transform:matrix(0.208740,-0.005010,0.005998,0.249928,0,0);-ms-transform:matrix(0.208740,-0.005010,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208740,-0.005010,0.005998,0.249928,0,0);}
.m97_c00184{transform:matrix(0.209310,-0.005233,0.006248,0.249922,0,0);-ms-transform:matrix(0.209310,-0.005233,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209310,-0.005233,0.006248,0.249922,0,0);}
.md8_c00184{transform:matrix(0.209375,-0.005234,0.006248,0.249922,0,0);-ms-transform:matrix(0.209375,-0.005234,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209375,-0.005234,0.006248,0.249922,0,0);}
.m62_c00184{transform:matrix(0.209765,-0.005034,0.005998,0.249928,0,0);-ms-transform:matrix(0.209765,-0.005034,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209765,-0.005034,0.005998,0.249928,0,0);}
.m27_c00184{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.210044,-0.005251,0.006248,0.249922,0,0);-ms-transform:matrix(0.210044,-0.005251,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210044,-0.005251,0.006248,0.249922,0,0);}
.meb_c00184{transform:matrix(0.210179,-0.005254,0.006248,0.249922,0,0);-ms-transform:matrix(0.210179,-0.005254,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210179,-0.005254,0.006248,0.249922,0,0);}
.m98_c00184{transform:matrix(0.210239,-0.005256,0.006248,0.249922,0,0);-ms-transform:matrix(0.210239,-0.005256,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210239,-0.005256,0.006248,0.249922,0,0);}
.m9d_c00184{transform:matrix(0.211004,-0.005275,0.006248,0.249922,0,0);-ms-transform:matrix(0.211004,-0.005275,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211004,-0.005275,0.006248,0.249922,0,0);}
.mab_c00184{transform:matrix(0.211029,-0.005276,0.006248,0.249922,0,0);-ms-transform:matrix(0.211029,-0.005276,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211029,-0.005276,0.006248,0.249922,0,0);}
.m37_c00184{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{transform:matrix(0.211464,-0.005075,0.005998,0.249928,0,0);-ms-transform:matrix(0.211464,-0.005075,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211464,-0.005075,0.005998,0.249928,0,0);}
.m2c_c00184{transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);}
.md2_c00184{transform:matrix(0.211689,-0.005292,0.006248,0.249922,0,0);-ms-transform:matrix(0.211689,-0.005292,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211689,-0.005292,0.006248,0.249922,0,0);}
.mef_c00184{transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);-ms-transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);}
.m6f_c00184{transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);-ms-transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);}
.mc4_c00184{transform:matrix(0.211904,-0.005298,0.006248,0.249922,0,0);-ms-transform:matrix(0.211904,-0.005298,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211904,-0.005298,0.006248,0.249922,0,0);}
.md6_c00184{transform:matrix(0.212369,-0.005309,0.006248,0.249922,0,0);-ms-transform:matrix(0.212369,-0.005309,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212369,-0.005309,0.006248,0.249922,0,0);}
.mca_c00184{transform:matrix(0.213828,-0.005346,0.006248,0.249922,0,0);-ms-transform:matrix(0.213828,-0.005346,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213828,-0.005346,0.006248,0.249922,0,0);}
.md3_c00184{transform:matrix(0.213968,-0.005349,0.006248,0.249922,0,0);-ms-transform:matrix(0.213968,-0.005349,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213968,-0.005349,0.006248,0.249922,0,0);}
.m6e_c00184{transform:matrix(0.214030,-0.006207,0.007247,0.249895,0,0);-ms-transform:matrix(0.214030,-0.006207,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214030,-0.006207,0.007247,0.249895,0,0);}
.mc6_c00184{transform:matrix(0.214038,-0.005351,0.006248,0.249922,0,0);-ms-transform:matrix(0.214038,-0.005351,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214038,-0.005351,0.006248,0.249922,0,0);}
.m83_c00184{transform:matrix(0.214878,-0.005372,0.006248,0.249922,0,0);-ms-transform:matrix(0.214878,-0.005372,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214878,-0.005372,0.006248,0.249922,0,0);}
.m60_c00184{transform:matrix(0.215103,-0.005162,0.005998,0.249928,0,0);-ms-transform:matrix(0.215103,-0.005162,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215103,-0.005162,0.005998,0.249928,0,0);}
.mf1_c00184{transform:matrix(0.215273,-0.005382,0.006248,0.249922,0,0);-ms-transform:matrix(0.215273,-0.005382,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215273,-0.005382,0.006248,0.249922,0,0);}
.ma7_c00184{transform:matrix(0.216572,-0.005414,0.006248,0.249922,0,0);-ms-transform:matrix(0.216572,-0.005414,0.006248,0.249922,0,0);-webkit-transform:matrix(0.216572,-0.005414,0.006248,0.249922,0,0);}
.m67_c00184{transform:matrix(0.217517,-0.005220,0.005998,0.249928,0,0);-ms-transform:matrix(0.217517,-0.005220,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217517,-0.005220,0.005998,0.249928,0,0);}
.m4c_c00184{transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{transform:matrix(0.218687,-0.005248,0.005998,0.249928,0,0);-ms-transform:matrix(0.218687,-0.005248,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218687,-0.005248,0.005998,0.249928,0,0);}
.m9c_c00184{transform:matrix(0.219177,-0.005479,0.006248,0.249922,0,0);-ms-transform:matrix(0.219177,-0.005479,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219177,-0.005479,0.006248,0.249922,0,0);}
.mc9_c00184{transform:matrix(0.219646,-0.005491,0.006248,0.249922,0,0);-ms-transform:matrix(0.219646,-0.005491,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219646,-0.005491,0.006248,0.249922,0,0);}
.m87_c00184{transform:matrix(0.219781,-0.005495,0.006248,0.249922,0,0);-ms-transform:matrix(0.219781,-0.005495,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219781,-0.005495,0.006248,0.249922,0,0);}
.me9_c00184{transform:matrix(0.219811,-0.005495,0.006248,0.249922,0,0);-ms-transform:matrix(0.219811,-0.005495,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219811,-0.005495,0.006248,0.249922,0,0);}
.m3d_c00184{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.me1_c00184{transform:matrix(0.220556,-0.005514,0.006248,0.249922,0,0);-ms-transform:matrix(0.220556,-0.005514,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220556,-0.005514,0.006248,0.249922,0,0);}
.m29_c00184{transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.mea_c00184{transform:matrix(0.221331,-0.005533,0.006248,0.249922,0,0);-ms-transform:matrix(0.221331,-0.005533,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221331,-0.005533,0.006248,0.249922,0,0);}
.mcd_c00184{transform:matrix(0.222495,-0.005562,0.006248,0.249922,0,0);-ms-transform:matrix(0.222495,-0.005562,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222495,-0.005562,0.006248,0.249922,0,0);}
.m44_c00184{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.225725,-0.005417,0.005998,0.249928,0,0);-ms-transform:matrix(0.225725,-0.005417,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225725,-0.005417,0.005998,0.249928,0,0);}
.m8d_c00184{transform:matrix(0.226349,-0.005659,0.006248,0.249922,0,0);-ms-transform:matrix(0.226349,-0.005659,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226349,-0.005659,0.006248,0.249922,0,0);}
.mf8_c00184{transform:matrix(0.226729,-0.005668,0.006248,0.249922,0,0);-ms-transform:matrix(0.226729,-0.005668,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226729,-0.005668,0.006248,0.249922,0,0);}
.mba_c00184{transform:matrix(0.226834,-0.005671,0.006248,0.249922,0,0);-ms-transform:matrix(0.226834,-0.005671,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226834,-0.005671,0.006248,0.249922,0,0);}
.mc8_c00184{transform:matrix(0.226869,-0.005672,0.006248,0.249922,0,0);-ms-transform:matrix(0.226869,-0.005672,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226869,-0.005672,0.006248,0.249922,0,0);}
.m52_c00184{transform:matrix(0.226950,-0.005447,0.005998,0.249928,0,0);-ms-transform:matrix(0.226950,-0.005447,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226950,-0.005447,0.005998,0.249928,0,0);}
.m3e_c00184{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{transform:matrix(0.230489,-0.005532,0.005998,0.249928,0,0);-ms-transform:matrix(0.230489,-0.005532,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230489,-0.005532,0.005998,0.249928,0,0);}
.m40_c00184{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.mb8_c00184{transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);-ms-transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);}
.m35_c00184{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00184{transform:matrix(0.232387,-0.005810,0.006248,0.249922,0,0);-ms-transform:matrix(0.232387,-0.005810,0.006248,0.249922,0,0);-webkit-transform:matrix(0.232387,-0.005810,0.006248,0.249922,0,0);}
.m49_c00184{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.me8_c00184{transform:matrix(0.234267,-0.005857,0.006248,0.249922,0,0);-ms-transform:matrix(0.234267,-0.005857,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234267,-0.005857,0.006248,0.249922,0,0);}
.m9f_c00184{transform:matrix(0.234897,-0.005872,0.006248,0.249922,0,0);-ms-transform:matrix(0.234897,-0.005872,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234897,-0.005872,0.006248,0.249922,0,0);}
.med_c00184{transform:matrix(0.235571,-0.005889,0.006248,0.249922,0,0);-ms-transform:matrix(0.235571,-0.005889,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235571,-0.005889,0.006248,0.249922,0,0);}
.m4e_c00184{transform:matrix(0.236662,-0.005680,0.005998,0.249928,0,0);-ms-transform:matrix(0.236662,-0.005680,0.005998,0.249928,0,0);-webkit-transform:matrix(0.236662,-0.005680,0.005998,0.249928,0,0);}
.mf0_c00184{transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);-ms-transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);}
.m95_c00184{transform:matrix(0.238006,-0.005950,0.006248,0.249922,0,0);-ms-transform:matrix(0.238006,-0.005950,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238006,-0.005950,0.006248,0.249922,0,0);}
.m5d_c00184{transform:matrix(0.239406,-0.005746,0.005998,0.249928,0,0);-ms-transform:matrix(0.239406,-0.005746,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239406,-0.005746,0.005998,0.249928,0,0);}
.mdf_c00184{transform:matrix(0.239615,-0.005990,0.006248,0.249922,0,0);-ms-transform:matrix(0.239615,-0.005990,0.006248,0.249922,0,0);-webkit-transform:matrix(0.239615,-0.005990,0.006248,0.249922,0,0);}
.m2d_c00184{transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.242620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242620,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00184{transform:matrix(0.250507,-0.006263,0.006248,0.249922,0,0);-ms-transform:matrix(0.250507,-0.006263,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250507,-0.006263,0.006248,0.249922,0,0);}
.m57_c00184{transform:matrix(0.252647,-0.006064,0.005998,0.249928,0,0);-ms-transform:matrix(0.252647,-0.006064,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252647,-0.006064,0.005998,0.249928,0,0);}
.m79_c00184{transform:matrix(0.253229,-0.007344,0.007247,0.249895,0,0);-ms-transform:matrix(0.253229,-0.007344,0.007247,0.249895,0,0);-webkit-transform:matrix(0.253229,-0.007344,0.007247,0.249895,0,0);}
.mb9_c00184{transform:matrix(0.253346,-0.006334,0.006248,0.249922,0,0);-ms-transform:matrix(0.253346,-0.006334,0.006248,0.249922,0,0);-webkit-transform:matrix(0.253346,-0.006334,0.006248,0.249922,0,0);}
.m2e_c00184{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);}
.m99_c00184{transform:matrix(0.269676,-0.006742,0.006248,0.249922,0,0);-ms-transform:matrix(0.269676,-0.006742,0.006248,0.249922,0,0);-webkit-transform:matrix(0.269676,-0.006742,0.006248,0.249922,0,0);}
.ma4_c00184{transform:matrix(0.280872,-0.007022,0.006248,0.249922,0,0);-ms-transform:matrix(0.280872,-0.007022,0.006248,0.249922,0,0);-webkit-transform:matrix(0.280872,-0.007022,0.006248,0.249922,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:0.000000px;}
.fc0_c00184{color:transparent;}
.fs11_c00184{font-size:55.667388px;}
.fs6_c00184{font-size:57.750000px;}
.fs13_c00184{font-size:58.818372px;}
.fs8_c00184{font-size:59.867234px;}
.fs12_c00184{font-size:59.868700px;}
.fs5_c00184{font-size:60.900000px;}
.fse_c00184{font-size:60.919028px;}
.fs7_c00184{font-size:61.950000px;}
.fs9_c00184{font-size:61.967839px;}
.fs0_c00184{font-size:64.050000px;}
.fsd_c00184{font-size:64.070012px;}
.fsf_c00184{font-size:65.120341px;}
.fsb_c00184{font-size:65.127369px;}
.fs10_c00184{font-size:66.170669px;}
.fsa_c00184{font-size:67.219351px;}
.fsc_c00184{font-size:68.278693px;}
.fs4_c00184{font-size:69.300000px;}
.fs3_c00184{font-size:70.350000px;}
.fs2_c00184{font-size:72.450000px;}
.fs1_c00184{font-size:76.650000px;}
.y0_c00184{bottom:0.000000px;}
.yf3_c00184{bottom:35.831138px;}
.yf4_c00184{bottom:36.129150px;}
.yf5_c00184{bottom:36.288450px;}
.yf6_c00184{bottom:36.644625px;}
.yf7_c00184{bottom:36.880800px;}
.yf8_c00184{bottom:37.573650px;}
.yf9_c00184{bottom:37.872450px;}
.yfa_c00184{bottom:38.505300px;}
.yfb_c00184{bottom:38.771062px;}
.yfc_c00184{bottom:39.186638px;}
.ye9_c00184{bottom:53.117025px;}
.yea_c00184{bottom:53.349375px;}
.yeb_c00184{bottom:53.496487px;}
.yec_c00184{bottom:53.971012px;}
.yed_c00184{bottom:54.237938px;}
.yee_c00184{bottom:54.560062px;}
.yef_c00184{bottom:55.342425px;}
.yf0_c00184{bottom:55.610400px;}
.yf1_c00184{bottom:56.347125px;}
.yf2_c00184{bottom:56.527275px;}
.ye1_c00184{bottom:69.596738px;}
.ye2_c00184{bottom:69.908887px;}
.ye3_c00184{bottom:70.795537px;}
.ye4_c00184{bottom:71.113837px;}
.ye5_c00184{bottom:72.419700px;}
.ye6_c00184{bottom:72.950775px;}
.ye7_c00184{bottom:74.187975px;}
.ye8_c00184{bottom:74.627175px;}
.yd9_c00184{bottom:87.963375px;}
.yda_c00184{bottom:88.741425px;}
.ydb_c00184{bottom:90.553912px;}
.ydc_c00184{bottom:91.444312px;}
.ydd_c00184{bottom:92.146425px;}
.yde_c00184{bottom:93.357337px;}
.ydf_c00184{bottom:93.757987px;}
.ye0_c00184{bottom:94.804763px;}
.yd1_c00184{bottom:106.057763px;}
.yd2_c00184{bottom:108.133988px;}
.yd3_c00184{bottom:108.592838px;}
.yd4_c00184{bottom:110.148075px;}
.yd5_c00184{bottom:110.466825px;}
.yd6_c00184{bottom:110.852663px;}
.yd7_c00184{bottom:111.600750px;}
.yd8_c00184{bottom:112.506788px;}
.yc9_c00184{bottom:123.883200px;}
.yca_c00184{bottom:125.187413px;}
.ycb_c00184{bottom:126.399863px;}
.ycc_c00184{bottom:126.694013px;}
.ycd_c00184{bottom:127.381650px;}
.yce_c00184{bottom:127.952963px;}
.ycf_c00184{bottom:128.652638px;}
.yd0_c00184{bottom:129.759225px;}
.yc0_c00184{bottom:141.169725px;}
.yc1_c00184{bottom:142.546125px;}
.yc2_c00184{bottom:143.786550px;}
.yc3_c00184{bottom:144.564300px;}
.yc4_c00184{bottom:144.964238px;}
.yc5_c00184{bottom:145.519388px;}
.yc6_c00184{bottom:145.845825px;}
.yc7_c00184{bottom:146.243513px;}
.yc8_c00184{bottom:147.185888px;}
.yb9_c00184{bottom:151.455150px;}
.yba_c00184{bottom:153.010050px;}
.ybb_c00184{bottom:155.353500px;}
.ybc_c00184{bottom:156.369038px;}
.ybd_c00184{bottom:158.083350px;}
.ybe_c00184{bottom:159.978675px;}
.ybf_c00184{bottom:160.820213px;}
.yb2_c00184{bottom:170.079225px;}
.yb3_c00184{bottom:171.151163px;}
.yb4_c00184{bottom:172.779750px;}
.yb5_c00184{bottom:174.688388px;}
.yb6_c00184{bottom:175.460963px;}
.yb7_c00184{bottom:177.434663px;}
.yb8_c00184{bottom:178.438800px;}
.yaa_c00184{bottom:188.980275px;}
.yab_c00184{bottom:189.855038px;}
.yac_c00184{bottom:190.667213px;}
.yad_c00184{bottom:191.699025px;}
.yae_c00184{bottom:192.431888px;}
.yaf_c00184{bottom:193.011300px;}
.yb0_c00184{bottom:195.294075px;}
.yb1_c00184{bottom:196.147088px;}
.ya2_c00184{bottom:207.883463px;}
.ya3_c00184{bottom:210.151425px;}
.ya4_c00184{bottom:210.408000px;}
.ya5_c00184{bottom:211.392488px;}
.ya6_c00184{bottom:211.750725px;}
.ya7_c00184{bottom:212.161313px;}
.ya8_c00184{bottom:213.039638px;}
.ya9_c00184{bottom:213.864863px;}
.y9a_c00184{bottom:224.094938px;}
.y9b_c00184{bottom:224.822400px;}
.y9c_c00184{bottom:225.529575px;}
.y9d_c00184{bottom:225.982725px;}
.y9e_c00184{bottom:228.314438px;}
.y9f_c00184{bottom:229.596863px;}
.ya0_c00184{bottom:230.188388px;}
.ya1_c00184{bottom:231.875963px;}
.y93_c00184{bottom:243.802950px;}
.y94_c00184{bottom:244.557788px;}
.y95_c00184{bottom:245.148938px;}
.y96_c00184{bottom:245.571413px;}
.y97_c00184{bottom:247.764638px;}
.y98_c00184{bottom:248.266388px;}
.y99_c00184{bottom:248.748638px;}
.y88_c00184{bottom:258.932662px;}
.y89_c00184{bottom:259.335188px;}
.y8a_c00184{bottom:260.786925px;}
.y8b_c00184{bottom:261.402600px;}
.y8c_c00184{bottom:262.416300px;}
.y8d_c00184{bottom:263.070225px;}
.y8e_c00184{bottom:264.389063px;}
.y8f_c00184{bottom:264.792000px;}
.y90_c00184{bottom:265.485938px;}
.y91_c00184{bottom:266.062275px;}
.y92_c00184{bottom:267.202313px;}
.y81_c00184{bottom:277.299000px;}
.y82_c00184{bottom:277.741312px;}
.y83_c00184{bottom:278.973150px;}
.y84_c00184{bottom:279.783750px;}
.y85_c00184{bottom:281.060100px;}
.y86_c00184{bottom:282.562163px;}
.y87_c00184{bottom:283.200188px;}
.y7a_c00184{bottom:294.838470px;}
.y7b_c00184{bottom:297.928134px;}
.y7c_c00184{bottom:298.340916px;}
.y7d_c00184{bottom:299.049689px;}
.y7e_c00184{bottom:300.353010px;}
.y7f_c00184{bottom:300.692507px;}
.y80_c00184{bottom:301.136721px;}
.y71_c00184{bottom:311.579985px;}
.y72_c00184{bottom:312.905193px;}
.y73_c00184{bottom:314.077017px;}
.y74_c00184{bottom:314.629107px;}
.y75_c00184{bottom:315.543841px;}
.y76_c00184{bottom:316.126404px;}
.y77_c00184{bottom:317.935623px;}
.y78_c00184{bottom:319.647313px;}
.y79_c00184{bottom:320.045193px;}
.y69_c00184{bottom:328.600500px;}
.y6a_c00184{bottom:329.528703px;}
.y6b_c00184{bottom:330.350505px;}
.y6c_c00184{bottom:330.761798px;}
.y6d_c00184{bottom:332.837705px;}
.y6e_c00184{bottom:334.043699px;}
.y6f_c00184{bottom:334.521807px;}
.y70_c00184{bottom:336.094506px;}
.y62_c00184{bottom:344.244204px;}
.y63_c00184{bottom:345.672924px;}
.y64_c00184{bottom:347.149824px;}
.y65_c00184{bottom:349.240380px;}
.y66_c00184{bottom:350.649588px;}
.y67_c00184{bottom:351.287028px;}
.y68_c00184{bottom:352.707768px;}
.y59_c00184{bottom:360.188484px;}
.y5a_c00184{bottom:362.240556px;}
.y5b_c00184{bottom:362.847564px;}
.y5c_c00184{bottom:365.150184px;}
.y5d_c00184{bottom:365.839692px;}
.y5e_c00184{bottom:367.069836px;}
.y5f_c00184{bottom:367.881600px;}
.y60_c00184{bottom:368.891616px;}
.y61_c00184{bottom:369.568692px;}
.y52_c00184{bottom:378.280464px;}
.y53_c00184{bottom:379.178460px;}
.y54_c00184{bottom:380.794836px;}
.y55_c00184{bottom:381.641148px;}
.y56_c00184{bottom:383.830416px;}
.y57_c00184{bottom:385.133148px;}
.y58_c00184{bottom:386.178360px;}
.y4e_c00184{bottom:395.286000px;}
.y4f_c00184{bottom:395.923020px;}
.y50_c00184{bottom:397.575420px;}
.y51_c00184{bottom:398.067756px;}
.y47_c00184{bottom:413.116500px;}
.y48_c00184{bottom:414.499500px;}
.y49_c00184{bottom:415.204500px;}
.y4a_c00184{bottom:416.577000px;}
.y4b_c00184{bottom:417.109500px;}
.y4c_c00184{bottom:419.392500px;}
.y4d_c00184{bottom:419.968500px;}
.y41_c00184{bottom:429.589500px;}
.y42_c00184{bottom:431.512500px;}
.y43_c00184{bottom:433.366500px;}
.y44_c00184{bottom:436.224000px;}
.y45_c00184{bottom:438.328500px;}
.y46_c00184{bottom:438.945000px;}
.y39_c00184{bottom:444.985500px;}
.y3a_c00184{bottom:445.912500px;}
.y3b_c00184{bottom:448.779000px;}
.y3c_c00184{bottom:449.748000px;}
.y3d_c00184{bottom:452.337000px;}
.y3e_c00184{bottom:453.064500px;}
.y3f_c00184{bottom:455.023500px;}
.y40_c00184{bottom:455.469000px;}
.y2f_c00184{bottom:464.152500px;}
.y30_c00184{bottom:464.818500px;}
.y31_c00184{bottom:465.394500px;}
.y32_c00184{bottom:466.618500px;}
.y33_c00184{bottom:467.272500px;}
.y34_c00184{bottom:467.910000px;}
.y35_c00184{bottom:470.176500px;}
.y36_c00184{bottom:470.664000px;}
.y37_c00184{bottom:472.060500px;}
.y38_c00184{bottom:473.137500px;}
.y27_c00184{bottom:480.894000px;}
.y28_c00184{bottom:482.926500px;}
.y29_c00184{bottom:484.023000px;}
.y2a_c00184{bottom:484.777500px;}
.y2b_c00184{bottom:486.750000px;}
.y2c_c00184{bottom:487.503000px;}
.y2d_c00184{bottom:488.584500px;}
.y2e_c00184{bottom:490.324500px;}
.y1f_c00184{bottom:499.516500px;}
.y20_c00184{bottom:500.374500px;}
.y21_c00184{bottom:501.168000px;}
.y22_c00184{bottom:502.759500px;}
.y23_c00184{bottom:503.688000px;}
.y24_c00184{bottom:505.203000px;}
.y25_c00184{bottom:507.070500px;}
.y26_c00184{bottom:508.200000px;}
.y19_c00184{bottom:515.445000px;}
.y1a_c00184{bottom:516.642000px;}
.y1b_c00184{bottom:518.386500px;}
.y1c_c00184{bottom:521.737500px;}
.y1d_c00184{bottom:522.459000px;}
.y1e_c00184{bottom:524.479500px;}
.y11_c00184{bottom:533.266500px;}
.y12_c00184{bottom:534.531000px;}
.y13_c00184{bottom:535.497000px;}
.y14_c00184{bottom:536.403000px;}
.y15_c00184{bottom:537.732000px;}
.y16_c00184{bottom:540.033000px;}
.y17_c00184{bottom:540.667500px;}
.y18_c00184{bottom:541.839000px;}
.ya_c00184{bottom:552.160500px;}
.yb_c00184{bottom:553.051500px;}
.yc_c00184{bottom:553.612500px;}
.yd_c00184{bottom:555.406500px;}
.ye_c00184{bottom:555.781500px;}
.yf_c00184{bottom:556.977000px;}
.y10_c00184{bottom:559.404000px;}
.y2_c00184{bottom:568.365000px;}
.y3_c00184{bottom:570.109500px;}
.y4_c00184{bottom:571.879500px;}
.y5_c00184{bottom:573.015000px;}
.y6_c00184{bottom:574.314000px;}
.y7_c00184{bottom:574.696500px;}
.y8_c00184{bottom:576.213000px;}
.y9_c00184{bottom:577.159500px;}
.y1_c00184{bottom:589.677000px;}
.h13_c00184{height:55.667388px;}
.h8_c00184{height:57.750000px;}
.h15_c00184{height:58.818372px;}
.ha_c00184{height:59.867234px;}
.h14_c00184{height:59.868700px;}
.h7_c00184{height:60.900000px;}
.h10_c00184{height:60.919028px;}
.h9_c00184{height:61.950000px;}
.hb_c00184{height:61.967839px;}
.h2_c00184{height:64.050000px;}
.hf_c00184{height:64.070012px;}
.h11_c00184{height:65.120341px;}
.hd_c00184{height:65.127369px;}
.h12_c00184{height:66.170669px;}
.hc_c00184{height:67.219351px;}
.he_c00184{height:68.278693px;}
.h6_c00184{height:69.300000px;}
.h5_c00184{height:70.350000px;}
.h4_c00184{height:72.450000px;}
.h3_c00184{height:76.650000px;}
.h0_c00184{height:623.100000px;}
.h1_c00184{height:623.250000px;}
.w1_c00184{width:383.250000px;}
.w0_c00184{width:383.400000px;}
.x0_c00184{left:0.000000px;}
.x4f_c00184{left:5.987151px;}
.x49_c00184{left:24.552656px;}
.x2_c00184{left:32.064000px;}
.x21_c00184{left:33.738000px;}
.x2e_c00184{left:34.752000px;}
.x55_c00184{left:36.517500px;}
.x58_c00184{left:37.803675px;}
.x60_c00184{left:39.025838px;}
.x66_c00184{left:40.277438px;}
.x6f_c00184{left:41.610788px;}
.x7a_c00184{left:42.646763px;}
.x81_c00184{left:44.184338px;}
.x59_c00184{left:51.683288px;}
.x28_c00184{left:53.602500px;}
.x2f_c00184{left:58.528500px;}
.x3d_c00184{left:60.532500px;}
.x1b_c00184{left:61.644000px;}
.xa_c00184{left:64.312500px;}
.x48_c00184{left:66.109500px;}
.x17_c00184{left:68.224500px;}
.x83_c00184{left:69.809775px;}
.x10_c00184{left:71.179500px;}
.x6b_c00184{left:72.898763px;}
.x5e_c00184{left:76.271850px;}
.x38_c00184{left:79.983000px;}
.x84_c00184{left:83.026050px;}
.xb_c00184{left:84.322500px;}
.x3_c00184{left:86.557500px;}
.x1c_c00184{left:88.113000px;}
.x22_c00184{left:91.816500px;}
.x33_c00184{left:93.262500px;}
.x40_c00184{left:94.924212px;}
.x11_c00184{left:100.435500px;}
.x5a_c00184{left:101.767800px;}
.x39_c00184{left:103.492500px;}
.x5f_c00184{left:105.801525px;}
.x29_c00184{left:108.127500px;}
.x82_c00184{left:109.803488px;}
.x41_c00184{left:112.774428px;}
.x18_c00184{left:119.520000px;}
.x23_c00184{left:123.126000px;}
.x44_c00184{left:125.398224px;}
.x12_c00184{left:127.872000px;}
.x3e_c00184{left:129.382500px;}
.x30_c00184{left:132.025500px;}
.x4a_c00184{left:133.473831px;}
.x56_c00184{left:135.907500px;}
.x67_c00184{left:137.380163px;}
.x50_c00184{left:140.326511px;}
.x4_c00184{left:141.885000px;}
.x62_c00184{left:143.078700px;}
.x24_c00184{left:144.684000px;}
.x2a_c00184{left:147.262500px;}
.xc_c00184{left:148.411500px;}
.x34_c00184{left:149.460000px;}
.x6d_c00184{left:150.755588px;}
.x77_c00184{left:152.298338px;}
.x63_c00184{left:154.722563px;}
.x31_c00184{left:156.870000px;}
.x51_c00184{left:158.287643px;}
.xd_c00184{left:161.797500px;}
.x1_c00184{left:164.430000px;}
.x3a_c00184{left:166.983000px;}
.x13_c00184{left:168.147000px;}
.x1d_c00184{left:172.089000px;}
.x73_c00184{left:175.407525px;}
.x5_c00184{left:177.376500px;}
.x42_c00184{left:180.513192px;}
.x7b_c00184{left:181.884263px;}
.x68_c00184{left:184.287675px;}
.x4b_c00184{left:186.968397px;}
.x52_c00184{left:189.095493px;}
.x45_c00184{left:190.742196px;}
.x7f_c00184{left:192.141488px;}
.x61_c00184{left:195.318038px;}
.x64_c00184{left:199.505438px;}
.x25_c00184{left:201.045000px;}
.x70_c00184{left:203.269950px;}
.xe_c00184{left:204.492000px;}
.x74_c00184{left:208.136288px;}
.x7c_c00184{left:209.968763px;}
.x2b_c00184{left:215.958000px;}
.x6_c00184{left:217.981500px;}
.x78_c00184{left:219.911213px;}
.x1e_c00184{left:222.606000px;}
.x5b_c00184{left:225.980888px;}
.x6e_c00184{left:228.790125px;}
.x7_c00184{left:229.918500px;}
.x46_c00184{left:234.763236px;}
.x35_c00184{left:236.053500px;}
.x14_c00184{left:237.858000px;}
.x19_c00184{left:239.289000px;}
.x32_c00184{left:241.927500px;}
.x3b_c00184{left:243.087000px;}
.x53_c00184{left:245.788868px;}
.x57_c00184{left:247.044000px;}
.x71_c00184{left:248.798025px;}
.x79_c00184{left:250.556250px;}
.x4c_c00184{left:251.581267px;}
.x26_c00184{left:253.435500px;}
.x47_c00184{left:254.694420px;}
.x15_c00184{left:257.095500px;}
.x7d_c00184{left:258.405263px;}
.x3f_c00184{left:260.328324px;}
.x3c_c00184{left:262.305000px;}
.x5c_c00184{left:263.792100px;}
.x69_c00184{left:265.812563px;}
.x75_c00184{left:268.641825px;}
.x2c_c00184{left:273.009000px;}
.x65_c00184{left:274.337025px;}
.x8_c00184{left:277.287000px;}
.x54_c00184{left:279.853784px;}
.x5d_c00184{left:283.663612px;}
.x1f_c00184{left:284.847000px;}
.x85_c00184{left:289.917750px;}
.xf_c00184{left:291.177000px;}
.x16_c00184{left:292.605000px;}
.x6c_c00184{left:293.740125px;}
.x6a_c00184{left:296.270775px;}
.x1a_c00184{left:298.702500px;}
.x36_c00184{left:299.820000px;}
.x27_c00184{left:303.130500px;}
.x2d_c00184{left:305.652000px;}
.x9_c00184{left:306.859500px;}
.x80_c00184{left:308.357925px;}
.x43_c00184{left:310.461516px;}
.x4d_c00184{left:312.727551px;}
.x7e_c00184{left:316.302263px;}
.x37_c00184{left:318.483000px;}
.x76_c00184{left:321.370613px;}
.x20_c00184{left:322.504500px;}
.x86_c00184{left:324.552000px;}
.x4e_c00184{left:326.913442px;}
.x72_c00184{left:328.125938px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
.fs11_c00184{font-size:49.482123pt;}
.fs6_c00184{font-size:51.333333pt;}
.fs13_c00184{font-size:52.282997pt;}
.fs8_c00184{font-size:53.215319pt;}
.fs12_c00184{font-size:53.216622pt;}
.fs5_c00184{font-size:54.133333pt;}
.fse_c00184{font-size:54.150247pt;}
.fs7_c00184{font-size:55.066667pt;}
.fs9_c00184{font-size:55.082524pt;}
.fs0_c00184{font-size:56.933333pt;}
.fsd_c00184{font-size:56.951122pt;}
.fsf_c00184{font-size:57.884747pt;}
.fsb_c00184{font-size:57.890994pt;}
.fs10_c00184{font-size:58.818372pt;}
.fsa_c00184{font-size:59.750534pt;}
.fsc_c00184{font-size:60.692172pt;}
.fs4_c00184{font-size:61.600000pt;}
.fs3_c00184{font-size:62.533333pt;}
.fs2_c00184{font-size:64.400000pt;}
.fs1_c00184{font-size:68.133333pt;}
.y0_c00184{bottom:0.000000pt;}
.yf3_c00184{bottom:31.849900pt;}
.yf4_c00184{bottom:32.114800pt;}
.yf5_c00184{bottom:32.256400pt;}
.yf6_c00184{bottom:32.573000pt;}
.yf7_c00184{bottom:32.782933pt;}
.yf8_c00184{bottom:33.398800pt;}
.yf9_c00184{bottom:33.664400pt;}
.yfa_c00184{bottom:34.226933pt;}
.yfb_c00184{bottom:34.463167pt;}
.yfc_c00184{bottom:34.832567pt;}
.ye9_c00184{bottom:47.215133pt;}
.yea_c00184{bottom:47.421667pt;}
.yeb_c00184{bottom:47.552433pt;}
.yec_c00184{bottom:47.974233pt;}
.yed_c00184{bottom:48.211500pt;}
.yee_c00184{bottom:48.497833pt;}
.yef_c00184{bottom:49.193267pt;}
.yf0_c00184{bottom:49.431467pt;}
.yf1_c00184{bottom:50.086333pt;}
.yf2_c00184{bottom:50.246467pt;}
.ye1_c00184{bottom:61.863767pt;}
.ye2_c00184{bottom:62.141233pt;}
.ye3_c00184{bottom:62.929367pt;}
.ye4_c00184{bottom:63.212300pt;}
.ye5_c00184{bottom:64.373067pt;}
.ye6_c00184{bottom:64.845133pt;}
.ye7_c00184{bottom:65.944867pt;}
.ye8_c00184{bottom:66.335267pt;}
.yd9_c00184{bottom:78.189667pt;}
.yda_c00184{bottom:78.881267pt;}
.ydb_c00184{bottom:80.492367pt;}
.ydc_c00184{bottom:81.283833pt;}
.ydd_c00184{bottom:81.907933pt;}
.yde_c00184{bottom:82.984300pt;}
.ydf_c00184{bottom:83.340433pt;}
.ye0_c00184{bottom:84.270900pt;}
.yd1_c00184{bottom:94.273567pt;}
.yd2_c00184{bottom:96.119100pt;}
.yd3_c00184{bottom:96.526967pt;}
.yd4_c00184{bottom:97.909400pt;}
.yd5_c00184{bottom:98.192733pt;}
.yd6_c00184{bottom:98.535700pt;}
.yd7_c00184{bottom:99.200667pt;}
.yd8_c00184{bottom:100.006033pt;}
.yc9_c00184{bottom:110.118400pt;}
.yca_c00184{bottom:111.277700pt;}
.ycb_c00184{bottom:112.355433pt;}
.ycc_c00184{bottom:112.616900pt;}
.ycd_c00184{bottom:113.228133pt;}
.yce_c00184{bottom:113.735967pt;}
.ycf_c00184{bottom:114.357900pt;}
.yd0_c00184{bottom:115.341533pt;}
.yc0_c00184{bottom:125.484200pt;}
.yc1_c00184{bottom:126.707667pt;}
.yc2_c00184{bottom:127.810267pt;}
.yc3_c00184{bottom:128.501600pt;}
.yc4_c00184{bottom:128.857100pt;}
.yc5_c00184{bottom:129.350567pt;}
.yc6_c00184{bottom:129.640733pt;}
.yc7_c00184{bottom:129.994233pt;}
.yc8_c00184{bottom:130.831900pt;}
.yb9_c00184{bottom:134.626800pt;}
.yba_c00184{bottom:136.008933pt;}
.ybb_c00184{bottom:138.092000pt;}
.ybc_c00184{bottom:138.994700pt;}
.ybd_c00184{bottom:140.518533pt;}
.ybe_c00184{bottom:142.203267pt;}
.ybf_c00184{bottom:142.951300pt;}
.yb2_c00184{bottom:151.181533pt;}
.yb3_c00184{bottom:152.134367pt;}
.yb4_c00184{bottom:153.582000pt;}
.yb5_c00184{bottom:155.278567pt;}
.yb6_c00184{bottom:155.965300pt;}
.yb7_c00184{bottom:157.719700pt;}
.yb8_c00184{bottom:158.612267pt;}
.yaa_c00184{bottom:167.982467pt;}
.yab_c00184{bottom:168.760033pt;}
.yac_c00184{bottom:169.481967pt;}
.yad_c00184{bottom:170.399133pt;}
.yae_c00184{bottom:171.050567pt;}
.yaf_c00184{bottom:171.565600pt;}
.yb0_c00184{bottom:173.594733pt;}
.yb1_c00184{bottom:174.352967pt;}
.ya2_c00184{bottom:184.785300pt;}
.ya3_c00184{bottom:186.801267pt;}
.ya4_c00184{bottom:187.029333pt;}
.ya5_c00184{bottom:187.904433pt;}
.ya6_c00184{bottom:188.222867pt;}
.ya7_c00184{bottom:188.587833pt;}
.ya8_c00184{bottom:189.368567pt;}
.ya9_c00184{bottom:190.102100pt;}
.y9a_c00184{bottom:199.195500pt;}
.y9b_c00184{bottom:199.842133pt;}
.y9c_c00184{bottom:200.470733pt;}
.y9d_c00184{bottom:200.873533pt;}
.y9e_c00184{bottom:202.946167pt;}
.y9f_c00184{bottom:204.086100pt;}
.ya0_c00184{bottom:204.611900pt;}
.ya1_c00184{bottom:206.111967pt;}
.y93_c00184{bottom:216.713733pt;}
.y94_c00184{bottom:217.384700pt;}
.y95_c00184{bottom:217.910167pt;}
.y96_c00184{bottom:218.285700pt;}
.y97_c00184{bottom:220.235233pt;}
.y98_c00184{bottom:220.681233pt;}
.y99_c00184{bottom:221.109900pt;}
.y88_c00184{bottom:230.162367pt;}
.y89_c00184{bottom:230.520167pt;}
.y8a_c00184{bottom:231.810600pt;}
.y8b_c00184{bottom:232.357867pt;}
.y8c_c00184{bottom:233.258933pt;}
.y8d_c00184{bottom:233.840200pt;}
.y8e_c00184{bottom:235.012500pt;}
.y8f_c00184{bottom:235.370667pt;}
.y90_c00184{bottom:235.987500pt;}
.y91_c00184{bottom:236.499800pt;}
.y92_c00184{bottom:237.513167pt;}
.y81_c00184{bottom:246.488000pt;}
.y82_c00184{bottom:246.881167pt;}
.y83_c00184{bottom:247.976133pt;}
.y84_c00184{bottom:248.696667pt;}
.y85_c00184{bottom:249.831200pt;}
.y86_c00184{bottom:251.166367pt;}
.y87_c00184{bottom:251.733500pt;}
.y7a_c00184{bottom:262.078640pt;}
.y7b_c00184{bottom:264.825008pt;}
.y7c_c00184{bottom:265.191925pt;}
.y7d_c00184{bottom:265.821945pt;}
.y7e_c00184{bottom:266.980453pt;}
.y7f_c00184{bottom:267.282228pt;}
.y80_c00184{bottom:267.677085pt;}
.y71_c00184{bottom:276.959987pt;}
.y72_c00184{bottom:278.137949pt;}
.y73_c00184{bottom:279.179571pt;}
.y74_c00184{bottom:279.670317pt;}
.y75_c00184{bottom:280.483415pt;}
.y76_c00184{bottom:281.001248pt;}
.y77_c00184{bottom:282.609443pt;}
.y78_c00184{bottom:284.130945pt;}
.y79_c00184{bottom:284.484616pt;}
.y69_c00184{bottom:292.089333pt;}
.y6a_c00184{bottom:292.914403pt;}
.y6b_c00184{bottom:293.644893pt;}
.y6c_c00184{bottom:294.010487pt;}
.y6d_c00184{bottom:295.855737pt;}
.y6e_c00184{bottom:296.927732pt;}
.y6f_c00184{bottom:297.352717pt;}
.y70_c00184{bottom:298.750672pt;}
.y62_c00184{bottom:305.994848pt;}
.y63_c00184{bottom:307.264821pt;}
.y64_c00184{bottom:308.577621pt;}
.y65_c00184{bottom:310.435893pt;}
.y66_c00184{bottom:311.688523pt;}
.y67_c00184{bottom:312.255136pt;}
.y68_c00184{bottom:313.518016pt;}
.y59_c00184{bottom:320.167541pt;}
.y5a_c00184{bottom:321.991605pt;}
.y5b_c00184{bottom:322.531168pt;}
.y5c_c00184{bottom:324.577941pt;}
.y5d_c00184{bottom:325.190837pt;}
.y5e_c00184{bottom:326.284299pt;}
.y5f_c00184{bottom:327.005867pt;}
.y60_c00184{bottom:327.903659pt;}
.y61_c00184{bottom:328.505504pt;}
.y52_c00184{bottom:336.249301pt;}
.y53_c00184{bottom:337.047520pt;}
.y54_c00184{bottom:338.484299pt;}
.y55_c00184{bottom:339.236576pt;}
.y56_c00184{bottom:341.182592pt;}
.y57_c00184{bottom:342.340576pt;}
.y58_c00184{bottom:343.269653pt;}
.y4e_c00184{bottom:351.365333pt;}
.y4f_c00184{bottom:351.931573pt;}
.y50_c00184{bottom:353.400373pt;}
.y51_c00184{bottom:353.838005pt;}
.y47_c00184{bottom:367.214667pt;}
.y48_c00184{bottom:368.444000pt;}
.y49_c00184{bottom:369.070667pt;}
.y4a_c00184{bottom:370.290667pt;}
.y4b_c00184{bottom:370.764000pt;}
.y4c_c00184{bottom:372.793333pt;}
.y4d_c00184{bottom:373.305333pt;}
.y41_c00184{bottom:381.857333pt;}
.y42_c00184{bottom:383.566667pt;}
.y43_c00184{bottom:385.214667pt;}
.y44_c00184{bottom:387.754667pt;}
.y45_c00184{bottom:389.625333pt;}
.y46_c00184{bottom:390.173333pt;}
.y39_c00184{bottom:395.542667pt;}
.y3a_c00184{bottom:396.366667pt;}
.y3b_c00184{bottom:398.914667pt;}
.y3c_c00184{bottom:399.776000pt;}
.y3d_c00184{bottom:402.077333pt;}
.y3e_c00184{bottom:402.724000pt;}
.y3f_c00184{bottom:404.465333pt;}
.y40_c00184{bottom:404.861333pt;}
.y2f_c00184{bottom:412.580000pt;}
.y30_c00184{bottom:413.172000pt;}
.y31_c00184{bottom:413.684000pt;}
.y32_c00184{bottom:414.772000pt;}
.y33_c00184{bottom:415.353333pt;}
.y34_c00184{bottom:415.920000pt;}
.y35_c00184{bottom:417.934667pt;}
.y36_c00184{bottom:418.368000pt;}
.y37_c00184{bottom:419.609333pt;}
.y38_c00184{bottom:420.566667pt;}
.y27_c00184{bottom:427.461333pt;}
.y28_c00184{bottom:429.268000pt;}
.y29_c00184{bottom:430.242667pt;}
.y2a_c00184{bottom:430.913333pt;}
.y2b_c00184{bottom:432.666667pt;}
.y2c_c00184{bottom:433.336000pt;}
.y2d_c00184{bottom:434.297333pt;}
.y2e_c00184{bottom:435.844000pt;}
.y1f_c00184{bottom:444.014667pt;}
.y20_c00184{bottom:444.777333pt;}
.y21_c00184{bottom:445.482667pt;}
.y22_c00184{bottom:446.897333pt;}
.y23_c00184{bottom:447.722667pt;}
.y24_c00184{bottom:449.069333pt;}
.y25_c00184{bottom:450.729333pt;}
.y26_c00184{bottom:451.733333pt;}
.y19_c00184{bottom:458.173333pt;}
.y1a_c00184{bottom:459.237333pt;}
.y1b_c00184{bottom:460.788000pt;}
.y1c_c00184{bottom:463.766667pt;}
.y1d_c00184{bottom:464.408000pt;}
.y1e_c00184{bottom:466.204000pt;}
.y11_c00184{bottom:474.014667pt;}
.y12_c00184{bottom:475.138667pt;}
.y13_c00184{bottom:475.997333pt;}
.y14_c00184{bottom:476.802667pt;}
.y15_c00184{bottom:477.984000pt;}
.y16_c00184{bottom:480.029333pt;}
.y17_c00184{bottom:480.593333pt;}
.y18_c00184{bottom:481.634667pt;}
.ya_c00184{bottom:490.809333pt;}
.yb_c00184{bottom:491.601333pt;}
.yc_c00184{bottom:492.100000pt;}
.yd_c00184{bottom:493.694667pt;}
.ye_c00184{bottom:494.028000pt;}
.yf_c00184{bottom:495.090667pt;}
.y10_c00184{bottom:497.248000pt;}
.y2_c00184{bottom:505.213333pt;}
.y3_c00184{bottom:506.764000pt;}
.y4_c00184{bottom:508.337333pt;}
.y5_c00184{bottom:509.346667pt;}
.y6_c00184{bottom:510.501333pt;}
.y7_c00184{bottom:510.841333pt;}
.y8_c00184{bottom:512.189333pt;}
.y9_c00184{bottom:513.030667pt;}
.y1_c00184{bottom:524.157333pt;}
.h13_c00184{height:49.482123pt;}
.h8_c00184{height:51.333333pt;}
.h15_c00184{height:52.282997pt;}
.ha_c00184{height:53.215319pt;}
.h14_c00184{height:53.216622pt;}
.h7_c00184{height:54.133333pt;}
.h10_c00184{height:54.150247pt;}
.h9_c00184{height:55.066667pt;}
.hb_c00184{height:55.082524pt;}
.h2_c00184{height:56.933333pt;}
.hf_c00184{height:56.951122pt;}
.h11_c00184{height:57.884747pt;}
.hd_c00184{height:57.890994pt;}
.h12_c00184{height:58.818372pt;}
.hc_c00184{height:59.750534pt;}
.he_c00184{height:60.692172pt;}
.h6_c00184{height:61.600000pt;}
.h5_c00184{height:62.533333pt;}
.h4_c00184{height:64.400000pt;}
.h3_c00184{height:68.133333pt;}
.h0_c00184{height:553.866667pt;}
.h1_c00184{height:554.000000pt;}
.w1_c00184{width:340.666667pt;}
.w0_c00184{width:340.800000pt;}
.x0_c00184{left:0.000000pt;}
.x4f_c00184{left:5.321912pt;}
.x49_c00184{left:21.824583pt;}
.x2_c00184{left:28.501333pt;}
.x21_c00184{left:29.989333pt;}
.x2e_c00184{left:30.890667pt;}
.x55_c00184{left:32.460000pt;}
.x58_c00184{left:33.603267pt;}
.x60_c00184{left:34.689633pt;}
.x66_c00184{left:35.802167pt;}
.x6f_c00184{left:36.987367pt;}
.x7a_c00184{left:37.908233pt;}
.x81_c00184{left:39.274967pt;}
.x59_c00184{left:45.940700pt;}
.x28_c00184{left:47.646667pt;}
.x2f_c00184{left:52.025333pt;}
.x3d_c00184{left:53.806667pt;}
.x1b_c00184{left:54.794667pt;}
.xa_c00184{left:57.166667pt;}
.x48_c00184{left:58.764000pt;}
.x17_c00184{left:60.644000pt;}
.x83_c00184{left:62.053133pt;}
.x10_c00184{left:63.270667pt;}
.x6b_c00184{left:64.798900pt;}
.x5e_c00184{left:67.797200pt;}
.x38_c00184{left:71.096000pt;}
.x84_c00184{left:73.800933pt;}
.xb_c00184{left:74.953333pt;}
.x3_c00184{left:76.940000pt;}
.x1c_c00184{left:78.322667pt;}
.x22_c00184{left:81.614667pt;}
.x33_c00184{left:82.900000pt;}
.x40_c00184{left:84.377077pt;}
.x11_c00184{left:89.276000pt;}
.x5a_c00184{left:90.460267pt;}
.x39_c00184{left:91.993333pt;}
.x5f_c00184{left:94.045800pt;}
.x29_c00184{left:96.113333pt;}
.x82_c00184{left:97.603100pt;}
.x41_c00184{left:100.243936pt;}
.x18_c00184{left:106.240000pt;}
.x23_c00184{left:109.445333pt;}
.x44_c00184{left:111.465088pt;}
.x12_c00184{left:113.664000pt;}
.x3e_c00184{left:115.006667pt;}
.x30_c00184{left:117.356000pt;}
.x4a_c00184{left:118.643405pt;}
.x56_c00184{left:120.806667pt;}
.x67_c00184{left:122.115700pt;}
.x50_c00184{left:124.734676pt;}
.x4_c00184{left:126.120000pt;}
.x62_c00184{left:127.181067pt;}
.x24_c00184{left:128.608000pt;}
.x2a_c00184{left:130.900000pt;}
.xc_c00184{left:131.921333pt;}
.x34_c00184{left:132.853333pt;}
.x6d_c00184{left:134.004967pt;}
.x77_c00184{left:135.376300pt;}
.x63_c00184{left:137.531167pt;}
.x31_c00184{left:139.440000pt;}
.x51_c00184{left:140.700127pt;}
.xd_c00184{left:143.820000pt;}
.x1_c00184{left:146.160000pt;}
.x3a_c00184{left:148.429333pt;}
.x13_c00184{left:149.464000pt;}
.x1d_c00184{left:152.968000pt;}
.x73_c00184{left:155.917800pt;}
.x5_c00184{left:157.668000pt;}
.x42_c00184{left:160.456171pt;}
.x7b_c00184{left:161.674900pt;}
.x68_c00184{left:163.811267pt;}
.x4b_c00184{left:166.194131pt;}
.x52_c00184{left:168.084883pt;}
.x45_c00184{left:169.548619pt;}
.x7f_c00184{left:170.792433pt;}
.x61_c00184{left:173.616033pt;}
.x64_c00184{left:177.338167pt;}
.x25_c00184{left:178.706667pt;}
.x70_c00184{left:180.684400pt;}
.xe_c00184{left:181.770667pt;}
.x74_c00184{left:185.010033pt;}
.x7c_c00184{left:186.638900pt;}
.x2b_c00184{left:191.962667pt;}
.x6_c00184{left:193.761333pt;}
.x78_c00184{left:195.476633pt;}
.x1e_c00184{left:197.872000pt;}
.x5b_c00184{left:200.871900pt;}
.x6e_c00184{left:203.369000pt;}
.x7_c00184{left:204.372000pt;}
.x46_c00184{left:208.678432pt;}
.x35_c00184{left:209.825333pt;}
.x14_c00184{left:211.429333pt;}
.x19_c00184{left:212.701333pt;}
.x32_c00184{left:215.046667pt;}
.x3b_c00184{left:216.077333pt;}
.x53_c00184{left:218.478993pt;}
.x57_c00184{left:219.594667pt;}
.x71_c00184{left:221.153800pt;}
.x79_c00184{left:222.716667pt;}
.x4c_c00184{left:223.627793pt;}
.x26_c00184{left:225.276000pt;}
.x47_c00184{left:226.395040pt;}
.x15_c00184{left:228.529333pt;}
.x7d_c00184{left:229.693567pt;}
.x3f_c00184{left:231.402955pt;}
.x3c_c00184{left:233.160000pt;}
.x5c_c00184{left:234.481867pt;}
.x69_c00184{left:236.277833pt;}
.x75_c00184{left:238.792733pt;}
.x2c_c00184{left:242.674667pt;}
.x65_c00184{left:243.855133pt;}
.x8_c00184{left:246.477333pt;}
.x54_c00184{left:248.758919pt;}
.x5d_c00184{left:252.145433pt;}
.x1f_c00184{left:253.197333pt;}
.x85_c00184{left:257.704667pt;}
.xf_c00184{left:258.824000pt;}
.x16_c00184{left:260.093333pt;}
.x6c_c00184{left:261.102333pt;}
.x6a_c00184{left:263.351800pt;}
.x1a_c00184{left:265.513333pt;}
.x36_c00184{left:266.506667pt;}
.x27_c00184{left:269.449333pt;}
.x2d_c00184{left:271.690667pt;}
.x9_c00184{left:272.764000pt;}
.x80_c00184{left:274.095933pt;}
.x43_c00184{left:275.965792pt;}
.x4d_c00184{left:277.980045pt;}
.x7e_c00184{left:281.157567pt;}
.x37_c00184{left:283.096000pt;}
.x76_c00184{left:285.662767pt;}
.x20_c00184{left:286.670667pt;}
.x86_c00184{left:288.490667pt;}
.x4e_c00184{left:290.589727pt;}
.x72_c00184{left:291.667500pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00185 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00185 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00185 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00185 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00185.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00185{transform:matrix(0.023078,-0.000323,0.003500,0.249976,0,0);-ms-transform:matrix(0.023078,-0.000323,0.003500,0.249976,0,0);-webkit-transform:matrix(0.023078,-0.000323,0.003500,0.249976,0,0);}
.m50_c00185{transform:matrix(0.127015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127015,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(0.130940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130940,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{transform:matrix(0.131570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131570,0.000000,0.000000,0.250000,0,0);}
.md9_c00185{transform:matrix(0.138665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138665,0.000000,0.000000,0.250000,0,0);}
.me5_c00185{transform:matrix(0.141860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141860,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.144485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144485,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.m6c_c00185{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.150445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150445,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);}
.mb8_c00185{transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.m2e_c00185{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m6d_c00185{transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);}
.m7d_c00185{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);}
.me8_c00185{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.mf9_c00185{transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m62_c00185{transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.mf5_c00185{transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168120,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00185{transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);}
.m67_c00185{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);}
.md6_c00185{transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.mc6_c00185{transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);}
.mcb_c00185{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.mb3_c00185{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.md1_c00185{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.me1_c00185{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.mb6_c00185{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);}
.mc5_c00185{transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);}
.mc1_c00185{transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);}
.mea_c00185{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m9c_c00185{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.mac_c00185{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.ma7_c00185{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.mf3_c00185{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.me0_c00185{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.m2d_c00185{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.me6_c00185{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189865,0.000000,0.000000,0.250000,0,0);}
.m92_c00185{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m82_c00185{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00185{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);}
.mf7_c00185{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.md0_c00185{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.mee_c00185{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.192831,-0.002700,0.003500,0.249976,0,0);-ms-transform:matrix(0.192831,-0.002700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192831,-0.002700,0.003500,0.249976,0,0);}
.me7_c00185{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.mc3_c00185{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.meb_c00185{transform:matrix(0.194155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194155,0.000000,0.000000,0.250000,0,0);}
.mda_c00185{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);}
.md3_c00185{transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);}
.me9_c00185{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);}
.mcc_c00185{transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);}
.mc8_c00185{transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.me2_c00185{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.mde_c00185{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.m48_c00185{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.mb2_c00185{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00185{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.md8_c00185{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.med_c00185{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.mbb_c00185{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.mad_c00185{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.me3_c00185{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00185{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m36_c00185{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m66_c00185{transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);}
.mf2_c00185{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);}
.m40_c00185{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m64_c00185{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.mf1_c00185{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.mdc_c00185{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);}
.md2_c00185{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m9b_c00185{transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00185{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.mba_c00185{transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.203340,-0.002847,0.003500,0.249976,0,0);-ms-transform:matrix(0.203340,-0.002847,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203340,-0.002847,0.003500,0.249976,0,0);}
.mdb_c00185{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00185{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00185{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.me4_c00185{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.md5_c00185{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.mbe_c00185{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206870,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.209685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209685,0.000000,0.000000,0.250000,0,0);}
.mb7_c00185{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.mf4_c00185{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00185{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.md4_c00185{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.md7_c00185{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.mca_c00185{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m93_c00185{transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);}
.mce_c00185{transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);}
.mb0_c00185{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);}
.mec_c00185{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.mc9_c00185{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m94_c00185{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.mae_c00185{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mb1_c00185{transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);}
.mf6_c00185{transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00185{transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);}
.mdd_c00185{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.mcd_c00185{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.mb9_c00185{transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);}
.mcf_c00185{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.mc0_c00185{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221760,0.000000,0.000000,0.250000,0,0);}
.mdf_c00185{transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.mbc_c00185{transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);}
.mf8_c00185{transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);}
.mc2_c00185{transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);}
.mef_c00185{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.243251,-0.003406,0.003500,0.249976,0,0);-ms-transform:matrix(0.243251,-0.003406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243251,-0.003406,0.003500,0.249976,0,0);}
.m2_c00185{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.mb5_c00185{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.369765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{transform:matrix(0.375800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375800,0.000000,0.000000,0.250000,0,0);}
.maf_c00185{transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);}
.mbd_c00185{transform:matrix(0.439260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439260,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.462905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462905,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.510500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510500,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:0.000000px;}
.fc0_c00185{color:transparent;}
.fsa_c00185{font-size:54.600000px;}
.fsd_c00185{font-size:57.750000px;}
.fsc_c00185{font-size:58.800000px;}
.fs0_c00185{font-size:59.850000px;}
.fs5_c00185{font-size:61.950000px;}
.fs4_c00185{font-size:63.000000px;}
.fs6_c00185{font-size:63.006174px;}
.fs3_c00185{font-size:64.050000px;}
.fs9_c00185{font-size:65.100000px;}
.fsb_c00185{font-size:66.150000px;}
.fs2_c00185{font-size:68.250000px;}
.fs1_c00185{font-size:69.300000px;}
.fs8_c00185{font-size:72.450000px;}
.fs7_c00185{font-size:73.500000px;}
.y0_c00185{bottom:0.000000px;}
.y33_c00185{bottom:37.324500px;}
.y32_c00185{bottom:53.491500px;}
.y31_c00185{bottom:71.025000px;}
.y30_c00185{bottom:88.779000px;}
.y2f_c00185{bottom:104.827500px;}
.y2e_c00185{bottom:123.162000px;}
.y2d_c00185{bottom:139.216500px;}
.y2c_c00185{bottom:157.300500px;}
.y2b_c00185{bottom:174.961500px;}
.y2a_c00185{bottom:190.708500px;}
.y29_c00185{bottom:209.638500px;}
.y28_c00185{bottom:226.411500px;}
.y27_c00185{bottom:244.045500px;}
.y26_c00185{bottom:261.055500px;}
.y25_c00185{bottom:277.410000px;}
.y24_c00185{bottom:294.958500px;}
.y23_c00185{bottom:311.392500px;}
.y22_c00185{bottom:328.117500px;}
.y21_c00185{bottom:345.729000px;}
.y20_c00185{bottom:363.096000px;}
.y1f_c00185{bottom:380.461500px;}
.y1e_c00185{bottom:397.710000px;}
.y1d_c00185{bottom:415.378500px;}
.y19_c00185{bottom:432.271500px;}
.y1a_c00185{bottom:432.605211px;}
.y1b_c00185{bottom:432.949149px;}
.y1c_c00185{bottom:434.508231px;}
.y18_c00185{bottom:449.599500px;}
.y17_c00185{bottom:466.255500px;}
.y16_c00185{bottom:483.808500px;}
.y15_c00185{bottom:501.541500px;}
.y14_c00185{bottom:518.071500px;}
.y13_c00185{bottom:535.081500px;}
.yb_c00185{bottom:550.533000px;}
.yc_c00185{bottom:550.866000px;}
.yd_c00185{bottom:551.533500px;}
.ye_c00185{bottom:551.761500px;}
.yf_c00185{bottom:552.103500px;}
.y10_c00185{bottom:552.601500px;}
.y11_c00185{bottom:552.931500px;}
.y12_c00185{bottom:553.173000px;}
.y2_c00185{bottom:567.003000px;}
.y3_c00185{bottom:567.885000px;}
.y4_c00185{bottom:568.203000px;}
.y5_c00185{bottom:568.441500px;}
.y6_c00185{bottom:568.983000px;}
.y7_c00185{bottom:569.352000px;}
.y8_c00185{bottom:569.854500px;}
.y9_c00185{bottom:570.220500px;}
.ya_c00185{bottom:570.415500px;}
.y1_c00185{bottom:585.907500px;}
.hc_c00185{height:54.600000px;}
.hf_c00185{height:57.750000px;}
.he_c00185{height:58.800000px;}
.h2_c00185{height:59.850000px;}
.h7_c00185{height:61.950000px;}
.h6_c00185{height:63.000000px;}
.h8_c00185{height:63.006174px;}
.h5_c00185{height:64.050000px;}
.hb_c00185{height:65.100000px;}
.hd_c00185{height:66.150000px;}
.h4_c00185{height:68.250000px;}
.h3_c00185{height:69.300000px;}
.ha_c00185{height:72.450000px;}
.h9_c00185{height:73.500000px;}
.h0_c00185{height:623.100000px;}
.h1_c00185{height:623.250000px;}
.w1_c00185{width:383.250000px;}
.w0_c00185{width:383.400000px;}
.x0_c00185{left:0.000000px;}
.x2f_c00185{left:41.580000px;}
.x75_c00185{left:44.010000px;}
.x53_c00185{left:45.900000px;}
.x7a_c00185{left:47.250000px;}
.x1f_c00185{left:48.330000px;}
.x26_c00185{left:50.490000px;}
.x3_c00185{left:52.551000px;}
.x20_c00185{left:57.780000px;}
.x72_c00185{left:62.100000px;}
.x3a_c00185{left:63.450000px;}
.x5a_c00185{left:67.230000px;}
.x3f_c00185{left:68.850000px;}
.x30_c00185{left:70.470000px;}
.x18_c00185{left:75.331500px;}
.x27_c00185{left:76.410000px;}
.x34_c00185{left:78.570000px;}
.x7d_c00185{left:79.650000px;}
.xc_c00185{left:81.967500px;}
.x4d_c00185{left:83.430000px;}
.x65_c00185{left:85.590000px;}
.x7b_c00185{left:92.610000px;}
.x28_c00185{left:95.310000px;}
.x88_c00185{left:96.390000px;}
.x1_c00185{left:97.470000px;}
.x5f_c00185{left:99.090000px;}
.x57_c00185{left:100.440000px;}
.x4a_c00185{left:102.060000px;}
.x54_c00185{left:105.840000px;}
.x67_c00185{left:111.780000px;}
.x62_c00185{left:115.560000px;}
.x21_c00185{left:117.450000px;}
.x3b_c00185{left:118.530000px;}
.x6c_c00185{left:121.230000px;}
.x7e_c00185{left:123.390000px;}
.x4_c00185{left:126.016500px;}
.x19_c00185{left:127.441500px;}
.x76_c00185{left:130.140000px;}
.x70_c00185{left:131.220000px;}
.x13_c00185{left:135.271500px;}
.x22_c00185{left:137.430000px;}
.x4e_c00185{left:139.320000px;}
.xd_c00185{left:142.713000px;}
.x5b_c00185{left:143.910000px;}
.x35_c00185{left:147.150000px;}
.x69_c00185{left:148.770000px;}
.x86_c00185{left:150.930000px;}
.x5_c00185{left:152.460000px;}
.x40_c00185{left:155.250000px;}
.x29_c00185{left:157.950000px;}
.x4f_c00185{left:162.000000px;}
.xe_c00185{left:163.438500px;}
.x44_c00185{left:164.700000px;}
.x31_c00185{left:167.940000px;}
.x63_c00185{left:170.370000px;}
.x6_c00185{left:172.345500px;}
.x55_c00185{left:176.040000px;}
.x45_c00185{left:178.470000px;}
.x60_c00185{left:180.360000px;}
.x2_c00185{left:181.710000px;}
.x81_c00185{left:182.790000px;}
.x6a_c00185{left:186.840000px;}
.x1a_c00185{left:188.461500px;}
.x3c_c00185{left:189.810000px;}
.x6d_c00185{left:191.970000px;}
.xf_c00185{left:194.538000px;}
.x58_c00185{left:196.830000px;}
.x2a_c00185{left:197.910000px;}
.x50_c00185{left:199.800000px;}
.x36_c00185{left:202.230000px;}
.x46_c00185{left:203.310000px;}
.x82_c00185{left:204.930000px;}
.x39_c00185{left:207.130500px;}
.x41_c00185{left:208.170000px;}
.x14_c00185{left:211.951500px;}
.x1b_c00185{left:214.111500px;}
.x3d_c00185{left:216.000000px;}
.x7_c00185{left:217.476000px;}
.x6e_c00185{left:220.050000px;}
.x47_c00185{left:223.020000px;}
.x77_c00185{left:224.100000px;}
.x2b_c00185{left:225.990000px;}
.x4b_c00185{left:227.070000px;}
.x3e_c00185{left:231.390000px;}
.x15_c00185{left:233.281500px;}
.x5c_c00185{left:238.680000px;}
.x10_c00185{left:239.848500px;}
.x1c_c00185{left:242.731500px;}
.x2c_c00185{left:243.810000px;}
.x73_c00185{left:245.700000px;}
.x4c_c00185{left:247.050000px;}
.x8_c00185{left:248.287500px;}
.x61_c00185{left:250.290000px;}
.x68_c00185{left:254.610000px;}
.x71_c00185{left:256.770000px;}
.x32_c00185{left:258.930000px;}
.x23_c00185{left:260.010000px;}
.x64_c00185{left:263.250000px;}
.x1d_c00185{left:266.491500px;}
.x6b_c00185{left:268.650000px;}
.x11_c00185{left:269.815500px;}
.x7f_c00185{left:271.350000px;}
.x51_c00185{left:278.640000px;}
.x6f_c00185{left:281.880000px;}
.x74_c00185{left:282.960000px;}
.x1e_c00185{left:284.041500px;}
.x37_c00185{left:285.660000px;}
.x7c_c00185{left:287.010000px;}
.x9_c00185{left:290.137500px;}
.x12_c00185{left:291.739500px;}
.x2d_c00185{left:293.760000px;}
.x5d_c00185{left:294.840000px;}
.x78_c00185{left:296.460000px;}
.x83_c00185{left:297.540000px;}
.x80_c00185{left:299.430000px;}
.x38_c00185{left:302.130000px;}
.x16_c00185{left:304.561500px;}
.x85_c00185{left:307.530000px;}
.x42_c00185{left:309.420000px;}
.x48_c00185{left:311.040000px;}
.x33_c00185{left:312.930000px;}
.x66_c00185{left:314.820000px;}
.x79_c00185{left:317.790000px;}
.xa_c00185{left:320.646000px;}
.x84_c00185{left:322.380000px;}
.x17_c00185{left:324.541500px;}
.x49_c00185{left:326.160000px;}
.x59_c00185{left:328.050000px;}
.x2e_c00185{left:330.750000px;}
.x5e_c00185{left:332.100000px;}
.x87_c00185{left:335.070000px;}
.xb_c00185{left:336.847500px;}
.x24_c00185{left:339.930000px;}
.x25_c00185{left:366.120000px;}
.x43_c00185{left:368.280000px;}
.x52_c00185{left:370.170000px;}
.x56_c00185{left:374.760000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.fsa_c00185{font-size:48.533333pt;}
.fsd_c00185{font-size:51.333333pt;}
.fsc_c00185{font-size:52.266667pt;}
.fs0_c00185{font-size:53.200000pt;}
.fs5_c00185{font-size:55.066667pt;}
.fs4_c00185{font-size:56.000000pt;}
.fs6_c00185{font-size:56.005488pt;}
.fs3_c00185{font-size:56.933333pt;}
.fs9_c00185{font-size:57.866667pt;}
.fsb_c00185{font-size:58.800000pt;}
.fs2_c00185{font-size:60.666667pt;}
.fs1_c00185{font-size:61.600000pt;}
.fs8_c00185{font-size:64.400000pt;}
.fs7_c00185{font-size:65.333333pt;}
.y0_c00185{bottom:0.000000pt;}
.y33_c00185{bottom:33.177333pt;}
.y32_c00185{bottom:47.548000pt;}
.y31_c00185{bottom:63.133333pt;}
.y30_c00185{bottom:78.914667pt;}
.y2f_c00185{bottom:93.180000pt;}
.y2e_c00185{bottom:109.477333pt;}
.y2d_c00185{bottom:123.748000pt;}
.y2c_c00185{bottom:139.822667pt;}
.y2b_c00185{bottom:155.521333pt;}
.y2a_c00185{bottom:169.518667pt;}
.y29_c00185{bottom:186.345333pt;}
.y28_c00185{bottom:201.254667pt;}
.y27_c00185{bottom:216.929333pt;}
.y26_c00185{bottom:232.049333pt;}
.y25_c00185{bottom:246.586667pt;}
.y24_c00185{bottom:262.185333pt;}
.y23_c00185{bottom:276.793333pt;}
.y22_c00185{bottom:291.660000pt;}
.y21_c00185{bottom:307.314667pt;}
.y20_c00185{bottom:322.752000pt;}
.y1f_c00185{bottom:338.188000pt;}
.y1e_c00185{bottom:353.520000pt;}
.y1d_c00185{bottom:369.225333pt;}
.y19_c00185{bottom:384.241333pt;}
.y1a_c00185{bottom:384.537965pt;}
.y1b_c00185{bottom:384.843688pt;}
.y1c_c00185{bottom:386.229539pt;}
.y18_c00185{bottom:399.644000pt;}
.y17_c00185{bottom:414.449333pt;}
.y16_c00185{bottom:430.052000pt;}
.y15_c00185{bottom:445.814667pt;}
.y14_c00185{bottom:460.508000pt;}
.y13_c00185{bottom:475.628000pt;}
.yb_c00185{bottom:489.362667pt;}
.yc_c00185{bottom:489.658667pt;}
.yd_c00185{bottom:490.252000pt;}
.ye_c00185{bottom:490.454667pt;}
.yf_c00185{bottom:490.758667pt;}
.y10_c00185{bottom:491.201333pt;}
.y11_c00185{bottom:491.494667pt;}
.y12_c00185{bottom:491.709333pt;}
.y2_c00185{bottom:504.002667pt;}
.y3_c00185{bottom:504.786667pt;}
.y4_c00185{bottom:505.069333pt;}
.y5_c00185{bottom:505.281333pt;}
.y6_c00185{bottom:505.762667pt;}
.y7_c00185{bottom:506.090667pt;}
.y8_c00185{bottom:506.537333pt;}
.y9_c00185{bottom:506.862667pt;}
.ya_c00185{bottom:507.036000pt;}
.y1_c00185{bottom:520.806667pt;}
.hc_c00185{height:48.533333pt;}
.hf_c00185{height:51.333333pt;}
.he_c00185{height:52.266667pt;}
.h2_c00185{height:53.200000pt;}
.h7_c00185{height:55.066667pt;}
.h6_c00185{height:56.000000pt;}
.h8_c00185{height:56.005488pt;}
.h5_c00185{height:56.933333pt;}
.hb_c00185{height:57.866667pt;}
.hd_c00185{height:58.800000pt;}
.h4_c00185{height:60.666667pt;}
.h3_c00185{height:61.600000pt;}
.ha_c00185{height:64.400000pt;}
.h9_c00185{height:65.333333pt;}
.h0_c00185{height:553.866667pt;}
.h1_c00185{height:554.000000pt;}
.w1_c00185{width:340.666667pt;}
.w0_c00185{width:340.800000pt;}
.x0_c00185{left:0.000000pt;}
.x2f_c00185{left:36.960000pt;}
.x75_c00185{left:39.120000pt;}
.x53_c00185{left:40.800000pt;}
.x7a_c00185{left:42.000000pt;}
.x1f_c00185{left:42.960000pt;}
.x26_c00185{left:44.880000pt;}
.x3_c00185{left:46.712000pt;}
.x20_c00185{left:51.360000pt;}
.x72_c00185{left:55.200000pt;}
.x3a_c00185{left:56.400000pt;}
.x5a_c00185{left:59.760000pt;}
.x3f_c00185{left:61.200000pt;}
.x30_c00185{left:62.640000pt;}
.x18_c00185{left:66.961333pt;}
.x27_c00185{left:67.920000pt;}
.x34_c00185{left:69.840000pt;}
.x7d_c00185{left:70.800000pt;}
.xc_c00185{left:72.860000pt;}
.x4d_c00185{left:74.160000pt;}
.x65_c00185{left:76.080000pt;}
.x7b_c00185{left:82.320000pt;}
.x28_c00185{left:84.720000pt;}
.x88_c00185{left:85.680000pt;}
.x1_c00185{left:86.640000pt;}
.x5f_c00185{left:88.080000pt;}
.x57_c00185{left:89.280000pt;}
.x4a_c00185{left:90.720000pt;}
.x54_c00185{left:94.080000pt;}
.x67_c00185{left:99.360000pt;}
.x62_c00185{left:102.720000pt;}
.x21_c00185{left:104.400000pt;}
.x3b_c00185{left:105.360000pt;}
.x6c_c00185{left:107.760000pt;}
.x7e_c00185{left:109.680000pt;}
.x4_c00185{left:112.014667pt;}
.x19_c00185{left:113.281333pt;}
.x76_c00185{left:115.680000pt;}
.x70_c00185{left:116.640000pt;}
.x13_c00185{left:120.241333pt;}
.x22_c00185{left:122.160000pt;}
.x4e_c00185{left:123.840000pt;}
.xd_c00185{left:126.856000pt;}
.x5b_c00185{left:127.920000pt;}
.x35_c00185{left:130.800000pt;}
.x69_c00185{left:132.240000pt;}
.x86_c00185{left:134.160000pt;}
.x5_c00185{left:135.520000pt;}
.x40_c00185{left:138.000000pt;}
.x29_c00185{left:140.400000pt;}
.x4f_c00185{left:144.000000pt;}
.xe_c00185{left:145.278667pt;}
.x44_c00185{left:146.400000pt;}
.x31_c00185{left:149.280000pt;}
.x63_c00185{left:151.440000pt;}
.x6_c00185{left:153.196000pt;}
.x55_c00185{left:156.480000pt;}
.x45_c00185{left:158.640000pt;}
.x60_c00185{left:160.320000pt;}
.x2_c00185{left:161.520000pt;}
.x81_c00185{left:162.480000pt;}
.x6a_c00185{left:166.080000pt;}
.x1a_c00185{left:167.521333pt;}
.x3c_c00185{left:168.720000pt;}
.x6d_c00185{left:170.640000pt;}
.xf_c00185{left:172.922667pt;}
.x58_c00185{left:174.960000pt;}
.x2a_c00185{left:175.920000pt;}
.x50_c00185{left:177.600000pt;}
.x36_c00185{left:179.760000pt;}
.x46_c00185{left:180.720000pt;}
.x82_c00185{left:182.160000pt;}
.x39_c00185{left:184.116000pt;}
.x41_c00185{left:185.040000pt;}
.x14_c00185{left:188.401333pt;}
.x1b_c00185{left:190.321333pt;}
.x3d_c00185{left:192.000000pt;}
.x7_c00185{left:193.312000pt;}
.x6e_c00185{left:195.600000pt;}
.x47_c00185{left:198.240000pt;}
.x77_c00185{left:199.200000pt;}
.x2b_c00185{left:200.880000pt;}
.x4b_c00185{left:201.840000pt;}
.x3e_c00185{left:205.680000pt;}
.x15_c00185{left:207.361333pt;}
.x5c_c00185{left:212.160000pt;}
.x10_c00185{left:213.198667pt;}
.x1c_c00185{left:215.761333pt;}
.x2c_c00185{left:216.720000pt;}
.x73_c00185{left:218.400000pt;}
.x4c_c00185{left:219.600000pt;}
.x8_c00185{left:220.700000pt;}
.x61_c00185{left:222.480000pt;}
.x68_c00185{left:226.320000pt;}
.x71_c00185{left:228.240000pt;}
.x32_c00185{left:230.160000pt;}
.x23_c00185{left:231.120000pt;}
.x64_c00185{left:234.000000pt;}
.x1d_c00185{left:236.881333pt;}
.x6b_c00185{left:238.800000pt;}
.x11_c00185{left:239.836000pt;}
.x7f_c00185{left:241.200000pt;}
.x51_c00185{left:247.680000pt;}
.x6f_c00185{left:250.560000pt;}
.x74_c00185{left:251.520000pt;}
.x1e_c00185{left:252.481333pt;}
.x37_c00185{left:253.920000pt;}
.x7c_c00185{left:255.120000pt;}
.x9_c00185{left:257.900000pt;}
.x12_c00185{left:259.324000pt;}
.x2d_c00185{left:261.120000pt;}
.x5d_c00185{left:262.080000pt;}
.x78_c00185{left:263.520000pt;}
.x83_c00185{left:264.480000pt;}
.x80_c00185{left:266.160000pt;}
.x38_c00185{left:268.560000pt;}
.x16_c00185{left:270.721333pt;}
.x85_c00185{left:273.360000pt;}
.x42_c00185{left:275.040000pt;}
.x48_c00185{left:276.480000pt;}
.x33_c00185{left:278.160000pt;}
.x66_c00185{left:279.840000pt;}
.x79_c00185{left:282.480000pt;}
.xa_c00185{left:285.018667pt;}
.x84_c00185{left:286.560000pt;}
.x17_c00185{left:288.481333pt;}
.x49_c00185{left:289.920000pt;}
.x59_c00185{left:291.600000pt;}
.x2e_c00185{left:294.000000pt;}
.x5e_c00185{left:295.200000pt;}
.x87_c00185{left:297.840000pt;}
.xb_c00185{left:299.420000pt;}
.x24_c00185{left:302.160000pt;}
.x25_c00185{left:325.440000pt;}
.x43_c00185{left:327.360000pt;}
.x52_c00185{left:329.040000pt;}
.x56_c00185{left:333.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00186 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00186 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00186 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00186 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00186.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00186{transform:matrix(0.099645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099645,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);}
.me1_c00186{transform:matrix(0.151643,-0.002578,0.004249,0.249964,0,0);-ms-transform:matrix(0.151643,-0.002578,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151643,-0.002578,0.004249,0.249964,0,0);}
.m12_c00186{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.ma3_c00186{transform:matrix(0.157102,-0.002985,0.004749,0.249955,0,0);-ms-transform:matrix(0.157102,-0.002985,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157102,-0.002985,0.004749,0.249955,0,0);}
.m98_c00186{transform:matrix(0.158166,-0.003005,0.004749,0.249955,0,0);-ms-transform:matrix(0.158166,-0.003005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158166,-0.003005,0.004749,0.249955,0,0);}
.m35_c00186{transform:matrix(0.159801,-0.003516,0.005499,0.249940,0,0);-ms-transform:matrix(0.159801,-0.003516,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159801,-0.003516,0.005499,0.249940,0,0);}
.md5_c00186{transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);-ms-transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159821,-0.003037,0.004749,0.249955,0,0);}
.m24_c00186{transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);}
.mce_c00186{transform:matrix(0.161276,-0.003064,0.004749,0.249955,0,0);-ms-transform:matrix(0.161276,-0.003064,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161276,-0.003064,0.004749,0.249955,0,0);}
.m95_c00186{transform:matrix(0.161511,-0.003069,0.004749,0.249955,0,0);-ms-transform:matrix(0.161511,-0.003069,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161511,-0.003069,0.004749,0.249955,0,0);}
.md8_c00186{transform:matrix(0.161817,-0.002751,0.004249,0.249964,0,0);-ms-transform:matrix(0.161817,-0.002751,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161817,-0.002751,0.004249,0.249964,0,0);}
.m93_c00186{transform:matrix(0.161866,-0.003075,0.004749,0.249955,0,0);-ms-transform:matrix(0.161866,-0.003075,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161866,-0.003075,0.004749,0.249955,0,0);}
.ma2_c00186{transform:matrix(0.163575,-0.003108,0.004749,0.249955,0,0);-ms-transform:matrix(0.163575,-0.003108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163575,-0.003108,0.004749,0.249955,0,0);}
.m2c_c00186{transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00186{transform:matrix(0.164635,-0.003128,0.004749,0.249955,0,0);-ms-transform:matrix(0.164635,-0.003128,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164635,-0.003128,0.004749,0.249955,0,0);}
.m17_c00186{transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);}
.mb3_c00186{transform:matrix(0.171444,-0.003257,0.004749,0.249955,0,0);-ms-transform:matrix(0.171444,-0.003257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171444,-0.003257,0.004749,0.249955,0,0);}
.m57_c00186{transform:matrix(0.171722,-0.004637,0.006748,0.249909,0,0);-ms-transform:matrix(0.171722,-0.004637,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171722,-0.004637,0.006748,0.249909,0,0);}
.m40_c00186{transform:matrix(0.171883,-0.003781,0.005499,0.249940,0,0);-ms-transform:matrix(0.171883,-0.003781,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171883,-0.003781,0.005499,0.249940,0,0);}
.m77_c00186{transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);-ms-transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172102,-0.004647,0.006748,0.249909,0,0);}
.m5a_c00186{transform:matrix(0.172267,-0.004651,0.006748,0.249909,0,0);-ms-transform:matrix(0.172267,-0.004651,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172267,-0.004651,0.006748,0.249909,0,0);}
.mc8_c00186{transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-ms-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);}
.m94_c00186{transform:matrix(0.173309,-0.003293,0.004749,0.249955,0,0);-ms-transform:matrix(0.173309,-0.003293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173309,-0.003293,0.004749,0.249955,0,0);}
.m9d_c00186{transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);-ms-transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);}
.m23_c00186{transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173635,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{transform:matrix(0.175891,-0.004749,0.006748,0.249909,0,0);-ms-transform:matrix(0.175891,-0.004749,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175891,-0.004749,0.006748,0.249909,0,0);}
.m9a_c00186{transform:matrix(0.176078,-0.003345,0.004749,0.249955,0,0);-ms-transform:matrix(0.176078,-0.003345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176078,-0.003345,0.004749,0.249955,0,0);}
.maa_c00186{transform:matrix(0.176258,-0.003349,0.004749,0.249955,0,0);-ms-transform:matrix(0.176258,-0.003349,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176258,-0.003349,0.004749,0.249955,0,0);}
.mbf_c00186{transform:matrix(0.176428,-0.003352,0.004749,0.249955,0,0);-ms-transform:matrix(0.176428,-0.003352,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176428,-0.003352,0.004749,0.249955,0,0);}
.m79_c00186{transform:matrix(0.176456,-0.004764,0.006748,0.249909,0,0);-ms-transform:matrix(0.176456,-0.004764,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176456,-0.004764,0.006748,0.249909,0,0);}
.m3d_c00186{transform:matrix(0.176667,-0.003887,0.005499,0.249940,0,0);-ms-transform:matrix(0.176667,-0.003887,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176667,-0.003887,0.005499,0.249940,0,0);}
.mb8_c00186{transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);-ms-transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176708,-0.003357,0.004749,0.249955,0,0);}
.m1a_c00186{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m3a_c00186{transform:matrix(0.177112,-0.003896,0.005499,0.249940,0,0);-ms-transform:matrix(0.177112,-0.003896,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177112,-0.003896,0.005499,0.249940,0,0);}
.med_c00186{transform:matrix(0.178029,-0.003026,0.004249,0.249964,0,0);-ms-transform:matrix(0.178029,-0.003026,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178029,-0.003026,0.004249,0.249964,0,0);}
.m31_c00186{transform:matrix(0.178342,-0.003924,0.005499,0.249940,0,0);-ms-transform:matrix(0.178342,-0.003924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178342,-0.003924,0.005499,0.249940,0,0);}
.mcb_c00186{transform:matrix(0.178598,-0.003393,0.004749,0.249955,0,0);-ms-transform:matrix(0.178598,-0.003393,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178598,-0.003393,0.004749,0.249955,0,0);}
.m8d_c00186{transform:matrix(0.178618,-0.003394,0.004749,0.249955,0,0);-ms-transform:matrix(0.178618,-0.003394,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178618,-0.003394,0.004749,0.249955,0,0);}
.m97_c00186{transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);-ms-transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);}
.m4a_c00186{transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);-ms-transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);}
.m66_c00186{transform:matrix(0.179480,-0.004846,0.006748,0.249909,0,0);-ms-transform:matrix(0.179480,-0.004846,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179480,-0.004846,0.006748,0.249909,0,0);}
.m69_c00186{transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);-ms-transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179864,-0.004856,0.006748,0.249909,0,0);}
.md3_c00186{transform:matrix(0.180132,-0.003423,0.004749,0.249955,0,0);-ms-transform:matrix(0.180132,-0.003423,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180132,-0.003423,0.004749,0.249955,0,0);}
.m46_c00186{transform:matrix(0.180474,-0.004873,0.006748,0.249909,0,0);-ms-transform:matrix(0.180474,-0.004873,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180474,-0.004873,0.006748,0.249909,0,0);}
.mb2_c00186{transform:matrix(0.180607,-0.003432,0.004749,0.249955,0,0);-ms-transform:matrix(0.180607,-0.003432,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180607,-0.003432,0.004749,0.249955,0,0);}
.m7c_c00186{transform:matrix(0.180839,-0.004883,0.006748,0.249909,0,0);-ms-transform:matrix(0.180839,-0.004883,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180839,-0.004883,0.006748,0.249909,0,0);}
.m5e_c00186{transform:matrix(0.180904,-0.004884,0.006748,0.249909,0,0);-ms-transform:matrix(0.180904,-0.004884,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180904,-0.004884,0.006748,0.249909,0,0);}
.md2_c00186{transform:matrix(0.181132,-0.003442,0.004749,0.249955,0,0);-ms-transform:matrix(0.181132,-0.003442,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181132,-0.003442,0.004749,0.249955,0,0);}
.meb_c00186{transform:matrix(0.181209,-0.003081,0.004249,0.249964,0,0);-ms-transform:matrix(0.181209,-0.003081,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181209,-0.003081,0.004249,0.249964,0,0);}
.mb4_c00186{transform:matrix(0.181432,-0.003447,0.004749,0.249955,0,0);-ms-transform:matrix(0.181432,-0.003447,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181432,-0.003447,0.004749,0.249955,0,0);}
.m29_c00186{transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.182031,-0.004005,0.005499,0.249940,0,0);-ms-transform:matrix(0.182031,-0.004005,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182031,-0.004005,0.005499,0.249940,0,0);}
.m37_c00186{transform:matrix(0.182166,-0.004008,0.005499,0.249940,0,0);-ms-transform:matrix(0.182166,-0.004008,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182166,-0.004008,0.005499,0.249940,0,0);}
.m22_c00186{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.182315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182315,0.000000,0.000000,0.250000,0,0);}
.mb1_c00186{transform:matrix(0.182622,-0.003470,0.004749,0.249955,0,0);-ms-transform:matrix(0.182622,-0.003470,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182622,-0.003470,0.004749,0.249955,0,0);}
.m6c_c00186{transform:matrix(0.182658,-0.004932,0.006748,0.249909,0,0);-ms-transform:matrix(0.182658,-0.004932,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182658,-0.004932,0.006748,0.249909,0,0);}
.m43_c00186{transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);-ms-transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182758,-0.004934,0.006748,0.249909,0,0);}
.m73_c00186{transform:matrix(0.182808,-0.004936,0.006748,0.249909,0,0);-ms-transform:matrix(0.182808,-0.004936,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182808,-0.004936,0.006748,0.249909,0,0);}
.ma4_c00186{transform:matrix(0.183612,-0.003489,0.004749,0.249955,0,0);-ms-transform:matrix(0.183612,-0.003489,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183612,-0.003489,0.004749,0.249955,0,0);}
.me8_c00186{transform:matrix(0.184053,-0.003129,0.004249,0.249964,0,0);-ms-transform:matrix(0.184053,-0.003129,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184053,-0.003129,0.004249,0.249964,0,0);}
.mb9_c00186{transform:matrix(0.184672,-0.003509,0.004749,0.249955,0,0);-ms-transform:matrix(0.184672,-0.003509,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184672,-0.003509,0.004749,0.249955,0,0);}
.m2f_c00186{transform:matrix(0.184685,-0.004063,0.005499,0.249940,0,0);-ms-transform:matrix(0.184685,-0.004063,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184685,-0.004063,0.005499,0.249940,0,0);}
.m27_c00186{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.me6_c00186{transform:matrix(0.185718,-0.003157,0.004249,0.249964,0,0);-ms-transform:matrix(0.185718,-0.003157,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185718,-0.003157,0.004249,0.249964,0,0);}
.md6_c00186{transform:matrix(0.186871,-0.003551,0.004749,0.249955,0,0);-ms-transform:matrix(0.186871,-0.003551,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186871,-0.003551,0.004749,0.249955,0,0);}
.mb6_c00186{transform:matrix(0.186886,-0.003551,0.004749,0.249955,0,0);-ms-transform:matrix(0.186886,-0.003551,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186886,-0.003551,0.004749,0.249955,0,0);}
.mb5_c00186{transform:matrix(0.187021,-0.003553,0.004749,0.249955,0,0);-ms-transform:matrix(0.187021,-0.003553,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187021,-0.003553,0.004749,0.249955,0,0);}
.m58_c00186{transform:matrix(0.187147,-0.005053,0.006748,0.249909,0,0);-ms-transform:matrix(0.187147,-0.005053,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187147,-0.005053,0.006748,0.249909,0,0);}
.maf_c00186{transform:matrix(0.188071,-0.003573,0.004749,0.249955,0,0);-ms-transform:matrix(0.188071,-0.003573,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188071,-0.003573,0.004749,0.249955,0,0);}
.m5f_c00186{transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);-ms-transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);}
.md7_c00186{transform:matrix(0.188596,-0.003583,0.004749,0.249955,0,0);-ms-transform:matrix(0.188596,-0.003583,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188596,-0.003583,0.004749,0.249955,0,0);}
.m13_c00186{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.188986,-0.005103,0.006748,0.249909,0,0);-ms-transform:matrix(0.188986,-0.005103,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188986,-0.005103,0.006748,0.249909,0,0);}
.m26_c00186{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.ma0_c00186{transform:matrix(0.189291,-0.003597,0.004749,0.249955,0,0);-ms-transform:matrix(0.189291,-0.003597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189291,-0.003597,0.004749,0.249955,0,0);}
.mdf_c00186{transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);-ms-transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);}
.ma7_c00186{transform:matrix(0.189346,-0.003598,0.004749,0.249955,0,0);-ms-transform:matrix(0.189346,-0.003598,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189346,-0.003598,0.004749,0.249955,0,0);}
.m4e_c00186{transform:matrix(0.189786,-0.005124,0.006748,0.249909,0,0);-ms-transform:matrix(0.189786,-0.005124,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189786,-0.005124,0.006748,0.249909,0,0);}
.m87_c00186{transform:matrix(0.189853,-0.003987,0.005249,0.249945,0,0);-ms-transform:matrix(0.189853,-0.003987,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189853,-0.003987,0.005249,0.249945,0,0);}
.m99_c00186{transform:matrix(0.189871,-0.003608,0.004749,0.249955,0,0);-ms-transform:matrix(0.189871,-0.003608,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189871,-0.003608,0.004749,0.249955,0,0);}
.mae_c00186{transform:matrix(0.190256,-0.003615,0.004749,0.249955,0,0);-ms-transform:matrix(0.190256,-0.003615,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190256,-0.003615,0.004749,0.249955,0,0);}
.mcc_c00186{transform:matrix(0.190596,-0.003621,0.004749,0.249955,0,0);-ms-transform:matrix(0.190596,-0.003621,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190596,-0.003621,0.004749,0.249955,0,0);}
.m83_c00186{transform:matrix(0.191413,-0.004020,0.005249,0.249945,0,0);-ms-transform:matrix(0.191413,-0.004020,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191413,-0.004020,0.005249,0.249945,0,0);}
.m6f_c00186{transform:matrix(0.191495,-0.005170,0.006748,0.249909,0,0);-ms-transform:matrix(0.191495,-0.005170,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191495,-0.005170,0.006748,0.249909,0,0);}
.m8c_c00186{transform:matrix(0.191685,-0.003642,0.004749,0.249955,0,0);-ms-transform:matrix(0.191685,-0.003642,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191685,-0.003642,0.004749,0.249955,0,0);}
.m32_c00186{transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);-ms-transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);}
.m9f_c00186{transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);-ms-transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);}
.mc1_c00186{transform:matrix(0.192035,-0.003649,0.004749,0.249955,0,0);-ms-transform:matrix(0.192035,-0.003649,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192035,-0.003649,0.004749,0.249955,0,0);}
.m67_c00186{transform:matrix(0.192275,-0.005191,0.006748,0.249909,0,0);-ms-transform:matrix(0.192275,-0.005191,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192275,-0.005191,0.006748,0.249909,0,0);}
.mbe_c00186{transform:matrix(0.192310,-0.003654,0.004749,0.249955,0,0);-ms-transform:matrix(0.192310,-0.003654,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192310,-0.003654,0.004749,0.249955,0,0);}
.m85_c00186{transform:matrix(0.192358,-0.004040,0.005249,0.249945,0,0);-ms-transform:matrix(0.192358,-0.004040,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192358,-0.004040,0.005249,0.249945,0,0);}
.m54_c00186{transform:matrix(0.192675,-0.005202,0.006748,0.249909,0,0);-ms-transform:matrix(0.192675,-0.005202,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192675,-0.005202,0.006748,0.249909,0,0);}
.ma6_c00186{transform:matrix(0.192685,-0.003661,0.004749,0.249955,0,0);-ms-transform:matrix(0.192685,-0.003661,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192685,-0.003661,0.004749,0.249955,0,0);}
.m21_c00186{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m96_c00186{transform:matrix(0.193090,-0.003669,0.004749,0.249955,0,0);-ms-transform:matrix(0.193090,-0.003669,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193090,-0.003669,0.004749,0.249955,0,0);}
.m76_c00186{transform:matrix(0.193474,-0.005224,0.006748,0.249909,0,0);-ms-transform:matrix(0.193474,-0.005224,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193474,-0.005224,0.006748,0.249909,0,0);}
.m78_c00186{transform:matrix(0.194214,-0.005244,0.006748,0.249909,0,0);-ms-transform:matrix(0.194214,-0.005244,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194214,-0.005244,0.006748,0.249909,0,0);}
.m11_c00186{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.mb7_c00186{transform:matrix(0.194985,-0.003705,0.004749,0.249955,0,0);-ms-transform:matrix(0.194985,-0.003705,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194985,-0.003705,0.004749,0.249955,0,0);}
.m1e_c00186{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m5d_c00186{transform:matrix(0.195764,-0.005286,0.006748,0.249909,0,0);-ms-transform:matrix(0.195764,-0.005286,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195764,-0.005286,0.006748,0.249909,0,0);}
.m3e_c00186{transform:matrix(0.196183,-0.004316,0.005499,0.249940,0,0);-ms-transform:matrix(0.196183,-0.004316,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196183,-0.004316,0.005499,0.249940,0,0);}
.m34_c00186{transform:matrix(0.196462,-0.004322,0.005499,0.249940,0,0);-ms-transform:matrix(0.196462,-0.004322,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196462,-0.004322,0.005499,0.249940,0,0);}
.m7_c00186{transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);}
.m9e_c00186{transform:matrix(0.196849,-0.003740,0.004749,0.249955,0,0);-ms-transform:matrix(0.196849,-0.003740,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196849,-0.003740,0.004749,0.249955,0,0);}
.m44_c00186{transform:matrix(0.196928,-0.005317,0.006748,0.249909,0,0);-ms-transform:matrix(0.196928,-0.005317,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196928,-0.005317,0.006748,0.249909,0,0);}
.ma1_c00186{transform:matrix(0.197189,-0.003747,0.004749,0.249955,0,0);-ms-transform:matrix(0.197189,-0.003747,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197189,-0.003747,0.004749,0.249955,0,0);}
.m36_c00186{transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-ms-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);}
.m8e_c00186{transform:matrix(0.198059,-0.003763,0.004749,0.249955,0,0);-ms-transform:matrix(0.198059,-0.003763,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198059,-0.003763,0.004749,0.249955,0,0);}
.m64_c00186{transform:matrix(0.198263,-0.005353,0.006748,0.249909,0,0);-ms-transform:matrix(0.198263,-0.005353,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198263,-0.005353,0.006748,0.249909,0,0);}
.m63_c00186{transform:matrix(0.198748,-0.005366,0.006748,0.249909,0,0);-ms-transform:matrix(0.198748,-0.005366,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198748,-0.005366,0.006748,0.249909,0,0);}
.m72_c00186{transform:matrix(0.198848,-0.005369,0.006748,0.249909,0,0);-ms-transform:matrix(0.198848,-0.005369,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198848,-0.005369,0.006748,0.249909,0,0);}
.mcd_c00186{transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);-ms-transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199039,-0.003782,0.004749,0.249955,0,0);}
.m52_c00186{transform:matrix(0.199217,-0.005379,0.006748,0.249909,0,0);-ms-transform:matrix(0.199217,-0.005379,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199217,-0.005379,0.006748,0.249909,0,0);}
.m7a_c00186{transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);-ms-transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);}
.ma_c00186{transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);-ms-transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);}
.m9c_c00186{transform:matrix(0.201004,-0.003819,0.004749,0.249955,0,0);-ms-transform:matrix(0.201004,-0.003819,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201004,-0.003819,0.004749,0.249955,0,0);}
.mbc_c00186{transform:matrix(0.201134,-0.003822,0.004749,0.249955,0,0);-ms-transform:matrix(0.201134,-0.003822,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201134,-0.003822,0.004749,0.249955,0,0);}
.m6b_c00186{transform:matrix(0.201262,-0.005434,0.006748,0.249909,0,0);-ms-transform:matrix(0.201262,-0.005434,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201262,-0.005434,0.006748,0.249909,0,0);}
.me5_c00186{transform:matrix(0.201996,-0.003434,0.004249,0.249964,0,0);-ms-transform:matrix(0.201996,-0.003434,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201996,-0.003434,0.004249,0.249964,0,0);}
.mc2_c00186{transform:matrix(0.203793,-0.003872,0.004749,0.249955,0,0);-ms-transform:matrix(0.203793,-0.003872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203793,-0.003872,0.004749,0.249955,0,0);}
.mac_c00186{transform:matrix(0.204253,-0.003881,0.004749,0.249955,0,0);-ms-transform:matrix(0.204253,-0.003881,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204253,-0.003881,0.004749,0.249955,0,0);}
.m53_c00186{transform:matrix(0.204845,-0.005531,0.006748,0.249909,0,0);-ms-transform:matrix(0.204845,-0.005531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204845,-0.005531,0.006748,0.249909,0,0);}
.m1c_c00186{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.mca_c00186{transform:matrix(0.205373,-0.003902,0.004749,0.249955,0,0);-ms-transform:matrix(0.205373,-0.003902,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205373,-0.003902,0.004749,0.249955,0,0);}
.mdb_c00186{transform:matrix(0.206325,-0.003508,0.004249,0.249964,0,0);-ms-transform:matrix(0.206325,-0.003508,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206325,-0.003508,0.004249,0.249964,0,0);}
.m3f_c00186{transform:matrix(0.206655,-0.004546,0.005499,0.249940,0,0);-ms-transform:matrix(0.206655,-0.004546,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206655,-0.004546,0.005499,0.249940,0,0);}
.me2_c00186{transform:matrix(0.206965,-0.003518,0.004249,0.249964,0,0);-ms-transform:matrix(0.206965,-0.003518,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206965,-0.003518,0.004249,0.249964,0,0);}
.m30_c00186{transform:matrix(0.207170,-0.004558,0.005499,0.249940,0,0);-ms-transform:matrix(0.207170,-0.004558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207170,-0.004558,0.005499,0.249940,0,0);}
.m51_c00186{transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);-ms-transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207349,-0.005598,0.006748,0.249909,0,0);}
.m80_c00186{transform:matrix(0.208539,-0.004379,0.005249,0.249945,0,0);-ms-transform:matrix(0.208539,-0.004379,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208539,-0.004379,0.005249,0.249945,0,0);}
.m41_c00186{transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);-ms-transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);}
.mee_c00186{transform:matrix(0.208755,-0.003549,0.004249,0.249964,0,0);-ms-transform:matrix(0.208755,-0.003549,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208755,-0.003549,0.004249,0.249964,0,0);}
.m3b_c00186{transform:matrix(0.208759,-0.004593,0.005499,0.249940,0,0);-ms-transform:matrix(0.208759,-0.004593,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208759,-0.004593,0.005499,0.249940,0,0);}
.md_c00186{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.208980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208980,0.000000,0.000000,0.250000,0,0);}
.m74_c00186{transform:matrix(0.210158,-0.005674,0.006748,0.249909,0,0);-ms-transform:matrix(0.210158,-0.005674,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210158,-0.005674,0.006748,0.249909,0,0);}
.m45_c00186{transform:matrix(0.210168,-0.005675,0.006748,0.249909,0,0);-ms-transform:matrix(0.210168,-0.005675,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210168,-0.005675,0.006748,0.249909,0,0);}
.me3_c00186{transform:matrix(0.210570,-0.003580,0.004249,0.249964,0,0);-ms-transform:matrix(0.210570,-0.003580,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210570,-0.003580,0.004249,0.249964,0,0);}
.m8f_c00186{transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-ms-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);}
.m19_c00186{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.mc3_c00186{transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);-ms-transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211307,-0.004015,0.004749,0.249955,0,0);}
.m2e_c00186{transform:matrix(0.211849,-0.004661,0.005499,0.249940,0,0);-ms-transform:matrix(0.211849,-0.004661,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211849,-0.004661,0.005499,0.249940,0,0);}
.mbd_c00186{transform:matrix(0.211872,-0.004026,0.004749,0.249955,0,0);-ms-transform:matrix(0.211872,-0.004026,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211872,-0.004026,0.004749,0.249955,0,0);}
.mbb_c00186{transform:matrix(0.211947,-0.004027,0.004749,0.249955,0,0);-ms-transform:matrix(0.211947,-0.004027,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211947,-0.004027,0.004749,0.249955,0,0);}
.m7e_c00186{transform:matrix(0.212193,-0.004456,0.005249,0.249945,0,0);-ms-transform:matrix(0.212193,-0.004456,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212193,-0.004456,0.005249,0.249945,0,0);}
.m6d_c00186{transform:matrix(0.212258,-0.005731,0.006748,0.249909,0,0);-ms-transform:matrix(0.212258,-0.005731,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212258,-0.005731,0.006748,0.249909,0,0);}
.m65_c00186{transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-ms-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);}
.m38_c00186{transform:matrix(0.214463,-0.004718,0.005499,0.249940,0,0);-ms-transform:matrix(0.214463,-0.004718,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214463,-0.004718,0.005499,0.249940,0,0);}
.md4_c00186{transform:matrix(0.214921,-0.004084,0.004749,0.249955,0,0);-ms-transform:matrix(0.214921,-0.004084,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214921,-0.004084,0.004749,0.249955,0,0);}
.mea_c00186{transform:matrix(0.216099,-0.003674,0.004249,0.249964,0,0);-ms-transform:matrix(0.216099,-0.003674,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216099,-0.003674,0.004249,0.249964,0,0);}
.m55_c00186{transform:matrix(0.216171,-0.005837,0.006748,0.249909,0,0);-ms-transform:matrix(0.216171,-0.005837,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216171,-0.005837,0.006748,0.249909,0,0);}
.m5c_c00186{transform:matrix(0.216191,-0.005837,0.006748,0.249909,0,0);-ms-transform:matrix(0.216191,-0.005837,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216191,-0.005837,0.006748,0.249909,0,0);}
.mc6_c00186{transform:matrix(0.216226,-0.004108,0.004749,0.249955,0,0);-ms-transform:matrix(0.216226,-0.004108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216226,-0.004108,0.004749,0.249955,0,0);}
.ma8_c00186{transform:matrix(0.217021,-0.004123,0.004749,0.249955,0,0);-ms-transform:matrix(0.217021,-0.004123,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217021,-0.004123,0.004749,0.249955,0,0);}
.m70_c00186{transform:matrix(0.217461,-0.005871,0.006748,0.249909,0,0);-ms-transform:matrix(0.217461,-0.005871,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217461,-0.005871,0.006748,0.249909,0,0);}
.m50_c00186{transform:matrix(0.217786,-0.005880,0.006748,0.249909,0,0);-ms-transform:matrix(0.217786,-0.005880,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217786,-0.005880,0.006748,0.249909,0,0);}
.m42_c00186{transform:matrix(0.218071,-0.005888,0.006748,0.249909,0,0);-ms-transform:matrix(0.218071,-0.005888,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218071,-0.005888,0.006748,0.249909,0,0);}
.m49_c00186{transform:matrix(0.218590,-0.005902,0.006748,0.249909,0,0);-ms-transform:matrix(0.218590,-0.005902,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218590,-0.005902,0.006748,0.249909,0,0);}
.me7_c00186{transform:matrix(0.219268,-0.003728,0.004249,0.249964,0,0);-ms-transform:matrix(0.219268,-0.003728,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219268,-0.003728,0.004249,0.249964,0,0);}
.m6a_c00186{transform:matrix(0.219315,-0.005922,0.006748,0.249909,0,0);-ms-transform:matrix(0.219315,-0.005922,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219315,-0.005922,0.006748,0.249909,0,0);}
.md9_c00186{transform:matrix(0.219473,-0.003731,0.004249,0.249964,0,0);-ms-transform:matrix(0.219473,-0.003731,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219473,-0.003731,0.004249,0.249964,0,0);}
.me_c00186{transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);}
.m60_c00186{transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);-ms-transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219615,-0.005930,0.006748,0.249909,0,0);}
.m4d_c00186{transform:matrix(0.220010,-0.005940,0.006748,0.249909,0,0);-ms-transform:matrix(0.220010,-0.005940,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220010,-0.005940,0.006748,0.249909,0,0);}
.me4_c00186{transform:matrix(0.220088,-0.003741,0.004249,0.249964,0,0);-ms-transform:matrix(0.220088,-0.003741,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220088,-0.003741,0.004249,0.249964,0,0);}
.me0_c00186{transform:matrix(0.220133,-0.003742,0.004249,0.249964,0,0);-ms-transform:matrix(0.220133,-0.003742,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220133,-0.003742,0.004249,0.249964,0,0);}
.m92_c00186{transform:matrix(0.220380,-0.004187,0.004749,0.249955,0,0);-ms-transform:matrix(0.220380,-0.004187,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220380,-0.004187,0.004749,0.249955,0,0);}
.m1d_c00186{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m8b_c00186{transform:matrix(0.220610,-0.004192,0.004749,0.249955,0,0);-ms-transform:matrix(0.220610,-0.004192,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220610,-0.004192,0.004749,0.249955,0,0);}
.m86_c00186{transform:matrix(0.220906,-0.004639,0.005249,0.249945,0,0);-ms-transform:matrix(0.220906,-0.004639,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220906,-0.004639,0.005249,0.249945,0,0);}
.mde_c00186{transform:matrix(0.221643,-0.003768,0.004249,0.249964,0,0);-ms-transform:matrix(0.221643,-0.003768,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221643,-0.003768,0.004249,0.249964,0,0);}
.m8_c00186{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.222306,-0.004891,0.005499,0.249940,0,0);-ms-transform:matrix(0.222306,-0.004891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222306,-0.004891,0.005499,0.249940,0,0);}
.mab_c00186{transform:matrix(0.222345,-0.004225,0.004749,0.249955,0,0);-ms-transform:matrix(0.222345,-0.004225,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222345,-0.004225,0.004749,0.249955,0,0);}
.mf_c00186{transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m82_c00186{transform:matrix(0.224196,-0.004708,0.005249,0.249945,0,0);-ms-transform:matrix(0.224196,-0.004708,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224196,-0.004708,0.005249,0.249945,0,0);}
.me9_c00186{transform:matrix(0.224613,-0.003818,0.004249,0.249964,0,0);-ms-transform:matrix(0.224613,-0.003818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224613,-0.003818,0.004249,0.249964,0,0);}
.ma9_c00186{transform:matrix(0.224884,-0.004273,0.004749,0.249955,0,0);-ms-transform:matrix(0.224884,-0.004273,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224884,-0.004273,0.004749,0.249955,0,0);}
.mda_c00186{transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);-ms-transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);}
.m75_c00186{transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);-ms-transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);}
.mad_c00186{transform:matrix(0.225769,-0.004290,0.004749,0.249955,0,0);-ms-transform:matrix(0.225769,-0.004290,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225769,-0.004290,0.004749,0.249955,0,0);}
.m88_c00186{transform:matrix(0.226145,-0.004749,0.005249,0.249945,0,0);-ms-transform:matrix(0.226145,-0.004749,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226145,-0.004749,0.005249,0.249945,0,0);}
.mba_c00186{transform:matrix(0.226294,-0.004300,0.004749,0.249955,0,0);-ms-transform:matrix(0.226294,-0.004300,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226294,-0.004300,0.004749,0.249955,0,0);}
.mc5_c00186{transform:matrix(0.226564,-0.004305,0.004749,0.249955,0,0);-ms-transform:matrix(0.226564,-0.004305,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226564,-0.004305,0.004749,0.249955,0,0);}
.mb_c00186{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{transform:matrix(0.228252,-0.006163,0.006748,0.249909,0,0);-ms-transform:matrix(0.228252,-0.006163,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228252,-0.006163,0.006748,0.249909,0,0);}
.m15_c00186{transform:matrix(0.228310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228310,0.000000,0.000000,0.250000,0,0);}
.m71_c00186{transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);-ms-transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);}
.m61_c00186{transform:matrix(0.228792,-0.006177,0.006748,0.249909,0,0);-ms-transform:matrix(0.228792,-0.006177,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228792,-0.006177,0.006748,0.249909,0,0);}
.mc7_c00186{transform:matrix(0.228994,-0.004351,0.004749,0.249955,0,0);-ms-transform:matrix(0.228994,-0.004351,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228994,-0.004351,0.004749,0.249955,0,0);}
.m89_c00186{transform:matrix(0.229619,-0.004822,0.005249,0.249945,0,0);-ms-transform:matrix(0.229619,-0.004822,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229619,-0.004822,0.005249,0.249945,0,0);}
.m4c_c00186{transform:matrix(0.230271,-0.006217,0.006748,0.249909,0,0);-ms-transform:matrix(0.230271,-0.006217,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230271,-0.006217,0.006748,0.249909,0,0);}
.m7b_c00186{transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);-ms-transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);}
.m4f_c00186{transform:matrix(0.230476,-0.006223,0.006748,0.249909,0,0);-ms-transform:matrix(0.230476,-0.006223,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230476,-0.006223,0.006748,0.249909,0,0);}
.mcf_c00186{transform:matrix(0.231318,-0.004395,0.004749,0.249955,0,0);-ms-transform:matrix(0.231318,-0.004395,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231318,-0.004395,0.004749,0.249955,0,0);}
.m68_c00186{transform:matrix(0.231571,-0.006252,0.006748,0.249909,0,0);-ms-transform:matrix(0.231571,-0.006252,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231571,-0.006252,0.006748,0.249909,0,0);}
.m59_c00186{transform:matrix(0.232805,-0.006286,0.006748,0.249909,0,0);-ms-transform:matrix(0.232805,-0.006286,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232805,-0.006286,0.006748,0.249909,0,0);}
.mc4_c00186{transform:matrix(0.233458,-0.004436,0.004749,0.249955,0,0);-ms-transform:matrix(0.233458,-0.004436,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233458,-0.004436,0.004749,0.249955,0,0);}
.mc9_c00186{transform:matrix(0.233773,-0.004442,0.004749,0.249955,0,0);-ms-transform:matrix(0.233773,-0.004442,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233773,-0.004442,0.004749,0.249955,0,0);}
.ma5_c00186{transform:matrix(0.234383,-0.004453,0.004749,0.249955,0,0);-ms-transform:matrix(0.234383,-0.004453,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234383,-0.004453,0.004749,0.249955,0,0);}
.mec_c00186{transform:matrix(0.236151,-0.004015,0.004249,0.249964,0,0);-ms-transform:matrix(0.236151,-0.004015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236151,-0.004015,0.004249,0.249964,0,0);}
.md0_c00186{transform:matrix(0.236702,-0.004497,0.004749,0.249955,0,0);-ms-transform:matrix(0.236702,-0.004497,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236702,-0.004497,0.004749,0.249955,0,0);}
.m8a_c00186{transform:matrix(0.237403,-0.004985,0.005249,0.249945,0,0);-ms-transform:matrix(0.237403,-0.004985,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237403,-0.004985,0.005249,0.249945,0,0);}
.m9b_c00186{transform:matrix(0.239277,-0.004546,0.004749,0.249955,0,0);-ms-transform:matrix(0.239277,-0.004546,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239277,-0.004546,0.004749,0.249955,0,0);}
.m6e_c00186{transform:matrix(0.240157,-0.006484,0.006748,0.249909,0,0);-ms-transform:matrix(0.240157,-0.006484,0.006748,0.249909,0,0);-webkit-transform:matrix(0.240157,-0.006484,0.006748,0.249909,0,0);}
.m81_c00186{transform:matrix(0.246671,-0.005180,0.005249,0.249945,0,0);-ms-transform:matrix(0.246671,-0.005180,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246671,-0.005180,0.005249,0.249945,0,0);}
.m62_c00186{transform:matrix(0.250244,-0.006757,0.006748,0.249909,0,0);-ms-transform:matrix(0.250244,-0.006757,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250244,-0.006757,0.006748,0.249909,0,0);}
.m5b_c00186{transform:matrix(0.251538,-0.006792,0.006748,0.249909,0,0);-ms-transform:matrix(0.251538,-0.006792,0.006748,0.249909,0,0);-webkit-transform:matrix(0.251538,-0.006792,0.006748,0.249909,0,0);}
.m9_c00186{transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);}
.m7d_c00186{transform:matrix(0.252979,-0.005313,0.005249,0.249945,0,0);-ms-transform:matrix(0.252979,-0.005313,0.005249,0.249945,0,0);-webkit-transform:matrix(0.252979,-0.005313,0.005249,0.249945,0,0);}
.m1_c00186{transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.261502,-0.005753,0.005499,0.249940,0,0);-ms-transform:matrix(0.261502,-0.005753,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261502,-0.005753,0.005499,0.249940,0,0);}
.mdd_c00186{transform:matrix(0.264212,-0.004492,0.004249,0.249964,0,0);-ms-transform:matrix(0.264212,-0.004492,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264212,-0.004492,0.004249,0.249964,0,0);}
.m7f_c00186{transform:matrix(0.265961,-0.005585,0.005249,0.249945,0,0);-ms-transform:matrix(0.265961,-0.005585,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265961,-0.005585,0.005249,0.249945,0,0);}
.m84_c00186{transform:matrix(0.274325,-0.005761,0.005249,0.249945,0,0);-ms-transform:matrix(0.274325,-0.005761,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274325,-0.005761,0.005249,0.249945,0,0);}
.mb0_c00186{transform:matrix(0.277230,-0.005267,0.004749,0.249955,0,0);-ms-transform:matrix(0.277230,-0.005267,0.004749,0.249955,0,0);-webkit-transform:matrix(0.277230,-0.005267,0.004749,0.249955,0,0);}
.m90_c00186{transform:matrix(0.286253,-0.005439,0.004749,0.249955,0,0);-ms-transform:matrix(0.286253,-0.005439,0.004749,0.249955,0,0);-webkit-transform:matrix(0.286253,-0.005439,0.004749,0.249955,0,0);}
.mdc_c00186{transform:matrix(0.297662,-0.005060,0.004249,0.249964,0,0);-ms-transform:matrix(0.297662,-0.005060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297662,-0.005060,0.004249,0.249964,0,0);}
.m2d_c00186{transform:matrix(0.304126,-0.006691,0.005499,0.249940,0,0);-ms-transform:matrix(0.304126,-0.006691,0.005499,0.249940,0,0);-webkit-transform:matrix(0.304126,-0.006691,0.005499,0.249940,0,0);}
.m91_c00186{transform:matrix(0.321637,-0.006111,0.004749,0.249955,0,0);-ms-transform:matrix(0.321637,-0.006111,0.004749,0.249955,0,0);-webkit-transform:matrix(0.321637,-0.006111,0.004749,0.249955,0,0);}
.m2_c00186{transform:matrix(0.322005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322005,0.000000,0.000000,0.250000,0,0);}
.md1_c00186{transform:matrix(0.417125,-0.007925,0.004749,0.249955,0,0);-ms-transform:matrix(0.417125,-0.007925,0.004749,0.249955,0,0);-webkit-transform:matrix(0.417125,-0.007925,0.004749,0.249955,0,0);}
.m3_c00186{transform:matrix(0.471640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471640,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.505020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505020,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.646940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646940,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:0.000000px;}
.fc0_c00186{color:transparent;}
.fs1_c00186{font-size:19.950000px;}
.fs0_c00186{font-size:22.050000px;}
.fs17_c00186{font-size:55.660044px;}
.fse_c00186{font-size:55.662269px;}
.fsf_c00186{font-size:56.712501px;}
.fsd_c00186{font-size:57.771046px;}
.fs3_c00186{font-size:58.800000px;}
.fsa_c00186{font-size:58.821429px;}
.fs5_c00186{font-size:59.850000px;}
.fs19_c00186{font-size:59.858648px;}
.fs10_c00186{font-size:59.860802px;}
.fsb_c00186{font-size:59.871811px;}
.fs18_c00186{font-size:60.908799px;}
.fs13_c00186{font-size:60.910991px;}
.fsc_c00186{font-size:60.922194px;}
.fs15_c00186{font-size:61.961181px;}
.fs9_c00186{font-size:63.015244px;}
.fs12_c00186{font-size:64.061560px;}
.fs16_c00186{font-size:65.111749px;}
.fs8_c00186{font-size:65.115752px;}
.fs2_c00186{font-size:66.150000px;}
.fs4_c00186{font-size:67.200000px;}
.fs11_c00186{font-size:67.212129px;}
.fs6_c00186{font-size:68.250000px;}
.fs14_c00186{font-size:69.312508px;}
.fs7_c00186{font-size:70.350000px;}
.y0_c00186{bottom:0.000000px;}
.ye6_c00186{bottom:40.494931px;}
.ye7_c00186{bottom:40.754556px;}
.ye8_c00186{bottom:40.943728px;}
.ye9_c00186{bottom:41.165481px;}
.yea_c00186{bottom:41.940520px;}
.yeb_c00186{bottom:42.230400px;}
.yec_c00186{bottom:42.872004px;}
.yed_c00186{bottom:43.007896px;}
.yee_c00186{bottom:43.160685px;}
.ydf_c00186{bottom:59.409204px;}
.ye5_c00186{bottom:59.409411px;}
.ye3_c00186{bottom:59.409615px;}
.ye0_c00186{bottom:59.409698px;}
.ye4_c00186{bottom:59.409706px;}
.ye2_c00186{bottom:59.410158px;}
.ye1_c00186{bottom:59.410449px;}
.yd8_c00186{bottom:74.521500px;}
.yd9_c00186{bottom:74.926695px;}
.yda_c00186{bottom:75.417672px;}
.ydb_c00186{bottom:76.719728px;}
.ydc_c00186{bottom:77.345523px;}
.ydd_c00186{bottom:78.506946px;}
.yde_c00186{bottom:79.029415px;}
.yd1_c00186{bottom:90.961512px;}
.yd2_c00186{bottom:92.174745px;}
.yd3_c00186{bottom:92.618145px;}
.yd4_c00186{bottom:93.260217px;}
.yd5_c00186{bottom:94.323249px;}
.yd6_c00186{bottom:94.724287px;}
.yd7_c00186{bottom:96.006511px;}
.ycb_c00186{bottom:108.515571px;}
.ycc_c00186{bottom:109.381602px;}
.ycd_c00186{bottom:110.066425px;}
.yce_c00186{bottom:110.515554px;}
.ycf_c00186{bottom:111.263814px;}
.yd0_c00186{bottom:112.306720px;}
.yca_c00186{bottom:126.813811px;}
.yc8_c00186{bottom:126.813834px;}
.yc9_c00186{bottom:126.814378px;}
.yc7_c00186{bottom:126.814461px;}
.yc6_c00186{bottom:126.815026px;}
.yc5_c00186{bottom:126.815646px;}
.yc4_c00186{bottom:126.815728px;}
.yc3_c00186{bottom:126.815904px;}
.yc2_c00186{bottom:126.816192px;}
.ybc_c00186{bottom:144.161166px;}
.ybd_c00186{bottom:145.003839px;}
.ybe_c00186{bottom:146.091679px;}
.ybf_c00186{bottom:146.452164px;}
.yc0_c00186{bottom:146.806204px;}
.yc1_c00186{bottom:147.552102px;}
.yb8_c00186{bottom:162.100407px;}
.yba_c00186{bottom:162.100900px;}
.yb9_c00186{bottom:162.100983px;}
.yb7_c00186{bottom:162.101092px;}
.ybb_c00186{bottom:162.101211px;}
.yb6_c00186{bottom:162.101235px;}
.yb5_c00186{bottom:162.101530px;}
.yb4_c00186{bottom:162.101728px;}
.yaf_c00186{bottom:177.917305px;}
.yb0_c00186{bottom:178.502658px;}
.yb1_c00186{bottom:179.281013px;}
.yb2_c00186{bottom:179.731450px;}
.yb3_c00186{bottom:180.444169px;}
.ya9_c00186{bottom:193.039104px;}
.yaa_c00186{bottom:193.653725px;}
.yab_c00186{bottom:194.286238px;}
.yac_c00186{bottom:195.384957px;}
.yad_c00186{bottom:195.662955px;}
.yae_c00186{bottom:196.677781px;}
.ya2_c00186{bottom:210.592902px;}
.ya3_c00186{bottom:211.039454px;}
.ya4_c00186{bottom:212.155182px;}
.ya5_c00186{bottom:212.556784px;}
.ya6_c00186{bottom:212.851347px;}
.ya7_c00186{bottom:213.542628px;}
.ya8_c00186{bottom:214.183991px;}
.y99_c00186{bottom:227.067736px;}
.y9a_c00186{bottom:228.474264px;}
.y9b_c00186{bottom:228.902616px;}
.y9c_c00186{bottom:229.148640px;}
.y9d_c00186{bottom:229.670645px;}
.y9e_c00186{bottom:230.147100px;}
.y9f_c00186{bottom:230.778549px;}
.ya0_c00186{bottom:231.087956px;}
.ya1_c00186{bottom:231.500459px;}
.y91_c00186{bottom:244.081860px;}
.y92_c00186{bottom:244.362405px;}
.y93_c00186{bottom:244.830981px;}
.y94_c00186{bottom:245.146830px;}
.y95_c00186{bottom:246.248814px;}
.y96_c00186{bottom:247.079031px;}
.y97_c00186{bottom:247.449963px;}
.y98_c00186{bottom:249.125417px;}
.y89_c00186{bottom:261.634500px;}
.y8a_c00186{bottom:262.470633px;}
.y8b_c00186{bottom:263.625168px;}
.y8c_c00186{bottom:264.056202px;}
.y8d_c00186{bottom:264.954180px;}
.y8e_c00186{bottom:265.333828px;}
.y8f_c00186{bottom:266.713941px;}
.y90_c00186{bottom:266.902269px;}
.y81_c00186{bottom:277.831097px;}
.y82_c00186{bottom:278.416749px;}
.y83_c00186{bottom:280.222772px;}
.y84_c00186{bottom:280.549905px;}
.y85_c00186{bottom:281.975363px;}
.y86_c00186{bottom:282.314214px;}
.y87_c00186{bottom:283.466064px;}
.y88_c00186{bottom:283.908829px;}
.y7b_c00186{bottom:295.926000px;}
.y7c_c00186{bottom:296.726352px;}
.y7d_c00186{bottom:298.410090px;}
.y7e_c00186{bottom:299.759959px;}
.y7f_c00186{bottom:300.270858px;}
.y80_c00186{bottom:301.952328px;}
.y73_c00186{bottom:313.165458px;}
.y74_c00186{bottom:314.004999px;}
.y75_c00186{bottom:315.614432px;}
.y76_c00186{bottom:316.297953px;}
.y77_c00186{bottom:317.459655px;}
.y78_c00186{bottom:318.075189px;}
.y79_c00186{bottom:319.327191px;}
.y7a_c00186{bottom:319.739733px;}
.y6c_c00186{bottom:330.449810px;}
.y6d_c00186{bottom:331.016172px;}
.y6e_c00186{bottom:332.293950px;}
.y6f_c00186{bottom:334.534091px;}
.y70_c00186{bottom:334.859022px;}
.y71_c00186{bottom:335.568048px;}
.y72_c00186{bottom:336.159680px;}
.y63_c00186{bottom:346.660065px;}
.y64_c00186{bottom:347.446697px;}
.y65_c00186{bottom:348.121062px;}
.y66_c00186{bottom:349.036119px;}
.y67_c00186{bottom:350.508740px;}
.y68_c00186{bottom:350.991297px;}
.y69_c00186{bottom:352.791846px;}
.y6a_c00186{bottom:353.294856px;}
.y6b_c00186{bottom:354.448215px;}
.y5d_c00186{bottom:361.783880px;}
.y5e_c00186{bottom:363.169394px;}
.y5f_c00186{bottom:366.317774px;}
.y60_c00186{bottom:366.693870px;}
.y61_c00186{bottom:369.196739px;}
.y62_c00186{bottom:369.685754px;}
.y55_c00186{bottom:380.147315px;}
.y56_c00186{bottom:380.806865px;}
.y57_c00186{bottom:381.865917px;}
.y58_c00186{bottom:382.303079px;}
.y59_c00186{bottom:382.911647px;}
.y5a_c00186{bottom:384.115017px;}
.y5b_c00186{bottom:384.813480px;}
.y5c_c00186{bottom:386.637972px;}
.y4e_c00186{bottom:396.625068px;}
.y4f_c00186{bottom:398.077343px;}
.y50_c00186{bottom:398.562960px;}
.y51_c00186{bottom:399.939179px;}
.y52_c00186{bottom:400.803699px;}
.y53_c00186{bottom:401.619054px;}
.y2_c00186{bottom:403.110000px;}
.y54_c00186{bottom:403.743522px;}
.y46_c00186{bottom:414.450357px;}
.y47_c00186{bottom:415.907010px;}
.y48_c00186{bottom:416.357090px;}
.y49_c00186{bottom:416.888843px;}
.y4a_c00186{bottom:418.313831px;}
.y4b_c00186{bottom:418.848621px;}
.y4c_c00186{bottom:420.319892px;}
.y4d_c00186{bottom:420.690159px;}
.y3e_c00186{bottom:430.656000px;}
.y3f_c00186{bottom:431.945844px;}
.y40_c00186{bottom:432.707447px;}
.y41_c00186{bottom:433.313489px;}
.y42_c00186{bottom:434.807979px;}
.y43_c00186{bottom:435.287580px;}
.y44_c00186{bottom:436.229813px;}
.y45_c00186{bottom:437.586846px;}
.y36_c00186{bottom:447.929322px;}
.y37_c00186{bottom:448.599939px;}
.y38_c00186{bottom:450.058764px;}
.y39_c00186{bottom:451.968450px;}
.y3a_c00186{bottom:452.290503px;}
.y3b_c00186{bottom:453.507747px;}
.y3c_c00186{bottom:454.040532px;}
.y3d_c00186{bottom:455.619603px;}
.y31_c00186{bottom:465.751473px;}
.y3_c00186{bottom:466.560000px;}
.y32_c00186{bottom:467.182572px;}
.y33_c00186{bottom:467.769963px;}
.y34_c00186{bottom:469.776045px;}
.y35_c00186{bottom:471.514476px;}
.y2a_c00186{bottom:483.306000px;}
.y2b_c00186{bottom:484.045827px;}
.y2c_c00186{bottom:485.367180px;}
.y2d_c00186{bottom:486.897885px;}
.y2e_c00186{bottom:487.755918px;}
.y2f_c00186{bottom:488.997477px;}
.y30_c00186{bottom:489.435090px;}
.y23_c00186{bottom:499.777500px;}
.y1_c00186{bottom:500.040000px;}
.y24_c00186{bottom:500.805000px;}
.y25_c00186{bottom:502.770000px;}
.y26_c00186{bottom:504.043500px;}
.y27_c00186{bottom:504.832500px;}
.y28_c00186{bottom:506.106000px;}
.y29_c00186{bottom:506.629500px;}
.y1b_c00186{bottom:518.137500px;}
.y1c_c00186{bottom:518.794500px;}
.y1d_c00186{bottom:519.237000px;}
.y1e_c00186{bottom:520.476000px;}
.y1f_c00186{bottom:521.713500px;}
.y20_c00186{bottom:522.907500px;}
.y21_c00186{bottom:523.768500px;}
.y22_c00186{bottom:524.319000px;}
.y14_c00186{bottom:534.877500px;}
.y15_c00186{bottom:535.288500px;}
.y16_c00186{bottom:537.147000px;}
.y17_c00186{bottom:537.630000px;}
.y18_c00186{bottom:538.240500px;}
.y19_c00186{bottom:539.526000px;}
.y1a_c00186{bottom:541.299000px;}
.yd_c00186{bottom:552.964500px;}
.ye_c00186{bottom:553.581000px;}
.yf_c00186{bottom:555.157500px;}
.y10_c00186{bottom:555.652500px;}
.y11_c00186{bottom:557.026500px;}
.y12_c00186{bottom:558.487500px;}
.y13_c00186{bottom:558.726000px;}
.y5_c00186{bottom:570.784500px;}
.y6_c00186{bottom:571.686000px;}
.y7_c00186{bottom:572.298000px;}
.y8_c00186{bottom:572.902500px;}
.y9_c00186{bottom:573.102000px;}
.ya_c00186{bottom:573.616500px;}
.yb_c00186{bottom:574.683000px;}
.yc_c00186{bottom:575.970000px;}
.y4_c00186{bottom:590.224500px;}
.h3_c00186{height:19.950000px;}
.h2_c00186{height:22.050000px;}
.h19_c00186{height:55.660044px;}
.h10_c00186{height:55.662269px;}
.h11_c00186{height:56.712501px;}
.hf_c00186{height:57.771046px;}
.h5_c00186{height:58.800000px;}
.hc_c00186{height:58.821429px;}
.h7_c00186{height:59.850000px;}
.h1b_c00186{height:59.858648px;}
.h12_c00186{height:59.860802px;}
.hd_c00186{height:59.871811px;}
.h1a_c00186{height:60.908799px;}
.h15_c00186{height:60.910991px;}
.he_c00186{height:60.922194px;}
.h17_c00186{height:61.961181px;}
.hb_c00186{height:63.015244px;}
.h14_c00186{height:64.061560px;}
.h18_c00186{height:65.111749px;}
.ha_c00186{height:65.115752px;}
.h4_c00186{height:66.150000px;}
.h6_c00186{height:67.200000px;}
.h13_c00186{height:67.212129px;}
.h8_c00186{height:68.250000px;}
.h16_c00186{height:69.312508px;}
.h9_c00186{height:70.350000px;}
.h0_c00186{height:623.100000px;}
.h1_c00186{height:623.250000px;}
.w1_c00186{width:383.250000px;}
.w0_c00186{width:383.400000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:9.720000px;}
.x2_c00186{left:16.740000px;}
.x21_c00186{left:21.897000px;}
.x4c_c00186{left:28.887000px;}
.x27_c00186{left:30.808824px;}
.x4_c00186{left:32.085000px;}
.xc_c00186{left:33.742500px;}
.x41_c00186{left:35.020144px;}
.x55_c00186{left:36.415500px;}
.x61_c00186{left:37.643383px;}
.x69_c00186{left:38.761534px;}
.x79_c00186{left:39.779076px;}
.x13_c00186{left:50.820000px;}
.x59_c00186{left:52.244264px;}
.x22_c00186{left:55.525500px;}
.x42_c00186{left:58.609548px;}
.xd_c00186{left:63.079500px;}
.x7a_c00186{left:65.730662px;}
.x4d_c00186{left:66.999000px;}
.x46_c00186{left:70.978526px;}
.x1e_c00186{left:72.439500px;}
.x77_c00186{left:74.719500px;}
.x5a_c00186{left:78.248748px;}
.x5_c00186{left:79.500000px;}
.x2f_c00186{left:82.039500px;}
.x18_c00186{left:83.436000px;}
.x63_c00186{left:85.209777px;}
.x3b_c00186{left:88.740002px;}
.x37_c00186{left:90.514958px;}
.x28_c00186{left:93.061971px;}
.x5b_c00186{left:95.820090px;}
.x35_c00186{left:96.841015px;}
.x67_c00186{left:100.988746px;}
.x6c_c00186{left:103.416307px;}
.x72_c00186{left:106.514370px;}
.x2b_c00186{left:108.932190px;}
.x30_c00186{left:110.247000px;}
.x6_c00186{left:111.730500px;}
.x23_c00186{left:115.587000px;}
.x29_c00186{left:118.601910px;}
.x3c_c00186{left:122.631002px;}
.x14_c00186{left:128.284500px;}
.x73_c00186{left:131.114826px;}
.x31_c00186{left:132.693000px;}
.x64_c00186{left:133.821306px;}
.xe_c00186{left:138.117000px;}
.x19_c00186{left:139.785000px;}
.x47_c00186{left:140.983599px;}
.x7_c00186{left:143.574000px;}
.x4e_c00186{left:147.177000px;}
.x15_c00186{left:148.419000px;}
.x51_c00186{left:152.069055px;}
.x8_c00186{left:154.059000px;}
.x5c_c00186{left:157.057259px;}
.xf_c00186{left:161.653500px;}
.x56_c00186{left:163.873500px;}
.x3_c00186{left:165.240000px;}
.x74_c00186{left:166.803510px;}
.x48_c00186{left:170.691299px;}
.x16_c00186{left:173.862000px;}
.x6d_c00186{left:176.060527px;}
.x3d_c00186{left:177.172502px;}
.x2c_c00186{left:179.637402px;}
.x9_c00186{left:181.146000px;}
.x24_c00186{left:185.164500px;}
.x32_c00186{left:188.044500px;}
.x2d_c00186{left:191.547582px;}
.x3e_c00186{left:195.045002px;}
.x1a_c00186{left:196.048500px;}
.x1f_c00186{left:197.052000px;}
.x6a_c00186{left:199.599409px;}
.x36_c00186{left:201.493815px;}
.x5d_c00186{left:203.201142px;}
.x2a_c00186{left:205.830996px;}
.x39_c00186{left:209.430821px;}
.x4f_c00186{left:211.456500px;}
.x7b_c00186{left:213.180180px;}
.x52_c00186{left:216.875200px;}
.x43_c00186{left:218.672467px;}
.x49_c00186{left:221.222766px;}
.x25_c00186{left:224.166000px;}
.x75_c00186{left:225.832621px;}
.x10_c00186{left:227.073000px;}
.x6b_c00186{left:229.628899px;}
.x57_c00186{left:231.117000px;}
.x53_c00186{left:232.296386px;}
.x6e_c00186{left:234.391089px;}
.x50_c00186{left:235.785000px;}
.xa_c00186{left:237.306000px;}
.x65_c00186{left:239.686862px;}
.x33_c00186{left:240.705000px;}
.x44_c00186{left:248.212857px;}
.x1b_c00186{left:250.297500px;}
.x2e_c00186{left:256.359954px;}
.x68_c00186{left:259.776060px;}
.x3f_c00186{left:261.732002px;}
.x62_c00186{left:264.523233px;}
.x5e_c00186{left:266.455566px;}
.x45_c00186{left:272.849341px;}
.x20_c00186{left:276.414000px;}
.x6f_c00186{left:278.949691px;}
.x26_c00186{left:280.600500px;}
.x54_c00186{left:284.645283px;}
.x5f_c00186{left:285.820177px;}
.x1c_c00186{left:289.452000px;}
.x34_c00186{left:290.965500px;}
.x78_c00186{left:294.606242px;}
.x11_c00186{left:296.640000px;}
.x3a_c00186{left:298.793891px;}
.x17_c00186{left:301.255500px;}
.x4a_c00186{left:302.399514px;}
.x58_c00186{left:303.754500px;}
.xb_c00186{left:305.046000px;}
.x70_c00186{left:306.225024px;}
.x12_c00186{left:307.975500px;}
.x60_c00186{left:311.558631px;}
.x1d_c00186{left:314.455500px;}
.x38_c00186{left:316.196498px;}
.x66_c00186{left:317.739254px;}
.x76_c00186{left:319.321888px;}
.x4b_c00186{left:320.347458px;}
.x40_c00186{left:323.079002px;}
.x71_c00186{left:325.939149px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.000000pt;}
.fs1_c00186{font-size:17.733333pt;}
.fs0_c00186{font-size:19.600000pt;}
.fs17_c00186{font-size:49.475595pt;}
.fse_c00186{font-size:49.477573pt;}
.fsf_c00186{font-size:50.411112pt;}
.fsd_c00186{font-size:51.352041pt;}
.fs3_c00186{font-size:52.266667pt;}
.fsa_c00186{font-size:52.285714pt;}
.fs5_c00186{font-size:53.200000pt;}
.fs19_c00186{font-size:53.207687pt;}
.fs10_c00186{font-size:53.209602pt;}
.fsb_c00186{font-size:53.219388pt;}
.fs18_c00186{font-size:54.141155pt;}
.fs13_c00186{font-size:54.143104pt;}
.fsc_c00186{font-size:54.153061pt;}
.fs15_c00186{font-size:55.076605pt;}
.fs9_c00186{font-size:56.013550pt;}
.fs12_c00186{font-size:56.943609pt;}
.fs16_c00186{font-size:57.877111pt;}
.fs8_c00186{font-size:57.880669pt;}
.fs2_c00186{font-size:58.800000pt;}
.fs4_c00186{font-size:59.733333pt;}
.fs11_c00186{font-size:59.744114pt;}
.fs6_c00186{font-size:60.666667pt;}
.fs14_c00186{font-size:61.611118pt;}
.fs7_c00186{font-size:62.533333pt;}
.y0_c00186{bottom:0.000000pt;}
.ye6_c00186{bottom:35.995495pt;}
.ye7_c00186{bottom:36.226272pt;}
.ye8_c00186{bottom:36.394425pt;}
.ye9_c00186{bottom:36.591539pt;}
.yea_c00186{bottom:37.280463pt;}
.yeb_c00186{bottom:37.538133pt;}
.yec_c00186{bottom:38.108448pt;}
.yed_c00186{bottom:38.229241pt;}
.yee_c00186{bottom:38.365053pt;}
.ydf_c00186{bottom:52.808181pt;}
.ye5_c00186{bottom:52.808365pt;}
.ye3_c00186{bottom:52.808547pt;}
.ye0_c00186{bottom:52.808620pt;}
.ye4_c00186{bottom:52.808628pt;}
.ye2_c00186{bottom:52.809029pt;}
.ye1_c00186{bottom:52.809288pt;}
.yd8_c00186{bottom:66.241333pt;}
.yd9_c00186{bottom:66.601507pt;}
.yda_c00186{bottom:67.037931pt;}
.ydb_c00186{bottom:68.195313pt;}
.ydc_c00186{bottom:68.751576pt;}
.ydd_c00186{bottom:69.783952pt;}
.yde_c00186{bottom:70.248369pt;}
.yd1_c00186{bottom:80.854677pt;}
.yd2_c00186{bottom:81.933107pt;}
.yd3_c00186{bottom:82.327240pt;}
.yd4_c00186{bottom:82.897971pt;}
.yd5_c00186{bottom:83.842888pt;}
.yd6_c00186{bottom:84.199367pt;}
.yd7_c00186{bottom:85.339121pt;}
.ycb_c00186{bottom:96.458285pt;}
.ycc_c00186{bottom:97.228091pt;}
.ycd_c00186{bottom:97.836823pt;}
.yce_c00186{bottom:98.236048pt;}
.ycf_c00186{bottom:98.901168pt;}
.yd0_c00186{bottom:99.828196pt;}
.yca_c00186{bottom:112.723388pt;}
.yc8_c00186{bottom:112.723408pt;}
.yc9_c00186{bottom:112.723892pt;}
.yc7_c00186{bottom:112.723965pt;}
.yc6_c00186{bottom:112.724468pt;}
.yc5_c00186{bottom:112.725019pt;}
.yc4_c00186{bottom:112.725092pt;}
.yc3_c00186{bottom:112.725248pt;}
.yc2_c00186{bottom:112.725504pt;}
.ybc_c00186{bottom:128.143259pt;}
.ybd_c00186{bottom:128.892301pt;}
.ybe_c00186{bottom:129.859271pt;}
.ybf_c00186{bottom:130.179701pt;}
.yc0_c00186{bottom:130.494404pt;}
.yc1_c00186{bottom:131.157424pt;}
.yb8_c00186{bottom:144.089251pt;}
.yba_c00186{bottom:144.089689pt;}
.yb9_c00186{bottom:144.089763pt;}
.yb7_c00186{bottom:144.089860pt;}
.ybb_c00186{bottom:144.089965pt;}
.yb6_c00186{bottom:144.089987pt;}
.yb5_c00186{bottom:144.090249pt;}
.yb4_c00186{bottom:144.090425pt;}
.yaf_c00186{bottom:158.148716pt;}
.yb0_c00186{bottom:158.669029pt;}
.yb1_c00186{bottom:159.360900pt;}
.yb2_c00186{bottom:159.761289pt;}
.yb3_c00186{bottom:160.394817pt;}
.ya9_c00186{bottom:171.590315pt;}
.yaa_c00186{bottom:172.136644pt;}
.yab_c00186{bottom:172.698879pt;}
.yac_c00186{bottom:173.675517pt;}
.yad_c00186{bottom:173.922627pt;}
.yae_c00186{bottom:174.824695pt;}
.ya2_c00186{bottom:187.193691pt;}
.ya3_c00186{bottom:187.590625pt;}
.ya4_c00186{bottom:188.582384pt;}
.ya5_c00186{bottom:188.939364pt;}
.ya6_c00186{bottom:189.201197pt;}
.ya7_c00186{bottom:189.815669pt;}
.ya8_c00186{bottom:190.385769pt;}
.y99_c00186{bottom:201.837988pt;}
.y9a_c00186{bottom:203.088235pt;}
.y9b_c00186{bottom:203.468992pt;}
.y9c_c00186{bottom:203.687680pt;}
.y9d_c00186{bottom:204.151684pt;}
.y9e_c00186{bottom:204.575200pt;}
.y9f_c00186{bottom:205.136488pt;}
.ya0_c00186{bottom:205.411516pt;}
.ya1_c00186{bottom:205.778185pt;}
.y91_c00186{bottom:216.961653pt;}
.y92_c00186{bottom:217.211027pt;}
.y93_c00186{bottom:217.627539pt;}
.y94_c00186{bottom:217.908293pt;}
.y95_c00186{bottom:218.887835pt;}
.y96_c00186{bottom:219.625805pt;}
.y97_c00186{bottom:219.955523pt;}
.y98_c00186{bottom:221.444815pt;}
.y89_c00186{bottom:232.564000pt;}
.y8a_c00186{bottom:233.307229pt;}
.y8b_c00186{bottom:234.333483pt;}
.y8c_c00186{bottom:234.716624pt;}
.y8d_c00186{bottom:235.514827pt;}
.y8e_c00186{bottom:235.852292pt;}
.y8f_c00186{bottom:237.079059pt;}
.y90_c00186{bottom:237.246461pt;}
.y81_c00186{bottom:246.960975pt;}
.y82_c00186{bottom:247.481555pt;}
.y83_c00186{bottom:249.086908pt;}
.y84_c00186{bottom:249.377693pt;}
.y85_c00186{bottom:250.644767pt;}
.y86_c00186{bottom:250.945968pt;}
.y87_c00186{bottom:251.969835pt;}
.y88_c00186{bottom:252.363404pt;}
.y7b_c00186{bottom:263.045333pt;}
.y7c_c00186{bottom:263.756757pt;}
.y7d_c00186{bottom:265.253413pt;}
.y7e_c00186{bottom:266.453297pt;}
.y7f_c00186{bottom:266.907429pt;}
.y80_c00186{bottom:268.402069pt;}
.y73_c00186{bottom:278.369296pt;}
.y74_c00186{bottom:279.115555pt;}
.y75_c00186{bottom:280.546161pt;}
.y76_c00186{bottom:281.153736pt;}
.y77_c00186{bottom:282.186360pt;}
.y78_c00186{bottom:282.733501pt;}
.y79_c00186{bottom:283.846392pt;}
.y7a_c00186{bottom:284.213096pt;}
.y6c_c00186{bottom:293.733164pt;}
.y6d_c00186{bottom:294.236597pt;}
.y6e_c00186{bottom:295.372400pt;}
.y6f_c00186{bottom:297.363636pt;}
.y70_c00186{bottom:297.652464pt;}
.y71_c00186{bottom:298.282709pt;}
.y72_c00186{bottom:298.808604pt;}
.y63_c00186{bottom:308.142280pt;}
.y64_c00186{bottom:308.841508pt;}
.y65_c00186{bottom:309.440944pt;}
.y66_c00186{bottom:310.254328pt;}
.y67_c00186{bottom:311.563324pt;}
.y68_c00186{bottom:311.992264pt;}
.y69_c00186{bottom:313.592752pt;}
.y6a_c00186{bottom:314.039872pt;}
.y6b_c00186{bottom:315.065080pt;}
.y5d_c00186{bottom:321.585671pt;}
.y5e_c00186{bottom:322.817239pt;}
.y5f_c00186{bottom:325.615799pt;}
.y60_c00186{bottom:325.950107pt;}
.y61_c00186{bottom:328.174879pt;}
.y62_c00186{bottom:328.609559pt;}
.y55_c00186{bottom:337.908724pt;}
.y56_c00186{bottom:338.494991pt;}
.y57_c00186{bottom:339.436371pt;}
.y58_c00186{bottom:339.824959pt;}
.y59_c00186{bottom:340.365908pt;}
.y5a_c00186{bottom:341.435571pt;}
.y5b_c00186{bottom:342.056427pt;}
.y5c_c00186{bottom:343.678197pt;}
.y4e_c00186{bottom:352.555616pt;}
.y4f_c00186{bottom:353.846527pt;}
.y50_c00186{bottom:354.278187pt;}
.y51_c00186{bottom:355.501492pt;}
.y52_c00186{bottom:356.269955pt;}
.y53_c00186{bottom:356.994715pt;}
.y2_c00186{bottom:358.320000pt;}
.y54_c00186{bottom:358.883131pt;}
.y46_c00186{bottom:368.400317pt;}
.y47_c00186{bottom:369.695120pt;}
.y48_c00186{bottom:370.095191pt;}
.y49_c00186{bottom:370.567860pt;}
.y4a_c00186{bottom:371.834516pt;}
.y4b_c00186{bottom:372.309885pt;}
.y4c_c00186{bottom:373.617681pt;}
.y4d_c00186{bottom:373.946808pt;}
.y3e_c00186{bottom:382.805333pt;}
.y3f_c00186{bottom:383.951861pt;}
.y40_c00186{bottom:384.628841pt;}
.y41_c00186{bottom:385.167545pt;}
.y42_c00186{bottom:386.495981pt;}
.y43_c00186{bottom:386.922293pt;}
.y44_c00186{bottom:387.759833pt;}
.y45_c00186{bottom:388.966085pt;}
.y36_c00186{bottom:398.159397pt;}
.y37_c00186{bottom:398.755501pt;}
.y38_c00186{bottom:400.052235pt;}
.y39_c00186{bottom:401.749733pt;}
.y3a_c00186{bottom:402.036003pt;}
.y3b_c00186{bottom:403.117997pt;}
.y3c_c00186{bottom:403.591584pt;}
.y3d_c00186{bottom:404.995203pt;}
.y31_c00186{bottom:414.001309pt;}
.y3_c00186{bottom:414.720000pt;}
.y32_c00186{bottom:415.273397pt;}
.y33_c00186{bottom:415.795523pt;}
.y34_c00186{bottom:417.578707pt;}
.y35_c00186{bottom:419.123979pt;}
.y2a_c00186{bottom:429.605333pt;}
.y2b_c00186{bottom:430.262957pt;}
.y2c_c00186{bottom:431.437493pt;}
.y2d_c00186{bottom:432.798120pt;}
.y2e_c00186{bottom:433.560816pt;}
.y2f_c00186{bottom:434.664424pt;}
.y30_c00186{bottom:435.053413pt;}
.y23_c00186{bottom:444.246667pt;}
.y1_c00186{bottom:444.480000pt;}
.y24_c00186{bottom:445.160000pt;}
.y25_c00186{bottom:446.906667pt;}
.y26_c00186{bottom:448.038667pt;}
.y27_c00186{bottom:448.740000pt;}
.y28_c00186{bottom:449.872000pt;}
.y29_c00186{bottom:450.337333pt;}
.y1b_c00186{bottom:460.566667pt;}
.y1c_c00186{bottom:461.150667pt;}
.y1d_c00186{bottom:461.544000pt;}
.y1e_c00186{bottom:462.645333pt;}
.y1f_c00186{bottom:463.745333pt;}
.y20_c00186{bottom:464.806667pt;}
.y21_c00186{bottom:465.572000pt;}
.y22_c00186{bottom:466.061333pt;}
.y14_c00186{bottom:475.446667pt;}
.y15_c00186{bottom:475.812000pt;}
.y16_c00186{bottom:477.464000pt;}
.y17_c00186{bottom:477.893333pt;}
.y18_c00186{bottom:478.436000pt;}
.y19_c00186{bottom:479.578667pt;}
.y1a_c00186{bottom:481.154667pt;}
.yd_c00186{bottom:491.524000pt;}
.ye_c00186{bottom:492.072000pt;}
.yf_c00186{bottom:493.473333pt;}
.y10_c00186{bottom:493.913333pt;}
.y11_c00186{bottom:495.134667pt;}
.y12_c00186{bottom:496.433333pt;}
.y13_c00186{bottom:496.645333pt;}
.y5_c00186{bottom:507.364000pt;}
.y6_c00186{bottom:508.165333pt;}
.y7_c00186{bottom:508.709333pt;}
.y8_c00186{bottom:509.246667pt;}
.y9_c00186{bottom:509.424000pt;}
.ya_c00186{bottom:509.881333pt;}
.yb_c00186{bottom:510.829333pt;}
.yc_c00186{bottom:511.973333pt;}
.y4_c00186{bottom:524.644000pt;}
.h3_c00186{height:17.733333pt;}
.h2_c00186{height:19.600000pt;}
.h19_c00186{height:49.475595pt;}
.h10_c00186{height:49.477573pt;}
.h11_c00186{height:50.411112pt;}
.hf_c00186{height:51.352041pt;}
.h5_c00186{height:52.266667pt;}
.hc_c00186{height:52.285714pt;}
.h7_c00186{height:53.200000pt;}
.h1b_c00186{height:53.207687pt;}
.h12_c00186{height:53.209602pt;}
.hd_c00186{height:53.219388pt;}
.h1a_c00186{height:54.141155pt;}
.h15_c00186{height:54.143104pt;}
.he_c00186{height:54.153061pt;}
.h17_c00186{height:55.076605pt;}
.hb_c00186{height:56.013550pt;}
.h14_c00186{height:56.943609pt;}
.h18_c00186{height:57.877111pt;}
.ha_c00186{height:57.880669pt;}
.h4_c00186{height:58.800000pt;}
.h6_c00186{height:59.733333pt;}
.h13_c00186{height:59.744114pt;}
.h8_c00186{height:60.666667pt;}
.h16_c00186{height:61.611118pt;}
.h9_c00186{height:62.533333pt;}
.h0_c00186{height:553.866667pt;}
.h1_c00186{height:554.000000pt;}
.w1_c00186{width:340.666667pt;}
.w0_c00186{width:340.800000pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:8.640000pt;}
.x2_c00186{left:14.880000pt;}
.x21_c00186{left:19.464000pt;}
.x4c_c00186{left:25.677333pt;}
.x27_c00186{left:27.385621pt;}
.x4_c00186{left:28.520000pt;}
.xc_c00186{left:29.993333pt;}
.x41_c00186{left:31.129017pt;}
.x55_c00186{left:32.369333pt;}
.x61_c00186{left:33.460785pt;}
.x69_c00186{left:34.454697pt;}
.x79_c00186{left:35.359179pt;}
.x13_c00186{left:45.173333pt;}
.x59_c00186{left:46.439345pt;}
.x22_c00186{left:49.356000pt;}
.x42_c00186{left:52.097376pt;}
.xd_c00186{left:56.070667pt;}
.x7a_c00186{left:58.427255pt;}
.x4d_c00186{left:59.554667pt;}
.x46_c00186{left:63.092023pt;}
.x1e_c00186{left:64.390667pt;}
.x77_c00186{left:66.417333pt;}
.x5a_c00186{left:69.554443pt;}
.x5_c00186{left:70.666667pt;}
.x2f_c00186{left:72.924000pt;}
.x18_c00186{left:74.165333pt;}
.x63_c00186{left:75.742024pt;}
.x3b_c00186{left:78.880001pt;}
.x37_c00186{left:80.457740pt;}
.x28_c00186{left:82.721752pt;}
.x5b_c00186{left:85.173413pt;}
.x35_c00186{left:86.080903pt;}
.x67_c00186{left:89.767775pt;}
.x6c_c00186{left:91.925607pt;}
.x72_c00186{left:94.679440pt;}
.x2b_c00186{left:96.828613pt;}
.x30_c00186{left:97.997333pt;}
.x6_c00186{left:99.316000pt;}
.x23_c00186{left:102.744000pt;}
.x29_c00186{left:105.423920pt;}
.x3c_c00186{left:109.005335pt;}
.x14_c00186{left:114.030667pt;}
.x73_c00186{left:116.546512pt;}
.x31_c00186{left:117.949333pt;}
.x64_c00186{left:118.952272pt;}
.xe_c00186{left:122.770667pt;}
.x19_c00186{left:124.253333pt;}
.x47_c00186{left:125.318755pt;}
.x7_c00186{left:127.621333pt;}
.x4e_c00186{left:130.824000pt;}
.x15_c00186{left:131.928000pt;}
.x51_c00186{left:135.172493pt;}
.x8_c00186{left:136.941333pt;}
.x5c_c00186{left:139.606452pt;}
.xf_c00186{left:143.692000pt;}
.x56_c00186{left:145.665333pt;}
.x3_c00186{left:146.880000pt;}
.x74_c00186{left:148.269787pt;}
.x48_c00186{left:151.725599pt;}
.x16_c00186{left:154.544000pt;}
.x6d_c00186{left:156.498247pt;}
.x3d_c00186{left:157.486668pt;}
.x2c_c00186{left:159.677691pt;}
.x9_c00186{left:161.018667pt;}
.x24_c00186{left:164.590667pt;}
.x32_c00186{left:167.150667pt;}
.x2d_c00186{left:170.264517pt;}
.x3e_c00186{left:173.373335pt;}
.x1a_c00186{left:174.265333pt;}
.x1f_c00186{left:175.157333pt;}
.x6a_c00186{left:177.421697pt;}
.x36_c00186{left:179.105613pt;}
.x5d_c00186{left:180.623237pt;}
.x2a_c00186{left:182.960885pt;}
.x39_c00186{left:186.160729pt;}
.x4f_c00186{left:187.961333pt;}
.x7b_c00186{left:189.493493pt;}
.x52_c00186{left:192.777956pt;}
.x43_c00186{left:194.375527pt;}
.x49_c00186{left:196.642459pt;}
.x25_c00186{left:199.258667pt;}
.x75_c00186{left:200.740108pt;}
.x10_c00186{left:201.842667pt;}
.x6b_c00186{left:204.114577pt;}
.x57_c00186{left:205.437333pt;}
.x53_c00186{left:206.485676pt;}
.x6e_c00186{left:208.347635pt;}
.x50_c00186{left:209.586667pt;}
.xa_c00186{left:210.938667pt;}
.x65_c00186{left:213.054988pt;}
.x33_c00186{left:213.960000pt;}
.x44_c00186{left:220.633651pt;}
.x1b_c00186{left:222.486667pt;}
.x2e_c00186{left:227.875515pt;}
.x68_c00186{left:230.912053pt;}
.x3f_c00186{left:232.650668pt;}
.x62_c00186{left:235.131763pt;}
.x5e_c00186{left:236.849392pt;}
.x45_c00186{left:242.532748pt;}
.x20_c00186{left:245.701333pt;}
.x6f_c00186{left:247.955281pt;}
.x26_c00186{left:249.422667pt;}
.x54_c00186{left:253.018029pt;}
.x5f_c00186{left:254.062380pt;}
.x1c_c00186{left:257.290667pt;}
.x34_c00186{left:258.636000pt;}
.x78_c00186{left:261.872215pt;}
.x11_c00186{left:263.680000pt;}
.x3a_c00186{left:265.594569pt;}
.x17_c00186{left:267.782667pt;}
.x4a_c00186{left:268.799568pt;}
.x58_c00186{left:270.004000pt;}
.xb_c00186{left:271.152000pt;}
.x70_c00186{left:272.200021pt;}
.x12_c00186{left:273.756000pt;}
.x60_c00186{left:276.941005pt;}
.x1d_c00186{left:279.516000pt;}
.x38_c00186{left:281.063553pt;}
.x66_c00186{left:282.434892pt;}
.x76_c00186{left:283.841679pt;}
.x4b_c00186{left:284.753296pt;}
.x40_c00186{left:287.181335pt;}
.x71_c00186{left:289.723688pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00187 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00187 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00187 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00187 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00187.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb6_c00187{transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.115205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115205,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m32_c00187{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);}
.mc5_c00187{transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);}
.m62_c00187{transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149995,0.000000,0.000000,0.250000,0,0);}
.mc4_c00187{transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.mca_c00187{transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.mbf_c00187{transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.me1_c00187{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.158605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158605,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{transform:matrix(0.158620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{transform:matrix(0.159155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159155,0.000000,0.000000,0.250000,0,0);}
.m98_c00187{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.mf6_c00187{transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);}
.m9b_c00187{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.mc9_c00187{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.165120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165120,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.mb3_c00187{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.mba_c00187{transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166605,0.000000,0.000000,0.250000,0,0);}
.me8_c00187{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.mc2_c00187{transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);}
.mf7_c00187{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.170795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170795,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.mce_c00187{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.m52_c00187{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.mcf_c00187{transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);}
.mf4_c00187{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173570,0.000000,0.000000,0.250000,0,0);}
.mdb_c00187{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.mc8_c00187{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.mae_c00187{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.mc7_c00187{transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.md4_c00187{transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178955,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.mec_c00187{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.md1_c00187{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.mc0_c00187{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.179890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179890,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.mcd_c00187{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.maf_c00187{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);}
.mbb_c00187{transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);}
.mc1_c00187{transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.mcc_c00187{transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);}
.mbc_c00187{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.ma8_c00187{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.185595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185595,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);}
.mb0_c00187{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);}
.mda_c00187{transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187340,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m78_c00187{transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);}
.md7_c00187{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m6a_c00187{transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);}
.m8c_c00187{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);}
.m82_c00187{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.maa_c00187{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.mea_c00187{transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);}
.mb7_c00187{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m81_c00187{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);}
.m1a_c00187{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mdf_c00187{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.mee_c00187{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.m84_c00187{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.me7_c00187{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.mc6_c00187{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);}
.m5f_c00187{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.mbe_c00187{transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.me3_c00187{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.mb8_c00187{transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);}
.mf5_c00187{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200985,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.md9_c00187{transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.md2_c00187{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00187{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m72_c00187{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.mab_c00187{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);}
.mcb_c00187{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);}
.mdd_c00187{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.mf0_c00187{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mc3_c00187{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.md3_c00187{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.md6_c00187{transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);}
.mb2_c00187{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.ma6_c00187{transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mad_c00187{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.meb_c00187{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.mac_c00187{transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);}
.mfb_c00187{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.me4_c00187{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.me0_c00187{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.mf3_c00187{transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.mf1_c00187{transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.ma9_c00187{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217360,0.000000,0.000000,0.250000,0,0);}
.mbd_c00187{transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00187{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.mf2_c00187{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m71_c00187{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md8_c00187{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);}
.med_c00187{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m95_c00187{transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);}
.m91_c00187{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.me6_c00187{transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);}
.mfa_c00187{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);}
.md0_c00187{transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);}
.m42_c00187{transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);}
.me5_c00187{transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);}
.mfd_c00187{transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);}
.me9_c00187{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.me2_c00187{transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.225340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225340,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);}
.mf9_c00187{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);}
.m63_c00187{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);}
.mfc_c00187{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00187{transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);}
.m5d_c00187{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.mde_c00187{transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00187{transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);}
.mef_c00187{transform:matrix(0.238835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238835,0.000000,0.000000,0.250000,0,0);}
.md5_c00187{transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);}
.mf8_c00187{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.241140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241140,0.000000,0.000000,0.250000,0,0);}
.mdc_c00187{transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00187{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00187{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.271920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271920,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{transform:matrix(0.323115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323115,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);}
.mfe_c00187{transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00187{transform:matrix(0.376710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376710,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.449705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449705,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:0.000000px;}
.fc0_c00187{color:transparent;}
.fsc_c00187{font-size:57.750000px;}
.fsb_c00187{font-size:58.800000px;}
.fs6_c00187{font-size:59.850000px;}
.fs2_c00187{font-size:60.900000px;}
.fs3_c00187{font-size:61.950000px;}
.fsa_c00187{font-size:63.000000px;}
.fs0_c00187{font-size:65.100000px;}
.fs7_c00187{font-size:66.150000px;}
.fs9_c00187{font-size:67.200000px;}
.fs8_c00187{font-size:68.250000px;}
.fs5_c00187{font-size:69.300000px;}
.fs1_c00187{font-size:70.350000px;}
.fs4_c00187{font-size:73.500000px;}
.y0_c00187{bottom:0.000000px;}
.yb7_c00187{bottom:29.842500px;}
.yb6_c00187{bottom:45.993000px;}
.yb5_c00187{bottom:46.656000px;}
.yb4_c00187{bottom:46.950000px;}
.yb3_c00187{bottom:47.745000px;}
.yb2_c00187{bottom:48.156000px;}
.yb1_c00187{bottom:49.041000px;}
.yb0_c00187{bottom:49.336500px;}
.yaf_c00187{bottom:49.956000px;}
.yae_c00187{bottom:64.045500px;}
.yad_c00187{bottom:80.935500px;}
.yac_c00187{bottom:97.533000px;}
.yab_c00187{bottom:97.702500px;}
.yaa_c00187{bottom:97.977000px;}
.ya9_c00187{bottom:98.695500px;}
.ya8_c00187{bottom:99.013500px;}
.ya7_c00187{bottom:99.507000px;}
.ya6_c00187{bottom:100.174500px;}
.ya5_c00187{bottom:115.039500px;}
.ya4_c00187{bottom:130.252500px;}
.ya3_c00187{bottom:130.741500px;}
.ya2_c00187{bottom:130.909500px;}
.ya1_c00187{bottom:131.473500px;}
.ya0_c00187{bottom:131.797500px;}
.y9f_c00187{bottom:132.579000px;}
.y9e_c00187{bottom:132.931500px;}
.y9d_c00187{bottom:133.093500px;}
.y9c_c00187{bottom:133.384500px;}
.y9b_c00187{bottom:149.028000px;}
.y9a_c00187{bottom:165.982500px;}
.y99_c00187{bottom:166.489500px;}
.y98_c00187{bottom:166.774500px;}
.y97_c00187{bottom:167.025000px;}
.y96_c00187{bottom:167.704500px;}
.y95_c00187{bottom:168.147000px;}
.y94_c00187{bottom:168.252000px;}
.y93_c00187{bottom:168.753000px;}
.y92_c00187{bottom:182.037000px;}
.y91_c00187{bottom:182.395500px;}
.y90_c00187{bottom:182.815500px;}
.y8f_c00187{bottom:183.591000px;}
.y8e_c00187{bottom:183.933000px;}
.y8d_c00187{bottom:184.884000px;}
.y8c_c00187{bottom:185.257500px;}
.y8b_c00187{bottom:186.843000px;}
.y8a_c00187{bottom:200.038500px;}
.y89_c00187{bottom:200.662500px;}
.y88_c00187{bottom:201.267000px;}
.y87_c00187{bottom:201.667500px;}
.y86_c00187{bottom:201.952500px;}
.y85_c00187{bottom:202.371000px;}
.y84_c00187{bottom:203.313000px;}
.y83_c00187{bottom:216.943500px;}
.y82_c00187{bottom:217.798500px;}
.y81_c00187{bottom:218.358000px;}
.y80_c00187{bottom:218.881500px;}
.y7f_c00187{bottom:220.108500px;}
.y7e_c00187{bottom:220.512000px;}
.y7d_c00187{bottom:221.236500px;}
.y7c_c00187{bottom:222.484500px;}
.y7b_c00187{bottom:235.224000px;}
.y7a_c00187{bottom:235.813500px;}
.y79_c00187{bottom:236.053500px;}
.y78_c00187{bottom:236.938500px;}
.y77_c00187{bottom:237.360000px;}
.y76_c00187{bottom:237.625500px;}
.y75_c00187{bottom:238.381500px;}
.y74_c00187{bottom:238.681500px;}
.y73_c00187{bottom:252.247500px;}
.y72_c00187{bottom:252.414000px;}
.y71_c00187{bottom:252.640500px;}
.y70_c00187{bottom:253.117500px;}
.y6f_c00187{bottom:253.912500px;}
.y6e_c00187{bottom:254.373000px;}
.y6d_c00187{bottom:254.784000px;}
.y6c_c00187{bottom:255.109500px;}
.y6b_c00187{bottom:255.964500px;}
.y6a_c00187{bottom:268.353000px;}
.y69_c00187{bottom:269.434500px;}
.y68_c00187{bottom:269.907000px;}
.y67_c00187{bottom:270.784500px;}
.y66_c00187{bottom:271.317000px;}
.y65_c00187{bottom:271.732500px;}
.y64_c00187{bottom:272.383500px;}
.y63_c00187{bottom:273.246000px;}
.y62_c00187{bottom:285.175500px;}
.y61_c00187{bottom:286.075500px;}
.y60_c00187{bottom:286.788000px;}
.y5f_c00187{bottom:287.527500px;}
.y5e_c00187{bottom:288.129000px;}
.y5d_c00187{bottom:288.886500px;}
.y5c_c00187{bottom:289.717500px;}
.y5b_c00187{bottom:302.739000px;}
.y5a_c00187{bottom:303.093000px;}
.y59_c00187{bottom:304.069500px;}
.y58_c00187{bottom:304.693500px;}
.y57_c00187{bottom:305.062500px;}
.y56_c00187{bottom:305.433000px;}
.y55_c00187{bottom:305.644500px;}
.y54_c00187{bottom:305.794500px;}
.y53_c00187{bottom:306.184500px;}
.y52_c00187{bottom:319.596000px;}
.y51_c00187{bottom:319.914000px;}
.y50_c00187{bottom:320.181000px;}
.y4f_c00187{bottom:320.974500px;}
.y4e_c00187{bottom:321.211500px;}
.y4d_c00187{bottom:321.483000px;}
.y4c_c00187{bottom:322.011000px;}
.y4b_c00187{bottom:322.656000px;}
.y4a_c00187{bottom:336.808500px;}
.y49_c00187{bottom:336.967500px;}
.y48_c00187{bottom:337.186500px;}
.y47_c00187{bottom:337.497000px;}
.y46_c00187{bottom:338.239500px;}
.y45_c00187{bottom:338.490000px;}
.y44_c00187{bottom:338.854500px;}
.y43_c00187{bottom:339.418500px;}
.y42_c00187{bottom:339.664500px;}
.y41_c00187{bottom:356.757000px;}
.y40_c00187{bottom:371.139000px;}
.y3f_c00187{bottom:372.076500px;}
.y3e_c00187{bottom:372.265500px;}
.y3d_c00187{bottom:373.060500px;}
.y3c_c00187{bottom:373.582500px;}
.y3b_c00187{bottom:373.885500px;}
.y3a_c00187{bottom:375.037500px;}
.y39_c00187{bottom:388.617000px;}
.y38_c00187{bottom:389.157000px;}
.y37_c00187{bottom:389.710500px;}
.y36_c00187{bottom:390.231000px;}
.y35_c00187{bottom:390.951000px;}
.y34_c00187{bottom:392.074500px;}
.y33_c00187{bottom:392.316000px;}
.y32_c00187{bottom:405.996000px;}
.y31_c00187{bottom:406.224000px;}
.y30_c00187{bottom:406.450500px;}
.y2f_c00187{bottom:407.313000px;}
.y2e_c00187{bottom:408.037500px;}
.y2d_c00187{bottom:409.057500px;}
.y2c_c00187{bottom:409.371000px;}
.y2b_c00187{bottom:409.545000px;}
.y2a_c00187{bottom:410.136000px;}
.y29_c00187{bottom:422.755500px;}
.y28_c00187{bottom:423.534000px;}
.y27_c00187{bottom:423.975000px;}
.y26_c00187{bottom:424.497000px;}
.y25_c00187{bottom:425.238000px;}
.y24_c00187{bottom:426.421500px;}
.y23_c00187{bottom:426.874500px;}
.y22_c00187{bottom:440.353500px;}
.y21_c00187{bottom:440.802000px;}
.y20_c00187{bottom:441.321000px;}
.y1f_c00187{bottom:441.583500px;}
.y1e_c00187{bottom:442.584000px;}
.y1d_c00187{bottom:442.794000px;}
.y1c_c00187{bottom:443.256000px;}
.y1b_c00187{bottom:443.611500px;}
.y1a_c00187{bottom:455.787000px;}
.y19_c00187{bottom:456.885000px;}
.y18_c00187{bottom:457.464000px;}
.y17_c00187{bottom:457.921500px;}
.y16_c00187{bottom:459.577500px;}
.y15_c00187{bottom:460.626000px;}
.y14_c00187{bottom:475.096500px;}
.y13_c00187{bottom:475.380000px;}
.y12_c00187{bottom:476.158500px;}
.y11_c00187{bottom:476.359500px;}
.y10_c00187{bottom:477.244500px;}
.yf_c00187{bottom:477.573000px;}
.ye_c00187{bottom:478.174500px;}
.yd_c00187{bottom:493.188000px;}
.yc_c00187{bottom:508.636500px;}
.yb_c00187{bottom:509.073000px;}
.ya_c00187{bottom:509.692500px;}
.y9_c00187{bottom:510.153000px;}
.y8_c00187{bottom:510.927000px;}
.y7_c00187{bottom:511.131000px;}
.y6_c00187{bottom:511.504500px;}
.y5_c00187{bottom:511.653000px;}
.y4_c00187{bottom:526.950000px;}
.y3_c00187{bottom:544.378500px;}
.y2_c00187{bottom:561.660000px;}
.y1_c00187{bottom:578.173500px;}
.he_c00187{height:57.750000px;}
.hd_c00187{height:58.800000px;}
.h8_c00187{height:59.850000px;}
.h4_c00187{height:60.900000px;}
.h5_c00187{height:61.950000px;}
.hc_c00187{height:63.000000px;}
.h2_c00187{height:65.100000px;}
.h9_c00187{height:66.150000px;}
.hb_c00187{height:67.200000px;}
.ha_c00187{height:68.250000px;}
.h7_c00187{height:69.300000px;}
.h3_c00187{height:70.350000px;}
.h6_c00187{height:73.500000px;}
.h1_c00187{height:623.250000px;}
.h0_c00187{height:623.400000px;}
.w1_c00187{width:383.250000px;}
.w0_c00187{width:383.400000px;}
.x0_c00187{left:0.000000px;}
.x76_c00187{left:41.748000px;}
.x71_c00187{left:42.789000px;}
.x67_c00187{left:44.361000px;}
.x59_c00187{left:45.499500px;}
.x47_c00187{left:46.711500px;}
.x2d_c00187{left:48.973500px;}
.x18_c00187{left:51.424500px;}
.x2_c00187{left:52.650000px;}
.x6a_c00187{left:54.586500px;}
.x41_c00187{left:57.612000px;}
.x22_c00187{left:60.580500px;}
.x7b_c00187{left:62.644500px;}
.x19_c00187{left:63.849000px;}
.x3e_c00187{left:67.603500px;}
.x62_c00187{left:70.318500px;}
.x4d_c00187{left:71.425500px;}
.x11_c00187{left:73.710000px;}
.x2e_c00187{left:76.302000px;}
.x32_c00187{left:80.007000px;}
.x48_c00187{left:82.081500px;}
.x3_c00187{left:84.240000px;}
.xa_c00187{left:85.320000px;}
.x37_c00187{left:88.666500px;}
.x5a_c00187{left:90.874500px;}
.x1a_c00187{left:94.939500px;}
.x74_c00187{left:96.123000px;}
.x12_c00187{left:97.200000px;}
.x38_c00187{left:100.257000px;}
.x23_c00187{left:103.521000px;}
.xb_c00187{left:105.300000px;}
.x5f_c00187{left:106.762500px;}
.x77_c00187{left:108.423000px;}
.x72_c00187{left:109.992000px;}
.x1b_c00187{left:111.912000px;}
.x49_c00187{left:118.801500px;}
.x39_c00187{left:121.119000px;}
.x7c_c00187{left:123.664500px;}
.x5b_c00187{left:125.167500px;}
.x24_c00187{left:127.017000px;}
.x4_c00187{left:128.250000px;}
.x60_c00187{left:130.045500px;}
.x54_c00187{left:132.691500px;}
.x7e_c00187{left:134.194500px;}
.x13_c00187{left:136.890000px;}
.x42_c00187{left:139.945500px;}
.x68_c00187{left:141.553500px;}
.x63_c00187{left:143.482500px;}
.xc_c00187{left:145.260000px;}
.x5c_c00187{left:147.034500px;}
.x7f_c00187{left:153.904500px;}
.x5_c00187{left:154.980000px;}
.x6f_c00187{left:156.604500px;}
.x78_c00187{left:157.822500px;}
.x33_c00187{left:158.922000px;}
.x43_c00187{left:161.541000px;}
.x14_c00187{left:162.810000px;}
.x4e_c00187{left:164.347500px;}
.x51_c00187{left:167.521500px;}
.x81_c00187{left:169.732500px;}
.x56_c00187{left:175.048500px;}
.xd_c00187{left:176.310000px;}
.x4a_c00187{left:180.631500px;}
.x1_c00187{left:185.490000px;}
.x52_c00187{left:187.228500px;}
.x3a_c00187{left:189.099000px;}
.x25_c00187{left:190.195500px;}
.x29_c00187{left:192.825000px;}
.x4b_c00187{left:196.291500px;}
.x44_c00187{left:198.808500px;}
.x6d_c00187{left:201.543000px;}
.x26_c00187{left:204.507000px;}
.x15_c00187{left:208.440000px;}
.x1f_c00187{left:210.060000px;}
.x1c_c00187{left:214.773000px;}
.x2a_c00187{left:216.888000px;}
.x57_c00187{left:218.506500px;}
.x5d_c00187{left:221.185500px;}
.x6e_c00187{left:224.286000px;}
.x2f_c00187{left:225.303000px;}
.x6_c00187{left:229.500000px;}
.x20_c00187{left:230.580000px;}
.x7d_c00187{left:231.934500px;}
.x69_c00187{left:233.620500px;}
.x6b_c00187{left:235.285500px;}
.x3b_c00187{left:237.435000px;}
.x80_c00187{left:241.114500px;}
.x34_c00187{left:243.099000px;}
.x5e_c00187{left:246.021000px;}
.x2b_c00187{left:247.351500px;}
.x3f_c00187{left:249.388500px;}
.x64_c00187{left:251.202000px;}
.x7_c00187{left:253.260000px;}
.x45_c00187{left:255.580500px;}
.x27_c00187{left:260.124000px;}
.x79_c00187{left:261.565500px;}
.x21_c00187{left:263.250000px;}
.x30_c00187{left:265.255500px;}
.x1d_c00187{left:266.397000px;}
.xe_c00187{left:269.460000px;}
.x35_c00187{left:272.523000px;}
.x70_c00187{left:274.324500px;}
.x53_c00187{left:275.571000px;}
.x82_c00187{left:276.864000px;}
.x4c_c00187{left:278.101500px;}
.x65_c00187{left:279.195000px;}
.x28_c00187{left:280.366500px;}
.x61_c00187{left:283.132500px;}
.x55_c00187{left:284.217000px;}
.x83_c00187{left:285.934500px;}
.x7a_c00187{left:289.054500px;}
.x16_c00187{left:292.950000px;}
.x3c_c00187{left:294.900000px;}
.xf_c00187{left:296.190000px;}
.x8_c00187{left:298.620000px;}
.x31_c00187{left:299.809500px;}
.x6c_c00187{left:301.723500px;}
.x1e_c00187{left:302.790000px;}
.x73_c00187{left:303.910500px;}
.x2c_c00187{left:305.125500px;}
.x3d_c00187{left:310.048500px;}
.x10_c00187{left:312.120000px;}
.x58_c00187{left:313.341000px;}
.x4f_c00187{left:316.623000px;}
.x75_c00187{left:319.143000px;}
.x66_c00187{left:321.951000px;}
.x36_c00187{left:324.429000px;}
.x17_c00187{left:329.670000px;}
.x50_c00187{left:332.562000px;}
.x40_c00187{left:333.565500px;}
.x46_c00187{left:335.971500px;}
.x9_c00187{left:340.740000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:0.000000pt;}
.fsc_c00187{font-size:51.333333pt;}
.fsb_c00187{font-size:52.266667pt;}
.fs6_c00187{font-size:53.200000pt;}
.fs2_c00187{font-size:54.133333pt;}
.fs3_c00187{font-size:55.066667pt;}
.fsa_c00187{font-size:56.000000pt;}
.fs0_c00187{font-size:57.866667pt;}
.fs7_c00187{font-size:58.800000pt;}
.fs9_c00187{font-size:59.733333pt;}
.fs8_c00187{font-size:60.666667pt;}
.fs5_c00187{font-size:61.600000pt;}
.fs1_c00187{font-size:62.533333pt;}
.fs4_c00187{font-size:65.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.yb7_c00187{bottom:26.526667pt;}
.yb6_c00187{bottom:40.882667pt;}
.yb5_c00187{bottom:41.472000pt;}
.yb4_c00187{bottom:41.733333pt;}
.yb3_c00187{bottom:42.440000pt;}
.yb2_c00187{bottom:42.805333pt;}
.yb1_c00187{bottom:43.592000pt;}
.yb0_c00187{bottom:43.854667pt;}
.yaf_c00187{bottom:44.405333pt;}
.yae_c00187{bottom:56.929333pt;}
.yad_c00187{bottom:71.942667pt;}
.yac_c00187{bottom:86.696000pt;}
.yab_c00187{bottom:86.846667pt;}
.yaa_c00187{bottom:87.090667pt;}
.ya9_c00187{bottom:87.729333pt;}
.ya8_c00187{bottom:88.012000pt;}
.ya7_c00187{bottom:88.450667pt;}
.ya6_c00187{bottom:89.044000pt;}
.ya5_c00187{bottom:102.257333pt;}
.ya4_c00187{bottom:115.780000pt;}
.ya3_c00187{bottom:116.214667pt;}
.ya2_c00187{bottom:116.364000pt;}
.ya1_c00187{bottom:116.865333pt;}
.ya0_c00187{bottom:117.153333pt;}
.y9f_c00187{bottom:117.848000pt;}
.y9e_c00187{bottom:118.161333pt;}
.y9d_c00187{bottom:118.305333pt;}
.y9c_c00187{bottom:118.564000pt;}
.y9b_c00187{bottom:132.469333pt;}
.y9a_c00187{bottom:147.540000pt;}
.y99_c00187{bottom:147.990667pt;}
.y98_c00187{bottom:148.244000pt;}
.y97_c00187{bottom:148.466667pt;}
.y96_c00187{bottom:149.070667pt;}
.y95_c00187{bottom:149.464000pt;}
.y94_c00187{bottom:149.557333pt;}
.y93_c00187{bottom:150.002667pt;}
.y92_c00187{bottom:161.810667pt;}
.y91_c00187{bottom:162.129333pt;}
.y90_c00187{bottom:162.502667pt;}
.y8f_c00187{bottom:163.192000pt;}
.y8e_c00187{bottom:163.496000pt;}
.y8d_c00187{bottom:164.341333pt;}
.y8c_c00187{bottom:164.673333pt;}
.y8b_c00187{bottom:166.082667pt;}
.y8a_c00187{bottom:177.812000pt;}
.y89_c00187{bottom:178.366667pt;}
.y88_c00187{bottom:178.904000pt;}
.y87_c00187{bottom:179.260000pt;}
.y86_c00187{bottom:179.513333pt;}
.y85_c00187{bottom:179.885333pt;}
.y84_c00187{bottom:180.722667pt;}
.y83_c00187{bottom:192.838667pt;}
.y82_c00187{bottom:193.598667pt;}
.y81_c00187{bottom:194.096000pt;}
.y80_c00187{bottom:194.561333pt;}
.y7f_c00187{bottom:195.652000pt;}
.y7e_c00187{bottom:196.010667pt;}
.y7d_c00187{bottom:196.654667pt;}
.y7c_c00187{bottom:197.764000pt;}
.y7b_c00187{bottom:209.088000pt;}
.y7a_c00187{bottom:209.612000pt;}
.y79_c00187{bottom:209.825333pt;}
.y78_c00187{bottom:210.612000pt;}
.y77_c00187{bottom:210.986667pt;}
.y76_c00187{bottom:211.222667pt;}
.y75_c00187{bottom:211.894667pt;}
.y74_c00187{bottom:212.161333pt;}
.y73_c00187{bottom:224.220000pt;}
.y72_c00187{bottom:224.368000pt;}
.y71_c00187{bottom:224.569333pt;}
.y70_c00187{bottom:224.993333pt;}
.y6f_c00187{bottom:225.700000pt;}
.y6e_c00187{bottom:226.109333pt;}
.y6d_c00187{bottom:226.474667pt;}
.y6c_c00187{bottom:226.764000pt;}
.y6b_c00187{bottom:227.524000pt;}
.y6a_c00187{bottom:238.536000pt;}
.y69_c00187{bottom:239.497333pt;}
.y68_c00187{bottom:239.917333pt;}
.y67_c00187{bottom:240.697333pt;}
.y66_c00187{bottom:241.170667pt;}
.y65_c00187{bottom:241.540000pt;}
.y64_c00187{bottom:242.118667pt;}
.y63_c00187{bottom:242.885333pt;}
.y62_c00187{bottom:253.489333pt;}
.y61_c00187{bottom:254.289333pt;}
.y60_c00187{bottom:254.922667pt;}
.y5f_c00187{bottom:255.580000pt;}
.y5e_c00187{bottom:256.114667pt;}
.y5d_c00187{bottom:256.788000pt;}
.y5c_c00187{bottom:257.526667pt;}
.y5b_c00187{bottom:269.101333pt;}
.y5a_c00187{bottom:269.416000pt;}
.y59_c00187{bottom:270.284000pt;}
.y58_c00187{bottom:270.838667pt;}
.y57_c00187{bottom:271.166667pt;}
.y56_c00187{bottom:271.496000pt;}
.y55_c00187{bottom:271.684000pt;}
.y54_c00187{bottom:271.817333pt;}
.y53_c00187{bottom:272.164000pt;}
.y52_c00187{bottom:284.085333pt;}
.y51_c00187{bottom:284.368000pt;}
.y50_c00187{bottom:284.605333pt;}
.y4f_c00187{bottom:285.310667pt;}
.y4e_c00187{bottom:285.521333pt;}
.y4d_c00187{bottom:285.762667pt;}
.y4c_c00187{bottom:286.232000pt;}
.y4b_c00187{bottom:286.805333pt;}
.y4a_c00187{bottom:299.385333pt;}
.y49_c00187{bottom:299.526667pt;}
.y48_c00187{bottom:299.721333pt;}
.y47_c00187{bottom:299.997333pt;}
.y46_c00187{bottom:300.657333pt;}
.y45_c00187{bottom:300.880000pt;}
.y44_c00187{bottom:301.204000pt;}
.y43_c00187{bottom:301.705333pt;}
.y42_c00187{bottom:301.924000pt;}
.y41_c00187{bottom:317.117333pt;}
.y40_c00187{bottom:329.901333pt;}
.y3f_c00187{bottom:330.734667pt;}
.y3e_c00187{bottom:330.902667pt;}
.y3d_c00187{bottom:331.609333pt;}
.y3c_c00187{bottom:332.073333pt;}
.y3b_c00187{bottom:332.342667pt;}
.y3a_c00187{bottom:333.366667pt;}
.y39_c00187{bottom:345.437333pt;}
.y38_c00187{bottom:345.917333pt;}
.y37_c00187{bottom:346.409333pt;}
.y36_c00187{bottom:346.872000pt;}
.y35_c00187{bottom:347.512000pt;}
.y34_c00187{bottom:348.510667pt;}
.y33_c00187{bottom:348.725333pt;}
.y32_c00187{bottom:360.885333pt;}
.y31_c00187{bottom:361.088000pt;}
.y30_c00187{bottom:361.289333pt;}
.y2f_c00187{bottom:362.056000pt;}
.y2e_c00187{bottom:362.700000pt;}
.y2d_c00187{bottom:363.606667pt;}
.y2c_c00187{bottom:363.885333pt;}
.y2b_c00187{bottom:364.040000pt;}
.y2a_c00187{bottom:364.565333pt;}
.y29_c00187{bottom:375.782667pt;}
.y28_c00187{bottom:376.474667pt;}
.y27_c00187{bottom:376.866667pt;}
.y26_c00187{bottom:377.330667pt;}
.y25_c00187{bottom:377.989333pt;}
.y24_c00187{bottom:379.041333pt;}
.y23_c00187{bottom:379.444000pt;}
.y22_c00187{bottom:391.425333pt;}
.y21_c00187{bottom:391.824000pt;}
.y20_c00187{bottom:392.285333pt;}
.y1f_c00187{bottom:392.518667pt;}
.y1e_c00187{bottom:393.408000pt;}
.y1d_c00187{bottom:393.594667pt;}
.y1c_c00187{bottom:394.005333pt;}
.y1b_c00187{bottom:394.321333pt;}
.y1a_c00187{bottom:405.144000pt;}
.y19_c00187{bottom:406.120000pt;}
.y18_c00187{bottom:406.634667pt;}
.y17_c00187{bottom:407.041333pt;}
.y16_c00187{bottom:408.513333pt;}
.y15_c00187{bottom:409.445333pt;}
.y14_c00187{bottom:422.308000pt;}
.y13_c00187{bottom:422.560000pt;}
.y12_c00187{bottom:423.252000pt;}
.y11_c00187{bottom:423.430667pt;}
.y10_c00187{bottom:424.217333pt;}
.yf_c00187{bottom:424.509333pt;}
.ye_c00187{bottom:425.044000pt;}
.yd_c00187{bottom:438.389333pt;}
.yc_c00187{bottom:452.121333pt;}
.yb_c00187{bottom:452.509333pt;}
.ya_c00187{bottom:453.060000pt;}
.y9_c00187{bottom:453.469333pt;}
.y8_c00187{bottom:454.157333pt;}
.y7_c00187{bottom:454.338667pt;}
.y6_c00187{bottom:454.670667pt;}
.y5_c00187{bottom:454.802667pt;}
.y4_c00187{bottom:468.400000pt;}
.y3_c00187{bottom:483.892000pt;}
.y2_c00187{bottom:499.253333pt;}
.y1_c00187{bottom:513.932000pt;}
.he_c00187{height:51.333333pt;}
.hd_c00187{height:52.266667pt;}
.h8_c00187{height:53.200000pt;}
.h4_c00187{height:54.133333pt;}
.h5_c00187{height:55.066667pt;}
.hc_c00187{height:56.000000pt;}
.h2_c00187{height:57.866667pt;}
.h9_c00187{height:58.800000pt;}
.hb_c00187{height:59.733333pt;}
.ha_c00187{height:60.666667pt;}
.h7_c00187{height:61.600000pt;}
.h3_c00187{height:62.533333pt;}
.h6_c00187{height:65.333333pt;}
.h1_c00187{height:554.000000pt;}
.h0_c00187{height:554.133333pt;}
.w1_c00187{width:340.666667pt;}
.w0_c00187{width:340.800000pt;}
.x0_c00187{left:0.000000pt;}
.x76_c00187{left:37.109333pt;}
.x71_c00187{left:38.034667pt;}
.x67_c00187{left:39.432000pt;}
.x59_c00187{left:40.444000pt;}
.x47_c00187{left:41.521333pt;}
.x2d_c00187{left:43.532000pt;}
.x18_c00187{left:45.710667pt;}
.x2_c00187{left:46.800000pt;}
.x6a_c00187{left:48.521333pt;}
.x41_c00187{left:51.210667pt;}
.x22_c00187{left:53.849333pt;}
.x7b_c00187{left:55.684000pt;}
.x19_c00187{left:56.754667pt;}
.x3e_c00187{left:60.092000pt;}
.x62_c00187{left:62.505333pt;}
.x4d_c00187{left:63.489333pt;}
.x11_c00187{left:65.520000pt;}
.x2e_c00187{left:67.824000pt;}
.x32_c00187{left:71.117333pt;}
.x48_c00187{left:72.961333pt;}
.x3_c00187{left:74.880000pt;}
.xa_c00187{left:75.840000pt;}
.x37_c00187{left:78.814667pt;}
.x5a_c00187{left:80.777333pt;}
.x1a_c00187{left:84.390667pt;}
.x74_c00187{left:85.442667pt;}
.x12_c00187{left:86.400000pt;}
.x38_c00187{left:89.117333pt;}
.x23_c00187{left:92.018667pt;}
.xb_c00187{left:93.600000pt;}
.x5f_c00187{left:94.900000pt;}
.x77_c00187{left:96.376000pt;}
.x72_c00187{left:97.770667pt;}
.x1b_c00187{left:99.477333pt;}
.x49_c00187{left:105.601333pt;}
.x39_c00187{left:107.661333pt;}
.x7c_c00187{left:109.924000pt;}
.x5b_c00187{left:111.260000pt;}
.x24_c00187{left:112.904000pt;}
.x4_c00187{left:114.000000pt;}
.x60_c00187{left:115.596000pt;}
.x54_c00187{left:117.948000pt;}
.x7e_c00187{left:119.284000pt;}
.x13_c00187{left:121.680000pt;}
.x42_c00187{left:124.396000pt;}
.x68_c00187{left:125.825333pt;}
.x63_c00187{left:127.540000pt;}
.xc_c00187{left:129.120000pt;}
.x5c_c00187{left:130.697333pt;}
.x7f_c00187{left:136.804000pt;}
.x5_c00187{left:137.760000pt;}
.x6f_c00187{left:139.204000pt;}
.x78_c00187{left:140.286667pt;}
.x33_c00187{left:141.264000pt;}
.x43_c00187{left:143.592000pt;}
.x14_c00187{left:144.720000pt;}
.x4e_c00187{left:146.086667pt;}
.x51_c00187{left:148.908000pt;}
.x81_c00187{left:150.873333pt;}
.x56_c00187{left:155.598667pt;}
.xd_c00187{left:156.720000pt;}
.x4a_c00187{left:160.561333pt;}
.x1_c00187{left:164.880000pt;}
.x52_c00187{left:166.425333pt;}
.x3a_c00187{left:168.088000pt;}
.x25_c00187{left:169.062667pt;}
.x29_c00187{left:171.400000pt;}
.x4b_c00187{left:174.481333pt;}
.x44_c00187{left:176.718667pt;}
.x6d_c00187{left:179.149333pt;}
.x26_c00187{left:181.784000pt;}
.x15_c00187{left:185.280000pt;}
.x1f_c00187{left:186.720000pt;}
.x1c_c00187{left:190.909333pt;}
.x2a_c00187{left:192.789333pt;}
.x57_c00187{left:194.228000pt;}
.x5d_c00187{left:196.609333pt;}
.x6e_c00187{left:199.365333pt;}
.x2f_c00187{left:200.269333pt;}
.x6_c00187{left:204.000000pt;}
.x20_c00187{left:204.960000pt;}
.x7d_c00187{left:206.164000pt;}
.x69_c00187{left:207.662667pt;}
.x6b_c00187{left:209.142667pt;}
.x3b_c00187{left:211.053333pt;}
.x80_c00187{left:214.324000pt;}
.x34_c00187{left:216.088000pt;}
.x5e_c00187{left:218.685333pt;}
.x2b_c00187{left:219.868000pt;}
.x3f_c00187{left:221.678667pt;}
.x64_c00187{left:223.290667pt;}
.x7_c00187{left:225.120000pt;}
.x45_c00187{left:227.182667pt;}
.x27_c00187{left:231.221333pt;}
.x79_c00187{left:232.502667pt;}
.x21_c00187{left:234.000000pt;}
.x30_c00187{left:235.782667pt;}
.x1d_c00187{left:236.797333pt;}
.xe_c00187{left:239.520000pt;}
.x35_c00187{left:242.242667pt;}
.x70_c00187{left:243.844000pt;}
.x53_c00187{left:244.952000pt;}
.x82_c00187{left:246.101333pt;}
.x4c_c00187{left:247.201333pt;}
.x65_c00187{left:248.173333pt;}
.x28_c00187{left:249.214667pt;}
.x61_c00187{left:251.673333pt;}
.x55_c00187{left:252.637333pt;}
.x83_c00187{left:254.164000pt;}
.x7a_c00187{left:256.937333pt;}
.x16_c00187{left:260.400000pt;}
.x3c_c00187{left:262.133333pt;}
.xf_c00187{left:263.280000pt;}
.x8_c00187{left:265.440000pt;}
.x31_c00187{left:266.497333pt;}
.x6c_c00187{left:268.198667pt;}
.x1e_c00187{left:269.146667pt;}
.x73_c00187{left:270.142667pt;}
.x2c_c00187{left:271.222667pt;}
.x3d_c00187{left:275.598667pt;}
.x10_c00187{left:277.440000pt;}
.x58_c00187{left:278.525333pt;}
.x4f_c00187{left:281.442667pt;}
.x75_c00187{left:283.682667pt;}
.x66_c00187{left:286.178667pt;}
.x36_c00187{left:288.381333pt;}
.x17_c00187{left:293.040000pt;}
.x50_c00187{left:295.610667pt;}
.x40_c00187{left:296.502667pt;}
.x46_c00187{left:298.641333pt;}
.x9_c00187{left:302.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00188 {
    display:none;
  }
  .loading-indicator_c00188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00188 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00188 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00188" -> "#page-container .classname_c00188")
 */
.pf_c00188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00188 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00188 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00188 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00188 {overflow:visible;}
  }
}
.c_c00188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00188 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00188:after { /* webkit #35443 */
  content: '';
}
.t_c00188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00188 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00188 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00188 { /* info for Javascript */
  display:none;
}
.l_c00188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00188:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00188 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00188.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.013105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013105,0.000000,0.000000,0.250000,0,0);}
.m9e_c00188{transform:matrix(0.016940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016940,0.000000,0.000000,0.250000,0,0);}
.m7d_c00188{transform:matrix(0.079306,-0.000793,0.002500,0.249988,0,0);-ms-transform:matrix(0.079306,-0.000793,0.002500,0.249988,0,0);-webkit-transform:matrix(0.079306,-0.000793,0.002500,0.249988,0,0);}
.m1_c00188{transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);}
.mea_c00188{transform:matrix(0.132470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132470,0.000000,0.000000,0.250000,0,0);}
.m94_c00188{transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);}
.m86_c00188{transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145655,0.000000,0.000000,0.250000,0,0);}
.m96_c00188{transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);}
.m85_c00188{transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);}
.m21_c00188{transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);}
.mc2_c00188{transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151430,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.mc8_c00188{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.ma8_c00188{transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);}
.me9_c00188{transform:matrix(0.152820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152820,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);}
.mef_c00188{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.m6d_c00188{transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);}
.m8f_c00188{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);}
.ma1_c00188{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00188{transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);}
.mb6_c00188{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m79_c00188{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.mcd_c00188{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);}
.ma2_c00188{transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);}
.m98_c00188{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.ma4_c00188{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m19_c00188{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m9b_c00188{transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);}
.m22_c00188{transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m93_c00188{transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);}
.ma7_c00188{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.mf1_c00188{transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.ma0_c00188{transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);}
.me2_c00188{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.mac_c00188{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m8c_c00188{transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);}
.mde_c00188{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.ma5_c00188{transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.mf3_c00188{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m23_c00188{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m95_c00188{transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);}
.maf_c00188{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.mbc_c00188{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.mf0_c00188{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m8e_c00188{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.mc3_c00188{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.me0_c00188{transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);}
.mdb_c00188{transform:matrix(0.176420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176420,0.000000,0.000000,0.250000,0,0);}
.me4_c00188{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m46_c00188{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.m49_c00188{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m89_c00188{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m91_c00188{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m76_c00188{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.mb1_c00188{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.md5_c00188{transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);}
.ma3_c00188{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.mb8_c00188{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m17_c00188{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);}
.mc5_c00188{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m5a_c00188{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.mbd_c00188{transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181745,0.000000,0.000000,0.250000,0,0);}
.mc1_c00188{transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181960,0.000000,0.000000,0.250000,0,0);}
.mee_c00188{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.maa_c00188{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);}
.m6f_c00188{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.md4_c00188{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.mbe_c00188{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);}
.me6_c00188{transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00188{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m72_c00188{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.m5b_c00188{transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);}
.mc0_c00188{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.187095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187095,0.000000,0.000000,0.250000,0,0);}
.m9c_c00188{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.m87_c00188{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m8a_c00188{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);}
.me5_c00188{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m70_c00188{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.ma9_c00188{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.mba_c00188{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m88_c00188{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.mbb_c00188{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m9f_c00188{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m7f_c00188{transform:matrix(0.191260,-0.001913,0.002500,0.249988,0,0);-ms-transform:matrix(0.191260,-0.001913,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191260,-0.001913,0.002500,0.249988,0,0);}
.mbf_c00188{transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191795,0.000000,0.000000,0.250000,0,0);}
.m8b_c00188{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.med_c00188{transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);}
.mcf_c00188{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m73_c00188{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.me8_c00188{transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);}
.m65_c00188{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.m6a_c00188{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00188{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.mab_c00188{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m92_c00188{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.mc4_c00188{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.mb2_c00188{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00188{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.mc6_c00188{transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);}
.me3_c00188{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.mce_c00188{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);}
.m63_c00188{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00188{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m97_c00188{transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);}
.mae_c00188{transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);}
.m90_c00188{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.m6b_c00188{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m74_c00188{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.md3_c00188{transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.mdc_c00188{transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);}
.mb4_c00188{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m7c_c00188{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m33_c00188{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m83_c00188{transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205190,-0.002052,0.002500,0.249988,0,0);}
.m5f_c00188{transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m7e_c00188{transform:matrix(0.207115,-0.002071,0.002500,0.249988,0,0);-ms-transform:matrix(0.207115,-0.002071,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207115,-0.002071,0.002500,0.249988,0,0);}
.mad_c00188{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m9a_c00188{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.mdd_c00188{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m4a_c00188{transform:matrix(0.209030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209030,0.000000,0.000000,0.250000,0,0);}
.m71_c00188{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m5c_c00188{transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);}
.m6e_c00188{transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);}
.mdf_c00188{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m7a_c00188{transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m61_c00188{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.md7_c00188{transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);}
.mb7_c00188{transform:matrix(0.213380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213380,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m99_c00188{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.mda_c00188{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.md9_c00188{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.me7_c00188{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.me1_c00188{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.md1_c00188{transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220790,0.000000,0.000000,0.250000,0,0);}
.m7b_c00188{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m82_c00188{transform:matrix(0.222529,-0.002225,0.002500,0.249988,0,0);-ms-transform:matrix(0.222529,-0.002225,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222529,-0.002225,0.002500,0.249988,0,0);}
.m81_c00188{transform:matrix(0.223074,-0.002231,0.002500,0.249988,0,0);-ms-transform:matrix(0.223074,-0.002231,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223074,-0.002231,0.002500,0.249988,0,0);}
.m60_c00188{transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);}
.md8_c00188{transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);}
.mcc_c00188{transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);}
.m80_c00188{transform:matrix(0.224354,-0.002244,0.002500,0.249988,0,0);-ms-transform:matrix(0.224354,-0.002244,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224354,-0.002244,0.002500,0.249988,0,0);}
.m3b_c00188{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.md6_c00188{transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);}
.m84_c00188{transform:matrix(0.225339,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225339,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225339,-0.002253,0.002500,0.249988,0,0);}
.m77_c00188{transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226255,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);}
.mb9_c00188{transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);}
.mb3_c00188{transform:matrix(0.227505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227505,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);}
.m48_c00188{transform:matrix(0.229515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229515,0.000000,0.000000,0.250000,0,0);}
.m9d_c00188{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m78_c00188{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.mca_c00188{transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);}
.m64_c00188{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m75_c00188{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.md0_c00188{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);}
.mec_c00188{transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);}
.m66_c00188{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.mcb_c00188{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.m62_c00188{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m69_c00188{transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);}
.m6c_c00188{transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);}
.meb_c00188{transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);}
.md2_c00188{transform:matrix(0.322020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322020,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);}
.ma6_c00188{transform:matrix(0.377370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377370,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.669405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669405,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:0.000000px;}
.fc0_c00188{color:transparent;}
.fsc_c00188{font-size:50.400000px;}
.fs9_c00188{font-size:55.650000px;}
.fs6_c00188{font-size:57.750000px;}
.fs8_c00188{font-size:58.800000px;}
.fs2_c00188{font-size:59.850000px;}
.fse_c00188{font-size:60.900000px;}
.fsa_c00188{font-size:60.903045px;}
.fs5_c00188{font-size:61.950000px;}
.fsd_c00188{font-size:64.050000px;}
.fsb_c00188{font-size:66.150000px;}
.fs7_c00188{font-size:68.250000px;}
.fs3_c00188{font-size:69.300000px;}
.fs1_c00188{font-size:70.350000px;}
.fs4_c00188{font-size:71.400000px;}
.fs0_c00188{font-size:116.550000px;}
.y0_c00188{bottom:0.000000px;}
.ya1_c00188{bottom:26.734500px;}
.ya2_c00188{bottom:27.118500px;}
.ya3_c00188{bottom:27.643500px;}
.ya4_c00188{bottom:27.939000px;}
.ya5_c00188{bottom:29.094000px;}
.ya6_c00188{bottom:29.737500px;}
.ya7_c00188{bottom:30.049500px;}
.ya8_c00188{bottom:30.883500px;}
.ya9_c00188{bottom:31.260000px;}
.yaa_c00188{bottom:31.785000px;}
.ya0_c00188{bottom:48.450000px;}
.y9f_c00188{bottom:66.783000px;}
.y9e_c00188{bottom:83.763000px;}
.y9d_c00188{bottom:100.378500px;}
.y97_c00188{bottom:115.831500px;}
.y98_c00188{bottom:116.470500px;}
.y99_c00188{bottom:116.761500px;}
.y9a_c00188{bottom:117.409500px;}
.y9b_c00188{bottom:118.477500px;}
.y9c_c00188{bottom:118.764000px;}
.y96_c00188{bottom:135.721500px;}
.y95_c00188{bottom:150.391500px;}
.y94_c00188{bottom:167.922000px;}
.y93_c00188{bottom:185.461500px;}
.y92_c00188{bottom:202.657500px;}
.y91_c00188{bottom:219.711000px;}
.y90_c00188{bottom:236.920500px;}
.y86_c00188{bottom:252.183000px;}
.y87_c00188{bottom:252.444000px;}
.y88_c00188{bottom:252.768000px;}
.y89_c00188{bottom:252.972000px;}
.y8a_c00188{bottom:253.503000px;}
.y8b_c00188{bottom:253.846500px;}
.y8c_c00188{bottom:254.310000px;}
.y8d_c00188{bottom:254.500500px;}
.y8e_c00188{bottom:255.003000px;}
.y8f_c00188{bottom:255.256500px;}
.y85_c00188{bottom:271.627500px;}
.y7d_c00188{bottom:287.281500px;}
.y7e_c00188{bottom:287.394645px;}
.y7f_c00188{bottom:287.889210px;}
.y80_c00188{bottom:288.145650px;}
.y81_c00188{bottom:288.274920px;}
.y82_c00188{bottom:289.042215px;}
.y83_c00188{bottom:289.579545px;}
.y84_c00188{bottom:289.814460px;}
.y74_c00188{bottom:304.836000px;}
.y75_c00188{bottom:305.238000px;}
.y76_c00188{bottom:305.868000px;}
.y77_c00188{bottom:306.138000px;}
.y78_c00188{bottom:306.697500px;}
.y79_c00188{bottom:306.832500px;}
.y7a_c00188{bottom:307.045500px;}
.y7b_c00188{bottom:307.441500px;}
.y7c_c00188{bottom:307.725000px;}
.y6b_c00188{bottom:321.306000px;}
.y6c_c00188{bottom:322.264500px;}
.y6d_c00188{bottom:322.837500px;}
.y6e_c00188{bottom:323.133000px;}
.y6f_c00188{bottom:324.013500px;}
.y70_c00188{bottom:324.345000px;}
.y71_c00188{bottom:324.993000px;}
.y72_c00188{bottom:325.675500px;}
.y73_c00188{bottom:326.122500px;}
.y63_c00188{bottom:337.774500px;}
.y64_c00188{bottom:338.344500px;}
.y65_c00188{bottom:338.620500px;}
.y66_c00188{bottom:339.145500px;}
.y67_c00188{bottom:340.449000px;}
.y68_c00188{bottom:341.727000px;}
.y69_c00188{bottom:342.681000px;}
.y6a_c00188{bottom:343.120500px;}
.y5c_c00188{bottom:353.163000px;}
.y5d_c00188{bottom:353.836500px;}
.y5e_c00188{bottom:354.394500px;}
.y5f_c00188{bottom:354.751500px;}
.y60_c00188{bottom:356.080500px;}
.y61_c00188{bottom:357.501000px;}
.y62_c00188{bottom:357.922500px;}
.y55_c00188{bottom:370.711500px;}
.y56_c00188{bottom:371.493000px;}
.y57_c00188{bottom:371.791500px;}
.y58_c00188{bottom:372.690000px;}
.y59_c00188{bottom:374.032500px;}
.y5a_c00188{bottom:374.275500px;}
.y5b_c00188{bottom:374.661000px;}
.y4c_c00188{bottom:387.990000px;}
.y4d_c00188{bottom:388.900500px;}
.y4e_c00188{bottom:389.113500px;}
.y4f_c00188{bottom:390.037500px;}
.y50_c00188{bottom:390.736500px;}
.y51_c00188{bottom:391.048500px;}
.y52_c00188{bottom:391.627500px;}
.y53_c00188{bottom:391.938000px;}
.y54_c00188{bottom:392.569500px;}
.y46_c00188{bottom:404.463000px;}
.y47_c00188{bottom:404.940000px;}
.y48_c00188{bottom:406.899000px;}
.y49_c00188{bottom:408.001500px;}
.y4a_c00188{bottom:408.294000px;}
.y4b_c00188{bottom:409.909500px;}
.y3d_c00188{bottom:422.011500px;}
.y3e_c00188{bottom:422.368500px;}
.y3f_c00188{bottom:422.788500px;}
.y40_c00188{bottom:423.388500px;}
.y41_c00188{bottom:424.248000px;}
.y42_c00188{bottom:424.947000px;}
.y43_c00188{bottom:425.163000px;}
.y44_c00188{bottom:425.523000px;}
.y45_c00188{bottom:426.550500px;}
.y36_c00188{bottom:437.944500px;}
.y37_c00188{bottom:438.448500px;}
.y38_c00188{bottom:440.230500px;}
.y39_c00188{bottom:441.103500px;}
.y3a_c00188{bottom:442.663500px;}
.y3b_c00188{bottom:443.455500px;}
.y3c_c00188{bottom:443.775000px;}
.y2e_c00188{bottom:455.491500px;}
.y2f_c00188{bottom:455.799000px;}
.y30_c00188{bottom:457.365000px;}
.y31_c00188{bottom:457.759500px;}
.y32_c00188{bottom:459.612000px;}
.y33_c00188{bottom:459.990000px;}
.y34_c00188{bottom:460.399500px;}
.y35_c00188{bottom:460.993500px;}
.y27_c00188{bottom:473.580000px;}
.y28_c00188{bottom:474.094500px;}
.y29_c00188{bottom:474.414000px;}
.y2a_c00188{bottom:474.865500px;}
.y2b_c00188{bottom:475.741500px;}
.y2c_c00188{bottom:477.174000px;}
.y2d_c00188{bottom:478.315500px;}
.y1e_c00188{bottom:490.590000px;}
.y1f_c00188{bottom:491.131500px;}
.y20_c00188{bottom:491.365500px;}
.y21_c00188{bottom:491.871000px;}
.y22_c00188{bottom:492.169500px;}
.y23_c00188{bottom:493.266000px;}
.y24_c00188{bottom:493.615500px;}
.y25_c00188{bottom:493.909500px;}
.y26_c00188{bottom:494.836500px;}
.y18_c00188{bottom:507.871500px;}
.y19_c00188{bottom:508.455000px;}
.y1a_c00188{bottom:509.524500px;}
.y1b_c00188{bottom:511.036500px;}
.y1c_c00188{bottom:511.803000px;}
.y1d_c00188{bottom:512.499000px;}
.y10_c00188{bottom:525.423000px;}
.y11_c00188{bottom:526.600500px;}
.y12_c00188{bottom:527.083500px;}
.y13_c00188{bottom:528.013500px;}
.y14_c00188{bottom:528.520500px;}
.y15_c00188{bottom:528.822000px;}
.y16_c00188{bottom:529.308000px;}
.y17_c00188{bottom:529.951500px;}
.y9_c00188{bottom:543.243000px;}
.ya_c00188{bottom:543.943500px;}
.yb_c00188{bottom:544.944000px;}
.yc_c00188{bottom:545.301000px;}
.yd_c00188{bottom:546.522000px;}
.ye_c00188{bottom:546.757500px;}
.yf_c00188{bottom:547.150500px;}
.y2_c00188{bottom:559.984500px;}
.y3_c00188{bottom:560.611500px;}
.y4_c00188{bottom:560.994000px;}
.y5_c00188{bottom:562.237500px;}
.y6_c00188{bottom:563.347500px;}
.y7_c00188{bottom:564.058500px;}
.y8_c00188{bottom:564.499500px;}
.y1_c00188{bottom:573.892500px;}
.he_c00188{height:50.400000px;}
.hb_c00188{height:55.650000px;}
.h8_c00188{height:57.750000px;}
.ha_c00188{height:58.800000px;}
.h4_c00188{height:59.850000px;}
.h10_c00188{height:60.900000px;}
.hc_c00188{height:60.903045px;}
.h7_c00188{height:61.950000px;}
.hf_c00188{height:64.050000px;}
.hd_c00188{height:66.150000px;}
.h9_c00188{height:68.250000px;}
.h5_c00188{height:69.300000px;}
.h3_c00188{height:70.350000px;}
.h6_c00188{height:71.400000px;}
.h2_c00188{height:116.550000px;}
.h1_c00188{height:623.250000px;}
.h0_c00188{height:623.400000px;}
.w1_c00188{width:383.250000px;}
.w0_c00188{width:383.400000px;}
.x0_c00188{left:0.000000px;}
.x54_c00188{left:25.761000px;}
.x1_c00188{left:34.020000px;}
.x2b_c00188{left:35.698500px;}
.x4d_c00188{left:36.849000px;}
.x6e_c00188{left:38.881500px;}
.x15_c00188{left:42.871500px;}
.x7f_c00188{left:48.055500px;}
.x26_c00188{left:50.205000px;}
.x62_c00188{left:54.271500px;}
.x79_c00188{left:55.353000px;}
.x31_c00188{left:57.349500px;}
.x2c_c00188{left:58.614000px;}
.x36_c00188{left:61.270500px;}
.x7d_c00188{left:63.453000px;}
.x21_c00188{left:65.001000px;}
.x1a_c00188{left:66.531000px;}
.x80_c00188{left:69.412500px;}
.x3_c00188{left:70.863000px;}
.x16_c00188{left:75.280500px;}
.x4e_c00188{left:77.046000px;}
.x5b_c00188{left:78.300000px;}
.x8_c00188{left:80.629500px;}
.x22_c00188{left:83.817000px;}
.x40_c00188{left:85.504500px;}
.x55_c00188{left:86.532000px;}
.x6f_c00188{left:92.341500px;}
.x4_c00188{left:93.358500px;}
.x63_c00188{left:94.501500px;}
.x69_c00188{left:96.391500px;}
.x43_c00188{left:97.975500px;}
.x74_c00188{left:100.173000px;}
.xe_c00188{left:103.530000px;}
.x3b_c00188{left:106.833000px;}
.x46_c00188{left:108.459000px;}
.x1b_c00188{left:110.085000px;}
.x56_c00188{left:112.176000px;}
.x5c_c00188{left:113.400000px;}
.x44_c00188{left:115.788000px;}
.x32_c00188{left:121.152000px;}
.x57_c00188{left:125.103000px;}
.x1c_c00188{left:127.657500px;}
.xf_c00188{left:131.964000px;}
.x17_c00188{left:134.691000px;}
.x75_c00188{left:138.243000px;}
.x2d_c00188{left:139.599000px;}
.x5d_c00188{left:142.290000px;}
.x49_c00188{left:144.072000px;}
.x6a_c00188{left:145.261500px;}
.x9_c00188{left:147.321000px;}
.x76_c00188{left:158.223000px;}
.x41_c00188{left:160.257000px;}
.x23_c00188{left:161.929500px;}
.x37_c00188{left:164.373000px;}
.x2_c00188{left:165.780000px;}
.x4f_c00188{left:166.939500px;}
.x64_c00188{left:169.831500px;}
.xa_c00188{left:171.108000px;}
.x5e_c00188{left:172.260000px;}
.x33_c00188{left:174.850500px;}
.x5f_c00188{left:175.861500px;}
.x47_c00188{left:177.040500px;}
.x2e_c00188{left:179.275500px;}
.x45_c00188{left:182.214000px;}
.x71_c00188{left:183.871500px;}
.x10_c00188{left:186.694500px;}
.x66_c00188{left:189.811500px;}
.x1d_c00188{left:192.169500px;}
.x4a_c00188{left:195.850500px;}
.x72_c00188{left:197.371500px;}
.x58_c00188{left:201.832500px;}
.x6c_c00188{left:203.581500px;}
.x67_c00188{left:206.281500px;}
.x3c_c00188{left:208.275000px;}
.x77_c00188{left:210.333000px;}
.x1e_c00188{left:212.697000px;}
.x4b_c00188{left:215.331000px;}
.x11_c00188{left:216.477000px;}
.x18_c00188{left:218.662500px;}
.x38_c00188{left:222.438000px;}
.x73_c00188{left:225.451500px;}
.x3d_c00188{left:227.800500px;}
.x1f_c00188{left:229.986000px;}
.x5_c00188{left:231.870000px;}
.x12_c00188{left:234.223500px;}
.x50_c00188{left:236.332500px;}
.x39_c00188{left:237.847500px;}
.x27_c00188{left:240.819000px;}
.x42_c00188{left:244.183500px;}
.x24_c00188{left:246.186000px;}
.x2f_c00188{left:250.192500px;}
.xb_c00188{left:252.552000px;}
.x34_c00188{left:254.550000px;}
.x59_c00188{left:255.565500px;}
.x51_c00188{left:257.703000px;}
.x28_c00188{left:259.711500px;}
.x19_c00188{left:261.259500px;}
.x13_c00188{left:262.849500px;}
.x3e_c00188{left:263.980500px;}
.x7a_c00188{left:266.493000px;}
.xc_c00188{left:268.293000px;}
.x6b_c00188{left:270.541500px;}
.x60_c00188{left:272.251500px;}
.x6_c00188{left:273.721500px;}
.x6d_c00188{left:275.671500px;}
.x5a_c00188{left:279.057000px;}
.x29_c00188{left:280.185000px;}
.x3f_c00188{left:283.354500px;}
.x20_c00188{left:284.533500px;}
.x30_c00188{left:286.180500px;}
.x70_c00188{left:289.441500px;}
.x68_c00188{left:292.141500px;}
.x61_c00188{left:293.373000px;}
.xd_c00188{left:294.510000px;}
.x7c_c00188{left:295.923000px;}
.x52_c00188{left:297.357000px;}
.x7_c00188{left:299.625000px;}
.x14_c00188{left:300.684000px;}
.x78_c00188{left:303.213000px;}
.x7b_c00188{left:305.643000px;}
.x2a_c00188{left:309.852000px;}
.x25_c00188{left:313.341000px;}
.x48_c00188{left:317.665500px;}
.x35_c00188{left:318.729000px;}
.x4c_c00188{left:319.887000px;}
.x3a_c00188{left:322.887000px;}
.x53_c00188{left:325.753500px;}
.x7e_c00188{left:327.783000px;}
.x65_c00188{left:333.181500px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws0_c00188{word-spacing:0.000000pt;}
.fsc_c00188{font-size:44.800000pt;}
.fs9_c00188{font-size:49.466667pt;}
.fs6_c00188{font-size:51.333333pt;}
.fs8_c00188{font-size:52.266667pt;}
.fs2_c00188{font-size:53.200000pt;}
.fse_c00188{font-size:54.133333pt;}
.fsa_c00188{font-size:54.136040pt;}
.fs5_c00188{font-size:55.066667pt;}
.fsd_c00188{font-size:56.933333pt;}
.fsb_c00188{font-size:58.800000pt;}
.fs7_c00188{font-size:60.666667pt;}
.fs3_c00188{font-size:61.600000pt;}
.fs1_c00188{font-size:62.533333pt;}
.fs4_c00188{font-size:63.466667pt;}
.fs0_c00188{font-size:103.600000pt;}
.y0_c00188{bottom:0.000000pt;}
.ya1_c00188{bottom:23.764000pt;}
.ya2_c00188{bottom:24.105333pt;}
.ya3_c00188{bottom:24.572000pt;}
.ya4_c00188{bottom:24.834667pt;}
.ya5_c00188{bottom:25.861333pt;}
.ya6_c00188{bottom:26.433333pt;}
.ya7_c00188{bottom:26.710667pt;}
.ya8_c00188{bottom:27.452000pt;}
.ya9_c00188{bottom:27.786667pt;}
.yaa_c00188{bottom:28.253333pt;}
.ya0_c00188{bottom:43.066667pt;}
.y9f_c00188{bottom:59.362667pt;}
.y9e_c00188{bottom:74.456000pt;}
.y9d_c00188{bottom:89.225333pt;}
.y97_c00188{bottom:102.961333pt;}
.y98_c00188{bottom:103.529333pt;}
.y99_c00188{bottom:103.788000pt;}
.y9a_c00188{bottom:104.364000pt;}
.y9b_c00188{bottom:105.313333pt;}
.y9c_c00188{bottom:105.568000pt;}
.y96_c00188{bottom:120.641333pt;}
.y95_c00188{bottom:133.681333pt;}
.y94_c00188{bottom:149.264000pt;}
.y93_c00188{bottom:164.854667pt;}
.y92_c00188{bottom:180.140000pt;}
.y91_c00188{bottom:195.298667pt;}
.y90_c00188{bottom:210.596000pt;}
.y86_c00188{bottom:224.162667pt;}
.y87_c00188{bottom:224.394667pt;}
.y88_c00188{bottom:224.682667pt;}
.y89_c00188{bottom:224.864000pt;}
.y8a_c00188{bottom:225.336000pt;}
.y8b_c00188{bottom:225.641333pt;}
.y8c_c00188{bottom:226.053333pt;}
.y8d_c00188{bottom:226.222667pt;}
.y8e_c00188{bottom:226.669333pt;}
.y8f_c00188{bottom:226.894667pt;}
.y85_c00188{bottom:241.446667pt;}
.y7d_c00188{bottom:255.361333pt;}
.y7e_c00188{bottom:255.461907pt;}
.y7f_c00188{bottom:255.901520pt;}
.y80_c00188{bottom:256.129467pt;}
.y81_c00188{bottom:256.244373pt;}
.y82_c00188{bottom:256.926413pt;}
.y83_c00188{bottom:257.404040pt;}
.y84_c00188{bottom:257.612853pt;}
.y74_c00188{bottom:270.965333pt;}
.y75_c00188{bottom:271.322667pt;}
.y76_c00188{bottom:271.882667pt;}
.y77_c00188{bottom:272.122667pt;}
.y78_c00188{bottom:272.620000pt;}
.y79_c00188{bottom:272.740000pt;}
.y7a_c00188{bottom:272.929333pt;}
.y7b_c00188{bottom:273.281333pt;}
.y7c_c00188{bottom:273.533333pt;}
.y6b_c00188{bottom:285.605333pt;}
.y6c_c00188{bottom:286.457333pt;}
.y6d_c00188{bottom:286.966667pt;}
.y6e_c00188{bottom:287.229333pt;}
.y6f_c00188{bottom:288.012000pt;}
.y70_c00188{bottom:288.306667pt;}
.y71_c00188{bottom:288.882667pt;}
.y72_c00188{bottom:289.489333pt;}
.y73_c00188{bottom:289.886667pt;}
.y63_c00188{bottom:300.244000pt;}
.y64_c00188{bottom:300.750667pt;}
.y65_c00188{bottom:300.996000pt;}
.y66_c00188{bottom:301.462667pt;}
.y67_c00188{bottom:302.621333pt;}
.y68_c00188{bottom:303.757333pt;}
.y69_c00188{bottom:304.605333pt;}
.y6a_c00188{bottom:304.996000pt;}
.y5c_c00188{bottom:313.922667pt;}
.y5d_c00188{bottom:314.521333pt;}
.y5e_c00188{bottom:315.017333pt;}
.y5f_c00188{bottom:315.334667pt;}
.y60_c00188{bottom:316.516000pt;}
.y61_c00188{bottom:317.778667pt;}
.y62_c00188{bottom:318.153333pt;}
.y55_c00188{bottom:329.521333pt;}
.y56_c00188{bottom:330.216000pt;}
.y57_c00188{bottom:330.481333pt;}
.y58_c00188{bottom:331.280000pt;}
.y59_c00188{bottom:332.473333pt;}
.y5a_c00188{bottom:332.689333pt;}
.y5b_c00188{bottom:333.032000pt;}
.y4c_c00188{bottom:344.880000pt;}
.y4d_c00188{bottom:345.689333pt;}
.y4e_c00188{bottom:345.878667pt;}
.y4f_c00188{bottom:346.700000pt;}
.y50_c00188{bottom:347.321333pt;}
.y51_c00188{bottom:347.598667pt;}
.y52_c00188{bottom:348.113333pt;}
.y53_c00188{bottom:348.389333pt;}
.y54_c00188{bottom:348.950667pt;}
.y46_c00188{bottom:359.522667pt;}
.y47_c00188{bottom:359.946667pt;}
.y48_c00188{bottom:361.688000pt;}
.y49_c00188{bottom:362.668000pt;}
.y4a_c00188{bottom:362.928000pt;}
.y4b_c00188{bottom:364.364000pt;}
.y3d_c00188{bottom:375.121333pt;}
.y3e_c00188{bottom:375.438667pt;}
.y3f_c00188{bottom:375.812000pt;}
.y40_c00188{bottom:376.345333pt;}
.y41_c00188{bottom:377.109333pt;}
.y42_c00188{bottom:377.730667pt;}
.y43_c00188{bottom:377.922667pt;}
.y44_c00188{bottom:378.242667pt;}
.y45_c00188{bottom:379.156000pt;}
.y36_c00188{bottom:389.284000pt;}
.y37_c00188{bottom:389.732000pt;}
.y38_c00188{bottom:391.316000pt;}
.y39_c00188{bottom:392.092000pt;}
.y3a_c00188{bottom:393.478667pt;}
.y3b_c00188{bottom:394.182667pt;}
.y3c_c00188{bottom:394.466667pt;}
.y2e_c00188{bottom:404.881333pt;}
.y2f_c00188{bottom:405.154667pt;}
.y30_c00188{bottom:406.546667pt;}
.y31_c00188{bottom:406.897333pt;}
.y32_c00188{bottom:408.544000pt;}
.y33_c00188{bottom:408.880000pt;}
.y34_c00188{bottom:409.244000pt;}
.y35_c00188{bottom:409.772000pt;}
.y27_c00188{bottom:420.960000pt;}
.y28_c00188{bottom:421.417333pt;}
.y29_c00188{bottom:421.701333pt;}
.y2a_c00188{bottom:422.102667pt;}
.y2b_c00188{bottom:422.881333pt;}
.y2c_c00188{bottom:424.154667pt;}
.y2d_c00188{bottom:425.169333pt;}
.y1e_c00188{bottom:436.080000pt;}
.y1f_c00188{bottom:436.561333pt;}
.y20_c00188{bottom:436.769333pt;}
.y21_c00188{bottom:437.218667pt;}
.y22_c00188{bottom:437.484000pt;}
.y23_c00188{bottom:438.458667pt;}
.y24_c00188{bottom:438.769333pt;}
.y25_c00188{bottom:439.030667pt;}
.y26_c00188{bottom:439.854667pt;}
.y18_c00188{bottom:451.441333pt;}
.y19_c00188{bottom:451.960000pt;}
.y1a_c00188{bottom:452.910667pt;}
.y1b_c00188{bottom:454.254667pt;}
.y1c_c00188{bottom:454.936000pt;}
.y1d_c00188{bottom:455.554667pt;}
.y10_c00188{bottom:467.042667pt;}
.y11_c00188{bottom:468.089333pt;}
.y12_c00188{bottom:468.518667pt;}
.y13_c00188{bottom:469.345333pt;}
.y14_c00188{bottom:469.796000pt;}
.y15_c00188{bottom:470.064000pt;}
.y16_c00188{bottom:470.496000pt;}
.y17_c00188{bottom:471.068000pt;}
.y9_c00188{bottom:482.882667pt;}
.ya_c00188{bottom:483.505333pt;}
.yb_c00188{bottom:484.394667pt;}
.yc_c00188{bottom:484.712000pt;}
.yd_c00188{bottom:485.797333pt;}
.ye_c00188{bottom:486.006667pt;}
.yf_c00188{bottom:486.356000pt;}
.y2_c00188{bottom:497.764000pt;}
.y3_c00188{bottom:498.321333pt;}
.y4_c00188{bottom:498.661333pt;}
.y5_c00188{bottom:499.766667pt;}
.y6_c00188{bottom:500.753333pt;}
.y7_c00188{bottom:501.385333pt;}
.y8_c00188{bottom:501.777333pt;}
.y1_c00188{bottom:510.126667pt;}
.he_c00188{height:44.800000pt;}
.hb_c00188{height:49.466667pt;}
.h8_c00188{height:51.333333pt;}
.ha_c00188{height:52.266667pt;}
.h4_c00188{height:53.200000pt;}
.h10_c00188{height:54.133333pt;}
.hc_c00188{height:54.136040pt;}
.h7_c00188{height:55.066667pt;}
.hf_c00188{height:56.933333pt;}
.hd_c00188{height:58.800000pt;}
.h9_c00188{height:60.666667pt;}
.h5_c00188{height:61.600000pt;}
.h3_c00188{height:62.533333pt;}
.h6_c00188{height:63.466667pt;}
.h2_c00188{height:103.600000pt;}
.h1_c00188{height:554.000000pt;}
.h0_c00188{height:554.133333pt;}
.w1_c00188{width:340.666667pt;}
.w0_c00188{width:340.800000pt;}
.x0_c00188{left:0.000000pt;}
.x54_c00188{left:22.898667pt;}
.x1_c00188{left:30.240000pt;}
.x2b_c00188{left:31.732000pt;}
.x4d_c00188{left:32.754667pt;}
.x6e_c00188{left:34.561333pt;}
.x15_c00188{left:38.108000pt;}
.x7f_c00188{left:42.716000pt;}
.x26_c00188{left:44.626667pt;}
.x62_c00188{left:48.241333pt;}
.x79_c00188{left:49.202667pt;}
.x31_c00188{left:50.977333pt;}
.x2c_c00188{left:52.101333pt;}
.x36_c00188{left:54.462667pt;}
.x7d_c00188{left:56.402667pt;}
.x21_c00188{left:57.778667pt;}
.x1a_c00188{left:59.138667pt;}
.x80_c00188{left:61.700000pt;}
.x3_c00188{left:62.989333pt;}
.x16_c00188{left:66.916000pt;}
.x4e_c00188{left:68.485333pt;}
.x5b_c00188{left:69.600000pt;}
.x8_c00188{left:71.670667pt;}
.x22_c00188{left:74.504000pt;}
.x40_c00188{left:76.004000pt;}
.x55_c00188{left:76.917333pt;}
.x6f_c00188{left:82.081333pt;}
.x4_c00188{left:82.985333pt;}
.x63_c00188{left:84.001333pt;}
.x69_c00188{left:85.681333pt;}
.x43_c00188{left:87.089333pt;}
.x74_c00188{left:89.042667pt;}
.xe_c00188{left:92.026667pt;}
.x3b_c00188{left:94.962667pt;}
.x46_c00188{left:96.408000pt;}
.x1b_c00188{left:97.853333pt;}
.x56_c00188{left:99.712000pt;}
.x5c_c00188{left:100.800000pt;}
.x44_c00188{left:102.922667pt;}
.x32_c00188{left:107.690667pt;}
.x57_c00188{left:111.202667pt;}
.x1c_c00188{left:113.473333pt;}
.xf_c00188{left:117.301333pt;}
.x17_c00188{left:119.725333pt;}
.x75_c00188{left:122.882667pt;}
.x2d_c00188{left:124.088000pt;}
.x5d_c00188{left:126.480000pt;}
.x49_c00188{left:128.064000pt;}
.x6a_c00188{left:129.121333pt;}
.x9_c00188{left:130.952000pt;}
.x76_c00188{left:140.642667pt;}
.x41_c00188{left:142.450667pt;}
.x23_c00188{left:143.937333pt;}
.x37_c00188{left:146.109333pt;}
.x2_c00188{left:147.360000pt;}
.x4f_c00188{left:148.390667pt;}
.x64_c00188{left:150.961333pt;}
.xa_c00188{left:152.096000pt;}
.x5e_c00188{left:153.120000pt;}
.x33_c00188{left:155.422667pt;}
.x5f_c00188{left:156.321333pt;}
.x47_c00188{left:157.369333pt;}
.x2e_c00188{left:159.356000pt;}
.x45_c00188{left:161.968000pt;}
.x71_c00188{left:163.441333pt;}
.x10_c00188{left:165.950667pt;}
.x66_c00188{left:168.721333pt;}
.x1d_c00188{left:170.817333pt;}
.x4a_c00188{left:174.089333pt;}
.x72_c00188{left:175.441333pt;}
.x58_c00188{left:179.406667pt;}
.x6c_c00188{left:180.961333pt;}
.x67_c00188{left:183.361333pt;}
.x3c_c00188{left:185.133333pt;}
.x77_c00188{left:186.962667pt;}
.x1e_c00188{left:189.064000pt;}
.x4b_c00188{left:191.405333pt;}
.x11_c00188{left:192.424000pt;}
.x18_c00188{left:194.366667pt;}
.x38_c00188{left:197.722667pt;}
.x73_c00188{left:200.401333pt;}
.x3d_c00188{left:202.489333pt;}
.x1f_c00188{left:204.432000pt;}
.x5_c00188{left:206.106667pt;}
.x12_c00188{left:208.198667pt;}
.x50_c00188{left:210.073333pt;}
.x39_c00188{left:211.420000pt;}
.x27_c00188{left:214.061333pt;}
.x42_c00188{left:217.052000pt;}
.x24_c00188{left:218.832000pt;}
.x2f_c00188{left:222.393333pt;}
.xb_c00188{left:224.490667pt;}
.x34_c00188{left:226.266667pt;}
.x59_c00188{left:227.169333pt;}
.x51_c00188{left:229.069333pt;}
.x28_c00188{left:230.854667pt;}
.x19_c00188{left:232.230667pt;}
.x13_c00188{left:233.644000pt;}
.x3e_c00188{left:234.649333pt;}
.x7a_c00188{left:236.882667pt;}
.xc_c00188{left:238.482667pt;}
.x6b_c00188{left:240.481333pt;}
.x60_c00188{left:242.001333pt;}
.x6_c00188{left:243.308000pt;}
.x6d_c00188{left:245.041333pt;}
.x5a_c00188{left:248.050667pt;}
.x29_c00188{left:249.053333pt;}
.x3f_c00188{left:251.870667pt;}
.x20_c00188{left:252.918667pt;}
.x30_c00188{left:254.382667pt;}
.x70_c00188{left:257.281333pt;}
.x68_c00188{left:259.681333pt;}
.x61_c00188{left:260.776000pt;}
.xd_c00188{left:261.786667pt;}
.x7c_c00188{left:263.042667pt;}
.x52_c00188{left:264.317333pt;}
.x7_c00188{left:266.333333pt;}
.x14_c00188{left:267.274667pt;}
.x78_c00188{left:269.522667pt;}
.x7b_c00188{left:271.682667pt;}
.x2a_c00188{left:275.424000pt;}
.x25_c00188{left:278.525333pt;}
.x48_c00188{left:282.369333pt;}
.x35_c00188{left:283.314667pt;}
.x4c_c00188{left:284.344000pt;}
.x3a_c00188{left:287.010667pt;}
.x53_c00188{left:289.558667pt;}
.x7e_c00188{left:291.362667pt;}
.x65_c00188{left:296.161333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00189 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00189 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00189 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00189 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00189.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00189{transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m21_c00189{transform:matrix(0.113425,0.002155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.113425,0.002155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.113425,0.002155,-0.004749,0.249955,0,0);}
.mda_c00189{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00189{transform:matrix(0.140709,0.002111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.140709,0.002111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.140709,0.002111,-0.003750,0.249972,0,0);}
.m73_c00189{transform:matrix(0.144269,0.002164,-0.003750,0.249972,0,0);-ms-transform:matrix(0.144269,0.002164,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.144269,0.002164,-0.003750,0.249972,0,0);}
.md7_c00189{transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);}
.m38_c00189{transform:matrix(0.151638,0.002881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151638,0.002881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151638,0.002881,-0.004749,0.249955,0,0);}
.m5d_c00189{transform:matrix(0.152246,0.003197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152246,0.003197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152246,0.003197,-0.005249,0.249945,0,0);}
.m28_c00189{transform:matrix(0.152358,0.002895,-0.004749,0.249955,0,0);-ms-transform:matrix(0.152358,0.002895,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.152358,0.002895,-0.004749,0.249955,0,0);}
.m46_c00189{transform:matrix(0.153715,0.002767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153715,0.002767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153715,0.002767,-0.004499,0.249960,0,0);}
.m29_c00189{transform:matrix(0.156362,0.002971,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156362,0.002971,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156362,0.002971,-0.004749,0.249955,0,0);}
.me1_c00189{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.me4_c00189{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m62_c00189{transform:matrix(0.159070,0.003340,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159070,0.003340,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159070,0.003340,-0.005249,0.249945,0,0);}
.m6c_c00189{transform:matrix(0.159182,0.002388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159182,0.002388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159182,0.002388,-0.003750,0.249972,0,0);}
.mc7_c00189{transform:matrix(0.159642,0.002714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159642,0.002714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159642,0.002714,-0.004249,0.249964,0,0);}
.me5_c00189{transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00189{transform:matrix(0.161007,0.002737,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161007,0.002737,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161007,0.002737,-0.004249,0.249964,0,0);}
.m8_c00189{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.me3_c00189{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.md9_c00189{transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161715,0.000000,0.000000,0.250000,0,0);}
.md6_c00189{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.mc2_c00189{transform:matrix(0.161862,0.002752,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161862,0.002752,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161862,0.002752,-0.004249,0.249964,0,0);}
.mc6_c00189{transform:matrix(0.162746,0.002767,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162746,0.002767,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162746,0.002767,-0.004249,0.249964,0,0);}
.mb_c00189{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.mf4_c00189{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{transform:matrix(0.164215,0.003120,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164215,0.003120,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164215,0.003120,-0.004749,0.249955,0,0);}
.m5f_c00189{transform:matrix(0.166023,0.003486,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166023,0.003486,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166023,0.003486,-0.005249,0.249945,0,0);}
.mee_c00189{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.mc0_c00189{transform:matrix(0.166546,0.002831,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166546,0.002831,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166546,0.002831,-0.004249,0.249964,0,0);}
.m53_c00189{transform:matrix(0.167113,0.003509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167113,0.003509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167113,0.003509,-0.005249,0.249945,0,0);}
.mdc_c00189{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m40_c00189{transform:matrix(0.167228,0.003010,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167228,0.003010,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167228,0.003010,-0.004499,0.249960,0,0);}
.m61_c00189{transform:matrix(0.167773,0.003523,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167773,0.003523,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167773,0.003523,-0.005249,0.249945,0,0);}
.m17_c00189{transform:matrix(0.168240,0.003197,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168240,0.003197,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168240,0.003197,-0.004749,0.249955,0,0);}
.m35_c00189{transform:matrix(0.168675,0.003205,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168675,0.003205,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168675,0.003205,-0.004749,0.249955,0,0);}
.mc8_c00189{transform:matrix(0.169186,0.002876,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169186,0.002876,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169186,0.002876,-0.004249,0.249964,0,0);}
.mbc_c00189{transform:matrix(0.170700,0.002902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170700,0.002902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170700,0.002902,-0.004249,0.249964,0,0);}
.m49_c00189{transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);}
.m66_c00189{transform:matrix(0.171246,0.002226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171246,0.002226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171246,0.002226,-0.003250,0.249979,0,0);}
.mdb_c00189{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m72_c00189{transform:matrix(0.171591,0.002574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171591,0.002574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171591,0.002574,-0.003750,0.249972,0,0);}
.m6f_c00189{transform:matrix(0.171656,0.002575,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171656,0.002575,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171656,0.002575,-0.003750,0.249972,0,0);}
.m96_c00189{transform:matrix(0.172091,0.002581,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172091,0.002581,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172091,0.002581,-0.003750,0.249972,0,0);}
.m20_c00189{transform:matrix(0.172099,0.003270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172099,0.003270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172099,0.003270,-0.004749,0.249955,0,0);}
.m7c_c00189{transform:matrix(0.172361,0.002585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172361,0.002585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172361,0.002585,-0.003750,0.249972,0,0);}
.m1b_c00189{transform:matrix(0.173139,0.003290,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173139,0.003290,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173139,0.003290,-0.004749,0.249955,0,0);}
.m60_c00189{transform:matrix(0.173812,0.003650,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173812,0.003650,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173812,0.003650,-0.005249,0.249945,0,0);}
.m18_c00189{transform:matrix(0.173974,0.003305,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173974,0.003305,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173974,0.003305,-0.004749,0.249955,0,0);}
.m8d_c00189{transform:matrix(0.174360,0.002615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174360,0.002615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174360,0.002615,-0.003750,0.249972,0,0);}
.m5b_c00189{transform:matrix(0.174382,0.003662,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174382,0.003662,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174382,0.003662,-0.005249,0.249945,0,0);}
.m2b_c00189{transform:matrix(0.174454,0.003315,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174454,0.003315,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174454,0.003315,-0.004749,0.249955,0,0);}
.md_c00189{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.m7b_c00189{transform:matrix(0.174895,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174895,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174895,0.002623,-0.003750,0.249972,0,0);}
.m5e_c00189{transform:matrix(0.174936,0.003674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174936,0.003674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174936,0.003674,-0.005249,0.249945,0,0);}
.mc3_c00189{transform:matrix(0.175530,0.002984,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175530,0.002984,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175530,0.002984,-0.004249,0.249964,0,0);}
.m5c_c00189{transform:matrix(0.175661,0.003689,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175661,0.003689,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175661,0.003689,-0.005249,0.249945,0,0);}
.ma0_c00189{transform:matrix(0.175935,0.002639,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175935,0.002639,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175935,0.002639,-0.003750,0.249972,0,0);}
.mab_c00189{transform:matrix(0.175955,0.002991,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175955,0.002991,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175955,0.002991,-0.004249,0.249964,0,0);}
.mc5_c00189{transform:matrix(0.176040,0.002993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176040,0.002993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176040,0.002993,-0.004249,0.249964,0,0);}
.mcd_c00189{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m44_c00189{transform:matrix(0.176156,0.003171,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176156,0.003171,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176156,0.003171,-0.004499,0.249960,0,0);}
.m7a_c00189{transform:matrix(0.176195,0.002643,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176195,0.002643,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176195,0.002643,-0.003750,0.249972,0,0);}
.mfa_c00189{transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.176763,0.003358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176763,0.003358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176763,0.003358,-0.004749,0.249955,0,0);}
.me2_c00189{transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);}
.m4c_c00189{transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177416,0.003726,-0.005249,0.249945,0,0);}
.mc_c00189{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m24_c00189{transform:matrix(0.178068,0.003383,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178068,0.003383,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178068,0.003383,-0.004749,0.249955,0,0);}
.md3_c00189{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.m36_c00189{transform:matrix(0.178218,0.003386,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178218,0.003386,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178218,0.003386,-0.004749,0.249955,0,0);}
.mf8_c00189{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.m30_c00189{transform:matrix(0.178608,0.003394,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178608,0.003394,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178608,0.003394,-0.004749,0.249955,0,0);}
.maf_c00189{transform:matrix(0.178614,0.003036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178614,0.003036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178614,0.003036,-0.004249,0.249964,0,0);}
.m95_c00189{transform:matrix(0.178680,0.002680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178680,0.002680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178680,0.002680,-0.003750,0.249972,0,0);}
.ma_c00189{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m67_c00189{transform:matrix(0.180710,0.002349,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180710,0.002349,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180710,0.002349,-0.003250,0.249979,0,0);}
.m78_c00189{transform:matrix(0.180750,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180750,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180750,0.002711,-0.003750,0.249972,0,0);}
.m7d_c00189{transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);}
.m4e_c00189{transform:matrix(0.181600,0.003814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181600,0.003814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181600,0.003814,-0.005249,0.249945,0,0);}
.m9e_c00189{transform:matrix(0.181680,0.002725,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181680,0.002725,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181680,0.002725,-0.003750,0.249972,0,0);}
.m64_c00189{transform:matrix(0.181865,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181865,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181865,0.002364,-0.003250,0.249979,0,0);}
.ma6_c00189{transform:matrix(0.182095,0.002731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182095,0.002731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182095,0.002731,-0.003750,0.249972,0,0);}
.ma4_c00189{transform:matrix(0.182359,0.002735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182359,0.002735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182359,0.002735,-0.003750,0.249972,0,0);}
.m93_c00189{transform:matrix(0.183364,0.002750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183364,0.002750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183364,0.002750,-0.003750,0.249972,0,0);}
.mde_c00189{transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.m8c_c00189{transform:matrix(0.184059,0.002761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184059,0.002761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184059,0.002761,-0.003750,0.249972,0,0);}
.me0_c00189{transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);}
.m55_c00189{transform:matrix(0.184304,0.003870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184304,0.003870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184304,0.003870,-0.005249,0.249945,0,0);}
.mbe_c00189{transform:matrix(0.184378,0.003134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184378,0.003134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184378,0.003134,-0.004249,0.249964,0,0);}
.m4d_c00189{transform:matrix(0.184644,0.003878,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184644,0.003878,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184644,0.003878,-0.005249,0.249945,0,0);}
.m3a_c00189{transform:matrix(0.184932,0.003514,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184932,0.003514,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184932,0.003514,-0.004749,0.249955,0,0);}
.m42_c00189{transform:matrix(0.184975,0.003330,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184975,0.003330,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184975,0.003330,-0.004499,0.249960,0,0);}
.mf9_c00189{transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);}
.m27_c00189{transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);}
.m68_c00189{transform:matrix(0.186044,0.002419,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186044,0.002419,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186044,0.002419,-0.003250,0.249979,0,0);}
.mf1_c00189{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.mc4_c00189{transform:matrix(0.186613,0.003172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186613,0.003172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186613,0.003172,-0.004249,0.249964,0,0);}
.mbf_c00189{transform:matrix(0.186923,0.003178,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186923,0.003178,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186923,0.003178,-0.004249,0.249964,0,0);}
.m56_c00189{transform:matrix(0.187519,0.003938,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187519,0.003938,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187519,0.003938,-0.005249,0.249945,0,0);}
.me7_c00189{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.md8_c00189{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m58_c00189{transform:matrix(0.188288,0.003954,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188288,0.003954,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188288,0.003954,-0.005249,0.249945,0,0);}
.me8_c00189{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.ma2_c00189{transform:matrix(0.188679,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188679,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188679,0.002830,-0.003750,0.249972,0,0);}
.m75_c00189{transform:matrix(0.188784,0.002832,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188784,0.002832,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188784,0.002832,-0.003750,0.249972,0,0);}
.mf7_c00189{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.mb5_c00189{transform:matrix(0.189718,0.003225,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189718,0.003225,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189718,0.003225,-0.004249,0.249964,0,0);}
.md4_c00189{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m5a_c00189{transform:matrix(0.189938,0.003989,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189938,0.003989,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189938,0.003989,-0.005249,0.249945,0,0);}
.mb8_c00189{transform:matrix(0.189973,0.003230,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189973,0.003230,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189973,0.003230,-0.004249,0.249964,0,0);}
.m23_c00189{transform:matrix(0.190216,0.003614,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190216,0.003614,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190216,0.003614,-0.004749,0.249955,0,0);}
.m47_c00189{transform:matrix(0.191804,0.003452,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191804,0.003452,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191804,0.003452,-0.004499,0.249960,0,0);}
.m81_c00189{transform:matrix(0.192388,0.002886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192388,0.002886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192388,0.002886,-0.003750,0.249972,0,0);}
.mf_c00189{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.mf3_c00189{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m3d_c00189{transform:matrix(0.192919,0.003473,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192919,0.003473,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192919,0.003473,-0.004499,0.249960,0,0);}
.mfb_c00189{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.ma5_c00189{transform:matrix(0.193308,0.002900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193308,0.002900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193308,0.002900,-0.003750,0.249972,0,0);}
.mbd_c00189{transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194042,0.003299,-0.004249,0.249964,0,0);}
.m71_c00189{transform:matrix(0.194653,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194653,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194653,0.002920,-0.003750,0.249972,0,0);}
.m14_c00189{transform:matrix(0.194765,0.003701,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194765,0.003701,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194765,0.003701,-0.004749,0.249955,0,0);}
.m76_c00189{transform:matrix(0.195078,0.002926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195078,0.002926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195078,0.002926,-0.003750,0.249972,0,0);}
.m25_c00189{transform:matrix(0.195135,0.003708,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195135,0.003708,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195135,0.003708,-0.004749,0.249955,0,0);}
.m4f_c00189{transform:matrix(0.195152,0.004098,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195152,0.004098,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195152,0.004098,-0.005249,0.249945,0,0);}
.mf6_c00189{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.mf0_c00189{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.mb4_c00189{transform:matrix(0.196272,0.003337,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196272,0.003337,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196272,0.003337,-0.004249,0.249964,0,0);}
.me6_c00189{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.m65_c00189{transform:matrix(0.196758,0.002558,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196758,0.002558,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196758,0.002558,-0.003250,0.249979,0,0);}
.mb0_c00189{transform:matrix(0.196942,0.003348,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196942,0.003348,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196942,0.003348,-0.004249,0.249964,0,0);}
.m1d_c00189{transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);}
.m9a_c00189{transform:matrix(0.197253,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197253,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197253,0.002959,-0.003750,0.249972,0,0);}
.mca_c00189{transform:matrix(0.197496,0.003357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197496,0.003357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197496,0.003357,-0.004249,0.249964,0,0);}
.m2e_c00189{transform:matrix(0.197519,0.003753,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197519,0.003753,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197519,0.003753,-0.004749,0.249955,0,0);}
.mdd_c00189{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m79_c00189{transform:matrix(0.197718,0.002966,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197718,0.002966,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197718,0.002966,-0.003750,0.249972,0,0);}
.m3f_c00189{transform:matrix(0.198498,0.003573,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198498,0.003573,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198498,0.003573,-0.004499,0.249960,0,0);}
.m2c_c00189{transform:matrix(0.199324,0.003787,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199324,0.003787,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199324,0.003787,-0.004749,0.249955,0,0);}
.m9f_c00189{transform:matrix(0.199703,0.002996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199703,0.002996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199703,0.002996,-0.003750,0.249972,0,0);}
.m45_c00189{transform:matrix(0.199758,0.003596,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199758,0.003596,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199758,0.003596,-0.004499,0.249960,0,0);}
.m41_c00189{transform:matrix(0.200243,0.003604,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200243,0.003604,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200243,0.003604,-0.004499,0.249960,0,0);}
.m69_c00189{transform:matrix(0.200248,0.002603,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200248,0.002603,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200248,0.002603,-0.003250,0.249979,0,0);}
.m74_c00189{transform:matrix(0.200482,0.003007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200482,0.003007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200482,0.003007,-0.003750,0.249972,0,0);}
.m26_c00189{transform:matrix(0.200529,0.003810,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200529,0.003810,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200529,0.003810,-0.004749,0.249955,0,0);}
.m4a_c00189{transform:matrix(0.200827,0.003615,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200827,0.003615,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200827,0.003615,-0.004499,0.249960,0,0);}
.m83_c00189{transform:matrix(0.200832,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200832,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200832,0.003012,-0.003750,0.249972,0,0);}
.m0_c00189{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m9b_c00189{transform:matrix(0.201577,0.003024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201577,0.003024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201577,0.003024,-0.003750,0.249972,0,0);}
.m32_c00189{transform:matrix(0.202263,0.003843,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202263,0.003843,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202263,0.003843,-0.004749,0.249955,0,0);}
.md0_c00189{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m3e_c00189{transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);}
.mcf_c00189{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.ma1_c00189{transform:matrix(0.203777,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203777,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203777,0.003057,-0.003750,0.249972,0,0);}
.m84_c00189{transform:matrix(0.203822,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203822,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203822,0.003057,-0.003750,0.249972,0,0);}
.m1e_c00189{transform:matrix(0.204008,0.003876,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204008,0.003876,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204008,0.003876,-0.004749,0.249955,0,0);}
.maa_c00189{transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);}
.m77_c00189{transform:matrix(0.204202,0.003063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204202,0.003063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204202,0.003063,-0.003750,0.249972,0,0);}
.m15_c00189{transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);}
.mc1_c00189{transform:matrix(0.204510,0.003477,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204510,0.003477,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204510,0.003477,-0.004249,0.249964,0,0);}
.mea_c00189{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m52_c00189{transform:matrix(0.204890,0.004303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204890,0.004303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204890,0.004303,-0.005249,0.249945,0,0);}
.mb1_c00189{transform:matrix(0.204960,0.003484,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204960,0.003484,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204960,0.003484,-0.004249,0.249964,0,0);}
.m9c_c00189{transform:matrix(0.205182,0.003078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205182,0.003078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205182,0.003078,-0.003750,0.249972,0,0);}
.m4_c00189{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.m88_c00189{transform:matrix(0.205752,0.003086,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205752,0.003086,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205752,0.003086,-0.003750,0.249972,0,0);}
.m3_c00189{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.ma7_c00189{transform:matrix(0.206732,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206732,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206732,0.003101,-0.003750,0.249972,0,0);}
.m31_c00189{transform:matrix(0.207133,0.003936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207133,0.003936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207133,0.003936,-0.004749,0.249955,0,0);}
.m57_c00189{transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);}
.m48_c00189{transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);}
.m8b_c00189{transform:matrix(0.207812,0.003117,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207812,0.003117,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207812,0.003117,-0.003750,0.249972,0,0);}
.mae_c00189{transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208305,0.003541,-0.004249,0.249964,0,0);}
.ma3_c00189{transform:matrix(0.208677,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208677,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208677,0.003130,-0.003750,0.249972,0,0);}
.m7e_c00189{transform:matrix(0.209251,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209251,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209251,0.003139,-0.003750,0.249972,0,0);}
.m94_c00189{transform:matrix(0.209596,0.003144,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209596,0.003144,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209596,0.003144,-0.003750,0.249972,0,0);}
.me9_c00189{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m39_c00189{transform:matrix(0.210822,0.004006,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210822,0.004006,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210822,0.004006,-0.004749,0.249955,0,0);}
.mdf_c00189{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.mac_c00189{transform:matrix(0.211314,0.003592,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211314,0.003592,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211314,0.003592,-0.004249,0.249964,0,0);}
.m1a_c00189{transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);}
.m8f_c00189{transform:matrix(0.212291,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212291,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212291,0.003184,-0.003750,0.249972,0,0);}
.m9d_c00189{transform:matrix(0.212541,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212541,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212541,0.003188,-0.003750,0.249972,0,0);}
.mf2_c00189{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m34_c00189{transform:matrix(0.213636,0.004059,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213636,0.004059,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213636,0.004059,-0.004749,0.249955,0,0);}
.m90_c00189{transform:matrix(0.213746,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213746,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213746,0.003206,-0.003750,0.249972,0,0);}
.m51_c00189{transform:matrix(0.213988,0.004494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213988,0.004494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213988,0.004494,-0.005249,0.249945,0,0);}
.mf5_c00189{transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);}
.mcc_c00189{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m2a_c00189{transform:matrix(0.214631,0.004078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214631,0.004078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214631,0.004078,-0.004749,0.249955,0,0);}
.m87_c00189{transform:matrix(0.215871,0.003238,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215871,0.003238,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215871,0.003238,-0.003750,0.249972,0,0);}
.m86_c00189{transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);}
.m3c_c00189{transform:matrix(0.216046,0.004105,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216046,0.004105,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216046,0.004105,-0.004749,0.249955,0,0);}
.m10_c00189{transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);}
.md5_c00189{transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217070,0.000000,0.000000,0.250000,0,0);}
.m37_c00189{transform:matrix(0.217526,0.004133,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217526,0.004133,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217526,0.004133,-0.004749,0.249955,0,0);}
.m99_c00189{transform:matrix(0.218870,0.003283,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218870,0.003283,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218870,0.003283,-0.003750,0.249972,0,0);}
.m2_c00189{transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218980,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);}
.m6d_c00189{transform:matrix(0.219860,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219860,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219860,0.003298,-0.003750,0.249972,0,0);}
.m6_c00189{transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);}
.m97_c00189{transform:matrix(0.220425,0.003306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220425,0.003306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220425,0.003306,-0.003750,0.249972,0,0);}
.m1c_c00189{transform:matrix(0.220540,0.004190,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220540,0.004190,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220540,0.004190,-0.004749,0.249955,0,0);}
.mec_c00189{transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);}
.ma9_c00189{transform:matrix(0.220590,0.003309,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220590,0.003309,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220590,0.003309,-0.003750,0.249972,0,0);}
.mba_c00189{transform:matrix(0.220763,0.003753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220763,0.003753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220763,0.003753,-0.004249,0.249964,0,0);}
.m1f_c00189{transform:matrix(0.221180,0.004202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221180,0.004202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221180,0.004202,-0.004749,0.249955,0,0);}
.med_c00189{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.md1_c00189{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m6e_c00189{transform:matrix(0.222495,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222495,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222495,0.003337,-0.003750,0.249972,0,0);}
.m80_c00189{transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);}
.m8e_c00189{transform:matrix(0.224325,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224325,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224325,0.003365,-0.003750,0.249972,0,0);}
.mb9_c00189{transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);}
.m82_c00189{transform:matrix(0.224830,0.003372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224830,0.003372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224830,0.003372,-0.003750,0.249972,0,0);}
.m98_c00189{transform:matrix(0.226769,0.003402,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226769,0.003402,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226769,0.003402,-0.003750,0.249972,0,0);}
.mb2_c00189{transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);}
.m2f_c00189{transform:matrix(0.227454,0.004322,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227454,0.004322,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227454,0.004322,-0.004749,0.249955,0,0);}
.m19_c00189{transform:matrix(0.227804,0.004328,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227804,0.004328,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227804,0.004328,-0.004749,0.249955,0,0);}
.m91_c00189{transform:matrix(0.228354,0.003425,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228354,0.003425,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228354,0.003425,-0.003750,0.249972,0,0);}
.m85_c00189{transform:matrix(0.228369,0.003426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228369,0.003426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228369,0.003426,-0.003750,0.249972,0,0);}
.m22_c00189{transform:matrix(0.229294,0.004357,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229294,0.004357,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229294,0.004357,-0.004749,0.249955,0,0);}
.mef_c00189{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.mce_c00189{transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);}
.m50_c00189{transform:matrix(0.231549,0.004863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231549,0.004863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231549,0.004863,-0.005249,0.249945,0,0);}
.m4b_c00189{transform:matrix(0.234653,0.004928,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234653,0.004928,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234653,0.004928,-0.005249,0.249945,0,0);}
.mad_c00189{transform:matrix(0.235041,0.003996,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235041,0.003996,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235041,0.003996,-0.004249,0.249964,0,0);}
.m16_c00189{transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);}
.m70_c00189{transform:matrix(0.240923,0.003614,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240923,0.003614,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240923,0.003614,-0.003750,0.249972,0,0);}
.m7f_c00189{transform:matrix(0.241483,0.003622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241483,0.003622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241483,0.003622,-0.003750,0.249972,0,0);}
.m59_c00189{transform:matrix(0.241952,0.005081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241952,0.005081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241952,0.005081,-0.005249,0.249945,0,0);}
.meb_c00189{transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242385,0.000000,0.000000,0.250000,0,0);}
.m6a_c00189{transform:matrix(0.242425,0.003152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242425,0.003152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242425,0.003152,-0.003250,0.249979,0,0);}
.mbb_c00189{transform:matrix(0.244465,0.004156,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244465,0.004156,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244465,0.004156,-0.004249,0.249964,0,0);}
.mc9_c00189{transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);}
.mb6_c00189{transform:matrix(0.252414,0.004291,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252414,0.004291,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252414,0.004291,-0.004249,0.249964,0,0);}
.m89_c00189{transform:matrix(0.253436,0.003802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253436,0.003802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253436,0.003802,-0.003750,0.249972,0,0);}
.ma8_c00189{transform:matrix(0.258696,0.003880,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258696,0.003880,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258696,0.003880,-0.003750,0.249972,0,0);}
.md2_c00189{transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);}
.m63_c00189{transform:matrix(0.266932,0.003470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266932,0.003470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266932,0.003470,-0.003250,0.249979,0,0);}
.m6b_c00189{transform:matrix(0.275897,0.003587,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275897,0.003587,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275897,0.003587,-0.003250,0.249979,0,0);}
.m43_c00189{transform:matrix(0.315319,0.005676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.315319,0.005676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.315319,0.005676,-0.004499,0.249960,0,0);}
.m92_c00189{transform:matrix(0.343741,0.005156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.343741,0.005156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.343741,0.005156,-0.003750,0.249972,0,0);}
.mb7_c00189{transform:matrix(0.346935,0.005898,-0.004249,0.249964,0,0);-ms-transform:matrix(0.346935,0.005898,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.346935,0.005898,-0.004249,0.249964,0,0);}
.mb3_c00189{transform:matrix(0.393918,0.006697,-0.004249,0.249964,0,0);-ms-transform:matrix(0.393918,0.006697,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.393918,0.006697,-0.004249,0.249964,0,0);}
.m13_c00189{transform:matrix(0.402877,0.007655,-0.004749,0.249955,0,0);-ms-transform:matrix(0.402877,0.007655,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.402877,0.007655,-0.004749,0.249955,0,0);}
.m3b_c00189{transform:matrix(0.493611,0.009379,-0.004749,0.249955,0,0);-ms-transform:matrix(0.493611,0.009379,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.493611,0.009379,-0.004749,0.249955,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fs3_c00189{font-size:56.700000px;}
.fs11_c00189{font-size:57.756497px;}
.fs14_c00189{font-size:57.758344px;}
.fse_c00189{font-size:58.806615px;}
.fs17_c00189{font-size:59.850000px;}
.fs10_c00189{font-size:59.856733px;}
.fs13_c00189{font-size:60.908799px;}
.fs9_c00189{font-size:60.909865px;}
.fs7_c00189{font-size:60.910991px;}
.fsb_c00189{font-size:60.913427px;}
.fs1_c00189{font-size:61.950000px;}
.fs12_c00189{font-size:61.956969px;}
.fsa_c00189{font-size:61.963658px;}
.fs18_c00189{font-size:63.000000px;}
.fsd_c00189{font-size:63.005323px;}
.fs4_c00189{font-size:63.011370px;}
.fs0_c00189{font-size:64.050000px;}
.fs5_c00189{font-size:64.061560px;}
.fs16_c00189{font-size:67.200000px;}
.fs8_c00189{font-size:67.210886px;}
.fsc_c00189{font-size:67.214816px;}
.fsf_c00189{font-size:68.257678px;}
.fs15_c00189{font-size:68.259861px;}
.fs6_c00189{font-size:69.312508px;}
.fs2_c00189{font-size:70.350000px;}
.y0_c00189{bottom:0.000000px;}
.yd8_c00189{bottom:28.107000px;}
.yd7_c00189{bottom:43.593000px;}
.yd6_c00189{bottom:43.831500px;}
.yd5_c00189{bottom:44.133000px;}
.yd4_c00189{bottom:44.299500px;}
.yd3_c00189{bottom:45.424500px;}
.yd2_c00189{bottom:45.747000px;}
.yd1_c00189{bottom:45.903000px;}
.yd0_c00189{bottom:46.738500px;}
.ycf_c00189{bottom:46.981500px;}
.yce_c00189{bottom:62.425500px;}
.ycd_c00189{bottom:79.825500px;}
.ycc_c00189{bottom:96.327000px;}
.ycb_c00189{bottom:113.931000px;}
.yca_c00189{bottom:127.679910px;}
.yc9_c00189{bottom:127.977520px;}
.yc8_c00189{bottom:129.108598px;}
.yc7_c00189{bottom:129.832314px;}
.yc6_c00189{bottom:130.462623px;}
.yc5_c00189{bottom:130.807281px;}
.yc4_c00189{bottom:132.165640px;}
.yc3_c00189{bottom:132.564919px;}
.yc2_c00189{bottom:146.640912px;}
.yc1_c00189{bottom:147.098391px;}
.yc0_c00189{bottom:148.206831px;}
.ybf_c00189{bottom:148.879207px;}
.ybe_c00189{bottom:149.425756px;}
.ybd_c00189{bottom:150.797148px;}
.ybc_c00189{bottom:151.297912px;}
.ybb_c00189{bottom:152.007531px;}
.yba_c00189{bottom:164.448520px;}
.yb9_c00189{bottom:164.803192px;}
.yb8_c00189{bottom:165.692764px;}
.yb7_c00189{bottom:166.004652px;}
.yb6_c00189{bottom:166.239186px;}
.yb5_c00189{bottom:167.502550px;}
.yb4_c00189{bottom:167.814591px;}
.yb3_c00189{bottom:168.811143px;}
.yb2_c00189{bottom:169.296200px;}
.yb1_c00189{bottom:181.847685px;}
.yb0_c00189{bottom:182.178267px;}
.yaf_c00189{bottom:183.022929px;}
.yae_c00189{bottom:183.321381px;}
.yad_c00189{bottom:184.143118px;}
.yac_c00189{bottom:185.309361px;}
.yab_c00189{bottom:185.717896px;}
.yaa_c00189{bottom:186.033000px;}
.ya9_c00189{bottom:199.129260px;}
.ya8_c00189{bottom:199.485862px;}
.ya7_c00189{bottom:199.887015px;}
.ya6_c00189{bottom:200.445982px;}
.ya5_c00189{bottom:200.870220px;}
.ya4_c00189{bottom:201.746078px;}
.ya3_c00189{bottom:202.317375px;}
.ya2_c00189{bottom:202.778040px;}
.ya1_c00189{bottom:203.301637px;}
.ya0_c00189{bottom:217.760685px;}
.y9f_c00189{bottom:218.200988px;}
.y9e_c00189{bottom:219.155992px;}
.y9d_c00189{bottom:219.553147px;}
.y9c_c00189{bottom:220.256910px;}
.y9b_c00189{bottom:220.843890px;}
.y9a_c00189{bottom:221.933228px;}
.y99_c00189{bottom:234.010020px;}
.y98_c00189{bottom:234.417810px;}
.y97_c00189{bottom:236.118855px;}
.y96_c00189{bottom:236.895967px;}
.y95_c00189{bottom:237.255757px;}
.y94_c00189{bottom:237.778920px;}
.y93_c00189{bottom:238.352955px;}
.y92_c00189{bottom:239.214412px;}
.y91_c00189{bottom:250.757272px;}
.y90_c00189{bottom:251.493472px;}
.y8f_c00189{bottom:252.539610px;}
.y8e_c00189{bottom:252.984360px;}
.y8d_c00189{bottom:254.320133px;}
.y8c_c00189{bottom:254.758005px;}
.y8b_c00189{bottom:255.202845px;}
.y8a_c00189{bottom:256.226722px;}
.y89_c00189{bottom:266.983598px;}
.y88_c00189{bottom:268.429275px;}
.y87_c00189{bottom:269.457863px;}
.y86_c00189{bottom:270.329438px;}
.y85_c00189{bottom:271.320863px;}
.y84_c00189{bottom:271.554307px;}
.y83_c00189{bottom:272.156265px;}
.y82_c00189{bottom:284.359515px;}
.y81_c00189{bottom:285.343890px;}
.y80_c00189{bottom:285.757567px;}
.y7f_c00189{bottom:285.984893px;}
.y7e_c00189{bottom:286.240200px;}
.y7d_c00189{bottom:287.147573px;}
.y7c_c00189{bottom:287.513108px;}
.y7b_c00189{bottom:288.226193px;}
.y7a_c00189{bottom:288.815812px;}
.y79_c00189{bottom:289.185052px;}
.y78_c00189{bottom:289.710143px;}
.y77_c00189{bottom:301.720815px;}
.y76_c00189{bottom:301.931640px;}
.y75_c00189{bottom:303.004777px;}
.y74_c00189{bottom:303.363383px;}
.y73_c00189{bottom:304.673077px;}
.y72_c00189{bottom:304.969583px;}
.y71_c00189{bottom:305.912355px;}
.y70_c00189{bottom:318.631305px;}
.y6f_c00189{bottom:319.449608px;}
.y6e_c00189{bottom:319.748182px;}
.y6d_c00189{bottom:321.089925px;}
.y6c_c00189{bottom:322.325220px;}
.y6b_c00189{bottom:322.653000px;}
.y6a_c00189{bottom:335.892797px;}
.y69_c00189{bottom:336.864618px;}
.y68_c00189{bottom:337.155733px;}
.y67_c00189{bottom:337.847242px;}
.y66_c00189{bottom:338.121042px;}
.y65_c00189{bottom:338.439594px;}
.y64_c00189{bottom:339.188082px;}
.y63_c00189{bottom:339.546161px;}
.y62_c00189{bottom:339.931500px;}
.y61_c00189{bottom:354.007376px;}
.y60_c00189{bottom:354.394758px;}
.y5f_c00189{bottom:355.090726px;}
.y5e_c00189{bottom:355.515583px;}
.y5d_c00189{bottom:356.470248px;}
.y5c_c00189{bottom:356.842305px;}
.y5b_c00189{bottom:357.606450px;}
.y5a_c00189{bottom:358.017108px;}
.y59_c00189{bottom:370.583491px;}
.y58_c00189{bottom:371.595504px;}
.y57_c00189{bottom:372.706730px;}
.y56_c00189{bottom:373.017501px;}
.y55_c00189{bottom:373.936770px;}
.y54_c00189{bottom:374.200738px;}
.y53_c00189{bottom:375.028902px;}
.y52_c00189{bottom:387.553940px;}
.y51_c00189{bottom:388.634642px;}
.y50_c00189{bottom:389.402297px;}
.y4f_c00189{bottom:390.207972px;}
.y4e_c00189{bottom:390.548329px;}
.y4d_c00189{bottom:391.756260px;}
.y4c_c00189{bottom:392.731657px;}
.y4b_c00189{bottom:393.094821px;}
.y4a_c00189{bottom:393.393000px;}
.y49_c00189{bottom:405.332742px;}
.y48_c00189{bottom:405.813294px;}
.y47_c00189{bottom:406.241133px;}
.y46_c00189{bottom:407.055615px;}
.y45_c00189{bottom:407.584587px;}
.y44_c00189{bottom:408.772452px;}
.y43_c00189{bottom:410.091102px;}
.y42_c00189{bottom:410.671734px;}
.y41_c00189{bottom:421.465926px;}
.y40_c00189{bottom:422.797971px;}
.y3f_c00189{bottom:423.638967px;}
.y3e_c00189{bottom:424.824969px;}
.y3d_c00189{bottom:425.914230px;}
.y3c_c00189{bottom:426.283698px;}
.y3b_c00189{bottom:427.143000px;}
.y3a_c00189{bottom:438.990177px;}
.y39_c00189{bottom:440.158620px;}
.y38_c00189{bottom:440.929146px;}
.y37_c00189{bottom:442.042727px;}
.y36_c00189{bottom:442.446457px;}
.y35_c00189{bottom:443.541570px;}
.y34_c00189{bottom:443.864903px;}
.y33_c00189{bottom:444.413727px;}
.y32_c00189{bottom:456.984875px;}
.y31_c00189{bottom:457.315026px;}
.y30_c00189{bottom:458.302060px;}
.y2f_c00189{bottom:458.727225px;}
.y2e_c00189{bottom:459.051164px;}
.y2d_c00189{bottom:459.320681px;}
.y2c_c00189{bottom:460.020008px;}
.y2b_c00189{bottom:460.426772px;}
.y2a_c00189{bottom:461.813341px;}
.y29_c00189{bottom:462.237423px;}
.y28_c00189{bottom:474.532302px;}
.y27_c00189{bottom:475.370985px;}
.y26_c00189{bottom:475.779146px;}
.y25_c00189{bottom:476.909726px;}
.y24_c00189{bottom:477.168024px;}
.y23_c00189{bottom:478.213110px;}
.y22_c00189{bottom:479.336319px;}
.y21_c00189{bottom:479.790019px;}
.y20_c00189{bottom:491.378703px;}
.y1f_c00189{bottom:491.717706px;}
.y1e_c00189{bottom:492.127557px;}
.y1d_c00189{bottom:492.311331px;}
.y1c_c00189{bottom:493.204107px;}
.y1b_c00189{bottom:493.461476px;}
.y1a_c00189{bottom:494.059500px;}
.y19_c00189{bottom:494.304621px;}
.y18_c00189{bottom:494.909392px;}
.y17_c00189{bottom:508.632782px;}
.y16_c00189{bottom:509.109872px;}
.y15_c00189{bottom:509.963247px;}
.y14_c00189{bottom:510.984032px;}
.y13_c00189{bottom:511.435500px;}
.y12_c00189{bottom:512.723956px;}
.y11_c00189{bottom:513.544500px;}
.y10_c00189{bottom:528.178500px;}
.yf_c00189{bottom:542.700000px;}
.ye_c00189{bottom:542.991000px;}
.yd_c00189{bottom:543.565500px;}
.yc_c00189{bottom:544.245000px;}
.yb_c00189{bottom:544.521000px;}
.ya_c00189{bottom:545.598000px;}
.y9_c00189{bottom:546.036000px;}
.y8_c00189{bottom:546.481500px;}
.y7_c00189{bottom:560.484000px;}
.y6_c00189{bottom:561.259500px;}
.y5_c00189{bottom:561.673500px;}
.y4_c00189{bottom:562.846500px;}
.y3_c00189{bottom:563.106000px;}
.y2_c00189{bottom:563.763000px;}
.y1_c00189{bottom:577.243500px;}
.h5_c00189{height:56.700000px;}
.h13_c00189{height:57.756497px;}
.h16_c00189{height:57.758344px;}
.h10_c00189{height:58.806615px;}
.h19_c00189{height:59.850000px;}
.h12_c00189{height:59.856733px;}
.h15_c00189{height:60.908799px;}
.hb_c00189{height:60.909865px;}
.h9_c00189{height:60.910991px;}
.hd_c00189{height:60.913427px;}
.h3_c00189{height:61.950000px;}
.h14_c00189{height:61.956969px;}
.hc_c00189{height:61.963658px;}
.h1a_c00189{height:63.000000px;}
.hf_c00189{height:63.005323px;}
.h6_c00189{height:63.011370px;}
.h2_c00189{height:64.050000px;}
.h7_c00189{height:64.061560px;}
.h18_c00189{height:67.200000px;}
.ha_c00189{height:67.210886px;}
.he_c00189{height:67.214816px;}
.h11_c00189{height:68.257678px;}
.h17_c00189{height:68.259861px;}
.h8_c00189{height:69.312508px;}
.h4_c00189{height:70.350000px;}
.h1_c00189{height:623.250000px;}
.h0_c00189{height:623.400000px;}
.w1_c00189{width:383.250000px;}
.w0_c00189{width:383.400000px;}
.x0_c00189{left:0.000000px;}
.x74_c00189{left:47.085896px;}
.x6f_c00189{left:48.130875px;}
.x60_c00189{left:49.255215px;}
.x45_c00189{left:50.301821px;}
.x2e_c00189{left:51.589971px;}
.x18_c00189{left:52.724952px;}
.x3_c00189{left:54.378000px;}
.x71_c00189{left:56.296500px;}
.x54_c00189{left:58.165500px;}
.x12_c00189{left:61.339500px;}
.x3d_c00189{left:65.892000px;}
.x7a_c00189{left:70.788707px;}
.x26_c00189{left:72.632538px;}
.x21_c00189{left:73.993346px;}
.x46_c00189{left:76.002530px;}
.x3a_c00189{left:77.287461px;}
.x4d_c00189{left:79.216500px;}
.x2f_c00189{left:80.475471px;}
.x3e_c00189{left:83.185500px;}
.x9_c00189{left:85.480500px;}
.x82_c00189{left:87.750000px;}
.x7f_c00189{left:89.370000px;}
.x89_c00189{left:92.611500px;}
.x80_c00189{left:94.770000px;}
.x19_c00189{left:95.927556px;}
.x30_c00189{left:97.492971px;}
.x35_c00189{left:99.414000px;}
.x43_c00189{left:102.944232px;}
.x4_c00189{left:104.866500px;}
.x4e_c00189{left:106.761000px;}
.x57_c00189{left:108.706178px;}
.x77_c00189{left:110.469315px;}
.x1a_c00189{left:113.488238px;}
.x64_c00189{left:115.693245px;}
.xa_c00189{left:116.727000px;}
.x36_c00189{left:119.940000px;}
.x47_c00189{left:123.752538px;}
.x5_c00189{left:124.849500px;}
.x22_c00189{left:127.502322px;}
.x3f_c00189{left:129.633000px;}
.x65_c00189{left:135.582653px;}
.x3b_c00189{left:137.208141px;}
.x27_c00189{left:138.660030px;}
.x83_c00189{left:145.530000px;}
.x48_c00189{left:146.971964px;}
.x85_c00189{left:148.954500px;}
.x61_c00189{left:150.739148px;}
.x70_c00189{left:151.834875px;}
.x6b_c00189{left:153.257295px;}
.x31_c00189{left:155.130471px;}
.x1b_c00189{left:156.177785px;}
.x28_c00189{left:158.015289px;}
.x55_c00189{left:162.370500px;}
.x4f_c00189{left:164.337000px;}
.x10_c00189{left:165.780000px;}
.x72_c00189{left:167.466000px;}
.x7b_c00189{left:170.966207px;}
.x13_c00189{left:172.339500px;}
.x1c_c00189{left:174.541023px;}
.x86_c00189{left:175.888500px;}
.x23_c00189{left:177.294441px;}
.x37_c00189{left:180.454500px;}
.x78_c00189{left:182.666367px;}
.x5b_c00189{left:184.589978px;}
.x1_c00189{left:186.300000px;}
.x24_c00189{left:189.625485px;}
.x29_c00189{left:191.347035px;}
.x84_c00189{left:192.510000px;}
.xb_c00189{left:193.689000px;}
.x14_c00189{left:196.101000px;}
.x6c_c00189{left:197.274143px;}
.x62_c00189{left:199.141965px;}
.x8a_c00189{left:200.881500px;}
.x2a_c00189{left:204.189551px;}
.x49_c00189{left:206.652732px;}
.x7c_c00189{left:208.043207px;}
.x50_c00189{left:209.902500px;}
.x79_c00189{left:211.462398px;}
.xc_c00189{left:213.448500px;}
.x6_c00189{left:215.032500px;}
.x66_c00189{left:216.575670px;}
.x2b_c00189{left:219.580452px;}
.x68_c00189{left:220.947398px;}
.x6d_c00189{left:222.050760px;}
.x11_c00189{left:225.180000px;}
.x75_c00189{left:229.850259px;}
.x58_c00189{left:231.491333px;}
.x4a_c00189{left:233.172504px;}
.x32_c00189{left:234.988971px;}
.x1d_c00189{left:238.351094px;}
.x2c_c00189{left:239.825183px;}
.x40_c00189{left:241.726500px;}
.x25_c00189{left:243.443433px;}
.x5c_c00189{left:245.798310px;}
.x7_c00189{left:246.894000px;}
.x15_c00189{left:249.826500px;}
.x1e_c00189{left:251.498347px;}
.x63_c00189{left:256.311900px;}
.x5d_c00189{left:257.752590px;}
.x81_c00189{left:259.200000px;}
.xd_c00189{left:261.997500px;}
.x51_c00189{left:263.095500px;}
.x67_c00189{left:264.113175px;}
.x44_c00189{left:265.805836px;}
.x87_c00189{left:269.598000px;}
.x3c_c00189{left:271.679448px;}
.x8b_c00189{left:274.051500px;}
.x33_c00189{left:275.542971px;}
.x4b_c00189{left:276.675571px;}
.x41_c00189{left:278.281500px;}
.x5e_c00189{left:279.529785px;}
.x1f_c00189{left:280.730112px;}
.x73_c00189{left:283.045500px;}
.x52_c00189{left:285.489000px;}
.x2d_c00189{left:286.798887px;}
.x38_c00189{left:293.065500px;}
.x16_c00189{left:294.741000px;}
.x76_c00189{left:296.552612px;}
.x59_c00189{left:298.532820px;}
.x4c_c00189{left:300.910623px;}
.xe_c00189{left:303.045000px;}
.x20_c00189{left:304.969421px;}
.x8_c00189{left:306.561000px;}
.x6e_c00189{left:309.269955px;}
.x5a_c00189{left:311.687618px;}
.x69_c00189{left:315.446145px;}
.x7d_c00189{left:317.148707px;}
.x17_c00189{left:319.851000px;}
.xf_c00189{left:323.823000px;}
.x56_c00189{left:326.278500px;}
.x88_c00189{left:328.434000px;}
.x42_c00189{left:329.743500px;}
.x5f_c00189{left:331.351680px;}
.x7e_c00189{left:334.655207px;}
.x34_c00189{left:337.039971px;}
.x6a_c00189{left:338.131133px;}
.x2_c00189{left:354.780000px;}
.x53_c00189{left:360.244500px;}
.x39_c00189{left:367.068000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fs3_c00189{font-size:50.400000pt;}
.fs11_c00189{font-size:51.339108pt;}
.fs14_c00189{font-size:51.340750pt;}
.fse_c00189{font-size:52.272546pt;}
.fs17_c00189{font-size:53.200000pt;}
.fs10_c00189{font-size:53.205985pt;}
.fs13_c00189{font-size:54.141155pt;}
.fs9_c00189{font-size:54.142102pt;}
.fs7_c00189{font-size:54.143104pt;}
.fsb_c00189{font-size:54.145268pt;}
.fs1_c00189{font-size:55.066667pt;}
.fs12_c00189{font-size:55.072861pt;}
.fsa_c00189{font-size:55.078808pt;}
.fs18_c00189{font-size:56.000000pt;}
.fsd_c00189{font-size:56.004732pt;}
.fs4_c00189{font-size:56.010107pt;}
.fs0_c00189{font-size:56.933333pt;}
.fs5_c00189{font-size:56.943609pt;}
.fs16_c00189{font-size:59.733333pt;}
.fs8_c00189{font-size:59.743009pt;}
.fsc_c00189{font-size:59.746503pt;}
.fsf_c00189{font-size:60.673491pt;}
.fs15_c00189{font-size:60.675432pt;}
.fs6_c00189{font-size:61.611118pt;}
.fs2_c00189{font-size:62.533333pt;}
.y0_c00189{bottom:0.000000pt;}
.yd8_c00189{bottom:24.984000pt;}
.yd7_c00189{bottom:38.749333pt;}
.yd6_c00189{bottom:38.961333pt;}
.yd5_c00189{bottom:39.229333pt;}
.yd4_c00189{bottom:39.377333pt;}
.yd3_c00189{bottom:40.377333pt;}
.yd2_c00189{bottom:40.664000pt;}
.yd1_c00189{bottom:40.802667pt;}
.yd0_c00189{bottom:41.545333pt;}
.ycf_c00189{bottom:41.761333pt;}
.yce_c00189{bottom:55.489333pt;}
.ycd_c00189{bottom:70.956000pt;}
.ycc_c00189{bottom:85.624000pt;}
.ycb_c00189{bottom:101.272000pt;}
.yca_c00189{bottom:113.493253pt;}
.yc9_c00189{bottom:113.757796pt;}
.yc8_c00189{bottom:114.763199pt;}
.yc7_c00189{bottom:115.406501pt;}
.yc6_c00189{bottom:115.966776pt;}
.yc5_c00189{bottom:116.273139pt;}
.yc4_c00189{bottom:117.480569pt;}
.yc3_c00189{bottom:117.835484pt;}
.yc2_c00189{bottom:130.347477pt;}
.yc1_c00189{bottom:130.754125pt;}
.yc0_c00189{bottom:131.739405pt;}
.ybf_c00189{bottom:132.337073pt;}
.ybe_c00189{bottom:132.822895pt;}
.ybd_c00189{bottom:134.041909pt;}
.ybc_c00189{bottom:134.487033pt;}
.ybb_c00189{bottom:135.117805pt;}
.yba_c00189{bottom:146.176463pt;}
.yb9_c00189{bottom:146.491727pt;}
.yb8_c00189{bottom:147.282457pt;}
.yb7_c00189{bottom:147.559691pt;}
.yb6_c00189{bottom:147.768165pt;}
.yb5_c00189{bottom:148.891156pt;}
.yb4_c00189{bottom:149.168525pt;}
.yb3_c00189{bottom:150.054349pt;}
.yb2_c00189{bottom:150.485511pt;}
.yb1_c00189{bottom:161.642387pt;}
.yb0_c00189{bottom:161.936237pt;}
.yaf_c00189{bottom:162.687048pt;}
.yae_c00189{bottom:162.952339pt;}
.yad_c00189{bottom:163.682772pt;}
.yac_c00189{bottom:164.719432pt;}
.yab_c00189{bottom:165.082575pt;}
.yaa_c00189{bottom:165.362667pt;}
.ya9_c00189{bottom:177.003787pt;}
.ya8_c00189{bottom:177.320767pt;}
.ya7_c00189{bottom:177.677347pt;}
.ya6_c00189{bottom:178.174207pt;}
.ya5_c00189{bottom:178.551307pt;}
.ya4_c00189{bottom:179.329847pt;}
.ya3_c00189{bottom:179.837667pt;}
.ya2_c00189{bottom:180.247147pt;}
.ya1_c00189{bottom:180.712567pt;}
.ya0_c00189{bottom:193.565053pt;}
.y9f_c00189{bottom:193.956433pt;}
.y9e_c00189{bottom:194.805327pt;}
.y9d_c00189{bottom:195.158353pt;}
.y9c_c00189{bottom:195.783920pt;}
.y9b_c00189{bottom:196.305680pt;}
.y9a_c00189{bottom:197.273980pt;}
.y99_c00189{bottom:208.008907pt;}
.y98_c00189{bottom:208.371387pt;}
.y97_c00189{bottom:209.883427pt;}
.y96_c00189{bottom:210.574193pt;}
.y95_c00189{bottom:210.894007pt;}
.y94_c00189{bottom:211.359040pt;}
.y93_c00189{bottom:211.869293pt;}
.y92_c00189{bottom:212.635033pt;}
.y91_c00189{bottom:222.895353pt;}
.y90_c00189{bottom:223.549753pt;}
.y8f_c00189{bottom:224.479653pt;}
.y8e_c00189{bottom:224.874987pt;}
.y8d_c00189{bottom:226.062340pt;}
.y8c_c00189{bottom:226.451560pt;}
.y8b_c00189{bottom:226.846973pt;}
.y8a_c00189{bottom:227.757087pt;}
.y89_c00189{bottom:237.318753pt;}
.y88_c00189{bottom:238.603800pt;}
.y87_c00189{bottom:239.518100pt;}
.y86_c00189{bottom:240.292833pt;}
.y85_c00189{bottom:241.174100pt;}
.y84_c00189{bottom:241.381607pt;}
.y83_c00189{bottom:241.916680pt;}
.y82_c00189{bottom:252.764013pt;}
.y81_c00189{bottom:253.639013pt;}
.y80_c00189{bottom:254.006727pt;}
.y7f_c00189{bottom:254.208793pt;}
.y7e_c00189{bottom:254.435733pt;}
.y7d_c00189{bottom:255.242287pt;}
.y7c_c00189{bottom:255.567207pt;}
.y7b_c00189{bottom:256.201060pt;}
.y7a_c00189{bottom:256.725167pt;}
.y79_c00189{bottom:257.053380pt;}
.y78_c00189{bottom:257.520127pt;}
.y77_c00189{bottom:268.196280pt;}
.y76_c00189{bottom:268.383680pt;}
.y75_c00189{bottom:269.337580pt;}
.y74_c00189{bottom:269.656340pt;}
.y73_c00189{bottom:270.820513pt;}
.y72_c00189{bottom:271.084073pt;}
.y71_c00189{bottom:271.922093pt;}
.y70_c00189{bottom:283.227827pt;}
.y6f_c00189{bottom:283.955207pt;}
.y6e_c00189{bottom:284.220607pt;}
.y6d_c00189{bottom:285.413267pt;}
.y6c_c00189{bottom:286.511307pt;}
.y6b_c00189{bottom:286.802667pt;}
.y6a_c00189{bottom:298.571375pt;}
.y69_c00189{bottom:299.435216pt;}
.y68_c00189{bottom:299.693985pt;}
.y67_c00189{bottom:300.308660pt;}
.y66_c00189{bottom:300.552037pt;}
.y65_c00189{bottom:300.835195pt;}
.y64_c00189{bottom:301.500517pt;}
.y63_c00189{bottom:301.818809pt;}
.y62_c00189{bottom:302.161333pt;}
.y61_c00189{bottom:314.673223pt;}
.y60_c00189{bottom:315.017563pt;}
.y5f_c00189{bottom:315.636201pt;}
.y5e_c00189{bottom:316.013852pt;}
.y5d_c00189{bottom:316.862443pt;}
.y5c_c00189{bottom:317.193160pt;}
.y5b_c00189{bottom:317.872400pt;}
.y5a_c00189{bottom:318.237429pt;}
.y59_c00189{bottom:329.407548pt;}
.y58_c00189{bottom:330.307115pt;}
.y57_c00189{bottom:331.294871pt;}
.y56_c00189{bottom:331.571112pt;}
.y55_c00189{bottom:332.388240pt;}
.y54_c00189{bottom:332.622879pt;}
.y53_c00189{bottom:333.359024pt;}
.y52_c00189{bottom:344.492391pt;}
.y51_c00189{bottom:345.453015pt;}
.y50_c00189{bottom:346.135375pt;}
.y4f_c00189{bottom:346.851531pt;}
.y4e_c00189{bottom:347.154071pt;}
.y4d_c00189{bottom:348.227787pt;}
.y4c_c00189{bottom:349.094807pt;}
.y4b_c00189{bottom:349.417619pt;}
.y4a_c00189{bottom:349.682667pt;}
.y49_c00189{bottom:360.295771pt;}
.y48_c00189{bottom:360.722928pt;}
.y47_c00189{bottom:361.103229pt;}
.y46_c00189{bottom:361.827213pt;}
.y45_c00189{bottom:362.297411pt;}
.y44_c00189{bottom:363.353291pt;}
.y43_c00189{bottom:364.525424pt;}
.y42_c00189{bottom:365.041541pt;}
.y41_c00189{bottom:374.636379pt;}
.y40_c00189{bottom:375.820419pt;}
.y3f_c00189{bottom:376.567971pt;}
.y3e_c00189{bottom:377.622195pt;}
.y3d_c00189{bottom:378.590427pt;}
.y3c_c00189{bottom:378.918843pt;}
.y3b_c00189{bottom:379.682667pt;}
.y3a_c00189{bottom:390.213491pt;}
.y39_c00189{bottom:391.252107pt;}
.y38_c00189{bottom:391.937019pt;}
.y37_c00189{bottom:392.926868pt;}
.y36_c00189{bottom:393.285740pt;}
.y35_c00189{bottom:394.259173pt;}
.y34_c00189{bottom:394.546580pt;}
.y33_c00189{bottom:395.034424pt;}
.y32_c00189{bottom:406.208777pt;}
.y31_c00189{bottom:406.502245pt;}
.y30_c00189{bottom:407.379609pt;}
.y2f_c00189{bottom:407.757533pt;}
.y2e_c00189{bottom:408.045479pt;}
.y2d_c00189{bottom:408.285049pt;}
.y2c_c00189{bottom:408.906673pt;}
.y2b_c00189{bottom:409.268241pt;}
.y2a_c00189{bottom:410.500748pt;}
.y29_c00189{bottom:410.877709pt;}
.y28_c00189{bottom:421.806491pt;}
.y27_c00189{bottom:422.551987pt;}
.y26_c00189{bottom:422.914796pt;}
.y25_c00189{bottom:423.919756pt;}
.y24_c00189{bottom:424.149355pt;}
.y23_c00189{bottom:425.078320pt;}
.y22_c00189{bottom:426.076728pt;}
.y21_c00189{bottom:426.480017pt;}
.y20_c00189{bottom:436.781069pt;}
.y1f_c00189{bottom:437.082405pt;}
.y1e_c00189{bottom:437.446717pt;}
.y1d_c00189{bottom:437.610072pt;}
.y1c_c00189{bottom:438.403651pt;}
.y1b_c00189{bottom:438.632423pt;}
.y1a_c00189{bottom:439.164000pt;}
.y19_c00189{bottom:439.381885pt;}
.y18_c00189{bottom:439.919460pt;}
.y17_c00189{bottom:452.118028pt;}
.y16_c00189{bottom:452.542108pt;}
.y15_c00189{bottom:453.300664pt;}
.y14_c00189{bottom:454.208028pt;}
.y13_c00189{bottom:454.609333pt;}
.y12_c00189{bottom:455.754628pt;}
.y11_c00189{bottom:456.484000pt;}
.y10_c00189{bottom:469.492000pt;}
.yf_c00189{bottom:482.400000pt;}
.ye_c00189{bottom:482.658667pt;}
.yd_c00189{bottom:483.169333pt;}
.yc_c00189{bottom:483.773333pt;}
.yb_c00189{bottom:484.018667pt;}
.ya_c00189{bottom:484.976000pt;}
.y9_c00189{bottom:485.365333pt;}
.y8_c00189{bottom:485.761333pt;}
.y7_c00189{bottom:498.208000pt;}
.y6_c00189{bottom:498.897333pt;}
.y5_c00189{bottom:499.265333pt;}
.y4_c00189{bottom:500.308000pt;}
.y3_c00189{bottom:500.538667pt;}
.y2_c00189{bottom:501.122667pt;}
.y1_c00189{bottom:513.105333pt;}
.h5_c00189{height:50.400000pt;}
.h13_c00189{height:51.339108pt;}
.h16_c00189{height:51.340750pt;}
.h10_c00189{height:52.272546pt;}
.h19_c00189{height:53.200000pt;}
.h12_c00189{height:53.205985pt;}
.h15_c00189{height:54.141155pt;}
.hb_c00189{height:54.142102pt;}
.h9_c00189{height:54.143104pt;}
.hd_c00189{height:54.145268pt;}
.h3_c00189{height:55.066667pt;}
.h14_c00189{height:55.072861pt;}
.hc_c00189{height:55.078808pt;}
.h1a_c00189{height:56.000000pt;}
.hf_c00189{height:56.004732pt;}
.h6_c00189{height:56.010107pt;}
.h2_c00189{height:56.933333pt;}
.h7_c00189{height:56.943609pt;}
.h18_c00189{height:59.733333pt;}
.ha_c00189{height:59.743009pt;}
.he_c00189{height:59.746503pt;}
.h11_c00189{height:60.673491pt;}
.h17_c00189{height:60.675432pt;}
.h8_c00189{height:61.611118pt;}
.h4_c00189{height:62.533333pt;}
.h1_c00189{height:554.000000pt;}
.h0_c00189{height:554.133333pt;}
.w1_c00189{width:340.666667pt;}
.w0_c00189{width:340.800000pt;}
.x0_c00189{left:0.000000pt;}
.x74_c00189{left:41.854129pt;}
.x6f_c00189{left:42.783000pt;}
.x60_c00189{left:43.782413pt;}
.x45_c00189{left:44.712729pt;}
.x2e_c00189{left:45.857752pt;}
.x18_c00189{left:46.866624pt;}
.x3_c00189{left:48.336000pt;}
.x71_c00189{left:50.041333pt;}
.x54_c00189{left:51.702667pt;}
.x12_c00189{left:54.524000pt;}
.x3d_c00189{left:58.570667pt;}
.x7a_c00189{left:62.923295pt;}
.x26_c00189{left:64.562256pt;}
.x21_c00189{left:65.771863pt;}
.x46_c00189{left:67.557804pt;}
.x3a_c00189{left:68.699965pt;}
.x4d_c00189{left:70.414667pt;}
.x2f_c00189{left:71.533752pt;}
.x3e_c00189{left:73.942667pt;}
.x9_c00189{left:75.982667pt;}
.x82_c00189{left:78.000000pt;}
.x7f_c00189{left:79.440000pt;}
.x89_c00189{left:82.321333pt;}
.x80_c00189{left:84.240000pt;}
.x19_c00189{left:85.268939pt;}
.x30_c00189{left:86.660419pt;}
.x35_c00189{left:88.368000pt;}
.x43_c00189{left:91.505984pt;}
.x4_c00189{left:93.214667pt;}
.x4e_c00189{left:94.898667pt;}
.x57_c00189{left:96.627713pt;}
.x77_c00189{left:98.194947pt;}
.x1a_c00189{left:100.878433pt;}
.x64_c00189{left:102.838440pt;}
.xa_c00189{left:103.757333pt;}
.x36_c00189{left:106.613333pt;}
.x47_c00189{left:110.002256pt;}
.x5_c00189{left:110.977333pt;}
.x22_c00189{left:113.335397pt;}
.x3f_c00189{left:115.229333pt;}
.x65_c00189{left:120.517913pt;}
.x3b_c00189{left:121.962792pt;}
.x27_c00189{left:123.253360pt;}
.x83_c00189{left:129.360000pt;}
.x48_c00189{left:130.641745pt;}
.x85_c00189{left:132.404000pt;}
.x61_c00189{left:133.990353pt;}
.x70_c00189{left:134.964333pt;}
.x6b_c00189{left:136.228707pt;}
.x31_c00189{left:137.893752pt;}
.x1b_c00189{left:138.824697pt;}
.x28_c00189{left:140.458035pt;}
.x55_c00189{left:144.329333pt;}
.x4f_c00189{left:146.077333pt;}
.x10_c00189{left:147.360000pt;}
.x72_c00189{left:148.858667pt;}
.x7b_c00189{left:151.969961pt;}
.x13_c00189{left:153.190667pt;}
.x1c_c00189{left:155.147576pt;}
.x86_c00189{left:156.345333pt;}
.x23_c00189{left:157.595059pt;}
.x37_c00189{left:160.404000pt;}
.x78_c00189{left:162.370104pt;}
.x5b_c00189{left:164.079980pt;}
.x1_c00189{left:165.600000pt;}
.x24_c00189{left:168.555987pt;}
.x29_c00189{left:170.086253pt;}
.x84_c00189{left:171.120000pt;}
.xb_c00189{left:172.168000pt;}
.x14_c00189{left:174.312000pt;}
.x6c_c00189{left:175.354793pt;}
.x62_c00189{left:177.015080pt;}
.x8a_c00189{left:178.561333pt;}
.x2a_c00189{left:181.501823pt;}
.x49_c00189{left:183.691317pt;}
.x7c_c00189{left:184.927295pt;}
.x50_c00189{left:186.580000pt;}
.x79_c00189{left:187.966576pt;}
.xc_c00189{left:189.732000pt;}
.x6_c00189{left:191.140000pt;}
.x66_c00189{left:192.511707pt;}
.x2b_c00189{left:195.182624pt;}
.x68_c00189{left:196.397687pt;}
.x6d_c00189{left:197.378453pt;}
.x11_c00189{left:200.160000pt;}
.x75_c00189{left:204.311341pt;}
.x58_c00189{left:205.770073pt;}
.x4a_c00189{left:207.264448pt;}
.x32_c00189{left:208.879085pt;}
.x1d_c00189{left:211.867639pt;}
.x2c_c00189{left:213.177940pt;}
.x40_c00189{left:214.868000pt;}
.x25_c00189{left:216.394163pt;}
.x5c_c00189{left:218.487387pt;}
.x7_c00189{left:219.461333pt;}
.x15_c00189{left:222.068000pt;}
.x1e_c00189{left:223.554087pt;}
.x63_c00189{left:227.832800pt;}
.x5d_c00189{left:229.113413pt;}
.x81_c00189{left:230.400000pt;}
.xd_c00189{left:232.886667pt;}
.x51_c00189{left:233.862667pt;}
.x67_c00189{left:234.767267pt;}
.x44_c00189{left:236.271855pt;}
.x87_c00189{left:239.642667pt;}
.x3c_c00189{left:241.492843pt;}
.x8b_c00189{left:243.601333pt;}
.x33_c00189{left:244.927085pt;}
.x4b_c00189{left:245.933841pt;}
.x41_c00189{left:247.361333pt;}
.x5e_c00189{left:248.470920pt;}
.x1f_c00189{left:249.537877pt;}
.x73_c00189{left:251.596000pt;}
.x52_c00189{left:253.768000pt;}
.x2d_c00189{left:254.932344pt;}
.x38_c00189{left:260.502667pt;}
.x16_c00189{left:261.992000pt;}
.x76_c00189{left:263.602321pt;}
.x59_c00189{left:265.362507pt;}
.x4c_c00189{left:267.476109pt;}
.xe_c00189{left:269.373333pt;}
.x20_c00189{left:271.083929pt;}
.x8_c00189{left:272.498667pt;}
.x6e_c00189{left:274.906627pt;}
.x5a_c00189{left:277.055660pt;}
.x69_c00189{left:280.396573pt;}
.x7d_c00189{left:281.909961pt;}
.x17_c00189{left:284.312000pt;}
.xf_c00189{left:287.842667pt;}
.x56_c00189{left:290.025333pt;}
.x88_c00189{left:291.941333pt;}
.x42_c00189{left:293.105333pt;}
.x5f_c00189{left:294.534827pt;}
.x7e_c00189{left:297.471295pt;}
.x34_c00189{left:299.591085pt;}
.x6a_c00189{left:300.561007pt;}
.x2_c00189{left:315.360000pt;}
.x53_c00189{left:320.217333pt;}
.x39_c00189{left:326.282667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00190 {
    display:none;
  }
  .loading-indicator_c00190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00190 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00190 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00190" -> "#page-container .classname_c00190")
 */
.pf_c00190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00190 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00190 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00190 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00190 {overflow:visible;}
  }
}
.c_c00190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00190 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00190:after { /* webkit #35443 */
  content: '';
}
.t_c00190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00190 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00190 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00190 { /* info for Javascript */
  display:none;
}
.l_c00190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00190:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00190 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00190.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00190{transform:matrix(0.011611,-0.000290,0.006248,0.249922,0,0);-ms-transform:matrix(0.011611,-0.000290,0.006248,0.249922,0,0);-webkit-transform:matrix(0.011611,-0.000290,0.006248,0.249922,0,0);}
.m4a_c00190{transform:matrix(0.121185,-0.002908,0.005998,0.249928,0,0);-ms-transform:matrix(0.121185,-0.002908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.121185,-0.002908,0.005998,0.249928,0,0);}
.m26_c00190{transform:matrix(0.127685,-0.003192,0.006248,0.249922,0,0);-ms-transform:matrix(0.127685,-0.003192,0.006248,0.249922,0,0);-webkit-transform:matrix(0.127685,-0.003192,0.006248,0.249922,0,0);}
.mf0_c00190{transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.147130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147130,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148610,0.000000,0.000000,0.250000,0,0);}
.mf1_c00190{transform:matrix(0.149955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00190{transform:matrix(0.153028,-0.002601,0.004249,0.249964,0,0);-ms-transform:matrix(0.153028,-0.002601,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153028,-0.002601,0.004249,0.249964,0,0);}
.m7f_c00190{transform:matrix(0.154275,-0.002160,0.003500,0.249976,0,0);-ms-transform:matrix(0.154275,-0.002160,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154275,-0.002160,0.003500,0.249976,0,0);}
.mb3_c00190{transform:matrix(0.155737,-0.002648,0.004249,0.249964,0,0);-ms-transform:matrix(0.155737,-0.002648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155737,-0.002648,0.004249,0.249964,0,0);}
.mb5_c00190{transform:matrix(0.157202,-0.002672,0.004249,0.249964,0,0);-ms-transform:matrix(0.157202,-0.002672,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157202,-0.002672,0.004249,0.249964,0,0);}
.m24_c00190{transform:matrix(0.157316,-0.003933,0.006248,0.249922,0,0);-ms-transform:matrix(0.157316,-0.003933,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157316,-0.003933,0.006248,0.249922,0,0);}
.m36_c00190{transform:matrix(0.158211,-0.003955,0.006248,0.249922,0,0);-ms-transform:matrix(0.158211,-0.003955,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158211,-0.003955,0.006248,0.249922,0,0);}
.m1a_c00190{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m81_c00190{transform:matrix(0.159039,-0.002227,0.003500,0.249976,0,0);-ms-transform:matrix(0.159039,-0.002227,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159039,-0.002227,0.003500,0.249976,0,0);}
.m1_c00190{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);}
.ma2_c00190{transform:matrix(0.161777,-0.002750,0.004249,0.249964,0,0);-ms-transform:matrix(0.161777,-0.002750,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161777,-0.002750,0.004249,0.249964,0,0);}
.m23_c00190{transform:matrix(0.162019,-0.004050,0.006248,0.249922,0,0);-ms-transform:matrix(0.162019,-0.004050,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162019,-0.004050,0.006248,0.249922,0,0);}
.m13_c00190{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{transform:matrix(0.162889,-0.004072,0.006248,0.249922,0,0);-ms-transform:matrix(0.162889,-0.004072,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162889,-0.004072,0.006248,0.249922,0,0);}
.m9a_c00190{transform:matrix(0.163009,-0.002608,0.003999,0.249968,0,0);-ms-transform:matrix(0.163009,-0.002608,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163009,-0.002608,0.003999,0.249968,0,0);}
.m7e_c00190{transform:matrix(0.163049,-0.002283,0.003500,0.249976,0,0);-ms-transform:matrix(0.163049,-0.002283,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163049,-0.002283,0.003500,0.249976,0,0);}
.m35_c00190{transform:matrix(0.163054,-0.004076,0.006248,0.249922,0,0);-ms-transform:matrix(0.163054,-0.004076,0.006248,0.249922,0,0);-webkit-transform:matrix(0.163054,-0.004076,0.006248,0.249922,0,0);}
.mf2_c00190{transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{transform:matrix(0.164060,-0.003609,0.005499,0.249940,0,0);-ms-transform:matrix(0.164060,-0.003609,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164060,-0.003609,0.005499,0.249940,0,0);}
.mba_c00190{transform:matrix(0.166146,-0.002824,0.004249,0.249964,0,0);-ms-transform:matrix(0.166146,-0.002824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166146,-0.002824,0.004249,0.249964,0,0);}
.me7_c00190{transform:matrix(0.166266,-0.002827,0.004249,0.249964,0,0);-ms-transform:matrix(0.166266,-0.002827,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166266,-0.002827,0.004249,0.249964,0,0);}
.mc8_c00190{transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);-ms-transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);}
.m33_c00190{transform:matrix(0.167023,-0.004176,0.006248,0.249922,0,0);-ms-transform:matrix(0.167023,-0.004176,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167023,-0.004176,0.006248,0.249922,0,0);}
.md0_c00190{transform:matrix(0.167326,-0.002845,0.004249,0.249964,0,0);-ms-transform:matrix(0.167326,-0.002845,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167326,-0.002845,0.004249,0.249964,0,0);}
.mb7_c00190{transform:matrix(0.167976,-0.002856,0.004249,0.249964,0,0);-ms-transform:matrix(0.167976,-0.002856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167976,-0.002856,0.004249,0.249964,0,0);}
.mee_c00190{transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);}
.me9_c00190{transform:matrix(0.168301,-0.002861,0.004249,0.249964,0,0);-ms-transform:matrix(0.168301,-0.002861,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168301,-0.002861,0.004249,0.249964,0,0);}
.m47_c00190{transform:matrix(0.168446,-0.004043,0.005998,0.249928,0,0);-ms-transform:matrix(0.168446,-0.004043,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168446,-0.004043,0.005998,0.249928,0,0);}
.m3f_c00190{transform:matrix(0.169047,-0.004226,0.006248,0.249922,0,0);-ms-transform:matrix(0.169047,-0.004226,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169047,-0.004226,0.006248,0.249922,0,0);}
.m62_c00190{transform:matrix(0.169319,-0.003725,0.005499,0.249940,0,0);-ms-transform:matrix(0.169319,-0.003725,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169319,-0.003725,0.005499,0.249940,0,0);}
.m8d_c00190{transform:matrix(0.169578,-0.002713,0.003999,0.249968,0,0);-ms-transform:matrix(0.169578,-0.002713,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169578,-0.002713,0.003999,0.249968,0,0);}
.m77_c00190{transform:matrix(0.171009,-0.003762,0.005499,0.249940,0,0);-ms-transform:matrix(0.171009,-0.003762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171009,-0.003762,0.005499,0.249940,0,0);}
.m3_c00190{transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);}
.ma8_c00190{transform:matrix(0.171695,-0.002919,0.004249,0.249964,0,0);-ms-transform:matrix(0.171695,-0.002919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171695,-0.002919,0.004249,0.249964,0,0);}
.m7b_c00190{transform:matrix(0.172023,-0.003785,0.005499,0.249940,0,0);-ms-transform:matrix(0.172023,-0.003785,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172023,-0.003785,0.005499,0.249940,0,0);}
.m55_c00190{transform:matrix(0.172093,-0.002753,0.003999,0.249968,0,0);-ms-transform:matrix(0.172093,-0.002753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172093,-0.002753,0.003999,0.249968,0,0);}
.m9e_c00190{transform:matrix(0.173150,-0.002944,0.004249,0.249964,0,0);-ms-transform:matrix(0.173150,-0.002944,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173150,-0.002944,0.004249,0.249964,0,0);}
.mce_c00190{transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);-ms-transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);}
.m38_c00190{transform:matrix(0.173966,-0.004349,0.006248,0.249922,0,0);-ms-transform:matrix(0.173966,-0.004349,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173966,-0.004349,0.006248,0.249922,0,0);}
.m76_c00190{transform:matrix(0.174443,-0.003838,0.005499,0.249940,0,0);-ms-transform:matrix(0.174443,-0.003838,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174443,-0.003838,0.005499,0.249940,0,0);}
.m98_c00190{transform:matrix(0.174683,-0.002795,0.003999,0.249968,0,0);-ms-transform:matrix(0.174683,-0.002795,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174683,-0.002795,0.003999,0.249968,0,0);}
.m86_c00190{transform:matrix(0.174873,-0.002798,0.003999,0.249968,0,0);-ms-transform:matrix(0.174873,-0.002798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174873,-0.002798,0.003999,0.249968,0,0);}
.m1b_c00190{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m92_c00190{transform:matrix(0.175548,-0.002809,0.003999,0.249968,0,0);-ms-transform:matrix(0.175548,-0.002809,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175548,-0.002809,0.003999,0.249968,0,0);}
.mc1_c00190{transform:matrix(0.175610,-0.002985,0.004249,0.249964,0,0);-ms-transform:matrix(0.175610,-0.002985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175610,-0.002985,0.004249,0.249964,0,0);}
.mef_c00190{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{transform:matrix(0.178194,-0.004455,0.006248,0.249922,0,0);-ms-transform:matrix(0.178194,-0.004455,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178194,-0.004455,0.006248,0.249922,0,0);}
.m99_c00190{transform:matrix(0.179537,-0.002873,0.003999,0.249968,0,0);-ms-transform:matrix(0.179537,-0.002873,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179537,-0.002873,0.003999,0.249968,0,0);}
.m90_c00190{transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);}
.mbe_c00190{transform:matrix(0.180129,-0.003062,0.004249,0.249964,0,0);-ms-transform:matrix(0.180129,-0.003062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180129,-0.003062,0.004249,0.249964,0,0);}
.m31_c00190{transform:matrix(0.180759,-0.004519,0.006248,0.249922,0,0);-ms-transform:matrix(0.180759,-0.004519,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180759,-0.004519,0.006248,0.249922,0,0);}
.md1_c00190{transform:matrix(0.180774,-0.003073,0.004249,0.249964,0,0);-ms-transform:matrix(0.180774,-0.003073,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180774,-0.003073,0.004249,0.249964,0,0);}
.md6_c00190{transform:matrix(0.181349,-0.003083,0.004249,0.249964,0,0);-ms-transform:matrix(0.181349,-0.003083,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181349,-0.003083,0.004249,0.249964,0,0);}
.m14_c00190{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.mb9_c00190{transform:matrix(0.181749,-0.003090,0.004249,0.249964,0,0);-ms-transform:matrix(0.181749,-0.003090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181749,-0.003090,0.004249,0.249964,0,0);}
.m2d_c00190{transform:matrix(0.181798,-0.004545,0.006248,0.249922,0,0);-ms-transform:matrix(0.181798,-0.004545,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181798,-0.004545,0.006248,0.249922,0,0);}
.m9_c00190{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m9c_c00190{transform:matrix(0.181974,-0.003094,0.004249,0.249964,0,0);-ms-transform:matrix(0.181974,-0.003094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181974,-0.003094,0.004249,0.249964,0,0);}
.m7_c00190{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.md3_c00190{transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);}
.m18_c00190{transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);}
.mb8_c00190{transform:matrix(0.183428,-0.003118,0.004249,0.249964,0,0);-ms-transform:matrix(0.183428,-0.003118,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183428,-0.003118,0.004249,0.249964,0,0);}
.mec_c00190{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);}
.me2_c00190{transform:matrix(0.183923,-0.003127,0.004249,0.249964,0,0);-ms-transform:matrix(0.183923,-0.003127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183923,-0.003127,0.004249,0.249964,0,0);}
.m96_c00190{transform:matrix(0.183966,-0.002943,0.003999,0.249968,0,0);-ms-transform:matrix(0.183966,-0.002943,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183966,-0.002943,0.003999,0.249968,0,0);}
.ma5_c00190{transform:matrix(0.185218,-0.003149,0.004249,0.249964,0,0);-ms-transform:matrix(0.185218,-0.003149,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185218,-0.003149,0.004249,0.249964,0,0);}
.m25_c00190{transform:matrix(0.186457,-0.004661,0.006248,0.249922,0,0);-ms-transform:matrix(0.186457,-0.004661,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186457,-0.004661,0.006248,0.249922,0,0);}
.m9f_c00190{transform:matrix(0.186753,-0.003175,0.004249,0.249964,0,0);-ms-transform:matrix(0.186753,-0.003175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186753,-0.003175,0.004249,0.249964,0,0);}
.md8_c00190{transform:matrix(0.187258,-0.003183,0.004249,0.249964,0,0);-ms-transform:matrix(0.187258,-0.003183,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187258,-0.003183,0.004249,0.249964,0,0);}
.mb4_c00190{transform:matrix(0.187623,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187623,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187623,-0.003190,0.004249,0.249964,0,0);}
.mcf_c00190{transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);-ms-transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);}
.me8_c00190{transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);-ms-transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);}
.mea_c00190{transform:matrix(0.188508,-0.003205,0.004249,0.249964,0,0);-ms-transform:matrix(0.188508,-0.003205,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188508,-0.003205,0.004249,0.249964,0,0);}
.m7c_c00190{transform:matrix(0.188519,-0.004147,0.005499,0.249940,0,0);-ms-transform:matrix(0.188519,-0.004147,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188519,-0.004147,0.005499,0.249940,0,0);}
.mc7_c00190{transform:matrix(0.189153,-0.003216,0.004249,0.249964,0,0);-ms-transform:matrix(0.189153,-0.003216,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189153,-0.003216,0.004249,0.249964,0,0);}
.m80_c00190{transform:matrix(0.189166,-0.002648,0.003500,0.249976,0,0);-ms-transform:matrix(0.189166,-0.002648,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189166,-0.002648,0.003500,0.249976,0,0);}
.mda_c00190{transform:matrix(0.189258,-0.003217,0.004249,0.249964,0,0);-ms-transform:matrix(0.189258,-0.003217,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189258,-0.003217,0.004249,0.249964,0,0);}
.m27_c00190{transform:matrix(0.189571,-0.004739,0.006248,0.249922,0,0);-ms-transform:matrix(0.189571,-0.004739,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189571,-0.004739,0.006248,0.249922,0,0);}
.meb_c00190{transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);}
.m9d_c00190{transform:matrix(0.189728,-0.003225,0.004249,0.249964,0,0);-ms-transform:matrix(0.189728,-0.003225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189728,-0.003225,0.004249,0.249964,0,0);}
.m37_c00190{transform:matrix(0.189986,-0.004750,0.006248,0.249922,0,0);-ms-transform:matrix(0.189986,-0.004750,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189986,-0.004750,0.006248,0.249922,0,0);}
.mc4_c00190{transform:matrix(0.190153,-0.003233,0.004249,0.249964,0,0);-ms-transform:matrix(0.190153,-0.003233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190153,-0.003233,0.004249,0.249964,0,0);}
.ma7_c00190{transform:matrix(0.190607,-0.003240,0.004249,0.249964,0,0);-ms-transform:matrix(0.190607,-0.003240,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190607,-0.003240,0.004249,0.249964,0,0);}
.m75_c00190{transform:matrix(0.190729,-0.004196,0.005499,0.249940,0,0);-ms-transform:matrix(0.190729,-0.004196,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190729,-0.004196,0.005499,0.249940,0,0);}
.mbd_c00190{transform:matrix(0.190897,-0.003245,0.004249,0.249964,0,0);-ms-transform:matrix(0.190897,-0.003245,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190897,-0.003245,0.004249,0.249964,0,0);}
.m82_c00190{transform:matrix(0.191586,-0.002682,0.003500,0.249976,0,0);-ms-transform:matrix(0.191586,-0.002682,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191586,-0.002682,0.003500,0.249976,0,0);}
.ma1_c00190{transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191767,-0.003260,0.004249,0.249964,0,0);}
.m34_c00190{transform:matrix(0.192780,-0.004819,0.006248,0.249922,0,0);-ms-transform:matrix(0.192780,-0.004819,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192780,-0.004819,0.006248,0.249922,0,0);}
.m15_c00190{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.mbf_c00190{transform:matrix(0.193592,-0.003291,0.004249,0.249964,0,0);-ms-transform:matrix(0.193592,-0.003291,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193592,-0.003291,0.004249,0.249964,0,0);}
.me5_c00190{transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);-ms-transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);}
.ma3_c00190{transform:matrix(0.193962,-0.003297,0.004249,0.249964,0,0);-ms-transform:matrix(0.193962,-0.003297,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193962,-0.003297,0.004249,0.249964,0,0);}
.m51_c00190{transform:matrix(0.194314,-0.004664,0.005998,0.249928,0,0);-ms-transform:matrix(0.194314,-0.004664,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194314,-0.004664,0.005998,0.249928,0,0);}
.m32_c00190{transform:matrix(0.194424,-0.004861,0.006248,0.249922,0,0);-ms-transform:matrix(0.194424,-0.004861,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194424,-0.004861,0.006248,0.249922,0,0);}
.ma0_c00190{transform:matrix(0.194842,-0.003312,0.004249,0.249964,0,0);-ms-transform:matrix(0.194842,-0.003312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194842,-0.003312,0.004249,0.249964,0,0);}
.m64_c00190{transform:matrix(0.195023,-0.004291,0.005499,0.249940,0,0);-ms-transform:matrix(0.195023,-0.004291,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195023,-0.004291,0.005499,0.249940,0,0);}
.md2_c00190{transform:matrix(0.195082,-0.003316,0.004249,0.249964,0,0);-ms-transform:matrix(0.195082,-0.003316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195082,-0.003316,0.004249,0.249964,0,0);}
.mc0_c00190{transform:matrix(0.195167,-0.003318,0.004249,0.249964,0,0);-ms-transform:matrix(0.195167,-0.003318,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195167,-0.003318,0.004249,0.249964,0,0);}
.m5f_c00190{transform:matrix(0.195408,-0.004299,0.005499,0.249940,0,0);-ms-transform:matrix(0.195408,-0.004299,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195408,-0.004299,0.005499,0.249940,0,0);}
.mc2_c00190{transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);-ms-transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);}
.m87_c00190{transform:matrix(0.196325,-0.003141,0.003999,0.249968,0,0);-ms-transform:matrix(0.196325,-0.003141,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196325,-0.003141,0.003999,0.249968,0,0);}
.m11_c00190{transform:matrix(0.196535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196535,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{transform:matrix(0.196882,-0.004331,0.005499,0.249940,0,0);-ms-transform:matrix(0.196882,-0.004331,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196882,-0.004331,0.005499,0.249940,0,0);}
.mcd_c00190{transform:matrix(0.197122,-0.003351,0.004249,0.249964,0,0);-ms-transform:matrix(0.197122,-0.003351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197122,-0.003351,0.004249,0.249964,0,0);}
.m42_c00190{transform:matrix(0.197328,-0.004933,0.006248,0.249922,0,0);-ms-transform:matrix(0.197328,-0.004933,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197328,-0.004933,0.006248,0.249922,0,0);}
.m78_c00190{transform:matrix(0.197517,-0.004345,0.005499,0.249940,0,0);-ms-transform:matrix(0.197517,-0.004345,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197517,-0.004345,0.005499,0.249940,0,0);}
.m8b_c00190{transform:matrix(0.197855,-0.003166,0.003999,0.249968,0,0);-ms-transform:matrix(0.197855,-0.003166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197855,-0.003166,0.003999,0.249968,0,0);}
.mc9_c00190{transform:matrix(0.197901,-0.003364,0.004249,0.249964,0,0);-ms-transform:matrix(0.197901,-0.003364,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197901,-0.003364,0.004249,0.249964,0,0);}
.m2e_c00190{transform:matrix(0.197928,-0.004948,0.006248,0.249922,0,0);-ms-transform:matrix(0.197928,-0.004948,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197928,-0.004948,0.006248,0.249922,0,0);}
.m74_c00190{transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-ms-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);}
.m22_c00190{transform:matrix(0.198593,-0.004965,0.006248,0.249922,0,0);-ms-transform:matrix(0.198593,-0.004965,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198593,-0.004965,0.006248,0.249922,0,0);}
.m1d_c00190{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);-ms-transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);}
.m88_c00190{transform:matrix(0.199434,-0.003191,0.003999,0.249968,0,0);-ms-transform:matrix(0.199434,-0.003191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199434,-0.003191,0.003999,0.249968,0,0);}
.m46_c00190{transform:matrix(0.199573,-0.004989,0.006248,0.249922,0,0);-ms-transform:matrix(0.199573,-0.004989,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199573,-0.004989,0.006248,0.249922,0,0);}
.m89_c00190{transform:matrix(0.200044,-0.003201,0.003999,0.249968,0,0);-ms-transform:matrix(0.200044,-0.003201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200044,-0.003201,0.003999,0.249968,0,0);}
.m93_c00190{transform:matrix(0.200069,-0.003201,0.003999,0.249968,0,0);-ms-transform:matrix(0.200069,-0.003201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200069,-0.003201,0.003999,0.249968,0,0);}
.med_c00190{transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200180,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{transform:matrix(0.200452,-0.004811,0.005998,0.249928,0,0);-ms-transform:matrix(0.200452,-0.004811,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200452,-0.004811,0.005998,0.249928,0,0);}
.m6b_c00190{transform:matrix(0.200696,-0.004415,0.005499,0.249940,0,0);-ms-transform:matrix(0.200696,-0.004415,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200696,-0.004415,0.005499,0.249940,0,0);}
.m9b_c00190{transform:matrix(0.200906,-0.003415,0.004249,0.249964,0,0);-ms-transform:matrix(0.200906,-0.003415,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200906,-0.003415,0.004249,0.249964,0,0);}
.md4_c00190{transform:matrix(0.201356,-0.003423,0.004249,0.249964,0,0);-ms-transform:matrix(0.201356,-0.003423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201356,-0.003423,0.004249,0.249964,0,0);}
.md_c00190{transform:matrix(0.201430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201430,0.000000,0.000000,0.250000,0,0);}
.ma6_c00190{transform:matrix(0.201866,-0.003432,0.004249,0.249964,0,0);-ms-transform:matrix(0.201866,-0.003432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201866,-0.003432,0.004249,0.249964,0,0);}
.m30_c00190{transform:matrix(0.201937,-0.005048,0.006248,0.249922,0,0);-ms-transform:matrix(0.201937,-0.005048,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201937,-0.005048,0.006248,0.249922,0,0);}
.mbc_c00190{transform:matrix(0.201986,-0.003434,0.004249,0.249964,0,0);-ms-transform:matrix(0.201986,-0.003434,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201986,-0.003434,0.004249,0.249964,0,0);}
.m5c_c00190{transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);-ms-transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);}
.m71_c00190{transform:matrix(0.202201,-0.004448,0.005499,0.249940,0,0);-ms-transform:matrix(0.202201,-0.004448,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202201,-0.004448,0.005499,0.249940,0,0);}
.mf_c00190{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m48_c00190{transform:matrix(0.203761,-0.004890,0.005998,0.249928,0,0);-ms-transform:matrix(0.203761,-0.004890,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203761,-0.004890,0.005998,0.249928,0,0);}
.maa_c00190{transform:matrix(0.203941,-0.003467,0.004249,0.249964,0,0);-ms-transform:matrix(0.203941,-0.003467,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203941,-0.003467,0.004249,0.249964,0,0);}
.m79_c00190{transform:matrix(0.204291,-0.004494,0.005499,0.249940,0,0);-ms-transform:matrix(0.204291,-0.004494,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204291,-0.004494,0.005499,0.249940,0,0);}
.mc3_c00190{transform:matrix(0.204905,-0.003483,0.004249,0.249964,0,0);-ms-transform:matrix(0.204905,-0.003483,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204905,-0.003483,0.004249,0.249964,0,0);}
.m5d_c00190{transform:matrix(0.205150,-0.004513,0.005499,0.249940,0,0);-ms-transform:matrix(0.205150,-0.004513,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205150,-0.004513,0.005499,0.249940,0,0);}
.m2b_c00190{transform:matrix(0.205741,-0.005144,0.006248,0.249922,0,0);-ms-transform:matrix(0.205741,-0.005144,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205741,-0.005144,0.006248,0.249922,0,0);}
.m8e_c00190{transform:matrix(0.205819,-0.003293,0.003999,0.249968,0,0);-ms-transform:matrix(0.205819,-0.003293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205819,-0.003293,0.003999,0.249968,0,0);}
.m6_c00190{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{transform:matrix(0.206339,-0.003301,0.003999,0.249968,0,0);-ms-transform:matrix(0.206339,-0.003301,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206339,-0.003301,0.003999,0.249968,0,0);}
.m3e_c00190{transform:matrix(0.206580,-0.005165,0.006248,0.249922,0,0);-ms-transform:matrix(0.206580,-0.005165,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206580,-0.005165,0.006248,0.249922,0,0);}
.m3d_c00190{transform:matrix(0.206755,-0.005169,0.006248,0.249922,0,0);-ms-transform:matrix(0.206755,-0.005169,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206755,-0.005169,0.006248,0.249922,0,0);}
.me4_c00190{transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);}
.me3_c00190{transform:matrix(0.206905,-0.003517,0.004249,0.249964,0,0);-ms-transform:matrix(0.206905,-0.003517,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206905,-0.003517,0.004249,0.249964,0,0);}
.m17_c00190{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00190{transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);-ms-transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);}
.m40_c00190{transform:matrix(0.208775,-0.005219,0.006248,0.249922,0,0);-ms-transform:matrix(0.208775,-0.005219,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208775,-0.005219,0.006248,0.249922,0,0);}
.mbb_c00190{transform:matrix(0.209215,-0.003557,0.004249,0.249964,0,0);-ms-transform:matrix(0.209215,-0.003557,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209215,-0.003557,0.004249,0.249964,0,0);}
.m83_c00190{transform:matrix(0.209253,-0.003348,0.003999,0.249968,0,0);-ms-transform:matrix(0.209253,-0.003348,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209253,-0.003348,0.003999,0.249968,0,0);}
.m2c_c00190{transform:matrix(0.209395,-0.005235,0.006248,0.249922,0,0);-ms-transform:matrix(0.209395,-0.005235,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209395,-0.005235,0.006248,0.249922,0,0);}
.m44_c00190{transform:matrix(0.209969,-0.005249,0.006248,0.249922,0,0);-ms-transform:matrix(0.209969,-0.005249,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209969,-0.005249,0.006248,0.249922,0,0);}
.me1_c00190{transform:matrix(0.210055,-0.003571,0.004249,0.249964,0,0);-ms-transform:matrix(0.210055,-0.003571,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210055,-0.003571,0.004249,0.249964,0,0);}
.m8a_c00190{transform:matrix(0.210688,-0.003371,0.003999,0.249968,0,0);-ms-transform:matrix(0.210688,-0.003371,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210688,-0.003371,0.003999,0.249968,0,0);}
.mde_c00190{transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);-ms-transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210775,-0.003583,0.004249,0.249964,0,0);}
.m56_c00190{transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);-ms-transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);}
.mae_c00190{transform:matrix(0.211075,-0.003588,0.004249,0.249964,0,0);-ms-transform:matrix(0.211075,-0.003588,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211075,-0.003588,0.004249,0.249964,0,0);}
.me_c00190{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m91_c00190{transform:matrix(0.211728,-0.003388,0.003999,0.249968,0,0);-ms-transform:matrix(0.211728,-0.003388,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211728,-0.003388,0.003999,0.249968,0,0);}
.m97_c00190{transform:matrix(0.211923,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211923,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211923,-0.003391,0.003999,0.249968,0,0);}
.mc5_c00190{transform:matrix(0.211939,-0.003603,0.004249,0.249964,0,0);-ms-transform:matrix(0.211939,-0.003603,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211939,-0.003603,0.004249,0.249964,0,0);}
.mcb_c00190{transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);-ms-transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);}
.mdd_c00190{transform:matrix(0.213509,-0.003630,0.004249,0.249964,0,0);-ms-transform:matrix(0.213509,-0.003630,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213509,-0.003630,0.004249,0.249964,0,0);}
.m8f_c00190{transform:matrix(0.213518,-0.003416,0.003999,0.249968,0,0);-ms-transform:matrix(0.213518,-0.003416,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213518,-0.003416,0.003999,0.249968,0,0);}
.mac_c00190{transform:matrix(0.213949,-0.003637,0.004249,0.249964,0,0);-ms-transform:matrix(0.213949,-0.003637,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213949,-0.003637,0.004249,0.249964,0,0);}
.mc_c00190{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.214193,-0.005355,0.006248,0.249922,0,0);-ms-transform:matrix(0.214193,-0.005355,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214193,-0.005355,0.006248,0.249922,0,0);}
.m45_c00190{transform:matrix(0.214443,-0.005361,0.006248,0.249922,0,0);-ms-transform:matrix(0.214443,-0.005361,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214443,-0.005361,0.006248,0.249922,0,0);}
.mb0_c00190{transform:matrix(0.214709,-0.003650,0.004249,0.249964,0,0);-ms-transform:matrix(0.214709,-0.003650,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214709,-0.003650,0.004249,0.249964,0,0);}
.m3c_c00190{transform:matrix(0.215138,-0.005378,0.006248,0.249922,0,0);-ms-transform:matrix(0.215138,-0.005378,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215138,-0.005378,0.006248,0.249922,0,0);}
.m6a_c00190{transform:matrix(0.215248,-0.004735,0.005499,0.249940,0,0);-ms-transform:matrix(0.215248,-0.004735,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215248,-0.004735,0.005499,0.249940,0,0);}
.m2a_c00190{transform:matrix(0.215333,-0.005383,0.006248,0.249922,0,0);-ms-transform:matrix(0.215333,-0.005383,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215333,-0.005383,0.006248,0.249922,0,0);}
.ma4_c00190{transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);-ms-transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);}
.m85_c00190{transform:matrix(0.215522,-0.003448,0.003999,0.249968,0,0);-ms-transform:matrix(0.215522,-0.003448,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215522,-0.003448,0.003999,0.249968,0,0);}
.mcc_c00190{transform:matrix(0.215794,-0.003668,0.004249,0.249964,0,0);-ms-transform:matrix(0.215794,-0.003668,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215794,-0.003668,0.004249,0.249964,0,0);}
.m70_c00190{transform:matrix(0.215808,-0.004748,0.005499,0.249940,0,0);-ms-transform:matrix(0.215808,-0.004748,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215808,-0.004748,0.005499,0.249940,0,0);}
.m5e_c00190{transform:matrix(0.215873,-0.004749,0.005499,0.249940,0,0);-ms-transform:matrix(0.215873,-0.004749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215873,-0.004749,0.005499,0.249940,0,0);}
.md5_c00190{transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);-ms-transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);}
.m50_c00190{transform:matrix(0.216158,-0.005188,0.005998,0.249928,0,0);-ms-transform:matrix(0.216158,-0.005188,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216158,-0.005188,0.005998,0.249928,0,0);}
.m57_c00190{transform:matrix(0.216712,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216712,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216712,-0.003467,0.003999,0.249968,0,0);}
.mdb_c00190{transform:matrix(0.216844,-0.003686,0.004249,0.249964,0,0);-ms-transform:matrix(0.216844,-0.003686,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216844,-0.003686,0.004249,0.249964,0,0);}
.mc6_c00190{transform:matrix(0.216994,-0.003689,0.004249,0.249964,0,0);-ms-transform:matrix(0.216994,-0.003689,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216994,-0.003689,0.004249,0.249964,0,0);}
.mad_c00190{transform:matrix(0.218193,-0.003709,0.004249,0.249964,0,0);-ms-transform:matrix(0.218193,-0.003709,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218193,-0.003709,0.004249,0.249964,0,0);}
.m5b_c00190{transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);-ms-transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);}
.ma_c00190{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(0.219246,-0.005481,0.006248,0.249922,0,0);-ms-transform:matrix(0.219246,-0.005481,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219246,-0.005481,0.006248,0.249922,0,0);}
.m63_c00190{transform:matrix(0.220652,-0.004854,0.005499,0.249940,0,0);-ms-transform:matrix(0.220652,-0.004854,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220652,-0.004854,0.005499,0.249940,0,0);}
.m4f_c00190{transform:matrix(0.221346,-0.005312,0.005998,0.249928,0,0);-ms-transform:matrix(0.221346,-0.005312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221346,-0.005312,0.005998,0.249928,0,0);}
.m84_c00190{transform:matrix(0.221542,-0.003545,0.003999,0.249968,0,0);-ms-transform:matrix(0.221542,-0.003545,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221542,-0.003545,0.003999,0.249968,0,0);}
.maf_c00190{transform:matrix(0.222133,-0.003776,0.004249,0.249964,0,0);-ms-transform:matrix(0.222133,-0.003776,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222133,-0.003776,0.004249,0.249964,0,0);}
.md9_c00190{transform:matrix(0.222808,-0.003788,0.004249,0.249964,0,0);-ms-transform:matrix(0.222808,-0.003788,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222808,-0.003788,0.004249,0.249964,0,0);}
.m67_c00190{transform:matrix(0.223181,-0.004910,0.005499,0.249940,0,0);-ms-transform:matrix(0.223181,-0.004910,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223181,-0.004910,0.005499,0.249940,0,0);}
.m72_c00190{transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);-ms-transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);}
.me6_c00190{transform:matrix(0.224568,-0.003818,0.004249,0.249964,0,0);-ms-transform:matrix(0.224568,-0.003818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224568,-0.003818,0.004249,0.249964,0,0);}
.mca_c00190{transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);-ms-transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225527,-0.003834,0.004249,0.249964,0,0);}
.m4c_c00190{transform:matrix(0.226360,-0.005433,0.005998,0.249928,0,0);-ms-transform:matrix(0.226360,-0.005433,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226360,-0.005433,0.005998,0.249928,0,0);}
.m7d_c00190{transform:matrix(0.226723,-0.003174,0.003500,0.249976,0,0);-ms-transform:matrix(0.226723,-0.003174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226723,-0.003174,0.003500,0.249976,0,0);}
.m4e_c00190{transform:matrix(0.226800,-0.005443,0.005998,0.249928,0,0);-ms-transform:matrix(0.226800,-0.005443,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226800,-0.005443,0.005998,0.249928,0,0);}
.mdf_c00190{transform:matrix(0.226992,-0.003859,0.004249,0.249964,0,0);-ms-transform:matrix(0.226992,-0.003859,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226992,-0.003859,0.004249,0.249964,0,0);}
.md7_c00190{transform:matrix(0.229007,-0.003893,0.004249,0.249964,0,0);-ms-transform:matrix(0.229007,-0.003893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229007,-0.003893,0.004249,0.249964,0,0);}
.m6d_c00190{transform:matrix(0.230044,-0.005061,0.005499,0.249940,0,0);-ms-transform:matrix(0.230044,-0.005061,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230044,-0.005061,0.005499,0.249940,0,0);}
.m54_c00190{transform:matrix(0.230111,-0.003682,0.003999,0.249968,0,0);-ms-transform:matrix(0.230111,-0.003682,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230111,-0.003682,0.003999,0.249968,0,0);}
.mdc_c00190{transform:matrix(0.230137,-0.003912,0.004249,0.249964,0,0);-ms-transform:matrix(0.230137,-0.003912,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230137,-0.003912,0.004249,0.249964,0,0);}
.m8c_c00190{transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);-ms-transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);}
.m68_c00190{transform:matrix(0.230889,-0.005080,0.005499,0.249940,0,0);-ms-transform:matrix(0.230889,-0.005080,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230889,-0.005080,0.005499,0.249940,0,0);}
.me0_c00190{transform:matrix(0.231077,-0.003928,0.004249,0.249964,0,0);-ms-transform:matrix(0.231077,-0.003928,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231077,-0.003928,0.004249,0.249964,0,0);}
.m4_c00190{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00190{transform:matrix(0.232634,-0.005118,0.005499,0.249940,0,0);-ms-transform:matrix(0.232634,-0.005118,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232634,-0.005118,0.005499,0.249940,0,0);}
.m41_c00190{transform:matrix(0.233412,-0.005835,0.006248,0.249922,0,0);-ms-transform:matrix(0.233412,-0.005835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.233412,-0.005835,0.006248,0.249922,0,0);}
.m5a_c00190{transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);-ms-transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234283,-0.005154,0.005499,0.249940,0,0);}
.m3b_c00190{transform:matrix(0.234382,-0.005860,0.006248,0.249922,0,0);-ms-transform:matrix(0.234382,-0.005860,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234382,-0.005860,0.006248,0.249922,0,0);}
.m73_c00190{transform:matrix(0.238137,-0.005239,0.005499,0.249940,0,0);-ms-transform:matrix(0.238137,-0.005239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238137,-0.005239,0.005499,0.249940,0,0);}
.m53_c00190{transform:matrix(0.239109,-0.003826,0.003999,0.249968,0,0);-ms-transform:matrix(0.239109,-0.003826,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239109,-0.003826,0.003999,0.249968,0,0);}
.m29_c00190{transform:matrix(0.241500,-0.006037,0.006248,0.249922,0,0);-ms-transform:matrix(0.241500,-0.006037,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241500,-0.006037,0.006248,0.249922,0,0);}
.m6e_c00190{transform:matrix(0.242006,-0.005324,0.005499,0.249940,0,0);-ms-transform:matrix(0.242006,-0.005324,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242006,-0.005324,0.005499,0.249940,0,0);}
.mab_c00190{transform:matrix(0.243345,-0.004137,0.004249,0.249964,0,0);-ms-transform:matrix(0.243345,-0.004137,0.004249,0.249964,0,0);-webkit-transform:matrix(0.243345,-0.004137,0.004249,0.249964,0,0);}
.m52_c00190{transform:matrix(0.243359,-0.003894,0.003999,0.249968,0,0);-ms-transform:matrix(0.243359,-0.003894,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243359,-0.003894,0.003999,0.249968,0,0);}
.m66_c00190{transform:matrix(0.246260,-0.005418,0.005499,0.249940,0,0);-ms-transform:matrix(0.246260,-0.005418,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246260,-0.005418,0.005499,0.249940,0,0);}
.m16_c00190{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.mb2_c00190{transform:matrix(0.256148,-0.004355,0.004249,0.249964,0,0);-ms-transform:matrix(0.256148,-0.004355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256148,-0.004355,0.004249,0.249964,0,0);}
.m39_c00190{transform:matrix(0.256575,-0.006414,0.006248,0.249922,0,0);-ms-transform:matrix(0.256575,-0.006414,0.006248,0.249922,0,0);-webkit-transform:matrix(0.256575,-0.006414,0.006248,0.249922,0,0);}
.m69_c00190{transform:matrix(0.256698,-0.005647,0.005499,0.249940,0,0);-ms-transform:matrix(0.256698,-0.005647,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256698,-0.005647,0.005499,0.249940,0,0);}
.m59_c00190{transform:matrix(0.263571,-0.005799,0.005499,0.249940,0,0);-ms-transform:matrix(0.263571,-0.005799,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263571,-0.005799,0.005499,0.249940,0,0);}
.mb1_c00190{transform:matrix(0.265892,-0.004520,0.004249,0.249964,0,0);-ms-transform:matrix(0.265892,-0.004520,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265892,-0.004520,0.004249,0.249964,0,0);}
.m6f_c00190{transform:matrix(0.267795,-0.005891,0.005499,0.249940,0,0);-ms-transform:matrix(0.267795,-0.005891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267795,-0.005891,0.005499,0.249940,0,0);}
.m49_c00190{transform:matrix(0.283648,-0.006808,0.005998,0.249928,0,0);-ms-transform:matrix(0.283648,-0.006808,0.005998,0.249928,0,0);-webkit-transform:matrix(0.283648,-0.006808,0.005998,0.249928,0,0);}
.m60_c00190{transform:matrix(0.285136,-0.006273,0.005499,0.249940,0,0);-ms-transform:matrix(0.285136,-0.006273,0.005499,0.249940,0,0);-webkit-transform:matrix(0.285136,-0.006273,0.005499,0.249940,0,0);}
.m94_c00190{transform:matrix(0.333902,-0.005342,0.003999,0.249968,0,0);-ms-transform:matrix(0.333902,-0.005342,0.003999,0.249968,0,0);-webkit-transform:matrix(0.333902,-0.005342,0.003999,0.249968,0,0);}
.m5_c00190{transform:matrix(0.353850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353850,0.000000,0.000000,0.250000,0,0);}
.m95_c00190{transform:matrix(0.398269,-0.006372,0.003999,0.249968,0,0);-ms-transform:matrix(0.398269,-0.006372,0.003999,0.249968,0,0);-webkit-transform:matrix(0.398269,-0.006372,0.003999,0.249968,0,0);}
.m4b_c00190{transform:matrix(0.439993,-0.010560,0.005998,0.249928,0,0);-ms-transform:matrix(0.439993,-0.010560,0.005998,0.249928,0,0);-webkit-transform:matrix(0.439993,-0.010560,0.005998,0.249928,0,0);}
.m0_c00190{transform:matrix(0.666445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666445,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:0.000000px;}
.fc0_c00190{color:transparent;}
.fs0_c00190{font-size:22.050000px;}
.fsb_c00190{font-size:28.358164px;}
.fs10_c00190{font-size:54.613212px;}
.fsf_c00190{font-size:57.763974px;}
.fsd_c00190{font-size:58.807526px;}
.fs7_c00190{font-size:58.818372px;}
.fs17_c00190{font-size:59.858648px;}
.fs9_c00190{font-size:59.868700px;}
.fs2_c00190{font-size:60.900000px;}
.fs13_c00190{font-size:60.907795px;}
.fse_c00190{font-size:60.914736px;}
.fsa_c00190{font-size:60.919028px;}
.fs18_c00190{font-size:61.958951px;}
.fsc_c00190{font-size:63.018141px;}
.fs3_c00190{font-size:64.050000px;}
.fs1a_c00190{font-size:64.059255px;}
.fs12_c00190{font-size:65.108332px;}
.fs19_c00190{font-size:65.109406px;}
.fs8_c00190{font-size:66.170669px;}
.fs4_c00190{font-size:67.200000px;}
.fs16_c00190{font-size:67.209710px;}
.fs11_c00190{font-size:68.256688px;}
.fs14_c00190{font-size:68.258735px;}
.fs15_c00190{font-size:70.360165px;}
.fs1b_c00190{font-size:71.400000px;}
.fs5_c00190{font-size:72.450000px;}
.fs6_c00190{font-size:73.522965px;}
.fs1_c00190{font-size:84.000000px;}
.y0_c00190{bottom:0.000000px;}
.yee_c00190{bottom:35.418000px;}
.ye8_c00190{bottom:52.061844px;}
.yeb_c00190{bottom:52.061979px;}
.ye7_c00190{bottom:52.062242px;}
.yed_c00190{bottom:52.062297px;}
.yea_c00190{bottom:52.062450px;}
.yec_c00190{bottom:52.062498px;}
.ye9_c00190{bottom:52.062543px;}
.ye6_c00190{bottom:52.062579px;}
.ye5_c00190{bottom:52.063200px;}
.yde_c00190{bottom:68.958006px;}
.ye0_c00190{bottom:68.958342px;}
.ydf_c00190{bottom:68.958633px;}
.ye3_c00190{bottom:68.958983px;}
.ye4_c00190{bottom:68.959040px;}
.ye1_c00190{bottom:68.959050px;}
.ye2_c00190{bottom:68.959209px;}
.yd7_c00190{bottom:85.063583px;}
.yd8_c00190{bottom:85.063905px;}
.yd9_c00190{bottom:85.063974px;}
.yda_c00190{bottom:85.064391px;}
.ydd_c00190{bottom:85.064480px;}
.ydb_c00190{bottom:85.064894px;}
.ydc_c00190{bottom:85.065212px;}
.ycf_c00190{bottom:102.042789px;}
.yd0_c00190{bottom:102.416247px;}
.yd1_c00190{bottom:102.627122px;}
.yd2_c00190{bottom:103.297037px;}
.yd3_c00190{bottom:103.511894px;}
.yd4_c00190{bottom:104.245872px;}
.yd5_c00190{bottom:104.495415px;}
.yd6_c00190{bottom:105.235752px;}
.yc9_c00190{bottom:117.519287px;}
.yca_c00190{bottom:117.519344px;}
.ycb_c00190{bottom:117.519503px;}
.yce_c00190{bottom:117.519875px;}
.ycd_c00190{bottom:117.520058px;}
.ycc_c00190{bottom:117.520220px;}
.yc7_c00190{bottom:135.136560px;}
.yc6_c00190{bottom:135.136644px;}
.yc8_c00190{bottom:135.136805px;}
.yc4_c00190{bottom:135.136818px;}
.yc3_c00190{bottom:135.137271px;}
.yc5_c00190{bottom:135.137282px;}
.yc2_c00190{bottom:154.072250px;}
.yc0_c00190{bottom:154.072791px;}
.yc1_c00190{bottom:154.072793px;}
.ybf_c00190{bottom:154.073424px;}
.ybe_c00190{bottom:154.073835px;}
.ybd_c00190{bottom:154.073984px;}
.yba_c00190{bottom:170.155955px;}
.yb9_c00190{bottom:170.156327px;}
.yb7_c00190{bottom:170.156514px;}
.yb8_c00190{bottom:170.156528px;}
.yb6_c00190{bottom:170.156582px;}
.ybb_c00190{bottom:170.156594px;}
.yb5_c00190{bottom:170.157053px;}
.ybc_c00190{bottom:170.157212px;}
.yb4_c00190{bottom:170.157224px;}
.yb3_c00190{bottom:170.157240px;}
.yab_c00190{bottom:184.407009px;}
.yac_c00190{bottom:184.986242px;}
.yad_c00190{bottom:185.428817px;}
.yae_c00190{bottom:185.878256px;}
.yaf_c00190{bottom:186.626957px;}
.yb0_c00190{bottom:187.178028px;}
.yb1_c00190{bottom:187.854941px;}
.yb2_c00190{bottom:188.712950px;}
.ya5_c00190{bottom:200.342234px;}
.ya6_c00190{bottom:201.266975px;}
.ya7_c00190{bottom:202.490787px;}
.ya8_c00190{bottom:204.583217px;}
.ya9_c00190{bottom:204.867150px;}
.yaa_c00190{bottom:205.497201px;}
.y9d_c00190{bottom:218.973000px;}
.y9e_c00190{bottom:219.125694px;}
.y9f_c00190{bottom:220.502337px;}
.ya0_c00190{bottom:221.062547px;}
.ya1_c00190{bottom:222.176514px;}
.ya2_c00190{bottom:222.552767px;}
.ya3_c00190{bottom:222.788846px;}
.ya4_c00190{bottom:223.665561px;}
.y1_c00190{bottom:227.340000px;}
.y95_c00190{bottom:236.787264px;}
.y96_c00190{bottom:237.264900px;}
.y97_c00190{bottom:237.820584px;}
.y98_c00190{bottom:238.646580px;}
.y99_c00190{bottom:239.484120px;}
.y9a_c00190{bottom:239.885520px;}
.y9b_c00190{bottom:240.643248px;}
.y9c_c00190{bottom:241.018308px;}
.y8c_c00190{bottom:254.339112px;}
.y8d_c00190{bottom:255.102672px;}
.y8e_c00190{bottom:255.278388px;}
.y8f_c00190{bottom:255.676176px;}
.y90_c00190{bottom:256.644108px;}
.y91_c00190{bottom:256.883184px;}
.y92_c00190{bottom:257.093640px;}
.y93_c00190{bottom:257.474328px;}
.y94_c00190{bottom:257.750916px;}
.y84_c00190{bottom:271.623000px;}
.y85_c00190{bottom:271.938240px;}
.y86_c00190{bottom:272.965224px;}
.y87_c00190{bottom:273.182712px;}
.y88_c00190{bottom:273.467784px;}
.y89_c00190{bottom:274.599744px;}
.y8a_c00190{bottom:274.898064px;}
.y8b_c00190{bottom:275.964960px;}
.y7e_c00190{bottom:288.898500px;}
.y7f_c00190{bottom:289.836066px;}
.y80_c00190{bottom:290.833524px;}
.y81_c00190{bottom:291.340737px;}
.y82_c00190{bottom:292.210263px;}
.y83_c00190{bottom:292.425870px;}
.y75_c00190{bottom:306.447339px;}
.y76_c00190{bottom:307.644948px;}
.y77_c00190{bottom:308.506386px;}
.y78_c00190{bottom:308.864838px;}
.y79_c00190{bottom:309.279786px;}
.y7a_c00190{bottom:309.610593px;}
.y7b_c00190{bottom:310.541796px;}
.y7c_c00190{bottom:310.762581px;}
.y7d_c00190{bottom:311.199696px;}
.y6f_c00190{bottom:321.303051px;}
.y70_c00190{bottom:323.079342px;}
.y71_c00190{bottom:324.064755px;}
.y72_c00190{bottom:324.914022px;}
.y73_c00190{bottom:326.275917px;}
.y74_c00190{bottom:327.862095px;}
.y67_c00190{bottom:338.317500px;}
.y68_c00190{bottom:339.474348px;}
.y69_c00190{bottom:341.218200px;}
.y6a_c00190{bottom:341.559057px;}
.y6b_c00190{bottom:341.940306px;}
.y6c_c00190{bottom:343.197441px;}
.y6d_c00190{bottom:343.622217px;}
.y6e_c00190{bottom:344.577006px;}
.y61_c00190{bottom:354.246000px;}
.y62_c00190{bottom:356.262630px;}
.y63_c00190{bottom:356.995692px;}
.y64_c00190{bottom:357.554580px;}
.y65_c00190{bottom:358.915038px;}
.y66_c00190{bottom:360.399807px;}
.y5a_c00190{bottom:372.336000px;}
.y5b_c00190{bottom:373.303725px;}
.y5c_c00190{bottom:374.474004px;}
.y5d_c00190{bottom:374.818821px;}
.y5e_c00190{bottom:376.161723px;}
.y5f_c00190{bottom:376.655139px;}
.y60_c00190{bottom:377.927421px;}
.y53_c00190{bottom:390.963000px;}
.y54_c00190{bottom:391.908264px;}
.y55_c00190{bottom:392.677128px;}
.y56_c00190{bottom:392.880408px;}
.y57_c00190{bottom:393.204576px;}
.y58_c00190{bottom:394.082400px;}
.y59_c00190{bottom:395.482104px;}
.y4c_c00190{bottom:405.819624px;}
.y4d_c00190{bottom:407.018664px;}
.y4e_c00190{bottom:408.240972px;}
.y4f_c00190{bottom:408.809352px;}
.y50_c00190{bottom:410.615652px;}
.y51_c00190{bottom:412.136328px;}
.y52_c00190{bottom:413.161764px;}
.y48_c00190{bottom:416.071500px;}
.y49_c00190{bottom:418.242300px;}
.y4a_c00190{bottom:419.055036px;}
.y4b_c00190{bottom:420.063900px;}
.y42_c00190{bottom:423.349500px;}
.y43_c00190{bottom:424.366762px;}
.y44_c00190{bottom:425.733637px;}
.y45_c00190{bottom:426.143475px;}
.y46_c00190{bottom:427.401825px;}
.y47_c00190{bottom:428.092725px;}
.y3b_c00190{bottom:440.634150px;}
.y3c_c00190{bottom:442.500712px;}
.y3d_c00190{bottom:442.864163px;}
.y3e_c00190{bottom:444.310800px;}
.y3f_c00190{bottom:444.824175px;}
.y40_c00190{bottom:445.793062px;}
.y41_c00190{bottom:446.144212px;}
.y2_c00190{bottom:447.930000px;}
.y32_c00190{bottom:457.923075px;}
.y33_c00190{bottom:458.538000px;}
.y34_c00190{bottom:459.684712px;}
.y35_c00190{bottom:460.080337px;}
.y36_c00190{bottom:461.120362px;}
.y37_c00190{bottom:461.691825px;}
.y38_c00190{bottom:462.510337px;}
.y39_c00190{bottom:463.693612px;}
.y3a_c00190{bottom:464.289562px;}
.y2a_c00190{bottom:474.939000px;}
.y2b_c00190{bottom:476.507887px;}
.y2c_c00190{bottom:477.381900px;}
.y2d_c00190{bottom:478.553662px;}
.y2e_c00190{bottom:479.400675px;}
.y2f_c00190{bottom:479.812987px;}
.y30_c00190{bottom:481.234612px;}
.y31_c00190{bottom:481.966575px;}
.y22_c00190{bottom:491.946000px;}
.y23_c00190{bottom:492.212025px;}
.y24_c00190{bottom:493.750725px;}
.y25_c00190{bottom:494.385038px;}
.y26_c00190{bottom:495.340725px;}
.y27_c00190{bottom:495.671700px;}
.y28_c00190{bottom:496.120425px;}
.y29_c00190{bottom:498.140062px;}
.y1a_c00190{bottom:509.499000px;}
.y1b_c00190{bottom:509.899500px;}
.y1c_c00190{bottom:510.564000px;}
.y1d_c00190{bottom:511.603500px;}
.y1e_c00190{bottom:513.510000px;}
.y1f_c00190{bottom:513.898500px;}
.y20_c00190{bottom:515.434500px;}
.y21_c00190{bottom:516.004500px;}
.y13_c00190{bottom:527.586000px;}
.y14_c00190{bottom:528.543000px;}
.y15_c00190{bottom:529.128000px;}
.y16_c00190{bottom:530.922000px;}
.y17_c00190{bottom:531.364500px;}
.y18_c00190{bottom:532.801500px;}
.y19_c00190{bottom:533.083500px;}
.yc_c00190{bottom:543.790500px;}
.yd_c00190{bottom:544.350000px;}
.ye_c00190{bottom:545.554500px;}
.yf_c00190{bottom:547.375500px;}
.y10_c00190{bottom:548.374500px;}
.y11_c00190{bottom:549.858000px;}
.y12_c00190{bottom:550.344000px;}
.y4_c00190{bottom:561.067500px;}
.y5_c00190{bottom:561.847500px;}
.y6_c00190{bottom:563.374500px;}
.y7_c00190{bottom:563.643000px;}
.y8_c00190{bottom:565.369500px;}
.y9_c00190{bottom:565.807500px;}
.ya_c00190{bottom:567.247500px;}
.yb_c00190{bottom:567.955500px;}
.y3_c00190{bottom:577.932000px;}
.h2_c00190{height:22.050000px;}
.hd_c00190{height:28.358164px;}
.h12_c00190{height:54.613212px;}
.h11_c00190{height:57.763974px;}
.hf_c00190{height:58.807526px;}
.h9_c00190{height:58.818372px;}
.h19_c00190{height:59.858648px;}
.hb_c00190{height:59.868700px;}
.h4_c00190{height:60.900000px;}
.h15_c00190{height:60.907795px;}
.h10_c00190{height:60.914736px;}
.hc_c00190{height:60.919028px;}
.h1a_c00190{height:61.958951px;}
.he_c00190{height:63.018141px;}
.h5_c00190{height:64.050000px;}
.h1c_c00190{height:64.059255px;}
.h14_c00190{height:65.108332px;}
.h1b_c00190{height:65.109406px;}
.ha_c00190{height:66.170669px;}
.h6_c00190{height:67.200000px;}
.h18_c00190{height:67.209710px;}
.h13_c00190{height:68.256688px;}
.h16_c00190{height:68.258735px;}
.h17_c00190{height:70.360165px;}
.h1d_c00190{height:71.400000px;}
.h7_c00190{height:72.450000px;}
.h8_c00190{height:73.522965px;}
.h3_c00190{height:84.000000px;}
.h1_c00190{height:623.250000px;}
.h0_c00190{height:623.400000px;}
.w1_c00190{width:383.250000px;}
.w0_c00190{width:383.400000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:2.430000px;}
.x49_c00190{left:16.497000px;}
.x3e_c00190{left:22.900500px;}
.x2_c00190{left:25.380000px;}
.x42_c00190{left:26.991000px;}
.x4_c00190{left:33.763500px;}
.x18_c00190{left:35.173500px;}
.x38_c00190{left:36.522492px;}
.x68_c00190{left:37.760390px;}
.x6c_c00190{left:38.783006px;}
.x7e_c00190{left:39.955539px;}
.x63_c00190{left:45.520500px;}
.x19_c00190{left:51.214500px;}
.xc_c00190{left:55.122000px;}
.x29_c00190{left:61.601100px;}
.x5_c00190{left:62.632500px;}
.x36_c00190{left:66.768000px;}
.x60_c00190{left:68.137284px;}
.x43_c00190{left:70.978500px;}
.x71_c00190{left:74.253930px;}
.x12_c00190{left:76.146000px;}
.x1a_c00190{left:77.806500px;}
.x32_c00190{left:79.396463px;}
.x39_c00190{left:82.667796px;}
.x7a_c00190{left:84.398541px;}
.x81_c00190{left:86.130000px;}
.x4c_c00190{left:88.275000px;}
.x57_c00190{left:89.556000px;}
.x5c_c00190{left:95.125860px;}
.x1e_c00190{left:96.724500px;}
.x78_c00190{left:98.015380px;}
.xd_c00190{left:99.712500px;}
.x13_c00190{left:101.556000px;}
.x54_c00190{left:105.783378px;}
.x6d_c00190{left:106.832801px;}
.x4a_c00190{left:108.162000px;}
.x2a_c00190{left:109.390800px;}
.x72_c00190{left:113.139176px;}
.x2f_c00190{left:116.544600px;}
.x6_c00190{left:119.203500px;}
.x1f_c00190{left:122.097000px;}
.x44_c00190{left:124.173000px;}
.x2b_c00190{left:125.876212px;}
.x7_c00190{left:129.142500px;}
.x24_c00190{left:132.370500px;}
.x59_c00190{left:133.599000px;}
.x64_c00190{left:135.481500px;}
.x6e_c00190{left:136.800821px;}
.x33_c00190{left:138.814425px;}
.x45_c00190{left:139.846500px;}
.x4b_c00190{left:141.483000px;}
.x3f_c00190{left:142.738500px;}
.x82_c00190{left:144.990000px;}
.x50_c00190{left:150.412407px;}
.x3a_c00190{left:151.526484px;}
.x34_c00190{left:156.648825px;}
.x20_c00190{left:160.324500px;}
.x40_c00190{left:162.999000px;}
.x3_c00190{left:165.780000px;}
.xe_c00190{left:167.178000px;}
.x2c_c00190{left:169.218300px;}
.x21_c00190{left:173.563500px;}
.x55_c00190{left:177.536265px;}
.x14_c00190{left:179.551500px;}
.x4d_c00190{left:183.034500px;}
.x51_c00190{left:185.809356px;}
.x73_c00190{left:190.099412px;}
.x22_c00190{left:191.512500px;}
.x8_c00190{left:193.101000px;}
.x1b_c00190{left:195.648000px;}
.x58_c00190{left:197.032500px;}
.x15_c00190{left:198.760500px;}
.x46_c00190{left:200.887500px;}
.x56_c00190{left:201.922938px;}
.xf_c00190{left:204.177000px;}
.x74_c00190{left:207.651486px;}
.x9_c00190{left:209.340000px;}
.x1c_c00190{left:211.197000px;}
.x25_c00190{left:213.121500px;}
.x7d_c00190{left:214.941450px;}
.x61_c00190{left:216.122160px;}
.x30_c00190{left:217.588163px;}
.x3b_c00190{left:220.973136px;}
.x5a_c00190{left:222.163500px;}
.x47_c00190{left:223.315500px;}
.x2d_c00190{left:227.158763px;}
.x26_c00190{left:229.614000px;}
.x5d_c00190{left:232.101936px;}
.x37_c00190{left:233.118000px;}
.x69_c00190{left:239.745671px;}
.x35_c00190{left:241.403063px;}
.x52_c00190{left:242.529348px;}
.x7f_c00190{left:246.265158px;}
.x5e_c00190{left:248.256204px;}
.x6a_c00190{left:253.270253px;}
.x65_c00190{left:256.095000px;}
.x4e_c00190{left:257.506500px;}
.x10_c00190{left:259.129500px;}
.x16_c00190{left:261.243000px;}
.xa_c00190{left:262.651500px;}
.x76_c00190{left:265.439523px;}
.x7c_c00190{left:266.519625px;}
.x6f_c00190{left:268.610309px;}
.x66_c00190{left:269.982000px;}
.x23_c00190{left:272.298000px;}
.x17_c00190{left:273.529500px;}
.x31_c00190{left:274.952513px;}
.x11_c00190{left:277.104000px;}
.x3c_c00190{left:279.456828px;}
.x48_c00190{left:281.146500px;}
.x6b_c00190{left:283.271213px;}
.x7b_c00190{left:284.978658px;}
.x27_c00190{left:286.479000px;}
.xb_c00190{left:288.880500px;}
.x79_c00190{left:290.013843px;}
.x83_c00190{left:291.600000px;}
.x62_c00190{left:293.443908px;}
.x1d_c00190{left:295.431000px;}
.x5f_c00190{left:298.807128px;}
.x80_c00190{left:300.271764px;}
.x2e_c00190{left:301.329637px;}
.x41_c00190{left:305.344500px;}
.x5b_c00190{left:307.489500px;}
.x53_c00190{left:308.625444px;}
.x75_c00190{left:314.587366px;}
.x28_c00190{left:315.757500px;}
.x3d_c00190{left:318.868920px;}
.x4f_c00190{left:320.214000px;}
.x67_c00190{left:321.553500px;}
.x70_c00190{left:325.789246px;}
.x77_c00190{left:327.278398px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:0.000000pt;}
.fs0_c00190{font-size:19.600000pt;}
.fsb_c00190{font-size:25.207257pt;}
.fs10_c00190{font-size:48.545077pt;}
.fsf_c00190{font-size:51.345754pt;}
.fsd_c00190{font-size:52.273356pt;}
.fs7_c00190{font-size:52.282997pt;}
.fs17_c00190{font-size:53.207687pt;}
.fs9_c00190{font-size:53.216622pt;}
.fs2_c00190{font-size:54.133333pt;}
.fs13_c00190{font-size:54.140262pt;}
.fse_c00190{font-size:54.146432pt;}
.fsa_c00190{font-size:54.150247pt;}
.fs18_c00190{font-size:55.074623pt;}
.fsc_c00190{font-size:56.016126pt;}
.fs3_c00190{font-size:56.933333pt;}
.fs1a_c00190{font-size:56.941560pt;}
.fs12_c00190{font-size:57.874073pt;}
.fs19_c00190{font-size:57.875028pt;}
.fs8_c00190{font-size:58.818372pt;}
.fs4_c00190{font-size:59.733333pt;}
.fs16_c00190{font-size:59.741964pt;}
.fs11_c00190{font-size:60.672612pt;}
.fs14_c00190{font-size:60.674432pt;}
.fs15_c00190{font-size:62.542369pt;}
.fs1b_c00190{font-size:63.466667pt;}
.fs5_c00190{font-size:64.400000pt;}
.fs6_c00190{font-size:65.353747pt;}
.fs1_c00190{font-size:74.666667pt;}
.y0_c00190{bottom:0.000000pt;}
.yee_c00190{bottom:31.482667pt;}
.ye8_c00190{bottom:46.277195pt;}
.yeb_c00190{bottom:46.277315pt;}
.ye7_c00190{bottom:46.277548pt;}
.yed_c00190{bottom:46.277597pt;}
.yea_c00190{bottom:46.277733pt;}
.yec_c00190{bottom:46.277776pt;}
.ye9_c00190{bottom:46.277816pt;}
.ye6_c00190{bottom:46.277848pt;}
.ye5_c00190{bottom:46.278400pt;}
.yde_c00190{bottom:61.296005pt;}
.ye0_c00190{bottom:61.296304pt;}
.ydf_c00190{bottom:61.296563pt;}
.ye3_c00190{bottom:61.296873pt;}
.ye4_c00190{bottom:61.296924pt;}
.ye1_c00190{bottom:61.296933pt;}
.ye2_c00190{bottom:61.297075pt;}
.yd7_c00190{bottom:75.612073pt;}
.yd8_c00190{bottom:75.612360pt;}
.yd9_c00190{bottom:75.612421pt;}
.yda_c00190{bottom:75.612792pt;}
.ydd_c00190{bottom:75.612871pt;}
.ydb_c00190{bottom:75.613239pt;}
.ydc_c00190{bottom:75.613521pt;}
.ycf_c00190{bottom:90.704701pt;}
.yd0_c00190{bottom:91.036664pt;}
.yd1_c00190{bottom:91.224108pt;}
.yd2_c00190{bottom:91.819588pt;}
.yd3_c00190{bottom:92.010572pt;}
.yd4_c00190{bottom:92.662997pt;}
.yd5_c00190{bottom:92.884813pt;}
.yd6_c00190{bottom:93.542891pt;}
.yc9_c00190{bottom:104.461588pt;}
.yca_c00190{bottom:104.461639pt;}
.ycb_c00190{bottom:104.461780pt;}
.yce_c00190{bottom:104.462111pt;}
.ycd_c00190{bottom:104.462273pt;}
.ycc_c00190{bottom:104.462417pt;}
.yc7_c00190{bottom:120.121387pt;}
.yc6_c00190{bottom:120.121461pt;}
.yc8_c00190{bottom:120.121604pt;}
.yc4_c00190{bottom:120.121616pt;}
.yc3_c00190{bottom:120.122019pt;}
.yc5_c00190{bottom:120.122028pt;}
.yc2_c00190{bottom:136.953111pt;}
.yc0_c00190{bottom:136.953592pt;}
.yc1_c00190{bottom:136.953593pt;}
.ybf_c00190{bottom:136.954155pt;}
.ybe_c00190{bottom:136.954520pt;}
.ybd_c00190{bottom:136.954652pt;}
.yba_c00190{bottom:151.249737pt;}
.yb9_c00190{bottom:151.250068pt;}
.yb7_c00190{bottom:151.250235pt;}
.yb8_c00190{bottom:151.250247pt;}
.yb6_c00190{bottom:151.250295pt;}
.ybb_c00190{bottom:151.250305pt;}
.yb5_c00190{bottom:151.250713pt;}
.ybc_c00190{bottom:151.250855pt;}
.yb4_c00190{bottom:151.250865pt;}
.yb3_c00190{bottom:151.250880pt;}
.yab_c00190{bottom:163.917341pt;}
.yac_c00190{bottom:164.432215pt;}
.yad_c00190{bottom:164.825615pt;}
.yae_c00190{bottom:165.225116pt;}
.yaf_c00190{bottom:165.890628pt;}
.yb0_c00190{bottom:166.380469pt;}
.yb1_c00190{bottom:166.982169pt;}
.yb2_c00190{bottom:167.744844pt;}
.ya5_c00190{bottom:178.081985pt;}
.ya6_c00190{bottom:178.903977pt;}
.ya7_c00190{bottom:179.991811pt;}
.ya8_c00190{bottom:181.851748pt;}
.ya9_c00190{bottom:182.104133pt;}
.yaa_c00190{bottom:182.664179pt;}
.y9d_c00190{bottom:194.642667pt;}
.y9e_c00190{bottom:194.778395pt;}
.y9f_c00190{bottom:196.002077pt;}
.ya0_c00190{bottom:196.500041pt;}
.ya1_c00190{bottom:197.490235pt;}
.ya2_c00190{bottom:197.824681pt;}
.ya3_c00190{bottom:198.034529pt;}
.ya4_c00190{bottom:198.813832pt;}
.y1_c00190{bottom:202.080000pt;}
.y95_c00190{bottom:210.477568pt;}
.y96_c00190{bottom:210.902133pt;}
.y97_c00190{bottom:211.396075pt;}
.y98_c00190{bottom:212.130293pt;}
.y99_c00190{bottom:212.874773pt;}
.y9a_c00190{bottom:213.231573pt;}
.y9b_c00190{bottom:213.905109pt;}
.y9c_c00190{bottom:214.238496pt;}
.y8c_c00190{bottom:226.079211pt;}
.y8d_c00190{bottom:226.757931pt;}
.y8e_c00190{bottom:226.914123pt;}
.y8f_c00190{bottom:227.267712pt;}
.y90_c00190{bottom:228.128096pt;}
.y91_c00190{bottom:228.340608pt;}
.y92_c00190{bottom:228.527680pt;}
.y93_c00190{bottom:228.866069pt;}
.y94_c00190{bottom:229.111925pt;}
.y84_c00190{bottom:241.442667pt;}
.y85_c00190{bottom:241.722880pt;}
.y86_c00190{bottom:242.635755pt;}
.y87_c00190{bottom:242.829077pt;}
.y88_c00190{bottom:243.082475pt;}
.y89_c00190{bottom:244.088661pt;}
.y8a_c00190{bottom:244.353835pt;}
.y8b_c00190{bottom:245.302187pt;}
.y7e_c00190{bottom:256.798667pt;}
.y7f_c00190{bottom:257.632059pt;}
.y80_c00190{bottom:258.518688pt;}
.y81_c00190{bottom:258.969544pt;}
.y82_c00190{bottom:259.742456pt;}
.y83_c00190{bottom:259.934107pt;}
.y75_c00190{bottom:272.397635pt;}
.y76_c00190{bottom:273.462176pt;}
.y77_c00190{bottom:274.227899pt;}
.y78_c00190{bottom:274.546523pt;}
.y79_c00190{bottom:274.915365pt;}
.y7a_c00190{bottom:275.209416pt;}
.y7b_c00190{bottom:276.037152pt;}
.y7c_c00190{bottom:276.233405pt;}
.y7d_c00190{bottom:276.621952pt;}
.y6f_c00190{bottom:285.602712pt;}
.y70_c00190{bottom:287.181637pt;}
.y71_c00190{bottom:288.057560pt;}
.y72_c00190{bottom:288.812464pt;}
.y73_c00190{bottom:290.023037pt;}
.y74_c00190{bottom:291.432973pt;}
.y67_c00190{bottom:300.726667pt;}
.y68_c00190{bottom:301.754976pt;}
.y69_c00190{bottom:303.305067pt;}
.y6a_c00190{bottom:303.608051pt;}
.y6b_c00190{bottom:303.946939pt;}
.y6c_c00190{bottom:305.064392pt;}
.y6d_c00190{bottom:305.441971pt;}
.y6e_c00190{bottom:306.290672pt;}
.y61_c00190{bottom:314.885333pt;}
.y62_c00190{bottom:316.677893pt;}
.y63_c00190{bottom:317.329504pt;}
.y64_c00190{bottom:317.826293pt;}
.y65_c00190{bottom:319.035589pt;}
.y66_c00190{bottom:320.355384pt;}
.y5a_c00190{bottom:330.965333pt;}
.y5b_c00190{bottom:331.825533pt;}
.y5c_c00190{bottom:332.865781pt;}
.y5d_c00190{bottom:333.172285pt;}
.y5e_c00190{bottom:334.365976pt;}
.y5f_c00190{bottom:334.804568pt;}
.y60_c00190{bottom:335.935485pt;}
.y53_c00190{bottom:347.522667pt;}
.y54_c00190{bottom:348.362901pt;}
.y55_c00190{bottom:349.046336pt;}
.y56_c00190{bottom:349.227029pt;}
.y57_c00190{bottom:349.515179pt;}
.y58_c00190{bottom:350.295467pt;}
.y59_c00190{bottom:351.539648pt;}
.y4c_c00190{bottom:360.728555pt;}
.y4d_c00190{bottom:361.794368pt;}
.y4e_c00190{bottom:362.880864pt;}
.y4f_c00190{bottom:363.386091pt;}
.y50_c00190{bottom:364.991691pt;}
.y51_c00190{bottom:366.343403pt;}
.y52_c00190{bottom:367.254901pt;}
.y48_c00190{bottom:369.841333pt;}
.y49_c00190{bottom:371.770933pt;}
.y4a_c00190{bottom:372.493365pt;}
.y4b_c00190{bottom:373.390133pt;}
.y42_c00190{bottom:376.310667pt;}
.y43_c00190{bottom:377.214900pt;}
.y44_c00190{bottom:378.429900pt;}
.y45_c00190{bottom:378.794200pt;}
.y46_c00190{bottom:379.912733pt;}
.y47_c00190{bottom:380.526867pt;}
.y3b_c00190{bottom:391.674800pt;}
.y3c_c00190{bottom:393.333967pt;}
.y3d_c00190{bottom:393.657033pt;}
.y3e_c00190{bottom:394.942933pt;}
.y3f_c00190{bottom:395.399267pt;}
.y40_c00190{bottom:396.260500pt;}
.y41_c00190{bottom:396.572633pt;}
.y2_c00190{bottom:398.160000pt;}
.y32_c00190{bottom:407.042733pt;}
.y33_c00190{bottom:407.589333pt;}
.y34_c00190{bottom:408.608633pt;}
.y35_c00190{bottom:408.960300pt;}
.y36_c00190{bottom:409.884767pt;}
.y37_c00190{bottom:410.392733pt;}
.y38_c00190{bottom:411.120300pt;}
.y39_c00190{bottom:412.172100pt;}
.y3a_c00190{bottom:412.701833pt;}
.y2a_c00190{bottom:422.168000pt;}
.y2b_c00190{bottom:423.562567pt;}
.y2c_c00190{bottom:424.339467pt;}
.y2d_c00190{bottom:425.381033pt;}
.y2e_c00190{bottom:426.133933pt;}
.y2f_c00190{bottom:426.500433pt;}
.y30_c00190{bottom:427.764100pt;}
.y31_c00190{bottom:428.414733pt;}
.y22_c00190{bottom:437.285333pt;}
.y23_c00190{bottom:437.521800pt;}
.y24_c00190{bottom:438.889533pt;}
.y25_c00190{bottom:439.453367pt;}
.y26_c00190{bottom:440.302867pt;}
.y27_c00190{bottom:440.597067pt;}
.y28_c00190{bottom:440.995933pt;}
.y29_c00190{bottom:442.791167pt;}
.y1a_c00190{bottom:452.888000pt;}
.y1b_c00190{bottom:453.244000pt;}
.y1c_c00190{bottom:453.834667pt;}
.y1d_c00190{bottom:454.758667pt;}
.y1e_c00190{bottom:456.453333pt;}
.y1f_c00190{bottom:456.798667pt;}
.y20_c00190{bottom:458.164000pt;}
.y21_c00190{bottom:458.670667pt;}
.y13_c00190{bottom:468.965333pt;}
.y14_c00190{bottom:469.816000pt;}
.y15_c00190{bottom:470.336000pt;}
.y16_c00190{bottom:471.930667pt;}
.y17_c00190{bottom:472.324000pt;}
.y18_c00190{bottom:473.601333pt;}
.y19_c00190{bottom:473.852000pt;}
.yc_c00190{bottom:483.369333pt;}
.yd_c00190{bottom:483.866667pt;}
.ye_c00190{bottom:484.937333pt;}
.yf_c00190{bottom:486.556000pt;}
.y10_c00190{bottom:487.444000pt;}
.y11_c00190{bottom:488.762667pt;}
.y12_c00190{bottom:489.194667pt;}
.y4_c00190{bottom:498.726667pt;}
.y5_c00190{bottom:499.420000pt;}
.y6_c00190{bottom:500.777333pt;}
.y7_c00190{bottom:501.016000pt;}
.y8_c00190{bottom:502.550667pt;}
.y9_c00190{bottom:502.940000pt;}
.ya_c00190{bottom:504.220000pt;}
.yb_c00190{bottom:504.849333pt;}
.y3_c00190{bottom:513.717333pt;}
.h2_c00190{height:19.600000pt;}
.hd_c00190{height:25.207257pt;}
.h12_c00190{height:48.545077pt;}
.h11_c00190{height:51.345754pt;}
.hf_c00190{height:52.273356pt;}
.h9_c00190{height:52.282997pt;}
.h19_c00190{height:53.207687pt;}
.hb_c00190{height:53.216622pt;}
.h4_c00190{height:54.133333pt;}
.h15_c00190{height:54.140262pt;}
.h10_c00190{height:54.146432pt;}
.hc_c00190{height:54.150247pt;}
.h1a_c00190{height:55.074623pt;}
.he_c00190{height:56.016126pt;}
.h5_c00190{height:56.933333pt;}
.h1c_c00190{height:56.941560pt;}
.h14_c00190{height:57.874073pt;}
.h1b_c00190{height:57.875028pt;}
.ha_c00190{height:58.818372pt;}
.h6_c00190{height:59.733333pt;}
.h18_c00190{height:59.741964pt;}
.h13_c00190{height:60.672612pt;}
.h16_c00190{height:60.674432pt;}
.h17_c00190{height:62.542369pt;}
.h1d_c00190{height:63.466667pt;}
.h7_c00190{height:64.400000pt;}
.h8_c00190{height:65.353747pt;}
.h3_c00190{height:74.666667pt;}
.h1_c00190{height:554.000000pt;}
.h0_c00190{height:554.133333pt;}
.w1_c00190{width:340.666667pt;}
.w0_c00190{width:340.800000pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:2.160000pt;}
.x49_c00190{left:14.664000pt;}
.x3e_c00190{left:20.356000pt;}
.x2_c00190{left:22.560000pt;}
.x42_c00190{left:23.992000pt;}
.x4_c00190{left:30.012000pt;}
.x18_c00190{left:31.265333pt;}
.x38_c00190{left:32.464437pt;}
.x68_c00190{left:33.564791pt;}
.x6c_c00190{left:34.473783pt;}
.x7e_c00190{left:35.516035pt;}
.x63_c00190{left:40.462667pt;}
.x19_c00190{left:45.524000pt;}
.xc_c00190{left:48.997333pt;}
.x29_c00190{left:54.756533pt;}
.x5_c00190{left:55.673333pt;}
.x36_c00190{left:59.349333pt;}
.x60_c00190{left:60.566475pt;}
.x43_c00190{left:63.092000pt;}
.x71_c00190{left:66.003493pt;}
.x12_c00190{left:67.685333pt;}
.x1a_c00190{left:69.161333pt;}
.x32_c00190{left:70.574633pt;}
.x39_c00190{left:73.482485pt;}
.x7a_c00190{left:75.020925pt;}
.x81_c00190{left:76.560000pt;}
.x4c_c00190{left:78.466667pt;}
.x57_c00190{left:79.605333pt;}
.x5c_c00190{left:84.556320pt;}
.x1e_c00190{left:85.977333pt;}
.x78_c00190{left:87.124783pt;}
.xd_c00190{left:88.633333pt;}
.x13_c00190{left:90.272000pt;}
.x54_c00190{left:94.029669pt;}
.x6d_c00190{left:94.962489pt;}
.x4a_c00190{left:96.144000pt;}
.x2a_c00190{left:97.236267pt;}
.x72_c00190{left:100.568156pt;}
.x2f_c00190{left:103.595200pt;}
.x6_c00190{left:105.958667pt;}
.x1f_c00190{left:108.530667pt;}
.x44_c00190{left:110.376000pt;}
.x2b_c00190{left:111.889967pt;}
.x7_c00190{left:114.793333pt;}
.x24_c00190{left:117.662667pt;}
.x59_c00190{left:118.754667pt;}
.x64_c00190{left:120.428000pt;}
.x6e_c00190{left:121.600729pt;}
.x33_c00190{left:123.390600pt;}
.x45_c00190{left:124.308000pt;}
.x4b_c00190{left:125.762667pt;}
.x3f_c00190{left:126.878667pt;}
.x82_c00190{left:128.880000pt;}
.x50_c00190{left:133.699917pt;}
.x3a_c00190{left:134.690208pt;}
.x34_c00190{left:139.243400pt;}
.x20_c00190{left:142.510667pt;}
.x40_c00190{left:144.888000pt;}
.x3_c00190{left:147.360000pt;}
.xe_c00190{left:148.602667pt;}
.x2c_c00190{left:150.416267pt;}
.x21_c00190{left:154.278667pt;}
.x55_c00190{left:157.810013pt;}
.x14_c00190{left:159.601333pt;}
.x4d_c00190{left:162.697333pt;}
.x51_c00190{left:165.163872pt;}
.x73_c00190{left:168.977255pt;}
.x22_c00190{left:170.233333pt;}
.x8_c00190{left:171.645333pt;}
.x1b_c00190{left:173.909333pt;}
.x58_c00190{left:175.140000pt;}
.x15_c00190{left:176.676000pt;}
.x46_c00190{left:178.566667pt;}
.x56_c00190{left:179.487056pt;}
.xf_c00190{left:181.490667pt;}
.x74_c00190{left:184.579099pt;}
.x9_c00190{left:186.080000pt;}
.x1c_c00190{left:187.730667pt;}
.x25_c00190{left:189.441333pt;}
.x7d_c00190{left:191.059067pt;}
.x61_c00190{left:192.108587pt;}
.x30_c00190{left:193.411700pt;}
.x3b_c00190{left:196.420565pt;}
.x5a_c00190{left:197.478667pt;}
.x47_c00190{left:198.502667pt;}
.x2d_c00190{left:201.918900pt;}
.x26_c00190{left:204.101333pt;}
.x5d_c00190{left:206.312832pt;}
.x37_c00190{left:207.216000pt;}
.x69_c00190{left:213.107263pt;}
.x35_c00190{left:214.580500pt;}
.x52_c00190{left:215.581643pt;}
.x7f_c00190{left:218.902363pt;}
.x5e_c00190{left:220.672181pt;}
.x6a_c00190{left:225.129113pt;}
.x65_c00190{left:227.640000pt;}
.x4e_c00190{left:228.894667pt;}
.x10_c00190{left:230.337333pt;}
.x16_c00190{left:232.216000pt;}
.xa_c00190{left:233.468000pt;}
.x76_c00190{left:235.946243pt;}
.x7c_c00190{left:236.906333pt;}
.x6f_c00190{left:238.764719pt;}
.x66_c00190{left:239.984000pt;}
.x23_c00190{left:242.042667pt;}
.x17_c00190{left:243.137333pt;}
.x31_c00190{left:244.402233pt;}
.x11_c00190{left:246.314667pt;}
.x3c_c00190{left:248.406069pt;}
.x48_c00190{left:249.908000pt;}
.x6b_c00190{left:251.796633pt;}
.x7b_c00190{left:253.314363pt;}
.x27_c00190{left:254.648000pt;}
.xb_c00190{left:256.782667pt;}
.x79_c00190{left:257.790083pt;}
.x83_c00190{left:259.200000pt;}
.x62_c00190{left:260.839029pt;}
.x1d_c00190{left:262.605333pt;}
.x5f_c00190{left:265.606336pt;}
.x80_c00190{left:266.908235pt;}
.x2e_c00190{left:267.848567pt;}
.x41_c00190{left:271.417333pt;}
.x5b_c00190{left:273.324000pt;}
.x53_c00190{left:274.333728pt;}
.x75_c00190{left:279.633215pt;}
.x28_c00190{left:280.673333pt;}
.x3d_c00190{left:283.439040pt;}
.x4f_c00190{left:284.634667pt;}
.x67_c00190{left:285.825333pt;}
.x70_c00190{left:289.590441pt;}
.x77_c00190{left:290.914132pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00191 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00191 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00191 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00191 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00191.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00191{transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);}
.md1_c00191{transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.mcb_c00191{transform:matrix(0.149320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149320,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.mc9_c00191{transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151920,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);}
.m7c_c00191{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.mb7_c00191{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m26_c00191{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);}
.m54_c00191{transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163920,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);}
.mf9_c00191{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m32_c00191{transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);}
.mf3_c00191{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.me5_c00191{transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168490,0.000000,0.000000,0.250000,0,0);}
.m2b_c00191{transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.mdf_c00191{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);}
.mca_c00191{transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);}
.mb8_c00191{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.me8_c00191{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m69_c00191{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.me4_c00191{transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);}
.mfa_c00191{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.mf1_c00191{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.mb6_c00191{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.mcf_c00191{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.mdd_c00191{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.mcc_c00191{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.mf5_c00191{transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.ma0_c00191{transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.md8_c00191{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);}
.md5_c00191{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.mea_c00191{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m6b_c00191{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mec_c00191{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.me2_c00191{transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);}
.med_c00191{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.mb3_c00191{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m7a_c00191{transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);}
.m95_c00191{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m79_c00191{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00191{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m9b_c00191{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m81_c00191{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m66_c00191{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00191{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.md6_c00191{transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);}
.mbb_c00191{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m98_c00191{transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.mbd_c00191{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);}
.m61_c00191{transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190460,0.000000,0.000000,0.250000,0,0);}
.mb9_c00191{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.md4_c00191{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.mc3_c00191{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.me3_c00191{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00191{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.mf7_c00191{transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.mdb_c00191{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.mda_c00191{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m75_c00191{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.mc6_c00191{transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);}
.mf6_c00191{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.mb4_c00191{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);}
.me9_c00191{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.mbc_c00191{transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);}
.m30_c00191{transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201710,0.000000,0.000000,0.250000,0,0);}
.mf0_c00191{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mf4_c00191{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.mbf_c00191{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.me1_c00191{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);}
.maa_c00191{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);}
.mde_c00191{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.ma6_c00191{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.208880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208880,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.mf2_c00191{transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);}
.md0_c00191{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m97_c00191{transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);}
.md2_c00191{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m91_c00191{transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);}
.meb_c00191{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);}
.m67_c00191{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);}
.ma5_c00191{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m85_c00191{transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);}
.md3_c00191{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mce_c00191{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00191{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m39_c00191{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m87_c00191{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.mb2_c00191{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);}
.me0_c00191{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);}
.m77_c00191{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.mc4_c00191{transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217840,0.000000,0.000000,0.250000,0,0);}
.mc8_c00191{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m78_c00191{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.m96_c00191{transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);}
.m9a_c00191{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.mef_c00191{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.mee_c00191{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.mb5_c00191{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.mc0_c00191{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.mc2_c00191{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);}
.md7_c00191{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);}
.mf8_c00191{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.mbe_c00191{transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.mdc_c00191{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.mcd_c00191{transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);}
.m23_c00191{transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233105,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.m9c_c00191{transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233620,0.000000,0.000000,0.250000,0,0);}
.mc1_c00191{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.236345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236345,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);}
.mae_c00191{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.me7_c00191{transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.m88_c00191{transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);}
.me6_c00191{transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);}
.mb1_c00191{transform:matrix(0.576355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576355,0.000000,0.000000,0.250000,0,0);}
.md9_c00191{transform:matrix(0.590060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590060,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:0.000000px;}
.fc0_c00191{color:transparent;}
.fsa_c00191{font-size:57.750000px;}
.fs4_c00191{font-size:58.800000px;}
.fs7_c00191{font-size:59.850000px;}
.fs5_c00191{font-size:60.900000px;}
.fs3_c00191{font-size:61.950000px;}
.fs0_c00191{font-size:63.000000px;}
.fs2_c00191{font-size:64.050000px;}
.fs6_c00191{font-size:65.100000px;}
.fsb_c00191{font-size:66.150000px;}
.fs9_c00191{font-size:68.250000px;}
.fs1_c00191{font-size:69.300000px;}
.fs8_c00191{font-size:70.350000px;}
.y0_c00191{bottom:0.000000px;}
.yc4_c00191{bottom:31.495500px;}
.yc3_c00191{bottom:47.599500px;}
.yc2_c00191{bottom:47.914500px;}
.yc1_c00191{bottom:48.745500px;}
.yc0_c00191{bottom:49.539000px;}
.ybf_c00191{bottom:49.843500px;}
.ybe_c00191{bottom:50.202000px;}
.ybd_c00191{bottom:50.517000px;}
.ybc_c00191{bottom:51.579000px;}
.ybb_c00191{bottom:66.628500px;}
.yba_c00191{bottom:82.590000px;}
.yb9_c00191{bottom:83.092500px;}
.yb8_c00191{bottom:83.967000px;}
.yb7_c00191{bottom:84.220500px;}
.yb6_c00191{bottom:84.570000px;}
.yb5_c00191{bottom:84.765000px;}
.yb4_c00191{bottom:84.925500px;}
.yb3_c00191{bottom:85.869000px;}
.yb2_c00191{bottom:100.296000px;}
.yb1_c00191{bottom:117.238500px;}
.yb0_c00191{bottom:134.518500px;}
.yaf_c00191{bottom:150.811500px;}
.yae_c00191{bottom:151.083000px;}
.yad_c00191{bottom:151.321500px;}
.yac_c00191{bottom:153.120000px;}
.yab_c00191{bottom:153.768000px;}
.yaa_c00191{bottom:154.273500px;}
.ya9_c00191{bottom:154.717500px;}
.ya8_c00191{bottom:169.431000px;}
.ya7_c00191{bottom:186.553500px;}
.ya6_c00191{bottom:187.758000px;}
.ya5_c00191{bottom:188.104500px;}
.ya4_c00191{bottom:188.520000px;}
.ya3_c00191{bottom:189.022500px;}
.ya2_c00191{bottom:189.879000px;}
.ya1_c00191{bottom:190.258500px;}
.ya0_c00191{bottom:190.591500px;}
.y9f_c00191{bottom:191.169000px;}
.y9e_c00191{bottom:202.087500px;}
.y9d_c00191{bottom:202.428000px;}
.y9c_c00191{bottom:203.388000px;}
.y9b_c00191{bottom:203.833500px;}
.y9a_c00191{bottom:204.522000px;}
.y99_c00191{bottom:204.753000px;}
.y98_c00191{bottom:205.152000px;}
.y97_c00191{bottom:205.594500px;}
.y96_c00191{bottom:206.017500px;}
.y95_c00191{bottom:220.033500px;}
.y94_c00191{bottom:220.446000px;}
.y93_c00191{bottom:220.801500px;}
.y92_c00191{bottom:221.817000px;}
.y91_c00191{bottom:223.207500px;}
.y90_c00191{bottom:223.528500px;}
.y8f_c00191{bottom:224.650500px;}
.y8e_c00191{bottom:237.975000px;}
.y8d_c00191{bottom:238.384500px;}
.y8c_c00191{bottom:238.720500px;}
.y8b_c00191{bottom:239.461500px;}
.y8a_c00191{bottom:239.778000px;}
.y89_c00191{bottom:240.226500px;}
.y88_c00191{bottom:240.667500px;}
.y87_c00191{bottom:240.915000px;}
.y86_c00191{bottom:241.927500px;}
.y85_c00191{bottom:254.488500px;}
.y84_c00191{bottom:254.809500px;}
.y83_c00191{bottom:255.531000px;}
.y82_c00191{bottom:255.841500px;}
.y81_c00191{bottom:256.488000px;}
.y80_c00191{bottom:256.669500px;}
.y7f_c00191{bottom:257.422500px;}
.y7e_c00191{bottom:258.397500px;}
.y7d_c00191{bottom:271.326000px;}
.y7c_c00191{bottom:271.938000px;}
.y7b_c00191{bottom:272.166000px;}
.y7a_c00191{bottom:272.940000px;}
.y79_c00191{bottom:273.597000px;}
.y78_c00191{bottom:273.907500px;}
.y77_c00191{bottom:274.884000px;}
.y76_c00191{bottom:275.173500px;}
.y75_c00191{bottom:275.406000px;}
.y74_c00191{bottom:288.904500px;}
.y73_c00191{bottom:289.191000px;}
.y72_c00191{bottom:290.041500px;}
.y71_c00191{bottom:290.280000px;}
.y70_c00191{bottom:290.881500px;}
.y6f_c00191{bottom:291.217500px;}
.y6e_c00191{bottom:291.460500px;}
.y6d_c00191{bottom:291.841500px;}
.y6c_c00191{bottom:292.416000px;}
.y6b_c00191{bottom:305.215500px;}
.y6a_c00191{bottom:306.009000px;}
.y69_c00191{bottom:306.528000px;}
.y68_c00191{bottom:306.762000px;}
.y67_c00191{bottom:307.474500px;}
.y66_c00191{bottom:307.681500px;}
.y65_c00191{bottom:308.346000px;}
.y64_c00191{bottom:322.456500px;}
.y63_c00191{bottom:323.056500px;}
.y62_c00191{bottom:323.271000px;}
.y61_c00191{bottom:323.443500px;}
.y60_c00191{bottom:323.925000px;}
.y5f_c00191{bottom:324.468000px;}
.y5e_c00191{bottom:325.104000px;}
.y5d_c00191{bottom:325.332000px;}
.y5c_c00191{bottom:325.626000px;}
.y5b_c00191{bottom:339.784500px;}
.y5a_c00191{bottom:340.023000px;}
.y59_c00191{bottom:340.342500px;}
.y58_c00191{bottom:341.071500px;}
.y57_c00191{bottom:341.335500px;}
.y56_c00191{bottom:342.091500px;}
.y55_c00191{bottom:342.459000px;}
.y54_c00191{bottom:342.904500px;}
.y53_c00191{bottom:357.127500px;}
.y52_c00191{bottom:357.393000px;}
.y51_c00191{bottom:357.636000px;}
.y50_c00191{bottom:358.722000px;}
.y4f_c00191{bottom:359.556000px;}
.y4e_c00191{bottom:359.782500px;}
.y4d_c00191{bottom:360.216000px;}
.y4c_c00191{bottom:360.456000px;}
.y4b_c00191{bottom:373.728000px;}
.y4a_c00191{bottom:374.532000px;}
.y49_c00191{bottom:374.946000px;}
.y48_c00191{bottom:375.244500px;}
.y47_c00191{bottom:376.428000px;}
.y46_c00191{bottom:376.813500px;}
.y45_c00191{bottom:377.466000px;}
.y44_c00191{bottom:390.792000px;}
.y43_c00191{bottom:391.903500px;}
.y42_c00191{bottom:392.656500px;}
.y41_c00191{bottom:393.427500px;}
.y40_c00191{bottom:394.210500px;}
.y3f_c00191{bottom:394.770000px;}
.y3e_c00191{bottom:395.556000px;}
.y3d_c00191{bottom:408.502500px;}
.y3c_c00191{bottom:408.819000px;}
.y3b_c00191{bottom:409.099500px;}
.y3a_c00191{bottom:409.864500px;}
.y39_c00191{bottom:411.090000px;}
.y38_c00191{bottom:412.188000px;}
.y37_c00191{bottom:412.522500px;}
.y36_c00191{bottom:413.106000px;}
.y35_c00191{bottom:425.364000px;}
.y34_c00191{bottom:425.727000px;}
.y33_c00191{bottom:426.594000px;}
.y32_c00191{bottom:427.060500px;}
.y31_c00191{bottom:428.091000px;}
.y30_c00191{bottom:428.343000px;}
.y2f_c00191{bottom:429.885000px;}
.y2e_c00191{bottom:430.482000px;}
.y2d_c00191{bottom:430.924500px;}
.y2c_c00191{bottom:443.650500px;}
.y2b_c00191{bottom:444.306000px;}
.y2a_c00191{bottom:444.649500px;}
.y29_c00191{bottom:445.893000px;}
.y28_c00191{bottom:446.184000px;}
.y27_c00191{bottom:446.496000px;}
.y26_c00191{bottom:447.460500px;}
.y25_c00191{bottom:447.661500px;}
.y24_c00191{bottom:460.219500px;}
.y23_c00191{bottom:461.203500px;}
.y22_c00191{bottom:461.830500px;}
.y21_c00191{bottom:462.394500px;}
.y20_c00191{bottom:462.694500px;}
.y1f_c00191{bottom:463.653000px;}
.y1e_c00191{bottom:464.673000px;}
.y1d_c00191{bottom:476.670000px;}
.y1c_c00191{bottom:477.010500px;}
.y1b_c00191{bottom:477.828000px;}
.y1a_c00191{bottom:478.117500px;}
.y19_c00191{bottom:478.686000px;}
.y18_c00191{bottom:479.190000px;}
.y17_c00191{bottom:480.348000px;}
.y16_c00191{bottom:480.675000px;}
.y15_c00191{bottom:481.033500px;}
.y14_c00191{bottom:481.413000px;}
.y13_c00191{bottom:495.012000px;}
.y12_c00191{bottom:495.169500px;}
.y11_c00191{bottom:495.948000px;}
.y10_c00191{bottom:496.168500px;}
.yf_c00191{bottom:496.707000px;}
.ye_c00191{bottom:496.908000px;}
.yd_c00191{bottom:497.883000px;}
.yc_c00191{bottom:511.801500px;}
.yb_c00191{bottom:512.134500px;}
.ya_c00191{bottom:512.629500px;}
.y9_c00191{bottom:513.631500px;}
.y8_c00191{bottom:514.020000px;}
.y7_c00191{bottom:514.353000px;}
.y6_c00191{bottom:514.596000px;}
.y5_c00191{bottom:514.891500px;}
.y4_c00191{bottom:530.266500px;}
.y3_c00191{bottom:547.704000px;}
.y2_c00191{bottom:565.159500px;}
.y1_c00191{bottom:581.310000px;}
.hc_c00191{height:57.750000px;}
.h6_c00191{height:58.800000px;}
.h9_c00191{height:59.850000px;}
.h7_c00191{height:60.900000px;}
.h5_c00191{height:61.950000px;}
.h2_c00191{height:63.000000px;}
.h4_c00191{height:64.050000px;}
.h8_c00191{height:65.100000px;}
.hd_c00191{height:66.150000px;}
.hb_c00191{height:68.250000px;}
.h3_c00191{height:69.300000px;}
.ha_c00191{height:70.350000px;}
.h1_c00191{height:623.250000px;}
.h0_c00191{height:623.400000px;}
.w1_c00191{width:383.250000px;}
.w0_c00191{width:383.400000px;}
.x0_c00191{left:0.000000px;}
.x5f_c00191{left:44.868000px;}
.x45_c00191{left:46.024500px;}
.x38_c00191{left:47.043000px;}
.x27_c00191{left:48.124500px;}
.x15_c00191{left:49.264500px;}
.x2_c00191{left:50.490000px;}
.x56_c00191{left:59.740500px;}
.x2d_c00191{left:62.469000px;}
.x46_c00191{left:66.037500px;}
.x32_c00191{left:69.520500px;}
.x10_c00191{left:72.090000px;}
.x16_c00191{left:73.827000px;}
.x64_c00191{left:75.133500px;}
.x57_c00191{left:77.847000px;}
.x39_c00191{left:81.333000px;}
.x4c_c00191{left:86.319000px;}
.xa_c00191{left:87.480000px;}
.x67_c00191{left:90.747000px;}
.x21_c00191{left:92.940000px;}
.x17_c00191{left:94.132500px;}
.x43_c00191{left:96.765000px;}
.x76_c00191{left:98.013000px;}
.x33_c00191{left:99.391500px;}
.x3a_c00191{left:101.041500px;}
.x47_c00191{left:102.174000px;}
.x60_c00191{left:107.223000px;}
.x3_c00191{left:109.080000px;}
.x22_c00191{left:112.141500px;}
.x54_c00191{left:113.509500px;}
.x5b_c00191{left:115.666500px;}
.x53_c00191{left:118.392000px;}
.x4d_c00191{left:119.794500px;}
.x18_c00191{left:121.890000px;}
.x74_c00191{left:123.052500px;}
.x61_c00191{left:125.041500px;}
.x2e_c00191{left:126.804000px;}
.x4_c00191{left:130.410000px;}
.x65_c00191{left:135.339000px;}
.x75_c00191{left:136.473000px;}
.x11_c00191{left:139.050000px;}
.x6a_c00191{left:140.131500px;}
.x77_c00191{left:142.746000px;}
.x79_c00191{left:144.723000px;}
.xb_c00191{left:145.800000px;}
.x1d_c00191{left:147.012000px;}
.x50_c00191{left:151.335000px;}
.x68_c00191{left:152.574000px;}
.x19_c00191{left:154.299000px;}
.x58_c00191{left:158.304000px;}
.x28_c00191{left:164.520000px;}
.x3b_c00191{left:165.616500px;}
.x2f_c00191{left:166.977000px;}
.x78_c00191{left:168.379500px;}
.x5c_c00191{left:169.408500px;}
.x3f_c00191{left:172.320000px;}
.xc_c00191{left:173.880000px;}
.x34_c00191{left:176.467500px;}
.x69_c00191{left:177.679500px;}
.x5_c00191{left:178.740000px;}
.x23_c00191{left:180.253500px;}
.x29_c00191{left:182.148000px;}
.x1_c00191{left:184.410000px;}
.x35_c00191{left:189.072000px;}
.x48_c00191{left:190.522500px;}
.x1e_c00191{left:191.832000px;}
.x6_c00191{left:196.830000px;}
.x59_c00191{left:199.351500px;}
.x51_c00191{left:200.742000px;}
.x62_c00191{left:202.266000px;}
.x7a_c00191{left:206.013000px;}
.x73_c00191{left:208.981500px;}
.x1f_c00191{left:210.192000px;}
.x4e_c00191{left:212.616000px;}
.x2a_c00191{left:215.358000px;}
.x12_c00191{left:216.540000px;}
.x40_c00191{left:217.690500px;}
.xd_c00191{left:219.510000px;}
.x5d_c00191{left:228.523500px;}
.x66_c00191{left:232.827000px;}
.x13_c00191{left:234.090000px;}
.x1a_c00191{left:237.784500px;}
.x36_c00191{left:240.616500px;}
.x7_c00191{left:242.730000px;}
.x52_c00191{left:244.491000px;}
.x5a_c00191{left:247.759500px;}
.xe_c00191{left:249.750000px;}
.x2b_c00191{left:252.259500px;}
.x6e_c00191{left:254.071500px;}
.x63_c00191{left:258.693000px;}
.x24_c00191{left:260.343000px;}
.x41_c00191{left:261.976500px;}
.x8_c00191{left:264.060000px;}
.xf_c00191{left:269.730000px;}
.x6b_c00191{left:271.191000px;}
.x30_c00191{left:272.809500px;}
.x20_c00191{left:275.044500px;}
.x1b_c00191{left:279.030000px;}
.x49_c00191{left:280.975500px;}
.x3c_c00191{left:282.768000px;}
.x6c_c00191{left:287.106000px;}
.x9_c00191{left:288.900000px;}
.x71_c00191{left:291.061500px;}
.x55_c00191{left:296.026500px;}
.x3d_c00191{left:299.233500px;}
.x4a_c00191{left:301.167000px;}
.x5e_c00191{left:302.233500px;}
.x6f_c00191{left:303.751500px;}
.x6d_c00191{left:305.248500px;}
.x1c_c00191{left:306.835500px;}
.x25_c00191{left:308.398500px;}
.x2c_c00191{left:310.105500px;}
.x72_c00191{left:313.201500px;}
.x14_c00191{left:315.360000px;}
.x31_c00191{left:316.507500px;}
.x3e_c00191{left:317.857500px;}
.x70_c00191{left:320.491500px;}
.x4b_c00191{left:323.313000px;}
.x37_c00191{left:325.432500px;}
.x42_c00191{left:327.379500px;}
.x26_c00191{left:328.450500px;}
.x4f_c00191{left:329.583000px;}
.x44_c00191{left:334.159500px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.000000pt;}
.fsa_c00191{font-size:51.333333pt;}
.fs4_c00191{font-size:52.266667pt;}
.fs7_c00191{font-size:53.200000pt;}
.fs5_c00191{font-size:54.133333pt;}
.fs3_c00191{font-size:55.066667pt;}
.fs0_c00191{font-size:56.000000pt;}
.fs2_c00191{font-size:56.933333pt;}
.fs6_c00191{font-size:57.866667pt;}
.fsb_c00191{font-size:58.800000pt;}
.fs9_c00191{font-size:60.666667pt;}
.fs1_c00191{font-size:61.600000pt;}
.fs8_c00191{font-size:62.533333pt;}
.y0_c00191{bottom:0.000000pt;}
.yc4_c00191{bottom:27.996000pt;}
.yc3_c00191{bottom:42.310667pt;}
.yc2_c00191{bottom:42.590667pt;}
.yc1_c00191{bottom:43.329333pt;}
.yc0_c00191{bottom:44.034667pt;}
.ybf_c00191{bottom:44.305333pt;}
.ybe_c00191{bottom:44.624000pt;}
.ybd_c00191{bottom:44.904000pt;}
.ybc_c00191{bottom:45.848000pt;}
.ybb_c00191{bottom:59.225333pt;}
.yba_c00191{bottom:73.413333pt;}
.yb9_c00191{bottom:73.860000pt;}
.yb8_c00191{bottom:74.637333pt;}
.yb7_c00191{bottom:74.862667pt;}
.yb6_c00191{bottom:75.173333pt;}
.yb5_c00191{bottom:75.346667pt;}
.yb4_c00191{bottom:75.489333pt;}
.yb3_c00191{bottom:76.328000pt;}
.yb2_c00191{bottom:89.152000pt;}
.yb1_c00191{bottom:104.212000pt;}
.yb0_c00191{bottom:119.572000pt;}
.yaf_c00191{bottom:134.054667pt;}
.yae_c00191{bottom:134.296000pt;}
.yad_c00191{bottom:134.508000pt;}
.yac_c00191{bottom:136.106667pt;}
.yab_c00191{bottom:136.682667pt;}
.yaa_c00191{bottom:137.132000pt;}
.ya9_c00191{bottom:137.526667pt;}
.ya8_c00191{bottom:150.605333pt;}
.ya7_c00191{bottom:165.825333pt;}
.ya6_c00191{bottom:166.896000pt;}
.ya5_c00191{bottom:167.204000pt;}
.ya4_c00191{bottom:167.573333pt;}
.ya3_c00191{bottom:168.020000pt;}
.ya2_c00191{bottom:168.781333pt;}
.ya1_c00191{bottom:169.118667pt;}
.ya0_c00191{bottom:169.414667pt;}
.y9f_c00191{bottom:169.928000pt;}
.y9e_c00191{bottom:179.633333pt;}
.y9d_c00191{bottom:179.936000pt;}
.y9c_c00191{bottom:180.789333pt;}
.y9b_c00191{bottom:181.185333pt;}
.y9a_c00191{bottom:181.797333pt;}
.y99_c00191{bottom:182.002667pt;}
.y98_c00191{bottom:182.357333pt;}
.y97_c00191{bottom:182.750667pt;}
.y96_c00191{bottom:183.126667pt;}
.y95_c00191{bottom:195.585333pt;}
.y94_c00191{bottom:195.952000pt;}
.y93_c00191{bottom:196.268000pt;}
.y92_c00191{bottom:197.170667pt;}
.y91_c00191{bottom:198.406667pt;}
.y90_c00191{bottom:198.692000pt;}
.y8f_c00191{bottom:199.689333pt;}
.y8e_c00191{bottom:211.533333pt;}
.y8d_c00191{bottom:211.897333pt;}
.y8c_c00191{bottom:212.196000pt;}
.y8b_c00191{bottom:212.854667pt;}
.y8a_c00191{bottom:213.136000pt;}
.y89_c00191{bottom:213.534667pt;}
.y88_c00191{bottom:213.926667pt;}
.y87_c00191{bottom:214.146667pt;}
.y86_c00191{bottom:215.046667pt;}
.y85_c00191{bottom:226.212000pt;}
.y84_c00191{bottom:226.497333pt;}
.y83_c00191{bottom:227.138667pt;}
.y82_c00191{bottom:227.414667pt;}
.y81_c00191{bottom:227.989333pt;}
.y80_c00191{bottom:228.150667pt;}
.y7f_c00191{bottom:228.820000pt;}
.y7e_c00191{bottom:229.686667pt;}
.y7d_c00191{bottom:241.178667pt;}
.y7c_c00191{bottom:241.722667pt;}
.y7b_c00191{bottom:241.925333pt;}
.y7a_c00191{bottom:242.613333pt;}
.y79_c00191{bottom:243.197333pt;}
.y78_c00191{bottom:243.473333pt;}
.y77_c00191{bottom:244.341333pt;}
.y76_c00191{bottom:244.598667pt;}
.y75_c00191{bottom:244.805333pt;}
.y74_c00191{bottom:256.804000pt;}
.y73_c00191{bottom:257.058667pt;}
.y72_c00191{bottom:257.814667pt;}
.y71_c00191{bottom:258.026667pt;}
.y70_c00191{bottom:258.561333pt;}
.y6f_c00191{bottom:258.860000pt;}
.y6e_c00191{bottom:259.076000pt;}
.y6d_c00191{bottom:259.414667pt;}
.y6c_c00191{bottom:259.925333pt;}
.y6b_c00191{bottom:271.302667pt;}
.y6a_c00191{bottom:272.008000pt;}
.y69_c00191{bottom:272.469333pt;}
.y68_c00191{bottom:272.677333pt;}
.y67_c00191{bottom:273.310667pt;}
.y66_c00191{bottom:273.494667pt;}
.y65_c00191{bottom:274.085333pt;}
.y64_c00191{bottom:286.628000pt;}
.y63_c00191{bottom:287.161333pt;}
.y62_c00191{bottom:287.352000pt;}
.y61_c00191{bottom:287.505333pt;}
.y60_c00191{bottom:287.933333pt;}
.y5f_c00191{bottom:288.416000pt;}
.y5e_c00191{bottom:288.981333pt;}
.y5d_c00191{bottom:289.184000pt;}
.y5c_c00191{bottom:289.445333pt;}
.y5b_c00191{bottom:302.030667pt;}
.y5a_c00191{bottom:302.242667pt;}
.y59_c00191{bottom:302.526667pt;}
.y58_c00191{bottom:303.174667pt;}
.y57_c00191{bottom:303.409333pt;}
.y56_c00191{bottom:304.081333pt;}
.y55_c00191{bottom:304.408000pt;}
.y54_c00191{bottom:304.804000pt;}
.y53_c00191{bottom:317.446667pt;}
.y52_c00191{bottom:317.682667pt;}
.y51_c00191{bottom:317.898667pt;}
.y50_c00191{bottom:318.864000pt;}
.y4f_c00191{bottom:319.605333pt;}
.y4e_c00191{bottom:319.806667pt;}
.y4d_c00191{bottom:320.192000pt;}
.y4c_c00191{bottom:320.405333pt;}
.y4b_c00191{bottom:332.202667pt;}
.y4a_c00191{bottom:332.917333pt;}
.y49_c00191{bottom:333.285333pt;}
.y48_c00191{bottom:333.550667pt;}
.y47_c00191{bottom:334.602667pt;}
.y46_c00191{bottom:334.945333pt;}
.y45_c00191{bottom:335.525333pt;}
.y44_c00191{bottom:347.370667pt;}
.y43_c00191{bottom:348.358667pt;}
.y42_c00191{bottom:349.028000pt;}
.y41_c00191{bottom:349.713333pt;}
.y40_c00191{bottom:350.409333pt;}
.y3f_c00191{bottom:350.906667pt;}
.y3e_c00191{bottom:351.605333pt;}
.y3d_c00191{bottom:363.113333pt;}
.y3c_c00191{bottom:363.394667pt;}
.y3b_c00191{bottom:363.644000pt;}
.y3a_c00191{bottom:364.324000pt;}
.y39_c00191{bottom:365.413333pt;}
.y38_c00191{bottom:366.389333pt;}
.y37_c00191{bottom:366.686667pt;}
.y36_c00191{bottom:367.205333pt;}
.y35_c00191{bottom:378.101333pt;}
.y34_c00191{bottom:378.424000pt;}
.y33_c00191{bottom:379.194667pt;}
.y32_c00191{bottom:379.609333pt;}
.y31_c00191{bottom:380.525333pt;}
.y30_c00191{bottom:380.749333pt;}
.y2f_c00191{bottom:382.120000pt;}
.y2e_c00191{bottom:382.650667pt;}
.y2d_c00191{bottom:383.044000pt;}
.y2c_c00191{bottom:394.356000pt;}
.y2b_c00191{bottom:394.938667pt;}
.y2a_c00191{bottom:395.244000pt;}
.y29_c00191{bottom:396.349333pt;}
.y28_c00191{bottom:396.608000pt;}
.y27_c00191{bottom:396.885333pt;}
.y26_c00191{bottom:397.742667pt;}
.y25_c00191{bottom:397.921333pt;}
.y24_c00191{bottom:409.084000pt;}
.y23_c00191{bottom:409.958667pt;}
.y22_c00191{bottom:410.516000pt;}
.y21_c00191{bottom:411.017333pt;}
.y20_c00191{bottom:411.284000pt;}
.y1f_c00191{bottom:412.136000pt;}
.y1e_c00191{bottom:413.042667pt;}
.y1d_c00191{bottom:423.706667pt;}
.y1c_c00191{bottom:424.009333pt;}
.y1b_c00191{bottom:424.736000pt;}
.y1a_c00191{bottom:424.993333pt;}
.y19_c00191{bottom:425.498667pt;}
.y18_c00191{bottom:425.946667pt;}
.y17_c00191{bottom:426.976000pt;}
.y16_c00191{bottom:427.266667pt;}
.y15_c00191{bottom:427.585333pt;}
.y14_c00191{bottom:427.922667pt;}
.y13_c00191{bottom:440.010667pt;}
.y12_c00191{bottom:440.150667pt;}
.y11_c00191{bottom:440.842667pt;}
.y10_c00191{bottom:441.038667pt;}
.yf_c00191{bottom:441.517333pt;}
.ye_c00191{bottom:441.696000pt;}
.yd_c00191{bottom:442.562667pt;}
.yc_c00191{bottom:454.934667pt;}
.yb_c00191{bottom:455.230667pt;}
.ya_c00191{bottom:455.670667pt;}
.y9_c00191{bottom:456.561333pt;}
.y8_c00191{bottom:456.906667pt;}
.y7_c00191{bottom:457.202667pt;}
.y6_c00191{bottom:457.418667pt;}
.y5_c00191{bottom:457.681333pt;}
.y4_c00191{bottom:471.348000pt;}
.y3_c00191{bottom:486.848000pt;}
.y2_c00191{bottom:502.364000pt;}
.y1_c00191{bottom:516.720000pt;}
.hc_c00191{height:51.333333pt;}
.h6_c00191{height:52.266667pt;}
.h9_c00191{height:53.200000pt;}
.h7_c00191{height:54.133333pt;}
.h5_c00191{height:55.066667pt;}
.h2_c00191{height:56.000000pt;}
.h4_c00191{height:56.933333pt;}
.h8_c00191{height:57.866667pt;}
.hd_c00191{height:58.800000pt;}
.hb_c00191{height:60.666667pt;}
.h3_c00191{height:61.600000pt;}
.ha_c00191{height:62.533333pt;}
.h1_c00191{height:554.000000pt;}
.h0_c00191{height:554.133333pt;}
.w1_c00191{width:340.666667pt;}
.w0_c00191{width:340.800000pt;}
.x0_c00191{left:0.000000pt;}
.x5f_c00191{left:39.882667pt;}
.x45_c00191{left:40.910667pt;}
.x38_c00191{left:41.816000pt;}
.x27_c00191{left:42.777333pt;}
.x15_c00191{left:43.790667pt;}
.x2_c00191{left:44.880000pt;}
.x56_c00191{left:53.102667pt;}
.x2d_c00191{left:55.528000pt;}
.x46_c00191{left:58.700000pt;}
.x32_c00191{left:61.796000pt;}
.x10_c00191{left:64.080000pt;}
.x16_c00191{left:65.624000pt;}
.x64_c00191{left:66.785333pt;}
.x57_c00191{left:69.197333pt;}
.x39_c00191{left:72.296000pt;}
.x4c_c00191{left:76.728000pt;}
.xa_c00191{left:77.760000pt;}
.x67_c00191{left:80.664000pt;}
.x21_c00191{left:82.613333pt;}
.x17_c00191{left:83.673333pt;}
.x43_c00191{left:86.013333pt;}
.x76_c00191{left:87.122667pt;}
.x33_c00191{left:88.348000pt;}
.x3a_c00191{left:89.814667pt;}
.x47_c00191{left:90.821333pt;}
.x60_c00191{left:95.309333pt;}
.x3_c00191{left:96.960000pt;}
.x22_c00191{left:99.681333pt;}
.x54_c00191{left:100.897333pt;}
.x5b_c00191{left:102.814667pt;}
.x53_c00191{left:105.237333pt;}
.x4d_c00191{left:106.484000pt;}
.x18_c00191{left:108.346667pt;}
.x74_c00191{left:109.380000pt;}
.x61_c00191{left:111.148000pt;}
.x2e_c00191{left:112.714667pt;}
.x4_c00191{left:115.920000pt;}
.x65_c00191{left:120.301333pt;}
.x75_c00191{left:121.309333pt;}
.x11_c00191{left:123.600000pt;}
.x6a_c00191{left:124.561333pt;}
.x77_c00191{left:126.885333pt;}
.x79_c00191{left:128.642667pt;}
.xb_c00191{left:129.600000pt;}
.x1d_c00191{left:130.677333pt;}
.x50_c00191{left:134.520000pt;}
.x68_c00191{left:135.621333pt;}
.x19_c00191{left:137.154667pt;}
.x58_c00191{left:140.714667pt;}
.x28_c00191{left:146.240000pt;}
.x3b_c00191{left:147.214667pt;}
.x2f_c00191{left:148.424000pt;}
.x78_c00191{left:149.670667pt;}
.x5c_c00191{left:150.585333pt;}
.x3f_c00191{left:153.173333pt;}
.xc_c00191{left:154.560000pt;}
.x34_c00191{left:156.860000pt;}
.x69_c00191{left:157.937333pt;}
.x5_c00191{left:158.880000pt;}
.x23_c00191{left:160.225333pt;}
.x29_c00191{left:161.909333pt;}
.x1_c00191{left:163.920000pt;}
.x35_c00191{left:168.064000pt;}
.x48_c00191{left:169.353333pt;}
.x1e_c00191{left:170.517333pt;}
.x6_c00191{left:174.960000pt;}
.x59_c00191{left:177.201333pt;}
.x51_c00191{left:178.437333pt;}
.x62_c00191{left:179.792000pt;}
.x7a_c00191{left:183.122667pt;}
.x73_c00191{left:185.761333pt;}
.x1f_c00191{left:186.837333pt;}
.x4e_c00191{left:188.992000pt;}
.x2a_c00191{left:191.429333pt;}
.x12_c00191{left:192.480000pt;}
.x40_c00191{left:193.502667pt;}
.xd_c00191{left:195.120000pt;}
.x5d_c00191{left:203.132000pt;}
.x66_c00191{left:206.957333pt;}
.x13_c00191{left:208.080000pt;}
.x1a_c00191{left:211.364000pt;}
.x36_c00191{left:213.881333pt;}
.x7_c00191{left:215.760000pt;}
.x52_c00191{left:217.325333pt;}
.x5a_c00191{left:220.230667pt;}
.xe_c00191{left:222.000000pt;}
.x2b_c00191{left:224.230667pt;}
.x6e_c00191{left:225.841333pt;}
.x63_c00191{left:229.949333pt;}
.x24_c00191{left:231.416000pt;}
.x41_c00191{left:232.868000pt;}
.x8_c00191{left:234.720000pt;}
.xf_c00191{left:239.760000pt;}
.x6b_c00191{left:241.058667pt;}
.x30_c00191{left:242.497333pt;}
.x20_c00191{left:244.484000pt;}
.x1b_c00191{left:248.026667pt;}
.x49_c00191{left:249.756000pt;}
.x3c_c00191{left:251.349333pt;}
.x6c_c00191{left:255.205333pt;}
.x9_c00191{left:256.800000pt;}
.x71_c00191{left:258.721333pt;}
.x55_c00191{left:263.134667pt;}
.x3d_c00191{left:265.985333pt;}
.x4a_c00191{left:267.704000pt;}
.x5e_c00191{left:268.652000pt;}
.x6f_c00191{left:270.001333pt;}
.x6d_c00191{left:271.332000pt;}
.x1c_c00191{left:272.742667pt;}
.x25_c00191{left:274.132000pt;}
.x2c_c00191{left:275.649333pt;}
.x72_c00191{left:278.401333pt;}
.x14_c00191{left:280.320000pt;}
.x31_c00191{left:281.340000pt;}
.x3e_c00191{left:282.540000pt;}
.x70_c00191{left:284.881333pt;}
.x4b_c00191{left:287.389333pt;}
.x37_c00191{left:289.273333pt;}
.x42_c00191{left:291.004000pt;}
.x26_c00191{left:291.956000pt;}
.x4f_c00191{left:292.962667pt;}
.x44_c00191{left:297.030667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00192 {
    display:none;
  }
  .loading-indicator_c00192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00192 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00192 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00192" -> "#page-container .classname_c00192")
 */
.pf_c00192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00192 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00192 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00192 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00192 {overflow:visible;}
  }
}
.c_c00192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00192 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00192:after { /* webkit #35443 */
  content: '';
}
.t_c00192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00192 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00192 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00192 { /* info for Javascript */
  display:none;
}
.l_c00192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00192:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00192 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00192.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00192{transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.025718,-0.000617,0.005998,0.249928,0,0);-ms-transform:matrix(0.025718,-0.000617,0.005998,0.249928,0,0);-webkit-transform:matrix(0.025718,-0.000617,0.005998,0.249928,0,0);}
.m95_c00192{transform:matrix(0.130579,-0.001698,0.003250,0.249979,0,0);-ms-transform:matrix(0.130579,-0.001698,0.003250,0.249979,0,0);-webkit-transform:matrix(0.130579,-0.001698,0.003250,0.249979,0,0);}
.m28_c00192{transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.139736,-0.003493,0.006248,0.249922,0,0);-ms-transform:matrix(0.139736,-0.003493,0.006248,0.249922,0,0);-webkit-transform:matrix(0.139736,-0.003493,0.006248,0.249922,0,0);}
.m0_c00192{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.141892,-0.002554,0.004499,0.249960,0,0);-ms-transform:matrix(0.141892,-0.002554,0.004499,0.249960,0,0);-webkit-transform:matrix(0.141892,-0.002554,0.004499,0.249960,0,0);}
.mc4_c00192{transform:matrix(0.147133,-0.001913,0.003250,0.249979,0,0);-ms-transform:matrix(0.147133,-0.001913,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147133,-0.001913,0.003250,0.249979,0,0);}
.mc5_c00192{transform:matrix(0.148592,-0.001932,0.003250,0.249979,0,0);-ms-transform:matrix(0.148592,-0.001932,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148592,-0.001932,0.003250,0.249979,0,0);}
.mc6_c00192{transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);-ms-transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148752,-0.001934,0.003250,0.249979,0,0);}
.mc1_c00192{transform:matrix(0.149897,-0.001949,0.003250,0.249979,0,0);-ms-transform:matrix(0.149897,-0.001949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149897,-0.001949,0.003250,0.249979,0,0);}
.mb7_c00192{transform:matrix(0.151697,-0.001972,0.003250,0.249979,0,0);-ms-transform:matrix(0.151697,-0.001972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151697,-0.001972,0.003250,0.249979,0,0);}
.m15_c00192{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.mc7_c00192{transform:matrix(0.153847,-0.002000,0.003250,0.249979,0,0);-ms-transform:matrix(0.153847,-0.002000,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153847,-0.002000,0.003250,0.249979,0,0);}
.mc3_c00192{transform:matrix(0.154312,-0.002006,0.003250,0.249979,0,0);-ms-transform:matrix(0.154312,-0.002006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154312,-0.002006,0.003250,0.249979,0,0);}
.mc2_c00192{transform:matrix(0.155152,-0.002017,0.003250,0.249979,0,0);-ms-transform:matrix(0.155152,-0.002017,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155152,-0.002017,0.003250,0.249979,0,0);}
.m3f_c00192{transform:matrix(0.155490,-0.003732,0.005998,0.249928,0,0);-ms-transform:matrix(0.155490,-0.003732,0.005998,0.249928,0,0);-webkit-transform:matrix(0.155490,-0.003732,0.005998,0.249928,0,0);}
.m3_c00192{transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);}
.mbb_c00192{transform:matrix(0.156612,-0.002036,0.003250,0.249979,0,0);-ms-transform:matrix(0.156612,-0.002036,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156612,-0.002036,0.003250,0.249979,0,0);}
.m14_c00192{transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.157461,-0.003937,0.006248,0.249922,0,0);-ms-transform:matrix(0.157461,-0.003937,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157461,-0.003937,0.006248,0.249922,0,0);}
.mc0_c00192{transform:matrix(0.159022,-0.002067,0.003250,0.249979,0,0);-ms-transform:matrix(0.159022,-0.002067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159022,-0.002067,0.003250,0.249979,0,0);}
.m18_c00192{transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{transform:matrix(0.160384,-0.002887,0.004499,0.249960,0,0);-ms-transform:matrix(0.160384,-0.002887,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160384,-0.002887,0.004499,0.249960,0,0);}
.m72_c00192{transform:matrix(0.160774,-0.002894,0.004499,0.249960,0,0);-ms-transform:matrix(0.160774,-0.002894,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160774,-0.002894,0.004499,0.249960,0,0);}
.mb4_c00192{transform:matrix(0.160916,-0.002092,0.003250,0.249979,0,0);-ms-transform:matrix(0.160916,-0.002092,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160916,-0.002092,0.003250,0.249979,0,0);}
.me3_c00192{transform:matrix(0.161306,-0.002097,0.003250,0.249979,0,0);-ms-transform:matrix(0.161306,-0.002097,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161306,-0.002097,0.003250,0.249979,0,0);}
.m16_c00192{transform:matrix(0.161630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161630,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{transform:matrix(0.162056,-0.002107,0.003250,0.249979,0,0);-ms-transform:matrix(0.162056,-0.002107,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162056,-0.002107,0.003250,0.249979,0,0);}
.m4b_c00192{transform:matrix(0.162339,-0.004058,0.006248,0.249922,0,0);-ms-transform:matrix(0.162339,-0.004058,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162339,-0.004058,0.006248,0.249922,0,0);}
.m75_c00192{transform:matrix(0.162449,-0.002924,0.004499,0.249960,0,0);-ms-transform:matrix(0.162449,-0.002924,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162449,-0.002924,0.004499,0.249960,0,0);}
.mb_c00192{transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162860,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);-ms-transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);}
.m4_c00192{transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);}
.m94_c00192{transform:matrix(0.163721,-0.002128,0.003250,0.249979,0,0);-ms-transform:matrix(0.163721,-0.002128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163721,-0.002128,0.003250,0.249979,0,0);}
.m42_c00192{transform:matrix(0.163848,-0.003932,0.005998,0.249928,0,0);-ms-transform:matrix(0.163848,-0.003932,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163848,-0.003932,0.005998,0.249928,0,0);}
.m27_c00192{transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164240,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{transform:matrix(0.165766,0.002818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165766,0.002818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165766,0.002818,-0.004249,0.249964,0,0);}
.m29_c00192{transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);}
.mf2_c00192{transform:matrix(0.167336,-0.002175,0.003250,0.249979,0,0);-ms-transform:matrix(0.167336,-0.002175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167336,-0.002175,0.003250,0.249979,0,0);}
.m53_c00192{transform:matrix(0.167623,-0.003017,0.004499,0.249960,0,0);-ms-transform:matrix(0.167623,-0.003017,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167623,-0.003017,0.004499,0.249960,0,0);}
.m43_c00192{transform:matrix(0.167657,-0.004024,0.005998,0.249928,0,0);-ms-transform:matrix(0.167657,-0.004024,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167657,-0.004024,0.005998,0.249928,0,0);}
.m41_c00192{transform:matrix(0.167672,-0.004024,0.005998,0.249928,0,0);-ms-transform:matrix(0.167672,-0.004024,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167672,-0.004024,0.005998,0.249928,0,0);}
.m79_c00192{transform:matrix(0.167893,-0.003022,0.004499,0.249960,0,0);-ms-transform:matrix(0.167893,-0.003022,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167893,-0.003022,0.004499,0.249960,0,0);}
.m1f_c00192{transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.169251,-0.002200,0.003250,0.249979,0,0);-ms-transform:matrix(0.169251,-0.002200,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169251,-0.002200,0.003250,0.249979,0,0);}
.mf7_c00192{transform:matrix(0.169396,-0.002202,0.003250,0.249979,0,0);-ms-transform:matrix(0.169396,-0.002202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169396,-0.002202,0.003250,0.249979,0,0);}
.m6b_c00192{transform:matrix(0.169698,-0.003055,0.004499,0.249960,0,0);-ms-transform:matrix(0.169698,-0.003055,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169698,-0.003055,0.004499,0.249960,0,0);}
.m9c_c00192{transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-ms-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);}
.m26_c00192{transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.170050,0.002891,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170050,0.002891,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170050,0.002891,-0.004249,0.249964,0,0);}
.m36_c00192{transform:matrix(0.170711,-0.004097,0.005998,0.249928,0,0);-ms-transform:matrix(0.170711,-0.004097,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170711,-0.004097,0.005998,0.249928,0,0);}
.m22_c00192{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.mf0_c00192{transform:matrix(0.171076,-0.002224,0.003250,0.249979,0,0);-ms-transform:matrix(0.171076,-0.002224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171076,-0.002224,0.003250,0.249979,0,0);}
.m9d_c00192{transform:matrix(0.171685,-0.002232,0.003250,0.249979,0,0);-ms-transform:matrix(0.171685,-0.002232,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171685,-0.002232,0.003250,0.249979,0,0);}
.md5_c00192{transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);-ms-transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172010,-0.002236,0.003250,0.249979,0,0);}
.mc_c00192{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{transform:matrix(0.174047,-0.003133,0.004499,0.249960,0,0);-ms-transform:matrix(0.174047,-0.003133,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174047,-0.003133,0.004499,0.249960,0,0);}
.m93_c00192{transform:matrix(0.174770,-0.002272,0.003250,0.249979,0,0);-ms-transform:matrix(0.174770,-0.002272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174770,-0.002272,0.003250,0.249979,0,0);}
.m7c_c00192{transform:matrix(0.175057,-0.003151,0.004499,0.249960,0,0);-ms-transform:matrix(0.175057,-0.003151,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175057,-0.003151,0.004499,0.249960,0,0);}
.m73_c00192{transform:matrix(0.175247,-0.003154,0.004499,0.249960,0,0);-ms-transform:matrix(0.175247,-0.003154,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175247,-0.003154,0.004499,0.249960,0,0);}
.m69_c00192{transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);-ms-transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);}
.m23_c00192{transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);}
.mad_c00192{transform:matrix(0.176065,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176065,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176065,-0.002289,0.003250,0.249979,0,0);}
.m78_c00192{transform:matrix(0.176721,-0.003181,0.004499,0.249960,0,0);-ms-transform:matrix(0.176721,-0.003181,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176721,-0.003181,0.004499,0.249960,0,0);}
.m5f_c00192{transform:matrix(0.176791,-0.003182,0.004499,0.249960,0,0);-ms-transform:matrix(0.176791,-0.003182,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176791,-0.003182,0.004499,0.249960,0,0);}
.ma8_c00192{transform:matrix(0.177165,-0.002303,0.003250,0.249979,0,0);-ms-transform:matrix(0.177165,-0.002303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177165,-0.002303,0.003250,0.249979,0,0);}
.mb5_c00192{transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);-ms-transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);}
.m58_c00192{transform:matrix(0.178486,-0.003213,0.004499,0.249960,0,0);-ms-transform:matrix(0.178486,-0.003213,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178486,-0.003213,0.004499,0.249960,0,0);}
.md2_c00192{transform:matrix(0.178505,-0.002321,0.003250,0.249979,0,0);-ms-transform:matrix(0.178505,-0.002321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178505,-0.002321,0.003250,0.249979,0,0);}
.m8f_c00192{transform:matrix(0.178920,-0.002326,0.003250,0.249979,0,0);-ms-transform:matrix(0.178920,-0.002326,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178920,-0.002326,0.003250,0.249979,0,0);}
.m48_c00192{transform:matrix(0.179289,-0.004482,0.006248,0.249922,0,0);-ms-transform:matrix(0.179289,-0.004482,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179289,-0.004482,0.006248,0.249922,0,0);}
.m76_c00192{transform:matrix(0.180101,-0.003242,0.004499,0.249960,0,0);-ms-transform:matrix(0.180101,-0.003242,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180101,-0.003242,0.004499,0.249960,0,0);}
.m12_c00192{transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);}
.mdd_c00192{transform:matrix(0.180260,-0.002343,0.003250,0.249979,0,0);-ms-transform:matrix(0.180260,-0.002343,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180260,-0.002343,0.003250,0.249979,0,0);}
.m2e_c00192{transform:matrix(0.180478,-0.004331,0.005998,0.249928,0,0);-ms-transform:matrix(0.180478,-0.004331,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180478,-0.004331,0.005998,0.249928,0,0);}
.m4f_c00192{transform:matrix(0.180916,-0.003256,0.004499,0.249960,0,0);-ms-transform:matrix(0.180916,-0.003256,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180916,-0.003256,0.004499,0.249960,0,0);}
.m80_c00192{transform:matrix(0.181161,-0.003261,0.004499,0.249960,0,0);-ms-transform:matrix(0.181161,-0.003261,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181161,-0.003261,0.004499,0.249960,0,0);}
.ma1_c00192{transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);}
.m5_c00192{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.me6_c00192{transform:matrix(0.182290,-0.002370,0.003250,0.249979,0,0);-ms-transform:matrix(0.182290,-0.002370,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182290,-0.002370,0.003250,0.249979,0,0);}
.m86_c00192{transform:matrix(0.182479,0.003102,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182479,0.003102,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182479,0.003102,-0.004249,0.249964,0,0);}
.mfa_c00192{transform:matrix(0.182530,-0.002373,0.003250,0.249979,0,0);-ms-transform:matrix(0.182530,-0.002373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182530,-0.002373,0.003250,0.249979,0,0);}
.m4c_c00192{transform:matrix(0.182743,-0.004569,0.006248,0.249922,0,0);-ms-transform:matrix(0.182743,-0.004569,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182743,-0.004569,0.006248,0.249922,0,0);}
.m20_c00192{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);}
.ma2_c00192{transform:matrix(0.183779,-0.002389,0.003250,0.249979,0,0);-ms-transform:matrix(0.183779,-0.002389,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183779,-0.002389,0.003250,0.249979,0,0);}
.m8e_c00192{transform:matrix(0.184694,-0.002401,0.003250,0.249979,0,0);-ms-transform:matrix(0.184694,-0.002401,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184694,-0.002401,0.003250,0.249979,0,0);}
.m85_c00192{transform:matrix(0.184833,0.003142,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184833,0.003142,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184833,0.003142,-0.004249,0.249964,0,0);}
.m6_c00192{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.md4_c00192{transform:matrix(0.185079,-0.002406,0.003250,0.249979,0,0);-ms-transform:matrix(0.185079,-0.002406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185079,-0.002406,0.003250,0.249979,0,0);}
.me9_c00192{transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);}
.m32_c00192{transform:matrix(0.185911,-0.004462,0.005998,0.249928,0,0);-ms-transform:matrix(0.185911,-0.004462,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185911,-0.004462,0.005998,0.249928,0,0);}
.m5c_c00192{transform:matrix(0.186120,-0.003350,0.004499,0.249960,0,0);-ms-transform:matrix(0.186120,-0.003350,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186120,-0.003350,0.004499,0.249960,0,0);}
.mbc_c00192{transform:matrix(0.186164,-0.002420,0.003250,0.249979,0,0);-ms-transform:matrix(0.186164,-0.002420,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186164,-0.002420,0.003250,0.249979,0,0);}
.m82_c00192{transform:matrix(0.186425,-0.003356,0.004499,0.249960,0,0);-ms-transform:matrix(0.186425,-0.003356,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186425,-0.003356,0.004499,0.249960,0,0);}
.m4d_c00192{transform:matrix(0.187027,-0.004676,0.006248,0.249922,0,0);-ms-transform:matrix(0.187027,-0.004676,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187027,-0.004676,0.006248,0.249922,0,0);}
.m92_c00192{transform:matrix(0.187059,-0.002432,0.003250,0.249979,0,0);-ms-transform:matrix(0.187059,-0.002432,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187059,-0.002432,0.003250,0.249979,0,0);}
.mf4_c00192{transform:matrix(0.187264,-0.002434,0.003250,0.249979,0,0);-ms-transform:matrix(0.187264,-0.002434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187264,-0.002434,0.003250,0.249979,0,0);}
.m2f_c00192{transform:matrix(0.187516,-0.004500,0.005998,0.249928,0,0);-ms-transform:matrix(0.187516,-0.004500,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187516,-0.004500,0.005998,0.249928,0,0);}
.med_c00192{transform:matrix(0.187609,-0.002439,0.003250,0.249979,0,0);-ms-transform:matrix(0.187609,-0.002439,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187609,-0.002439,0.003250,0.249979,0,0);}
.mf6_c00192{transform:matrix(0.187789,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187789,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187789,-0.002441,0.003250,0.249979,0,0);}
.mf_c00192{transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);}
.m3b_c00192{transform:matrix(0.188676,-0.004528,0.005998,0.249928,0,0);-ms-transform:matrix(0.188676,-0.004528,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188676,-0.004528,0.005998,0.249928,0,0);}
.m56_c00192{transform:matrix(0.188884,-0.003400,0.004499,0.249960,0,0);-ms-transform:matrix(0.188884,-0.003400,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188884,-0.003400,0.004499,0.249960,0,0);}
.m8a_c00192{transform:matrix(0.189348,0.003219,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189348,0.003219,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189348,0.003219,-0.004249,0.249964,0,0);}
.m55_c00192{transform:matrix(0.189584,-0.003413,0.004499,0.249960,0,0);-ms-transform:matrix(0.189584,-0.003413,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189584,-0.003413,0.004499,0.249960,0,0);}
.m44_c00192{transform:matrix(0.189730,-0.004554,0.005998,0.249928,0,0);-ms-transform:matrix(0.189730,-0.004554,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189730,-0.004554,0.005998,0.249928,0,0);}
.m62_c00192{transform:matrix(0.190369,-0.003427,0.004499,0.249960,0,0);-ms-transform:matrix(0.190369,-0.003427,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190369,-0.003427,0.004499,0.249960,0,0);}
.m65_c00192{transform:matrix(0.190654,-0.003432,0.004499,0.249960,0,0);-ms-transform:matrix(0.190654,-0.003432,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190654,-0.003432,0.004499,0.249960,0,0);}
.mfb_c00192{transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);-ms-transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);}
.m4a_c00192{transform:matrix(0.191020,-0.004776,0.006248,0.249922,0,0);-ms-transform:matrix(0.191020,-0.004776,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191020,-0.004776,0.006248,0.249922,0,0);}
.maa_c00192{transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);-ms-transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);}
.m81_c00192{transform:matrix(0.191909,-0.003454,0.004499,0.249960,0,0);-ms-transform:matrix(0.191909,-0.003454,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191909,-0.003454,0.004499,0.249960,0,0);}
.mb6_c00192{transform:matrix(0.192209,-0.002499,0.003250,0.249979,0,0);-ms-transform:matrix(0.192209,-0.002499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192209,-0.002499,0.003250,0.249979,0,0);}
.mf5_c00192{transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);}
.mf8_c00192{transform:matrix(0.192689,-0.002505,0.003250,0.249979,0,0);-ms-transform:matrix(0.192689,-0.002505,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192689,-0.002505,0.003250,0.249979,0,0);}
.mbe_c00192{transform:matrix(0.192799,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192799,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192799,-0.002506,0.003250,0.249979,0,0);}
.m8d_c00192{transform:matrix(0.192804,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192804,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192804,-0.002506,0.003250,0.249979,0,0);}
.me0_c00192{transform:matrix(0.192864,-0.002507,0.003250,0.249979,0,0);-ms-transform:matrix(0.192864,-0.002507,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192864,-0.002507,0.003250,0.249979,0,0);}
.md3_c00192{transform:matrix(0.193469,-0.002515,0.003250,0.249979,0,0);-ms-transform:matrix(0.193469,-0.002515,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193469,-0.002515,0.003250,0.249979,0,0);}
.m2a_c00192{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m5b_c00192{transform:matrix(0.194274,-0.003497,0.004499,0.249960,0,0);-ms-transform:matrix(0.194274,-0.003497,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194274,-0.003497,0.004499,0.249960,0,0);}
.m34_c00192{transform:matrix(0.194304,-0.004663,0.005998,0.249928,0,0);-ms-transform:matrix(0.194304,-0.004663,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194304,-0.004663,0.005998,0.249928,0,0);}
.m1a_c00192{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.meb_c00192{transform:matrix(0.194849,-0.002533,0.003250,0.249979,0,0);-ms-transform:matrix(0.194849,-0.002533,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194849,-0.002533,0.003250,0.249979,0,0);}
.m19_c00192{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m59_c00192{transform:matrix(0.195643,-0.003522,0.004499,0.249960,0,0);-ms-transform:matrix(0.195643,-0.003522,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195643,-0.003522,0.004499,0.249960,0,0);}
.mec_c00192{transform:matrix(0.195783,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195783,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195783,-0.002545,0.003250,0.249979,0,0);}
.mca_c00192{transform:matrix(0.195788,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195788,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195788,-0.002545,0.003250,0.249979,0,0);}
.m3e_c00192{transform:matrix(0.195874,-0.004701,0.005998,0.249928,0,0);-ms-transform:matrix(0.195874,-0.004701,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195874,-0.004701,0.005998,0.249928,0,0);}
.mdb_c00192{transform:matrix(0.195888,-0.002547,0.003250,0.249979,0,0);-ms-transform:matrix(0.195888,-0.002547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195888,-0.002547,0.003250,0.249979,0,0);}
.m13_c00192{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.mea_c00192{transform:matrix(0.196513,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196513,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196513,-0.002555,0.003250,0.249979,0,0);}
.m3d_c00192{transform:matrix(0.196513,-0.004716,0.005998,0.249928,0,0);-ms-transform:matrix(0.196513,-0.004716,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196513,-0.004716,0.005998,0.249928,0,0);}
.m21_c00192{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.196923,-0.003545,0.004499,0.249960,0,0);-ms-transform:matrix(0.196923,-0.003545,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196923,-0.003545,0.004499,0.249960,0,0);}
.mee_c00192{transform:matrix(0.197208,-0.002564,0.003250,0.249979,0,0);-ms-transform:matrix(0.197208,-0.002564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197208,-0.002564,0.003250,0.249979,0,0);}
.m39_c00192{transform:matrix(0.197353,-0.004736,0.005998,0.249928,0,0);-ms-transform:matrix(0.197353,-0.004736,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197353,-0.004736,0.005998,0.249928,0,0);}
.me1_c00192{transform:matrix(0.197353,-0.002566,0.003250,0.249979,0,0);-ms-transform:matrix(0.197353,-0.002566,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197353,-0.002566,0.003250,0.249979,0,0);}
.m5e_c00192{transform:matrix(0.197403,-0.003553,0.004499,0.249960,0,0);-ms-transform:matrix(0.197403,-0.003553,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197403,-0.003553,0.004499,0.249960,0,0);}
.me5_c00192{transform:matrix(0.197513,-0.002568,0.003250,0.249979,0,0);-ms-transform:matrix(0.197513,-0.002568,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197513,-0.002568,0.003250,0.249979,0,0);}
.m25_c00192{transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);}
.m77_c00192{transform:matrix(0.198113,-0.003566,0.004499,0.249960,0,0);-ms-transform:matrix(0.198113,-0.003566,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198113,-0.003566,0.004499,0.249960,0,0);}
.m46_c00192{transform:matrix(0.198213,-0.004955,0.006248,0.249922,0,0);-ms-transform:matrix(0.198213,-0.004955,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198213,-0.004955,0.006248,0.249922,0,0);}
.mb1_c00192{transform:matrix(0.198293,-0.002578,0.003250,0.249979,0,0);-ms-transform:matrix(0.198293,-0.002578,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198293,-0.002578,0.003250,0.249979,0,0);}
.m24_c00192{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.md8_c00192{transform:matrix(0.198628,-0.002582,0.003250,0.249979,0,0);-ms-transform:matrix(0.198628,-0.002582,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198628,-0.002582,0.003250,0.249979,0,0);}
.md7_c00192{transform:matrix(0.198633,-0.002582,0.003250,0.249979,0,0);-ms-transform:matrix(0.198633,-0.002582,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198633,-0.002582,0.003250,0.249979,0,0);}
.m97_c00192{transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);-ms-transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198763,-0.002584,0.003250,0.249979,0,0);}
.mef_c00192{transform:matrix(0.199003,-0.002587,0.003250,0.249979,0,0);-ms-transform:matrix(0.199003,-0.002587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199003,-0.002587,0.003250,0.249979,0,0);}
.m9a_c00192{transform:matrix(0.199013,-0.002587,0.003250,0.249979,0,0);-ms-transform:matrix(0.199013,-0.002587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199013,-0.002587,0.003250,0.249979,0,0);}
.m52_c00192{transform:matrix(0.199618,-0.003593,0.004499,0.249960,0,0);-ms-transform:matrix(0.199618,-0.003593,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199618,-0.003593,0.004499,0.249960,0,0);}
.maf_c00192{transform:matrix(0.199683,-0.002596,0.003250,0.249979,0,0);-ms-transform:matrix(0.199683,-0.002596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199683,-0.002596,0.003250,0.249979,0,0);}
.m4e_c00192{transform:matrix(0.199893,-0.003598,0.004499,0.249960,0,0);-ms-transform:matrix(0.199893,-0.003598,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199893,-0.003598,0.004499,0.249960,0,0);}
.m54_c00192{transform:matrix(0.200313,-0.003606,0.004499,0.249960,0,0);-ms-transform:matrix(0.200313,-0.003606,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200313,-0.003606,0.004499,0.249960,0,0);}
.md_c00192{transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m61_c00192{transform:matrix(0.201262,-0.003623,0.004499,0.249960,0,0);-ms-transform:matrix(0.201262,-0.003623,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201262,-0.003623,0.004499,0.249960,0,0);}
.mf1_c00192{transform:matrix(0.202073,-0.002627,0.003250,0.249979,0,0);-ms-transform:matrix(0.202073,-0.002627,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202073,-0.002627,0.003250,0.249979,0,0);}
.me_c00192{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.202156,0.003437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202156,0.003437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202156,0.003437,-0.004249,0.249964,0,0);}
.mcd_c00192{transform:matrix(0.202218,-0.002629,0.003250,0.249979,0,0);-ms-transform:matrix(0.202218,-0.002629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202218,-0.002629,0.003250,0.249979,0,0);}
.mcc_c00192{transform:matrix(0.203178,-0.002641,0.003250,0.249979,0,0);-ms-transform:matrix(0.203178,-0.002641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203178,-0.002641,0.003250,0.249979,0,0);}
.m7e_c00192{transform:matrix(0.203757,-0.003668,0.004499,0.249960,0,0);-ms-transform:matrix(0.203757,-0.003668,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203757,-0.003668,0.004499,0.249960,0,0);}
.m40_c00192{transform:matrix(0.204561,-0.004909,0.005998,0.249928,0,0);-ms-transform:matrix(0.204561,-0.004909,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204561,-0.004909,0.005998,0.249928,0,0);}
.m66_c00192{transform:matrix(0.204857,-0.003687,0.004499,0.249960,0,0);-ms-transform:matrix(0.204857,-0.003687,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204857,-0.003687,0.004499,0.249960,0,0);}
.m68_c00192{transform:matrix(0.204897,-0.003688,0.004499,0.249960,0,0);-ms-transform:matrix(0.204897,-0.003688,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204897,-0.003688,0.004499,0.249960,0,0);}
.m6c_c00192{transform:matrix(0.205107,-0.003692,0.004499,0.249960,0,0);-ms-transform:matrix(0.205107,-0.003692,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205107,-0.003692,0.004499,0.249960,0,0);}
.m7f_c00192{transform:matrix(0.205227,-0.003694,0.004499,0.249960,0,0);-ms-transform:matrix(0.205227,-0.003694,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205227,-0.003694,0.004499,0.249960,0,0);}
.mac_c00192{transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);}
.m3a_c00192{transform:matrix(0.206675,-0.004960,0.005998,0.249928,0,0);-ms-transform:matrix(0.206675,-0.004960,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206675,-0.004960,0.005998,0.249928,0,0);}
.mdc_c00192{transform:matrix(0.206853,-0.002689,0.003250,0.249979,0,0);-ms-transform:matrix(0.206853,-0.002689,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206853,-0.002689,0.003250,0.249979,0,0);}
.m70_c00192{transform:matrix(0.206926,-0.003725,0.004499,0.249960,0,0);-ms-transform:matrix(0.206926,-0.003725,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206926,-0.003725,0.004499,0.249960,0,0);}
.mf9_c00192{transform:matrix(0.206938,-0.002690,0.003250,0.249979,0,0);-ms-transform:matrix(0.206938,-0.002690,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206938,-0.002690,0.003250,0.249979,0,0);}
.mb0_c00192{transform:matrix(0.207038,-0.002691,0.003250,0.249979,0,0);-ms-transform:matrix(0.207038,-0.002691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207038,-0.002691,0.003250,0.249979,0,0);}
.m7_c00192{transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);-ms-transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208832,-0.002715,0.003250,0.249979,0,0);}
.mae_c00192{transform:matrix(0.209042,-0.002718,0.003250,0.249979,0,0);-ms-transform:matrix(0.209042,-0.002718,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209042,-0.002718,0.003250,0.249979,0,0);}
.mdf_c00192{transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);}
.m31_c00192{transform:matrix(0.209915,-0.005038,0.005998,0.249928,0,0);-ms-transform:matrix(0.209915,-0.005038,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209915,-0.005038,0.005998,0.249928,0,0);}
.mf3_c00192{transform:matrix(0.210662,-0.002739,0.003250,0.249979,0,0);-ms-transform:matrix(0.210662,-0.002739,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210662,-0.002739,0.003250,0.249979,0,0);}
.m9b_c00192{transform:matrix(0.211602,-0.002751,0.003250,0.249979,0,0);-ms-transform:matrix(0.211602,-0.002751,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211602,-0.002751,0.003250,0.249979,0,0);}
.mb3_c00192{transform:matrix(0.211732,-0.002753,0.003250,0.249979,0,0);-ms-transform:matrix(0.211732,-0.002753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211732,-0.002753,0.003250,0.249979,0,0);}
.m6e_c00192{transform:matrix(0.211771,-0.003812,0.004499,0.249960,0,0);-ms-transform:matrix(0.211771,-0.003812,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211771,-0.003812,0.004499,0.249960,0,0);}
.m1b_c00192{transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00192{transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212562,-0.002763,0.003250,0.249979,0,0);}
.m33_c00192{transform:matrix(0.213099,-0.005114,0.005998,0.249928,0,0);-ms-transform:matrix(0.213099,-0.005114,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213099,-0.005114,0.005998,0.249928,0,0);}
.mc8_c00192{transform:matrix(0.213337,-0.002773,0.003250,0.249979,0,0);-ms-transform:matrix(0.213337,-0.002773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213337,-0.002773,0.003250,0.249979,0,0);}
.m67_c00192{transform:matrix(0.213415,-0.003841,0.004499,0.249960,0,0);-ms-transform:matrix(0.213415,-0.003841,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213415,-0.003841,0.004499,0.249960,0,0);}
.md1_c00192{transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);-ms-transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213872,-0.002780,0.003250,0.249979,0,0);}
.m1d_c00192{transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);}
.mbd_c00192{transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);}
.mda_c00192{transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);-ms-transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);}
.m91_c00192{transform:matrix(0.215797,-0.002805,0.003250,0.249979,0,0);-ms-transform:matrix(0.215797,-0.002805,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215797,-0.002805,0.003250,0.249979,0,0);}
.m6a_c00192{transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);-ms-transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);}
.m7a_c00192{transform:matrix(0.217080,-0.003907,0.004499,0.249960,0,0);-ms-transform:matrix(0.217080,-0.003907,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217080,-0.003907,0.004499,0.249960,0,0);}
.mce_c00192{transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);-ms-transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217562,-0.002828,0.003250,0.249979,0,0);}
.mba_c00192{transform:matrix(0.217692,-0.002830,0.003250,0.249979,0,0);-ms-transform:matrix(0.217692,-0.002830,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217692,-0.002830,0.003250,0.249979,0,0);}
.me4_c00192{transform:matrix(0.218642,-0.002842,0.003250,0.249979,0,0);-ms-transform:matrix(0.218642,-0.002842,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218642,-0.002842,0.003250,0.249979,0,0);}
.me2_c00192{transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);-ms-transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);}
.m51_c00192{transform:matrix(0.219000,-0.003942,0.004499,0.249960,0,0);-ms-transform:matrix(0.219000,-0.003942,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219000,-0.003942,0.004499,0.249960,0,0);}
.ma0_c00192{transform:matrix(0.219006,-0.002847,0.003250,0.249979,0,0);-ms-transform:matrix(0.219006,-0.002847,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219006,-0.002847,0.003250,0.249979,0,0);}
.m74_c00192{transform:matrix(0.219145,-0.003945,0.004499,0.249960,0,0);-ms-transform:matrix(0.219145,-0.003945,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219145,-0.003945,0.004499,0.249960,0,0);}
.m6d_c00192{transform:matrix(0.220159,-0.003963,0.004499,0.249960,0,0);-ms-transform:matrix(0.220159,-0.003963,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220159,-0.003963,0.004499,0.249960,0,0);}
.ma7_c00192{transform:matrix(0.221001,-0.002873,0.003250,0.249979,0,0);-ms-transform:matrix(0.221001,-0.002873,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221001,-0.002873,0.003250,0.249979,0,0);}
.m38_c00192{transform:matrix(0.222236,-0.005334,0.005998,0.249928,0,0);-ms-transform:matrix(0.222236,-0.005334,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222236,-0.005334,0.005998,0.249928,0,0);}
.mcb_c00192{transform:matrix(0.222681,-0.002895,0.003250,0.249979,0,0);-ms-transform:matrix(0.222681,-0.002895,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222681,-0.002895,0.003250,0.249979,0,0);}
.m37_c00192{transform:matrix(0.222776,-0.005347,0.005998,0.249928,0,0);-ms-transform:matrix(0.222776,-0.005347,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222776,-0.005347,0.005998,0.249928,0,0);}
.mb2_c00192{transform:matrix(0.223336,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223336,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223336,-0.002903,0.003250,0.249979,0,0);}
.m6f_c00192{transform:matrix(0.223454,-0.004022,0.004499,0.249960,0,0);-ms-transform:matrix(0.223454,-0.004022,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223454,-0.004022,0.004499,0.249960,0,0);}
.mde_c00192{transform:matrix(0.223461,-0.002905,0.003250,0.249979,0,0);-ms-transform:matrix(0.223461,-0.002905,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223461,-0.002905,0.003250,0.249979,0,0);}
.m2d_c00192{transform:matrix(0.224145,-0.005379,0.005998,0.249928,0,0);-ms-transform:matrix(0.224145,-0.005379,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224145,-0.005379,0.005998,0.249928,0,0);}
.mab_c00192{transform:matrix(0.224191,-0.002914,0.003250,0.249979,0,0);-ms-transform:matrix(0.224191,-0.002914,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224191,-0.002914,0.003250,0.249979,0,0);}
.m7b_c00192{transform:matrix(0.224354,-0.004038,0.004499,0.249960,0,0);-ms-transform:matrix(0.224354,-0.004038,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224354,-0.004038,0.004499,0.249960,0,0);}
.m9e_c00192{transform:matrix(0.224541,-0.002919,0.003250,0.249979,0,0);-ms-transform:matrix(0.224541,-0.002919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224541,-0.002919,0.003250,0.249979,0,0);}
.mcf_c00192{transform:matrix(0.224991,-0.002925,0.003250,0.249979,0,0);-ms-transform:matrix(0.224991,-0.002925,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224991,-0.002925,0.003250,0.249979,0,0);}
.ma6_c00192{transform:matrix(0.226086,-0.002939,0.003250,0.249979,0,0);-ms-transform:matrix(0.226086,-0.002939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226086,-0.002939,0.003250,0.249979,0,0);}
.ma9_c00192{transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);-ms-transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);}
.m9f_c00192{transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);-ms-transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228701,-0.002973,0.003250,0.249979,0,0);}
.me7_c00192{transform:matrix(0.228711,-0.002973,0.003250,0.249979,0,0);-ms-transform:matrix(0.228711,-0.002973,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228711,-0.002973,0.003250,0.249979,0,0);}
.md0_c00192{transform:matrix(0.229261,-0.002980,0.003250,0.249979,0,0);-ms-transform:matrix(0.229261,-0.002980,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229261,-0.002980,0.003250,0.249979,0,0);}
.md6_c00192{transform:matrix(0.229846,-0.002988,0.003250,0.249979,0,0);-ms-transform:matrix(0.229846,-0.002988,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229846,-0.002988,0.003250,0.249979,0,0);}
.m63_c00192{transform:matrix(0.230678,-0.004152,0.004499,0.249960,0,0);-ms-transform:matrix(0.230678,-0.004152,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230678,-0.004152,0.004499,0.249960,0,0);}
.mb8_c00192{transform:matrix(0.232260,-0.003019,0.003250,0.249979,0,0);-ms-transform:matrix(0.232260,-0.003019,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232260,-0.003019,0.003250,0.249979,0,0);}
.ma3_c00192{transform:matrix(0.235300,-0.003059,0.003250,0.249979,0,0);-ms-transform:matrix(0.235300,-0.003059,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235300,-0.003059,0.003250,0.249979,0,0);}
.m60_c00192{transform:matrix(0.236067,-0.004249,0.004499,0.249960,0,0);-ms-transform:matrix(0.236067,-0.004249,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236067,-0.004249,0.004499,0.249960,0,0);}
.m50_c00192{transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);-ms-transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);}
.me8_c00192{transform:matrix(0.241555,-0.003140,0.003250,0.249979,0,0);-ms-transform:matrix(0.241555,-0.003140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241555,-0.003140,0.003250,0.249979,0,0);}
.m45_c00192{transform:matrix(0.243004,-0.006075,0.006248,0.249922,0,0);-ms-transform:matrix(0.243004,-0.006075,0.006248,0.249922,0,0);-webkit-transform:matrix(0.243004,-0.006075,0.006248,0.249922,0,0);}
.ma4_c00192{transform:matrix(0.253219,-0.003292,0.003250,0.249979,0,0);-ms-transform:matrix(0.253219,-0.003292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253219,-0.003292,0.003250,0.249979,0,0);}
.m5d_c00192{transform:matrix(0.257388,-0.004633,0.004499,0.249960,0,0);-ms-transform:matrix(0.257388,-0.004633,0.004499,0.249960,0,0);-webkit-transform:matrix(0.257388,-0.004633,0.004499,0.249960,0,0);}
.m89_c00192{transform:matrix(0.258288,0.004391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258288,0.004391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258288,0.004391,-0.004249,0.249964,0,0);}
.ma5_c00192{transform:matrix(0.263198,-0.003422,0.003250,0.249979,0,0);-ms-transform:matrix(0.263198,-0.003422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263198,-0.003422,0.003250,0.249979,0,0);}
.m96_c00192{transform:matrix(0.263568,-0.003426,0.003250,0.249979,0,0);-ms-transform:matrix(0.263568,-0.003426,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263568,-0.003426,0.003250,0.249979,0,0);}
.m71_c00192{transform:matrix(0.270906,-0.004876,0.004499,0.249960,0,0);-ms-transform:matrix(0.270906,-0.004876,0.004499,0.249960,0,0);-webkit-transform:matrix(0.270906,-0.004876,0.004499,0.249960,0,0);}
.md9_c00192{transform:matrix(0.278136,-0.003616,0.003250,0.249979,0,0);-ms-transform:matrix(0.278136,-0.003616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278136,-0.003616,0.003250,0.249979,0,0);}
.mb9_c00192{transform:matrix(0.279246,-0.003630,0.003250,0.249979,0,0);-ms-transform:matrix(0.279246,-0.003630,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279246,-0.003630,0.003250,0.249979,0,0);}
.m99_c00192{transform:matrix(0.295860,-0.003846,0.003250,0.249979,0,0);-ms-transform:matrix(0.295860,-0.003846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.295860,-0.003846,0.003250,0.249979,0,0);}
.m83_c00192{transform:matrix(0.307716,0.005231,-0.004249,0.249964,0,0);-ms-transform:matrix(0.307716,0.005231,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.307716,0.005231,-0.004249,0.249964,0,0);}
.mc9_c00192{transform:matrix(0.317793,-0.004131,0.003250,0.249979,0,0);-ms-transform:matrix(0.317793,-0.004131,0.003250,0.249979,0,0);-webkit-transform:matrix(0.317793,-0.004131,0.003250,0.249979,0,0);}
.m3c_c00192{transform:matrix(0.350579,-0.008414,0.005998,0.249928,0,0);-ms-transform:matrix(0.350579,-0.008414,0.005998,0.249928,0,0);-webkit-transform:matrix(0.350579,-0.008414,0.005998,0.249928,0,0);}
.mbf_c00192{transform:matrix(0.385972,-0.005018,0.003250,0.249979,0,0);-ms-transform:matrix(0.385972,-0.005018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.385972,-0.005018,0.003250,0.249979,0,0);}
.m1_c00192{transform:matrix(0.398865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398865,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.443452,-0.010643,0.005998,0.249928,0,0);-ms-transform:matrix(0.443452,-0.010643,0.005998,0.249928,0,0);-webkit-transform:matrix(0.443452,-0.010643,0.005998,0.249928,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:0.000000px;}
.fc0_c00192{color:transparent;}
.fs1_c00192{font-size:28.350000px;}
.fs0_c00192{font-size:53.550000px;}
.fs15_c00192{font-size:57.754880px;}
.fs16_c00192{font-size:58.804968px;}
.fsd_c00192{font-size:58.809525px;}
.fs12_c00192{font-size:59.855057px;}
.fsb_c00192{font-size:59.859695px;}
.fs11_c00192{font-size:61.955235px;}
.fsc_c00192{font-size:61.960035px;}
.fs7_c00192{font-size:61.967839px;}
.fs13_c00192{font-size:63.005323px;}
.fs9_c00192{font-size:63.010205px;}
.fs17_c00192{font-size:64.055412px;}
.fsa_c00192{font-size:66.160715px;}
.fs6_c00192{font-size:67.219351px;}
.fs5_c00192{font-size:68.250000px;}
.fsf_c00192{font-size:68.255767px;}
.fse_c00192{font-size:68.259861px;}
.fs8_c00192{font-size:68.271325px;}
.fs4_c00192{font-size:69.300000px;}
.fs10_c00192{font-size:70.355944px;}
.fs3_c00192{font-size:71.400000px;}
.fs2_c00192{font-size:81.900000px;}
.fs14_c00192{font-size:85.057186px;}
.y0_c00192{bottom:0.000000px;}
.yf7_c00192{bottom:32.444616px;}
.yfb_c00192{bottom:32.444771px;}
.yf8_c00192{bottom:32.445008px;}
.yfd_c00192{bottom:32.445123px;}
.yfa_c00192{bottom:32.445260px;}
.yf9_c00192{bottom:32.445369px;}
.yfc_c00192{bottom:32.445473px;}
.yef_c00192{bottom:50.632857px;}
.yf0_c00192{bottom:50.633198px;}
.yf6_c00192{bottom:50.633295px;}
.yf2_c00192{bottom:50.633511px;}
.yf3_c00192{bottom:50.633532px;}
.yf4_c00192{bottom:50.633633px;}
.yf1_c00192{bottom:50.633670px;}
.yf5_c00192{bottom:50.634005px;}
.yee_c00192{bottom:66.524306px;}
.yea_c00192{bottom:66.524319px;}
.yec_c00192{bottom:66.524453px;}
.yed_c00192{bottom:66.524634px;}
.yeb_c00192{bottom:66.525012px;}
.ye4_c00192{bottom:83.873745px;}
.ye3_c00192{bottom:83.873784px;}
.ye2_c00192{bottom:83.873973px;}
.ye9_c00192{bottom:83.874180px;}
.ye6_c00192{bottom:83.874308px;}
.ye5_c00192{bottom:83.874326px;}
.ye8_c00192{bottom:83.874579px;}
.ye7_c00192{bottom:83.874779px;}
.ydf_c00192{bottom:101.846930px;}
.ydb_c00192{bottom:101.847506px;}
.ye0_c00192{bottom:101.847561px;}
.yde_c00192{bottom:101.847609px;}
.ydc_c00192{bottom:101.847767px;}
.ydd_c00192{bottom:101.848038px;}
.ye1_c00192{bottom:101.848083px;}
.yd8_c00192{bottom:119.007747px;}
.yd9_c00192{bottom:119.007938px;}
.yda_c00192{bottom:119.008149px;}
.yd7_c00192{bottom:119.008226px;}
.yd2_c00192{bottom:119.008382px;}
.yd3_c00192{bottom:119.008433px;}
.yd4_c00192{bottom:119.008563px;}
.yd6_c00192{bottom:119.008605px;}
.yd5_c00192{bottom:119.009034px;}
.yc9_c00192{bottom:136.371797px;}
.yca_c00192{bottom:136.371818px;}
.ycb_c00192{bottom:136.372338px;}
.ycc_c00192{bottom:136.372709px;}
.ycd_c00192{bottom:136.372929px;}
.yd0_c00192{bottom:136.373363px;}
.yce_c00192{bottom:136.373520px;}
.ycf_c00192{bottom:136.373891px;}
.yd1_c00192{bottom:136.373954px;}
.yc0_c00192{bottom:147.949485px;}
.yc1_c00192{bottom:148.676367px;}
.yc2_c00192{bottom:149.171375px;}
.yc3_c00192{bottom:149.795921px;}
.yc4_c00192{bottom:149.988815px;}
.yc5_c00192{bottom:150.294438px;}
.yc6_c00192{bottom:150.592905px;}
.yc7_c00192{bottom:151.158054px;}
.yc8_c00192{bottom:151.530134px;}
.ybc_c00192{bottom:167.608145px;}
.ybd_c00192{bottom:167.608275px;}
.ybb_c00192{bottom:167.608604px;}
.ybe_c00192{bottom:167.608847px;}
.yba_c00192{bottom:167.608863px;}
.yb9_c00192{bottom:167.608982px;}
.ybf_c00192{bottom:167.609277px;}
.yb3_c00192{bottom:185.880293px;}
.yb8_c00192{bottom:185.880431px;}
.yb6_c00192{bottom:185.880447px;}
.yb7_c00192{bottom:185.880528px;}
.yb5_c00192{bottom:185.880645px;}
.yb4_c00192{bottom:185.880905px;}
.yb0_c00192{bottom:203.409171px;}
.yb1_c00192{bottom:203.409333px;}
.yaf_c00192{bottom:203.409350px;}
.yae_c00192{bottom:203.409429px;}
.yab_c00192{bottom:203.409527px;}
.yad_c00192{bottom:203.409689px;}
.yb2_c00192{bottom:203.409864px;}
.yac_c00192{bottom:203.410077px;}
.ya4_c00192{bottom:218.964825px;}
.ya5_c00192{bottom:219.199578px;}
.ya6_c00192{bottom:219.445469px;}
.ya7_c00192{bottom:220.039091px;}
.ya8_c00192{bottom:220.163226px;}
.ya9_c00192{bottom:220.805963px;}
.yaa_c00192{bottom:221.078616px;}
.y9f_c00192{bottom:237.669173px;}
.y9e_c00192{bottom:237.669421px;}
.y9a_c00192{bottom:237.669447px;}
.y9b_c00192{bottom:237.669498px;}
.ya1_c00192{bottom:237.669504px;}
.ya3_c00192{bottom:237.669506px;}
.ya0_c00192{bottom:237.669523px;}
.ya2_c00192{bottom:237.669885px;}
.y9d_c00192{bottom:237.669921px;}
.y9c_c00192{bottom:237.670160px;}
.y93_c00192{bottom:252.719380px;}
.y94_c00192{bottom:253.311489px;}
.y95_c00192{bottom:253.664976px;}
.y96_c00192{bottom:254.315726px;}
.y97_c00192{bottom:254.530302px;}
.y98_c00192{bottom:255.369087px;}
.y99_c00192{bottom:255.680352px;}
.y8c_c00192{bottom:270.001500px;}
.y8d_c00192{bottom:270.334053px;}
.y8e_c00192{bottom:270.742227px;}
.y8f_c00192{bottom:271.244294px;}
.y90_c00192{bottom:271.532133px;}
.y91_c00192{bottom:272.427788px;}
.y92_c00192{bottom:273.136164px;}
.y8b_c00192{bottom:292.445466px;}
.y8a_c00192{bottom:292.798845px;}
.y89_c00192{bottom:293.566191px;}
.y88_c00192{bottom:293.992143px;}
.y87_c00192{bottom:294.215294px;}
.y86_c00192{bottom:295.473948px;}
.y85_c00192{bottom:295.804071px;}
.y84_c00192{bottom:296.220053px;}
.y83_c00192{bottom:297.001500px;}
.y7a_c00192{bottom:304.814781px;}
.y7b_c00192{bottom:305.283987px;}
.y7c_c00192{bottom:305.477214px;}
.y7d_c00192{bottom:305.863683px;}
.y7e_c00192{bottom:306.641127px;}
.y7f_c00192{bottom:307.442880px;}
.y80_c00192{bottom:307.759203px;}
.y81_c00192{bottom:308.673186px;}
.y82_c00192{bottom:309.104088px;}
.y72_c00192{bottom:321.288366px;}
.y73_c00192{bottom:321.851073px;}
.y74_c00192{bottom:322.236606px;}
.y75_c00192{bottom:323.615226px;}
.y76_c00192{bottom:324.034158px;}
.y77_c00192{bottom:324.968169px;}
.y78_c00192{bottom:325.959960px;}
.y79_c00192{bottom:326.400573px;}
.y6b_c00192{bottom:337.221114px;}
.y6c_c00192{bottom:337.681416px;}
.y6d_c00192{bottom:338.982852px;}
.y6e_c00192{bottom:339.658608px;}
.y6f_c00192{bottom:341.008662px;}
.y70_c00192{bottom:341.462685px;}
.y71_c00192{bottom:342.909300px;}
.y63_c00192{bottom:353.697459px;}
.y64_c00192{bottom:354.243255px;}
.y65_c00192{bottom:354.765543px;}
.y66_c00192{bottom:356.319162px;}
.y67_c00192{bottom:356.956464px;}
.y68_c00192{bottom:357.622689px;}
.y69_c00192{bottom:358.572816px;}
.y6a_c00192{bottom:359.173473px;}
.y5d_c00192{bottom:371.517801px;}
.y5e_c00192{bottom:372.139881px;}
.y5f_c00192{bottom:373.286382px;}
.y60_c00192{bottom:373.811964px;}
.y61_c00192{bottom:374.959707px;}
.y62_c00192{bottom:376.378584px;}
.y55_c00192{bottom:387.452529px;}
.y56_c00192{bottom:388.823226px;}
.y57_c00192{bottom:389.299122px;}
.y58_c00192{bottom:389.806962px;}
.y59_c00192{bottom:391.084986px;}
.y5a_c00192{bottom:391.689306px;}
.y5b_c00192{bottom:392.118717px;}
.y5c_c00192{bottom:393.365553px;}
.y4e_c00192{bottom:405.274500px;}
.y4f_c00192{bottom:406.134234px;}
.y50_c00192{bottom:406.718217px;}
.y51_c00192{bottom:408.257001px;}
.y52_c00192{bottom:408.497193px;}
.y53_c00192{bottom:409.950279px;}
.y54_c00192{bottom:410.371722px;}
.y45_c00192{bottom:420.129000px;}
.y46_c00192{bottom:421.754550px;}
.y47_c00192{bottom:422.085862px;}
.y48_c00192{bottom:422.758950px;}
.y2_c00192{bottom:423.900000px;}
.y49_c00192{bottom:424.743000px;}
.y4a_c00192{bottom:425.218237px;}
.y4b_c00192{bottom:425.509087px;}
.y4c_c00192{bottom:426.204787px;}
.y4d_c00192{bottom:427.851787px;}
.y3c_c00192{bottom:437.935704px;}
.y3d_c00192{bottom:438.696384px;}
.y3e_c00192{bottom:439.784112px;}
.y3f_c00192{bottom:440.056620px;}
.y40_c00192{bottom:440.534556px;}
.y41_c00192{bottom:442.355064px;}
.y42_c00192{bottom:442.903176px;}
.y43_c00192{bottom:443.617872px;}
.y44_c00192{bottom:444.083520px;}
.y1_c00192{bottom:454.680000px;}
.y35_c00192{bottom:456.569532px;}
.y36_c00192{bottom:457.795296px;}
.y37_c00192{bottom:458.305980px;}
.y38_c00192{bottom:459.880008px;}
.y39_c00192{bottom:460.843740px;}
.y3a_c00192{bottom:461.165376px;}
.y3b_c00192{bottom:461.895948px;}
.y2c_c00192{bottom:471.963000px;}
.y2d_c00192{bottom:472.189332px;}
.y2e_c00192{bottom:472.914588px;}
.y2f_c00192{bottom:473.660364px;}
.y30_c00192{bottom:475.294080px;}
.y31_c00192{bottom:475.714992px;}
.y32_c00192{bottom:476.810436px;}
.y33_c00192{bottom:477.218568px;}
.y34_c00192{bottom:478.875432px;}
.y23_c00192{bottom:490.059000px;}
.y24_c00192{bottom:490.747500px;}
.y25_c00192{bottom:491.703000px;}
.y26_c00192{bottom:492.303000px;}
.y27_c00192{bottom:493.531500px;}
.y28_c00192{bottom:494.322000px;}
.y29_c00192{bottom:494.703000px;}
.y2a_c00192{bottom:495.714000px;}
.y2b_c00192{bottom:495.999000px;}
.y1b_c00192{bottom:507.609000px;}
.y1c_c00192{bottom:508.527000px;}
.y1d_c00192{bottom:508.930500px;}
.y1e_c00192{bottom:510.244500px;}
.y1f_c00192{bottom:510.966000px;}
.y20_c00192{bottom:512.377500px;}
.y21_c00192{bottom:512.802000px;}
.y22_c00192{bottom:513.256500px;}
.y13_c00192{bottom:525.156000px;}
.y14_c00192{bottom:526.045500px;}
.y15_c00192{bottom:526.456500px;}
.y16_c00192{bottom:526.861500px;}
.y17_c00192{bottom:527.533500px;}
.y18_c00192{bottom:528.387000px;}
.y19_c00192{bottom:528.906000px;}
.y1a_c00192{bottom:530.778000px;}
.yb_c00192{bottom:541.629000px;}
.yc_c00192{bottom:542.223000px;}
.yd_c00192{bottom:543.511500px;}
.ye_c00192{bottom:544.072500px;}
.yf_c00192{bottom:544.639500px;}
.y10_c00192{bottom:546.087000px;}
.y11_c00192{bottom:546.435000px;}
.y12_c00192{bottom:547.563000px;}
.y4_c00192{bottom:559.986000px;}
.y5_c00192{bottom:561.028500px;}
.y6_c00192{bottom:561.534000px;}
.y7_c00192{bottom:562.923000px;}
.y8_c00192{bottom:564.295500px;}
.y9_c00192{bottom:564.687000px;}
.ya_c00192{bottom:566.040000px;}
.y3_c00192{bottom:575.523000px;}
.h3_c00192{height:28.350000px;}
.h2_c00192{height:53.550000px;}
.h17_c00192{height:57.754880px;}
.h18_c00192{height:58.804968px;}
.hf_c00192{height:58.809525px;}
.h14_c00192{height:59.855057px;}
.hd_c00192{height:59.859695px;}
.h13_c00192{height:61.955235px;}
.he_c00192{height:61.960035px;}
.h9_c00192{height:61.967839px;}
.h15_c00192{height:63.005323px;}
.hb_c00192{height:63.010205px;}
.h19_c00192{height:64.055412px;}
.hc_c00192{height:66.160715px;}
.h8_c00192{height:67.219351px;}
.h7_c00192{height:68.250000px;}
.h11_c00192{height:68.255767px;}
.h10_c00192{height:68.259861px;}
.ha_c00192{height:68.271325px;}
.h6_c00192{height:69.300000px;}
.h12_c00192{height:70.355944px;}
.h5_c00192{height:71.400000px;}
.h4_c00192{height:81.900000px;}
.h16_c00192{height:85.057186px;}
.h1_c00192{height:623.250000px;}
.h0_c00192{height:623.400000px;}
.w1_c00192{width:383.250000px;}
.w0_c00192{width:383.400000px;}
.x0_c00192{left:0.000000px;}
.x2e_c00192{left:2.092512px;}
.x3a_c00192{left:19.008000px;}
.x5c_c00192{left:20.194500px;}
.x26_c00192{left:23.317500px;}
.x3e_c00192{left:31.018500px;}
.x20_c00192{left:32.701500px;}
.x3_c00192{left:34.017000px;}
.x11_c00192{left:35.059500px;}
.x32_c00192{left:36.451500px;}
.x50_c00192{left:40.169028px;}
.x58_c00192{left:41.233998px;}
.x69_c00192{left:42.388703px;}
.x77_c00192{left:44.550411px;}
.x80_c00192{left:53.192235px;}
.xa_c00192{left:58.381500px;}
.x4c_c00192{left:61.294071px;}
.x27_c00192{left:62.967000px;}
.x21_c00192{left:64.000500px;}
.x5d_c00192{left:66.162000px;}
.x82_c00192{left:68.045795px;}
.x48_c00192{left:71.232255px;}
.x59_c00192{left:72.552699px;}
.x2f_c00192{left:74.178108px;}
.x19_c00192{left:78.286500px;}
.x12_c00192{left:79.533000px;}
.x7e_c00192{left:81.276476px;}
.x4_c00192{left:83.680500px;}
.x4d_c00192{left:85.058370px;}
.x33_c00192{left:88.277244px;}
.x5e_c00192{left:90.631500px;}
.x28_c00192{left:94.041000px;}
.x1a_c00192{left:97.482000px;}
.x13_c00192{left:100.050000px;}
.x34_c00192{left:101.257680px;}
.x6a_c00192{left:102.872921px;}
.x30_c00192{left:104.211648px;}
.x79_c00192{left:105.306861px;}
.x85_c00192{left:106.658726px;}
.x5_c00192{left:107.728500px;}
.xb_c00192{left:109.933500px;}
.x3f_c00192{left:111.225000px;}
.x6f_c00192{left:115.295355px;}
.x14_c00192{left:120.319500px;}
.x1_c00192{left:122.580000px;}
.x35_c00192{left:123.985800px;}
.x42_c00192{left:125.815668px;}
.x51_c00192{left:128.206842px;}
.x7c_c00192{left:129.609017px;}
.xc_c00192{left:132.363000px;}
.x22_c00192{left:134.718000px;}
.x60_c00192{left:137.082000px;}
.x70_c00192{left:144.457289px;}
.x7a_c00192{left:146.080745px;}
.x67_c00192{left:148.618505px;}
.x43_c00192{left:151.194750px;}
.x15_c00192{left:153.904500px;}
.xd_c00192{left:155.056500px;}
.x63_c00192{left:156.339147px;}
.x86_c00192{left:158.502981px;}
.x1b_c00192{left:160.038000px;}
.x68_c00192{left:161.052492px;}
.x29_c00192{left:162.112500px;}
.x49_c00192{left:164.125755px;}
.x2_c00192{left:168.210000px;}
.x55_c00192{left:169.989903px;}
.x6_c00192{left:173.866500px;}
.x61_c00192{left:175.072454px;}
.x2a_c00192{left:179.650500px;}
.x81_c00192{left:181.993497px;}
.x87_c00192{left:183.075635px;}
.x4e_c00192{left:184.685715px;}
.x83_c00192{left:188.205594px;}
.x23_c00192{left:190.539000px;}
.x56_c00192{left:193.263903px;}
.x1c_c00192{left:194.415000px;}
.x16_c00192{left:196.558500px;}
.x6b_c00192{left:199.541762px;}
.x3b_c00192{left:203.568000px;}
.x64_c00192{left:205.212915px;}
.x36_c00192{left:210.659028px;}
.xe_c00192{left:212.949000px;}
.x44_c00192{left:215.110455px;}
.x5a_c00192{left:216.498975px;}
.x73_c00192{left:217.794220px;}
.x71_c00192{left:219.523964px;}
.x7f_c00192{left:220.876551px;}
.x17_c00192{left:222.478500px;}
.x2b_c00192{left:225.294000px;}
.xf_c00192{left:226.858500px;}
.x4a_c00192{left:227.889255px;}
.x52_c00192{left:229.498197px;}
.x72_c00192{left:231.674511px;}
.x3c_c00192{left:234.211500px;}
.x37_c00192{left:236.748900px;}
.x7_c00192{left:239.206500px;}
.x74_c00192{left:240.753220px;}
.x2c_c00192{left:242.299500px;}
.x24_c00192{left:243.762000px;}
.x45_c00192{left:245.349375px;}
.x7b_c00192{left:249.499236px;}
.x53_c00192{left:252.220887px;}
.x31_c00192{left:253.539240px;}
.x7d_c00192{left:254.901194px;}
.x65_c00192{left:256.247034px;}
.x8_c00192{left:257.868000px;}
.x1d_c00192{left:261.637500px;}
.x62_c00192{left:262.909104px;}
.x46_c00192{left:266.788092px;}
.x78_c00192{left:268.670261px;}
.x38_c00192{left:270.780348px;}
.x10_c00192{left:271.974000px;}
.x6c_c00192{left:273.528261px;}
.x1e_c00192{left:281.884500px;}
.x75_c00192{left:284.226221px;}
.x4f_c00192{left:285.428952px;}
.x5f_c00192{left:288.196500px;}
.x25_c00192{left:289.705500px;}
.x40_c00192{left:290.784000px;}
.x39_c00192{left:292.933932px;}
.x66_c00192{left:294.590508px;}
.x5b_c00192{left:298.520403px;}
.x57_c00192{left:300.252903px;}
.x6d_c00192{left:302.420136px;}
.x1f_c00192{left:303.498000px;}
.x4b_c00192{left:306.715755px;}
.x2d_c00192{left:311.335500px;}
.x76_c00192{left:312.847720px;}
.x41_c00192{left:314.197500px;}
.x18_c00192{left:316.087500px;}
.x88_c00192{left:318.087950px;}
.x9_c00192{left:322.324500px;}
.x54_c00192{left:324.585795px;}
.x3d_c00192{left:327.919500px;}
.x47_c00192{left:329.137851px;}
.x6e_c00192{left:330.773271px;}
.x84_c00192{left:335.098418px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
.fs1_c00192{font-size:25.200000pt;}
.fs0_c00192{font-size:47.600000pt;}
.fs15_c00192{font-size:51.337671pt;}
.fs16_c00192{font-size:52.271083pt;}
.fsd_c00192{font-size:52.275133pt;}
.fs12_c00192{font-size:53.204495pt;}
.fsb_c00192{font-size:53.208618pt;}
.fs11_c00192{font-size:55.071320pt;}
.fsc_c00192{font-size:55.075587pt;}
.fs7_c00192{font-size:55.082524pt;}
.fs13_c00192{font-size:56.004732pt;}
.fs9_c00192{font-size:56.009071pt;}
.fs17_c00192{font-size:56.938144pt;}
.fsa_c00192{font-size:58.809525pt;}
.fs6_c00192{font-size:59.750534pt;}
.fs5_c00192{font-size:60.666667pt;}
.fsf_c00192{font-size:60.671793pt;}
.fse_c00192{font-size:60.675432pt;}
.fs8_c00192{font-size:60.685622pt;}
.fs4_c00192{font-size:61.600000pt;}
.fs10_c00192{font-size:62.538617pt;}
.fs3_c00192{font-size:63.466667pt;}
.fs2_c00192{font-size:72.800000pt;}
.fs14_c00192{font-size:75.606388pt;}
.y0_c00192{bottom:0.000000pt;}
.yf7_c00192{bottom:28.839659pt;}
.yfb_c00192{bottom:28.839796pt;}
.yf8_c00192{bottom:28.840007pt;}
.yfd_c00192{bottom:28.840109pt;}
.yfa_c00192{bottom:28.840231pt;}
.yf9_c00192{bottom:28.840328pt;}
.yfc_c00192{bottom:28.840420pt;}
.yef_c00192{bottom:45.006984pt;}
.yf0_c00192{bottom:45.007287pt;}
.yf6_c00192{bottom:45.007373pt;}
.yf2_c00192{bottom:45.007565pt;}
.yf3_c00192{bottom:45.007584pt;}
.yf4_c00192{bottom:45.007673pt;}
.yf1_c00192{bottom:45.007707pt;}
.yf5_c00192{bottom:45.008004pt;}
.yee_c00192{bottom:59.132716pt;}
.yea_c00192{bottom:59.132728pt;}
.yec_c00192{bottom:59.132847pt;}
.yed_c00192{bottom:59.133008pt;}
.yeb_c00192{bottom:59.133344pt;}
.ye4_c00192{bottom:74.554440pt;}
.ye3_c00192{bottom:74.554475pt;}
.ye2_c00192{bottom:74.554643pt;}
.ye9_c00192{bottom:74.554827pt;}
.ye6_c00192{bottom:74.554940pt;}
.ye5_c00192{bottom:74.554956pt;}
.ye8_c00192{bottom:74.555181pt;}
.ye7_c00192{bottom:74.555359pt;}
.ydf_c00192{bottom:90.530604pt;}
.ydb_c00192{bottom:90.531116pt;}
.ye0_c00192{bottom:90.531165pt;}
.yde_c00192{bottom:90.531208pt;}
.ydc_c00192{bottom:90.531348pt;}
.ydd_c00192{bottom:90.531589pt;}
.ye1_c00192{bottom:90.531629pt;}
.yd8_c00192{bottom:105.784664pt;}
.yd9_c00192{bottom:105.784833pt;}
.yda_c00192{bottom:105.785021pt;}
.yd7_c00192{bottom:105.785089pt;}
.yd2_c00192{bottom:105.785228pt;}
.yd3_c00192{bottom:105.785273pt;}
.yd4_c00192{bottom:105.785389pt;}
.yd6_c00192{bottom:105.785427pt;}
.yd5_c00192{bottom:105.785808pt;}
.yc9_c00192{bottom:121.219375pt;}
.yca_c00192{bottom:121.219393pt;}
.ycb_c00192{bottom:121.219856pt;}
.ycc_c00192{bottom:121.220185pt;}
.ycd_c00192{bottom:121.220381pt;}
.yd0_c00192{bottom:121.220767pt;}
.yce_c00192{bottom:121.220907pt;}
.ycf_c00192{bottom:121.221236pt;}
.yd1_c00192{bottom:121.221292pt;}
.yc0_c00192{bottom:131.510653pt;}
.yc1_c00192{bottom:132.156771pt;}
.yc2_c00192{bottom:132.596777pt;}
.yc3_c00192{bottom:133.151929pt;}
.yc4_c00192{bottom:133.323391pt;}
.yc5_c00192{bottom:133.595056pt;}
.yc6_c00192{bottom:133.860360pt;}
.yc7_c00192{bottom:134.362715pt;}
.yc8_c00192{bottom:134.693452pt;}
.ybc_c00192{bottom:148.985017pt;}
.ybd_c00192{bottom:148.985133pt;}
.ybb_c00192{bottom:148.985425pt;}
.ybe_c00192{bottom:148.985641pt;}
.yba_c00192{bottom:148.985656pt;}
.yb9_c00192{bottom:148.985761pt;}
.ybf_c00192{bottom:148.986024pt;}
.yb3_c00192{bottom:165.226927pt;}
.yb8_c00192{bottom:165.227049pt;}
.yb6_c00192{bottom:165.227064pt;}
.yb7_c00192{bottom:165.227136pt;}
.yb5_c00192{bottom:165.227240pt;}
.yb4_c00192{bottom:165.227471pt;}
.yb0_c00192{bottom:180.808152pt;}
.yb1_c00192{bottom:180.808296pt;}
.yaf_c00192{bottom:180.808311pt;}
.yae_c00192{bottom:180.808381pt;}
.yab_c00192{bottom:180.808468pt;}
.yad_c00192{bottom:180.808612pt;}
.yb2_c00192{bottom:180.808768pt;}
.yac_c00192{bottom:180.808957pt;}
.ya4_c00192{bottom:194.635400pt;}
.ya5_c00192{bottom:194.844069pt;}
.ya6_c00192{bottom:195.062639pt;}
.ya7_c00192{bottom:195.590303pt;}
.ya8_c00192{bottom:195.700645pt;}
.ya9_c00192{bottom:196.271967pt;}
.yaa_c00192{bottom:196.514325pt;}
.y9f_c00192{bottom:211.261487pt;}
.y9e_c00192{bottom:211.261708pt;}
.y9a_c00192{bottom:211.261731pt;}
.y9b_c00192{bottom:211.261776pt;}
.ya1_c00192{bottom:211.261781pt;}
.ya3_c00192{bottom:211.261783pt;}
.ya0_c00192{bottom:211.261799pt;}
.ya2_c00192{bottom:211.262120pt;}
.y9d_c00192{bottom:211.262152pt;}
.y9c_c00192{bottom:211.262364pt;}
.y93_c00192{bottom:224.639449pt;}
.y94_c00192{bottom:225.165768pt;}
.y95_c00192{bottom:225.479979pt;}
.y96_c00192{bottom:226.058423pt;}
.y97_c00192{bottom:226.249157pt;}
.y98_c00192{bottom:226.994744pt;}
.y99_c00192{bottom:227.271424pt;}
.y8c_c00192{bottom:240.001333pt;}
.y8d_c00192{bottom:240.296936pt;}
.y8e_c00192{bottom:240.659757pt;}
.y8f_c00192{bottom:241.106039pt;}
.y90_c00192{bottom:241.361896pt;}
.y91_c00192{bottom:242.158033pt;}
.y92_c00192{bottom:242.787701pt;}
.y8b_c00192{bottom:259.951525pt;}
.y8a_c00192{bottom:260.265640pt;}
.y89_c00192{bottom:260.947725pt;}
.y88_c00192{bottom:261.326349pt;}
.y87_c00192{bottom:261.524705pt;}
.y86_c00192{bottom:262.643509pt;}
.y85_c00192{bottom:262.936952pt;}
.y84_c00192{bottom:263.306713pt;}
.y83_c00192{bottom:264.001333pt;}
.y7a_c00192{bottom:270.946472pt;}
.y7b_c00192{bottom:271.363544pt;}
.y7c_c00192{bottom:271.535301pt;}
.y7d_c00192{bottom:271.878829pt;}
.y7e_c00192{bottom:272.569891pt;}
.y7f_c00192{bottom:273.282560pt;}
.y80_c00192{bottom:273.563736pt;}
.y81_c00192{bottom:274.376165pt;}
.y82_c00192{bottom:274.759189pt;}
.y72_c00192{bottom:285.589659pt;}
.y73_c00192{bottom:286.089843pt;}
.y74_c00192{bottom:286.432539pt;}
.y75_c00192{bottom:287.657979pt;}
.y76_c00192{bottom:288.030363pt;}
.y77_c00192{bottom:288.860595pt;}
.y78_c00192{bottom:289.742187pt;}
.y79_c00192{bottom:290.133843pt;}
.y6b_c00192{bottom:299.752101pt;}
.y6c_c00192{bottom:300.161259pt;}
.y6d_c00192{bottom:301.318091pt;}
.y6e_c00192{bottom:301.918763pt;}
.y6f_c00192{bottom:303.118811pt;}
.y70_c00192{bottom:303.522387pt;}
.y71_c00192{bottom:304.808267pt;}
.y63_c00192{bottom:314.397741pt;}
.y64_c00192{bottom:314.882893pt;}
.y65_c00192{bottom:315.347149pt;}
.y66_c00192{bottom:316.728144pt;}
.y67_c00192{bottom:317.294635pt;}
.y68_c00192{bottom:317.886835pt;}
.y69_c00192{bottom:318.731392pt;}
.y6a_c00192{bottom:319.265309pt;}
.y5d_c00192{bottom:330.238045pt;}
.y5e_c00192{bottom:330.791005pt;}
.y5f_c00192{bottom:331.810117pt;}
.y60_c00192{bottom:332.277301pt;}
.y61_c00192{bottom:333.297517pt;}
.y62_c00192{bottom:334.558741pt;}
.y55_c00192{bottom:344.402248pt;}
.y56_c00192{bottom:345.620645pt;}
.y57_c00192{bottom:346.043664pt;}
.y58_c00192{bottom:346.495077pt;}
.y59_c00192{bottom:347.631099pt;}
.y5a_c00192{bottom:348.168272pt;}
.y5b_c00192{bottom:348.549971pt;}
.y5c_c00192{bottom:349.658269pt;}
.y4e_c00192{bottom:360.244000pt;}
.y4f_c00192{bottom:361.008208pt;}
.y50_c00192{bottom:361.527304pt;}
.y51_c00192{bottom:362.895112pt;}
.y52_c00192{bottom:363.108616pt;}
.y53_c00192{bottom:364.400248pt;}
.y54_c00192{bottom:364.774864pt;}
.y45_c00192{bottom:373.448000pt;}
.y46_c00192{bottom:374.892933pt;}
.y47_c00192{bottom:375.187433pt;}
.y48_c00192{bottom:375.785733pt;}
.y2_c00192{bottom:376.800000pt;}
.y49_c00192{bottom:377.549333pt;}
.y4a_c00192{bottom:377.971767pt;}
.y4b_c00192{bottom:378.230300pt;}
.y4c_c00192{bottom:378.848700pt;}
.y4d_c00192{bottom:380.312700pt;}
.y3c_c00192{bottom:389.276181pt;}
.y3d_c00192{bottom:389.952341pt;}
.y3e_c00192{bottom:390.919211pt;}
.y3f_c00192{bottom:391.161440pt;}
.y40_c00192{bottom:391.586272pt;}
.y41_c00192{bottom:393.204501pt;}
.y42_c00192{bottom:393.691712pt;}
.y43_c00192{bottom:394.326997pt;}
.y44_c00192{bottom:394.740907pt;}
.y1_c00192{bottom:404.160000pt;}
.y35_c00192{bottom:405.839584pt;}
.y36_c00192{bottom:406.929152pt;}
.y37_c00192{bottom:407.383093pt;}
.y38_c00192{bottom:408.782229pt;}
.y39_c00192{bottom:409.638880pt;}
.y3a_c00192{bottom:409.924779pt;}
.y3b_c00192{bottom:410.574176pt;}
.y2c_c00192{bottom:419.522667pt;}
.y2d_c00192{bottom:419.723851pt;}
.y2e_c00192{bottom:420.368523pt;}
.y2f_c00192{bottom:421.031435pt;}
.y30_c00192{bottom:422.483627pt;}
.y31_c00192{bottom:422.857771pt;}
.y32_c00192{bottom:423.831499pt;}
.y33_c00192{bottom:424.194283pt;}
.y34_c00192{bottom:425.667051pt;}
.y23_c00192{bottom:435.608000pt;}
.y24_c00192{bottom:436.220000pt;}
.y25_c00192{bottom:437.069333pt;}
.y26_c00192{bottom:437.602667pt;}
.y27_c00192{bottom:438.694667pt;}
.y28_c00192{bottom:439.397333pt;}
.y29_c00192{bottom:439.736000pt;}
.y2a_c00192{bottom:440.634667pt;}
.y2b_c00192{bottom:440.888000pt;}
.y1b_c00192{bottom:451.208000pt;}
.y1c_c00192{bottom:452.024000pt;}
.y1d_c00192{bottom:452.382667pt;}
.y1e_c00192{bottom:453.550667pt;}
.y1f_c00192{bottom:454.192000pt;}
.y20_c00192{bottom:455.446667pt;}
.y21_c00192{bottom:455.824000pt;}
.y22_c00192{bottom:456.228000pt;}
.y13_c00192{bottom:466.805333pt;}
.y14_c00192{bottom:467.596000pt;}
.y15_c00192{bottom:467.961333pt;}
.y16_c00192{bottom:468.321333pt;}
.y17_c00192{bottom:468.918667pt;}
.y18_c00192{bottom:469.677333pt;}
.y19_c00192{bottom:470.138667pt;}
.y1a_c00192{bottom:471.802667pt;}
.yb_c00192{bottom:481.448000pt;}
.yc_c00192{bottom:481.976000pt;}
.yd_c00192{bottom:483.121333pt;}
.ye_c00192{bottom:483.620000pt;}
.yf_c00192{bottom:484.124000pt;}
.y10_c00192{bottom:485.410667pt;}
.y11_c00192{bottom:485.720000pt;}
.y12_c00192{bottom:486.722667pt;}
.y4_c00192{bottom:497.765333pt;}
.y5_c00192{bottom:498.692000pt;}
.y6_c00192{bottom:499.141333pt;}
.y7_c00192{bottom:500.376000pt;}
.y8_c00192{bottom:501.596000pt;}
.y9_c00192{bottom:501.944000pt;}
.ya_c00192{bottom:503.146667pt;}
.y3_c00192{bottom:511.576000pt;}
.h3_c00192{height:25.200000pt;}
.h2_c00192{height:47.600000pt;}
.h17_c00192{height:51.337671pt;}
.h18_c00192{height:52.271083pt;}
.hf_c00192{height:52.275133pt;}
.h14_c00192{height:53.204495pt;}
.hd_c00192{height:53.208618pt;}
.h13_c00192{height:55.071320pt;}
.he_c00192{height:55.075587pt;}
.h9_c00192{height:55.082524pt;}
.h15_c00192{height:56.004732pt;}
.hb_c00192{height:56.009071pt;}
.h19_c00192{height:56.938144pt;}
.hc_c00192{height:58.809525pt;}
.h8_c00192{height:59.750534pt;}
.h7_c00192{height:60.666667pt;}
.h11_c00192{height:60.671793pt;}
.h10_c00192{height:60.675432pt;}
.ha_c00192{height:60.685622pt;}
.h6_c00192{height:61.600000pt;}
.h12_c00192{height:62.538617pt;}
.h5_c00192{height:63.466667pt;}
.h4_c00192{height:72.800000pt;}
.h16_c00192{height:75.606388pt;}
.h1_c00192{height:554.000000pt;}
.h0_c00192{height:554.133333pt;}
.w1_c00192{width:340.666667pt;}
.w0_c00192{width:340.800000pt;}
.x0_c00192{left:0.000000pt;}
.x2e_c00192{left:1.860011pt;}
.x3a_c00192{left:16.896000pt;}
.x5c_c00192{left:17.950667pt;}
.x26_c00192{left:20.726667pt;}
.x3e_c00192{left:27.572000pt;}
.x20_c00192{left:29.068000pt;}
.x3_c00192{left:30.237333pt;}
.x11_c00192{left:31.164000pt;}
.x32_c00192{left:32.401333pt;}
.x50_c00192{left:35.705803pt;}
.x58_c00192{left:36.652443pt;}
.x69_c00192{left:37.678847pt;}
.x77_c00192{left:39.600365pt;}
.x80_c00192{left:47.281987pt;}
.xa_c00192{left:51.894667pt;}
.x4c_c00192{left:54.483619pt;}
.x27_c00192{left:55.970667pt;}
.x21_c00192{left:56.889333pt;}
.x5d_c00192{left:58.810667pt;}
.x82_c00192{left:60.485151pt;}
.x48_c00192{left:63.317560pt;}
.x59_c00192{left:64.491288pt;}
.x2f_c00192{left:65.936096pt;}
.x19_c00192{left:69.588000pt;}
.x12_c00192{left:70.696000pt;}
.x7e_c00192{left:72.245756pt;}
.x4_c00192{left:74.382667pt;}
.x4d_c00192{left:75.607440pt;}
.x33_c00192{left:78.468661pt;}
.x5e_c00192{left:80.561333pt;}
.x28_c00192{left:83.592000pt;}
.x1a_c00192{left:86.650667pt;}
.x13_c00192{left:88.933333pt;}
.x34_c00192{left:90.006827pt;}
.x6a_c00192{left:91.442596pt;}
.x30_c00192{left:92.632576pt;}
.x79_c00192{left:93.606099pt;}
.x85_c00192{left:94.807756pt;}
.x5_c00192{left:95.758667pt;}
.xb_c00192{left:97.718667pt;}
.x3f_c00192{left:98.866667pt;}
.x6f_c00192{left:102.484760pt;}
.x14_c00192{left:106.950667pt;}
.x1_c00192{left:108.960000pt;}
.x35_c00192{left:110.209600pt;}
.x42_c00192{left:111.836149pt;}
.x51_c00192{left:113.961637pt;}
.x7c_c00192{left:115.208015pt;}
.xc_c00192{left:117.656000pt;}
.x22_c00192{left:119.749333pt;}
.x60_c00192{left:121.850667pt;}
.x70_c00192{left:128.406479pt;}
.x7a_c00192{left:129.849551pt;}
.x67_c00192{left:132.105337pt;}
.x43_c00192{left:134.395333pt;}
.x15_c00192{left:136.804000pt;}
.xd_c00192{left:137.828000pt;}
.x63_c00192{left:138.968131pt;}
.x86_c00192{left:140.891539pt;}
.x1b_c00192{left:142.256000pt;}
.x68_c00192{left:143.157771pt;}
.x29_c00192{left:144.100000pt;}
.x49_c00192{left:145.889560pt;}
.x2_c00192{left:149.520000pt;}
.x55_c00192{left:151.102136pt;}
.x6_c00192{left:154.548000pt;}
.x61_c00192{left:155.619959pt;}
.x2a_c00192{left:159.689333pt;}
.x81_c00192{left:161.771997pt;}
.x87_c00192{left:162.733897pt;}
.x4e_c00192{left:164.165080pt;}
.x83_c00192{left:167.293861pt;}
.x23_c00192{left:169.368000pt;}
.x56_c00192{left:171.790136pt;}
.x1c_c00192{left:172.813333pt;}
.x16_c00192{left:174.718667pt;}
.x6b_c00192{left:177.370455pt;}
.x3b_c00192{left:180.949333pt;}
.x64_c00192{left:182.411480pt;}
.x36_c00192{left:187.252469pt;}
.xe_c00192{left:189.288000pt;}
.x44_c00192{left:191.209293pt;}
.x5a_c00192{left:192.443533pt;}
.x73_c00192{left:193.594863pt;}
.x71_c00192{left:195.132412pt;}
.x7f_c00192{left:196.334712pt;}
.x17_c00192{left:197.758667pt;}
.x2b_c00192{left:200.261333pt;}
.xf_c00192{left:201.652000pt;}
.x4a_c00192{left:202.568227pt;}
.x52_c00192{left:203.998397pt;}
.x72_c00192{left:205.932899pt;}
.x3c_c00192{left:208.188000pt;}
.x37_c00192{left:210.443467pt;}
.x7_c00192{left:212.628000pt;}
.x74_c00192{left:214.002863pt;}
.x2c_c00192{left:215.377333pt;}
.x24_c00192{left:216.677333pt;}
.x45_c00192{left:218.088333pt;}
.x7b_c00192{left:221.777099pt;}
.x53_c00192{left:224.196344pt;}
.x31_c00192{left:225.368213pt;}
.x7d_c00192{left:226.578839pt;}
.x65_c00192{left:227.775141pt;}
.x8_c00192{left:229.216000pt;}
.x1d_c00192{left:232.566667pt;}
.x62_c00192{left:233.696981pt;}
.x46_c00192{left:237.144971pt;}
.x78_c00192{left:238.818009pt;}
.x38_c00192{left:240.693643pt;}
.x10_c00192{left:241.754667pt;}
.x6c_c00192{left:243.136232pt;}
.x1e_c00192{left:250.564000pt;}
.x75_c00192{left:252.645529pt;}
.x4f_c00192{left:253.714624pt;}
.x5f_c00192{left:256.174667pt;}
.x25_c00192{left:257.516000pt;}
.x40_c00192{left:258.474667pt;}
.x39_c00192{left:260.385717pt;}
.x66_c00192{left:261.858229pt;}
.x5b_c00192{left:265.351469pt;}
.x57_c00192{left:266.891469pt;}
.x6d_c00192{left:268.817899pt;}
.x1f_c00192{left:269.776000pt;}
.x4b_c00192{left:272.636227pt;}
.x2d_c00192{left:276.742667pt;}
.x76_c00192{left:278.086863pt;}
.x41_c00192{left:279.286667pt;}
.x18_c00192{left:280.966667pt;}
.x88_c00192{left:282.744844pt;}
.x9_c00192{left:286.510667pt;}
.x54_c00192{left:288.520707pt;}
.x3d_c00192{left:291.484000pt;}
.x47_c00192{left:292.566979pt;}
.x6e_c00192{left:294.020685pt;}
.x84_c00192{left:297.865260pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00193 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00193 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00193 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00193 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00193.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00193{transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);}
.m97_c00193{transform:matrix(0.081335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081335,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.105585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105585,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.119295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119295,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.131660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131660,0.000000,0.000000,0.250000,0,0);}
.mcc_c00193{transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141895,0.000000,0.000000,0.250000,0,0);}
.mb5_c00193{transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);}
.mcb_c00193{transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m79_c00193{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m99_c00193{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.mdc_c00193{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.160545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160545,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mb6_c00193{transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);}
.md7_c00193{transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);}
.mf1_c00193{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00193{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);}
.md1_c00193{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mb2_c00193{transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);}
.mcd_c00193{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m69_c00193{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);}
.md6_c00193{transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);}
.m64_c00193{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.mc2_c00193{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00193{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m9d_c00193{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.mcf_c00193{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.md9_c00193{transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.mba_c00193{transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);}
.me7_c00193{transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);}
.m9e_c00193{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.mee_c00193{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.mce_c00193{transform:matrix(0.175785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175785,0.000000,0.000000,0.250000,0,0);}
.m66_c00193{transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);}
.mf3_c00193{transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);}
.m87_c00193{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m7b_c00193{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.ma2_c00193{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.md8_c00193{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m5d_c00193{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m86_c00193{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.mc6_c00193{transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178985,0.000000,0.000000,0.250000,0,0);}
.m7f_c00193{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.179905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179905,0.000000,0.000000,0.250000,0,0);}
.mbe_c00193{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.m62_c00193{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00193{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.m9c_c00193{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m76_c00193{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.m72_c00193{transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m8a_c00193{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.m73_c00193{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00193{transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);}
.m8c_c00193{transform:matrix(0.185735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185735,0.000000,0.000000,0.250000,0,0);}
.mb7_c00193{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.mc5_c00193{transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);}
.m61_c00193{transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);}
.mef_c00193{transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);}
.m84_c00193{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);}
.maa_c00193{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.md2_c00193{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.mb9_c00193{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.mc3_c00193{transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.mec_c00193{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.ma9_c00193{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.mb0_c00193{transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191955,0.000000,0.000000,0.250000,0,0);}
.md3_c00193{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mc9_c00193{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.ma4_c00193{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.m67_c00193{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m7c_c00193{transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.mdd_c00193{transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);}
.m8e_c00193{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);}
.m89_c00193{transform:matrix(0.196160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196160,0.000000,0.000000,0.250000,0,0);}
.mf0_c00193{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.mbc_c00193{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m52_c00193{transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196695,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m65_c00193{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mdb_c00193{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.m83_c00193{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m5f_c00193{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.me9_c00193{transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);}
.mb3_c00193{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m78_c00193{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m75_c00193{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);}
.m77_c00193{transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202865,0.000000,0.000000,0.250000,0,0);}
.mc7_c00193{transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);}
.m88_c00193{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m47_c00193{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m80_c00193{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.ma5_c00193{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.mbd_c00193{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.mde_c00193{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m6f_c00193{transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);}
.m50_c00193{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.mf2_c00193{transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);}
.me5_c00193{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m70_c00193{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207305,0.000000,0.000000,0.250000,0,0);}
.m63_c00193{transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);}
.me6_c00193{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.mca_c00193{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00193{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);}
.mab_c00193{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m59_c00193{transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);}
.med_c00193{transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);}
.m82_c00193{transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);}
.mc1_c00193{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.mc8_c00193{transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);}
.md5_c00193{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.mbb_c00193{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m81_c00193{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00193{transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);}
.m8f_c00193{transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);}
.me8_c00193{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m71_c00193{transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);}
.m9a_c00193{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.mc0_c00193{transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);}
.mb4_c00193{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.mae_c00193{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m74_c00193{transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.ma7_c00193{transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.mda_c00193{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.md0_c00193{transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);}
.m6a_c00193{transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);}
.mac_c00193{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.md4_c00193{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.m6e_c00193{transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);}
.ma3_c00193{transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);}
.me2_c00193{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.ma8_c00193{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00193{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.m6b_c00193{transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);}
.m7e_c00193{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m5a_c00193{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m90_c00193{transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);}
.m7d_c00193{transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);}
.m6c_c00193{transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00193{transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);}
.m85_c00193{transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);}
.mea_c00193{transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);}
.mad_c00193{transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00193{transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);}
.me4_c00193{transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);}
.mbf_c00193{transform:matrix(0.241130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241130,0.000000,0.000000,0.250000,0,0);}
.m98_c00193{transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);}
.meb_c00193{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);}
.me1_c00193{transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);}
.m95_c00193{transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);}
.m93_c00193{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m68_c00193{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.me0_c00193{transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);}
.m92_c00193{transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);}
.maf_c00193{transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);}
.m91_c00193{transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);}
.m8d_c00193{transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);}
.me3_c00193{transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.284405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284405,0.000000,0.000000,0.250000,0,0);}
.m94_c00193{transform:matrix(0.285295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285295,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);}
.ma0_c00193{transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);}
.m6d_c00193{transform:matrix(0.357490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357490,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.372240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372240,0.000000,0.000000,0.250000,0,0);}
.m5c_c00193{transform:matrix(0.387485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387485,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.390725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390725,0.000000,0.000000,0.250000,0,0);}
.m54_c00193{transform:matrix(0.394885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394885,0.000000,0.000000,0.250000,0,0);}
.ma1_c00193{transform:matrix(0.465475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465475,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.545015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545015,0.000000,0.000000,0.250000,0,0);}
.m96_c00193{transform:matrix(1.430055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430055,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(1.586765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.586765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.586765,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:0.000000px;}
.fc0_c00193{color:transparent;}
.fs0_c00193{font-size:25.200000px;}
.fsd_c00193{font-size:49.350000px;}
.fsc_c00193{font-size:55.650000px;}
.fs7_c00193{font-size:57.750000px;}
.fs9_c00193{font-size:58.800000px;}
.fs4_c00193{font-size:59.850000px;}
.fs2_c00193{font-size:60.900000px;}
.fsa_c00193{font-size:61.950000px;}
.fs11_c00193{font-size:63.000000px;}
.fsb_c00193{font-size:64.050000px;}
.fse_c00193{font-size:65.100000px;}
.fs6_c00193{font-size:66.150000px;}
.fs8_c00193{font-size:67.200000px;}
.fs3_c00193{font-size:68.250000px;}
.fs5_c00193{font-size:69.300000px;}
.fsf_c00193{font-size:71.400000px;}
.fs10_c00193{font-size:73.500000px;}
.fs1_c00193{font-size:114.450000px;}
.y0_c00193{bottom:0.000000px;}
.y97_c00193{bottom:31.237500px;}
.y96_c00193{bottom:47.736000px;}
.y95_c00193{bottom:65.196000px;}
.y94_c00193{bottom:82.222500px;}
.y93_c00193{bottom:82.678500px;}
.y92_c00193{bottom:84.067500px;}
.y91_c00193{bottom:84.235500px;}
.y90_c00193{bottom:85.621500px;}
.y8f_c00193{bottom:86.016000px;}
.y8e_c00193{bottom:87.000000px;}
.y8d_c00193{bottom:87.486000px;}
.y8c_c00193{bottom:99.364500px;}
.y8b_c00193{bottom:115.129500px;}
.y8a_c00193{bottom:133.999500px;}
.y89_c00193{bottom:134.575500px;}
.y88_c00193{bottom:134.760000px;}
.y87_c00193{bottom:135.768000px;}
.y86_c00193{bottom:136.894500px;}
.y85_c00193{bottom:149.466000px;}
.y84_c00193{bottom:150.172500px;}
.y83_c00193{bottom:150.469500px;}
.y82_c00193{bottom:150.946500px;}
.y81_c00193{bottom:151.237500px;}
.y80_c00193{bottom:152.014500px;}
.y7f_c00193{bottom:167.272500px;}
.y7e_c00193{bottom:185.368500px;}
.y7d_c00193{bottom:202.737000px;}
.y7c_c00193{bottom:218.728500px;}
.y7b_c00193{bottom:219.084000px;}
.y7a_c00193{bottom:220.695000px;}
.y79_c00193{bottom:220.929000px;}
.y78_c00193{bottom:221.586000px;}
.y77_c00193{bottom:221.944500px;}
.y76_c00193{bottom:236.611500px;}
.y75_c00193{bottom:236.827500px;}
.y74_c00193{bottom:237.709500px;}
.y73_c00193{bottom:238.023000px;}
.y72_c00193{bottom:238.482000px;}
.y71_c00193{bottom:238.762500px;}
.y70_c00193{bottom:239.103000px;}
.y6f_c00193{bottom:239.668500px;}
.y6e_c00193{bottom:239.944500px;}
.y6d_c00193{bottom:240.844500px;}
.y6c_c00193{bottom:253.398000px;}
.y6b_c00193{bottom:254.827500px;}
.y6a_c00193{bottom:257.043000px;}
.y69_c00193{bottom:270.069000px;}
.y68_c00193{bottom:271.074000px;}
.y67_c00193{bottom:271.284000px;}
.y66_c00193{bottom:272.182500px;}
.y65_c00193{bottom:272.437500px;}
.y64_c00193{bottom:273.247500px;}
.y63_c00193{bottom:273.514500px;}
.y62_c00193{bottom:286.797000px;}
.y61_c00193{bottom:287.629500px;}
.y60_c00193{bottom:287.839500px;}
.y5f_c00193{bottom:288.312000px;}
.y5e_c00193{bottom:288.988500px;}
.y5d_c00193{bottom:289.680000px;}
.y5c_c00193{bottom:290.035500px;}
.y5b_c00193{bottom:290.253000px;}
.y5a_c00193{bottom:303.639000px;}
.y59_c00193{bottom:303.814500px;}
.y58_c00193{bottom:304.078500px;}
.y57_c00193{bottom:304.510500px;}
.y56_c00193{bottom:304.750500px;}
.y55_c00193{bottom:305.493000px;}
.y54_c00193{bottom:305.728500px;}
.y53_c00193{bottom:305.880000px;}
.y52_c00193{bottom:306.453000px;}
.y51_c00193{bottom:321.873000px;}
.y50_c00193{bottom:339.130500px;}
.y4f_c00193{bottom:356.409000px;}
.y4e_c00193{bottom:372.000000px;}
.y4d_c00193{bottom:373.008000px;}
.y4c_c00193{bottom:373.818000px;}
.y4b_c00193{bottom:374.164500px;}
.y4a_c00193{bottom:374.751000px;}
.y49_c00193{bottom:374.965500px;}
.y48_c00193{bottom:375.178500px;}
.y47_c00193{bottom:375.576000px;}
.y46_c00193{bottom:375.843000px;}
.y45_c00193{bottom:388.882500px;}
.y44_c00193{bottom:389.446500px;}
.y43_c00193{bottom:389.655000px;}
.y42_c00193{bottom:390.343500px;}
.y41_c00193{bottom:390.577500px;}
.y40_c00193{bottom:391.195500px;}
.y3f_c00193{bottom:391.459500px;}
.y3e_c00193{bottom:392.311500px;}
.y3d_c00193{bottom:408.408000px;}
.y3c_c00193{bottom:423.345000px;}
.y3b_c00193{bottom:423.924000px;}
.y3a_c00193{bottom:424.792500px;}
.y39_c00193{bottom:425.175000px;}
.y38_c00193{bottom:425.569500px;}
.y37_c00193{bottom:425.781000px;}
.y36_c00193{bottom:426.655500px;}
.y35_c00193{bottom:426.801000px;}
.y34_c00193{bottom:427.141500px;}
.y33_c00193{bottom:440.523000px;}
.y32_c00193{bottom:441.336000px;}
.y31_c00193{bottom:441.592500px;}
.y30_c00193{bottom:442.171500px;}
.y2f_c00193{bottom:442.392000px;}
.y2e_c00193{bottom:442.749000px;}
.y2d_c00193{bottom:443.799000px;}
.y2c_c00193{bottom:444.082500px;}
.y2b_c00193{bottom:444.690000px;}
.y2a_c00193{bottom:457.888500px;}
.y29_c00193{bottom:458.598000px;}
.y28_c00193{bottom:458.857500px;}
.y27_c00193{bottom:459.190500px;}
.y26_c00193{bottom:459.960000px;}
.y25_c00193{bottom:460.306500px;}
.y24_c00193{bottom:460.482000px;}
.y23_c00193{bottom:460.683000px;}
.y22_c00193{bottom:461.008500px;}
.y21_c00193{bottom:461.430000px;}
.y20_c00193{bottom:474.630000px;}
.y1f_c00193{bottom:475.129500px;}
.y1e_c00193{bottom:475.260000px;}
.y1d_c00193{bottom:475.617000px;}
.y1c_c00193{bottom:475.771500px;}
.y1b_c00193{bottom:476.508000px;}
.y1a_c00193{bottom:476.715000px;}
.y19_c00193{bottom:476.839500px;}
.y18_c00193{bottom:477.015000px;}
.y17_c00193{bottom:477.220500px;}
.y16_c00193{bottom:477.624000px;}
.y15_c00193{bottom:478.171500px;}
.y14_c00193{bottom:492.648000px;}
.y13_c00193{bottom:493.209000px;}
.y12_c00193{bottom:493.431000px;}
.y11_c00193{bottom:493.680000px;}
.y10_c00193{bottom:494.104500px;}
.yf_c00193{bottom:494.523000px;}
.ye_c00193{bottom:494.724000px;}
.yd_c00193{bottom:495.450000px;}
.yc_c00193{bottom:509.986500px;}
.yb_c00193{bottom:510.453000px;}
.ya_c00193{bottom:510.660000px;}
.y9_c00193{bottom:510.916500px;}
.y8_c00193{bottom:511.293000px;}
.y7_c00193{bottom:512.089500px;}
.y6_c00193{bottom:512.461500px;}
.y5_c00193{bottom:527.791500px;}
.y4_c00193{bottom:545.343000px;}
.y3_c00193{bottom:562.029000px;}
.y2_c00193{bottom:576.720000px;}
.y1_c00193{bottom:583.740000px;}
.h2_c00193{height:25.200000px;}
.hf_c00193{height:49.350000px;}
.he_c00193{height:55.650000px;}
.h9_c00193{height:57.750000px;}
.hb_c00193{height:58.800000px;}
.h6_c00193{height:59.850000px;}
.h4_c00193{height:60.900000px;}
.hc_c00193{height:61.950000px;}
.h13_c00193{height:63.000000px;}
.hd_c00193{height:64.050000px;}
.h10_c00193{height:65.100000px;}
.h8_c00193{height:66.150000px;}
.ha_c00193{height:67.200000px;}
.h5_c00193{height:68.250000px;}
.h7_c00193{height:69.300000px;}
.h11_c00193{height:71.400000px;}
.h12_c00193{height:73.500000px;}
.h3_c00193{height:114.450000px;}
.h1_c00193{height:623.250000px;}
.h0_c00193{height:623.400000px;}
.w1_c00193{width:383.250000px;}
.w0_c00193{width:383.400000px;}
.x0_c00193{left:0.000000px;}
.x7d_c00193{left:46.390500px;}
.x73_c00193{left:47.790000px;}
.x6a_c00193{left:48.958500px;}
.x5d_c00193{left:50.340000px;}
.x4f_c00193{left:51.838500px;}
.x38_c00193{left:53.322000px;}
.x29_c00193{left:54.441000px;}
.x9_c00193{left:55.620000px;}
.x3_c00193{left:57.240000px;}
.x81_c00193{left:66.691500px;}
.x5e_c00193{left:68.491500px;}
.x6d_c00193{left:69.660000px;}
.x55_c00193{left:72.088500px;}
.x47_c00193{left:73.548000px;}
.x66_c00193{left:74.613000px;}
.xa_c00193{left:76.950000px;}
.x74_c00193{left:78.840000px;}
.x39_c00193{left:81.723000px;}
.x2a_c00193{left:86.842500px;}
.x17_c00193{left:89.505000px;}
.x3a_c00193{left:93.819000px;}
.x56_c00193{left:95.038500px;}
.x5f_c00193{left:98.136000px;}
.x31_c00193{left:100.884000px;}
.x23_c00193{left:104.404500px;}
.x57_c00193{left:108.421500px;}
.xb_c00193{left:110.700000px;}
.x2b_c00193{left:111.892500px;}
.x4_c00193{left:116.640000px;}
.x3f_c00193{left:117.720000px;}
.x1d_c00193{left:121.146000px;}
.x32_c00193{left:122.704500px;}
.x70_c00193{left:123.930000px;}
.x2c_c00193{left:127.350000px;}
.xc_c00193{left:129.600000px;}
.x75_c00193{left:130.680000px;}
.x12_c00193{left:131.760000px;}
.x48_c00193{left:136.986000px;}
.x6b_c00193{left:138.303000px;}
.x1e_c00193{left:139.468500px;}
.x24_c00193{left:141.072000px;}
.x7b_c00193{left:143.101500px;}
.x6e_c00193{left:144.720000px;}
.x58_c00193{left:147.019500px;}
.x40_c00193{left:148.500000px;}
.x79_c00193{left:150.931500px;}
.x7f_c00193{left:152.551500px;}
.x42_c00193{left:154.570500px;}
.x50_c00193{left:156.058500px;}
.x13_c00193{left:159.300000px;}
.x18_c00193{left:161.856000px;}
.x2d_c00193{left:167.506500px;}
.x25_c00193{left:175.642500px;}
.x1f_c00193{left:177.558000px;}
.x5_c00193{left:179.010000px;}
.x49_c00193{left:182.071500px;}
.x3b_c00193{left:184.324500px;}
.x26_c00193{left:187.026000px;}
.x7c_c00193{left:191.971500px;}
.xd_c00193{left:194.130000px;}
.x19_c00193{left:196.144500px;}
.x2_c00193{left:198.450000px;}
.x77_c00193{left:201.238500px;}
.x33_c00193{left:203.487000px;}
.x67_c00193{left:204.724500px;}
.x27_c00193{left:205.867500px;}
.x4a_c00193{left:208.776000px;}
.x43_c00193{left:210.729000px;}
.x60_c00193{left:212.073000px;}
.x20_c00193{left:216.184500px;}
.x3c_c00193{left:217.204500px;}
.x1a_c00193{left:219.421500px;}
.x59_c00193{left:221.268000px;}
.x68_c00193{left:222.270000px;}
.x6f_c00193{left:224.640000px;}
.x2e_c00193{left:226.704000px;}
.xe_c00193{left:228.690000px;}
.x34_c00193{left:230.970000px;}
.x44_c00193{left:232.068000px;}
.x14_c00193{left:236.250000px;}
.x1b_c00193{left:238.266000px;}
.x51_c00193{left:240.298500px;}
.x5a_c00193{left:245.298000px;}
.x6_c00193{left:248.670000px;}
.x69_c00193{left:250.969500px;}
.x2f_c00193{left:252.286500px;}
.x63_c00193{left:253.384500px;}
.x76_c00193{left:255.420000px;}
.x21_c00193{left:259.056000px;}
.x78_c00193{left:260.077500px;}
.x71_c00193{left:265.410000px;}
.x15_c00193{left:267.030000px;}
.x61_c00193{left:269.044500px;}
.x4b_c00193{left:271.135500px;}
.x7_c00193{left:272.430000px;}
.x4d_c00193{left:277.288500px;}
.x6c_c00193{left:278.721000px;}
.x1c_c00193{left:280.665000px;}
.x52_c00193{left:283.768500px;}
.xf_c00193{left:287.010000px;}
.x5b_c00193{left:288.502500px;}
.x35_c00193{left:292.524000px;}
.x41_c00193{left:295.110000px;}
.x7e_c00193{left:299.478000px;}
.x10_c00193{left:302.130000px;}
.x80_c00193{left:303.211500px;}
.x72_c00193{left:305.100000px;}
.x22_c00193{left:310.101000px;}
.x36_c00193{left:312.231000px;}
.x45_c00193{left:313.597500px;}
.x53_c00193{left:315.088500px;}
.x82_c00193{left:316.171500px;}
.x28_c00193{left:319.279500px;}
.x3d_c00193{left:321.421500px;}
.x7a_c00193{left:323.461500px;}
.x11_c00193{left:325.350000px;}
.x30_c00193{left:326.818500px;}
.x16_c00193{left:330.480000px;}
.x5c_c00193{left:332.527500px;}
.x54_c00193{left:335.068500px;}
.x64_c00193{left:337.089000px;}
.x62_c00193{left:338.431500px;}
.x4e_c00193{left:342.898500px;}
.x4c_c00193{left:348.679500px;}
.x46_c00193{left:364.903500px;}
.x3e_c00193{left:369.702000px;}
.x37_c00193{left:374.805000px;}
.x8_c00193{left:376.380000px;}
.x1_c00193{left:378.540000px;}
.x65_c00193{left:381.481500px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.fs0_c00193{font-size:22.400000pt;}
.fsd_c00193{font-size:43.866667pt;}
.fsc_c00193{font-size:49.466667pt;}
.fs7_c00193{font-size:51.333333pt;}
.fs9_c00193{font-size:52.266667pt;}
.fs4_c00193{font-size:53.200000pt;}
.fs2_c00193{font-size:54.133333pt;}
.fsa_c00193{font-size:55.066667pt;}
.fs11_c00193{font-size:56.000000pt;}
.fsb_c00193{font-size:56.933333pt;}
.fse_c00193{font-size:57.866667pt;}
.fs6_c00193{font-size:58.800000pt;}
.fs8_c00193{font-size:59.733333pt;}
.fs3_c00193{font-size:60.666667pt;}
.fs5_c00193{font-size:61.600000pt;}
.fsf_c00193{font-size:63.466667pt;}
.fs10_c00193{font-size:65.333333pt;}
.fs1_c00193{font-size:101.733333pt;}
.y0_c00193{bottom:0.000000pt;}
.y97_c00193{bottom:27.766667pt;}
.y96_c00193{bottom:42.432000pt;}
.y95_c00193{bottom:57.952000pt;}
.y94_c00193{bottom:73.086667pt;}
.y93_c00193{bottom:73.492000pt;}
.y92_c00193{bottom:74.726667pt;}
.y91_c00193{bottom:74.876000pt;}
.y90_c00193{bottom:76.108000pt;}
.y8f_c00193{bottom:76.458667pt;}
.y8e_c00193{bottom:77.333333pt;}
.y8d_c00193{bottom:77.765333pt;}
.y8c_c00193{bottom:88.324000pt;}
.y8b_c00193{bottom:102.337333pt;}
.y8a_c00193{bottom:119.110667pt;}
.y89_c00193{bottom:119.622667pt;}
.y88_c00193{bottom:119.786667pt;}
.y87_c00193{bottom:120.682667pt;}
.y86_c00193{bottom:121.684000pt;}
.y85_c00193{bottom:132.858667pt;}
.y84_c00193{bottom:133.486667pt;}
.y83_c00193{bottom:133.750667pt;}
.y82_c00193{bottom:134.174667pt;}
.y81_c00193{bottom:134.433333pt;}
.y80_c00193{bottom:135.124000pt;}
.y7f_c00193{bottom:148.686667pt;}
.y7e_c00193{bottom:164.772000pt;}
.y7d_c00193{bottom:180.210667pt;}
.y7c_c00193{bottom:194.425333pt;}
.y7b_c00193{bottom:194.741333pt;}
.y7a_c00193{bottom:196.173333pt;}
.y79_c00193{bottom:196.381333pt;}
.y78_c00193{bottom:196.965333pt;}
.y77_c00193{bottom:197.284000pt;}
.y76_c00193{bottom:210.321333pt;}
.y75_c00193{bottom:210.513333pt;}
.y74_c00193{bottom:211.297333pt;}
.y73_c00193{bottom:211.576000pt;}
.y72_c00193{bottom:211.984000pt;}
.y71_c00193{bottom:212.233333pt;}
.y70_c00193{bottom:212.536000pt;}
.y6f_c00193{bottom:213.038667pt;}
.y6e_c00193{bottom:213.284000pt;}
.y6d_c00193{bottom:214.084000pt;}
.y6c_c00193{bottom:225.242667pt;}
.y6b_c00193{bottom:226.513333pt;}
.y6a_c00193{bottom:228.482667pt;}
.y69_c00193{bottom:240.061333pt;}
.y68_c00193{bottom:240.954667pt;}
.y67_c00193{bottom:241.141333pt;}
.y66_c00193{bottom:241.940000pt;}
.y65_c00193{bottom:242.166667pt;}
.y64_c00193{bottom:242.886667pt;}
.y63_c00193{bottom:243.124000pt;}
.y62_c00193{bottom:254.930667pt;}
.y61_c00193{bottom:255.670667pt;}
.y60_c00193{bottom:255.857333pt;}
.y5f_c00193{bottom:256.277333pt;}
.y5e_c00193{bottom:256.878667pt;}
.y5d_c00193{bottom:257.493333pt;}
.y5c_c00193{bottom:257.809333pt;}
.y5b_c00193{bottom:258.002667pt;}
.y5a_c00193{bottom:269.901333pt;}
.y59_c00193{bottom:270.057333pt;}
.y58_c00193{bottom:270.292000pt;}
.y57_c00193{bottom:270.676000pt;}
.y56_c00193{bottom:270.889333pt;}
.y55_c00193{bottom:271.549333pt;}
.y54_c00193{bottom:271.758667pt;}
.y53_c00193{bottom:271.893333pt;}
.y52_c00193{bottom:272.402667pt;}
.y51_c00193{bottom:286.109333pt;}
.y50_c00193{bottom:301.449333pt;}
.y4f_c00193{bottom:316.808000pt;}
.y4e_c00193{bottom:330.666667pt;}
.y4d_c00193{bottom:331.562667pt;}
.y4c_c00193{bottom:332.282667pt;}
.y4b_c00193{bottom:332.590667pt;}
.y4a_c00193{bottom:333.112000pt;}
.y49_c00193{bottom:333.302667pt;}
.y48_c00193{bottom:333.492000pt;}
.y47_c00193{bottom:333.845333pt;}
.y46_c00193{bottom:334.082667pt;}
.y45_c00193{bottom:345.673333pt;}
.y44_c00193{bottom:346.174667pt;}
.y43_c00193{bottom:346.360000pt;}
.y42_c00193{bottom:346.972000pt;}
.y41_c00193{bottom:347.180000pt;}
.y40_c00193{bottom:347.729333pt;}
.y3f_c00193{bottom:347.964000pt;}
.y3e_c00193{bottom:348.721333pt;}
.y3d_c00193{bottom:363.029333pt;}
.y3c_c00193{bottom:376.306667pt;}
.y3b_c00193{bottom:376.821333pt;}
.y3a_c00193{bottom:377.593333pt;}
.y39_c00193{bottom:377.933333pt;}
.y38_c00193{bottom:378.284000pt;}
.y37_c00193{bottom:378.472000pt;}
.y36_c00193{bottom:379.249333pt;}
.y35_c00193{bottom:379.378667pt;}
.y34_c00193{bottom:379.681333pt;}
.y33_c00193{bottom:391.576000pt;}
.y32_c00193{bottom:392.298667pt;}
.y31_c00193{bottom:392.526667pt;}
.y30_c00193{bottom:393.041333pt;}
.y2f_c00193{bottom:393.237333pt;}
.y2e_c00193{bottom:393.554667pt;}
.y2d_c00193{bottom:394.488000pt;}
.y2c_c00193{bottom:394.740000pt;}
.y2b_c00193{bottom:395.280000pt;}
.y2a_c00193{bottom:407.012000pt;}
.y29_c00193{bottom:407.642667pt;}
.y28_c00193{bottom:407.873333pt;}
.y27_c00193{bottom:408.169333pt;}
.y26_c00193{bottom:408.853333pt;}
.y25_c00193{bottom:409.161333pt;}
.y24_c00193{bottom:409.317333pt;}
.y23_c00193{bottom:409.496000pt;}
.y22_c00193{bottom:409.785333pt;}
.y21_c00193{bottom:410.160000pt;}
.y20_c00193{bottom:421.893333pt;}
.y1f_c00193{bottom:422.337333pt;}
.y1e_c00193{bottom:422.453333pt;}
.y1d_c00193{bottom:422.770667pt;}
.y1c_c00193{bottom:422.908000pt;}
.y1b_c00193{bottom:423.562667pt;}
.y1a_c00193{bottom:423.746667pt;}
.y19_c00193{bottom:423.857333pt;}
.y18_c00193{bottom:424.013333pt;}
.y17_c00193{bottom:424.196000pt;}
.y16_c00193{bottom:424.554667pt;}
.y15_c00193{bottom:425.041333pt;}
.y14_c00193{bottom:437.909333pt;}
.y13_c00193{bottom:438.408000pt;}
.y12_c00193{bottom:438.605333pt;}
.y11_c00193{bottom:438.826667pt;}
.y10_c00193{bottom:439.204000pt;}
.yf_c00193{bottom:439.576000pt;}
.ye_c00193{bottom:439.754667pt;}
.yd_c00193{bottom:440.400000pt;}
.yc_c00193{bottom:453.321333pt;}
.yb_c00193{bottom:453.736000pt;}
.ya_c00193{bottom:453.920000pt;}
.y9_c00193{bottom:454.148000pt;}
.y8_c00193{bottom:454.482667pt;}
.y7_c00193{bottom:455.190667pt;}
.y6_c00193{bottom:455.521333pt;}
.y5_c00193{bottom:469.148000pt;}
.y4_c00193{bottom:484.749333pt;}
.y3_c00193{bottom:499.581333pt;}
.y2_c00193{bottom:512.640000pt;}
.y1_c00193{bottom:518.880000pt;}
.h2_c00193{height:22.400000pt;}
.hf_c00193{height:43.866667pt;}
.he_c00193{height:49.466667pt;}
.h9_c00193{height:51.333333pt;}
.hb_c00193{height:52.266667pt;}
.h6_c00193{height:53.200000pt;}
.h4_c00193{height:54.133333pt;}
.hc_c00193{height:55.066667pt;}
.h13_c00193{height:56.000000pt;}
.hd_c00193{height:56.933333pt;}
.h10_c00193{height:57.866667pt;}
.h8_c00193{height:58.800000pt;}
.ha_c00193{height:59.733333pt;}
.h5_c00193{height:60.666667pt;}
.h7_c00193{height:61.600000pt;}
.h11_c00193{height:63.466667pt;}
.h12_c00193{height:65.333333pt;}
.h3_c00193{height:101.733333pt;}
.h1_c00193{height:554.000000pt;}
.h0_c00193{height:554.133333pt;}
.w1_c00193{width:340.666667pt;}
.w0_c00193{width:340.800000pt;}
.x0_c00193{left:0.000000pt;}
.x7d_c00193{left:41.236000pt;}
.x73_c00193{left:42.480000pt;}
.x6a_c00193{left:43.518667pt;}
.x5d_c00193{left:44.746667pt;}
.x4f_c00193{left:46.078667pt;}
.x38_c00193{left:47.397333pt;}
.x29_c00193{left:48.392000pt;}
.x9_c00193{left:49.440000pt;}
.x3_c00193{left:50.880000pt;}
.x81_c00193{left:59.281333pt;}
.x5e_c00193{left:60.881333pt;}
.x6d_c00193{left:61.920000pt;}
.x55_c00193{left:64.078667pt;}
.x47_c00193{left:65.376000pt;}
.x66_c00193{left:66.322667pt;}
.xa_c00193{left:68.400000pt;}
.x74_c00193{left:70.080000pt;}
.x39_c00193{left:72.642667pt;}
.x2a_c00193{left:77.193333pt;}
.x17_c00193{left:79.560000pt;}
.x3a_c00193{left:83.394667pt;}
.x56_c00193{left:84.478667pt;}
.x5f_c00193{left:87.232000pt;}
.x31_c00193{left:89.674667pt;}
.x23_c00193{left:92.804000pt;}
.x57_c00193{left:96.374667pt;}
.xb_c00193{left:98.400000pt;}
.x2b_c00193{left:99.460000pt;}
.x4_c00193{left:103.680000pt;}
.x3f_c00193{left:104.640000pt;}
.x1d_c00193{left:107.685333pt;}
.x32_c00193{left:109.070667pt;}
.x70_c00193{left:110.160000pt;}
.x2c_c00193{left:113.200000pt;}
.xc_c00193{left:115.200000pt;}
.x75_c00193{left:116.160000pt;}
.x12_c00193{left:117.120000pt;}
.x48_c00193{left:121.765333pt;}
.x6b_c00193{left:122.936000pt;}
.x1e_c00193{left:123.972000pt;}
.x24_c00193{left:125.397333pt;}
.x7b_c00193{left:127.201333pt;}
.x6e_c00193{left:128.640000pt;}
.x58_c00193{left:130.684000pt;}
.x40_c00193{left:132.000000pt;}
.x79_c00193{left:134.161333pt;}
.x7f_c00193{left:135.601333pt;}
.x42_c00193{left:137.396000pt;}
.x50_c00193{left:138.718667pt;}
.x13_c00193{left:141.600000pt;}
.x18_c00193{left:143.872000pt;}
.x2d_c00193{left:148.894667pt;}
.x25_c00193{left:156.126667pt;}
.x1f_c00193{left:157.829333pt;}
.x5_c00193{left:159.120000pt;}
.x49_c00193{left:161.841333pt;}
.x3b_c00193{left:163.844000pt;}
.x26_c00193{left:166.245333pt;}
.x7c_c00193{left:170.641333pt;}
.xd_c00193{left:172.560000pt;}
.x19_c00193{left:174.350667pt;}
.x2_c00193{left:176.400000pt;}
.x77_c00193{left:178.878667pt;}
.x33_c00193{left:180.877333pt;}
.x67_c00193{left:181.977333pt;}
.x27_c00193{left:182.993333pt;}
.x4a_c00193{left:185.578667pt;}
.x43_c00193{left:187.314667pt;}
.x60_c00193{left:188.509333pt;}
.x20_c00193{left:192.164000pt;}
.x3c_c00193{left:193.070667pt;}
.x1a_c00193{left:195.041333pt;}
.x59_c00193{left:196.682667pt;}
.x68_c00193{left:197.573333pt;}
.x6f_c00193{left:199.680000pt;}
.x2e_c00193{left:201.514667pt;}
.xe_c00193{left:203.280000pt;}
.x34_c00193{left:205.306667pt;}
.x44_c00193{left:206.282667pt;}
.x14_c00193{left:210.000000pt;}
.x1b_c00193{left:211.792000pt;}
.x51_c00193{left:213.598667pt;}
.x5a_c00193{left:218.042667pt;}
.x6_c00193{left:221.040000pt;}
.x69_c00193{left:223.084000pt;}
.x2f_c00193{left:224.254667pt;}
.x63_c00193{left:225.230667pt;}
.x76_c00193{left:227.040000pt;}
.x21_c00193{left:230.272000pt;}
.x78_c00193{left:231.180000pt;}
.x71_c00193{left:235.920000pt;}
.x15_c00193{left:237.360000pt;}
.x61_c00193{left:239.150667pt;}
.x4b_c00193{left:241.009333pt;}
.x7_c00193{left:242.160000pt;}
.x4d_c00193{left:246.478667pt;}
.x6c_c00193{left:247.752000pt;}
.x1c_c00193{left:249.480000pt;}
.x52_c00193{left:252.238667pt;}
.xf_c00193{left:255.120000pt;}
.x5b_c00193{left:256.446667pt;}
.x35_c00193{left:260.021333pt;}
.x41_c00193{left:262.320000pt;}
.x7e_c00193{left:266.202667pt;}
.x10_c00193{left:268.560000pt;}
.x80_c00193{left:269.521333pt;}
.x72_c00193{left:271.200000pt;}
.x22_c00193{left:275.645333pt;}
.x36_c00193{left:277.538667pt;}
.x45_c00193{left:278.753333pt;}
.x53_c00193{left:280.078667pt;}
.x82_c00193{left:281.041333pt;}
.x28_c00193{left:283.804000pt;}
.x3d_c00193{left:285.708000pt;}
.x7a_c00193{left:287.521333pt;}
.x11_c00193{left:289.200000pt;}
.x30_c00193{left:290.505333pt;}
.x16_c00193{left:293.760000pt;}
.x5c_c00193{left:295.580000pt;}
.x54_c00193{left:297.838667pt;}
.x64_c00193{left:299.634667pt;}
.x62_c00193{left:300.828000pt;}
.x4e_c00193{left:304.798667pt;}
.x4c_c00193{left:309.937333pt;}
.x46_c00193{left:324.358667pt;}
.x3e_c00193{left:328.624000pt;}
.x37_c00193{left:333.160000pt;}
.x8_c00193{left:334.560000pt;}
.x1_c00193{left:336.480000pt;}
.x65_c00193{left:339.094667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00194 {
    display:none;
  }
  .loading-indicator_c00194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00194 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00194 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00194" -> "#page-container .classname_c00194")
 */
.pf_c00194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00194 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00194 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00194 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00194 {overflow:visible;}
  }
}
.c_c00194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00194 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00194:after { /* webkit #35443 */
  content: '';
}
.t_c00194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00194 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00194 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00194 { /* info for Javascript */
  display:none;
}
.l_c00194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00194:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00194 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00194.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00194{transform:matrix(0.077505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077505,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);}
.m95_c00194{transform:matrix(0.124570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124570,0.000000,0.000000,0.250000,0,0);}
.m9e_c00194{transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.142555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142555,0.000000,0.000000,0.250000,0,0);}
.m6f_c00194{transform:matrix(0.150466,-0.002708,0.004499,0.249960,0,0);-ms-transform:matrix(0.150466,-0.002708,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150466,-0.002708,0.004499,0.249960,0,0);}
.m23_c00194{transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);}
.m6d_c00194{transform:matrix(0.153175,-0.002757,0.004499,0.249960,0,0);-ms-transform:matrix(0.153175,-0.002757,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153175,-0.002757,0.004499,0.249960,0,0);}
.mc8_c00194{transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);}
.md7_c00194{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.mb4_c00194{transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);}
.m83_c00194{transform:matrix(0.156570,-0.002818,0.004499,0.249960,0,0);-ms-transform:matrix(0.156570,-0.002818,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156570,-0.002818,0.004499,0.249960,0,0);}
.m32_c00194{transform:matrix(0.156720,-0.002821,0.004499,0.249960,0,0);-ms-transform:matrix(0.156720,-0.002821,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156720,-0.002821,0.004499,0.249960,0,0);}
.m4a_c00194{transform:matrix(0.156830,-0.002823,0.004499,0.249960,0,0);-ms-transform:matrix(0.156830,-0.002823,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156830,-0.002823,0.004499,0.249960,0,0);}
.mad_c00194{transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.157659,-0.002838,0.004499,0.249960,0,0);-ms-transform:matrix(0.157659,-0.002838,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157659,-0.002838,0.004499,0.249960,0,0);}
.m1a_c00194{transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);}
.md5_c00194{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mb3_c00194{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);}
.m72_c00194{transform:matrix(0.160689,-0.002892,0.004499,0.249960,0,0);-ms-transform:matrix(0.160689,-0.002892,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160689,-0.002892,0.004499,0.249960,0,0);}
.ma2_c00194{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m87_c00194{transform:matrix(0.160779,-0.002894,0.004499,0.249960,0,0);-ms-transform:matrix(0.160779,-0.002894,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160779,-0.002894,0.004499,0.249960,0,0);}
.m6e_c00194{transform:matrix(0.161689,-0.002910,0.004499,0.249960,0,0);-ms-transform:matrix(0.161689,-0.002910,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161689,-0.002910,0.004499,0.249960,0,0);}
.m8c_c00194{transform:matrix(0.161784,-0.002912,0.004499,0.249960,0,0);-ms-transform:matrix(0.161784,-0.002912,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161784,-0.002912,0.004499,0.249960,0,0);}
.mc7_c00194{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.mc4_c00194{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.mb8_c00194{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.165553,-0.002980,0.004499,0.249960,0,0);-ms-transform:matrix(0.165553,-0.002980,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165553,-0.002980,0.004499,0.249960,0,0);}
.mea_c00194{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mbe_c00194{transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);}
.ma5_c00194{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.mc9_c00194{transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);}
.ma4_c00194{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00194{transform:matrix(0.169033,-0.003043,0.004499,0.249960,0,0);-ms-transform:matrix(0.169033,-0.003043,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169033,-0.003043,0.004499,0.249960,0,0);}
.md4_c00194{transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(0.169353,-0.003048,0.004499,0.249960,0,0);-ms-transform:matrix(0.169353,-0.003048,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169353,-0.003048,0.004499,0.249960,0,0);}
.m22_c00194{transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);}
.mb9_c00194{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(0.170317,-0.003066,0.004499,0.249960,0,0);-ms-transform:matrix(0.170317,-0.003066,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170317,-0.003066,0.004499,0.249960,0,0);}
.m19_c00194{transform:matrix(0.170385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170385,0.000000,0.000000,0.250000,0,0);}
.m31_c00194{transform:matrix(0.171022,-0.003078,0.004499,0.249960,0,0);-ms-transform:matrix(0.171022,-0.003078,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171022,-0.003078,0.004499,0.249960,0,0);}
.m82_c00194{transform:matrix(0.171107,-0.003080,0.004499,0.249960,0,0);-ms-transform:matrix(0.171107,-0.003080,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171107,-0.003080,0.004499,0.249960,0,0);}
.m70_c00194{transform:matrix(0.171617,-0.003089,0.004499,0.249960,0,0);-ms-transform:matrix(0.171617,-0.003089,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171617,-0.003089,0.004499,0.249960,0,0);}
.ma7_c00194{transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);}
.mc1_c00194{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.174457,-0.003140,0.004499,0.249960,0,0);-ms-transform:matrix(0.174457,-0.003140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174457,-0.003140,0.004499,0.249960,0,0);}
.m5e_c00194{transform:matrix(0.174467,-0.003140,0.004499,0.249960,0,0);-ms-transform:matrix(0.174467,-0.003140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174467,-0.003140,0.004499,0.249960,0,0);}
.m8b_c00194{transform:matrix(0.175917,-0.003166,0.004499,0.249960,0,0);-ms-transform:matrix(0.175917,-0.003166,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175917,-0.003166,0.004499,0.249960,0,0);}
.mb7_c00194{transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.ma0_c00194{transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);}
.mdb_c00194{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.m96_c00194{transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);}
.m35_c00194{transform:matrix(0.177591,-0.003197,0.004499,0.249960,0,0);-ms-transform:matrix(0.177591,-0.003197,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177591,-0.003197,0.004499,0.249960,0,0);}
.m2c_c00194{transform:matrix(0.178026,-0.003204,0.004499,0.249960,0,0);-ms-transform:matrix(0.178026,-0.003204,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178026,-0.003204,0.004499,0.249960,0,0);}
.m63_c00194{transform:matrix(0.178056,-0.003205,0.004499,0.249960,0,0);-ms-transform:matrix(0.178056,-0.003205,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178056,-0.003205,0.004499,0.249960,0,0);}
.mb5_c00194{transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{transform:matrix(0.179066,-0.003223,0.004499,0.249960,0,0);-ms-transform:matrix(0.179066,-0.003223,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179066,-0.003223,0.004499,0.249960,0,0);}
.m20_c00194{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.ma8_c00194{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m66_c00194{transform:matrix(0.179756,-0.003236,0.004499,0.249960,0,0);-ms-transform:matrix(0.179756,-0.003236,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179756,-0.003236,0.004499,0.249960,0,0);}
.m4_c00194{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.180006,-0.003240,0.004499,0.249960,0,0);-ms-transform:matrix(0.180006,-0.003240,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180006,-0.003240,0.004499,0.249960,0,0);}
.m28_c00194{transform:matrix(0.180901,-0.003256,0.004499,0.249960,0,0);-ms-transform:matrix(0.180901,-0.003256,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180901,-0.003256,0.004499,0.249960,0,0);}
.m2_c00194{transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.md8_c00194{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.me6_c00194{transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);}
.m97_c00194{transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.183995,-0.003312,0.004499,0.249960,0,0);-ms-transform:matrix(0.183995,-0.003312,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183995,-0.003312,0.004499,0.249960,0,0);}
.mb0_c00194{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.ma9_c00194{transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.184950,-0.003329,0.004499,0.249960,0,0);-ms-transform:matrix(0.184950,-0.003329,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184950,-0.003329,0.004499,0.249960,0,0);}
.me7_c00194{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.185240,-0.003334,0.004499,0.249960,0,0);-ms-transform:matrix(0.185240,-0.003334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185240,-0.003334,0.004499,0.249960,0,0);}
.m88_c00194{transform:matrix(0.185385,-0.003337,0.004499,0.249960,0,0);-ms-transform:matrix(0.185385,-0.003337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185385,-0.003337,0.004499,0.249960,0,0);}
.m77_c00194{transform:matrix(0.185795,-0.003344,0.004499,0.249960,0,0);-ms-transform:matrix(0.185795,-0.003344,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185795,-0.003344,0.004499,0.249960,0,0);}
.mb_c00194{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.me9_c00194{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.md6_c00194{transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00194{transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);}
.mba_c00194{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mda_c00194{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00194{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.me8_c00194{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{transform:matrix(0.188190,-0.003387,0.004499,0.249960,0,0);-ms-transform:matrix(0.188190,-0.003387,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188190,-0.003387,0.004499,0.249960,0,0);}
.m9d_c00194{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m56_c00194{transform:matrix(0.188599,-0.003395,0.004499,0.249960,0,0);-ms-transform:matrix(0.188599,-0.003395,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188599,-0.003395,0.004499,0.249960,0,0);}
.md1_c00194{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.me1_c00194{transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);}
.mdc_c00194{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.189574,-0.003412,0.004499,0.249960,0,0);-ms-transform:matrix(0.189574,-0.003412,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189574,-0.003412,0.004499,0.249960,0,0);}
.md2_c00194{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);}
.m92_c00194{transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{transform:matrix(0.190284,-0.003425,0.004499,0.249960,0,0);-ms-transform:matrix(0.190284,-0.003425,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190284,-0.003425,0.004499,0.249960,0,0);}
.m3e_c00194{transform:matrix(0.190364,-0.003427,0.004499,0.249960,0,0);-ms-transform:matrix(0.190364,-0.003427,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190364,-0.003427,0.004499,0.249960,0,0);}
.md3_c00194{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.m89_c00194{transform:matrix(0.190989,-0.003438,0.004499,0.249960,0,0);-ms-transform:matrix(0.190989,-0.003438,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190989,-0.003438,0.004499,0.249960,0,0);}
.m54_c00194{transform:matrix(0.191199,-0.003442,0.004499,0.249960,0,0);-ms-transform:matrix(0.191199,-0.003442,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191199,-0.003442,0.004499,0.249960,0,0);}
.m86_c00194{transform:matrix(0.191349,-0.003444,0.004499,0.249960,0,0);-ms-transform:matrix(0.191349,-0.003444,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191349,-0.003444,0.004499,0.249960,0,0);}
.m9a_c00194{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m71_c00194{transform:matrix(0.191589,-0.003449,0.004499,0.249960,0,0);-ms-transform:matrix(0.191589,-0.003449,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191589,-0.003449,0.004499,0.249960,0,0);}
.m26_c00194{transform:matrix(0.191899,-0.003454,0.004499,0.249960,0,0);-ms-transform:matrix(0.191899,-0.003454,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191899,-0.003454,0.004499,0.249960,0,0);}
.m3a_c00194{transform:matrix(0.192014,-0.003456,0.004499,0.249960,0,0);-ms-transform:matrix(0.192014,-0.003456,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192014,-0.003456,0.004499,0.249960,0,0);}
.m9b_c00194{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.mec_c00194{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m81_c00194{transform:matrix(0.193609,-0.003485,0.004499,0.249960,0,0);-ms-transform:matrix(0.193609,-0.003485,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193609,-0.003485,0.004499,0.249960,0,0);}
.me_c00194{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.194623,-0.003503,0.004499,0.249960,0,0);-ms-transform:matrix(0.194623,-0.003503,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194623,-0.003503,0.004499,0.249960,0,0);}
.mc5_c00194{transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);}
.m60_c00194{transform:matrix(0.196448,-0.003536,0.004499,0.249960,0,0);-ms-transform:matrix(0.196448,-0.003536,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196448,-0.003536,0.004499,0.249960,0,0);}
.m67_c00194{transform:matrix(0.196718,-0.003541,0.004499,0.249960,0,0);-ms-transform:matrix(0.196718,-0.003541,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196718,-0.003541,0.004499,0.249960,0,0);}
.m12_c00194{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.mb6_c00194{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.198213,-0.003568,0.004499,0.249960,0,0);-ms-transform:matrix(0.198213,-0.003568,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198213,-0.003568,0.004499,0.249960,0,0);}
.ma1_c00194{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00194{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.mca_c00194{transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.198728,-0.003577,0.004499,0.249960,0,0);-ms-transform:matrix(0.198728,-0.003577,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198728,-0.003577,0.004499,0.249960,0,0);}
.m3c_c00194{transform:matrix(0.200513,-0.003609,0.004499,0.249960,0,0);-ms-transform:matrix(0.200513,-0.003609,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200513,-0.003609,0.004499,0.249960,0,0);}
.mc6_c00194{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00194{transform:matrix(0.200867,-0.003616,0.004499,0.249960,0,0);-ms-transform:matrix(0.200867,-0.003616,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200867,-0.003616,0.004499,0.249960,0,0);}
.mc0_c00194{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mae_c00194{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.me0_c00194{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.202287,-0.003641,0.004499,0.249960,0,0);-ms-transform:matrix(0.202287,-0.003641,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202287,-0.003641,0.004499,0.249960,0,0);}
.m8f_c00194{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m9f_c00194{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mc2_c00194{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.mee_c00194{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m94_c00194{transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);}
.mdd_c00194{transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m74_c00194{transform:matrix(0.205772,-0.003704,0.004499,0.249960,0,0);-ms-transform:matrix(0.205772,-0.003704,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205772,-0.003704,0.004499,0.249960,0,0);}
.mc3_c00194{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.206172,-0.003711,0.004499,0.249960,0,0);-ms-transform:matrix(0.206172,-0.003711,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206172,-0.003711,0.004499,0.249960,0,0);}
.m3_c00194{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{transform:matrix(0.206567,-0.003718,0.004499,0.249960,0,0);-ms-transform:matrix(0.206567,-0.003718,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206567,-0.003718,0.004499,0.249960,0,0);}
.m98_c00194{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.m73_c00194{transform:matrix(0.206906,-0.003724,0.004499,0.249960,0,0);-ms-transform:matrix(0.206906,-0.003724,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206906,-0.003724,0.004499,0.249960,0,0);}
.m8_c00194{transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.207061,-0.003727,0.004499,0.249960,0,0);-ms-transform:matrix(0.207061,-0.003727,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207061,-0.003727,0.004499,0.249960,0,0);}
.m1d_c00194{transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.m21_c00194{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.208896,-0.003760,0.004499,0.249960,0,0);-ms-transform:matrix(0.208896,-0.003760,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208896,-0.003760,0.004499,0.249960,0,0);}
.ma_c00194{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);-ms-transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209341,-0.003768,0.004499,0.249960,0,0);}
.mbb_c00194{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.209926,-0.003779,0.004499,0.249960,0,0);-ms-transform:matrix(0.209926,-0.003779,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209926,-0.003779,0.004499,0.249960,0,0);}
.m53_c00194{transform:matrix(0.210046,-0.003781,0.004499,0.249960,0,0);-ms-transform:matrix(0.210046,-0.003781,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210046,-0.003781,0.004499,0.249960,0,0);}
.m93_c00194{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.ma6_c00194{transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.210961,-0.003797,0.004499,0.249960,0,0);-ms-transform:matrix(0.210961,-0.003797,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210961,-0.003797,0.004499,0.249960,0,0);}
.m29_c00194{transform:matrix(0.211031,-0.003799,0.004499,0.249960,0,0);-ms-transform:matrix(0.211031,-0.003799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211031,-0.003799,0.004499,0.249960,0,0);}
.m41_c00194{transform:matrix(0.211076,-0.003799,0.004499,0.249960,0,0);-ms-transform:matrix(0.211076,-0.003799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211076,-0.003799,0.004499,0.249960,0,0);}
.m4c_c00194{transform:matrix(0.211371,-0.003805,0.004499,0.249960,0,0);-ms-transform:matrix(0.211371,-0.003805,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211371,-0.003805,0.004499,0.249960,0,0);}
.m9c_c00194{transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);}
.m75_c00194{transform:matrix(0.212266,-0.003821,0.004499,0.249960,0,0);-ms-transform:matrix(0.212266,-0.003821,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212266,-0.003821,0.004499,0.249960,0,0);}
.med_c00194{transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);}
.mcc_c00194{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.me3_c00194{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.213600,-0.003845,0.004499,0.249960,0,0);-ms-transform:matrix(0.213600,-0.003845,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213600,-0.003845,0.004499,0.249960,0,0);}
.mf_c00194{transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);}
.m91_c00194{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);-ms-transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);}
.m5f_c00194{transform:matrix(0.215490,-0.003879,0.004499,0.249960,0,0);-ms-transform:matrix(0.215490,-0.003879,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215490,-0.003879,0.004499,0.249960,0,0);}
.md_c00194{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m76_c00194{transform:matrix(0.215975,-0.003888,0.004499,0.249960,0,0);-ms-transform:matrix(0.215975,-0.003888,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215975,-0.003888,0.004499,0.249960,0,0);}
.m46_c00194{transform:matrix(0.216235,-0.003892,0.004499,0.249960,0,0);-ms-transform:matrix(0.216235,-0.003892,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216235,-0.003892,0.004499,0.249960,0,0);}
.m6a_c00194{transform:matrix(0.216790,-0.003902,0.004499,0.249960,0,0);-ms-transform:matrix(0.216790,-0.003902,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216790,-0.003902,0.004499,0.249960,0,0);}
.md0_c00194{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.maf_c00194{transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);}
.maa_c00194{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{transform:matrix(0.219115,-0.003944,0.004499,0.249960,0,0);-ms-transform:matrix(0.219115,-0.003944,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219115,-0.003944,0.004499,0.249960,0,0);}
.m49_c00194{transform:matrix(0.219689,-0.003954,0.004499,0.249960,0,0);-ms-transform:matrix(0.219689,-0.003954,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219689,-0.003954,0.004499,0.249960,0,0);}
.m68_c00194{transform:matrix(0.220084,-0.003962,0.004499,0.249960,0,0);-ms-transform:matrix(0.220084,-0.003962,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220084,-0.003962,0.004499,0.249960,0,0);}
.m15_c00194{transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);}
.meb_c00194{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.220374,-0.003967,0.004499,0.249960,0,0);-ms-transform:matrix(0.220374,-0.003967,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220374,-0.003967,0.004499,0.249960,0,0);}
.mab_c00194{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.221319,-0.003984,0.004499,0.249960,0,0);-ms-transform:matrix(0.221319,-0.003984,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221319,-0.003984,0.004499,0.249960,0,0);}
.mcd_c00194{transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);-ms-transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);}
.m55_c00194{transform:matrix(0.222179,-0.003999,0.004499,0.249960,0,0);-ms-transform:matrix(0.222179,-0.003999,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222179,-0.003999,0.004499,0.249960,0,0);}
.m42_c00194{transform:matrix(0.222954,-0.004013,0.004499,0.249960,0,0);-ms-transform:matrix(0.222954,-0.004013,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222954,-0.004013,0.004499,0.249960,0,0);}
.mb2_c00194{transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223045,0.000000,0.000000,0.250000,0,0);}
.md9_c00194{transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);-ms-transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);}
.m3d_c00194{transform:matrix(0.225458,-0.004058,0.004499,0.249960,0,0);-ms-transform:matrix(0.225458,-0.004058,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225458,-0.004058,0.004499,0.249960,0,0);}
.m99_c00194{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.mbd_c00194{transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);}
.m69_c00194{transform:matrix(0.227683,-0.004098,0.004499,0.249960,0,0);-ms-transform:matrix(0.227683,-0.004098,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227683,-0.004098,0.004499,0.249960,0,0);}
.m9_c00194{transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.228483,-0.004113,0.004499,0.249960,0,0);-ms-transform:matrix(0.228483,-0.004113,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228483,-0.004113,0.004499,0.249960,0,0);}
.m61_c00194{transform:matrix(0.228618,-0.004115,0.004499,0.249960,0,0);-ms-transform:matrix(0.228618,-0.004115,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228618,-0.004115,0.004499,0.249960,0,0);}
.mcf_c00194{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.me5_c00194{transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);}
.mac_c00194{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m80_c00194{transform:matrix(0.229523,-0.004131,0.004499,0.249960,0,0);-ms-transform:matrix(0.229523,-0.004131,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229523,-0.004131,0.004499,0.249960,0,0);}
.m50_c00194{transform:matrix(0.229833,-0.004137,0.004499,0.249960,0,0);-ms-transform:matrix(0.229833,-0.004137,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229833,-0.004137,0.004499,0.249960,0,0);}
.m90_c00194{transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);}
.m38_c00194{transform:matrix(0.230523,-0.004149,0.004499,0.249960,0,0);-ms-transform:matrix(0.230523,-0.004149,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230523,-0.004149,0.004499,0.249960,0,0);}
.m8e_c00194{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.232247,-0.004180,0.004499,0.249960,0,0);-ms-transform:matrix(0.232247,-0.004180,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232247,-0.004180,0.004499,0.249960,0,0);}
.m37_c00194{transform:matrix(0.232772,-0.004190,0.004499,0.249960,0,0);-ms-transform:matrix(0.232772,-0.004190,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232772,-0.004190,0.004499,0.249960,0,0);}
.mde_c00194{transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);}
.mce_c00194{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m7d_c00194{transform:matrix(0.233807,-0.004209,0.004499,0.249960,0,0);-ms-transform:matrix(0.233807,-0.004209,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233807,-0.004209,0.004499,0.249960,0,0);}
.me4_c00194{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mbc_c00194{transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);}
.m79_c00194{transform:matrix(0.237462,-0.004274,0.004499,0.249960,0,0);-ms-transform:matrix(0.237462,-0.004274,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237462,-0.004274,0.004499,0.249960,0,0);}
.me2_c00194{transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.238246,-0.004288,0.004499,0.249960,0,0);-ms-transform:matrix(0.238246,-0.004288,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238246,-0.004288,0.004499,0.249960,0,0);}
.m64_c00194{transform:matrix(0.238416,-0.004291,0.004499,0.249960,0,0);-ms-transform:matrix(0.238416,-0.004291,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238416,-0.004291,0.004499,0.249960,0,0);}
.m7b_c00194{transform:matrix(0.239751,-0.004316,0.004499,0.249960,0,0);-ms-transform:matrix(0.239751,-0.004316,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239751,-0.004316,0.004499,0.249960,0,0);}
.m58_c00194{transform:matrix(0.240171,-0.004323,0.004499,0.249960,0,0);-ms-transform:matrix(0.240171,-0.004323,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240171,-0.004323,0.004499,0.249960,0,0);}
.m85_c00194{transform:matrix(0.242666,-0.004368,0.004499,0.249960,0,0);-ms-transform:matrix(0.242666,-0.004368,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242666,-0.004368,0.004499,0.249960,0,0);}
.m7a_c00194{transform:matrix(0.243651,-0.004386,0.004499,0.249960,0,0);-ms-transform:matrix(0.243651,-0.004386,0.004499,0.249960,0,0);-webkit-transform:matrix(0.243651,-0.004386,0.004499,0.249960,0,0);}
.m10_c00194{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.mdf_c00194{transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.247710,-0.004459,0.004499,0.249960,0,0);-ms-transform:matrix(0.247710,-0.004459,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247710,-0.004459,0.004499,0.249960,0,0);}
.m7e_c00194{transform:matrix(0.247750,-0.004459,0.004499,0.249960,0,0);-ms-transform:matrix(0.247750,-0.004459,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247750,-0.004459,0.004499,0.249960,0,0);}
.m78_c00194{transform:matrix(0.253684,-0.004566,0.004499,0.249960,0,0);-ms-transform:matrix(0.253684,-0.004566,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253684,-0.004566,0.004499,0.249960,0,0);}
.mcb_c00194{transform:matrix(0.263860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263860,0.000000,0.000000,0.250000,0,0);}
.m65_c00194{transform:matrix(0.292503,-0.005265,0.004499,0.249960,0,0);-ms-transform:matrix(0.292503,-0.005265,0.004499,0.249960,0,0);-webkit-transform:matrix(0.292503,-0.005265,0.004499,0.249960,0,0);}
.m8d_c00194{transform:matrix(0.377725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377725,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.506450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506450,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.514437,-0.009260,0.004499,0.249960,0,0);-ms-transform:matrix(0.514437,-0.009260,0.004499,0.249960,0,0);-webkit-transform:matrix(0.514437,-0.009260,0.004499,0.249960,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:0.000000px;}
.fc0_c00194{color:transparent;}
.fs2_c00194{font-size:57.750000px;}
.fsc_c00194{font-size:57.759355px;}
.fs3_c00194{font-size:58.800000px;}
.fs8_c00194{font-size:58.809525px;}
.fse_c00194{font-size:59.850000px;}
.fs6_c00194{font-size:59.859695px;}
.fs1_c00194{font-size:60.900000px;}
.fs9_c00194{font-size:60.909865px;}
.fsd_c00194{font-size:61.950000px;}
.fsa_c00194{font-size:63.010205px;}
.fs10_c00194{font-size:64.050000px;}
.fs11_c00194{font-size:65.100000px;}
.fs4_c00194{font-size:66.150000px;}
.fs7_c00194{font-size:66.160715px;}
.fs12_c00194{font-size:67.200000px;}
.fsb_c00194{font-size:67.210886px;}
.fsf_c00194{font-size:68.250000px;}
.fs5_c00194{font-size:69.300000px;}
.fs0_c00194{font-size:137.550000px;}
.y0_c00194{bottom:0.000000px;}
.ya6_c00194{bottom:40.293000px;}
.ya5_c00194{bottom:56.797500px;}
.ya4_c00194{bottom:74.238000px;}
.ya3_c00194{bottom:92.944500px;}
.ya2_c00194{bottom:109.737000px;}
.ya1_c00194{bottom:126.477000px;}
.y9a_c00194{bottom:141.210000px;}
.y9b_c00194{bottom:141.892500px;}
.y9c_c00194{bottom:142.677000px;}
.y9d_c00194{bottom:142.837500px;}
.y9e_c00194{bottom:143.313000px;}
.y9f_c00194{bottom:143.539500px;}
.ya0_c00194{bottom:143.800500px;}
.y99_c00194{bottom:159.157500px;}
.y98_c00194{bottom:176.881500px;}
.y91_c00194{bottom:190.351500px;}
.y92_c00194{bottom:190.869000px;}
.y93_c00194{bottom:191.088000px;}
.y94_c00194{bottom:191.409000px;}
.y95_c00194{bottom:192.150000px;}
.y96_c00194{bottom:192.306000px;}
.y97_c00194{bottom:192.931500px;}
.y90_c00194{bottom:210.007500px;}
.y8f_c00194{bottom:228.031500px;}
.y8e_c00194{bottom:244.059000px;}
.y8d_c00194{bottom:262.125987px;}
.y8c_c00194{bottom:262.126281px;}
.y8b_c00194{bottom:262.126677px;}
.y8a_c00194{bottom:262.126905px;}
.y89_c00194{bottom:279.408045px;}
.y88_c00194{bottom:279.408519px;}
.y84_c00194{bottom:279.408771px;}
.y81_c00194{bottom:279.408981px;}
.y87_c00194{bottom:279.409053px;}
.y85_c00194{bottom:279.409056px;}
.y83_c00194{bottom:279.409425px;}
.y82_c00194{bottom:279.409440px;}
.y86_c00194{bottom:279.409734px;}
.y7a_c00194{bottom:295.352487px;}
.y7b_c00194{bottom:295.783956px;}
.y7c_c00194{bottom:296.524578px;}
.y7d_c00194{bottom:297.686157px;}
.y7e_c00194{bottom:297.886893px;}
.y7f_c00194{bottom:298.763016px;}
.y80_c00194{bottom:298.946154px;}
.y74_c00194{bottom:312.093627px;}
.y75_c00194{bottom:313.175691px;}
.y76_c00194{bottom:313.334763px;}
.y77_c00194{bottom:314.154789px;}
.y78_c00194{bottom:314.450184px;}
.y79_c00194{bottom:315.280128px;}
.y6c_c00194{bottom:328.298769px;}
.y6d_c00194{bottom:329.524578px;}
.y6e_c00194{bottom:330.005280px;}
.y6f_c00194{bottom:330.591579px;}
.y70_c00194{bottom:330.989685px;}
.y71_c00194{bottom:331.526148px;}
.y72_c00194{bottom:332.346333px;}
.y73_c00194{bottom:332.869797px;}
.y64_c00194{bottom:344.501778px;}
.y65_c00194{bottom:345.328884px;}
.y66_c00194{bottom:346.586751px;}
.y67_c00194{bottom:346.992345px;}
.y68_c00194{bottom:347.392620px;}
.y69_c00194{bottom:348.384321px;}
.y6a_c00194{bottom:348.715671px;}
.y6b_c00194{bottom:349.380099px;}
.y5e_c00194{bottom:361.245813px;}
.y5f_c00194{bottom:362.461119px;}
.y60_c00194{bottom:362.745885px;}
.y61_c00194{bottom:363.549939px;}
.y62_c00194{bottom:363.894384px;}
.y63_c00194{bottom:365.982603px;}
.y56_c00194{bottom:378.524463px;}
.y57_c00194{bottom:378.993198px;}
.y58_c00194{bottom:379.412469px;}
.y59_c00194{bottom:379.723812px;}
.y5a_c00194{bottom:380.642562px;}
.y5b_c00194{bottom:380.911230px;}
.y5c_c00194{bottom:381.569613px;}
.y5d_c00194{bottom:381.861360px;}
.y4e_c00194{bottom:396.348168px;}
.y4f_c00194{bottom:396.649770px;}
.y50_c00194{bottom:397.430166px;}
.y51_c00194{bottom:397.878507px;}
.y52_c00194{bottom:398.639553px;}
.y53_c00194{bottom:398.830374px;}
.y54_c00194{bottom:399.147789px;}
.y55_c00194{bottom:399.737079px;}
.y46_c00194{bottom:412.012158px;}
.y47_c00194{bottom:413.153124px;}
.y48_c00194{bottom:413.644995px;}
.y49_c00194{bottom:414.150351px;}
.y4a_c00194{bottom:415.018836px;}
.y4b_c00194{bottom:415.862199px;}
.y4c_c00194{bottom:416.176353px;}
.y4d_c00194{bottom:416.892567px;}
.y3e_c00194{bottom:428.755566px;}
.y3f_c00194{bottom:429.158433px;}
.y40_c00194{bottom:429.644433px;}
.y41_c00194{bottom:430.585977px;}
.y42_c00194{bottom:430.957281px;}
.y43_c00194{bottom:432.078348px;}
.y44_c00194{bottom:432.647400px;}
.y45_c00194{bottom:433.912539px;}
.y35_c00194{bottom:445.767552px;}
.y36_c00194{bottom:446.389281px;}
.y37_c00194{bottom:446.690898px;}
.y38_c00194{bottom:447.909165px;}
.y39_c00194{bottom:448.152570px;}
.y3a_c00194{bottom:448.474950px;}
.y3b_c00194{bottom:449.573472px;}
.y3c_c00194{bottom:449.950905px;}
.y3d_c00194{bottom:450.506862px;}
.y2f_c00194{bottom:463.054971px;}
.y30_c00194{bottom:464.339253px;}
.y31_c00194{bottom:465.810186px;}
.y32_c00194{bottom:466.316247px;}
.y33_c00194{bottom:466.861701px;}
.y34_c00194{bottom:467.785290px;}
.y26_c00194{bottom:480.063000px;}
.y27_c00194{bottom:480.587961px;}
.y28_c00194{bottom:480.879858px;}
.y29_c00194{bottom:481.361187px;}
.y2a_c00194{bottom:481.794537px;}
.y2b_c00194{bottom:483.033648px;}
.y2c_c00194{bottom:483.811383px;}
.y2d_c00194{bottom:484.112838px;}
.y2e_c00194{bottom:485.075145px;}
.y1f_c00194{bottom:497.070000px;}
.y20_c00194{bottom:497.872500px;}
.y21_c00194{bottom:498.436500px;}
.y22_c00194{bottom:500.046000px;}
.y23_c00194{bottom:501.075000px;}
.y24_c00194{bottom:501.639000px;}
.y25_c00194{bottom:502.933500px;}
.y17_c00194{bottom:514.081500px;}
.y18_c00194{bottom:514.471500px;}
.y19_c00194{bottom:515.079000px;}
.y1a_c00194{bottom:516.120000px;}
.y1b_c00194{bottom:516.771000px;}
.y1c_c00194{bottom:517.374000px;}
.y1d_c00194{bottom:517.857000px;}
.y1e_c00194{bottom:519.691500px;}
.y10_c00194{bottom:531.634500px;}
.y11_c00194{bottom:532.254000px;}
.y12_c00194{bottom:532.686000px;}
.y13_c00194{bottom:533.707500px;}
.y14_c00194{bottom:535.131000px;}
.y15_c00194{bottom:535.482000px;}
.y16_c00194{bottom:536.434500px;}
.y9_c00194{bottom:547.564500px;}
.ya_c00194{bottom:548.739000px;}
.yb_c00194{bottom:549.969000px;}
.yc_c00194{bottom:550.611000px;}
.yd_c00194{bottom:552.315000px;}
.ye_c00194{bottom:553.255500px;}
.yf_c00194{bottom:553.755000px;}
.y2_c00194{bottom:566.733000px;}
.y3_c00194{bottom:567.553500px;}
.y4_c00194{bottom:568.419000px;}
.y5_c00194{bottom:569.002500px;}
.y6_c00194{bottom:569.995500px;}
.y7_c00194{bottom:570.417000px;}
.y8_c00194{bottom:571.611000px;}
.y1_c00194{bottom:580.528500px;}
.h4_c00194{height:57.750000px;}
.he_c00194{height:57.759355px;}
.h5_c00194{height:58.800000px;}
.ha_c00194{height:58.809525px;}
.h10_c00194{height:59.850000px;}
.h8_c00194{height:59.859695px;}
.h3_c00194{height:60.900000px;}
.hb_c00194{height:60.909865px;}
.hf_c00194{height:61.950000px;}
.hc_c00194{height:63.010205px;}
.h12_c00194{height:64.050000px;}
.h13_c00194{height:65.100000px;}
.h6_c00194{height:66.150000px;}
.h9_c00194{height:66.160715px;}
.h14_c00194{height:67.200000px;}
.hd_c00194{height:67.210886px;}
.h11_c00194{height:68.250000px;}
.h7_c00194{height:69.300000px;}
.h2_c00194{height:137.550000px;}
.h1_c00194{height:623.250000px;}
.h0_c00194{height:623.400000px;}
.w1_c00194{width:383.250000px;}
.w0_c00194{width:383.400000px;}
.x0_c00194{left:0.000000px;}
.x3_c00194{left:32.296500px;}
.xf_c00194{left:33.790500px;}
.x4a_c00194{left:35.533290px;}
.x59_c00194{left:36.717441px;}
.x71_c00194{left:37.800000px;}
.x66_c00194{left:38.805000px;}
.x75_c00194{left:40.230000px;}
.x21_c00194{left:41.775000px;}
.x5c_c00194{left:43.740000px;}
.x15_c00194{left:52.902000px;}
.x69_c00194{left:54.810000px;}
.x31_c00194{left:56.914389px;}
.x39_c00194{left:59.796789px;}
.x10_c00194{left:63.318000px;}
.x6b_c00194{left:65.070000px;}
.x3f_c00194{left:67.863117px;}
.x4_c00194{left:69.615000px;}
.x22_c00194{left:70.939500px;}
.x1c_c00194{left:73.579500px;}
.x4b_c00194{left:76.898805px;}
.xa_c00194{left:79.888500px;}
.x16_c00194{left:81.813000px;}
.x11_c00194{left:83.880000px;}
.x2e_c00194{left:85.550682px;}
.x23_c00194{left:87.156000px;}
.x72_c00194{left:93.420000px;}
.x76_c00194{left:95.580000px;}
.x40_c00194{left:97.824777px;}
.x5f_c00194{left:99.360000px;}
.x1d_c00194{left:101.772000px;}
.x2a_c00194{left:105.287007px;}
.x46_c00194{left:106.307550px;}
.x5_c00194{left:108.951000px;}
.x4e_c00194{left:112.177617px;}
.x24_c00194{left:113.896500px;}
.x63_c00194{left:116.370000px;}
.x60_c00194{left:118.260000px;}
.x41_c00194{left:120.039870px;}
.x74_c00194{left:121.770000px;}
.x47_c00194{left:123.044847px;}
.x3a_c00194{left:124.825809px;}
.x55_c00194{left:126.275991px;}
.xb_c00194{left:129.099000px;}
.x34_c00194{left:130.276302px;}
.x17_c00194{left:131.415000px;}
.x12_c00194{left:132.555000px;}
.x5d_c00194{left:133.650000px;}
.x6_c00194{left:135.445500px;}
.x25_c00194{left:137.971500px;}
.x4c_c00194{left:139.778037px;}
.x4f_c00194{left:142.217697px;}
.x5a_c00194{left:143.384001px;}
.x61_c00194{left:147.690000px;}
.x2f_c00194{left:153.232182px;}
.xc_c00194{left:154.773000px;}
.x7d_c00194{left:155.790000px;}
.x32_c00194{left:156.850389px;}
.x6c_c00194{left:158.760000px;}
.x35_c00194{left:160.018842px;}
.x5b_c00194{left:161.206779px;}
.x18_c00194{left:162.429000px;}
.x1_c00194{left:166.590000px;}
.x48_c00194{left:170.298684px;}
.x6f_c00194{left:172.107000px;}
.x79_c00194{left:174.150000px;}
.x50_c00194{left:178.874520px;}
.x7_c00194{left:180.594000px;}
.x1e_c00194{left:182.232000px;}
.x77_c00194{left:183.330000px;}
.x30_c00194{left:184.664682px;}
.x42_c00194{left:185.669595px;}
.x2b_c00194{left:187.005507px;}
.x67_c00194{left:188.818500px;}
.x19_c00194{left:191.155500px;}
.x64_c00194{left:195.480000px;}
.x8_c00194{left:199.786500px;}
.x68_c00194{left:201.847500px;}
.x51_c00194{left:203.742411px;}
.x43_c00194{left:204.846972px;}
.x26_c00194{left:206.811000px;}
.x36_c00194{left:211.102260px;}
.x1a_c00194{left:214.123500px;}
.x56_c00194{left:215.649537px;}
.x13_c00194{left:217.074000px;}
.x33_c00194{left:219.131889px;}
.x7e_c00194{left:221.400000px;}
.xd_c00194{left:222.946500px;}
.x3b_c00194{left:225.608190px;}
.x4d_c00194{left:229.639797px;}
.x54_c00194{left:231.854631px;}
.x1f_c00194{left:233.700000px;}
.x52_c00194{left:237.297126px;}
.x7a_c00194{left:239.220000px;}
.x3c_c00194{left:241.544418px;}
.x6d_c00194{left:244.080000px;}
.x2c_c00194{left:245.423007px;}
.x27_c00194{left:250.018500px;}
.x44_c00194{left:251.843847px;}
.x9_c00194{left:254.077500px;}
.x5e_c00194{left:258.930000px;}
.xe_c00194{left:260.587500px;}
.x14_c00194{left:262.459500px;}
.x28_c00194{left:266.766000px;}
.x3d_c00194{left:268.014780px;}
.x7b_c00194{left:271.080000px;}
.x45_c00194{left:272.636832px;}
.x70_c00194{left:274.167000px;}
.x37_c00194{left:279.159975px;}
.x2_c00194{left:281.340000px;}
.x7f_c00194{left:285.930000px;}
.x53_c00194{left:288.531462px;}
.x62_c00194{left:291.330000px;}
.x58_c00194{left:292.719399px;}
.x2d_c00194{left:296.733507px;}
.x57_c00194{left:298.482489px;}
.x1b_c00194{left:301.485000px;}
.x78_c00194{left:303.210000px;}
.x6e_c00194{left:308.880000px;}
.x73_c00194{left:312.120000px;}
.x49_c00194{left:313.449276px;}
.x3e_c00194{left:317.175099px;}
.x65_c00194{left:318.600000px;}
.x29_c00194{left:320.227500px;}
.x38_c00194{left:321.283731px;}
.x6a_c00194{left:323.190000px;}
.x7c_c00194{left:324.810000px;}
.x20_c00194{left:326.575500px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.fs2_c00194{font-size:51.333333pt;}
.fsc_c00194{font-size:51.341649pt;}
.fs3_c00194{font-size:52.266667pt;}
.fs8_c00194{font-size:52.275133pt;}
.fse_c00194{font-size:53.200000pt;}
.fs6_c00194{font-size:53.208618pt;}
.fs1_c00194{font-size:54.133333pt;}
.fs9_c00194{font-size:54.142102pt;}
.fsd_c00194{font-size:55.066667pt;}
.fsa_c00194{font-size:56.009071pt;}
.fs10_c00194{font-size:56.933333pt;}
.fs11_c00194{font-size:57.866667pt;}
.fs4_c00194{font-size:58.800000pt;}
.fs7_c00194{font-size:58.809525pt;}
.fs12_c00194{font-size:59.733333pt;}
.fsb_c00194{font-size:59.743009pt;}
.fsf_c00194{font-size:60.666667pt;}
.fs5_c00194{font-size:61.600000pt;}
.fs0_c00194{font-size:122.266667pt;}
.y0_c00194{bottom:0.000000pt;}
.ya6_c00194{bottom:35.816000pt;}
.ya5_c00194{bottom:50.486667pt;}
.ya4_c00194{bottom:65.989333pt;}
.ya3_c00194{bottom:82.617333pt;}
.ya2_c00194{bottom:97.544000pt;}
.ya1_c00194{bottom:112.424000pt;}
.y9a_c00194{bottom:125.520000pt;}
.y9b_c00194{bottom:126.126667pt;}
.y9c_c00194{bottom:126.824000pt;}
.y9d_c00194{bottom:126.966667pt;}
.y9e_c00194{bottom:127.389333pt;}
.y9f_c00194{bottom:127.590667pt;}
.ya0_c00194{bottom:127.822667pt;}
.y99_c00194{bottom:141.473333pt;}
.y98_c00194{bottom:157.228000pt;}
.y91_c00194{bottom:169.201333pt;}
.y92_c00194{bottom:169.661333pt;}
.y93_c00194{bottom:169.856000pt;}
.y94_c00194{bottom:170.141333pt;}
.y95_c00194{bottom:170.800000pt;}
.y96_c00194{bottom:170.938667pt;}
.y97_c00194{bottom:171.494667pt;}
.y90_c00194{bottom:186.673333pt;}
.y8f_c00194{bottom:202.694667pt;}
.y8e_c00194{bottom:216.941333pt;}
.y8d_c00194{bottom:233.000877pt;}
.y8c_c00194{bottom:233.001139pt;}
.y8b_c00194{bottom:233.001491pt;}
.y8a_c00194{bottom:233.001693pt;}
.y89_c00194{bottom:248.362707pt;}
.y88_c00194{bottom:248.363128pt;}
.y84_c00194{bottom:248.363352pt;}
.y81_c00194{bottom:248.363539pt;}
.y87_c00194{bottom:248.363603pt;}
.y85_c00194{bottom:248.363605pt;}
.y83_c00194{bottom:248.363933pt;}
.y82_c00194{bottom:248.363947pt;}
.y86_c00194{bottom:248.364208pt;}
.y7a_c00194{bottom:262.535544pt;}
.y7b_c00194{bottom:262.919072pt;}
.y7c_c00194{bottom:263.577403pt;}
.y7d_c00194{bottom:264.609917pt;}
.y7e_c00194{bottom:264.788349pt;}
.y7f_c00194{bottom:265.567125pt;}
.y80_c00194{bottom:265.729915pt;}
.y74_c00194{bottom:277.416557pt;}
.y75_c00194{bottom:278.378392pt;}
.y76_c00194{bottom:278.519789pt;}
.y77_c00194{bottom:279.248701pt;}
.y78_c00194{bottom:279.511275pt;}
.y79_c00194{bottom:280.249003pt;}
.y6c_c00194{bottom:291.821128pt;}
.y6d_c00194{bottom:292.910736pt;}
.y6e_c00194{bottom:293.338027pt;}
.y6f_c00194{bottom:293.859181pt;}
.y70_c00194{bottom:294.213053pt;}
.y71_c00194{bottom:294.689909pt;}
.y72_c00194{bottom:295.418963pt;}
.y73_c00194{bottom:295.884264pt;}
.y64_c00194{bottom:306.223803pt;}
.y65_c00194{bottom:306.959008pt;}
.y66_c00194{bottom:308.077112pt;}
.y67_c00194{bottom:308.437640pt;}
.y68_c00194{bottom:308.793440pt;}
.y69_c00194{bottom:309.674952pt;}
.y6a_c00194{bottom:309.969485pt;}
.y6b_c00194{bottom:310.560088pt;}
.y5e_c00194{bottom:321.107389pt;}
.y5f_c00194{bottom:322.187661pt;}
.y60_c00194{bottom:322.440787pt;}
.y61_c00194{bottom:323.155501pt;}
.y62_c00194{bottom:323.461675pt;}
.y63_c00194{bottom:325.317869pt;}
.y56_c00194{bottom:336.466189pt;}
.y57_c00194{bottom:336.882843pt;}
.y58_c00194{bottom:337.255528pt;}
.y59_c00194{bottom:337.532277pt;}
.y5a_c00194{bottom:338.348944pt;}
.y5b_c00194{bottom:338.587760pt;}
.y5c_c00194{bottom:339.172989pt;}
.y5d_c00194{bottom:339.432320pt;}
.y4e_c00194{bottom:352.309483pt;}
.y4f_c00194{bottom:352.577573pt;}
.y50_c00194{bottom:353.271259pt;}
.y51_c00194{bottom:353.669784pt;}
.y52_c00194{bottom:354.346269pt;}
.y53_c00194{bottom:354.515888pt;}
.y54_c00194{bottom:354.798035pt;}
.y55_c00194{bottom:355.321848pt;}
.y46_c00194{bottom:366.233029pt;}
.y47_c00194{bottom:367.247221pt;}
.y48_c00194{bottom:367.684440pt;}
.y49_c00194{bottom:368.133645pt;}
.y4a_c00194{bottom:368.905632pt;}
.y4b_c00194{bottom:369.655288pt;}
.y4c_c00194{bottom:369.934536pt;}
.y4d_c00194{bottom:370.571171pt;}
.y3e_c00194{bottom:381.116059pt;}
.y3f_c00194{bottom:381.474163pt;}
.y40_c00194{bottom:381.906163pt;}
.y41_c00194{bottom:382.743091pt;}
.y42_c00194{bottom:383.073139pt;}
.y43_c00194{bottom:384.069643pt;}
.y44_c00194{bottom:384.575467pt;}
.y45_c00194{bottom:385.700035pt;}
.y35_c00194{bottom:396.237824pt;}
.y36_c00194{bottom:396.790472pt;}
.y37_c00194{bottom:397.058576pt;}
.y38_c00194{bottom:398.141480pt;}
.y39_c00194{bottom:398.357840pt;}
.y3a_c00194{bottom:398.644400pt;}
.y3b_c00194{bottom:399.620864pt;}
.y3c_c00194{bottom:399.956360pt;}
.y3d_c00194{bottom:400.450544pt;}
.y2f_c00194{bottom:411.604419pt;}
.y30_c00194{bottom:412.746003pt;}
.y31_c00194{bottom:414.053499pt;}
.y32_c00194{bottom:414.503331pt;}
.y33_c00194{bottom:414.988179pt;}
.y34_c00194{bottom:415.809147pt;}
.y26_c00194{bottom:426.722667pt;}
.y27_c00194{bottom:427.189299pt;}
.y28_c00194{bottom:427.448763pt;}
.y29_c00194{bottom:427.876611pt;}
.y2a_c00194{bottom:428.261811pt;}
.y2b_c00194{bottom:429.363243pt;}
.y2c_c00194{bottom:430.054563pt;}
.y2d_c00194{bottom:430.322523pt;}
.y2e_c00194{bottom:431.177907pt;}
.y1f_c00194{bottom:441.840000pt;}
.y20_c00194{bottom:442.553333pt;}
.y21_c00194{bottom:443.054667pt;}
.y22_c00194{bottom:444.485333pt;}
.y23_c00194{bottom:445.400000pt;}
.y24_c00194{bottom:445.901333pt;}
.y25_c00194{bottom:447.052000pt;}
.y17_c00194{bottom:456.961333pt;}
.y18_c00194{bottom:457.308000pt;}
.y19_c00194{bottom:457.848000pt;}
.y1a_c00194{bottom:458.773333pt;}
.y1b_c00194{bottom:459.352000pt;}
.y1c_c00194{bottom:459.888000pt;}
.y1d_c00194{bottom:460.317333pt;}
.y1e_c00194{bottom:461.948000pt;}
.y10_c00194{bottom:472.564000pt;}
.y11_c00194{bottom:473.114667pt;}
.y12_c00194{bottom:473.498667pt;}
.y13_c00194{bottom:474.406667pt;}
.y14_c00194{bottom:475.672000pt;}
.y15_c00194{bottom:475.984000pt;}
.y16_c00194{bottom:476.830667pt;}
.y9_c00194{bottom:486.724000pt;}
.ya_c00194{bottom:487.768000pt;}
.yb_c00194{bottom:488.861333pt;}
.yc_c00194{bottom:489.432000pt;}
.yd_c00194{bottom:490.946667pt;}
.ye_c00194{bottom:491.782667pt;}
.yf_c00194{bottom:492.226667pt;}
.y2_c00194{bottom:503.762667pt;}
.y3_c00194{bottom:504.492000pt;}
.y4_c00194{bottom:505.261333pt;}
.y5_c00194{bottom:505.780000pt;}
.y6_c00194{bottom:506.662667pt;}
.y7_c00194{bottom:507.037333pt;}
.y8_c00194{bottom:508.098667pt;}
.y1_c00194{bottom:516.025333pt;}
.h4_c00194{height:51.333333pt;}
.he_c00194{height:51.341649pt;}
.h5_c00194{height:52.266667pt;}
.ha_c00194{height:52.275133pt;}
.h10_c00194{height:53.200000pt;}
.h8_c00194{height:53.208618pt;}
.h3_c00194{height:54.133333pt;}
.hb_c00194{height:54.142102pt;}
.hf_c00194{height:55.066667pt;}
.hc_c00194{height:56.009071pt;}
.h12_c00194{height:56.933333pt;}
.h13_c00194{height:57.866667pt;}
.h6_c00194{height:58.800000pt;}
.h9_c00194{height:58.809525pt;}
.h14_c00194{height:59.733333pt;}
.hd_c00194{height:59.743009pt;}
.h11_c00194{height:60.666667pt;}
.h7_c00194{height:61.600000pt;}
.h2_c00194{height:122.266667pt;}
.h1_c00194{height:554.000000pt;}
.h0_c00194{height:554.133333pt;}
.w1_c00194{width:340.666667pt;}
.w0_c00194{width:340.800000pt;}
.x0_c00194{left:0.000000pt;}
.x3_c00194{left:28.708000pt;}
.xf_c00194{left:30.036000pt;}
.x4a_c00194{left:31.585147pt;}
.x59_c00194{left:32.637725pt;}
.x71_c00194{left:33.600000pt;}
.x66_c00194{left:34.493333pt;}
.x75_c00194{left:35.760000pt;}
.x21_c00194{left:37.133333pt;}
.x5c_c00194{left:38.880000pt;}
.x15_c00194{left:47.024000pt;}
.x69_c00194{left:48.720000pt;}
.x31_c00194{left:50.590568pt;}
.x39_c00194{left:53.152701pt;}
.x10_c00194{left:56.282667pt;}
.x6b_c00194{left:57.840000pt;}
.x3f_c00194{left:60.322771pt;}
.x4_c00194{left:61.880000pt;}
.x22_c00194{left:63.057333pt;}
.x1c_c00194{left:65.404000pt;}
.x4b_c00194{left:68.354493pt;}
.xa_c00194{left:71.012000pt;}
.x16_c00194{left:72.722667pt;}
.x11_c00194{left:74.560000pt;}
.x2e_c00194{left:76.045051pt;}
.x23_c00194{left:77.472000pt;}
.x72_c00194{left:83.040000pt;}
.x76_c00194{left:84.960000pt;}
.x40_c00194{left:86.955357pt;}
.x5f_c00194{left:88.320000pt;}
.x1d_c00194{left:90.464000pt;}
.x2a_c00194{left:93.588451pt;}
.x46_c00194{left:94.495600pt;}
.x5_c00194{left:96.845333pt;}
.x4e_c00194{left:99.713437pt;}
.x24_c00194{left:101.241333pt;}
.x63_c00194{left:103.440000pt;}
.x60_c00194{left:105.120000pt;}
.x41_c00194{left:106.702107pt;}
.x74_c00194{left:108.240000pt;}
.x47_c00194{left:109.373197pt;}
.x3a_c00194{left:110.956275pt;}
.x55_c00194{left:112.245325pt;}
.xb_c00194{left:114.754667pt;}
.x34_c00194{left:115.801157pt;}
.x17_c00194{left:116.813333pt;}
.x12_c00194{left:117.826667pt;}
.x5d_c00194{left:118.800000pt;}
.x6_c00194{left:120.396000pt;}
.x25_c00194{left:122.641333pt;}
.x4c_c00194{left:124.247144pt;}
.x4f_c00194{left:126.415731pt;}
.x5a_c00194{left:127.452445pt;}
.x61_c00194{left:131.280000pt;}
.x2f_c00194{left:136.206384pt;}
.xc_c00194{left:137.576000pt;}
.x7d_c00194{left:138.480000pt;}
.x32_c00194{left:139.422568pt;}
.x6c_c00194{left:141.120000pt;}
.x35_c00194{left:142.238971pt;}
.x5b_c00194{left:143.294915pt;}
.x18_c00194{left:144.381333pt;}
.x1_c00194{left:148.080000pt;}
.x48_c00194{left:151.376608pt;}
.x6f_c00194{left:152.984000pt;}
.x79_c00194{left:154.800000pt;}
.x50_c00194{left:158.999573pt;}
.x7_c00194{left:160.528000pt;}
.x1e_c00194{left:161.984000pt;}
.x77_c00194{left:162.960000pt;}
.x30_c00194{left:164.146384pt;}
.x42_c00194{left:165.039640pt;}
.x2b_c00194{left:166.227117pt;}
.x67_c00194{left:167.838667pt;}
.x19_c00194{left:169.916000pt;}
.x64_c00194{left:173.760000pt;}
.x8_c00194{left:177.588000pt;}
.x68_c00194{left:179.420000pt;}
.x51_c00194{left:181.104365pt;}
.x43_c00194{left:182.086197pt;}
.x26_c00194{left:183.832000pt;}
.x36_c00194{left:187.646453pt;}
.x1a_c00194{left:190.332000pt;}
.x56_c00194{left:191.688477pt;}
.x13_c00194{left:192.954667pt;}
.x33_c00194{left:194.783901pt;}
.x7e_c00194{left:196.800000pt;}
.xd_c00194{left:198.174667pt;}
.x3b_c00194{left:200.540613pt;}
.x4d_c00194{left:204.124264pt;}
.x54_c00194{left:206.093005pt;}
.x1f_c00194{left:207.733333pt;}
.x52_c00194{left:210.930779pt;}
.x7a_c00194{left:212.640000pt;}
.x3c_c00194{left:214.706149pt;}
.x6d_c00194{left:216.960000pt;}
.x2c_c00194{left:218.153784pt;}
.x27_c00194{left:222.238667pt;}
.x44_c00194{left:223.861197pt;}
.x9_c00194{left:225.846667pt;}
.x5e_c00194{left:230.160000pt;}
.xe_c00194{left:231.633333pt;}
.x14_c00194{left:233.297333pt;}
.x28_c00194{left:237.125333pt;}
.x3d_c00194{left:238.235360pt;}
.x7b_c00194{left:240.960000pt;}
.x45_c00194{left:242.343851pt;}
.x70_c00194{left:243.704000pt;}
.x37_c00194{left:248.142200pt;}
.x2_c00194{left:250.080000pt;}
.x7f_c00194{left:254.160000pt;}
.x53_c00194{left:256.472411pt;}
.x62_c00194{left:258.960000pt;}
.x58_c00194{left:260.195021pt;}
.x2d_c00194{left:263.763117pt;}
.x57_c00194{left:265.317768pt;}
.x1b_c00194{left:267.986667pt;}
.x78_c00194{left:269.520000pt;}
.x6e_c00194{left:274.560000pt;}
.x73_c00194{left:277.440000pt;}
.x49_c00194{left:278.621579pt;}
.x3e_c00194{left:281.933421pt;}
.x65_c00194{left:283.200000pt;}
.x29_c00194{left:284.646667pt;}
.x38_c00194{left:285.585539pt;}
.x6a_c00194{left:287.280000pt;}
.x7c_c00194{left:288.720000pt;}
.x20_c00194{left:290.289333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00195 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00195 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00195 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00195 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00195.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00195{transform:matrix(0.071285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071285,0.000000,0.000000,0.250000,0,0);}
.m6e_c00195{transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.081415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081415,0.000000,0.000000,0.250000,0,0);}
.mfd_c00195{transform:matrix(0.136513,0.002184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.136513,0.002184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.136513,0.002184,-0.003999,0.249968,0,0);}
.m2a_c00195{transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);}
.m101_c00195{transform:matrix(0.143602,0.002298,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143602,0.002298,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143602,0.002298,-0.003999,0.249968,0,0);}
.m7d_c00195{transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);}
.m78_c00195{transform:matrix(0.146455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146455,0.000000,0.000000,0.250000,0,0);}
.m5b_c00195{transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);}
.m7a_c00195{transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);}
.mff_c00195{transform:matrix(0.152400,0.002438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152400,0.002438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152400,0.002438,-0.003999,0.249968,0,0);}
.m5c_c00195{transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153890,0.000000,0.000000,0.250000,0,0);}
.mc9_c00195{transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);}
.m2e_c00195{transform:matrix(0.154355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154355,0.000000,0.000000,0.250000,0,0);}
.m84_c00195{transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m100_c00195{transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);}
.m62_c00195{transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);}
.m9e_c00195{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00195{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m50_c00195{transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);}
.m3e_c00195{transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);}
.m2d_c00195{transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159455,0.000000,0.000000,0.250000,0,0);}
.m4f_c00195{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m53_c00195{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.mf3_c00195{transform:matrix(0.163414,0.002615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163414,0.002615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163414,0.002615,-0.003999,0.249968,0,0);}
.m16_c00195{transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);}
.mf1_c00195{transform:matrix(0.164629,0.002634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164629,0.002634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164629,0.002634,-0.003999,0.249968,0,0);}
.md2_c00195{transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);}
.m35_c00195{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00195{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00195{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00195{transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);}
.mf4_c00195{transform:matrix(0.168648,0.002698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168648,0.002698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168648,0.002698,-0.003999,0.249968,0,0);}
.mb1_c00195{transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);}
.ma6_c00195{transform:matrix(0.168745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168745,0.000000,0.000000,0.250000,0,0);}
.ma8_c00195{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m70_c00195{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.me3_c00195{transform:matrix(0.169603,0.002714,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169603,0.002714,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169603,0.002714,-0.003999,0.249968,0,0);}
.mab_c00195{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m69_c00195{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.m3f_c00195{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.mc2_c00195{transform:matrix(0.171238,0.002740,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171238,0.002740,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171238,0.002740,-0.003999,0.249968,0,0);}
.m1a_c00195{transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);}
.mad_c00195{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m5d_c00195{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m7b_c00195{transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);}
.m6f_c00195{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m103_c00195{transform:matrix(0.174343,0.002789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174343,0.002789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174343,0.002789,-0.003999,0.249968,0,0);}
.m2f_c00195{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m2b_c00195{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.m8b_c00195{transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.mc7_c00195{transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);}
.m48_c00195{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176365,0.000000,0.000000,0.250000,0,0);}
.m1f_c00195{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.mb6_c00195{transform:matrix(0.176422,0.002823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176422,0.002823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176422,0.002823,-0.003999,0.249968,0,0);}
.ma9_c00195{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m24_c00195{transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);}
.md9_c00195{transform:matrix(0.176717,0.002827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176717,0.002827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176717,0.002827,-0.003999,0.249968,0,0);}
.m2c_c00195{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m104_c00195{transform:matrix(0.176992,0.002832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176992,0.002832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176992,0.002832,-0.003999,0.249968,0,0);}
.m5_c00195{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m4b_c00195{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m94_c00195{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.mb7_c00195{transform:matrix(0.178732,0.002860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178732,0.002860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178732,0.002860,-0.003999,0.249968,0,0);}
.m3c_c00195{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.ma1_c00195{transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.md1_c00195{transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);}
.mf0_c00195{transform:matrix(0.179582,0.002873,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179582,0.002873,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179582,0.002873,-0.003999,0.249968,0,0);}
.m5e_c00195{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.me0_c00195{transform:matrix(0.179767,0.002876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179767,0.002876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179767,0.002876,-0.003999,0.249968,0,0);}
.mca_c00195{transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);}
.m19_c00195{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m51_c00195{transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.mae_c00195{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.md6_c00195{transform:matrix(0.181322,0.002901,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181322,0.002901,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181322,0.002901,-0.003999,0.249968,0,0);}
.m61_c00195{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.md0_c00195{transform:matrix(0.181672,0.002907,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181672,0.002907,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181672,0.002907,-0.003999,0.249968,0,0);}
.mbb_c00195{transform:matrix(0.181792,0.002909,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181792,0.002909,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181792,0.002909,-0.003999,0.249968,0,0);}
.me1_c00195{transform:matrix(0.181947,0.002911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181947,0.002911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181947,0.002911,-0.003999,0.249968,0,0);}
.m79_c00195{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m4e_c00195{transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);}
.m80_c00195{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.m8c_c00195{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.mf2_c00195{transform:matrix(0.182442,0.002919,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182442,0.002919,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182442,0.002919,-0.003999,0.249968,0,0);}
.me4_c00195{transform:matrix(0.182627,0.002922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182627,0.002922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182627,0.002922,-0.003999,0.249968,0,0);}
.m7e_c00195{transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);}
.mfe_c00195{transform:matrix(0.183182,0.002931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183182,0.002931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183182,0.002931,-0.003999,0.249968,0,0);}
.mb4_c00195{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.ma3_c00195{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.md4_c00195{transform:matrix(0.183941,0.002943,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183941,0.002943,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183941,0.002943,-0.003999,0.249968,0,0);}
.m9a_c00195{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.m3b_c00195{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.ma4_c00195{transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);}
.mbc_c00195{transform:matrix(0.185391,0.002966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185391,0.002966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185391,0.002966,-0.003999,0.249968,0,0);}
.m86_c00195{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m7c_c00195{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m40_c00195{transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);}
.mda_c00195{transform:matrix(0.186166,0.002979,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186166,0.002979,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186166,0.002979,-0.003999,0.249968,0,0);}
.m91_c00195{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00195{transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);}
.m55_c00195{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);}
.m52_c00195{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m72_c00195{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m42_c00195{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.ma7_c00195{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.m102_c00195{transform:matrix(0.190346,0.003046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190346,0.003046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190346,0.003046,-0.003999,0.249968,0,0);}
.m8d_c00195{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m43_c00195{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00195{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m41_c00195{transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191480,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);}
.mdf_c00195{transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);}
.ma2_c00195{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m8a_c00195{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.mf5_c00195{transform:matrix(0.191950,0.003071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191950,0.003071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191950,0.003071,-0.003999,0.249968,0,0);}
.m8e_c00195{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.m9c_c00195{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00195{transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);}
.m6a_c00195{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m60_c00195{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m29_c00195{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.mde_c00195{transform:matrix(0.193065,0.003089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193065,0.003089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193065,0.003089,-0.003999,0.249968,0,0);}
.mcf_c00195{transform:matrix(0.193315,0.003093,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193315,0.003093,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193315,0.003093,-0.003999,0.249968,0,0);}
.me8_c00195{transform:matrix(0.193750,0.003100,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193750,0.003100,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193750,0.003100,-0.003999,0.249968,0,0);}
.m33_c00195{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.mc5_c00195{transform:matrix(0.194385,0.003110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194385,0.003110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194385,0.003110,-0.003999,0.249968,0,0);}
.maa_c00195{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.mcc_c00195{transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);}
.md5_c00195{transform:matrix(0.195655,0.003130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195655,0.003130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195655,0.003130,-0.003999,0.249968,0,0);}
.m3d_c00195{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.mb3_c00195{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.m28_c00195{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m97_c00195{transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);}
.m82_c00195{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.m90_c00195{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.med_c00195{transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);}
.m9f_c00195{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m96_c00195{transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);}
.me2_c00195{transform:matrix(0.200699,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200699,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200699,0.003211,-0.003999,0.249968,0,0);}
.mc_c00195{transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);}
.m66_c00195{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.md8_c00195{transform:matrix(0.201184,0.003219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201184,0.003219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201184,0.003219,-0.003999,0.249968,0,0);}
.m56_c00195{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.maf_c00195{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.mb0_c00195{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m38_c00195{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.mdb_c00195{transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);}
.m47_c00195{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m85_c00195{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.mbf_c00195{transform:matrix(0.202369,0.003238,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202369,0.003238,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202369,0.003238,-0.003999,0.249968,0,0);}
.mdc_c00195{transform:matrix(0.202404,0.003238,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202404,0.003238,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202404,0.003238,-0.003999,0.249968,0,0);}
.m5f_c00195{transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);}
.m63_c00195{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.ma5_c00195{transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);}
.mf7_c00195{transform:matrix(0.203449,0.003255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203449,0.003255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203449,0.003255,-0.003999,0.249968,0,0);}
.m37_c00195{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m59_c00195{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);}
.m25_c00195{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m6c_c00195{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m44_c00195{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m93_c00195{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.mce_c00195{transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);}
.ma0_c00195{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m88_c00195{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.mc1_c00195{transform:matrix(0.207093,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207093,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207093,0.003313,-0.003999,0.249968,0,0);}
.m12_c00195{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m64_c00195{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m4a_c00195{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.mef_c00195{transform:matrix(0.208223,0.003332,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208223,0.003332,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208223,0.003332,-0.003999,0.249968,0,0);}
.m34_c00195{transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);}
.md7_c00195{transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);}
.m73_c00195{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.mfa_c00195{transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209348,0.003350,-0.003999,0.249968,0,0);}
.mac_c00195{transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.m95_c00195{transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);}
.mdd_c00195{transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211498,0.003384,-0.003999,0.249968,0,0);}
.m4c_c00195{transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);}
.m67_c00195{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.mf8_c00195{transform:matrix(0.212383,0.003398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212383,0.003398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212383,0.003398,-0.003999,0.249968,0,0);}
.mfc_c00195{transform:matrix(0.212423,0.003399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212423,0.003399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212423,0.003399,-0.003999,0.249968,0,0);}
.me6_c00195{transform:matrix(0.212698,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212698,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212698,0.003403,-0.003999,0.249968,0,0);}
.m6b_c00195{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00195{transform:matrix(0.213258,0.003412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213258,0.003412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213258,0.003412,-0.003999,0.249968,0,0);}
.mee_c00195{transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);}
.mf9_c00195{transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214543,0.003433,-0.003999,0.249968,0,0);}
.m36_c00195{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m58_c00195{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.md3_c00195{transform:matrix(0.215037,0.003441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215037,0.003441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215037,0.003441,-0.003999,0.249968,0,0);}
.m71_c00195{transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);}
.mb9_c00195{transform:matrix(0.217357,0.003478,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217357,0.003478,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217357,0.003478,-0.003999,0.249968,0,0);}
.m31_c00195{transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);}
.mc6_c00195{transform:matrix(0.217382,0.003478,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217382,0.003478,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217382,0.003478,-0.003999,0.249968,0,0);}
.m32_c00195{transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);}
.mbe_c00195{transform:matrix(0.218087,0.003489,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218087,0.003489,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218087,0.003489,-0.003999,0.249968,0,0);}
.mea_c00195{transform:matrix(0.219182,0.003507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219182,0.003507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219182,0.003507,-0.003999,0.249968,0,0);}
.mf6_c00195{transform:matrix(0.219337,0.003509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219337,0.003509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219337,0.003509,-0.003999,0.249968,0,0);}
.m75_c00195{transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);}
.mba_c00195{transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);}
.m74_c00195{transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221815,0.000000,0.000000,0.250000,0,0);}
.mb2_c00195{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.meb_c00195{transform:matrix(0.222846,0.003566,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222846,0.003566,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222846,0.003566,-0.003999,0.249968,0,0);}
.m76_c00195{transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00195{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00195{transform:matrix(0.223686,0.003579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223686,0.003579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223686,0.003579,-0.003999,0.249968,0,0);}
.mc8_c00195{transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223851,0.003582,-0.003999,0.249968,0,0);}
.mec_c00195{transform:matrix(0.223861,0.003582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223861,0.003582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223861,0.003582,-0.003999,0.249968,0,0);}
.me9_c00195{transform:matrix(0.225081,0.003601,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225081,0.003601,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225081,0.003601,-0.003999,0.249968,0,0);}
.m13_c00195{transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);}
.m49_c00195{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m98_c00195{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me7_c00195{transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);}
.m68_c00195{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m5a_c00195{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m87_c00195{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.mc3_c00195{transform:matrix(0.230086,0.003681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230086,0.003681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230086,0.003681,-0.003999,0.249968,0,0);}
.me5_c00195{transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);}
.m26_c00195{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m99_c00195{transform:matrix(0.231385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231385,0.000000,0.000000,0.250000,0,0);}
.m57_c00195{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.mb5_c00195{transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);}
.mfb_c00195{transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234650,0.003754,-0.003999,0.249968,0,0);}
.mbd_c00195{transform:matrix(0.236465,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236465,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236465,0.003783,-0.003999,0.249968,0,0);}
.m6d_c00195{transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);}
.m27_c00195{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m92_c00195{transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);}
.m65_c00195{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m39_c00195{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.m89_c00195{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m83_c00195{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m81_c00195{transform:matrix(0.278620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278620,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);}
.mcd_c00195{transform:matrix(0.285248,0.004564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285248,0.004564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285248,0.004564,-0.003999,0.249968,0,0);}
.m77_c00195{transform:matrix(0.296270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296270,0.000000,0.000000,0.250000,0,0);}
.mc4_c00195{transform:matrix(0.310525,0.004968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.310525,0.004968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.310525,0.004968,-0.003999,0.249968,0,0);}
.m1b_c00195{transform:matrix(0.394140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394140,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:0.000000px;}
.fc0_c00195{color:transparent;}
.fs11_c00195{font-size:57.757392px;}
.fsa_c00195{font-size:58.800000px;}
.fs12_c00195{font-size:58.807526px;}
.fs8_c00195{font-size:59.850000px;}
.fsc_c00195{font-size:59.857660px;}
.fs4_c00195{font-size:60.900000px;}
.fs0_c00195{font-size:61.950000px;}
.fsf_c00195{font-size:61.957929px;}
.fs7_c00195{font-size:63.000000px;}
.fsd_c00195{font-size:63.008063px;}
.fs9_c00195{font-size:64.050000px;}
.fsb_c00195{font-size:65.100000px;}
.fs5_c00195{font-size:66.150000px;}
.fs6_c00195{font-size:67.200000px;}
.fse_c00195{font-size:67.208601px;}
.fs2_c00195{font-size:68.250000px;}
.fs10_c00195{font-size:68.258735px;}
.fs3_c00195{font-size:69.300000px;}
.fs1_c00195{font-size:70.350000px;}
.fs13_c00195{font-size:74.559542px;}
.y0_c00195{bottom:0.000000px;}
.y7b_c00195{bottom:37.296972px;}
.y7f_c00195{bottom:37.296984px;}
.y7e_c00195{bottom:37.297056px;}
.y7d_c00195{bottom:37.297068px;}
.y80_c00195{bottom:37.297488px;}
.y7a_c00195{bottom:37.297620px;}
.y7c_c00195{bottom:37.297704px;}
.y81_c00195{bottom:37.298184px;}
.y78_c00195{bottom:55.312092px;}
.y79_c00195{bottom:55.312356px;}
.y74_c00195{bottom:55.312428px;}
.y77_c00195{bottom:55.312788px;}
.y75_c00195{bottom:55.313076px;}
.y73_c00195{bottom:55.313088px;}
.y76_c00195{bottom:55.313100px;}
.y6a_c00195{bottom:72.427800px;}
.y6c_c00195{bottom:72.428280px;}
.y6b_c00195{bottom:72.428460px;}
.y6d_c00195{bottom:72.428676px;}
.y70_c00195{bottom:72.429084px;}
.y6e_c00195{bottom:72.429264px;}
.y6f_c00195{bottom:72.429408px;}
.y71_c00195{bottom:72.429768px;}
.y72_c00195{bottom:72.429876px;}
.y69_c00195{bottom:88.698312px;}
.y65_c00195{bottom:88.698396px;}
.y64_c00195{bottom:88.698612px;}
.y67_c00195{bottom:88.698744px;}
.y66_c00195{bottom:88.698804px;}
.y63_c00195{bottom:88.698936px;}
.y62_c00195{bottom:88.698960px;}
.y68_c00195{bottom:88.699044px;}
.y61_c00195{bottom:88.699452px;}
.y5e_c00195{bottom:105.979668px;}
.y5c_c00195{bottom:105.979740px;}
.y5b_c00195{bottom:105.979752px;}
.y5d_c00195{bottom:105.979932px;}
.y5f_c00195{bottom:105.980304px;}
.y60_c00195{bottom:105.980688px;}
.y55_c00195{bottom:123.109320px;}
.y53_c00195{bottom:123.109440px;}
.y59_c00195{bottom:123.109776px;}
.y56_c00195{bottom:123.109824px;}
.y54_c00195{bottom:123.109908px;}
.y57_c00195{bottom:123.110052px;}
.y5a_c00195{bottom:123.110256px;}
.y58_c00195{bottom:123.110268px;}
.y4e_c00195{bottom:139.819368px;}
.y4c_c00195{bottom:139.819380px;}
.y4f_c00195{bottom:139.819548px;}
.y4d_c00195{bottom:139.819608px;}
.y4b_c00195{bottom:139.819704px;}
.y51_c00195{bottom:139.819812px;}
.y50_c00195{bottom:139.820016px;}
.y52_c00195{bottom:139.820040px;}
.y4a_c00195{bottom:158.194056px;}
.y49_c00195{bottom:158.474616px;}
.y48_c00195{bottom:158.848284px;}
.y47_c00195{bottom:159.012876px;}
.y46_c00195{bottom:159.199212px;}
.y45_c00195{bottom:159.347652px;}
.y44_c00195{bottom:160.052172px;}
.y43_c00195{bottom:160.219632px;}
.y42_c00195{bottom:160.515444px;}
.y41_c00195{bottom:160.914588px;}
.y40_c00195{bottom:175.100148px;}
.y3f_c00195{bottom:175.100448px;}
.y3e_c00195{bottom:175.100820px;}
.y3a_c00195{bottom:175.101072px;}
.y3d_c00195{bottom:175.101120px;}
.y3c_c00195{bottom:175.101324px;}
.y3b_c00195{bottom:175.101816px;}
.y39_c00195{bottom:191.217180px;}
.y38_c00195{bottom:191.614212px;}
.y37_c00195{bottom:191.990292px;}
.y36_c00195{bottom:192.434100px;}
.y35_c00195{bottom:193.455012px;}
.y34_c00195{bottom:193.933236px;}
.y33_c00195{bottom:194.776836px;}
.y32_c00195{bottom:195.211500px;}
.y31_c00195{bottom:208.956000px;}
.y30_c00195{bottom:209.157000px;}
.y2f_c00195{bottom:209.740500px;}
.y2e_c00195{bottom:210.648000px;}
.y2d_c00195{bottom:211.416000px;}
.y2c_c00195{bottom:225.606000px;}
.y2b_c00195{bottom:225.913500px;}
.y2a_c00195{bottom:226.248000px;}
.y29_c00195{bottom:226.854000px;}
.y28_c00195{bottom:227.320500px;}
.y27_c00195{bottom:227.509500px;}
.y26_c00195{bottom:227.934000px;}
.y25_c00195{bottom:228.262500px;}
.y24_c00195{bottom:228.424500px;}
.y23_c00195{bottom:244.558500px;}
.y22_c00195{bottom:261.777000px;}
.y21_c00195{bottom:277.812000px;}
.y20_c00195{bottom:295.318500px;}
.y1f_c00195{bottom:311.749500px;}
.y1e_c00195{bottom:329.212500px;}
.y1d_c00195{bottom:346.225500px;}
.y1c_c00195{bottom:364.087500px;}
.y1b_c00195{bottom:380.281500px;}
.y1a_c00195{bottom:397.572000px;}
.y19_c00195{bottom:414.954000px;}
.y18_c00195{bottom:431.250000px;}
.y17_c00195{bottom:431.460000px;}
.y16_c00195{bottom:431.749500px;}
.y15_c00195{bottom:431.881500px;}
.y14_c00195{bottom:432.322500px;}
.y13_c00195{bottom:432.528000px;}
.y12_c00195{bottom:432.984000px;}
.y11_c00195{bottom:433.245000px;}
.y10_c00195{bottom:433.491000px;}
.yf_c00195{bottom:433.893000px;}
.ye_c00195{bottom:449.623500px;}
.yd_c00195{bottom:466.549500px;}
.yc_c00195{bottom:483.712500px;}
.yb_c00195{bottom:499.525500px;}
.ya_c00195{bottom:500.127000px;}
.y9_c00195{bottom:501.106500px;}
.y8_c00195{bottom:501.501000px;}
.y7_c00195{bottom:502.092000px;}
.y6_c00195{bottom:502.471500px;}
.y5_c00195{bottom:518.317500px;}
.y4_c00195{bottom:534.808500px;}
.y3_c00195{bottom:552.382500px;}
.y2_c00195{bottom:569.221500px;}
.y1_c00195{bottom:586.722000px;}
.h13_c00195{height:57.757392px;}
.hc_c00195{height:58.800000px;}
.h14_c00195{height:58.807526px;}
.ha_c00195{height:59.850000px;}
.he_c00195{height:59.857660px;}
.h6_c00195{height:60.900000px;}
.h2_c00195{height:61.950000px;}
.h11_c00195{height:61.957929px;}
.h9_c00195{height:63.000000px;}
.hf_c00195{height:63.008063px;}
.hb_c00195{height:64.050000px;}
.hd_c00195{height:65.100000px;}
.h7_c00195{height:66.150000px;}
.h8_c00195{height:67.200000px;}
.h10_c00195{height:67.208601px;}
.h4_c00195{height:68.250000px;}
.h12_c00195{height:68.258735px;}
.h5_c00195{height:69.300000px;}
.h3_c00195{height:70.350000px;}
.h15_c00195{height:74.559542px;}
.h1_c00195{height:623.250000px;}
.h0_c00195{height:623.400000px;}
.w0_c00195{width:366.390000px;}
.w1_c00195{width:366.750000px;}
.x0_c00195{left:0.000000px;}
.x86_c00195{left:40.497216px;}
.x71_c00195{left:41.579784px;}
.x61_c00195{left:42.663000px;}
.x40_c00195{left:44.013000px;}
.x27_c00195{left:45.631500px;}
.x2_c00195{left:47.250000px;}
.x6a_c00195{left:51.471000px;}
.x64_c00195{left:58.234500px;}
.x7e_c00195{left:60.209472px;}
.x3c_c00195{left:63.183000px;}
.x3_c00195{left:65.610000px;}
.x48_c00195{left:67.773000px;}
.x53_c00195{left:70.473000px;}
.x2c_c00195{left:73.981500px;}
.x6b_c00195{left:78.637500px;}
.x87_c00195{left:79.922796px;}
.xb_c00195{left:81.540000px;}
.x57_c00195{left:83.703000px;}
.x1c_c00195{left:84.925500px;}
.x4_c00195{left:86.940000px;}
.x20_c00195{left:89.101500px;}
.xc_c00195{left:90.180000px;}
.x62_c00195{left:93.423000px;}
.x12_c00195{left:94.500000px;}
.x54_c00195{left:96.123000px;}
.x45_c00195{left:97.743000px;}
.x5c_c00195{left:101.793000px;}
.x82_c00195{left:102.875844px;}
.x79_c00195{left:104.498028px;}
.x68_c00195{left:105.669000px;}
.x5_c00195{left:107.190000px;}
.x58_c00195{left:108.273000px;}
.x31_c00195{left:109.818000px;}
.x49_c00195{left:112.053000px;}
.x3b_c00195{left:113.403000px;}
.x72_c00195{left:114.489456px;}
.x37_c00195{left:115.833000px;}
.x21_c00195{left:116.911500px;}
.x28_c00195{left:119.881500px;}
.x83_c00195{left:121.777692px;}
.x5d_c00195{left:122.853000px;}
.x75_c00195{left:128.136216px;}
.x6c_c00195{left:131.362500px;}
.x63_c00195{left:132.573000px;}
.x29_c00195{left:133.651500px;}
.x22_c00195{left:135.001500px;}
.x17_c00195{left:144.720000px;}
.x13_c00195{left:146.340000px;}
.x65_c00195{left:152.455500px;}
.x80_c00195{left:153.640620px;}
.x59_c00195{left:154.713000px;}
.x5e_c00195{left:158.223000px;}
.x6d_c00195{left:161.251500px;}
.x4d_c00195{left:163.083000px;}
.xd_c00195{left:165.510000px;}
.x4a_c00195{left:169.293000px;}
.x7a_c00195{left:171.734448px;}
.x55_c00195{left:172.803000px;}
.x14_c00195{left:173.880000px;}
.x6_c00195{left:174.960000px;}
.x7f_c00195{left:176.055612px;}
.x2d_c00195{left:177.931500px;}
.x1_c00195{left:181.170000px;}
.x1d_c00195{left:183.481500px;}
.x73_c00195{left:185.238552px;}
.x88_c00195{left:187.668372px;}
.x38_c00195{left:188.733000px;}
.x41_c00195{left:190.893000px;}
.x23_c00195{left:191.971500px;}
.x84_c00195{left:193.607076px;}
.x7_c00195{left:196.830000px;}
.x66_c00195{left:199.120500px;}
.x2e_c00195{left:200.881500px;}
.x32_c00195{left:202.108500px;}
.x4e_c00195{left:203.313000px;}
.x18_c00195{left:208.440000px;}
.x7c_c00195{left:211.699164px;}
.x39_c00195{left:213.303000px;}
.x3d_c00195{left:216.003000px;}
.x42_c00195{left:217.353000px;}
.xe_c00195{left:219.510000px;}
.x4f_c00195{left:221.403000px;}
.x81_c00195{left:224.659812px;}
.x2a_c00195{left:225.721500px;}
.x4b_c00195{left:227.613000px;}
.x69_c00195{left:229.864500px;}
.x76_c00195{left:232.102200px;}
.x8_c00195{left:233.280000px;}
.x5f_c00195{left:234.633000px;}
.x24_c00195{left:238.681500px;}
.x5a_c00195{left:241.113000px;}
.x3e_c00195{left:244.083000px;}
.x33_c00195{left:246.171000px;}
.x77_c00195{left:248.578284px;}
.x19_c00195{left:249.750000px;}
.x6e_c00195{left:252.796500px;}
.x25_c00195{left:255.421500px;}
.x15_c00195{left:256.770000px;}
.x34_c00195{left:259.396500px;}
.x7b_c00195{left:261.385392px;}
.x9_c00195{left:262.710000px;}
.x43_c00195{left:264.333000px;}
.x56_c00195{left:269.193000px;}
.xf_c00195{left:270.540000px;}
.x6f_c00195{left:276.301500px;}
.x16_c00195{left:278.370000px;}
.x44_c00195{left:279.993000px;}
.x1e_c00195{left:281.500500px;}
.x2f_c00195{left:282.691500px;}
.x10_c00195{left:284.040000px;}
.x26_c00195{left:286.201500px;}
.x35_c00195{left:288.289500px;}
.x1a_c00195{left:289.440000px;}
.x67_c00195{left:293.139000px;}
.x85_c00195{left:295.679688px;}
.x70_c00195{left:301.116000px;}
.x46_c00195{left:302.133000px;}
.x50_c00195{left:303.483000px;}
.x5b_c00195{left:304.833000px;}
.x2b_c00195{left:306.451500px;}
.x36_c00195{left:309.345000px;}
.x78_c00195{left:313.942548px;}
.xa_c00195{left:315.360000px;}
.x74_c00195{left:318.364608px;}
.x60_c00195{left:319.953000px;}
.x51_c00195{left:323.733000px;}
.x7d_c00195{left:325.383276px;}
.x30_c00195{left:326.971500px;}
.x3f_c00195{left:328.053000px;}
.x11_c00195{left:335.610000px;}
.x1f_c00195{left:341.697000px;}
.x52_c00195{left:355.323000px;}
.x47_c00195{left:357.213000px;}
.x4c_c00195{left:358.563000px;}
.x3a_c00195{left:359.913000px;}
.x1b_c00195{left:362.340000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.000000pt;}
.fs11_c00195{font-size:51.339904pt;}
.fsa_c00195{font-size:52.266667pt;}
.fs12_c00195{font-size:52.273356pt;}
.fs8_c00195{font-size:53.200000pt;}
.fsc_c00195{font-size:53.206809pt;}
.fs4_c00195{font-size:54.133333pt;}
.fs0_c00195{font-size:55.066667pt;}
.fsf_c00195{font-size:55.073715pt;}
.fs7_c00195{font-size:56.000000pt;}
.fsd_c00195{font-size:56.007168pt;}
.fs9_c00195{font-size:56.933333pt;}
.fsb_c00195{font-size:57.866667pt;}
.fs5_c00195{font-size:58.800000pt;}
.fs6_c00195{font-size:59.733333pt;}
.fse_c00195{font-size:59.740979pt;}
.fs2_c00195{font-size:60.666667pt;}
.fs10_c00195{font-size:60.674432pt;}
.fs3_c00195{font-size:61.600000pt;}
.fs1_c00195{font-size:62.533333pt;}
.fs13_c00195{font-size:66.275148pt;}
.y0_c00195{bottom:0.000000pt;}
.y7b_c00195{bottom:33.152864pt;}
.y7f_c00195{bottom:33.152875pt;}
.y7e_c00195{bottom:33.152939pt;}
.y7d_c00195{bottom:33.152949pt;}
.y80_c00195{bottom:33.153323pt;}
.y7a_c00195{bottom:33.153440pt;}
.y7c_c00195{bottom:33.153515pt;}
.y81_c00195{bottom:33.153941pt;}
.y78_c00195{bottom:49.166304pt;}
.y79_c00195{bottom:49.166539pt;}
.y74_c00195{bottom:49.166603pt;}
.y77_c00195{bottom:49.166923pt;}
.y75_c00195{bottom:49.167179pt;}
.y73_c00195{bottom:49.167189pt;}
.y76_c00195{bottom:49.167200pt;}
.y6a_c00195{bottom:64.380267pt;}
.y6c_c00195{bottom:64.380693pt;}
.y6b_c00195{bottom:64.380853pt;}
.y6d_c00195{bottom:64.381045pt;}
.y70_c00195{bottom:64.381408pt;}
.y6e_c00195{bottom:64.381568pt;}
.y6f_c00195{bottom:64.381696pt;}
.y71_c00195{bottom:64.382016pt;}
.y72_c00195{bottom:64.382112pt;}
.y69_c00195{bottom:78.842944pt;}
.y65_c00195{bottom:78.843019pt;}
.y64_c00195{bottom:78.843211pt;}
.y67_c00195{bottom:78.843328pt;}
.y66_c00195{bottom:78.843381pt;}
.y63_c00195{bottom:78.843499pt;}
.y62_c00195{bottom:78.843520pt;}
.y68_c00195{bottom:78.843595pt;}
.y61_c00195{bottom:78.843957pt;}
.y5e_c00195{bottom:94.204149pt;}
.y5c_c00195{bottom:94.204213pt;}
.y5b_c00195{bottom:94.204224pt;}
.y5d_c00195{bottom:94.204384pt;}
.y5f_c00195{bottom:94.204715pt;}
.y60_c00195{bottom:94.205056pt;}
.y55_c00195{bottom:109.430507pt;}
.y53_c00195{bottom:109.430613pt;}
.y59_c00195{bottom:109.430912pt;}
.y56_c00195{bottom:109.430955pt;}
.y54_c00195{bottom:109.431029pt;}
.y57_c00195{bottom:109.431157pt;}
.y5a_c00195{bottom:109.431339pt;}
.y58_c00195{bottom:109.431349pt;}
.y4e_c00195{bottom:124.283883pt;}
.y4c_c00195{bottom:124.283893pt;}
.y4f_c00195{bottom:124.284043pt;}
.y4d_c00195{bottom:124.284096pt;}
.y4b_c00195{bottom:124.284181pt;}
.y51_c00195{bottom:124.284277pt;}
.y50_c00195{bottom:124.284459pt;}
.y52_c00195{bottom:124.284480pt;}
.y4a_c00195{bottom:140.616939pt;}
.y49_c00195{bottom:140.866325pt;}
.y48_c00195{bottom:141.198475pt;}
.y47_c00195{bottom:141.344779pt;}
.y46_c00195{bottom:141.510411pt;}
.y45_c00195{bottom:141.642357pt;}
.y44_c00195{bottom:142.268597pt;}
.y43_c00195{bottom:142.417451pt;}
.y42_c00195{bottom:142.680395pt;}
.y41_c00195{bottom:143.035189pt;}
.y40_c00195{bottom:155.644576pt;}
.y3f_c00195{bottom:155.644843pt;}
.y3e_c00195{bottom:155.645173pt;}
.y3a_c00195{bottom:155.645397pt;}
.y3d_c00195{bottom:155.645440pt;}
.y3c_c00195{bottom:155.645621pt;}
.y3b_c00195{bottom:155.646059pt;}
.y39_c00195{bottom:169.970827pt;}
.y38_c00195{bottom:170.323744pt;}
.y37_c00195{bottom:170.658037pt;}
.y36_c00195{bottom:171.052533pt;}
.y35_c00195{bottom:171.960011pt;}
.y34_c00195{bottom:172.385099pt;}
.y33_c00195{bottom:173.134965pt;}
.y32_c00195{bottom:173.521333pt;}
.y31_c00195{bottom:185.738667pt;}
.y30_c00195{bottom:185.917333pt;}
.y2f_c00195{bottom:186.436000pt;}
.y2e_c00195{bottom:187.242667pt;}
.y2d_c00195{bottom:187.925333pt;}
.y2c_c00195{bottom:200.538667pt;}
.y2b_c00195{bottom:200.812000pt;}
.y2a_c00195{bottom:201.109333pt;}
.y29_c00195{bottom:201.648000pt;}
.y28_c00195{bottom:202.062667pt;}
.y27_c00195{bottom:202.230667pt;}
.y26_c00195{bottom:202.608000pt;}
.y25_c00195{bottom:202.900000pt;}
.y24_c00195{bottom:203.044000pt;}
.y23_c00195{bottom:217.385333pt;}
.y22_c00195{bottom:232.690667pt;}
.y21_c00195{bottom:246.944000pt;}
.y20_c00195{bottom:262.505333pt;}
.y1f_c00195{bottom:277.110667pt;}
.y1e_c00195{bottom:292.633333pt;}
.y1d_c00195{bottom:307.756000pt;}
.y1c_c00195{bottom:323.633333pt;}
.y1b_c00195{bottom:338.028000pt;}
.y1a_c00195{bottom:353.397333pt;}
.y19_c00195{bottom:368.848000pt;}
.y18_c00195{bottom:383.333333pt;}
.y17_c00195{bottom:383.520000pt;}
.y16_c00195{bottom:383.777333pt;}
.y15_c00195{bottom:383.894667pt;}
.y14_c00195{bottom:384.286667pt;}
.y13_c00195{bottom:384.469333pt;}
.y12_c00195{bottom:384.874667pt;}
.y11_c00195{bottom:385.106667pt;}
.y10_c00195{bottom:385.325333pt;}
.yf_c00195{bottom:385.682667pt;}
.ye_c00195{bottom:399.665333pt;}
.yd_c00195{bottom:414.710667pt;}
.yc_c00195{bottom:429.966667pt;}
.yb_c00195{bottom:444.022667pt;}
.ya_c00195{bottom:444.557333pt;}
.y9_c00195{bottom:445.428000pt;}
.y8_c00195{bottom:445.778667pt;}
.y7_c00195{bottom:446.304000pt;}
.y6_c00195{bottom:446.641333pt;}
.y5_c00195{bottom:460.726667pt;}
.y4_c00195{bottom:475.385333pt;}
.y3_c00195{bottom:491.006667pt;}
.y2_c00195{bottom:505.974667pt;}
.y1_c00195{bottom:521.530667pt;}
.h13_c00195{height:51.339904pt;}
.hc_c00195{height:52.266667pt;}
.h14_c00195{height:52.273356pt;}
.ha_c00195{height:53.200000pt;}
.he_c00195{height:53.206809pt;}
.h6_c00195{height:54.133333pt;}
.h2_c00195{height:55.066667pt;}
.h11_c00195{height:55.073715pt;}
.h9_c00195{height:56.000000pt;}
.hf_c00195{height:56.007168pt;}
.hb_c00195{height:56.933333pt;}
.hd_c00195{height:57.866667pt;}
.h7_c00195{height:58.800000pt;}
.h8_c00195{height:59.733333pt;}
.h10_c00195{height:59.740979pt;}
.h4_c00195{height:60.666667pt;}
.h12_c00195{height:60.674432pt;}
.h5_c00195{height:61.600000pt;}
.h3_c00195{height:62.533333pt;}
.h15_c00195{height:66.275148pt;}
.h1_c00195{height:554.000000pt;}
.h0_c00195{height:554.133333pt;}
.w0_c00195{width:325.680000pt;}
.w1_c00195{width:326.000000pt;}
.x0_c00195{left:0.000000pt;}
.x86_c00195{left:35.997525pt;}
.x71_c00195{left:36.959808pt;}
.x61_c00195{left:37.922667pt;}
.x40_c00195{left:39.122667pt;}
.x27_c00195{left:40.561333pt;}
.x2_c00195{left:42.000000pt;}
.x6a_c00195{left:45.752000pt;}
.x64_c00195{left:51.764000pt;}
.x7e_c00195{left:53.519531pt;}
.x3c_c00195{left:56.162667pt;}
.x3_c00195{left:58.320000pt;}
.x48_c00195{left:60.242667pt;}
.x53_c00195{left:62.642667pt;}
.x2c_c00195{left:65.761333pt;}
.x6b_c00195{left:69.900000pt;}
.x87_c00195{left:71.042485pt;}
.xb_c00195{left:72.480000pt;}
.x57_c00195{left:74.402667pt;}
.x1c_c00195{left:75.489333pt;}
.x4_c00195{left:77.280000pt;}
.x20_c00195{left:79.201333pt;}
.xc_c00195{left:80.160000pt;}
.x62_c00195{left:83.042667pt;}
.x12_c00195{left:84.000000pt;}
.x54_c00195{left:85.442667pt;}
.x45_c00195{left:86.882667pt;}
.x5c_c00195{left:90.482667pt;}
.x82_c00195{left:91.445195pt;}
.x79_c00195{left:92.887136pt;}
.x68_c00195{left:93.928000pt;}
.x5_c00195{left:95.280000pt;}
.x58_c00195{left:96.242667pt;}
.x31_c00195{left:97.616000pt;}
.x49_c00195{left:99.602667pt;}
.x3b_c00195{left:100.802667pt;}
.x72_c00195{left:101.768405pt;}
.x37_c00195{left:102.962667pt;}
.x21_c00195{left:103.921333pt;}
.x28_c00195{left:106.561333pt;}
.x83_c00195{left:108.246837pt;}
.x5d_c00195{left:109.202667pt;}
.x75_c00195{left:113.898859pt;}
.x6c_c00195{left:116.766667pt;}
.x63_c00195{left:117.842667pt;}
.x29_c00195{left:118.801333pt;}
.x22_c00195{left:120.001333pt;}
.x17_c00195{left:128.640000pt;}
.x13_c00195{left:130.080000pt;}
.x65_c00195{left:135.516000pt;}
.x80_c00195{left:136.569440pt;}
.x59_c00195{left:137.522667pt;}
.x5e_c00195{left:140.642667pt;}
.x6d_c00195{left:143.334667pt;}
.x4d_c00195{left:144.962667pt;}
.xd_c00195{left:147.120000pt;}
.x4a_c00195{left:150.482667pt;}
.x7a_c00195{left:152.652843pt;}
.x55_c00195{left:153.602667pt;}
.x14_c00195{left:154.560000pt;}
.x6_c00195{left:155.520000pt;}
.x7f_c00195{left:156.493877pt;}
.x2d_c00195{left:158.161333pt;}
.x1_c00195{left:161.040000pt;}
.x1d_c00195{left:163.094667pt;}
.x73_c00195{left:164.656491pt;}
.x88_c00195{left:166.816331pt;}
.x38_c00195{left:167.762667pt;}
.x41_c00195{left:169.682667pt;}
.x23_c00195{left:170.641333pt;}
.x84_c00195{left:172.095179pt;}
.x7_c00195{left:174.960000pt;}
.x66_c00195{left:176.996000pt;}
.x2e_c00195{left:178.561333pt;}
.x32_c00195{left:179.652000pt;}
.x4e_c00195{left:180.722667pt;}
.x18_c00195{left:185.280000pt;}
.x7c_c00195{left:188.177035pt;}
.x39_c00195{left:189.602667pt;}
.x3d_c00195{left:192.002667pt;}
.x42_c00195{left:193.202667pt;}
.xe_c00195{left:195.120000pt;}
.x4f_c00195{left:196.802667pt;}
.x81_c00195{left:199.697611pt;}
.x2a_c00195{left:200.641333pt;}
.x4b_c00195{left:202.322667pt;}
.x69_c00195{left:204.324000pt;}
.x76_c00195{left:206.313067pt;}
.x8_c00195{left:207.360000pt;}
.x5f_c00195{left:208.562667pt;}
.x24_c00195{left:212.161333pt;}
.x5a_c00195{left:214.322667pt;}
.x3e_c00195{left:216.962667pt;}
.x33_c00195{left:218.818667pt;}
.x77_c00195{left:220.958475pt;}
.x19_c00195{left:222.000000pt;}
.x6e_c00195{left:224.708000pt;}
.x25_c00195{left:227.041333pt;}
.x15_c00195{left:228.240000pt;}
.x34_c00195{left:230.574667pt;}
.x7b_c00195{left:232.342571pt;}
.x9_c00195{left:233.520000pt;}
.x43_c00195{left:234.962667pt;}
.x56_c00195{left:239.282667pt;}
.xf_c00195{left:240.480000pt;}
.x6f_c00195{left:245.601333pt;}
.x16_c00195{left:247.440000pt;}
.x44_c00195{left:248.882667pt;}
.x1e_c00195{left:250.222667pt;}
.x2f_c00195{left:251.281333pt;}
.x10_c00195{left:252.480000pt;}
.x26_c00195{left:254.401333pt;}
.x35_c00195{left:256.257333pt;}
.x1a_c00195{left:257.280000pt;}
.x67_c00195{left:260.568000pt;}
.x85_c00195{left:262.826389pt;}
.x70_c00195{left:267.658667pt;}
.x46_c00195{left:268.562667pt;}
.x50_c00195{left:269.762667pt;}
.x5b_c00195{left:270.962667pt;}
.x2b_c00195{left:272.401333pt;}
.x36_c00195{left:274.973333pt;}
.x78_c00195{left:279.060043pt;}
.xa_c00195{left:280.320000pt;}
.x74_c00195{left:282.990763pt;}
.x60_c00195{left:284.402667pt;}
.x51_c00195{left:287.762667pt;}
.x7d_c00195{left:289.229579pt;}
.x30_c00195{left:290.641333pt;}
.x3f_c00195{left:291.602667pt;}
.x11_c00195{left:298.320000pt;}
.x1f_c00195{left:303.730667pt;}
.x52_c00195{left:315.842667pt;}
.x47_c00195{left:317.522667pt;}
.x4c_c00195{left:318.722667pt;}
.x3a_c00195{left:319.922667pt;}
.x1b_c00195{left:322.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00196 {
    display:none;
  }
  .loading-indicator_c00196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00196 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00196 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00196" -> "#page-container .classname_c00196")
 */
.pf_c00196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00196 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00196 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00196 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00196 {overflow:visible;}
  }
}
.c_c00196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00196 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00196:after { /* webkit #35443 */
  content: '';
}
.t_c00196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00196 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00196 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00196 { /* info for Javascript */
  display:none;
}
.l_c00196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00196:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00196 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00196.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00196{transform:matrix(0.066941,0.000736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.066941,0.000736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.066941,0.000736,-0.002750,0.249985,0,0);}
.ma_c00196{transform:matrix(0.094834,0.001043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.094834,0.001043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.094834,0.001043,-0.002750,0.249985,0,0);}
.m33_c00196{transform:matrix(0.122978,0.001353,-0.002750,0.249985,0,0);-ms-transform:matrix(0.122978,0.001353,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.122978,0.001353,-0.002750,0.249985,0,0);}
.m1_c00196{transform:matrix(0.138537,0.001524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138537,0.001524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138537,0.001524,-0.002750,0.249985,0,0);}
.m13_c00196{transform:matrix(0.140836,0.001549,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140836,0.001549,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140836,0.001549,-0.002750,0.249985,0,0);}
.mcd_c00196{transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);}
.ma9_c00196{transform:matrix(0.145886,0.001605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145886,0.001605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145886,0.001605,-0.002750,0.249985,0,0);}
.ma4_c00196{transform:matrix(0.146531,0.001612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146531,0.001612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146531,0.001612,-0.002750,0.249985,0,0);}
.mc7_c00196{transform:matrix(0.146551,0.001612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146551,0.001612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146551,0.001612,-0.002750,0.249985,0,0);}
.mb8_c00196{transform:matrix(0.149001,0.001639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149001,0.001639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149001,0.001639,-0.002750,0.249985,0,0);}
.m10_c00196{transform:matrix(0.150446,0.001655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150446,0.001655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150446,0.001655,-0.002750,0.249985,0,0);}
.mcc_c00196{transform:matrix(0.154041,0.001694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154041,0.001694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154041,0.001694,-0.002750,0.249985,0,0);}
.m4b_c00196{transform:matrix(0.156976,0.001727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156976,0.001727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156976,0.001727,-0.002750,0.249985,0,0);}
.m0_c00196{transform:matrix(0.157880,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157880,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157880,0.001737,-0.002750,0.249985,0,0);}
.ma8_c00196{transform:matrix(0.158185,0.001740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158185,0.001740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158185,0.001740,-0.002750,0.249985,0,0);}
.m8d_c00196{transform:matrix(0.159470,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159470,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159470,0.001754,-0.002750,0.249985,0,0);}
.m8b_c00196{transform:matrix(0.159810,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159810,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159810,0.001758,-0.002750,0.249985,0,0);}
.mee_c00196{transform:matrix(0.160318,0.005296,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160318,0.005296,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160318,0.005296,-0.008254,0.249864,0,0);}
.m19_c00196{transform:matrix(0.160445,0.001765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160445,0.001765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160445,0.001765,-0.002750,0.249985,0,0);}
.me5_c00196{transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);}
.mc8_c00196{transform:matrix(0.161200,0.001773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161200,0.001773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161200,0.001773,-0.002750,0.249985,0,0);}
.m5_c00196{transform:matrix(0.162460,0.001787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162460,0.001787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162460,0.001787,-0.002750,0.249985,0,0);}
.mc4_c00196{transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);}
.m2b_c00196{transform:matrix(0.164840,0.001813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164840,0.001813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164840,0.001813,-0.002750,0.249985,0,0);}
.m32_c00196{transform:matrix(0.165095,0.001816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165095,0.001816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165095,0.001816,-0.002750,0.249985,0,0);}
.ma2_c00196{transform:matrix(0.165265,0.001818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165265,0.001818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165265,0.001818,-0.002750,0.249985,0,0);}
.m7f_c00196{transform:matrix(0.165675,0.001822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165675,0.001822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165675,0.001822,-0.002750,0.249985,0,0);}
.mb5_c00196{transform:matrix(0.166915,0.001836,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166915,0.001836,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166915,0.001836,-0.002750,0.249985,0,0);}
.mbd_c00196{transform:matrix(0.168150,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168150,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168150,0.001850,-0.002750,0.249985,0,0);}
.m9_c00196{transform:matrix(0.168495,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168495,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168495,0.001853,-0.002750,0.249985,0,0);}
.m22_c00196{transform:matrix(0.168540,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168540,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168540,0.001854,-0.002750,0.249985,0,0);}
.md4_c00196{transform:matrix(0.170210,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170210,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170210,0.001872,-0.002750,0.249985,0,0);}
.mb3_c00196{transform:matrix(0.170625,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170625,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170625,0.001877,-0.002750,0.249985,0,0);}
.m16_c00196{transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);}
.md1_c00196{transform:matrix(0.172635,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172635,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172635,0.001899,-0.002750,0.249985,0,0);}
.mda_c00196{transform:matrix(0.173010,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173010,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173010,0.001903,-0.002750,0.249985,0,0);}
.meb_c00196{transform:matrix(0.173246,0.005723,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173246,0.005723,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173246,0.005723,-0.008254,0.249864,0,0);}
.m6b_c00196{transform:matrix(0.173644,0.001910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173644,0.001910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173644,0.001910,-0.002750,0.249985,0,0);}
.mc5_c00196{transform:matrix(0.174459,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174459,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174459,0.001919,-0.002750,0.249985,0,0);}
.m9a_c00196{transform:matrix(0.175364,0.001929,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175364,0.001929,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175364,0.001929,-0.002750,0.249985,0,0);}
.me6_c00196{transform:matrix(0.176524,0.001942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176524,0.001942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176524,0.001942,-0.002750,0.249985,0,0);}
.md2_c00196{transform:matrix(0.176739,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176739,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176739,0.001944,-0.002750,0.249985,0,0);}
.m2_c00196{transform:matrix(0.177569,0.001953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177569,0.001953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177569,0.001953,-0.002750,0.249985,0,0);}
.mb4_c00196{transform:matrix(0.178149,0.001960,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178149,0.001960,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178149,0.001960,-0.002750,0.249985,0,0);}
.m70_c00196{transform:matrix(0.178614,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178614,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178614,0.001965,-0.002750,0.249985,0,0);}
.m92_c00196{transform:matrix(0.180079,0.001981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180079,0.001981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180079,0.001981,-0.002750,0.249985,0,0);}
.m94_c00196{transform:matrix(0.180169,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180169,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180169,0.001982,-0.002750,0.249985,0,0);}
.m84_c00196{transform:matrix(0.180714,0.001988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180714,0.001988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180714,0.001988,-0.002750,0.249985,0,0);}
.ma3_c00196{transform:matrix(0.180849,0.001989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180849,0.001989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180849,0.001989,-0.002750,0.249985,0,0);}
.me1_c00196{transform:matrix(0.181009,0.001991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181009,0.001991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181009,0.001991,-0.002750,0.249985,0,0);}
.m7a_c00196{transform:matrix(0.181209,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181209,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181209,0.001993,-0.002750,0.249985,0,0);}
.m77_c00196{transform:matrix(0.182024,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182024,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182024,0.002002,-0.002750,0.249985,0,0);}
.m6e_c00196{transform:matrix(0.182284,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182284,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182284,0.002005,-0.002750,0.249985,0,0);}
.mca_c00196{transform:matrix(0.182524,0.002008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182524,0.002008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182524,0.002008,-0.002750,0.249985,0,0);}
.m30_c00196{transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);}
.mcf_c00196{transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);}
.m17_c00196{transform:matrix(0.183039,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183039,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183039,0.002013,-0.002750,0.249985,0,0);}
.m57_c00196{transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);}
.m64_c00196{transform:matrix(0.183484,0.002018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183484,0.002018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183484,0.002018,-0.002750,0.249985,0,0);}
.m9d_c00196{transform:matrix(0.183804,0.002022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183804,0.002022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183804,0.002022,-0.002750,0.249985,0,0);}
.m48_c00196{transform:matrix(0.183924,0.002023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183924,0.002023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183924,0.002023,-0.002750,0.249985,0,0);}
.md6_c00196{transform:matrix(0.183984,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183984,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183984,0.002024,-0.002750,0.249985,0,0);}
.m89_c00196{transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);}
.m8e_c00196{transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);}
.m9c_c00196{transform:matrix(0.185429,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185429,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185429,0.002040,-0.002750,0.249985,0,0);}
.m26_c00196{transform:matrix(0.185594,0.002042,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185594,0.002042,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185594,0.002042,-0.002750,0.249985,0,0);}
.mc6_c00196{transform:matrix(0.185679,0.002042,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185679,0.002042,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185679,0.002042,-0.002750,0.249985,0,0);}
.mbb_c00196{transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);}
.mc9_c00196{transform:matrix(0.186404,0.002050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186404,0.002050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186404,0.002050,-0.002750,0.249985,0,0);}
.m18_c00196{transform:matrix(0.186614,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186614,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186614,0.002053,-0.002750,0.249985,0,0);}
.m7_c00196{transform:matrix(0.187154,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187154,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187154,0.002059,-0.002750,0.249985,0,0);}
.m11_c00196{transform:matrix(0.187269,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187269,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187269,0.002060,-0.002750,0.249985,0,0);}
.m8f_c00196{transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);}
.me4_c00196{transform:matrix(0.187459,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187459,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187459,0.002062,-0.002750,0.249985,0,0);}
.m8c_c00196{transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);}
.maa_c00196{transform:matrix(0.187969,0.002068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187969,0.002068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187969,0.002068,-0.002750,0.249985,0,0);}
.m71_c00196{transform:matrix(0.188434,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188434,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188434,0.002073,-0.002750,0.249985,0,0);}
.m1b_c00196{transform:matrix(0.188494,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188494,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188494,0.002073,-0.002750,0.249985,0,0);}
.m51_c00196{transform:matrix(0.188609,0.002075,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188609,0.002075,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188609,0.002075,-0.002750,0.249985,0,0);}
.m99_c00196{transform:matrix(0.189429,0.002084,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189429,0.002084,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189429,0.002084,-0.002750,0.249985,0,0);}
.m12_c00196{transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);}
.m82_c00196{transform:matrix(0.190243,0.002093,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190243,0.002093,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190243,0.002093,-0.002750,0.249985,0,0);}
.m31_c00196{transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);}
.m47_c00196{transform:matrix(0.190563,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190563,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190563,0.002096,-0.002750,0.249985,0,0);}
.m85_c00196{transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);}
.m9b_c00196{transform:matrix(0.191078,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191078,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191078,0.002102,-0.002750,0.249985,0,0);}
.m38_c00196{transform:matrix(0.192023,0.002112,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192023,0.002112,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192023,0.002112,-0.002750,0.249985,0,0);}
.me3_c00196{transform:matrix(0.192788,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192788,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192788,0.002121,-0.002750,0.249985,0,0);}
.mce_c00196{transform:matrix(0.192843,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192843,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192843,0.002121,-0.002750,0.249985,0,0);}
.mb1_c00196{transform:matrix(0.192873,0.002122,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192873,0.002122,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192873,0.002122,-0.002750,0.249985,0,0);}
.m7e_c00196{transform:matrix(0.193018,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193018,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193018,0.002123,-0.002750,0.249985,0,0);}
.m20_c00196{transform:matrix(0.193168,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193168,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193168,0.002125,-0.002750,0.249985,0,0);}
.m66_c00196{transform:matrix(0.194168,0.002136,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194168,0.002136,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194168,0.002136,-0.002750,0.249985,0,0);}
.me8_c00196{transform:matrix(0.194374,0.006421,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194374,0.006421,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194374,0.006421,-0.008254,0.249864,0,0);}
.me9_c00196{transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194529,0.006426,-0.008254,0.249864,0,0);}
.mb2_c00196{transform:matrix(0.194783,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194783,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194783,0.002143,-0.002750,0.249985,0,0);}
.m6_c00196{transform:matrix(0.194793,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194793,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194793,0.002143,-0.002750,0.249985,0,0);}
.md9_c00196{transform:matrix(0.194858,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194858,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194858,0.002143,-0.002750,0.249985,0,0);}
.mcb_c00196{transform:matrix(0.194898,0.002144,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194898,0.002144,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194898,0.002144,-0.002750,0.249985,0,0);}
.m34_c00196{transform:matrix(0.195163,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195163,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195163,0.002147,-0.002750,0.249985,0,0);}
.m2f_c00196{transform:matrix(0.196298,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196298,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196298,0.002159,-0.002750,0.249985,0,0);}
.m67_c00196{transform:matrix(0.196388,0.002160,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196388,0.002160,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196388,0.002160,-0.002750,0.249985,0,0);}
.me_c00196{transform:matrix(0.196488,0.002161,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196488,0.002161,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196488,0.002161,-0.002750,0.249985,0,0);}
.m2c_c00196{transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);}
.md_c00196{transform:matrix(0.197153,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197153,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197153,0.002169,-0.002750,0.249985,0,0);}
.mbf_c00196{transform:matrix(0.197213,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197213,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197213,0.002169,-0.002750,0.249985,0,0);}
.mc_c00196{transform:matrix(0.197468,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197468,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197468,0.002172,-0.002750,0.249985,0,0);}
.m8a_c00196{transform:matrix(0.197843,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197843,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197843,0.002176,-0.002750,0.249985,0,0);}
.ma7_c00196{transform:matrix(0.197973,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197973,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197973,0.002178,-0.002750,0.249985,0,0);}
.md3_c00196{transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);}
.m5f_c00196{transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);}
.m7d_c00196{transform:matrix(0.199423,0.002194,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199423,0.002194,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199423,0.002194,-0.002750,0.249985,0,0);}
.md8_c00196{transform:matrix(0.199503,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199503,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199503,0.002195,-0.002750,0.249985,0,0);}
.m63_c00196{transform:matrix(0.199553,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199553,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199553,0.002195,-0.002750,0.249985,0,0);}
.me7_c00196{transform:matrix(0.199691,0.006596,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199691,0.006596,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199691,0.006596,-0.008254,0.249864,0,0);}
.mef_c00196{transform:matrix(0.199841,0.006601,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199841,0.006601,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199841,0.006601,-0.008254,0.249864,0,0);}
.m14_c00196{transform:matrix(0.199883,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199883,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199883,0.002199,-0.002750,0.249985,0,0);}
.m93_c00196{transform:matrix(0.200823,0.002209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200823,0.002209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200823,0.002209,-0.002750,0.249985,0,0);}
.ma0_c00196{transform:matrix(0.201113,0.002212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201113,0.002212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201113,0.002212,-0.002750,0.249985,0,0);}
.ma5_c00196{transform:matrix(0.202878,0.002232,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202878,0.002232,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202878,0.002232,-0.002750,0.249985,0,0);}
.m3c_c00196{transform:matrix(0.203878,0.002243,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203878,0.002243,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203878,0.002243,-0.002750,0.249985,0,0);}
.mea_c00196{transform:matrix(0.204264,0.006747,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204264,0.006747,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204264,0.006747,-0.008254,0.249864,0,0);}
.m1f_c00196{transform:matrix(0.204438,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204438,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204438,0.002249,-0.002750,0.249985,0,0);}
.m95_c00196{transform:matrix(0.204768,0.002252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204768,0.002252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204768,0.002252,-0.002750,0.249985,0,0);}
.m15_c00196{transform:matrix(0.205358,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205358,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205358,0.002259,-0.002750,0.249985,0,0);}
.m83_c00196{transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);}
.m87_c00196{transform:matrix(0.206068,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206068,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206068,0.002267,-0.002750,0.249985,0,0);}
.m97_c00196{transform:matrix(0.206168,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206168,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206168,0.002268,-0.002750,0.249985,0,0);}
.m58_c00196{transform:matrix(0.206712,0.002274,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206712,0.002274,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206712,0.002274,-0.002750,0.249985,0,0);}
.m3a_c00196{transform:matrix(0.206732,0.002274,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206732,0.002274,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206732,0.002274,-0.002750,0.249985,0,0);}
.ma6_c00196{transform:matrix(0.206967,0.002277,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206967,0.002277,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206967,0.002277,-0.002750,0.249985,0,0);}
.m4e_c00196{transform:matrix(0.207242,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207242,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207242,0.002280,-0.002750,0.249985,0,0);}
.m98_c00196{transform:matrix(0.207537,0.002283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207537,0.002283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207537,0.002283,-0.002750,0.249985,0,0);}
.m78_c00196{transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);}
.m88_c00196{transform:matrix(0.207762,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207762,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207762,0.002285,-0.002750,0.249985,0,0);}
.m49_c00196{transform:matrix(0.207812,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207812,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207812,0.002286,-0.002750,0.249985,0,0);}
.md7_c00196{transform:matrix(0.207842,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207842,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207842,0.002286,-0.002750,0.249985,0,0);}
.m80_c00196{transform:matrix(0.208872,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208872,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208872,0.002298,-0.002750,0.249985,0,0);}
.mb0_c00196{transform:matrix(0.208877,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208877,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208877,0.002298,-0.002750,0.249985,0,0);}
.m41_c00196{transform:matrix(0.209652,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209652,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209652,0.002306,-0.002750,0.249985,0,0);}
.m1c_c00196{transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);}
.mc0_c00196{transform:matrix(0.209842,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209842,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209842,0.002308,-0.002750,0.249985,0,0);}
.m2a_c00196{transform:matrix(0.210502,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210502,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210502,0.002316,-0.002750,0.249985,0,0);}
.m3f_c00196{transform:matrix(0.210652,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210652,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210652,0.002317,-0.002750,0.249985,0,0);}
.m7c_c00196{transform:matrix(0.210927,0.002320,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210927,0.002320,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210927,0.002320,-0.002750,0.249985,0,0);}
.mb9_c00196{transform:matrix(0.211102,0.002322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211102,0.002322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211102,0.002322,-0.002750,0.249985,0,0);}
.mdb_c00196{transform:matrix(0.211172,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211172,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211172,0.002323,-0.002750,0.249985,0,0);}
.m46_c00196{transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);}
.mec_c00196{transform:matrix(0.212269,0.007012,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212269,0.007012,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212269,0.007012,-0.008254,0.249864,0,0);}
.m6a_c00196{transform:matrix(0.212567,0.002338,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212567,0.002338,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212567,0.002338,-0.002750,0.249985,0,0);}
.m65_c00196{transform:matrix(0.212737,0.002340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212737,0.002340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212737,0.002340,-0.002750,0.249985,0,0);}
.m62_c00196{transform:matrix(0.213547,0.002349,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213547,0.002349,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213547,0.002349,-0.002750,0.249985,0,0);}
.mb7_c00196{transform:matrix(0.213692,0.002351,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213692,0.002351,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213692,0.002351,-0.002750,0.249985,0,0);}
.m29_c00196{transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);}
.ma1_c00196{transform:matrix(0.214057,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214057,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214057,0.002355,-0.002750,0.249985,0,0);}
.m50_c00196{transform:matrix(0.214132,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214132,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214132,0.002355,-0.002750,0.249985,0,0);}
.m4d_c00196{transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);}
.med_c00196{transform:matrix(0.214443,0.007084,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214443,0.007084,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214443,0.007084,-0.008254,0.249864,0,0);}
.md0_c00196{transform:matrix(0.214577,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214577,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214577,0.002360,-0.002750,0.249985,0,0);}
.m4c_c00196{transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);}
.m6f_c00196{transform:matrix(0.214817,0.002363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214817,0.002363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214817,0.002363,-0.002750,0.249985,0,0);}
.m79_c00196{transform:matrix(0.215042,0.002365,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215042,0.002365,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215042,0.002365,-0.002750,0.249985,0,0);}
.m8_c00196{transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);}
.mbc_c00196{transform:matrix(0.215982,0.002376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215982,0.002376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215982,0.002376,-0.002750,0.249985,0,0);}
.m1d_c00196{transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);}
.m39_c00196{transform:matrix(0.216297,0.002379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216297,0.002379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216297,0.002379,-0.002750,0.249985,0,0);}
.maf_c00196{transform:matrix(0.216627,0.002383,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216627,0.002383,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216627,0.002383,-0.002750,0.249985,0,0);}
.m52_c00196{transform:matrix(0.216962,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216962,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216962,0.002387,-0.002750,0.249985,0,0);}
.m2d_c00196{transform:matrix(0.217452,0.002392,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217452,0.002392,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217452,0.002392,-0.002750,0.249985,0,0);}
.m37_c00196{transform:matrix(0.217527,0.002393,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217527,0.002393,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217527,0.002393,-0.002750,0.249985,0,0);}
.m86_c00196{transform:matrix(0.217717,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217717,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217717,0.002395,-0.002750,0.249985,0,0);}
.m5d_c00196{transform:matrix(0.218062,0.002399,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218062,0.002399,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218062,0.002399,-0.002750,0.249985,0,0);}
.m72_c00196{transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);}
.m42_c00196{transform:matrix(0.219177,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219177,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219177,0.002411,-0.002750,0.249985,0,0);}
.m35_c00196{transform:matrix(0.219662,0.002416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219662,0.002416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219662,0.002416,-0.002750,0.249985,0,0);}
.m4_c00196{transform:matrix(0.220592,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220592,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220592,0.002427,-0.002750,0.249985,0,0);}
.m43_c00196{transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);}
.m59_c00196{transform:matrix(0.221177,0.002433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221177,0.002433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221177,0.002433,-0.002750,0.249985,0,0);}
.mb6_c00196{transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);}
.m96_c00196{transform:matrix(0.222027,0.002442,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222027,0.002442,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222027,0.002442,-0.002750,0.249985,0,0);}
.m73_c00196{transform:matrix(0.222312,0.002445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222312,0.002445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222312,0.002445,-0.002750,0.249985,0,0);}
.mab_c00196{transform:matrix(0.222337,0.002446,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222337,0.002446,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222337,0.002446,-0.002750,0.249985,0,0);}
.mf_c00196{transform:matrix(0.222852,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222852,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222852,0.002451,-0.002750,0.249985,0,0);}
.m7b_c00196{transform:matrix(0.223097,0.002454,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223097,0.002454,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223097,0.002454,-0.002750,0.249985,0,0);}
.m3d_c00196{transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);}
.mbe_c00196{transform:matrix(0.223271,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223271,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223271,0.002456,-0.002750,0.249985,0,0);}
.m76_c00196{transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);}
.md5_c00196{transform:matrix(0.223646,0.002460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223646,0.002460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223646,0.002460,-0.002750,0.249985,0,0);}
.m36_c00196{transform:matrix(0.225146,0.002477,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225146,0.002477,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225146,0.002477,-0.002750,0.249985,0,0);}
.m25_c00196{transform:matrix(0.225446,0.002480,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225446,0.002480,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225446,0.002480,-0.002750,0.249985,0,0);}
.mc2_c00196{transform:matrix(0.226701,0.002494,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226701,0.002494,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226701,0.002494,-0.002750,0.249985,0,0);}
.m81_c00196{transform:matrix(0.226961,0.002497,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226961,0.002497,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226961,0.002497,-0.002750,0.249985,0,0);}
.mc3_c00196{transform:matrix(0.226996,0.002497,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226996,0.002497,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226996,0.002497,-0.002750,0.249985,0,0);}
.m28_c00196{transform:matrix(0.227861,0.002506,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227861,0.002506,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227861,0.002506,-0.002750,0.249985,0,0);}
.m91_c00196{transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);}
.m40_c00196{transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);}
.m4a_c00196{transform:matrix(0.229106,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229106,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229106,0.002520,-0.002750,0.249985,0,0);}
.m5c_c00196{transform:matrix(0.229441,0.002524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229441,0.002524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229441,0.002524,-0.002750,0.249985,0,0);}
.m75_c00196{transform:matrix(0.229866,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229866,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229866,0.002529,-0.002750,0.249985,0,0);}
.mdf_c00196{transform:matrix(0.229946,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229946,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229946,0.002529,-0.002750,0.249985,0,0);}
.m74_c00196{transform:matrix(0.231731,0.002549,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231731,0.002549,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231731,0.002549,-0.002750,0.249985,0,0);}
.mba_c00196{transform:matrix(0.231796,0.002550,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231796,0.002550,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231796,0.002550,-0.002750,0.249985,0,0);}
.m3e_c00196{transform:matrix(0.233321,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233321,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233321,0.002567,-0.002750,0.249985,0,0);}
.m9f_c00196{transform:matrix(0.234986,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234986,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234986,0.002585,-0.002750,0.249985,0,0);}
.m60_c00196{transform:matrix(0.235126,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235126,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235126,0.002586,-0.002750,0.249985,0,0);}
.mb_c00196{transform:matrix(0.235211,0.002587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235211,0.002587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235211,0.002587,-0.002750,0.249985,0,0);}
.m5b_c00196{transform:matrix(0.236586,0.002602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236586,0.002602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236586,0.002602,-0.002750,0.249985,0,0);}
.m5e_c00196{transform:matrix(0.236791,0.002605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236791,0.002605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236791,0.002605,-0.002750,0.249985,0,0);}
.m3b_c00196{transform:matrix(0.237446,0.002612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237446,0.002612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237446,0.002612,-0.002750,0.249985,0,0);}
.me2_c00196{transform:matrix(0.238596,0.002625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238596,0.002625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238596,0.002625,-0.002750,0.249985,0,0);}
.mf0_c00196{transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241305,0.000000,0.000000,0.250000,0,0);}
.mc1_c00196{transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);}
.m1e_c00196{transform:matrix(0.243940,0.002683,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243940,0.002683,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243940,0.002683,-0.002750,0.249985,0,0);}
.me0_c00196{transform:matrix(0.244805,0.002693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244805,0.002693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244805,0.002693,-0.002750,0.249985,0,0);}
.m61_c00196{transform:matrix(0.245360,0.002699,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245360,0.002699,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245360,0.002699,-0.002750,0.249985,0,0);}
.mdd_c00196{transform:matrix(0.245715,0.002703,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245715,0.002703,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245715,0.002703,-0.002750,0.249985,0,0);}
.m21_c00196{transform:matrix(0.246155,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246155,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246155,0.002708,-0.002750,0.249985,0,0);}
.m2e_c00196{transform:matrix(0.246955,0.002717,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246955,0.002717,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246955,0.002717,-0.002750,0.249985,0,0);}
.m27_c00196{transform:matrix(0.249415,0.002744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249415,0.002744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249415,0.002744,-0.002750,0.249985,0,0);}
.m4f_c00196{transform:matrix(0.250850,0.002759,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250850,0.002759,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250850,0.002759,-0.002750,0.249985,0,0);}
.mde_c00196{transform:matrix(0.253245,0.002786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253245,0.002786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253245,0.002786,-0.002750,0.249985,0,0);}
.m5a_c00196{transform:matrix(0.254090,0.002795,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254090,0.002795,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254090,0.002795,-0.002750,0.249985,0,0);}
.m1a_c00196{transform:matrix(0.258019,0.002838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258019,0.002838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258019,0.002838,-0.002750,0.249985,0,0);}
.m45_c00196{transform:matrix(0.260229,0.002863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260229,0.002863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260229,0.002863,-0.002750,0.249985,0,0);}
.m24_c00196{transform:matrix(0.260729,0.002868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260729,0.002868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260729,0.002868,-0.002750,0.249985,0,0);}
.m6d_c00196{transform:matrix(0.267734,0.002945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267734,0.002945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267734,0.002945,-0.002750,0.249985,0,0);}
.m44_c00196{transform:matrix(0.270504,0.002976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270504,0.002976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270504,0.002976,-0.002750,0.249985,0,0);}
.m9e_c00196{transform:matrix(0.270844,0.002979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270844,0.002979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270844,0.002979,-0.002750,0.249985,0,0);}
.m54_c00196{transform:matrix(0.271034,0.002981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271034,0.002981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271034,0.002981,-0.002750,0.249985,0,0);}
.m53_c00196{transform:matrix(0.272349,0.002996,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272349,0.002996,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272349,0.002996,-0.002750,0.249985,0,0);}
.m3_c00196{transform:matrix(0.272903,0.003002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272903,0.003002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272903,0.003002,-0.002750,0.249985,0,0);}
.m56_c00196{transform:matrix(0.276938,0.003046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276938,0.003046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276938,0.003046,-0.002750,0.249985,0,0);}
.m69_c00196{transform:matrix(0.277628,0.003054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277628,0.003054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277628,0.003054,-0.002750,0.249985,0,0);}
.m90_c00196{transform:matrix(0.277973,0.003058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277973,0.003058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277973,0.003058,-0.002750,0.249985,0,0);}
.mdc_c00196{transform:matrix(0.291342,0.003205,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291342,0.003205,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291342,0.003205,-0.002750,0.249985,0,0);}
.m6c_c00196{transform:matrix(0.301797,0.003320,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301797,0.003320,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301797,0.003320,-0.002750,0.249985,0,0);}
.m55_c00196{transform:matrix(0.310096,0.003411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.310096,0.003411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.310096,0.003411,-0.002750,0.249985,0,0);}
.m68_c00196{transform:matrix(0.316286,0.003479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316286,0.003479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316286,0.003479,-0.002750,0.249985,0,0);}
.m23_c00196{transform:matrix(0.329075,0.003620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329075,0.003620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329075,0.003620,-0.002750,0.249985,0,0);}
.mae_c00196{transform:matrix(0.374112,0.004115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.374112,0.004115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.374112,0.004115,-0.002750,0.249985,0,0);}
.mad_c00196{transform:matrix(0.472416,0.005197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.472416,0.005197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.472416,0.005197,-0.002750,0.249985,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:0.000000px;}
.fc0_c00196{color:transparent;}
.fs11_c00196{font-size:42.000000px;}
.fse_c00196{font-size:57.753494px;}
.fs6_c00196{font-size:58.803557px;}
.fs10_c00196{font-size:59.822762px;}
.fs9_c00196{font-size:59.853621px;}
.fs4_c00196{font-size:60.903684px;}
.fs7_c00196{font-size:61.953748px;}
.fs3_c00196{font-size:63.003811px;}
.fsb_c00196{font-size:64.053875px;}
.fs5_c00196{font-size:65.103938px;}
.fsf_c00196{font-size:66.119895px;}
.fs8_c00196{font-size:66.154002px;}
.fsa_c00196{font-size:67.204065px;}
.fsc_c00196{font-size:68.254129px;}
.fs2_c00196{font-size:69.304193px;}
.fsd_c00196{font-size:70.354256px;}
.fs1_c00196{font-size:71.404320px;}
.fs0_c00196{font-size:92.405590px;}
.y0_c00196{bottom:0.000000px;}
.yf2_c00196{bottom:17.187551px;}
.yf1_c00196{bottom:21.926703px;}
.yf0_c00196{bottom:22.964826px;}
.yef_c00196{bottom:33.497566px;}
.yee_c00196{bottom:34.105179px;}
.yed_c00196{bottom:36.357577px;}
.yec_c00196{bottom:38.843269px;}
.yeb_c00196{bottom:39.898857px;}
.yea_c00196{bottom:41.587500px;}
.yf3_c00196{bottom:42.660000px;}
.ye9_c00196{bottom:51.477808px;}
.ye8_c00196{bottom:51.983916px;}
.ye7_c00196{bottom:52.536549px;}
.ye6_c00196{bottom:53.550711px;}
.ye5_c00196{bottom:55.100931px;}
.ye4_c00196{bottom:55.721629px;}
.ye3_c00196{bottom:56.395615px;}
.ye2_c00196{bottom:68.801350px;}
.ye1_c00196{bottom:69.182287px;}
.ye0_c00196{bottom:70.113502px;}
.ydf_c00196{bottom:71.001360px;}
.yde_c00196{bottom:71.245159px;}
.ydd_c00196{bottom:85.471816px;}
.ydc_c00196{bottom:85.643830px;}
.ydb_c00196{bottom:86.048566px;}
.yda_c00196{bottom:86.591602px;}
.yd9_c00196{bottom:86.910249px;}
.yd8_c00196{bottom:87.299473px;}
.yd7_c00196{bottom:87.984820px;}
.yd6_c00196{bottom:102.499791px;}
.yd5_c00196{bottom:102.682021px;}
.yd4_c00196{bottom:103.296799px;}
.yd3_c00196{bottom:103.570129px;}
.yd2_c00196{bottom:104.422207px;}
.yd1_c00196{bottom:105.401382px;}
.yd0_c00196{bottom:105.561408px;}
.ycf_c00196{bottom:106.085400px;}
.yce_c00196{bottom:106.345663px;}
.ycd_c00196{bottom:120.659809px;}
.ycc_c00196{bottom:120.827622px;}
.ycb_c00196{bottom:121.361529px;}
.yca_c00196{bottom:121.813890px;}
.yc9_c00196{bottom:122.058696px;}
.yc8_c00196{bottom:122.698995px;}
.yc7_c00196{bottom:123.584248px;}
.yc6_c00196{bottom:123.896793px;}
.yc1_c00196{bottom:135.734950px;}
.ybf_c00196{bottom:135.735321px;}
.yc0_c00196{bottom:135.735667px;}
.yc2_c00196{bottom:135.735687px;}
.ybe_c00196{bottom:135.735768px;}
.yc3_c00196{bottom:135.735990px;}
.yc5_c00196{bottom:135.736386px;}
.yc4_c00196{bottom:135.736699px;}
.yb7_c00196{bottom:153.787356px;}
.yb8_c00196{bottom:153.787492px;}
.yb9_c00196{bottom:153.787978px;}
.ybb_c00196{bottom:153.788101px;}
.ybc_c00196{bottom:153.788194px;}
.yba_c00196{bottom:153.788715px;}
.ybd_c00196{bottom:153.788934px;}
.yb6_c00196{bottom:170.659788px;}
.yb5_c00196{bottom:171.094957px;}
.yb4_c00196{bottom:171.885189px;}
.yb3_c00196{bottom:173.028916px;}
.yb2_c00196{bottom:173.788158px;}
.yb1_c00196{bottom:174.604696px;}
.yb0_c00196{bottom:174.825604px;}
.yaf_c00196{bottom:175.573911px;}
.yae_c00196{bottom:175.731370px;}
.yad_c00196{bottom:187.850632px;}
.yac_c00196{bottom:187.851306px;}
.yab_c00196{bottom:187.851589px;}
.ya6_c00196{bottom:187.851874px;}
.ya5_c00196{bottom:187.851978px;}
.ya7_c00196{bottom:187.852131px;}
.yaa_c00196{bottom:187.852233px;}
.ya9_c00196{bottom:187.852603px;}
.ya8_c00196{bottom:187.852630px;}
.ya4_c00196{bottom:204.500313px;}
.ya3_c00196{bottom:205.697734px;}
.ya2_c00196{bottom:206.389662px;}
.ya1_c00196{bottom:207.173956px;}
.ya0_c00196{bottom:207.265531px;}
.y9f_c00196{bottom:207.598419px;}
.y9e_c00196{bottom:222.949410px;}
.y9d_c00196{bottom:222.949677px;}
.y9c_c00196{bottom:222.950080px;}
.y9b_c00196{bottom:222.950137px;}
.y9a_c00196{bottom:222.950851px;}
.y99_c00196{bottom:222.951535px;}
.y98_c00196{bottom:240.235762px;}
.y96_c00196{bottom:240.235830px;}
.y95_c00196{bottom:240.235843px;}
.y97_c00196{bottom:240.235876px;}
.y94_c00196{bottom:240.236547px;}
.y93_c00196{bottom:240.236560px;}
.y92_c00196{bottom:240.236661px;}
.y8f_c00196{bottom:257.207756px;}
.y8c_c00196{bottom:257.207976px;}
.y8d_c00196{bottom:257.208113px;}
.y89_c00196{bottom:257.208194px;}
.y8b_c00196{bottom:257.208273px;}
.y8e_c00196{bottom:257.208459px;}
.y90_c00196{bottom:257.208492px;}
.y8a_c00196{bottom:257.208677px;}
.y91_c00196{bottom:257.208718px;}
.y85_c00196{bottom:274.839548px;}
.y86_c00196{bottom:274.839791px;}
.y81_c00196{bottom:274.839792px;}
.y83_c00196{bottom:274.839991px;}
.y88_c00196{bottom:274.840080px;}
.y87_c00196{bottom:274.840197px;}
.y84_c00196{bottom:274.840281px;}
.y82_c00196{bottom:274.840425px;}
.y80_c00196{bottom:292.308986px;}
.y7e_c00196{bottom:292.309220px;}
.y7c_c00196{bottom:292.309350px;}
.y7b_c00196{bottom:292.309467px;}
.y7f_c00196{bottom:292.309673px;}
.y7d_c00196{bottom:292.309936px;}
.y7a_c00196{bottom:292.310141px;}
.y79_c00196{bottom:292.310874px;}
.y74_c00196{bottom:309.474377px;}
.y75_c00196{bottom:309.474589px;}
.y78_c00196{bottom:309.474618px;}
.y77_c00196{bottom:309.474808px;}
.y76_c00196{bottom:309.475059px;}
.y69_c00196{bottom:326.559939px;}
.y6a_c00196{bottom:326.560346px;}
.y73_c00196{bottom:326.560437px;}
.y6b_c00196{bottom:326.560799px;}
.y72_c00196{bottom:326.560991px;}
.y6c_c00196{bottom:326.561535px;}
.y71_c00196{bottom:326.561634px;}
.y6d_c00196{bottom:326.561761px;}
.y6f_c00196{bottom:326.561811px;}
.y6e_c00196{bottom:326.561928px;}
.y70_c00196{bottom:326.562158px;}
.y68_c00196{bottom:342.571371px;}
.y67_c00196{bottom:342.571548px;}
.y66_c00196{bottom:342.571891px;}
.y65_c00196{bottom:342.572475px;}
.y64_c00196{bottom:342.572892px;}
.y60_c00196{bottom:342.572929px;}
.y61_c00196{bottom:342.572993px;}
.y63_c00196{bottom:342.573266px;}
.y62_c00196{bottom:342.573279px;}
.y5d_c00196{bottom:359.892948px;}
.y5e_c00196{bottom:359.893467px;}
.y5c_c00196{bottom:359.893665px;}
.y5f_c00196{bottom:359.893950px;}
.y5b_c00196{bottom:376.058351px;}
.y5a_c00196{bottom:376.058451px;}
.y59_c00196{bottom:376.058705px;}
.y58_c00196{bottom:376.059408px;}
.y57_c00196{bottom:376.059435px;}
.y56_c00196{bottom:376.059612px;}
.y55_c00196{bottom:376.060272px;}
.y50_c00196{bottom:393.841170px;}
.y4f_c00196{bottom:393.841410px;}
.y4e_c00196{bottom:393.841421px;}
.y54_c00196{bottom:393.841452px;}
.y52_c00196{bottom:393.841626px;}
.y53_c00196{bottom:393.841749px;}
.y51_c00196{bottom:393.841850px;}
.y4b_c00196{bottom:410.942912px;}
.y49_c00196{bottom:410.942919px;}
.y4a_c00196{bottom:410.943059px;}
.y48_c00196{bottom:410.943156px;}
.y4c_c00196{bottom:410.943365px;}
.y47_c00196{bottom:410.943813px;}
.y4d_c00196{bottom:410.944101px;}
.y45_c00196{bottom:427.361792px;}
.y46_c00196{bottom:427.361841px;}
.y44_c00196{bottom:427.361982px;}
.y41_c00196{bottom:427.362473px;}
.y43_c00196{bottom:427.362655px;}
.y42_c00196{bottom:427.362806px;}
.y40_c00196{bottom:427.363099px;}
.y3e_c00196{bottom:444.137874px;}
.y3a_c00196{bottom:444.138039px;}
.y3b_c00196{bottom:444.138192px;}
.y3f_c00196{bottom:444.138310px;}
.y3c_c00196{bottom:444.138452px;}
.y3d_c00196{bottom:444.138604px;}
.y39_c00196{bottom:444.138682px;}
.y38_c00196{bottom:461.100193px;}
.y37_c00196{bottom:461.100927px;}
.y36_c00196{bottom:461.101117px;}
.y35_c00196{bottom:461.101641px;}
.y34_c00196{bottom:461.102345px;}
.y33_c00196{bottom:461.102521px;}
.y32_c00196{bottom:461.102925px;}
.y31_c00196{bottom:461.103598px;}
.y2a_c00196{bottom:478.820667px;}
.y2c_c00196{bottom:478.820706px;}
.y2b_c00196{bottom:478.821256px;}
.y2d_c00196{bottom:478.821412px;}
.y2e_c00196{bottom:478.822029px;}
.y30_c00196{bottom:478.822665px;}
.y2f_c00196{bottom:478.822692px;}
.y27_c00196{bottom:496.714930px;}
.y29_c00196{bottom:496.715386px;}
.y26_c00196{bottom:496.715587px;}
.y28_c00196{bottom:496.715637px;}
.y25_c00196{bottom:496.715991px;}
.y22_c00196{bottom:496.716148px;}
.y23_c00196{bottom:496.716421px;}
.y24_c00196{bottom:496.716558px;}
.y21_c00196{bottom:513.417363px;}
.y20_c00196{bottom:513.417690px;}
.y1c_c00196{bottom:513.417798px;}
.y1d_c00196{bottom:513.417921px;}
.y1f_c00196{bottom:513.417987px;}
.y1e_c00196{bottom:513.418270px;}
.y1a_c00196{bottom:530.345542px;}
.y19_c00196{bottom:530.345676px;}
.y1b_c00196{bottom:530.345772px;}
.y18_c00196{bottom:530.345913px;}
.y17_c00196{bottom:530.346646px;}
.y16_c00196{bottom:530.346763px;}
.y15_c00196{bottom:530.347224px;}
.yd_c00196{bottom:547.426596px;}
.y12_c00196{bottom:547.426725px;}
.yc_c00196{bottom:547.426833px;}
.y14_c00196{bottom:547.426864px;}
.y10_c00196{bottom:547.427022px;}
.y13_c00196{bottom:547.427028px;}
.ye_c00196{bottom:547.427199px;}
.y11_c00196{bottom:547.427368px;}
.yf_c00196{bottom:547.427545px;}
.y3_c00196{bottom:564.949965px;}
.y7_c00196{bottom:564.950140px;}
.y5_c00196{bottom:564.950271px;}
.y8_c00196{bottom:564.950503px;}
.y4_c00196{bottom:564.950521px;}
.y6_c00196{bottom:564.950707px;}
.yb_c00196{bottom:564.950839px;}
.y9_c00196{bottom:564.950866px;}
.ya_c00196{bottom:564.951393px;}
.y2_c00196{bottom:576.000118px;}
.y1_c00196{bottom:577.531500px;}
.h13_c00196{height:42.000000px;}
.h10_c00196{height:57.753494px;}
.h8_c00196{height:58.803557px;}
.h12_c00196{height:59.822762px;}
.hb_c00196{height:59.853621px;}
.h6_c00196{height:60.903684px;}
.h9_c00196{height:61.953748px;}
.h5_c00196{height:63.003811px;}
.hd_c00196{height:64.053875px;}
.h7_c00196{height:65.103938px;}
.h11_c00196{height:66.119895px;}
.ha_c00196{height:66.154002px;}
.hc_c00196{height:67.204065px;}
.he_c00196{height:68.254129px;}
.h4_c00196{height:69.304193px;}
.hf_c00196{height:70.354256px;}
.h3_c00196{height:71.404320px;}
.h2_c00196{height:92.405590px;}
.h1_c00196{height:623.250000px;}
.h0_c00196{height:623.400000px;}
.w0_c00196{width:366.390000px;}
.w1_c00196{width:366.750000px;}
.x0_c00196{left:0.000000px;}
.x3a_c00196{left:21.058614px;}
.x1_c00196{left:26.374500px;}
.xb_c00196{left:30.240857px;}
.x23_c00196{left:31.592444px;}
.x35_c00196{left:32.669109px;}
.x56_c00196{left:33.743762px;}
.x6c_c00196{left:34.818900px;}
.x41_c00196{left:35.907738px;}
.x80_c00196{left:37.530000px;}
.x69_c00196{left:39.241290px;}
.x42_c00196{left:43.468646px;}
.x79_c00196{left:44.634408px;}
.x6a_c00196{left:47.555064px;}
.x6d_c00196{left:49.399166px;}
.x2f_c00196{left:51.302873px;}
.x4e_c00196{left:53.455221px;}
.x7e_c00196{left:55.101792px;}
.x76_c00196{left:56.292840px;}
.x3_c00196{left:57.783426px;}
.x73_c00196{left:59.772225px;}
.x64_c00196{left:61.013234px;}
.x4a_c00196{left:63.178104px;}
.x62_c00196{left:64.440173px;}
.x29_c00196{left:66.423786px;}
.x3b_c00196{left:68.851389px;}
.x1c_c00196{left:72.634739px;}
.x4d_c00196{left:74.787588px;}
.x65_c00196{left:76.673631px;}
.x57_c00196{left:78.296157px;}
.x51_c00196{left:79.376714px;}
.x36_c00196{left:80.731917px;}
.xc_c00196{left:81.814094px;}
.x19_c00196{left:85.865534px;}
.x1d_c00196{left:87.215004px;}
.x46_c00196{left:90.720551px;}
.x14_c00196{left:92.885078px;}
.x43_c00196{left:95.581949px;}
.x3e_c00196{left:98.552886px;}
.x5c_c00196{left:100.168133px;}
.x52_c00196{left:102.327986px;}
.x24_c00196{left:103.956705px;}
.x3f_c00196{left:109.894256px;}
.x30_c00196{left:113.945946px;}
.x58_c00196{left:115.019096px;}
.x3c_c00196{left:120.424626px;}
.x5f_c00196{left:121.499594px;}
.x4_c00196{left:122.586764px;}
.x4f_c00196{left:126.899598px;}
.x7d_c00196{left:128.186341px;}
.x47_c00196{left:130.142327px;}
.x1e_c00196{left:135.817878px;}
.x37_c00196{left:137.435781px;}
.xd_c00196{left:140.948255px;}
.x63_c00196{left:144.064673px;}
.x15_c00196{left:145.538447px;}
.x5d_c00196{left:147.420842px;}
.x38_c00196{left:149.587250px;}
.x5_c00196{left:153.368993px;}
.x2a_c00196{left:155.260028px;}
.xe_c00196{left:157.418751px;}
.x1f_c00196{left:159.039183px;}
.x2_c00196{left:165.591000px;}
.x1a_c00196{left:169.571165px;}
.x53_c00196{left:171.991917px;}
.x5e_c00196{left:174.152576px;}
.x2b_c00196{left:175.781003px;}
.x74_c00196{left:177.047135px;}
.x44_c00196{left:180.636228px;}
.x31_c00196{left:183.339845px;}
.x4b_c00196{left:184.685322px;}
.x25_c00196{left:185.770605px;}
.x7a_c00196{left:186.929834px;}
.x66_c00196{left:188.189628px;}
.xf_c00196{left:193.061558px;}
.x59_c00196{left:194.134166px;}
.x70_c00196{left:196.018859px;}
.x2c_c00196{left:197.922176px;}
.x6_c00196{left:201.971867px;}
.x48_c00196{left:203.586704px;}
.x26_c00196{left:204.671399px;}
.x54_c00196{left:205.744493px;}
.x40_c00196{left:207.910119px;}
.x10_c00196{left:209.532054px;}
.x5a_c00196{left:210.604662px;}
.x16_c00196{left:217.362626px;}
.x20_c00196{left:220.333592px;}
.x4c_c00196{left:223.837058px;}
.x32_c00196{left:224.921877px;}
.x11_c00196{left:230.593095px;}
.x7b_c00196{left:237.666818px;}
.x71_c00196{left:238.951056px;}
.x21_c00196{left:240.044484px;}
.x3d_c00196{left:241.121729px;}
.x17_c00196{left:243.014228px;}
.x7_c00196{left:245.444130px;}
.x45_c00196{left:246.789731px;}
.x55_c00196{left:248.136624px;}
.x39_c00196{left:249.223295px;}
.x50_c00196{left:250.567064px;}
.x67_c00196{left:251.912834px;}
.x6e_c00196{left:257.042295px;}
.x7f_c00196{left:261.194534px;}
.x27_c00196{left:264.345626px;}
.x78_c00196{left:270.418416px;}
.x60_c00196{left:271.897277px;}
.x68_c00196{left:272.973875px;}
.x2d_c00196{left:276.767213px;}
.x6b_c00196{left:283.302824px;}
.x75_c00196{left:284.716275px;}
.x12_c00196{left:287.026926px;}
.x8_c00196{left:288.916394px;}
.x7c_c00196{left:290.547071px;}
.x5b_c00196{left:293.500194px;}
.x1b_c00196{left:295.668911px;}
.x2e_c00196{left:297.018155px;}
.x33_c00196{left:298.906320px;}
.x49_c00196{left:301.062485px;}
.x28_c00196{left:304.307460px;}
.x9_c00196{left:307.007088px;}
.x61_c00196{left:309.698847px;}
.x13_c00196{left:312.408495px;}
.x34_c00196{left:316.186916px;}
.x22_c00196{left:318.349455px;}
.x18_c00196{left:325.639727px;}
.x6f_c00196{left:330.756722px;}
.x77_c00196{left:332.205785px;}
.x72_c00196{left:336.426854px;}
.xa_c00196{left:342.379862px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.fs11_c00196{font-size:37.333333pt;}
.fse_c00196{font-size:51.336439pt;}
.fs6_c00196{font-size:52.269829pt;}
.fs10_c00196{font-size:53.175788pt;}
.fs9_c00196{font-size:53.203219pt;}
.fs4_c00196{font-size:54.136608pt;}
.fs7_c00196{font-size:55.069998pt;}
.fs3_c00196{font-size:56.003388pt;}
.fsb_c00196{font-size:56.936778pt;}
.fs5_c00196{font-size:57.870167pt;}
.fsf_c00196{font-size:58.773240pt;}
.fs8_c00196{font-size:58.803557pt;}
.fsa_c00196{font-size:59.736947pt;}
.fsc_c00196{font-size:60.670337pt;}
.fs2_c00196{font-size:61.603727pt;}
.fsd_c00196{font-size:62.537116pt;}
.fs1_c00196{font-size:63.470506pt;}
.fs0_c00196{font-size:82.138302pt;}
.y0_c00196{bottom:0.000000pt;}
.yf2_c00196{bottom:15.277823pt;}
.yf1_c00196{bottom:19.490403pt;}
.yf0_c00196{bottom:20.413179pt;}
.yef_c00196{bottom:29.775615pt;}
.yee_c00196{bottom:30.315715pt;}
.yed_c00196{bottom:32.317847pt;}
.yec_c00196{bottom:34.527351pt;}
.yeb_c00196{bottom:35.465651pt;}
.yea_c00196{bottom:36.966667pt;}
.yf3_c00196{bottom:37.920000pt;}
.ye9_c00196{bottom:45.758052pt;}
.ye8_c00196{bottom:46.207925pt;}
.ye7_c00196{bottom:46.699155pt;}
.ye6_c00196{bottom:47.600632pt;}
.ye5_c00196{bottom:48.978605pt;}
.ye4_c00196{bottom:49.530337pt;}
.ye3_c00196{bottom:50.129436pt;}
.ye2_c00196{bottom:61.156756pt;}
.ye1_c00196{bottom:61.495367pt;}
.ye0_c00196{bottom:62.323113pt;}
.ydf_c00196{bottom:63.112320pt;}
.yde_c00196{bottom:63.329031pt;}
.ydd_c00196{bottom:75.974948pt;}
.ydc_c00196{bottom:76.127849pt;}
.ydb_c00196{bottom:76.487615pt;}
.yda_c00196{bottom:76.970313pt;}
.yd9_c00196{bottom:77.253555pt;}
.yd8_c00196{bottom:77.599532pt;}
.yd7_c00196{bottom:78.208729pt;}
.yd6_c00196{bottom:91.110925pt;}
.yd5_c00196{bottom:91.272908pt;}
.yd4_c00196{bottom:91.819377pt;}
.yd3_c00196{bottom:92.062337pt;}
.yd2_c00196{bottom:92.819740pt;}
.yd1_c00196{bottom:93.690117pt;}
.yd0_c00196{bottom:93.832363pt;}
.ycf_c00196{bottom:94.298133pt;}
.yce_c00196{bottom:94.529479pt;}
.ycd_c00196{bottom:107.253164pt;}
.ycc_c00196{bottom:107.402331pt;}
.ycb_c00196{bottom:107.876915pt;}
.yca_c00196{bottom:108.279013pt;}
.yc9_c00196{bottom:108.496619pt;}
.yc8_c00196{bottom:109.065773pt;}
.yc7_c00196{bottom:109.852665pt;}
.yc6_c00196{bottom:110.130483pt;}
.yc1_c00196{bottom:120.653289pt;}
.ybf_c00196{bottom:120.653619pt;}
.yc0_c00196{bottom:120.653927pt;}
.yc2_c00196{bottom:120.653944pt;}
.ybe_c00196{bottom:120.654016pt;}
.yc3_c00196{bottom:120.654213pt;}
.yc5_c00196{bottom:120.654565pt;}
.yc4_c00196{bottom:120.654844pt;}
.yb7_c00196{bottom:136.699872pt;}
.yb8_c00196{bottom:136.699993pt;}
.yb9_c00196{bottom:136.700425pt;}
.ybb_c00196{bottom:136.700535pt;}
.ybc_c00196{bottom:136.700617pt;}
.yba_c00196{bottom:136.701080pt;}
.ybd_c00196{bottom:136.701275pt;}
.yb6_c00196{bottom:151.697589pt;}
.yb5_c00196{bottom:152.084407pt;}
.yb4_c00196{bottom:152.786835pt;}
.yb3_c00196{bottom:153.803481pt;}
.yb2_c00196{bottom:154.478363pt;}
.yb1_c00196{bottom:155.204175pt;}
.yb0_c00196{bottom:155.400537pt;}
.yaf_c00196{bottom:156.065699pt;}
.yae_c00196{bottom:156.205663pt;}
.yad_c00196{bottom:166.978340pt;}
.yac_c00196{bottom:166.978939pt;}
.yab_c00196{bottom:166.979191pt;}
.ya6_c00196{bottom:166.979444pt;}
.ya5_c00196{bottom:166.979536pt;}
.ya7_c00196{bottom:166.979672pt;}
.yaa_c00196{bottom:166.979763pt;}
.ya9_c00196{bottom:166.980092pt;}
.ya8_c00196{bottom:166.980116pt;}
.ya4_c00196{bottom:181.778056pt;}
.ya3_c00196{bottom:182.842431pt;}
.ya2_c00196{bottom:183.457477pt;}
.ya1_c00196{bottom:184.154628pt;}
.ya0_c00196{bottom:184.236028pt;}
.y9f_c00196{bottom:184.531928pt;}
.y9e_c00196{bottom:198.177253pt;}
.y9d_c00196{bottom:198.177491pt;}
.y9c_c00196{bottom:198.177849pt;}
.y9b_c00196{bottom:198.177900pt;}
.y9a_c00196{bottom:198.178535pt;}
.y99_c00196{bottom:198.179143pt;}
.y98_c00196{bottom:213.542900pt;}
.y96_c00196{bottom:213.542960pt;}
.y95_c00196{bottom:213.542972pt;}
.y97_c00196{bottom:213.543001pt;}
.y94_c00196{bottom:213.543597pt;}
.y93_c00196{bottom:213.543609pt;}
.y92_c00196{bottom:213.543699pt;}
.y8f_c00196{bottom:228.629116pt;}
.y8c_c00196{bottom:228.629312pt;}
.y8d_c00196{bottom:228.629433pt;}
.y89_c00196{bottom:228.629505pt;}
.y8b_c00196{bottom:228.629576pt;}
.y8e_c00196{bottom:228.629741pt;}
.y90_c00196{bottom:228.629771pt;}
.y8a_c00196{bottom:228.629935pt;}
.y91_c00196{bottom:228.629972pt;}
.y85_c00196{bottom:244.301820pt;}
.y86_c00196{bottom:244.302036pt;}
.y81_c00196{bottom:244.302037pt;}
.y83_c00196{bottom:244.302215pt;}
.y88_c00196{bottom:244.302293pt;}
.y87_c00196{bottom:244.302397pt;}
.y84_c00196{bottom:244.302472pt;}
.y82_c00196{bottom:244.302600pt;}
.y80_c00196{bottom:259.830209pt;}
.y7e_c00196{bottom:259.830417pt;}
.y7c_c00196{bottom:259.830533pt;}
.y7b_c00196{bottom:259.830637pt;}
.y7f_c00196{bottom:259.830820pt;}
.y7d_c00196{bottom:259.831055pt;}
.y7a_c00196{bottom:259.831236pt;}
.y79_c00196{bottom:259.831888pt;}
.y74_c00196{bottom:275.088335pt;}
.y75_c00196{bottom:275.088524pt;}
.y78_c00196{bottom:275.088549pt;}
.y77_c00196{bottom:275.088719pt;}
.y76_c00196{bottom:275.088941pt;}
.y69_c00196{bottom:290.275501pt;}
.y6a_c00196{bottom:290.275863pt;}
.y73_c00196{bottom:290.275944pt;}
.y6b_c00196{bottom:290.276265pt;}
.y72_c00196{bottom:290.276436pt;}
.y6c_c00196{bottom:290.276920pt;}
.y71_c00196{bottom:290.277008pt;}
.y6d_c00196{bottom:290.277121pt;}
.y6f_c00196{bottom:290.277165pt;}
.y6e_c00196{bottom:290.277269pt;}
.y70_c00196{bottom:290.277473pt;}
.y68_c00196{bottom:304.507885pt;}
.y67_c00196{bottom:304.508043pt;}
.y66_c00196{bottom:304.508348pt;}
.y65_c00196{bottom:304.508867pt;}
.y64_c00196{bottom:304.509237pt;}
.y60_c00196{bottom:304.509271pt;}
.y61_c00196{bottom:304.509327pt;}
.y63_c00196{bottom:304.509569pt;}
.y62_c00196{bottom:304.509581pt;}
.y5d_c00196{bottom:319.904843pt;}
.y5e_c00196{bottom:319.905304pt;}
.y5c_c00196{bottom:319.905480pt;}
.y5f_c00196{bottom:319.905733pt;}
.y5b_c00196{bottom:334.274089pt;}
.y5a_c00196{bottom:334.274179pt;}
.y59_c00196{bottom:334.274404pt;}
.y58_c00196{bottom:334.275029pt;}
.y57_c00196{bottom:334.275053pt;}
.y56_c00196{bottom:334.275211pt;}
.y55_c00196{bottom:334.275797pt;}
.y50_c00196{bottom:350.081040pt;}
.y4f_c00196{bottom:350.081253pt;}
.y4e_c00196{bottom:350.081263pt;}
.y54_c00196{bottom:350.081291pt;}
.y52_c00196{bottom:350.081445pt;}
.y53_c00196{bottom:350.081555pt;}
.y51_c00196{bottom:350.081644pt;}
.y4b_c00196{bottom:365.282588pt;}
.y49_c00196{bottom:365.282595pt;}
.y4a_c00196{bottom:365.282719pt;}
.y48_c00196{bottom:365.282805pt;}
.y4c_c00196{bottom:365.282991pt;}
.y47_c00196{bottom:365.283389pt;}
.y4d_c00196{bottom:365.283645pt;}
.y45_c00196{bottom:379.877148pt;}
.y46_c00196{bottom:379.877192pt;}
.y44_c00196{bottom:379.877317pt;}
.y41_c00196{bottom:379.877753pt;}
.y43_c00196{bottom:379.877916pt;}
.y42_c00196{bottom:379.878049pt;}
.y40_c00196{bottom:379.878311pt;}
.y3e_c00196{bottom:394.789221pt;}
.y3a_c00196{bottom:394.789368pt;}
.y3b_c00196{bottom:394.789504pt;}
.y3f_c00196{bottom:394.789609pt;}
.y3c_c00196{bottom:394.789735pt;}
.y3d_c00196{bottom:394.789871pt;}
.y39_c00196{bottom:394.789940pt;}
.y38_c00196{bottom:409.866839pt;}
.y37_c00196{bottom:409.867491pt;}
.y36_c00196{bottom:409.867660pt;}
.y35_c00196{bottom:409.868125pt;}
.y34_c00196{bottom:409.868751pt;}
.y33_c00196{bottom:409.868908pt;}
.y32_c00196{bottom:409.869267pt;}
.y31_c00196{bottom:409.869865pt;}
.y2a_c00196{bottom:425.618371pt;}
.y2c_c00196{bottom:425.618405pt;}
.y2b_c00196{bottom:425.618895pt;}
.y2d_c00196{bottom:425.619033pt;}
.y2e_c00196{bottom:425.619581pt;}
.y30_c00196{bottom:425.620147pt;}
.y2f_c00196{bottom:425.620171pt;}
.y27_c00196{bottom:441.524383pt;}
.y29_c00196{bottom:441.524788pt;}
.y26_c00196{bottom:441.524967pt;}
.y28_c00196{bottom:441.525011pt;}
.y25_c00196{bottom:441.525325pt;}
.y22_c00196{bottom:441.525465pt;}
.y23_c00196{bottom:441.525708pt;}
.y24_c00196{bottom:441.525829pt;}
.y21_c00196{bottom:456.370989pt;}
.y20_c00196{bottom:456.371280pt;}
.y1c_c00196{bottom:456.371376pt;}
.y1d_c00196{bottom:456.371485pt;}
.y1f_c00196{bottom:456.371544pt;}
.y1e_c00196{bottom:456.371796pt;}
.y1a_c00196{bottom:471.418260pt;}
.y19_c00196{bottom:471.418379pt;}
.y1b_c00196{bottom:471.418464pt;}
.y18_c00196{bottom:471.418589pt;}
.y17_c00196{bottom:471.419241pt;}
.y16_c00196{bottom:471.419345pt;}
.y15_c00196{bottom:471.419755pt;}
.yd_c00196{bottom:486.601419pt;}
.y12_c00196{bottom:486.601533pt;}
.yc_c00196{bottom:486.601629pt;}
.y14_c00196{bottom:486.601657pt;}
.y10_c00196{bottom:486.601797pt;}
.y13_c00196{bottom:486.601803pt;}
.ye_c00196{bottom:486.601955pt;}
.y11_c00196{bottom:486.602105pt;}
.yf_c00196{bottom:486.602263pt;}
.y3_c00196{bottom:502.177747pt;}
.y7_c00196{bottom:502.177903pt;}
.y5_c00196{bottom:502.178019pt;}
.y8_c00196{bottom:502.178225pt;}
.y4_c00196{bottom:502.178241pt;}
.y6_c00196{bottom:502.178407pt;}
.yb_c00196{bottom:502.178524pt;}
.y9_c00196{bottom:502.178548pt;}
.ya_c00196{bottom:502.179016pt;}
.y2_c00196{bottom:512.000105pt;}
.y1_c00196{bottom:513.361333pt;}
.h13_c00196{height:37.333333pt;}
.h10_c00196{height:51.336439pt;}
.h8_c00196{height:52.269829pt;}
.h12_c00196{height:53.175788pt;}
.hb_c00196{height:53.203219pt;}
.h6_c00196{height:54.136608pt;}
.h9_c00196{height:55.069998pt;}
.h5_c00196{height:56.003388pt;}
.hd_c00196{height:56.936778pt;}
.h7_c00196{height:57.870167pt;}
.h11_c00196{height:58.773240pt;}
.ha_c00196{height:58.803557pt;}
.hc_c00196{height:59.736947pt;}
.he_c00196{height:60.670337pt;}
.h4_c00196{height:61.603727pt;}
.hf_c00196{height:62.537116pt;}
.h3_c00196{height:63.470506pt;}
.h2_c00196{height:82.138302pt;}
.h1_c00196{height:554.000000pt;}
.h0_c00196{height:554.133333pt;}
.w0_c00196{width:325.680000pt;}
.w1_c00196{width:326.000000pt;}
.x0_c00196{left:0.000000pt;}
.x3a_c00196{left:18.718768pt;}
.x1_c00196{left:23.444000pt;}
.xb_c00196{left:26.880761pt;}
.x23_c00196{left:28.082172pt;}
.x35_c00196{left:29.039208pt;}
.x56_c00196{left:29.994455pt;}
.x6c_c00196{left:30.950133pt;}
.x41_c00196{left:31.917989pt;}
.x80_c00196{left:33.360000pt;}
.x69_c00196{left:34.881147pt;}
.x42_c00196{left:38.638796pt;}
.x79_c00196{left:39.675029pt;}
.x6a_c00196{left:42.271168pt;}
.x6d_c00196{left:43.910369pt;}
.x2f_c00196{left:45.602553pt;}
.x4e_c00196{left:47.515752pt;}
.x7e_c00196{left:48.979371pt;}
.x76_c00196{left:50.038080pt;}
.x3_c00196{left:51.363045pt;}
.x73_c00196{left:53.130867pt;}
.x64_c00196{left:54.233985pt;}
.x4a_c00196{left:56.158315pt;}
.x62_c00196{left:57.280153pt;}
.x29_c00196{left:59.043365pt;}
.x3b_c00196{left:61.201235pt;}
.x1c_c00196{left:64.564212pt;}
.x4d_c00196{left:66.477856pt;}
.x65_c00196{left:68.154339pt;}
.x57_c00196{left:69.596584pt;}
.x51_c00196{left:70.557079pt;}
.x36_c00196{left:71.761704pt;}
.xc_c00196{left:72.723639pt;}
.x19_c00196{left:76.324919pt;}
.x1d_c00196{left:77.524448pt;}
.x46_c00196{left:80.640489pt;}
.x14_c00196{left:82.564513pt;}
.x43_c00196{left:84.961732pt;}
.x3e_c00196{left:87.602565pt;}
.x5c_c00196{left:89.038340pt;}
.x52_c00196{left:90.958209pt;}
.x24_c00196{left:92.405960pt;}
.x3f_c00196{left:97.683783pt;}
.x30_c00196{left:101.285285pt;}
.x58_c00196{left:102.239196pt;}
.x3c_c00196{left:107.044112pt;}
.x5f_c00196{left:107.999639pt;}
.x4_c00196{left:108.966012pt;}
.x4f_c00196{left:112.799643pt;}
.x7d_c00196{left:113.943415pt;}
.x47_c00196{left:115.682068pt;}
.x1e_c00196{left:120.727003pt;}
.x37_c00196{left:122.165139pt;}
.xd_c00196{left:125.287337pt;}
.x63_c00196{left:128.057487pt;}
.x15_c00196{left:129.367508pt;}
.x5d_c00196{left:131.040748pt;}
.x38_c00196{left:132.966444pt;}
.x5_c00196{left:136.327993pt;}
.x2a_c00196{left:138.008913pt;}
.xe_c00196{left:139.927779pt;}
.x1f_c00196{left:141.368163pt;}
.x2_c00196{left:147.192000pt;}
.x1a_c00196{left:150.729924pt;}
.x53_c00196{left:152.881704pt;}
.x5e_c00196{left:154.802289pt;}
.x2b_c00196{left:156.249780pt;}
.x74_c00196{left:157.375231pt;}
.x44_c00196{left:160.565536pt;}
.x31_c00196{left:162.968751pt;}
.x4b_c00196{left:164.164731pt;}
.x25_c00196{left:165.129427pt;}
.x7a_c00196{left:166.159852pt;}
.x66_c00196{left:167.279669pt;}
.xf_c00196{left:171.610273pt;}
.x59_c00196{left:172.563703pt;}
.x70_c00196{left:174.238985pt;}
.x2c_c00196{left:175.930823pt;}
.x6_c00196{left:179.530548pt;}
.x48_c00196{left:180.965959pt;}
.x26_c00196{left:181.930132pt;}
.x54_c00196{left:182.883993pt;}
.x40_c00196{left:184.808995pt;}
.x10_c00196{left:186.250715pt;}
.x5a_c00196{left:187.204144pt;}
.x16_c00196{left:193.211223pt;}
.x20_c00196{left:195.852081pt;}
.x4c_c00196{left:198.966273pt;}
.x32_c00196{left:199.930557pt;}
.x11_c00196{left:204.971640pt;}
.x7b_c00196{left:211.259393pt;}
.x71_c00196{left:212.400939pt;}
.x21_c00196{left:213.372875pt;}
.x3d_c00196{left:214.330425pt;}
.x17_c00196{left:216.012647pt;}
.x7_c00196{left:218.172560pt;}
.x45_c00196{left:219.368649pt;}
.x55_c00196{left:220.565888pt;}
.x39_c00196{left:221.531817pt;}
.x50_c00196{left:222.726279pt;}
.x67_c00196{left:223.922519pt;}
.x6e_c00196{left:228.482040pt;}
.x7f_c00196{left:232.172919pt;}
.x27_c00196{left:234.973889pt;}
.x78_c00196{left:240.371925pt;}
.x60_c00196{left:241.686468pt;}
.x68_c00196{left:242.643444pt;}
.x2d_c00196{left:246.015300pt;}
.x6b_c00196{left:251.824732pt;}
.x75_c00196{left:253.081133pt;}
.x12_c00196{left:255.135045pt;}
.x8_c00196{left:256.814572pt;}
.x7c_c00196{left:258.264063pt;}
.x5b_c00196{left:260.889061pt;}
.x1b_c00196{left:262.816809pt;}
.x2e_c00196{left:264.016137pt;}
.x33_c00196{left:265.694507pt;}
.x49_c00196{left:267.611097pt;}
.x28_c00196{left:270.495520pt;}
.x9_c00196{left:272.895189pt;}
.x61_c00196{left:275.287864pt;}
.x13_c00196{left:277.696440pt;}
.x34_c00196{left:281.055036pt;}
.x22_c00196{left:282.977293pt;}
.x18_c00196{left:289.457535pt;}
.x6f_c00196{left:294.005975pt;}
.x77_c00196{left:295.294031pt;}
.x72_c00196{left:299.046092pt;}
.xa_c00196{left:304.337655pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00197 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00197 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00197 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00197 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00197.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00197{transform:matrix(0.016783,-0.000252,0.003750,0.249972,0,0);-ms-transform:matrix(0.016783,-0.000252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.016783,-0.000252,0.003750,0.249972,0,0);}
.m16_c00197{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00197{transform:matrix(0.137545,-0.002063,0.003750,0.249972,0,0);-ms-transform:matrix(0.137545,-0.002063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137545,-0.002063,0.003750,0.249972,0,0);}
.mc4_c00197{transform:matrix(0.145494,-0.002182,0.003750,0.249972,0,0);-ms-transform:matrix(0.145494,-0.002182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145494,-0.002182,0.003750,0.249972,0,0);}
.md5_c00197{transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);-ms-transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);}
.m62_c00197{transform:matrix(0.148673,-0.002230,0.003750,0.249972,0,0);-ms-transform:matrix(0.148673,-0.002230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148673,-0.002230,0.003750,0.249972,0,0);}
.m64_c00197{transform:matrix(0.149053,-0.002236,0.003750,0.249972,0,0);-ms-transform:matrix(0.149053,-0.002236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149053,-0.002236,0.003750,0.249972,0,0);}
.m90_c00197{transform:matrix(0.150718,-0.002261,0.003750,0.249972,0,0);-ms-transform:matrix(0.150718,-0.002261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150718,-0.002261,0.003750,0.249972,0,0);}
.m5d_c00197{transform:matrix(0.151013,-0.002265,0.003750,0.249972,0,0);-ms-transform:matrix(0.151013,-0.002265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151013,-0.002265,0.003750,0.249972,0,0);}
.m94_c00197{transform:matrix(0.152758,-0.002291,0.003750,0.249972,0,0);-ms-transform:matrix(0.152758,-0.002291,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152758,-0.002291,0.003750,0.249972,0,0);}
.m1a_c00197{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m55_c00197{transform:matrix(0.153406,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153406,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153406,-0.001687,0.002750,0.249985,0,0);}
.mc7_c00197{transform:matrix(0.153518,-0.002303,0.003750,0.249972,0,0);-ms-transform:matrix(0.153518,-0.002303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153518,-0.002303,0.003750,0.249972,0,0);}
.m61_c00197{transform:matrix(0.153893,-0.002308,0.003750,0.249972,0,0);-ms-transform:matrix(0.153893,-0.002308,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153893,-0.002308,0.003750,0.249972,0,0);}
.m5b_c00197{transform:matrix(0.153948,-0.002309,0.003750,0.249972,0,0);-ms-transform:matrix(0.153948,-0.002309,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153948,-0.002309,0.003750,0.249972,0,0);}
.mda_c00197{transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);-ms-transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);}
.m44_c00197{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.mee_c00197{transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);-ms-transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);}
.m5c_c00197{transform:matrix(0.156042,-0.002341,0.003750,0.249972,0,0);-ms-transform:matrix(0.156042,-0.002341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156042,-0.002341,0.003750,0.249972,0,0);}
.m47_c00197{transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);}
.m8f_c00197{transform:matrix(0.159297,-0.002389,0.003750,0.249972,0,0);-ms-transform:matrix(0.159297,-0.002389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159297,-0.002389,0.003750,0.249972,0,0);}
.m82_c00197{transform:matrix(0.161207,-0.002418,0.003750,0.249972,0,0);-ms-transform:matrix(0.161207,-0.002418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161207,-0.002418,0.003750,0.249972,0,0);}
.mc_c00197{transform:matrix(0.161440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161440,0.000000,0.000000,0.250000,0,0);}
.mbe_c00197{transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);-ms-transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163427,-0.002451,0.003750,0.249972,0,0);}
.m89_c00197{transform:matrix(0.163812,-0.002457,0.003750,0.249972,0,0);-ms-transform:matrix(0.163812,-0.002457,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163812,-0.002457,0.003750,0.249972,0,0);}
.mf0_c00197{transform:matrix(0.164082,-0.002461,0.003750,0.249972,0,0);-ms-transform:matrix(0.164082,-0.002461,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164082,-0.002461,0.003750,0.249972,0,0);}
.md9_c00197{transform:matrix(0.164447,-0.002467,0.003750,0.249972,0,0);-ms-transform:matrix(0.164447,-0.002467,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164447,-0.002467,0.003750,0.249972,0,0);}
.mcc_c00197{transform:matrix(0.164516,-0.002468,0.003750,0.249972,0,0);-ms-transform:matrix(0.164516,-0.002468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164516,-0.002468,0.003750,0.249972,0,0);}
.m4e_c00197{transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);}
.mae_c00197{transform:matrix(0.165736,-0.002486,0.003750,0.249972,0,0);-ms-transform:matrix(0.165736,-0.002486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165736,-0.002486,0.003750,0.249972,0,0);}
.m41_c00197{transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);}
.m7f_c00197{transform:matrix(0.166911,-0.002504,0.003750,0.249972,0,0);-ms-transform:matrix(0.166911,-0.002504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166911,-0.002504,0.003750,0.249972,0,0);}
.m12_c00197{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.167870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167870,0.000000,0.000000,0.250000,0,0);}
.mb6_c00197{transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);}
.m86_c00197{transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);-ms-transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);}
.m71_c00197{transform:matrix(0.169176,-0.002538,0.003750,0.249972,0,0);-ms-transform:matrix(0.169176,-0.002538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169176,-0.002538,0.003750,0.249972,0,0);}
.m2b_c00197{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.171070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171070,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);}
.m56_c00197{transform:matrix(0.171610,-0.001888,0.002750,0.249985,0,0);-ms-transform:matrix(0.171610,-0.001888,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171610,-0.001888,0.002750,0.249985,0,0);}
.mba_c00197{transform:matrix(0.172111,-0.002582,0.003750,0.249972,0,0);-ms-transform:matrix(0.172111,-0.002582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172111,-0.002582,0.003750,0.249972,0,0);}
.md0_c00197{transform:matrix(0.172136,-0.002582,0.003750,0.249972,0,0);-ms-transform:matrix(0.172136,-0.002582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172136,-0.002582,0.003750,0.249972,0,0);}
.m3d_c00197{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m88_c00197{transform:matrix(0.173935,-0.002609,0.003750,0.249972,0,0);-ms-transform:matrix(0.173935,-0.002609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173935,-0.002609,0.003750,0.249972,0,0);}
.m51_c00197{transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);-ms-transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);}
.m8_c00197{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m65_c00197{transform:matrix(0.175975,-0.002640,0.003750,0.249972,0,0);-ms-transform:matrix(0.175975,-0.002640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175975,-0.002640,0.003750,0.249972,0,0);}
.m3_c00197{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.mc6_c00197{transform:matrix(0.176390,-0.002646,0.003750,0.249972,0,0);-ms-transform:matrix(0.176390,-0.002646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176390,-0.002646,0.003750,0.249972,0,0);}
.mc5_c00197{transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);}
.m7e_c00197{transform:matrix(0.177025,-0.002655,0.003750,0.249972,0,0);-ms-transform:matrix(0.177025,-0.002655,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177025,-0.002655,0.003750,0.249972,0,0);}
.m24_c00197{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.me0_c00197{transform:matrix(0.177170,-0.002658,0.003750,0.249972,0,0);-ms-transform:matrix(0.177170,-0.002658,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177170,-0.002658,0.003750,0.249972,0,0);}
.mb_c00197{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m63_c00197{transform:matrix(0.178640,-0.002680,0.003750,0.249972,0,0);-ms-transform:matrix(0.178640,-0.002680,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178640,-0.002680,0.003750,0.249972,0,0);}
.m98_c00197{transform:matrix(0.179305,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179305,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179305,-0.002690,0.003750,0.249972,0,0);}
.m91_c00197{transform:matrix(0.179420,-0.002691,0.003750,0.249972,0,0);-ms-transform:matrix(0.179420,-0.002691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179420,-0.002691,0.003750,0.249972,0,0);}
.m11_c00197{transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);}
.m79_c00197{transform:matrix(0.179595,-0.002694,0.003750,0.249972,0,0);-ms-transform:matrix(0.179595,-0.002694,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179595,-0.002694,0.003750,0.249972,0,0);}
.m5a_c00197{transform:matrix(0.180455,-0.002707,0.003750,0.249972,0,0);-ms-transform:matrix(0.180455,-0.002707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180455,-0.002707,0.003750,0.249972,0,0);}
.mc3_c00197{transform:matrix(0.181140,-0.002717,0.003750,0.249972,0,0);-ms-transform:matrix(0.181140,-0.002717,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181140,-0.002717,0.003750,0.249972,0,0);}
.m32_c00197{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m9a_c00197{transform:matrix(0.181365,-0.002720,0.003750,0.249972,0,0);-ms-transform:matrix(0.181365,-0.002720,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181365,-0.002720,0.003750,0.249972,0,0);}
.mef_c00197{transform:matrix(0.181460,-0.002722,0.003750,0.249972,0,0);-ms-transform:matrix(0.181460,-0.002722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181460,-0.002722,0.003750,0.249972,0,0);}
.m74_c00197{transform:matrix(0.181525,-0.002723,0.003750,0.249972,0,0);-ms-transform:matrix(0.181525,-0.002723,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181525,-0.002723,0.003750,0.249972,0,0);}
.mec_c00197{transform:matrix(0.181615,-0.002724,0.003750,0.249972,0,0);-ms-transform:matrix(0.181615,-0.002724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181615,-0.002724,0.003750,0.249972,0,0);}
.m7c_c00197{transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);-ms-transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);}
.m68_c00197{transform:matrix(0.181790,-0.002727,0.003750,0.249972,0,0);-ms-transform:matrix(0.181790,-0.002727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181790,-0.002727,0.003750,0.249972,0,0);}
.m60_c00197{transform:matrix(0.182864,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182864,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182864,-0.002743,0.003750,0.249972,0,0);}
.m18_c00197{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);}
.mbd_c00197{transform:matrix(0.183804,-0.002757,0.003750,0.249972,0,0);-ms-transform:matrix(0.183804,-0.002757,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183804,-0.002757,0.003750,0.249972,0,0);}
.m48_c00197{transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);}
.m8e_c00197{transform:matrix(0.185064,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185064,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185064,-0.002776,0.003750,0.249972,0,0);}
.mc1_c00197{transform:matrix(0.185104,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185104,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185104,-0.002777,0.003750,0.249972,0,0);}
.ma0_c00197{transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);}
.m46_c00197{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.ma3_c00197{transform:matrix(0.185569,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185569,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185569,-0.002784,0.003750,0.249972,0,0);}
.md1_c00197{transform:matrix(0.185939,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185939,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185939,-0.002789,0.003750,0.249972,0,0);}
.md4_c00197{transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);}
.m4c_c00197{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.ma6_c00197{transform:matrix(0.187169,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187169,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187169,-0.002808,0.003750,0.249972,0,0);}
.m17_c00197{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.m83_c00197{transform:matrix(0.188574,-0.002829,0.003750,0.249972,0,0);-ms-transform:matrix(0.188574,-0.002829,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188574,-0.002829,0.003750,0.249972,0,0);}
.m1f_c00197{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m9d_c00197{transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);-ms-transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);}
.m43_c00197{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.m6f_c00197{transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);-ms-transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);}
.ma1_c00197{transform:matrix(0.189234,-0.002839,0.003750,0.249972,0,0);-ms-transform:matrix(0.189234,-0.002839,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189234,-0.002839,0.003750,0.249972,0,0);}
.mcb_c00197{transform:matrix(0.189344,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189344,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189344,-0.002840,0.003750,0.249972,0,0);}
.m8b_c00197{transform:matrix(0.189519,-0.002843,0.003750,0.249972,0,0);-ms-transform:matrix(0.189519,-0.002843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189519,-0.002843,0.003750,0.249972,0,0);}
.mdd_c00197{transform:matrix(0.189594,-0.002844,0.003750,0.249972,0,0);-ms-transform:matrix(0.189594,-0.002844,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189594,-0.002844,0.003750,0.249972,0,0);}
.m1c_c00197{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.mbb_c00197{transform:matrix(0.190094,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190094,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190094,-0.002851,0.003750,0.249972,0,0);}
.m87_c00197{transform:matrix(0.190124,-0.002852,0.003750,0.249972,0,0);-ms-transform:matrix(0.190124,-0.002852,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190124,-0.002852,0.003750,0.249972,0,0);}
.md8_c00197{transform:matrix(0.190669,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190669,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190669,-0.002860,0.003750,0.249972,0,0);}
.m22_c00197{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.maf_c00197{transform:matrix(0.190989,-0.002865,0.003750,0.249972,0,0);-ms-transform:matrix(0.190989,-0.002865,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190989,-0.002865,0.003750,0.249972,0,0);}
.m10_c00197{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.meb_c00197{transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191643,-0.002875,0.003750,0.249972,0,0);}
.m9c_c00197{transform:matrix(0.191758,-0.002876,0.003750,0.249972,0,0);-ms-transform:matrix(0.191758,-0.002876,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191758,-0.002876,0.003750,0.249972,0,0);}
.md3_c00197{transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);-ms-transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);}
.m58_c00197{transform:matrix(0.192533,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192533,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192533,-0.002888,0.003750,0.249972,0,0);}
.mc2_c00197{transform:matrix(0.192668,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192668,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192668,-0.002890,0.003750,0.249972,0,0);}
.m77_c00197{transform:matrix(0.192698,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192698,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192698,-0.002890,0.003750,0.249972,0,0);}
.mdf_c00197{transform:matrix(0.193263,-0.002899,0.003750,0.249972,0,0);-ms-transform:matrix(0.193263,-0.002899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193263,-0.002899,0.003750,0.249972,0,0);}
.ma8_c00197{transform:matrix(0.193433,-0.002901,0.003750,0.249972,0,0);-ms-transform:matrix(0.193433,-0.002901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193433,-0.002901,0.003750,0.249972,0,0);}
.m80_c00197{transform:matrix(0.193568,-0.002904,0.003750,0.249972,0,0);-ms-transform:matrix(0.193568,-0.002904,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193568,-0.002904,0.003750,0.249972,0,0);}
.m97_c00197{transform:matrix(0.193573,-0.002904,0.003750,0.249972,0,0);-ms-transform:matrix(0.193573,-0.002904,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193573,-0.002904,0.003750,0.249972,0,0);}
.m57_c00197{transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);}
.ma9_c00197{transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);}
.m9e_c00197{transform:matrix(0.195688,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195688,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195688,-0.002935,0.003750,0.249972,0,0);}
.mbc_c00197{transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);-ms-transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);}
.m95_c00197{transform:matrix(0.196348,-0.002945,0.003750,0.249972,0,0);-ms-transform:matrix(0.196348,-0.002945,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196348,-0.002945,0.003750,0.249972,0,0);}
.m69_c00197{transform:matrix(0.197233,-0.002958,0.003750,0.249972,0,0);-ms-transform:matrix(0.197233,-0.002958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197233,-0.002958,0.003750,0.249972,0,0);}
.m25_c00197{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.me3_c00197{transform:matrix(0.197538,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197538,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197538,-0.002963,0.003750,0.249972,0,0);}
.mdb_c00197{transform:matrix(0.198218,-0.002973,0.003750,0.249972,0,0);-ms-transform:matrix(0.198218,-0.002973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198218,-0.002973,0.003750,0.249972,0,0);}
.md_c00197{transform:matrix(0.199065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199065,0.000000,0.000000,0.250000,0,0);}
.m5e_c00197{transform:matrix(0.200537,-0.003008,0.003750,0.249972,0,0);-ms-transform:matrix(0.200537,-0.003008,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200537,-0.003008,0.003750,0.249972,0,0);}
.me5_c00197{transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);-ms-transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);}
.me2_c00197{transform:matrix(0.201297,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201297,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201297,-0.003019,0.003750,0.249972,0,0);}
.m52_c00197{transform:matrix(0.201593,-0.002218,0.002750,0.249985,0,0);-ms-transform:matrix(0.201593,-0.002218,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201593,-0.002218,0.002750,0.249985,0,0);}
.m9_c00197{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.md2_c00197{transform:matrix(0.202202,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202202,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202202,-0.003033,0.003750,0.249972,0,0);}
.m6b_c00197{transform:matrix(0.202922,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202922,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202922,-0.003044,0.003750,0.249972,0,0);}
.mde_c00197{transform:matrix(0.203012,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.203012,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203012,-0.003045,0.003750,0.249972,0,0);}
.ma5_c00197{transform:matrix(0.203437,-0.003052,0.003750,0.249972,0,0);-ms-transform:matrix(0.203437,-0.003052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203437,-0.003052,0.003750,0.249972,0,0);}
.m29_c00197{transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.203703,-0.002241,0.002750,0.249985,0,0);-ms-transform:matrix(0.203703,-0.002241,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203703,-0.002241,0.002750,0.249985,0,0);}
.me4_c00197{transform:matrix(0.203917,-0.003059,0.003750,0.249972,0,0);-ms-transform:matrix(0.203917,-0.003059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203917,-0.003059,0.003750,0.249972,0,0);}
.mb8_c00197{transform:matrix(0.204282,-0.003064,0.003750,0.249972,0,0);-ms-transform:matrix(0.204282,-0.003064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204282,-0.003064,0.003750,0.249972,0,0);}
.mca_c00197{transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);}
.m40_c00197{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m59_c00197{transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204947,-0.003074,0.003750,0.249972,0,0);}
.m7a_c00197{transform:matrix(0.204962,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204962,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204962,-0.003074,0.003750,0.249972,0,0);}
.md7_c00197{transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);-ms-transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);}
.m9f_c00197{transform:matrix(0.205432,-0.003081,0.003750,0.249972,0,0);-ms-transform:matrix(0.205432,-0.003081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205432,-0.003081,0.003750,0.249972,0,0);}
.m73_c00197{transform:matrix(0.205597,-0.003084,0.003750,0.249972,0,0);-ms-transform:matrix(0.205597,-0.003084,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205597,-0.003084,0.003750,0.249972,0,0);}
.m6c_c00197{transform:matrix(0.205802,-0.003087,0.003750,0.249972,0,0);-ms-transform:matrix(0.205802,-0.003087,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205802,-0.003087,0.003750,0.249972,0,0);}
.me1_c00197{transform:matrix(0.205957,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205957,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205957,-0.003089,0.003750,0.249972,0,0);}
.m3b_c00197{transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);}
.mcf_c00197{transform:matrix(0.206797,-0.003102,0.003750,0.249972,0,0);-ms-transform:matrix(0.206797,-0.003102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206797,-0.003102,0.003750,0.249972,0,0);}
.mcd_c00197{transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);-ms-transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);}
.m49_c00197{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.mb5_c00197{transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);}
.mb7_c00197{transform:matrix(0.207292,-0.003109,0.003750,0.249972,0,0);-ms-transform:matrix(0.207292,-0.003109,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207292,-0.003109,0.003750,0.249972,0,0);}
.m8c_c00197{transform:matrix(0.207372,-0.003111,0.003750,0.249972,0,0);-ms-transform:matrix(0.207372,-0.003111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207372,-0.003111,0.003750,0.249972,0,0);}
.m70_c00197{transform:matrix(0.207667,-0.003115,0.003750,0.249972,0,0);-ms-transform:matrix(0.207667,-0.003115,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207667,-0.003115,0.003750,0.249972,0,0);}
.me9_c00197{transform:matrix(0.207777,-0.003117,0.003750,0.249972,0,0);-ms-transform:matrix(0.207777,-0.003117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207777,-0.003117,0.003750,0.249972,0,0);}
.mdc_c00197{transform:matrix(0.208577,-0.003129,0.003750,0.249972,0,0);-ms-transform:matrix(0.208577,-0.003129,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208577,-0.003129,0.003750,0.249972,0,0);}
.mbf_c00197{transform:matrix(0.208632,-0.003129,0.003750,0.249972,0,0);-ms-transform:matrix(0.208632,-0.003129,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208632,-0.003129,0.003750,0.249972,0,0);}
.m26_c00197{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);}
.m4b_c00197{transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m81_c00197{transform:matrix(0.210876,-0.003163,0.003750,0.249972,0,0);-ms-transform:matrix(0.210876,-0.003163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210876,-0.003163,0.003750,0.249972,0,0);}
.m99_c00197{transform:matrix(0.211066,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211066,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211066,-0.003166,0.003750,0.249972,0,0);}
.mb3_c00197{transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);}
.m75_c00197{transform:matrix(0.211636,-0.003175,0.003750,0.249972,0,0);-ms-transform:matrix(0.211636,-0.003175,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211636,-0.003175,0.003750,0.249972,0,0);}
.m38_c00197{transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);}
.mea_c00197{transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);-ms-transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);}
.m35_c00197{transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);}
.m85_c00197{transform:matrix(0.212431,-0.003186,0.003750,0.249972,0,0);-ms-transform:matrix(0.212431,-0.003186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212431,-0.003186,0.003750,0.249972,0,0);}
.m5_c00197{transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.213311,-0.003200,0.003750,0.249972,0,0);-ms-transform:matrix(0.213311,-0.003200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213311,-0.003200,0.003750,0.249972,0,0);}
.mad_c00197{transform:matrix(0.213316,-0.003200,0.003750,0.249972,0,0);-ms-transform:matrix(0.213316,-0.003200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213316,-0.003200,0.003750,0.249972,0,0);}
.m2d_c00197{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.m7b_c00197{transform:matrix(0.214026,-0.003210,0.003750,0.249972,0,0);-ms-transform:matrix(0.214026,-0.003210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214026,-0.003210,0.003750,0.249972,0,0);}
.m84_c00197{transform:matrix(0.214456,-0.003217,0.003750,0.249972,0,0);-ms-transform:matrix(0.214456,-0.003217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214456,-0.003217,0.003750,0.249972,0,0);}
.m2c_c00197{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.med_c00197{transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);-ms-transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);}
.m8a_c00197{transform:matrix(0.215071,-0.003226,0.003750,0.249972,0,0);-ms-transform:matrix(0.215071,-0.003226,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215071,-0.003226,0.003750,0.249972,0,0);}
.m1_c00197{transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00197{transform:matrix(0.215831,-0.003237,0.003750,0.249972,0,0);-ms-transform:matrix(0.215831,-0.003237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215831,-0.003237,0.003750,0.249972,0,0);}
.m78_c00197{transform:matrix(0.217930,-0.003269,0.003750,0.249972,0,0);-ms-transform:matrix(0.217930,-0.003269,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217930,-0.003269,0.003750,0.249972,0,0);}
.m6d_c00197{transform:matrix(0.218465,-0.003277,0.003750,0.249972,0,0);-ms-transform:matrix(0.218465,-0.003277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218465,-0.003277,0.003750,0.249972,0,0);}
.m2a_c00197{transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mb4_c00197{transform:matrix(0.219115,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219115,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219115,-0.003287,0.003750,0.249972,0,0);}
.md6_c00197{transform:matrix(0.220545,-0.003308,0.003750,0.249972,0,0);-ms-transform:matrix(0.220545,-0.003308,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220545,-0.003308,0.003750,0.249972,0,0);}
.m50_c00197{transform:matrix(0.220867,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220867,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220867,-0.002430,0.002750,0.249985,0,0);}
.m92_c00197{transform:matrix(0.221860,-0.003328,0.003750,0.249972,0,0);-ms-transform:matrix(0.221860,-0.003328,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221860,-0.003328,0.003750,0.249972,0,0);}
.m7d_c00197{transform:matrix(0.222505,-0.003338,0.003750,0.249972,0,0);-ms-transform:matrix(0.222505,-0.003338,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222505,-0.003338,0.003750,0.249972,0,0);}
.maa_c00197{transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);}
.m27_c00197{transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223280,0.000000,0.000000,0.250000,0,0);}
.me8_c00197{transform:matrix(0.223890,-0.003358,0.003750,0.249972,0,0);-ms-transform:matrix(0.223890,-0.003358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223890,-0.003358,0.003750,0.249972,0,0);}
.m72_c00197{transform:matrix(0.224135,-0.003362,0.003750,0.249972,0,0);-ms-transform:matrix(0.224135,-0.003362,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224135,-0.003362,0.003750,0.249972,0,0);}
.m4a_c00197{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);-ms-transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);}
.m14_c00197{transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227270,0.000000,0.000000,0.250000,0,0);}
.mac_c00197{transform:matrix(0.228364,-0.003425,0.003750,0.249972,0,0);-ms-transform:matrix(0.228364,-0.003425,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228364,-0.003425,0.003750,0.249972,0,0);}
.m2e_c00197{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.ma2_c00197{transform:matrix(0.230359,-0.003455,0.003750,0.249972,0,0);-ms-transform:matrix(0.230359,-0.003455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230359,-0.003455,0.003750,0.249972,0,0);}
.m9b_c00197{transform:matrix(0.230669,-0.003460,0.003750,0.249972,0,0);-ms-transform:matrix(0.230669,-0.003460,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230669,-0.003460,0.003750,0.249972,0,0);}
.mce_c00197{transform:matrix(0.231184,-0.003468,0.003750,0.249972,0,0);-ms-transform:matrix(0.231184,-0.003468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231184,-0.003468,0.003750,0.249972,0,0);}
.m4f_c00197{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m96_c00197{transform:matrix(0.234679,-0.003520,0.003750,0.249972,0,0);-ms-transform:matrix(0.234679,-0.003520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234679,-0.003520,0.003750,0.249972,0,0);}
.m6e_c00197{transform:matrix(0.235688,-0.003535,0.003750,0.249972,0,0);-ms-transform:matrix(0.235688,-0.003535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235688,-0.003535,0.003750,0.249972,0,0);}
.m93_c00197{transform:matrix(0.235703,-0.003536,0.003750,0.249972,0,0);-ms-transform:matrix(0.235703,-0.003536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235703,-0.003536,0.003750,0.249972,0,0);}
.m6a_c00197{transform:matrix(0.236663,-0.003550,0.003750,0.249972,0,0);-ms-transform:matrix(0.236663,-0.003550,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236663,-0.003550,0.003750,0.249972,0,0);}
.m34_c00197{transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.237665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237665,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.238368,-0.003576,0.003750,0.249972,0,0);-ms-transform:matrix(0.238368,-0.003576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238368,-0.003576,0.003750,0.249972,0,0);}
.m66_c00197{transform:matrix(0.240178,-0.003603,0.003750,0.249972,0,0);-ms-transform:matrix(0.240178,-0.003603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240178,-0.003603,0.003750,0.249972,0,0);}
.mab_c00197{transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);-ms-transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);}
.m28_c00197{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);}
.m76_c00197{transform:matrix(0.248132,-0.003722,0.003750,0.249972,0,0);-ms-transform:matrix(0.248132,-0.003722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248132,-0.003722,0.003750,0.249972,0,0);}
.me7_c00197{transform:matrix(0.248527,-0.003728,0.003750,0.249972,0,0);-ms-transform:matrix(0.248527,-0.003728,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248527,-0.003728,0.003750,0.249972,0,0);}
.mb2_c00197{transform:matrix(0.250527,-0.003758,0.003750,0.249972,0,0);-ms-transform:matrix(0.250527,-0.003758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250527,-0.003758,0.003750,0.249972,0,0);}
.m6_c00197{transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);}
.m4d_c00197{transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);}
.mc9_c00197{transform:matrix(0.255811,-0.003837,0.003750,0.249972,0,0);-ms-transform:matrix(0.255811,-0.003837,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255811,-0.003837,0.003750,0.249972,0,0);}
.m13_c00197{transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);}
.me6_c00197{transform:matrix(0.292247,-0.004384,0.003750,0.249972,0,0);-ms-transform:matrix(0.292247,-0.004384,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292247,-0.004384,0.003750,0.249972,0,0);}
.mb0_c00197{transform:matrix(0.292587,-0.004389,0.003750,0.249972,0,0);-ms-transform:matrix(0.292587,-0.004389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292587,-0.004389,0.003750,0.249972,0,0);}
.m15_c00197{transform:matrix(0.293405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293405,0.000000,0.000000,0.250000,0,0);}
.m67_c00197{transform:matrix(0.300051,-0.004501,0.003750,0.249972,0,0);-ms-transform:matrix(0.300051,-0.004501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300051,-0.004501,0.003750,0.249972,0,0);}
.mb1_c00197{transform:matrix(0.318219,-0.004773,0.003750,0.249972,0,0);-ms-transform:matrix(0.318219,-0.004773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.318219,-0.004773,0.003750,0.249972,0,0);}
.m31_c00197{transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337565,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00197{transform:matrix(0.409079,-0.006136,0.003750,0.249972,0,0);-ms-transform:matrix(0.409079,-0.006136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.409079,-0.006136,0.003750,0.249972,0,0);}
.m54_c00197{transform:matrix(0.433994,-0.004774,0.002750,0.249985,0,0);-ms-transform:matrix(0.433994,-0.004774,0.002750,0.249985,0,0);-webkit-transform:matrix(0.433994,-0.004774,0.002750,0.249985,0,0);}
.m4_c00197{transform:matrix(0.439990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439990,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:0.000000px;}
.fc0_c00197{color:transparent;}
.fs6_c00197{font-size:57.750000px;}
.fs3_c00197{font-size:59.850000px;}
.fs9_c00197{font-size:59.853621px;}
.fsd_c00197{font-size:59.856733px;}
.fs7_c00197{font-size:60.900000px;}
.fs12_c00197{font-size:60.906851px;}
.fsc_c00197{font-size:61.956969px;}
.fs11_c00197{font-size:63.007087px;}
.fs1_c00197{font-size:65.100000px;}
.fse_c00197{font-size:65.107323px;}
.fsf_c00197{font-size:66.157441px;}
.fs14_c00197{font-size:67.207560px;}
.fs8_c00197{font-size:68.250000px;}
.fs13_c00197{font-size:68.257678px;}
.fs4_c00197{font-size:69.300000px;}
.fs2_c00197{font-size:70.350000px;}
.fs10_c00197{font-size:70.357914px;}
.fs5_c00197{font-size:71.400000px;}
.fsa_c00197{font-size:71.408032px;}
.fsb_c00197{font-size:72.458150px;}
.fs0_c00197{font-size:112.350000px;}
.y0_c00197{bottom:0.000000px;}
.yb8_c00197{bottom:24.277433px;}
.yb5_c00197{bottom:24.277740px;}
.yb7_c00197{bottom:24.277755px;}
.yb9_c00197{bottom:24.277838px;}
.yb6_c00197{bottom:24.277845px;}
.yb4_c00197{bottom:24.278385px;}
.yb3_c00197{bottom:24.279008px;}
.yb2_c00197{bottom:24.279548px;}
.yb1_c00197{bottom:24.279833px;}
.ya9_c00197{bottom:39.647648px;}
.yaa_c00197{bottom:39.948353px;}
.yab_c00197{bottom:40.335585px;}
.yac_c00197{bottom:41.336445px;}
.yad_c00197{bottom:42.324060px;}
.yae_c00197{bottom:42.747930px;}
.yaf_c00197{bottom:42.900293px;}
.yb0_c00197{bottom:43.188900px;}
.ya4_c00197{bottom:56.389073px;}
.ya5_c00197{bottom:57.063645px;}
.ya6_c00197{bottom:57.579668px;}
.ya7_c00197{bottom:58.333208px;}
.ya8_c00197{bottom:59.241053px;}
.y9b_c00197{bottom:73.940190px;}
.y9c_c00197{bottom:74.541083px;}
.y9d_c00197{bottom:75.165105px;}
.y9e_c00197{bottom:75.384518px;}
.y9f_c00197{bottom:75.588900px;}
.ya0_c00197{bottom:76.027620px;}
.ya1_c00197{bottom:76.167758px;}
.ya2_c00197{bottom:76.927905px;}
.ya3_c00197{bottom:77.151713px;}
.y94_c00197{bottom:90.683220px;}
.y95_c00197{bottom:91.214400px;}
.y96_c00197{bottom:91.422458px;}
.y97_c00197{bottom:92.167440px;}
.y98_c00197{bottom:92.921483px;}
.y99_c00197{bottom:93.131745px;}
.y9a_c00197{bottom:93.406155px;}
.y93_c00197{bottom:109.383503px;}
.y8d_c00197{bottom:109.383623px;}
.y92_c00197{bottom:109.383698px;}
.y90_c00197{bottom:109.383833px;}
.y91_c00197{bottom:109.384088px;}
.y8c_c00197{bottom:109.384117px;}
.y8b_c00197{bottom:109.384163px;}
.y8e_c00197{bottom:109.384350px;}
.y89_c00197{bottom:109.384425px;}
.y8f_c00197{bottom:109.384477px;}
.y8a_c00197{bottom:109.384552px;}
.y82_c00197{bottom:125.249370px;}
.y83_c00197{bottom:126.201862px;}
.y84_c00197{bottom:126.588997px;}
.y85_c00197{bottom:127.695855px;}
.y86_c00197{bottom:128.001270px;}
.y87_c00197{bottom:128.545357px;}
.y88_c00197{bottom:128.784210px;}
.y81_c00197{bottom:144.833985px;}
.y80_c00197{bottom:144.834697px;}
.y7f_c00197{bottom:144.834892px;}
.y7e_c00197{bottom:144.835365px;}
.y7d_c00197{bottom:144.835778px;}
.y7c_c00197{bottom:144.836423px;}
.y7b_c00197{bottom:144.836512px;}
.y76_c00197{bottom:161.258595px;}
.y75_c00197{bottom:161.258752px;}
.y77_c00197{bottom:161.258932px;}
.y7a_c00197{bottom:161.259308px;}
.y79_c00197{bottom:161.259315px;}
.y78_c00197{bottom:161.259337px;}
.y73_c00197{bottom:179.135970px;}
.y74_c00197{bottom:179.136097px;}
.y72_c00197{bottom:179.136232px;}
.y71_c00197{bottom:179.136577px;}
.y70_c00197{bottom:179.136600px;}
.y6e_c00197{bottom:179.136780px;}
.y6f_c00197{bottom:179.137140px;}
.y67_c00197{bottom:195.730500px;}
.y68_c00197{bottom:196.190257px;}
.y69_c00197{bottom:196.879507px;}
.y6a_c00197{bottom:197.278657px;}
.y6b_c00197{bottom:197.606107px;}
.y6c_c00197{bottom:198.563692px;}
.y6d_c00197{bottom:199.136880px;}
.y66_c00197{bottom:214.192432px;}
.y64_c00197{bottom:214.192462px;}
.y65_c00197{bottom:214.193167px;}
.y63_c00197{bottom:214.193175px;}
.y5f_c00197{bottom:214.193182px;}
.y62_c00197{bottom:214.193197px;}
.y61_c00197{bottom:214.193715px;}
.y60_c00197{bottom:214.193737px;}
.y5e_c00197{bottom:231.558052px;}
.y5d_c00197{bottom:231.558075px;}
.y5c_c00197{bottom:231.558315px;}
.y5b_c00197{bottom:231.559027px;}
.y59_c00197{bottom:231.559140px;}
.y5a_c00197{bottom:231.559672px;}
.y58_c00197{bottom:231.559725px;}
.y50_c00197{bottom:247.575697px;}
.y51_c00197{bottom:247.891582px;}
.y52_c00197{bottom:248.417617px;}
.y53_c00197{bottom:248.926162px;}
.y54_c00197{bottom:249.102135px;}
.y55_c00197{bottom:249.600990px;}
.y56_c00197{bottom:249.847342px;}
.y57_c00197{bottom:250.589775px;}
.y4f_c00197{bottom:266.191365px;}
.y4a_c00197{bottom:266.191515px;}
.y48_c00197{bottom:266.191582px;}
.y4c_c00197{bottom:266.191657px;}
.y4e_c00197{bottom:266.191822px;}
.y4d_c00197{bottom:266.191890px;}
.y4b_c00197{bottom:266.192003px;}
.y49_c00197{bottom:266.192010px;}
.y43_c00197{bottom:282.744465px;}
.y42_c00197{bottom:282.744810px;}
.y44_c00197{bottom:282.744975px;}
.y41_c00197{bottom:282.745455px;}
.y45_c00197{bottom:282.745680px;}
.y40_c00197{bottom:282.745845px;}
.y47_c00197{bottom:282.745972px;}
.y46_c00197{bottom:282.746257px;}
.y3f_c00197{bottom:299.254312px;}
.y3e_c00197{bottom:299.254770px;}
.y3d_c00197{bottom:299.255392px;}
.y3b_c00197{bottom:299.255827px;}
.y39_c00197{bottom:299.255880px;}
.y3c_c00197{bottom:299.255887px;}
.y3a_c00197{bottom:299.256217px;}
.y31_c00197{bottom:314.816895px;}
.y32_c00197{bottom:315.636697px;}
.y33_c00197{bottom:316.179810px;}
.y34_c00197{bottom:316.812915px;}
.y35_c00197{bottom:317.068432px;}
.y36_c00197{bottom:317.773298px;}
.y37_c00197{bottom:317.984992px;}
.y38_c00197{bottom:318.218070px;}
.y27_c00197{bottom:331.829392px;}
.y28_c00197{bottom:332.080177px;}
.y29_c00197{bottom:332.525085px;}
.y2a_c00197{bottom:332.847142px;}
.y2b_c00197{bottom:333.256432px;}
.y2c_c00197{bottom:333.537465px;}
.y2d_c00197{bottom:333.699443px;}
.y2e_c00197{bottom:333.891015px;}
.y2f_c00197{bottom:334.239600px;}
.y30_c00197{bottom:334.339770px;}
.y1f_c00197{bottom:349.113000px;}
.y20_c00197{bottom:349.660178px;}
.y21_c00197{bottom:350.845590px;}
.y22_c00197{bottom:351.045232px;}
.y23_c00197{bottom:351.361155px;}
.y24_c00197{bottom:351.628432px;}
.y25_c00197{bottom:353.016278px;}
.y26_c00197{bottom:353.244023px;}
.y18_c00197{bottom:366.931500px;}
.y19_c00197{bottom:367.738796px;}
.y1a_c00197{bottom:368.006640px;}
.y1b_c00197{bottom:368.633475px;}
.y1c_c00197{bottom:369.402457px;}
.y1d_c00197{bottom:369.776661px;}
.y1e_c00197{bottom:369.987548px;}
.y17_c00197{bottom:385.780500px;}
.y16_c00197{bottom:402.553500px;}
.y15_c00197{bottom:420.066000px;}
.y14_c00197{bottom:437.089500px;}
.y13_c00197{bottom:454.252500px;}
.y12_c00197{bottom:471.675000px;}
.y11_c00197{bottom:488.677500px;}
.y10_c00197{bottom:506.080500px;}
.ya_c00197{bottom:522.181500px;}
.yb_c00197{bottom:522.462000px;}
.yc_c00197{bottom:523.080000px;}
.yd_c00197{bottom:523.518000px;}
.ye_c00197{bottom:524.182500px;}
.yf_c00197{bottom:524.763000px;}
.y9_c00197{bottom:540.489000px;}
.y2_c00197{bottom:555.931500px;}
.y3_c00197{bottom:556.414500px;}
.y4_c00197{bottom:556.822500px;}
.y5_c00197{bottom:557.082000px;}
.y6_c00197{bottom:557.886000px;}
.y7_c00197{bottom:558.595500px;}
.y8_c00197{bottom:559.210500px;}
.y1_c00197{bottom:571.444500px;}
.h8_c00197{height:57.750000px;}
.h5_c00197{height:59.850000px;}
.hb_c00197{height:59.853621px;}
.hf_c00197{height:59.856733px;}
.h9_c00197{height:60.900000px;}
.h14_c00197{height:60.906851px;}
.he_c00197{height:61.956969px;}
.h13_c00197{height:63.007087px;}
.h3_c00197{height:65.100000px;}
.h10_c00197{height:65.107323px;}
.h11_c00197{height:66.157441px;}
.h16_c00197{height:67.207560px;}
.ha_c00197{height:68.250000px;}
.h15_c00197{height:68.257678px;}
.h6_c00197{height:69.300000px;}
.h4_c00197{height:70.350000px;}
.h12_c00197{height:70.357914px;}
.h7_c00197{height:71.400000px;}
.hc_c00197{height:71.408032px;}
.hd_c00197{height:72.458150px;}
.h2_c00197{height:112.350000px;}
.h1_c00197{height:623.250000px;}
.h0_c00197{height:623.400000px;}
.w0_c00197{width:366.390000px;}
.w1_c00197{width:366.750000px;}
.x0_c00197{left:0.000000px;}
.x61_c00197{left:27.990097px;}
.x64_c00197{left:29.965462px;}
.x1b_c00197{left:33.480000px;}
.x6a_c00197{left:36.849555px;}
.x43_c00197{left:38.696002px;}
.x24_c00197{left:41.040000px;}
.x2_c00197{left:43.066500px;}
.x9_c00197{left:45.630000px;}
.xa_c00197{left:60.750000px;}
.x20_c00197{left:64.800000px;}
.x25_c00197{left:69.660000px;}
.x33_c00197{left:71.550000px;}
.xf_c00197{left:73.294500px;}
.x58_c00197{left:74.791260px;}
.x3d_c00197{left:78.256500px;}
.x59_c00197{left:80.630565px;}
.x21_c00197{left:84.240000px;}
.x65_c00197{left:85.860540px;}
.x3_c00197{left:87.036000px;}
.x14_c00197{left:88.290000px;}
.x6b_c00197{left:91.412317px;}
.x4c_c00197{left:92.881785px;}
.x62_c00197{left:95.990610px;}
.x1c_c00197{left:106.110000px;}
.x44_c00197{left:108.380745px;}
.x26_c00197{left:110.970000px;}
.x4d_c00197{left:113.943532px;}
.x66_c00197{left:115.564222px;}
.x31_c00197{left:116.640000px;}
.x75_c00197{left:118.803232px;}
.x15_c00197{left:119.880000px;}
.xb_c00197{left:121.230000px;}
.x4_c00197{left:124.075500px;}
.x55_c00197{left:126.636000px;}
.x37_c00197{left:132.570000px;}
.x10_c00197{left:135.069000px;}
.x2d_c00197{left:136.080000px;}
.x5a_c00197{left:138.083152px;}
.x3a_c00197{left:141.094500px;}
.x16_c00197{left:142.830000px;}
.x5_c00197{left:147.702000px;}
.x50_c00197{left:148.779105px;}
.x2e_c00197{left:150.930000px;}
.x49_c00197{left:153.639352px;}
.x1_c00197{left:155.250000px;}
.x3e_c00197{left:157.284000px;}
.x6d_c00197{left:158.620800px;}
.x5c_c00197{left:160.392255px;}
.x38_c00197{left:163.080000px;}
.x53_c00197{left:165.385770px;}
.x27_c00197{left:166.590000px;}
.x34_c00197{left:169.020000px;}
.x3f_c00197{left:170.593500px;}
.x69_c00197{left:172.956825px;}
.x11_c00197{left:178.807500px;}
.x70_c00197{left:179.987700px;}
.x45_c00197{left:181.542735px;}
.x28_c00197{left:186.030000px;}
.x60_c00197{left:190.634467px;}
.x40_c00197{left:191.655000px;}
.x4e_c00197{left:196.573117px;}
.x1d_c00197{left:198.720000px;}
.xc_c00197{left:201.420000px;}
.x63_c00197{left:202.691707px;}
.x17_c00197{left:204.930000px;}
.x5e_c00197{left:206.027625px;}
.x76_c00197{left:207.102622px;}
.x4a_c00197{left:208.455682px;}
.x41_c00197{left:209.473500px;}
.x22_c00197{left:214.650000px;}
.x35_c00197{left:216.000000px;}
.x1e_c00197{left:219.510000px;}
.x6_c00197{left:220.729500px;}
.x18_c00197{left:225.180000px;}
.x54_c00197{left:226.677937px;}
.x47_c00197{left:231.296692px;}
.x6e_c00197{left:233.962447px;}
.x32_c00197{left:238.140000px;}
.x6c_c00197{left:239.366205px;}
.x4f_c00197{left:241.668742px;}
.x51_c00197{left:243.288367px;}
.x12_c00197{left:245.263500px;}
.x19_c00197{left:247.860000px;}
.x39_c00197{left:248.940000px;}
.x29_c00197{left:258.120000px;}
.xd_c00197{left:261.090000px;}
.x71_c00197{left:262.332412px;}
.x2f_c00197{left:264.330000px;}
.x5d_c00197{left:266.784195px;}
.x3b_c00197{left:267.987000px;}
.x67_c00197{left:271.371277px;}
.x2a_c00197{left:275.130000px;}
.x5b_c00197{left:278.468475px;}
.xe_c00197{left:280.530000px;}
.x7_c00197{left:285.264000px;}
.x1f_c00197{left:288.630000px;}
.x46_c00197{left:289.873357px;}
.x68_c00197{left:292.162957px;}
.x2b_c00197{left:294.840000px;}
.x72_c00197{left:297.692010px;}
.x1a_c00197{left:298.890000px;}
.x3c_c00197{left:302.005500px;}
.x13_c00197{left:303.324000px;}
.x48_c00197{left:307.704135px;}
.x56_c00197{left:308.906017px;}
.x73_c00197{left:310.450095px;}
.x30_c00197{left:313.740000px;}
.x42_c00197{left:317.179500px;}
.x36_c00197{left:320.760000px;}
.x6f_c00197{left:324.692242px;}
.x23_c00197{left:326.430000px;}
.x57_c00197{left:327.808770px;}
.x52_c00197{left:330.777555px;}
.x2c_c00197{left:332.100000px;}
.x74_c00197{left:334.491675px;}
.x5f_c00197{left:336.181897px;}
.x4b_c00197{left:338.880045px;}
.x8_c00197{left:341.158500px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.fs6_c00197{font-size:51.333333pt;}
.fs3_c00197{font-size:53.200000pt;}
.fs9_c00197{font-size:53.203219pt;}
.fsd_c00197{font-size:53.205985pt;}
.fs7_c00197{font-size:54.133333pt;}
.fs12_c00197{font-size:54.139423pt;}
.fsc_c00197{font-size:55.072861pt;}
.fs11_c00197{font-size:56.006300pt;}
.fs1_c00197{font-size:57.866667pt;}
.fse_c00197{font-size:57.873176pt;}
.fsf_c00197{font-size:58.806615pt;}
.fs14_c00197{font-size:59.740053pt;}
.fs8_c00197{font-size:60.666667pt;}
.fs13_c00197{font-size:60.673491pt;}
.fs4_c00197{font-size:61.600000pt;}
.fs2_c00197{font-size:62.533333pt;}
.fs10_c00197{font-size:62.540368pt;}
.fs5_c00197{font-size:63.466667pt;}
.fsa_c00197{font-size:63.473806pt;}
.fsb_c00197{font-size:64.407245pt;}
.fs0_c00197{font-size:99.866667pt;}
.y0_c00197{bottom:0.000000pt;}
.yb8_c00197{bottom:21.579940pt;}
.yb5_c00197{bottom:21.580213pt;}
.yb7_c00197{bottom:21.580227pt;}
.yb9_c00197{bottom:21.580300pt;}
.yb6_c00197{bottom:21.580307pt;}
.yb4_c00197{bottom:21.580787pt;}
.yb3_c00197{bottom:21.581340pt;}
.yb2_c00197{bottom:21.581820pt;}
.yb1_c00197{bottom:21.582073pt;}
.ya9_c00197{bottom:35.242353pt;}
.yaa_c00197{bottom:35.509647pt;}
.yab_c00197{bottom:35.853853pt;}
.yac_c00197{bottom:36.743507pt;}
.yad_c00197{bottom:37.621387pt;}
.yae_c00197{bottom:37.998160pt;}
.yaf_c00197{bottom:38.133593pt;}
.yb0_c00197{bottom:38.390133pt;}
.ya4_c00197{bottom:50.123620pt;}
.ya5_c00197{bottom:50.723240pt;}
.ya6_c00197{bottom:51.181927pt;}
.ya7_c00197{bottom:51.851740pt;}
.ya8_c00197{bottom:52.658713pt;}
.y9b_c00197{bottom:65.724613pt;}
.y9c_c00197{bottom:66.258740pt;}
.y9d_c00197{bottom:66.813427pt;}
.y9e_c00197{bottom:67.008460pt;}
.y9f_c00197{bottom:67.190133pt;}
.ya0_c00197{bottom:67.580107pt;}
.ya1_c00197{bottom:67.704673pt;}
.ya2_c00197{bottom:68.380360pt;}
.ya3_c00197{bottom:68.579300pt;}
.y94_c00197{bottom:80.607307pt;}
.y95_c00197{bottom:81.079467pt;}
.y96_c00197{bottom:81.264407pt;}
.y97_c00197{bottom:81.926613pt;}
.y98_c00197{bottom:82.596873pt;}
.y99_c00197{bottom:82.783773pt;}
.y9a_c00197{bottom:83.027693pt;}
.y93_c00197{bottom:97.229780pt;}
.y8d_c00197{bottom:97.229887pt;}
.y92_c00197{bottom:97.229953pt;}
.y90_c00197{bottom:97.230073pt;}
.y91_c00197{bottom:97.230300pt;}
.y8c_c00197{bottom:97.230327pt;}
.y8b_c00197{bottom:97.230367pt;}
.y8e_c00197{bottom:97.230533pt;}
.y89_c00197{bottom:97.230600pt;}
.y8f_c00197{bottom:97.230647pt;}
.y8a_c00197{bottom:97.230713pt;}
.y82_c00197{bottom:111.332773pt;}
.y83_c00197{bottom:112.179433pt;}
.y84_c00197{bottom:112.523553pt;}
.y85_c00197{bottom:113.507427pt;}
.y86_c00197{bottom:113.778907pt;}
.y87_c00197{bottom:114.262540pt;}
.y88_c00197{bottom:114.474853pt;}
.y81_c00197{bottom:128.741320pt;}
.y80_c00197{bottom:128.741953pt;}
.y7f_c00197{bottom:128.742127pt;}
.y7e_c00197{bottom:128.742547pt;}
.y7d_c00197{bottom:128.742913pt;}
.y7c_c00197{bottom:128.743487pt;}
.y7b_c00197{bottom:128.743567pt;}
.y76_c00197{bottom:143.340973pt;}
.y75_c00197{bottom:143.341113pt;}
.y77_c00197{bottom:143.341273pt;}
.y7a_c00197{bottom:143.341607pt;}
.y79_c00197{bottom:143.341613pt;}
.y78_c00197{bottom:143.341633pt;}
.y73_c00197{bottom:159.231973pt;}
.y74_c00197{bottom:159.232087pt;}
.y72_c00197{bottom:159.232207pt;}
.y71_c00197{bottom:159.232513pt;}
.y70_c00197{bottom:159.232533pt;}
.y6e_c00197{bottom:159.232693pt;}
.y6f_c00197{bottom:159.233013pt;}
.y67_c00197{bottom:173.982667pt;}
.y68_c00197{bottom:174.391340pt;}
.y69_c00197{bottom:175.004007pt;}
.y6a_c00197{bottom:175.358807pt;}
.y6b_c00197{bottom:175.649873pt;}
.y6c_c00197{bottom:176.501060pt;}
.y6d_c00197{bottom:177.010560pt;}
.y66_c00197{bottom:190.393273pt;}
.y64_c00197{bottom:190.393300pt;}
.y65_c00197{bottom:190.393927pt;}
.y63_c00197{bottom:190.393933pt;}
.y5f_c00197{bottom:190.393940pt;}
.y62_c00197{bottom:190.393953pt;}
.y61_c00197{bottom:190.394413pt;}
.y60_c00197{bottom:190.394433pt;}
.y5e_c00197{bottom:205.829380pt;}
.y5d_c00197{bottom:205.829400pt;}
.y5c_c00197{bottom:205.829613pt;}
.y5b_c00197{bottom:205.830247pt;}
.y59_c00197{bottom:205.830347pt;}
.y5a_c00197{bottom:205.830820pt;}
.y58_c00197{bottom:205.830867pt;}
.y50_c00197{bottom:220.067287pt;}
.y51_c00197{bottom:220.348073pt;}
.y52_c00197{bottom:220.815660pt;}
.y53_c00197{bottom:221.267700pt;}
.y54_c00197{bottom:221.424120pt;}
.y55_c00197{bottom:221.867547pt;}
.y56_c00197{bottom:222.086527pt;}
.y57_c00197{bottom:222.746467pt;}
.y4f_c00197{bottom:236.614547pt;}
.y4a_c00197{bottom:236.614680pt;}
.y48_c00197{bottom:236.614740pt;}
.y4c_c00197{bottom:236.614807pt;}
.y4e_c00197{bottom:236.614953pt;}
.y4d_c00197{bottom:236.615013pt;}
.y4b_c00197{bottom:236.615113pt;}
.y49_c00197{bottom:236.615120pt;}
.y43_c00197{bottom:251.328413pt;}
.y42_c00197{bottom:251.328720pt;}
.y44_c00197{bottom:251.328867pt;}
.y41_c00197{bottom:251.329293pt;}
.y45_c00197{bottom:251.329493pt;}
.y40_c00197{bottom:251.329640pt;}
.y47_c00197{bottom:251.329753pt;}
.y46_c00197{bottom:251.330007pt;}
.y3f_c00197{bottom:266.003833pt;}
.y3e_c00197{bottom:266.004240pt;}
.y3d_c00197{bottom:266.004793pt;}
.y3b_c00197{bottom:266.005180pt;}
.y39_c00197{bottom:266.005227pt;}
.y3c_c00197{bottom:266.005233pt;}
.y3a_c00197{bottom:266.005527pt;}
.y31_c00197{bottom:279.837240pt;}
.y32_c00197{bottom:280.565953pt;}
.y33_c00197{bottom:281.048720pt;}
.y34_c00197{bottom:281.611480pt;}
.y35_c00197{bottom:281.838607pt;}
.y36_c00197{bottom:282.465153pt;}
.y37_c00197{bottom:282.653327pt;}
.y38_c00197{bottom:282.860507pt;}
.y27_c00197{bottom:294.959460pt;}
.y28_c00197{bottom:295.182380pt;}
.y29_c00197{bottom:295.577853pt;}
.y2a_c00197{bottom:295.864127pt;}
.y2b_c00197{bottom:296.227940pt;}
.y2c_c00197{bottom:296.477747pt;}
.y2d_c00197{bottom:296.621727pt;}
.y2e_c00197{bottom:296.792013pt;}
.y2f_c00197{bottom:297.101867pt;}
.y30_c00197{bottom:297.190907pt;}
.y1f_c00197{bottom:310.322667pt;}
.y20_c00197{bottom:310.809047pt;}
.y21_c00197{bottom:311.862747pt;}
.y22_c00197{bottom:312.040207pt;}
.y23_c00197{bottom:312.321027pt;}
.y24_c00197{bottom:312.558607pt;}
.y25_c00197{bottom:313.792247pt;}
.y26_c00197{bottom:313.994687pt;}
.y18_c00197{bottom:326.161333pt;}
.y19_c00197{bottom:326.878929pt;}
.y1a_c00197{bottom:327.117013pt;}
.y1b_c00197{bottom:327.674200pt;}
.y1c_c00197{bottom:328.357740pt;}
.y1d_c00197{bottom:328.690365pt;}
.y1e_c00197{bottom:328.877820pt;}
.y17_c00197{bottom:342.916000pt;}
.y16_c00197{bottom:357.825333pt;}
.y15_c00197{bottom:373.392000pt;}
.y14_c00197{bottom:388.524000pt;}
.y13_c00197{bottom:403.780000pt;}
.y12_c00197{bottom:419.266667pt;}
.y11_c00197{bottom:434.380000pt;}
.y10_c00197{bottom:449.849333pt;}
.ya_c00197{bottom:464.161333pt;}
.yb_c00197{bottom:464.410667pt;}
.yc_c00197{bottom:464.960000pt;}
.yd_c00197{bottom:465.349333pt;}
.ye_c00197{bottom:465.940000pt;}
.yf_c00197{bottom:466.456000pt;}
.y9_c00197{bottom:480.434667pt;}
.y2_c00197{bottom:494.161333pt;}
.y3_c00197{bottom:494.590667pt;}
.y4_c00197{bottom:494.953333pt;}
.y5_c00197{bottom:495.184000pt;}
.y6_c00197{bottom:495.898667pt;}
.y7_c00197{bottom:496.529333pt;}
.y8_c00197{bottom:497.076000pt;}
.y1_c00197{bottom:507.950667pt;}
.h8_c00197{height:51.333333pt;}
.h5_c00197{height:53.200000pt;}
.hb_c00197{height:53.203219pt;}
.hf_c00197{height:53.205985pt;}
.h9_c00197{height:54.133333pt;}
.h14_c00197{height:54.139423pt;}
.he_c00197{height:55.072861pt;}
.h13_c00197{height:56.006300pt;}
.h3_c00197{height:57.866667pt;}
.h10_c00197{height:57.873176pt;}
.h11_c00197{height:58.806615pt;}
.h16_c00197{height:59.740053pt;}
.ha_c00197{height:60.666667pt;}
.h15_c00197{height:60.673491pt;}
.h6_c00197{height:61.600000pt;}
.h4_c00197{height:62.533333pt;}
.h12_c00197{height:62.540368pt;}
.h7_c00197{height:63.466667pt;}
.hc_c00197{height:63.473806pt;}
.hd_c00197{height:64.407245pt;}
.h2_c00197{height:99.866667pt;}
.h1_c00197{height:554.000000pt;}
.h0_c00197{height:554.133333pt;}
.w0_c00197{width:325.680000pt;}
.w1_c00197{width:326.000000pt;}
.x0_c00197{left:0.000000pt;}
.x61_c00197{left:24.880087pt;}
.x64_c00197{left:26.635967pt;}
.x1b_c00197{left:29.760000pt;}
.x6a_c00197{left:32.755160pt;}
.x43_c00197{left:34.396447pt;}
.x24_c00197{left:36.480000pt;}
.x2_c00197{left:38.281333pt;}
.x9_c00197{left:40.560000pt;}
.xa_c00197{left:54.000000pt;}
.x20_c00197{left:57.600000pt;}
.x25_c00197{left:61.920000pt;}
.x33_c00197{left:63.600000pt;}
.xf_c00197{left:65.150667pt;}
.x58_c00197{left:66.481120pt;}
.x3d_c00197{left:69.561333pt;}
.x59_c00197{left:71.671613pt;}
.x21_c00197{left:74.880000pt;}
.x65_c00197{left:76.320480pt;}
.x3_c00197{left:77.365333pt;}
.x14_c00197{left:78.480000pt;}
.x6b_c00197{left:81.255393pt;}
.x4c_c00197{left:82.561587pt;}
.x62_c00197{left:85.324987pt;}
.x1c_c00197{left:94.320000pt;}
.x44_c00197{left:96.338440pt;}
.x26_c00197{left:98.640000pt;}
.x4d_c00197{left:101.283140pt;}
.x66_c00197{left:102.723753pt;}
.x31_c00197{left:103.680000pt;}
.x75_c00197{left:105.602873pt;}
.x15_c00197{left:106.560000pt;}
.xb_c00197{left:107.760000pt;}
.x4_c00197{left:110.289333pt;}
.x55_c00197{left:112.565333pt;}
.x37_c00197{left:117.840000pt;}
.x10_c00197{left:120.061333pt;}
.x2d_c00197{left:120.960000pt;}
.x5a_c00197{left:122.740580pt;}
.x3a_c00197{left:125.417333pt;}
.x16_c00197{left:126.960000pt;}
.x5_c00197{left:131.290667pt;}
.x50_c00197{left:132.248093pt;}
.x2e_c00197{left:134.160000pt;}
.x49_c00197{left:136.568313pt;}
.x1_c00197{left:138.000000pt;}
.x3e_c00197{left:139.808000pt;}
.x6d_c00197{left:140.996267pt;}
.x5c_c00197{left:142.570893pt;}
.x38_c00197{left:144.960000pt;}
.x53_c00197{left:147.009573pt;}
.x27_c00197{left:148.080000pt;}
.x34_c00197{left:150.240000pt;}
.x3f_c00197{left:151.638667pt;}
.x69_c00197{left:153.739400pt;}
.x11_c00197{left:158.940000pt;}
.x70_c00197{left:159.989067pt;}
.x45_c00197{left:161.371320pt;}
.x28_c00197{left:165.360000pt;}
.x60_c00197{left:169.452860pt;}
.x40_c00197{left:170.360000pt;}
.x4e_c00197{left:174.731660pt;}
.x1d_c00197{left:176.640000pt;}
.xc_c00197{left:179.040000pt;}
.x63_c00197{left:180.170407pt;}
.x17_c00197{left:182.160000pt;}
.x5e_c00197{left:183.135667pt;}
.x76_c00197{left:184.091220pt;}
.x4a_c00197{left:185.293940pt;}
.x41_c00197{left:186.198667pt;}
.x22_c00197{left:190.800000pt;}
.x35_c00197{left:192.000000pt;}
.x1e_c00197{left:195.120000pt;}
.x6_c00197{left:196.204000pt;}
.x18_c00197{left:200.160000pt;}
.x54_c00197{left:201.491500pt;}
.x47_c00197{left:205.597060pt;}
.x6e_c00197{left:207.966620pt;}
.x32_c00197{left:211.680000pt;}
.x6c_c00197{left:212.769960pt;}
.x4f_c00197{left:214.816660pt;}
.x51_c00197{left:216.256327pt;}
.x12_c00197{left:218.012000pt;}
.x19_c00197{left:220.320000pt;}
.x39_c00197{left:221.280000pt;}
.x29_c00197{left:229.440000pt;}
.xd_c00197{left:232.080000pt;}
.x71_c00197{left:233.184367pt;}
.x2f_c00197{left:234.960000pt;}
.x5d_c00197{left:237.141507pt;}
.x3b_c00197{left:238.210667pt;}
.x67_c00197{left:241.218913pt;}
.x2a_c00197{left:244.560000pt;}
.x5b_c00197{left:247.527533pt;}
.xe_c00197{left:249.360000pt;}
.x7_c00197{left:253.568000pt;}
.x1f_c00197{left:256.560000pt;}
.x46_c00197{left:257.665207pt;}
.x68_c00197{left:259.700407pt;}
.x2b_c00197{left:262.080000pt;}
.x72_c00197{left:264.615120pt;}
.x1a_c00197{left:265.680000pt;}
.x3c_c00197{left:268.449333pt;}
.x13_c00197{left:269.621333pt;}
.x48_c00197{left:273.514787pt;}
.x56_c00197{left:274.583127pt;}
.x73_c00197{left:275.955640pt;}
.x30_c00197{left:278.880000pt;}
.x42_c00197{left:281.937333pt;}
.x36_c00197{left:285.120000pt;}
.x6f_c00197{left:288.615327pt;}
.x23_c00197{left:290.160000pt;}
.x57_c00197{left:291.385573pt;}
.x52_c00197{left:294.024493pt;}
.x2c_c00197{left:295.200000pt;}
.x74_c00197{left:297.325933pt;}
.x5f_c00197{left:298.828353pt;}
.x4b_c00197{left:301.226707pt;}
.x8_c00197{left:303.252000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00198 {
    display:none;
  }
  .loading-indicator_c00198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00198 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00198 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00198" -> "#page-container .classname_c00198")
 */
.pf_c00198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00198 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00198 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00198 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00198 {overflow:visible;}
  }
}
.c_c00198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00198 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00198:after { /* webkit #35443 */
  content: '';
}
.t_c00198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00198 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00198 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00198 { /* info for Javascript */
  display:none;
}
.l_c00198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00198:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00198 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00198.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m84_c00198{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m7a_c00198{transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);}
.m9e_c00198{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m8f_c00198{transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147005,0.000000,0.000000,0.250000,0,0);}
.mbc_c00198{transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148590,0.000000,0.000000,0.250000,0,0);}
.m94_c00198{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.mec_c00198{transform:matrix(0.149580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149580,0.000000,0.000000,0.250000,0,0);}
.m3b_c00198{transform:matrix(0.152295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152295,0.000000,0.000000,0.250000,0,0);}
.md6_c00198{transform:matrix(0.152670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152670,0.000000,0.000000,0.250000,0,0);}
.m97_c00198{transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);}
.m5b_c00198{transform:matrix(0.152930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152930,0.000000,0.000000,0.250000,0,0);}
.mb1_c00198{transform:matrix(0.153960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153960,0.000000,0.000000,0.250000,0,0);}
.mcd_c00198{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.me8_c00198{transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157920,0.000000,0.000000,0.250000,0,0);}
.md4_c00198{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.m93_c00198{transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);}
.m90_c00198{transform:matrix(0.160830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160830,0.000000,0.000000,0.250000,0,0);}
.m91_c00198{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m92_c00198{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m2d_c00198{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.mce_c00198{transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);}
.me7_c00198{transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00198{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.md8_c00198{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m8c_c00198{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.md0_c00198{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);}
.m34_c00198{transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);}
.mac_c00198{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m8a_c00198{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m87_c00198{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.md2_c00198{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.mdf_c00198{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m95_c00198{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.m8d_c00198{transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);}
.m88_c00198{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m89_c00198{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m76_c00198{transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.maa_c00198{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.mba_c00198{transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.m51_c00198{transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);}
.me5_c00198{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m4d_c00198{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m98_c00198{transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178435,0.000000,0.000000,0.250000,0,0);}
.mab_c00198{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);}
.m9d_c00198{transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);}
.mad_c00198{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m9f_c00198{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.mea_c00198{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m75_c00198{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);}
.mde_c00198{transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.m99_c00198{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m40_c00198{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.me3_c00198{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.mca_c00198{transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);}
.mee_c00198{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.m81_c00198{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00198{transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m5d_c00198{transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);}
.m46_c00198{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00198{transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);}
.m52_c00198{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.mae_c00198{transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);}
.m9c_c00198{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189710,0.000000,0.000000,0.250000,0,0);}
.m5f_c00198{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.ma3_c00198{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m69_c00198{transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);}
.me0_c00198{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.mb4_c00198{transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);}
.m7f_c00198{transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.m65_c00198{transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);}
.m64_c00198{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m8e_c00198{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m96_c00198{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.m7e_c00198{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.mdd_c00198{transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);}
.mdb_c00198{transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);}
.m6e_c00198{transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m9a_c00198{transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.mc0_c00198{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.md1_c00198{transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);}
.mb5_c00198{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m5c_c00198{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m66_c00198{transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);}
.me6_c00198{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);}
.maf_c00198{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.md5_c00198{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.ma7_c00198{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m6b_c00198{transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);}
.ma8_c00198{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);}
.ma0_c00198{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.mc6_c00198{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mb3_c00198{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.mb6_c00198{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.mc4_c00198{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m5e_c00198{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00198{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.md3_c00198{transform:matrix(0.203695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203695,0.000000,0.000000,0.250000,0,0);}
.me4_c00198{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);}
.md9_c00198{transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);}
.mc8_c00198{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.mc7_c00198{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md7_c00198{transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);}
.m54_c00198{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.ma5_c00198{transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m2f_c00198{transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);}
.m80_c00198{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);}
.ma6_c00198{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.mc5_c00198{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.mb0_c00198{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.m49_c00198{transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.mda_c00198{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.m9b_c00198{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.ma9_c00198{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212595,0.000000,0.000000,0.250000,0,0);}
.m4e_c00198{transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);}
.ma2_c00198{transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m8b_c00198{transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);}
.mb7_c00198{transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.m72_c00198{transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);}
.m74_c00198{transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);}
.m2b_c00198{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);}
.ma4_c00198{transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m44_c00198{transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);}
.me9_c00198{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m53_c00198{transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219320,0.000000,0.000000,0.250000,0,0);}
.m67_c00198{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);}
.m57_c00198{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m70_c00198{transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);}
.m2a_c00198{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);}
.mb8_c00198{transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);}
.m59_c00198{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m7c_c00198{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.mbe_c00198{transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);}
.m30_c00198{transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);}
.m63_c00198{transform:matrix(0.228435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228435,0.000000,0.000000,0.250000,0,0);}
.mbb_c00198{transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);}
.mcb_c00198{transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);}
.m45_c00198{transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);}
.meb_c00198{transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);}
.mbf_c00198{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m85_c00198{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00198{transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);}
.m86_c00198{transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);}
.m68_c00198{transform:matrix(0.241435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241435,0.000000,0.000000,0.250000,0,0);}
.mc2_c00198{transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);}
.mcf_c00198{transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);}
.mc3_c00198{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00198{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.med_c00198{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.mcc_c00198{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m78_c00198{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.m77_c00198{transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);}
.mbd_c00198{transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);}
.me1_c00198{transform:matrix(0.282435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282435,0.000000,0.000000,0.250000,0,0);}
.mc1_c00198{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m6c_c00198{transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);}
.m61_c00198{transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);}
.me2_c00198{transform:matrix(0.336975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336975,0.000000,0.000000,0.250000,0,0);}
.m6d_c00198{transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.378475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378475,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.413675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413675,0.000000,0.000000,0.250000,0,0);}
.m79_c00198{transform:matrix(0.546520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546520,0.000000,0.000000,0.250000,0,0);}
.m7b_c00198{transform:matrix(0.625395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625395,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:0.000000px;}
.fc0_c00198{color:transparent;}
.fsa_c00198{font-size:47.250000px;}
.fse_c00198{font-size:51.450000px;}
.fs8_c00198{font-size:57.750000px;}
.fs4_c00198{font-size:59.850000px;}
.fs2_c00198{font-size:60.900000px;}
.fs9_c00198{font-size:61.950000px;}
.fsd_c00198{font-size:63.000000px;}
.fs5_c00198{font-size:64.050000px;}
.fs1_c00198{font-size:65.100000px;}
.fs7_c00198{font-size:66.150000px;}
.fs3_c00198{font-size:67.200000px;}
.fs6_c00198{font-size:68.250000px;}
.fs0_c00198{font-size:70.350000px;}
.fsc_c00198{font-size:71.400000px;}
.fsb_c00198{font-size:72.450000px;}
.y0_c00198{bottom:0.000000px;}
.y5a_c00198{bottom:28.924500px;}
.y59_c00198{bottom:30.459000px;}
.y58_c00198{bottom:31.896000px;}
.y57_c00198{bottom:32.544000px;}
.y56_c00198{bottom:33.124500px;}
.y55_c00198{bottom:34.291500px;}
.y54_c00198{bottom:45.783000px;}
.y53_c00198{bottom:46.053000px;}
.y52_c00198{bottom:46.240500px;}
.y51_c00198{bottom:47.370000px;}
.y50_c00198{bottom:47.917500px;}
.y4f_c00198{bottom:48.190500px;}
.y4e_c00198{bottom:48.360000px;}
.y4d_c00198{bottom:48.600000px;}
.y4c_c00198{bottom:62.901000px;}
.y4b_c00198{bottom:63.694500px;}
.y4a_c00198{bottom:64.824000px;}
.y49_c00198{bottom:65.272500px;}
.y48_c00198{bottom:65.557500px;}
.y47_c00198{bottom:66.960000px;}
.y46_c00198{bottom:80.677500px;}
.y45_c00198{bottom:81.325500px;}
.y44_c00198{bottom:81.511500px;}
.y43_c00198{bottom:82.203000px;}
.y42_c00198{bottom:82.494000px;}
.y41_c00198{bottom:83.269500px;}
.y40_c00198{bottom:83.428500px;}
.y3f_c00198{bottom:97.332000px;}
.y3e_c00198{bottom:97.728000px;}
.y3d_c00198{bottom:98.229000px;}
.y3c_c00198{bottom:98.647500px;}
.y3b_c00198{bottom:98.935500px;}
.y3a_c00198{bottom:99.304500px;}
.y39_c00198{bottom:99.523500px;}
.y38_c00198{bottom:99.750000px;}
.y37_c00198{bottom:100.212000px;}
.y36_c00198{bottom:100.438500px;}
.y35_c00198{bottom:115.722000px;}
.y34_c00198{bottom:116.005500px;}
.y33_c00198{bottom:117.370500px;}
.y32_c00198{bottom:117.960000px;}
.y31_c00198{bottom:118.099500px;}
.y30_c00198{bottom:119.338500px;}
.y2f_c00198{bottom:132.643500px;}
.y2e_c00198{bottom:133.372500px;}
.y2d_c00198{bottom:134.367000px;}
.y2c_c00198{bottom:134.613000px;}
.y2b_c00198{bottom:134.805000px;}
.y2a_c00198{bottom:135.612000px;}
.y29_c00198{bottom:136.078500px;}
.y28_c00198{bottom:148.159500px;}
.y27_c00198{bottom:166.180500px;}
.y26_c00198{bottom:182.634000px;}
.y25_c00198{bottom:200.386500px;}
.y24_c00198{bottom:217.818000px;}
.y23_c00198{bottom:234.037500px;}
.y22_c00198{bottom:234.552000px;}
.y21_c00198{bottom:234.789000px;}
.y20_c00198{bottom:235.095000px;}
.y1f_c00198{bottom:235.752000px;}
.y1e_c00198{bottom:236.224500px;}
.y1d_c00198{bottom:236.406000px;}
.y1c_c00198{bottom:236.791500px;}
.y1b_c00198{bottom:252.450000px;}
.y1a_c00198{bottom:270.117000px;}
.y19_c00198{bottom:287.691000px;}
.y18_c00198{bottom:306.570000px;}
.y17_c00198{bottom:321.150000px;}
.y16_c00198{bottom:338.425500px;}
.y15_c00198{bottom:355.086000px;}
.y14_c00198{bottom:371.179500px;}
.y13_c00198{bottom:388.762500px;}
.y12_c00198{bottom:405.928500px;}
.y11_c00198{bottom:422.467500px;}
.y10_c00198{bottom:439.054500px;}
.y8_c00198{bottom:453.603000px;}
.y9_c00198{bottom:453.820500px;}
.ya_c00198{bottom:454.558500px;}
.yb_c00198{bottom:454.698000px;}
.yc_c00198{bottom:455.112000px;}
.yd_c00198{bottom:455.751000px;}
.ye_c00198{bottom:456.415500px;}
.yf_c00198{bottom:456.975000px;}
.y7_c00198{bottom:472.564500px;}
.y6_c00198{bottom:491.401500px;}
.y5_c00198{bottom:508.293000px;}
.y4_c00198{bottom:525.486000px;}
.y3_c00198{bottom:542.799000px;}
.y2_c00198{bottom:560.320500px;}
.y1_c00198{bottom:575.229000px;}
.hc_c00198{height:47.250000px;}
.h10_c00198{height:51.450000px;}
.ha_c00198{height:57.750000px;}
.h6_c00198{height:59.850000px;}
.h4_c00198{height:60.900000px;}
.hb_c00198{height:61.950000px;}
.hf_c00198{height:63.000000px;}
.h7_c00198{height:64.050000px;}
.h3_c00198{height:65.100000px;}
.h9_c00198{height:66.150000px;}
.h5_c00198{height:67.200000px;}
.h8_c00198{height:68.250000px;}
.h2_c00198{height:70.350000px;}
.he_c00198{height:71.400000px;}
.hd_c00198{height:72.450000px;}
.h1_c00198{height:623.250000px;}
.h0_c00198{height:623.400000px;}
.w0_c00198{width:366.390000px;}
.w1_c00198{width:366.750000px;}
.x0_c00198{left:0.000000px;}
.x3_c00198{left:30.780000px;}
.x44_c00198{left:33.211500px;}
.xc_c00198{left:34.560000px;}
.x20_c00198{left:35.640000px;}
.x40_c00198{left:36.721500px;}
.x5e_c00198{left:38.070000px;}
.x62_c00198{left:39.150000px;}
.x70_c00198{left:40.608000px;}
.x7b_c00198{left:42.435000px;}
.x35_c00198{left:49.411500px;}
.x58_c00198{left:52.110000px;}
.x2e_c00198{left:54.394500px;}
.x74_c00198{left:57.150000px;}
.x31_c00198{left:59.671500px;}
.x51_c00198{left:61.560000px;}
.x1a_c00198{left:62.640000px;}
.x4_c00198{left:65.340000px;}
.x21_c00198{left:68.310000px;}
.x13_c00198{left:69.930000px;}
.x4f_c00198{left:71.011500px;}
.xd_c00198{left:72.630000px;}
.x55_c00198{left:75.330000px;}
.x6a_c00198{left:78.441000px;}
.x14_c00198{left:87.480000px;}
.x5c_c00198{left:89.257500px;}
.x28_c00198{left:92.880000px;}
.xe_c00198{left:94.230000px;}
.x3d_c00198{left:95.581500px;}
.x45_c00198{left:98.281500px;}
.x71_c00198{left:103.267500px;}
.x67_c00198{left:105.840000px;}
.x22_c00198{left:106.920000px;}
.x38_c00198{left:108.001500px;}
.x5_c00198{left:110.430000px;}
.x29_c00198{left:113.670000px;}
.x1b_c00198{left:116.100000px;}
.x36_c00198{left:117.721500px;}
.x39_c00198{left:120.961500px;}
.x6e_c00198{left:124.596000px;}
.x2f_c00198{left:127.599000px;}
.x6_c00198{left:130.410000px;}
.x23_c00198{left:132.840000px;}
.x32_c00198{left:135.001500px;}
.x15_c00198{left:136.080000px;}
.xf_c00198{left:138.780000px;}
.x76_c00198{left:140.788500px;}
.x72_c00198{left:143.775000px;}
.x7_c00198{left:145.530000px;}
.x56_c00198{left:146.610000px;}
.x7c_c00198{left:151.263000px;}
.x63_c00198{left:152.820000px;}
.x1c_c00198{left:154.440000px;}
.x61_c00198{left:155.790000px;}
.x4a_c00198{left:159.841500px;}
.x77_c00198{left:161.110500px;}
.x30_c00198{left:162.151500px;}
.x52_c00198{left:163.350000px;}
.x3f_c00198{left:164.701500px;}
.x1_c00198{left:168.210000px;}
.x41_c00198{left:171.721500px;}
.x16_c00198{left:175.230000px;}
.x46_c00198{left:176.581500px;}
.x37_c00198{left:178.471500px;}
.x6b_c00198{left:182.113500px;}
.x5f_c00198{left:184.140000px;}
.x8_c00198{left:186.030000px;}
.x2a_c00198{left:188.730000px;}
.x10_c00198{left:191.430000px;}
.x78_c00198{left:193.182000px;}
.x47_c00198{left:195.751500px;}
.x57_c00198{left:197.640000px;}
.x24_c00198{left:200.880000px;}
.x64_c00198{left:203.580000px;}
.x3a_c00198{left:205.201500px;}
.x2b_c00198{left:208.440000px;}
.x53_c00198{left:212.760000px;}
.x4b_c00198{left:214.111500px;}
.x1d_c00198{left:215.460000px;}
.x7d_c00198{left:216.571500px;}
.x50_c00198{left:218.431500px;}
.x5d_c00198{left:219.640500px;}
.x59_c00198{left:230.310000px;}
.x9_c00198{left:233.280000px;}
.x42_c00198{left:234.631500px;}
.x17_c00198{left:237.060000px;}
.x65_c00198{left:238.410000px;}
.x3b_c00198{left:240.301500px;}
.x73_c00198{left:241.539000px;}
.x4c_c00198{left:243.541500px;}
.x33_c00198{left:247.051500px;}
.x75_c00198{left:251.526000px;}
.x25_c00198{left:252.720000px;}
.x11_c00198{left:255.690000px;}
.x2c_c00198{left:256.770000px;}
.xa_c00198{left:257.850000px;}
.x68_c00198{left:260.010000px;}
.x60_c00198{left:262.980000px;}
.x6c_c00198{left:265.027500px;}
.x48_c00198{left:268.381500px;}
.x26_c00198{left:270.270000px;}
.x18_c00198{left:272.430000px;}
.x6f_c00198{left:274.180500px;}
.x2d_c00198{left:277.560000px;}
.x12_c00198{left:280.530000px;}
.x4d_c00198{left:282.151500px;}
.x1e_c00198{left:284.040000px;}
.x5a_c00198{left:285.390000px;}
.x54_c00198{left:287.280000px;}
.x27_c00198{left:291.330000px;}
.x43_c00198{left:294.031500px;}
.xb_c00198{left:295.110000px;}
.x19_c00198{left:296.190000px;}
.x7a_c00198{left:297.408000px;}
.x1f_c00198{left:300.510000px;}
.x4e_c00198{left:302.401500px;}
.x34_c00198{left:305.371500px;}
.x69_c00198{left:312.390000px;}
.x2_c00198{left:316.440000px;}
.x3e_c00198{left:321.301500px;}
.x3c_c00198{left:324.001500px;}
.x6d_c00198{left:325.756500px;}
.x66_c00198{left:328.050000px;}
.x79_c00198{left:330.577500px;}
.x5b_c00198{left:331.830000px;}
.x49_c00198{left:332.911500px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:0.000000pt;}
.fsa_c00198{font-size:42.000000pt;}
.fse_c00198{font-size:45.733333pt;}
.fs8_c00198{font-size:51.333333pt;}
.fs4_c00198{font-size:53.200000pt;}
.fs2_c00198{font-size:54.133333pt;}
.fs9_c00198{font-size:55.066667pt;}
.fsd_c00198{font-size:56.000000pt;}
.fs5_c00198{font-size:56.933333pt;}
.fs1_c00198{font-size:57.866667pt;}
.fs7_c00198{font-size:58.800000pt;}
.fs3_c00198{font-size:59.733333pt;}
.fs6_c00198{font-size:60.666667pt;}
.fs0_c00198{font-size:62.533333pt;}
.fsc_c00198{font-size:63.466667pt;}
.fsb_c00198{font-size:64.400000pt;}
.y0_c00198{bottom:0.000000pt;}
.y5a_c00198{bottom:25.710667pt;}
.y59_c00198{bottom:27.074667pt;}
.y58_c00198{bottom:28.352000pt;}
.y57_c00198{bottom:28.928000pt;}
.y56_c00198{bottom:29.444000pt;}
.y55_c00198{bottom:30.481333pt;}
.y54_c00198{bottom:40.696000pt;}
.y53_c00198{bottom:40.936000pt;}
.y52_c00198{bottom:41.102667pt;}
.y51_c00198{bottom:42.106667pt;}
.y50_c00198{bottom:42.593333pt;}
.y4f_c00198{bottom:42.836000pt;}
.y4e_c00198{bottom:42.986667pt;}
.y4d_c00198{bottom:43.200000pt;}
.y4c_c00198{bottom:55.912000pt;}
.y4b_c00198{bottom:56.617333pt;}
.y4a_c00198{bottom:57.621333pt;}
.y49_c00198{bottom:58.020000pt;}
.y48_c00198{bottom:58.273333pt;}
.y47_c00198{bottom:59.520000pt;}
.y46_c00198{bottom:71.713333pt;}
.y45_c00198{bottom:72.289333pt;}
.y44_c00198{bottom:72.454667pt;}
.y43_c00198{bottom:73.069333pt;}
.y42_c00198{bottom:73.328000pt;}
.y41_c00198{bottom:74.017333pt;}
.y40_c00198{bottom:74.158667pt;}
.y3f_c00198{bottom:86.517333pt;}
.y3e_c00198{bottom:86.869333pt;}
.y3d_c00198{bottom:87.314667pt;}
.y3c_c00198{bottom:87.686667pt;}
.y3b_c00198{bottom:87.942667pt;}
.y3a_c00198{bottom:88.270667pt;}
.y39_c00198{bottom:88.465333pt;}
.y38_c00198{bottom:88.666667pt;}
.y37_c00198{bottom:89.077333pt;}
.y36_c00198{bottom:89.278667pt;}
.y35_c00198{bottom:102.864000pt;}
.y34_c00198{bottom:103.116000pt;}
.y33_c00198{bottom:104.329333pt;}
.y32_c00198{bottom:104.853333pt;}
.y31_c00198{bottom:104.977333pt;}
.y30_c00198{bottom:106.078667pt;}
.y2f_c00198{bottom:117.905333pt;}
.y2e_c00198{bottom:118.553333pt;}
.y2d_c00198{bottom:119.437333pt;}
.y2c_c00198{bottom:119.656000pt;}
.y2b_c00198{bottom:119.826667pt;}
.y2a_c00198{bottom:120.544000pt;}
.y29_c00198{bottom:120.958667pt;}
.y28_c00198{bottom:131.697333pt;}
.y27_c00198{bottom:147.716000pt;}
.y26_c00198{bottom:162.341333pt;}
.y25_c00198{bottom:178.121333pt;}
.y24_c00198{bottom:193.616000pt;}
.y23_c00198{bottom:208.033333pt;}
.y22_c00198{bottom:208.490667pt;}
.y21_c00198{bottom:208.701333pt;}
.y20_c00198{bottom:208.973333pt;}
.y1f_c00198{bottom:209.557333pt;}
.y1e_c00198{bottom:209.977333pt;}
.y1d_c00198{bottom:210.138667pt;}
.y1c_c00198{bottom:210.481333pt;}
.y1b_c00198{bottom:224.400000pt;}
.y1a_c00198{bottom:240.104000pt;}
.y19_c00198{bottom:255.725333pt;}
.y18_c00198{bottom:272.506667pt;}
.y17_c00198{bottom:285.466667pt;}
.y16_c00198{bottom:300.822667pt;}
.y15_c00198{bottom:315.632000pt;}
.y14_c00198{bottom:329.937333pt;}
.y13_c00198{bottom:345.566667pt;}
.y12_c00198{bottom:360.825333pt;}
.y11_c00198{bottom:375.526667pt;}
.y10_c00198{bottom:390.270667pt;}
.y8_c00198{bottom:403.202667pt;}
.y9_c00198{bottom:403.396000pt;}
.ya_c00198{bottom:404.052000pt;}
.yb_c00198{bottom:404.176000pt;}
.yc_c00198{bottom:404.544000pt;}
.yd_c00198{bottom:405.112000pt;}
.ye_c00198{bottom:405.702667pt;}
.yf_c00198{bottom:406.200000pt;}
.y7_c00198{bottom:420.057333pt;}
.y6_c00198{bottom:436.801333pt;}
.y5_c00198{bottom:451.816000pt;}
.y4_c00198{bottom:467.098667pt;}
.y3_c00198{bottom:482.488000pt;}
.y2_c00198{bottom:498.062667pt;}
.y1_c00198{bottom:511.314667pt;}
.hc_c00198{height:42.000000pt;}
.h10_c00198{height:45.733333pt;}
.ha_c00198{height:51.333333pt;}
.h6_c00198{height:53.200000pt;}
.h4_c00198{height:54.133333pt;}
.hb_c00198{height:55.066667pt;}
.hf_c00198{height:56.000000pt;}
.h7_c00198{height:56.933333pt;}
.h3_c00198{height:57.866667pt;}
.h9_c00198{height:58.800000pt;}
.h5_c00198{height:59.733333pt;}
.h8_c00198{height:60.666667pt;}
.h2_c00198{height:62.533333pt;}
.he_c00198{height:63.466667pt;}
.hd_c00198{height:64.400000pt;}
.h1_c00198{height:554.000000pt;}
.h0_c00198{height:554.133333pt;}
.w0_c00198{width:325.680000pt;}
.w1_c00198{width:326.000000pt;}
.x0_c00198{left:0.000000pt;}
.x3_c00198{left:27.360000pt;}
.x44_c00198{left:29.521333pt;}
.xc_c00198{left:30.720000pt;}
.x20_c00198{left:31.680000pt;}
.x40_c00198{left:32.641333pt;}
.x5e_c00198{left:33.840000pt;}
.x62_c00198{left:34.800000pt;}
.x70_c00198{left:36.096000pt;}
.x7b_c00198{left:37.720000pt;}
.x35_c00198{left:43.921333pt;}
.x58_c00198{left:46.320000pt;}
.x2e_c00198{left:48.350667pt;}
.x74_c00198{left:50.800000pt;}
.x31_c00198{left:53.041333pt;}
.x51_c00198{left:54.720000pt;}
.x1a_c00198{left:55.680000pt;}
.x4_c00198{left:58.080000pt;}
.x21_c00198{left:60.720000pt;}
.x13_c00198{left:62.160000pt;}
.x4f_c00198{left:63.121333pt;}
.xd_c00198{left:64.560000pt;}
.x55_c00198{left:66.960000pt;}
.x6a_c00198{left:69.725333pt;}
.x14_c00198{left:77.760000pt;}
.x5c_c00198{left:79.340000pt;}
.x28_c00198{left:82.560000pt;}
.xe_c00198{left:83.760000pt;}
.x3d_c00198{left:84.961333pt;}
.x45_c00198{left:87.361333pt;}
.x71_c00198{left:91.793333pt;}
.x67_c00198{left:94.080000pt;}
.x22_c00198{left:95.040000pt;}
.x38_c00198{left:96.001333pt;}
.x5_c00198{left:98.160000pt;}
.x29_c00198{left:101.040000pt;}
.x1b_c00198{left:103.200000pt;}
.x36_c00198{left:104.641333pt;}
.x39_c00198{left:107.521333pt;}
.x6e_c00198{left:110.752000pt;}
.x2f_c00198{left:113.421333pt;}
.x6_c00198{left:115.920000pt;}
.x23_c00198{left:118.080000pt;}
.x32_c00198{left:120.001333pt;}
.x15_c00198{left:120.960000pt;}
.xf_c00198{left:123.360000pt;}
.x76_c00198{left:125.145333pt;}
.x72_c00198{left:127.800000pt;}
.x7_c00198{left:129.360000pt;}
.x56_c00198{left:130.320000pt;}
.x7c_c00198{left:134.456000pt;}
.x63_c00198{left:135.840000pt;}
.x1c_c00198{left:137.280000pt;}
.x61_c00198{left:138.480000pt;}
.x4a_c00198{left:142.081333pt;}
.x77_c00198{left:143.209333pt;}
.x30_c00198{left:144.134667pt;}
.x52_c00198{left:145.200000pt;}
.x3f_c00198{left:146.401333pt;}
.x1_c00198{left:149.520000pt;}
.x41_c00198{left:152.641333pt;}
.x16_c00198{left:155.760000pt;}
.x46_c00198{left:156.961333pt;}
.x37_c00198{left:158.641333pt;}
.x6b_c00198{left:161.878667pt;}
.x5f_c00198{left:163.680000pt;}
.x8_c00198{left:165.360000pt;}
.x2a_c00198{left:167.760000pt;}
.x10_c00198{left:170.160000pt;}
.x78_c00198{left:171.717333pt;}
.x47_c00198{left:174.001333pt;}
.x57_c00198{left:175.680000pt;}
.x24_c00198{left:178.560000pt;}
.x64_c00198{left:180.960000pt;}
.x3a_c00198{left:182.401333pt;}
.x2b_c00198{left:185.280000pt;}
.x53_c00198{left:189.120000pt;}
.x4b_c00198{left:190.321333pt;}
.x1d_c00198{left:191.520000pt;}
.x7d_c00198{left:192.508000pt;}
.x50_c00198{left:194.161333pt;}
.x5d_c00198{left:195.236000pt;}
.x59_c00198{left:204.720000pt;}
.x9_c00198{left:207.360000pt;}
.x42_c00198{left:208.561333pt;}
.x17_c00198{left:210.720000pt;}
.x65_c00198{left:211.920000pt;}
.x3b_c00198{left:213.601333pt;}
.x73_c00198{left:214.701333pt;}
.x4c_c00198{left:216.481333pt;}
.x33_c00198{left:219.601333pt;}
.x75_c00198{left:223.578667pt;}
.x25_c00198{left:224.640000pt;}
.x11_c00198{left:227.280000pt;}
.x2c_c00198{left:228.240000pt;}
.xa_c00198{left:229.200000pt;}
.x68_c00198{left:231.120000pt;}
.x60_c00198{left:233.760000pt;}
.x6c_c00198{left:235.580000pt;}
.x48_c00198{left:238.561333pt;}
.x26_c00198{left:240.240000pt;}
.x18_c00198{left:242.160000pt;}
.x6f_c00198{left:243.716000pt;}
.x2d_c00198{left:246.720000pt;}
.x12_c00198{left:249.360000pt;}
.x4d_c00198{left:250.801333pt;}
.x1e_c00198{left:252.480000pt;}
.x5a_c00198{left:253.680000pt;}
.x54_c00198{left:255.360000pt;}
.x27_c00198{left:258.960000pt;}
.x43_c00198{left:261.361333pt;}
.xb_c00198{left:262.320000pt;}
.x19_c00198{left:263.280000pt;}
.x7a_c00198{left:264.362667pt;}
.x1f_c00198{left:267.120000pt;}
.x4e_c00198{left:268.801333pt;}
.x34_c00198{left:271.441333pt;}
.x69_c00198{left:277.680000pt;}
.x2_c00198{left:281.280000pt;}
.x3e_c00198{left:285.601333pt;}
.x3c_c00198{left:288.001333pt;}
.x6d_c00198{left:289.561333pt;}
.x66_c00198{left:291.600000pt;}
.x79_c00198{left:293.846667pt;}
.x5b_c00198{left:294.960000pt;}
.x49_c00198{left:295.921333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00199 {
    display:none;
  }
  .loading-indicator_c00199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00199 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00199 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00199" -> "#page-container .classname_c00199")
 */
.pf_c00199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00199 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00199 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00199 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00199 {overflow:visible;}
  }
}
.c_c00199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00199 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00199:after { /* webkit #35443 */
  content: '';
}
.t_c00199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00199 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00199 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00199 { /* info for Javascript */
  display:none;
}
.l_c00199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00199:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00199 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00199.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00199{transform:matrix(0.110640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110640,0.000000,0.000000,0.250000,0,0);}
.m6e_c00199{transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00199{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.mab_c00199{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.156230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156230,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m85_c00199{transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);}
.mcb_c00199{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.mae_c00199{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.165240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165240,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);}
.m6f_c00199{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.mc1_c00199{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);}
.m68_c00199{transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);}
.mcd_c00199{transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m6a_c00199{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.mc8_c00199{transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m75_c00199{transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);}
.mac_c00199{transform:matrix(0.177260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177260,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.mbb_c00199{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.178614,-0.001965,0.002750,0.249985,0,0);-ms-transform:matrix(0.178614,-0.001965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178614,-0.001965,0.002750,0.249985,0,0);}
.mce_c00199{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);}
.ma9_c00199{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m4d_c00199{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.182079,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182079,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182079,-0.002003,0.002750,0.249985,0,0);}
.m14_c00199{transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.183079,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183079,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183079,-0.002014,0.002750,0.249985,0,0);}
.m4a_c00199{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.184104,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184104,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184104,-0.002025,0.002750,0.249985,0,0);}
.m87_c00199{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.mbd_c00199{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.mc6_c00199{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.mdc_c00199{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.ma3_c00199{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mc5_c00199{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00199{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m72_c00199{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.mb6_c00199{transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);}
.ma5_c00199{transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);}
.ma8_c00199{transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.mad_c00199{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.mba_c00199{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.md8_c00199{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.mb3_c00199{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.mb5_c00199{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.md9_c00199{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.mb1_c00199{transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);}
.maa_c00199{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);}
.m92_c00199{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.mcf_c00199{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.md6_c00199{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.192533,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192533,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192533,-0.002118,0.002750,0.249985,0,0);}
.me_c00199{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.mdf_c00199{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.me2_c00199{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.196388,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196388,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196388,-0.002160,0.002750,0.249985,0,0);}
.mb8_c00199{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.mc2_c00199{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.m6d_c00199{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.mc4_c00199{transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);}
.m77_c00199{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00199{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);}
.m47_c00199{transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);}
.m97_c00199{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00199{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);}
.m3f_c00199{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.mb9_c00199{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.mb0_c00199{transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.m69_c00199{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m66_c00199{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.204820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204820,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);}
.md3_c00199{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.ma6_c00199{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.mcc_c00199{transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);}
.mde_c00199{transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);}
.m64_c00199{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.me0_c00199{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.m98_c00199{transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);}
.ma2_c00199{transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.m95_c00199{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.mb4_c00199{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);}
.md4_c00199{transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);}
.m76_c00199{transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.mb7_c00199{transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);}
.mbe_c00199{transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214795,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m5f_c00199{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.216582,-0.002382,0.002750,0.249985,0,0);-ms-transform:matrix(0.216582,-0.002382,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216582,-0.002382,0.002750,0.249985,0,0);}
.m9f_c00199{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00199{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.md0_c00199{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m83_c00199{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.mda_c00199{transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);}
.m79_c00199{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m5e_c00199{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m74_c00199{transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);}
.mbf_c00199{transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);}
.m82_c00199{transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.maf_c00199{transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);}
.m7e_c00199{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.me1_c00199{transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);}
.m4e_c00199{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00199{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.md7_c00199{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m88_c00199{transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.mbc_c00199{transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.226106,-0.002487,0.002750,0.249985,0,0);-ms-transform:matrix(0.226106,-0.002487,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226106,-0.002487,0.002750,0.249985,0,0);}
.m71_c00199{transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);}
.mdb_c00199{transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00199{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00199{transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);}
.mdd_c00199{transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);}
.md5_c00199{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);}
.m94_c00199{transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00199{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.md2_c00199{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.232480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232480,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.m41_c00199{transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);}
.mb2_c00199{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.236676,-0.002603,0.002750,0.249985,0,0);-ms-transform:matrix(0.236676,-0.002603,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236676,-0.002603,0.002750,0.249985,0,0);}
.m78_c00199{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.me4_c00199{transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);}
.me3_c00199{transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.242120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242120,0.000000,0.000000,0.250000,0,0);}
.m6c_c00199{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m9e_c00199{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.m52_c00199{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.md1_c00199{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);}
.m43_c00199{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m73_c00199{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m89_c00199{transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);}
.m96_c00199{transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.258080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258080,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);}
.ma0_c00199{transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);}
.m7b_c00199{transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);}
.m7a_c00199{transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);}
.m93_c00199{transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);}
.m9c_c00199{transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00199{transform:matrix(0.281900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00199{transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);}
.m4b_c00199{transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);}
.m8a_c00199{transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);}
.m8d_c00199{transform:matrix(0.307275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307275,0.000000,0.000000,0.250000,0,0);}
.m91_c00199{transform:matrix(0.311585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311585,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.321441,-0.003536,0.002750,0.249985,0,0);-ms-transform:matrix(0.321441,-0.003536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.321441,-0.003536,0.002750,0.249985,0,0);}
.m90_c00199{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m81_c00199{transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);}
.m3b_c00199{transform:matrix(0.371645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371645,0.000000,0.000000,0.250000,0,0);}
.mca_c00199{transform:matrix(0.431260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431260,0.000000,0.000000,0.250000,0,0);}
.mc9_c00199{transform:matrix(0.539420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539420,0.000000,0.000000,0.250000,0,0);}
.m8f_c00199{transform:matrix(0.911780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911780,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:0.000000px;}
.fc0_c00199{color:transparent;}
.fsd_c00199{font-size:45.150000px;}
.fs9_c00199{font-size:55.650000px;}
.fs7_c00199{font-size:57.750000px;}
.fs8_c00199{font-size:58.800000px;}
.fs1_c00199{font-size:58.803557px;}
.fs5_c00199{font-size:59.850000px;}
.fsb_c00199{font-size:60.900000px;}
.fsc_c00199{font-size:61.950000px;}
.fsa_c00199{font-size:63.000000px;}
.fs3_c00199{font-size:64.050000px;}
.fse_c00199{font-size:65.100000px;}
.fs6_c00199{font-size:67.200000px;}
.fsf_c00199{font-size:68.250000px;}
.fs4_c00199{font-size:69.300000px;}
.fs2_c00199{font-size:70.350000px;}
.fs0_c00199{font-size:76.650000px;}
.y0_c00199{bottom:0.000000px;}
.y3b_c00199{bottom:24.363000px;}
.y34_c00199{bottom:40.228500px;}
.y35_c00199{bottom:41.181000px;}
.y36_c00199{bottom:41.466000px;}
.y37_c00199{bottom:41.952000px;}
.y38_c00199{bottom:42.636000px;}
.y39_c00199{bottom:43.239000px;}
.y3a_c00199{bottom:43.638000px;}
.y2e_c00199{bottom:57.510000px;}
.y2f_c00199{bottom:58.296000px;}
.y30_c00199{bottom:58.480500px;}
.y31_c00199{bottom:58.720500px;}
.y32_c00199{bottom:59.623500px;}
.y33_c00199{bottom:60.348000px;}
.y2d_c00199{bottom:76.932000px;}
.y26_c00199{bottom:91.801500px;}
.y27_c00199{bottom:92.643000px;}
.y28_c00199{bottom:92.875500px;}
.y29_c00199{bottom:93.361500px;}
.y2a_c00199{bottom:93.865500px;}
.y2b_c00199{bottom:94.443000px;}
.y2c_c00199{bottom:94.626000px;}
.y25_c00199{bottom:110.436000px;}
.y24_c00199{bottom:127.537500px;}
.y23_c00199{bottom:144.736500px;}
.y22_c00199{bottom:162.958500px;}
.y21_c00199{bottom:180.445500px;}
.y20_c00199{bottom:197.607000px;}
.y1f_c00199{bottom:214.801500px;}
.y1e_c00199{bottom:232.701000px;}
.y1d_c00199{bottom:250.054500px;}
.y1c_c00199{bottom:265.756500px;}
.y1b_c00199{bottom:282.990000px;}
.y1a_c00199{bottom:299.494500px;}
.y19_c00199{bottom:316.989000px;}
.y18_c00199{bottom:333.820500px;}
.y17_c00199{bottom:351.364500px;}
.y16_c00199{bottom:368.730000px;}
.y15_c00199{bottom:385.890000px;}
.y14_c00199{bottom:403.176000px;}
.y13_c00199{bottom:420.456000px;}
.y12_c00199{bottom:437.464500px;}
.y11_c00199{bottom:454.713000px;}
.y10_c00199{bottom:472.291500px;}
.yf_c00199{bottom:489.571500px;}
.ye_c00199{bottom:506.223000px;}
.yd_c00199{bottom:523.501500px;}
.yc_c00199{bottom:540.676500px;}
.y2_c00199{bottom:555.931500px;}
.y3_c00199{bottom:556.141875px;}
.y4_c00199{bottom:556.442257px;}
.y5_c00199{bottom:556.736502px;}
.y6_c00199{bottom:557.149332px;}
.y7_c00199{bottom:557.600574px;}
.y8_c00199{bottom:557.739801px;}
.y9_c00199{bottom:558.037345px;}
.ya_c00199{bottom:558.726369px;}
.yb_c00199{bottom:558.996655px;}
.y1_c00199{bottom:570.781500px;}
.hf_c00199{height:45.150000px;}
.hb_c00199{height:55.650000px;}
.h9_c00199{height:57.750000px;}
.ha_c00199{height:58.800000px;}
.h3_c00199{height:58.803557px;}
.h7_c00199{height:59.850000px;}
.hd_c00199{height:60.900000px;}
.he_c00199{height:61.950000px;}
.hc_c00199{height:63.000000px;}
.h5_c00199{height:64.050000px;}
.h10_c00199{height:65.100000px;}
.h8_c00199{height:67.200000px;}
.h11_c00199{height:68.250000px;}
.h6_c00199{height:69.300000px;}
.h4_c00199{height:70.350000px;}
.h2_c00199{height:76.650000px;}
.h1_c00199{height:623.250000px;}
.h0_c00199{height:623.400000px;}
.w0_c00199{width:366.390000px;}
.w1_c00199{width:366.750000px;}
.x0_c00199{left:0.000000px;}
.x6e_c00199{left:35.239500px;}
.x63_c00199{left:36.720000px;}
.x5e_c00199{left:37.800000px;}
.x2c_c00199{left:38.880000px;}
.x14_c00199{left:40.230000px;}
.x2_c00199{left:41.455500px;}
.x66_c00199{left:45.900000px;}
.x51_c00199{left:51.570000px;}
.x54_c00199{left:54.000000px;}
.x5f_c00199{left:57.240000px;}
.x6b_c00199{left:59.400000px;}
.x3_c00199{left:60.580500px;}
.x4e_c00199{left:65.070000px;}
.xc_c00199{left:68.580000px;}
.x57_c00199{left:71.010000px;}
.x15_c00199{left:75.330000px;}
.x1d_c00199{left:77.220000px;}
.xd_c00199{left:82.080000px;}
.x72_c00199{left:84.240000px;}
.x38_c00199{left:85.320000px;}
.x4_c00199{left:87.888000px;}
.x44_c00199{left:92.610000px;}
.x28_c00199{left:95.310000px;}
.x23_c00199{left:96.660000px;}
.x41_c00199{left:98.010000px;}
.x30_c00199{left:99.900000px;}
.x2d_c00199{left:102.330000px;}
.x1e_c00199{left:103.680000px;}
.x6f_c00199{left:106.731000px;}
.x55_c00199{left:108.810000px;}
.x16_c00199{left:110.160000px;}
.x73_c00199{left:111.510000px;}
.x6c_c00199{left:113.400000px;}
.x5_c00199{left:114.637500px;}
.x67_c00199{left:116.370000px;}
.x24_c00199{left:119.340000px;}
.xe_c00199{left:120.960000px;}
.x17_c00199{left:123.390000px;}
.x49_c00199{left:126.900000px;}
.x45_c00199{left:127.980000px;}
.x1f_c00199{left:130.410000px;}
.x52_c00199{left:131.490000px;}
.x58_c00199{left:133.110000px;}
.x5b_c00199{left:136.080000px;}
.x5c_c00199{left:137.700000px;}
.x3c_c00199{left:139.590000px;}
.xf_c00199{left:143.910000px;}
.x68_c00199{left:146.340000px;}
.x53_c00199{left:150.390000px;}
.x6_c00199{left:152.167500px;}
.x3d_c00199{left:157.410000px;}
.x74_c00199{left:159.570000px;}
.x18_c00199{left:164.160000px;}
.x20_c00199{left:166.860000px;}
.x60_c00199{left:169.290000px;}
.x31_c00199{left:172.530000px;}
.x1_c00199{left:173.880000px;}
.x2e_c00199{left:175.230000px;}
.x70_c00199{left:178.902000px;}
.x10_c00199{left:180.630000px;}
.x42_c00199{left:182.250000px;}
.x21_c00199{left:186.840000px;}
.x25_c00199{left:189.810000px;}
.x4a_c00199{left:191.160000px;}
.x7_c00199{left:193.189500px;}
.x32_c00199{left:201.150000px;}
.x8_c00199{left:205.846500px;}
.x11_c00199{left:208.170000px;}
.x39_c00199{left:209.790000px;}
.x69_c00199{left:211.410000px;}
.x6a_c00199{left:212.760000px;}
.x19_c00199{left:214.380000px;}
.x35_c00199{left:215.730000px;}
.x46_c00199{left:217.350000px;}
.x4b_c00199{left:218.970000px;}
.x5d_c00199{left:220.050000px;}
.x75_c00199{left:225.450000px;}
.x3e_c00199{left:227.070000px;}
.x6d_c00199{left:230.040000px;}
.x9_c00199{left:232.896000px;}
.x59_c00199{left:234.900000px;}
.x61_c00199{left:236.790000px;}
.x64_c00199{left:239.760000px;}
.x1a_c00199{left:244.350000px;}
.x12_c00199{left:246.510000px;}
.x3f_c00199{left:248.940000px;}
.x26_c00199{left:251.100000px;}
.x4f_c00199{left:254.340000px;}
.x29_c00199{left:258.660000px;}
.x62_c00199{left:260.280000px;}
.x22_c00199{left:261.360000px;}
.x4c_c00199{left:264.330000px;}
.x47_c00199{left:267.300000px;}
.x33_c00199{left:273.510000px;}
.x1b_c00199{left:277.830000px;}
.x3a_c00199{left:278.910000px;}
.x4d_c00199{left:282.690000px;}
.x2a_c00199{left:284.580000px;}
.x71_c00199{left:286.066500px;}
.x13_c00199{left:289.170000px;}
.x56_c00199{left:290.250000px;}
.x36_c00199{left:292.950000px;}
.xa_c00199{left:295.534500px;}
.x65_c00199{left:297.270000px;}
.x50_c00199{left:299.430000px;}
.x2b_c00199{left:301.320000px;}
.x34_c00199{left:303.210000px;}
.x48_c00199{left:306.180000px;}
.x2f_c00199{left:309.960000px;}
.x40_c00199{left:311.850000px;}
.x1c_c00199{left:316.170000px;}
.x27_c00199{left:317.790000px;}
.xb_c00199{left:320.106000px;}
.x5a_c00199{left:321.300000px;}
.x37_c00199{left:322.650000px;}
.x43_c00199{left:325.890000px;}
.x3b_c00199{left:328.320000px;}
.x76_c00199{left:333.180000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:0.000000pt;}
.fsd_c00199{font-size:40.133333pt;}
.fs9_c00199{font-size:49.466667pt;}
.fs7_c00199{font-size:51.333333pt;}
.fs8_c00199{font-size:52.266667pt;}
.fs1_c00199{font-size:52.269829pt;}
.fs5_c00199{font-size:53.200000pt;}
.fsb_c00199{font-size:54.133333pt;}
.fsc_c00199{font-size:55.066667pt;}
.fsa_c00199{font-size:56.000000pt;}
.fs3_c00199{font-size:56.933333pt;}
.fse_c00199{font-size:57.866667pt;}
.fs6_c00199{font-size:59.733333pt;}
.fsf_c00199{font-size:60.666667pt;}
.fs4_c00199{font-size:61.600000pt;}
.fs2_c00199{font-size:62.533333pt;}
.fs0_c00199{font-size:68.133333pt;}
.y0_c00199{bottom:0.000000pt;}
.y3b_c00199{bottom:21.656000pt;}
.y34_c00199{bottom:35.758667pt;}
.y35_c00199{bottom:36.605333pt;}
.y36_c00199{bottom:36.858667pt;}
.y37_c00199{bottom:37.290667pt;}
.y38_c00199{bottom:37.898667pt;}
.y39_c00199{bottom:38.434667pt;}
.y3a_c00199{bottom:38.789333pt;}
.y2e_c00199{bottom:51.120000pt;}
.y2f_c00199{bottom:51.818667pt;}
.y30_c00199{bottom:51.982667pt;}
.y31_c00199{bottom:52.196000pt;}
.y32_c00199{bottom:52.998667pt;}
.y33_c00199{bottom:53.642667pt;}
.y2d_c00199{bottom:68.384000pt;}
.y26_c00199{bottom:81.601333pt;}
.y27_c00199{bottom:82.349333pt;}
.y28_c00199{bottom:82.556000pt;}
.y29_c00199{bottom:82.988000pt;}
.y2a_c00199{bottom:83.436000pt;}
.y2b_c00199{bottom:83.949333pt;}
.y2c_c00199{bottom:84.112000pt;}
.y25_c00199{bottom:98.165333pt;}
.y24_c00199{bottom:113.366667pt;}
.y23_c00199{bottom:128.654667pt;}
.y22_c00199{bottom:144.852000pt;}
.y21_c00199{bottom:160.396000pt;}
.y20_c00199{bottom:175.650667pt;}
.y1f_c00199{bottom:190.934667pt;}
.y1e_c00199{bottom:206.845333pt;}
.y1d_c00199{bottom:222.270667pt;}
.y1c_c00199{bottom:236.228000pt;}
.y1b_c00199{bottom:251.546667pt;}
.y1a_c00199{bottom:266.217333pt;}
.y19_c00199{bottom:281.768000pt;}
.y18_c00199{bottom:296.729333pt;}
.y17_c00199{bottom:312.324000pt;}
.y16_c00199{bottom:327.760000pt;}
.y15_c00199{bottom:343.013333pt;}
.y14_c00199{bottom:358.378667pt;}
.y13_c00199{bottom:373.738667pt;}
.y12_c00199{bottom:388.857333pt;}
.y11_c00199{bottom:404.189333pt;}
.y10_c00199{bottom:419.814667pt;}
.yf_c00199{bottom:435.174667pt;}
.ye_c00199{bottom:449.976000pt;}
.yd_c00199{bottom:465.334667pt;}
.yc_c00199{bottom:480.601333pt;}
.y2_c00199{bottom:494.161333pt;}
.y3_c00199{bottom:494.348333pt;}
.y4_c00199{bottom:494.615340pt;}
.y5_c00199{bottom:494.876891pt;}
.y6_c00199{bottom:495.243851pt;}
.y7_c00199{bottom:495.644955pt;}
.y8_c00199{bottom:495.768712pt;}
.y9_c00199{bottom:496.033196pt;}
.ya_c00199{bottom:496.645661pt;}
.yb_c00199{bottom:496.885916pt;}
.y1_c00199{bottom:507.361333pt;}
.hf_c00199{height:40.133333pt;}
.hb_c00199{height:49.466667pt;}
.h9_c00199{height:51.333333pt;}
.ha_c00199{height:52.266667pt;}
.h3_c00199{height:52.269829pt;}
.h7_c00199{height:53.200000pt;}
.hd_c00199{height:54.133333pt;}
.he_c00199{height:55.066667pt;}
.hc_c00199{height:56.000000pt;}
.h5_c00199{height:56.933333pt;}
.h10_c00199{height:57.866667pt;}
.h8_c00199{height:59.733333pt;}
.h11_c00199{height:60.666667pt;}
.h6_c00199{height:61.600000pt;}
.h4_c00199{height:62.533333pt;}
.h2_c00199{height:68.133333pt;}
.h1_c00199{height:554.000000pt;}
.h0_c00199{height:554.133333pt;}
.w0_c00199{width:325.680000pt;}
.w1_c00199{width:326.000000pt;}
.x0_c00199{left:0.000000pt;}
.x6e_c00199{left:31.324000pt;}
.x63_c00199{left:32.640000pt;}
.x5e_c00199{left:33.600000pt;}
.x2c_c00199{left:34.560000pt;}
.x14_c00199{left:35.760000pt;}
.x2_c00199{left:36.849333pt;}
.x66_c00199{left:40.800000pt;}
.x51_c00199{left:45.840000pt;}
.x54_c00199{left:48.000000pt;}
.x5f_c00199{left:50.880000pt;}
.x6b_c00199{left:52.800000pt;}
.x3_c00199{left:53.849333pt;}
.x4e_c00199{left:57.840000pt;}
.xc_c00199{left:60.960000pt;}
.x57_c00199{left:63.120000pt;}
.x15_c00199{left:66.960000pt;}
.x1d_c00199{left:68.640000pt;}
.xd_c00199{left:72.960000pt;}
.x72_c00199{left:74.880000pt;}
.x38_c00199{left:75.840000pt;}
.x4_c00199{left:78.122667pt;}
.x44_c00199{left:82.320000pt;}
.x28_c00199{left:84.720000pt;}
.x23_c00199{left:85.920000pt;}
.x41_c00199{left:87.120000pt;}
.x30_c00199{left:88.800000pt;}
.x2d_c00199{left:90.960000pt;}
.x1e_c00199{left:92.160000pt;}
.x6f_c00199{left:94.872000pt;}
.x55_c00199{left:96.720000pt;}
.x16_c00199{left:97.920000pt;}
.x73_c00199{left:99.120000pt;}
.x6c_c00199{left:100.800000pt;}
.x5_c00199{left:101.900000pt;}
.x67_c00199{left:103.440000pt;}
.x24_c00199{left:106.080000pt;}
.xe_c00199{left:107.520000pt;}
.x17_c00199{left:109.680000pt;}
.x49_c00199{left:112.800000pt;}
.x45_c00199{left:113.760000pt;}
.x1f_c00199{left:115.920000pt;}
.x52_c00199{left:116.880000pt;}
.x58_c00199{left:118.320000pt;}
.x5b_c00199{left:120.960000pt;}
.x5c_c00199{left:122.400000pt;}
.x3c_c00199{left:124.080000pt;}
.xf_c00199{left:127.920000pt;}
.x68_c00199{left:130.080000pt;}
.x53_c00199{left:133.680000pt;}
.x6_c00199{left:135.260000pt;}
.x3d_c00199{left:139.920000pt;}
.x74_c00199{left:141.840000pt;}
.x18_c00199{left:145.920000pt;}
.x20_c00199{left:148.320000pt;}
.x60_c00199{left:150.480000pt;}
.x31_c00199{left:153.360000pt;}
.x1_c00199{left:154.560000pt;}
.x2e_c00199{left:155.760000pt;}
.x70_c00199{left:159.024000pt;}
.x10_c00199{left:160.560000pt;}
.x42_c00199{left:162.000000pt;}
.x21_c00199{left:166.080000pt;}
.x25_c00199{left:168.720000pt;}
.x4a_c00199{left:169.920000pt;}
.x7_c00199{left:171.724000pt;}
.x32_c00199{left:178.800000pt;}
.x8_c00199{left:182.974667pt;}
.x11_c00199{left:185.040000pt;}
.x39_c00199{left:186.480000pt;}
.x69_c00199{left:187.920000pt;}
.x6a_c00199{left:189.120000pt;}
.x19_c00199{left:190.560000pt;}
.x35_c00199{left:191.760000pt;}
.x46_c00199{left:193.200000pt;}
.x4b_c00199{left:194.640000pt;}
.x5d_c00199{left:195.600000pt;}
.x75_c00199{left:200.400000pt;}
.x3e_c00199{left:201.840000pt;}
.x6d_c00199{left:204.480000pt;}
.x9_c00199{left:207.018667pt;}
.x59_c00199{left:208.800000pt;}
.x61_c00199{left:210.480000pt;}
.x64_c00199{left:213.120000pt;}
.x1a_c00199{left:217.200000pt;}
.x12_c00199{left:219.120000pt;}
.x3f_c00199{left:221.280000pt;}
.x26_c00199{left:223.200000pt;}
.x4f_c00199{left:226.080000pt;}
.x29_c00199{left:229.920000pt;}
.x62_c00199{left:231.360000pt;}
.x22_c00199{left:232.320000pt;}
.x4c_c00199{left:234.960000pt;}
.x47_c00199{left:237.600000pt;}
.x33_c00199{left:243.120000pt;}
.x1b_c00199{left:246.960000pt;}
.x3a_c00199{left:247.920000pt;}
.x4d_c00199{left:251.280000pt;}
.x2a_c00199{left:252.960000pt;}
.x71_c00199{left:254.281333pt;}
.x13_c00199{left:257.040000pt;}
.x56_c00199{left:258.000000pt;}
.x36_c00199{left:260.400000pt;}
.xa_c00199{left:262.697333pt;}
.x65_c00199{left:264.240000pt;}
.x50_c00199{left:266.160000pt;}
.x2b_c00199{left:267.840000pt;}
.x34_c00199{left:269.520000pt;}
.x48_c00199{left:272.160000pt;}
.x2f_c00199{left:275.520000pt;}
.x40_c00199{left:277.200000pt;}
.x1c_c00199{left:281.040000pt;}
.x27_c00199{left:282.480000pt;}
.xb_c00199{left:284.538667pt;}
.x5a_c00199{left:285.600000pt;}
.x37_c00199{left:286.800000pt;}
.x43_c00199{left:289.680000pt;}
.x3b_c00199{left:291.840000pt;}
.x76_c00199{left:296.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00200 {
    display:none;
  }
  .loading-indicator_c00200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00200 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00200 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00200" -> "#page-container .classname_c00200")
 */
.pf_c00200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00200 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00200 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00200 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00200 {overflow:visible;}
  }
}
.c_c00200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00200 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00200:after { /* webkit #35443 */
  content: '';
}
.t_c00200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00200 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00200 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00200 { /* info for Javascript */
  display:none;
}
.l_c00200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00200:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00200 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00200.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86_c00200{transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);}
.mdb_c00200{transform:matrix(0.071665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071665,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.110930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110930,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.142835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142835,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);}
.me0_c00200{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);}
.mab_c00200{transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154515,0.000000,0.000000,0.250000,0,0);}
.mb6_c00200{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00200{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);}
.mc2_c00200{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m76_c00200{transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);}
.mba_c00200{transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164390,0.000000,0.000000,0.250000,0,0);}
.mb7_c00200{transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);}
.mc3_c00200{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.mae_c00200{transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166735,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.mb4_c00200{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.mb8_c00200{transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);}
.maa_c00200{transform:matrix(0.172930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172930,0.000000,0.000000,0.250000,0,0);}
.ma1_c00200{transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00200{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);}
.m84_c00200{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m9c_c00200{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.mbb_c00200{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m80_c00200{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m6b_c00200{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mb9_c00200{transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00200{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.mc4_c00200{transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);}
.m7f_c00200{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m65_c00200{transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);}
.md8_c00200{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182240,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182770,0.000000,0.000000,0.250000,0,0);}
.me3_c00200{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.mbf_c00200{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00200{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m67_c00200{transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m95_c00200{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m71_c00200{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m63_c00200{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.ma9_c00200{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.mb0_c00200{transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);}
.me6_c00200{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m72_c00200{transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);}
.me8_c00200{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m85_c00200{transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);}
.m98_c00200{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mb1_c00200{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m94_c00200{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m7c_c00200{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.mce_c00200{transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);}
.m5a_c00200{transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);}
.ma6_c00200{transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);}
.mac_c00200{transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00200{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m25_c00200{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m66_c00200{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.mda_c00200{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);}
.ma7_c00200{transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);}
.m78_c00200{transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.199290,-0.002790,0.003500,0.249976,0,0);-ms-transform:matrix(0.199290,-0.002790,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199290,-0.002790,0.003500,0.249976,0,0);}
.m3f_c00200{transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199495,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);}
.md4_c00200{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{transform:matrix(0.201715,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201715,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201715,-0.002824,0.003500,0.249976,0,0);}
.maf_c00200{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.mc0_c00200{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m74_c00200{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00200{transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);}
.mdd_c00200{transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.mbd_c00200{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.mca_c00200{transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.mbc_c00200{transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mb3_c00200{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m83_c00200{transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m62_c00200{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m8c_c00200{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mcd_c00200{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m51_c00200{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m82_c00200{transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);}
.mcb_c00200{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.me7_c00200{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.mad_c00200{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.mbe_c00200{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m70_c00200{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.m49_c00200{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mde_c00200{transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);}
.mcc_c00200{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m91_c00200{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.ma5_c00200{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.mdf_c00200{transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m9e_c00200{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00200{transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);}
.me1_c00200{transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);}
.m69_c00200{transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);}
.m8e_c00200{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.m9f_c00200{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.mc8_c00200{transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);}
.m77_c00200{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.md7_c00200{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.md6_c00200{transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00200{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m73_c00200{transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m89_c00200{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m97_c00200{transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);}
.m2e_c00200{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.me9_c00200{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.m68_c00200{transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);}
.m7d_c00200{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.m59_c00200{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m99_c00200{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.m75_c00200{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00200{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.me5_c00200{transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);}
.md0_c00200{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.m90_c00200{transform:matrix(0.217960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217960,0.000000,0.000000,0.250000,0,0);}
.m57_c00200{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m79_c00200{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m8d_c00200{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.219588,-0.003074,0.003500,0.249976,0,0);-ms-transform:matrix(0.219588,-0.003074,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219588,-0.003074,0.003500,0.249976,0,0);}
.m5e_c00200{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m8b_c00200{transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);}
.mcf_c00200{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);}
.m43_c00200{transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00200{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.mc6_c00200{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m64_c00200{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00200{transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);}
.mea_c00200{transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);}
.m7a_c00200{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00200{transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);}
.m48_c00200{transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.226693,-0.003174,0.003500,0.249976,0,0);-ms-transform:matrix(0.226693,-0.003174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226693,-0.003174,0.003500,0.249976,0,0);}
.m81_c00200{transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);}
.md5_c00200{transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);}
.m37_c00200{transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);}
.mc1_c00200{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m92_c00200{transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);}
.m7e_c00200{transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);}
.mc9_c00200{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);}
.m96_c00200{transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);}
.m4c_c00200{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m8a_c00200{transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00200{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.md9_c00200{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.md3_c00200{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.me2_c00200{transform:matrix(0.239290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239290,0.000000,0.000000,0.250000,0,0);}
.m88_c00200{transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);}
.m93_c00200{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m2d_c00200{transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);}
.m5b_c00200{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.ma3_c00200{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.me4_c00200{transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00200{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.m8f_c00200{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.253275,-0.003546,0.003500,0.249976,0,0);-ms-transform:matrix(0.253275,-0.003546,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253275,-0.003546,0.003500,0.249976,0,0);}
.ma8_c00200{transform:matrix(0.254040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254040,0.000000,0.000000,0.250000,0,0);}
.m61_c00200{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{transform:matrix(0.255485,-0.003577,0.003500,0.249976,0,0);-ms-transform:matrix(0.255485,-0.003577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255485,-0.003577,0.003500,0.249976,0,0);}
.m3e_c00200{transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);}
.m60_c00200{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);}
.md2_c00200{transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.269669,-0.003775,0.003500,0.249976,0,0);-ms-transform:matrix(0.269669,-0.003775,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269669,-0.003775,0.003500,0.249976,0,0);}
.m28_c00200{transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);}
.m2f_c00200{transform:matrix(0.277713,-0.003888,0.003500,0.249976,0,0);-ms-transform:matrix(0.277713,-0.003888,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277713,-0.003888,0.003500,0.249976,0,0);}
.m55_c00200{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.md1_c00200{transform:matrix(0.281210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00200{transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);}
.m9b_c00200{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00200{transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);}
.ma0_c00200{transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);}
.m6f_c00200{transform:matrix(0.341555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341555,0.000000,0.000000,0.250000,0,0);}
.m87_c00200{transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{transform:matrix(0.385590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385590,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:0.000000px;}
.fc0_c00200{color:transparent;}
.fsb_c00200{font-size:54.600000px;}
.fs7_c00200{font-size:55.655453px;}
.fsa_c00200{font-size:57.750000px;}
.fs9_c00200{font-size:58.800000px;}
.fs6_c00200{font-size:59.850000px;}
.fs8_c00200{font-size:60.900000px;}
.fsd_c00200{font-size:61.950000px;}
.fsc_c00200{font-size:64.050000px;}
.fs5_c00200{font-size:65.100000px;}
.fs4_c00200{font-size:66.150000px;}
.fs2_c00200{font-size:68.250000px;}
.fs3_c00200{font-size:69.300000px;}
.fs1_c00200{font-size:71.400000px;}
.fs0_c00200{font-size:88.200000px;}
.y0_c00200{bottom:0.000000px;}
.y70_c00200{bottom:28.848000px;}
.y6f_c00200{bottom:45.367500px;}
.y68_c00200{bottom:61.563000px;}
.y69_c00200{bottom:61.806000px;}
.y6a_c00200{bottom:62.335500px;}
.y6b_c00200{bottom:63.085500px;}
.y6c_c00200{bottom:63.214500px;}
.y6d_c00200{bottom:63.447000px;}
.y6e_c00200{bottom:63.942000px;}
.y67_c00200{bottom:82.290000px;}
.y66_c00200{bottom:99.751500px;}
.y65_c00200{bottom:116.760000px;}
.y64_c00200{bottom:129.060000px;}
.y63_c00200{bottom:147.480000px;}
.y62_c00200{bottom:164.790000px;}
.y61_c00200{bottom:184.188000px;}
.y60_c00200{bottom:185.332500px;}
.y5f_c00200{bottom:185.724000px;}
.y5e_c00200{bottom:187.596000px;}
.y5d_c00200{bottom:189.138000px;}
.y5c_c00200{bottom:189.921000px;}
.y5b_c00200{bottom:190.621500px;}
.y5a_c00200{bottom:201.028500px;}
.y59_c00200{bottom:218.340000px;}
.y58_c00200{bottom:235.503000px;}
.y57_c00200{bottom:252.102000px;}
.y56_c00200{bottom:270.021000px;}
.y55_c00200{bottom:287.100000px;}
.y54_c00200{bottom:305.065500px;}
.y4c_c00200{bottom:320.758500px;}
.y4d_c00200{bottom:320.913000px;}
.y4e_c00200{bottom:321.540000px;}
.y4f_c00200{bottom:321.669000px;}
.y50_c00200{bottom:322.143000px;}
.y51_c00200{bottom:322.362000px;}
.y52_c00200{bottom:322.902000px;}
.y53_c00200{bottom:323.253000px;}
.y45_c00200{bottom:336.691500px;}
.y46_c00200{bottom:337.483500px;}
.y47_c00200{bottom:337.812000px;}
.y48_c00200{bottom:338.824500px;}
.y49_c00200{bottom:339.658500px;}
.y4a_c00200{bottom:340.614000px;}
.y4b_c00200{bottom:340.893000px;}
.y44_c00200{bottom:354.328500px;}
.y3c_c00200{bottom:370.171500px;}
.y3d_c00200{bottom:370.437000px;}
.y3e_c00200{bottom:371.211000px;}
.y3f_c00200{bottom:371.449500px;}
.y40_c00200{bottom:371.773500px;}
.y41_c00200{bottom:372.664500px;}
.y42_c00200{bottom:372.823500px;}
.y43_c00200{bottom:373.035000px;}
.y3b_c00200{bottom:387.538500px;}
.y3a_c00200{bottom:406.350000px;}
.y39_c00200{bottom:422.818500px;}
.y38_c00200{bottom:440.095500px;}
.y30_c00200{bottom:454.683000px;}
.y31_c00200{bottom:455.385639px;}
.y32_c00200{bottom:455.661663px;}
.y33_c00200{bottom:456.326985px;}
.y34_c00200{bottom:456.637029px;}
.y35_c00200{bottom:457.535850px;}
.y36_c00200{bottom:458.043441px;}
.y37_c00200{bottom:458.330742px;}
.y29_c00200{bottom:473.314500px;}
.y2a_c00200{bottom:473.581500px;}
.y2b_c00200{bottom:473.875500px;}
.y2c_c00200{bottom:474.513000px;}
.y2d_c00200{bottom:475.528500px;}
.y2e_c00200{bottom:475.722000px;}
.y2f_c00200{bottom:476.173500px;}
.y23_c00200{bottom:489.244500px;}
.y24_c00200{bottom:489.940500px;}
.y25_c00200{bottom:490.893000px;}
.y26_c00200{bottom:491.823000px;}
.y27_c00200{bottom:492.109500px;}
.y28_c00200{bottom:492.420000px;}
.y1a_c00200{bottom:506.521500px;}
.y1b_c00200{bottom:507.280500px;}
.y1c_c00200{bottom:507.471000px;}
.y1d_c00200{bottom:507.868500px;}
.y1e_c00200{bottom:508.443000px;}
.y1f_c00200{bottom:508.798500px;}
.y20_c00200{bottom:509.184000px;}
.y21_c00200{bottom:509.910000px;}
.y22_c00200{bottom:510.601500px;}
.y12_c00200{bottom:523.531500px;}
.y13_c00200{bottom:523.951500px;}
.y14_c00200{bottom:524.356500px;}
.y15_c00200{bottom:525.346500px;}
.y16_c00200{bottom:525.844500px;}
.y17_c00200{bottom:526.408500px;}
.y18_c00200{bottom:527.217000px;}
.y19_c00200{bottom:527.539500px;}
.yb_c00200{bottom:540.543000px;}
.yc_c00200{bottom:541.246500px;}
.yd_c00200{bottom:541.876500px;}
.ye_c00200{bottom:542.319000px;}
.yf_c00200{bottom:544.149000px;}
.y10_c00200{bottom:544.539000px;}
.y11_c00200{bottom:545.181000px;}
.y2_c00200{bottom:558.093000px;}
.y3_c00200{bottom:558.744000px;}
.y4_c00200{bottom:559.059000px;}
.y5_c00200{bottom:559.375500px;}
.y6_c00200{bottom:560.127000px;}
.y7_c00200{bottom:560.416500px;}
.y8_c00200{bottom:561.469500px;}
.y9_c00200{bottom:561.951000px;}
.ya_c00200{bottom:562.270500px;}
.y1_c00200{bottom:571.645500px;}
.hd_c00200{height:54.600000px;}
.h9_c00200{height:55.655453px;}
.hc_c00200{height:57.750000px;}
.hb_c00200{height:58.800000px;}
.h8_c00200{height:59.850000px;}
.ha_c00200{height:60.900000px;}
.hf_c00200{height:61.950000px;}
.he_c00200{height:64.050000px;}
.h7_c00200{height:65.100000px;}
.h6_c00200{height:66.150000px;}
.h4_c00200{height:68.250000px;}
.h5_c00200{height:69.300000px;}
.h3_c00200{height:71.400000px;}
.h2_c00200{height:88.200000px;}
.h1_c00200{height:623.250000px;}
.h0_c00200{height:623.400000px;}
.w0_c00200{width:366.390000px;}
.w1_c00200{width:366.750000px;}
.x0_c00200{left:0.000000px;}
.x28_c00200{left:34.216500px;}
.x23_c00200{left:36.847500px;}
.x2_c00200{left:38.020500px;}
.x4d_c00200{left:39.054000px;}
.x68_c00200{left:40.230000px;}
.x75_c00200{left:41.850000px;}
.x66_c00200{left:51.840000px;}
.x51_c00200{left:54.115500px;}
.x63_c00200{left:56.700000px;}
.x44_c00200{left:58.996500px;}
.x6b_c00200{left:61.020000px;}
.x24_c00200{left:63.556500px;}
.x48_c00200{left:65.610000px;}
.x11_c00200{left:68.152500px;}
.x6f_c00200{left:69.930000px;}
.x3d_c00200{left:73.980000px;}
.x3_c00200{left:78.685500px;}
.xb_c00200{left:82.207500px;}
.x29_c00200{left:84.405000px;}
.x6c_c00200{left:86.670000px;}
.x1f_c00200{left:87.937500px;}
.x5d_c00200{left:89.640000px;}
.x30_c00200{left:90.990000px;}
.x18_c00200{left:92.166000px;}
.x76_c00200{left:95.310000px;}
.x12_c00200{left:97.113000px;}
.x4_c00200{left:98.398500px;}
.x60_c00200{left:100.440000px;}
.x3e_c00200{left:102.060000px;}
.x2a_c00200{left:104.121000px;}
.x19_c00200{left:105.720000px;}
.x69_c00200{left:107.190000px;}
.x31_c00200{left:108.810000px;}
.x6d_c00200{left:111.780000px;}
.x4e_c00200{left:113.818500px;}
.x52_c00200{left:116.773500px;}
.x5_c00200{left:118.164000px;}
.xc_c00200{left:121.621500px;}
.x45_c00200{left:123.514500px;}
.x34_c00200{left:125.550000px;}
.x53_c00200{left:129.705000px;}
.x3f_c00200{left:130.950000px;}
.x64_c00200{left:132.300000px;}
.x1a_c00200{left:134.094000px;}
.x49_c00200{left:135.540000px;}
.x5e_c00200{left:137.160000px;}
.x70_c00200{left:140.670000px;}
.x38_c00200{left:141.750000px;}
.x46_c00200{left:143.433000px;}
.x59_c00200{left:146.341500px;}
.x61_c00200{left:147.420000px;}
.xd_c00200{left:149.241000px;}
.x7b_c00200{left:150.390000px;}
.x2b_c00200{left:151.644000px;}
.x20_c00200{left:155.968500px;}
.x40_c00200{left:157.140000px;}
.x4a_c00200{left:158.220000px;}
.x6_c00200{left:165.157500px;}
.x13_c00200{left:167.880000px;}
.x1_c00200{left:170.370000px;}
.x7c_c00200{left:172.530000px;}
.x2c_c00200{left:173.790000px;}
.x1b_c00200{left:175.122000px;}
.x54_c00200{left:177.180000px;}
.x35_c00200{left:180.630000px;}
.x7_c00200{left:183.243000px;}
.x6a_c00200{left:185.760000px;}
.x39_c00200{left:189.000000px;}
.x57_c00200{left:190.081500px;}
.x41_c00200{left:191.970000px;}
.x67_c00200{left:193.860000px;}
.x5a_c00200{left:197.911500px;}
.x55_c00200{left:199.104000px;}
.x1c_c00200{left:200.482500px;}
.x14_c00200{left:203.487000px;}
.x7a_c00200{left:205.564500px;}
.x71_c00200{left:206.820000px;}
.x6e_c00200{left:208.440000px;}
.x7e_c00200{left:209.790000px;}
.x3a_c00200{left:211.410000px;}
.x42_c00200{left:213.840000px;}
.x21_c00200{left:222.379500px;}
.x72_c00200{left:223.560000px;}
.x5c_c00200{left:224.641500px;}
.x58_c00200{left:226.531500px;}
.x1d_c00200{left:228.066000px;}
.x4f_c00200{left:236.952000px;}
.x2d_c00200{left:237.991500px;}
.x7f_c00200{left:239.760000px;}
.x15_c00200{left:243.720000px;}
.x4b_c00200{left:244.890000px;}
.x7d_c00200{left:247.050000px;}
.x8_c00200{left:249.054000px;}
.x62_c00200{left:251.100000px;}
.x56_c00200{left:253.066500px;}
.x36_c00200{left:254.070000px;}
.x78_c00200{left:255.690000px;}
.x25_c00200{left:258.234000px;}
.x43_c00200{left:262.170000px;}
.xe_c00200{left:263.635500px;}
.x22_c00200{left:265.030500px;}
.x32_c00200{left:268.650000px;}
.x73_c00200{left:273.240000px;}
.x2e_c00200{left:274.248000px;}
.x47_c00200{left:275.544000px;}
.x26_c00200{left:277.636500px;}
.x9_c00200{left:279.106500px;}
.x5f_c00200{left:281.610000px;}
.x3b_c00200{left:283.770000px;}
.x5b_c00200{left:285.121500px;}
.xf_c00200{left:288.024000px;}
.x37_c00200{left:290.250000px;}
.x79_c00200{left:292.140000px;}
.x2f_c00200{left:294.769500px;}
.x77_c00200{left:297.540000px;}
.xa_c00200{left:299.047500px;}
.x16_c00200{left:301.440000px;}
.x3c_c00200{left:305.910000px;}
.x33_c00200{left:315.090000px;}
.x65_c00200{left:317.250000px;}
.x50_c00200{left:319.251000px;}
.x27_c00200{left:322.770000px;}
.x17_c00200{left:324.460500px;}
.x4c_c00200{left:326.430000px;}
.x10_c00200{left:328.179000px;}
.x1e_c00200{left:329.247000px;}
.x74_c00200{left:332.910000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fsb_c00200{font-size:48.533333pt;}
.fs7_c00200{font-size:49.471514pt;}
.fsa_c00200{font-size:51.333333pt;}
.fs9_c00200{font-size:52.266667pt;}
.fs6_c00200{font-size:53.200000pt;}
.fs8_c00200{font-size:54.133333pt;}
.fsd_c00200{font-size:55.066667pt;}
.fsc_c00200{font-size:56.933333pt;}
.fs5_c00200{font-size:57.866667pt;}
.fs4_c00200{font-size:58.800000pt;}
.fs2_c00200{font-size:60.666667pt;}
.fs3_c00200{font-size:61.600000pt;}
.fs1_c00200{font-size:63.466667pt;}
.fs0_c00200{font-size:78.400000pt;}
.y0_c00200{bottom:0.000000pt;}
.y70_c00200{bottom:25.642667pt;}
.y6f_c00200{bottom:40.326667pt;}
.y68_c00200{bottom:54.722667pt;}
.y69_c00200{bottom:54.938667pt;}
.y6a_c00200{bottom:55.409333pt;}
.y6b_c00200{bottom:56.076000pt;}
.y6c_c00200{bottom:56.190667pt;}
.y6d_c00200{bottom:56.397333pt;}
.y6e_c00200{bottom:56.837333pt;}
.y67_c00200{bottom:73.146667pt;}
.y66_c00200{bottom:88.668000pt;}
.y65_c00200{bottom:103.786667pt;}
.y64_c00200{bottom:114.720000pt;}
.y63_c00200{bottom:131.093333pt;}
.y62_c00200{bottom:146.480000pt;}
.y61_c00200{bottom:163.722667pt;}
.y60_c00200{bottom:164.740000pt;}
.y5f_c00200{bottom:165.088000pt;}
.y5e_c00200{bottom:166.752000pt;}
.y5d_c00200{bottom:168.122667pt;}
.y5c_c00200{bottom:168.818667pt;}
.y5b_c00200{bottom:169.441333pt;}
.y5a_c00200{bottom:178.692000pt;}
.y59_c00200{bottom:194.080000pt;}
.y58_c00200{bottom:209.336000pt;}
.y57_c00200{bottom:224.090667pt;}
.y56_c00200{bottom:240.018667pt;}
.y55_c00200{bottom:255.200000pt;}
.y54_c00200{bottom:271.169333pt;}
.y4c_c00200{bottom:285.118667pt;}
.y4d_c00200{bottom:285.256000pt;}
.y4e_c00200{bottom:285.813333pt;}
.y4f_c00200{bottom:285.928000pt;}
.y50_c00200{bottom:286.349333pt;}
.y51_c00200{bottom:286.544000pt;}
.y52_c00200{bottom:287.024000pt;}
.y53_c00200{bottom:287.336000pt;}
.y45_c00200{bottom:299.281333pt;}
.y46_c00200{bottom:299.985333pt;}
.y47_c00200{bottom:300.277333pt;}
.y48_c00200{bottom:301.177333pt;}
.y49_c00200{bottom:301.918667pt;}
.y4a_c00200{bottom:302.768000pt;}
.y4b_c00200{bottom:303.016000pt;}
.y44_c00200{bottom:314.958667pt;}
.y3c_c00200{bottom:329.041333pt;}
.y3d_c00200{bottom:329.277333pt;}
.y3e_c00200{bottom:329.965333pt;}
.y3f_c00200{bottom:330.177333pt;}
.y40_c00200{bottom:330.465333pt;}
.y41_c00200{bottom:331.257333pt;}
.y42_c00200{bottom:331.398667pt;}
.y43_c00200{bottom:331.586667pt;}
.y3b_c00200{bottom:344.478667pt;}
.y3a_c00200{bottom:361.200000pt;}
.y39_c00200{bottom:375.838667pt;}
.y38_c00200{bottom:391.196000pt;}
.y30_c00200{bottom:404.162667pt;}
.y31_c00200{bottom:404.787235pt;}
.y32_c00200{bottom:405.032589pt;}
.y33_c00200{bottom:405.623987pt;}
.y34_c00200{bottom:405.899581pt;}
.y35_c00200{bottom:406.698533pt;}
.y36_c00200{bottom:407.149725pt;}
.y37_c00200{bottom:407.405104pt;}
.y29_c00200{bottom:420.724000pt;}
.y2a_c00200{bottom:420.961333pt;}
.y2b_c00200{bottom:421.222667pt;}
.y2c_c00200{bottom:421.789333pt;}
.y2d_c00200{bottom:422.692000pt;}
.y2e_c00200{bottom:422.864000pt;}
.y2f_c00200{bottom:423.265333pt;}
.y23_c00200{bottom:434.884000pt;}
.y24_c00200{bottom:435.502667pt;}
.y25_c00200{bottom:436.349333pt;}
.y26_c00200{bottom:437.176000pt;}
.y27_c00200{bottom:437.430667pt;}
.y28_c00200{bottom:437.706667pt;}
.y1a_c00200{bottom:450.241333pt;}
.y1b_c00200{bottom:450.916000pt;}
.y1c_c00200{bottom:451.085333pt;}
.y1d_c00200{bottom:451.438667pt;}
.y1e_c00200{bottom:451.949333pt;}
.y1f_c00200{bottom:452.265333pt;}
.y20_c00200{bottom:452.608000pt;}
.y21_c00200{bottom:453.253333pt;}
.y22_c00200{bottom:453.868000pt;}
.y12_c00200{bottom:465.361333pt;}
.y13_c00200{bottom:465.734667pt;}
.y14_c00200{bottom:466.094667pt;}
.y15_c00200{bottom:466.974667pt;}
.y16_c00200{bottom:467.417333pt;}
.y17_c00200{bottom:467.918667pt;}
.y18_c00200{bottom:468.637333pt;}
.y19_c00200{bottom:468.924000pt;}
.yb_c00200{bottom:480.482667pt;}
.yc_c00200{bottom:481.108000pt;}
.yd_c00200{bottom:481.668000pt;}
.ye_c00200{bottom:482.061333pt;}
.yf_c00200{bottom:483.688000pt;}
.y10_c00200{bottom:484.034667pt;}
.y11_c00200{bottom:484.605333pt;}
.y2_c00200{bottom:496.082667pt;}
.y3_c00200{bottom:496.661333pt;}
.y4_c00200{bottom:496.941333pt;}
.y5_c00200{bottom:497.222667pt;}
.y6_c00200{bottom:497.890667pt;}
.y7_c00200{bottom:498.148000pt;}
.y8_c00200{bottom:499.084000pt;}
.y9_c00200{bottom:499.512000pt;}
.ya_c00200{bottom:499.796000pt;}
.y1_c00200{bottom:508.129333pt;}
.hd_c00200{height:48.533333pt;}
.h9_c00200{height:49.471514pt;}
.hc_c00200{height:51.333333pt;}
.hb_c00200{height:52.266667pt;}
.h8_c00200{height:53.200000pt;}
.ha_c00200{height:54.133333pt;}
.hf_c00200{height:55.066667pt;}
.he_c00200{height:56.933333pt;}
.h7_c00200{height:57.866667pt;}
.h6_c00200{height:58.800000pt;}
.h4_c00200{height:60.666667pt;}
.h5_c00200{height:61.600000pt;}
.h3_c00200{height:63.466667pt;}
.h2_c00200{height:78.400000pt;}
.h1_c00200{height:554.000000pt;}
.h0_c00200{height:554.133333pt;}
.w0_c00200{width:325.680000pt;}
.w1_c00200{width:326.000000pt;}
.x0_c00200{left:0.000000pt;}
.x28_c00200{left:30.414667pt;}
.x23_c00200{left:32.753333pt;}
.x2_c00200{left:33.796000pt;}
.x4d_c00200{left:34.714667pt;}
.x68_c00200{left:35.760000pt;}
.x75_c00200{left:37.200000pt;}
.x66_c00200{left:46.080000pt;}
.x51_c00200{left:48.102667pt;}
.x63_c00200{left:50.400000pt;}
.x44_c00200{left:52.441333pt;}
.x6b_c00200{left:54.240000pt;}
.x24_c00200{left:56.494667pt;}
.x48_c00200{left:58.320000pt;}
.x11_c00200{left:60.580000pt;}
.x6f_c00200{left:62.160000pt;}
.x3d_c00200{left:65.760000pt;}
.x3_c00200{left:69.942667pt;}
.xb_c00200{left:73.073333pt;}
.x29_c00200{left:75.026667pt;}
.x6c_c00200{left:77.040000pt;}
.x1f_c00200{left:78.166667pt;}
.x5d_c00200{left:79.680000pt;}
.x30_c00200{left:80.880000pt;}
.x18_c00200{left:81.925333pt;}
.x76_c00200{left:84.720000pt;}
.x12_c00200{left:86.322667pt;}
.x4_c00200{left:87.465333pt;}
.x60_c00200{left:89.280000pt;}
.x3e_c00200{left:90.720000pt;}
.x2a_c00200{left:92.552000pt;}
.x19_c00200{left:93.973333pt;}
.x69_c00200{left:95.280000pt;}
.x31_c00200{left:96.720000pt;}
.x6d_c00200{left:99.360000pt;}
.x4e_c00200{left:101.172000pt;}
.x52_c00200{left:103.798667pt;}
.x5_c00200{left:105.034667pt;}
.xc_c00200{left:108.108000pt;}
.x45_c00200{left:109.790667pt;}
.x34_c00200{left:111.600000pt;}
.x53_c00200{left:115.293333pt;}
.x3f_c00200{left:116.400000pt;}
.x64_c00200{left:117.600000pt;}
.x1a_c00200{left:119.194667pt;}
.x49_c00200{left:120.480000pt;}
.x5e_c00200{left:121.920000pt;}
.x70_c00200{left:125.040000pt;}
.x38_c00200{left:126.000000pt;}
.x46_c00200{left:127.496000pt;}
.x59_c00200{left:130.081333pt;}
.x61_c00200{left:131.040000pt;}
.xd_c00200{left:132.658667pt;}
.x7b_c00200{left:133.680000pt;}
.x2b_c00200{left:134.794667pt;}
.x20_c00200{left:138.638667pt;}
.x40_c00200{left:139.680000pt;}
.x4a_c00200{left:140.640000pt;}
.x6_c00200{left:146.806667pt;}
.x13_c00200{left:149.226667pt;}
.x1_c00200{left:151.440000pt;}
.x7c_c00200{left:153.360000pt;}
.x2c_c00200{left:154.480000pt;}
.x1b_c00200{left:155.664000pt;}
.x54_c00200{left:157.493333pt;}
.x35_c00200{left:160.560000pt;}
.x7_c00200{left:162.882667pt;}
.x6a_c00200{left:165.120000pt;}
.x39_c00200{left:168.000000pt;}
.x57_c00200{left:168.961333pt;}
.x41_c00200{left:170.640000pt;}
.x67_c00200{left:172.320000pt;}
.x5a_c00200{left:175.921333pt;}
.x55_c00200{left:176.981333pt;}
.x1c_c00200{left:178.206667pt;}
.x14_c00200{left:180.877333pt;}
.x7a_c00200{left:182.724000pt;}
.x71_c00200{left:183.840000pt;}
.x6e_c00200{left:185.280000pt;}
.x7e_c00200{left:186.480000pt;}
.x3a_c00200{left:187.920000pt;}
.x42_c00200{left:190.080000pt;}
.x21_c00200{left:197.670667pt;}
.x72_c00200{left:198.720000pt;}
.x5c_c00200{left:199.681333pt;}
.x58_c00200{left:201.361333pt;}
.x1d_c00200{left:202.725333pt;}
.x4f_c00200{left:210.624000pt;}
.x2d_c00200{left:211.548000pt;}
.x7f_c00200{left:213.120000pt;}
.x15_c00200{left:216.640000pt;}
.x4b_c00200{left:217.680000pt;}
.x7d_c00200{left:219.600000pt;}
.x8_c00200{left:221.381333pt;}
.x62_c00200{left:223.200000pt;}
.x56_c00200{left:224.948000pt;}
.x36_c00200{left:225.840000pt;}
.x78_c00200{left:227.280000pt;}
.x25_c00200{left:229.541333pt;}
.x43_c00200{left:233.040000pt;}
.xe_c00200{left:234.342667pt;}
.x22_c00200{left:235.582667pt;}
.x32_c00200{left:238.800000pt;}
.x73_c00200{left:242.880000pt;}
.x2e_c00200{left:243.776000pt;}
.x47_c00200{left:244.928000pt;}
.x26_c00200{left:246.788000pt;}
.x9_c00200{left:248.094667pt;}
.x5f_c00200{left:250.320000pt;}
.x3b_c00200{left:252.240000pt;}
.x5b_c00200{left:253.441333pt;}
.xf_c00200{left:256.021333pt;}
.x37_c00200{left:258.000000pt;}
.x79_c00200{left:259.680000pt;}
.x2f_c00200{left:262.017333pt;}
.x77_c00200{left:264.480000pt;}
.xa_c00200{left:265.820000pt;}
.x16_c00200{left:267.946667pt;}
.x3c_c00200{left:271.920000pt;}
.x33_c00200{left:280.080000pt;}
.x65_c00200{left:282.000000pt;}
.x50_c00200{left:283.778667pt;}
.x27_c00200{left:286.906667pt;}
.x17_c00200{left:288.409333pt;}
.x4c_c00200{left:290.160000pt;}
.x10_c00200{left:291.714667pt;}
.x1e_c00200{left:292.664000pt;}
.x74_c00200{left:295.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00201 {
    display:none;
  }
  .loading-indicator_c00201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00201 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00201 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00201" -> "#page-container .classname_c00201")
 */
.pf_c00201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00201 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00201 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00201 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00201 {overflow:visible;}
  }
}
.c_c00201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00201 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00201:after { /* webkit #35443 */
  content: '';
}
.t_c00201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00201 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00201 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00201 { /* info for Javascript */
  display:none;
}
.l_c00201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00201:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00201 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00201.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00201;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c00201{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.mcf_c00201{transform:matrix(0.111820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111820,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);}
.m2a_c00201{transform:matrix(0.136885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136885,0.000000,0.000000,0.250000,0,0);}
.ma4_c00201{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.mef_c00201{transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);}
.mc8_c00201{transform:matrix(0.149885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149885,0.000000,0.000000,0.250000,0,0);}
.m5a_c00201{transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);}
.m50_c00201{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00201{transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00201{transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154535,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m6d_c00201{transform:matrix(0.156730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156730,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);}
.m77_c00201{transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158330,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.159330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159330,0.000000,0.000000,0.250000,0,0);}
.m25_c00201{transform:matrix(0.159460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159460,0.000000,0.000000,0.250000,0,0);}
.m4e_c00201{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m70_c00201{transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159610,0.000000,0.000000,0.250000,0,0);}
.m4b_c00201{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.mc1_c00201{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.me3_c00201{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m72_c00201{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.m92_c00201{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m8b_c00201{transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.mb1_c00201{transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);}
.mc2_c00201{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m83_c00201{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m26_c00201{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.m6e_c00201{transform:matrix(0.165405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165405,0.000000,0.000000,0.250000,0,0);}
.m87_c00201{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.m45_c00201{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);}
.m94_c00201{transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);}
.ma1_c00201{transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168545,0.000000,0.000000,0.250000,0,0);}
.m9c_c00201{transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);}
.m3f_c00201{transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m48_c00201{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m91_c00201{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.m41_c00201{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m7b_c00201{transform:matrix(0.171310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171310,0.000000,0.000000,0.250000,0,0);}
.m4c_c00201{transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);}
.m5f_c00201{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.mc6_c00201{transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);}
.m8c_c00201{transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);}
.m35_c00201{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.ma2_c00201{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m84_c00201{transform:matrix(0.173910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173910,0.000000,0.000000,0.250000,0,0);}
.m79_c00201{transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);}
.m60_c00201{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.me6_c00201{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m62_c00201{transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);}
.me4_c00201{transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);}
.mdf_c00201{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m65_c00201{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.mbf_c00201{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.mab_c00201{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.mc3_c00201{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);}
.m97_c00201{transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177605,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.m71_c00201{transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);}
.m5e_c00201{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m5b_c00201{transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);}
.m8d_c00201{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.mce_c00201{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m7c_c00201{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.ma6_c00201{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.md5_c00201{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.m89_c00201{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.mac_c00201{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m38_c00201{transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m57_c00201{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m9e_c00201{transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);}
.m47_c00201{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00201{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.m69_c00201{transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00201{transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);}
.m58_c00201{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.m6f_c00201{transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);}
.m49_c00201{transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);}
.m78_c00201{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.mad_c00201{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.md6_c00201{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.mba_c00201{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.mca_c00201{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.mc7_c00201{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m88_c00201{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf_c00201{transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00201{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.ma7_c00201{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m93_c00201{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00201{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m81_c00201{transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);}
.m24_c00201{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.ma3_c00201{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md4_c00201{transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);}
.mcb_c00201{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m36_c00201{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m2b_c00201{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m9d_c00201{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.mb7_c00201{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m6c_c00201{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.md1_c00201{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m59_c00201{transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);}
.m76_c00201{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m98_c00201{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m7a_c00201{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.mbe_c00201{transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);}
.m56_c00201{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m39_c00201{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.m46_c00201{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m73_c00201{transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);}
.me2_c00201{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.me9_c00201{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m32_c00201{transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);}
.m9a_c00201{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00201{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.m80_c00201{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.md0_c00201{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m34_c00201{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.mb6_c00201{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m55_c00201{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m44_c00201{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.me5_c00201{transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);}
.m30_c00201{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.ma8_c00201{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m82_c00201{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m4d_c00201{transform:matrix(0.193840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193840,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m7f_c00201{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m85_c00201{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m96_c00201{transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);}
.m67_c00201{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m33_c00201{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.m66_c00201{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.md8_c00201{transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);}
.m7e_c00201{transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);}
.m68_c00201{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.mbd_c00201{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.me_c00201{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m90_c00201{transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);}
.m86_c00201{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.m3e_c00201{transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);}
.mb2_c00201{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.m4a_c00201{transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);}
.m8f_c00201{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.maa_c00201{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00201{transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);}
.mcd_c00201{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.mbc_c00201{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.mdc_c00201{transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);}
.m8a_c00201{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.mc5_c00201{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m42_c00201{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.m95_c00201{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00201{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.me0_c00201{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.mb0_c00201{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mc4_c00201{transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);}
.mc9_c00201{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00201{transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00201{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m61_c00201{transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);}
.me8_c00201{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m27_c00201{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00201{transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);}
.md9_c00201{transform:matrix(0.204145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204145,0.000000,0.000000,0.250000,0,0);}
.m4f_c00201{transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);}
.mdb_c00201{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m64_c00201{transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);}
.m7d_c00201{transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);}
.me1_c00201{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00201{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.mb4_c00201{transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);}
.m2f_c00201{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m7_c00201{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m8e_c00201{transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);}
.mde_c00201{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00201{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.md7_c00201{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.ma9_c00201{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.m43_c00201{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.mbb_c00201{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.me7_c00201{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00201{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.maf_c00201{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m99_c00201{transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m40_c00201{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.mea_c00201{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m6b_c00201{transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m63_c00201{transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);}
.m29_c00201{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mda_c00201{transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);}
.m37_c00201{transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);}
.mb3_c00201{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.mdd_c00201{transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.md2_c00201{transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);}
.m75_c00201{transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);}
.mcc_c00201{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.mb9_c00201{transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);}
.m3d_c00201{transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);}
.mae_c00201{transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);}
.m31_c00201{transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);}
.m2c_c00201{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.md3_c00201{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m53_c00201{transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);}
.m51_c00201{transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);}
.ma5_c00201{transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);}
.m54_c00201{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m74_c00201{transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);}
.mf1_c00201{transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);}
.meb_c00201{transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);}
.med_c00201{transform:matrix(0.297995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297995,0.000000,0.000000,0.250000,0,0);}
.mf0_c00201{transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);}
.mec_c00201{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.mf2_c00201{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.mee_c00201{transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334020,0.000000,0.000000,0.250000,0,0);}
.m52_c00201{transform:matrix(0.340090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340090,0.000000,0.000000,0.250000,0,0);}
.m28_c00201{transform:matrix(0.683990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683990,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:0.000000px;}
.fc0_c00201{color:transparent;}
.fsd_c00201{font-size:46.200000px;}
.fsb_c00201{font-size:59.850000px;}
.fs0_c00201{font-size:60.900000px;}
.fs1_c00201{font-size:61.950000px;}
.fs2_c00201{font-size:63.000000px;}
.fs8_c00201{font-size:64.050000px;}
.fs5_c00201{font-size:65.100000px;}
.fsa_c00201{font-size:66.150000px;}
.fsc_c00201{font-size:67.200000px;}
.fs9_c00201{font-size:68.250000px;}
.fs6_c00201{font-size:69.300000px;}
.fs4_c00201{font-size:70.350000px;}
.fs7_c00201{font-size:71.400000px;}
.fs3_c00201{font-size:72.450000px;}
.y0_c00201{bottom:0.000000px;}
.y21_c00201{bottom:26.526000px;}
.y20_c00201{bottom:43.320000px;}
.y1f_c00201{bottom:61.107000px;}
.y1e_c00201{bottom:77.640000px;}
.y1d_c00201{bottom:94.890000px;}
.y1c_c00201{bottom:112.200000px;}
.y1b_c00201{bottom:129.870000px;}
.y1a_c00201{bottom:146.943000px;}
.y19_c00201{bottom:165.441000px;}
.y18_c00201{bottom:182.259000px;}
.y17_c00201{bottom:199.267500px;}
.y16_c00201{bottom:216.985500px;}
.y15_c00201{bottom:234.537000px;}
.y14_c00201{bottom:251.161500px;}
.y13_c00201{bottom:268.413000px;}
.y12_c00201{bottom:285.091500px;}
.y11_c00201{bottom:301.828500px;}
.y10_c00201{bottom:318.691500px;}
.yf_c00201{bottom:336.271500px;}
.ye_c00201{bottom:353.431500px;}
.yd_c00201{bottom:370.534500px;}
.yc_c00201{bottom:387.934500px;}
.yb_c00201{bottom:404.944500px;}
.ya_c00201{bottom:422.166000px;}
.y9_c00201{bottom:439.356000px;}
.y8_c00201{bottom:456.489000px;}
.y7_c00201{bottom:473.794500px;}
.y6_c00201{bottom:491.196000px;}
.y5_c00201{bottom:507.934500px;}
.y4_c00201{bottom:525.030000px;}
.y3_c00201{bottom:541.890000px;}
.y2_c00201{bottom:559.467000px;}
.y1_c00201{bottom:576.315000px;}
.hf_c00201{height:46.200000px;}
.hd_c00201{height:59.850000px;}
.h2_c00201{height:60.900000px;}
.h3_c00201{height:61.950000px;}
.h4_c00201{height:63.000000px;}
.ha_c00201{height:64.050000px;}
.h7_c00201{height:65.100000px;}
.hc_c00201{height:66.150000px;}
.he_c00201{height:67.200000px;}
.hb_c00201{height:68.250000px;}
.h8_c00201{height:69.300000px;}
.h6_c00201{height:70.350000px;}
.h9_c00201{height:71.400000px;}
.h5_c00201{height:72.450000px;}
.h1_c00201{height:623.250000px;}
.h0_c00201{height:623.400000px;}
.w0_c00201{width:366.390000px;}
.w1_c00201{width:366.750000px;}
.x0_c00201{left:0.000000px;}
.x7b_c00201{left:38.610000px;}
.x46_c00201{left:41.580000px;}
.x4b_c00201{left:42.930000px;}
.xd_c00201{left:44.280000px;}
.x2_c00201{left:45.630000px;}
.x65_c00201{left:50.760000px;}
.x5b_c00201{left:53.190000px;}
.x57_c00201{left:55.080000px;}
.x4c_c00201{left:59.400000px;}
.x77_c00201{left:61.560000px;}
.x25_c00201{left:63.450000px;}
.x53_c00201{left:65.610000px;}
.xe_c00201{left:67.230000px;}
.x1a_c00201{left:71.280000px;}
.x13_c00201{left:80.190000px;}
.x47_c00201{left:83.970000px;}
.x6c_c00201{left:85.590000px;}
.x22_c00201{left:88.560000px;}
.x38_c00201{left:91.800000px;}
.x14_c00201{left:93.690000px;}
.x3_c00201{left:95.040000px;}
.x42_c00201{left:96.120000px;}
.x40_c00201{left:97.200000px;}
.x69_c00201{left:98.550000px;}
.x35_c00201{left:100.710000px;}
.x8_c00201{left:104.760000px;}
.x70_c00201{left:106.650000px;}
.x39_c00201{left:108.540000px;}
.x2d_c00201{left:109.620000px;}
.x15_c00201{left:111.510000px;}
.x43_c00201{left:112.590000px;}
.x1b_c00201{left:114.750000px;}
.x4_c00201{left:116.640000px;}
.x66_c00201{left:119.610000px;}
.x3c_c00201{left:120.690000px;}
.x31_c00201{left:122.850000px;}
.x2a_c00201{left:125.010000px;}
.x78_c00201{left:129.330000px;}
.x50_c00201{left:131.490000px;}
.x54_c00201{left:133.380000px;}
.x1c_c00201{left:135.540000px;}
.x9_c00201{left:136.620000px;}
.x6d_c00201{left:139.860000px;}
.x3d_c00201{left:141.210000px;}
.x36_c00201{left:142.560000px;}
.xf_c00201{left:143.910000px;}
.x26_c00201{left:144.990000px;}
.x73_c00201{left:149.310000px;}
.x55_c00201{left:156.330000px;}
.x67_c00201{left:158.490000px;}
.x27_c00201{left:160.380000px;}
.x5_c00201{left:161.730000px;}
.x5e_c00201{left:162.810000px;}
.xa_c00201{left:165.780000px;}
.x61_c00201{left:168.480000px;}
.x6b_c00201{left:169.560000px;}
.x16_c00201{left:173.880000px;}
.x2e_c00201{left:176.580000px;}
.x71_c00201{left:177.660000px;}
.x5c_c00201{left:180.090000px;}
.x4d_c00201{left:182.520000px;}
.x1d_c00201{left:183.600000px;}
.x1_c00201{left:184.680000px;}
.x6e_c00201{left:186.300000px;}
.x44_c00201{left:188.730000px;}
.x68_c00201{left:193.050000px;}
.x37_c00201{left:194.940000px;}
.x2b_c00201{left:197.100000px;}
.x23_c00201{left:198.990000px;}
.x28_c00201{left:200.070000px;}
.x1e_c00201{left:205.200000px;}
.x58_c00201{left:208.980000px;}
.x6a_c00201{left:210.870000px;}
.x2f_c00201{left:212.220000px;}
.x29_c00201{left:215.460000px;}
.x32_c00201{left:216.810000px;}
.x7c_c00201{left:218.160000px;}
.x17_c00201{left:219.510000px;}
.x59_c00201{left:223.830000px;}
.xb_c00201{left:225.720000px;}
.x48_c00201{left:226.800000px;}
.x4e_c00201{left:228.960000px;}
.x3a_c00201{left:231.930000px;}
.x62_c00201{left:235.170000px;}
.x74_c00201{left:238.680000px;}
.x5d_c00201{left:242.460000px;}
.x6_c00201{left:243.540000px;}
.x10_c00201{left:250.290000px;}
.x18_c00201{left:251.910000px;}
.x49_c00201{left:254.340000px;}
.x63_c00201{left:255.420000px;}
.x56_c00201{left:256.500000px;}
.x6f_c00201{left:258.120000px;}
.x2c_c00201{left:260.550000px;}
.x1f_c00201{left:262.980000px;}
.x45_c00201{left:265.680000px;}
.x51_c00201{left:268.650000px;}
.x5a_c00201{left:271.080000px;}
.x33_c00201{left:272.700000px;}
.x3b_c00201{left:273.780000px;}
.x5f_c00201{left:275.940000px;}
.x19_c00201{left:278.370000px;}
.x75_c00201{left:280.530000px;}
.x52_c00201{left:284.310000px;}
.x11_c00201{left:287.010000px;}
.x79_c00201{left:288.090000px;}
.x4a_c00201{left:289.170000px;}
.x24_c00201{left:290.790000px;}
.xc_c00201{left:294.570000px;}
.x20_c00201{left:298.080000px;}
.x7_c00201{left:301.320000px;}
.x3e_c00201{left:303.480000px;}
.x41_c00201{left:305.640000px;}
.x12_c00201{left:307.530000px;}
.x7a_c00201{left:308.610000px;}
.x76_c00201{left:315.360000px;}
.x72_c00201{left:318.870000px;}
.x64_c00201{left:321.840000px;}
.x21_c00201{left:323.190000px;}
.x34_c00201{left:325.080000px;}
.x4f_c00201{left:326.430000px;}
.x30_c00201{left:329.130000px;}
.x3f_c00201{left:332.370000px;}
.x60_c00201{left:334.800000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:0.000000pt;}
.fsd_c00201{font-size:41.066667pt;}
.fsb_c00201{font-size:53.200000pt;}
.fs0_c00201{font-size:54.133333pt;}
.fs1_c00201{font-size:55.066667pt;}
.fs2_c00201{font-size:56.000000pt;}
.fs8_c00201{font-size:56.933333pt;}
.fs5_c00201{font-size:57.866667pt;}
.fsa_c00201{font-size:58.800000pt;}
.fsc_c00201{font-size:59.733333pt;}
.fs9_c00201{font-size:60.666667pt;}
.fs6_c00201{font-size:61.600000pt;}
.fs4_c00201{font-size:62.533333pt;}
.fs7_c00201{font-size:63.466667pt;}
.fs3_c00201{font-size:64.400000pt;}
.y0_c00201{bottom:0.000000pt;}
.y21_c00201{bottom:23.578667pt;}
.y20_c00201{bottom:38.506667pt;}
.y1f_c00201{bottom:54.317333pt;}
.y1e_c00201{bottom:69.013333pt;}
.y1d_c00201{bottom:84.346667pt;}
.y1c_c00201{bottom:99.733333pt;}
.y1b_c00201{bottom:115.440000pt;}
.y1a_c00201{bottom:130.616000pt;}
.y19_c00201{bottom:147.058667pt;}
.y18_c00201{bottom:162.008000pt;}
.y17_c00201{bottom:177.126667pt;}
.y16_c00201{bottom:192.876000pt;}
.y15_c00201{bottom:208.477333pt;}
.y14_c00201{bottom:223.254667pt;}
.y13_c00201{bottom:238.589333pt;}
.y12_c00201{bottom:253.414667pt;}
.y11_c00201{bottom:268.292000pt;}
.y10_c00201{bottom:283.281333pt;}
.yf_c00201{bottom:298.908000pt;}
.ye_c00201{bottom:314.161333pt;}
.yd_c00201{bottom:329.364000pt;}
.yc_c00201{bottom:344.830667pt;}
.yb_c00201{bottom:359.950667pt;}
.ya_c00201{bottom:375.258667pt;}
.y9_c00201{bottom:390.538667pt;}
.y8_c00201{bottom:405.768000pt;}
.y7_c00201{bottom:421.150667pt;}
.y6_c00201{bottom:436.618667pt;}
.y5_c00201{bottom:451.497333pt;}
.y4_c00201{bottom:466.693333pt;}
.y3_c00201{bottom:481.680000pt;}
.y2_c00201{bottom:497.304000pt;}
.y1_c00201{bottom:512.280000pt;}
.hf_c00201{height:41.066667pt;}
.hd_c00201{height:53.200000pt;}
.h2_c00201{height:54.133333pt;}
.h3_c00201{height:55.066667pt;}
.h4_c00201{height:56.000000pt;}
.ha_c00201{height:56.933333pt;}
.h7_c00201{height:57.866667pt;}
.hc_c00201{height:58.800000pt;}
.he_c00201{height:59.733333pt;}
.hb_c00201{height:60.666667pt;}
.h8_c00201{height:61.600000pt;}
.h6_c00201{height:62.533333pt;}
.h9_c00201{height:63.466667pt;}
.h5_c00201{height:64.400000pt;}
.h1_c00201{height:554.000000pt;}
.h0_c00201{height:554.133333pt;}
.w0_c00201{width:325.680000pt;}
.w1_c00201{width:326.000000pt;}
.x0_c00201{left:0.000000pt;}
.x7b_c00201{left:34.320000pt;}
.x46_c00201{left:36.960000pt;}
.x4b_c00201{left:38.160000pt;}
.xd_c00201{left:39.360000pt;}
.x2_c00201{left:40.560000pt;}
.x65_c00201{left:45.120000pt;}
.x5b_c00201{left:47.280000pt;}
.x57_c00201{left:48.960000pt;}
.x4c_c00201{left:52.800000pt;}
.x77_c00201{left:54.720000pt;}
.x25_c00201{left:56.400000pt;}
.x53_c00201{left:58.320000pt;}
.xe_c00201{left:59.760000pt;}
.x1a_c00201{left:63.360000pt;}
.x13_c00201{left:71.280000pt;}
.x47_c00201{left:74.640000pt;}
.x6c_c00201{left:76.080000pt;}
.x22_c00201{left:78.720000pt;}
.x38_c00201{left:81.600000pt;}
.x14_c00201{left:83.280000pt;}
.x3_c00201{left:84.480000pt;}
.x42_c00201{left:85.440000pt;}
.x40_c00201{left:86.400000pt;}
.x69_c00201{left:87.600000pt;}
.x35_c00201{left:89.520000pt;}
.x8_c00201{left:93.120000pt;}
.x70_c00201{left:94.800000pt;}
.x39_c00201{left:96.480000pt;}
.x2d_c00201{left:97.440000pt;}
.x15_c00201{left:99.120000pt;}
.x43_c00201{left:100.080000pt;}
.x1b_c00201{left:102.000000pt;}
.x4_c00201{left:103.680000pt;}
.x66_c00201{left:106.320000pt;}
.x3c_c00201{left:107.280000pt;}
.x31_c00201{left:109.200000pt;}
.x2a_c00201{left:111.120000pt;}
.x78_c00201{left:114.960000pt;}
.x50_c00201{left:116.880000pt;}
.x54_c00201{left:118.560000pt;}
.x1c_c00201{left:120.480000pt;}
.x9_c00201{left:121.440000pt;}
.x6d_c00201{left:124.320000pt;}
.x3d_c00201{left:125.520000pt;}
.x36_c00201{left:126.720000pt;}
.xf_c00201{left:127.920000pt;}
.x26_c00201{left:128.880000pt;}
.x73_c00201{left:132.720000pt;}
.x55_c00201{left:138.960000pt;}
.x67_c00201{left:140.880000pt;}
.x27_c00201{left:142.560000pt;}
.x5_c00201{left:143.760000pt;}
.x5e_c00201{left:144.720000pt;}
.xa_c00201{left:147.360000pt;}
.x61_c00201{left:149.760000pt;}
.x6b_c00201{left:150.720000pt;}
.x16_c00201{left:154.560000pt;}
.x2e_c00201{left:156.960000pt;}
.x71_c00201{left:157.920000pt;}
.x5c_c00201{left:160.080000pt;}
.x4d_c00201{left:162.240000pt;}
.x1d_c00201{left:163.200000pt;}
.x1_c00201{left:164.160000pt;}
.x6e_c00201{left:165.600000pt;}
.x44_c00201{left:167.760000pt;}
.x68_c00201{left:171.600000pt;}
.x37_c00201{left:173.280000pt;}
.x2b_c00201{left:175.200000pt;}
.x23_c00201{left:176.880000pt;}
.x28_c00201{left:177.840000pt;}
.x1e_c00201{left:182.400000pt;}
.x58_c00201{left:185.760000pt;}
.x6a_c00201{left:187.440000pt;}
.x2f_c00201{left:188.640000pt;}
.x29_c00201{left:191.520000pt;}
.x32_c00201{left:192.720000pt;}
.x7c_c00201{left:193.920000pt;}
.x17_c00201{left:195.120000pt;}
.x59_c00201{left:198.960000pt;}
.xb_c00201{left:200.640000pt;}
.x48_c00201{left:201.600000pt;}
.x4e_c00201{left:203.520000pt;}
.x3a_c00201{left:206.160000pt;}
.x62_c00201{left:209.040000pt;}
.x74_c00201{left:212.160000pt;}
.x5d_c00201{left:215.520000pt;}
.x6_c00201{left:216.480000pt;}
.x10_c00201{left:222.480000pt;}
.x18_c00201{left:223.920000pt;}
.x49_c00201{left:226.080000pt;}
.x63_c00201{left:227.040000pt;}
.x56_c00201{left:228.000000pt;}
.x6f_c00201{left:229.440000pt;}
.x2c_c00201{left:231.600000pt;}
.x1f_c00201{left:233.760000pt;}
.x45_c00201{left:236.160000pt;}
.x51_c00201{left:238.800000pt;}
.x5a_c00201{left:240.960000pt;}
.x33_c00201{left:242.400000pt;}
.x3b_c00201{left:243.360000pt;}
.x5f_c00201{left:245.280000pt;}
.x19_c00201{left:247.440000pt;}
.x75_c00201{left:249.360000pt;}
.x52_c00201{left:252.720000pt;}
.x11_c00201{left:255.120000pt;}
.x79_c00201{left:256.080000pt;}
.x4a_c00201{left:257.040000pt;}
.x24_c00201{left:258.480000pt;}
.xc_c00201{left:261.840000pt;}
.x20_c00201{left:264.960000pt;}
.x7_c00201{left:267.840000pt;}
.x3e_c00201{left:269.760000pt;}
.x41_c00201{left:271.680000pt;}
.x12_c00201{left:273.360000pt;}
.x7a_c00201{left:274.320000pt;}
.x76_c00201{left:280.320000pt;}
.x72_c00201{left:283.440000pt;}
.x64_c00201{left:286.080000pt;}
.x21_c00201{left:287.280000pt;}
.x34_c00201{left:288.960000pt;}
.x4f_c00201{left:290.160000pt;}
.x30_c00201{left:292.560000pt;}
.x3f_c00201{left:295.440000pt;}
.x60_c00201{left:297.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00202 {
    display:none;
  }
  .loading-indicator_c00202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00202 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00202 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00202" -> "#page-container .classname_c00202")
 */
.pf_c00202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00202 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00202 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00202 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00202 {overflow:visible;}
  }
}
.c_c00202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00202 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00202:after { /* webkit #35443 */
  content: '';
}
.t_c00202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00202 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00202 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00202 { /* info for Javascript */
  display:none;
}
.l_c00202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00202:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00202 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00202.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.121246,-0.002667,0.005499,0.249940,0,0);-ms-transform:matrix(0.121246,-0.002667,0.005499,0.249940,0,0);-webkit-transform:matrix(0.121246,-0.002667,0.005499,0.249940,0,0);}
.m98_c00202{transform:matrix(0.134362,-0.002956,0.005499,0.249940,0,0);-ms-transform:matrix(0.134362,-0.002956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134362,-0.002956,0.005499,0.249940,0,0);}
.ma7_c00202{transform:matrix(0.142970,-0.003145,0.005499,0.249940,0,0);-ms-transform:matrix(0.142970,-0.003145,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142970,-0.003145,0.005499,0.249940,0,0);}
.m18_c00202{transform:matrix(0.150529,-0.003312,0.005499,0.249940,0,0);-ms-transform:matrix(0.150529,-0.003312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150529,-0.003312,0.005499,0.249940,0,0);}
.ma3_c00202{transform:matrix(0.150664,-0.003315,0.005499,0.249940,0,0);-ms-transform:matrix(0.150664,-0.003315,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150664,-0.003315,0.005499,0.249940,0,0);}
.m33_c00202{transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);-ms-transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);}
.m4b_c00202{transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);-ms-transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);}
.m20_c00202{transform:matrix(0.153648,-0.003380,0.005499,0.249940,0,0);-ms-transform:matrix(0.153648,-0.003380,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153648,-0.003380,0.005499,0.249940,0,0);}
.m21_c00202{transform:matrix(0.154593,-0.003401,0.005499,0.249940,0,0);-ms-transform:matrix(0.154593,-0.003401,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154593,-0.003401,0.005499,0.249940,0,0);}
.m3d_c00202{transform:matrix(0.155917,-0.003430,0.005499,0.249940,0,0);-ms-transform:matrix(0.155917,-0.003430,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155917,-0.003430,0.005499,0.249940,0,0);}
.m9a_c00202{transform:matrix(0.156707,-0.003448,0.005499,0.249940,0,0);-ms-transform:matrix(0.156707,-0.003448,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156707,-0.003448,0.005499,0.249940,0,0);}
.m42_c00202{transform:matrix(0.159466,-0.003508,0.005499,0.249940,0,0);-ms-transform:matrix(0.159466,-0.003508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159466,-0.003508,0.005499,0.249940,0,0);}
.mab_c00202{transform:matrix(0.160231,-0.003525,0.005499,0.249940,0,0);-ms-transform:matrix(0.160231,-0.003525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160231,-0.003525,0.005499,0.249940,0,0);}
.m53_c00202{transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);-ms-transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);}
.m2e_c00202{transform:matrix(0.164605,-0.003621,0.005499,0.249940,0,0);-ms-transform:matrix(0.164605,-0.003621,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164605,-0.003621,0.005499,0.249940,0,0);}
.m16_c00202{transform:matrix(0.164615,-0.003622,0.005499,0.249940,0,0);-ms-transform:matrix(0.164615,-0.003622,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164615,-0.003622,0.005499,0.249940,0,0);}
.m4f_c00202{transform:matrix(0.165015,-0.003630,0.005499,0.249940,0,0);-ms-transform:matrix(0.165015,-0.003630,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165015,-0.003630,0.005499,0.249940,0,0);}
.mcc_c00202{transform:matrix(0.166305,-0.003659,0.005499,0.249940,0,0);-ms-transform:matrix(0.166305,-0.003659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166305,-0.003659,0.005499,0.249940,0,0);}
.m43_c00202{transform:matrix(0.166810,-0.003670,0.005499,0.249940,0,0);-ms-transform:matrix(0.166810,-0.003670,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166810,-0.003670,0.005499,0.249940,0,0);}
.ma6_c00202{transform:matrix(0.167459,-0.003684,0.005499,0.249940,0,0);-ms-transform:matrix(0.167459,-0.003684,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167459,-0.003684,0.005499,0.249940,0,0);}
.m87_c00202{transform:matrix(0.167604,-0.003687,0.005499,0.249940,0,0);-ms-transform:matrix(0.167604,-0.003687,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167604,-0.003687,0.005499,0.249940,0,0);}
.m3c_c00202{transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);-ms-transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168939,-0.003717,0.005499,0.249940,0,0);}
.m54_c00202{transform:matrix(0.169089,-0.003720,0.005499,0.249940,0,0);-ms-transform:matrix(0.169089,-0.003720,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169089,-0.003720,0.005499,0.249940,0,0);}
.m7f_c00202{transform:matrix(0.169199,-0.003722,0.005499,0.249940,0,0);-ms-transform:matrix(0.169199,-0.003722,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169199,-0.003722,0.005499,0.249940,0,0);}
.m13_c00202{transform:matrix(0.169774,-0.003735,0.005499,0.249940,0,0);-ms-transform:matrix(0.169774,-0.003735,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169774,-0.003735,0.005499,0.249940,0,0);}
.m8e_c00202{transform:matrix(0.169944,-0.003739,0.005499,0.249940,0,0);-ms-transform:matrix(0.169944,-0.003739,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169944,-0.003739,0.005499,0.249940,0,0);}
.md5_c00202{transform:matrix(0.170304,-0.003747,0.005499,0.249940,0,0);-ms-transform:matrix(0.170304,-0.003747,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170304,-0.003747,0.005499,0.249940,0,0);}
.m97_c00202{transform:matrix(0.170749,-0.003756,0.005499,0.249940,0,0);-ms-transform:matrix(0.170749,-0.003756,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170749,-0.003756,0.005499,0.249940,0,0);}
.m45_c00202{transform:matrix(0.171014,-0.003762,0.005499,0.249940,0,0);-ms-transform:matrix(0.171014,-0.003762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171014,-0.003762,0.005499,0.249940,0,0);}
.mac_c00202{transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);-ms-transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);}
.m96_c00202{transform:matrix(0.172118,-0.003787,0.005499,0.249940,0,0);-ms-transform:matrix(0.172118,-0.003787,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172118,-0.003787,0.005499,0.249940,0,0);}
.md7_c00202{transform:matrix(0.172723,-0.003800,0.005499,0.249940,0,0);-ms-transform:matrix(0.172723,-0.003800,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172723,-0.003800,0.005499,0.249940,0,0);}
.m2c_c00202{transform:matrix(0.172863,-0.003803,0.005499,0.249940,0,0);-ms-transform:matrix(0.172863,-0.003803,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172863,-0.003803,0.005499,0.249940,0,0);}
.maa_c00202{transform:matrix(0.173158,-0.003809,0.005499,0.249940,0,0);-ms-transform:matrix(0.173158,-0.003809,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173158,-0.003809,0.005499,0.249940,0,0);}
.ma8_c00202{transform:matrix(0.173478,-0.003817,0.005499,0.249940,0,0);-ms-transform:matrix(0.173478,-0.003817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173478,-0.003817,0.005499,0.249940,0,0);}
.m55_c00202{transform:matrix(0.174028,-0.003829,0.005499,0.249940,0,0);-ms-transform:matrix(0.174028,-0.003829,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174028,-0.003829,0.005499,0.249940,0,0);}
.m62_c00202{transform:matrix(0.174533,-0.003840,0.005499,0.249940,0,0);-ms-transform:matrix(0.174533,-0.003840,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174533,-0.003840,0.005499,0.249940,0,0);}
.m1_c00202{transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);}
.md2_c00202{transform:matrix(0.175977,-0.003872,0.005499,0.249940,0,0);-ms-transform:matrix(0.175977,-0.003872,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175977,-0.003872,0.005499,0.249940,0,0);}
.m24_c00202{transform:matrix(0.176007,-0.003872,0.005499,0.249940,0,0);-ms-transform:matrix(0.176007,-0.003872,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176007,-0.003872,0.005499,0.249940,0,0);}
.m1c_c00202{transform:matrix(0.176137,-0.003875,0.005499,0.249940,0,0);-ms-transform:matrix(0.176137,-0.003875,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176137,-0.003875,0.005499,0.249940,0,0);}
.m4d_c00202{transform:matrix(0.177127,-0.003897,0.005499,0.249940,0,0);-ms-transform:matrix(0.177127,-0.003897,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177127,-0.003897,0.005499,0.249940,0,0);}
.m44_c00202{transform:matrix(0.177537,-0.003906,0.005499,0.249940,0,0);-ms-transform:matrix(0.177537,-0.003906,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177537,-0.003906,0.005499,0.249940,0,0);}
.m6_c00202{transform:matrix(0.177682,-0.003909,0.005499,0.249940,0,0);-ms-transform:matrix(0.177682,-0.003909,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177682,-0.003909,0.005499,0.249940,0,0);}
.m74_c00202{transform:matrix(0.178402,-0.003925,0.005499,0.249940,0,0);-ms-transform:matrix(0.178402,-0.003925,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178402,-0.003925,0.005499,0.249940,0,0);}
.m2b_c00202{transform:matrix(0.178522,-0.003927,0.005499,0.249940,0,0);-ms-transform:matrix(0.178522,-0.003927,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178522,-0.003927,0.005499,0.249940,0,0);}
.m1b_c00202{transform:matrix(0.178687,-0.003931,0.005499,0.249940,0,0);-ms-transform:matrix(0.178687,-0.003931,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178687,-0.003931,0.005499,0.249940,0,0);}
.m3e_c00202{transform:matrix(0.178712,-0.003932,0.005499,0.249940,0,0);-ms-transform:matrix(0.178712,-0.003932,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178712,-0.003932,0.005499,0.249940,0,0);}
.md3_c00202{transform:matrix(0.178887,-0.003936,0.005499,0.249940,0,0);-ms-transform:matrix(0.178887,-0.003936,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178887,-0.003936,0.005499,0.249940,0,0);}
.md4_c00202{transform:matrix(0.179457,-0.003948,0.005499,0.249940,0,0);-ms-transform:matrix(0.179457,-0.003948,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179457,-0.003948,0.005499,0.249940,0,0);}
.m6b_c00202{transform:matrix(0.179472,-0.003948,0.005499,0.249940,0,0);-ms-transform:matrix(0.179472,-0.003948,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179472,-0.003948,0.005499,0.249940,0,0);}
.m40_c00202{transform:matrix(0.179517,-0.003949,0.005499,0.249940,0,0);-ms-transform:matrix(0.179517,-0.003949,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179517,-0.003949,0.005499,0.249940,0,0);}
.m82_c00202{transform:matrix(0.179712,-0.003954,0.005499,0.249940,0,0);-ms-transform:matrix(0.179712,-0.003954,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179712,-0.003954,0.005499,0.249940,0,0);}
.mb3_c00202{transform:matrix(0.180116,-0.003963,0.005499,0.249940,0,0);-ms-transform:matrix(0.180116,-0.003963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180116,-0.003963,0.005499,0.249940,0,0);}
.mc6_c00202{transform:matrix(0.181876,-0.004001,0.005499,0.249940,0,0);-ms-transform:matrix(0.181876,-0.004001,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181876,-0.004001,0.005499,0.249940,0,0);}
.m30_c00202{transform:matrix(0.182096,-0.004006,0.005499,0.249940,0,0);-ms-transform:matrix(0.182096,-0.004006,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182096,-0.004006,0.005499,0.249940,0,0);}
.mc2_c00202{transform:matrix(0.182221,-0.004009,0.005499,0.249940,0,0);-ms-transform:matrix(0.182221,-0.004009,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182221,-0.004009,0.005499,0.249940,0,0);}
.m3f_c00202{transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);-ms-transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);}
.m5e_c00202{transform:matrix(0.182551,-0.004016,0.005499,0.249940,0,0);-ms-transform:matrix(0.182551,-0.004016,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182551,-0.004016,0.005499,0.249940,0,0);}
.mc3_c00202{transform:matrix(0.182801,-0.004022,0.005499,0.249940,0,0);-ms-transform:matrix(0.182801,-0.004022,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182801,-0.004022,0.005499,0.249940,0,0);}
.m56_c00202{transform:matrix(0.183646,-0.004040,0.005499,0.249940,0,0);-ms-transform:matrix(0.183646,-0.004040,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183646,-0.004040,0.005499,0.249940,0,0);}
.md0_c00202{transform:matrix(0.183731,-0.004042,0.005499,0.249940,0,0);-ms-transform:matrix(0.183731,-0.004042,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183731,-0.004042,0.005499,0.249940,0,0);}
.m2f_c00202{transform:matrix(0.183866,-0.004045,0.005499,0.249940,0,0);-ms-transform:matrix(0.183866,-0.004045,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183866,-0.004045,0.005499,0.249940,0,0);}
.mce_c00202{transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-ms-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);}
.m2a_c00202{transform:matrix(0.184630,-0.004062,0.005499,0.249940,0,0);-ms-transform:matrix(0.184630,-0.004062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184630,-0.004062,0.005499,0.249940,0,0);}
.ma_c00202{transform:matrix(0.185635,-0.004084,0.005499,0.249940,0,0);-ms-transform:matrix(0.185635,-0.004084,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185635,-0.004084,0.005499,0.249940,0,0);}
.ma0_c00202{transform:matrix(0.185700,-0.004085,0.005499,0.249940,0,0);-ms-transform:matrix(0.185700,-0.004085,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185700,-0.004085,0.005499,0.249940,0,0);}
.m9b_c00202{transform:matrix(0.185740,-0.004086,0.005499,0.249940,0,0);-ms-transform:matrix(0.185740,-0.004086,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185740,-0.004086,0.005499,0.249940,0,0);}
.m4a_c00202{transform:matrix(0.185920,-0.004090,0.005499,0.249940,0,0);-ms-transform:matrix(0.185920,-0.004090,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185920,-0.004090,0.005499,0.249940,0,0);}
.m1e_c00202{transform:matrix(0.186200,-0.004096,0.005499,0.249940,0,0);-ms-transform:matrix(0.186200,-0.004096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186200,-0.004096,0.005499,0.249940,0,0);}
.m26_c00202{transform:matrix(0.186350,-0.004100,0.005499,0.249940,0,0);-ms-transform:matrix(0.186350,-0.004100,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186350,-0.004100,0.005499,0.249940,0,0);}
.m3b_c00202{transform:matrix(0.186735,-0.004108,0.005499,0.249940,0,0);-ms-transform:matrix(0.186735,-0.004108,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186735,-0.004108,0.005499,0.249940,0,0);}
.mc7_c00202{transform:matrix(0.186765,-0.004109,0.005499,0.249940,0,0);-ms-transform:matrix(0.186765,-0.004109,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186765,-0.004109,0.005499,0.249940,0,0);}
.m10_c00202{transform:matrix(0.187005,-0.004114,0.005499,0.249940,0,0);-ms-transform:matrix(0.187005,-0.004114,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187005,-0.004114,0.005499,0.249940,0,0);}
.mda_c00202{transform:matrix(0.188244,-0.004141,0.005499,0.249940,0,0);-ms-transform:matrix(0.188244,-0.004141,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188244,-0.004141,0.005499,0.249940,0,0);}
.mb1_c00202{transform:matrix(0.188339,-0.004143,0.005499,0.249940,0,0);-ms-transform:matrix(0.188339,-0.004143,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188339,-0.004143,0.005499,0.249940,0,0);}
.m99_c00202{transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);-ms-transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);}
.m90_c00202{transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);-ms-transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189084,-0.004160,0.005499,0.249940,0,0);}
.m58_c00202{transform:matrix(0.189474,-0.004168,0.005499,0.249940,0,0);-ms-transform:matrix(0.189474,-0.004168,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189474,-0.004168,0.005499,0.249940,0,0);}
.m79_c00202{transform:matrix(0.190059,-0.004181,0.005499,0.249940,0,0);-ms-transform:matrix(0.190059,-0.004181,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190059,-0.004181,0.005499,0.249940,0,0);}
.m78_c00202{transform:matrix(0.190274,-0.004186,0.005499,0.249940,0,0);-ms-transform:matrix(0.190274,-0.004186,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190274,-0.004186,0.005499,0.249940,0,0);}
.m17_c00202{transform:matrix(0.190419,-0.004189,0.005499,0.249940,0,0);-ms-transform:matrix(0.190419,-0.004189,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190419,-0.004189,0.005499,0.249940,0,0);}
.mc5_c00202{transform:matrix(0.190504,-0.004191,0.005499,0.249940,0,0);-ms-transform:matrix(0.190504,-0.004191,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190504,-0.004191,0.005499,0.249940,0,0);}
.mbd_c00202{transform:matrix(0.190639,-0.004194,0.005499,0.249940,0,0);-ms-transform:matrix(0.190639,-0.004194,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190639,-0.004194,0.005499,0.249940,0,0);}
.m28_c00202{transform:matrix(0.190954,-0.004201,0.005499,0.249940,0,0);-ms-transform:matrix(0.190954,-0.004201,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190954,-0.004201,0.005499,0.249940,0,0);}
.m4c_c00202{transform:matrix(0.191489,-0.004213,0.005499,0.249940,0,0);-ms-transform:matrix(0.191489,-0.004213,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191489,-0.004213,0.005499,0.249940,0,0);}
.m22_c00202{transform:matrix(0.192393,-0.004233,0.005499,0.249940,0,0);-ms-transform:matrix(0.192393,-0.004233,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192393,-0.004233,0.005499,0.249940,0,0);}
.m49_c00202{transform:matrix(0.192458,-0.004234,0.005499,0.249940,0,0);-ms-transform:matrix(0.192458,-0.004234,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192458,-0.004234,0.005499,0.249940,0,0);}
.m1f_c00202{transform:matrix(0.192588,-0.004237,0.005499,0.249940,0,0);-ms-transform:matrix(0.192588,-0.004237,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192588,-0.004237,0.005499,0.249940,0,0);}
.m1d_c00202{transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);-ms-transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);}
.m34_c00202{transform:matrix(0.193893,-0.004266,0.005499,0.249940,0,0);-ms-transform:matrix(0.193893,-0.004266,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193893,-0.004266,0.005499,0.249940,0,0);}
.m80_c00202{transform:matrix(0.194143,-0.004271,0.005499,0.249940,0,0);-ms-transform:matrix(0.194143,-0.004271,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194143,-0.004271,0.005499,0.249940,0,0);}
.m4_c00202{transform:matrix(0.194243,-0.004273,0.005499,0.249940,0,0);-ms-transform:matrix(0.194243,-0.004273,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194243,-0.004273,0.005499,0.249940,0,0);}
.m89_c00202{transform:matrix(0.194298,-0.004275,0.005499,0.249940,0,0);-ms-transform:matrix(0.194298,-0.004275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194298,-0.004275,0.005499,0.249940,0,0);}
.m27_c00202{transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);-ms-transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);}
.m85_c00202{transform:matrix(0.194423,-0.004277,0.005499,0.249940,0,0);-ms-transform:matrix(0.194423,-0.004277,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194423,-0.004277,0.005499,0.249940,0,0);}
.m36_c00202{transform:matrix(0.194918,-0.004288,0.005499,0.249940,0,0);-ms-transform:matrix(0.194918,-0.004288,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194918,-0.004288,0.005499,0.249940,0,0);}
.m86_c00202{transform:matrix(0.195078,-0.004292,0.005499,0.249940,0,0);-ms-transform:matrix(0.195078,-0.004292,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195078,-0.004292,0.005499,0.249940,0,0);}
.mdb_c00202{transform:matrix(0.195373,-0.004298,0.005499,0.249940,0,0);-ms-transform:matrix(0.195373,-0.004298,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195373,-0.004298,0.005499,0.249940,0,0);}
.m7a_c00202{transform:matrix(0.195478,-0.004301,0.005499,0.249940,0,0);-ms-transform:matrix(0.195478,-0.004301,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195478,-0.004301,0.005499,0.249940,0,0);}
.m70_c00202{transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);-ms-transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);}
.m8c_c00202{transform:matrix(0.195978,-0.004312,0.005499,0.249940,0,0);-ms-transform:matrix(0.195978,-0.004312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195978,-0.004312,0.005499,0.249940,0,0);}
.m7d_c00202{transform:matrix(0.196427,-0.004321,0.005499,0.249940,0,0);-ms-transform:matrix(0.196427,-0.004321,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196427,-0.004321,0.005499,0.249940,0,0);}
.mde_c00202{transform:matrix(0.196527,-0.004324,0.005499,0.249940,0,0);-ms-transform:matrix(0.196527,-0.004324,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196527,-0.004324,0.005499,0.249940,0,0);}
.ma9_c00202{transform:matrix(0.197837,-0.004352,0.005499,0.249940,0,0);-ms-transform:matrix(0.197837,-0.004352,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197837,-0.004352,0.005499,0.249940,0,0);}
.m59_c00202{transform:matrix(0.197947,-0.004355,0.005499,0.249940,0,0);-ms-transform:matrix(0.197947,-0.004355,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197947,-0.004355,0.005499,0.249940,0,0);}
.m91_c00202{transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-ms-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198052,-0.004357,0.005499,0.249940,0,0);}
.m32_c00202{transform:matrix(0.198222,-0.004361,0.005499,0.249940,0,0);-ms-transform:matrix(0.198222,-0.004361,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198222,-0.004361,0.005499,0.249940,0,0);}
.m6d_c00202{transform:matrix(0.198257,-0.004362,0.005499,0.249940,0,0);-ms-transform:matrix(0.198257,-0.004362,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198257,-0.004362,0.005499,0.249940,0,0);}
.m75_c00202{transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);-ms-transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198582,-0.004369,0.005499,0.249940,0,0);}
.m2_c00202{transform:matrix(0.198657,-0.004370,0.005499,0.249940,0,0);-ms-transform:matrix(0.198657,-0.004370,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198657,-0.004370,0.005499,0.249940,0,0);}
.mca_c00202{transform:matrix(0.198672,-0.004371,0.005499,0.249940,0,0);-ms-transform:matrix(0.198672,-0.004371,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198672,-0.004371,0.005499,0.249940,0,0);}
.m52_c00202{transform:matrix(0.198877,-0.004375,0.005499,0.249940,0,0);-ms-transform:matrix(0.198877,-0.004375,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198877,-0.004375,0.005499,0.249940,0,0);}
.mc9_c00202{transform:matrix(0.199022,-0.004378,0.005499,0.249940,0,0);-ms-transform:matrix(0.199022,-0.004378,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199022,-0.004378,0.005499,0.249940,0,0);}
.m39_c00202{transform:matrix(0.199572,-0.004391,0.005499,0.249940,0,0);-ms-transform:matrix(0.199572,-0.004391,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199572,-0.004391,0.005499,0.249940,0,0);}
.m5c_c00202{transform:matrix(0.201171,-0.004426,0.005499,0.249940,0,0);-ms-transform:matrix(0.201171,-0.004426,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201171,-0.004426,0.005499,0.249940,0,0);}
.m7e_c00202{transform:matrix(0.201311,-0.004429,0.005499,0.249940,0,0);-ms-transform:matrix(0.201311,-0.004429,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201311,-0.004429,0.005499,0.249940,0,0);}
.md1_c00202{transform:matrix(0.201346,-0.004430,0.005499,0.249940,0,0);-ms-transform:matrix(0.201346,-0.004430,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201346,-0.004430,0.005499,0.249940,0,0);}
.m23_c00202{transform:matrix(0.201836,-0.004440,0.005499,0.249940,0,0);-ms-transform:matrix(0.201836,-0.004440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201836,-0.004440,0.005499,0.249940,0,0);}
.m48_c00202{transform:matrix(0.201846,-0.004441,0.005499,0.249940,0,0);-ms-transform:matrix(0.201846,-0.004441,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201846,-0.004441,0.005499,0.249940,0,0);}
.m38_c00202{transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);}
.m88_c00202{transform:matrix(0.202351,-0.004452,0.005499,0.249940,0,0);-ms-transform:matrix(0.202351,-0.004452,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202351,-0.004452,0.005499,0.249940,0,0);}
.m51_c00202{transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);-ms-transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);}
.m5_c00202{transform:matrix(0.202991,-0.004466,0.005499,0.249940,0,0);-ms-transform:matrix(0.202991,-0.004466,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202991,-0.004466,0.005499,0.249940,0,0);}
.m8f_c00202{transform:matrix(0.203566,-0.004478,0.005499,0.249940,0,0);-ms-transform:matrix(0.203566,-0.004478,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203566,-0.004478,0.005499,0.249940,0,0);}
.m73_c00202{transform:matrix(0.203721,-0.004482,0.005499,0.249940,0,0);-ms-transform:matrix(0.203721,-0.004482,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203721,-0.004482,0.005499,0.249940,0,0);}
.m4e_c00202{transform:matrix(0.203956,-0.004487,0.005499,0.249940,0,0);-ms-transform:matrix(0.203956,-0.004487,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203956,-0.004487,0.005499,0.249940,0,0);}
.mc4_c00202{transform:matrix(0.204011,-0.004488,0.005499,0.249940,0,0);-ms-transform:matrix(0.204011,-0.004488,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204011,-0.004488,0.005499,0.249940,0,0);}
.m84_c00202{transform:matrix(0.204116,-0.004491,0.005499,0.249940,0,0);-ms-transform:matrix(0.204116,-0.004491,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204116,-0.004491,0.005499,0.249940,0,0);}
.m37_c00202{transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);-ms-transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);}
.m7b_c00202{transform:matrix(0.204521,-0.004499,0.005499,0.249940,0,0);-ms-transform:matrix(0.204521,-0.004499,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204521,-0.004499,0.005499,0.249940,0,0);}
.m3_c00202{transform:matrix(0.204820,-0.004506,0.005499,0.249940,0,0);-ms-transform:matrix(0.204820,-0.004506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204820,-0.004506,0.005499,0.249940,0,0);}
.m11_c00202{transform:matrix(0.204920,-0.004508,0.005499,0.249940,0,0);-ms-transform:matrix(0.204920,-0.004508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204920,-0.004508,0.005499,0.249940,0,0);}
.m25_c00202{transform:matrix(0.205630,-0.004524,0.005499,0.249940,0,0);-ms-transform:matrix(0.205630,-0.004524,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205630,-0.004524,0.005499,0.249940,0,0);}
.m63_c00202{transform:matrix(0.206005,-0.004532,0.005499,0.249940,0,0);-ms-transform:matrix(0.206005,-0.004532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206005,-0.004532,0.005499,0.249940,0,0);}
.md_c00202{transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207120,-0.004557,0.005499,0.249940,0,0);}
.mbe_c00202{transform:matrix(0.207600,-0.004567,0.005499,0.249940,0,0);-ms-transform:matrix(0.207600,-0.004567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207600,-0.004567,0.005499,0.249940,0,0);}
.m65_c00202{transform:matrix(0.207640,-0.004568,0.005499,0.249940,0,0);-ms-transform:matrix(0.207640,-0.004568,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207640,-0.004568,0.005499,0.249940,0,0);}
.m95_c00202{transform:matrix(0.207980,-0.004576,0.005499,0.249940,0,0);-ms-transform:matrix(0.207980,-0.004576,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207980,-0.004576,0.005499,0.249940,0,0);}
.m64_c00202{transform:matrix(0.208165,-0.004580,0.005499,0.249940,0,0);-ms-transform:matrix(0.208165,-0.004580,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208165,-0.004580,0.005499,0.249940,0,0);}
.m93_c00202{transform:matrix(0.208205,-0.004581,0.005499,0.249940,0,0);-ms-transform:matrix(0.208205,-0.004581,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208205,-0.004581,0.005499,0.249940,0,0);}
.m81_c00202{transform:matrix(0.208535,-0.004588,0.005499,0.249940,0,0);-ms-transform:matrix(0.208535,-0.004588,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208535,-0.004588,0.005499,0.249940,0,0);}
.md8_c00202{transform:matrix(0.209069,-0.004600,0.005499,0.249940,0,0);-ms-transform:matrix(0.209069,-0.004600,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209069,-0.004600,0.005499,0.249940,0,0);}
.m31_c00202{transform:matrix(0.209089,-0.004600,0.005499,0.249940,0,0);-ms-transform:matrix(0.209089,-0.004600,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209089,-0.004600,0.005499,0.249940,0,0);}
.m35_c00202{transform:matrix(0.210359,-0.004628,0.005499,0.249940,0,0);-ms-transform:matrix(0.210359,-0.004628,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210359,-0.004628,0.005499,0.249940,0,0);}
.ma4_c00202{transform:matrix(0.210879,-0.004639,0.005499,0.249940,0,0);-ms-transform:matrix(0.210879,-0.004639,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210879,-0.004639,0.005499,0.249940,0,0);}
.mc1_c00202{transform:matrix(0.210999,-0.004642,0.005499,0.249940,0,0);-ms-transform:matrix(0.210999,-0.004642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210999,-0.004642,0.005499,0.249940,0,0);}
.mb_c00202{transform:matrix(0.211164,-0.004646,0.005499,0.249940,0,0);-ms-transform:matrix(0.211164,-0.004646,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211164,-0.004646,0.005499,0.249940,0,0);}
.m12_c00202{transform:matrix(0.211204,-0.004646,0.005499,0.249940,0,0);-ms-transform:matrix(0.211204,-0.004646,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211204,-0.004646,0.005499,0.249940,0,0);}
.ma2_c00202{transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);-ms-transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);}
.m7c_c00202{transform:matrix(0.213378,-0.004694,0.005499,0.249940,0,0);-ms-transform:matrix(0.213378,-0.004694,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213378,-0.004694,0.005499,0.249940,0,0);}
.m47_c00202{transform:matrix(0.213778,-0.004703,0.005499,0.249940,0,0);-ms-transform:matrix(0.213778,-0.004703,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213778,-0.004703,0.005499,0.249940,0,0);}
.mb6_c00202{transform:matrix(0.213843,-0.004705,0.005499,0.249940,0,0);-ms-transform:matrix(0.213843,-0.004705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213843,-0.004705,0.005499,0.249940,0,0);}
.mb4_c00202{transform:matrix(0.214388,-0.004717,0.005499,0.249940,0,0);-ms-transform:matrix(0.214388,-0.004717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214388,-0.004717,0.005499,0.249940,0,0);}
.m94_c00202{transform:matrix(0.214703,-0.004723,0.005499,0.249940,0,0);-ms-transform:matrix(0.214703,-0.004723,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214703,-0.004723,0.005499,0.249940,0,0);}
.mdc_c00202{transform:matrix(0.214953,-0.004729,0.005499,0.249940,0,0);-ms-transform:matrix(0.214953,-0.004729,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214953,-0.004729,0.005499,0.249940,0,0);}
.mdd_c00202{transform:matrix(0.215128,-0.004733,0.005499,0.249940,0,0);-ms-transform:matrix(0.215128,-0.004733,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215128,-0.004733,0.005499,0.249940,0,0);}
.md6_c00202{transform:matrix(0.215283,-0.004736,0.005499,0.249940,0,0);-ms-transform:matrix(0.215283,-0.004736,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215283,-0.004736,0.005499,0.249940,0,0);}
.m6a_c00202{transform:matrix(0.215293,-0.004736,0.005499,0.249940,0,0);-ms-transform:matrix(0.215293,-0.004736,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215293,-0.004736,0.005499,0.249940,0,0);}
.mcf_c00202{transform:matrix(0.215468,-0.004740,0.005499,0.249940,0,0);-ms-transform:matrix(0.215468,-0.004740,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215468,-0.004740,0.005499,0.249940,0,0);}
.m9e_c00202{transform:matrix(0.216982,-0.004774,0.005499,0.249940,0,0);-ms-transform:matrix(0.216982,-0.004774,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216982,-0.004774,0.005499,0.249940,0,0);}
.mb7_c00202{transform:matrix(0.217332,-0.004781,0.005499,0.249940,0,0);-ms-transform:matrix(0.217332,-0.004781,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217332,-0.004781,0.005499,0.249940,0,0);}
.m71_c00202{transform:matrix(0.218077,-0.004798,0.005499,0.249940,0,0);-ms-transform:matrix(0.218077,-0.004798,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218077,-0.004798,0.005499,0.249940,0,0);}
.mc0_c00202{transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);-ms-transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);}
.m50_c00202{transform:matrix(0.218542,-0.004808,0.005499,0.249940,0,0);-ms-transform:matrix(0.218542,-0.004808,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218542,-0.004808,0.005499,0.249940,0,0);}
.mc_c00202{transform:matrix(0.219132,-0.004821,0.005499,0.249940,0,0);-ms-transform:matrix(0.219132,-0.004821,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219132,-0.004821,0.005499,0.249940,0,0);}
.mcb_c00202{transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);-ms-transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);}
.m57_c00202{transform:matrix(0.219347,-0.004826,0.005499,0.249940,0,0);-ms-transform:matrix(0.219347,-0.004826,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219347,-0.004826,0.005499,0.249940,0,0);}
.m46_c00202{transform:matrix(0.219757,-0.004835,0.005499,0.249940,0,0);-ms-transform:matrix(0.219757,-0.004835,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219757,-0.004835,0.005499,0.249940,0,0);}
.m77_c00202{transform:matrix(0.219807,-0.004836,0.005499,0.249940,0,0);-ms-transform:matrix(0.219807,-0.004836,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219807,-0.004836,0.005499,0.249940,0,0);}
.m8a_c00202{transform:matrix(0.220217,-0.004845,0.005499,0.249940,0,0);-ms-transform:matrix(0.220217,-0.004845,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220217,-0.004845,0.005499,0.249940,0,0);}
.mcd_c00202{transform:matrix(0.221261,-0.004868,0.005499,0.249940,0,0);-ms-transform:matrix(0.221261,-0.004868,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221261,-0.004868,0.005499,0.249940,0,0);}
.m76_c00202{transform:matrix(0.222151,-0.004887,0.005499,0.249940,0,0);-ms-transform:matrix(0.222151,-0.004887,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222151,-0.004887,0.005499,0.249940,0,0);}
.me_c00202{transform:matrix(0.223221,-0.004911,0.005499,0.249940,0,0);-ms-transform:matrix(0.223221,-0.004911,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223221,-0.004911,0.005499,0.249940,0,0);}
.m2d_c00202{transform:matrix(0.224036,-0.004929,0.005499,0.249940,0,0);-ms-transform:matrix(0.224036,-0.004929,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224036,-0.004929,0.005499,0.249940,0,0);}
.md9_c00202{transform:matrix(0.224171,-0.004932,0.005499,0.249940,0,0);-ms-transform:matrix(0.224171,-0.004932,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224171,-0.004932,0.005499,0.249940,0,0);}
.m61_c00202{transform:matrix(0.224246,-0.004933,0.005499,0.249940,0,0);-ms-transform:matrix(0.224246,-0.004933,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224246,-0.004933,0.005499,0.249940,0,0);}
.m14_c00202{transform:matrix(0.224971,-0.004949,0.005499,0.249940,0,0);-ms-transform:matrix(0.224971,-0.004949,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224971,-0.004949,0.005499,0.249940,0,0);}
.m5a_c00202{transform:matrix(0.227240,-0.004999,0.005499,0.249940,0,0);-ms-transform:matrix(0.227240,-0.004999,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227240,-0.004999,0.005499,0.249940,0,0);}
.mbf_c00202{transform:matrix(0.228065,-0.005017,0.005499,0.249940,0,0);-ms-transform:matrix(0.228065,-0.005017,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228065,-0.005017,0.005499,0.249940,0,0);}
.m19_c00202{transform:matrix(0.228790,-0.005033,0.005499,0.249940,0,0);-ms-transform:matrix(0.228790,-0.005033,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228790,-0.005033,0.005499,0.249940,0,0);}
.m8b_c00202{transform:matrix(0.228820,-0.005034,0.005499,0.249940,0,0);-ms-transform:matrix(0.228820,-0.005034,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228820,-0.005034,0.005499,0.249940,0,0);}
.mc8_c00202{transform:matrix(0.229070,-0.005040,0.005499,0.249940,0,0);-ms-transform:matrix(0.229070,-0.005040,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229070,-0.005040,0.005499,0.249940,0,0);}
.mb8_c00202{transform:matrix(0.229235,-0.005043,0.005499,0.249940,0,0);-ms-transform:matrix(0.229235,-0.005043,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229235,-0.005043,0.005499,0.249940,0,0);}
.m92_c00202{transform:matrix(0.229394,-0.005047,0.005499,0.249940,0,0);-ms-transform:matrix(0.229394,-0.005047,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229394,-0.005047,0.005499,0.249940,0,0);}
.maf_c00202{transform:matrix(0.229479,-0.005049,0.005499,0.249940,0,0);-ms-transform:matrix(0.229479,-0.005049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229479,-0.005049,0.005499,0.249940,0,0);}
.m8d_c00202{transform:matrix(0.229974,-0.005059,0.005499,0.249940,0,0);-ms-transform:matrix(0.229974,-0.005059,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229974,-0.005059,0.005499,0.249940,0,0);}
.m72_c00202{transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);-ms-transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);}
.m68_c00202{transform:matrix(0.230414,-0.005069,0.005499,0.249940,0,0);-ms-transform:matrix(0.230414,-0.005069,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230414,-0.005069,0.005499,0.249940,0,0);}
.m41_c00202{transform:matrix(0.230579,-0.005073,0.005499,0.249940,0,0);-ms-transform:matrix(0.230579,-0.005073,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230579,-0.005073,0.005499,0.249940,0,0);}
.m7_c00202{transform:matrix(0.231314,-0.005089,0.005499,0.249940,0,0);-ms-transform:matrix(0.231314,-0.005089,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231314,-0.005089,0.005499,0.249940,0,0);}
.mbb_c00202{transform:matrix(0.231619,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231619,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231619,-0.005096,0.005499,0.249940,0,0);}
.mb2_c00202{transform:matrix(0.232564,-0.005116,0.005499,0.249940,0,0);-ms-transform:matrix(0.232564,-0.005116,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232564,-0.005116,0.005499,0.249940,0,0);}
.m6e_c00202{transform:matrix(0.233424,-0.005135,0.005499,0.249940,0,0);-ms-transform:matrix(0.233424,-0.005135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233424,-0.005135,0.005499,0.249940,0,0);}
.m5d_c00202{transform:matrix(0.234138,-0.005151,0.005499,0.249940,0,0);-ms-transform:matrix(0.234138,-0.005151,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234138,-0.005151,0.005499,0.249940,0,0);}
.mbc_c00202{transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);-ms-transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);}
.ma1_c00202{transform:matrix(0.234648,-0.005162,0.005499,0.249940,0,0);-ms-transform:matrix(0.234648,-0.005162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234648,-0.005162,0.005499,0.249940,0,0);}
.m5b_c00202{transform:matrix(0.235048,-0.005171,0.005499,0.249940,0,0);-ms-transform:matrix(0.235048,-0.005171,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235048,-0.005171,0.005499,0.249940,0,0);}
.mb0_c00202{transform:matrix(0.236038,-0.005193,0.005499,0.249940,0,0);-ms-transform:matrix(0.236038,-0.005193,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236038,-0.005193,0.005499,0.249940,0,0);}
.m83_c00202{transform:matrix(0.236128,-0.005195,0.005499,0.249940,0,0);-ms-transform:matrix(0.236128,-0.005195,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236128,-0.005195,0.005499,0.249940,0,0);}
.m9f_c00202{transform:matrix(0.237273,-0.005220,0.005499,0.249940,0,0);-ms-transform:matrix(0.237273,-0.005220,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237273,-0.005220,0.005499,0.249940,0,0);}
.m6f_c00202{transform:matrix(0.237822,-0.005232,0.005499,0.249940,0,0);-ms-transform:matrix(0.237822,-0.005232,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237822,-0.005232,0.005499,0.249940,0,0);}
.mad_c00202{transform:matrix(0.239142,-0.005261,0.005499,0.249940,0,0);-ms-transform:matrix(0.239142,-0.005261,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239142,-0.005261,0.005499,0.249940,0,0);}
.ma5_c00202{transform:matrix(0.239317,-0.005265,0.005499,0.249940,0,0);-ms-transform:matrix(0.239317,-0.005265,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239317,-0.005265,0.005499,0.249940,0,0);}
.mdf_c00202{transform:matrix(0.240212,-0.005285,0.005499,0.249940,0,0);-ms-transform:matrix(0.240212,-0.005285,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240212,-0.005285,0.005499,0.249940,0,0);}
.m15_c00202{transform:matrix(0.240582,-0.005293,0.005499,0.249940,0,0);-ms-transform:matrix(0.240582,-0.005293,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240582,-0.005293,0.005499,0.249940,0,0);}
.m3a_c00202{transform:matrix(0.241092,-0.005304,0.005499,0.249940,0,0);-ms-transform:matrix(0.241092,-0.005304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241092,-0.005304,0.005499,0.249940,0,0);}
.m67_c00202{transform:matrix(0.241282,-0.005308,0.005499,0.249940,0,0);-ms-transform:matrix(0.241282,-0.005308,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241282,-0.005308,0.005499,0.249940,0,0);}
.m8_c00202{transform:matrix(0.242706,-0.005340,0.005499,0.249940,0,0);-ms-transform:matrix(0.242706,-0.005340,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242706,-0.005340,0.005499,0.249940,0,0);}
.m29_c00202{transform:matrix(0.245391,-0.005399,0.005499,0.249940,0,0);-ms-transform:matrix(0.245391,-0.005399,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245391,-0.005399,0.005499,0.249940,0,0);}
.mb5_c00202{transform:matrix(0.248330,-0.005463,0.005499,0.249940,0,0);-ms-transform:matrix(0.248330,-0.005463,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248330,-0.005463,0.005499,0.249940,0,0);}
.m69_c00202{transform:matrix(0.248495,-0.005467,0.005499,0.249940,0,0);-ms-transform:matrix(0.248495,-0.005467,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248495,-0.005467,0.005499,0.249940,0,0);}
.m6c_c00202{transform:matrix(0.250604,-0.005513,0.005499,0.249940,0,0);-ms-transform:matrix(0.250604,-0.005513,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250604,-0.005513,0.005499,0.249940,0,0);}
.m5f_c00202{transform:matrix(0.251159,-0.005526,0.005499,0.249940,0,0);-ms-transform:matrix(0.251159,-0.005526,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251159,-0.005526,0.005499,0.249940,0,0);}
.mf_c00202{transform:matrix(0.259272,-0.005704,0.005499,0.249940,0,0);-ms-transform:matrix(0.259272,-0.005704,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259272,-0.005704,0.005499,0.249940,0,0);}
.m1a_c00202{transform:matrix(0.259717,-0.005714,0.005499,0.249940,0,0);-ms-transform:matrix(0.259717,-0.005714,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259717,-0.005714,0.005499,0.249940,0,0);}
.m60_c00202{transform:matrix(0.261607,-0.005755,0.005499,0.249940,0,0);-ms-transform:matrix(0.261607,-0.005755,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261607,-0.005755,0.005499,0.249940,0,0);}
.mba_c00202{transform:matrix(0.262916,-0.005784,0.005499,0.249940,0,0);-ms-transform:matrix(0.262916,-0.005784,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262916,-0.005784,0.005499,0.249940,0,0);}
.m9d_c00202{transform:matrix(0.268210,-0.005901,0.005499,0.249940,0,0);-ms-transform:matrix(0.268210,-0.005901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268210,-0.005901,0.005499,0.249940,0,0);}
.m66_c00202{transform:matrix(0.276578,-0.006085,0.005499,0.249940,0,0);-ms-transform:matrix(0.276578,-0.006085,0.005499,0.249940,0,0);-webkit-transform:matrix(0.276578,-0.006085,0.005499,0.249940,0,0);}
.mae_c00202{transform:matrix(0.314004,-0.006908,0.005499,0.249940,0,0);-ms-transform:matrix(0.314004,-0.006908,0.005499,0.249940,0,0);-webkit-transform:matrix(0.314004,-0.006908,0.005499,0.249940,0,0);}
.m9c_c00202{transform:matrix(0.315244,-0.006935,0.005499,0.249940,0,0);-ms-transform:matrix(0.315244,-0.006935,0.005499,0.249940,0,0);-webkit-transform:matrix(0.315244,-0.006935,0.005499,0.249940,0,0);}
.mb9_c00202{transform:matrix(0.500809,-0.011018,0.005499,0.249940,0,0);-ms-transform:matrix(0.500809,-0.011018,0.005499,0.249940,0,0);-webkit-transform:matrix(0.500809,-0.011018,0.005499,0.249940,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:0.000000px;}
.fc0_c00202{color:transparent;}
.fsa_c00202{font-size:55.663466px;}
.fse_c00202{font-size:57.763974px;}
.fs9_c00202{font-size:58.814228px;}
.fs6_c00202{font-size:59.864482px;}
.fs2_c00202{font-size:60.914736px;}
.fsb_c00202{font-size:61.964990px;}
.fs1_c00202{font-size:65.115752px;}
.fsc_c00202{font-size:66.166006px;}
.fs8_c00202{font-size:67.216260px;}
.fsd_c00202{font-size:68.266515px;}
.fs4_c00202{font-size:69.316769px;}
.fs7_c00202{font-size:70.367023px;}
.fs5_c00202{font-size:71.417277px;}
.fs0_c00202{font-size:72.450000px;}
.fs3_c00202{font-size:72.467531px;}
.y0_c00202{bottom:0.000000px;}
.ye4_c00202{bottom:39.257889px;}
.ye3_c00202{bottom:39.258393px;}
.ydf_c00202{bottom:39.258531px;}
.ye2_c00202{bottom:39.258672px;}
.yde_c00202{bottom:39.258810px;}
.ye0_c00202{bottom:39.259053px;}
.ydd_c00202{bottom:39.259335px;}
.ye1_c00202{bottom:39.259383px;}
.ydc_c00202{bottom:39.259614px;}
.yd5_c00202{bottom:55.260402px;}
.yd7_c00202{bottom:55.260534px;}
.yd6_c00202{bottom:55.260999px;}
.yd8_c00202{bottom:55.261284px;}
.ydb_c00202{bottom:55.261362px;}
.yda_c00202{bottom:55.261554px;}
.yd9_c00202{bottom:55.261845px;}
.ycf_c00202{bottom:72.694080px;}
.yce_c00202{bottom:72.694092px;}
.yd2_c00202{bottom:72.694248px;}
.yd3_c00202{bottom:72.694263px;}
.ycd_c00202{bottom:72.694410px;}
.yd1_c00202{bottom:72.694491px;}
.yd4_c00202{bottom:72.694512px;}
.yd0_c00202{bottom:72.694722px;}
.yca_c00202{bottom:89.327415px;}
.ycb_c00202{bottom:89.327472px;}
.yc9_c00202{bottom:89.328066px;}
.ycc_c00202{bottom:89.328168px;}
.yc8_c00202{bottom:89.328291px;}
.yc7_c00202{bottom:89.328582px;}
.ybf_c00202{bottom:105.196686px;}
.yc0_c00202{bottom:105.838731px;}
.yc1_c00202{bottom:106.023633px;}
.yc2_c00202{bottom:106.252551px;}
.yc3_c00202{bottom:106.756983px;}
.yc4_c00202{bottom:107.030397px;}
.yc5_c00202{bottom:107.969046px;}
.yc6_c00202{bottom:108.316059px;}
.yb8_c00202{bottom:125.265006px;}
.yba_c00202{bottom:125.265141px;}
.ybb_c00202{bottom:125.265303px;}
.ybe_c00202{bottom:125.265447px;}
.ybd_c00202{bottom:125.265606px;}
.yb9_c00202{bottom:125.265615px;}
.ybc_c00202{bottom:125.265624px;}
.yb1_c00202{bottom:136.796010px;}
.yb2_c00202{bottom:137.306796px;}
.yb3_c00202{bottom:137.703567px;}
.yb4_c00202{bottom:138.530508px;}
.yb5_c00202{bottom:139.865790px;}
.yb6_c00202{bottom:140.130288px;}
.yb7_c00202{bottom:140.790996px;}
.yac_c00202{bottom:157.794816px;}
.yaa_c00202{bottom:157.795020px;}
.yab_c00202{bottom:157.795428px;}
.yad_c00202{bottom:157.795506px;}
.yb0_c00202{bottom:157.795848px;}
.yae_c00202{bottom:157.795869px;}
.yaf_c00202{bottom:157.796178px;}
.ya4_c00202{bottom:175.374216px;}
.ya3_c00202{bottom:175.374468px;}
.ya5_c00202{bottom:175.374657px;}
.ya6_c00202{bottom:175.375194px;}
.ya7_c00202{bottom:175.375275px;}
.ya8_c00202{bottom:175.375779px;}
.ya9_c00202{bottom:175.376235px;}
.y9d_c00202{bottom:192.332838px;}
.y9f_c00202{bottom:192.333195px;}
.ya0_c00202{bottom:192.333336px;}
.y9e_c00202{bottom:192.333486px;}
.ya1_c00202{bottom:192.333627px;}
.ya2_c00202{bottom:192.333780px;}
.y97_c00202{bottom:206.199420px;}
.y98_c00202{bottom:206.898843px;}
.y99_c00202{bottom:207.976611px;}
.y9a_c00202{bottom:208.581219px;}
.y9b_c00202{bottom:209.126871px;}
.y9c_c00202{bottom:209.587947px;}
.y90_c00202{bottom:224.022993px;}
.y91_c00202{bottom:224.380251px;}
.y92_c00202{bottom:224.713218px;}
.y93_c00202{bottom:225.060783px;}
.y94_c00202{bottom:226.119777px;}
.y95_c00202{bottom:226.435107px;}
.y96_c00202{bottom:227.429334px;}
.y8b_c00202{bottom:243.550119px;}
.y8a_c00202{bottom:243.550557px;}
.y8c_c00202{bottom:243.550710px;}
.y8d_c00202{bottom:243.550824px;}
.y89_c00202{bottom:243.551148px;}
.y8e_c00202{bottom:243.551301px;}
.y8f_c00202{bottom:243.551676px;}
.y81_c00202{bottom:259.399425px;}
.y82_c00202{bottom:259.889883px;}
.y83_c00202{bottom:260.115021px;}
.y84_c00202{bottom:260.875440px;}
.y85_c00202{bottom:261.019413px;}
.y86_c00202{bottom:261.459462px;}
.y87_c00202{bottom:261.732612px;}
.y88_c00202{bottom:262.495905px;}
.y7a_c00202{bottom:275.873076px;}
.y7b_c00202{bottom:276.194121px;}
.y7c_c00202{bottom:277.092303px;}
.y7d_c00202{bottom:277.237938px;}
.y7e_c00202{bottom:277.782018px;}
.y7f_c00202{bottom:278.537505px;}
.y80_c00202{bottom:279.098064px;}
.y72_c00202{bottom:293.427909px;}
.y73_c00202{bottom:294.161676px;}
.y74_c00202{bottom:294.377100px;}
.y75_c00202{bottom:295.184046px;}
.y76_c00202{bottom:295.468605px;}
.y77_c00202{bottom:296.037918px;}
.y78_c00202{bottom:296.241174px;}
.y79_c00202{bottom:296.750469px;}
.y6c_c00202{bottom:310.983495px;}
.y6d_c00202{bottom:311.393592px;}
.y6e_c00202{bottom:312.231990px;}
.y6f_c00202{bottom:312.603429px;}
.y70_c00202{bottom:313.623594px;}
.y71_c00202{bottom:315.041013px;}
.y66_c00202{bottom:327.185265px;}
.y67_c00202{bottom:327.678363px;}
.y68_c00202{bottom:328.261710px;}
.y69_c00202{bottom:329.543031px;}
.y6a_c00202{bottom:330.887781px;}
.y6b_c00202{bottom:331.493757px;}
.y5f_c00202{bottom:342.310383px;}
.y60_c00202{bottom:342.742464px;}
.y61_c00202{bottom:343.899405px;}
.y62_c00202{bottom:344.192103px;}
.y63_c00202{bottom:345.408444px;}
.y64_c00202{bottom:346.078872px;}
.y65_c00202{bottom:346.487961px;}
.y5a_c00202{bottom:360.942567px;}
.y5b_c00202{bottom:361.364514px;}
.y5c_c00202{bottom:362.523147px;}
.y5d_c00202{bottom:363.064755px;}
.y5e_c00202{bottom:364.001124px;}
.y52_c00202{bottom:376.877772px;}
.y53_c00202{bottom:377.421309px;}
.y54_c00202{bottom:377.700588px;}
.y55_c00202{bottom:378.649353px;}
.y56_c00202{bottom:379.137402px;}
.y57_c00202{bottom:380.464293px;}
.y58_c00202{bottom:380.818701px;}
.y59_c00202{bottom:381.629997px;}
.y4a_c00202{bottom:394.969842px;}
.y4b_c00202{bottom:395.248752px;}
.y4c_c00202{bottom:395.552376px;}
.y4d_c00202{bottom:396.320460px;}
.y4e_c00202{bottom:397.393968px;}
.y4f_c00202{bottom:397.584750px;}
.y50_c00202{bottom:397.838829px;}
.y51_c00202{bottom:398.541867px;}
.y42_c00202{bottom:411.986394px;}
.y43_c00202{bottom:412.287873px;}
.y44_c00202{bottom:412.764039px;}
.y45_c00202{bottom:413.232099px;}
.y46_c00202{bottom:413.622084px;}
.y47_c00202{bottom:414.298542px;}
.y48_c00202{bottom:415.076781px;}
.y49_c00202{bottom:415.300599px;}
.y3b_c00202{bottom:428.730852px;}
.y3c_c00202{bottom:429.079347px;}
.y3d_c00202{bottom:429.629646px;}
.y3e_c00202{bottom:430.017624px;}
.y3f_c00202{bottom:431.090823px;}
.y40_c00202{bottom:431.959197px;}
.y41_c00202{bottom:432.261789px;}
.y35_c00202{bottom:444.397104px;}
.y36_c00202{bottom:445.881741px;}
.y37_c00202{bottom:447.402018px;}
.y38_c00202{bottom:448.722084px;}
.y39_c00202{bottom:449.096205px;}
.y3a_c00202{bottom:450.083037px;}
.y2e_c00202{bottom:463.030110px;}
.y2f_c00202{bottom:463.618275px;}
.y30_c00202{bottom:464.577054px;}
.y31_c00202{bottom:464.935272px;}
.y32_c00202{bottom:465.837567px;}
.y33_c00202{bottom:466.360368px;}
.y34_c00202{bottom:466.632819px;}
.y25_c00202{bottom:477.346482px;}
.y26_c00202{bottom:478.081353px;}
.y27_c00202{bottom:478.665366px;}
.y28_c00202{bottom:479.157948px;}
.y29_c00202{bottom:480.170613px;}
.y2a_c00202{bottom:481.460049px;}
.y2b_c00202{bottom:481.923066px;}
.y2c_c00202{bottom:482.483586px;}
.y2d_c00202{bottom:483.141444px;}
.y1d_c00202{bottom:494.632992px;}
.y1e_c00202{bottom:495.411699px;}
.y1f_c00202{bottom:496.323297px;}
.y20_c00202{bottom:497.471229px;}
.y21_c00202{bottom:498.021174px;}
.y22_c00202{bottom:499.271064px;}
.y23_c00202{bottom:500.185929px;}
.y24_c00202{bottom:501.256254px;}
.y16_c00202{bottom:513.801696px;}
.y17_c00202{bottom:515.289867px;}
.y18_c00202{bottom:515.567622px;}
.y19_c00202{bottom:516.075705px;}
.y1a_c00202{bottom:517.502157px;}
.y1b_c00202{bottom:517.892130px;}
.y1c_c00202{bottom:518.903442px;}
.y10_c00202{bottom:531.624105px;}
.y11_c00202{bottom:532.192953px;}
.y12_c00202{bottom:533.435844px;}
.y13_c00202{bottom:534.243549px;}
.y14_c00202{bottom:534.610326px;}
.y15_c00202{bottom:536.132904px;}
.y8_c00202{bottom:547.025313px;}
.y9_c00202{bottom:548.571996px;}
.ya_c00202{bottom:549.187215px;}
.yb_c00202{bottom:549.923202px;}
.yc_c00202{bottom:551.003889px;}
.yd_c00202{bottom:552.279708px;}
.ye_c00202{bottom:552.858570px;}
.yf_c00202{bottom:553.729164px;}
.y2_c00202{bottom:564.576000px;}
.y3_c00202{bottom:565.897287px;}
.y4_c00202{bottom:566.227419px;}
.y5_c00202{bottom:568.294968px;}
.y6_c00202{bottom:569.625858px;}
.y7_c00202{bottom:570.216987px;}
.y1_c00202{bottom:579.814500px;}
.hc_c00202{height:55.663466px;}
.h10_c00202{height:57.763974px;}
.hb_c00202{height:58.814228px;}
.h8_c00202{height:59.864482px;}
.h4_c00202{height:60.914736px;}
.hd_c00202{height:61.964990px;}
.h3_c00202{height:65.115752px;}
.he_c00202{height:66.166006px;}
.ha_c00202{height:67.216260px;}
.hf_c00202{height:68.266515px;}
.h6_c00202{height:69.316769px;}
.h9_c00202{height:70.367023px;}
.h7_c00202{height:71.417277px;}
.h2_c00202{height:72.450000px;}
.h5_c00202{height:72.467531px;}
.h1_c00202{height:623.250000px;}
.h0_c00202{height:623.400000px;}
.w0_c00202{width:366.390000px;}
.w1_c00202{width:366.750000px;}
.x0_c00202{left:0.000000px;}
.x3_c00202{left:34.317000px;}
.x10_c00202{left:35.319576px;}
.x35_c00202{left:36.350331px;}
.x4d_c00202{left:37.390359px;}
.x58_c00202{left:38.612208px;}
.x68_c00202{left:40.681686px;}
.x75_c00202{left:48.062019px;}
.x38_c00202{left:56.267016px;}
.x2f_c00202{left:57.346125px;}
.x9_c00202{left:58.956348px;}
.x44_c00202{left:62.320524px;}
.x50_c00202{left:64.428399px;}
.x22_c00202{left:65.545569px;}
.x11_c00202{left:66.906348px;}
.x3c_c00202{left:68.258331px;}
.x27_c00202{left:72.818121px;}
.x42_c00202{left:75.192264px;}
.x39_c00202{left:77.912811px;}
.x59_c00202{left:80.742102px;}
.x54_c00202{left:82.216524px;}
.x3d_c00202{left:84.704646px;}
.x65_c00202{left:86.415060px;}
.x23_c00202{left:88.885518px;}
.x30_c00202{left:91.705146px;}
.x4_c00202{left:94.375500px;}
.x5c_c00202{left:96.489441px;}
.x76_c00202{left:97.754076px;}
.x48_c00202{left:100.100223px;}
.x6f_c00202{left:101.805816px;}
.x1c_c00202{left:103.364736px;}
.x69_c00202{left:105.536604px;}
.x5_c00202{left:109.381500px;}
.x72_c00202{left:111.258231px;}
.xa_c00202{left:112.274631px;}
.x16_c00202{left:113.887764px;}
.x4b_c00202{left:114.949890px;}
.x31_c00202{left:115.957347px;}
.x77_c00202{left:118.819773px;}
.x61_c00202{left:122.332956px;}
.x36_c00202{left:125.443539px;}
.x17_c00202{left:128.491221px;}
.x45_c00202{left:130.393515px;}
.xb_c00202{left:133.485864px;}
.x12_c00202{left:135.952920px;}
.x4c_c00202{left:138.177459px;}
.x51_c00202{left:139.225833px;}
.x3e_c00202{left:140.518284px;}
.x46_c00202{left:147.654429px;}
.x1d_c00202{left:149.267700px;}
.x52_c00202{left:151.371006px;}
.x1_c00202{left:153.900000px;}
.x18_c00202{left:155.269503px;}
.x6e_c00202{left:157.709604px;}
.xc_c00202{left:158.890470px;}
.x6a_c00202{left:164.612499px;}
.x2_c00202{left:166.590000px;}
.x3f_c00202{left:169.250952px;}
.x1e_c00202{left:171.263748px;}
.x2b_c00202{left:172.779564px;}
.x63_c00202{left:174.455568px;}
.x49_c00202{left:175.464006px;}
.x70_c00202{left:179.043672px;}
.x13_c00202{left:180.784347px;}
.x32_c00202{left:183.020691px;}
.x55_c00202{left:184.856340px;}
.x4e_c00202{left:194.339412px;}
.xd_c00202{left:196.143228px;}
.x5a_c00202{left:198.760692px;}
.x62_c00202{left:200.111076px;}
.x14_c00202{left:201.139629px;}
.x73_c00202{left:202.269753px;}
.x6_c00202{left:203.361000px;}
.x66_c00202{left:207.134937px;}
.x3a_c00202{left:209.371911px;}
.x28_c00202{left:211.622469px;}
.x5d_c00202{left:213.699714px;}
.x24_c00202{left:219.226938px;}
.x1f_c00202{left:221.255448px;}
.x3b_c00202{left:222.955287px;}
.x56_c00202{left:224.845509px;}
.x19_c00202{left:230.340453px;}
.x2c_c00202{left:232.782564px;}
.x33_c00202{left:237.294852px;}
.xe_c00202{left:240.150963px;}
.x25_c00202{left:241.635453px;}
.x29_c00202{left:244.322292px;}
.x71_c00202{left:246.019578px;}
.x40_c00202{left:247.300032px;}
.x5f_c00202{left:248.617269px;}
.x2d_c00202{left:249.788064px;}
.x1a_c00202{left:250.863306px;}
.x67_c00202{left:251.966118px;}
.x4a_c00202{left:254.597718px;}
.x34_c00202{left:256.233360px;}
.x20_c00202{left:257.860539px;}
.xf_c00202{left:260.118894px;}
.x2a_c00202{left:261.345036px;}
.x7_c00202{left:263.856000px;}
.x26_c00202{left:267.922704px;}
.x37_c00202{left:273.219543px;}
.x6b_c00202{left:278.872596px;}
.x60_c00202{left:281.581077px;}
.x47_c00202{left:282.708279px;}
.x78_c00202{left:284.370864px;}
.x15_c00202{left:285.696054px;}
.x74_c00202{left:287.610036px;}
.x8_c00202{left:290.725500px;}
.x4f_c00202{left:292.920915px;}
.x2e_c00202{left:294.644064px;}
.x21_c00202{left:300.645201px;}
.x64_c00202{left:302.197344px;}
.x1b_c00202{left:304.062804px;}
.x53_c00202{left:306.388095px;}
.x5b_c00202{left:313.269066px;}
.x43_c00202{left:314.755179px;}
.x41_c00202{left:315.839556px;}
.x57_c00202{left:319.024779px;}
.x5e_c00202{left:322.817205px;}
.x6d_c00202{left:324.424707px;}
.x6c_c00202{left:326.094912px;}
.x79_c00202{left:332.712261px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.fsa_c00202{font-size:49.478636pt;}
.fse_c00202{font-size:51.345754pt;}
.fs9_c00202{font-size:52.279314pt;}
.fs6_c00202{font-size:53.212873pt;}
.fs2_c00202{font-size:54.146432pt;}
.fsb_c00202{font-size:55.079991pt;}
.fs1_c00202{font-size:57.880669pt;}
.fsc_c00202{font-size:58.814228pt;}
.fs8_c00202{font-size:59.747787pt;}
.fsd_c00202{font-size:60.681346pt;}
.fs4_c00202{font-size:61.614905pt;}
.fs7_c00202{font-size:62.548465pt;}
.fs5_c00202{font-size:63.482024pt;}
.fs0_c00202{font-size:64.400000pt;}
.fs3_c00202{font-size:64.415583pt;}
.y0_c00202{bottom:0.000000pt;}
.ye4_c00202{bottom:34.895901pt;}
.ye3_c00202{bottom:34.896349pt;}
.ydf_c00202{bottom:34.896472pt;}
.ye2_c00202{bottom:34.896597pt;}
.yde_c00202{bottom:34.896720pt;}
.ye0_c00202{bottom:34.896936pt;}
.ydd_c00202{bottom:34.897187pt;}
.ye1_c00202{bottom:34.897229pt;}
.ydc_c00202{bottom:34.897435pt;}
.yd5_c00202{bottom:49.120357pt;}
.yd7_c00202{bottom:49.120475pt;}
.yd6_c00202{bottom:49.120888pt;}
.yd8_c00202{bottom:49.121141pt;}
.ydb_c00202{bottom:49.121211pt;}
.yda_c00202{bottom:49.121381pt;}
.yd9_c00202{bottom:49.121640pt;}
.ycf_c00202{bottom:64.616960pt;}
.yce_c00202{bottom:64.616971pt;}
.yd2_c00202{bottom:64.617109pt;}
.yd3_c00202{bottom:64.617123pt;}
.ycd_c00202{bottom:64.617253pt;}
.yd1_c00202{bottom:64.617325pt;}
.yd4_c00202{bottom:64.617344pt;}
.yd0_c00202{bottom:64.617531pt;}
.yca_c00202{bottom:79.402147pt;}
.ycb_c00202{bottom:79.402197pt;}
.yc9_c00202{bottom:79.402725pt;}
.ycc_c00202{bottom:79.402816pt;}
.yc8_c00202{bottom:79.402925pt;}
.yc7_c00202{bottom:79.403184pt;}
.ybf_c00202{bottom:93.508165pt;}
.yc0_c00202{bottom:94.078872pt;}
.yc1_c00202{bottom:94.243229pt;}
.yc2_c00202{bottom:94.446712pt;}
.yc3_c00202{bottom:94.895096pt;}
.yc4_c00202{bottom:95.138131pt;}
.yc5_c00202{bottom:95.972485pt;}
.yc6_c00202{bottom:96.280941pt;}
.yb8_c00202{bottom:111.346672pt;}
.yba_c00202{bottom:111.346792pt;}
.ybb_c00202{bottom:111.346936pt;}
.ybe_c00202{bottom:111.347064pt;}
.ybd_c00202{bottom:111.347205pt;}
.yb9_c00202{bottom:111.347213pt;}
.ybc_c00202{bottom:111.347221pt;}
.yb1_c00202{bottom:121.596453pt;}
.yb2_c00202{bottom:122.050485pt;}
.yb3_c00202{bottom:122.403171pt;}
.yb4_c00202{bottom:123.138229pt;}
.yb5_c00202{bottom:124.325147pt;}
.yb6_c00202{bottom:124.560256pt;}
.yb7_c00202{bottom:125.147552pt;}
.yac_c00202{bottom:140.262059pt;}
.yaa_c00202{bottom:140.262240pt;}
.yab_c00202{bottom:140.262603pt;}
.yad_c00202{bottom:140.262672pt;}
.yb0_c00202{bottom:140.262976pt;}
.yae_c00202{bottom:140.262995pt;}
.yaf_c00202{bottom:140.263269pt;}
.ya4_c00202{bottom:155.888192pt;}
.ya3_c00202{bottom:155.888416pt;}
.ya5_c00202{bottom:155.888584pt;}
.ya6_c00202{bottom:155.889061pt;}
.ya7_c00202{bottom:155.889133pt;}
.ya8_c00202{bottom:155.889581pt;}
.ya9_c00202{bottom:155.889987pt;}
.y9d_c00202{bottom:170.962523pt;}
.y9f_c00202{bottom:170.962840pt;}
.ya0_c00202{bottom:170.962965pt;}
.y9e_c00202{bottom:170.963099pt;}
.ya1_c00202{bottom:170.963224pt;}
.ya2_c00202{bottom:170.963360pt;}
.y97_c00202{bottom:183.288373pt;}
.y98_c00202{bottom:183.910083pt;}
.y99_c00202{bottom:184.868099pt;}
.y9a_c00202{bottom:185.405528pt;}
.y9b_c00202{bottom:185.890552pt;}
.y9c_c00202{bottom:186.300397pt;}
.y90_c00202{bottom:199.131549pt;}
.y91_c00202{bottom:199.449112pt;}
.y92_c00202{bottom:199.745083pt;}
.y93_c00202{bottom:200.054029pt;}
.y94_c00202{bottom:200.995357pt;}
.y95_c00202{bottom:201.275651pt;}
.y96_c00202{bottom:202.159408pt;}
.y8b_c00202{bottom:216.488995pt;}
.y8a_c00202{bottom:216.489384pt;}
.y8c_c00202{bottom:216.489520pt;}
.y8d_c00202{bottom:216.489621pt;}
.y89_c00202{bottom:216.489909pt;}
.y8e_c00202{bottom:216.490045pt;}
.y8f_c00202{bottom:216.490379pt;}
.y81_c00202{bottom:230.577267pt;}
.y82_c00202{bottom:231.013229pt;}
.y83_c00202{bottom:231.213352pt;}
.y84_c00202{bottom:231.889280pt;}
.y85_c00202{bottom:232.017256pt;}
.y86_c00202{bottom:232.408411pt;}
.y87_c00202{bottom:232.651211pt;}
.y88_c00202{bottom:233.329693pt;}
.y7a_c00202{bottom:245.220512pt;}
.y7b_c00202{bottom:245.505885pt;}
.y7c_c00202{bottom:246.304269pt;}
.y7d_c00202{bottom:246.433723pt;}
.y7e_c00202{bottom:246.917349pt;}
.y7f_c00202{bottom:247.588893pt;}
.y80_c00202{bottom:248.087168pt;}
.y72_c00202{bottom:260.824808pt;}
.y73_c00202{bottom:261.477045pt;}
.y74_c00202{bottom:261.668533pt;}
.y75_c00202{bottom:262.385819pt;}
.y76_c00202{bottom:262.638760pt;}
.y77_c00202{bottom:263.144816pt;}
.y78_c00202{bottom:263.325488pt;}
.y79_c00202{bottom:263.778195pt;}
.y6c_c00202{bottom:276.429773pt;}
.y6d_c00202{bottom:276.794304pt;}
.y6e_c00202{bottom:277.539547pt;}
.y6f_c00202{bottom:277.869715pt;}
.y70_c00202{bottom:278.776528pt;}
.y71_c00202{bottom:280.036456pt;}
.y66_c00202{bottom:290.831347pt;}
.y67_c00202{bottom:291.269656pt;}
.y68_c00202{bottom:291.788187pt;}
.y69_c00202{bottom:292.927139pt;}
.y6a_c00202{bottom:294.122472pt;}
.y6b_c00202{bottom:294.661117pt;}
.y5f_c00202{bottom:304.275896pt;}
.y60_c00202{bottom:304.659968pt;}
.y61_c00202{bottom:305.688360pt;}
.y62_c00202{bottom:305.948536pt;}
.y63_c00202{bottom:307.029728pt;}
.y64_c00202{bottom:307.625664pt;}
.y65_c00202{bottom:307.989299pt;}
.y5a_c00202{bottom:320.837837pt;}
.y5b_c00202{bottom:321.212901pt;}
.y5c_c00202{bottom:322.242797pt;}
.y5d_c00202{bottom:322.724227pt;}
.y5e_c00202{bottom:323.556555pt;}
.y52_c00202{bottom:335.002464pt;}
.y53_c00202{bottom:335.485608pt;}
.y54_c00202{bottom:335.733856pt;}
.y55_c00202{bottom:336.577203pt;}
.y56_c00202{bottom:337.011024pt;}
.y57_c00202{bottom:338.190483pt;}
.y58_c00202{bottom:338.505512pt;}
.y59_c00202{bottom:339.226664pt;}
.y4a_c00202{bottom:351.084304pt;}
.y4b_c00202{bottom:351.332224pt;}
.y4c_c00202{bottom:351.602112pt;}
.y4d_c00202{bottom:352.284853pt;}
.y4e_c00202{bottom:353.239083pt;}
.y4f_c00202{bottom:353.408667pt;}
.y50_c00202{bottom:353.634515pt;}
.y51_c00202{bottom:354.259437pt;}
.y42_c00202{bottom:366.210128pt;}
.y43_c00202{bottom:366.478109pt;}
.y44_c00202{bottom:366.901368pt;}
.y45_c00202{bottom:367.317421pt;}
.y46_c00202{bottom:367.664075pt;}
.y47_c00202{bottom:368.265371pt;}
.y48_c00202{bottom:368.957139pt;}
.y49_c00202{bottom:369.156088pt;}
.y3b_c00202{bottom:381.094091pt;}
.y3c_c00202{bottom:381.403864pt;}
.y3d_c00202{bottom:381.893019pt;}
.y3e_c00202{bottom:382.237888pt;}
.y3f_c00202{bottom:383.191843pt;}
.y40_c00202{bottom:383.963731pt;}
.y41_c00202{bottom:384.232701pt;}
.y35_c00202{bottom:395.019648pt;}
.y36_c00202{bottom:396.339325pt;}
.y37_c00202{bottom:397.690683pt;}
.y38_c00202{bottom:398.864075pt;}
.y39_c00202{bottom:399.196627pt;}
.y3a_c00202{bottom:400.073811pt;}
.y2e_c00202{bottom:411.582320pt;}
.y2f_c00202{bottom:412.105133pt;}
.y30_c00202{bottom:412.957381pt;}
.y31_c00202{bottom:413.275797pt;}
.y32_c00202{bottom:414.077837pt;}
.y33_c00202{bottom:414.542549pt;}
.y34_c00202{bottom:414.784728pt;}
.y25_c00202{bottom:424.307984pt;}
.y26_c00202{bottom:424.961203pt;}
.y27_c00202{bottom:425.480325pt;}
.y28_c00202{bottom:425.918176pt;}
.y29_c00202{bottom:426.818323pt;}
.y2a_c00202{bottom:427.964488pt;}
.y2b_c00202{bottom:428.376059pt;}
.y2c_c00202{bottom:428.874299pt;}
.y2d_c00202{bottom:429.459061pt;}
.y1d_c00202{bottom:439.673771pt;}
.y1e_c00202{bottom:440.365955pt;}
.y1f_c00202{bottom:441.176264pt;}
.y20_c00202{bottom:442.196648pt;}
.y21_c00202{bottom:442.685488pt;}
.y22_c00202{bottom:443.796501pt;}
.y23_c00202{bottom:444.609715pt;}
.y24_c00202{bottom:445.561115pt;}
.y16_c00202{bottom:456.712619pt;}
.y17_c00202{bottom:458.035437pt;}
.y18_c00202{bottom:458.282331pt;}
.y19_c00202{bottom:458.733960pt;}
.y1a_c00202{bottom:460.001917pt;}
.y1b_c00202{bottom:460.348560pt;}
.y1c_c00202{bottom:461.247504pt;}
.y10_c00202{bottom:472.554760pt;}
.y11_c00202{bottom:473.060403pt;}
.y12_c00202{bottom:474.165195pt;}
.y13_c00202{bottom:474.883155pt;}
.y14_c00202{bottom:475.209179pt;}
.y15_c00202{bottom:476.562581pt;}
.y8_c00202{bottom:486.244723pt;}
.y9_c00202{bottom:487.619552pt;}
.ya_c00202{bottom:488.166413pt;}
.yb_c00202{bottom:488.820624pt;}
.yc_c00202{bottom:489.781235pt;}
.yd_c00202{bottom:490.915296pt;}
.ye_c00202{bottom:491.429840pt;}
.yf_c00202{bottom:492.203701pt;}
.y2_c00202{bottom:501.845333pt;}
.y3_c00202{bottom:503.019811pt;}
.y4_c00202{bottom:503.313261pt;}
.y5_c00202{bottom:505.151083pt;}
.y6_c00202{bottom:506.334096pt;}
.y7_c00202{bottom:506.859544pt;}
.y1_c00202{bottom:515.390667pt;}
.hc_c00202{height:49.478636pt;}
.h10_c00202{height:51.345754pt;}
.hb_c00202{height:52.279314pt;}
.h8_c00202{height:53.212873pt;}
.h4_c00202{height:54.146432pt;}
.hd_c00202{height:55.079991pt;}
.h3_c00202{height:57.880669pt;}
.he_c00202{height:58.814228pt;}
.ha_c00202{height:59.747787pt;}
.hf_c00202{height:60.681346pt;}
.h6_c00202{height:61.614905pt;}
.h9_c00202{height:62.548465pt;}
.h7_c00202{height:63.482024pt;}
.h2_c00202{height:64.400000pt;}
.h5_c00202{height:64.415583pt;}
.h1_c00202{height:554.000000pt;}
.h0_c00202{height:554.133333pt;}
.w0_c00202{width:325.680000pt;}
.w1_c00202{width:326.000000pt;}
.x0_c00202{left:0.000000pt;}
.x3_c00202{left:30.504000pt;}
.x10_c00202{left:31.395179pt;}
.x35_c00202{left:32.311405pt;}
.x4d_c00202{left:33.235875pt;}
.x58_c00202{left:34.321963pt;}
.x68_c00202{left:36.161499pt;}
.x75_c00202{left:42.721795pt;}
.x38_c00202{left:50.015125pt;}
.x2f_c00202{left:50.974333pt;}
.x9_c00202{left:52.405643pt;}
.x44_c00202{left:55.396021pt;}
.x50_c00202{left:57.269688pt;}
.x22_c00202{left:58.262728pt;}
.x11_c00202{left:59.472309pt;}
.x3c_c00202{left:60.674072pt;}
.x27_c00202{left:64.727219pt;}
.x42_c00202{left:66.837568pt;}
.x39_c00202{left:69.255832pt;}
.x59_c00202{left:71.770757pt;}
.x54_c00202{left:73.081355pt;}
.x3d_c00202{left:75.293019pt;}
.x65_c00202{left:76.813387pt;}
.x23_c00202{left:79.009349pt;}
.x30_c00202{left:81.515685pt;}
.x4_c00202{left:83.889333pt;}
.x5c_c00202{left:85.768392pt;}
.x76_c00202{left:86.892512pt;}
.x48_c00202{left:88.977976pt;}
.x6f_c00202{left:90.494059pt;}
.x1c_c00202{left:91.879765pt;}
.x69_c00202{left:93.810315pt;}
.x5_c00202{left:97.228000pt;}
.x72_c00202{left:98.896205pt;}
.xa_c00202{left:99.799672pt;}
.x16_c00202{left:101.233568pt;}
.x4b_c00202{left:102.177680pt;}
.x31_c00202{left:103.073197pt;}
.x77_c00202{left:105.617576pt;}
.x61_c00202{left:108.740405pt;}
.x36_c00202{left:111.505368pt;}
.x17_c00202{left:114.214419pt;}
.x45_c00202{left:115.905347pt;}
.xb_c00202{left:118.654101pt;}
.x12_c00202{left:120.847040pt;}
.x4c_c00202{left:122.824408pt;}
.x51_c00202{left:123.756296pt;}
.x3e_c00202{left:124.905141pt;}
.x46_c00202{left:131.248381pt;}
.x1d_c00202{left:132.682400pt;}
.x52_c00202{left:134.552005pt;}
.x1_c00202{left:136.800000pt;}
.x18_c00202{left:138.017336pt;}
.x6e_c00202{left:140.186315pt;}
.xc_c00202{left:141.235973pt;}
.x6a_c00202{left:146.322221pt;}
.x2_c00202{left:148.080000pt;}
.x3f_c00202{left:150.445291pt;}
.x1e_c00202{left:152.234443pt;}
.x2b_c00202{left:153.581835pt;}
.x63_c00202{left:155.071616pt;}
.x49_c00202{left:155.968005pt;}
.x70_c00202{left:159.149931pt;}
.x13_c00202{left:160.697197pt;}
.x32_c00202{left:162.685059pt;}
.x55_c00202{left:164.316747pt;}
.x4e_c00202{left:172.746144pt;}
.xd_c00202{left:174.349536pt;}
.x5a_c00202{left:176.676171pt;}
.x62_c00202{left:177.876512pt;}
.x14_c00202{left:178.790781pt;}
.x73_c00202{left:179.795336pt;}
.x6_c00202{left:180.765333pt;}
.x66_c00202{left:184.119944pt;}
.x3a_c00202{left:186.108365pt;}
.x28_c00202{left:188.108861pt;}
.x5d_c00202{left:189.955301pt;}
.x24_c00202{left:194.868389pt;}
.x1f_c00202{left:196.671509pt;}
.x3b_c00202{left:198.182477pt;}
.x56_c00202{left:199.862675pt;}
.x19_c00202{left:204.747069pt;}
.x2c_c00202{left:206.917835pt;}
.x33_c00202{left:210.928757pt;}
.xe_c00202{left:213.467523pt;}
.x25_c00202{left:214.787069pt;}
.x29_c00202{left:217.175371pt;}
.x71_c00202{left:218.684069pt;}
.x40_c00202{left:219.822251pt;}
.x5f_c00202{left:220.993128pt;}
.x2d_c00202{left:222.033835pt;}
.x1a_c00202{left:222.989605pt;}
.x67_c00202{left:223.969883pt;}
.x4a_c00202{left:226.309083pt;}
.x34_c00202{left:227.762987pt;}
.x20_c00202{left:229.209368pt;}
.xf_c00202{left:231.216795pt;}
.x2a_c00202{left:232.306699pt;}
.x7_c00202{left:234.538667pt;}
.x26_c00202{left:238.153515pt;}
.x37_c00202{left:242.861816pt;}
.x6b_c00202{left:247.886752pt;}
.x60_c00202{left:250.294291pt;}
.x47_c00202{left:251.296248pt;}
.x78_c00202{left:252.774101pt;}
.x15_c00202{left:253.952048pt;}
.x74_c00202{left:255.653365pt;}
.x8_c00202{left:258.422667pt;}
.x4f_c00202{left:260.374147pt;}
.x2e_c00202{left:261.905835pt;}
.x21_c00202{left:267.240179pt;}
.x64_c00202{left:268.619861pt;}
.x1b_c00202{left:270.278048pt;}
.x53_c00202{left:272.344973pt;}
.x5b_c00202{left:278.461392pt;}
.x43_c00202{left:279.782381pt;}
.x41_c00202{left:280.746272pt;}
.x57_c00202{left:283.577581pt;}
.x5e_c00202{left:286.948627pt;}
.x6d_c00202{left:288.377517pt;}
.x6c_c00202{left:289.862144pt;}
.x79_c00202{left:295.744232pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00203 {
    display:none;
  }
  .loading-indicator_c00203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00203 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00203 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00203" -> "#page-container .classname_c00203")
 */
.pf_c00203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00203 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00203 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00203 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00203 {overflow:visible;}
  }
}
.c_c00203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00203 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00203:after { /* webkit #35443 */
  content: '';
}
.t_c00203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00203 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00203 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00203 { /* info for Javascript */
  display:none;
}
.l_c00203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00203:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00203 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00203.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00203;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mef_c00203{transform:matrix(0.065940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065940,0.000000,0.000000,0.250000,0,0);}
.m62_c00203{transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);}
.mcb_c00203{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.me3_c00203{transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m6b_c00203{transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);}
.m5f_c00203{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m94_c00203{transform:matrix(0.156980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156980,0.000000,0.000000,0.250000,0,0);}
.m80_c00203{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m39_c00203{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m93_c00203{transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);}
.m35_c00203{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m98_c00203{transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);}
.m5e_c00203{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.m25_c00203{transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);}
.m41_c00203{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.mc7_c00203{transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164295,0.000000,0.000000,0.250000,0,0);}
.m3a_c00203{transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00203{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.me1_c00203{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.mc4_c00203{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);}
.m92_c00203{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.meb_c00203{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.mbb_c00203{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);}
.ma4_c00203{transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);}
.m73_c00203{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00203{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.mb0_c00203{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m7d_c00203{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.mb7_c00203{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.ma0_c00203{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m9c_c00203{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.md5_c00203{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.mee_c00203{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.mc0_c00203{transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m68_c00203{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00203{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.mb4_c00203{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.mcc_c00203{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00203{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.mc6_c00203{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m8c_c00203{transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180960,0.000000,0.000000,0.250000,0,0);}
.md7_c00203{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00203{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.md3_c00203{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m50_c00203{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.me5_c00203{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m2d_c00203{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.m28_c00203{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.m33_c00203{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m32_c00203{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m5d_c00203{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.m4c_c00203{transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);}
.m7c_c00203{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.m4b_c00203{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.md4_c00203{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.ma2_c00203{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00203{transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);}
.mb1_c00203{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m2c_c00203{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m34_c00203{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m38_c00203{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m91_c00203{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m9b_c00203{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.mf3_c00203{transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);}
.m49_c00203{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m24_c00203{transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);}
.m36_c00203{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.m60_c00203{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.md8_c00203{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m7f_c00203{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m46_c00203{transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);}
.mc3_c00203{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);}
.md6_c00203{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.mc2_c00203{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.mb8_c00203{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.me2_c00203{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m88_c00203{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.mdd_c00203{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m6f_c00203{transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);}
.m95_c00203{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.me6_c00203{transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);}
.m90_c00203{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.m89_c00203{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.md0_c00203{transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);}
.m78_c00203{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m64_c00203{transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00203{transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);}
.m67_c00203{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.m40_c00203{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mc9_c00203{transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);}
.m7e_c00203{transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);}
.mdc_c00203{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m48_c00203{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.me0_c00203{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m44_c00203{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.mec_c00203{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.mdb_c00203{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00203{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.m30_c00203{transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);}
.md9_c00203{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m42_c00203{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.m65_c00203{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.m81_c00203{transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.m99_c00203{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m83_c00203{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.mbd_c00203{transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);}
.mcd_c00203{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m61_c00203{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.med_c00203{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m55_c00203{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.mca_c00203{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00203{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.mde_c00203{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.mce_c00203{transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m63_c00203{transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);}
.mb3_c00203{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.me4_c00203{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205190,0.000000,0.000000,0.250000,0,0);}
.mbf_c00203{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00203{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m96_c00203{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.me8_c00203{transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);}
.m70_c00203{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m77_c00203{transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);}
.m5b_c00203{transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);}
.m72_c00203{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.mba_c00203{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m4f_c00203{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m52_c00203{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.ma5_c00203{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.m69_c00203{transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00203{transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);}
.mea_c00203{transform:matrix(0.212630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212630,0.000000,0.000000,0.250000,0,0);}
.mc1_c00203{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.m97_c00203{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.me7_c00203{transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);}
.m9d_c00203{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);}
.m87_c00203{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m76_c00203{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00203{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m5a_c00203{transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);}
.m6d_c00203{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.me9_c00203{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.mc8_c00203{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217335,0.000000,0.000000,0.250000,0,0);}
.mb9_c00203{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.mda_c00203{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m74_c00203{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m57_c00203{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.mae_c00203{transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);}
.ma7_c00203{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.mb6_c00203{transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.ma3_c00203{transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);}
.m9e_c00203{transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);}
.m8a_c00203{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m59_c00203{transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);}
.m9f_c00203{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m9a_c00203{transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);}
.maf_c00203{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.mc5_c00203{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00203{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m79_c00203{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.mad_c00203{transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);}
.m5c_c00203{transform:matrix(0.224385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224385,0.000000,0.000000,0.250000,0,0);}
.ma1_c00203{transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225165,0.000000,0.000000,0.250000,0,0);}
.mb2_c00203{transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);}
.m45_c00203{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);}
.m47_c00203{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m26_c00203{transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);}
.maa_c00203{transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);}
.mab_c00203{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.m82_c00203{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);}
.m23_c00203{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.m75_c00203{transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);}
.m86_c00203{transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);}
.m85_c00203{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.m6e_c00203{transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);}
.m6c_c00203{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m84_c00203{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.mcf_c00203{transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234055,0.000000,0.000000,0.250000,0,0);}
.ma8_c00203{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00203{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m53_c00203{transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);}
.mf8_c00203{transform:matrix(0.236735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236735,0.000000,0.000000,0.250000,0,0);}
.m8f_c00203{transform:matrix(0.237415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237415,0.000000,0.000000,0.250000,0,0);}
.m71_c00203{transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);}
.m8e_c00203{transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);}
.md2_c00203{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);}
.mac_c00203{transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00203{transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.mb5_c00203{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m43_c00203{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m54_c00203{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00203{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md1_c00203{transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);}
.m66_c00203{transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);}
.mf6_c00203{transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);}
.m58_c00203{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.m8b_c00203{transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.294410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294410,0.000000,0.000000,0.250000,0,0);}
.mf2_c00203{transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);}
.m22_c00203{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.mfa_c00203{transform:matrix(0.340225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340225,0.000000,0.000000,0.250000,0,0);}
.mf5_c00203{transform:matrix(0.371910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371910,0.000000,0.000000,0.250000,0,0);}
.m56_c00203{transform:matrix(0.372695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372695,0.000000,0.000000,0.250000,0,0);}
.mf9_c00203{transform:matrix(0.409245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409245,0.000000,0.000000,0.250000,0,0);}
.mf0_c00203{transform:matrix(0.428320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428320,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{transform:matrix(0.468875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468875,0.000000,0.000000,0.250000,0,0);}
.mf4_c00203{transform:matrix(0.503550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503550,0.000000,0.000000,0.250000,0,0);}
.mf1_c00203{transform:matrix(0.630345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630345,0.000000,0.000000,0.250000,0,0);}
.mfb_c00203{transform:matrix(0.732345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732345,0.000000,0.000000,0.250000,0,0);}
.mf7_c00203{transform:matrix(2.517400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.517400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.517400,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:0.000000px;}
.fc0_c00203{color:transparent;}
.fse_c00203{font-size:22.050000px;}
.fsd_c00203{font-size:54.600000px;}
.fsa_c00203{font-size:55.650000px;}
.fs8_c00203{font-size:56.700000px;}
.fs0_c00203{font-size:57.750000px;}
.fs7_c00203{font-size:58.800000px;}
.fs4_c00203{font-size:59.850000px;}
.fs1_c00203{font-size:60.900000px;}
.fs9_c00203{font-size:61.950000px;}
.fs2_c00203{font-size:63.000000px;}
.fsb_c00203{font-size:66.150000px;}
.fs6_c00203{font-size:67.200000px;}
.fs5_c00203{font-size:68.250000px;}
.fsc_c00203{font-size:69.300000px;}
.fs3_c00203{font-size:71.400000px;}
.y0_c00203{bottom:0.000000px;}
.yb1_c00203{bottom:32.911500px;}
.yb0_c00203{bottom:49.863000px;}
.yaf_c00203{bottom:66.451500px;}
.yae_c00203{bottom:83.952000px;}
.yad_c00203{bottom:102.894000px;}
.yac_c00203{bottom:103.425000px;}
.yab_c00203{bottom:103.758000px;}
.yaa_c00203{bottom:104.221500px;}
.ya9_c00203{bottom:118.260000px;}
.ya8_c00203{bottom:136.413000px;}
.ya7_c00203{bottom:151.395000px;}
.ya6_c00203{bottom:151.719000px;}
.ya5_c00203{bottom:152.307000px;}
.ya4_c00203{bottom:152.892000px;}
.ya3_c00203{bottom:153.082500px;}
.ya2_c00203{bottom:153.379500px;}
.ya1_c00203{bottom:153.528000px;}
.ya0_c00203{bottom:154.155000px;}
.y9f_c00203{bottom:154.443000px;}
.y9e_c00203{bottom:169.908000px;}
.y9d_c00203{bottom:170.623500px;}
.y9c_c00203{bottom:170.869500px;}
.y9b_c00203{bottom:171.223500px;}
.y9a_c00203{bottom:172.365000px;}
.y99_c00203{bottom:172.990500px;}
.y98_c00203{bottom:173.250000px;}
.y97_c00203{bottom:173.614500px;}
.y96_c00203{bottom:188.023500px;}
.y95_c00203{bottom:189.055500px;}
.y94_c00203{bottom:189.790500px;}
.y93_c00203{bottom:189.994500px;}
.y92_c00203{bottom:190.654500px;}
.y91_c00203{bottom:190.911000px;}
.y90_c00203{bottom:203.619000px;}
.y8f_c00203{bottom:205.080000px;}
.y8e_c00203{bottom:206.254500px;}
.y8d_c00203{bottom:207.469500px;}
.y8c_c00203{bottom:207.906000px;}
.y8b_c00203{bottom:221.374500px;}
.y8a_c00203{bottom:221.841000px;}
.y89_c00203{bottom:223.098000px;}
.y88_c00203{bottom:223.680000px;}
.y87_c00203{bottom:223.939500px;}
.y86_c00203{bottom:224.496000px;}
.y85_c00203{bottom:224.901000px;}
.y84_c00203{bottom:225.412500px;}
.y83_c00203{bottom:225.838500px;}
.y82_c00203{bottom:226.536000px;}
.y81_c00203{bottom:238.563000px;}
.y80_c00203{bottom:238.858500px;}
.y7f_c00203{bottom:239.092500px;}
.y7e_c00203{bottom:240.060000px;}
.y7d_c00203{bottom:240.409500px;}
.y7c_c00203{bottom:240.882000px;}
.y7b_c00203{bottom:241.146000px;}
.y7a_c00203{bottom:241.566000px;}
.y79_c00203{bottom:242.271000px;}
.y78_c00203{bottom:242.733000px;}
.yb3_c00203{bottom:253.530000px;}
.y77_c00203{bottom:256.290000px;}
.y76_c00203{bottom:256.518000px;}
.y75_c00203{bottom:257.407500px;}
.y74_c00203{bottom:257.736000px;}
.y73_c00203{bottom:258.793500px;}
.y72_c00203{bottom:259.474500px;}
.y71_c00203{bottom:273.258000px;}
.y70_c00203{bottom:273.858000px;}
.y6f_c00203{bottom:274.177500px;}
.y6e_c00203{bottom:274.690500px;}
.y6d_c00203{bottom:275.869500px;}
.y6c_c00203{bottom:276.043500px;}
.y6b_c00203{bottom:276.714000px;}
.y6a_c00203{bottom:277.023000px;}
.y69_c00203{bottom:290.397000px;}
.y68_c00203{bottom:290.730000px;}
.y67_c00203{bottom:291.472500px;}
.y66_c00203{bottom:291.643500px;}
.y65_c00203{bottom:292.477500px;}
.y64_c00203{bottom:293.223000px;}
.y63_c00203{bottom:307.017000px;}
.y62_c00203{bottom:307.257000px;}
.y61_c00203{bottom:307.833000px;}
.y60_c00203{bottom:308.413500px;}
.y5f_c00203{bottom:308.814000px;}
.y5e_c00203{bottom:309.111000px;}
.y5d_c00203{bottom:309.694500px;}
.y5c_c00203{bottom:324.403500px;}
.y5b_c00203{bottom:324.616500px;}
.y5a_c00203{bottom:324.921000px;}
.y59_c00203{bottom:325.348500px;}
.y58_c00203{bottom:325.591500px;}
.y57_c00203{bottom:326.142000px;}
.y56_c00203{bottom:326.719500px;}
.y55_c00203{bottom:326.973000px;}
.y54_c00203{bottom:341.758500px;}
.y53_c00203{bottom:341.956500px;}
.y52_c00203{bottom:342.108000px;}
.y51_c00203{bottom:342.720000px;}
.y50_c00203{bottom:343.029000px;}
.y4f_c00203{bottom:343.395000px;}
.y4e_c00203{bottom:343.783500px;}
.y4d_c00203{bottom:344.253000px;}
.y4c_c00203{bottom:358.716000px;}
.y4b_c00203{bottom:359.727000px;}
.y4a_c00203{bottom:359.940000px;}
.y49_c00203{bottom:360.102000px;}
.y48_c00203{bottom:360.951000px;}
.y47_c00203{bottom:361.152000px;}
.y46_c00203{bottom:361.404000px;}
.y45_c00203{bottom:361.803000px;}
.y44_c00203{bottom:375.960000px;}
.y43_c00203{bottom:376.312500px;}
.y42_c00203{bottom:376.812000px;}
.y41_c00203{bottom:376.968000px;}
.y40_c00203{bottom:377.814000px;}
.y3f_c00203{bottom:378.054000px;}
.y3e_c00203{bottom:378.865500px;}
.y3d_c00203{bottom:379.084500px;}
.y3c_c00203{bottom:392.581500px;}
.y3b_c00203{bottom:393.402000px;}
.y3a_c00203{bottom:393.661500px;}
.y39_c00203{bottom:394.170000px;}
.y38_c00203{bottom:394.380000px;}
.y37_c00203{bottom:394.872000px;}
.y36_c00203{bottom:395.475000px;}
.y35_c00203{bottom:395.776500px;}
.y34_c00203{bottom:396.093000px;}
.y33_c00203{bottom:410.140500px;}
.y32_c00203{bottom:410.460000px;}
.y31_c00203{bottom:411.112500px;}
.y30_c00203{bottom:411.574500px;}
.y2f_c00203{bottom:411.747000px;}
.y2e_c00203{bottom:412.572000px;}
.y2d_c00203{bottom:413.347500px;}
.y2c_c00203{bottom:413.641500px;}
.y2b_c00203{bottom:427.110000px;}
.y2a_c00203{bottom:427.746000px;}
.y29_c00203{bottom:427.990500px;}
.y28_c00203{bottom:428.268000px;}
.y27_c00203{bottom:428.647500px;}
.y26_c00203{bottom:429.175500px;}
.y25_c00203{bottom:429.450000px;}
.y24_c00203{bottom:430.327500px;}
.y23_c00203{bottom:430.924500px;}
.yb2_c00203{bottom:441.180000px;}
.y22_c00203{bottom:444.357000px;}
.y21_c00203{bottom:444.588000px;}
.y20_c00203{bottom:444.871500px;}
.y1f_c00203{bottom:445.635000px;}
.y1e_c00203{bottom:446.205000px;}
.y1d_c00203{bottom:446.421000px;}
.y1c_c00203{bottom:447.111000px;}
.y1b_c00203{bottom:447.391500px;}
.y1a_c00203{bottom:448.204500px;}
.y19_c00203{bottom:461.674500px;}
.y18_c00203{bottom:462.388500px;}
.y17_c00203{bottom:462.670500px;}
.y16_c00203{bottom:462.922500px;}
.y15_c00203{bottom:463.249500px;}
.y14_c00203{bottom:463.660500px;}
.y13_c00203{bottom:463.996500px;}
.y12_c00203{bottom:464.370000px;}
.y11_c00203{bottom:464.943000px;}
.y10_c00203{bottom:481.293000px;}
.yf_c00203{bottom:481.549500px;}
.ye_c00203{bottom:482.763000px;}
.yd_c00203{bottom:496.101000px;}
.yc_c00203{bottom:496.927500px;}
.yb_c00203{bottom:497.349000px;}
.ya_c00203{bottom:498.283500px;}
.y9_c00203{bottom:498.567000px;}
.y8_c00203{bottom:499.243500px;}
.y7_c00203{bottom:499.620000px;}
.y6_c00203{bottom:500.313000px;}
.y5_c00203{bottom:514.767000px;}
.y4_c00203{bottom:532.047000px;}
.y3_c00203{bottom:549.477000px;}
.y2_c00203{bottom:566.608500px;}
.y1_c00203{bottom:583.470000px;}
.h10_c00203{height:22.050000px;}
.hf_c00203{height:54.600000px;}
.hc_c00203{height:55.650000px;}
.ha_c00203{height:56.700000px;}
.h2_c00203{height:57.750000px;}
.h9_c00203{height:58.800000px;}
.h6_c00203{height:59.850000px;}
.h3_c00203{height:60.900000px;}
.hb_c00203{height:61.950000px;}
.h4_c00203{height:63.000000px;}
.hd_c00203{height:66.150000px;}
.h8_c00203{height:67.200000px;}
.h7_c00203{height:68.250000px;}
.he_c00203{height:69.300000px;}
.h5_c00203{height:71.400000px;}
.h1_c00203{height:623.250000px;}
.h0_c00203{height:623.400000px;}
.w0_c00203{width:366.390000px;}
.w1_c00203{width:366.750000px;}
.x0_c00203{left:0.000000px;}
.x61_c00203{left:41.134500px;}
.x5d_c00203{left:43.012500px;}
.x4c_c00203{left:44.148000px;}
.x42_c00203{left:45.207000px;}
.x1b_c00203{left:46.528500px;}
.x2_c00203{left:47.790000px;}
.x62_c00203{left:60.883500px;}
.x3d_c00203{left:63.966000px;}
.x6c_c00203{left:66.690000px;}
.x35_c00203{left:68.703000px;}
.x3_c00203{left:70.200000px;}
.xd_c00203{left:72.090000px;}
.x14_c00203{left:74.520000px;}
.x67_c00203{left:76.405500px;}
.x43_c00203{left:78.474000px;}
.x6a_c00203{left:80.112000px;}
.x49_c00203{left:87.931500px;}
.x2f_c00203{left:91.648500px;}
.x1c_c00203{left:92.700000px;}
.x23_c00203{left:94.635000px;}
.x15_c00203{left:96.660000px;}
.x9_c00203{left:98.010000px;}
.x44_c00203{left:99.475500px;}
.x52_c00203{left:102.523500px;}
.x70_c00203{left:104.220000px;}
.x29_c00203{left:105.406500px;}
.x6b_c00203{left:107.902500px;}
.x63_c00203{left:111.621000px;}
.x45_c00203{left:116.212500px;}
.x1d_c00203{left:117.820500px;}
.x56_c00203{left:119.530500px;}
.x5a_c00203{left:121.107000px;}
.xe_c00203{left:123.660000px;}
.x16_c00203{left:125.010000px;}
.x4d_c00203{left:127.311000px;}
.x36_c00203{left:128.373000px;}
.x3e_c00203{left:131.611500px;}
.x21_c00203{left:133.221000px;}
.x64_c00203{left:138.883500px;}
.x68_c00203{left:143.365500px;}
.x5e_c00203{left:144.994500px;}
.x3a_c00203{left:147.282000px;}
.x5b_c00203{left:149.116500px;}
.x22_c00203{left:151.581000px;}
.x5f_c00203{left:152.631000px;}
.x4_c00203{left:153.900000px;}
.x4a_c00203{left:156.501000px;}
.x30_c00203{left:159.147000px;}
.x1e_c00203{left:162.904500px;}
.x65_c00203{left:165.348000px;}
.xf_c00203{left:167.400000px;}
.x53_c00203{left:172.165500px;}
.x2a_c00203{left:174.795000px;}
.x59_c00203{left:177.019500px;}
.x1_c00203{left:181.170000px;}
.x4e_c00203{left:182.385000px;}
.x17_c00203{left:184.140000px;}
.x10_c00203{left:186.570000px;}
.x24_c00203{left:188.064000px;}
.x2b_c00203{left:190.189500px;}
.xa_c00203{left:191.430000px;}
.x69_c00203{left:195.475500px;}
.x5c_c00203{left:198.249000px;}
.x46_c00203{left:200.458500px;}
.x18_c00203{left:201.960000px;}
.x37_c00203{left:205.107000px;}
.x4f_c00203{left:206.688000px;}
.x5_c00203{left:210.330000px;}
.x25_c00203{left:215.371500px;}
.x6d_c00203{left:216.540000px;}
.x47_c00203{left:218.269500px;}
.x31_c00203{left:220.770000px;}
.x3f_c00203{left:222.070500px;}
.x57_c00203{left:223.684500px;}
.xb_c00203{left:227.610000px;}
.x2c_c00203{left:230.947500px;}
.x71_c00203{left:232.470000px;}
.x6_c00203{left:235.170000px;}
.x26_c00203{left:236.367000px;}
.x38_c00203{left:240.685500px;}
.x1f_c00203{left:244.108500px;}
.x3b_c00203{left:248.259000px;}
.x32_c00203{left:249.925500px;}
.x11_c00203{left:251.910000px;}
.x4b_c00203{left:253.974000px;}
.x27_c00203{left:259.863000px;}
.x12_c00203{left:264.060000px;}
.x3c_c00203{left:269.862000px;}
.x20_c00203{left:272.247000px;}
.x40_c00203{left:276.660000px;}
.x19_c00203{left:278.100000px;}
.x50_c00203{left:279.861000px;}
.x7_c00203{left:281.070000px;}
.x2d_c00203{left:285.484500px;}
.x66_c00203{left:286.735500px;}
.x54_c00203{left:287.743500px;}
.x33_c00203{left:290.089500px;}
.x6e_c00203{left:292.410000px;}
.xc_c00203{left:298.620000px;}
.x51_c00203{left:301.191000px;}
.x48_c00203{left:302.517000px;}
.x1a_c00203{left:304.830000px;}
.x41_c00203{left:306.034500px;}
.x8_c00203{left:307.260000px;}
.x72_c00203{left:309.150000px;}
.x55_c00203{left:311.770500px;}
.x39_c00203{left:315.474000px;}
.x28_c00203{left:319.312500px;}
.x2e_c00203{left:322.204500px;}
.x6f_c00203{left:324.270000px;}
.x13_c00203{left:326.430000px;}
.x60_c00203{left:328.401000px;}
.x58_c00203{left:333.825000px;}
.x34_c00203{left:338.965500px;}
.x75_c00203{left:360.720000px;}
.x73_c00203{left:363.960000px;}
.x74_c00203{left:365.310000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.fse_c00203{font-size:19.600000pt;}
.fsd_c00203{font-size:48.533333pt;}
.fsa_c00203{font-size:49.466667pt;}
.fs8_c00203{font-size:50.400000pt;}
.fs0_c00203{font-size:51.333333pt;}
.fs7_c00203{font-size:52.266667pt;}
.fs4_c00203{font-size:53.200000pt;}
.fs1_c00203{font-size:54.133333pt;}
.fs9_c00203{font-size:55.066667pt;}
.fs2_c00203{font-size:56.000000pt;}
.fsb_c00203{font-size:58.800000pt;}
.fs6_c00203{font-size:59.733333pt;}
.fs5_c00203{font-size:60.666667pt;}
.fsc_c00203{font-size:61.600000pt;}
.fs3_c00203{font-size:63.466667pt;}
.y0_c00203{bottom:0.000000pt;}
.yb1_c00203{bottom:29.254667pt;}
.yb0_c00203{bottom:44.322667pt;}
.yaf_c00203{bottom:59.068000pt;}
.yae_c00203{bottom:74.624000pt;}
.yad_c00203{bottom:91.461333pt;}
.yac_c00203{bottom:91.933333pt;}
.yab_c00203{bottom:92.229333pt;}
.yaa_c00203{bottom:92.641333pt;}
.ya9_c00203{bottom:105.120000pt;}
.ya8_c00203{bottom:121.256000pt;}
.ya7_c00203{bottom:134.573333pt;}
.ya6_c00203{bottom:134.861333pt;}
.ya5_c00203{bottom:135.384000pt;}
.ya4_c00203{bottom:135.904000pt;}
.ya3_c00203{bottom:136.073333pt;}
.ya2_c00203{bottom:136.337333pt;}
.ya1_c00203{bottom:136.469333pt;}
.ya0_c00203{bottom:137.026667pt;}
.y9f_c00203{bottom:137.282667pt;}
.y9e_c00203{bottom:151.029333pt;}
.y9d_c00203{bottom:151.665333pt;}
.y9c_c00203{bottom:151.884000pt;}
.y9b_c00203{bottom:152.198667pt;}
.y9a_c00203{bottom:153.213333pt;}
.y99_c00203{bottom:153.769333pt;}
.y98_c00203{bottom:154.000000pt;}
.y97_c00203{bottom:154.324000pt;}
.y96_c00203{bottom:167.132000pt;}
.y95_c00203{bottom:168.049333pt;}
.y94_c00203{bottom:168.702667pt;}
.y93_c00203{bottom:168.884000pt;}
.y92_c00203{bottom:169.470667pt;}
.y91_c00203{bottom:169.698667pt;}
.y90_c00203{bottom:180.994667pt;}
.y8f_c00203{bottom:182.293333pt;}
.y8e_c00203{bottom:183.337333pt;}
.y8d_c00203{bottom:184.417333pt;}
.y8c_c00203{bottom:184.805333pt;}
.y8b_c00203{bottom:196.777333pt;}
.y8a_c00203{bottom:197.192000pt;}
.y89_c00203{bottom:198.309333pt;}
.y88_c00203{bottom:198.826667pt;}
.y87_c00203{bottom:199.057333pt;}
.y86_c00203{bottom:199.552000pt;}
.y85_c00203{bottom:199.912000pt;}
.y84_c00203{bottom:200.366667pt;}
.y83_c00203{bottom:200.745333pt;}
.y82_c00203{bottom:201.365333pt;}
.y81_c00203{bottom:212.056000pt;}
.y80_c00203{bottom:212.318667pt;}
.y7f_c00203{bottom:212.526667pt;}
.y7e_c00203{bottom:213.386667pt;}
.y7d_c00203{bottom:213.697333pt;}
.y7c_c00203{bottom:214.117333pt;}
.y7b_c00203{bottom:214.352000pt;}
.y7a_c00203{bottom:214.725333pt;}
.y79_c00203{bottom:215.352000pt;}
.y78_c00203{bottom:215.762667pt;}
.yb3_c00203{bottom:225.360000pt;}
.y77_c00203{bottom:227.813333pt;}
.y76_c00203{bottom:228.016000pt;}
.y75_c00203{bottom:228.806667pt;}
.y74_c00203{bottom:229.098667pt;}
.y73_c00203{bottom:230.038667pt;}
.y72_c00203{bottom:230.644000pt;}
.y71_c00203{bottom:242.896000pt;}
.y70_c00203{bottom:243.429333pt;}
.y6f_c00203{bottom:243.713333pt;}
.y6e_c00203{bottom:244.169333pt;}
.y6d_c00203{bottom:245.217333pt;}
.y6c_c00203{bottom:245.372000pt;}
.y6b_c00203{bottom:245.968000pt;}
.y6a_c00203{bottom:246.242667pt;}
.y69_c00203{bottom:258.130667pt;}
.y68_c00203{bottom:258.426667pt;}
.y67_c00203{bottom:259.086667pt;}
.y66_c00203{bottom:259.238667pt;}
.y65_c00203{bottom:259.980000pt;}
.y64_c00203{bottom:260.642667pt;}
.y63_c00203{bottom:272.904000pt;}
.y62_c00203{bottom:273.117333pt;}
.y61_c00203{bottom:273.629333pt;}
.y60_c00203{bottom:274.145333pt;}
.y5f_c00203{bottom:274.501333pt;}
.y5e_c00203{bottom:274.765333pt;}
.y5d_c00203{bottom:275.284000pt;}
.y5c_c00203{bottom:288.358667pt;}
.y5b_c00203{bottom:288.548000pt;}
.y5a_c00203{bottom:288.818667pt;}
.y59_c00203{bottom:289.198667pt;}
.y58_c00203{bottom:289.414667pt;}
.y57_c00203{bottom:289.904000pt;}
.y56_c00203{bottom:290.417333pt;}
.y55_c00203{bottom:290.642667pt;}
.y54_c00203{bottom:303.785333pt;}
.y53_c00203{bottom:303.961333pt;}
.y52_c00203{bottom:304.096000pt;}
.y51_c00203{bottom:304.640000pt;}
.y50_c00203{bottom:304.914667pt;}
.y4f_c00203{bottom:305.240000pt;}
.y4e_c00203{bottom:305.585333pt;}
.y4d_c00203{bottom:306.002667pt;}
.y4c_c00203{bottom:318.858667pt;}
.y4b_c00203{bottom:319.757333pt;}
.y4a_c00203{bottom:319.946667pt;}
.y49_c00203{bottom:320.090667pt;}
.y48_c00203{bottom:320.845333pt;}
.y47_c00203{bottom:321.024000pt;}
.y46_c00203{bottom:321.248000pt;}
.y45_c00203{bottom:321.602667pt;}
.y44_c00203{bottom:334.186667pt;}
.y43_c00203{bottom:334.500000pt;}
.y42_c00203{bottom:334.944000pt;}
.y41_c00203{bottom:335.082667pt;}
.y40_c00203{bottom:335.834667pt;}
.y3f_c00203{bottom:336.048000pt;}
.y3e_c00203{bottom:336.769333pt;}
.y3d_c00203{bottom:336.964000pt;}
.y3c_c00203{bottom:348.961333pt;}
.y3b_c00203{bottom:349.690667pt;}
.y3a_c00203{bottom:349.921333pt;}
.y39_c00203{bottom:350.373333pt;}
.y38_c00203{bottom:350.560000pt;}
.y37_c00203{bottom:350.997333pt;}
.y36_c00203{bottom:351.533333pt;}
.y35_c00203{bottom:351.801333pt;}
.y34_c00203{bottom:352.082667pt;}
.y33_c00203{bottom:364.569333pt;}
.y32_c00203{bottom:364.853333pt;}
.y31_c00203{bottom:365.433333pt;}
.y30_c00203{bottom:365.844000pt;}
.y2f_c00203{bottom:365.997333pt;}
.y2e_c00203{bottom:366.730667pt;}
.y2d_c00203{bottom:367.420000pt;}
.y2c_c00203{bottom:367.681333pt;}
.y2b_c00203{bottom:379.653333pt;}
.y2a_c00203{bottom:380.218667pt;}
.y29_c00203{bottom:380.436000pt;}
.y28_c00203{bottom:380.682667pt;}
.y27_c00203{bottom:381.020000pt;}
.y26_c00203{bottom:381.489333pt;}
.y25_c00203{bottom:381.733333pt;}
.y24_c00203{bottom:382.513333pt;}
.y23_c00203{bottom:383.044000pt;}
.yb2_c00203{bottom:392.160000pt;}
.y22_c00203{bottom:394.984000pt;}
.y21_c00203{bottom:395.189333pt;}
.y20_c00203{bottom:395.441333pt;}
.y1f_c00203{bottom:396.120000pt;}
.y1e_c00203{bottom:396.626667pt;}
.y1d_c00203{bottom:396.818667pt;}
.y1c_c00203{bottom:397.432000pt;}
.y1b_c00203{bottom:397.681333pt;}
.y1a_c00203{bottom:398.404000pt;}
.y19_c00203{bottom:410.377333pt;}
.y18_c00203{bottom:411.012000pt;}
.y17_c00203{bottom:411.262667pt;}
.y16_c00203{bottom:411.486667pt;}
.y15_c00203{bottom:411.777333pt;}
.y14_c00203{bottom:412.142667pt;}
.y13_c00203{bottom:412.441333pt;}
.y12_c00203{bottom:412.773333pt;}
.y11_c00203{bottom:413.282667pt;}
.y10_c00203{bottom:427.816000pt;}
.yf_c00203{bottom:428.044000pt;}
.ye_c00203{bottom:429.122667pt;}
.yd_c00203{bottom:440.978667pt;}
.yc_c00203{bottom:441.713333pt;}
.yb_c00203{bottom:442.088000pt;}
.ya_c00203{bottom:442.918667pt;}
.y9_c00203{bottom:443.170667pt;}
.y8_c00203{bottom:443.772000pt;}
.y7_c00203{bottom:444.106667pt;}
.y6_c00203{bottom:444.722667pt;}
.y5_c00203{bottom:457.570667pt;}
.y4_c00203{bottom:472.930667pt;}
.y3_c00203{bottom:488.424000pt;}
.y2_c00203{bottom:503.652000pt;}
.y1_c00203{bottom:518.640000pt;}
.h10_c00203{height:19.600000pt;}
.hf_c00203{height:48.533333pt;}
.hc_c00203{height:49.466667pt;}
.ha_c00203{height:50.400000pt;}
.h2_c00203{height:51.333333pt;}
.h9_c00203{height:52.266667pt;}
.h6_c00203{height:53.200000pt;}
.h3_c00203{height:54.133333pt;}
.hb_c00203{height:55.066667pt;}
.h4_c00203{height:56.000000pt;}
.hd_c00203{height:58.800000pt;}
.h8_c00203{height:59.733333pt;}
.h7_c00203{height:60.666667pt;}
.he_c00203{height:61.600000pt;}
.h5_c00203{height:63.466667pt;}
.h1_c00203{height:554.000000pt;}
.h0_c00203{height:554.133333pt;}
.w0_c00203{width:325.680000pt;}
.w1_c00203{width:326.000000pt;}
.x0_c00203{left:0.000000pt;}
.x61_c00203{left:36.564000pt;}
.x5d_c00203{left:38.233333pt;}
.x4c_c00203{left:39.242667pt;}
.x42_c00203{left:40.184000pt;}
.x1b_c00203{left:41.358667pt;}
.x2_c00203{left:42.480000pt;}
.x62_c00203{left:54.118667pt;}
.x3d_c00203{left:56.858667pt;}
.x6c_c00203{left:59.280000pt;}
.x35_c00203{left:61.069333pt;}
.x3_c00203{left:62.400000pt;}
.xd_c00203{left:64.080000pt;}
.x14_c00203{left:66.240000pt;}
.x67_c00203{left:67.916000pt;}
.x43_c00203{left:69.754667pt;}
.x6a_c00203{left:71.210667pt;}
.x49_c00203{left:78.161333pt;}
.x2f_c00203{left:81.465333pt;}
.x1c_c00203{left:82.400000pt;}
.x23_c00203{left:84.120000pt;}
.x15_c00203{left:85.920000pt;}
.x9_c00203{left:87.120000pt;}
.x44_c00203{left:88.422667pt;}
.x52_c00203{left:91.132000pt;}
.x70_c00203{left:92.640000pt;}
.x29_c00203{left:93.694667pt;}
.x6b_c00203{left:95.913333pt;}
.x63_c00203{left:99.218667pt;}
.x45_c00203{left:103.300000pt;}
.x1d_c00203{left:104.729333pt;}
.x56_c00203{left:106.249333pt;}
.x5a_c00203{left:107.650667pt;}
.xe_c00203{left:109.920000pt;}
.x16_c00203{left:111.120000pt;}
.x4d_c00203{left:113.165333pt;}
.x36_c00203{left:114.109333pt;}
.x3e_c00203{left:116.988000pt;}
.x21_c00203{left:118.418667pt;}
.x64_c00203{left:123.452000pt;}
.x68_c00203{left:127.436000pt;}
.x5e_c00203{left:128.884000pt;}
.x3a_c00203{left:130.917333pt;}
.x5b_c00203{left:132.548000pt;}
.x22_c00203{left:134.738667pt;}
.x5f_c00203{left:135.672000pt;}
.x4_c00203{left:136.800000pt;}
.x4a_c00203{left:139.112000pt;}
.x30_c00203{left:141.464000pt;}
.x1e_c00203{left:144.804000pt;}
.x65_c00203{left:146.976000pt;}
.xf_c00203{left:148.800000pt;}
.x53_c00203{left:153.036000pt;}
.x2a_c00203{left:155.373333pt;}
.x59_c00203{left:157.350667pt;}
.x1_c00203{left:161.040000pt;}
.x4e_c00203{left:162.120000pt;}
.x17_c00203{left:163.680000pt;}
.x10_c00203{left:165.840000pt;}
.x24_c00203{left:167.168000pt;}
.x2b_c00203{left:169.057333pt;}
.xa_c00203{left:170.160000pt;}
.x69_c00203{left:173.756000pt;}
.x5c_c00203{left:176.221333pt;}
.x46_c00203{left:178.185333pt;}
.x18_c00203{left:179.520000pt;}
.x37_c00203{left:182.317333pt;}
.x4f_c00203{left:183.722667pt;}
.x5_c00203{left:186.960000pt;}
.x25_c00203{left:191.441333pt;}
.x6d_c00203{left:192.480000pt;}
.x47_c00203{left:194.017333pt;}
.x31_c00203{left:196.240000pt;}
.x3f_c00203{left:197.396000pt;}
.x57_c00203{left:198.830667pt;}
.xb_c00203{left:202.320000pt;}
.x2c_c00203{left:205.286667pt;}
.x71_c00203{left:206.640000pt;}
.x6_c00203{left:209.040000pt;}
.x26_c00203{left:210.104000pt;}
.x38_c00203{left:213.942667pt;}
.x1f_c00203{left:216.985333pt;}
.x3b_c00203{left:220.674667pt;}
.x32_c00203{left:222.156000pt;}
.x11_c00203{left:223.920000pt;}
.x4b_c00203{left:225.754667pt;}
.x27_c00203{left:230.989333pt;}
.x12_c00203{left:234.720000pt;}
.x3c_c00203{left:239.877333pt;}
.x20_c00203{left:241.997333pt;}
.x40_c00203{left:245.920000pt;}
.x19_c00203{left:247.200000pt;}
.x50_c00203{left:248.765333pt;}
.x7_c00203{left:249.840000pt;}
.x2d_c00203{left:253.764000pt;}
.x66_c00203{left:254.876000pt;}
.x54_c00203{left:255.772000pt;}
.x33_c00203{left:257.857333pt;}
.x6e_c00203{left:259.920000pt;}
.xc_c00203{left:265.440000pt;}
.x51_c00203{left:267.725333pt;}
.x48_c00203{left:268.904000pt;}
.x1a_c00203{left:270.960000pt;}
.x41_c00203{left:272.030667pt;}
.x8_c00203{left:273.120000pt;}
.x72_c00203{left:274.800000pt;}
.x55_c00203{left:277.129333pt;}
.x39_c00203{left:280.421333pt;}
.x28_c00203{left:283.833333pt;}
.x2e_c00203{left:286.404000pt;}
.x6f_c00203{left:288.240000pt;}
.x13_c00203{left:290.160000pt;}
.x60_c00203{left:291.912000pt;}
.x58_c00203{left:296.733333pt;}
.x34_c00203{left:301.302667pt;}
.x75_c00203{left:320.640000pt;}
.x73_c00203{left:323.520000pt;}
.x74_c00203{left:324.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00204 {
    display:none;
  }
  .loading-indicator_c00204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00204 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00204 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00204" -> "#page-container .classname_c00204")
 */
.pf_c00204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00204 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00204 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00204 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00204 {overflow:visible;}
  }
}
.c_c00204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00204 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00204:after { /* webkit #35443 */
  content: '';
}
.t_c00204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00204 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00204 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00204 { /* info for Javascript */
  display:none;
}
.l_c00204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00204:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00204 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00204.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00204;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.med_c00204{transform:matrix(0.016655,-0.000400,0.005998,0.249928,0,0);-ms-transform:matrix(0.016655,-0.000400,0.005998,0.249928,0,0);-webkit-transform:matrix(0.016655,-0.000400,0.005998,0.249928,0,0);}
.md8_c00204{transform:matrix(0.033675,-0.000808,0.005998,0.249928,0,0);-ms-transform:matrix(0.033675,-0.000808,0.005998,0.249928,0,0);-webkit-transform:matrix(0.033675,-0.000808,0.005998,0.249928,0,0);}
.mc0_c00204{transform:matrix(0.075608,-0.001815,0.005998,0.249928,0,0);-ms-transform:matrix(0.075608,-0.001815,0.005998,0.249928,0,0);-webkit-transform:matrix(0.075608,-0.001815,0.005998,0.249928,0,0);}
.m23_c00204{transform:matrix(0.088123,-0.002732,0.007746,0.249880,0,0);-ms-transform:matrix(0.088123,-0.002732,0.007746,0.249880,0,0);-webkit-transform:matrix(0.088123,-0.002732,0.007746,0.249880,0,0);}
.m9c_c00204{transform:matrix(0.111596,-0.003459,0.007746,0.249880,0,0);-ms-transform:matrix(0.111596,-0.003459,0.007746,0.249880,0,0);-webkit-transform:matrix(0.111596,-0.003459,0.007746,0.249880,0,0);}
.mc3_c00204{transform:matrix(0.115082,-0.002762,0.005998,0.249928,0,0);-ms-transform:matrix(0.115082,-0.002762,0.005998,0.249928,0,0);-webkit-transform:matrix(0.115082,-0.002762,0.005998,0.249928,0,0);}
.m21_c00204{transform:matrix(0.133046,-0.004124,0.007746,0.249880,0,0);-ms-transform:matrix(0.133046,-0.004124,0.007746,0.249880,0,0);-webkit-transform:matrix(0.133046,-0.004124,0.007746,0.249880,0,0);}
.mee_c00204{transform:matrix(0.135096,-0.003242,0.005998,0.249928,0,0);-ms-transform:matrix(0.135096,-0.003242,0.005998,0.249928,0,0);-webkit-transform:matrix(0.135096,-0.003242,0.005998,0.249928,0,0);}
.m20_c00204{transform:matrix(0.135645,-0.004205,0.007746,0.249880,0,0);-ms-transform:matrix(0.135645,-0.004205,0.007746,0.249880,0,0);-webkit-transform:matrix(0.135645,-0.004205,0.007746,0.249880,0,0);}
.mc2_c00204{transform:matrix(0.139770,-0.003354,0.005998,0.249928,0,0);-ms-transform:matrix(0.139770,-0.003354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.139770,-0.003354,0.005998,0.249928,0,0);}
.m6f_c00204{transform:matrix(0.145950,-0.004524,0.007746,0.249880,0,0);-ms-transform:matrix(0.145950,-0.004524,0.007746,0.249880,0,0);-webkit-transform:matrix(0.145950,-0.004524,0.007746,0.249880,0,0);}
.m38_c00204{transform:matrix(0.151592,-0.004699,0.007746,0.249880,0,0);-ms-transform:matrix(0.151592,-0.004699,0.007746,0.249880,0,0);-webkit-transform:matrix(0.151592,-0.004699,0.007746,0.249880,0,0);}
.m44_c00204{transform:matrix(0.153221,-0.004750,0.007746,0.249880,0,0);-ms-transform:matrix(0.153221,-0.004750,0.007746,0.249880,0,0);-webkit-transform:matrix(0.153221,-0.004750,0.007746,0.249880,0,0);}
.m14_c00204{transform:matrix(0.153261,-0.004751,0.007746,0.249880,0,0);-ms-transform:matrix(0.153261,-0.004751,0.007746,0.249880,0,0);-webkit-transform:matrix(0.153261,-0.004751,0.007746,0.249880,0,0);}
.m13_c00204{transform:matrix(0.153426,-0.004756,0.007746,0.249880,0,0);-ms-transform:matrix(0.153426,-0.004756,0.007746,0.249880,0,0);-webkit-transform:matrix(0.153426,-0.004756,0.007746,0.249880,0,0);}
.m75_c00204{transform:matrix(0.154441,-0.004788,0.007746,0.249880,0,0);-ms-transform:matrix(0.154441,-0.004788,0.007746,0.249880,0,0);-webkit-transform:matrix(0.154441,-0.004788,0.007746,0.249880,0,0);}
.m1a_c00204{transform:matrix(0.154521,-0.004790,0.007746,0.249880,0,0);-ms-transform:matrix(0.154521,-0.004790,0.007746,0.249880,0,0);-webkit-transform:matrix(0.154521,-0.004790,0.007746,0.249880,0,0);}
.mab_c00204{transform:matrix(0.154786,-0.004798,0.007746,0.249880,0,0);-ms-transform:matrix(0.154786,-0.004798,0.007746,0.249880,0,0);-webkit-transform:matrix(0.154786,-0.004798,0.007746,0.249880,0,0);}
.ma3_c00204{transform:matrix(0.154926,-0.004803,0.007746,0.249880,0,0);-ms-transform:matrix(0.154926,-0.004803,0.007746,0.249880,0,0);-webkit-transform:matrix(0.154926,-0.004803,0.007746,0.249880,0,0);}
.m16_c00204{transform:matrix(0.157384,-0.004879,0.007746,0.249880,0,0);-ms-transform:matrix(0.157384,-0.004879,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157384,-0.004879,0.007746,0.249880,0,0);}
.m19_c00204{transform:matrix(0.157704,-0.004889,0.007746,0.249880,0,0);-ms-transform:matrix(0.157704,-0.004889,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157704,-0.004889,0.007746,0.249880,0,0);}
.m2e_c00204{transform:matrix(0.159109,-0.004932,0.007746,0.249880,0,0);-ms-transform:matrix(0.159109,-0.004932,0.007746,0.249880,0,0);-webkit-transform:matrix(0.159109,-0.004932,0.007746,0.249880,0,0);}
.mf_c00204{transform:matrix(0.161687,-0.005012,0.007746,0.249880,0,0);-ms-transform:matrix(0.161687,-0.005012,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161687,-0.005012,0.007746,0.249880,0,0);}
.m88_c00204{transform:matrix(0.161972,-0.005021,0.007746,0.249880,0,0);-ms-transform:matrix(0.161972,-0.005021,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161972,-0.005021,0.007746,0.249880,0,0);}
.m87_c00204{transform:matrix(0.164316,-0.005094,0.007746,0.249880,0,0);-ms-transform:matrix(0.164316,-0.005094,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164316,-0.005094,0.007746,0.249880,0,0);}
.m2a_c00204{transform:matrix(0.165241,-0.005122,0.007746,0.249880,0,0);-ms-transform:matrix(0.165241,-0.005122,0.007746,0.249880,0,0);-webkit-transform:matrix(0.165241,-0.005122,0.007746,0.249880,0,0);}
.m5c_c00204{transform:matrix(0.165570,-0.005133,0.007746,0.249880,0,0);-ms-transform:matrix(0.165570,-0.005133,0.007746,0.249880,0,0);-webkit-transform:matrix(0.165570,-0.005133,0.007746,0.249880,0,0);}
.m7e_c00204{transform:matrix(0.166095,-0.005149,0.007746,0.249880,0,0);-ms-transform:matrix(0.166095,-0.005149,0.007746,0.249880,0,0);-webkit-transform:matrix(0.166095,-0.005149,0.007746,0.249880,0,0);}
.mb9_c00204{transform:matrix(0.166480,-0.005161,0.007746,0.249880,0,0);-ms-transform:matrix(0.166480,-0.005161,0.007746,0.249880,0,0);-webkit-transform:matrix(0.166480,-0.005161,0.007746,0.249880,0,0);}
.m76_c00204{transform:matrix(0.166875,-0.005173,0.007746,0.249880,0,0);-ms-transform:matrix(0.166875,-0.005173,0.007746,0.249880,0,0);-webkit-transform:matrix(0.166875,-0.005173,0.007746,0.249880,0,0);}
.ma1_c00204{transform:matrix(0.167475,-0.005192,0.007746,0.249880,0,0);-ms-transform:matrix(0.167475,-0.005192,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167475,-0.005192,0.007746,0.249880,0,0);}
.m7b_c00204{transform:matrix(0.167644,-0.005197,0.007746,0.249880,0,0);-ms-transform:matrix(0.167644,-0.005197,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167644,-0.005197,0.007746,0.249880,0,0);}
.me5_c00204{transform:matrix(0.167727,-0.004025,0.005998,0.249928,0,0);-ms-transform:matrix(0.167727,-0.004025,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167727,-0.004025,0.005998,0.249928,0,0);}
.mc6_c00204{transform:matrix(0.168616,-0.004047,0.005998,0.249928,0,0);-ms-transform:matrix(0.168616,-0.004047,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168616,-0.004047,0.005998,0.249928,0,0);}
.mac_c00204{transform:matrix(0.168634,-0.005228,0.007746,0.249880,0,0);-ms-transform:matrix(0.168634,-0.005228,0.007746,0.249880,0,0);-webkit-transform:matrix(0.168634,-0.005228,0.007746,0.249880,0,0);}
.mb4_c00204{transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);-ms-transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);}
.m35_c00204{transform:matrix(0.170248,-0.005278,0.007746,0.249880,0,0);-ms-transform:matrix(0.170248,-0.005278,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170248,-0.005278,0.007746,0.249880,0,0);}
.mc_c00204{transform:matrix(0.170468,-0.005285,0.007746,0.249880,0,0);-ms-transform:matrix(0.170468,-0.005285,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170468,-0.005285,0.007746,0.249880,0,0);}
.m57_c00204{transform:matrix(0.170638,-0.005290,0.007746,0.249880,0,0);-ms-transform:matrix(0.170638,-0.005290,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170638,-0.005290,0.007746,0.249880,0,0);}
.m26_c00204{transform:matrix(0.170823,-0.005296,0.007746,0.249880,0,0);-ms-transform:matrix(0.170823,-0.005296,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170823,-0.005296,0.007746,0.249880,0,0);}
.m74_c00204{transform:matrix(0.171473,-0.005316,0.007746,0.249880,0,0);-ms-transform:matrix(0.171473,-0.005316,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171473,-0.005316,0.007746,0.249880,0,0);}
.m85_c00204{transform:matrix(0.171643,-0.005321,0.007746,0.249880,0,0);-ms-transform:matrix(0.171643,-0.005321,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171643,-0.005321,0.007746,0.249880,0,0);}
.m4c_c00204{transform:matrix(0.172732,-0.005355,0.007746,0.249880,0,0);-ms-transform:matrix(0.172732,-0.005355,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172732,-0.005355,0.007746,0.249880,0,0);}
.m61_c00204{transform:matrix(0.173017,-0.005364,0.007746,0.249880,0,0);-ms-transform:matrix(0.173017,-0.005364,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173017,-0.005364,0.007746,0.249880,0,0);}
.ma0_c00204{transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);-ms-transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);}
.m6c_c00204{transform:matrix(0.173732,-0.005386,0.007746,0.249880,0,0);-ms-transform:matrix(0.173732,-0.005386,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173732,-0.005386,0.007746,0.249880,0,0);}
.mea_c00204{transform:matrix(0.174155,-0.004180,0.005998,0.249928,0,0);-ms-transform:matrix(0.174155,-0.004180,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174155,-0.004180,0.005998,0.249928,0,0);}
.m1b_c00204{transform:matrix(0.174206,-0.005400,0.007746,0.249880,0,0);-ms-transform:matrix(0.174206,-0.005400,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174206,-0.005400,0.007746,0.249880,0,0);}
.m9_c00204{transform:matrix(0.175096,-0.005428,0.007746,0.249880,0,0);-ms-transform:matrix(0.175096,-0.005428,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175096,-0.005428,0.007746,0.249880,0,0);}
.maa_c00204{transform:matrix(0.175146,-0.005430,0.007746,0.249880,0,0);-ms-transform:matrix(0.175146,-0.005430,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175146,-0.005430,0.007746,0.249880,0,0);}
.mc8_c00204{transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);-ms-transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);}
.m99_c00204{transform:matrix(0.176020,-0.005457,0.007746,0.249880,0,0);-ms-transform:matrix(0.176020,-0.005457,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176020,-0.005457,0.007746,0.249880,0,0);}
.mc4_c00204{transform:matrix(0.176474,-0.004235,0.005998,0.249928,0,0);-ms-transform:matrix(0.176474,-0.004235,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176474,-0.004235,0.005998,0.249928,0,0);}
.m5a_c00204{transform:matrix(0.177080,-0.005489,0.007746,0.249880,0,0);-ms-transform:matrix(0.177080,-0.005489,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177080,-0.005489,0.007746,0.249880,0,0);}
.m24_c00204{transform:matrix(0.177245,-0.005495,0.007746,0.249880,0,0);-ms-transform:matrix(0.177245,-0.005495,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177245,-0.005495,0.007746,0.249880,0,0);}
.m56_c00204{transform:matrix(0.177675,-0.005508,0.007746,0.249880,0,0);-ms-transform:matrix(0.177675,-0.005508,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177675,-0.005508,0.007746,0.249880,0,0);}
.ma2_c00204{transform:matrix(0.177680,-0.005508,0.007746,0.249880,0,0);-ms-transform:matrix(0.177680,-0.005508,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177680,-0.005508,0.007746,0.249880,0,0);}
.m46_c00204{transform:matrix(0.178479,-0.005533,0.007746,0.249880,0,0);-ms-transform:matrix(0.178479,-0.005533,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178479,-0.005533,0.007746,0.249880,0,0);}
.m30_c00204{transform:matrix(0.178804,-0.005543,0.007746,0.249880,0,0);-ms-transform:matrix(0.178804,-0.005543,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178804,-0.005543,0.007746,0.249880,0,0);}
.m70_c00204{transform:matrix(0.178994,-0.005549,0.007746,0.249880,0,0);-ms-transform:matrix(0.178994,-0.005549,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178994,-0.005549,0.007746,0.249880,0,0);}
.me4_c00204{transform:matrix(0.179043,-0.004297,0.005998,0.249928,0,0);-ms-transform:matrix(0.179043,-0.004297,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179043,-0.004297,0.005998,0.249928,0,0);}
.m52_c00204{transform:matrix(0.179239,-0.005556,0.007746,0.249880,0,0);-ms-transform:matrix(0.179239,-0.005556,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179239,-0.005556,0.007746,0.249880,0,0);}
.m60_c00204{transform:matrix(0.180103,-0.005583,0.007746,0.249880,0,0);-ms-transform:matrix(0.180103,-0.005583,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180103,-0.005583,0.007746,0.249880,0,0);}
.m9a_c00204{transform:matrix(0.180163,-0.005585,0.007746,0.249880,0,0);-ms-transform:matrix(0.180163,-0.005585,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180163,-0.005585,0.007746,0.249880,0,0);}
.mef_c00204{transform:matrix(0.180308,-0.004327,0.005998,0.249928,0,0);-ms-transform:matrix(0.180308,-0.004327,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180308,-0.004327,0.005998,0.249928,0,0);}
.mf1_c00204{transform:matrix(0.180623,-0.004335,0.005998,0.249928,0,0);-ms-transform:matrix(0.180623,-0.004335,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180623,-0.004335,0.005998,0.249928,0,0);}
.m43_c00204{transform:matrix(0.180813,-0.005605,0.007746,0.249880,0,0);-ms-transform:matrix(0.180813,-0.005605,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180813,-0.005605,0.007746,0.249880,0,0);}
.m6d_c00204{transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);-ms-transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);}
.m89_c00204{transform:matrix(0.182063,-0.005644,0.007746,0.249880,0,0);-ms-transform:matrix(0.182063,-0.005644,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182063,-0.005644,0.007746,0.249880,0,0);}
.m1_c00204{transform:matrix(0.182113,-0.005645,0.007746,0.249880,0,0);-ms-transform:matrix(0.182113,-0.005645,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182113,-0.005645,0.007746,0.249880,0,0);}
.mb5_c00204{transform:matrix(0.182177,-0.005648,0.007746,0.249880,0,0);-ms-transform:matrix(0.182177,-0.005648,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182177,-0.005648,0.007746,0.249880,0,0);}
.md0_c00204{transform:matrix(0.182837,-0.004388,0.005998,0.249928,0,0);-ms-transform:matrix(0.182837,-0.004388,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182837,-0.004388,0.005998,0.249928,0,0);}
.mec_c00204{transform:matrix(0.182997,-0.004392,0.005998,0.249928,0,0);-ms-transform:matrix(0.182997,-0.004392,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182997,-0.004392,0.005998,0.249928,0,0);}
.m4b_c00204{transform:matrix(0.183977,-0.005703,0.007746,0.249880,0,0);-ms-transform:matrix(0.183977,-0.005703,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183977,-0.005703,0.007746,0.249880,0,0);}
.m5b_c00204{transform:matrix(0.184017,-0.005705,0.007746,0.249880,0,0);-ms-transform:matrix(0.184017,-0.005705,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184017,-0.005705,0.007746,0.249880,0,0);}
.m62_c00204{transform:matrix(0.184756,-0.005727,0.007746,0.249880,0,0);-ms-transform:matrix(0.184756,-0.005727,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184756,-0.005727,0.007746,0.249880,0,0);}
.m17_c00204{transform:matrix(0.185081,-0.005738,0.007746,0.249880,0,0);-ms-transform:matrix(0.185081,-0.005738,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185081,-0.005738,0.007746,0.249880,0,0);}
.md3_c00204{transform:matrix(0.185192,-0.004445,0.005998,0.249928,0,0);-ms-transform:matrix(0.185192,-0.004445,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185192,-0.004445,0.005998,0.249928,0,0);}
.m9f_c00204{transform:matrix(0.185971,-0.005765,0.007746,0.249880,0,0);-ms-transform:matrix(0.185971,-0.005765,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185971,-0.005765,0.007746,0.249880,0,0);}
.mf3_c00204{transform:matrix(0.186566,-0.004478,0.005998,0.249928,0,0);-ms-transform:matrix(0.186566,-0.004478,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186566,-0.004478,0.005998,0.249928,0,0);}
.m2d_c00204{transform:matrix(0.186990,-0.005797,0.007746,0.249880,0,0);-ms-transform:matrix(0.186990,-0.005797,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186990,-0.005797,0.007746,0.249880,0,0);}
.m3f_c00204{transform:matrix(0.187155,-0.005802,0.007746,0.249880,0,0);-ms-transform:matrix(0.187155,-0.005802,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187155,-0.005802,0.007746,0.249880,0,0);}
.m3e_c00204{transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);-ms-transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);}
.me2_c00204{transform:matrix(0.187391,-0.004497,0.005998,0.249928,0,0);-ms-transform:matrix(0.187391,-0.004497,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187391,-0.004497,0.005998,0.249928,0,0);}
.m5f_c00204{transform:matrix(0.187525,-0.005813,0.007746,0.249880,0,0);-ms-transform:matrix(0.187525,-0.005813,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187525,-0.005813,0.007746,0.249880,0,0);}
.m7f_c00204{transform:matrix(0.188125,-0.005832,0.007746,0.249880,0,0);-ms-transform:matrix(0.188125,-0.005832,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188125,-0.005832,0.007746,0.249880,0,0);}
.m73_c00204{transform:matrix(0.189819,-0.005884,0.007746,0.249880,0,0);-ms-transform:matrix(0.189819,-0.005884,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189819,-0.005884,0.007746,0.249880,0,0);}
.me8_c00204{transform:matrix(0.189840,-0.004556,0.005998,0.249928,0,0);-ms-transform:matrix(0.189840,-0.004556,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189840,-0.004556,0.005998,0.249928,0,0);}
.m2b_c00204{transform:matrix(0.190014,-0.005890,0.007746,0.249880,0,0);-ms-transform:matrix(0.190014,-0.005890,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190014,-0.005890,0.007746,0.249880,0,0);}
.m47_c00204{transform:matrix(0.190099,-0.005893,0.007746,0.249880,0,0);-ms-transform:matrix(0.190099,-0.005893,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190099,-0.005893,0.007746,0.249880,0,0);}
.m9d_c00204{transform:matrix(0.190229,-0.005897,0.007746,0.249880,0,0);-ms-transform:matrix(0.190229,-0.005897,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190229,-0.005897,0.007746,0.249880,0,0);}
.m97_c00204{transform:matrix(0.190558,-0.005907,0.007746,0.249880,0,0);-ms-transform:matrix(0.190558,-0.005907,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190558,-0.005907,0.007746,0.249880,0,0);}
.m8f_c00204{transform:matrix(0.190973,-0.005920,0.007746,0.249880,0,0);-ms-transform:matrix(0.190973,-0.005920,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190973,-0.005920,0.007746,0.249880,0,0);}
.ma4_c00204{transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);-ms-transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);}
.m86_c00204{transform:matrix(0.191058,-0.005923,0.007746,0.249880,0,0);-ms-transform:matrix(0.191058,-0.005923,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191058,-0.005923,0.007746,0.249880,0,0);}
.mb3_c00204{transform:matrix(0.191218,-0.005928,0.007746,0.249880,0,0);-ms-transform:matrix(0.191218,-0.005928,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191218,-0.005928,0.007746,0.249880,0,0);}
.mdc_c00204{transform:matrix(0.191610,-0.004599,0.005998,0.249928,0,0);-ms-transform:matrix(0.191610,-0.004599,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191610,-0.004599,0.005998,0.249928,0,0);}
.m9b_c00204{transform:matrix(0.192662,-0.005973,0.007746,0.249880,0,0);-ms-transform:matrix(0.192662,-0.005973,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192662,-0.005973,0.007746,0.249880,0,0);}
.m1f_c00204{transform:matrix(0.192687,-0.005973,0.007746,0.249880,0,0);-ms-transform:matrix(0.192687,-0.005973,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192687,-0.005973,0.007746,0.249880,0,0);}
.m95_c00204{transform:matrix(0.192792,-0.005977,0.007746,0.249880,0,0);-ms-transform:matrix(0.192792,-0.005977,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192792,-0.005977,0.007746,0.249880,0,0);}
.m8a_c00204{transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);-ms-transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);}
.m1e_c00204{transform:matrix(0.193577,-0.006001,0.007746,0.249880,0,0);-ms-transform:matrix(0.193577,-0.006001,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193577,-0.006001,0.007746,0.249880,0,0);}
.m2f_c00204{transform:matrix(0.193692,-0.006004,0.007746,0.249880,0,0);-ms-transform:matrix(0.193692,-0.006004,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193692,-0.006004,0.007746,0.249880,0,0);}
.m7a_c00204{transform:matrix(0.193782,-0.006007,0.007746,0.249880,0,0);-ms-transform:matrix(0.193782,-0.006007,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193782,-0.006007,0.007746,0.249880,0,0);}
.mad_c00204{transform:matrix(0.194042,-0.006015,0.007746,0.249880,0,0);-ms-transform:matrix(0.194042,-0.006015,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194042,-0.006015,0.007746,0.249880,0,0);}
.m4f_c00204{transform:matrix(0.194117,-0.006018,0.007746,0.249880,0,0);-ms-transform:matrix(0.194117,-0.006018,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194117,-0.006018,0.007746,0.249880,0,0);}
.m25_c00204{transform:matrix(0.194641,-0.006034,0.007746,0.249880,0,0);-ms-transform:matrix(0.194641,-0.006034,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194641,-0.006034,0.007746,0.249880,0,0);}
.m7d_c00204{transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);-ms-transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);}
.m72_c00204{transform:matrix(0.195536,-0.006062,0.007746,0.249880,0,0);-ms-transform:matrix(0.195536,-0.006062,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195536,-0.006062,0.007746,0.249880,0,0);}
.mb0_c00204{transform:matrix(0.196436,-0.006090,0.007746,0.249880,0,0);-ms-transform:matrix(0.196436,-0.006090,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196436,-0.006090,0.007746,0.249880,0,0);}
.mb1_c00204{transform:matrix(0.196860,-0.006103,0.007746,0.249880,0,0);-ms-transform:matrix(0.196860,-0.006103,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196860,-0.006103,0.007746,0.249880,0,0);}
.m4_c00204{transform:matrix(0.197130,-0.006111,0.007746,0.249880,0,0);-ms-transform:matrix(0.197130,-0.006111,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197130,-0.006111,0.007746,0.249880,0,0);}
.ma8_c00204{transform:matrix(0.197145,-0.006112,0.007746,0.249880,0,0);-ms-transform:matrix(0.197145,-0.006112,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197145,-0.006112,0.007746,0.249880,0,0);}
.m9e_c00204{transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);-ms-transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);}
.m98_c00204{transform:matrix(0.197540,-0.006124,0.007746,0.249880,0,0);-ms-transform:matrix(0.197540,-0.006124,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197540,-0.006124,0.007746,0.249880,0,0);}
.m31_c00204{transform:matrix(0.197735,-0.006130,0.007746,0.249880,0,0);-ms-transform:matrix(0.197735,-0.006130,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197735,-0.006130,0.007746,0.249880,0,0);}
.m4a_c00204{transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);-ms-transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);}
.m4d_c00204{transform:matrix(0.197885,-0.006134,0.007746,0.249880,0,0);-ms-transform:matrix(0.197885,-0.006134,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197885,-0.006134,0.007746,0.249880,0,0);}
.m55_c00204{transform:matrix(0.198055,-0.006140,0.007746,0.249880,0,0);-ms-transform:matrix(0.198055,-0.006140,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198055,-0.006140,0.007746,0.249880,0,0);}
.m41_c00204{transform:matrix(0.198135,-0.006142,0.007746,0.249880,0,0);-ms-transform:matrix(0.198135,-0.006142,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198135,-0.006142,0.007746,0.249880,0,0);}
.m28_c00204{transform:matrix(0.198265,-0.006146,0.007746,0.249880,0,0);-ms-transform:matrix(0.198265,-0.006146,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198265,-0.006146,0.007746,0.249880,0,0);}
.mdd_c00204{transform:matrix(0.198348,-0.004760,0.005998,0.249928,0,0);-ms-transform:matrix(0.198348,-0.004760,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198348,-0.004760,0.005998,0.249928,0,0);}
.mae_c00204{transform:matrix(0.198560,-0.006155,0.007746,0.249880,0,0);-ms-transform:matrix(0.198560,-0.006155,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198560,-0.006155,0.007746,0.249880,0,0);}
.mcf_c00204{transform:matrix(0.198623,-0.004767,0.005998,0.249928,0,0);-ms-transform:matrix(0.198623,-0.004767,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198623,-0.004767,0.005998,0.249928,0,0);}
.mba_c00204{transform:matrix(0.198939,-0.006167,0.007746,0.249880,0,0);-ms-transform:matrix(0.198939,-0.006167,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198939,-0.006167,0.007746,0.249880,0,0);}
.m80_c00204{transform:matrix(0.198989,-0.006169,0.007746,0.249880,0,0);-ms-transform:matrix(0.198989,-0.006169,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198989,-0.006169,0.007746,0.249880,0,0);}
.m45_c00204{transform:matrix(0.199674,-0.006190,0.007746,0.249880,0,0);-ms-transform:matrix(0.199674,-0.006190,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199674,-0.006190,0.007746,0.249880,0,0);}
.ma_c00204{transform:matrix(0.200898,-0.006228,0.007746,0.249880,0,0);-ms-transform:matrix(0.200898,-0.006228,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200898,-0.006228,0.007746,0.249880,0,0);}
.m40_c00204{transform:matrix(0.200908,-0.006228,0.007746,0.249880,0,0);-ms-transform:matrix(0.200908,-0.006228,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200908,-0.006228,0.007746,0.249880,0,0);}
.m42_c00204{transform:matrix(0.200933,-0.006229,0.007746,0.249880,0,0);-ms-transform:matrix(0.200933,-0.006229,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200933,-0.006229,0.007746,0.249880,0,0);}
.m15_c00204{transform:matrix(0.201243,-0.006239,0.007746,0.249880,0,0);-ms-transform:matrix(0.201243,-0.006239,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201243,-0.006239,0.007746,0.249880,0,0);}
.mb_c00204{transform:matrix(0.201853,-0.006257,0.007746,0.249880,0,0);-ms-transform:matrix(0.201853,-0.006257,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201853,-0.006257,0.007746,0.249880,0,0);}
.ma5_c00204{transform:matrix(0.201908,-0.006259,0.007746,0.249880,0,0);-ms-transform:matrix(0.201908,-0.006259,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201908,-0.006259,0.007746,0.249880,0,0);}
.m2_c00204{transform:matrix(0.202298,-0.006271,0.007746,0.249880,0,0);-ms-transform:matrix(0.202298,-0.006271,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202298,-0.006271,0.007746,0.249880,0,0);}
.m84_c00204{transform:matrix(0.202613,-0.006281,0.007746,0.249880,0,0);-ms-transform:matrix(0.202613,-0.006281,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202613,-0.006281,0.007746,0.249880,0,0);}
.mf0_c00204{transform:matrix(0.202802,-0.004867,0.005998,0.249928,0,0);-ms-transform:matrix(0.202802,-0.004867,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202802,-0.004867,0.005998,0.249928,0,0);}
.m82_c00204{transform:matrix(0.202898,-0.006290,0.007746,0.249880,0,0);-ms-transform:matrix(0.202898,-0.006290,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202898,-0.006290,0.007746,0.249880,0,0);}
.mc7_c00204{transform:matrix(0.203321,-0.004880,0.005998,0.249928,0,0);-ms-transform:matrix(0.203321,-0.004880,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203321,-0.004880,0.005998,0.249928,0,0);}
.m6_c00204{transform:matrix(0.204462,-0.006338,0.007746,0.249880,0,0);-ms-transform:matrix(0.204462,-0.006338,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204462,-0.006338,0.007746,0.249880,0,0);}
.m78_c00204{transform:matrix(0.204517,-0.006340,0.007746,0.249880,0,0);-ms-transform:matrix(0.204517,-0.006340,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204517,-0.006340,0.007746,0.249880,0,0);}
.m8d_c00204{transform:matrix(0.204547,-0.006341,0.007746,0.249880,0,0);-ms-transform:matrix(0.204547,-0.006341,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204547,-0.006341,0.007746,0.249880,0,0);}
.m96_c00204{transform:matrix(0.204597,-0.006342,0.007746,0.249880,0,0);-ms-transform:matrix(0.204597,-0.006342,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204597,-0.006342,0.007746,0.249880,0,0);}
.m63_c00204{transform:matrix(0.204687,-0.006345,0.007746,0.249880,0,0);-ms-transform:matrix(0.204687,-0.006345,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204687,-0.006345,0.007746,0.249880,0,0);}
.m77_c00204{transform:matrix(0.204807,-0.006349,0.007746,0.249880,0,0);-ms-transform:matrix(0.204807,-0.006349,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204807,-0.006349,0.007746,0.249880,0,0);}
.m3d_c00204{transform:matrix(0.205436,-0.006369,0.007746,0.249880,0,0);-ms-transform:matrix(0.205436,-0.006369,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205436,-0.006369,0.007746,0.249880,0,0);}
.m18_c00204{transform:matrix(0.205816,-0.006380,0.007746,0.249880,0,0);-ms-transform:matrix(0.205816,-0.006380,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205816,-0.006380,0.007746,0.249880,0,0);}
.m6a_c00204{transform:matrix(0.206056,-0.006388,0.007746,0.249880,0,0);-ms-transform:matrix(0.206056,-0.006388,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206056,-0.006388,0.007746,0.249880,0,0);}
.m0_c00204{transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);}
.m50_c00204{transform:matrix(0.208230,-0.006455,0.007746,0.249880,0,0);-ms-transform:matrix(0.208230,-0.006455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208230,-0.006455,0.007746,0.249880,0,0);}
.mf5_c00204{transform:matrix(0.208275,-0.004999,0.005998,0.249928,0,0);-ms-transform:matrix(0.208275,-0.004999,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208275,-0.004999,0.005998,0.249928,0,0);}
.mc5_c00204{transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);-ms-transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);}
.mc9_c00204{transform:matrix(0.208795,-0.005011,0.005998,0.249928,0,0);-ms-transform:matrix(0.208795,-0.005011,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208795,-0.005011,0.005998,0.249928,0,0);}
.m79_c00204{transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);-ms-transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);}
.m29_c00204{transform:matrix(0.209095,-0.006482,0.007746,0.249880,0,0);-ms-transform:matrix(0.209095,-0.006482,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209095,-0.006482,0.007746,0.249880,0,0);}
.m8b_c00204{transform:matrix(0.209509,-0.006495,0.007746,0.249880,0,0);-ms-transform:matrix(0.209509,-0.006495,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209509,-0.006495,0.007746,0.249880,0,0);}
.m49_c00204{transform:matrix(0.209624,-0.006498,0.007746,0.249880,0,0);-ms-transform:matrix(0.209624,-0.006498,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209624,-0.006498,0.007746,0.249880,0,0);}
.me1_c00204{transform:matrix(0.210459,-0.005051,0.005998,0.249928,0,0);-ms-transform:matrix(0.210459,-0.005051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210459,-0.005051,0.005998,0.249928,0,0);}
.m51_c00204{transform:matrix(0.211279,-0.006550,0.007746,0.249880,0,0);-ms-transform:matrix(0.211279,-0.006550,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211279,-0.006550,0.007746,0.249880,0,0);}
.mbe_c00204{transform:matrix(0.211584,-0.005078,0.005998,0.249928,0,0);-ms-transform:matrix(0.211584,-0.005078,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211584,-0.005078,0.005998,0.249928,0,0);}
.m8_c00204{transform:matrix(0.211693,-0.006562,0.007746,0.249880,0,0);-ms-transform:matrix(0.211693,-0.006562,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211693,-0.006562,0.007746,0.249880,0,0);}
.m11_c00204{transform:matrix(0.211768,-0.006565,0.007746,0.249880,0,0);-ms-transform:matrix(0.211768,-0.006565,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211768,-0.006565,0.007746,0.249880,0,0);}
.meb_c00204{transform:matrix(0.211879,-0.005085,0.005998,0.249928,0,0);-ms-transform:matrix(0.211879,-0.005085,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211879,-0.005085,0.005998,0.249928,0,0);}
.m39_c00204{transform:matrix(0.212823,-0.006598,0.007746,0.249880,0,0);-ms-transform:matrix(0.212823,-0.006598,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212823,-0.006598,0.007746,0.249880,0,0);}
.m93_c00204{transform:matrix(0.213198,-0.006609,0.007746,0.249880,0,0);-ms-transform:matrix(0.213198,-0.006609,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213198,-0.006609,0.007746,0.249880,0,0);}
.mf2_c00204{transform:matrix(0.213419,-0.005122,0.005998,0.249928,0,0);-ms-transform:matrix(0.213419,-0.005122,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213419,-0.005122,0.005998,0.249928,0,0);}
.m4e_c00204{transform:matrix(0.214557,-0.006651,0.007746,0.249880,0,0);-ms-transform:matrix(0.214557,-0.006651,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214557,-0.006651,0.007746,0.249880,0,0);}
.m71_c00204{transform:matrix(0.214657,-0.006654,0.007746,0.249880,0,0);-ms-transform:matrix(0.214657,-0.006654,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214657,-0.006654,0.007746,0.249880,0,0);}
.m3b_c00204{transform:matrix(0.214832,-0.006660,0.007746,0.249880,0,0);-ms-transform:matrix(0.214832,-0.006660,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214832,-0.006660,0.007746,0.249880,0,0);}
.m83_c00204{transform:matrix(0.214897,-0.006662,0.007746,0.249880,0,0);-ms-transform:matrix(0.214897,-0.006662,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214897,-0.006662,0.007746,0.249880,0,0);}
.mb2_c00204{transform:matrix(0.215337,-0.006675,0.007746,0.249880,0,0);-ms-transform:matrix(0.215337,-0.006675,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215337,-0.006675,0.007746,0.249880,0,0);}
.m10_c00204{transform:matrix(0.215531,-0.006681,0.007746,0.249880,0,0);-ms-transform:matrix(0.215531,-0.006681,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215531,-0.006681,0.007746,0.249880,0,0);}
.mf4_c00204{transform:matrix(0.215883,-0.005181,0.005998,0.249928,0,0);-ms-transform:matrix(0.215883,-0.005181,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215883,-0.005181,0.005998,0.249928,0,0);}
.m7_c00204{transform:matrix(0.216476,-0.006711,0.007746,0.249880,0,0);-ms-transform:matrix(0.216476,-0.006711,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216476,-0.006711,0.007746,0.249880,0,0);}
.m81_c00204{transform:matrix(0.216876,-0.006723,0.007746,0.249880,0,0);-ms-transform:matrix(0.216876,-0.006723,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216876,-0.006723,0.007746,0.249880,0,0);}
.m67_c00204{transform:matrix(0.216986,-0.006727,0.007746,0.249880,0,0);-ms-transform:matrix(0.216986,-0.006727,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216986,-0.006727,0.007746,0.249880,0,0);}
.m33_c00204{transform:matrix(0.217271,-0.006735,0.007746,0.249880,0,0);-ms-transform:matrix(0.217271,-0.006735,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217271,-0.006735,0.007746,0.249880,0,0);}
.m5e_c00204{transform:matrix(0.217356,-0.006738,0.007746,0.249880,0,0);-ms-transform:matrix(0.217356,-0.006738,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217356,-0.006738,0.007746,0.249880,0,0);}
.m48_c00204{transform:matrix(0.218685,-0.006779,0.007746,0.249880,0,0);-ms-transform:matrix(0.218685,-0.006779,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218685,-0.006779,0.007746,0.249880,0,0);}
.mbb_c00204{transform:matrix(0.218865,-0.006785,0.007746,0.249880,0,0);-ms-transform:matrix(0.218865,-0.006785,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218865,-0.006785,0.007746,0.249880,0,0);}
.ma6_c00204{transform:matrix(0.218975,-0.006788,0.007746,0.249880,0,0);-ms-transform:matrix(0.218975,-0.006788,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218975,-0.006788,0.007746,0.249880,0,0);}
.m69_c00204{transform:matrix(0.221234,-0.006858,0.007746,0.249880,0,0);-ms-transform:matrix(0.221234,-0.006858,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221234,-0.006858,0.007746,0.249880,0,0);}
.m94_c00204{transform:matrix(0.221504,-0.006867,0.007746,0.249880,0,0);-ms-transform:matrix(0.221504,-0.006867,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221504,-0.006867,0.007746,0.249880,0,0);}
.m92_c00204{transform:matrix(0.221863,-0.006878,0.007746,0.249880,0,0);-ms-transform:matrix(0.221863,-0.006878,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221863,-0.006878,0.007746,0.249880,0,0);}
.m7c_c00204{transform:matrix(0.222098,-0.006885,0.007746,0.249880,0,0);-ms-transform:matrix(0.222098,-0.006885,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222098,-0.006885,0.007746,0.249880,0,0);}
.mb7_c00204{transform:matrix(0.222563,-0.006899,0.007746,0.249880,0,0);-ms-transform:matrix(0.222563,-0.006899,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222563,-0.006899,0.007746,0.249880,0,0);}
.md4_c00204{transform:matrix(0.223836,-0.005372,0.005998,0.249928,0,0);-ms-transform:matrix(0.223836,-0.005372,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223836,-0.005372,0.005998,0.249928,0,0);}
.m8c_c00204{transform:matrix(0.225956,-0.007005,0.007746,0.249880,0,0);-ms-transform:matrix(0.225956,-0.007005,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225956,-0.007005,0.007746,0.249880,0,0);}
.m27_c00204{transform:matrix(0.226316,-0.007016,0.007746,0.249880,0,0);-ms-transform:matrix(0.226316,-0.007016,0.007746,0.249880,0,0);-webkit-transform:matrix(0.226316,-0.007016,0.007746,0.249880,0,0);}
.m3a_c00204{transform:matrix(0.226476,-0.007021,0.007746,0.249880,0,0);-ms-transform:matrix(0.226476,-0.007021,0.007746,0.249880,0,0);-webkit-transform:matrix(0.226476,-0.007021,0.007746,0.249880,0,0);}
.m2c_c00204{transform:matrix(0.227891,-0.007065,0.007746,0.249880,0,0);-ms-transform:matrix(0.227891,-0.007065,0.007746,0.249880,0,0);-webkit-transform:matrix(0.227891,-0.007065,0.007746,0.249880,0,0);}
.me0_c00204{transform:matrix(0.228709,-0.005489,0.005998,0.249928,0,0);-ms-transform:matrix(0.228709,-0.005489,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228709,-0.005489,0.005998,0.249928,0,0);}
.m68_c00204{transform:matrix(0.228745,-0.007091,0.007746,0.249880,0,0);-ms-transform:matrix(0.228745,-0.007091,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228745,-0.007091,0.007746,0.249880,0,0);}
.m34_c00204{transform:matrix(0.228895,-0.007096,0.007746,0.249880,0,0);-ms-transform:matrix(0.228895,-0.007096,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228895,-0.007096,0.007746,0.249880,0,0);}
.md6_c00204{transform:matrix(0.229129,-0.005499,0.005998,0.249928,0,0);-ms-transform:matrix(0.229129,-0.005499,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229129,-0.005499,0.005998,0.249928,0,0);}
.m58_c00204{transform:matrix(0.230189,-0.007136,0.007746,0.249880,0,0);-ms-transform:matrix(0.230189,-0.007136,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230189,-0.007136,0.007746,0.249880,0,0);}
.m37_c00204{transform:matrix(0.230304,-0.007139,0.007746,0.249880,0,0);-ms-transform:matrix(0.230304,-0.007139,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230304,-0.007139,0.007746,0.249880,0,0);}
.m6e_c00204{transform:matrix(0.231834,-0.007187,0.007746,0.249880,0,0);-ms-transform:matrix(0.231834,-0.007187,0.007746,0.249880,0,0);-webkit-transform:matrix(0.231834,-0.007187,0.007746,0.249880,0,0);}
.m65_c00204{transform:matrix(0.233108,-0.007226,0.007746,0.249880,0,0);-ms-transform:matrix(0.233108,-0.007226,0.007746,0.249880,0,0);-webkit-transform:matrix(0.233108,-0.007226,0.007746,0.249880,0,0);}
.m53_c00204{transform:matrix(0.233388,-0.007235,0.007746,0.249880,0,0);-ms-transform:matrix(0.233388,-0.007235,0.007746,0.249880,0,0);-webkit-transform:matrix(0.233388,-0.007235,0.007746,0.249880,0,0);}
.m36_c00204{transform:matrix(0.234467,-0.007268,0.007746,0.249880,0,0);-ms-transform:matrix(0.234467,-0.007268,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234467,-0.007268,0.007746,0.249880,0,0);}
.m3_c00204{transform:matrix(0.234842,-0.007280,0.007746,0.249880,0,0);-ms-transform:matrix(0.234842,-0.007280,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234842,-0.007280,0.007746,0.249880,0,0);}
.mda_c00204{transform:matrix(0.235047,-0.005641,0.005998,0.249928,0,0);-ms-transform:matrix(0.235047,-0.005641,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235047,-0.005641,0.005998,0.249928,0,0);}
.m12_c00204{transform:matrix(0.235167,-0.007290,0.007746,0.249880,0,0);-ms-transform:matrix(0.235167,-0.007290,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235167,-0.007290,0.007746,0.249880,0,0);}
.m64_c00204{transform:matrix(0.235547,-0.007302,0.007746,0.249880,0,0);-ms-transform:matrix(0.235547,-0.007302,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235547,-0.007302,0.007746,0.249880,0,0);}
.m1d_c00204{transform:matrix(0.235967,-0.007315,0.007746,0.249880,0,0);-ms-transform:matrix(0.235967,-0.007315,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235967,-0.007315,0.007746,0.249880,0,0);}
.m66_c00204{transform:matrix(0.236047,-0.007317,0.007746,0.249880,0,0);-ms-transform:matrix(0.236047,-0.007317,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236047,-0.007317,0.007746,0.249880,0,0);}
.m59_c00204{transform:matrix(0.236966,-0.007346,0.007746,0.249880,0,0);-ms-transform:matrix(0.236966,-0.007346,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236966,-0.007346,0.007746,0.249880,0,0);}
.mbc_c00204{transform:matrix(0.237842,-0.005708,0.005998,0.249928,0,0);-ms-transform:matrix(0.237842,-0.005708,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237842,-0.005708,0.005998,0.249928,0,0);}
.me3_c00204{transform:matrix(0.237916,-0.005710,0.005998,0.249928,0,0);-ms-transform:matrix(0.237916,-0.005710,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237916,-0.005710,0.005998,0.249928,0,0);}
.m5_c00204{transform:matrix(0.238420,-0.007391,0.007746,0.249880,0,0);-ms-transform:matrix(0.238420,-0.007391,0.007746,0.249880,0,0);-webkit-transform:matrix(0.238420,-0.007391,0.007746,0.249880,0,0);}
.m32_c00204{transform:matrix(0.240474,-0.007455,0.007746,0.249880,0,0);-ms-transform:matrix(0.240474,-0.007455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.240474,-0.007455,0.007746,0.249880,0,0);}
.md_c00204{transform:matrix(0.242224,-0.007509,0.007746,0.249880,0,0);-ms-transform:matrix(0.242224,-0.007509,0.007746,0.249880,0,0);-webkit-transform:matrix(0.242224,-0.007509,0.007746,0.249880,0,0);}
.mb8_c00204{transform:matrix(0.244857,-0.007591,0.007746,0.249880,0,0);-ms-transform:matrix(0.244857,-0.007591,0.007746,0.249880,0,0);-webkit-transform:matrix(0.244857,-0.007591,0.007746,0.249880,0,0);}
.md5_c00204{transform:matrix(0.244879,-0.005877,0.005998,0.249928,0,0);-ms-transform:matrix(0.244879,-0.005877,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244879,-0.005877,0.005998,0.249928,0,0);}
.m5d_c00204{transform:matrix(0.244892,-0.007592,0.007746,0.249880,0,0);-ms-transform:matrix(0.244892,-0.007592,0.007746,0.249880,0,0);-webkit-transform:matrix(0.244892,-0.007592,0.007746,0.249880,0,0);}
.md7_c00204{transform:matrix(0.245894,-0.005901,0.005998,0.249928,0,0);-ms-transform:matrix(0.245894,-0.005901,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245894,-0.005901,0.005998,0.249928,0,0);}
.mdf_c00204{transform:matrix(0.247534,-0.005941,0.005998,0.249928,0,0);-ms-transform:matrix(0.247534,-0.005941,0.005998,0.249928,0,0);-webkit-transform:matrix(0.247534,-0.005941,0.005998,0.249928,0,0);}
.m3c_c00204{transform:matrix(0.248386,-0.007700,0.007746,0.249880,0,0);-ms-transform:matrix(0.248386,-0.007700,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248386,-0.007700,0.007746,0.249880,0,0);}
.mce_c00204{transform:matrix(0.249648,-0.005992,0.005998,0.249928,0,0);-ms-transform:matrix(0.249648,-0.005992,0.005998,0.249928,0,0);-webkit-transform:matrix(0.249648,-0.005992,0.005998,0.249928,0,0);}
.mcd_c00204{transform:matrix(0.251383,-0.006033,0.005998,0.249928,0,0);-ms-transform:matrix(0.251383,-0.006033,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251383,-0.006033,0.005998,0.249928,0,0);}
.m90_c00204{transform:matrix(0.252314,-0.007822,0.007746,0.249880,0,0);-ms-transform:matrix(0.252314,-0.007822,0.007746,0.249880,0,0);-webkit-transform:matrix(0.252314,-0.007822,0.007746,0.249880,0,0);}
.mbd_c00204{transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-ms-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);}
.me_c00204{transform:matrix(0.255427,-0.007918,0.007746,0.249880,0,0);-ms-transform:matrix(0.255427,-0.007918,0.007746,0.249880,0,0);-webkit-transform:matrix(0.255427,-0.007918,0.007746,0.249880,0,0);}
.mdb_c00204{transform:matrix(0.256321,-0.006152,0.005998,0.249928,0,0);-ms-transform:matrix(0.256321,-0.006152,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256321,-0.006152,0.005998,0.249928,0,0);}
.md2_c00204{transform:matrix(0.258351,-0.006200,0.005998,0.249928,0,0);-ms-transform:matrix(0.258351,-0.006200,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258351,-0.006200,0.005998,0.249928,0,0);}
.mc1_c00204{transform:matrix(0.259010,-0.006216,0.005998,0.249928,0,0);-ms-transform:matrix(0.259010,-0.006216,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259010,-0.006216,0.005998,0.249928,0,0);}
.md9_c00204{transform:matrix(0.262964,-0.006311,0.005998,0.249928,0,0);-ms-transform:matrix(0.262964,-0.006311,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262964,-0.006311,0.005998,0.249928,0,0);}
.m6b_c00204{transform:matrix(0.274833,-0.008520,0.007746,0.249880,0,0);-ms-transform:matrix(0.274833,-0.008520,0.007746,0.249880,0,0);-webkit-transform:matrix(0.274833,-0.008520,0.007746,0.249880,0,0);}
.mcc_c00204{transform:matrix(0.275706,-0.006617,0.005998,0.249928,0,0);-ms-transform:matrix(0.275706,-0.006617,0.005998,0.249928,0,0);-webkit-transform:matrix(0.275706,-0.006617,0.005998,0.249928,0,0);}
.m8e_c00204{transform:matrix(0.280000,-0.008680,0.007746,0.249880,0,0);-ms-transform:matrix(0.280000,-0.008680,0.007746,0.249880,0,0);-webkit-transform:matrix(0.280000,-0.008680,0.007746,0.249880,0,0);}
.me9_c00204{transform:matrix(0.282209,-0.006773,0.005998,0.249928,0,0);-ms-transform:matrix(0.282209,-0.006773,0.005998,0.249928,0,0);-webkit-transform:matrix(0.282209,-0.006773,0.005998,0.249928,0,0);}
.m54_c00204{transform:matrix(0.337493,-0.010462,0.007746,0.249880,0,0);-ms-transform:matrix(0.337493,-0.010462,0.007746,0.249880,0,0);-webkit-transform:matrix(0.337493,-0.010462,0.007746,0.249880,0,0);}
.me7_c00204{transform:matrix(0.341537,-0.008197,0.005998,0.249928,0,0);-ms-transform:matrix(0.341537,-0.008197,0.005998,0.249928,0,0);-webkit-transform:matrix(0.341537,-0.008197,0.005998,0.249928,0,0);}
.m22_c00204{transform:matrix(0.341926,-0.010600,0.007746,0.249880,0,0);-ms-transform:matrix(0.341926,-0.010600,0.007746,0.249880,0,0);-webkit-transform:matrix(0.341926,-0.010600,0.007746,0.249880,0,0);}
.ma7_c00204{transform:matrix(0.344669,-0.010685,0.007746,0.249880,0,0);-ms-transform:matrix(0.344669,-0.010685,0.007746,0.249880,0,0);-webkit-transform:matrix(0.344669,-0.010685,0.007746,0.249880,0,0);}
.ma9_c00204{transform:matrix(0.347203,-0.010763,0.007746,0.249880,0,0);-ms-transform:matrix(0.347203,-0.010763,0.007746,0.249880,0,0);-webkit-transform:matrix(0.347203,-0.010763,0.007746,0.249880,0,0);}
.m1c_c00204{transform:matrix(0.357288,-0.011076,0.007746,0.249880,0,0);-ms-transform:matrix(0.357288,-0.011076,0.007746,0.249880,0,0);-webkit-transform:matrix(0.357288,-0.011076,0.007746,0.249880,0,0);}
.m91_c00204{transform:matrix(0.363535,-0.011270,0.007746,0.249880,0,0);-ms-transform:matrix(0.363535,-0.011270,0.007746,0.249880,0,0);-webkit-transform:matrix(0.363535,-0.011270,0.007746,0.249880,0,0);}
.mcb_c00204{transform:matrix(0.371178,-0.008908,0.005998,0.249928,0,0);-ms-transform:matrix(0.371178,-0.008908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.371178,-0.008908,0.005998,0.249928,0,0);}
.mbf_c00204{transform:matrix(0.398810,-0.009571,0.005998,0.249928,0,0);-ms-transform:matrix(0.398810,-0.009571,0.005998,0.249928,0,0);-webkit-transform:matrix(0.398810,-0.009571,0.005998,0.249928,0,0);}
.mca_c00204{transform:matrix(0.437954,-0.010511,0.005998,0.249928,0,0);-ms-transform:matrix(0.437954,-0.010511,0.005998,0.249928,0,0);-webkit-transform:matrix(0.437954,-0.010511,0.005998,0.249928,0,0);}
.maf_c00204{transform:matrix(0.511239,-0.015848,0.007746,0.249880,0,0);-ms-transform:matrix(0.511239,-0.015848,0.007746,0.249880,0,0);-webkit-transform:matrix(0.511239,-0.015848,0.007746,0.249880,0,0);}
.me6_c00204{transform:matrix(0.549887,-0.013197,0.005998,0.249928,0,0);-ms-transform:matrix(0.549887,-0.013197,0.005998,0.249928,0,0);-webkit-transform:matrix(0.549887,-0.013197,0.005998,0.249928,0,0);}
.md1_c00204{transform:matrix(0.551291,-0.013231,0.005998,0.249928,0,0);-ms-transform:matrix(0.551291,-0.013231,0.005998,0.249928,0,0);-webkit-transform:matrix(0.551291,-0.013231,0.005998,0.249928,0,0);}
.mde_c00204{transform:matrix(0.573955,-0.013775,0.005998,0.249928,0,0);-ms-transform:matrix(0.573955,-0.013775,0.005998,0.249928,0,0);-webkit-transform:matrix(0.573955,-0.013775,0.005998,0.249928,0,0);}
.mb6_c00204{transform:matrix(0.692108,-0.021455,0.007746,0.249880,0,0);-ms-transform:matrix(0.692108,-0.021455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.692108,-0.021455,0.007746,0.249880,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:0.000000px;}
.fc0_c00204{color:transparent;}
.fs10_c00204{font-size:52.515118px;}
.fsd_c00204{font-size:53.565420px;}
.fs11_c00204{font-size:54.615723px;}
.fsc_c00204{font-size:54.626229px;}
.fs9_c00204{font-size:55.676733px;}
.fsf_c00204{font-size:57.766630px;}
.fse_c00204{font-size:59.867234px;}
.fsb_c00204{font-size:59.878751px;}
.fs5_c00204{font-size:60.929255px;}
.fs0_c00204{font-size:61.950000px;}
.fs8_c00204{font-size:61.979760px;}
.fs13_c00204{font-size:63.018141px;}
.fs1_c00204{font-size:63.030264px;}
.fs12_c00204{font-size:64.068444px;}
.fs6_c00204{font-size:64.080769px;}
.fs2_c00204{font-size:66.181777px;}
.fs7_c00204{font-size:67.232282px;}
.fsa_c00204{font-size:68.282786px;}
.fs3_c00204{font-size:72.484804px;}
.fs4_c00204{font-size:73.535308px;}
.y0_c00204{bottom:0.000000px;}
.yf0_c00204{bottom:37.218228px;}
.yf2_c00204{bottom:37.218324px;}
.yf6_c00204{bottom:37.218372px;}
.yf5_c00204{bottom:37.218408px;}
.yf4_c00204{bottom:37.218528px;}
.yf1_c00204{bottom:37.218588px;}
.yf7_c00204{bottom:37.219044px;}
.yf3_c00204{bottom:37.219056px;}
.yf8_c00204{bottom:37.219476px;}
.yef_c00204{bottom:54.090804px;}
.yee_c00204{bottom:54.091284px;}
.yed_c00204{bottom:54.091692px;}
.ye9_c00204{bottom:54.092280px;}
.yea_c00204{bottom:54.092304px;}
.yec_c00204{bottom:54.092412px;}
.yeb_c00204{bottom:54.092616px;}
.ye1_c00204{bottom:66.942612px;}
.ye2_c00204{bottom:67.925868px;}
.ye3_c00204{bottom:69.068496px;}
.ye4_c00204{bottom:69.815856px;}
.ye5_c00204{bottom:70.435872px;}
.ye6_c00204{bottom:71.241972px;}
.ye7_c00204{bottom:71.988288px;}
.ye8_c00204{bottom:72.343164px;}
.yda_c00204{bottom:82.607424px;}
.ydb_c00204{bottom:83.128860px;}
.ydc_c00204{bottom:83.879040px;}
.ydd_c00204{bottom:85.949136px;}
.yde_c00204{bottom:87.173424px;}
.ydf_c00204{bottom:88.797804px;}
.ye0_c00204{bottom:89.393484px;}
.yd4_c00204{bottom:96.132240px;}
.yd5_c00204{bottom:100.070016px;}
.yd6_c00204{bottom:100.585560px;}
.yd7_c00204{bottom:101.593536px;}
.yd8_c00204{bottom:104.396076px;}
.yd9_c00204{bottom:105.456360px;}
.ycd_c00204{bottom:120.685440px;}
.yce_c00204{bottom:121.705248px;}
.ycf_c00204{bottom:122.133600px;}
.yd0_c00204{bottom:122.457096px;}
.yd1_c00204{bottom:123.454896px;}
.yd2_c00204{bottom:124.564788px;}
.yd3_c00204{bottom:125.200968px;}
.yc5_c00204{bottom:133.917732px;}
.yc6_c00204{bottom:135.112668px;}
.yc7_c00204{bottom:136.564272px;}
.yc8_c00204{bottom:137.184648px;}
.yc9_c00204{bottom:138.155928px;}
.yca_c00204{bottom:138.793764px;}
.ycb_c00204{bottom:139.570356px;}
.ycc_c00204{bottom:140.183400px;}
.ybf_c00204{bottom:143.917500px;}
.yc0_c00204{bottom:145.262928px;}
.yc1_c00204{bottom:146.848404px;}
.yc2_c00204{bottom:147.586764px;}
.yc3_c00204{bottom:149.307456px;}
.yc4_c00204{bottom:150.095316px;}
.yb9_c00204{bottom:150.480987px;}
.yba_c00204{bottom:152.317105px;}
.ybb_c00204{bottom:153.531036px;}
.ybc_c00204{bottom:155.929428px;}
.ybd_c00204{bottom:157.348131px;}
.ybe_c00204{bottom:157.950987px;}
.yb2_c00204{bottom:171.795600px;}
.yb3_c00204{bottom:172.327830px;}
.yb4_c00204{bottom:172.873422px;}
.yb5_c00204{bottom:173.729203px;}
.yb6_c00204{bottom:173.904417px;}
.yb7_c00204{bottom:174.480406px;}
.yb8_c00204{bottom:174.739177px;}
.yaa_c00204{bottom:186.131037px;}
.yab_c00204{bottom:187.417464px;}
.yac_c00204{bottom:188.338618px;}
.yad_c00204{bottom:189.036267px;}
.yae_c00204{bottom:189.452871px;}
.yaf_c00204{bottom:190.011310px;}
.yb0_c00204{bottom:190.556917px;}
.yb1_c00204{bottom:191.645946px;}
.ya7_c00204{bottom:209.143822px;}
.ya9_c00204{bottom:209.143908px;}
.ya6_c00204{bottom:209.144214px;}
.ya8_c00204{bottom:209.144265px;}
.ya5_c00204{bottom:209.144571px;}
.ya4_c00204{bottom:209.145309px;}
.ya3_c00204{bottom:209.145381px;}
.ya2_c00204{bottom:209.145745px;}
.y9a_c00204{bottom:222.326131px;}
.y9b_c00204{bottom:222.952444px;}
.y9c_c00204{bottom:223.240444px;}
.y9d_c00204{bottom:223.976890px;}
.y9e_c00204{bottom:224.836741px;}
.y9f_c00204{bottom:225.194394px;}
.ya0_c00204{bottom:225.563773px;}
.ya1_c00204{bottom:226.743144px;}
.y94_c00204{bottom:244.383247px;}
.y99_c00204{bottom:244.383568px;}
.y95_c00204{bottom:244.383592px;}
.y96_c00204{bottom:244.383616px;}
.y97_c00204{bottom:244.384077px;}
.y98_c00204{bottom:244.384137px;}
.y91_c00204{bottom:260.405817px;}
.y93_c00204{bottom:260.405868px;}
.y8e_c00204{bottom:260.406132px;}
.y92_c00204{bottom:260.406135px;}
.y90_c00204{bottom:260.406297px;}
.y8d_c00204{bottom:260.406489px;}
.y8f_c00204{bottom:260.406690px;}
.y86_c00204{bottom:277.431501px;}
.y87_c00204{bottom:277.842689px;}
.y88_c00204{bottom:278.450980px;}
.y89_c00204{bottom:279.303078px;}
.y8a_c00204{bottom:279.570505px;}
.y8b_c00204{bottom:279.873699px;}
.y8c_c00204{bottom:280.581247px;}
.y7c_c00204{bottom:294.721800px;}
.y7d_c00204{bottom:295.297456px;}
.y7e_c00204{bottom:295.556104px;}
.y7f_c00204{bottom:295.715614px;}
.y80_c00204{bottom:296.540599px;}
.y81_c00204{bottom:296.740189px;}
.y82_c00204{bottom:297.049296px;}
.y83_c00204{bottom:297.292419px;}
.y84_c00204{bottom:297.934582px;}
.y85_c00204{bottom:298.214985px;}
.y75_c00204{bottom:310.660488px;}
.y76_c00204{bottom:310.970142px;}
.y77_c00204{bottom:311.672857px;}
.y78_c00204{bottom:312.194406px;}
.y79_c00204{bottom:312.350215px;}
.y7a_c00204{bottom:313.330789px;}
.y7b_c00204{bottom:314.181946px;}
.y6d_c00204{bottom:325.521280px;}
.y6e_c00204{bottom:326.400984px;}
.y6f_c00204{bottom:326.887041px;}
.y70_c00204{bottom:328.210711px;}
.y71_c00204{bottom:329.555746px;}
.y72_c00204{bottom:330.037782px;}
.y73_c00204{bottom:330.908128px;}
.y74_c00204{bottom:331.479970px;}
.y66_c00204{bottom:342.269551px;}
.y67_c00204{bottom:343.015713px;}
.y68_c00204{bottom:344.454540px;}
.y69_c00204{bottom:346.972731px;}
.y6a_c00204{bottom:348.165434px;}
.y6b_c00204{bottom:348.484815px;}
.y6c_c00204{bottom:349.237381px;}
.y5f_c00204{bottom:361.173108px;}
.y60_c00204{bottom:362.161223px;}
.y61_c00204{bottom:362.858246px;}
.y62_c00204{bottom:363.589380px;}
.y63_c00204{bottom:364.518744px;}
.y64_c00204{bottom:365.044803px;}
.y65_c00204{bottom:365.594362px;}
.y57_c00204{bottom:375.494247px;}
.y58_c00204{bottom:376.963842px;}
.y59_c00204{bottom:377.450174px;}
.y5a_c00204{bottom:378.637209px;}
.y5b_c00204{bottom:380.096796px;}
.y5c_c00204{bottom:380.742808px;}
.y5d_c00204{bottom:381.322237px;}
.y5e_c00204{bottom:381.845208px;}
.y4f_c00204{bottom:394.130060px;}
.y50_c00204{bottom:395.310714px;}
.y51_c00204{bottom:396.355764px;}
.y52_c00204{bottom:397.002660px;}
.y53_c00204{bottom:397.435404px;}
.y54_c00204{bottom:398.286316px;}
.y55_c00204{bottom:398.650078px;}
.y56_c00204{bottom:399.385367px;}
.y49_c00204{bottom:411.418358px;}
.y4a_c00204{bottom:412.908687px;}
.y4b_c00204{bottom:414.242856px;}
.y4c_c00204{bottom:415.393701px;}
.y4d_c00204{bottom:415.729489px;}
.y4e_c00204{bottom:417.020745px;}
.y41_c00204{bottom:427.896341px;}
.y42_c00204{bottom:429.202671px;}
.y43_c00204{bottom:430.118151px;}
.y44_c00204{bottom:430.612419px;}
.y45_c00204{bottom:432.148540px;}
.y46_c00204{bottom:432.493419px;}
.y47_c00204{bottom:432.942028px;}
.y48_c00204{bottom:434.188718px;}
.y3c_c00204{bottom:445.453060px;}
.y3d_c00204{bottom:446.853381px;}
.y3e_c00204{bottom:448.305624px;}
.y3f_c00204{bottom:450.063429px;}
.y40_c00204{bottom:451.307598px;}
.y33_c00204{bottom:461.662386px;}
.y34_c00204{bottom:462.189576px;}
.y35_c00204{bottom:463.333230px;}
.y36_c00204{bottom:464.986033px;}
.y37_c00204{bottom:465.370119px;}
.y38_c00204{bottom:467.013926px;}
.y39_c00204{bottom:467.345260px;}
.y3a_c00204{bottom:467.781806px;}
.y3b_c00204{bottom:468.695813px;}
.y2b_c00204{bottom:478.138164px;}
.y2c_c00204{bottom:478.753558px;}
.y2d_c00204{bottom:479.430363px;}
.y2e_c00204{bottom:481.004622px;}
.y2f_c00204{bottom:481.780011px;}
.y30_c00204{bottom:482.385373px;}
.y31_c00204{bottom:483.737227px;}
.y32_c00204{bottom:484.270276px;}
.y23_c00204{bottom:495.700096px;}
.y24_c00204{bottom:497.208768px;}
.y25_c00204{bottom:497.676145px;}
.y26_c00204{bottom:499.328194px;}
.y27_c00204{bottom:500.235213px;}
.y28_c00204{bottom:500.679597px;}
.y29_c00204{bottom:501.920101px;}
.y2a_c00204{bottom:502.431931px;}
.y1a_c00204{bottom:512.448862px;}
.y1b_c00204{bottom:513.340659px;}
.y1c_c00204{bottom:513.902114px;}
.y1d_c00204{bottom:515.981569px;}
.y1e_c00204{bottom:516.640812px;}
.y1f_c00204{bottom:517.312876px;}
.y20_c00204{bottom:519.321921px;}
.y21_c00204{bottom:519.714444px;}
.y22_c00204{bottom:520.670374px;}
.y13_c00204{bottom:530.004162px;}
.y14_c00204{bottom:531.812364px;}
.y15_c00204{bottom:532.876651px;}
.y16_c00204{bottom:533.213380px;}
.y17_c00204{bottom:534.865011px;}
.y18_c00204{bottom:535.598661px;}
.y19_c00204{bottom:537.284014px;}
.ya_c00204{bottom:548.101809px;}
.yb_c00204{bottom:549.271485px;}
.yc_c00204{bottom:549.579888px;}
.yd_c00204{bottom:550.789111px;}
.ye_c00204{bottom:551.527965px;}
.yf_c00204{bottom:553.366444px;}
.y10_c00204{bottom:553.849962px;}
.y11_c00204{bottom:554.977278px;}
.y12_c00204{bottom:555.620611px;}
.y2_c00204{bottom:564.309000px;}
.y3_c00204{bottom:565.433695px;}
.y4_c00204{bottom:566.112363px;}
.y5_c00204{bottom:567.626077px;}
.y6_c00204{bottom:568.295863px;}
.y7_c00204{bottom:570.036265px;}
.y8_c00204{bottom:571.070193px;}
.y9_c00204{bottom:572.865511px;}
.y1_c00204{bottom:584.820000px;}
.h12_c00204{height:52.515118px;}
.hf_c00204{height:53.565420px;}
.h13_c00204{height:54.615723px;}
.he_c00204{height:54.626229px;}
.hb_c00204{height:55.676733px;}
.h11_c00204{height:57.766630px;}
.h10_c00204{height:59.867234px;}
.hd_c00204{height:59.878751px;}
.h7_c00204{height:60.929255px;}
.h2_c00204{height:61.950000px;}
.ha_c00204{height:61.979760px;}
.h15_c00204{height:63.018141px;}
.h3_c00204{height:63.030264px;}
.h14_c00204{height:64.068444px;}
.h8_c00204{height:64.080769px;}
.h4_c00204{height:66.181777px;}
.h9_c00204{height:67.232282px;}
.hc_c00204{height:68.282786px;}
.h5_c00204{height:72.484804px;}
.h6_c00204{height:73.535308px;}
.h1_c00204{height:623.250000px;}
.h0_c00204{height:623.400000px;}
.w0_c00204{width:366.390000px;}
.w1_c00204{width:366.750000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:33.781500px;}
.xa_c00204{left:34.923537px;}
.x41_c00204{left:36.268525px;}
.x54_c00204{left:37.934667px;}
.x64_c00204{left:39.414699px;}
.x70_c00204{left:41.080500px;}
.x6c_c00204{left:43.784456px;}
.x72_c00204{left:50.231124px;}
.x2a_c00204{left:57.162611px;}
.x51_c00204{left:59.333997px;}
.x25_c00204{left:60.410238px;}
.x18_c00204{left:64.378377px;}
.x4a_c00204{left:65.688639px;}
.x62_c00204{left:67.789817px;}
.x3_c00204{left:70.062000px;}
.x4d_c00204{left:74.752904px;}
.xb_c00204{left:76.723443px;}
.x65_c00204{left:78.555881px;}
.x66_c00204{left:79.676064px;}
.x55_c00204{left:82.270905px;}
.x19_c00204{left:83.749086px;}
.xc_c00204{left:87.737466px;}
.x7a_c00204{left:90.238548px;}
.x4_c00204{left:91.954500px;}
.x34_c00204{left:93.964555px;}
.x4e_c00204{left:95.905158px;}
.x42_c00204{left:97.526824px;}
.x13_c00204{left:101.897325px;}
.x76_c00204{left:103.326120px;}
.x2b_c00204{left:104.806934px;}
.x20_c00204{left:108.647513px;}
.x3a_c00204{left:110.420983px;}
.x56_c00204{left:114.406807px;}
.x43_c00204{left:117.767695px;}
.x4b_c00204{left:121.014195px;}
.x7c_c00204{left:123.951012px;}
.x5c_c00204{left:129.241740px;}
.xd_c00204{left:130.909965px;}
.x73_c00204{left:132.925248px;}
.x35_c00204{left:135.556134px;}
.x6b_c00204{left:137.065514px;}
.x7d_c00204{left:139.615512px;}
.x5_c00204{left:140.784000px;}
.x46_c00204{left:141.954832px;}
.x6d_c00204{left:145.466618px;}
.x52_c00204{left:146.824079px;}
.x77_c00204{left:150.349656px;}
.x74_c00204{left:152.333040px;}
.x14_c00204{left:153.775242px;}
.x1a_c00204{left:155.429504px;}
.xe_c00204{left:157.310929px;}
.x3e_c00204{left:159.547797px;}
.x6_c00204{left:162.390000px;}
.x1_c00204{left:166.320000px;}
.x21_c00204{left:169.834092px;}
.x31_c00204{left:171.510382px;}
.x2c_c00204{left:173.670360px;}
.x3b_c00204{left:177.142722px;}
.x1b_c00204{left:178.148399px;}
.x75_c00204{left:182.672208px;}
.x69_c00204{left:183.675794px;}
.x60_c00204{left:185.025645px;}
.x26_c00204{left:186.565127px;}
.x47_c00204{left:187.625536px;}
.x2d_c00204{left:189.644301px;}
.x57_c00204{left:193.275796px;}
.x3f_c00204{left:195.478258px;}
.x1c_c00204{left:201.329340px;}
.x22_c00204{left:203.451777px;}
.x5d_c00204{left:206.712228px;}
.x6a_c00204{left:207.986339px;}
.x7e_c00204{left:209.566296px;}
.x27_c00204{left:211.808114px;}
.x63_c00204{left:213.929607px;}
.x15_c00204{left:214.948322px;}
.x58_c00204{left:217.050549px;}
.x7_c00204{left:218.532000px;}
.x23_c00204{left:219.917823px;}
.xf_c00204{left:222.961521px;}
.x6e_c00204{left:225.401082px;}
.x36_c00204{left:227.836348px;}
.x67_c00204{left:229.866807px;}
.x5e_c00204{left:231.079840px;}
.x4f_c00204{left:232.850057px;}
.x3c_c00204{left:234.657298px;}
.x59_c00204{left:235.693918px;}
.x10_c00204{left:240.205602px;}
.x16_c00204{left:242.101670px;}
.x37_c00204{left:243.514219px;}
.x48_c00204{left:245.696506px;}
.x61_c00204{left:248.506607px;}
.x8_c00204{left:251.884500px;}
.x32_c00204{left:255.191283px;}
.x2e_c00204{left:258.120634px;}
.x38_c00204{left:263.894392px;}
.x24_c00204{left:265.842996px;}
.x28_c00204{left:268.154343px;}
.x1d_c00204{left:270.593118px;}
.x2f_c00204{left:271.908611px;}
.x4c_c00204{left:276.063235px;}
.x44_c00204{left:279.046617px;}
.x11_c00204{left:280.445322px;}
.x78_c00204{left:282.070428px;}
.x1e_c00204{left:284.126955px;}
.x5a_c00204{left:285.129993px;}
.x40_c00204{left:287.028633px;}
.x53_c00204{left:288.674211px;}
.x29_c00204{left:290.338133px;}
.x6f_c00204{left:292.792175px;}
.x50_c00204{left:295.549088px;}
.x71_c00204{left:298.489500px;}
.x45_c00204{left:300.856860px;}
.x12_c00204{left:303.425961px;}
.x17_c00204{left:304.507889px;}
.x5b_c00204{left:306.719537px;}
.x9_c00204{left:309.798000px;}
.x7b_c00204{left:311.001180px;}
.x49_c00204{left:312.941255px;}
.x33_c00204{left:314.408604px;}
.x3d_c00204{left:316.009012px;}
.x1f_c00204{left:317.094501px;}
.x39_c00204{left:320.529156px;}
.x79_c00204{left:321.835560px;}
.x5f_c00204{left:322.918710px;}
.x7f_c00204{left:326.240436px;}
.x30_c00204{left:328.212840px;}
.x68_c00204{left:331.434818px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.fs10_c00204{font-size:46.680105pt;}
.fsd_c00204{font-size:47.613707pt;}
.fs11_c00204{font-size:48.547309pt;}
.fsc_c00204{font-size:48.556648pt;}
.fs9_c00204{font-size:49.490430pt;}
.fsf_c00204{font-size:51.348115pt;}
.fse_c00204{font-size:53.215319pt;}
.fsb_c00204{font-size:53.225556pt;}
.fs5_c00204{font-size:54.159338pt;}
.fs0_c00204{font-size:55.066667pt;}
.fs8_c00204{font-size:55.093120pt;}
.fs13_c00204{font-size:56.016126pt;}
.fs1_c00204{font-size:56.026902pt;}
.fs12_c00204{font-size:56.949728pt;}
.fs6_c00204{font-size:56.960683pt;}
.fs2_c00204{font-size:58.828247pt;}
.fs7_c00204{font-size:59.762028pt;}
.fsa_c00204{font-size:60.695810pt;}
.fs3_c00204{font-size:64.430937pt;}
.fs4_c00204{font-size:65.364718pt;}
.y0_c00204{bottom:0.000000pt;}
.yf0_c00204{bottom:33.082869pt;}
.yf2_c00204{bottom:33.082955pt;}
.yf6_c00204{bottom:33.082997pt;}
.yf5_c00204{bottom:33.083029pt;}
.yf4_c00204{bottom:33.083136pt;}
.yf1_c00204{bottom:33.083189pt;}
.yf7_c00204{bottom:33.083595pt;}
.yf3_c00204{bottom:33.083605pt;}
.yf8_c00204{bottom:33.083979pt;}
.yef_c00204{bottom:48.080715pt;}
.yee_c00204{bottom:48.081141pt;}
.yed_c00204{bottom:48.081504pt;}
.ye9_c00204{bottom:48.082027pt;}
.yea_c00204{bottom:48.082048pt;}
.yec_c00204{bottom:48.082144pt;}
.yeb_c00204{bottom:48.082325pt;}
.ye1_c00204{bottom:59.504544pt;}
.ye2_c00204{bottom:60.378549pt;}
.ye3_c00204{bottom:61.394219pt;}
.ye4_c00204{bottom:62.058539pt;}
.ye5_c00204{bottom:62.609664pt;}
.ye6_c00204{bottom:63.326197pt;}
.ye7_c00204{bottom:63.989589pt;}
.ye8_c00204{bottom:64.305035pt;}
.yda_c00204{bottom:73.428821pt;}
.ydb_c00204{bottom:73.892320pt;}
.ydc_c00204{bottom:74.559147pt;}
.ydd_c00204{bottom:76.399232pt;}
.yde_c00204{bottom:77.487488pt;}
.ydf_c00204{bottom:78.931381pt;}
.ye0_c00204{bottom:79.460875pt;}
.yd4_c00204{bottom:85.450880pt;}
.yd5_c00204{bottom:88.951125pt;}
.yd6_c00204{bottom:89.409387pt;}
.yd7_c00204{bottom:90.305365pt;}
.yd8_c00204{bottom:92.796512pt;}
.yd9_c00204{bottom:93.738987pt;}
.ycd_c00204{bottom:107.275947pt;}
.yce_c00204{bottom:108.182443pt;}
.ycf_c00204{bottom:108.563200pt;}
.yd0_c00204{bottom:108.850752pt;}
.yd1_c00204{bottom:109.737685pt;}
.yd2_c00204{bottom:110.724256pt;}
.yd3_c00204{bottom:111.289749pt;}
.yc5_c00204{bottom:119.037984pt;}
.yc6_c00204{bottom:120.100149pt;}
.yc7_c00204{bottom:121.390464pt;}
.yc8_c00204{bottom:121.941909pt;}
.yc9_c00204{bottom:122.805269pt;}
.yca_c00204{bottom:123.372235pt;}
.ycb_c00204{bottom:124.062539pt;}
.ycc_c00204{bottom:124.607467pt;}
.ybf_c00204{bottom:127.926667pt;}
.yc0_c00204{bottom:129.122603pt;}
.yc1_c00204{bottom:130.531915pt;}
.yc2_c00204{bottom:131.188235pt;}
.yc3_c00204{bottom:132.717739pt;}
.yc4_c00204{bottom:133.418059pt;}
.yb9_c00204{bottom:133.760877pt;}
.yba_c00204{bottom:135.392983pt;}
.ybb_c00204{bottom:136.472032pt;}
.ybc_c00204{bottom:138.603936pt;}
.ybd_c00204{bottom:139.865005pt;}
.ybe_c00204{bottom:140.400877pt;}
.yb2_c00204{bottom:152.707200pt;}
.yb3_c00204{bottom:153.180293pt;}
.yb4_c00204{bottom:153.665264pt;}
.yb5_c00204{bottom:154.425959pt;}
.yb6_c00204{bottom:154.581704pt;}
.yb7_c00204{bottom:155.093695pt;}
.yb8_c00204{bottom:155.323713pt;}
.yaa_c00204{bottom:165.449811pt;}
.yab_c00204{bottom:166.593301pt;}
.yac_c00204{bottom:167.412105pt;}
.yad_c00204{bottom:168.032237pt;}
.yae_c00204{bottom:168.402552pt;}
.yaf_c00204{bottom:168.898943pt;}
.yb0_c00204{bottom:169.383927pt;}
.yb1_c00204{bottom:170.351952pt;}
.ya7_c00204{bottom:185.905620pt;}
.ya9_c00204{bottom:185.905696pt;}
.ya6_c00204{bottom:185.905968pt;}
.ya8_c00204{bottom:185.906013pt;}
.ya5_c00204{bottom:185.906285pt;}
.ya4_c00204{bottom:185.906941pt;}
.ya3_c00204{bottom:185.907005pt;}
.ya2_c00204{bottom:185.907329pt;}
.y9a_c00204{bottom:197.623228pt;}
.y9b_c00204{bottom:198.179951pt;}
.y9c_c00204{bottom:198.435951pt;}
.y9d_c00204{bottom:199.090569pt;}
.y9e_c00204{bottom:199.854881pt;}
.y9f_c00204{bottom:200.172795pt;}
.ya0_c00204{bottom:200.501132pt;}
.ya1_c00204{bottom:201.549461pt;}
.y94_c00204{bottom:217.229553pt;}
.y99_c00204{bottom:217.229839pt;}
.y95_c00204{bottom:217.229860pt;}
.y96_c00204{bottom:217.229881pt;}
.y97_c00204{bottom:217.230291pt;}
.y98_c00204{bottom:217.230344pt;}
.y91_c00204{bottom:231.471837pt;}
.y93_c00204{bottom:231.471883pt;}
.y8e_c00204{bottom:231.472117pt;}
.y92_c00204{bottom:231.472120pt;}
.y90_c00204{bottom:231.472264pt;}
.y8d_c00204{bottom:231.472435pt;}
.y8f_c00204{bottom:231.472613pt;}
.y86_c00204{bottom:246.605779pt;}
.y87_c00204{bottom:246.971279pt;}
.y88_c00204{bottom:247.511983pt;}
.y89_c00204{bottom:248.269403pt;}
.y8a_c00204{bottom:248.507116pt;}
.y8b_c00204{bottom:248.776621pt;}
.y8c_c00204{bottom:249.405553pt;}
.y7c_c00204{bottom:261.974933pt;}
.y7d_c00204{bottom:262.486628pt;}
.y7e_c00204{bottom:262.716537pt;}
.y7f_c00204{bottom:262.858324pt;}
.y80_c00204{bottom:263.591644pt;}
.y81_c00204{bottom:263.769057pt;}
.y82_c00204{bottom:264.043819pt;}
.y83_c00204{bottom:264.259928pt;}
.y84_c00204{bottom:264.830740pt;}
.y85_c00204{bottom:265.079987pt;}
.y75_c00204{bottom:276.142656pt;}
.y76_c00204{bottom:276.417904pt;}
.y77_c00204{bottom:277.042540pt;}
.y78_c00204{bottom:277.506139pt;}
.y79_c00204{bottom:277.644636pt;}
.y7a_c00204{bottom:278.516257pt;}
.y7b_c00204{bottom:279.272841pt;}
.y6d_c00204{bottom:289.352249pt;}
.y6e_c00204{bottom:290.134208pt;}
.y6f_c00204{bottom:290.566259pt;}
.y70_c00204{bottom:291.742855pt;}
.y71_c00204{bottom:292.938441pt;}
.y72_c00204{bottom:293.366917pt;}
.y73_c00204{bottom:294.140559pt;}
.y74_c00204{bottom:294.648863pt;}
.y66_c00204{bottom:304.239601pt;}
.y67_c00204{bottom:304.902856pt;}
.y68_c00204{bottom:306.181813pt;}
.y69_c00204{bottom:308.420205pt;}
.y6a_c00204{bottom:309.480385pt;}
.y6b_c00204{bottom:309.764280pt;}
.y6c_c00204{bottom:310.433228pt;}
.y5f_c00204{bottom:321.042763pt;}
.y60_c00204{bottom:321.921087pt;}
.y61_c00204{bottom:322.540663pt;}
.y62_c00204{bottom:323.190560pt;}
.y63_c00204{bottom:324.016661pt;}
.y64_c00204{bottom:324.484269pt;}
.y65_c00204{bottom:324.972767pt;}
.y57_c00204{bottom:333.772664pt;}
.y58_c00204{bottom:335.078971pt;}
.y59_c00204{bottom:335.511265pt;}
.y5a_c00204{bottom:336.566408pt;}
.y5b_c00204{bottom:337.863819pt;}
.y5c_c00204{bottom:338.438052pt;}
.y5d_c00204{bottom:338.953100pt;}
.y5e_c00204{bottom:339.417963pt;}
.y4f_c00204{bottom:350.337831pt;}
.y50_c00204{bottom:351.387301pt;}
.y51_c00204{bottom:352.316235pt;}
.y52_c00204{bottom:352.891253pt;}
.y53_c00204{bottom:353.275915pt;}
.y54_c00204{bottom:354.032281pt;}
.y55_c00204{bottom:354.355625pt;}
.y56_c00204{bottom:355.009215pt;}
.y49_c00204{bottom:365.705207pt;}
.y4a_c00204{bottom:367.029944pt;}
.y4b_c00204{bottom:368.215872pt;}
.y4c_c00204{bottom:369.238845pt;}
.y4d_c00204{bottom:369.537324pt;}
.y4e_c00204{bottom:370.685107pt;}
.y41_c00204{bottom:380.352303pt;}
.y42_c00204{bottom:381.513485pt;}
.y43_c00204{bottom:382.327245pt;}
.y44_c00204{bottom:382.766595pt;}
.y45_c00204{bottom:384.132036pt;}
.y46_c00204{bottom:384.438595pt;}
.y47_c00204{bottom:384.837359pt;}
.y48_c00204{bottom:385.945527pt;}
.y3c_c00204{bottom:395.958276pt;}
.y3d_c00204{bottom:397.203005pt;}
.y3e_c00204{bottom:398.493888pt;}
.y3f_c00204{bottom:400.056381pt;}
.y40_c00204{bottom:401.162309pt;}
.y33_c00204{bottom:410.366565pt;}
.y34_c00204{bottom:410.835179pt;}
.y35_c00204{bottom:411.851760pt;}
.y36_c00204{bottom:413.320919pt;}
.y37_c00204{bottom:413.662328pt;}
.y38_c00204{bottom:415.123489pt;}
.y39_c00204{bottom:415.418009pt;}
.y3a_c00204{bottom:415.806049pt;}
.y3b_c00204{bottom:416.618500pt;}
.y2b_c00204{bottom:425.011701pt;}
.y2c_c00204{bottom:425.558719pt;}
.y2d_c00204{bottom:426.160323pt;}
.y2e_c00204{bottom:427.559664pt;}
.y2f_c00204{bottom:428.248899pt;}
.y30_c00204{bottom:428.786999pt;}
.y31_c00204{bottom:429.988647pt;}
.y32_c00204{bottom:430.462468pt;}
.y23_c00204{bottom:440.622308pt;}
.y24_c00204{bottom:441.963349pt;}
.y25_c00204{bottom:442.378796pt;}
.y26_c00204{bottom:443.847284pt;}
.y27_c00204{bottom:444.653523pt;}
.y28_c00204{bottom:445.048531pt;}
.y29_c00204{bottom:446.151201pt;}
.y2a_c00204{bottom:446.606161pt;}
.y1a_c00204{bottom:455.510100pt;}
.y1b_c00204{bottom:456.302808pt;}
.y1c_c00204{bottom:456.801879pt;}
.y1d_c00204{bottom:458.650284pt;}
.y1e_c00204{bottom:459.236277pt;}
.y1f_c00204{bottom:459.833668pt;}
.y20_c00204{bottom:461.619485pt;}
.y21_c00204{bottom:461.968395pt;}
.y22_c00204{bottom:462.818111pt;}
.y13_c00204{bottom:471.114811pt;}
.y14_c00204{bottom:472.722101pt;}
.y15_c00204{bottom:473.668135pt;}
.y16_c00204{bottom:473.967449pt;}
.y17_c00204{bottom:475.435565pt;}
.y18_c00204{bottom:476.087699pt;}
.y19_c00204{bottom:477.585791pt;}
.ya_c00204{bottom:487.201608pt;}
.yb_c00204{bottom:488.241320pt;}
.yc_c00204{bottom:488.515456pt;}
.yd_c00204{bottom:489.590321pt;}
.ye_c00204{bottom:490.247080pt;}
.yf_c00204{bottom:491.881284pt;}
.y10_c00204{bottom:492.311077pt;}
.y11_c00204{bottom:493.313136pt;}
.y12_c00204{bottom:493.884988pt;}
.y2_c00204{bottom:501.608000pt;}
.y3_c00204{bottom:502.607729pt;}
.y4_c00204{bottom:503.210989pt;}
.y5_c00204{bottom:504.556513pt;}
.y6_c00204{bottom:505.151879pt;}
.y7_c00204{bottom:506.698903pt;}
.y8_c00204{bottom:507.617949pt;}
.y9_c00204{bottom:509.213788pt;}
.y1_c00204{bottom:519.840000pt;}
.h12_c00204{height:46.680105pt;}
.hf_c00204{height:47.613707pt;}
.h13_c00204{height:48.547309pt;}
.he_c00204{height:48.556648pt;}
.hb_c00204{height:49.490430pt;}
.h11_c00204{height:51.348115pt;}
.h10_c00204{height:53.215319pt;}
.hd_c00204{height:53.225556pt;}
.h7_c00204{height:54.159338pt;}
.h2_c00204{height:55.066667pt;}
.ha_c00204{height:55.093120pt;}
.h15_c00204{height:56.016126pt;}
.h3_c00204{height:56.026902pt;}
.h14_c00204{height:56.949728pt;}
.h8_c00204{height:56.960683pt;}
.h4_c00204{height:58.828247pt;}
.h9_c00204{height:59.762028pt;}
.hc_c00204{height:60.695810pt;}
.h5_c00204{height:64.430937pt;}
.h6_c00204{height:65.364718pt;}
.h1_c00204{height:554.000000pt;}
.h0_c00204{height:554.133333pt;}
.w0_c00204{width:325.680000pt;}
.w1_c00204{width:326.000000pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:30.028000pt;}
.xa_c00204{left:31.043144pt;}
.x41_c00204{left:32.238689pt;}
.x54_c00204{left:33.719704pt;}
.x64_c00204{left:35.035288pt;}
.x70_c00204{left:36.516000pt;}
.x6c_c00204{left:38.919516pt;}
.x72_c00204{left:44.649888pt;}
.x2a_c00204{left:50.811209pt;}
.x51_c00204{left:52.741331pt;}
.x25_c00204{left:53.697989pt;}
.x18_c00204{left:57.225224pt;}
.x4a_c00204{left:58.389901pt;}
.x62_c00204{left:60.257615pt;}
.x3_c00204{left:62.277333pt;}
.x4d_c00204{left:66.447025pt;}
.xb_c00204{left:68.198616pt;}
.x65_c00204{left:69.827449pt;}
.x66_c00204{left:70.823168pt;}
.x55_c00204{left:73.129693pt;}
.x19_c00204{left:74.443632pt;}
.xc_c00204{left:77.988859pt;}
.x7a_c00204{left:80.212043pt;}
.x4_c00204{left:81.737333pt;}
.x34_c00204{left:83.524049pt;}
.x4e_c00204{left:85.249029pt;}
.x42_c00204{left:86.690511pt;}
.x13_c00204{left:90.575400pt;}
.x76_c00204{left:91.845440pt;}
.x2b_c00204{left:93.161719pt;}
.x20_c00204{left:96.575567pt;}
.x3a_c00204{left:98.151985pt;}
.x56_c00204{left:101.694940pt;}
.x43_c00204{left:104.682396pt;}
.x4b_c00204{left:107.568173pt;}
.x7c_c00204{left:110.178677pt;}
.x5c_c00204{left:114.881547pt;}
.xd_c00204{left:116.364413pt;}
.x73_c00204{left:118.155776pt;}
.x35_c00204{left:120.494341pt;}
.x6b_c00204{left:121.836012pt;}
.x7d_c00204{left:124.102677pt;}
.x5_c00204{left:125.141333pt;}
.x46_c00204{left:126.182073pt;}
.x6d_c00204{left:129.303660pt;}
.x52_c00204{left:130.510292pt;}
.x77_c00204{left:133.644139pt;}
.x74_c00204{left:135.407147pt;}
.x14_c00204{left:136.689104pt;}
.x1a_c00204{left:138.159559pt;}
.xe_c00204{left:139.831937pt;}
.x3e_c00204{left:141.820264pt;}
.x6_c00204{left:144.346667pt;}
.x1_c00204{left:147.840000pt;}
.x21_c00204{left:150.963637pt;}
.x31_c00204{left:152.453673pt;}
.x2c_c00204{left:154.373653pt;}
.x3b_c00204{left:157.460197pt;}
.x1b_c00204{left:158.354132pt;}
.x75_c00204{left:162.375296pt;}
.x69_c00204{left:163.267372pt;}
.x60_c00204{left:164.467240pt;}
.x26_c00204{left:165.835668pt;}
.x47_c00204{left:166.778255pt;}
.x2d_c00204{left:168.572712pt;}
.x57_c00204{left:171.800708pt;}
.x3f_c00204{left:173.758452pt;}
.x1c_c00204{left:178.959413pt;}
.x22_c00204{left:180.846024pt;}
.x5d_c00204{left:183.744203pt;}
.x6a_c00204{left:184.876745pt;}
.x7e_c00204{left:186.281152pt;}
.x27_c00204{left:188.273879pt;}
.x63_c00204{left:190.159651pt;}
.x15_c00204{left:191.065175pt;}
.x58_c00204{left:192.933821pt;}
.x7_c00204{left:194.250667pt;}
.x23_c00204{left:195.482509pt;}
.xf_c00204{left:198.188019pt;}
.x6e_c00204{left:200.356517pt;}
.x36_c00204{left:202.521199pt;}
.x67_c00204{left:204.326051pt;}
.x5e_c00204{left:205.404303pt;}
.x4f_c00204{left:206.977828pt;}
.x3c_c00204{left:208.584265pt;}
.x59_c00204{left:209.505705pt;}
.x10_c00204{left:213.516091pt;}
.x16_c00204{left:215.201484pt;}
.x37_c00204{left:216.457084pt;}
.x48_c00204{left:218.396895pt;}
.x61_c00204{left:220.894761pt;}
.x8_c00204{left:223.897333pt;}
.x32_c00204{left:226.836696pt;}
.x2e_c00204{left:229.440564pt;}
.x38_c00204{left:234.572793pt;}
.x24_c00204{left:236.304885pt;}
.x28_c00204{left:238.359416pt;}
.x1d_c00204{left:240.527216pt;}
.x2f_c00204{left:241.696543pt;}
.x4c_c00204{left:245.389543pt;}
.x44_c00204{left:248.041437pt;}
.x11_c00204{left:249.284731pt;}
.x78_c00204{left:250.729269pt;}
.x1e_c00204{left:252.557293pt;}
.x5a_c00204{left:253.448883pt;}
.x40_c00204{left:255.136563pt;}
.x53_c00204{left:256.599299pt;}
.x29_c00204{left:258.078340pt;}
.x6f_c00204{left:260.259711pt;}
.x50_c00204{left:262.710300pt;}
.x71_c00204{left:265.324000pt;}
.x45_c00204{left:267.428320pt;}
.x12_c00204{left:269.711965pt;}
.x17_c00204{left:270.673679pt;}
.x5b_c00204{left:272.639588pt;}
.x9_c00204{left:275.376000pt;}
.x7b_c00204{left:276.445493pt;}
.x49_c00204{left:278.170004pt;}
.x33_c00204{left:279.474315pt;}
.x3d_c00204{left:280.896900pt;}
.x1f_c00204{left:281.861779pt;}
.x39_c00204{left:284.914805pt;}
.x79_c00204{left:286.076053pt;}
.x5f_c00204{left:287.038853pt;}
.x7f_c00204{left:289.991499pt;}
.x30_c00204{left:291.744747pt;}
.x68_c00204{left:294.608727pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00205 {
    display:none;
  }
  .loading-indicator_c00205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00205 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00205 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00205" -> "#page-container .classname_c00205")
 */
.pf_c00205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00205 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00205 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00205 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00205 {overflow:visible;}
  }
}
.c_c00205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00205 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00205:after { /* webkit #35443 */
  content: '';
}
.t_c00205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00205 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00205 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00205 { /* info for Javascript */
  display:none;
}
.l_c00205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00205:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00205 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00205.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c00205{transform:matrix(0.053405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053405,0.000000,0.000000,0.250000,0,0);}
.mef_c00205{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.mf4_c00205{transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00205{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);}
.ma1_c00205{transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00205{transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);}
.ma3_c00205{transform:matrix(0.152685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152685,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m8c_c00205{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.mc5_c00205{transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);}
.ma2_c00205{transform:matrix(0.160070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160070,0.000000,0.000000,0.250000,0,0);}
.mc3_c00205{transform:matrix(0.160370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160370,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.ma4_c00205{transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);}
.ma0_c00205{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);}
.m6f_c00205{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);}
.maa_c00205{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.mc2_c00205{transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);}
.mc4_c00205{transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);}
.m62_c00205{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.mdc_c00205{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.mdf_c00205{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.ma5_c00205{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.mab_c00205{transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);}
.m6c_c00205{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.md0_c00205{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m94_c00205{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.mb1_c00205{transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);}
.mdb_c00205{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.md1_c00205{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.md7_c00205{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176360,0.000000,0.000000,0.250000,0,0);}
.m67_c00205{transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);}
.mc6_c00205{transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);}
.m71_c00205{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00205{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.m8b_c00205{transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.md3_c00205{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);}
.md9_c00205{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.me1_c00205{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.mc7_c00205{transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m95_c00205{transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.me2_c00205{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m65_c00205{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m83_c00205{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.me0_c00205{transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);}
.m70_c00205{transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);}
.mdd_c00205{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183105,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m72_c00205{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.m97_c00205{transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);}
.mde_c00205{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.mc1_c00205{transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);}
.ma6_c00205{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m91_c00205{transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);}
.m5f_c00205{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.mca_c00205{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.m74_c00205{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m7e_c00205{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.mda_c00205{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m77_c00205{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.mcd_c00205{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m7b_c00205{transform:matrix(0.190910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190910,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m9a_c00205{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.mea_c00205{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.md5_c00205{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.m8a_c00205{transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);}
.m8d_c00205{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m63_c00205{transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);}
.md8_c00205{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m73_c00205{transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);}
.m61_c00205{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mbb_c00205{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mee_c00205{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.mc8_c00205{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.ma9_c00205{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m89_c00205{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);}
.m66_c00205{transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);}
.me3_c00205{transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.mad_c00205{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mbd_c00205{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.mc0_c00205{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);}
.m9e_c00205{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m9b_c00205{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.mcf_c00205{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.mc9_c00205{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m78_c00205{transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);}
.mb4_c00205{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.mce_c00205{transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201905,0.000000,0.000000,0.250000,0,0);}
.m90_c00205{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.mb9_c00205{transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);}
.m5e_c00205{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.mcb_c00205{transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202470,0.000000,0.000000,0.250000,0,0);}
.mbf_c00205{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.me9_c00205{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m7f_c00205{transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m7d_c00205{transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);}
.ma8_c00205{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mec_c00205{transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);}
.mcc_c00205{transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00205{transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.m69_c00205{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m9c_c00205{transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);}
.m87_c00205{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.m64_c00205{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.me5_c00205{transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00205{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);}
.meb_c00205{transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);}
.m80_c00205{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);}
.md2_c00205{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m8e_c00205{transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210015,0.000000,0.000000,0.250000,0,0);}
.m40_c00205{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.mae_c00205{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);}
.mba_c00205{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m99_c00205{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.211195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211195,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);}
.m81_c00205{transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);}
.me4_c00205{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m68_c00205{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.med_c00205{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00205{transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00205{transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.mb5_c00205{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m76_c00205{transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);}
.m60_c00205{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m75_c00205{transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);}
.m6b_c00205{transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);}
.mbe_c00205{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.md4_c00205{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m79_c00205{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.me7_c00205{transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222985,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);}
.mf0_c00205{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.mb0_c00205{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m6a_c00205{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.me8_c00205{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.m84_c00205{transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228465,0.000000,0.000000,0.250000,0,0);}
.maf_c00205{transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);}
.mb7_c00205{transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);}
.m85_c00205{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);}
.m96_c00205{transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);}
.me6_c00205{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.mb8_c00205{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.mbc_c00205{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);}
.md6_c00205{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.mb3_c00205{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.mb2_c00205{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.ma7_c00205{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m93_c00205{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m6d_c00205{transform:matrix(0.303320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303320,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);}
.mf3_c00205{transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);}
.m92_c00205{transform:matrix(0.365700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365700,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);}
.mf1_c00205{transform:matrix(0.524040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524040,0.000000,0.000000,0.250000,0,0);}
.mf2_c00205{transform:matrix(0.833755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.833755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.833755,0.000000,0.000000,0.250000,0,0);}
.mac_c00205{transform:matrix(1.046830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046830,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:0.000000px;}
.fc0_c00205{color:transparent;}
.fse_c00205{font-size:22.050000px;}
.fsf_c00205{font-size:35.700000px;}
.fs8_c00205{font-size:57.750000px;}
.fs0_c00205{font-size:58.800000px;}
.fs7_c00205{font-size:59.850000px;}
.fs5_c00205{font-size:60.900000px;}
.fs6_c00205{font-size:61.950000px;}
.fsa_c00205{font-size:63.000000px;}
.fsb_c00205{font-size:64.050000px;}
.fsd_c00205{font-size:65.100000px;}
.fs4_c00205{font-size:66.150000px;}
.fs2_c00205{font-size:67.200000px;}
.fs9_c00205{font-size:68.250000px;}
.fs3_c00205{font-size:69.300000px;}
.fs1_c00205{font-size:70.350000px;}
.fsc_c00205{font-size:74.550000px;}
.y0_c00205{bottom:0.000000px;}
.y66_c00205{bottom:30.928500px;}
.y65_c00205{bottom:49.833000px;}
.y64_c00205{bottom:66.150000px;}
.y63_c00205{bottom:83.010000px;}
.y62_c00205{bottom:100.170000px;}
.y61_c00205{bottom:115.546500px;}
.y60_c00205{bottom:116.154000px;}
.y5f_c00205{bottom:116.430000px;}
.y5e_c00205{bottom:117.252000px;}
.y5d_c00205{bottom:117.648000px;}
.y5c_c00205{bottom:118.135500px;}
.y5b_c00205{bottom:119.103000px;}
.y5a_c00205{bottom:119.613000px;}
.y59_c00205{bottom:135.660000px;}
.y58_c00205{bottom:153.028500px;}
.y57_c00205{bottom:169.180500px;}
.y56_c00205{bottom:169.581000px;}
.y55_c00205{bottom:170.631000px;}
.y54_c00205{bottom:171.522000px;}
.y53_c00205{bottom:171.786000px;}
.y52_c00205{bottom:172.533000px;}
.y51_c00205{bottom:188.020500px;}
.y50_c00205{bottom:188.370000px;}
.y4f_c00205{bottom:189.184500px;}
.y4e_c00205{bottom:190.311000px;}
.y4d_c00205{bottom:190.623000px;}
.y4c_c00205{bottom:203.197500px;}
.y4b_c00205{bottom:203.991000px;}
.y4a_c00205{bottom:204.250500px;}
.y49_c00205{bottom:204.675000px;}
.y48_c00205{bottom:205.026000px;}
.y47_c00205{bottom:205.482000px;}
.y46_c00205{bottom:205.713000px;}
.y45_c00205{bottom:206.331000px;}
.y44_c00205{bottom:206.823000px;}
.y43_c00205{bottom:222.009000px;}
.y42_c00205{bottom:222.240000px;}
.y41_c00205{bottom:222.729000px;}
.y40_c00205{bottom:223.138500px;}
.y3f_c00205{bottom:223.402500px;}
.y3e_c00205{bottom:224.178000px;}
.y3d_c00205{bottom:224.698500px;}
.y3c_c00205{bottom:225.453000px;}
.y3b_c00205{bottom:239.268000px;}
.y3a_c00205{bottom:239.505000px;}
.y39_c00205{bottom:239.716500px;}
.y38_c00205{bottom:240.277500px;}
.y37_c00205{bottom:240.466500px;}
.y36_c00205{bottom:240.781500px;}
.y35_c00205{bottom:241.227000px;}
.y34_c00205{bottom:241.651500px;}
.y6a_c00205{bottom:256.500000px;}
.y33_c00205{bottom:257.334000px;}
.y69_c00205{bottom:264.060000px;}
.y32_c00205{bottom:272.265000px;}
.y31_c00205{bottom:273.307500px;}
.y30_c00205{bottom:273.484500px;}
.y2f_c00205{bottom:274.560000px;}
.y2e_c00205{bottom:274.839000px;}
.y2d_c00205{bottom:275.943000px;}
.y2c_c00205{bottom:289.296000px;}
.y2b_c00205{bottom:289.597500px;}
.y2a_c00205{bottom:290.349000px;}
.y29_c00205{bottom:290.695500px;}
.y28_c00205{bottom:291.538500px;}
.y27_c00205{bottom:292.413000px;}
.y26_c00205{bottom:308.401500px;}
.y25_c00205{bottom:325.653000px;}
.y24_c00205{bottom:342.963000px;}
.y68_c00205{bottom:358.290000px;}
.y23_c00205{bottom:360.199500px;}
.y67_c00205{bottom:367.200000px;}
.y22_c00205{bottom:375.250500px;}
.y21_c00205{bottom:375.787500px;}
.y20_c00205{bottom:375.975000px;}
.y1f_c00205{bottom:376.486500px;}
.y1e_c00205{bottom:377.163000px;}
.y1d_c00205{bottom:377.916000px;}
.y1c_c00205{bottom:378.811500px;}
.y1b_c00205{bottom:394.596000px;}
.y1a_c00205{bottom:411.391500px;}
.y19_c00205{bottom:428.625000px;}
.y18_c00205{bottom:442.405500px;}
.y17_c00205{bottom:442.635000px;}
.y16_c00205{bottom:443.800500px;}
.y15_c00205{bottom:444.061500px;}
.y14_c00205{bottom:444.298500px;}
.y13_c00205{bottom:445.275000px;}
.y12_c00205{bottom:445.732500px;}
.y11_c00205{bottom:446.520000px;}
.y10_c00205{bottom:446.853000px;}
.yf_c00205{bottom:463.081500px;}
.ye_c00205{bottom:480.219000px;}
.yd_c00205{bottom:497.074500px;}
.yc_c00205{bottom:514.533000px;}
.yb_c00205{bottom:532.102500px;}
.ya_c00205{bottom:547.488000px;}
.y9_c00205{bottom:547.995000px;}
.y8_c00205{bottom:548.175000px;}
.y7_c00205{bottom:548.748000px;}
.y6_c00205{bottom:549.096000px;}
.y5_c00205{bottom:549.285000px;}
.y4_c00205{bottom:549.508500px;}
.y3_c00205{bottom:549.991500px;}
.y2_c00205{bottom:566.254500px;}
.y1_c00205{bottom:582.526500px;}
.h10_c00205{height:22.050000px;}
.h11_c00205{height:35.700000px;}
.ha_c00205{height:57.750000px;}
.h2_c00205{height:58.800000px;}
.h9_c00205{height:59.850000px;}
.h7_c00205{height:60.900000px;}
.h8_c00205{height:61.950000px;}
.hc_c00205{height:63.000000px;}
.hd_c00205{height:64.050000px;}
.hf_c00205{height:65.100000px;}
.h6_c00205{height:66.150000px;}
.h4_c00205{height:67.200000px;}
.hb_c00205{height:68.250000px;}
.h5_c00205{height:69.300000px;}
.h3_c00205{height:70.350000px;}
.he_c00205{height:74.550000px;}
.h1_c00205{height:623.250000px;}
.h0_c00205{height:623.400000px;}
.w0_c00205{width:366.390000px;}
.w1_c00205{width:366.750000px;}
.x0_c00205{left:0.000000px;}
.x7d_c00205{left:42.661500px;}
.x6d_c00205{left:44.010000px;}
.x12_c00205{left:45.360000px;}
.xb_c00205{left:46.902000px;}
.x2_c00205{left:48.330000px;}
.x57_c00205{left:51.297000px;}
.x6a_c00205{left:52.752000px;}
.x7b_c00205{left:56.971500px;}
.x7e_c00205{left:62.911500px;}
.x58_c00205{left:65.337000px;}
.x13_c00205{left:67.500000px;}
.x39_c00205{left:69.930000px;}
.x19_c00205{left:71.550000px;}
.x50_c00205{left:75.330000px;}
.x71_c00205{left:80.532000px;}
.x14_c00205{left:81.540000px;}
.x1a_c00205{left:85.320000px;}
.x5d_c00205{left:87.084000px;}
.x26_c00205{left:90.990000px;}
.x49_c00205{left:93.960000px;}
.xc_c00205{left:95.178000px;}
.x4c_c00205{left:99.630000px;}
.x1b_c00205{left:102.600000px;}
.x20_c00205{left:106.650000px;}
.x6b_c00205{left:110.256000px;}
.x2c_c00205{left:111.510000px;}
.x32_c00205{left:116.518500px;}
.xd_c00205{left:117.574500px;}
.x4d_c00205{left:123.390000px;}
.x3f_c00205{left:125.010000px;}
.x51_c00205{left:126.630000px;}
.x59_c00205{left:128.517000px;}
.x3_c00205{left:129.600000px;}
.x5e_c00205{left:131.637000px;}
.x70_c00205{left:133.650000px;}
.x43_c00205{left:135.384000px;}
.xe_c00205{left:136.497000px;}
.x2d_c00205{left:137.970000px;}
.x40_c00205{left:140.130000px;}
.x4_c00205{left:142.020000px;}
.x54_c00205{left:143.718000px;}
.x33_c00205{left:145.066500px;}
.x65_c00205{left:147.778500px;}
.x27_c00205{left:150.120000px;}
.x67_c00205{left:155.091000px;}
.x3a_c00205{left:159.570000px;}
.x2e_c00205{left:160.920000px;}
.x74_c00205{left:162.001500px;}
.x5f_c00205{left:163.201500px;}
.x5a_c00205{left:164.427000px;}
.x28_c00205{left:168.210000px;}
.x5_c00205{left:170.100000px;}
.xf_c00205{left:171.325500px;}
.x4e_c00205{left:174.150000px;}
.x47_c00205{left:177.120000px;}
.x15_c00205{left:178.470000px;}
.x1_c00205{left:181.170000px;}
.x21_c00205{left:183.870000px;}
.x6_c00205{left:187.650000px;}
.x44_c00205{left:189.148500px;}
.x41_c00205{left:192.510000px;}
.x78_c00205{left:194.671500px;}
.x4a_c00205{left:196.560000px;}
.x3b_c00205{left:199.530000px;}
.x22_c00205{left:201.420000px;}
.x62_c00205{left:202.881000px;}
.x72_c00205{left:203.928000px;}
.x29_c00205{left:206.280000px;}
.x2f_c00205{left:208.710000px;}
.x1c_c00205{left:210.870000px;}
.x79_c00205{left:214.111500px;}
.x36_c00205{left:216.270000px;}
.x68_c00205{left:217.728000px;}
.x6e_c00205{left:219.510000px;}
.x34_c00205{left:220.921500px;}
.x63_c00205{left:223.191000px;}
.x3c_c00205{left:224.910000px;}
.x7_c00205{left:226.530000px;}
.x10_c00205{left:228.606000px;}
.x75_c00205{left:231.391500px;}
.x55_c00205{left:233.112000px;}
.x37_c00205{left:234.360000px;}
.x42_c00205{left:235.710000px;}
.x35_c00205{left:237.190500px;}
.x60_c00205{left:238.281000px;}
.x52_c00205{left:243.540000px;}
.x69_c00205{left:244.576500px;}
.x8_c00205{left:245.970000px;}
.x30_c00205{left:247.050000px;}
.x1d_c00205{left:248.670000px;}
.x38_c00205{left:251.910000px;}
.x64_c00205{left:254.716500px;}
.x4f_c00205{left:256.500000px;}
.x23_c00205{left:258.390000px;}
.x16_c00205{left:261.630000px;}
.x7c_c00205{left:270.001500px;}
.x2a_c00205{left:271.620000px;}
.x45_c00205{left:273.954000px;}
.x31_c00205{left:276.750000px;}
.x3d_c00205{left:278.640000px;}
.x6c_c00205{left:279.846000px;}
.x61_c00205{left:283.096500px;}
.x4b_c00205{left:284.310000px;}
.x7a_c00205{left:285.931500px;}
.x46_c00205{left:287.383500px;}
.x9_c00205{left:289.170000px;}
.x48_c00205{left:291.600000px;}
.x2b_c00205{left:292.680000px;}
.x17_c00205{left:294.030000px;}
.x11_c00205{left:297.403500px;}
.x5b_c00205{left:300.237000px;}
.x1e_c00205{left:302.670000px;}
.x53_c00205{left:304.666500px;}
.x56_c00205{left:307.617000px;}
.x24_c00205{left:309.690000px;}
.x18_c00205{left:310.770000px;}
.xa_c00205{left:312.660000px;}
.x76_c00205{left:315.631500px;}
.x73_c00205{left:317.565000px;}
.x5c_c00205{left:321.027000px;}
.x66_c00205{left:323.539500px;}
.x1f_c00205{left:324.540000px;}
.x3e_c00205{left:326.160000px;}
.x25_c00205{left:327.240000px;}
.x77_c00205{left:328.591500px;}
.x6f_c00205{left:330.750000px;}
.x80_c00205{left:364.230000px;}
.x7f_c00205{left:365.310000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
.fse_c00205{font-size:19.600000pt;}
.fsf_c00205{font-size:31.733333pt;}
.fs8_c00205{font-size:51.333333pt;}
.fs0_c00205{font-size:52.266667pt;}
.fs7_c00205{font-size:53.200000pt;}
.fs5_c00205{font-size:54.133333pt;}
.fs6_c00205{font-size:55.066667pt;}
.fsa_c00205{font-size:56.000000pt;}
.fsb_c00205{font-size:56.933333pt;}
.fsd_c00205{font-size:57.866667pt;}
.fs4_c00205{font-size:58.800000pt;}
.fs2_c00205{font-size:59.733333pt;}
.fs9_c00205{font-size:60.666667pt;}
.fs3_c00205{font-size:61.600000pt;}
.fs1_c00205{font-size:62.533333pt;}
.fsc_c00205{font-size:66.266667pt;}
.y0_c00205{bottom:0.000000pt;}
.y66_c00205{bottom:27.492000pt;}
.y65_c00205{bottom:44.296000pt;}
.y64_c00205{bottom:58.800000pt;}
.y63_c00205{bottom:73.786667pt;}
.y62_c00205{bottom:89.040000pt;}
.y61_c00205{bottom:102.708000pt;}
.y60_c00205{bottom:103.248000pt;}
.y5f_c00205{bottom:103.493333pt;}
.y5e_c00205{bottom:104.224000pt;}
.y5d_c00205{bottom:104.576000pt;}
.y5c_c00205{bottom:105.009333pt;}
.y5b_c00205{bottom:105.869333pt;}
.y5a_c00205{bottom:106.322667pt;}
.y59_c00205{bottom:120.586667pt;}
.y58_c00205{bottom:136.025333pt;}
.y57_c00205{bottom:150.382667pt;}
.y56_c00205{bottom:150.738667pt;}
.y55_c00205{bottom:151.672000pt;}
.y54_c00205{bottom:152.464000pt;}
.y53_c00205{bottom:152.698667pt;}
.y52_c00205{bottom:153.362667pt;}
.y51_c00205{bottom:167.129333pt;}
.y50_c00205{bottom:167.440000pt;}
.y4f_c00205{bottom:168.164000pt;}
.y4e_c00205{bottom:169.165333pt;}
.y4d_c00205{bottom:169.442667pt;}
.y4c_c00205{bottom:180.620000pt;}
.y4b_c00205{bottom:181.325333pt;}
.y4a_c00205{bottom:181.556000pt;}
.y49_c00205{bottom:181.933333pt;}
.y48_c00205{bottom:182.245333pt;}
.y47_c00205{bottom:182.650667pt;}
.y46_c00205{bottom:182.856000pt;}
.y45_c00205{bottom:183.405333pt;}
.y44_c00205{bottom:183.842667pt;}
.y43_c00205{bottom:197.341333pt;}
.y42_c00205{bottom:197.546667pt;}
.y41_c00205{bottom:197.981333pt;}
.y40_c00205{bottom:198.345333pt;}
.y3f_c00205{bottom:198.580000pt;}
.y3e_c00205{bottom:199.269333pt;}
.y3d_c00205{bottom:199.732000pt;}
.y3c_c00205{bottom:200.402667pt;}
.y3b_c00205{bottom:212.682667pt;}
.y3a_c00205{bottom:212.893333pt;}
.y39_c00205{bottom:213.081333pt;}
.y38_c00205{bottom:213.580000pt;}
.y37_c00205{bottom:213.748000pt;}
.y36_c00205{bottom:214.028000pt;}
.y35_c00205{bottom:214.424000pt;}
.y34_c00205{bottom:214.801333pt;}
.y6a_c00205{bottom:228.000000pt;}
.y33_c00205{bottom:228.741333pt;}
.y69_c00205{bottom:234.720000pt;}
.y32_c00205{bottom:242.013333pt;}
.y31_c00205{bottom:242.940000pt;}
.y30_c00205{bottom:243.097333pt;}
.y2f_c00205{bottom:244.053333pt;}
.y2e_c00205{bottom:244.301333pt;}
.y2d_c00205{bottom:245.282667pt;}
.y2c_c00205{bottom:257.152000pt;}
.y2b_c00205{bottom:257.420000pt;}
.y2a_c00205{bottom:258.088000pt;}
.y29_c00205{bottom:258.396000pt;}
.y28_c00205{bottom:259.145333pt;}
.y27_c00205{bottom:259.922667pt;}
.y26_c00205{bottom:274.134667pt;}
.y25_c00205{bottom:289.469333pt;}
.y24_c00205{bottom:304.856000pt;}
.y68_c00205{bottom:318.480000pt;}
.y23_c00205{bottom:320.177333pt;}
.y67_c00205{bottom:326.400000pt;}
.y22_c00205{bottom:333.556000pt;}
.y21_c00205{bottom:334.033333pt;}
.y20_c00205{bottom:334.200000pt;}
.y1f_c00205{bottom:334.654667pt;}
.y1e_c00205{bottom:335.256000pt;}
.y1d_c00205{bottom:335.925333pt;}
.y1c_c00205{bottom:336.721333pt;}
.y1b_c00205{bottom:350.752000pt;}
.y1a_c00205{bottom:365.681333pt;}
.y19_c00205{bottom:381.000000pt;}
.y18_c00205{bottom:393.249333pt;}
.y17_c00205{bottom:393.453333pt;}
.y16_c00205{bottom:394.489333pt;}
.y15_c00205{bottom:394.721333pt;}
.y14_c00205{bottom:394.932000pt;}
.y13_c00205{bottom:395.800000pt;}
.y12_c00205{bottom:396.206667pt;}
.y11_c00205{bottom:396.906667pt;}
.y10_c00205{bottom:397.202667pt;}
.yf_c00205{bottom:411.628000pt;}
.ye_c00205{bottom:426.861333pt;}
.yd_c00205{bottom:441.844000pt;}
.yc_c00205{bottom:457.362667pt;}
.yb_c00205{bottom:472.980000pt;}
.ya_c00205{bottom:486.656000pt;}
.y9_c00205{bottom:487.106667pt;}
.y8_c00205{bottom:487.266667pt;}
.y7_c00205{bottom:487.776000pt;}
.y6_c00205{bottom:488.085333pt;}
.y5_c00205{bottom:488.253333pt;}
.y4_c00205{bottom:488.452000pt;}
.y3_c00205{bottom:488.881333pt;}
.y2_c00205{bottom:503.337333pt;}
.y1_c00205{bottom:517.801333pt;}
.h10_c00205{height:19.600000pt;}
.h11_c00205{height:31.733333pt;}
.ha_c00205{height:51.333333pt;}
.h2_c00205{height:52.266667pt;}
.h9_c00205{height:53.200000pt;}
.h7_c00205{height:54.133333pt;}
.h8_c00205{height:55.066667pt;}
.hc_c00205{height:56.000000pt;}
.hd_c00205{height:56.933333pt;}
.hf_c00205{height:57.866667pt;}
.h6_c00205{height:58.800000pt;}
.h4_c00205{height:59.733333pt;}
.hb_c00205{height:60.666667pt;}
.h5_c00205{height:61.600000pt;}
.h3_c00205{height:62.533333pt;}
.he_c00205{height:66.266667pt;}
.h1_c00205{height:554.000000pt;}
.h0_c00205{height:554.133333pt;}
.w0_c00205{width:325.680000pt;}
.w1_c00205{width:326.000000pt;}
.x0_c00205{left:0.000000pt;}
.x7d_c00205{left:37.921333pt;}
.x6d_c00205{left:39.120000pt;}
.x12_c00205{left:40.320000pt;}
.xb_c00205{left:41.690667pt;}
.x2_c00205{left:42.960000pt;}
.x57_c00205{left:45.597333pt;}
.x6a_c00205{left:46.890667pt;}
.x7b_c00205{left:50.641333pt;}
.x7e_c00205{left:55.921333pt;}
.x58_c00205{left:58.077333pt;}
.x13_c00205{left:60.000000pt;}
.x39_c00205{left:62.160000pt;}
.x19_c00205{left:63.600000pt;}
.x50_c00205{left:66.960000pt;}
.x71_c00205{left:71.584000pt;}
.x14_c00205{left:72.480000pt;}
.x1a_c00205{left:75.840000pt;}
.x5d_c00205{left:77.408000pt;}
.x26_c00205{left:80.880000pt;}
.x49_c00205{left:83.520000pt;}
.xc_c00205{left:84.602667pt;}
.x4c_c00205{left:88.560000pt;}
.x1b_c00205{left:91.200000pt;}
.x20_c00205{left:94.800000pt;}
.x6b_c00205{left:98.005333pt;}
.x2c_c00205{left:99.120000pt;}
.x32_c00205{left:103.572000pt;}
.xd_c00205{left:104.510667pt;}
.x4d_c00205{left:109.680000pt;}
.x3f_c00205{left:111.120000pt;}
.x51_c00205{left:112.560000pt;}
.x59_c00205{left:114.237333pt;}
.x3_c00205{left:115.200000pt;}
.x5e_c00205{left:117.010667pt;}
.x70_c00205{left:118.800000pt;}
.x43_c00205{left:120.341333pt;}
.xe_c00205{left:121.330667pt;}
.x2d_c00205{left:122.640000pt;}
.x40_c00205{left:124.560000pt;}
.x4_c00205{left:126.240000pt;}
.x54_c00205{left:127.749333pt;}
.x33_c00205{left:128.948000pt;}
.x65_c00205{left:131.358667pt;}
.x27_c00205{left:133.440000pt;}
.x67_c00205{left:137.858667pt;}
.x3a_c00205{left:141.840000pt;}
.x2e_c00205{left:143.040000pt;}
.x74_c00205{left:144.001333pt;}
.x5f_c00205{left:145.068000pt;}
.x5a_c00205{left:146.157333pt;}
.x28_c00205{left:149.520000pt;}
.x5_c00205{left:151.200000pt;}
.xf_c00205{left:152.289333pt;}
.x4e_c00205{left:154.800000pt;}
.x47_c00205{left:157.440000pt;}
.x15_c00205{left:158.640000pt;}
.x1_c00205{left:161.040000pt;}
.x21_c00205{left:163.440000pt;}
.x6_c00205{left:166.800000pt;}
.x44_c00205{left:168.132000pt;}
.x41_c00205{left:171.120000pt;}
.x78_c00205{left:173.041333pt;}
.x4a_c00205{left:174.720000pt;}
.x3b_c00205{left:177.360000pt;}
.x22_c00205{left:179.040000pt;}
.x62_c00205{left:180.338667pt;}
.x72_c00205{left:181.269333pt;}
.x29_c00205{left:183.360000pt;}
.x2f_c00205{left:185.520000pt;}
.x1c_c00205{left:187.440000pt;}
.x79_c00205{left:190.321333pt;}
.x36_c00205{left:192.240000pt;}
.x68_c00205{left:193.536000pt;}
.x6e_c00205{left:195.120000pt;}
.x34_c00205{left:196.374667pt;}
.x63_c00205{left:198.392000pt;}
.x3c_c00205{left:199.920000pt;}
.x7_c00205{left:201.360000pt;}
.x10_c00205{left:203.205333pt;}
.x75_c00205{left:205.681333pt;}
.x55_c00205{left:207.210667pt;}
.x37_c00205{left:208.320000pt;}
.x42_c00205{left:209.520000pt;}
.x35_c00205{left:210.836000pt;}
.x60_c00205{left:211.805333pt;}
.x52_c00205{left:216.480000pt;}
.x69_c00205{left:217.401333pt;}
.x8_c00205{left:218.640000pt;}
.x30_c00205{left:219.600000pt;}
.x1d_c00205{left:221.040000pt;}
.x38_c00205{left:223.920000pt;}
.x64_c00205{left:226.414667pt;}
.x4f_c00205{left:228.000000pt;}
.x23_c00205{left:229.680000pt;}
.x16_c00205{left:232.560000pt;}
.x7c_c00205{left:240.001333pt;}
.x2a_c00205{left:241.440000pt;}
.x45_c00205{left:243.514667pt;}
.x31_c00205{left:246.000000pt;}
.x3d_c00205{left:247.680000pt;}
.x6c_c00205{left:248.752000pt;}
.x61_c00205{left:251.641333pt;}
.x4b_c00205{left:252.720000pt;}
.x7a_c00205{left:254.161333pt;}
.x46_c00205{left:255.452000pt;}
.x9_c00205{left:257.040000pt;}
.x48_c00205{left:259.200000pt;}
.x2b_c00205{left:260.160000pt;}
.x17_c00205{left:261.360000pt;}
.x11_c00205{left:264.358667pt;}
.x5b_c00205{left:266.877333pt;}
.x1e_c00205{left:269.040000pt;}
.x53_c00205{left:270.814667pt;}
.x56_c00205{left:273.437333pt;}
.x24_c00205{left:275.280000pt;}
.x18_c00205{left:276.240000pt;}
.xa_c00205{left:277.920000pt;}
.x76_c00205{left:280.561333pt;}
.x73_c00205{left:282.280000pt;}
.x5c_c00205{left:285.357333pt;}
.x66_c00205{left:287.590667pt;}
.x1f_c00205{left:288.480000pt;}
.x3e_c00205{left:289.920000pt;}
.x25_c00205{left:290.880000pt;}
.x77_c00205{left:292.081333pt;}
.x6f_c00205{left:294.000000pt;}
.x80_c00205{left:323.760000pt;}
.x7f_c00205{left:324.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00206 {
    display:none;
  }
  .loading-indicator_c00206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00206 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00206 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00206" -> "#page-container .classname_c00206")
 */
.pf_c00206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00206 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00206 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00206 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00206 {overflow:visible;}
  }
}
.c_c00206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00206 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00206:after { /* webkit #35443 */
  content: '';
}
.t_c00206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00206 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00206 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00206 { /* info for Javascript */
  display:none;
}
.l_c00206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00206:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00206 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00206.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c00206{transform:matrix(0.120685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120685,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.132665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132665,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.133785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133785,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);}
.mb9_c00206{transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);}
.mb2_c00206{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00206{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);}
.m90_c00206{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.m9a_c00206{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.mb4_c00206{transform:matrix(0.153880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153880,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m35_c00206{transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);}
.mb3_c00206{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.m67_c00206{transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);}
.ma3_c00206{transform:matrix(0.158760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158760,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.md7_c00206{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);}
.m37_c00206{transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.mcd_c00206{transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);}
.m88_c00206{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m93_c00206{transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);}
.mdb_c00206{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.md6_c00206{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);}
.me3_c00206{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.m7e_c00206{transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172210,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);}
.m83_c00206{transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m6a_c00206{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m68_c00206{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m99_c00206{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m79_c00206{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.ma8_c00206{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m91_c00206{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{transform:matrix(0.179815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m66_c00206{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m70_c00206{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00206{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00206{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m80_c00206{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.mcf_c00206{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);}
.md5_c00206{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.m4c_c00206{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m9e_c00206{transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);}
.mbd_c00206{transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185120,0.000000,0.000000,0.250000,0,0);}
.m73_c00206{transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);}
.mb6_c00206{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m8f_c00206{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.mda_c00206{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186630,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mab_c00206{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m56_c00206{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.m2e_c00206{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.me5_c00206{transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);}
.m4e_c00206{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m94_c00206{transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189035,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);}
.m97_c00206{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m57_c00206{transform:matrix(0.190030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190030,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m45_c00206{transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00206{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m92_c00206{transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);}
.m26_c00206{transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.md8_c00206{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m43_c00206{transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);}
.m96_c00206{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mc3_c00206{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00206{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m78_c00206{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.mba_c00206{transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);}
.mae_c00206{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00206{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m20_c00206{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00206{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m87_c00206{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.mdc_c00206{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);}
.m8a_c00206{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.ma5_c00206{transform:matrix(0.200485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200485,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{transform:matrix(0.200955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200955,0.000000,0.000000,0.250000,0,0);}
.m17_c00206{transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);}
.m6d_c00206{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00206{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.mde_c00206{transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00206{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m28_c00206{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.ma6_c00206{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m89_c00206{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.me2_c00206{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.mbf_c00206{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mc1_c00206{transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.me0_c00206{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.mc9_c00206{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.mc2_c00206{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.m75_c00206{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.ma9_c00206{transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);}
.me1_c00206{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.m85_c00206{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m50_c00206{transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);}
.mc7_c00206{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.md2_c00206{transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);}
.maa_c00206{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m7d_c00206{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m6e_c00206{transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);}
.me7_c00206{transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);}
.mc8_c00206{transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212505,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);}
.md0_c00206{transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);}
.m69_c00206{transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);}
.me6_c00206{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00206{transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);}
.md9_c00206{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.mcc_c00206{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.md4_c00206{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.mbb_c00206{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);}
.md1_c00206{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00206{transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);}
.me8_c00206{transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.m77_c00206{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.m6f_c00206{transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m3c_c00206{transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217630,0.000000,0.000000,0.250000,0,0);}
.mcb_c00206{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m95_c00206{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m86_c00206{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m7b_c00206{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.m9b_c00206{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.mbe_c00206{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);}
.mca_c00206{transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);}
.m8c_c00206{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.me4_c00206{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00206{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mb0_c00206{transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m6c_c00206{transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);}
.md3_c00206{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);}
.ma7_c00206{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m82_c00206{transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);}
.mc6_c00206{transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);}
.m47_c00206{transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);}
.mc5_c00206{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.mea_c00206{transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);}
.me9_c00206{transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.m4d_c00206{transform:matrix(0.239145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239145,0.000000,0.000000,0.250000,0,0);}
.mce_c00206{transform:matrix(0.239985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239985,0.000000,0.000000,0.250000,0,0);}
.maf_c00206{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.242680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242680,0.000000,0.000000,0.250000,0,0);}
.m81_c00206{transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);}
.m61_c00206{transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.255205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255205,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);}
.m84_c00206{transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);}
.ma2_c00206{transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);}
.mdd_c00206{transform:matrix(0.260805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260805,0.000000,0.000000,0.250000,0,0);}
.mb1_c00206{transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);}
.m76_c00206{transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);}
.mac_c00206{transform:matrix(0.265395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265395,0.000000,0.000000,0.250000,0,0);}
.m4a_c00206{transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);}
.m5c_c00206{transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);}
.m5f_c00206{transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);}
.m9c_c00206{transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00206{transform:matrix(0.347230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347230,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00206{transform:matrix(0.350345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350345,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:0.000000px;}
.fc0_c00206{color:transparent;}
.fsb_c00206{font-size:54.600000px;}
.fs8_c00206{font-size:55.650000px;}
.fsd_c00206{font-size:57.750000px;}
.fs0_c00206{font-size:58.800000px;}
.fs7_c00206{font-size:59.850000px;}
.fs9_c00206{font-size:60.900000px;}
.fs1_c00206{font-size:61.950000px;}
.fs6_c00206{font-size:63.000000px;}
.fs5_c00206{font-size:64.050000px;}
.fs3_c00206{font-size:66.150000px;}
.fs2_c00206{font-size:67.200000px;}
.fsa_c00206{font-size:68.250000px;}
.fsc_c00206{font-size:69.300000px;}
.fse_c00206{font-size:70.350000px;}
.fs4_c00206{font-size:72.450000px;}
.y0_c00206{bottom:0.000000px;}
.y88_c00206{bottom:33.646500px;}
.y87_c00206{bottom:51.568500px;}
.y86_c00206{bottom:66.505500px;}
.y85_c00206{bottom:67.194000px;}
.y84_c00206{bottom:67.794000px;}
.y83_c00206{bottom:68.073000px;}
.y82_c00206{bottom:68.737500px;}
.y81_c00206{bottom:69.514500px;}
.y80_c00206{bottom:69.813000px;}
.y7f_c00206{bottom:70.149000px;}
.y7e_c00206{bottom:70.741500px;}
.y7d_c00206{bottom:86.275500px;}
.y7c_c00206{bottom:101.820000px;}
.y7b_c00206{bottom:121.555500px;}
.y7a_c00206{bottom:138.325500px;}
.y79_c00206{bottom:153.214500px;}
.y78_c00206{bottom:170.350500px;}
.y77_c00206{bottom:171.043500px;}
.y76_c00206{bottom:171.274500px;}
.y75_c00206{bottom:172.032000px;}
.y74_c00206{bottom:173.026500px;}
.y73_c00206{bottom:173.341500px;}
.y6a_c00206{bottom:183.873000px;}
.y6b_c00206{bottom:184.125000px;}
.y6c_c00206{bottom:185.005500px;}
.y6d_c00206{bottom:185.292000px;}
.y6e_c00206{bottom:185.901000px;}
.y6f_c00206{bottom:186.124500px;}
.y70_c00206{bottom:186.835500px;}
.y71_c00206{bottom:187.126500px;}
.y72_c00206{bottom:187.500000px;}
.y69_c00206{bottom:204.571500px;}
.y68_c00206{bottom:222.448500px;}
.y67_c00206{bottom:239.313000px;}
.y66_c00206{bottom:257.070000px;}
.y65_c00206{bottom:274.656000px;}
.y64_c00206{bottom:291.727500px;}
.y5c_c00206{bottom:307.530000px;}
.y5d_c00206{bottom:307.881000px;}
.y5e_c00206{bottom:308.269500px;}
.y5f_c00206{bottom:308.790000px;}
.y60_c00206{bottom:309.124500px;}
.y61_c00206{bottom:309.681000px;}
.y62_c00206{bottom:309.976500px;}
.y63_c00206{bottom:310.179000px;}
.y5b_c00206{bottom:325.897500px;}
.y55_c00206{bottom:339.934500px;}
.y56_c00206{bottom:340.693500px;}
.y57_c00206{bottom:341.463000px;}
.y58_c00206{bottom:342.940500px;}
.y59_c00206{bottom:343.392000px;}
.y5a_c00206{bottom:344.685000px;}
.y54_c00206{bottom:358.137000px;}
.y4c_c00206{bottom:373.951500px;}
.y4d_c00206{bottom:374.767500px;}
.y4e_c00206{bottom:375.099000px;}
.y4f_c00206{bottom:375.294000px;}
.y50_c00206{bottom:375.669000px;}
.y51_c00206{bottom:375.886500px;}
.y52_c00206{bottom:376.686000px;}
.y53_c00206{bottom:377.169000px;}
.y45_c00206{bottom:391.503000px;}
.y46_c00206{bottom:391.932000px;}
.y47_c00206{bottom:392.536500px;}
.y48_c00206{bottom:392.712000px;}
.y49_c00206{bottom:393.283500px;}
.y4a_c00206{bottom:393.594000px;}
.y4b_c00206{bottom:393.915000px;}
.y3e_c00206{bottom:408.513000px;}
.y3f_c00206{bottom:409.608000px;}
.y40_c00206{bottom:409.923000px;}
.y41_c00206{bottom:410.454000px;}
.y42_c00206{bottom:411.129000px;}
.y43_c00206{bottom:411.498000px;}
.y44_c00206{bottom:411.937500px;}
.y37_c00206{bottom:425.253000px;}
.y38_c00206{bottom:425.449500px;}
.y39_c00206{bottom:426.123000px;}
.y3a_c00206{bottom:426.277500px;}
.y3b_c00206{bottom:427.069500px;}
.y3c_c00206{bottom:427.423500px;}
.y3d_c00206{bottom:427.956000px;}
.y2f_c00206{bottom:441.453000px;}
.y30_c00206{bottom:442.062000px;}
.y31_c00206{bottom:442.683000px;}
.y32_c00206{bottom:443.215500px;}
.y33_c00206{bottom:444.208500px;}
.y34_c00206{bottom:444.490500px;}
.y35_c00206{bottom:445.375500px;}
.y36_c00206{bottom:445.536000px;}
.y26_c00206{bottom:459.543000px;}
.y27_c00206{bottom:459.816000px;}
.y28_c00206{bottom:460.518000px;}
.y29_c00206{bottom:461.065500px;}
.y2a_c00206{bottom:461.754000px;}
.y2b_c00206{bottom:462.055500px;}
.y2c_c00206{bottom:462.259500px;}
.y2d_c00206{bottom:462.880500px;}
.y2e_c00206{bottom:463.237500px;}
.y25_c00206{bottom:478.438500px;}
.y1e_c00206{bottom:491.407500px;}
.y1f_c00206{bottom:492.627000px;}
.y20_c00206{bottom:493.297500px;}
.y21_c00206{bottom:494.668500px;}
.y22_c00206{bottom:495.186000px;}
.y23_c00206{bottom:496.377000px;}
.y24_c00206{bottom:496.765500px;}
.y18_c00206{bottom:509.767500px;}
.y19_c00206{bottom:511.018500px;}
.y1a_c00206{bottom:512.152500px;}
.y1b_c00206{bottom:513.250500px;}
.y1c_c00206{bottom:514.681500px;}
.y1d_c00206{bottom:515.133000px;}
.y11_c00206{bottom:525.697500px;}
.y12_c00206{bottom:526.422000px;}
.y13_c00206{bottom:526.971000px;}
.y14_c00206{bottom:528.256500px;}
.y15_c00206{bottom:528.810000px;}
.y16_c00206{bottom:530.548500px;}
.y17_c00206{bottom:531.903000px;}
.y8_c00206{bottom:544.596000px;}
.y9_c00206{bottom:545.217000px;}
.ya_c00206{bottom:545.458500px;}
.yb_c00206{bottom:546.679500px;}
.yc_c00206{bottom:547.432500px;}
.yd_c00206{bottom:547.824000px;}
.ye_c00206{bottom:548.166000px;}
.yf_c00206{bottom:548.997000px;}
.y10_c00206{bottom:549.255000px;}
.y2_c00206{bottom:562.953000px;}
.y3_c00206{bottom:563.746500px;}
.y4_c00206{bottom:563.925000px;}
.y5_c00206{bottom:564.991500px;}
.y6_c00206{bottom:565.951500px;}
.y7_c00206{bottom:566.719500px;}
.y1_c00206{bottom:580.500000px;}
.hd_c00206{height:54.600000px;}
.ha_c00206{height:55.650000px;}
.hf_c00206{height:57.750000px;}
.h2_c00206{height:58.800000px;}
.h9_c00206{height:59.850000px;}
.hb_c00206{height:60.900000px;}
.h3_c00206{height:61.950000px;}
.h8_c00206{height:63.000000px;}
.h7_c00206{height:64.050000px;}
.h5_c00206{height:66.150000px;}
.h4_c00206{height:67.200000px;}
.hc_c00206{height:68.250000px;}
.he_c00206{height:69.300000px;}
.h10_c00206{height:70.350000px;}
.h6_c00206{height:72.450000px;}
.h1_c00206{height:623.250000px;}
.h0_c00206{height:623.400000px;}
.w0_c00206{width:366.390000px;}
.w1_c00206{width:366.750000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:33.642000px;}
.x39_c00206{left:34.953000px;}
.x56_c00206{left:36.717000px;}
.x61_c00206{left:37.797000px;}
.x72_c00206{left:39.145500px;}
.x42_c00206{left:49.102500px;}
.x2c_c00206{left:51.423000px;}
.x51_c00206{left:52.917000px;}
.x23_c00206{left:54.937500px;}
.x58_c00206{left:56.967000px;}
.x74_c00206{left:59.125500px;}
.x6a_c00206{left:62.095500px;}
.x3e_c00206{left:63.447000px;}
.x10_c00206{left:64.984500px;}
.x8_c00206{left:66.627000px;}
.x4b_c00206{left:70.056000px;}
.x27_c00206{left:71.994000px;}
.x35_c00206{left:77.311500px;}
.x9_c00206{left:79.323000px;}
.x4e_c00206{left:80.457000px;}
.x3f_c00206{left:82.887000px;}
.x5d_c00206{left:85.587000px;}
.x11_c00206{left:88.869000px;}
.x3_c00206{left:90.307500px;}
.x1e_c00206{left:95.844000px;}
.x15_c00206{left:99.028500px;}
.x6f_c00206{left:101.245500px;}
.x4_c00206{left:103.029000px;}
.x5e_c00206{left:105.837000px;}
.x45_c00206{left:107.187000px;}
.x24_c00206{left:108.939000px;}
.x28_c00206{left:110.821500px;}
.x2d_c00206{left:112.638000px;}
.x1a_c00206{left:118.804500px;}
.x76_c00206{left:121.069500px;}
.x46_c00206{left:122.847000px;}
.x57_c00206{left:123.927000px;}
.x31_c00206{left:125.056500px;}
.x2e_c00206{left:126.744000px;}
.x3a_c00206{left:130.519500px;}
.x6b_c00206{left:134.185500px;}
.x36_c00206{left:137.788500px;}
.x66_c00206{left:139.497000px;}
.x40_c00206{left:141.747000px;}
.xa_c00206{left:143.569500px;}
.x12_c00206{left:144.735000px;}
.x3b_c00206{left:146.730000px;}
.x70_c00206{left:147.955500px;}
.x1f_c00206{left:150.924000px;}
.x52_c00206{left:152.817000px;}
.x79_c00206{left:154.167000px;}
.x37_c00206{left:155.353500px;}
.x16_c00206{left:158.718000px;}
.x4c_c00206{left:161.026500px;}
.x1_c00206{left:165.240000px;}
.x5f_c00206{left:166.587000px;}
.x13_c00206{left:168.808500px;}
.x6d_c00206{left:172.795500px;}
.x6c_c00206{left:176.305500px;}
.x3c_c00206{left:177.987000px;}
.x5_c00206{left:179.166000px;}
.x1b_c00206{left:181.156500px;}
.xb_c00206{left:183.189000px;}
.x59_c00206{left:184.407000px;}
.x41_c00206{left:186.297000px;}
.x62_c00206{left:188.997000px;}
.x47_c00206{left:194.127000px;}
.x32_c00206{left:195.549000px;}
.x2f_c00206{left:198.786000px;}
.xc_c00206{left:203.803500px;}
.x29_c00206{left:206.116500px;}
.x43_c00206{left:207.331500px;}
.x60_c00206{left:209.247000px;}
.x68_c00206{left:210.481500px;}
.x38_c00206{left:212.547000px;}
.x17_c00206{left:216.498000px;}
.x20_c00206{left:220.314000px;}
.xd_c00206{left:221.835000px;}
.x2a_c00206{left:223.752000px;}
.x73_c00206{left:225.715500px;}
.x25_c00206{left:227.209500px;}
.x63_c00206{left:229.767000px;}
.x30_c00206{left:230.971500px;}
.x53_c00206{left:232.467000px;}
.x78_c00206{left:234.087000px;}
.x48_c00206{left:235.707000px;}
.x7a_c00206{left:241.917000px;}
.x21_c00206{left:243.264000px;}
.x14_c00206{left:244.374000px;}
.x6_c00206{left:247.770000px;}
.x4d_c00206{left:250.101000px;}
.x33_c00206{left:251.766000px;}
.x54_c00206{left:254.607000px;}
.x6e_c00206{left:257.035500px;}
.x1c_c00206{left:258.807000px;}
.x3d_c00206{left:262.842000px;}
.xe_c00206{left:265.533000px;}
.x5a_c00206{left:268.647000px;}
.x67_c00206{left:270.402000px;}
.x4f_c00206{left:271.887000px;}
.x64_c00206{left:272.967000px;}
.x49_c00206{left:275.397000px;}
.x1d_c00206{left:276.472500px;}
.xf_c00206{left:279.145500px;}
.x34_c00206{left:282.558000px;}
.x5b_c00206{left:285.117000px;}
.x69_c00206{left:287.442000px;}
.x2b_c00206{left:289.027500px;}
.x26_c00206{left:290.667000px;}
.x18_c00206{left:291.841500px;}
.x75_c00206{left:294.565500px;}
.x4a_c00206{left:297.807000px;}
.x44_c00206{left:299.140500px;}
.x7_c00206{left:302.580000px;}
.x5c_c00206{left:306.447000px;}
.x71_c00206{left:311.575500px;}
.x19_c00206{left:315.603000px;}
.x55_c00206{left:317.247000px;}
.x22_c00206{left:318.324000px;}
.x77_c00206{left:321.619500px;}
.x50_c00206{left:322.647000px;}
.x65_c00206{left:331.827000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.fsb_c00206{font-size:48.533333pt;}
.fs8_c00206{font-size:49.466667pt;}
.fsd_c00206{font-size:51.333333pt;}
.fs0_c00206{font-size:52.266667pt;}
.fs7_c00206{font-size:53.200000pt;}
.fs9_c00206{font-size:54.133333pt;}
.fs1_c00206{font-size:55.066667pt;}
.fs6_c00206{font-size:56.000000pt;}
.fs5_c00206{font-size:56.933333pt;}
.fs3_c00206{font-size:58.800000pt;}
.fs2_c00206{font-size:59.733333pt;}
.fsa_c00206{font-size:60.666667pt;}
.fsc_c00206{font-size:61.600000pt;}
.fse_c00206{font-size:62.533333pt;}
.fs4_c00206{font-size:64.400000pt;}
.y0_c00206{bottom:0.000000pt;}
.y88_c00206{bottom:29.908000pt;}
.y87_c00206{bottom:45.838667pt;}
.y86_c00206{bottom:59.116000pt;}
.y85_c00206{bottom:59.728000pt;}
.y84_c00206{bottom:60.261333pt;}
.y83_c00206{bottom:60.509333pt;}
.y82_c00206{bottom:61.100000pt;}
.y81_c00206{bottom:61.790667pt;}
.y80_c00206{bottom:62.056000pt;}
.y7f_c00206{bottom:62.354667pt;}
.y7e_c00206{bottom:62.881333pt;}
.y7d_c00206{bottom:76.689333pt;}
.y7c_c00206{bottom:90.506667pt;}
.y7b_c00206{bottom:108.049333pt;}
.y7a_c00206{bottom:122.956000pt;}
.y79_c00206{bottom:136.190667pt;}
.y78_c00206{bottom:151.422667pt;}
.y77_c00206{bottom:152.038667pt;}
.y76_c00206{bottom:152.244000pt;}
.y75_c00206{bottom:152.917333pt;}
.y74_c00206{bottom:153.801333pt;}
.y73_c00206{bottom:154.081333pt;}
.y6a_c00206{bottom:163.442667pt;}
.y6b_c00206{bottom:163.666667pt;}
.y6c_c00206{bottom:164.449333pt;}
.y6d_c00206{bottom:164.704000pt;}
.y6e_c00206{bottom:165.245333pt;}
.y6f_c00206{bottom:165.444000pt;}
.y70_c00206{bottom:166.076000pt;}
.y71_c00206{bottom:166.334667pt;}
.y72_c00206{bottom:166.666667pt;}
.y69_c00206{bottom:181.841333pt;}
.y68_c00206{bottom:197.732000pt;}
.y67_c00206{bottom:212.722667pt;}
.y66_c00206{bottom:228.506667pt;}
.y65_c00206{bottom:244.138667pt;}
.y64_c00206{bottom:259.313333pt;}
.y5c_c00206{bottom:273.360000pt;}
.y5d_c00206{bottom:273.672000pt;}
.y5e_c00206{bottom:274.017333pt;}
.y5f_c00206{bottom:274.480000pt;}
.y60_c00206{bottom:274.777333pt;}
.y61_c00206{bottom:275.272000pt;}
.y62_c00206{bottom:275.534667pt;}
.y63_c00206{bottom:275.714667pt;}
.y5b_c00206{bottom:289.686667pt;}
.y55_c00206{bottom:302.164000pt;}
.y56_c00206{bottom:302.838667pt;}
.y57_c00206{bottom:303.522667pt;}
.y58_c00206{bottom:304.836000pt;}
.y59_c00206{bottom:305.237333pt;}
.y5a_c00206{bottom:306.386667pt;}
.y54_c00206{bottom:318.344000pt;}
.y4c_c00206{bottom:332.401333pt;}
.y4d_c00206{bottom:333.126667pt;}
.y4e_c00206{bottom:333.421333pt;}
.y4f_c00206{bottom:333.594667pt;}
.y50_c00206{bottom:333.928000pt;}
.y51_c00206{bottom:334.121333pt;}
.y52_c00206{bottom:334.832000pt;}
.y53_c00206{bottom:335.261333pt;}
.y45_c00206{bottom:348.002667pt;}
.y46_c00206{bottom:348.384000pt;}
.y47_c00206{bottom:348.921333pt;}
.y48_c00206{bottom:349.077333pt;}
.y49_c00206{bottom:349.585333pt;}
.y4a_c00206{bottom:349.861333pt;}
.y4b_c00206{bottom:350.146667pt;}
.y3e_c00206{bottom:363.122667pt;}
.y3f_c00206{bottom:364.096000pt;}
.y40_c00206{bottom:364.376000pt;}
.y41_c00206{bottom:364.848000pt;}
.y42_c00206{bottom:365.448000pt;}
.y43_c00206{bottom:365.776000pt;}
.y44_c00206{bottom:366.166667pt;}
.y37_c00206{bottom:378.002667pt;}
.y38_c00206{bottom:378.177333pt;}
.y39_c00206{bottom:378.776000pt;}
.y3a_c00206{bottom:378.913333pt;}
.y3b_c00206{bottom:379.617333pt;}
.y3c_c00206{bottom:379.932000pt;}
.y3d_c00206{bottom:380.405333pt;}
.y2f_c00206{bottom:392.402667pt;}
.y30_c00206{bottom:392.944000pt;}
.y31_c00206{bottom:393.496000pt;}
.y32_c00206{bottom:393.969333pt;}
.y33_c00206{bottom:394.852000pt;}
.y34_c00206{bottom:395.102667pt;}
.y35_c00206{bottom:395.889333pt;}
.y36_c00206{bottom:396.032000pt;}
.y26_c00206{bottom:408.482667pt;}
.y27_c00206{bottom:408.725333pt;}
.y28_c00206{bottom:409.349333pt;}
.y29_c00206{bottom:409.836000pt;}
.y2a_c00206{bottom:410.448000pt;}
.y2b_c00206{bottom:410.716000pt;}
.y2c_c00206{bottom:410.897333pt;}
.y2d_c00206{bottom:411.449333pt;}
.y2e_c00206{bottom:411.766667pt;}
.y25_c00206{bottom:425.278667pt;}
.y1e_c00206{bottom:436.806667pt;}
.y1f_c00206{bottom:437.890667pt;}
.y20_c00206{bottom:438.486667pt;}
.y21_c00206{bottom:439.705333pt;}
.y22_c00206{bottom:440.165333pt;}
.y23_c00206{bottom:441.224000pt;}
.y24_c00206{bottom:441.569333pt;}
.y18_c00206{bottom:453.126667pt;}
.y19_c00206{bottom:454.238667pt;}
.y1a_c00206{bottom:455.246667pt;}
.y1b_c00206{bottom:456.222667pt;}
.y1c_c00206{bottom:457.494667pt;}
.y1d_c00206{bottom:457.896000pt;}
.y11_c00206{bottom:467.286667pt;}
.y12_c00206{bottom:467.930667pt;}
.y13_c00206{bottom:468.418667pt;}
.y14_c00206{bottom:469.561333pt;}
.y15_c00206{bottom:470.053333pt;}
.y16_c00206{bottom:471.598667pt;}
.y17_c00206{bottom:472.802667pt;}
.y8_c00206{bottom:484.085333pt;}
.y9_c00206{bottom:484.637333pt;}
.ya_c00206{bottom:484.852000pt;}
.yb_c00206{bottom:485.937333pt;}
.yc_c00206{bottom:486.606667pt;}
.yd_c00206{bottom:486.954667pt;}
.ye_c00206{bottom:487.258667pt;}
.yf_c00206{bottom:487.997333pt;}
.y10_c00206{bottom:488.226667pt;}
.y2_c00206{bottom:500.402667pt;}
.y3_c00206{bottom:501.108000pt;}
.y4_c00206{bottom:501.266667pt;}
.y5_c00206{bottom:502.214667pt;}
.y6_c00206{bottom:503.068000pt;}
.y7_c00206{bottom:503.750667pt;}
.y1_c00206{bottom:516.000000pt;}
.hd_c00206{height:48.533333pt;}
.ha_c00206{height:49.466667pt;}
.hf_c00206{height:51.333333pt;}
.h2_c00206{height:52.266667pt;}
.h9_c00206{height:53.200000pt;}
.hb_c00206{height:54.133333pt;}
.h3_c00206{height:55.066667pt;}
.h8_c00206{height:56.000000pt;}
.h7_c00206{height:56.933333pt;}
.h5_c00206{height:58.800000pt;}
.h4_c00206{height:59.733333pt;}
.hc_c00206{height:60.666667pt;}
.he_c00206{height:61.600000pt;}
.h10_c00206{height:62.533333pt;}
.h6_c00206{height:64.400000pt;}
.h1_c00206{height:554.000000pt;}
.h0_c00206{height:554.133333pt;}
.w0_c00206{width:325.680000pt;}
.w1_c00206{width:326.000000pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:29.904000pt;}
.x39_c00206{left:31.069333pt;}
.x56_c00206{left:32.637333pt;}
.x61_c00206{left:33.597333pt;}
.x72_c00206{left:34.796000pt;}
.x42_c00206{left:43.646667pt;}
.x2c_c00206{left:45.709333pt;}
.x51_c00206{left:47.037333pt;}
.x23_c00206{left:48.833333pt;}
.x58_c00206{left:50.637333pt;}
.x74_c00206{left:52.556000pt;}
.x6a_c00206{left:55.196000pt;}
.x3e_c00206{left:56.397333pt;}
.x10_c00206{left:57.764000pt;}
.x8_c00206{left:59.224000pt;}
.x4b_c00206{left:62.272000pt;}
.x27_c00206{left:63.994667pt;}
.x35_c00206{left:68.721333pt;}
.x9_c00206{left:70.509333pt;}
.x4e_c00206{left:71.517333pt;}
.x3f_c00206{left:73.677333pt;}
.x5d_c00206{left:76.077333pt;}
.x11_c00206{left:78.994667pt;}
.x3_c00206{left:80.273333pt;}
.x1e_c00206{left:85.194667pt;}
.x15_c00206{left:88.025333pt;}
.x6f_c00206{left:89.996000pt;}
.x4_c00206{left:91.581333pt;}
.x5e_c00206{left:94.077333pt;}
.x45_c00206{left:95.277333pt;}
.x24_c00206{left:96.834667pt;}
.x28_c00206{left:98.508000pt;}
.x2d_c00206{left:100.122667pt;}
.x1a_c00206{left:105.604000pt;}
.x76_c00206{left:107.617333pt;}
.x46_c00206{left:109.197333pt;}
.x57_c00206{left:110.157333pt;}
.x31_c00206{left:111.161333pt;}
.x2e_c00206{left:112.661333pt;}
.x3a_c00206{left:116.017333pt;}
.x6b_c00206{left:119.276000pt;}
.x36_c00206{left:122.478667pt;}
.x66_c00206{left:123.997333pt;}
.x40_c00206{left:125.997333pt;}
.xa_c00206{left:127.617333pt;}
.x12_c00206{left:128.653333pt;}
.x3b_c00206{left:130.426667pt;}
.x70_c00206{left:131.516000pt;}
.x1f_c00206{left:134.154667pt;}
.x52_c00206{left:135.837333pt;}
.x79_c00206{left:137.037333pt;}
.x37_c00206{left:138.092000pt;}
.x16_c00206{left:141.082667pt;}
.x4c_c00206{left:143.134667pt;}
.x1_c00206{left:146.880000pt;}
.x5f_c00206{left:148.077333pt;}
.x13_c00206{left:150.052000pt;}
.x6d_c00206{left:153.596000pt;}
.x6c_c00206{left:156.716000pt;}
.x3c_c00206{left:158.210667pt;}
.x5_c00206{left:159.258667pt;}
.x1b_c00206{left:161.028000pt;}
.xb_c00206{left:162.834667pt;}
.x59_c00206{left:163.917333pt;}
.x41_c00206{left:165.597333pt;}
.x62_c00206{left:167.997333pt;}
.x47_c00206{left:172.557333pt;}
.x32_c00206{left:173.821333pt;}
.x2f_c00206{left:176.698667pt;}
.xc_c00206{left:181.158667pt;}
.x29_c00206{left:183.214667pt;}
.x43_c00206{left:184.294667pt;}
.x60_c00206{left:185.997333pt;}
.x68_c00206{left:187.094667pt;}
.x38_c00206{left:188.930667pt;}
.x17_c00206{left:192.442667pt;}
.x20_c00206{left:195.834667pt;}
.xd_c00206{left:197.186667pt;}
.x2a_c00206{left:198.890667pt;}
.x73_c00206{left:200.636000pt;}
.x25_c00206{left:201.964000pt;}
.x63_c00206{left:204.237333pt;}
.x30_c00206{left:205.308000pt;}
.x53_c00206{left:206.637333pt;}
.x78_c00206{left:208.077333pt;}
.x48_c00206{left:209.517333pt;}
.x7a_c00206{left:215.037333pt;}
.x21_c00206{left:216.234667pt;}
.x14_c00206{left:217.221333pt;}
.x6_c00206{left:220.240000pt;}
.x4d_c00206{left:222.312000pt;}
.x33_c00206{left:223.792000pt;}
.x54_c00206{left:226.317333pt;}
.x6e_c00206{left:228.476000pt;}
.x1c_c00206{left:230.050667pt;}
.x3d_c00206{left:233.637333pt;}
.xe_c00206{left:236.029333pt;}
.x5a_c00206{left:238.797333pt;}
.x67_c00206{left:240.357333pt;}
.x4f_c00206{left:241.677333pt;}
.x64_c00206{left:242.637333pt;}
.x49_c00206{left:244.797333pt;}
.x1d_c00206{left:245.753333pt;}
.xf_c00206{left:248.129333pt;}
.x34_c00206{left:251.162667pt;}
.x5b_c00206{left:253.437333pt;}
.x69_c00206{left:255.504000pt;}
.x2b_c00206{left:256.913333pt;}
.x26_c00206{left:258.370667pt;}
.x18_c00206{left:259.414667pt;}
.x75_c00206{left:261.836000pt;}
.x4a_c00206{left:264.717333pt;}
.x44_c00206{left:265.902667pt;}
.x7_c00206{left:268.960000pt;}
.x5c_c00206{left:272.397333pt;}
.x71_c00206{left:276.956000pt;}
.x19_c00206{left:280.536000pt;}
.x55_c00206{left:281.997333pt;}
.x22_c00206{left:282.954667pt;}
.x77_c00206{left:285.884000pt;}
.x50_c00206{left:286.797333pt;}
.x65_c00206{left:294.957333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00207 {
    display:none;
  }
  .loading-indicator_c00207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00207 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00207 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00207" -> "#page-container .classname_c00207")
 */
.pf_c00207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00207 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00207 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00207 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00207 {overflow:visible;}
  }
}
.c_c00207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00207 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00207:after { /* webkit #35443 */
  content: '';
}
.t_c00207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00207 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00207 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00207 { /* info for Javascript */
  display:none;
}
.l_c00207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00207:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00207 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00207.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c00207{transform:matrix(0.145541,0.002911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145541,0.002911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145541,0.002911,-0.004999,0.249950,0,0);}
.md8_c00207{transform:matrix(0.149063,0.001491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149063,0.001491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149063,0.001491,-0.002500,0.249988,0,0);}
.m8c_c00207{transform:matrix(0.152085,0.003042,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152085,0.003042,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152085,0.003042,-0.004999,0.249950,0,0);}
.maf_c00207{transform:matrix(0.152180,0.003044,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152180,0.003044,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152180,0.003044,-0.004999,0.249950,0,0);}
.ma5_c00207{transform:matrix(0.153999,0.003080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153999,0.003080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153999,0.003080,-0.004999,0.249950,0,0);}
.md0_c00207{transform:matrix(0.154077,0.001541,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154077,0.001541,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154077,0.001541,-0.002500,0.249988,0,0);}
.m34_c00207{transform:matrix(0.154599,0.003092,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154599,0.003092,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154599,0.003092,-0.004999,0.249950,0,0);}
.m1e_c00207{transform:matrix(0.155040,0.002481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155040,0.002481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155040,0.002481,-0.003999,0.249968,0,0);}
.m89_c00207{transform:matrix(0.156309,0.003126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156309,0.003126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156309,0.003126,-0.004999,0.249950,0,0);}
.m99_c00207{transform:matrix(0.156319,0.003126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156319,0.003126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156319,0.003126,-0.004999,0.249950,0,0);}
.m8f_c00207{transform:matrix(0.156779,0.003136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156779,0.003136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156779,0.003136,-0.004999,0.249950,0,0);}
.m22_c00207{transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);}
.m9e_c00207{transform:matrix(0.158093,0.003162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158093,0.003162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158093,0.003162,-0.004999,0.249950,0,0);}
.m3a_c00207{transform:matrix(0.158283,0.003166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158283,0.003166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158283,0.003166,-0.004999,0.249950,0,0);}
.m54_c00207{transform:matrix(0.158493,0.003170,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158493,0.003170,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158493,0.003170,-0.004999,0.249950,0,0);}
.m88_c00207{transform:matrix(0.158988,0.003180,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158988,0.003180,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158988,0.003180,-0.004999,0.249950,0,0);}
.m2a_c00207{transform:matrix(0.160978,0.003220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160978,0.003220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160978,0.003220,-0.004999,0.249950,0,0);}
.m2d_c00207{transform:matrix(0.161043,0.003221,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161043,0.003221,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161043,0.003221,-0.004999,0.249950,0,0);}
.m57_c00207{transform:matrix(0.161308,0.003226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161308,0.003226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161308,0.003226,-0.004999,0.249950,0,0);}
.m1b_c00207{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.m40_c00207{transform:matrix(0.162408,0.003248,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162408,0.003248,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162408,0.003248,-0.004999,0.249950,0,0);}
.maa_c00207{transform:matrix(0.162672,0.003253,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162672,0.003253,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162672,0.003253,-0.004999,0.249950,0,0);}
.m43_c00207{transform:matrix(0.162687,0.003254,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162687,0.003254,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162687,0.003254,-0.004999,0.249950,0,0);}
.m3b_c00207{transform:matrix(0.165017,0.003300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165017,0.003300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165017,0.003300,-0.004999,0.249950,0,0);}
.m2f_c00207{transform:matrix(0.165272,0.003305,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165272,0.003305,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165272,0.003305,-0.004999,0.249950,0,0);}
.mac_c00207{transform:matrix(0.165897,0.003318,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165897,0.003318,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165897,0.003318,-0.004999,0.249950,0,0);}
.m42_c00207{transform:matrix(0.165942,0.003319,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165942,0.003319,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165942,0.003319,-0.004999,0.249950,0,0);}
.m7_c00207{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);}
.m85_c00207{transform:matrix(0.167561,0.003351,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167561,0.003351,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167561,0.003351,-0.004999,0.249950,0,0);}
.md5_c00207{transform:matrix(0.167672,0.001677,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167672,0.001677,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167672,0.001677,-0.002500,0.249988,0,0);}
.mc9_c00207{transform:matrix(0.167907,0.001679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167907,0.001679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167907,0.001679,-0.002500,0.249988,0,0);}
.mb1_c00207{transform:matrix(0.168051,0.003361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168051,0.003361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168051,0.003361,-0.004999,0.249950,0,0);}
.mcf_c00207{transform:matrix(0.168412,0.001684,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168412,0.001684,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168412,0.001684,-0.002500,0.249988,0,0);}
.m28_c00207{transform:matrix(0.168643,0.002698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168643,0.002698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168643,0.002698,-0.003999,0.249968,0,0);}
.mce_c00207{transform:matrix(0.168857,0.001689,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168857,0.001689,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168857,0.001689,-0.002500,0.249988,0,0);}
.m50_c00207{transform:matrix(0.169151,0.003383,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169151,0.003383,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169151,0.003383,-0.004999,0.249950,0,0);}
.mdc_c00207{transform:matrix(0.169307,0.001693,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169307,0.001693,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169307,0.001693,-0.002500,0.249988,0,0);}
.m38_c00207{transform:matrix(0.170331,0.003407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170331,0.003407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170331,0.003407,-0.004999,0.249950,0,0);}
.m80_c00207{transform:matrix(0.171101,0.003422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171101,0.003422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171101,0.003422,-0.004999,0.249950,0,0);}
.mbe_c00207{transform:matrix(0.171837,0.003609,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171837,0.003609,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171837,0.003609,-0.005249,0.249945,0,0);}
.mfa_c00207{transform:matrix(0.171876,0.001719,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171876,0.001719,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171876,0.001719,-0.002500,0.249988,0,0);}
.m9c_c00207{transform:matrix(0.171946,0.003439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171946,0.003439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171946,0.003439,-0.004999,0.249950,0,0);}
.m45_c00207{transform:matrix(0.172001,0.003440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172001,0.003440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172001,0.003440,-0.004999,0.249950,0,0);}
.m75_c00207{transform:matrix(0.172031,0.003441,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172031,0.003441,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172031,0.003441,-0.004999,0.249950,0,0);}
.m18_c00207{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.172738,0.002764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172738,0.002764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172738,0.002764,-0.003999,0.249968,0,0);}
.m20_c00207{transform:matrix(0.172778,0.002764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172778,0.002764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172778,0.002764,-0.003999,0.249968,0,0);}
.m6a_c00207{transform:matrix(0.173285,0.003466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173285,0.003466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173285,0.003466,-0.004999,0.249950,0,0);}
.m47_c00207{transform:matrix(0.173665,0.003473,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173665,0.003473,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173665,0.003473,-0.004999,0.249950,0,0);}
.me5_c00207{transform:matrix(0.174026,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174026,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174026,0.001740,-0.002500,0.249988,0,0);}
.mf3_c00207{transform:matrix(0.174131,0.001741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174131,0.001741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174131,0.001741,-0.002500,0.249988,0,0);}
.m73_c00207{transform:matrix(0.174450,0.003489,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174450,0.003489,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174450,0.003489,-0.004999,0.249950,0,0);}
.mb5_c00207{transform:matrix(0.174460,0.003489,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174460,0.003489,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174460,0.003489,-0.004999,0.249950,0,0);}
.m15_c00207{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.m97_c00207{transform:matrix(0.174815,0.003496,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174815,0.003496,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174815,0.003496,-0.004999,0.249950,0,0);}
.m12_c00207{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m6e_c00207{transform:matrix(0.174930,0.003499,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174930,0.003499,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174930,0.003499,-0.004999,0.249950,0,0);}
.m39_c00207{transform:matrix(0.175070,0.003501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175070,0.003501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175070,0.003501,-0.004999,0.249950,0,0);}
.m1d_c00207{transform:matrix(0.175313,0.002805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175313,0.002805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175313,0.002805,-0.003999,0.249968,0,0);}
.m77_c00207{transform:matrix(0.175440,0.003509,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175440,0.003509,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175440,0.003509,-0.004999,0.249950,0,0);}
.m2b_c00207{transform:matrix(0.176015,0.003520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176015,0.003520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176015,0.003520,-0.004999,0.249950,0,0);}
.m64_c00207{transform:matrix(0.176485,0.003530,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176485,0.003530,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176485,0.003530,-0.004999,0.249950,0,0);}
.m32_c00207{transform:matrix(0.176985,0.003540,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176985,0.003540,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176985,0.003540,-0.004999,0.249950,0,0);}
.m5d_c00207{transform:matrix(0.177100,0.003542,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177100,0.003542,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177100,0.003542,-0.004999,0.249950,0,0);}
.mf5_c00207{transform:matrix(0.177276,0.001773,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177276,0.001773,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177276,0.001773,-0.002500,0.249988,0,0);}
.m4d_c00207{transform:matrix(0.178214,0.003564,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178214,0.003564,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178214,0.003564,-0.004999,0.249950,0,0);}
.m10_c00207{transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{transform:matrix(0.178944,0.003579,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178944,0.003579,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178944,0.003579,-0.004999,0.249950,0,0);}
.m14_c00207{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);}
.m6b_c00207{transform:matrix(0.179509,0.003590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179509,0.003590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179509,0.003590,-0.004999,0.249950,0,0);}
.mc5_c00207{transform:matrix(0.179587,0.002873,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179587,0.002873,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179587,0.002873,-0.003999,0.249968,0,0);}
.mbd_c00207{transform:matrix(0.179920,0.003778,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179920,0.003778,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179920,0.003778,-0.005249,0.249945,0,0);}
.m9f_c00207{transform:matrix(0.179954,0.003599,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179954,0.003599,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179954,0.003599,-0.004999,0.249950,0,0);}
.md7_c00207{transform:matrix(0.180076,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180076,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180076,0.001801,-0.002500,0.249988,0,0);}
.m8_c00207{transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);}
.m37_c00207{transform:matrix(0.180574,0.003611,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180574,0.003611,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180574,0.003611,-0.004999,0.249950,0,0);}
.ma3_c00207{transform:matrix(0.180909,0.003618,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180909,0.003618,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180909,0.003618,-0.004999,0.249950,0,0);}
.m17_c00207{transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180935,0.000000,0.000000,0.250000,0,0);}
.mf7_c00207{transform:matrix(0.181001,0.001810,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181001,0.001810,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181001,0.001810,-0.002500,0.249988,0,0);}
.m2e_c00207{transform:matrix(0.181014,0.003620,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181014,0.003620,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181014,0.003620,-0.004999,0.249950,0,0);}
.mdf_c00207{transform:matrix(0.181086,0.001811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181086,0.001811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181086,0.001811,-0.002500,0.249988,0,0);}
.ma4_c00207{transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181309,0.003626,-0.004999,0.249950,0,0);}
.mbb_c00207{transform:matrix(0.181840,0.003819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181840,0.003819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181840,0.003819,-0.005249,0.249945,0,0);}
.mba_c00207{transform:matrix(0.182795,0.003839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182795,0.003839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182795,0.003839,-0.005249,0.249945,0,0);}
.m55_c00207{transform:matrix(0.182903,0.003658,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182903,0.003658,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182903,0.003658,-0.004999,0.249950,0,0);}
.m9b_c00207{transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);}
.mad_c00207{transform:matrix(0.183278,0.003666,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183278,0.003666,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183278,0.003666,-0.004999,0.249950,0,0);}
.m9d_c00207{transform:matrix(0.183488,0.003670,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183488,0.003670,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183488,0.003670,-0.004999,0.249950,0,0);}
.m44_c00207{transform:matrix(0.183548,0.003671,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183548,0.003671,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183548,0.003671,-0.004999,0.249950,0,0);}
.m62_c00207{transform:matrix(0.183573,0.003671,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183573,0.003671,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183573,0.003671,-0.004999,0.249950,0,0);}
.md2_c00207{transform:matrix(0.183786,0.001838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183786,0.001838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183786,0.001838,-0.002500,0.249988,0,0);}
.mca_c00207{transform:matrix(0.184251,0.001843,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184251,0.001843,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184251,0.001843,-0.002500,0.249988,0,0);}
.m11_c00207{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m30_c00207{transform:matrix(0.184863,0.003697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184863,0.003697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184863,0.003697,-0.004999,0.249950,0,0);}
.m2c_c00207{transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185048,0.003701,-0.004999,0.249950,0,0);}
.m96_c00207{transform:matrix(0.185418,0.003708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185418,0.003708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185418,0.003708,-0.004999,0.249950,0,0);}
.m13_c00207{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m8b_c00207{transform:matrix(0.186818,0.003736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186818,0.003736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186818,0.003736,-0.004999,0.249950,0,0);}
.m56_c00207{transform:matrix(0.187602,0.003752,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187602,0.003752,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187602,0.003752,-0.004999,0.249950,0,0);}
.mbf_c00207{transform:matrix(0.187829,0.003944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187829,0.003944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187829,0.003944,-0.005249,0.249945,0,0);}
.ma7_c00207{transform:matrix(0.188697,0.003774,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188697,0.003774,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188697,0.003774,-0.004999,0.249950,0,0);}
.m81_c00207{transform:matrix(0.189362,0.003787,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189362,0.003787,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189362,0.003787,-0.004999,0.249950,0,0);}
.mc_c00207{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.mc2_c00207{transform:matrix(0.190176,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190176,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190176,0.003043,-0.003999,0.249968,0,0);}
.m36_c00207{transform:matrix(0.190692,0.003814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190692,0.003814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190692,0.003814,-0.004999,0.249950,0,0);}
.m90_c00207{transform:matrix(0.190712,0.003814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190712,0.003814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190712,0.003814,-0.004999,0.249950,0,0);}
.m33_c00207{transform:matrix(0.191082,0.003822,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191082,0.003822,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191082,0.003822,-0.004999,0.249950,0,0);}
.mae_c00207{transform:matrix(0.191627,0.003833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191627,0.003833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191627,0.003833,-0.004999,0.249950,0,0);}
.mde_c00207{transform:matrix(0.191655,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191655,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191655,0.001917,-0.002500,0.249988,0,0);}
.m84_c00207{transform:matrix(0.191992,0.003840,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191992,0.003840,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191992,0.003840,-0.004999,0.249950,0,0);}
.m1f_c00207{transform:matrix(0.192120,0.003074,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192120,0.003074,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192120,0.003074,-0.003999,0.249968,0,0);}
.mbc_c00207{transform:matrix(0.192638,0.004045,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192638,0.004045,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192638,0.004045,-0.005249,0.249945,0,0);}
.md1_c00207{transform:matrix(0.193005,0.001930,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193005,0.001930,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193005,0.001930,-0.002500,0.249988,0,0);}
.me4_c00207{transform:matrix(0.193040,0.001930,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193040,0.001930,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193040,0.001930,-0.002500,0.249988,0,0);}
.me3_c00207{transform:matrix(0.193215,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193215,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193215,0.001932,-0.002500,0.249988,0,0);}
.m3e_c00207{transform:matrix(0.193221,0.003864,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193221,0.003864,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193221,0.003864,-0.004999,0.249950,0,0);}
.m5_c00207{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m35_c00207{transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);}
.mfb_c00207{transform:matrix(0.195225,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195225,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195225,0.001952,-0.002500,0.249988,0,0);}
.ma9_c00207{transform:matrix(0.195701,0.003914,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195701,0.003914,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195701,0.003914,-0.004999,0.249950,0,0);}
.m21_c00207{transform:matrix(0.195710,0.003131,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195710,0.003131,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195710,0.003131,-0.003999,0.249968,0,0);}
.me8_c00207{transform:matrix(0.195820,0.001958,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195820,0.001958,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195820,0.001958,-0.002500,0.249988,0,0);}
.mfe_c00207{transform:matrix(0.196025,0.001960,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196025,0.001960,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196025,0.001960,-0.002500,0.249988,0,0);}
.ma0_c00207{transform:matrix(0.196391,0.003928,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196391,0.003928,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196391,0.003928,-0.004999,0.249950,0,0);}
.m5b_c00207{transform:matrix(0.196411,0.003928,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196411,0.003928,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196411,0.003928,-0.004999,0.249950,0,0);}
.m8a_c00207{transform:matrix(0.196901,0.003938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196901,0.003938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196901,0.003938,-0.004999,0.249950,0,0);}
.m58_c00207{transform:matrix(0.197021,0.003940,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197021,0.003940,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197021,0.003940,-0.004999,0.249950,0,0);}
.med_c00207{transform:matrix(0.197400,0.001974,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197400,0.001974,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197400,0.001974,-0.002500,0.249988,0,0);}
.mcd_c00207{transform:matrix(0.197535,0.001975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197535,0.001975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197535,0.001975,-0.002500,0.249988,0,0);}
.ma8_c00207{transform:matrix(0.197815,0.003956,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197815,0.003956,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197815,0.003956,-0.004999,0.249950,0,0);}
.me0_c00207{transform:matrix(0.198120,0.001981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198120,0.001981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198120,0.001981,-0.002500,0.249988,0,0);}
.mda_c00207{transform:matrix(0.198865,0.001989,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198865,0.001989,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198865,0.001989,-0.002500,0.249988,0,0);}
.m7a_c00207{transform:matrix(0.198965,0.003979,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198965,0.003979,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198965,0.003979,-0.004999,0.249950,0,0);}
.me_c00207{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m8d_c00207{transform:matrix(0.199525,0.003991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199525,0.003991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199525,0.003991,-0.004999,0.249950,0,0);}
.m9a_c00207{transform:matrix(0.199975,0.004000,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199975,0.004000,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199975,0.004000,-0.004999,0.249950,0,0);}
.m61_c00207{transform:matrix(0.200345,0.004007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200345,0.004007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200345,0.004007,-0.004999,0.249950,0,0);}
.m86_c00207{transform:matrix(0.200820,0.004016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200820,0.004016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200820,0.004016,-0.004999,0.249950,0,0);}
.mb6_c00207{transform:matrix(0.201105,0.004022,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201105,0.004022,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201105,0.004022,-0.004999,0.249950,0,0);}
.mb7_c00207{transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);}
.mcb_c00207{transform:matrix(0.202330,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202330,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202330,0.002023,-0.002500,0.249988,0,0);}
.m7d_c00207{transform:matrix(0.202674,0.004053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202674,0.004053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202674,0.004053,-0.004999,0.249950,0,0);}
.m3c_c00207{transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202839,0.004057,-0.004999,0.249950,0,0);}
.m4b_c00207{transform:matrix(0.202859,0.004057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202859,0.004057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202859,0.004057,-0.004999,0.249950,0,0);}
.m23_c00207{transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203169,0.003251,-0.003999,0.249968,0,0);}
.m4f_c00207{transform:matrix(0.203214,0.004064,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203214,0.004064,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203214,0.004064,-0.004999,0.249950,0,0);}
.mf4_c00207{transform:matrix(0.203285,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203285,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203285,0.002033,-0.002500,0.249988,0,0);}
.mb2_c00207{transform:matrix(0.203389,0.004068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203389,0.004068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203389,0.004068,-0.004999,0.249950,0,0);}
.m16_c00207{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.mc4_c00207{transform:matrix(0.203944,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203944,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203944,0.003263,-0.003999,0.249968,0,0);}
.mc8_c00207{transform:matrix(0.204349,0.003270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204349,0.003270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204349,0.003270,-0.003999,0.249968,0,0);}
.mfc_c00207{transform:matrix(0.204530,0.002045,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204530,0.002045,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204530,0.002045,-0.002500,0.249988,0,0);}
.md3_c00207{transform:matrix(0.205005,0.002050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205005,0.002050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205005,0.002050,-0.002500,0.249988,0,0);}
.m24_c00207{transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);}
.m46_c00207{transform:matrix(0.205404,0.004108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205404,0.004108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205404,0.004108,-0.004999,0.249950,0,0);}
.m8e_c00207{transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205989,0.004120,-0.004999,0.249950,0,0);}
.m27_c00207{transform:matrix(0.206179,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206179,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206179,0.003299,-0.003999,0.249968,0,0);}
.md9_c00207{transform:matrix(0.206535,0.002065,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206535,0.002065,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206535,0.002065,-0.002500,0.249988,0,0);}
.m5c_c00207{transform:matrix(0.206779,0.004136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206779,0.004136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206779,0.004136,-0.004999,0.249950,0,0);}
.m69_c00207{transform:matrix(0.206844,0.004137,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206844,0.004137,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206844,0.004137,-0.004999,0.249950,0,0);}
.m51_c00207{transform:matrix(0.206904,0.004138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206904,0.004138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206904,0.004138,-0.004999,0.249950,0,0);}
.ma1_c00207{transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);}
.m6f_c00207{transform:matrix(0.208278,0.004166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208278,0.004166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208278,0.004166,-0.004999,0.249950,0,0);}
.m63_c00207{transform:matrix(0.208608,0.004172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208608,0.004172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208608,0.004172,-0.004999,0.249950,0,0);}
.ma2_c00207{transform:matrix(0.208658,0.004173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208658,0.004173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208658,0.004173,-0.004999,0.249950,0,0);}
.md6_c00207{transform:matrix(0.208945,0.002089,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208945,0.002089,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208945,0.002089,-0.002500,0.249988,0,0);}
.m9_c00207{transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208965,0.000000,0.000000,0.250000,0,0);}
.m66_c00207{transform:matrix(0.209333,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209333,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209333,0.004187,-0.004999,0.249950,0,0);}
.mee_c00207{transform:matrix(0.209810,0.002098,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209810,0.002098,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209810,0.002098,-0.002500,0.249988,0,0);}
.m71_c00207{transform:matrix(0.209983,0.004200,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209983,0.004200,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209983,0.004200,-0.004999,0.249950,0,0);}
.mb0_c00207{transform:matrix(0.210178,0.004204,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210178,0.004204,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210178,0.004204,-0.004999,0.249950,0,0);}
.m78_c00207{transform:matrix(0.210318,0.004206,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210318,0.004206,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210318,0.004206,-0.004999,0.249950,0,0);}
.m4c_c00207{transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);}
.m4e_c00207{transform:matrix(0.210448,0.004209,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210448,0.004209,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210448,0.004209,-0.004999,0.249950,0,0);}
.me7_c00207{transform:matrix(0.210859,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210859,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210859,0.002109,-0.002500,0.249988,0,0);}
.mec_c00207{transform:matrix(0.211254,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211254,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211254,0.002113,-0.002500,0.249988,0,0);}
.ma6_c00207{transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);}
.md_c00207{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.mea_c00207{transform:matrix(0.212259,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212259,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212259,0.002123,-0.002500,0.249988,0,0);}
.meb_c00207{transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);}
.m26_c00207{transform:matrix(0.212553,0.003401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212553,0.003401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212553,0.003401,-0.003999,0.249968,0,0);}
.mf8_c00207{transform:matrix(0.212769,0.002128,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212769,0.002128,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212769,0.002128,-0.002500,0.249988,0,0);}
.m74_c00207{transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);}
.m48_c00207{transform:matrix(0.216647,0.004333,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216647,0.004333,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216647,0.004333,-0.004999,0.249950,0,0);}
.m70_c00207{transform:matrix(0.217566,0.004351,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217566,0.004351,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217566,0.004351,-0.004999,0.249950,0,0);}
.me2_c00207{transform:matrix(0.218284,0.002183,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218284,0.002183,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218284,0.002183,-0.002500,0.249988,0,0);}
.m3d_c00207{transform:matrix(0.218766,0.004375,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218766,0.004375,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218766,0.004375,-0.004999,0.249950,0,0);}
.mb3_c00207{transform:matrix(0.218991,0.004380,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218991,0.004380,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218991,0.004380,-0.004999,0.249950,0,0);}
.mb4_c00207{transform:matrix(0.219471,0.004389,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219471,0.004389,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219471,0.004389,-0.004999,0.249950,0,0);}
.m41_c00207{transform:matrix(0.219776,0.004396,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219776,0.004396,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219776,0.004396,-0.004999,0.249950,0,0);}
.mdb_c00207{transform:matrix(0.219924,0.002199,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219924,0.002199,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219924,0.002199,-0.002500,0.249988,0,0);}
.m72_c00207{transform:matrix(0.220056,0.004401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220056,0.004401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220056,0.004401,-0.004999,0.249950,0,0);}
.m31_c00207{transform:matrix(0.220306,0.004406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220306,0.004406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220306,0.004406,-0.004999,0.249950,0,0);}
.m19_c00207{transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.221111,0.004422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221111,0.004422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221111,0.004422,-0.004999,0.249950,0,0);}
.m3f_c00207{transform:matrix(0.221256,0.004425,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221256,0.004425,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221256,0.004425,-0.004999,0.249950,0,0);}
.m79_c00207{transform:matrix(0.221936,0.004439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221936,0.004439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221936,0.004439,-0.004999,0.249950,0,0);}
.mfd_c00207{transform:matrix(0.223564,0.002236,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223564,0.002236,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223564,0.002236,-0.002500,0.249988,0,0);}
.mcc_c00207{transform:matrix(0.223824,0.002238,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223824,0.002238,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223824,0.002238,-0.002500,0.249988,0,0);}
.m7f_c00207{transform:matrix(0.224935,0.004499,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224935,0.004499,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224935,0.004499,-0.004999,0.249950,0,0);}
.mdd_c00207{transform:matrix(0.225094,0.002251,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225094,0.002251,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225094,0.002251,-0.002500,0.249988,0,0);}
.mc3_c00207{transform:matrix(0.225341,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225341,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225341,0.003605,-0.003999,0.249968,0,0);}
.m68_c00207{transform:matrix(0.226540,0.004531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226540,0.004531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226540,0.004531,-0.004999,0.249950,0,0);}
.mc6_c00207{transform:matrix(0.227336,0.003637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227336,0.003637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227336,0.003637,-0.003999,0.249968,0,0);}
.m6_c00207{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.me1_c00207{transform:matrix(0.229924,0.002299,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229924,0.002299,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229924,0.002299,-0.002500,0.249988,0,0);}
.mc7_c00207{transform:matrix(0.230386,0.003686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230386,0.003686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230386,0.003686,-0.003999,0.249968,0,0);}
.m98_c00207{transform:matrix(0.231674,0.004633,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231674,0.004633,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231674,0.004633,-0.004999,0.249950,0,0);}
.mef_c00207{transform:matrix(0.231823,0.002318,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231823,0.002318,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231823,0.002318,-0.002500,0.249988,0,0);}
.m4_c00207{transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);}
.mb8_c00207{transform:matrix(0.232494,0.004650,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232494,0.004650,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232494,0.004650,-0.004999,0.249950,0,0);}
.m7e_c00207{transform:matrix(0.232618,0.004652,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232618,0.004652,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232618,0.004652,-0.004999,0.249950,0,0);}
.m76_c00207{transform:matrix(0.232698,0.004654,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232698,0.004654,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232698,0.004654,-0.004999,0.249950,0,0);}
.m65_c00207{transform:matrix(0.232708,0.004654,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232708,0.004654,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232708,0.004654,-0.004999,0.249950,0,0);}
.mc0_c00207{transform:matrix(0.233464,0.004903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233464,0.004903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233464,0.004903,-0.005249,0.249945,0,0);}
.mf6_c00207{transform:matrix(0.233598,0.002336,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233598,0.002336,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233598,0.002336,-0.002500,0.249988,0,0);}
.m5a_c00207{transform:matrix(0.234503,0.004690,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234503,0.004690,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234503,0.004690,-0.004999,0.249950,0,0);}
.m67_c00207{transform:matrix(0.235148,0.004703,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235148,0.004703,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235148,0.004703,-0.004999,0.249950,0,0);}
.m3_c00207{transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{transform:matrix(0.237700,0.003803,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237700,0.003803,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237700,0.003803,-0.003999,0.249968,0,0);}
.m95_c00207{transform:matrix(0.238362,0.004767,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238362,0.004767,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238362,0.004767,-0.004999,0.249950,0,0);}
.me6_c00207{transform:matrix(0.240568,0.002406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240568,0.002406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240568,0.002406,-0.002500,0.249988,0,0);}
.m83_c00207{transform:matrix(0.241162,0.004823,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241162,0.004823,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241162,0.004823,-0.004999,0.249950,0,0);}
.m60_c00207{transform:matrix(0.241577,0.004832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241577,0.004832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241577,0.004832,-0.004999,0.249950,0,0);}
.mf9_c00207{transform:matrix(0.242598,0.002426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242598,0.002426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242598,0.002426,-0.002500,0.249988,0,0);}
.m49_c00207{transform:matrix(0.243616,0.004872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243616,0.004872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243616,0.004872,-0.004999,0.249950,0,0);}
.mf_c00207{transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);}
.mb_c00207{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m5f_c00207{transform:matrix(0.248975,0.004980,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248975,0.004980,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248975,0.004980,-0.004999,0.249950,0,0);}
.m93_c00207{transform:matrix(0.254914,0.005098,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254914,0.005098,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254914,0.005098,-0.004999,0.249950,0,0);}
.mf0_c00207{transform:matrix(0.256852,0.002569,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256852,0.002569,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256852,0.002569,-0.002500,0.249988,0,0);}
.m52_c00207{transform:matrix(0.261263,0.005225,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261263,0.005225,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261263,0.005225,-0.004999,0.249950,0,0);}
.m94_c00207{transform:matrix(0.261618,0.005232,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261618,0.005232,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261618,0.005232,-0.004999,0.249950,0,0);}
.m7c_c00207{transform:matrix(0.265052,0.005301,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265052,0.005301,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265052,0.005301,-0.004999,0.249950,0,0);}
.mb9_c00207{transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);}
.m6c_c00207{transform:matrix(0.278109,0.005562,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278109,0.005562,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278109,0.005562,-0.004999,0.249950,0,0);}
.me9_c00207{transform:matrix(0.303185,0.003032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303185,0.003032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303185,0.003032,-0.002500,0.249988,0,0);}
.m5e_c00207{transform:matrix(0.312038,0.006241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.312038,0.006241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.312038,0.006241,-0.004999,0.249950,0,0);}
.m7b_c00207{transform:matrix(0.312128,0.006243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.312128,0.006243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.312128,0.006243,-0.004999,0.249950,0,0);}
.md4_c00207{transform:matrix(0.312839,0.003128,-0.002500,0.249988,0,0);-ms-transform:matrix(0.312839,0.003128,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.312839,0.003128,-0.002500,0.249988,0,0);}
.ma_c00207{transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);}
.m87_c00207{transform:matrix(0.318301,0.006366,-0.004999,0.249950,0,0);-ms-transform:matrix(0.318301,0.006366,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.318301,0.006366,-0.004999,0.249950,0,0);}
.m53_c00207{transform:matrix(0.320076,0.006402,-0.004999,0.249950,0,0);-ms-transform:matrix(0.320076,0.006402,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.320076,0.006402,-0.004999,0.249950,0,0);}
.mf1_c00207{transform:matrix(0.326819,0.003268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.326819,0.003268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.326819,0.003268,-0.002500,0.249988,0,0);}
.m91_c00207{transform:matrix(0.327375,0.006547,-0.004999,0.249950,0,0);-ms-transform:matrix(0.327375,0.006547,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.327375,0.006547,-0.004999,0.249950,0,0);}
.m92_c00207{transform:matrix(0.329504,0.006590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.329504,0.006590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.329504,0.006590,-0.004999,0.249950,0,0);}
.mc1_c00207{transform:matrix(0.345419,0.007254,-0.005249,0.249945,0,0);-ms-transform:matrix(0.345419,0.007254,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.345419,0.007254,-0.005249,0.249945,0,0);}
.m6d_c00207{transform:matrix(0.350330,0.007007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.350330,0.007007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.350330,0.007007,-0.004999,0.249950,0,0);}
.mf2_c00207{transform:matrix(0.377906,0.003779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.377906,0.003779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.377906,0.003779,-0.002500,0.249988,0,0);}
.m82_c00207{transform:matrix(0.464512,0.009290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.464512,0.009290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.464512,0.009290,-0.004999,0.249950,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:0.000000px;}
.fc0_c00207{color:transparent;}
.fsf_c00207{font-size:16.800000px;}
.fsa_c00207{font-size:57.761549px;}
.fs15_c00207{font-size:58.802940px;}
.fs1_c00207{font-size:59.850000px;}
.fs16_c00207{font-size:59.852992px;}
.fs4_c00207{font-size:59.857660px;}
.fs8_c00207{font-size:59.861969px;}
.fs14_c00207{font-size:60.903045px;}
.fs11_c00207{font-size:60.907795px;}
.fs9_c00207{font-size:60.912179px;}
.fsc_c00207{font-size:61.962389px;}
.fs17_c00207{font-size:63.003150px;}
.fse_c00207{font-size:63.012599px;}
.fs13_c00207{font-size:64.053202px;}
.fs7_c00207{font-size:64.062809px;}
.fs12_c00207{font-size:65.103255px;}
.fs6_c00207{font-size:66.163229px;}
.fs10_c00207{font-size:66.164584px;}
.fsb_c00207{font-size:67.213439px;}
.fs2_c00207{font-size:68.250000px;}
.fs5_c00207{font-size:68.263649px;}
.fsd_c00207{font-size:69.313859px;}
.fs3_c00207{font-size:70.359004px;}
.fs0_c00207{font-size:71.400000px;}
.y0_c00207{bottom:0.000000px;}
.y101_c00207{bottom:25.937430px;}
.y102_c00207{bottom:25.937460px;}
.yfc_c00207{bottom:25.937625px;}
.yff_c00207{bottom:25.937685px;}
.y100_c00207{bottom:25.938015px;}
.yfd_c00207{bottom:25.938225px;}
.yfe_c00207{bottom:25.938270px;}
.yf8_c00207{bottom:43.337610px;}
.yf5_c00207{bottom:43.337850px;}
.yf7_c00207{bottom:43.337895px;}
.yf6_c00207{bottom:43.338180px;}
.yf9_c00207{bottom:43.338240px;}
.yfb_c00207{bottom:43.338300px;}
.yf4_c00207{bottom:43.338450px;}
.yfa_c00207{bottom:43.338570px;}
.yf2_c00207{bottom:60.887910px;}
.yed_c00207{bottom:60.888390px;}
.yee_c00207{bottom:60.888420px;}
.yf0_c00207{bottom:60.888465px;}
.yf1_c00207{bottom:60.888480px;}
.yf3_c00207{bottom:60.888525px;}
.yef_c00207{bottom:60.889035px;}
.yec_c00207{bottom:76.007580px;}
.yeb_c00207{bottom:76.519485px;}
.yea_c00207{bottom:76.772130px;}
.ye9_c00207{bottom:77.326800px;}
.ye8_c00207{bottom:77.512260px;}
.ye7_c00207{bottom:78.260670px;}
.ye6_c00207{bottom:78.717420px;}
.ye5_c00207{bottom:79.382265px;}
.ye1_c00207{bottom:95.751960px;}
.ye0_c00207{bottom:95.752245px;}
.ye2_c00207{bottom:95.752275px;}
.ydf_c00207{bottom:95.752830px;}
.ye3_c00207{bottom:95.752890px;}
.yde_c00207{bottom:95.753115px;}
.ydd_c00207{bottom:95.753385px;}
.ye4_c00207{bottom:95.753520px;}
.ydc_c00207{bottom:95.753670px;}
.ydb_c00207{bottom:111.340020px;}
.yda_c00207{bottom:111.624375px;}
.yd9_c00207{bottom:112.254270px;}
.yd8_c00207{bottom:112.440915px;}
.yd7_c00207{bottom:112.569480px;}
.yd6_c00207{bottom:113.067720px;}
.yd5_c00207{bottom:113.765325px;}
.yd4_c00207{bottom:114.130380px;}
.yd3_c00207{bottom:114.480435px;}
.yd2_c00207{bottom:128.999430px;}
.yd1_c00207{bottom:129.164175px;}
.yd0_c00207{bottom:129.917460px;}
.ycf_c00207{bottom:130.600740px;}
.yce_c00207{bottom:131.162505px;}
.ycd_c00207{bottom:131.364510px;}
.ycc_c00207{bottom:131.761500px;}
.ycb_c00207{bottom:145.877736px;}
.yca_c00207{bottom:146.114472px;}
.yc9_c00207{bottom:147.286632px;}
.yc8_c00207{bottom:147.710136px;}
.yc7_c00207{bottom:149.092848px;}
.yc6_c00207{bottom:150.030384px;}
.yc5_c00207{bottom:150.393000px;}
.yc4_c00207{bottom:162.851741px;}
.yc3_c00207{bottom:163.955374px;}
.yc2_c00207{bottom:165.316584px;}
.yc1_c00207{bottom:165.810252px;}
.yc0_c00207{bottom:167.080174px;}
.ybf_c00207{bottom:167.736193px;}
.ybe_c00207{bottom:168.445038px;}
.ybd_c00207{bottom:169.023000px;}
.ybb_c00207{bottom:180.629940px;}
.yba_c00207{bottom:180.958140px;}
.yb9_c00207{bottom:181.657590px;}
.yb8_c00207{bottom:181.968600px;}
.yb7_c00207{bottom:183.031830px;}
.yb6_c00207{bottom:183.232860px;}
.yb5_c00207{bottom:184.322820px;}
.yb4_c00207{bottom:184.627770px;}
.ybc_c00207{bottom:197.370000px;}
.yb3_c00207{bottom:198.544080px;}
.yb2_c00207{bottom:198.878700px;}
.yb1_c00207{bottom:199.148550px;}
.yb0_c00207{bottom:200.007720px;}
.yaf_c00207{bottom:201.109530px;}
.yae_c00207{bottom:201.723810px;}
.yad_c00207{bottom:202.702740px;}
.yac_c00207{bottom:203.534400px;}
.yab_c00207{bottom:215.106900px;}
.yaa_c00207{bottom:215.716230px;}
.ya9_c00207{bottom:216.210240px;}
.ya8_c00207{bottom:217.047390px;}
.ya7_c00207{bottom:217.682850px;}
.ya6_c00207{bottom:219.175230px;}
.ya5_c00207{bottom:219.810900px;}
.ya4_c00207{bottom:220.212150px;}
.ya3_c00207{bottom:220.815210px;}
.ya2_c00207{bottom:233.060220px;}
.ya1_c00207{bottom:233.423370px;}
.ya0_c00207{bottom:234.765450px;}
.y9f_c00207{bottom:235.608690px;}
.y9e_c00207{bottom:236.885130px;}
.y9d_c00207{bottom:237.824220px;}
.y9c_c00207{bottom:238.368630px;}
.y9b_c00207{bottom:250.290720px;}
.y9a_c00207{bottom:250.598670px;}
.y99_c00207{bottom:251.136840px;}
.y98_c00207{bottom:252.780390px;}
.y97_c00207{bottom:253.110690px;}
.y96_c00207{bottom:254.557050px;}
.y95_c00207{bottom:254.849130px;}
.y94_c00207{bottom:255.383190px;}
.y93_c00207{bottom:267.011910px;}
.y92_c00207{bottom:267.323250px;}
.y91_c00207{bottom:267.637950px;}
.y90_c00207{bottom:268.572930px;}
.y8f_c00207{bottom:268.917360px;}
.y8e_c00207{bottom:269.855010px;}
.y8d_c00207{bottom:271.246500px;}
.y8c_c00207{bottom:271.585770px;}
.y8b_c00207{bottom:284.238600px;}
.y8a_c00207{bottom:284.751120px;}
.y89_c00207{bottom:285.594060px;}
.y88_c00207{bottom:285.896550px;}
.y87_c00207{bottom:286.552380px;}
.y86_c00207{bottom:287.183970px;}
.y85_c00207{bottom:287.787390px;}
.y84_c00207{bottom:301.914390px;}
.y83_c00207{bottom:302.244990px;}
.y82_c00207{bottom:303.059370px;}
.y81_c00207{bottom:303.237960px;}
.y80_c00207{bottom:303.855960px;}
.y7f_c00207{bottom:304.119690px;}
.y7e_c00207{bottom:304.800900px;}
.y7d_c00207{bottom:318.870330px;}
.y7c_c00207{bottom:319.481310px;}
.y7b_c00207{bottom:319.939650px;}
.y7a_c00207{bottom:320.350500px;}
.y79_c00207{bottom:321.489270px;}
.y78_c00207{bottom:321.889380px;}
.y77_c00207{bottom:322.623210px;}
.y76_c00207{bottom:336.023370px;}
.y75_c00207{bottom:336.374520px;}
.y74_c00207{bottom:337.203270px;}
.y73_c00207{bottom:337.653240px;}
.y72_c00207{bottom:338.650110px;}
.y71_c00207{bottom:338.976840px;}
.y70_c00207{bottom:339.153840px;}
.y6f_c00207{bottom:339.637680px;}
.y6e_c00207{bottom:353.034330px;}
.y6d_c00207{bottom:353.439510px;}
.y6c_c00207{bottom:354.343830px;}
.y6b_c00207{bottom:354.552720px;}
.y6a_c00207{bottom:355.472820px;}
.y69_c00207{bottom:355.789050px;}
.y68_c00207{bottom:356.461920px;}
.y67_c00207{bottom:356.830260px;}
.y66_c00207{bottom:357.189270px;}
.y65_c00207{bottom:369.970620px;}
.y64_c00207{bottom:370.425420px;}
.y63_c00207{bottom:371.284170px;}
.y62_c00207{bottom:372.056850px;}
.y61_c00207{bottom:372.398490px;}
.y60_c00207{bottom:373.055850px;}
.y5f_c00207{bottom:373.374930px;}
.y5e_c00207{bottom:373.790550px;}
.y5d_c00207{bottom:374.827350px;}
.y5c_c00207{bottom:375.286470px;}
.y5b_c00207{bottom:388.287630px;}
.y5a_c00207{bottom:388.986990px;}
.y59_c00207{bottom:389.371530px;}
.y58_c00207{bottom:390.461250px;}
.y57_c00207{bottom:391.199760px;}
.y56_c00207{bottom:391.490550px;}
.y55_c00207{bottom:391.758150px;}
.y54_c00207{bottom:392.296230px;}
.y53_c00207{bottom:405.312120px;}
.y52_c00207{bottom:405.814800px;}
.y51_c00207{bottom:406.242750px;}
.y50_c00207{bottom:407.478630px;}
.y4f_c00207{bottom:407.835810px;}
.y4e_c00207{bottom:408.884880px;}
.y4d_c00207{bottom:409.746120px;}
.y4c_c00207{bottom:410.389530px;}
.y4b_c00207{bottom:423.048420px;}
.y4a_c00207{bottom:424.945110px;}
.y49_c00207{bottom:425.527170px;}
.y48_c00207{bottom:427.541520px;}
.y47_c00207{bottom:427.942740px;}
.y46_c00207{bottom:439.709730px;}
.y45_c00207{bottom:440.196630px;}
.y44_c00207{bottom:440.626020px;}
.y43_c00207{bottom:441.640620px;}
.y42_c00207{bottom:442.054470px;}
.y41_c00207{bottom:442.881810px;}
.y40_c00207{bottom:443.297700px;}
.y3f_c00207{bottom:444.619410px;}
.y3e_c00207{bottom:445.224120px;}
.y3d_c00207{bottom:457.281270px;}
.y3c_c00207{bottom:457.624650px;}
.y3b_c00207{bottom:457.943520px;}
.y3a_c00207{bottom:458.272110px;}
.y39_c00207{bottom:459.242280px;}
.y38_c00207{bottom:459.628500px;}
.y37_c00207{bottom:460.584000px;}
.y36_c00207{bottom:460.972560px;}
.y35_c00207{bottom:461.427960px;}
.y34_c00207{bottom:473.257530px;}
.y33_c00207{bottom:473.934240px;}
.y32_c00207{bottom:474.825480px;}
.y31_c00207{bottom:475.417320px;}
.y30_c00207{bottom:475.818780px;}
.y2f_c00207{bottom:476.639640px;}
.y2e_c00207{bottom:477.050280px;}
.y2d_c00207{bottom:477.530880px;}
.y2c_c00207{bottom:478.427760px;}
.y2b_c00207{bottom:478.984500px;}
.y2a_c00207{bottom:491.198184px;}
.y29_c00207{bottom:491.552496px;}
.y28_c00207{bottom:492.042744px;}
.y27_c00207{bottom:493.162236px;}
.y26_c00207{bottom:493.408116px;}
.y25_c00207{bottom:494.591412px;}
.y24_c00207{bottom:495.992148px;}
.y23_c00207{bottom:508.719120px;}
.y22_c00207{bottom:508.939200px;}
.y21_c00207{bottom:510.097080px;}
.y20_c00207{bottom:510.739776px;}
.y1f_c00207{bottom:511.527240px;}
.y1e_c00207{bottom:512.815128px;}
.y1d_c00207{bottom:513.273000px;}
.y1c_c00207{bottom:525.360000px;}
.y1b_c00207{bottom:526.336500px;}
.y1a_c00207{bottom:527.145000px;}
.y19_c00207{bottom:527.647500px;}
.y18_c00207{bottom:528.354000px;}
.y17_c00207{bottom:528.577500px;}
.y16_c00207{bottom:528.948000px;}
.y15_c00207{bottom:529.473000px;}
.y14_c00207{bottom:542.919000px;}
.y13_c00207{bottom:543.349500px;}
.y12_c00207{bottom:543.636000px;}
.y11_c00207{bottom:543.981000px;}
.y10_c00207{bottom:544.170000px;}
.yf_c00207{bottom:544.960500px;}
.ye_c00207{bottom:545.454000px;}
.yd_c00207{bottom:545.745000px;}
.yc_c00207{bottom:546.033000px;}
.yb_c00207{bottom:546.751500px;}
.ya_c00207{bottom:560.235000px;}
.y9_c00207{bottom:560.770500px;}
.y8_c00207{bottom:561.009000px;}
.y7_c00207{bottom:561.763500px;}
.y6_c00207{bottom:562.171500px;}
.y5_c00207{bottom:562.995000px;}
.y4_c00207{bottom:563.448000px;}
.y3_c00207{bottom:563.962500px;}
.y2_c00207{bottom:564.301500px;}
.y1_c00207{bottom:575.332500px;}
.h11_c00207{height:16.800000px;}
.hc_c00207{height:57.761549px;}
.h17_c00207{height:58.802940px;}
.h3_c00207{height:59.850000px;}
.h18_c00207{height:59.852992px;}
.h6_c00207{height:59.857660px;}
.ha_c00207{height:59.861969px;}
.h16_c00207{height:60.903045px;}
.h13_c00207{height:60.907795px;}
.hb_c00207{height:60.912179px;}
.he_c00207{height:61.962389px;}
.h19_c00207{height:63.003150px;}
.h10_c00207{height:63.012599px;}
.h15_c00207{height:64.053202px;}
.h9_c00207{height:64.062809px;}
.h14_c00207{height:65.103255px;}
.h8_c00207{height:66.163229px;}
.h12_c00207{height:66.164584px;}
.hd_c00207{height:67.213439px;}
.h4_c00207{height:68.250000px;}
.h7_c00207{height:68.263649px;}
.hf_c00207{height:69.313859px;}
.h5_c00207{height:70.359004px;}
.h2_c00207{height:71.400000px;}
.h1_c00207{height:623.250000px;}
.h0_c00207{height:623.400000px;}
.w0_c00207{width:366.390000px;}
.w1_c00207{width:366.750000px;}
.x0_c00207{left:0.000000px;}
.x7a_c00207{left:45.088170px;}
.x65_c00207{left:46.191870px;}
.x54_c00207{left:48.442290px;}
.x37_c00207{left:49.547160px;}
.x1b_c00207{left:50.565000px;}
.x2_c00207{left:51.723000px;}
.x85_c00207{left:59.397495px;}
.x59_c00207{left:67.023900px;}
.x34_c00207{left:68.598180px;}
.x45_c00207{left:72.929550px;}
.x3_c00207{left:74.337000px;}
.x5e_c00207{left:75.367920px;}
.x2b_c00207{left:77.643150px;}
.x1c_c00207{left:79.182000px;}
.x38_c00207{left:80.217060px;}
.x7b_c00207{left:81.270285px;}
.x3f_c00207{left:83.757360px;}
.x51_c00207{left:86.497290px;}
.x66_c00207{left:87.774870px;}
.x14_c00207{left:89.448000px;}
.x56_c00207{left:94.354950px;}
.x4b_c00207{left:97.818840px;}
.x2c_c00207{left:100.522530px;}
.xb_c00207{left:102.667500px;}
.x4_c00207{left:108.676500px;}
.x76_c00207{left:111.909450px;}
.x83_c00207{left:113.671410px;}
.x15_c00207{left:115.929000px;}
.x40_c00207{left:118.654650px;}
.x39_c00207{left:121.253250px;}
.xc_c00207{left:123.282000px;}
.x46_c00207{left:124.769550px;}
.x71_c00207{left:127.252500px;}
.x21_c00207{left:128.604144px;}
.x52_c00207{left:129.990030px;}
.x16_c00207{left:131.856000px;}
.x84_c00207{left:134.461995px;}
.x6b_c00207{left:135.698790px;}
.x67_c00207{left:136.721370px;}
.x5_c00207{left:138.856500px;}
.x6e_c00207{left:140.181000px;}
.x2f_c00207{left:142.358670px;}
.xd_c00207{left:144.082500px;}
.x47_c00207{left:145.550550px;}
.x25_c00207{left:147.481500px;}
.x7c_c00207{left:152.554410px;}
.x86_c00207{left:154.981050px;}
.x2d_c00207{left:156.700890px;}
.x1d_c00207{left:159.675000px;}
.x30_c00207{left:162.177780px;}
.x4c_c00207{left:163.705410px;}
.x41_c00207{left:164.808840px;}
.x26_c00207{left:168.013500px;}
.x3a_c00207{left:171.230760px;}
.x7d_c00207{left:172.534905px;}
.x60_c00207{left:174.169770px;}
.x77_c00207{left:175.369320px;}
.xe_c00207{left:179.382000px;}
.x17_c00207{left:182.347500px;}
.x1_c00207{left:185.490000px;}
.x35_c00207{left:186.638970px;}
.x3b_c00207{left:188.264430px;}
.x6_c00207{left:193.752000px;}
.x5a_c00207{left:196.386060px;}
.x7e_c00207{left:197.645910px;}
.x80_c00207{left:200.462310px;}
.x31_c00207{left:201.594000px;}
.x62_c00207{left:205.065750px;}
.x1e_c00207{left:208.891500px;}
.x48_c00207{left:211.454550px;}
.x61_c00207{left:212.505240px;}
.x72_c00207{left:213.672000px;}
.x5b_c00207{left:215.558340px;}
.x57_c00207{left:216.692580px;}
.x18_c00207{left:218.257500px;}
.x7_c00207{left:220.951500px;}
.x68_c00207{left:222.525870px;}
.x4d_c00207{left:225.091560px;}
.x27_c00207{left:229.129500px;}
.x42_c00207{left:232.875270px;}
.x6c_c00207{left:234.195180px;}
.xf_c00207{left:235.881000px;}
.x4e_c00207{left:239.062470px;}
.x53_c00207{left:240.709320px;}
.x55_c00207{left:245.040300px;}
.x3c_c00207{left:247.132260px;}
.x87_c00207{left:248.134380px;}
.x10_c00207{left:249.328500px;}
.x7f_c00207{left:252.998445px;}
.x2e_c00207{left:255.805830px;}
.x43_c00207{left:256.904190px;}
.x28_c00207{left:258.721500px;}
.x5f_c00207{left:260.982420px;}
.x81_c00207{left:262.024065px;}
.x69_c00207{left:265.484370px;}
.x3d_c00207{left:267.479340px;}
.x22_c00207{left:270.172608px;}
.x8_c00207{left:271.233000px;}
.x36_c00207{left:272.845020px;}
.x11_c00207{left:273.946500px;}
.x19_c00207{left:276.037500px;}
.x63_c00207{left:278.696250px;}
.x58_c00207{left:281.498640px;}
.x82_c00207{left:283.088145px;}
.x5c_c00207{left:284.945100px;}
.x9_c00207{left:287.115000px;}
.x6f_c00207{left:288.981000px;}
.x32_c00207{left:290.059230px;}
.x3e_c00207{left:291.412860px;}
.x49_c00207{left:293.026050px;}
.x12_c00207{left:294.439500px;}
.x6a_c00207{left:295.707870px;}
.x23_c00207{left:297.437244px;}
.x4f_c00207{left:299.359500px;}
.x44_c00207{left:300.650700px;}
.x5d_c00207{left:302.237790px;}
.x29_c00207{left:303.283500px;}
.x78_c00207{left:306.652515px;}
.x74_c00207{left:307.698000px;}
.x33_c00207{left:313.278780px;}
.x4a_c00207{left:315.766050px;}
.x24_c00207{left:317.143620px;}
.x1f_c00207{left:321.427500px;}
.xa_c00207{left:322.791000px;}
.x75_c00207{left:324.172500px;}
.x13_c00207{left:325.240500px;}
.x50_c00207{left:326.371200px;}
.x73_c00207{left:328.197000px;}
.x79_c00207{left:332.537760px;}
.x64_c00207{left:333.863250px;}
.x20_c00207{left:335.182500px;}
.x2a_c00207{left:337.119000px;}
.x70_c00207{left:341.535000px;}
.x1a_c00207{left:345.756000px;}
.x6d_c00207{left:356.400000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fsf_c00207{font-size:14.933333pt;}
.fsa_c00207{font-size:51.343599pt;}
.fs15_c00207{font-size:52.269280pt;}
.fs1_c00207{font-size:53.200000pt;}
.fs16_c00207{font-size:53.202660pt;}
.fs4_c00207{font-size:53.206809pt;}
.fs8_c00207{font-size:53.210639pt;}
.fs14_c00207{font-size:54.136040pt;}
.fs11_c00207{font-size:54.140262pt;}
.fs9_c00207{font-size:54.144159pt;}
.fsc_c00207{font-size:55.077679pt;}
.fs17_c00207{font-size:56.002800pt;}
.fse_c00207{font-size:56.011199pt;}
.fs13_c00207{font-size:56.936180pt;}
.fs7_c00207{font-size:56.944719pt;}
.fs12_c00207{font-size:57.869560pt;}
.fs6_c00207{font-size:58.811759pt;}
.fs10_c00207{font-size:58.812964pt;}
.fsb_c00207{font-size:59.745279pt;}
.fs2_c00207{font-size:60.666667pt;}
.fs5_c00207{font-size:60.678799pt;}
.fsd_c00207{font-size:61.612319pt;}
.fs3_c00207{font-size:62.541337pt;}
.fs0_c00207{font-size:63.466667pt;}
.y0_c00207{bottom:0.000000pt;}
.y101_c00207{bottom:23.055493pt;}
.y102_c00207{bottom:23.055520pt;}
.yfc_c00207{bottom:23.055667pt;}
.yff_c00207{bottom:23.055720pt;}
.y100_c00207{bottom:23.056013pt;}
.yfd_c00207{bottom:23.056200pt;}
.yfe_c00207{bottom:23.056240pt;}
.yf8_c00207{bottom:38.522320pt;}
.yf5_c00207{bottom:38.522533pt;}
.yf7_c00207{bottom:38.522573pt;}
.yf6_c00207{bottom:38.522827pt;}
.yf9_c00207{bottom:38.522880pt;}
.yfb_c00207{bottom:38.522933pt;}
.yf4_c00207{bottom:38.523067pt;}
.yfa_c00207{bottom:38.523173pt;}
.yf2_c00207{bottom:54.122587pt;}
.yed_c00207{bottom:54.123013pt;}
.yee_c00207{bottom:54.123040pt;}
.yf0_c00207{bottom:54.123080pt;}
.yf1_c00207{bottom:54.123093pt;}
.yf3_c00207{bottom:54.123133pt;}
.yef_c00207{bottom:54.123587pt;}
.yec_c00207{bottom:67.562293pt;}
.yeb_c00207{bottom:68.017320pt;}
.yea_c00207{bottom:68.241893pt;}
.ye9_c00207{bottom:68.734933pt;}
.ye8_c00207{bottom:68.899787pt;}
.ye7_c00207{bottom:69.565040pt;}
.ye6_c00207{bottom:69.971040pt;}
.ye5_c00207{bottom:70.562013pt;}
.ye1_c00207{bottom:85.112853pt;}
.ye0_c00207{bottom:85.113107pt;}
.ye2_c00207{bottom:85.113133pt;}
.ydf_c00207{bottom:85.113627pt;}
.ye3_c00207{bottom:85.113680pt;}
.yde_c00207{bottom:85.113880pt;}
.ydd_c00207{bottom:85.114120pt;}
.ye4_c00207{bottom:85.114240pt;}
.ydc_c00207{bottom:85.114373pt;}
.ydb_c00207{bottom:98.968907pt;}
.yda_c00207{bottom:99.221667pt;}
.yd9_c00207{bottom:99.781573pt;}
.yd8_c00207{bottom:99.947480pt;}
.yd7_c00207{bottom:100.061760pt;}
.yd6_c00207{bottom:100.504640pt;}
.yd5_c00207{bottom:101.124733pt;}
.yd4_c00207{bottom:101.449227pt;}
.yd3_c00207{bottom:101.760387pt;}
.yd2_c00207{bottom:114.666160pt;}
.yd1_c00207{bottom:114.812600pt;}
.yd0_c00207{bottom:115.482187pt;}
.ycf_c00207{bottom:116.089547pt;}
.yce_c00207{bottom:116.588893pt;}
.ycd_c00207{bottom:116.768453pt;}
.ycc_c00207{bottom:117.121333pt;}
.ycb_c00207{bottom:129.669099pt;}
.yca_c00207{bottom:129.879531pt;}
.yc9_c00207{bottom:130.921451pt;}
.yc8_c00207{bottom:131.297899pt;}
.yc7_c00207{bottom:132.526976pt;}
.yc6_c00207{bottom:133.360341pt;}
.yc5_c00207{bottom:133.682667pt;}
.yc4_c00207{bottom:144.757103pt;}
.yc3_c00207{bottom:145.738111pt;}
.yc2_c00207{bottom:146.948075pt;}
.yc1_c00207{bottom:147.386891pt;}
.yc0_c00207{bottom:148.515711pt;}
.ybf_c00207{bottom:149.098839pt;}
.ybe_c00207{bottom:149.728923pt;}
.ybd_c00207{bottom:150.242667pt;}
.ybb_c00207{bottom:160.559947pt;}
.yba_c00207{bottom:160.851680pt;}
.yb9_c00207{bottom:161.473413pt;}
.yb8_c00207{bottom:161.749867pt;}
.yb7_c00207{bottom:162.694960pt;}
.yb6_c00207{bottom:162.873653pt;}
.yb5_c00207{bottom:163.842507pt;}
.yb4_c00207{bottom:164.113573pt;}
.ybc_c00207{bottom:175.440000pt;}
.yb3_c00207{bottom:176.483627pt;}
.yb2_c00207{bottom:176.781067pt;}
.yb1_c00207{bottom:177.020933pt;}
.yb0_c00207{bottom:177.784640pt;}
.yaf_c00207{bottom:178.764027pt;}
.yae_c00207{bottom:179.310053pt;}
.yad_c00207{bottom:180.180213pt;}
.yac_c00207{bottom:180.919467pt;}
.yab_c00207{bottom:191.206133pt;}
.yaa_c00207{bottom:191.747760pt;}
.ya9_c00207{bottom:192.186880pt;}
.ya8_c00207{bottom:192.931013pt;}
.ya7_c00207{bottom:193.495867pt;}
.ya6_c00207{bottom:194.822427pt;}
.ya5_c00207{bottom:195.387467pt;}
.ya4_c00207{bottom:195.744133pt;}
.ya3_c00207{bottom:196.280187pt;}
.ya2_c00207{bottom:207.164640pt;}
.ya1_c00207{bottom:207.487440pt;}
.ya0_c00207{bottom:208.680400pt;}
.y9f_c00207{bottom:209.429947pt;}
.y9e_c00207{bottom:210.564560pt;}
.y9d_c00207{bottom:211.399307pt;}
.y9c_c00207{bottom:211.883227pt;}
.y9b_c00207{bottom:222.480640pt;}
.y9a_c00207{bottom:222.754373pt;}
.y99_c00207{bottom:223.232747pt;}
.y98_c00207{bottom:224.693680pt;}
.y97_c00207{bottom:224.987280pt;}
.y96_c00207{bottom:226.272933pt;}
.y95_c00207{bottom:226.532560pt;}
.y94_c00207{bottom:227.007280pt;}
.y93_c00207{bottom:237.343920pt;}
.y92_c00207{bottom:237.620667pt;}
.y91_c00207{bottom:237.900400pt;}
.y90_c00207{bottom:238.731493pt;}
.y8f_c00207{bottom:239.037653pt;}
.y8e_c00207{bottom:239.871120pt;}
.y8d_c00207{bottom:241.108000pt;}
.y8c_c00207{bottom:241.409573pt;}
.y8b_c00207{bottom:252.656533pt;}
.y8a_c00207{bottom:253.112107pt;}
.y89_c00207{bottom:253.861387pt;}
.y88_c00207{bottom:254.130267pt;}
.y87_c00207{bottom:254.713227pt;}
.y86_c00207{bottom:255.274640pt;}
.y85_c00207{bottom:255.811013pt;}
.y84_c00207{bottom:268.368347pt;}
.y83_c00207{bottom:268.662213pt;}
.y82_c00207{bottom:269.386107pt;}
.y81_c00207{bottom:269.544853pt;}
.y80_c00207{bottom:270.094187pt;}
.y7f_c00207{bottom:270.328613pt;}
.y7e_c00207{bottom:270.934133pt;}
.y7d_c00207{bottom:283.440293pt;}
.y7c_c00207{bottom:283.983387pt;}
.y7b_c00207{bottom:284.390800pt;}
.y7a_c00207{bottom:284.756000pt;}
.y79_c00207{bottom:285.768240pt;}
.y78_c00207{bottom:286.123893pt;}
.y77_c00207{bottom:286.776187pt;}
.y76_c00207{bottom:298.687440pt;}
.y75_c00207{bottom:298.999573pt;}
.y74_c00207{bottom:299.736240pt;}
.y73_c00207{bottom:300.136213pt;}
.y72_c00207{bottom:301.022320pt;}
.y71_c00207{bottom:301.312747pt;}
.y70_c00207{bottom:301.470080pt;}
.y6f_c00207{bottom:301.900160pt;}
.y6e_c00207{bottom:313.808293pt;}
.y6d_c00207{bottom:314.168453pt;}
.y6c_c00207{bottom:314.972293pt;}
.y6b_c00207{bottom:315.157973pt;}
.y6a_c00207{bottom:315.975840pt;}
.y69_c00207{bottom:316.256933pt;}
.y68_c00207{bottom:316.855040pt;}
.y67_c00207{bottom:317.182453pt;}
.y66_c00207{bottom:317.501573pt;}
.y65_c00207{bottom:328.862773pt;}
.y64_c00207{bottom:329.267040pt;}
.y63_c00207{bottom:330.030373pt;}
.y62_c00207{bottom:330.717200pt;}
.y61_c00207{bottom:331.020880pt;}
.y60_c00207{bottom:331.605200pt;}
.y5f_c00207{bottom:331.888827pt;}
.y5e_c00207{bottom:332.258267pt;}
.y5d_c00207{bottom:333.179867pt;}
.y5c_c00207{bottom:333.587973pt;}
.y5b_c00207{bottom:345.144560pt;}
.y5a_c00207{bottom:345.766213pt;}
.y59_c00207{bottom:346.108027pt;}
.y58_c00207{bottom:347.076667pt;}
.y57_c00207{bottom:347.733120pt;}
.y56_c00207{bottom:347.991600pt;}
.y55_c00207{bottom:348.229467pt;}
.y54_c00207{bottom:348.707760pt;}
.y53_c00207{bottom:360.277440pt;}
.y52_c00207{bottom:360.724267pt;}
.y51_c00207{bottom:361.104667pt;}
.y50_c00207{bottom:362.203227pt;}
.y4f_c00207{bottom:362.520720pt;}
.y4e_c00207{bottom:363.453227pt;}
.y4d_c00207{bottom:364.218773pt;}
.y4c_c00207{bottom:364.790693pt;}
.y4b_c00207{bottom:376.043040pt;}
.y4a_c00207{bottom:377.728987pt;}
.y49_c00207{bottom:378.246373pt;}
.y48_c00207{bottom:380.036907pt;}
.y47_c00207{bottom:380.393547pt;}
.y46_c00207{bottom:390.853093pt;}
.y45_c00207{bottom:391.285893pt;}
.y44_c00207{bottom:391.667573pt;}
.y43_c00207{bottom:392.569440pt;}
.y42_c00207{bottom:392.937307pt;}
.y41_c00207{bottom:393.672720pt;}
.y40_c00207{bottom:394.042400pt;}
.y3f_c00207{bottom:395.217253pt;}
.y3e_c00207{bottom:395.754773pt;}
.y3d_c00207{bottom:406.472240pt;}
.y3c_c00207{bottom:406.777467pt;}
.y3b_c00207{bottom:407.060907pt;}
.y3a_c00207{bottom:407.352987pt;}
.y39_c00207{bottom:408.215360pt;}
.y38_c00207{bottom:408.558667pt;}
.y37_c00207{bottom:409.408000pt;}
.y36_c00207{bottom:409.753387pt;}
.y35_c00207{bottom:410.158187pt;}
.y34_c00207{bottom:420.673360pt;}
.y33_c00207{bottom:421.274880pt;}
.y32_c00207{bottom:422.067093pt;}
.y31_c00207{bottom:422.593173pt;}
.y30_c00207{bottom:422.950027pt;}
.y2f_c00207{bottom:423.679680pt;}
.y2e_c00207{bottom:424.044693pt;}
.y2d_c00207{bottom:424.471893pt;}
.y2c_c00207{bottom:425.269120pt;}
.y2b_c00207{bottom:425.764000pt;}
.y2a_c00207{bottom:436.620608pt;}
.y29_c00207{bottom:436.935552pt;}
.y28_c00207{bottom:437.371328pt;}
.y27_c00207{bottom:438.366432pt;}
.y26_c00207{bottom:438.584992pt;}
.y25_c00207{bottom:439.636811pt;}
.y24_c00207{bottom:440.881909pt;}
.y23_c00207{bottom:452.194773pt;}
.y22_c00207{bottom:452.390400pt;}
.y21_c00207{bottom:453.419627pt;}
.y20_c00207{bottom:453.990912pt;}
.y1f_c00207{bottom:454.690880pt;}
.y1e_c00207{bottom:455.835669pt;}
.y1d_c00207{bottom:456.242667pt;}
.y1c_c00207{bottom:466.986667pt;}
.y1b_c00207{bottom:467.854667pt;}
.y1a_c00207{bottom:468.573333pt;}
.y19_c00207{bottom:469.020000pt;}
.y18_c00207{bottom:469.648000pt;}
.y17_c00207{bottom:469.846667pt;}
.y16_c00207{bottom:470.176000pt;}
.y15_c00207{bottom:470.642667pt;}
.y14_c00207{bottom:482.594667pt;}
.y13_c00207{bottom:482.977333pt;}
.y12_c00207{bottom:483.232000pt;}
.y11_c00207{bottom:483.538667pt;}
.y10_c00207{bottom:483.706667pt;}
.yf_c00207{bottom:484.409333pt;}
.ye_c00207{bottom:484.848000pt;}
.yd_c00207{bottom:485.106667pt;}
.yc_c00207{bottom:485.362667pt;}
.yb_c00207{bottom:486.001333pt;}
.ya_c00207{bottom:497.986667pt;}
.y9_c00207{bottom:498.462667pt;}
.y8_c00207{bottom:498.674667pt;}
.y7_c00207{bottom:499.345333pt;}
.y6_c00207{bottom:499.708000pt;}
.y5_c00207{bottom:500.440000pt;}
.y4_c00207{bottom:500.842667pt;}
.y3_c00207{bottom:501.300000pt;}
.y2_c00207{bottom:501.601333pt;}
.y1_c00207{bottom:511.406667pt;}
.h11_c00207{height:14.933333pt;}
.hc_c00207{height:51.343599pt;}
.h17_c00207{height:52.269280pt;}
.h3_c00207{height:53.200000pt;}
.h18_c00207{height:53.202660pt;}
.h6_c00207{height:53.206809pt;}
.ha_c00207{height:53.210639pt;}
.h16_c00207{height:54.136040pt;}
.h13_c00207{height:54.140262pt;}
.hb_c00207{height:54.144159pt;}
.he_c00207{height:55.077679pt;}
.h19_c00207{height:56.002800pt;}
.h10_c00207{height:56.011199pt;}
.h15_c00207{height:56.936180pt;}
.h9_c00207{height:56.944719pt;}
.h14_c00207{height:57.869560pt;}
.h8_c00207{height:58.811759pt;}
.h12_c00207{height:58.812964pt;}
.hd_c00207{height:59.745279pt;}
.h4_c00207{height:60.666667pt;}
.h7_c00207{height:60.678799pt;}
.hf_c00207{height:61.612319pt;}
.h5_c00207{height:62.541337pt;}
.h2_c00207{height:63.466667pt;}
.h1_c00207{height:554.000000pt;}
.h0_c00207{height:554.133333pt;}
.w0_c00207{width:325.680000pt;}
.w1_c00207{width:326.000000pt;}
.x0_c00207{left:0.000000pt;}
.x7a_c00207{left:40.078373pt;}
.x65_c00207{left:41.059440pt;}
.x54_c00207{left:43.059813pt;}
.x37_c00207{left:44.041920pt;}
.x1b_c00207{left:44.946667pt;}
.x2_c00207{left:45.976000pt;}
.x85_c00207{left:52.797773pt;}
.x59_c00207{left:59.576800pt;}
.x34_c00207{left:60.976160pt;}
.x45_c00207{left:64.826267pt;}
.x3_c00207{left:66.077333pt;}
.x5e_c00207{left:66.993707pt;}
.x2b_c00207{left:69.016133pt;}
.x1c_c00207{left:70.384000pt;}
.x38_c00207{left:71.304053pt;}
.x7b_c00207{left:72.240253pt;}
.x3f_c00207{left:74.450987pt;}
.x51_c00207{left:76.886480pt;}
.x66_c00207{left:78.022107pt;}
.x14_c00207{left:79.509333pt;}
.x56_c00207{left:83.871067pt;}
.x4b_c00207{left:86.950080pt;}
.x2c_c00207{left:89.353360pt;}
.xb_c00207{left:91.260000pt;}
.x4_c00207{left:96.601333pt;}
.x76_c00207{left:99.475067pt;}
.x83_c00207{left:101.041253pt;}
.x15_c00207{left:103.048000pt;}
.x40_c00207{left:105.470800pt;}
.x39_c00207{left:107.780667pt;}
.xc_c00207{left:109.584000pt;}
.x46_c00207{left:110.906267pt;}
.x71_c00207{left:113.113333pt;}
.x21_c00207{left:114.314795pt;}
.x52_c00207{left:115.546693pt;}
.x16_c00207{left:117.205333pt;}
.x84_c00207{left:119.521773pt;}
.x6b_c00207{left:120.621147pt;}
.x67_c00207{left:121.530107pt;}
.x5_c00207{left:123.428000pt;}
.x6e_c00207{left:124.605333pt;}
.x2f_c00207{left:126.541040pt;}
.xd_c00207{left:128.073333pt;}
.x47_c00207{left:129.378267pt;}
.x25_c00207{left:131.094667pt;}
.x7c_c00207{left:135.603920pt;}
.x86_c00207{left:137.760933pt;}
.x2d_c00207{left:139.289680pt;}
.x1d_c00207{left:141.933333pt;}
.x30_c00207{left:144.158027pt;}
.x4c_c00207{left:145.515920pt;}
.x41_c00207{left:146.496747pt;}
.x26_c00207{left:149.345333pt;}
.x3a_c00207{left:152.205120pt;}
.x7d_c00207{left:153.364360pt;}
.x60_c00207{left:154.817573pt;}
.x77_c00207{left:155.883840pt;}
.xe_c00207{left:159.450667pt;}
.x17_c00207{left:162.086667pt;}
.x1_c00207{left:164.880000pt;}
.x35_c00207{left:165.901307pt;}
.x3b_c00207{left:167.346160pt;}
.x6_c00207{left:172.224000pt;}
.x5a_c00207{left:174.565387pt;}
.x7e_c00207{left:175.685253pt;}
.x80_c00207{left:178.188720pt;}
.x31_c00207{left:179.194667pt;}
.x62_c00207{left:182.280667pt;}
.x1e_c00207{left:185.681333pt;}
.x48_c00207{left:187.959600pt;}
.x61_c00207{left:188.893547pt;}
.x72_c00207{left:189.930667pt;}
.x5b_c00207{left:191.607413pt;}
.x57_c00207{left:192.615627pt;}
.x18_c00207{left:194.006667pt;}
.x7_c00207{left:196.401333pt;}
.x68_c00207{left:197.800773pt;}
.x4d_c00207{left:200.081387pt;}
.x27_c00207{left:203.670667pt;}
.x42_c00207{left:207.000240pt;}
.x6c_c00207{left:208.173493pt;}
.xf_c00207{left:209.672000pt;}
.x4e_c00207{left:212.499973pt;}
.x53_c00207{left:213.963840pt;}
.x55_c00207{left:217.813600pt;}
.x3c_c00207{left:219.673120pt;}
.x87_c00207{left:220.563893pt;}
.x10_c00207{left:221.625333pt;}
.x7f_c00207{left:224.887507pt;}
.x2e_c00207{left:227.382960pt;}
.x43_c00207{left:228.359280pt;}
.x28_c00207{left:229.974667pt;}
.x5f_c00207{left:231.984373pt;}
.x81_c00207{left:232.910280pt;}
.x69_c00207{left:235.986107pt;}
.x3d_c00207{left:237.759413pt;}
.x22_c00207{left:240.153429pt;}
.x8_c00207{left:241.096000pt;}
.x36_c00207{left:242.528907pt;}
.x11_c00207{left:243.508000pt;}
.x19_c00207{left:245.366667pt;}
.x63_c00207{left:247.730000pt;}
.x58_c00207{left:250.221013pt;}
.x82_c00207{left:251.633907pt;}
.x5c_c00207{left:253.284533pt;}
.x9_c00207{left:255.213333pt;}
.x6f_c00207{left:256.872000pt;}
.x32_c00207{left:257.830427pt;}
.x3e_c00207{left:259.033653pt;}
.x49_c00207{left:260.467600pt;}
.x12_c00207{left:261.724000pt;}
.x6a_c00207{left:262.851440pt;}
.x23_c00207{left:264.388661pt;}
.x4f_c00207{left:266.097333pt;}
.x44_c00207{left:267.245067pt;}
.x5d_c00207{left:268.655813pt;}
.x29_c00207{left:269.585333pt;}
.x78_c00207{left:272.580013pt;}
.x74_c00207{left:273.509333pt;}
.x33_c00207{left:278.470027pt;}
.x4a_c00207{left:280.680933pt;}
.x24_c00207{left:281.905440pt;}
.x1f_c00207{left:285.713333pt;}
.xa_c00207{left:286.925333pt;}
.x75_c00207{left:288.153333pt;}
.x13_c00207{left:289.102667pt;}
.x50_c00207{left:290.107733pt;}
.x73_c00207{left:291.730667pt;}
.x79_c00207{left:295.589120pt;}
.x64_c00207{left:296.767333pt;}
.x20_c00207{left:297.940000pt;}
.x2a_c00207{left:299.661333pt;}
.x70_c00207{left:303.586667pt;}
.x1a_c00207{left:307.338667pt;}
.x6d_c00207{left:316.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00208 {
    display:none;
  }
  .loading-indicator_c00208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00208 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00208 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00208" -> "#page-container .classname_c00208")
 */
.pf_c00208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00208 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00208 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00208 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00208 {overflow:visible;}
  }
}
.c_c00208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00208 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00208:after { /* webkit #35443 */
  content: '';
}
.t_c00208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00208 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00208 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00208 { /* info for Javascript */
  display:none;
}
.l_c00208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00208:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00208 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00208.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00208{transform:matrix(0.014170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014170,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.100260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100260,0.000000,0.000000,0.250000,0,0);}
.mc7_c00208{transform:matrix(0.135520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135520,0.000000,0.000000,0.250000,0,0);}
.m5e_c00208{transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);}
.ma9_c00208{transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);}
.mac_c00208{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.143020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143020,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143115,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.149055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149055,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);}
.m30_c00208{transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00208{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m31_c00208{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.mec_c00208{transform:matrix(0.156487,0.002034,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156487,0.002034,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156487,0.002034,-0.003250,0.249979,0,0);}
.mbd_c00208{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.mc3_c00208{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);}
.m84_c00208{transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);}
.me9_c00208{transform:matrix(0.160541,0.002087,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160541,0.002087,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160541,0.002087,-0.003250,0.249979,0,0);}
.me0_c00208{transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);}
.mc_c00208{transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162020,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.m49_c00208{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.mdc_c00208{transform:matrix(0.162876,0.002117,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162876,0.002117,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162876,0.002117,-0.003250,0.249979,0,0);}
.meb_c00208{transform:matrix(0.163491,0.002125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163491,0.002125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163491,0.002125,-0.003250,0.249979,0,0);}
.md4_c00208{transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);}
.mb0_c00208{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.ma3_c00208{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);}
.m29_c00208{transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.mc8_c00208{transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m8e_c00208{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m75_c00208{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00208{transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m8b_c00208{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m77_c00208{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m4b_c00208{transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);}
.m4f_c00208{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.ma8_c00208{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.mda_c00208{transform:matrix(0.176445,0.002294,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176445,0.002294,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176445,0.002294,-0.003250,0.249979,0,0);}
.ma2_c00208{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m35_c00208{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);}
.m67_c00208{transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.ma7_c00208{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.md9_c00208{transform:matrix(0.179940,0.002339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179940,0.002339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179940,0.002339,-0.003250,0.249979,0,0);}
.m38_c00208{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.me8_c00208{transform:matrix(0.180375,0.002345,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180375,0.002345,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180375,0.002345,-0.003250,0.249979,0,0);}
.ma0_c00208{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.mbc_c00208{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m74_c00208{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.mb4_c00208{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.mc9_c00208{transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);}
.me7_c00208{transform:matrix(0.181810,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181810,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181810,0.002364,-0.003250,0.249979,0,0);}
.m1f_c00208{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.mcc_c00208{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m53_c00208{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.maa_c00208{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.m81_c00208{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.mf4_c00208{transform:matrix(0.183664,0.002388,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183664,0.002388,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183664,0.002388,-0.003250,0.249979,0,0);}
.m32_c00208{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m89_c00208{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.mc5_c00208{transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);}
.m9a_c00208{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);}
.mbe_c00208{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.med_c00208{transform:matrix(0.186549,0.002425,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186549,0.002425,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186549,0.002425,-0.003250,0.249979,0,0);}
.md7_c00208{transform:matrix(0.186719,0.002427,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186719,0.002427,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186719,0.002427,-0.003250,0.249979,0,0);}
.m5c_c00208{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.mc6_c00208{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.mdb_c00208{transform:matrix(0.187684,0.002440,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187684,0.002440,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187684,0.002440,-0.003250,0.249979,0,0);}
.mcb_c00208{transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);}
.mb3_c00208{transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.md0_c00208{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.m5b_c00208{transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);}
.m8d_c00208{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.mca_c00208{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m96_c00208{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m94_c00208{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.m7b_c00208{transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);}
.m97_c00208{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.mea_c00208{transform:matrix(0.192694,0.002505,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192694,0.002505,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192694,0.002505,-0.003250,0.249979,0,0);}
.mbb_c00208{transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);}
.me1_c00208{transform:matrix(0.192894,0.002508,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192894,0.002508,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192894,0.002508,-0.003250,0.249979,0,0);}
.mb9_c00208{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);}
.m63_c00208{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.ma5_c00208{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.m8c_c00208{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m98_c00208{transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m99_c00208{transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);}
.m6c_c00208{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mb6_c00208{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.ma6_c00208{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);}
.m2a_c00208{transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);}
.m7e_c00208{transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);}
.m4e_c00208{transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.mab_c00208{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00208{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.mad_c00208{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.m48_c00208{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.mcf_c00208{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.m6e_c00208{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.m61_c00208{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.ma1_c00208{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mc2_c00208{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.me4_c00208{transform:matrix(0.200613,0.002608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200613,0.002608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200613,0.002608,-0.003250,0.249979,0,0);}
.m9b_c00208{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.md8_c00208{transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);}
.mbf_c00208{transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m82_c00208{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.m95_c00208{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);}
.mcd_c00208{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m87_c00208{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mba_c00208{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.me2_c00208{transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);}
.m47_c00208{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);}
.me3_c00208{transform:matrix(0.206273,0.002682,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206273,0.002682,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206273,0.002682,-0.003250,0.249979,0,0);}
.m46_c00208{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);}
.m8a_c00208{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.mc4_c00208{transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);}
.m83_c00208{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.mb7_c00208{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.md3_c00208{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);}
.m8f_c00208{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m64_c00208{transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);}
.mae_c00208{transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);}
.mf5_c00208{transform:matrix(0.210422,0.002735,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210422,0.002735,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210422,0.002735,-0.003250,0.249979,0,0);}
.mc1_c00208{transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);}
.m9e_c00208{transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);}
.m78_c00208{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.m71_c00208{transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211295,0.000000,0.000000,0.250000,0,0);}
.md5_c00208{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m85_c00208{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m7d_c00208{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);}
.m60_c00208{transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);}
.m91_c00208{transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);}
.mdd_c00208{transform:matrix(0.213482,0.002775,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213482,0.002775,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213482,0.002775,-0.003250,0.249979,0,0);}
.mf3_c00208{transform:matrix(0.213517,0.002776,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213517,0.002776,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213517,0.002776,-0.003250,0.249979,0,0);}
.m88_c00208{transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);}
.m80_c00208{transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);}
.m66_c00208{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.mc0_c00208{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m92_c00208{transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);}
.m9c_c00208{transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);}
.m7a_c00208{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m93_c00208{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.me5_c00208{transform:matrix(0.217042,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217042,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217042,0.002822,-0.003250,0.249979,0,0);}
.m73_c00208{transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);}
.md2_c00208{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m6a_c00208{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00208{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m76_c00208{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m3b_c00208{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.m54_c00208{transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);}
.m79_c00208{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);}
.ma4_c00208{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.mb8_c00208{transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);}
.m70_c00208{transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);}
.m86_c00208{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.mb1_c00208{transform:matrix(0.227055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227055,0.000000,0.000000,0.250000,0,0);}
.m7c_c00208{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{transform:matrix(0.231555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231555,0.000000,0.000000,0.250000,0,0);}
.m6d_c00208{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.231790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231790,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m68_c00208{transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);}
.m7f_c00208{transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);}
.mf2_c00208{transform:matrix(0.236040,0.003069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236040,0.003069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236040,0.003069,-0.003250,0.249979,0,0);}
.m22_c00208{transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m90_c00208{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.m5a_c00208{transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);}
.m39_c00208{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.md1_c00208{transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);}
.m6f_c00208{transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m65_c00208{transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);}
.m41_c00208{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m69_c00208{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.me6_c00208{transform:matrix(0.246684,0.003207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246684,0.003207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246684,0.003207,-0.003250,0.249979,0,0);}
.m9d_c00208{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m42_c00208{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);}
.mef_c00208{transform:matrix(0.268572,0.003491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268572,0.003491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268572,0.003491,-0.003250,0.249979,0,0);}
.md6_c00208{transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);}
.mf1_c00208{transform:matrix(0.275242,0.003578,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275242,0.003578,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275242,0.003578,-0.003250,0.249979,0,0);}
.mde_c00208{transform:matrix(0.293745,0.003819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293745,0.003819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293745,0.003819,-0.003250,0.249979,0,0);}
.m5d_c00208{transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);}
.mee_c00208{transform:matrix(0.306304,0.003982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306304,0.003982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306304,0.003982,-0.003250,0.249979,0,0);}
.m52_c00208{transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);}
.m3a_c00208{transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00208{transform:matrix(0.347021,0.004511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.347021,0.004511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.347021,0.004511,-0.003250,0.249979,0,0);}
.mf0_c00208{transform:matrix(0.347676,0.004520,-0.003250,0.249979,0,0);-ms-transform:matrix(0.347676,0.004520,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.347676,0.004520,-0.003250,0.249979,0,0);}
.m34_c00208{transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);}
.mce_c00208{transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388460,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.452340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452340,0.000000,0.000000,0.250000,0,0);}
.m72_c00208{transform:matrix(1.836015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.836015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.836015,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:0.000000px;}
.fc0_c00208{color:transparent;}
.fs6_c00208{font-size:55.650000px;}
.fs5_c00208{font-size:57.750000px;}
.fs8_c00208{font-size:58.800000px;}
.fs10_c00208{font-size:59.855057px;}
.fs7_c00208{font-size:60.900000px;}
.fsc_c00208{font-size:61.950000px;}
.fs4_c00208{font-size:63.000000px;}
.fs9_c00208{font-size:64.050000px;}
.fsb_c00208{font-size:65.100000px;}
.fse_c00208{font-size:65.105501px;}
.fsd_c00208{font-size:66.150000px;}
.fsa_c00208{font-size:67.200000px;}
.fs2_c00208{font-size:68.250000px;}
.fsf_c00208{font-size:68.255767px;}
.fs3_c00208{font-size:69.300000px;}
.fs1_c00208{font-size:72.450000px;}
.fs0_c00208{font-size:80.850000px;}
.y0_c00208{bottom:0.000000px;}
.y66_c00208{bottom:29.547526px;}
.y65_c00208{bottom:29.784373px;}
.y64_c00208{bottom:30.140532px;}
.y63_c00208{bottom:30.879039px;}
.y62_c00208{bottom:31.109119px;}
.y61_c00208{bottom:31.669635px;}
.y60_c00208{bottom:31.880702px;}
.y5f_c00208{bottom:32.699497px;}
.y5e_c00208{bottom:32.944477px;}
.y5d_c00208{bottom:47.730157px;}
.y5c_c00208{bottom:48.026386px;}
.y5b_c00208{bottom:48.635227px;}
.y5a_c00208{bottom:48.875116px;}
.y59_c00208{bottom:49.847253px;}
.y58_c00208{bottom:50.154755px;}
.y57_c00208{bottom:51.027549px;}
.y56_c00208{bottom:66.700593px;}
.y55_c00208{bottom:67.108080px;}
.y54_c00208{bottom:67.244565px;}
.y53_c00208{bottom:67.380133px;}
.y52_c00208{bottom:67.973432px;}
.y51_c00208{bottom:68.707077px;}
.y50_c00208{bottom:68.950150px;}
.y4f_c00208{bottom:69.102297px;}
.y4e_c00208{bottom:69.390052px;}
.y4d_c00208{bottom:82.127013px;}
.y4c_c00208{bottom:82.445623px;}
.y4b_c00208{bottom:82.972630px;}
.y4a_c00208{bottom:83.319087px;}
.y49_c00208{bottom:84.067751px;}
.y48_c00208{bottom:84.867777px;}
.y47_c00208{bottom:85.591500px;}
.y46_c00208{bottom:99.804000px;}
.y45_c00208{bottom:100.104000px;}
.y44_c00208{bottom:100.333500px;}
.y43_c00208{bottom:100.770000px;}
.y42_c00208{bottom:101.293500px;}
.y41_c00208{bottom:101.614500px;}
.y40_c00208{bottom:101.961000px;}
.y3f_c00208{bottom:102.552000px;}
.y3e_c00208{bottom:102.873000px;}
.y3d_c00208{bottom:117.465000px;}
.y3c_c00208{bottom:118.408500px;}
.y3b_c00208{bottom:118.966500px;}
.y3a_c00208{bottom:119.275500px;}
.y39_c00208{bottom:120.187500px;}
.y38_c00208{bottom:120.978000px;}
.y37_c00208{bottom:133.192500px;}
.y36_c00208{bottom:133.662000px;}
.y35_c00208{bottom:134.067000px;}
.y34_c00208{bottom:134.623500px;}
.y33_c00208{bottom:135.481500px;}
.y32_c00208{bottom:135.820500px;}
.y31_c00208{bottom:137.001000px;}
.y30_c00208{bottom:138.232500px;}
.y2f_c00208{bottom:138.513000px;}
.y2e_c00208{bottom:150.966000px;}
.y2d_c00208{bottom:167.638500px;}
.y2c_c00208{bottom:185.611500px;}
.y2b_c00208{bottom:201.031500px;}
.y2a_c00208{bottom:219.711000px;}
.y29_c00208{bottom:236.367000px;}
.y28_c00208{bottom:254.119500px;}
.y27_c00208{bottom:273.004500px;}
.y26_c00208{bottom:289.255500px;}
.y25_c00208{bottom:306.414000px;}
.y24_c00208{bottom:323.719500px;}
.y23_c00208{bottom:340.840500px;}
.y22_c00208{bottom:356.245500px;}
.y1c_c00208{bottom:370.711500px;}
.y1d_c00208{bottom:371.115000px;}
.y1e_c00208{bottom:371.619000px;}
.y1f_c00208{bottom:371.919000px;}
.y20_c00208{bottom:372.892500px;}
.y21_c00208{bottom:373.729500px;}
.y1b_c00208{bottom:390.486000px;}
.y1a_c00208{bottom:407.581500px;}
.y19_c00208{bottom:424.474500px;}
.y18_c00208{bottom:440.976000px;}
.y17_c00208{bottom:458.014500px;}
.y16_c00208{bottom:475.569000px;}
.y15_c00208{bottom:492.223500px;}
.y14_c00208{bottom:509.620500px;}
.y13_c00208{bottom:527.553000px;}
.yd_c00208{bottom:543.241500px;}
.ye_c00208{bottom:543.417000px;}
.yf_c00208{bottom:544.207500px;}
.y10_c00208{bottom:544.774500px;}
.y11_c00208{bottom:545.535000px;}
.y12_c00208{bottom:546.250500px;}
.y2_c00208{bottom:560.521500px;}
.y3_c00208{bottom:560.809500px;}
.y4_c00208{bottom:561.033000px;}
.y5_c00208{bottom:561.618000px;}
.y6_c00208{bottom:561.840000px;}
.y7_c00208{bottom:562.179000px;}
.y8_c00208{bottom:562.806000px;}
.y9_c00208{bottom:562.945500px;}
.ya_c00208{bottom:563.115000px;}
.yb_c00208{bottom:563.409000px;}
.yc_c00208{bottom:563.536500px;}
.y1_c00208{bottom:574.860000px;}
.h8_c00208{height:55.650000px;}
.h7_c00208{height:57.750000px;}
.ha_c00208{height:58.800000px;}
.h12_c00208{height:59.855057px;}
.h9_c00208{height:60.900000px;}
.he_c00208{height:61.950000px;}
.h6_c00208{height:63.000000px;}
.hb_c00208{height:64.050000px;}
.hd_c00208{height:65.100000px;}
.h10_c00208{height:65.105501px;}
.hf_c00208{height:66.150000px;}
.hc_c00208{height:67.200000px;}
.h4_c00208{height:68.250000px;}
.h11_c00208{height:68.255767px;}
.h5_c00208{height:69.300000px;}
.h3_c00208{height:72.450000px;}
.h2_c00208{height:80.850000px;}
.h1_c00208{height:623.250000px;}
.h0_c00208{height:623.400000px;}
.w0_c00208{width:366.390000px;}
.w1_c00208{width:366.750000px;}
.x0_c00208{left:0.000000px;}
.x35_c00208{left:30.240000px;}
.x3_c00208{left:31.690500px;}
.x51_c00208{left:32.940000px;}
.x60_c00208{left:34.020000px;}
.x77_c00208{left:35.518191px;}
.x75_c00208{left:42.772500px;}
.x2a_c00208{left:44.280000px;}
.xe_c00208{left:47.119500px;}
.x4a_c00208{left:48.870000px;}
.x40_c00208{left:49.950000px;}
.x3b_c00208{left:52.380000px;}
.x58_c00208{left:55.620000px;}
.x7c_c00208{left:56.779887px;}
.x4_c00208{left:57.865500px;}
.x5d_c00208{left:61.560000px;}
.x73_c00208{left:63.883500px;}
.x30_c00208{left:66.420000px;}
.x24_c00208{left:68.038500px;}
.x46_c00208{left:69.276000px;}
.x68_c00208{left:70.470000px;}
.x3c_c00208{left:73.440000px;}
.x12_c00208{left:76.408500px;}
.x5_c00208{left:78.166500px;}
.x2b_c00208{left:80.190000px;}
.x25_c00208{left:81.538500px;}
.x41_c00208{left:89.100000px;}
.x13_c00208{left:91.798500px;}
.x72_c00208{left:93.867000px;}
.x6c_c00208{left:95.040000px;}
.x69_c00208{left:97.200000px;}
.x3d_c00208{left:98.550000px;}
.x4f_c00208{left:100.710000px;}
.x55_c00208{left:102.870000px;}
.x26_c00208{left:105.028500px;}
.x1a_c00208{left:108.268500px;}
.x36_c00208{left:109.890000px;}
.x61_c00208{left:111.510000px;}
.x20_c00208{left:112.858500px;}
.x47_c00208{left:115.155000px;}
.x6d_c00208{left:116.910000px;}
.xf_c00208{left:118.936500px;}
.x42_c00208{left:120.150000px;}
.x14_c00208{left:122.038500px;}
.x7d_c00208{left:125.072784px;}
.x1b_c00208{left:127.438500px;}
.x4b_c00208{left:129.870000px;}
.x6_c00208{left:131.391000px;}
.x79_c00208{left:134.342376px;}
.x2c_c00208{left:137.970000px;}
.x43_c00208{left:142.290000px;}
.x31_c00208{left:146.070000px;}
.x37_c00208{left:147.150000px;}
.x4c_c00208{left:148.500000px;}
.x7_c00208{left:151.570500px;}
.x5a_c00208{left:154.710000px;}
.x76_c00208{left:159.984000px;}
.x15_c00208{left:161.998500px;}
.x1_c00208{left:164.700000px;}
.x62_c00208{left:166.050000px;}
.x38_c00208{left:167.940000px;}
.x10_c00208{left:170.509500px;}
.x1c_c00208{left:172.798500px;}
.x56_c00208{left:175.500000px;}
.x74_c00208{left:178.360500px;}
.x8_c00208{left:182.391000px;}
.x66_c00208{left:184.410000px;}
.x52_c00208{left:186.300000px;}
.x16_c00208{left:188.188500px;}
.x2d_c00208{left:190.350000px;}
.x70_c00208{left:193.411500px;}
.x63_c00208{left:194.670000px;}
.x21_c00208{left:196.558500px;}
.x2e_c00208{left:203.040000px;}
.x27_c00208{left:204.928500px;}
.x6e_c00208{left:207.360000px;}
.x7e_c00208{left:208.586376px;}
.x32_c00208{left:210.060000px;}
.x17_c00208{left:211.138500px;}
.x67_c00208{left:212.490000px;}
.x53_c00208{left:214.380000px;}
.x6a_c00208{left:216.270000px;}
.x3e_c00208{left:217.350000px;}
.x39_c00208{left:220.860000px;}
.x28_c00208{left:225.448500px;}
.x4d_c00208{left:227.880000px;}
.x48_c00208{left:230.989500px;}
.x1d_c00208{left:233.548500px;}
.x7a_c00208{left:235.307182px;}
.x44_c00208{left:237.600000px;}
.x9_c00208{left:239.337000px;}
.x64_c00208{left:241.650000px;}
.x78_c00208{left:242.906073px;}
.x6f_c00208{left:244.080000px;}
.x18_c00208{left:247.588500px;}
.xa_c00208{left:251.995500px;}
.x3a_c00208{left:253.260000px;}
.x3f_c00208{left:257.040000px;}
.x5e_c00208{left:261.630000px;}
.x1e_c00208{left:264.868500px;}
.xb_c00208{left:267.436500px;}
.x5b_c00208{left:269.190000px;}
.x4e_c00208{left:273.780000px;}
.x19_c00208{left:275.938500px;}
.x22_c00208{left:278.098500px;}
.x59_c00208{left:280.800000px;}
.x33_c00208{left:284.310000px;}
.x50_c00208{left:286.200000px;}
.x45_c00208{left:287.550000px;}
.x6b_c00208{left:288.630000px;}
.x5c_c00208{left:289.980000px;}
.xc_c00208{left:294.160500px;}
.x57_c00208{left:296.190000px;}
.x2f_c00208{left:298.350000px;}
.x7f_c00208{left:299.831065px;}
.x23_c00208{left:301.048500px;}
.x5f_c00208{left:303.210000px;}
.x11_c00208{left:304.647000px;}
.xd_c00208{left:305.778000px;}
.x49_c00208{left:307.138500px;}
.x34_c00208{left:309.150000px;}
.x7b_c00208{left:310.698157px;}
.x71_c00208{left:313.969500px;}
.x1f_c00208{left:315.088500px;}
.x65_c00208{left:318.870000px;}
.x54_c00208{left:320.220000px;}
.x2_c00208{left:324.000000px;}
.x29_c00208{left:326.428500px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fs6_c00208{font-size:49.466667pt;}
.fs5_c00208{font-size:51.333333pt;}
.fs8_c00208{font-size:52.266667pt;}
.fs10_c00208{font-size:53.204495pt;}
.fs7_c00208{font-size:54.133333pt;}
.fsc_c00208{font-size:55.066667pt;}
.fs4_c00208{font-size:56.000000pt;}
.fs9_c00208{font-size:56.933333pt;}
.fsb_c00208{font-size:57.866667pt;}
.fse_c00208{font-size:57.871556pt;}
.fsd_c00208{font-size:58.800000pt;}
.fsa_c00208{font-size:59.733333pt;}
.fs2_c00208{font-size:60.666667pt;}
.fsf_c00208{font-size:60.671793pt;}
.fs3_c00208{font-size:61.600000pt;}
.fs1_c00208{font-size:64.400000pt;}
.fs0_c00208{font-size:71.866667pt;}
.y0_c00208{bottom:0.000000pt;}
.y66_c00208{bottom:26.264468pt;}
.y65_c00208{bottom:26.474999pt;}
.y64_c00208{bottom:26.791584pt;}
.y63_c00208{bottom:27.448035pt;}
.y62_c00208{bottom:27.652551pt;}
.y61_c00208{bottom:28.150787pt;}
.y60_c00208{bottom:28.338401pt;}
.y5f_c00208{bottom:29.066220pt;}
.y5e_c00208{bottom:29.283980pt;}
.y5d_c00208{bottom:42.426807pt;}
.y5c_c00208{bottom:42.690121pt;}
.y5b_c00208{bottom:43.231313pt;}
.y5a_c00208{bottom:43.444548pt;}
.y59_c00208{bottom:44.308669pt;}
.y58_c00208{bottom:44.582004pt;}
.y57_c00208{bottom:45.357821pt;}
.y56_c00208{bottom:59.289416pt;}
.y55_c00208{bottom:59.651627pt;}
.y54_c00208{bottom:59.772947pt;}
.y53_c00208{bottom:59.893452pt;}
.y52_c00208{bottom:60.420828pt;}
.y51_c00208{bottom:61.072957pt;}
.y50_c00208{bottom:61.289023pt;}
.y4f_c00208{bottom:61.424264pt;}
.y4e_c00208{bottom:61.680047pt;}
.y4d_c00208{bottom:73.001789pt;}
.y4c_c00208{bottom:73.284999pt;}
.y4b_c00208{bottom:73.753449pt;}
.y4a_c00208{bottom:74.061411pt;}
.y49_c00208{bottom:74.726889pt;}
.y48_c00208{bottom:75.438024pt;}
.y47_c00208{bottom:76.081333pt;}
.y46_c00208{bottom:88.714667pt;}
.y45_c00208{bottom:88.981333pt;}
.y44_c00208{bottom:89.185333pt;}
.y43_c00208{bottom:89.573333pt;}
.y42_c00208{bottom:90.038667pt;}
.y41_c00208{bottom:90.324000pt;}
.y40_c00208{bottom:90.632000pt;}
.y3f_c00208{bottom:91.157333pt;}
.y3e_c00208{bottom:91.442667pt;}
.y3d_c00208{bottom:104.413333pt;}
.y3c_c00208{bottom:105.252000pt;}
.y3b_c00208{bottom:105.748000pt;}
.y3a_c00208{bottom:106.022667pt;}
.y39_c00208{bottom:106.833333pt;}
.y38_c00208{bottom:107.536000pt;}
.y37_c00208{bottom:118.393333pt;}
.y36_c00208{bottom:118.810667pt;}
.y35_c00208{bottom:119.170667pt;}
.y34_c00208{bottom:119.665333pt;}
.y33_c00208{bottom:120.428000pt;}
.y32_c00208{bottom:120.729333pt;}
.y31_c00208{bottom:121.778667pt;}
.y30_c00208{bottom:122.873333pt;}
.y2f_c00208{bottom:123.122667pt;}
.y2e_c00208{bottom:134.192000pt;}
.y2d_c00208{bottom:149.012000pt;}
.y2c_c00208{bottom:164.988000pt;}
.y2b_c00208{bottom:178.694667pt;}
.y2a_c00208{bottom:195.298667pt;}
.y29_c00208{bottom:210.104000pt;}
.y28_c00208{bottom:225.884000pt;}
.y27_c00208{bottom:242.670667pt;}
.y26_c00208{bottom:257.116000pt;}
.y25_c00208{bottom:272.368000pt;}
.y24_c00208{bottom:287.750667pt;}
.y23_c00208{bottom:302.969333pt;}
.y22_c00208{bottom:316.662667pt;}
.y1c_c00208{bottom:329.521333pt;}
.y1d_c00208{bottom:329.880000pt;}
.y1e_c00208{bottom:330.328000pt;}
.y1f_c00208{bottom:330.594667pt;}
.y20_c00208{bottom:331.460000pt;}
.y21_c00208{bottom:332.204000pt;}
.y1b_c00208{bottom:347.098667pt;}
.y1a_c00208{bottom:362.294667pt;}
.y19_c00208{bottom:377.310667pt;}
.y18_c00208{bottom:391.978667pt;}
.y17_c00208{bottom:407.124000pt;}
.y16_c00208{bottom:422.728000pt;}
.y15_c00208{bottom:437.532000pt;}
.y14_c00208{bottom:452.996000pt;}
.y13_c00208{bottom:468.936000pt;}
.yd_c00208{bottom:482.881333pt;}
.ye_c00208{bottom:483.037333pt;}
.yf_c00208{bottom:483.740000pt;}
.y10_c00208{bottom:484.244000pt;}
.y11_c00208{bottom:484.920000pt;}
.y12_c00208{bottom:485.556000pt;}
.y2_c00208{bottom:498.241333pt;}
.y3_c00208{bottom:498.497333pt;}
.y4_c00208{bottom:498.696000pt;}
.y5_c00208{bottom:499.216000pt;}
.y6_c00208{bottom:499.413333pt;}
.y7_c00208{bottom:499.714667pt;}
.y8_c00208{bottom:500.272000pt;}
.y9_c00208{bottom:500.396000pt;}
.ya_c00208{bottom:500.546667pt;}
.yb_c00208{bottom:500.808000pt;}
.yc_c00208{bottom:500.921333pt;}
.y1_c00208{bottom:510.986667pt;}
.h8_c00208{height:49.466667pt;}
.h7_c00208{height:51.333333pt;}
.ha_c00208{height:52.266667pt;}
.h12_c00208{height:53.204495pt;}
.h9_c00208{height:54.133333pt;}
.he_c00208{height:55.066667pt;}
.h6_c00208{height:56.000000pt;}
.hb_c00208{height:56.933333pt;}
.hd_c00208{height:57.866667pt;}
.h10_c00208{height:57.871556pt;}
.hf_c00208{height:58.800000pt;}
.hc_c00208{height:59.733333pt;}
.h4_c00208{height:60.666667pt;}
.h11_c00208{height:60.671793pt;}
.h5_c00208{height:61.600000pt;}
.h3_c00208{height:64.400000pt;}
.h2_c00208{height:71.866667pt;}
.h1_c00208{height:554.000000pt;}
.h0_c00208{height:554.133333pt;}
.w0_c00208{width:325.680000pt;}
.w1_c00208{width:326.000000pt;}
.x0_c00208{left:0.000000pt;}
.x35_c00208{left:26.880000pt;}
.x3_c00208{left:28.169333pt;}
.x51_c00208{left:29.280000pt;}
.x60_c00208{left:30.240000pt;}
.x77_c00208{left:31.571725pt;}
.x75_c00208{left:38.020000pt;}
.x2a_c00208{left:39.360000pt;}
.xe_c00208{left:41.884000pt;}
.x4a_c00208{left:43.440000pt;}
.x40_c00208{left:44.400000pt;}
.x3b_c00208{left:46.560000pt;}
.x58_c00208{left:49.440000pt;}
.x7c_c00208{left:50.471011pt;}
.x4_c00208{left:51.436000pt;}
.x5d_c00208{left:54.720000pt;}
.x73_c00208{left:56.785333pt;}
.x30_c00208{left:59.040000pt;}
.x24_c00208{left:60.478667pt;}
.x46_c00208{left:61.578667pt;}
.x68_c00208{left:62.640000pt;}
.x3c_c00208{left:65.280000pt;}
.x12_c00208{left:67.918667pt;}
.x5_c00208{left:69.481333pt;}
.x2b_c00208{left:71.280000pt;}
.x25_c00208{left:72.478667pt;}
.x41_c00208{left:79.200000pt;}
.x13_c00208{left:81.598667pt;}
.x72_c00208{left:83.437333pt;}
.x6c_c00208{left:84.480000pt;}
.x69_c00208{left:86.400000pt;}
.x3d_c00208{left:87.600000pt;}
.x4f_c00208{left:89.520000pt;}
.x55_c00208{left:91.440000pt;}
.x26_c00208{left:93.358667pt;}
.x1a_c00208{left:96.238667pt;}
.x36_c00208{left:97.680000pt;}
.x61_c00208{left:99.120000pt;}
.x20_c00208{left:100.318667pt;}
.x47_c00208{left:102.360000pt;}
.x6d_c00208{left:103.920000pt;}
.xf_c00208{left:105.721333pt;}
.x42_c00208{left:106.800000pt;}
.x14_c00208{left:108.478667pt;}
.x7d_c00208{left:111.175808pt;}
.x1b_c00208{left:113.278667pt;}
.x4b_c00208{left:115.440000pt;}
.x6_c00208{left:116.792000pt;}
.x79_c00208{left:119.415445pt;}
.x2c_c00208{left:122.640000pt;}
.x43_c00208{left:126.480000pt;}
.x31_c00208{left:129.840000pt;}
.x37_c00208{left:130.800000pt;}
.x4c_c00208{left:132.000000pt;}
.x7_c00208{left:134.729333pt;}
.x5a_c00208{left:137.520000pt;}
.x76_c00208{left:142.208000pt;}
.x15_c00208{left:143.998667pt;}
.x1_c00208{left:146.400000pt;}
.x62_c00208{left:147.600000pt;}
.x38_c00208{left:149.280000pt;}
.x10_c00208{left:151.564000pt;}
.x1c_c00208{left:153.598667pt;}
.x56_c00208{left:156.000000pt;}
.x74_c00208{left:158.542667pt;}
.x8_c00208{left:162.125333pt;}
.x66_c00208{left:163.920000pt;}
.x52_c00208{left:165.600000pt;}
.x16_c00208{left:167.278667pt;}
.x2d_c00208{left:169.200000pt;}
.x70_c00208{left:171.921333pt;}
.x63_c00208{left:173.040000pt;}
.x21_c00208{left:174.718667pt;}
.x2e_c00208{left:180.480000pt;}
.x27_c00208{left:182.158667pt;}
.x6e_c00208{left:184.320000pt;}
.x7e_c00208{left:185.410112pt;}
.x32_c00208{left:186.720000pt;}
.x17_c00208{left:187.678667pt;}
.x67_c00208{left:188.880000pt;}
.x53_c00208{left:190.560000pt;}
.x6a_c00208{left:192.240000pt;}
.x3e_c00208{left:193.200000pt;}
.x39_c00208{left:196.320000pt;}
.x28_c00208{left:200.398667pt;}
.x4d_c00208{left:202.560000pt;}
.x48_c00208{left:205.324000pt;}
.x1d_c00208{left:207.598667pt;}
.x7a_c00208{left:209.161940pt;}
.x44_c00208{left:211.200000pt;}
.x9_c00208{left:212.744000pt;}
.x64_c00208{left:214.800000pt;}
.x78_c00208{left:215.916509pt;}
.x6f_c00208{left:216.960000pt;}
.x18_c00208{left:220.078667pt;}
.xa_c00208{left:223.996000pt;}
.x3a_c00208{left:225.120000pt;}
.x3f_c00208{left:228.480000pt;}
.x5e_c00208{left:232.560000pt;}
.x1e_c00208{left:235.438667pt;}
.xb_c00208{left:237.721333pt;}
.x5b_c00208{left:239.280000pt;}
.x4e_c00208{left:243.360000pt;}
.x19_c00208{left:245.278667pt;}
.x22_c00208{left:247.198667pt;}
.x59_c00208{left:249.600000pt;}
.x33_c00208{left:252.720000pt;}
.x50_c00208{left:254.400000pt;}
.x45_c00208{left:255.600000pt;}
.x6b_c00208{left:256.560000pt;}
.x5c_c00208{left:257.760000pt;}
.xc_c00208{left:261.476000pt;}
.x57_c00208{left:263.280000pt;}
.x2f_c00208{left:265.200000pt;}
.x7f_c00208{left:266.516503pt;}
.x23_c00208{left:267.598667pt;}
.x5f_c00208{left:269.520000pt;}
.x11_c00208{left:270.797333pt;}
.xd_c00208{left:271.802667pt;}
.x49_c00208{left:273.012000pt;}
.x34_c00208{left:274.800000pt;}
.x7b_c00208{left:276.176140pt;}
.x71_c00208{left:279.084000pt;}
.x1f_c00208{left:280.078667pt;}
.x65_c00208{left:283.440000pt;}
.x54_c00208{left:284.640000pt;}
.x2_c00208{left:288.000000pt;}
.x29_c00208{left:290.158667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00209 {
    display:none;
  }
  .loading-indicator_c00209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00209 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00209 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00209" -> "#page-container .classname_c00209")
 */
.pf_c00209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00209 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00209 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00209 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00209 {overflow:visible;}
  }
}
.c_c00209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00209 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00209:after { /* webkit #35443 */
  content: '';
}
.t_c00209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00209 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00209 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00209 { /* info for Javascript */
  display:none;
}
.l_c00209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00209:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00209 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00209.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c00209{transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);}
.ma2_c00209{transform:matrix(0.146470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146470,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.mb2_c00209{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00209{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00209{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.153865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153865,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156080,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.mf4_c00209{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);}
.mdb_c00209{transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);}
.m7b_c00209{transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.me5_c00209{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.md2_c00209{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.mc3_c00209{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);}
.m88_c00209{transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);}
.m81_c00209{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m93_c00209{transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.166990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166990,0.000000,0.000000,0.250000,0,0);}
.me3_c00209{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.168145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168145,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);}
.m96_c00209{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00209{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.mb7_c00209{transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);}
.mc5_c00209{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.mf1_c00209{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m72_c00209{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mba_c00209{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.md9_c00209{transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.m78_c00209{transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);}
.mb4_c00209{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);}
.ma4_c00209{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m87_c00209{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.mc7_c00209{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.mdc_c00209{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m5c_c00209{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.m79_c00209{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m32_c00209{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.mc9_c00209{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);}
.mb8_c00209{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.mec_c00209{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m83_c00209{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.mef_c00209{transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);}
.maa_c00209{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.mf0_c00209{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.me1_c00209{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);}
.mc2_c00209{transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);}
.ma6_c00209{transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);}
.m41_c00209{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.mbd_c00209{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00209{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.mda_c00209{transform:matrix(0.189845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189845,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.mb5_c00209{transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.md6_c00209{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.md7_c00209{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mdd_c00209{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m6f_c00209{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);}
.m80_c00209{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00209{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);}
.mbb_c00209{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m85_c00209{transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.mde_c00209{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00209{transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);}
.m73_c00209{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m77_c00209{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m70_c00209{transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);}
.m94_c00209{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m4b_c00209{transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.md1_c00209{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.m6b_c00209{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);}
.m75_c00209{transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);}
.mf2_c00209{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.m86_c00209{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.mc8_c00209{transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.mac_c00209{transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);}
.mb6_c00209{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.me8_c00209{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00209{transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);}
.mb0_c00209{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202140,0.000000,0.000000,0.250000,0,0);}
.mae_c00209{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.mc6_c00209{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);}
.m68_c00209{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00209{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.m8d_c00209{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);}
.mcf_c00209{transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.md5_c00209{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.m69_c00209{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);}
.ma7_c00209{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m71_c00209{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);}
.mbe_c00209{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.me6_c00209{transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mca_c00209{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.mea_c00209{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.215255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215255,0.000000,0.000000,0.250000,0,0);}
.mab_c00209{transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);}
.m6e_c00209{transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);}
.m99_c00209{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m76_c00209{transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);}
.me2_c00209{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.mbf_c00209{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.ma1_c00209{transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);}
.me0_c00209{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00209{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.mbc_c00209{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.m7c_c00209{transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);}
.md0_c00209{transform:matrix(0.218480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218480,0.000000,0.000000,0.250000,0,0);}
.m55_c00209{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.me9_c00209{transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.mc4_c00209{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.m2f_c00209{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mf3_c00209{transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);}
.mb9_c00209{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.ma3_c00209{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00209{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.m9d_c00209{transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);}
.m8b_c00209{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.m90_c00209{transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);}
.m9a_c00209{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);}
.m48_c00209{transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);}
.mad_c00209{transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);}
.ma0_c00209{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m9b_c00209{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.me7_c00209{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00209{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.med_c00209{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m9f_c00209{transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);}
.mee_c00209{transform:matrix(0.235370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235370,0.000000,0.000000,0.250000,0,0);}
.md8_c00209{transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);}
.meb_c00209{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m9e_c00209{transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);}
.m9c_c00209{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);}
.m8f_c00209{transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);}
.m64_c00209{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m62_c00209{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.maf_c00209{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m8c_c00209{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00209{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mdf_c00209{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.mcc_c00209{transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);}
.me4_c00209{transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);}
.m92_c00209{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.md4_c00209{transform:matrix(0.266255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266255,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.266920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266920,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);}
.mce_c00209{transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.274555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274555,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{transform:matrix(0.275005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275005,0.000000,0.000000,0.250000,0,0);}
.mcd_c00209{transform:matrix(0.290115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290115,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);}
.m6d_c00209{transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);}
.mb1_c00209{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m91_c00209{transform:matrix(0.322945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322945,0.000000,0.000000,0.250000,0,0);}
.m60_c00209{transform:matrix(0.356705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00209{transform:matrix(0.409455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409455,0.000000,0.000000,0.250000,0,0);}
.md3_c00209{transform:matrix(0.517370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517370,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:0.000000px;}
.fc0_c00209{color:transparent;}
.fsd_c00209{font-size:22.050000px;}
.fsb_c00209{font-size:55.650000px;}
.fs4_c00209{font-size:58.800000px;}
.fs6_c00209{font-size:59.850000px;}
.fsa_c00209{font-size:60.900000px;}
.fs5_c00209{font-size:61.950000px;}
.fs8_c00209{font-size:63.000000px;}
.fs7_c00209{font-size:64.050000px;}
.fs2_c00209{font-size:65.100000px;}
.fs0_c00209{font-size:66.150000px;}
.fs9_c00209{font-size:67.200000px;}
.fsc_c00209{font-size:68.250000px;}
.fs1_c00209{font-size:69.300000px;}
.fs3_c00209{font-size:70.350000px;}
.y0_c00209{bottom:0.000000px;}
.y35_c00209{bottom:27.418500px;}
.y34_c00209{bottom:45.358500px;}
.y36_c00209{bottom:55.350000px;}
.y33_c00209{bottom:62.368500px;}
.y32_c00209{bottom:79.612500px;}
.y31_c00209{bottom:95.697000px;}
.y30_c00209{bottom:113.364000px;}
.y2f_c00209{bottom:130.341000px;}
.y2e_c00209{bottom:148.651500px;}
.y2d_c00209{bottom:166.302000px;}
.y2c_c00209{bottom:182.608500px;}
.y2b_c00209{bottom:183.019500px;}
.y2a_c00209{bottom:183.664500px;}
.y29_c00209{bottom:183.823500px;}
.y28_c00209{bottom:184.614000px;}
.y27_c00209{bottom:184.840500px;}
.y26_c00209{bottom:185.301000px;}
.y25_c00209{bottom:185.761500px;}
.y24_c00209{bottom:201.441000px;}
.y23_c00209{bottom:216.346500px;}
.y22_c00209{bottom:217.227000px;}
.y21_c00209{bottom:218.154000px;}
.y20_c00209{bottom:218.319000px;}
.y1f_c00209{bottom:219.172500px;}
.y1e_c00209{bottom:219.781500px;}
.y1d_c00209{bottom:234.762000px;}
.y1c_c00209{bottom:252.049500px;}
.y1b_c00209{bottom:268.857000px;}
.y1a_c00209{bottom:285.561000px;}
.y19_c00209{bottom:303.028500px;}
.y18_c00209{bottom:320.158500px;}
.y17_c00209{bottom:337.198500px;}
.y16_c00209{bottom:354.829500px;}
.y15_c00209{bottom:371.877000px;}
.y14_c00209{bottom:389.242500px;}
.y13_c00209{bottom:406.491000px;}
.y12_c00209{bottom:423.414000px;}
.y11_c00209{bottom:440.781000px;}
.y10_c00209{bottom:457.552500px;}
.yf_c00209{bottom:475.104000px;}
.ye_c00209{bottom:491.875500px;}
.yd_c00209{bottom:507.972000px;}
.yc_c00209{bottom:508.371000px;}
.yb_c00209{bottom:508.840500px;}
.ya_c00209{bottom:509.382000px;}
.y9_c00209{bottom:509.628000px;}
.y8_c00209{bottom:510.357000px;}
.y7_c00209{bottom:510.571500px;}
.y6_c00209{bottom:510.901500px;}
.y5_c00209{bottom:511.381500px;}
.y4_c00209{bottom:526.555500px;}
.y3_c00209{bottom:543.751500px;}
.y2_c00209{bottom:560.973000px;}
.y1_c00209{bottom:577.663500px;}
.hf_c00209{height:22.050000px;}
.hd_c00209{height:55.650000px;}
.h6_c00209{height:58.800000px;}
.h8_c00209{height:59.850000px;}
.hc_c00209{height:60.900000px;}
.h7_c00209{height:61.950000px;}
.ha_c00209{height:63.000000px;}
.h9_c00209{height:64.050000px;}
.h4_c00209{height:65.100000px;}
.h2_c00209{height:66.150000px;}
.hb_c00209{height:67.200000px;}
.he_c00209{height:68.250000px;}
.h3_c00209{height:69.300000px;}
.h5_c00209{height:70.350000px;}
.h1_c00209{height:623.250000px;}
.h0_c00209{height:623.400000px;}
.w0_c00209{width:366.390000px;}
.w1_c00209{width:366.750000px;}
.x0_c00209{left:0.000000px;}
.x79_c00209{left:42.121500px;}
.x61_c00209{left:43.200000px;}
.x55_c00209{left:44.280000px;}
.x49_c00209{left:45.630000px;}
.x27_c00209{left:46.710000px;}
.x2_c00209{left:48.330000px;}
.x7e_c00209{left:52.110000px;}
.x1c_c00209{left:65.070000px;}
.x43_c00209{left:69.120000px;}
.x7f_c00209{left:70.200000px;}
.x38_c00209{left:73.440000px;}
.x3d_c00209{left:75.330000px;}
.x2d_c00209{left:77.760000px;}
.x4c_c00209{left:80.460000px;}
.x52_c00209{left:82.080000px;}
.x22_c00209{left:85.050000px;}
.x4f_c00209{left:86.130000px;}
.x15_c00209{left:87.663000px;}
.x28_c00209{left:89.370000px;}
.x56_c00209{left:91.260000px;}
.x4a_c00209{left:92.610000px;}
.x33_c00209{left:94.230000px;}
.x3_c00209{left:95.310000px;}
.x75_c00209{left:99.091500px;}
.x1d_c00209{left:102.060000px;}
.x2e_c00209{left:104.490000px;}
.x57_c00209{left:106.380000px;}
.x4_c00209{left:108.540000px;}
.x6d_c00209{left:111.781500px;}
.x7c_c00209{left:112.861500px;}
.x16_c00209{left:115.147500px;}
.x69_c00209{left:116.371500px;}
.x3e_c00209{left:119.880000px;}
.xb_c00209{left:120.960000px;}
.x44_c00209{left:123.660000px;}
.x6a_c00209{left:125.011500px;}
.xf_c00209{left:129.600000px;}
.x23_c00209{left:130.950000px;}
.x17_c00209{left:132.967500px;}
.x5e_c00209{left:135.810000px;}
.x3f_c00209{left:138.510000px;}
.x2f_c00209{left:140.130000px;}
.x10_c00209{left:142.290000px;}
.x34_c00209{left:144.180000px;}
.x80_c00209{left:145.800000px;}
.x76_c00209{left:148.501500px;}
.x1e_c00209{left:151.200000px;}
.x39_c00209{left:153.900000px;}
.x6f_c00209{left:155.791500px;}
.x6b_c00209{left:157.411500px;}
.x30_c00209{left:162.000000px;}
.x4b_c00209{left:164.430000px;}
.x53_c00209{left:167.670000px;}
.x5_c00209{left:168.750000px;}
.x70_c00209{left:171.991500px;}
.x11_c00209{left:173.340000px;}
.x5c_c00209{left:175.500000px;}
.x1f_c00209{left:179.010000px;}
.x29_c00209{left:180.090000px;}
.x1_c00209{left:181.170000px;}
.x6c_c00209{left:183.061500px;}
.x64_c00209{left:185.490000px;}
.x3a_c00209{left:186.570000px;}
.x24_c00209{left:187.650000px;}
.x6_c00209{left:188.730000px;}
.x4d_c00209{left:191.970000px;}
.x12_c00209{left:193.860000px;}
.x40_c00209{left:196.290000px;}
.x2a_c00209{left:197.910000px;}
.x45_c00209{left:199.800000px;}
.x65_c00209{left:201.150000px;}
.x35_c00209{left:202.230000px;}
.xc_c00209{left:203.310000px;}
.x68_c00209{left:206.134500px;}
.x25_c00209{left:208.170000px;}
.x71_c00209{left:210.331500px;}
.x20_c00209{left:212.760000px;}
.x18_c00209{left:214.228500px;}
.xd_c00209{left:215.730000px;}
.x7_c00209{left:217.080000px;}
.x58_c00209{left:219.780000px;}
.x50_c00209{left:221.130000px;}
.x5d_c00209{left:228.150000px;}
.x5f_c00209{left:230.850000px;}
.x46_c00209{left:231.930000px;}
.x8_c00209{left:233.550000px;}
.x77_c00209{left:234.901500px;}
.x59_c00209{left:240.570000px;}
.x4e_c00209{left:244.350000px;}
.x66_c00209{left:249.750000px;}
.x54_c00209{left:251.640000px;}
.x62_c00209{left:254.610000px;}
.x6e_c00209{left:256.231500px;}
.x31_c00209{left:257.580000px;}
.x19_c00209{left:259.377000px;}
.x7b_c00209{left:260.821500px;}
.x26_c00209{left:263.790000px;}
.x13_c00209{left:264.870000px;}
.x72_c00209{left:265.951500px;}
.x41_c00209{left:267.570000px;}
.x51_c00209{left:270.540000px;}
.x47_c00209{left:272.160000px;}
.x3b_c00209{left:274.050000px;}
.x67_c00209{left:275.400000px;}
.x36_c00209{left:277.020000px;}
.x5a_c00209{left:279.720000px;}
.x2b_c00209{left:281.070000px;}
.x73_c00209{left:284.311500px;}
.x32_c00209{left:286.200000px;}
.x3c_c00209{left:287.280000px;}
.xe_c00209{left:292.140000px;}
.x60_c00209{left:294.300000px;}
.x42_c00209{left:295.920000px;}
.x78_c00209{left:297.271500px;}
.x1a_c00209{left:298.467000px;}
.x7a_c00209{left:305.101500px;}
.x9_c00209{left:308.070000px;}
.x37_c00209{left:312.390000px;}
.x5b_c00209{left:314.550000px;}
.x63_c00209{left:316.170000px;}
.x2c_c00209{left:317.250000px;}
.x21_c00209{left:318.330000px;}
.x7d_c00209{left:323.191500px;}
.x14_c00209{left:326.700000px;}
.xa_c00209{left:328.050000px;}
.x1b_c00209{left:331.728000px;}
.x74_c00209{left:333.451500px;}
.x81_c00209{left:336.690000px;}
.x48_c00209{left:340.200000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
.fsd_c00209{font-size:19.600000pt;}
.fsb_c00209{font-size:49.466667pt;}
.fs4_c00209{font-size:52.266667pt;}
.fs6_c00209{font-size:53.200000pt;}
.fsa_c00209{font-size:54.133333pt;}
.fs5_c00209{font-size:55.066667pt;}
.fs8_c00209{font-size:56.000000pt;}
.fs7_c00209{font-size:56.933333pt;}
.fs2_c00209{font-size:57.866667pt;}
.fs0_c00209{font-size:58.800000pt;}
.fs9_c00209{font-size:59.733333pt;}
.fsc_c00209{font-size:60.666667pt;}
.fs1_c00209{font-size:61.600000pt;}
.fs3_c00209{font-size:62.533333pt;}
.y0_c00209{bottom:0.000000pt;}
.y35_c00209{bottom:24.372000pt;}
.y34_c00209{bottom:40.318667pt;}
.y36_c00209{bottom:49.200000pt;}
.y33_c00209{bottom:55.438667pt;}
.y32_c00209{bottom:70.766667pt;}
.y31_c00209{bottom:85.064000pt;}
.y30_c00209{bottom:100.768000pt;}
.y2f_c00209{bottom:115.858667pt;}
.y2e_c00209{bottom:132.134667pt;}
.y2d_c00209{bottom:147.824000pt;}
.y2c_c00209{bottom:162.318667pt;}
.y2b_c00209{bottom:162.684000pt;}
.y2a_c00209{bottom:163.257333pt;}
.y29_c00209{bottom:163.398667pt;}
.y28_c00209{bottom:164.101333pt;}
.y27_c00209{bottom:164.302667pt;}
.y26_c00209{bottom:164.712000pt;}
.y25_c00209{bottom:165.121333pt;}
.y24_c00209{bottom:179.058667pt;}
.y23_c00209{bottom:192.308000pt;}
.y22_c00209{bottom:193.090667pt;}
.y21_c00209{bottom:193.914667pt;}
.y20_c00209{bottom:194.061333pt;}
.y1f_c00209{bottom:194.820000pt;}
.y1e_c00209{bottom:195.361333pt;}
.y1d_c00209{bottom:208.677333pt;}
.y1c_c00209{bottom:224.044000pt;}
.y1b_c00209{bottom:238.984000pt;}
.y1a_c00209{bottom:253.832000pt;}
.y19_c00209{bottom:269.358667pt;}
.y18_c00209{bottom:284.585333pt;}
.y17_c00209{bottom:299.732000pt;}
.y16_c00209{bottom:315.404000pt;}
.y15_c00209{bottom:330.557333pt;}
.y14_c00209{bottom:345.993333pt;}
.y13_c00209{bottom:361.325333pt;}
.y12_c00209{bottom:376.368000pt;}
.y11_c00209{bottom:391.805333pt;}
.y10_c00209{bottom:406.713333pt;}
.yf_c00209{bottom:422.314667pt;}
.ye_c00209{bottom:437.222667pt;}
.yd_c00209{bottom:451.530667pt;}
.yc_c00209{bottom:451.885333pt;}
.yb_c00209{bottom:452.302667pt;}
.ya_c00209{bottom:452.784000pt;}
.y9_c00209{bottom:453.002667pt;}
.y8_c00209{bottom:453.650667pt;}
.y7_c00209{bottom:453.841333pt;}
.y6_c00209{bottom:454.134667pt;}
.y5_c00209{bottom:454.561333pt;}
.y4_c00209{bottom:468.049333pt;}
.y3_c00209{bottom:483.334667pt;}
.y2_c00209{bottom:498.642667pt;}
.y1_c00209{bottom:513.478667pt;}
.hf_c00209{height:19.600000pt;}
.hd_c00209{height:49.466667pt;}
.h6_c00209{height:52.266667pt;}
.h8_c00209{height:53.200000pt;}
.hc_c00209{height:54.133333pt;}
.h7_c00209{height:55.066667pt;}
.ha_c00209{height:56.000000pt;}
.h9_c00209{height:56.933333pt;}
.h4_c00209{height:57.866667pt;}
.h2_c00209{height:58.800000pt;}
.hb_c00209{height:59.733333pt;}
.he_c00209{height:60.666667pt;}
.h3_c00209{height:61.600000pt;}
.h5_c00209{height:62.533333pt;}
.h1_c00209{height:554.000000pt;}
.h0_c00209{height:554.133333pt;}
.w0_c00209{width:325.680000pt;}
.w1_c00209{width:326.000000pt;}
.x0_c00209{left:0.000000pt;}
.x79_c00209{left:37.441333pt;}
.x61_c00209{left:38.400000pt;}
.x55_c00209{left:39.360000pt;}
.x49_c00209{left:40.560000pt;}
.x27_c00209{left:41.520000pt;}
.x2_c00209{left:42.960000pt;}
.x7e_c00209{left:46.320000pt;}
.x1c_c00209{left:57.840000pt;}
.x43_c00209{left:61.440000pt;}
.x7f_c00209{left:62.400000pt;}
.x38_c00209{left:65.280000pt;}
.x3d_c00209{left:66.960000pt;}
.x2d_c00209{left:69.120000pt;}
.x4c_c00209{left:71.520000pt;}
.x52_c00209{left:72.960000pt;}
.x22_c00209{left:75.600000pt;}
.x4f_c00209{left:76.560000pt;}
.x15_c00209{left:77.922667pt;}
.x28_c00209{left:79.440000pt;}
.x56_c00209{left:81.120000pt;}
.x4a_c00209{left:82.320000pt;}
.x33_c00209{left:83.760000pt;}
.x3_c00209{left:84.720000pt;}
.x75_c00209{left:88.081333pt;}
.x1d_c00209{left:90.720000pt;}
.x2e_c00209{left:92.880000pt;}
.x57_c00209{left:94.560000pt;}
.x4_c00209{left:96.480000pt;}
.x6d_c00209{left:99.361333pt;}
.x7c_c00209{left:100.321333pt;}
.x16_c00209{left:102.353333pt;}
.x69_c00209{left:103.441333pt;}
.x3e_c00209{left:106.560000pt;}
.xb_c00209{left:107.520000pt;}
.x44_c00209{left:109.920000pt;}
.x6a_c00209{left:111.121333pt;}
.xf_c00209{left:115.200000pt;}
.x23_c00209{left:116.400000pt;}
.x17_c00209{left:118.193333pt;}
.x5e_c00209{left:120.720000pt;}
.x3f_c00209{left:123.120000pt;}
.x2f_c00209{left:124.560000pt;}
.x10_c00209{left:126.480000pt;}
.x34_c00209{left:128.160000pt;}
.x80_c00209{left:129.600000pt;}
.x76_c00209{left:132.001333pt;}
.x1e_c00209{left:134.400000pt;}
.x39_c00209{left:136.800000pt;}
.x6f_c00209{left:138.481333pt;}
.x6b_c00209{left:139.921333pt;}
.x30_c00209{left:144.000000pt;}
.x4b_c00209{left:146.160000pt;}
.x53_c00209{left:149.040000pt;}
.x5_c00209{left:150.000000pt;}
.x70_c00209{left:152.881333pt;}
.x11_c00209{left:154.080000pt;}
.x5c_c00209{left:156.000000pt;}
.x1f_c00209{left:159.120000pt;}
.x29_c00209{left:160.080000pt;}
.x1_c00209{left:161.040000pt;}
.x6c_c00209{left:162.721333pt;}
.x64_c00209{left:164.880000pt;}
.x3a_c00209{left:165.840000pt;}
.x24_c00209{left:166.800000pt;}
.x6_c00209{left:167.760000pt;}
.x4d_c00209{left:170.640000pt;}
.x12_c00209{left:172.320000pt;}
.x40_c00209{left:174.480000pt;}
.x2a_c00209{left:175.920000pt;}
.x45_c00209{left:177.600000pt;}
.x65_c00209{left:178.800000pt;}
.x35_c00209{left:179.760000pt;}
.xc_c00209{left:180.720000pt;}
.x68_c00209{left:183.230667pt;}
.x25_c00209{left:185.040000pt;}
.x71_c00209{left:186.961333pt;}
.x20_c00209{left:189.120000pt;}
.x18_c00209{left:190.425333pt;}
.xd_c00209{left:191.760000pt;}
.x7_c00209{left:192.960000pt;}
.x58_c00209{left:195.360000pt;}
.x50_c00209{left:196.560000pt;}
.x5d_c00209{left:202.800000pt;}
.x5f_c00209{left:205.200000pt;}
.x46_c00209{left:206.160000pt;}
.x8_c00209{left:207.600000pt;}
.x77_c00209{left:208.801333pt;}
.x59_c00209{left:213.840000pt;}
.x4e_c00209{left:217.200000pt;}
.x66_c00209{left:222.000000pt;}
.x54_c00209{left:223.680000pt;}
.x62_c00209{left:226.320000pt;}
.x6e_c00209{left:227.761333pt;}
.x31_c00209{left:228.960000pt;}
.x19_c00209{left:230.557333pt;}
.x7b_c00209{left:231.841333pt;}
.x26_c00209{left:234.480000pt;}
.x13_c00209{left:235.440000pt;}
.x72_c00209{left:236.401333pt;}
.x41_c00209{left:237.840000pt;}
.x51_c00209{left:240.480000pt;}
.x47_c00209{left:241.920000pt;}
.x3b_c00209{left:243.600000pt;}
.x67_c00209{left:244.800000pt;}
.x36_c00209{left:246.240000pt;}
.x5a_c00209{left:248.640000pt;}
.x2b_c00209{left:249.840000pt;}
.x73_c00209{left:252.721333pt;}
.x32_c00209{left:254.400000pt;}
.x3c_c00209{left:255.360000pt;}
.xe_c00209{left:259.680000pt;}
.x60_c00209{left:261.600000pt;}
.x42_c00209{left:263.040000pt;}
.x78_c00209{left:264.241333pt;}
.x1a_c00209{left:265.304000pt;}
.x7a_c00209{left:271.201333pt;}
.x9_c00209{left:273.840000pt;}
.x37_c00209{left:277.680000pt;}
.x5b_c00209{left:279.600000pt;}
.x63_c00209{left:281.040000pt;}
.x2c_c00209{left:282.000000pt;}
.x21_c00209{left:282.960000pt;}
.x7d_c00209{left:287.281333pt;}
.x14_c00209{left:290.400000pt;}
.xa_c00209{left:291.600000pt;}
.x1b_c00209{left:294.869333pt;}
.x74_c00209{left:296.401333pt;}
.x81_c00209{left:299.280000pt;}
.x48_c00209{left:302.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00210 {
    display:none;
  }
  .loading-indicator_c00210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00210 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00210 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00210" -> "#page-container .classname_c00210")
 */
.pf_c00210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00210 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00210 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00210 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00210 {overflow:visible;}
  }
}
.c_c00210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00210 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00210:after { /* webkit #35443 */
  content: '';
}
.t_c00210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00210 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00210 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00210 { /* info for Javascript */
  display:none;
}
.l_c00210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00210:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00210 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00210.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00210{transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);}
.m8d_c00210{transform:matrix(0.075930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075930,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);}
.m87_c00210{transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.143820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143820,0.000000,0.000000,0.250000,0,0);}
.mac_c00210{transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);}
.m3a_c00210{transform:matrix(0.147690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147690,0.000000,0.000000,0.250000,0,0);}
.m79_c00210{transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);}
.mad_c00210{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.mdc_c00210{transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m97_c00210{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.mb4_c00210{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m84_c00210{transform:matrix(0.156735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156735,0.000000,0.000000,0.250000,0,0);}
.m32_c00210{transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);}
.m8b_c00210{transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.md8_c00210{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.ma8_c00210{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.162270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162270,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.mda_c00210{transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);}
.m33_c00210{transform:matrix(0.162755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162755,0.000000,0.000000,0.250000,0,0);}
.mdf_c00210{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m37_c00210{transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00210{transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);}
.m64_c00210{transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);}
.m6f_c00210{transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);}
.m9c_c00210{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.mab_c00210{transform:matrix(0.171205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171205,0.000000,0.000000,0.250000,0,0);}
.m61_c00210{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172405,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.md5_c00210{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m73_c00210{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m9e_c00210{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.mde_c00210{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.m45_c00210{transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);}
.m36_c00210{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mc5_c00210{transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);}
.mc6_c00210{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00210{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);}
.m77_c00210{transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);}
.mae_c00210{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m5e_c00210{transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m3c_c00210{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m82_c00210{transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m98_c00210{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m8c_c00210{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.mbf_c00210{transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);}
.m7a_c00210{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.m76_c00210{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m85_c00210{transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);}
.md9_c00210{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00210{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.m51_c00210{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m86_c00210{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m4a_c00210{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);}
.m78_c00210{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.m83_c00210{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m93_c00210{transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);}
.m94_c00210{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.ma4_c00210{transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);}
.m30_c00210{transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);}
.m7d_c00210{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.mba_c00210{transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194605,0.000000,0.000000,0.250000,0,0);}
.ma7_c00210{transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);}
.md2_c00210{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.mbe_c00210{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.mca_c00210{transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);}
.m7b_c00210{transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);}
.m6b_c00210{transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00210{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00210{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m74_c00210{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.ma6_c00210{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m80_c00210{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);}
.mb7_c00210{transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);}
.mc1_c00210{transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);}
.mcb_c00210{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00210{transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.mc8_c00210{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);}
.mdd_c00210{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.maa_c00210{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00210{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.ma5_c00210{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.m49_c00210{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.m72_c00210{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.m71_c00210{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.mc7_c00210{transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00210{transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m9f_c00210{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.mc9_c00210{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mbc_c00210{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m50_c00210{transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);}
.mc3_c00210{transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00210{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.m89_c00210{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.md6_c00210{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.m9d_c00210{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00210{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.md4_c00210{transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00210{transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213310,0.000000,0.000000,0.250000,0,0);}
.md7_c00210{transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);}
.mb1_c00210{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.m99_c00210{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m75_c00210{transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);}
.m67_c00210{transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);}
.mb0_c00210{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00210{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.m63_c00210{transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);}
.m70_c00210{transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);}
.m60_c00210{transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);}
.ma9_c00210{transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);}
.md0_c00210{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m8a_c00210{transform:matrix(0.225135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225135,0.000000,0.000000,0.250000,0,0);}
.md3_c00210{transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00210{transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{transform:matrix(0.230260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230260,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m62_c00210{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m96_c00210{transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.md1_c00210{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.m4d_c00210{transform:matrix(0.231730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231730,0.000000,0.000000,0.250000,0,0);}
.mc2_c00210{transform:matrix(0.232380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232380,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.233365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233365,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);}
.m7f_c00210{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00210{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);}
.mb6_c00210{transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238410,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00210{transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);}
.mb2_c00210{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.m7e_c00210{transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);}
.m56_c00210{transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240985,0.000000,0.000000,0.250000,0,0);}
.m9a_c00210{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.mc4_c00210{transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.mcc_c00210{transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.mb9_c00210{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.mbb_c00210{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.mcf_c00210{transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);}
.me1_c00210{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.mb5_c00210{transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256795,0.000000,0.000000,0.250000,0,0);}
.mb8_c00210{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);}
.m90_c00210{transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);}
.me4_c00210{transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);}
.me3_c00210{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.me2_c00210{transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.279045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279045,0.000000,0.000000,0.250000,0,0);}
.m8f_c00210{transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);}
.m81_c00210{transform:matrix(0.281720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00210{transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);}
.mb3_c00210{transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);}
.me5_c00210{transform:matrix(0.303155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303155,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.314260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314260,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);}
.m66_c00210{transform:matrix(0.339715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339715,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346210,0.000000,0.000000,0.250000,0,0);}
.ma2_c00210{transform:matrix(0.423545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423545,0.000000,0.000000,0.250000,0,0);}
.maf_c00210{transform:matrix(0.535710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535710,0.000000,0.000000,0.250000,0,0);}
.mce_c00210{transform:matrix(0.539145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539145,0.000000,0.000000,0.250000,0,0);}
.m69_c00210{transform:matrix(0.563420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00210{transform:matrix(0.715875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715875,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{transform:matrix(0.897285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897285,0.000000,0.000000,0.250000,0,0);}
.me0_c00210{transform:matrix(0.997965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997965,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:0.000000px;}
.fc0_c00210{color:transparent;}
.fs10_c00210{font-size:46.200000px;}
.fsd_c00210{font-size:57.750000px;}
.fsb_c00210{font-size:58.800000px;}
.fs3_c00210{font-size:59.850000px;}
.fse_c00210{font-size:60.900000px;}
.fs4_c00210{font-size:64.050000px;}
.fs2_c00210{font-size:65.100000px;}
.fs6_c00210{font-size:66.150000px;}
.fs5_c00210{font-size:67.200000px;}
.fs9_c00210{font-size:68.250000px;}
.fsa_c00210{font-size:69.300000px;}
.fsf_c00210{font-size:70.350000px;}
.fs7_c00210{font-size:71.400000px;}
.fs0_c00210{font-size:72.450000px;}
.fs8_c00210{font-size:73.500000px;}
.fs1_c00210{font-size:74.550000px;}
.fsc_c00210{font-size:76.650000px;}
.y0_c00210{bottom:0.000000px;}
.y4b_c00210{bottom:27.268500px;}
.y4a_c00210{bottom:44.944500px;}
.y49_c00210{bottom:45.286500px;}
.y48_c00210{bottom:45.745500px;}
.y47_c00210{bottom:45.978000px;}
.y46_c00210{bottom:46.525500px;}
.y45_c00210{bottom:46.845000px;}
.y44_c00210{bottom:47.119500px;}
.y43_c00210{bottom:47.371500px;}
.y42_c00210{bottom:47.793000px;}
.y41_c00210{bottom:63.958500px;}
.y40_c00210{bottom:81.199500px;}
.y3f_c00210{bottom:82.062000px;}
.y3e_c00210{bottom:83.491500px;}
.y3d_c00210{bottom:84.166500px;}
.y3c_c00210{bottom:86.161500px;}
.y3b_c00210{bottom:88.030500px;}
.y3a_c00210{bottom:95.955000px;}
.y39_c00210{bottom:114.973500px;}
.y38_c00210{bottom:115.345500px;}
.y37_c00210{bottom:115.912500px;}
.y36_c00210{bottom:116.451000px;}
.y35_c00210{bottom:117.331500px;}
.y34_c00210{bottom:118.231500px;}
.y33_c00210{bottom:118.806000px;}
.y32_c00210{bottom:132.162000px;}
.y31_c00210{bottom:133.381500px;}
.y30_c00210{bottom:133.726500px;}
.y2f_c00210{bottom:134.875500px;}
.y2e_c00210{bottom:136.239000px;}
.y2d_c00210{bottom:136.636500px;}
.y2c_c00210{bottom:137.070000px;}
.y2b_c00210{bottom:137.434500px;}
.y2a_c00210{bottom:155.488500px;}
.y29_c00210{bottom:164.076000px;}
.y28_c00210{bottom:182.533500px;}
.y27_c00210{bottom:183.340500px;}
.y26_c00210{bottom:183.687000px;}
.y25_c00210{bottom:184.156500px;}
.y24_c00210{bottom:184.815000px;}
.y23_c00210{bottom:185.223000px;}
.y22_c00210{bottom:200.863500px;}
.y21_c00210{bottom:216.406500px;}
.y20_c00210{bottom:216.643500px;}
.y1f_c00210{bottom:216.852000px;}
.y1e_c00210{bottom:217.470000px;}
.y1d_c00210{bottom:217.789500px;}
.y1c_c00210{bottom:218.344500px;}
.y1b_c00210{bottom:218.568000px;}
.y1a_c00210{bottom:219.243000px;}
.y19_c00210{bottom:235.693500px;}
.y18_c00210{bottom:252.312000px;}
.y17_c00210{bottom:269.745000px;}
.y16_c00210{bottom:286.510500px;}
.y15_c00210{bottom:286.786500px;}
.y14_c00210{bottom:287.722500px;}
.y13_c00210{bottom:288.480000px;}
.y12_c00210{bottom:289.441500px;}
.y11_c00210{bottom:305.910000px;}
.y10_c00210{bottom:322.617000px;}
.yf_c00210{bottom:338.766000px;}
.ye_c00210{bottom:354.240000px;}
.yd_c00210{bottom:370.474500px;}
.yc_c00210{bottom:387.247500px;}
.yb_c00210{bottom:404.932500px;}
.ya_c00210{bottom:421.806000px;}
.y9_c00210{bottom:439.054500px;}
.y8_c00210{bottom:457.011000px;}
.y7_c00210{bottom:473.146500px;}
.y6_c00210{bottom:490.152000px;}
.y5_c00210{bottom:507.631500px;}
.y4_c00210{bottom:525.366000px;}
.y3_c00210{bottom:543.033000px;}
.y2_c00210{bottom:559.591500px;}
.y1_c00210{bottom:573.067500px;}
.h12_c00210{height:46.200000px;}
.hf_c00210{height:57.750000px;}
.hd_c00210{height:58.800000px;}
.h5_c00210{height:59.850000px;}
.h10_c00210{height:60.900000px;}
.h6_c00210{height:64.050000px;}
.h4_c00210{height:65.100000px;}
.h8_c00210{height:66.150000px;}
.h7_c00210{height:67.200000px;}
.hb_c00210{height:68.250000px;}
.hc_c00210{height:69.300000px;}
.h11_c00210{height:70.350000px;}
.h9_c00210{height:71.400000px;}
.h2_c00210{height:72.450000px;}
.ha_c00210{height:73.500000px;}
.h3_c00210{height:74.550000px;}
.he_c00210{height:76.650000px;}
.h1_c00210{height:623.250000px;}
.h0_c00210{height:623.400000px;}
.w0_c00210{width:366.390000px;}
.w1_c00210{width:366.750000px;}
.x0_c00210{left:0.000000px;}
.x23_c00210{left:31.050000px;}
.x62_c00210{left:32.130000px;}
.x3_c00210{left:33.210000px;}
.x47_c00210{left:36.720000px;}
.x69_c00210{left:41.695500px;}
.x50_c00210{left:43.740000px;}
.x48_c00210{left:50.490000px;}
.x41_c00210{left:57.240000px;}
.x6a_c00210{left:59.950500px;}
.x4_c00210{left:63.180000px;}
.xa_c00210{left:65.880000px;}
.x1c_c00210{left:67.230000px;}
.x75_c00210{left:68.314500px;}
.x30_c00210{left:69.390000px;}
.x6b_c00210{left:71.895000px;}
.x11_c00210{left:73.710000px;}
.x73_c00210{left:75.763500px;}
.x5a_c00210{left:78.300000px;}
.x4a_c00210{left:81.270000px;}
.x31_c00210{left:82.620000px;}
.xb_c00210{left:83.970000px;}
.x1d_c00210{left:87.210000px;}
.x2a_c00210{left:88.560000px;}
.x34_c00210{left:91.260000px;}
.x24_c00210{left:93.960000px;}
.x58_c00210{left:95.310000px;}
.x3c_c00210{left:96.390000px;}
.x32_c00210{left:100.170000px;}
.x63_c00210{left:101.250000px;}
.x51_c00210{left:102.600000px;}
.x12_c00210{left:104.220000px;}
.x42_c00210{left:107.460000px;}
.x17_c00210{left:114.480000px;}
.x52_c00210{left:115.560000px;}
.x76_c00210{left:117.724500px;}
.x57_c00210{left:119.739000px;}
.x66_c00210{left:121.410000px;}
.x59_c00210{left:122.850000px;}
.x5_c00210{left:125.550000px;}
.xc_c00210{left:127.170000px;}
.x74_c00210{left:128.395500px;}
.x3d_c00210{left:129.870000px;}
.x2b_c00210{left:131.760000px;}
.x6f_c00210{left:132.843000px;}
.x25_c00210{left:135.810000px;}
.x18_c00210{left:138.780000px;}
.x38_c00210{left:140.130000px;}
.x77_c00210{left:141.484500px;}
.x13_c00210{left:149.850000px;}
.x35_c00210{left:152.280000px;}
.x33_c00210{left:154.710000px;}
.x67_c00210{left:156.061500px;}
.x39_c00210{left:157.140000px;}
.xd_c00210{left:159.300000px;}
.x19_c00210{left:160.920000px;}
.x64_c00210{left:162.000000px;}
.x5d_c00210{left:163.080000px;}
.x4b_c00210{left:164.160000px;}
.x14_c00210{left:167.130000px;}
.x1e_c00210{left:170.100000px;}
.x1_c00210{left:171.180000px;}
.xe_c00210{left:178.470000px;}
.x68_c00210{left:183.331500px;}
.x5e_c00210{left:184.680000px;}
.x26_c00210{left:186.300000px;}
.x3a_c00210{left:189.000000px;}
.x4c_c00210{left:190.350000px;}
.x1f_c00210{left:191.430000px;}
.x2c_c00210{left:193.860000px;}
.x6e_c00210{left:195.055500px;}
.x53_c00210{left:198.720000px;}
.x6_c00210{left:203.310000px;}
.x27_c00210{left:206.280000px;}
.x43_c00210{left:208.170000px;}
.x3e_c00210{left:213.030000px;}
.x54_c00210{left:214.110000px;}
.x5b_c00210{left:215.190000px;}
.x70_c00210{left:217.893000px;}
.x44_c00210{left:223.560000px;}
.x6c_c00210{left:226.402500px;}
.x49_c00210{left:227.880000px;}
.xf_c00210{left:228.960000px;}
.x15_c00210{left:231.120000px;}
.x71_c00210{left:233.553000px;}
.x5f_c00210{left:234.900000px;}
.x2_c00210{left:236.520000px;}
.x6d_c00210{left:237.871500px;}
.x4d_c00210{left:239.760000px;}
.x55_c00210{left:244.890000px;}
.x2d_c00210{left:246.510000px;}
.x28_c00210{left:248.130000px;}
.x36_c00210{left:249.480000px;}
.x10_c00210{left:251.640000px;}
.x2e_c00210{left:257.580000px;}
.x7_c00210{left:258.930000px;}
.x1a_c00210{left:260.280000px;}
.x20_c00210{left:263.790000px;}
.x4e_c00210{left:266.490000px;}
.x29_c00210{left:268.110000px;}
.x5c_c00210{left:270.540000px;}
.x3f_c00210{left:274.050000px;}
.x45_c00210{left:275.670000px;}
.x16_c00210{left:277.560000px;}
.x8_c00210{left:278.640000px;}
.x37_c00210{left:284.040000px;}
.x40_c00210{left:288.630000px;}
.x61_c00210{left:290.385000px;}
.x21_c00210{left:291.870000px;}
.x46_c00210{left:297.540000px;}
.x3b_c00210{left:299.160000px;}
.x65_c00210{left:301.320000px;}
.x2f_c00210{left:304.830000px;}
.x22_c00210{left:306.990000px;}
.x72_c00210{left:309.693000px;}
.x9_c00210{left:317.250000px;}
.x56_c00210{left:319.410000px;}
.x1b_c00210{left:322.650000px;}
.x60_c00210{left:323.730000px;}
.x4f_c00210{left:326.160000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
.fs10_c00210{font-size:41.066667pt;}
.fsd_c00210{font-size:51.333333pt;}
.fsb_c00210{font-size:52.266667pt;}
.fs3_c00210{font-size:53.200000pt;}
.fse_c00210{font-size:54.133333pt;}
.fs4_c00210{font-size:56.933333pt;}
.fs2_c00210{font-size:57.866667pt;}
.fs6_c00210{font-size:58.800000pt;}
.fs5_c00210{font-size:59.733333pt;}
.fs9_c00210{font-size:60.666667pt;}
.fsa_c00210{font-size:61.600000pt;}
.fsf_c00210{font-size:62.533333pt;}
.fs7_c00210{font-size:63.466667pt;}
.fs0_c00210{font-size:64.400000pt;}
.fs8_c00210{font-size:65.333333pt;}
.fs1_c00210{font-size:66.266667pt;}
.fsc_c00210{font-size:68.133333pt;}
.y0_c00210{bottom:0.000000pt;}
.y4b_c00210{bottom:24.238667pt;}
.y4a_c00210{bottom:39.950667pt;}
.y49_c00210{bottom:40.254667pt;}
.y48_c00210{bottom:40.662667pt;}
.y47_c00210{bottom:40.869333pt;}
.y46_c00210{bottom:41.356000pt;}
.y45_c00210{bottom:41.640000pt;}
.y44_c00210{bottom:41.884000pt;}
.y43_c00210{bottom:42.108000pt;}
.y42_c00210{bottom:42.482667pt;}
.y41_c00210{bottom:56.852000pt;}
.y40_c00210{bottom:72.177333pt;}
.y3f_c00210{bottom:72.944000pt;}
.y3e_c00210{bottom:74.214667pt;}
.y3d_c00210{bottom:74.814667pt;}
.y3c_c00210{bottom:76.588000pt;}
.y3b_c00210{bottom:78.249333pt;}
.y3a_c00210{bottom:85.293333pt;}
.y39_c00210{bottom:102.198667pt;}
.y38_c00210{bottom:102.529333pt;}
.y37_c00210{bottom:103.033333pt;}
.y36_c00210{bottom:103.512000pt;}
.y35_c00210{bottom:104.294667pt;}
.y34_c00210{bottom:105.094667pt;}
.y33_c00210{bottom:105.605333pt;}
.y32_c00210{bottom:117.477333pt;}
.y31_c00210{bottom:118.561333pt;}
.y30_c00210{bottom:118.868000pt;}
.y2f_c00210{bottom:119.889333pt;}
.y2e_c00210{bottom:121.101333pt;}
.y2d_c00210{bottom:121.454667pt;}
.y2c_c00210{bottom:121.840000pt;}
.y2b_c00210{bottom:122.164000pt;}
.y2a_c00210{bottom:138.212000pt;}
.y29_c00210{bottom:145.845333pt;}
.y28_c00210{bottom:162.252000pt;}
.y27_c00210{bottom:162.969333pt;}
.y26_c00210{bottom:163.277333pt;}
.y25_c00210{bottom:163.694667pt;}
.y24_c00210{bottom:164.280000pt;}
.y23_c00210{bottom:164.642667pt;}
.y22_c00210{bottom:178.545333pt;}
.y21_c00210{bottom:192.361333pt;}
.y20_c00210{bottom:192.572000pt;}
.y1f_c00210{bottom:192.757333pt;}
.y1e_c00210{bottom:193.306667pt;}
.y1d_c00210{bottom:193.590667pt;}
.y1c_c00210{bottom:194.084000pt;}
.y1b_c00210{bottom:194.282667pt;}
.y1a_c00210{bottom:194.882667pt;}
.y19_c00210{bottom:209.505333pt;}
.y18_c00210{bottom:224.277333pt;}
.y17_c00210{bottom:239.773333pt;}
.y16_c00210{bottom:254.676000pt;}
.y15_c00210{bottom:254.921333pt;}
.y14_c00210{bottom:255.753333pt;}
.y13_c00210{bottom:256.426667pt;}
.y12_c00210{bottom:257.281333pt;}
.y11_c00210{bottom:271.920000pt;}
.y10_c00210{bottom:286.770667pt;}
.yf_c00210{bottom:301.125333pt;}
.ye_c00210{bottom:314.880000pt;}
.yd_c00210{bottom:329.310667pt;}
.yc_c00210{bottom:344.220000pt;}
.yb_c00210{bottom:359.940000pt;}
.ya_c00210{bottom:374.938667pt;}
.y9_c00210{bottom:390.270667pt;}
.y8_c00210{bottom:406.232000pt;}
.y7_c00210{bottom:420.574667pt;}
.y6_c00210{bottom:435.690667pt;}
.y5_c00210{bottom:451.228000pt;}
.y4_c00210{bottom:466.992000pt;}
.y3_c00210{bottom:482.696000pt;}
.y2_c00210{bottom:497.414667pt;}
.y1_c00210{bottom:509.393333pt;}
.h12_c00210{height:41.066667pt;}
.hf_c00210{height:51.333333pt;}
.hd_c00210{height:52.266667pt;}
.h5_c00210{height:53.200000pt;}
.h10_c00210{height:54.133333pt;}
.h6_c00210{height:56.933333pt;}
.h4_c00210{height:57.866667pt;}
.h8_c00210{height:58.800000pt;}
.h7_c00210{height:59.733333pt;}
.hb_c00210{height:60.666667pt;}
.hc_c00210{height:61.600000pt;}
.h11_c00210{height:62.533333pt;}
.h9_c00210{height:63.466667pt;}
.h2_c00210{height:64.400000pt;}
.ha_c00210{height:65.333333pt;}
.h3_c00210{height:66.266667pt;}
.he_c00210{height:68.133333pt;}
.h1_c00210{height:554.000000pt;}
.h0_c00210{height:554.133333pt;}
.w0_c00210{width:325.680000pt;}
.w1_c00210{width:326.000000pt;}
.x0_c00210{left:0.000000pt;}
.x23_c00210{left:27.600000pt;}
.x62_c00210{left:28.560000pt;}
.x3_c00210{left:29.520000pt;}
.x47_c00210{left:32.640000pt;}
.x69_c00210{left:37.062667pt;}
.x50_c00210{left:38.880000pt;}
.x48_c00210{left:44.880000pt;}
.x41_c00210{left:50.880000pt;}
.x6a_c00210{left:53.289333pt;}
.x4_c00210{left:56.160000pt;}
.xa_c00210{left:58.560000pt;}
.x1c_c00210{left:59.760000pt;}
.x75_c00210{left:60.724000pt;}
.x30_c00210{left:61.680000pt;}
.x6b_c00210{left:63.906667pt;}
.x11_c00210{left:65.520000pt;}
.x73_c00210{left:67.345333pt;}
.x5a_c00210{left:69.600000pt;}
.x4a_c00210{left:72.240000pt;}
.x31_c00210{left:73.440000pt;}
.xb_c00210{left:74.640000pt;}
.x1d_c00210{left:77.520000pt;}
.x2a_c00210{left:78.720000pt;}
.x34_c00210{left:81.120000pt;}
.x24_c00210{left:83.520000pt;}
.x58_c00210{left:84.720000pt;}
.x3c_c00210{left:85.680000pt;}
.x32_c00210{left:89.040000pt;}
.x63_c00210{left:90.000000pt;}
.x51_c00210{left:91.200000pt;}
.x12_c00210{left:92.640000pt;}
.x42_c00210{left:95.520000pt;}
.x17_c00210{left:101.760000pt;}
.x52_c00210{left:102.720000pt;}
.x76_c00210{left:104.644000pt;}
.x57_c00210{left:106.434667pt;}
.x66_c00210{left:107.920000pt;}
.x59_c00210{left:109.200000pt;}
.x5_c00210{left:111.600000pt;}
.xc_c00210{left:113.040000pt;}
.x74_c00210{left:114.129333pt;}
.x3d_c00210{left:115.440000pt;}
.x2b_c00210{left:117.120000pt;}
.x6f_c00210{left:118.082667pt;}
.x25_c00210{left:120.720000pt;}
.x18_c00210{left:123.360000pt;}
.x38_c00210{left:124.560000pt;}
.x77_c00210{left:125.764000pt;}
.x13_c00210{left:133.200000pt;}
.x35_c00210{left:135.360000pt;}
.x33_c00210{left:137.520000pt;}
.x67_c00210{left:138.721333pt;}
.x39_c00210{left:139.680000pt;}
.xd_c00210{left:141.600000pt;}
.x19_c00210{left:143.040000pt;}
.x64_c00210{left:144.000000pt;}
.x5d_c00210{left:144.960000pt;}
.x4b_c00210{left:145.920000pt;}
.x14_c00210{left:148.560000pt;}
.x1e_c00210{left:151.200000pt;}
.x1_c00210{left:152.160000pt;}
.xe_c00210{left:158.640000pt;}
.x68_c00210{left:162.961333pt;}
.x5e_c00210{left:164.160000pt;}
.x26_c00210{left:165.600000pt;}
.x3a_c00210{left:168.000000pt;}
.x4c_c00210{left:169.200000pt;}
.x1f_c00210{left:170.160000pt;}
.x2c_c00210{left:172.320000pt;}
.x6e_c00210{left:173.382667pt;}
.x53_c00210{left:176.640000pt;}
.x6_c00210{left:180.720000pt;}
.x27_c00210{left:183.360000pt;}
.x43_c00210{left:185.040000pt;}
.x3e_c00210{left:189.360000pt;}
.x54_c00210{left:190.320000pt;}
.x5b_c00210{left:191.280000pt;}
.x70_c00210{left:193.682667pt;}
.x44_c00210{left:198.720000pt;}
.x6c_c00210{left:201.246667pt;}
.x49_c00210{left:202.560000pt;}
.xf_c00210{left:203.520000pt;}
.x15_c00210{left:205.440000pt;}
.x71_c00210{left:207.602667pt;}
.x5f_c00210{left:208.800000pt;}
.x2_c00210{left:210.240000pt;}
.x6d_c00210{left:211.441333pt;}
.x4d_c00210{left:213.120000pt;}
.x55_c00210{left:217.680000pt;}
.x2d_c00210{left:219.120000pt;}
.x28_c00210{left:220.560000pt;}
.x36_c00210{left:221.760000pt;}
.x10_c00210{left:223.680000pt;}
.x2e_c00210{left:228.960000pt;}
.x7_c00210{left:230.160000pt;}
.x1a_c00210{left:231.360000pt;}
.x20_c00210{left:234.480000pt;}
.x4e_c00210{left:236.880000pt;}
.x29_c00210{left:238.320000pt;}
.x5c_c00210{left:240.480000pt;}
.x3f_c00210{left:243.600000pt;}
.x45_c00210{left:245.040000pt;}
.x16_c00210{left:246.720000pt;}
.x8_c00210{left:247.680000pt;}
.x37_c00210{left:252.480000pt;}
.x40_c00210{left:256.560000pt;}
.x61_c00210{left:258.120000pt;}
.x21_c00210{left:259.440000pt;}
.x46_c00210{left:264.480000pt;}
.x3b_c00210{left:265.920000pt;}
.x65_c00210{left:267.840000pt;}
.x2f_c00210{left:270.960000pt;}
.x22_c00210{left:272.880000pt;}
.x72_c00210{left:275.282667pt;}
.x9_c00210{left:282.000000pt;}
.x56_c00210{left:283.920000pt;}
.x1b_c00210{left:286.800000pt;}
.x60_c00210{left:287.760000pt;}
.x4f_c00210{left:289.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00211 {
    display:none;
  }
  .loading-indicator_c00211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00211 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00211 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00211" -> "#page-container .classname_c00211")
 */
.pf_c00211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00211 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00211 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00211 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00211 {overflow:visible;}
  }
}
.c_c00211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00211 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00211:after { /* webkit #35443 */
  content: '';
}
.t_c00211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00211 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00211 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00211 { /* info for Javascript */
  display:none;
}
.l_c00211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00211:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00211 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00211.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00211{transform:matrix(0.135390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135390,0.000000,0.000000,0.250000,0,0);}
.me7_c00211{transform:matrix(0.144051,-0.001585,0.002750,0.249985,0,0);-ms-transform:matrix(0.144051,-0.001585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144051,-0.001585,0.002750,0.249985,0,0);}
.mbc_c00211{transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);}
.me5_c00211{transform:matrix(0.150516,-0.001656,0.002750,0.249985,0,0);-ms-transform:matrix(0.150516,-0.001656,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150516,-0.001656,0.002750,0.249985,0,0);}
.md9_c00211{transform:matrix(0.151421,-0.001666,0.002750,0.249985,0,0);-ms-transform:matrix(0.151421,-0.001666,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151421,-0.001666,0.002750,0.249985,0,0);}
.mba_c00211{transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);}
.me2_c00211{transform:matrix(0.152246,-0.001675,0.002750,0.249985,0,0);-ms-transform:matrix(0.152246,-0.001675,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152246,-0.001675,0.002750,0.249985,0,0);}
.m12_c00211{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);}
.m69_c00211{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.me9_c00211{transform:matrix(0.161510,-0.001777,0.002750,0.249985,0,0);-ms-transform:matrix(0.161510,-0.001777,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161510,-0.001777,0.002750,0.249985,0,0);}
.m3_c00211{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);}
.m88_c00211{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.mbd_c00211{transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);}
.md7_c00211{transform:matrix(0.169240,-0.001862,0.002750,0.249985,0,0);-ms-transform:matrix(0.169240,-0.001862,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169240,-0.001862,0.002750,0.249985,0,0);}
.m3f_c00211{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m66_c00211{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.m3d_c00211{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m81_c00211{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.170665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170665,0.000000,0.000000,0.250000,0,0);}
.me6_c00211{transform:matrix(0.171050,-0.001882,0.002750,0.249985,0,0);-ms-transform:matrix(0.171050,-0.001882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171050,-0.001882,0.002750,0.249985,0,0);}
.m99_c00211{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);}
.mbf_c00211{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00211{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.mcb_c00211{transform:matrix(0.174014,-0.001914,0.002750,0.249985,0,0);-ms-transform:matrix(0.174014,-0.001914,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174014,-0.001914,0.002750,0.249985,0,0);}
.m5_c00211{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.mb9_c00211{transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174755,0.000000,0.000000,0.250000,0,0);}
.md4_c00211{transform:matrix(0.174959,-0.001925,0.002750,0.249985,0,0);-ms-transform:matrix(0.174959,-0.001925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174959,-0.001925,0.002750,0.249985,0,0);}
.m37_c00211{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m76_c00211{transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);}
.m5a_c00211{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m2b_c00211{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m47_c00211{transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00211{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m68_c00211{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m91_c00211{transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);}
.md6_c00211{transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);-ms-transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);}
.mb8_c00211{transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00211{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m8c_c00211{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.mbb_c00211{transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);}
.m59_c00211{transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);}
.m31_c00211{transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);}
.m7d_c00211{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.181480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181480,0.000000,0.000000,0.250000,0,0);}
.ma0_c00211{transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);}
.m86_c00211{transform:matrix(0.181805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181805,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.md8_c00211{transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);-ms-transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);}
.m32_c00211{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);}
.md5_c00211{transform:matrix(0.182659,-0.002009,0.002750,0.249985,0,0);-ms-transform:matrix(0.182659,-0.002009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182659,-0.002009,0.002750,0.249985,0,0);}
.m38_c00211{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00211{transform:matrix(0.182824,-0.002011,0.002750,0.249985,0,0);-ms-transform:matrix(0.182824,-0.002011,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182824,-0.002011,0.002750,0.249985,0,0);}
.me0_c00211{transform:matrix(0.184554,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184554,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184554,-0.002030,0.002750,0.249985,0,0);}
.m48_c00211{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m95_c00211{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.mb0_c00211{transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);}
.mb1_c00211{transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185955,0.000000,0.000000,0.250000,0,0);}
.ma6_c00211{transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);}
.me1_c00211{transform:matrix(0.186124,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186124,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186124,-0.002047,0.002750,0.249985,0,0);}
.m9c_c00211{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);}
.m92_c00211{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m6b_c00211{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.me3_c00211{transform:matrix(0.187939,-0.002067,0.002750,0.249985,0,0);-ms-transform:matrix(0.187939,-0.002067,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187939,-0.002067,0.002750,0.249985,0,0);}
.m61_c00211{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m29_c00211{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.mc0_c00211{transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);}
.m79_c00211{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.md3_c00211{transform:matrix(0.189299,-0.002082,0.002750,0.249985,0,0);-ms-transform:matrix(0.189299,-0.002082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189299,-0.002082,0.002750,0.249985,0,0);}
.m77_c00211{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.m22_c00211{transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);}
.m2a_c00211{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.mb2_c00211{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m67_c00211{transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);}
.ma3_c00211{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);}
.me8_c00211{transform:matrix(0.191808,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191808,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191808,-0.002110,0.002750,0.249985,0,0);}
.me4_c00211{transform:matrix(0.191858,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191858,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191858,-0.002110,0.002750,0.249985,0,0);}
.mc9_c00211{transform:matrix(0.191948,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191948,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191948,-0.002111,0.002750,0.249985,0,0);}
.m6c_c00211{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.m90_c00211{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);}
.m97_c00211{transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);}
.m9a_c00211{transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);}
.md1_c00211{transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);}
.mdc_c00211{transform:matrix(0.194513,-0.002140,0.002750,0.249985,0,0);-ms-transform:matrix(0.194513,-0.002140,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194513,-0.002140,0.002750,0.249985,0,0);}
.m52_c00211{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.mf1_c00211{transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00211{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mb7_c00211{transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);}
.mc8_c00211{transform:matrix(0.196438,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196438,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196438,-0.002161,0.002750,0.249985,0,0);}
.m4e_c00211{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.mbe_c00211{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.m9b_c00211{transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);}
.mc3_c00211{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m84_c00211{transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);}
.m9e_c00211{transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);}
.m9d_c00211{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.mce_c00211{transform:matrix(0.198778,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198778,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198778,-0.002187,0.002750,0.249985,0,0);}
.mc5_c00211{transform:matrix(0.198933,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198933,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198933,-0.002188,0.002750,0.249985,0,0);}
.m96_c00211{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.m46_c00211{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.m7f_c00211{transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);}
.m89_c00211{transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);}
.m50_c00211{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m27_c00211{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.mca_c00211{transform:matrix(0.201153,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201153,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201153,-0.002213,0.002750,0.249985,0,0);}
.m80_c00211{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201315,0.000000,0.000000,0.250000,0,0);}
.m4f_c00211{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.ma5_c00211{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.mcf_c00211{transform:matrix(0.202753,-0.002230,0.002750,0.249985,0,0);-ms-transform:matrix(0.202753,-0.002230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202753,-0.002230,0.002750,0.249985,0,0);}
.ma8_c00211{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m8f_c00211{transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);}
.m85_c00211{transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);}
.m43_c00211{transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.ma9_c00211{transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);}
.mc6_c00211{transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);}
.mda_c00211{transform:matrix(0.204878,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204878,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204878,-0.002254,0.002750,0.249985,0,0);}
.m7c_c00211{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m3a_c00211{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.mb5_c00211{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.mcd_c00211{transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);-ms-transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206543,-0.002272,0.002750,0.249985,0,0);}
.m62_c00211{transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);}
.m58_c00211{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.mdb_c00211{transform:matrix(0.207992,-0.002288,0.002750,0.249985,0,0);-ms-transform:matrix(0.207992,-0.002288,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207992,-0.002288,0.002750,0.249985,0,0);}
.m11_c00211{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m39_c00211{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m40_c00211{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m25_c00211{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.ma1_c00211{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m72_c00211{transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00211{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.mc4_c00211{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.m7b_c00211{transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);}
.mc7_c00211{transform:matrix(0.210017,-0.002310,0.002750,0.249985,0,0);-ms-transform:matrix(0.210017,-0.002310,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210017,-0.002310,0.002750,0.249985,0,0);}
.mdd_c00211{transform:matrix(0.210037,-0.002310,0.002750,0.249985,0,0);-ms-transform:matrix(0.210037,-0.002310,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210037,-0.002310,0.002750,0.249985,0,0);}
.m33_c00211{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);}
.ma2_c00211{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.mad_c00211{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m98_c00211{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.m28_c00211{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.md0_c00211{transform:matrix(0.211592,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211592,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211592,-0.002328,0.002750,0.249985,0,0);}
.mae_c00211{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.maa_c00211{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.mab_c00211{transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);}
.m73_c00211{transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);}
.m8e_c00211{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m7a_c00211{transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);}
.m34_c00211{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m8a_c00211{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);}
.mc2_c00211{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m71_c00211{transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215690,0.000000,0.000000,0.250000,0,0);}
.m55_c00211{transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);}
.m2d_c00211{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m5f_c00211{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.mb3_c00211{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.maf_c00211{transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);}
.m74_c00211{transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);}
.m78_c00211{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.ma4_c00211{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);}
.m56_c00211{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.mb4_c00211{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00211{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m82_c00211{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m65_c00211{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m94_c00211{transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);}
.m4c_c00211{transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);}
.m44_c00211{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m70_c00211{transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);}
.m2e_c00211{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);}
.m6d_c00211{transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);}
.m6e_c00211{transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);}
.m75_c00211{transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232180,0.000000,0.000000,0.250000,0,0);}
.m51_c00211{transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);}
.m57_c00211{transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);}
.m5e_c00211{transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234710,0.000000,0.000000,0.250000,0,0);}
.mb6_c00211{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m1d_c00211{transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);}
.mac_c00211{transform:matrix(0.236990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236990,0.000000,0.000000,0.250000,0,0);}
.m45_c00211{transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);}
.mc1_c00211{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00211{transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);}
.md2_c00211{transform:matrix(0.243535,-0.002679,0.002750,0.249985,0,0);-ms-transform:matrix(0.243535,-0.002679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243535,-0.002679,0.002750,0.249985,0,0);}
.m21_c00211{transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00211{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);}
.m87_c00211{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m30_c00211{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m4b_c00211{transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);}
.m8b_c00211{transform:matrix(0.272505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272505,0.000000,0.000000,0.250000,0,0);}
.m5d_c00211{transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);}
.mea_c00211{transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);}
.mde_c00211{transform:matrix(0.289777,-0.003188,0.002750,0.249985,0,0);-ms-transform:matrix(0.289777,-0.003188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.289777,-0.003188,0.002750,0.249985,0,0);}
.mdf_c00211{transform:matrix(0.294607,-0.003241,0.002750,0.249985,0,0);-ms-transform:matrix(0.294607,-0.003241,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294607,-0.003241,0.002750,0.249985,0,0);}
.med_c00211{transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00211{transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);}
.meb_c00211{transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);}
.m83_c00211{transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);}
.m4a_c00211{transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);}
.m93_c00211{transform:matrix(0.322300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00211{transform:matrix(0.353140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353140,0.000000,0.000000,0.250000,0,0);}
.m54_c00211{transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);}
.m53_c00211{transform:matrix(0.401940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401940,0.000000,0.000000,0.250000,0,0);}
.m24_c00211{transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);}
.mee_c00211{transform:matrix(0.482550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482550,0.000000,0.000000,0.250000,0,0);}
.mef_c00211{transform:matrix(0.585995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585995,0.000000,0.000000,0.250000,0,0);}
.mec_c00211{transform:matrix(7.152070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.152070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.152070,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:transparent;}
.fs14_c00211{font-size:22.050000px;}
.fs15_c00211{font-size:42.000000px;}
.fs13_c00211{font-size:51.450000px;}
.fsa_c00211{font-size:57.750000px;}
.fsc_c00211{font-size:58.800000px;}
.fs8_c00211{font-size:59.850000px;}
.fs6_c00211{font-size:60.900000px;}
.fs7_c00211{font-size:61.950000px;}
.fs11_c00211{font-size:61.953748px;}
.fs9_c00211{font-size:63.000000px;}
.fs4_c00211{font-size:64.050000px;}
.fsb_c00211{font-size:65.100000px;}
.fse_c00211{font-size:65.103938px;}
.fs0_c00211{font-size:66.150000px;}
.fs5_c00211{font-size:67.200000px;}
.fs2_c00211{font-size:68.250000px;}
.fsf_c00211{font-size:68.254129px;}
.fs3_c00211{font-size:69.300000px;}
.fsd_c00211{font-size:70.350000px;}
.fs12_c00211{font-size:70.354256px;}
.fs10_c00211{font-size:71.404320px;}
.fs1_c00211{font-size:72.450000px;}
.fs16_c00211{font-size:163.800000px;}
.y0_c00211{bottom:0.000000px;}
.y40_c00211{bottom:29.226187px;}
.y48_c00211{bottom:29.226229px;}
.y47_c00211{bottom:29.226519px;}
.y44_c00211{bottom:29.226718px;}
.y41_c00211{bottom:29.226831px;}
.y45_c00211{bottom:29.227092px;}
.y42_c00211{bottom:29.227128px;}
.y46_c00211{bottom:29.227166px;}
.y43_c00211{bottom:29.227395px;}
.y39_c00211{bottom:46.169958px;}
.y3a_c00211{bottom:46.890931px;}
.y3b_c00211{bottom:47.245537px;}
.y3c_c00211{bottom:47.888572px;}
.y3d_c00211{bottom:48.589207px;}
.y3e_c00211{bottom:49.737991px;}
.y3f_c00211{bottom:50.113827px;}
.y30_c00211{bottom:63.181430px;}
.y31_c00211{bottom:64.047927px;}
.y32_c00211{bottom:64.319164px;}
.y33_c00211{bottom:64.804960px;}
.y34_c00211{bottom:65.129709px;}
.y35_c00211{bottom:65.744550px;}
.y36_c00211{bottom:66.052654px;}
.y37_c00211{bottom:66.551728px;}
.y38_c00211{bottom:67.223182px;}
.y2a_c00211{bottom:82.646129px;}
.y2b_c00211{bottom:82.646366px;}
.y2c_c00211{bottom:82.646902px;}
.y2e_c00211{bottom:82.647136px;}
.y2d_c00211{bottom:82.647183px;}
.y2f_c00211{bottom:82.647297px;}
.y4a_c00211{bottom:93.420000px;}
.y24_c00211{bottom:97.741500px;}
.y25_c00211{bottom:98.130735px;}
.y26_c00211{bottom:99.063134px;}
.y27_c00211{bottom:99.823404px;}
.y28_c00211{bottom:100.435224px;}
.y29_c00211{bottom:100.619513px;}
.y1c_c00211{bottom:110.437500px;}
.y1d_c00211{bottom:111.192000px;}
.y1e_c00211{bottom:112.143000px;}
.y1f_c00211{bottom:112.800000px;}
.y20_c00211{bottom:113.214000px;}
.y21_c00211{bottom:114.301500px;}
.y22_c00211{bottom:114.807000px;}
.y23_c00211{bottom:117.220500px;}
.y1b_c00211{bottom:133.369500px;}
.y1a_c00211{bottom:150.730500px;}
.y19_c00211{bottom:168.583500px;}
.y18_c00211{bottom:185.560500px;}
.y17_c00211{bottom:203.994000px;}
.y16_c00211{bottom:221.515500px;}
.y15_c00211{bottom:239.218500px;}
.y14_c00211{bottom:256.264500px;}
.y13_c00211{bottom:273.391500px;}
.y12_c00211{bottom:289.944000px;}
.y11_c00211{bottom:307.600500px;}
.y10_c00211{bottom:324.646500px;}
.yf_c00211{bottom:341.655000px;}
.ye_c00211{bottom:359.982000px;}
.yd_c00211{bottom:376.875000px;}
.yc_c00211{bottom:394.387500px;}
.y4c_c00211{bottom:394.470000px;}
.yb_c00211{bottom:411.244500px;}
.y4b_c00211{bottom:425.520000px;}
.ya_c00211{bottom:428.794500px;}
.y9_c00211{bottom:446.229000px;}
.y8_c00211{bottom:462.897000px;}
.y7_c00211{bottom:481.174500px;}
.y49_c00211{bottom:496.527000px;}
.y6_c00211{bottom:497.331000px;}
.y5_c00211{bottom:515.008500px;}
.y4_c00211{bottom:531.360000px;}
.y3_c00211{bottom:549.252000px;}
.y2_c00211{bottom:566.478000px;}
.y1_c00211{bottom:584.259000px;}
.h16_c00211{height:22.050000px;}
.h17_c00211{height:42.000000px;}
.h15_c00211{height:51.450000px;}
.hc_c00211{height:57.750000px;}
.he_c00211{height:58.800000px;}
.ha_c00211{height:59.850000px;}
.h8_c00211{height:60.900000px;}
.h9_c00211{height:61.950000px;}
.h13_c00211{height:61.953748px;}
.hb_c00211{height:63.000000px;}
.h6_c00211{height:64.050000px;}
.hd_c00211{height:65.100000px;}
.h10_c00211{height:65.103938px;}
.h2_c00211{height:66.150000px;}
.h7_c00211{height:67.200000px;}
.h4_c00211{height:68.250000px;}
.h11_c00211{height:68.254129px;}
.h5_c00211{height:69.300000px;}
.hf_c00211{height:70.350000px;}
.h14_c00211{height:70.354256px;}
.h12_c00211{height:71.404320px;}
.h3_c00211{height:72.450000px;}
.h18_c00211{height:163.800000px;}
.h0_c00211{height:623.100000px;}
.h1_c00211{height:623.250000px;}
.w0_c00211{width:366.390000px;}
.w1_c00211{width:366.750000px;}
.x0_c00211{left:0.000000px;}
.x7e_c00211{left:37.673207px;}
.x61_c00211{left:38.880000px;}
.x59_c00211{left:39.960000px;}
.x41_c00211{left:41.040000px;}
.x1c_c00211{left:42.120000px;}
.x2_c00211{left:43.740000px;}
.x69_c00211{left:55.080000px;}
.x4d_c00211{left:60.210000px;}
.x79_c00211{left:61.711500px;}
.x3_c00211{left:67.770000px;}
.x31_c00211{left:69.660000px;}
.xb_c00211{left:71.010000px;}
.x83_c00211{left:72.087326px;}
.x5a_c00211{left:73.710000px;}
.x4e_c00211{left:75.870000px;}
.x37_c00211{left:76.950000px;}
.x27_c00211{left:80.730000px;}
.x21_c00211{left:81.810000px;}
.x4b_c00211{left:82.890000px;}
.x11_c00211{left:83.970000px;}
.x55_c00211{left:85.320000px;}
.x6d_c00211{left:88.290000px;}
.x28_c00211{left:89.370000px;}
.x65_c00211{left:91.260000px;}
.x22_c00211{left:93.690000px;}
.x7f_c00211{left:95.443166px;}
.x7a_c00211{left:97.096500px;}
.x1d_c00211{left:98.280000px;}
.x3b_c00211{left:99.630000px;}
.x4f_c00211{left:102.330000px;}
.x16_c00211{left:104.760000px;}
.x2a_c00211{left:106.110000px;}
.x73_c00211{left:108.540000px;}
.x46_c00211{left:109.620000px;}
.x4_c00211{left:112.860000px;}
.x23_c00211{left:113.940000px;}
.x32_c00211{left:115.830000px;}
.x17_c00211{left:117.720000px;}
.x5c_c00211{left:126.630000px;}
.x53_c00211{left:128.520000px;}
.x66_c00211{left:132.030000px;}
.x12_c00211{left:135.270000px;}
.x75_c00211{left:137.334000px;}
.x5_c00211{left:139.050000px;}
.x3c_c00211{left:142.830000px;}
.x2b_c00211{left:143.910000px;}
.x80_c00211{left:145.989455px;}
.x5d_c00211{left:147.960000px;}
.x62_c00211{left:149.040000px;}
.xc_c00211{left:152.550000px;}
.x76_c00211{left:154.584000px;}
.x50_c00211{left:157.410000px;}
.x13_c00211{left:159.570000px;}
.x42_c00211{left:160.920000px;}
.x1e_c00211{left:162.540000px;}
.x33_c00211{left:163.890000px;}
.x6b_c00211{left:165.510000px;}
.x3d_c00211{left:167.670000px;}
.x24_c00211{left:172.530000px;}
.x6e_c00211{left:173.610000px;}
.x47_c00211{left:174.690000px;}
.x51_c00211{left:177.120000px;}
.x1_c00211{left:178.470000px;}
.x6c_c00211{left:179.550000px;}
.x6_c00211{left:181.710000px;}
.x18_c00211{left:182.790000px;}
.xd_c00211{left:184.140000px;}
.x34_c00211{left:186.840000px;}
.x74_c00211{left:188.190000px;}
.x1f_c00211{left:190.620000px;}
.x48_c00211{left:191.970000px;}
.x38_c00211{left:194.670000px;}
.x2c_c00211{left:195.750000px;}
.x77_c00211{left:199.899000px;}
.x7_c00211{left:201.690000px;}
.xe_c00211{left:203.040000px;}
.x54_c00211{left:204.120000px;}
.x19_c00211{left:205.200000px;}
.x81_c00211{left:208.631199px;}
.x56_c00211{left:209.790000px;}
.x3e_c00211{left:212.760000px;}
.x2d_c00211{left:214.110000px;}
.x67_c00211{left:215.460000px;}
.x5e_c00211{left:216.810000px;}
.x63_c00211{left:220.590000px;}
.x4c_c00211{left:223.830000px;}
.x14_c00211{left:230.040000px;}
.x3f_c00211{left:234.900000px;}
.x6a_c00211{left:238.410000px;}
.x2e_c00211{left:239.760000px;}
.x84_c00211{left:243.547566px;}
.xf_c00211{left:245.970000px;}
.x43_c00211{left:248.130000px;}
.x57_c00211{left:249.210000px;}
.x7b_c00211{left:250.975500px;}
.x29_c00211{left:252.450000px;}
.x8_c00211{left:255.150000px;}
.x49_c00211{left:256.770000px;}
.x82_c00211{left:260.490024px;}
.x5b_c00211{left:261.630000px;}
.x25_c00211{left:262.980000px;}
.x44_c00211{left:264.330000px;}
.x39_c00211{left:266.490000px;}
.x58_c00211{left:268.650000px;}
.x71_c00211{left:270.540000px;}
.x68_c00211{left:273.510000px;}
.x35_c00211{left:276.480000px;}
.x4a_c00211{left:279.720000px;}
.x2f_c00211{left:283.230000px;}
.x1a_c00211{left:284.850000px;}
.x5f_c00211{left:287.010000px;}
.x9_c00211{left:288.360000px;}
.x6f_c00211{left:290.790000px;}
.x15_c00211{left:292.950000px;}
.x7d_c00211{left:295.932854px;}
.x20_c00211{left:300.510000px;}
.x30_c00211{left:303.210000px;}
.x45_c00211{left:306.990000px;}
.x10_c00211{left:309.420000px;}
.x1b_c00211{left:311.310000px;}
.x60_c00211{left:312.390000px;}
.x26_c00211{left:314.280000px;}
.x36_c00211{left:316.440000px;}
.x40_c00211{left:318.330000px;}
.x86_c00211{left:319.410000px;}
.x78_c00211{left:321.534000px;}
.x7c_c00211{left:323.349000px;}
.xa_c00211{left:324.540000px;}
.x64_c00211{left:326.430000px;}
.x70_c00211{left:328.590000px;}
.x3a_c00211{left:329.940000px;}
.x72_c00211{left:331.020000px;}
.x85_c00211{left:332.382324px;}
.x52_c00211{left:333.720000px;}
.x88_c00211{left:360.180000px;}
.x8a_c00211{left:361.800000px;}
.x87_c00211{left:363.420000px;}
.x89_c00211{left:364.770000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs14_c00211{font-size:19.600000pt;}
.fs15_c00211{font-size:37.333333pt;}
.fs13_c00211{font-size:45.733333pt;}
.fsa_c00211{font-size:51.333333pt;}
.fsc_c00211{font-size:52.266667pt;}
.fs8_c00211{font-size:53.200000pt;}
.fs6_c00211{font-size:54.133333pt;}
.fs7_c00211{font-size:55.066667pt;}
.fs11_c00211{font-size:55.069998pt;}
.fs9_c00211{font-size:56.000000pt;}
.fs4_c00211{font-size:56.933333pt;}
.fsb_c00211{font-size:57.866667pt;}
.fse_c00211{font-size:57.870167pt;}
.fs0_c00211{font-size:58.800000pt;}
.fs5_c00211{font-size:59.733333pt;}
.fs2_c00211{font-size:60.666667pt;}
.fsf_c00211{font-size:60.670337pt;}
.fs3_c00211{font-size:61.600000pt;}
.fsd_c00211{font-size:62.533333pt;}
.fs12_c00211{font-size:62.537116pt;}
.fs10_c00211{font-size:63.470506pt;}
.fs1_c00211{font-size:64.400000pt;}
.fs16_c00211{font-size:145.600000pt;}
.y0_c00211{bottom:0.000000pt;}
.y40_c00211{bottom:25.978833pt;}
.y48_c00211{bottom:25.978871pt;}
.y47_c00211{bottom:25.979128pt;}
.y44_c00211{bottom:25.979305pt;}
.y41_c00211{bottom:25.979405pt;}
.y45_c00211{bottom:25.979637pt;}
.y42_c00211{bottom:25.979669pt;}
.y46_c00211{bottom:25.979703pt;}
.y43_c00211{bottom:25.979907pt;}
.y39_c00211{bottom:41.039963pt;}
.y3a_c00211{bottom:41.680828pt;}
.y3b_c00211{bottom:41.996033pt;}
.y3c_c00211{bottom:42.567620pt;}
.y3d_c00211{bottom:43.190407pt;}
.y3e_c00211{bottom:44.211548pt;}
.y3f_c00211{bottom:44.545624pt;}
.y30_c00211{bottom:56.161271pt;}
.y31_c00211{bottom:56.931491pt;}
.y32_c00211{bottom:57.172591pt;}
.y33_c00211{bottom:57.604409pt;}
.y34_c00211{bottom:57.893075pt;}
.y35_c00211{bottom:58.439600pt;}
.y36_c00211{bottom:58.713471pt;}
.y37_c00211{bottom:59.157092pt;}
.y38_c00211{bottom:59.753940pt;}
.y2a_c00211{bottom:73.463225pt;}
.y2b_c00211{bottom:73.463436pt;}
.y2c_c00211{bottom:73.463913pt;}
.y2e_c00211{bottom:73.464121pt;}
.y2d_c00211{bottom:73.464163pt;}
.y2f_c00211{bottom:73.464264pt;}
.y4a_c00211{bottom:83.040000pt;}
.y24_c00211{bottom:86.881333pt;}
.y25_c00211{bottom:87.227320pt;}
.y26_c00211{bottom:88.056119pt;}
.y27_c00211{bottom:88.731915pt;}
.y28_c00211{bottom:89.275755pt;}
.y29_c00211{bottom:89.439567pt;}
.y1c_c00211{bottom:98.166667pt;}
.y1d_c00211{bottom:98.837333pt;}
.y1e_c00211{bottom:99.682667pt;}
.y1f_c00211{bottom:100.266667pt;}
.y20_c00211{bottom:100.634667pt;}
.y21_c00211{bottom:101.601333pt;}
.y22_c00211{bottom:102.050667pt;}
.y23_c00211{bottom:104.196000pt;}
.y1b_c00211{bottom:118.550667pt;}
.y1a_c00211{bottom:133.982667pt;}
.y19_c00211{bottom:149.852000pt;}
.y18_c00211{bottom:164.942667pt;}
.y17_c00211{bottom:181.328000pt;}
.y16_c00211{bottom:196.902667pt;}
.y15_c00211{bottom:212.638667pt;}
.y14_c00211{bottom:227.790667pt;}
.y13_c00211{bottom:243.014667pt;}
.y12_c00211{bottom:257.728000pt;}
.y11_c00211{bottom:273.422667pt;}
.y10_c00211{bottom:288.574667pt;}
.yf_c00211{bottom:303.693333pt;}
.ye_c00211{bottom:319.984000pt;}
.yd_c00211{bottom:335.000000pt;}
.yc_c00211{bottom:350.566667pt;}
.y4c_c00211{bottom:350.640000pt;}
.yb_c00211{bottom:365.550667pt;}
.y4b_c00211{bottom:378.240000pt;}
.ya_c00211{bottom:381.150667pt;}
.y9_c00211{bottom:396.648000pt;}
.y8_c00211{bottom:411.464000pt;}
.y7_c00211{bottom:427.710667pt;}
.y49_c00211{bottom:441.357333pt;}
.y6_c00211{bottom:442.072000pt;}
.y5_c00211{bottom:457.785333pt;}
.y4_c00211{bottom:472.320000pt;}
.y3_c00211{bottom:488.224000pt;}
.y2_c00211{bottom:503.536000pt;}
.y1_c00211{bottom:519.341333pt;}
.h16_c00211{height:19.600000pt;}
.h17_c00211{height:37.333333pt;}
.h15_c00211{height:45.733333pt;}
.hc_c00211{height:51.333333pt;}
.he_c00211{height:52.266667pt;}
.ha_c00211{height:53.200000pt;}
.h8_c00211{height:54.133333pt;}
.h9_c00211{height:55.066667pt;}
.h13_c00211{height:55.069998pt;}
.hb_c00211{height:56.000000pt;}
.h6_c00211{height:56.933333pt;}
.hd_c00211{height:57.866667pt;}
.h10_c00211{height:57.870167pt;}
.h2_c00211{height:58.800000pt;}
.h7_c00211{height:59.733333pt;}
.h4_c00211{height:60.666667pt;}
.h11_c00211{height:60.670337pt;}
.h5_c00211{height:61.600000pt;}
.hf_c00211{height:62.533333pt;}
.h14_c00211{height:62.537116pt;}
.h12_c00211{height:63.470506pt;}
.h3_c00211{height:64.400000pt;}
.h18_c00211{height:145.600000pt;}
.h0_c00211{height:553.866667pt;}
.h1_c00211{height:554.000000pt;}
.w0_c00211{width:325.680000pt;}
.w1_c00211{width:326.000000pt;}
.x0_c00211{left:0.000000pt;}
.x7e_c00211{left:33.487295pt;}
.x61_c00211{left:34.560000pt;}
.x59_c00211{left:35.520000pt;}
.x41_c00211{left:36.480000pt;}
.x1c_c00211{left:37.440000pt;}
.x2_c00211{left:38.880000pt;}
.x69_c00211{left:48.960000pt;}
.x4d_c00211{left:53.520000pt;}
.x79_c00211{left:54.854667pt;}
.x3_c00211{left:60.240000pt;}
.x31_c00211{left:61.920000pt;}
.xb_c00211{left:63.120000pt;}
.x83_c00211{left:64.077623pt;}
.x5a_c00211{left:65.520000pt;}
.x4e_c00211{left:67.440000pt;}
.x37_c00211{left:68.400000pt;}
.x27_c00211{left:71.760000pt;}
.x21_c00211{left:72.720000pt;}
.x4b_c00211{left:73.680000pt;}
.x11_c00211{left:74.640000pt;}
.x55_c00211{left:75.840000pt;}
.x6d_c00211{left:78.480000pt;}
.x28_c00211{left:79.440000pt;}
.x65_c00211{left:81.120000pt;}
.x22_c00211{left:83.280000pt;}
.x7f_c00211{left:84.838369pt;}
.x7a_c00211{left:86.308000pt;}
.x1d_c00211{left:87.360000pt;}
.x3b_c00211{left:88.560000pt;}
.x4f_c00211{left:90.960000pt;}
.x16_c00211{left:93.120000pt;}
.x2a_c00211{left:94.320000pt;}
.x73_c00211{left:96.480000pt;}
.x46_c00211{left:97.440000pt;}
.x4_c00211{left:100.320000pt;}
.x23_c00211{left:101.280000pt;}
.x32_c00211{left:102.960000pt;}
.x17_c00211{left:104.640000pt;}
.x5c_c00211{left:112.560000pt;}
.x53_c00211{left:114.240000pt;}
.x66_c00211{left:117.360000pt;}
.x12_c00211{left:120.240000pt;}
.x75_c00211{left:122.074667pt;}
.x5_c00211{left:123.600000pt;}
.x3c_c00211{left:126.960000pt;}
.x2b_c00211{left:127.920000pt;}
.x80_c00211{left:129.768404pt;}
.x5d_c00211{left:131.520000pt;}
.x62_c00211{left:132.480000pt;}
.xc_c00211{left:135.600000pt;}
.x76_c00211{left:137.408000pt;}
.x50_c00211{left:139.920000pt;}
.x13_c00211{left:141.840000pt;}
.x42_c00211{left:143.040000pt;}
.x1e_c00211{left:144.480000pt;}
.x33_c00211{left:145.680000pt;}
.x6b_c00211{left:147.120000pt;}
.x3d_c00211{left:149.040000pt;}
.x24_c00211{left:153.360000pt;}
.x6e_c00211{left:154.320000pt;}
.x47_c00211{left:155.280000pt;}
.x51_c00211{left:157.440000pt;}
.x1_c00211{left:158.640000pt;}
.x6c_c00211{left:159.600000pt;}
.x6_c00211{left:161.520000pt;}
.x18_c00211{left:162.480000pt;}
.xd_c00211{left:163.680000pt;}
.x34_c00211{left:166.080000pt;}
.x74_c00211{left:167.280000pt;}
.x1f_c00211{left:169.440000pt;}
.x48_c00211{left:170.640000pt;}
.x38_c00211{left:173.040000pt;}
.x2c_c00211{left:174.000000pt;}
.x77_c00211{left:177.688000pt;}
.x7_c00211{left:179.280000pt;}
.xe_c00211{left:180.480000pt;}
.x54_c00211{left:181.440000pt;}
.x19_c00211{left:182.400000pt;}
.x81_c00211{left:185.449955pt;}
.x56_c00211{left:186.480000pt;}
.x3e_c00211{left:189.120000pt;}
.x2d_c00211{left:190.320000pt;}
.x67_c00211{left:191.520000pt;}
.x5e_c00211{left:192.720000pt;}
.x63_c00211{left:196.080000pt;}
.x4c_c00211{left:198.960000pt;}
.x14_c00211{left:204.480000pt;}
.x3f_c00211{left:208.800000pt;}
.x6a_c00211{left:211.920000pt;}
.x2e_c00211{left:213.120000pt;}
.x84_c00211{left:216.486725pt;}
.xf_c00211{left:218.640000pt;}
.x43_c00211{left:220.560000pt;}
.x57_c00211{left:221.520000pt;}
.x7b_c00211{left:223.089333pt;}
.x29_c00211{left:224.400000pt;}
.x8_c00211{left:226.800000pt;}
.x49_c00211{left:228.240000pt;}
.x82_c00211{left:231.546688pt;}
.x5b_c00211{left:232.560000pt;}
.x25_c00211{left:233.760000pt;}
.x44_c00211{left:234.960000pt;}
.x39_c00211{left:236.880000pt;}
.x58_c00211{left:238.800000pt;}
.x71_c00211{left:240.480000pt;}
.x68_c00211{left:243.120000pt;}
.x35_c00211{left:245.760000pt;}
.x4a_c00211{left:248.640000pt;}
.x2f_c00211{left:251.760000pt;}
.x1a_c00211{left:253.200000pt;}
.x5f_c00211{left:255.120000pt;}
.x9_c00211{left:256.320000pt;}
.x6f_c00211{left:258.480000pt;}
.x15_c00211{left:260.400000pt;}
.x7d_c00211{left:263.051425pt;}
.x20_c00211{left:267.120000pt;}
.x30_c00211{left:269.520000pt;}
.x45_c00211{left:272.880000pt;}
.x10_c00211{left:275.040000pt;}
.x1b_c00211{left:276.720000pt;}
.x60_c00211{left:277.680000pt;}
.x26_c00211{left:279.360000pt;}
.x36_c00211{left:281.280000pt;}
.x40_c00211{left:282.960000pt;}
.x86_c00211{left:283.920000pt;}
.x78_c00211{left:285.808000pt;}
.x7c_c00211{left:287.421333pt;}
.xa_c00211{left:288.480000pt;}
.x64_c00211{left:290.160000pt;}
.x70_c00211{left:292.080000pt;}
.x3a_c00211{left:293.280000pt;}
.x72_c00211{left:294.240000pt;}
.x85_c00211{left:295.450955pt;}
.x52_c00211{left:296.640000pt;}
.x88_c00211{left:320.160000pt;}
.x8a_c00211{left:321.600000pt;}
.x87_c00211{left:323.040000pt;}
.x89_c00211{left:324.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00212 {
    display:none;
  }
  .loading-indicator_c00212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00212 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00212 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00212" -> "#page-container .classname_c00212")
 */
.pf_c00212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00212 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00212 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00212 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00212 {overflow:visible;}
  }
}
.c_c00212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00212 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00212:after { /* webkit #35443 */
  content: '';
}
.t_c00212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00212 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00212 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00212 { /* info for Javascript */
  display:none;
}
.l_c00212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00212:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00212 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00212.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00212{transform:matrix(0.081295,0.002195,-0.006748,0.249909,0,0);-ms-transform:matrix(0.081295,0.002195,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.081295,0.002195,-0.006748,0.249909,0,0);}
.mf5_c00212{transform:matrix(0.109099,0.006012,-0.013757,0.249621,0,0);-ms-transform:matrix(0.109099,0.006012,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.109099,0.006012,-0.013757,0.249621,0,0);}
.mf1_c00212{transform:matrix(0.119988,0.006613,-0.013757,0.249621,0,0);-ms-transform:matrix(0.119988,0.006613,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.119988,0.006613,-0.013757,0.249621,0,0);}
.mdb_c00212{transform:matrix(0.127489,0.007154,-0.014006,0.249607,0,0);-ms-transform:matrix(0.127489,0.007154,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.127489,0.007154,-0.014006,0.249607,0,0);}
.m48_c00212{transform:matrix(0.127564,0.002296,-0.004499,0.249960,0,0);-ms-transform:matrix(0.127564,0.002296,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.127564,0.002296,-0.004499,0.249960,0,0);}
.m7_c00212{transform:matrix(0.139652,0.002793,-0.004999,0.249950,0,0);-ms-transform:matrix(0.139652,0.002793,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.139652,0.002793,-0.004999,0.249950,0,0);}
.m13_c00212{transform:matrix(0.143071,0.002861,-0.004999,0.249950,0,0);-ms-transform:matrix(0.143071,0.002861,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.143071,0.002861,-0.004999,0.249950,0,0);}
.mca_c00212{transform:matrix(0.143361,0.004592,-0.008004,0.249872,0,0);-ms-transform:matrix(0.143361,0.004592,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.143361,0.004592,-0.008004,0.249872,0,0);}
.m17_c00212{transform:matrix(0.148220,0.002964,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148220,0.002964,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148220,0.002964,-0.004999,0.249950,0,0);}
.m27_c00212{transform:matrix(0.150360,0.003007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150360,0.003007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150360,0.003007,-0.004999,0.249950,0,0);}
.m87_c00212{transform:matrix(0.153994,0.004158,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153994,0.004158,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153994,0.004158,-0.006748,0.249909,0,0);}
.ma7_c00212{transform:matrix(0.154891,0.004961,-0.008004,0.249872,0,0);-ms-transform:matrix(0.154891,0.004961,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.154891,0.004961,-0.008004,0.249872,0,0);}
.m22_c00212{transform:matrix(0.155054,0.003101,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155054,0.003101,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155054,0.003101,-0.004999,0.249950,0,0);}
.m34_c00212{transform:matrix(0.155904,0.003118,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155904,0.003118,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155904,0.003118,-0.004999,0.249950,0,0);}
.m2a_c00212{transform:matrix(0.156374,0.003127,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156374,0.003127,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156374,0.003127,-0.004999,0.249950,0,0);}
.m88_c00212{transform:matrix(0.156978,0.004238,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156978,0.004238,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156978,0.004238,-0.006748,0.249909,0,0);}
.m1b_c00212{transform:matrix(0.157913,0.003158,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157913,0.003158,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157913,0.003158,-0.004999,0.249950,0,0);}
.m18_c00212{transform:matrix(0.158083,0.003162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158083,0.003162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158083,0.003162,-0.004999,0.249950,0,0);}
.m19_c00212{transform:matrix(0.159333,0.003187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159333,0.003187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159333,0.003187,-0.004999,0.249950,0,0);}
.md_c00212{transform:matrix(0.160198,0.003204,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160198,0.003204,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160198,0.003204,-0.004999,0.249950,0,0);}
.m2d_c00212{transform:matrix(0.161758,0.003235,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161758,0.003235,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161758,0.003235,-0.004999,0.249950,0,0);}
.m23_c00212{transform:matrix(0.161968,0.003239,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161968,0.003239,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161968,0.003239,-0.004999,0.249950,0,0);}
.m4e_c00212{transform:matrix(0.162134,0.002918,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162134,0.002918,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162134,0.002918,-0.004499,0.249960,0,0);}
.me8_c00212{transform:matrix(0.163352,0.009002,-0.013757,0.249621,0,0);-ms-transform:matrix(0.163352,0.009002,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.163352,0.009002,-0.013757,0.249621,0,0);}
.m5_c00212{transform:matrix(0.164187,0.003284,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164187,0.003284,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164187,0.003284,-0.004999,0.249950,0,0);}
.m94_c00212{transform:matrix(0.164295,0.004436,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164295,0.004436,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164295,0.004436,-0.006748,0.249909,0,0);}
.m16_c00212{transform:matrix(0.165007,0.003300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165007,0.003300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165007,0.003300,-0.004999,0.249950,0,0);}
.m41_c00212{transform:matrix(0.167128,0.003008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167128,0.003008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167128,0.003008,-0.004499,0.249960,0,0);}
.m1f_c00212{transform:matrix(0.168281,0.003366,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168281,0.003366,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168281,0.003366,-0.004999,0.249950,0,0);}
.m37_c00212{transform:matrix(0.169986,0.003400,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169986,0.003400,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169986,0.003400,-0.004999,0.249950,0,0);}
.m47_c00212{transform:matrix(0.170122,0.003062,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170122,0.003062,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170122,0.003062,-0.004499,0.249960,0,0);}
.m2e_c00212{transform:matrix(0.170351,0.003407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170351,0.003407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170351,0.003407,-0.004999,0.249950,0,0);}
.m9e_c00212{transform:matrix(0.170878,0.004614,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170878,0.004614,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170878,0.004614,-0.006748,0.249909,0,0);}
.m67_c00212{transform:matrix(0.171027,0.003592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171027,0.003592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171027,0.003592,-0.005249,0.249945,0,0);}
.m75_c00212{transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);}
.mb0_c00212{transform:matrix(0.172342,0.005520,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172342,0.005520,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172342,0.005520,-0.008004,0.249872,0,0);}
.m9d_c00212{transform:matrix(0.172432,0.004656,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172432,0.004656,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172432,0.004656,-0.006748,0.249909,0,0);}
.mcf_c00212{transform:matrix(0.173081,0.005544,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173081,0.005544,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173081,0.005544,-0.008004,0.249872,0,0);}
.mbe_c00212{transform:matrix(0.173111,0.005545,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173111,0.005545,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173111,0.005545,-0.008004,0.249872,0,0);}
.md0_c00212{transform:matrix(0.173541,0.005559,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173541,0.005559,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173541,0.005559,-0.008004,0.249872,0,0);}
.m72_c00212{transform:matrix(0.173972,0.004697,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173972,0.004697,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173972,0.004697,-0.006748,0.249909,0,0);}
.mb4_c00212{transform:matrix(0.175120,0.005609,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175120,0.005609,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175120,0.005609,-0.008004,0.249872,0,0);}
.meb_c00212{transform:matrix(0.175384,0.009665,-0.013757,0.249621,0,0);-ms-transform:matrix(0.175384,0.009665,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.175384,0.009665,-0.013757,0.249621,0,0);}
.m3d_c00212{transform:matrix(0.175862,0.003166,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175862,0.003166,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175862,0.003166,-0.004499,0.249960,0,0);}
.m8d_c00212{transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176641,0.004769,-0.006748,0.249909,0,0);}
.m15_c00212{transform:matrix(0.176655,0.003533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176655,0.003533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176655,0.003533,-0.004999,0.249950,0,0);}
.m6b_c00212{transform:matrix(0.176716,0.003711,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176716,0.003711,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176716,0.003711,-0.005249,0.249945,0,0);}
.m30_c00212{transform:matrix(0.176750,0.003535,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176750,0.003535,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176750,0.003535,-0.004999,0.249950,0,0);}
.m1e_c00212{transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);}
.m51_c00212{transform:matrix(0.176851,0.003714,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176851,0.003714,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176851,0.003714,-0.005249,0.249945,0,0);}
.m29_c00212{transform:matrix(0.177505,0.003550,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177505,0.003550,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177505,0.003550,-0.004999,0.249950,0,0);}
.m10_c00212{transform:matrix(0.177669,0.003553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177669,0.003553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177669,0.003553,-0.004999,0.249950,0,0);}
.m63_c00212{transform:matrix(0.177676,0.003731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177676,0.003731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177676,0.003731,-0.005249,0.249945,0,0);}
.m12_c00212{transform:matrix(0.178314,0.003566,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178314,0.003566,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178314,0.003566,-0.004999,0.249950,0,0);}
.ma5_c00212{transform:matrix(0.178548,0.005719,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178548,0.005719,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178548,0.005719,-0.008004,0.249872,0,0);}
.mb1_c00212{transform:matrix(0.178593,0.005721,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178593,0.005721,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178593,0.005721,-0.008004,0.249872,0,0);}
.m44_c00212{transform:matrix(0.178871,0.003220,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178871,0.003220,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178871,0.003220,-0.004499,0.249960,0,0);}
.m62_c00212{transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);}
.mcd_c00212{transform:matrix(0.179993,0.005766,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179993,0.005766,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179993,0.005766,-0.008004,0.249872,0,0);}
.m4d_c00212{transform:matrix(0.180406,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180406,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180406,0.003247,-0.004499,0.249960,0,0);}
.m7d_c00212{transform:matrix(0.180684,0.004878,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180684,0.004878,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180684,0.004878,-0.006748,0.249909,0,0);}
.ma1_c00212{transform:matrix(0.181072,0.005800,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181072,0.005800,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181072,0.005800,-0.008004,0.249872,0,0);}
.m14_c00212{transform:matrix(0.181374,0.003627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181374,0.003627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181374,0.003627,-0.004999,0.249950,0,0);}
.m85_c00212{transform:matrix(0.181634,0.004904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181634,0.004904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181634,0.004904,-0.006748,0.249909,0,0);}
.m97_c00212{transform:matrix(0.182464,0.004927,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182464,0.004927,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182464,0.004927,-0.006748,0.249909,0,0);}
.m7e_c00212{transform:matrix(0.182583,0.004930,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182583,0.004930,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182583,0.004930,-0.006748,0.249909,0,0);}
.m3a_c00212{transform:matrix(0.182620,0.003287,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182620,0.003287,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182620,0.003287,-0.004499,0.249960,0,0);}
.m8a_c00212{transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183623,0.004958,-0.006748,0.249909,0,0);}
.m61_c00212{transform:matrix(0.184199,0.003868,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184199,0.003868,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184199,0.003868,-0.005249,0.249945,0,0);}
.m25_c00212{transform:matrix(0.184213,0.003684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184213,0.003684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184213,0.003684,-0.004999,0.249950,0,0);}
.mbd_c00212{transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184330,0.005904,-0.008004,0.249872,0,0);}
.m11_c00212{transform:matrix(0.184958,0.003699,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184958,0.003699,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184958,0.003699,-0.004999,0.249950,0,0);}
.m9b_c00212{transform:matrix(0.185043,0.004996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185043,0.004996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185043,0.004996,-0.006748,0.249909,0,0);}
.m83_c00212{transform:matrix(0.185058,0.004997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185058,0.004997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185058,0.004997,-0.006748,0.249909,0,0);}
.m2f_c00212{transform:matrix(0.185058,0.003701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185058,0.003701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185058,0.003701,-0.004999,0.249950,0,0);}
.m5d_c00212{transform:matrix(0.185099,0.003887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185099,0.003887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185099,0.003887,-0.005249,0.249945,0,0);}
.m35_c00212{transform:matrix(0.185558,0.003711,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185558,0.003711,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185558,0.003711,-0.004999,0.249950,0,0);}
.m4_c00212{transform:matrix(0.185908,0.003718,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185908,0.003718,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185908,0.003718,-0.004999,0.249950,0,0);}
.m1d_c00212{transform:matrix(0.186138,0.003723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186138,0.003723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186138,0.003723,-0.004999,0.249950,0,0);}
.m69_c00212{transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);}
.m8_c00212{transform:matrix(0.186728,0.003735,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186728,0.003735,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186728,0.003735,-0.004999,0.249950,0,0);}
.md8_c00212{transform:matrix(0.186800,0.007106,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186800,0.007106,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186800,0.007106,-0.009503,0.249819,0,0);}
.m90_c00212{transform:matrix(0.187032,0.005050,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187032,0.005050,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187032,0.005050,-0.006748,0.249909,0,0);}
.mae_c00212{transform:matrix(0.187194,0.005996,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187194,0.005996,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187194,0.005996,-0.008004,0.249872,0,0);}
.me2_c00212{transform:matrix(0.187260,0.010508,-0.014006,0.249607,0,0);-ms-transform:matrix(0.187260,0.010508,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.187260,0.010508,-0.014006,0.249607,0,0);}
.m89_c00212{transform:matrix(0.187847,0.005072,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187847,0.005072,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187847,0.005072,-0.006748,0.249909,0,0);}
.m59_c00212{transform:matrix(0.188258,0.003953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188258,0.003953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188258,0.003953,-0.005249,0.249945,0,0);}
.mdf_c00212{transform:matrix(0.188958,0.010603,-0.014006,0.249607,0,0);-ms-transform:matrix(0.188958,0.010603,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.188958,0.010603,-0.014006,0.249607,0,0);}
.m60_c00212{transform:matrix(0.189483,0.003979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189483,0.003979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189483,0.003979,-0.005249,0.249945,0,0);}
.m7a_c00212{transform:matrix(0.189511,0.005117,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189511,0.005117,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189511,0.005117,-0.006748,0.249909,0,0);}
.m2c_c00212{transform:matrix(0.189677,0.003794,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189677,0.003794,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189677,0.003794,-0.004999,0.249950,0,0);}
.m93_c00212{transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);}
.m49_c00212{transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);}
.mce_c00212{transform:matrix(0.189958,0.006085,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189958,0.006085,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189958,0.006085,-0.008004,0.249872,0,0);}
.m2_c00212{transform:matrix(0.190097,0.003802,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190097,0.003802,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190097,0.003802,-0.004999,0.249950,0,0);}
.m8e_c00212{transform:matrix(0.190396,0.005141,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190396,0.005141,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190396,0.005141,-0.006748,0.249909,0,0);}
.m6d_c00212{transform:matrix(0.190433,0.003999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190433,0.003999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190433,0.003999,-0.005249,0.249945,0,0);}
.m1c_c00212{transform:matrix(0.191022,0.003820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191022,0.003820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191022,0.003820,-0.004999,0.249950,0,0);}
.m8b_c00212{transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);}
.ma9_c00212{transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);}
.md9_c00212{transform:matrix(0.191539,0.010748,-0.014006,0.249607,0,0);-ms-transform:matrix(0.191539,0.010748,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.191539,0.010748,-0.014006,0.249607,0,0);}
.m8f_c00212{transform:matrix(0.193275,0.005218,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193275,0.005218,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193275,0.005218,-0.006748,0.249909,0,0);}
.mf7_c00212{transform:matrix(0.193292,0.010652,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193292,0.010652,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193292,0.010652,-0.013757,0.249621,0,0);}
.m31_c00212{transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193586,0.003872,-0.004999,0.249950,0,0);}
.m5f_c00212{transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);}
.m7c_c00212{transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);}
.m5e_c00212{transform:matrix(0.195112,0.004097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195112,0.004097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195112,0.004097,-0.005249,0.249945,0,0);}
.m4b_c00212{transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);}
.mcb_c00212{transform:matrix(0.195840,0.006273,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195840,0.006273,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195840,0.006273,-0.008004,0.249872,0,0);}
.me3_c00212{transform:matrix(0.196830,0.011045,-0.014006,0.249607,0,0);-ms-transform:matrix(0.196830,0.011045,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.196830,0.011045,-0.014006,0.249607,0,0);}
.m73_c00212{transform:matrix(0.197513,0.005333,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197513,0.005333,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197513,0.005333,-0.006748,0.249909,0,0);}
.m8c_c00212{transform:matrix(0.197963,0.005345,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197963,0.005345,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197963,0.005345,-0.006748,0.249909,0,0);}
.m24_c00212{transform:matrix(0.198625,0.003973,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198625,0.003973,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198625,0.003973,-0.004999,0.249950,0,0);}
.ma2_c00212{transform:matrix(0.198638,0.006363,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198638,0.006363,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198638,0.006363,-0.008004,0.249872,0,0);}
.mcc_c00212{transform:matrix(0.199013,0.006375,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199013,0.006375,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199013,0.006375,-0.008004,0.249872,0,0);}
.m4c_c00212{transform:matrix(0.199083,0.003583,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199083,0.003583,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199083,0.003583,-0.004499,0.249960,0,0);}
.mb9_c00212{transform:matrix(0.199088,0.006377,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199088,0.006377,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199088,0.006377,-0.008004,0.249872,0,0);}
.m64_c00212{transform:matrix(0.199121,0.004182,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199121,0.004182,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199121,0.004182,-0.005249,0.249945,0,0);}
.m77_c00212{transform:matrix(0.199377,0.005383,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199377,0.005383,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199377,0.005383,-0.006748,0.249909,0,0);}
.m6a_c00212{transform:matrix(0.199401,0.004187,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199401,0.004187,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199401,0.004187,-0.005249,0.249945,0,0);}
.m54_c00212{transform:matrix(0.199456,0.004189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199456,0.004189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199456,0.004189,-0.005249,0.249945,0,0);}
.mdc_c00212{transform:matrix(0.199456,0.011192,-0.014006,0.249607,0,0);-ms-transform:matrix(0.199456,0.011192,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.199456,0.011192,-0.014006,0.249607,0,0);}
.mab_c00212{transform:matrix(0.199818,0.006401,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199818,0.006401,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199818,0.006401,-0.008004,0.249872,0,0);}
.m2b_c00212{transform:matrix(0.199825,0.003997,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199825,0.003997,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199825,0.003997,-0.004999,0.249950,0,0);}
.mc9_c00212{transform:matrix(0.200232,0.006414,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200232,0.006414,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200232,0.006414,-0.008004,0.249872,0,0);}
.mad_c00212{transform:matrix(0.200407,0.006419,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200407,0.006419,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200407,0.006419,-0.008004,0.249872,0,0);}
.m42_c00212{transform:matrix(0.200558,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200558,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200558,0.003610,-0.004499,0.249960,0,0);}
.m28_c00212{transform:matrix(0.200705,0.004014,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200705,0.004014,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200705,0.004014,-0.004999,0.249950,0,0);}
.m98_c00212{transform:matrix(0.200882,0.005424,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200882,0.005424,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200882,0.005424,-0.006748,0.249909,0,0);}
.m70_c00212{transform:matrix(0.201037,0.005428,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201037,0.005428,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201037,0.005428,-0.006748,0.249909,0,0);}
.ma3_c00212{transform:matrix(0.201182,0.006444,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201182,0.006444,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201182,0.006444,-0.008004,0.249872,0,0);}
.m9c_c00212{transform:matrix(0.201547,0.005442,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201547,0.005442,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201547,0.005442,-0.006748,0.249909,0,0);}
.m76_c00212{transform:matrix(0.201851,0.005450,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201851,0.005450,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201851,0.005450,-0.006748,0.249909,0,0);}
.mac_c00212{transform:matrix(0.201891,0.006467,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201891,0.006467,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201891,0.006467,-0.008004,0.249872,0,0);}
.m3b_c00212{transform:matrix(0.202197,0.003640,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202197,0.003640,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202197,0.003640,-0.004499,0.249960,0,0);}
.mf4_c00212{transform:matrix(0.202593,0.011165,-0.013757,0.249621,0,0);-ms-transform:matrix(0.202593,0.011165,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.202593,0.011165,-0.013757,0.249621,0,0);}
.ma8_c00212{transform:matrix(0.202921,0.006500,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202921,0.006500,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202921,0.006500,-0.008004,0.249872,0,0);}
.m38_c00212{transform:matrix(0.202969,0.004059,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202969,0.004059,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202969,0.004059,-0.004999,0.249950,0,0);}
.m5a_c00212{transform:matrix(0.203590,0.004275,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203590,0.004275,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203590,0.004275,-0.005249,0.249945,0,0);}
.m81_c00212{transform:matrix(0.203801,0.005503,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203801,0.005503,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203801,0.005503,-0.006748,0.249909,0,0);}
.m74_c00212{transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203841,0.005504,-0.006748,0.249909,0,0);}
.mbf_c00212{transform:matrix(0.204005,0.006535,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204005,0.006535,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204005,0.006535,-0.008004,0.249872,0,0);}
.mde_c00212{transform:matrix(0.204009,0.011447,-0.014006,0.249607,0,0);-ms-transform:matrix(0.204009,0.011447,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.204009,0.011447,-0.014006,0.249607,0,0);}
.md5_c00212{transform:matrix(0.204227,0.007768,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204227,0.007768,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204227,0.007768,-0.009503,0.249819,0,0);}
.m53_c00212{transform:matrix(0.204350,0.004291,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204350,0.004291,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204350,0.004291,-0.005249,0.249945,0,0);}
.mc_c00212{transform:matrix(0.204499,0.004090,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204499,0.004090,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204499,0.004090,-0.004999,0.249950,0,0);}
.m3c_c00212{transform:matrix(0.205277,0.003695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205277,0.003695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205277,0.003695,-0.004499,0.249960,0,0);}
.m68_c00212{transform:matrix(0.205450,0.004314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205450,0.004314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205450,0.004314,-0.005249,0.249945,0,0);}
.mdd_c00212{transform:matrix(0.205592,0.011536,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205592,0.011536,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205592,0.011536,-0.014006,0.249607,0,0);}
.m9a_c00212{transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);}
.med_c00212{transform:matrix(0.206167,0.011362,-0.013757,0.249621,0,0);-ms-transform:matrix(0.206167,0.011362,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.206167,0.011362,-0.013757,0.249621,0,0);}
.m55_c00212{transform:matrix(0.206464,0.004336,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206464,0.004336,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206464,0.004336,-0.005249,0.249945,0,0);}
.m4f_c00212{transform:matrix(0.206652,0.003720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206652,0.003720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206652,0.003720,-0.004499,0.249960,0,0);}
.m1_c00212{transform:matrix(0.206819,0.004136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206819,0.004136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206819,0.004136,-0.004999,0.249950,0,0);}
.mea_c00212{transform:matrix(0.207690,0.011446,-0.013757,0.249621,0,0);-ms-transform:matrix(0.207690,0.011446,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.207690,0.011446,-0.013757,0.249621,0,0);}
.ma_c00212{transform:matrix(0.208528,0.004171,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208528,0.004171,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208528,0.004171,-0.004999,0.249950,0,0);}
.mc0_c00212{transform:matrix(0.208593,0.006682,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208593,0.006682,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208593,0.006682,-0.008004,0.249872,0,0);}
.m50_c00212{transform:matrix(0.209134,0.004392,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209134,0.004392,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209134,0.004392,-0.005249,0.249945,0,0);}
.m79_c00212{transform:matrix(0.209649,0.005661,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209649,0.005661,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209649,0.005661,-0.006748,0.249909,0,0);}
.me1_c00212{transform:matrix(0.209970,0.011782,-0.014006,0.249607,0,0);-ms-transform:matrix(0.209970,0.011782,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.209970,0.011782,-0.014006,0.249607,0,0);}
.me_c00212{transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210343,0.004207,-0.004999,0.249950,0,0);}
.mf3_c00212{transform:matrix(0.210436,0.011597,-0.013757,0.249621,0,0);-ms-transform:matrix(0.210436,0.011597,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.210436,0.011597,-0.013757,0.249621,0,0);}
.m4a_c00212{transform:matrix(0.211611,0.003809,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211611,0.003809,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211611,0.003809,-0.004499,0.249960,0,0);}
.md1_c00212{transform:matrix(0.212296,0.008075,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212296,0.008075,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212296,0.008075,-0.009503,0.249819,0,0);}
.m82_c00212{transform:matrix(0.213062,0.005753,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213062,0.005753,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213062,0.005753,-0.006748,0.249909,0,0);}
.ma4_c00212{transform:matrix(0.213266,0.006831,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213266,0.006831,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213266,0.006831,-0.008004,0.249872,0,0);}
.m52_c00212{transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);}
.m86_c00212{transform:matrix(0.213632,0.005768,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213632,0.005768,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213632,0.005768,-0.006748,0.249909,0,0);}
.m39_c00212{transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);}
.m5b_c00212{transform:matrix(0.214278,0.004500,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214278,0.004500,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214278,0.004500,-0.005249,0.249945,0,0);}
.me0_c00212{transform:matrix(0.214597,0.012042,-0.014006,0.249607,0,0);-ms-transform:matrix(0.214597,0.012042,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.214597,0.012042,-0.014006,0.249607,0,0);}
.m26_c00212{transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);}
.m32_c00212{transform:matrix(0.215047,0.004301,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215047,0.004301,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215047,0.004301,-0.004999,0.249950,0,0);}
.maa_c00212{transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);}
.m71_c00212{transform:matrix(0.215786,0.005826,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215786,0.005826,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215786,0.005826,-0.006748,0.249909,0,0);}
.m80_c00212{transform:matrix(0.216191,0.005837,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216191,0.005837,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216191,0.005837,-0.006748,0.249909,0,0);}
.m96_c00212{transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);}
.m84_c00212{transform:matrix(0.216491,0.005845,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216491,0.005845,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216491,0.005845,-0.006748,0.249909,0,0);}
.m6f_c00212{transform:matrix(0.216771,0.005853,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216771,0.005853,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216771,0.005853,-0.006748,0.249909,0,0);}
.m1a_c00212{transform:matrix(0.216787,0.004336,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216787,0.004336,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216787,0.004336,-0.004999,0.249950,0,0);}
.mba_c00212{transform:matrix(0.217179,0.006957,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217179,0.006957,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217179,0.006957,-0.008004,0.249872,0,0);}
.mb_c00212{transform:matrix(0.217257,0.004345,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217257,0.004345,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217257,0.004345,-0.004999,0.249950,0,0);}
.m7f_c00212{transform:matrix(0.217796,0.005880,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217796,0.005880,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217796,0.005880,-0.006748,0.249909,0,0);}
.mec_c00212{transform:matrix(0.217849,0.012006,-0.013757,0.249621,0,0);-ms-transform:matrix(0.217849,0.012006,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.217849,0.012006,-0.013757,0.249621,0,0);}
.maf_c00212{transform:matrix(0.218043,0.006984,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218043,0.006984,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218043,0.006984,-0.008004,0.249872,0,0);}
.m66_c00212{transform:matrix(0.218542,0.004589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218542,0.004589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218542,0.004589,-0.005249,0.249945,0,0);}
.m33_c00212{transform:matrix(0.219306,0.004386,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219306,0.004386,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219306,0.004386,-0.004999,0.249950,0,0);}
.md3_c00212{transform:matrix(0.219501,0.008349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219501,0.008349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219501,0.008349,-0.009503,0.249819,0,0);}
.m56_c00212{transform:matrix(0.220171,0.004624,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220171,0.004624,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220171,0.004624,-0.005249,0.249945,0,0);}
.mc1_c00212{transform:matrix(0.220242,0.007055,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220242,0.007055,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220242,0.007055,-0.008004,0.249872,0,0);}
.m9_c00212{transform:matrix(0.220391,0.004408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220391,0.004408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220391,0.004408,-0.004999,0.249950,0,0);}
.me6_c00212{transform:matrix(0.220493,0.012372,-0.014006,0.249607,0,0);-ms-transform:matrix(0.220493,0.012372,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.220493,0.012372,-0.014006,0.249607,0,0);}
.me4_c00212{transform:matrix(0.221007,0.012401,-0.014006,0.249607,0,0);-ms-transform:matrix(0.221007,0.012401,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.221007,0.012401,-0.014006,0.249607,0,0);}
.ma6_c00212{transform:matrix(0.221561,0.007097,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221561,0.007097,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221561,0.007097,-0.008004,0.249872,0,0);}
.m43_c00212{transform:matrix(0.221574,0.003988,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221574,0.003988,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221574,0.003988,-0.004499,0.249960,0,0);}
.m92_c00212{transform:matrix(0.221679,0.005985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221679,0.005985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221679,0.005985,-0.006748,0.249909,0,0);}
.m6e_c00212{transform:matrix(0.221691,0.004656,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221691,0.004656,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221691,0.004656,-0.005249,0.249945,0,0);}
.m3e_c00212{transform:matrix(0.221974,0.003996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221974,0.003996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221974,0.003996,-0.004499,0.249960,0,0);}
.m95_c00212{transform:matrix(0.222004,0.005994,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222004,0.005994,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222004,0.005994,-0.006748,0.249909,0,0);}
.mf_c00212{transform:matrix(0.222091,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222091,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222091,0.004442,-0.004999,0.249950,0,0);}
.m0_c00212{transform:matrix(0.222431,0.004449,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222431,0.004449,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222431,0.004449,-0.004999,0.249950,0,0);}
.m3f_c00212{transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);}
.mbc_c00212{transform:matrix(0.223575,0.007162,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223575,0.007162,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223575,0.007162,-0.008004,0.249872,0,0);}
.m58_c00212{transform:matrix(0.224665,0.004718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224665,0.004718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224665,0.004718,-0.005249,0.249945,0,0);}
.mb5_c00212{transform:matrix(0.224755,0.007199,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224755,0.007199,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224755,0.007199,-0.008004,0.249872,0,0);}
.m7b_c00212{transform:matrix(0.224913,0.006073,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224913,0.006073,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224913,0.006073,-0.006748,0.249909,0,0);}
.m99_c00212{transform:matrix(0.225338,0.006084,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225338,0.006084,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225338,0.006084,-0.006748,0.249909,0,0);}
.mc5_c00212{transform:matrix(0.225789,0.007232,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225789,0.007232,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225789,0.007232,-0.008004,0.249872,0,0);}
.me5_c00212{transform:matrix(0.225805,0.012670,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225805,0.012670,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225805,0.012670,-0.014006,0.249607,0,0);}
.mee_c00212{transform:matrix(0.225882,0.012448,-0.013757,0.249621,0,0);-ms-transform:matrix(0.225882,0.012448,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.225882,0.012448,-0.013757,0.249621,0,0);}
.me7_c00212{transform:matrix(0.226239,0.012695,-0.014006,0.249607,0,0);-ms-transform:matrix(0.226239,0.012695,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.226239,0.012695,-0.014006,0.249607,0,0);}
.m40_c00212{transform:matrix(0.226268,0.004073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226268,0.004073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226268,0.004073,-0.004499,0.249960,0,0);}
.m78_c00212{transform:matrix(0.226397,0.006113,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226397,0.006113,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226397,0.006113,-0.006748,0.249909,0,0);}
.m6c_c00212{transform:matrix(0.226965,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226965,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226965,0.004766,-0.005249,0.249945,0,0);}
.ma0_c00212{transform:matrix(0.227813,0.007297,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227813,0.007297,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227813,0.007297,-0.008004,0.249872,0,0);}
.m57_c00212{transform:matrix(0.228895,0.004807,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228895,0.004807,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228895,0.004807,-0.005249,0.249945,0,0);}
.mb6_c00212{transform:matrix(0.229957,0.007366,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229957,0.007366,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229957,0.007366,-0.008004,0.249872,0,0);}
.mf8_c00212{transform:matrix(0.230445,0.012700,-0.013757,0.249621,0,0);-ms-transform:matrix(0.230445,0.012700,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.230445,0.012700,-0.013757,0.249621,0,0);}
.mb7_c00212{transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230877,0.007395,-0.008004,0.249872,0,0);}
.mef_c00212{transform:matrix(0.232907,0.012836,-0.013757,0.249621,0,0);-ms-transform:matrix(0.232907,0.012836,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.232907,0.012836,-0.013757,0.249621,0,0);}
.mbb_c00212{transform:matrix(0.232956,0.007462,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232956,0.007462,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232956,0.007462,-0.008004,0.249872,0,0);}
.m36_c00212{transform:matrix(0.234728,0.004695,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234728,0.004695,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234728,0.004695,-0.004999,0.249950,0,0);}
.mb3_c00212{transform:matrix(0.235159,0.007533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235159,0.007533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235159,0.007533,-0.008004,0.249872,0,0);}
.md6_c00212{transform:matrix(0.236004,0.008977,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236004,0.008977,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236004,0.008977,-0.009503,0.249819,0,0);}
.mf6_c00212{transform:matrix(0.237964,0.013114,-0.013757,0.249621,0,0);-ms-transform:matrix(0.237964,0.013114,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.237964,0.013114,-0.013757,0.249621,0,0);}
.mf0_c00212{transform:matrix(0.238578,0.013148,-0.013757,0.249621,0,0);-ms-transform:matrix(0.238578,0.013148,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.238578,0.013148,-0.013757,0.249621,0,0);}
.m45_c00212{transform:matrix(0.239011,0.004302,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239011,0.004302,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239011,0.004302,-0.004499,0.249960,0,0);}
.m91_c00212{transform:matrix(0.239018,0.006453,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239018,0.006453,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239018,0.006453,-0.006748,0.249909,0,0);}
.m46_c00212{transform:matrix(0.239131,0.004304,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239131,0.004304,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239131,0.004304,-0.004499,0.249960,0,0);}
.m65_c00212{transform:matrix(0.239882,0.005038,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239882,0.005038,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239882,0.005038,-0.005249,0.249945,0,0);}
.md7_c00212{transform:matrix(0.240586,0.009151,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240586,0.009151,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240586,0.009151,-0.009503,0.249819,0,0);}
.mc7_c00212{transform:matrix(0.241351,0.007731,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241351,0.007731,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241351,0.007731,-0.008004,0.249872,0,0);}
.mb8_c00212{transform:matrix(0.241386,0.007732,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241386,0.007732,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241386,0.007732,-0.008004,0.249872,0,0);}
.me9_c00212{transform:matrix(0.242662,0.013373,-0.013757,0.249621,0,0);-ms-transform:matrix(0.242662,0.013373,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.242662,0.013373,-0.013757,0.249621,0,0);}
.mda_c00212{transform:matrix(0.246238,0.013817,-0.014006,0.249607,0,0);-ms-transform:matrix(0.246238,0.013817,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.246238,0.013817,-0.014006,0.249607,0,0);}
.mb2_c00212{transform:matrix(0.249012,0.007976,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249012,0.007976,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249012,0.007976,-0.008004,0.249872,0,0);}
.m20_c00212{transform:matrix(0.257374,0.005147,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257374,0.005147,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257374,0.005147,-0.004999,0.249950,0,0);}
.mc8_c00212{transform:matrix(0.257563,0.008250,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257563,0.008250,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257563,0.008250,-0.008004,0.249872,0,0);}
.md4_c00212{transform:matrix(0.260502,0.009909,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260502,0.009909,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260502,0.009909,-0.009503,0.249819,0,0);}
.mc6_c00212{transform:matrix(0.260881,0.008357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260881,0.008357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260881,0.008357,-0.008004,0.249872,0,0);}
.m6_c00212{transform:matrix(0.272920,0.005458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272920,0.005458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272920,0.005458,-0.004999,0.249950,0,0);}
.mc4_c00212{transform:matrix(0.298127,0.009550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298127,0.009550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298127,0.009550,-0.008004,0.249872,0,0);}
.mf2_c00212{transform:matrix(0.313874,0.017298,-0.013757,0.249621,0,0);-ms-transform:matrix(0.313874,0.017298,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.313874,0.017298,-0.013757,0.249621,0,0);}
.mc3_c00212{transform:matrix(0.315823,0.010116,-0.008004,0.249872,0,0);-ms-transform:matrix(0.315823,0.010116,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.315823,0.010116,-0.008004,0.249872,0,0);}
.mc2_c00212{transform:matrix(0.318177,0.010192,-0.008004,0.249872,0,0);-ms-transform:matrix(0.318177,0.010192,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.318177,0.010192,-0.008004,0.249872,0,0);}
.m21_c00212{transform:matrix(0.338802,0.006776,-0.004999,0.249950,0,0);-ms-transform:matrix(0.338802,0.006776,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.338802,0.006776,-0.004999,0.249950,0,0);}
.m5c_c00212{transform:matrix(0.429380,0.009017,-0.005249,0.249945,0,0);-ms-transform:matrix(0.429380,0.009017,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.429380,0.009017,-0.005249,0.249945,0,0);}
.m3_c00212{transform:matrix(0.577659,0.011553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.577659,0.011553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.577659,0.011553,-0.004999,0.249950,0,0);}
.md2_c00212{transform:matrix(1.155329,0.043946,-0.009503,0.249819,0,0);-ms-transform:matrix(1.155329,0.043946,-0.009503,0.249819,0,0);-webkit-transform:matrix(1.155329,0.043946,-0.009503,0.249819,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:0.000000px;}
.fc0_c00212{color:transparent;}
.fs16_c00212{font-size:46.177472px;}
.fs18_c00212{font-size:52.485429px;}
.fs1e_c00212{font-size:54.573485px;}
.fs19_c00212{font-size:54.584846px;}
.fs1b_c00212{font-size:57.725162px;}
.fs0_c00212{font-size:57.761549px;}
.fs6_c00212{font-size:58.809525px;}
.fs14_c00212{font-size:59.820816px;}
.fsa_c00212{font-size:59.863195px;}
.fsf_c00212{font-size:59.871811px;}
.fs12_c00212{font-size:60.870304px;}
.fsc_c00212{font-size:60.913427px;}
.fs15_c00212{font-size:61.919792px;}
.fs1c_c00212{font-size:61.919916px;}
.fse_c00212{font-size:61.972577px;}
.fs13_c00212{font-size:62.969280px;}
.fs1d_c00212{font-size:62.969406px;}
.fs7_c00212{font-size:63.010205px;}
.fs2_c00212{font-size:63.012599px;}
.fs9_c00212{font-size:63.013890px;}
.fs17_c00212{font-size:64.018768px;}
.fsd_c00212{font-size:64.073342px;}
.fs1a_c00212{font-size:65.072001px;}
.fsb_c00212{font-size:65.114353px;}
.fs5_c00212{font-size:66.163229px;}
.fs8_c00212{font-size:67.210886px;}
.fs4_c00212{font-size:68.263649px;}
.fs1_c00212{font-size:69.313859px;}
.fs11_c00212{font-size:70.375638px;}
.fs10_c00212{font-size:71.426021px;}
.fs3_c00212{font-size:74.564909px;}
.y0_c00212{bottom:0.000000px;}
.yfb_c00212{bottom:10.699546px;}
.yfa_c00212{bottom:16.886335px;}
.yf9_c00212{bottom:18.391726px;}
.yf8_c00212{bottom:23.036758px;}
.yf7_c00212{bottom:32.951613px;}
.yf6_c00212{bottom:34.295142px;}
.yf5_c00212{bottom:35.663538px;}
.yf4_c00212{bottom:36.214974px;}
.yf3_c00212{bottom:40.161390px;}
.yf2_c00212{bottom:43.079992px;}
.yf1_c00212{bottom:44.554432px;}
.yf0_c00212{bottom:45.608040px;}
.yef_c00212{bottom:48.731737px;}
.yee_c00212{bottom:50.009992px;}
.yed_c00212{bottom:51.094867px;}
.yec_c00212{bottom:54.124597px;}
.yeb_c00212{bottom:54.835500px;}
.yea_c00212{bottom:59.925981px;}
.ye9_c00212{bottom:62.630733px;}
.ye8_c00212{bottom:63.951549px;}
.ye7_c00212{bottom:66.210666px;}
.ye6_c00212{bottom:69.191043px;}
.ye5_c00212{bottom:70.412460px;}
.ye4_c00212{bottom:72.655923px;}
.ye3_c00212{bottom:75.926436px;}
.ye2_c00212{bottom:78.183432px;}
.ye1_c00212{bottom:80.075532px;}
.ye0_c00212{bottom:80.875632px;}
.ydf_c00212{bottom:82.786212px;}
.ydb_c00212{bottom:83.972622px;}
.yde_c00212{bottom:84.226980px;}
.ydd_c00212{bottom:86.238276px;}
.ydc_c00212{bottom:89.668500px;}
.yda_c00212{bottom:96.738942px;}
.yd9_c00212{bottom:97.701501px;}
.yd8_c00212{bottom:98.852274px;}
.yd7_c00212{bottom:100.707510px;}
.yd6_c00212{bottom:101.916537px;}
.yd5_c00212{bottom:105.564366px;}
.yd4_c00212{bottom:106.668000px;}
.yd3_c00212{bottom:112.968051px;}
.yd2_c00212{bottom:113.398439px;}
.yd1_c00212{bottom:114.955943px;}
.yd0_c00212{bottom:115.675968px;}
.ycf_c00212{bottom:117.636147px;}
.yce_c00212{bottom:119.099975px;}
.ycd_c00212{bottom:119.582043px;}
.ycc_c00212{bottom:120.468419px;}
.ycb_c00212{bottom:131.329094px;}
.yca_c00212{bottom:132.021485px;}
.yc9_c00212{bottom:133.266903px;}
.yc8_c00212{bottom:133.784127px;}
.yc7_c00212{bottom:134.095383px;}
.yc6_c00212{bottom:136.479588px;}
.yc5_c00212{bottom:138.279522px;}
.yc4_c00212{bottom:147.008616px;}
.yc3_c00212{bottom:147.412164px;}
.yc2_c00212{bottom:148.411542px;}
.yc1_c00212{bottom:148.907467px;}
.yc0_c00212{bottom:149.667180px;}
.ybf_c00212{bottom:150.016229px;}
.ybe_c00212{bottom:150.688370px;}
.ybd_c00212{bottom:164.457354px;}
.ybc_c00212{bottom:165.553181px;}
.ybb_c00212{bottom:166.130400px;}
.yba_c00212{bottom:168.662684px;}
.yb9_c00212{bottom:169.264836px;}
.yb8_c00212{bottom:170.724306px;}
.yb7_c00212{bottom:171.328331px;}
.yb6_c00212{bottom:171.857604px;}
.yb5_c00212{bottom:173.879931px;}
.yb4_c00212{bottom:174.984648px;}
.yb3_c00212{bottom:181.273914px;}
.yb2_c00212{bottom:182.532473px;}
.yb1_c00212{bottom:183.499154px;}
.yb0_c00212{bottom:184.005050px;}
.yaf_c00212{bottom:185.055771px;}
.yae_c00212{bottom:185.722185px;}
.yad_c00212{bottom:187.313711px;}
.yac_c00212{bottom:187.938123px;}
.yab_c00212{bottom:197.955000px;}
.yaa_c00212{bottom:198.502968px;}
.ya9_c00212{bottom:200.149272px;}
.ya8_c00212{bottom:200.659608px;}
.ya7_c00212{bottom:201.535752px;}
.ya6_c00212{bottom:203.196264px;}
.ya5_c00212{bottom:204.496296px;}
.ya4_c00212{bottom:205.158456px;}
.ya3_c00212{bottom:206.829000px;}
.ya2_c00212{bottom:214.623788px;}
.ya1_c00212{bottom:216.231344px;}
.ya0_c00212{bottom:217.452543px;}
.y9f_c00212{bottom:219.536331px;}
.y9e_c00212{bottom:220.226013px;}
.y9d_c00212{bottom:222.067838px;}
.y9c_c00212{bottom:223.809134px;}
.y9b_c00212{bottom:233.901290px;}
.y9a_c00212{bottom:234.637896px;}
.y99_c00212{bottom:235.808625px;}
.y98_c00212{bottom:236.947356px;}
.y97_c00212{bottom:238.275038px;}
.y96_c00212{bottom:238.935254px;}
.y95_c00212{bottom:240.552783px;}
.y94_c00212{bottom:241.361123px;}
.y93_c00212{bottom:250.612505px;}
.y92_c00212{bottom:251.239812px;}
.y91_c00212{bottom:252.869037px;}
.y90_c00212{bottom:253.456692px;}
.y8f_c00212{bottom:254.607984px;}
.y8e_c00212{bottom:255.500828px;}
.y8d_c00212{bottom:256.088483px;}
.y8c_c00212{bottom:257.183880px;}
.y8b_c00212{bottom:257.708756px;}
.y8a_c00212{bottom:258.645788px;}
.y89_c00212{bottom:268.079487px;}
.y88_c00212{bottom:268.616433px;}
.y87_c00212{bottom:269.562641px;}
.y86_c00212{bottom:270.228165px;}
.y85_c00212{bottom:271.281608px;}
.y84_c00212{bottom:272.672591px;}
.y83_c00212{bottom:273.392624px;}
.y82_c00212{bottom:275.123901px;}
.y81_c00212{bottom:285.444894px;}
.y80_c00212{bottom:286.891944px;}
.y7f_c00212{bottom:287.605244px;}
.y7e_c00212{bottom:287.986820px;}
.y7d_c00212{bottom:289.996637px;}
.y7c_c00212{bottom:290.629263px;}
.y7b_c00212{bottom:292.264631px;}
.y7a_c00212{bottom:292.952577px;}
.y79_c00212{bottom:303.195321px;}
.y78_c00212{bottom:303.618181px;}
.y77_c00212{bottom:304.365812px;}
.y76_c00212{bottom:305.958596px;}
.y75_c00212{bottom:307.555308px;}
.y74_c00212{bottom:308.361461px;}
.y73_c00212{bottom:308.648403px;}
.y72_c00212{bottom:310.239000px;}
.y71_c00212{bottom:325.033302px;}
.y70_c00212{bottom:325.378434px;}
.y6f_c00212{bottom:326.690181px;}
.y6e_c00212{bottom:337.473483px;}
.y6d_c00212{bottom:338.073747px;}
.y6c_c00212{bottom:338.905760px;}
.y6b_c00212{bottom:339.882036px;}
.y6a_c00212{bottom:340.405097px;}
.y69_c00212{bottom:340.918317px;}
.y68_c00212{bottom:341.692731px;}
.y67_c00212{bottom:341.934603px;}
.y66_c00212{bottom:342.895590px;}
.y65_c00212{bottom:355.032657px;}
.y64_c00212{bottom:356.163822px;}
.y63_c00212{bottom:357.135035px;}
.y62_c00212{bottom:358.924166px;}
.y61_c00212{bottom:359.907455px;}
.y60_c00212{bottom:371.178933px;}
.y5f_c00212{bottom:371.827424px;}
.y5e_c00212{bottom:373.185672px;}
.y5d_c00212{bottom:374.066696px;}
.y5c_c00212{bottom:374.586320px;}
.y5b_c00212{bottom:375.266814px;}
.y5a_c00212{bottom:377.191023px;}
.y59_c00212{bottom:388.429786px;}
.y58_c00212{bottom:389.395262px;}
.y57_c00212{bottom:390.529135px;}
.y56_c00212{bottom:391.201944px;}
.y55_c00212{bottom:392.525385px;}
.y54_c00212{bottom:393.028598px;}
.y53_c00212{bottom:393.666000px;}
.y52_c00212{bottom:405.078072px;}
.y51_c00212{bottom:405.847248px;}
.y50_c00212{bottom:406.764378px;}
.y4f_c00212{bottom:408.007659px;}
.y4e_c00212{bottom:408.833835px;}
.y4d_c00212{bottom:409.711422px;}
.y4c_c00212{bottom:410.132010px;}
.y4b_c00212{bottom:422.029296px;}
.y4a_c00212{bottom:422.570322px;}
.y49_c00212{bottom:423.318816px;}
.y48_c00212{bottom:424.184112px;}
.y47_c00212{bottom:424.611900px;}
.y46_c00212{bottom:425.831733px;}
.y45_c00212{bottom:426.711690px;}
.y44_c00212{bottom:427.144500px;}
.y43_c00212{bottom:439.215429px;}
.y42_c00212{bottom:439.656231px;}
.y41_c00212{bottom:440.152059px;}
.y40_c00212{bottom:441.262137px;}
.y3f_c00212{bottom:441.679854px;}
.y3e_c00212{bottom:442.408827px;}
.y3d_c00212{bottom:443.210943px;}
.y3c_c00212{bottom:443.507430px;}
.y3b_c00212{bottom:444.153000px;}
.y3a_c00212{bottom:456.685830px;}
.y39_c00212{bottom:457.089930px;}
.y38_c00212{bottom:457.784550px;}
.y37_c00212{bottom:458.954640px;}
.y36_c00212{bottom:459.301830px;}
.y35_c00212{bottom:461.062860px;}
.y34_c00212{bottom:461.303070px;}
.y33_c00212{bottom:461.952030px;}
.y32_c00212{bottom:474.088110px;}
.y31_c00212{bottom:474.635160px;}
.y30_c00212{bottom:475.174560px;}
.y2f_c00212{bottom:475.559640px;}
.y2e_c00212{bottom:477.192450px;}
.y2d_c00212{bottom:478.698090px;}
.y2c_c00212{bottom:478.961430px;}
.y2b_c00212{bottom:491.370120px;}
.y2a_c00212{bottom:492.071970px;}
.y29_c00212{bottom:492.492810px;}
.y28_c00212{bottom:493.266420px;}
.y27_c00212{bottom:493.668180px;}
.y26_c00212{bottom:494.082600px;}
.y25_c00212{bottom:494.432550px;}
.y24_c00212{bottom:494.903340px;}
.y23_c00212{bottom:495.244020px;}
.y22_c00212{bottom:496.515060px;}
.y21_c00212{bottom:508.572450px;}
.y20_c00212{bottom:509.343210px;}
.y1f_c00212{bottom:510.129480px;}
.y1e_c00212{bottom:511.157940px;}
.y1d_c00212{bottom:511.596990px;}
.y1c_c00212{bottom:512.817900px;}
.y1b_c00212{bottom:513.526080px;}
.y1a_c00212{bottom:525.648300px;}
.y19_c00212{bottom:526.141560px;}
.y18_c00212{bottom:526.473000px;}
.y17_c00212{bottom:527.402670px;}
.y16_c00212{bottom:528.428070px;}
.y15_c00212{bottom:528.592080px;}
.y14_c00212{bottom:529.230810px;}
.y13_c00212{bottom:529.464270px;}
.y12_c00212{bottom:530.524290px;}
.y11_c00212{bottom:530.811060px;}
.y10_c00212{bottom:543.917460px;}
.yf_c00212{bottom:544.789470px;}
.ye_c00212{bottom:545.134230px;}
.yd_c00212{bottom:545.488620px;}
.yc_c00212{bottom:546.246360px;}
.yb_c00212{bottom:546.625530px;}
.ya_c00212{bottom:547.733400px;}
.y9_c00212{bottom:548.094780px;}
.y8_c00212{bottom:560.796660px;}
.y7_c00212{bottom:561.345450px;}
.y6_c00212{bottom:562.156530px;}
.y5_c00212{bottom:562.542120px;}
.y4_c00212{bottom:563.577150px;}
.y3_c00212{bottom:564.256440px;}
.y2_c00212{bottom:565.921050px;}
.y1_c00212{bottom:580.234500px;}
.h18_c00212{height:46.177472px;}
.h1a_c00212{height:52.485429px;}
.h20_c00212{height:54.573485px;}
.h1b_c00212{height:54.584846px;}
.h1d_c00212{height:57.725162px;}
.h2_c00212{height:57.761549px;}
.h8_c00212{height:58.809525px;}
.h16_c00212{height:59.820816px;}
.hc_c00212{height:59.863195px;}
.h11_c00212{height:59.871811px;}
.h14_c00212{height:60.870304px;}
.he_c00212{height:60.913427px;}
.h17_c00212{height:61.919792px;}
.h1e_c00212{height:61.919916px;}
.h10_c00212{height:61.972577px;}
.h15_c00212{height:62.969280px;}
.h1f_c00212{height:62.969406px;}
.h9_c00212{height:63.010205px;}
.h4_c00212{height:63.012599px;}
.hb_c00212{height:63.013890px;}
.h19_c00212{height:64.018768px;}
.hf_c00212{height:64.073342px;}
.h1c_c00212{height:65.072001px;}
.hd_c00212{height:65.114353px;}
.h7_c00212{height:66.163229px;}
.ha_c00212{height:67.210886px;}
.h6_c00212{height:68.263649px;}
.h3_c00212{height:69.313859px;}
.h13_c00212{height:70.375638px;}
.h12_c00212{height:71.426021px;}
.h5_c00212{height:74.564909px;}
.h0_c00212{height:623.100000px;}
.h1_c00212{height:623.250000px;}
.w0_c00212{width:366.390000px;}
.w1_c00212{width:366.750000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:34.827540px;}
.x3e_c00212{left:35.984025px;}
.x6e_c00212{left:37.234277px;}
.x87_c00212{left:39.119326px;}
.x2e_c00212{left:43.030500px;}
.x44_c00212{left:44.283000px;}
.x67_c00212{left:45.615000px;}
.x10_c00212{left:50.539170px;}
.x9_c00212{left:55.929870px;}
.x3f_c00212{left:58.099620px;}
.x4f_c00212{left:60.969000px;}
.x54_c00212{left:62.313525px;}
.x7b_c00212{left:63.891957px;}
.x37_c00212{left:67.282500px;}
.x28_c00212{left:68.698560px;}
.x45_c00212{left:74.635500px;}
.x19_c00212{left:76.239960px;}
.x2f_c00212{left:78.895500px;}
.x29_c00212{left:81.309300px;}
.x4d_c00212{left:86.472717px;}
.x4b_c00212{left:90.018403px;}
.x30_c00212{left:95.367000px;}
.x65_c00212{left:96.603571px;}
.x46_c00212{left:98.598000px;}
.x1e_c00212{left:101.992920px;}
.x40_c00212{left:104.270283px;}
.x75_c00212{left:106.045134px;}
.x11_c00212{left:109.392510px;}
.x81_c00212{left:111.737781px;}
.x38_c00212{left:116.169000px;}
.x4e_c00212{left:118.312981px;}
.x1f_c00212{left:119.927280px;}
.xa_c00212{left:121.077270px;}
.x12_c00212{left:122.341020px;}
.x6f_c00212{left:123.992285px;}
.x55_c00212{left:125.217726px;}
.x3_c00212{left:127.286730px;}
.x6b_c00212{left:128.824005px;}
.x50_c00212{left:130.507500px;}
.x27_c00212{left:133.698210px;}
.x7e_c00212{left:135.087660px;}
.x60_c00212{left:138.471346px;}
.x31_c00212{left:139.929000px;}
.x79_c00212{left:141.634446px;}
.xb_c00212{left:143.412120px;}
.x20_c00212{left:144.742290px;}
.x1a_c00212{left:148.089780px;}
.x56_c00212{left:149.537874px;}
.x84_c00212{left:154.291545px;}
.x70_c00212{left:155.438771px;}
.x6c_c00212{left:156.559353px;}
.x13_c00212{left:157.803930px;}
.x49_c00212{left:159.203661px;}
.x51_c00212{left:160.365000px;}
.x47_c00212{left:161.619000px;}
.x21_c00212{left:163.140150px;}
.x4_c00212{left:165.002730px;}
.x14_c00212{left:166.904790px;}
.x1b_c00212{left:173.943840px;}
.x5c_c00212{left:175.459459px;}
.x1_c00212{left:176.898000px;}
.x32_c00212{left:180.427500px;}
.x61_c00212{left:182.752282px;}
.x39_c00212{left:183.937500px;}
.x22_c00212{left:184.986600px;}
.xc_c00212{left:187.976790px;}
.x4c_c00212{left:189.435672px;}
.x2a_c00212{left:192.272520px;}
.x48_c00212{left:193.657500px;}
.x7f_c00212{left:194.813469px;}
.x71_c00212{left:195.944036px;}
.x76_c00212{left:197.616557px;}
.x6d_c00212{left:200.272791px;}
.x33_c00212{left:203.634000px;}
.x23_c00212{left:206.125020px;}
.x3a_c00212{left:207.703500px;}
.xd_c00212{left:208.847550px;}
.x68_c00212{left:210.863586px;}
.x41_c00212{left:213.154812px;}
.x5d_c00212{left:215.153313px;}
.x52_c00212{left:219.502500px;}
.x62_c00212{left:220.702204px;}
.x5_c00212{left:222.531540px;}
.x15_c00212{left:223.877070px;}
.x4a_c00212{left:225.901161px;}
.xe_c00212{left:229.086750px;}
.x85_c00212{left:230.090643px;}
.x59_c00212{left:231.118443px;}
.x1c_c00212{left:234.445470px;}
.x69_c00212{left:238.215707px;}
.x7c_c00212{left:240.349323px;}
.x57_c00212{left:241.499344px;}
.x80_c00212{left:242.792319px;}
.x6_c00212{left:243.911880px;}
.x24_c00212{left:246.831330px;}
.x82_c00212{left:250.971951px;}
.x2b_c00212{left:253.853250px;}
.x3b_c00212{left:255.775500px;}
.x5a_c00212{left:257.713360px;}
.x63_c00212{left:259.726045px;}
.x42_c00212{left:261.438948px;}
.x89_c00212{left:263.295015px;}
.x34_c00212{left:265.305000px;}
.x25_c00212{left:268.998780px;}
.x7d_c00212{left:270.602539px;}
.x16_c00212{left:275.537640px;}
.x77_c00212{left:277.299621px;}
.x53_c00212{left:278.494500px;}
.xf_c00212{left:280.340310px;}
.x72_c00212{left:282.932813px;}
.x64_c00212{left:284.283561px;}
.x7_c00212{left:288.967680px;}
.x2c_c00212{left:290.384970px;}
.x5e_c00212{left:291.589182px;}
.x35_c00212{left:292.851000px;}
.x17_c00212{left:293.910360px;}
.x5b_c00212{left:295.537885px;}
.x3c_c00212{left:297.358500px;}
.x73_c00212{left:298.939224px;}
.x43_c00212{left:301.920219px;}
.x78_c00212{left:303.879108px;}
.x26_c00212{left:305.967030px;}
.x83_c00212{left:308.380857px;}
.x86_c00212{left:309.804396px;}
.x2d_c00212{left:311.640390px;}
.x5f_c00212{left:313.210507px;}
.x7a_c00212{left:314.340243px;}
.x36_c00212{left:317.340000px;}
.x8_c00212{left:319.483410px;}
.x18_c00212{left:321.349470px;}
.x6a_c00212{left:322.650188px;}
.x58_c00212{left:324.570072px;}
.x1d_c00212{left:326.027460px;}
.x3d_c00212{left:327.415500px;}
.x74_c00212{left:329.356385px;}
.x88_c00212{left:331.265230px;}
.x66_c00212{left:353.239680px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.fs16_c00212{font-size:41.046642pt;}
.fs18_c00212{font-size:46.653715pt;}
.fs1e_c00212{font-size:48.509765pt;}
.fs19_c00212{font-size:48.519863pt;}
.fs1b_c00212{font-size:51.311255pt;}
.fs0_c00212{font-size:51.343599pt;}
.fs6_c00212{font-size:52.275133pt;}
.fs14_c00212{font-size:53.174059pt;}
.fsa_c00212{font-size:53.211729pt;}
.fsf_c00212{font-size:53.219388pt;}
.fs12_c00212{font-size:54.106937pt;}
.fsc_c00212{font-size:54.145268pt;}
.fs15_c00212{font-size:55.039815pt;}
.fs1c_c00212{font-size:55.039925pt;}
.fse_c00212{font-size:55.086735pt;}
.fs13_c00212{font-size:55.972693pt;}
.fs1d_c00212{font-size:55.972805pt;}
.fs7_c00212{font-size:56.009071pt;}
.fs2_c00212{font-size:56.011199pt;}
.fs9_c00212{font-size:56.012347pt;}
.fs17_c00212{font-size:56.905572pt;}
.fsd_c00212{font-size:56.954082pt;}
.fs1a_c00212{font-size:57.841779pt;}
.fsb_c00212{font-size:57.879425pt;}
.fs5_c00212{font-size:58.811759pt;}
.fs8_c00212{font-size:59.743009pt;}
.fs4_c00212{font-size:60.678799pt;}
.fs1_c00212{font-size:61.612319pt;}
.fs11_c00212{font-size:62.556123pt;}
.fs10_c00212{font-size:63.489796pt;}
.fs3_c00212{font-size:66.279919pt;}
.y0_c00212{bottom:0.000000pt;}
.yfb_c00212{bottom:9.510708pt;}
.yfa_c00212{bottom:15.010076pt;}
.yf9_c00212{bottom:16.348201pt;}
.yf8_c00212{bottom:20.477119pt;}
.yf7_c00212{bottom:29.290323pt;}
.yf6_c00212{bottom:30.484571pt;}
.yf5_c00212{bottom:31.700923pt;}
.yf4_c00212{bottom:32.191088pt;}
.yf3_c00212{bottom:35.699013pt;}
.yf2_c00212{bottom:38.293327pt;}
.yf1_c00212{bottom:39.603940pt;}
.yf0_c00212{bottom:40.540480pt;}
.yef_c00212{bottom:43.317100pt;}
.yee_c00212{bottom:44.453327pt;}
.yed_c00212{bottom:45.417660pt;}
.yec_c00212{bottom:48.110753pt;}
.yeb_c00212{bottom:48.742667pt;}
.yea_c00212{bottom:53.267539pt;}
.ye9_c00212{bottom:55.671763pt;}
.ye8_c00212{bottom:56.845821pt;}
.ye7_c00212{bottom:58.853925pt;}
.ye6_c00212{bottom:61.503149pt;}
.ye5_c00212{bottom:62.588853pt;}
.ye4_c00212{bottom:64.583043pt;}
.ye3_c00212{bottom:67.490165pt;}
.ye2_c00212{bottom:69.496384pt;}
.ye1_c00212{bottom:71.178251pt;}
.ye0_c00212{bottom:71.889451pt;}
.ydf_c00212{bottom:73.587744pt;}
.ydb_c00212{bottom:74.642331pt;}
.yde_c00212{bottom:74.868427pt;}
.ydd_c00212{bottom:76.656245pt;}
.ydc_c00212{bottom:79.705333pt;}
.yda_c00212{bottom:85.990171pt;}
.yd9_c00212{bottom:86.845779pt;}
.yd8_c00212{bottom:87.868688pt;}
.yd7_c00212{bottom:89.517787pt;}
.yd6_c00212{bottom:90.592477pt;}
.yd5_c00212{bottom:93.834992pt;}
.yd4_c00212{bottom:94.816000pt;}
.yd3_c00212{bottom:100.416045pt;}
.yd2_c00212{bottom:100.798612pt;}
.yd1_c00212{bottom:102.183060pt;}
.yd0_c00212{bottom:102.823083pt;}
.ycf_c00212{bottom:104.565464pt;}
.yce_c00212{bottom:105.866644pt;}
.ycd_c00212{bottom:106.295149pt;}
.ycc_c00212{bottom:107.083039pt;}
.ycb_c00212{bottom:116.736972pt;}
.yca_c00212{bottom:117.352431pt;}
.yc9_c00212{bottom:118.459469pt;}
.yc8_c00212{bottom:118.919224pt;}
.yc7_c00212{bottom:119.195896pt;}
.yc6_c00212{bottom:121.315189pt;}
.yc5_c00212{bottom:122.915131pt;}
.yc4_c00212{bottom:130.674325pt;}
.yc3_c00212{bottom:131.033035pt;}
.yc2_c00212{bottom:131.921371pt;}
.yc1_c00212{bottom:132.362193pt;}
.yc0_c00212{bottom:133.037493pt;}
.ybf_c00212{bottom:133.347759pt;}
.ybe_c00212{bottom:133.945217pt;}
.ybd_c00212{bottom:146.184315pt;}
.ybc_c00212{bottom:147.158383pt;}
.ybb_c00212{bottom:147.671467pt;}
.yba_c00212{bottom:149.922385pt;}
.yb9_c00212{bottom:150.457632pt;}
.yb8_c00212{bottom:151.754939pt;}
.yb7_c00212{bottom:152.291849pt;}
.yb6_c00212{bottom:152.762315pt;}
.yb5_c00212{bottom:154.559939pt;}
.yb4_c00212{bottom:155.541909pt;}
.yb3_c00212{bottom:161.132368pt;}
.yb2_c00212{bottom:162.251087pt;}
.yb1_c00212{bottom:163.110359pt;}
.yb0_c00212{bottom:163.560044pt;}
.yaf_c00212{bottom:164.494019pt;}
.yae_c00212{bottom:165.086387pt;}
.yad_c00212{bottom:166.501076pt;}
.yac_c00212{bottom:167.056109pt;}
.yab_c00212{bottom:175.960000pt;}
.yaa_c00212{bottom:176.447083pt;}
.ya9_c00212{bottom:177.910464pt;}
.ya8_c00212{bottom:178.364096pt;}
.ya7_c00212{bottom:179.142891pt;}
.ya6_c00212{bottom:180.618901pt;}
.ya5_c00212{bottom:181.774485pt;}
.ya4_c00212{bottom:182.363072pt;}
.ya3_c00212{bottom:183.848000pt;}
.ya2_c00212{bottom:190.776700pt;}
.ya1_c00212{bottom:192.205639pt;}
.ya0_c00212{bottom:193.291149pt;}
.y9f_c00212{bottom:195.143405pt;}
.y9e_c00212{bottom:195.756456pt;}
.y9d_c00212{bottom:197.393633pt;}
.y9c_c00212{bottom:198.941452pt;}
.y9b_c00212{bottom:207.912257pt;}
.y9a_c00212{bottom:208.567019pt;}
.y99_c00212{bottom:209.607667pt;}
.y98_c00212{bottom:210.619872pt;}
.y97_c00212{bottom:211.800033pt;}
.y96_c00212{bottom:212.386892pt;}
.y95_c00212{bottom:213.824696pt;}
.y94_c00212{bottom:214.543220pt;}
.y93_c00212{bottom:222.766671pt;}
.y92_c00212{bottom:223.324277pt;}
.y91_c00212{bottom:224.772477pt;}
.y90_c00212{bottom:225.294837pt;}
.y8f_c00212{bottom:226.318208pt;}
.y8e_c00212{bottom:227.111847pt;}
.y8d_c00212{bottom:227.634207pt;}
.y8c_c00212{bottom:228.607893pt;}
.y8b_c00212{bottom:229.074449pt;}
.y8a_c00212{bottom:229.907367pt;}
.y89_c00212{bottom:238.292877pt;}
.y88_c00212{bottom:238.770163pt;}
.y87_c00212{bottom:239.611236pt;}
.y86_c00212{bottom:240.202813pt;}
.y85_c00212{bottom:241.139207pt;}
.y84_c00212{bottom:242.375636pt;}
.y83_c00212{bottom:243.015665pt;}
.y82_c00212{bottom:244.554579pt;}
.y81_c00212{bottom:253.728795pt;}
.y80_c00212{bottom:255.015061pt;}
.y7f_c00212{bottom:255.649105pt;}
.y7e_c00212{bottom:255.988284pt;}
.y7d_c00212{bottom:257.774788pt;}
.y7c_c00212{bottom:258.337123pt;}
.y7b_c00212{bottom:259.790783pt;}
.y7a_c00212{bottom:260.402291pt;}
.y79_c00212{bottom:269.506952pt;}
.y78_c00212{bottom:269.882828pt;}
.y77_c00212{bottom:270.547388pt;}
.y76_c00212{bottom:271.963196pt;}
.y75_c00212{bottom:273.382496pt;}
.y74_c00212{bottom:274.099076pt;}
.y73_c00212{bottom:274.354136pt;}
.y72_c00212{bottom:275.768000pt;}
.y71_c00212{bottom:288.918491pt;}
.y70_c00212{bottom:289.225275pt;}
.y6f_c00212{bottom:290.391272pt;}
.y6e_c00212{bottom:299.976429pt;}
.y6d_c00212{bottom:300.509997pt;}
.y6c_c00212{bottom:301.249564pt;}
.y6b_c00212{bottom:302.117365pt;}
.y6a_c00212{bottom:302.582308pt;}
.y69_c00212{bottom:303.038504pt;}
.y68_c00212{bottom:303.726872pt;}
.y67_c00212{bottom:303.941869pt;}
.y66_c00212{bottom:304.796080pt;}
.y65_c00212{bottom:315.584584pt;}
.y64_c00212{bottom:316.590064pt;}
.y63_c00212{bottom:317.453364pt;}
.y62_c00212{bottom:319.043703pt;}
.y61_c00212{bottom:319.917737pt;}
.y60_c00212{bottom:329.936829pt;}
.y5f_c00212{bottom:330.513265pt;}
.y5e_c00212{bottom:331.720597pt;}
.y5d_c00212{bottom:332.503729pt;}
.y5c_c00212{bottom:332.965617pt;}
.y5b_c00212{bottom:333.570501pt;}
.y5a_c00212{bottom:335.280909pt;}
.y59_c00212{bottom:345.270921pt;}
.y58_c00212{bottom:346.129121pt;}
.y57_c00212{bottom:347.137009pt;}
.y56_c00212{bottom:347.735061pt;}
.y55_c00212{bottom:348.911453pt;}
.y54_c00212{bottom:349.358753pt;}
.y53_c00212{bottom:349.925333pt;}
.y52_c00212{bottom:360.069397pt;}
.y51_c00212{bottom:360.753109pt;}
.y50_c00212{bottom:361.568336pt;}
.y4f_c00212{bottom:362.673475pt;}
.y4e_c00212{bottom:363.407853pt;}
.y4d_c00212{bottom:364.187931pt;}
.y4c_c00212{bottom:364.561787pt;}
.y4b_c00212{bottom:375.137152pt;}
.y4a_c00212{bottom:375.618064pt;}
.y49_c00212{bottom:376.283392pt;}
.y48_c00212{bottom:377.052544pt;}
.y47_c00212{bottom:377.432800pt;}
.y46_c00212{bottom:378.517096pt;}
.y45_c00212{bottom:379.299280pt;}
.y44_c00212{bottom:379.684000pt;}
.y43_c00212{bottom:390.413715pt;}
.y42_c00212{bottom:390.805539pt;}
.y41_c00212{bottom:391.246275pt;}
.y40_c00212{bottom:392.233011pt;}
.y3f_c00212{bottom:392.604315pt;}
.y3e_c00212{bottom:393.252291pt;}
.y3d_c00212{bottom:393.965283pt;}
.y3c_c00212{bottom:394.228827pt;}
.y3b_c00212{bottom:394.802667pt;}
.y3a_c00212{bottom:405.942960pt;}
.y39_c00212{bottom:406.302160pt;}
.y38_c00212{bottom:406.919600pt;}
.y37_c00212{bottom:407.959680pt;}
.y36_c00212{bottom:408.268293pt;}
.y35_c00212{bottom:409.833653pt;}
.y34_c00212{bottom:410.047173pt;}
.y33_c00212{bottom:410.624027pt;}
.y32_c00212{bottom:421.411653pt;}
.y31_c00212{bottom:421.897920pt;}
.y30_c00212{bottom:422.377387pt;}
.y2f_c00212{bottom:422.719680pt;}
.y2e_c00212{bottom:424.171067pt;}
.y2d_c00212{bottom:425.509413pt;}
.y2c_c00212{bottom:425.743493pt;}
.y2b_c00212{bottom:436.773440pt;}
.y2a_c00212{bottom:437.397307pt;}
.y29_c00212{bottom:437.771387pt;}
.y28_c00212{bottom:438.459040pt;}
.y27_c00212{bottom:438.816160pt;}
.y26_c00212{bottom:439.184533pt;}
.y25_c00212{bottom:439.495600pt;}
.y24_c00212{bottom:439.914080pt;}
.y23_c00212{bottom:440.216907pt;}
.y22_c00212{bottom:441.346720pt;}
.y21_c00212{bottom:452.064400pt;}
.y20_c00212{bottom:452.749520pt;}
.y1f_c00212{bottom:453.448427pt;}
.y1e_c00212{bottom:454.362613pt;}
.y1d_c00212{bottom:454.752880pt;}
.y1c_c00212{bottom:455.838133pt;}
.y1b_c00212{bottom:456.467627pt;}
.y1a_c00212{bottom:467.242933pt;}
.y19_c00212{bottom:467.681387pt;}
.y18_c00212{bottom:467.976000pt;}
.y17_c00212{bottom:468.802373pt;}
.y16_c00212{bottom:469.713840pt;}
.y15_c00212{bottom:469.859627pt;}
.y14_c00212{bottom:470.427387pt;}
.y13_c00212{bottom:470.634907pt;}
.y12_c00212{bottom:471.577147pt;}
.y11_c00212{bottom:471.832053pt;}
.y10_c00212{bottom:483.482187pt;}
.yf_c00212{bottom:484.257307pt;}
.ye_c00212{bottom:484.563760pt;}
.yd_c00212{bottom:484.878773pt;}
.yc_c00212{bottom:485.552320pt;}
.yb_c00212{bottom:485.889360pt;}
.ya_c00212{bottom:486.874133pt;}
.y9_c00212{bottom:487.195360pt;}
.y8_c00212{bottom:498.485920pt;}
.y7_c00212{bottom:498.973733pt;}
.y6_c00212{bottom:499.694693pt;}
.y5_c00212{bottom:500.037440pt;}
.y4_c00212{bottom:500.957467pt;}
.y3_c00212{bottom:501.561280pt;}
.y2_c00212{bottom:503.040933pt;}
.y1_c00212{bottom:515.764000pt;}
.h18_c00212{height:41.046642pt;}
.h1a_c00212{height:46.653715pt;}
.h20_c00212{height:48.509765pt;}
.h1b_c00212{height:48.519863pt;}
.h1d_c00212{height:51.311255pt;}
.h2_c00212{height:51.343599pt;}
.h8_c00212{height:52.275133pt;}
.h16_c00212{height:53.174059pt;}
.hc_c00212{height:53.211729pt;}
.h11_c00212{height:53.219388pt;}
.h14_c00212{height:54.106937pt;}
.he_c00212{height:54.145268pt;}
.h17_c00212{height:55.039815pt;}
.h1e_c00212{height:55.039925pt;}
.h10_c00212{height:55.086735pt;}
.h15_c00212{height:55.972693pt;}
.h1f_c00212{height:55.972805pt;}
.h9_c00212{height:56.009071pt;}
.h4_c00212{height:56.011199pt;}
.hb_c00212{height:56.012347pt;}
.h19_c00212{height:56.905572pt;}
.hf_c00212{height:56.954082pt;}
.h1c_c00212{height:57.841779pt;}
.hd_c00212{height:57.879425pt;}
.h7_c00212{height:58.811759pt;}
.ha_c00212{height:59.743009pt;}
.h6_c00212{height:60.678799pt;}
.h3_c00212{height:61.612319pt;}
.h13_c00212{height:62.556123pt;}
.h12_c00212{height:63.489796pt;}
.h5_c00212{height:66.279919pt;}
.h0_c00212{height:553.866667pt;}
.h1_c00212{height:554.000000pt;}
.w0_c00212{width:325.680000pt;}
.w1_c00212{width:326.000000pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:30.957813pt;}
.x3e_c00212{left:31.985800pt;}
.x6e_c00212{left:33.097135pt;}
.x87_c00212{left:34.772735pt;}
.x2e_c00212{left:38.249333pt;}
.x44_c00212{left:39.362667pt;}
.x67_c00212{left:40.546667pt;}
.x10_c00212{left:44.923707pt;}
.x9_c00212{left:49.715440pt;}
.x3f_c00212{left:51.644107pt;}
.x4f_c00212{left:54.194667pt;}
.x54_c00212{left:55.389800pt;}
.x7b_c00212{left:56.792851pt;}
.x37_c00212{left:59.806667pt;}
.x28_c00212{left:61.065387pt;}
.x45_c00212{left:66.342667pt;}
.x19_c00212{left:67.768853pt;}
.x2f_c00212{left:70.129333pt;}
.x29_c00212{left:72.274933pt;}
.x4d_c00212{left:76.864637pt;}
.x4b_c00212{left:80.016359pt;}
.x30_c00212{left:84.770667pt;}
.x65_c00212{left:85.869841pt;}
.x46_c00212{left:87.642667pt;}
.x1e_c00212{left:90.660373pt;}
.x40_c00212{left:92.684696pt;}
.x75_c00212{left:94.262341pt;}
.x11_c00212{left:97.237787pt;}
.x81_c00212{left:99.322472pt;}
.x38_c00212{left:103.261333pt;}
.x4e_c00212{left:105.167095pt;}
.x1f_c00212{left:106.602027pt;}
.xa_c00212{left:107.624240pt;}
.x12_c00212{left:108.747573pt;}
.x6f_c00212{left:110.215364pt;}
.x55_c00212{left:111.304645pt;}
.x3_c00212{left:113.143760pt;}
.x6b_c00212{left:114.510227pt;}
.x50_c00212{left:116.006667pt;}
.x27_c00212{left:118.842853pt;}
.x7e_c00212{left:120.077920pt;}
.x60_c00212{left:123.085641pt;}
.x31_c00212{left:124.381333pt;}
.x79_c00212{left:125.897285pt;}
.xb_c00212{left:127.477440pt;}
.x20_c00212{left:128.659813pt;}
.x1a_c00212{left:131.635360pt;}
.x56_c00212{left:132.922555pt;}
.x84_c00212{left:137.148040pt;}
.x70_c00212{left:138.167796pt;}
.x6c_c00212{left:139.163869pt;}
.x13_c00212{left:140.270160pt;}
.x49_c00212{left:141.514365pt;}
.x51_c00212{left:142.546667pt;}
.x47_c00212{left:143.661333pt;}
.x21_c00212{left:145.013467pt;}
.x4_c00212{left:146.669093pt;}
.x14_c00212{left:148.359813pt;}
.x1b_c00212{left:154.616747pt;}
.x5c_c00212{left:155.963964pt;}
.x1_c00212{left:157.242667pt;}
.x32_c00212{left:160.380000pt;}
.x61_c00212{left:162.446473pt;}
.x39_c00212{left:163.500000pt;}
.x22_c00212{left:164.432533pt;}
.xc_c00212{left:167.090480pt;}
.x4c_c00212{left:168.387264pt;}
.x2a_c00212{left:170.908907pt;}
.x48_c00212{left:172.140000pt;}
.x7f_c00212{left:173.167528pt;}
.x71_c00212{left:174.172476pt;}
.x76_c00212{left:175.659161pt;}
.x6d_c00212{left:178.020259pt;}
.x33_c00212{left:181.008000pt;}
.x23_c00212{left:183.222240pt;}
.x3a_c00212{left:184.625333pt;}
.xd_c00212{left:185.642267pt;}
.x68_c00212{left:187.434299pt;}
.x41_c00212{left:189.470944pt;}
.x5d_c00212{left:191.247389pt;}
.x52_c00212{left:195.113333pt;}
.x62_c00212{left:196.179737pt;}
.x5_c00212{left:197.805813pt;}
.x15_c00212{left:199.001840pt;}
.x4a_c00212{left:200.801032pt;}
.xe_c00212{left:203.632667pt;}
.x85_c00212{left:204.525016pt;}
.x59_c00212{left:205.438616pt;}
.x1c_c00212{left:208.395973pt;}
.x69_c00212{left:211.747295pt;}
.x7c_c00212{left:213.643843pt;}
.x57_c00212{left:214.666084pt;}
.x80_c00212{left:215.815395pt;}
.x6_c00212{left:216.810560pt;}
.x24_c00212{left:219.405627pt;}
.x82_c00212{left:223.086179pt;}
.x2b_c00212{left:225.647333pt;}
.x3b_c00212{left:227.356000pt;}
.x5a_c00212{left:229.078543pt;}
.x63_c00212{left:230.867596pt;}
.x42_c00212{left:232.390176pt;}
.x89_c00212{left:234.040013pt;}
.x34_c00212{left:235.826667pt;}
.x25_c00212{left:239.110027pt;}
.x7d_c00212{left:240.535591pt;}
.x16_c00212{left:244.922347pt;}
.x77_c00212{left:246.488552pt;}
.x53_c00212{left:247.550667pt;}
.xf_c00212{left:249.191387pt;}
.x72_c00212{left:251.495833pt;}
.x64_c00212{left:252.696499pt;}
.x7_c00212{left:256.860160pt;}
.x2c_c00212{left:258.119973pt;}
.x5e_c00212{left:259.190384pt;}
.x35_c00212{left:260.312000pt;}
.x17_c00212{left:261.253653pt;}
.x5b_c00212{left:262.700343pt;}
.x3c_c00212{left:264.318667pt;}
.x73_c00212{left:265.723755pt;}
.x43_c00212{left:268.373528pt;}
.x78_c00212{left:270.114763pt;}
.x26_c00212{left:271.970693pt;}
.x83_c00212{left:274.116317pt;}
.x86_c00212{left:275.381685pt;}
.x2d_c00212{left:277.013680pt;}
.x5f_c00212{left:278.409340pt;}
.x7a_c00212{left:279.413549pt;}
.x36_c00212{left:282.080000pt;}
.x8_c00212{left:283.985253pt;}
.x18_c00212{left:285.643973pt;}
.x6a_c00212{left:286.800167pt;}
.x58_c00212{left:288.506731pt;}
.x1d_c00212{left:289.802187pt;}
.x3d_c00212{left:291.036000pt;}
.x74_c00212{left:292.761231pt;}
.x88_c00212{left:294.457983pt;}
.x66_c00212{left:313.990827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00213 {
    display:none;
  }
  .loading-indicator_c00213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00213 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00213 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00213" -> "#page-container .classname_c00213")
 */
.pf_c00213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00213 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00213 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00213 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00213 {overflow:visible;}
  }
}
.c_c00213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00213 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00213:after { /* webkit #35443 */
  content: '';
}
.t_c00213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00213 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00213 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00213 { /* info for Javascript */
  display:none;
}
.l_c00213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00213:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00213 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00213.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc4_c00213{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.mc7_c00213{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.m7f_c00213{transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.md5_c00213{transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144905,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.145390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145390,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.146670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146670,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);}
.m90_c00213{transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);}
.me4_c00213{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.mb8_c00213{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.mc8_c00213{transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.me7_c00213{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);}
.m76_c00213{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.mf2_c00213{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m64_c00213{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m6c_c00213{transform:matrix(0.169057,-0.001691,0.002500,0.249988,0,0);-ms-transform:matrix(0.169057,-0.001691,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169057,-0.001691,0.002500,0.249988,0,0);}
.m26_c00213{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m98_c00213{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m9a_c00213{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m67_c00213{transform:matrix(0.170456,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170456,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170456,-0.001705,0.002500,0.249988,0,0);}
.mac_c00213{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m95_c00213{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.mf4_c00213{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);}
.ma8_c00213{transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);}
.m72_c00213{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);}
.mc2_c00213{transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00213{transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175130,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.me1_c00213{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.ma0_c00213{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m73_c00213{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);}
.m86_c00213{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mea_c00213{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m85_c00213{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00213{transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);}
.ma9_c00213{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m68_c00213{transform:matrix(0.179691,-0.001797,0.002500,0.249988,0,0);-ms-transform:matrix(0.179691,-0.001797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179691,-0.001797,0.002500,0.249988,0,0);}
.m60_c00213{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00213{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.ma6_c00213{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.mc1_c00213{transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m8f_c00213{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.mc5_c00213{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.mec_c00213{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);}
.m88_c00213{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.mcf_c00213{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m8b_c00213{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.md7_c00213{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.mc9_c00213{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.mda_c00213{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m4d_c00213{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.mf6_c00213{transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184335,0.000000,0.000000,0.250000,0,0);}
.me9_c00213{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.mc3_c00213{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.mbe_c00213{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.mdb_c00213{transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185445,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);}
.m5c_c00213{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m77_c00213{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.me6_c00213{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.mf0_c00213{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m5a_c00213{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.mbb_c00213{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.mef_c00213{transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);}
.mb9_c00213{transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);}
.m9c_c00213{transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);}
.mf5_c00213{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.md8_c00213{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);}
.m66_c00213{transform:matrix(0.192750,-0.001928,0.002500,0.249988,0,0);-ms-transform:matrix(0.192750,-0.001928,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192750,-0.001928,0.002500,0.249988,0,0);}
.m46_c00213{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mbf_c00213{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.m94_c00213{transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00213{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m8e_c00213{transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196485,0.000000,0.000000,0.250000,0,0);}
.m74_c00213{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.mc6_c00213{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.me0_c00213{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);}
.m92_c00213{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.meb_c00213{transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m6f_c00213{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.m36_c00213{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.ma7_c00213{transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);}
.m81_c00213{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mdc_c00213{transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);}
.m6b_c00213{transform:matrix(0.200445,-0.002004,0.002500,0.249988,0,0);-ms-transform:matrix(0.200445,-0.002004,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200445,-0.002004,0.002500,0.249988,0,0);}
.m5f_c00213{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.mf1_c00213{transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);}
.maf_c00213{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.mf8_c00213{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m75_c00213{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00213{transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202165,0.000000,0.000000,0.250000,0,0);}
.mdf_c00213{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m79_c00213{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.mc0_c00213{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m83_c00213{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m69_c00213{transform:matrix(0.204305,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204305,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204305,-0.002043,0.002500,0.249988,0,0);}
.m78_c00213{transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);}
.mf9_c00213{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.med_c00213{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m84_c00213{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.m8a_c00213{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.m87_c00213{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m50_c00213{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.mf3_c00213{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m6d_c00213{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.m58_c00213{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00213{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.m71_c00213{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);}
.md2_c00213{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.md4_c00213{transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.md6_c00213{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.md3_c00213{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.mee_c00213{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.mad_c00213{transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);}
.me2_c00213{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.mde_c00213{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.ma2_c00213{transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);}
.md1_c00213{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.me5_c00213{transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);}
.m8c_c00213{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mab_c00213{transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);}
.me8_c00213{transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.mb5_c00213{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.mca_c00213{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);}
.mdd_c00213{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m70_c00213{transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);}
.md9_c00213{transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.mb2_c00213{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);}
.m59_c00213{transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219470,0.000000,0.000000,0.250000,0,0);}
.md0_c00213{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.m6a_c00213{transform:matrix(0.220249,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220249,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220249,-0.002202,0.002500,0.249988,0,0);}
.m80_c00213{transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);}
.mae_c00213{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m9d_c00213{transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);}
.ma1_c00213{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.221930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221930,0.000000,0.000000,0.250000,0,0);}
.mbd_c00213{transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);}
.mba_c00213{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m96_c00213{transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);}
.mb6_c00213{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);}
.mf7_c00213{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m7e_c00213{transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);}
.mbc_c00213{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.mb3_c00213{transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);}
.m5d_c00213{transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);}
.m5b_c00213{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m7b_c00213{transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233380,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.me3_c00213{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m7d_c00213{transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.m62_c00213{transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00213{transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239685,0.000000,0.000000,0.250000,0,0);}
.m5e_c00213{transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.mce_c00213{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m82_c00213{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.mb7_c00213{transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00213{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.mcb_c00213{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m65_c00213{transform:matrix(0.269627,-0.002696,0.002500,0.249988,0,0);-ms-transform:matrix(0.269627,-0.002696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269627,-0.002696,0.002500,0.249988,0,0);}
.m57_c00213{transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);}
.mcd_c00213{transform:matrix(0.543960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543960,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:0.000000px;}
.fc0_c00213{color:transparent;}
.fs7_c00213{font-size:58.800000px;}
.fs0_c00213{font-size:59.850000px;}
.fsc_c00213{font-size:60.900000px;}
.fs1_c00213{font-size:61.950000px;}
.fs9_c00213{font-size:61.953097px;}
.fsb_c00213{font-size:63.000000px;}
.fs5_c00213{font-size:64.050000px;}
.fs2_c00213{font-size:66.150000px;}
.fs8_c00213{font-size:69.300000px;}
.fs3_c00213{font-size:70.350000px;}
.fsa_c00213{font-size:71.400000px;}
.fs4_c00213{font-size:72.450000px;}
.fs6_c00213{font-size:73.500000px;}
.y0_c00213{bottom:0.000000px;}
.y53_c00213{bottom:27.258000px;}
.y4c_c00213{bottom:43.468500px;}
.y4d_c00213{bottom:44.172000px;}
.y4e_c00213{bottom:44.379000px;}
.y4f_c00213{bottom:45.253500px;}
.y50_c00213{bottom:45.505500px;}
.y51_c00213{bottom:45.768000px;}
.y52_c00213{bottom:46.633500px;}
.y44_c00213{bottom:60.477000px;}
.y45_c00213{bottom:60.786000px;}
.y46_c00213{bottom:61.015500px;}
.y47_c00213{bottom:61.776000px;}
.y48_c00213{bottom:62.182500px;}
.y49_c00213{bottom:62.433000px;}
.y4a_c00213{bottom:63.054000px;}
.y4b_c00213{bottom:63.715500px;}
.y3a_c00213{bottom:77.487000px;}
.y3b_c00213{bottom:77.814000px;}
.y3c_c00213{bottom:78.070500px;}
.y3d_c00213{bottom:78.394500px;}
.y3e_c00213{bottom:78.871500px;}
.y3f_c00213{bottom:79.489500px;}
.y40_c00213{bottom:79.677000px;}
.y41_c00213{bottom:80.104500px;}
.y42_c00213{bottom:80.383500px;}
.y43_c00213{bottom:80.604000px;}
.y31_c00213{bottom:95.040000px;}
.y32_c00213{bottom:95.700000px;}
.y33_c00213{bottom:96.243000px;}
.y34_c00213{bottom:96.948000px;}
.y35_c00213{bottom:97.155000px;}
.y36_c00213{bottom:97.756500px;}
.y37_c00213{bottom:98.064000px;}
.y38_c00213{bottom:98.959500px;}
.y39_c00213{bottom:99.429000px;}
.y2a_c00213{bottom:112.860000px;}
.y2b_c00213{bottom:113.134500px;}
.y2c_c00213{bottom:114.001500px;}
.y2d_c00213{bottom:114.591000px;}
.y2e_c00213{bottom:114.810000px;}
.y2f_c00213{bottom:115.702500px;}
.y30_c00213{bottom:116.646000px;}
.y22_c00213{bottom:129.331500px;}
.y23_c00213{bottom:129.931500px;}
.y24_c00213{bottom:130.554000px;}
.y25_c00213{bottom:131.073000px;}
.y26_c00213{bottom:131.302500px;}
.y27_c00213{bottom:131.881500px;}
.y28_c00213{bottom:132.057000px;}
.y29_c00213{bottom:132.333000px;}
.y21_c00213{bottom:149.875500px;}
.y20_c00213{bottom:167.740500px;}
.y1f_c00213{bottom:184.512000px;}
.y1e_c00213{bottom:201.136500px;}
.y1d_c00213{bottom:219.310500px;}
.y1c_c00213{bottom:236.589000px;}
.y1b_c00213{bottom:255.031500px;}
.y1a_c00213{bottom:271.467000px;}
.y19_c00213{bottom:288.432000px;}
.y18_c00213{bottom:304.965000px;}
.y17_c00213{bottom:322.452000px;}
.y16_c00213{bottom:339.949500px;}
.ye_c00213{bottom:355.581000px;}
.yf_c00213{bottom:355.782765px;}
.y10_c00213{bottom:356.309190px;}
.y11_c00213{bottom:356.531145px;}
.y12_c00213{bottom:356.730990px;}
.y13_c00213{bottom:357.319620px;}
.y14_c00213{bottom:357.656940px;}
.y15_c00213{bottom:358.318455px;}
.yd_c00213{bottom:373.932000px;}
.yc_c00213{bottom:391.717500px;}
.yb_c00213{bottom:409.386000px;}
.ya_c00213{bottom:426.753000px;}
.y9_c00213{bottom:444.339000px;}
.y8_c00213{bottom:460.773000px;}
.y7_c00213{bottom:477.979500px;}
.y6_c00213{bottom:495.052500px;}
.y5_c00213{bottom:513.040500px;}
.y4_c00213{bottom:531.126000px;}
.y3_c00213{bottom:547.480500px;}
.y2_c00213{bottom:564.901500px;}
.y1_c00213{bottom:581.850000px;}
.h9_c00213{height:58.800000px;}
.h2_c00213{height:59.850000px;}
.he_c00213{height:60.900000px;}
.h3_c00213{height:61.950000px;}
.hb_c00213{height:61.953097px;}
.hd_c00213{height:63.000000px;}
.h7_c00213{height:64.050000px;}
.h4_c00213{height:66.150000px;}
.ha_c00213{height:69.300000px;}
.h5_c00213{height:70.350000px;}
.hc_c00213{height:71.400000px;}
.h6_c00213{height:72.450000px;}
.h8_c00213{height:73.500000px;}
.h0_c00213{height:623.100000px;}
.h1_c00213{height:623.250000px;}
.w0_c00213{width:366.390000px;}
.w1_c00213{width:366.750000px;}
.x0_c00213{left:0.000000px;}
.x81_c00213{left:22.279500px;}
.x85_c00213{left:24.837000px;}
.x7c_c00213{left:26.592000px;}
.x78_c00213{left:27.637500px;}
.x6b_c00213{left:28.890000px;}
.x47_c00213{left:30.148500px;}
.x3c_c00213{left:32.400000px;}
.xa_c00213{left:33.750000px;}
.x59_c00213{left:45.900000px;}
.x71_c00213{left:48.600000px;}
.x48_c00213{left:50.325000px;}
.xb_c00213{left:52.650000px;}
.x7d_c00213{left:53.823000px;}
.x86_c00213{left:55.077000px;}
.x3d_c00213{left:56.160000px;}
.x2_c00213{left:58.320000px;}
.x61_c00213{left:60.480000px;}
.x4f_c00213{left:61.560000px;}
.x2e_c00213{left:64.260000px;}
.x66_c00213{left:65.610000px;}
.x12_c00213{left:67.770000px;}
.xc_c00213{left:70.740000px;}
.x37_c00213{left:75.870000px;}
.x3_c00213{left:80.190000px;}
.x75_c00213{left:82.530000px;}
.x54_c00213{left:83.970000px;}
.x13_c00213{left:86.130000px;}
.x50_c00213{left:89.910000px;}
.x19_c00213{left:92.880000px;}
.x5d_c00213{left:96.390000px;}
.x41_c00213{left:99.090000px;}
.x72_c00213{left:100.170000px;}
.x6c_c00213{left:101.790000px;}
.x49_c00213{left:102.967500px;}
.xd_c00213{left:105.300000px;}
.x38_c00213{left:107.460000px;}
.x27_c00213{left:108.540000px;}
.x20_c00213{left:109.890000px;}
.x42_c00213{left:114.480000px;}
.x79_c00213{left:115.485000px;}
.x44_c00213{left:116.640000px;}
.x2f_c00213{left:118.800000px;}
.x28_c00213{left:121.500000px;}
.x67_c00213{left:123.390000px;}
.x4a_c00213{left:125.163000px;}
.x3e_c00213{left:127.170000px;}
.x39_c00213{left:128.520000px;}
.x58_c00213{left:135.810000px;}
.x4_c00213{left:139.590000px;}
.x7e_c00213{left:141.931500px;}
.x4b_c00213{left:145.147500px;}
.x14_c00213{left:148.230000px;}
.xe_c00213{left:151.200000px;}
.x51_c00213{left:153.630000px;}
.x1a_c00213{left:155.250000px;}
.x5e_c00213{left:158.760000px;}
.x5_c00213{left:160.110000px;}
.x5a_c00213{left:161.190000px;}
.x6e_c00213{left:163.890000px;}
.x87_c00213{left:165.237000px;}
.x29_c00213{left:166.590000px;}
.x15_c00213{left:167.940000px;}
.xf_c00213{left:170.910000px;}
.x3f_c00213{left:172.530000px;}
.x1_c00213{left:173.610000px;}
.x1b_c00213{left:174.690000px;}
.x6_c00213{left:176.580000px;}
.x21_c00213{left:177.660000px;}
.x5f_c00213{left:179.010000px;}
.x3a_c00213{left:180.090000px;}
.x2a_c00213{left:183.600000px;}
.x76_c00213{left:186.411000px;}
.x62_c00213{left:188.460000px;}
.x69_c00213{left:189.810000px;}
.x1c_c00213{left:192.240000px;}
.x7f_c00213{left:193.474500px;}
.x55_c00213{left:194.670000px;}
.x83_c00213{left:195.852000px;}
.x43_c00213{left:198.180000px;}
.x22_c00213{left:200.340000px;}
.x4c_c00213{left:204.010500px;}
.x77_c00213{left:207.246000px;}
.x7a_c00213{left:208.824000px;}
.x63_c00213{left:210.330000px;}
.x45_c00213{left:211.950000px;}
.x84_c00213{left:217.774500px;}
.x23_c00213{left:218.970000px;}
.x5b_c00213{left:220.320000px;}
.x10_c00213{left:221.400000px;}
.x2b_c00213{left:223.830000px;}
.x34_c00213{left:225.720000px;}
.x6f_c00213{left:227.880000px;}
.x7b_c00213{left:229.335000px;}
.x7_c00213{left:232.470000px;}
.x64_c00213{left:234.630000px;}
.x2c_c00213{left:236.520000px;}
.x4d_c00213{left:237.742500px;}
.x16_c00213{left:240.840000px;}
.x5c_c00213{left:242.730000px;}
.x6a_c00213{left:244.350000px;}
.x68_c00213{left:245.700000px;}
.x1d_c00213{left:248.400000px;}
.x30_c00213{left:250.830000px;}
.x24_c00213{left:252.450000px;}
.x8_c00213{left:254.070000px;}
.x70_c00213{left:255.150000px;}
.x82_c00213{left:256.371000px;}
.x40_c00213{left:258.390000px;}
.x52_c00213{left:259.740000px;}
.x17_c00213{left:261.630000px;}
.x31_c00213{left:266.490000px;}
.x73_c00213{left:268.650000px;}
.x25_c00213{left:269.730000px;}
.x35_c00213{left:272.700000px;}
.x9_c00213{left:275.400000px;}
.x56_c00213{left:278.100000px;}
.x3b_c00213{left:279.450000px;}
.x60_c00213{left:281.610000px;}
.x80_c00213{left:286.338000px;}
.x53_c00213{left:289.170000px;}
.x74_c00213{left:291.330000px;}
.x36_c00213{left:292.680000px;}
.x6d_c00213{left:293.760000px;}
.x32_c00213{left:301.590000px;}
.x4e_c00213{left:303.894000px;}
.x1e_c00213{left:305.370000px;}
.x57_c00213{left:307.530000px;}
.x46_c00213{left:308.610000px;}
.x26_c00213{left:313.200000px;}
.x18_c00213{left:314.550000px;}
.x2d_c00213{left:316.440000px;}
.x1f_c00213{left:319.140000px;}
.x11_c00213{left:321.030000px;}
.x33_c00213{left:323.730000px;}
.x65_c00213{left:327.240000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs7_c00213{font-size:52.266667pt;}
.fs0_c00213{font-size:53.200000pt;}
.fsc_c00213{font-size:54.133333pt;}
.fs1_c00213{font-size:55.066667pt;}
.fs9_c00213{font-size:55.069420pt;}
.fsb_c00213{font-size:56.000000pt;}
.fs5_c00213{font-size:56.933333pt;}
.fs2_c00213{font-size:58.800000pt;}
.fs8_c00213{font-size:61.600000pt;}
.fs3_c00213{font-size:62.533333pt;}
.fsa_c00213{font-size:63.466667pt;}
.fs4_c00213{font-size:64.400000pt;}
.fs6_c00213{font-size:65.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y53_c00213{bottom:24.229333pt;}
.y4c_c00213{bottom:38.638667pt;}
.y4d_c00213{bottom:39.264000pt;}
.y4e_c00213{bottom:39.448000pt;}
.y4f_c00213{bottom:40.225333pt;}
.y50_c00213{bottom:40.449333pt;}
.y51_c00213{bottom:40.682667pt;}
.y52_c00213{bottom:41.452000pt;}
.y44_c00213{bottom:53.757333pt;}
.y45_c00213{bottom:54.032000pt;}
.y46_c00213{bottom:54.236000pt;}
.y47_c00213{bottom:54.912000pt;}
.y48_c00213{bottom:55.273333pt;}
.y49_c00213{bottom:55.496000pt;}
.y4a_c00213{bottom:56.048000pt;}
.y4b_c00213{bottom:56.636000pt;}
.y3a_c00213{bottom:68.877333pt;}
.y3b_c00213{bottom:69.168000pt;}
.y3c_c00213{bottom:69.396000pt;}
.y3d_c00213{bottom:69.684000pt;}
.y3e_c00213{bottom:70.108000pt;}
.y3f_c00213{bottom:70.657333pt;}
.y40_c00213{bottom:70.824000pt;}
.y41_c00213{bottom:71.204000pt;}
.y42_c00213{bottom:71.452000pt;}
.y43_c00213{bottom:71.648000pt;}
.y31_c00213{bottom:84.480000pt;}
.y32_c00213{bottom:85.066667pt;}
.y33_c00213{bottom:85.549333pt;}
.y34_c00213{bottom:86.176000pt;}
.y35_c00213{bottom:86.360000pt;}
.y36_c00213{bottom:86.894667pt;}
.y37_c00213{bottom:87.168000pt;}
.y38_c00213{bottom:87.964000pt;}
.y39_c00213{bottom:88.381333pt;}
.y2a_c00213{bottom:100.320000pt;}
.y2b_c00213{bottom:100.564000pt;}
.y2c_c00213{bottom:101.334667pt;}
.y2d_c00213{bottom:101.858667pt;}
.y2e_c00213{bottom:102.053333pt;}
.y2f_c00213{bottom:102.846667pt;}
.y30_c00213{bottom:103.685333pt;}
.y22_c00213{bottom:114.961333pt;}
.y23_c00213{bottom:115.494667pt;}
.y24_c00213{bottom:116.048000pt;}
.y25_c00213{bottom:116.509333pt;}
.y26_c00213{bottom:116.713333pt;}
.y27_c00213{bottom:117.228000pt;}
.y28_c00213{bottom:117.384000pt;}
.y29_c00213{bottom:117.629333pt;}
.y21_c00213{bottom:133.222667pt;}
.y20_c00213{bottom:149.102667pt;}
.y1f_c00213{bottom:164.010667pt;}
.y1e_c00213{bottom:178.788000pt;}
.y1d_c00213{bottom:194.942667pt;}
.y1c_c00213{bottom:210.301333pt;}
.y1b_c00213{bottom:226.694667pt;}
.y1a_c00213{bottom:241.304000pt;}
.y19_c00213{bottom:256.384000pt;}
.y18_c00213{bottom:271.080000pt;}
.y17_c00213{bottom:286.624000pt;}
.y16_c00213{bottom:302.177333pt;}
.ye_c00213{bottom:316.072000pt;}
.yf_c00213{bottom:316.251347pt;}
.y10_c00213{bottom:316.719280pt;}
.y11_c00213{bottom:316.916573pt;}
.y12_c00213{bottom:317.094213pt;}
.y13_c00213{bottom:317.617440pt;}
.y14_c00213{bottom:317.917280pt;}
.y15_c00213{bottom:318.505293pt;}
.yd_c00213{bottom:332.384000pt;}
.yc_c00213{bottom:348.193333pt;}
.yb_c00213{bottom:363.898667pt;}
.ya_c00213{bottom:379.336000pt;}
.y9_c00213{bottom:394.968000pt;}
.y8_c00213{bottom:409.576000pt;}
.y7_c00213{bottom:424.870667pt;}
.y6_c00213{bottom:440.046667pt;}
.y5_c00213{bottom:456.036000pt;}
.y4_c00213{bottom:472.112000pt;}
.y3_c00213{bottom:486.649333pt;}
.y2_c00213{bottom:502.134667pt;}
.y1_c00213{bottom:517.200000pt;}
.h9_c00213{height:52.266667pt;}
.h2_c00213{height:53.200000pt;}
.he_c00213{height:54.133333pt;}
.h3_c00213{height:55.066667pt;}
.hb_c00213{height:55.069420pt;}
.hd_c00213{height:56.000000pt;}
.h7_c00213{height:56.933333pt;}
.h4_c00213{height:58.800000pt;}
.ha_c00213{height:61.600000pt;}
.h5_c00213{height:62.533333pt;}
.hc_c00213{height:63.466667pt;}
.h6_c00213{height:64.400000pt;}
.h8_c00213{height:65.333333pt;}
.h0_c00213{height:553.866667pt;}
.h1_c00213{height:554.000000pt;}
.w0_c00213{width:325.680000pt;}
.w1_c00213{width:326.000000pt;}
.x0_c00213{left:0.000000pt;}
.x81_c00213{left:19.804000pt;}
.x85_c00213{left:22.077333pt;}
.x7c_c00213{left:23.637333pt;}
.x78_c00213{left:24.566667pt;}
.x6b_c00213{left:25.680000pt;}
.x47_c00213{left:26.798667pt;}
.x3c_c00213{left:28.800000pt;}
.xa_c00213{left:30.000000pt;}
.x59_c00213{left:40.800000pt;}
.x71_c00213{left:43.200000pt;}
.x48_c00213{left:44.733333pt;}
.xb_c00213{left:46.800000pt;}
.x7d_c00213{left:47.842667pt;}
.x86_c00213{left:48.957333pt;}
.x3d_c00213{left:49.920000pt;}
.x2_c00213{left:51.840000pt;}
.x61_c00213{left:53.760000pt;}
.x4f_c00213{left:54.720000pt;}
.x2e_c00213{left:57.120000pt;}
.x66_c00213{left:58.320000pt;}
.x12_c00213{left:60.240000pt;}
.xc_c00213{left:62.880000pt;}
.x37_c00213{left:67.440000pt;}
.x3_c00213{left:71.280000pt;}
.x75_c00213{left:73.360000pt;}
.x54_c00213{left:74.640000pt;}
.x13_c00213{left:76.560000pt;}
.x50_c00213{left:79.920000pt;}
.x19_c00213{left:82.560000pt;}
.x5d_c00213{left:85.680000pt;}
.x41_c00213{left:88.080000pt;}
.x72_c00213{left:89.040000pt;}
.x6c_c00213{left:90.480000pt;}
.x49_c00213{left:91.526667pt;}
.xd_c00213{left:93.600000pt;}
.x38_c00213{left:95.520000pt;}
.x27_c00213{left:96.480000pt;}
.x20_c00213{left:97.680000pt;}
.x42_c00213{left:101.760000pt;}
.x79_c00213{left:102.653333pt;}
.x44_c00213{left:103.680000pt;}
.x2f_c00213{left:105.600000pt;}
.x28_c00213{left:108.000000pt;}
.x67_c00213{left:109.680000pt;}
.x4a_c00213{left:111.256000pt;}
.x3e_c00213{left:113.040000pt;}
.x39_c00213{left:114.240000pt;}
.x58_c00213{left:120.720000pt;}
.x4_c00213{left:124.080000pt;}
.x7e_c00213{left:126.161333pt;}
.x4b_c00213{left:129.020000pt;}
.x14_c00213{left:131.760000pt;}
.xe_c00213{left:134.400000pt;}
.x51_c00213{left:136.560000pt;}
.x1a_c00213{left:138.000000pt;}
.x5e_c00213{left:141.120000pt;}
.x5_c00213{left:142.320000pt;}
.x5a_c00213{left:143.280000pt;}
.x6e_c00213{left:145.680000pt;}
.x87_c00213{left:146.877333pt;}
.x29_c00213{left:148.080000pt;}
.x15_c00213{left:149.280000pt;}
.xf_c00213{left:151.920000pt;}
.x3f_c00213{left:153.360000pt;}
.x1_c00213{left:154.320000pt;}
.x1b_c00213{left:155.280000pt;}
.x6_c00213{left:156.960000pt;}
.x21_c00213{left:157.920000pt;}
.x5f_c00213{left:159.120000pt;}
.x3a_c00213{left:160.080000pt;}
.x2a_c00213{left:163.200000pt;}
.x76_c00213{left:165.698667pt;}
.x62_c00213{left:167.520000pt;}
.x69_c00213{left:168.720000pt;}
.x1c_c00213{left:170.880000pt;}
.x7f_c00213{left:171.977333pt;}
.x55_c00213{left:173.040000pt;}
.x83_c00213{left:174.090667pt;}
.x43_c00213{left:176.160000pt;}
.x22_c00213{left:178.080000pt;}
.x4c_c00213{left:181.342667pt;}
.x77_c00213{left:184.218667pt;}
.x7a_c00213{left:185.621333pt;}
.x63_c00213{left:186.960000pt;}
.x45_c00213{left:188.400000pt;}
.x84_c00213{left:193.577333pt;}
.x23_c00213{left:194.640000pt;}
.x5b_c00213{left:195.840000pt;}
.x10_c00213{left:196.800000pt;}
.x2b_c00213{left:198.960000pt;}
.x34_c00213{left:200.640000pt;}
.x6f_c00213{left:202.560000pt;}
.x7b_c00213{left:203.853333pt;}
.x7_c00213{left:206.640000pt;}
.x64_c00213{left:208.560000pt;}
.x2c_c00213{left:210.240000pt;}
.x4d_c00213{left:211.326667pt;}
.x16_c00213{left:214.080000pt;}
.x5c_c00213{left:215.760000pt;}
.x6a_c00213{left:217.200000pt;}
.x68_c00213{left:218.400000pt;}
.x1d_c00213{left:220.800000pt;}
.x30_c00213{left:222.960000pt;}
.x24_c00213{left:224.400000pt;}
.x8_c00213{left:225.840000pt;}
.x70_c00213{left:226.800000pt;}
.x82_c00213{left:227.885333pt;}
.x40_c00213{left:229.680000pt;}
.x52_c00213{left:230.880000pt;}
.x17_c00213{left:232.560000pt;}
.x31_c00213{left:236.880000pt;}
.x73_c00213{left:238.800000pt;}
.x25_c00213{left:239.760000pt;}
.x35_c00213{left:242.400000pt;}
.x9_c00213{left:244.800000pt;}
.x56_c00213{left:247.200000pt;}
.x3b_c00213{left:248.400000pt;}
.x60_c00213{left:250.320000pt;}
.x80_c00213{left:254.522667pt;}
.x53_c00213{left:257.040000pt;}
.x74_c00213{left:258.960000pt;}
.x36_c00213{left:260.160000pt;}
.x6d_c00213{left:261.120000pt;}
.x32_c00213{left:268.080000pt;}
.x4e_c00213{left:270.128000pt;}
.x1e_c00213{left:271.440000pt;}
.x57_c00213{left:273.360000pt;}
.x46_c00213{left:274.320000pt;}
.x26_c00213{left:278.400000pt;}
.x18_c00213{left:279.600000pt;}
.x2d_c00213{left:281.280000pt;}
.x1f_c00213{left:283.680000pt;}
.x11_c00213{left:285.360000pt;}
.x33_c00213{left:287.760000pt;}
.x65_c00213{left:290.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00214 {
    display:none;
  }
  .loading-indicator_c00214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00214 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00214 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00214" -> "#page-container .classname_c00214")
 */
.pf_c00214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00214 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00214 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00214 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00214 {overflow:visible;}
  }
}
.c_c00214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00214 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00214:after { /* webkit #35443 */
  content: '';
}
.t_c00214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00214 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00214 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00214 { /* info for Javascript */
  display:none;
}
.l_c00214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00214:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00214 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00214.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00214{transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);}
.me3_c00214{transform:matrix(0.102355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{transform:matrix(0.105865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105865,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);}
.me0_c00214{transform:matrix(0.140515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140515,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);}
.m8c_c00214{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.me2_c00214{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.mc0_c00214{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m6a_c00214{transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);}
.mbd_c00214{transform:matrix(0.158895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158895,0.000000,0.000000,0.250000,0,0);}
.m94_c00214{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00214{transform:matrix(0.160840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160840,0.000000,0.000000,0.250000,0,0);}
.m81_c00214{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m79_c00214{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m5e_c00214{transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.166840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166840,0.000000,0.000000,0.250000,0,0);}
.mdc_c00214{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.mad_c00214{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.mb4_c00214{transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);}
.m90_c00214{transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);}
.mac_c00214{transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);}
.mfe_c00214{transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00214{transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);}
.m95_c00214{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m38_c00214{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.mf5_c00214{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m87_c00214{transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);}
.m9f_c00214{transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m60_c00214{transform:matrix(0.176895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176895,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m3f_c00214{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.md7_c00214{transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);}
.m55_c00214{transform:matrix(0.178240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178240,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.mbe_c00214{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m7a_c00214{transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);}
.maf_c00214{transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);}
.mab_c00214{transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);}
.mc2_c00214{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.mf2_c00214{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{transform:matrix(0.181230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181230,0.000000,0.000000,0.250000,0,0);}
.m8f_c00214{transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);}
.ma9_c00214{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m25_c00214{transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182390,0.000000,0.000000,0.250000,0,0);}
.mff_c00214{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183060,0.000000,0.000000,0.250000,0,0);}
.m26_c00214{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m4e_c00214{transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);}
.md6_c00214{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.mb0_c00214{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.186860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186860,0.000000,0.000000,0.250000,0,0);}
.me9_c00214{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m27_c00214{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.mcd_c00214{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.md3_c00214{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.188415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188415,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);}
.mc5_c00214{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.m93_c00214{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.me4_c00214{transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);}
.m41_c00214{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m67_c00214{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.m75_c00214{transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192760,0.000000,0.000000,0.250000,0,0);}
.m73_c00214{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);}
.m52_c00214{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m84_c00214{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.m102_c00214{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.mc4_c00214{transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);}
.m8e_c00214{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.md5_c00214{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m6b_c00214{transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);}
.m70_c00214{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.me1_c00214{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m3e_c00214{transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00214{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.m54_c00214{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m100_c00214{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00214{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m98_c00214{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.m80_c00214{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mb1_c00214{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m85_c00214{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.mcf_c00214{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.mbc_c00214{transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);}
.m9d_c00214{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.mf6_c00214{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m63_c00214{transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.mb2_c00214{transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);}
.mae_c00214{transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);}
.mb3_c00214{transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);}
.m77_c00214{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.m91_c00214{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.me8_c00214{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.m72_c00214{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205070,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m66_c00214{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206690,0.000000,0.000000,0.250000,0,0);}
.ma3_c00214{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m88_c00214{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m64_c00214{transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m35_c00214{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);}
.mcc_c00214{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.mf1_c00214{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00214{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.mfb_c00214{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m71_c00214{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.m99_c00214{transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);}
.mbb_c00214{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m7c_c00214{transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);}
.md9_c00214{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.mee_c00214{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00214{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);}
.md8_c00214{transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00214{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.m56_c00214{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.m37_c00214{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);}
.m42_c00214{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.mcb_c00214{transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);}
.mf4_c00214{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.mc1_c00214{transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);}
.mfc_c00214{transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);}
.m8d_c00214{transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);}
.mf7_c00214{transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);}
.m82_c00214{transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);}
.mdd_c00214{transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);}
.md2_c00214{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.mfa_c00214{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00214{transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);}
.mb9_c00214{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00214{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m76_c00214{transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);}
.meb_c00214{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.mea_c00214{transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);}
.me7_c00214{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.m21_c00214{transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);}
.med_c00214{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m83_c00214{transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);}
.m2d_c00214{transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223285,0.000000,0.000000,0.250000,0,0);}
.mc8_c00214{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.mb8_c00214{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m89_c00214{transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);}
.ma2_c00214{transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224585,0.000000,0.000000,0.250000,0,0);}
.m28_c00214{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.ma8_c00214{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m7f_c00214{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m61_c00214{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.md4_c00214{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.md1_c00214{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m8b_c00214{transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.mc7_c00214{transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);}
.mef_c00214{transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);}
.mf8_c00214{transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);}
.m5a_c00214{transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);}
.m74_c00214{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234190,0.000000,0.000000,0.250000,0,0);}
.mb7_c00214{transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.mba_c00214{transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);}
.me5_c00214{transform:matrix(0.238285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238285,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m9c_c00214{transform:matrix(0.239870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239870,0.000000,0.000000,0.250000,0,0);}
.ma5_c00214{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m6d_c00214{transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);}
.md0_c00214{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.mf0_c00214{transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);}
.mec_c00214{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m57_c00214{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.256840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256840,0.000000,0.000000,0.250000,0,0);}
.mde_c00214{transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);}
.me6_c00214{transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);}
.mf9_c00214{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.mdb_c00214{transform:matrix(0.264585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264585,0.000000,0.000000,0.250000,0,0);}
.m33_c00214{transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);}
.mca_c00214{transform:matrix(0.267780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267780,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);}
.mc6_c00214{transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);}
.mce_c00214{transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);}
.m101_c00214{transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);}
.mda_c00214{transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);}
.m6f_c00214{transform:matrix(0.306040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306040,0.000000,0.000000,0.250000,0,0);}
.ma1_c00214{transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);}
.ma4_c00214{transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);}
.m103_c00214{transform:matrix(0.352195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352195,0.000000,0.000000,0.250000,0,0);}
.mb5_c00214{transform:matrix(0.399420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399420,0.000000,0.000000,0.250000,0,0);}
.mc9_c00214{transform:matrix(0.635500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635500,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:0.000000px;}
.fc0_c00214{color:transparent;}
.fsd_c00214{font-size:57.750000px;}
.fs9_c00214{font-size:58.800000px;}
.fse_c00214{font-size:59.850000px;}
.fs8_c00214{font-size:60.900000px;}
.fs0_c00214{font-size:61.950000px;}
.fs4_c00214{font-size:63.000000px;}
.fs5_c00214{font-size:64.050000px;}
.fs3_c00214{font-size:65.100000px;}
.fsa_c00214{font-size:66.150000px;}
.fs6_c00214{font-size:67.200000px;}
.fsb_c00214{font-size:68.250000px;}
.fs7_c00214{font-size:69.300000px;}
.fsc_c00214{font-size:70.350000px;}
.fs1_c00214{font-size:74.550000px;}
.fs2_c00214{font-size:76.650000px;}
.y0_c00214{bottom:0.000000px;}
.yeb_c00214{bottom:22.740000px;}
.yea_c00214{bottom:24.219000px;}
.ye9_c00214{bottom:24.643500px;}
.ye8_c00214{bottom:25.108500px;}
.ye7_c00214{bottom:26.622000px;}
.ye6_c00214{bottom:27.274500px;}
.ye5_c00214{bottom:40.324500px;}
.ye4_c00214{bottom:41.848500px;}
.ye3_c00214{bottom:43.861500px;}
.ye2_c00214{bottom:44.436000px;}
.ye1_c00214{bottom:45.361500px;}
.ye0_c00214{bottom:46.909500px;}
.ydf_c00214{bottom:47.257500px;}
.yde_c00214{bottom:57.258000px;}
.ydd_c00214{bottom:58.636500px;}
.ydc_c00214{bottom:59.335500px;}
.ydb_c00214{bottom:59.967000px;}
.yda_c00214{bottom:60.886500px;}
.yd9_c00214{bottom:61.752000px;}
.yd8_c00214{bottom:62.634000px;}
.yd7_c00214{bottom:64.273500px;}
.yd6_c00214{bottom:74.143500px;}
.yd5_c00214{bottom:74.790000px;}
.yd4_c00214{bottom:75.133500px;}
.yd3_c00214{bottom:75.882000px;}
.yd2_c00214{bottom:76.308000px;}
.yd1_c00214{bottom:77.535000px;}
.yd0_c00214{bottom:77.961000px;}
.ycf_c00214{bottom:78.499500px;}
.yce_c00214{bottom:79.653000px;}
.ycd_c00214{bottom:91.471500px;}
.ycc_c00214{bottom:92.380500px;}
.ycb_c00214{bottom:92.983500px;}
.yca_c00214{bottom:93.736500px;}
.yc9_c00214{bottom:94.237500px;}
.yc8_c00214{bottom:95.790000px;}
.yc7_c00214{bottom:96.363000px;}
.yc6_c00214{bottom:98.508000px;}
.yc5_c00214{bottom:99.100500px;}
.yc4_c00214{bottom:110.161500px;}
.yc3_c00214{bottom:110.655000px;}
.yc2_c00214{bottom:111.232500px;}
.yc1_c00214{bottom:112.878000px;}
.yc0_c00214{bottom:115.234500px;}
.ybf_c00214{bottom:117.189000px;}
.ybe_c00214{bottom:126.168000px;}
.ybd_c00214{bottom:127.585500px;}
.ybc_c00214{bottom:128.607000px;}
.ybb_c00214{bottom:130.687500px;}
.yba_c00214{bottom:131.274000px;}
.yb9_c00214{bottom:132.546000px;}
.yb8_c00214{bottom:133.522500px;}
.yb7_c00214{bottom:134.275500px;}
.yb6_c00214{bottom:135.553500px;}
.yb5_c00214{bottom:144.256500px;}
.yb4_c00214{bottom:144.459000px;}
.yb3_c00214{bottom:144.750000px;}
.yb2_c00214{bottom:145.204500px;}
.yb1_c00214{bottom:145.434000px;}
.yb0_c00214{bottom:145.816500px;}
.yaf_c00214{bottom:146.172000px;}
.yae_c00214{bottom:146.416500px;}
.yad_c00214{bottom:146.953500px;}
.yac_c00214{bottom:147.153000px;}
.yab_c00214{bottom:162.561000px;}
.yaa_c00214{bottom:178.729500px;}
.ya9_c00214{bottom:180.111000px;}
.ya8_c00214{bottom:180.501000px;}
.ya7_c00214{bottom:180.985500px;}
.ya6_c00214{bottom:181.242000px;}
.ya5_c00214{bottom:182.199000px;}
.ya4_c00214{bottom:182.727000px;}
.ya3_c00214{bottom:183.331500px;}
.ya2_c00214{bottom:195.546000px;}
.ya1_c00214{bottom:195.979500px;}
.ya0_c00214{bottom:196.425000px;}
.y9f_c00214{bottom:196.954500px;}
.y9e_c00214{bottom:197.277000px;}
.y9d_c00214{bottom:197.995500px;}
.y9c_c00214{bottom:198.894000px;}
.y9b_c00214{bottom:199.551000px;}
.y9a_c00214{bottom:199.914000px;}
.y99_c00214{bottom:200.610000px;}
.y98_c00214{bottom:212.097000px;}
.y97_c00214{bottom:212.619000px;}
.y96_c00214{bottom:212.943000px;}
.y95_c00214{bottom:213.988500px;}
.y94_c00214{bottom:214.545000px;}
.y93_c00214{bottom:215.041500px;}
.y92_c00214{bottom:215.613000px;}
.y91_c00214{bottom:216.354000px;}
.y90_c00214{bottom:216.948000px;}
.y8f_c00214{bottom:218.221500px;}
.y8e_c00214{bottom:218.431500px;}
.y8d_c00214{bottom:229.963500px;}
.y8c_c00214{bottom:230.584500px;}
.y8b_c00214{bottom:232.263000px;}
.y8a_c00214{bottom:233.032500px;}
.y89_c00214{bottom:233.610000px;}
.y88_c00214{bottom:234.094500px;}
.y87_c00214{bottom:234.783000px;}
.y86_c00214{bottom:235.728000px;}
.y85_c00214{bottom:236.523000px;}
.y84_c00214{bottom:247.741500px;}
.y83_c00214{bottom:248.091000px;}
.y82_c00214{bottom:248.613000px;}
.y81_c00214{bottom:249.292500px;}
.y80_c00214{bottom:249.954000px;}
.y7f_c00214{bottom:250.393500px;}
.y7e_c00214{bottom:251.529000px;}
.y7d_c00214{bottom:252.294000px;}
.y7c_c00214{bottom:252.729000px;}
.y7b_c00214{bottom:253.263000px;}
.y7a_c00214{bottom:266.608500px;}
.y79_c00214{bottom:266.956500px;}
.y78_c00214{bottom:267.898500px;}
.y77_c00214{bottom:268.242000px;}
.y76_c00214{bottom:268.668000px;}
.y75_c00214{bottom:269.161500px;}
.y74_c00214{bottom:269.782500px;}
.y73_c00214{bottom:270.139500px;}
.y72_c00214{bottom:270.811500px;}
.y71_c00214{bottom:283.411500px;}
.y70_c00214{bottom:283.986000px;}
.y6f_c00214{bottom:285.283500px;}
.y6e_c00214{bottom:285.645000px;}
.y6d_c00214{bottom:286.042500px;}
.y6c_c00214{bottom:287.637000px;}
.y6b_c00214{bottom:287.976000px;}
.y6a_c00214{bottom:288.361500px;}
.y69_c00214{bottom:301.323000px;}
.y68_c00214{bottom:302.557500px;}
.y67_c00214{bottom:303.039000px;}
.y66_c00214{bottom:303.417000px;}
.y65_c00214{bottom:304.978500px;}
.y64_c00214{bottom:305.211000px;}
.y63_c00214{bottom:305.911500px;}
.y62_c00214{bottom:319.095000px;}
.y61_c00214{bottom:319.458000px;}
.y60_c00214{bottom:320.169000px;}
.y5f_c00214{bottom:320.872500px;}
.y5e_c00214{bottom:321.298500px;}
.y5d_c00214{bottom:321.661500px;}
.y5c_c00214{bottom:321.877500px;}
.y5b_c00214{bottom:322.872000px;}
.y5a_c00214{bottom:323.190000px;}
.y59_c00214{bottom:336.390000px;}
.y58_c00214{bottom:337.221000px;}
.y57_c00214{bottom:337.302000px;}
.y56_c00214{bottom:337.893000px;}
.y55_c00214{bottom:338.233500px;}
.y54_c00214{bottom:338.452500px;}
.y53_c00214{bottom:339.000000px;}
.y52_c00214{bottom:339.184500px;}
.y51_c00214{bottom:339.390000px;}
.y50_c00214{bottom:352.297500px;}
.y4f_c00214{bottom:353.077500px;}
.y4e_c00214{bottom:354.472500px;}
.y4d_c00214{bottom:354.888000px;}
.y4c_c00214{bottom:355.491000px;}
.y4b_c00214{bottom:356.671500px;}
.y4a_c00214{bottom:370.522500px;}
.y49_c00214{bottom:370.797000px;}
.y48_c00214{bottom:371.662500px;}
.y47_c00214{bottom:372.219000px;}
.y46_c00214{bottom:372.738000px;}
.y45_c00214{bottom:373.048500px;}
.y44_c00214{bottom:373.408500px;}
.y43_c00214{bottom:386.289000px;}
.y42_c00214{bottom:386.575500px;}
.y41_c00214{bottom:386.718000px;}
.y40_c00214{bottom:387.247500px;}
.y3f_c00214{bottom:387.628500px;}
.y3e_c00214{bottom:388.455000px;}
.y3d_c00214{bottom:388.701000px;}
.y3c_c00214{bottom:389.340000px;}
.y3b_c00214{bottom:405.064500px;}
.y3a_c00214{bottom:406.356000px;}
.y39_c00214{bottom:406.705500px;}
.y38_c00214{bottom:407.299500px;}
.y37_c00214{bottom:407.428500px;}
.y36_c00214{bottom:420.501000px;}
.y35_c00214{bottom:421.336500px;}
.y34_c00214{bottom:421.918500px;}
.y33_c00214{bottom:422.143500px;}
.y32_c00214{bottom:422.377500px;}
.y31_c00214{bottom:422.529000px;}
.y30_c00214{bottom:423.055500px;}
.y2f_c00214{bottom:423.189000px;}
.y2e_c00214{bottom:423.628500px;}
.y2d_c00214{bottom:438.397500px;}
.y2c_c00214{bottom:438.573000px;}
.y2b_c00214{bottom:439.083000px;}
.y2a_c00214{bottom:439.461000px;}
.y29_c00214{bottom:439.561500px;}
.y28_c00214{bottom:440.107500px;}
.y27_c00214{bottom:440.536500px;}
.y26_c00214{bottom:441.012000px;}
.y25_c00214{bottom:441.180000px;}
.y24_c00214{bottom:455.598000px;}
.y23_c00214{bottom:455.848500px;}
.y22_c00214{bottom:456.334500px;}
.y21_c00214{bottom:456.552000px;}
.y20_c00214{bottom:456.790500px;}
.y1f_c00214{bottom:457.131000px;}
.y1e_c00214{bottom:457.326000px;}
.y1d_c00214{bottom:458.256000px;}
.y1c_c00214{bottom:459.001500px;}
.y1b_c00214{bottom:473.814000px;}
.y1a_c00214{bottom:491.101500px;}
.y19_c00214{bottom:507.774000px;}
.y18_c00214{bottom:508.387500px;}
.y17_c00214{bottom:508.570500px;}
.y16_c00214{bottom:509.211000px;}
.y15_c00214{bottom:509.386500px;}
.y14_c00214{bottom:509.707500px;}
.y13_c00214{bottom:509.886000px;}
.y12_c00214{bottom:510.301500px;}
.y11_c00214{bottom:524.742000px;}
.y10_c00214{bottom:525.430500px;}
.yf_c00214{bottom:525.771000px;}
.ye_c00214{bottom:526.020000px;}
.yd_c00214{bottom:526.354500px;}
.yc_c00214{bottom:526.921500px;}
.yb_c00214{bottom:527.583000px;}
.ya_c00214{bottom:543.685500px;}
.y9_c00214{bottom:559.587000px;}
.y8_c00214{bottom:560.562000px;}
.y7_c00214{bottom:560.856000px;}
.y6_c00214{bottom:561.741000px;}
.y5_c00214{bottom:562.021500px;}
.y4_c00214{bottom:562.383000px;}
.y3_c00214{bottom:562.789500px;}
.y2_c00214{bottom:563.221500px;}
.y1_c00214{bottom:578.067000px;}
.hf_c00214{height:57.750000px;}
.hb_c00214{height:58.800000px;}
.h10_c00214{height:59.850000px;}
.ha_c00214{height:60.900000px;}
.h2_c00214{height:61.950000px;}
.h6_c00214{height:63.000000px;}
.h7_c00214{height:64.050000px;}
.h5_c00214{height:65.100000px;}
.hc_c00214{height:66.150000px;}
.h8_c00214{height:67.200000px;}
.hd_c00214{height:68.250000px;}
.h9_c00214{height:69.300000px;}
.he_c00214{height:70.350000px;}
.h3_c00214{height:74.550000px;}
.h4_c00214{height:76.650000px;}
.h0_c00214{height:623.100000px;}
.h1_c00214{height:623.250000px;}
.w0_c00214{width:366.390000px;}
.w1_c00214{width:366.750000px;}
.x0_c00214{left:0.000000px;}
.x36_c00214{left:34.174500px;}
.x14_c00214{left:35.277000px;}
.x2_c00214{left:36.348000px;}
.x3d_c00214{left:39.034500px;}
.x74_c00214{left:41.038500px;}
.x62_c00214{left:43.998000px;}
.x66_c00214{left:47.314500px;}
.x3e_c00214{left:48.997500px;}
.x85_c00214{left:50.311500px;}
.xa_c00214{left:52.110000px;}
.x75_c00214{left:53.458500px;}
.x1c_c00214{left:54.540000px;}
.x23_c00214{left:55.620000px;}
.x53_c00214{left:58.164000px;}
.x41_c00214{left:60.054000px;}
.x48_c00214{left:64.393500px;}
.x3_c00214{left:69.573000px;}
.x88_c00214{left:70.747500px;}
.x72_c00214{left:72.127500px;}
.x37_c00214{left:74.127000px;}
.x24_c00214{left:75.870000px;}
.x15_c00214{left:76.876500px;}
.x63_c00214{left:78.583500px;}
.x38_c00214{left:86.272500px;}
.x49_c00214{left:90.322500px;}
.x16_c00214{left:94.699500px;}
.x29_c00214{left:96.522000px;}
.x2f_c00214{left:98.973000px;}
.x4_c00214{left:100.894500px;}
.xe_c00214{left:101.943000px;}
.x4d_c00214{left:103.503000px;}
.x7f_c00214{left:109.021500px;}
.x1d_c00214{left:110.160000px;}
.x42_c00214{left:113.275500px;}
.x64_c00214{left:119.658000px;}
.x3f_c00214{left:121.626000px;}
.x79_c00214{left:125.718000px;}
.x17_c00214{left:126.777000px;}
.x5_c00214{left:128.700000px;}
.x7d_c00214{left:130.324500px;}
.x6d_c00214{left:131.821500px;}
.x39_c00214{left:134.113500px;}
.x1e_c00214{left:135.270000px;}
.x76_c00214{left:137.698500px;}
.x4e_c00214{left:138.958500px;}
.x67_c00214{left:140.670000px;}
.x30_c00214{left:141.901500px;}
.x18_c00214{left:144.330000px;}
.xb_c00214{left:146.340000px;}
.x3a_c00214{left:147.882000px;}
.x6_c00214{left:150.237000px;}
.x86_c00214{left:156.136500px;}
.xf_c00214{left:158.637000px;}
.x77_c00214{left:159.838500px;}
.x5b_c00214{left:162.318000px;}
.x1f_c00214{left:163.620000px;}
.x25_c00214{left:165.240000px;}
.x3b_c00214{left:169.156500px;}
.x1_c00214{left:170.910000px;}
.x2a_c00214{left:174.010500px;}
.x68_c00214{left:177.699000px;}
.x58_c00214{left:178.843500px;}
.x4a_c00214{left:179.962500px;}
.x6e_c00214{left:181.770000px;}
.x26_c00214{left:183.060000px;}
.x51_c00214{left:184.320000px;}
.x5c_c00214{left:187.420500px;}
.x2b_c00214{left:190.207500px;}
.x10_c00214{left:192.114000px;}
.x57_c00214{left:194.697000px;}
.x31_c00214{left:196.444500px;}
.x59_c00214{left:197.908500px;}
.x54_c00214{left:200.995500px;}
.x43_c00214{left:202.687500px;}
.x87_c00214{left:204.616500px;}
.x32_c00214{left:206.439000px;}
.x19_c00214{left:208.357500px;}
.x5e_c00214{left:210.355500px;}
.x7a_c00214{left:213.714000px;}
.x11_c00214{left:216.984000px;}
.x7_c00214{left:218.332500px;}
.x40_c00214{left:220.983000px;}
.x80_c00214{left:223.855500px;}
.x78_c00214{left:224.908500px;}
.x1a_c00214{left:226.680000px;}
.x20_c00214{left:229.500000px;}
.x69_c00214{left:231.082500px;}
.x44_c00214{left:234.484500px;}
.xc_c00214{left:235.980000px;}
.x83_c00214{left:237.124500px;}
.x2c_c00214{left:238.465500px;}
.x6f_c00214{left:239.623500px;}
.x8_c00214{left:240.960000px;}
.x3c_c00214{left:242.593500px;}
.x33_c00214{left:244.234500px;}
.x4f_c00214{left:245.490000px;}
.x21_c00214{left:247.320000px;}
.x12_c00214{left:250.977000px;}
.x4b_c00214{left:252.106500px;}
.x7e_c00214{left:253.393500px;}
.x7b_c00214{left:255.022500px;}
.xd_c00214{left:256.770000px;}
.x6a_c00214{left:258.882000px;}
.x27_c00214{left:262.980000px;}
.x5a_c00214{left:266.235000px;}
.x70_c00214{left:269.064000px;}
.x81_c00214{left:272.131500px;}
.x4c_c00214{left:275.001000px;}
.x84_c00214{left:276.531000px;}
.x45_c00214{left:278.559000px;}
.x5f_c00214{left:280.912500px;}
.x5d_c00214{left:283.554000px;}
.x22_c00214{left:284.580000px;}
.x1b_c00214{left:287.967000px;}
.x46_c00214{left:290.373000px;}
.x50_c00214{left:291.381000px;}
.x71_c00214{left:293.808000px;}
.x34_c00214{left:295.260000px;}
.x2d_c00214{left:297.124500px;}
.x7c_c00214{left:299.838000px;}
.x55_c00214{left:301.954500px;}
.x73_c00214{left:307.330500px;}
.x60_c00214{left:308.365500px;}
.x6b_c00214{left:311.166000px;}
.x35_c00214{left:312.805500px;}
.x47_c00214{left:314.188500px;}
.x9_c00214{left:316.014000px;}
.x2e_c00214{left:317.944500px;}
.x13_c00214{left:319.768500px;}
.x28_c00214{left:323.190000px;}
.x61_c00214{left:326.728500px;}
.x56_c00214{left:327.925500px;}
.x65_c00214{left:329.217000px;}
.x82_c00214{left:330.237000px;}
.x52_c00214{left:334.684500px;}
.x6c_c00214{left:353.467500px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.fsd_c00214{font-size:51.333333pt;}
.fs9_c00214{font-size:52.266667pt;}
.fse_c00214{font-size:53.200000pt;}
.fs8_c00214{font-size:54.133333pt;}
.fs0_c00214{font-size:55.066667pt;}
.fs4_c00214{font-size:56.000000pt;}
.fs5_c00214{font-size:56.933333pt;}
.fs3_c00214{font-size:57.866667pt;}
.fsa_c00214{font-size:58.800000pt;}
.fs6_c00214{font-size:59.733333pt;}
.fsb_c00214{font-size:60.666667pt;}
.fs7_c00214{font-size:61.600000pt;}
.fsc_c00214{font-size:62.533333pt;}
.fs1_c00214{font-size:66.266667pt;}
.fs2_c00214{font-size:68.133333pt;}
.y0_c00214{bottom:0.000000pt;}
.yeb_c00214{bottom:20.213333pt;}
.yea_c00214{bottom:21.528000pt;}
.ye9_c00214{bottom:21.905333pt;}
.ye8_c00214{bottom:22.318667pt;}
.ye7_c00214{bottom:23.664000pt;}
.ye6_c00214{bottom:24.244000pt;}
.ye5_c00214{bottom:35.844000pt;}
.ye4_c00214{bottom:37.198667pt;}
.ye3_c00214{bottom:38.988000pt;}
.ye2_c00214{bottom:39.498667pt;}
.ye1_c00214{bottom:40.321333pt;}
.ye0_c00214{bottom:41.697333pt;}
.ydf_c00214{bottom:42.006667pt;}
.yde_c00214{bottom:50.896000pt;}
.ydd_c00214{bottom:52.121333pt;}
.ydc_c00214{bottom:52.742667pt;}
.ydb_c00214{bottom:53.304000pt;}
.yda_c00214{bottom:54.121333pt;}
.yd9_c00214{bottom:54.890667pt;}
.yd8_c00214{bottom:55.674667pt;}
.yd7_c00214{bottom:57.132000pt;}
.yd6_c00214{bottom:65.905333pt;}
.yd5_c00214{bottom:66.480000pt;}
.yd4_c00214{bottom:66.785333pt;}
.yd3_c00214{bottom:67.450667pt;}
.yd2_c00214{bottom:67.829333pt;}
.yd1_c00214{bottom:68.920000pt;}
.yd0_c00214{bottom:69.298667pt;}
.ycf_c00214{bottom:69.777333pt;}
.yce_c00214{bottom:70.802667pt;}
.ycd_c00214{bottom:81.308000pt;}
.ycc_c00214{bottom:82.116000pt;}
.ycb_c00214{bottom:82.652000pt;}
.yca_c00214{bottom:83.321333pt;}
.yc9_c00214{bottom:83.766667pt;}
.yc8_c00214{bottom:85.146667pt;}
.yc7_c00214{bottom:85.656000pt;}
.yc6_c00214{bottom:87.562667pt;}
.yc5_c00214{bottom:88.089333pt;}
.yc4_c00214{bottom:97.921333pt;}
.yc3_c00214{bottom:98.360000pt;}
.yc2_c00214{bottom:98.873333pt;}
.yc1_c00214{bottom:100.336000pt;}
.yc0_c00214{bottom:102.430667pt;}
.ybf_c00214{bottom:104.168000pt;}
.ybe_c00214{bottom:112.149333pt;}
.ybd_c00214{bottom:113.409333pt;}
.ybc_c00214{bottom:114.317333pt;}
.ybb_c00214{bottom:116.166667pt;}
.yba_c00214{bottom:116.688000pt;}
.yb9_c00214{bottom:117.818667pt;}
.yb8_c00214{bottom:118.686667pt;}
.yb7_c00214{bottom:119.356000pt;}
.yb6_c00214{bottom:120.492000pt;}
.yb5_c00214{bottom:128.228000pt;}
.yb4_c00214{bottom:128.408000pt;}
.yb3_c00214{bottom:128.666667pt;}
.yb2_c00214{bottom:129.070667pt;}
.yb1_c00214{bottom:129.274667pt;}
.yb0_c00214{bottom:129.614667pt;}
.yaf_c00214{bottom:129.930667pt;}
.yae_c00214{bottom:130.148000pt;}
.yad_c00214{bottom:130.625333pt;}
.yac_c00214{bottom:130.802667pt;}
.yab_c00214{bottom:144.498667pt;}
.yaa_c00214{bottom:158.870667pt;}
.ya9_c00214{bottom:160.098667pt;}
.ya8_c00214{bottom:160.445333pt;}
.ya7_c00214{bottom:160.876000pt;}
.ya6_c00214{bottom:161.104000pt;}
.ya5_c00214{bottom:161.954667pt;}
.ya4_c00214{bottom:162.424000pt;}
.ya3_c00214{bottom:162.961333pt;}
.ya2_c00214{bottom:173.818667pt;}
.ya1_c00214{bottom:174.204000pt;}
.ya0_c00214{bottom:174.600000pt;}
.y9f_c00214{bottom:175.070667pt;}
.y9e_c00214{bottom:175.357333pt;}
.y9d_c00214{bottom:175.996000pt;}
.y9c_c00214{bottom:176.794667pt;}
.y9b_c00214{bottom:177.378667pt;}
.y9a_c00214{bottom:177.701333pt;}
.y99_c00214{bottom:178.320000pt;}
.y98_c00214{bottom:188.530667pt;}
.y97_c00214{bottom:188.994667pt;}
.y96_c00214{bottom:189.282667pt;}
.y95_c00214{bottom:190.212000pt;}
.y94_c00214{bottom:190.706667pt;}
.y93_c00214{bottom:191.148000pt;}
.y92_c00214{bottom:191.656000pt;}
.y91_c00214{bottom:192.314667pt;}
.y90_c00214{bottom:192.842667pt;}
.y8f_c00214{bottom:193.974667pt;}
.y8e_c00214{bottom:194.161333pt;}
.y8d_c00214{bottom:204.412000pt;}
.y8c_c00214{bottom:204.964000pt;}
.y8b_c00214{bottom:206.456000pt;}
.y8a_c00214{bottom:207.140000pt;}
.y89_c00214{bottom:207.653333pt;}
.y88_c00214{bottom:208.084000pt;}
.y87_c00214{bottom:208.696000pt;}
.y86_c00214{bottom:209.536000pt;}
.y85_c00214{bottom:210.242667pt;}
.y84_c00214{bottom:220.214667pt;}
.y83_c00214{bottom:220.525333pt;}
.y82_c00214{bottom:220.989333pt;}
.y81_c00214{bottom:221.593333pt;}
.y80_c00214{bottom:222.181333pt;}
.y7f_c00214{bottom:222.572000pt;}
.y7e_c00214{bottom:223.581333pt;}
.y7d_c00214{bottom:224.261333pt;}
.y7c_c00214{bottom:224.648000pt;}
.y7b_c00214{bottom:225.122667pt;}
.y7a_c00214{bottom:236.985333pt;}
.y79_c00214{bottom:237.294667pt;}
.y78_c00214{bottom:238.132000pt;}
.y77_c00214{bottom:238.437333pt;}
.y76_c00214{bottom:238.816000pt;}
.y75_c00214{bottom:239.254667pt;}
.y74_c00214{bottom:239.806667pt;}
.y73_c00214{bottom:240.124000pt;}
.y72_c00214{bottom:240.721333pt;}
.y71_c00214{bottom:251.921333pt;}
.y70_c00214{bottom:252.432000pt;}
.y6f_c00214{bottom:253.585333pt;}
.y6e_c00214{bottom:253.906667pt;}
.y6d_c00214{bottom:254.260000pt;}
.y6c_c00214{bottom:255.677333pt;}
.y6b_c00214{bottom:255.978667pt;}
.y6a_c00214{bottom:256.321333pt;}
.y69_c00214{bottom:267.842667pt;}
.y68_c00214{bottom:268.940000pt;}
.y67_c00214{bottom:269.368000pt;}
.y66_c00214{bottom:269.704000pt;}
.y65_c00214{bottom:271.092000pt;}
.y64_c00214{bottom:271.298667pt;}
.y63_c00214{bottom:271.921333pt;}
.y62_c00214{bottom:283.640000pt;}
.y61_c00214{bottom:283.962667pt;}
.y60_c00214{bottom:284.594667pt;}
.y5f_c00214{bottom:285.220000pt;}
.y5e_c00214{bottom:285.598667pt;}
.y5d_c00214{bottom:285.921333pt;}
.y5c_c00214{bottom:286.113333pt;}
.y5b_c00214{bottom:286.997333pt;}
.y5a_c00214{bottom:287.280000pt;}
.y59_c00214{bottom:299.013333pt;}
.y58_c00214{bottom:299.752000pt;}
.y57_c00214{bottom:299.824000pt;}
.y56_c00214{bottom:300.349333pt;}
.y55_c00214{bottom:300.652000pt;}
.y54_c00214{bottom:300.846667pt;}
.y53_c00214{bottom:301.333333pt;}
.y52_c00214{bottom:301.497333pt;}
.y51_c00214{bottom:301.680000pt;}
.y50_c00214{bottom:313.153333pt;}
.y4f_c00214{bottom:313.846667pt;}
.y4e_c00214{bottom:315.086667pt;}
.y4d_c00214{bottom:315.456000pt;}
.y4c_c00214{bottom:315.992000pt;}
.y4b_c00214{bottom:317.041333pt;}
.y4a_c00214{bottom:329.353333pt;}
.y49_c00214{bottom:329.597333pt;}
.y48_c00214{bottom:330.366667pt;}
.y47_c00214{bottom:330.861333pt;}
.y46_c00214{bottom:331.322667pt;}
.y45_c00214{bottom:331.598667pt;}
.y44_c00214{bottom:331.918667pt;}
.y43_c00214{bottom:343.368000pt;}
.y42_c00214{bottom:343.622667pt;}
.y41_c00214{bottom:343.749333pt;}
.y40_c00214{bottom:344.220000pt;}
.y3f_c00214{bottom:344.558667pt;}
.y3e_c00214{bottom:345.293333pt;}
.y3d_c00214{bottom:345.512000pt;}
.y3c_c00214{bottom:346.080000pt;}
.y3b_c00214{bottom:360.057333pt;}
.y3a_c00214{bottom:361.205333pt;}
.y39_c00214{bottom:361.516000pt;}
.y38_c00214{bottom:362.044000pt;}
.y37_c00214{bottom:362.158667pt;}
.y36_c00214{bottom:373.778667pt;}
.y35_c00214{bottom:374.521333pt;}
.y34_c00214{bottom:375.038667pt;}
.y33_c00214{bottom:375.238667pt;}
.y32_c00214{bottom:375.446667pt;}
.y31_c00214{bottom:375.581333pt;}
.y30_c00214{bottom:376.049333pt;}
.y2f_c00214{bottom:376.168000pt;}
.y2e_c00214{bottom:376.558667pt;}
.y2d_c00214{bottom:389.686667pt;}
.y2c_c00214{bottom:389.842667pt;}
.y2b_c00214{bottom:390.296000pt;}
.y2a_c00214{bottom:390.632000pt;}
.y29_c00214{bottom:390.721333pt;}
.y28_c00214{bottom:391.206667pt;}
.y27_c00214{bottom:391.588000pt;}
.y26_c00214{bottom:392.010667pt;}
.y25_c00214{bottom:392.160000pt;}
.y24_c00214{bottom:404.976000pt;}
.y23_c00214{bottom:405.198667pt;}
.y22_c00214{bottom:405.630667pt;}
.y21_c00214{bottom:405.824000pt;}
.y20_c00214{bottom:406.036000pt;}
.y1f_c00214{bottom:406.338667pt;}
.y1e_c00214{bottom:406.512000pt;}
.y1d_c00214{bottom:407.338667pt;}
.y1c_c00214{bottom:408.001333pt;}
.y1b_c00214{bottom:421.168000pt;}
.y1a_c00214{bottom:436.534667pt;}
.y19_c00214{bottom:451.354667pt;}
.y18_c00214{bottom:451.900000pt;}
.y17_c00214{bottom:452.062667pt;}
.y16_c00214{bottom:452.632000pt;}
.y15_c00214{bottom:452.788000pt;}
.y14_c00214{bottom:453.073333pt;}
.y13_c00214{bottom:453.232000pt;}
.y12_c00214{bottom:453.601333pt;}
.y11_c00214{bottom:466.437333pt;}
.y10_c00214{bottom:467.049333pt;}
.yf_c00214{bottom:467.352000pt;}
.ye_c00214{bottom:467.573333pt;}
.yd_c00214{bottom:467.870667pt;}
.yc_c00214{bottom:468.374667pt;}
.yb_c00214{bottom:468.962667pt;}
.ya_c00214{bottom:483.276000pt;}
.y9_c00214{bottom:497.410667pt;}
.y8_c00214{bottom:498.277333pt;}
.y7_c00214{bottom:498.538667pt;}
.y6_c00214{bottom:499.325333pt;}
.y5_c00214{bottom:499.574667pt;}
.y4_c00214{bottom:499.896000pt;}
.y3_c00214{bottom:500.257333pt;}
.y2_c00214{bottom:500.641333pt;}
.y1_c00214{bottom:513.837333pt;}
.hf_c00214{height:51.333333pt;}
.hb_c00214{height:52.266667pt;}
.h10_c00214{height:53.200000pt;}
.ha_c00214{height:54.133333pt;}
.h2_c00214{height:55.066667pt;}
.h6_c00214{height:56.000000pt;}
.h7_c00214{height:56.933333pt;}
.h5_c00214{height:57.866667pt;}
.hc_c00214{height:58.800000pt;}
.h8_c00214{height:59.733333pt;}
.hd_c00214{height:60.666667pt;}
.h9_c00214{height:61.600000pt;}
.he_c00214{height:62.533333pt;}
.h3_c00214{height:66.266667pt;}
.h4_c00214{height:68.133333pt;}
.h0_c00214{height:553.866667pt;}
.h1_c00214{height:554.000000pt;}
.w0_c00214{width:325.680000pt;}
.w1_c00214{width:326.000000pt;}
.x0_c00214{left:0.000000pt;}
.x36_c00214{left:30.377333pt;}
.x14_c00214{left:31.357333pt;}
.x2_c00214{left:32.309333pt;}
.x3d_c00214{left:34.697333pt;}
.x74_c00214{left:36.478667pt;}
.x62_c00214{left:39.109333pt;}
.x66_c00214{left:42.057333pt;}
.x3e_c00214{left:43.553333pt;}
.x85_c00214{left:44.721333pt;}
.xa_c00214{left:46.320000pt;}
.x75_c00214{left:47.518667pt;}
.x1c_c00214{left:48.480000pt;}
.x23_c00214{left:49.440000pt;}
.x53_c00214{left:51.701333pt;}
.x41_c00214{left:53.381333pt;}
.x48_c00214{left:57.238667pt;}
.x3_c00214{left:61.842667pt;}
.x88_c00214{left:62.886667pt;}
.x72_c00214{left:64.113333pt;}
.x37_c00214{left:65.890667pt;}
.x24_c00214{left:67.440000pt;}
.x15_c00214{left:68.334667pt;}
.x63_c00214{left:69.852000pt;}
.x38_c00214{left:76.686667pt;}
.x49_c00214{left:80.286667pt;}
.x16_c00214{left:84.177333pt;}
.x29_c00214{left:85.797333pt;}
.x2f_c00214{left:87.976000pt;}
.x4_c00214{left:89.684000pt;}
.xe_c00214{left:90.616000pt;}
.x4d_c00214{left:92.002667pt;}
.x7f_c00214{left:96.908000pt;}
.x1d_c00214{left:97.920000pt;}
.x42_c00214{left:100.689333pt;}
.x64_c00214{left:106.362667pt;}
.x3f_c00214{left:108.112000pt;}
.x79_c00214{left:111.749333pt;}
.x17_c00214{left:112.690667pt;}
.x5_c00214{left:114.400000pt;}
.x7d_c00214{left:115.844000pt;}
.x6d_c00214{left:117.174667pt;}
.x39_c00214{left:119.212000pt;}
.x1e_c00214{left:120.240000pt;}
.x76_c00214{left:122.398667pt;}
.x4e_c00214{left:123.518667pt;}
.x67_c00214{left:125.040000pt;}
.x30_c00214{left:126.134667pt;}
.x18_c00214{left:128.293333pt;}
.xb_c00214{left:130.080000pt;}
.x3a_c00214{left:131.450667pt;}
.x6_c00214{left:133.544000pt;}
.x86_c00214{left:138.788000pt;}
.xf_c00214{left:141.010667pt;}
.x77_c00214{left:142.078667pt;}
.x5b_c00214{left:144.282667pt;}
.x1f_c00214{left:145.440000pt;}
.x25_c00214{left:146.880000pt;}
.x3b_c00214{left:150.361333pt;}
.x1_c00214{left:151.920000pt;}
.x2a_c00214{left:154.676000pt;}
.x68_c00214{left:157.954667pt;}
.x58_c00214{left:158.972000pt;}
.x4a_c00214{left:159.966667pt;}
.x6e_c00214{left:161.573333pt;}
.x26_c00214{left:162.720000pt;}
.x51_c00214{left:163.840000pt;}
.x5c_c00214{left:166.596000pt;}
.x2b_c00214{left:169.073333pt;}
.x10_c00214{left:170.768000pt;}
.x57_c00214{left:173.064000pt;}
.x31_c00214{left:174.617333pt;}
.x59_c00214{left:175.918667pt;}
.x54_c00214{left:178.662667pt;}
.x43_c00214{left:180.166667pt;}
.x87_c00214{left:181.881333pt;}
.x32_c00214{left:183.501333pt;}
.x19_c00214{left:185.206667pt;}
.x5e_c00214{left:186.982667pt;}
.x7a_c00214{left:189.968000pt;}
.x11_c00214{left:192.874667pt;}
.x7_c00214{left:194.073333pt;}
.x40_c00214{left:196.429333pt;}
.x80_c00214{left:198.982667pt;}
.x78_c00214{left:199.918667pt;}
.x1a_c00214{left:201.493333pt;}
.x20_c00214{left:204.000000pt;}
.x69_c00214{left:205.406667pt;}
.x44_c00214{left:208.430667pt;}
.xc_c00214{left:209.760000pt;}
.x83_c00214{left:210.777333pt;}
.x2c_c00214{left:211.969333pt;}
.x6f_c00214{left:212.998667pt;}
.x8_c00214{left:214.186667pt;}
.x3c_c00214{left:215.638667pt;}
.x33_c00214{left:217.097333pt;}
.x4f_c00214{left:218.213333pt;}
.x21_c00214{left:219.840000pt;}
.x12_c00214{left:223.090667pt;}
.x4b_c00214{left:224.094667pt;}
.x7e_c00214{left:225.238667pt;}
.x7b_c00214{left:226.686667pt;}
.xd_c00214{left:228.240000pt;}
.x6a_c00214{left:230.117333pt;}
.x27_c00214{left:233.760000pt;}
.x5a_c00214{left:236.653333pt;}
.x70_c00214{left:239.168000pt;}
.x81_c00214{left:241.894667pt;}
.x4c_c00214{left:244.445333pt;}
.x84_c00214{left:245.805333pt;}
.x45_c00214{left:247.608000pt;}
.x5f_c00214{left:249.700000pt;}
.x5d_c00214{left:252.048000pt;}
.x22_c00214{left:252.960000pt;}
.x1b_c00214{left:255.970667pt;}
.x46_c00214{left:258.109333pt;}
.x50_c00214{left:259.005333pt;}
.x71_c00214{left:261.162667pt;}
.x34_c00214{left:262.453333pt;}
.x2d_c00214{left:264.110667pt;}
.x7c_c00214{left:266.522667pt;}
.x55_c00214{left:268.404000pt;}
.x73_c00214{left:273.182667pt;}
.x60_c00214{left:274.102667pt;}
.x6b_c00214{left:276.592000pt;}
.x35_c00214{left:278.049333pt;}
.x47_c00214{left:279.278667pt;}
.x9_c00214{left:280.901333pt;}
.x2e_c00214{left:282.617333pt;}
.x13_c00214{left:284.238667pt;}
.x28_c00214{left:287.280000pt;}
.x61_c00214{left:290.425333pt;}
.x56_c00214{left:291.489333pt;}
.x65_c00214{left:292.637333pt;}
.x82_c00214{left:293.544000pt;}
.x52_c00214{left:297.497333pt;}
.x6c_c00214{left:314.193333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00215 {
    display:none;
  }
  .loading-indicator_c00215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00215 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00215 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00215" -> "#page-container .classname_c00215")
 */
.pf_c00215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00215 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00215 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00215 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00215 {overflow:visible;}
  }
}
.c_c00215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00215 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00215:after { /* webkit #35443 */
  content: '';
}
.t_c00215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00215 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00215 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00215 { /* info for Javascript */
  display:none;
}
.l_c00215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00215:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00215 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00215.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00215{transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00215{transform:matrix(0.133085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133085,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.148880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148880,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);}
.mba_c00215{transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00215{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.mc1_c00215{transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);}
.me0_c00215{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.mbd_c00215{transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);}
.m49_c00215{transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);}
.m6b_c00215{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.mc0_c00215{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.mb7_c00215{transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165710,0.000000,0.000000,0.250000,0,0);}
.mc4_c00215{transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);}
.m53_c00215{transform:matrix(0.166645,-0.005166,0.007746,0.249880,0,0);-ms-transform:matrix(0.166645,-0.005166,0.007746,0.249880,0,0);-webkit-transform:matrix(0.166645,-0.005166,0.007746,0.249880,0,0);}
.mbe_c00215{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.m77_c00215{transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);}
.m62_c00215{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m82_c00215{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00215{transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m7e_c00215{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);}
.m88_c00215{transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);}
.m52_c00215{transform:matrix(0.174081,-0.005397,0.007746,0.249880,0,0);-ms-transform:matrix(0.174081,-0.005397,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174081,-0.005397,0.007746,0.249880,0,0);}
.m1d_c00215{transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.me8_c00215{transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m9a_c00215{transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);}
.mb3_c00215{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.mbb_c00215{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00215{transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);}
.mb8_c00215{transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);}
.m86_c00215{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.m60_c00215{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.m7a_c00215{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m56_c00215{transform:matrix(0.179614,-0.005568,0.007746,0.249880,0,0);-ms-transform:matrix(0.179614,-0.005568,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179614,-0.005568,0.007746,0.249880,0,0);}
.m9f_c00215{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.md0_c00215{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00215{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.md8_c00215{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.m4f_c00215{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00215{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.meb_c00215{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m51_c00215{transform:matrix(0.180798,-0.005605,0.007746,0.249880,0,0);-ms-transform:matrix(0.180798,-0.005605,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180798,-0.005605,0.007746,0.249880,0,0);}
.ma9_c00215{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.ma5_c00215{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.mef_c00215{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.ma7_c00215{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.mb9_c00215{transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m75_c00215{transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183010,0.000000,0.000000,0.250000,0,0);}
.m9d_c00215{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00215{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.m5d_c00215{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m63_c00215{transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);}
.m7f_c00215{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m93_c00215{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m98_c00215{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m6e_c00215{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m85_c00215{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m87_c00215{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m68_c00215{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m54_c00215{transform:matrix(0.186405,-0.005779,0.007746,0.249880,0,0);-ms-transform:matrix(0.186405,-0.005779,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186405,-0.005779,0.007746,0.249880,0,0);}
.m9c_c00215{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.mbf_c00215{transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);}
.ma0_c00215{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.mce_c00215{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.m91_c00215{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);}
.m76_c00215{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m6d_c00215{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m8d_c00215{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.ma3_c00215{transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);}
.mc9_c00215{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.m67_c00215{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.mf2_c00215{transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);}
.mc8_c00215{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.mbc_c00215{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m99_c00215{transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00215{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.m64_c00215{transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);}
.me6_c00215{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.mcd_c00215{transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);}
.m50_c00215{transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);}
.m9b_c00215{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);}
.mc5_c00215{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m8f_c00215{transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.me4_c00215{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.m8e_c00215{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m70_c00215{transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);}
.m5a_c00215{transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);}
.m7c_c00215{transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);}
.md9_c00215{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m55_c00215{transform:matrix(0.199119,-0.006173,0.007746,0.249880,0,0);-ms-transform:matrix(0.199119,-0.006173,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199119,-0.006173,0.007746,0.249880,0,0);}
.mae_c00215{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.mf1_c00215{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.mb0_c00215{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m9e_c00215{transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);}
.m7d_c00215{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m80_c00215{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.mf0_c00215{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.mc7_c00215{transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);}
.mf3_c00215{transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m58_c00215{transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);-ms-transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);}
.m83_c00215{transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);}
.mdf_c00215{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.mc6_c00215{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.m66_c00215{transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);}
.m84_c00215{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m57_c00215{transform:matrix(0.204142,-0.006328,0.007746,0.249880,0,0);-ms-transform:matrix(0.204142,-0.006328,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204142,-0.006328,0.007746,0.249880,0,0);}
.m4a_c00215{transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);}
.m92_c00215{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.mab_c00215{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.mcf_c00215{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.maf_c00215{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.mb4_c00215{transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.mda_c00215{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.md7_c00215{transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.mb2_c00215{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m5e_c00215{transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.m44_c00215{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.me3_c00215{transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.mdb_c00215{transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00215{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m73_c00215{transform:matrix(0.210090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00215{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m96_c00215{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.maa_c00215{transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211435,0.000000,0.000000,0.250000,0,0);}
.m79_c00215{transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);}
.m32_c00215{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.m6f_c00215{transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m90_c00215{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.md2_c00215{transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213520,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.mac_c00215{transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);}
.md1_c00215{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);}
.m94_c00215{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.md4_c00215{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);}
.md6_c00215{transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);}
.m6a_c00215{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.mdd_c00215{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.me9_c00215{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m95_c00215{transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);}
.mea_c00215{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.m69_c00215{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);}
.mb1_c00215{transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);}
.mf4_c00215{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221195,0.000000,0.000000,0.250000,0,0);}
.m4b_c00215{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.me2_c00215{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m72_c00215{transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223545,0.000000,0.000000,0.250000,0,0);}
.m65_c00215{transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);}
.me7_c00215{transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);}
.mcc_c00215{transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226705,0.000000,0.000000,0.250000,0,0);}
.me1_c00215{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.m81_c00215{transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);}
.m5b_c00215{transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);}
.md3_c00215{transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);}
.ma8_c00215{transform:matrix(0.232635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232635,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.md5_c00215{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.mee_c00215{transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.m78_c00215{transform:matrix(0.236085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236085,0.000000,0.000000,0.250000,0,0);}
.mec_c00215{transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m74_c00215{transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);}
.m8a_c00215{transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);}
.m61_c00215{transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);}
.me5_c00215{transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);}
.mde_c00215{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.mad_c00215{transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);}
.mdc_c00215{transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);}
.m71_c00215{transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00215{transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);}
.mb6_c00215{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00215{transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);}
.mcb_c00215{transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);}
.m59_c00215{transform:matrix(0.278391,-0.008630,0.007746,0.249880,0,0);-ms-transform:matrix(0.278391,-0.008630,0.007746,0.249880,0,0);-webkit-transform:matrix(0.278391,-0.008630,0.007746,0.249880,0,0);}
.mb5_c00215{transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);}
.ma6_c00215{transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);}
.m97_c00215{transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);}
.m89_c00215{transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);}
.med_c00215{transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.327955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327955,0.000000,0.000000,0.250000,0,0);}
.mca_c00215{transform:matrix(0.352800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352800,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:0.000000px;}
.fc0_c00215{color:transparent;}
.fs9_c00215{font-size:57.750000px;}
.fs6_c00215{font-size:58.800000px;}
.fs8_c00215{font-size:59.850000px;}
.fs2_c00215{font-size:60.900000px;}
.fs1_c00215{font-size:61.950000px;}
.fs7_c00215{font-size:61.979760px;}
.fs0_c00215{font-size:63.000000px;}
.fsb_c00215{font-size:64.050000px;}
.fs4_c00215{font-size:65.100000px;}
.fs5_c00215{font-size:66.150000px;}
.fs3_c00215{font-size:68.250000px;}
.fsa_c00215{font-size:69.300000px;}
.fsc_c00215{font-size:70.350000px;}
.y0_c00215{bottom:0.000000px;}
.y2f_c00215{bottom:21.333000px;}
.y30_c00215{bottom:22.150500px;}
.y31_c00215{bottom:22.546500px;}
.y32_c00215{bottom:22.780500px;}
.y33_c00215{bottom:23.406000px;}
.y34_c00215{bottom:24.279000px;}
.y35_c00215{bottom:24.564000px;}
.y36_c00215{bottom:25.090500px;}
.y28_c00215{bottom:38.074500px;}
.y29_c00215{bottom:39.322500px;}
.y2a_c00215{bottom:40.368000px;}
.y2b_c00215{bottom:41.178000px;}
.y2c_c00215{bottom:41.427000px;}
.y2d_c00215{bottom:42.427500px;}
.y2e_c00215{bottom:42.813000px;}
.y27_c00215{bottom:58.510500px;}
.y26_c00215{bottom:75.402000px;}
.y25_c00215{bottom:93.298500px;}
.y24_c00215{bottom:110.001000px;}
.y23_c00215{bottom:127.788000px;}
.y22_c00215{bottom:145.645500px;}
.y21_c00215{bottom:163.465500px;}
.y20_c00215{bottom:180.438000px;}
.y1f_c00215{bottom:197.484000px;}
.y1e_c00215{bottom:216.435000px;}
.y1d_c00215{bottom:233.653500px;}
.y1c_c00215{bottom:250.212000px;}
.y1b_c00215{bottom:266.994000px;}
.y1a_c00215{bottom:283.498500px;}
.y19_c00215{bottom:301.318500px;}
.y18_c00215{bottom:318.130500px;}
.y17_c00215{bottom:335.796000px;}
.y16_c00215{bottom:353.230500px;}
.yd_c00215{bottom:370.182000px;}
.ye_c00215{bottom:370.989333px;}
.yf_c00215{bottom:371.727335px;}
.y10_c00215{bottom:372.757635px;}
.y11_c00215{bottom:373.817789px;}
.y12_c00215{bottom:374.726492px;}
.y13_c00215{bottom:375.913962px;}
.y14_c00215{bottom:376.624296px;}
.y15_c00215{bottom:378.748230px;}
.yc_c00215{bottom:387.990000px;}
.yb_c00215{bottom:406.426500px;}
.ya_c00215{bottom:422.587500px;}
.y9_c00215{bottom:439.483500px;}
.y8_c00215{bottom:457.155000px;}
.y7_c00215{bottom:474.442500px;}
.y6_c00215{bottom:491.098500px;}
.y5_c00215{bottom:508.140000px;}
.y4_c00215{bottom:525.757500px;}
.y3_c00215{bottom:543.180000px;}
.y2_c00215{bottom:559.776000px;}
.y1_c00215{bottom:577.264500px;}
.hb_c00215{height:57.750000px;}
.h8_c00215{height:58.800000px;}
.ha_c00215{height:59.850000px;}
.h4_c00215{height:60.900000px;}
.h3_c00215{height:61.950000px;}
.h9_c00215{height:61.979760px;}
.h2_c00215{height:63.000000px;}
.hd_c00215{height:64.050000px;}
.h6_c00215{height:65.100000px;}
.h7_c00215{height:66.150000px;}
.h5_c00215{height:68.250000px;}
.hc_c00215{height:69.300000px;}
.he_c00215{height:70.350000px;}
.h0_c00215{height:623.100000px;}
.h1_c00215{height:623.250000px;}
.w0_c00215{width:366.390000px;}
.w1_c00215{width:366.750000px;}
.x0_c00215{left:0.000000px;}
.x6a_c00215{left:27.000000px;}
.x4b_c00215{left:29.160000px;}
.x30_c00215{left:30.240000px;}
.xf_c00215{left:31.590000px;}
.x2_c00215{left:33.210000px;}
.x22_c00215{left:45.900000px;}
.x45_c00215{left:48.600000px;}
.x72_c00215{left:50.760000px;}
.x4e_c00215{left:52.380000px;}
.x3c_c00215{left:56.676000px;}
.x23_c00215{left:58.860000px;}
.x1c_c00215{left:60.480000px;}
.x5d_c00215{left:62.100000px;}
.x9_c00215{left:65.070000px;}
.x3_c00215{left:66.150000px;}
.x29_c00215{left:67.500000px;}
.x64_c00215{left:68.850000px;}
.x35_c00215{left:70.200000px;}
.x73_c00215{left:72.630000px;}
.x59_c00215{left:74.520000px;}
.x3d_c00215{left:80.482500px;}
.x76_c00215{left:82.350000px;}
.x53_c00215{left:84.780000px;}
.x10_c00215{left:86.940000px;}
.x7a_c00215{left:88.290000px;}
.x16_c00215{left:89.910000px;}
.x5a_c00215{left:91.260000px;}
.x77_c00215{left:92.610000px;}
.x4_c00215{left:93.960000px;}
.x65_c00215{left:96.660000px;}
.x6d_c00215{left:99.090000px;}
.x70_c00215{left:104.490000px;}
.x31_c00215{left:106.650000px;}
.x2a_c00215{left:110.160000px;}
.x46_c00215{left:112.590000px;}
.x3e_c00215{left:113.718000px;}
.x6b_c00215{left:114.750000px;}
.xa_c00215{left:117.720000px;}
.x32_c00215{left:119.610000px;}
.x24_c00215{left:122.310000px;}
.x36_c00215{left:127.170000px;}
.x61_c00215{left:130.140000px;}
.x1d_c00215{left:131.760000px;}
.x54_c00215{left:132.840000px;}
.x5_c00215{left:133.920000px;}
.x2d_c00215{left:135.810000px;}
.x66_c00215{left:138.780000px;}
.x11_c00215{left:139.860000px;}
.x37_c00215{left:140.940000px;}
.x4f_c00215{left:143.370000px;}
.x7b_c00215{left:144.990000px;}
.x17_c00215{left:146.610000px;}
.x3f_c00215{left:147.916500px;}
.x71_c00215{left:150.930000px;}
.x6e_c00215{left:153.900000px;}
.xb_c00215{left:157.140000px;}
.x47_c00215{left:159.300000px;}
.x5b_c00215{left:163.890000px;}
.x1_c00215{left:166.590000px;}
.x12_c00215{left:168.480000px;}
.x5e_c00215{left:169.560000px;}
.x38_c00215{left:170.640000px;}
.x4d_c00215{left:172.530000px;}
.x18_c00215{left:173.610000px;}
.x21_c00215{left:176.310000px;}
.x2e_c00215{left:177.390000px;}
.x25_c00215{left:179.280000px;}
.x50_c00215{left:180.360000px;}
.x5f_c00215{left:184.140000px;}
.x41_c00215{left:185.220000px;}
.x13_c00215{left:188.190000px;}
.x1e_c00215{left:190.350000px;}
.x33_c00215{left:194.670000px;}
.x67_c00215{left:196.830000px;}
.x5c_c00215{left:198.180000px;}
.x6_c00215{left:199.530000px;}
.x7f_c00215{left:201.960000px;}
.x19_c00215{left:204.120000px;}
.x39_c00215{left:206.280000px;}
.x55_c00215{left:212.220000px;}
.x26_c00215{left:216.270000px;}
.x34_c00215{left:217.890000px;}
.xc_c00215{left:220.320000px;}
.x56_c00215{left:227.340000px;}
.x62_c00215{left:228.690000px;}
.x7c_c00215{left:230.040000px;}
.x7_c00215{left:231.120000px;}
.x2b_c00215{left:233.550000px;}
.x27_c00215{left:237.600000px;}
.x48_c00215{left:242.190000px;}
.x63_c00215{left:243.540000px;}
.x42_c00215{left:244.890000px;}
.x74_c00215{left:250.290000px;}
.xd_c00215{left:252.450000px;}
.x1f_c00215{left:254.340000px;}
.x7d_c00215{left:258.660000px;}
.x6f_c00215{left:260.280000px;}
.x6c_c00215{left:262.710000px;}
.x3a_c00215{left:264.330000px;}
.x80_c00215{left:267.300000px;}
.x1a_c00215{left:269.460000px;}
.x14_c00215{left:272.970000px;}
.x49_c00215{left:274.050000px;}
.x8_c00215{left:275.400000px;}
.xe_c00215{left:276.480000px;}
.x78_c00215{left:277.830000px;}
.x75_c00215{left:282.690000px;}
.x3b_c00215{left:285.930000px;}
.x51_c00215{left:288.630000px;}
.x81_c00215{left:289.917000px;}
.x43_c00215{left:291.330000px;}
.x1b_c00215{left:294.300000px;}
.x57_c00215{left:295.650000px;}
.x28_c00215{left:297.270000px;}
.x79_c00215{left:300.240000px;}
.x4c_c00215{left:302.400000px;}
.x68_c00215{left:304.290000px;}
.x2c_c00215{left:305.370000px;}
.x40_c00215{left:306.963000px;}
.x4a_c00215{left:309.420000px;}
.x44_c00215{left:311.850000px;}
.x20_c00215{left:313.470000px;}
.x52_c00215{left:314.820000px;}
.x7e_c00215{left:317.520000px;}
.x69_c00215{left:321.030000px;}
.x58_c00215{left:323.460000px;}
.x2f_c00215{left:326.160000px;}
.x60_c00215{left:331.560000px;}
.x15_c00215{left:345.600000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:0.000000pt;}
.fs9_c00215{font-size:51.333333pt;}
.fs6_c00215{font-size:52.266667pt;}
.fs8_c00215{font-size:53.200000pt;}
.fs2_c00215{font-size:54.133333pt;}
.fs1_c00215{font-size:55.066667pt;}
.fs7_c00215{font-size:55.093120pt;}
.fs0_c00215{font-size:56.000000pt;}
.fsb_c00215{font-size:56.933333pt;}
.fs4_c00215{font-size:57.866667pt;}
.fs5_c00215{font-size:58.800000pt;}
.fs3_c00215{font-size:60.666667pt;}
.fsa_c00215{font-size:61.600000pt;}
.fsc_c00215{font-size:62.533333pt;}
.y0_c00215{bottom:0.000000pt;}
.y2f_c00215{bottom:18.962667pt;}
.y30_c00215{bottom:19.689333pt;}
.y31_c00215{bottom:20.041333pt;}
.y32_c00215{bottom:20.249333pt;}
.y33_c00215{bottom:20.805333pt;}
.y34_c00215{bottom:21.581333pt;}
.y35_c00215{bottom:21.834667pt;}
.y36_c00215{bottom:22.302667pt;}
.y28_c00215{bottom:33.844000pt;}
.y29_c00215{bottom:34.953333pt;}
.y2a_c00215{bottom:35.882667pt;}
.y2b_c00215{bottom:36.602667pt;}
.y2c_c00215{bottom:36.824000pt;}
.y2d_c00215{bottom:37.713333pt;}
.y2e_c00215{bottom:38.056000pt;}
.y27_c00215{bottom:52.009333pt;}
.y26_c00215{bottom:67.024000pt;}
.y25_c00215{bottom:82.932000pt;}
.y24_c00215{bottom:97.778667pt;}
.y23_c00215{bottom:113.589333pt;}
.y22_c00215{bottom:129.462667pt;}
.y21_c00215{bottom:145.302667pt;}
.y20_c00215{bottom:160.389333pt;}
.y1f_c00215{bottom:175.541333pt;}
.y1e_c00215{bottom:192.386667pt;}
.y1d_c00215{bottom:207.692000pt;}
.y1c_c00215{bottom:222.410667pt;}
.y1b_c00215{bottom:237.328000pt;}
.y1a_c00215{bottom:251.998667pt;}
.y19_c00215{bottom:267.838667pt;}
.y18_c00215{bottom:282.782667pt;}
.y17_c00215{bottom:298.485333pt;}
.y16_c00215{bottom:313.982667pt;}
.yd_c00215{bottom:329.050667pt;}
.ye_c00215{bottom:329.768296pt;}
.yf_c00215{bottom:330.424297pt;}
.y10_c00215{bottom:331.340120pt;}
.y11_c00215{bottom:332.282479pt;}
.y12_c00215{bottom:333.090215pt;}
.y13_c00215{bottom:334.145744pt;}
.y14_c00215{bottom:334.777152pt;}
.y15_c00215{bottom:336.665093pt;}
.yc_c00215{bottom:344.880000pt;}
.yb_c00215{bottom:361.268000pt;}
.ya_c00215{bottom:375.633333pt;}
.y9_c00215{bottom:390.652000pt;}
.y8_c00215{bottom:406.360000pt;}
.y7_c00215{bottom:421.726667pt;}
.y6_c00215{bottom:436.532000pt;}
.y5_c00215{bottom:451.680000pt;}
.y4_c00215{bottom:467.340000pt;}
.y3_c00215{bottom:482.826667pt;}
.y2_c00215{bottom:497.578667pt;}
.y1_c00215{bottom:513.124000pt;}
.hb_c00215{height:51.333333pt;}
.h8_c00215{height:52.266667pt;}
.ha_c00215{height:53.200000pt;}
.h4_c00215{height:54.133333pt;}
.h3_c00215{height:55.066667pt;}
.h9_c00215{height:55.093120pt;}
.h2_c00215{height:56.000000pt;}
.hd_c00215{height:56.933333pt;}
.h6_c00215{height:57.866667pt;}
.h7_c00215{height:58.800000pt;}
.h5_c00215{height:60.666667pt;}
.hc_c00215{height:61.600000pt;}
.he_c00215{height:62.533333pt;}
.h0_c00215{height:553.866667pt;}
.h1_c00215{height:554.000000pt;}
.w0_c00215{width:325.680000pt;}
.w1_c00215{width:326.000000pt;}
.x0_c00215{left:0.000000pt;}
.x6a_c00215{left:24.000000pt;}
.x4b_c00215{left:25.920000pt;}
.x30_c00215{left:26.880000pt;}
.xf_c00215{left:28.080000pt;}
.x2_c00215{left:29.520000pt;}
.x22_c00215{left:40.800000pt;}
.x45_c00215{left:43.200000pt;}
.x72_c00215{left:45.120000pt;}
.x4e_c00215{left:46.560000pt;}
.x3c_c00215{left:50.378667pt;}
.x23_c00215{left:52.320000pt;}
.x1c_c00215{left:53.760000pt;}
.x5d_c00215{left:55.200000pt;}
.x9_c00215{left:57.840000pt;}
.x3_c00215{left:58.800000pt;}
.x29_c00215{left:60.000000pt;}
.x64_c00215{left:61.200000pt;}
.x35_c00215{left:62.400000pt;}
.x73_c00215{left:64.560000pt;}
.x59_c00215{left:66.240000pt;}
.x3d_c00215{left:71.540000pt;}
.x76_c00215{left:73.200000pt;}
.x53_c00215{left:75.360000pt;}
.x10_c00215{left:77.280000pt;}
.x7a_c00215{left:78.480000pt;}
.x16_c00215{left:79.920000pt;}
.x5a_c00215{left:81.120000pt;}
.x77_c00215{left:82.320000pt;}
.x4_c00215{left:83.520000pt;}
.x65_c00215{left:85.920000pt;}
.x6d_c00215{left:88.080000pt;}
.x70_c00215{left:92.880000pt;}
.x31_c00215{left:94.800000pt;}
.x2a_c00215{left:97.920000pt;}
.x46_c00215{left:100.080000pt;}
.x3e_c00215{left:101.082667pt;}
.x6b_c00215{left:102.000000pt;}
.xa_c00215{left:104.640000pt;}
.x32_c00215{left:106.320000pt;}
.x24_c00215{left:108.720000pt;}
.x36_c00215{left:113.040000pt;}
.x61_c00215{left:115.680000pt;}
.x1d_c00215{left:117.120000pt;}
.x54_c00215{left:118.080000pt;}
.x5_c00215{left:119.040000pt;}
.x2d_c00215{left:120.720000pt;}
.x66_c00215{left:123.360000pt;}
.x11_c00215{left:124.320000pt;}
.x37_c00215{left:125.280000pt;}
.x4f_c00215{left:127.440000pt;}
.x7b_c00215{left:128.880000pt;}
.x17_c00215{left:130.320000pt;}
.x3f_c00215{left:131.481333pt;}
.x71_c00215{left:134.160000pt;}
.x6e_c00215{left:136.800000pt;}
.xb_c00215{left:139.680000pt;}
.x47_c00215{left:141.600000pt;}
.x5b_c00215{left:145.680000pt;}
.x1_c00215{left:148.080000pt;}
.x12_c00215{left:149.760000pt;}
.x5e_c00215{left:150.720000pt;}
.x38_c00215{left:151.680000pt;}
.x4d_c00215{left:153.360000pt;}
.x18_c00215{left:154.320000pt;}
.x21_c00215{left:156.720000pt;}
.x2e_c00215{left:157.680000pt;}
.x25_c00215{left:159.360000pt;}
.x50_c00215{left:160.320000pt;}
.x5f_c00215{left:163.680000pt;}
.x41_c00215{left:164.640000pt;}
.x13_c00215{left:167.280000pt;}
.x1e_c00215{left:169.200000pt;}
.x33_c00215{left:173.040000pt;}
.x67_c00215{left:174.960000pt;}
.x5c_c00215{left:176.160000pt;}
.x6_c00215{left:177.360000pt;}
.x7f_c00215{left:179.520000pt;}
.x19_c00215{left:181.440000pt;}
.x39_c00215{left:183.360000pt;}
.x55_c00215{left:188.640000pt;}
.x26_c00215{left:192.240000pt;}
.x34_c00215{left:193.680000pt;}
.xc_c00215{left:195.840000pt;}
.x56_c00215{left:202.080000pt;}
.x62_c00215{left:203.280000pt;}
.x7c_c00215{left:204.480000pt;}
.x7_c00215{left:205.440000pt;}
.x2b_c00215{left:207.600000pt;}
.x27_c00215{left:211.200000pt;}
.x48_c00215{left:215.280000pt;}
.x63_c00215{left:216.480000pt;}
.x42_c00215{left:217.680000pt;}
.x74_c00215{left:222.480000pt;}
.xd_c00215{left:224.400000pt;}
.x1f_c00215{left:226.080000pt;}
.x7d_c00215{left:229.920000pt;}
.x6f_c00215{left:231.360000pt;}
.x6c_c00215{left:233.520000pt;}
.x3a_c00215{left:234.960000pt;}
.x80_c00215{left:237.600000pt;}
.x1a_c00215{left:239.520000pt;}
.x14_c00215{left:242.640000pt;}
.x49_c00215{left:243.600000pt;}
.x8_c00215{left:244.800000pt;}
.xe_c00215{left:245.760000pt;}
.x78_c00215{left:246.960000pt;}
.x75_c00215{left:251.280000pt;}
.x3b_c00215{left:254.160000pt;}
.x51_c00215{left:256.560000pt;}
.x81_c00215{left:257.704000pt;}
.x43_c00215{left:258.960000pt;}
.x1b_c00215{left:261.600000pt;}
.x57_c00215{left:262.800000pt;}
.x28_c00215{left:264.240000pt;}
.x79_c00215{left:266.880000pt;}
.x4c_c00215{left:268.800000pt;}
.x68_c00215{left:270.480000pt;}
.x2c_c00215{left:271.440000pt;}
.x40_c00215{left:272.856000pt;}
.x4a_c00215{left:275.040000pt;}
.x44_c00215{left:277.200000pt;}
.x20_c00215{left:278.640000pt;}
.x52_c00215{left:279.840000pt;}
.x7e_c00215{left:282.240000pt;}
.x69_c00215{left:285.360000pt;}
.x58_c00215{left:287.520000pt;}
.x2f_c00215{left:289.920000pt;}
.x60_c00215{left:294.720000pt;}
.x15_c00215{left:307.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00216 {
    display:none;
  }
  .loading-indicator_c00216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00216 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00216 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00216" -> "#page-container .classname_c00216")
 */
.pf_c00216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00216 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00216 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00216 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00216 {overflow:visible;}
  }
}
.c_c00216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00216 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00216:after { /* webkit #35443 */
  content: '';
}
.t_c00216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00216 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00216 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00216 { /* info for Javascript */
  display:none;
}
.l_c00216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00216:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00216 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00216.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00216{transform:matrix(0.055942,-0.000951,0.004249,0.249964,0,0);-ms-transform:matrix(0.055942,-0.000951,0.004249,0.249964,0,0);-webkit-transform:matrix(0.055942,-0.000951,0.004249,0.249964,0,0);}
.m94_c00216{transform:matrix(0.111619,-0.001898,0.004249,0.249964,0,0);-ms-transform:matrix(0.111619,-0.001898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.111619,-0.001898,0.004249,0.249964,0,0);}
.m92_c00216{transform:matrix(0.122957,-0.002090,0.004249,0.249964,0,0);-ms-transform:matrix(0.122957,-0.002090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.122957,-0.002090,0.004249,0.249964,0,0);}
.m18_c00216{transform:matrix(0.147759,-0.002512,0.004249,0.249964,0,0);-ms-transform:matrix(0.147759,-0.002512,0.004249,0.249964,0,0);-webkit-transform:matrix(0.147759,-0.002512,0.004249,0.249964,0,0);}
.m72_c00216{transform:matrix(0.149718,-0.002545,0.004249,0.249964,0,0);-ms-transform:matrix(0.149718,-0.002545,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149718,-0.002545,0.004249,0.249964,0,0);}
.m2b_c00216{transform:matrix(0.149828,-0.002547,0.004249,0.249964,0,0);-ms-transform:matrix(0.149828,-0.002547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149828,-0.002547,0.004249,0.249964,0,0);}
.mbf_c00216{transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);}
.m84_c00216{transform:matrix(0.152783,-0.002597,0.004249,0.249964,0,0);-ms-transform:matrix(0.152783,-0.002597,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152783,-0.002597,0.004249,0.249964,0,0);}
.mbc_c00216{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(0.154393,-0.002625,0.004249,0.249964,0,0);-ms-transform:matrix(0.154393,-0.002625,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154393,-0.002625,0.004249,0.249964,0,0);}
.m17_c00216{transform:matrix(0.157407,-0.002676,0.004249,0.249964,0,0);-ms-transform:matrix(0.157407,-0.002676,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157407,-0.002676,0.004249,0.249964,0,0);}
.m46_c00216{transform:matrix(0.157622,-0.002680,0.004249,0.249964,0,0);-ms-transform:matrix(0.157622,-0.002680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157622,-0.002680,0.004249,0.249964,0,0);}
.m2e_c00216{transform:matrix(0.158217,-0.002690,0.004249,0.249964,0,0);-ms-transform:matrix(0.158217,-0.002690,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158217,-0.002690,0.004249,0.249964,0,0);}
.m9c_c00216{transform:matrix(0.159142,-0.002705,0.004249,0.249964,0,0);-ms-transform:matrix(0.159142,-0.002705,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159142,-0.002705,0.004249,0.249964,0,0);}
.m28_c00216{transform:matrix(0.161262,-0.002741,0.004249,0.249964,0,0);-ms-transform:matrix(0.161262,-0.002741,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161262,-0.002741,0.004249,0.249964,0,0);}
.m88_c00216{transform:matrix(0.162122,-0.002756,0.004249,0.249964,0,0);-ms-transform:matrix(0.162122,-0.002756,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162122,-0.002756,0.004249,0.249964,0,0);}
.m8a_c00216{transform:matrix(0.162836,-0.002768,0.004249,0.249964,0,0);-ms-transform:matrix(0.162836,-0.002768,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162836,-0.002768,0.004249,0.249964,0,0);}
.mac_c00216{transform:matrix(0.163061,-0.002772,0.004249,0.249964,0,0);-ms-transform:matrix(0.163061,-0.002772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163061,-0.002772,0.004249,0.249964,0,0);}
.m95_c00216{transform:matrix(0.163696,-0.002783,0.004249,0.249964,0,0);-ms-transform:matrix(0.163696,-0.002783,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163696,-0.002783,0.004249,0.249964,0,0);}
.ma_c00216{transform:matrix(0.164881,-0.002803,0.004249,0.249964,0,0);-ms-transform:matrix(0.164881,-0.002803,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164881,-0.002803,0.004249,0.249964,0,0);}
.mc0_c00216{transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);}
.m69_c00216{transform:matrix(0.165606,-0.002815,0.004249,0.249964,0,0);-ms-transform:matrix(0.165606,-0.002815,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165606,-0.002815,0.004249,0.249964,0,0);}
.m37_c00216{transform:matrix(0.167171,-0.002842,0.004249,0.249964,0,0);-ms-transform:matrix(0.167171,-0.002842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167171,-0.002842,0.004249,0.249964,0,0);}
.m2f_c00216{transform:matrix(0.167726,-0.002851,0.004249,0.249964,0,0);-ms-transform:matrix(0.167726,-0.002851,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167726,-0.002851,0.004249,0.249964,0,0);}
.mab_c00216{transform:matrix(0.168501,-0.002865,0.004249,0.249964,0,0);-ms-transform:matrix(0.168501,-0.002865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168501,-0.002865,0.004249,0.249964,0,0);}
.m8e_c00216{transform:matrix(0.168646,-0.002867,0.004249,0.249964,0,0);-ms-transform:matrix(0.168646,-0.002867,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168646,-0.002867,0.004249,0.249964,0,0);}
.mbd_c00216{transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.169361,-0.002879,0.004249,0.249964,0,0);-ms-transform:matrix(0.169361,-0.002879,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169361,-0.002879,0.004249,0.249964,0,0);}
.m4c_c00216{transform:matrix(0.169526,-0.002882,0.004249,0.249964,0,0);-ms-transform:matrix(0.169526,-0.002882,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169526,-0.002882,0.004249,0.249964,0,0);}
.m32_c00216{transform:matrix(0.169805,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169805,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169805,-0.002887,0.004249,0.249964,0,0);}
.m1f_c00216{transform:matrix(0.170355,-0.002896,0.004249,0.249964,0,0);-ms-transform:matrix(0.170355,-0.002896,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170355,-0.002896,0.004249,0.249964,0,0);}
.m2c_c00216{transform:matrix(0.170400,-0.002897,0.004249,0.249964,0,0);-ms-transform:matrix(0.170400,-0.002897,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170400,-0.002897,0.004249,0.249964,0,0);}
.mbe_c00216{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.ma0_c00216{transform:matrix(0.172180,-0.002927,0.004249,0.249964,0,0);-ms-transform:matrix(0.172180,-0.002927,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172180,-0.002927,0.004249,0.249964,0,0);}
.m48_c00216{transform:matrix(0.173185,-0.002944,0.004249,0.249964,0,0);-ms-transform:matrix(0.173185,-0.002944,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173185,-0.002944,0.004249,0.249964,0,0);}
.m8b_c00216{transform:matrix(0.173630,-0.002952,0.004249,0.249964,0,0);-ms-transform:matrix(0.173630,-0.002952,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173630,-0.002952,0.004249,0.249964,0,0);}
.m43_c00216{transform:matrix(0.173775,-0.002954,0.004249,0.249964,0,0);-ms-transform:matrix(0.173775,-0.002954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173775,-0.002954,0.004249,0.249964,0,0);}
.m14_c00216{transform:matrix(0.174080,-0.002959,0.004249,0.249964,0,0);-ms-transform:matrix(0.174080,-0.002959,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174080,-0.002959,0.004249,0.249964,0,0);}
.m82_c00216{transform:matrix(0.174255,-0.002962,0.004249,0.249964,0,0);-ms-transform:matrix(0.174255,-0.002962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174255,-0.002962,0.004249,0.249964,0,0);}
.mc2_c00216{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m85_c00216{transform:matrix(0.174465,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174465,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174465,-0.002966,0.004249,0.249964,0,0);}
.m70_c00216{transform:matrix(0.174480,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174480,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174480,-0.002966,0.004249,0.249964,0,0);}
.me2_c00216{transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);}
.ma7_c00216{transform:matrix(0.175905,-0.002990,0.004249,0.249964,0,0);-ms-transform:matrix(0.175905,-0.002990,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175905,-0.002990,0.004249,0.249964,0,0);}
.m53_c00216{transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-ms-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);}
.m81_c00216{transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);-ms-transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);}
.m2d_c00216{transform:matrix(0.176559,-0.003002,0.004249,0.249964,0,0);-ms-transform:matrix(0.176559,-0.003002,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176559,-0.003002,0.004249,0.249964,0,0);}
.m24_c00216{transform:matrix(0.177489,-0.003017,0.004249,0.249964,0,0);-ms-transform:matrix(0.177489,-0.003017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177489,-0.003017,0.004249,0.249964,0,0);}
.m58_c00216{transform:matrix(0.177824,-0.003023,0.004249,0.249964,0,0);-ms-transform:matrix(0.177824,-0.003023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177824,-0.003023,0.004249,0.249964,0,0);}
.mb_c00216{transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);-ms-transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);}
.m9b_c00216{transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);-ms-transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);}
.mb1_c00216{transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);}
.me1_c00216{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(0.179104,-0.003045,0.004249,0.249964,0,0);-ms-transform:matrix(0.179104,-0.003045,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179104,-0.003045,0.004249,0.249964,0,0);}
.m1c_c00216{transform:matrix(0.179574,-0.003053,0.004249,0.249964,0,0);-ms-transform:matrix(0.179574,-0.003053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179574,-0.003053,0.004249,0.249964,0,0);}
.m5b_c00216{transform:matrix(0.179624,-0.003054,0.004249,0.249964,0,0);-ms-transform:matrix(0.179624,-0.003054,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179624,-0.003054,0.004249,0.249964,0,0);}
.m1_c00216{transform:matrix(0.179869,-0.003058,0.004249,0.249964,0,0);-ms-transform:matrix(0.179869,-0.003058,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179869,-0.003058,0.004249,0.249964,0,0);}
.m8f_c00216{transform:matrix(0.180114,-0.003062,0.004249,0.249964,0,0);-ms-transform:matrix(0.180114,-0.003062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180114,-0.003062,0.004249,0.249964,0,0);}
.ma4_c00216{transform:matrix(0.180224,-0.003064,0.004249,0.249964,0,0);-ms-transform:matrix(0.180224,-0.003064,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180224,-0.003064,0.004249,0.249964,0,0);}
.m33_c00216{transform:matrix(0.180704,-0.003072,0.004249,0.249964,0,0);-ms-transform:matrix(0.180704,-0.003072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180704,-0.003072,0.004249,0.249964,0,0);}
.m1d_c00216{transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);-ms-transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);}
.m4d_c00216{transform:matrix(0.181699,-0.003089,0.004249,0.249964,0,0);-ms-transform:matrix(0.181699,-0.003089,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181699,-0.003089,0.004249,0.249964,0,0);}
.m7c_c00216{transform:matrix(0.181784,-0.003090,0.004249,0.249964,0,0);-ms-transform:matrix(0.181784,-0.003090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181784,-0.003090,0.004249,0.249964,0,0);}
.m6d_c00216{transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182644,-0.003105,0.004249,0.249964,0,0);}
.m5e_c00216{transform:matrix(0.182774,-0.003107,0.004249,0.249964,0,0);-ms-transform:matrix(0.182774,-0.003107,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182774,-0.003107,0.004249,0.249964,0,0);}
.m5f_c00216{transform:matrix(0.182814,-0.003108,0.004249,0.249964,0,0);-ms-transform:matrix(0.182814,-0.003108,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182814,-0.003108,0.004249,0.249964,0,0);}
.ma8_c00216{transform:matrix(0.182854,-0.003109,0.004249,0.249964,0,0);-ms-transform:matrix(0.182854,-0.003109,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182854,-0.003109,0.004249,0.249964,0,0);}
.m6e_c00216{transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);-ms-transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);}
.m19_c00216{transform:matrix(0.182959,-0.003110,0.004249,0.249964,0,0);-ms-transform:matrix(0.182959,-0.003110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182959,-0.003110,0.004249,0.249964,0,0);}
.mcd_c00216{transform:matrix(0.183015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183015,0.000000,0.000000,0.250000,0,0);}
.mdd_c00216{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.mb7_c00216{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.184853,-0.003143,0.004249,0.249964,0,0);-ms-transform:matrix(0.184853,-0.003143,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184853,-0.003143,0.004249,0.249964,0,0);}
.mc9_c00216{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m9a_c00216{transform:matrix(0.185323,-0.003150,0.004249,0.249964,0,0);-ms-transform:matrix(0.185323,-0.003150,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185323,-0.003150,0.004249,0.249964,0,0);}
.m29_c00216{transform:matrix(0.185518,-0.003154,0.004249,0.249964,0,0);-ms-transform:matrix(0.185518,-0.003154,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185518,-0.003154,0.004249,0.249964,0,0);}
.mc5_c00216{transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00216{transform:matrix(0.186643,-0.003173,0.004249,0.249964,0,0);-ms-transform:matrix(0.186643,-0.003173,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186643,-0.003173,0.004249,0.249964,0,0);}
.m78_c00216{transform:matrix(0.186813,-0.003176,0.004249,0.249964,0,0);-ms-transform:matrix(0.186813,-0.003176,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186813,-0.003176,0.004249,0.249964,0,0);}
.m11_c00216{transform:matrix(0.186963,-0.003178,0.004249,0.249964,0,0);-ms-transform:matrix(0.186963,-0.003178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186963,-0.003178,0.004249,0.249964,0,0);}
.m7d_c00216{transform:matrix(0.187188,-0.003182,0.004249,0.249964,0,0);-ms-transform:matrix(0.187188,-0.003182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187188,-0.003182,0.004249,0.249964,0,0);}
.m59_c00216{transform:matrix(0.187343,-0.003185,0.004249,0.249964,0,0);-ms-transform:matrix(0.187343,-0.003185,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187343,-0.003185,0.004249,0.249964,0,0);}
.m7f_c00216{transform:matrix(0.187708,-0.003191,0.004249,0.249964,0,0);-ms-transform:matrix(0.187708,-0.003191,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187708,-0.003191,0.004249,0.249964,0,0);}
.mc6_c00216{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.maa_c00216{transform:matrix(0.187858,-0.003194,0.004249,0.249964,0,0);-ms-transform:matrix(0.187858,-0.003194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187858,-0.003194,0.004249,0.249964,0,0);}
.m89_c00216{transform:matrix(0.187923,-0.003195,0.004249,0.249964,0,0);-ms-transform:matrix(0.187923,-0.003195,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187923,-0.003195,0.004249,0.249964,0,0);}
.m6f_c00216{transform:matrix(0.188968,-0.003212,0.004249,0.249964,0,0);-ms-transform:matrix(0.188968,-0.003212,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188968,-0.003212,0.004249,0.249964,0,0);}
.m8d_c00216{transform:matrix(0.189053,-0.003214,0.004249,0.249964,0,0);-ms-transform:matrix(0.189053,-0.003214,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189053,-0.003214,0.004249,0.249964,0,0);}
.mf_c00216{transform:matrix(0.189548,-0.003222,0.004249,0.249964,0,0);-ms-transform:matrix(0.189548,-0.003222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189548,-0.003222,0.004249,0.249964,0,0);}
.m71_c00216{transform:matrix(0.189593,-0.003223,0.004249,0.249964,0,0);-ms-transform:matrix(0.189593,-0.003223,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189593,-0.003223,0.004249,0.249964,0,0);}
.m39_c00216{transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);-ms-transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);}
.mc1_c00216{transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190020,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.190347,-0.003236,0.004249,0.249964,0,0);-ms-transform:matrix(0.190347,-0.003236,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190347,-0.003236,0.004249,0.249964,0,0);}
.m13_c00216{transform:matrix(0.190772,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190772,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190772,-0.003243,0.004249,0.249964,0,0);}
.m31_c00216{transform:matrix(0.190932,-0.003246,0.004249,0.249964,0,0);-ms-transform:matrix(0.190932,-0.003246,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190932,-0.003246,0.004249,0.249964,0,0);}
.m6_c00216{transform:matrix(0.191002,-0.003247,0.004249,0.249964,0,0);-ms-transform:matrix(0.191002,-0.003247,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191002,-0.003247,0.004249,0.249964,0,0);}
.m3e_c00216{transform:matrix(0.191252,-0.003251,0.004249,0.249964,0,0);-ms-transform:matrix(0.191252,-0.003251,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191252,-0.003251,0.004249,0.249964,0,0);}
.m9_c00216{transform:matrix(0.191377,-0.003253,0.004249,0.249964,0,0);-ms-transform:matrix(0.191377,-0.003253,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191377,-0.003253,0.004249,0.249964,0,0);}
.m3_c00216{transform:matrix(0.191507,-0.003256,0.004249,0.249964,0,0);-ms-transform:matrix(0.191507,-0.003256,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191507,-0.003256,0.004249,0.249964,0,0);}
.m1a_c00216{transform:matrix(0.191817,-0.003261,0.004249,0.249964,0,0);-ms-transform:matrix(0.191817,-0.003261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191817,-0.003261,0.004249,0.249964,0,0);}
.m5_c00216{transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);-ms-transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);}
.m50_c00216{transform:matrix(0.191932,-0.003263,0.004249,0.249964,0,0);-ms-transform:matrix(0.191932,-0.003263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191932,-0.003263,0.004249,0.249964,0,0);}
.me6_c00216{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m57_c00216{transform:matrix(0.192507,-0.003273,0.004249,0.249964,0,0);-ms-transform:matrix(0.192507,-0.003273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192507,-0.003273,0.004249,0.249964,0,0);}
.m4_c00216{transform:matrix(0.192512,-0.003273,0.004249,0.249964,0,0);-ms-transform:matrix(0.192512,-0.003273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192512,-0.003273,0.004249,0.249964,0,0);}
.md6_c00216{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00216{transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);}
.mb9_c00216{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.195122,-0.003317,0.004249,0.249964,0,0);-ms-transform:matrix(0.195122,-0.003317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195122,-0.003317,0.004249,0.249964,0,0);}
.m83_c00216{transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);-ms-transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195132,-0.003317,0.004249,0.249964,0,0);}
.m38_c00216{transform:matrix(0.196482,-0.003340,0.004249,0.249964,0,0);-ms-transform:matrix(0.196482,-0.003340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196482,-0.003340,0.004249,0.249964,0,0);}
.m36_c00216{transform:matrix(0.196487,-0.003340,0.004249,0.249964,0,0);-ms-transform:matrix(0.196487,-0.003340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196487,-0.003340,0.004249,0.249964,0,0);}
.m79_c00216{transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-ms-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);}
.m22_c00216{transform:matrix(0.197416,-0.003356,0.004249,0.249964,0,0);-ms-transform:matrix(0.197416,-0.003356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197416,-0.003356,0.004249,0.249964,0,0);}
.md7_c00216{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m56_c00216{transform:matrix(0.198141,-0.003368,0.004249,0.249964,0,0);-ms-transform:matrix(0.198141,-0.003368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198141,-0.003368,0.004249,0.249964,0,0);}
.m3a_c00216{transform:matrix(0.198891,-0.003381,0.004249,0.249964,0,0);-ms-transform:matrix(0.198891,-0.003381,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198891,-0.003381,0.004249,0.249964,0,0);}
.ma6_c00216{transform:matrix(0.199581,-0.003393,0.004249,0.249964,0,0);-ms-transform:matrix(0.199581,-0.003393,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199581,-0.003393,0.004249,0.249964,0,0);}
.m1b_c00216{transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);}
.mae_c00216{transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);}
.mb4_c00216{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.md4_c00216{transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);}
.me0_c00216{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m7e_c00216{transform:matrix(0.200886,-0.003415,0.004249,0.249964,0,0);-ms-transform:matrix(0.200886,-0.003415,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200886,-0.003415,0.004249,0.249964,0,0);}
.m76_c00216{transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);}
.m47_c00216{transform:matrix(0.200991,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.200991,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200991,-0.003417,0.004249,0.249964,0,0);}
.m21_c00216{transform:matrix(0.201331,-0.003423,0.004249,0.249964,0,0);-ms-transform:matrix(0.201331,-0.003423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201331,-0.003423,0.004249,0.249964,0,0);}
.m68_c00216{transform:matrix(0.201676,-0.003428,0.004249,0.249964,0,0);-ms-transform:matrix(0.201676,-0.003428,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201676,-0.003428,0.004249,0.249964,0,0);}
.m45_c00216{transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);-ms-transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201696,-0.003429,0.004249,0.249964,0,0);}
.mcf_c00216{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00216{transform:matrix(0.201856,-0.003432,0.004249,0.249964,0,0);-ms-transform:matrix(0.201856,-0.003432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201856,-0.003432,0.004249,0.249964,0,0);}
.md2_c00216{transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202085,0.000000,0.000000,0.250000,0,0);}
.m5d_c00216{transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-ms-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);}
.m7b_c00216{transform:matrix(0.202626,-0.003445,0.004249,0.249964,0,0);-ms-transform:matrix(0.202626,-0.003445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202626,-0.003445,0.004249,0.249964,0,0);}
.m93_c00216{transform:matrix(0.202896,-0.003449,0.004249,0.249964,0,0);-ms-transform:matrix(0.202896,-0.003449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202896,-0.003449,0.004249,0.249964,0,0);}
.m34_c00216{transform:matrix(0.203171,-0.003454,0.004249,0.249964,0,0);-ms-transform:matrix(0.203171,-0.003454,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203171,-0.003454,0.004249,0.249964,0,0);}
.m67_c00216{transform:matrix(0.204175,-0.003471,0.004249,0.249964,0,0);-ms-transform:matrix(0.204175,-0.003471,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204175,-0.003471,0.004249,0.249964,0,0);}
.m77_c00216{transform:matrix(0.204465,-0.003476,0.004249,0.249964,0,0);-ms-transform:matrix(0.204465,-0.003476,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204465,-0.003476,0.004249,0.249964,0,0);}
.m80_c00216{transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);}
.md0_c00216{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.206340,-0.003508,0.004249,0.249964,0,0);-ms-transform:matrix(0.206340,-0.003508,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206340,-0.003508,0.004249,0.249964,0,0);}
.m73_c00216{transform:matrix(0.206650,-0.003513,0.004249,0.249964,0,0);-ms-transform:matrix(0.206650,-0.003513,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206650,-0.003513,0.004249,0.249964,0,0);}
.m65_c00216{transform:matrix(0.206770,-0.003515,0.004249,0.249964,0,0);-ms-transform:matrix(0.206770,-0.003515,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206770,-0.003515,0.004249,0.249964,0,0);}
.m23_c00216{transform:matrix(0.207045,-0.003520,0.004249,0.249964,0,0);-ms-transform:matrix(0.207045,-0.003520,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207045,-0.003520,0.004249,0.249964,0,0);}
.m87_c00216{transform:matrix(0.207930,-0.003535,0.004249,0.249964,0,0);-ms-transform:matrix(0.207930,-0.003535,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207930,-0.003535,0.004249,0.249964,0,0);}
.ma5_c00216{transform:matrix(0.208430,-0.003543,0.004249,0.249964,0,0);-ms-transform:matrix(0.208430,-0.003543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208430,-0.003543,0.004249,0.249964,0,0);}
.m6a_c00216{transform:matrix(0.208490,-0.003544,0.004249,0.249964,0,0);-ms-transform:matrix(0.208490,-0.003544,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208490,-0.003544,0.004249,0.249964,0,0);}
.md1_c00216{transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.208725,-0.003548,0.004249,0.249964,0,0);-ms-transform:matrix(0.208725,-0.003548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208725,-0.003548,0.004249,0.249964,0,0);}
.m41_c00216{transform:matrix(0.208845,-0.003550,0.004249,0.249964,0,0);-ms-transform:matrix(0.208845,-0.003550,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208845,-0.003550,0.004249,0.249964,0,0);}
.m99_c00216{transform:matrix(0.209135,-0.003555,0.004249,0.249964,0,0);-ms-transform:matrix(0.209135,-0.003555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209135,-0.003555,0.004249,0.249964,0,0);}
.m7a_c00216{transform:matrix(0.209150,-0.003556,0.004249,0.249964,0,0);-ms-transform:matrix(0.209150,-0.003556,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209150,-0.003556,0.004249,0.249964,0,0);}
.m61_c00216{transform:matrix(0.209655,-0.003564,0.004249,0.249964,0,0);-ms-transform:matrix(0.209655,-0.003564,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209655,-0.003564,0.004249,0.249964,0,0);}
.m35_c00216{transform:matrix(0.209810,-0.003567,0.004249,0.249964,0,0);-ms-transform:matrix(0.209810,-0.003567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209810,-0.003567,0.004249,0.249964,0,0);}
.md_c00216{transform:matrix(0.210050,-0.003571,0.004249,0.249964,0,0);-ms-transform:matrix(0.210050,-0.003571,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210050,-0.003571,0.004249,0.249964,0,0);}
.mc8_c00216{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.210125,-0.003572,0.004249,0.249964,0,0);-ms-transform:matrix(0.210125,-0.003572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210125,-0.003572,0.004249,0.249964,0,0);}
.m6b_c00216{transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);-ms-transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);}
.mc3_c00216{transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);}
.me5_c00216{transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);}
.m86_c00216{transform:matrix(0.211904,-0.003602,0.004249,0.249964,0,0);-ms-transform:matrix(0.211904,-0.003602,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211904,-0.003602,0.004249,0.249964,0,0);}
.m15_c00216{transform:matrix(0.212359,-0.003610,0.004249,0.249964,0,0);-ms-transform:matrix(0.212359,-0.003610,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212359,-0.003610,0.004249,0.249964,0,0);}
.md8_c00216{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m9d_c00216{transform:matrix(0.212579,-0.003614,0.004249,0.249964,0,0);-ms-transform:matrix(0.212579,-0.003614,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212579,-0.003614,0.004249,0.249964,0,0);}
.m52_c00216{transform:matrix(0.213014,-0.003621,0.004249,0.249964,0,0);-ms-transform:matrix(0.213014,-0.003621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213014,-0.003621,0.004249,0.249964,0,0);}
.m54_c00216{transform:matrix(0.214079,-0.003639,0.004249,0.249964,0,0);-ms-transform:matrix(0.214079,-0.003639,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214079,-0.003639,0.004249,0.249964,0,0);}
.m8_c00216{transform:matrix(0.215369,-0.003661,0.004249,0.249964,0,0);-ms-transform:matrix(0.215369,-0.003661,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215369,-0.003661,0.004249,0.249964,0,0);}
.mbb_c00216{transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);}
.mdf_c00216{transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);}
.mc7_c00216{transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);}
.mcc_c00216{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.md5_c00216{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mde_c00216{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m30_c00216{transform:matrix(0.218053,-0.003707,0.004249,0.249964,0,0);-ms-transform:matrix(0.218053,-0.003707,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218053,-0.003707,0.004249,0.249964,0,0);}
.m6c_c00216{transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);-ms-transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218258,-0.003710,0.004249,0.249964,0,0);}
.m44_c00216{transform:matrix(0.218598,-0.003716,0.004249,0.249964,0,0);-ms-transform:matrix(0.218598,-0.003716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218598,-0.003716,0.004249,0.249964,0,0);}
.m16_c00216{transform:matrix(0.218753,-0.003719,0.004249,0.249964,0,0);-ms-transform:matrix(0.218753,-0.003719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218753,-0.003719,0.004249,0.249964,0,0);}
.m63_c00216{transform:matrix(0.218988,-0.003723,0.004249,0.249964,0,0);-ms-transform:matrix(0.218988,-0.003723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218988,-0.003723,0.004249,0.249964,0,0);}
.m1e_c00216{transform:matrix(0.218993,-0.003723,0.004249,0.249964,0,0);-ms-transform:matrix(0.218993,-0.003723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218993,-0.003723,0.004249,0.249964,0,0);}
.mc4_c00216{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m60_c00216{transform:matrix(0.220388,-0.003747,0.004249,0.249964,0,0);-ms-transform:matrix(0.220388,-0.003747,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220388,-0.003747,0.004249,0.249964,0,0);}
.m51_c00216{transform:matrix(0.221103,-0.003759,0.004249,0.249964,0,0);-ms-transform:matrix(0.221103,-0.003759,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221103,-0.003759,0.004249,0.249964,0,0);}
.mcb_c00216{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00216{transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);}
.m98_c00216{transform:matrix(0.222598,-0.003784,0.004249,0.249964,0,0);-ms-transform:matrix(0.222598,-0.003784,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222598,-0.003784,0.004249,0.249964,0,0);}
.mad_c00216{transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);}
.m75_c00216{transform:matrix(0.223828,-0.003805,0.004249,0.249964,0,0);-ms-transform:matrix(0.223828,-0.003805,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223828,-0.003805,0.004249,0.249964,0,0);}
.ma9_c00216{transform:matrix(0.224243,-0.003812,0.004249,0.249964,0,0);-ms-transform:matrix(0.224243,-0.003812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224243,-0.003812,0.004249,0.249964,0,0);}
.m20_c00216{transform:matrix(0.224633,-0.003819,0.004249,0.249964,0,0);-ms-transform:matrix(0.224633,-0.003819,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224633,-0.003819,0.004249,0.249964,0,0);}
.m42_c00216{transform:matrix(0.224883,-0.003823,0.004249,0.249964,0,0);-ms-transform:matrix(0.224883,-0.003823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224883,-0.003823,0.004249,0.249964,0,0);}
.mdc_c00216{transform:matrix(0.225270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225270,0.000000,0.000000,0.250000,0,0);}
.mb6_c00216{transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);}
.mce_c00216{transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.226522,-0.003851,0.004249,0.249964,0,0);-ms-transform:matrix(0.226522,-0.003851,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226522,-0.003851,0.004249,0.249964,0,0);}
.m66_c00216{transform:matrix(0.226562,-0.003852,0.004249,0.249964,0,0);-ms-transform:matrix(0.226562,-0.003852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226562,-0.003852,0.004249,0.249964,0,0);}
.m3c_c00216{transform:matrix(0.226822,-0.003856,0.004249,0.249964,0,0);-ms-transform:matrix(0.226822,-0.003856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226822,-0.003856,0.004249,0.249964,0,0);}
.m4b_c00216{transform:matrix(0.226852,-0.003856,0.004249,0.249964,0,0);-ms-transform:matrix(0.226852,-0.003856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226852,-0.003856,0.004249,0.249964,0,0);}
.me3_c00216{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-ms-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);}
.m62_c00216{transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);-ms-transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);}
.m5a_c00216{transform:matrix(0.227757,-0.003872,0.004249,0.249964,0,0);-ms-transform:matrix(0.227757,-0.003872,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227757,-0.003872,0.004249,0.249964,0,0);}
.m40_c00216{transform:matrix(0.228107,-0.003878,0.004249,0.249964,0,0);-ms-transform:matrix(0.228107,-0.003878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228107,-0.003878,0.004249,0.249964,0,0);}
.m90_c00216{transform:matrix(0.228637,-0.003887,0.004249,0.249964,0,0);-ms-transform:matrix(0.228637,-0.003887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228637,-0.003887,0.004249,0.249964,0,0);}
.ma1_c00216{transform:matrix(0.228682,-0.003888,0.004249,0.249964,0,0);-ms-transform:matrix(0.228682,-0.003888,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228682,-0.003888,0.004249,0.249964,0,0);}
.mb2_c00216{transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);}
.m55_c00216{transform:matrix(0.231452,-0.003935,0.004249,0.249964,0,0);-ms-transform:matrix(0.231452,-0.003935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231452,-0.003935,0.004249,0.249964,0,0);}
.mca_c00216{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.mba_c00216{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.md3_c00216{transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234715,0.000000,0.000000,0.250000,0,0);}
.m74_c00216{transform:matrix(0.239090,-0.004065,0.004249,0.249964,0,0);-ms-transform:matrix(0.239090,-0.004065,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239090,-0.004065,0.004249,0.249964,0,0);}
.mc_c00216{transform:matrix(0.239205,-0.004066,0.004249,0.249964,0,0);-ms-transform:matrix(0.239205,-0.004066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239205,-0.004066,0.004249,0.249964,0,0);}
.m64_c00216{transform:matrix(0.240570,-0.004090,0.004249,0.249964,0,0);-ms-transform:matrix(0.240570,-0.004090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240570,-0.004090,0.004249,0.249964,0,0);}
.m49_c00216{transform:matrix(0.241050,-0.004098,0.004249,0.249964,0,0);-ms-transform:matrix(0.241050,-0.004098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241050,-0.004098,0.004249,0.249964,0,0);}
.m7_c00216{transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);-ms-transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);}
.m0_c00216{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.245015,-0.004165,0.004249,0.249964,0,0);-ms-transform:matrix(0.245015,-0.004165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245015,-0.004165,0.004249,0.249964,0,0);}
.m9e_c00216{transform:matrix(0.245075,-0.004166,0.004249,0.249964,0,0);-ms-transform:matrix(0.245075,-0.004166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245075,-0.004166,0.004249,0.249964,0,0);}
.m97_c00216{transform:matrix(0.245420,-0.004172,0.004249,0.249964,0,0);-ms-transform:matrix(0.245420,-0.004172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245420,-0.004172,0.004249,0.249964,0,0);}
.md9_c00216{transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);}
.ma3_c00216{transform:matrix(0.256163,-0.004355,0.004249,0.249964,0,0);-ms-transform:matrix(0.256163,-0.004355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256163,-0.004355,0.004249,0.249964,0,0);}
.mdb_c00216{transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);}
.mda_c00216{transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);}
.ma2_c00216{transform:matrix(0.271531,-0.004616,0.004249,0.249964,0,0);-ms-transform:matrix(0.271531,-0.004616,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271531,-0.004616,0.004249,0.249964,0,0);}
.m4f_c00216{transform:matrix(0.271576,-0.004617,0.004249,0.249964,0,0);-ms-transform:matrix(0.271576,-0.004617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271576,-0.004617,0.004249,0.249964,0,0);}
.mb5_c00216{transform:matrix(0.278320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278320,0.000000,0.000000,0.250000,0,0);}
.maf_c00216{transform:matrix(0.288625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00216{transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);}
.me4_c00216{transform:matrix(0.334590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334590,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.340711,-0.005792,0.004249,0.249964,0,0);-ms-transform:matrix(0.340711,-0.005792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340711,-0.005792,0.004249,0.249964,0,0);}
.m91_c00216{transform:matrix(0.349579,-0.005943,0.004249,0.249964,0,0);-ms-transform:matrix(0.349579,-0.005943,0.004249,0.249964,0,0);-webkit-transform:matrix(0.349579,-0.005943,0.004249,0.249964,0,0);}
.m9f_c00216{transform:matrix(0.689560,-0.011723,0.004249,0.249964,0,0);-ms-transform:matrix(0.689560,-0.011723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.689560,-0.011723,0.004249,0.249964,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:0.000000px;}
.fc0_c00216{color:transparent;}
.fs0_c00216{font-size:52.500000px;}
.fsd_c00216{font-size:58.800000px;}
.fsf_c00216{font-size:59.850000px;}
.fs7_c00216{font-size:59.858648px;}
.fsb_c00216{font-size:60.908799px;}
.fsc_c00216{font-size:61.950000px;}
.fs8_c00216{font-size:61.958951px;}
.fs9_c00216{font-size:64.059255px;}
.fs3_c00216{font-size:65.109406px;}
.fs2_c00216{font-size:66.159558px;}
.fs6_c00216{font-size:67.209710px;}
.fs1_c00216{font-size:69.310013px;}
.fsa_c00216{font-size:70.360165px;}
.fse_c00216{font-size:71.400000px;}
.fs4_c00216{font-size:72.460468px;}
.fs10_c00216{font-size:73.500000px;}
.fs5_c00216{font-size:76.661075px;}
.y0_c00216{bottom:0.000000px;}
.yb5_c00216{bottom:30.513000px;}
.yb6_c00216{bottom:31.228500px;}
.yb7_c00216{bottom:31.495500px;}
.yb8_c00216{bottom:32.514000px;}
.yb9_c00216{bottom:32.632500px;}
.yba_c00216{bottom:33.150000px;}
.yb4_c00216{bottom:52.651500px;}
.yb3_c00216{bottom:69.309000px;}
.yb2_c00216{bottom:88.597500px;}
.yb1_c00216{bottom:104.445000px;}
.yb0_c00216{bottom:121.782000px;}
.yaf_c00216{bottom:136.998000px;}
.yae_c00216{bottom:152.962500px;}
.yaa_c00216{bottom:167.611103px;}
.yab_c00216{bottom:168.331281px;}
.yac_c00216{bottom:169.220021px;}
.yad_c00216{bottom:170.555835px;}
.ya1_c00216{bottom:185.704481px;}
.ya2_c00216{bottom:186.150146px;}
.ya3_c00216{bottom:186.574637px;}
.ya4_c00216{bottom:187.052394px;}
.ya5_c00216{bottom:187.338540px;}
.ya6_c00216{bottom:187.760073px;}
.ya7_c00216{bottom:188.100863px;}
.ya8_c00216{bottom:189.279308px;}
.ya9_c00216{bottom:190.097217px;}
.y98_c00216{bottom:206.519517px;}
.y9a_c00216{bottom:206.520029px;}
.y99_c00216{bottom:206.520045px;}
.y9c_c00216{bottom:206.520356px;}
.y9d_c00216{bottom:206.520369px;}
.ya0_c00216{bottom:206.520551px;}
.y9b_c00216{bottom:206.520728px;}
.y9e_c00216{bottom:206.520884px;}
.y9f_c00216{bottom:206.521287px;}
.y96_c00216{bottom:225.174104px;}
.y97_c00216{bottom:225.174353px;}
.y8d_c00216{bottom:225.174423px;}
.y95_c00216{bottom:225.174815px;}
.y8e_c00216{bottom:225.175011px;}
.y94_c00216{bottom:225.175503px;}
.y93_c00216{bottom:225.175614px;}
.y8f_c00216{bottom:225.175745px;}
.y92_c00216{bottom:225.176180px;}
.y90_c00216{bottom:225.176337px;}
.y91_c00216{bottom:225.176406px;}
.y88_c00216{bottom:241.820502px;}
.y87_c00216{bottom:241.820921px;}
.y89_c00216{bottom:241.821155px;}
.y86_c00216{bottom:241.821392px;}
.y85_c00216{bottom:241.821833px;}
.y8a_c00216{bottom:241.821884px;}
.y8b_c00216{bottom:241.821885px;}
.y8c_c00216{bottom:241.822074px;}
.y7d_c00216{bottom:258.868164px;}
.y80_c00216{bottom:258.868347px;}
.y7e_c00216{bottom:258.868568px;}
.y7f_c00216{bottom:258.868676px;}
.y82_c00216{bottom:258.868700px;}
.y81_c00216{bottom:258.868952px;}
.y84_c00216{bottom:258.868962px;}
.y83_c00216{bottom:258.868983px;}
.y75_c00216{bottom:274.543869px;}
.y76_c00216{bottom:274.703577px;}
.y77_c00216{bottom:275.156723px;}
.y78_c00216{bottom:275.356985px;}
.y79_c00216{bottom:276.058334px;}
.y7a_c00216{bottom:276.447870px;}
.y7b_c00216{bottom:276.652736px;}
.y7c_c00216{bottom:277.233009px;}
.y6e_c00216{bottom:292.635561px;}
.y6f_c00216{bottom:293.248925px;}
.y70_c00216{bottom:293.992073px;}
.y71_c00216{bottom:294.124289px;}
.y72_c00216{bottom:294.918315px;}
.y73_c00216{bottom:295.193276px;}
.y74_c00216{bottom:295.595768px;}
.y6d_c00216{bottom:311.582361px;}
.y6c_c00216{bottom:311.583072px;}
.y6b_c00216{bottom:311.583692px;}
.y69_c00216{bottom:311.584115px;}
.y67_c00216{bottom:311.584139px;}
.y68_c00216{bottom:311.584148px;}
.y6a_c00216{bottom:311.584283px;}
.y60_c00216{bottom:326.933054px;}
.y61_c00216{bottom:327.730541px;}
.y62_c00216{bottom:328.427763px;}
.y63_c00216{bottom:329.243306px;}
.y64_c00216{bottom:329.406224px;}
.y65_c00216{bottom:329.559851px;}
.y66_c00216{bottom:329.869578px;}
.y57_c00216{bottom:343.136094px;}
.y58_c00216{bottom:343.509068px;}
.y59_c00216{bottom:344.193965px;}
.y5a_c00216{bottom:344.586545px;}
.y5b_c00216{bottom:345.227546px;}
.y5c_c00216{bottom:345.453479px;}
.y5d_c00216{bottom:345.769283px;}
.y5e_c00216{bottom:346.650000px;}
.y5f_c00216{bottom:346.800207px;}
.y50_c00216{bottom:359.610435px;}
.y51_c00216{bottom:359.861247px;}
.y52_c00216{bottom:360.604941px;}
.y53_c00216{bottom:361.986690px;}
.y54_c00216{bottom:362.366840px;}
.y55_c00216{bottom:363.485940px;}
.y56_c00216{bottom:364.344866px;}
.y49_c00216{bottom:376.349783px;}
.y4a_c00216{bottom:376.565474px;}
.y4b_c00216{bottom:377.255001px;}
.y4c_c00216{bottom:377.405928px;}
.y4d_c00216{bottom:378.116736px;}
.y4e_c00216{bottom:378.679656px;}
.y4f_c00216{bottom:379.573110px;}
.y42_c00216{bottom:393.902162px;}
.y43_c00216{bottom:394.994595px;}
.y44_c00216{bottom:395.879859px;}
.y45_c00216{bottom:396.092129px;}
.y46_c00216{bottom:396.858924px;}
.y47_c00216{bottom:397.177010px;}
.y48_c00216{bottom:397.529466px;}
.y3b_c00216{bottom:410.645747px;}
.y3c_c00216{bottom:411.330644px;}
.y3d_c00216{bottom:411.986627px;}
.y3e_c00216{bottom:412.965507px;}
.y3f_c00216{bottom:413.351856px;}
.y40_c00216{bottom:413.622026px;}
.y41_c00216{bottom:414.165578px;}
.y37_c00216{bottom:428.468879px;}
.y38_c00216{bottom:429.716889px;}
.y39_c00216{bottom:430.547145px;}
.y3a_c00216{bottom:432.207300px;}
.y31_c00216{bottom:445.752884px;}
.y32_c00216{bottom:447.484272px;}
.y33_c00216{bottom:447.797844px;}
.y34_c00216{bottom:448.160688px;}
.y35_c00216{bottom:448.938657px;}
.y36_c00216{bottom:449.385705px;}
.y2b_c00216{bottom:460.878023px;}
.y2c_c00216{bottom:461.487530px;}
.y2d_c00216{bottom:462.864750px;}
.y2e_c00216{bottom:464.166909px;}
.y2f_c00216{bottom:465.964691px;}
.y30_c00216{bottom:466.203339px;}
.y25_c00216{bottom:480.857766px;}
.y26_c00216{bottom:481.096620px;}
.y27_c00216{bottom:481.588698px;}
.y28_c00216{bottom:482.113482px;}
.y29_c00216{bottom:482.868309px;}
.y2a_c00216{bottom:483.655358px;}
.y1e_c00216{bottom:497.331864px;}
.y1f_c00216{bottom:497.970735px;}
.y20_c00216{bottom:498.968102px;}
.y21_c00216{bottom:499.352637px;}
.y22_c00216{bottom:500.091359px;}
.y23_c00216{bottom:500.790087px;}
.y24_c00216{bottom:501.254349px;}
.y17_c00216{bottom:514.884896px;}
.y18_c00216{bottom:515.268722px;}
.y19_c00216{bottom:516.094587px;}
.y1a_c00216{bottom:516.512214px;}
.y1b_c00216{bottom:517.589027px;}
.y1c_c00216{bottom:517.723848px;}
.y1d_c00216{bottom:519.108134px;}
.y10_c00216{bottom:532.166846px;}
.y11_c00216{bottom:532.642715px;}
.y12_c00216{bottom:533.398776px;}
.y13_c00216{bottom:534.116507px;}
.y14_c00216{bottom:534.950132px;}
.y15_c00216{bottom:535.693239px;}
.y16_c00216{bottom:535.947881px;}
.y8_c00216{bottom:548.370822px;}
.y9_c00216{bottom:548.652650px;}
.ya_c00216{bottom:548.904273px;}
.yb_c00216{bottom:550.018047px;}
.yc_c00216{bottom:550.460912px;}
.yd_c00216{bottom:552.178506px;}
.ye_c00216{bottom:552.675608px;}
.yf_c00216{bottom:553.853304px;}
.y2_c00216{bottom:566.463000px;}
.y3_c00216{bottom:567.142779px;}
.y4_c00216{bottom:567.968724px;}
.y5_c00216{bottom:569.277614px;}
.y6_c00216{bottom:569.855648px;}
.y7_c00216{bottom:570.071964px;}
.y1_c00216{bottom:585.900000px;}
.h2_c00216{height:52.500000px;}
.hf_c00216{height:58.800000px;}
.h11_c00216{height:59.850000px;}
.h9_c00216{height:59.858648px;}
.hd_c00216{height:60.908799px;}
.he_c00216{height:61.950000px;}
.ha_c00216{height:61.958951px;}
.hb_c00216{height:64.059255px;}
.h5_c00216{height:65.109406px;}
.h4_c00216{height:66.159558px;}
.h8_c00216{height:67.209710px;}
.h3_c00216{height:69.310013px;}
.hc_c00216{height:70.360165px;}
.h10_c00216{height:71.400000px;}
.h6_c00216{height:72.460468px;}
.h12_c00216{height:73.500000px;}
.h7_c00216{height:76.661075px;}
.h0_c00216{height:623.100000px;}
.h1_c00216{height:623.250000px;}
.w0_c00216{width:366.390000px;}
.w1_c00216{width:366.750000px;}
.x0_c00216{left:0.000000px;}
.xf_c00216{left:31.189278px;}
.x23_c00216{left:34.882905px;}
.x14_c00216{left:39.135282px;}
.x2_c00216{left:40.147500px;}
.x3c_c00216{left:41.218287px;}
.x60_c00216{left:48.600000px;}
.x8_c00216{left:53.727612px;}
.x37_c00216{left:55.524768px;}
.x3d_c00216{left:56.854542px;}
.x20_c00216{left:58.463601px;}
.x10_c00216{left:60.946788px;}
.x53_c00216{left:62.370734px;}
.x15_c00216{left:64.714149px;}
.x9_c00216{left:66.322475px;}
.x41_c00216{left:69.272537px;}
.x5c_c00216{left:70.981359px;}
.x51_c00216{left:73.712292px;}
.x6b_c00216{left:74.790000px;}
.x61_c00216{left:77.760000px;}
.x1b_c00216{left:78.777693px;}
.x3_c00216{left:80.134500px;}
.x5a_c00216{left:83.162190px;}
.x5e_c00216{left:86.620211px;}
.x2c_c00216{left:88.453445px;}
.x66_c00216{left:94.770000px;}
.x21_c00216{left:99.501095px;}
.x4c_c00216{left:101.657069px;}
.x3e_c00216{left:103.337333px;}
.x38_c00216{left:104.734767px;}
.x45_c00216{left:106.520455px;}
.x11_c00216{left:108.157079px;}
.x64_c00216{left:109.350000px;}
.x6e_c00216{left:113.497500px;}
.x39_c00216{left:115.466303px;}
.x32_c00216{left:117.619004px;}
.x16_c00216{left:119.737511px;}
.xa_c00216{left:122.041644px;}
.x2b_c00216{left:123.312540px;}
.x4_c00216{left:128.719500px;}
.x5d_c00216{left:131.203925px;}
.x24_c00216{left:134.185331px;}
.x2d_c00216{left:138.955887px;}
.x1c_c00216{left:141.153264px;}
.x5f_c00216{left:142.164654px;}
.xb_c00216{left:144.209022px;}
.x17_c00216{left:147.569454px;}
.x54_c00216{left:150.402683px;}
.x6a_c00216{left:152.010000px;}
.x12_c00216{left:153.024344px;}
.x49_c00216{left:158.235804px;}
.x67_c00216{left:160.110000px;}
.x28_c00216{left:162.720968px;}
.x1d_c00216{left:165.185172px;}
.x3a_c00216{left:166.192878px;}
.x6c_c00216{left:171.180000px;}
.x4d_c00216{left:175.909892px;}
.x1_c00216{left:179.010000px;}
.x33_c00216{left:180.814217px;}
.x65_c00216{left:181.980000px;}
.x4a_c00216{left:183.620148px;}
.x29_c00216{left:185.138115px;}
.x3f_c00216{left:189.735812px;}
.x4f_c00216{left:191.852283px;}
.x34_c00216{left:195.948482px;}
.x25_c00216{left:199.309016px;}
.x42_c00216{left:201.515538px;}
.x5_c00216{left:205.713000px;}
.x1e_c00216{left:211.375463px;}
.x2e_c00216{left:214.277513px;}
.x62_c00216{left:217.890000px;}
.x18_c00216{left:219.384402px;}
.x5b_c00216{left:221.692700px;}
.x57_c00216{left:225.743331px;}
.x55_c00216{left:227.094317px;}
.x19_c00216{left:228.374208px;}
.xc_c00216{left:230.063136px;}
.x46_c00216{left:232.576165px;}
.x6_c00216{left:239.715000px;}
.x6f_c00216{left:242.082000px;}
.x2f_c00216{left:243.976527px;}
.x47_c00216{left:246.131313px;}
.x35_c00216{left:250.762787px;}
.x7_c00216{left:252.439500px;}
.xd_c00216{left:254.891361px;}
.x48_c00216{left:258.963409px;}
.x30_c00216{left:264.811455px;}
.x13_c00216{left:267.548307px;}
.x3b_c00216{left:270.220182px;}
.x22_c00216{left:271.819257px;}
.x36_c00216{left:273.445434px;}
.x52_c00216{left:278.943080px;}
.x1f_c00216{left:284.023187px;}
.x6d_c00216{left:285.930000px;}
.x26_c00216{left:289.173925px;}
.x4b_c00216{left:292.985268px;}
.x69_c00216{left:294.840000px;}
.x4e_c00216{left:296.083197px;}
.x2a_c00216{left:298.576903px;}
.x27_c00216{left:301.093814px;}
.x68_c00216{left:305.640000px;}
.x31_c00216{left:306.670311px;}
.x50_c00216{left:309.317757px;}
.x43_c00216{left:310.961484px;}
.xe_c00216{left:313.752852px;}
.x63_c00216{left:316.980000px;}
.x56_c00216{left:318.367184px;}
.x1a_c00216{left:320.658845px;}
.x44_c00216{left:322.533274px;}
.x58_c00216{left:334.568298px;}
.x40_c00216{left:337.189836px;}
.x59_c00216{left:353.470755px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs0_c00216{font-size:46.666667pt;}
.fsd_c00216{font-size:52.266667pt;}
.fsf_c00216{font-size:53.200000pt;}
.fs7_c00216{font-size:53.207687pt;}
.fsb_c00216{font-size:54.141155pt;}
.fsc_c00216{font-size:55.066667pt;}
.fs8_c00216{font-size:55.074623pt;}
.fs9_c00216{font-size:56.941560pt;}
.fs3_c00216{font-size:57.875028pt;}
.fs2_c00216{font-size:58.808496pt;}
.fs6_c00216{font-size:59.741964pt;}
.fs1_c00216{font-size:61.608901pt;}
.fsa_c00216{font-size:62.542369pt;}
.fse_c00216{font-size:63.466667pt;}
.fs4_c00216{font-size:64.409305pt;}
.fs10_c00216{font-size:65.333333pt;}
.fs5_c00216{font-size:68.143178pt;}
.y0_c00216{bottom:0.000000pt;}
.yb5_c00216{bottom:27.122667pt;}
.yb6_c00216{bottom:27.758667pt;}
.yb7_c00216{bottom:27.996000pt;}
.yb8_c00216{bottom:28.901333pt;}
.yb9_c00216{bottom:29.006667pt;}
.yba_c00216{bottom:29.466667pt;}
.yb4_c00216{bottom:46.801333pt;}
.yb3_c00216{bottom:61.608000pt;}
.yb2_c00216{bottom:78.753333pt;}
.yb1_c00216{bottom:92.840000pt;}
.yb0_c00216{bottom:108.250667pt;}
.yaf_c00216{bottom:121.776000pt;}
.yae_c00216{bottom:135.966667pt;}
.yaa_c00216{bottom:148.987647pt;}
.yab_c00216{bottom:149.627805pt;}
.yac_c00216{bottom:150.417796pt;}
.yad_c00216{bottom:151.605187pt;}
.ya1_c00216{bottom:165.070649pt;}
.ya2_c00216{bottom:165.466796pt;}
.ya3_c00216{bottom:165.844121pt;}
.ya4_c00216{bottom:166.268795pt;}
.ya5_c00216{bottom:166.523147pt;}
.ya6_c00216{bottom:166.897843pt;}
.ya7_c00216{bottom:167.200767pt;}
.ya8_c00216{bottom:168.248273pt;}
.ya9_c00216{bottom:168.975304pt;}
.y98_c00216{bottom:183.572904pt;}
.y9a_c00216{bottom:183.573359pt;}
.y99_c00216{bottom:183.573373pt;}
.y9c_c00216{bottom:183.573649pt;}
.y9d_c00216{bottom:183.573661pt;}
.ya0_c00216{bottom:183.573823pt;}
.y9b_c00216{bottom:183.573980pt;}
.y9e_c00216{bottom:183.574119pt;}
.y9f_c00216{bottom:183.574477pt;}
.y96_c00216{bottom:200.154759pt;}
.y97_c00216{bottom:200.154980pt;}
.y8d_c00216{bottom:200.155043pt;}
.y95_c00216{bottom:200.155391pt;}
.y8e_c00216{bottom:200.155565pt;}
.y94_c00216{bottom:200.156003pt;}
.y93_c00216{bottom:200.156101pt;}
.y8f_c00216{bottom:200.156217pt;}
.y92_c00216{bottom:200.156604pt;}
.y90_c00216{bottom:200.156744pt;}
.y91_c00216{bottom:200.156805pt;}
.y88_c00216{bottom:214.951557pt;}
.y87_c00216{bottom:214.951929pt;}
.y89_c00216{bottom:214.952137pt;}
.y86_c00216{bottom:214.952348pt;}
.y85_c00216{bottom:214.952740pt;}
.y8a_c00216{bottom:214.952785pt;}
.y8b_c00216{bottom:214.952787pt;}
.y8c_c00216{bottom:214.952955pt;}
.y7d_c00216{bottom:230.105035pt;}
.y80_c00216{bottom:230.105197pt;}
.y7e_c00216{bottom:230.105393pt;}
.y7f_c00216{bottom:230.105489pt;}
.y82_c00216{bottom:230.105511pt;}
.y81_c00216{bottom:230.105735pt;}
.y84_c00216{bottom:230.105744pt;}
.y83_c00216{bottom:230.105763pt;}
.y75_c00216{bottom:244.038995pt;}
.y76_c00216{bottom:244.180957pt;}
.y77_c00216{bottom:244.583753pt;}
.y78_c00216{bottom:244.761764pt;}
.y79_c00216{bottom:245.385185pt;}
.y7a_c00216{bottom:245.731440pt;}
.y7b_c00216{bottom:245.913543pt;}
.y7c_c00216{bottom:246.429341pt;}
.y6e_c00216{bottom:260.120499pt;}
.y6f_c00216{bottom:260.665711pt;}
.y70_c00216{bottom:261.326287pt;}
.y71_c00216{bottom:261.443812pt;}
.y72_c00216{bottom:262.149613pt;}
.y73_c00216{bottom:262.394023pt;}
.y74_c00216{bottom:262.751793pt;}
.y6d_c00216{bottom:276.962099pt;}
.y6c_c00216{bottom:276.962731pt;}
.y6b_c00216{bottom:276.963281pt;}
.y69_c00216{bottom:276.963657pt;}
.y67_c00216{bottom:276.963679pt;}
.y68_c00216{bottom:276.963687pt;}
.y6a_c00216{bottom:276.963807pt;}
.y60_c00216{bottom:290.607159pt;}
.y61_c00216{bottom:291.316036pt;}
.y62_c00216{bottom:291.935789pt;}
.y63_c00216{bottom:292.660716pt;}
.y64_c00216{bottom:292.805532pt;}
.y65_c00216{bottom:292.942089pt;}
.y66_c00216{bottom:293.217403pt;}
.y57_c00216{bottom:305.009861pt;}
.y58_c00216{bottom:305.341393pt;}
.y59_c00216{bottom:305.950191pt;}
.y5a_c00216{bottom:306.299151pt;}
.y5b_c00216{bottom:306.868929pt;}
.y5c_c00216{bottom:307.069759pt;}
.y5d_c00216{bottom:307.350473pt;}
.y5e_c00216{bottom:308.133333pt;}
.y5f_c00216{bottom:308.266851pt;}
.y50_c00216{bottom:319.653720pt;}
.y51_c00216{bottom:319.876664pt;}
.y52_c00216{bottom:320.537725pt;}
.y53_c00216{bottom:321.765947pt;}
.y54_c00216{bottom:322.103857pt;}
.y55_c00216{bottom:323.098613pt;}
.y56_c00216{bottom:323.862103pt;}
.y49_c00216{bottom:334.533140pt;}
.y4a_c00216{bottom:334.724865pt;}
.y4b_c00216{bottom:335.337779pt;}
.y4c_c00216{bottom:335.471936pt;}
.y4d_c00216{bottom:336.103765pt;}
.y4e_c00216{bottom:336.604139pt;}
.y4f_c00216{bottom:337.398320pt;}
.y42_c00216{bottom:350.135255pt;}
.y43_c00216{bottom:351.106307pt;}
.y44_c00216{bottom:351.893208pt;}
.y45_c00216{bottom:352.081892pt;}
.y46_c00216{bottom:352.763488pt;}
.y47_c00216{bottom:353.046231pt;}
.y48_c00216{bottom:353.359525pt;}
.y3b_c00216{bottom:365.018441pt;}
.y3c_c00216{bottom:365.627239pt;}
.y3d_c00216{bottom:366.210335pt;}
.y3e_c00216{bottom:367.080451pt;}
.y3f_c00216{bottom:367.423872pt;}
.y40_c00216{bottom:367.664023pt;}
.y41_c00216{bottom:368.147180pt;}
.y37_c00216{bottom:380.861225pt;}
.y38_c00216{bottom:381.970568pt;}
.y39_c00216{bottom:382.708573pt;}
.y3a_c00216{bottom:384.184267pt;}
.y31_c00216{bottom:396.224785pt;}
.y32_c00216{bottom:397.763797pt;}
.y33_c00216{bottom:398.042528pt;}
.y34_c00216{bottom:398.365056pt;}
.y35_c00216{bottom:399.056584pt;}
.y36_c00216{bottom:399.453960pt;}
.y2b_c00216{bottom:409.669353pt;}
.y2c_c00216{bottom:410.211137pt;}
.y2d_c00216{bottom:411.435333pt;}
.y2e_c00216{bottom:412.592808pt;}
.y2f_c00216{bottom:414.190836pt;}
.y30_c00216{bottom:414.402968pt;}
.y25_c00216{bottom:427.429125pt;}
.y26_c00216{bottom:427.641440pt;}
.y27_c00216{bottom:428.078843pt;}
.y28_c00216{bottom:428.545317pt;}
.y29_c00216{bottom:429.216275pt;}
.y2a_c00216{bottom:429.915873pt;}
.y1e_c00216{bottom:442.072768pt;}
.y1f_c00216{bottom:442.640653pt;}
.y20_c00216{bottom:443.527201pt;}
.y21_c00216{bottom:443.869011pt;}
.y22_c00216{bottom:444.525652pt;}
.y23_c00216{bottom:445.146744pt;}
.y24_c00216{bottom:445.559421pt;}
.y17_c00216{bottom:457.675463pt;}
.y18_c00216{bottom:458.016641pt;}
.y19_c00216{bottom:458.750744pt;}
.y1a_c00216{bottom:459.121968pt;}
.y1b_c00216{bottom:460.079135pt;}
.y1c_c00216{bottom:460.198976pt;}
.y1d_c00216{bottom:461.429452pt;}
.y10_c00216{bottom:473.037196pt;}
.y11_c00216{bottom:473.460191pt;}
.y12_c00216{bottom:474.132245pt;}
.y13_c00216{bottom:474.770228pt;}
.y14_c00216{bottom:475.511228pt;}
.y15_c00216{bottom:476.171768pt;}
.y16_c00216{bottom:476.398116pt;}
.y8_c00216{bottom:487.440731pt;}
.y9_c00216{bottom:487.691244pt;}
.ya_c00216{bottom:487.914909pt;}
.yb_c00216{bottom:488.904931pt;}
.yc_c00216{bottom:489.298588pt;}
.yd_c00216{bottom:490.825339pt;}
.ye_c00216{bottom:491.267207pt;}
.yf_c00216{bottom:492.314048pt;}
.y2_c00216{bottom:503.522667pt;}
.y3_c00216{bottom:504.126915pt;}
.y4_c00216{bottom:504.861088pt;}
.y5_c00216{bottom:506.024545pt;}
.y6_c00216{bottom:506.538353pt;}
.y7_c00216{bottom:506.730635pt;}
.y1_c00216{bottom:520.800000pt;}
.h2_c00216{height:46.666667pt;}
.hf_c00216{height:52.266667pt;}
.h11_c00216{height:53.200000pt;}
.h9_c00216{height:53.207687pt;}
.hd_c00216{height:54.141155pt;}
.he_c00216{height:55.066667pt;}
.ha_c00216{height:55.074623pt;}
.hb_c00216{height:56.941560pt;}
.h5_c00216{height:57.875028pt;}
.h4_c00216{height:58.808496pt;}
.h8_c00216{height:59.741964pt;}
.h3_c00216{height:61.608901pt;}
.hc_c00216{height:62.542369pt;}
.h10_c00216{height:63.466667pt;}
.h6_c00216{height:64.409305pt;}
.h12_c00216{height:65.333333pt;}
.h7_c00216{height:68.143178pt;}
.h0_c00216{height:553.866667pt;}
.h1_c00216{height:554.000000pt;}
.w0_c00216{width:325.680000pt;}
.w1_c00216{width:326.000000pt;}
.x0_c00216{left:0.000000pt;}
.xf_c00216{left:27.723803pt;}
.x23_c00216{left:31.007027pt;}
.x14_c00216{left:34.786917pt;}
.x2_c00216{left:35.686667pt;}
.x3c_c00216{left:36.638477pt;}
.x60_c00216{left:43.200000pt;}
.x8_c00216{left:47.757877pt;}
.x37_c00216{left:49.355349pt;}
.x3d_c00216{left:50.537371pt;}
.x20_c00216{left:51.967645pt;}
.x10_c00216{left:54.174923pt;}
.x53_c00216{left:55.440652pt;}
.x15_c00216{left:57.523688pt;}
.x9_c00216{left:58.953311pt;}
.x41_c00216{left:61.575588pt;}
.x5c_c00216{left:63.094541pt;}
.x51_c00216{left:65.522037pt;}
.x6b_c00216{left:66.480000pt;}
.x61_c00216{left:69.120000pt;}
.x1b_c00216{left:70.024616pt;}
.x3_c00216{left:71.230667pt;}
.x5a_c00216{left:73.921947pt;}
.x5e_c00216{left:76.995743pt;}
.x2c_c00216{left:78.625284pt;}
.x66_c00216{left:84.240000pt;}
.x21_c00216{left:88.445417pt;}
.x4c_c00216{left:90.361839pt;}
.x3e_c00216{left:91.855407pt;}
.x38_c00216{left:93.097571pt;}
.x45_c00216{left:94.684849pt;}
.x11_c00216{left:96.139625pt;}
.x64_c00216{left:97.200000pt;}
.x6e_c00216{left:100.886667pt;}
.x39_c00216{left:102.636713pt;}
.x32_c00216{left:104.550225pt;}
.x16_c00216{left:106.433343pt;}
.xa_c00216{left:108.481461pt;}
.x2b_c00216{left:109.611147pt;}
.x4_c00216{left:114.417333pt;}
.x5d_c00216{left:116.625711pt;}
.x24_c00216{left:119.275849pt;}
.x2d_c00216{left:123.516344pt;}
.x1c_c00216{left:125.469568pt;}
.x5f_c00216{left:126.368581pt;}
.xb_c00216{left:128.185797pt;}
.x17_c00216{left:131.172848pt;}
.x54_c00216{left:133.691273pt;}
.x6a_c00216{left:135.120000pt;}
.x12_c00216{left:136.021639pt;}
.x49_c00216{left:140.654048pt;}
.x67_c00216{left:142.320000pt;}
.x28_c00216{left:144.640860pt;}
.x1d_c00216{left:146.831264pt;}
.x3a_c00216{left:147.727003pt;}
.x6c_c00216{left:152.160000pt;}
.x4d_c00216{left:156.364348pt;}
.x1_c00216{left:159.120000pt;}
.x33_c00216{left:160.723748pt;}
.x65_c00216{left:161.760000pt;}
.x4a_c00216{left:163.217909pt;}
.x29_c00216{left:164.567213pt;}
.x3f_c00216{left:168.654055pt;}
.x4f_c00216{left:170.535363pt;}
.x34_c00216{left:174.176428pt;}
.x25_c00216{left:177.163569pt;}
.x42_c00216{left:179.124923pt;}
.x5_c00216{left:182.856000pt;}
.x1e_c00216{left:187.889300pt;}
.x2e_c00216{left:190.468900pt;}
.x62_c00216{left:193.680000pt;}
.x18_c00216{left:195.008357pt;}
.x5b_c00216{left:197.060177pt;}
.x57_c00216{left:200.660739pt;}
.x55_c00216{left:201.861615pt;}
.x19_c00216{left:202.999296pt;}
.xc_c00216{left:204.500565pt;}
.x46_c00216{left:206.734369pt;}
.x6_c00216{left:213.080000pt;}
.x6f_c00216{left:215.184000pt;}
.x2f_c00216{left:216.868024pt;}
.x47_c00216{left:218.783389pt;}
.x35_c00216{left:222.900255pt;}
.x7_c00216{left:224.390667pt;}
.xd_c00216{left:226.570099pt;}
.x48_c00216{left:230.189697pt;}
.x30_c00216{left:235.387960pt;}
.x13_c00216{left:237.820717pt;}
.x3b_c00216{left:240.195717pt;}
.x22_c00216{left:241.617117pt;}
.x36_c00216{left:243.062608pt;}
.x52_c00216{left:247.949404pt;}
.x1f_c00216{left:252.465055pt;}
.x6d_c00216{left:254.160000pt;}
.x26_c00216{left:257.043489pt;}
.x4b_c00216{left:260.431349pt;}
.x69_c00216{left:262.080000pt;}
.x4e_c00216{left:263.185064pt;}
.x2a_c00216{left:265.401692pt;}
.x27_c00216{left:267.638945pt;}
.x68_c00216{left:271.680000pt;}
.x31_c00216{left:272.595832pt;}
.x50_c00216{left:274.949117pt;}
.x43_c00216{left:276.410208pt;}
.xe_c00216{left:278.891424pt;}
.x63_c00216{left:281.760000pt;}
.x56_c00216{left:282.993052pt;}
.x1a_c00216{left:285.030084pt;}
.x44_c00216{left:286.696244pt;}
.x58_c00216{left:297.394043pt;}
.x40_c00216{left:299.724299pt;}
.x59_c00216{left:314.196227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00217 {
    display:none;
  }
  .loading-indicator_c00217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00217 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00217 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00217" -> "#page-container .classname_c00217")
 */
.pf_c00217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00217 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00217 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00217 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00217 {overflow:visible;}
  }
}
.c_c00217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00217 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00217:after { /* webkit #35443 */
  content: '';
}
.t_c00217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00217 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00217 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00217 { /* info for Javascript */
  display:none;
}
.l_c00217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00217:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00217 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00217.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00217{transform:matrix(0.012902,0.000258,-0.004999,0.249950,0,0);-ms-transform:matrix(0.012902,0.000258,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.012902,0.000258,-0.004999,0.249950,0,0);}
.m20_c00217{transform:matrix(0.036960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036960,0.000000,0.000000,0.250000,0,0);}
.m6e_c00217{transform:matrix(0.097291,0.002140,-0.005499,0.249940,0,0);-ms-transform:matrix(0.097291,0.002140,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.097291,0.002140,-0.005499,0.249940,0,0);}
.md3_c00217{transform:matrix(0.143127,0.003721,-0.006498,0.249916,0,0);-ms-transform:matrix(0.143127,0.003721,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.143127,0.003721,-0.006498,0.249916,0,0);}
.mc2_c00217{transform:matrix(0.143397,0.003728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.143397,0.003728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.143397,0.003728,-0.006498,0.249916,0,0);}
.md5_c00217{transform:matrix(0.146620,0.003812,-0.006498,0.249916,0,0);-ms-transform:matrix(0.146620,0.003812,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.146620,0.003812,-0.006498,0.249916,0,0);}
.mbd_c00217{transform:matrix(0.148540,0.003862,-0.006498,0.249916,0,0);-ms-transform:matrix(0.148540,0.003862,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.148540,0.003862,-0.006498,0.249916,0,0);}
.mc1_c00217{transform:matrix(0.152413,0.003963,-0.006498,0.249916,0,0);-ms-transform:matrix(0.152413,0.003963,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.152413,0.003963,-0.006498,0.249916,0,0);}
.ma4_c00217{transform:matrix(0.155547,0.004044,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155547,0.004044,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155547,0.004044,-0.006498,0.249916,0,0);}
.md8_c00217{transform:matrix(0.155597,0.004046,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155597,0.004046,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155597,0.004046,-0.006498,0.249916,0,0);}
.mba_c00217{transform:matrix(0.155722,0.004049,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155722,0.004049,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155722,0.004049,-0.006498,0.249916,0,0);}
.m88_c00217{transform:matrix(0.156657,0.004073,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156657,0.004073,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156657,0.004073,-0.006498,0.249916,0,0);}
.mb9_c00217{transform:matrix(0.156757,0.004076,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156757,0.004076,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156757,0.004076,-0.006498,0.249916,0,0);}
.md1_c00217{transform:matrix(0.156782,0.004076,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156782,0.004076,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156782,0.004076,-0.006498,0.249916,0,0);}
.m34_c00217{transform:matrix(0.157971,0.003001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157971,0.003001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157971,0.003001,-0.004749,0.249955,0,0);}
.mdc_c00217{transform:matrix(0.159716,0.004153,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159716,0.004153,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159716,0.004153,-0.006498,0.249916,0,0);}
.md9_c00217{transform:matrix(0.160286,0.004167,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160286,0.004167,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160286,0.004167,-0.006498,0.249916,0,0);}
.mda_c00217{transform:matrix(0.160696,0.004178,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160696,0.004178,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160696,0.004178,-0.006498,0.249916,0,0);}
.m41_c00217{transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161351,0.003066,-0.004749,0.249955,0,0);}
.mc7_c00217{transform:matrix(0.161735,0.004205,-0.006498,0.249916,0,0);-ms-transform:matrix(0.161735,0.004205,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.161735,0.004205,-0.006498,0.249916,0,0);}
.m44_c00217{transform:matrix(0.161996,0.003078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161996,0.003078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161996,0.003078,-0.004749,0.249955,0,0);}
.m70_c00217{transform:matrix(0.162460,0.004224,-0.006498,0.249916,0,0);-ms-transform:matrix(0.162460,0.004224,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.162460,0.004224,-0.006498,0.249916,0,0);}
.m1e_c00217{transform:matrix(0.163937,0.003279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163937,0.003279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163937,0.003279,-0.004999,0.249950,0,0);}
.md_c00217{transform:matrix(0.164332,0.003287,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164332,0.003287,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164332,0.003287,-0.004999,0.249950,0,0);}
.maf_c00217{transform:matrix(0.165089,0.004292,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165089,0.004292,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165089,0.004292,-0.006498,0.249916,0,0);}
.mae_c00217{transform:matrix(0.165309,0.004298,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165309,0.004298,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165309,0.004298,-0.006498,0.249916,0,0);}
.m0_c00217{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00217{transform:matrix(0.168158,0.004372,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168158,0.004372,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168158,0.004372,-0.006498,0.249916,0,0);}
.m22_c00217{transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168390,0.003199,-0.004749,0.249955,0,0);}
.m84_c00217{transform:matrix(0.168523,0.004382,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168523,0.004382,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168523,0.004382,-0.006498,0.249916,0,0);}
.m86_c00217{transform:matrix(0.168608,0.004384,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168608,0.004384,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168608,0.004384,-0.006498,0.249916,0,0);}
.m18_c00217{transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169306,0.003386,-0.004999,0.249950,0,0);}
.mbe_c00217{transform:matrix(0.169668,0.004411,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169668,0.004411,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169668,0.004411,-0.006498,0.249916,0,0);}
.md4_c00217{transform:matrix(0.170807,0.004441,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170807,0.004441,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170807,0.004441,-0.006498,0.249916,0,0);}
.mdf_c00217{transform:matrix(0.171107,0.004449,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171107,0.004449,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171107,0.004449,-0.006498,0.249916,0,0);}
.mbc_c00217{transform:matrix(0.171987,0.004472,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171987,0.004472,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171987,0.004472,-0.006498,0.249916,0,0);}
.mb0_c00217{transform:matrix(0.172332,0.004481,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172332,0.004481,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172332,0.004481,-0.006498,0.249916,0,0);}
.m23_c00217{transform:matrix(0.173199,0.003291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173199,0.003291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173199,0.003291,-0.004749,0.249955,0,0);}
.m9e_c00217{transform:matrix(0.173976,0.004523,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173976,0.004523,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173976,0.004523,-0.006498,0.249916,0,0);}
.ma_c00217{transform:matrix(0.174455,0.003489,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174455,0.003489,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174455,0.003489,-0.004999,0.249950,0,0);}
.mac_c00217{transform:matrix(0.175891,0.004573,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175891,0.004573,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175891,0.004573,-0.006498,0.249916,0,0);}
.md2_c00217{transform:matrix(0.176215,0.004582,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176215,0.004582,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176215,0.004582,-0.006498,0.249916,0,0);}
.m6a_c00217{transform:matrix(0.176537,0.003884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176537,0.003884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176537,0.003884,-0.005499,0.249940,0,0);}
.mbf_c00217{transform:matrix(0.177610,0.004618,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177610,0.004618,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177610,0.004618,-0.006498,0.249916,0,0);}
.m89_c00217{transform:matrix(0.177870,0.004625,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177870,0.004625,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177870,0.004625,-0.006498,0.249916,0,0);}
.m5e_c00217{transform:matrix(0.177963,0.003381,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177963,0.003381,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177963,0.003381,-0.004749,0.249955,0,0);}
.mcd_c00217{transform:matrix(0.178335,0.004637,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178335,0.004637,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178335,0.004637,-0.006498,0.249916,0,0);}
.mde_c00217{transform:matrix(0.179374,0.004664,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179374,0.004664,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179374,0.004664,-0.006498,0.249916,0,0);}
.m1c_c00217{transform:matrix(0.179524,0.003590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179524,0.003590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179524,0.003590,-0.004999,0.249950,0,0);}
.m1b_c00217{transform:matrix(0.179549,0.003591,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179549,0.003591,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179549,0.003591,-0.004999,0.249950,0,0);}
.m3d_c00217{transform:matrix(0.179578,0.003412,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179578,0.003412,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179578,0.003412,-0.004749,0.249955,0,0);}
.m94_c00217{transform:matrix(0.179949,0.004679,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179949,0.004679,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179949,0.004679,-0.006498,0.249916,0,0);}
.m61_c00217{transform:matrix(0.180058,0.003421,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180058,0.003421,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180058,0.003421,-0.004749,0.249955,0,0);}
.m6b_c00217{transform:matrix(0.180816,0.003978,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180816,0.003978,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180816,0.003978,-0.005499,0.249940,0,0);}
.mb_c00217{transform:matrix(0.180874,0.003617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180874,0.003617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180874,0.003617,-0.004999,0.249950,0,0);}
.mb8_c00217{transform:matrix(0.181309,0.004714,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181309,0.004714,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181309,0.004714,-0.006498,0.249916,0,0);}
.m19_c00217{transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);}
.mbb_c00217{transform:matrix(0.182548,0.004746,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182548,0.004746,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182548,0.004746,-0.006498,0.249916,0,0);}
.mb7_c00217{transform:matrix(0.182558,0.004747,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182558,0.004747,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182558,0.004747,-0.006498,0.249916,0,0);}
.mc8_c00217{transform:matrix(0.182628,0.004748,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182628,0.004748,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182628,0.004748,-0.006498,0.249916,0,0);}
.mcc_c00217{transform:matrix(0.183123,0.004761,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183123,0.004761,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183123,0.004761,-0.006498,0.249916,0,0);}
.md6_c00217{transform:matrix(0.183513,0.004771,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183513,0.004771,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183513,0.004771,-0.006498,0.249916,0,0);}
.m99_c00217{transform:matrix(0.183798,0.004779,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183798,0.004779,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183798,0.004779,-0.006498,0.249916,0,0);}
.m26_c00217{transform:matrix(0.184087,0.003498,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184087,0.003498,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184087,0.003498,-0.004749,0.249955,0,0);}
.m53_c00217{transform:matrix(0.184117,0.003498,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184117,0.003498,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184117,0.003498,-0.004749,0.249955,0,0);}
.m87_c00217{transform:matrix(0.184368,0.004794,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184368,0.004794,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184368,0.004794,-0.006498,0.249916,0,0);}
.m9_c00217{transform:matrix(0.184503,0.003690,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184503,0.003690,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184503,0.003690,-0.004999,0.249950,0,0);}
.m9a_c00217{transform:matrix(0.184598,0.004800,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184598,0.004800,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184598,0.004800,-0.006498,0.249916,0,0);}
.m78_c00217{transform:matrix(0.185087,0.004812,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185087,0.004812,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185087,0.004812,-0.006498,0.249916,0,0);}
.mcb_c00217{transform:matrix(0.185647,0.004827,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185647,0.004827,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185647,0.004827,-0.006498,0.249916,0,0);}
.m77_c00217{transform:matrix(0.186202,0.004841,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186202,0.004841,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186202,0.004841,-0.006498,0.249916,0,0);}
.m10_c00217{transform:matrix(0.186448,0.003729,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186448,0.003729,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186448,0.003729,-0.004999,0.249950,0,0);}
.m6c_c00217{transform:matrix(0.186885,0.004111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186885,0.004111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186885,0.004111,-0.005499,0.249940,0,0);}
.m36_c00217{transform:matrix(0.187101,0.003555,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187101,0.003555,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187101,0.003555,-0.004749,0.249955,0,0);}
.m69_c00217{transform:matrix(0.187311,0.003559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187311,0.003559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187311,0.003559,-0.004749,0.249955,0,0);}
.m5c_c00217{transform:matrix(0.187466,0.003562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187466,0.003562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187466,0.003562,-0.004749,0.249955,0,0);}
.m2e_c00217{transform:matrix(0.187486,0.003562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187486,0.003562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187486,0.003562,-0.004749,0.249955,0,0);}
.m6_c00217{transform:matrix(0.187607,0.003752,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187607,0.003752,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187607,0.003752,-0.004999,0.249950,0,0);}
.mb5_c00217{transform:matrix(0.188131,0.004891,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188131,0.004891,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188131,0.004891,-0.006498,0.249916,0,0);}
.m8c_c00217{transform:matrix(0.188276,0.004895,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188276,0.004895,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188276,0.004895,-0.006498,0.249916,0,0);}
.m74_c00217{transform:matrix(0.188621,0.004904,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188621,0.004904,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188621,0.004904,-0.006498,0.249916,0,0);}
.m59_c00217{transform:matrix(0.189031,0.003592,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189031,0.003592,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189031,0.003592,-0.004749,0.249955,0,0);}
.m83_c00217{transform:matrix(0.189211,0.004919,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189211,0.004919,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189211,0.004919,-0.006498,0.249916,0,0);}
.m72_c00217{transform:matrix(0.189296,0.004922,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189296,0.004922,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189296,0.004922,-0.006498,0.249916,0,0);}
.mb6_c00217{transform:matrix(0.189396,0.004924,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189396,0.004924,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189396,0.004924,-0.006498,0.249916,0,0);}
.ma1_c00217{transform:matrix(0.189926,0.004938,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189926,0.004938,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189926,0.004938,-0.006498,0.249916,0,0);}
.m5_c00217{transform:matrix(0.190147,0.003803,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190147,0.003803,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190147,0.003803,-0.004999,0.249950,0,0);}
.m39_c00217{transform:matrix(0.190396,0.003618,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190396,0.003618,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190396,0.003618,-0.004749,0.249955,0,0);}
.m17_c00217{transform:matrix(0.191002,0.003820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191002,0.003820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191002,0.003820,-0.004999,0.249950,0,0);}
.mb1_c00217{transform:matrix(0.191220,0.004972,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191220,0.004972,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191220,0.004972,-0.006498,0.249916,0,0);}
.m37_c00217{transform:matrix(0.191225,0.003633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191225,0.003633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191225,0.003633,-0.004749,0.249955,0,0);}
.m8_c00217{transform:matrix(0.191262,0.003825,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191262,0.003825,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191262,0.003825,-0.004999,0.249950,0,0);}
.ma7_c00217{transform:matrix(0.191780,0.004986,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191780,0.004986,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191780,0.004986,-0.006498,0.249916,0,0);}
.m54_c00217{transform:matrix(0.191780,0.003644,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191780,0.003644,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191780,0.003644,-0.004749,0.249955,0,0);}
.m16_c00217{transform:matrix(0.191902,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191902,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191902,0.003838,-0.004999,0.249950,0,0);}
.ma3_c00217{transform:matrix(0.191975,0.004991,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191975,0.004991,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191975,0.004991,-0.006498,0.249916,0,0);}
.m3c_c00217{transform:matrix(0.192065,0.003649,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192065,0.003649,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192065,0.003649,-0.004749,0.249955,0,0);}
.m40_c00217{transform:matrix(0.192320,0.003654,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192320,0.003654,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192320,0.003654,-0.004749,0.249955,0,0);}
.m85_c00217{transform:matrix(0.192330,0.005001,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192330,0.005001,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192330,0.005001,-0.006498,0.249916,0,0);}
.m8f_c00217{transform:matrix(0.192395,0.005002,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192395,0.005002,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192395,0.005002,-0.006498,0.249916,0,0);}
.m8d_c00217{transform:matrix(0.192415,0.005003,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192415,0.005003,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192415,0.005003,-0.006498,0.249916,0,0);}
.m7a_c00217{transform:matrix(0.192470,0.005004,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192470,0.005004,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192470,0.005004,-0.006498,0.249916,0,0);}
.ma9_c00217{transform:matrix(0.193275,0.005025,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193275,0.005025,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193275,0.005025,-0.006498,0.249916,0,0);}
.m7f_c00217{transform:matrix(0.193370,0.005028,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193370,0.005028,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193370,0.005028,-0.006498,0.249916,0,0);}
.mc3_c00217{transform:matrix(0.193430,0.005029,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193430,0.005029,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193430,0.005029,-0.006498,0.249916,0,0);}
.mc9_c00217{transform:matrix(0.193600,0.005034,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193600,0.005034,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193600,0.005034,-0.006498,0.249916,0,0);}
.m5f_c00217{transform:matrix(0.193645,0.003679,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193645,0.003679,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193645,0.003679,-0.004749,0.249955,0,0);}
.m93_c00217{transform:matrix(0.193785,0.005038,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193785,0.005038,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193785,0.005038,-0.006498,0.249916,0,0);}
.m11_c00217{transform:matrix(0.193926,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193926,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193926,0.003879,-0.004999,0.249950,0,0);}
.m8a_c00217{transform:matrix(0.194159,0.005048,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194159,0.005048,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194159,0.005048,-0.006498,0.249916,0,0);}
.m75_c00217{transform:matrix(0.194234,0.005050,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194234,0.005050,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194234,0.005050,-0.006498,0.249916,0,0);}
.md0_c00217{transform:matrix(0.194389,0.005054,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194389,0.005054,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194389,0.005054,-0.006498,0.249916,0,0);}
.m3a_c00217{transform:matrix(0.194760,0.003700,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194760,0.003700,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194760,0.003700,-0.004749,0.249955,0,0);}
.m25_c00217{transform:matrix(0.194890,0.003703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194890,0.003703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194890,0.003703,-0.004749,0.249955,0,0);}
.mdb_c00217{transform:matrix(0.195044,0.005071,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195044,0.005071,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195044,0.005071,-0.006498,0.249916,0,0);}
.m56_c00217{transform:matrix(0.195160,0.003708,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195160,0.003708,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195160,0.003708,-0.004749,0.249955,0,0);}
.m8e_c00217{transform:matrix(0.195569,0.005085,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195569,0.005085,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195569,0.005085,-0.006498,0.249916,0,0);}
.md7_c00217{transform:matrix(0.196069,0.005098,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196069,0.005098,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196069,0.005098,-0.006498,0.249916,0,0);}
.m2b_c00217{transform:matrix(0.196570,0.003735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196570,0.003735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196570,0.003735,-0.004749,0.249955,0,0);}
.mc6_c00217{transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);}
.mcf_c00217{transform:matrix(0.197488,0.005135,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197488,0.005135,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197488,0.005135,-0.006498,0.249916,0,0);}
.m4_c00217{transform:matrix(0.197705,0.003954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197705,0.003954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197705,0.003954,-0.004999,0.249950,0,0);}
.me_c00217{transform:matrix(0.198150,0.003963,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198150,0.003963,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198150,0.003963,-0.004999,0.249950,0,0);}
.m71_c00217{transform:matrix(0.198418,0.005159,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198418,0.005159,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198418,0.005159,-0.006498,0.249916,0,0);}
.m64_c00217{transform:matrix(0.198604,0.003773,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198604,0.003773,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198604,0.003773,-0.004749,0.249955,0,0);}
.ma2_c00217{transform:matrix(0.199053,0.005175,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199053,0.005175,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199053,0.005175,-0.006498,0.249916,0,0);}
.mdd_c00217{transform:matrix(0.199443,0.005186,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199443,0.005186,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199443,0.005186,-0.006498,0.249916,0,0);}
.m9f_c00217{transform:matrix(0.199797,0.005195,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199797,0.005195,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199797,0.005195,-0.006498,0.249916,0,0);}
.m98_c00217{transform:matrix(0.199882,0.005197,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199882,0.005197,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199882,0.005197,-0.006498,0.249916,0,0);}
.mab_c00217{transform:matrix(0.199987,0.005200,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199987,0.005200,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199987,0.005200,-0.006498,0.249916,0,0);}
.m2d_c00217{transform:matrix(0.200144,0.003803,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200144,0.003803,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200144,0.003803,-0.004749,0.249955,0,0);}
.m65_c00217{transform:matrix(0.200154,0.003803,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200154,0.003803,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200154,0.003803,-0.004749,0.249955,0,0);}
.m4a_c00217{transform:matrix(0.200829,0.003816,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200829,0.003816,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200829,0.003816,-0.004749,0.249955,0,0);}
.m96_c00217{transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);}
.m3_c00217{transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202544,0.004051,-0.004999,0.249950,0,0);}
.m7_c00217{transform:matrix(0.203634,0.004073,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203634,0.004073,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203634,0.004073,-0.004999,0.249950,0,0);}
.m5b_c00217{transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204263,0.003881,-0.004749,0.249955,0,0);}
.mc0_c00217{transform:matrix(0.204721,0.005323,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204721,0.005323,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204721,0.005323,-0.006498,0.249916,0,0);}
.m33_c00217{transform:matrix(0.204848,0.003892,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204848,0.003892,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204848,0.003892,-0.004749,0.249955,0,0);}
.m31_c00217{transform:matrix(0.205063,0.003896,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205063,0.003896,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205063,0.003896,-0.004749,0.249955,0,0);}
.m97_c00217{transform:matrix(0.205196,0.005335,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205196,0.005335,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205196,0.005335,-0.006498,0.249916,0,0);}
.m52_c00217{transform:matrix(0.205698,0.003908,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205698,0.003908,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205698,0.003908,-0.004749,0.249955,0,0);}
.m9d_c00217{transform:matrix(0.205740,0.005349,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205740,0.005349,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205740,0.005349,-0.006498,0.249916,0,0);}
.mca_c00217{transform:matrix(0.206220,0.005362,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206220,0.005362,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206220,0.005362,-0.006498,0.249916,0,0);}
.m7c_c00217{transform:matrix(0.206515,0.005369,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206515,0.005369,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206515,0.005369,-0.006498,0.249916,0,0);}
.mce_c00217{transform:matrix(0.207160,0.005386,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207160,0.005386,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207160,0.005386,-0.006498,0.249916,0,0);}
.mb2_c00217{transform:matrix(0.207290,0.005390,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207290,0.005390,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207290,0.005390,-0.006498,0.249916,0,0);}
.m35_c00217{transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);}
.mc5_c00217{transform:matrix(0.207620,0.005398,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207620,0.005398,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207620,0.005398,-0.006498,0.249916,0,0);}
.maa_c00217{transform:matrix(0.208814,0.005429,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208814,0.005429,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208814,0.005429,-0.006498,0.249916,0,0);}
.m7e_c00217{transform:matrix(0.208954,0.005433,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208954,0.005433,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208954,0.005433,-0.006498,0.249916,0,0);}
.m1d_c00217{transform:matrix(0.209338,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209338,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209338,0.004187,-0.004999,0.249950,0,0);}
.m28_c00217{transform:matrix(0.211182,0.004012,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211182,0.004012,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211182,0.004012,-0.004749,0.249955,0,0);}
.m9c_c00217{transform:matrix(0.211369,0.005496,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211369,0.005496,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211369,0.005496,-0.006498,0.249916,0,0);}
.m66_c00217{transform:matrix(0.211667,0.004022,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211667,0.004022,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211667,0.004022,-0.004749,0.249955,0,0);}
.m4b_c00217{transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);}
.m2c_c00217{transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);}
.m4e_c00217{transform:matrix(0.211957,0.004027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211957,0.004027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211957,0.004027,-0.004749,0.249955,0,0);}
.ma5_c00217{transform:matrix(0.212018,0.005512,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212018,0.005512,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212018,0.005512,-0.006498,0.249916,0,0);}
.m51_c00217{transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);}
.m3b_c00217{transform:matrix(0.212402,0.004036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212402,0.004036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212402,0.004036,-0.004749,0.249955,0,0);}
.m4f_c00217{transform:matrix(0.212757,0.004042,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212757,0.004042,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212757,0.004042,-0.004749,0.249955,0,0);}
.m32_c00217{transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);}
.m7b_c00217{transform:matrix(0.214657,0.005581,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214657,0.005581,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214657,0.005581,-0.006498,0.249916,0,0);}
.m7d_c00217{transform:matrix(0.214697,0.005582,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214697,0.005582,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214697,0.005582,-0.006498,0.249916,0,0);}
.m15_c00217{transform:matrix(0.214757,0.004295,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214757,0.004295,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214757,0.004295,-0.004999,0.249950,0,0);}
.m38_c00217{transform:matrix(0.214761,0.004080,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214761,0.004080,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214761,0.004080,-0.004749,0.249955,0,0);}
.m14_c00217{transform:matrix(0.214837,0.004297,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214837,0.004297,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214837,0.004297,-0.004999,0.249950,0,0);}
.m24_c00217{transform:matrix(0.214996,0.004085,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214996,0.004085,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214996,0.004085,-0.004749,0.249955,0,0);}
.ma6_c00217{transform:matrix(0.215062,0.005592,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215062,0.005592,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215062,0.005592,-0.006498,0.249916,0,0);}
.m21_c00217{transform:matrix(0.216071,0.004105,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216071,0.004105,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216071,0.004105,-0.004749,0.249955,0,0);}
.m4c_c00217{transform:matrix(0.216636,0.004116,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216636,0.004116,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216636,0.004116,-0.004749,0.249955,0,0);}
.m95_c00217{transform:matrix(0.216702,0.005634,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216702,0.005634,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216702,0.005634,-0.006498,0.249916,0,0);}
.mc4_c00217{transform:matrix(0.216942,0.005640,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216942,0.005640,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216942,0.005640,-0.006498,0.249916,0,0);}
.ma0_c00217{transform:matrix(0.217167,0.005646,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217167,0.005646,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217167,0.005646,-0.006498,0.249916,0,0);}
.mc_c00217{transform:matrix(0.217402,0.004348,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217402,0.004348,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217402,0.004348,-0.004999,0.249950,0,0);}
.mad_c00217{transform:matrix(0.218446,0.005680,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218446,0.005680,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218446,0.005680,-0.006498,0.249916,0,0);}
.m9b_c00217{transform:matrix(0.219151,0.005698,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219151,0.005698,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219151,0.005698,-0.006498,0.249916,0,0);}
.m91_c00217{transform:matrix(0.219341,0.005703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219341,0.005703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219341,0.005703,-0.006498,0.249916,0,0);}
.m45_c00217{transform:matrix(0.219520,0.004171,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219520,0.004171,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219520,0.004171,-0.004749,0.249955,0,0);}
.m46_c00217{transform:matrix(0.222245,0.004223,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222245,0.004223,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222245,0.004223,-0.004749,0.249955,0,0);}
.m92_c00217{transform:matrix(0.222535,0.005786,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222535,0.005786,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222535,0.005786,-0.006498,0.249916,0,0);}
.m55_c00217{transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);}
.m3e_c00217{transform:matrix(0.223005,0.004237,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223005,0.004237,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223005,0.004237,-0.004749,0.249955,0,0);}
.m80_c00217{transform:matrix(0.223350,0.005807,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223350,0.005807,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223350,0.005807,-0.006498,0.249916,0,0);}
.m1a_c00217{transform:matrix(0.226200,0.004524,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226200,0.004524,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226200,0.004524,-0.004999,0.249950,0,0);}
.mf_c00217{transform:matrix(0.226525,0.004530,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226525,0.004530,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226525,0.004530,-0.004999,0.249950,0,0);}
.m27_c00217{transform:matrix(0.227334,0.004319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227334,0.004319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227334,0.004319,-0.004749,0.249955,0,0);}
.m5a_c00217{transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);}
.m76_c00217{transform:matrix(0.227613,0.005918,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227613,0.005918,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227613,0.005918,-0.006498,0.249916,0,0);}
.m47_c00217{transform:matrix(0.228419,0.004340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228419,0.004340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228419,0.004340,-0.004749,0.249955,0,0);}
.m30_c00217{transform:matrix(0.229399,0.004359,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229399,0.004359,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229399,0.004359,-0.004749,0.249955,0,0);}
.m90_c00217{transform:matrix(0.232107,0.006035,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232107,0.006035,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232107,0.006035,-0.006498,0.249916,0,0);}
.m73_c00217{transform:matrix(0.235016,0.006110,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235016,0.006110,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235016,0.006110,-0.006498,0.249916,0,0);}
.m42_c00217{transform:matrix(0.236432,0.004492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236432,0.004492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236432,0.004492,-0.004749,0.249955,0,0);}
.m60_c00217{transform:matrix(0.237062,0.004504,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237062,0.004504,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237062,0.004504,-0.004749,0.249955,0,0);}
.m50_c00217{transform:matrix(0.243526,0.004627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243526,0.004627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243526,0.004627,-0.004749,0.249955,0,0);}
.mb4_c00217{transform:matrix(0.244167,0.006348,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244167,0.006348,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244167,0.006348,-0.006498,0.249916,0,0);}
.m48_c00217{transform:matrix(0.245116,0.004657,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245116,0.004657,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245116,0.004657,-0.004749,0.249955,0,0);}
.m3f_c00217{transform:matrix(0.249220,0.004735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249220,0.004735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249220,0.004735,-0.004749,0.249955,0,0);}
.m43_c00217{transform:matrix(0.250615,0.004762,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250615,0.004762,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250615,0.004762,-0.004749,0.249955,0,0);}
.m79_c00217{transform:matrix(0.251070,0.006528,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251070,0.006528,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251070,0.006528,-0.006498,0.249916,0,0);}
.m6f_c00217{transform:matrix(0.251685,0.006544,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251685,0.006544,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251685,0.006544,-0.006498,0.249916,0,0);}
.m4d_c00217{transform:matrix(0.252504,0.004798,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252504,0.004798,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252504,0.004798,-0.004749,0.249955,0,0);}
.m8b_c00217{transform:matrix(0.253224,0.006584,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253224,0.006584,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253224,0.006584,-0.006498,0.249916,0,0);}
.m6d_c00217{transform:matrix(0.253264,0.005572,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253264,0.005572,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253264,0.005572,-0.005499,0.249940,0,0);}
.m13_c00217{transform:matrix(0.255114,0.005102,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255114,0.005102,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255114,0.005102,-0.004999,0.249950,0,0);}
.m2f_c00217{transform:matrix(0.256994,0.004883,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256994,0.004883,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256994,0.004883,-0.004749,0.249955,0,0);}
.m68_c00217{transform:matrix(0.259883,0.004938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259883,0.004938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259883,0.004938,-0.004749,0.249955,0,0);}
.m5d_c00217{transform:matrix(0.263138,0.005000,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263138,0.005000,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263138,0.005000,-0.004749,0.249955,0,0);}
.m67_c00217{transform:matrix(0.269961,0.005129,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269961,0.005129,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269961,0.005129,-0.004749,0.249955,0,0);}
.m63_c00217{transform:matrix(0.270146,0.005133,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270146,0.005133,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270146,0.005133,-0.004749,0.249955,0,0);}
.m82_c00217{transform:matrix(0.273313,0.007106,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273313,0.007106,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273313,0.007106,-0.006498,0.249916,0,0);}
.m2a_c00217{transform:matrix(0.274505,0.005216,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274505,0.005216,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274505,0.005216,-0.004749,0.249955,0,0);}
.m81_c00217{transform:matrix(0.275537,0.007164,-0.006498,0.249916,0,0);-ms-transform:matrix(0.275537,0.007164,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.275537,0.007164,-0.006498,0.249916,0,0);}
.mb3_c00217{transform:matrix(0.277966,0.007227,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277966,0.007227,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277966,0.007227,-0.006498,0.249916,0,0);}
.m12_c00217{transform:matrix(0.279424,0.005588,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279424,0.005588,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279424,0.005588,-0.004999,0.249950,0,0);}
.m57_c00217{transform:matrix(0.289438,0.005499,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289438,0.005499,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289438,0.005499,-0.004749,0.249955,0,0);}
.m1f_c00217{transform:matrix(0.311885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311885,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{transform:matrix(0.317943,0.006041,-0.004749,0.249955,0,0);-ms-transform:matrix(0.317943,0.006041,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.317943,0.006041,-0.004749,0.249955,0,0);}
.m49_c00217{transform:matrix(0.348137,0.006615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.348137,0.006615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.348137,0.006615,-0.004749,0.249955,0,0);}
.m58_c00217{transform:matrix(0.365049,0.006936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.365049,0.006936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.365049,0.006936,-0.004749,0.249955,0,0);}
.m29_c00217{transform:matrix(0.666895,0.012671,-0.004749,0.249955,0,0);-ms-transform:matrix(0.666895,0.012671,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.666895,0.012671,-0.004749,0.249955,0,0);}
.m2_c00217{transform:matrix(1.465567,0.029311,-0.004999,0.249950,0,0);-ms-transform:matrix(1.465567,0.029311,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.465567,0.029311,-0.004999,0.249950,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:0.000000px;}
.fc0_c00217{color:transparent;}
.fs5_c00217{font-size:23.100000px;}
.fsa_c00217{font-size:59.860802px;}
.fsf_c00217{font-size:59.870226px;}
.fs9_c00217{font-size:60.910991px;}
.fs11_c00217{font-size:60.920581px;}
.fs7_c00217{font-size:61.961181px;}
.fs8_c00217{font-size:63.011370px;}
.fs3_c00217{font-size:63.012599px;}
.fs13_c00217{font-size:63.021290px;}
.fs6_c00217{font-size:65.111749px;}
.fs12_c00217{font-size:65.122000px;}
.fsb_c00217{font-size:66.161939px;}
.fs1_c00217{font-size:66.163229px;}
.fse_c00217{font-size:66.172355px;}
.fs10_c00217{font-size:67.222710px;}
.fs2_c00217{font-size:68.263649px;}
.fsd_c00217{font-size:68.273065px;}
.fs14_c00217{font-size:69.323419px;}
.fs4_c00217{font-size:70.364069px;}
.fs15_c00217{font-size:70.373774px;}
.fs17_c00217{font-size:71.424129px;}
.fs16_c00217{font-size:72.474484px;}
.fsc_c00217{font-size:73.517785px;}
.fs0_c00217{font-size:79.800000px;}
.y0_c00217{bottom:0.000000px;}
.ye1_c00217{bottom:27.728559px;}
.ye0_c00217{bottom:28.798140px;}
.ydf_c00217{bottom:29.010453px;}
.yde_c00217{bottom:29.970396px;}
.ydd_c00217{bottom:30.203544px;}
.ydc_c00217{bottom:31.082664px;}
.ydb_c00217{bottom:31.398003px;}
.yda_c00217{bottom:31.775418px;}
.yd9_c00217{bottom:32.584053px;}
.yd8_c00217{bottom:46.908642px;}
.yd7_c00217{bottom:47.163519px;}
.yd6_c00217{bottom:47.653212px;}
.yd5_c00217{bottom:47.985657px;}
.yd4_c00217{bottom:48.941604px;}
.yd3_c00217{bottom:49.228875px;}
.yd2_c00217{bottom:49.598007px;}
.yd1_c00217{bottom:62.523990px;}
.yd0_c00217{bottom:62.928900px;}
.ycf_c00217{bottom:64.093362px;}
.yce_c00217{bottom:65.011761px;}
.ycd_c00217{bottom:65.832681px;}
.ycc_c00217{bottom:67.131060px;}
.ycb_c00217{bottom:67.695267px;}
.yca_c00217{bottom:80.982324px;}
.yc9_c00217{bottom:81.780183px;}
.yc8_c00217{bottom:82.015296px;}
.yc7_c00217{bottom:82.186542px;}
.yc6_c00217{bottom:82.892874px;}
.yc5_c00217{bottom:83.767815px;}
.yc4_c00217{bottom:84.184596px;}
.yc3_c00217{bottom:84.436809px;}
.yc2_c00217{bottom:97.005387px;}
.yc1_c00217{bottom:98.279529px;}
.yc0_c00217{bottom:99.868143px;}
.ybf_c00217{bottom:100.855626px;}
.ybe_c00217{bottom:101.471796px;}
.ybd_c00217{bottom:102.267264px;}
.ybc_c00217{bottom:115.115145px;}
.ybb_c00217{bottom:115.584069px;}
.yba_c00217{bottom:116.193321px;}
.yb9_c00217{bottom:118.162905px;}
.yb8_c00217{bottom:118.786902px;}
.yb7_c00217{bottom:120.094068px;}
.yb6_c00217{bottom:130.599108px;}
.yb5_c00217{bottom:131.859225px;}
.yb4_c00217{bottom:132.185748px;}
.yb3_c00217{bottom:133.948539px;}
.yb2_c00217{bottom:136.890216px;}
.yb1_c00217{bottom:138.734238px;}
.yb0_c00217{bottom:149.299944px;}
.yaf_c00217{bottom:149.766537px;}
.yae_c00217{bottom:150.630315px;}
.yad_c00217{bottom:151.763877px;}
.yac_c00217{bottom:152.250894px;}
.yab_c00217{bottom:152.646090px;}
.yaa_c00217{bottom:153.128853px;}
.ya9_c00217{bottom:153.473232px;}
.ya8_c00217{bottom:154.396059px;}
.ya7_c00217{bottom:166.004595px;}
.ya6_c00217{bottom:167.872032px;}
.ya5_c00217{bottom:169.401339px;}
.ya4_c00217{bottom:171.130248px;}
.ya3_c00217{bottom:171.453051px;}
.ya2_c00217{bottom:172.924560px;}
.ya1_c00217{bottom:173.302587px;}
.ya0_c00217{bottom:184.259121px;}
.y9f_c00217{bottom:184.845861px;}
.y9e_c00217{bottom:186.041064px;}
.y9d_c00217{bottom:186.713217px;}
.y9c_c00217{bottom:188.721057px;}
.y9b_c00217{bottom:189.983070px;}
.y9a_c00217{bottom:190.590324px;}
.y99_c00217{bottom:203.400708px;}
.y98_c00217{bottom:204.247554px;}
.y97_c00217{bottom:205.067793px;}
.y96_c00217{bottom:206.289138px;}
.y95_c00217{bottom:207.325575px;}
.y94_c00217{bottom:208.141248px;}
.y93_c00217{bottom:220.016265px;}
.y92_c00217{bottom:220.673061px;}
.y91_c00217{bottom:222.114582px;}
.y90_c00217{bottom:222.679836px;}
.y8f_c00217{bottom:223.568115px;}
.y8e_c00217{bottom:224.748372px;}
.y8d_c00217{bottom:225.909420px;}
.y8c_c00217{bottom:226.512429px;}
.y8b_c00217{bottom:237.509259px;}
.y8a_c00217{bottom:238.547322px;}
.y89_c00217{bottom:239.250531px;}
.y88_c00217{bottom:241.040943px;}
.y87_c00217{bottom:241.504302px;}
.y86_c00217{bottom:241.770438px;}
.y85_c00217{bottom:242.283444px;}
.y84_c00217{bottom:243.259614px;}
.y83_c00217{bottom:254.541645px;}
.y82_c00217{bottom:254.733162px;}
.y81_c00217{bottom:256.254075px;}
.y80_c00217{bottom:256.753647px;}
.y7f_c00217{bottom:258.449361px;}
.y7e_c00217{bottom:259.986951px;}
.y7d_c00217{bottom:260.543028px;}
.y7c_c00217{bottom:271.862613px;}
.y7b_c00217{bottom:273.420546px;}
.y7a_c00217{bottom:274.445661px;}
.y79_c00217{bottom:276.061002px;}
.y78_c00217{bottom:276.770685px;}
.y77_c00217{bottom:277.830705px;}
.y76_c00217{bottom:287.467374px;}
.y75_c00217{bottom:288.871647px;}
.y74_c00217{bottom:289.405167px;}
.y73_c00217{bottom:291.897345px;}
.y72_c00217{bottom:293.941842px;}
.y71_c00217{bottom:294.299745px;}
.y70_c00217{bottom:294.847500px;}
.y6f_c00217{bottom:305.565519px;}
.y6e_c00217{bottom:307.685835px;}
.y6d_c00217{bottom:308.825391px;}
.y6c_c00217{bottom:310.068237px;}
.y6b_c00217{bottom:311.316000px;}
.y6a_c00217{bottom:323.649861px;}
.y69_c00217{bottom:324.003506px;}
.y68_c00217{bottom:325.136039px;}
.y67_c00217{bottom:325.659263px;}
.y66_c00217{bottom:326.506730px;}
.y65_c00217{bottom:326.980232px;}
.y64_c00217{bottom:327.399149px;}
.y63_c00217{bottom:328.295159px;}
.y62_c00217{bottom:340.297579px;}
.y61_c00217{bottom:341.013202px;}
.y60_c00217{bottom:342.024743px;}
.y5f_c00217{bottom:342.622989px;}
.y5e_c00217{bottom:343.119448px;}
.y5d_c00217{bottom:344.031064px;}
.y5c_c00217{bottom:344.425861px;}
.y5b_c00217{bottom:345.577342px;}
.y5a_c00217{bottom:357.885654px;}
.y59_c00217{bottom:358.217548px;}
.y58_c00217{bottom:359.130475px;}
.y57_c00217{bottom:359.499669px;}
.y56_c00217{bottom:359.785611px;}
.y55_c00217{bottom:360.509908px;}
.y54_c00217{bottom:361.013361px;}
.y53_c00217{bottom:362.040273px;}
.y52_c00217{bottom:362.419612px;}
.y51_c00217{bottom:363.129564px;}
.y50_c00217{bottom:375.319818px;}
.y4f_c00217{bottom:376.477753px;}
.y4e_c00217{bottom:378.706887px;}
.y4d_c00217{bottom:380.685205px;}
.y4c_c00217{bottom:393.343138px;}
.y4b_c00217{bottom:394.568886px;}
.y4a_c00217{bottom:395.242491px;}
.y49_c00217{bottom:396.805925px;}
.y48_c00217{bottom:397.530311px;}
.y47_c00217{bottom:398.507358px;}
.y46_c00217{bottom:409.312120px;}
.y45_c00217{bottom:410.077328px;}
.y44_c00217{bottom:410.411795px;}
.y43_c00217{bottom:412.109955px;}
.y42_c00217{bottom:412.392828px;}
.y41_c00217{bottom:412.690746px;}
.y40_c00217{bottom:413.446170px;}
.y3f_c00217{bottom:413.890986px;}
.y3e_c00217{bottom:415.758222px;}
.y3d_c00217{bottom:416.334463px;}
.y3c_c00217{bottom:427.216313px;}
.y3b_c00217{bottom:428.559483px;}
.y3a_c00217{bottom:430.030095px;}
.y39_c00217{bottom:431.578518px;}
.y38_c00217{bottom:431.889412px;}
.y37_c00217{bottom:433.347278px;}
.y36_c00217{bottom:444.128340px;}
.y35_c00217{bottom:446.285506px;}
.y34_c00217{bottom:446.741616px;}
.y33_c00217{bottom:448.518240px;}
.y32_c00217{bottom:449.294341px;}
.y31_c00217{bottom:450.149476px;}
.y30_c00217{bottom:451.171645px;}
.y2f_c00217{bottom:461.147593px;}
.y2e_c00217{bottom:461.676069px;}
.y2d_c00217{bottom:462.768845px;}
.y2c_c00217{bottom:463.019873px;}
.y2b_c00217{bottom:464.411983px;}
.y2a_c00217{bottom:464.832957px;}
.y29_c00217{bottom:465.991738px;}
.y28_c00217{bottom:466.561055px;}
.y27_c00217{bottom:478.851471px;}
.y26_c00217{bottom:479.446551px;}
.y25_c00217{bottom:480.579397px;}
.y24_c00217{bottom:481.299022px;}
.y23_c00217{bottom:482.130510px;}
.y22_c00217{bottom:482.572089px;}
.y21_c00217{bottom:483.844500px;}
.y20_c00217{bottom:492.483000px;}
.y1f_c00217{bottom:495.663420px;}
.y1e_c00217{bottom:496.813320px;}
.y1d_c00217{bottom:497.202660px;}
.y1c_c00217{bottom:498.967440px;}
.y1b_c00217{bottom:501.107880px;}
.y1a_c00217{bottom:513.941970px;}
.y19_c00217{bottom:514.561860px;}
.y18_c00217{bottom:515.799180px;}
.y17_c00217{bottom:516.290220px;}
.y16_c00217{bottom:516.647430px;}
.y15_c00217{bottom:517.827300px;}
.y14_c00217{bottom:518.387130px;}
.y13_c00217{bottom:520.827840px;}
.y12_c00217{bottom:531.426720px;}
.y11_c00217{bottom:532.912170px;}
.y10_c00217{bottom:533.576550px;}
.yf_c00217{bottom:535.094520px;}
.ye_c00217{bottom:535.510020px;}
.yd_c00217{bottom:536.218020px;}
.yc_c00217{bottom:548.497050px;}
.yb_c00217{bottom:550.303620px;}
.ya_c00217{bottom:550.574670px;}
.y9_c00217{bottom:551.467800px;}
.y8_c00217{bottom:552.611790px;}
.y7_c00217{bottom:553.500540px;}
.y6_c00217{bottom:565.500690px;}
.y5_c00217{bottom:565.821270px;}
.y4_c00217{bottom:566.523450px;}
.y3_c00217{bottom:570.892890px;}
.y2_c00217{bottom:571.050000px;}
.y1_c00217{bottom:582.667500px;}
.h7_c00217{height:23.100000px;}
.hc_c00217{height:59.860802px;}
.h11_c00217{height:59.870226px;}
.hb_c00217{height:60.910991px;}
.h13_c00217{height:60.920581px;}
.h9_c00217{height:61.961181px;}
.ha_c00217{height:63.011370px;}
.h5_c00217{height:63.012599px;}
.h15_c00217{height:63.021290px;}
.h8_c00217{height:65.111749px;}
.h14_c00217{height:65.122000px;}
.hd_c00217{height:66.161939px;}
.h3_c00217{height:66.163229px;}
.h10_c00217{height:66.172355px;}
.h12_c00217{height:67.222710px;}
.h4_c00217{height:68.263649px;}
.hf_c00217{height:68.273065px;}
.h16_c00217{height:69.323419px;}
.h6_c00217{height:70.364069px;}
.h17_c00217{height:70.373774px;}
.h19_c00217{height:71.424129px;}
.h18_c00217{height:72.474484px;}
.he_c00217{height:73.517785px;}
.h2_c00217{height:79.800000px;}
.h0_c00217{height:623.100000px;}
.h1_c00217{height:623.250000px;}
.w0_c00217{width:366.390000px;}
.w1_c00217{width:366.750000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:24.294000px;}
.x64_c00217{left:26.140500px;}
.x4b_c00217{left:27.561000px;}
.x36_c00217{left:29.418298px;}
.x16_c00217{left:30.779310px;}
.x3_c00217{left:32.149500px;}
.x1a_c00217{left:39.690000px;}
.x67_c00217{left:41.105610px;}
.x75_c00217{left:47.168025px;}
.x4f_c00217{left:49.642500px;}
.x2d_c00217{left:52.039108px;}
.x54_c00217{left:54.823470px;}
.x1f_c00217{left:59.942553px;}
.x1b_c00217{left:62.640000px;}
.x72_c00217{left:65.179356px;}
.x58_c00217{left:66.390804px;}
.xc_c00217{left:67.799880px;}
.x24_c00217{left:68.842870px;}
.x61_c00217{left:69.941412px;}
.x7b_c00217{left:71.175525px;}
.x32_c00217{left:72.458772px;}
.x6b_c00217{left:74.000439px;}
.x7_c00217{left:78.932730px;}
.x4c_c00217{left:84.277500px;}
.x59_c00217{left:86.121804px;}
.xd_c00217{left:88.574880px;}
.x3a_c00217{left:90.503716px;}
.x41_c00217{left:92.928538px;}
.x46_c00217{left:94.367710px;}
.x5a_c00217{left:96.357804px;}
.x68_c00217{left:97.702110px;}
.x1c_c00217{left:98.832000px;}
.x25_c00217{left:100.503054px;}
.x33_c00217{left:103.950378px;}
.x69_c00217{left:110.117610px;}
.x70_c00217{left:113.449140px;}
.x42_c00217{left:114.891966px;}
.x47_c00217{left:118.025254px;}
.x37_c00217{left:119.324668px;}
.x20_c00217{left:120.931053px;}
.x11_c00217{left:122.173800px;}
.x78_c00217{left:123.220074px;}
.x62_c00217{left:124.525857px;}
.x55_c00217{left:128.047986px;}
.x26_c00217{left:129.267193px;}
.x79_c00217{left:132.686760px;}
.x2e_c00217{left:137.634084px;}
.x8_c00217{left:139.133430px;}
.x4d_c00217{left:140.770500px;}
.x12_c00217{left:142.887390px;}
.x73_c00217{left:145.332336px;}
.x76_c00217{left:146.498565px;}
.x3b_c00217{left:147.552799px;}
.x5d_c00217{left:150.127602px;}
.x7a_c00217{left:154.825578px;}
.x53_c00217{left:157.433460px;}
.x7c_c00217{left:158.592738px;}
.x48_c00217{left:160.417456px;}
.x2a_c00217{left:163.383357px;}
.xe_c00217{left:164.473380px;}
.x1d_c00217{left:165.835500px;}
.x1_c00217{left:166.860000px;}
.x34_c00217{left:171.941719px;}
.x3c_c00217{left:175.550841px;}
.x2f_c00217{left:176.646156px;}
.x65_c00217{left:181.264056px;}
.x5b_c00217{left:183.041304px;}
.x9_c00217{left:186.115860px;}
.x5e_c00217{left:187.121013px;}
.x63_c00217{left:188.820057px;}
.x43_c00217{left:193.107948px;}
.x27_c00217{left:195.053190px;}
.x6f_c00217{left:196.256229px;}
.xf_c00217{left:197.692380px;}
.xa_c00217{left:200.418660px;}
.x1e_c00217{left:203.710500px;}
.x56_c00217{left:208.797477px;}
.x5c_c00217{left:210.087804px;}
.x28_c00217{left:211.951125px;}
.x77_c00217{left:214.024380px;}
.x21_c00217{left:216.356553px;}
.x13_c00217{left:217.957860px;}
.x38_c00217{left:220.615383px;}
.x2b_c00217{left:222.224659px;}
.x6c_c00217{left:223.582122px;}
.x74_c00217{left:224.733699px;}
.x44_c00217{left:226.332075px;}
.x22_c00217{left:229.568553px;}
.x71_c00217{left:230.647308px;}
.x3d_c00217{left:231.722424px;}
.x17_c00217{left:236.319420px;}
.x50_c00217{left:237.895500px;}
.x49_c00217{left:243.218889px;}
.x4_c00217{left:250.621500px;}
.x3e_c00217{left:252.259323px;}
.x35_c00217{left:254.532949px;}
.x18_c00217{left:256.836840px;}
.x51_c00217{left:258.415500px;}
.x4a_c00217{left:260.884047px;}
.x30_c00217{left:262.422631px;}
.x14_c00217{left:263.767440px;}
.x6d_c00217{left:269.043390px;}
.x5f_c00217{left:270.712842px;}
.x10_c00217{left:271.964880px;}
.x39_c00217{left:273.266890px;}
.x2c_c00217{left:275.938032px;}
.x66_c00217{left:279.462630px;}
.x45_c00217{left:282.493129px;}
.x5_c00217{left:285.730500px;}
.x15_c00217{left:286.733730px;}
.x4e_c00217{left:288.946500px;}
.x31_c00217{left:290.771328px;}
.x29_c00217{left:291.842484px;}
.x6e_c00217{left:293.628375px;}
.xb_c00217{left:295.474050px;}
.x60_c00217{left:298.110285px;}
.x6_c00217{left:301.759500px;}
.x3f_c00217{left:302.993292px;}
.x57_c00217{left:304.982457px;}
.x6a_c00217{left:307.258110px;}
.x52_c00217{left:312.426000px;}
.x23_c00217{left:314.897553px;}
.x19_c00217{left:317.333040px;}
.x40_c00217{left:321.409134px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.fs5_c00217{font-size:20.533333pt;}
.fsa_c00217{font-size:53.209602pt;}
.fsf_c00217{font-size:53.217979pt;}
.fs9_c00217{font-size:54.143104pt;}
.fs11_c00217{font-size:54.151627pt;}
.fs7_c00217{font-size:55.076605pt;}
.fs8_c00217{font-size:56.010107pt;}
.fs3_c00217{font-size:56.011199pt;}
.fs13_c00217{font-size:56.018925pt;}
.fs6_c00217{font-size:57.877111pt;}
.fs12_c00217{font-size:57.886222pt;}
.fsb_c00217{font-size:58.810612pt;}
.fs1_c00217{font-size:58.811759pt;}
.fse_c00217{font-size:58.819871pt;}
.fs10_c00217{font-size:59.753520pt;}
.fs2_c00217{font-size:60.678799pt;}
.fsd_c00217{font-size:60.687169pt;}
.fs14_c00217{font-size:61.620817pt;}
.fs4_c00217{font-size:62.545839pt;}
.fs15_c00217{font-size:62.554466pt;}
.fs17_c00217{font-size:63.488115pt;}
.fs16_c00217{font-size:64.421764pt;}
.fsc_c00217{font-size:65.349142pt;}
.fs0_c00217{font-size:70.933333pt;}
.y0_c00217{bottom:0.000000pt;}
.ye1_c00217{bottom:24.647608pt;}
.ye0_c00217{bottom:25.598347pt;}
.ydf_c00217{bottom:25.787069pt;}
.yde_c00217{bottom:26.640352pt;}
.ydd_c00217{bottom:26.847595pt;}
.ydc_c00217{bottom:27.629035pt;}
.ydb_c00217{bottom:27.909336pt;}
.yda_c00217{bottom:28.244816pt;}
.yd9_c00217{bottom:28.963603pt;}
.yd8_c00217{bottom:41.696571pt;}
.yd7_c00217{bottom:41.923128pt;}
.yd6_c00217{bottom:42.358411pt;}
.yd5_c00217{bottom:42.653917pt;}
.yd4_c00217{bottom:43.503648pt;}
.yd3_c00217{bottom:43.759000pt;}
.yd2_c00217{bottom:44.087117pt;}
.yd1_c00217{bottom:55.576880pt;}
.yd0_c00217{bottom:55.936800pt;}
.ycf_c00217{bottom:56.971877pt;}
.yce_c00217{bottom:57.788232pt;}
.ycd_c00217{bottom:58.517939pt;}
.ycc_c00217{bottom:59.672053pt;}
.ycb_c00217{bottom:60.173571pt;}
.yca_c00217{bottom:71.984288pt;}
.yc9_c00217{bottom:72.693496pt;}
.yc8_c00217{bottom:72.902485pt;}
.yc7_c00217{bottom:73.054704pt;}
.yc6_c00217{bottom:73.682555pt;}
.yc5_c00217{bottom:74.460280pt;}
.yc4_c00217{bottom:74.830752pt;}
.yc3_c00217{bottom:75.054941pt;}
.yc2_c00217{bottom:86.227011pt;}
.yc1_c00217{bottom:87.359581pt;}
.yc0_c00217{bottom:88.771683pt;}
.ybf_c00217{bottom:89.649445pt;}
.ybe_c00217{bottom:90.197152pt;}
.ybd_c00217{bottom:90.904235pt;}
.ybc_c00217{bottom:102.324573pt;}
.ybb_c00217{bottom:102.741395pt;}
.yba_c00217{bottom:103.282952pt;}
.yb9_c00217{bottom:105.033693pt;}
.yb8_c00217{bottom:105.588357pt;}
.yb7_c00217{bottom:106.750283pt;}
.yb6_c00217{bottom:116.088096pt;}
.yb5_c00217{bottom:117.208200pt;}
.yb4_c00217{bottom:117.498443pt;}
.yb3_c00217{bottom:119.065368pt;}
.yb2_c00217{bottom:121.680192pt;}
.yb1_c00217{bottom:123.319323pt;}
.yb0_c00217{bottom:132.711061pt;}
.yaf_c00217{bottom:133.125811pt;}
.yae_c00217{bottom:133.893613pt;}
.yad_c00217{bottom:134.901224pt;}
.yac_c00217{bottom:135.334128pt;}
.yab_c00217{bottom:135.685413pt;}
.yaa_c00217{bottom:136.114536pt;}
.ya9_c00217{bottom:136.420651pt;}
.ya8_c00217{bottom:137.240941pt;}
.ya7_c00217{bottom:147.559640pt;}
.ya6_c00217{bottom:149.219584pt;}
.ya5_c00217{bottom:150.578968pt;}
.ya4_c00217{bottom:152.115776pt;}
.ya3_c00217{bottom:152.402712pt;}
.ya2_c00217{bottom:153.710720pt;}
.ya1_c00217{bottom:154.046744pt;}
.ya0_c00217{bottom:163.785885pt;}
.y9f_c00217{bottom:164.307432pt;}
.y9e_c00217{bottom:165.369835pt;}
.y9d_c00217{bottom:165.967304pt;}
.y9c_c00217{bottom:167.752051pt;}
.y9b_c00217{bottom:168.873840pt;}
.y9a_c00217{bottom:169.413621pt;}
.y99_c00217{bottom:180.800629pt;}
.y98_c00217{bottom:181.553381pt;}
.y97_c00217{bottom:182.282483pt;}
.y96_c00217{bottom:183.368123pt;}
.y95_c00217{bottom:184.289400pt;}
.y94_c00217{bottom:185.014443pt;}
.y93_c00217{bottom:195.570013pt;}
.y92_c00217{bottom:196.153832pt;}
.y91_c00217{bottom:197.435184pt;}
.y90_c00217{bottom:197.937632pt;}
.y8f_c00217{bottom:198.727213pt;}
.y8e_c00217{bottom:199.776331pt;}
.y8d_c00217{bottom:200.808373pt;}
.y8c_c00217{bottom:201.344381pt;}
.y8b_c00217{bottom:211.119341pt;}
.y8a_c00217{bottom:212.042064pt;}
.y89_c00217{bottom:212.667139pt;}
.y88_c00217{bottom:214.258616pt;}
.y87_c00217{bottom:214.670491pt;}
.y86_c00217{bottom:214.907056pt;}
.y85_c00217{bottom:215.363061pt;}
.y84_c00217{bottom:216.230768pt;}
.y83_c00217{bottom:226.259240pt;}
.y82_c00217{bottom:226.429477pt;}
.y81_c00217{bottom:227.781400pt;}
.y80_c00217{bottom:228.225464pt;}
.y7f_c00217{bottom:229.732765pt;}
.y7e_c00217{bottom:231.099512pt;}
.y7d_c00217{bottom:231.593803pt;}
.y7c_c00217{bottom:241.655656pt;}
.y7b_c00217{bottom:243.040485pt;}
.y7a_c00217{bottom:243.951699pt;}
.y79_c00217{bottom:245.387557pt;}
.y78_c00217{bottom:246.018387pt;}
.y77_c00217{bottom:246.960627pt;}
.y76_c00217{bottom:255.526555pt;}
.y75_c00217{bottom:256.774797pt;}
.y74_c00217{bottom:257.249037pt;}
.y73_c00217{bottom:259.464307pt;}
.y72_c00217{bottom:261.281637pt;}
.y71_c00217{bottom:261.599773pt;}
.y70_c00217{bottom:262.086667pt;}
.y6f_c00217{bottom:271.613795pt;}
.y6e_c00217{bottom:273.498520pt;}
.y6d_c00217{bottom:274.511459pt;}
.y6c_c00217{bottom:275.616211pt;}
.y6b_c00217{bottom:276.725333pt;}
.y6a_c00217{bottom:287.688765pt;}
.y69_c00217{bottom:288.003116pt;}
.y68_c00217{bottom:289.009812pt;}
.y67_c00217{bottom:289.474900pt;}
.y66_c00217{bottom:290.228204pt;}
.y65_c00217{bottom:290.649095pt;}
.y64_c00217{bottom:291.021465pt;}
.y63_c00217{bottom:291.817919pt;}
.y62_c00217{bottom:302.486737pt;}
.y61_c00217{bottom:303.122847pt;}
.y60_c00217{bottom:304.021993pt;}
.y5f_c00217{bottom:304.553768pt;}
.y5e_c00217{bottom:304.995065pt;}
.y5d_c00217{bottom:305.805391pt;}
.y5c_c00217{bottom:306.156321pt;}
.y5b_c00217{bottom:307.179860pt;}
.y5a_c00217{bottom:318.120581pt;}
.y59_c00217{bottom:318.415599pt;}
.y58_c00217{bottom:319.227089pt;}
.y57_c00217{bottom:319.555261pt;}
.y56_c00217{bottom:319.809432pt;}
.y55_c00217{bottom:320.453252pt;}
.y54_c00217{bottom:320.900765pt;}
.y53_c00217{bottom:321.813576pt;}
.y52_c00217{bottom:322.150767pt;}
.y51_c00217{bottom:322.781835pt;}
.y50_c00217{bottom:333.617616pt;}
.y4f_c00217{bottom:334.646892pt;}
.y4e_c00217{bottom:336.628344pt;}
.y4d_c00217{bottom:338.386849pt;}
.y4c_c00217{bottom:349.638345pt;}
.y4b_c00217{bottom:350.727899pt;}
.y4a_c00217{bottom:351.326659pt;}
.y49_c00217{bottom:352.716377pt;}
.y48_c00217{bottom:353.360276pt;}
.y47_c00217{bottom:354.228763pt;}
.y46_c00217{bottom:363.832996pt;}
.y45_c00217{bottom:364.513180pt;}
.y44_c00217{bottom:364.810484pt;}
.y43_c00217{bottom:366.319960pt;}
.y42_c00217{bottom:366.571403pt;}
.y41_c00217{bottom:366.836219pt;}
.y40_c00217{bottom:367.507707pt;}
.y3f_c00217{bottom:367.903099pt;}
.y3e_c00217{bottom:369.562864pt;}
.y3d_c00217{bottom:370.075079pt;}
.y3c_c00217{bottom:379.747833pt;}
.y3b_c00217{bottom:380.941763pt;}
.y3a_c00217{bottom:382.248973pt;}
.y39_c00217{bottom:383.625349pt;}
.y38_c00217{bottom:383.901700pt;}
.y37_c00217{bottom:385.197580pt;}
.y36_c00217{bottom:394.780747pt;}
.y35_c00217{bottom:396.698228pt;}
.y34_c00217{bottom:397.103659pt;}
.y33_c00217{bottom:398.682880pt;}
.y32_c00217{bottom:399.372748pt;}
.y31_c00217{bottom:400.132868pt;}
.y30_c00217{bottom:401.041463pt;}
.y2f_c00217{bottom:409.908972pt;}
.y2e_c00217{bottom:410.378728pt;}
.y2d_c00217{bottom:411.350084pt;}
.y2c_c00217{bottom:411.573220pt;}
.y2b_c00217{bottom:412.810652pt;}
.y2a_c00217{bottom:413.184851pt;}
.y29_c00217{bottom:414.214879pt;}
.y28_c00217{bottom:414.720937pt;}
.y27_c00217{bottom:425.645752pt;}
.y26_c00217{bottom:426.174712pt;}
.y25_c00217{bottom:427.181687pt;}
.y24_c00217{bottom:427.821353pt;}
.y23_c00217{bottom:428.560453pt;}
.y22_c00217{bottom:428.952968pt;}
.y21_c00217{bottom:430.084000pt;}
.y20_c00217{bottom:437.762667pt;}
.y1f_c00217{bottom:440.589707pt;}
.y1e_c00217{bottom:441.611840pt;}
.y1d_c00217{bottom:441.957920pt;}
.y1c_c00217{bottom:443.526613pt;}
.y1b_c00217{bottom:445.429227pt;}
.y1a_c00217{bottom:456.837307pt;}
.y19_c00217{bottom:457.388320pt;}
.y18_c00217{bottom:458.488160pt;}
.y17_c00217{bottom:458.924640pt;}
.y16_c00217{bottom:459.242160pt;}
.y15_c00217{bottom:460.290933pt;}
.y14_c00217{bottom:460.788560pt;}
.y13_c00217{bottom:462.958080pt;}
.y12_c00217{bottom:472.379307pt;}
.y11_c00217{bottom:473.699707pt;}
.y10_c00217{bottom:474.290267pt;}
.yf_c00217{bottom:475.639573pt;}
.ye_c00217{bottom:476.008907pt;}
.yd_c00217{bottom:476.638240pt;}
.yc_c00217{bottom:487.552933pt;}
.yb_c00217{bottom:489.158773pt;}
.ya_c00217{bottom:489.399707pt;}
.y9_c00217{bottom:490.193600pt;}
.y8_c00217{bottom:491.210480pt;}
.y7_c00217{bottom:492.000480pt;}
.y6_c00217{bottom:502.667280pt;}
.y5_c00217{bottom:502.952240pt;}
.y4_c00217{bottom:503.576400pt;}
.y3_c00217{bottom:507.460347pt;}
.y2_c00217{bottom:507.600000pt;}
.y1_c00217{bottom:517.926667pt;}
.h7_c00217{height:20.533333pt;}
.hc_c00217{height:53.209602pt;}
.h11_c00217{height:53.217979pt;}
.hb_c00217{height:54.143104pt;}
.h13_c00217{height:54.151627pt;}
.h9_c00217{height:55.076605pt;}
.ha_c00217{height:56.010107pt;}
.h5_c00217{height:56.011199pt;}
.h15_c00217{height:56.018925pt;}
.h8_c00217{height:57.877111pt;}
.h14_c00217{height:57.886222pt;}
.hd_c00217{height:58.810612pt;}
.h3_c00217{height:58.811759pt;}
.h10_c00217{height:58.819871pt;}
.h12_c00217{height:59.753520pt;}
.h4_c00217{height:60.678799pt;}
.hf_c00217{height:60.687169pt;}
.h16_c00217{height:61.620817pt;}
.h6_c00217{height:62.545839pt;}
.h17_c00217{height:62.554466pt;}
.h19_c00217{height:63.488115pt;}
.h18_c00217{height:64.421764pt;}
.he_c00217{height:65.349142pt;}
.h2_c00217{height:70.933333pt;}
.h0_c00217{height:553.866667pt;}
.h1_c00217{height:554.000000pt;}
.w0_c00217{width:325.680000pt;}
.w1_c00217{width:326.000000pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:21.594667pt;}
.x64_c00217{left:23.236000pt;}
.x4b_c00217{left:24.498667pt;}
.x36_c00217{left:26.149599pt;}
.x16_c00217{left:27.359387pt;}
.x3_c00217{left:28.577333pt;}
.x1a_c00217{left:35.280000pt;}
.x67_c00217{left:36.538320pt;}
.x75_c00217{left:41.927133pt;}
.x4f_c00217{left:44.126667pt;}
.x2d_c00217{left:46.256985pt;}
.x54_c00217{left:48.731973pt;}
.x1f_c00217{left:53.282269pt;}
.x1b_c00217{left:55.680000pt;}
.x72_c00217{left:57.937205pt;}
.x58_c00217{left:59.014048pt;}
.xc_c00217{left:60.266560pt;}
.x24_c00217{left:61.193663pt;}
.x61_c00217{left:62.170144pt;}
.x7b_c00217{left:63.267133pt;}
.x32_c00217{left:64.407797pt;}
.x6b_c00217{left:65.778168pt;}
.x7_c00217{left:70.162427pt;}
.x4c_c00217{left:74.913333pt;}
.x59_c00217{left:76.552715pt;}
.xd_c00217{left:78.733227pt;}
.x3a_c00217{left:80.447748pt;}
.x41_c00217{left:82.603145pt;}
.x46_c00217{left:83.882409pt;}
.x5a_c00217{left:85.651381pt;}
.x68_c00217{left:86.846320pt;}
.x1c_c00217{left:87.850667pt;}
.x25_c00217{left:89.336048pt;}
.x33_c00217{left:92.400336pt;}
.x69_c00217{left:97.882320pt;}
.x70_c00217{left:100.843680pt;}
.x42_c00217{left:102.126192pt;}
.x47_c00217{left:104.911337pt;}
.x37_c00217{left:106.066372pt;}
.x20_c00217{left:107.494269pt;}
.x11_c00217{left:108.598933pt;}
.x78_c00217{left:109.528955pt;}
.x62_c00217{left:110.689651pt;}
.x55_c00217{left:113.820432pt;}
.x26_c00217{left:114.904172pt;}
.x79_c00217{left:117.943787pt;}
.x2e_c00217{left:122.341408pt;}
.x8_c00217{left:123.674160pt;}
.x4d_c00217{left:125.129333pt;}
.x12_c00217{left:127.011013pt;}
.x73_c00217{left:129.184299pt;}
.x76_c00217{left:130.220947pt;}
.x3b_c00217{left:131.158044pt;}
.x5d_c00217{left:133.446757pt;}
.x7a_c00217{left:137.622736pt;}
.x53_c00217{left:139.940853pt;}
.x7c_c00217{left:140.971323pt;}
.x48_c00217{left:142.593295pt;}
.x2a_c00217{left:145.229651pt;}
.xe_c00217{left:146.198560pt;}
.x1d_c00217{left:147.409333pt;}
.x1_c00217{left:148.320000pt;}
.x34_c00217{left:152.837084pt;}
.x3c_c00217{left:156.045192pt;}
.x2f_c00217{left:157.018805pt;}
.x65_c00217{left:161.123605pt;}
.x5b_c00217{left:162.703381pt;}
.x9_c00217{left:165.436320pt;}
.x5e_c00217{left:166.329789pt;}
.x63_c00217{left:167.840051pt;}
.x43_c00217{left:171.651509pt;}
.x27_c00217{left:173.380613pt;}
.x6f_c00217{left:174.449981pt;}
.xf_c00217{left:175.726560pt;}
.xa_c00217{left:178.149920pt;}
.x1e_c00217{left:181.076000pt;}
.x56_c00217{left:185.597757pt;}
.x5c_c00217{left:186.744715pt;}
.x28_c00217{left:188.401000pt;}
.x77_c00217{left:190.243893pt;}
.x21_c00217{left:192.316936pt;}
.x13_c00217{left:193.740320pt;}
.x38_c00217{left:196.102563pt;}
.x2b_c00217{left:197.533031pt;}
.x6c_c00217{left:198.739664pt;}
.x74_c00217{left:199.763288pt;}
.x44_c00217{left:201.184067pt;}
.x22_c00217{left:204.060936pt;}
.x71_c00217{left:205.019829pt;}
.x3d_c00217{left:205.975488pt;}
.x17_c00217{left:210.061707pt;}
.x50_c00217{left:211.462667pt;}
.x49_c00217{left:216.194568pt;}
.x4_c00217{left:222.774667pt;}
.x3e_c00217{left:224.230509pt;}
.x35_c00217{left:226.251511pt;}
.x18_c00217{left:228.299413pt;}
.x51_c00217{left:229.702667pt;}
.x4a_c00217{left:231.896931pt;}
.x30_c00217{left:233.264561pt;}
.x14_c00217{left:234.459947pt;}
.x6d_c00217{left:239.149680pt;}
.x5f_c00217{left:240.633637pt;}
.x10_c00217{left:241.746560pt;}
.x39_c00217{left:242.903903pt;}
.x2c_c00217{left:245.278251pt;}
.x66_c00217{left:248.411227pt;}
.x45_c00217{left:251.105004pt;}
.x5_c00217{left:253.982667pt;}
.x15_c00217{left:254.874427pt;}
.x4e_c00217{left:256.841333pt;}
.x31_c00217{left:258.463403pt;}
.x29_c00217{left:259.415541pt;}
.x6e_c00217{left:261.003000pt;}
.xb_c00217{left:262.643600pt;}
.x60_c00217{left:264.986920pt;}
.x6_c00217{left:268.230667pt;}
.x3f_c00217{left:269.327371pt;}
.x57_c00217{left:271.095517pt;}
.x6a_c00217{left:273.118320pt;}
.x52_c00217{left:277.712000pt;}
.x23_c00217{left:279.908936pt;}
.x19_c00217{left:282.073813pt;}
.x40_c00217{left:285.697008pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00218 {
    display:none;
  }
  .loading-indicator_c00218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00218 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00218 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00218" -> "#page-container .classname_c00218")
 */
.pf_c00218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00218 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00218 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00218 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00218 {overflow:visible;}
  }
}
.c_c00218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00218 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00218:after { /* webkit #35443 */
  content: '';
}
.t_c00218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00218 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00218 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00218 { /* info for Javascript */
  display:none;
}
.l_c00218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00218:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00218 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00218.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00218{transform:matrix(0.005915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005915,0.000000,0.000000,0.250000,0,0);}
.m4f_c00218{transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012705,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.044230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044230,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{transform:matrix(0.091345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091345,0.000000,0.000000,0.250000,0,0);}
.md3_c00218{transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.123205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123205,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m50_c00218{transform:matrix(0.136620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136620,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.152180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152180,0.000000,0.000000,0.250000,0,0);}
.maf_c00218{transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00218{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);}
.me4_c00218{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);}
.m80_c00218{transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);}
.me8_c00218{transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);}
.m37_c00218{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.m42_c00218{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);}
.mb5_c00218{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m4d_c00218{transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.165820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165820,0.000000,0.000000,0.250000,0,0);}
.m68_c00218{transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);}
.me1_c00218{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.ma9_c00218{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00218{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m82_c00218{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.mad_c00218{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);}
.mae_c00218{transform:matrix(0.170805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170805,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00218{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m88_c00218{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.mb0_c00218{transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173685,0.000000,0.000000,0.250000,0,0);}
.m40_c00218{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m7c_c00218{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.md5_c00218{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m7d_c00218{transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176435,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);}
.mc6_c00218{transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mde_c00218{transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177190,0.000000,0.000000,0.250000,0,0);}
.me3_c00218{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m9f_c00218{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m45_c00218{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);}
.ma3_c00218{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m95_c00218{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.m6e_c00218{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m87_c00218{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.m43_c00218{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.m81_c00218{transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.me6_c00218{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.md8_c00218{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.mdb_c00218{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);}
.m60_c00218{transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.mb1_c00218{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m9b_c00218{transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);}
.mb3_c00218{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.me5_c00218{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.m83_c00218{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.ma5_c00218{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.mc5_c00218{transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);}
.m7b_c00218{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m85_c00218{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);}
.m72_c00218{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.m77_c00218{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mdd_c00218{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me7_c00218{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.md2_c00218{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.mcd_c00218{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m89_c00218{transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195120,0.000000,0.000000,0.250000,0,0);}
.mb2_c00218{transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);}
.m6c_c00218{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.mac_c00218{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.mbf_c00218{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m65_c00218{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196710,0.000000,0.000000,0.250000,0,0);}
.m71_c00218{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);}
.m3b_c00218{transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00218{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m6a_c00218{transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.m84_c00218{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m63_c00218{transform:matrix(0.199070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199070,0.000000,0.000000,0.250000,0,0);}
.me9_c00218{transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);}
.m8b_c00218{transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.ma4_c00218{transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);}
.m62_c00218{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);}
.md9_c00218{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.mc4_c00218{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);}
.mca_c00218{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.m75_c00218{transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);}
.m93_c00218{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.md1_c00218{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.md4_c00218{transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);}
.md6_c00218{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.mb4_c00218{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.ma2_c00218{transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);}
.maa_c00218{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.me2_c00218{transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);}
.m90_c00218{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.mbe_c00218{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);}
.m74_c00218{transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m7a_c00218{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.m7f_c00218{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.md7_c00218{transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.mdc_c00218{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.mbb_c00218{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.mda_c00218{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00218{transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);}
.m64_c00218{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m99_c00218{transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214920,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.mce_c00218{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.mcc_c00218{transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);}
.mab_c00218{transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);}
.m69_c00218{transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);}
.mb7_c00218{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m98_c00218{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.md0_c00218{transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);}
.ma8_c00218{transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.m9d_c00218{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.m96_c00218{transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);}
.ma1_c00218{transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.mc2_c00218{transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);}
.m97_c00218{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m73_c00218{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00218{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.mba_c00218{transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226640,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.mcf_c00218{transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m4a_c00218{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);}
.mb6_c00218{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.mcb_c00218{transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);}
.ma7_c00218{transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);}
.mc8_c00218{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237570,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);}
.m6b_c00218{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.m92_c00218{transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);}
.m8d_c00218{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.me0_c00218{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.mbd_c00218{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.mc9_c00218{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.m94_c00218{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);}
.m66_c00218{transform:matrix(0.255480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255480,0.000000,0.000000,0.250000,0,0);}
.mc1_c00218{transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);}
.mc3_c00218{transform:matrix(0.260990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260990,0.000000,0.000000,0.250000,0,0);}
.mb9_c00218{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.ma0_c00218{transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00218{transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);}
.m61_c00218{transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00218{transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);}
.m8c_c00218{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.mc0_c00218{transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);}
.m8e_c00218{transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);}
.m4b_c00218{transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);}
.m67_c00218{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.428105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428105,0.000000,0.000000,0.250000,0,0);}
.mb8_c00218{transform:matrix(0.431210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431210,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.779415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779415,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:0.000000px;}
.fc0_c00218{color:transparent;}
.fsc_c00218{font-size:55.650000px;}
.fs1_c00218{font-size:58.800000px;}
.fsa_c00218{font-size:59.850000px;}
.fs8_c00218{font-size:61.950000px;}
.fsd_c00218{font-size:63.000000px;}
.fsb_c00218{font-size:64.050000px;}
.fs9_c00218{font-size:65.100000px;}
.fs4_c00218{font-size:66.150000px;}
.fs7_c00218{font-size:67.200000px;}
.fs3_c00218{font-size:68.250000px;}
.fs6_c00218{font-size:69.300000px;}
.fs5_c00218{font-size:70.350000px;}
.fs2_c00218{font-size:74.550000px;}
.fs0_c00218{font-size:129.150000px;}
.y0_c00218{bottom:0.000000px;}
.ybd_c00218{bottom:32.746500px;}
.ybc_c00218{bottom:50.491500px;}
.ybb_c00218{bottom:68.968500px;}
.yb3_c00218{bottom:82.623000px;}
.yb4_c00218{bottom:83.910000px;}
.yb5_c00218{bottom:84.348000px;}
.yb6_c00218{bottom:84.688500px;}
.yb7_c00218{bottom:85.272000px;}
.yb8_c00218{bottom:85.636500px;}
.yb9_c00218{bottom:86.644500px;}
.yba_c00218{bottom:86.830500px;}
.yb2_c00218{bottom:103.939500px;}
.yab_c00218{bottom:118.263000px;}
.yac_c00218{bottom:119.200500px;}
.yad_c00218{bottom:119.989500px;}
.yae_c00218{bottom:120.343500px;}
.yaf_c00218{bottom:120.786000px;}
.yb0_c00218{bottom:121.285500px;}
.yb1_c00218{bottom:122.079000px;}
.ya3_c00218{bottom:136.350000px;}
.ya4_c00218{bottom:137.140500px;}
.ya5_c00218{bottom:137.265000px;}
.ya6_c00218{bottom:138.096000px;}
.ya7_c00218{bottom:138.220500px;}
.ya8_c00218{bottom:138.469500px;}
.ya9_c00218{bottom:138.642000px;}
.yaa_c00218{bottom:139.171500px;}
.y9e_c00218{bottom:151.743000px;}
.y9f_c00218{bottom:152.326500px;}
.ya0_c00218{bottom:153.091500px;}
.ya1_c00218{bottom:154.297500px;}
.ya2_c00218{bottom:155.767500px;}
.y9d_c00218{bottom:172.098000px;}
.y9c_c00218{bottom:189.795000px;}
.y9b_c00218{bottom:207.351000px;}
.y94_c00218{bottom:219.517500px;}
.y95_c00218{bottom:220.608000px;}
.y96_c00218{bottom:221.424000px;}
.y97_c00218{bottom:222.525000px;}
.y98_c00218{bottom:223.518000px;}
.y99_c00218{bottom:225.045000px;}
.y9a_c00218{bottom:225.768000px;}
.y8c_c00218{bottom:238.954500px;}
.y8d_c00218{bottom:239.847000px;}
.y8e_c00218{bottom:240.712500px;}
.y8f_c00218{bottom:240.867000px;}
.y90_c00218{bottom:241.101000px;}
.y91_c00218{bottom:241.618500px;}
.y92_c00218{bottom:242.442000px;}
.y93_c00218{bottom:243.013500px;}
.y86_c00218{bottom:257.584500px;}
.y87_c00218{bottom:257.976000px;}
.y88_c00218{bottom:258.597000px;}
.y89_c00218{bottom:259.006500px;}
.y8a_c00218{bottom:260.170500px;}
.y8b_c00218{bottom:260.337000px;}
.y7c_c00218{bottom:274.054500px;}
.y7d_c00218{bottom:274.281000px;}
.y7e_c00218{bottom:274.965000px;}
.y7f_c00218{bottom:275.221500px;}
.y80_c00218{bottom:276.036000px;}
.y81_c00218{bottom:276.291000px;}
.y82_c00218{bottom:276.886500px;}
.y83_c00218{bottom:277.296000px;}
.y84_c00218{bottom:277.887000px;}
.y85_c00218{bottom:278.182500px;}
.y74_c00218{bottom:292.144500px;}
.y75_c00218{bottom:292.396500px;}
.y76_c00218{bottom:293.067000px;}
.y77_c00218{bottom:293.404500px;}
.y78_c00218{bottom:293.668500px;}
.y79_c00218{bottom:294.444000px;}
.y7a_c00218{bottom:295.479000px;}
.y7b_c00218{bottom:295.668000px;}
.y6b_c00218{bottom:309.696000px;}
.y6c_c00218{bottom:310.171500px;}
.y6d_c00218{bottom:310.785000px;}
.y6e_c00218{bottom:311.571000px;}
.y6f_c00218{bottom:311.877000px;}
.y70_c00218{bottom:312.400500px;}
.y71_c00218{bottom:312.681000px;}
.y72_c00218{bottom:313.614000px;}
.y73_c00218{bottom:314.349000px;}
.y66_c00218{bottom:325.092000px;}
.y67_c00218{bottom:328.798500px;}
.y68_c00218{bottom:329.208000px;}
.y69_c00218{bottom:329.823000px;}
.y6a_c00218{bottom:331.530000px;}
.y61_c00218{bottom:342.367500px;}
.y62_c00218{bottom:343.818000px;}
.y63_c00218{bottom:344.967000px;}
.y64_c00218{bottom:346.272000px;}
.y65_c00218{bottom:346.665000px;}
.y5a_c00218{bottom:358.840500px;}
.y5b_c00218{bottom:359.713500px;}
.y5c_c00218{bottom:360.054000px;}
.y5d_c00218{bottom:361.435500px;}
.y5e_c00218{bottom:361.975500px;}
.y5f_c00218{bottom:363.568500px;}
.y60_c00218{bottom:363.973500px;}
.y54_c00218{bottom:375.843000px;}
.y55_c00218{bottom:376.308000px;}
.y56_c00218{bottom:377.763000px;}
.y57_c00218{bottom:378.594000px;}
.y58_c00218{bottom:378.814500px;}
.y59_c00218{bottom:379.642500px;}
.y4d_c00218{bottom:393.939000px;}
.y4e_c00218{bottom:395.151000px;}
.y4f_c00218{bottom:396.016500px;}
.y50_c00218{bottom:396.520500px;}
.y51_c00218{bottom:397.087500px;}
.y52_c00218{bottom:397.524000px;}
.y53_c00218{bottom:398.140500px;}
.y45_c00218{bottom:410.949000px;}
.y46_c00218{bottom:411.853500px;}
.y47_c00218{bottom:412.225500px;}
.y48_c00218{bottom:412.927500px;}
.y49_c00218{bottom:413.707500px;}
.y4a_c00218{bottom:414.199500px;}
.y4b_c00218{bottom:415.554000px;}
.y4c_c00218{bottom:415.768500px;}
.y3c_c00218{bottom:427.959000px;}
.y3d_c00218{bottom:428.490000px;}
.y3e_c00218{bottom:429.363000px;}
.y3f_c00218{bottom:429.640500px;}
.y40_c00218{bottom:430.569000px;}
.y41_c00218{bottom:431.233500px;}
.y42_c00218{bottom:432.519000px;}
.y43_c00218{bottom:432.766500px;}
.y44_c00218{bottom:433.653000px;}
.y35_c00218{bottom:445.509000px;}
.y36_c00218{bottom:446.466000px;}
.y37_c00218{bottom:446.770500px;}
.y38_c00218{bottom:447.109500px;}
.y39_c00218{bottom:448.515000px;}
.y3a_c00218{bottom:449.229000px;}
.y3b_c00218{bottom:450.583500px;}
.y2e_c00218{bottom:462.249000px;}
.y2f_c00218{bottom:462.951000px;}
.y30_c00218{bottom:464.554500px;}
.y31_c00218{bottom:465.973500px;}
.y32_c00218{bottom:466.557000px;}
.y33_c00218{bottom:467.028000px;}
.y34_c00218{bottom:468.114000px;}
.y26_c00218{bottom:479.527500px;}
.y27_c00218{bottom:480.333000px;}
.y28_c00218{bottom:480.456000px;}
.y29_c00218{bottom:481.690500px;}
.y2a_c00218{bottom:483.255000px;}
.y2b_c00218{bottom:483.753000px;}
.y2c_c00218{bottom:484.762500px;}
.y2d_c00218{bottom:485.295000px;}
.y1f_c00218{bottom:496.269000px;}
.y20_c00218{bottom:497.805000px;}
.y21_c00218{bottom:498.466500px;}
.y22_c00218{bottom:499.309500px;}
.y23_c00218{bottom:499.732500px;}
.y24_c00218{bottom:501.757500px;}
.y25_c00218{bottom:502.287000px;}
.y19_c00218{bottom:514.087500px;}
.y1a_c00218{bottom:515.503500px;}
.y1b_c00218{bottom:516.652500px;}
.y1c_c00218{bottom:517.783500px;}
.y1d_c00218{bottom:518.299500px;}
.y1e_c00218{bottom:519.430500px;}
.y13_c00218{bottom:531.906000px;}
.y14_c00218{bottom:532.920000px;}
.y15_c00218{bottom:533.527500px;}
.y16_c00218{bottom:534.457500px;}
.y17_c00218{bottom:535.359000px;}
.y18_c00218{bottom:536.862000px;}
.ya_c00218{bottom:548.379000px;}
.yb_c00218{bottom:549.046500px;}
.yc_c00218{bottom:549.562500px;}
.yd_c00218{bottom:550.167000px;}
.ye_c00218{bottom:551.044500px;}
.yf_c00218{bottom:551.557500px;}
.y10_c00218{bottom:552.961500px;}
.y11_c00218{bottom:553.258500px;}
.y12_c00218{bottom:554.778000px;}
.y2_c00218{bottom:567.273000px;}
.y3_c00218{bottom:567.675000px;}
.y4_c00218{bottom:568.833000px;}
.y5_c00218{bottom:569.191500px;}
.y6_c00218{bottom:569.590500px;}
.y7_c00218{bottom:570.736500px;}
.y8_c00218{bottom:571.045500px;}
.y9_c00218{bottom:571.638000px;}
.y1_c00218{bottom:582.964500px;}
.he_c00218{height:55.650000px;}
.h3_c00218{height:58.800000px;}
.hc_c00218{height:59.850000px;}
.ha_c00218{height:61.950000px;}
.hf_c00218{height:63.000000px;}
.hd_c00218{height:64.050000px;}
.hb_c00218{height:65.100000px;}
.h6_c00218{height:66.150000px;}
.h9_c00218{height:67.200000px;}
.h5_c00218{height:68.250000px;}
.h8_c00218{height:69.300000px;}
.h7_c00218{height:70.350000px;}
.h4_c00218{height:74.550000px;}
.h2_c00218{height:129.150000px;}
.h0_c00218{height:623.100000px;}
.h1_c00218{height:623.250000px;}
.w0_c00218{width:366.390000px;}
.w1_c00218{width:366.750000px;}
.x0_c00218{left:0.000000px;}
.x1d_c00218{left:28.110000px;}
.x75_c00218{left:32.919000px;}
.x13_c00218{left:37.537500px;}
.x23_c00218{left:39.619500px;}
.x3_c00218{left:40.716000px;}
.x5b_c00218{left:42.330000px;}
.x6e_c00218{left:44.187000px;}
.x48_c00218{left:46.531500px;}
.x54_c00218{left:55.828500px;}
.x51_c00218{left:60.091500px;}
.x4_c00218{left:64.405500px;}
.xb_c00218{left:66.471000px;}
.x4c_c00218{left:69.871500px;}
.x29_c00218{left:73.959000px;}
.x24_c00218{left:76.239000px;}
.x25_c00218{left:81.814500px;}
.x41_c00218{left:83.406000px;}
.x14_c00218{left:85.801500px;}
.xc_c00218{left:87.126000px;}
.x68_c00218{left:88.305000px;}
.x2d_c00218{left:90.031500px;}
.x37_c00218{left:93.619500px;}
.x5f_c00218{left:95.874000px;}
.x1e_c00218{left:97.917000px;}
.x42_c00218{left:100.441500px;}
.x19_c00218{left:101.818500px;}
.x2e_c00218{left:106.059000px;}
.x4d_c00218{left:108.184500px;}
.xd_c00218{left:111.282000px;}
.x64_c00218{left:113.145000px;}
.x15_c00218{left:114.730500px;}
.x6b_c00218{left:116.385000px;}
.x3b_c00218{left:118.311000px;}
.x2f_c00218{left:123.888000px;}
.x1f_c00218{left:127.996500px;}
.x45_c00218{left:130.596000px;}
.x5_c00218{left:132.490500px;}
.x60_c00218{left:136.644000px;}
.x26_c00218{left:137.905500px;}
.x7c_c00218{left:142.575000px;}
.x79_c00218{left:143.925000px;}
.xe_c00218{left:146.380500px;}
.x76_c00218{left:147.901500px;}
.x1a_c00218{left:151.755000px;}
.x6_c00218{left:153.553500px;}
.x38_c00218{left:156.813000px;}
.x52_c00218{left:157.867500px;}
.x16_c00218{left:159.019500px;}
.x7a_c00218{left:162.015000px;}
.x71_c00218{left:165.418500px;}
.xf_c00218{left:166.873500px;}
.x5c_c00218{left:167.893500px;}
.x43_c00218{left:169.518000px;}
.x32_c00218{left:170.887500px;}
.x55_c00218{left:172.744500px;}
.x1_c00218{left:174.150000px;}
.x3c_c00218{left:176.049000px;}
.x7_c00218{left:177.060000px;}
.x5d_c00218{left:178.927500px;}
.x20_c00218{left:185.527500px;}
.x65_c00218{left:186.585000px;}
.x56_c00218{left:189.763500px;}
.x61_c00218{left:191.718000px;}
.x49_c00218{left:194.784000px;}
.x44_c00218{left:196.545000px;}
.x30_c00218{left:197.856000px;}
.x1b_c00218{left:200.907000px;}
.x17_c00218{left:201.958500px;}
.x33_c00218{left:204.100500px;}
.x27_c00218{left:208.999500px;}
.x4a_c00218{left:211.149000px;}
.x6d_c00218{left:212.947500px;}
.x40_c00218{left:214.065000px;}
.x53_c00218{left:217.548000px;}
.x6f_c00218{left:218.799000px;}
.x10_c00218{left:223.032000px;}
.x2a_c00218{left:225.159000px;}
.x4e_c00218{left:226.746000px;}
.x57_c00218{left:229.449000px;}
.x28_c00218{left:231.663000px;}
.x5e_c00218{left:232.665000px;}
.x77_c00218{left:233.758500px;}
.x11_c00218{left:234.939000px;}
.x62_c00218{left:241.389000px;}
.x8_c00218{left:244.480500px;}
.x3d_c00218{left:247.474500px;}
.x6c_c00218{left:248.685000px;}
.x66_c00218{left:251.925000px;}
.x2b_c00218{left:254.329500px;}
.x58_c00218{left:256.713000px;}
.x72_c00218{left:258.048000px;}
.x9_c00218{left:262.648500px;}
.x67_c00218{left:266.505000px;}
.x34_c00218{left:268.362000px;}
.x1c_c00218{left:272.487000px;}
.x18_c00218{left:273.534000px;}
.x3e_c00218{left:276.576000px;}
.x21_c00218{left:277.582500px;}
.x69_c00218{left:279.465000px;}
.x35_c00218{left:280.744500px;}
.x46_c00218{left:283.977000px;}
.x4f_c00218{left:285.060000px;}
.x5a_c00218{left:291.489000px;}
.x74_c00218{left:294.313500px;}
.x12_c00218{left:295.732500px;}
.xa_c00218{left:297.477000px;}
.x22_c00218{left:301.624500px;}
.x4b_c00218{left:304.039500px;}
.x31_c00218{left:306.699000px;}
.x47_c00218{left:308.584500px;}
.x39_c00218{left:311.268000px;}
.x78_c00218{left:313.359000px;}
.x73_c00218{left:314.745000px;}
.x59_c00218{left:315.850500px;}
.x3f_c00218{left:317.667000px;}
.x2_c00218{left:319.410000px;}
.x7b_c00218{left:321.585000px;}
.x3a_c00218{left:323.913000px;}
.x36_c00218{left:325.087500px;}
.x70_c00218{left:326.275500px;}
.x50_c00218{left:330.966000px;}
.x2c_c00218{left:332.134500px;}
.x6a_c00218{left:334.005000px;}
.x63_c00218{left:353.919000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.fsc_c00218{font-size:49.466667pt;}
.fs1_c00218{font-size:52.266667pt;}
.fsa_c00218{font-size:53.200000pt;}
.fs8_c00218{font-size:55.066667pt;}
.fsd_c00218{font-size:56.000000pt;}
.fsb_c00218{font-size:56.933333pt;}
.fs9_c00218{font-size:57.866667pt;}
.fs4_c00218{font-size:58.800000pt;}
.fs7_c00218{font-size:59.733333pt;}
.fs3_c00218{font-size:60.666667pt;}
.fs6_c00218{font-size:61.600000pt;}
.fs5_c00218{font-size:62.533333pt;}
.fs2_c00218{font-size:66.266667pt;}
.fs0_c00218{font-size:114.800000pt;}
.y0_c00218{bottom:0.000000pt;}
.ybd_c00218{bottom:29.108000pt;}
.ybc_c00218{bottom:44.881333pt;}
.ybb_c00218{bottom:61.305333pt;}
.yb3_c00218{bottom:73.442667pt;}
.yb4_c00218{bottom:74.586667pt;}
.yb5_c00218{bottom:74.976000pt;}
.yb6_c00218{bottom:75.278667pt;}
.yb7_c00218{bottom:75.797333pt;}
.yb8_c00218{bottom:76.121333pt;}
.yb9_c00218{bottom:77.017333pt;}
.yba_c00218{bottom:77.182667pt;}
.yb2_c00218{bottom:92.390667pt;}
.yab_c00218{bottom:105.122667pt;}
.yac_c00218{bottom:105.956000pt;}
.yad_c00218{bottom:106.657333pt;}
.yae_c00218{bottom:106.972000pt;}
.yaf_c00218{bottom:107.365333pt;}
.yb0_c00218{bottom:107.809333pt;}
.yb1_c00218{bottom:108.514667pt;}
.ya3_c00218{bottom:121.200000pt;}
.ya4_c00218{bottom:121.902667pt;}
.ya5_c00218{bottom:122.013333pt;}
.ya6_c00218{bottom:122.752000pt;}
.ya7_c00218{bottom:122.862667pt;}
.ya8_c00218{bottom:123.084000pt;}
.ya9_c00218{bottom:123.237333pt;}
.yaa_c00218{bottom:123.708000pt;}
.y9e_c00218{bottom:134.882667pt;}
.y9f_c00218{bottom:135.401333pt;}
.ya0_c00218{bottom:136.081333pt;}
.ya1_c00218{bottom:137.153333pt;}
.ya2_c00218{bottom:138.460000pt;}
.y9d_c00218{bottom:152.976000pt;}
.y9c_c00218{bottom:168.706667pt;}
.y9b_c00218{bottom:184.312000pt;}
.y94_c00218{bottom:195.126667pt;}
.y95_c00218{bottom:196.096000pt;}
.y96_c00218{bottom:196.821333pt;}
.y97_c00218{bottom:197.800000pt;}
.y98_c00218{bottom:198.682667pt;}
.y99_c00218{bottom:200.040000pt;}
.y9a_c00218{bottom:200.682667pt;}
.y8c_c00218{bottom:212.404000pt;}
.y8d_c00218{bottom:213.197333pt;}
.y8e_c00218{bottom:213.966667pt;}
.y8f_c00218{bottom:214.104000pt;}
.y90_c00218{bottom:214.312000pt;}
.y91_c00218{bottom:214.772000pt;}
.y92_c00218{bottom:215.504000pt;}
.y93_c00218{bottom:216.012000pt;}
.y86_c00218{bottom:228.964000pt;}
.y87_c00218{bottom:229.312000pt;}
.y88_c00218{bottom:229.864000pt;}
.y89_c00218{bottom:230.228000pt;}
.y8a_c00218{bottom:231.262667pt;}
.y8b_c00218{bottom:231.410667pt;}
.y7c_c00218{bottom:243.604000pt;}
.y7d_c00218{bottom:243.805333pt;}
.y7e_c00218{bottom:244.413333pt;}
.y7f_c00218{bottom:244.641333pt;}
.y80_c00218{bottom:245.365333pt;}
.y81_c00218{bottom:245.592000pt;}
.y82_c00218{bottom:246.121333pt;}
.y83_c00218{bottom:246.485333pt;}
.y84_c00218{bottom:247.010667pt;}
.y85_c00218{bottom:247.273333pt;}
.y74_c00218{bottom:259.684000pt;}
.y75_c00218{bottom:259.908000pt;}
.y76_c00218{bottom:260.504000pt;}
.y77_c00218{bottom:260.804000pt;}
.y78_c00218{bottom:261.038667pt;}
.y79_c00218{bottom:261.728000pt;}
.y7a_c00218{bottom:262.648000pt;}
.y7b_c00218{bottom:262.816000pt;}
.y6b_c00218{bottom:275.285333pt;}
.y6c_c00218{bottom:275.708000pt;}
.y6d_c00218{bottom:276.253333pt;}
.y6e_c00218{bottom:276.952000pt;}
.y6f_c00218{bottom:277.224000pt;}
.y70_c00218{bottom:277.689333pt;}
.y71_c00218{bottom:277.938667pt;}
.y72_c00218{bottom:278.768000pt;}
.y73_c00218{bottom:279.421333pt;}
.y66_c00218{bottom:288.970667pt;}
.y67_c00218{bottom:292.265333pt;}
.y68_c00218{bottom:292.629333pt;}
.y69_c00218{bottom:293.176000pt;}
.y6a_c00218{bottom:294.693333pt;}
.y61_c00218{bottom:304.326667pt;}
.y62_c00218{bottom:305.616000pt;}
.y63_c00218{bottom:306.637333pt;}
.y64_c00218{bottom:307.797333pt;}
.y65_c00218{bottom:308.146667pt;}
.y5a_c00218{bottom:318.969333pt;}
.y5b_c00218{bottom:319.745333pt;}
.y5c_c00218{bottom:320.048000pt;}
.y5d_c00218{bottom:321.276000pt;}
.y5e_c00218{bottom:321.756000pt;}
.y5f_c00218{bottom:323.172000pt;}
.y60_c00218{bottom:323.532000pt;}
.y54_c00218{bottom:334.082667pt;}
.y55_c00218{bottom:334.496000pt;}
.y56_c00218{bottom:335.789333pt;}
.y57_c00218{bottom:336.528000pt;}
.y58_c00218{bottom:336.724000pt;}
.y59_c00218{bottom:337.460000pt;}
.y4d_c00218{bottom:350.168000pt;}
.y4e_c00218{bottom:351.245333pt;}
.y4f_c00218{bottom:352.014667pt;}
.y50_c00218{bottom:352.462667pt;}
.y51_c00218{bottom:352.966667pt;}
.y52_c00218{bottom:353.354667pt;}
.y53_c00218{bottom:353.902667pt;}
.y45_c00218{bottom:365.288000pt;}
.y46_c00218{bottom:366.092000pt;}
.y47_c00218{bottom:366.422667pt;}
.y48_c00218{bottom:367.046667pt;}
.y49_c00218{bottom:367.740000pt;}
.y4a_c00218{bottom:368.177333pt;}
.y4b_c00218{bottom:369.381333pt;}
.y4c_c00218{bottom:369.572000pt;}
.y3c_c00218{bottom:380.408000pt;}
.y3d_c00218{bottom:380.880000pt;}
.y3e_c00218{bottom:381.656000pt;}
.y3f_c00218{bottom:381.902667pt;}
.y40_c00218{bottom:382.728000pt;}
.y41_c00218{bottom:383.318667pt;}
.y42_c00218{bottom:384.461333pt;}
.y43_c00218{bottom:384.681333pt;}
.y44_c00218{bottom:385.469333pt;}
.y35_c00218{bottom:396.008000pt;}
.y36_c00218{bottom:396.858667pt;}
.y37_c00218{bottom:397.129333pt;}
.y38_c00218{bottom:397.430667pt;}
.y39_c00218{bottom:398.680000pt;}
.y3a_c00218{bottom:399.314667pt;}
.y3b_c00218{bottom:400.518667pt;}
.y2e_c00218{bottom:410.888000pt;}
.y2f_c00218{bottom:411.512000pt;}
.y30_c00218{bottom:412.937333pt;}
.y31_c00218{bottom:414.198667pt;}
.y32_c00218{bottom:414.717333pt;}
.y33_c00218{bottom:415.136000pt;}
.y34_c00218{bottom:416.101333pt;}
.y26_c00218{bottom:426.246667pt;}
.y27_c00218{bottom:426.962667pt;}
.y28_c00218{bottom:427.072000pt;}
.y29_c00218{bottom:428.169333pt;}
.y2a_c00218{bottom:429.560000pt;}
.y2b_c00218{bottom:430.002667pt;}
.y2c_c00218{bottom:430.900000pt;}
.y2d_c00218{bottom:431.373333pt;}
.y1f_c00218{bottom:441.128000pt;}
.y20_c00218{bottom:442.493333pt;}
.y21_c00218{bottom:443.081333pt;}
.y22_c00218{bottom:443.830667pt;}
.y23_c00218{bottom:444.206667pt;}
.y24_c00218{bottom:446.006667pt;}
.y25_c00218{bottom:446.477333pt;}
.y19_c00218{bottom:456.966667pt;}
.y1a_c00218{bottom:458.225333pt;}
.y1b_c00218{bottom:459.246667pt;}
.y1c_c00218{bottom:460.252000pt;}
.y1d_c00218{bottom:460.710667pt;}
.y1e_c00218{bottom:461.716000pt;}
.y13_c00218{bottom:472.805333pt;}
.y14_c00218{bottom:473.706667pt;}
.y15_c00218{bottom:474.246667pt;}
.y16_c00218{bottom:475.073333pt;}
.y17_c00218{bottom:475.874667pt;}
.y18_c00218{bottom:477.210667pt;}
.ya_c00218{bottom:487.448000pt;}
.yb_c00218{bottom:488.041333pt;}
.yc_c00218{bottom:488.500000pt;}
.yd_c00218{bottom:489.037333pt;}
.ye_c00218{bottom:489.817333pt;}
.yf_c00218{bottom:490.273333pt;}
.y10_c00218{bottom:491.521333pt;}
.y11_c00218{bottom:491.785333pt;}
.y12_c00218{bottom:493.136000pt;}
.y2_c00218{bottom:504.242667pt;}
.y3_c00218{bottom:504.600000pt;}
.y4_c00218{bottom:505.629333pt;}
.y5_c00218{bottom:505.948000pt;}
.y6_c00218{bottom:506.302667pt;}
.y7_c00218{bottom:507.321333pt;}
.y8_c00218{bottom:507.596000pt;}
.y9_c00218{bottom:508.122667pt;}
.y1_c00218{bottom:518.190667pt;}
.he_c00218{height:49.466667pt;}
.h3_c00218{height:52.266667pt;}
.hc_c00218{height:53.200000pt;}
.ha_c00218{height:55.066667pt;}
.hf_c00218{height:56.000000pt;}
.hd_c00218{height:56.933333pt;}
.hb_c00218{height:57.866667pt;}
.h6_c00218{height:58.800000pt;}
.h9_c00218{height:59.733333pt;}
.h5_c00218{height:60.666667pt;}
.h8_c00218{height:61.600000pt;}
.h7_c00218{height:62.533333pt;}
.h4_c00218{height:66.266667pt;}
.h2_c00218{height:114.800000pt;}
.h0_c00218{height:553.866667pt;}
.h1_c00218{height:554.000000pt;}
.w0_c00218{width:325.680000pt;}
.w1_c00218{width:326.000000pt;}
.x0_c00218{left:0.000000pt;}
.x1d_c00218{left:24.986667pt;}
.x75_c00218{left:29.261333pt;}
.x13_c00218{left:33.366667pt;}
.x23_c00218{left:35.217333pt;}
.x3_c00218{left:36.192000pt;}
.x5b_c00218{left:37.626667pt;}
.x6e_c00218{left:39.277333pt;}
.x48_c00218{left:41.361333pt;}
.x54_c00218{left:49.625333pt;}
.x51_c00218{left:53.414667pt;}
.x4_c00218{left:57.249333pt;}
.xb_c00218{left:59.085333pt;}
.x4c_c00218{left:62.108000pt;}
.x29_c00218{left:65.741333pt;}
.x24_c00218{left:67.768000pt;}
.x25_c00218{left:72.724000pt;}
.x41_c00218{left:74.138667pt;}
.x14_c00218{left:76.268000pt;}
.xc_c00218{left:77.445333pt;}
.x68_c00218{left:78.493333pt;}
.x2d_c00218{left:80.028000pt;}
.x37_c00218{left:83.217333pt;}
.x5f_c00218{left:85.221333pt;}
.x1e_c00218{left:87.037333pt;}
.x42_c00218{left:89.281333pt;}
.x19_c00218{left:90.505333pt;}
.x2e_c00218{left:94.274667pt;}
.x4d_c00218{left:96.164000pt;}
.xd_c00218{left:98.917333pt;}
.x64_c00218{left:100.573333pt;}
.x15_c00218{left:101.982667pt;}
.x6b_c00218{left:103.453333pt;}
.x3b_c00218{left:105.165333pt;}
.x2f_c00218{left:110.122667pt;}
.x1f_c00218{left:113.774667pt;}
.x45_c00218{left:116.085333pt;}
.x5_c00218{left:117.769333pt;}
.x60_c00218{left:121.461333pt;}
.x26_c00218{left:122.582667pt;}
.x7c_c00218{left:126.733333pt;}
.x79_c00218{left:127.933333pt;}
.xe_c00218{left:130.116000pt;}
.x76_c00218{left:131.468000pt;}
.x1a_c00218{left:134.893333pt;}
.x6_c00218{left:136.492000pt;}
.x38_c00218{left:139.389333pt;}
.x52_c00218{left:140.326667pt;}
.x16_c00218{left:141.350667pt;}
.x7a_c00218{left:144.013333pt;}
.x71_c00218{left:147.038667pt;}
.xf_c00218{left:148.332000pt;}
.x5c_c00218{left:149.238667pt;}
.x43_c00218{left:150.682667pt;}
.x32_c00218{left:151.900000pt;}
.x55_c00218{left:153.550667pt;}
.x1_c00218{left:154.800000pt;}
.x3c_c00218{left:156.488000pt;}
.x7_c00218{left:157.386667pt;}
.x5d_c00218{left:159.046667pt;}
.x20_c00218{left:164.913333pt;}
.x65_c00218{left:165.853333pt;}
.x56_c00218{left:168.678667pt;}
.x61_c00218{left:170.416000pt;}
.x49_c00218{left:173.141333pt;}
.x44_c00218{left:174.706667pt;}
.x30_c00218{left:175.872000pt;}
.x1b_c00218{left:178.584000pt;}
.x17_c00218{left:179.518667pt;}
.x33_c00218{left:181.422667pt;}
.x27_c00218{left:185.777333pt;}
.x4a_c00218{left:187.688000pt;}
.x6d_c00218{left:189.286667pt;}
.x40_c00218{left:190.280000pt;}
.x53_c00218{left:193.376000pt;}
.x6f_c00218{left:194.488000pt;}
.x10_c00218{left:198.250667pt;}
.x2a_c00218{left:200.141333pt;}
.x4e_c00218{left:201.552000pt;}
.x57_c00218{left:203.954667pt;}
.x28_c00218{left:205.922667pt;}
.x5e_c00218{left:206.813333pt;}
.x77_c00218{left:207.785333pt;}
.x11_c00218{left:208.834667pt;}
.x62_c00218{left:214.568000pt;}
.x8_c00218{left:217.316000pt;}
.x3d_c00218{left:219.977333pt;}
.x6c_c00218{left:221.053333pt;}
.x66_c00218{left:223.933333pt;}
.x2b_c00218{left:226.070667pt;}
.x58_c00218{left:228.189333pt;}
.x72_c00218{left:229.376000pt;}
.x9_c00218{left:233.465333pt;}
.x67_c00218{left:236.893333pt;}
.x34_c00218{left:238.544000pt;}
.x1c_c00218{left:242.210667pt;}
.x18_c00218{left:243.141333pt;}
.x3e_c00218{left:245.845333pt;}
.x21_c00218{left:246.740000pt;}
.x69_c00218{left:248.413333pt;}
.x35_c00218{left:249.550667pt;}
.x46_c00218{left:252.424000pt;}
.x4f_c00218{left:253.386667pt;}
.x5a_c00218{left:259.101333pt;}
.x74_c00218{left:261.612000pt;}
.x12_c00218{left:262.873333pt;}
.xa_c00218{left:264.424000pt;}
.x22_c00218{left:268.110667pt;}
.x4b_c00218{left:270.257333pt;}
.x31_c00218{left:272.621333pt;}
.x47_c00218{left:274.297333pt;}
.x39_c00218{left:276.682667pt;}
.x78_c00218{left:278.541333pt;}
.x73_c00218{left:279.773333pt;}
.x59_c00218{left:280.756000pt;}
.x3f_c00218{left:282.370667pt;}
.x2_c00218{left:283.920000pt;}
.x7b_c00218{left:285.853333pt;}
.x3a_c00218{left:287.922667pt;}
.x36_c00218{left:288.966667pt;}
.x70_c00218{left:290.022667pt;}
.x50_c00218{left:294.192000pt;}
.x2c_c00218{left:295.230667pt;}
.x6a_c00218{left:296.893333pt;}
.x63_c00218{left:314.594667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00219 {
    display:none;
  }
  .loading-indicator_c00219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00219 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00219 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00219" -> "#page-container .classname_c00219")
 */
.pf_c00219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00219 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00219 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00219 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00219 {overflow:visible;}
  }
}
.c_c00219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00219 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00219:after { /* webkit #35443 */
  content: '';
}
.t_c00219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00219 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00219 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00219 { /* info for Javascript */
  display:none;
}
.l_c00219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00219:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00219 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00219.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md2_c00219{transform:matrix(0.066846,0.001805,-0.006748,0.249909,0,0);-ms-transform:matrix(0.066846,0.001805,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.066846,0.001805,-0.006748,0.249909,0,0);}
.mb9_c00219{transform:matrix(0.132657,0.003582,-0.006748,0.249909,0,0);-ms-transform:matrix(0.132657,0.003582,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.132657,0.003582,-0.006748,0.249909,0,0);}
.m88_c00219{transform:matrix(0.136455,0.003684,-0.006748,0.249909,0,0);-ms-transform:matrix(0.136455,0.003684,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.136455,0.003684,-0.006748,0.249909,0,0);}
.m81_c00219{transform:matrix(0.145427,0.003927,-0.006748,0.249909,0,0);-ms-transform:matrix(0.145427,0.003927,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.145427,0.003927,-0.006748,0.249909,0,0);}
.ma7_c00219{transform:matrix(0.146427,0.003954,-0.006748,0.249909,0,0);-ms-transform:matrix(0.146427,0.003954,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.146427,0.003954,-0.006748,0.249909,0,0);}
.mce_c00219{transform:matrix(0.149081,0.004025,-0.006748,0.249909,0,0);-ms-transform:matrix(0.149081,0.004025,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.149081,0.004025,-0.006748,0.249909,0,0);}
.m6a_c00219{transform:matrix(0.152754,0.004124,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152754,0.004124,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152754,0.004124,-0.006748,0.249909,0,0);}
.m87_c00219{transform:matrix(0.153624,0.004148,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153624,0.004148,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153624,0.004148,-0.006748,0.249909,0,0);}
.m52_c00219{transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153804,0.004153,-0.006748,0.249909,0,0);}
.mb5_c00219{transform:matrix(0.154154,0.004162,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154154,0.004162,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154154,0.004162,-0.006748,0.249909,0,0);}
.m7e_c00219{transform:matrix(0.156388,0.004222,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156388,0.004222,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156388,0.004222,-0.006748,0.249909,0,0);}
.m5a_c00219{transform:matrix(0.156548,0.004227,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156548,0.004227,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156548,0.004227,-0.006748,0.249909,0,0);}
.m79_c00219{transform:matrix(0.158207,0.004272,-0.006748,0.249909,0,0);-ms-transform:matrix(0.158207,0.004272,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.158207,0.004272,-0.006748,0.249909,0,0);}
.m47_c00219{transform:matrix(0.158647,0.004283,-0.006748,0.249909,0,0);-ms-transform:matrix(0.158647,0.004283,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.158647,0.004283,-0.006748,0.249909,0,0);}
.mc2_c00219{transform:matrix(0.159717,0.004312,-0.006748,0.249909,0,0);-ms-transform:matrix(0.159717,0.004312,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.159717,0.004312,-0.006748,0.249909,0,0);}
.m6d_c00219{transform:matrix(0.159772,0.004314,-0.006748,0.249909,0,0);-ms-transform:matrix(0.159772,0.004314,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.159772,0.004314,-0.006748,0.249909,0,0);}
.m85_c00219{transform:matrix(0.160182,0.004325,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160182,0.004325,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160182,0.004325,-0.006748,0.249909,0,0);}
.mad_c00219{transform:matrix(0.160951,0.004346,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160951,0.004346,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160951,0.004346,-0.006748,0.249909,0,0);}
.mbe_c00219{transform:matrix(0.161801,0.004369,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161801,0.004369,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161801,0.004369,-0.006748,0.249909,0,0);}
.m48_c00219{transform:matrix(0.162141,0.004378,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162141,0.004378,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162141,0.004378,-0.006748,0.249909,0,0);}
.m86_c00219{transform:matrix(0.162306,0.004382,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162306,0.004382,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162306,0.004382,-0.006748,0.249909,0,0);}
.m22_c00219{transform:matrix(0.162801,0.004396,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162801,0.004396,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162801,0.004396,-0.006748,0.249909,0,0);}
.m99_c00219{transform:matrix(0.163295,0.004409,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163295,0.004409,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163295,0.004409,-0.006748,0.249909,0,0);}
.me6_c00219{transform:matrix(0.164830,0.004450,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164830,0.004450,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164830,0.004450,-0.006748,0.249909,0,0);}
.m71_c00219{transform:matrix(0.165020,0.004456,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165020,0.004456,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165020,0.004456,-0.006748,0.249909,0,0);}
.me_c00219{transform:matrix(0.165070,0.004457,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165070,0.004457,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165070,0.004457,-0.006748,0.249909,0,0);}
.me8_c00219{transform:matrix(0.165435,0.004467,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165435,0.004467,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165435,0.004467,-0.006748,0.249909,0,0);}
.m56_c00219{transform:matrix(0.166049,0.004483,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166049,0.004483,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166049,0.004483,-0.006748,0.249909,0,0);}
.m75_c00219{transform:matrix(0.166064,0.004484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166064,0.004484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166064,0.004484,-0.006748,0.249909,0,0);}
.m8_c00219{transform:matrix(0.166964,0.004508,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166964,0.004508,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166964,0.004508,-0.006748,0.249909,0,0);}
.m46_c00219{transform:matrix(0.167884,0.004533,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167884,0.004533,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167884,0.004533,-0.006748,0.249909,0,0);}
.m77_c00219{transform:matrix(0.169393,0.004574,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169393,0.004574,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169393,0.004574,-0.006748,0.249909,0,0);}
.maf_c00219{transform:matrix(0.170168,0.004595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170168,0.004595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170168,0.004595,-0.006748,0.249909,0,0);}
.m7c_c00219{transform:matrix(0.170228,0.004596,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170228,0.004596,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170228,0.004596,-0.006748,0.249909,0,0);}
.m35_c00219{transform:matrix(0.170313,0.004598,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170313,0.004598,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170313,0.004598,-0.006748,0.249909,0,0);}
.m2_c00219{transform:matrix(0.170613,0.004607,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170613,0.004607,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170613,0.004607,-0.006748,0.249909,0,0);}
.md4_c00219{transform:matrix(0.171243,0.004624,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171243,0.004624,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171243,0.004624,-0.006748,0.249909,0,0);}
.m9d_c00219{transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);}
.m53_c00219{transform:matrix(0.171682,0.004635,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171682,0.004635,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171682,0.004635,-0.006748,0.249909,0,0);}
.me3_c00219{transform:matrix(0.172107,0.004647,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172107,0.004647,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172107,0.004647,-0.006748,0.249909,0,0);}
.m1e_c00219{transform:matrix(0.172387,0.004654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172387,0.004654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172387,0.004654,-0.006748,0.249909,0,0);}
.m9a_c00219{transform:matrix(0.173017,0.004671,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173017,0.004671,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173017,0.004671,-0.006748,0.249909,0,0);}
.ma0_c00219{transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173382,0.004681,-0.006748,0.249909,0,0);}
.me7_c00219{transform:matrix(0.173637,0.004688,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173637,0.004688,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173637,0.004688,-0.006748,0.249909,0,0);}
.md9_c00219{transform:matrix(0.173737,0.004691,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173737,0.004691,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173737,0.004691,-0.006748,0.249909,0,0);}
.m5e_c00219{transform:matrix(0.174022,0.004699,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174022,0.004699,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174022,0.004699,-0.006748,0.249909,0,0);}
.m7d_c00219{transform:matrix(0.174162,0.004702,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174162,0.004702,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174162,0.004702,-0.006748,0.249909,0,0);}
.ma3_c00219{transform:matrix(0.174167,0.004702,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174167,0.004702,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174167,0.004702,-0.006748,0.249909,0,0);}
.m38_c00219{transform:matrix(0.174306,0.004706,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174306,0.004706,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174306,0.004706,-0.006748,0.249909,0,0);}
.m1b_c00219{transform:matrix(0.174351,0.004707,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174351,0.004707,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174351,0.004707,-0.006748,0.249909,0,0);}
.mae_c00219{transform:matrix(0.174356,0.004708,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174356,0.004708,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174356,0.004708,-0.006748,0.249909,0,0);}
.m7f_c00219{transform:matrix(0.174666,0.004716,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174666,0.004716,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174666,0.004716,-0.006748,0.249909,0,0);}
.m5b_c00219{transform:matrix(0.176021,0.004753,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176021,0.004753,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176021,0.004753,-0.006748,0.249909,0,0);}
.md6_c00219{transform:matrix(0.176171,0.004757,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176171,0.004757,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176171,0.004757,-0.006748,0.249909,0,0);}
.m1a_c00219{transform:matrix(0.176291,0.004760,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176291,0.004760,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176291,0.004760,-0.006748,0.249909,0,0);}
.mba_c00219{transform:matrix(0.176591,0.004768,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176591,0.004768,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176591,0.004768,-0.006748,0.249909,0,0);}
.m4b_c00219{transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176861,0.004775,-0.006748,0.249909,0,0);}
.mb4_c00219{transform:matrix(0.176876,0.004776,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176876,0.004776,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176876,0.004776,-0.006748,0.249909,0,0);}
.m97_c00219{transform:matrix(0.176986,0.004779,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176986,0.004779,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176986,0.004779,-0.006748,0.249909,0,0);}
.m59_c00219{transform:matrix(0.177215,0.004785,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177215,0.004785,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177215,0.004785,-0.006748,0.249909,0,0);}
.mcf_c00219{transform:matrix(0.177950,0.004805,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177950,0.004805,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177950,0.004805,-0.006748,0.249909,0,0);}
.m2c_c00219{transform:matrix(0.178455,0.004818,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178455,0.004818,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178455,0.004818,-0.006748,0.249909,0,0);}
.mab_c00219{transform:matrix(0.178705,0.004825,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178705,0.004825,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178705,0.004825,-0.006748,0.249909,0,0);}
.m80_c00219{transform:matrix(0.178790,0.004827,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178790,0.004827,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178790,0.004827,-0.006748,0.249909,0,0);}
.m64_c00219{transform:matrix(0.179135,0.004837,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179135,0.004837,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179135,0.004837,-0.006748,0.249909,0,0);}
.mbb_c00219{transform:matrix(0.180244,0.004867,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180244,0.004867,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180244,0.004867,-0.006748,0.249909,0,0);}
.m43_c00219{transform:matrix(0.180599,0.004876,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180599,0.004876,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180599,0.004876,-0.006748,0.249909,0,0);}
.m42_c00219{transform:matrix(0.180804,0.004882,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180804,0.004882,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180804,0.004882,-0.006748,0.249909,0,0);}
.m90_c00219{transform:matrix(0.180879,0.004884,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180879,0.004884,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180879,0.004884,-0.006748,0.249909,0,0);}
.m6b_c00219{transform:matrix(0.181659,0.004905,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181659,0.004905,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181659,0.004905,-0.006748,0.249909,0,0);}
.m57_c00219{transform:matrix(0.181804,0.004909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181804,0.004909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181804,0.004909,-0.006748,0.249909,0,0);}
.m5_c00219{transform:matrix(0.181879,0.004911,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181879,0.004911,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181879,0.004911,-0.006748,0.249909,0,0);}
.m73_c00219{transform:matrix(0.181929,0.004912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181929,0.004912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181929,0.004912,-0.006748,0.249909,0,0);}
.m91_c00219{transform:matrix(0.182623,0.004931,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182623,0.004931,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182623,0.004931,-0.006748,0.249909,0,0);}
.m1c_c00219{transform:matrix(0.182628,0.004931,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182628,0.004931,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182628,0.004931,-0.006748,0.249909,0,0);}
.m69_c00219{transform:matrix(0.182693,0.004933,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182693,0.004933,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182693,0.004933,-0.006748,0.249909,0,0);}
.mbc_c00219{transform:matrix(0.182888,0.004938,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182888,0.004938,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182888,0.004938,-0.006748,0.249909,0,0);}
.m24_c00219{transform:matrix(0.183493,0.004954,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183493,0.004954,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183493,0.004954,-0.006748,0.249909,0,0);}
.md7_c00219{transform:matrix(0.183583,0.004957,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183583,0.004957,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183583,0.004957,-0.006748,0.249909,0,0);}
.m7_c00219{transform:matrix(0.184383,0.004978,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184383,0.004978,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184383,0.004978,-0.006748,0.249909,0,0);}
.md_c00219{transform:matrix(0.184953,0.004994,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184953,0.004994,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184953,0.004994,-0.006748,0.249909,0,0);}
.m5f_c00219{transform:matrix(0.185397,0.005006,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185397,0.005006,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185397,0.005006,-0.006748,0.249909,0,0);}
.mb3_c00219{transform:matrix(0.185672,0.005013,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185672,0.005013,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185672,0.005013,-0.006748,0.249909,0,0);}
.mc9_c00219{transform:matrix(0.186132,0.005026,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186132,0.005026,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186132,0.005026,-0.006748,0.249909,0,0);}
.m67_c00219{transform:matrix(0.186197,0.005027,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186197,0.005027,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186197,0.005027,-0.006748,0.249909,0,0);}
.mde_c00219{transform:matrix(0.186202,0.005027,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186202,0.005027,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186202,0.005027,-0.006748,0.249909,0,0);}
.m58_c00219{transform:matrix(0.186312,0.005030,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186312,0.005030,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186312,0.005030,-0.006748,0.249909,0,0);}
.m66_c00219{transform:matrix(0.186842,0.005045,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186842,0.005045,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186842,0.005045,-0.006748,0.249909,0,0);}
.m98_c00219{transform:matrix(0.187067,0.005051,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187067,0.005051,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187067,0.005051,-0.006748,0.249909,0,0);}
.mdc_c00219{transform:matrix(0.187142,0.005053,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187142,0.005053,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187142,0.005053,-0.006748,0.249909,0,0);}
.m37_c00219{transform:matrix(0.187167,0.005054,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187167,0.005054,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187167,0.005054,-0.006748,0.249909,0,0);}
.m74_c00219{transform:matrix(0.187197,0.005054,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187197,0.005054,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187197,0.005054,-0.006748,0.249909,0,0);}
.m6e_c00219{transform:matrix(0.187417,0.005060,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187417,0.005060,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187417,0.005060,-0.006748,0.249909,0,0);}
.m63_c00219{transform:matrix(0.187582,0.005065,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187582,0.005065,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187582,0.005065,-0.006748,0.249909,0,0);}
.m28_c00219{transform:matrix(0.187762,0.005070,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187762,0.005070,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187762,0.005070,-0.006748,0.249909,0,0);}
.mc5_c00219{transform:matrix(0.188006,0.005076,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188006,0.005076,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188006,0.005076,-0.006748,0.249909,0,0);}
.mb1_c00219{transform:matrix(0.188436,0.005088,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188436,0.005088,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188436,0.005088,-0.006748,0.249909,0,0);}
.md1_c00219{transform:matrix(0.188686,0.005095,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188686,0.005095,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188686,0.005095,-0.006748,0.249909,0,0);}
.mac_c00219{transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188736,0.005096,-0.006748,0.249909,0,0);}
.m2a_c00219{transform:matrix(0.188771,0.005097,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188771,0.005097,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188771,0.005097,-0.006748,0.249909,0,0);}
.md5_c00219{transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188921,0.005101,-0.006748,0.249909,0,0);}
.m5c_c00219{transform:matrix(0.189051,0.005104,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189051,0.005104,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189051,0.005104,-0.006748,0.249909,0,0);}
.m9b_c00219{transform:matrix(0.189281,0.005111,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189281,0.005111,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189281,0.005111,-0.006748,0.249909,0,0);}
.m44_c00219{transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189571,0.005118,-0.006748,0.249909,0,0);}
.m31_c00219{transform:matrix(0.189766,0.005124,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189766,0.005124,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189766,0.005124,-0.006748,0.249909,0,0);}
.m21_c00219{transform:matrix(0.189826,0.005125,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189826,0.005125,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189826,0.005125,-0.006748,0.249909,0,0);}
.ma_c00219{transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189831,0.005125,-0.006748,0.249909,0,0);}
.m54_c00219{transform:matrix(0.190056,0.005132,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190056,0.005132,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190056,0.005132,-0.006748,0.249909,0,0);}
.mea_c00219{transform:matrix(0.190186,0.005135,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190186,0.005135,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190186,0.005135,-0.006748,0.249909,0,0);}
.me1_c00219{transform:matrix(0.190356,0.005140,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190356,0.005140,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190356,0.005140,-0.006748,0.249909,0,0);}
.m83_c00219{transform:matrix(0.190810,0.005152,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190810,0.005152,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190810,0.005152,-0.006748,0.249909,0,0);}
.md3_c00219{transform:matrix(0.190935,0.005155,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190935,0.005155,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190935,0.005155,-0.006748,0.249909,0,0);}
.m78_c00219{transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191160,0.005161,-0.006748,0.249909,0,0);}
.m25_c00219{transform:matrix(0.191415,0.005168,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191415,0.005168,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191415,0.005168,-0.006748,0.249909,0,0);}
.m4d_c00219{transform:matrix(0.191705,0.005176,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191705,0.005176,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191705,0.005176,-0.006748,0.249909,0,0);}
.m93_c00219{transform:matrix(0.191785,0.005178,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191785,0.005178,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191785,0.005178,-0.006748,0.249909,0,0);}
.m2e_c00219{transform:matrix(0.191845,0.005180,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191845,0.005180,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191845,0.005180,-0.006748,0.249909,0,0);}
.m68_c00219{transform:matrix(0.192030,0.005185,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192030,0.005185,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192030,0.005185,-0.006748,0.249909,0,0);}
.me4_c00219{transform:matrix(0.192065,0.005186,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192065,0.005186,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192065,0.005186,-0.006748,0.249909,0,0);}
.m4c_c00219{transform:matrix(0.192250,0.005191,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192250,0.005191,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192250,0.005191,-0.006748,0.249909,0,0);}
.mc1_c00219{transform:matrix(0.192495,0.005197,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192495,0.005197,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192495,0.005197,-0.006748,0.249909,0,0);}
.m27_c00219{transform:matrix(0.192505,0.005198,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192505,0.005198,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192505,0.005198,-0.006748,0.249909,0,0);}
.mb7_c00219{transform:matrix(0.192935,0.005209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192935,0.005209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192935,0.005209,-0.006748,0.249909,0,0);}
.m96_c00219{transform:matrix(0.193160,0.005215,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193160,0.005215,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193160,0.005215,-0.006748,0.249909,0,0);}
.m1d_c00219{transform:matrix(0.193714,0.005230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193714,0.005230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193714,0.005230,-0.006748,0.249909,0,0);}
.ma9_c00219{transform:matrix(0.193879,0.005235,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193879,0.005235,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193879,0.005235,-0.006748,0.249909,0,0);}
.mdf_c00219{transform:matrix(0.193969,0.005237,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193969,0.005237,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193969,0.005237,-0.006748,0.249909,0,0);}
.mb6_c00219{transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);}
.m82_c00219{transform:matrix(0.194849,0.005261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194849,0.005261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194849,0.005261,-0.006748,0.249909,0,0);}
.m45_c00219{transform:matrix(0.194874,0.005262,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194874,0.005262,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194874,0.005262,-0.006748,0.249909,0,0);}
.m3_c00219{transform:matrix(0.195144,0.005269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195144,0.005269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195144,0.005269,-0.006748,0.249909,0,0);}
.me5_c00219{transform:matrix(0.195244,0.005272,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195244,0.005272,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195244,0.005272,-0.006748,0.249909,0,0);}
.m49_c00219{transform:matrix(0.196233,0.005298,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196233,0.005298,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196233,0.005298,-0.006748,0.249909,0,0);}
.m17_c00219{transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);}
.mc7_c00219{transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196393,0.005303,-0.006748,0.249909,0,0);}
.mb2_c00219{transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);}
.m5d_c00219{transform:matrix(0.196863,0.005315,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196863,0.005315,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196863,0.005315,-0.006748,0.249909,0,0);}
.m40_c00219{transform:matrix(0.196908,0.005317,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196908,0.005317,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196908,0.005317,-0.006748,0.249909,0,0);}
.m13_c00219{transform:matrix(0.196993,0.005319,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196993,0.005319,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196993,0.005319,-0.006748,0.249909,0,0);}
.m60_c00219{transform:matrix(0.197248,0.005326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197248,0.005326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197248,0.005326,-0.006748,0.249909,0,0);}
.mdb_c00219{transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);}
.m84_c00219{transform:matrix(0.197803,0.005341,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197803,0.005341,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197803,0.005341,-0.006748,0.249909,0,0);}
.m7a_c00219{transform:matrix(0.197873,0.005343,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197873,0.005343,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197873,0.005343,-0.006748,0.249909,0,0);}
.m3d_c00219{transform:matrix(0.198333,0.005355,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198333,0.005355,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198333,0.005355,-0.006748,0.249909,0,0);}
.m0_c00219{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.mc0_c00219{transform:matrix(0.199132,0.005377,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199132,0.005377,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199132,0.005377,-0.006748,0.249909,0,0);}
.m14_c00219{transform:matrix(0.199492,0.005386,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199492,0.005386,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199492,0.005386,-0.006748,0.249909,0,0);}
.mda_c00219{transform:matrix(0.199752,0.005393,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199752,0.005393,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199752,0.005393,-0.006748,0.249909,0,0);}
.m36_c00219{transform:matrix(0.199782,0.005394,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199782,0.005394,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199782,0.005394,-0.006748,0.249909,0,0);}
.m34_c00219{transform:matrix(0.200192,0.005405,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200192,0.005405,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200192,0.005405,-0.006748,0.249909,0,0);}
.mc8_c00219{transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200557,0.005415,-0.006748,0.249909,0,0);}
.m26_c00219{transform:matrix(0.201012,0.005427,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201012,0.005427,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201012,0.005427,-0.006748,0.249909,0,0);}
.m4f_c00219{transform:matrix(0.201067,0.005429,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201067,0.005429,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201067,0.005429,-0.006748,0.249909,0,0);}
.m30_c00219{transform:matrix(0.201252,0.005434,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201252,0.005434,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201252,0.005434,-0.006748,0.249909,0,0);}
.m3a_c00219{transform:matrix(0.201751,0.005447,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201751,0.005447,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201751,0.005447,-0.006748,0.249909,0,0);}
.m2b_c00219{transform:matrix(0.201936,0.005452,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201936,0.005452,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201936,0.005452,-0.006748,0.249909,0,0);}
.m89_c00219{transform:matrix(0.201971,0.005453,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201971,0.005453,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201971,0.005453,-0.006748,0.249909,0,0);}
.m9c_c00219{transform:matrix(0.202296,0.005462,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202296,0.005462,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202296,0.005462,-0.006748,0.249909,0,0);}
.mb8_c00219{transform:matrix(0.203111,0.005484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203111,0.005484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203111,0.005484,-0.006748,0.249909,0,0);}
.m6c_c00219{transform:matrix(0.203126,0.005484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203126,0.005484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203126,0.005484,-0.006748,0.249909,0,0);}
.m39_c00219{transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203161,0.005485,-0.006748,0.249909,0,0);}
.m23_c00219{transform:matrix(0.203746,0.005501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203746,0.005501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203746,0.005501,-0.006748,0.249909,0,0);}
.mbf_c00219{transform:matrix(0.204016,0.005508,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204016,0.005508,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204016,0.005508,-0.006748,0.249909,0,0);}
.m29_c00219{transform:matrix(0.204376,0.005518,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204376,0.005518,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204376,0.005518,-0.006748,0.249909,0,0);}
.ma8_c00219{transform:matrix(0.204455,0.005520,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204455,0.005520,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204455,0.005520,-0.006748,0.249909,0,0);}
.m16_c00219{transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);}
.m1f_c00219{transform:matrix(0.204795,0.005529,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204795,0.005529,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204795,0.005529,-0.006748,0.249909,0,0);}
.mb0_c00219{transform:matrix(0.205185,0.005540,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205185,0.005540,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205185,0.005540,-0.006748,0.249909,0,0);}
.mdd_c00219{transform:matrix(0.205670,0.005553,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205670,0.005553,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205670,0.005553,-0.006748,0.249909,0,0);}
.m8c_c00219{transform:matrix(0.205710,0.005554,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205710,0.005554,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205710,0.005554,-0.006748,0.249909,0,0);}
.mc6_c00219{transform:matrix(0.206615,0.005579,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206615,0.005579,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206615,0.005579,-0.006748,0.249909,0,0);}
.ma4_c00219{transform:matrix(0.207070,0.005591,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207070,0.005591,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207070,0.005591,-0.006748,0.249909,0,0);}
.m3c_c00219{transform:matrix(0.207279,0.005597,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207279,0.005597,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207279,0.005597,-0.006748,0.249909,0,0);}
.ma1_c00219{transform:matrix(0.207614,0.005606,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207614,0.005606,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207614,0.005606,-0.006748,0.249909,0,0);}
.m76_c00219{transform:matrix(0.207854,0.005612,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207854,0.005612,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207854,0.005612,-0.006748,0.249909,0,0);}
.m8e_c00219{transform:matrix(0.208614,0.005633,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208614,0.005633,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208614,0.005633,-0.006748,0.249909,0,0);}
.me9_c00219{transform:matrix(0.209259,0.005650,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209259,0.005650,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209259,0.005650,-0.006748,0.249909,0,0);}
.m20_c00219{transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);}
.m65_c00219{transform:matrix(0.210213,0.005676,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210213,0.005676,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210213,0.005676,-0.006748,0.249909,0,0);}
.ma6_c00219{transform:matrix(0.211198,0.005702,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211198,0.005702,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211198,0.005702,-0.006748,0.249909,0,0);}
.m33_c00219{transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);}
.m32_c00219{transform:matrix(0.212533,0.005738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212533,0.005738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212533,0.005738,-0.006748,0.249909,0,0);}
.m92_c00219{transform:matrix(0.213537,0.005766,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213537,0.005766,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213537,0.005766,-0.006748,0.249909,0,0);}
.m4_c00219{transform:matrix(0.213612,0.005768,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213612,0.005768,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213612,0.005768,-0.006748,0.249909,0,0);}
.ma2_c00219{transform:matrix(0.214912,0.005803,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214912,0.005803,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214912,0.005803,-0.006748,0.249909,0,0);}
.m8d_c00219{transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);}
.mbd_c00219{transform:matrix(0.216946,0.005858,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216946,0.005858,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216946,0.005858,-0.006748,0.249909,0,0);}
.m72_c00219{transform:matrix(0.217096,0.005862,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217096,0.005862,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217096,0.005862,-0.006748,0.249909,0,0);}
.m4e_c00219{transform:matrix(0.219505,0.005927,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219505,0.005927,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219505,0.005927,-0.006748,0.249909,0,0);}
.m3f_c00219{transform:matrix(0.220275,0.005947,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220275,0.005947,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220275,0.005947,-0.006748,0.249909,0,0);}
.mcd_c00219{transform:matrix(0.220315,0.005948,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220315,0.005948,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220315,0.005948,-0.006748,0.249909,0,0);}
.maa_c00219{transform:matrix(0.220395,0.005951,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220395,0.005951,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220395,0.005951,-0.006748,0.249909,0,0);}
.mf_c00219{transform:matrix(0.220979,0.005966,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220979,0.005966,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220979,0.005966,-0.006748,0.249909,0,0);}
.m2d_c00219{transform:matrix(0.221209,0.005973,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221209,0.005973,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221209,0.005973,-0.006748,0.249909,0,0);}
.mcc_c00219{transform:matrix(0.221219,0.005973,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221219,0.005973,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221219,0.005973,-0.006748,0.249909,0,0);}
.m94_c00219{transform:matrix(0.222084,0.005996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222084,0.005996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222084,0.005996,-0.006748,0.249909,0,0);}
.me0_c00219{transform:matrix(0.224633,0.006065,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224633,0.006065,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224633,0.006065,-0.006748,0.249909,0,0);}
.mb_c00219{transform:matrix(0.224743,0.006068,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224743,0.006068,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224743,0.006068,-0.006748,0.249909,0,0);}
.mca_c00219{transform:matrix(0.225023,0.006076,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225023,0.006076,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225023,0.006076,-0.006748,0.249909,0,0);}
.m9e_c00219{transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226223,0.006108,-0.006748,0.249909,0,0);}
.m9_c00219{transform:matrix(0.226348,0.006111,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226348,0.006111,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226348,0.006111,-0.006748,0.249909,0,0);}
.mc_c00219{transform:matrix(0.226552,0.006117,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226552,0.006117,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226552,0.006117,-0.006748,0.249909,0,0);}
.m41_c00219{transform:matrix(0.227242,0.006136,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227242,0.006136,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227242,0.006136,-0.006748,0.249909,0,0);}
.mc3_c00219{transform:matrix(0.227562,0.006144,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227562,0.006144,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227562,0.006144,-0.006748,0.249909,0,0);}
.m9f_c00219{transform:matrix(0.227902,0.006153,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227902,0.006153,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227902,0.006153,-0.006748,0.249909,0,0);}
.m10_c00219{transform:matrix(0.231371,0.006247,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231371,0.006247,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231371,0.006247,-0.006748,0.249909,0,0);}
.ma5_c00219{transform:matrix(0.232965,0.006290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232965,0.006290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232965,0.006290,-0.006748,0.249909,0,0);}
.me2_c00219{transform:matrix(0.233505,0.006305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233505,0.006305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233505,0.006305,-0.006748,0.249909,0,0);}
.m55_c00219{transform:matrix(0.233750,0.006311,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233750,0.006311,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233750,0.006311,-0.006748,0.249909,0,0);}
.mcb_c00219{transform:matrix(0.236609,0.006388,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236609,0.006388,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236609,0.006388,-0.006748,0.249909,0,0);}
.m6f_c00219{transform:matrix(0.237039,0.006400,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237039,0.006400,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237039,0.006400,-0.006748,0.249909,0,0);}
.m4a_c00219{transform:matrix(0.237259,0.006406,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237259,0.006406,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237259,0.006406,-0.006748,0.249909,0,0);}
.m8f_c00219{transform:matrix(0.237588,0.006415,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237588,0.006415,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237588,0.006415,-0.006748,0.249909,0,0);}
.m1_c00219{transform:matrix(0.238233,0.006432,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238233,0.006432,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238233,0.006432,-0.006748,0.249909,0,0);}
.m62_c00219{transform:matrix(0.240912,0.006505,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240912,0.006505,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240912,0.006505,-0.006748,0.249909,0,0);}
.m3b_c00219{transform:matrix(0.243216,0.006567,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243216,0.006567,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243216,0.006567,-0.006748,0.249909,0,0);}
.md0_c00219{transform:matrix(0.245236,0.006621,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245236,0.006621,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245236,0.006621,-0.006748,0.249909,0,0);}
.m18_c00219{transform:matrix(0.248160,0.006700,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248160,0.006700,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248160,0.006700,-0.006748,0.249909,0,0);}
.m3e_c00219{transform:matrix(0.251019,0.006778,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251019,0.006778,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251019,0.006778,-0.006748,0.249909,0,0);}
.m51_c00219{transform:matrix(0.255242,0.006892,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255242,0.006892,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255242,0.006892,-0.006748,0.249909,0,0);}
.m61_c00219{transform:matrix(0.259490,0.007006,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259490,0.007006,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259490,0.007006,-0.006748,0.249909,0,0);}
.m70_c00219{transform:matrix(0.264524,0.007142,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264524,0.007142,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264524,0.007142,-0.006748,0.249909,0,0);}
.m12_c00219{transform:matrix(0.269837,0.007286,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269837,0.007286,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269837,0.007286,-0.006748,0.249909,0,0);}
.m8b_c00219{transform:matrix(0.272351,0.007353,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272351,0.007353,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272351,0.007353,-0.006748,0.249909,0,0);}
.m11_c00219{transform:matrix(0.275690,0.007444,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275690,0.007444,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275690,0.007444,-0.006748,0.249909,0,0);}
.m2f_c00219{transform:matrix(0.285656,0.007713,-0.006748,0.249909,0,0);-ms-transform:matrix(0.285656,0.007713,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.285656,0.007713,-0.006748,0.249909,0,0);}
.m95_c00219{transform:matrix(0.298541,0.008061,-0.006748,0.249909,0,0);-ms-transform:matrix(0.298541,0.008061,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.298541,0.008061,-0.006748,0.249909,0,0);}
.mc4_c00219{transform:matrix(0.302810,0.008176,-0.006748,0.249909,0,0);-ms-transform:matrix(0.302810,0.008176,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.302810,0.008176,-0.006748,0.249909,0,0);}
.m19_c00219{transform:matrix(0.304824,0.008230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.304824,0.008230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.304824,0.008230,-0.006748,0.249909,0,0);}
.m7b_c00219{transform:matrix(0.311731,0.008417,-0.006748,0.249909,0,0);-ms-transform:matrix(0.311731,0.008417,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.311731,0.008417,-0.006748,0.249909,0,0);}
.md8_c00219{transform:matrix(0.331599,0.008953,-0.006748,0.249909,0,0);-ms-transform:matrix(0.331599,0.008953,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.331599,0.008953,-0.006748,0.249909,0,0);}
.m6_c00219{transform:matrix(0.358729,0.009686,-0.006748,0.249909,0,0);-ms-transform:matrix(0.358729,0.009686,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.358729,0.009686,-0.006748,0.249909,0,0);}
.m8a_c00219{transform:matrix(0.388603,0.010492,-0.006748,0.249909,0,0);-ms-transform:matrix(0.388603,0.010492,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.388603,0.010492,-0.006748,0.249909,0,0);}
.m15_c00219{transform:matrix(0.394611,0.010655,-0.006748,0.249909,0,0);-ms-transform:matrix(0.394611,0.010655,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.394611,0.010655,-0.006748,0.249909,0,0);}
.m50_c00219{transform:matrix(0.595303,0.016073,-0.006748,0.249909,0,0);-ms-transform:matrix(0.595303,0.016073,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.595303,0.016073,-0.006748,0.249909,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:0.000000px;}
.fc0_c00219{color:transparent;}
.fs8_c00219{font-size:60.922194px;}
.fsd_c00219{font-size:61.972577px;}
.fs5_c00219{font-size:63.022959px;}
.fs0_c00219{font-size:64.050000px;}
.fs6_c00219{font-size:64.073342px;}
.fs2_c00219{font-size:65.123725px;}
.fs1_c00219{font-size:66.174107px;}
.fs3_c00219{font-size:67.224490px;}
.fsa_c00219{font-size:68.274873px;}
.fs4_c00219{font-size:69.325255px;}
.fs9_c00219{font-size:70.375638px;}
.fsc_c00219{font-size:71.426021px;}
.fsb_c00219{font-size:72.476403px;}
.fs7_c00219{font-size:73.526786px;}
.y0_c00219{bottom:0.000000px;}
.yeb_c00219{bottom:31.148397px;}
.yea_c00219{bottom:32.686551px;}
.ye9_c00219{bottom:34.275471px;}
.ye8_c00219{bottom:37.283715px;}
.ye7_c00219{bottom:38.549811px;}
.ye6_c00219{bottom:39.567306px;}
.ye5_c00219{bottom:41.741061px;}
.ye4_c00219{bottom:42.728170px;}
.ye3_c00219{bottom:43.284402px;}
.ye2_c00219{bottom:48.852699px;}
.ye1_c00219{bottom:49.697460px;}
.ye0_c00219{bottom:50.395662px;}
.ydf_c00219{bottom:51.753906px;}
.yde_c00219{bottom:52.481962px;}
.ydd_c00219{bottom:55.565173px;}
.ydc_c00219{bottom:56.235505px;}
.ydb_c00219{bottom:58.137615px;}
.yda_c00219{bottom:65.752531px;}
.yd9_c00219{bottom:66.713842px;}
.yd8_c00219{bottom:67.735708px;}
.yd7_c00219{bottom:68.342638px;}
.yd6_c00219{bottom:71.073015px;}
.yd5_c00219{bottom:71.864527px;}
.yd4_c00219{bottom:72.215100px;}
.yd3_c00219{bottom:72.629145px;}
.yd2_c00219{bottom:74.883747px;}
.yd1_c00219{bottom:84.792748px;}
.yd0_c00219{bottom:85.406103px;}
.ycf_c00219{bottom:86.282716px;}
.yce_c00219{bottom:90.346510px;}
.ycd_c00219{bottom:92.168224px;}
.ycc_c00219{bottom:101.973588px;}
.ycb_c00219{bottom:103.587109px;}
.yca_c00219{bottom:104.197611px;}
.yc9_c00219{bottom:105.800644px;}
.yc8_c00219{bottom:107.401612px;}
.yc7_c00219{bottom:108.375232px;}
.yc6_c00219{bottom:119.027727px;}
.yc5_c00219{bottom:119.287924px;}
.yc4_c00219{bottom:120.712006px;}
.yc3_c00219{bottom:121.632663px;}
.yc2_c00219{bottom:122.251686px;}
.yc1_c00219{bottom:125.121154px;}
.yc0_c00219{bottom:126.221649px;}
.ybf_c00219{bottom:127.283341px;}
.ybe_c00219{bottom:136.691245px;}
.ybd_c00219{bottom:137.400187px;}
.ybc_c00219{bottom:139.207579px;}
.ybb_c00219{bottom:141.106597px;}
.yba_c00219{bottom:141.702567px;}
.yb9_c00219{bottom:143.160025px;}
.yb8_c00219{bottom:143.841909px;}
.yb7_c00219{bottom:145.108866px;}
.yb6_c00219{bottom:151.690843px;}
.yb5_c00219{bottom:152.592276px;}
.yb4_c00219{bottom:155.113078px;}
.yb3_c00219{bottom:158.820178px;}
.yb2_c00219{bottom:162.309345px;}
.yb1_c00219{bottom:163.487296px;}
.yb0_c00219{bottom:176.320816px;}
.yaf_c00219{bottom:178.740100px;}
.yae_c00219{bottom:179.789431px;}
.yad_c00219{bottom:180.620275px;}
.yac_c00219{bottom:181.841058px;}
.yab_c00219{bottom:187.710244px;}
.yaa_c00219{bottom:188.500086px;}
.ya9_c00219{bottom:190.070452px;}
.ya8_c00219{bottom:191.081079px;}
.ya7_c00219{bottom:193.518096px;}
.ya6_c00219{bottom:194.012856px;}
.ya5_c00219{bottom:197.516242px;}
.ya4_c00219{bottom:205.205085px;}
.ya3_c00219{bottom:205.757653px;}
.ya2_c00219{bottom:209.288757px;}
.ya1_c00219{bottom:210.067351px;}
.ya0_c00219{bottom:210.712777px;}
.y9f_c00219{bottom:213.634716px;}
.y9e_c00219{bottom:214.065742px;}
.y9d_c00219{bottom:215.608023px;}
.y9c_c00219{bottom:216.965763px;}
.y9b_c00219{bottom:223.787652px;}
.y9a_c00219{bottom:225.536877px;}
.y99_c00219{bottom:226.779760px;}
.y98_c00219{bottom:228.288171px;}
.y97_c00219{bottom:232.478475px;}
.y96_c00219{bottom:233.077269px;}
.y95_c00219{bottom:234.243216px;}
.y94_c00219{bottom:243.042571px;}
.y93_c00219{bottom:245.537620px;}
.y92_c00219{bottom:247.723827px;}
.y91_c00219{bottom:249.704596px;}
.y90_c00219{bottom:250.713957px;}
.y8f_c00219{bottom:259.426035px;}
.y8e_c00219{bottom:261.891612px;}
.y8d_c00219{bottom:263.800852px;}
.y8c_c00219{bottom:264.667260px;}
.y8b_c00219{bottom:265.454671px;}
.y8a_c00219{bottom:267.441045px;}
.y89_c00219{bottom:268.274719px;}
.y88_c00219{bottom:274.199757px;}
.y87_c00219{bottom:274.921632px;}
.y86_c00219{bottom:276.713680px;}
.y85_c00219{bottom:279.395473px;}
.y84_c00219{bottom:279.836092px;}
.y83_c00219{bottom:281.437140px;}
.y82_c00219{bottom:282.124947px;}
.y81_c00219{bottom:284.486880px;}
.y80_c00219{bottom:292.185294px;}
.y7f_c00219{bottom:292.746169px;}
.y7e_c00219{bottom:294.428919px;}
.y7d_c00219{bottom:295.496637px;}
.y7c_c00219{bottom:295.843929px;}
.y7b_c00219{bottom:297.418812px;}
.y7a_c00219{bottom:297.955263px;}
.y79_c00219{bottom:298.336093px;}
.y78_c00219{bottom:300.150525px;}
.y77_c00219{bottom:309.914347px;}
.y76_c00219{bottom:310.739542px;}
.y75_c00219{bottom:312.226563px;}
.y74_c00219{bottom:313.675708px;}
.y73_c00219{bottom:314.468254px;}
.y72_c00219{bottom:315.699505px;}
.y71_c00219{bottom:316.309804px;}
.y70_c00219{bottom:318.519129px;}
.y6f_c00219{bottom:327.581052px;}
.y6e_c00219{bottom:328.401426px;}
.y6d_c00219{bottom:330.146682px;}
.y6c_c00219{bottom:332.290965px;}
.y6b_c00219{bottom:333.120372px;}
.y6a_c00219{bottom:333.707794px;}
.y69_c00219{bottom:335.262792px;}
.y68_c00219{bottom:343.696438px;}
.y67_c00219{bottom:344.626909px;}
.y66_c00219{bottom:346.152256px;}
.y65_c00219{bottom:346.788529px;}
.y64_c00219{bottom:347.989501px;}
.y63_c00219{bottom:348.979273px;}
.y62_c00219{bottom:351.437724px;}
.y61_c00219{bottom:352.820691px;}
.y60_c00219{bottom:362.477271px;}
.y5f_c00219{bottom:364.632838px;}
.y5e_c00219{bottom:364.965274px;}
.y5d_c00219{bottom:366.682981px;}
.y5c_c00219{bottom:368.181252px;}
.y5b_c00219{bottom:368.861716px;}
.y5a_c00219{bottom:370.373757px;}
.y59_c00219{bottom:378.032574px;}
.y58_c00219{bottom:378.681330px;}
.y57_c00219{bottom:379.247689px;}
.y56_c00219{bottom:379.780629px;}
.y55_c00219{bottom:382.186473px;}
.y54_c00219{bottom:383.245951px;}
.y53_c00219{bottom:383.845407px;}
.y52_c00219{bottom:385.390753px;}
.y51_c00219{bottom:387.949521px;}
.y50_c00219{bottom:396.802894px;}
.y4f_c00219{bottom:398.740078px;}
.y4e_c00219{bottom:399.588247px;}
.y4d_c00219{bottom:401.837742px;}
.y4c_c00219{bottom:402.755997px;}
.y4b_c00219{bottom:403.294083px;}
.y4a_c00219{bottom:405.490951px;}
.y49_c00219{bottom:412.452934px;}
.y48_c00219{bottom:414.267699px;}
.y47_c00219{bottom:416.252016px;}
.y46_c00219{bottom:419.315841px;}
.y45_c00219{bottom:419.796018px;}
.y44_c00219{bottom:422.196823px;}
.y43_c00219{bottom:423.319560px;}
.y42_c00219{bottom:430.360890px;}
.y41_c00219{bottom:431.002732px;}
.y40_c00219{bottom:431.781054px;}
.y3f_c00219{bottom:432.848739px;}
.y3e_c00219{bottom:436.176280px;}
.y3d_c00219{bottom:438.445455px;}
.y3c_c00219{bottom:439.524888px;}
.y3b_c00219{bottom:449.170807px;}
.y3a_c00219{bottom:450.385998px;}
.y39_c00219{bottom:451.658881px;}
.y38_c00219{bottom:453.881383px;}
.y37_c00219{bottom:455.933724px;}
.y36_c00219{bottom:456.719178px;}
.y35_c00219{bottom:458.700172px;}
.y34_c00219{bottom:465.338901px;}
.y33_c00219{bottom:466.501279px;}
.y32_c00219{bottom:469.290388px;}
.y31_c00219{bottom:471.033207px;}
.y30_c00219{bottom:472.741960px;}
.y2f_c00219{bottom:481.906348px;}
.y2e_c00219{bottom:484.580171px;}
.y2d_c00219{bottom:485.252029px;}
.y2c_c00219{bottom:487.173130px;}
.y2b_c00219{bottom:488.630809px;}
.y2a_c00219{bottom:491.006460px;}
.y29_c00219{bottom:492.187722px;}
.y28_c00219{bottom:498.809571px;}
.y27_c00219{bottom:500.339679px;}
.y26_c00219{bottom:502.735812px;}
.y25_c00219{bottom:504.092091px;}
.y24_c00219{bottom:506.113992px;}
.y23_c00219{bottom:506.960329px;}
.y22_c00219{bottom:507.805898px;}
.y21_c00219{bottom:508.670505px;}
.y20_c00219{bottom:516.671685px;}
.y1f_c00219{bottom:517.386188px;}
.y1e_c00219{bottom:518.218572px;}
.y1d_c00219{bottom:520.334005px;}
.y1c_c00219{bottom:521.063496px;}
.y1b_c00219{bottom:523.111644px;}
.y1a_c00219{bottom:523.683837px;}
.y19_c00219{bottom:525.684792px;}
.y18_c00219{bottom:532.851352px;}
.y17_c00219{bottom:534.421782px;}
.y16_c00219{bottom:537.210309px;}
.y15_c00219{bottom:538.979346px;}
.y14_c00219{bottom:540.151912px;}
.y13_c00219{bottom:540.969675px;}
.y12_c00219{bottom:542.161036px;}
.y11_c00219{bottom:551.096304px;}
.y10_c00219{bottom:552.773293px;}
.yf_c00219{bottom:553.422046px;}
.ye_c00219{bottom:554.984814px;}
.yd_c00219{bottom:555.426024px;}
.yc_c00219{bottom:557.312095px;}
.yb_c00219{bottom:557.773923px;}
.ya_c00219{bottom:559.175119px;}
.y9_c00219{bottom:568.465407px;}
.y8_c00219{bottom:570.127527px;}
.y7_c00219{bottom:570.578535px;}
.y6_c00219{bottom:571.607032px;}
.y5_c00219{bottom:572.491350px;}
.y4_c00219{bottom:574.453413px;}
.y3_c00219{bottom:575.253450px;}
.y2_c00219{bottom:576.189000px;}
.y1_c00219{bottom:588.598500px;}
.ha_c00219{height:60.922194px;}
.hf_c00219{height:61.972577px;}
.h7_c00219{height:63.022959px;}
.h2_c00219{height:64.050000px;}
.h8_c00219{height:64.073342px;}
.h4_c00219{height:65.123725px;}
.h3_c00219{height:66.174107px;}
.h5_c00219{height:67.224490px;}
.hc_c00219{height:68.274873px;}
.h6_c00219{height:69.325255px;}
.hb_c00219{height:70.375638px;}
.he_c00219{height:71.426021px;}
.hd_c00219{height:72.476403px;}
.h9_c00219{height:73.526786px;}
.h0_c00219{height:625.320000px;}
.h1_c00219{height:625.500000px;}
.w0_c00219{width:378.540000px;}
.w1_c00219{width:378.750000px;}
.x0_c00219{left:0.000000px;}
.x77_c00219{left:32.814577px;}
.x73_c00219{left:34.433317px;}
.x70_c00219{left:36.344969px;}
.x67_c00219{left:37.861234px;}
.x5f_c00219{left:39.136997px;}
.x4c_c00219{left:40.364469px;}
.x3f_c00219{left:41.523100px;}
.x2c_c00219{left:43.038580px;}
.x23_c00219{left:44.274486px;}
.x2_c00219{left:45.828000px;}
.x39_c00219{left:51.932457px;}
.x60_c00219{left:61.674422px;}
.x6a_c00219{left:62.675944px;}
.x64_c00219{left:67.039183px;}
.x1d_c00219{left:69.207532px;}
.x68_c00219{left:70.968720px;}
.x31_c00219{left:73.466767px;}
.x24_c00219{left:74.570685px;}
.x6d_c00219{left:76.818708px;}
.x3_c00219{left:80.478000px;}
.x11_c00219{left:81.879033px;}
.x4d_c00219{left:83.579637px;}
.x52_c00219{left:88.713518px;}
.x2d_c00219{left:90.223005px;}
.xa_c00219{left:92.516166px;}
.x46_c00219{left:95.781130px;}
.x29_c00219{left:98.688369px;}
.x72_c00219{left:100.648243px;}
.x17_c00219{left:102.421620px;}
.x55_c00219{left:105.626435px;}
.x12_c00219{left:106.662524px;}
.xb_c00219{left:107.897410px;}
.x2e_c00219{left:108.917431px;}
.x4_c00219{left:110.109000px;}
.x40_c00219{left:114.609806px;}
.x1e_c00219{left:116.192611px;}
.x18_c00219{left:118.777097px;}
.x47_c00219{left:120.093982px;}
.x3a_c00219{left:122.093277px;}
.x56_c00219{left:123.560033px;}
.x35_c00219{left:126.333111px;}
.x58_c00219{left:127.910483px;}
.x74_c00219{left:131.801287px;}
.x53_c00219{left:133.016064px;}
.x25_c00219{left:135.482461px;}
.x32_c00219{left:136.494958px;}
.x36_c00219{left:137.779494px;}
.x62_c00219{left:139.132870px;}
.x13_c00219{left:142.196273px;}
.x6e_c00219{left:143.655677px;}
.x3b_c00219{left:145.650663px;}
.x2a_c00219{left:154.897794px;}
.x2f_c00219{left:157.799168px;}
.x4e_c00219{left:160.400769px;}
.x6f_c00219{left:162.281666px;}
.x6b_c00219{left:168.761304px;}
.xc_c00219{left:170.746807px;}
.x1f_c00219{left:172.341963px;}
.x48_c00219{left:173.584024px;}
.x41_c00219{left:175.922602px;}
.x19_c00219{left:177.288461px;}
.x59_c00219{left:178.734015px;}
.x5_c00219{left:182.778000px;}
.x1_c00219{left:184.140000px;}
.xd_c00219{left:185.475633px;}
.x5a_c00219{left:189.928800px;}
.x4f_c00219{left:191.332598px;}
.x14_c00219{left:195.818605px;}
.x1a_c00219{left:198.135465px;}
.x54_c00219{left:200.036033px;}
.x3c_c00219{left:203.335492px;}
.x42_c00219{left:206.211582px;}
.x20_c00219{left:210.009810px;}
.x61_c00219{left:211.612921px;}
.x6_c00219{left:215.530500px;}
.x65_c00219{left:220.666687px;}
.x26_c00219{left:222.094395px;}
.x3d_c00219{left:225.075445px;}
.x33_c00219{left:228.937021px;}
.x49_c00219{left:234.923364px;}
.xe_c00219{left:237.573921px;}
.x27_c00219{left:239.305806px;}
.x30_c00219{left:241.001971px;}
.x78_c00219{left:242.277100px;}
.x2b_c00219{left:244.855074px;}
.x4a_c00219{left:246.791040px;}
.x50_c00219{left:248.759862px;}
.x66_c00219{left:250.965726px;}
.x7_c00219{left:253.623000px;}
.x71_c00219{left:255.432270px;}
.x37_c00219{left:257.976853px;}
.xf_c00219{left:259.211179px;}
.x5c_c00219{left:261.583728px;}
.x75_c00219{left:264.983910px;}
.x8_c00219{left:270.327000px;}
.x3e_c00219{left:274.751367px;}
.x21_c00219{left:276.572651px;}
.x5b_c00219{left:278.621702px;}
.x15_c00219{left:280.305916px;}
.x1b_c00219{left:282.351280px;}
.x43_c00219{left:290.203979px;}
.x57_c00219{left:293.681876px;}
.x63_c00219{left:295.166734px;}
.x51_c00219{left:296.414423px;}
.x34_c00219{left:298.007214px;}
.x38_c00219{left:301.172857px;}
.x1c_c00219{left:302.754366px;}
.x44_c00219{left:306.398996px;}
.x28_c00219{left:307.869612px;}
.x69_c00219{left:311.206459px;}
.x5d_c00219{left:312.778172px;}
.x10_c00219{left:315.095143px;}
.x22_c00219{left:319.066323px;}
.x4b_c00219{left:323.791474px;}
.x45_c00219{left:324.922986px;}
.x16_c00219{left:327.906722px;}
.x76_c00219{left:328.927984px;}
.x6c_c00219{left:330.791987px;}
.x9_c00219{left:331.887000px;}
.x5e_c00219{left:333.398717px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.fs8_c00219{font-size:54.153061pt;}
.fsd_c00219{font-size:55.086735pt;}
.fs5_c00219{font-size:56.020408pt;}
.fs0_c00219{font-size:56.933333pt;}
.fs6_c00219{font-size:56.954082pt;}
.fs2_c00219{font-size:57.887755pt;}
.fs1_c00219{font-size:58.821429pt;}
.fs3_c00219{font-size:59.755102pt;}
.fsa_c00219{font-size:60.688776pt;}
.fs4_c00219{font-size:61.622449pt;}
.fs9_c00219{font-size:62.556123pt;}
.fsc_c00219{font-size:63.489796pt;}
.fsb_c00219{font-size:64.423470pt;}
.fs7_c00219{font-size:65.357143pt;}
.y0_c00219{bottom:0.000000pt;}
.yeb_c00219{bottom:27.687464pt;}
.yea_c00219{bottom:29.054712pt;}
.ye9_c00219{bottom:30.467085pt;}
.ye8_c00219{bottom:33.141080pt;}
.ye7_c00219{bottom:34.266499pt;}
.ye6_c00219{bottom:35.170939pt;}
.ye5_c00219{bottom:37.103165pt;}
.ye4_c00219{bottom:37.980596pt;}
.ye3_c00219{bottom:38.475024pt;}
.ye2_c00219{bottom:43.424621pt;}
.ye1_c00219{bottom:44.175520pt;}
.ye0_c00219{bottom:44.796144pt;}
.ydf_c00219{bottom:46.003472pt;}
.yde_c00219{bottom:46.650633pt;}
.ydd_c00219{bottom:49.391265pt;}
.ydc_c00219{bottom:49.987116pt;}
.ydb_c00219{bottom:51.677880pt;}
.yda_c00219{bottom:58.446695pt;}
.yd9_c00219{bottom:59.301193pt;}
.yd8_c00219{bottom:60.209519pt;}
.yd7_c00219{bottom:60.749012pt;}
.yd6_c00219{bottom:63.176013pt;}
.yd5_c00219{bottom:63.879580pt;}
.yd4_c00219{bottom:64.191200pt;}
.yd3_c00219{bottom:64.559240pt;}
.yd2_c00219{bottom:66.563331pt;}
.yd1_c00219{bottom:75.371332pt;}
.yd0_c00219{bottom:75.916536pt;}
.ycf_c00219{bottom:76.695748pt;}
.yce_c00219{bottom:80.308009pt;}
.ycd_c00219{bottom:81.927311pt;}
.ycc_c00219{bottom:90.643189pt;}
.ycb_c00219{bottom:92.077431pt;}
.yca_c00219{bottom:92.620099pt;}
.yc9_c00219{bottom:94.045017pt;}
.yc8_c00219{bottom:95.468100pt;}
.yc7_c00219{bottom:96.333540pt;}
.yc6_c00219{bottom:105.802424pt;}
.yc5_c00219{bottom:106.033711pt;}
.yc4_c00219{bottom:107.299561pt;}
.yc3_c00219{bottom:108.117923pt;}
.yc2_c00219{bottom:108.668165pt;}
.yc1_c00219{bottom:111.218804pt;}
.yc0_c00219{bottom:112.197021pt;}
.ybf_c00219{bottom:113.140748pt;}
.ybe_c00219{bottom:121.503329pt;}
.ybd_c00219{bottom:122.133500pt;}
.ybc_c00219{bottom:123.740071pt;}
.ybb_c00219{bottom:125.428087pt;}
.yba_c00219{bottom:125.957837pt;}
.yb9_c00219{bottom:127.253356pt;}
.yb8_c00219{bottom:127.859475pt;}
.yb7_c00219{bottom:128.985659pt;}
.yb6_c00219{bottom:134.836305pt;}
.yb5_c00219{bottom:135.637579pt;}
.yb4_c00219{bottom:137.878292pt;}
.yb3_c00219{bottom:141.173492pt;}
.yb2_c00219{bottom:144.274973pt;}
.yb1_c00219{bottom:145.322041pt;}
.yb0_c00219{bottom:156.729615pt;}
.yaf_c00219{bottom:158.880089pt;}
.yae_c00219{bottom:159.812828pt;}
.yad_c00219{bottom:160.551356pt;}
.yac_c00219{bottom:161.636496pt;}
.yab_c00219{bottom:166.853551pt;}
.yaa_c00219{bottom:167.555632pt;}
.ya9_c00219{bottom:168.951513pt;}
.ya8_c00219{bottom:169.849848pt;}
.ya7_c00219{bottom:172.016085pt;}
.ya6_c00219{bottom:172.455872pt;}
.ya5_c00219{bottom:175.569993pt;}
.ya4_c00219{bottom:182.404520pt;}
.ya3_c00219{bottom:182.895692pt;}
.ya2_c00219{bottom:186.034451pt;}
.ya1_c00219{bottom:186.726535pt;}
.ya0_c00219{bottom:187.300247pt;}
.y9f_c00219{bottom:189.897525pt;}
.y9e_c00219{bottom:190.280660pt;}
.y9d_c00219{bottom:191.651576pt;}
.y9c_c00219{bottom:192.858456pt;}
.y9b_c00219{bottom:198.922357pt;}
.y9a_c00219{bottom:200.477224pt;}
.y99_c00219{bottom:201.582009pt;}
.y98_c00219{bottom:202.922819pt;}
.y97_c00219{bottom:206.647533pt;}
.y96_c00219{bottom:207.179795pt;}
.y95_c00219{bottom:208.216192pt;}
.y94_c00219{bottom:216.037841pt;}
.y93_c00219{bottom:218.255663pt;}
.y92_c00219{bottom:220.198957pt;}
.y91_c00219{bottom:221.959641pt;}
.y90_c00219{bottom:222.856851pt;}
.y8f_c00219{bottom:230.600920pt;}
.y8e_c00219{bottom:232.792544pt;}
.y8d_c00219{bottom:234.489647pt;}
.y8c_c00219{bottom:235.259787pt;}
.y8b_c00219{bottom:235.959708pt;}
.y8a_c00219{bottom:237.725373pt;}
.y89_c00219{bottom:238.466417pt;}
.y88_c00219{bottom:243.733117pt;}
.y87_c00219{bottom:244.374784pt;}
.y86_c00219{bottom:245.967716pt;}
.y85_c00219{bottom:248.351532pt;}
.y84_c00219{bottom:248.743193pt;}
.y83_c00219{bottom:250.166347pt;}
.y82_c00219{bottom:250.777731pt;}
.y81_c00219{bottom:252.877227pt;}
.y80_c00219{bottom:259.720261pt;}
.y7f_c00219{bottom:260.218817pt;}
.y7e_c00219{bottom:261.714595pt;}
.y7d_c00219{bottom:262.663677pt;}
.y7c_c00219{bottom:262.972381pt;}
.y7b_c00219{bottom:264.372277pt;}
.y7a_c00219{bottom:264.849123pt;}
.y79_c00219{bottom:265.187639pt;}
.y78_c00219{bottom:266.800467pt;}
.y77_c00219{bottom:275.479420pt;}
.y76_c00219{bottom:276.212927pt;}
.y75_c00219{bottom:277.534723pt;}
.y74_c00219{bottom:278.822852pt;}
.y73_c00219{bottom:279.527337pt;}
.y72_c00219{bottom:280.621783pt;}
.y71_c00219{bottom:281.164271pt;}
.y70_c00219{bottom:283.128115pt;}
.y6f_c00219{bottom:291.183157pt;}
.y6e_c00219{bottom:291.912379pt;}
.y6d_c00219{bottom:293.463717pt;}
.y6c_c00219{bottom:295.369747pt;}
.y6b_c00219{bottom:296.106997pt;}
.y6a_c00219{bottom:296.629151pt;}
.y69_c00219{bottom:298.011371pt;}
.y68_c00219{bottom:305.507945pt;}
.y67_c00219{bottom:306.335031pt;}
.y66_c00219{bottom:307.690895pt;}
.y65_c00219{bottom:308.256471pt;}
.y64_c00219{bottom:309.324001pt;}
.y63_c00219{bottom:310.203799pt;}
.y62_c00219{bottom:312.389088pt;}
.y61_c00219{bottom:313.618392pt;}
.y60_c00219{bottom:322.202019pt;}
.y5f_c00219{bottom:324.118079pt;}
.y5e_c00219{bottom:324.413577pt;}
.y5d_c00219{bottom:325.940428pt;}
.y5c_c00219{bottom:327.272224pt;}
.y5b_c00219{bottom:327.877081pt;}
.y5a_c00219{bottom:329.221117pt;}
.y59_c00219{bottom:336.028955pt;}
.y58_c00219{bottom:336.605627pt;}
.y57_c00219{bottom:337.109057pt;}
.y56_c00219{bottom:337.582781pt;}
.y55_c00219{bottom:339.721309pt;}
.y54_c00219{bottom:340.663068pt;}
.y53_c00219{bottom:341.195917pt;}
.y52_c00219{bottom:342.569559pt;}
.y51_c00219{bottom:344.844019pt;}
.y50_c00219{bottom:352.713684pt;}
.y4f_c00219{bottom:354.435625pt;}
.y4e_c00219{bottom:355.189553pt;}
.y4d_c00219{bottom:357.189104pt;}
.y4c_c00219{bottom:358.005331pt;}
.y4b_c00219{bottom:358.483629pt;}
.y4a_c00219{bottom:360.436401pt;}
.y49_c00219{bottom:366.624831pt;}
.y48_c00219{bottom:368.237955pt;}
.y47_c00219{bottom:370.001792pt;}
.y46_c00219{bottom:372.725192pt;}
.y45_c00219{bottom:373.152016pt;}
.y44_c00219{bottom:375.286065pt;}
.y43_c00219{bottom:376.284053pt;}
.y42_c00219{bottom:382.543013pt;}
.y41_c00219{bottom:383.113540pt;}
.y40_c00219{bottom:383.805381pt;}
.y3f_c00219{bottom:384.754435pt;}
.y3e_c00219{bottom:387.712249pt;}
.y3d_c00219{bottom:389.729293pt;}
.y3c_c00219{bottom:390.688789pt;}
.y3b_c00219{bottom:399.262940pt;}
.y3a_c00219{bottom:400.343109pt;}
.y39_c00219{bottom:401.474561pt;}
.y38_c00219{bottom:403.450119pt;}
.y37_c00219{bottom:405.274421pt;}
.y36_c00219{bottom:405.972603pt;}
.y35_c00219{bottom:407.733487pt;}
.y34_c00219{bottom:413.634579pt;}
.y33_c00219{bottom:414.667804pt;}
.y32_c00219{bottom:417.147012pt;}
.y31_c00219{bottom:418.696184pt;}
.y30_c00219{bottom:420.215076pt;}
.y2f_c00219{bottom:428.361199pt;}
.y2e_c00219{bottom:430.737929pt;}
.y2d_c00219{bottom:431.335137pt;}
.y2c_c00219{bottom:433.042783pt;}
.y2b_c00219{bottom:434.338497pt;}
.y2a_c00219{bottom:436.450187pt;}
.y29_c00219{bottom:437.500197pt;}
.y28_c00219{bottom:443.386285pt;}
.y27_c00219{bottom:444.746381pt;}
.y26_c00219{bottom:446.876277pt;}
.y25_c00219{bottom:448.081859pt;}
.y24_c00219{bottom:449.879104pt;}
.y23_c00219{bottom:450.631404pt;}
.y22_c00219{bottom:451.383020pt;}
.y21_c00219{bottom:452.151560pt;}
.y20_c00219{bottom:459.263720pt;}
.y1f_c00219{bottom:459.898833pt;}
.y1e_c00219{bottom:460.638731pt;}
.y1d_c00219{bottom:462.519116pt;}
.y1c_c00219{bottom:463.167552pt;}
.y1b_c00219{bottom:464.988128pt;}
.y1a_c00219{bottom:465.496744pt;}
.y19_c00219{bottom:467.275371pt;}
.y18_c00219{bottom:473.645647pt;}
.y17_c00219{bottom:475.041584pt;}
.y16_c00219{bottom:477.520275pt;}
.y15_c00219{bottom:479.092752pt;}
.y14_c00219{bottom:480.135033pt;}
.y13_c00219{bottom:480.861933pt;}
.y12_c00219{bottom:481.920921pt;}
.y11_c00219{bottom:489.863381pt;}
.y10_c00219{bottom:491.354039pt;}
.yf_c00219{bottom:491.930708pt;}
.ye_c00219{bottom:493.319835pt;}
.yd_c00219{bottom:493.712021pt;}
.yc_c00219{bottom:495.388529pt;}
.yb_c00219{bottom:495.799043pt;}
.ya_c00219{bottom:497.044551pt;}
.y9_c00219{bottom:505.302584pt;}
.y8_c00219{bottom:506.780024pt;}
.y7_c00219{bottom:507.180920pt;}
.y6_c00219{bottom:508.095140pt;}
.y5_c00219{bottom:508.881200pt;}
.y4_c00219{bottom:510.625256pt;}
.y3_c00219{bottom:511.336400pt;}
.y2_c00219{bottom:512.168000pt;}
.y1_c00219{bottom:523.198667pt;}
.ha_c00219{height:54.153061pt;}
.hf_c00219{height:55.086735pt;}
.h7_c00219{height:56.020408pt;}
.h2_c00219{height:56.933333pt;}
.h8_c00219{height:56.954082pt;}
.h4_c00219{height:57.887755pt;}
.h3_c00219{height:58.821429pt;}
.h5_c00219{height:59.755102pt;}
.hc_c00219{height:60.688776pt;}
.h6_c00219{height:61.622449pt;}
.hb_c00219{height:62.556123pt;}
.he_c00219{height:63.489796pt;}
.hd_c00219{height:64.423470pt;}
.h9_c00219{height:65.357143pt;}
.h0_c00219{height:555.840000pt;}
.h1_c00219{height:556.000000pt;}
.w0_c00219{width:336.480000pt;}
.w1_c00219{width:336.666667pt;}
.x0_c00219{left:0.000000pt;}
.x77_c00219{left:29.168513pt;}
.x73_c00219{left:30.607393pt;}
.x70_c00219{left:32.306639pt;}
.x67_c00219{left:33.654431pt;}
.x5f_c00219{left:34.788441pt;}
.x4c_c00219{left:35.879528pt;}
.x3f_c00219{left:36.909423pt;}
.x2c_c00219{left:38.256516pt;}
.x23_c00219{left:39.355099pt;}
.x2_c00219{left:40.736000pt;}
.x39_c00219{left:46.162184pt;}
.x60_c00219{left:54.821708pt;}
.x6a_c00219{left:55.711951pt;}
.x64_c00219{left:59.590385pt;}
.x1d_c00219{left:61.517807pt;}
.x68_c00219{left:63.083307pt;}
.x31_c00219{left:65.303793pt;}
.x24_c00219{left:66.285053pt;}
.x6d_c00219{left:68.283296pt;}
.x3_c00219{left:71.536000pt;}
.x11_c00219{left:72.781363pt;}
.x4d_c00219{left:74.293011pt;}
.x52_c00219{left:78.856460pt;}
.x2d_c00219{left:80.198227pt;}
.xa_c00219{left:82.236592pt;}
.x46_c00219{left:85.138783pt;}
.x29_c00219{left:87.722995pt;}
.x72_c00219{left:89.465105pt;}
.x17_c00219{left:91.041440pt;}
.x55_c00219{left:93.890164pt;}
.x12_c00219{left:94.811132pt;}
.xb_c00219{left:95.908809pt;}
.x2e_c00219{left:96.815495pt;}
.x4_c00219{left:97.874667pt;}
.x40_c00219{left:101.875383pt;}
.x1e_c00219{left:103.282321pt;}
.x18_c00219{left:105.579641pt;}
.x47_c00219{left:106.750207pt;}
.x3a_c00219{left:108.527357pt;}
.x56_c00219{left:109.831140pt;}
.x35_c00219{left:112.296099pt;}
.x58_c00219{left:113.698207pt;}
.x74_c00219{left:117.156700pt;}
.x53_c00219{left:118.236501pt;}
.x25_c00219{left:120.428855pt;}
.x32_c00219{left:121.328852pt;}
.x36_c00219{left:122.470661pt;}
.x62_c00219{left:123.673663pt;}
.x13_c00219{left:126.396687pt;}
.x6e_c00219{left:127.693935pt;}
.x3b_c00219{left:129.467256pt;}
.x2a_c00219{left:137.686928pt;}
.x2f_c00219{left:140.265927pt;}
.x4e_c00219{left:142.578461pt;}
.x6f_c00219{left:144.250369pt;}
.x6b_c00219{left:150.010048pt;}
.xc_c00219{left:151.774940pt;}
.x1f_c00219{left:153.192856pt;}
.x48_c00219{left:154.296911pt;}
.x41_c00219{left:156.375647pt;}
.x19_c00219{left:157.589743pt;}
.x59_c00219{left:158.874680pt;}
.x5_c00219{left:162.469333pt;}
.x1_c00219{left:163.680000pt;}
.xd_c00219{left:164.867229pt;}
.x5a_c00219{left:168.825600pt;}
.x4f_c00219{left:170.073420pt;}
.x14_c00219{left:174.060983pt;}
.x1a_c00219{left:176.120413pt;}
.x54_c00219{left:177.809807pt;}
.x3c_c00219{left:180.742660pt;}
.x42_c00219{left:183.299184pt;}
.x20_c00219{left:186.675387pt;}
.x61_c00219{left:188.100375pt;}
.x6_c00219{left:191.582667pt;}
.x65_c00219{left:196.148167pt;}
.x26_c00219{left:197.417240pt;}
.x3d_c00219{left:200.067063pt;}
.x33_c00219{left:203.499575pt;}
.x49_c00219{left:208.820768pt;}
.xe_c00219{left:211.176819pt;}
.x27_c00219{left:212.716272pt;}
.x30_c00219{left:214.223975pt;}
.x78_c00219{left:215.357423pt;}
.x2b_c00219{left:217.648955pt;}
.x4a_c00219{left:219.369813pt;}
.x50_c00219{left:221.119877pt;}
.x66_c00219{left:223.080645pt;}
.x7_c00219{left:225.442667pt;}
.x71_c00219{left:227.050907pt;}
.x37_c00219{left:229.312759pt;}
.xf_c00219{left:230.409937pt;}
.x5c_c00219{left:232.518869pt;}
.x75_c00219{left:235.541253pt;}
.x8_c00219{left:240.290667pt;}
.x3e_c00219{left:244.223437pt;}
.x21_c00219{left:245.842356pt;}
.x5b_c00219{left:247.663735pt;}
.x15_c00219{left:249.160815pt;}
.x1b_c00219{left:250.978916pt;}
.x43_c00219{left:257.959092pt;}
.x57_c00219{left:261.050556pt;}
.x63_c00219{left:262.370431pt;}
.x51_c00219{left:263.479487pt;}
.x34_c00219{left:264.895301pt;}
.x38_c00219{left:267.709207pt;}
.x1c_c00219{left:269.114992pt;}
.x44_c00219{left:272.354663pt;}
.x28_c00219{left:273.661877pt;}
.x69_c00219{left:276.627964pt;}
.x5d_c00219{left:278.025041pt;}
.x10_c00219{left:280.084572pt;}
.x22_c00219{left:283.614509pt;}
.x4b_c00219{left:287.814644pt;}
.x45_c00219{left:288.820432pt;}
.x16_c00219{left:291.472641pt;}
.x76_c00219{left:292.380431pt;}
.x6c_c00219{left:294.037321pt;}
.x9_c00219{left:295.010667pt;}
.x5e_c00219{left:296.354415pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00220 {
    display:none;
  }
  .loading-indicator_c00220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00220 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00220 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00220" -> "#page-container .classname_c00220")
 */
.pf_c00220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00220 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00220 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00220 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00220 {overflow:visible;}
  }
}
.c_c00220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00220 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00220:after { /* webkit #35443 */
  content: '';
}
.t_c00220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00220 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00220 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00220 { /* info for Javascript */
  display:none;
}
.l_c00220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00220:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00220 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00220.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00220;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00220{transform:matrix(0.044810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044810,0.000000,0.000000,0.250000,0,0);}
.m2f_c00220{transform:matrix(0.077865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077865,0.000000,0.000000,0.250000,0,0);}
.m29_c00220{transform:matrix(0.108285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108285,0.000000,0.000000,0.250000,0,0);}
.m34_c00220{transform:matrix(0.138920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138920,0.000000,0.000000,0.250000,0,0);}
.m94_c00220{transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);}
.m39_c00220{transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);}
.m96_c00220{transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);}
.m25_c00220{transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m51_c00220{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00220{transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151555,0.000000,0.000000,0.250000,0,0);}
.mbb_c00220{transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);}
.m2c_c00220{transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);}
.m59_c00220{transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);}
.mac_c00220{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.maf_c00220{transform:matrix(0.156365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00220{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m6e_c00220{transform:matrix(0.156805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156805,0.000000,0.000000,0.250000,0,0);}
.m33_c00220{transform:matrix(0.159260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159260,0.000000,0.000000,0.250000,0,0);}
.me2_c00220{transform:matrix(0.160680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160680,0.000000,0.000000,0.250000,0,0);}
.m5c_c00220{transform:matrix(0.161755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161755,0.000000,0.000000,0.250000,0,0);}
.m31_c00220{transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);}
.m81_c00220{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00220{transform:matrix(0.163330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163330,0.000000,0.000000,0.250000,0,0);}
.mb0_c00220{transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);}
.mc2_c00220{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.mab_c00220{transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);}
.m74_c00220{transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);}
.m56_c00220{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m32_c00220{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.167260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167260,0.000000,0.000000,0.250000,0,0);}
.mc4_c00220{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168755,0.000000,0.000000,0.250000,0,0);}
.mad_c00220{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.me0_c00220{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.m41_c00220{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.m80_c00220{transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m3c_c00220{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.mb2_c00220{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.m7f_c00220{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.mae_c00220{transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);}
.ma3_c00220{transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);}
.m70_c00220{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m8c_c00220{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.me4_c00220{transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);}
.mde_c00220{transform:matrix(0.174120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174120,0.000000,0.000000,0.250000,0,0);}
.m5b_c00220{transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);}
.m73_c00220{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m5d_c00220{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00220{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m9d_c00220{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);}
.m36_c00220{transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176115,0.000000,0.000000,0.250000,0,0);}
.mc7_c00220{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.me1_c00220{transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00220{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.mbe_c00220{transform:matrix(0.177990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177990,0.000000,0.000000,0.250000,0,0);}
.m52_c00220{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00220{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.mda_c00220{transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);}
.m92_c00220{transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);}
.m9a_c00220{transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);}
.m87_c00220{transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);}
.m24_c00220{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m2b_c00220{transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);}
.m38_c00220{transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);}
.m9f_c00220{transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);}
.m35_c00220{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.md4_c00220{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m7a_c00220{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.mbf_c00220{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.mdd_c00220{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);}
.m8b_c00220{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m47_c00220{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.m83_c00220{transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);}
.m93_c00220{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m42_c00220{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m6f_c00220{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.me3_c00220{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.md5_c00220{transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);}
.mc1_c00220{transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187690,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);}
.m8d_c00220{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.mcc_c00220{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.m69_c00220{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m8e_c00220{transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m27_c00220{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.md8_c00220{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00220{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m95_c00220{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.ma7_c00220{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m44_c00220{transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);}
.m98_c00220{transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);}
.m54_c00220{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m57_c00220{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.ma2_c00220{transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);}
.m37_c00220{transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);}
.m5a_c00220{transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);}
.m88_c00220{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m55_c00220{transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00220{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m89_c00220{transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);}
.m2d_c00220{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.m4b_c00220{transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);}
.mbd_c00220{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m45_c00220{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.mb1_c00220{transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);}
.m4d_c00220{transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.m6c_c00220{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.mcd_c00220{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.mdc_c00220{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.mce_c00220{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.ma0_c00220{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.m76_c00220{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m30_c00220{transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);}
.m40_c00220{transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.mb9_c00220{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.ma6_c00220{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.m62_c00220{transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);}
.m84_c00220{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);}
.m7b_c00220{transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203155,0.000000,0.000000,0.250000,0,0);}
.m4a_c00220{transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);}
.m4e_c00220{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.m90_c00220{transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);}
.mba_c00220{transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m77_c00220{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m43_c00220{transform:matrix(0.207820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207820,0.000000,0.000000,0.250000,0,0);}
.m78_c00220{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m60_c00220{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.md1_c00220{transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);}
.m85_c00220{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m61_c00220{transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);}
.m58_c00220{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00220{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.mca_c00220{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m4f_c00220{transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m46_c00220{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m20_c00220{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.md7_c00220{transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);}
.m9b_c00220{transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213935,0.000000,0.000000,0.250000,0,0);}
.m91_c00220{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.md2_c00220{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m6d_c00220{transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);}
.ma1_c00220{transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216145,0.000000,0.000000,0.250000,0,0);}
.maa_c00220{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.m7e_c00220{transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);}
.m82_c00220{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00220{transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00220{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.md9_c00220{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00220{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.ma8_c00220{transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);}
.m53_c00220{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.mb8_c00220{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);}
.m9e_c00220{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.mb6_c00220{transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);}
.m9c_c00220{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m86_c00220{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.m68_c00220{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.ma5_c00220{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.mc8_c00220{transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);}
.md6_c00220{transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);}
.m49_c00220{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m75_c00220{transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);}
.m63_c00220{transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229440,0.000000,0.000000,0.250000,0,0);}
.mb5_c00220{transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);}
.m3b_c00220{transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);}
.m99_c00220{transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);}
.mb7_c00220{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.m50_c00220{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00220{transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);}
.m79_c00220{transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);}
.m71_c00220{transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);}
.m2a_c00220{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.md3_c00220{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);}
.mc6_c00220{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.md0_c00220{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00220{transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);}
.mc5_c00220{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m7c_c00220{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m67_c00220{transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);}
.mbc_c00220{transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);}
.mb4_c00220{transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);}
.ma4_c00220{transform:matrix(0.265570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265570,0.000000,0.000000,0.250000,0,0);}
.m5e_c00220{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m3a_c00220{transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);}
.m66_c00220{transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);}
.ma9_c00220{transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);}
.m48_c00220{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.mcb_c00220{transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);}
.m64_c00220{transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);}
.mc3_c00220{transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);}
.m72_c00220{transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);}
.m7d_c00220{transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349275,0.000000,0.000000,0.250000,0,0);}
.m5f_c00220{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m65_c00220{transform:matrix(0.365995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365995,0.000000,0.000000,0.250000,0,0);}
.me5_c00220{transform:matrix(0.414895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414895,0.000000,0.000000,0.250000,0,0);}
.m97_c00220{transform:matrix(0.466920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466920,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(1.951855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.951855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.951855,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:0.000000px;}
.fc0_c00220{color:transparent;}
.fs0_c00220{font-size:22.050000px;}
.fs12_c00220{font-size:29.400000px;}
.fsf_c00220{font-size:57.750000px;}
.fsc_c00220{font-size:58.800000px;}
.fsa_c00220{font-size:59.850000px;}
.fs10_c00220{font-size:60.900000px;}
.fsb_c00220{font-size:61.950000px;}
.fsd_c00220{font-size:63.000000px;}
.fs9_c00220{font-size:64.050000px;}
.fs3_c00220{font-size:65.100000px;}
.fs2_c00220{font-size:67.200000px;}
.fs4_c00220{font-size:68.250000px;}
.fs8_c00220{font-size:69.300000px;}
.fs6_c00220{font-size:71.400000px;}
.fse_c00220{font-size:72.450000px;}
.fs5_c00220{font-size:73.500000px;}
.fs11_c00220{font-size:74.550000px;}
.fs7_c00220{font-size:75.600000px;}
.fs1_c00220{font-size:82.950000px;}
.y0_c00220{bottom:0.000000px;}
.y57_c00220{bottom:3.240000px;}
.y56_c00220{bottom:28.933500px;}
.y55_c00220{bottom:29.926500px;}
.y54_c00220{bottom:31.410000px;}
.y53_c00220{bottom:31.887000px;}
.y52_c00220{bottom:32.743500px;}
.y51_c00220{bottom:33.246000px;}
.y50_c00220{bottom:34.569000px;}
.y4f_c00220{bottom:46.977000px;}
.y4e_c00220{bottom:47.772000px;}
.y4d_c00220{bottom:48.843000px;}
.y4c_c00220{bottom:49.812000px;}
.y4b_c00220{bottom:51.295500px;}
.y4a_c00220{bottom:52.389000px;}
.y49_c00220{bottom:65.782500px;}
.y48_c00220{bottom:80.880000px;}
.y47_c00220{bottom:81.756000px;}
.y46_c00220{bottom:82.888500px;}
.y45_c00220{bottom:83.229000px;}
.y44_c00220{bottom:84.477000px;}
.y43_c00220{bottom:85.069500px;}
.y42_c00220{bottom:85.326000px;}
.y41_c00220{bottom:98.287500px;}
.y40_c00220{bottom:98.604000px;}
.y3f_c00220{bottom:100.360500px;}
.y3e_c00220{bottom:101.211000px;}
.y3d_c00220{bottom:101.635500px;}
.y3c_c00220{bottom:102.718500px;}
.y3b_c00220{bottom:103.125000px;}
.y3a_c00220{bottom:104.248500px;}
.y39_c00220{bottom:116.671500px;}
.y38_c00220{bottom:117.886500px;}
.y37_c00220{bottom:118.614000px;}
.y36_c00220{bottom:119.361000px;}
.y35_c00220{bottom:120.345000px;}
.y34_c00220{bottom:120.661500px;}
.y33_c00220{bottom:121.128000px;}
.y32_c00220{bottom:121.773000px;}
.y31_c00220{bottom:134.140500px;}
.y30_c00220{bottom:150.049500px;}
.y2f_c00220{bottom:166.743000px;}
.y1_c00220{bottom:170.370000px;}
.y2e_c00220{bottom:184.222500px;}
.y2d_c00220{bottom:203.205000px;}
.y2c_c00220{bottom:204.331500px;}
.y2b_c00220{bottom:204.951000px;}
.y2a_c00220{bottom:206.479500px;}
.y29_c00220{bottom:207.091500px;}
.y28_c00220{bottom:220.662000px;}
.y27_c00220{bottom:238.074000px;}
.y26_c00220{bottom:255.084000px;}
.y25_c00220{bottom:255.306000px;}
.y24_c00220{bottom:255.957000px;}
.y23_c00220{bottom:256.429500px;}
.y22_c00220{bottom:256.678500px;}
.y21_c00220{bottom:256.996500px;}
.y20_c00220{bottom:257.215500px;}
.y1f_c00220{bottom:258.121500px;}
.y1e_c00220{bottom:273.444000px;}
.y1d_c00220{bottom:291.381000px;}
.y1c_c00220{bottom:308.659500px;}
.y1b_c00220{bottom:326.092500px;}
.y1a_c00220{bottom:339.900000px;}
.y19_c00220{bottom:340.515000px;}
.y18_c00220{bottom:341.269500px;}
.y17_c00220{bottom:341.949000px;}
.y16_c00220{bottom:342.954000px;}
.y15_c00220{bottom:343.443000px;}
.y14_c00220{bottom:356.569500px;}
.y13_c00220{bottom:374.575500px;}
.y12_c00220{bottom:391.879500px;}
.y11_c00220{bottom:392.028000px;}
.y10_c00220{bottom:393.825000px;}
.yf_c00220{bottom:394.531500px;}
.ye_c00220{bottom:394.738500px;}
.yd_c00220{bottom:395.011500px;}
.yc_c00220{bottom:411.142500px;}
.yb_c00220{bottom:427.069500px;}
.ya_c00220{bottom:444.214500px;}
.y9_c00220{bottom:462.357000px;}
.y8_c00220{bottom:479.313000px;}
.y7_c00220{bottom:496.327500px;}
.y6_c00220{bottom:513.876000px;}
.y5_c00220{bottom:531.394500px;}
.y4_c00220{bottom:548.314500px;}
.y3_c00220{bottom:565.719000px;}
.y2_c00220{bottom:578.185500px;}
.h2_c00220{height:22.050000px;}
.h14_c00220{height:29.400000px;}
.h11_c00220{height:57.750000px;}
.he_c00220{height:58.800000px;}
.hc_c00220{height:59.850000px;}
.h12_c00220{height:60.900000px;}
.hd_c00220{height:61.950000px;}
.hf_c00220{height:63.000000px;}
.hb_c00220{height:64.050000px;}
.h5_c00220{height:65.100000px;}
.h4_c00220{height:67.200000px;}
.h6_c00220{height:68.250000px;}
.ha_c00220{height:69.300000px;}
.h8_c00220{height:71.400000px;}
.h10_c00220{height:72.450000px;}
.h7_c00220{height:73.500000px;}
.h13_c00220{height:74.550000px;}
.h9_c00220{height:75.600000px;}
.h3_c00220{height:82.950000px;}
.h0_c00220{height:625.320000px;}
.h1_c00220{height:625.500000px;}
.w0_c00220{width:378.540000px;}
.w1_c00220{width:378.750000px;}
.x0_c00220{left:0.000000px;}
.x2e_c00220{left:27.000000px;}
.x48_c00220{left:35.640000px;}
.x2_c00220{left:36.990000px;}
.x21_c00220{left:38.340000px;}
.xa_c00220{left:39.960000px;}
.x6d_c00220{left:43.563000px;}
.x58_c00220{left:46.170000px;}
.x5d_c00220{left:56.970000px;}
.x60_c00220{left:58.860000px;}
.x14_c00220{left:60.210000px;}
.x37_c00220{left:61.432500px;}
.x64_c00220{left:64.260000px;}
.x4f_c00220{left:67.500000px;}
.x51_c00220{left:68.850000px;}
.x66_c00220{left:73.219500px;}
.xb_c00220{left:74.250000px;}
.x11_c00220{left:77.490000px;}
.x38_c00220{left:80.319000px;}
.x1a_c00220{left:83.430000px;}
.x28_c00220{left:86.130000px;}
.x3c_c00220{left:88.291500px;}
.x2f_c00220{left:89.370000px;}
.x71_c00220{left:90.450000px;}
.x68_c00220{left:91.558500px;}
.x45_c00220{left:93.420000px;}
.x6e_c00220{left:95.917500px;}
.x1b_c00220{left:96.930000px;}
.x12_c00220{left:99.630000px;}
.x3_c00220{left:101.250000px;}
.x15_c00220{left:103.140000px;}
.x29_c00220{left:105.300000px;}
.x49_c00220{left:106.920000px;}
.x56_c00220{left:110.701500px;}
.x69_c00220{left:111.859500px;}
.x46_c00220{left:115.560000px;}
.x67_c00220{left:116.719500px;}
.x35_c00220{left:119.070000px;}
.x61_c00220{left:123.120000px;}
.x22_c00220{left:126.630000px;}
.xc_c00220{left:129.330000px;}
.x3d_c00220{left:132.031500px;}
.x2a_c00220{left:134.730000px;}
.x5e_c00220{left:137.160000px;}
.x40_c00220{left:139.051500px;}
.x1c_c00220{left:142.560000px;}
.x39_c00220{left:144.604500px;}
.xd_c00220{left:150.660000px;}
.x47_c00220{left:152.280000px;}
.x23_c00220{left:155.250000px;}
.x16_c00220{left:156.330000px;}
.x13_c00220{left:158.760000px;}
.x4_c00220{left:160.110000px;}
.x30_c00220{left:163.080000px;}
.x6a_c00220{left:166.027500px;}
.x52_c00220{left:169.020000px;}
.x1_c00220{left:170.100000px;}
.x5f_c00220{left:171.720000px;}
.x6f_c00220{left:173.991000px;}
.x24_c00220{left:177.120000px;}
.x31_c00220{left:180.360000px;}
.x2b_c00220{left:181.440000px;}
.x5_c00220{left:183.060000px;}
.x41_c00220{left:186.571500px;}
.x4a_c00220{left:189.810000px;}
.x59_c00220{left:191.430000px;}
.x5b_c00220{left:196.290000px;}
.x62_c00220{left:198.990000px;}
.x3e_c00220{left:202.501500px;}
.x65_c00220{left:207.360000px;}
.x53_c00220{left:208.980000px;}
.x4b_c00220{left:212.220000px;}
.x50_c00220{left:213.840000px;}
.x63_c00220{left:216.810000px;}
.x6_c00220{left:218.160000px;}
.x25_c00220{left:224.370000px;}
.x17_c00220{left:225.450000px;}
.xe_c00220{left:227.610000px;}
.x6b_c00220{left:229.786500px;}
.x32_c00220{left:232.470000px;}
.x7_c00220{left:233.550000px;}
.x1d_c00220{left:243.810000px;}
.x36_c00220{left:250.020000px;}
.xf_c00220{left:252.990000px;}
.x2c_c00220{left:258.390000px;}
.x33_c00220{left:259.470000px;}
.x1e_c00220{left:262.710000px;}
.x42_c00220{left:267.301500px;}
.x18_c00220{left:269.730000px;}
.x4c_c00220{left:273.780000px;}
.x54_c00220{left:276.210000px;}
.x8_c00220{left:279.990000px;}
.x26_c00220{left:281.340000px;}
.x4d_c00220{left:284.580000px;}
.x3f_c00220{left:286.201500px;}
.x19_c00220{left:287.550000px;}
.x2d_c00220{left:289.980000px;}
.x27_c00220{left:292.680000px;}
.x1f_c00220{left:296.730000px;}
.x57_c00220{left:299.431500px;}
.x4e_c00220{left:301.320000px;}
.x5c_c00220{left:302.670000px;}
.x9_c00220{left:304.560000px;}
.x20_c00220{left:306.450000px;}
.x3a_c00220{left:307.980000px;}
.x10_c00220{left:309.690000px;}
.x34_c00220{left:311.580000px;}
.x55_c00220{left:313.063500px;}
.x5a_c00220{left:314.427000px;}
.x6c_c00220{left:317.604000px;}
.x3b_c00220{left:321.421500px;}
.x70_c00220{left:323.217000px;}
.x44_c00220{left:331.371000px;}
.x43_c00220{left:333.721500px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fs0_c00220{font-size:19.600000pt;}
.fs12_c00220{font-size:26.133333pt;}
.fsf_c00220{font-size:51.333333pt;}
.fsc_c00220{font-size:52.266667pt;}
.fsa_c00220{font-size:53.200000pt;}
.fs10_c00220{font-size:54.133333pt;}
.fsb_c00220{font-size:55.066667pt;}
.fsd_c00220{font-size:56.000000pt;}
.fs9_c00220{font-size:56.933333pt;}
.fs3_c00220{font-size:57.866667pt;}
.fs2_c00220{font-size:59.733333pt;}
.fs4_c00220{font-size:60.666667pt;}
.fs8_c00220{font-size:61.600000pt;}
.fs6_c00220{font-size:63.466667pt;}
.fse_c00220{font-size:64.400000pt;}
.fs5_c00220{font-size:65.333333pt;}
.fs11_c00220{font-size:66.266667pt;}
.fs7_c00220{font-size:67.200000pt;}
.fs1_c00220{font-size:73.733333pt;}
.y0_c00220{bottom:0.000000pt;}
.y57_c00220{bottom:2.880000pt;}
.y56_c00220{bottom:25.718667pt;}
.y55_c00220{bottom:26.601333pt;}
.y54_c00220{bottom:27.920000pt;}
.y53_c00220{bottom:28.344000pt;}
.y52_c00220{bottom:29.105333pt;}
.y51_c00220{bottom:29.552000pt;}
.y50_c00220{bottom:30.728000pt;}
.y4f_c00220{bottom:41.757333pt;}
.y4e_c00220{bottom:42.464000pt;}
.y4d_c00220{bottom:43.416000pt;}
.y4c_c00220{bottom:44.277333pt;}
.y4b_c00220{bottom:45.596000pt;}
.y4a_c00220{bottom:46.568000pt;}
.y49_c00220{bottom:58.473333pt;}
.y48_c00220{bottom:71.893333pt;}
.y47_c00220{bottom:72.672000pt;}
.y46_c00220{bottom:73.678667pt;}
.y45_c00220{bottom:73.981333pt;}
.y44_c00220{bottom:75.090667pt;}
.y43_c00220{bottom:75.617333pt;}
.y42_c00220{bottom:75.845333pt;}
.y41_c00220{bottom:87.366667pt;}
.y40_c00220{bottom:87.648000pt;}
.y3f_c00220{bottom:89.209333pt;}
.y3e_c00220{bottom:89.965333pt;}
.y3d_c00220{bottom:90.342667pt;}
.y3c_c00220{bottom:91.305333pt;}
.y3b_c00220{bottom:91.666667pt;}
.y3a_c00220{bottom:92.665333pt;}
.y39_c00220{bottom:103.708000pt;}
.y38_c00220{bottom:104.788000pt;}
.y37_c00220{bottom:105.434667pt;}
.y36_c00220{bottom:106.098667pt;}
.y35_c00220{bottom:106.973333pt;}
.y34_c00220{bottom:107.254667pt;}
.y33_c00220{bottom:107.669333pt;}
.y32_c00220{bottom:108.242667pt;}
.y31_c00220{bottom:119.236000pt;}
.y30_c00220{bottom:133.377333pt;}
.y2f_c00220{bottom:148.216000pt;}
.y1_c00220{bottom:151.440000pt;}
.y2e_c00220{bottom:163.753333pt;}
.y2d_c00220{bottom:180.626667pt;}
.y2c_c00220{bottom:181.628000pt;}
.y2b_c00220{bottom:182.178667pt;}
.y2a_c00220{bottom:183.537333pt;}
.y29_c00220{bottom:184.081333pt;}
.y28_c00220{bottom:196.144000pt;}
.y27_c00220{bottom:211.621333pt;}
.y26_c00220{bottom:226.741333pt;}
.y25_c00220{bottom:226.938667pt;}
.y24_c00220{bottom:227.517333pt;}
.y23_c00220{bottom:227.937333pt;}
.y22_c00220{bottom:228.158667pt;}
.y21_c00220{bottom:228.441333pt;}
.y20_c00220{bottom:228.636000pt;}
.y1f_c00220{bottom:229.441333pt;}
.y1e_c00220{bottom:243.061333pt;}
.y1d_c00220{bottom:259.005333pt;}
.y1c_c00220{bottom:274.364000pt;}
.y1b_c00220{bottom:289.860000pt;}
.y1a_c00220{bottom:302.133333pt;}
.y19_c00220{bottom:302.680000pt;}
.y18_c00220{bottom:303.350667pt;}
.y17_c00220{bottom:303.954667pt;}
.y16_c00220{bottom:304.848000pt;}
.y15_c00220{bottom:305.282667pt;}
.y14_c00220{bottom:316.950667pt;}
.y13_c00220{bottom:332.956000pt;}
.y12_c00220{bottom:348.337333pt;}
.y11_c00220{bottom:348.469333pt;}
.y10_c00220{bottom:350.066667pt;}
.yf_c00220{bottom:350.694667pt;}
.ye_c00220{bottom:350.878667pt;}
.yd_c00220{bottom:351.121333pt;}
.yc_c00220{bottom:365.460000pt;}
.yb_c00220{bottom:379.617333pt;}
.ya_c00220{bottom:394.857333pt;}
.y9_c00220{bottom:410.984000pt;}
.y8_c00220{bottom:426.056000pt;}
.y7_c00220{bottom:441.180000pt;}
.y6_c00220{bottom:456.778667pt;}
.y5_c00220{bottom:472.350667pt;}
.y4_c00220{bottom:487.390667pt;}
.y3_c00220{bottom:502.861333pt;}
.y2_c00220{bottom:513.942667pt;}
.h2_c00220{height:19.600000pt;}
.h14_c00220{height:26.133333pt;}
.h11_c00220{height:51.333333pt;}
.he_c00220{height:52.266667pt;}
.hc_c00220{height:53.200000pt;}
.h12_c00220{height:54.133333pt;}
.hd_c00220{height:55.066667pt;}
.hf_c00220{height:56.000000pt;}
.hb_c00220{height:56.933333pt;}
.h5_c00220{height:57.866667pt;}
.h4_c00220{height:59.733333pt;}
.h6_c00220{height:60.666667pt;}
.ha_c00220{height:61.600000pt;}
.h8_c00220{height:63.466667pt;}
.h10_c00220{height:64.400000pt;}
.h7_c00220{height:65.333333pt;}
.h13_c00220{height:66.266667pt;}
.h9_c00220{height:67.200000pt;}
.h3_c00220{height:73.733333pt;}
.h0_c00220{height:555.840000pt;}
.h1_c00220{height:556.000000pt;}
.w0_c00220{width:336.480000pt;}
.w1_c00220{width:336.666667pt;}
.x0_c00220{left:0.000000pt;}
.x2e_c00220{left:24.000000pt;}
.x48_c00220{left:31.680000pt;}
.x2_c00220{left:32.880000pt;}
.x21_c00220{left:34.080000pt;}
.xa_c00220{left:35.520000pt;}
.x6d_c00220{left:38.722667pt;}
.x58_c00220{left:41.040000pt;}
.x5d_c00220{left:50.640000pt;}
.x60_c00220{left:52.320000pt;}
.x14_c00220{left:53.520000pt;}
.x37_c00220{left:54.606667pt;}
.x64_c00220{left:57.120000pt;}
.x4f_c00220{left:60.000000pt;}
.x51_c00220{left:61.200000pt;}
.x66_c00220{left:65.084000pt;}
.xb_c00220{left:66.000000pt;}
.x11_c00220{left:68.880000pt;}
.x38_c00220{left:71.394667pt;}
.x1a_c00220{left:74.160000pt;}
.x28_c00220{left:76.560000pt;}
.x3c_c00220{left:78.481333pt;}
.x2f_c00220{left:79.440000pt;}
.x71_c00220{left:80.400000pt;}
.x68_c00220{left:81.385333pt;}
.x45_c00220{left:83.040000pt;}
.x6e_c00220{left:85.260000pt;}
.x1b_c00220{left:86.160000pt;}
.x12_c00220{left:88.560000pt;}
.x3_c00220{left:90.000000pt;}
.x15_c00220{left:91.680000pt;}
.x29_c00220{left:93.600000pt;}
.x49_c00220{left:95.040000pt;}
.x56_c00220{left:98.401333pt;}
.x69_c00220{left:99.430667pt;}
.x46_c00220{left:102.720000pt;}
.x67_c00220{left:103.750667pt;}
.x35_c00220{left:105.840000pt;}
.x61_c00220{left:109.440000pt;}
.x22_c00220{left:112.560000pt;}
.xc_c00220{left:114.960000pt;}
.x3d_c00220{left:117.361333pt;}
.x2a_c00220{left:119.760000pt;}
.x5e_c00220{left:121.920000pt;}
.x40_c00220{left:123.601333pt;}
.x1c_c00220{left:126.720000pt;}
.x39_c00220{left:128.537333pt;}
.xd_c00220{left:133.920000pt;}
.x47_c00220{left:135.360000pt;}
.x23_c00220{left:138.000000pt;}
.x16_c00220{left:138.960000pt;}
.x13_c00220{left:141.120000pt;}
.x4_c00220{left:142.320000pt;}
.x30_c00220{left:144.960000pt;}
.x6a_c00220{left:147.580000pt;}
.x52_c00220{left:150.240000pt;}
.x1_c00220{left:151.200000pt;}
.x5f_c00220{left:152.640000pt;}
.x6f_c00220{left:154.658667pt;}
.x24_c00220{left:157.440000pt;}
.x31_c00220{left:160.320000pt;}
.x2b_c00220{left:161.280000pt;}
.x5_c00220{left:162.720000pt;}
.x41_c00220{left:165.841333pt;}
.x4a_c00220{left:168.720000pt;}
.x59_c00220{left:170.160000pt;}
.x5b_c00220{left:174.480000pt;}
.x62_c00220{left:176.880000pt;}
.x3e_c00220{left:180.001333pt;}
.x65_c00220{left:184.320000pt;}
.x53_c00220{left:185.760000pt;}
.x4b_c00220{left:188.640000pt;}
.x50_c00220{left:190.080000pt;}
.x63_c00220{left:192.720000pt;}
.x6_c00220{left:193.920000pt;}
.x25_c00220{left:199.440000pt;}
.x17_c00220{left:200.400000pt;}
.xe_c00220{left:202.320000pt;}
.x6b_c00220{left:204.254667pt;}
.x32_c00220{left:206.640000pt;}
.x7_c00220{left:207.600000pt;}
.x1d_c00220{left:216.720000pt;}
.x36_c00220{left:222.240000pt;}
.xf_c00220{left:224.880000pt;}
.x2c_c00220{left:229.680000pt;}
.x33_c00220{left:230.640000pt;}
.x1e_c00220{left:233.520000pt;}
.x42_c00220{left:237.601333pt;}
.x18_c00220{left:239.760000pt;}
.x4c_c00220{left:243.360000pt;}
.x54_c00220{left:245.520000pt;}
.x8_c00220{left:248.880000pt;}
.x26_c00220{left:250.080000pt;}
.x4d_c00220{left:252.960000pt;}
.x3f_c00220{left:254.401333pt;}
.x19_c00220{left:255.600000pt;}
.x2d_c00220{left:257.760000pt;}
.x27_c00220{left:260.160000pt;}
.x1f_c00220{left:263.760000pt;}
.x57_c00220{left:266.161333pt;}
.x4e_c00220{left:267.840000pt;}
.x5c_c00220{left:269.040000pt;}
.x9_c00220{left:270.720000pt;}
.x20_c00220{left:272.400000pt;}
.x3a_c00220{left:273.760000pt;}
.x10_c00220{left:275.280000pt;}
.x34_c00220{left:276.960000pt;}
.x55_c00220{left:278.278667pt;}
.x5a_c00220{left:279.490667pt;}
.x6c_c00220{left:282.314667pt;}
.x3b_c00220{left:285.708000pt;}
.x70_c00220{left:287.304000pt;}
.x44_c00220{left:294.552000pt;}
.x43_c00220{left:296.641333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00221 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00221 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00221 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00221 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00221.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00221{transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);}
.m44_c00221{transform:matrix(0.134315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134315,0.000000,0.000000,0.250000,0,0);}
.m68_c00221{transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);}
.m9e_c00221{transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);}
.ma8_c00221{transform:matrix(0.143125,0.001717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143125,0.001717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143125,0.001717,-0.003000,0.249982,0,0);}
.m23_c00221{transform:matrix(0.143195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143195,0.000000,0.000000,0.250000,0,0);}
.ma7_c00221{transform:matrix(0.144935,0.001739,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144935,0.001739,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144935,0.001739,-0.003000,0.249982,0,0);}
.m92_c00221{transform:matrix(0.146554,0.001759,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146554,0.001759,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146554,0.001759,-0.003000,0.249982,0,0);}
.md1_c00221{transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);}
.m5a_c00221{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.156184,0.001874,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156184,0.001874,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156184,0.001874,-0.003000,0.249982,0,0);}
.mcd_c00221{transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156745,0.000000,0.000000,0.250000,0,0);}
.m60_c00221{transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.156860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156860,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);}
.m61_c00221{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.m97_c00221{transform:matrix(0.158624,0.001903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158624,0.001903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158624,0.001903,-0.003000,0.249982,0,0);}
.m80_c00221{transform:matrix(0.159004,0.001908,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159004,0.001908,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159004,0.001908,-0.003000,0.249982,0,0);}
.mb0_c00221{transform:matrix(0.159589,0.001915,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159589,0.001915,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159589,0.001915,-0.003000,0.249982,0,0);}
.ma4_c00221{transform:matrix(0.159968,0.001920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159968,0.001920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159968,0.001920,-0.003000,0.249982,0,0);}
.ma3_c00221{transform:matrix(0.160358,0.001924,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160358,0.001924,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160358,0.001924,-0.003000,0.249982,0,0);}
.m83_c00221{transform:matrix(0.162218,0.001947,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162218,0.001947,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162218,0.001947,-0.003000,0.249982,0,0);}
.m6_c00221{transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);}
.m6a_c00221{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.m5f_c00221{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);}
.mc7_c00221{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mbb_c00221{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.166865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166865,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m95_c00221{transform:matrix(0.169273,0.002031,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169273,0.002031,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169273,0.002031,-0.003000,0.249982,0,0);}
.m93_c00221{transform:matrix(0.169348,0.002032,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169348,0.002032,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169348,0.002032,-0.003000,0.249982,0,0);}
.m55_c00221{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m91_c00221{transform:matrix(0.171123,0.002053,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171123,0.002053,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171123,0.002053,-0.003000,0.249982,0,0);}
.m82_c00221{transform:matrix(0.171143,0.002054,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171143,0.002054,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171143,0.002054,-0.003000,0.249982,0,0);}
.mb7_c00221{transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);}
.m4b_c00221{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m99_c00221{transform:matrix(0.172513,0.002070,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172513,0.002070,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172513,0.002070,-0.003000,0.249982,0,0);}
.m14_c00221{transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{transform:matrix(0.173363,0.002080,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173363,0.002080,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173363,0.002080,-0.003000,0.249982,0,0);}
.m87_c00221{transform:matrix(0.173463,0.002082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173463,0.002082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173463,0.002082,-0.003000,0.249982,0,0);}
.mac_c00221{transform:matrix(0.173817,0.002086,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173817,0.002086,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173817,0.002086,-0.003000,0.249982,0,0);}
.m94_c00221{transform:matrix(0.174027,0.002088,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174027,0.002088,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174027,0.002088,-0.003000,0.249982,0,0);}
.m86_c00221{transform:matrix(0.174267,0.002091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174267,0.002091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174267,0.002091,-0.003000,0.249982,0,0);}
.m3c_c00221{transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);}
.m43_c00221{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.m8d_c00221{transform:matrix(0.175637,0.002108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175637,0.002108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175637,0.002108,-0.003000,0.249982,0,0);}
.m4c_c00221{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);}
.mcf_c00221{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);}
.m5b_c00221{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177440,0.000000,0.000000,0.250000,0,0);}
.m62_c00221{transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);}
.mc3_c00221{transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.mb1_c00221{transform:matrix(0.180227,0.002163,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180227,0.002163,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180227,0.002163,-0.003000,0.249982,0,0);}
.m3_c00221{transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180440,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.m67_c00221{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.mad_c00221{transform:matrix(0.181387,0.002177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181387,0.002177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181387,0.002177,-0.003000,0.249982,0,0);}
.ma9_c00221{transform:matrix(0.181847,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181847,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181847,0.002182,-0.003000,0.249982,0,0);}
.m2_c00221{transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);}
.mbc_c00221{transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.mca_c00221{transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);}
.m64_c00221{transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);}
.m69_c00221{transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182885,0.000000,0.000000,0.250000,0,0);}
.md5_c00221{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m8c_c00221{transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);}
.m34_c00221{transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);}
.m74_c00221{transform:matrix(0.183622,0.002203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183622,0.002203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183622,0.002203,-0.003000,0.249982,0,0);}
.m52_c00221{transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m84_c00221{transform:matrix(0.184177,0.002210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184177,0.002210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184177,0.002210,-0.003000,0.249982,0,0);}
.maa_c00221{transform:matrix(0.184447,0.002213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184447,0.002213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184447,0.002213,-0.003000,0.249982,0,0);}
.m2f_c00221{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.mae_c00221{transform:matrix(0.185482,0.002226,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185482,0.002226,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185482,0.002226,-0.003000,0.249982,0,0);}
.m72_c00221{transform:matrix(0.185602,0.002227,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185602,0.002227,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185602,0.002227,-0.003000,0.249982,0,0);}
.mbe_c00221{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.186542,0.002238,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186542,0.002238,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186542,0.002238,-0.003000,0.249982,0,0);}
.m3b_c00221{transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);}
.m7c_c00221{transform:matrix(0.186687,0.002240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186687,0.002240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186687,0.002240,-0.003000,0.249982,0,0);}
.m15_c00221{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m8a_c00221{transform:matrix(0.186962,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186962,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186962,0.002244,-0.003000,0.249982,0,0);}
.m1c_c00221{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m63_c00221{transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);}
.mce_c00221{transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.189076,0.002269,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189076,0.002269,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189076,0.002269,-0.003000,0.249982,0,0);}
.m3f_c00221{transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);}
.mc2_c00221{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.190011,0.002280,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190011,0.002280,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190011,0.002280,-0.003000,0.249982,0,0);}
.m96_c00221{transform:matrix(0.190786,0.002289,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190786,0.002289,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190786,0.002289,-0.003000,0.249982,0,0);}
.m12_c00221{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.mc5_c00221{transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m59_c00221{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.mb5_c00221{transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);}
.m85_c00221{transform:matrix(0.192436,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192436,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192436,0.002309,-0.003000,0.249982,0,0);}
.m65_c00221{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);}
.md2_c00221{transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);}
.md0_c00221{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{transform:matrix(0.193736,0.002325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193736,0.002325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193736,0.002325,-0.003000,0.249982,0,0);}
.m39_c00221{transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);}
.maf_c00221{transform:matrix(0.194661,0.002336,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194661,0.002336,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194661,0.002336,-0.003000,0.249982,0,0);}
.m7d_c00221{transform:matrix(0.194786,0.002337,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194786,0.002337,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194786,0.002337,-0.003000,0.249982,0,0);}
.md6_c00221{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.195586,0.002347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195586,0.002347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195586,0.002347,-0.003000,0.249982,0,0);}
.m27_c00221{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{transform:matrix(0.196026,0.002352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196026,0.002352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196026,0.002352,-0.003000,0.249982,0,0);}
.m40_c00221{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.m8b_c00221{transform:matrix(0.197306,0.002368,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197306,0.002368,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197306,0.002368,-0.003000,0.249982,0,0);}
.m6b_c00221{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.md4_c00221{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m7e_c00221{transform:matrix(0.199486,0.002394,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199486,0.002394,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199486,0.002394,-0.003000,0.249982,0,0);}
.m7b_c00221{transform:matrix(0.199581,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199581,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199581,0.002395,-0.003000,0.249982,0,0);}
.mc8_c00221{transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.mc6_c00221{transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);}
.mba_c00221{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.mc9_c00221{transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);}
.m79_c00221{transform:matrix(0.203640,0.002444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203640,0.002444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203640,0.002444,-0.003000,0.249982,0,0);}
.m75_c00221{transform:matrix(0.203950,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203950,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203950,0.002447,-0.003000,0.249982,0,0);}
.me_c00221{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.md3_c00221{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.mcc_c00221{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.m9d_c00221{transform:matrix(0.206745,0.002481,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206745,0.002481,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206745,0.002481,-0.003000,0.249982,0,0);}
.m8f_c00221{transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);}
.m9b_c00221{transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);}
.mc4_c00221{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.md7_c00221{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);}
.ma2_c00221{transform:matrix(0.208165,0.002498,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208165,0.002498,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208165,0.002498,-0.003000,0.249982,0,0);}
.m5e_c00221{transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);}
.mbf_c00221{transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m98_c00221{transform:matrix(0.209960,0.002520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209960,0.002520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209960,0.002520,-0.003000,0.249982,0,0);}
.m6d_c00221{transform:matrix(0.210670,0.002528,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210670,0.002528,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210670,0.002528,-0.003000,0.249982,0,0);}
.mc0_c00221{transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);}
.mab_c00221{transform:matrix(0.212710,0.002553,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212710,0.002553,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212710,0.002553,-0.003000,0.249982,0,0);}
.m78_c00221{transform:matrix(0.212820,0.002554,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212820,0.002554,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212820,0.002554,-0.003000,0.249982,0,0);}
.md9_c00221{transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);}
.m7f_c00221{transform:matrix(0.213665,0.002564,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213665,0.002564,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213665,0.002564,-0.003000,0.249982,0,0);}
.m6e_c00221{transform:matrix(0.214560,0.002575,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214560,0.002575,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214560,0.002575,-0.003000,0.249982,0,0);}
.m17_c00221{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.ma1_c00221{transform:matrix(0.214870,0.002578,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214870,0.002578,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214870,0.002578,-0.003000,0.249982,0,0);}
.m51_c00221{transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);}
.m73_c00221{transform:matrix(0.216549,0.002599,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216549,0.002599,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216549,0.002599,-0.003000,0.249982,0,0);}
.mc1_c00221{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.mb8_c00221{transform:matrix(0.216759,0.002601,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216759,0.002601,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216759,0.002601,-0.003000,0.249982,0,0);}
.m0_c00221{transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);}
.mb9_c00221{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m76_c00221{transform:matrix(0.219869,0.002638,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219869,0.002638,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219869,0.002638,-0.003000,0.249982,0,0);}
.m5d_c00221{transform:matrix(0.221410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221410,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m9c_c00221{transform:matrix(0.222274,0.002667,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222274,0.002667,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222274,0.002667,-0.003000,0.249982,0,0);}
.m4d_c00221{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m66_c00221{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.mcb_c00221{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);}
.m42_c00221{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m77_c00221{transform:matrix(0.229363,0.002752,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229363,0.002752,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229363,0.002752,-0.003000,0.249982,0,0);}
.m89_c00221{transform:matrix(0.229388,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229388,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229388,0.002753,-0.003000,0.249982,0,0);}
.mda_c00221{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m9f_c00221{transform:matrix(0.230903,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230903,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230903,0.002771,-0.003000,0.249982,0,0);}
.m6c_c00221{transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);}
.mbd_c00221{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.md8_c00221{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00221{transform:matrix(0.239673,0.002876,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239673,0.002876,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239673,0.002876,-0.003000,0.249982,0,0);}
.m26_c00221{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m57_c00221{transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);}
.m56_c00221{transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);}
.m7a_c00221{transform:matrix(0.246387,0.002957,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246387,0.002957,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246387,0.002957,-0.003000,0.249982,0,0);}
.ma0_c00221{transform:matrix(0.247702,0.002972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247702,0.002972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247702,0.002972,-0.003000,0.249982,0,0);}
.m58_c00221{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m2c_c00221{transform:matrix(0.265050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265050,0.000000,0.000000,0.250000,0,0);}
.m41_c00221{transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);}
.m6f_c00221{transform:matrix(0.288984,0.003468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288984,0.003468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288984,0.003468,-0.003000,0.249982,0,0);}
.ma_c00221{transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.338330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338330,0.000000,0.000000,0.250000,0,0);}
.mb4_c00221{transform:matrix(0.351910,0.004223,-0.003000,0.249982,0,0);-ms-transform:matrix(0.351910,0.004223,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.351910,0.004223,-0.003000,0.249982,0,0);}
.mc_c00221{transform:matrix(0.361995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361995,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);}
.mb3_c00221{transform:matrix(0.442638,0.005312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.442638,0.005312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.442638,0.005312,-0.003000,0.249982,0,0);}
.mb2_c00221{transform:matrix(0.470931,0.005651,-0.003000,0.249982,0,0);-ms-transform:matrix(0.470931,0.005651,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.470931,0.005651,-0.003000,0.249982,0,0);}
.m5c_c00221{transform:matrix(0.472650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472650,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(1.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185090,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:0.000000px;}
._0_c00221{margin-left:-10.151574px;}
.fc0_c00221{color:transparent;}
.fs2_c00221{font-size:51.450000px;}
.fsc_c00221{font-size:59.854309px;}
.fs3_c00221{font-size:60.900000px;}
.fs5_c00221{font-size:61.950000px;}
.fsf_c00221{font-size:61.954460px;}
.fs9_c00221{font-size:63.000000px;}
.fs12_c00221{font-size:63.004536px;}
.fs0_c00221{font-size:64.050000px;}
.fsb_c00221{font-size:64.054611px;}
.fsa_c00221{font-size:65.100000px;}
.fs14_c00221{font-size:66.150000px;}
.fsd_c00221{font-size:66.154763px;}
.fs4_c00221{font-size:67.200000px;}
.fs8_c00221{font-size:68.250000px;}
.fs7_c00221{font-size:69.300000px;}
.fs11_c00221{font-size:69.304989px;}
.fs1_c00221{font-size:70.350000px;}
.fs6_c00221{font-size:71.400000px;}
.fs10_c00221{font-size:71.405141px;}
.fse_c00221{font-size:74.555367px;}
.fs13_c00221{font-size:75.605443px;}
.y0_c00221{bottom:0.000000px;}
.y65_c00221{bottom:31.518000px;}
.y64_c00221{bottom:49.737000px;}
.y63_c00221{bottom:66.214500px;}
.y62_c00221{bottom:83.310000px;}
.y61_c00221{bottom:101.443500px;}
.y5d_c00221{bottom:118.125072px;}
.y5f_c00221{bottom:118.125324px;}
.y60_c00221{bottom:118.125360px;}
.y5b_c00221{bottom:118.125540px;}
.y5c_c00221{bottom:118.125654px;}
.y5e_c00221{bottom:118.125768px;}
.y5a_c00221{bottom:118.126044px;}
.y55_c00221{bottom:135.221604px;}
.y54_c00221{bottom:135.221628px;}
.y56_c00221{bottom:135.221640px;}
.y59_c00221{bottom:135.221868px;}
.y58_c00221{bottom:135.222210px;}
.y57_c00221{bottom:135.222216px;}
.y53_c00221{bottom:135.222270px;}
.y4b_c00221{bottom:152.079462px;}
.y4c_c00221{bottom:152.079918px;}
.y51_c00221{bottom:152.080158px;}
.y4d_c00221{bottom:152.080356px;}
.y4f_c00221{bottom:152.080422px;}
.y4e_c00221{bottom:152.080428px;}
.y50_c00221{bottom:152.080560px;}
.y52_c00221{bottom:152.080716px;}
.y47_c00221{bottom:170.018922px;}
.y46_c00221{bottom:170.019024px;}
.y49_c00221{bottom:170.019036px;}
.y45_c00221{bottom:170.019552px;}
.y48_c00221{bottom:170.019618px;}
.y4a_c00221{bottom:170.019768px;}
.y43_c00221{bottom:170.019816px;}
.y44_c00221{bottom:170.019954px;}
.y41_c00221{bottom:187.888596px;}
.y42_c00221{bottom:187.888692px;}
.y40_c00221{bottom:187.889304px;}
.y3e_c00221{bottom:187.889370px;}
.y3f_c00221{bottom:187.889706px;}
.y38_c00221{bottom:205.598208px;}
.y3a_c00221{bottom:205.598520px;}
.y39_c00221{bottom:205.598544px;}
.y3b_c00221{bottom:205.598778px;}
.y3c_c00221{bottom:205.599516px;}
.y3d_c00221{bottom:205.599846px;}
.y37_c00221{bottom:222.719868px;}
.y36_c00221{bottom:222.720330px;}
.y35_c00221{bottom:222.720492px;}
.y31_c00221{bottom:222.720570px;}
.y34_c00221{bottom:222.720714px;}
.y32_c00221{bottom:222.720804px;}
.y30_c00221{bottom:222.721116px;}
.y33_c00221{bottom:222.721362px;}
.y2f_c00221{bottom:240.466344px;}
.y2e_c00221{bottom:240.466566px;}
.y2d_c00221{bottom:240.466692px;}
.y29_c00221{bottom:240.467250px;}
.y2a_c00221{bottom:240.467304px;}
.y2c_c00221{bottom:240.467334px;}
.y2b_c00221{bottom:240.467436px;}
.y28_c00221{bottom:256.519038px;}
.y27_c00221{bottom:257.185800px;}
.y26_c00221{bottom:257.439306px;}
.y25_c00221{bottom:257.641788px;}
.y24_c00221{bottom:258.176808px;}
.y23_c00221{bottom:258.330330px;}
.y22_c00221{bottom:258.489972px;}
.y21_c00221{bottom:259.197672px;}
.y1e_c00221{bottom:274.874046px;}
.y20_c00221{bottom:274.874376px;}
.y1f_c00221{bottom:274.874382px;}
.y1d_c00221{bottom:274.874412px;}
.y1b_c00221{bottom:274.874922px;}
.y1c_c00221{bottom:274.875054px;}
.y1a_c00221{bottom:274.875144px;}
.y19_c00221{bottom:289.677876px;}
.y18_c00221{bottom:289.891860px;}
.y17_c00221{bottom:290.238288px;}
.y16_c00221{bottom:291.336612px;}
.y15_c00221{bottom:292.431930px;}
.y14_c00221{bottom:292.681500px;}
.y13_c00221{bottom:308.265000px;}
.y12_c00221{bottom:324.708000px;}
.y11_c00221{bottom:342.630000px;}
.y10_c00221{bottom:360.111000px;}
.yf_c00221{bottom:377.124000px;}
.ye_c00221{bottom:394.824000px;}
.yd_c00221{bottom:411.919500px;}
.yc_c00221{bottom:427.747500px;}
.yb_c00221{bottom:446.244000px;}
.ya_c00221{bottom:461.806500px;}
.y9_c00221{bottom:480.532500px;}
.y8_c00221{bottom:497.070000px;}
.y7_c00221{bottom:515.041500px;}
.y6_c00221{bottom:532.347000px;}
.y3_c00221{bottom:548.911500px;}
.y4_c00221{bottom:550.344000px;}
.y5_c00221{bottom:552.684000px;}
.y2_c00221{bottom:566.008500px;}
.y1_c00221{bottom:583.335000px;}
.h4_c00221{height:51.450000px;}
.he_c00221{height:59.854309px;}
.h5_c00221{height:60.900000px;}
.h7_c00221{height:61.950000px;}
.h11_c00221{height:61.954460px;}
.hb_c00221{height:63.000000px;}
.h14_c00221{height:63.004536px;}
.h2_c00221{height:64.050000px;}
.hd_c00221{height:64.054611px;}
.hc_c00221{height:65.100000px;}
.h16_c00221{height:66.150000px;}
.hf_c00221{height:66.154763px;}
.h6_c00221{height:67.200000px;}
.ha_c00221{height:68.250000px;}
.h9_c00221{height:69.300000px;}
.h13_c00221{height:69.304989px;}
.h3_c00221{height:70.350000px;}
.h8_c00221{height:71.400000px;}
.h12_c00221{height:71.405141px;}
.h10_c00221{height:74.555367px;}
.h15_c00221{height:75.605443px;}
.h0_c00221{height:625.320000px;}
.h1_c00221{height:625.500000px;}
.w0_c00221{width:378.540000px;}
.w1_c00221{width:378.750000px;}
.x0_c00221{left:0.000000px;}
.x68_c00221{left:45.624432px;}
.x5d_c00221{left:46.706502px;}
.x16_c00221{left:47.790000px;}
.x11_c00221{left:49.680000px;}
.x2_c00221{left:52.380000px;}
.x6a_c00221{left:57.240000px;}
.x47_c00221{left:62.100000px;}
.x4b_c00221{left:68.709000px;}
.x37_c00221{left:71.280000px;}
.x12_c00221{left:73.710000px;}
.x2f_c00221{left:75.600000px;}
.x5e_c00221{left:77.489532px;}
.x3c_c00221{left:85.320000px;}
.x40_c00221{left:88.290000px;}
.x5a_c00221{left:89.910702px;}
.x17_c00221{left:92.070000px;}
.x1c_c00221{left:94.770000px;}
.x26_c00221{left:96.660000px;}
.x3_c00221{left:98.280000px;}
.x20_c00221{left:99.360000px;}
.xb_c00221{left:101.520000px;}
.x63_c00221{left:102.869442px;}
.x56_c00221{left:105.032814px;}
.x41_c00221{left:106.110000px;}
.x18_c00221{left:107.460000px;}
.x32_c00221{left:109.890000px;}
.x2b_c00221{left:111.510000px;}
.x70_c00221{left:113.130000px;}
.x19_c00221{left:117.720000px;}
.x52_c00221{left:120.555720px;}
.x4_c00221{left:123.660000px;}
.x21_c00221{left:129.330000px;}
.x38_c00221{left:132.300000px;}
.x3d_c00221{left:134.460000px;}
.x13_c00221{left:137.430000px;}
.x1a_c00221{left:141.210000px;}
.x1d_c00221{left:144.720000px;}
.x69_c00221{left:147.691620px;}
.x27_c00221{left:150.120000px;}
.xc_c00221{left:151.470000px;}
.x74_c00221{left:153.900000px;}
.x9_c00221{left:155.655000px;}
.x4f_c00221{left:157.959198px;}
.x4c_c00221{left:159.985500px;}
.x5b_c00221{left:161.465016px;}
.x57_c00221{left:163.896792px;}
.x6b_c00221{left:166.050000px;}
.x33_c00221{left:167.130000px;}
.x2c_c00221{left:169.290000px;}
.x22_c00221{left:171.450000px;}
.x44_c00221{left:172.530000px;}
.xd_c00221{left:173.610000px;}
.x42_c00221{left:175.230000px;}
.x64_c00221{left:177.124134px;}
.x34_c00221{left:178.740000px;}
.x50_c00221{left:180.640956px;}
.x1_c00221{left:181.980000px;}
.x6c_c00221{left:183.600000px;}
.x5_c00221{left:184.950000px;}
.x39_c00221{left:186.570000px;}
.x5f_c00221{left:195.217470px;}
.x6_c00221{left:198.180000px;}
.x43_c00221{left:201.150000px;}
.x48_c00221{left:202.230000px;}
.x71_c00221{left:204.390000px;}
.xe_c00221{left:206.280000px;}
.x14_c00221{left:210.600000px;}
.x6e_c00221{left:213.300000px;}
.x3a_c00221{left:216.000000px;}
.x45_c00221{left:217.620000px;}
.x28_c00221{left:220.320000px;}
.x7_c00221{left:223.020000px;}
.x53_c00221{left:225.613740px;}
.x23_c00221{left:227.880000px;}
.x65_c00221{left:229.507176px;}
.x73_c00221{left:231.660000px;}
.x1b_c00221{left:236.250000px;}
.x60_c00221{left:240.040932px;}
.x2d_c00221{left:243.540000px;}
.x66_c00221{left:246.248088px;}
.x1e_c00221{left:248.130000px;}
.x4d_c00221{left:251.512500px;}
.x5c_c00221{left:255.701088px;}
.x61_c00221{left:257.591952px;}
.x30_c00221{left:258.930000px;}
.x58_c00221{left:260.293170px;}
.xf_c00221{left:262.980000px;}
.x29_c00221{left:264.330000px;}
.x72_c00221{left:265.950000px;}
.x67_c00221{left:268.659810px;}
.x3e_c00221{left:270.810000px;}
.x15_c00221{left:275.940000px;}
.x49_c00221{left:277.290000px;}
.x46_c00221{left:279.180000px;}
.x4e_c00221{left:280.381500px;}
.x8_c00221{left:284.310000px;}
.x6f_c00221{left:285.390000px;}
.x2a_c00221{left:290.790000px;}
.x35_c00221{left:292.140000px;}
.x10_c00221{left:295.110000px;}
.x31_c00221{left:296.460000px;}
.x24_c00221{left:297.540000px;}
.x4a_c00221{left:299.160000px;}
.x2e_c00221{left:301.860000px;}
.x59_c00221{left:302.956308px;}
.x6d_c00221{left:304.020000px;}
.x3b_c00221{left:311.310000px;}
.x1f_c00221{left:314.550000px;}
.x54_c00221{left:317.679954px;}
.xa_c00221{left:322.756500px;}
.x25_c00221{left:328.320000px;}
.x3f_c00221{left:331.290000px;}
.x55_c00221{left:335.089356px;}
.x62_c00221{left:336.167274px;}
.x51_c00221{left:337.791582px;}
.x36_c00221{left:347.490000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
._0_c00221{margin-left:-9.023621pt;}
.fs2_c00221{font-size:45.733333pt;}
.fsc_c00221{font-size:53.203830pt;}
.fs3_c00221{font-size:54.133333pt;}
.fs5_c00221{font-size:55.066667pt;}
.fsf_c00221{font-size:55.070631pt;}
.fs9_c00221{font-size:56.000000pt;}
.fs12_c00221{font-size:56.004032pt;}
.fs0_c00221{font-size:56.933333pt;}
.fsb_c00221{font-size:56.937432pt;}
.fsa_c00221{font-size:57.866667pt;}
.fs14_c00221{font-size:58.800000pt;}
.fsd_c00221{font-size:58.804233pt;}
.fs4_c00221{font-size:59.733333pt;}
.fs8_c00221{font-size:60.666667pt;}
.fs7_c00221{font-size:61.600000pt;}
.fs11_c00221{font-size:61.604435pt;}
.fs1_c00221{font-size:62.533333pt;}
.fs6_c00221{font-size:63.466667pt;}
.fs10_c00221{font-size:63.471236pt;}
.fse_c00221{font-size:66.271438pt;}
.fs13_c00221{font-size:67.204838pt;}
.y0_c00221{bottom:0.000000pt;}
.y65_c00221{bottom:28.016000pt;}
.y64_c00221{bottom:44.210667pt;}
.y63_c00221{bottom:58.857333pt;}
.y62_c00221{bottom:74.053333pt;}
.y61_c00221{bottom:90.172000pt;}
.y5d_c00221{bottom:105.000064pt;}
.y5f_c00221{bottom:105.000288pt;}
.y60_c00221{bottom:105.000320pt;}
.y5b_c00221{bottom:105.000480pt;}
.y5c_c00221{bottom:105.000581pt;}
.y5e_c00221{bottom:105.000683pt;}
.y5a_c00221{bottom:105.000928pt;}
.y55_c00221{bottom:120.196981pt;}
.y54_c00221{bottom:120.197003pt;}
.y56_c00221{bottom:120.197013pt;}
.y59_c00221{bottom:120.197216pt;}
.y58_c00221{bottom:120.197520pt;}
.y57_c00221{bottom:120.197525pt;}
.y53_c00221{bottom:120.197573pt;}
.y4b_c00221{bottom:135.181744pt;}
.y4c_c00221{bottom:135.182149pt;}
.y51_c00221{bottom:135.182363pt;}
.y4d_c00221{bottom:135.182539pt;}
.y4f_c00221{bottom:135.182597pt;}
.y4e_c00221{bottom:135.182603pt;}
.y50_c00221{bottom:135.182720pt;}
.y52_c00221{bottom:135.182859pt;}
.y47_c00221{bottom:151.127931pt;}
.y46_c00221{bottom:151.128021pt;}
.y49_c00221{bottom:151.128032pt;}
.y45_c00221{bottom:151.128491pt;}
.y48_c00221{bottom:151.128549pt;}
.y4a_c00221{bottom:151.128683pt;}
.y43_c00221{bottom:151.128725pt;}
.y44_c00221{bottom:151.128848pt;}
.y41_c00221{bottom:167.012085pt;}
.y42_c00221{bottom:167.012171pt;}
.y40_c00221{bottom:167.012715pt;}
.y3e_c00221{bottom:167.012773pt;}
.y3f_c00221{bottom:167.013072pt;}
.y38_c00221{bottom:182.753963pt;}
.y3a_c00221{bottom:182.754240pt;}
.y39_c00221{bottom:182.754261pt;}
.y3b_c00221{bottom:182.754469pt;}
.y3c_c00221{bottom:182.755125pt;}
.y3d_c00221{bottom:182.755419pt;}
.y37_c00221{bottom:197.973216pt;}
.y36_c00221{bottom:197.973627pt;}
.y35_c00221{bottom:197.973771pt;}
.y31_c00221{bottom:197.973840pt;}
.y34_c00221{bottom:197.973968pt;}
.y32_c00221{bottom:197.974048pt;}
.y30_c00221{bottom:197.974325pt;}
.y33_c00221{bottom:197.974544pt;}
.y2f_c00221{bottom:213.747861pt;}
.y2e_c00221{bottom:213.748059pt;}
.y2d_c00221{bottom:213.748171pt;}
.y29_c00221{bottom:213.748667pt;}
.y2a_c00221{bottom:213.748715pt;}
.y2c_c00221{bottom:213.748741pt;}
.y2b_c00221{bottom:213.748832pt;}
.y28_c00221{bottom:228.016923pt;}
.y27_c00221{bottom:228.609600pt;}
.y26_c00221{bottom:228.834939pt;}
.y25_c00221{bottom:229.014923pt;}
.y24_c00221{bottom:229.490496pt;}
.y23_c00221{bottom:229.626960pt;}
.y22_c00221{bottom:229.768864pt;}
.y21_c00221{bottom:230.397931pt;}
.y1e_c00221{bottom:244.332485pt;}
.y20_c00221{bottom:244.332779pt;}
.y1f_c00221{bottom:244.332784pt;}
.y1d_c00221{bottom:244.332811pt;}
.y1b_c00221{bottom:244.333264pt;}
.y1c_c00221{bottom:244.333381pt;}
.y1a_c00221{bottom:244.333461pt;}
.y19_c00221{bottom:257.491445pt;}
.y18_c00221{bottom:257.681653pt;}
.y17_c00221{bottom:257.989589pt;}
.y16_c00221{bottom:258.965877pt;}
.y15_c00221{bottom:259.939493pt;}
.y14_c00221{bottom:260.161333pt;}
.y13_c00221{bottom:274.013333pt;}
.y12_c00221{bottom:288.629333pt;}
.y11_c00221{bottom:304.560000pt;}
.y10_c00221{bottom:320.098667pt;}
.yf_c00221{bottom:335.221333pt;}
.ye_c00221{bottom:350.954667pt;}
.yd_c00221{bottom:366.150667pt;}
.yc_c00221{bottom:380.220000pt;}
.yb_c00221{bottom:396.661333pt;}
.ya_c00221{bottom:410.494667pt;}
.y9_c00221{bottom:427.140000pt;}
.y8_c00221{bottom:441.840000pt;}
.y7_c00221{bottom:457.814667pt;}
.y6_c00221{bottom:473.197333pt;}
.y3_c00221{bottom:487.921333pt;}
.y4_c00221{bottom:489.194667pt;}
.y5_c00221{bottom:491.274667pt;}
.y2_c00221{bottom:503.118667pt;}
.y1_c00221{bottom:518.520000pt;}
.h4_c00221{height:45.733333pt;}
.he_c00221{height:53.203830pt;}
.h5_c00221{height:54.133333pt;}
.h7_c00221{height:55.066667pt;}
.h11_c00221{height:55.070631pt;}
.hb_c00221{height:56.000000pt;}
.h14_c00221{height:56.004032pt;}
.h2_c00221{height:56.933333pt;}
.hd_c00221{height:56.937432pt;}
.hc_c00221{height:57.866667pt;}
.h16_c00221{height:58.800000pt;}
.hf_c00221{height:58.804233pt;}
.h6_c00221{height:59.733333pt;}
.ha_c00221{height:60.666667pt;}
.h9_c00221{height:61.600000pt;}
.h13_c00221{height:61.604435pt;}
.h3_c00221{height:62.533333pt;}
.h8_c00221{height:63.466667pt;}
.h12_c00221{height:63.471236pt;}
.h10_c00221{height:66.271438pt;}
.h15_c00221{height:67.204838pt;}
.h0_c00221{height:555.840000pt;}
.h1_c00221{height:556.000000pt;}
.w0_c00221{width:336.480000pt;}
.w1_c00221{width:336.666667pt;}
.x0_c00221{left:0.000000pt;}
.x68_c00221{left:40.555051pt;}
.x5d_c00221{left:41.516891pt;}
.x16_c00221{left:42.480000pt;}
.x11_c00221{left:44.160000pt;}
.x2_c00221{left:46.560000pt;}
.x6a_c00221{left:50.880000pt;}
.x47_c00221{left:55.200000pt;}
.x4b_c00221{left:61.074667pt;}
.x37_c00221{left:63.360000pt;}
.x12_c00221{left:65.520000pt;}
.x2f_c00221{left:67.200000pt;}
.x5e_c00221{left:68.879584pt;}
.x3c_c00221{left:75.840000pt;}
.x40_c00221{left:78.480000pt;}
.x5a_c00221{left:79.920624pt;}
.x17_c00221{left:81.840000pt;}
.x1c_c00221{left:84.240000pt;}
.x26_c00221{left:85.920000pt;}
.x3_c00221{left:87.360000pt;}
.x20_c00221{left:88.320000pt;}
.xb_c00221{left:90.240000pt;}
.x63_c00221{left:91.439504pt;}
.x56_c00221{left:93.362501pt;}
.x41_c00221{left:94.320000pt;}
.x18_c00221{left:95.520000pt;}
.x32_c00221{left:97.680000pt;}
.x2b_c00221{left:99.120000pt;}
.x70_c00221{left:100.560000pt;}
.x19_c00221{left:104.640000pt;}
.x52_c00221{left:107.160640pt;}
.x4_c00221{left:109.920000pt;}
.x21_c00221{left:114.960000pt;}
.x38_c00221{left:117.600000pt;}
.x3d_c00221{left:119.520000pt;}
.x13_c00221{left:122.160000pt;}
.x1a_c00221{left:125.520000pt;}
.x1d_c00221{left:128.640000pt;}
.x69_c00221{left:131.281440pt;}
.x27_c00221{left:133.440000pt;}
.xc_c00221{left:134.640000pt;}
.x74_c00221{left:136.800000pt;}
.x9_c00221{left:138.360000pt;}
.x4f_c00221{left:140.408176pt;}
.x4c_c00221{left:142.209333pt;}
.x5b_c00221{left:143.524459pt;}
.x57_c00221{left:145.686037pt;}
.x6b_c00221{left:147.600000pt;}
.x33_c00221{left:148.560000pt;}
.x2c_c00221{left:150.480000pt;}
.x22_c00221{left:152.400000pt;}
.x44_c00221{left:153.360000pt;}
.xd_c00221{left:154.320000pt;}
.x42_c00221{left:155.760000pt;}
.x64_c00221{left:157.443675pt;}
.x34_c00221{left:158.880000pt;}
.x50_c00221{left:160.569739pt;}
.x1_c00221{left:161.760000pt;}
.x6c_c00221{left:163.200000pt;}
.x5_c00221{left:164.400000pt;}
.x39_c00221{left:165.840000pt;}
.x5f_c00221{left:173.526640pt;}
.x6_c00221{left:176.160000pt;}
.x43_c00221{left:178.800000pt;}
.x48_c00221{left:179.760000pt;}
.x71_c00221{left:181.680000pt;}
.xe_c00221{left:183.360000pt;}
.x14_c00221{left:187.200000pt;}
.x6e_c00221{left:189.600000pt;}
.x3a_c00221{left:192.000000pt;}
.x45_c00221{left:193.440000pt;}
.x28_c00221{left:195.840000pt;}
.x7_c00221{left:198.240000pt;}
.x53_c00221{left:200.545547pt;}
.x23_c00221{left:202.560000pt;}
.x65_c00221{left:204.006379pt;}
.x73_c00221{left:205.920000pt;}
.x1b_c00221{left:210.000000pt;}
.x60_c00221{left:213.369717pt;}
.x2d_c00221{left:216.480000pt;}
.x66_c00221{left:218.887189pt;}
.x1e_c00221{left:220.560000pt;}
.x4d_c00221{left:223.566667pt;}
.x5c_c00221{left:227.289856pt;}
.x61_c00221{left:228.970624pt;}
.x30_c00221{left:230.160000pt;}
.x58_c00221{left:231.371707pt;}
.xf_c00221{left:233.760000pt;}
.x29_c00221{left:234.960000pt;}
.x72_c00221{left:236.400000pt;}
.x67_c00221{left:238.808720pt;}
.x3e_c00221{left:240.720000pt;}
.x15_c00221{left:245.280000pt;}
.x49_c00221{left:246.480000pt;}
.x46_c00221{left:248.160000pt;}
.x4e_c00221{left:249.228000pt;}
.x8_c00221{left:252.720000pt;}
.x6f_c00221{left:253.680000pt;}
.x2a_c00221{left:258.480000pt;}
.x35_c00221{left:259.680000pt;}
.x10_c00221{left:262.320000pt;}
.x31_c00221{left:263.520000pt;}
.x24_c00221{left:264.480000pt;}
.x4a_c00221{left:265.920000pt;}
.x2e_c00221{left:268.320000pt;}
.x59_c00221{left:269.294496pt;}
.x6d_c00221{left:270.240000pt;}
.x3b_c00221{left:276.720000pt;}
.x1f_c00221{left:279.600000pt;}
.x54_c00221{left:282.382181pt;}
.xa_c00221{left:286.894667pt;}
.x25_c00221{left:291.840000pt;}
.x3f_c00221{left:294.480000pt;}
.x55_c00221{left:297.857205pt;}
.x62_c00221{left:298.815355pt;}
.x51_c00221{left:300.259184pt;}
.x36_c00221{left:308.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00222 {
    display:none;
  }
  .loading-indicator_c00222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00222 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00222 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00222" -> "#page-container .classname_c00222")
 */
.pf_c00222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00222 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00222 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00222 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00222 {overflow:visible;}
  }
}
.c_c00222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00222 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00222:after { /* webkit #35443 */
  content: '';
}
.t_c00222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00222 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00222 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00222 { /* info for Javascript */
  display:none;
}
.l_c00222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00222:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00222 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00222.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00222{transform:matrix(0.008710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008710,0.000000,0.000000,0.250000,0,0);}
.m62_c00222{transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.132685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00222{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.m5d_c00222{transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.148755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148755,0.000000,0.000000,0.250000,0,0);}
.m73_c00222{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m7d_c00222{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.m7b_c00222{transform:matrix(0.154815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154815,0.000000,0.000000,0.250000,0,0);}
.m6b_c00222{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157930,0.000000,0.000000,0.250000,0,0);}
.m69_c00222{transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);}
.md1_c00222{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m53_c00222{transform:matrix(0.161090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161090,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161255,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m6d_c00222{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.m52_c00222{transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00222{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.me3_c00222{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m77_c00222{transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m5e_c00222{transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);}
.m8c_c00222{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m94_c00222{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m71_c00222{transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);}
.md9_c00222{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00222{transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);}
.ma4_c00222{transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176085,0.000000,0.000000,0.250000,0,0);}
.m3d_c00222{transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);}
.m4f_c00222{transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00222{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m6e_c00222{transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);}
.mde_c00222{transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178160,0.000000,0.000000,0.250000,0,0);}
.m18_c00222{transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);}
.me2_c00222{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);}
.m6a_c00222{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00222{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.m9d_c00222{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m89_c00222{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.m9a_c00222{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);}
.m4e_c00222{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m76_c00222{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.md5_c00222{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.ma0_c00222{transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);}
.md2_c00222{transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);}
.m93_c00222{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.md6_c00222{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m8d_c00222{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.md0_c00222{transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00222{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.md4_c00222{transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00222{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.me4_c00222{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m80_c00222{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m92_c00222{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m63_c00222{transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);}
.m83_c00222{transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);}
.m5a_c00222{transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);}
.m5b_c00222{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);}
.m38_c00222{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);}
.m3c_c00222{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.m54_c00222{transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);}
.m58_c00222{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m5c_c00222{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);}
.m65_c00222{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m96_c00222{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m7f_c00222{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00222{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.m3f_c00222{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m95_c00222{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.mc8_c00222{transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);}
.mda_c00222{transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);}
.mcf_c00222{transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);}
.m6f_c00222{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m88_c00222{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.m43_c00222{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00222{transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);}
.mce_c00222{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);}
.m82_c00222{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m40_c00222{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m2f_c00222{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m60_c00222{transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201795,0.000000,0.000000,0.250000,0,0);}
.me1_c00222{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);}
.m48_c00222{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.mdb_c00222{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m97_c00222{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m90_c00222{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m7a_c00222{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.m70_c00222{transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);}
.mdc_c00222{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m81_c00222{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m99_c00222{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.mca_c00222{transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);}
.m87_c00222{transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m41_c00222{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.m49_c00222{transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m68_c00222{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.m74_c00222{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m9c_c00222{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.ma2_c00222{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.mc9_c00222{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m86_c00222{transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.md3_c00222{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00222{transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);}
.m98_c00222{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m72_c00222{transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216745,0.000000,0.000000,0.250000,0,0);}
.mc1_c00222{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);}
.m46_c00222{transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);}
.m36_c00222{transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);}
.m30_c00222{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00222{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.m9b_c00222{transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);}
.m44_c00222{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.md7_c00222{transform:matrix(0.223140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223140,0.000000,0.000000,0.250000,0,0);}
.ma5_c00222{transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);}
.m51_c00222{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m47_c00222{transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);}
.m55_c00222{transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);}
.m56_c00222{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00222{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.ma1_c00222{transform:matrix(0.224905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224905,0.000000,0.000000,0.250000,0,0);}
.m8b_c00222{transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00222{transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);}
.ma6_c00222{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m8e_c00222{transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);}
.m75_c00222{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.md8_c00222{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);}
.maa_c00222{transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);}
.m91_c00222{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.mdd_c00222{transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);}
.ma8_c00222{transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);}
.mbe_c00222{transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m64_c00222{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.m8f_c00222{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.ma9_c00222{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.mc5_c00222{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00222{transform:matrix(0.239515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);}
.mba_c00222{transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.242720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242720,0.000000,0.000000,0.250000,0,0);}
.mcd_c00222{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00222{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.mdf_c00222{transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);}
.me0_c00222{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mc4_c00222{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.mbf_c00222{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.mc3_c00222{transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);}
.mab_c00222{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.m42_c00222{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00222{transform:matrix(0.259910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259910,0.000000,0.000000,0.250000,0,0);}
.mbb_c00222{transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);}
.m45_c00222{transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);}
.m66_c00222{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.m79_c00222{transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);}
.mc0_c00222{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.mb6_c00222{transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);}
.mb8_c00222{transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);}
.ma7_c00222{transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);}
.mc7_c00222{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.mac_c00222{transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);}
.m84_c00222{transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);}
.mb9_c00222{transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);}
.mad_c00222{transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);}
.mb4_c00222{transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);}
.mbc_c00222{transform:matrix(0.305395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305395,0.000000,0.000000,0.250000,0,0);}
.mb7_c00222{transform:matrix(0.308440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308440,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);}
.mb0_c00222{transform:matrix(0.313240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313240,0.000000,0.000000,0.250000,0,0);}
.mb5_c00222{transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);}
.m67_c00222{transform:matrix(0.317660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317660,0.000000,0.000000,0.250000,0,0);}
.mb1_c00222{transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);}
.mb3_c00222{transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);}
.mbd_c00222{transform:matrix(0.349010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349010,0.000000,0.000000,0.250000,0,0);}
.m61_c00222{transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);}
.m78_c00222{transform:matrix(0.354090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354090,0.000000,0.000000,0.250000,0,0);}
.mc6_c00222{transform:matrix(0.357315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357315,0.000000,0.000000,0.250000,0,0);}
.mae_c00222{transform:matrix(0.371095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371095,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.388165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388165,0.000000,0.000000,0.250000,0,0);}
.maf_c00222{transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);}
.m50_c00222{transform:matrix(0.414985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414985,0.000000,0.000000,0.250000,0,0);}
.mb2_c00222{transform:matrix(0.511100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511100,0.000000,0.000000,0.250000,0,0);}
.m85_c00222{transform:matrix(0.600390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600390,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.689220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689220,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(1.443655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.443655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.443655,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:0.000000px;}
.fc0_c00222{color:transparent;}
.fse_c00222{font-size:43.050000px;}
.fsf_c00222{font-size:48.300000px;}
.fsd_c00222{font-size:51.450000px;}
.fs10_c00222{font-size:52.500000px;}
.fs2_c00222{font-size:58.800000px;}
.fsc_c00222{font-size:60.900000px;}
.fsb_c00222{font-size:61.950000px;}
.fs7_c00222{font-size:65.100000px;}
.fs9_c00222{font-size:66.150000px;}
.fs6_c00222{font-size:67.200000px;}
.fs3_c00222{font-size:69.300000px;}
.fs8_c00222{font-size:70.350000px;}
.fs5_c00222{font-size:71.400000px;}
.fsa_c00222{font-size:72.450000px;}
.fs0_c00222{font-size:75.600000px;}
.fs4_c00222{font-size:79.800000px;}
.fs1_c00222{font-size:115.500000px;}
.y0_c00222{bottom:0.000000px;}
.y3c_c00222{bottom:30.318000px;}
.y3b_c00222{bottom:49.747500px;}
.y3a_c00222{bottom:65.799000px;}
.y39_c00222{bottom:82.213500px;}
.y38_c00222{bottom:82.485000px;}
.y37_c00222{bottom:83.107500px;}
.y36_c00222{bottom:83.884500px;}
.y35_c00222{bottom:84.381000px;}
.y34_c00222{bottom:84.649500px;}
.y33_c00222{bottom:84.894000px;}
.y32_c00222{bottom:85.318500px;}
.y31_c00222{bottom:101.557500px;}
.y30_c00222{bottom:122.449500px;}
.y2f_c00222{bottom:138.340500px;}
.y2e_c00222{bottom:138.835500px;}
.y2d_c00222{bottom:139.095000px;}
.y2c_c00222{bottom:139.279500px;}
.y2b_c00222{bottom:139.986000px;}
.y2a_c00222{bottom:140.469000px;}
.y29_c00222{bottom:140.631000px;}
.y28_c00222{bottom:141.024000px;}
.y27_c00222{bottom:141.750000px;}
.y26_c00222{bottom:155.446500px;}
.y25_c00222{bottom:168.592500px;}
.y24_c00222{bottom:168.708000px;}
.y23_c00222{bottom:169.662000px;}
.y22_c00222{bottom:170.614500px;}
.y21_c00222{bottom:170.758500px;}
.y20_c00222{bottom:171.681000px;}
.y1f_c00222{bottom:171.892500px;}
.y1e_c00222{bottom:172.531500px;}
.y1d_c00222{bottom:185.836500px;}
.y1c_c00222{bottom:204.118500px;}
.y1b_c00222{bottom:219.670500px;}
.y1a_c00222{bottom:238.410000px;}
.y19_c00222{bottom:255.535500px;}
.y18_c00222{bottom:272.970000px;}
.y1_c00222{bottom:291.060000px;}
.y17_c00222{bottom:307.876500px;}
.y16_c00222{bottom:325.890000px;}
.y15_c00222{bottom:342.397500px;}
.y14_c00222{bottom:358.389000px;}
.y13_c00222{bottom:375.879000px;}
.yd_c00222{bottom:390.151500px;}
.ye_c00222{bottom:390.478500px;}
.yf_c00222{bottom:390.630000px;}
.y10_c00222{bottom:392.148000px;}
.y11_c00222{bottom:392.398500px;}
.y12_c00222{bottom:392.949000px;}
.yc_c00222{bottom:410.130000px;}
.yb_c00222{bottom:427.177500px;}
.ya_c00222{bottom:443.838000px;}
.y9_c00222{bottom:461.235000px;}
.y8_c00222{bottom:479.167500px;}
.y7_c00222{bottom:496.297500px;}
.y6_c00222{bottom:513.343500px;}
.y5_c00222{bottom:530.617500px;}
.y4_c00222{bottom:548.443500px;}
.y3_c00222{bottom:565.722000px;}
.y2_c00222{bottom:577.518000px;}
.h10_c00222{height:43.050000px;}
.h11_c00222{height:48.300000px;}
.hf_c00222{height:51.450000px;}
.h12_c00222{height:52.500000px;}
.h4_c00222{height:58.800000px;}
.he_c00222{height:60.900000px;}
.hd_c00222{height:61.950000px;}
.h9_c00222{height:65.100000px;}
.hb_c00222{height:66.150000px;}
.h8_c00222{height:67.200000px;}
.h5_c00222{height:69.300000px;}
.ha_c00222{height:70.350000px;}
.h7_c00222{height:71.400000px;}
.hc_c00222{height:72.450000px;}
.h2_c00222{height:75.600000px;}
.h6_c00222{height:79.800000px;}
.h3_c00222{height:115.500000px;}
.h0_c00222{height:625.320000px;}
.h1_c00222{height:625.500000px;}
.w0_c00222{width:378.540000px;}
.w1_c00222{width:378.750000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:22.140000px;}
.x1a_c00222{left:29.700000px;}
.x6_c00222{left:31.050000px;}
.x13_c00222{left:32.940000px;}
.x5d_c00222{left:34.558500px;}
.x6d_c00222{left:35.908500px;}
.x42_c00222{left:36.988500px;}
.x78_c00222{left:38.610000px;}
.x65_c00222{left:54.808500px;}
.xc_c00222{left:57.510000px;}
.x46_c00222{left:59.398500px;}
.x53_c00222{left:61.558500px;}
.x3a_c00222{left:65.188500px;}
.x2_c00222{left:66.690000px;}
.x6e_c00222{left:72.088500px;}
.x7_c00222{left:73.710000px;}
.x49_c00222{left:75.598500px;}
.x3_c00222{left:78.570000px;}
.x3b_c00222{left:80.331000px;}
.x14_c00222{left:81.810000px;}
.x1f_c00222{left:85.050000px;}
.x37_c00222{left:88.020000px;}
.x43_c00222{left:89.098500px;}
.x4d_c00222{left:90.448500px;}
.x1b_c00222{left:92.880000px;}
.x68_c00222{left:94.080000px;}
.x15_c00222{left:95.580000px;}
.x8_c00222{left:100.170000px;}
.x69_c00222{left:101.248500px;}
.x34_c00222{left:103.680000px;}
.x70_c00222{left:106.918500px;}
.x2e_c00222{left:114.750000px;}
.x74_c00222{left:115.954500px;}
.x54_c00222{left:117.988500px;}
.x24_c00222{left:119.070000px;}
.x4_c00222{left:124.740000px;}
.x6c_c00222{left:127.360500px;}
.x57_c00222{left:129.328500px;}
.x2f_c00222{left:134.190000px;}
.x71_c00222{left:135.268500px;}
.xd_c00222{left:136.890000px;}
.x60_c00222{left:138.778500px;}
.x4a_c00222{left:139.858500px;}
.x38_c00222{left:141.750000px;}
.x55_c00222{left:143.908500px;}
.x6f_c00222{left:149.848500px;}
.x72_c00222{left:153.898500px;}
.x44_c00222{left:155.248500px;}
.x3e_c00222{left:156.598500px;}
.x16_c00222{left:158.490000px;}
.x75_c00222{left:159.570000px;}
.x35_c00222{left:160.650000px;}
.x61_c00222{left:161.728500px;}
.x2a_c00222{left:164.160000px;}
.x5_c00222{left:165.510000px;}
.x45_c00222{left:170.638500px;}
.xe_c00222{left:172.530000px;}
.x20_c00222{left:176.310000px;}
.x2b_c00222{left:177.930000px;}
.x4e_c00222{left:179.008500px;}
.x58_c00222{left:181.708500px;}
.x1c_c00222{left:183.600000px;}
.x62_c00222{left:188.998500px;}
.xf_c00222{left:192.780000px;}
.x59_c00222{left:196.558500px;}
.x25_c00222{left:198.720000px;}
.x51_c00222{left:201.148500px;}
.x30_c00222{left:202.500000px;}
.x31_c00222{left:206.010000px;}
.x5e_c00222{left:209.788500px;}
.x63_c00222{left:210.868500px;}
.x2c_c00222{left:211.950000px;}
.x36_c00222{left:213.030000px;}
.x10_c00222{left:214.650000px;}
.x9_c00222{left:217.890000px;}
.x1d_c00222{left:222.480000px;}
.x26_c00222{left:224.910000px;}
.x21_c00222{left:227.340000px;}
.x6a_c00222{left:230.038500px;}
.x3c_c00222{left:232.074000px;}
.x5f_c00222{left:233.278500px;}
.x32_c00222{left:235.710000px;}
.x79_c00222{left:236.790000px;}
.x4b_c00222{left:239.218500px;}
.x73_c00222{left:240.298500px;}
.x3f_c00222{left:245.698500px;}
.x1e_c00222{left:250.020000px;}
.x27_c00222{left:255.420000px;}
.x3d_c00222{left:257.167500px;}
.x39_c00222{left:259.200000px;}
.x22_c00222{left:260.550000px;}
.x4f_c00222{left:267.028500px;}
.x17_c00222{left:270.270000px;}
.x64_c00222{left:271.618500px;}
.x5a_c00222{left:272.968500px;}
.x47_c00222{left:274.588500px;}
.xa_c00222{left:277.290000px;}
.x28_c00222{left:278.910000px;}
.x2d_c00222{left:281.340000px;}
.x18_c00222{left:283.770000px;}
.x40_c00222{left:288.088500px;}
.x23_c00222{left:289.170000px;}
.x52_c00222{left:290.518500px;}
.x66_c00222{left:294.298500px;}
.x48_c00222{left:295.918500px;}
.x19_c00222{left:297.000000px;}
.x11_c00222{left:298.080000px;}
.x5b_c00222{left:299.968500px;}
.xb_c00222{left:301.320000px;}
.x50_c00222{left:306.448500px;}
.x76_c00222{left:307.800000px;}
.x12_c00222{left:309.420000px;}
.x33_c00222{left:311.310000px;}
.x29_c00222{left:313.740000px;}
.x77_c00222{left:315.090000px;}
.x41_c00222{left:316.708500px;}
.x4c_c00222{left:318.598500px;}
.x5c_c00222{left:319.948500px;}
.x67_c00222{left:323.998500px;}
.x6b_c00222{left:329.128500px;}
.x56_c00222{left:333.178500px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.fse_c00222{font-size:38.266667pt;}
.fsf_c00222{font-size:42.933333pt;}
.fsd_c00222{font-size:45.733333pt;}
.fs10_c00222{font-size:46.666667pt;}
.fs2_c00222{font-size:52.266667pt;}
.fsc_c00222{font-size:54.133333pt;}
.fsb_c00222{font-size:55.066667pt;}
.fs7_c00222{font-size:57.866667pt;}
.fs9_c00222{font-size:58.800000pt;}
.fs6_c00222{font-size:59.733333pt;}
.fs3_c00222{font-size:61.600000pt;}
.fs8_c00222{font-size:62.533333pt;}
.fs5_c00222{font-size:63.466667pt;}
.fsa_c00222{font-size:64.400000pt;}
.fs0_c00222{font-size:67.200000pt;}
.fs4_c00222{font-size:70.933333pt;}
.fs1_c00222{font-size:102.666667pt;}
.y0_c00222{bottom:0.000000pt;}
.y3c_c00222{bottom:26.949333pt;}
.y3b_c00222{bottom:44.220000pt;}
.y3a_c00222{bottom:58.488000pt;}
.y39_c00222{bottom:73.078667pt;}
.y38_c00222{bottom:73.320000pt;}
.y37_c00222{bottom:73.873333pt;}
.y36_c00222{bottom:74.564000pt;}
.y35_c00222{bottom:75.005333pt;}
.y34_c00222{bottom:75.244000pt;}
.y33_c00222{bottom:75.461333pt;}
.y32_c00222{bottom:75.838667pt;}
.y31_c00222{bottom:90.273333pt;}
.y30_c00222{bottom:108.844000pt;}
.y2f_c00222{bottom:122.969333pt;}
.y2e_c00222{bottom:123.409333pt;}
.y2d_c00222{bottom:123.640000pt;}
.y2c_c00222{bottom:123.804000pt;}
.y2b_c00222{bottom:124.432000pt;}
.y2a_c00222{bottom:124.861333pt;}
.y29_c00222{bottom:125.005333pt;}
.y28_c00222{bottom:125.354667pt;}
.y27_c00222{bottom:126.000000pt;}
.y26_c00222{bottom:138.174667pt;}
.y25_c00222{bottom:149.860000pt;}
.y24_c00222{bottom:149.962667pt;}
.y23_c00222{bottom:150.810667pt;}
.y22_c00222{bottom:151.657333pt;}
.y21_c00222{bottom:151.785333pt;}
.y20_c00222{bottom:152.605333pt;}
.y1f_c00222{bottom:152.793333pt;}
.y1e_c00222{bottom:153.361333pt;}
.y1d_c00222{bottom:165.188000pt;}
.y1c_c00222{bottom:181.438667pt;}
.y1b_c00222{bottom:195.262667pt;}
.y1a_c00222{bottom:211.920000pt;}
.y19_c00222{bottom:227.142667pt;}
.y18_c00222{bottom:242.640000pt;}
.y1_c00222{bottom:258.720000pt;}
.y17_c00222{bottom:273.668000pt;}
.y16_c00222{bottom:289.680000pt;}
.y15_c00222{bottom:304.353333pt;}
.y14_c00222{bottom:318.568000pt;}
.y13_c00222{bottom:334.114667pt;}
.yd_c00222{bottom:346.801333pt;}
.ye_c00222{bottom:347.092000pt;}
.yf_c00222{bottom:347.226667pt;}
.y10_c00222{bottom:348.576000pt;}
.y11_c00222{bottom:348.798667pt;}
.y12_c00222{bottom:349.288000pt;}
.yc_c00222{bottom:364.560000pt;}
.yb_c00222{bottom:379.713333pt;}
.ya_c00222{bottom:394.522667pt;}
.y9_c00222{bottom:409.986667pt;}
.y8_c00222{bottom:425.926667pt;}
.y7_c00222{bottom:441.153333pt;}
.y6_c00222{bottom:456.305333pt;}
.y5_c00222{bottom:471.660000pt;}
.y4_c00222{bottom:487.505333pt;}
.y3_c00222{bottom:502.864000pt;}
.y2_c00222{bottom:513.349333pt;}
.h10_c00222{height:38.266667pt;}
.h11_c00222{height:42.933333pt;}
.hf_c00222{height:45.733333pt;}
.h12_c00222{height:46.666667pt;}
.h4_c00222{height:52.266667pt;}
.he_c00222{height:54.133333pt;}
.hd_c00222{height:55.066667pt;}
.h9_c00222{height:57.866667pt;}
.hb_c00222{height:58.800000pt;}
.h8_c00222{height:59.733333pt;}
.h5_c00222{height:61.600000pt;}
.ha_c00222{height:62.533333pt;}
.h7_c00222{height:63.466667pt;}
.hc_c00222{height:64.400000pt;}
.h2_c00222{height:67.200000pt;}
.h6_c00222{height:70.933333pt;}
.h3_c00222{height:102.666667pt;}
.h0_c00222{height:555.840000pt;}
.h1_c00222{height:556.000000pt;}
.w0_c00222{width:336.480000pt;}
.w1_c00222{width:336.666667pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:19.680000pt;}
.x1a_c00222{left:26.400000pt;}
.x6_c00222{left:27.600000pt;}
.x13_c00222{left:29.280000pt;}
.x5d_c00222{left:30.718667pt;}
.x6d_c00222{left:31.918667pt;}
.x42_c00222{left:32.878667pt;}
.x78_c00222{left:34.320000pt;}
.x65_c00222{left:48.718667pt;}
.xc_c00222{left:51.120000pt;}
.x46_c00222{left:52.798667pt;}
.x53_c00222{left:54.718667pt;}
.x3a_c00222{left:57.945333pt;}
.x2_c00222{left:59.280000pt;}
.x6e_c00222{left:64.078667pt;}
.x7_c00222{left:65.520000pt;}
.x49_c00222{left:67.198667pt;}
.x3_c00222{left:69.840000pt;}
.x3b_c00222{left:71.405333pt;}
.x14_c00222{left:72.720000pt;}
.x1f_c00222{left:75.600000pt;}
.x37_c00222{left:78.240000pt;}
.x43_c00222{left:79.198667pt;}
.x4d_c00222{left:80.398667pt;}
.x1b_c00222{left:82.560000pt;}
.x68_c00222{left:83.626667pt;}
.x15_c00222{left:84.960000pt;}
.x8_c00222{left:89.040000pt;}
.x69_c00222{left:89.998667pt;}
.x34_c00222{left:92.160000pt;}
.x70_c00222{left:95.038667pt;}
.x2e_c00222{left:102.000000pt;}
.x74_c00222{left:103.070667pt;}
.x54_c00222{left:104.878667pt;}
.x24_c00222{left:105.840000pt;}
.x4_c00222{left:110.880000pt;}
.x6c_c00222{left:113.209333pt;}
.x57_c00222{left:114.958667pt;}
.x2f_c00222{left:119.280000pt;}
.x71_c00222{left:120.238667pt;}
.xd_c00222{left:121.680000pt;}
.x60_c00222{left:123.358667pt;}
.x4a_c00222{left:124.318667pt;}
.x38_c00222{left:126.000000pt;}
.x55_c00222{left:127.918667pt;}
.x6f_c00222{left:133.198667pt;}
.x72_c00222{left:136.798667pt;}
.x44_c00222{left:137.998667pt;}
.x3e_c00222{left:139.198667pt;}
.x16_c00222{left:140.880000pt;}
.x75_c00222{left:141.840000pt;}
.x35_c00222{left:142.800000pt;}
.x61_c00222{left:143.758667pt;}
.x2a_c00222{left:145.920000pt;}
.x5_c00222{left:147.120000pt;}
.x45_c00222{left:151.678667pt;}
.xe_c00222{left:153.360000pt;}
.x20_c00222{left:156.720000pt;}
.x2b_c00222{left:158.160000pt;}
.x4e_c00222{left:159.118667pt;}
.x58_c00222{left:161.518667pt;}
.x1c_c00222{left:163.200000pt;}
.x62_c00222{left:167.998667pt;}
.xf_c00222{left:171.360000pt;}
.x59_c00222{left:174.718667pt;}
.x25_c00222{left:176.640000pt;}
.x51_c00222{left:178.798667pt;}
.x30_c00222{left:180.000000pt;}
.x31_c00222{left:183.120000pt;}
.x5e_c00222{left:186.478667pt;}
.x63_c00222{left:187.438667pt;}
.x2c_c00222{left:188.400000pt;}
.x36_c00222{left:189.360000pt;}
.x10_c00222{left:190.800000pt;}
.x9_c00222{left:193.680000pt;}
.x1d_c00222{left:197.760000pt;}
.x26_c00222{left:199.920000pt;}
.x21_c00222{left:202.080000pt;}
.x6a_c00222{left:204.478667pt;}
.x3c_c00222{left:206.288000pt;}
.x5f_c00222{left:207.358667pt;}
.x32_c00222{left:209.520000pt;}
.x79_c00222{left:210.480000pt;}
.x4b_c00222{left:212.638667pt;}
.x73_c00222{left:213.598667pt;}
.x3f_c00222{left:218.398667pt;}
.x1e_c00222{left:222.240000pt;}
.x27_c00222{left:227.040000pt;}
.x3d_c00222{left:228.593333pt;}
.x39_c00222{left:230.400000pt;}
.x22_c00222{left:231.600000pt;}
.x4f_c00222{left:237.358667pt;}
.x17_c00222{left:240.240000pt;}
.x64_c00222{left:241.438667pt;}
.x5a_c00222{left:242.638667pt;}
.x47_c00222{left:244.078667pt;}
.xa_c00222{left:246.480000pt;}
.x28_c00222{left:247.920000pt;}
.x2d_c00222{left:250.080000pt;}
.x18_c00222{left:252.240000pt;}
.x40_c00222{left:256.078667pt;}
.x23_c00222{left:257.040000pt;}
.x52_c00222{left:258.238667pt;}
.x66_c00222{left:261.598667pt;}
.x48_c00222{left:263.038667pt;}
.x19_c00222{left:264.000000pt;}
.x11_c00222{left:264.960000pt;}
.x5b_c00222{left:266.638667pt;}
.xb_c00222{left:267.840000pt;}
.x50_c00222{left:272.398667pt;}
.x76_c00222{left:273.600000pt;}
.x12_c00222{left:275.040000pt;}
.x33_c00222{left:276.720000pt;}
.x29_c00222{left:278.880000pt;}
.x77_c00222{left:280.080000pt;}
.x41_c00222{left:281.518667pt;}
.x4c_c00222{left:283.198667pt;}
.x5c_c00222{left:284.398667pt;}
.x67_c00222{left:287.998667pt;}
.x6b_c00222{left:292.558667pt;}
.x56_c00222{left:296.158667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00223 {
    display:none;
  }
  .loading-indicator_c00223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00223 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00223 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00223" -> "#page-container .classname_c00223")
 */
.pf_c00223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00223 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00223 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00223 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00223 {overflow:visible;}
  }
}
.c_c00223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00223 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00223:after { /* webkit #35443 */
  content: '';
}
.t_c00223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00223 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00223 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00223 { /* info for Javascript */
  display:none;
}
.l_c00223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00223:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00223 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00223.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00223{transform:matrix(0.084620,0.000931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.084620,0.000931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.084620,0.000931,-0.002750,0.249985,0,0);}
.m5_c00223{transform:matrix(0.128817,0.001417,-0.002750,0.249985,0,0);-ms-transform:matrix(0.128817,0.001417,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.128817,0.001417,-0.002750,0.249985,0,0);}
.m1b_c00223{transform:matrix(0.129047,0.001420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.129047,0.001420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.129047,0.001420,-0.002750,0.249985,0,0);}
.ma8_c00223{transform:matrix(0.136777,0.001505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136777,0.001505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136777,0.001505,-0.002750,0.249985,0,0);}
.mf0_c00223{transform:matrix(0.141651,0.001558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141651,0.001558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141651,0.001558,-0.002750,0.249985,0,0);}
.mf3_c00223{transform:matrix(0.141866,0.001561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141866,0.001561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141866,0.001561,-0.002750,0.249985,0,0);}
.m80_c00223{transform:matrix(0.143386,0.001577,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143386,0.001577,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143386,0.001577,-0.002750,0.249985,0,0);}
.m67_c00223{transform:matrix(0.144461,0.001589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144461,0.001589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144461,0.001589,-0.002750,0.249985,0,0);}
.m1a_c00223{transform:matrix(0.148646,0.001635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148646,0.001635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148646,0.001635,-0.002750,0.249985,0,0);}
.mb7_c00223{transform:matrix(0.150401,0.001654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150401,0.001654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150401,0.001654,-0.002750,0.249985,0,0);}
.m28_c00223{transform:matrix(0.150696,0.001658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150696,0.001658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150696,0.001658,-0.002750,0.249985,0,0);}
.ma2_c00223{transform:matrix(0.150726,0.001658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150726,0.001658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150726,0.001658,-0.002750,0.249985,0,0);}
.md9_c00223{transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);}
.m65_c00223{transform:matrix(0.151891,0.001671,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151891,0.001671,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151891,0.001671,-0.002750,0.249985,0,0);}
.mf1_c00223{transform:matrix(0.154021,0.001694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154021,0.001694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154021,0.001694,-0.002750,0.249985,0,0);}
.mc9_c00223{transform:matrix(0.155116,0.001706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155116,0.001706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155116,0.001706,-0.002750,0.249985,0,0);}
.m2c_c00223{transform:matrix(0.155831,0.001714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155831,0.001714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155831,0.001714,-0.002750,0.249985,0,0);}
.mad_c00223{transform:matrix(0.155891,0.001715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155891,0.001715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155891,0.001715,-0.002750,0.249985,0,0);}
.mb0_c00223{transform:matrix(0.155961,0.001716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155961,0.001716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155961,0.001716,-0.002750,0.249985,0,0);}
.m1e_c00223{transform:matrix(0.155996,0.001716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155996,0.001716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155996,0.001716,-0.002750,0.249985,0,0);}
.mbb_c00223{transform:matrix(0.156021,0.001716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156021,0.001716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156021,0.001716,-0.002750,0.249985,0,0);}
.md5_c00223{transform:matrix(0.156821,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156821,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156821,0.001725,-0.002750,0.249985,0,0);}
.m24_c00223{transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);}
.m69_c00223{transform:matrix(0.159630,0.001756,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159630,0.001756,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159630,0.001756,-0.002750,0.249985,0,0);}
.mec_c00223{transform:matrix(0.160950,0.001770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160950,0.001770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160950,0.001770,-0.002750,0.249985,0,0);}
.m1d_c00223{transform:matrix(0.160990,0.001771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160990,0.001771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160990,0.001771,-0.002750,0.249985,0,0);}
.m68_c00223{transform:matrix(0.162150,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162150,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162150,0.001784,-0.002750,0.249985,0,0);}
.mf4_c00223{transform:matrix(0.162180,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162180,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162180,0.001784,-0.002750,0.249985,0,0);}
.meb_c00223{transform:matrix(0.162265,0.001785,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162265,0.001785,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162265,0.001785,-0.002750,0.249985,0,0);}
.m7e_c00223{transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);}
.maf_c00223{transform:matrix(0.162640,0.001789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162640,0.001789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162640,0.001789,-0.002750,0.249985,0,0);}
.mbc_c00223{transform:matrix(0.163455,0.001798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163455,0.001798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163455,0.001798,-0.002750,0.249985,0,0);}
.mc8_c00223{transform:matrix(0.163930,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163930,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163930,0.001803,-0.002750,0.249985,0,0);}
.ma1_c00223{transform:matrix(0.163945,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163945,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163945,0.001803,-0.002750,0.249985,0,0);}
.mbe_c00223{transform:matrix(0.164315,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164315,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164315,0.001807,-0.002750,0.249985,0,0);}
.m20_c00223{transform:matrix(0.164975,0.001815,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164975,0.001815,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164975,0.001815,-0.002750,0.249985,0,0);}
.m15_c00223{transform:matrix(0.166065,0.001827,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166065,0.001827,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166065,0.001827,-0.002750,0.249985,0,0);}
.m72_c00223{transform:matrix(0.167275,0.001840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167275,0.001840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167275,0.001840,-0.002750,0.249985,0,0);}
.mb4_c00223{transform:matrix(0.167780,0.001846,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167780,0.001846,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167780,0.001846,-0.002750,0.249985,0,0);}
.m6f_c00223{transform:matrix(0.167930,0.001847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167930,0.001847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167930,0.001847,-0.002750,0.249985,0,0);}
.m8f_c00223{transform:matrix(0.168175,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168175,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168175,0.001850,-0.002750,0.249985,0,0);}
.m9b_c00223{transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);}
.m30_c00223{transform:matrix(0.168655,0.001855,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168655,0.001855,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168655,0.001855,-0.002750,0.249985,0,0);}
.m4c_c00223{transform:matrix(0.169775,0.001868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169775,0.001868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169775,0.001868,-0.002750,0.249985,0,0);}
.m37_c00223{transform:matrix(0.169820,0.001868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169820,0.001868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169820,0.001868,-0.002750,0.249985,0,0);}
.mbd_c00223{transform:matrix(0.170245,0.001873,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170245,0.001873,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170245,0.001873,-0.002750,0.249985,0,0);}
.m9c_c00223{transform:matrix(0.170305,0.001873,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170305,0.001873,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170305,0.001873,-0.002750,0.249985,0,0);}
.m2e_c00223{transform:matrix(0.170415,0.001875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170415,0.001875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170415,0.001875,-0.002750,0.249985,0,0);}
.m2d_c00223{transform:matrix(0.170620,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170620,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170620,0.001877,-0.002750,0.249985,0,0);}
.m93_c00223{transform:matrix(0.170670,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170670,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170670,0.001877,-0.002750,0.249985,0,0);}
.m6c_c00223{transform:matrix(0.170860,0.001879,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170860,0.001879,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170860,0.001879,-0.002750,0.249985,0,0);}
.mb1_c00223{transform:matrix(0.171155,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171155,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171155,0.001883,-0.002750,0.249985,0,0);}
.med_c00223{transform:matrix(0.171505,0.001887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171505,0.001887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171505,0.001887,-0.002750,0.249985,0,0);}
.m1c_c00223{transform:matrix(0.171780,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171780,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171780,0.001890,-0.002750,0.249985,0,0);}
.mb3_c00223{transform:matrix(0.171875,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171875,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171875,0.001891,-0.002750,0.249985,0,0);}
.m95_c00223{transform:matrix(0.171960,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171960,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171960,0.001892,-0.002750,0.249985,0,0);}
.m90_c00223{transform:matrix(0.172085,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172085,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172085,0.001893,-0.002750,0.249985,0,0);}
.m27_c00223{transform:matrix(0.172290,0.001895,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172290,0.001895,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172290,0.001895,-0.002750,0.249985,0,0);}
.me9_c00223{transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172605,0.001899,-0.002750,0.249985,0,0);}
.m25_c00223{transform:matrix(0.172995,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172995,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172995,0.001903,-0.002750,0.249985,0,0);}
.mee_c00223{transform:matrix(0.173225,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173225,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173225,0.001905,-0.002750,0.249985,0,0);}
.mca_c00223{transform:matrix(0.174244,0.001917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174244,0.001917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174244,0.001917,-0.002750,0.249985,0,0);}
.m54_c00223{transform:matrix(0.174784,0.001923,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174784,0.001923,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174784,0.001923,-0.002750,0.249985,0,0);}
.mb6_c00223{transform:matrix(0.175114,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175114,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175114,0.001926,-0.002750,0.249985,0,0);}
.me7_c00223{transform:matrix(0.175119,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175119,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175119,0.001926,-0.002750,0.249985,0,0);}
.m77_c00223{transform:matrix(0.175689,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175689,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175689,0.001933,-0.002750,0.249985,0,0);}
.me2_c00223{transform:matrix(0.175944,0.001935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175944,0.001935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175944,0.001935,-0.002750,0.249985,0,0);}
.mf2_c00223{transform:matrix(0.176034,0.001936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176034,0.001936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176034,0.001936,-0.002750,0.249985,0,0);}
.m6_c00223{transform:matrix(0.176234,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176234,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176234,0.001939,-0.002750,0.249985,0,0);}
.m7b_c00223{transform:matrix(0.176269,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176269,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176269,0.001939,-0.002750,0.249985,0,0);}
.m62_c00223{transform:matrix(0.176569,0.001942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176569,0.001942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176569,0.001942,-0.002750,0.249985,0,0);}
.m5f_c00223{transform:matrix(0.176804,0.001945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176804,0.001945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176804,0.001945,-0.002750,0.249985,0,0);}
.m52_c00223{transform:matrix(0.176919,0.001946,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176919,0.001946,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176919,0.001946,-0.002750,0.249985,0,0);}
.ma0_c00223{transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177184,0.001949,-0.002750,0.249985,0,0);}
.mdd_c00223{transform:matrix(0.177444,0.001952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177444,0.001952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177444,0.001952,-0.002750,0.249985,0,0);}
.mc7_c00223{transform:matrix(0.177944,0.001957,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177944,0.001957,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177944,0.001957,-0.002750,0.249985,0,0);}
.mcb_c00223{transform:matrix(0.178604,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178604,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178604,0.001965,-0.002750,0.249985,0,0);}
.m1f_c00223{transform:matrix(0.178714,0.001966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178714,0.001966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178714,0.001966,-0.002750,0.249985,0,0);}
.md7_c00223{transform:matrix(0.178849,0.001967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178849,0.001967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178849,0.001967,-0.002750,0.249985,0,0);}
.md8_c00223{transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);}
.m63_c00223{transform:matrix(0.179269,0.001972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179269,0.001972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179269,0.001972,-0.002750,0.249985,0,0);}
.m8e_c00223{transform:matrix(0.179434,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179434,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179434,0.001974,-0.002750,0.249985,0,0);}
.m9a_c00223{transform:matrix(0.179549,0.001975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179549,0.001975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179549,0.001975,-0.002750,0.249985,0,0);}
.m4e_c00223{transform:matrix(0.179719,0.001977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179719,0.001977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179719,0.001977,-0.002750,0.249985,0,0);}
.md4_c00223{transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);}
.m70_c00223{transform:matrix(0.180164,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180164,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180164,0.001982,-0.002750,0.249985,0,0);}
.m81_c00223{transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);}
.m92_c00223{transform:matrix(0.180354,0.001984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180354,0.001984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180354,0.001984,-0.002750,0.249985,0,0);}
.m19_c00223{transform:matrix(0.180409,0.001984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180409,0.001984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180409,0.001984,-0.002750,0.249985,0,0);}
.m66_c00223{transform:matrix(0.180584,0.001986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180584,0.001986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180584,0.001986,-0.002750,0.249985,0,0);}
.m61_c00223{transform:matrix(0.181434,0.001996,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181434,0.001996,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181434,0.001996,-0.002750,0.249985,0,0);}
.m94_c00223{transform:matrix(0.181679,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181679,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181679,0.001998,-0.002750,0.249985,0,0);}
.me5_c00223{transform:matrix(0.181689,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181689,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181689,0.001999,-0.002750,0.249985,0,0);}
.m96_c00223{transform:matrix(0.182189,0.002004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182189,0.002004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182189,0.002004,-0.002750,0.249985,0,0);}
.m71_c00223{transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182629,0.002009,-0.002750,0.249985,0,0);}
.m23_c00223{transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);}
.m6e_c00223{transform:matrix(0.183184,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183184,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183184,0.002015,-0.002750,0.249985,0,0);}
.m7_c00223{transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183309,0.002016,-0.002750,0.249985,0,0);}
.m0_c00223{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m2b_c00223{transform:matrix(0.183909,0.002023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183909,0.002023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183909,0.002023,-0.002750,0.249985,0,0);}
.m50_c00223{transform:matrix(0.184039,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184039,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184039,0.002024,-0.002750,0.249985,0,0);}
.m2f_c00223{transform:matrix(0.184189,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184189,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184189,0.002026,-0.002750,0.249985,0,0);}
.mbf_c00223{transform:matrix(0.184459,0.002029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184459,0.002029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184459,0.002029,-0.002750,0.249985,0,0);}
.md0_c00223{transform:matrix(0.184849,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184849,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184849,0.002033,-0.002750,0.249985,0,0);}
.mc3_c00223{transform:matrix(0.185079,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185079,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185079,0.002036,-0.002750,0.249985,0,0);}
.ma5_c00223{transform:matrix(0.185364,0.002039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185364,0.002039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185364,0.002039,-0.002750,0.249985,0,0);}
.m88_c00223{transform:matrix(0.185389,0.002039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185389,0.002039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185389,0.002039,-0.002750,0.249985,0,0);}
.mb8_c00223{transform:matrix(0.185459,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185459,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185459,0.002040,-0.002750,0.249985,0,0);}
.me8_c00223{transform:matrix(0.186229,0.002049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186229,0.002049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186229,0.002049,-0.002750,0.249985,0,0);}
.m21_c00223{transform:matrix(0.186354,0.002050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186354,0.002050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186354,0.002050,-0.002750,0.249985,0,0);}
.mac_c00223{transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);}
.me6_c00223{transform:matrix(0.187059,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187059,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187059,0.002058,-0.002750,0.249985,0,0);}
.m6b_c00223{transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);}
.mc2_c00223{transform:matrix(0.187429,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187429,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187429,0.002062,-0.002750,0.249985,0,0);}
.mab_c00223{transform:matrix(0.187599,0.002064,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187599,0.002064,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187599,0.002064,-0.002750,0.249985,0,0);}
.m35_c00223{transform:matrix(0.188904,0.002078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188904,0.002078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188904,0.002078,-0.002750,0.249985,0,0);}
.m22_c00223{transform:matrix(0.189519,0.002085,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189519,0.002085,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189519,0.002085,-0.002750,0.249985,0,0);}
.m9f_c00223{transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190363,0.002094,-0.002750,0.249985,0,0);}
.mea_c00223{transform:matrix(0.190648,0.002097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190648,0.002097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190648,0.002097,-0.002750,0.249985,0,0);}
.m64_c00223{transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);}
.m48_c00223{transform:matrix(0.191518,0.002107,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191518,0.002107,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191518,0.002107,-0.002750,0.249985,0,0);}
.md6_c00223{transform:matrix(0.191583,0.002107,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191583,0.002107,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191583,0.002107,-0.002750,0.249985,0,0);}
.m31_c00223{transform:matrix(0.192083,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192083,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192083,0.002113,-0.002750,0.249985,0,0);}
.ma6_c00223{transform:matrix(0.192298,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192298,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192298,0.002115,-0.002750,0.249985,0,0);}
.m36_c00223{transform:matrix(0.192318,0.002116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192318,0.002116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192318,0.002116,-0.002750,0.249985,0,0);}
.ma3_c00223{transform:matrix(0.192408,0.002116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192408,0.002116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192408,0.002116,-0.002750,0.249985,0,0);}
.mdf_c00223{transform:matrix(0.192708,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192708,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192708,0.002120,-0.002750,0.249985,0,0);}
.m5e_c00223{transform:matrix(0.192808,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192808,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192808,0.002121,-0.002750,0.249985,0,0);}
.ma9_c00223{transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);}
.mef_c00223{transform:matrix(0.193438,0.002128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193438,0.002128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193438,0.002128,-0.002750,0.249985,0,0);}
.mda_c00223{transform:matrix(0.193658,0.002130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193658,0.002130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193658,0.002130,-0.002750,0.249985,0,0);}
.mdc_c00223{transform:matrix(0.193703,0.002131,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193703,0.002131,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193703,0.002131,-0.002750,0.249985,0,0);}
.ma7_c00223{transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);}
.mb5_c00223{transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);}
.m6a_c00223{transform:matrix(0.194213,0.002136,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194213,0.002136,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194213,0.002136,-0.002750,0.249985,0,0);}
.m39_c00223{transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);}
.mc0_c00223{transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);}
.mcf_c00223{transform:matrix(0.194883,0.002144,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194883,0.002144,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194883,0.002144,-0.002750,0.249985,0,0);}
.m41_c00223{transform:matrix(0.195418,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195418,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195418,0.002150,-0.002750,0.249985,0,0);}
.m13_c00223{transform:matrix(0.195508,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195508,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195508,0.002151,-0.002750,0.249985,0,0);}
.mba_c00223{transform:matrix(0.195558,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195558,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195558,0.002151,-0.002750,0.249985,0,0);}
.m4f_c00223{transform:matrix(0.196628,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196628,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196628,0.002163,-0.002750,0.249985,0,0);}
.m7d_c00223{transform:matrix(0.196948,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196948,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196948,0.002166,-0.002750,0.249985,0,0);}
.m10_c00223{transform:matrix(0.197048,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197048,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197048,0.002168,-0.002750,0.249985,0,0);}
.mde_c00223{transform:matrix(0.197123,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197123,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197123,0.002168,-0.002750,0.249985,0,0);}
.m73_c00223{transform:matrix(0.197538,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197538,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197538,0.002173,-0.002750,0.249985,0,0);}
.ma4_c00223{transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198118,0.002179,-0.002750,0.249985,0,0);}
.mae_c00223{transform:matrix(0.198708,0.002186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198708,0.002186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198708,0.002186,-0.002750,0.249985,0,0);}
.m75_c00223{transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);}
.m53_c00223{transform:matrix(0.199543,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199543,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199543,0.002195,-0.002750,0.249985,0,0);}
.m33_c00223{transform:matrix(0.199638,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199638,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199638,0.002196,-0.002750,0.249985,0,0);}
.m18_c00223{transform:matrix(0.199713,0.002197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199713,0.002197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199713,0.002197,-0.002750,0.249985,0,0);}
.m2_c00223{transform:matrix(0.200198,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200198,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200198,0.002202,-0.002750,0.249985,0,0);}
.m8a_c00223{transform:matrix(0.200253,0.002203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200253,0.002203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200253,0.002203,-0.002750,0.249985,0,0);}
.m34_c00223{transform:matrix(0.200698,0.002208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200698,0.002208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200698,0.002208,-0.002750,0.249985,0,0);}
.mdb_c00223{transform:matrix(0.201423,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201423,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201423,0.002216,-0.002750,0.249985,0,0);}
.md1_c00223{transform:matrix(0.201493,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201493,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201493,0.002216,-0.002750,0.249985,0,0);}
.mb2_c00223{transform:matrix(0.201583,0.002217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201583,0.002217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201583,0.002217,-0.002750,0.249985,0,0);}
.m3c_c00223{transform:matrix(0.201798,0.002220,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201798,0.002220,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201798,0.002220,-0.002750,0.249985,0,0);}
.mf_c00223{transform:matrix(0.202748,0.002230,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202748,0.002230,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202748,0.002230,-0.002750,0.249985,0,0);}
.m1_c00223{transform:matrix(0.204063,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204063,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204063,0.002245,-0.002750,0.249985,0,0);}
.me_c00223{transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);}
.m42_c00223{transform:matrix(0.205543,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205543,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205543,0.002261,-0.002750,0.249985,0,0);}
.m59_c00223{transform:matrix(0.205603,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205603,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205603,0.002262,-0.002750,0.249985,0,0);}
.m26_c00223{transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);}
.mc5_c00223{transform:matrix(0.205813,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205813,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205813,0.002264,-0.002750,0.249985,0,0);}
.m91_c00223{transform:matrix(0.206053,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206053,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206053,0.002267,-0.002750,0.249985,0,0);}
.mce_c00223{transform:matrix(0.206253,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206253,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206253,0.002269,-0.002750,0.249985,0,0);}
.mc_c00223{transform:matrix(0.206548,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206548,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206548,0.002272,-0.002750,0.249985,0,0);}
.mcd_c00223{transform:matrix(0.207407,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207407,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207407,0.002281,-0.002750,0.249985,0,0);}
.m84_c00223{transform:matrix(0.207617,0.002284,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207617,0.002284,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207617,0.002284,-0.002750,0.249985,0,0);}
.mb_c00223{transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207752,0.002285,-0.002750,0.249985,0,0);}
.mb9_c00223{transform:matrix(0.207857,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207857,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207857,0.002286,-0.002750,0.249985,0,0);}
.m7c_c00223{transform:matrix(0.207967,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207967,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207967,0.002288,-0.002750,0.249985,0,0);}
.m2a_c00223{transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);}
.m7f_c00223{transform:matrix(0.209192,0.002301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209192,0.002301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209192,0.002301,-0.002750,0.249985,0,0);}
.m5a_c00223{transform:matrix(0.209242,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209242,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209242,0.002302,-0.002750,0.249985,0,0);}
.m6d_c00223{transform:matrix(0.209427,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209427,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209427,0.002304,-0.002750,0.249985,0,0);}
.m7a_c00223{transform:matrix(0.210027,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210027,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210027,0.002310,-0.002750,0.249985,0,0);}
.m17_c00223{transform:matrix(0.210307,0.002313,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210307,0.002313,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210307,0.002313,-0.002750,0.249985,0,0);}
.m58_c00223{transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);}
.m51_c00223{transform:matrix(0.210727,0.002318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210727,0.002318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210727,0.002318,-0.002750,0.249985,0,0);}
.md_c00223{transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);}
.m87_c00223{transform:matrix(0.211147,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211147,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211147,0.002323,-0.002750,0.249985,0,0);}
.m3f_c00223{transform:matrix(0.211577,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211577,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211577,0.002327,-0.002750,0.249985,0,0);}
.m97_c00223{transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);}
.me3_c00223{transform:matrix(0.212952,0.002342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212952,0.002342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212952,0.002342,-0.002750,0.249985,0,0);}
.me4_c00223{transform:matrix(0.212977,0.002343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212977,0.002343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212977,0.002343,-0.002750,0.249985,0,0);}
.m8b_c00223{transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);}
.m49_c00223{transform:matrix(0.213992,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213992,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213992,0.002354,-0.002750,0.249985,0,0);}
.me1_c00223{transform:matrix(0.214307,0.002357,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214307,0.002357,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214307,0.002357,-0.002750,0.249985,0,0);}
.m89_c00223{transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);}
.mcc_c00223{transform:matrix(0.215007,0.002365,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215007,0.002365,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215007,0.002365,-0.002750,0.249985,0,0);}
.m32_c00223{transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215397,0.002369,-0.002750,0.249985,0,0);}
.m5d_c00223{transform:matrix(0.216107,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216107,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216107,0.002377,-0.002750,0.249985,0,0);}
.m85_c00223{transform:matrix(0.216257,0.002379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216257,0.002379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216257,0.002379,-0.002750,0.249985,0,0);}
.m47_c00223{transform:matrix(0.216382,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216382,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216382,0.002380,-0.002750,0.249985,0,0);}
.m3e_c00223{transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);}
.me0_c00223{transform:matrix(0.217347,0.002391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217347,0.002391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217347,0.002391,-0.002750,0.249985,0,0);}
.m16_c00223{transform:matrix(0.218312,0.002401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218312,0.002401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218312,0.002401,-0.002750,0.249985,0,0);}
.m3b_c00223{transform:matrix(0.218377,0.002402,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218377,0.002402,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218377,0.002402,-0.002750,0.249985,0,0);}
.m38_c00223{transform:matrix(0.220587,0.002426,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220587,0.002426,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220587,0.002426,-0.002750,0.249985,0,0);}
.m60_c00223{transform:matrix(0.220662,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220662,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220662,0.002427,-0.002750,0.249985,0,0);}
.m43_c00223{transform:matrix(0.221817,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221817,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221817,0.002440,-0.002750,0.249985,0,0);}
.m8d_c00223{transform:matrix(0.222977,0.002453,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222977,0.002453,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222977,0.002453,-0.002750,0.249985,0,0);}
.m3_c00223{transform:matrix(0.223326,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223326,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223326,0.002457,-0.002750,0.249985,0,0);}
.m29_c00223{transform:matrix(0.225166,0.002477,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225166,0.002477,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225166,0.002477,-0.002750,0.249985,0,0);}
.m57_c00223{transform:matrix(0.225271,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225271,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225271,0.002478,-0.002750,0.249985,0,0);}
.m40_c00223{transform:matrix(0.225411,0.002480,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225411,0.002480,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225411,0.002480,-0.002750,0.249985,0,0);}
.m11_c00223{transform:matrix(0.227881,0.002507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227881,0.002507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227881,0.002507,-0.002750,0.249985,0,0);}
.m78_c00223{transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);}
.m3d_c00223{transform:matrix(0.228636,0.002515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228636,0.002515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228636,0.002515,-0.002750,0.249985,0,0);}
.m79_c00223{transform:matrix(0.228706,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228706,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228706,0.002516,-0.002750,0.249985,0,0);}
.mc4_c00223{transform:matrix(0.231386,0.002545,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231386,0.002545,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231386,0.002545,-0.002750,0.249985,0,0);}
.m56_c00223{transform:matrix(0.231401,0.002545,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231401,0.002545,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231401,0.002545,-0.002750,0.249985,0,0);}
.m5c_c00223{transform:matrix(0.231636,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231636,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231636,0.002548,-0.002750,0.249985,0,0);}
.m4d_c00223{transform:matrix(0.232171,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232171,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232171,0.002554,-0.002750,0.249985,0,0);}
.m44_c00223{transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);}
.m76_c00223{transform:matrix(0.238926,0.002628,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238926,0.002628,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238926,0.002628,-0.002750,0.249985,0,0);}
.m9_c00223{transform:matrix(0.240680,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240680,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240680,0.002647,-0.002750,0.249985,0,0);}
.md3_c00223{transform:matrix(0.242420,0.002667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242420,0.002667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242420,0.002667,-0.002750,0.249985,0,0);}
.m3a_c00223{transform:matrix(0.242825,0.002671,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242825,0.002671,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242825,0.002671,-0.002750,0.249985,0,0);}
.m5b_c00223{transform:matrix(0.243450,0.002678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243450,0.002678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243450,0.002678,-0.002750,0.249985,0,0);}
.m86_c00223{transform:matrix(0.243970,0.002684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243970,0.002684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243970,0.002684,-0.002750,0.249985,0,0);}
.m4a_c00223{transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);}
.m98_c00223{transform:matrix(0.244680,0.002691,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244680,0.002691,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244680,0.002691,-0.002750,0.249985,0,0);}
.m9e_c00223{transform:matrix(0.244825,0.002693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244825,0.002693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244825,0.002693,-0.002750,0.249985,0,0);}
.m9d_c00223{transform:matrix(0.244870,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244870,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244870,0.002694,-0.002750,0.249985,0,0);}
.m55_c00223{transform:matrix(0.244985,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244985,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244985,0.002695,-0.002750,0.249985,0,0);}
.m14_c00223{transform:matrix(0.246745,0.002714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246745,0.002714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246745,0.002714,-0.002750,0.249985,0,0);}
.m8_c00223{transform:matrix(0.248600,0.002735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248600,0.002735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248600,0.002735,-0.002750,0.249985,0,0);}
.m46_c00223{transform:matrix(0.251260,0.002764,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251260,0.002764,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251260,0.002764,-0.002750,0.249985,0,0);}
.m74_c00223{transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);}
.m45_c00223{transform:matrix(0.260314,0.002863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260314,0.002863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260314,0.002863,-0.002750,0.249985,0,0);}
.mc1_c00223{transform:matrix(0.265014,0.002915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265014,0.002915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265014,0.002915,-0.002750,0.249985,0,0);}
.md2_c00223{transform:matrix(0.266899,0.002936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266899,0.002936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266899,0.002936,-0.002750,0.249985,0,0);}
.m83_c00223{transform:matrix(0.268369,0.002952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268369,0.002952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268369,0.002952,-0.002750,0.249985,0,0);}
.mc6_c00223{transform:matrix(0.273543,0.003009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273543,0.003009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273543,0.003009,-0.002750,0.249985,0,0);}
.maa_c00223{transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);}
.m12_c00223{transform:matrix(0.305332,0.003359,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305332,0.003359,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305332,0.003359,-0.002750,0.249985,0,0);}
.m4b_c00223{transform:matrix(0.323115,0.003554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323115,0.003554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323115,0.003554,-0.002750,0.249985,0,0);}
.m8c_c00223{transform:matrix(0.327285,0.003600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.327285,0.003600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.327285,0.003600,-0.002750,0.249985,0,0);}
.m99_c00223{transform:matrix(0.330065,0.003631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330065,0.003631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330065,0.003631,-0.002750,0.249985,0,0);}
.m4_c00223{transform:matrix(0.353264,0.003886,-0.002750,0.249985,0,0);-ms-transform:matrix(0.353264,0.003886,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.353264,0.003886,-0.002750,0.249985,0,0);}
.m82_c00223{transform:matrix(0.369613,0.004066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.369613,0.004066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.369613,0.004066,-0.002750,0.249985,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:0.000000px;}
.fc0_c00223{color:transparent;}
.fsc_c00223{font-size:55.653367px;}
.fs8_c00223{font-size:57.753494px;}
.fsa_c00223{font-size:58.803557px;}
.fs11_c00223{font-size:59.853621px;}
.fs3_c00223{font-size:60.903684px;}
.fs2_c00223{font-size:61.953748px;}
.fsd_c00223{font-size:63.003811px;}
.fs9_c00223{font-size:64.053875px;}
.fse_c00223{font-size:65.103938px;}
.fs7_c00223{font-size:66.154002px;}
.fs6_c00223{font-size:67.204065px;}
.fs0_c00223{font-size:68.250000px;}
.fsf_c00223{font-size:68.254129px;}
.fs1_c00223{font-size:69.304193px;}
.fsb_c00223{font-size:70.354256px;}
.fs5_c00223{font-size:71.404320px;}
.fs10_c00223{font-size:72.454383px;}
.fs4_c00223{font-size:73.504447px;}
.fs12_c00223{font-size:76.654637px;}
.y0_c00223{bottom:0.000000px;}
.yf8_c00223{bottom:25.762978px;}
.yf7_c00223{bottom:25.763622px;}
.yf6_c00223{bottom:25.764325px;}
.yf3_c00223{bottom:25.764529px;}
.yf2_c00223{bottom:25.764600px;}
.yf5_c00223{bottom:25.764622px;}
.yf4_c00223{bottom:25.765026px;}
.yef_c00223{bottom:43.863030px;}
.yee_c00223{bottom:43.863147px;}
.yf0_c00223{bottom:43.863256px;}
.yed_c00223{bottom:43.863520px;}
.yf1_c00223{bottom:43.863529px;}
.yec_c00223{bottom:43.863984px;}
.yeb_c00223{bottom:43.864324px;}
.yea_c00223{bottom:61.063711px;}
.ye2_c00223{bottom:61.063873px;}
.ye3_c00223{bottom:61.064116px;}
.ye7_c00223{bottom:61.064125px;}
.ye4_c00223{bottom:61.064283px;}
.ye9_c00223{bottom:61.064415px;}
.ye6_c00223{bottom:61.064499px;}
.ye5_c00223{bottom:61.064512px;}
.ye8_c00223{bottom:61.064712px;}
.ye0_c00223{bottom:79.191993px;}
.ydd_c00223{bottom:79.192044px;}
.yde_c00223{bottom:79.192167px;}
.ydf_c00223{bottom:79.192276px;}
.ydc_c00223{bottom:79.192627px;}
.ye1_c00223{bottom:79.192656px;}
.ydb_c00223{bottom:79.193331px;}
.yda_c00223{bottom:79.193598px;}
.yd6_c00223{bottom:95.356993px;}
.yd8_c00223{bottom:95.356996px;}
.yd5_c00223{bottom:95.357020px;}
.yd4_c00223{bottom:95.357061px;}
.yd9_c00223{bottom:95.357523px;}
.yd7_c00223{bottom:95.357610px;}
.yd3_c00223{bottom:95.357764px;}
.yd2_c00223{bottom:95.358075px;}
.ycd_c00223{bottom:112.487980px;}
.ycb_c00223{bottom:112.488337px;}
.ycc_c00223{bottom:112.488474px;}
.yd1_c00223{bottom:112.488549px;}
.yce_c00223{bottom:112.488673px;}
.yca_c00223{bottom:112.488741px;}
.yd0_c00223{bottom:112.489099px;}
.ycf_c00223{bottom:112.489410px;}
.yc9_c00223{bottom:129.307045px;}
.yc2_c00223{bottom:129.307210px;}
.yc6_c00223{bottom:129.307293px;}
.yc7_c00223{bottom:129.307669px;}
.yc4_c00223{bottom:129.307710px;}
.yc8_c00223{bottom:129.307719px;}
.yc5_c00223{bottom:129.307756px;}
.yc3_c00223{bottom:129.307843px;}
.ybd_c00223{bottom:146.200299px;}
.ybc_c00223{bottom:146.200479px;}
.ybe_c00223{bottom:146.200525px;}
.ybb_c00223{bottom:146.200699px;}
.yb9_c00223{bottom:146.200726px;}
.ybf_c00223{bottom:146.200872px;}
.yba_c00223{bottom:146.201313px;}
.yc0_c00223{bottom:146.201401px;}
.yc1_c00223{bottom:146.201914px;}
.yb0_c00223{bottom:163.979368px;}
.yb1_c00223{bottom:163.979761px;}
.yb3_c00223{bottom:163.980111px;}
.yb2_c00223{bottom:163.980138px;}
.yb4_c00223{bottom:163.980787px;}
.yb5_c00223{bottom:163.981240px;}
.yb6_c00223{bottom:163.981917px;}
.yb8_c00223{bottom:163.982193px;}
.yb7_c00223{bottom:163.982460px;}
.ya7_c00223{bottom:182.071576px;}
.ya8_c00223{bottom:182.071609px;}
.yaf_c00223{bottom:182.071624px;}
.ya9_c00223{bottom:182.071732px;}
.yaa_c00223{bottom:182.072079px;}
.yae_c00223{bottom:182.072088px;}
.yab_c00223{bottom:182.072488px;}
.yad_c00223{bottom:182.072791px;}
.yac_c00223{bottom:182.072985px;}
.ya2_c00223{bottom:199.236348px;}
.ya3_c00223{bottom:199.236664px;}
.ya0_c00223{bottom:199.236715px;}
.ya1_c00223{bottom:199.236868px;}
.ya4_c00223{bottom:199.236981px;}
.ya5_c00223{bottom:199.237060px;}
.ya6_c00223{bottom:199.237107px;}
.y9f_c00223{bottom:214.833547px;}
.y9e_c00223{bottom:215.706375px;}
.y9d_c00223{bottom:216.179707px;}
.y9c_c00223{bottom:216.947634px;}
.y9b_c00223{bottom:217.281010px;}
.y9a_c00223{bottom:217.523986px;}
.y99_c00223{bottom:218.589279px;}
.y98_c00223{bottom:218.947863px;}
.y97_c00223{bottom:232.984822px;}
.y96_c00223{bottom:233.248932px;}
.y95_c00223{bottom:233.751852px;}
.y94_c00223{bottom:234.067792px;}
.y93_c00223{bottom:234.347710px;}
.y92_c00223{bottom:234.772512px;}
.y91_c00223{bottom:234.926851px;}
.y90_c00223{bottom:235.150432px;}
.y8f_c00223{bottom:235.417858px;}
.y8e_c00223{bottom:249.829555px;}
.y8d_c00223{bottom:250.441948px;}
.y8c_c00223{bottom:250.695645px;}
.y8b_c00223{bottom:251.284572px;}
.y8a_c00223{bottom:251.511535px;}
.y89_c00223{bottom:252.192558px;}
.y88_c00223{bottom:252.699555px;}
.y84_c00223{bottom:267.859534px;}
.y83_c00223{bottom:267.859545px;}
.y85_c00223{bottom:267.859911px;}
.y86_c00223{bottom:267.860244px;}
.y87_c00223{bottom:267.860877px;}
.y81_c00223{bottom:284.950522px;}
.y80_c00223{bottom:284.950593px;}
.y82_c00223{bottom:284.951079px;}
.y7f_c00223{bottom:284.951086px;}
.y7c_c00223{bottom:284.951151px;}
.y7e_c00223{bottom:284.951337px;}
.y7d_c00223{bottom:284.951544px;}
.y75_c00223{bottom:300.480595px;}
.y76_c00223{bottom:300.480748px;}
.y78_c00223{bottom:300.480798px;}
.y79_c00223{bottom:300.480877px;}
.y77_c00223{bottom:300.481155px;}
.y7a_c00223{bottom:300.481317px;}
.y7b_c00223{bottom:300.481393px;}
.y74_c00223{bottom:318.228628px;}
.y70_c00223{bottom:318.228889px;}
.y6e_c00223{bottom:318.229003px;}
.y6f_c00223{bottom:318.229020px;}
.y71_c00223{bottom:318.229296px;}
.y6d_c00223{bottom:318.229300px;}
.y73_c00223{bottom:318.229375px;}
.y72_c00223{bottom:318.229839px;}
.y6c_c00223{bottom:335.480451px;}
.y6b_c00223{bottom:335.480811px;}
.y6a_c00223{bottom:335.481288px;}
.y66_c00223{bottom:335.481625px;}
.y67_c00223{bottom:335.481672px;}
.y69_c00223{bottom:335.481691px;}
.y65_c00223{bottom:335.481876px;}
.y68_c00223{bottom:335.482365px;}
.y60_c00223{bottom:353.071027px;}
.y62_c00223{bottom:353.071123px;}
.y64_c00223{bottom:353.071176px;}
.y61_c00223{bottom:353.071270px;}
.y5e_c00223{bottom:353.071534px;}
.y63_c00223{bottom:353.071666px;}
.y5f_c00223{bottom:353.071671px;}
.y5b_c00223{bottom:370.280362px;}
.y5c_c00223{bottom:370.280772px;}
.y5a_c00223{bottom:370.280976px;}
.y5d_c00223{bottom:370.281508px;}
.y59_c00223{bottom:370.281633px;}
.y58_c00223{bottom:370.281690px;}
.y57_c00223{bottom:385.965040px;}
.y56_c00223{bottom:386.741856px;}
.y55_c00223{bottom:387.130041px;}
.y54_c00223{bottom:387.827565px;}
.y53_c00223{bottom:388.041624px;}
.y52_c00223{bottom:388.789396px;}
.y51_c00223{bottom:402.355878px;}
.y50_c00223{bottom:402.790263px;}
.y4f_c00223{bottom:403.175588px;}
.y4e_c00223{bottom:403.502184px;}
.y4d_c00223{bottom:404.518581px;}
.y4c_c00223{bottom:404.727574px;}
.y4b_c00223{bottom:405.827097px;}
.y4a_c00223{bottom:406.339857px;}
.y49_c00223{bottom:420.480664px;}
.y48_c00223{bottom:420.700989px;}
.y47_c00223{bottom:421.392916px;}
.y46_c00223{bottom:421.758177px;}
.y45_c00223{bottom:422.390985px;}
.y44_c00223{bottom:422.744431px;}
.y43_c00223{bottom:423.177804px;}
.y42_c00223{bottom:423.620202px;}
.y40_c00223{bottom:436.617010px;}
.y3d_c00223{bottom:436.617288px;}
.y3f_c00223{bottom:436.617534px;}
.y3c_c00223{bottom:436.617585px;}
.y41_c00223{bottom:436.617703px;}
.y3e_c00223{bottom:436.617874px;}
.y3b_c00223{bottom:436.618212px;}
.y33_c00223{bottom:455.021059px;}
.y34_c00223{bottom:455.021646px;}
.y37_c00223{bottom:455.021998px;}
.y35_c00223{bottom:455.022189px;}
.y3a_c00223{bottom:455.022218px;}
.y38_c00223{bottom:455.022631px;}
.y36_c00223{bottom:455.022672px;}
.y39_c00223{bottom:455.022708px;}
.y2e_c00223{bottom:472.416024px;}
.y31_c00223{bottom:472.416090px;}
.y2b_c00223{bottom:472.416511px;}
.y2f_c00223{bottom:472.416520px;}
.y32_c00223{bottom:472.416586px;}
.y2d_c00223{bottom:472.416667px;}
.y30_c00223{bottom:472.416793px;}
.y2c_c00223{bottom:472.416798px;}
.y2a_c00223{bottom:472.417018px;}
.y22_c00223{bottom:489.003028px;}
.y24_c00223{bottom:489.003168px;}
.y23_c00223{bottom:489.003348px;}
.y25_c00223{bottom:489.003488px;}
.y29_c00223{bottom:489.003723px;}
.y27_c00223{bottom:489.003823px;}
.y28_c00223{bottom:489.003900px;}
.y26_c00223{bottom:489.003954px;}
.y21_c00223{bottom:506.630818px;}
.y20_c00223{bottom:506.631505px;}
.y1f_c00223{bottom:506.632089px;}
.y1e_c00223{bottom:506.632582px;}
.y1c_c00223{bottom:506.632653px;}
.y1d_c00223{bottom:506.633179px;}
.y1b_c00223{bottom:506.633280px;}
.y1a_c00223{bottom:506.633443px;}
.y14_c00223{bottom:524.926767px;}
.y19_c00223{bottom:524.927076px;}
.y15_c00223{bottom:524.927190px;}
.y13_c00223{bottom:524.927320px;}
.y16_c00223{bottom:524.927326px;}
.y17_c00223{bottom:524.927463px;}
.y18_c00223{bottom:524.927629px;}
.y11_c00223{bottom:524.927691px;}
.y12_c00223{bottom:524.927904px;}
.y10_c00223{bottom:524.928304px;}
.yd_c00223{bottom:540.453528px;}
.ye_c00223{bottom:540.453924px;}
.yc_c00223{bottom:540.454261px;}
.yf_c00223{bottom:540.454360px;}
.ya_c00223{bottom:540.454468px;}
.yb_c00223{bottom:540.454741px;}
.y9_c00223{bottom:540.455155px;}
.y8_c00223{bottom:556.486416px;}
.y7_c00223{bottom:557.118762px;}
.y6_c00223{bottom:557.421751px;}
.y5_c00223{bottom:557.758780px;}
.y4_c00223{bottom:558.523621px;}
.y3_c00223{bottom:559.171180px;}
.y2_c00223{bottom:559.441500px;}
.y1_c00223{bottom:574.159500px;}
.he_c00223{height:55.653367px;}
.ha_c00223{height:57.753494px;}
.hc_c00223{height:58.803557px;}
.h13_c00223{height:59.853621px;}
.h5_c00223{height:60.903684px;}
.h4_c00223{height:61.953748px;}
.hf_c00223{height:63.003811px;}
.hb_c00223{height:64.053875px;}
.h10_c00223{height:65.103938px;}
.h9_c00223{height:66.154002px;}
.h8_c00223{height:67.204065px;}
.h2_c00223{height:68.250000px;}
.h11_c00223{height:68.254129px;}
.h3_c00223{height:69.304193px;}
.hd_c00223{height:70.354256px;}
.h7_c00223{height:71.404320px;}
.h12_c00223{height:72.454383px;}
.h6_c00223{height:73.504447px;}
.h14_c00223{height:76.654637px;}
.h0_c00223{height:616.140000px;}
.h1_c00223{height:616.500000px;}
.w0_c00223{width:378.540000px;}
.w1_c00223{width:378.750000px;}
.x0_c00223{left:0.000000px;}
.x4e_c00223{left:43.470681px;}
.x79_c00223{left:44.539545px;}
.x5b_c00223{left:45.731703px;}
.x51_c00223{left:47.249835px;}
.x1c_c00223{left:49.141863px;}
.x2_c00223{left:52.510500px;}
.x47_c00223{left:57.512592px;}
.x40_c00223{left:63.180998px;}
.x74_c00223{left:69.384152px;}
.x5c_c00223{left:71.374862px;}
.x58_c00223{left:73.088720px;}
.xf_c00223{left:74.252525px;}
.x3_c00223{left:77.085000px;}
.x28_c00223{left:82.079598px;}
.x4f_c00223{left:85.052714px;}
.x35_c00223{left:86.498058px;}
.x3d_c00223{left:88.831388px;}
.x32_c00223{left:90.352359px;}
.x6f_c00223{left:91.525823px;}
.x48_c00223{left:95.044130px;}
.x77_c00223{left:96.112685px;}
.x23_c00223{left:98.012346px;}
.x9_c00223{left:100.173935px;}
.x61_c00223{left:101.521158px;}
.x68_c00223{left:106.109436px;}
.x49_c00223{left:108.544263px;}
.x2d_c00223{left:110.431608px;}
.x24_c00223{left:113.942777px;}
.x50_c00223{left:115.564910px;}
.x70_c00223{left:117.177425px;}
.x1d_c00223{left:119.075828px;}
.x75_c00223{left:122.845206px;}
.x38_c00223{left:124.350021px;}
.x29_c00223{left:127.172059px;}
.x10_c00223{left:129.876257px;}
.x1e_c00223{left:130.957263px;}
.x4_c00223{left:135.954000px;}
.x18_c00223{left:138.517079px;}
.x65_c00223{left:141.213167px;}
.x80_c00223{left:142.285631px;}
.x53_c00223{left:143.913549px;}
.x39_c00223{left:145.719252px;}
.x5d_c00223{left:147.489854px;}
.x3e_c00223{left:150.125796px;}
.x11_c00223{left:151.477364px;}
.x41_c00223{left:153.637437px;}
.xa_c00223{left:156.337733px;}
.x66_c00223{left:157.683663px;}
.x2e_c00223{left:161.464779px;}
.x62_c00223{left:163.894199px;}
.xb_c00223{left:165.518838px;}
.x7d_c00223{left:168.476855px;}
.x12_c00223{left:173.348504px;}
.x4a_c00223{left:174.427733px;}
.x6c_c00223{left:175.771310px;}
.x25_c00223{left:179.826246px;}
.x59_c00223{left:181.329908px;}
.xc_c00223{left:185.769780px;}
.x1_c00223{left:186.840000px;}
.x55_c00223{left:188.085587px;}
.x4b_c00223{left:191.438295px;}
.x2f_c00223{left:193.597173px;}
.x71_c00223{left:197.372627px;}
.x1f_c00223{left:200.891228px;}
.x5_c00223{left:205.485000px;}
.x6d_c00223{left:207.632171px;}
.x69_c00223{left:209.794493px;}
.x7a_c00223{left:211.139208px;}
.x43_c00223{left:213.851768px;}
.x3a_c00223{left:215.404011px;}
.x13_c00223{left:217.360833px;}
.x19_c00223{left:218.442248px;}
.x7e_c00223{left:221.130224px;}
.x63_c00223{left:223.298393px;}
.x6a_c00223{left:229.235352px;}
.x44_c00223{left:234.642776px;}
.x6_c00223{left:236.124000px;}
.x1a_c00223{left:240.853454px;}
.x67_c00223{left:241.929360px;}
.x5e_c00223{left:243.375669px;}
.x14_c00223{left:245.442732px;}
.x56_c00223{left:246.943230px;}
.x4c_c00223{left:250.032390px;}
.x2a_c00223{left:251.919657px;}
.x3b_c00223{left:254.239440px;}
.x3f_c00223{left:255.702567px;}
.x30_c00223{left:257.590412px;}
.x54_c00223{left:260.021607px;}
.x78_c00223{left:261.092133px;}
.x1b_c00223{left:262.454561px;}
.x7_c00223{left:263.668500px;}
.x72_c00223{left:264.876294px;}
.x7b_c00223{left:266.762940px;}
.x76_c00223{left:268.922378px;}
.x57_c00223{left:272.325011px;}
.x15_c00223{left:273.524631px;}
.x26_c00223{left:274.871747px;}
.x5f_c00223{left:277.132047px;}
.x2b_c00223{left:279.461490px;}
.xd_c00223{left:283.245578px;}
.x20_c00223{left:284.325326px;}
.x73_c00223{left:285.667302px;}
.x16_c00223{left:288.374930px;}
.x5a_c00223{left:289.601096px;}
.x6e_c00223{left:292.958000px;}
.x27_c00223{left:295.392722px;}
.x52_c00223{left:296.473481px;}
.x21_c00223{left:298.365525px;}
.x36_c00223{left:303.384897px;}
.x64_c00223{left:304.573727px;}
.x7f_c00223{left:306.186020px;}
.x45_c00223{left:307.277054px;}
.x6b_c00223{left:312.129384px;}
.xe_c00223{left:314.027806px;}
.x33_c00223{left:315.517359px;}
.x46_c00223{left:317.538291px;}
.x8_c00223{left:321.154500px;}
.x17_c00223{left:323.747703px;}
.x31_c00223{left:326.174211px;}
.x42_c00223{left:327.257942px;}
.x3c_c00223{left:331.950798px;}
.x4d_c00223{left:333.197939px;}
.x37_c00223{left:334.418874px;}
.x34_c00223{left:335.546859px;}
.x22_c00223{left:336.977195px;}
.x7c_c00223{left:338.317086px;}
.x60_c00223{left:339.432485px;}
.x2c_c00223{left:342.104564px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fsc_c00223{font-size:49.469659pt;}
.fs8_c00223{font-size:51.336439pt;}
.fsa_c00223{font-size:52.269829pt;}
.fs11_c00223{font-size:53.203219pt;}
.fs3_c00223{font-size:54.136608pt;}
.fs2_c00223{font-size:55.069998pt;}
.fsd_c00223{font-size:56.003388pt;}
.fs9_c00223{font-size:56.936778pt;}
.fse_c00223{font-size:57.870167pt;}
.fs7_c00223{font-size:58.803557pt;}
.fs6_c00223{font-size:59.736947pt;}
.fs0_c00223{font-size:60.666667pt;}
.fsf_c00223{font-size:60.670337pt;}
.fs1_c00223{font-size:61.603727pt;}
.fsb_c00223{font-size:62.537116pt;}
.fs5_c00223{font-size:63.470506pt;}
.fs10_c00223{font-size:64.403896pt;}
.fs4_c00223{font-size:65.337286pt;}
.fs12_c00223{font-size:68.137455pt;}
.y0_c00223{bottom:0.000000pt;}
.yf8_c00223{bottom:22.900425pt;}
.yf7_c00223{bottom:22.900997pt;}
.yf6_c00223{bottom:22.901623pt;}
.yf3_c00223{bottom:22.901804pt;}
.yf2_c00223{bottom:22.901867pt;}
.yf5_c00223{bottom:22.901887pt;}
.yf4_c00223{bottom:22.902245pt;}
.yef_c00223{bottom:38.989360pt;}
.yee_c00223{bottom:38.989464pt;}
.yf0_c00223{bottom:38.989561pt;}
.yed_c00223{bottom:38.989796pt;}
.yf1_c00223{bottom:38.989804pt;}
.yec_c00223{bottom:38.990208pt;}
.yeb_c00223{bottom:38.990511pt;}
.yea_c00223{bottom:54.278855pt;}
.ye2_c00223{bottom:54.278999pt;}
.ye3_c00223{bottom:54.279215pt;}
.ye7_c00223{bottom:54.279223pt;}
.ye4_c00223{bottom:54.279363pt;}
.ye9_c00223{bottom:54.279480pt;}
.ye6_c00223{bottom:54.279555pt;}
.ye5_c00223{bottom:54.279567pt;}
.ye8_c00223{bottom:54.279744pt;}
.ye0_c00223{bottom:70.392883pt;}
.ydd_c00223{bottom:70.392928pt;}
.yde_c00223{bottom:70.393037pt;}
.ydf_c00223{bottom:70.393135pt;}
.ydc_c00223{bottom:70.393447pt;}
.ye1_c00223{bottom:70.393472pt;}
.ydb_c00223{bottom:70.394072pt;}
.yda_c00223{bottom:70.394309pt;}
.yd6_c00223{bottom:84.761772pt;}
.yd8_c00223{bottom:84.761775pt;}
.yd5_c00223{bottom:84.761796pt;}
.yd4_c00223{bottom:84.761832pt;}
.yd9_c00223{bottom:84.762243pt;}
.yd7_c00223{bottom:84.762320pt;}
.yd3_c00223{bottom:84.762457pt;}
.yd2_c00223{bottom:84.762733pt;}
.ycd_c00223{bottom:99.989316pt;}
.ycb_c00223{bottom:99.989633pt;}
.ycc_c00223{bottom:99.989755pt;}
.yd1_c00223{bottom:99.989821pt;}
.yce_c00223{bottom:99.989932pt;}
.yca_c00223{bottom:99.989992pt;}
.yd0_c00223{bottom:99.990311pt;}
.ycf_c00223{bottom:99.990587pt;}
.yc9_c00223{bottom:114.939596pt;}
.yc2_c00223{bottom:114.939743pt;}
.yc6_c00223{bottom:114.939816pt;}
.yc7_c00223{bottom:114.940151pt;}
.yc4_c00223{bottom:114.940187pt;}
.yc8_c00223{bottom:114.940195pt;}
.yc5_c00223{bottom:114.940228pt;}
.yc3_c00223{bottom:114.940305pt;}
.ybd_c00223{bottom:129.955821pt;}
.ybc_c00223{bottom:129.955981pt;}
.ybe_c00223{bottom:129.956023pt;}
.ybb_c00223{bottom:129.956177pt;}
.yb9_c00223{bottom:129.956201pt;}
.ybf_c00223{bottom:129.956331pt;}
.yba_c00223{bottom:129.956723pt;}
.yc0_c00223{bottom:129.956801pt;}
.yc1_c00223{bottom:129.957257pt;}
.yb0_c00223{bottom:145.759439pt;}
.yb1_c00223{bottom:145.759788pt;}
.yb3_c00223{bottom:145.760099pt;}
.yb2_c00223{bottom:145.760123pt;}
.yb4_c00223{bottom:145.760700pt;}
.yb5_c00223{bottom:145.761103pt;}
.yb6_c00223{bottom:145.761704pt;}
.yb8_c00223{bottom:145.761949pt;}
.yb7_c00223{bottom:145.762187pt;}
.ya7_c00223{bottom:161.841401pt;}
.ya8_c00223{bottom:161.841431pt;}
.yaf_c00223{bottom:161.841444pt;}
.ya9_c00223{bottom:161.841540pt;}
.yaa_c00223{bottom:161.841848pt;}
.yae_c00223{bottom:161.841856pt;}
.yab_c00223{bottom:161.842212pt;}
.yad_c00223{bottom:161.842481pt;}
.yac_c00223{bottom:161.842653pt;}
.ya2_c00223{bottom:177.098976pt;}
.ya3_c00223{bottom:177.099257pt;}
.ya0_c00223{bottom:177.099303pt;}
.ya1_c00223{bottom:177.099439pt;}
.ya4_c00223{bottom:177.099539pt;}
.ya5_c00223{bottom:177.099609pt;}
.ya6_c00223{bottom:177.099651pt;}
.y9f_c00223{bottom:190.963153pt;}
.y9e_c00223{bottom:191.739000pt;}
.y9d_c00223{bottom:192.159740pt;}
.y9c_c00223{bottom:192.842341pt;}
.y9b_c00223{bottom:193.138676pt;}
.y9a_c00223{bottom:193.354655pt;}
.y99_c00223{bottom:194.301581pt;}
.y98_c00223{bottom:194.620323pt;}
.y97_c00223{bottom:207.097620pt;}
.y96_c00223{bottom:207.332384pt;}
.y95_c00223{bottom:207.779424pt;}
.y94_c00223{bottom:208.060260pt;}
.y93_c00223{bottom:208.309076pt;}
.y92_c00223{bottom:208.686677pt;}
.y91_c00223{bottom:208.823868pt;}
.y90_c00223{bottom:209.022607pt;}
.y8f_c00223{bottom:209.260319pt;}
.y8e_c00223{bottom:222.070716pt;}
.y8d_c00223{bottom:222.615065pt;}
.y8c_c00223{bottom:222.840573pt;}
.y8b_c00223{bottom:223.364064pt;}
.y8a_c00223{bottom:223.565809pt;}
.y89_c00223{bottom:224.171163pt;}
.y88_c00223{bottom:224.621827pt;}
.y84_c00223{bottom:238.097364pt;}
.y83_c00223{bottom:238.097373pt;}
.y85_c00223{bottom:238.097699pt;}
.y86_c00223{bottom:238.097995pt;}
.y87_c00223{bottom:238.098557pt;}
.y81_c00223{bottom:253.289353pt;}
.y80_c00223{bottom:253.289416pt;}
.y82_c00223{bottom:253.289848pt;}
.y7f_c00223{bottom:253.289855pt;}
.y7c_c00223{bottom:253.289912pt;}
.y7e_c00223{bottom:253.290077pt;}
.y7d_c00223{bottom:253.290261pt;}
.y75_c00223{bottom:267.093863pt;}
.y76_c00223{bottom:267.093999pt;}
.y78_c00223{bottom:267.094043pt;}
.y79_c00223{bottom:267.094113pt;}
.y77_c00223{bottom:267.094360pt;}
.y7a_c00223{bottom:267.094504pt;}
.y7b_c00223{bottom:267.094572pt;}
.y74_c00223{bottom:282.869892pt;}
.y70_c00223{bottom:282.870124pt;}
.y6e_c00223{bottom:282.870225pt;}
.y6f_c00223{bottom:282.870240pt;}
.y71_c00223{bottom:282.870485pt;}
.y6d_c00223{bottom:282.870489pt;}
.y73_c00223{bottom:282.870556pt;}
.y72_c00223{bottom:282.870968pt;}
.y6c_c00223{bottom:298.204845pt;}
.y6b_c00223{bottom:298.205165pt;}
.y6a_c00223{bottom:298.205589pt;}
.y66_c00223{bottom:298.205889pt;}
.y67_c00223{bottom:298.205931pt;}
.y69_c00223{bottom:298.205948pt;}
.y65_c00223{bottom:298.206112pt;}
.y68_c00223{bottom:298.206547pt;}
.y60_c00223{bottom:313.840913pt;}
.y62_c00223{bottom:313.840999pt;}
.y64_c00223{bottom:313.841045pt;}
.y61_c00223{bottom:313.841129pt;}
.y5e_c00223{bottom:313.841364pt;}
.y63_c00223{bottom:313.841481pt;}
.y5f_c00223{bottom:313.841485pt;}
.y5b_c00223{bottom:329.138100pt;}
.y5c_c00223{bottom:329.138464pt;}
.y5a_c00223{bottom:329.138645pt;}
.y5d_c00223{bottom:329.139119pt;}
.y59_c00223{bottom:329.139229pt;}
.y58_c00223{bottom:329.139280pt;}
.y57_c00223{bottom:343.080036pt;}
.y56_c00223{bottom:343.770539pt;}
.y55_c00223{bottom:344.115592pt;}
.y54_c00223{bottom:344.735613pt;}
.y53_c00223{bottom:344.925888pt;}
.y52_c00223{bottom:345.590575pt;}
.y51_c00223{bottom:357.649669pt;}
.y50_c00223{bottom:358.035789pt;}
.y4f_c00223{bottom:358.378300pt;}
.y4e_c00223{bottom:358.668608pt;}
.y4d_c00223{bottom:359.572072pt;}
.y4c_c00223{bottom:359.757844pt;}
.y4b_c00223{bottom:360.735197pt;}
.y4a_c00223{bottom:361.190984pt;}
.y49_c00223{bottom:373.760591pt;}
.y48_c00223{bottom:373.956435pt;}
.y47_c00223{bottom:374.571481pt;}
.y46_c00223{bottom:374.896157pt;}
.y45_c00223{bottom:375.458653pt;}
.y44_c00223{bottom:375.772828pt;}
.y43_c00223{bottom:376.158048pt;}
.y42_c00223{bottom:376.551291pt;}
.y40_c00223{bottom:388.104009pt;}
.y3d_c00223{bottom:388.104256pt;}
.y3f_c00223{bottom:388.104475pt;}
.y3c_c00223{bottom:388.104520pt;}
.y41_c00223{bottom:388.104625pt;}
.y3e_c00223{bottom:388.104777pt;}
.y3b_c00223{bottom:388.105077pt;}
.y33_c00223{bottom:404.463164pt;}
.y34_c00223{bottom:404.463685pt;}
.y37_c00223{bottom:404.463999pt;}
.y35_c00223{bottom:404.464168pt;}
.y3a_c00223{bottom:404.464193pt;}
.y38_c00223{bottom:404.464561pt;}
.y36_c00223{bottom:404.464597pt;}
.y39_c00223{bottom:404.464629pt;}
.y2e_c00223{bottom:419.925355pt;}
.y31_c00223{bottom:419.925413pt;}
.y2b_c00223{bottom:419.925788pt;}
.y2f_c00223{bottom:419.925796pt;}
.y32_c00223{bottom:419.925855pt;}
.y2d_c00223{bottom:419.925927pt;}
.y30_c00223{bottom:419.926039pt;}
.y2c_c00223{bottom:419.926043pt;}
.y2a_c00223{bottom:419.926239pt;}
.y22_c00223{bottom:434.669359pt;}
.y24_c00223{bottom:434.669483pt;}
.y23_c00223{bottom:434.669643pt;}
.y25_c00223{bottom:434.669767pt;}
.y29_c00223{bottom:434.669976pt;}
.y27_c00223{bottom:434.670065pt;}
.y28_c00223{bottom:434.670133pt;}
.y26_c00223{bottom:434.670181pt;}
.y21_c00223{bottom:450.338505pt;}
.y20_c00223{bottom:450.339116pt;}
.y1f_c00223{bottom:450.339635pt;}
.y1e_c00223{bottom:450.340073pt;}
.y1c_c00223{bottom:450.340136pt;}
.y1d_c00223{bottom:450.340604pt;}
.y1b_c00223{bottom:450.340693pt;}
.y1a_c00223{bottom:450.340839pt;}
.y14_c00223{bottom:466.601571pt;}
.y19_c00223{bottom:466.601845pt;}
.y15_c00223{bottom:466.601947pt;}
.y13_c00223{bottom:466.602063pt;}
.y16_c00223{bottom:466.602068pt;}
.y17_c00223{bottom:466.602189pt;}
.y18_c00223{bottom:466.602337pt;}
.y11_c00223{bottom:466.602392pt;}
.y12_c00223{bottom:466.602581pt;}
.y10_c00223{bottom:466.602937pt;}
.yd_c00223{bottom:480.403136pt;}
.ye_c00223{bottom:480.403488pt;}
.yc_c00223{bottom:480.403788pt;}
.yf_c00223{bottom:480.403876pt;}
.ya_c00223{bottom:480.403972pt;}
.yb_c00223{bottom:480.404215pt;}
.y9_c00223{bottom:480.404583pt;}
.y8_c00223{bottom:494.654592pt;}
.y7_c00223{bottom:495.216677pt;}
.y6_c00223{bottom:495.486001pt;}
.y5_c00223{bottom:495.785583pt;}
.y4_c00223{bottom:496.465441pt;}
.y3_c00223{bottom:497.041049pt;}
.y2_c00223{bottom:497.281333pt;}
.y1_c00223{bottom:510.364000pt;}
.he_c00223{height:49.469659pt;}
.ha_c00223{height:51.336439pt;}
.hc_c00223{height:52.269829pt;}
.h13_c00223{height:53.203219pt;}
.h5_c00223{height:54.136608pt;}
.h4_c00223{height:55.069998pt;}
.hf_c00223{height:56.003388pt;}
.hb_c00223{height:56.936778pt;}
.h10_c00223{height:57.870167pt;}
.h9_c00223{height:58.803557pt;}
.h8_c00223{height:59.736947pt;}
.h2_c00223{height:60.666667pt;}
.h11_c00223{height:60.670337pt;}
.h3_c00223{height:61.603727pt;}
.hd_c00223{height:62.537116pt;}
.h7_c00223{height:63.470506pt;}
.h12_c00223{height:64.403896pt;}
.h6_c00223{height:65.337286pt;}
.h14_c00223{height:68.137455pt;}
.h0_c00223{height:547.680000pt;}
.h1_c00223{height:548.000000pt;}
.w0_c00223{width:336.480000pt;}
.w1_c00223{width:336.666667pt;}
.x0_c00223{left:0.000000pt;}
.x4e_c00223{left:38.640605pt;}
.x79_c00223{left:39.590707pt;}
.x5b_c00223{left:40.650403pt;}
.x51_c00223{left:41.999853pt;}
.x1c_c00223{left:43.681656pt;}
.x2_c00223{left:46.676000pt;}
.x47_c00223{left:51.122304pt;}
.x40_c00223{left:56.160887pt;}
.x74_c00223{left:61.674801pt;}
.x5c_c00223{left:63.444321pt;}
.x58_c00223{left:64.967751pt;}
.xf_c00223{left:66.002244pt;}
.x3_c00223{left:68.520000pt;}
.x28_c00223{left:72.959643pt;}
.x4f_c00223{left:75.602412pt;}
.x35_c00223{left:76.887163pt;}
.x3d_c00223{left:78.961233pt;}
.x32_c00223{left:80.313208pt;}
.x6f_c00223{left:81.356287pt;}
.x48_c00223{left:84.483671pt;}
.x77_c00223{left:85.433497pt;}
.x23_c00223{left:87.122085pt;}
.x9_c00223{left:89.043497pt;}
.x61_c00223{left:90.241029pt;}
.x68_c00223{left:94.319499pt;}
.x49_c00223{left:96.483789pt;}
.x2d_c00223{left:98.161429pt;}
.x24_c00223{left:101.282468pt;}
.x50_c00223{left:102.724364pt;}
.x70_c00223{left:104.157711pt;}
.x1d_c00223{left:105.845180pt;}
.x75_c00223{left:109.195739pt;}
.x38_c00223{left:110.533352pt;}
.x29_c00223{left:113.041831pt;}
.x10_c00223{left:115.445561pt;}
.x1e_c00223{left:116.406456pt;}
.x4_c00223{left:120.848000pt;}
.x18_c00223{left:123.126292pt;}
.x65_c00223{left:125.522815pt;}
.x80_c00223{left:126.476116pt;}
.x53_c00223{left:127.923155pt;}
.x39_c00223{left:129.528224pt;}
.x5d_c00223{left:131.102092pt;}
.x3e_c00223{left:133.445152pt;}
.x11_c00223{left:134.646545pt;}
.x41_c00223{left:136.566611pt;}
.xa_c00223{left:138.966873pt;}
.x66_c00223{left:140.163256pt;}
.x2e_c00223{left:143.524248pt;}
.x62_c00223{left:145.683732pt;}
.xb_c00223{left:147.127856pt;}
.x7d_c00223{left:149.757204pt;}
.x12_c00223{left:154.087559pt;}
.x4a_c00223{left:155.046873pt;}
.x6c_c00223{left:156.241164pt;}
.x25_c00223{left:159.845552pt;}
.x59_c00223{left:161.182140pt;}
.xc_c00223{left:165.128693pt;}
.x1_c00223{left:166.080000pt;}
.x55_c00223{left:167.187188pt;}
.x4b_c00223{left:170.167373pt;}
.x2f_c00223{left:172.086376pt;}
.x71_c00223{left:175.442335pt;}
.x1f_c00223{left:178.569980pt;}
.x5_c00223{left:182.653333pt;}
.x6d_c00223{left:184.561929pt;}
.x69_c00223{left:186.483993pt;}
.x7a_c00223{left:187.679296pt;}
.x43_c00223{left:190.090460pt;}
.x3a_c00223{left:191.470232pt;}
.x13_c00223{left:193.209629pt;}
.x19_c00223{left:194.170887pt;}
.x7e_c00223{left:196.560199pt;}
.x63_c00223{left:198.487460pt;}
.x6a_c00223{left:203.764757pt;}
.x44_c00223{left:208.571356pt;}
.x6_c00223{left:209.888000pt;}
.x1a_c00223{left:214.091959pt;}
.x67_c00223{left:215.048320pt;}
.x5e_c00223{left:216.333928pt;}
.x14_c00223{left:218.171317pt;}
.x56_c00223{left:219.505093pt;}
.x4c_c00223{left:222.251013pt;}
.x2a_c00223{left:223.928584pt;}
.x3b_c00223{left:225.990613pt;}
.x3f_c00223{left:227.291171pt;}
.x30_c00223{left:228.969255pt;}
.x54_c00223{left:231.130317pt;}
.x78_c00223{left:232.081896pt;}
.x1b_c00223{left:233.292943pt;}
.x7_c00223{left:234.372000pt;}
.x72_c00223{left:235.445595pt;}
.x7b_c00223{left:237.122613pt;}
.x76_c00223{left:239.042113pt;}
.x57_c00223{left:242.066676pt;}
.x15_c00223{left:243.133005pt;}
.x26_c00223{left:244.330441pt;}
.x5f_c00223{left:246.339597pt;}
.x2b_c00223{left:248.410213pt;}
.xd_c00223{left:251.773847pt;}
.x20_c00223{left:252.733623pt;}
.x73_c00223{left:253.926491pt;}
.x16_c00223{left:256.333271pt;}
.x5a_c00223{left:257.423196pt;}
.x6e_c00223{left:260.407111pt;}
.x27_c00223{left:262.571308pt;}
.x52_c00223{left:263.531983pt;}
.x21_c00223{left:265.213800pt;}
.x36_c00223{left:269.675464pt;}
.x64_c00223{left:270.732201pt;}
.x7f_c00223{left:272.165351pt;}
.x45_c00223{left:273.135159pt;}
.x6b_c00223{left:277.448341pt;}
.xe_c00223{left:279.135828pt;}
.x33_c00223{left:280.459875pt;}
.x46_c00223{left:282.256259pt;}
.x8_c00223{left:285.470667pt;}
.x17_c00223{left:287.775736pt;}
.x31_c00223{left:289.932632pt;}
.x42_c00223{left:290.895948pt;}
.x3c_c00223{left:295.067376pt;}
.x4d_c00223{left:296.175945pt;}
.x37_c00223{left:297.261221pt;}
.x34_c00223{left:298.263875pt;}
.x22_c00223{left:299.535284pt;}
.x7c_c00223{left:300.726299pt;}
.x60_c00223{left:301.717764pt;}
.x2c_c00223{left:304.092945pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00224 {
    display:none;
  }
  .loading-indicator_c00224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00224 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00224 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00224" -> "#page-container .classname_c00224")
 */
.pf_c00224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00224 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00224 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00224 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00224 {overflow:visible;}
  }
}
.c_c00224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00224 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00224:after { /* webkit #35443 */
  content: '';
}
.t_c00224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00224 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00224 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00224 { /* info for Javascript */
  display:none;
}
.l_c00224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00224:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00224 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00224.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c00224{transform:matrix(0.145290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145290,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{transform:matrix(0.145340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145340,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.145990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145990,0.000000,0.000000,0.250000,0,0);}
.m3c_c00224{transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);}
.m8c_c00224{transform:matrix(0.146690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146690,0.000000,0.000000,0.250000,0,0);}
.m95_c00224{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m29_c00224{transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);}
.m24_c00224{transform:matrix(0.148520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148520,0.000000,0.000000,0.250000,0,0);}
.m72_c00224{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m98_c00224{transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);}
.m87_c00224{transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);}
.ma4_c00224{transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);}
.m8f_c00224{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m8b_c00224{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m85_c00224{transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155055,0.000000,0.000000,0.250000,0,0);}
.ma1_c00224{transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);}
.m28_c00224{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.m92_c00224{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m4a_c00224{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.m9e_c00224{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m77_c00224{transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);}
.m83_c00224{transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);}
.m75_c00224{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m5c_c00224{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m27_c00224{transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);}
.m9d_c00224{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.ma0_c00224{transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);}
.m97_c00224{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.m39_c00224{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m23_c00224{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mcd_c00224{transform:matrix(0.166406,0.002496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166406,0.002496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166406,0.002496,-0.003750,0.249972,0,0);}
.mf8_c00224{transform:matrix(0.166456,0.002497,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166456,0.002497,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166456,0.002497,-0.003750,0.249972,0,0);}
.m3b_c00224{transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);}
.mf3_c00224{transform:matrix(0.167741,0.002516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167741,0.002516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167741,0.002516,-0.003750,0.249972,0,0);}
.m48_c00224{transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169460,0.000000,0.000000,0.250000,0,0);}
.m82_c00224{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00224{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00224{transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);}
.mbb_c00224{transform:matrix(0.171231,0.002568,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171231,0.002568,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171231,0.002568,-0.003750,0.249972,0,0);}
.maa_c00224{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.ma3_c00224{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m86_c00224{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m8a_c00224{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m2b_c00224{transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);}
.m5b_c00224{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m37_c00224{transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);}
.m88_c00224{transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);}
.me9_c00224{transform:matrix(0.174120,0.002612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174120,0.002612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174120,0.002612,-0.003750,0.249972,0,0);}
.m6d_c00224{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00224{transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);}
.m3d_c00224{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);}
.m52_c00224{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);}
.mbe_c00224{transform:matrix(0.176000,0.002640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176000,0.002640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176000,0.002640,-0.003750,0.249972,0,0);}
.m90_c00224{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m3_c00224{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.md8_c00224{transform:matrix(0.177320,0.002660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177320,0.002660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177320,0.002660,-0.003750,0.249972,0,0);}
.m55_c00224{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00224{transform:matrix(0.177555,0.002663,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177555,0.002663,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177555,0.002663,-0.003750,0.249972,0,0);}
.m78_c00224{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.mdb_c00224{transform:matrix(0.178890,0.002683,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178890,0.002683,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178890,0.002683,-0.003750,0.249972,0,0);}
.m7a_c00224{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.mf5_c00224{transform:matrix(0.179105,0.002687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179105,0.002687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179105,0.002687,-0.003750,0.249972,0,0);}
.m7f_c00224{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00224{transform:matrix(0.179905,0.002699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179905,0.002699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179905,0.002699,-0.003750,0.249972,0,0);}
.mab_c00224{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.m36_c00224{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.mb5_c00224{transform:matrix(0.180165,0.002702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180165,0.002702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180165,0.002702,-0.003750,0.249972,0,0);}
.me3_c00224{transform:matrix(0.180530,0.002708,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180530,0.002708,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180530,0.002708,-0.003750,0.249972,0,0);}
.m9f_c00224{transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);}
.m73_c00224{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m1d_c00224{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.m44_c00224{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.m4f_c00224{transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);}
.m6f_c00224{transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);}
.mdf_c00224{transform:matrix(0.181820,0.002727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181820,0.002727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181820,0.002727,-0.003750,0.249972,0,0);}
.m93_c00224{transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);}
.m91_c00224{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m80_c00224{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.m58_c00224{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m33_c00224{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m74_c00224{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m9c_c00224{transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m3a_c00224{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.m89_c00224{transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);}
.m84_c00224{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m7b_c00224{transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);}
.m3f_c00224{transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);}
.m4d_c00224{transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);}
.mf4_c00224{transform:matrix(0.185554,0.002783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185554,0.002783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185554,0.002783,-0.003750,0.249972,0,0);}
.m46_c00224{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.mc7_c00224{transform:matrix(0.186244,0.002794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186244,0.002794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186244,0.002794,-0.003750,0.249972,0,0);}
.m76_c00224{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.mcc_c00224{transform:matrix(0.187084,0.002806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187084,0.002806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187084,0.002806,-0.003750,0.249972,0,0);}
.ma6_c00224{transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);}
.m9a_c00224{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);}
.m4e_c00224{transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);}
.m56_c00224{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.mda_c00224{transform:matrix(0.188384,0.002826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188384,0.002826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188384,0.002826,-0.003750,0.249972,0,0);}
.mcb_c00224{transform:matrix(0.189094,0.002836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189094,0.002836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189094,0.002836,-0.003750,0.249972,0,0);}
.m7e_c00224{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00224{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.ma8_c00224{transform:matrix(0.189765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189765,0.000000,0.000000,0.250000,0,0);}
.mb8_c00224{transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190269,0.002854,-0.003750,0.249972,0,0);}
.m9b_c00224{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mec_c00224{transform:matrix(0.191893,0.002878,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191893,0.002878,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191893,0.002878,-0.003750,0.249972,0,0);}
.m4c_c00224{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.mb9_c00224{transform:matrix(0.192438,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192438,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192438,0.002887,-0.003750,0.249972,0,0);}
.mb7_c00224{transform:matrix(0.192783,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192783,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192783,0.002892,-0.003750,0.249972,0,0);}
.me7_c00224{transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);}
.mc1_c00224{transform:matrix(0.194488,0.002917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194488,0.002917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194488,0.002917,-0.003750,0.249972,0,0);}
.ma5_c00224{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.m42_c00224{transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);}
.mfa_c00224{transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195648,0.002935,-0.003750,0.249972,0,0);}
.m22_c00224{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.mf6_c00224{transform:matrix(0.196068,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196068,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196068,0.002941,-0.003750,0.249972,0,0);}
.m18_c00224{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.ma7_c00224{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m53_c00224{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m94_c00224{transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);}
.md6_c00224{transform:matrix(0.197018,0.002955,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197018,0.002955,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197018,0.002955,-0.003750,0.249972,0,0);}
.mc0_c00224{transform:matrix(0.197678,0.002965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197678,0.002965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197678,0.002965,-0.003750,0.249972,0,0);}
.m6a_c00224{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.mf9_c00224{transform:matrix(0.198038,0.002971,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198038,0.002971,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198038,0.002971,-0.003750,0.249972,0,0);}
.m65_c00224{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m6e_c00224{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.mca_c00224{transform:matrix(0.200167,0.003003,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200167,0.003003,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200167,0.003003,-0.003750,0.249972,0,0);}
.m79_c00224{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.mad_c00224{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00224{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m2e_c00224{transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200965,0.000000,0.000000,0.250000,0,0);}
.mc4_c00224{transform:matrix(0.201077,0.003016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201077,0.003016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201077,0.003016,-0.003750,0.249972,0,0);}
.m96_c00224{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00224{transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);}
.mc3_c00224{transform:matrix(0.202307,0.003035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202307,0.003035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202307,0.003035,-0.003750,0.249972,0,0);}
.m13_c00224{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.mb4_c00224{transform:matrix(0.202757,0.003041,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202757,0.003041,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202757,0.003041,-0.003750,0.249972,0,0);}
.mea_c00224{transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);}
.me0_c00224{transform:matrix(0.202842,0.003043,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202842,0.003043,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202842,0.003043,-0.003750,0.249972,0,0);}
.m30_c00224{transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);}
.md_c00224{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.me4_c00224{transform:matrix(0.204157,0.003062,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204157,0.003062,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204157,0.003062,-0.003750,0.249972,0,0);}
.m71_c00224{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m54_c00224{transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);}
.me8_c00224{transform:matrix(0.204577,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204577,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204577,0.003069,-0.003750,0.249972,0,0);}
.mce_c00224{transform:matrix(0.204672,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204672,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204672,0.003070,-0.003750,0.249972,0,0);}
.mb2_c00224{transform:matrix(0.204737,0.003071,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204737,0.003071,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204737,0.003071,-0.003750,0.249972,0,0);}
.m70_c00224{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m5f_c00224{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m60_c00224{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m5e_c00224{transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);}
.me1_c00224{transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);}
.mb1_c00224{transform:matrix(0.206007,0.003090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206007,0.003090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206007,0.003090,-0.003750,0.249972,0,0);}
.mc8_c00224{transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);}
.m81_c00224{transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);}
.m19_c00224{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m40_c00224{transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);}
.mc2_c00224{transform:matrix(0.206762,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206762,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206762,0.003101,-0.003750,0.249972,0,0);}
.mdd_c00224{transform:matrix(0.208462,0.003127,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208462,0.003127,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208462,0.003127,-0.003750,0.249972,0,0);}
.m41_c00224{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.md7_c00224{transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209351,0.003140,-0.003750,0.249972,0,0);}
.mc6_c00224{transform:matrix(0.209406,0.003141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209406,0.003141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209406,0.003141,-0.003750,0.249972,0,0);}
.m7c_c00224{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.m2d_c00224{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m1b_c00224{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.mb3_c00224{transform:matrix(0.210416,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210416,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210416,0.003156,-0.003750,0.249972,0,0);}
.mb0_c00224{transform:matrix(0.211041,0.003166,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211041,0.003166,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211041,0.003166,-0.003750,0.249972,0,0);}
.m6c_c00224{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.m20_c00224{transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);}
.mcf_c00224{transform:matrix(0.211806,0.003177,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211806,0.003177,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211806,0.003177,-0.003750,0.249972,0,0);}
.m1e_c00224{transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);}
.meb_c00224{transform:matrix(0.212556,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212556,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212556,0.003188,-0.003750,0.249972,0,0);}
.m4b_c00224{transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);}
.mbc_c00224{transform:matrix(0.214186,0.003213,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214186,0.003213,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214186,0.003213,-0.003750,0.249972,0,0);}
.m49_c00224{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);}
.mac_c00224{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m34_c00224{transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.md0_c00224{transform:matrix(0.217361,0.003260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217361,0.003260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217361,0.003260,-0.003750,0.249972,0,0);}
.ma9_c00224{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.me5_c00224{transform:matrix(0.217930,0.003269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217930,0.003269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217930,0.003269,-0.003750,0.249972,0,0);}
.mb6_c00224{transform:matrix(0.217980,0.003270,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217980,0.003270,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217980,0.003270,-0.003750,0.249972,0,0);}
.m9_c00224{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.mfb_c00224{transform:matrix(0.218965,0.003284,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218965,0.003284,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218965,0.003284,-0.003750,0.249972,0,0);}
.m59_c00224{transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);}
.mbf_c00224{transform:matrix(0.219390,0.003291,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219390,0.003291,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219390,0.003291,-0.003750,0.249972,0,0);}
.mdc_c00224{transform:matrix(0.219885,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219885,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219885,0.003298,-0.003750,0.249972,0,0);}
.m11_c00224{transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);}
.maf_c00224{transform:matrix(0.222365,0.003335,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222365,0.003335,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222365,0.003335,-0.003750,0.249972,0,0);}
.mae_c00224{transform:matrix(0.222720,0.003341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222720,0.003341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222720,0.003341,-0.003750,0.249972,0,0);}
.m31_c00224{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m1c_c00224{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.m51_c00224{transform:matrix(0.225545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225545,0.000000,0.000000,0.250000,0,0);}
.m21_c00224{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.mf2_c00224{transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);}
.m67_c00224{transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);}
.m32_c00224{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m38_c00224{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00224{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.mf1_c00224{transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);}
.m45_c00224{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.mba_c00224{transform:matrix(0.227079,0.003406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227079,0.003406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227079,0.003406,-0.003750,0.249972,0,0);}
.m5d_c00224{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md1_c00224{transform:matrix(0.227584,0.003414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227584,0.003414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227584,0.003414,-0.003750,0.249972,0,0);}
.md9_c00224{transform:matrix(0.227669,0.003415,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227669,0.003415,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227669,0.003415,-0.003750,0.249972,0,0);}
.m66_c00224{transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229355,0.000000,0.000000,0.250000,0,0);}
.m63_c00224{transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);}
.m17_c00224{transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);}
.mde_c00224{transform:matrix(0.230709,0.003461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230709,0.003461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230709,0.003461,-0.003750,0.249972,0,0);}
.m26_c00224{transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);}
.m35_c00224{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m61_c00224{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m2c_c00224{transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);}
.m25_c00224{transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);}
.md4_c00224{transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);}
.md2_c00224{transform:matrix(0.234434,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234434,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234434,0.003517,-0.003750,0.249972,0,0);}
.mef_c00224{transform:matrix(0.234904,0.003524,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234904,0.003524,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234904,0.003524,-0.003750,0.249972,0,0);}
.m1f_c00224{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m68_c00224{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);}
.mf0_c00224{transform:matrix(0.240003,0.003600,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240003,0.003600,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240003,0.003600,-0.003750,0.249972,0,0);}
.m5a_c00224{transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);}
.mbd_c00224{transform:matrix(0.241058,0.003616,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241058,0.003616,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241058,0.003616,-0.003750,0.249972,0,0);}
.med_c00224{transform:matrix(0.243313,0.003650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243313,0.003650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243313,0.003650,-0.003750,0.249972,0,0);}
.mc9_c00224{transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);}
.me6_c00224{transform:matrix(0.244423,0.003666,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244423,0.003666,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244423,0.003666,-0.003750,0.249972,0,0);}
.md3_c00224{transform:matrix(0.245087,0.003676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245087,0.003676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245087,0.003676,-0.003750,0.249972,0,0);}
.m16_c00224{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m6b_c00224{transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);}
.m57_c00224{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m2f_c00224{transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);}
.m99_c00224{transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);}
.me2_c00224{transform:matrix(0.257116,0.003857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257116,0.003857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257116,0.003857,-0.003750,0.249972,0,0);}
.md5_c00224{transform:matrix(0.258346,0.003875,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258346,0.003875,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258346,0.003875,-0.003750,0.249972,0,0);}
.m47_c00224{transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);}
.m69_c00224{transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);}
.mee_c00224{transform:matrix(0.331153,0.004967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.331153,0.004967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.331153,0.004967,-0.003750,0.249972,0,0);}
.m64_c00224{transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:0.000000px;}
.fc0_c00224{color:transparent;}
.fs0_c00224{font-size:54.600000px;}
.fs10_c00224{font-size:55.656260px;}
.fs8_c00224{font-size:57.750000px;}
.fs12_c00224{font-size:57.756497px;}
.fs6_c00224{font-size:58.800000px;}
.fs11_c00224{font-size:58.806615px;}
.fs4_c00224{font-size:59.850000px;}
.fsc_c00224{font-size:59.856733px;}
.fs3_c00224{font-size:60.900000px;}
.fsd_c00224{font-size:60.906851px;}
.fse_c00224{font-size:61.956969px;}
.fs7_c00224{font-size:63.000000px;}
.fsf_c00224{font-size:63.007087px;}
.fs2_c00224{font-size:64.050000px;}
.fs13_c00224{font-size:65.107323px;}
.fsa_c00224{font-size:66.150000px;}
.fs9_c00224{font-size:67.200000px;}
.fsb_c00224{font-size:69.300000px;}
.fs1_c00224{font-size:70.350000px;}
.fs5_c00224{font-size:71.400000px;}
.y0_c00224{bottom:0.000000px;}
.y9e_c00224{bottom:22.341675px;}
.y9d_c00224{bottom:22.652798px;}
.y9c_c00224{bottom:23.616083px;}
.y9b_c00224{bottom:23.875290px;}
.y9a_c00224{bottom:24.483705px;}
.y99_c00224{bottom:25.542405px;}
.y98_c00224{bottom:25.991070px;}
.y97_c00224{bottom:26.717753px;}
.y96_c00224{bottom:40.181303px;}
.y95_c00224{bottom:40.556333px;}
.y94_c00224{bottom:41.276618px;}
.y93_c00224{bottom:41.961300px;}
.y92_c00224{bottom:42.135518px;}
.y91_c00224{bottom:42.287648px;}
.y90_c00224{bottom:42.841148px;}
.y8f_c00224{bottom:43.147335px;}
.y8e_c00224{bottom:43.997115px;}
.y8d_c00224{bottom:58.820122px;}
.y8c_c00224{bottom:59.048895px;}
.y8b_c00224{bottom:59.480100px;}
.y8a_c00224{bottom:60.032085px;}
.y89_c00224{bottom:60.552015px;}
.y88_c00224{bottom:60.804877px;}
.y87_c00224{bottom:61.594515px;}
.y86_c00224{bottom:61.816837px;}
.y85_c00224{bottom:74.376877px;}
.y84_c00224{bottom:75.735952px;}
.y83_c00224{bottom:77.063250px;}
.y82_c00224{bottom:77.572005px;}
.y81_c00224{bottom:77.851838px;}
.y80_c00224{bottom:79.100693px;}
.y7f_c00224{bottom:92.191305px;}
.y7e_c00224{bottom:92.594460px;}
.y7d_c00224{bottom:93.691658px;}
.y7c_c00224{bottom:94.829010px;}
.y7b_c00224{bottom:95.258670px;}
.y7a_c00224{bottom:95.666460px;}
.y79_c00224{bottom:96.379838px;}
.y78_c00224{bottom:108.566355px;}
.y77_c00224{bottom:109.980360px;}
.y76_c00224{bottom:111.072953px;}
.y75_c00224{bottom:111.615540px;}
.y74_c00224{bottom:113.109510px;}
.y73_c00224{bottom:113.463975px;}
.y72_c00224{bottom:113.929830px;}
.y71_c00224{bottom:126.946575px;}
.y70_c00224{bottom:127.323608px;}
.y6f_c00224{bottom:127.926675px;}
.y6e_c00224{bottom:128.497725px;}
.y6d_c00224{bottom:129.194663px;}
.y6c_c00224{bottom:129.689010px;}
.y6b_c00224{bottom:130.620218px;}
.y6a_c00224{bottom:131.211698px;}
.y69_c00224{bottom:141.769365px;}
.y68_c00224{bottom:142.328738px;}
.y67_c00224{bottom:142.631460px;}
.y66_c00224{bottom:143.342242px;}
.y65_c00224{bottom:144.124230px;}
.y64_c00224{bottom:144.716287px;}
.y63_c00224{bottom:159.094463px;}
.y62_c00224{bottom:159.531638px;}
.y61_c00224{bottom:159.864915px;}
.y60_c00224{bottom:160.065030px;}
.y5f_c00224{bottom:161.075348px;}
.y5e_c00224{bottom:161.506485px;}
.y5d_c00224{bottom:161.802195px;}
.y5c_c00224{bottom:162.120098px;}
.y5b_c00224{bottom:162.396383px;}
.y5a_c00224{bottom:163.080090px;}
.y59_c00224{bottom:177.584460px;}
.y58_c00224{bottom:178.280993px;}
.y57_c00224{bottom:178.536165px;}
.y56_c00224{bottom:178.949287px;}
.y55_c00224{bottom:179.742818px;}
.y54_c00224{bottom:180.050348px;}
.y53_c00224{bottom:180.337988px;}
.y52_c00224{bottom:181.188510px;}
.y51_c00224{bottom:181.711500px;}
.y50_c00224{bottom:194.220000px;}
.y4f_c00224{bottom:195.316500px;}
.y4e_c00224{bottom:195.651000px;}
.y4d_c00224{bottom:196.035000px;}
.y4c_c00224{bottom:196.903500px;}
.y4b_c00224{bottom:197.790000px;}
.y4a_c00224{bottom:198.436500px;}
.y49_c00224{bottom:198.997500px;}
.y48_c00224{bottom:210.876000px;}
.y47_c00224{bottom:211.215000px;}
.y46_c00224{bottom:211.815000px;}
.y45_c00224{bottom:212.730000px;}
.y44_c00224{bottom:213.733500px;}
.y43_c00224{bottom:214.078500px;}
.y42_c00224{bottom:214.924500px;}
.y41_c00224{bottom:227.980500px;}
.y40_c00224{bottom:228.367500px;}
.y3f_c00224{bottom:228.769500px;}
.y3e_c00224{bottom:228.996000px;}
.y3d_c00224{bottom:229.438500px;}
.y3c_c00224{bottom:229.614000px;}
.y3b_c00224{bottom:230.022000px;}
.y3a_c00224{bottom:230.232000px;}
.y39_c00224{bottom:230.853000px;}
.y38_c00224{bottom:245.343000px;}
.y37_c00224{bottom:246.121500px;}
.y36_c00224{bottom:246.958500px;}
.y35_c00224{bottom:247.315500px;}
.y34_c00224{bottom:247.623000px;}
.y33_c00224{bottom:248.514000px;}
.y32_c00224{bottom:248.820000px;}
.y31_c00224{bottom:249.099000px;}
.y30_c00224{bottom:249.753000px;}
.y2f_c00224{bottom:262.966500px;}
.y2e_c00224{bottom:263.284500px;}
.y2d_c00224{bottom:263.773500px;}
.y2c_c00224{bottom:264.276000px;}
.y2b_c00224{bottom:264.918000px;}
.y2a_c00224{bottom:265.167000px;}
.y29_c00224{bottom:265.935000px;}
.y28_c00224{bottom:266.223000px;}
.y27_c00224{bottom:280.708500px;}
.y26_c00224{bottom:280.975500px;}
.y25_c00224{bottom:281.326500px;}
.y24_c00224{bottom:281.508000px;}
.y23_c00224{bottom:282.070500px;}
.y22_c00224{bottom:282.340500px;}
.y21_c00224{bottom:283.354500px;}
.y20_c00224{bottom:284.043000px;}
.y1f_c00224{bottom:299.323500px;}
.y1e_c00224{bottom:316.722000px;}
.y1d_c00224{bottom:332.991000px;}
.y1c_c00224{bottom:349.261500px;}
.y1b_c00224{bottom:365.944500px;}
.y1a_c00224{bottom:383.137500px;}
.y19_c00224{bottom:399.345000px;}
.y18_c00224{bottom:399.790500px;}
.y17_c00224{bottom:399.933000px;}
.y16_c00224{bottom:400.854000px;}
.y15_c00224{bottom:401.014500px;}
.y14_c00224{bottom:401.611500px;}
.y13_c00224{bottom:402.033000px;}
.y12_c00224{bottom:417.429000px;}
.y11_c00224{bottom:433.554000px;}
.y10_c00224{bottom:451.218000px;}
.yf_c00224{bottom:468.343500px;}
.ye_c00224{bottom:484.795500px;}
.yd_c00224{bottom:485.298000px;}
.yc_c00224{bottom:485.556000px;}
.yb_c00224{bottom:485.721000px;}
.ya_c00224{bottom:485.940000px;}
.y9_c00224{bottom:486.145500px;}
.y8_c00224{bottom:486.990000px;}
.y7_c00224{bottom:487.227000px;}
.y6_c00224{bottom:487.621500px;}
.y5_c00224{bottom:502.674000px;}
.y4_c00224{bottom:519.954000px;}
.y3_c00224{bottom:537.300000px;}
.y2_c00224{bottom:554.424000px;}
.y1_c00224{bottom:570.636000px;}
.h2_c00224{height:54.600000px;}
.h12_c00224{height:55.656260px;}
.ha_c00224{height:57.750000px;}
.h14_c00224{height:57.756497px;}
.h8_c00224{height:58.800000px;}
.h13_c00224{height:58.806615px;}
.h6_c00224{height:59.850000px;}
.he_c00224{height:59.856733px;}
.h5_c00224{height:60.900000px;}
.hf_c00224{height:60.906851px;}
.h10_c00224{height:61.956969px;}
.h9_c00224{height:63.000000px;}
.h11_c00224{height:63.007087px;}
.h4_c00224{height:64.050000px;}
.h15_c00224{height:65.107323px;}
.hc_c00224{height:66.150000px;}
.hb_c00224{height:67.200000px;}
.hd_c00224{height:69.300000px;}
.h3_c00224{height:70.350000px;}
.h7_c00224{height:71.400000px;}
.h0_c00224{height:616.140000px;}
.h1_c00224{height:616.500000px;}
.w0_c00224{width:378.540000px;}
.w1_c00224{width:378.750000px;}
.x0_c00224{left:0.000000px;}
.x47_c00224{left:31.590000px;}
.x3_c00224{left:32.940000px;}
.x70_c00224{left:34.138740px;}
.x7e_c00224{left:35.169585px;}
.x42_c00224{left:37.800000px;}
.x78_c00224{left:39.858007px;}
.x3c_c00224{left:41.310000px;}
.x2d_c00224{left:56.158500px;}
.x56_c00224{left:57.642000px;}
.x16_c00224{left:59.940000px;}
.x5f_c00224{left:65.739000px;}
.x36_c00224{left:70.900500px;}
.x1f_c00224{left:72.580500px;}
.x4_c00224{left:73.980000px;}
.x59_c00224{left:76.059000px;}
.x17_c00224{left:77.490000px;}
.x12_c00224{left:79.650000px;}
.x25_c00224{left:80.728500px;}
.x65_c00224{left:82.172880px;}
.x4c_c00224{left:84.240000px;}
.x51_c00224{left:86.514000px;}
.xc_c00224{left:91.530000px;}
.x3d_c00224{left:95.040000px;}
.x13_c00224{left:96.660000px;}
.x76_c00224{left:99.511897px;}
.x66_c00224{left:101.892172px;}
.x60_c00224{left:103.783500px;}
.x7f_c00224{left:108.624982px;}
.x43_c00224{left:111.510000px;}
.x26_c00224{left:112.588500px;}
.x77_c00224{left:114.266520px;}
.x2e_c00224{left:116.098500px;}
.x32_c00224{left:118.798500px;}
.x73_c00224{left:120.559732px;}
.x57_c00224{left:121.681500px;}
.x5_c00224{left:123.390000px;}
.x37_c00224{left:125.196000px;}
.x18_c00224{left:126.360000px;}
.x39_c00224{left:131.488500px;}
.x63_c00224{left:133.546500px;}
.x6d_c00224{left:134.585670px;}
.x19_c00224{left:139.320000px;}
.x6_c00224{left:141.210000px;}
.x4a_c00224{left:142.560000px;}
.x48_c00224{left:146.610000px;}
.x4d_c00224{left:152.280000px;}
.x79_c00224{left:154.886415px;}
.x61_c00224{left:155.901000px;}
.x5b_c00224{left:157.026000px;}
.x6a_c00224{left:158.380275px;}
.xd_c00224{left:160.380000px;}
.x2f_c00224{left:163.618500px;}
.x1a_c00224{left:165.240000px;}
.x3e_c00224{left:166.590000px;}
.x4e_c00224{left:169.290000px;}
.xe_c00224{left:173.610000px;}
.x1_c00224{left:174.960000px;}
.x67_c00224{left:176.443275px;}
.x7_c00224{left:177.660000px;}
.x29_c00224{left:179.548500px;}
.x14_c00224{left:180.900000px;}
.x44_c00224{left:184.680000px;}
.x30_c00224{left:188.188500px;}
.x3f_c00224{left:190.080000px;}
.x7b_c00224{left:191.296807px;}
.x71_c00224{left:192.890107px;}
.x2a_c00224{left:194.128500px;}
.xf_c00224{left:195.210000px;}
.x4b_c00224{left:198.450000px;}
.x20_c00224{left:201.337500px;}
.x45_c00224{left:203.040000px;}
.x8_c00224{left:207.900000px;}
.x49_c00224{left:209.520000px;}
.x2b_c00224{left:211.948500px;}
.x33_c00224{left:213.568500px;}
.x1b_c00224{left:217.890000px;}
.x21_c00224{left:223.165500px;}
.x3a_c00224{left:227.068500px;}
.x52_c00224{left:228.577500px;}
.x34_c00224{left:229.768500px;}
.x1c_c00224{left:231.660000px;}
.x9_c00224{left:234.900000px;}
.x38_c00224{left:236.383500px;}
.x40_c00224{left:238.410000px;}
.x22_c00224{left:239.682000px;}
.x4f_c00224{left:240.840000px;}
.x53_c00224{left:242.556000px;}
.x74_c00224{left:244.724152px;}
.x5e_c00224{left:245.799000px;}
.x62_c00224{left:249.298500px;}
.x6b_c00224{left:250.452787px;}
.x6e_c00224{left:252.074670px;}
.x10_c00224{left:254.340000px;}
.x27_c00224{left:257.578500px;}
.x68_c00224{left:262.840057px;}
.x23_c00224{left:265.555500px;}
.x75_c00224{left:267.100140px;}
.x54_c00224{left:269.604000px;}
.x64_c00224{left:270.679500px;}
.x1d_c00224{left:272.700000px;}
.x3b_c00224{left:275.668500px;}
.x2c_c00224{left:277.558500px;}
.xa_c00224{left:279.720000px;}
.x5c_c00224{left:281.788500px;}
.x1e_c00224{left:285.390000px;}
.x69_c00224{left:286.658917px;}
.x31_c00224{left:287.818500px;}
.x55_c00224{left:290.145000px;}
.x6f_c00224{left:292.279170px;}
.x15_c00224{left:295.920000px;}
.x28_c00224{left:297.808500px;}
.x7c_c00224{left:299.364547px;}
.x6c_c00224{left:301.247325px;}
.x58_c00224{left:304.948500px;}
.x35_c00224{left:308.878500px;}
.xb_c00224{left:311.310000px;}
.x7a_c00224{left:312.355365px;}
.x50_c00224{left:314.280000px;}
.x24_c00224{left:315.802500px;}
.x2_c00224{left:317.520000px;}
.x5d_c00224{left:320.413500px;}
.x11_c00224{left:321.570000px;}
.x41_c00224{left:324.000000px;}
.x46_c00224{left:325.350000px;}
.x5a_c00224{left:326.584500px;}
.x7d_c00224{left:328.267425px;}
.x72_c00224{left:332.190352px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fs0_c00224{font-size:48.533333pt;}
.fs10_c00224{font-size:49.472231pt;}
.fs8_c00224{font-size:51.333333pt;}
.fs12_c00224{font-size:51.339108pt;}
.fs6_c00224{font-size:52.266667pt;}
.fs11_c00224{font-size:52.272546pt;}
.fs4_c00224{font-size:53.200000pt;}
.fsc_c00224{font-size:53.205985pt;}
.fs3_c00224{font-size:54.133333pt;}
.fsd_c00224{font-size:54.139423pt;}
.fse_c00224{font-size:55.072861pt;}
.fs7_c00224{font-size:56.000000pt;}
.fsf_c00224{font-size:56.006300pt;}
.fs2_c00224{font-size:56.933333pt;}
.fs13_c00224{font-size:57.873176pt;}
.fsa_c00224{font-size:58.800000pt;}
.fs9_c00224{font-size:59.733333pt;}
.fsb_c00224{font-size:61.600000pt;}
.fs1_c00224{font-size:62.533333pt;}
.fs5_c00224{font-size:63.466667pt;}
.y0_c00224{bottom:0.000000pt;}
.y9e_c00224{bottom:19.859267pt;}
.y9d_c00224{bottom:20.135820pt;}
.y9c_c00224{bottom:20.992073pt;}
.y9b_c00224{bottom:21.222480pt;}
.y9a_c00224{bottom:21.763293pt;}
.y99_c00224{bottom:22.704360pt;}
.y98_c00224{bottom:23.103173pt;}
.y97_c00224{bottom:23.749113pt;}
.y96_c00224{bottom:35.716713pt;}
.y95_c00224{bottom:36.050073pt;}
.y94_c00224{bottom:36.690327pt;}
.y93_c00224{bottom:37.298933pt;}
.y92_c00224{bottom:37.453793pt;}
.y91_c00224{bottom:37.589020pt;}
.y90_c00224{bottom:38.081020pt;}
.y8f_c00224{bottom:38.353187pt;}
.y8e_c00224{bottom:39.108547pt;}
.y8d_c00224{bottom:52.284553pt;}
.y8c_c00224{bottom:52.487907pt;}
.y8b_c00224{bottom:52.871200pt;}
.y8a_c00224{bottom:53.361853pt;}
.y89_c00224{bottom:53.824013pt;}
.y88_c00224{bottom:54.048780pt;}
.y87_c00224{bottom:54.750680pt;}
.y86_c00224{bottom:54.948300pt;}
.y85_c00224{bottom:66.112780pt;}
.y84_c00224{bottom:67.320847pt;}
.y83_c00224{bottom:68.500667pt;}
.y82_c00224{bottom:68.952893pt;}
.y81_c00224{bottom:69.201633pt;}
.y80_c00224{bottom:70.311727pt;}
.y7f_c00224{bottom:81.947827pt;}
.y7e_c00224{bottom:82.306187pt;}
.y7d_c00224{bottom:83.281473pt;}
.y7c_c00224{bottom:84.292453pt;}
.y7b_c00224{bottom:84.674373pt;}
.y7a_c00224{bottom:85.036853pt;}
.y79_c00224{bottom:85.670967pt;}
.y78_c00224{bottom:96.503427pt;}
.y77_c00224{bottom:97.760320pt;}
.y76_c00224{bottom:98.731513pt;}
.y75_c00224{bottom:99.213813pt;}
.y74_c00224{bottom:100.541787pt;}
.y73_c00224{bottom:100.856867pt;}
.y72_c00224{bottom:101.270960pt;}
.y71_c00224{bottom:112.841400pt;}
.y70_c00224{bottom:113.176540pt;}
.y6f_c00224{bottom:113.712600pt;}
.y6e_c00224{bottom:114.220200pt;}
.y6d_c00224{bottom:114.839700pt;}
.y6c_c00224{bottom:115.279120pt;}
.y6b_c00224{bottom:116.106860pt;}
.y6a_c00224{bottom:116.632620pt;}
.y69_c00224{bottom:126.017213pt;}
.y68_c00224{bottom:126.514433pt;}
.y67_c00224{bottom:126.783520pt;}
.y66_c00224{bottom:127.415327pt;}
.y65_c00224{bottom:128.110427pt;}
.y64_c00224{bottom:128.636700pt;}
.y63_c00224{bottom:141.417300pt;}
.y62_c00224{bottom:141.805900pt;}
.y61_c00224{bottom:142.102147pt;}
.y60_c00224{bottom:142.280027pt;}
.y5f_c00224{bottom:143.178087pt;}
.y5e_c00224{bottom:143.561320pt;}
.y5d_c00224{bottom:143.824173pt;}
.y5c_c00224{bottom:144.106753pt;}
.y5b_c00224{bottom:144.352340pt;}
.y5a_c00224{bottom:144.960080pt;}
.y59_c00224{bottom:157.852853pt;}
.y58_c00224{bottom:158.471993pt;}
.y57_c00224{bottom:158.698813pt;}
.y56_c00224{bottom:159.066033pt;}
.y55_c00224{bottom:159.771393pt;}
.y54_c00224{bottom:160.044753pt;}
.y53_c00224{bottom:160.300433pt;}
.y52_c00224{bottom:161.056453pt;}
.y51_c00224{bottom:161.521333pt;}
.y50_c00224{bottom:172.640000pt;}
.y4f_c00224{bottom:173.614667pt;}
.y4e_c00224{bottom:173.912000pt;}
.y4d_c00224{bottom:174.253333pt;}
.y4c_c00224{bottom:175.025333pt;}
.y4b_c00224{bottom:175.813333pt;}
.y4a_c00224{bottom:176.388000pt;}
.y49_c00224{bottom:176.886667pt;}
.y48_c00224{bottom:187.445333pt;}
.y47_c00224{bottom:187.746667pt;}
.y46_c00224{bottom:188.280000pt;}
.y45_c00224{bottom:189.093333pt;}
.y44_c00224{bottom:189.985333pt;}
.y43_c00224{bottom:190.292000pt;}
.y42_c00224{bottom:191.044000pt;}
.y41_c00224{bottom:202.649333pt;}
.y40_c00224{bottom:202.993333pt;}
.y3f_c00224{bottom:203.350667pt;}
.y3e_c00224{bottom:203.552000pt;}
.y3d_c00224{bottom:203.945333pt;}
.y3c_c00224{bottom:204.101333pt;}
.y3b_c00224{bottom:204.464000pt;}
.y3a_c00224{bottom:204.650667pt;}
.y39_c00224{bottom:205.202667pt;}
.y38_c00224{bottom:218.082667pt;}
.y37_c00224{bottom:218.774667pt;}
.y36_c00224{bottom:219.518667pt;}
.y35_c00224{bottom:219.836000pt;}
.y34_c00224{bottom:220.109333pt;}
.y33_c00224{bottom:220.901333pt;}
.y32_c00224{bottom:221.173333pt;}
.y31_c00224{bottom:221.421333pt;}
.y30_c00224{bottom:222.002667pt;}
.y2f_c00224{bottom:233.748000pt;}
.y2e_c00224{bottom:234.030667pt;}
.y2d_c00224{bottom:234.465333pt;}
.y2c_c00224{bottom:234.912000pt;}
.y2b_c00224{bottom:235.482667pt;}
.y2a_c00224{bottom:235.704000pt;}
.y29_c00224{bottom:236.386667pt;}
.y28_c00224{bottom:236.642667pt;}
.y27_c00224{bottom:249.518667pt;}
.y26_c00224{bottom:249.756000pt;}
.y25_c00224{bottom:250.068000pt;}
.y24_c00224{bottom:250.229333pt;}
.y23_c00224{bottom:250.729333pt;}
.y22_c00224{bottom:250.969333pt;}
.y21_c00224{bottom:251.870667pt;}
.y20_c00224{bottom:252.482667pt;}
.y1f_c00224{bottom:266.065333pt;}
.y1e_c00224{bottom:281.530667pt;}
.y1d_c00224{bottom:295.992000pt;}
.y1c_c00224{bottom:310.454667pt;}
.y1b_c00224{bottom:325.284000pt;}
.y1a_c00224{bottom:340.566667pt;}
.y19_c00224{bottom:354.973333pt;}
.y18_c00224{bottom:355.369333pt;}
.y17_c00224{bottom:355.496000pt;}
.y16_c00224{bottom:356.314667pt;}
.y15_c00224{bottom:356.457333pt;}
.y14_c00224{bottom:356.988000pt;}
.y13_c00224{bottom:357.362667pt;}
.y12_c00224{bottom:371.048000pt;}
.y11_c00224{bottom:385.381333pt;}
.y10_c00224{bottom:401.082667pt;}
.yf_c00224{bottom:416.305333pt;}
.ye_c00224{bottom:430.929333pt;}
.yd_c00224{bottom:431.376000pt;}
.yc_c00224{bottom:431.605333pt;}
.yb_c00224{bottom:431.752000pt;}
.ya_c00224{bottom:431.946667pt;}
.y9_c00224{bottom:432.129333pt;}
.y8_c00224{bottom:432.880000pt;}
.y7_c00224{bottom:433.090667pt;}
.y6_c00224{bottom:433.441333pt;}
.y5_c00224{bottom:446.821333pt;}
.y4_c00224{bottom:462.181333pt;}
.y3_c00224{bottom:477.600000pt;}
.y2_c00224{bottom:492.821333pt;}
.y1_c00224{bottom:507.232000pt;}
.h2_c00224{height:48.533333pt;}
.h12_c00224{height:49.472231pt;}
.ha_c00224{height:51.333333pt;}
.h14_c00224{height:51.339108pt;}
.h8_c00224{height:52.266667pt;}
.h13_c00224{height:52.272546pt;}
.h6_c00224{height:53.200000pt;}
.he_c00224{height:53.205985pt;}
.h5_c00224{height:54.133333pt;}
.hf_c00224{height:54.139423pt;}
.h10_c00224{height:55.072861pt;}
.h9_c00224{height:56.000000pt;}
.h11_c00224{height:56.006300pt;}
.h4_c00224{height:56.933333pt;}
.h15_c00224{height:57.873176pt;}
.hc_c00224{height:58.800000pt;}
.hb_c00224{height:59.733333pt;}
.hd_c00224{height:61.600000pt;}
.h3_c00224{height:62.533333pt;}
.h7_c00224{height:63.466667pt;}
.h0_c00224{height:547.680000pt;}
.h1_c00224{height:548.000000pt;}
.w0_c00224{width:336.480000pt;}
.w1_c00224{width:336.666667pt;}
.x0_c00224{left:0.000000pt;}
.x47_c00224{left:28.080000pt;}
.x3_c00224{left:29.280000pt;}
.x70_c00224{left:30.345547pt;}
.x7e_c00224{left:31.261853pt;}
.x42_c00224{left:33.600000pt;}
.x78_c00224{left:35.429340pt;}
.x3c_c00224{left:36.720000pt;}
.x2d_c00224{left:49.918667pt;}
.x56_c00224{left:51.237333pt;}
.x16_c00224{left:53.280000pt;}
.x5f_c00224{left:58.434667pt;}
.x36_c00224{left:63.022667pt;}
.x1f_c00224{left:64.516000pt;}
.x4_c00224{left:65.760000pt;}
.x59_c00224{left:67.608000pt;}
.x17_c00224{left:68.880000pt;}
.x12_c00224{left:70.800000pt;}
.x25_c00224{left:71.758667pt;}
.x65_c00224{left:73.042560pt;}
.x4c_c00224{left:74.880000pt;}
.x51_c00224{left:76.901333pt;}
.xc_c00224{left:81.360000pt;}
.x3d_c00224{left:84.480000pt;}
.x13_c00224{left:85.920000pt;}
.x76_c00224{left:88.455020pt;}
.x66_c00224{left:90.570820pt;}
.x60_c00224{left:92.252000pt;}
.x7f_c00224{left:96.555540pt;}
.x43_c00224{left:99.120000pt;}
.x26_c00224{left:100.078667pt;}
.x77_c00224{left:101.570240pt;}
.x2e_c00224{left:103.198667pt;}
.x32_c00224{left:105.598667pt;}
.x73_c00224{left:107.164207pt;}
.x57_c00224{left:108.161333pt;}
.x5_c00224{left:109.680000pt;}
.x37_c00224{left:111.285333pt;}
.x18_c00224{left:112.320000pt;}
.x39_c00224{left:116.878667pt;}
.x63_c00224{left:118.708000pt;}
.x6d_c00224{left:119.631707pt;}
.x19_c00224{left:123.840000pt;}
.x6_c00224{left:125.520000pt;}
.x4a_c00224{left:126.720000pt;}
.x48_c00224{left:130.320000pt;}
.x4d_c00224{left:135.360000pt;}
.x79_c00224{left:137.676813pt;}
.x61_c00224{left:138.578667pt;}
.x5b_c00224{left:139.578667pt;}
.x6a_c00224{left:140.782467pt;}
.xd_c00224{left:142.560000pt;}
.x2f_c00224{left:145.438667pt;}
.x1a_c00224{left:146.880000pt;}
.x3e_c00224{left:148.080000pt;}
.x4e_c00224{left:150.480000pt;}
.xe_c00224{left:154.320000pt;}
.x1_c00224{left:155.520000pt;}
.x67_c00224{left:156.838467pt;}
.x7_c00224{left:157.920000pt;}
.x29_c00224{left:159.598667pt;}
.x14_c00224{left:160.800000pt;}
.x44_c00224{left:164.160000pt;}
.x30_c00224{left:167.278667pt;}
.x3f_c00224{left:168.960000pt;}
.x7b_c00224{left:170.041607pt;}
.x71_c00224{left:171.457873pt;}
.x2a_c00224{left:172.558667pt;}
.xf_c00224{left:173.520000pt;}
.x4b_c00224{left:176.400000pt;}
.x20_c00224{left:178.966667pt;}
.x45_c00224{left:180.480000pt;}
.x8_c00224{left:184.800000pt;}
.x49_c00224{left:186.240000pt;}
.x2b_c00224{left:188.398667pt;}
.x33_c00224{left:189.838667pt;}
.x1b_c00224{left:193.680000pt;}
.x21_c00224{left:198.369333pt;}
.x3a_c00224{left:201.838667pt;}
.x52_c00224{left:203.180000pt;}
.x34_c00224{left:204.238667pt;}
.x1c_c00224{left:205.920000pt;}
.x9_c00224{left:208.800000pt;}
.x38_c00224{left:210.118667pt;}
.x40_c00224{left:211.920000pt;}
.x22_c00224{left:213.050667pt;}
.x4f_c00224{left:214.080000pt;}
.x53_c00224{left:215.605333pt;}
.x74_c00224{left:217.532580pt;}
.x5e_c00224{left:218.488000pt;}
.x62_c00224{left:221.598667pt;}
.x6b_c00224{left:222.624700pt;}
.x6e_c00224{left:224.066373pt;}
.x10_c00224{left:226.080000pt;}
.x27_c00224{left:228.958667pt;}
.x68_c00224{left:233.635607pt;}
.x23_c00224{left:236.049333pt;}
.x75_c00224{left:237.422347pt;}
.x54_c00224{left:239.648000pt;}
.x64_c00224{left:240.604000pt;}
.x1d_c00224{left:242.400000pt;}
.x3b_c00224{left:245.038667pt;}
.x2c_c00224{left:246.718667pt;}
.xa_c00224{left:248.640000pt;}
.x5c_c00224{left:250.478667pt;}
.x1e_c00224{left:253.680000pt;}
.x69_c00224{left:254.807927pt;}
.x31_c00224{left:255.838667pt;}
.x55_c00224{left:257.906667pt;}
.x6f_c00224{left:259.803707pt;}
.x15_c00224{left:263.040000pt;}
.x28_c00224{left:264.718667pt;}
.x7c_c00224{left:266.101820pt;}
.x6c_c00224{left:267.775400pt;}
.x58_c00224{left:271.065333pt;}
.x35_c00224{left:274.558667pt;}
.xb_c00224{left:276.720000pt;}
.x7a_c00224{left:277.649213pt;}
.x50_c00224{left:279.360000pt;}
.x24_c00224{left:280.713333pt;}
.x2_c00224{left:282.240000pt;}
.x5d_c00224{left:284.812000pt;}
.x11_c00224{left:285.840000pt;}
.x41_c00224{left:288.000000pt;}
.x46_c00224{left:289.200000pt;}
.x5a_c00224{left:290.297333pt;}
.x7d_c00224{left:291.793267pt;}
.x72_c00224{left:295.280313pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00225 {
    display:none;
  }
  .loading-indicator_c00225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00225 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00225 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00225" -> "#page-container .classname_c00225")
 */
.pf_c00225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00225 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00225 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00225 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00225 {overflow:visible;}
  }
}
.c_c00225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00225 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00225:after { /* webkit #35443 */
  content: '';
}
.t_c00225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00225 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00225 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00225 { /* info for Javascript */
  display:none;
}
.l_c00225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00225:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00225 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00225.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_9e08183514264f8d62060fec.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00225{transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.151103,-0.002267,0.003750,0.249972,0,0);-ms-transform:matrix(0.151103,-0.002267,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151103,-0.002267,0.003750,0.249972,0,0);}
.m7_c00225{transform:matrix(0.153808,-0.002307,0.003750,0.249972,0,0);-ms-transform:matrix(0.153808,-0.002307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153808,-0.002307,0.003750,0.249972,0,0);}
.m9_c00225{transform:matrix(0.162707,-0.002441,0.003750,0.249972,0,0);-ms-transform:matrix(0.162707,-0.002441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162707,-0.002441,0.003750,0.249972,0,0);}
.m6_c00225{transform:matrix(0.163257,-0.002449,0.003750,0.249972,0,0);-ms-transform:matrix(0.163257,-0.002449,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163257,-0.002449,0.003750,0.249972,0,0);}
.mc_c00225{transform:matrix(0.167831,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167831,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167831,-0.002517,0.003750,0.249972,0,0);}
.m8_c00225{transform:matrix(0.173590,-0.002604,0.003750,0.249972,0,0);-ms-transform:matrix(0.173590,-0.002604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173590,-0.002604,0.003750,0.249972,0,0);}
.md_c00225{transform:matrix(0.184214,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184214,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184214,-0.002763,0.003750,0.249972,0,0);}
.ma_c00225{transform:matrix(0.187894,-0.002818,0.003750,0.249972,0,0);-ms-transform:matrix(0.187894,-0.002818,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187894,-0.002818,0.003750,0.249972,0,0);}
.m12_c00225{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.341755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341755,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.508830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508830,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.655435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655435,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:0.000000px;}
.fc0_c00225{color:transparent;}
.fs2_c00225{font-size:18.900000px;}
.fs3_c00225{font-size:22.050000px;}
.fs1_c00225{font-size:34.650000px;}
.fs5_c00225{font-size:57.750000px;}
.fs0_c00225{font-size:63.000000px;}
.fs4_c00225{font-size:69.307796px;}
.y0_c00225{bottom:0.000000px;}
.yd_c00225{bottom:23.565000px;}
.y5_c00225{bottom:39.153000px;}
.y6_c00225{bottom:39.512685px;}
.y7_c00225{bottom:40.233383px;}
.y8_c00225{bottom:40.723613px;}
.y9_c00225{bottom:41.036588px;}
.ya_c00225{bottom:41.982780px;}
.yb_c00225{bottom:42.283290px;}
.yc_c00225{bottom:42.926430px;}
.ye_c00225{bottom:175.500000px;}
.y4_c00225{bottom:228.558000px;}
.y3_c00225{bottom:558.226500px;}
.y2_c00225{bottom:565.650000px;}
.y1_c00225{bottom:575.782500px;}
.h4_c00225{height:18.900000px;}
.h5_c00225{height:22.050000px;}
.h3_c00225{height:34.650000px;}
.h7_c00225{height:57.750000px;}
.h2_c00225{height:63.000000px;}
.h6_c00225{height:69.307796px;}
.h0_c00225{height:616.140000px;}
.h1_c00225{height:616.500000px;}
.w0_c00225{width:378.540000px;}
.w1_c00225{width:378.750000px;}
.x0_c00225{left:0.000000px;}
.x6_c00225{left:48.255000px;}
.x7_c00225{left:72.234000px;}
.xd_c00225{left:85.050000px;}
.xe_c00225{left:99.090000px;}
.x8_c00225{left:120.280500px;}
.x9_c00225{left:152.962500px;}
.xf_c00225{left:154.170000px;}
.xa_c00225{left:173.827500px;}
.x10_c00225{left:175.770000px;}
.x1_c00225{left:178.200000px;}
.x11_c00225{left:197.910000px;}
.x2_c00225{left:214.380000px;}
.x3_c00225{left:223.290000px;}
.xb_c00225{left:236.907000px;}
.x4_c00225{left:250.020000px;}
.x5_c00225{left:256.500000px;}
.x12_c00225{left:259.470000px;}
.xc_c00225{left:299.817000px;}
.x13_c00225{left:340.200000px;}
.x14_c00225{left:373.410000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fs2_c00225{font-size:16.800000pt;}
.fs3_c00225{font-size:19.600000pt;}
.fs1_c00225{font-size:30.800000pt;}
.fs5_c00225{font-size:51.333333pt;}
.fs0_c00225{font-size:56.000000pt;}
.fs4_c00225{font-size:61.606930pt;}
.y0_c00225{bottom:0.000000pt;}
.yd_c00225{bottom:20.946667pt;}
.y5_c00225{bottom:34.802667pt;}
.y6_c00225{bottom:35.122387pt;}
.y7_c00225{bottom:35.763007pt;}
.y8_c00225{bottom:36.198767pt;}
.y9_c00225{bottom:36.476967pt;}
.ya_c00225{bottom:37.318027pt;}
.yb_c00225{bottom:37.585147pt;}
.yc_c00225{bottom:38.156827pt;}
.ye_c00225{bottom:156.000000pt;}
.y4_c00225{bottom:203.162667pt;}
.y3_c00225{bottom:496.201333pt;}
.y2_c00225{bottom:502.800000pt;}
.y1_c00225{bottom:511.806667pt;}
.h4_c00225{height:16.800000pt;}
.h5_c00225{height:19.600000pt;}
.h3_c00225{height:30.800000pt;}
.h7_c00225{height:51.333333pt;}
.h2_c00225{height:56.000000pt;}
.h6_c00225{height:61.606930pt;}
.h0_c00225{height:547.680000pt;}
.h1_c00225{height:548.000000pt;}
.w0_c00225{width:336.480000pt;}
.w1_c00225{width:336.666667pt;}
.x0_c00225{left:0.000000pt;}
.x6_c00225{left:42.893333pt;}
.x7_c00225{left:64.208000pt;}
.xd_c00225{left:75.600000pt;}
.xe_c00225{left:88.080000pt;}
.x8_c00225{left:106.916000pt;}
.x9_c00225{left:135.966667pt;}
.xf_c00225{left:137.040000pt;}
.xa_c00225{left:154.513333pt;}
.x10_c00225{left:156.240000pt;}
.x1_c00225{left:158.400000pt;}
.x11_c00225{left:175.920000pt;}
.x2_c00225{left:190.560000pt;}
.x3_c00225{left:198.480000pt;}
.xb_c00225{left:210.584000pt;}
.x4_c00225{left:222.240000pt;}
.x5_c00225{left:228.000000pt;}
.x12_c00225{left:230.640000pt;}
.xc_c00225{left:266.504000pt;}
.x13_c00225{left:302.400000pt;}
.x14_c00225{left:331.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00226 {
    display:none;
  }
  .loading-indicator_c00226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00226 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00226 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00226" -> "#page-container .classname_c00226")
 */
.pf_c00226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00226 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00226 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00226 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00226 {overflow:visible;}
  }
}
.c_c00226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00226 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00226:after { /* webkit #35443 */
  content: '';
}
.t_c00226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00226 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00226 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00226 { /* info for Javascript */
  display:none;
}
.l_c00226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00226:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00226 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00226.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00226{transform:matrix(0.045098,0.000812,-0.004499,0.249960,0,0);-ms-transform:matrix(0.045098,0.000812,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.045098,0.000812,-0.004499,0.249960,0,0);}
.mc6_c00226{transform:matrix(0.096322,0.001252,-0.003250,0.249979,0,0);-ms-transform:matrix(0.096322,0.001252,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.096322,0.001252,-0.003250,0.249979,0,0);}
.ma7_c00226{transform:matrix(0.127739,0.002299,-0.004499,0.249960,0,0);-ms-transform:matrix(0.127739,0.002299,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.127739,0.002299,-0.004499,0.249960,0,0);}
.m11_c00226{transform:matrix(0.128956,0.001547,-0.003000,0.249982,0,0);-ms-transform:matrix(0.128956,0.001547,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.128956,0.001547,-0.003000,0.249982,0,0);}
.m65_c00226{transform:matrix(0.141162,0.002541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141162,0.002541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141162,0.002541,-0.004499,0.249960,0,0);}
.mb3_c00226{transform:matrix(0.141872,0.002554,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141872,0.002554,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141872,0.002554,-0.004499,0.249960,0,0);}
.mb2_c00226{transform:matrix(0.144347,0.002598,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144347,0.002598,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144347,0.002598,-0.004499,0.249960,0,0);}
.m16_c00226{transform:matrix(0.145225,0.001743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145225,0.001743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145225,0.001743,-0.003000,0.249982,0,0);}
.m13_c00226{transform:matrix(0.145230,0.001743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145230,0.001743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145230,0.001743,-0.003000,0.249982,0,0);}
.mc9_c00226{transform:matrix(0.147490,0.007382,-0.012497,0.249687,0,0);-ms-transform:matrix(0.147490,0.007382,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.147490,0.007382,-0.012497,0.249687,0,0);}
.mbc_c00226{transform:matrix(0.149247,0.001940,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149247,0.001940,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149247,0.001940,-0.003250,0.249979,0,0);}
.m7_c00226{transform:matrix(0.151179,0.001814,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151179,0.001814,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151179,0.001814,-0.003000,0.249982,0,0);}
.mc8_c00226{transform:matrix(0.152105,0.007613,-0.012497,0.249687,0,0);-ms-transform:matrix(0.152105,0.007613,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.152105,0.007613,-0.012497,0.249687,0,0);}
.m68_c00226{transform:matrix(0.154025,0.002772,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154025,0.002772,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154025,0.002772,-0.004499,0.249960,0,0);}
.m1e_c00226{transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);}
.m92_c00226{transform:matrix(0.155165,0.002793,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155165,0.002793,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155165,0.002793,-0.004499,0.249960,0,0);}
.mf_c00226{transform:matrix(0.155324,0.001864,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155324,0.001864,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155324,0.001864,-0.003000,0.249982,0,0);}
.m23_c00226{transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.156219,0.001875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156219,0.001875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156219,0.001875,-0.003000,0.249982,0,0);}
.ma3_c00226{transform:matrix(0.157125,0.002828,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157125,0.002828,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157125,0.002828,-0.004499,0.249960,0,0);}
.mb6_c00226{transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);}
.m83_c00226{transform:matrix(0.157574,0.002836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157574,0.002836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157574,0.002836,-0.004499,0.249960,0,0);}
.mc5_c00226{transform:matrix(0.159786,0.002077,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159786,0.002077,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159786,0.002077,-0.003250,0.249979,0,0);}
.m1d_c00226{transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159865,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.161358,0.001936,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161358,0.001936,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161358,0.001936,-0.003000,0.249982,0,0);}
.m8_c00226{transform:matrix(0.162543,0.001951,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162543,0.001951,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162543,0.001951,-0.003000,0.249982,0,0);}
.mee_c00226{transform:matrix(0.162811,0.008149,-0.012497,0.249687,0,0);-ms-transform:matrix(0.162811,0.008149,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.162811,0.008149,-0.012497,0.249687,0,0);}
.m2a_c00226{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m30_c00226{transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.165313,0.002976,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165313,0.002976,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165313,0.002976,-0.004499,0.249960,0,0);}
.m9a_c00226{transform:matrix(0.166578,0.002998,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166578,0.002998,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166578,0.002998,-0.004499,0.249960,0,0);}
.md_c00226{transform:matrix(0.167908,0.002015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167908,0.002015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167908,0.002015,-0.003000,0.249982,0,0);}
.m54_c00226{transform:matrix(0.168148,0.003027,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168148,0.003027,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168148,0.003027,-0.004499,0.249960,0,0);}
.m89_c00226{transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168643,0.003036,-0.004499,0.249960,0,0);}
.m94_c00226{transform:matrix(0.169228,0.003046,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169228,0.003046,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169228,0.003046,-0.004499,0.249960,0,0);}
.m5c_c00226{transform:matrix(0.169458,0.003050,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169458,0.003050,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169458,0.003050,-0.004499,0.249960,0,0);}
.mb4_c00226{transform:matrix(0.169473,0.003051,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169473,0.003051,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169473,0.003051,-0.004499,0.249960,0,0);}
.m8f_c00226{transform:matrix(0.169987,0.003060,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169987,0.003060,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169987,0.003060,-0.004499,0.249960,0,0);}
.m2_c00226{transform:matrix(0.170278,0.002043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170278,0.002043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170278,0.002043,-0.003000,0.249982,0,0);}
.m77_c00226{transform:matrix(0.170287,0.003065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170287,0.003065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170287,0.003065,-0.004499,0.249960,0,0);}
.m74_c00226{transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);}
.m32_c00226{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.171223,0.002055,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171223,0.002055,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171223,0.002055,-0.003000,0.249982,0,0);}
.m1b_c00226{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.172748,0.002073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172748,0.002073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172748,0.002073,-0.003000,0.249982,0,0);}
.mc0_c00226{transform:matrix(0.173440,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173440,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173440,0.002255,-0.003250,0.249979,0,0);}
.m76_c00226{transform:matrix(0.173767,0.003128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173767,0.003128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173767,0.003128,-0.004499,0.249960,0,0);}
.m51_c00226{transform:matrix(0.174057,0.003133,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174057,0.003133,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174057,0.003133,-0.004499,0.249960,0,0);}
.m84_c00226{transform:matrix(0.174207,0.003136,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174207,0.003136,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174207,0.003136,-0.004499,0.249960,0,0);}
.ma0_c00226{transform:matrix(0.174592,0.003143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174592,0.003143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174592,0.003143,-0.004499,0.249960,0,0);}
.mb_c00226{transform:matrix(0.174727,0.002097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174727,0.002097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174727,0.002097,-0.003000,0.249982,0,0);}
.m3_c00226{transform:matrix(0.174842,0.002098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174842,0.002098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174842,0.002098,-0.003000,0.249982,0,0);}
.mc7_c00226{transform:matrix(0.174871,0.008752,-0.012497,0.249687,0,0);-ms-transform:matrix(0.174871,0.008752,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.174871,0.008752,-0.012497,0.249687,0,0);}
.mda_c00226{transform:matrix(0.175315,0.004208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175315,0.004208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175315,0.004208,-0.005998,0.249928,0,0);}
.m7c_c00226{transform:matrix(0.175347,0.003156,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175347,0.003156,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175347,0.003156,-0.004499,0.249960,0,0);}
.m78_c00226{transform:matrix(0.176166,0.003171,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176166,0.003171,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176166,0.003171,-0.004499,0.249960,0,0);}
.m36_c00226{transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);}
.m91_c00226{transform:matrix(0.176281,0.003173,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176281,0.003173,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176281,0.003173,-0.004499,0.249960,0,0);}
.m69_c00226{transform:matrix(0.176461,0.003176,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176461,0.003176,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176461,0.003176,-0.004499,0.249960,0,0);}
.m41_c00226{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00226{transform:matrix(0.177731,0.003199,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177731,0.003199,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177731,0.003199,-0.004499,0.249960,0,0);}
.m9b_c00226{transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177826,0.003201,-0.004499,0.249960,0,0);}
.mbe_c00226{transform:matrix(0.178150,0.002316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178150,0.002316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178150,0.002316,-0.003250,0.249979,0,0);}
.m59_c00226{transform:matrix(0.178861,0.003219,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178861,0.003219,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178861,0.003219,-0.004499,0.249960,0,0);}
.maa_c00226{transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);}
.m25_c00226{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.179626,0.003233,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179626,0.003233,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179626,0.003233,-0.004499,0.249960,0,0);}
.m9d_c00226{transform:matrix(0.180061,0.003241,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180061,0.003241,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180061,0.003241,-0.004499,0.249960,0,0);}
.m85_c00226{transform:matrix(0.180106,0.003242,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180106,0.003242,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180106,0.003242,-0.004499,0.249960,0,0);}
.m8c_c00226{transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);}
.m8e_c00226{transform:matrix(0.180481,0.003249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180481,0.003249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180481,0.003249,-0.004499,0.249960,0,0);}
.ma5_c00226{transform:matrix(0.180891,0.003256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180891,0.003256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180891,0.003256,-0.004499,0.249960,0,0);}
.m87_c00226{transform:matrix(0.181416,0.003265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181416,0.003265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181416,0.003265,-0.004499,0.249960,0,0);}
.m1f_c00226{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.mea_c00226{transform:matrix(0.182218,0.004373,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182218,0.004373,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182218,0.004373,-0.005998,0.249928,0,0);}
.m3b_c00226{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m7f_c00226{transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);}
.mc1_c00226{transform:matrix(0.182380,0.002371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182380,0.002371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182380,0.002371,-0.003250,0.249979,0,0);}
.ma2_c00226{transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);}
.m18_c00226{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.183857,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183857,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183857,0.002206,-0.003000,0.249982,0,0);}
.mbf_c00226{transform:matrix(0.183959,0.002391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183959,0.002391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183959,0.002391,-0.003250,0.249979,0,0);}
.m8d_c00226{transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);}
.m26_c00226{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00226{transform:matrix(0.185072,0.004442,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185072,0.004442,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185072,0.004442,-0.005998,0.249928,0,0);}
.m6_c00226{transform:matrix(0.185497,0.002226,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185497,0.002226,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185497,0.002226,-0.003000,0.249982,0,0);}
.m37_c00226{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m7b_c00226{transform:matrix(0.186015,0.003348,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186015,0.003348,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186015,0.003348,-0.004499,0.249960,0,0);}
.m64_c00226{transform:matrix(0.186210,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186210,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186210,0.003352,-0.004499,0.249960,0,0);}
.m3c_c00226{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.mef_c00226{transform:matrix(0.186781,0.009348,-0.012497,0.249687,0,0);-ms-transform:matrix(0.186781,0.009348,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.186781,0.009348,-0.012497,0.249687,0,0);}
.m27_c00226{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m98_c00226{transform:matrix(0.187800,0.003380,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187800,0.003380,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187800,0.003380,-0.004499,0.249960,0,0);}
.m70_c00226{transform:matrix(0.188659,0.003396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188659,0.003396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188659,0.003396,-0.004499,0.249960,0,0);}
.m35_c00226{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{transform:matrix(0.188774,0.003398,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188774,0.003398,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188774,0.003398,-0.004499,0.249960,0,0);}
.mb1_c00226{transform:matrix(0.188924,0.003401,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188924,0.003401,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188924,0.003401,-0.004499,0.249960,0,0);}
.m5e_c00226{transform:matrix(0.189219,0.003406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189219,0.003406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189219,0.003406,-0.004499,0.249960,0,0);}
.m88_c00226{transform:matrix(0.189504,0.003411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189504,0.003411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189504,0.003411,-0.004499,0.249960,0,0);}
.m9e_c00226{transform:matrix(0.189619,0.003413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189619,0.003413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189619,0.003413,-0.004499,0.249960,0,0);}
.md4_c00226{transform:matrix(0.189676,0.003604,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189676,0.003604,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189676,0.003604,-0.004749,0.249955,0,0);}
.m31_c00226{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.190256,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190256,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190256,0.002283,-0.003000,0.249982,0,0);}
.m1c_c00226{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m6d_c00226{transform:matrix(0.190809,0.003435,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190809,0.003435,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190809,0.003435,-0.004499,0.249960,0,0);}
.m52_c00226{transform:matrix(0.191149,0.003441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191149,0.003441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191149,0.003441,-0.004499,0.249960,0,0);}
.m73_c00226{transform:matrix(0.191254,0.003443,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191254,0.003443,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191254,0.003443,-0.004499,0.249960,0,0);}
.m5a_c00226{transform:matrix(0.191279,0.003443,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191279,0.003443,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191279,0.003443,-0.004499,0.249960,0,0);}
.m1a_c00226{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.ma1_c00226{transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);}
.mf1_c00226{transform:matrix(0.192135,0.009616,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192135,0.009616,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192135,0.009616,-0.012497,0.249687,0,0);}
.m6c_c00226{transform:matrix(0.192969,0.003473,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192969,0.003473,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192969,0.003473,-0.004499,0.249960,0,0);}
.m9_c00226{transform:matrix(0.193021,0.002316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193021,0.002316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193021,0.002316,-0.003000,0.249982,0,0);}
.m86_c00226{transform:matrix(0.194419,0.003500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194419,0.003500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194419,0.003500,-0.004499,0.249960,0,0);}
.mf0_c00226{transform:matrix(0.194556,0.009738,-0.012497,0.249687,0,0);-ms-transform:matrix(0.194556,0.009738,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.194556,0.009738,-0.012497,0.249687,0,0);}
.mdb_c00226{transform:matrix(0.194604,0.004670,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194604,0.004670,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194604,0.004670,-0.005998,0.249928,0,0);}
.m57_c00226{transform:matrix(0.194613,0.003503,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194613,0.003503,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194613,0.003503,-0.004499,0.249960,0,0);}
.m58_c00226{transform:matrix(0.194623,0.003503,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194623,0.003503,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194623,0.003503,-0.004499,0.249960,0,0);}
.m4d_c00226{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.195341,0.002344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195341,0.002344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195341,0.002344,-0.003000,0.249982,0,0);}
.m21_c00226{transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.me0_c00226{transform:matrix(0.195834,0.004700,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195834,0.004700,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195834,0.004700,-0.005998,0.249928,0,0);}
.mdd_c00226{transform:matrix(0.196268,0.004710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196268,0.004710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196268,0.004710,-0.005998,0.249928,0,0);}
.m63_c00226{transform:matrix(0.196378,0.003535,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196378,0.003535,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196378,0.003535,-0.004499,0.249960,0,0);}
.m6a_c00226{transform:matrix(0.196603,0.003539,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196603,0.003539,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196603,0.003539,-0.004499,0.249960,0,0);}
.mf5_c00226{transform:matrix(0.196694,0.009845,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196694,0.009845,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196694,0.009845,-0.012497,0.249687,0,0);}
.m56_c00226{transform:matrix(0.197218,0.003550,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197218,0.003550,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197218,0.003550,-0.004499,0.249960,0,0);}
.m9f_c00226{transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);}
.mc2_c00226{transform:matrix(0.197538,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197538,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197538,0.002568,-0.003250,0.249979,0,0);}
.m8a_c00226{transform:matrix(0.198128,0.003566,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198128,0.003566,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198128,0.003566,-0.004499,0.249960,0,0);}
.md0_c00226{transform:matrix(0.198919,0.003779,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198919,0.003779,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198919,0.003779,-0.004749,0.249955,0,0);}
.me3_c00226{transform:matrix(0.199133,0.004779,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199133,0.004779,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199133,0.004779,-0.005998,0.249928,0,0);}
.m0_c00226{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m96_c00226{transform:matrix(0.200068,0.003601,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200068,0.003601,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200068,0.003601,-0.004499,0.249960,0,0);}
.m9c_c00226{transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);}
.mce_c00226{transform:matrix(0.201093,0.010065,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201093,0.010065,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201093,0.010065,-0.012497,0.249687,0,0);}
.m80_c00226{transform:matrix(0.201892,0.003634,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201892,0.003634,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201892,0.003634,-0.004499,0.249960,0,0);}
.m47_c00226{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m82_c00226{transform:matrix(0.202157,0.003639,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202157,0.003639,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202157,0.003639,-0.004499,0.249960,0,0);}
.m99_c00226{transform:matrix(0.202362,0.003643,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202362,0.003643,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202362,0.003643,-0.004499,0.249960,0,0);}
.m4f_c00226{transform:matrix(0.203267,0.003659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203267,0.003659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203267,0.003659,-0.004499,0.249960,0,0);}
.m12_c00226{transform:matrix(0.203470,0.002442,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203470,0.002442,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203470,0.002442,-0.003000,0.249982,0,0);}
.m5f_c00226{transform:matrix(0.203992,0.003672,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203992,0.003672,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203992,0.003672,-0.004499,0.249960,0,0);}
.mbb_c00226{transform:matrix(0.204257,0.003677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204257,0.003677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204257,0.003677,-0.004499,0.249960,0,0);}
.m48_c00226{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m7a_c00226{transform:matrix(0.204542,0.003682,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204542,0.003682,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204542,0.003682,-0.004499,0.249960,0,0);}
.m55_c00226{transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);}
.m20_c00226{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.m71_c00226{transform:matrix(0.206347,0.003714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206347,0.003714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206347,0.003714,-0.004499,0.249960,0,0);}
.m66_c00226{transform:matrix(0.206757,0.003722,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206757,0.003722,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206757,0.003722,-0.004499,0.249960,0,0);}
.med_c00226{transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);}
.m81_c00226{transform:matrix(0.207186,0.003729,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207186,0.003729,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207186,0.003729,-0.004499,0.249960,0,0);}
.mcd_c00226{transform:matrix(0.207196,0.010370,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207196,0.010370,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207196,0.010370,-0.012497,0.249687,0,0);}
.m24_c00226{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m90_c00226{transform:matrix(0.207576,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207576,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207576,0.003736,-0.004499,0.249960,0,0);}
.mb5_c00226{transform:matrix(0.208276,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208276,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208276,0.003749,-0.004499,0.249960,0,0);}
.m3e_c00226{transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);}
.m7d_c00226{transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);}
.meb_c00226{transform:matrix(0.208725,0.005009,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208725,0.005009,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208725,0.005009,-0.005998,0.249928,0,0);}
.m53_c00226{transform:matrix(0.209376,0.003769,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209376,0.003769,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209376,0.003769,-0.004499,0.249960,0,0);}
.m79_c00226{transform:matrix(0.209441,0.003770,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209441,0.003770,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209441,0.003770,-0.004499,0.249960,0,0);}
.m22_c00226{transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);}
.ma6_c00226{transform:matrix(0.210416,0.003787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210416,0.003787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210416,0.003787,-0.004499,0.249960,0,0);}
.m33_c00226{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.md8_c00226{transform:matrix(0.211002,0.004009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211002,0.004009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211002,0.004009,-0.004749,0.249955,0,0);}
.m3a_c00226{transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);}
.m95_c00226{transform:matrix(0.211786,0.003812,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211786,0.003812,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211786,0.003812,-0.004499,0.249960,0,0);}
.m2f_c00226{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mf2_c00226{transform:matrix(0.212604,0.010641,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212604,0.010641,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212604,0.010641,-0.012497,0.249687,0,0);}
.m7e_c00226{transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);}
.mca_c00226{transform:matrix(0.213043,0.010663,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213043,0.010663,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213043,0.010663,-0.012497,0.249687,0,0);}
.me8_c00226{transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);}
.m43_c00226{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.me5_c00226{transform:matrix(0.213803,0.005131,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213803,0.005131,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213803,0.005131,-0.005998,0.249928,0,0);}
.m39_c00226{transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.214185,0.002570,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214185,0.002570,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214185,0.002570,-0.003000,0.249982,0,0);}
.mae_c00226{transform:matrix(0.214285,0.003857,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214285,0.003857,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214285,0.003857,-0.004499,0.249960,0,0);}
.mdf_c00226{transform:matrix(0.214543,0.005149,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214543,0.005149,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214543,0.005149,-0.005998,0.249928,0,0);}
.m45_c00226{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);}
.mde_c00226{transform:matrix(0.215243,0.005166,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215243,0.005166,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215243,0.005166,-0.005998,0.249928,0,0);}
.ma8_c00226{transform:matrix(0.215845,0.003885,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215845,0.003885,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215845,0.003885,-0.004499,0.249960,0,0);}
.m97_c00226{transform:matrix(0.216375,0.003895,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216375,0.003895,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216375,0.003895,-0.004499,0.249960,0,0);}
.m72_c00226{transform:matrix(0.217440,0.003914,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217440,0.003914,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217440,0.003914,-0.004499,0.249960,0,0);}
.m4c_c00226{transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.217580,0.003916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217580,0.003916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217580,0.003916,-0.004499,0.249960,0,0);}
.mc3_c00226{transform:matrix(0.217682,0.002830,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217682,0.002830,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217682,0.002830,-0.003250,0.249979,0,0);}
.m6b_c00226{transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);}
.m44_c00226{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.ma4_c00226{transform:matrix(0.218560,0.003934,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218560,0.003934,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218560,0.003934,-0.004499,0.249960,0,0);}
.m2e_c00226{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.mb7_c00226{transform:matrix(0.218895,0.003940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218895,0.003940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218895,0.003940,-0.004499,0.249960,0,0);}
.m28_c00226{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.me4_c00226{transform:matrix(0.219392,0.005265,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219392,0.005265,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219392,0.005265,-0.005998,0.249928,0,0);}
.md5_c00226{transform:matrix(0.220755,0.004194,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220755,0.004194,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220755,0.004194,-0.004749,0.249955,0,0);}
.m6e_c00226{transform:matrix(0.221384,0.003985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221384,0.003985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221384,0.003985,-0.004499,0.249960,0,0);}
.md7_c00226{transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);}
.m46_c00226{transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);}
.md1_c00226{transform:matrix(0.222425,0.004226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222425,0.004226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222425,0.004226,-0.004749,0.249955,0,0);}
.m2c_c00226{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.mec_c00226{transform:matrix(0.223441,0.005363,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223441,0.005363,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223441,0.005363,-0.005998,0.249928,0,0);}
.me6_c00226{transform:matrix(0.223486,0.005364,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223486,0.005364,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223486,0.005364,-0.005998,0.249928,0,0);}
.mbd_c00226{transform:matrix(0.223881,0.002910,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223881,0.002910,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223881,0.002910,-0.003250,0.249979,0,0);}
.me9_c00226{transform:matrix(0.224075,0.005378,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224075,0.005378,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224075,0.005378,-0.005998,0.249928,0,0);}
.mac_c00226{transform:matrix(0.224079,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224079,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224079,0.004033,-0.004499,0.249960,0,0);}
.mb9_c00226{transform:matrix(0.224394,0.004039,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224394,0.004039,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224394,0.004039,-0.004499,0.249960,0,0);}
.mba_c00226{transform:matrix(0.225184,0.004053,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225184,0.004053,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225184,0.004053,-0.004499,0.249960,0,0);}
.m3d_c00226{transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);}
.m75_c00226{transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);}
.mcb_c00226{transform:matrix(0.228114,0.011417,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228114,0.011417,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228114,0.011417,-0.012497,0.249687,0,0);}
.md9_c00226{transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);}
.m3f_c00226{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.md6_c00226{transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);}
.md2_c00226{transform:matrix(0.231983,0.004408,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231983,0.004408,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231983,0.004408,-0.004749,0.249955,0,0);}
.me7_c00226{transform:matrix(0.232553,0.005581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232553,0.005581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232553,0.005581,-0.005998,0.249928,0,0);}
.m42_c00226{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.mb8_c00226{transform:matrix(0.233182,0.004197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233182,0.004197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233182,0.004197,-0.004499,0.249960,0,0);}
.mcf_c00226{transform:matrix(0.233877,0.011706,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233877,0.011706,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233877,0.011706,-0.012497,0.249687,0,0);}
.mcc_c00226{transform:matrix(0.233992,0.011711,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233992,0.011711,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233992,0.011711,-0.012497,0.249687,0,0);}
.m4b_c00226{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.mab_c00226{transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);}
.m29_c00226{transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235735,0.000000,0.000000,0.250000,0,0);}
.m67_c00226{transform:matrix(0.236027,0.004248,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236027,0.004248,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236027,0.004248,-0.004499,0.249960,0,0);}
.md3_c00226{transform:matrix(0.236787,0.004499,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236787,0.004499,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236787,0.004499,-0.004749,0.249955,0,0);}
.ma9_c00226{transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);}
.m49_c00226{transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);}
.me2_c00226{transform:matrix(0.238481,0.005724,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238481,0.005724,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238481,0.005724,-0.005998,0.249928,0,0);}
.m38_c00226{transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);}
.m40_c00226{transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);}
.mad_c00226{transform:matrix(0.243836,0.004389,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243836,0.004389,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243836,0.004389,-0.004499,0.249960,0,0);}
.mb0_c00226{transform:matrix(0.244820,0.004407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244820,0.004407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244820,0.004407,-0.004499,0.249960,0,0);}
.m6f_c00226{transform:matrix(0.246815,0.004443,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246815,0.004443,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246815,0.004443,-0.004499,0.249960,0,0);}
.mc4_c00226{transform:matrix(0.254598,0.003310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254598,0.003310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254598,0.003310,-0.003250,0.249979,0,0);}
.me1_c00226{transform:matrix(0.255261,0.006126,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255261,0.006126,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255261,0.006126,-0.005998,0.249928,0,0);}
.mf3_c00226{transform:matrix(0.262087,0.013117,-0.012497,0.249687,0,0);-ms-transform:matrix(0.262087,0.013117,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.262087,0.013117,-0.012497,0.249687,0,0);}
.m60_c00226{transform:matrix(0.264392,0.004759,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264392,0.004759,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264392,0.004759,-0.004499,0.249960,0,0);}
.m62_c00226{transform:matrix(0.285269,0.005135,-0.004499,0.249960,0,0);-ms-transform:matrix(0.285269,0.005135,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.285269,0.005135,-0.004499,0.249960,0,0);}
.mf4_c00226{transform:matrix(0.337173,0.016876,-0.012497,0.249687,0,0);-ms-transform:matrix(0.337173,0.016876,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.337173,0.016876,-0.012497,0.249687,0,0);}
.maf_c00226{transform:matrix(0.431705,0.007771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.431705,0.007771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.431705,0.007771,-0.004499,0.249960,0,0);}
.m61_c00226{transform:matrix(1.013841,0.018249,-0.004499,0.249960,0,0);-ms-transform:matrix(1.013841,0.018249,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.013841,0.018249,-0.004499,0.249960,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00226{word-spacing:0.000000px;}
.fc0_c00226{color:transparent;}
.fs15_c00226{font-size:53.554525px;}
.fs18_c00226{font-size:56.714202px;}
.fs1a_c00226{font-size:57.760423px;}
.fs17_c00226{font-size:57.764465px;}
.fs5_c00226{font-size:58.800000px;}
.fsa_c00226{font-size:58.809525px;}
.fs1c_c00226{font-size:58.816932px;}
.fs7_c00226{font-size:59.850000px;}
.fs11_c00226{font-size:59.859695px;}
.fs19_c00226{font-size:59.860802px;}
.fs1b_c00226{font-size:59.867234px;}
.fs13_c00226{font-size:60.909865px;}
.fs6_c00226{font-size:61.950000px;}
.fsc_c00226{font-size:61.960035px;}
.fsd_c00226{font-size:63.010205px;}
.fs9_c00226{font-size:64.060375px;}
.fs0_c00226{font-size:66.150000px;}
.fse_c00226{font-size:66.160715px;}
.fs1d_c00226{font-size:66.166569px;}
.fs3_c00226{font-size:67.200000px;}
.fs10_c00226{font-size:67.210886px;}
.fsf_c00226{font-size:68.261056px;}
.fs14_c00226{font-size:69.305856px;}
.fs8_c00226{font-size:69.311226px;}
.fs4_c00226{font-size:70.350000px;}
.fs1_c00226{font-size:70.355065px;}
.fsb_c00226{font-size:70.361396px;}
.fs12_c00226{font-size:73.511906px;}
.fs2_c00226{font-size:76.655519px;}
.fs16_c00226{font-size:97.674458px;}
.y0_c00226{bottom:0.000000px;}
.yee_c00226{bottom:19.126350px;}
.yed_c00226{bottom:19.697325px;}
.yec_c00226{bottom:21.447450px;}
.yeb_c00226{bottom:22.161375px;}
.yea_c00226{bottom:24.400275px;}
.ye9_c00226{bottom:25.602300px;}
.ye8_c00226{bottom:30.824325px;}
.ye7_c00226{bottom:31.618500px;}
.ye6_c00226{bottom:39.369360px;}
.ye5_c00226{bottom:40.664376px;}
.ye4_c00226{bottom:42.088740px;}
.ye3_c00226{bottom:42.674964px;}
.ye2_c00226{bottom:44.185296px;}
.ye1_c00226{bottom:46.504920px;}
.ye0_c00226{bottom:47.983752px;}
.ydf_c00226{bottom:48.605028px;}
.yde_c00226{bottom:56.546880px;}
.ydd_c00226{bottom:59.308464px;}
.ydc_c00226{bottom:59.954736px;}
.ydb_c00226{bottom:62.444520px;}
.yda_c00226{bottom:62.811816px;}
.yd9_c00226{bottom:64.660356px;}
.yd8_c00226{bottom:65.619240px;}
.yd7_c00226{bottom:72.681288px;}
.yd6_c00226{bottom:73.846248px;}
.yd5_c00226{bottom:74.333508px;}
.yd4_c00226{bottom:75.324336px;}
.yd3_c00226{bottom:75.808644px;}
.yd2_c00226{bottom:77.352000px;}
.yc8_c00226{bottom:79.042410px;}
.yc7_c00226{bottom:80.657289px;}
.yc6_c00226{bottom:81.820419px;}
.yd1_c00226{bottom:91.331163px;}
.yd0_c00226{bottom:92.174200px;}
.ycf_c00226{bottom:93.895306px;}
.yce_c00226{bottom:94.408813px;}
.ycd_c00226{bottom:95.040824px;}
.yc5_c00226{bottom:96.095365px;}
.yc4_c00226{bottom:99.563224px;}
.yc3_c00226{bottom:100.995733px;}
.ycc_c00226{bottom:108.551982px;}
.ycb_c00226{bottom:109.556892px;}
.yca_c00226{bottom:110.670672px;}
.yc9_c00226{bottom:110.973000px;}
.yc2_c00226{bottom:114.160800px;}
.yc1_c00226{bottom:115.236750px;}
.yc0_c00226{bottom:118.017000px;}
.ybf_c00226{bottom:128.895877px;}
.ybe_c00226{bottom:132.397834px;}
.ybd_c00226{bottom:134.734617px;}
.ybc_c00226{bottom:142.646265px;}
.ybb_c00226{bottom:142.941085px;}
.yba_c00226{bottom:143.629084px;}
.yb9_c00226{bottom:144.401538px;}
.yb8_c00226{bottom:145.107633px;}
.yb7_c00226{bottom:145.325604px;}
.yb6_c00226{bottom:145.760357px;}
.yb5_c00226{bottom:146.073000px;}
.yb4_c00226{bottom:159.409722px;}
.yb3_c00226{bottom:160.892610px;}
.yb2_c00226{bottom:161.438046px;}
.yb1_c00226{bottom:162.632685px;}
.yb0_c00226{bottom:163.597635px;}
.yaf_c00226{bottom:163.859115px;}
.yae_c00226{bottom:175.648545px;}
.yad_c00226{bottom:176.234133px;}
.yac_c00226{bottom:177.109713px;}
.yab_c00226{bottom:177.596733px;}
.yaa_c00226{bottom:179.968344px;}
.ya9_c00226{bottom:180.348735px;}
.ya8_c00226{bottom:181.684533px;}
.ya7_c00226{bottom:193.480011px;}
.ya6_c00226{bottom:195.649575px;}
.ya5_c00226{bottom:196.204380px;}
.ya4_c00226{bottom:197.565612px;}
.ya3_c00226{bottom:197.994342px;}
.ya2_c00226{bottom:199.005060px;}
.ya1_c00226{bottom:199.240356px;}
.ya0_c00226{bottom:199.518420px;}
.y9f_c00226{bottom:200.858640px;}
.y9e_c00226{bottom:209.821089px;}
.y9d_c00226{bottom:211.058538px;}
.y9c_c00226{bottom:211.538313px;}
.y9b_c00226{bottom:212.863629px;}
.y9a_c00226{bottom:214.056342px;}
.y99_c00226{bottom:214.574493px;}
.y98_c00226{bottom:215.132169px;}
.y97_c00226{bottom:216.790869px;}
.y96_c00226{bottom:227.575545px;}
.y95_c00226{bottom:228.042600px;}
.y94_c00226{bottom:229.124436px;}
.y93_c00226{bottom:230.109399px;}
.y92_c00226{bottom:230.601867px;}
.y91_c00226{bottom:231.359541px;}
.y90_c00226{bottom:231.870279px;}
.y8f_c00226{bottom:232.350729px;}
.y8e_c00226{bottom:233.666079px;}
.y8d_c00226{bottom:234.613584px;}
.y8c_c00226{bottom:245.310090px;}
.y8b_c00226{bottom:246.017601px;}
.y8a_c00226{bottom:246.816813px;}
.y89_c00226{bottom:247.068735px;}
.y88_c00226{bottom:247.935306px;}
.y87_c00226{bottom:248.875554px;}
.y86_c00226{bottom:249.232341px;}
.y85_c00226{bottom:250.646688px;}
.y84_c00226{bottom:251.079204px;}
.y83_c00226{bottom:263.603286px;}
.y82_c00226{bottom:264.266595px;}
.y81_c00226{bottom:265.394532px;}
.y80_c00226{bottom:266.363808px;}
.y7f_c00226{bottom:267.138954px;}
.y7e_c00226{bottom:268.024869px;}
.y7d_c00226{bottom:268.433316px;}
.y7c_c00226{bottom:269.176935px;}
.y7b_c00226{bottom:281.658564px;}
.y7a_c00226{bottom:282.792975px;}
.y79_c00226{bottom:284.167320px;}
.y78_c00226{bottom:284.684802px;}
.y77_c00226{bottom:285.080589px;}
.y76_c00226{bottom:286.189038px;}
.y75_c00226{bottom:298.551195px;}
.y74_c00226{bottom:298.913139px;}
.y73_c00226{bottom:300.036897px;}
.y72_c00226{bottom:300.263085px;}
.y71_c00226{bottom:301.105677px;}
.y70_c00226{bottom:301.627950px;}
.y6f_c00226{bottom:302.016897px;}
.y6e_c00226{bottom:303.190623px;}
.y6d_c00226{bottom:303.481401px;}
.y6c_c00226{bottom:304.280127px;}
.y6b_c00226{bottom:316.716267px;}
.y6a_c00226{bottom:317.419752px;}
.y69_c00226{bottom:318.008895px;}
.y68_c00226{bottom:318.205893px;}
.y67_c00226{bottom:318.388032px;}
.y66_c00226{bottom:319.090194px;}
.y65_c00226{bottom:319.454580px;}
.y64_c00226{bottom:319.652145px;}
.y63_c00226{bottom:320.210007px;}
.y62_c00226{bottom:334.816785px;}
.y60_c00226{bottom:334.816836px;}
.y61_c00226{bottom:334.816911px;}
.y5b_c00226{bottom:334.816962px;}
.y5c_c00226{bottom:334.817304px;}
.y5f_c00226{bottom:334.817574px;}
.y5e_c00226{bottom:334.817580px;}
.y5d_c00226{bottom:334.817979px;}
.y5a_c00226{bottom:350.083713px;}
.y59_c00226{bottom:351.941220px;}
.y58_c00226{bottom:352.329735px;}
.y57_c00226{bottom:352.885560px;}
.y56_c00226{bottom:366.632604px;}
.y55_c00226{bottom:367.004022px;}
.y54_c00226{bottom:367.656414px;}
.y53_c00226{bottom:368.455671px;}
.y52_c00226{bottom:368.719098px;}
.y51_c00226{bottom:369.696087px;}
.y50_c00226{bottom:370.169856px;}
.y4f_c00226{bottom:383.692266px;}
.y4e_c00226{bottom:383.939127px;}
.y4d_c00226{bottom:384.509313px;}
.y4c_c00226{bottom:384.801129px;}
.y4b_c00226{bottom:385.427610px;}
.y4a_c00226{bottom:386.686593px;}
.y49_c00226{bottom:386.992908px;}
.y48_c00226{bottom:387.940446px;}
.y47_c00226{bottom:388.534500px;}
.y46_c00226{bottom:400.986000px;}
.y45_c00226{bottom:402.856500px;}
.y44_c00226{bottom:403.456500px;}
.y43_c00226{bottom:404.403000px;}
.y42_c00226{bottom:405.546000px;}
.y41_c00226{bottom:406.626000px;}
.y40_c00226{bottom:417.795000px;}
.y3f_c00226{bottom:418.320000px;}
.y3e_c00226{bottom:418.585500px;}
.y3d_c00226{bottom:419.521500px;}
.y3c_c00226{bottom:419.761500px;}
.y3b_c00226{bottom:420.415500px;}
.y3a_c00226{bottom:420.594000px;}
.y39_c00226{bottom:420.931500px;}
.y38_c00226{bottom:435.181500px;}
.y37_c00226{bottom:435.799500px;}
.y36_c00226{bottom:436.276500px;}
.y35_c00226{bottom:436.441500px;}
.y34_c00226{bottom:436.711500px;}
.y33_c00226{bottom:437.664000px;}
.y32_c00226{bottom:438.291000px;}
.y31_c00226{bottom:438.751500px;}
.y30_c00226{bottom:452.065500px;}
.y2f_c00226{bottom:452.476500px;}
.y2e_c00226{bottom:453.202500px;}
.y2d_c00226{bottom:453.415500px;}
.y2c_c00226{bottom:454.975500px;}
.y2b_c00226{bottom:455.389500px;}
.y2a_c00226{bottom:455.734500px;}
.y29_c00226{bottom:456.843000px;}
.y28_c00226{bottom:469.320000px;}
.y27_c00226{bottom:469.863000px;}
.y26_c00226{bottom:470.059500px;}
.y25_c00226{bottom:470.287500px;}
.y24_c00226{bottom:470.863500px;}
.y23_c00226{bottom:471.315000px;}
.y22_c00226{bottom:471.558000px;}
.y21_c00226{bottom:471.775500px;}
.y20_c00226{bottom:472.164000px;}
.y1f_c00226{bottom:472.500000px;}
.y1e_c00226{bottom:486.510000px;}
.y1d_c00226{bottom:486.850500px;}
.y1c_c00226{bottom:487.410000px;}
.y1b_c00226{bottom:488.034000px;}
.y1a_c00226{bottom:488.949000px;}
.y19_c00226{bottom:489.186000px;}
.y18_c00226{bottom:490.053000px;}
.y17_c00226{bottom:505.749000px;}
.y16_c00226{bottom:521.745588px;}
.y15_c00226{bottom:522.324888px;}
.y14_c00226{bottom:522.687780px;}
.y13_c00226{bottom:523.177452px;}
.y12_c00226{bottom:523.738452px;}
.y11_c00226{bottom:523.880148px;}
.y10_c00226{bottom:524.127270px;}
.yf_c00226{bottom:524.881572px;}
.y7_c00226{bottom:540.405432px;}
.y9_c00226{bottom:540.405666px;}
.y8_c00226{bottom:540.405990px;}
.ya_c00226{bottom:540.406104px;}
.yb_c00226{bottom:540.406740px;}
.yc_c00226{bottom:540.407436px;}
.yd_c00226{bottom:540.407928px;}
.ye_c00226{bottom:540.407946px;}
.y6_c00226{bottom:557.106882px;}
.y5_c00226{bottom:557.965464px;}
.y4_c00226{bottom:558.473478px;}
.y3_c00226{bottom:559.345722px;}
.y2_c00226{bottom:559.711500px;}
.y1_c00226{bottom:573.592500px;}
.h17_c00226{height:53.554525px;}
.h1a_c00226{height:56.714202px;}
.h1c_c00226{height:57.760423px;}
.h19_c00226{height:57.764465px;}
.h7_c00226{height:58.800000px;}
.hc_c00226{height:58.809525px;}
.h1e_c00226{height:58.816932px;}
.h9_c00226{height:59.850000px;}
.h13_c00226{height:59.859695px;}
.h1b_c00226{height:59.860802px;}
.h1d_c00226{height:59.867234px;}
.h15_c00226{height:60.909865px;}
.h8_c00226{height:61.950000px;}
.he_c00226{height:61.960035px;}
.hf_c00226{height:63.010205px;}
.hb_c00226{height:64.060375px;}
.h2_c00226{height:66.150000px;}
.h10_c00226{height:66.160715px;}
.h1f_c00226{height:66.166569px;}
.h5_c00226{height:67.200000px;}
.h12_c00226{height:67.210886px;}
.h11_c00226{height:68.261056px;}
.h16_c00226{height:69.305856px;}
.ha_c00226{height:69.311226px;}
.h6_c00226{height:70.350000px;}
.h3_c00226{height:70.355065px;}
.hd_c00226{height:70.361396px;}
.h14_c00226{height:73.511906px;}
.h4_c00226{height:76.655519px;}
.h18_c00226{height:97.674458px;}
.h0_c00226{height:616.140000px;}
.h1_c00226{height:616.500000px;}
.w0_c00226{width:378.540000px;}
.w1_c00226{width:378.750000px;}
.x0_c00226{left:0.000000px;}
.x65_c00226{left:23.455992px;}
.x52_c00226{left:24.595845px;}
.x36_c00226{left:25.656000px;}
.x3_c00226{left:27.163500px;}
.x74_c00226{left:28.338000px;}
.x4a_c00226{left:30.239658px;}
.x32_c00226{left:31.965000px;}
.x3b_c00226{left:34.066500px;}
.x14_c00226{left:35.370000px;}
.x8_c00226{left:41.851482px;}
.x7e_c00226{left:44.732116px;}
.x5b_c00226{left:47.273601px;}
.x76_c00226{left:52.143163px;}
.x7a_c00226{left:53.848644px;}
.x75_c00226{left:55.383348px;}
.x4_c00226{left:57.645000px;}
.x33_c00226{left:60.060000px;}
.x2c_c00226{left:61.738500px;}
.x5e_c00226{left:63.423780px;}
.x53_c00226{left:64.551414px;}
.x3c_c00226{left:67.069500px;}
.x48_c00226{left:68.218587px;}
.x34_c00226{left:74.920500px;}
.x37_c00226{left:77.109000px;}
.x54_c00226{left:79.121901px;}
.x15_c00226{left:82.080000px;}
.x6a_c00226{left:83.879004px;}
.x66_c00226{left:85.685028px;}
.x1b_c00226{left:88.191000px;}
.x77_c00226{left:91.491993px;}
.x9_c00226{left:92.885826px;}
.xf_c00226{left:95.723922px;}
.x49_c00226{left:98.138787px;}
.x6b_c00226{left:101.177262px;}
.x59_c00226{left:103.731375px;}
.x1c_c00226{left:105.129000px;}
.x28_c00226{left:106.987500px;}
.x16_c00226{left:108.810000px;}
.x2d_c00226{left:110.004000px;}
.x4e_c00226{left:111.108861px;}
.x21_c00226{left:112.453500px;}
.x62_c00226{left:116.074296px;}
.xa_c00226{left:117.727908px;}
.x3d_c00226{left:119.710500px;}
.x44_c00226{left:122.427558px;}
.x5_c00226{left:130.332000px;}
.x38_c00226{left:131.545500px;}
.x22_c00226{left:134.593500px;}
.x3e_c00226{left:136.728000px;}
.x55_c00226{left:137.826795px;}
.x45_c00226{left:139.980003px;}
.x79_c00226{left:145.886444px;}
.x17_c00226{left:149.310000px;}
.x70_c00226{left:152.410500px;}
.x56_c00226{left:157.267593px;}
.x5a_c00226{left:158.502444px;}
.x5f_c00226{left:159.554412px;}
.x1_c00226{left:160.650000px;}
.x4b_c00226{left:162.831615px;}
.x4f_c00226{left:165.122721px;}
.xb_c00226{left:167.682108px;}
.x1d_c00226{left:170.460000px;}
.x6_c00226{left:172.666500px;}
.x6f_c00226{left:174.328518px;}
.x23_c00226{left:175.644000px;}
.x39_c00226{left:176.649000px;}
.x50_c00226{left:179.159490px;}
.x10_c00226{left:182.126466px;}
.x2e_c00226{left:183.228000px;}
.x63_c00226{left:187.364601px;}
.x18_c00226{left:191.700000px;}
.x46_c00226{left:193.219365px;}
.x51_c00226{left:194.271840px;}
.x7b_c00226{left:200.887920px;}
.x67_c00226{left:202.500234px;}
.x2f_c00226{left:203.952000px;}
.x3a_c00226{left:205.239000px;}
.x3f_c00226{left:206.671500px;}
.x6c_c00226{left:209.009013px;}
.x60_c00226{left:211.667796px;}
.x1e_c00226{left:215.001000px;}
.x29_c00226{left:216.673500px;}
.x7f_c00226{left:217.817858px;}
.xc_c00226{left:219.256542px;}
.x7c_c00226{left:221.062032px;}
.x68_c00226{left:223.819656px;}
.x57_c00226{left:225.507636px;}
.x11_c00226{left:226.683006px;}
.x24_c00226{left:228.058500px;}
.x6d_c00226{left:231.147420px;}
.x78_c00226{left:235.533000px;}
.x47_c00226{left:236.715714px;}
.x5c_c00226{left:238.704189px;}
.x4c_c00226{left:240.064617px;}
.x40_c00226{left:241.476000px;}
.x64_c00226{left:242.570634px;}
.x7_c00226{left:244.215000px;}
.x25_c00226{left:248.799000px;}
.x7d_c00226{left:250.718904px;}
.x30_c00226{left:253.375500px;}
.x1f_c00226{left:254.964000px;}
.x41_c00226{left:257.688000px;}
.x12_c00226{left:259.674402px;}
.x19_c00226{left:262.170000px;}
.x71_c00226{left:264.753000px;}
.x26_c00226{left:266.670000px;}
.x2a_c00226{left:268.780500px;}
.x6e_c00226{left:270.954558px;}
.x2_c00226{left:277.830000px;}
.x20_c00226{left:279.270000px;}
.x1a_c00226{left:283.770000px;}
.x4d_c00226{left:286.242075px;}
.x72_c00226{left:287.431500px;}
.x42_c00226{left:289.365000px;}
.x73_c00226{left:290.590809px;}
.x2b_c00226{left:291.649500px;}
.x35_c00226{left:293.397000px;}
.xd_c00226{left:298.101900px;}
.x31_c00226{left:300.951000px;}
.x43_c00226{left:303.079500px;}
.x69_c00226{left:307.255641px;}
.x58_c00226{left:311.109558px;}
.x13_c00226{left:312.325032px;}
.x5d_c00226{left:314.074989px;}
.x27_c00226{left:316.032000px;}
.x61_c00226{left:317.259402px;}
.xe_c00226{left:318.353316px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.fs15_c00226{font-size:47.604022pt;}
.fs18_c00226{font-size:50.412624pt;}
.fs1a_c00226{font-size:51.342598pt;}
.fs17_c00226{font-size:51.346191pt;}
.fs5_c00226{font-size:52.266667pt;}
.fsa_c00226{font-size:52.275133pt;}
.fs1c_c00226{font-size:52.281717pt;}
.fs7_c00226{font-size:53.200000pt;}
.fs11_c00226{font-size:53.208618pt;}
.fs19_c00226{font-size:53.209602pt;}
.fs1b_c00226{font-size:53.215319pt;}
.fs13_c00226{font-size:54.142102pt;}
.fs6_c00226{font-size:55.066667pt;}
.fsc_c00226{font-size:55.075587pt;}
.fsd_c00226{font-size:56.009071pt;}
.fs9_c00226{font-size:56.942556pt;}
.fs0_c00226{font-size:58.800000pt;}
.fse_c00226{font-size:58.809525pt;}
.fs1d_c00226{font-size:58.814728pt;}
.fs3_c00226{font-size:59.733333pt;}
.fs10_c00226{font-size:59.743009pt;}
.fsf_c00226{font-size:60.676494pt;}
.fs14_c00226{font-size:61.605205pt;}
.fs8_c00226{font-size:61.609978pt;}
.fs4_c00226{font-size:62.533333pt;}
.fs1_c00226{font-size:62.537836pt;}
.fsb_c00226{font-size:62.543463pt;}
.fs12_c00226{font-size:65.343916pt;}
.fs2_c00226{font-size:68.138239pt;}
.fs16_c00226{font-size:86.821741pt;}
.y0_c00226{bottom:0.000000pt;}
.yee_c00226{bottom:17.001200pt;}
.yed_c00226{bottom:17.508733pt;}
.yec_c00226{bottom:19.064400pt;}
.yeb_c00226{bottom:19.699000pt;}
.yea_c00226{bottom:21.689133pt;}
.ye9_c00226{bottom:22.757600pt;}
.ye8_c00226{bottom:27.399400pt;}
.ye7_c00226{bottom:28.105333pt;}
.ye6_c00226{bottom:34.994987pt;}
.ye5_c00226{bottom:36.146112pt;}
.ye4_c00226{bottom:37.412213pt;}
.ye3_c00226{bottom:37.933301pt;}
.ye2_c00226{bottom:39.275819pt;}
.ye1_c00226{bottom:41.337707pt;}
.ye0_c00226{bottom:42.652224pt;}
.ydf_c00226{bottom:43.204469pt;}
.yde_c00226{bottom:50.263893pt;}
.ydd_c00226{bottom:52.718635pt;}
.ydc_c00226{bottom:53.293099pt;}
.ydb_c00226{bottom:55.506240pt;}
.yda_c00226{bottom:55.832725pt;}
.yd9_c00226{bottom:57.475872pt;}
.yd8_c00226{bottom:58.328213pt;}
.yd7_c00226{bottom:64.605589pt;}
.yd6_c00226{bottom:65.641109pt;}
.yd5_c00226{bottom:66.074229pt;}
.yd4_c00226{bottom:66.954965pt;}
.yd3_c00226{bottom:67.385461pt;}
.yd2_c00226{bottom:68.757333pt;}
.yc8_c00226{bottom:70.259920pt;}
.yc7_c00226{bottom:71.695368pt;}
.yc6_c00226{bottom:72.729261pt;}
.yd1_c00226{bottom:81.183256pt;}
.yd0_c00226{bottom:81.932623pt;}
.ycf_c00226{bottom:83.462495pt;}
.yce_c00226{bottom:83.918945pt;}
.ycd_c00226{bottom:84.480732pt;}
.yc5_c00226{bottom:85.418103pt;}
.yc4_c00226{bottom:88.500644pt;}
.yc3_c00226{bottom:89.773985pt;}
.ycc_c00226{bottom:96.490651pt;}
.ycb_c00226{bottom:97.383904pt;}
.yca_c00226{bottom:98.373931pt;}
.yc9_c00226{bottom:98.642667pt;}
.yc2_c00226{bottom:101.476267pt;}
.yc1_c00226{bottom:102.432667pt;}
.yc0_c00226{bottom:104.904000pt;}
.ybf_c00226{bottom:114.574113pt;}
.ybe_c00226{bottom:117.686964pt;}
.ybd_c00226{bottom:119.764104pt;}
.ybc_c00226{bottom:126.796680pt;}
.ybb_c00226{bottom:127.058743pt;}
.yba_c00226{bottom:127.670297pt;}
.yb9_c00226{bottom:128.356923pt;}
.yb8_c00226{bottom:128.984563pt;}
.yb7_c00226{bottom:129.178315pt;}
.yb6_c00226{bottom:129.564761pt;}
.yb5_c00226{bottom:129.842667pt;}
.yb4_c00226{bottom:141.697531pt;}
.yb3_c00226{bottom:143.015653pt;}
.yb2_c00226{bottom:143.500485pt;}
.yb1_c00226{bottom:144.562387pt;}
.yb0_c00226{bottom:145.420120pt;}
.yaf_c00226{bottom:145.652547pt;}
.yae_c00226{bottom:156.132040pt;}
.yad_c00226{bottom:156.652563pt;}
.yac_c00226{bottom:157.430856pt;}
.yab_c00226{bottom:157.863763pt;}
.yaa_c00226{bottom:159.971861pt;}
.ya9_c00226{bottom:160.309987pt;}
.ya8_c00226{bottom:161.497363pt;}
.ya7_c00226{bottom:171.982232pt;}
.ya6_c00226{bottom:173.910733pt;}
.ya5_c00226{bottom:174.403893pt;}
.ya4_c00226{bottom:175.613877pt;}
.ya3_c00226{bottom:175.994971pt;}
.ya2_c00226{bottom:176.893387pt;}
.ya1_c00226{bottom:177.102539pt;}
.ya0_c00226{bottom:177.349707pt;}
.y9f_c00226{bottom:178.541013pt;}
.y9e_c00226{bottom:186.507635pt;}
.y9d_c00226{bottom:187.607589pt;}
.y9c_c00226{bottom:188.034056pt;}
.y9b_c00226{bottom:189.212115pt;}
.y9a_c00226{bottom:190.272304pt;}
.y99_c00226{bottom:190.732883pt;}
.y98_c00226{bottom:191.228595pt;}
.y97_c00226{bottom:192.702995pt;}
.y96_c00226{bottom:202.289373pt;}
.y95_c00226{bottom:202.704533pt;}
.y94_c00226{bottom:203.666165pt;}
.y93_c00226{bottom:204.541688pt;}
.y92_c00226{bottom:204.979437pt;}
.y91_c00226{bottom:205.652925pt;}
.y90_c00226{bottom:206.106915pt;}
.y8f_c00226{bottom:206.533981pt;}
.y8e_c00226{bottom:207.703181pt;}
.y8d_c00226{bottom:208.545408pt;}
.y8c_c00226{bottom:218.053413pt;}
.y8b_c00226{bottom:218.682312pt;}
.y8a_c00226{bottom:219.392723pt;}
.y89_c00226{bottom:219.616653pt;}
.y88_c00226{bottom:220.386939pt;}
.y87_c00226{bottom:221.222715pt;}
.y86_c00226{bottom:221.539859pt;}
.y85_c00226{bottom:222.797056pt;}
.y84_c00226{bottom:223.181515pt;}
.y83_c00226{bottom:234.314032pt;}
.y82_c00226{bottom:234.903640pt;}
.y81_c00226{bottom:235.906251pt;}
.y80_c00226{bottom:236.767829pt;}
.y7f_c00226{bottom:237.456848pt;}
.y7e_c00226{bottom:238.244328pt;}
.y7d_c00226{bottom:238.607392pt;}
.y7c_c00226{bottom:239.268387pt;}
.y7b_c00226{bottom:250.363168pt;}
.y7a_c00226{bottom:251.371533pt;}
.y79_c00226{bottom:252.593173pt;}
.y78_c00226{bottom:253.053157pt;}
.y77_c00226{bottom:253.404968pt;}
.y76_c00226{bottom:254.390256pt;}
.y75_c00226{bottom:265.378840pt;}
.y74_c00226{bottom:265.700568pt;}
.y73_c00226{bottom:266.699464pt;}
.y72_c00226{bottom:266.900520pt;}
.y71_c00226{bottom:267.649491pt;}
.y70_c00226{bottom:268.113733pt;}
.y6f_c00226{bottom:268.459464pt;}
.y6e_c00226{bottom:269.502776pt;}
.y6d_c00226{bottom:269.761245pt;}
.y6c_c00226{bottom:270.471224pt;}
.y6b_c00226{bottom:281.525571pt;}
.y6a_c00226{bottom:282.150891pt;}
.y69_c00226{bottom:282.674573pt;}
.y68_c00226{bottom:282.849683pt;}
.y67_c00226{bottom:283.011584pt;}
.y66_c00226{bottom:283.635728pt;}
.y65_c00226{bottom:283.959627pt;}
.y64_c00226{bottom:284.135240pt;}
.y63_c00226{bottom:284.631117pt;}
.y62_c00226{bottom:297.614920pt;}
.y60_c00226{bottom:297.614965pt;}
.y61_c00226{bottom:297.615032pt;}
.y5b_c00226{bottom:297.615077pt;}
.y5c_c00226{bottom:297.615381pt;}
.y5f_c00226{bottom:297.615621pt;}
.y5e_c00226{bottom:297.615627pt;}
.y5d_c00226{bottom:297.615981pt;}
.y5a_c00226{bottom:311.185523pt;}
.y59_c00226{bottom:312.836640pt;}
.y58_c00226{bottom:313.181987pt;}
.y57_c00226{bottom:313.676053pt;}
.y56_c00226{bottom:325.895648pt;}
.y55_c00226{bottom:326.225797pt;}
.y54_c00226{bottom:326.805701pt;}
.y53_c00226{bottom:327.516152pt;}
.y52_c00226{bottom:327.750309pt;}
.y51_c00226{bottom:328.618744pt;}
.y50_c00226{bottom:329.039872pt;}
.y4f_c00226{bottom:341.059792pt;}
.y4e_c00226{bottom:341.279224pt;}
.y4d_c00226{bottom:341.786056pt;}
.y4c_c00226{bottom:342.045448pt;}
.y4b_c00226{bottom:342.602320pt;}
.y4a_c00226{bottom:343.721416pt;}
.y49_c00226{bottom:343.993696pt;}
.y48_c00226{bottom:344.835952pt;}
.y47_c00226{bottom:345.364000pt;}
.y46_c00226{bottom:356.432000pt;}
.y45_c00226{bottom:358.094667pt;}
.y44_c00226{bottom:358.628000pt;}
.y43_c00226{bottom:359.469333pt;}
.y42_c00226{bottom:360.485333pt;}
.y41_c00226{bottom:361.445333pt;}
.y40_c00226{bottom:371.373333pt;}
.y3f_c00226{bottom:371.840000pt;}
.y3e_c00226{bottom:372.076000pt;}
.y3d_c00226{bottom:372.908000pt;}
.y3c_c00226{bottom:373.121333pt;}
.y3b_c00226{bottom:373.702667pt;}
.y3a_c00226{bottom:373.861333pt;}
.y39_c00226{bottom:374.161333pt;}
.y38_c00226{bottom:386.828000pt;}
.y37_c00226{bottom:387.377333pt;}
.y36_c00226{bottom:387.801333pt;}
.y35_c00226{bottom:387.948000pt;}
.y34_c00226{bottom:388.188000pt;}
.y33_c00226{bottom:389.034667pt;}
.y32_c00226{bottom:389.592000pt;}
.y31_c00226{bottom:390.001333pt;}
.y30_c00226{bottom:401.836000pt;}
.y2f_c00226{bottom:402.201333pt;}
.y2e_c00226{bottom:402.846667pt;}
.y2d_c00226{bottom:403.036000pt;}
.y2c_c00226{bottom:404.422667pt;}
.y2b_c00226{bottom:404.790667pt;}
.y2a_c00226{bottom:405.097333pt;}
.y29_c00226{bottom:406.082667pt;}
.y28_c00226{bottom:417.173333pt;}
.y27_c00226{bottom:417.656000pt;}
.y26_c00226{bottom:417.830667pt;}
.y25_c00226{bottom:418.033333pt;}
.y24_c00226{bottom:418.545333pt;}
.y23_c00226{bottom:418.946667pt;}
.y22_c00226{bottom:419.162667pt;}
.y21_c00226{bottom:419.356000pt;}
.y20_c00226{bottom:419.701333pt;}
.y1f_c00226{bottom:420.000000pt;}
.y1e_c00226{bottom:432.453333pt;}
.y1d_c00226{bottom:432.756000pt;}
.y1c_c00226{bottom:433.253333pt;}
.y1b_c00226{bottom:433.808000pt;}
.y1a_c00226{bottom:434.621333pt;}
.y19_c00226{bottom:434.832000pt;}
.y18_c00226{bottom:435.602667pt;}
.y17_c00226{bottom:449.554667pt;}
.y16_c00226{bottom:463.773856pt;}
.y15_c00226{bottom:464.288789pt;}
.y14_c00226{bottom:464.611360pt;}
.y13_c00226{bottom:465.046624pt;}
.y12_c00226{bottom:465.545291pt;}
.y11_c00226{bottom:465.671243pt;}
.y10_c00226{bottom:465.890907pt;}
.yf_c00226{bottom:466.561397pt;}
.y7_c00226{bottom:480.360384pt;}
.y9_c00226{bottom:480.360592pt;}
.y8_c00226{bottom:480.360880pt;}
.ya_c00226{bottom:480.360981pt;}
.yb_c00226{bottom:480.361547pt;}
.yc_c00226{bottom:480.362165pt;}
.yd_c00226{bottom:480.362603pt;}
.ye_c00226{bottom:480.362619pt;}
.y6_c00226{bottom:495.206117pt;}
.y5_c00226{bottom:495.969301pt;}
.y4_c00226{bottom:496.420869pt;}
.y3_c00226{bottom:497.196197pt;}
.y2_c00226{bottom:497.521333pt;}
.y1_c00226{bottom:509.860000pt;}
.h17_c00226{height:47.604022pt;}
.h1a_c00226{height:50.412624pt;}
.h1c_c00226{height:51.342598pt;}
.h19_c00226{height:51.346191pt;}
.h7_c00226{height:52.266667pt;}
.hc_c00226{height:52.275133pt;}
.h1e_c00226{height:52.281717pt;}
.h9_c00226{height:53.200000pt;}
.h13_c00226{height:53.208618pt;}
.h1b_c00226{height:53.209602pt;}
.h1d_c00226{height:53.215319pt;}
.h15_c00226{height:54.142102pt;}
.h8_c00226{height:55.066667pt;}
.he_c00226{height:55.075587pt;}
.hf_c00226{height:56.009071pt;}
.hb_c00226{height:56.942556pt;}
.h2_c00226{height:58.800000pt;}
.h10_c00226{height:58.809525pt;}
.h1f_c00226{height:58.814728pt;}
.h5_c00226{height:59.733333pt;}
.h12_c00226{height:59.743009pt;}
.h11_c00226{height:60.676494pt;}
.h16_c00226{height:61.605205pt;}
.ha_c00226{height:61.609978pt;}
.h6_c00226{height:62.533333pt;}
.h3_c00226{height:62.537836pt;}
.hd_c00226{height:62.543463pt;}
.h14_c00226{height:65.343916pt;}
.h4_c00226{height:68.138239pt;}
.h18_c00226{height:86.821741pt;}
.h0_c00226{height:547.680000pt;}
.h1_c00226{height:548.000000pt;}
.w0_c00226{width:336.480000pt;}
.w1_c00226{width:336.666667pt;}
.x0_c00226{left:0.000000pt;}
.x65_c00226{left:20.849771pt;}
.x52_c00226{left:21.862973pt;}
.x36_c00226{left:22.805333pt;}
.x3_c00226{left:24.145333pt;}
.x74_c00226{left:25.189333pt;}
.x4a_c00226{left:26.879696pt;}
.x32_c00226{left:28.413333pt;}
.x3b_c00226{left:30.281333pt;}
.x14_c00226{left:31.440000pt;}
.x8_c00226{left:37.201317pt;}
.x7e_c00226{left:39.761881pt;}
.x5b_c00226{left:42.020979pt;}
.x76_c00226{left:46.349479pt;}
.x7a_c00226{left:47.865461pt;}
.x75_c00226{left:49.229643pt;}
.x4_c00226{left:51.240000pt;}
.x33_c00226{left:53.386667pt;}
.x2c_c00226{left:54.878667pt;}
.x5e_c00226{left:56.376693pt;}
.x53_c00226{left:57.379035pt;}
.x3c_c00226{left:59.617333pt;}
.x48_c00226{left:60.638744pt;}
.x34_c00226{left:66.596000pt;}
.x37_c00226{left:68.541333pt;}
.x54_c00226{left:70.330579pt;}
.x15_c00226{left:72.960000pt;}
.x6a_c00226{left:74.559115pt;}
.x66_c00226{left:76.164469pt;}
.x1b_c00226{left:78.392000pt;}
.x77_c00226{left:81.326216pt;}
.x9_c00226{left:82.565179pt;}
.xf_c00226{left:85.087931pt;}
.x49_c00226{left:87.234477pt;}
.x6b_c00226{left:89.935344pt;}
.x59_c00226{left:92.205667pt;}
.x1c_c00226{left:93.448000pt;}
.x28_c00226{left:95.100000pt;}
.x16_c00226{left:96.720000pt;}
.x2d_c00226{left:97.781333pt;}
.x4e_c00226{left:98.763432pt;}
.x21_c00226{left:99.958667pt;}
.x62_c00226{left:103.177152pt;}
.xa_c00226{left:104.647029pt;}
.x3d_c00226{left:106.409333pt;}
.x44_c00226{left:108.824496pt;}
.x5_c00226{left:115.850667pt;}
.x38_c00226{left:116.929333pt;}
.x22_c00226{left:119.638667pt;}
.x3e_c00226{left:121.536000pt;}
.x55_c00226{left:122.512707pt;}
.x45_c00226{left:124.426669pt;}
.x79_c00226{left:129.676839pt;}
.x17_c00226{left:132.720000pt;}
.x70_c00226{left:135.476000pt;}
.x56_c00226{left:139.793416pt;}
.x5a_c00226{left:140.891061pt;}
.x5f_c00226{left:141.826144pt;}
.x1_c00226{left:142.800000pt;}
.x4b_c00226{left:144.739213pt;}
.x4f_c00226{left:146.775752pt;}
.xb_c00226{left:149.050763pt;}
.x1d_c00226{left:151.520000pt;}
.x6_c00226{left:153.481333pt;}
.x6f_c00226{left:154.958683pt;}
.x23_c00226{left:156.128000pt;}
.x39_c00226{left:157.021333pt;}
.x50_c00226{left:159.252880pt;}
.x10_c00226{left:161.890192pt;}
.x2e_c00226{left:162.869333pt;}
.x63_c00226{left:166.546312pt;}
.x18_c00226{left:170.400000pt;}
.x46_c00226{left:171.750547pt;}
.x51_c00226{left:172.686080pt;}
.x7b_c00226{left:178.567040pt;}
.x67_c00226{left:180.000208pt;}
.x2f_c00226{left:181.290667pt;}
.x3a_c00226{left:182.434667pt;}
.x3f_c00226{left:183.708000pt;}
.x6c_c00226{left:185.785789pt;}
.x60_c00226{left:188.149152pt;}
.x1e_c00226{left:191.112000pt;}
.x29_c00226{left:192.598667pt;}
.x7f_c00226{left:193.615873pt;}
.xc_c00226{left:194.894704pt;}
.x7c_c00226{left:196.499584pt;}
.x68_c00226{left:198.950805pt;}
.x57_c00226{left:200.451232pt;}
.x11_c00226{left:201.496005pt;}
.x24_c00226{left:202.718667pt;}
.x6d_c00226{left:205.464373pt;}
.x78_c00226{left:209.362667pt;}
.x47_c00226{left:210.413968pt;}
.x5c_c00226{left:212.181501pt;}
.x4c_c00226{left:213.390771pt;}
.x40_c00226{left:214.645333pt;}
.x64_c00226{left:215.618341pt;}
.x7_c00226{left:217.080000pt;}
.x25_c00226{left:221.154667pt;}
.x7d_c00226{left:222.861248pt;}
.x30_c00226{left:225.222667pt;}
.x1f_c00226{left:226.634667pt;}
.x41_c00226{left:229.056000pt;}
.x12_c00226{left:230.821691pt;}
.x19_c00226{left:233.040000pt;}
.x71_c00226{left:235.336000pt;}
.x26_c00226{left:237.040000pt;}
.x2a_c00226{left:238.916000pt;}
.x6e_c00226{left:240.848496pt;}
.x2_c00226{left:246.960000pt;}
.x20_c00226{left:248.240000pt;}
.x1a_c00226{left:252.240000pt;}
.x4d_c00226{left:254.437400pt;}
.x72_c00226{left:255.494667pt;}
.x42_c00226{left:257.213333pt;}
.x73_c00226{left:258.302941pt;}
.x2b_c00226{left:259.244000pt;}
.x35_c00226{left:260.797333pt;}
.xd_c00226{left:264.979467pt;}
.x31_c00226{left:267.512000pt;}
.x43_c00226{left:269.404000pt;}
.x69_c00226{left:273.116125pt;}
.x58_c00226{left:276.541829pt;}
.x13_c00226{left:277.622251pt;}
.x5d_c00226{left:279.177768pt;}
.x27_c00226{left:280.917333pt;}
.x61_c00226{left:282.008357pt;}
.xe_c00226{left:282.980725pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00227 {
    display:none;
  }
  .loading-indicator_c00227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00227 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00227 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00227" -> "#page-container .classname_c00227")
 */
.pf_c00227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00227 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00227 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00227 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00227 {overflow:visible;}
  }
}
.c_c00227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00227 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00227:after { /* webkit #35443 */
  content: '';
}
.t_c00227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00227 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00227 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00227 { /* info for Javascript */
  display:none;
}
.l_c00227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00227:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00227 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00227.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00227{transform:matrix(0.023808,-0.000333,0.003500,0.249976,0,0);-ms-transform:matrix(0.023808,-0.000333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.023808,-0.000333,0.003500,0.249976,0,0);}
.m8a_c00227{transform:matrix(0.128162,-0.001794,0.003500,0.249976,0,0);-ms-transform:matrix(0.128162,-0.001794,0.003500,0.249976,0,0);-webkit-transform:matrix(0.128162,-0.001794,0.003500,0.249976,0,0);}
.m90_c00227{transform:matrix(0.131112,-0.001836,0.003500,0.249976,0,0);-ms-transform:matrix(0.131112,-0.001836,0.003500,0.249976,0,0);-webkit-transform:matrix(0.131112,-0.001836,0.003500,0.249976,0,0);}
.m9d_c00227{transform:matrix(0.151650,-0.002123,0.003500,0.249976,0,0);-ms-transform:matrix(0.151650,-0.002123,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151650,-0.002123,0.003500,0.249976,0,0);}
.m9a_c00227{transform:matrix(0.151705,-0.002124,0.003500,0.249976,0,0);-ms-transform:matrix(0.151705,-0.002124,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151705,-0.002124,0.003500,0.249976,0,0);}
.m24_c00227{transform:matrix(0.151717,-0.001972,0.003250,0.249979,0,0);-ms-transform:matrix(0.151717,-0.001972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151717,-0.001972,0.003250,0.249979,0,0);}
.m87_c00227{transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);-ms-transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152500,-0.002135,0.003500,0.249976,0,0);}
.m7_c00227{transform:matrix(0.155108,-0.002327,0.003750,0.249972,0,0);-ms-transform:matrix(0.155108,-0.002327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155108,-0.002327,0.003750,0.249972,0,0);}
.mdf_c00227{transform:matrix(0.156655,-0.002193,0.003500,0.249976,0,0);-ms-transform:matrix(0.156655,-0.002193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156655,-0.002193,0.003500,0.249976,0,0);}
.mb_c00227{transform:matrix(0.158417,-0.002059,0.003250,0.249979,0,0);-ms-transform:matrix(0.158417,-0.002059,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158417,-0.002059,0.003250,0.249979,0,0);}
.m88_c00227{transform:matrix(0.159564,-0.002234,0.003500,0.249976,0,0);-ms-transform:matrix(0.159564,-0.002234,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159564,-0.002234,0.003500,0.249976,0,0);}
.m13_c00227{transform:matrix(0.162751,-0.002116,0.003250,0.249979,0,0);-ms-transform:matrix(0.162751,-0.002116,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162751,-0.002116,0.003250,0.249979,0,0);}
.m16_c00227{transform:matrix(0.163091,-0.002120,0.003250,0.249979,0,0);-ms-transform:matrix(0.163091,-0.002120,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163091,-0.002120,0.003250,0.249979,0,0);}
.m84_c00227{transform:matrix(0.164059,-0.002297,0.003500,0.249976,0,0);-ms-transform:matrix(0.164059,-0.002297,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164059,-0.002297,0.003500,0.249976,0,0);}
.m65_c00227{transform:matrix(0.164634,-0.002305,0.003500,0.249976,0,0);-ms-transform:matrix(0.164634,-0.002305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164634,-0.002305,0.003500,0.249976,0,0);}
.mb3_c00227{transform:matrix(0.166304,-0.002328,0.003500,0.249976,0,0);-ms-transform:matrix(0.166304,-0.002328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166304,-0.002328,0.003500,0.249976,0,0);}
.m37_c00227{transform:matrix(0.166316,-0.002162,0.003250,0.249979,0,0);-ms-transform:matrix(0.166316,-0.002162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166316,-0.002162,0.003250,0.249979,0,0);}
.mea_c00227{transform:matrix(0.166474,-0.002331,0.003500,0.249976,0,0);-ms-transform:matrix(0.166474,-0.002331,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166474,-0.002331,0.003500,0.249976,0,0);}
.md1_c00227{transform:matrix(0.166874,-0.002336,0.003500,0.249976,0,0);-ms-transform:matrix(0.166874,-0.002336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166874,-0.002336,0.003500,0.249976,0,0);}
.me3_c00227{transform:matrix(0.167579,-0.002346,0.003500,0.249976,0,0);-ms-transform:matrix(0.167579,-0.002346,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167579,-0.002346,0.003500,0.249976,0,0);}
.m5c_c00227{transform:matrix(0.167581,-0.002179,0.003250,0.249979,0,0);-ms-transform:matrix(0.167581,-0.002179,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167581,-0.002179,0.003250,0.249979,0,0);}
.m12_c00227{transform:matrix(0.167751,-0.002181,0.003250,0.249979,0,0);-ms-transform:matrix(0.167751,-0.002181,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167751,-0.002181,0.003250,0.249979,0,0);}
.m8b_c00227{transform:matrix(0.167759,-0.002349,0.003500,0.249976,0,0);-ms-transform:matrix(0.167759,-0.002349,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167759,-0.002349,0.003500,0.249976,0,0);}
.mc3_c00227{transform:matrix(0.167874,-0.002350,0.003500,0.249976,0,0);-ms-transform:matrix(0.167874,-0.002350,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167874,-0.002350,0.003500,0.249976,0,0);}
.m2b_c00227{transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);-ms-transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168601,-0.002192,0.003250,0.249979,0,0);}
.m3a_c00227{transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);-ms-transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);}
.me8_c00227{transform:matrix(0.171158,-0.002396,0.003500,0.249976,0,0);-ms-transform:matrix(0.171158,-0.002396,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171158,-0.002396,0.003500,0.249976,0,0);}
.m60_c00227{transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);-ms-transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);}
.m1f_c00227{transform:matrix(0.171730,-0.002232,0.003250,0.249979,0,0);-ms-transform:matrix(0.171730,-0.002232,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171730,-0.002232,0.003250,0.249979,0,0);}
.m85_c00227{transform:matrix(0.172228,-0.002411,0.003500,0.249976,0,0);-ms-transform:matrix(0.172228,-0.002411,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172228,-0.002411,0.003500,0.249976,0,0);}
.m1_c00227{transform:matrix(0.173241,-0.002599,0.003750,0.249972,0,0);-ms-transform:matrix(0.173241,-0.002599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173241,-0.002599,0.003750,0.249972,0,0);}
.mb4_c00227{transform:matrix(0.173688,-0.002432,0.003500,0.249976,0,0);-ms-transform:matrix(0.173688,-0.002432,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173688,-0.002432,0.003500,0.249976,0,0);}
.maf_c00227{transform:matrix(0.173823,-0.002434,0.003500,0.249976,0,0);-ms-transform:matrix(0.173823,-0.002434,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173823,-0.002434,0.003500,0.249976,0,0);}
.m40_c00227{transform:matrix(0.174670,-0.002271,0.003250,0.249979,0,0);-ms-transform:matrix(0.174670,-0.002271,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174670,-0.002271,0.003250,0.249979,0,0);}
.m18_c00227{transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175090,-0.002276,0.003250,0.249979,0,0);}
.m36_c00227{transform:matrix(0.175110,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175110,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175110,-0.002276,0.003250,0.249979,0,0);}
.m7b_c00227{transform:matrix(0.175188,-0.002453,0.003500,0.249976,0,0);-ms-transform:matrix(0.175188,-0.002453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175188,-0.002453,0.003500,0.249976,0,0);}
.ma8_c00227{transform:matrix(0.175993,-0.002464,0.003500,0.249976,0,0);-ms-transform:matrix(0.175993,-0.002464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175993,-0.002464,0.003500,0.249976,0,0);}
.mc7_c00227{transform:matrix(0.176003,-0.002464,0.003500,0.249976,0,0);-ms-transform:matrix(0.176003,-0.002464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176003,-0.002464,0.003500,0.249976,0,0);}
.m3_c00227{transform:matrix(0.176620,-0.002649,0.003750,0.249972,0,0);-ms-transform:matrix(0.176620,-0.002649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176620,-0.002649,0.003750,0.249972,0,0);}
.m27_c00227{transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);}
.mb6_c00227{transform:matrix(0.176673,-0.002473,0.003500,0.249976,0,0);-ms-transform:matrix(0.176673,-0.002473,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176673,-0.002473,0.003500,0.249976,0,0);}
.m38_c00227{transform:matrix(0.176690,-0.002297,0.003250,0.249979,0,0);-ms-transform:matrix(0.176690,-0.002297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176690,-0.002297,0.003250,0.249979,0,0);}
.m4_c00227{transform:matrix(0.178220,-0.002673,0.003750,0.249972,0,0);-ms-transform:matrix(0.178220,-0.002673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178220,-0.002673,0.003750,0.249972,0,0);}
.m52_c00227{transform:matrix(0.178325,-0.002318,0.003250,0.249979,0,0);-ms-transform:matrix(0.178325,-0.002318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178325,-0.002318,0.003250,0.249979,0,0);}
.mda_c00227{transform:matrix(0.178358,-0.002497,0.003500,0.249976,0,0);-ms-transform:matrix(0.178358,-0.002497,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178358,-0.002497,0.003500,0.249976,0,0);}
.mc4_c00227{transform:matrix(0.178917,-0.002505,0.003500,0.249976,0,0);-ms-transform:matrix(0.178917,-0.002505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178917,-0.002505,0.003500,0.249976,0,0);}
.m0_c00227{transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.179420,-0.002332,0.003250,0.249979,0,0);-ms-transform:matrix(0.179420,-0.002332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179420,-0.002332,0.003250,0.249979,0,0);}
.m45_c00227{transform:matrix(0.179885,-0.002339,0.003250,0.249979,0,0);-ms-transform:matrix(0.179885,-0.002339,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179885,-0.002339,0.003250,0.249979,0,0);}
.m19_c00227{transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);-ms-transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);}
.m7a_c00227{transform:matrix(0.181557,-0.002542,0.003500,0.249976,0,0);-ms-transform:matrix(0.181557,-0.002542,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181557,-0.002542,0.003500,0.249976,0,0);}
.m8_c00227{transform:matrix(0.181640,-0.002725,0.003750,0.249972,0,0);-ms-transform:matrix(0.181640,-0.002725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181640,-0.002725,0.003750,0.249972,0,0);}
.m6_c00227{transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-ms-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);}
.m7f_c00227{transform:matrix(0.182162,-0.002550,0.003500,0.249976,0,0);-ms-transform:matrix(0.182162,-0.002550,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182162,-0.002550,0.003500,0.249976,0,0);}
.m99_c00227{transform:matrix(0.182592,-0.002556,0.003500,0.249976,0,0);-ms-transform:matrix(0.182592,-0.002556,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182592,-0.002556,0.003500,0.249976,0,0);}
.m9e_c00227{transform:matrix(0.183007,-0.002562,0.003500,0.249976,0,0);-ms-transform:matrix(0.183007,-0.002562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183007,-0.002562,0.003500,0.249976,0,0);}
.m25_c00227{transform:matrix(0.183065,-0.002380,0.003250,0.249979,0,0);-ms-transform:matrix(0.183065,-0.002380,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183065,-0.002380,0.003250,0.249979,0,0);}
.m20_c00227{transform:matrix(0.183140,-0.002381,0.003250,0.249979,0,0);-ms-transform:matrix(0.183140,-0.002381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183140,-0.002381,0.003250,0.249979,0,0);}
.me4_c00227{transform:matrix(0.183847,-0.002574,0.003500,0.249976,0,0);-ms-transform:matrix(0.183847,-0.002574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183847,-0.002574,0.003500,0.249976,0,0);}
.mc5_c00227{transform:matrix(0.184087,-0.002577,0.003500,0.249976,0,0);-ms-transform:matrix(0.184087,-0.002577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184087,-0.002577,0.003500,0.249976,0,0);}
.m50_c00227{transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-ms-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);}
.m6e_c00227{transform:matrix(0.185052,-0.002591,0.003500,0.249976,0,0);-ms-transform:matrix(0.185052,-0.002591,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185052,-0.002591,0.003500,0.249976,0,0);}
.m4f_c00227{transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);}
.ma2_c00227{transform:matrix(0.185597,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185597,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185597,-0.002598,0.003500,0.249976,0,0);}
.m79_c00227{transform:matrix(0.186132,-0.002606,0.003500,0.249976,0,0);-ms-transform:matrix(0.186132,-0.002606,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186132,-0.002606,0.003500,0.249976,0,0);}
.m7c_c00227{transform:matrix(0.186217,-0.002607,0.003500,0.249976,0,0);-ms-transform:matrix(0.186217,-0.002607,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186217,-0.002607,0.003500,0.249976,0,0);}
.mb7_c00227{transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-ms-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);}
.me5_c00227{transform:matrix(0.186562,-0.002612,0.003500,0.249976,0,0);-ms-transform:matrix(0.186562,-0.002612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186562,-0.002612,0.003500,0.249976,0,0);}
.m9_c00227{transform:matrix(0.186919,-0.002804,0.003750,0.249972,0,0);-ms-transform:matrix(0.186919,-0.002804,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186919,-0.002804,0.003750,0.249972,0,0);}
.m1e_c00227{transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);}
.m31_c00227{transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187319,-0.002435,0.003250,0.249979,0,0);}
.md6_c00227{transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);-ms-transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);}
.mbc_c00227{transform:matrix(0.188077,-0.002633,0.003500,0.249976,0,0);-ms-transform:matrix(0.188077,-0.002633,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188077,-0.002633,0.003500,0.249976,0,0);}
.m63_c00227{transform:matrix(0.188677,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188677,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188677,-0.002641,0.003500,0.249976,0,0);}
.m4e_c00227{transform:matrix(0.188694,-0.002453,0.003250,0.249979,0,0);-ms-transform:matrix(0.188694,-0.002453,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188694,-0.002453,0.003250,0.249979,0,0);}
.m86_c00227{transform:matrix(0.188767,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188767,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188767,-0.002643,0.003500,0.249976,0,0);}
.m4a_c00227{transform:matrix(0.189144,-0.002459,0.003250,0.249979,0,0);-ms-transform:matrix(0.189144,-0.002459,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189144,-0.002459,0.003250,0.249979,0,0);}
.m5_c00227{transform:matrix(0.189219,-0.002838,0.003750,0.249972,0,0);-ms-transform:matrix(0.189219,-0.002838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189219,-0.002838,0.003750,0.249972,0,0);}
.m54_c00227{transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);-ms-transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);}
.m1a_c00227{transform:matrix(0.190714,-0.002479,0.003250,0.249979,0,0);-ms-transform:matrix(0.190714,-0.002479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190714,-0.002479,0.003250,0.249979,0,0);}
.m2_c00227{transform:matrix(0.190779,-0.002862,0.003750,0.249972,0,0);-ms-transform:matrix(0.190779,-0.002862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190779,-0.002862,0.003750,0.249972,0,0);}
.m2d_c00227{transform:matrix(0.191149,-0.002485,0.003250,0.249979,0,0);-ms-transform:matrix(0.191149,-0.002485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191149,-0.002485,0.003250,0.249979,0,0);}
.mcd_c00227{transform:matrix(0.191251,-0.002678,0.003500,0.249976,0,0);-ms-transform:matrix(0.191251,-0.002678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191251,-0.002678,0.003500,0.249976,0,0);}
.m57_c00227{transform:matrix(0.191514,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191514,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191514,-0.002490,0.003250,0.249979,0,0);}
.m78_c00227{transform:matrix(0.191741,-0.002684,0.003500,0.249976,0,0);-ms-transform:matrix(0.191741,-0.002684,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191741,-0.002684,0.003500,0.249976,0,0);}
.mc6_c00227{transform:matrix(0.191966,-0.002688,0.003500,0.249976,0,0);-ms-transform:matrix(0.191966,-0.002688,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191966,-0.002688,0.003500,0.249976,0,0);}
.m6a_c00227{transform:matrix(0.191971,-0.002688,0.003500,0.249976,0,0);-ms-transform:matrix(0.191971,-0.002688,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191971,-0.002688,0.003500,0.249976,0,0);}
.me7_c00227{transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-ms-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);}
.mcb_c00227{transform:matrix(0.192596,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192596,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192596,-0.002696,0.003500,0.249976,0,0);}
.m83_c00227{transform:matrix(0.193171,-0.002704,0.003500,0.249976,0,0);-ms-transform:matrix(0.193171,-0.002704,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193171,-0.002704,0.003500,0.249976,0,0);}
.m4c_c00227{transform:matrix(0.193274,-0.002513,0.003250,0.249979,0,0);-ms-transform:matrix(0.193274,-0.002513,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193274,-0.002513,0.003250,0.249979,0,0);}
.m46_c00227{transform:matrix(0.193529,-0.002516,0.003250,0.249979,0,0);-ms-transform:matrix(0.193529,-0.002516,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193529,-0.002516,0.003250,0.249979,0,0);}
.m51_c00227{transform:matrix(0.193574,-0.002516,0.003250,0.249979,0,0);-ms-transform:matrix(0.193574,-0.002516,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193574,-0.002516,0.003250,0.249979,0,0);}
.m1b_c00227{transform:matrix(0.193604,-0.002517,0.003250,0.249979,0,0);-ms-transform:matrix(0.193604,-0.002517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193604,-0.002517,0.003250,0.249979,0,0);}
.m1d_c00227{transform:matrix(0.194644,-0.002530,0.003250,0.249979,0,0);-ms-transform:matrix(0.194644,-0.002530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194644,-0.002530,0.003250,0.249979,0,0);}
.m93_c00227{transform:matrix(0.195336,-0.002735,0.003500,0.249976,0,0);-ms-transform:matrix(0.195336,-0.002735,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195336,-0.002735,0.003500,0.249976,0,0);}
.m11_c00227{transform:matrix(0.195658,-0.002544,0.003250,0.249979,0,0);-ms-transform:matrix(0.195658,-0.002544,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195658,-0.002544,0.003250,0.249979,0,0);}
.mc0_c00227{transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195751,-0.002741,0.003500,0.249976,0,0);}
.m15_c00227{transform:matrix(0.196373,-0.002553,0.003250,0.249979,0,0);-ms-transform:matrix(0.196373,-0.002553,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196373,-0.002553,0.003250,0.249979,0,0);}
.mdc_c00227{transform:matrix(0.197001,-0.002758,0.003500,0.249976,0,0);-ms-transform:matrix(0.197001,-0.002758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197001,-0.002758,0.003500,0.249976,0,0);}
.m2c_c00227{transform:matrix(0.198803,-0.002584,0.003250,0.249979,0,0);-ms-transform:matrix(0.198803,-0.002584,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198803,-0.002584,0.003250,0.249979,0,0);}
.mb5_c00227{transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);-ms-transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198961,-0.002785,0.003500,0.249976,0,0);}
.m2f_c00227{transform:matrix(0.199048,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199048,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199048,-0.002588,0.003250,0.249979,0,0);}
.mbf_c00227{transform:matrix(0.199070,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199070,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199070,-0.002787,0.003500,0.249976,0,0);}
.m5e_c00227{transform:matrix(0.199083,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199083,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199083,-0.002588,0.003250,0.249979,0,0);}
.m81_c00227{transform:matrix(0.199160,-0.002788,0.003500,0.249976,0,0);-ms-transform:matrix(0.199160,-0.002788,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199160,-0.002788,0.003500,0.249976,0,0);}
.mc2_c00227{transform:matrix(0.199185,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199185,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199185,-0.002789,0.003500,0.249976,0,0);}
.mc1_c00227{transform:matrix(0.199240,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199240,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199240,-0.002789,0.003500,0.249976,0,0);}
.me_c00227{transform:matrix(0.199828,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199828,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199828,-0.002598,0.003250,0.249979,0,0);}
.m14_c00227{transform:matrix(0.200173,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200173,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200173,-0.002602,0.003250,0.249979,0,0);}
.m89_c00227{transform:matrix(0.200180,-0.002803,0.003500,0.249976,0,0);-ms-transform:matrix(0.200180,-0.002803,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200180,-0.002803,0.003500,0.249976,0,0);}
.m10_c00227{transform:matrix(0.200273,-0.002604,0.003250,0.249979,0,0);-ms-transform:matrix(0.200273,-0.002604,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200273,-0.002604,0.003250,0.249979,0,0);}
.me6_c00227{transform:matrix(0.200475,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200475,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200475,-0.002807,0.003500,0.249976,0,0);}
.m92_c00227{transform:matrix(0.200495,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200495,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200495,-0.002807,0.003500,0.249976,0,0);}
.mb2_c00227{transform:matrix(0.200540,-0.002808,0.003500,0.249976,0,0);-ms-transform:matrix(0.200540,-0.002808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200540,-0.002808,0.003500,0.249976,0,0);}
.mbd_c00227{transform:matrix(0.200985,-0.002814,0.003500,0.249976,0,0);-ms-transform:matrix(0.200985,-0.002814,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200985,-0.002814,0.003500,0.249976,0,0);}
.ma_c00227{transform:matrix(0.201103,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201103,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201103,-0.002614,0.003250,0.249979,0,0);}
.m32_c00227{transform:matrix(0.201588,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201588,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201588,-0.002621,0.003250,0.249979,0,0);}
.mb8_c00227{transform:matrix(0.201705,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201705,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201705,-0.002824,0.003500,0.249976,0,0);}
.m7e_c00227{transform:matrix(0.201875,-0.002826,0.003500,0.249976,0,0);-ms-transform:matrix(0.201875,-0.002826,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201875,-0.002826,0.003500,0.249976,0,0);}
.m3d_c00227{transform:matrix(0.201903,-0.002625,0.003250,0.249979,0,0);-ms-transform:matrix(0.201903,-0.002625,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201903,-0.002625,0.003250,0.249979,0,0);}
.mad_c00227{transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);}
.mab_c00227{transform:matrix(0.202980,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.202980,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202980,-0.002842,0.003500,0.249976,0,0);}
.m6c_c00227{transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);-ms-transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);}
.m64_c00227{transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);-ms-transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);}
.m4d_c00227{transform:matrix(0.203778,-0.002649,0.003250,0.249979,0,0);-ms-transform:matrix(0.203778,-0.002649,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203778,-0.002649,0.003250,0.249979,0,0);}
.ma7_c00227{transform:matrix(0.203900,-0.002855,0.003500,0.249976,0,0);-ms-transform:matrix(0.203900,-0.002855,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203900,-0.002855,0.003500,0.249976,0,0);}
.m67_c00227{transform:matrix(0.204280,-0.002860,0.003500,0.249976,0,0);-ms-transform:matrix(0.204280,-0.002860,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204280,-0.002860,0.003500,0.249976,0,0);}
.m59_c00227{transform:matrix(0.204603,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204603,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204603,-0.002660,0.003250,0.249979,0,0);}
.m80_c00227{transform:matrix(0.204820,-0.002867,0.003500,0.249976,0,0);-ms-transform:matrix(0.204820,-0.002867,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204820,-0.002867,0.003500,0.249976,0,0);}
.mc9_c00227{transform:matrix(0.205180,-0.002873,0.003500,0.249976,0,0);-ms-transform:matrix(0.205180,-0.002873,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205180,-0.002873,0.003500,0.249976,0,0);}
.m28_c00227{transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);}
.m5f_c00227{transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);}
.md0_c00227{transform:matrix(0.206010,-0.002884,0.003500,0.249976,0,0);-ms-transform:matrix(0.206010,-0.002884,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206010,-0.002884,0.003500,0.249976,0,0);}
.m3b_c00227{transform:matrix(0.206753,-0.002688,0.003250,0.249979,0,0);-ms-transform:matrix(0.206753,-0.002688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206753,-0.002688,0.003250,0.249979,0,0);}
.m66_c00227{transform:matrix(0.207100,-0.002899,0.003500,0.249976,0,0);-ms-transform:matrix(0.207100,-0.002899,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207100,-0.002899,0.003500,0.249976,0,0);}
.mbe_c00227{transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);-ms-transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);}
.mb1_c00227{transform:matrix(0.207415,-0.002904,0.003500,0.249976,0,0);-ms-transform:matrix(0.207415,-0.002904,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207415,-0.002904,0.003500,0.249976,0,0);}
.m71_c00227{transform:matrix(0.207550,-0.002906,0.003500,0.249976,0,0);-ms-transform:matrix(0.207550,-0.002906,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207550,-0.002906,0.003500,0.249976,0,0);}
.me9_c00227{transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);-ms-transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);}
.md3_c00227{transform:matrix(0.207980,-0.002912,0.003500,0.249976,0,0);-ms-transform:matrix(0.207980,-0.002912,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207980,-0.002912,0.003500,0.249976,0,0);}
.m6f_c00227{transform:matrix(0.208445,-0.002918,0.003500,0.249976,0,0);-ms-transform:matrix(0.208445,-0.002918,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208445,-0.002918,0.003500,0.249976,0,0);}
.ma1_c00227{transform:matrix(0.208565,-0.002920,0.003500,0.249976,0,0);-ms-transform:matrix(0.208565,-0.002920,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208565,-0.002920,0.003500,0.249976,0,0);}
.ma4_c00227{transform:matrix(0.208780,-0.002923,0.003500,0.249976,0,0);-ms-transform:matrix(0.208780,-0.002923,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208780,-0.002923,0.003500,0.249976,0,0);}
.m33_c00227{transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);-ms-transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);}
.m29_c00227{transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);-ms-transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);}
.md4_c00227{transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);-ms-transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);}
.m4b_c00227{transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);-ms-transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209222,-0.002720,0.003250,0.249979,0,0);}
.m9c_c00227{transform:matrix(0.210339,-0.002945,0.003500,0.249976,0,0);-ms-transform:matrix(0.210339,-0.002945,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210339,-0.002945,0.003500,0.249976,0,0);}
.meb_c00227{transform:matrix(0.210469,-0.002947,0.003500,0.249976,0,0);-ms-transform:matrix(0.210469,-0.002947,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210469,-0.002947,0.003500,0.249976,0,0);}
.m53_c00227{transform:matrix(0.210717,-0.002739,0.003250,0.249979,0,0);-ms-transform:matrix(0.210717,-0.002739,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210717,-0.002739,0.003250,0.249979,0,0);}
.m9f_c00227{transform:matrix(0.211194,-0.002957,0.003500,0.249976,0,0);-ms-transform:matrix(0.211194,-0.002957,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211194,-0.002957,0.003500,0.249976,0,0);}
.md8_c00227{transform:matrix(0.211424,-0.002960,0.003500,0.249976,0,0);-ms-transform:matrix(0.211424,-0.002960,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211424,-0.002960,0.003500,0.249976,0,0);}
.m42_c00227{transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-ms-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);}
.m8d_c00227{transform:matrix(0.212464,-0.002974,0.003500,0.249976,0,0);-ms-transform:matrix(0.212464,-0.002974,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212464,-0.002974,0.003500,0.249976,0,0);}
.ma6_c00227{transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);}
.maa_c00227{transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);-ms-transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);}
.m5a_c00227{transform:matrix(0.213772,-0.002779,0.003250,0.249979,0,0);-ms-transform:matrix(0.213772,-0.002779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213772,-0.002779,0.003250,0.249979,0,0);}
.m1c_c00227{transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);-ms-transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214182,-0.002784,0.003250,0.249979,0,0);}
.mf3_c00227{transform:matrix(0.214334,-0.003001,0.003500,0.249976,0,0);-ms-transform:matrix(0.214334,-0.003001,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214334,-0.003001,0.003500,0.249976,0,0);}
.m75_c00227{transform:matrix(0.214684,-0.003006,0.003500,0.249976,0,0);-ms-transform:matrix(0.214684,-0.003006,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214684,-0.003006,0.003500,0.249976,0,0);}
.m39_c00227{transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214782,-0.002792,0.003250,0.249979,0,0);}
.md5_c00227{transform:matrix(0.214924,-0.003009,0.003500,0.249976,0,0);-ms-transform:matrix(0.214924,-0.003009,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214924,-0.003009,0.003500,0.249976,0,0);}
.mdd_c00227{transform:matrix(0.215419,-0.003016,0.003500,0.249976,0,0);-ms-transform:matrix(0.215419,-0.003016,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215419,-0.003016,0.003500,0.249976,0,0);}
.mce_c00227{transform:matrix(0.215764,-0.003021,0.003500,0.249976,0,0);-ms-transform:matrix(0.215764,-0.003021,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215764,-0.003021,0.003500,0.249976,0,0);}
.m41_c00227{transform:matrix(0.215787,-0.002805,0.003250,0.249979,0,0);-ms-transform:matrix(0.215787,-0.002805,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215787,-0.002805,0.003250,0.249979,0,0);}
.ma3_c00227{transform:matrix(0.216159,-0.003026,0.003500,0.249976,0,0);-ms-transform:matrix(0.216159,-0.003026,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216159,-0.003026,0.003500,0.249976,0,0);}
.m35_c00227{transform:matrix(0.216362,-0.002813,0.003250,0.249979,0,0);-ms-transform:matrix(0.216362,-0.002813,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216362,-0.002813,0.003250,0.249979,0,0);}
.mec_c00227{transform:matrix(0.217309,-0.003042,0.003500,0.249976,0,0);-ms-transform:matrix(0.217309,-0.003042,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217309,-0.003042,0.003500,0.249976,0,0);}
.m97_c00227{transform:matrix(0.217564,-0.003046,0.003500,0.249976,0,0);-ms-transform:matrix(0.217564,-0.003046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217564,-0.003046,0.003500,0.249976,0,0);}
.m49_c00227{transform:matrix(0.217567,-0.002828,0.003250,0.249979,0,0);-ms-transform:matrix(0.217567,-0.002828,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217567,-0.002828,0.003250,0.249979,0,0);}
.md9_c00227{transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);-ms-transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);}
.mdb_c00227{transform:matrix(0.218634,-0.003061,0.003500,0.249976,0,0);-ms-transform:matrix(0.218634,-0.003061,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218634,-0.003061,0.003500,0.249976,0,0);}
.m72_c00227{transform:matrix(0.218654,-0.003061,0.003500,0.249976,0,0);-ms-transform:matrix(0.218654,-0.003061,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218654,-0.003061,0.003500,0.249976,0,0);}
.m5d_c00227{transform:matrix(0.218657,-0.002843,0.003250,0.249979,0,0);-ms-transform:matrix(0.218657,-0.002843,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218657,-0.002843,0.003250,0.249979,0,0);}
.me0_c00227{transform:matrix(0.218779,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218779,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218779,-0.003063,0.003500,0.249976,0,0);}
.m7d_c00227{transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);}
.m96_c00227{transform:matrix(0.218929,-0.003065,0.003500,0.249976,0,0);-ms-transform:matrix(0.218929,-0.003065,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218929,-0.003065,0.003500,0.249976,0,0);}
.m21_c00227{transform:matrix(0.219016,-0.002847,0.003250,0.249979,0,0);-ms-transform:matrix(0.219016,-0.002847,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219016,-0.002847,0.003250,0.249979,0,0);}
.m55_c00227{transform:matrix(0.219101,-0.002848,0.003250,0.249979,0,0);-ms-transform:matrix(0.219101,-0.002848,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219101,-0.002848,0.003250,0.249979,0,0);}
.mac_c00227{transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);-ms-transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);}
.m76_c00227{transform:matrix(0.219738,-0.003076,0.003500,0.249976,0,0);-ms-transform:matrix(0.219738,-0.003076,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219738,-0.003076,0.003500,0.249976,0,0);}
.md7_c00227{transform:matrix(0.219978,-0.003080,0.003500,0.249976,0,0);-ms-transform:matrix(0.219978,-0.003080,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219978,-0.003080,0.003500,0.249976,0,0);}
.m34_c00227{transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);-ms-transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);}
.m74_c00227{transform:matrix(0.220278,-0.003084,0.003500,0.249976,0,0);-ms-transform:matrix(0.220278,-0.003084,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220278,-0.003084,0.003500,0.249976,0,0);}
.m98_c00227{transform:matrix(0.220423,-0.003086,0.003500,0.249976,0,0);-ms-transform:matrix(0.220423,-0.003086,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220423,-0.003086,0.003500,0.249976,0,0);}
.m68_c00227{transform:matrix(0.220443,-0.003086,0.003500,0.249976,0,0);-ms-transform:matrix(0.220443,-0.003086,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220443,-0.003086,0.003500,0.249976,0,0);}
.m73_c00227{transform:matrix(0.220628,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220628,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220628,-0.003089,0.003500,0.249976,0,0);}
.mcf_c00227{transform:matrix(0.220653,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220653,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220653,-0.003089,0.003500,0.249976,0,0);}
.m17_c00227{transform:matrix(0.221376,-0.002878,0.003250,0.249979,0,0);-ms-transform:matrix(0.221376,-0.002878,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221376,-0.002878,0.003250,0.249979,0,0);}
.mee_c00227{transform:matrix(0.222363,-0.003113,0.003500,0.249976,0,0);-ms-transform:matrix(0.222363,-0.003113,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222363,-0.003113,0.003500,0.249976,0,0);}
.m47_c00227{transform:matrix(0.222581,-0.002894,0.003250,0.249979,0,0);-ms-transform:matrix(0.222581,-0.002894,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222581,-0.002894,0.003250,0.249979,0,0);}
.mf0_c00227{transform:matrix(0.223038,-0.003123,0.003500,0.249976,0,0);-ms-transform:matrix(0.223038,-0.003123,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223038,-0.003123,0.003500,0.249976,0,0);}
.m22_c00227{transform:matrix(0.223206,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223206,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223206,-0.002902,0.003250,0.249979,0,0);}
.m3e_c00227{transform:matrix(0.223591,-0.002907,0.003250,0.249979,0,0);-ms-transform:matrix(0.223591,-0.002907,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223591,-0.002907,0.003250,0.249979,0,0);}
.med_c00227{transform:matrix(0.223843,-0.003134,0.003500,0.249976,0,0);-ms-transform:matrix(0.223843,-0.003134,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223843,-0.003134,0.003500,0.249976,0,0);}
.m48_c00227{transform:matrix(0.223936,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223936,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223936,-0.002911,0.003250,0.249979,0,0);}
.mcc_c00227{transform:matrix(0.224033,-0.003136,0.003500,0.249976,0,0);-ms-transform:matrix(0.224033,-0.003136,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224033,-0.003136,0.003500,0.249976,0,0);}
.m94_c00227{transform:matrix(0.224348,-0.003141,0.003500,0.249976,0,0);-ms-transform:matrix(0.224348,-0.003141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224348,-0.003141,0.003500,0.249976,0,0);}
.m3c_c00227{transform:matrix(0.224781,-0.002922,0.003250,0.249979,0,0);-ms-transform:matrix(0.224781,-0.002922,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224781,-0.002922,0.003250,0.249979,0,0);}
.mca_c00227{transform:matrix(0.225438,-0.003156,0.003500,0.249976,0,0);-ms-transform:matrix(0.225438,-0.003156,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225438,-0.003156,0.003500,0.249976,0,0);}
.mbb_c00227{transform:matrix(0.225443,-0.003156,0.003500,0.249976,0,0);-ms-transform:matrix(0.225443,-0.003156,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225443,-0.003156,0.003500,0.249976,0,0);}
.mc8_c00227{transform:matrix(0.226363,-0.003169,0.003500,0.249976,0,0);-ms-transform:matrix(0.226363,-0.003169,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226363,-0.003169,0.003500,0.249976,0,0);}
.m62_c00227{transform:matrix(0.226566,-0.002945,0.003250,0.249979,0,0);-ms-transform:matrix(0.226566,-0.002945,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226566,-0.002945,0.003250,0.249979,0,0);}
.md_c00227{transform:matrix(0.226681,-0.002947,0.003250,0.249979,0,0);-ms-transform:matrix(0.226681,-0.002947,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226681,-0.002947,0.003250,0.249979,0,0);}
.m6b_c00227{transform:matrix(0.227473,-0.003185,0.003500,0.249976,0,0);-ms-transform:matrix(0.227473,-0.003185,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227473,-0.003185,0.003500,0.249976,0,0);}
.m56_c00227{transform:matrix(0.227691,-0.002960,0.003250,0.249979,0,0);-ms-transform:matrix(0.227691,-0.002960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227691,-0.002960,0.003250,0.249979,0,0);}
.m8c_c00227{transform:matrix(0.228078,-0.003193,0.003500,0.249976,0,0);-ms-transform:matrix(0.228078,-0.003193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228078,-0.003193,0.003500,0.249976,0,0);}
.mba_c00227{transform:matrix(0.228093,-0.003193,0.003500,0.249976,0,0);-ms-transform:matrix(0.228093,-0.003193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228093,-0.003193,0.003500,0.249976,0,0);}
.m44_c00227{transform:matrix(0.228561,-0.002971,0.003250,0.249979,0,0);-ms-transform:matrix(0.228561,-0.002971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228561,-0.002971,0.003250,0.249979,0,0);}
.mb9_c00227{transform:matrix(0.228573,-0.003200,0.003500,0.249976,0,0);-ms-transform:matrix(0.228573,-0.003200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228573,-0.003200,0.003500,0.249976,0,0);}
.m6d_c00227{transform:matrix(0.228853,-0.003204,0.003500,0.249976,0,0);-ms-transform:matrix(0.228853,-0.003204,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228853,-0.003204,0.003500,0.249976,0,0);}
.m95_c00227{transform:matrix(0.228903,-0.003205,0.003500,0.249976,0,0);-ms-transform:matrix(0.228903,-0.003205,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228903,-0.003205,0.003500,0.249976,0,0);}
.ma5_c00227{transform:matrix(0.229103,-0.003207,0.003500,0.249976,0,0);-ms-transform:matrix(0.229103,-0.003207,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229103,-0.003207,0.003500,0.249976,0,0);}
.m23_c00227{transform:matrix(0.230191,-0.002992,0.003250,0.249979,0,0);-ms-transform:matrix(0.230191,-0.002992,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230191,-0.002992,0.003250,0.249979,0,0);}
.m3f_c00227{transform:matrix(0.230216,-0.002993,0.003250,0.249979,0,0);-ms-transform:matrix(0.230216,-0.002993,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230216,-0.002993,0.003250,0.249979,0,0);}
.m91_c00227{transform:matrix(0.230382,-0.003225,0.003500,0.249976,0,0);-ms-transform:matrix(0.230382,-0.003225,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230382,-0.003225,0.003500,0.249976,0,0);}
.m77_c00227{transform:matrix(0.232522,-0.003255,0.003500,0.249976,0,0);-ms-transform:matrix(0.232522,-0.003255,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232522,-0.003255,0.003500,0.249976,0,0);}
.m58_c00227{transform:matrix(0.232715,-0.003025,0.003250,0.249979,0,0);-ms-transform:matrix(0.232715,-0.003025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232715,-0.003025,0.003250,0.249979,0,0);}
.m26_c00227{transform:matrix(0.232850,-0.003027,0.003250,0.249979,0,0);-ms-transform:matrix(0.232850,-0.003027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232850,-0.003027,0.003250,0.249979,0,0);}
.m61_c00227{transform:matrix(0.232860,-0.003027,0.003250,0.249979,0,0);-ms-transform:matrix(0.232860,-0.003027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232860,-0.003027,0.003250,0.249979,0,0);}
.me1_c00227{transform:matrix(0.232877,-0.003260,0.003500,0.249976,0,0);-ms-transform:matrix(0.232877,-0.003260,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232877,-0.003260,0.003500,0.249976,0,0);}
.mf_c00227{transform:matrix(0.234770,-0.003052,0.003250,0.249979,0,0);-ms-transform:matrix(0.234770,-0.003052,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234770,-0.003052,0.003250,0.249979,0,0);}
.mde_c00227{transform:matrix(0.235672,-0.003299,0.003500,0.249976,0,0);-ms-transform:matrix(0.235672,-0.003299,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235672,-0.003299,0.003500,0.249976,0,0);}
.ma9_c00227{transform:matrix(0.236722,-0.003314,0.003500,0.249976,0,0);-ms-transform:matrix(0.236722,-0.003314,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236722,-0.003314,0.003500,0.249976,0,0);}
.m30_c00227{transform:matrix(0.236810,-0.003079,0.003250,0.249979,0,0);-ms-transform:matrix(0.236810,-0.003079,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236810,-0.003079,0.003250,0.249979,0,0);}
.m5b_c00227{transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);-ms-transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);}
.mef_c00227{transform:matrix(0.238732,-0.003342,0.003500,0.249976,0,0);-ms-transform:matrix(0.238732,-0.003342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238732,-0.003342,0.003500,0.249976,0,0);}
.m2e_c00227{transform:matrix(0.240290,-0.003124,0.003250,0.249979,0,0);-ms-transform:matrix(0.240290,-0.003124,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240290,-0.003124,0.003250,0.249979,0,0);}
.m43_c00227{transform:matrix(0.242490,-0.003152,0.003250,0.249979,0,0);-ms-transform:matrix(0.242490,-0.003152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242490,-0.003152,0.003250,0.249979,0,0);}
.mf4_c00227{transform:matrix(0.242956,-0.003401,0.003500,0.249976,0,0);-ms-transform:matrix(0.242956,-0.003401,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242956,-0.003401,0.003500,0.249976,0,0);}
.m69_c00227{transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);-ms-transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);}
.ma0_c00227{transform:matrix(0.247386,-0.003463,0.003500,0.249976,0,0);-ms-transform:matrix(0.247386,-0.003463,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247386,-0.003463,0.003500,0.249976,0,0);}
.m2a_c00227{transform:matrix(0.253144,-0.003291,0.003250,0.249979,0,0);-ms-transform:matrix(0.253144,-0.003291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253144,-0.003291,0.003250,0.249979,0,0);}
.m9b_c00227{transform:matrix(0.260629,-0.003649,0.003500,0.249976,0,0);-ms-transform:matrix(0.260629,-0.003649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260629,-0.003649,0.003500,0.249976,0,0);}
.mae_c00227{transform:matrix(0.262529,-0.003675,0.003500,0.249976,0,0);-ms-transform:matrix(0.262529,-0.003675,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262529,-0.003675,0.003500,0.249976,0,0);}
.m8e_c00227{transform:matrix(0.265214,-0.003713,0.003500,0.249976,0,0);-ms-transform:matrix(0.265214,-0.003713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265214,-0.003713,0.003500,0.249976,0,0);}
.mb0_c00227{transform:matrix(0.271643,-0.003803,0.003500,0.249976,0,0);-ms-transform:matrix(0.271643,-0.003803,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271643,-0.003803,0.003500,0.249976,0,0);}
.m82_c00227{transform:matrix(0.271678,-0.003803,0.003500,0.249976,0,0);-ms-transform:matrix(0.271678,-0.003803,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271678,-0.003803,0.003500,0.249976,0,0);}
.mf1_c00227{transform:matrix(0.290172,-0.004062,0.003500,0.249976,0,0);-ms-transform:matrix(0.290172,-0.004062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.290172,-0.004062,0.003500,0.249976,0,0);}
.me2_c00227{transform:matrix(0.327718,-0.004588,0.003500,0.249976,0,0);-ms-transform:matrix(0.327718,-0.004588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.327718,-0.004588,0.003500,0.249976,0,0);}
.md2_c00227{transform:matrix(0.339832,-0.004758,0.003500,0.249976,0,0);-ms-transform:matrix(0.339832,-0.004758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.339832,-0.004758,0.003500,0.249976,0,0);}
.m70_c00227{transform:matrix(0.364219,-0.005099,0.003500,0.249976,0,0);-ms-transform:matrix(0.364219,-0.005099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.364219,-0.005099,0.003500,0.249976,0,0);}
.mf2_c00227{transform:matrix(0.494687,-0.006926,0.003500,0.249976,0,0);-ms-transform:matrix(0.494687,-0.006926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.494687,-0.006926,0.003500,0.249976,0,0);}
.mf5_c00227{transform:matrix(1.569690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.569690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.569690,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:0.000000px;}
.fc0_c00227{color:transparent;}
.fs13_c00227{font-size:22.050000px;}
.fs12_c00227{font-size:49.354836px;}
.fse_c00227{font-size:56.705556px;}
.fs7_c00227{font-size:57.754880px;}
.fsb_c00227{font-size:57.755659px;}
.fs8_c00227{font-size:58.804968px;}
.fs6_c00227{font-size:59.855057px;}
.fsf_c00227{font-size:59.855865px;}
.fs5_c00227{font-size:60.905146px;}
.fsa_c00227{font-size:60.905968px;}
.fs10_c00227{font-size:61.956071px;}
.fs4_c00227{font-size:63.005323px;}
.fs9_c00227{font-size:63.006174px;}
.fs11_c00227{font-size:64.056277px;}
.fs3_c00227{font-size:66.155589px;}
.fs2_c00227{font-size:67.205678px;}
.fsc_c00227{font-size:67.206585px;}
.fsd_c00227{font-size:68.256688px;}
.fs1_c00227{font-size:69.307796px;}
.fs0_c00227{font-size:70.350000px;}
.y0_c00227{bottom:0.000000px;}
.yf3_c00227{bottom:23.741988px;}
.yf4_c00227{bottom:25.088913px;}
.yf5_c00227{bottom:25.604403px;}
.yf6_c00227{bottom:27.524277px;}
.yf7_c00227{bottom:28.049865px;}
.yf8_c00227{bottom:28.751538px;}
.yec_c00227{bottom:42.371328px;}
.yed_c00227{bottom:42.704112px;}
.yee_c00227{bottom:43.493823px;}
.yef_c00227{bottom:43.766604px;}
.yf0_c00227{bottom:44.475726px;}
.yf1_c00227{bottom:44.836740px;}
.yf2_c00227{bottom:45.599385px;}
.ye4_c00227{bottom:57.231090px;}
.ye5_c00227{bottom:57.954255px;}
.ye6_c00227{bottom:60.301083px;}
.ye7_c00227{bottom:60.752439px;}
.ye8_c00227{bottom:61.444182px;}
.ye9_c00227{bottom:62.734053px;}
.yea_c00227{bottom:63.331971px;}
.yeb_c00227{bottom:64.893357px;}
.ydc_c00227{bottom:74.503926px;}
.ydd_c00227{bottom:75.124203px;}
.yde_c00227{bottom:75.368889px;}
.ydf_c00227{bottom:75.774078px;}
.ye0_c00227{bottom:76.701051px;}
.ye1_c00227{bottom:78.198975px;}
.ye2_c00227{bottom:78.447168px;}
.ye3_c00227{bottom:78.803934px;}
.yd5_c00227{bottom:91.249971px;}
.yd6_c00227{bottom:91.708581px;}
.yd7_c00227{bottom:92.862717px;}
.yd8_c00227{bottom:93.271287px;}
.yd9_c00227{bottom:94.142508px;}
.yda_c00227{bottom:94.965327px;}
.ydb_c00227{bottom:95.436105px;}
.yce_c00227{bottom:108.529041px;}
.ycf_c00227{bottom:109.370970px;}
.yd0_c00227{bottom:109.521540px;}
.yd1_c00227{bottom:109.913658px;}
.yd2_c00227{bottom:110.873745px;}
.yd3_c00227{bottom:111.882423px;}
.yd4_c00227{bottom:112.822110px;}
.yc6_c00227{bottom:125.809755px;}
.yc7_c00227{bottom:126.590973px;}
.yc8_c00227{bottom:126.981891px;}
.yc9_c00227{bottom:127.296726px;}
.yca_c00227{bottom:127.880400px;}
.ycb_c00227{bottom:128.289366px;}
.ycc_c00227{bottom:129.309807px;}
.ycd_c00227{bottom:129.703434px;}
.ybd_c00227{bottom:142.824780px;}
.ybe_c00227{bottom:143.514759px;}
.ybf_c00227{bottom:144.115830px;}
.yc0_c00227{bottom:144.450648px;}
.yc1_c00227{bottom:145.265802px;}
.yc2_c00227{bottom:145.679934px;}
.yc3_c00227{bottom:146.231628px;}
.yc4_c00227{bottom:147.116838px;}
.yc5_c00227{bottom:148.412265px;}
.yb4_c00227{bottom:163.675938px;}
.yb5_c00227{bottom:163.676676px;}
.yb6_c00227{bottom:163.676913px;}
.yb7_c00227{bottom:163.677471px;}
.yb8_c00227{bottom:163.677489px;}
.yb9_c00227{bottom:163.677705px;}
.yba_c00227{bottom:163.678344px;}
.ybb_c00227{bottom:163.678362px;}
.ybc_c00227{bottom:163.678860px;}
.yac_c00227{bottom:181.263621px;}
.yb1_c00227{bottom:181.263828px;}
.yaf_c00227{bottom:181.263855px;}
.yab_c00227{bottom:181.263903px;}
.yb3_c00227{bottom:181.264224px;}
.yad_c00227{bottom:181.264260px;}
.yb2_c00227{bottom:181.264305px;}
.yae_c00227{bottom:181.264398px;}
.yb0_c00227{bottom:181.264572px;}
.ya2_c00227{bottom:196.011624px;}
.ya3_c00227{bottom:196.342002px;}
.ya4_c00227{bottom:196.927788px;}
.ya5_c00227{bottom:197.139147px;}
.ya6_c00227{bottom:197.326350px;}
.ya7_c00227{bottom:197.861208px;}
.ya8_c00227{bottom:198.074847px;}
.ya9_c00227{bottom:198.855714px;}
.yaa_c00227{bottom:199.069479px;}
.y9b_c00227{bottom:213.833610px;}
.y9c_c00227{bottom:214.917810px;}
.y9d_c00227{bottom:215.194329px;}
.y9e_c00227{bottom:215.603553px;}
.y9f_c00227{bottom:216.176169px;}
.ya0_c00227{bottom:216.487506px;}
.ya1_c00227{bottom:216.687459px;}
.y95_c00227{bottom:232.759101px;}
.y96_c00227{bottom:232.759518px;}
.y94_c00227{bottom:232.759722px;}
.y98_c00227{bottom:232.760151px;}
.y99_c00227{bottom:232.760247px;}
.y97_c00227{bottom:232.760256px;}
.y9a_c00227{bottom:232.760445px;}
.y93_c00227{bottom:249.862944px;}
.y92_c00227{bottom:249.863547px;}
.y90_c00227{bottom:249.864123px;}
.y91_c00227{bottom:249.864195px;}
.y8a_c00227{bottom:265.937244px;}
.y89_c00227{bottom:265.937286px;}
.y87_c00227{bottom:265.937292px;}
.y8b_c00227{bottom:265.937403px;}
.y88_c00227{bottom:265.937670px;}
.y8c_c00227{bottom:265.937841px;}
.y8e_c00227{bottom:265.938039px;}
.y8f_c00227{bottom:265.938276px;}
.y8d_c00227{bottom:265.938420px;}
.y7e_c00227{bottom:282.980751px;}
.y83_c00227{bottom:282.980940px;}
.y7f_c00227{bottom:282.981087px;}
.y82_c00227{bottom:282.981141px;}
.y81_c00227{bottom:282.981162px;}
.y84_c00227{bottom:282.981318px;}
.y86_c00227{bottom:282.981573px;}
.y85_c00227{bottom:282.981594px;}
.y80_c00227{bottom:282.981786px;}
.y77_c00227{bottom:297.540255px;}
.y78_c00227{bottom:298.587153px;}
.y79_c00227{bottom:298.810641px;}
.y7a_c00227{bottom:299.529696px;}
.y7b_c00227{bottom:299.834121px;}
.y7c_c00227{bottom:300.491940px;}
.y7d_c00227{bottom:300.773733px;}
.y6d_c00227{bottom:314.823000px;}
.y6e_c00227{bottom:315.219018px;}
.y6f_c00227{bottom:315.454407px;}
.y70_c00227{bottom:316.122606px;}
.y71_c00227{bottom:316.316541px;}
.y72_c00227{bottom:316.668039px;}
.y73_c00227{bottom:317.298438px;}
.y74_c00227{bottom:317.718984px;}
.y75_c00227{bottom:318.372798px;}
.y76_c00227{bottom:318.883203px;}
.y66_c00227{bottom:331.563000px;}
.y67_c00227{bottom:332.291889px;}
.y68_c00227{bottom:332.731377px;}
.y69_c00227{bottom:333.041526px;}
.y6a_c00227{bottom:333.861870px;}
.y6b_c00227{bottom:334.126491px;}
.y6c_c00227{bottom:334.969347px;}
.y5e_c00227{bottom:348.843000px;}
.y5f_c00227{bottom:349.681812px;}
.y60_c00227{bottom:350.022399px;}
.y61_c00227{bottom:350.545019px;}
.y62_c00227{bottom:351.205386px;}
.y63_c00227{bottom:351.524777px;}
.y64_c00227{bottom:351.833540px;}
.y65_c00227{bottom:352.539088px;}
.y55_c00227{bottom:366.382106px;}
.y56_c00227{bottom:366.551591px;}
.y57_c00227{bottom:366.848883px;}
.y58_c00227{bottom:367.137458px;}
.y59_c00227{bottom:367.772474px;}
.y5a_c00227{bottom:368.197067px;}
.y5b_c00227{bottom:368.535726px;}
.y5c_c00227{bottom:368.785469px;}
.y5d_c00227{bottom:369.004728px;}
.y4e_c00227{bottom:383.123609px;}
.y4f_c00227{bottom:383.590263px;}
.y50_c00227{bottom:384.734033px;}
.y51_c00227{bottom:384.889754px;}
.y52_c00227{bottom:385.473632px;}
.y53_c00227{bottom:385.702601px;}
.y54_c00227{bottom:386.121866px;}
.y46_c00227{bottom:400.401936px;}
.y47_c00227{bottom:400.975905px;}
.y48_c00227{bottom:401.137004px;}
.y49_c00227{bottom:401.767124px;}
.y4a_c00227{bottom:401.989932px;}
.y4b_c00227{bottom:402.776900px;}
.y4c_c00227{bottom:403.060032px;}
.y4d_c00227{bottom:403.297352px;}
.y3e_c00227{bottom:417.680061px;}
.y3f_c00227{bottom:418.120406px;}
.y40_c00227{bottom:418.647219px;}
.y41_c00227{bottom:418.982076px;}
.y42_c00227{bottom:419.127785px;}
.y43_c00227{bottom:419.425794px;}
.y44_c00227{bottom:419.893602px;}
.y45_c00227{bottom:420.096794px;}
.y38_c00227{bottom:436.607616px;}
.y3d_c00227{bottom:436.607753px;}
.y37_c00227{bottom:436.607756px;}
.y39_c00227{bottom:436.608087px;}
.y3a_c00227{bottom:436.608269px;}
.y3c_c00227{bottom:436.608270px;}
.y3b_c00227{bottom:436.608819px;}
.y30_c00227{bottom:451.973372px;}
.y31_c00227{bottom:452.208788px;}
.y32_c00227{bottom:453.031916px;}
.y33_c00227{bottom:453.207546px;}
.y34_c00227{bottom:453.810374px;}
.y35_c00227{bottom:454.028703px;}
.y36_c00227{bottom:454.670564px;}
.y28_c00227{bottom:468.985892px;}
.y29_c00227{bottom:469.459103px;}
.y2a_c00227{bottom:469.647296px;}
.y2b_c00227{bottom:470.328362px;}
.y2c_c00227{bottom:470.895708px;}
.y2d_c00227{bottom:471.162530px;}
.y2e_c00227{bottom:471.369858px;}
.y2f_c00227{bottom:471.931938px;}
.y26_c00227{bottom:487.620320px;}
.y27_c00227{bottom:487.620752px;}
.y25_c00227{bottom:487.620869px;}
.y22_c00227{bottom:487.620903px;}
.y24_c00227{bottom:487.621266px;}
.y23_c00227{bottom:487.621364px;}
.y19_c00227{bottom:502.738859px;}
.y1a_c00227{bottom:502.940174px;}
.y1b_c00227{bottom:503.422586px;}
.y1c_c00227{bottom:503.664953px;}
.y1d_c00227{bottom:504.224844px;}
.y1e_c00227{bottom:504.374382px;}
.y1f_c00227{bottom:504.722349px;}
.y20_c00227{bottom:505.609809px;}
.y21_c00227{bottom:505.954091px;}
.y11_c00227{bottom:520.020176px;}
.y12_c00227{bottom:520.571912px;}
.y13_c00227{bottom:520.902185px;}
.y14_c00227{bottom:521.309555px;}
.y15_c00227{bottom:521.487213px;}
.y16_c00227{bottom:521.946698px;}
.y17_c00227{bottom:522.495509px;}
.y18_c00227{bottom:522.722451px;}
.yb_c00227{bottom:536.763000px;}
.yc_c00227{bottom:537.773256px;}
.yd_c00227{bottom:538.251260px;}
.ye_c00227{bottom:538.939337px;}
.yf_c00227{bottom:540.009614px;}
.y10_c00227{bottom:540.181779px;}
.y2_c00227{bottom:553.773000px;}
.y3_c00227{bottom:554.537820px;}
.y4_c00227{bottom:554.939445px;}
.y5_c00227{bottom:555.534975px;}
.y6_c00227{bottom:555.810533px;}
.y7_c00227{bottom:556.628543px;}
.y8_c00227{bottom:556.912020px;}
.y9_c00227{bottom:557.255618px;}
.ya_c00227{bottom:557.952015px;}
.y1_c00227{bottom:570.642000px;}
.h15_c00227{height:22.050000px;}
.h14_c00227{height:49.354836px;}
.h10_c00227{height:56.705556px;}
.h9_c00227{height:57.754880px;}
.hd_c00227{height:57.755659px;}
.ha_c00227{height:58.804968px;}
.h8_c00227{height:59.855057px;}
.h11_c00227{height:59.855865px;}
.h7_c00227{height:60.905146px;}
.hc_c00227{height:60.905968px;}
.h12_c00227{height:61.956071px;}
.h6_c00227{height:63.005323px;}
.hb_c00227{height:63.006174px;}
.h13_c00227{height:64.056277px;}
.h5_c00227{height:66.155589px;}
.h4_c00227{height:67.205678px;}
.he_c00227{height:67.206585px;}
.hf_c00227{height:68.256688px;}
.h3_c00227{height:69.307796px;}
.h2_c00227{height:70.350000px;}
.h0_c00227{height:616.350000px;}
.h1_c00227{height:616.500000px;}
.w0_c00227{width:378.540000px;}
.w1_c00227{width:378.750000px;}
.x0_c00227{left:0.000000px;}
.xb_c00227{left:54.183000px;}
.x2_c00227{left:55.278000px;}
.x47_c00227{left:56.326500px;}
.x30_c00227{left:58.428534px;}
.x70_c00227{left:66.897621px;}
.x1e_c00227{left:68.313621px;}
.x18_c00227{left:71.985131px;}
.x27_c00227{left:78.423615px;}
.x2c_c00227{left:79.921149px;}
.x5b_c00227{left:82.353261px;}
.x48_c00227{left:84.613500px;}
.x62_c00227{left:87.634044px;}
.x6a_c00227{left:91.999836px;}
.x54_c00227{left:93.423030px;}
.x39_c00227{left:94.931795px;}
.x3c_c00227{left:98.389980px;}
.x49_c00227{left:101.427000px;}
.x23_c00227{left:102.458460px;}
.x11_c00227{left:104.587466px;}
.x3_c00227{left:106.266000px;}
.x33_c00227{left:108.142052px;}
.x19_c00227{left:112.209657px;}
.x51_c00227{left:114.754149px;}
.x24_c00227{left:121.320201px;}
.x34_c00227{left:122.726922px;}
.x3d_c00227{left:124.627163px;}
.xc_c00227{left:131.895000px;}
.x4_c00227{left:133.041000px;}
.x12_c00227{left:134.609246px;}
.x45_c00227{left:138.979500px;}
.x63_c00227{left:140.835270px;}
.x4d_c00227{left:143.260293px;}
.x40_c00227{left:146.536500px;}
.x1f_c00227{left:149.319810px;}
.x6d_c00227{left:150.628833px;}
.x2d_c00227{left:154.176188px;}
.x5c_c00227{left:155.531604px;}
.x55_c00227{left:158.229735px;}
.x71_c00227{left:159.261840px;}
.x28_c00227{left:160.782833px;}
.x4e_c00227{left:161.902818px;}
.x4a_c00227{left:163.008000px;}
.x74_c00227{left:165.470223px;}
.xd_c00227{left:168.664500px;}
.x13_c00227{left:171.600201px;}
.x5_c00227{left:172.743000px;}
.x64_c00227{left:177.019782px;}
.x1a_c00227{left:179.115035px;}
.x5f_c00227{left:180.518865px;}
.x3e_c00227{left:182.360664px;}
.x56_c00227{left:185.232027px;}
.x41_c00227{left:186.738000px;}
.x14_c00227{left:187.805130px;}
.x1_c00227{left:189.540000px;}
.x6_c00227{left:191.113500px;}
.x75_c00227{left:192.724845px;}
.x2e_c00227{left:196.298805px;}
.x35_c00227{left:200.223431px;}
.x31_c00227{left:203.143670px;}
.x76_c00227{left:204.335058px;}
.x57_c00227{left:207.104811px;}
.x6e_c00227{left:212.637090px;}
.x68_c00227{left:214.124874px;}
.x60_c00227{left:217.786440px;}
.x1b_c00227{left:220.500561px;}
.xe_c00227{left:221.593500px;}
.x52_c00227{left:222.764817px;}
.x65_c00227{left:225.618819px;}
.x6b_c00227{left:227.871933px;}
.x15_c00227{left:229.612722px;}
.x32_c00227{left:232.876320px;}
.x20_c00227{left:235.726916px;}
.x42_c00227{left:237.535500px;}
.x29_c00227{left:238.551855px;}
.x7_c00227{left:245.647500px;}
.x4f_c00227{left:247.225212px;}
.x7b_c00227{left:249.307437px;}
.x58_c00227{left:250.578816px;}
.x3a_c00227{left:251.808323px;}
.x53_c00227{left:253.547844px;}
.x5d_c00227{left:257.060991px;}
.x2a_c00227{left:260.424213px;}
.x21_c00227{left:262.458440px;}
.x8_c00227{left:264.546000px;}
.x59_c00227{left:267.590655px;}
.x61_c00227{left:269.832624px;}
.x36_c00227{left:271.722783px;}
.x25_c00227{left:272.844110px;}
.x3f_c00227{left:274.478063px;}
.x6f_c00227{left:276.416805px;}
.x16_c00227{left:279.561029px;}
.x7c_c00227{left:282.059802px;}
.x79_c00227{left:284.067813px;}
.x43_c00227{left:285.855000px;}
.x9_c00227{left:287.452500px;}
.x72_c00227{left:290.457492px;}
.x2f_c00227{left:292.967646px;}
.x1c_c00227{left:294.421517px;}
.x37_c00227{left:297.425946px;}
.x46_c00227{left:298.834500px;}
.x17_c00227{left:300.134055px;}
.x50_c00227{left:302.035245px;}
.xf_c00227{left:303.922500px;}
.x3b_c00227{left:305.827025px;}
.x7e_c00227{left:308.597151px;}
.x4b_c00227{left:309.883500px;}
.x5e_c00227{left:312.685890px;}
.x69_c00227{left:314.304009px;}
.x66_c00227{left:316.051620px;}
.x10_c00227{left:317.166000px;}
.x38_c00227{left:319.028012px;}
.x77_c00227{left:320.698920px;}
.x1d_c00227{left:323.097387px;}
.x2b_c00227{left:324.685229px;}
.x22_c00227{left:330.233886px;}
.xa_c00227{left:333.879000px;}
.x67_c00227{left:335.499939px;}
.x6c_c00227{left:336.908277px;}
.x44_c00227{left:340.128000px;}
.x7a_c00227{left:341.906292px;}
.x78_c00227{left:344.467584px;}
.x4c_c00227{left:346.341000px;}
.x5a_c00227{left:347.788878px;}
.x26_c00227{left:349.801613px;}
.x7d_c00227{left:351.430221px;}
.x73_c00227{left:353.077110px;}
.x7f_c00227{left:373.680000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fs13_c00227{font-size:19.600000pt;}
.fs12_c00227{font-size:43.870965pt;}
.fse_c00227{font-size:50.404939pt;}
.fs7_c00227{font-size:51.337671pt;}
.fsb_c00227{font-size:51.338364pt;}
.fs8_c00227{font-size:52.271083pt;}
.fs6_c00227{font-size:53.204495pt;}
.fsf_c00227{font-size:53.205213pt;}
.fs5_c00227{font-size:54.137907pt;}
.fsa_c00227{font-size:54.138638pt;}
.fs10_c00227{font-size:55.072063pt;}
.fs4_c00227{font-size:56.004732pt;}
.fs9_c00227{font-size:56.005488pt;}
.fs11_c00227{font-size:56.938913pt;}
.fs3_c00227{font-size:58.804968pt;}
.fs2_c00227{font-size:59.738381pt;}
.fsc_c00227{font-size:59.739187pt;}
.fsd_c00227{font-size:60.672612pt;}
.fs1_c00227{font-size:61.606930pt;}
.fs0_c00227{font-size:62.533333pt;}
.y0_c00227{bottom:0.000000pt;}
.yf3_c00227{bottom:21.103989pt;}
.yf4_c00227{bottom:22.301256pt;}
.yf5_c00227{bottom:22.759469pt;}
.yf6_c00227{bottom:24.466024pt;}
.yf7_c00227{bottom:24.933213pt;}
.yf8_c00227{bottom:25.556923pt;}
.yec_c00227{bottom:37.663403pt;}
.yed_c00227{bottom:37.959211pt;}
.yee_c00227{bottom:38.661176pt;}
.yef_c00227{bottom:38.903648pt;}
.yf0_c00227{bottom:39.533979pt;}
.yf1_c00227{bottom:39.854880pt;}
.yf2_c00227{bottom:40.532787pt;}
.ye4_c00227{bottom:50.872080pt;}
.ye5_c00227{bottom:51.514893pt;}
.ye6_c00227{bottom:53.600963pt;}
.ye7_c00227{bottom:54.002168pt;}
.ye8_c00227{bottom:54.617051pt;}
.ye9_c00227{bottom:55.763603pt;}
.yea_c00227{bottom:56.295085pt;}
.yeb_c00227{bottom:57.682984pt;}
.ydc_c00227{bottom:66.225712pt;}
.ydd_c00227{bottom:66.777069pt;}
.yde_c00227{bottom:66.994568pt;}
.ydf_c00227{bottom:67.354736pt;}
.ye0_c00227{bottom:68.178712pt;}
.ye1_c00227{bottom:69.510200pt;}
.ye2_c00227{bottom:69.730816pt;}
.ye3_c00227{bottom:70.047941pt;}
.yd5_c00227{bottom:81.111085pt;}
.yd6_c00227{bottom:81.518739pt;}
.yd7_c00227{bottom:82.544637pt;}
.yd8_c00227{bottom:82.907811pt;}
.yd9_c00227{bottom:83.682229pt;}
.yda_c00227{bottom:84.413624pt;}
.ydb_c00227{bottom:84.832093pt;}
.yce_c00227{bottom:96.470259pt;}
.ycf_c00227{bottom:97.218640pt;}
.yd0_c00227{bottom:97.352480pt;}
.yd1_c00227{bottom:97.701029pt;}
.yd2_c00227{bottom:98.554440pt;}
.yd3_c00227{bottom:99.451043pt;}
.yd4_c00227{bottom:100.286320pt;}
.yc6_c00227{bottom:111.830893pt;}
.yc7_c00227{bottom:112.525309pt;}
.yc8_c00227{bottom:112.872792pt;}
.yc9_c00227{bottom:113.152645pt;}
.yca_c00227{bottom:113.671467pt;}
.ycb_c00227{bottom:114.034992pt;}
.ycc_c00227{bottom:114.942051pt;}
.ycd_c00227{bottom:115.291941pt;}
.ybd_c00227{bottom:126.955360pt;}
.ybe_c00227{bottom:127.568675pt;}
.ybf_c00227{bottom:128.102960pt;}
.yc0_c00227{bottom:128.400576pt;}
.yc1_c00227{bottom:129.125157pt;}
.yc2_c00227{bottom:129.493275pt;}
.yc3_c00227{bottom:129.983669pt;}
.yc4_c00227{bottom:130.770523pt;}
.yc5_c00227{bottom:131.922013pt;}
.yb4_c00227{bottom:145.489723pt;}
.yb5_c00227{bottom:145.490379pt;}
.yb6_c00227{bottom:145.490589pt;}
.yb7_c00227{bottom:145.491085pt;}
.yb8_c00227{bottom:145.491101pt;}
.yb9_c00227{bottom:145.491293pt;}
.yba_c00227{bottom:145.491861pt;}
.ybb_c00227{bottom:145.491877pt;}
.ybc_c00227{bottom:145.492320pt;}
.yac_c00227{bottom:161.123219pt;}
.yb1_c00227{bottom:161.123403pt;}
.yaf_c00227{bottom:161.123427pt;}
.yab_c00227{bottom:161.123469pt;}
.yb3_c00227{bottom:161.123755pt;}
.yad_c00227{bottom:161.123787pt;}
.yb2_c00227{bottom:161.123827pt;}
.yae_c00227{bottom:161.123909pt;}
.yb0_c00227{bottom:161.124064pt;}
.ya2_c00227{bottom:174.232555pt;}
.ya3_c00227{bottom:174.526224pt;}
.ya4_c00227{bottom:175.046923pt;}
.ya5_c00227{bottom:175.234797pt;}
.ya6_c00227{bottom:175.401200pt;}
.ya7_c00227{bottom:175.876629pt;}
.ya8_c00227{bottom:176.066531pt;}
.ya9_c00227{bottom:176.760635pt;}
.yaa_c00227{bottom:176.950648pt;}
.y9b_c00227{bottom:190.074320pt;}
.y9c_c00227{bottom:191.038053pt;}
.y9d_c00227{bottom:191.283848pt;}
.y9e_c00227{bottom:191.647603pt;}
.y9f_c00227{bottom:192.156595pt;}
.ya0_c00227{bottom:192.433339pt;}
.ya1_c00227{bottom:192.611075pt;}
.y95_c00227{bottom:206.896979pt;}
.y96_c00227{bottom:206.897349pt;}
.y94_c00227{bottom:206.897531pt;}
.y98_c00227{bottom:206.897912pt;}
.y99_c00227{bottom:206.897997pt;}
.y97_c00227{bottom:206.898005pt;}
.y9a_c00227{bottom:206.898173pt;}
.y93_c00227{bottom:222.100395pt;}
.y92_c00227{bottom:222.100931pt;}
.y90_c00227{bottom:222.101443pt;}
.y91_c00227{bottom:222.101507pt;}
.y8a_c00227{bottom:236.388661pt;}
.y89_c00227{bottom:236.388699pt;}
.y87_c00227{bottom:236.388704pt;}
.y8b_c00227{bottom:236.388803pt;}
.y88_c00227{bottom:236.389040pt;}
.y8c_c00227{bottom:236.389192pt;}
.y8e_c00227{bottom:236.389368pt;}
.y8f_c00227{bottom:236.389579pt;}
.y8d_c00227{bottom:236.389707pt;}
.y7e_c00227{bottom:251.538445pt;}
.y83_c00227{bottom:251.538613pt;}
.y7f_c00227{bottom:251.538744pt;}
.y82_c00227{bottom:251.538792pt;}
.y81_c00227{bottom:251.538811pt;}
.y84_c00227{bottom:251.538949pt;}
.y86_c00227{bottom:251.539176pt;}
.y85_c00227{bottom:251.539195pt;}
.y80_c00227{bottom:251.539365pt;}
.y77_c00227{bottom:264.480227pt;}
.y78_c00227{bottom:265.410803pt;}
.y79_c00227{bottom:265.609459pt;}
.y7a_c00227{bottom:266.248619pt;}
.y7b_c00227{bottom:266.519219pt;}
.y7c_c00227{bottom:267.103947pt;}
.y7d_c00227{bottom:267.354429pt;}
.y6d_c00227{bottom:279.842667pt;}
.y6e_c00227{bottom:280.194683pt;}
.y6f_c00227{bottom:280.403917pt;}
.y70_c00227{bottom:280.997872pt;}
.y71_c00227{bottom:281.170259pt;}
.y72_c00227{bottom:281.482701pt;}
.y73_c00227{bottom:282.043056pt;}
.y74_c00227{bottom:282.416875pt;}
.y75_c00227{bottom:282.998043pt;}
.y76_c00227{bottom:283.451736pt;}
.y66_c00227{bottom:294.722667pt;}
.y67_c00227{bottom:295.370568pt;}
.y68_c00227{bottom:295.761224pt;}
.y69_c00227{bottom:296.036912pt;}
.y6a_c00227{bottom:296.766107pt;}
.y6b_c00227{bottom:297.001325pt;}
.y6c_c00227{bottom:297.750531pt;}
.y5e_c00227{bottom:310.082667pt;}
.y5f_c00227{bottom:310.828277pt;}
.y60_c00227{bottom:311.131021pt;}
.y61_c00227{bottom:311.595572pt;}
.y62_c00227{bottom:312.182565pt;}
.y63_c00227{bottom:312.466468pt;}
.y64_c00227{bottom:312.740924pt;}
.y65_c00227{bottom:313.368079pt;}
.y55_c00227{bottom:325.672983pt;}
.y56_c00227{bottom:325.823636pt;}
.y57_c00227{bottom:326.087896pt;}
.y58_c00227{bottom:326.344407pt;}
.y59_c00227{bottom:326.908865pt;}
.y5a_c00227{bottom:327.286281pt;}
.y5b_c00227{bottom:327.587312pt;}
.y5c_c00227{bottom:327.809305pt;}
.y5d_c00227{bottom:328.004203pt;}
.y4e_c00227{bottom:340.554319pt;}
.y4f_c00227{bottom:340.969123pt;}
.y50_c00227{bottom:341.985807pt;}
.y51_c00227{bottom:342.124225pt;}
.y52_c00227{bottom:342.643228pt;}
.y53_c00227{bottom:342.846756pt;}
.y54_c00227{bottom:343.219436pt;}
.y46_c00227{bottom:355.912832pt;}
.y47_c00227{bottom:356.423027pt;}
.y48_c00227{bottom:356.566225pt;}
.y49_c00227{bottom:357.126332pt;}
.y4a_c00227{bottom:357.324384pt;}
.y4b_c00227{bottom:358.023911pt;}
.y4c_c00227{bottom:358.275584pt;}
.y4d_c00227{bottom:358.486535pt;}
.y3e_c00227{bottom:371.271165pt;}
.y3f_c00227{bottom:371.662583pt;}
.y40_c00227{bottom:372.130861pt;}
.y41_c00227{bottom:372.428512pt;}
.y42_c00227{bottom:372.558031pt;}
.y43_c00227{bottom:372.822928pt;}
.y44_c00227{bottom:373.238757pt;}
.y45_c00227{bottom:373.419372pt;}
.y38_c00227{bottom:388.095659pt;}
.y3d_c00227{bottom:388.095780pt;}
.y37_c00227{bottom:388.095783pt;}
.y39_c00227{bottom:388.096077pt;}
.y3a_c00227{bottom:388.096239pt;}
.y3c_c00227{bottom:388.096240pt;}
.y3b_c00227{bottom:388.096728pt;}
.y30_c00227{bottom:401.754108pt;}
.y31_c00227{bottom:401.963367pt;}
.y32_c00227{bottom:402.695036pt;}
.y33_c00227{bottom:402.851152pt;}
.y34_c00227{bottom:403.386999pt;}
.y35_c00227{bottom:403.581069pt;}
.y36_c00227{bottom:404.151612pt;}
.y28_c00227{bottom:416.876348pt;}
.y29_c00227{bottom:417.296980pt;}
.y2a_c00227{bottom:417.464263pt;}
.y2b_c00227{bottom:418.069655pt;}
.y2c_c00227{bottom:418.573963pt;}
.y2d_c00227{bottom:418.811137pt;}
.y2e_c00227{bottom:418.995429pt;}
.y2f_c00227{bottom:419.495056pt;}
.y26_c00227{bottom:433.440284pt;}
.y27_c00227{bottom:433.440668pt;}
.y25_c00227{bottom:433.440772pt;}
.y22_c00227{bottom:433.440803pt;}
.y24_c00227{bottom:433.441125pt;}
.y23_c00227{bottom:433.441212pt;}
.y19_c00227{bottom:446.878985pt;}
.y1a_c00227{bottom:447.057932pt;}
.y1b_c00227{bottom:447.486743pt;}
.y1c_c00227{bottom:447.702180pt;}
.y1d_c00227{bottom:448.199861pt;}
.y1e_c00227{bottom:448.332784pt;}
.y1f_c00227{bottom:448.642088pt;}
.y20_c00227{bottom:449.430941pt;}
.y21_c00227{bottom:449.736969pt;}
.y11_c00227{bottom:462.240156pt;}
.y12_c00227{bottom:462.730588pt;}
.y13_c00227{bottom:463.024164pt;}
.y14_c00227{bottom:463.386271pt;}
.y15_c00227{bottom:463.544189pt;}
.y16_c00227{bottom:463.952620pt;}
.y17_c00227{bottom:464.440452pt;}
.y18_c00227{bottom:464.642179pt;}
.yb_c00227{bottom:477.122667pt;}
.yc_c00227{bottom:478.020672pt;}
.yd_c00227{bottom:478.445564pt;}
.ye_c00227{bottom:479.057188pt;}
.yf_c00227{bottom:480.008545pt;}
.y10_c00227{bottom:480.161581pt;}
.y2_c00227{bottom:492.242667pt;}
.y3_c00227{bottom:492.922507pt;}
.y4_c00227{bottom:493.279507pt;}
.y5_c00227{bottom:493.808867pt;}
.y6_c00227{bottom:494.053807pt;}
.y7_c00227{bottom:494.780927pt;}
.y8_c00227{bottom:495.032907pt;}
.y9_c00227{bottom:495.338327pt;}
.ya_c00227{bottom:495.957347pt;}
.y1_c00227{bottom:507.237333pt;}
.h15_c00227{height:19.600000pt;}
.h14_c00227{height:43.870965pt;}
.h10_c00227{height:50.404939pt;}
.h9_c00227{height:51.337671pt;}
.hd_c00227{height:51.338364pt;}
.ha_c00227{height:52.271083pt;}
.h8_c00227{height:53.204495pt;}
.h11_c00227{height:53.205213pt;}
.h7_c00227{height:54.137907pt;}
.hc_c00227{height:54.138638pt;}
.h12_c00227{height:55.072063pt;}
.h6_c00227{height:56.004732pt;}
.hb_c00227{height:56.005488pt;}
.h13_c00227{height:56.938913pt;}
.h5_c00227{height:58.804968pt;}
.h4_c00227{height:59.738381pt;}
.he_c00227{height:59.739187pt;}
.hf_c00227{height:60.672612pt;}
.h3_c00227{height:61.606930pt;}
.h2_c00227{height:62.533333pt;}
.h0_c00227{height:547.866667pt;}
.h1_c00227{height:548.000000pt;}
.w0_c00227{width:336.480000pt;}
.w1_c00227{width:336.666667pt;}
.x0_c00227{left:0.000000pt;}
.xb_c00227{left:48.162667pt;}
.x2_c00227{left:49.136000pt;}
.x47_c00227{left:50.068000pt;}
.x30_c00227{left:51.936475pt;}
.x70_c00227{left:59.464552pt;}
.x1e_c00227{left:60.723219pt;}
.x18_c00227{left:63.986783pt;}
.x27_c00227{left:69.709880pt;}
.x2c_c00227{left:71.041021pt;}
.x5b_c00227{left:73.202899pt;}
.x48_c00227{left:75.212000pt;}
.x62_c00227{left:77.896928pt;}
.x6a_c00227{left:81.777632pt;}
.x54_c00227{left:83.042693pt;}
.x39_c00227{left:84.383817pt;}
.x3c_c00227{left:87.457760pt;}
.x49_c00227{left:90.157333pt;}
.x23_c00227{left:91.074187pt;}
.x11_c00227{left:92.966636pt;}
.x3_c00227{left:94.458667pt;}
.x33_c00227{left:96.126268pt;}
.x19_c00227{left:99.741917pt;}
.x51_c00227{left:102.003688pt;}
.x24_c00227{left:107.840179pt;}
.x34_c00227{left:109.090597pt;}
.x3d_c00227{left:110.779700pt;}
.xc_c00227{left:117.240000pt;}
.x4_c00227{left:118.258667pt;}
.x12_c00227{left:119.652663pt;}
.x45_c00227{left:123.537333pt;}
.x63_c00227{left:125.186907pt;}
.x4d_c00227{left:127.342483pt;}
.x40_c00227{left:130.254667pt;}
.x1f_c00227{left:132.728720pt;}
.x6d_c00227{left:133.892296pt;}
.x2d_c00227{left:137.045500pt;}
.x5c_c00227{left:138.250315pt;}
.x55_c00227{left:140.648653pt;}
.x71_c00227{left:141.566080pt;}
.x28_c00227{left:142.918073pt;}
.x4e_c00227{left:143.913616pt;}
.x4a_c00227{left:144.896000pt;}
.x74_c00227{left:147.084643pt;}
.xd_c00227{left:149.924000pt;}
.x13_c00227{left:152.533512pt;}
.x5_c00227{left:153.549333pt;}
.x64_c00227{left:157.350917pt;}
.x1a_c00227{left:159.213364pt;}
.x5f_c00227{left:160.461213pt;}
.x3e_c00227{left:162.098368pt;}
.x56_c00227{left:164.650691pt;}
.x41_c00227{left:165.989333pt;}
.x14_c00227{left:166.937893pt;}
.x1_c00227{left:168.480000pt;}
.x6_c00227{left:169.878667pt;}
.x75_c00227{left:171.310973pt;}
.x2e_c00227{left:174.487827pt;}
.x35_c00227{left:177.976383pt;}
.x31_c00227{left:180.572151pt;}
.x76_c00227{left:181.631163pt;}
.x57_c00227{left:184.093165pt;}
.x6e_c00227{left:189.010747pt;}
.x68_c00227{left:190.333221pt;}
.x60_c00227{left:193.587947pt;}
.x1b_c00227{left:196.000499pt;}
.xe_c00227{left:196.972000pt;}
.x52_c00227{left:198.013171pt;}
.x65_c00227{left:200.550061pt;}
.x6b_c00227{left:202.552829pt;}
.x15_c00227{left:204.100197pt;}
.x32_c00227{left:207.001173pt;}
.x20_c00227{left:209.535036pt;}
.x42_c00227{left:211.142667pt;}
.x29_c00227{left:212.046093pt;}
.x7_c00227{left:218.353333pt;}
.x4f_c00227{left:219.755744pt;}
.x7b_c00227{left:221.606611pt;}
.x58_c00227{left:222.736725pt;}
.x3a_c00227{left:223.829620pt;}
.x53_c00227{left:225.375861pt;}
.x5d_c00227{left:228.498659pt;}
.x2a_c00227{left:231.488189pt;}
.x21_c00227{left:233.296391pt;}
.x8_c00227{left:235.152000pt;}
.x59_c00227{left:237.858360pt;}
.x61_c00227{left:239.851221pt;}
.x36_c00227{left:241.531363pt;}
.x25_c00227{left:242.528097pt;}
.x3f_c00227{left:243.980500pt;}
.x6f_c00227{left:245.703827pt;}
.x16_c00227{left:248.498692pt;}
.x7c_c00227{left:250.719824pt;}
.x79_c00227{left:252.504723pt;}
.x43_c00227{left:254.093333pt;}
.x9_c00227{left:255.513333pt;}
.x72_c00227{left:258.184437pt;}
.x2f_c00227{left:260.415685pt;}
.x1c_c00227{left:261.708015pt;}
.x37_c00227{left:264.378619pt;}
.x46_c00227{left:265.630667pt;}
.x17_c00227{left:266.785827pt;}
.x50_c00227{left:268.475773pt;}
.xf_c00227{left:270.153333pt;}
.x3b_c00227{left:271.846244pt;}
.x7e_c00227{left:274.308579pt;}
.x4b_c00227{left:275.452000pt;}
.x5e_c00227{left:277.943013pt;}
.x69_c00227{left:279.381341pt;}
.x66_c00227{left:280.934773pt;}
.x10_c00227{left:281.925333pt;}
.x38_c00227{left:283.580455pt;}
.x77_c00227{left:285.065707pt;}
.x1d_c00227{left:287.197677pt;}
.x2b_c00227{left:288.609092pt;}
.x22_c00227{left:293.541232pt;}
.xa_c00227{left:296.781333pt;}
.x67_c00227{left:298.222168pt;}
.x6c_c00227{left:299.474024pt;}
.x44_c00227{left:302.336000pt;}
.x7a_c00227{left:303.916704pt;}
.x78_c00227{left:306.193408pt;}
.x4c_c00227{left:307.858667pt;}
.x5a_c00227{left:309.145669pt;}
.x26_c00227{left:310.934767pt;}
.x7d_c00227{left:312.382419pt;}
.x73_c00227{left:313.846320pt;}
.x7f_c00227{left:332.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00228 {
    display:none;
  }
  .loading-indicator_c00228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00228 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00228 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00228" -> "#page-container .classname_c00228")
 */
.pf_c00228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00228 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00228 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00228 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00228 {overflow:visible;}
  }
}
.c_c00228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00228 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00228:after { /* webkit #35443 */
  content: '';
}
.t_c00228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00228 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00228 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00228 { /* info for Javascript */
  display:none;
}
.l_c00228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00228:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00228 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00228.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00228{transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);}
.ma0_c00228{transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.142570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142570,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.144715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144715,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.148160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148160,0.000000,0.000000,0.250000,0,0);}
.m70_c00228{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00228{transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149780,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);}
.m81_c00228{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);}
.m71_c00228{transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.156465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00228{transform:matrix(0.157485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157485,0.000000,0.000000,0.250000,0,0);}
.m53_c00228{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.158940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00228{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159295,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);}
.mce_c00228{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.me4_c00228{transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);}
.me1_c00228{transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161930,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m78_c00228{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m94_c00228{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.m3c_c00228{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m97_c00228{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.mcc_c00228{transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00228{transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);}
.m69_c00228{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m88_c00228{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.md6_c00228{transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);}
.m65_c00228{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m7a_c00228{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m87_c00228{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m7d_c00228{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mda_c00228{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.mab_c00228{transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);}
.me2_c00228{transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00228{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00228{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.med_c00228{transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);}
.ma5_c00228{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m93_c00228{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.m3a_c00228{transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);}
.m98_c00228{transform:matrix(0.178805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178805,0.000000,0.000000,0.250000,0,0);}
.m28_c00228{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m8b_c00228{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);}
.mdc_c00228{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.m83_c00228{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m6b_c00228{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m48_c00228{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00228{transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);}
.m72_c00228{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.mc6_c00228{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.mb0_c00228{transform:matrix(0.182495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182495,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.mee_c00228{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m76_c00228{transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);}
.mdb_c00228{transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);}
.m63_c00228{transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);}
.m80_c00228{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00228{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.mbe_c00228{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.ma2_c00228{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.mb1_c00228{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m5d_c00228{transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187360,0.000000,0.000000,0.250000,0,0);}
.m49_c00228{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);}
.mdf_c00228{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.maa_c00228{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.mcb_c00228{transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m51_c00228{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.me3_c00228{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m74_c00228{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);}
.md9_c00228{transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);}
.m75_c00228{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m50_c00228{transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192080,0.000000,0.000000,0.250000,0,0);}
.m79_c00228{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00228{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m60_c00228{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m73_c00228{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.m8f_c00228{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);}
.md0_c00228{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.me8_c00228{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m67_c00228{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m77_c00228{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.mbd_c00228{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.mc4_c00228{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.mba_c00228{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.ma6_c00228{transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);}
.m25_c00228{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.me0_c00228{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.me5_c00228{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m5e_c00228{transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200080,0.000000,0.000000,0.250000,0,0);}
.m6f_c00228{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.m9e_c00228{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.mdd_c00228{transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);}
.md3_c00228{transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);}
.m8a_c00228{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m9b_c00228{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.mbb_c00228{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.meb_c00228{transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);}
.mc8_c00228{transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.mec_c00228{transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);}
.m42_c00228{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.mb2_c00228{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.m8c_c00228{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.md1_c00228{transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);}
.m89_c00228{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.md2_c00228{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.ma4_c00228{transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);}
.m92_c00228{transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);}
.m5f_c00228{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.mb5_c00228{transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m3e_c00228{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.m86_c00228{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m9d_c00228{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);}
.m8d_c00228{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.m82_c00228{transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.ma7_c00228{transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);}
.m8e_c00228{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.mad_c00228{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);}
.md5_c00228{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.mb3_c00228{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.ma8_c00228{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00228{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m66_c00228{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m95_c00228{transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);}
.m64_c00228{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.me7_c00228{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.mc9_c00228{transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.me6_c00228{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m22_c00228{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);}
.mac_c00228{transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);}
.m46_c00228{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.maf_c00228{transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);}
.m7e_c00228{transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);}
.m96_c00228{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.m59_c00228{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m61_c00228{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.m85_c00228{transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);}
.m68_c00228{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);}
.md4_c00228{transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);}
.mc5_c00228{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);}
.m57_c00228{transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);}
.m9f_c00228{transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);}
.m91_c00228{transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);}
.mb8_c00228{transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00228{transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);}
.m6a_c00228{transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m62_c00228{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.mae_c00228{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m7f_c00228{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.mca_c00228{transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);}
.me9_c00228{transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);}
.ma9_c00228{transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);}
.mc7_c00228{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.mc0_c00228{transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);}
.m84_c00228{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m4a_c00228{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.md7_c00228{transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00228{transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.mbf_c00228{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);}
.mc2_c00228{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.mc3_c00228{transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);}
.m6d_c00228{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.ma3_c00228{transform:matrix(0.241410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241410,0.000000,0.000000,0.250000,0,0);}
.m7b_c00228{transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);}
.mde_c00228{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.m90_c00228{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m56_c00228{transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00228{transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);}
.mea_c00228{transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);}
.md8_c00228{transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);}
.m6c_c00228{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.m6e_c00228{transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);}
.m99_c00228{transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);}
.mc1_c00228{transform:matrix(0.289015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289015,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:0.000000px;}
.fc0_c00228{color:transparent;}
.fse_c00228{font-size:53.550000px;}
.fs9_c00228{font-size:57.750000px;}
.fs1_c00228{font-size:58.800000px;}
.fsc_c00228{font-size:59.850000px;}
.fs2_c00228{font-size:60.900000px;}
.fs8_c00228{font-size:61.950000px;}
.fs4_c00228{font-size:63.000000px;}
.fs6_c00228{font-size:64.050000px;}
.fsb_c00228{font-size:66.150000px;}
.fsa_c00228{font-size:67.200000px;}
.fsd_c00228{font-size:68.250000px;}
.fs0_c00228{font-size:69.300000px;}
.fs3_c00228{font-size:70.350000px;}
.fs7_c00228{font-size:73.500000px;}
.fs5_c00228{font-size:76.650000px;}
.y0_c00228{bottom:0.000000px;}
.yd8_c00228{bottom:18.081000px;}
.yd7_c00228{bottom:31.867500px;}
.yd6_c00228{bottom:32.895000px;}
.yd5_c00228{bottom:33.310500px;}
.yd4_c00228{bottom:34.140000px;}
.yd3_c00228{bottom:35.203500px;}
.yd2_c00228{bottom:35.797500px;}
.yd1_c00228{bottom:36.717000px;}
.yd0_c00228{bottom:49.053000px;}
.ycf_c00228{bottom:50.854500px;}
.yce_c00228{bottom:52.147500px;}
.ycd_c00228{bottom:52.669500px;}
.ycc_c00228{bottom:53.455500px;}
.ycb_c00228{bottom:54.376500px;}
.yca_c00228{bottom:55.618500px;}
.yc9_c00228{bottom:67.884000px;}
.yc8_c00228{bottom:68.625000px;}
.yc7_c00228{bottom:70.627500px;}
.yc6_c00228{bottom:71.302500px;}
.yc5_c00228{bottom:73.375500px;}
.yc4_c00228{bottom:74.094000px;}
.yc3_c00228{bottom:75.871500px;}
.yc2_c00228{bottom:83.563500px;}
.yc1_c00228{bottom:84.379500px;}
.yc0_c00228{bottom:86.911500px;}
.ybf_c00228{bottom:88.633500px;}
.ybe_c00228{bottom:89.439000px;}
.ybd_c00228{bottom:90.178500px;}
.ybc_c00228{bottom:101.319000px;}
.ybb_c00228{bottom:102.667500px;}
.yba_c00228{bottom:103.275000px;}
.yb9_c00228{bottom:104.835000px;}
.yb8_c00228{bottom:105.477000px;}
.yb7_c00228{bottom:107.731500px;}
.yb6_c00228{bottom:117.789000px;}
.yb5_c00228{bottom:118.245000px;}
.yb4_c00228{bottom:119.214000px;}
.yb3_c00228{bottom:119.971500px;}
.yb2_c00228{bottom:120.454500px;}
.yb1_c00228{bottom:120.814500px;}
.yb0_c00228{bottom:121.237500px;}
.yaf_c00228{bottom:121.500000px;}
.yae_c00228{bottom:136.077000px;}
.yad_c00228{bottom:136.815000px;}
.yac_c00228{bottom:137.335500px;}
.yab_c00228{bottom:139.056000px;}
.yaa_c00228{bottom:140.133000px;}
.ya9_c00228{bottom:151.230000px;}
.ya8_c00228{bottom:152.263500px;}
.ya7_c00228{bottom:152.703000px;}
.ya6_c00228{bottom:153.372000px;}
.ya5_c00228{bottom:154.890000px;}
.ya4_c00228{bottom:155.448000px;}
.ya3_c00228{bottom:157.416000px;}
.ya2_c00228{bottom:168.925500px;}
.ya1_c00228{bottom:169.123500px;}
.ya0_c00228{bottom:169.557000px;}
.y9f_c00228{bottom:169.926000px;}
.y9e_c00228{bottom:170.086500px;}
.y9d_c00228{bottom:171.286500px;}
.y9c_c00228{bottom:171.510000px;}
.y9b_c00228{bottom:171.988500px;}
.y9a_c00228{bottom:184.584000px;}
.y99_c00228{bottom:184.762500px;}
.y98_c00228{bottom:185.560500px;}
.y97_c00228{bottom:186.276000px;}
.y96_c00228{bottom:186.651000px;}
.y95_c00228{bottom:187.413000px;}
.y94_c00228{bottom:187.837500px;}
.y93_c00228{bottom:188.188500px;}
.y92_c00228{bottom:202.039500px;}
.y91_c00228{bottom:203.635500px;}
.y90_c00228{bottom:204.027000px;}
.y8f_c00228{bottom:205.107000px;}
.y8e_c00228{bottom:206.578500px;}
.y8d_c00228{bottom:207.342000px;}
.y8c_c00228{bottom:207.813000px;}
.y8b_c00228{bottom:208.441500px;}
.y8a_c00228{bottom:217.942500px;}
.y89_c00228{bottom:218.752500px;}
.y88_c00228{bottom:219.174000px;}
.y87_c00228{bottom:220.497000px;}
.y86_c00228{bottom:220.792500px;}
.y85_c00228{bottom:221.809500px;}
.y84_c00228{bottom:222.907500px;}
.y83_c00228{bottom:223.257000px;}
.y82_c00228{bottom:223.831500px;}
.y81_c00228{bottom:236.182500px;}
.y80_c00228{bottom:236.676000px;}
.y7f_c00228{bottom:236.962500px;}
.y7e_c00228{bottom:238.479000px;}
.y7d_c00228{bottom:238.915500px;}
.y7c_c00228{bottom:239.647500px;}
.y7b_c00228{bottom:240.033000px;}
.y7a_c00228{bottom:241.077000px;}
.y79_c00228{bottom:241.383000px;}
.y78_c00228{bottom:253.104000px;}
.y77_c00228{bottom:254.302500px;}
.y76_c00228{bottom:254.539500px;}
.y75_c00228{bottom:255.715500px;}
.y74_c00228{bottom:255.972000px;}
.y73_c00228{bottom:256.936500px;}
.y72_c00228{bottom:258.121500px;}
.y71_c00228{bottom:270.462000px;}
.y70_c00228{bottom:271.267500px;}
.y6f_c00228{bottom:271.608000px;}
.y6e_c00228{bottom:272.244000px;}
.y6d_c00228{bottom:273.256500px;}
.y6c_c00228{bottom:274.255500px;}
.y6b_c00228{bottom:274.627500px;}
.y6a_c00228{bottom:276.214500px;}
.y69_c00228{bottom:287.703000px;}
.y68_c00228{bottom:288.817500px;}
.y67_c00228{bottom:289.347000px;}
.y66_c00228{bottom:290.619000px;}
.y65_c00228{bottom:291.033000px;}
.y64_c00228{bottom:292.050000px;}
.y63_c00228{bottom:293.230500px;}
.y62_c00228{bottom:305.665500px;}
.y61_c00228{bottom:306.886500px;}
.y60_c00228{bottom:307.348500px;}
.y5f_c00228{bottom:307.611000px;}
.y5e_c00228{bottom:308.457000px;}
.y5d_c00228{bottom:309.277500px;}
.y5c_c00228{bottom:309.627000px;}
.y5b_c00228{bottom:310.774500px;}
.y5a_c00228{bottom:322.866000px;}
.y59_c00228{bottom:323.439000px;}
.y58_c00228{bottom:323.836500px;}
.y57_c00228{bottom:324.271500px;}
.y56_c00228{bottom:325.210500px;}
.y55_c00228{bottom:325.425000px;}
.y54_c00228{bottom:325.894500px;}
.y53_c00228{bottom:339.459000px;}
.y52_c00228{bottom:339.598500px;}
.y51_c00228{bottom:340.228500px;}
.y50_c00228{bottom:340.816500px;}
.y4f_c00228{bottom:341.410500px;}
.y4e_c00228{bottom:342.183000px;}
.y4d_c00228{bottom:342.406500px;}
.y4c_c00228{bottom:342.634500px;}
.y4b_c00228{bottom:356.313000px;}
.y4a_c00228{bottom:372.811500px;}
.y49_c00228{bottom:373.131000px;}
.y48_c00228{bottom:374.128500px;}
.y47_c00228{bottom:374.880000px;}
.y46_c00228{bottom:375.270000px;}
.y45_c00228{bottom:375.508500px;}
.y44_c00228{bottom:375.672000px;}
.y43_c00228{bottom:376.386000px;}
.y42_c00228{bottom:389.002500px;}
.y41_c00228{bottom:390.789000px;}
.y40_c00228{bottom:391.323000px;}
.y3f_c00228{bottom:391.947000px;}
.y3e_c00228{bottom:392.740500px;}
.y3d_c00228{bottom:394.044000px;}
.y3c_c00228{bottom:394.746000px;}
.y3b_c00228{bottom:405.495000px;}
.y3a_c00228{bottom:406.356000px;}
.y39_c00228{bottom:406.644000px;}
.y38_c00228{bottom:407.505000px;}
.y37_c00228{bottom:407.742000px;}
.y36_c00228{bottom:408.685500px;}
.y35_c00228{bottom:409.056000px;}
.y34_c00228{bottom:409.467000px;}
.y33_c00228{bottom:410.137500px;}
.y32_c00228{bottom:422.473500px;}
.y31_c00228{bottom:422.733000px;}
.y30_c00228{bottom:423.396000px;}
.y2f_c00228{bottom:423.958500px;}
.y2e_c00228{bottom:424.221000px;}
.y2d_c00228{bottom:424.737000px;}
.y2c_c00228{bottom:425.013000px;}
.y2b_c00228{bottom:425.835000px;}
.y2a_c00228{bottom:426.066000px;}
.y29_c00228{bottom:439.710000px;}
.y28_c00228{bottom:439.983000px;}
.y27_c00228{bottom:440.826000px;}
.y26_c00228{bottom:441.177000px;}
.y25_c00228{bottom:442.452000px;}
.y24_c00228{bottom:442.816500px;}
.y23_c00228{bottom:443.077500px;}
.y22_c00228{bottom:457.042500px;}
.y21_c00228{bottom:457.423500px;}
.y20_c00228{bottom:457.773000px;}
.y1f_c00228{bottom:459.354000px;}
.y1e_c00228{bottom:459.906000px;}
.y1d_c00228{bottom:460.545000px;}
.y1c_c00228{bottom:461.167500px;}
.y1b_c00228{bottom:473.562000px;}
.y1a_c00228{bottom:474.441000px;}
.y19_c00228{bottom:475.165500px;}
.y18_c00228{bottom:475.425000px;}
.y17_c00228{bottom:475.821000px;}
.y16_c00228{bottom:476.745000px;}
.y15_c00228{bottom:476.946000px;}
.y14_c00228{bottom:477.636000px;}
.y13_c00228{bottom:491.110500px;}
.y12_c00228{bottom:491.589000px;}
.y11_c00228{bottom:492.711000px;}
.y10_c00228{bottom:493.270500px;}
.yf_c00228{bottom:494.149500px;}
.ye_c00228{bottom:495.577500px;}
.yd_c00228{bottom:495.994500px;}
.yc_c00228{bottom:509.014500px;}
.yb_c00228{bottom:525.775500px;}
.ya_c00228{bottom:526.152000px;}
.y9_c00228{bottom:527.124000px;}
.y8_c00228{bottom:527.619000px;}
.y7_c00228{bottom:527.934000px;}
.y6_c00228{bottom:528.487500px;}
.y5_c00228{bottom:529.498500px;}
.y4_c00228{bottom:530.013000px;}
.y3_c00228{bottom:543.603000px;}
.y2_c00228{bottom:560.947500px;}
.y1_c00228{bottom:576.984000px;}
.h10_c00228{height:53.550000px;}
.hb_c00228{height:57.750000px;}
.h3_c00228{height:58.800000px;}
.he_c00228{height:59.850000px;}
.h4_c00228{height:60.900000px;}
.ha_c00228{height:61.950000px;}
.h6_c00228{height:63.000000px;}
.h8_c00228{height:64.050000px;}
.hd_c00228{height:66.150000px;}
.hc_c00228{height:67.200000px;}
.hf_c00228{height:68.250000px;}
.h2_c00228{height:69.300000px;}
.h5_c00228{height:70.350000px;}
.h9_c00228{height:73.500000px;}
.h7_c00228{height:76.650000px;}
.h0_c00228{height:616.350000px;}
.h1_c00228{height:616.500000px;}
.w0_c00228{width:378.540000px;}
.w1_c00228{width:378.750000px;}
.x0_c00228{left:0.000000px;}
.x79_c00228{left:26.736000px;}
.x5a_c00228{left:30.262500px;}
.x37_c00228{left:31.432500px;}
.x5c_c00228{left:33.238500px;}
.x3e_c00228{left:34.920000px;}
.x3_c00228{left:36.990000px;}
.x63_c00228{left:38.109000px;}
.x30_c00228{left:40.105500px;}
.x2c_c00228{left:44.101500px;}
.x7f_c00228{left:45.403500px;}
.x81_c00228{left:49.405500px;}
.x64_c00228{left:52.648500px;}
.x9_c00228{left:54.540000px;}
.x4c_c00228{left:56.026500px;}
.x31_c00228{left:57.904500px;}
.x16_c00228{left:60.481500px;}
.x2d_c00228{left:64.165500px;}
.x49_c00228{left:65.877000px;}
.x10_c00228{left:68.416500px;}
.x3f_c00228{left:70.021500px;}
.x6e_c00228{left:72.175500px;}
.x38_c00228{left:73.336500px;}
.x26_c00228{left:75.702000px;}
.x4_c00228{left:78.030000px;}
.x17_c00228{left:79.651500px;}
.xa_c00228{left:81.810000px;}
.x7d_c00228{left:88.282500px;}
.x44_c00228{left:89.563500px;}
.x6f_c00228{left:90.838500px;}
.x2e_c00228{left:92.188500px;}
.x50_c00228{left:93.267000px;}
.x22_c00228{left:96.220500px;}
.x39_c00228{left:98.992500px;}
.x54_c00228{left:100.206000px;}
.x45_c00228{left:102.192000px;}
.x7a_c00228{left:104.712000px;}
.x74_c00228{left:107.581500px;}
.x5d_c00228{left:112.591500px;}
.x6b_c00228{left:114.258000px;}
.x27_c00228{left:115.656000px;}
.x55_c00228{left:119.664000px;}
.x32_c00228{left:121.137000px;}
.x76_c00228{left:123.618000px;}
.x80_c00228{left:125.050500px;}
.xb_c00228{left:126.630000px;}
.x18_c00228{left:127.711500px;}
.x11_c00228{left:131.589000px;}
.x40_c00228{left:135.168000px;}
.x5_c00228{left:139.320000px;}
.x19_c00228{left:141.751500px;}
.xc_c00228{left:146.880000px;}
.x28_c00228{left:150.202500px;}
.x6d_c00228{left:151.359000px;}
.x65_c00228{left:155.512500px;}
.x23_c00228{left:157.839000px;}
.x1a_c00228{left:159.031500px;}
.x7e_c00228{left:162.543000px;}
.x12_c00228{left:166.213500px;}
.x1_c00228{left:168.210000px;}
.x7b_c00228{left:169.506000px;}
.x41_c00228{left:174.841500px;}
.x66_c00228{left:176.293500px;}
.x51_c00228{left:178.564500px;}
.x73_c00228{left:179.602500px;}
.x3a_c00228{left:181.065000px;}
.x33_c00228{left:182.146500px;}
.x24_c00228{left:184.207500px;}
.x13_c00228{left:185.910000px;}
.x1e_c00228{left:188.242500px;}
.x2f_c00228{left:190.245000px;}
.x68_c00228{left:193.441500px;}
.x3b_c00228{left:195.834000px;}
.x6_c00228{left:199.800000px;}
.x25_c00228{left:201.496500px;}
.x4a_c00228{left:203.847000px;}
.x42_c00228{left:206.056500px;}
.x46_c00228{left:208.294500px;}
.x56_c00228{left:212.268000px;}
.xd_c00228{left:214.380000px;}
.x14_c00228{left:216.888000px;}
.x52_c00228{left:218.050500px;}
.x1f_c00228{left:219.292500px;}
.x1b_c00228{left:224.911500px;}
.x57_c00228{left:226.833000px;}
.x5e_c00228{left:231.750000px;}
.x43_c00228{left:232.786500px;}
.x5b_c00228{left:234.627000px;}
.x77_c00228{left:236.002500px;}
.x6c_c00228{left:242.188500px;}
.x60_c00228{left:243.936000px;}
.x34_c00228{left:245.601000px;}
.x29_c00228{left:249.010500px;}
.x7_c00228{left:250.020000px;}
.x58_c00228{left:252.474000px;}
.x4d_c00228{left:253.933500px;}
.x61_c00228{left:257.917500px;}
.x67_c00228{left:262.161000px;}
.x1c_c00228{left:263.251500px;}
.x4b_c00228{left:264.327000px;}
.x71_c00228{left:266.479500px;}
.x3c_c00228{left:267.640500px;}
.x2a_c00228{left:270.883500px;}
.x7c_c00228{left:276.333000px;}
.x8_c00228{left:277.560000px;}
.x69_c00228{left:278.668500px;}
.x5f_c00228{left:280.536000px;}
.x20_c00228{left:281.667000px;}
.x47_c00228{left:285.028500px;}
.x70_c00228{left:287.686500px;}
.x78_c00228{left:289.942500px;}
.xe_c00228{left:291.870000px;}
.x2b_c00228{left:294.688500px;}
.x35_c00228{left:296.566500px;}
.x75_c00228{left:297.897000px;}
.x15_c00228{left:301.197000px;}
.x1d_c00228{left:302.401500px;}
.xf_c00228{left:304.830000px;}
.x53_c00228{left:306.309000px;}
.x21_c00228{left:308.211000px;}
.x48_c00228{left:309.598500px;}
.x4e_c00228{left:311.217000px;}
.x72_c00228{left:313.461000px;}
.x36_c00228{left:316.549500px;}
.x59_c00228{left:320.349000px;}
.x3d_c00228{left:321.447000px;}
.x4f_c00228{left:323.857500px;}
.x62_c00228{left:328.390500px;}
.x2_c00228{left:330.480000px;}
.x6a_c00228{left:343.441500px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.fse_c00228{font-size:47.600000pt;}
.fs9_c00228{font-size:51.333333pt;}
.fs1_c00228{font-size:52.266667pt;}
.fsc_c00228{font-size:53.200000pt;}
.fs2_c00228{font-size:54.133333pt;}
.fs8_c00228{font-size:55.066667pt;}
.fs4_c00228{font-size:56.000000pt;}
.fs6_c00228{font-size:56.933333pt;}
.fsb_c00228{font-size:58.800000pt;}
.fsa_c00228{font-size:59.733333pt;}
.fsd_c00228{font-size:60.666667pt;}
.fs0_c00228{font-size:61.600000pt;}
.fs3_c00228{font-size:62.533333pt;}
.fs7_c00228{font-size:65.333333pt;}
.fs5_c00228{font-size:68.133333pt;}
.y0_c00228{bottom:0.000000pt;}
.yd8_c00228{bottom:16.072000pt;}
.yd7_c00228{bottom:28.326667pt;}
.yd6_c00228{bottom:29.240000pt;}
.yd5_c00228{bottom:29.609333pt;}
.yd4_c00228{bottom:30.346667pt;}
.yd3_c00228{bottom:31.292000pt;}
.yd2_c00228{bottom:31.820000pt;}
.yd1_c00228{bottom:32.637333pt;}
.yd0_c00228{bottom:43.602667pt;}
.ycf_c00228{bottom:45.204000pt;}
.yce_c00228{bottom:46.353333pt;}
.ycd_c00228{bottom:46.817333pt;}
.ycc_c00228{bottom:47.516000pt;}
.ycb_c00228{bottom:48.334667pt;}
.yca_c00228{bottom:49.438667pt;}
.yc9_c00228{bottom:60.341333pt;}
.yc8_c00228{bottom:61.000000pt;}
.yc7_c00228{bottom:62.780000pt;}
.yc6_c00228{bottom:63.380000pt;}
.yc5_c00228{bottom:65.222667pt;}
.yc4_c00228{bottom:65.861333pt;}
.yc3_c00228{bottom:67.441333pt;}
.yc2_c00228{bottom:74.278667pt;}
.yc1_c00228{bottom:75.004000pt;}
.yc0_c00228{bottom:77.254667pt;}
.ybf_c00228{bottom:78.785333pt;}
.ybe_c00228{bottom:79.501333pt;}
.ybd_c00228{bottom:80.158667pt;}
.ybc_c00228{bottom:90.061333pt;}
.ybb_c00228{bottom:91.260000pt;}
.yba_c00228{bottom:91.800000pt;}
.yb9_c00228{bottom:93.186667pt;}
.yb8_c00228{bottom:93.757333pt;}
.yb7_c00228{bottom:95.761333pt;}
.yb6_c00228{bottom:104.701333pt;}
.yb5_c00228{bottom:105.106667pt;}
.yb4_c00228{bottom:105.968000pt;}
.yb3_c00228{bottom:106.641333pt;}
.yb2_c00228{bottom:107.070667pt;}
.yb1_c00228{bottom:107.390667pt;}
.yb0_c00228{bottom:107.766667pt;}
.yaf_c00228{bottom:108.000000pt;}
.yae_c00228{bottom:120.957333pt;}
.yad_c00228{bottom:121.613333pt;}
.yac_c00228{bottom:122.076000pt;}
.yab_c00228{bottom:123.605333pt;}
.yaa_c00228{bottom:124.562667pt;}
.ya9_c00228{bottom:134.426667pt;}
.ya8_c00228{bottom:135.345333pt;}
.ya7_c00228{bottom:135.736000pt;}
.ya6_c00228{bottom:136.330667pt;}
.ya5_c00228{bottom:137.680000pt;}
.ya4_c00228{bottom:138.176000pt;}
.ya3_c00228{bottom:139.925333pt;}
.ya2_c00228{bottom:150.156000pt;}
.ya1_c00228{bottom:150.332000pt;}
.ya0_c00228{bottom:150.717333pt;}
.y9f_c00228{bottom:151.045333pt;}
.y9e_c00228{bottom:151.188000pt;}
.y9d_c00228{bottom:152.254667pt;}
.y9c_c00228{bottom:152.453333pt;}
.y9b_c00228{bottom:152.878667pt;}
.y9a_c00228{bottom:164.074667pt;}
.y99_c00228{bottom:164.233333pt;}
.y98_c00228{bottom:164.942667pt;}
.y97_c00228{bottom:165.578667pt;}
.y96_c00228{bottom:165.912000pt;}
.y95_c00228{bottom:166.589333pt;}
.y94_c00228{bottom:166.966667pt;}
.y93_c00228{bottom:167.278667pt;}
.y92_c00228{bottom:179.590667pt;}
.y91_c00228{bottom:181.009333pt;}
.y90_c00228{bottom:181.357333pt;}
.y8f_c00228{bottom:182.317333pt;}
.y8e_c00228{bottom:183.625333pt;}
.y8d_c00228{bottom:184.304000pt;}
.y8c_c00228{bottom:184.722667pt;}
.y8b_c00228{bottom:185.281333pt;}
.y8a_c00228{bottom:193.726667pt;}
.y89_c00228{bottom:194.446667pt;}
.y88_c00228{bottom:194.821333pt;}
.y87_c00228{bottom:195.997333pt;}
.y86_c00228{bottom:196.260000pt;}
.y85_c00228{bottom:197.164000pt;}
.y84_c00228{bottom:198.140000pt;}
.y83_c00228{bottom:198.450667pt;}
.y82_c00228{bottom:198.961333pt;}
.y81_c00228{bottom:209.940000pt;}
.y80_c00228{bottom:210.378667pt;}
.y7f_c00228{bottom:210.633333pt;}
.y7e_c00228{bottom:211.981333pt;}
.y7d_c00228{bottom:212.369333pt;}
.y7c_c00228{bottom:213.020000pt;}
.y7b_c00228{bottom:213.362667pt;}
.y7a_c00228{bottom:214.290667pt;}
.y79_c00228{bottom:214.562667pt;}
.y78_c00228{bottom:224.981333pt;}
.y77_c00228{bottom:226.046667pt;}
.y76_c00228{bottom:226.257333pt;}
.y75_c00228{bottom:227.302667pt;}
.y74_c00228{bottom:227.530667pt;}
.y73_c00228{bottom:228.388000pt;}
.y72_c00228{bottom:229.441333pt;}
.y71_c00228{bottom:240.410667pt;}
.y70_c00228{bottom:241.126667pt;}
.y6f_c00228{bottom:241.429333pt;}
.y6e_c00228{bottom:241.994667pt;}
.y6d_c00228{bottom:242.894667pt;}
.y6c_c00228{bottom:243.782667pt;}
.y6b_c00228{bottom:244.113333pt;}
.y6a_c00228{bottom:245.524000pt;}
.y69_c00228{bottom:255.736000pt;}
.y68_c00228{bottom:256.726667pt;}
.y67_c00228{bottom:257.197333pt;}
.y66_c00228{bottom:258.328000pt;}
.y65_c00228{bottom:258.696000pt;}
.y64_c00228{bottom:259.600000pt;}
.y63_c00228{bottom:260.649333pt;}
.y62_c00228{bottom:271.702667pt;}
.y61_c00228{bottom:272.788000pt;}
.y60_c00228{bottom:273.198667pt;}
.y5f_c00228{bottom:273.432000pt;}
.y5e_c00228{bottom:274.184000pt;}
.y5d_c00228{bottom:274.913333pt;}
.y5c_c00228{bottom:275.224000pt;}
.y5b_c00228{bottom:276.244000pt;}
.y5a_c00228{bottom:286.992000pt;}
.y59_c00228{bottom:287.501333pt;}
.y58_c00228{bottom:287.854667pt;}
.y57_c00228{bottom:288.241333pt;}
.y56_c00228{bottom:289.076000pt;}
.y55_c00228{bottom:289.266667pt;}
.y54_c00228{bottom:289.684000pt;}
.y53_c00228{bottom:301.741333pt;}
.y52_c00228{bottom:301.865333pt;}
.y51_c00228{bottom:302.425333pt;}
.y50_c00228{bottom:302.948000pt;}
.y4f_c00228{bottom:303.476000pt;}
.y4e_c00228{bottom:304.162667pt;}
.y4d_c00228{bottom:304.361333pt;}
.y4c_c00228{bottom:304.564000pt;}
.y4b_c00228{bottom:316.722667pt;}
.y4a_c00228{bottom:331.388000pt;}
.y49_c00228{bottom:331.672000pt;}
.y48_c00228{bottom:332.558667pt;}
.y47_c00228{bottom:333.226667pt;}
.y46_c00228{bottom:333.573333pt;}
.y45_c00228{bottom:333.785333pt;}
.y44_c00228{bottom:333.930667pt;}
.y43_c00228{bottom:334.565333pt;}
.y42_c00228{bottom:345.780000pt;}
.y41_c00228{bottom:347.368000pt;}
.y40_c00228{bottom:347.842667pt;}
.y3f_c00228{bottom:348.397333pt;}
.y3e_c00228{bottom:349.102667pt;}
.y3d_c00228{bottom:350.261333pt;}
.y3c_c00228{bottom:350.885333pt;}
.y3b_c00228{bottom:360.440000pt;}
.y3a_c00228{bottom:361.205333pt;}
.y39_c00228{bottom:361.461333pt;}
.y38_c00228{bottom:362.226667pt;}
.y37_c00228{bottom:362.437333pt;}
.y36_c00228{bottom:363.276000pt;}
.y35_c00228{bottom:363.605333pt;}
.y34_c00228{bottom:363.970667pt;}
.y33_c00228{bottom:364.566667pt;}
.y32_c00228{bottom:375.532000pt;}
.y31_c00228{bottom:375.762667pt;}
.y30_c00228{bottom:376.352000pt;}
.y2f_c00228{bottom:376.852000pt;}
.y2e_c00228{bottom:377.085333pt;}
.y2d_c00228{bottom:377.544000pt;}
.y2c_c00228{bottom:377.789333pt;}
.y2b_c00228{bottom:378.520000pt;}
.y2a_c00228{bottom:378.725333pt;}
.y29_c00228{bottom:390.853333pt;}
.y28_c00228{bottom:391.096000pt;}
.y27_c00228{bottom:391.845333pt;}
.y26_c00228{bottom:392.157333pt;}
.y25_c00228{bottom:393.290667pt;}
.y24_c00228{bottom:393.614667pt;}
.y23_c00228{bottom:393.846667pt;}
.y22_c00228{bottom:406.260000pt;}
.y21_c00228{bottom:406.598667pt;}
.y20_c00228{bottom:406.909333pt;}
.y1f_c00228{bottom:408.314667pt;}
.y1e_c00228{bottom:408.805333pt;}
.y1d_c00228{bottom:409.373333pt;}
.y1c_c00228{bottom:409.926667pt;}
.y1b_c00228{bottom:420.944000pt;}
.y1a_c00228{bottom:421.725333pt;}
.y19_c00228{bottom:422.369333pt;}
.y18_c00228{bottom:422.600000pt;}
.y17_c00228{bottom:422.952000pt;}
.y16_c00228{bottom:423.773333pt;}
.y15_c00228{bottom:423.952000pt;}
.y14_c00228{bottom:424.565333pt;}
.y13_c00228{bottom:436.542667pt;}
.y12_c00228{bottom:436.968000pt;}
.y11_c00228{bottom:437.965333pt;}
.y10_c00228{bottom:438.462667pt;}
.yf_c00228{bottom:439.244000pt;}
.ye_c00228{bottom:440.513333pt;}
.yd_c00228{bottom:440.884000pt;}
.yc_c00228{bottom:452.457333pt;}
.yb_c00228{bottom:467.356000pt;}
.ya_c00228{bottom:467.690667pt;}
.y9_c00228{bottom:468.554667pt;}
.y8_c00228{bottom:468.994667pt;}
.y7_c00228{bottom:469.274667pt;}
.y6_c00228{bottom:469.766667pt;}
.y5_c00228{bottom:470.665333pt;}
.y4_c00228{bottom:471.122667pt;}
.y3_c00228{bottom:483.202667pt;}
.y2_c00228{bottom:498.620000pt;}
.y1_c00228{bottom:512.874667pt;}
.h10_c00228{height:47.600000pt;}
.hb_c00228{height:51.333333pt;}
.h3_c00228{height:52.266667pt;}
.he_c00228{height:53.200000pt;}
.h4_c00228{height:54.133333pt;}
.ha_c00228{height:55.066667pt;}
.h6_c00228{height:56.000000pt;}
.h8_c00228{height:56.933333pt;}
.hd_c00228{height:58.800000pt;}
.hc_c00228{height:59.733333pt;}
.hf_c00228{height:60.666667pt;}
.h2_c00228{height:61.600000pt;}
.h5_c00228{height:62.533333pt;}
.h9_c00228{height:65.333333pt;}
.h7_c00228{height:68.133333pt;}
.h0_c00228{height:547.866667pt;}
.h1_c00228{height:548.000000pt;}
.w0_c00228{width:336.480000pt;}
.w1_c00228{width:336.666667pt;}
.x0_c00228{left:0.000000pt;}
.x79_c00228{left:23.765333pt;}
.x5a_c00228{left:26.900000pt;}
.x37_c00228{left:27.940000pt;}
.x5c_c00228{left:29.545333pt;}
.x3e_c00228{left:31.040000pt;}
.x3_c00228{left:32.880000pt;}
.x63_c00228{left:33.874667pt;}
.x30_c00228{left:35.649333pt;}
.x2c_c00228{left:39.201333pt;}
.x7f_c00228{left:40.358667pt;}
.x81_c00228{left:43.916000pt;}
.x64_c00228{left:46.798667pt;}
.x9_c00228{left:48.480000pt;}
.x4c_c00228{left:49.801333pt;}
.x31_c00228{left:51.470667pt;}
.x16_c00228{left:53.761333pt;}
.x2d_c00228{left:57.036000pt;}
.x49_c00228{left:58.557333pt;}
.x10_c00228{left:60.814667pt;}
.x3f_c00228{left:62.241333pt;}
.x6e_c00228{left:64.156000pt;}
.x38_c00228{left:65.188000pt;}
.x26_c00228{left:67.290667pt;}
.x4_c00228{left:69.360000pt;}
.x17_c00228{left:70.801333pt;}
.xa_c00228{left:72.720000pt;}
.x7d_c00228{left:78.473333pt;}
.x44_c00228{left:79.612000pt;}
.x6f_c00228{left:80.745333pt;}
.x2e_c00228{left:81.945333pt;}
.x50_c00228{left:82.904000pt;}
.x22_c00228{left:85.529333pt;}
.x39_c00228{left:87.993333pt;}
.x54_c00228{left:89.072000pt;}
.x45_c00228{left:90.837333pt;}
.x7a_c00228{left:93.077333pt;}
.x74_c00228{left:95.628000pt;}
.x5d_c00228{left:100.081333pt;}
.x6b_c00228{left:101.562667pt;}
.x27_c00228{left:102.805333pt;}
.x55_c00228{left:106.368000pt;}
.x32_c00228{left:107.677333pt;}
.x76_c00228{left:109.882667pt;}
.x80_c00228{left:111.156000pt;}
.xb_c00228{left:112.560000pt;}
.x18_c00228{left:113.521333pt;}
.x11_c00228{left:116.968000pt;}
.x40_c00228{left:120.149333pt;}
.x5_c00228{left:123.840000pt;}
.x19_c00228{left:126.001333pt;}
.xc_c00228{left:130.560000pt;}
.x28_c00228{left:133.513333pt;}
.x6d_c00228{left:134.541333pt;}
.x65_c00228{left:138.233333pt;}
.x23_c00228{left:140.301333pt;}
.x1a_c00228{left:141.361333pt;}
.x7e_c00228{left:144.482667pt;}
.x12_c00228{left:147.745333pt;}
.x1_c00228{left:149.520000pt;}
.x7b_c00228{left:150.672000pt;}
.x41_c00228{left:155.414667pt;}
.x66_c00228{left:156.705333pt;}
.x51_c00228{left:158.724000pt;}
.x73_c00228{left:159.646667pt;}
.x3a_c00228{left:160.946667pt;}
.x33_c00228{left:161.908000pt;}
.x24_c00228{left:163.740000pt;}
.x13_c00228{left:165.253333pt;}
.x1e_c00228{left:167.326667pt;}
.x2f_c00228{left:169.106667pt;}
.x68_c00228{left:171.948000pt;}
.x3b_c00228{left:174.074667pt;}
.x6_c00228{left:177.600000pt;}
.x25_c00228{left:179.108000pt;}
.x4a_c00228{left:181.197333pt;}
.x42_c00228{left:183.161333pt;}
.x46_c00228{left:185.150667pt;}
.x56_c00228{left:188.682667pt;}
.xd_c00228{left:190.560000pt;}
.x14_c00228{left:192.789333pt;}
.x52_c00228{left:193.822667pt;}
.x1f_c00228{left:194.926667pt;}
.x1b_c00228{left:199.921333pt;}
.x57_c00228{left:201.629333pt;}
.x5e_c00228{left:206.000000pt;}
.x43_c00228{left:206.921333pt;}
.x5b_c00228{left:208.557333pt;}
.x77_c00228{left:209.780000pt;}
.x6c_c00228{left:215.278667pt;}
.x60_c00228{left:216.832000pt;}
.x34_c00228{left:218.312000pt;}
.x29_c00228{left:221.342667pt;}
.x7_c00228{left:222.240000pt;}
.x58_c00228{left:224.421333pt;}
.x4d_c00228{left:225.718667pt;}
.x61_c00228{left:229.260000pt;}
.x67_c00228{left:233.032000pt;}
.x1c_c00228{left:234.001333pt;}
.x4b_c00228{left:234.957333pt;}
.x71_c00228{left:236.870667pt;}
.x3c_c00228{left:237.902667pt;}
.x2a_c00228{left:240.785333pt;}
.x7c_c00228{left:245.629333pt;}
.x8_c00228{left:246.720000pt;}
.x69_c00228{left:247.705333pt;}
.x5f_c00228{left:249.365333pt;}
.x20_c00228{left:250.370667pt;}
.x47_c00228{left:253.358667pt;}
.x70_c00228{left:255.721333pt;}
.x78_c00228{left:257.726667pt;}
.xe_c00228{left:259.440000pt;}
.x2b_c00228{left:261.945333pt;}
.x35_c00228{left:263.614667pt;}
.x75_c00228{left:264.797333pt;}
.x15_c00228{left:267.730667pt;}
.x1d_c00228{left:268.801333pt;}
.xf_c00228{left:270.960000pt;}
.x53_c00228{left:272.274667pt;}
.x21_c00228{left:273.965333pt;}
.x48_c00228{left:275.198667pt;}
.x4e_c00228{left:276.637333pt;}
.x72_c00228{left:278.632000pt;}
.x36_c00228{left:281.377333pt;}
.x59_c00228{left:284.754667pt;}
.x3d_c00228{left:285.730667pt;}
.x4f_c00228{left:287.873333pt;}
.x62_c00228{left:291.902667pt;}
.x2_c00228{left:293.760000pt;}
.x6a_c00228{left:305.281333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00229 {
    display:none;
  }
  .loading-indicator_c00229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00229 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00229 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00229" -> "#page-container .classname_c00229")
 */
.pf_c00229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00229 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00229 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00229 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00229 {overflow:visible;}
  }
}
.c_c00229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00229 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00229:after { /* webkit #35443 */
  content: '';
}
.t_c00229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00229 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00229 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00229 { /* info for Javascript */
  display:none;
}
.l_c00229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00229:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00229 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00229.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00229{transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147580,0.000000,0.000000,0.250000,0,0);}
.m84_c00229{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.m9b_c00229{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m2e_c00229{transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);}
.m6e_c00229{transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);}
.m35_c00229{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m51_c00229{transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);}
.m1b_c00229{transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);}
.m70_c00229{transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);}
.m80_c00229{transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);}
.m50_c00229{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.m41_c00229{transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);}
.me3_c00229{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.m42_c00229{transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166610,0.000000,0.000000,0.250000,0,0);}
.m37_c00229{transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);}
.m8c_c00229{transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);}
.m47_c00229{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m32_c00229{transform:matrix(0.168880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168880,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.mac_c00229{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m38_c00229{transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);}
.m94_c00229{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.me1_c00229{transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171995,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.mec_c00229{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m26_c00229{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.m67_c00229{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m71_c00229{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.m3a_c00229{transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);}
.mb8_c00229{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mcc_c00229{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m54_c00229{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.mab_c00229{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.md5_c00229{transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);}
.me0_c00229{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m5d_c00229{transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);}
.m82_c00229{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m57_c00229{transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);}
.m5c_c00229{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.mf1_c00229{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m45_c00229{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00229{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m86_c00229{transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00229{transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m36_c00229{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m27_c00229{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m6c_c00229{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.mcf_c00229{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00229{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.mc4_c00229{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.m5f_c00229{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m58_c00229{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.m90_c00229{transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);}
.m7a_c00229{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m61_c00229{transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);}
.md4_c00229{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m76_c00229{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m3c_c00229{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.m78_c00229{transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);}
.m96_c00229{transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00229{transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186490,0.000000,0.000000,0.250000,0,0);}
.mc8_c00229{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.mdc_c00229{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.me7_c00229{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.mb7_c00229{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.ma8_c00229{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.maf_c00229{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.m95_c00229{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.m31_c00229{transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.m6f_c00229{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.ma1_c00229{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00229{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189165,0.000000,0.000000,0.250000,0,0);}
.m7e_c00229{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.me2_c00229{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.m89_c00229{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m46_c00229{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.m56_c00229{transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189905,0.000000,0.000000,0.250000,0,0);}
.mc3_c00229{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);}
.mc2_c00229{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m52_c00229{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.ma7_c00229{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);}
.md6_c00229{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193095,0.000000,0.000000,0.250000,0,0);}
.m68_c00229{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m53_c00229{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.m59_c00229{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.m8d_c00229{transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);}
.mbb_c00229{transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);}
.md9_c00229{transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);}
.m8b_c00229{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.me5_c00229{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m44_c00229{transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);}
.me8_c00229{transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);}
.med_c00229{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.me4_c00229{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mb5_c00229{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00229{transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196890,0.000000,0.000000,0.250000,0,0);}
.meb_c00229{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m66_c00229{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m34_c00229{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.md7_c00229{transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);}
.mc9_c00229{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);}
.mb6_c00229{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.mba_c00229{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.m85_c00229{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.m99_c00229{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.ma0_c00229{transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);}
.m49_c00229{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00229{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m3b_c00229{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m6a_c00229{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m9f_c00229{transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);}
.m87_c00229{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.md3_c00229{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00229{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m7c_c00229{transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00229{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.me6_c00229{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.m55_c00229{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m77_c00229{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m81_c00229{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.m93_c00229{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m64_c00229{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.m60_c00229{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mca_c00229{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m7b_c00229{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.m83_c00229{transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204855,0.000000,0.000000,0.250000,0,0);}
.ma2_c00229{transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);}
.me9_c00229{transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00229{transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);}
.mbf_c00229{transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);}
.m69_c00229{transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);}
.mc7_c00229{transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);}
.md0_c00229{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.mb3_c00229{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.mcb_c00229{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.md1_c00229{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.m4e_c00229{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.mdf_c00229{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m29_c00229{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);}
.mad_c00229{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.mb4_c00229{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m2b_c00229{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m98_c00229{transform:matrix(0.210120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210120,0.000000,0.000000,0.250000,0,0);}
.mbc_c00229{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m4a_c00229{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{transform:matrix(0.210510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210510,0.000000,0.000000,0.250000,0,0);}
.mef_c00229{transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210665,0.000000,0.000000,0.250000,0,0);}
.m25_c00229{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m43_c00229{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m75_c00229{transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);}
.maa_c00229{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00229{transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);}
.m30_c00229{transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);}
.mcd_c00229{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.mde_c00229{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m74_c00229{transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);}
.m79_c00229{transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212685,0.000000,0.000000,0.250000,0,0);}
.ma6_c00229{transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);}
.mb1_c00229{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.m4f_c00229{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m88_c00229{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.mdd_c00229{transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);}
.mae_c00229{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.m19_c00229{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m9e_c00229{transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00229{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m73_c00229{transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);}
.m65_c00229{transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);}
.m8a_c00229{transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);}
.m62_c00229{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.mc5_c00229{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00229{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.mf2_c00229{transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00229{transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221435,0.000000,0.000000,0.250000,0,0);}
.m4b_c00229{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.mda_c00229{transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);}
.m48_c00229{transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);}
.m4c_c00229{transform:matrix(0.224480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224480,0.000000,0.000000,0.250000,0,0);}
.m91_c00229{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m63_c00229{transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);}
.mea_c00229{transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);}
.m72_c00229{transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);}
.m6b_c00229{transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);}
.m97_c00229{transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);}
.ma9_c00229{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m2f_c00229{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00229{transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.231770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231770,0.000000,0.000000,0.250000,0,0);}
.m7d_c00229{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m5b_c00229{transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);}
.mee_c00229{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m6d_c00229{transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m9c_c00229{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m92_c00229{transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);}
.md2_c00229{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.ma5_c00229{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.md8_c00229{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.mbd_c00229{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00229{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00229{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00229{transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);}
.mce_c00229{transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);}
.mc6_c00229{transform:matrix(0.277655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00229{transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);}
.m9d_c00229{transform:matrix(0.357020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357020,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:0.000000px;}
.fc0_c00229{color:transparent;}
.fsa_c00229{font-size:58.800000px;}
.fs4_c00229{font-size:59.850000px;}
.fs7_c00229{font-size:60.900000px;}
.fs2_c00229{font-size:61.950000px;}
.fs5_c00229{font-size:63.000000px;}
.fs9_c00229{font-size:64.050000px;}
.fs8_c00229{font-size:66.150000px;}
.fs0_c00229{font-size:69.300000px;}
.fs6_c00229{font-size:70.350000px;}
.fs1_c00229{font-size:71.400000px;}
.fs3_c00229{font-size:72.450000px;}
.y0_c00229{bottom:0.000000px;}
.y84_c00229{bottom:25.108500px;}
.y85_c00229{bottom:25.699500px;}
.y86_c00229{bottom:25.938000px;}
.y87_c00229{bottom:26.185500px;}
.y88_c00229{bottom:26.877000px;}
.y89_c00229{bottom:27.580500px;}
.y8a_c00229{bottom:28.012500px;}
.y8b_c00229{bottom:28.155000px;}
.y83_c00229{bottom:42.787500px;}
.y82_c00229{bottom:60.220500px;}
.y7b_c00229{bottom:75.598500px;}
.y7c_c00229{bottom:76.291500px;}
.y7d_c00229{bottom:76.470000px;}
.y7e_c00229{bottom:77.290500px;}
.y7f_c00229{bottom:78.081000px;}
.y80_c00229{bottom:78.486000px;}
.y81_c00229{bottom:78.816000px;}
.y74_c00229{bottom:93.145500px;}
.y75_c00229{bottom:93.432000px;}
.y76_c00229{bottom:94.219500px;}
.y77_c00229{bottom:94.413000px;}
.y78_c00229{bottom:94.968000px;}
.y79_c00229{bottom:95.362500px;}
.y7a_c00229{bottom:95.698500px;}
.y6a_c00229{bottom:110.698500px;}
.y6b_c00229{bottom:111.117000px;}
.y6c_c00229{bottom:111.286500px;}
.y6d_c00229{bottom:111.702000px;}
.y6e_c00229{bottom:111.951000px;}
.y6f_c00229{bottom:112.569000px;}
.y70_c00229{bottom:112.779000px;}
.y71_c00229{bottom:112.938000px;}
.y72_c00229{bottom:113.425500px;}
.y73_c00229{bottom:113.560500px;}
.y62_c00229{bottom:127.168500px;}
.y63_c00229{bottom:127.900500px;}
.y64_c00229{bottom:128.385000px;}
.y65_c00229{bottom:129.352500px;}
.y66_c00229{bottom:129.747000px;}
.y67_c00229{bottom:130.048500px;}
.y68_c00229{bottom:130.597500px;}
.y69_c00229{bottom:130.888500px;}
.y58_c00229{bottom:144.990000px;}
.y59_c00229{bottom:145.498500px;}
.y5a_c00229{bottom:146.004000px;}
.y5b_c00229{bottom:146.208000px;}
.y5c_c00229{bottom:146.521500px;}
.y5d_c00229{bottom:146.680500px;}
.y5e_c00229{bottom:147.324000px;}
.y5f_c00229{bottom:147.739500px;}
.y60_c00229{bottom:148.167000px;}
.y61_c00229{bottom:148.461000px;}
.y50_c00229{bottom:162.541500px;}
.y51_c00229{bottom:162.942000px;}
.y52_c00229{bottom:163.156500px;}
.y53_c00229{bottom:163.827000px;}
.y54_c00229{bottom:164.521500px;}
.y55_c00229{bottom:164.824500px;}
.y56_c00229{bottom:165.279000px;}
.y57_c00229{bottom:165.510000px;}
.y47_c00229{bottom:180.631500px;}
.y48_c00229{bottom:181.228500px;}
.y49_c00229{bottom:181.834500px;}
.y4a_c00229{bottom:182.310000px;}
.y4b_c00229{bottom:182.797500px;}
.y4c_c00229{bottom:183.049500px;}
.y4d_c00229{bottom:183.201000px;}
.y4e_c00229{bottom:183.396000px;}
.y4f_c00229{bottom:183.817500px;}
.y46_c00229{bottom:199.108500px;}
.y45_c00229{bottom:216.456000px;}
.y44_c00229{bottom:233.973000px;}
.y43_c00229{bottom:251.253000px;}
.y42_c00229{bottom:268.147500px;}
.y41_c00229{bottom:285.610500px;}
.y40_c00229{bottom:302.689500px;}
.y37_c00229{bottom:317.793000px;}
.y38_c00229{bottom:318.220500px;}
.y39_c00229{bottom:318.561000px;}
.y3a_c00229{bottom:319.206000px;}
.y3b_c00229{bottom:319.446000px;}
.y3c_c00229{bottom:320.007000px;}
.y3d_c00229{bottom:320.602500px;}
.y3e_c00229{bottom:320.794500px;}
.y3f_c00229{bottom:321.222000px;}
.y2f_c00229{bottom:335.071500px;}
.y30_c00229{bottom:335.467500px;}
.y31_c00229{bottom:335.713500px;}
.y32_c00229{bottom:336.760500px;}
.y33_c00229{bottom:337.020000px;}
.y34_c00229{bottom:337.558500px;}
.y35_c00229{bottom:337.801500px;}
.y36_c00229{bottom:338.514000px;}
.y29_c00229{bottom:352.623000px;}
.y2a_c00229{bottom:353.017500px;}
.y2b_c00229{bottom:353.572500px;}
.y2c_c00229{bottom:354.825000px;}
.y2d_c00229{bottom:355.072500px;}
.y2e_c00229{bottom:355.425000px;}
.y28_c00229{bottom:371.542500px;}
.y27_c00229{bottom:389.055000px;}
.y26_c00229{bottom:406.182000px;}
.y25_c00229{bottom:423.730500px;}
.y24_c00229{bottom:441.246000px;}
.y23_c00229{bottom:458.050500px;}
.y22_c00229{bottom:475.501500px;}
.y21_c00229{bottom:491.148000px;}
.y19_c00229{bottom:507.871500px;}
.y1a_c00229{bottom:508.366500px;}
.y1b_c00229{bottom:508.984500px;}
.y1c_c00229{bottom:509.151000px;}
.y1d_c00229{bottom:509.329500px;}
.y1e_c00229{bottom:510.052500px;}
.y1f_c00229{bottom:510.181500px;}
.y20_c00229{bottom:510.457500px;}
.y11_c00229{bottom:524.880000px;}
.y12_c00229{bottom:525.240000px;}
.y13_c00229{bottom:525.460500px;}
.y14_c00229{bottom:526.332000px;}
.y15_c00229{bottom:526.666500px;}
.y16_c00229{bottom:527.551500px;}
.y17_c00229{bottom:527.710500px;}
.y18_c00229{bottom:527.992500px;}
.ya_c00229{bottom:541.351500px;}
.yb_c00229{bottom:541.935000px;}
.yc_c00229{bottom:542.686500px;}
.yd_c00229{bottom:543.336000px;}
.ye_c00229{bottom:543.534000px;}
.yf_c00229{bottom:544.372500px;}
.y10_c00229{bottom:544.497000px;}
.y2_c00229{bottom:558.903000px;}
.y3_c00229{bottom:560.050500px;}
.y4_c00229{bottom:560.317500px;}
.y5_c00229{bottom:560.535000px;}
.y6_c00229{bottom:561.321000px;}
.y7_c00229{bottom:561.808500px;}
.y8_c00229{bottom:561.976500px;}
.y9_c00229{bottom:562.726500px;}
.y1_c00229{bottom:578.751000px;}
.hc_c00229{height:58.800000px;}
.h6_c00229{height:59.850000px;}
.h9_c00229{height:60.900000px;}
.h4_c00229{height:61.950000px;}
.h7_c00229{height:63.000000px;}
.hb_c00229{height:64.050000px;}
.ha_c00229{height:66.150000px;}
.h2_c00229{height:69.300000px;}
.h8_c00229{height:70.350000px;}
.h3_c00229{height:71.400000px;}
.h5_c00229{height:72.450000px;}
.h0_c00229{height:616.140000px;}
.h1_c00229{height:616.500000px;}
.w0_c00229{width:378.540000px;}
.w1_c00229{width:378.750000px;}
.x0_c00229{left:0.000000px;}
.x73_c00229{left:50.134500px;}
.x3e_c00229{left:52.110000px;}
.x2_c00229{left:54.157500px;}
.x1d_c00229{left:68.310000px;}
.x28_c00229{left:69.390000px;}
.x3f_c00229{left:71.010000px;}
.x4d_c00229{left:73.710000px;}
.x7a_c00229{left:76.566000px;}
.x1f_c00229{left:78.570000px;}
.x10_c00229{left:83.802000px;}
.x45_c00229{left:85.204500px;}
.x61_c00229{left:86.400000px;}
.x41_c00229{left:88.161000px;}
.x1e_c00229{left:91.260000px;}
.x4e_c00229{left:92.610000px;}
.x6d_c00229{left:93.829500px;}
.xa_c00229{left:95.782500px;}
.x5d_c00229{left:98.010000px;}
.x39_c00229{left:99.630000px;}
.x11_c00229{left:102.186000px;}
.x50_c00229{left:103.410000px;}
.x46_c00229{left:105.744000px;}
.x58_c00229{left:108.000000px;}
.x24_c00229{left:109.620000px;}
.x2e_c00229{left:110.970000px;}
.x49_c00229{left:115.717500px;}
.x5e_c00229{left:117.450000px;}
.x36_c00229{left:122.310000px;}
.x2f_c00229{left:125.010000px;}
.x51_c00229{left:126.090000px;}
.x20_c00229{left:128.520000px;}
.x29_c00229{left:131.760000px;}
.x6e_c00229{left:135.988500px;}
.x74_c00229{left:137.049000px;}
.x42_c00229{left:138.681000px;}
.x3_c00229{left:142.404000px;}
.x52_c00229{left:144.180000px;}
.x30_c00229{left:145.530000px;}
.x37_c00229{left:148.230000px;}
.xb_c00229{left:149.506500px;}
.x77_c00229{left:151.069500px;}
.x6f_c00229{left:152.931000px;}
.x59_c00229{left:154.980000px;}
.x25_c00229{left:157.410000px;}
.x68_c00229{left:160.806000px;}
.x4_c00229{left:162.987000px;}
.x17_c00229{left:164.559000px;}
.x7b_c00229{left:165.664500px;}
.x6b_c00229{left:168.105000px;}
.x4a_c00229{left:169.446000px;}
.x12_c00229{left:174.792000px;}
.x78_c00229{left:175.905000px;}
.x5f_c00229{left:177.390000px;}
.x5_c00229{left:179.734500px;}
.x18_c00229{left:181.254000px;}
.x62_c00229{left:184.410000px;}
.x1_c00229{left:187.110000px;}
.x2a_c00229{left:188.460000px;}
.x3a_c00229{left:189.810000px;}
.x60_c00229{left:190.890000px;}
.x70_c00229{left:192.409500px;}
.x21_c00229{left:193.860000px;}
.xc_c00229{left:195.865500px;}
.x31_c00229{left:197.100000px;}
.x19_c00229{left:199.126500px;}
.x13_c00229{left:202.669500px;}
.x69_c00229{left:204.003000px;}
.x63_c00229{left:206.280000px;}
.xd_c00229{left:209.989500px;}
.x22_c00229{left:214.110000px;}
.x7c_c00229{left:216.133500px;}
.x32_c00229{left:217.350000px;}
.x53_c00229{left:218.700000px;}
.x38_c00229{left:219.780000px;}
.x55_c00229{left:221.130000px;}
.x81_c00229{left:222.742500px;}
.x65_c00229{left:227.880000px;}
.x40_c00229{left:230.850000px;}
.x75_c00229{left:234.267000px;}
.x4b_c00229{left:236.143500px;}
.x79_c00229{left:237.720000px;}
.x6_c00229{left:240.198000px;}
.x56_c00229{left:241.380000px;}
.x33_c00229{left:242.730000px;}
.x5a_c00229{left:244.890000px;}
.x71_c00229{left:246.057000px;}
.x6a_c00229{left:248.274000px;}
.x43_c00229{left:252.559500px;}
.x76_c00229{left:255.810000px;}
.x26_c00229{left:257.040000px;}
.x47_c00229{left:259.374000px;}
.x3b_c00229{left:264.330000px;}
.x7f_c00229{left:265.672500px;}
.x5b_c00229{left:267.840000px;}
.xe_c00229{left:269.910000px;}
.x1a_c00229{left:271.474500px;}
.x27_c00229{left:275.130000px;}
.x14_c00229{left:276.358500px;}
.x7_c00229{left:277.728000px;}
.xf_c00229{left:278.833500px;}
.x72_c00229{left:280.666500px;}
.x7d_c00229{left:282.529500px;}
.x1b_c00229{left:284.443500px;}
.x2b_c00229{left:285.660000px;}
.x3c_c00229{left:287.280000px;}
.x15_c00229{left:289.596000px;}
.x8_c00229{left:290.697000px;}
.x66_c00229{left:292.140000px;}
.x5c_c00229{left:295.650000px;}
.x2c_c00229{left:298.620000px;}
.x6c_c00229{left:300.094500px;}
.x4c_c00229{left:301.725000px;}
.x34_c00229{left:302.940000px;}
.x80_c00229{left:305.902500px;}
.x44_c00229{left:307.084500px;}
.x1c_c00229{left:311.983500px;}
.x16_c00229{left:313.083000px;}
.x2d_c00229{left:315.900000px;}
.x7e_c00229{left:317.607000px;}
.x23_c00229{left:319.410000px;}
.x67_c00229{left:320.490000px;}
.x57_c00229{left:324.270000px;}
.x82_c00229{left:325.342500px;}
.x83_c00229{left:326.776500px;}
.x54_c00229{left:331.560000px;}
.x35_c00229{left:336.420000px;}
.x48_c00229{left:339.006000px;}
.x3d_c00229{left:341.820000px;}
.x4f_c00229{left:345.060000px;}
.x64_c00229{left:346.680000px;}
.x9_c00229{left:348.408000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fsa_c00229{font-size:52.266667pt;}
.fs4_c00229{font-size:53.200000pt;}
.fs7_c00229{font-size:54.133333pt;}
.fs2_c00229{font-size:55.066667pt;}
.fs5_c00229{font-size:56.000000pt;}
.fs9_c00229{font-size:56.933333pt;}
.fs8_c00229{font-size:58.800000pt;}
.fs0_c00229{font-size:61.600000pt;}
.fs6_c00229{font-size:62.533333pt;}
.fs1_c00229{font-size:63.466667pt;}
.fs3_c00229{font-size:64.400000pt;}
.y0_c00229{bottom:0.000000pt;}
.y84_c00229{bottom:22.318667pt;}
.y85_c00229{bottom:22.844000pt;}
.y86_c00229{bottom:23.056000pt;}
.y87_c00229{bottom:23.276000pt;}
.y88_c00229{bottom:23.890667pt;}
.y89_c00229{bottom:24.516000pt;}
.y8a_c00229{bottom:24.900000pt;}
.y8b_c00229{bottom:25.026667pt;}
.y83_c00229{bottom:38.033333pt;}
.y82_c00229{bottom:53.529333pt;}
.y7b_c00229{bottom:67.198667pt;}
.y7c_c00229{bottom:67.814667pt;}
.y7d_c00229{bottom:67.973333pt;}
.y7e_c00229{bottom:68.702667pt;}
.y7f_c00229{bottom:69.405333pt;}
.y80_c00229{bottom:69.765333pt;}
.y81_c00229{bottom:70.058667pt;}
.y74_c00229{bottom:82.796000pt;}
.y75_c00229{bottom:83.050667pt;}
.y76_c00229{bottom:83.750667pt;}
.y77_c00229{bottom:83.922667pt;}
.y78_c00229{bottom:84.416000pt;}
.y79_c00229{bottom:84.766667pt;}
.y7a_c00229{bottom:85.065333pt;}
.y6a_c00229{bottom:98.398667pt;}
.y6b_c00229{bottom:98.770667pt;}
.y6c_c00229{bottom:98.921333pt;}
.y6d_c00229{bottom:99.290667pt;}
.y6e_c00229{bottom:99.512000pt;}
.y6f_c00229{bottom:100.061333pt;}
.y70_c00229{bottom:100.248000pt;}
.y71_c00229{bottom:100.389333pt;}
.y72_c00229{bottom:100.822667pt;}
.y73_c00229{bottom:100.942667pt;}
.y62_c00229{bottom:113.038667pt;}
.y63_c00229{bottom:113.689333pt;}
.y64_c00229{bottom:114.120000pt;}
.y65_c00229{bottom:114.980000pt;}
.y66_c00229{bottom:115.330667pt;}
.y67_c00229{bottom:115.598667pt;}
.y68_c00229{bottom:116.086667pt;}
.y69_c00229{bottom:116.345333pt;}
.y58_c00229{bottom:128.880000pt;}
.y59_c00229{bottom:129.332000pt;}
.y5a_c00229{bottom:129.781333pt;}
.y5b_c00229{bottom:129.962667pt;}
.y5c_c00229{bottom:130.241333pt;}
.y5d_c00229{bottom:130.382667pt;}
.y5e_c00229{bottom:130.954667pt;}
.y5f_c00229{bottom:131.324000pt;}
.y60_c00229{bottom:131.704000pt;}
.y61_c00229{bottom:131.965333pt;}
.y50_c00229{bottom:144.481333pt;}
.y51_c00229{bottom:144.837333pt;}
.y52_c00229{bottom:145.028000pt;}
.y53_c00229{bottom:145.624000pt;}
.y54_c00229{bottom:146.241333pt;}
.y55_c00229{bottom:146.510667pt;}
.y56_c00229{bottom:146.914667pt;}
.y57_c00229{bottom:147.120000pt;}
.y47_c00229{bottom:160.561333pt;}
.y48_c00229{bottom:161.092000pt;}
.y49_c00229{bottom:161.630667pt;}
.y4a_c00229{bottom:162.053333pt;}
.y4b_c00229{bottom:162.486667pt;}
.y4c_c00229{bottom:162.710667pt;}
.y4d_c00229{bottom:162.845333pt;}
.y4e_c00229{bottom:163.018667pt;}
.y4f_c00229{bottom:163.393333pt;}
.y46_c00229{bottom:176.985333pt;}
.y45_c00229{bottom:192.405333pt;}
.y44_c00229{bottom:207.976000pt;}
.y43_c00229{bottom:223.336000pt;}
.y42_c00229{bottom:238.353333pt;}
.y41_c00229{bottom:253.876000pt;}
.y40_c00229{bottom:269.057333pt;}
.y37_c00229{bottom:282.482667pt;}
.y38_c00229{bottom:282.862667pt;}
.y39_c00229{bottom:283.165333pt;}
.y3a_c00229{bottom:283.738667pt;}
.y3b_c00229{bottom:283.952000pt;}
.y3c_c00229{bottom:284.450667pt;}
.y3d_c00229{bottom:284.980000pt;}
.y3e_c00229{bottom:285.150667pt;}
.y3f_c00229{bottom:285.530667pt;}
.y2f_c00229{bottom:297.841333pt;}
.y30_c00229{bottom:298.193333pt;}
.y31_c00229{bottom:298.412000pt;}
.y32_c00229{bottom:299.342667pt;}
.y33_c00229{bottom:299.573333pt;}
.y34_c00229{bottom:300.052000pt;}
.y35_c00229{bottom:300.268000pt;}
.y36_c00229{bottom:300.901333pt;}
.y29_c00229{bottom:313.442667pt;}
.y2a_c00229{bottom:313.793333pt;}
.y2b_c00229{bottom:314.286667pt;}
.y2c_c00229{bottom:315.400000pt;}
.y2d_c00229{bottom:315.620000pt;}
.y2e_c00229{bottom:315.933333pt;}
.y28_c00229{bottom:330.260000pt;}
.y27_c00229{bottom:345.826667pt;}
.y26_c00229{bottom:361.050667pt;}
.y25_c00229{bottom:376.649333pt;}
.y24_c00229{bottom:392.218667pt;}
.y23_c00229{bottom:407.156000pt;}
.y22_c00229{bottom:422.668000pt;}
.y21_c00229{bottom:436.576000pt;}
.y19_c00229{bottom:451.441333pt;}
.y1a_c00229{bottom:451.881333pt;}
.y1b_c00229{bottom:452.430667pt;}
.y1c_c00229{bottom:452.578667pt;}
.y1d_c00229{bottom:452.737333pt;}
.y1e_c00229{bottom:453.380000pt;}
.y1f_c00229{bottom:453.494667pt;}
.y20_c00229{bottom:453.740000pt;}
.y11_c00229{bottom:466.560000pt;}
.y12_c00229{bottom:466.880000pt;}
.y13_c00229{bottom:467.076000pt;}
.y14_c00229{bottom:467.850667pt;}
.y15_c00229{bottom:468.148000pt;}
.y16_c00229{bottom:468.934667pt;}
.y17_c00229{bottom:469.076000pt;}
.y18_c00229{bottom:469.326667pt;}
.ya_c00229{bottom:481.201333pt;}
.yb_c00229{bottom:481.720000pt;}
.yc_c00229{bottom:482.388000pt;}
.yd_c00229{bottom:482.965333pt;}
.ye_c00229{bottom:483.141333pt;}
.yf_c00229{bottom:483.886667pt;}
.y10_c00229{bottom:483.997333pt;}
.y2_c00229{bottom:496.802667pt;}
.y3_c00229{bottom:497.822667pt;}
.y4_c00229{bottom:498.060000pt;}
.y5_c00229{bottom:498.253333pt;}
.y6_c00229{bottom:498.952000pt;}
.y7_c00229{bottom:499.385333pt;}
.y8_c00229{bottom:499.534667pt;}
.y9_c00229{bottom:500.201333pt;}
.y1_c00229{bottom:514.445333pt;}
.hc_c00229{height:52.266667pt;}
.h6_c00229{height:53.200000pt;}
.h9_c00229{height:54.133333pt;}
.h4_c00229{height:55.066667pt;}
.h7_c00229{height:56.000000pt;}
.hb_c00229{height:56.933333pt;}
.ha_c00229{height:58.800000pt;}
.h2_c00229{height:61.600000pt;}
.h8_c00229{height:62.533333pt;}
.h3_c00229{height:63.466667pt;}
.h5_c00229{height:64.400000pt;}
.h0_c00229{height:547.680000pt;}
.h1_c00229{height:548.000000pt;}
.w0_c00229{width:336.480000pt;}
.w1_c00229{width:336.666667pt;}
.x0_c00229{left:0.000000pt;}
.x73_c00229{left:44.564000pt;}
.x3e_c00229{left:46.320000pt;}
.x2_c00229{left:48.140000pt;}
.x1d_c00229{left:60.720000pt;}
.x28_c00229{left:61.680000pt;}
.x3f_c00229{left:63.120000pt;}
.x4d_c00229{left:65.520000pt;}
.x7a_c00229{left:68.058667pt;}
.x1f_c00229{left:69.840000pt;}
.x10_c00229{left:74.490667pt;}
.x45_c00229{left:75.737333pt;}
.x61_c00229{left:76.800000pt;}
.x41_c00229{left:78.365333pt;}
.x1e_c00229{left:81.120000pt;}
.x4e_c00229{left:82.320000pt;}
.x6d_c00229{left:83.404000pt;}
.xa_c00229{left:85.140000pt;}
.x5d_c00229{left:87.120000pt;}
.x39_c00229{left:88.560000pt;}
.x11_c00229{left:90.832000pt;}
.x50_c00229{left:91.920000pt;}
.x46_c00229{left:93.994667pt;}
.x58_c00229{left:96.000000pt;}
.x24_c00229{left:97.440000pt;}
.x2e_c00229{left:98.640000pt;}
.x49_c00229{left:102.860000pt;}
.x5e_c00229{left:104.400000pt;}
.x36_c00229{left:108.720000pt;}
.x2f_c00229{left:111.120000pt;}
.x51_c00229{left:112.080000pt;}
.x20_c00229{left:114.240000pt;}
.x29_c00229{left:117.120000pt;}
.x6e_c00229{left:120.878667pt;}
.x74_c00229{left:121.821333pt;}
.x42_c00229{left:123.272000pt;}
.x3_c00229{left:126.581333pt;}
.x52_c00229{left:128.160000pt;}
.x30_c00229{left:129.360000pt;}
.x37_c00229{left:131.760000pt;}
.xb_c00229{left:132.894667pt;}
.x77_c00229{left:134.284000pt;}
.x6f_c00229{left:135.938667pt;}
.x59_c00229{left:137.760000pt;}
.x25_c00229{left:139.920000pt;}
.x68_c00229{left:142.938667pt;}
.x4_c00229{left:144.877333pt;}
.x17_c00229{left:146.274667pt;}
.x7b_c00229{left:147.257333pt;}
.x6b_c00229{left:149.426667pt;}
.x4a_c00229{left:150.618667pt;}
.x12_c00229{left:155.370667pt;}
.x78_c00229{left:156.360000pt;}
.x5f_c00229{left:157.680000pt;}
.x5_c00229{left:159.764000pt;}
.x18_c00229{left:161.114667pt;}
.x62_c00229{left:163.920000pt;}
.x1_c00229{left:166.320000pt;}
.x2a_c00229{left:167.520000pt;}
.x3a_c00229{left:168.720000pt;}
.x60_c00229{left:169.680000pt;}
.x70_c00229{left:171.030667pt;}
.x21_c00229{left:172.320000pt;}
.xc_c00229{left:174.102667pt;}
.x31_c00229{left:175.200000pt;}
.x19_c00229{left:177.001333pt;}
.x13_c00229{left:180.150667pt;}
.x69_c00229{left:181.336000pt;}
.x63_c00229{left:183.360000pt;}
.xd_c00229{left:186.657333pt;}
.x22_c00229{left:190.320000pt;}
.x7c_c00229{left:192.118667pt;}
.x32_c00229{left:193.200000pt;}
.x53_c00229{left:194.400000pt;}
.x38_c00229{left:195.360000pt;}
.x55_c00229{left:196.560000pt;}
.x81_c00229{left:197.993333pt;}
.x65_c00229{left:202.560000pt;}
.x40_c00229{left:205.200000pt;}
.x75_c00229{left:208.237333pt;}
.x4b_c00229{left:209.905333pt;}
.x79_c00229{left:211.306667pt;}
.x6_c00229{left:213.509333pt;}
.x56_c00229{left:214.560000pt;}
.x33_c00229{left:215.760000pt;}
.x5a_c00229{left:217.680000pt;}
.x71_c00229{left:218.717333pt;}
.x6a_c00229{left:220.688000pt;}
.x43_c00229{left:224.497333pt;}
.x76_c00229{left:227.386667pt;}
.x26_c00229{left:228.480000pt;}
.x47_c00229{left:230.554667pt;}
.x3b_c00229{left:234.960000pt;}
.x7f_c00229{left:236.153333pt;}
.x5b_c00229{left:238.080000pt;}
.xe_c00229{left:239.920000pt;}
.x1a_c00229{left:241.310667pt;}
.x27_c00229{left:244.560000pt;}
.x14_c00229{left:245.652000pt;}
.x7_c00229{left:246.869333pt;}
.xf_c00229{left:247.852000pt;}
.x72_c00229{left:249.481333pt;}
.x7d_c00229{left:251.137333pt;}
.x1b_c00229{left:252.838667pt;}
.x2b_c00229{left:253.920000pt;}
.x3c_c00229{left:255.360000pt;}
.x15_c00229{left:257.418667pt;}
.x8_c00229{left:258.397333pt;}
.x66_c00229{left:259.680000pt;}
.x5c_c00229{left:262.800000pt;}
.x2c_c00229{left:265.440000pt;}
.x6c_c00229{left:266.750667pt;}
.x4c_c00229{left:268.200000pt;}
.x34_c00229{left:269.280000pt;}
.x80_c00229{left:271.913333pt;}
.x44_c00229{left:272.964000pt;}
.x1c_c00229{left:277.318667pt;}
.x16_c00229{left:278.296000pt;}
.x2d_c00229{left:280.800000pt;}
.x7e_c00229{left:282.317333pt;}
.x23_c00229{left:283.920000pt;}
.x67_c00229{left:284.880000pt;}
.x57_c00229{left:288.240000pt;}
.x82_c00229{left:289.193333pt;}
.x83_c00229{left:290.468000pt;}
.x54_c00229{left:294.720000pt;}
.x35_c00229{left:299.040000pt;}
.x48_c00229{left:301.338667pt;}
.x3d_c00229{left:303.840000pt;}
.x4f_c00229{left:306.720000pt;}
.x64_c00229{left:308.160000pt;}
.x9_c00229{left:309.696000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00230 {
    display:none;
  }
  .loading-indicator_c00230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00230 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00230 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00230" -> "#page-container .classname_c00230")
 */
.pf_c00230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00230 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00230 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00230 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00230 {overflow:visible;}
  }
}
.c_c00230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00230 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00230:after { /* webkit #35443 */
  content: '';
}
.t_c00230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00230 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00230 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00230 { /* info for Javascript */
  display:none;
}
.l_c00230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00230:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00230 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00230.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mef_c00230{transform:matrix(0.077234,0.002008,-0.006498,0.249916,0,0);-ms-transform:matrix(0.077234,0.002008,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.077234,0.002008,-0.006498,0.249916,0,0);}
.m94_c00230{transform:matrix(0.082450,0.001814,-0.005499,0.249940,0,0);-ms-transform:matrix(0.082450,0.001814,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.082450,0.001814,-0.005499,0.249940,0,0);}
.m65_c00230{transform:matrix(0.125975,0.002771,-0.005499,0.249940,0,0);-ms-transform:matrix(0.125975,0.002771,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.125975,0.002771,-0.005499,0.249940,0,0);}
.m1_c00230{transform:matrix(0.143791,0.003739,-0.006498,0.249916,0,0);-ms-transform:matrix(0.143791,0.003739,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.143791,0.003739,-0.006498,0.249916,0,0);}
.m5_c00230{transform:matrix(0.145576,0.003785,-0.006498,0.249916,0,0);-ms-transform:matrix(0.145576,0.003785,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.145576,0.003785,-0.006498,0.249916,0,0);}
.m9c_c00230{transform:matrix(0.147869,0.003253,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147869,0.003253,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147869,0.003253,-0.005499,0.249940,0,0);}
.m28_c00230{transform:matrix(0.148209,0.003261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.148209,0.003261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.148209,0.003261,-0.005499,0.249940,0,0);}
.m0_c00230{transform:matrix(0.149150,0.003878,-0.006498,0.249916,0,0);-ms-transform:matrix(0.149150,0.003878,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.149150,0.003878,-0.006498,0.249916,0,0);}
.m13_c00230{transform:matrix(0.151609,0.003942,-0.006498,0.249916,0,0);-ms-transform:matrix(0.151609,0.003942,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.151609,0.003942,-0.006498,0.249916,0,0);}
.m3_c00230{transform:matrix(0.152448,0.003964,-0.006498,0.249916,0,0);-ms-transform:matrix(0.152448,0.003964,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.152448,0.003964,-0.006498,0.249916,0,0);}
.m6_c00230{transform:matrix(0.153438,0.003989,-0.006498,0.249916,0,0);-ms-transform:matrix(0.153438,0.003989,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.153438,0.003989,-0.006498,0.249916,0,0);}
.m14_c00230{transform:matrix(0.154103,0.004007,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154103,0.004007,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154103,0.004007,-0.006498,0.249916,0,0);}
.m67_c00230{transform:matrix(0.155257,0.003416,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155257,0.003416,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155257,0.003416,-0.005499,0.249940,0,0);}
.ma0_c00230{transform:matrix(0.155332,0.003417,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155332,0.003417,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155332,0.003417,-0.005499,0.249940,0,0);}
.me3_c00230{transform:matrix(0.155497,0.004043,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155497,0.004043,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155497,0.004043,-0.006498,0.249916,0,0);}
.m2e_c00230{transform:matrix(0.156227,0.003437,-0.005499,0.249940,0,0);-ms-transform:matrix(0.156227,0.003437,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.156227,0.003437,-0.005499,0.249940,0,0);}
.m32_c00230{transform:matrix(0.158297,0.003483,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158297,0.003483,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158297,0.003483,-0.005499,0.249940,0,0);}
.m4a_c00230{transform:matrix(0.160466,0.003530,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160466,0.003530,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160466,0.003530,-0.005499,0.249940,0,0);}
.m5d_c00230{transform:matrix(0.160901,0.003540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160901,0.003540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160901,0.003540,-0.005499,0.249940,0,0);}
.m2f_c00230{transform:matrix(0.161031,0.003543,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161031,0.003543,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161031,0.003543,-0.005499,0.249940,0,0);}
.m36_c00230{transform:matrix(0.161751,0.003559,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161751,0.003559,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161751,0.003559,-0.005499,0.249940,0,0);}
.me_c00230{transform:matrix(0.163170,0.004242,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163170,0.004242,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163170,0.004242,-0.006498,0.249916,0,0);}
.m21_c00230{transform:matrix(0.163685,0.004256,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163685,0.004256,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163685,0.004256,-0.006498,0.249916,0,0);}
.m45_c00230{transform:matrix(0.164935,0.003629,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164935,0.003629,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164935,0.003629,-0.005499,0.249940,0,0);}
.m19_c00230{transform:matrix(0.165449,0.004302,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165449,0.004302,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165449,0.004302,-0.006498,0.249916,0,0);}
.m2_c00230{transform:matrix(0.167608,0.004358,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167608,0.004358,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167608,0.004358,-0.006498,0.249916,0,0);}
.m77_c00230{transform:matrix(0.167639,0.003688,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167639,0.003688,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167639,0.003688,-0.005499,0.249940,0,0);}
.me6_c00230{transform:matrix(0.167668,0.004359,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167668,0.004359,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167668,0.004359,-0.006498,0.249916,0,0);}
.m3d_c00230{transform:matrix(0.167724,0.003690,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167724,0.003690,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167724,0.003690,-0.005499,0.249940,0,0);}
.m49_c00230{transform:matrix(0.167839,0.003692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167839,0.003692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167839,0.003692,-0.005499,0.249940,0,0);}
.m5f_c00230{transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167899,0.003694,-0.005499,0.249940,0,0);}
.mf7_c00230{transform:matrix(0.168068,0.004370,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168068,0.004370,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168068,0.004370,-0.006498,0.249916,0,0);}
.m75_c00230{transform:matrix(0.168144,0.003699,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168144,0.003699,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168144,0.003699,-0.005499,0.249940,0,0);}
.mb6_c00230{transform:matrix(0.169123,0.004397,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169123,0.004397,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169123,0.004397,-0.006498,0.249916,0,0);}
.m1f_c00230{transform:matrix(0.169273,0.004401,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169273,0.004401,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169273,0.004401,-0.006498,0.249916,0,0);}
.m7f_c00230{transform:matrix(0.169454,0.003728,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169454,0.003728,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169454,0.003728,-0.005499,0.249940,0,0);}
.m4_c00230{transform:matrix(0.169683,0.004412,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169683,0.004412,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169683,0.004412,-0.006498,0.249916,0,0);}
.m72_c00230{transform:matrix(0.170764,0.003757,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170764,0.003757,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170764,0.003757,-0.005499,0.249940,0,0);}
.m59_c00230{transform:matrix(0.172148,0.003787,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172148,0.003787,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172148,0.003787,-0.005499,0.249940,0,0);}
.m43_c00230{transform:matrix(0.172373,0.003792,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172373,0.003792,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172373,0.003792,-0.005499,0.249940,0,0);}
.m7c_c00230{transform:matrix(0.172503,0.003795,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172503,0.003795,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172503,0.003795,-0.005499,0.249940,0,0);}
.mf0_c00230{transform:matrix(0.173102,0.004501,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173102,0.004501,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173102,0.004501,-0.006498,0.249916,0,0);}
.md1_c00230{transform:matrix(0.173111,0.004501,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173111,0.004501,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173111,0.004501,-0.006498,0.249916,0,0);}
.mb0_c00230{transform:matrix(0.173756,0.004518,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173756,0.004518,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173756,0.004518,-0.006498,0.249916,0,0);}
.me9_c00230{transform:matrix(0.174371,0.004534,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174371,0.004534,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174371,0.004534,-0.006498,0.249916,0,0);}
.m46_c00230{transform:matrix(0.174803,0.003846,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174803,0.003846,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174803,0.003846,-0.005499,0.249940,0,0);}
.m15_c00230{transform:matrix(0.174806,0.004545,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174806,0.004545,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174806,0.004545,-0.006498,0.249916,0,0);}
.mae_c00230{transform:matrix(0.175703,0.005980,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175703,0.005980,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175703,0.005980,-0.008504,0.249855,0,0);}
.m23_c00230{transform:matrix(0.176630,0.004592,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176630,0.004592,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176630,0.004592,-0.006498,0.249916,0,0);}
.ma_c00230{transform:matrix(0.176705,0.004594,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176705,0.004594,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176705,0.004594,-0.006498,0.249916,0,0);}
.m6e_c00230{transform:matrix(0.177037,0.003895,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177037,0.003895,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177037,0.003895,-0.005499,0.249940,0,0);}
.m40_c00230{transform:matrix(0.177072,0.003896,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177072,0.003896,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177072,0.003896,-0.005499,0.249940,0,0);}
.mde_c00230{transform:matrix(0.177075,0.004604,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177075,0.004604,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177075,0.004604,-0.006498,0.249916,0,0);}
.m12_c00230{transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178345,0.004637,-0.006498,0.249916,0,0);}
.m8c_c00230{transform:matrix(0.178477,0.003926,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178477,0.003926,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178477,0.003926,-0.005499,0.249940,0,0);}
.mc2_c00230{transform:matrix(0.178680,0.004646,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178680,0.004646,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178680,0.004646,-0.006498,0.249916,0,0);}
.m2a_c00230{transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178812,0.003934,-0.005499,0.249940,0,0);}
.mf2_c00230{transform:matrix(0.178825,0.004649,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178825,0.004649,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178825,0.004649,-0.006498,0.249916,0,0);}
.m71_c00230{transform:matrix(0.179022,0.003938,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179022,0.003938,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179022,0.003938,-0.005499,0.249940,0,0);}
.m66_c00230{transform:matrix(0.179067,0.003939,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179067,0.003939,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179067,0.003939,-0.005499,0.249940,0,0);}
.m25_c00230{transform:matrix(0.179679,0.004672,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179679,0.004672,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179679,0.004672,-0.006498,0.249916,0,0);}
.mbc_c00230{transform:matrix(0.180029,0.004681,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180029,0.004681,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180029,0.004681,-0.006498,0.249916,0,0);}
.mb9_c00230{transform:matrix(0.180219,0.004686,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180219,0.004686,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180219,0.004686,-0.006498,0.249916,0,0);}
.m81_c00230{transform:matrix(0.180906,0.003980,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180906,0.003980,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180906,0.003980,-0.005499,0.249940,0,0);}
.m31_c00230{transform:matrix(0.180916,0.003980,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180916,0.003980,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180916,0.003980,-0.005499,0.249940,0,0);}
.md9_c00230{transform:matrix(0.181714,0.004725,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181714,0.004725,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181714,0.004725,-0.006498,0.249916,0,0);}
.m69_c00230{transform:matrix(0.181781,0.003999,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181781,0.003999,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181781,0.003999,-0.005499,0.249940,0,0);}
.m16_c00230{transform:matrix(0.181934,0.004730,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181934,0.004730,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181934,0.004730,-0.006498,0.249916,0,0);}
.m87_c00230{transform:matrix(0.181971,0.004003,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181971,0.004003,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181971,0.004003,-0.005499,0.249940,0,0);}
.m35_c00230{transform:matrix(0.182056,0.004005,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182056,0.004005,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182056,0.004005,-0.005499,0.249940,0,0);}
.m30_c00230{transform:matrix(0.182236,0.004009,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182236,0.004009,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182236,0.004009,-0.005499,0.249940,0,0);}
.m20_c00230{transform:matrix(0.182348,0.004741,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182348,0.004741,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182348,0.004741,-0.006498,0.249916,0,0);}
.m88_c00230{transform:matrix(0.183041,0.004027,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183041,0.004027,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183041,0.004027,-0.005499,0.249940,0,0);}
.m3f_c00230{transform:matrix(0.183286,0.004032,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183286,0.004032,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183286,0.004032,-0.005499,0.249940,0,0);}
.maa_c00230{transform:matrix(0.183339,0.006240,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183339,0.006240,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183339,0.006240,-0.008504,0.249855,0,0);}
.m41_c00230{transform:matrix(0.183621,0.004040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183621,0.004040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183621,0.004040,-0.005499,0.249940,0,0);}
.m50_c00230{transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183636,0.004040,-0.005499,0.249940,0,0);}
.m1e_c00230{transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183933,0.004782,-0.006498,0.249916,0,0);}
.mcd_c00230{transform:matrix(0.183938,0.004782,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183938,0.004782,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183938,0.004782,-0.006498,0.249916,0,0);}
.m2b_c00230{transform:matrix(0.184000,0.004048,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184000,0.004048,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184000,0.004048,-0.005499,0.249940,0,0);}
.me0_c00230{transform:matrix(0.184178,0.004789,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184178,0.004789,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184178,0.004789,-0.006498,0.249916,0,0);}
.m17_c00230{transform:matrix(0.184213,0.004790,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184213,0.004790,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184213,0.004790,-0.006498,0.249916,0,0);}
.m97_c00230{transform:matrix(0.184300,0.004055,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184300,0.004055,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184300,0.004055,-0.005499,0.249940,0,0);}
.m2c_c00230{transform:matrix(0.184815,0.004066,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184815,0.004066,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184815,0.004066,-0.005499,0.249940,0,0);}
.mf1_c00230{transform:matrix(0.184833,0.004806,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184833,0.004806,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184833,0.004806,-0.006498,0.249916,0,0);}
.m9a_c00230{transform:matrix(0.184835,0.004066,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184835,0.004066,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184835,0.004066,-0.005499,0.249940,0,0);}
.m64_c00230{transform:matrix(0.185310,0.004077,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185310,0.004077,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185310,0.004077,-0.005499,0.249940,0,0);}
.m22_c00230{transform:matrix(0.185412,0.004821,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185412,0.004821,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185412,0.004821,-0.006498,0.249916,0,0);}
.mf4_c00230{transform:matrix(0.186647,0.004853,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186647,0.004853,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186647,0.004853,-0.006498,0.249916,0,0);}
.m4b_c00230{transform:matrix(0.186780,0.004109,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186780,0.004109,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186780,0.004109,-0.005499,0.249940,0,0);}
.m29_c00230{transform:matrix(0.187145,0.004117,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187145,0.004117,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187145,0.004117,-0.005499,0.249940,0,0);}
.m7e_c00230{transform:matrix(0.187855,0.004133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187855,0.004133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187855,0.004133,-0.005499,0.249940,0,0);}
.m61_c00230{transform:matrix(0.187865,0.004133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187865,0.004133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187865,0.004133,-0.005499,0.249940,0,0);}
.m47_c00230{transform:matrix(0.187875,0.004133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187875,0.004133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187875,0.004133,-0.005499,0.249940,0,0);}
.m18_c00230{transform:matrix(0.188026,0.004889,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188026,0.004889,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188026,0.004889,-0.006498,0.249916,0,0);}
.med_c00230{transform:matrix(0.188701,0.004906,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188701,0.004906,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188701,0.004906,-0.006498,0.249916,0,0);}
.ma2_c00230{transform:matrix(0.188749,0.004152,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188749,0.004152,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188749,0.004152,-0.005499,0.249940,0,0);}
.ma7_c00230{transform:matrix(0.188769,0.004153,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188769,0.004153,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188769,0.004153,-0.005499,0.249940,0,0);}
.m1c_c00230{transform:matrix(0.188821,0.004909,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188821,0.004909,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188821,0.004909,-0.006498,0.249916,0,0);}
.m90_c00230{transform:matrix(0.189634,0.004172,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189634,0.004172,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189634,0.004172,-0.005499,0.249940,0,0);}
.m26_c00230{transform:matrix(0.189661,0.004931,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189661,0.004931,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189661,0.004931,-0.006498,0.249916,0,0);}
.mb8_c00230{transform:matrix(0.189731,0.004933,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189731,0.004933,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189731,0.004933,-0.006498,0.249916,0,0);}
.m1d_c00230{transform:matrix(0.189756,0.004934,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189756,0.004934,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189756,0.004934,-0.006498,0.249916,0,0);}
.m89_c00230{transform:matrix(0.189834,0.004176,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189834,0.004176,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189834,0.004176,-0.005499,0.249940,0,0);}
.mec_c00230{transform:matrix(0.189986,0.004940,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189986,0.004940,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189986,0.004940,-0.006498,0.249916,0,0);}
.m6c_c00230{transform:matrix(0.190154,0.004183,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190154,0.004183,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190154,0.004183,-0.005499,0.249940,0,0);}
.m5a_c00230{transform:matrix(0.190799,0.004198,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190799,0.004198,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190799,0.004198,-0.005499,0.249940,0,0);}
.ma6_c00230{transform:matrix(0.190834,0.004198,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190834,0.004198,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190834,0.004198,-0.005499,0.249940,0,0);}
.mee_c00230{transform:matrix(0.190846,0.004962,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190846,0.004962,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190846,0.004962,-0.006498,0.249916,0,0);}
.mbd_c00230{transform:matrix(0.191005,0.004966,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191005,0.004966,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191005,0.004966,-0.006498,0.249916,0,0);}
.m9_c00230{transform:matrix(0.191140,0.004970,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191140,0.004970,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191140,0.004970,-0.006498,0.249916,0,0);}
.m3e_c00230{transform:matrix(0.191324,0.004209,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191324,0.004209,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191324,0.004209,-0.005499,0.249940,0,0);}
.m24_c00230{transform:matrix(0.191690,0.004984,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191690,0.004984,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191690,0.004984,-0.006498,0.249916,0,0);}
.mb_c00230{transform:matrix(0.191835,0.004988,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191835,0.004988,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191835,0.004988,-0.006498,0.249916,0,0);}
.m7b_c00230{transform:matrix(0.192248,0.004229,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192248,0.004229,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192248,0.004229,-0.005499,0.249940,0,0);}
.m9b_c00230{transform:matrix(0.192308,0.004231,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192308,0.004231,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192308,0.004231,-0.005499,0.249940,0,0);}
.me4_c00230{transform:matrix(0.193350,0.005027,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193350,0.005027,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193350,0.005027,-0.006498,0.249916,0,0);}
.ma3_c00230{transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193703,0.004261,-0.005499,0.249940,0,0);}
.m8b_c00230{transform:matrix(0.193938,0.004267,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193938,0.004267,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193938,0.004267,-0.005499,0.249940,0,0);}
.mf8_c00230{transform:matrix(0.194579,0.005059,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194579,0.005059,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194579,0.005059,-0.006498,0.249916,0,0);}
.m6a_c00230{transform:matrix(0.195748,0.004306,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195748,0.004306,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195748,0.004306,-0.005499,0.249940,0,0);}
.m37_c00230{transform:matrix(0.195883,0.004309,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195883,0.004309,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195883,0.004309,-0.005499,0.249940,0,0);}
.mc_c00230{transform:matrix(0.196254,0.005103,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196254,0.005103,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196254,0.005103,-0.006498,0.249916,0,0);}
.md3_c00230{transform:matrix(0.196913,0.005120,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196913,0.005120,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196913,0.005120,-0.006498,0.249916,0,0);}
.m1b_c00230{transform:matrix(0.197063,0.005124,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197063,0.005124,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197063,0.005124,-0.006498,0.249916,0,0);}
.mb2_c00230{transform:matrix(0.197138,0.005126,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197138,0.005126,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197138,0.005126,-0.006498,0.249916,0,0);}
.maf_c00230{transform:matrix(0.197371,0.006717,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197371,0.006717,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197371,0.006717,-0.008504,0.249855,0,0);}
.m73_c00230{transform:matrix(0.197492,0.004345,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197492,0.004345,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197492,0.004345,-0.005499,0.249940,0,0);}
.mf5_c00230{transform:matrix(0.197733,0.005141,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197733,0.005141,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197733,0.005141,-0.006498,0.249916,0,0);}
.ma9_c00230{transform:matrix(0.198270,0.006748,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198270,0.006748,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198270,0.006748,-0.008504,0.249855,0,0);}
.m5e_c00230{transform:matrix(0.198347,0.004364,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198347,0.004364,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198347,0.004364,-0.005499,0.249940,0,0);}
.mbb_c00230{transform:matrix(0.198708,0.005166,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198708,0.005166,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198708,0.005166,-0.006498,0.249916,0,0);}
.m99_c00230{transform:matrix(0.198742,0.004372,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198742,0.004372,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198742,0.004372,-0.005499,0.249940,0,0);}
.mc1_c00230{transform:matrix(0.198748,0.005167,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198748,0.005167,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198748,0.005167,-0.006498,0.249916,0,0);}
.mf3_c00230{transform:matrix(0.198908,0.005172,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198908,0.005172,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198908,0.005172,-0.006498,0.249916,0,0);}
.m76_c00230{transform:matrix(0.198927,0.004376,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198927,0.004376,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198927,0.004376,-0.005499,0.249940,0,0);}
.ma5_c00230{transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);}
.m60_c00230{transform:matrix(0.199372,0.004386,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199372,0.004386,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199372,0.004386,-0.005499,0.249940,0,0);}
.m63_c00230{transform:matrix(0.199417,0.004387,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199417,0.004387,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199417,0.004387,-0.005499,0.249940,0,0);}
.md7_c00230{transform:matrix(0.199488,0.005187,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199488,0.005187,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199488,0.005187,-0.006498,0.249916,0,0);}
.mce_c00230{transform:matrix(0.199618,0.005190,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199618,0.005190,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199618,0.005190,-0.006498,0.249916,0,0);}
.m11_c00230{transform:matrix(0.199708,0.005192,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199708,0.005192,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199708,0.005192,-0.006498,0.249916,0,0);}
.mc6_c00230{transform:matrix(0.199807,0.005195,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199807,0.005195,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199807,0.005195,-0.006498,0.249916,0,0);}
.m86_c00230{transform:matrix(0.199992,0.004400,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199992,0.004400,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199992,0.004400,-0.005499,0.249940,0,0);}
.mbe_c00230{transform:matrix(0.200197,0.005205,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200197,0.005205,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200197,0.005205,-0.006498,0.249916,0,0);}
.mca_c00230{transform:matrix(0.200312,0.005208,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200312,0.005208,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200312,0.005208,-0.006498,0.249916,0,0);}
.m82_c00230{transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200641,0.004414,-0.005499,0.249940,0,0);}
.md2_c00230{transform:matrix(0.200797,0.005221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200797,0.005221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200797,0.005221,-0.006498,0.249916,0,0);}
.me8_c00230{transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);}
.m9d_c00230{transform:matrix(0.200961,0.004421,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200961,0.004421,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200961,0.004421,-0.005499,0.249940,0,0);}
.mdc_c00230{transform:matrix(0.200987,0.005226,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200987,0.005226,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200987,0.005226,-0.006498,0.249916,0,0);}
.m6b_c00230{transform:matrix(0.200996,0.004422,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200996,0.004422,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200996,0.004422,-0.005499,0.249940,0,0);}
.mdd_c00230{transform:matrix(0.201082,0.005228,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201082,0.005228,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201082,0.005228,-0.006498,0.249916,0,0);}
.m78_c00230{transform:matrix(0.201241,0.004427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201241,0.004427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201241,0.004427,-0.005499,0.249940,0,0);}
.me7_c00230{transform:matrix(0.201262,0.005233,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201262,0.005233,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201262,0.005233,-0.006498,0.249916,0,0);}
.m1a_c00230{transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201497,0.005239,-0.006498,0.249916,0,0);}
.m5c_c00230{transform:matrix(0.201621,0.004436,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201621,0.004436,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201621,0.004436,-0.005499,0.249940,0,0);}
.m92_c00230{transform:matrix(0.201686,0.004437,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201686,0.004437,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201686,0.004437,-0.005499,0.249940,0,0);}
.m9e_c00230{transform:matrix(0.202136,0.004447,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202136,0.004447,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202136,0.004447,-0.005499,0.249940,0,0);}
.m8a_c00230{transform:matrix(0.202141,0.004447,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202141,0.004447,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202141,0.004447,-0.005499,0.249940,0,0);}
.meb_c00230{transform:matrix(0.202327,0.005260,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202327,0.005260,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202327,0.005260,-0.006498,0.249916,0,0);}
.m8d_c00230{transform:matrix(0.202481,0.004455,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202481,0.004455,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202481,0.004455,-0.005499,0.249940,0,0);}
.mad_c00230{transform:matrix(0.202573,0.006894,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202573,0.006894,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202573,0.006894,-0.008504,0.249855,0,0);}
.mb5_c00230{transform:matrix(0.202582,0.005267,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202582,0.005267,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202582,0.005267,-0.006498,0.249916,0,0);}
.me1_c00230{transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);}
.ma1_c00230{transform:matrix(0.203226,0.004471,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203226,0.004471,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203226,0.004471,-0.005499,0.249940,0,0);}
.mc8_c00230{transform:matrix(0.203236,0.005284,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203236,0.005284,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203236,0.005284,-0.006498,0.249916,0,0);}
.mf_c00230{transform:matrix(0.203341,0.005287,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203341,0.005287,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203341,0.005287,-0.006498,0.249916,0,0);}
.m9f_c00230{transform:matrix(0.203751,0.004483,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203751,0.004483,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203751,0.004483,-0.005499,0.249940,0,0);}
.m85_c00230{transform:matrix(0.203796,0.004484,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203796,0.004484,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203796,0.004484,-0.005499,0.249940,0,0);}
.m2d_c00230{transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);}
.m33_c00230{transform:matrix(0.204426,0.004497,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204426,0.004497,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204426,0.004497,-0.005499,0.249940,0,0);}
.m101_c00230{transform:matrix(0.204481,0.005317,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204481,0.005317,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204481,0.005317,-0.006498,0.249916,0,0);}
.md4_c00230{transform:matrix(0.204701,0.005322,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204701,0.005322,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204701,0.005322,-0.006498,0.249916,0,0);}
.mcb_c00230{transform:matrix(0.204826,0.005325,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204826,0.005325,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204826,0.005325,-0.006498,0.249916,0,0);}
.m8_c00230{transform:matrix(0.204976,0.005329,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204976,0.005329,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204976,0.005329,-0.006498,0.249916,0,0);}
.m70_c00230{transform:matrix(0.205450,0.004520,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205450,0.004520,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205450,0.004520,-0.005499,0.249940,0,0);}
.m4c_c00230{transform:matrix(0.205470,0.004520,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205470,0.004520,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205470,0.004520,-0.005499,0.249940,0,0);}
.m4d_c00230{transform:matrix(0.206270,0.004538,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206270,0.004538,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206270,0.004538,-0.005499,0.249940,0,0);}
.m8e_c00230{transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);}
.md6_c00230{transform:matrix(0.206460,0.005368,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206460,0.005368,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206460,0.005368,-0.006498,0.249916,0,0);}
.m74_c00230{transform:matrix(0.207230,0.004559,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207230,0.004559,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207230,0.004559,-0.005499,0.249940,0,0);}
.m48_c00230{transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);}
.m34_c00230{transform:matrix(0.207435,0.004564,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207435,0.004564,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207435,0.004564,-0.005499,0.249940,0,0);}
.m91_c00230{transform:matrix(0.207545,0.004566,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207545,0.004566,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207545,0.004566,-0.005499,0.249940,0,0);}
.mea_c00230{transform:matrix(0.207565,0.005397,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207565,0.005397,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207565,0.005397,-0.006498,0.249916,0,0);}
.mc3_c00230{transform:matrix(0.207935,0.005406,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207935,0.005406,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207935,0.005406,-0.006498,0.249916,0,0);}
.m6f_c00230{transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207955,0.004575,-0.005499,0.249940,0,0);}
.mb4_c00230{transform:matrix(0.207955,0.005407,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207955,0.005407,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207955,0.005407,-0.006498,0.249916,0,0);}
.m62_c00230{transform:matrix(0.208075,0.004578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208075,0.004578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208075,0.004578,-0.005499,0.249940,0,0);}
.mdb_c00230{transform:matrix(0.208085,0.005410,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208085,0.005410,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208085,0.005410,-0.006498,0.249916,0,0);}
.mc7_c00230{transform:matrix(0.209754,0.005454,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209754,0.005454,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209754,0.005454,-0.006498,0.249916,0,0);}
.md0_c00230{transform:matrix(0.209869,0.005457,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209869,0.005457,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209869,0.005457,-0.006498,0.249916,0,0);}
.ma8_c00230{transform:matrix(0.209909,0.004618,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209909,0.004618,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209909,0.004618,-0.005499,0.249940,0,0);}
.m38_c00230{transform:matrix(0.210814,0.004638,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210814,0.004638,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210814,0.004638,-0.005499,0.249940,0,0);}
.m93_c00230{transform:matrix(0.210929,0.004640,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210929,0.004640,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210929,0.004640,-0.005499,0.249940,0,0);}
.mf6_c00230{transform:matrix(0.211309,0.005494,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211309,0.005494,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211309,0.005494,-0.006498,0.249916,0,0);}
.m83_c00230{transform:matrix(0.211389,0.004651,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211389,0.004651,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211389,0.004651,-0.005499,0.249940,0,0);}
.m58_c00230{transform:matrix(0.211429,0.004651,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211429,0.004651,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211429,0.004651,-0.005499,0.249940,0,0);}
.mac_c00230{transform:matrix(0.211473,0.007197,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211473,0.007197,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211473,0.007197,-0.008504,0.249855,0,0);}
.mba_c00230{transform:matrix(0.211823,0.005507,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211823,0.005507,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211823,0.005507,-0.006498,0.249916,0,0);}
.m4e_c00230{transform:matrix(0.212149,0.004667,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212149,0.004667,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212149,0.004667,-0.005499,0.249940,0,0);}
.m79_c00230{transform:matrix(0.212789,0.004681,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212789,0.004681,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212789,0.004681,-0.005499,0.249940,0,0);}
.m8f_c00230{transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);}
.mfa_c00230{transform:matrix(0.213103,0.005541,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213103,0.005541,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213103,0.005541,-0.006498,0.249916,0,0);}
.mfb_c00230{transform:matrix(0.213978,0.005563,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213978,0.005563,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213978,0.005563,-0.006498,0.249916,0,0);}
.mf9_c00230{transform:matrix(0.214248,0.005570,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214248,0.005570,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214248,0.005570,-0.006498,0.249916,0,0);}
.m98_c00230{transform:matrix(0.214518,0.004719,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214518,0.004719,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214518,0.004719,-0.005499,0.249940,0,0);}
.mfc_c00230{transform:matrix(0.214752,0.005584,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214752,0.005584,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214752,0.005584,-0.006498,0.249916,0,0);}
.m84_c00230{transform:matrix(0.214828,0.004726,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214828,0.004726,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214828,0.004726,-0.005499,0.249940,0,0);}
.m95_c00230{transform:matrix(0.215123,0.004733,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215123,0.004733,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215123,0.004733,-0.005499,0.249940,0,0);}
.mda_c00230{transform:matrix(0.215387,0.005600,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215387,0.005600,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215387,0.005600,-0.006498,0.249916,0,0);}
.m3b_c00230{transform:matrix(0.217517,0.004785,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217517,0.004785,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217517,0.004785,-0.005499,0.249940,0,0);}
.m105_c00230{transform:matrix(0.217551,0.005656,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217551,0.005656,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217551,0.005656,-0.006498,0.249916,0,0);}
.mff_c00230{transform:matrix(0.218101,0.005671,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218101,0.005671,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218101,0.005671,-0.006498,0.249916,0,0);}
.mb1_c00230{transform:matrix(0.218251,0.005675,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218251,0.005675,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218251,0.005675,-0.006498,0.249916,0,0);}
.mc9_c00230{transform:matrix(0.218281,0.005675,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218281,0.005675,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218281,0.005675,-0.006498,0.249916,0,0);}
.m10_c00230{transform:matrix(0.218486,0.005681,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218486,0.005681,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218486,0.005681,-0.006498,0.249916,0,0);}
.m5b_c00230{transform:matrix(0.218677,0.004811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218677,0.004811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218677,0.004811,-0.005499,0.249940,0,0);}
.ma4_c00230{transform:matrix(0.219877,0.004837,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219877,0.004837,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219877,0.004837,-0.005499,0.249940,0,0);}
.m6d_c00230{transform:matrix(0.220242,0.004845,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220242,0.004845,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220242,0.004845,-0.005499,0.249940,0,0);}
.me5_c00230{transform:matrix(0.220485,0.005733,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220485,0.005733,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220485,0.005733,-0.006498,0.249916,0,0);}
.m3c_c00230{transform:matrix(0.220792,0.004857,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220792,0.004857,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220792,0.004857,-0.005499,0.249940,0,0);}
.mc0_c00230{transform:matrix(0.221130,0.005749,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221130,0.005749,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221130,0.005749,-0.006498,0.249916,0,0);}
.m80_c00230{transform:matrix(0.222331,0.004891,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222331,0.004891,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222331,0.004891,-0.005499,0.249940,0,0);}
.mb3_c00230{transform:matrix(0.225029,0.005851,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225029,0.005851,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225029,0.005851,-0.006498,0.249916,0,0);}
.mbf_c00230{transform:matrix(0.225264,0.005857,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225264,0.005857,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225264,0.005857,-0.006498,0.249916,0,0);}
.mab_c00230{transform:matrix(0.228618,0.007781,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228618,0.007781,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228618,0.007781,-0.008504,0.249855,0,0);}
.m53_c00230{transform:matrix(0.228835,0.005034,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228835,0.005034,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228835,0.005034,-0.005499,0.249940,0,0);}
.m4f_c00230{transform:matrix(0.229135,0.005041,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229135,0.005041,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229135,0.005041,-0.005499,0.249940,0,0);}
.m102_c00230{transform:matrix(0.229198,0.005959,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229198,0.005959,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229198,0.005959,-0.006498,0.249916,0,0);}
.m96_c00230{transform:matrix(0.229734,0.005054,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229734,0.005054,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229734,0.005054,-0.005499,0.249940,0,0);}
.m7a_c00230{transform:matrix(0.231844,0.005101,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231844,0.005101,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231844,0.005101,-0.005499,0.249940,0,0);}
.me2_c00230{transform:matrix(0.232242,0.006038,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232242,0.006038,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232242,0.006038,-0.006498,0.249916,0,0);}
.m54_c00230{transform:matrix(0.232954,0.005125,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232954,0.005125,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232954,0.005125,-0.005499,0.249940,0,0);}
.m104_c00230{transform:matrix(0.233271,0.006065,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233271,0.006065,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233271,0.006065,-0.006498,0.249916,0,0);}
.md_c00230{transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);}
.m44_c00230{transform:matrix(0.235768,0.005187,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235768,0.005187,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235768,0.005187,-0.005499,0.249940,0,0);}
.m7d_c00230{transform:matrix(0.237163,0.005218,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237163,0.005218,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237163,0.005218,-0.005499,0.249940,0,0);}
.mcf_c00230{transform:matrix(0.237225,0.006168,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237225,0.006168,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237225,0.006168,-0.006498,0.249916,0,0);}
.m52_c00230{transform:matrix(0.237598,0.005227,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237598,0.005227,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237598,0.005227,-0.005499,0.249940,0,0);}
.mfd_c00230{transform:matrix(0.240229,0.006246,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240229,0.006246,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240229,0.006246,-0.006498,0.249916,0,0);}
.md8_c00230{transform:matrix(0.242653,0.006309,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242653,0.006309,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242653,0.006309,-0.006498,0.249916,0,0);}
.m68_c00230{transform:matrix(0.245276,0.005396,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245276,0.005396,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245276,0.005396,-0.005499,0.249940,0,0);}
.m7_c00230{transform:matrix(0.245627,0.006386,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245627,0.006386,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245627,0.006386,-0.006498,0.249916,0,0);}
.m55_c00230{transform:matrix(0.245955,0.005411,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245955,0.005411,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245955,0.005411,-0.005499,0.249940,0,0);}
.m57_c00230{transform:matrix(0.246040,0.005413,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246040,0.005413,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246040,0.005413,-0.005499,0.249940,0,0);}
.mb7_c00230{transform:matrix(0.246747,0.006415,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246747,0.006415,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246747,0.006415,-0.006498,0.249916,0,0);}
.mdf_c00230{transform:matrix(0.246962,0.006421,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246962,0.006421,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246962,0.006421,-0.006498,0.249916,0,0);}
.mcc_c00230{transform:matrix(0.249671,0.006491,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249671,0.006491,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249671,0.006491,-0.006498,0.249916,0,0);}
.md5_c00230{transform:matrix(0.254419,0.006615,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254419,0.006615,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254419,0.006615,-0.006498,0.249916,0,0);}
.m3a_c00230{transform:matrix(0.255008,0.005610,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255008,0.005610,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255008,0.005610,-0.005499,0.249940,0,0);}
.m39_c00230{transform:matrix(0.259182,0.005702,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259182,0.005702,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259182,0.005702,-0.005499,0.249940,0,0);}
.mfe_c00230{transform:matrix(0.265870,0.006913,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265870,0.006913,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265870,0.006913,-0.006498,0.249916,0,0);}
.m42_c00230{transform:matrix(0.275368,0.006058,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275368,0.006058,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275368,0.006058,-0.005499,0.249940,0,0);}
.mc4_c00230{transform:matrix(0.275832,0.007172,-0.006498,0.249916,0,0);-ms-transform:matrix(0.275832,0.007172,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.275832,0.007172,-0.006498,0.249916,0,0);}
.m103_c00230{transform:matrix(0.276467,0.007188,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276467,0.007188,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276467,0.007188,-0.006498,0.249916,0,0);}
.m27_c00230{transform:matrix(0.281442,0.006192,-0.005499,0.249940,0,0);-ms-transform:matrix(0.281442,0.006192,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.281442,0.006192,-0.005499,0.249940,0,0);}
.mc5_c00230{transform:matrix(0.281760,0.007326,-0.006498,0.249916,0,0);-ms-transform:matrix(0.281760,0.007326,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.281760,0.007326,-0.006498,0.249916,0,0);}
.m51_c00230{transform:matrix(0.288040,0.006337,-0.005499,0.249940,0,0);-ms-transform:matrix(0.288040,0.006337,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.288040,0.006337,-0.005499,0.249940,0,0);}
.m100_c00230{transform:matrix(0.292311,0.007600,-0.006498,0.249916,0,0);-ms-transform:matrix(0.292311,0.007600,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.292311,0.007600,-0.006498,0.249916,0,0);}
.m56_c00230{transform:matrix(0.675771,0.014867,-0.005499,0.249940,0,0);-ms-transform:matrix(0.675771,0.014867,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.675771,0.014867,-0.005499,0.249940,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:0.000000px;}
.fc0_c00230{color:transparent;}
.fs17_c00230{font-size:49.366677px;}
.fs14_c00230{font-size:57.769516px;}
.fse_c00230{font-size:58.814228px;}
.fsb_c00230{font-size:59.864482px;}
.fs16_c00230{font-size:59.870226px;}
.fs10_c00230{font-size:60.874325px;}
.fsc_c00230{font-size:60.914736px;}
.fs11_c00230{font-size:60.920581px;}
.fs13_c00230{font-size:61.970936px;}
.fs8_c00230{font-size:63.015244px;}
.fs12_c00230{font-size:63.021290px;}
.fsf_c00230{font-size:64.065498px;}
.fs15_c00230{font-size:64.071645px;}
.fs9_c00230{font-size:65.115752px;}
.fs2_c00230{font-size:65.122000px;}
.fsd_c00230{font-size:66.166006px;}
.fs5_c00230{font-size:67.222710px;}
.fsa_c00230{font-size:68.266515px;}
.fs7_c00230{font-size:69.316769px;}
.fs4_c00230{font-size:69.323419px;}
.fs6_c00230{font-size:70.367023px;}
.fs3_c00230{font-size:71.424129px;}
.fs1_c00230{font-size:73.524839px;}
.fs0_c00230{font-size:87.179452px;}
.y0_c00230{bottom:0.000000px;}
.y108_c00230{bottom:18.980640px;}
.y107_c00230{bottom:20.338992px;}
.y106_c00230{bottom:21.029115px;}
.y105_c00230{bottom:22.430220px;}
.y104_c00230{bottom:23.767050px;}
.y103_c00230{bottom:24.426390px;}
.y102_c00230{bottom:25.663659px;}
.y101_c00230{bottom:26.441139px;}
.y100_c00230{bottom:27.315996px;}
.yff_c00230{bottom:28.510629px;}
.yfe_c00230{bottom:29.136126px;}
.yfd_c00230{bottom:36.797157px;}
.yfc_c00230{bottom:39.319437px;}
.yfb_c00230{bottom:39.849273px;}
.yfa_c00230{bottom:42.045399px;}
.yf9_c00230{bottom:42.811839px;}
.yf8_c00230{bottom:45.515910px;}
.yf7_c00230{bottom:48.310818px;}
.yf6_c00230{bottom:56.037030px;}
.yf5_c00230{bottom:57.869415px;}
.yf4_c00230{bottom:58.479684px;}
.yf3_c00230{bottom:59.285940px;}
.yf2_c00230{bottom:59.732898px;}
.yf1_c00230{bottom:59.974140px;}
.yf0_c00230{bottom:60.932067px;}
.yef_c00230{bottom:61.468245px;}
.yee_c00230{bottom:63.193590px;}
.yed_c00230{bottom:63.794208px;}
.yec_c00230{bottom:64.505571px;}
.yeb_c00230{bottom:72.068703px;}
.yea_c00230{bottom:73.686519px;}
.ye9_c00230{bottom:74.647332px;}
.ye8_c00230{bottom:75.678588px;}
.ye7_c00230{bottom:76.075107px;}
.ye6_c00230{bottom:77.427135px;}
.ye5_c00230{bottom:77.977137px;}
.ye4_c00230{bottom:79.878660px;}
.ye3_c00230{bottom:80.711979px;}
.ye2_c00230{bottom:89.474142px;}
.ye1_c00230{bottom:90.940659px;}
.ye0_c00230{bottom:91.449990px;}
.ydf_c00230{bottom:93.056751px;}
.yde_c00230{bottom:94.257225px;}
.ydd_c00230{bottom:95.070969px;}
.ydc_c00230{bottom:96.363978px;}
.ydb_c00230{bottom:96.859251px;}
.yda_c00230{bottom:97.458426px;}
.yd9_c00230{bottom:107.569953px;}
.yd8_c00230{bottom:109.814190px;}
.yd7_c00230{bottom:110.235405px;}
.yd6_c00230{bottom:112.440900px;}
.yd5_c00230{bottom:113.027790px;}
.yd4_c00230{bottom:114.279912px;}
.yd3_c00230{bottom:114.743340px;}
.yd2_c00230{bottom:123.216114px;}
.yd1_c00230{bottom:124.113303px;}
.yd0_c00230{bottom:124.982961px;}
.ycf_c00230{bottom:125.430045px;}
.yce_c00230{bottom:127.170471px;}
.ycd_c00230{bottom:128.517903px;}
.ycc_c00230{bottom:130.097583px;}
.ycb_c00230{bottom:130.943706px;}
.yca_c00230{bottom:140.779449px;}
.yc9_c00230{bottom:143.162592px;}
.yc8_c00230{bottom:145.486731px;}
.yc7_c00230{bottom:146.486973px;}
.yc6_c00230{bottom:149.356125px;}
.yc5_c00230{bottom:150.289644px;}
.yc4_c00230{bottom:151.805406px;}
.yc3_c00230{bottom:152.826252px;}
.yc2_c00230{bottom:157.474698px;}
.yc1_c00230{bottom:159.881658px;}
.yc0_c00230{bottom:160.692009px;}
.ybf_c00230{bottom:163.294485px;}
.ybe_c00230{bottom:163.964466px;}
.ybd_c00230{bottom:166.610568px;}
.ybc_c00230{bottom:167.790939px;}
.ybb_c00230{bottom:169.300842px;}
.yba_c00230{bottom:174.151803px;}
.yb9_c00230{bottom:175.739064px;}
.yb8_c00230{bottom:176.620737px;}
.yb7_c00230{bottom:177.344109px;}
.yb6_c00230{bottom:178.791945px;}
.yb5_c00230{bottom:179.135613px;}
.yb4_c00230{bottom:180.277377px;}
.yb3_c00230{bottom:180.579120px;}
.yb2_c00230{bottom:180.907500px;}
.yb1_c00230{bottom:191.401803px;}
.yb0_c00230{bottom:192.112131px;}
.yaf_c00230{bottom:193.674924px;}
.yae_c00230{bottom:194.442015px;}
.yad_c00230{bottom:196.710342px;}
.yac_c00230{bottom:198.784767px;}
.yab_c00230{bottom:200.625000px;}
.yaa_c00230{bottom:208.832670px;}
.ya9_c00230{bottom:210.882282px;}
.ya8_c00230{bottom:212.986653px;}
.ya7_c00230{bottom:213.709398px;}
.ya6_c00230{bottom:215.357466px;}
.ya5_c00230{bottom:216.251088px;}
.ya4_c00230{bottom:216.819582px;}
.ya3_c00230{bottom:218.112603px;}
.ya2_c00230{bottom:225.750939px;}
.ya1_c00230{bottom:227.154684px;}
.ya0_c00230{bottom:227.591682px;}
.y9f_c00230{bottom:229.047897px;}
.y9e_c00230{bottom:229.691493px;}
.y9d_c00230{bottom:230.571906px;}
.y9c_c00230{bottom:231.497184px;}
.y9b_c00230{bottom:233.230017px;}
.y9a_c00230{bottom:233.661852px;}
.y99_c00230{bottom:234.854265px;}
.y98_c00230{bottom:243.029640px;}
.y97_c00230{bottom:244.757745px;}
.y96_c00230{bottom:246.186000px;}
.y95_c00230{bottom:246.507030px;}
.y94_c00230{bottom:248.085276px;}
.y93_c00230{bottom:249.880566px;}
.y92_c00230{bottom:250.883442px;}
.y91_c00230{bottom:252.134175px;}
.y90_c00230{bottom:261.561069px;}
.y8f_c00230{bottom:262.695531px;}
.y8e_c00230{bottom:263.547804px;}
.y8d_c00230{bottom:264.043902px;}
.y8c_c00230{bottom:265.018695px;}
.y8b_c00230{bottom:265.691982px;}
.y8a_c00230{bottom:267.324489px;}
.y89_c00230{bottom:268.107180px;}
.y88_c00230{bottom:269.418699px;}
.y87_c00230{bottom:279.403647px;}
.y86_c00230{bottom:281.187510px;}
.y85_c00230{bottom:282.882756px;}
.y84_c00230{bottom:283.723905px;}
.y83_c00230{bottom:285.223047px;}
.y82_c00230{bottom:285.724707px;}
.y81_c00230{bottom:286.701354px;}
.y80_c00230{bottom:298.503330px;}
.y7f_c00230{bottom:299.018412px;}
.y7e_c00230{bottom:300.569550px;}
.y7d_c00230{bottom:301.201167px;}
.y7c_c00230{bottom:301.838280px;}
.y7b_c00230{bottom:303.194748px;}
.y7a_c00230{bottom:303.599781px;}
.y79_c00230{bottom:304.252719px;}
.y78_c00230{bottom:314.542041px;}
.y77_c00230{bottom:316.325877px;}
.y76_c00230{bottom:316.818348px;}
.y75_c00230{bottom:318.724494px;}
.y74_c00230{bottom:319.368807px;}
.y73_c00230{bottom:319.804800px;}
.y72_c00230{bottom:320.998704px;}
.y71_c00230{bottom:330.927366px;}
.y70_c00230{bottom:331.398474px;}
.y6f_c00230{bottom:331.996698px;}
.y6e_c00230{bottom:332.479554px;}
.y6d_c00230{bottom:333.446355px;}
.y6c_c00230{bottom:334.360620px;}
.y6b_c00230{bottom:335.925084px;}
.y6a_c00230{bottom:336.317685px;}
.y69_c00230{bottom:336.625311px;}
.y68_c00230{bottom:337.201623px;}
.y67_c00230{bottom:348.349956px;}
.y66_c00230{bottom:348.774816px;}
.y65_c00230{bottom:349.181622px;}
.y64_c00230{bottom:350.643555px;}
.y63_c00230{bottom:350.837889px;}
.y62_c00230{bottom:352.009491px;}
.y61_c00230{bottom:353.050872px;}
.y60_c00230{bottom:353.405397px;}
.y5f_c00230{bottom:364.598616px;}
.y5e_c00230{bottom:365.020473px;}
.y5d_c00230{bottom:365.938095px;}
.y5c_c00230{bottom:367.061127px;}
.y5b_c00230{bottom:367.749846px;}
.y5a_c00230{bottom:368.167776px;}
.y59_c00230{bottom:370.022091px;}
.y58_c00230{bottom:370.752747px;}
.y57_c00230{bottom:372.042717px;}
.y56_c00230{bottom:381.944895px;}
.y55_c00230{bottom:382.932714px;}
.y54_c00230{bottom:384.350511px;}
.y53_c00230{bottom:384.878421px;}
.y52_c00230{bottom:386.459823px;}
.y51_c00230{bottom:386.828451px;}
.y50_c00230{bottom:387.434772px;}
.y4f_c00230{bottom:399.276309px;}
.y4e_c00230{bottom:399.590472px;}
.y4d_c00230{bottom:401.399817px;}
.y4c_c00230{bottom:401.972193px;}
.y4b_c00230{bottom:403.046181px;}
.y4a_c00230{bottom:403.555893px;}
.y49_c00230{bottom:404.990934px;}
.y48_c00230{bottom:415.792011px;}
.y47_c00230{bottom:416.352657px;}
.y46_c00230{bottom:416.831202px;}
.y45_c00230{bottom:417.729225px;}
.y44_c00230{bottom:418.726029px;}
.y43_c00230{bottom:419.935971px;}
.y42_c00230{bottom:420.644301px;}
.y41_c00230{bottom:422.005509px;}
.y40_c00230{bottom:432.598275px;}
.y3f_c00230{bottom:434.860236px;}
.y3e_c00230{bottom:435.610269px;}
.y3d_c00230{bottom:436.610313px;}
.y3c_c00230{bottom:437.451432px;}
.y3b_c00230{bottom:437.953533px;}
.y3a_c00230{bottom:438.682152px;}
.y39_c00230{bottom:439.561200px;}
.y38_c00230{bottom:449.955981px;}
.y37_c00230{bottom:450.312546px;}
.y36_c00230{bottom:451.060293px;}
.y35_c00230{bottom:451.439199px;}
.y34_c00230{bottom:453.135102px;}
.y33_c00230{bottom:453.556743px;}
.y32_c00230{bottom:454.649835px;}
.y31_c00230{bottom:455.095368px;}
.y30_c00230{bottom:456.301155px;}
.y2f_c00230{bottom:466.680009px;}
.y2e_c00230{bottom:468.112110px;}
.y2d_c00230{bottom:468.563979px;}
.y2c_c00230{bottom:469.645455px;}
.y2b_c00230{bottom:470.369970px;}
.y2a_c00230{bottom:471.331755px;}
.y29_c00230{bottom:472.007958px;}
.y28_c00230{bottom:472.776000px;}
.y27_c00230{bottom:486.048384px;}
.y26_c00230{bottom:489.729915px;}
.y25_c00230{bottom:490.124994px;}
.y24_c00230{bottom:490.838196px;}
.y23_c00230{bottom:501.700941px;}
.y22_c00230{bottom:502.287870px;}
.y21_c00230{bottom:503.318190px;}
.y20_c00230{bottom:503.828493px;}
.y1f_c00230{bottom:504.306228px;}
.y1e_c00230{bottom:505.585770px;}
.y1d_c00230{bottom:506.397174px;}
.y1c_c00230{bottom:507.461544px;}
.y1b_c00230{bottom:508.125645px;}
.y1a_c00230{bottom:519.270060px;}
.y19_c00230{bottom:519.637371px;}
.y18_c00230{bottom:520.961817px;}
.y17_c00230{bottom:521.662170px;}
.y16_c00230{bottom:523.043001px;}
.y15_c00230{bottom:524.017749px;}
.y14_c00230{bottom:524.629614px;}
.y13_c00230{bottom:525.141114px;}
.y12_c00230{bottom:537.640239px;}
.y11_c00230{bottom:537.941373px;}
.y10_c00230{bottom:540.010914px;}
.yf_c00230{bottom:540.427977px;}
.ye_c00230{bottom:541.759347px;}
.yd_c00230{bottom:542.695830px;}
.yc_c00230{bottom:553.732455px;}
.yb_c00230{bottom:555.088623px;}
.ya_c00230{bottom:555.763821px;}
.y9_c00230{bottom:556.106910px;}
.y8_c00230{bottom:556.391121px;}
.y7_c00230{bottom:557.367087px;}
.y6_c00230{bottom:557.819955px;}
.y5_c00230{bottom:558.268377px;}
.y4_c00230{bottom:559.485414px;}
.y3_c00230{bottom:559.983333px;}
.y2_c00230{bottom:567.174849px;}
.y1_c00230{bottom:570.790500px;}
.h19_c00230{height:49.366677px;}
.h16_c00230{height:57.769516px;}
.h10_c00230{height:58.814228px;}
.hd_c00230{height:59.864482px;}
.h18_c00230{height:59.870226px;}
.h12_c00230{height:60.874325px;}
.he_c00230{height:60.914736px;}
.h13_c00230{height:60.920581px;}
.h15_c00230{height:61.970936px;}
.ha_c00230{height:63.015244px;}
.h14_c00230{height:63.021290px;}
.h11_c00230{height:64.065498px;}
.h17_c00230{height:64.071645px;}
.hb_c00230{height:65.115752px;}
.h4_c00230{height:65.122000px;}
.hf_c00230{height:66.166006px;}
.h7_c00230{height:67.222710px;}
.hc_c00230{height:68.266515px;}
.h9_c00230{height:69.316769px;}
.h6_c00230{height:69.323419px;}
.h8_c00230{height:70.367023px;}
.h5_c00230{height:71.424129px;}
.h3_c00230{height:73.524839px;}
.h2_c00230{height:87.179452px;}
.h0_c00230{height:616.140000px;}
.h1_c00230{height:616.500000px;}
.w0_c00230{width:378.540000px;}
.w1_c00230{width:378.750000px;}
.x0_c00230{left:0.000000px;}
.x82_c00230{left:37.423386px;}
.x76_c00230{left:38.500368px;}
.x4e_c00230{left:39.732846px;}
.x54_c00230{left:40.844073px;}
.x40_c00230{left:42.169809px;}
.xd_c00230{left:43.221795px;}
.x21_c00230{left:44.284125px;}
.x3_c00230{left:45.807213px;}
.x72_c00230{left:47.475000px;}
.x6f_c00230{left:53.020500px;}
.x7d_c00230{left:54.136353px;}
.x4f_c00230{left:58.371567px;}
.x24_c00230{left:59.931000px;}
.x86_c00230{left:61.433541px;}
.x7a_c00230{left:62.848242px;}
.x83_c00230{left:65.202000px;}
.x4_c00230{left:67.440390px;}
.x12_c00230{left:69.085863px;}
.x41_c00230{left:71.025936px;}
.x19_c00230{left:72.587160px;}
.x60_c00230{left:74.156244px;}
.x77_c00230{left:76.252140px;}
.x31_c00230{left:78.024051px;}
.x69_c00230{left:79.700289px;}
.x22_c00230{left:81.817950px;}
.xe_c00230{left:85.821741px;}
.x63_c00230{left:87.003561px;}
.x42_c00230{left:88.600332px;}
.x47_c00230{left:91.214208px;}
.x59_c00230{left:92.432985px;}
.x25_c00230{left:94.842000px;}
.x13_c00230{left:96.891249px;}
.x2b_c00230{left:98.566905px;}
.x23_c00230{left:102.613233px;}
.x3b_c00230{left:105.049221px;}
.x32_c00230{left:107.186637px;}
.x5a_c00230{left:111.364056px;}
.x50_c00230{left:113.210697px;}
.x64_c00230{left:114.940365px;}
.x7e_c00230{left:117.593439px;}
.x1a_c00230{left:118.835748px;}
.x5_c00230{left:120.369024px;}
.x6d_c00230{left:122.097606px;}
.x26_c00230{left:125.578500px;}
.x33_c00230{left:127.280817px;}
.x73_c00230{left:128.842500px;}
.x37_c00230{left:132.623748px;}
.x88_c00230{left:136.379946px;}
.x6_c00230{left:139.867545px;}
.x14_c00230{left:141.193851px;}
.x61_c00230{left:143.136618px;}
.x6b_c00230{left:145.044609px;}
.xf_c00230{left:146.323020px;}
.x1b_c00230{left:154.142517px;}
.x87_c00230{left:156.852135px;}
.x7_c00230{left:159.537066px;}
.x34_c00230{left:160.943106px;}
.x43_c00230{left:163.892982px;}
.x10_c00230{left:165.250470px;}
.x70_c00230{left:168.042363px;}
.x27_c00230{left:169.296000px;}
.x62_c00230{left:172.161663px;}
.x3c_c00230{left:173.897703px;}
.x1_c00230{left:180.499500px;}
.x38_c00230{left:185.233593px;}
.x2c_c00230{left:187.669905px;}
.x44_c00230{left:189.048543px;}
.x48_c00230{left:190.635963px;}
.x5d_c00230{left:192.873993px;}
.x65_c00230{left:197.306508px;}
.x3d_c00230{left:198.755142px;}
.x35_c00230{left:200.942466px;}
.x8_c00230{left:201.981381px;}
.x15_c00230{left:203.943864px;}
.x84_c00230{left:205.209453px;}
.x49_c00230{left:206.699544px;}
.x7f_c00230{left:208.171380px;}
.x1c_c00230{left:209.763846px;}
.x55_c00230{left:211.538073px;}
.x7b_c00230{left:213.273186px;}
.x9_c00230{left:214.355856px;}
.x6a_c00230{left:220.918371px;}
.x5b_c00230{left:222.246114px;}
.x5e_c00230{left:224.448879px;}
.xa_c00230{left:229.283526px;}
.x1d_c00230{left:230.562984px;}
.x66_c00230{left:232.133421px;}
.x4a_c00230{left:233.161701px;}
.x71_c00230{left:234.691147px;}
.x16_c00230{left:235.787679px;}
.x81_c00230{left:238.164495px;}
.x85_c00230{left:239.561865px;}
.x5c_c00230{left:243.676152px;}
.x74_c00230{left:246.261000px;}
.x67_c00230{left:249.840078px;}
.x28_c00230{left:251.386500px;}
.x1e_c00230{left:252.730200px;}
.x78_c00230{left:253.742595px;}
.x56_c00230{left:255.483573px;}
.x45_c00230{left:256.563528px;}
.xb_c00230{left:258.658827px;}
.x51_c00230{left:262.009998px;}
.x2d_c00230{left:264.756405px;}
.x39_c00230{left:267.610278px;}
.x89_c00230{left:268.792980px;}
.x29_c00230{left:271.926000px;}
.x11_c00230{left:272.999163px;}
.x4b_c00230{left:276.363906px;}
.x3e_c00230{left:277.450926px;}
.x68_c00230{left:280.257552px;}
.x2e_c00230{left:281.979405px;}
.x52_c00230{left:283.434417px;}
.x80_c00230{left:285.539835px;}
.x3a_c00230{left:288.407316px;}
.x3f_c00230{left:291.117129px;}
.x17_c00230{left:295.964919px;}
.x1f_c00230{left:297.553710px;}
.x5f_c00230{left:301.981278px;}
.x46_c00230{left:303.579051px;}
.x57_c00230{left:304.623573px;}
.x53_c00230{left:305.815902px;}
.x75_c00230{left:307.309500px;}
.x6e_c00230{left:308.512311px;}
.x4c_c00230{left:311.661804px;}
.x18_c00230{left:312.690174px;}
.x7c_c00230{left:314.017098px;}
.x2f_c00230{left:315.967905px;}
.xc_c00230{left:317.631429px;}
.x2_c00230{left:319.563000px;}
.x36_c00230{left:321.411513px;}
.x20_c00230{left:323.072199px;}
.x6c_c00230{left:324.652641px;}
.x58_c00230{left:326.037573px;}
.x4d_c00230{left:327.903885px;}
.x30_c00230{left:332.175405px;}
.x79_c00230{left:334.186845px;}
.x2a_c00230{left:337.021500px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fs17_c00230{font-size:43.881491pt;}
.fs14_c00230{font-size:51.350681pt;}
.fse_c00230{font-size:52.279314pt;}
.fsb_c00230{font-size:53.212873pt;}
.fs16_c00230{font-size:53.217979pt;}
.fs10_c00230{font-size:54.110511pt;}
.fsc_c00230{font-size:54.146432pt;}
.fs11_c00230{font-size:54.151627pt;}
.fs13_c00230{font-size:55.085276pt;}
.fs8_c00230{font-size:56.013550pt;}
.fs12_c00230{font-size:56.018925pt;}
.fsf_c00230{font-size:56.947110pt;}
.fs15_c00230{font-size:56.952574pt;}
.fs9_c00230{font-size:57.880669pt;}
.fs2_c00230{font-size:57.886222pt;}
.fsd_c00230{font-size:58.814228pt;}
.fs5_c00230{font-size:59.753520pt;}
.fsa_c00230{font-size:60.681346pt;}
.fs7_c00230{font-size:61.614905pt;}
.fs4_c00230{font-size:61.620817pt;}
.fs6_c00230{font-size:62.548465pt;}
.fs3_c00230{font-size:63.488115pt;}
.fs1_c00230{font-size:65.355412pt;}
.fs0_c00230{font-size:77.492846pt;}
.y0_c00230{bottom:0.000000pt;}
.y108_c00230{bottom:16.871680pt;}
.y107_c00230{bottom:18.079104pt;}
.y106_c00230{bottom:18.692547pt;}
.y105_c00230{bottom:19.937973pt;}
.y104_c00230{bottom:21.126267pt;}
.y103_c00230{bottom:21.712347pt;}
.y102_c00230{bottom:22.812141pt;}
.y101_c00230{bottom:23.503235pt;}
.y100_c00230{bottom:24.280885pt;}
.yff_c00230{bottom:25.342781pt;}
.yfe_c00230{bottom:25.898779pt;}
.yfd_c00230{bottom:32.708584pt;}
.yfc_c00230{bottom:34.950611pt;}
.yfb_c00230{bottom:35.421576pt;}
.yfa_c00230{bottom:37.373688pt;}
.yf9_c00230{bottom:38.054968pt;}
.yf8_c00230{bottom:40.458587pt;}
.yf7_c00230{bottom:42.942949pt;}
.yf6_c00230{bottom:49.810693pt;}
.yf5_c00230{bottom:51.439480pt;}
.yf4_c00230{bottom:51.981941pt;}
.yf3_c00230{bottom:52.698613pt;}
.yf2_c00230{bottom:53.095909pt;}
.yf1_c00230{bottom:53.310347pt;}
.yf0_c00230{bottom:54.161837pt;}
.yef_c00230{bottom:54.638440pt;}
.yee_c00230{bottom:56.172080pt;}
.yed_c00230{bottom:56.705963pt;}
.yec_c00230{bottom:57.338285pt;}
.yeb_c00230{bottom:64.061069pt;}
.yea_c00230{bottom:65.499128pt;}
.ye9_c00230{bottom:66.353184pt;}
.ye8_c00230{bottom:67.269856pt;}
.ye7_c00230{bottom:67.622317pt;}
.ye6_c00230{bottom:68.824120pt;}
.ye5_c00230{bottom:69.313011pt;}
.ye4_c00230{bottom:71.003253pt;}
.ye3_c00230{bottom:71.743981pt;}
.ye2_c00230{bottom:79.532571pt;}
.ye1_c00230{bottom:80.836141pt;}
.ye0_c00230{bottom:81.288880pt;}
.ydf_c00230{bottom:82.717112pt;}
.yde_c00230{bottom:83.784200pt;}
.ydd_c00230{bottom:84.507528pt;}
.ydc_c00230{bottom:85.656869pt;}
.ydb_c00230{bottom:86.097112pt;}
.yda_c00230{bottom:86.629712pt;}
.yd9_c00230{bottom:95.617736pt;}
.yd8_c00230{bottom:97.612613pt;}
.yd7_c00230{bottom:97.987027pt;}
.yd6_c00230{bottom:99.947467pt;}
.yd5_c00230{bottom:100.469147pt;}
.yd4_c00230{bottom:101.582144pt;}
.yd3_c00230{bottom:101.994080pt;}
.yd2_c00230{bottom:109.525435pt;}
.yd1_c00230{bottom:110.322936pt;}
.yd0_c00230{bottom:111.095965pt;}
.ycf_c00230{bottom:111.493373pt;}
.yce_c00230{bottom:113.040419pt;}
.ycd_c00230{bottom:114.238136pt;}
.ycc_c00230{bottom:115.642296pt;}
.ycb_c00230{bottom:116.394405pt;}
.yca_c00230{bottom:125.137288pt;}
.yc9_c00230{bottom:127.255637pt;}
.yc8_c00230{bottom:129.321539pt;}
.yc7_c00230{bottom:130.210643pt;}
.yc6_c00230{bottom:132.761000pt;}
.yc5_c00230{bottom:133.590795pt;}
.yc4_c00230{bottom:134.938139pt;}
.yc3_c00230{bottom:135.845557pt;}
.yc2_c00230{bottom:139.977509pt;}
.yc1_c00230{bottom:142.117029pt;}
.yc0_c00230{bottom:142.837341pt;}
.ybf_c00230{bottom:145.150653pt;}
.ybe_c00230{bottom:145.746192pt;}
.ybd_c00230{bottom:148.098283pt;}
.ybc_c00230{bottom:149.147501pt;}
.ybb_c00230{bottom:150.489637pt;}
.yba_c00230{bottom:154.801603pt;}
.yb9_c00230{bottom:156.212501pt;}
.yb8_c00230{bottom:156.996211pt;}
.yb7_c00230{bottom:157.639208pt;}
.yb6_c00230{bottom:158.926173pt;}
.yb5_c00230{bottom:159.231656pt;}
.yb4_c00230{bottom:160.246557pt;}
.yb3_c00230{bottom:160.514773pt;}
.yb2_c00230{bottom:160.806667pt;}
.yb1_c00230{bottom:170.134936pt;}
.yb0_c00230{bottom:170.766339pt;}
.yaf_c00230{bottom:172.155488pt;}
.yae_c00230{bottom:172.837347pt;}
.yad_c00230{bottom:174.853637pt;}
.yac_c00230{bottom:176.697571pt;}
.yab_c00230{bottom:178.333333pt;}
.yaa_c00230{bottom:185.629040pt;}
.ya9_c00230{bottom:187.450917pt;}
.ya8_c00230{bottom:189.321469pt;}
.ya7_c00230{bottom:189.963909pt;}
.ya6_c00230{bottom:191.428859pt;}
.ya5_c00230{bottom:192.223189pt;}
.ya4_c00230{bottom:192.728517pt;}
.ya3_c00230{bottom:193.877869pt;}
.ya2_c00230{bottom:200.667501pt;}
.ya1_c00230{bottom:201.915275pt;}
.ya0_c00230{bottom:202.303717pt;}
.y9f_c00230{bottom:203.598131pt;}
.y9e_c00230{bottom:204.170216pt;}
.y9d_c00230{bottom:204.952805pt;}
.y9c_c00230{bottom:205.775275pt;}
.y9b_c00230{bottom:207.315571pt;}
.y9a_c00230{bottom:207.699424pt;}
.y99_c00230{bottom:208.759347pt;}
.y98_c00230{bottom:216.026347pt;}
.y97_c00230{bottom:217.562440pt;}
.y96_c00230{bottom:218.832000pt;}
.y95_c00230{bottom:219.117360pt;}
.y94_c00230{bottom:220.520245pt;}
.y93_c00230{bottom:222.116059pt;}
.y92_c00230{bottom:223.007504pt;}
.y91_c00230{bottom:224.119267pt;}
.y90_c00230{bottom:232.498728pt;}
.y8f_c00230{bottom:233.507139pt;}
.y8e_c00230{bottom:234.264715pt;}
.y8d_c00230{bottom:234.705691pt;}
.y8c_c00230{bottom:235.572173pt;}
.y8b_c00230{bottom:236.170651pt;}
.y8a_c00230{bottom:237.621768pt;}
.y89_c00230{bottom:238.317493pt;}
.y88_c00230{bottom:239.483288pt;}
.y87_c00230{bottom:248.358797pt;}
.y86_c00230{bottom:249.944453pt;}
.y85_c00230{bottom:251.451339pt;}
.y84_c00230{bottom:252.199027pt;}
.y83_c00230{bottom:253.531597pt;}
.y82_c00230{bottom:253.977517pt;}
.y81_c00230{bottom:254.845648pt;}
.y80_c00230{bottom:265.336293pt;}
.y7f_c00230{bottom:265.794144pt;}
.y7e_c00230{bottom:267.172933pt;}
.y7d_c00230{bottom:267.734371pt;}
.y7c_c00230{bottom:268.300693pt;}
.y7b_c00230{bottom:269.506443pt;}
.y7a_c00230{bottom:269.866472pt;}
.y79_c00230{bottom:270.446861pt;}
.y78_c00230{bottom:279.592925pt;}
.y77_c00230{bottom:281.178557pt;}
.y76_c00230{bottom:281.616309pt;}
.y75_c00230{bottom:283.310661pt;}
.y74_c00230{bottom:283.883384pt;}
.y73_c00230{bottom:284.270933pt;}
.y72_c00230{bottom:285.332181pt;}
.y71_c00230{bottom:294.157659pt;}
.y70_c00230{bottom:294.576421pt;}
.y6f_c00230{bottom:295.108176pt;}
.y6e_c00230{bottom:295.537381pt;}
.y6d_c00230{bottom:296.396760pt;}
.y6c_c00230{bottom:297.209440pt;}
.y6b_c00230{bottom:298.600075pt;}
.y6a_c00230{bottom:298.949053pt;}
.y69_c00230{bottom:299.222499pt;}
.y68_c00230{bottom:299.734776pt;}
.y67_c00230{bottom:309.644405pt;}
.y66_c00230{bottom:310.022059pt;}
.y65_c00230{bottom:310.383664pt;}
.y64_c00230{bottom:311.683160pt;}
.y63_c00230{bottom:311.855901pt;}
.y62_c00230{bottom:312.897325pt;}
.y61_c00230{bottom:313.822997pt;}
.y60_c00230{bottom:314.138131pt;}
.y5f_c00230{bottom:324.087659pt;}
.y5e_c00230{bottom:324.462643pt;}
.y5d_c00230{bottom:325.278307pt;}
.y5c_c00230{bottom:326.276557pt;}
.y5b_c00230{bottom:326.888752pt;}
.y5a_c00230{bottom:327.260245pt;}
.y59_c00230{bottom:328.908525pt;}
.y58_c00230{bottom:329.557997pt;}
.y57_c00230{bottom:330.704637pt;}
.y56_c00230{bottom:339.506573pt;}
.y55_c00230{bottom:340.384635pt;}
.y54_c00230{bottom:341.644899pt;}
.y53_c00230{bottom:342.114152pt;}
.y52_c00230{bottom:343.519843pt;}
.y51_c00230{bottom:343.847512pt;}
.y50_c00230{bottom:344.386464pt;}
.y4f_c00230{bottom:354.912275pt;}
.y4e_c00230{bottom:355.191531pt;}
.y4d_c00230{bottom:356.799837pt;}
.y4c_c00230{bottom:357.308616pt;}
.y4b_c00230{bottom:358.263272pt;}
.y4a_c00230{bottom:358.716349pt;}
.y49_c00230{bottom:359.991941pt;}
.y48_c00230{bottom:369.592899pt;}
.y47_c00230{bottom:370.091251pt;}
.y46_c00230{bottom:370.516624pt;}
.y45_c00230{bottom:371.314867pt;}
.y44_c00230{bottom:372.200915pt;}
.y43_c00230{bottom:373.276419pt;}
.y42_c00230{bottom:373.906045pt;}
.y41_c00230{bottom:375.116008pt;}
.y40_c00230{bottom:384.531800pt;}
.y3f_c00230{bottom:386.542432pt;}
.y3e_c00230{bottom:387.209128pt;}
.y3d_c00230{bottom:388.098056pt;}
.y3c_c00230{bottom:388.845717pt;}
.y3b_c00230{bottom:389.292029pt;}
.y3a_c00230{bottom:389.939691pt;}
.y39_c00230{bottom:390.721067pt;}
.y38_c00230{bottom:399.960872pt;}
.y37_c00230{bottom:400.277819pt;}
.y36_c00230{bottom:400.942483pt;}
.y35_c00230{bottom:401.279288pt;}
.y34_c00230{bottom:402.786757pt;}
.y33_c00230{bottom:403.161549pt;}
.y32_c00230{bottom:404.133187pt;}
.y31_c00230{bottom:404.529216pt;}
.y30_c00230{bottom:405.601027pt;}
.y2f_c00230{bottom:414.826675pt;}
.y2e_c00230{bottom:416.099653pt;}
.y2d_c00230{bottom:416.501315pt;}
.y2c_c00230{bottom:417.462627pt;}
.y2b_c00230{bottom:418.106640pt;}
.y2a_c00230{bottom:418.961560pt;}
.y29_c00230{bottom:419.562629pt;}
.y28_c00230{bottom:420.245333pt;}
.y27_c00230{bottom:432.043008pt;}
.y26_c00230{bottom:435.315480pt;}
.y25_c00230{bottom:435.666661pt;}
.y24_c00230{bottom:436.300619pt;}
.y23_c00230{bottom:445.956392pt;}
.y22_c00230{bottom:446.478107pt;}
.y21_c00230{bottom:447.393947pt;}
.y20_c00230{bottom:447.847549pt;}
.y1f_c00230{bottom:448.272203pt;}
.y1e_c00230{bottom:449.409573pt;}
.y1d_c00230{bottom:450.130821pt;}
.y1c_c00230{bottom:451.076928pt;}
.y1b_c00230{bottom:451.667240pt;}
.y1a_c00230{bottom:461.573387pt;}
.y19_c00230{bottom:461.899885pt;}
.y18_c00230{bottom:463.077171pt;}
.y17_c00230{bottom:463.699707pt;}
.y16_c00230{bottom:464.927112pt;}
.y15_c00230{bottom:465.793555pt;}
.y14_c00230{bottom:466.337435pt;}
.y13_c00230{bottom:466.792101pt;}
.y12_c00230{bottom:477.902435pt;}
.y11_c00230{bottom:478.170109pt;}
.y10_c00230{bottom:480.009701pt;}
.yf_c00230{bottom:480.380424pt;}
.ye_c00230{bottom:481.563864pt;}
.yd_c00230{bottom:482.396293pt;}
.yc_c00230{bottom:492.206627pt;}
.yb_c00230{bottom:493.412109pt;}
.ya_c00230{bottom:494.012285pt;}
.y9_c00230{bottom:494.317253pt;}
.y8_c00230{bottom:494.569885pt;}
.y7_c00230{bottom:495.437411pt;}
.y6_c00230{bottom:495.839960pt;}
.y5_c00230{bottom:496.238557pt;}
.y4_c00230{bottom:497.320368pt;}
.y3_c00230{bottom:497.762963pt;}
.y2_c00230{bottom:504.155421pt;}
.y1_c00230{bottom:507.369333pt;}
.h19_c00230{height:43.881491pt;}
.h16_c00230{height:51.350681pt;}
.h10_c00230{height:52.279314pt;}
.hd_c00230{height:53.212873pt;}
.h18_c00230{height:53.217979pt;}
.h12_c00230{height:54.110511pt;}
.he_c00230{height:54.146432pt;}
.h13_c00230{height:54.151627pt;}
.h15_c00230{height:55.085276pt;}
.ha_c00230{height:56.013550pt;}
.h14_c00230{height:56.018925pt;}
.h11_c00230{height:56.947110pt;}
.h17_c00230{height:56.952574pt;}
.hb_c00230{height:57.880669pt;}
.h4_c00230{height:57.886222pt;}
.hf_c00230{height:58.814228pt;}
.h7_c00230{height:59.753520pt;}
.hc_c00230{height:60.681346pt;}
.h9_c00230{height:61.614905pt;}
.h6_c00230{height:61.620817pt;}
.h8_c00230{height:62.548465pt;}
.h5_c00230{height:63.488115pt;}
.h3_c00230{height:65.355412pt;}
.h2_c00230{height:77.492846pt;}
.h0_c00230{height:547.680000pt;}
.h1_c00230{height:548.000000pt;}
.w0_c00230{width:336.480000pt;}
.w1_c00230{width:336.666667pt;}
.x0_c00230{left:0.000000pt;}
.x82_c00230{left:33.265232pt;}
.x76_c00230{left:34.222549pt;}
.x4e_c00230{left:35.318085pt;}
.x54_c00230{left:36.305843pt;}
.x40_c00230{left:37.484275pt;}
.xd_c00230{left:38.419373pt;}
.x21_c00230{left:39.363667pt;}
.x3_c00230{left:40.717523pt;}
.x72_c00230{left:42.200000pt;}
.x6f_c00230{left:47.129333pt;}
.x7d_c00230{left:48.121203pt;}
.x4f_c00230{left:51.885837pt;}
.x24_c00230{left:53.272000pt;}
.x86_c00230{left:54.607592pt;}
.x7a_c00230{left:55.865104pt;}
.x83_c00230{left:57.957333pt;}
.x4_c00230{left:59.947013pt;}
.x12_c00230{left:61.409656pt;}
.x41_c00230{left:63.134165pt;}
.x19_c00230{left:64.521920pt;}
.x60_c00230{left:65.916661pt;}
.x77_c00230{left:67.779680pt;}
.x31_c00230{left:69.354712pt;}
.x69_c00230{left:70.844701pt;}
.x22_c00230{left:72.727067pt;}
.xe_c00230{left:76.285992pt;}
.x63_c00230{left:77.336499pt;}
.x42_c00230{left:78.755851pt;}
.x47_c00230{left:81.079296pt;}
.x59_c00230{left:82.162653pt;}
.x25_c00230{left:84.304000pt;}
.x13_c00230{left:86.125555pt;}
.x2b_c00230{left:87.615027pt;}
.x23_c00230{left:91.211763pt;}
.x3b_c00230{left:93.377085pt;}
.x32_c00230{left:95.277011pt;}
.x5a_c00230{left:98.990272pt;}
.x50_c00230{left:100.631731pt;}
.x64_c00230{left:102.169213pt;}
.x7e_c00230{left:104.527501pt;}
.x1a_c00230{left:105.631776pt;}
.x5_c00230{left:106.994688pt;}
.x6d_c00230{left:108.531205pt;}
.x26_c00230{left:111.625333pt;}
.x33_c00230{left:113.138504pt;}
.x73_c00230{left:114.526667pt;}
.x37_c00230{left:117.887776pt;}
.x88_c00230{left:121.226619pt;}
.x6_c00230{left:124.326707pt;}
.x14_c00230{left:125.505645pt;}
.x61_c00230{left:127.232549pt;}
.x6b_c00230{left:128.928541pt;}
.xf_c00230{left:130.064907pt;}
.x1b_c00230{left:137.015571pt;}
.x87_c00230{left:139.424120pt;}
.x7_c00230{left:141.810725pt;}
.x34_c00230{left:143.060539pt;}
.x43_c00230{left:145.682651pt;}
.x10_c00230{left:146.889307pt;}
.x70_c00230{left:149.370989pt;}
.x27_c00230{left:150.485333pt;}
.x62_c00230{left:153.032589pt;}
.x3c_c00230{left:154.575736pt;}
.x1_c00230{left:160.444000pt;}
.x38_c00230{left:164.652083pt;}
.x2c_c00230{left:166.817693pt;}
.x44_c00230{left:168.043149pt;}
.x48_c00230{left:169.454189pt;}
.x5d_c00230{left:171.443549pt;}
.x65_c00230{left:175.383563pt;}
.x3d_c00230{left:176.671237pt;}
.x35_c00230{left:178.615525pt;}
.x8_c00230{left:179.539005pt;}
.x15_c00230{left:181.283435pt;}
.x84_c00230{left:182.408403pt;}
.x49_c00230{left:183.732928pt;}
.x7f_c00230{left:185.041227pt;}
.x1c_c00230{left:186.456752pt;}
.x55_c00230{left:188.033843pt;}
.x7b_c00230{left:189.576165pt;}
.x9_c00230{left:190.538539pt;}
.x6a_c00230{left:196.371885pt;}
.x5b_c00230{left:197.552101pt;}
.x5e_c00230{left:199.510115pt;}
.xa_c00230{left:203.807579pt;}
.x1d_c00230{left:204.944875pt;}
.x66_c00230{left:206.340819pt;}
.x4a_c00230{left:207.254845pt;}
.x71_c00230{left:208.614353pt;}
.x16_c00230{left:209.589048pt;}
.x81_c00230{left:211.701773pt;}
.x85_c00230{left:212.943880pt;}
.x5c_c00230{left:216.601024pt;}
.x74_c00230{left:218.898667pt;}
.x67_c00230{left:222.080069pt;}
.x28_c00230{left:223.454667pt;}
.x1e_c00230{left:224.649067pt;}
.x78_c00230{left:225.548973pt;}
.x56_c00230{left:227.096509pt;}
.x45_c00230{left:228.056469pt;}
.xb_c00230{left:229.918957pt;}
.x51_c00230{left:232.897776pt;}
.x2d_c00230{left:235.339027pt;}
.x39_c00230{left:237.875803pt;}
.x89_c00230{left:238.927093pt;}
.x29_c00230{left:241.712000pt;}
.x11_c00230{left:242.665923pt;}
.x4b_c00230{left:245.656805pt;}
.x3e_c00230{left:246.623045pt;}
.x68_c00230{left:249.117824pt;}
.x2e_c00230{left:250.648360pt;}
.x52_c00230{left:251.941704pt;}
.x80_c00230{left:253.813187pt;}
.x3a_c00230{left:256.362059pt;}
.x3f_c00230{left:258.770781pt;}
.x17_c00230{left:263.079928pt;}
.x1f_c00230{left:264.492187pt;}
.x5f_c00230{left:268.427803pt;}
.x46_c00230{left:269.848045pt;}
.x57_c00230{left:270.776509pt;}
.x53_c00230{left:271.836357pt;}
.x75_c00230{left:273.164000pt;}
.x6e_c00230{left:274.233165pt;}
.x4c_c00230{left:277.032715pt;}
.x18_c00230{left:277.946821pt;}
.x7c_c00230{left:279.126309pt;}
.x2f_c00230{left:280.860360pt;}
.xc_c00230{left:282.339048pt;}
.x2_c00230{left:284.056000pt;}
.x36_c00230{left:285.699123pt;}
.x20_c00230{left:287.175288pt;}
.x6c_c00230{left:288.580125pt;}
.x58_c00230{left:289.811176pt;}
.x4d_c00230{left:291.470120pt;}
.x30_c00230{left:295.267027pt;}
.x79_c00230{left:297.054973pt;}
.x2a_c00230{left:299.574667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00231 {
    display:none;
  }
  .loading-indicator_c00231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00231 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00231 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00231" -> "#page-container .classname_c00231")
 */
.pf_c00231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00231 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00231 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00231 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00231 {overflow:visible;}
  }
}
.c_c00231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00231 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00231:after { /* webkit #35443 */
  content: '';
}
.t_c00231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00231 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00231 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00231 { /* info for Javascript */
  display:none;
}
.l_c00231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00231:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00231 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00231.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c00231{transform:matrix(0.131084,-0.002622,0.004999,0.249950,0,0);-ms-transform:matrix(0.131084,-0.002622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.131084,-0.002622,0.004999,0.249950,0,0);}
.m84_c00231{transform:matrix(0.149965,-0.002999,0.004999,0.249950,0,0);-ms-transform:matrix(0.149965,-0.002999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149965,-0.002999,0.004999,0.249950,0,0);}
.m95_c00231{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m7c_c00231{transform:matrix(0.152784,-0.003056,0.004999,0.249950,0,0);-ms-transform:matrix(0.152784,-0.003056,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152784,-0.003056,0.004999,0.249950,0,0);}
.m66_c00231{transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-ms-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);}
.m5f_c00231{transform:matrix(0.156954,-0.003139,0.004999,0.249950,0,0);-ms-transform:matrix(0.156954,-0.003139,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156954,-0.003139,0.004999,0.249950,0,0);}
.m4e_c00231{transform:matrix(0.158458,-0.003169,0.004999,0.249950,0,0);-ms-transform:matrix(0.158458,-0.003169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158458,-0.003169,0.004999,0.249950,0,0);}
.m4_c00231{transform:matrix(0.159818,-0.003196,0.004999,0.249950,0,0);-ms-transform:matrix(0.159818,-0.003196,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159818,-0.003196,0.004999,0.249950,0,0);}
.mc5_c00231{transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-ms-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165722,-0.003314,0.004999,0.249950,0,0);}
.m9e_c00231{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);-ms-transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);}
.m2e_c00231{transform:matrix(0.168201,-0.003364,0.004999,0.249950,0,0);-ms-transform:matrix(0.168201,-0.003364,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168201,-0.003364,0.004999,0.249950,0,0);}
.mc9_c00231{transform:matrix(0.170120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170120,0.000000,0.000000,0.250000,0,0);}
.m7d_c00231{transform:matrix(0.170576,-0.003412,0.004999,0.249950,0,0);-ms-transform:matrix(0.170576,-0.003412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170576,-0.003412,0.004999,0.249950,0,0);}
.m4d_c00231{transform:matrix(0.172096,-0.003442,0.004999,0.249950,0,0);-ms-transform:matrix(0.172096,-0.003442,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172096,-0.003442,0.004999,0.249950,0,0);}
.mc2_c00231{transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);}
.mc0_c00231{transform:matrix(0.172480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172480,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.173635,-0.003473,0.004999,0.249950,0,0);-ms-transform:matrix(0.173635,-0.003473,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173635,-0.003473,0.004999,0.249950,0,0);}
.m5d_c00231{transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);-ms-transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);}
.m6a_c00231{transform:matrix(0.174795,-0.003496,0.004999,0.249950,0,0);-ms-transform:matrix(0.174795,-0.003496,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174795,-0.003496,0.004999,0.249950,0,0);}
.m6e_c00231{transform:matrix(0.175770,-0.003515,0.004999,0.249950,0,0);-ms-transform:matrix(0.175770,-0.003515,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175770,-0.003515,0.004999,0.249950,0,0);}
.m1e_c00231{transform:matrix(0.175950,-0.003519,0.004999,0.249950,0,0);-ms-transform:matrix(0.175950,-0.003519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175950,-0.003519,0.004999,0.249950,0,0);}
.m64_c00231{transform:matrix(0.176590,-0.003532,0.004999,0.249950,0,0);-ms-transform:matrix(0.176590,-0.003532,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176590,-0.003532,0.004999,0.249950,0,0);}
.maa_c00231{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m6f_c00231{transform:matrix(0.176760,-0.003535,0.004999,0.249950,0,0);-ms-transform:matrix(0.176760,-0.003535,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176760,-0.003535,0.004999,0.249950,0,0);}
.m3b_c00231{transform:matrix(0.177420,-0.003548,0.004999,0.249950,0,0);-ms-transform:matrix(0.177420,-0.003548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177420,-0.003548,0.004999,0.249950,0,0);}
.m47_c00231{transform:matrix(0.177989,-0.003560,0.004999,0.249950,0,0);-ms-transform:matrix(0.177989,-0.003560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177989,-0.003560,0.004999,0.249950,0,0);}
.m67_c00231{transform:matrix(0.178004,-0.003560,0.004999,0.249950,0,0);-ms-transform:matrix(0.178004,-0.003560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178004,-0.003560,0.004999,0.249950,0,0);}
.m41_c00231{transform:matrix(0.178059,-0.003561,0.004999,0.249950,0,0);-ms-transform:matrix(0.178059,-0.003561,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178059,-0.003561,0.004999,0.249950,0,0);}
.m5e_c00231{transform:matrix(0.178139,-0.003563,0.004999,0.249950,0,0);-ms-transform:matrix(0.178139,-0.003563,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178139,-0.003563,0.004999,0.249950,0,0);}
.mcc_c00231{transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.178779,-0.003576,0.004999,0.249950,0,0);-ms-transform:matrix(0.178779,-0.003576,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178779,-0.003576,0.004999,0.249950,0,0);}
.m19_c00231{transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);}
.m78_c00231{transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);}
.mac_c00231{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.ma5_c00231{transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.179649,-0.003593,0.004999,0.249950,0,0);-ms-transform:matrix(0.179649,-0.003593,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179649,-0.003593,0.004999,0.249950,0,0);}
.m4f_c00231{transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);-ms-transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);}
.mc3_c00231{transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.181139,-0.003623,0.004999,0.249950,0,0);-ms-transform:matrix(0.181139,-0.003623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181139,-0.003623,0.004999,0.249950,0,0);}
.ma_c00231{transform:matrix(0.181169,-0.003623,0.004999,0.249950,0,0);-ms-transform:matrix(0.181169,-0.003623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181169,-0.003623,0.004999,0.249950,0,0);}
.m6b_c00231{transform:matrix(0.181259,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181259,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181259,-0.003625,0.004999,0.249950,0,0);}
.m34_c00231{transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);-ms-transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181309,-0.003626,0.004999,0.249950,0,0);}
.m38_c00231{transform:matrix(0.181609,-0.003632,0.004999,0.249950,0,0);-ms-transform:matrix(0.181609,-0.003632,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181609,-0.003632,0.004999,0.249950,0,0);}
.m6_c00231{transform:matrix(0.182419,-0.003648,0.004999,0.249950,0,0);-ms-transform:matrix(0.182419,-0.003648,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182419,-0.003648,0.004999,0.249950,0,0);}
.m4b_c00231{transform:matrix(0.183558,-0.003671,0.004999,0.249950,0,0);-ms-transform:matrix(0.183558,-0.003671,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183558,-0.003671,0.004999,0.249950,0,0);}
.m6c_c00231{transform:matrix(0.184693,-0.003694,0.004999,0.249950,0,0);-ms-transform:matrix(0.184693,-0.003694,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184693,-0.003694,0.004999,0.249950,0,0);}
.m40_c00231{transform:matrix(0.185188,-0.003704,0.004999,0.249950,0,0);-ms-transform:matrix(0.185188,-0.003704,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185188,-0.003704,0.004999,0.249950,0,0);}
.m60_c00231{transform:matrix(0.185973,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185973,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185973,-0.003719,0.004999,0.249950,0,0);}
.ma0_c00231{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m65_c00231{transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-ms-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);}
.m76_c00231{transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);}
.m97_c00231{transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.188187,-0.003764,0.004999,0.249950,0,0);-ms-transform:matrix(0.188187,-0.003764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188187,-0.003764,0.004999,0.249950,0,0);}
.m83_c00231{transform:matrix(0.188197,-0.003764,0.004999,0.249950,0,0);-ms-transform:matrix(0.188197,-0.003764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188197,-0.003764,0.004999,0.249950,0,0);}
.m74_c00231{transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);-ms-transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);}
.mc7_c00231{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.ma8_c00231{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);-ms-transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189627,-0.003793,0.004999,0.249950,0,0);}
.m71_c00231{transform:matrix(0.189887,-0.003798,0.004999,0.249950,0,0);-ms-transform:matrix(0.189887,-0.003798,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189887,-0.003798,0.004999,0.249950,0,0);}
.m9a_c00231{transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);}
.ma2_c00231{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{transform:matrix(0.190177,-0.003804,0.004999,0.249950,0,0);-ms-transform:matrix(0.190177,-0.003804,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190177,-0.003804,0.004999,0.249950,0,0);}
.mca_c00231{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.191672,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191672,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191672,-0.003833,0.004999,0.249950,0,0);}
.m43_c00231{transform:matrix(0.192017,-0.003840,0.004999,0.249950,0,0);-ms-transform:matrix(0.192017,-0.003840,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192017,-0.003840,0.004999,0.249950,0,0);}
.m25_c00231{transform:matrix(0.192067,-0.003841,0.004999,0.249950,0,0);-ms-transform:matrix(0.192067,-0.003841,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192067,-0.003841,0.004999,0.249950,0,0);}
.m58_c00231{transform:matrix(0.192851,-0.003857,0.004999,0.249950,0,0);-ms-transform:matrix(0.192851,-0.003857,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192851,-0.003857,0.004999,0.249950,0,0);}
.m1c_c00231{transform:matrix(0.194086,-0.003882,0.004999,0.249950,0,0);-ms-transform:matrix(0.194086,-0.003882,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194086,-0.003882,0.004999,0.249950,0,0);}
.m63_c00231{transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);-ms-transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);}
.m3e_c00231{transform:matrix(0.194336,-0.003887,0.004999,0.249950,0,0);-ms-transform:matrix(0.194336,-0.003887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194336,-0.003887,0.004999,0.249950,0,0);}
.m9c_c00231{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.194755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194755,0.000000,0.000000,0.250000,0,0);}
.mbf_c00231{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m99_c00231{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.195111,-0.003902,0.004999,0.249950,0,0);-ms-transform:matrix(0.195111,-0.003902,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195111,-0.003902,0.004999,0.249950,0,0);}
.mb2_c00231{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.m80_c00231{transform:matrix(0.195856,-0.003917,0.004999,0.249950,0,0);-ms-transform:matrix(0.195856,-0.003917,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195856,-0.003917,0.004999,0.249950,0,0);}
.m3d_c00231{transform:matrix(0.196016,-0.003920,0.004999,0.249950,0,0);-ms-transform:matrix(0.196016,-0.003920,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196016,-0.003920,0.004999,0.249950,0,0);}
.m57_c00231{transform:matrix(0.196286,-0.003926,0.004999,0.249950,0,0);-ms-transform:matrix(0.196286,-0.003926,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196286,-0.003926,0.004999,0.249950,0,0);}
.m28_c00231{transform:matrix(0.196426,-0.003929,0.004999,0.249950,0,0);-ms-transform:matrix(0.196426,-0.003929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196426,-0.003929,0.004999,0.249950,0,0);}
.m87_c00231{transform:matrix(0.196621,-0.003932,0.004999,0.249950,0,0);-ms-transform:matrix(0.196621,-0.003932,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196621,-0.003932,0.004999,0.249950,0,0);}
.m27_c00231{transform:matrix(0.196636,-0.003933,0.004999,0.249950,0,0);-ms-transform:matrix(0.196636,-0.003933,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196636,-0.003933,0.004999,0.249950,0,0);}
.m75_c00231{transform:matrix(0.196846,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196846,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196846,-0.003937,0.004999,0.249950,0,0);}
.m39_c00231{transform:matrix(0.196946,-0.003939,0.004999,0.249950,0,0);-ms-transform:matrix(0.196946,-0.003939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196946,-0.003939,0.004999,0.249950,0,0);}
.m96_c00231{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.197286,-0.003946,0.004999,0.249950,0,0);-ms-transform:matrix(0.197286,-0.003946,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197286,-0.003946,0.004999,0.249950,0,0);}
.m9d_c00231{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.198980,-0.003980,0.004999,0.249950,0,0);-ms-transform:matrix(0.198980,-0.003980,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198980,-0.003980,0.004999,0.249950,0,0);}
.m89_c00231{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m7b_c00231{transform:matrix(0.199125,-0.003983,0.004999,0.249950,0,0);-ms-transform:matrix(0.199125,-0.003983,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199125,-0.003983,0.004999,0.249950,0,0);}
.m8d_c00231{transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-ms-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199960,-0.003999,0.004999,0.249950,0,0);}
.m6d_c00231{transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);-ms-transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200120,-0.004002,0.004999,0.249950,0,0);}
.mbe_c00231{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m79_c00231{transform:matrix(0.200760,-0.004015,0.004999,0.249950,0,0);-ms-transform:matrix(0.200760,-0.004015,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200760,-0.004015,0.004999,0.249950,0,0);}
.m9f_c00231{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.ma9_c00231{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.202085,-0.004042,0.004999,0.249950,0,0);-ms-transform:matrix(0.202085,-0.004042,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202085,-0.004042,0.004999,0.249950,0,0);}
.m8f_c00231{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.m61_c00231{transform:matrix(0.202445,-0.004049,0.004999,0.249950,0,0);-ms-transform:matrix(0.202445,-0.004049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202445,-0.004049,0.004999,0.249950,0,0);}
.m21_c00231{transform:matrix(0.203029,-0.004061,0.004999,0.249950,0,0);-ms-transform:matrix(0.203029,-0.004061,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203029,-0.004061,0.004999,0.249950,0,0);}
.m69_c00231{transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);-ms-transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203159,-0.004063,0.004999,0.249950,0,0);}
.m42_c00231{transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);-ms-transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);}
.m30_c00231{transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-ms-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);}
.m37_c00231{transform:matrix(0.203869,-0.004077,0.004999,0.249950,0,0);-ms-transform:matrix(0.203869,-0.004077,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203869,-0.004077,0.004999,0.249950,0,0);}
.m12_c00231{transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);-ms-transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204324,-0.004086,0.004999,0.249950,0,0);}
.m86_c00231{transform:matrix(0.204329,-0.004087,0.004999,0.249950,0,0);-ms-transform:matrix(0.204329,-0.004087,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204329,-0.004087,0.004999,0.249950,0,0);}
.m24_c00231{transform:matrix(0.204934,-0.004099,0.004999,0.249950,0,0);-ms-transform:matrix(0.204934,-0.004099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204934,-0.004099,0.004999,0.249950,0,0);}
.mb4_c00231{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m70_c00231{transform:matrix(0.205589,-0.004112,0.004999,0.249950,0,0);-ms-transform:matrix(0.205589,-0.004112,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205589,-0.004112,0.004999,0.249950,0,0);}
.mbc_c00231{transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.206199,-0.004124,0.004999,0.249950,0,0);-ms-transform:matrix(0.206199,-0.004124,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206199,-0.004124,0.004999,0.249950,0,0);}
.m8e_c00231{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.mc1_c00231{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.mb6_c00231{transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);}
.m49_c00231{transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);}
.mb1_c00231{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mc4_c00231{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.207359,-0.004147,0.004999,0.249950,0,0);-ms-transform:matrix(0.207359,-0.004147,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207359,-0.004147,0.004999,0.249950,0,0);}
.m73_c00231{transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-ms-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);}
.ma4_c00231{transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(0.208073,-0.004161,0.004999,0.249950,0,0);-ms-transform:matrix(0.208073,-0.004161,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208073,-0.004161,0.004999,0.249950,0,0);}
.m3f_c00231{transform:matrix(0.208523,-0.004170,0.004999,0.249950,0,0);-ms-transform:matrix(0.208523,-0.004170,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208523,-0.004170,0.004999,0.249950,0,0);}
.m1b_c00231{transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);}
.m10_c00231{transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);-ms-transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);}
.m93_c00231{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.m20_c00231{transform:matrix(0.209563,-0.004191,0.004999,0.249950,0,0);-ms-transform:matrix(0.209563,-0.004191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209563,-0.004191,0.004999,0.249950,0,0);}
.mc8_c00231{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{transform:matrix(0.209923,-0.004198,0.004999,0.249950,0,0);-ms-transform:matrix(0.209923,-0.004198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209923,-0.004198,0.004999,0.249950,0,0);}
.m55_c00231{transform:matrix(0.210023,-0.004200,0.004999,0.249950,0,0);-ms-transform:matrix(0.210023,-0.004200,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210023,-0.004200,0.004999,0.249950,0,0);}
.m51_c00231{transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-ms-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);}
.m9b_c00231{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m94_c00231{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);-ms-transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);}
.m3_c00231{transform:matrix(0.211013,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.211013,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211013,-0.004220,0.004999,0.249950,0,0);}
.m90_c00231{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.211253,-0.004225,0.004999,0.249950,0,0);-ms-transform:matrix(0.211253,-0.004225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211253,-0.004225,0.004999,0.249950,0,0);}
.ma1_c00231{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{transform:matrix(0.212003,-0.004240,0.004999,0.249950,0,0);-ms-transform:matrix(0.212003,-0.004240,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212003,-0.004240,0.004999,0.249950,0,0);}
.mb9_c00231{transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);-ms-transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);}
.m2_c00231{transform:matrix(0.213722,-0.004274,0.004999,0.249950,0,0);-ms-transform:matrix(0.213722,-0.004274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213722,-0.004274,0.004999,0.249950,0,0);}
.m45_c00231{transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);-ms-transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);}
.ma6_c00231{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.214447,-0.004289,0.004999,0.249950,0,0);-ms-transform:matrix(0.214447,-0.004289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214447,-0.004289,0.004999,0.249950,0,0);}
.mb5_c00231{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.mba_c00231{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.mb0_c00231{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.mbb_c00231{transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);}
.m7f_c00231{transform:matrix(0.215712,-0.004314,0.004999,0.249950,0,0);-ms-transform:matrix(0.215712,-0.004314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215712,-0.004314,0.004999,0.249950,0,0);}
.m81_c00231{transform:matrix(0.217407,-0.004348,0.004999,0.249950,0,0);-ms-transform:matrix(0.217407,-0.004348,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217407,-0.004348,0.004999,0.249950,0,0);}
.m14_c00231{transform:matrix(0.217596,-0.004352,0.004999,0.249950,0,0);-ms-transform:matrix(0.217596,-0.004352,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217596,-0.004352,0.004999,0.249950,0,0);}
.mb8_c00231{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{transform:matrix(0.218371,-0.004367,0.004999,0.249950,0,0);-ms-transform:matrix(0.218371,-0.004367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218371,-0.004367,0.004999,0.249950,0,0);}
.m5_c00231{transform:matrix(0.218601,-0.004372,0.004999,0.249950,0,0);-ms-transform:matrix(0.218601,-0.004372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218601,-0.004372,0.004999,0.249950,0,0);}
.mad_c00231{transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{transform:matrix(0.220076,-0.004402,0.004999,0.249950,0,0);-ms-transform:matrix(0.220076,-0.004402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220076,-0.004402,0.004999,0.249950,0,0);}
.m2d_c00231{transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);-ms-transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221246,-0.004425,0.004999,0.249950,0,0);}
.m5a_c00231{transform:matrix(0.221251,-0.004425,0.004999,0.249950,0,0);-ms-transform:matrix(0.221251,-0.004425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221251,-0.004425,0.004999,0.249950,0,0);}
.m53_c00231{transform:matrix(0.221266,-0.004425,0.004999,0.249950,0,0);-ms-transform:matrix(0.221266,-0.004425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221266,-0.004425,0.004999,0.249950,0,0);}
.m77_c00231{transform:matrix(0.221276,-0.004426,0.004999,0.249950,0,0);-ms-transform:matrix(0.221276,-0.004426,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221276,-0.004426,0.004999,0.249950,0,0);}
.m59_c00231{transform:matrix(0.221401,-0.004428,0.004999,0.249950,0,0);-ms-transform:matrix(0.221401,-0.004428,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221401,-0.004428,0.004999,0.249950,0,0);}
.mab_c00231{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m72_c00231{transform:matrix(0.222530,-0.004451,0.004999,0.249950,0,0);-ms-transform:matrix(0.222530,-0.004451,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222530,-0.004451,0.004999,0.249950,0,0);}
.mb7_c00231{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m46_c00231{transform:matrix(0.222865,-0.004457,0.004999,0.249950,0,0);-ms-transform:matrix(0.222865,-0.004457,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222865,-0.004457,0.004999,0.249950,0,0);}
.m91_c00231{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m8b_c00231{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m98_c00231{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m82_c00231{transform:matrix(0.223835,-0.004477,0.004999,0.249950,0,0);-ms-transform:matrix(0.223835,-0.004477,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223835,-0.004477,0.004999,0.249950,0,0);}
.m11_c00231{transform:matrix(0.224265,-0.004485,0.004999,0.249950,0,0);-ms-transform:matrix(0.224265,-0.004485,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224265,-0.004485,0.004999,0.249950,0,0);}
.m54_c00231{transform:matrix(0.225060,-0.004501,0.004999,0.249950,0,0);-ms-transform:matrix(0.225060,-0.004501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225060,-0.004501,0.004999,0.249950,0,0);}
.m8_c00231{transform:matrix(0.225650,-0.004513,0.004999,0.249950,0,0);-ms-transform:matrix(0.225650,-0.004513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225650,-0.004513,0.004999,0.249950,0,0);}
.maf_c00231{transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.225930,-0.004519,0.004999,0.249950,0,0);-ms-transform:matrix(0.225930,-0.004519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225930,-0.004519,0.004999,0.249950,0,0);}
.m18_c00231{transform:matrix(0.225940,-0.004519,0.004999,0.249950,0,0);-ms-transform:matrix(0.225940,-0.004519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225940,-0.004519,0.004999,0.249950,0,0);}
.mcb_c00231{transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);}
.m7a_c00231{transform:matrix(0.226420,-0.004528,0.004999,0.249950,0,0);-ms-transform:matrix(0.226420,-0.004528,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226420,-0.004528,0.004999,0.249950,0,0);}
.m92_c00231{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mae_c00231{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.mbd_c00231{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00231{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m8c_c00231{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.234458,-0.004689,0.004999,0.249950,0,0);-ms-transform:matrix(0.234458,-0.004689,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234458,-0.004689,0.004999,0.249950,0,0);}
.m88_c00231{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.236293,-0.004726,0.004999,0.249950,0,0);-ms-transform:matrix(0.236293,-0.004726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236293,-0.004726,0.004999,0.249950,0,0);}
.m31_c00231{transform:matrix(0.237038,-0.004741,0.004999,0.249950,0,0);-ms-transform:matrix(0.237038,-0.004741,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237038,-0.004741,0.004999,0.249950,0,0);}
.mb3_c00231{transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.239162,-0.004783,0.004999,0.249950,0,0);-ms-transform:matrix(0.239162,-0.004783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239162,-0.004783,0.004999,0.249950,0,0);}
.m8a_c00231{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);-ms-transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);}
.m26_c00231{transform:matrix(0.241037,-0.004821,0.004999,0.249950,0,0);-ms-transform:matrix(0.241037,-0.004821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241037,-0.004821,0.004999,0.249950,0,0);}
.m3a_c00231{transform:matrix(0.241147,-0.004823,0.004999,0.249950,0,0);-ms-transform:matrix(0.241147,-0.004823,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241147,-0.004823,0.004999,0.249950,0,0);}
.m4c_c00231{transform:matrix(0.242721,-0.004854,0.004999,0.249950,0,0);-ms-transform:matrix(0.242721,-0.004854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242721,-0.004854,0.004999,0.249950,0,0);}
.m1d_c00231{transform:matrix(0.243351,-0.004867,0.004999,0.249950,0,0);-ms-transform:matrix(0.243351,-0.004867,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243351,-0.004867,0.004999,0.249950,0,0);}
.m9_c00231{transform:matrix(0.244131,-0.004883,0.004999,0.249950,0,0);-ms-transform:matrix(0.244131,-0.004883,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244131,-0.004883,0.004999,0.249950,0,0);}
.m4a_c00231{transform:matrix(0.247780,-0.004956,0.004999,0.249950,0,0);-ms-transform:matrix(0.247780,-0.004956,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247780,-0.004956,0.004999,0.249950,0,0);}
.m7e_c00231{transform:matrix(0.253564,-0.005071,0.004999,0.249950,0,0);-ms-transform:matrix(0.253564,-0.005071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253564,-0.005071,0.004999,0.249950,0,0);}
.m5c_c00231{transform:matrix(0.266767,-0.005335,0.004999,0.249950,0,0);-ms-transform:matrix(0.266767,-0.005335,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266767,-0.005335,0.004999,0.249950,0,0);}
.m5b_c00231{transform:matrix(0.278644,-0.005573,0.004999,0.249950,0,0);-ms-transform:matrix(0.278644,-0.005573,0.004999,0.249950,0,0);-webkit-transform:matrix(0.278644,-0.005573,0.004999,0.249950,0,0);}
.m44_c00231{transform:matrix(0.463752,-0.009275,0.004999,0.249950,0,0);-ms-transform:matrix(0.463752,-0.009275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.463752,-0.009275,0.004999,0.249950,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:0.000000px;}
.fc0_c00231{color:transparent;}
.fsb_c00231{font-size:54.600000px;}
.fs3_c00231{font-size:57.761549px;}
.fs2_c00231{font-size:58.811759px;}
.fsc_c00231{font-size:59.850000px;}
.fs4_c00231{font-size:59.861969px;}
.fsf_c00231{font-size:60.900000px;}
.fs1_c00231{font-size:60.912179px;}
.fs5_c00231{font-size:61.962389px;}
.fs10_c00231{font-size:63.000000px;}
.fsd_c00231{font-size:64.050000px;}
.fs6_c00231{font-size:64.062809px;}
.fs0_c00231{font-size:65.100000px;}
.fsa_c00231{font-size:65.113019px;}
.fse_c00231{font-size:66.150000px;}
.fs8_c00231{font-size:67.213439px;}
.fs11_c00231{font-size:68.250000px;}
.fs9_c00231{font-size:68.263649px;}
.fs7_c00231{font-size:69.313859px;}
.y0_c00231{bottom:0.000000px;}
.y9f_c00231{bottom:79.654500px;}
.ya0_c00231{bottom:80.766000px;}
.ya1_c00231{bottom:81.262500px;}
.ya2_c00231{bottom:82.278000px;}
.ya3_c00231{bottom:82.902000px;}
.y97_c00231{bottom:97.741500px;}
.y98_c00231{bottom:98.389500px;}
.y99_c00231{bottom:98.595000px;}
.y9a_c00231{bottom:98.952000px;}
.y9b_c00231{bottom:99.577500px;}
.y9c_c00231{bottom:99.762000px;}
.y9d_c00231{bottom:100.059000px;}
.y9e_c00231{bottom:100.902000px;}
.y96_c00231{bottom:118.894500px;}
.y95_c00231{bottom:135.994500px;}
.y94_c00231{bottom:152.884500px;}
.y8d_c00231{bottom:166.861500px;}
.y8e_c00231{bottom:167.367000px;}
.y8f_c00231{bottom:167.868000px;}
.y90_c00231{bottom:168.073500px;}
.y91_c00231{bottom:168.634500px;}
.y92_c00231{bottom:168.900000px;}
.y93_c00231{bottom:170.020500px;}
.y8c_c00231{bottom:187.087500px;}
.y8b_c00231{bottom:203.938500px;}
.y8a_c00231{bottom:220.593000px;}
.y89_c00231{bottom:238.212000px;}
.y83_c00231{bottom:253.204260px;}
.y84_c00231{bottom:254.077980px;}
.y85_c00231{bottom:254.691960px;}
.y86_c00231{bottom:254.952660px;}
.y87_c00231{bottom:255.869040px;}
.y88_c00231{bottom:256.672380px;}
.y7a_c00231{bottom:269.677080px;}
.y7b_c00231{bottom:269.893140px;}
.y7c_c00231{bottom:270.401190px;}
.y7d_c00231{bottom:270.549330px;}
.y7e_c00231{bottom:270.873900px;}
.y7f_c00231{bottom:271.506030px;}
.y80_c00231{bottom:271.843200px;}
.y81_c00231{bottom:272.064270px;}
.y82_c00231{bottom:272.554980px;}
.y75_c00231{bottom:286.151040px;}
.y76_c00231{bottom:287.203860px;}
.y77_c00231{bottom:287.465790px;}
.y78_c00231{bottom:288.275790px;}
.y79_c00231{bottom:289.141500px;}
.y6d_c00231{bottom:302.623890px;}
.y6e_c00231{bottom:303.180150px;}
.y6f_c00231{bottom:304.147470px;}
.y70_c00231{bottom:304.458300px;}
.y71_c00231{bottom:304.695240px;}
.y72_c00231{bottom:305.176830px;}
.y73_c00231{bottom:305.777400px;}
.y74_c00231{bottom:306.643350px;}
.y65_c00231{bottom:319.096110px;}
.y66_c00231{bottom:319.603560px;}
.y67_c00231{bottom:319.930200px;}
.y68_c00231{bottom:320.333730px;}
.y69_c00231{bottom:321.369030px;}
.y6a_c00231{bottom:321.939330px;}
.y6b_c00231{bottom:322.890690px;}
.y6c_c00231{bottom:323.488320px;}
.y5e_c00231{bottom:335.842680px;}
.y5f_c00231{bottom:336.605010px;}
.y60_c00231{bottom:337.901400px;}
.y61_c00231{bottom:338.225760px;}
.y62_c00231{bottom:339.843390px;}
.y63_c00231{bottom:340.108140px;}
.y64_c00231{bottom:340.460910px;}
.y59_c00231{bottom:353.934780px;}
.y5a_c00231{bottom:355.433760px;}
.y5b_c00231{bottom:356.186250px;}
.y5c_c00231{bottom:356.998560px;}
.y5d_c00231{bottom:358.376520px;}
.y51_c00231{bottom:370.947150px;}
.y52_c00231{bottom:371.624010px;}
.y53_c00231{bottom:372.183270px;}
.y54_c00231{bottom:372.545340px;}
.y55_c00231{bottom:373.390590px;}
.y56_c00231{bottom:373.613850px;}
.y57_c00231{bottom:374.003010px;}
.y58_c00231{bottom:374.860020px;}
.y48_c00231{bottom:388.229310px;}
.y49_c00231{bottom:388.549770px;}
.y4a_c00231{bottom:389.255820px;}
.y4b_c00231{bottom:389.508360px;}
.y4c_c00231{bottom:390.123120px;}
.y4d_c00231{bottom:390.810690px;}
.y4e_c00231{bottom:391.087380px;}
.y4f_c00231{bottom:391.606290px;}
.y50_c00231{bottom:391.839480px;}
.y43_c00231{bottom:405.241650px;}
.y44_c00231{bottom:406.035900px;}
.y45_c00231{bottom:406.964640px;}
.y46_c00231{bottom:407.545860px;}
.y47_c00231{bottom:408.427320px;}
.y3b_c00231{bottom:422.526030px;}
.y3c_c00231{bottom:423.123210px;}
.y3d_c00231{bottom:423.413940px;}
.y3e_c00231{bottom:424.038960px;}
.y3f_c00231{bottom:424.355400px;}
.y40_c00231{bottom:424.920360px;}
.y41_c00231{bottom:425.443080px;}
.y42_c00231{bottom:426.252660px;}
.y34_c00231{bottom:439.808940px;}
.y35_c00231{bottom:440.321610px;}
.y36_c00231{bottom:440.686800px;}
.y37_c00231{bottom:441.858150px;}
.y38_c00231{bottom:442.589130px;}
.y39_c00231{bottom:442.876200px;}
.y3a_c00231{bottom:443.255490px;}
.y2c_c00231{bottom:456.822000px;}
.y2d_c00231{bottom:457.236960px;}
.y2e_c00231{bottom:458.008080px;}
.y2f_c00231{bottom:458.170860px;}
.y30_c00231{bottom:458.459400px;}
.y31_c00231{bottom:459.304800px;}
.y32_c00231{bottom:459.564990px;}
.y33_c00231{bottom:460.388580px;}
.y26_c00231{bottom:473.027520px;}
.y27_c00231{bottom:473.401470px;}
.y28_c00231{bottom:474.056130px;}
.y29_c00231{bottom:474.940920px;}
.y2a_c00231{bottom:475.821210px;}
.y2b_c00231{bottom:476.852730px;}
.y1e_c00231{bottom:490.578810px;}
.y1f_c00231{bottom:490.897320px;}
.y20_c00231{bottom:491.133000px;}
.y21_c00231{bottom:491.944620px;}
.y22_c00231{bottom:492.601050px;}
.y23_c00231{bottom:493.131420px;}
.y24_c00231{bottom:493.595280px;}
.y25_c00231{bottom:493.989630px;}
.y17_c00231{bottom:507.323550px;}
.y18_c00231{bottom:508.271550px;}
.y19_c00231{bottom:508.823700px;}
.y1a_c00231{bottom:509.529330px;}
.y1b_c00231{bottom:509.847900px;}
.y1c_c00231{bottom:510.623280px;}
.y1d_c00231{bottom:510.906870px;}
.y10_c00231{bottom:523.257660px;}
.y11_c00231{bottom:523.598670px;}
.y12_c00231{bottom:524.619090px;}
.y13_c00231{bottom:525.989460px;}
.y14_c00231{bottom:527.059200px;}
.y15_c00231{bottom:527.492070px;}
.y16_c00231{bottom:528.465150px;}
.y8_c00231{bottom:540.000060px;}
.y9_c00231{bottom:540.457590px;}
.ya_c00231{bottom:541.377870px;}
.yb_c00231{bottom:542.582190px;}
.yc_c00231{bottom:543.066240px;}
.yd_c00231{bottom:544.388250px;}
.ye_c00231{bottom:544.641360px;}
.yf_c00231{bottom:544.934220px;}
.y2_c00231{bottom:557.286000px;}
.y3_c00231{bottom:558.517380px;}
.y4_c00231{bottom:559.230480px;}
.y5_c00231{bottom:560.476230px;}
.y6_c00231{bottom:560.834610px;}
.y7_c00231{bottom:562.832520px;}
.y1_c00231{bottom:578.341500px;}
.hd_c00231{height:54.600000px;}
.h5_c00231{height:57.761549px;}
.h4_c00231{height:58.811759px;}
.he_c00231{height:59.850000px;}
.h6_c00231{height:59.861969px;}
.h11_c00231{height:60.900000px;}
.h3_c00231{height:60.912179px;}
.h7_c00231{height:61.962389px;}
.h12_c00231{height:63.000000px;}
.hf_c00231{height:64.050000px;}
.h8_c00231{height:64.062809px;}
.h2_c00231{height:65.100000px;}
.hc_c00231{height:65.113019px;}
.h10_c00231{height:66.150000px;}
.ha_c00231{height:67.213439px;}
.h13_c00231{height:68.250000px;}
.hb_c00231{height:68.263649px;}
.h9_c00231{height:69.313859px;}
.h0_c00231{height:616.140000px;}
.h1_c00231{height:616.500000px;}
.w0_c00231{width:378.540000px;}
.w1_c00231{width:378.750000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:44.556000px;}
.x14_c00231{left:45.832860px;}
.x34_c00231{left:46.854090px;}
.x6c_c00231{left:47.929500px;}
.x57_c00231{left:61.290000px;}
.xf_c00231{left:62.920320px;}
.x8_c00231{left:69.056730px;}
.x38_c00231{left:71.203530px;}
.x20_c00231{left:72.492690px;}
.x23_c00231{left:77.667420px;}
.x5f_c00231{left:81.810000px;}
.x44_c00231{left:83.734020px;}
.x29_c00231{left:86.041440px;}
.x1a_c00231{left:87.895860px;}
.x63_c00231{left:89.548500px;}
.x2d_c00231{left:92.267760px;}
.x48_c00231{left:98.432760px;}
.x68_c00231{left:100.980000px;}
.x5b_c00231{left:102.060000px;}
.x67_c00231{left:103.410000px;}
.x6a_c00231{left:104.760000px;}
.x3_c00231{left:106.125000px;}
.x35_c00231{left:107.950140px;}
.x71_c00231{left:109.270500px;}
.x15_c00231{left:113.565990px;}
.x2e_c00231{left:114.682410px;}
.x9_c00231{left:117.471690px;}
.x21_c00231{left:119.256300px;}
.x49_c00231{left:123.636270px;}
.x39_c00231{left:125.488620px;}
.x3f_c00231{left:129.228930px;}
.x64_c00231{left:131.344500px;}
.x4f_c00231{left:134.909610px;}
.x24_c00231{left:137.006730px;}
.x42_c00231{left:140.117640px;}
.x4_c00231{left:141.780000px;}
.x3a_c00231{left:144.943350px;}
.x5c_c00231{left:147.150000px;}
.x45_c00231{left:148.553520px;}
.x1b_c00231{left:150.310590px;}
.x16_c00231{left:153.028230px;}
.x4a_c00231{left:155.934780px;}
.x6d_c00231{left:157.851000px;}
.x54_c00231{left:161.325150px;}
.x2f_c00231{left:162.740130px;}
.x46_c00231{left:164.771520px;}
.x51_c00231{left:166.475700px;}
.x60_c00231{left:168.210000px;}
.x25_c00231{left:171.652560px;}
.x1_c00231{left:178.740000px;}
.xa_c00231{left:180.838950px;}
.x22_c00231{left:182.478390px;}
.x30_c00231{left:187.040520px;}
.x10_c00231{left:188.762340px;}
.x58_c00231{left:190.890000px;}
.x3b_c00231{left:192.187950px;}
.x72_c00231{left:193.227000px;}
.x4b_c00231{left:195.102990px;}
.x62_c00231{left:197.100000px;}
.x1c_c00231{left:200.764140px;}
.x5_c00231{left:204.067500px;}
.xb_c00231{left:206.316960px;}
.x40_c00231{left:209.702970px;}
.x6e_c00231{left:214.749000px;}
.x65_c00231{left:217.260000px;}
.x6_c00231{left:221.986500px;}
.x36_c00231{left:224.039370px;}
.x17_c00231{left:226.222020px;}
.x73_c00231{left:227.853000px;}
.x4c_c00231{left:229.461600px;}
.x31_c00231{left:230.519610px;}
.x6f_c00231{left:231.543000px;}
.x6b_c00231{left:235.170000px;}
.x26_c00231{left:236.731680px;}
.x43_c00231{left:237.865440px;}
.x1d_c00231{left:241.538340px;}
.x11_c00231{left:245.100480px;}
.x41_c00231{left:250.528050px;}
.x55_c00231{left:251.841810px;}
.x59_c00231{left:254.880000px;}
.x27_c00231{left:256.718970px;}
.x47_c00231{left:258.890520px;}
.x2a_c00231{left:260.491860px;}
.x52_c00231{left:263.410080px;}
.x3c_c00231{left:266.436360px;}
.x12_c00231{left:267.869430px;}
.x32_c00231{left:270.761250px;}
.x4d_c00231{left:272.395260px;}
.x5d_c00231{left:274.050000px;}
.xc_c00231{left:275.868840px;}
.x1e_c00231{left:277.186320px;}
.x18_c00231{left:281.572650px;}
.x2b_c00231{left:282.573450px;}
.x53_c00231{left:285.568020px;}
.xd_c00231{left:289.199610px;}
.x69_c00231{left:290.250000px;}
.x37_c00231{left:291.821850px;}
.x61_c00231{left:293.490000px;}
.x50_c00231{left:296.392440px;}
.x19_c00231{left:301.829580px;}
.xe_c00231{left:304.592910px;}
.x3d_c00231{left:306.337440px;}
.x1f_c00231{left:307.483050px;}
.x66_c00231{left:310.641000px;}
.x2c_c00231{left:311.742030px;}
.x56_c00231{left:313.617450px;}
.x5e_c00231{left:314.820000px;}
.x13_c00231{left:319.074450px;}
.x28_c00231{left:320.107350px;}
.x7_c00231{left:321.882000px;}
.x5a_c00231{left:322.920000px;}
.x3e_c00231{left:324.224430px;}
.x33_c00231{left:333.073980px;}
.x4e_c00231{left:334.225170px;}
.x70_c00231{left:335.226000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
.fsb_c00231{font-size:48.533333pt;}
.fs3_c00231{font-size:51.343599pt;}
.fs2_c00231{font-size:52.277119pt;}
.fsc_c00231{font-size:53.200000pt;}
.fs4_c00231{font-size:53.210639pt;}
.fsf_c00231{font-size:54.133333pt;}
.fs1_c00231{font-size:54.144159pt;}
.fs5_c00231{font-size:55.077679pt;}
.fs10_c00231{font-size:56.000000pt;}
.fsd_c00231{font-size:56.933333pt;}
.fs6_c00231{font-size:56.944719pt;}
.fs0_c00231{font-size:57.866667pt;}
.fsa_c00231{font-size:57.878239pt;}
.fse_c00231{font-size:58.800000pt;}
.fs8_c00231{font-size:59.745279pt;}
.fs11_c00231{font-size:60.666667pt;}
.fs9_c00231{font-size:60.678799pt;}
.fs7_c00231{font-size:61.612319pt;}
.y0_c00231{bottom:0.000000pt;}
.y9f_c00231{bottom:70.804000pt;}
.ya0_c00231{bottom:71.792000pt;}
.ya1_c00231{bottom:72.233333pt;}
.ya2_c00231{bottom:73.136000pt;}
.ya3_c00231{bottom:73.690667pt;}
.y97_c00231{bottom:86.881333pt;}
.y98_c00231{bottom:87.457333pt;}
.y99_c00231{bottom:87.640000pt;}
.y9a_c00231{bottom:87.957333pt;}
.y9b_c00231{bottom:88.513333pt;}
.y9c_c00231{bottom:88.677333pt;}
.y9d_c00231{bottom:88.941333pt;}
.y9e_c00231{bottom:89.690667pt;}
.y96_c00231{bottom:105.684000pt;}
.y95_c00231{bottom:120.884000pt;}
.y94_c00231{bottom:135.897333pt;}
.y8d_c00231{bottom:148.321333pt;}
.y8e_c00231{bottom:148.770667pt;}
.y8f_c00231{bottom:149.216000pt;}
.y90_c00231{bottom:149.398667pt;}
.y91_c00231{bottom:149.897333pt;}
.y92_c00231{bottom:150.133333pt;}
.y93_c00231{bottom:151.129333pt;}
.y8c_c00231{bottom:166.300000pt;}
.y8b_c00231{bottom:181.278667pt;}
.y8a_c00231{bottom:196.082667pt;}
.y89_c00231{bottom:211.744000pt;}
.y83_c00231{bottom:225.070453pt;}
.y84_c00231{bottom:225.847093pt;}
.y85_c00231{bottom:226.392853pt;}
.y86_c00231{bottom:226.624587pt;}
.y87_c00231{bottom:227.439147pt;}
.y88_c00231{bottom:228.153227pt;}
.y7a_c00231{bottom:239.712960pt;}
.y7b_c00231{bottom:239.905013pt;}
.y7c_c00231{bottom:240.356613pt;}
.y7d_c00231{bottom:240.488293pt;}
.y7e_c00231{bottom:240.776800pt;}
.y7f_c00231{bottom:241.338693pt;}
.y80_c00231{bottom:241.638400pt;}
.y81_c00231{bottom:241.834907pt;}
.y82_c00231{bottom:242.271093pt;}
.y75_c00231{bottom:254.356480pt;}
.y76_c00231{bottom:255.292320pt;}
.y77_c00231{bottom:255.525147pt;}
.y78_c00231{bottom:256.245147pt;}
.y79_c00231{bottom:257.014667pt;}
.y6d_c00231{bottom:268.999013pt;}
.y6e_c00231{bottom:269.493467pt;}
.y6f_c00231{bottom:270.353307pt;}
.y70_c00231{bottom:270.629600pt;}
.y71_c00231{bottom:270.840213pt;}
.y72_c00231{bottom:271.268293pt;}
.y73_c00231{bottom:271.802133pt;}
.y74_c00231{bottom:272.571867pt;}
.y65_c00231{bottom:283.640987pt;}
.y66_c00231{bottom:284.092053pt;}
.y67_c00231{bottom:284.382400pt;}
.y68_c00231{bottom:284.741093pt;}
.y69_c00231{bottom:285.661360pt;}
.y6a_c00231{bottom:286.168293pt;}
.y6b_c00231{bottom:287.013947pt;}
.y6c_c00231{bottom:287.545173pt;}
.y5e_c00231{bottom:298.526827pt;}
.y5f_c00231{bottom:299.204453pt;}
.y60_c00231{bottom:300.356800pt;}
.y61_c00231{bottom:300.645120pt;}
.y62_c00231{bottom:302.083013pt;}
.y63_c00231{bottom:302.318347pt;}
.y64_c00231{bottom:302.631920pt;}
.y59_c00231{bottom:314.608693pt;}
.y5a_c00231{bottom:315.941120pt;}
.y5b_c00231{bottom:316.610000pt;}
.y5c_c00231{bottom:317.332053pt;}
.y5d_c00231{bottom:318.556907pt;}
.y51_c00231{bottom:329.730800pt;}
.y52_c00231{bottom:330.332453pt;}
.y53_c00231{bottom:330.829573pt;}
.y54_c00231{bottom:331.151413pt;}
.y55_c00231{bottom:331.902747pt;}
.y56_c00231{bottom:332.101200pt;}
.y57_c00231{bottom:332.447120pt;}
.y58_c00231{bottom:333.208907pt;}
.y48_c00231{bottom:345.092720pt;}
.y49_c00231{bottom:345.377573pt;}
.y4a_c00231{bottom:346.005173pt;}
.y4b_c00231{bottom:346.229653pt;}
.y4c_c00231{bottom:346.776107pt;}
.y4d_c00231{bottom:347.387280pt;}
.y4e_c00231{bottom:347.633227pt;}
.y4f_c00231{bottom:348.094480pt;}
.y50_c00231{bottom:348.301760pt;}
.y43_c00231{bottom:360.214800pt;}
.y44_c00231{bottom:360.920800pt;}
.y45_c00231{bottom:361.746347pt;}
.y46_c00231{bottom:362.262987pt;}
.y47_c00231{bottom:363.046507pt;}
.y3b_c00231{bottom:375.578693pt;}
.y3c_c00231{bottom:376.109520pt;}
.y3d_c00231{bottom:376.367947pt;}
.y3e_c00231{bottom:376.923520pt;}
.y3f_c00231{bottom:377.204800pt;}
.y40_c00231{bottom:377.706987pt;}
.y41_c00231{bottom:378.171627pt;}
.y42_c00231{bottom:378.891253pt;}
.y34_c00231{bottom:390.941280pt;}
.y35_c00231{bottom:391.396987pt;}
.y36_c00231{bottom:391.721600pt;}
.y37_c00231{bottom:392.762800pt;}
.y38_c00231{bottom:393.412560pt;}
.y39_c00231{bottom:393.667733pt;}
.y3a_c00231{bottom:394.004880pt;}
.y2c_c00231{bottom:406.064000pt;}
.y2d_c00231{bottom:406.432853pt;}
.y2e_c00231{bottom:407.118293pt;}
.y2f_c00231{bottom:407.262987pt;}
.y30_c00231{bottom:407.519467pt;}
.y31_c00231{bottom:408.270933pt;}
.y32_c00231{bottom:408.502213pt;}
.y33_c00231{bottom:409.234293pt;}
.y26_c00231{bottom:420.468907pt;}
.y27_c00231{bottom:420.801307pt;}
.y28_c00231{bottom:421.383227pt;}
.y29_c00231{bottom:422.169707pt;}
.y2a_c00231{bottom:422.952187pt;}
.y2b_c00231{bottom:423.869093pt;}
.y1e_c00231{bottom:436.070053pt;}
.y1f_c00231{bottom:436.353173pt;}
.y20_c00231{bottom:436.562667pt;}
.y21_c00231{bottom:437.284107pt;}
.y22_c00231{bottom:437.867600pt;}
.y23_c00231{bottom:438.339040pt;}
.y24_c00231{bottom:438.751360pt;}
.y25_c00231{bottom:439.101893pt;}
.y17_c00231{bottom:450.954267pt;}
.y18_c00231{bottom:451.796933pt;}
.y19_c00231{bottom:452.287733pt;}
.y1a_c00231{bottom:452.914960pt;}
.y1b_c00231{bottom:453.198133pt;}
.y1c_c00231{bottom:453.887360pt;}
.y1d_c00231{bottom:454.139440pt;}
.y10_c00231{bottom:465.117920pt;}
.y11_c00231{bottom:465.421040pt;}
.y12_c00231{bottom:466.328080pt;}
.y13_c00231{bottom:467.546187pt;}
.y14_c00231{bottom:468.497067pt;}
.y15_c00231{bottom:468.881840pt;}
.y16_c00231{bottom:469.746800pt;}
.y8_c00231{bottom:480.000053pt;}
.y9_c00231{bottom:480.406747pt;}
.ya_c00231{bottom:481.224773pt;}
.yb_c00231{bottom:482.295280pt;}
.yc_c00231{bottom:482.725547pt;}
.yd_c00231{bottom:483.900667pt;}
.ye_c00231{bottom:484.125653pt;}
.yf_c00231{bottom:484.385973pt;}
.y2_c00231{bottom:495.365333pt;}
.y3_c00231{bottom:496.459893pt;}
.y4_c00231{bottom:497.093760pt;}
.y5_c00231{bottom:498.201093pt;}
.y6_c00231{bottom:498.519653pt;}
.y7_c00231{bottom:500.295573pt;}
.y1_c00231{bottom:514.081333pt;}
.hd_c00231{height:48.533333pt;}
.h5_c00231{height:51.343599pt;}
.h4_c00231{height:52.277119pt;}
.he_c00231{height:53.200000pt;}
.h6_c00231{height:53.210639pt;}
.h11_c00231{height:54.133333pt;}
.h3_c00231{height:54.144159pt;}
.h7_c00231{height:55.077679pt;}
.h12_c00231{height:56.000000pt;}
.hf_c00231{height:56.933333pt;}
.h8_c00231{height:56.944719pt;}
.h2_c00231{height:57.866667pt;}
.hc_c00231{height:57.878239pt;}
.h10_c00231{height:58.800000pt;}
.ha_c00231{height:59.745279pt;}
.h13_c00231{height:60.666667pt;}
.hb_c00231{height:60.678799pt;}
.h9_c00231{height:61.612319pt;}
.h0_c00231{height:547.680000pt;}
.h1_c00231{height:548.000000pt;}
.w0_c00231{width:336.480000pt;}
.w1_c00231{width:336.666667pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:39.605333pt;}
.x14_c00231{left:40.740320pt;}
.x34_c00231{left:41.648080pt;}
.x6c_c00231{left:42.604000pt;}
.x57_c00231{left:54.480000pt;}
.xf_c00231{left:55.929173pt;}
.x8_c00231{left:61.383760pt;}
.x38_c00231{left:63.292027pt;}
.x20_c00231{left:64.437947pt;}
.x23_c00231{left:69.037707pt;}
.x5f_c00231{left:72.720000pt;}
.x44_c00231{left:74.430240pt;}
.x29_c00231{left:76.481280pt;}
.x1a_c00231{left:78.129653pt;}
.x63_c00231{left:79.598667pt;}
.x2d_c00231{left:82.015787pt;}
.x48_c00231{left:87.495787pt;}
.x68_c00231{left:89.760000pt;}
.x5b_c00231{left:90.720000pt;}
.x67_c00231{left:91.920000pt;}
.x6a_c00231{left:93.120000pt;}
.x3_c00231{left:94.333333pt;}
.x35_c00231{left:95.955680pt;}
.x71_c00231{left:97.129333pt;}
.x15_c00231{left:100.947547pt;}
.x2e_c00231{left:101.939920pt;}
.x9_c00231{left:104.419280pt;}
.x21_c00231{left:106.005600pt;}
.x49_c00231{left:109.898907pt;}
.x39_c00231{left:111.545440pt;}
.x3f_c00231{left:114.870160pt;}
.x64_c00231{left:116.750667pt;}
.x4f_c00231{left:119.919653pt;}
.x24_c00231{left:121.783760pt;}
.x42_c00231{left:124.549013pt;}
.x4_c00231{left:126.026667pt;}
.x3a_c00231{left:128.838533pt;}
.x5c_c00231{left:130.800000pt;}
.x45_c00231{left:132.047573pt;}
.x1b_c00231{left:133.609413pt;}
.x16_c00231{left:136.025093pt;}
.x4a_c00231{left:138.608693pt;}
.x6d_c00231{left:140.312000pt;}
.x54_c00231{left:143.400133pt;}
.x2f_c00231{left:144.657893pt;}
.x46_c00231{left:146.463573pt;}
.x51_c00231{left:147.978400pt;}
.x60_c00231{left:149.520000pt;}
.x25_c00231{left:152.580053pt;}
.x1_c00231{left:158.880000pt;}
.xa_c00231{left:160.745733pt;}
.x22_c00231{left:162.203013pt;}
.x30_c00231{left:166.258240pt;}
.x10_c00231{left:167.788747pt;}
.x58_c00231{left:169.680000pt;}
.x3b_c00231{left:170.833733pt;}
.x72_c00231{left:171.757333pt;}
.x4b_c00231{left:173.424880pt;}
.x62_c00231{left:175.200000pt;}
.x1c_c00231{left:178.457013pt;}
.x5_c00231{left:181.393333pt;}
.xb_c00231{left:183.392853pt;}
.x40_c00231{left:186.402640pt;}
.x6e_c00231{left:190.888000pt;}
.x65_c00231{left:193.120000pt;}
.x6_c00231{left:197.321333pt;}
.x36_c00231{left:199.146107pt;}
.x17_c00231{left:201.086240pt;}
.x73_c00231{left:202.536000pt;}
.x4c_c00231{left:203.965867pt;}
.x31_c00231{left:204.906320pt;}
.x6f_c00231{left:205.816000pt;}
.x6b_c00231{left:209.040000pt;}
.x26_c00231{left:210.428160pt;}
.x43_c00231{left:211.435947pt;}
.x1d_c00231{left:214.700747pt;}
.x11_c00231{left:217.867093pt;}
.x41_c00231{left:222.691600pt;}
.x55_c00231{left:223.859387pt;}
.x59_c00231{left:226.560000pt;}
.x27_c00231{left:228.194640pt;}
.x47_c00231{left:230.124907pt;}
.x2a_c00231{left:231.548320pt;}
.x52_c00231{left:234.142293pt;}
.x3c_c00231{left:236.832320pt;}
.x12_c00231{left:238.106160pt;}
.x32_c00231{left:240.676667pt;}
.x4d_c00231{left:242.129120pt;}
.x5d_c00231{left:243.600000pt;}
.xc_c00231{left:245.216747pt;}
.x1e_c00231{left:246.387840pt;}
.x18_c00231{left:250.286800pt;}
.x2b_c00231{left:251.176400pt;}
.x53_c00231{left:253.838240pt;}
.xd_c00231{left:257.066320pt;}
.x69_c00231{left:258.000000pt;}
.x37_c00231{left:259.397200pt;}
.x61_c00231{left:260.880000pt;}
.x50_c00231{left:263.459947pt;}
.x19_c00231{left:268.292960pt;}
.xe_c00231{left:270.749253pt;}
.x3d_c00231{left:272.299947pt;}
.x1f_c00231{left:273.318267pt;}
.x66_c00231{left:276.125333pt;}
.x2c_c00231{left:277.104027pt;}
.x56_c00231{left:278.771067pt;}
.x5e_c00231{left:279.840000pt;}
.x13_c00231{left:283.621733pt;}
.x28_c00231{left:284.539867pt;}
.x7_c00231{left:286.117333pt;}
.x5a_c00231{left:287.040000pt;}
.x3e_c00231{left:288.199493pt;}
.x33_c00231{left:296.065760pt;}
.x4e_c00231{left:297.089040pt;}
.x70_c00231{left:297.978667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00232 {
    display:none;
  }
  .loading-indicator_c00232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00232 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00232 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00232" -> "#page-container .classname_c00232")
 */
.pf_c00232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00232 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00232 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00232 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00232 {overflow:visible;}
  }
}
.c_c00232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00232 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00232:after { /* webkit #35443 */
  content: '';
}
.t_c00232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00232 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00232 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00232 { /* info for Javascript */
  display:none;
}
.l_c00232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00232:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00232 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00232.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00232{transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);}
.ma7_c00232{transform:matrix(0.042345,0.001313,-0.007746,0.249880,0,0);-ms-transform:matrix(0.042345,0.001313,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.042345,0.001313,-0.007746,0.249880,0,0);}
.m1_c00232{transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.053905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053905,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.083155,0.002245,-0.006748,0.249909,0,0);-ms-transform:matrix(0.083155,0.002245,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.083155,0.002245,-0.006748,0.249909,0,0);}
.m2_c00232{transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141295,0.000000,0.000000,0.250000,0,0);}
.m8b_c00232{transform:matrix(0.144396,0.004476,-0.007746,0.249880,0,0);-ms-transform:matrix(0.144396,0.004476,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.144396,0.004476,-0.007746,0.249880,0,0);}
.mb5_c00232{transform:matrix(0.150231,0.005715,-0.009503,0.249819,0,0);-ms-transform:matrix(0.150231,0.005715,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.150231,0.005715,-0.009503,0.249819,0,0);}
.mb2_c00232{transform:matrix(0.152909,0.005816,-0.009503,0.249819,0,0);-ms-transform:matrix(0.152909,0.005816,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.152909,0.005816,-0.009503,0.249819,0,0);}
.m93_c00232{transform:matrix(0.158164,0.004903,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158164,0.004903,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158164,0.004903,-0.007746,0.249880,0,0);}
.mae_c00232{transform:matrix(0.158206,0.006018,-0.009503,0.249819,0,0);-ms-transform:matrix(0.158206,0.006018,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.158206,0.006018,-0.009503,0.249819,0,0);}
.m4b_c00232{transform:matrix(0.158559,0.004915,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158559,0.004915,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158559,0.004915,-0.007746,0.249880,0,0);}
.mb0_c00232{transform:matrix(0.159635,0.006072,-0.009503,0.249819,0,0);-ms-transform:matrix(0.159635,0.006072,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.159635,0.006072,-0.009503,0.249819,0,0);}
.m51_c00232{transform:matrix(0.160558,0.004977,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160558,0.004977,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160558,0.004977,-0.007746,0.249880,0,0);}
.m5e_c00232{transform:matrix(0.163736,0.005076,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163736,0.005076,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163736,0.005076,-0.007746,0.249880,0,0);}
.m66_c00232{transform:matrix(0.163981,0.005083,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163981,0.005083,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163981,0.005083,-0.007746,0.249880,0,0);}
.m58_c00232{transform:matrix(0.166430,0.005159,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166430,0.005159,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166430,0.005159,-0.007746,0.249880,0,0);}
.m1d_c00232{transform:matrix(0.166650,0.004666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166650,0.004666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166650,0.004666,-0.006997,0.249902,0,0);}
.m23_c00232{transform:matrix(0.166980,0.004675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166980,0.004675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166980,0.004675,-0.006997,0.249902,0,0);}
.maf_c00232{transform:matrix(0.167014,0.006353,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167014,0.006353,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167014,0.006353,-0.009503,0.249819,0,0);}
.m61_c00232{transform:matrix(0.167205,0.005183,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167205,0.005183,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167205,0.005183,-0.007746,0.249880,0,0);}
.m96_c00232{transform:matrix(0.168209,0.005214,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168209,0.005214,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168209,0.005214,-0.007746,0.249880,0,0);}
.m74_c00232{transform:matrix(0.168309,0.005218,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168309,0.005218,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168309,0.005218,-0.007746,0.249880,0,0);}
.m59_c00232{transform:matrix(0.169943,0.005268,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169943,0.005268,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169943,0.005268,-0.007746,0.249880,0,0);}
.m6a_c00232{transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);}
.m54_c00232{transform:matrix(0.171463,0.005315,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171463,0.005315,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171463,0.005315,-0.007746,0.249880,0,0);}
.m4f_c00232{transform:matrix(0.172167,0.005337,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172167,0.005337,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172167,0.005337,-0.007746,0.249880,0,0);}
.mab_c00232{transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);}
.m73_c00232{transform:matrix(0.173792,0.005388,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173792,0.005388,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173792,0.005388,-0.007746,0.249880,0,0);}
.m8c_c00232{transform:matrix(0.174041,0.005395,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174041,0.005395,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174041,0.005395,-0.007746,0.249880,0,0);}
.m5f_c00232{transform:matrix(0.174381,0.005406,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174381,0.005406,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174381,0.005406,-0.007746,0.249880,0,0);}
.m25_c00232{transform:matrix(0.174911,0.004898,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174911,0.004898,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174911,0.004898,-0.006997,0.249902,0,0);}
.m52_c00232{transform:matrix(0.174926,0.005423,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174926,0.005423,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174926,0.005423,-0.007746,0.249880,0,0);}
.m6d_c00232{transform:matrix(0.174986,0.005425,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174986,0.005425,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174986,0.005425,-0.007746,0.249880,0,0);}
.m2d_c00232{transform:matrix(0.175436,0.004912,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175436,0.004912,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175436,0.004912,-0.006997,0.249902,0,0);}
.m49_c00232{transform:matrix(0.175935,0.005454,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175935,0.005454,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175935,0.005454,-0.007746,0.249880,0,0);}
.m6b_c00232{transform:matrix(0.175975,0.005455,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175975,0.005455,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175975,0.005455,-0.007746,0.249880,0,0);}
.m63_c00232{transform:matrix(0.176550,0.005473,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176550,0.005473,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176550,0.005473,-0.007746,0.249880,0,0);}
.m2e_c00232{transform:matrix(0.176676,0.004947,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176676,0.004947,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176676,0.004947,-0.006997,0.249902,0,0);}
.m34_c00232{transform:matrix(0.176901,0.004953,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176901,0.004953,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176901,0.004953,-0.006997,0.249902,0,0);}
.m86_c00232{transform:matrix(0.177870,0.005514,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177870,0.005514,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177870,0.005514,-0.007746,0.249880,0,0);}
.m1c_c00232{transform:matrix(0.178250,0.004991,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178250,0.004991,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178250,0.004991,-0.006997,0.249902,0,0);}
.m6e_c00232{transform:matrix(0.179599,0.005568,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179599,0.005568,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179599,0.005568,-0.007746,0.249880,0,0);}
.mb1_c00232{transform:matrix(0.179900,0.006843,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179900,0.006843,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179900,0.006843,-0.009503,0.249819,0,0);}
.m9c_c00232{transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180358,0.005591,-0.007746,0.249880,0,0);}
.m1e_c00232{transform:matrix(0.180429,0.005052,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180429,0.005052,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180429,0.005052,-0.006997,0.249902,0,0);}
.m56_c00232{transform:matrix(0.180873,0.005607,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180873,0.005607,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180873,0.005607,-0.007746,0.249880,0,0);}
.m5c_c00232{transform:matrix(0.181028,0.005612,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181028,0.005612,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181028,0.005612,-0.007746,0.249880,0,0);}
.m98_c00232{transform:matrix(0.181393,0.005623,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181393,0.005623,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181393,0.005623,-0.007746,0.249880,0,0);}
.m83_c00232{transform:matrix(0.181718,0.005633,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181718,0.005633,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181718,0.005633,-0.007746,0.249880,0,0);}
.m3a_c00232{transform:matrix(0.181934,0.005094,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181934,0.005094,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181934,0.005094,-0.006997,0.249902,0,0);}
.m26_c00232{transform:matrix(0.182039,0.005097,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182039,0.005097,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182039,0.005097,-0.006997,0.249902,0,0);}
.m4c_c00232{transform:matrix(0.182128,0.005646,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182128,0.005646,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182128,0.005646,-0.007746,0.249880,0,0);}
.m69_c00232{transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182557,0.005659,-0.007746,0.249880,0,0);}
.m4d_c00232{transform:matrix(0.183907,0.005701,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183907,0.005701,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183907,0.005701,-0.007746,0.249880,0,0);}
.m9b_c00232{transform:matrix(0.184646,0.005724,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184646,0.005724,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184646,0.005724,-0.007746,0.249880,0,0);}
.m5a_c00232{transform:matrix(0.184886,0.005731,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184886,0.005731,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184886,0.005731,-0.007746,0.249880,0,0);}
.m62_c00232{transform:matrix(0.185406,0.005748,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185406,0.005748,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185406,0.005748,-0.007746,0.249880,0,0);}
.m60_c00232{transform:matrix(0.185886,0.005762,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185886,0.005762,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185886,0.005762,-0.007746,0.249880,0,0);}
.m7b_c00232{transform:matrix(0.186176,0.005771,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186176,0.005771,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186176,0.005771,-0.007746,0.249880,0,0);}
.m64_c00232{transform:matrix(0.186550,0.005783,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186550,0.005783,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186550,0.005783,-0.007746,0.249880,0,0);}
.m8a_c00232{transform:matrix(0.186575,0.005784,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186575,0.005784,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186575,0.005784,-0.007746,0.249880,0,0);}
.ma6_c00232{transform:matrix(0.188350,0.005839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188350,0.005839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188350,0.005839,-0.007746,0.249880,0,0);}
.m6f_c00232{transform:matrix(0.189284,0.005868,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189284,0.005868,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189284,0.005868,-0.007746,0.249880,0,0);}
.mad_c00232{transform:matrix(0.190158,0.006662,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190158,0.006662,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190158,0.006662,-0.008753,0.249847,0,0);}
.m67_c00232{transform:matrix(0.190538,0.005907,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190538,0.005907,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190538,0.005907,-0.007746,0.249880,0,0);}
.ma8_c00232{transform:matrix(0.190968,0.006691,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190968,0.006691,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190968,0.006691,-0.008753,0.249847,0,0);}
.m55_c00232{transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);}
.m65_c00232{transform:matrix(0.192907,0.005980,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192907,0.005980,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192907,0.005980,-0.007746,0.249880,0,0);}
.maa_c00232{transform:matrix(0.193326,0.006773,-0.008753,0.249847,0,0);-ms-transform:matrix(0.193326,0.006773,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.193326,0.006773,-0.008753,0.249847,0,0);}
.m5d_c00232{transform:matrix(0.193982,0.006013,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193982,0.006013,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193982,0.006013,-0.007746,0.249880,0,0);}
.m53_c00232{transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);}
.ma4_c00232{transform:matrix(0.194811,0.006039,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194811,0.006039,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194811,0.006039,-0.007746,0.249880,0,0);}
.ma0_c00232{transform:matrix(0.195156,0.006050,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195156,0.006050,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195156,0.006050,-0.007746,0.249880,0,0);}
.m82_c00232{transform:matrix(0.195406,0.006058,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195406,0.006058,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195406,0.006058,-0.007746,0.249880,0,0);}
.m68_c00232{transform:matrix(0.195546,0.006062,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195546,0.006062,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195546,0.006062,-0.007746,0.249880,0,0);}
.m2f_c00232{transform:matrix(0.195753,0.005481,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195753,0.005481,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195753,0.005481,-0.006997,0.249902,0,0);}
.m70_c00232{transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);}
.ma9_c00232{transform:matrix(0.195875,0.006862,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195875,0.006862,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195875,0.006862,-0.008753,0.249847,0,0);}
.m20_c00232{transform:matrix(0.196413,0.005500,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196413,0.005500,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196413,0.005500,-0.006997,0.249902,0,0);}
.m81_c00232{transform:matrix(0.196421,0.006089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196421,0.006089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196421,0.006089,-0.007746,0.249880,0,0);}
.m17_c00232{transform:matrix(0.196848,0.005512,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196848,0.005512,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196848,0.005512,-0.006997,0.249902,0,0);}
.ma5_c00232{transform:matrix(0.197230,0.006114,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197230,0.006114,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197230,0.006114,-0.007746,0.249880,0,0);}
.m97_c00232{transform:matrix(0.197830,0.006133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197830,0.006133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197830,0.006133,-0.007746,0.249880,0,0);}
.m71_c00232{transform:matrix(0.197850,0.006133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197850,0.006133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197850,0.006133,-0.007746,0.249880,0,0);}
.m4e_c00232{transform:matrix(0.197920,0.006136,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197920,0.006136,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197920,0.006136,-0.007746,0.249880,0,0);}
.m48_c00232{transform:matrix(0.198145,0.006142,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198145,0.006142,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198145,0.006142,-0.007746,0.249880,0,0);}
.mac_c00232{transform:matrix(0.198183,0.006943,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198183,0.006943,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198183,0.006943,-0.008753,0.249847,0,0);}
.m92_c00232{transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198215,0.006145,-0.007746,0.249880,0,0);}
.mb3_c00232{transform:matrix(0.199830,0.007601,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199830,0.007601,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199830,0.007601,-0.009503,0.249819,0,0);}
.m80_c00232{transform:matrix(0.200414,0.006213,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200414,0.006213,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200414,0.006213,-0.007746,0.249880,0,0);}
.m9a_c00232{transform:matrix(0.200874,0.006227,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200874,0.006227,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200874,0.006227,-0.007746,0.249880,0,0);}
.m27_c00232{transform:matrix(0.201161,0.005633,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201161,0.005633,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201161,0.005633,-0.006997,0.249902,0,0);}
.m3d_c00232{transform:matrix(0.201532,0.005441,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201532,0.005441,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201532,0.005441,-0.006748,0.249909,0,0);}
.m38_c00232{transform:matrix(0.202216,0.005662,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202216,0.005662,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202216,0.005662,-0.006997,0.249902,0,0);}
.m39_c00232{transform:matrix(0.202261,0.005663,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202261,0.005663,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202261,0.005663,-0.006997,0.249902,0,0);}
.m2a_c00232{transform:matrix(0.202960,0.005683,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202960,0.005683,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202960,0.005683,-0.006997,0.249902,0,0);}
.m1f_c00232{transform:matrix(0.203140,0.005688,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203140,0.005688,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203140,0.005688,-0.006997,0.249902,0,0);}
.m50_c00232{transform:matrix(0.203342,0.006304,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203342,0.006304,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203342,0.006304,-0.007746,0.249880,0,0);}
.m8e_c00232{transform:matrix(0.203562,0.006310,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203562,0.006310,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203562,0.006310,-0.007746,0.249880,0,0);}
.m7f_c00232{transform:matrix(0.203872,0.006320,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203872,0.006320,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203872,0.006320,-0.007746,0.249880,0,0);}
.m99_c00232{transform:matrix(0.204637,0.006344,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204637,0.006344,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204637,0.006344,-0.007746,0.249880,0,0);}
.m45_c00232{transform:matrix(0.205046,0.006356,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205046,0.006356,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205046,0.006356,-0.007746,0.249880,0,0);}
.ma3_c00232{transform:matrix(0.205186,0.006361,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205186,0.006361,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205186,0.006361,-0.007746,0.249880,0,0);}
.m87_c00232{transform:matrix(0.205316,0.006365,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205316,0.006365,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205316,0.006365,-0.007746,0.249880,0,0);}
.m7d_c00232{transform:matrix(0.205706,0.006377,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205706,0.006377,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205706,0.006377,-0.007746,0.249880,0,0);}
.m8d_c00232{transform:matrix(0.205941,0.006384,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205941,0.006384,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205941,0.006384,-0.007746,0.249880,0,0);}
.m6c_c00232{transform:matrix(0.206066,0.006388,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206066,0.006388,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206066,0.006388,-0.007746,0.249880,0,0);}
.m15_c00232{transform:matrix(0.206609,0.005785,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206609,0.005785,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206609,0.005785,-0.006997,0.249902,0,0);}
.m43_c00232{transform:matrix(0.206961,0.006416,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206961,0.006416,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206961,0.006416,-0.007746,0.249880,0,0);}
.m89_c00232{transform:matrix(0.206991,0.006417,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206991,0.006417,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206991,0.006417,-0.007746,0.249880,0,0);}
.m10_c00232{transform:matrix(0.207194,0.005801,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207194,0.005801,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207194,0.005801,-0.006997,0.249902,0,0);}
.mb4_c00232{transform:matrix(0.207660,0.007899,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207660,0.007899,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207660,0.007899,-0.009503,0.249819,0,0);}
.m32_c00232{transform:matrix(0.207953,0.005823,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207953,0.005823,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207953,0.005823,-0.006997,0.249902,0,0);}
.m7e_c00232{transform:matrix(0.208185,0.006454,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208185,0.006454,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208185,0.006454,-0.007746,0.249880,0,0);}
.m7c_c00232{transform:matrix(0.208445,0.006462,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208445,0.006462,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208445,0.006462,-0.007746,0.249880,0,0);}
.m72_c00232{transform:matrix(0.208470,0.006463,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208470,0.006463,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208470,0.006463,-0.007746,0.249880,0,0);}
.m5b_c00232{transform:matrix(0.208480,0.006463,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208480,0.006463,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208480,0.006463,-0.007746,0.249880,0,0);}
.m11_c00232{transform:matrix(0.208653,0.005842,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208653,0.005842,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208653,0.005842,-0.006997,0.249902,0,0);}
.m19_c00232{transform:matrix(0.208803,0.005846,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208803,0.005846,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208803,0.005846,-0.006997,0.249902,0,0);}
.m41_c00232{transform:matrix(0.209175,0.006484,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209175,0.006484,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209175,0.006484,-0.007746,0.249880,0,0);}
.m57_c00232{transform:matrix(0.210609,0.006529,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210609,0.006529,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210609,0.006529,-0.007746,0.249880,0,0);}
.m13_c00232{transform:matrix(0.210927,0.005906,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210927,0.005906,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210927,0.005906,-0.006997,0.249902,0,0);}
.m9e_c00232{transform:matrix(0.212428,0.006585,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212428,0.006585,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212428,0.006585,-0.007746,0.249880,0,0);}
.m94_c00232{transform:matrix(0.212548,0.006589,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212548,0.006589,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212548,0.006589,-0.007746,0.249880,0,0);}
.m2b_c00232{transform:matrix(0.212747,0.005957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212747,0.005957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212747,0.005957,-0.006997,0.249902,0,0);}
.m88_c00232{transform:matrix(0.212798,0.006597,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212798,0.006597,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212798,0.006597,-0.007746,0.249880,0,0);}
.m37_c00232{transform:matrix(0.212857,0.005960,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212857,0.005960,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212857,0.005960,-0.006997,0.249902,0,0);}
.m1a_c00232{transform:matrix(0.212887,0.005961,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212887,0.005961,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212887,0.005961,-0.006997,0.249902,0,0);}
.m91_c00232{transform:matrix(0.212923,0.006601,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212923,0.006601,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212923,0.006601,-0.007746,0.249880,0,0);}
.m24_c00232{transform:matrix(0.213951,0.005991,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213951,0.005991,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213951,0.005991,-0.006997,0.249902,0,0);}
.m46_c00232{transform:matrix(0.214182,0.006640,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214182,0.006640,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214182,0.006640,-0.007746,0.249880,0,0);}
.m30_c00232{transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);}
.m4a_c00232{transform:matrix(0.214627,0.006653,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214627,0.006653,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214627,0.006653,-0.007746,0.249880,0,0);}
.ma2_c00232{transform:matrix(0.215192,0.006671,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215192,0.006671,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215192,0.006671,-0.007746,0.249880,0,0);}
.m3b_c00232{transform:matrix(0.215591,0.006037,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215591,0.006037,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215591,0.006037,-0.006997,0.249902,0,0);}
.m95_c00232{transform:matrix(0.216096,0.006699,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216096,0.006699,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216096,0.006699,-0.007746,0.249880,0,0);}
.ma1_c00232{transform:matrix(0.216361,0.006707,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216361,0.006707,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216361,0.006707,-0.007746,0.249880,0,0);}
.m9f_c00232{transform:matrix(0.216956,0.006726,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216956,0.006726,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216956,0.006726,-0.007746,0.249880,0,0);}
.m6_c00232{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.m90_c00232{transform:matrix(0.217506,0.006743,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217506,0.006743,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217506,0.006743,-0.007746,0.249880,0,0);}
.m85_c00232{transform:matrix(0.217625,0.006746,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217625,0.006746,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217625,0.006746,-0.007746,0.249880,0,0);}
.m28_c00232{transform:matrix(0.218909,0.006129,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218909,0.006129,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218909,0.006129,-0.006997,0.249902,0,0);}
.m18_c00232{transform:matrix(0.220284,0.006168,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220284,0.006168,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220284,0.006168,-0.006997,0.249902,0,0);}
.mb_c00232{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.223932,0.006270,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223932,0.006270,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223932,0.006270,-0.006997,0.249902,0,0);}
.m8f_c00232{transform:matrix(0.223962,0.006943,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223962,0.006943,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223962,0.006943,-0.007746,0.249880,0,0);}
.m7a_c00232{transform:matrix(0.225941,0.007004,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225941,0.007004,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225941,0.007004,-0.007746,0.249880,0,0);}
.m9d_c00232{transform:matrix(0.226086,0.007009,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226086,0.007009,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226086,0.007009,-0.007746,0.249880,0,0);}
.m29_c00232{transform:matrix(0.227161,0.006361,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227161,0.006361,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227161,0.006361,-0.006997,0.249902,0,0);}
.m31_c00232{transform:matrix(0.227836,0.006379,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227836,0.006379,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227836,0.006379,-0.006997,0.249902,0,0);}
.m33_c00232{transform:matrix(0.228620,0.006401,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228620,0.006401,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228620,0.006401,-0.006997,0.249902,0,0);}
.m3e_c00232{transform:matrix(0.228842,0.006179,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228842,0.006179,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228842,0.006179,-0.006748,0.249909,0,0);}
.m78_c00232{transform:matrix(0.229120,0.007103,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229120,0.007103,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229120,0.007103,-0.007746,0.249880,0,0);}
.m77_c00232{transform:matrix(0.230094,0.007133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230094,0.007133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230094,0.007133,-0.007746,0.249880,0,0);}
.m84_c00232{transform:matrix(0.230594,0.007148,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230594,0.007148,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230594,0.007148,-0.007746,0.249880,0,0);}
.m42_c00232{transform:matrix(0.231034,0.007162,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231034,0.007162,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231034,0.007162,-0.007746,0.249880,0,0);}
.m12_c00232{transform:matrix(0.232724,0.006516,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232724,0.006516,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232724,0.006516,-0.006997,0.249902,0,0);}
.m79_c00232{transform:matrix(0.233628,0.007242,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233628,0.007242,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233628,0.007242,-0.007746,0.249880,0,0);}
.mc_c00232{transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.237306,0.007356,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237306,0.007356,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237306,0.007356,-0.007746,0.249880,0,0);}
.m21_c00232{transform:matrix(0.237657,0.006654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237657,0.006654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237657,0.006654,-0.006997,0.249902,0,0);}
.m35_c00232{transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);}
.m47_c00232{transform:matrix(0.238490,0.007393,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238490,0.007393,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238490,0.007393,-0.007746,0.249880,0,0);}
.m36_c00232{transform:matrix(0.244289,0.006840,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244289,0.006840,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244289,0.006840,-0.006997,0.249902,0,0);}
.m44_c00232{transform:matrix(0.248486,0.007703,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248486,0.007703,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248486,0.007703,-0.007746,0.249880,0,0);}
.m76_c00232{transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248770,0.007712,-0.007746,0.249880,0,0);}
.m75_c00232{transform:matrix(0.249900,0.007747,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249900,0.007747,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249900,0.007747,-0.007746,0.249880,0,0);}
.m2c_c00232{transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);}
.m14_c00232{transform:matrix(0.253496,0.007098,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253496,0.007098,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253496,0.007098,-0.006997,0.249902,0,0);}
.me_c00232{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.264701,0.007412,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264701,0.007412,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264701,0.007412,-0.006997,0.249902,0,0);}
.m1b_c00232{transform:matrix(0.283594,0.007941,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283594,0.007941,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283594,0.007941,-0.006997,0.249902,0,0);}
.md_c00232{transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.301400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301400,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.314230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314230,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.347120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347120,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{transform:matrix(0.555388,0.017217,-0.007746,0.249880,0,0);-ms-transform:matrix(0.555388,0.017217,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.555388,0.017217,-0.007746,0.249880,0,0);}
.m8_c00232{transform:matrix(0.817180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817180,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(1.611960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.611960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.611960,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:0.000000px;}
.fc0_c00232{color:transparent;}
.fs0_c00232{font-size:22.050000px;}
.fsf_c00232{font-size:55.676733px;}
.fs12_c00232{font-size:58.828247px;}
.fs3_c00232{font-size:59.850000px;}
.fs8_c00232{font-size:59.871811px;}
.fs2_c00232{font-size:60.900000px;}
.fs10_c00232{font-size:60.929255px;}
.fs14_c00232{font-size:61.926021px;}
.fs4_c00232{font-size:61.974280px;}
.fs11_c00232{font-size:61.979760px;}
.fs5_c00232{font-size:63.024691px;}
.fs9_c00232{font-size:63.030264px;}
.fs13_c00232{font-size:64.080769px;}
.fs6_c00232{font-size:65.125514px;}
.fse_c00232{font-size:65.131273px;}
.fsb_c00232{font-size:66.181777px;}
.fs7_c00232{font-size:67.226337px;}
.fsd_c00232{font-size:67.232282px;}
.fsc_c00232{font-size:68.282786px;}
.fs15_c00232{font-size:69.280767px;}
.fsa_c00232{font-size:69.333291px;}
.fs1_c00232{font-size:90.300000px;}
.y0_c00232{bottom:0.000000px;}
.yb6_c00232{bottom:17.584185px;}
.yb5_c00232{bottom:18.247893px;}
.yb4_c00232{bottom:21.108267px;}
.yb3_c00232{bottom:22.076013px;}
.yb2_c00232{bottom:24.719502px;}
.yb1_c00232{bottom:25.749834px;}
.yb0_c00232{bottom:26.790540px;}
.yaf_c00232{bottom:28.374000px;}
.yae_c00232{bottom:37.310378px;}
.yad_c00232{bottom:39.559110px;}
.yac_c00232{bottom:40.528890px;}
.yab_c00232{bottom:42.104572px;}
.yaa_c00232{bottom:44.394045px;}
.ya9_c00232{bottom:45.105000px;}
.ya8_c00232{bottom:52.455276px;}
.ya7_c00232{bottom:59.644990px;}
.ya6_c00232{bottom:60.538941px;}
.ya5_c00232{bottom:61.430520px;}
.ya4_c00232{bottom:63.912766px;}
.ya3_c00232{bottom:71.997469px;}
.ya2_c00232{bottom:74.981001px;}
.ya1_c00232{bottom:75.703773px;}
.ya0_c00232{bottom:77.820868px;}
.y9f_c00232{bottom:78.602173px;}
.y9e_c00232{bottom:80.376826px;}
.y9d_c00232{bottom:84.895072px;}
.y9c_c00232{bottom:87.625974px;}
.y9b_c00232{bottom:90.406099px;}
.y9a_c00232{bottom:91.782571px;}
.y99_c00232{bottom:92.829705px;}
.y98_c00232{bottom:94.286640px;}
.y97_c00232{bottom:95.175324px;}
.y96_c00232{bottom:95.767536px;}
.y95_c00232{bottom:97.674544px;}
.y94_c00232{bottom:104.723245px;}
.y93_c00232{bottom:106.777674px;}
.y92_c00232{bottom:107.370996px;}
.y91_c00232{bottom:107.895020px;}
.y90_c00232{bottom:112.317726px;}
.y8f_c00232{bottom:113.030196px;}
.y8e_c00232{bottom:114.684504px;}
.y8d_c00232{bottom:121.928520px;}
.y8c_c00232{bottom:122.346152px;}
.y8b_c00232{bottom:123.482813px;}
.y8a_c00232{bottom:124.574580px;}
.y89_c00232{bottom:125.020110px;}
.y88_c00232{bottom:126.313283px;}
.y87_c00232{bottom:126.749571px;}
.y86_c00232{bottom:127.958385px;}
.y85_c00232{bottom:129.261962px;}
.y84_c00232{bottom:136.524762px;}
.y83_c00232{bottom:138.597442px;}
.y82_c00232{bottom:139.715393px;}
.y81_c00232{bottom:140.515413px;}
.y80_c00232{bottom:142.652417px;}
.y7f_c00232{bottom:143.562459px;}
.y7e_c00232{bottom:143.948339px;}
.y7d_c00232{bottom:145.936723px;}
.y7c_c00232{bottom:146.562260px;}
.y7b_c00232{bottom:155.031343px;}
.y7a_c00232{bottom:156.990582px;}
.y79_c00232{bottom:158.717820px;}
.y78_c00232{bottom:159.953632px;}
.y77_c00232{bottom:162.638855px;}
.y76_c00232{bottom:164.659616px;}
.y75_c00232{bottom:171.047406px;}
.y74_c00232{bottom:171.979116px;}
.y73_c00232{bottom:173.799789px;}
.y72_c00232{bottom:174.790092px;}
.y71_c00232{bottom:176.863482px;}
.y70_c00232{bottom:177.812805px;}
.y6f_c00232{bottom:180.541995px;}
.y6e_c00232{bottom:182.216232px;}
.y6d_c00232{bottom:188.886135px;}
.y6c_c00232{bottom:189.371577px;}
.y6b_c00232{bottom:191.526171px;}
.y6a_c00232{bottom:192.247167px;}
.y69_c00232{bottom:193.202124px;}
.y68_c00232{bottom:195.979026px;}
.y67_c00232{bottom:197.496281px;}
.y66_c00232{bottom:198.688000px;}
.y65_c00232{bottom:206.728485px;}
.y64_c00232{bottom:207.390175px;}
.y63_c00232{bottom:209.837424px;}
.y62_c00232{bottom:211.715043px;}
.y61_c00232{bottom:213.193844px;}
.y60_c00232{bottom:214.191018px;}
.y5f_c00232{bottom:215.711565px;}
.y5e_c00232{bottom:224.501539px;}
.y5d_c00232{bottom:226.456380px;}
.y5c_c00232{bottom:227.419588px;}
.y5b_c00232{bottom:227.997820px;}
.y5a_c00232{bottom:229.848989px;}
.y59_c00232{bottom:230.598063px;}
.y58_c00232{bottom:232.187922px;}
.y57_c00232{bottom:240.797671px;}
.y56_c00232{bottom:241.211568px;}
.y55_c00232{bottom:242.790336px;}
.y54_c00232{bottom:243.411250px;}
.y53_c00232{bottom:245.504541px;}
.y52_c00232{bottom:246.124386px;}
.y51_c00232{bottom:246.922838px;}
.y50_c00232{bottom:247.438336px;}
.y4f_c00232{bottom:249.204872px;}
.y4e_c00232{bottom:258.333321px;}
.y4d_c00232{bottom:259.538204px;}
.y4c_c00232{bottom:260.256669px;}
.y4b_c00232{bottom:261.275318px;}
.y4a_c00232{bottom:261.915500px;}
.y49_c00232{bottom:263.263871px;}
.y48_c00232{bottom:265.285264px;}
.y47_c00232{bottom:266.762849px;}
.y46_c00232{bottom:275.720281px;}
.y45_c00232{bottom:276.162403px;}
.y44_c00232{bottom:277.511647px;}
.y43_c00232{bottom:279.220662px;}
.y42_c00232{bottom:279.957408px;}
.y41_c00232{bottom:281.255688px;}
.y40_c00232{bottom:281.858049px;}
.y3f_c00232{bottom:283.412963px;}
.y3e_c00232{bottom:284.100000px;}
.y3d_c00232{bottom:315.141144px;}
.y3c_c00232{bottom:318.293624px;}
.y3b_c00232{bottom:318.606000px;}
.y3a_c00232{bottom:327.455796px;}
.y39_c00232{bottom:327.968676px;}
.y38_c00232{bottom:329.303160px;}
.y37_c00232{bottom:329.842902px;}
.y36_c00232{bottom:331.253958px;}
.y35_c00232{bottom:332.716332px;}
.y34_c00232{bottom:333.255654px;}
.y33_c00232{bottom:334.231914px;}
.y32_c00232{bottom:344.019720px;}
.y31_c00232{bottom:345.237060px;}
.y30_c00232{bottom:345.588750px;}
.y2f_c00232{bottom:346.952250px;}
.y2e_c00232{bottom:347.431038px;}
.y2d_c00232{bottom:348.717756px;}
.y2c_c00232{bottom:349.897782px;}
.y2b_c00232{bottom:360.012522px;}
.y2a_c00232{bottom:361.851282px;}
.y29_c00232{bottom:362.331252px;}
.y28_c00232{bottom:363.662244px;}
.y27_c00232{bottom:365.492508px;}
.y26_c00232{bottom:365.991948px;}
.y25_c00232{bottom:366.917676px;}
.y24_c00232{bottom:375.970164px;}
.y23_c00232{bottom:377.845590px;}
.y22_c00232{bottom:378.469878px;}
.y21_c00232{bottom:379.214496px;}
.y20_c00232{bottom:381.067032px;}
.y1f_c00232{bottom:381.618702px;}
.y1e_c00232{bottom:383.397780px;}
.y1d_c00232{bottom:394.071198px;}
.y1c_c00232{bottom:394.638150px;}
.y1b_c00232{bottom:395.269224px;}
.y1a_c00232{bottom:396.008292px;}
.y19_c00232{bottom:396.919812px;}
.y18_c00232{bottom:397.433082px;}
.y17_c00232{bottom:398.945064px;}
.y16_c00232{bottom:400.140654px;}
.y15_c00232{bottom:410.234538px;}
.y14_c00232{bottom:410.717748px;}
.y13_c00232{bottom:411.950616px;}
.y12_c00232{bottom:413.569716px;}
.y11_c00232{bottom:414.204924px;}
.y10_c00232{bottom:415.324014px;}
.yf_c00232{bottom:415.921002px;}
.ye_c00232{bottom:417.700500px;}
.yd_c00232{bottom:466.167000px;}
.yc_c00232{bottom:490.902000px;}
.yb_c00232{bottom:492.124500px;}
.ya_c00232{bottom:493.185000px;}
.y9_c00232{bottom:494.490000px;}
.y8_c00232{bottom:495.099000px;}
.y7_c00232{bottom:497.080500px;}
.y6_c00232{bottom:526.468500px;}
.y5_c00232{bottom:527.763000px;}
.y4_c00232{bottom:528.775500px;}
.y3_c00232{bottom:531.097500px;}
.y2_c00232{bottom:557.131500px;}
.y1_c00232{bottom:567.540000px;}
.h2_c00232{height:22.050000px;}
.h11_c00232{height:55.676733px;}
.h14_c00232{height:58.828247px;}
.h5_c00232{height:59.850000px;}
.ha_c00232{height:59.871811px;}
.h4_c00232{height:60.900000px;}
.h12_c00232{height:60.929255px;}
.h16_c00232{height:61.926021px;}
.h6_c00232{height:61.974280px;}
.h13_c00232{height:61.979760px;}
.h7_c00232{height:63.024691px;}
.hb_c00232{height:63.030264px;}
.h15_c00232{height:64.080769px;}
.h8_c00232{height:65.125514px;}
.h10_c00232{height:65.131273px;}
.hd_c00232{height:66.181777px;}
.h9_c00232{height:67.226337px;}
.hf_c00232{height:67.232282px;}
.he_c00232{height:68.282786px;}
.h17_c00232{height:69.280767px;}
.hc_c00232{height:69.333291px;}
.h3_c00232{height:90.300000px;}
.h0_c00232{height:616.140000px;}
.h1_c00232{height:616.500000px;}
.w0_c00232{width:378.540000px;}
.w1_c00232{width:378.750000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:4.320000px;}
.x2_c00232{left:7.560000px;}
.x5e_c00232{left:40.075499px;}
.x35_c00232{left:41.808000px;}
.x40_c00232{left:43.652560px;}
.xf_c00232{left:47.404500px;}
.x33_c00232{left:51.351000px;}
.x53_c00232{left:58.876938px;}
.x9_c00232{left:61.105500px;}
.x1c_c00232{left:62.821854px;}
.x36_c00232{left:63.970500px;}
.x6a_c00232{left:67.596000px;}
.x4b_c00232{left:76.843999px;}
.x6c_c00232{left:81.493830px;}
.x62_c00232{left:82.658519px;}
.x4d_c00232{left:85.998210px;}
.x3b_c00232{left:87.389565px;}
.x58_c00232{left:91.184663px;}
.x44_c00232{left:93.327495px;}
.x69_c00232{left:94.542503px;}
.x63_c00232{left:95.804799px;}
.x22_c00232{left:97.230828px;}
.x2d_c00232{left:98.576484px;}
.x41_c00232{left:100.637560px;}
.x5f_c00232{left:107.705129px;}
.x16_c00232{left:109.640514px;}
.x10_c00232{left:110.958000px;}
.x27_c00232{left:112.623588px;}
.x37_c00232{left:114.129000px;}
.x48_c00232{left:115.494264px;}
.x23_c00232{left:117.212508px;}
.x5_c00232{left:118.456500px;}
.x1d_c00232{left:126.360354px;}
.x11_c00232{left:132.279000px;}
.x38_c00232{left:133.560000px;}
.x6d_c00232{left:135.940329px;}
.xa_c00232{left:137.307000px;}
.x42_c00232{left:143.023060px;}
.x1e_c00232{left:146.062854px;}
.x64_c00232{left:147.931200px;}
.xd_c00232{left:149.310000px;}
.x3c_c00232{left:150.561612px;}
.x54_c00232{left:152.762360px;}
.x59_c00232{left:154.471974px;}
.x4e_c00232{left:155.970865px;}
.x49_c00232{left:157.724509px;}
.xb_c00232{left:160.753500px;}
.x43_c00232{left:163.018060px;}
.x28_c00232{left:168.549900px;}
.x17_c00232{left:170.127096px;}
.x65_c00232{left:171.199610px;}
.x12_c00232{left:172.246500px;}
.x45_c00232{left:174.542437px;}
.x2e_c00232{left:175.587810px;}
.x34_c00232{left:179.679000px;}
.x67_c00232{left:181.705232px;}
.x3_c00232{left:183.330000px;}
.x29_c00232{left:189.348798px;}
.x18_c00232{left:190.656318px;}
.x3d_c00232{left:192.701310px;}
.x13_c00232{left:194.932500px;}
.x4c_c00232{left:196.137039px;}
.xe_c00232{left:198.990000px;}
.x66_c00232{left:201.798357px;}
.x5a_c00232{left:204.227193px;}
.x6e_c00232{left:205.436264px;}
.x6_c00232{left:211.326000px;}
.x3e_c00232{left:212.722705px;}
.x55_c00232{left:213.803280px;}
.x5b_c00232{left:221.359844px;}
.x46_c00232{left:222.716450px;}
.x6b_c00232{left:225.891546px;}
.x19_c00232{left:227.124384px;}
.x2f_c00232{left:229.842834px;}
.x6f_c00232{left:230.877796px;}
.x4f_c00232{left:233.474661px;}
.x56_c00232{left:236.655943px;}
.x1f_c00232{left:238.818354px;}
.x24_c00232{left:243.625092px;}
.x2a_c00232{left:248.607072px;}
.x30_c00232{left:250.620510px;}
.x7_c00232{left:251.835000px;}
.x39_c00232{left:254.335500px;}
.x1a_c00232{left:256.682862px;}
.x50_c00232{left:258.881383px;}
.x20_c00232{left:261.114354px;}
.x25_c00232{left:262.804188px;}
.x2b_c00232{left:263.901714px;}
.x60_c00232{left:265.977506px;}
.x3f_c00232{left:267.015031px;}
.x57_c00232{left:268.601991px;}
.x4_c00232{left:281.610000px;}
.x47_c00232{left:283.790043px;}
.x52_c00232{left:289.359882px;}
.x68_c00232{left:294.046803px;}
.x14_c00232{left:296.788500px;}
.xc_c00232{left:298.806000px;}
.x4a_c00232{left:300.224886px;}
.x31_c00232{left:301.926366px;}
.x8_c00232{left:303.595500px;}
.x1b_c00232{left:304.616394px;}
.x70_c00232{left:306.075524px;}
.x5c_c00232{left:307.096643px;}
.x3a_c00232{left:312.121500px;}
.x15_c00232{left:314.046000px;}
.x2c_c00232{left:316.814106px;}
.x32_c00232{left:321.637458px;}
.x5d_c00232{left:323.135607px;}
.x61_c00232{left:324.693752px;}
.x21_c00232{left:328.093854px;}
.x51_c00232{left:329.456899px;}
.x26_c00232{left:336.355362px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fs0_c00232{font-size:19.600000pt;}
.fsf_c00232{font-size:49.490430pt;}
.fs12_c00232{font-size:52.291775pt;}
.fs3_c00232{font-size:53.200000pt;}
.fs8_c00232{font-size:53.219388pt;}
.fs2_c00232{font-size:54.133333pt;}
.fs10_c00232{font-size:54.159338pt;}
.fs14_c00232{font-size:55.045352pt;}
.fs4_c00232{font-size:55.088249pt;}
.fs11_c00232{font-size:55.093120pt;}
.fs5_c00232{font-size:56.021948pt;}
.fs9_c00232{font-size:56.026902pt;}
.fs13_c00232{font-size:56.960683pt;}
.fs6_c00232{font-size:57.889346pt;}
.fse_c00232{font-size:57.894465pt;}
.fsb_c00232{font-size:58.828247pt;}
.fs7_c00232{font-size:59.756744pt;}
.fsd_c00232{font-size:59.762028pt;}
.fsc_c00232{font-size:60.695810pt;}
.fs15_c00232{font-size:61.582904pt;}
.fsa_c00232{font-size:61.629592pt;}
.fs1_c00232{font-size:80.266667pt;}
.y0_c00232{bottom:0.000000pt;}
.yb6_c00232{bottom:15.630387pt;}
.yb5_c00232{bottom:16.220349pt;}
.yb4_c00232{bottom:18.762904pt;}
.yb3_c00232{bottom:19.623123pt;}
.yb2_c00232{bottom:21.972891pt;}
.yb1_c00232{bottom:22.888741pt;}
.yb0_c00232{bottom:23.813813pt;}
.yaf_c00232{bottom:25.221333pt;}
.yae_c00232{bottom:33.164780pt;}
.yad_c00232{bottom:35.163653pt;}
.yac_c00232{bottom:36.025680pt;}
.yab_c00232{bottom:37.426287pt;}
.yaa_c00232{bottom:39.461373pt;}
.ya9_c00232{bottom:40.093333pt;}
.ya8_c00232{bottom:46.626912pt;}
.ya7_c00232{bottom:53.017769pt;}
.ya6_c00232{bottom:53.812392pt;}
.ya5_c00232{bottom:54.604907pt;}
.ya4_c00232{bottom:56.811348pt;}
.ya3_c00232{bottom:63.997751pt;}
.ya2_c00232{bottom:66.649779pt;}
.ya1_c00232{bottom:67.292243pt;}
.ya0_c00232{bottom:69.174105pt;}
.y9f_c00232{bottom:69.868599pt;}
.y9e_c00232{bottom:71.446068pt;}
.y9d_c00232{bottom:75.462287pt;}
.y9c_c00232{bottom:77.889755pt;}
.y9b_c00232{bottom:80.360977pt;}
.y9a_c00232{bottom:81.584508pt;}
.y99_c00232{bottom:82.515293pt;}
.y98_c00232{bottom:83.810347pt;}
.y97_c00232{bottom:84.600288pt;}
.y96_c00232{bottom:85.126699pt;}
.y95_c00232{bottom:86.821817pt;}
.y94_c00232{bottom:93.087329pt;}
.y93_c00232{bottom:94.913488pt;}
.y92_c00232{bottom:95.440885pt;}
.y91_c00232{bottom:95.906684pt;}
.y90_c00232{bottom:99.837979pt;}
.y8f_c00232{bottom:100.471285pt;}
.y8e_c00232{bottom:101.941781pt;}
.y8d_c00232{bottom:108.380907pt;}
.y8c_c00232{bottom:108.752135pt;}
.y8b_c00232{bottom:109.762500pt;}
.y8a_c00232{bottom:110.732960pt;}
.y89_c00232{bottom:111.128987pt;}
.y88_c00232{bottom:112.278473pt;}
.y87_c00232{bottom:112.666285pt;}
.y86_c00232{bottom:113.740787pt;}
.y85_c00232{bottom:114.899521pt;}
.y84_c00232{bottom:121.355344pt;}
.y83_c00232{bottom:123.197727pt;}
.y82_c00232{bottom:124.191460pt;}
.y81_c00232{bottom:124.902589pt;}
.y80_c00232{bottom:126.802148pt;}
.y7f_c00232{bottom:127.611075pt;}
.y7e_c00232{bottom:127.954079pt;}
.y7d_c00232{bottom:129.721532pt;}
.y7c_c00232{bottom:130.277564pt;}
.y7b_c00232{bottom:137.805639pt;}
.y7a_c00232{bottom:139.547184pt;}
.y79_c00232{bottom:141.082507pt;}
.y78_c00232{bottom:142.181007pt;}
.y77_c00232{bottom:144.567871pt;}
.y76_c00232{bottom:146.364103pt;}
.y75_c00232{bottom:152.042139pt;}
.y74_c00232{bottom:152.870325pt;}
.y73_c00232{bottom:154.488701pt;}
.y72_c00232{bottom:155.368971pt;}
.y71_c00232{bottom:157.211984pt;}
.y70_c00232{bottom:158.055827pt;}
.y6f_c00232{bottom:160.481773pt;}
.y6e_c00232{bottom:161.969984pt;}
.y6d_c00232{bottom:167.898787pt;}
.y6c_c00232{bottom:168.330291pt;}
.y6b_c00232{bottom:170.245485pt;}
.y6a_c00232{bottom:170.886371pt;}
.y69_c00232{bottom:171.735221pt;}
.y68_c00232{bottom:174.203579pt;}
.y67_c00232{bottom:175.552249pt;}
.y66_c00232{bottom:176.611556pt;}
.y65_c00232{bottom:183.758653pt;}
.y64_c00232{bottom:184.346823pt;}
.y63_c00232{bottom:186.522155pt;}
.y62_c00232{bottom:188.191149pt;}
.y61_c00232{bottom:189.505639pt;}
.y60_c00232{bottom:190.392016pt;}
.y5f_c00232{bottom:191.743613pt;}
.y5e_c00232{bottom:199.556924pt;}
.y5d_c00232{bottom:201.294560pt;}
.y5c_c00232{bottom:202.150745pt;}
.y5b_c00232{bottom:202.664729pt;}
.y5a_c00232{bottom:204.310212pt;}
.y59_c00232{bottom:204.976056pt;}
.y58_c00232{bottom:206.389264pt;}
.y57_c00232{bottom:214.042375pt;}
.y56_c00232{bottom:214.410283pt;}
.y55_c00232{bottom:215.813632pt;}
.y54_c00232{bottom:216.365556pt;}
.y53_c00232{bottom:218.226259pt;}
.y52_c00232{bottom:218.777232pt;}
.y51_c00232{bottom:219.486967pt;}
.y50_c00232{bottom:219.945188pt;}
.y4f_c00232{bottom:221.515441pt;}
.y4e_c00232{bottom:229.629619pt;}
.y4d_c00232{bottom:230.700625pt;}
.y4c_c00232{bottom:231.339261pt;}
.y4b_c00232{bottom:232.244727pt;}
.y4a_c00232{bottom:232.813777pt;}
.y49_c00232{bottom:234.012329pt;}
.y48_c00232{bottom:235.809124pt;}
.y47_c00232{bottom:237.122532pt;}
.y46_c00232{bottom:245.084695pt;}
.y45_c00232{bottom:245.477692pt;}
.y44_c00232{bottom:246.677020pt;}
.y43_c00232{bottom:248.196144pt;}
.y42_c00232{bottom:248.851029pt;}
.y41_c00232{bottom:250.005056pt;}
.y40_c00232{bottom:250.540488pt;}
.y3f_c00232{bottom:251.922633pt;}
.y3e_c00232{bottom:252.533333pt;}
.y3d_c00232{bottom:280.125461pt;}
.y3c_c00232{bottom:282.927665pt;}
.y3b_c00232{bottom:283.205333pt;}
.y3a_c00232{bottom:291.071819pt;}
.y39_c00232{bottom:291.527712pt;}
.y38_c00232{bottom:292.713920pt;}
.y37_c00232{bottom:293.193691pt;}
.y36_c00232{bottom:294.447963pt;}
.y35_c00232{bottom:295.747851pt;}
.y34_c00232{bottom:296.227248pt;}
.y33_c00232{bottom:297.095035pt;}
.y32_c00232{bottom:305.795307pt;}
.y31_c00232{bottom:306.877387pt;}
.y30_c00232{bottom:307.190000pt;}
.y2f_c00232{bottom:308.402000pt;}
.y2e_c00232{bottom:308.827589pt;}
.y2d_c00232{bottom:309.971339pt;}
.y2c_c00232{bottom:311.020251pt;}
.y2b_c00232{bottom:320.011131pt;}
.y2a_c00232{bottom:321.645584pt;}
.y29_c00232{bottom:322.072224pt;}
.y28_c00232{bottom:323.255328pt;}
.y27_c00232{bottom:324.882229pt;}
.y26_c00232{bottom:325.326176pt;}
.y25_c00232{bottom:326.149045pt;}
.y24_c00232{bottom:334.195701pt;}
.y23_c00232{bottom:335.862747pt;}
.y22_c00232{bottom:336.417669pt;}
.y21_c00232{bottom:337.079552pt;}
.y20_c00232{bottom:338.726251pt;}
.y1f_c00232{bottom:339.216624pt;}
.y1e_c00232{bottom:340.798027pt;}
.y1d_c00232{bottom:350.285509pt;}
.y1c_c00232{bottom:350.789467pt;}
.y1b_c00232{bottom:351.350421pt;}
.y1a_c00232{bottom:352.007371pt;}
.y19_c00232{bottom:352.817611pt;}
.y18_c00232{bottom:353.273851pt;}
.y17_c00232{bottom:354.617835pt;}
.y16_c00232{bottom:355.680581pt;}
.y15_c00232{bottom:364.652923pt;}
.y14_c00232{bottom:365.082443pt;}
.y13_c00232{bottom:366.178325pt;}
.y12_c00232{bottom:367.617525pt;}
.y11_c00232{bottom:368.182155pt;}
.y10_c00232{bottom:369.176901pt;}
.yf_c00232{bottom:369.707557pt;}
.ye_c00232{bottom:371.289333pt;}
.yd_c00232{bottom:414.370667pt;}
.yc_c00232{bottom:436.357333pt;}
.yb_c00232{bottom:437.444000pt;}
.ya_c00232{bottom:438.386667pt;}
.y9_c00232{bottom:439.546667pt;}
.y8_c00232{bottom:440.088000pt;}
.y7_c00232{bottom:441.849333pt;}
.y6_c00232{bottom:467.972000pt;}
.y5_c00232{bottom:469.122667pt;}
.y4_c00232{bottom:470.022667pt;}
.y3_c00232{bottom:472.086667pt;}
.y2_c00232{bottom:495.228000pt;}
.y1_c00232{bottom:504.480000pt;}
.h2_c00232{height:19.600000pt;}
.h11_c00232{height:49.490430pt;}
.h14_c00232{height:52.291775pt;}
.h5_c00232{height:53.200000pt;}
.ha_c00232{height:53.219388pt;}
.h4_c00232{height:54.133333pt;}
.h12_c00232{height:54.159338pt;}
.h16_c00232{height:55.045352pt;}
.h6_c00232{height:55.088249pt;}
.h13_c00232{height:55.093120pt;}
.h7_c00232{height:56.021948pt;}
.hb_c00232{height:56.026902pt;}
.h15_c00232{height:56.960683pt;}
.h8_c00232{height:57.889346pt;}
.h10_c00232{height:57.894465pt;}
.hd_c00232{height:58.828247pt;}
.h9_c00232{height:59.756744pt;}
.hf_c00232{height:59.762028pt;}
.he_c00232{height:60.695810pt;}
.h17_c00232{height:61.582904pt;}
.hc_c00232{height:61.629592pt;}
.h3_c00232{height:80.266667pt;}
.h0_c00232{height:547.680000pt;}
.h1_c00232{height:548.000000pt;}
.w0_c00232{width:336.480000pt;}
.w1_c00232{width:336.666667pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:3.840000pt;}
.x2_c00232{left:6.720000pt;}
.x5e_c00232{left:35.622665pt;}
.x35_c00232{left:37.162667pt;}
.x40_c00232{left:38.802276pt;}
.xf_c00232{left:42.137333pt;}
.x33_c00232{left:45.645333pt;}
.x53_c00232{left:52.335056pt;}
.x9_c00232{left:54.316000pt;}
.x1c_c00232{left:55.841648pt;}
.x36_c00232{left:56.862667pt;}
.x6a_c00232{left:60.085333pt;}
.x4b_c00232{left:68.305777pt;}
.x6c_c00232{left:72.438960pt;}
.x62_c00232{left:73.474239pt;}
.x4d_c00232{left:76.442853pt;}
.x3b_c00232{left:77.679613pt;}
.x58_c00232{left:81.053033pt;}
.x44_c00232{left:82.957773pt;}
.x69_c00232{left:84.037780pt;}
.x63_c00232{left:85.159821pt;}
.x22_c00232{left:86.427403pt;}
.x2d_c00232{left:87.623541pt;}
.x41_c00232{left:89.455609pt;}
.x5f_c00232{left:95.737892pt;}
.x16_c00232{left:97.458235pt;}
.x10_c00232{left:98.629333pt;}
.x27_c00232{left:100.109856pt;}
.x37_c00232{left:101.448000pt;}
.x48_c00232{left:102.661568pt;}
.x23_c00232{left:104.188896pt;}
.x5_c00232{left:105.294667pt;}
.x1d_c00232{left:112.320315pt;}
.x11_c00232{left:117.581333pt;}
.x38_c00232{left:118.720000pt;}
.x6d_c00232{left:120.835848pt;}
.xa_c00232{left:122.050667pt;}
.x42_c00232{left:127.131609pt;}
.x1e_c00232{left:129.833648pt;}
.x64_c00232{left:131.494400pt;}
.xd_c00232{left:132.720000pt;}
.x3c_c00232{left:133.832544pt;}
.x54_c00232{left:135.788764pt;}
.x59_c00232{left:137.308421pt;}
.x4e_c00232{left:138.640769pt;}
.x49_c00232{left:140.199564pt;}
.xb_c00232{left:142.892000pt;}
.x43_c00232{left:144.904943pt;}
.x28_c00232{left:149.822133pt;}
.x17_c00232{left:151.224085pt;}
.x65_c00232{left:152.177431pt;}
.x12_c00232{left:153.108000pt;}
.x45_c00232{left:155.148833pt;}
.x2e_c00232{left:156.078053pt;}
.x34_c00232{left:159.714667pt;}
.x67_c00232{left:161.515761pt;}
.x3_c00232{left:162.960000pt;}
.x29_c00232{left:168.310043pt;}
.x18_c00232{left:169.472283pt;}
.x3d_c00232{left:171.290053pt;}
.x13_c00232{left:173.273333pt;}
.x4c_c00232{left:174.344035pt;}
.xe_c00232{left:176.880000pt;}
.x66_c00232{left:179.376317pt;}
.x5a_c00232{left:181.535283pt;}
.x6e_c00232{left:182.610012pt;}
.x6_c00232{left:187.845333pt;}
.x3e_c00232{left:189.086849pt;}
.x55_c00232{left:190.047360pt;}
.x5b_c00232{left:196.764305pt;}
.x46_c00232{left:197.970177pt;}
.x6b_c00232{left:200.792485pt;}
.x19_c00232{left:201.888341pt;}
.x2f_c00232{left:204.304741pt;}
.x6f_c00232{left:205.224708pt;}
.x4f_c00232{left:207.533032pt;}
.x56_c00232{left:210.360839pt;}
.x1f_c00232{left:212.282981pt;}
.x24_c00232{left:216.555637pt;}
.x2a_c00232{left:220.984064pt;}
.x30_c00232{left:222.773787pt;}
.x7_c00232{left:223.853333pt;}
.x39_c00232{left:226.076000pt;}
.x1a_c00232{left:228.162544pt;}
.x50_c00232{left:230.116785pt;}
.x20_c00232{left:232.101648pt;}
.x25_c00232{left:233.603723pt;}
.x2b_c00232{left:234.579301pt;}
.x60_c00232{left:236.424449pt;}
.x3f_c00232{left:237.346695pt;}
.x57_c00232{left:238.757325pt;}
.x4_c00232{left:250.320000pt;}
.x47_c00232{left:252.257816pt;}
.x52_c00232{left:257.208784pt;}
.x68_c00232{left:261.374936pt;}
.x14_c00232{left:263.812000pt;}
.xc_c00232{left:265.605333pt;}
.x4a_c00232{left:266.866565pt;}
.x31_c00232{left:268.378992pt;}
.x8_c00232{left:269.862667pt;}
.x1b_c00232{left:270.770128pt;}
.x70_c00232{left:272.067132pt;}
.x5c_c00232{left:272.974793pt;}
.x3a_c00232{left:277.441333pt;}
.x15_c00232{left:279.152000pt;}
.x2c_c00232{left:281.612539pt;}
.x32_c00232{left:285.899963pt;}
.x5d_c00232{left:287.231651pt;}
.x61_c00232{left:288.616668pt;}
.x21_c00232{left:291.638981pt;}
.x51_c00232{left:292.850577pt;}
.x26_c00232{left:298.982544pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00233 {
    display:none;
  }
  .loading-indicator_c00233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00233 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00233 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00233" -> "#page-container .classname_c00233")
 */
.pf_c00233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00233 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00233 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00233 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00233 {overflow:visible;}
  }
}
.c_c00233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00233 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00233:after { /* webkit #35443 */
  content: '';
}
.t_c00233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00233 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00233 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00233 { /* info for Javascript */
  display:none;
}
.l_c00233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00233:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00233 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00233.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_c00233{transform:matrix(0.075178,-0.002030,0.006748,0.249909,0,0);-ms-transform:matrix(0.075178,-0.002030,0.006748,0.249909,0,0);-webkit-transform:matrix(0.075178,-0.002030,0.006748,0.249909,0,0);}
.m3b_c00233{transform:matrix(0.101854,-0.003056,0.007497,0.249888,0,0);-ms-transform:matrix(0.101854,-0.003056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.101854,-0.003056,0.007497,0.249888,0,0);}
.maf_c00233{transform:matrix(0.123838,-0.002353,0.004749,0.249955,0,0);-ms-transform:matrix(0.123838,-0.002353,0.004749,0.249955,0,0);-webkit-transform:matrix(0.123838,-0.002353,0.004749,0.249955,0,0);}
.mfe_c00233{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00233{transform:matrix(0.147709,-0.004431,0.007497,0.249888,0,0);-ms-transform:matrix(0.147709,-0.004431,0.007497,0.249888,0,0);-webkit-transform:matrix(0.147709,-0.004431,0.007497,0.249888,0,0);}
.mbb_c00233{transform:matrix(0.149778,-0.002846,0.004749,0.249955,0,0);-ms-transform:matrix(0.149778,-0.002846,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149778,-0.002846,0.004749,0.249955,0,0);}
.mf_c00233{transform:matrix(0.151627,-0.004549,0.007497,0.249888,0,0);-ms-transform:matrix(0.151627,-0.004549,0.007497,0.249888,0,0);-webkit-transform:matrix(0.151627,-0.004549,0.007497,0.249888,0,0);}
.m18_c00233{transform:matrix(0.152476,-0.004574,0.007497,0.249888,0,0);-ms-transform:matrix(0.152476,-0.004574,0.007497,0.249888,0,0);-webkit-transform:matrix(0.152476,-0.004574,0.007497,0.249888,0,0);}
.mdc_c00233{transform:matrix(0.152672,-0.002901,0.004749,0.249955,0,0);-ms-transform:matrix(0.152672,-0.002901,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152672,-0.002901,0.004749,0.249955,0,0);}
.mf5_c00233{transform:matrix(0.153093,-0.003368,0.005499,0.249940,0,0);-ms-transform:matrix(0.153093,-0.003368,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153093,-0.003368,0.005499,0.249940,0,0);}
.m14_c00233{transform:matrix(0.154835,-0.004645,0.007497,0.249888,0,0);-ms-transform:matrix(0.154835,-0.004645,0.007497,0.249888,0,0);-webkit-transform:matrix(0.154835,-0.004645,0.007497,0.249888,0,0);}
.mb5_c00233{transform:matrix(0.155167,-0.002948,0.004749,0.249955,0,0);-ms-transform:matrix(0.155167,-0.002948,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155167,-0.002948,0.004749,0.249955,0,0);}
.m38_c00233{transform:matrix(0.155565,-0.004667,0.007497,0.249888,0,0);-ms-transform:matrix(0.155565,-0.004667,0.007497,0.249888,0,0);-webkit-transform:matrix(0.155565,-0.004667,0.007497,0.249888,0,0);}
.mb4_c00233{transform:matrix(0.155812,-0.002960,0.004749,0.249955,0,0);-ms-transform:matrix(0.155812,-0.002960,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155812,-0.002960,0.004749,0.249955,0,0);}
.mc0_c00233{transform:matrix(0.156617,-0.002976,0.004749,0.249955,0,0);-ms-transform:matrix(0.156617,-0.002976,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156617,-0.002976,0.004749,0.249955,0,0);}
.m2e_c00233{transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);-ms-transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);}
.m21_c00233{transform:matrix(0.156914,-0.004707,0.007497,0.249888,0,0);-ms-transform:matrix(0.156914,-0.004707,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156914,-0.004707,0.007497,0.249888,0,0);}
.m9c_c00233{transform:matrix(0.157023,-0.003612,0.005748,0.249934,0,0);-ms-transform:matrix(0.157023,-0.003612,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157023,-0.003612,0.005748,0.249934,0,0);}
.m35_c00233{transform:matrix(0.157099,-0.004713,0.007497,0.249888,0,0);-ms-transform:matrix(0.157099,-0.004713,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157099,-0.004713,0.007497,0.249888,0,0);}
.mbf_c00233{transform:matrix(0.157966,-0.003001,0.004749,0.249955,0,0);-ms-transform:matrix(0.157966,-0.003001,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157966,-0.003001,0.004749,0.249955,0,0);}
.m27_c00233{transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);-ms-transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158264,-0.004748,0.007497,0.249888,0,0);}
.m9_c00233{transform:matrix(0.159348,-0.004780,0.007497,0.249888,0,0);-ms-transform:matrix(0.159348,-0.004780,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159348,-0.004780,0.007497,0.249888,0,0);}
.m7c_c00233{transform:matrix(0.159433,-0.004783,0.007497,0.249888,0,0);-ms-transform:matrix(0.159433,-0.004783,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159433,-0.004783,0.007497,0.249888,0,0);}
.m1_c00233{transform:matrix(0.160158,-0.004805,0.007497,0.249888,0,0);-ms-transform:matrix(0.160158,-0.004805,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160158,-0.004805,0.007497,0.249888,0,0);}
.mb2_c00233{transform:matrix(0.160686,-0.003053,0.004749,0.249955,0,0);-ms-transform:matrix(0.160686,-0.003053,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160686,-0.003053,0.004749,0.249955,0,0);}
.mf7_c00233{transform:matrix(0.161036,-0.003543,0.005499,0.249940,0,0);-ms-transform:matrix(0.161036,-0.003543,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161036,-0.003543,0.005499,0.249940,0,0);}
.m15_c00233{transform:matrix(0.161058,-0.004832,0.007497,0.249888,0,0);-ms-transform:matrix(0.161058,-0.004832,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161058,-0.004832,0.007497,0.249888,0,0);}
.mcb_c00233{transform:matrix(0.161066,-0.003060,0.004749,0.249955,0,0);-ms-transform:matrix(0.161066,-0.003060,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161066,-0.003060,0.004749,0.249955,0,0);}
.m45_c00233{transform:matrix(0.161267,-0.004838,0.007497,0.249888,0,0);-ms-transform:matrix(0.161267,-0.004838,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161267,-0.004838,0.007497,0.249888,0,0);}
.m2_c00233{transform:matrix(0.161352,-0.004841,0.007497,0.249888,0,0);-ms-transform:matrix(0.161352,-0.004841,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161352,-0.004841,0.007497,0.249888,0,0);}
.m2b_c00233{transform:matrix(0.162037,-0.004861,0.007497,0.249888,0,0);-ms-transform:matrix(0.162037,-0.004861,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162037,-0.004861,0.007497,0.249888,0,0);}
.m30_c00233{transform:matrix(0.163666,-0.004910,0.007497,0.249888,0,0);-ms-transform:matrix(0.163666,-0.004910,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163666,-0.004910,0.007497,0.249888,0,0);}
.mc6_c00233{transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-ms-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163710,-0.003110,0.004749,0.249955,0,0);}
.m7_c00233{transform:matrix(0.163966,-0.004919,0.007497,0.249888,0,0);-ms-transform:matrix(0.163966,-0.004919,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163966,-0.004919,0.007497,0.249888,0,0);}
.m64_c00233{transform:matrix(0.164386,-0.004932,0.007497,0.249888,0,0);-ms-transform:matrix(0.164386,-0.004932,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164386,-0.004932,0.007497,0.249888,0,0);}
.m1e_c00233{transform:matrix(0.164416,-0.004932,0.007497,0.249888,0,0);-ms-transform:matrix(0.164416,-0.004932,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164416,-0.004932,0.007497,0.249888,0,0);}
.m77_c00233{transform:matrix(0.164736,-0.004942,0.007497,0.249888,0,0);-ms-transform:matrix(0.164736,-0.004942,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164736,-0.004942,0.007497,0.249888,0,0);}
.m1c_c00233{transform:matrix(0.165071,-0.004952,0.007497,0.249888,0,0);-ms-transform:matrix(0.165071,-0.004952,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165071,-0.004952,0.007497,0.249888,0,0);}
.m32_c00233{transform:matrix(0.166000,-0.004980,0.007497,0.249888,0,0);-ms-transform:matrix(0.166000,-0.004980,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166000,-0.004980,0.007497,0.249888,0,0);}
.m4a_c00233{transform:matrix(0.167000,-0.005010,0.007497,0.249888,0,0);-ms-transform:matrix(0.167000,-0.005010,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167000,-0.005010,0.007497,0.249888,0,0);}
.m11_c00233{transform:matrix(0.168794,-0.005064,0.007497,0.249888,0,0);-ms-transform:matrix(0.168794,-0.005064,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168794,-0.005064,0.007497,0.249888,0,0);}
.me_c00233{transform:matrix(0.168929,-0.005068,0.007497,0.249888,0,0);-ms-transform:matrix(0.168929,-0.005068,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168929,-0.005068,0.007497,0.249888,0,0);}
.m2d_c00233{transform:matrix(0.169264,-0.005078,0.007497,0.249888,0,0);-ms-transform:matrix(0.169264,-0.005078,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169264,-0.005078,0.007497,0.249888,0,0);}
.ma4_c00233{transform:matrix(0.169573,-0.004578,0.006748,0.249909,0,0);-ms-transform:matrix(0.169573,-0.004578,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169573,-0.004578,0.006748,0.249909,0,0);}
.mc9_c00233{transform:matrix(0.170349,-0.003237,0.004749,0.249955,0,0);-ms-transform:matrix(0.170349,-0.003237,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170349,-0.003237,0.004749,0.249955,0,0);}
.m12_c00233{transform:matrix(0.170358,-0.005111,0.007497,0.249888,0,0);-ms-transform:matrix(0.170358,-0.005111,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170358,-0.005111,0.007497,0.249888,0,0);}
.mc_c00233{transform:matrix(0.170618,-0.005119,0.007497,0.249888,0,0);-ms-transform:matrix(0.170618,-0.005119,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170618,-0.005119,0.007497,0.249888,0,0);}
.m2f_c00233{transform:matrix(0.170863,-0.005126,0.007497,0.249888,0,0);-ms-transform:matrix(0.170863,-0.005126,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170863,-0.005126,0.007497,0.249888,0,0);}
.m36_c00233{transform:matrix(0.171288,-0.005139,0.007497,0.249888,0,0);-ms-transform:matrix(0.171288,-0.005139,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171288,-0.005139,0.007497,0.249888,0,0);}
.mf4_c00233{transform:matrix(0.171339,-0.003769,0.005499,0.249940,0,0);-ms-transform:matrix(0.171339,-0.003769,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171339,-0.003769,0.005499,0.249940,0,0);}
.md9_c00233{transform:matrix(0.171389,-0.003256,0.004749,0.249955,0,0);-ms-transform:matrix(0.171389,-0.003256,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171389,-0.003256,0.004749,0.249955,0,0);}
.mbd_c00233{transform:matrix(0.171399,-0.003257,0.004749,0.249955,0,0);-ms-transform:matrix(0.171399,-0.003257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171399,-0.003257,0.004749,0.249955,0,0);}
.m67_c00233{transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);-ms-transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);}
.m28_c00233{transform:matrix(0.171608,-0.005148,0.007497,0.249888,0,0);-ms-transform:matrix(0.171608,-0.005148,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171608,-0.005148,0.007497,0.249888,0,0);}
.m26_c00233{transform:matrix(0.172357,-0.005171,0.007497,0.249888,0,0);-ms-transform:matrix(0.172357,-0.005171,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172357,-0.005171,0.007497,0.249888,0,0);}
.m50_c00233{transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);-ms-transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);}
.m65_c00233{transform:matrix(0.172637,-0.005179,0.007497,0.249888,0,0);-ms-transform:matrix(0.172637,-0.005179,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172637,-0.005179,0.007497,0.249888,0,0);}
.mf0_c00233{transform:matrix(0.172803,-0.003802,0.005499,0.249940,0,0);-ms-transform:matrix(0.172803,-0.003802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172803,-0.003802,0.005499,0.249940,0,0);}
.m25_c00233{transform:matrix(0.172982,-0.005189,0.007497,0.249888,0,0);-ms-transform:matrix(0.172982,-0.005189,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172982,-0.005189,0.007497,0.249888,0,0);}
.mda_c00233{transform:matrix(0.172989,-0.003287,0.004749,0.249955,0,0);-ms-transform:matrix(0.172989,-0.003287,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172989,-0.003287,0.004749,0.249955,0,0);}
.me3_c00233{transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-ms-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173129,-0.003289,0.004749,0.249955,0,0);}
.m70_c00233{transform:matrix(0.173242,-0.005197,0.007497,0.249888,0,0);-ms-transform:matrix(0.173242,-0.005197,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173242,-0.005197,0.007497,0.249888,0,0);}
.ma_c00233{transform:matrix(0.173287,-0.005199,0.007497,0.249888,0,0);-ms-transform:matrix(0.173287,-0.005199,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173287,-0.005199,0.007497,0.249888,0,0);}
.m10_c00233{transform:matrix(0.173327,-0.005200,0.007497,0.249888,0,0);-ms-transform:matrix(0.173327,-0.005200,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173327,-0.005200,0.007497,0.249888,0,0);}
.m24_c00233{transform:matrix(0.173342,-0.005200,0.007497,0.249888,0,0);-ms-transform:matrix(0.173342,-0.005200,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173342,-0.005200,0.007497,0.249888,0,0);}
.m17_c00233{transform:matrix(0.173402,-0.005202,0.007497,0.249888,0,0);-ms-transform:matrix(0.173402,-0.005202,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173402,-0.005202,0.007497,0.249888,0,0);}
.mb0_c00233{transform:matrix(0.173784,-0.003302,0.004749,0.249955,0,0);-ms-transform:matrix(0.173784,-0.003302,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173784,-0.003302,0.004749,0.249955,0,0);}
.m98_c00233{transform:matrix(0.174089,-0.004004,0.005748,0.249934,0,0);-ms-transform:matrix(0.174089,-0.004004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174089,-0.004004,0.005748,0.249934,0,0);}
.m66_c00233{transform:matrix(0.175661,-0.005270,0.007497,0.249888,0,0);-ms-transform:matrix(0.175661,-0.005270,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175661,-0.005270,0.007497,0.249888,0,0);}
.mf8_c00233{transform:matrix(0.175777,-0.003867,0.005499,0.249940,0,0);-ms-transform:matrix(0.175777,-0.003867,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175777,-0.003867,0.005499,0.249940,0,0);}
.me8_c00233{transform:matrix(0.175838,-0.003341,0.004749,0.249955,0,0);-ms-transform:matrix(0.175838,-0.003341,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175838,-0.003341,0.004749,0.249955,0,0);}
.md8_c00233{transform:matrix(0.176028,-0.003345,0.004749,0.249955,0,0);-ms-transform:matrix(0.176028,-0.003345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176028,-0.003345,0.004749,0.249955,0,0);}
.mfb_c00233{transform:matrix(0.176092,-0.003874,0.005499,0.249940,0,0);-ms-transform:matrix(0.176092,-0.003874,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176092,-0.003874,0.005499,0.249940,0,0);}
.m4_c00233{transform:matrix(0.176626,-0.005299,0.007497,0.249888,0,0);-ms-transform:matrix(0.176626,-0.005299,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176626,-0.005299,0.007497,0.249888,0,0);}
.m79_c00233{transform:matrix(0.176740,-0.005302,0.007497,0.249888,0,0);-ms-transform:matrix(0.176740,-0.005302,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176740,-0.005302,0.007497,0.249888,0,0);}
.m82_c00233{transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-ms-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);}
.m22_c00233{transform:matrix(0.177275,-0.005318,0.007497,0.249888,0,0);-ms-transform:matrix(0.177275,-0.005318,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177275,-0.005318,0.007497,0.249888,0,0);}
.m29_c00233{transform:matrix(0.177445,-0.005323,0.007497,0.249888,0,0);-ms-transform:matrix(0.177445,-0.005323,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177445,-0.005323,0.007497,0.249888,0,0);}
.m97_c00233{transform:matrix(0.178068,-0.004096,0.005748,0.249934,0,0);-ms-transform:matrix(0.178068,-0.004096,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178068,-0.004096,0.005748,0.249934,0,0);}
.m68_c00233{transform:matrix(0.178395,-0.005352,0.007497,0.249888,0,0);-ms-transform:matrix(0.178395,-0.005352,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178395,-0.005352,0.007497,0.249888,0,0);}
.m4c_c00233{transform:matrix(0.179049,-0.005371,0.007497,0.249888,0,0);-ms-transform:matrix(0.179049,-0.005371,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179049,-0.005371,0.007497,0.249888,0,0);}
.mf6_c00233{transform:matrix(0.179142,-0.003941,0.005499,0.249940,0,0);-ms-transform:matrix(0.179142,-0.003941,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179142,-0.003941,0.005499,0.249940,0,0);}
.m80_c00233{transform:matrix(0.179299,-0.005379,0.007497,0.249888,0,0);-ms-transform:matrix(0.179299,-0.005379,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179299,-0.005379,0.007497,0.249888,0,0);}
.m99_c00233{transform:matrix(0.179398,-0.004126,0.005748,0.249934,0,0);-ms-transform:matrix(0.179398,-0.004126,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179398,-0.004126,0.005748,0.249934,0,0);}
.m62_c00233{transform:matrix(0.179479,-0.005384,0.007497,0.249888,0,0);-ms-transform:matrix(0.179479,-0.005384,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179479,-0.005384,0.007497,0.249888,0,0);}
.m39_c00233{transform:matrix(0.179989,-0.005400,0.007497,0.249888,0,0);-ms-transform:matrix(0.179989,-0.005400,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179989,-0.005400,0.007497,0.249888,0,0);}
.m49_c00233{transform:matrix(0.180299,-0.005409,0.007497,0.249888,0,0);-ms-transform:matrix(0.180299,-0.005409,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180299,-0.005409,0.007497,0.249888,0,0);}
.m2a_c00233{transform:matrix(0.180429,-0.005413,0.007497,0.249888,0,0);-ms-transform:matrix(0.180429,-0.005413,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180429,-0.005413,0.007497,0.249888,0,0);}
.mc3_c00233{transform:matrix(0.180712,-0.003434,0.004749,0.249955,0,0);-ms-transform:matrix(0.180712,-0.003434,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180712,-0.003434,0.004749,0.249955,0,0);}
.m16_c00233{transform:matrix(0.180754,-0.005423,0.007497,0.249888,0,0);-ms-transform:matrix(0.180754,-0.005423,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180754,-0.005423,0.007497,0.249888,0,0);}
.m44_c00233{transform:matrix(0.180909,-0.005427,0.007497,0.249888,0,0);-ms-transform:matrix(0.180909,-0.005427,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180909,-0.005427,0.007497,0.249888,0,0);}
.mb9_c00233{transform:matrix(0.181972,-0.003457,0.004749,0.249955,0,0);-ms-transform:matrix(0.181972,-0.003457,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181972,-0.003457,0.004749,0.249955,0,0);}
.m6c_c00233{transform:matrix(0.182053,-0.005462,0.007497,0.249888,0,0);-ms-transform:matrix(0.182053,-0.005462,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182053,-0.005462,0.007497,0.249888,0,0);}
.m34_c00233{transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);-ms-transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);}
.mc7_c00233{transform:matrix(0.182397,-0.003466,0.004749,0.249955,0,0);-ms-transform:matrix(0.182397,-0.003466,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182397,-0.003466,0.004749,0.249955,0,0);}
.m33_c00233{transform:matrix(0.182683,-0.005480,0.007497,0.249888,0,0);-ms-transform:matrix(0.182683,-0.005480,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182683,-0.005480,0.007497,0.249888,0,0);}
.m9b_c00233{transform:matrix(0.182862,-0.004206,0.005748,0.249934,0,0);-ms-transform:matrix(0.182862,-0.004206,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182862,-0.004206,0.005748,0.249934,0,0);}
.meb_c00233{transform:matrix(0.182907,-0.003475,0.004749,0.249955,0,0);-ms-transform:matrix(0.182907,-0.003475,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182907,-0.003475,0.004749,0.249955,0,0);}
.mcd_c00233{transform:matrix(0.183017,-0.003477,0.004749,0.249955,0,0);-ms-transform:matrix(0.183017,-0.003477,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183017,-0.003477,0.004749,0.249955,0,0);}
.mbe_c00233{transform:matrix(0.183212,-0.003481,0.004749,0.249955,0,0);-ms-transform:matrix(0.183212,-0.003481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183212,-0.003481,0.004749,0.249955,0,0);}
.mc1_c00233{transform:matrix(0.183762,-0.003491,0.004749,0.249955,0,0);-ms-transform:matrix(0.183762,-0.003491,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183762,-0.003491,0.004749,0.249955,0,0);}
.mb1_c00233{transform:matrix(0.184052,-0.003497,0.004749,0.249955,0,0);-ms-transform:matrix(0.184052,-0.003497,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184052,-0.003497,0.004749,0.249955,0,0);}
.mf2_c00233{transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-ms-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);}
.mdf_c00233{transform:matrix(0.184107,-0.003498,0.004749,0.249955,0,0);-ms-transform:matrix(0.184107,-0.003498,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184107,-0.003498,0.004749,0.249955,0,0);}
.m56_c00233{transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);-ms-transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184532,-0.005536,0.007497,0.249888,0,0);}
.m83_c00233{transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);-ms-transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185002,-0.005550,0.007497,0.249888,0,0);}
.m90_c00233{transform:matrix(0.185347,-0.005560,0.007497,0.249888,0,0);-ms-transform:matrix(0.185347,-0.005560,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185347,-0.005560,0.007497,0.249888,0,0);}
.mea_c00233{transform:matrix(0.185542,-0.003525,0.004749,0.249955,0,0);-ms-transform:matrix(0.185542,-0.003525,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185542,-0.003525,0.004749,0.249955,0,0);}
.m37_c00233{transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);-ms-transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);}
.mb6_c00233{transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);-ms-transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);}
.m8_c00233{transform:matrix(0.186016,-0.005580,0.007497,0.249888,0,0);-ms-transform:matrix(0.186016,-0.005580,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186016,-0.005580,0.007497,0.249888,0,0);}
.md4_c00233{transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);-ms-transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186126,-0.003536,0.004749,0.249955,0,0);}
.m75_c00233{transform:matrix(0.186216,-0.005586,0.007497,0.249888,0,0);-ms-transform:matrix(0.186216,-0.005586,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186216,-0.005586,0.007497,0.249888,0,0);}
.md_c00233{transform:matrix(0.186571,-0.005597,0.007497,0.249888,0,0);-ms-transform:matrix(0.186571,-0.005597,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186571,-0.005597,0.007497,0.249888,0,0);}
.m23_c00233{transform:matrix(0.186696,-0.005601,0.007497,0.249888,0,0);-ms-transform:matrix(0.186696,-0.005601,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186696,-0.005601,0.007497,0.249888,0,0);}
.mfc_c00233{transform:matrix(0.186780,-0.004109,0.005499,0.249940,0,0);-ms-transform:matrix(0.186780,-0.004109,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186780,-0.004109,0.005499,0.249940,0,0);}
.m7a_c00233{transform:matrix(0.186926,-0.005608,0.007497,0.249888,0,0);-ms-transform:matrix(0.186926,-0.005608,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186926,-0.005608,0.007497,0.249888,0,0);}
.mef_c00233{transform:matrix(0.186955,-0.004113,0.005499,0.249940,0,0);-ms-transform:matrix(0.186955,-0.004113,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186955,-0.004113,0.005499,0.249940,0,0);}
.m7e_c00233{transform:matrix(0.187001,-0.005610,0.007497,0.249888,0,0);-ms-transform:matrix(0.187001,-0.005610,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187001,-0.005610,0.007497,0.249888,0,0);}
.m47_c00233{transform:matrix(0.187041,-0.005611,0.007497,0.249888,0,0);-ms-transform:matrix(0.187041,-0.005611,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187041,-0.005611,0.007497,0.249888,0,0);}
.m78_c00233{transform:matrix(0.187820,-0.005635,0.007497,0.249888,0,0);-ms-transform:matrix(0.187820,-0.005635,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187820,-0.005635,0.007497,0.249888,0,0);}
.m46_c00233{transform:matrix(0.187890,-0.005637,0.007497,0.249888,0,0);-ms-transform:matrix(0.187890,-0.005637,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187890,-0.005637,0.007497,0.249888,0,0);}
.ma3_c00233{transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);-ms-transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);}
.mdb_c00233{transform:matrix(0.188026,-0.003572,0.004749,0.249955,0,0);-ms-transform:matrix(0.188026,-0.003572,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188026,-0.003572,0.004749,0.249955,0,0);}
.ma5_c00233{transform:matrix(0.188236,-0.005082,0.006748,0.249909,0,0);-ms-transform:matrix(0.188236,-0.005082,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188236,-0.005082,0.006748,0.249909,0,0);}
.mca_c00233{transform:matrix(0.188481,-0.003581,0.004749,0.249955,0,0);-ms-transform:matrix(0.188481,-0.003581,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188481,-0.003581,0.004749,0.249955,0,0);}
.m61_c00233{transform:matrix(0.188630,-0.005659,0.007497,0.249888,0,0);-ms-transform:matrix(0.188630,-0.005659,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188630,-0.005659,0.007497,0.249888,0,0);}
.m19_c00233{transform:matrix(0.188820,-0.005665,0.007497,0.249888,0,0);-ms-transform:matrix(0.188820,-0.005665,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188820,-0.005665,0.007497,0.249888,0,0);}
.m58_c00233{transform:matrix(0.189430,-0.005683,0.007497,0.249888,0,0);-ms-transform:matrix(0.189430,-0.005683,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189430,-0.005683,0.007497,0.249888,0,0);}
.mad_c00233{transform:matrix(0.189641,-0.003603,0.004749,0.249955,0,0);-ms-transform:matrix(0.189641,-0.003603,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189641,-0.003603,0.004749,0.249955,0,0);}
.me0_c00233{transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);-ms-transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189866,-0.003607,0.004749,0.249955,0,0);}
.m2c_c00233{transform:matrix(0.189905,-0.005697,0.007497,0.249888,0,0);-ms-transform:matrix(0.189905,-0.005697,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189905,-0.005697,0.007497,0.249888,0,0);}
.mae_c00233{transform:matrix(0.190391,-0.003617,0.004749,0.249955,0,0);-ms-transform:matrix(0.190391,-0.003617,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190391,-0.003617,0.004749,0.249955,0,0);}
.m55_c00233{transform:matrix(0.190569,-0.005717,0.007497,0.249888,0,0);-ms-transform:matrix(0.190569,-0.005717,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190569,-0.005717,0.007497,0.249888,0,0);}
.m87_c00233{transform:matrix(0.192154,-0.005765,0.007497,0.249888,0,0);-ms-transform:matrix(0.192154,-0.005765,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192154,-0.005765,0.007497,0.249888,0,0);}
.mf3_c00233{transform:matrix(0.192308,-0.004231,0.005499,0.249940,0,0);-ms-transform:matrix(0.192308,-0.004231,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192308,-0.004231,0.005499,0.249940,0,0);}
.mdd_c00233{transform:matrix(0.192325,-0.003654,0.004749,0.249955,0,0);-ms-transform:matrix(0.192325,-0.003654,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192325,-0.003654,0.004749,0.249955,0,0);}
.m72_c00233{transform:matrix(0.192918,-0.005788,0.007497,0.249888,0,0);-ms-transform:matrix(0.192918,-0.005788,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192918,-0.005788,0.007497,0.249888,0,0);}
.mac_c00233{transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);-ms-transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);}
.m6_c00233{transform:matrix(0.193863,-0.005816,0.007497,0.249888,0,0);-ms-transform:matrix(0.193863,-0.005816,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193863,-0.005816,0.007497,0.249888,0,0);}
.m94_c00233{transform:matrix(0.193913,-0.005817,0.007497,0.249888,0,0);-ms-transform:matrix(0.193913,-0.005817,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193913,-0.005817,0.007497,0.249888,0,0);}
.m54_c00233{transform:matrix(0.194348,-0.005830,0.007497,0.249888,0,0);-ms-transform:matrix(0.194348,-0.005830,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194348,-0.005830,0.007497,0.249888,0,0);}
.mcc_c00233{transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);-ms-transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);}
.m1a_c00233{transform:matrix(0.194627,-0.005839,0.007497,0.249888,0,0);-ms-transform:matrix(0.194627,-0.005839,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194627,-0.005839,0.007497,0.249888,0,0);}
.m71_c00233{transform:matrix(0.195312,-0.005859,0.007497,0.249888,0,0);-ms-transform:matrix(0.195312,-0.005859,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195312,-0.005859,0.007497,0.249888,0,0);}
.m0_c00233{transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195955,0.000000,0.000000,0.250000,0,0);}
.m63_c00233{transform:matrix(0.196092,-0.005883,0.007497,0.249888,0,0);-ms-transform:matrix(0.196092,-0.005883,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196092,-0.005883,0.007497,0.249888,0,0);}
.med_c00233{transform:matrix(0.196460,-0.003733,0.004749,0.249955,0,0);-ms-transform:matrix(0.196460,-0.003733,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196460,-0.003733,0.004749,0.249955,0,0);}
.m84_c00233{transform:matrix(0.196627,-0.005899,0.007497,0.249888,0,0);-ms-transform:matrix(0.196627,-0.005899,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196627,-0.005899,0.007497,0.249888,0,0);}
.mc5_c00233{transform:matrix(0.196685,-0.003737,0.004749,0.249955,0,0);-ms-transform:matrix(0.196685,-0.003737,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196685,-0.003737,0.004749,0.249955,0,0);}
.maa_c00233{transform:matrix(0.196929,-0.003742,0.004749,0.249955,0,0);-ms-transform:matrix(0.196929,-0.003742,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196929,-0.003742,0.004749,0.249955,0,0);}
.m3_c00233{transform:matrix(0.197911,-0.005937,0.007497,0.249888,0,0);-ms-transform:matrix(0.197911,-0.005937,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197911,-0.005937,0.007497,0.249888,0,0);}
.m4b_c00233{transform:matrix(0.197996,-0.005940,0.007497,0.249888,0,0);-ms-transform:matrix(0.197996,-0.005940,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197996,-0.005940,0.007497,0.249888,0,0);}
.m13_c00233{transform:matrix(0.198081,-0.005942,0.007497,0.249888,0,0);-ms-transform:matrix(0.198081,-0.005942,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198081,-0.005942,0.007497,0.249888,0,0);}
.m9d_c00233{transform:matrix(0.198098,-0.004556,0.005748,0.249934,0,0);-ms-transform:matrix(0.198098,-0.004556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198098,-0.004556,0.005748,0.249934,0,0);}
.m7b_c00233{transform:matrix(0.198356,-0.005951,0.007497,0.249888,0,0);-ms-transform:matrix(0.198356,-0.005951,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198356,-0.005951,0.007497,0.249888,0,0);}
.mb_c00233{transform:matrix(0.198501,-0.005955,0.007497,0.249888,0,0);-ms-transform:matrix(0.198501,-0.005955,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198501,-0.005955,0.007497,0.249888,0,0);}
.me5_c00233{transform:matrix(0.198614,-0.003774,0.004749,0.249955,0,0);-ms-transform:matrix(0.198614,-0.003774,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198614,-0.003774,0.004749,0.249955,0,0);}
.me9_c00233{transform:matrix(0.198959,-0.003780,0.004749,0.249955,0,0);-ms-transform:matrix(0.198959,-0.003780,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198959,-0.003780,0.004749,0.249955,0,0);}
.m76_c00233{transform:matrix(0.199015,-0.005970,0.007497,0.249888,0,0);-ms-transform:matrix(0.199015,-0.005970,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199015,-0.005970,0.007497,0.249888,0,0);}
.m85_c00233{transform:matrix(0.199100,-0.005973,0.007497,0.249888,0,0);-ms-transform:matrix(0.199100,-0.005973,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199100,-0.005973,0.007497,0.249888,0,0);}
.ma2_c00233{transform:matrix(0.199152,-0.005377,0.006748,0.249909,0,0);-ms-transform:matrix(0.199152,-0.005377,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199152,-0.005377,0.006748,0.249909,0,0);}
.me4_c00233{transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);-ms-transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199294,-0.003787,0.004749,0.249955,0,0);}
.m8b_c00233{transform:matrix(0.199560,-0.005987,0.007497,0.249888,0,0);-ms-transform:matrix(0.199560,-0.005987,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199560,-0.005987,0.007497,0.249888,0,0);}
.m1f_c00233{transform:matrix(0.200440,-0.006013,0.007497,0.249888,0,0);-ms-transform:matrix(0.200440,-0.006013,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200440,-0.006013,0.007497,0.249888,0,0);}
.mc2_c00233{transform:matrix(0.200529,-0.003810,0.004749,0.249955,0,0);-ms-transform:matrix(0.200529,-0.003810,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200529,-0.003810,0.004749,0.249955,0,0);}
.md0_c00233{transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);-ms-transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);}
.m6b_c00233{transform:matrix(0.200860,-0.006026,0.007497,0.249888,0,0);-ms-transform:matrix(0.200860,-0.006026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200860,-0.006026,0.007497,0.249888,0,0);}
.m8a_c00233{transform:matrix(0.201015,-0.006030,0.007497,0.249888,0,0);-ms-transform:matrix(0.201015,-0.006030,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201015,-0.006030,0.007497,0.249888,0,0);}
.mb3_c00233{transform:matrix(0.201264,-0.003824,0.004749,0.249955,0,0);-ms-transform:matrix(0.201264,-0.003824,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201264,-0.003824,0.004749,0.249955,0,0);}
.m7f_c00233{transform:matrix(0.202169,-0.006065,0.007497,0.249888,0,0);-ms-transform:matrix(0.202169,-0.006065,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202169,-0.006065,0.007497,0.249888,0,0);}
.m86_c00233{transform:matrix(0.202249,-0.006067,0.007497,0.249888,0,0);-ms-transform:matrix(0.202249,-0.006067,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202249,-0.006067,0.007497,0.249888,0,0);}
.m5b_c00233{transform:matrix(0.202929,-0.006088,0.007497,0.249888,0,0);-ms-transform:matrix(0.202929,-0.006088,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202929,-0.006088,0.007497,0.249888,0,0);}
.mc8_c00233{transform:matrix(0.203043,-0.003858,0.004749,0.249955,0,0);-ms-transform:matrix(0.203043,-0.003858,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203043,-0.003858,0.004749,0.249955,0,0);}
.m89_c00233{transform:matrix(0.203209,-0.006096,0.007497,0.249888,0,0);-ms-transform:matrix(0.203209,-0.006096,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203209,-0.006096,0.007497,0.249888,0,0);}
.me6_c00233{transform:matrix(0.203223,-0.003861,0.004749,0.249955,0,0);-ms-transform:matrix(0.203223,-0.003861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203223,-0.003861,0.004749,0.249955,0,0);}
.mbc_c00233{transform:matrix(0.203368,-0.003864,0.004749,0.249955,0,0);-ms-transform:matrix(0.203368,-0.003864,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203368,-0.003864,0.004749,0.249955,0,0);}
.m5f_c00233{transform:matrix(0.203483,-0.006105,0.007497,0.249888,0,0);-ms-transform:matrix(0.203483,-0.006105,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203483,-0.006105,0.007497,0.249888,0,0);}
.md7_c00233{transform:matrix(0.203573,-0.003868,0.004749,0.249955,0,0);-ms-transform:matrix(0.203573,-0.003868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203573,-0.003868,0.004749,0.249955,0,0);}
.m7d_c00233{transform:matrix(0.203843,-0.006115,0.007497,0.249888,0,0);-ms-transform:matrix(0.203843,-0.006115,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203843,-0.006115,0.007497,0.249888,0,0);}
.m5_c00233{transform:matrix(0.203988,-0.006120,0.007497,0.249888,0,0);-ms-transform:matrix(0.203988,-0.006120,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203988,-0.006120,0.007497,0.249888,0,0);}
.m74_c00233{transform:matrix(0.204103,-0.006123,0.007497,0.249888,0,0);-ms-transform:matrix(0.204103,-0.006123,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204103,-0.006123,0.007497,0.249888,0,0);}
.m31_c00233{transform:matrix(0.205293,-0.006159,0.007497,0.249888,0,0);-ms-transform:matrix(0.205293,-0.006159,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205293,-0.006159,0.007497,0.249888,0,0);}
.m4d_c00233{transform:matrix(0.205408,-0.006162,0.007497,0.249888,0,0);-ms-transform:matrix(0.205408,-0.006162,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205408,-0.006162,0.007497,0.249888,0,0);}
.mee_c00233{transform:matrix(0.205515,-0.004521,0.005499,0.249940,0,0);-ms-transform:matrix(0.205515,-0.004521,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205515,-0.004521,0.005499,0.249940,0,0);}
.md1_c00233{transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);-ms-transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);}
.mba_c00233{transform:matrix(0.205613,-0.003907,0.004749,0.249955,0,0);-ms-transform:matrix(0.205613,-0.003907,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205613,-0.003907,0.004749,0.249955,0,0);}
.md6_c00233{transform:matrix(0.205728,-0.003909,0.004749,0.249955,0,0);-ms-transform:matrix(0.205728,-0.003909,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205728,-0.003909,0.004749,0.249955,0,0);}
.mfa_c00233{transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);-ms-transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);}
.m1b_c00233{transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);-ms-transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206332,-0.006190,0.007497,0.249888,0,0);}
.m6f_c00233{transform:matrix(0.206397,-0.006192,0.007497,0.249888,0,0);-ms-transform:matrix(0.206397,-0.006192,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206397,-0.006192,0.007497,0.249888,0,0);}
.mab_c00233{transform:matrix(0.206653,-0.003926,0.004749,0.249955,0,0);-ms-transform:matrix(0.206653,-0.003926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206653,-0.003926,0.004749,0.249955,0,0);}
.m57_c00233{transform:matrix(0.207817,-0.006234,0.007497,0.249888,0,0);-ms-transform:matrix(0.207817,-0.006234,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207817,-0.006234,0.007497,0.249888,0,0);}
.m9f_c00233{transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);-ms-transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);}
.m81_c00233{transform:matrix(0.208831,-0.006265,0.007497,0.249888,0,0);-ms-transform:matrix(0.208831,-0.006265,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208831,-0.006265,0.007497,0.249888,0,0);}
.md2_c00233{transform:matrix(0.209907,-0.003988,0.004749,0.249955,0,0);-ms-transform:matrix(0.209907,-0.003988,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209907,-0.003988,0.004749,0.249955,0,0);}
.m1d_c00233{transform:matrix(0.210375,-0.006311,0.007497,0.249888,0,0);-ms-transform:matrix(0.210375,-0.006311,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210375,-0.006311,0.007497,0.249888,0,0);}
.m91_c00233{transform:matrix(0.210405,-0.006312,0.007497,0.249888,0,0);-ms-transform:matrix(0.210405,-0.006312,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210405,-0.006312,0.007497,0.249888,0,0);}
.mec_c00233{transform:matrix(0.210547,-0.004000,0.004749,0.249955,0,0);-ms-transform:matrix(0.210547,-0.004000,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210547,-0.004000,0.004749,0.249955,0,0);}
.m6d_c00233{transform:matrix(0.211145,-0.006334,0.007497,0.249888,0,0);-ms-transform:matrix(0.211145,-0.006334,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211145,-0.006334,0.007497,0.249888,0,0);}
.mf1_c00233{transform:matrix(0.211294,-0.004648,0.005499,0.249940,0,0);-ms-transform:matrix(0.211294,-0.004648,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211294,-0.004648,0.005499,0.249940,0,0);}
.m8c_c00233{transform:matrix(0.212055,-0.006362,0.007497,0.249888,0,0);-ms-transform:matrix(0.212055,-0.006362,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212055,-0.006362,0.007497,0.249888,0,0);}
.m9a_c00233{transform:matrix(0.212699,-0.004892,0.005748,0.249934,0,0);-ms-transform:matrix(0.212699,-0.004892,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212699,-0.004892,0.005748,0.249934,0,0);}
.m6a_c00233{transform:matrix(0.213189,-0.006396,0.007497,0.249888,0,0);-ms-transform:matrix(0.213189,-0.006396,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213189,-0.006396,0.007497,0.249888,0,0);}
.md3_c00233{transform:matrix(0.213711,-0.004061,0.004749,0.249955,0,0);-ms-transform:matrix(0.213711,-0.004061,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213711,-0.004061,0.004749,0.249955,0,0);}
.m88_c00233{transform:matrix(0.213914,-0.006417,0.007497,0.249888,0,0);-ms-transform:matrix(0.213914,-0.006417,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213914,-0.006417,0.007497,0.249888,0,0);}
.mce_c00233{transform:matrix(0.214131,-0.004068,0.004749,0.249955,0,0);-ms-transform:matrix(0.214131,-0.004068,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214131,-0.004068,0.004749,0.249955,0,0);}
.m5e_c00233{transform:matrix(0.214299,-0.006429,0.007497,0.249888,0,0);-ms-transform:matrix(0.214299,-0.006429,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214299,-0.006429,0.007497,0.249888,0,0);}
.m93_c00233{transform:matrix(0.214404,-0.006432,0.007497,0.249888,0,0);-ms-transform:matrix(0.214404,-0.006432,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214404,-0.006432,0.007497,0.249888,0,0);}
.m20_c00233{transform:matrix(0.215028,-0.006451,0.007497,0.249888,0,0);-ms-transform:matrix(0.215028,-0.006451,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215028,-0.006451,0.007497,0.249888,0,0);}
.md5_c00233{transform:matrix(0.215116,-0.004087,0.004749,0.249955,0,0);-ms-transform:matrix(0.215116,-0.004087,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215116,-0.004087,0.004749,0.249955,0,0);}
.mc4_c00233{transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);-ms-transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);}
.ma1_c00233{transform:matrix(0.217001,-0.005859,0.006748,0.249909,0,0);-ms-transform:matrix(0.217001,-0.005859,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217001,-0.005859,0.006748,0.249909,0,0);}
.m60_c00233{transform:matrix(0.217912,-0.006537,0.007497,0.249888,0,0);-ms-transform:matrix(0.217912,-0.006537,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217912,-0.006537,0.007497,0.249888,0,0);}
.me2_c00233{transform:matrix(0.222320,-0.004224,0.004749,0.249955,0,0);-ms-transform:matrix(0.222320,-0.004224,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222320,-0.004224,0.004749,0.249955,0,0);}
.m4e_c00233{transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);-ms-transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);}
.mf9_c00233{transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);-ms-transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223776,-0.004923,0.005499,0.249940,0,0);}
.ma8_c00233{transform:matrix(0.225738,-0.006095,0.006748,0.249909,0,0);-ms-transform:matrix(0.225738,-0.006095,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225738,-0.006095,0.006748,0.249909,0,0);}
.mcf_c00233{transform:matrix(0.226449,-0.004303,0.004749,0.249955,0,0);-ms-transform:matrix(0.226449,-0.004303,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226449,-0.004303,0.004749,0.249955,0,0);}
.m69_c00233{transform:matrix(0.226908,-0.006807,0.007497,0.249888,0,0);-ms-transform:matrix(0.226908,-0.006807,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226908,-0.006807,0.007497,0.249888,0,0);}
.ma6_c00233{transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);-ms-transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);}
.ma7_c00233{transform:matrix(0.227192,-0.006134,0.006748,0.249909,0,0);-ms-transform:matrix(0.227192,-0.006134,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227192,-0.006134,0.006748,0.249909,0,0);}
.ma9_c00233{transform:matrix(0.227837,-0.006152,0.006748,0.249909,0,0);-ms-transform:matrix(0.227837,-0.006152,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227837,-0.006152,0.006748,0.249909,0,0);}
.m48_c00233{transform:matrix(0.228352,-0.006851,0.007497,0.249888,0,0);-ms-transform:matrix(0.228352,-0.006851,0.007497,0.249888,0,0);-webkit-transform:matrix(0.228352,-0.006851,0.007497,0.249888,0,0);}
.mde_c00233{transform:matrix(0.230098,-0.004372,0.004749,0.249955,0,0);-ms-transform:matrix(0.230098,-0.004372,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230098,-0.004372,0.004749,0.249955,0,0);}
.m5d_c00233{transform:matrix(0.230951,-0.006929,0.007497,0.249888,0,0);-ms-transform:matrix(0.230951,-0.006929,0.007497,0.249888,0,0);-webkit-transform:matrix(0.230951,-0.006929,0.007497,0.249888,0,0);}
.m43_c00233{transform:matrix(0.231296,-0.006939,0.007497,0.249888,0,0);-ms-transform:matrix(0.231296,-0.006939,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231296,-0.006939,0.007497,0.249888,0,0);}
.m53_c00233{transform:matrix(0.232011,-0.006960,0.007497,0.249888,0,0);-ms-transform:matrix(0.232011,-0.006960,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232011,-0.006960,0.007497,0.249888,0,0);}
.me1_c00233{transform:matrix(0.233433,-0.004435,0.004749,0.249955,0,0);-ms-transform:matrix(0.233433,-0.004435,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233433,-0.004435,0.004749,0.249955,0,0);}
.m8d_c00233{transform:matrix(0.233660,-0.007010,0.007497,0.249888,0,0);-ms-transform:matrix(0.233660,-0.007010,0.007497,0.249888,0,0);-webkit-transform:matrix(0.233660,-0.007010,0.007497,0.249888,0,0);}
.m6e_c00233{transform:matrix(0.234090,-0.007023,0.007497,0.249888,0,0);-ms-transform:matrix(0.234090,-0.007023,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234090,-0.007023,0.007497,0.249888,0,0);}
.m95_c00233{transform:matrix(0.234804,-0.007044,0.007497,0.249888,0,0);-ms-transform:matrix(0.234804,-0.007044,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234804,-0.007044,0.007497,0.249888,0,0);}
.m73_c00233{transform:matrix(0.234869,-0.007046,0.007497,0.249888,0,0);-ms-transform:matrix(0.234869,-0.007046,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234869,-0.007046,0.007497,0.249888,0,0);}
.m8e_c00233{transform:matrix(0.236304,-0.007089,0.007497,0.249888,0,0);-ms-transform:matrix(0.236304,-0.007089,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236304,-0.007089,0.007497,0.249888,0,0);}
.m59_c00233{transform:matrix(0.239997,-0.007200,0.007497,0.249888,0,0);-ms-transform:matrix(0.239997,-0.007200,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239997,-0.007200,0.007497,0.249888,0,0);}
.m3f_c00233{transform:matrix(0.242946,-0.007288,0.007497,0.249888,0,0);-ms-transform:matrix(0.242946,-0.007288,0.007497,0.249888,0,0);-webkit-transform:matrix(0.242946,-0.007288,0.007497,0.249888,0,0);}
.m3d_c00233{transform:matrix(0.248508,-0.007455,0.007497,0.249888,0,0);-ms-transform:matrix(0.248508,-0.007455,0.007497,0.249888,0,0);-webkit-transform:matrix(0.248508,-0.007455,0.007497,0.249888,0,0);}
.m96_c00233{transform:matrix(0.249898,-0.007497,0.007497,0.249888,0,0);-ms-transform:matrix(0.249898,-0.007497,0.007497,0.249888,0,0);-webkit-transform:matrix(0.249898,-0.007497,0.007497,0.249888,0,0);}
.m52_c00233{transform:matrix(0.259238,-0.007777,0.007497,0.249888,0,0);-ms-transform:matrix(0.259238,-0.007777,0.007497,0.249888,0,0);-webkit-transform:matrix(0.259238,-0.007777,0.007497,0.249888,0,0);}
.m5c_c00233{transform:matrix(0.259448,-0.007783,0.007497,0.249888,0,0);-ms-transform:matrix(0.259448,-0.007783,0.007497,0.249888,0,0);-webkit-transform:matrix(0.259448,-0.007783,0.007497,0.249888,0,0);}
.me7_c00233{transform:matrix(0.259503,-0.004931,0.004749,0.249955,0,0);-ms-transform:matrix(0.259503,-0.004931,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259503,-0.004931,0.004749,0.249955,0,0);}
.m4f_c00233{transform:matrix(0.259648,-0.007789,0.007497,0.249888,0,0);-ms-transform:matrix(0.259648,-0.007789,0.007497,0.249888,0,0);-webkit-transform:matrix(0.259648,-0.007789,0.007497,0.249888,0,0);}
.m8f_c00233{transform:matrix(0.261292,-0.007839,0.007497,0.249888,0,0);-ms-transform:matrix(0.261292,-0.007839,0.007497,0.249888,0,0);-webkit-transform:matrix(0.261292,-0.007839,0.007497,0.249888,0,0);}
.m42_c00233{transform:matrix(0.261432,-0.007843,0.007497,0.249888,0,0);-ms-transform:matrix(0.261432,-0.007843,0.007497,0.249888,0,0);-webkit-transform:matrix(0.261432,-0.007843,0.007497,0.249888,0,0);}
.mfd_c00233{transform:matrix(0.267470,-0.005884,0.005499,0.249940,0,0);-ms-transform:matrix(0.267470,-0.005884,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267470,-0.005884,0.005499,0.249940,0,0);}
.m3a_c00233{transform:matrix(0.275091,-0.008253,0.007497,0.249888,0,0);-ms-transform:matrix(0.275091,-0.008253,0.007497,0.249888,0,0);-webkit-transform:matrix(0.275091,-0.008253,0.007497,0.249888,0,0);}
.m3e_c00233{transform:matrix(0.280559,-0.008417,0.007497,0.249888,0,0);-ms-transform:matrix(0.280559,-0.008417,0.007497,0.249888,0,0);-webkit-transform:matrix(0.280559,-0.008417,0.007497,0.249888,0,0);}
.m40_c00233{transform:matrix(0.281853,-0.008456,0.007497,0.249888,0,0);-ms-transform:matrix(0.281853,-0.008456,0.007497,0.249888,0,0);-webkit-transform:matrix(0.281853,-0.008456,0.007497,0.249888,0,0);}
.m51_c00233{transform:matrix(0.283732,-0.008512,0.007497,0.249888,0,0);-ms-transform:matrix(0.283732,-0.008512,0.007497,0.249888,0,0);-webkit-transform:matrix(0.283732,-0.008512,0.007497,0.249888,0,0);}
.m41_c00233{transform:matrix(0.286101,-0.008583,0.007497,0.249888,0,0);-ms-transform:matrix(0.286101,-0.008583,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286101,-0.008583,0.007497,0.249888,0,0);}
.m92_c00233{transform:matrix(0.286441,-0.008593,0.007497,0.249888,0,0);-ms-transform:matrix(0.286441,-0.008593,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286441,-0.008593,0.007497,0.249888,0,0);}
.mb7_c00233{transform:matrix(0.287448,-0.005462,0.004749,0.249955,0,0);-ms-transform:matrix(0.287448,-0.005462,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287448,-0.005462,0.004749,0.249955,0,0);}
.m3c_c00233{transform:matrix(0.309696,-0.009291,0.007497,0.249888,0,0);-ms-transform:matrix(0.309696,-0.009291,0.007497,0.249888,0,0);-webkit-transform:matrix(0.309696,-0.009291,0.007497,0.249888,0,0);}
.m9e_c00233{transform:matrix(0.445992,-0.012042,0.006748,0.249909,0,0);-ms-transform:matrix(0.445992,-0.012042,0.006748,0.249909,0,0);-webkit-transform:matrix(0.445992,-0.012042,0.006748,0.249909,0,0);}
.mb8_c00233{transform:matrix(0.462127,-0.008780,0.004749,0.249955,0,0);-ms-transform:matrix(0.462127,-0.008780,0.004749,0.249955,0,0);-webkit-transform:matrix(0.462127,-0.008780,0.004749,0.249955,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:0.000000px;}
.fc0_c00233{color:transparent;}
.fs18_c00233{font-size:22.050000px;}
.fse_c00233{font-size:24.158801px;}
.fs6_c00233{font-size:44.119841px;}
.fsf_c00233{font-size:57.771046px;}
.fsc_c00233{font-size:57.775982px;}
.fs8_c00233{font-size:60.927399px;}
.fs10_c00233{font-size:63.011370px;}
.fs14_c00233{font-size:64.061560px;}
.fs16_c00233{font-size:64.065498px;}
.fsa_c00233{font-size:64.078816px;}
.fs15_c00233{font-size:65.111749px;}
.fsb_c00233{font-size:65.129288px;}
.fs0_c00233{font-size:66.150000px;}
.fs13_c00233{font-size:66.161939px;}
.fs7_c00233{font-size:66.179761px;}
.fs11_c00233{font-size:67.212129px;}
.fs5_c00233{font-size:67.230233px;}
.fs17_c00233{font-size:68.266515px;}
.fsd_c00233{font-size:68.268050px;}
.fs3_c00233{font-size:68.280706px;}
.fs12_c00233{font-size:69.312508px;}
.fs4_c00233{font-size:69.331178px;}
.fs9_c00233{font-size:70.381650px;}
.fs1_c00233{font-size:71.432123px;}
.fs2_c00233{font-size:73.533068px;}
.y0_c00233{bottom:0.000000px;}
.y103_c00233{bottom:19.014318px;}
.yfb_c00233{bottom:19.014438px;}
.y102_c00233{bottom:19.014477px;}
.yfd_c00233{bottom:19.014567px;}
.yfc_c00233{bottom:19.014726px;}
.y101_c00233{bottom:19.015062px;}
.yfe_c00233{bottom:19.015188px;}
.yff_c00233{bottom:19.015224px;}
.y100_c00233{bottom:19.015806px;}
.yf4_c00233{bottom:36.726000px;}
.yf5_c00233{bottom:37.361547px;}
.yf6_c00233{bottom:38.312904px;}
.yf7_c00233{bottom:38.848296px;}
.yf8_c00233{bottom:40.265646px;}
.yf9_c00233{bottom:40.997388px;}
.yfa_c00233{bottom:42.294090px;}
.yef_c00233{bottom:54.248212px;}
.yf0_c00233{bottom:55.263453px;}
.yf1_c00233{bottom:56.219064px;}
.yf2_c00233{bottom:57.098583px;}
.yf3_c00233{bottom:57.376021px;}
.ye7_c00233{bottom:72.610824px;}
.ye8_c00233{bottom:73.972651px;}
.ye9_c00233{bottom:74.204203px;}
.yea_c00233{bottom:74.520702px;}
.yeb_c00233{bottom:75.209344px;}
.yec_c00233{bottom:75.558838px;}
.yed_c00233{bottom:76.572739px;}
.yee_c00233{bottom:77.656888px;}
.yde_c00233{bottom:88.004382px;}
.ydf_c00233{bottom:89.039230px;}
.ye0_c00233{bottom:89.679586px;}
.ye1_c00233{bottom:91.266723px;}
.ye2_c00233{bottom:91.790079px;}
.ye3_c00233{bottom:92.313235px;}
.ye4_c00233{bottom:93.816198px;}
.ye5_c00233{bottom:94.524771px;}
.ye6_c00233{bottom:95.557834px;}
.yd6_c00233{bottom:107.983899px;}
.yd7_c00233{bottom:108.818622px;}
.yd8_c00233{bottom:109.013188px;}
.yd9_c00233{bottom:109.661545px;}
.yda_c00233{bottom:109.960155px;}
.ydb_c00233{bottom:110.402364px;}
.ydc_c00233{bottom:111.168190px;}
.ydd_c00233{bottom:112.031779px;}
.yce_c00233{bottom:122.571879px;}
.ycf_c00233{bottom:123.660703px;}
.yd0_c00233{bottom:124.251759px;}
.yd1_c00233{bottom:125.864872px;}
.yd2_c00233{bottom:126.227323px;}
.yd3_c00233{bottom:127.255042px;}
.yd4_c00233{bottom:127.873957px;}
.yd5_c00233{bottom:129.466924px;}
.yc4_c00233{bottom:141.470055px;}
.yc5_c00233{bottom:141.866946px;}
.yc6_c00233{bottom:142.206238px;}
.yc7_c00233{bottom:142.963968px;}
.yc8_c00233{bottom:143.227507px;}
.yc9_c00233{bottom:143.545909px;}
.yca_c00233{bottom:145.095084px;}
.ycb_c00233{bottom:145.587678px;}
.ycc_c00233{bottom:146.424096px;}
.ycd_c00233{bottom:146.875849px;}
.ybe_c00233{bottom:157.677931px;}
.ybf_c00233{bottom:158.088246px;}
.yc0_c00233{bottom:160.262674px;}
.yc1_c00233{bottom:160.706880px;}
.yc2_c00233{bottom:162.825390px;}
.yc3_c00233{bottom:163.466845px;}
.yb6_c00233{bottom:175.234885px;}
.yb7_c00233{bottom:176.141982px;}
.yb8_c00233{bottom:176.723487px;}
.yb9_c00233{bottom:178.089769px;}
.yba_c00233{bottom:178.630393px;}
.ybb_c00233{bottom:179.306739px;}
.ybc_c00233{bottom:179.826258px;}
.ybd_c00233{bottom:181.721985px;}
.y104_c00233{bottom:190.890000px;}
.yaf_c00233{bottom:194.674500px;}
.yb0_c00233{bottom:196.053045px;}
.yb1_c00233{bottom:196.706379px;}
.yb2_c00233{bottom:197.228670px;}
.yb3_c00233{bottom:197.989050px;}
.yb4_c00233{bottom:199.490316px;}
.yb5_c00233{bottom:199.923601px;}
.ya7_c00233{bottom:211.682028px;}
.ya8_c00233{bottom:212.965232px;}
.ya9_c00233{bottom:213.359085px;}
.yaa_c00233{bottom:214.174491px;}
.yab_c00233{bottom:214.663265px;}
.yac_c00233{bottom:216.368021px;}
.yad_c00233{bottom:216.866553px;}
.yae_c00233{bottom:217.890347px;}
.ya3_c00233{bottom:223.833000px;}
.ya4_c00233{bottom:227.178300px;}
.y9c_c00233{bottom:229.234500px;}
.ya5_c00233{bottom:229.642401px;}
.y9d_c00233{bottom:229.744445px;}
.ya6_c00233{bottom:229.876005px;}
.y9e_c00233{bottom:231.125825px;}
.y9f_c00233{bottom:232.182111px;}
.ya0_c00233{bottom:234.188252px;}
.ya1_c00233{bottom:234.691262px;}
.ya2_c00233{bottom:235.269068px;}
.y91_c00233{bottom:245.839230px;}
.y92_c00233{bottom:246.643125px;}
.y93_c00233{bottom:247.129230px;}
.y94_c00233{bottom:248.405040px;}
.y95_c00233{bottom:248.918640px;}
.y96_c00233{bottom:249.553485px;}
.y97_c00233{bottom:250.666320px;}
.y98_c00233{bottom:251.011095px;}
.y99_c00233{bottom:251.545710px;}
.y9a_c00233{bottom:251.992440px;}
.y9b_c00233{bottom:253.052640px;}
.y8b_c00233{bottom:262.857960px;}
.y8c_c00233{bottom:264.566310px;}
.y8d_c00233{bottom:265.161780px;}
.y8e_c00233{bottom:266.781555px;}
.y8f_c00233{bottom:267.881940px;}
.y90_c00233{bottom:269.104665px;}
.y83_c00233{bottom:280.145040px;}
.y84_c00233{bottom:280.638045px;}
.y85_c00233{bottom:281.811195px;}
.y86_c00233{bottom:282.342255px;}
.y87_c00233{bottom:283.878135px;}
.y88_c00233{bottom:284.883720px;}
.y89_c00233{bottom:285.376905px;}
.y8a_c00233{bottom:286.904835px;}
.y7b_c00233{bottom:297.162000px;}
.y7c_c00233{bottom:298.259430px;}
.y7d_c00233{bottom:298.958595px;}
.y7e_c00233{bottom:299.799720px;}
.y7f_c00233{bottom:300.674535px;}
.y80_c00233{bottom:302.571630px;}
.y81_c00233{bottom:303.098430px;}
.y82_c00233{bottom:303.510885px;}
.y73_c00233{bottom:313.368435px;}
.y74_c00233{bottom:314.155470px;}
.y75_c00233{bottom:314.907600px;}
.y76_c00233{bottom:316.883490px;}
.y77_c00233{bottom:319.464465px;}
.y78_c00233{bottom:319.857660px;}
.y79_c00233{bottom:320.632815px;}
.y7a_c00233{bottom:321.122565px;}
.y6b_c00233{bottom:330.122805px;}
.y6c_c00233{bottom:331.404705px;}
.y6d_c00233{bottom:331.860660px;}
.y6e_c00233{bottom:333.831045px;}
.y6f_c00233{bottom:334.566450px;}
.y70_c00233{bottom:335.966280px;}
.y71_c00233{bottom:336.727215px;}
.y72_c00233{bottom:337.487925px;}
.y64_c00233{bottom:349.030815px;}
.y65_c00233{bottom:349.667865px;}
.y66_c00233{bottom:350.305410px;}
.y67_c00233{bottom:352.180440px;}
.y68_c00233{bottom:352.979895px;}
.y69_c00233{bottom:354.232470px;}
.y6a_c00233{bottom:356.814135px;}
.y5d_c00233{bottom:365.236740px;}
.y5e_c00233{bottom:366.337560px;}
.y5f_c00233{bottom:366.736170px;}
.y60_c00233{bottom:368.671185px;}
.y61_c00233{bottom:369.397725px;}
.y62_c00233{bottom:370.697955px;}
.y63_c00233{bottom:371.175330px;}
.y56_c00233{bottom:383.330130px;}
.y57_c00233{bottom:384.735690px;}
.y58_c00233{bottom:385.614045px;}
.y59_c00233{bottom:387.258255px;}
.y5a_c00233{bottom:388.267215px;}
.y5b_c00233{bottom:388.914150px;}
.y5c_c00233{bottom:390.231870px;}
.y4d_c00233{bottom:401.424855px;}
.y4e_c00233{bottom:401.874465px;}
.y4f_c00233{bottom:402.379680px;}
.y50_c00233{bottom:403.659795px;}
.y51_c00233{bottom:403.950690px;}
.y52_c00233{bottom:404.368650px;}
.y53_c00233{bottom:405.322395px;}
.y54_c00233{bottom:405.810315px;}
.y55_c00233{bottom:407.455575px;}
.y45_c00233{bottom:418.176900px;}
.y46_c00233{bottom:418.901370px;}
.y47_c00233{bottom:419.506005px;}
.y48_c00233{bottom:421.211535px;}
.y49_c00233{bottom:421.688430px;}
.y4a_c00233{bottom:423.484680px;}
.y4b_c00233{bottom:424.904670px;}
.y4c_c00233{bottom:425.430945px;}
.y3b_c00233{bottom:434.925975px;}
.y3c_c00233{bottom:436.937715px;}
.y3d_c00233{bottom:437.160990px;}
.y3e_c00233{bottom:437.505810px;}
.y3f_c00233{bottom:438.680895px;}
.y40_c00233{bottom:439.191120px;}
.y41_c00233{bottom:439.669980px;}
.y42_c00233{bottom:440.389455px;}
.y43_c00233{bottom:441.822285px;}
.y44_c00233{bottom:442.588725px;}
.y33_c00233{bottom:452.750475px;}
.y34_c00233{bottom:453.735225px;}
.y35_c00233{bottom:454.538685px;}
.y36_c00233{bottom:455.886390px;}
.y37_c00233{bottom:456.433410px;}
.y38_c00233{bottom:457.571025px;}
.y39_c00233{bottom:458.053215px;}
.y3a_c00233{bottom:458.621505px;}
.y2a_c00233{bottom:470.036010px;}
.y2b_c00233{bottom:471.028305px;}
.y2c_c00233{bottom:471.706680px;}
.y2d_c00233{bottom:472.313955px;}
.y2e_c00233{bottom:472.638750px;}
.y2f_c00233{bottom:473.736585px;}
.y30_c00233{bottom:474.509445px;}
.y31_c00233{bottom:475.948005px;}
.y32_c00233{bottom:476.575260px;}
.y22_c00233{bottom:488.136165px;}
.y23_c00233{bottom:488.534415px;}
.y24_c00233{bottom:489.407505px;}
.y25_c00233{bottom:490.068390px;}
.y26_c00233{bottom:491.286165px;}
.y27_c00233{bottom:492.230310px;}
.y28_c00233{bottom:494.007000px;}
.y29_c00233{bottom:494.414130px;}
.y1a_c00233{bottom:505.153515px;}
.y1b_c00233{bottom:506.384340px;}
.y1c_c00233{bottom:507.810120px;}
.y1d_c00233{bottom:508.815195px;}
.y1e_c00233{bottom:509.770755px;}
.y1f_c00233{bottom:510.359550px;}
.y20_c00233{bottom:510.698295px;}
.y21_c00233{bottom:511.623060px;}
.y12_c00233{bottom:521.634465px;}
.y13_c00233{bottom:523.621215px;}
.y14_c00233{bottom:524.630985px;}
.y15_c00233{bottom:525.157890px;}
.y16_c00233{bottom:525.628815px;}
.y17_c00233{bottom:526.156800px;}
.y18_c00233{bottom:528.557865px;}
.y19_c00233{bottom:529.182945px;}
.ya_c00233{bottom:537.844155px;}
.yb_c00233{bottom:538.573335px;}
.yc_c00233{bottom:539.175120px;}
.yd_c00233{bottom:540.777975px;}
.ye_c00233{bottom:541.985550px;}
.yf_c00233{bottom:543.890400px;}
.y10_c00233{bottom:545.076690px;}
.y11_c00233{bottom:545.850465px;}
.y2_c00233{bottom:555.132000px;}
.y3_c00233{bottom:556.801545px;}
.y4_c00233{bottom:557.417370px;}
.y5_c00233{bottom:558.810435px;}
.y6_c00233{bottom:559.378380px;}
.y7_c00233{bottom:561.213345px;}
.y8_c00233{bottom:562.189530px;}
.y9_c00233{bottom:562.795320px;}
.y1_c00233{bottom:576.454500px;}
.h1a_c00233{height:22.050000px;}
.h10_c00233{height:24.158801px;}
.h8_c00233{height:44.119841px;}
.h11_c00233{height:57.771046px;}
.he_c00233{height:57.775982px;}
.ha_c00233{height:60.927399px;}
.h12_c00233{height:63.011370px;}
.h16_c00233{height:64.061560px;}
.h18_c00233{height:64.065498px;}
.hc_c00233{height:64.078816px;}
.h17_c00233{height:65.111749px;}
.hd_c00233{height:65.129288px;}
.h2_c00233{height:66.150000px;}
.h15_c00233{height:66.161939px;}
.h9_c00233{height:66.179761px;}
.h13_c00233{height:67.212129px;}
.h7_c00233{height:67.230233px;}
.h19_c00233{height:68.266515px;}
.hf_c00233{height:68.268050px;}
.h5_c00233{height:68.280706px;}
.h14_c00233{height:69.312508px;}
.h6_c00233{height:69.331178px;}
.hb_c00233{height:70.381650px;}
.h3_c00233{height:71.432123px;}
.h4_c00233{height:73.533068px;}
.h1_c00233{height:624.750000px;}
.h0_c00233{height:625.050000px;}
.w0_c00233{width:378.540000px;}
.w1_c00233{width:378.750000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:39.825000px;}
.x1c_c00233{left:41.289885px;}
.x3e_c00233{left:42.447780px;}
.x50_c00233{left:43.689360px;}
.x76_c00233{left:44.847068px;}
.x37_c00233{left:51.521085px;}
.x1d_c00233{left:58.618530px;}
.x6d_c00233{left:61.671571px;}
.xa_c00233{left:63.837405px;}
.x71_c00233{left:65.280968px;}
.x5f_c00233{left:66.619500px;}
.x48_c00233{left:67.637985px;}
.x31_c00233{left:70.014390px;}
.x51_c00233{left:71.775525px;}
.x38_c00233{left:72.913845px;}
.x5a_c00233{left:76.742040px;}
.x6a_c00233{left:79.479101px;}
.x23_c00233{left:80.676075px;}
.x4d_c00233{left:82.342515px;}
.xb_c00233{left:83.896905px;}
.x49_c00233{left:88.172355px;}
.x77_c00233{left:90.228264px;}
.x32_c00233{left:93.271680px;}
.x44_c00233{left:94.459920px;}
.x3_c00233{left:95.476500px;}
.x1e_c00233{left:96.579495px;}
.x3f_c00233{left:98.658195px;}
.x79_c00233{left:100.325306px;}
.x6b_c00233{left:101.871137px;}
.x24_c00233{left:107.792625px;}
.x57_c00233{left:112.376370px;}
.x55_c00233{left:113.439945px;}
.x65_c00233{left:114.460952px;}
.x4_c00233{left:116.004000px;}
.x66_c00233{left:117.091500px;}
.x29_c00233{left:119.401140px;}
.x62_c00233{left:120.828000px;}
.x72_c00233{left:123.018968px;}
.x1f_c00233{left:125.315025px;}
.x60_c00233{left:126.679500px;}
.x25_c00233{left:132.088770px;}
.x40_c00233{left:133.791960px;}
.x56_c00233{left:135.595950px;}
.xc_c00233{left:137.325405px;}
.x7f_c00233{left:142.757649px;}
.x26_c00233{left:145.067205px;}
.x5b_c00233{left:147.233115px;}
.x53_c00233{left:149.000250px;}
.x67_c00233{left:151.477500px;}
.x73_c00233{left:153.647468px;}
.x11_c00233{left:155.342580px;}
.x7a_c00233{left:156.536081px;}
.x33_c00233{left:158.880555px;}
.x16_c00233{left:160.956300px;}
.x5_c00233{left:162.439500px;}
.x5c_c00233{left:167.756175px;}
.x4a_c00233{left:169.222425px;}
.x6e_c00233{left:170.747198px;}
.x39_c00233{left:171.798030px;}
.x1_c00233{left:172.800000px;}
.x12_c00233{left:175.608510px;}
.xd_c00233{left:177.577905px;}
.x68_c00233{left:178.966500px;}
.x6_c00233{left:181.371000px;}
.x54_c00233{left:183.965970px;}
.x45_c00233{left:186.231165px;}
.x27_c00233{left:188.968275px;}
.x3a_c00233{left:191.735430px;}
.x13_c00233{left:193.708170px;}
.x4b_c00233{left:195.020160px;}
.x78_c00233{left:197.198118px;}
.x2d_c00233{left:199.647810px;}
.x80_c00233{left:200.649066px;}
.x2a_c00233{left:201.775920px;}
.x17_c00233{left:206.619735px;}
.x7c_c00233{left:209.894835px;}
.x14_c00233{left:214.010100px;}
.x2e_c00233{left:217.361385px;}
.x20_c00233{left:219.348780px;}
.x6c_c00233{left:221.264290px;}
.x4e_c00233{left:224.886465px;}
.x46_c00233{left:231.073515px;}
.x4c_c00233{left:235.421445px;}
.x3b_c00233{left:237.139170px;}
.x41_c00233{left:239.896845px;}
.xe_c00233{left:241.072905px;}
.x7_c00233{left:242.536500px;}
.x2f_c00233{left:243.996270px;}
.x58_c00233{left:245.017260px;}
.x34_c00233{left:246.312540px;}
.x47_c00233{left:247.536510px;}
.x4f_c00233{left:248.649525px;}
.x18_c00233{left:250.082175px;}
.x2b_c00233{left:251.206770px;}
.x7b_c00233{left:256.998719px;}
.x6f_c00233{left:259.028819px;}
.x3c_c00233{left:260.359425px;}
.x52_c00233{left:261.403410px;}
.x42_c00233{left:265.765215px;}
.x7d_c00233{left:267.674640px;}
.x2c_c00233{left:272.184180px;}
.x7e_c00233{left:274.032942px;}
.x8_c00233{left:275.076000px;}
.x19_c00233{left:276.865110px;}
.xf_c00233{left:280.615905px;}
.x61_c00233{left:281.698500px;}
.x70_c00233{left:285.760782px;}
.x5d_c00233{left:290.684580px;}
.x1a_c00233{left:292.260300px;}
.x59_c00233{left:293.932095px;}
.x9_c00233{left:295.269000px;}
.x21_c00233{left:296.587980px;}
.x69_c00233{left:298.000500px;}
.x35_c00233{left:300.952110px;}
.x28_c00233{left:302.557830px;}
.x74_c00233{left:305.130968px;}
.x10_c00233{left:306.408405px;}
.x22_c00233{left:314.312715px;}
.x43_c00233{left:318.447090px;}
.x36_c00233{left:321.197040px;}
.x81_c00233{left:324.102000px;}
.x30_c00233{left:325.462605px;}
.x75_c00233{left:328.907468px;}
.x15_c00233{left:330.395550px;}
.x5e_c00233{left:333.080925px;}
.x1b_c00233{left:334.295880px;}
.x63_c00233{left:335.991000px;}
.x3d_c00233{left:338.722575px;}
.x64_c00233{left:344.643000px;}
.x82_c00233{left:376.650000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws0_c00233{word-spacing:0.000000pt;}
.fs18_c00233{font-size:19.600000pt;}
.fse_c00233{font-size:21.474490pt;}
.fs6_c00233{font-size:39.217636pt;}
.fsf_c00233{font-size:51.352041pt;}
.fsc_c00233{font-size:51.356428pt;}
.fs8_c00233{font-size:54.157688pt;}
.fs10_c00233{font-size:56.010107pt;}
.fs14_c00233{font-size:56.943609pt;}
.fs16_c00233{font-size:56.947110pt;}
.fsa_c00233{font-size:56.958948pt;}
.fs15_c00233{font-size:57.877111pt;}
.fsb_c00233{font-size:57.892701pt;}
.fs0_c00233{font-size:58.800000pt;}
.fs13_c00233{font-size:58.810612pt;}
.fs7_c00233{font-size:58.826454pt;}
.fs11_c00233{font-size:59.744114pt;}
.fs5_c00233{font-size:59.760207pt;}
.fs17_c00233{font-size:60.681346pt;}
.fsd_c00233{font-size:60.682711pt;}
.fs3_c00233{font-size:60.693961pt;}
.fs12_c00233{font-size:61.611118pt;}
.fs4_c00233{font-size:61.627714pt;}
.fs9_c00233{font-size:62.561467pt;}
.fs1_c00233{font-size:63.495220pt;}
.fs2_c00233{font-size:65.362727pt;}
.y0_c00233{bottom:0.000000pt;}
.y103_c00233{bottom:16.901616pt;}
.yfb_c00233{bottom:16.901723pt;}
.y102_c00233{bottom:16.901757pt;}
.yfd_c00233{bottom:16.901837pt;}
.yfc_c00233{bottom:16.901979pt;}
.y101_c00233{bottom:16.902277pt;}
.yfe_c00233{bottom:16.902389pt;}
.yff_c00233{bottom:16.902421pt;}
.y100_c00233{bottom:16.902939pt;}
.yf4_c00233{bottom:32.645333pt;}
.yf5_c00233{bottom:33.210264pt;}
.yf6_c00233{bottom:34.055915pt;}
.yf7_c00233{bottom:34.531819pt;}
.yf8_c00233{bottom:35.791685pt;}
.yf9_c00233{bottom:36.442123pt;}
.yfa_c00233{bottom:37.594747pt;}
.yef_c00233{bottom:48.220633pt;}
.yf0_c00233{bottom:49.123069pt;}
.yf1_c00233{bottom:49.972501pt;}
.yf2_c00233{bottom:50.754296pt;}
.yf3_c00233{bottom:51.000908pt;}
.ye7_c00233{bottom:64.542955pt;}
.ye8_c00233{bottom:65.753468pt;}
.ye9_c00233{bottom:65.959292pt;}
.yea_c00233{bottom:66.240624pt;}
.yeb_c00233{bottom:66.852751pt;}
.yec_c00233{bottom:67.163412pt;}
.yed_c00233{bottom:68.064657pt;}
.yee_c00233{bottom:69.028345pt;}
.yde_c00233{bottom:78.226117pt;}
.ydf_c00233{bottom:79.145983pt;}
.ye0_c00233{bottom:79.715188pt;}
.ye1_c00233{bottom:81.125976pt;}
.ye2_c00233{bottom:81.591181pt;}
.ye3_c00233{bottom:82.056209pt;}
.ye4_c00233{bottom:83.392176pt;}
.ye5_c00233{bottom:84.022019pt;}
.ye6_c00233{bottom:84.940297pt;}
.yd6_c00233{bottom:95.985688pt;}
.yd7_c00233{bottom:96.727664pt;}
.yd8_c00233{bottom:96.900612pt;}
.yd9_c00233{bottom:97.476929pt;}
.yda_c00233{bottom:97.742360pt;}
.ydb_c00233{bottom:98.135435pt;}
.ydc_c00233{bottom:98.816169pt;}
.ydd_c00233{bottom:99.583804pt;}
.yce_c00233{bottom:108.952781pt;}
.ycf_c00233{bottom:109.920625pt;}
.yd0_c00233{bottom:110.446008pt;}
.yd1_c00233{bottom:111.879887pt;}
.yd2_c00233{bottom:112.202065pt;}
.yd3_c00233{bottom:113.115593pt;}
.yd4_c00233{bottom:113.665740pt;}
.yd5_c00233{bottom:115.081711pt;}
.yc4_c00233{bottom:125.751160pt;}
.yc5_c00233{bottom:126.103952pt;}
.yc6_c00233{bottom:126.405545pt;}
.yc7_c00233{bottom:127.079083pt;}
.yc8_c00233{bottom:127.313340pt;}
.yc9_c00233{bottom:127.596364pt;}
.yca_c00233{bottom:128.973408pt;}
.ycb_c00233{bottom:129.411269pt;}
.ycc_c00233{bottom:130.154752pt;}
.ycd_c00233{bottom:130.556311pt;}
.ybe_c00233{bottom:140.158161pt;}
.ybf_c00233{bottom:140.522885pt;}
.yc0_c00233{bottom:142.455711pt;}
.yc1_c00233{bottom:142.850560pt;}
.yc2_c00233{bottom:144.733680pt;}
.yc3_c00233{bottom:145.303863pt;}
.yb6_c00233{bottom:155.764343pt;}
.yb7_c00233{bottom:156.570651pt;}
.yb8_c00233{bottom:157.087544pt;}
.yb9_c00233{bottom:158.302017pt;}
.yba_c00233{bottom:158.782572pt;}
.ybb_c00233{bottom:159.383768pt;}
.ybc_c00233{bottom:159.845563pt;}
.ybd_c00233{bottom:161.530653pt;}
.y104_c00233{bottom:169.680000pt;}
.yaf_c00233{bottom:173.044000pt;}
.yb0_c00233{bottom:174.269373pt;}
.yb1_c00233{bottom:174.850115pt;}
.yb2_c00233{bottom:175.314373pt;}
.yb3_c00233{bottom:175.990267pt;}
.yb4_c00233{bottom:177.324725pt;}
.yb5_c00233{bottom:177.709868pt;}
.ya7_c00233{bottom:188.161803pt;}
.ya8_c00233{bottom:189.302428pt;}
.ya9_c00233{bottom:189.652520pt;}
.yaa_c00233{bottom:190.377325pt;}
.yab_c00233{bottom:190.811791pt;}
.yac_c00233{bottom:192.327129pt;}
.yad_c00233{bottom:192.770269pt;}
.yae_c00233{bottom:193.680308pt;}
.ya3_c00233{bottom:198.962667pt;}
.ya4_c00233{bottom:201.936267pt;}
.y9c_c00233{bottom:203.764000pt;}
.ya5_c00233{bottom:204.126579pt;}
.y9d_c00233{bottom:204.217284pt;}
.ya6_c00233{bottom:204.334227pt;}
.y9e_c00233{bottom:205.445177pt;}
.y9f_c00233{bottom:206.384099pt;}
.ya0_c00233{bottom:208.167335pt;}
.ya1_c00233{bottom:208.614455pt;}
.ya2_c00233{bottom:209.128060pt;}
.y91_c00233{bottom:218.523760pt;}
.y92_c00233{bottom:219.238333pt;}
.y93_c00233{bottom:219.670427pt;}
.y94_c00233{bottom:220.804480pt;}
.y95_c00233{bottom:221.261013pt;}
.y96_c00233{bottom:221.825320pt;}
.y97_c00233{bottom:222.814507pt;}
.y98_c00233{bottom:223.120973pt;}
.y99_c00233{bottom:223.596187pt;}
.y9a_c00233{bottom:223.993280pt;}
.y9b_c00233{bottom:224.935680pt;}
.y8b_c00233{bottom:233.651520pt;}
.y8c_c00233{bottom:235.170053pt;}
.y8d_c00233{bottom:235.699360pt;}
.y8e_c00233{bottom:237.139160pt;}
.y8f_c00233{bottom:238.117280pt;}
.y90_c00233{bottom:239.204147pt;}
.y83_c00233{bottom:249.017813pt;}
.y84_c00233{bottom:249.456040pt;}
.y85_c00233{bottom:250.498840pt;}
.y86_c00233{bottom:250.970893pt;}
.y87_c00233{bottom:252.336120pt;}
.y88_c00233{bottom:253.229973pt;}
.y89_c00233{bottom:253.668360pt;}
.y8a_c00233{bottom:255.026520pt;}
.y7b_c00233{bottom:264.144000pt;}
.y7c_c00233{bottom:265.119493pt;}
.y7d_c00233{bottom:265.740973pt;}
.y7e_c00233{bottom:266.488640pt;}
.y7f_c00233{bottom:267.266253pt;}
.y80_c00233{bottom:268.952560pt;}
.y81_c00233{bottom:269.420827pt;}
.y82_c00233{bottom:269.787453pt;}
.y73_c00233{bottom:278.549720pt;}
.y74_c00233{bottom:279.249307pt;}
.y75_c00233{bottom:279.917867pt;}
.y76_c00233{bottom:281.674213pt;}
.y77_c00233{bottom:283.968413pt;}
.y78_c00233{bottom:284.317920pt;}
.y79_c00233{bottom:285.006947pt;}
.y7a_c00233{bottom:285.442280pt;}
.y6b_c00233{bottom:293.442493pt;}
.y6c_c00233{bottom:294.581960pt;}
.y6d_c00233{bottom:294.987253pt;}
.y6e_c00233{bottom:296.738707pt;}
.y6f_c00233{bottom:297.392400pt;}
.y70_c00233{bottom:298.636693pt;}
.y71_c00233{bottom:299.313080pt;}
.y72_c00233{bottom:299.989267pt;}
.y64_c00233{bottom:310.249613pt;}
.y65_c00233{bottom:310.815880pt;}
.y66_c00233{bottom:311.382587pt;}
.y67_c00233{bottom:313.049280pt;}
.y68_c00233{bottom:313.759907pt;}
.y69_c00233{bottom:314.873307pt;}
.y6a_c00233{bottom:317.168120pt;}
.y5d_c00233{bottom:324.654880pt;}
.y5e_c00233{bottom:325.633387pt;}
.y5f_c00233{bottom:325.987707pt;}
.y60_c00233{bottom:327.707720pt;}
.y61_c00233{bottom:328.353533pt;}
.y62_c00233{bottom:329.509293pt;}
.y63_c00233{bottom:329.933627pt;}
.y56_c00233{bottom:340.737893pt;}
.y57_c00233{bottom:341.987280pt;}
.y58_c00233{bottom:342.768040pt;}
.y59_c00233{bottom:344.229560pt;}
.y5a_c00233{bottom:345.126413pt;}
.y5b_c00233{bottom:345.701467pt;}
.y5c_c00233{bottom:346.872773pt;}
.y4d_c00233{bottom:356.822093pt;}
.y4e_c00233{bottom:357.221747pt;}
.y4f_c00233{bottom:357.670827pt;}
.y50_c00233{bottom:358.808707pt;}
.y51_c00233{bottom:359.067280pt;}
.y52_c00233{bottom:359.438800pt;}
.y53_c00233{bottom:360.286573pt;}
.y54_c00233{bottom:360.720280pt;}
.y55_c00233{bottom:362.182733pt;}
.y45_c00233{bottom:371.712800pt;}
.y46_c00233{bottom:372.356773pt;}
.y47_c00233{bottom:372.894227pt;}
.y48_c00233{bottom:374.410253pt;}
.y49_c00233{bottom:374.834160pt;}
.y4a_c00233{bottom:376.430827pt;}
.y4b_c00233{bottom:377.693040pt;}
.y4c_c00233{bottom:378.160840pt;}
.y3b_c00233{bottom:386.600867pt;}
.y3c_c00233{bottom:388.389080pt;}
.y3d_c00233{bottom:388.587547pt;}
.y3e_c00233{bottom:388.894053pt;}
.y3f_c00233{bottom:389.938573pt;}
.y40_c00233{bottom:390.392107pt;}
.y41_c00233{bottom:390.817760pt;}
.y42_c00233{bottom:391.457293pt;}
.y43_c00233{bottom:392.730920pt;}
.y44_c00233{bottom:393.412200pt;}
.y33_c00233{bottom:402.444867pt;}
.y34_c00233{bottom:403.320200pt;}
.y35_c00233{bottom:404.034387pt;}
.y36_c00233{bottom:405.232347pt;}
.y37_c00233{bottom:405.718587pt;}
.y38_c00233{bottom:406.729800pt;}
.y39_c00233{bottom:407.158413pt;}
.y3a_c00233{bottom:407.663560pt;}
.y2a_c00233{bottom:417.809787pt;}
.y2b_c00233{bottom:418.691827pt;}
.y2c_c00233{bottom:419.294827pt;}
.y2d_c00233{bottom:419.834627pt;}
.y2e_c00233{bottom:420.123333pt;}
.y2f_c00233{bottom:421.099187pt;}
.y30_c00233{bottom:421.786173pt;}
.y31_c00233{bottom:423.064893pt;}
.y32_c00233{bottom:423.622453pt;}
.y22_c00233{bottom:433.898813pt;}
.y23_c00233{bottom:434.252813pt;}
.y24_c00233{bottom:435.028893pt;}
.y25_c00233{bottom:435.616347pt;}
.y26_c00233{bottom:436.698813pt;}
.y27_c00233{bottom:437.538053pt;}
.y28_c00233{bottom:439.117333pt;}
.y29_c00233{bottom:439.479227pt;}
.y1a_c00233{bottom:449.025347pt;}
.y1b_c00233{bottom:450.119413pt;}
.y1c_c00233{bottom:451.386773pt;}
.y1d_c00233{bottom:452.280173pt;}
.y1e_c00233{bottom:453.129560pt;}
.y1f_c00233{bottom:453.652933pt;}
.y20_c00233{bottom:453.954040pt;}
.y21_c00233{bottom:454.776053pt;}
.y12_c00233{bottom:463.675080pt;}
.y13_c00233{bottom:465.441080pt;}
.y14_c00233{bottom:466.338653pt;}
.y15_c00233{bottom:466.807013pt;}
.y16_c00233{bottom:467.225613pt;}
.y17_c00233{bottom:467.694933pt;}
.y18_c00233{bottom:469.829213pt;}
.y19_c00233{bottom:470.384840pt;}
.ya_c00233{bottom:478.083693pt;}
.yb_c00233{bottom:478.731853pt;}
.yc_c00233{bottom:479.266773pt;}
.yd_c00233{bottom:480.691533pt;}
.ye_c00233{bottom:481.764933pt;}
.yf_c00233{bottom:483.458133pt;}
.y10_c00233{bottom:484.512613pt;}
.y11_c00233{bottom:485.200413pt;}
.y2_c00233{bottom:493.450667pt;}
.y3_c00233{bottom:494.934707pt;}
.y4_c00233{bottom:495.482107pt;}
.y5_c00233{bottom:496.720387pt;}
.y6_c00233{bottom:497.225227pt;}
.y7_c00233{bottom:498.856307pt;}
.y8_c00233{bottom:499.724027pt;}
.y9_c00233{bottom:500.262507pt;}
.y1_c00233{bottom:512.404000pt;}
.h1a_c00233{height:19.600000pt;}
.h10_c00233{height:21.474490pt;}
.h8_c00233{height:39.217636pt;}
.h11_c00233{height:51.352041pt;}
.he_c00233{height:51.356428pt;}
.ha_c00233{height:54.157688pt;}
.h12_c00233{height:56.010107pt;}
.h16_c00233{height:56.943609pt;}
.h18_c00233{height:56.947110pt;}
.hc_c00233{height:56.958948pt;}
.h17_c00233{height:57.877111pt;}
.hd_c00233{height:57.892701pt;}
.h2_c00233{height:58.800000pt;}
.h15_c00233{height:58.810612pt;}
.h9_c00233{height:58.826454pt;}
.h13_c00233{height:59.744114pt;}
.h7_c00233{height:59.760207pt;}
.h19_c00233{height:60.681346pt;}
.hf_c00233{height:60.682711pt;}
.h5_c00233{height:60.693961pt;}
.h14_c00233{height:61.611118pt;}
.h6_c00233{height:61.627714pt;}
.hb_c00233{height:62.561467pt;}
.h3_c00233{height:63.495220pt;}
.h4_c00233{height:65.362727pt;}
.h1_c00233{height:555.333333pt;}
.h0_c00233{height:555.600000pt;}
.w0_c00233{width:336.480000pt;}
.w1_c00233{width:336.666667pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:35.400000pt;}
.x1c_c00233{left:36.702120pt;}
.x3e_c00233{left:37.731360pt;}
.x50_c00233{left:38.834987pt;}
.x76_c00233{left:39.864060pt;}
.x37_c00233{left:45.796520pt;}
.x1d_c00233{left:52.105360pt;}
.x6d_c00233{left:54.819175pt;}
.xa_c00233{left:56.744360pt;}
.x71_c00233{left:58.027527pt;}
.x5f_c00233{left:59.217333pt;}
.x48_c00233{left:60.122653pt;}
.x31_c00233{left:62.235013pt;}
.x51_c00233{left:63.800467pt;}
.x38_c00233{left:64.812307pt;}
.x5a_c00233{left:68.215147pt;}
.x6a_c00233{left:70.648089pt;}
.x23_c00233{left:71.712067pt;}
.x4d_c00233{left:73.193347pt;}
.xb_c00233{left:74.575027pt;}
.x49_c00233{left:78.375427pt;}
.x77_c00233{left:80.202901pt;}
.x32_c00233{left:82.908160pt;}
.x44_c00233{left:83.964373pt;}
.x3_c00233{left:84.868000pt;}
.x1e_c00233{left:85.848440pt;}
.x3f_c00233{left:87.696173pt;}
.x79_c00233{left:89.178049pt;}
.x6b_c00233{left:90.552121pt;}
.x24_c00233{left:95.815667pt;}
.x57_c00233{left:99.890107pt;}
.x55_c00233{left:100.835507pt;}
.x65_c00233{left:101.743068pt;}
.x4_c00233{left:103.114667pt;}
.x66_c00233{left:104.081333pt;}
.x29_c00233{left:106.134347pt;}
.x62_c00233{left:107.402667pt;}
.x72_c00233{left:109.350193pt;}
.x1f_c00233{left:111.391133pt;}
.x60_c00233{left:112.604000pt;}
.x25_c00233{left:117.412240pt;}
.x40_c00233{left:118.926187pt;}
.x56_c00233{left:120.529733pt;}
.xc_c00233{left:122.067027pt;}
.x7f_c00233{left:126.895688pt;}
.x26_c00233{left:128.948627pt;}
.x5b_c00233{left:130.873880pt;}
.x53_c00233{left:132.444667pt;}
.x67_c00233{left:134.646667pt;}
.x73_c00233{left:136.575527pt;}
.x11_c00233{left:138.082293pt;}
.x7a_c00233{left:139.143183pt;}
.x33_c00233{left:141.227160pt;}
.x16_c00233{left:143.072267pt;}
.x5_c00233{left:144.390667pt;}
.x5c_c00233{left:149.116600pt;}
.x4a_c00233{left:150.419933pt;}
.x6e_c00233{left:151.775287pt;}
.x39_c00233{left:152.709360pt;}
.x1_c00233{left:153.600000pt;}
.x12_c00233{left:156.096453pt;}
.xd_c00233{left:157.847027pt;}
.x68_c00233{left:159.081333pt;}
.x6_c00233{left:161.218667pt;}
.x54_c00233{left:163.525307pt;}
.x45_c00233{left:165.538813pt;}
.x27_c00233{left:167.971800pt;}
.x3a_c00233{left:170.431493pt;}
.x13_c00233{left:172.185040pt;}
.x4b_c00233{left:173.351253pt;}
.x78_c00233{left:175.287216pt;}
.x2d_c00233{left:177.464720pt;}
.x80_c00233{left:178.354725pt;}
.x2a_c00233{left:179.356373pt;}
.x17_c00233{left:183.661987pt;}
.x7c_c00233{left:186.573187pt;}
.x14_c00233{left:190.231200pt;}
.x2e_c00233{left:193.210120pt;}
.x20_c00233{left:194.976693pt;}
.x6c_c00233{left:196.679369pt;}
.x4e_c00233{left:199.899080pt;}
.x46_c00233{left:205.398680pt;}
.x4c_c00233{left:209.263507pt;}
.x3b_c00233{left:210.790373pt;}
.x41_c00233{left:213.241640pt;}
.xe_c00233{left:214.287027pt;}
.x7_c00233{left:215.588000pt;}
.x2f_c00233{left:216.885573pt;}
.x58_c00233{left:217.793120pt;}
.x34_c00233{left:218.944480pt;}
.x47_c00233{left:220.032453pt;}
.x4f_c00233{left:221.021800pt;}
.x18_c00233{left:222.295267pt;}
.x2b_c00233{left:223.294907pt;}
.x7b_c00233{left:228.443305pt;}
.x6f_c00233{left:230.247839pt;}
.x3c_c00233{left:231.430600pt;}
.x52_c00233{left:232.358587pt;}
.x42_c00233{left:236.235747pt;}
.x7d_c00233{left:237.933013pt;}
.x2c_c00233{left:241.941493pt;}
.x7e_c00233{left:243.584837pt;}
.x8_c00233{left:244.512000pt;}
.x19_c00233{left:246.102320pt;}
.xf_c00233{left:249.436360pt;}
.x61_c00233{left:250.398667pt;}
.x70_c00233{left:254.009584pt;}
.x5d_c00233{left:258.386293pt;}
.x1a_c00233{left:259.786933pt;}
.x59_c00233{left:261.272973pt;}
.x9_c00233{left:262.461333pt;}
.x21_c00233{left:263.633760pt;}
.x69_c00233{left:264.889333pt;}
.x35_c00233{left:267.512987pt;}
.x28_c00233{left:268.940293pt;}
.x74_c00233{left:271.227527pt;}
.x10_c00233{left:272.363027pt;}
.x22_c00233{left:279.389080pt;}
.x43_c00233{left:283.064080pt;}
.x36_c00233{left:285.508480pt;}
.x81_c00233{left:288.090667pt;}
.x30_c00233{left:289.300093pt;}
.x75_c00233{left:292.362193pt;}
.x15_c00233{left:293.684933pt;}
.x5e_c00233{left:296.071933pt;}
.x1b_c00233{left:297.151893pt;}
.x63_c00233{left:298.658667pt;}
.x3d_c00233{left:301.086733pt;}
.x64_c00233{left:306.349333pt;}
.x82_c00233{left:334.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00234 {
    display:none;
  }
  .loading-indicator_c00234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00234 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00234 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00234" -> "#page-container .classname_c00234")
 */
.pf_c00234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00234 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00234 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00234 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00234 {overflow:visible;}
  }
}
.c_c00234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00234 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00234:after { /* webkit #35443 */
  content: '';
}
.t_c00234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00234 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00234 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00234 { /* info for Javascript */
  display:none;
}
.l_c00234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00234:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00234 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00234.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m44_c00234{transform:matrix(0.129260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129260,0.000000,0.000000,0.250000,0,0);}
.m46_c00234{transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00234{transform:matrix(0.135610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135610,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.137230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137230,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.142585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142585,0.000000,0.000000,0.250000,0,0);}
.mc6_c00234{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m33_c00234{transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146595,0.000000,0.000000,0.250000,0,0);}
.mfd_c00234{transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);}
.m2f_c00234{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00234{transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);}
.m78_c00234{transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);}
.m6f_c00234{transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149935,0.000000,0.000000,0.250000,0,0);}
.m24_c00234{transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);}
.m81_c00234{transform:matrix(0.150290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150290,0.000000,0.000000,0.250000,0,0);}
.m8f_c00234{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.mb1_c00234{transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);}
.m7c_c00234{transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);}
.md0_c00234{transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);}
.mfe_c00234{transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);}
.m51_c00234{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m7d_c00234{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m71_c00234{transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);}
.m97_c00234{transform:matrix(0.152760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152760,0.000000,0.000000,0.250000,0,0);}
.m8c_c00234{transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152785,0.000000,0.000000,0.250000,0,0);}
.m85_c00234{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155295,0.000000,0.000000,0.250000,0,0);}
.mf7_c00234{transform:matrix(0.156755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00234{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.mb2_c00234{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.mcb_c00234{transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);}
.m11_c00234{transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156970,0.000000,0.000000,0.250000,0,0);}
.mcf_c00234{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m3c_c00234{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m8e_c00234{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00234{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);}
.mab_c00234{transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);}
.m80_c00234{transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159385,0.000000,0.000000,0.250000,0,0);}
.mfc_c00234{transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159465,0.000000,0.000000,0.250000,0,0);}
.mc4_c00234{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.m96_c00234{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m88_c00234{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m30_c00234{transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);}
.m5b_c00234{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.161315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161315,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m4b_c00234{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m68_c00234{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.mf9_c00234{transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162780,0.000000,0.000000,0.250000,0,0);}
.mfb_c00234{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.m3b_c00234{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);}
.m9e_c00234{transform:matrix(0.164510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164510,0.000000,0.000000,0.250000,0,0);}
.ma8_c00234{transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m92_c00234{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.mf4_c00234{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00234{transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167610,0.000000,0.000000,0.250000,0,0);}
.meb_c00234{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.mb4_c00234{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.mea_c00234{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m37_c00234{transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168705,0.000000,0.000000,0.250000,0,0);}
.m9a_c00234{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m22_c00234{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m86_c00234{transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);}
.m67_c00234{transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.md7_c00234{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m94_c00234{transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);}
.m45_c00234{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m4e_c00234{transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);}
.md2_c00234{transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00234{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.ma0_c00234{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m40_c00234{transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);}
.m18_c00234{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.m48_c00234{transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);}
.m5d_c00234{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m5f_c00234{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.mf6_c00234{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m8a_c00234{transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);}
.m73_c00234{transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);}
.m79_c00234{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00234{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.173880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173880,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);}
.me6_c00234{transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);}
.m43_c00234{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.m54_c00234{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m5a_c00234{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m87_c00234{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.m2d_c00234{transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.m62_c00234{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m70_c00234{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m16_c00234{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m74_c00234{transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177270,0.000000,0.000000,0.250000,0,0);}
.mf8_c00234{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);}
.m9b_c00234{transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);}
.m91_c00234{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m83_c00234{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.m57_c00234{transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m35_c00234{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m2e_c00234{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m63_c00234{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.m53_c00234{transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00234{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.mce_c00234{transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);}
.m36_c00234{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.mf3_c00234{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.mef_c00234{transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);}
.m6c_c00234{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m29_c00234{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m4f_c00234{transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);}
.m23_c00234{transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);}
.ma5_c00234{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m13_c00234{transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);}
.m61_c00234{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m69_c00234{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m84_c00234{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m95_c00234{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);}
.mec_c00234{transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);}
.m52_c00234{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m90_c00234{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00234{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.ma6_c00234{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.mfa_c00234{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.med_c00234{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.m65_c00234{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.md3_c00234{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.m31_c00234{transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185290,0.000000,0.000000,0.250000,0,0);}
.m34_c00234{transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.md4_c00234{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.ma2_c00234{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m4a_c00234{transform:matrix(0.185990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185990,0.000000,0.000000,0.250000,0,0);}
.m72_c00234{transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186195,0.000000,0.000000,0.250000,0,0);}
.m93_c00234{transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00234{transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);}
.m9d_c00234{transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);}
.mf5_c00234{transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186535,0.000000,0.000000,0.250000,0,0);}
.m4d_c00234{transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186680,0.000000,0.000000,0.250000,0,0);}
.m5c_c00234{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m55_c00234{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.mb0_c00234{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.mac_c00234{transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);}
.mf2_c00234{transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00234{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.mee_c00234{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.m2b_c00234{transform:matrix(0.188705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00234{transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189110,0.000000,0.000000,0.250000,0,0);}
.m60_c00234{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.mc7_c00234{transform:matrix(0.189890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189890,0.000000,0.000000,0.250000,0,0);}
.mca_c00234{transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);}
.m58_c00234{transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);}
.me5_c00234{transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);}
.md5_c00234{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00234{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.mb6_c00234{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m56_c00234{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.maf_c00234{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.m76_c00234{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m99_c00234{transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);}
.m42_c00234{transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);}
.maa_c00234{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.ma3_c00234{transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);}
.mcc_c00234{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m66_c00234{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00234{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.md8_c00234{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);}
.m50_c00234{transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);}
.me2_c00234{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.md6_c00234{transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196115,0.000000,0.000000,0.250000,0,0);}
.m9c_c00234{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00234{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.mc9_c00234{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m82_c00234{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m2a_c00234{transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);}
.m77_c00234{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.m89_c00234{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.mc8_c00234{transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);}
.m8b_c00234{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.mbc_c00234{transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);}
.m59_c00234{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.md1_c00234{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m7f_c00234{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.mb7_c00234{transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);}
.me8_c00234{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m32_c00234{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m28_c00234{transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);}
.m9f_c00234{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.me9_c00234{transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);}
.me4_c00234{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.me7_c00234{transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);}
.m75_c00234{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.mf1_c00234{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00234{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.mb9_c00234{transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);}
.ma9_c00234{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.mda_c00234{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.md9_c00234{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.mde_c00234{transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);}
.m39_c00234{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.mba_c00234{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00234{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.mc3_c00234{transform:matrix(0.212480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212480,0.000000,0.000000,0.250000,0,0);}
.m98_c00234{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.mad_c00234{transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);}
.me3_c00234{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.m4c_c00234{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.me0_c00234{transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);}
.mc0_c00234{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.mc2_c00234{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.mbb_c00234{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.m47_c00234{transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);}
.mc1_c00234{transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);}
.ma1_c00234{transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);}
.mbd_c00234{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00234{transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00234{transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);}
.mdf_c00234{transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);}
.m64_c00234{transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);}
.mbf_c00234{transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);}
.me1_c00234{transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);}
.mc5_c00234{transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);}
.mae_c00234{transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);}
.mcd_c00234{transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:0.000000px;}
.fc0_c00234{color:transparent;}
.fsb_c00234{font-size:57.750000px;}
.fsd_c00234{font-size:58.800000px;}
.fse_c00234{font-size:60.900000px;}
.fsc_c00234{font-size:61.950000px;}
.fs5_c00234{font-size:64.050000px;}
.fs9_c00234{font-size:65.100000px;}
.fs0_c00234{font-size:66.150000px;}
.fs7_c00234{font-size:67.200000px;}
.fsa_c00234{font-size:68.250000px;}
.fs8_c00234{font-size:69.300000px;}
.fs2_c00234{font-size:70.350000px;}
.fs3_c00234{font-size:71.400000px;}
.fs4_c00234{font-size:72.450000px;}
.fs1_c00234{font-size:73.500000px;}
.fs6_c00234{font-size:74.550000px;}
.y0_c00234{bottom:0.000000px;}
.y45_c00234{bottom:35.509500px;}
.y44_c00234{bottom:53.698500px;}
.y43_c00234{bottom:69.954000px;}
.y42_c00234{bottom:86.223000px;}
.y41_c00234{bottom:87.175500px;}
.y40_c00234{bottom:88.746000px;}
.y3f_c00234{bottom:90.769500px;}
.y3e_c00234{bottom:91.627500px;}
.y3d_c00234{bottom:92.074500px;}
.y3c_c00234{bottom:102.310500px;}
.y3b_c00234{bottom:103.006500px;}
.y3a_c00234{bottom:103.350000px;}
.y39_c00234{bottom:104.526000px;}
.y38_c00234{bottom:105.012000px;}
.y37_c00234{bottom:105.622500px;}
.y36_c00234{bottom:105.922500px;}
.y35_c00234{bottom:106.753500px;}
.y34_c00234{bottom:107.194500px;}
.y33_c00234{bottom:122.191500px;}
.y32_c00234{bottom:139.372500px;}
.y31_c00234{bottom:157.165500px;}
.y30_c00234{bottom:157.392000px;}
.y2f_c00234{bottom:157.753500px;}
.y2e_c00234{bottom:158.205000px;}
.y2d_c00234{bottom:158.490000px;}
.y2c_c00234{bottom:158.856000px;}
.y2b_c00234{bottom:159.031500px;}
.y2a_c00234{bottom:159.367500px;}
.y29_c00234{bottom:159.597000px;}
.y28_c00234{bottom:160.110000px;}
.y27_c00234{bottom:172.881000px;}
.y26_c00234{bottom:173.376000px;}
.y25_c00234{bottom:174.321000px;}
.y24_c00234{bottom:174.604500px;}
.y23_c00234{bottom:175.474500px;}
.y22_c00234{bottom:175.780500px;}
.y21_c00234{bottom:176.226000px;}
.y20_c00234{bottom:176.581500px;}
.y1f_c00234{bottom:188.526000px;}
.y1e_c00234{bottom:206.280000px;}
.y1d_c00234{bottom:224.383500px;}
.y1c_c00234{bottom:241.342500px;}
.y1b_c00234{bottom:242.296500px;}
.y1a_c00234{bottom:242.556000px;}
.y19_c00234{bottom:243.243000px;}
.y18_c00234{bottom:243.466500px;}
.y17_c00234{bottom:243.948000px;}
.y16_c00234{bottom:244.204500px;}
.y15_c00234{bottom:244.890000px;}
.y14_c00234{bottom:259.522500px;}
.y13_c00234{bottom:276.921000px;}
.y12_c00234{bottom:294.384000px;}
.y11_c00234{bottom:312.051000px;}
.y10_c00234{bottom:329.278500px;}
.yf_c00234{bottom:346.471500px;}
.ye_c00234{bottom:362.463000px;}
.yd_c00234{bottom:379.770000px;}
.yc_c00234{bottom:396.898500px;}
.yb_c00234{bottom:413.164500px;}
.ya_c00234{bottom:430.981500px;}
.y9_c00234{bottom:448.111500px;}
.y8_c00234{bottom:465.151500px;}
.y7_c00234{bottom:482.941500px;}
.y6_c00234{bottom:499.800000px;}
.y5_c00234{bottom:517.006500px;}
.y4_c00234{bottom:534.402000px;}
.y3_c00234{bottom:551.674500px;}
.y2_c00234{bottom:568.686000px;}
.y1_c00234{bottom:585.762000px;}
.hd_c00234{height:57.750000px;}
.hf_c00234{height:58.800000px;}
.h10_c00234{height:60.900000px;}
.he_c00234{height:61.950000px;}
.h7_c00234{height:64.050000px;}
.hb_c00234{height:65.100000px;}
.h2_c00234{height:66.150000px;}
.h9_c00234{height:67.200000px;}
.hc_c00234{height:68.250000px;}
.ha_c00234{height:69.300000px;}
.h4_c00234{height:70.350000px;}
.h5_c00234{height:71.400000px;}
.h6_c00234{height:72.450000px;}
.h3_c00234{height:73.500000px;}
.h8_c00234{height:74.550000px;}
.h1_c00234{height:624.750000px;}
.h0_c00234{height:625.050000px;}
.w0_c00234{width:378.540000px;}
.w1_c00234{width:378.750000px;}
.x0_c00234{left:0.000000px;}
.x10_c00234{left:36.720000px;}
.x4c_c00234{left:38.610000px;}
.x2_c00234{left:39.960000px;}
.x17_c00234{left:41.310000px;}
.x71_c00234{left:47.520000px;}
.x48_c00234{left:56.700000px;}
.x63_c00234{left:57.780000px;}
.x53_c00234{left:59.940000px;}
.x3_c00234{left:61.290000px;}
.x41_c00234{left:63.180000px;}
.x70_c00234{left:64.797000px;}
.x39_c00234{left:66.690000px;}
.x2b_c00234{left:68.310000px;}
.x60_c00234{left:71.550000px;}
.x4d_c00234{left:73.710000px;}
.x7b_c00234{left:76.951500px;}
.x42_c00234{left:78.570000px;}
.x1f_c00234{left:79.920000px;}
.x5b_c00234{left:82.350000px;}
.x54_c00234{left:85.320000px;}
.x64_c00234{left:88.560000px;}
.x7f_c00234{left:90.451500px;}
.x18_c00234{left:91.800000px;}
.x2e_c00234{left:93.690000px;}
.x9_c00234{left:94.770000px;}
.x11_c00234{left:95.850000px;}
.x36_c00234{left:98.280000px;}
.x79_c00234{left:100.564500px;}
.x61_c00234{left:102.330000px;}
.x20_c00234{left:104.490000px;}
.x6a_c00234{left:105.727500px;}
.xa_c00234{left:107.460000px;}
.x25_c00234{left:110.700000px;}
.x75_c00234{left:113.461500px;}
.x68_c00234{left:116.769000px;}
.x12_c00234{left:119.340000px;}
.x4_c00234{left:121.500000px;}
.x4e_c00234{left:124.200000px;}
.x19_c00234{left:125.820000px;}
.x72_c00234{left:127.440000px;}
.x26_c00234{left:128.520000px;}
.x3a_c00234{left:129.870000px;}
.x76_c00234{left:131.103000px;}
.x6b_c00234{left:136.257000px;}
.x55_c00234{left:138.240000px;}
.x13_c00234{left:140.400000px;}
.x7c_c00234{left:142.021500px;}
.x43_c00234{left:143.370000px;}
.x5_c00234{left:144.990000px;}
.x1a_c00234{left:146.610000px;}
.x5e_c00234{left:147.622500px;}
.x6c_c00234{left:152.241000px;}
.x3b_c00234{left:156.330000px;}
.xb_c00234{left:157.950000px;}
.x2f_c00234{left:160.110000px;}
.x21_c00234{left:163.890000px;}
.x44_c00234{left:165.780000px;}
.x77_c00234{left:167.016000px;}
.x3e_c00234{left:168.480000px;}
.x1_c00234{left:172.800000px;}
.x49_c00234{left:175.770000px;}
.xc_c00234{left:177.390000px;}
.x69_c00234{left:178.884000px;}
.x4f_c00234{left:180.090000px;}
.x6d_c00234{left:185.452500px;}
.x65_c00234{left:187.380000px;}
.x27_c00234{left:189.270000px;}
.x7d_c00234{left:191.701500px;}
.x5a_c00234{left:193.050000px;}
.x78_c00234{left:195.591000px;}
.x73_c00234{left:196.830000px;}
.x37_c00234{left:199.530000px;}
.x4a_c00234{left:200.880000px;}
.x14_c00234{left:205.740000px;}
.x1b_c00234{left:207.360000px;}
.x50_c00234{left:208.710000px;}
.x45_c00234{left:210.600000px;}
.x56_c00234{left:213.300000px;}
.x6_c00234{left:215.460000px;}
.x38_c00234{left:217.620000px;}
.x5c_c00234{left:219.510000px;}
.x34_c00234{left:221.670000px;}
.x30_c00234{left:224.910000px;}
.x15_c00234{left:225.990000px;}
.x51_c00234{left:228.960000px;}
.x28_c00234{left:234.900000px;}
.x5d_c00234{left:235.980000px;}
.xd_c00234{left:238.680000px;}
.x3c_c00234{left:241.110000px;}
.x22_c00234{left:242.190000px;}
.x31_c00234{left:244.350000px;}
.x7_c00234{left:245.970000px;}
.x57_c00234{left:248.670000px;}
.x4b_c00234{left:249.750000px;}
.x6e_c00234{left:252.412500px;}
.x2c_c00234{left:254.610000px;}
.x74_c00234{left:256.500000px;}
.x62_c00234{left:259.740000px;}
.x23_c00234{left:262.170000px;}
.x32_c00234{left:263.790000px;}
.xe_c00234{left:267.570000px;}
.x3f_c00234{left:270.270000px;}
.x7a_c00234{left:271.702500px;}
.x7e_c00234{left:273.781500px;}
.x29_c00234{left:274.860000px;}
.x66_c00234{left:277.020000px;}
.x1c_c00234{left:281.610000px;}
.x46_c00234{left:285.660000px;}
.x58_c00234{left:289.710000px;}
.x52_c00234{left:291.600000px;}
.x16_c00234{left:295.650000px;}
.x2a_c00234{left:298.080000px;}
.x67_c00234{left:302.130000px;}
.x6f_c00234{left:305.845500px;}
.x24_c00234{left:306.990000px;}
.x3d_c00234{left:308.070000px;}
.x5f_c00234{left:311.148000px;}
.x8_c00234{left:312.390000px;}
.x1d_c00234{left:314.280000px;}
.x40_c00234{left:316.170000px;}
.x33_c00234{left:318.330000px;}
.xf_c00234{left:319.950000px;}
.x35_c00234{left:321.300000px;}
.x47_c00234{left:325.890000px;}
.x2d_c00234{left:327.780000px;}
.x1e_c00234{left:331.020000px;}
.x59_c00234{left:334.530000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
.fsb_c00234{font-size:51.333333pt;}
.fsd_c00234{font-size:52.266667pt;}
.fse_c00234{font-size:54.133333pt;}
.fsc_c00234{font-size:55.066667pt;}
.fs5_c00234{font-size:56.933333pt;}
.fs9_c00234{font-size:57.866667pt;}
.fs0_c00234{font-size:58.800000pt;}
.fs7_c00234{font-size:59.733333pt;}
.fsa_c00234{font-size:60.666667pt;}
.fs8_c00234{font-size:61.600000pt;}
.fs2_c00234{font-size:62.533333pt;}
.fs3_c00234{font-size:63.466667pt;}
.fs4_c00234{font-size:64.400000pt;}
.fs1_c00234{font-size:65.333333pt;}
.fs6_c00234{font-size:66.266667pt;}
.y0_c00234{bottom:0.000000pt;}
.y45_c00234{bottom:31.564000pt;}
.y44_c00234{bottom:47.732000pt;}
.y43_c00234{bottom:62.181333pt;}
.y42_c00234{bottom:76.642667pt;}
.y41_c00234{bottom:77.489333pt;}
.y40_c00234{bottom:78.885333pt;}
.y3f_c00234{bottom:80.684000pt;}
.y3e_c00234{bottom:81.446667pt;}
.y3d_c00234{bottom:81.844000pt;}
.y3c_c00234{bottom:90.942667pt;}
.y3b_c00234{bottom:91.561333pt;}
.y3a_c00234{bottom:91.866667pt;}
.y39_c00234{bottom:92.912000pt;}
.y38_c00234{bottom:93.344000pt;}
.y37_c00234{bottom:93.886667pt;}
.y36_c00234{bottom:94.153333pt;}
.y35_c00234{bottom:94.892000pt;}
.y34_c00234{bottom:95.284000pt;}
.y33_c00234{bottom:108.614667pt;}
.y32_c00234{bottom:123.886667pt;}
.y31_c00234{bottom:139.702667pt;}
.y30_c00234{bottom:139.904000pt;}
.y2f_c00234{bottom:140.225333pt;}
.y2e_c00234{bottom:140.626667pt;}
.y2d_c00234{bottom:140.880000pt;}
.y2c_c00234{bottom:141.205333pt;}
.y2b_c00234{bottom:141.361333pt;}
.y2a_c00234{bottom:141.660000pt;}
.y29_c00234{bottom:141.864000pt;}
.y28_c00234{bottom:142.320000pt;}
.y27_c00234{bottom:153.672000pt;}
.y26_c00234{bottom:154.112000pt;}
.y25_c00234{bottom:154.952000pt;}
.y24_c00234{bottom:155.204000pt;}
.y23_c00234{bottom:155.977333pt;}
.y22_c00234{bottom:156.249333pt;}
.y21_c00234{bottom:156.645333pt;}
.y20_c00234{bottom:156.961333pt;}
.y1f_c00234{bottom:167.578667pt;}
.y1e_c00234{bottom:183.360000pt;}
.y1d_c00234{bottom:199.452000pt;}
.y1c_c00234{bottom:214.526667pt;}
.y1b_c00234{bottom:215.374667pt;}
.y1a_c00234{bottom:215.605333pt;}
.y19_c00234{bottom:216.216000pt;}
.y18_c00234{bottom:216.414667pt;}
.y17_c00234{bottom:216.842667pt;}
.y16_c00234{bottom:217.070667pt;}
.y15_c00234{bottom:217.680000pt;}
.y14_c00234{bottom:230.686667pt;}
.y13_c00234{bottom:246.152000pt;}
.y12_c00234{bottom:261.674667pt;}
.y11_c00234{bottom:277.378667pt;}
.y10_c00234{bottom:292.692000pt;}
.yf_c00234{bottom:307.974667pt;}
.ye_c00234{bottom:322.189333pt;}
.yd_c00234{bottom:337.573333pt;}
.yc_c00234{bottom:352.798667pt;}
.yb_c00234{bottom:367.257333pt;}
.ya_c00234{bottom:383.094667pt;}
.y9_c00234{bottom:398.321333pt;}
.y8_c00234{bottom:413.468000pt;}
.y7_c00234{bottom:429.281333pt;}
.y6_c00234{bottom:444.266667pt;}
.y5_c00234{bottom:459.561333pt;}
.y4_c00234{bottom:475.024000pt;}
.y3_c00234{bottom:490.377333pt;}
.y2_c00234{bottom:505.498667pt;}
.y1_c00234{bottom:520.677333pt;}
.hd_c00234{height:51.333333pt;}
.hf_c00234{height:52.266667pt;}
.h10_c00234{height:54.133333pt;}
.he_c00234{height:55.066667pt;}
.h7_c00234{height:56.933333pt;}
.hb_c00234{height:57.866667pt;}
.h2_c00234{height:58.800000pt;}
.h9_c00234{height:59.733333pt;}
.hc_c00234{height:60.666667pt;}
.ha_c00234{height:61.600000pt;}
.h4_c00234{height:62.533333pt;}
.h5_c00234{height:63.466667pt;}
.h6_c00234{height:64.400000pt;}
.h3_c00234{height:65.333333pt;}
.h8_c00234{height:66.266667pt;}
.h1_c00234{height:555.333333pt;}
.h0_c00234{height:555.600000pt;}
.w0_c00234{width:336.480000pt;}
.w1_c00234{width:336.666667pt;}
.x0_c00234{left:0.000000pt;}
.x10_c00234{left:32.640000pt;}
.x4c_c00234{left:34.320000pt;}
.x2_c00234{left:35.520000pt;}
.x17_c00234{left:36.720000pt;}
.x71_c00234{left:42.240000pt;}
.x48_c00234{left:50.400000pt;}
.x63_c00234{left:51.360000pt;}
.x53_c00234{left:53.280000pt;}
.x3_c00234{left:54.480000pt;}
.x41_c00234{left:56.160000pt;}
.x70_c00234{left:57.597333pt;}
.x39_c00234{left:59.280000pt;}
.x2b_c00234{left:60.720000pt;}
.x60_c00234{left:63.600000pt;}
.x4d_c00234{left:65.520000pt;}
.x7b_c00234{left:68.401333pt;}
.x42_c00234{left:69.840000pt;}
.x1f_c00234{left:71.040000pt;}
.x5b_c00234{left:73.200000pt;}
.x54_c00234{left:75.840000pt;}
.x64_c00234{left:78.720000pt;}
.x7f_c00234{left:80.401333pt;}
.x18_c00234{left:81.600000pt;}
.x2e_c00234{left:83.280000pt;}
.x9_c00234{left:84.240000pt;}
.x11_c00234{left:85.200000pt;}
.x36_c00234{left:87.360000pt;}
.x79_c00234{left:89.390667pt;}
.x61_c00234{left:90.960000pt;}
.x20_c00234{left:92.880000pt;}
.x6a_c00234{left:93.980000pt;}
.xa_c00234{left:95.520000pt;}
.x25_c00234{left:98.400000pt;}
.x75_c00234{left:100.854667pt;}
.x68_c00234{left:103.794667pt;}
.x12_c00234{left:106.080000pt;}
.x4_c00234{left:108.000000pt;}
.x4e_c00234{left:110.400000pt;}
.x19_c00234{left:111.840000pt;}
.x72_c00234{left:113.280000pt;}
.x26_c00234{left:114.240000pt;}
.x3a_c00234{left:115.440000pt;}
.x76_c00234{left:116.536000pt;}
.x6b_c00234{left:121.117333pt;}
.x55_c00234{left:122.880000pt;}
.x13_c00234{left:124.800000pt;}
.x7c_c00234{left:126.241333pt;}
.x43_c00234{left:127.440000pt;}
.x5_c00234{left:128.880000pt;}
.x1a_c00234{left:130.320000pt;}
.x5e_c00234{left:131.220000pt;}
.x6c_c00234{left:135.325333pt;}
.x3b_c00234{left:138.960000pt;}
.xb_c00234{left:140.400000pt;}
.x2f_c00234{left:142.320000pt;}
.x21_c00234{left:145.680000pt;}
.x44_c00234{left:147.360000pt;}
.x77_c00234{left:148.458667pt;}
.x3e_c00234{left:149.760000pt;}
.x1_c00234{left:153.600000pt;}
.x49_c00234{left:156.240000pt;}
.xc_c00234{left:157.680000pt;}
.x69_c00234{left:159.008000pt;}
.x4f_c00234{left:160.080000pt;}
.x6d_c00234{left:164.846667pt;}
.x65_c00234{left:166.560000pt;}
.x27_c00234{left:168.240000pt;}
.x7d_c00234{left:170.401333pt;}
.x5a_c00234{left:171.600000pt;}
.x78_c00234{left:173.858667pt;}
.x73_c00234{left:174.960000pt;}
.x37_c00234{left:177.360000pt;}
.x4a_c00234{left:178.560000pt;}
.x14_c00234{left:182.880000pt;}
.x1b_c00234{left:184.320000pt;}
.x50_c00234{left:185.520000pt;}
.x45_c00234{left:187.200000pt;}
.x56_c00234{left:189.600000pt;}
.x6_c00234{left:191.520000pt;}
.x38_c00234{left:193.440000pt;}
.x5c_c00234{left:195.120000pt;}
.x34_c00234{left:197.040000pt;}
.x30_c00234{left:199.920000pt;}
.x15_c00234{left:200.880000pt;}
.x51_c00234{left:203.520000pt;}
.x28_c00234{left:208.800000pt;}
.x5d_c00234{left:209.760000pt;}
.xd_c00234{left:212.160000pt;}
.x3c_c00234{left:214.320000pt;}
.x22_c00234{left:215.280000pt;}
.x31_c00234{left:217.200000pt;}
.x7_c00234{left:218.640000pt;}
.x57_c00234{left:221.040000pt;}
.x4b_c00234{left:222.000000pt;}
.x6e_c00234{left:224.366667pt;}
.x2c_c00234{left:226.320000pt;}
.x74_c00234{left:228.000000pt;}
.x62_c00234{left:230.880000pt;}
.x23_c00234{left:233.040000pt;}
.x32_c00234{left:234.480000pt;}
.xe_c00234{left:237.840000pt;}
.x3f_c00234{left:240.240000pt;}
.x7a_c00234{left:241.513333pt;}
.x7e_c00234{left:243.361333pt;}
.x29_c00234{left:244.320000pt;}
.x66_c00234{left:246.240000pt;}
.x1c_c00234{left:250.320000pt;}
.x46_c00234{left:253.920000pt;}
.x58_c00234{left:257.520000pt;}
.x52_c00234{left:259.200000pt;}
.x16_c00234{left:262.800000pt;}
.x2a_c00234{left:264.960000pt;}
.x67_c00234{left:268.560000pt;}
.x6f_c00234{left:271.862667pt;}
.x24_c00234{left:272.880000pt;}
.x3d_c00234{left:273.840000pt;}
.x5f_c00234{left:276.576000pt;}
.x8_c00234{left:277.680000pt;}
.x1d_c00234{left:279.360000pt;}
.x40_c00234{left:281.040000pt;}
.x33_c00234{left:282.960000pt;}
.xf_c00234{left:284.400000pt;}
.x35_c00234{left:285.600000pt;}
.x47_c00234{left:289.680000pt;}
.x2d_c00234{left:291.360000pt;}
.x1e_c00234{left:294.240000pt;}
.x59_c00234{left:297.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00235 {
    display:none;
  }
  .loading-indicator_c00235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00235 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00235 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00235" -> "#page-container .classname_c00235")
 */
.pf_c00235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00235 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00235 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00235 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00235 {overflow:visible;}
  }
}
.c_c00235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00235 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00235:after { /* webkit #35443 */
  content: '';
}
.t_c00235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00235 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00235 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00235 { /* info for Javascript */
  display:none;
}
.l_c00235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00235:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00235 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00235.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4_c00235{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.m93_c00235{transform:matrix(0.117290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117290,0.000000,0.000000,0.250000,0,0);}
.m70_c00235{transform:matrix(0.145751,-0.002041,0.003500,0.249976,0,0);-ms-transform:matrix(0.145751,-0.002041,0.003500,0.249976,0,0);-webkit-transform:matrix(0.145751,-0.002041,0.003500,0.249976,0,0);}
.mf_c00235{transform:matrix(0.148295,-0.002076,0.003500,0.249976,0,0);-ms-transform:matrix(0.148295,-0.002076,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148295,-0.002076,0.003500,0.249976,0,0);}
.m5c_c00235{transform:matrix(0.150550,-0.002108,0.003500,0.249976,0,0);-ms-transform:matrix(0.150550,-0.002108,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150550,-0.002108,0.003500,0.249976,0,0);}
.m4b_c00235{transform:matrix(0.155520,-0.002177,0.003500,0.249976,0,0);-ms-transform:matrix(0.155520,-0.002177,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155520,-0.002177,0.003500,0.249976,0,0);}
.m63_c00235{transform:matrix(0.157890,-0.002210,0.003500,0.249976,0,0);-ms-transform:matrix(0.157890,-0.002210,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157890,-0.002210,0.003500,0.249976,0,0);}
.md3_c00235{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.maa_c00235{transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);}
.mc5_c00235{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00235{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.160774,-0.002251,0.003500,0.249976,0,0);-ms-transform:matrix(0.160774,-0.002251,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160774,-0.002251,0.003500,0.249976,0,0);}
.mce_c00235{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.m64_c00235{transform:matrix(0.161494,-0.002261,0.003500,0.249976,0,0);-ms-transform:matrix(0.161494,-0.002261,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161494,-0.002261,0.003500,0.249976,0,0);}
.m1_c00235{transform:matrix(0.161795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161795,0.000000,0.000000,0.250000,0,0);}
.m87_c00235{transform:matrix(0.161839,-0.002266,0.003500,0.249976,0,0);-ms-transform:matrix(0.161839,-0.002266,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161839,-0.002266,0.003500,0.249976,0,0);}
.m24_c00235{transform:matrix(0.162424,-0.002274,0.003500,0.249976,0,0);-ms-transform:matrix(0.162424,-0.002274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162424,-0.002274,0.003500,0.249976,0,0);}
.m18_c00235{transform:matrix(0.162614,-0.002277,0.003500,0.249976,0,0);-ms-transform:matrix(0.162614,-0.002277,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162614,-0.002277,0.003500,0.249976,0,0);}
.mca_c00235{transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);}
.m8b_c00235{transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);}
.m92_c00235{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.mcb_c00235{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mba_c00235{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m4d_c00235{transform:matrix(0.168254,-0.002356,0.003500,0.249976,0,0);-ms-transform:matrix(0.168254,-0.002356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168254,-0.002356,0.003500,0.249976,0,0);}
.mf0_c00235{transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);}
.ma9_c00235{transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);}
.mdc_c00235{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.169688,-0.002376,0.003500,0.249976,0,0);-ms-transform:matrix(0.169688,-0.002376,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169688,-0.002376,0.003500,0.249976,0,0);}
.mc1_c00235{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.170313,-0.002384,0.003500,0.249976,0,0);-ms-transform:matrix(0.170313,-0.002384,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170313,-0.002384,0.003500,0.249976,0,0);}
.md_c00235{transform:matrix(0.170393,-0.002386,0.003500,0.249976,0,0);-ms-transform:matrix(0.170393,-0.002386,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170393,-0.002386,0.003500,0.249976,0,0);}
.ma4_c00235{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.171508,-0.002401,0.003500,0.249976,0,0);-ms-transform:matrix(0.171508,-0.002401,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171508,-0.002401,0.003500,0.249976,0,0);}
.m32_c00235{transform:matrix(0.171818,-0.002405,0.003500,0.249976,0,0);-ms-transform:matrix(0.171818,-0.002405,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171818,-0.002405,0.003500,0.249976,0,0);}
.m88_c00235{transform:matrix(0.172188,-0.002411,0.003500,0.249976,0,0);-ms-transform:matrix(0.172188,-0.002411,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172188,-0.002411,0.003500,0.249976,0,0);}
.m10_c00235{transform:matrix(0.172513,-0.002415,0.003500,0.249976,0,0);-ms-transform:matrix(0.172513,-0.002415,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172513,-0.002415,0.003500,0.249976,0,0);}
.m8c_c00235{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.mbb_c00235{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.md4_c00235{transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);-ms-transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);}
.m47_c00235{transform:matrix(0.174898,-0.002449,0.003500,0.249976,0,0);-ms-transform:matrix(0.174898,-0.002449,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174898,-0.002449,0.003500,0.249976,0,0);}
.mab_c00235{transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);}
.m5e_c00235{transform:matrix(0.175803,-0.002461,0.003500,0.249976,0,0);-ms-transform:matrix(0.175803,-0.002461,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175803,-0.002461,0.003500,0.249976,0,0);}
.m6c_c00235{transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);-ms-transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);}
.md8_c00235{transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);-ms-transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);}
.m6_c00235{transform:matrix(0.178511,-0.001785,0.002500,0.249988,0,0);-ms-transform:matrix(0.178511,-0.001785,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178511,-0.001785,0.002500,0.249988,0,0);}
.m91_c00235{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.md1_c00235{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m86_c00235{transform:matrix(0.178852,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178852,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178852,-0.002504,0.003500,0.249976,0,0);}
.m58_c00235{transform:matrix(0.178877,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178877,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178877,-0.002504,0.003500,0.249976,0,0);}
.m83_c00235{transform:matrix(0.179017,-0.002506,0.003500,0.249976,0,0);-ms-transform:matrix(0.179017,-0.002506,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179017,-0.002506,0.003500,0.249976,0,0);}
.mb5_c00235{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.180157,-0.002522,0.003500,0.249976,0,0);-ms-transform:matrix(0.180157,-0.002522,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180157,-0.002522,0.003500,0.249976,0,0);}
.m13_c00235{transform:matrix(0.180247,-0.002523,0.003500,0.249976,0,0);-ms-transform:matrix(0.180247,-0.002523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180247,-0.002523,0.003500,0.249976,0,0);}
.m72_c00235{transform:matrix(0.180572,-0.002528,0.003500,0.249976,0,0);-ms-transform:matrix(0.180572,-0.002528,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180572,-0.002528,0.003500,0.249976,0,0);}
.m8e_c00235{transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);}
.mb9_c00235{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.m55_c00235{transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-ms-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);}
.me5_c00235{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.mc7_c00235{transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);}
.m8a_c00235{transform:matrix(0.181997,-0.002548,0.003500,0.249976,0,0);-ms-transform:matrix(0.181997,-0.002548,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181997,-0.002548,0.003500,0.249976,0,0);}
.mc4_c00235{transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);}
.m90_c00235{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.me9_c00235{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00235{transform:matrix(0.182562,-0.002556,0.003500,0.249976,0,0);-ms-transform:matrix(0.182562,-0.002556,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182562,-0.002556,0.003500,0.249976,0,0);}
.m2_c00235{transform:matrix(0.183841,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183841,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183841,-0.001838,0.002500,0.249988,0,0);}
.m15_c00235{transform:matrix(0.183872,-0.002574,0.003500,0.249976,0,0);-ms-transform:matrix(0.183872,-0.002574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183872,-0.002574,0.003500,0.249976,0,0);}
.mc8_c00235{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.mef_c00235{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m9c_c00235{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m33_c00235{transform:matrix(0.184432,-0.002582,0.003500,0.249976,0,0);-ms-transform:matrix(0.184432,-0.002582,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184432,-0.002582,0.003500,0.249976,0,0);}
.md0_c00235{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.med_c00235{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.m7b_c00235{transform:matrix(0.185282,-0.002594,0.003500,0.249976,0,0);-ms-transform:matrix(0.185282,-0.002594,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185282,-0.002594,0.003500,0.249976,0,0);}
.m49_c00235{transform:matrix(0.185527,-0.002597,0.003500,0.249976,0,0);-ms-transform:matrix(0.185527,-0.002597,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185527,-0.002597,0.003500,0.249976,0,0);}
.m19_c00235{transform:matrix(0.185547,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185547,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185547,-0.002598,0.003500,0.249976,0,0);}
.m9f_c00235{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);-ms-transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);}
.md7_c00235{transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);}
.m7d_c00235{transform:matrix(0.187467,-0.002625,0.003500,0.249976,0,0);-ms-transform:matrix(0.187467,-0.002625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187467,-0.002625,0.003500,0.249976,0,0);}
.m43_c00235{transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);-ms-transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187687,-0.002628,0.003500,0.249976,0,0);}
.mcf_c00235{transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00235{transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);-ms-transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188472,-0.002639,0.003500,0.249976,0,0);}
.m1f_c00235{transform:matrix(0.188911,-0.002645,0.003500,0.249976,0,0);-ms-transform:matrix(0.188911,-0.002645,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188911,-0.002645,0.003500,0.249976,0,0);}
.m41_c00235{transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);}
.me0_c00235{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m7f_c00235{transform:matrix(0.189676,-0.002655,0.003500,0.249976,0,0);-ms-transform:matrix(0.189676,-0.002655,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189676,-0.002655,0.003500,0.249976,0,0);}
.m57_c00235{transform:matrix(0.189801,-0.002657,0.003500,0.249976,0,0);-ms-transform:matrix(0.189801,-0.002657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189801,-0.002657,0.003500,0.249976,0,0);}
.m89_c00235{transform:matrix(0.189911,-0.002659,0.003500,0.249976,0,0);-ms-transform:matrix(0.189911,-0.002659,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189911,-0.002659,0.003500,0.249976,0,0);}
.mf2_c00235{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.190161,-0.002662,0.003500,0.249976,0,0);-ms-transform:matrix(0.190161,-0.002662,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190161,-0.002662,0.003500,0.249976,0,0);}
.md5_c00235{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00235{transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);}
.mf1_c00235{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.maf_c00235{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mcd_c00235{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.m85_c00235{transform:matrix(0.192301,-0.002692,0.003500,0.249976,0,0);-ms-transform:matrix(0.192301,-0.002692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192301,-0.002692,0.003500,0.249976,0,0);}
.m2e_c00235{transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-ms-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192441,-0.002694,0.003500,0.249976,0,0);}
.m3c_c00235{transform:matrix(0.192466,-0.002695,0.003500,0.249976,0,0);-ms-transform:matrix(0.192466,-0.002695,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192466,-0.002695,0.003500,0.249976,0,0);}
.mb1_c00235{transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);}
.ma3_c00235{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.m80_c00235{transform:matrix(0.192976,-0.002702,0.003500,0.249976,0,0);-ms-transform:matrix(0.192976,-0.002702,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192976,-0.002702,0.003500,0.249976,0,0);}
.mc2_c00235{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00235{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.me4_c00235{transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);}
.m21_c00235{transform:matrix(0.194461,-0.002722,0.003500,0.249976,0,0);-ms-transform:matrix(0.194461,-0.002722,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194461,-0.002722,0.003500,0.249976,0,0);}
.m3f_c00235{transform:matrix(0.194926,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194926,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194926,-0.002729,0.003500,0.249976,0,0);}
.m14_c00235{transform:matrix(0.195176,-0.002732,0.003500,0.249976,0,0);-ms-transform:matrix(0.195176,-0.002732,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195176,-0.002732,0.003500,0.249976,0,0);}
.m1b_c00235{transform:matrix(0.195471,-0.002737,0.003500,0.249976,0,0);-ms-transform:matrix(0.195471,-0.002737,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195471,-0.002737,0.003500,0.249976,0,0);}
.mc6_c00235{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.mea_c00235{transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.196786,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196786,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196786,-0.002755,0.003500,0.249976,0,0);}
.m39_c00235{transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);}
.m3a_c00235{transform:matrix(0.196821,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196821,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196821,-0.002755,0.003500,0.249976,0,0);}
.m95_c00235{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.m6d_c00235{transform:matrix(0.197516,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197516,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197516,-0.002765,0.003500,0.249976,0,0);}
.m98_c00235{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m7a_c00235{transform:matrix(0.198116,-0.002774,0.003500,0.249976,0,0);-ms-transform:matrix(0.198116,-0.002774,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198116,-0.002774,0.003500,0.249976,0,0);}
.ma6_c00235{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m4c_c00235{transform:matrix(0.199970,-0.002800,0.003500,0.249976,0,0);-ms-transform:matrix(0.199970,-0.002800,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199970,-0.002800,0.003500,0.249976,0,0);}
.m61_c00235{transform:matrix(0.200030,-0.002800,0.003500,0.249976,0,0);-ms-transform:matrix(0.200030,-0.002800,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200030,-0.002800,0.003500,0.249976,0,0);}
.m62_c00235{transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);-ms-transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);}
.m31_c00235{transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);-ms-transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);}
.m1a_c00235{transform:matrix(0.200770,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200770,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200770,-0.002811,0.003500,0.249976,0,0);}
.m4a_c00235{transform:matrix(0.201685,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201685,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201685,-0.002824,0.003500,0.249976,0,0);}
.md9_c00235{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);}
.m54_c00235{transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);}
.m65_c00235{transform:matrix(0.202380,-0.002833,0.003500,0.249976,0,0);-ms-transform:matrix(0.202380,-0.002833,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202380,-0.002833,0.003500,0.249976,0,0);}
.mb0_c00235{transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);}
.mc3_c00235{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202630,-0.002837,0.003500,0.249976,0,0);}
.m53_c00235{transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);-ms-transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203070,-0.002843,0.003500,0.249976,0,0);}
.m12_c00235{transform:matrix(0.203095,-0.002843,0.003500,0.249976,0,0);-ms-transform:matrix(0.203095,-0.002843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203095,-0.002843,0.003500,0.249976,0,0);}
.m6b_c00235{transform:matrix(0.203100,-0.002843,0.003500,0.249976,0,0);-ms-transform:matrix(0.203100,-0.002843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203100,-0.002843,0.003500,0.249976,0,0);}
.meb_c00235{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00235{transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);-ms-transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);}
.m8f_c00235{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m7e_c00235{transform:matrix(0.204190,-0.002859,0.003500,0.249976,0,0);-ms-transform:matrix(0.204190,-0.002859,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204190,-0.002859,0.003500,0.249976,0,0);}
.m8d_c00235{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.me2_c00235{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.204595,-0.002864,0.003500,0.249976,0,0);-ms-transform:matrix(0.204595,-0.002864,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204595,-0.002864,0.003500,0.249976,0,0);}
.m20_c00235{transform:matrix(0.204980,-0.002870,0.003500,0.249976,0,0);-ms-transform:matrix(0.204980,-0.002870,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204980,-0.002870,0.003500,0.249976,0,0);}
.ma7_c00235{transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);}
.m7c_c00235{transform:matrix(0.205910,-0.002883,0.003500,0.249976,0,0);-ms-transform:matrix(0.205910,-0.002883,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205910,-0.002883,0.003500,0.249976,0,0);}
.mb6_c00235{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m42_c00235{transform:matrix(0.206170,-0.002886,0.003500,0.249976,0,0);-ms-transform:matrix(0.206170,-0.002886,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206170,-0.002886,0.003500,0.249976,0,0);}
.md2_c00235{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m40_c00235{transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-ms-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);}
.m36_c00235{transform:matrix(0.206935,-0.002897,0.003500,0.249976,0,0);-ms-transform:matrix(0.206935,-0.002897,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206935,-0.002897,0.003500,0.249976,0,0);}
.m97_c00235{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);}
.mde_c00235{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.mee_c00235{transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.208550,-0.002920,0.003500,0.249976,0,0);-ms-transform:matrix(0.208550,-0.002920,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208550,-0.002920,0.003500,0.249976,0,0);}
.m2f_c00235{transform:matrix(0.208725,-0.002922,0.003500,0.249976,0,0);-ms-transform:matrix(0.208725,-0.002922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208725,-0.002922,0.003500,0.249976,0,0);}
.mbd_c00235{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m71_c00235{transform:matrix(0.208850,-0.002924,0.003500,0.249976,0,0);-ms-transform:matrix(0.208850,-0.002924,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208850,-0.002924,0.003500,0.249976,0,0);}
.m29_c00235{transform:matrix(0.208920,-0.002925,0.003500,0.249976,0,0);-ms-transform:matrix(0.208920,-0.002925,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208920,-0.002925,0.003500,0.249976,0,0);}
.m4e_c00235{transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);-ms-transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);}
.mbe_c00235{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m84_c00235{transform:matrix(0.209419,-0.002932,0.003500,0.249976,0,0);-ms-transform:matrix(0.209419,-0.002932,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209419,-0.002932,0.003500,0.249976,0,0);}
.m37_c00235{transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-ms-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);}
.m5f_c00235{transform:matrix(0.209829,-0.002938,0.003500,0.249976,0,0);-ms-transform:matrix(0.209829,-0.002938,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209829,-0.002938,0.003500,0.249976,0,0);}
.m6e_c00235{transform:matrix(0.210079,-0.002941,0.003500,0.249976,0,0);-ms-transform:matrix(0.210079,-0.002941,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210079,-0.002941,0.003500,0.249976,0,0);}
.mb7_c00235{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m67_c00235{transform:matrix(0.211324,-0.002959,0.003500,0.249976,0,0);-ms-transform:matrix(0.211324,-0.002959,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211324,-0.002959,0.003500,0.249976,0,0);}
.m9b_c00235{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.211689,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211689,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211689,-0.002117,0.002500,0.249988,0,0);}
.m8_c00235{transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);}
.m51_c00235{transform:matrix(0.211999,-0.002968,0.003500,0.249976,0,0);-ms-transform:matrix(0.211999,-0.002968,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211999,-0.002968,0.003500,0.249976,0,0);}
.m34_c00235{transform:matrix(0.212024,-0.002968,0.003500,0.249976,0,0);-ms-transform:matrix(0.212024,-0.002968,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212024,-0.002968,0.003500,0.249976,0,0);}
.m2d_c00235{transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);}
.m46_c00235{transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);}
.m59_c00235{transform:matrix(0.213039,-0.002983,0.003500,0.249976,0,0);-ms-transform:matrix(0.213039,-0.002983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213039,-0.002983,0.003500,0.249976,0,0);}
.mdf_c00235{transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);}
.mdd_c00235{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.me1_c00235{transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.214429,-0.003002,0.003500,0.249976,0,0);-ms-transform:matrix(0.214429,-0.003002,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214429,-0.003002,0.003500,0.249976,0,0);}
.m4_c00235{transform:matrix(0.215449,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215449,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215449,-0.002154,0.002500,0.249988,0,0);}
.ma2_c00235{transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{transform:matrix(0.215874,-0.003022,0.003500,0.249976,0,0);-ms-transform:matrix(0.215874,-0.003022,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215874,-0.003022,0.003500,0.249976,0,0);}
.m3b_c00235{transform:matrix(0.216074,-0.003025,0.003500,0.249976,0,0);-ms-transform:matrix(0.216074,-0.003025,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216074,-0.003025,0.003500,0.249976,0,0);}
.ma0_c00235{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.me7_c00235{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.216789,-0.003035,0.003500,0.249976,0,0);-ms-transform:matrix(0.216789,-0.003035,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216789,-0.003035,0.003500,0.249976,0,0);}
.m50_c00235{transform:matrix(0.217704,-0.003048,0.003500,0.249976,0,0);-ms-transform:matrix(0.217704,-0.003048,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217704,-0.003048,0.003500,0.249976,0,0);}
.m5_c00235{transform:matrix(0.218144,-0.002181,0.002500,0.249988,0,0);-ms-transform:matrix(0.218144,-0.002181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218144,-0.002181,0.002500,0.249988,0,0);}
.ma1_c00235{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{transform:matrix(0.218264,-0.003056,0.003500,0.249976,0,0);-ms-transform:matrix(0.218264,-0.003056,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218264,-0.003056,0.003500,0.249976,0,0);}
.m94_c00235{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.m27_c00235{transform:matrix(0.218869,-0.003064,0.003500,0.249976,0,0);-ms-transform:matrix(0.218869,-0.003064,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218869,-0.003064,0.003500,0.249976,0,0);}
.mda_c00235{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.mad_c00235{transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);}
.mb8_c00235{transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.220454,-0.002205,0.002500,0.249988,0,0);-ms-transform:matrix(0.220454,-0.002205,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220454,-0.002205,0.002500,0.249988,0,0);}
.m79_c00235{transform:matrix(0.220853,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220853,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220853,-0.003092,0.003500,0.249976,0,0);}
.mae_c00235{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.m56_c00235{transform:matrix(0.224198,-0.003139,0.003500,0.249976,0,0);-ms-transform:matrix(0.224198,-0.003139,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224198,-0.003139,0.003500,0.249976,0,0);}
.md6_c00235{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.mbc_c00235{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.ma5_c00235{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.mc0_c00235{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00235{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m74_c00235{transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);-ms-transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228498,-0.003199,0.003500,0.249976,0,0);}
.m66_c00235{transform:matrix(0.229707,-0.003216,0.003500,0.249976,0,0);-ms-transform:matrix(0.229707,-0.003216,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229707,-0.003216,0.003500,0.249976,0,0);}
.m1e_c00235{transform:matrix(0.229902,-0.003219,0.003500,0.249976,0,0);-ms-transform:matrix(0.229902,-0.003219,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229902,-0.003219,0.003500,0.249976,0,0);}
.m96_c00235{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.me3_c00235{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.231947,-0.003247,0.003500,0.249976,0,0);-ms-transform:matrix(0.231947,-0.003247,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231947,-0.003247,0.003500,0.249976,0,0);}
.m9a_c00235{transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);}
.me8_c00235{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.232957,-0.003261,0.003500,0.249976,0,0);-ms-transform:matrix(0.232957,-0.003261,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232957,-0.003261,0.003500,0.249976,0,0);}
.m6f_c00235{transform:matrix(0.233042,-0.003263,0.003500,0.249976,0,0);-ms-transform:matrix(0.233042,-0.003263,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233042,-0.003263,0.003500,0.249976,0,0);}
.m44_c00235{transform:matrix(0.233502,-0.003269,0.003500,0.249976,0,0);-ms-transform:matrix(0.233502,-0.003269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233502,-0.003269,0.003500,0.249976,0,0);}
.mcc_c00235{transform:matrix(0.233585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{transform:matrix(0.233612,-0.003271,0.003500,0.249976,0,0);-ms-transform:matrix(0.233612,-0.003271,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233612,-0.003271,0.003500,0.249976,0,0);}
.m22_c00235{transform:matrix(0.233952,-0.003275,0.003500,0.249976,0,0);-ms-transform:matrix(0.233952,-0.003275,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233952,-0.003275,0.003500,0.249976,0,0);}
.me6_c00235{transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);}
.m5a_c00235{transform:matrix(0.234922,-0.003289,0.003500,0.249976,0,0);-ms-transform:matrix(0.234922,-0.003289,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234922,-0.003289,0.003500,0.249976,0,0);}
.m73_c00235{transform:matrix(0.235582,-0.003298,0.003500,0.249976,0,0);-ms-transform:matrix(0.235582,-0.003298,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235582,-0.003298,0.003500,0.249976,0,0);}
.m99_c00235{transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);}
.m69_c00235{transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);-ms-transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);}
.m6a_c00235{transform:matrix(0.239377,-0.003351,0.003500,0.249976,0,0);-ms-transform:matrix(0.239377,-0.003351,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239377,-0.003351,0.003500,0.249976,0,0);}
.mc_c00235{transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);-ms-transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);}
.m82_c00235{transform:matrix(0.245026,-0.003430,0.003500,0.249976,0,0);-ms-transform:matrix(0.245026,-0.003430,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245026,-0.003430,0.003500,0.249976,0,0);}
.m5b_c00235{transform:matrix(0.245566,-0.003438,0.003500,0.249976,0,0);-ms-transform:matrix(0.245566,-0.003438,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245566,-0.003438,0.003500,0.249976,0,0);}
.m68_c00235{transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-ms-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);}
.m52_c00235{transform:matrix(0.246361,-0.003449,0.003500,0.249976,0,0);-ms-transform:matrix(0.246361,-0.003449,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246361,-0.003449,0.003500,0.249976,0,0);}
.m75_c00235{transform:matrix(0.246891,-0.003456,0.003500,0.249976,0,0);-ms-transform:matrix(0.246891,-0.003456,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246891,-0.003456,0.003500,0.249976,0,0);}
.mdb_c00235{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.mac_c00235{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m81_c00235{transform:matrix(0.254375,-0.003561,0.003500,0.249976,0,0);-ms-transform:matrix(0.254375,-0.003561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254375,-0.003561,0.003500,0.249976,0,0);}
.mec_c00235{transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);}
.m3d_c00235{transform:matrix(0.264734,-0.003706,0.003500,0.249976,0,0);-ms-transform:matrix(0.264734,-0.003706,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264734,-0.003706,0.003500,0.249976,0,0);}
.m77_c00235{transform:matrix(0.267389,-0.003743,0.003500,0.249976,0,0);-ms-transform:matrix(0.267389,-0.003743,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267389,-0.003743,0.003500,0.249976,0,0);}
.mb2_c00235{transform:matrix(0.271590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271590,0.000000,0.000000,0.250000,0,0);}
.mb4_c00235{transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);}
.mb3_c00235{transform:matrix(0.287445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287445,0.000000,0.000000,0.250000,0,0);}
.m60_c00235{transform:matrix(0.308205,-0.004315,0.003500,0.249976,0,0);-ms-transform:matrix(0.308205,-0.004315,0.003500,0.249976,0,0);-webkit-transform:matrix(0.308205,-0.004315,0.003500,0.249976,0,0);}
.m76_c00235{transform:matrix(0.337547,-0.004726,0.003500,0.249976,0,0);-ms-transform:matrix(0.337547,-0.004726,0.003500,0.249976,0,0);-webkit-transform:matrix(0.337547,-0.004726,0.003500,0.249976,0,0);}
.m78_c00235{transform:matrix(0.493807,-0.006913,0.003500,0.249976,0,0);-ms-transform:matrix(0.493807,-0.006913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.493807,-0.006913,0.003500,0.249976,0,0);}
.mf3_c00235{transform:matrix(2.319285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.319285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.319285,0.000000,0.000000,0.250000,0,0);}
.mf5_c00235{transform:matrix(7.004950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.004950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.004950,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:0.000000px;}
.fc0_c00235{color:transparent;}
.fs14_c00235{font-size:22.050000px;}
.fsb_c00235{font-size:57.755659px;}
.fs5_c00235{font-size:58.805762px;}
.fsf_c00235{font-size:59.850000px;}
.fs2_c00235{font-size:59.855865px;}
.fse_c00235{font-size:60.900000px;}
.fs7_c00235{font-size:60.905968px;}
.fs12_c00235{font-size:61.950000px;}
.fs1_c00235{font-size:63.003150px;}
.fs8_c00235{font-size:63.006174px;}
.fs13_c00235{font-size:64.050000px;}
.fs6_c00235{font-size:64.056277px;}
.fs10_c00235{font-size:65.100000px;}
.fsc_c00235{font-size:66.156482px;}
.fs9_c00235{font-size:67.206585px;}
.fs4_c00235{font-size:68.256688px;}
.fs11_c00235{font-size:69.300000px;}
.fsd_c00235{font-size:71.400000px;}
.fs3_c00235{font-size:71.406997px;}
.fsa_c00235{font-size:72.457100px;}
.fs0_c00235{font-size:80.850000px;}
.y0_c00235{bottom:0.000000px;}
.yd0_c00235{bottom:27.810000px;}
.yd1_c00235{bottom:28.357500px;}
.yd2_c00235{bottom:29.713500px;}
.yd3_c00235{bottom:30.129000px;}
.yd4_c00235{bottom:30.489000px;}
.yd5_c00235{bottom:31.237500px;}
.yc7_c00235{bottom:44.280000px;}
.yc8_c00235{bottom:44.773500px;}
.yc9_c00235{bottom:45.411000px;}
.yca_c00235{bottom:45.556500px;}
.ycb_c00235{bottom:46.155000px;}
.ycc_c00235{bottom:46.327500px;}
.ycd_c00235{bottom:46.518000px;}
.yce_c00235{bottom:47.184000px;}
.ycf_c00235{bottom:47.430000px;}
.ybf_c00235{bottom:61.291500px;}
.yc0_c00235{bottom:61.858500px;}
.yc1_c00235{bottom:62.101500px;}
.yc2_c00235{bottom:62.691000px;}
.yc3_c00235{bottom:63.364500px;}
.yc4_c00235{bottom:63.579000px;}
.yc5_c00235{bottom:64.395000px;}
.yc6_c00235{bottom:64.635000px;}
.yd6_c00235{bottom:78.030000px;}
.yb6_c00235{bottom:78.841500px;}
.yb7_c00235{bottom:79.335000px;}
.yb8_c00235{bottom:79.899000px;}
.yb9_c00235{bottom:80.035500px;}
.yba_c00235{bottom:80.248500px;}
.ybb_c00235{bottom:80.650500px;}
.ybc_c00235{bottom:80.899500px;}
.ybd_c00235{bottom:81.660000px;}
.ybe_c00235{bottom:81.993000px;}
.yad_c00235{bottom:95.580000px;}
.yae_c00235{bottom:95.775000px;}
.yaf_c00235{bottom:96.375000px;}
.yb0_c00235{bottom:96.598500px;}
.yb1_c00235{bottom:96.913500px;}
.yb2_c00235{bottom:97.458000px;}
.yb3_c00235{bottom:98.407500px;}
.yb4_c00235{bottom:98.799000px;}
.yb5_c00235{bottom:98.952000px;}
.ya5_c00235{bottom:113.133000px;}
.ya6_c00235{bottom:114.054000px;}
.ya7_c00235{bottom:114.585000px;}
.ya8_c00235{bottom:114.864000px;}
.ya9_c00235{bottom:115.840500px;}
.yaa_c00235{bottom:116.613000px;}
.yab_c00235{bottom:116.940000px;}
.yac_c00235{bottom:117.279000px;}
.y9b_c00235{bottom:131.223000px;}
.y9c_c00235{bottom:131.622000px;}
.y9d_c00235{bottom:131.802000px;}
.y9e_c00235{bottom:132.195000px;}
.y9f_c00235{bottom:132.690000px;}
.ya0_c00235{bottom:132.960000px;}
.ya1_c00235{bottom:133.332000px;}
.ya2_c00235{bottom:134.068500px;}
.ya3_c00235{bottom:134.236500px;}
.ya4_c00235{bottom:134.490000px;}
.y9a_c00235{bottom:150.250500px;}
.yd7_c00235{bottom:153.630000px;}
.y99_c00235{bottom:167.362500px;}
.y91_c00235{bottom:183.871500px;}
.y92_c00235{bottom:184.584000px;}
.y93_c00235{bottom:184.767000px;}
.y94_c00235{bottom:185.245500px;}
.y95_c00235{bottom:185.791500px;}
.y96_c00235{bottom:186.135000px;}
.y97_c00235{bottom:186.517500px;}
.y98_c00235{bottom:186.714000px;}
.y90_c00235{bottom:202.482000px;}
.y8f_c00235{bottom:220.875000px;}
.y8e_c00235{bottom:237.882000px;}
.y8d_c00235{bottom:254.920899px;}
.y8a_c00235{bottom:254.920965px;}
.y8c_c00235{bottom:254.921142px;}
.y8b_c00235{bottom:254.921244px;}
.y89_c00235{bottom:254.921349px;}
.y87_c00235{bottom:254.921814px;}
.y86_c00235{bottom:254.921895px;}
.y88_c00235{bottom:254.922012px;}
.y85_c00235{bottom:254.922117px;}
.y7c_c00235{bottom:271.929435px;}
.y7d_c00235{bottom:271.929693px;}
.y7e_c00235{bottom:271.929912px;}
.y7f_c00235{bottom:271.930410px;}
.y80_c00235{bottom:271.931067px;}
.y82_c00235{bottom:271.931403px;}
.y81_c00235{bottom:271.931586px;}
.y83_c00235{bottom:271.931841px;}
.y84_c00235{bottom:271.932558px;}
.y7b_c00235{bottom:289.244259px;}
.y78_c00235{bottom:289.244466px;}
.y75_c00235{bottom:289.244595px;}
.y7a_c00235{bottom:289.244622px;}
.y79_c00235{bottom:289.244703px;}
.y74_c00235{bottom:289.245057px;}
.y77_c00235{bottom:289.245150px;}
.y76_c00235{bottom:289.245231px;}
.y6f_c00235{bottom:306.139209px;}
.y70_c00235{bottom:306.139245px;}
.y72_c00235{bottom:306.139599px;}
.y6e_c00235{bottom:306.139731px;}
.y6c_c00235{bottom:306.139836px;}
.y6d_c00235{bottom:306.139854px;}
.y71_c00235{bottom:306.139884px;}
.y73_c00235{bottom:306.140217px;}
.y69_c00235{bottom:322.912602px;}
.y6b_c00235{bottom:322.913097px;}
.y6a_c00235{bottom:322.913118px;}
.y68_c00235{bottom:322.913163px;}
.y67_c00235{bottom:322.913328px;}
.y66_c00235{bottom:322.913691px;}
.y65_c00235{bottom:322.913892px;}
.y5d_c00235{bottom:338.293362px;}
.y5e_c00235{bottom:338.581761px;}
.y5f_c00235{bottom:339.275202px;}
.y60_c00235{bottom:339.534207px;}
.y61_c00235{bottom:340.309110px;}
.y62_c00235{bottom:340.438974px;}
.y63_c00235{bottom:341.176932px;}
.y64_c00235{bottom:341.336097px;}
.y57_c00235{bottom:355.843659px;}
.y58_c00235{bottom:356.583102px;}
.y59_c00235{bottom:356.906727px;}
.y5a_c00235{bottom:357.190167px;}
.y5b_c00235{bottom:357.969006px;}
.y5c_c00235{bottom:358.479624px;}
.y50_c00235{bottom:373.663410px;}
.y51_c00235{bottom:374.146992px;}
.y52_c00235{bottom:374.712117px;}
.y53_c00235{bottom:375.192957px;}
.y54_c00235{bottom:375.962652px;}
.y55_c00235{bottom:376.302411px;}
.y56_c00235{bottom:376.558965px;}
.y4e_c00235{bottom:392.392266px;}
.y4d_c00235{bottom:392.392590px;}
.y4b_c00235{bottom:392.392716px;}
.y4f_c00235{bottom:392.392764px;}
.y4a_c00235{bottom:392.392959px;}
.y4c_c00235{bottom:392.393052px;}
.y49_c00235{bottom:392.393241px;}
.y44_c00235{bottom:409.641894px;}
.y48_c00235{bottom:409.641984px;}
.y43_c00235{bottom:409.642359px;}
.y46_c00235{bottom:409.642608px;}
.y45_c00235{bottom:409.642632px;}
.y47_c00235{bottom:409.642725px;}
.y41_c00235{bottom:409.642881px;}
.y42_c00235{bottom:409.642920px;}
.y38_c00235{bottom:423.622362px;}
.y39_c00235{bottom:423.896223px;}
.y3a_c00235{bottom:424.126842px;}
.y3b_c00235{bottom:424.615560px;}
.y3c_c00235{bottom:425.176713px;}
.y3d_c00235{bottom:425.712759px;}
.y3e_c00235{bottom:425.867352px;}
.y3f_c00235{bottom:426.864435px;}
.y40_c00235{bottom:427.117032px;}
.y35_c00235{bottom:444.240033px;}
.y37_c00235{bottom:444.240348px;}
.y31_c00235{bottom:444.240384px;}
.y36_c00235{bottom:444.240549px;}
.y34_c00235{bottom:444.240678px;}
.y32_c00235{bottom:444.240921px;}
.y33_c00235{bottom:444.241059px;}
.y2b_c00235{bottom:460.562487px;}
.y2d_c00235{bottom:460.563105px;}
.y2e_c00235{bottom:460.563123px;}
.y2c_c00235{bottom:460.563186px;}
.y2a_c00235{bottom:460.563231px;}
.y29_c00235{bottom:460.563414px;}
.y2f_c00235{bottom:460.563720px;}
.y30_c00235{bottom:460.563819px;}
.y27_c00235{bottom:478.500231px;}
.y28_c00235{bottom:478.500327px;}
.y26_c00235{bottom:478.500555px;}
.y25_c00235{bottom:478.501017px;}
.y24_c00235{bottom:478.501722px;}
.y1c_c00235{bottom:495.815184px;}
.y1d_c00235{bottom:495.815442px;}
.y1e_c00235{bottom:495.815739px;}
.y1f_c00235{bottom:495.816477px;}
.y21_c00235{bottom:495.816993px;}
.y20_c00235{bottom:495.817194px;}
.y22_c00235{bottom:495.817230px;}
.y23_c00235{bottom:495.817788px;}
.y18_c00235{bottom:512.944635px;}
.y1a_c00235{bottom:512.944911px;}
.y16_c00235{bottom:512.945004px;}
.y19_c00235{bottom:512.945013px;}
.y1b_c00235{bottom:512.945049px;}
.y17_c00235{bottom:512.945301px;}
.y10_c00235{bottom:529.769874px;}
.yf_c00235{bottom:529.769895px;}
.ye_c00235{bottom:529.770018px;}
.yd_c00235{bottom:529.770279px;}
.y11_c00235{bottom:529.770513px;}
.y12_c00235{bottom:529.771191px;}
.y15_c00235{bottom:529.771506px;}
.y13_c00235{bottom:529.771590px;}
.y14_c00235{bottom:529.772067px;}
.ya_c00235{bottom:544.863000px;}
.yb_c00235{bottom:547.065669px;}
.yc_c00235{bottom:548.222454px;}
.y2_c00235{bottom:562.411500px;}
.y3_c00235{bottom:562.778310px;}
.y4_c00235{bottom:563.062275px;}
.y5_c00235{bottom:563.586075px;}
.y6_c00235{bottom:564.104505px;}
.y7_c00235{bottom:564.269220px;}
.y8_c00235{bottom:564.736005px;}
.y9_c00235{bottom:565.038390px;}
.y1_c00235{bottom:576.183000px;}
.h16_c00235{height:22.050000px;}
.hd_c00235{height:57.755659px;}
.h7_c00235{height:58.805762px;}
.h11_c00235{height:59.850000px;}
.h4_c00235{height:59.855865px;}
.h10_c00235{height:60.900000px;}
.h9_c00235{height:60.905968px;}
.h14_c00235{height:61.950000px;}
.h3_c00235{height:63.003150px;}
.ha_c00235{height:63.006174px;}
.h15_c00235{height:64.050000px;}
.h8_c00235{height:64.056277px;}
.h12_c00235{height:65.100000px;}
.he_c00235{height:66.156482px;}
.hb_c00235{height:67.206585px;}
.h6_c00235{height:68.256688px;}
.h13_c00235{height:69.300000px;}
.hf_c00235{height:71.400000px;}
.h5_c00235{height:71.406997px;}
.hc_c00235{height:72.457100px;}
.h2_c00235{height:80.850000px;}
.h1_c00235{height:624.750000px;}
.h0_c00235{height:625.050000px;}
.w0_c00235{width:378.540000px;}
.w1_c00235{width:378.750000px;}
.x0_c00235{left:0.000000px;}
.x3_c00235{left:47.647500px;}
.x2c_c00235{left:48.797199px;}
.x1_c00235{left:53.730000px;}
.x15_c00235{left:56.701476px;}
.x67_c00235{left:58.860000px;}
.x73_c00235{left:64.416000px;}
.x43_c00235{left:67.233957px;}
.x2d_c00235{left:69.858993px;}
.xd_c00235{left:72.631590px;}
.x46_c00235{left:75.874938px;}
.x1b_c00235{left:77.762370px;}
.x49_c00235{left:78.843507px;}
.x37_c00235{left:79.925925px;}
.x52_c00235{left:81.274407px;}
.x4_c00235{left:84.328500px;}
.x4e_c00235{left:85.594191px;}
.x2e_c00235{left:87.617745px;}
.xe_c00235{left:90.723639px;}
.x77_c00235{left:92.745000px;}
.x27_c00235{left:94.236000px;}
.x3b_c00235{left:96.794124px;}
.x23_c00235{left:100.173696px;}
.x5c_c00235{left:101.790000px;}
.x57_c00235{left:102.870000px;}
.x71_c00235{left:106.047000px;}
.x16_c00235{left:107.196867px;}
.x5_c00235{left:112.725000px;}
.x74_c00235{left:114.369000px;}
.x3f_c00235{left:115.658667px;}
.x38_c00235{left:118.809048px;}
.x62_c00235{left:120.823500px;}
.x28_c00235{left:122.858607px;}
.x2f_c00235{left:125.205270px;}
.x1c_c00235{left:128.257761px;}
.x5d_c00235{left:129.600000px;}
.xf_c00235{left:130.686972px;}
.x4a_c00235{left:132.578028px;}
.x29_c00235{left:139.870446px;}
.x78_c00235{left:144.051000px;}
.x40_c00235{left:145.097406px;}
.x10_c00235{left:150.939441px;}
.x20_c00235{left:153.098994px;}
.x1d_c00235{left:155.530095px;}
.x72_c00235{left:156.733500px;}
.x6c_c00235{left:159.840000px;}
.x24_c00235{left:161.739771px;}
.x7b_c00235{left:163.767000px;}
.x6_c00235{left:165.105000px;}
.x30_c00235{left:168.395379px;}
.x11_c00235{left:170.381742px;}
.x68_c00235{left:172.260000px;}
.x5e_c00235{left:175.230000px;}
.x39_c00235{left:176.594367px;}
.x4f_c00235{left:180.103692px;}
.x2_c00235{left:181.170000px;}
.x6f_c00235{left:182.413500px;}
.x44_c00235{left:185.505141px;}
.x63_c00235{left:186.975000px;}
.x33_c00235{left:189.825513px;}
.x5f_c00235{left:195.480000px;}
.x17_c00235{left:196.845444px;}
.x50_c00235{left:198.465783px;}
.x3a_c00235{left:199.815924px;}
.x25_c00235{left:201.434541px;}
.x12_c00235{left:203.865294px;}
.xb_c00235{left:205.300500px;}
.x45_c00235{left:207.647988px;}
.x2a_c00235{left:209.266554px;}
.x21_c00235{left:211.694481px;}
.x47_c00235{left:213.046818px;}
.x7_c00235{left:216.948000px;}
.x7c_c00235{left:218.244000px;}
.x13_c00235{left:221.147175px;}
.x53_c00235{left:223.307253px;}
.x6d_c00235{left:225.450000px;}
.x18_c00235{left:227.628471px;}
.x69_c00235{left:231.390000px;}
.x8_c00235{left:233.419500px;}
.x26_c00235{left:235.728261px;}
.x7a_c00235{left:238.561500px;}
.x41_c00235{left:241.549938px;}
.x51_c00235{left:244.640334px;}
.x54_c00235{left:246.260247px;}
.x6a_c00235{left:247.320000px;}
.x4b_c00235{left:250.849212px;}
.x19_c00235{left:254.090658px;}
.x34_c00235{left:257.872848px;}
.x60_c00235{left:261.090000px;}
.x58_c00235{left:262.440000px;}
.x1e_c00235{left:264.891015px;}
.x14_c00235{left:266.511558px;}
.x2b_c00235{left:268.672188px;}
.x4c_c00235{left:270.561576px;}
.x55_c00235{left:272.722434px;}
.x22_c00235{left:274.070703px;}
.x64_c00235{left:275.796000px;}
.x3c_c00235{left:278.244267px;}
.x9_c00235{left:280.098000px;}
.x1a_c00235{left:282.713265px;}
.x48_c00235{left:285.683556px;}
.xc_c00235{left:287.928000px;}
.x1f_c00235{left:290.543034px;}
.x7d_c00235{left:292.053000px;}
.x61_c00235{left:297.000000px;}
.x31_c00235{left:298.270206px;}
.x70_c00235{left:300.124500px;}
.x42_c00235{left:302.051109px;}
.x79_c00235{left:304.156500px;}
.x35_c00235{left:306.747924px;}
.xa_c00235{left:310.336500px;}
.x3d_c00235{left:312.264678px;}
.x65_c00235{left:314.077500px;}
.x75_c00235{left:316.317000px;}
.x32_c00235{left:317.705979px;}
.x59_c00235{left:319.410000px;}
.x6e_c00235{left:320.490000px;}
.x4d_c00235{left:321.867135px;}
.x56_c00235{left:325.108203px;}
.x36_c00235{left:327.270456px;}
.x76_c00235{left:329.037000px;}
.x6b_c00235{left:332.100000px;}
.x66_c00235{left:333.801000px;}
.x3e_c00235{left:337.877106px;}
.x5a_c00235{left:340.470000px;}
.x5b_c00235{left:358.560000px;}
.x7e_c00235{left:375.840000px;}
.x7f_c00235{left:377.460000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.000000pt;}
.fs14_c00235{font-size:19.600000pt;}
.fsb_c00235{font-size:51.338364pt;}
.fs5_c00235{font-size:52.271789pt;}
.fsf_c00235{font-size:53.200000pt;}
.fs2_c00235{font-size:53.205213pt;}
.fse_c00235{font-size:54.133333pt;}
.fs7_c00235{font-size:54.138638pt;}
.fs12_c00235{font-size:55.066667pt;}
.fs1_c00235{font-size:56.002800pt;}
.fs8_c00235{font-size:56.005488pt;}
.fs13_c00235{font-size:56.933333pt;}
.fs6_c00235{font-size:56.938913pt;}
.fs10_c00235{font-size:57.866667pt;}
.fsc_c00235{font-size:58.805762pt;}
.fs9_c00235{font-size:59.739187pt;}
.fs4_c00235{font-size:60.672612pt;}
.fs11_c00235{font-size:61.600000pt;}
.fsd_c00235{font-size:63.466667pt;}
.fs3_c00235{font-size:63.472886pt;}
.fsa_c00235{font-size:64.406311pt;}
.fs0_c00235{font-size:71.866667pt;}
.y0_c00235{bottom:0.000000pt;}
.yd0_c00235{bottom:24.720000pt;}
.yd1_c00235{bottom:25.206667pt;}
.yd2_c00235{bottom:26.412000pt;}
.yd3_c00235{bottom:26.781333pt;}
.yd4_c00235{bottom:27.101333pt;}
.yd5_c00235{bottom:27.766667pt;}
.yc7_c00235{bottom:39.360000pt;}
.yc8_c00235{bottom:39.798667pt;}
.yc9_c00235{bottom:40.365333pt;}
.yca_c00235{bottom:40.494667pt;}
.ycb_c00235{bottom:41.026667pt;}
.ycc_c00235{bottom:41.180000pt;}
.ycd_c00235{bottom:41.349333pt;}
.yce_c00235{bottom:41.941333pt;}
.ycf_c00235{bottom:42.160000pt;}
.ybf_c00235{bottom:54.481333pt;}
.yc0_c00235{bottom:54.985333pt;}
.yc1_c00235{bottom:55.201333pt;}
.yc2_c00235{bottom:55.725333pt;}
.yc3_c00235{bottom:56.324000pt;}
.yc4_c00235{bottom:56.514667pt;}
.yc5_c00235{bottom:57.240000pt;}
.yc6_c00235{bottom:57.453333pt;}
.yd6_c00235{bottom:69.360000pt;}
.yb6_c00235{bottom:70.081333pt;}
.yb7_c00235{bottom:70.520000pt;}
.yb8_c00235{bottom:71.021333pt;}
.yb9_c00235{bottom:71.142667pt;}
.yba_c00235{bottom:71.332000pt;}
.ybb_c00235{bottom:71.689333pt;}
.ybc_c00235{bottom:71.910667pt;}
.ybd_c00235{bottom:72.586667pt;}
.ybe_c00235{bottom:72.882667pt;}
.yad_c00235{bottom:84.960000pt;}
.yae_c00235{bottom:85.133333pt;}
.yaf_c00235{bottom:85.666667pt;}
.yb0_c00235{bottom:85.865333pt;}
.yb1_c00235{bottom:86.145333pt;}
.yb2_c00235{bottom:86.629333pt;}
.yb3_c00235{bottom:87.473333pt;}
.yb4_c00235{bottom:87.821333pt;}
.yb5_c00235{bottom:87.957333pt;}
.ya5_c00235{bottom:100.562667pt;}
.ya6_c00235{bottom:101.381333pt;}
.ya7_c00235{bottom:101.853333pt;}
.ya8_c00235{bottom:102.101333pt;}
.ya9_c00235{bottom:102.969333pt;}
.yaa_c00235{bottom:103.656000pt;}
.yab_c00235{bottom:103.946667pt;}
.yac_c00235{bottom:104.248000pt;}
.y9b_c00235{bottom:116.642667pt;}
.y9c_c00235{bottom:116.997333pt;}
.y9d_c00235{bottom:117.157333pt;}
.y9e_c00235{bottom:117.506667pt;}
.y9f_c00235{bottom:117.946667pt;}
.ya0_c00235{bottom:118.186667pt;}
.ya1_c00235{bottom:118.517333pt;}
.ya2_c00235{bottom:119.172000pt;}
.ya3_c00235{bottom:119.321333pt;}
.ya4_c00235{bottom:119.546667pt;}
.y9a_c00235{bottom:133.556000pt;}
.yd7_c00235{bottom:136.560000pt;}
.y99_c00235{bottom:148.766667pt;}
.y91_c00235{bottom:163.441333pt;}
.y92_c00235{bottom:164.074667pt;}
.y93_c00235{bottom:164.237333pt;}
.y94_c00235{bottom:164.662667pt;}
.y95_c00235{bottom:165.148000pt;}
.y96_c00235{bottom:165.453333pt;}
.y97_c00235{bottom:165.793333pt;}
.y98_c00235{bottom:165.968000pt;}
.y90_c00235{bottom:179.984000pt;}
.y8f_c00235{bottom:196.333333pt;}
.y8e_c00235{bottom:211.450667pt;}
.y8d_c00235{bottom:226.596355pt;}
.y8a_c00235{bottom:226.596413pt;}
.y8c_c00235{bottom:226.596571pt;}
.y8b_c00235{bottom:226.596661pt;}
.y89_c00235{bottom:226.596755pt;}
.y87_c00235{bottom:226.597168pt;}
.y86_c00235{bottom:226.597240pt;}
.y88_c00235{bottom:226.597344pt;}
.y85_c00235{bottom:226.597437pt;}
.y7c_c00235{bottom:241.715053pt;}
.y7d_c00235{bottom:241.715283pt;}
.y7e_c00235{bottom:241.715477pt;}
.y7f_c00235{bottom:241.715920pt;}
.y80_c00235{bottom:241.716504pt;}
.y82_c00235{bottom:241.716803pt;}
.y81_c00235{bottom:241.716965pt;}
.y83_c00235{bottom:241.717192pt;}
.y84_c00235{bottom:241.717829pt;}
.y7b_c00235{bottom:257.106008pt;}
.y78_c00235{bottom:257.106192pt;}
.y75_c00235{bottom:257.106307pt;}
.y7a_c00235{bottom:257.106331pt;}
.y79_c00235{bottom:257.106403pt;}
.y74_c00235{bottom:257.106717pt;}
.y77_c00235{bottom:257.106800pt;}
.y76_c00235{bottom:257.106872pt;}
.y6f_c00235{bottom:272.123741pt;}
.y70_c00235{bottom:272.123773pt;}
.y72_c00235{bottom:272.124088pt;}
.y6e_c00235{bottom:272.124205pt;}
.y6c_c00235{bottom:272.124299pt;}
.y6d_c00235{bottom:272.124315pt;}
.y71_c00235{bottom:272.124341pt;}
.y73_c00235{bottom:272.124637pt;}
.y69_c00235{bottom:287.033424pt;}
.y6b_c00235{bottom:287.033864pt;}
.y6a_c00235{bottom:287.033883pt;}
.y68_c00235{bottom:287.033923pt;}
.y67_c00235{bottom:287.034069pt;}
.y66_c00235{bottom:287.034392pt;}
.y65_c00235{bottom:287.034571pt;}
.y5d_c00235{bottom:300.705211pt;}
.y5e_c00235{bottom:300.961565pt;}
.y5f_c00235{bottom:301.577957pt;}
.y60_c00235{bottom:301.808184pt;}
.y61_c00235{bottom:302.496987pt;}
.y62_c00235{bottom:302.612421pt;}
.y63_c00235{bottom:303.268384pt;}
.y64_c00235{bottom:303.409864pt;}
.y57_c00235{bottom:316.305475pt;}
.y58_c00235{bottom:316.962757pt;}
.y59_c00235{bottom:317.250424pt;}
.y5a_c00235{bottom:317.502371pt;}
.y5b_c00235{bottom:318.194672pt;}
.y5c_c00235{bottom:318.648555pt;}
.y50_c00235{bottom:332.145253pt;}
.y51_c00235{bottom:332.575104pt;}
.y52_c00235{bottom:333.077437pt;}
.y53_c00235{bottom:333.504851pt;}
.y54_c00235{bottom:334.189024pt;}
.y55_c00235{bottom:334.491032pt;}
.y56_c00235{bottom:334.719080pt;}
.y4e_c00235{bottom:348.793125pt;}
.y4d_c00235{bottom:348.793413pt;}
.y4b_c00235{bottom:348.793525pt;}
.y4f_c00235{bottom:348.793568pt;}
.y4a_c00235{bottom:348.793741pt;}
.y4c_c00235{bottom:348.793824pt;}
.y49_c00235{bottom:348.793992pt;}
.y44_c00235{bottom:364.126128pt;}
.y48_c00235{bottom:364.126208pt;}
.y43_c00235{bottom:364.126541pt;}
.y46_c00235{bottom:364.126763pt;}
.y45_c00235{bottom:364.126784pt;}
.y47_c00235{bottom:364.126867pt;}
.y41_c00235{bottom:364.127005pt;}
.y42_c00235{bottom:364.127040pt;}
.y38_c00235{bottom:376.553211pt;}
.y39_c00235{bottom:376.796643pt;}
.y3a_c00235{bottom:377.001637pt;}
.y3b_c00235{bottom:377.436053pt;}
.y3c_c00235{bottom:377.934856pt;}
.y3d_c00235{bottom:378.411341pt;}
.y3e_c00235{bottom:378.548757pt;}
.y3f_c00235{bottom:379.435053pt;}
.y40_c00235{bottom:379.659584pt;}
.y35_c00235{bottom:394.880029pt;}
.y37_c00235{bottom:394.880309pt;}
.y31_c00235{bottom:394.880341pt;}
.y36_c00235{bottom:394.880488pt;}
.y34_c00235{bottom:394.880603pt;}
.y32_c00235{bottom:394.880819pt;}
.y33_c00235{bottom:394.880941pt;}
.y2b_c00235{bottom:409.388877pt;}
.y2d_c00235{bottom:409.389427pt;}
.y2e_c00235{bottom:409.389443pt;}
.y2c_c00235{bottom:409.389499pt;}
.y2a_c00235{bottom:409.389539pt;}
.y29_c00235{bottom:409.389701pt;}
.y2f_c00235{bottom:409.389973pt;}
.y30_c00235{bottom:409.390061pt;}
.y27_c00235{bottom:425.333539pt;}
.y28_c00235{bottom:425.333624pt;}
.y26_c00235{bottom:425.333827pt;}
.y25_c00235{bottom:425.334237pt;}
.y24_c00235{bottom:425.334864pt;}
.y1c_c00235{bottom:440.724608pt;}
.y1d_c00235{bottom:440.724837pt;}
.y1e_c00235{bottom:440.725101pt;}
.y1f_c00235{bottom:440.725757pt;}
.y21_c00235{bottom:440.726216pt;}
.y20_c00235{bottom:440.726395pt;}
.y22_c00235{bottom:440.726427pt;}
.y23_c00235{bottom:440.726923pt;}
.y18_c00235{bottom:455.950787pt;}
.y1a_c00235{bottom:455.951032pt;}
.y16_c00235{bottom:455.951115pt;}
.y19_c00235{bottom:455.951123pt;}
.y1b_c00235{bottom:455.951155pt;}
.y17_c00235{bottom:455.951379pt;}
.y10_c00235{bottom:470.906555pt;}
.yf_c00235{bottom:470.906573pt;}
.ye_c00235{bottom:470.906683pt;}
.yd_c00235{bottom:470.906915pt;}
.y11_c00235{bottom:470.907123pt;}
.y12_c00235{bottom:470.907725pt;}
.y15_c00235{bottom:470.908005pt;}
.y13_c00235{bottom:470.908080pt;}
.y14_c00235{bottom:470.908504pt;}
.ya_c00235{bottom:484.322667pt;}
.yb_c00235{bottom:486.280595pt;}
.yc_c00235{bottom:487.308848pt;}
.y2_c00235{bottom:499.921333pt;}
.y3_c00235{bottom:500.247387pt;}
.y4_c00235{bottom:500.499800pt;}
.y5_c00235{bottom:500.965400pt;}
.y6_c00235{bottom:501.426227pt;}
.y7_c00235{bottom:501.572640pt;}
.y8_c00235{bottom:501.987560pt;}
.y9_c00235{bottom:502.256347pt;}
.y1_c00235{bottom:512.162667pt;}
.h16_c00235{height:19.600000pt;}
.hd_c00235{height:51.338364pt;}
.h7_c00235{height:52.271789pt;}
.h11_c00235{height:53.200000pt;}
.h4_c00235{height:53.205213pt;}
.h10_c00235{height:54.133333pt;}
.h9_c00235{height:54.138638pt;}
.h14_c00235{height:55.066667pt;}
.h3_c00235{height:56.002800pt;}
.ha_c00235{height:56.005488pt;}
.h15_c00235{height:56.933333pt;}
.h8_c00235{height:56.938913pt;}
.h12_c00235{height:57.866667pt;}
.he_c00235{height:58.805762pt;}
.hb_c00235{height:59.739187pt;}
.h6_c00235{height:60.672612pt;}
.h13_c00235{height:61.600000pt;}
.hf_c00235{height:63.466667pt;}
.h5_c00235{height:63.472886pt;}
.hc_c00235{height:64.406311pt;}
.h2_c00235{height:71.866667pt;}
.h1_c00235{height:555.333333pt;}
.h0_c00235{height:555.600000pt;}
.w0_c00235{width:336.480000pt;}
.w1_c00235{width:336.666667pt;}
.x0_c00235{left:0.000000pt;}
.x3_c00235{left:42.353333pt;}
.x2c_c00235{left:43.375288pt;}
.x1_c00235{left:47.760000pt;}
.x15_c00235{left:50.401312pt;}
.x67_c00235{left:52.320000pt;}
.x73_c00235{left:57.258667pt;}
.x43_c00235{left:59.763517pt;}
.x2d_c00235{left:62.096883pt;}
.xd_c00235{left:64.561413pt;}
.x46_c00235{left:67.444389pt;}
.x1b_c00235{left:69.122107pt;}
.x49_c00235{left:70.083117pt;}
.x37_c00235{left:71.045267pt;}
.x52_c00235{left:72.243917pt;}
.x4_c00235{left:74.958667pt;}
.x4e_c00235{left:76.083725pt;}
.x2e_c00235{left:77.882440pt;}
.xe_c00235{left:80.643235pt;}
.x77_c00235{left:82.440000pt;}
.x27_c00235{left:83.765333pt;}
.x3b_c00235{left:86.039221pt;}
.x23_c00235{left:89.043285pt;}
.x5c_c00235{left:90.480000pt;}
.x57_c00235{left:91.440000pt;}
.x71_c00235{left:94.264000pt;}
.x16_c00235{left:95.286104pt;}
.x5_c00235{left:100.200000pt;}
.x74_c00235{left:101.661333pt;}
.x3f_c00235{left:102.807704pt;}
.x38_c00235{left:105.608043pt;}
.x62_c00235{left:107.398667pt;}
.x28_c00235{left:109.207651pt;}
.x2f_c00235{left:111.293573pt;}
.x1c_c00235{left:114.006899pt;}
.x5d_c00235{left:115.200000pt;}
.xf_c00235{left:116.166197pt;}
.x4a_c00235{left:117.847136pt;}
.x29_c00235{left:124.329285pt;}
.x78_c00235{left:128.045333pt;}
.x40_c00235{left:128.975472pt;}
.x10_c00235{left:134.168392pt;}
.x20_c00235{left:136.087995pt;}
.x1d_c00235{left:138.248973pt;}
.x72_c00235{left:139.318667pt;}
.x6c_c00235{left:142.080000pt;}
.x24_c00235{left:143.768685pt;}
.x7b_c00235{left:145.570667pt;}
.x6_c00235{left:146.760000pt;}
.x30_c00235{left:149.684781pt;}
.x11_c00235{left:151.450437pt;}
.x68_c00235{left:153.120000pt;}
.x5e_c00235{left:155.760000pt;}
.x39_c00235{left:156.972771pt;}
.x4f_c00235{left:160.092171pt;}
.x2_c00235{left:161.040000pt;}
.x6f_c00235{left:162.145333pt;}
.x44_c00235{left:164.893459pt;}
.x63_c00235{left:166.200000pt;}
.x33_c00235{left:168.733789pt;}
.x5f_c00235{left:173.760000pt;}
.x17_c00235{left:174.973728pt;}
.x50_c00235{left:176.414029pt;}
.x3a_c00235{left:177.614155pt;}
.x25_c00235{left:179.052925pt;}
.x12_c00235{left:181.213595pt;}
.xb_c00235{left:182.489333pt;}
.x45_c00235{left:184.575989pt;}
.x2a_c00235{left:186.014715pt;}
.x21_c00235{left:188.172872pt;}
.x47_c00235{left:189.374949pt;}
.x7_c00235{left:192.842667pt;}
.x7c_c00235{left:193.994667pt;}
.x13_c00235{left:196.575267pt;}
.x53_c00235{left:198.495336pt;}
.x6d_c00235{left:200.400000pt;}
.x18_c00235{left:202.336419pt;}
.x69_c00235{left:205.680000pt;}
.x8_c00235{left:207.484000pt;}
.x26_c00235{left:209.536232pt;}
.x7a_c00235{left:212.054667pt;}
.x41_c00235{left:214.711056pt;}
.x51_c00235{left:217.458075pt;}
.x54_c00235{left:218.897997pt;}
.x6a_c00235{left:219.840000pt;}
.x4b_c00235{left:222.977077pt;}
.x19_c00235{left:225.858363pt;}
.x34_c00235{left:229.220309pt;}
.x60_c00235{left:232.080000pt;}
.x58_c00235{left:233.280000pt;}
.x1e_c00235{left:235.458680pt;}
.x14_c00235{left:236.899163pt;}
.x2b_c00235{left:238.819723pt;}
.x4c_c00235{left:240.499179pt;}
.x55_c00235{left:242.419941pt;}
.x22_c00235{left:243.618403pt;}
.x64_c00235{left:245.152000pt;}
.x3c_c00235{left:247.328237pt;}
.x9_c00235{left:248.976000pt;}
.x1a_c00235{left:251.300680pt;}
.x48_c00235{left:253.940939pt;}
.xc_c00235{left:255.936000pt;}
.x1f_c00235{left:258.260475pt;}
.x7d_c00235{left:259.602667pt;}
.x61_c00235{left:264.000000pt;}
.x31_c00235{left:265.129072pt;}
.x70_c00235{left:266.777333pt;}
.x42_c00235{left:268.489875pt;}
.x79_c00235{left:270.361333pt;}
.x35_c00235{left:272.664821pt;}
.xa_c00235{left:275.854667pt;}
.x3d_c00235{left:277.568603pt;}
.x65_c00235{left:279.180000pt;}
.x75_c00235{left:281.170667pt;}
.x32_c00235{left:282.405315pt;}
.x59_c00235{left:283.920000pt;}
.x6e_c00235{left:284.880000pt;}
.x4d_c00235{left:286.104120pt;}
.x56_c00235{left:288.985069pt;}
.x36_c00235{left:290.907072pt;}
.x76_c00235{left:292.477333pt;}
.x6b_c00235{left:295.200000pt;}
.x66_c00235{left:296.712000pt;}
.x3e_c00235{left:300.335205pt;}
.x5a_c00235{left:302.640000pt;}
.x5b_c00235{left:318.720000pt;}
.x7e_c00235{left:334.080000pt;}
.x7f_c00235{left:335.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00236 {
    display:none;
  }
  .loading-indicator_c00236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00236 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00236 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00236" -> "#page-container .classname_c00236")
 */
.pf_c00236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00236 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00236 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00236 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00236 {overflow:visible;}
  }
}
.c_c00236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00236 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00236:after { /* webkit #35443 */
  content: '';
}
.t_c00236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00236 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00236 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00236 { /* info for Javascript */
  display:none;
}
.l_c00236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00236:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00236 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00236.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00236{transform:matrix(0.038383,0.000729,-0.004749,0.249955,0,0);-ms-transform:matrix(0.038383,0.000729,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.038383,0.000729,-0.004749,0.249955,0,0);}
.ma7_c00236{transform:matrix(0.056750,0.001078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.056750,0.001078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.056750,0.001078,-0.004749,0.249955,0,0);}
.mbc_c00236{transform:matrix(0.134226,0.002550,-0.004749,0.249955,0,0);-ms-transform:matrix(0.134226,0.002550,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.134226,0.002550,-0.004749,0.249955,0,0);}
.m3a_c00236{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.ma3_c00236{transform:matrix(0.144839,0.002752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.144839,0.002752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.144839,0.002752,-0.004749,0.249955,0,0);}
.m55_c00236{transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);}
.m70_c00236{transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);}
.m76_c00236{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.m5c_c00236{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m34_c00236{transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.mcd_c00236{transform:matrix(0.155038,0.002636,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155038,0.002636,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155038,0.002636,-0.004249,0.249964,0,0);}
.m3b_c00236{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.md0_c00236{transform:matrix(0.158247,0.002690,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158247,0.002690,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158247,0.002690,-0.004249,0.249964,0,0);}
.ma5_c00236{transform:matrix(0.158461,0.003011,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158461,0.003011,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158461,0.003011,-0.004749,0.249955,0,0);}
.m3e_c00236{transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.mbd_c00236{transform:matrix(0.159941,0.003039,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159941,0.003039,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159941,0.003039,-0.004749,0.249955,0,0);}
.md7_c00236{transform:matrix(0.161517,0.002746,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161517,0.002746,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161517,0.002746,-0.004249,0.249964,0,0);}
.mca_c00236{transform:matrix(0.161942,0.002753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161942,0.002753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161942,0.002753,-0.004249,0.249964,0,0);}
.mc3_c00236{transform:matrix(0.162187,0.002757,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162187,0.002757,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162187,0.002757,-0.004249,0.249964,0,0);}
.mdb_c00236{transform:matrix(0.162437,0.002761,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162437,0.002761,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162437,0.002761,-0.004249,0.249964,0,0);}
.m3d_c00236{transform:matrix(0.162445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162445,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);}
.md2_c00236{transform:matrix(0.163131,0.002773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163131,0.002773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163131,0.002773,-0.004249,0.249964,0,0);}
.m5_c00236{transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);}
.m71_c00236{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);}
.mc5_c00236{transform:matrix(0.166751,0.002835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166751,0.002835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166751,0.002835,-0.004249,0.249964,0,0);}
.m5b_c00236{transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);}
.m37_c00236{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m36_c00236{transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.167355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167355,0.000000,0.000000,0.250000,0,0);}
.md5_c00236{transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167496,0.002847,-0.004249,0.249964,0,0);}
.md1_c00236{transform:matrix(0.167866,0.002854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167866,0.002854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167866,0.002854,-0.004249,0.249964,0,0);}
.md6_c00236{transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);}
.m56_c00236{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m64_c00236{transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);}
.m68_c00236{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.me3_c00236{transform:matrix(0.171000,0.002907,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171000,0.002907,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171000,0.002907,-0.004249,0.249964,0,0);}
.ma4_c00236{transform:matrix(0.171144,0.003252,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171144,0.003252,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171144,0.003252,-0.004749,0.249955,0,0);}
.md4_c00236{transform:matrix(0.171280,0.002912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171280,0.002912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171280,0.002912,-0.004249,0.249964,0,0);}
.me7_c00236{transform:matrix(0.171500,0.002916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171500,0.002916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171500,0.002916,-0.004249,0.249964,0,0);}
.me_c00236{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.mef_c00236{transform:matrix(0.173280,0.002946,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173280,0.002946,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173280,0.002946,-0.004249,0.249964,0,0);}
.m6c_c00236{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.mbb_c00236{transform:matrix(0.174254,0.003311,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174254,0.003311,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174254,0.003311,-0.004749,0.249955,0,0);}
.mb9_c00236{transform:matrix(0.174479,0.003315,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174479,0.003315,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174479,0.003315,-0.004749,0.249955,0,0);}
.m2e_c00236{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m2b_c00236{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m89_c00236{transform:matrix(0.175658,0.003338,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175658,0.003338,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175658,0.003338,-0.004749,0.249955,0,0);}
.m48_c00236{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.me6_c00236{transform:matrix(0.176290,0.002997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176290,0.002997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176290,0.002997,-0.004249,0.249964,0,0);}
.m5f_c00236{transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m83_c00236{transform:matrix(0.178533,0.003392,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178533,0.003392,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178533,0.003392,-0.004749,0.249955,0,0);}
.m65_c00236{transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m59_c00236{transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m5a_c00236{transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);}
.mdf_c00236{transform:matrix(0.180994,0.003077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180994,0.003077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180994,0.003077,-0.004249,0.249964,0,0);}
.m5e_c00236{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.m35_c00236{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md3_c00236{transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);}
.m79_c00236{transform:matrix(0.181437,0.003447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181437,0.003447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181437,0.003447,-0.004749,0.249955,0,0);}
.mc7_c00236{transform:matrix(0.181644,0.003088,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181644,0.003088,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181644,0.003088,-0.004249,0.249964,0,0);}
.mae_c00236{transform:matrix(0.182382,0.003465,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182382,0.003465,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182382,0.003465,-0.004749,0.249955,0,0);}
.ma0_c00236{transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);}
.mf0_c00236{transform:matrix(0.182709,0.003106,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182709,0.003106,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182709,0.003106,-0.004249,0.249964,0,0);}
.m1d_c00236{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.ma6_c00236{transform:matrix(0.182952,0.003476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182952,0.003476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182952,0.003476,-0.004749,0.249955,0,0);}
.mc4_c00236{transform:matrix(0.183389,0.003118,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183389,0.003118,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183389,0.003118,-0.004249,0.249964,0,0);}
.m2d_c00236{transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00236{transform:matrix(0.184732,0.003510,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184732,0.003510,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184732,0.003510,-0.004749,0.249955,0,0);}
.m13_c00236{transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);}
.mba_c00236{transform:matrix(0.185002,0.003515,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185002,0.003515,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185002,0.003515,-0.004749,0.249955,0,0);}
.md8_c00236{transform:matrix(0.185008,0.003145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185008,0.003145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185008,0.003145,-0.004249,0.249964,0,0);}
.m6a_c00236{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.mfc_c00236{transform:matrix(0.185848,0.003159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185848,0.003159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185848,0.003159,-0.004249,0.249964,0,0);}
.m9f_c00236{transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186041,0.003535,-0.004749,0.249955,0,0);}
.m69_c00236{transform:matrix(0.186130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186130,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.mfe_c00236{transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186398,0.003169,-0.004249,0.249964,0,0);}
.m98_c00236{transform:matrix(0.186536,0.003544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186536,0.003544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186536,0.003544,-0.004749,0.249955,0,0);}
.mb7_c00236{transform:matrix(0.186576,0.003545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186576,0.003545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186576,0.003545,-0.004749,0.249955,0,0);}
.m3c_c00236{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m86_c00236{transform:matrix(0.186926,0.003552,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186926,0.003552,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186926,0.003552,-0.004749,0.249955,0,0);}
.m8c_c00236{transform:matrix(0.186991,0.003553,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186991,0.003553,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186991,0.003553,-0.004749,0.249955,0,0);}
.m0_c00236{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.me8_c00236{transform:matrix(0.188283,0.003201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188283,0.003201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188283,0.003201,-0.004249,0.249964,0,0);}
.m6e_c00236{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.m8f_c00236{transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);}
.m45_c00236{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m31_c00236{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mcb_c00236{transform:matrix(0.191022,0.003247,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191022,0.003247,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191022,0.003247,-0.004249,0.249964,0,0);}
.mb8_c00236{transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);}
.m57_c00236{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m2f_c00236{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.md9_c00236{transform:matrix(0.191502,0.003256,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191502,0.003256,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191502,0.003256,-0.004249,0.249964,0,0);}
.meb_c00236{transform:matrix(0.191792,0.003260,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191792,0.003260,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191792,0.003260,-0.004249,0.249964,0,0);}
.mcf_c00236{transform:matrix(0.192207,0.003268,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192207,0.003268,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192207,0.003268,-0.004249,0.249964,0,0);}
.m28_c00236{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m93_c00236{transform:matrix(0.192425,0.003656,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192425,0.003656,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192425,0.003656,-0.004749,0.249955,0,0);}
.m24_c00236{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.mb2_c00236{transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);}
.mb0_c00236{transform:matrix(0.193095,0.003669,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193095,0.003669,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193095,0.003669,-0.004749,0.249955,0,0);}
.mbf_c00236{transform:matrix(0.193305,0.003673,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193305,0.003673,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193305,0.003673,-0.004749,0.249955,0,0);}
.m7b_c00236{transform:matrix(0.193360,0.003674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193360,0.003674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193360,0.003674,-0.004749,0.249955,0,0);}
.m61_c00236{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m77_c00236{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.m74_c00236{transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);}
.mf9_c00236{transform:matrix(0.194592,0.003308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194592,0.003308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194592,0.003308,-0.004249,0.249964,0,0);}
.m7_c00236{transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);}
.m62_c00236{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.m82_c00236{transform:matrix(0.195675,0.003718,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195675,0.003718,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195675,0.003718,-0.004749,0.249955,0,0);}
.mcc_c00236{transform:matrix(0.196112,0.003334,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196112,0.003334,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196112,0.003334,-0.004249,0.249964,0,0);}
.mab_c00236{transform:matrix(0.196170,0.003727,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196170,0.003727,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196170,0.003727,-0.004749,0.249955,0,0);}
.m75_c00236{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m63_c00236{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m94_c00236{transform:matrix(0.198174,0.003765,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198174,0.003765,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198174,0.003765,-0.004749,0.249955,0,0);}
.mde_c00236{transform:matrix(0.198391,0.003373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198391,0.003373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198391,0.003373,-0.004249,0.249964,0,0);}
.m22_c00236{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.mc2_c00236{transform:matrix(0.198761,0.003379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198761,0.003379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198761,0.003379,-0.004249,0.249964,0,0);}
.m38_c00236{transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.mc1_c00236{transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);}
.m5d_c00236{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.me9_c00236{transform:matrix(0.200121,0.003402,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200121,0.003402,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200121,0.003402,-0.004249,0.249964,0,0);}
.m4a_c00236{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00236{transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);}
.m1c_c00236{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m58_c00236{transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);}
.ma1_c00236{transform:matrix(0.201109,0.003821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201109,0.003821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201109,0.003821,-0.004749,0.249955,0,0);}
.m81_c00236{transform:matrix(0.201154,0.003822,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201154,0.003822,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201154,0.003822,-0.004749,0.249955,0,0);}
.m7a_c00236{transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201219,0.003823,-0.004749,0.249955,0,0);}
.m50_c00236{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.m96_c00236{transform:matrix(0.201949,0.003837,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201949,0.003837,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201949,0.003837,-0.004749,0.249955,0,0);}
.m91_c00236{transform:matrix(0.202958,0.003856,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202958,0.003856,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202958,0.003856,-0.004749,0.249955,0,0);}
.mfd_c00236{transform:matrix(0.203046,0.003452,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203046,0.003452,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203046,0.003452,-0.004249,0.249964,0,0);}
.m39_c00236{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.mfa_c00236{transform:matrix(0.203231,0.003455,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203231,0.003455,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203231,0.003455,-0.004249,0.249964,0,0);}
.m51_c00236{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.mee_c00236{transform:matrix(0.203441,0.003458,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203441,0.003458,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203441,0.003458,-0.004249,0.249964,0,0);}
.mac_c00236{transform:matrix(0.204608,0.003888,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204608,0.003888,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204608,0.003888,-0.004749,0.249955,0,0);}
.m27_c00236{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);}
.ma8_c00236{transform:matrix(0.204883,0.003893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204883,0.003893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204883,0.003893,-0.004749,0.249955,0,0);}
.mdd_c00236{transform:matrix(0.204890,0.003483,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204890,0.003483,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204890,0.003483,-0.004249,0.249964,0,0);}
.m9a_c00236{transform:matrix(0.205243,0.003900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205243,0.003900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205243,0.003900,-0.004749,0.249955,0,0);}
.m23_c00236{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m6f_c00236{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m6d_c00236{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m92_c00236{transform:matrix(0.206658,0.003926,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206658,0.003926,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206658,0.003926,-0.004749,0.249955,0,0);}
.mfb_c00236{transform:matrix(0.207110,0.003521,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207110,0.003521,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207110,0.003521,-0.004249,0.249964,0,0);}
.mc8_c00236{transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);}
.m80_c00236{transform:matrix(0.208877,0.003969,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208877,0.003969,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208877,0.003969,-0.004749,0.249955,0,0);}
.mc0_c00236{transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);}
.m6_c00236{transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);}
.mdc_c00236{transform:matrix(0.209585,0.003563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209585,0.003563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209585,0.003563,-0.004249,0.249964,0,0);}
.m3f_c00236{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.mbe_c00236{transform:matrix(0.209602,0.003982,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209602,0.003982,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209602,0.003982,-0.004749,0.249955,0,0);}
.maf_c00236{transform:matrix(0.209667,0.003984,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209667,0.003984,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209667,0.003984,-0.004749,0.249955,0,0);}
.m60_c00236{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mf6_c00236{transform:matrix(0.209900,0.003568,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209900,0.003568,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209900,0.003568,-0.004249,0.249964,0,0);}
.m8b_c00236{transform:matrix(0.210612,0.004002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210612,0.004002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210612,0.004002,-0.004749,0.249955,0,0);}
.me5_c00236{transform:matrix(0.211179,0.003590,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211179,0.003590,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211179,0.003590,-0.004249,0.249964,0,0);}
.mb5_c00236{transform:matrix(0.211317,0.004015,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211317,0.004015,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211317,0.004015,-0.004749,0.249955,0,0);}
.m47_c00236{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mc6_c00236{transform:matrix(0.212354,0.003610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212354,0.003610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212354,0.003610,-0.004249,0.249964,0,0);}
.m8a_c00236{transform:matrix(0.212732,0.004042,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212732,0.004042,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212732,0.004042,-0.004749,0.249955,0,0);}
.m7f_c00236{transform:matrix(0.212942,0.004046,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212942,0.004046,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212942,0.004046,-0.004749,0.249955,0,0);}
.m8e_c00236{transform:matrix(0.213302,0.004053,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213302,0.004053,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213302,0.004053,-0.004749,0.249955,0,0);}
.mec_c00236{transform:matrix(0.213344,0.003627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213344,0.003627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213344,0.003627,-0.004249,0.249964,0,0);}
.m95_c00236{transform:matrix(0.213506,0.004057,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213506,0.004057,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213506,0.004057,-0.004749,0.249955,0,0);}
.me2_c00236{transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);}
.me0_c00236{transform:matrix(0.213824,0.003635,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213824,0.003635,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213824,0.003635,-0.004249,0.249964,0,0);}
.mb4_c00236{transform:matrix(0.214531,0.004076,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214531,0.004076,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214531,0.004076,-0.004749,0.249955,0,0);}
.m7c_c00236{transform:matrix(0.214621,0.004078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214621,0.004078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214621,0.004078,-0.004749,0.249955,0,0);}
.mb1_c00236{transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);}
.m4e_c00236{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00236{transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);}
.m1e_c00236{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.mc9_c00236{transform:matrix(0.215639,0.003666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215639,0.003666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215639,0.003666,-0.004249,0.249964,0,0);}
.m8d_c00236{transform:matrix(0.215726,0.004099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215726,0.004099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215726,0.004099,-0.004749,0.249955,0,0);}
.me4_c00236{transform:matrix(0.216124,0.003674,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216124,0.003674,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216124,0.003674,-0.004249,0.249964,0,0);}
.mce_c00236{transform:matrix(0.216194,0.003675,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216194,0.003675,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216194,0.003675,-0.004249,0.249964,0,0);}
.m99_c00236{transform:matrix(0.216966,0.004122,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216966,0.004122,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216966,0.004122,-0.004749,0.249955,0,0);}
.mf3_c00236{transform:matrix(0.217064,0.003690,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217064,0.003690,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217064,0.003690,-0.004249,0.249964,0,0);}
.m2_c00236{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.mf1_c00236{transform:matrix(0.218863,0.003721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218863,0.003721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218863,0.003721,-0.004249,0.249964,0,0);}
.mf5_c00236{transform:matrix(0.220963,0.003756,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220963,0.003756,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220963,0.003756,-0.004249,0.249964,0,0);}
.m19_c00236{transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);}
.m90_c00236{transform:matrix(0.221810,0.004214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221810,0.004214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221810,0.004214,-0.004749,0.249955,0,0);}
.m97_c00236{transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);}
.m7e_c00236{transform:matrix(0.222225,0.004222,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222225,0.004222,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222225,0.004222,-0.004749,0.249955,0,0);}
.mb3_c00236{transform:matrix(0.222750,0.004232,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222750,0.004232,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222750,0.004232,-0.004749,0.249955,0,0);}
.m85_c00236{transform:matrix(0.223835,0.004253,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223835,0.004253,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223835,0.004253,-0.004749,0.249955,0,0);}
.mf8_c00236{transform:matrix(0.224343,0.003814,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224343,0.003814,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224343,0.003814,-0.004249,0.249964,0,0);}
.m2a_c00236{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m9c_c00236{transform:matrix(0.224370,0.004263,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224370,0.004263,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224370,0.004263,-0.004749,0.249955,0,0);}
.m1f_c00236{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);}
.med_c00236{transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225327,0.003831,-0.004249,0.249964,0,0);}
.mf7_c00236{transform:matrix(0.225797,0.003839,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225797,0.003839,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225797,0.003839,-0.004249,0.249964,0,0);}
.mda_c00236{transform:matrix(0.226072,0.003843,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226072,0.003843,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226072,0.003843,-0.004249,0.249964,0,0);}
.m43_c00236{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m84_c00236{transform:matrix(0.228354,0.004339,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228354,0.004339,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228354,0.004339,-0.004749,0.249955,0,0);}
.m6b_c00236{transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00236{transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);}
.m9b_c00236{transform:matrix(0.229938,0.004369,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229938,0.004369,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229938,0.004369,-0.004749,0.249955,0,0);}
.m87_c00236{transform:matrix(0.230053,0.004371,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230053,0.004371,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230053,0.004371,-0.004749,0.249955,0,0);}
.mf2_c00236{transform:matrix(0.230137,0.003912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230137,0.003912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230137,0.003912,-0.004249,0.249964,0,0);}
.mad_c00236{transform:matrix(0.230373,0.004377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230373,0.004377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230373,0.004377,-0.004749,0.249955,0,0);}
.m88_c00236{transform:matrix(0.230793,0.004385,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230793,0.004385,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230793,0.004385,-0.004749,0.249955,0,0);}
.m4_c00236{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00236{transform:matrix(0.236177,0.004487,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236177,0.004487,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236177,0.004487,-0.004749,0.249955,0,0);}
.m40_c00236{transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);}
.maa_c00236{transform:matrix(0.237302,0.004509,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237302,0.004509,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237302,0.004509,-0.004749,0.249955,0,0);}
.m4b_c00236{transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);}
.mb6_c00236{transform:matrix(0.241466,0.004588,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241466,0.004588,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241466,0.004588,-0.004749,0.249955,0,0);}
.mf4_c00236{transform:matrix(0.245969,0.004181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245969,0.004181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245969,0.004181,-0.004249,0.249964,0,0);}
.m72_c00236{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.m73_c00236{transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.me1_c00236{transform:matrix(0.258828,0.004400,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258828,0.004400,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258828,0.004400,-0.004249,0.249964,0,0);}
.mea_c00236{transform:matrix(0.267231,0.004543,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267231,0.004543,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267231,0.004543,-0.004249,0.249964,0,0);}
.mf_c00236{transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);}
.m7d_c00236{transform:matrix(0.282974,0.005377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282974,0.005377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282974,0.005377,-0.004749,0.249955,0,0);}
.m66_c00236{transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.m67_c00236{transform:matrix(0.369220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369220,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:0.000000px;}
.fc0_c00236{color:transparent;}
.fsc_c00236{font-size:56.710233px;}
.fs18_c00236{font-size:58.808496px;}
.fs11_c00236{font-size:58.810612px;}
.fsb_c00236{font-size:59.850000px;}
.fs3_c00236{font-size:60.900000px;}
.fs17_c00236{font-size:60.908799px;}
.fsd_c00236{font-size:60.910991px;}
.fs5_c00236{font-size:61.950000px;}
.fse_c00236{font-size:61.961181px;}
.fs4_c00236{font-size:63.000000px;}
.fs16_c00236{font-size:63.009103px;}
.fs15_c00236{font-size:64.059255px;}
.fsf_c00236{font-size:64.061560px;}
.fsa_c00236{font-size:65.100000px;}
.fs13_c00236{font-size:65.109406px;}
.fs1_c00236{font-size:67.200000px;}
.fs14_c00236{font-size:67.209710px;}
.fs10_c00236{font-size:67.212129px;}
.fs0_c00236{font-size:68.250000px;}
.fs12_c00236{font-size:68.259861px;}
.fs7_c00236{font-size:69.300000px;}
.fs6_c00236{font-size:70.350000px;}
.fs8_c00236{font-size:71.400000px;}
.fs9_c00236{font-size:72.450000px;}
.fs2_c00236{font-size:73.500000px;}
.y0_c00236{bottom:0.000000px;}
.ydb_c00236{bottom:25.430838px;}
.yda_c00236{bottom:26.682465px;}
.yd9_c00236{bottom:28.324295px;}
.yd8_c00236{bottom:29.584145px;}
.yd7_c00236{bottom:31.495538px;}
.yd6_c00236{bottom:32.200065px;}
.yd5_c00236{bottom:32.631489px;}
.yd4_c00236{bottom:34.827570px;}
.yd3_c00236{bottom:44.940807px;}
.yd2_c00236{bottom:45.909782px;}
.yd1_c00236{bottom:47.596883px;}
.yd0_c00236{bottom:48.724739px;}
.ycf_c00236{bottom:50.963138px;}
.yce_c00236{bottom:51.716681px;}
.ycd_c00236{bottom:53.121537px;}
.ycc_c00236{bottom:53.725136px;}
.ycb_c00236{bottom:61.674683px;}
.yca_c00236{bottom:63.728693px;}
.yc9_c00236{bottom:64.918938px;}
.yc8_c00236{bottom:66.013028px;}
.yc7_c00236{bottom:67.142937px;}
.yc6_c00236{bottom:69.990291px;}
.yc5_c00236{bottom:72.088523px;}
.yc4_c00236{bottom:78.430262px;}
.yc3_c00236{bottom:79.422222px;}
.yc2_c00236{bottom:82.458087px;}
.yc1_c00236{bottom:84.314200px;}
.yc0_c00236{bottom:85.229961px;}
.ybf_c00236{bottom:87.038313px;}
.ybe_c00236{bottom:87.748613px;}
.ybd_c00236{bottom:88.561209px;}
.ybc_c00236{bottom:94.985712px;}
.ybb_c00236{bottom:96.347199px;}
.yba_c00236{bottom:98.829021px;}
.yb9_c00236{bottom:99.765837px;}
.yb8_c00236{bottom:101.766141px;}
.yb7_c00236{bottom:102.888180px;}
.yb6_c00236{bottom:105.577170px;}
.yb5_c00236{bottom:112.096977px;}
.yb4_c00236{bottom:113.958413px;}
.yb3_c00236{bottom:114.599265px;}
.yb2_c00236{bottom:115.748085px;}
.yb1_c00236{bottom:116.924171px;}
.yb0_c00236{bottom:117.759846px;}
.yaf_c00236{bottom:120.757782px;}
.yae_c00236{bottom:121.688614px;}
.yad_c00236{bottom:123.398378px;}
.ya8_c00236{bottom:131.688727px;}
.ya5_c00236{bottom:131.688803px;}
.ya7_c00236{bottom:131.689256px;}
.ya6_c00236{bottom:131.689320px;}
.ya9_c00236{bottom:131.689348px;}
.yaa_c00236{bottom:131.689700px;}
.yab_c00236{bottom:131.690319px;}
.yac_c00236{bottom:131.690657px;}
.ya4_c00236{bottom:147.062031px;}
.ya3_c00236{bottom:147.437723px;}
.ya2_c00236{bottom:148.213483px;}
.ya1_c00236{bottom:148.649559px;}
.ya0_c00236{bottom:149.810039px;}
.y9f_c00236{bottom:150.192895px;}
.y9e_c00236{bottom:150.399344px;}
.y9d_c00236{bottom:150.627874px;}
.y9c_c00236{bottom:151.474500px;}
.y9b_c00236{bottom:164.002776px;}
.y9a_c00236{bottom:165.514035px;}
.y99_c00236{bottom:166.082859px;}
.y98_c00236{bottom:166.428732px;}
.y97_c00236{bottom:167.443658px;}
.y96_c00236{bottom:168.386007px;}
.y95_c00236{bottom:169.302927px;}
.y94_c00236{bottom:170.080149px;}
.y93_c00236{bottom:181.219304px;}
.y92_c00236{bottom:183.879372px;}
.y91_c00236{bottom:185.889779px;}
.y90_c00236{bottom:186.580764px;}
.y8f_c00236{bottom:187.863041px;}
.y8e_c00236{bottom:188.387261px;}
.y8d_c00236{bottom:189.026637px;}
.y8c_c00236{bottom:190.610181px;}
.y8b_c00236{bottom:200.554056px;}
.y8a_c00236{bottom:201.034433px;}
.y89_c00236{bottom:201.429521px;}
.y88_c00236{bottom:202.557498px;}
.y87_c00236{bottom:203.226101px;}
.y86_c00236{bottom:203.559552px;}
.y85_c00236{bottom:205.734636px;}
.y84_c00236{bottom:206.536316px;}
.y83_c00236{bottom:215.776805px;}
.y82_c00236{bottom:217.220457px;}
.y81_c00236{bottom:217.695858px;}
.y80_c00236{bottom:218.635556px;}
.y7f_c00236{bottom:219.100023px;}
.y7e_c00236{bottom:219.894720px;}
.y7d_c00236{bottom:221.803895px;}
.y7c_c00236{bottom:223.008488px;}
.y7b_c00236{bottom:234.262121px;}
.y7a_c00236{bottom:234.739613px;}
.y79_c00236{bottom:235.960664px;}
.y78_c00236{bottom:236.208387px;}
.y77_c00236{bottom:236.481836px;}
.y76_c00236{bottom:236.954312px;}
.y75_c00236{bottom:237.683033px;}
.y74_c00236{bottom:237.984942px;}
.y73_c00236{bottom:238.768248px;}
.y72_c00236{bottom:239.073749px;}
.y71_c00236{bottom:240.022092px;}
.y70_c00236{bottom:251.731335px;}
.y6f_c00236{bottom:252.274511px;}
.y6e_c00236{bottom:253.316084px;}
.y6d_c00236{bottom:253.957440px;}
.y6c_c00236{bottom:255.069438px;}
.y6b_c00236{bottom:255.523457px;}
.y6a_c00236{bottom:257.057567px;}
.y69_c00236{bottom:257.468517px;}
.y68_c00236{bottom:257.915906px;}
.y67_c00236{bottom:258.388770px;}
.y66_c00236{bottom:269.585658px;}
.y65_c00236{bottom:270.320265px;}
.y64_c00236{bottom:271.795293px;}
.y63_c00236{bottom:272.348794px;}
.y62_c00236{bottom:274.409650px;}
.y61_c00236{bottom:275.400504px;}
.y60_c00236{bottom:287.962023px;}
.y5f_c00236{bottom:288.809100px;}
.y5e_c00236{bottom:290.061077px;}
.y5d_c00236{bottom:290.459478px;}
.y5c_c00236{bottom:291.836028px;}
.y5b_c00236{bottom:292.373111px;}
.y5a_c00236{bottom:292.953000px;}
.y59_c00236{bottom:305.541170px;}
.y58_c00236{bottom:306.803891px;}
.y57_c00236{bottom:307.803756px;}
.y56_c00236{bottom:309.035327px;}
.y55_c00236{bottom:309.615102px;}
.y54_c00236{bottom:310.116959px;}
.y53_c00236{bottom:310.554206px;}
.y52_c00236{bottom:310.773000px;}
.y51_c00236{bottom:323.493000px;}
.y50_c00236{bottom:323.775000px;}
.y4f_c00236{bottom:323.953500px;}
.y4e_c00236{bottom:324.892500px;}
.y4d_c00236{bottom:325.177500px;}
.y4c_c00236{bottom:326.221500px;}
.y4b_c00236{bottom:326.488500px;}
.y4a_c00236{bottom:326.889000px;}
.y49_c00236{bottom:327.510000px;}
.y48_c00236{bottom:339.949500px;}
.y47_c00236{bottom:340.732500px;}
.y46_c00236{bottom:341.523000px;}
.y45_c00236{bottom:342.000000px;}
.y44_c00236{bottom:342.670500px;}
.y43_c00236{bottom:342.846000px;}
.y42_c00236{bottom:343.710000px;}
.y41_c00236{bottom:355.479000px;}
.y40_c00236{bottom:355.702500px;}
.y3f_c00236{bottom:356.148000px;}
.y3e_c00236{bottom:356.647500px;}
.y3d_c00236{bottom:357.582000px;}
.y3c_c00236{bottom:358.452000px;}
.y3b_c00236{bottom:358.951500px;}
.y3a_c00236{bottom:359.313000px;}
.y39_c00236{bottom:360.523500px;}
.y38_c00236{bottom:360.723000px;}
.y37_c00236{bottom:372.417000px;}
.y36_c00236{bottom:373.423500px;}
.y35_c00236{bottom:374.641500px;}
.y34_c00236{bottom:375.039000px;}
.y33_c00236{bottom:375.583500px;}
.y32_c00236{bottom:376.599000px;}
.y31_c00236{bottom:376.923000px;}
.y30_c00236{bottom:391.401000px;}
.y2f_c00236{bottom:391.651500px;}
.y2e_c00236{bottom:392.211000px;}
.y2d_c00236{bottom:392.571000px;}
.y2c_c00236{bottom:392.937000px;}
.y2b_c00236{bottom:393.616500px;}
.y2a_c00236{bottom:393.985500px;}
.y29_c00236{bottom:394.743000px;}
.y28_c00236{bottom:407.862000px;}
.y27_c00236{bottom:408.264000px;}
.y26_c00236{bottom:408.427500px;}
.y25_c00236{bottom:409.116000px;}
.y24_c00236{bottom:409.416000px;}
.y23_c00236{bottom:410.197500px;}
.y22_c00236{bottom:410.364000px;}
.y21_c00236{bottom:410.943000px;}
.y20_c00236{bottom:425.916000px;}
.y1f_c00236{bottom:443.313000px;}
.y1e_c00236{bottom:460.891500px;}
.y1d_c00236{bottom:477.132000px;}
.y1c_c00236{bottom:477.382500px;}
.y1b_c00236{bottom:477.544500px;}
.y1a_c00236{bottom:478.005000px;}
.y19_c00236{bottom:478.578000px;}
.y18_c00236{bottom:478.831500px;}
.y17_c00236{bottom:478.977000px;}
.y16_c00236{bottom:479.308500px;}
.y15_c00236{bottom:479.793000px;}
.y14_c00236{bottom:494.683500px;}
.y13_c00236{bottom:495.198000px;}
.y12_c00236{bottom:495.456000px;}
.y11_c00236{bottom:496.174500px;}
.y10_c00236{bottom:496.491000px;}
.yf_c00236{bottom:497.088000px;}
.ye_c00236{bottom:497.293500px;}
.yd_c00236{bottom:497.611500px;}
.yc_c00236{bottom:511.657500px;}
.yb_c00236{bottom:512.097000px;}
.ya_c00236{bottom:512.320500px;}
.y9_c00236{bottom:512.926500px;}
.y8_c00236{bottom:513.559500px;}
.y7_c00236{bottom:513.741000px;}
.y6_c00236{bottom:514.287000px;}
.y5_c00236{bottom:514.623000px;}
.y4_c00236{bottom:530.304000px;}
.y3_c00236{bottom:547.582500px;}
.y2_c00236{bottom:564.829500px;}
.y1_c00236{bottom:581.442000px;}
.he_c00236{height:56.710233px;}
.h1a_c00236{height:58.808496px;}
.h13_c00236{height:58.810612px;}
.hd_c00236{height:59.850000px;}
.h5_c00236{height:60.900000px;}
.h19_c00236{height:60.908799px;}
.hf_c00236{height:60.910991px;}
.h7_c00236{height:61.950000px;}
.h10_c00236{height:61.961181px;}
.h6_c00236{height:63.000000px;}
.h18_c00236{height:63.009103px;}
.h17_c00236{height:64.059255px;}
.h11_c00236{height:64.061560px;}
.hc_c00236{height:65.100000px;}
.h15_c00236{height:65.109406px;}
.h3_c00236{height:67.200000px;}
.h16_c00236{height:67.209710px;}
.h12_c00236{height:67.212129px;}
.h2_c00236{height:68.250000px;}
.h14_c00236{height:68.259861px;}
.h9_c00236{height:69.300000px;}
.h8_c00236{height:70.350000px;}
.ha_c00236{height:71.400000px;}
.hb_c00236{height:72.450000px;}
.h4_c00236{height:73.500000px;}
.h1_c00236{height:624.750000px;}
.h0_c00236{height:625.050000px;}
.w0_c00236{width:378.540000px;}
.w1_c00236{width:378.750000px;}
.x0_c00236{left:0.000000px;}
.x59_c00236{left:33.066000px;}
.x76_c00236{left:40.463019px;}
.x3a_c00236{left:41.697000px;}
.x3f_c00236{left:42.760500px;}
.x2f_c00236{left:44.818500px;}
.x22_c00236{left:46.308000px;}
.x2_c00236{left:49.680000px;}
.x70_c00236{left:53.701500px;}
.x49_c00236{left:57.589500px;}
.x7d_c00236{left:61.971372px;}
.x5f_c00236{left:64.799676px;}
.x45_c00236{left:67.303500px;}
.x7b_c00236{left:71.411089px;}
.x5b_c00236{left:72.762000px;}
.x6b_c00236{left:75.853079px;}
.x1b_c00236{left:77.599500px;}
.x3_c00236{left:78.840000px;}
.x60_c00236{left:84.239694px;}
.x54_c00236{left:85.755000px;}
.x74_c00236{left:89.915712px;}
.x4_c00236{left:90.990000px;}
.x40_c00236{left:93.252000px;}
.x23_c00236{left:94.695000px;}
.x1c_c00236{left:96.265500px;}
.xe_c00236{left:99.630000px;}
.x5c_c00236{left:101.029500px;}
.x61_c00236{left:102.077826px;}
.x71_c00236{left:103.503000px;}
.x64_c00236{left:106.143422px;}
.x77_c00236{left:108.149197px;}
.x30_c00236{left:110.158500px;}
.x50_c00236{left:112.180500px;}
.x7e_c00236{left:116.747635px;}
.x41_c00236{left:117.901500px;}
.xf_c00236{left:119.340000px;}
.x9_c00236{left:122.040000px;}
.x31_c00236{left:123.658500px;}
.x4a_c00236{left:124.816500px;}
.x35_c00236{left:125.818500px;}
.x24_c00236{left:127.866000px;}
.x15_c00236{left:129.469500px;}
.x46_c00236{left:130.767000px;}
.x79_c00236{left:138.108088px;}
.x7c_c00236{left:141.367997px;}
.x25_c00236{left:142.437000px;}
.x4b_c00236{left:144.882000px;}
.x16_c00236{left:145.935000px;}
.x1d_c00236{left:150.585000px;}
.x36_c00236{left:152.008500px;}
.x2a_c00236{left:154.438500px;}
.xa_c00236{left:159.300000px;}
.x10_c00236{left:160.380000px;}
.x42_c00236{left:163.179000px;}
.x47_c00236{left:164.787000px;}
.x6c_c00236{left:166.480472px;}
.x26_c00236{left:167.823000px;}
.x5_c00236{left:169.830000px;}
.x4c_c00236{left:172.605000px;}
.x51_c00236{left:177.256500px;}
.x1e_c00236{left:179.415000px;}
.x3b_c00236{left:180.550500px;}
.x1_c00236{left:184.140000px;}
.x43_c00236{left:187.558500px;}
.x48_c00236{left:189.630000px;}
.x11_c00236{left:191.970000px;}
.x2b_c00236{left:194.398500px;}
.x65_c00236{left:196.875212px;}
.x55_c00236{left:199.842000px;}
.x17_c00236{left:203.443500px;}
.x32_c00236{left:206.548500px;}
.x3c_c00236{left:207.769500px;}
.xb_c00236{left:209.790000px;}
.x2c_c00236{left:211.138500px;}
.x7a_c00236{left:213.439936px;}
.x37_c00236{left:214.918500px;}
.x6f_c00236{left:216.073137px;}
.x56_c00236{left:218.835000px;}
.x72_c00236{left:219.874500px;}
.x4d_c00236{left:220.933500px;}
.x27_c00236{left:225.108000px;}
.x6_c00236{left:226.260000px;}
.x12_c00236{left:228.960000px;}
.x7f_c00236{left:230.701189px;}
.x69_c00236{left:232.264052px;}
.x66_c00236{left:234.159999px;}
.x33_c00236{left:235.978500px;}
.x5a_c00236{left:241.966500px;}
.x1f_c00236{left:244.759500px;}
.x67_c00236{left:246.566271px;}
.x7_c00236{left:249.210000px;}
.x2d_c00236{left:252.988500px;}
.x6d_c00236{left:255.210536px;}
.x18_c00236{left:258.525000px;}
.x5d_c00236{left:260.341500px;}
.x44_c00236{left:265.503000px;}
.x20_c00236{left:268.246500px;}
.x28_c00236{left:271.233000px;}
.x13_c00236{left:272.700000px;}
.x52_c00236{left:274.749000px;}
.x75_c00236{left:277.322874px;}
.x19_c00236{left:278.823000px;}
.x57_c00236{left:281.445000px;}
.x78_c00236{left:282.517519px;}
.x3d_c00236{left:285.256500px;}
.x29_c00236{left:287.425500px;}
.xc_c00236{left:289.710000px;}
.x6e_c00236{left:291.652559px;}
.x58_c00236{left:293.383500px;}
.x4e_c00236{left:300.558000px;}
.x38_c00236{left:303.478500px;}
.x5e_c00236{left:304.924500px;}
.x14_c00236{left:307.800000px;}
.x62_c00236{left:309.986009px;}
.xd_c00236{left:312.120000px;}
.x73_c00236{left:313.258500px;}
.x21_c00236{left:315.004500px;}
.x1a_c00236{left:318.781500px;}
.x3e_c00236{left:321.756000px;}
.x4f_c00236{left:325.341000px;}
.x39_c00236{left:326.968500px;}
.x34_c00236{left:328.858500px;}
.x2e_c00236{left:329.938500px;}
.x68_c00236{left:331.461647px;}
.x63_c00236{left:333.598713px;}
.x53_c00236{left:334.969500px;}
.x8_c00236{left:337.230000px;}
.x6a_c00236{left:356.583618px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fsc_c00236{font-size:50.409096pt;}
.fs18_c00236{font-size:52.274219pt;}
.fs11_c00236{font-size:52.276100pt;}
.fsb_c00236{font-size:53.200000pt;}
.fs3_c00236{font-size:54.133333pt;}
.fs17_c00236{font-size:54.141155pt;}
.fsd_c00236{font-size:54.143104pt;}
.fs5_c00236{font-size:55.066667pt;}
.fse_c00236{font-size:55.076605pt;}
.fs4_c00236{font-size:56.000000pt;}
.fs16_c00236{font-size:56.008091pt;}
.fs15_c00236{font-size:56.941560pt;}
.fsf_c00236{font-size:56.943609pt;}
.fsa_c00236{font-size:57.866667pt;}
.fs13_c00236{font-size:57.875028pt;}
.fs1_c00236{font-size:59.733333pt;}
.fs14_c00236{font-size:59.741964pt;}
.fs10_c00236{font-size:59.744114pt;}
.fs0_c00236{font-size:60.666667pt;}
.fs12_c00236{font-size:60.675432pt;}
.fs7_c00236{font-size:61.600000pt;}
.fs6_c00236{font-size:62.533333pt;}
.fs8_c00236{font-size:63.466667pt;}
.fs9_c00236{font-size:64.400000pt;}
.fs2_c00236{font-size:65.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.ydb_c00236{bottom:22.605189pt;}
.yda_c00236{bottom:23.717747pt;}
.yd9_c00236{bottom:25.177151pt;}
.yd8_c00236{bottom:26.297017pt;}
.yd7_c00236{bottom:27.996033pt;}
.yd6_c00236{bottom:28.622280pt;}
.yd5_c00236{bottom:29.005768pt;}
.yd4_c00236{bottom:30.957840pt;}
.yd3_c00236{bottom:39.947384pt;}
.yd2_c00236{bottom:40.808695pt;}
.yd1_c00236{bottom:42.308340pt;}
.yd0_c00236{bottom:43.310879pt;}
.ycf_c00236{bottom:45.300567pt;}
.yce_c00236{bottom:45.970383pt;}
.ycd_c00236{bottom:47.219144pt;}
.ycc_c00236{bottom:47.755676pt;}
.ycb_c00236{bottom:54.821940pt;}
.yca_c00236{bottom:56.647727pt;}
.yc9_c00236{bottom:57.705723pt;}
.yc8_c00236{bottom:58.678247pt;}
.yc7_c00236{bottom:59.682611pt;}
.yc6_c00236{bottom:62.213592pt;}
.yc5_c00236{bottom:64.078687pt;}
.yc4_c00236{bottom:69.715788pt;}
.yc3_c00236{bottom:70.597531pt;}
.yc2_c00236{bottom:73.296077pt;}
.yc1_c00236{bottom:74.945956pt;}
.yc0_c00236{bottom:75.759965pt;}
.ybf_c00236{bottom:77.367389pt;}
.ybe_c00236{bottom:77.998767pt;}
.ybd_c00236{bottom:78.721075pt;}
.ybc_c00236{bottom:84.431744pt;}
.ybb_c00236{bottom:85.641955pt;}
.yba_c00236{bottom:87.848019pt;}
.yb9_c00236{bottom:88.680744pt;}
.yb8_c00236{bottom:90.458792pt;}
.yb7_c00236{bottom:91.456160pt;}
.yb6_c00236{bottom:93.846373pt;}
.yb5_c00236{bottom:99.641757pt;}
.yb4_c00236{bottom:101.296367pt;}
.yb3_c00236{bottom:101.866013pt;}
.yb2_c00236{bottom:102.887187pt;}
.yb1_c00236{bottom:103.932596pt;}
.yb0_c00236{bottom:104.675419pt;}
.yaf_c00236{bottom:107.340251pt;}
.yae_c00236{bottom:108.167657pt;}
.yad_c00236{bottom:109.687447pt;}
.ya8_c00236{bottom:117.056647pt;}
.ya5_c00236{bottom:117.056713pt;}
.ya7_c00236{bottom:117.057116pt;}
.ya6_c00236{bottom:117.057173pt;}
.ya9_c00236{bottom:117.057199pt;}
.yaa_c00236{bottom:117.057511pt;}
.yab_c00236{bottom:117.058061pt;}
.yac_c00236{bottom:117.058361pt;}
.ya4_c00236{bottom:130.721805pt;}
.ya3_c00236{bottom:131.055753pt;}
.ya2_c00236{bottom:131.745319pt;}
.ya1_c00236{bottom:132.132941pt;}
.ya0_c00236{bottom:133.164479pt;}
.y9f_c00236{bottom:133.504796pt;}
.y9e_c00236{bottom:133.688305pt;}
.y9d_c00236{bottom:133.891444pt;}
.y9c_c00236{bottom:134.644000pt;}
.y9b_c00236{bottom:145.780245pt;}
.y9a_c00236{bottom:147.123587pt;}
.y99_c00236{bottom:147.629208pt;}
.y98_c00236{bottom:147.936651pt;}
.y97_c00236{bottom:148.838807pt;}
.y96_c00236{bottom:149.676451pt;}
.y95_c00236{bottom:150.491491pt;}
.y94_c00236{bottom:151.182355pt;}
.y93_c00236{bottom:161.083825pt;}
.y92_c00236{bottom:163.448331pt;}
.y91_c00236{bottom:165.235359pt;}
.y90_c00236{bottom:165.849568pt;}
.y8f_c00236{bottom:166.989369pt;}
.y8e_c00236{bottom:167.455343pt;}
.y8d_c00236{bottom:168.023677pt;}
.y8c_c00236{bottom:169.431272pt;}
.y8b_c00236{bottom:178.270272pt;}
.y8a_c00236{bottom:178.697273pt;}
.y89_c00236{bottom:179.048463pt;}
.y88_c00236{bottom:180.051109pt;}
.y87_c00236{bottom:180.645423pt;}
.y86_c00236{bottom:180.941824pt;}
.y85_c00236{bottom:182.875232pt;}
.y84_c00236{bottom:183.587836pt;}
.y83_c00236{bottom:191.801604pt;}
.y82_c00236{bottom:193.084851pt;}
.y81_c00236{bottom:193.507429pt;}
.y80_c00236{bottom:194.342716pt;}
.y7f_c00236{bottom:194.755576pt;}
.y7e_c00236{bottom:195.461973pt;}
.y7d_c00236{bottom:197.159017pt;}
.y7c_c00236{bottom:198.229767pt;}
.y7b_c00236{bottom:208.232996pt;}
.y7a_c00236{bottom:208.657433pt;}
.y79_c00236{bottom:209.742812pt;}
.y78_c00236{bottom:209.963011pt;}
.y77_c00236{bottom:210.206076pt;}
.y76_c00236{bottom:210.626055pt;}
.y75_c00236{bottom:211.273807pt;}
.y74_c00236{bottom:211.542171pt;}
.y73_c00236{bottom:212.238443pt;}
.y72_c00236{bottom:212.509999pt;}
.y71_c00236{bottom:213.352971pt;}
.y70_c00236{bottom:223.761187pt;}
.y6f_c00236{bottom:224.244009pt;}
.y6e_c00236{bottom:225.169852pt;}
.y6d_c00236{bottom:225.739947pt;}
.y6c_c00236{bottom:226.728389pt;}
.y6b_c00236{bottom:227.131961pt;}
.y6a_c00236{bottom:228.495615pt;}
.y69_c00236{bottom:228.860904pt;}
.y68_c00236{bottom:229.258583pt;}
.y67_c00236{bottom:229.678907pt;}
.y66_c00236{bottom:239.631696pt;}
.y65_c00236{bottom:240.284680pt;}
.y64_c00236{bottom:241.595816pt;}
.y63_c00236{bottom:242.087817pt;}
.y62_c00236{bottom:243.919689pt;}
.y61_c00236{bottom:244.800448pt;}
.y60_c00236{bottom:255.966243pt;}
.y5f_c00236{bottom:256.719200pt;}
.y5e_c00236{bottom:257.832068pt;}
.y5d_c00236{bottom:258.186203pt;}
.y5c_c00236{bottom:259.409803pt;}
.y5b_c00236{bottom:259.887209pt;}
.y5a_c00236{bottom:260.402667pt;}
.y59_c00236{bottom:271.592151pt;}
.y58_c00236{bottom:272.714569pt;}
.y57_c00236{bottom:273.603339pt;}
.y56_c00236{bottom:274.698068pt;}
.y55_c00236{bottom:275.213424pt;}
.y54_c00236{bottom:275.659519pt;}
.y53_c00236{bottom:276.048183pt;}
.y52_c00236{bottom:276.242667pt;}
.y51_c00236{bottom:287.549333pt;}
.y50_c00236{bottom:287.800000pt;}
.y4f_c00236{bottom:287.958667pt;}
.y4e_c00236{bottom:288.793333pt;}
.y4d_c00236{bottom:289.046667pt;}
.y4c_c00236{bottom:289.974667pt;}
.y4b_c00236{bottom:290.212000pt;}
.y4a_c00236{bottom:290.568000pt;}
.y49_c00236{bottom:291.120000pt;}
.y48_c00236{bottom:302.177333pt;}
.y47_c00236{bottom:302.873333pt;}
.y46_c00236{bottom:303.576000pt;}
.y45_c00236{bottom:304.000000pt;}
.y44_c00236{bottom:304.596000pt;}
.y43_c00236{bottom:304.752000pt;}
.y42_c00236{bottom:305.520000pt;}
.y41_c00236{bottom:315.981333pt;}
.y40_c00236{bottom:316.180000pt;}
.y3f_c00236{bottom:316.576000pt;}
.y3e_c00236{bottom:317.020000pt;}
.y3d_c00236{bottom:317.850667pt;}
.y3c_c00236{bottom:318.624000pt;}
.y3b_c00236{bottom:319.068000pt;}
.y3a_c00236{bottom:319.389333pt;}
.y39_c00236{bottom:320.465333pt;}
.y38_c00236{bottom:320.642667pt;}
.y37_c00236{bottom:331.037333pt;}
.y36_c00236{bottom:331.932000pt;}
.y35_c00236{bottom:333.014667pt;}
.y34_c00236{bottom:333.368000pt;}
.y33_c00236{bottom:333.852000pt;}
.y32_c00236{bottom:334.754667pt;}
.y31_c00236{bottom:335.042667pt;}
.y30_c00236{bottom:347.912000pt;}
.y2f_c00236{bottom:348.134667pt;}
.y2e_c00236{bottom:348.632000pt;}
.y2d_c00236{bottom:348.952000pt;}
.y2c_c00236{bottom:349.277333pt;}
.y2b_c00236{bottom:349.881333pt;}
.y2a_c00236{bottom:350.209333pt;}
.y29_c00236{bottom:350.882667pt;}
.y28_c00236{bottom:362.544000pt;}
.y27_c00236{bottom:362.901333pt;}
.y26_c00236{bottom:363.046667pt;}
.y25_c00236{bottom:363.658667pt;}
.y24_c00236{bottom:363.925333pt;}
.y23_c00236{bottom:364.620000pt;}
.y22_c00236{bottom:364.768000pt;}
.y21_c00236{bottom:365.282667pt;}
.y20_c00236{bottom:378.592000pt;}
.y1f_c00236{bottom:394.056000pt;}
.y1e_c00236{bottom:409.681333pt;}
.y1d_c00236{bottom:424.117333pt;}
.y1c_c00236{bottom:424.340000pt;}
.y1b_c00236{bottom:424.484000pt;}
.y1a_c00236{bottom:424.893333pt;}
.y19_c00236{bottom:425.402667pt;}
.y18_c00236{bottom:425.628000pt;}
.y17_c00236{bottom:425.757333pt;}
.y16_c00236{bottom:426.052000pt;}
.y15_c00236{bottom:426.482667pt;}
.y14_c00236{bottom:439.718667pt;}
.y13_c00236{bottom:440.176000pt;}
.y12_c00236{bottom:440.405333pt;}
.y11_c00236{bottom:441.044000pt;}
.y10_c00236{bottom:441.325333pt;}
.yf_c00236{bottom:441.856000pt;}
.ye_c00236{bottom:442.038667pt;}
.yd_c00236{bottom:442.321333pt;}
.yc_c00236{bottom:454.806667pt;}
.yb_c00236{bottom:455.197333pt;}
.ya_c00236{bottom:455.396000pt;}
.y9_c00236{bottom:455.934667pt;}
.y8_c00236{bottom:456.497333pt;}
.y7_c00236{bottom:456.658667pt;}
.y6_c00236{bottom:457.144000pt;}
.y5_c00236{bottom:457.442667pt;}
.y4_c00236{bottom:471.381333pt;}
.y3_c00236{bottom:486.740000pt;}
.y2_c00236{bottom:502.070667pt;}
.y1_c00236{bottom:516.837333pt;}
.he_c00236{height:50.409096pt;}
.h1a_c00236{height:52.274219pt;}
.h13_c00236{height:52.276100pt;}
.hd_c00236{height:53.200000pt;}
.h5_c00236{height:54.133333pt;}
.h19_c00236{height:54.141155pt;}
.hf_c00236{height:54.143104pt;}
.h7_c00236{height:55.066667pt;}
.h10_c00236{height:55.076605pt;}
.h6_c00236{height:56.000000pt;}
.h18_c00236{height:56.008091pt;}
.h17_c00236{height:56.941560pt;}
.h11_c00236{height:56.943609pt;}
.hc_c00236{height:57.866667pt;}
.h15_c00236{height:57.875028pt;}
.h3_c00236{height:59.733333pt;}
.h16_c00236{height:59.741964pt;}
.h12_c00236{height:59.744114pt;}
.h2_c00236{height:60.666667pt;}
.h14_c00236{height:60.675432pt;}
.h9_c00236{height:61.600000pt;}
.h8_c00236{height:62.533333pt;}
.ha_c00236{height:63.466667pt;}
.hb_c00236{height:64.400000pt;}
.h4_c00236{height:65.333333pt;}
.h1_c00236{height:555.333333pt;}
.h0_c00236{height:555.600000pt;}
.w0_c00236{width:336.480000pt;}
.w1_c00236{width:336.666667pt;}
.x0_c00236{left:0.000000pt;}
.x59_c00236{left:29.392000pt;}
.x76_c00236{left:35.967128pt;}
.x3a_c00236{left:37.064000pt;}
.x3f_c00236{left:38.009333pt;}
.x2f_c00236{left:39.838667pt;}
.x22_c00236{left:41.162667pt;}
.x2_c00236{left:44.160000pt;}
.x70_c00236{left:47.734667pt;}
.x49_c00236{left:51.190667pt;}
.x7d_c00236{left:55.085664pt;}
.x5f_c00236{left:57.599712pt;}
.x45_c00236{left:59.825333pt;}
.x7b_c00236{left:63.476524pt;}
.x5b_c00236{left:64.677333pt;}
.x6b_c00236{left:67.424959pt;}
.x1b_c00236{left:68.977333pt;}
.x3_c00236{left:70.080000pt;}
.x60_c00236{left:74.879728pt;}
.x54_c00236{left:76.226667pt;}
.x74_c00236{left:79.925077pt;}
.x4_c00236{left:80.880000pt;}
.x40_c00236{left:82.890667pt;}
.x23_c00236{left:84.173333pt;}
.x1c_c00236{left:85.569333pt;}
.xe_c00236{left:88.560000pt;}
.x5c_c00236{left:89.804000pt;}
.x61_c00236{left:90.735845pt;}
.x71_c00236{left:92.002667pt;}
.x64_c00236{left:94.349708pt;}
.x77_c00236{left:96.132620pt;}
.x30_c00236{left:97.918667pt;}
.x50_c00236{left:99.716000pt;}
.x7e_c00236{left:103.775676pt;}
.x41_c00236{left:104.801333pt;}
.xf_c00236{left:106.080000pt;}
.x9_c00236{left:108.480000pt;}
.x31_c00236{left:109.918667pt;}
.x4a_c00236{left:110.948000pt;}
.x35_c00236{left:111.838667pt;}
.x24_c00236{left:113.658667pt;}
.x15_c00236{left:115.084000pt;}
.x46_c00236{left:116.237333pt;}
.x79_c00236{left:122.762745pt;}
.x7c_c00236{left:125.660441pt;}
.x25_c00236{left:126.610667pt;}
.x4b_c00236{left:128.784000pt;}
.x16_c00236{left:129.720000pt;}
.x1d_c00236{left:133.853333pt;}
.x36_c00236{left:135.118667pt;}
.x2a_c00236{left:137.278667pt;}
.xa_c00236{left:141.600000pt;}
.x10_c00236{left:142.560000pt;}
.x42_c00236{left:145.048000pt;}
.x47_c00236{left:146.477333pt;}
.x6c_c00236{left:147.982641pt;}
.x26_c00236{left:149.176000pt;}
.x5_c00236{left:150.960000pt;}
.x4c_c00236{left:153.426667pt;}
.x51_c00236{left:157.561333pt;}
.x1e_c00236{left:159.480000pt;}
.x3b_c00236{left:160.489333pt;}
.x1_c00236{left:163.680000pt;}
.x43_c00236{left:166.718667pt;}
.x48_c00236{left:168.560000pt;}
.x11_c00236{left:170.640000pt;}
.x2b_c00236{left:172.798667pt;}
.x65_c00236{left:175.000188pt;}
.x55_c00236{left:177.637333pt;}
.x17_c00236{left:180.838667pt;}
.x32_c00236{left:183.598667pt;}
.x3c_c00236{left:184.684000pt;}
.xb_c00236{left:186.480000pt;}
.x2c_c00236{left:187.678667pt;}
.x7a_c00236{left:189.724388pt;}
.x37_c00236{left:191.038667pt;}
.x6f_c00236{left:192.065011pt;}
.x56_c00236{left:194.520000pt;}
.x72_c00236{left:195.444000pt;}
.x4d_c00236{left:196.385333pt;}
.x27_c00236{left:200.096000pt;}
.x6_c00236{left:201.120000pt;}
.x12_c00236{left:203.520000pt;}
.x7f_c00236{left:205.067724pt;}
.x69_c00236{left:206.456935pt;}
.x66_c00236{left:208.142221pt;}
.x33_c00236{left:209.758667pt;}
.x5a_c00236{left:215.081333pt;}
.x1f_c00236{left:217.564000pt;}
.x67_c00236{left:219.170019pt;}
.x7_c00236{left:221.520000pt;}
.x2d_c00236{left:224.878667pt;}
.x6d_c00236{left:226.853809pt;}
.x18_c00236{left:229.800000pt;}
.x5d_c00236{left:231.414667pt;}
.x44_c00236{left:236.002667pt;}
.x20_c00236{left:238.441333pt;}
.x28_c00236{left:241.096000pt;}
.x13_c00236{left:242.400000pt;}
.x52_c00236{left:244.221333pt;}
.x75_c00236{left:246.509221pt;}
.x19_c00236{left:247.842667pt;}
.x57_c00236{left:250.173333pt;}
.x78_c00236{left:251.126684pt;}
.x3d_c00236{left:253.561333pt;}
.x29_c00236{left:255.489333pt;}
.xc_c00236{left:257.520000pt;}
.x6e_c00236{left:259.246719pt;}
.x58_c00236{left:260.785333pt;}
.x4e_c00236{left:267.162667pt;}
.x38_c00236{left:269.758667pt;}
.x5e_c00236{left:271.044000pt;}
.x14_c00236{left:273.600000pt;}
.x62_c00236{left:275.543119pt;}
.xd_c00236{left:277.440000pt;}
.x73_c00236{left:278.452000pt;}
.x21_c00236{left:280.004000pt;}
.x1a_c00236{left:283.361333pt;}
.x3e_c00236{left:286.005333pt;}
.x4f_c00236{left:289.192000pt;}
.x39_c00236{left:290.638667pt;}
.x34_c00236{left:292.318667pt;}
.x2e_c00236{left:293.278667pt;}
.x68_c00236{left:294.632575pt;}
.x63_c00236{left:296.532189pt;}
.x53_c00236{left:297.750667pt;}
.x8_c00236{left:299.760000pt;}
.x6a_c00236{left:316.963216pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00237 {
    display:none;
  }
  .loading-indicator_c00237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00237 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00237 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00237" -> "#page-container .classname_c00237")
 */
.pf_c00237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00237 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00237 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00237 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00237 {overflow:visible;}
  }
}
.c_c00237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00237 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00237:after { /* webkit #35443 */
  content: '';
}
.t_c00237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00237 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00237 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00237 { /* info for Javascript */
  display:none;
}
.l_c00237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00237:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00237 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00237.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00237{transform:matrix(0.026115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026115,0.000000,0.000000,0.250000,0,0);}
.m53_c00237{transform:matrix(0.076240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076240,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);}
.mf5_c00237{transform:matrix(0.132985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132985,0.000000,0.000000,0.250000,0,0);}
.me3_c00237{transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);}
.m5c_c00237{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.m68_c00237{transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);}
.m75_c00237{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.156495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156495,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.me9_c00237{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.ma8_c00237{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);}
.m84_c00237{transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);}
.m7b_c00237{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m8d_c00237{transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m7a_c00237{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.163010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163010,0.000000,0.000000,0.250000,0,0);}
.m65_c00237{transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);}
.mbd_c00237{transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);}
.m86_c00237{transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);}
.mc1_c00237{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);}
.m3d_c00237{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m76_c00237{transform:matrix(0.165415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165415,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00237{transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);}
.m72_c00237{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.167205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167205,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167655,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.167905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167905,0.000000,0.000000,0.250000,0,0);}
.m50_c00237{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.mee_c00237{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.mcc_c00237{transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);}
.ma1_c00237{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.mcb_c00237{transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168595,0.000000,0.000000,0.250000,0,0);}
.mb9_c00237{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m6d_c00237{transform:matrix(0.168985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168985,0.000000,0.000000,0.250000,0,0);}
.mbe_c00237{transform:matrix(0.169045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169045,0.000000,0.000000,0.250000,0,0);}
.mc6_c00237{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.mc0_c00237{transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);}
.md3_c00237{transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);}
.mcd_c00237{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.mec_c00237{transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);}
.mf3_c00237{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.mc8_c00237{transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);}
.mea_c00237{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);}
.mac_c00237{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.m4f_c00237{transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);}
.m6e_c00237{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m71_c00237{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.ma6_c00237{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.mb2_c00237{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.m8e_c00237{transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);}
.m9b_c00237{transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.m97_c00237{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m5f_c00237{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.mda_c00237{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00237{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176780,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.m51_c00237{transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);}
.m79_c00237{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m7d_c00237{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.mcf_c00237{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);}
.mca_c00237{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);}
.me1_c00237{transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);}
.me6_c00237{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m80_c00237{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.me2_c00237{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.m7f_c00237{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.mba_c00237{transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);}
.mc4_c00237{transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);}
.mc9_c00237{transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m87_c00237{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);}
.ma3_c00237{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m83_c00237{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.md0_c00237{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.ma4_c00237{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00237{transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);}
.m6f_c00237{transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187040,0.000000,0.000000,0.250000,0,0);}
.mce_c00237{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.me8_c00237{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.mf2_c00237{transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.mdd_c00237{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.md7_c00237{transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);}
.me5_c00237{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.md6_c00237{transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);}
.mbf_c00237{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.mf8_c00237{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.mde_c00237{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.m7c_c00237{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mf0_c00237{transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00237{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);}
.mdf_c00237{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.mdc_c00237{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m55_c00237{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.med_c00237{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00237{transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.mfb_c00237{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.mab_c00237{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m9a_c00237{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m56_c00237{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);}
.m96_c00237{transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);}
.mc5_c00237{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00237{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.m82_c00237{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.mbb_c00237{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00237{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);}
.md5_c00237{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);}
.m6a_c00237{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.mb7_c00237{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.mf1_c00237{transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197615,0.000000,0.000000,0.250000,0,0);}
.m70_c00237{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m99_c00237{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.mf4_c00237{transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);}
.meb_c00237{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.mf6_c00237{transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00237{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.me0_c00237{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.mef_c00237{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.mfc_c00237{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.md1_c00237{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.md2_c00237{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m61_c00237{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.mc3_c00237{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.me4_c00237{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m95_c00237{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m8b_c00237{transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);}
.md8_c00237{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.mfa_c00237{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.me7_c00237{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m5d_c00237{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);}
.m5e_c00237{transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206070,0.000000,0.000000,0.250000,0,0);}
.m81_c00237{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.md9_c00237{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m63_c00237{transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.mb4_c00237{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.mf7_c00237{transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);}
.m78_c00237{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.mc2_c00237{transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);}
.m5b_c00237{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.m43_c00237{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.mb1_c00237{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m3c_c00237{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.mb0_c00237{transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215395,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.mf9_c00237{transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);}
.m98_c00237{transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216345,0.000000,0.000000,0.250000,0,0);}
.ma7_c00237{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.mb5_c00237{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00237{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m46_c00237{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m60_c00237{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.m5a_c00237{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.md4_c00237{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);}
.m58_c00237{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m8f_c00237{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00237{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.mdb_c00237{transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);}
.m59_c00237{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.maf_c00237{transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);}
.mb6_c00237{transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);}
.ma0_c00237{transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);}
.m52_c00237{transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230060,0.000000,0.000000,0.250000,0,0);}
.mae_c00237{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.mb8_c00237{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);}
.mad_c00237{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.maa_c00237{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m9c_c00237{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m9f_c00237{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m54_c00237{transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:0.000000px;}
.fc0_c00237{color:transparent;}
.fs5_c00237{font-size:58.800000px;}
.fs7_c00237{font-size:60.900000px;}
.fs9_c00237{font-size:61.950000px;}
.fs3_c00237{font-size:63.000000px;}
.fs8_c00237{font-size:65.100000px;}
.fs2_c00237{font-size:66.150000px;}
.fsb_c00237{font-size:67.200000px;}
.fsc_c00237{font-size:68.250000px;}
.fsd_c00237{font-size:69.300000px;}
.fs6_c00237{font-size:70.350000px;}
.fs4_c00237{font-size:71.400000px;}
.fs1_c00237{font-size:72.450000px;}
.fsa_c00237{font-size:74.550000px;}
.fs0_c00237{font-size:105.000000px;}
.y0_c00237{bottom:0.000000px;}
.y21_c00237{bottom:32.670000px;}
.y22_c00237{bottom:32.923500px;}
.y23_c00237{bottom:33.172500px;}
.y24_c00237{bottom:33.694500px;}
.y25_c00237{bottom:33.925500px;}
.y26_c00237{bottom:34.701000px;}
.y27_c00237{bottom:35.392500px;}
.y28_c00237{bottom:35.622000px;}
.y20_c00237{bottom:51.394500px;}
.y1f_c00237{bottom:68.286000px;}
.y1e_c00237{bottom:85.507500px;}
.y1d_c00237{bottom:103.618500px;}
.y1c_c00237{bottom:119.253000px;}
.y1b_c00237{bottom:136.050000px;}
.y1a_c00237{bottom:154.234500px;}
.y19_c00237{bottom:172.080000px;}
.y18_c00237{bottom:190.258500px;}
.y17_c00237{bottom:206.940000px;}
.y16_c00237{bottom:224.743500px;}
.y15_c00237{bottom:242.127000px;}
.y14_c00237{bottom:258.478500px;}
.y13_c00237{bottom:275.878500px;}
.y12_c00237{bottom:292.227000px;}
.y11_c00237{bottom:309.118500px;}
.y10_c00237{bottom:326.320500px;}
.yf_c00237{bottom:343.591500px;}
.ye_c00237{bottom:361.051500px;}
.yd_c00237{bottom:378.352500px;}
.yc_c00237{bottom:395.064000px;}
.yb_c00237{bottom:412.380000px;}
.ya_c00237{bottom:429.901500px;}
.y9_c00237{bottom:447.384000px;}
.y8_c00237{bottom:464.032500px;}
.y7_c00237{bottom:481.197000px;}
.y6_c00237{bottom:498.351000px;}
.y5_c00237{bottom:514.350000px;}
.y4_c00237{bottom:532.108500px;}
.y3_c00237{bottom:549.148500px;}
.y2_c00237{bottom:566.268000px;}
.y1_c00237{bottom:579.553500px;}
.h7_c00237{height:58.800000px;}
.h9_c00237{height:60.900000px;}
.hb_c00237{height:61.950000px;}
.h5_c00237{height:63.000000px;}
.ha_c00237{height:65.100000px;}
.h4_c00237{height:66.150000px;}
.hd_c00237{height:67.200000px;}
.he_c00237{height:68.250000px;}
.hf_c00237{height:69.300000px;}
.h8_c00237{height:70.350000px;}
.h6_c00237{height:71.400000px;}
.h3_c00237{height:72.450000px;}
.hc_c00237{height:74.550000px;}
.h2_c00237{height:105.000000px;}
.h1_c00237{height:624.750000px;}
.h0_c00237{height:625.050000px;}
.w0_c00237{width:378.540000px;}
.w1_c00237{width:378.750000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:46.440000px;}
.x27_c00237{left:47.520000px;}
.x43_c00237{left:57.510000px;}
.x77_c00237{left:61.020000px;}
.x3f_c00237{left:65.070000px;}
.x4a_c00237{left:68.040000px;}
.x54_c00237{left:69.120000px;}
.x3_c00237{left:71.010000px;}
.x4d_c00237{left:72.360000px;}
.x19_c00237{left:73.710000px;}
.x28_c00237{left:78.570000px;}
.xb_c00237{left:83.160000px;}
.x39_c00237{left:85.590000px;}
.x4b_c00237{left:87.480000px;}
.x1a_c00237{left:88.830000px;}
.x32_c00237{left:90.450000px;}
.x7f_c00237{left:92.743500px;}
.x76_c00237{left:93.960000px;}
.x4e_c00237{left:95.040000px;}
.x78_c00237{left:98.550000px;}
.x20_c00237{left:99.900000px;}
.xc_c00237{left:101.790000px;}
.x13_c00237{left:103.410000px;}
.x3c_c00237{left:104.490000px;}
.x46_c00237{left:106.380000px;}
.x33_c00237{left:111.780000px;}
.x79_c00237{left:113.670000px;}
.x7d_c00237{left:115.560000px;}
.x4c_c00237{left:117.720000px;}
.x6f_c00237{left:120.690000px;}
.x4_c00237{left:121.770000px;}
.x7b_c00237{left:123.660000px;}
.x34_c00237{left:124.740000px;}
.x65_c00237{left:125.820000px;}
.x47_c00237{left:130.410000px;}
.x2e_c00237{left:132.030000px;}
.x21_c00237{left:133.650000px;}
.x5f_c00237{left:137.430000px;}
.xd_c00237{left:139.050000px;}
.x35_c00237{left:140.670000px;}
.x4f_c00237{left:143.100000px;}
.x5_c00237{left:148.230000px;}
.x55_c00237{left:149.310000px;}
.x1b_c00237{left:151.740000px;}
.x60_c00237{left:153.900000px;}
.x57_c00237{left:155.250000px;}
.x14_c00237{left:156.330000px;}
.x22_c00237{left:157.410000px;}
.x40_c00237{left:159.030000px;}
.x6b_c00237{left:160.380000px;}
.xe_c00237{left:162.270000px;}
.x72_c00237{left:163.620000px;}
.x1c_c00237{left:165.240000px;}
.x66_c00237{left:167.940000px;}
.x58_c00237{left:169.020000px;}
.x56_c00237{left:172.800000px;}
.x50_c00237{left:174.690000px;}
.x23_c00237{left:176.580000px;}
.x3d_c00237{left:177.660000px;}
.x1_c00237{left:179.280000px;}
.x1d_c00237{left:183.330000px;}
.x6c_c00237{left:184.950000px;}
.xf_c00237{left:186.840000px;}
.x36_c00237{left:189.270000px;}
.x75_c00237{left:191.430000px;}
.x6_c00237{left:196.290000px;}
.x2f_c00237{left:197.640000px;}
.x69_c00237{left:200.340000px;}
.x61_c00237{left:203.580000px;}
.x44_c00237{left:204.660000px;}
.x29_c00237{left:209.250000px;}
.x71_c00237{left:212.760000px;}
.x30_c00237{left:217.890000px;}
.x3e_c00237{left:218.970000px;}
.x2a_c00237{left:222.210000px;}
.x62_c00237{left:223.830000px;}
.x73_c00237{left:225.450000px;}
.x15_c00237{left:226.530000px;}
.x6a_c00237{left:228.420000px;}
.x59_c00237{left:231.120000px;}
.x1e_c00237{left:233.280000px;}
.x3a_c00237{left:235.440000px;}
.x51_c00237{left:238.410000px;}
.x41_c00237{left:241.920000px;}
.x6d_c00237{left:243.810000px;}
.x67_c00237{left:245.430000px;}
.x48_c00237{left:248.670000px;}
.x2b_c00237{left:249.750000px;}
.x7_c00237{left:253.260000px;}
.x6e_c00237{left:255.420000px;}
.x24_c00237{left:257.580000px;}
.x16_c00237{left:258.660000px;}
.x31_c00237{left:260.010000px;}
.x10_c00237{left:265.410000px;}
.x52_c00237{left:267.030000px;}
.x5c_c00237{left:268.920000px;}
.x37_c00237{left:270.810000px;}
.x7e_c00237{left:272.430000px;}
.x49_c00237{left:274.320000px;}
.x17_c00237{left:277.830000px;}
.x8_c00237{left:280.260000px;}
.x5a_c00237{left:281.340000px;}
.x68_c00237{left:283.770000px;}
.x25_c00237{left:286.470000px;}
.x7a_c00237{left:288.900000px;}
.x63_c00237{left:290.250000px;}
.x5d_c00237{left:294.840000px;}
.x11_c00237{left:296.460000px;}
.x45_c00237{left:297.540000px;}
.x38_c00237{left:300.510000px;}
.x2c_c00237{left:303.750000px;}
.x1f_c00237{left:306.450000px;}
.x9_c00237{left:312.930000px;}
.x42_c00237{left:314.010000px;}
.x70_c00237{left:316.440000px;}
.x2d_c00237{left:318.330000px;}
.x74_c00237{left:319.950000px;}
.x64_c00237{left:322.110000px;}
.x7c_c00237{left:323.730000px;}
.xa_c00237{left:324.810000px;}
.x18_c00237{left:326.700000px;}
.x5b_c00237{left:328.590000px;}
.x3b_c00237{left:331.830000px;}
.x26_c00237{left:334.530000px;}
.x12_c00237{left:336.150000px;}
.x5e_c00237{left:341.280000px;}
.x53_c00237{left:358.290000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:0.000000pt;}
.fs5_c00237{font-size:52.266667pt;}
.fs7_c00237{font-size:54.133333pt;}
.fs9_c00237{font-size:55.066667pt;}
.fs3_c00237{font-size:56.000000pt;}
.fs8_c00237{font-size:57.866667pt;}
.fs2_c00237{font-size:58.800000pt;}
.fsb_c00237{font-size:59.733333pt;}
.fsc_c00237{font-size:60.666667pt;}
.fsd_c00237{font-size:61.600000pt;}
.fs6_c00237{font-size:62.533333pt;}
.fs4_c00237{font-size:63.466667pt;}
.fs1_c00237{font-size:64.400000pt;}
.fsa_c00237{font-size:66.266667pt;}
.fs0_c00237{font-size:93.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y21_c00237{bottom:29.040000pt;}
.y22_c00237{bottom:29.265333pt;}
.y23_c00237{bottom:29.486667pt;}
.y24_c00237{bottom:29.950667pt;}
.y25_c00237{bottom:30.156000pt;}
.y26_c00237{bottom:30.845333pt;}
.y27_c00237{bottom:31.460000pt;}
.y28_c00237{bottom:31.664000pt;}
.y20_c00237{bottom:45.684000pt;}
.y1f_c00237{bottom:60.698667pt;}
.y1e_c00237{bottom:76.006667pt;}
.y1d_c00237{bottom:92.105333pt;}
.y1c_c00237{bottom:106.002667pt;}
.y1b_c00237{bottom:120.933333pt;}
.y1a_c00237{bottom:137.097333pt;}
.y19_c00237{bottom:152.960000pt;}
.y18_c00237{bottom:169.118667pt;}
.y17_c00237{bottom:183.946667pt;}
.y16_c00237{bottom:199.772000pt;}
.y15_c00237{bottom:215.224000pt;}
.y14_c00237{bottom:229.758667pt;}
.y13_c00237{bottom:245.225333pt;}
.y12_c00237{bottom:259.757333pt;}
.y11_c00237{bottom:274.772000pt;}
.y10_c00237{bottom:290.062667pt;}
.yf_c00237{bottom:305.414667pt;}
.ye_c00237{bottom:320.934667pt;}
.yd_c00237{bottom:336.313333pt;}
.yc_c00237{bottom:351.168000pt;}
.yb_c00237{bottom:366.560000pt;}
.ya_c00237{bottom:382.134667pt;}
.y9_c00237{bottom:397.674667pt;}
.y8_c00237{bottom:412.473333pt;}
.y7_c00237{bottom:427.730667pt;}
.y6_c00237{bottom:442.978667pt;}
.y5_c00237{bottom:457.200000pt;}
.y4_c00237{bottom:472.985333pt;}
.y3_c00237{bottom:488.132000pt;}
.y2_c00237{bottom:503.349333pt;}
.y1_c00237{bottom:515.158667pt;}
.h7_c00237{height:52.266667pt;}
.h9_c00237{height:54.133333pt;}
.hb_c00237{height:55.066667pt;}
.h5_c00237{height:56.000000pt;}
.ha_c00237{height:57.866667pt;}
.h4_c00237{height:58.800000pt;}
.hd_c00237{height:59.733333pt;}
.he_c00237{height:60.666667pt;}
.hf_c00237{height:61.600000pt;}
.h8_c00237{height:62.533333pt;}
.h6_c00237{height:63.466667pt;}
.h3_c00237{height:64.400000pt;}
.hc_c00237{height:66.266667pt;}
.h2_c00237{height:93.333333pt;}
.h1_c00237{height:555.333333pt;}
.h0_c00237{height:555.600000pt;}
.w0_c00237{width:336.480000pt;}
.w1_c00237{width:336.666667pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:41.280000pt;}
.x27_c00237{left:42.240000pt;}
.x43_c00237{left:51.120000pt;}
.x77_c00237{left:54.240000pt;}
.x3f_c00237{left:57.840000pt;}
.x4a_c00237{left:60.480000pt;}
.x54_c00237{left:61.440000pt;}
.x3_c00237{left:63.120000pt;}
.x4d_c00237{left:64.320000pt;}
.x19_c00237{left:65.520000pt;}
.x28_c00237{left:69.840000pt;}
.xb_c00237{left:73.920000pt;}
.x39_c00237{left:76.080000pt;}
.x4b_c00237{left:77.760000pt;}
.x1a_c00237{left:78.960000pt;}
.x32_c00237{left:80.400000pt;}
.x7f_c00237{left:82.438667pt;}
.x76_c00237{left:83.520000pt;}
.x4e_c00237{left:84.480000pt;}
.x78_c00237{left:87.600000pt;}
.x20_c00237{left:88.800000pt;}
.xc_c00237{left:90.480000pt;}
.x13_c00237{left:91.920000pt;}
.x3c_c00237{left:92.880000pt;}
.x46_c00237{left:94.560000pt;}
.x33_c00237{left:99.360000pt;}
.x79_c00237{left:101.040000pt;}
.x7d_c00237{left:102.720000pt;}
.x4c_c00237{left:104.640000pt;}
.x6f_c00237{left:107.280000pt;}
.x4_c00237{left:108.240000pt;}
.x7b_c00237{left:109.920000pt;}
.x34_c00237{left:110.880000pt;}
.x65_c00237{left:111.840000pt;}
.x47_c00237{left:115.920000pt;}
.x2e_c00237{left:117.360000pt;}
.x21_c00237{left:118.800000pt;}
.x5f_c00237{left:122.160000pt;}
.xd_c00237{left:123.600000pt;}
.x35_c00237{left:125.040000pt;}
.x4f_c00237{left:127.200000pt;}
.x5_c00237{left:131.760000pt;}
.x55_c00237{left:132.720000pt;}
.x1b_c00237{left:134.880000pt;}
.x60_c00237{left:136.800000pt;}
.x57_c00237{left:138.000000pt;}
.x14_c00237{left:138.960000pt;}
.x22_c00237{left:139.920000pt;}
.x40_c00237{left:141.360000pt;}
.x6b_c00237{left:142.560000pt;}
.xe_c00237{left:144.240000pt;}
.x72_c00237{left:145.440000pt;}
.x1c_c00237{left:146.880000pt;}
.x66_c00237{left:149.280000pt;}
.x58_c00237{left:150.240000pt;}
.x56_c00237{left:153.600000pt;}
.x50_c00237{left:155.280000pt;}
.x23_c00237{left:156.960000pt;}
.x3d_c00237{left:157.920000pt;}
.x1_c00237{left:159.360000pt;}
.x1d_c00237{left:162.960000pt;}
.x6c_c00237{left:164.400000pt;}
.xf_c00237{left:166.080000pt;}
.x36_c00237{left:168.240000pt;}
.x75_c00237{left:170.160000pt;}
.x6_c00237{left:174.480000pt;}
.x2f_c00237{left:175.680000pt;}
.x69_c00237{left:178.080000pt;}
.x61_c00237{left:180.960000pt;}
.x44_c00237{left:181.920000pt;}
.x29_c00237{left:186.000000pt;}
.x71_c00237{left:189.120000pt;}
.x30_c00237{left:193.680000pt;}
.x3e_c00237{left:194.640000pt;}
.x2a_c00237{left:197.520000pt;}
.x62_c00237{left:198.960000pt;}
.x73_c00237{left:200.400000pt;}
.x15_c00237{left:201.360000pt;}
.x6a_c00237{left:203.040000pt;}
.x59_c00237{left:205.440000pt;}
.x1e_c00237{left:207.360000pt;}
.x3a_c00237{left:209.280000pt;}
.x51_c00237{left:211.920000pt;}
.x41_c00237{left:215.040000pt;}
.x6d_c00237{left:216.720000pt;}
.x67_c00237{left:218.160000pt;}
.x48_c00237{left:221.040000pt;}
.x2b_c00237{left:222.000000pt;}
.x7_c00237{left:225.120000pt;}
.x6e_c00237{left:227.040000pt;}
.x24_c00237{left:228.960000pt;}
.x16_c00237{left:229.920000pt;}
.x31_c00237{left:231.120000pt;}
.x10_c00237{left:235.920000pt;}
.x52_c00237{left:237.360000pt;}
.x5c_c00237{left:239.040000pt;}
.x37_c00237{left:240.720000pt;}
.x7e_c00237{left:242.160000pt;}
.x49_c00237{left:243.840000pt;}
.x17_c00237{left:246.960000pt;}
.x8_c00237{left:249.120000pt;}
.x5a_c00237{left:250.080000pt;}
.x68_c00237{left:252.240000pt;}
.x25_c00237{left:254.640000pt;}
.x7a_c00237{left:256.800000pt;}
.x63_c00237{left:258.000000pt;}
.x5d_c00237{left:262.080000pt;}
.x11_c00237{left:263.520000pt;}
.x45_c00237{left:264.480000pt;}
.x38_c00237{left:267.120000pt;}
.x2c_c00237{left:270.000000pt;}
.x1f_c00237{left:272.400000pt;}
.x9_c00237{left:278.160000pt;}
.x42_c00237{left:279.120000pt;}
.x70_c00237{left:281.280000pt;}
.x2d_c00237{left:282.960000pt;}
.x74_c00237{left:284.400000pt;}
.x64_c00237{left:286.320000pt;}
.x7c_c00237{left:287.760000pt;}
.xa_c00237{left:288.720000pt;}
.x18_c00237{left:290.400000pt;}
.x5b_c00237{left:292.080000pt;}
.x3b_c00237{left:294.960000pt;}
.x26_c00237{left:297.360000pt;}
.x12_c00237{left:298.800000pt;}
.x5e_c00237{left:303.360000pt;}
.x53_c00237{left:318.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00238 {
    display:none;
  }
  .loading-indicator_c00238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00238 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00238 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00238" -> "#page-container .classname_c00238")
 */
.pf_c00238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00238 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00238 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00238 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00238 {overflow:visible;}
  }
}
.c_c00238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00238 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00238:after { /* webkit #35443 */
  content: '';
}
.t_c00238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00238 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00238 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00238 { /* info for Javascript */
  display:none;
}
.l_c00238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00238:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00238 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00238.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m67_c00238{transform:matrix(0.096117,0.001250,-0.003250,0.249979,0,0);-ms-transform:matrix(0.096117,0.001250,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.096117,0.001250,-0.003250,0.249979,0,0);}
.m61_c00238{transform:matrix(0.140818,0.001831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.140818,0.001831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.140818,0.001831,-0.003250,0.249979,0,0);}
.m1e_c00238{transform:matrix(0.146205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146205,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);}
.m70_c00238{transform:matrix(0.150002,0.001950,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150002,0.001950,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150002,0.001950,-0.003250,0.249979,0,0);}
.m72_c00238{transform:matrix(0.154022,0.002002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154022,0.002002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154022,0.002002,-0.003250,0.249979,0,0);}
.md_c00238{transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.158172,0.002056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158172,0.002056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158172,0.002056,-0.003250,0.249979,0,0);}
.m53_c00238{transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158322,0.002058,-0.003250,0.249979,0,0);}
.m3c_c00238{transform:matrix(0.160006,0.002080,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160006,0.002080,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160006,0.002080,-0.003250,0.249979,0,0);}
.m50_c00238{transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161326,0.002097,-0.003250,0.249979,0,0);}
.md9_c00238{transform:matrix(0.162016,0.002106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162016,0.002106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162016,0.002106,-0.003250,0.249979,0,0);}
.m94_c00238{transform:matrix(0.162036,0.002106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162036,0.002106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162036,0.002106,-0.003250,0.249979,0,0);}
.m4b_c00238{transform:matrix(0.162341,0.002110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162341,0.002110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162341,0.002110,-0.003250,0.249979,0,0);}
.m77_c00238{transform:matrix(0.163286,0.002123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163286,0.002123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163286,0.002123,-0.003250,0.249979,0,0);}
.m71_c00238{transform:matrix(0.163726,0.002128,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163726,0.002128,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163726,0.002128,-0.003250,0.249979,0,0);}
.m99_c00238{transform:matrix(0.164721,0.002141,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164721,0.002141,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164721,0.002141,-0.003250,0.249979,0,0);}
.m4d_c00238{transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);}
.m45_c00238{transform:matrix(0.166111,0.002159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166111,0.002159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166111,0.002159,-0.003250,0.249979,0,0);}
.m89_c00238{transform:matrix(0.166361,0.002163,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166361,0.002163,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166361,0.002163,-0.003250,0.249979,0,0);}
.m16_c00238{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m75_c00238{transform:matrix(0.166601,0.002166,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166601,0.002166,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166601,0.002166,-0.003250,0.249979,0,0);}
.mc1_c00238{transform:matrix(0.167026,0.002171,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167026,0.002171,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167026,0.002171,-0.003250,0.249979,0,0);}
.maf_c00238{transform:matrix(0.167151,0.002173,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167151,0.002173,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167151,0.002173,-0.003250,0.249979,0,0);}
.m6c_c00238{transform:matrix(0.167666,0.002180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167666,0.002180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167666,0.002180,-0.003250,0.249979,0,0);}
.m6b_c00238{transform:matrix(0.168421,0.002189,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168421,0.002189,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168421,0.002189,-0.003250,0.249979,0,0);}
.m82_c00238{transform:matrix(0.168846,0.002195,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168846,0.002195,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168846,0.002195,-0.003250,0.249979,0,0);}
.m1a_c00238{transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);}
.m85_c00238{transform:matrix(0.169096,0.002198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169096,0.002198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169096,0.002198,-0.003250,0.249979,0,0);}
.mbb_c00238{transform:matrix(0.169351,0.002202,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169351,0.002202,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169351,0.002202,-0.003250,0.249979,0,0);}
.m78_c00238{transform:matrix(0.169756,0.002207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169756,0.002207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169756,0.002207,-0.003250,0.249979,0,0);}
.mb9_c00238{transform:matrix(0.169766,0.002207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169766,0.002207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169766,0.002207,-0.003250,0.249979,0,0);}
.m5c_c00238{transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);}
.m22_c00238{transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);}
.m76_c00238{transform:matrix(0.170901,0.002222,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170901,0.002222,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170901,0.002222,-0.003250,0.249979,0,0);}
.m7f_c00238{transform:matrix(0.170991,0.002223,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170991,0.002223,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170991,0.002223,-0.003250,0.249979,0,0);}
.ma7_c00238{transform:matrix(0.171576,0.002230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171576,0.002230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171576,0.002230,-0.003250,0.249979,0,0);}
.mbc_c00238{transform:matrix(0.171665,0.002232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171665,0.002232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171665,0.002232,-0.003250,0.249979,0,0);}
.m21_c00238{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.md1_c00238{transform:matrix(0.172175,0.002238,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172175,0.002238,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172175,0.002238,-0.003250,0.249979,0,0);}
.m4a_c00238{transform:matrix(0.172295,0.002240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172295,0.002240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172295,0.002240,-0.003250,0.249979,0,0);}
.m58_c00238{transform:matrix(0.172335,0.002240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172335,0.002240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172335,0.002240,-0.003250,0.249979,0,0);}
.m93_c00238{transform:matrix(0.172445,0.002242,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172445,0.002242,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172445,0.002242,-0.003250,0.249979,0,0);}
.m3e_c00238{transform:matrix(0.172810,0.002247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172810,0.002247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172810,0.002247,-0.003250,0.249979,0,0);}
.ma5_c00238{transform:matrix(0.173025,0.002249,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173025,0.002249,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173025,0.002249,-0.003250,0.249979,0,0);}
.m2_c00238{transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00238{transform:matrix(0.173495,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173495,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173495,0.002255,-0.003250,0.249979,0,0);}
.m3a_c00238{transform:matrix(0.173665,0.002258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173665,0.002258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173665,0.002258,-0.003250,0.249979,0,0);}
.m28_c00238{transform:matrix(0.173740,0.002259,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173740,0.002259,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173740,0.002259,-0.003250,0.249979,0,0);}
.m4e_c00238{transform:matrix(0.173775,0.002259,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173775,0.002259,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173775,0.002259,-0.003250,0.249979,0,0);}
.m18_c00238{transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.m68_c00238{transform:matrix(0.175570,0.002282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175570,0.002282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175570,0.002282,-0.003250,0.249979,0,0);}
.m10_c00238{transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);}
.m54_c00238{transform:matrix(0.176050,0.002289,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176050,0.002289,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176050,0.002289,-0.003250,0.249979,0,0);}
.mc_c00238{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.m8d_c00238{transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);}
.mcf_c00238{transform:matrix(0.176665,0.002297,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176665,0.002297,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176665,0.002297,-0.003250,0.249979,0,0);}
.m7_c00238{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);}
.m6a_c00238{transform:matrix(0.176745,0.002298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176745,0.002298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176745,0.002298,-0.003250,0.249979,0,0);}
.m15_c00238{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.177020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177020,0.000000,0.000000,0.250000,0,0);}
.ma3_c00238{transform:matrix(0.177125,0.002303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177125,0.002303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177125,0.002303,-0.003250,0.249979,0,0);}
.m88_c00238{transform:matrix(0.177165,0.002303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177165,0.002303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177165,0.002303,-0.003250,0.249979,0,0);}
.m95_c00238{transform:matrix(0.178105,0.002315,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178105,0.002315,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178105,0.002315,-0.003250,0.249979,0,0);}
.mce_c00238{transform:matrix(0.179850,0.002338,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179850,0.002338,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179850,0.002338,-0.003250,0.249979,0,0);}
.mbe_c00238{transform:matrix(0.180095,0.002341,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180095,0.002341,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180095,0.002341,-0.003250,0.249979,0,0);}
.mc3_c00238{transform:matrix(0.180160,0.002342,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180160,0.002342,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180160,0.002342,-0.003250,0.249979,0,0);}
.m38_c00238{transform:matrix(0.180325,0.002344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180325,0.002344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180325,0.002344,-0.003250,0.249979,0,0);}
.m2f_c00238{transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);}
.m1_c00238{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m9e_c00238{transform:matrix(0.181435,0.002359,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181435,0.002359,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181435,0.002359,-0.003250,0.249979,0,0);}
.md0_c00238{transform:matrix(0.181555,0.002360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181555,0.002360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181555,0.002360,-0.003250,0.249979,0,0);}
.m96_c00238{transform:matrix(0.181980,0.002366,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181980,0.002366,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181980,0.002366,-0.003250,0.249979,0,0);}
.m36_c00238{transform:matrix(0.182020,0.002366,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182020,0.002366,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182020,0.002366,-0.003250,0.249979,0,0);}
.m47_c00238{transform:matrix(0.182160,0.002368,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182160,0.002368,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182160,0.002368,-0.003250,0.249979,0,0);}
.mac_c00238{transform:matrix(0.182905,0.002378,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182905,0.002378,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182905,0.002378,-0.003250,0.249979,0,0);}
.m5_c00238{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.mda_c00238{transform:matrix(0.183230,0.002382,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183230,0.002382,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183230,0.002382,-0.003250,0.249979,0,0);}
.mc0_c00238{transform:matrix(0.183375,0.002384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183375,0.002384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183375,0.002384,-0.003250,0.249979,0,0);}
.mf_c00238{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.ma2_c00238{transform:matrix(0.184054,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184054,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184054,0.002393,-0.003250,0.249979,0,0);}
.m1c_c00238{transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);}
.m9a_c00238{transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);}
.m8b_c00238{transform:matrix(0.185099,0.002406,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185099,0.002406,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185099,0.002406,-0.003250,0.249979,0,0);}
.m42_c00238{transform:matrix(0.185249,0.002408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185249,0.002408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185249,0.002408,-0.003250,0.249979,0,0);}
.m25_c00238{transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);}
.ma4_c00238{transform:matrix(0.185589,0.002413,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185589,0.002413,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185589,0.002413,-0.003250,0.249979,0,0);}
.m6e_c00238{transform:matrix(0.185929,0.002417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185929,0.002417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185929,0.002417,-0.003250,0.249979,0,0);}
.mc2_c00238{transform:matrix(0.186244,0.002421,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186244,0.002421,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186244,0.002421,-0.003250,0.249979,0,0);}
.m80_c00238{transform:matrix(0.186944,0.002430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186944,0.002430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186944,0.002430,-0.003250,0.249979,0,0);}
.m20_c00238{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.187494,0.002437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187494,0.002437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187494,0.002437,-0.003250,0.249979,0,0);}
.mb4_c00238{transform:matrix(0.188159,0.002446,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188159,0.002446,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188159,0.002446,-0.003250,0.249979,0,0);}
.m7d_c00238{transform:matrix(0.188644,0.002452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188644,0.002452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188644,0.002452,-0.003250,0.249979,0,0);}
.m69_c00238{transform:matrix(0.188654,0.002453,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188654,0.002453,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188654,0.002453,-0.003250,0.249979,0,0);}
.m8_c00238{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{transform:matrix(0.189174,0.002459,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189174,0.002459,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189174,0.002459,-0.003250,0.249979,0,0);}
.m97_c00238{transform:matrix(0.189379,0.002462,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189379,0.002462,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189379,0.002462,-0.003250,0.249979,0,0);}
.m12_c00238{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.m83_c00238{transform:matrix(0.189724,0.002466,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189724,0.002466,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189724,0.002466,-0.003250,0.249979,0,0);}
.mb5_c00238{transform:matrix(0.189859,0.002468,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189859,0.002468,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189859,0.002468,-0.003250,0.249979,0,0);}
.md7_c00238{transform:matrix(0.189959,0.002469,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189959,0.002469,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189959,0.002469,-0.003250,0.249979,0,0);}
.m43_c00238{transform:matrix(0.190269,0.002473,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190269,0.002473,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190269,0.002473,-0.003250,0.249979,0,0);}
.m7b_c00238{transform:matrix(0.190359,0.002475,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190359,0.002475,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190359,0.002475,-0.003250,0.249979,0,0);}
.m37_c00238{transform:matrix(0.191039,0.002484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191039,0.002484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191039,0.002484,-0.003250,0.249979,0,0);}
.m40_c00238{transform:matrix(0.191074,0.002484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191074,0.002484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191074,0.002484,-0.003250,0.249979,0,0);}
.m81_c00238{transform:matrix(0.191294,0.002487,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191294,0.002487,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191294,0.002487,-0.003250,0.249979,0,0);}
.m0_c00238{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.192039,0.002497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192039,0.002497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192039,0.002497,-0.003250,0.249979,0,0);}
.m2a_c00238{transform:matrix(0.192349,0.002501,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192349,0.002501,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192349,0.002501,-0.003250,0.249979,0,0);}
.mb8_c00238{transform:matrix(0.192664,0.002505,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192664,0.002505,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192664,0.002505,-0.003250,0.249979,0,0);}
.m5b_c00238{transform:matrix(0.193034,0.002509,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193034,0.002509,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193034,0.002509,-0.003250,0.249979,0,0);}
.m60_c00238{transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);}
.m52_c00238{transform:matrix(0.193354,0.002514,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193354,0.002514,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193354,0.002514,-0.003250,0.249979,0,0);}
.m14_c00238{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);}
.m79_c00238{transform:matrix(0.194684,0.002531,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194684,0.002531,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194684,0.002531,-0.003250,0.249979,0,0);}
.m8a_c00238{transform:matrix(0.194779,0.002532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194779,0.002532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194779,0.002532,-0.003250,0.249979,0,0);}
.m1d_c00238{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.mdc_c00238{transform:matrix(0.195234,0.002538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195234,0.002538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195234,0.002538,-0.003250,0.249979,0,0);}
.ma9_c00238{transform:matrix(0.195373,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195373,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195373,0.002540,-0.003250,0.249979,0,0);}
.m90_c00238{transform:matrix(0.195468,0.002541,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195468,0.002541,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195468,0.002541,-0.003250,0.249979,0,0);}
.mb_c00238{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m84_c00238{transform:matrix(0.196933,0.002560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196933,0.002560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196933,0.002560,-0.003250,0.249979,0,0);}
.m91_c00238{transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);}
.mba_c00238{transform:matrix(0.197453,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197453,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197453,0.002567,-0.003250,0.249979,0,0);}
.m57_c00238{transform:matrix(0.198228,0.002577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198228,0.002577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198228,0.002577,-0.003250,0.249979,0,0);}
.m55_c00238{transform:matrix(0.199108,0.002588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199108,0.002588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199108,0.002588,-0.003250,0.249979,0,0);}
.m8e_c00238{transform:matrix(0.199118,0.002589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199118,0.002589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199118,0.002589,-0.003250,0.249979,0,0);}
.m4_c00238{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.mca_c00238{transform:matrix(0.199303,0.002591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199303,0.002591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199303,0.002591,-0.003250,0.249979,0,0);}
.mcc_c00238{transform:matrix(0.199513,0.002594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199513,0.002594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199513,0.002594,-0.003250,0.249979,0,0);}
.m7a_c00238{transform:matrix(0.199558,0.002594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199558,0.002594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199558,0.002594,-0.003250,0.249979,0,0);}
.ma1_c00238{transform:matrix(0.199668,0.002596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199668,0.002596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199668,0.002596,-0.003250,0.249979,0,0);}
.m26_c00238{transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);}
.m64_c00238{transform:matrix(0.200703,0.002609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200703,0.002609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200703,0.002609,-0.003250,0.249979,0,0);}
.m86_c00238{transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);}
.m49_c00238{transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);}
.m56_c00238{transform:matrix(0.201713,0.002622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201713,0.002622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201713,0.002622,-0.003250,0.249979,0,0);}
.m3b_c00238{transform:matrix(0.202303,0.002630,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202303,0.002630,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202303,0.002630,-0.003250,0.249979,0,0);}
.mab_c00238{transform:matrix(0.202328,0.002630,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202328,0.002630,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202328,0.002630,-0.003250,0.249979,0,0);}
.m6d_c00238{transform:matrix(0.202638,0.002634,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202638,0.002634,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202638,0.002634,-0.003250,0.249979,0,0);}
.mc8_c00238{transform:matrix(0.203018,0.002639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203018,0.002639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203018,0.002639,-0.003250,0.249979,0,0);}
.m7e_c00238{transform:matrix(0.203338,0.002643,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203338,0.002643,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203338,0.002643,-0.003250,0.249979,0,0);}
.m46_c00238{transform:matrix(0.203513,0.002646,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203513,0.002646,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203513,0.002646,-0.003250,0.249979,0,0);}
.mb2_c00238{transform:matrix(0.203898,0.002651,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203898,0.002651,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203898,0.002651,-0.003250,0.249979,0,0);}
.m29_c00238{transform:matrix(0.204038,0.002652,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204038,0.002652,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204038,0.002652,-0.003250,0.249979,0,0);}
.maa_c00238{transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);}
.mc5_c00238{transform:matrix(0.204898,0.002664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204898,0.002664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204898,0.002664,-0.003250,0.249979,0,0);}
.m33_c00238{transform:matrix(0.204938,0.002664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204938,0.002664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204938,0.002664,-0.003250,0.249979,0,0);}
.m32_c00238{transform:matrix(0.205183,0.002667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205183,0.002667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205183,0.002667,-0.003250,0.249979,0,0);}
.mb6_c00238{transform:matrix(0.205198,0.002668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205198,0.002668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205198,0.002668,-0.003250,0.249979,0,0);}
.mdb_c00238{transform:matrix(0.205948,0.002677,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205948,0.002677,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205948,0.002677,-0.003250,0.249979,0,0);}
.m66_c00238{transform:matrix(0.205998,0.002678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205998,0.002678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205998,0.002678,-0.003250,0.249979,0,0);}
.m35_c00238{transform:matrix(0.206023,0.002678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206023,0.002678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206023,0.002678,-0.003250,0.249979,0,0);}
.m87_c00238{transform:matrix(0.206448,0.002684,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206448,0.002684,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206448,0.002684,-0.003250,0.249979,0,0);}
.m9c_c00238{transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);}
.m7c_c00238{transform:matrix(0.207167,0.002693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207167,0.002693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207167,0.002693,-0.003250,0.249979,0,0);}
.m51_c00238{transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);}
.m17_c00238{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.207637,0.002699,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207637,0.002699,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207637,0.002699,-0.003250,0.249979,0,0);}
.m27_c00238{transform:matrix(0.207747,0.002701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207747,0.002701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207747,0.002701,-0.003250,0.249979,0,0);}
.m2e_c00238{transform:matrix(0.207862,0.002702,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207862,0.002702,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207862,0.002702,-0.003250,0.249979,0,0);}
.m39_c00238{transform:matrix(0.207987,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207987,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207987,0.002704,-0.003250,0.249979,0,0);}
.md4_c00238{transform:matrix(0.208697,0.002713,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208697,0.002713,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208697,0.002713,-0.003250,0.249979,0,0);}
.m41_c00238{transform:matrix(0.209077,0.002718,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209077,0.002718,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209077,0.002718,-0.003250,0.249979,0,0);}
.m44_c00238{transform:matrix(0.209657,0.002726,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209657,0.002726,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209657,0.002726,-0.003250,0.249979,0,0);}
.m6f_c00238{transform:matrix(0.210242,0.002733,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210242,0.002733,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210242,0.002733,-0.003250,0.249979,0,0);}
.ma8_c00238{transform:matrix(0.211057,0.002744,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211057,0.002744,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211057,0.002744,-0.003250,0.249979,0,0);}
.m31_c00238{transform:matrix(0.211237,0.002746,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211237,0.002746,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211237,0.002746,-0.003250,0.249979,0,0);}
.m98_c00238{transform:matrix(0.211612,0.002751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211612,0.002751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211612,0.002751,-0.003250,0.249979,0,0);}
.mdd_c00238{transform:matrix(0.212312,0.002760,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212312,0.002760,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212312,0.002760,-0.003250,0.249979,0,0);}
.mcd_c00238{transform:matrix(0.212362,0.002761,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212362,0.002761,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212362,0.002761,-0.003250,0.249979,0,0);}
.m74_c00238{transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);}
.m5f_c00238{transform:matrix(0.213707,0.002778,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213707,0.002778,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213707,0.002778,-0.003250,0.249979,0,0);}
.m73_c00238{transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);}
.md2_c00238{transform:matrix(0.214372,0.002787,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214372,0.002787,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214372,0.002787,-0.003250,0.249979,0,0);}
.m30_c00238{transform:matrix(0.215187,0.002797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215187,0.002797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215187,0.002797,-0.003250,0.249979,0,0);}
.m65_c00238{transform:matrix(0.215747,0.002805,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215747,0.002805,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215747,0.002805,-0.003250,0.249979,0,0);}
.mde_c00238{transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);}
.m8f_c00238{transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);}
.mad_c00238{transform:matrix(0.218627,0.002842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218627,0.002842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218627,0.002842,-0.003250,0.249979,0,0);}
.mc9_c00238{transform:matrix(0.219531,0.002854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219531,0.002854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219531,0.002854,-0.003250,0.249979,0,0);}
.mc6_c00238{transform:matrix(0.219971,0.002860,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219971,0.002860,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219971,0.002860,-0.003250,0.249979,0,0);}
.m62_c00238{transform:matrix(0.221526,0.002880,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221526,0.002880,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221526,0.002880,-0.003250,0.249979,0,0);}
.ma0_c00238{transform:matrix(0.221946,0.002885,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221946,0.002885,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221946,0.002885,-0.003250,0.249979,0,0);}
.mbf_c00238{transform:matrix(0.223111,0.002900,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223111,0.002900,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223111,0.002900,-0.003250,0.249979,0,0);}
.m5d_c00238{transform:matrix(0.225071,0.002926,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225071,0.002926,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225071,0.002926,-0.003250,0.249979,0,0);}
.mae_c00238{transform:matrix(0.226681,0.002947,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226681,0.002947,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226681,0.002947,-0.003250,0.249979,0,0);}
.md3_c00238{transform:matrix(0.227476,0.002957,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227476,0.002957,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227476,0.002957,-0.003250,0.249979,0,0);}
.m5e_c00238{transform:matrix(0.227746,0.002961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227746,0.002961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227746,0.002961,-0.003250,0.249979,0,0);}
.mb1_c00238{transform:matrix(0.227946,0.002963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227946,0.002963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227946,0.002963,-0.003250,0.249979,0,0);}
.m8c_c00238{transform:matrix(0.229031,0.002977,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229031,0.002977,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229031,0.002977,-0.003250,0.249979,0,0);}
.m63_c00238{transform:matrix(0.229271,0.002981,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229271,0.002981,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229271,0.002981,-0.003250,0.249979,0,0);}
.m9d_c00238{transform:matrix(0.229841,0.002988,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229841,0.002988,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229841,0.002988,-0.003250,0.249979,0,0);}
.mb7_c00238{transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);}
.ma6_c00238{transform:matrix(0.232070,0.003017,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232070,0.003017,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232070,0.003017,-0.003250,0.249979,0,0);}
.m48_c00238{transform:matrix(0.233885,0.003041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233885,0.003041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233885,0.003041,-0.003250,0.249979,0,0);}
.mc4_c00238{transform:matrix(0.234535,0.003049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234535,0.003049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234535,0.003049,-0.003250,0.249979,0,0);}
.m9b_c00238{transform:matrix(0.235420,0.003060,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235420,0.003060,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235420,0.003060,-0.003250,0.249979,0,0);}
.m23_c00238{transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.240680,0.003129,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240680,0.003129,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240680,0.003129,-0.003250,0.249979,0,0);}
.mc7_c00238{transform:matrix(0.243774,0.003169,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243774,0.003169,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243774,0.003169,-0.003250,0.249979,0,0);}
.m9_c00238{transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);}
.mbd_c00238{transform:matrix(0.247969,0.003224,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247969,0.003224,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247969,0.003224,-0.003250,0.249979,0,0);}
.md8_c00238{transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);}
.m2c_c00238{transform:matrix(0.257008,0.003341,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257008,0.003341,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257008,0.003341,-0.003250,0.249979,0,0);}
.mcb_c00238{transform:matrix(0.258018,0.003354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258018,0.003354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258018,0.003354,-0.003250,0.249979,0,0);}
.ma_c00238{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m9f_c00238{transform:matrix(0.258313,0.003358,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258313,0.003358,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258313,0.003358,-0.003250,0.249979,0,0);}
.mb0_c00238{transform:matrix(0.261878,0.003404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261878,0.003404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261878,0.003404,-0.003250,0.249979,0,0);}
.m59_c00238{transform:matrix(0.275827,0.003586,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275827,0.003586,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275827,0.003586,-0.003250,0.249979,0,0);}
.m92_c00238{transform:matrix(0.277527,0.003608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277527,0.003608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277527,0.003608,-0.003250,0.249979,0,0);}
.md6_c00238{transform:matrix(0.328052,0.004265,-0.003250,0.249979,0,0);-ms-transform:matrix(0.328052,0.004265,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.328052,0.004265,-0.003250,0.249979,0,0);}
.m5a_c00238{transform:matrix(0.348071,0.004525,-0.003250,0.249979,0,0);-ms-transform:matrix(0.348071,0.004525,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.348071,0.004525,-0.003250,0.249979,0,0);}
.m1f_c00238{transform:matrix(0.352205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352205,0.000000,0.000000,0.250000,0,0);}
.md5_c00238{transform:matrix(0.450502,0.005857,-0.003250,0.249979,0,0);-ms-transform:matrix(0.450502,0.005857,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.450502,0.005857,-0.003250,0.249979,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:0.000000px;}
._0_c00238{width:30.678879px;}
.fc0_c00238{color:transparent;}
.fsd_c00238{font-size:55.654702px;}
.fse_c00238{font-size:57.754880px;}
.fsb_c00238{font-size:59.855057px;}
.fs6_c00238{font-size:60.905146px;}
.fs5_c00238{font-size:61.955235px;}
.fs8_c00238{font-size:64.055412px;}
.fsc_c00238{font-size:65.105501px;}
.fs9_c00238{font-size:66.155589px;}
.fs0_c00238{font-size:67.200000px;}
.fsa_c00238{font-size:67.205678px;}
.fs4_c00238{font-size:68.250000px;}
.fs7_c00238{font-size:69.305856px;}
.fs1_c00238{font-size:70.350000px;}
.fs2_c00238{font-size:73.500000px;}
.fs3_c00238{font-size:74.550000px;}
.y0_c00238{bottom:0.000000px;}
.yd6_c00238{bottom:26.454107px;}
.yd5_c00238{bottom:27.629151px;}
.yd4_c00238{bottom:28.068891px;}
.yd3_c00238{bottom:28.930688px;}
.yd2_c00238{bottom:29.642987px;}
.yd1_c00238{bottom:29.937869px;}
.yd0_c00238{bottom:44.928063px;}
.ycf_c00238{bottom:46.175553px;}
.yce_c00238{bottom:46.620110px;}
.ycd_c00238{bottom:48.131867px;}
.ycc_c00238{bottom:48.935210px;}
.ycb_c00238{bottom:49.307093px;}
.yca_c00238{bottom:50.881136px;}
.yc9_c00238{bottom:51.397391px;}
.yc8_c00238{bottom:52.896032px;}
.yc7_c00238{bottom:62.255337px;}
.yc6_c00238{bottom:62.862089px;}
.yc5_c00238{bottom:64.503723px;}
.yc4_c00238{bottom:65.541608px;}
.yc3_c00238{bottom:67.243511px;}
.yc2_c00238{bottom:68.554784px;}
.yc1_c00238{bottom:79.151238px;}
.yc0_c00238{bottom:80.932899px;}
.ybf_c00238{bottom:83.313456px;}
.ybe_c00238{bottom:83.749970px;}
.ybd_c00238{bottom:85.540070px;}
.ybc_c00238{bottom:87.075936px;}
.ybb_c00238{bottom:87.726945px;}
.yba_c00238{bottom:96.824156px;}
.yb9_c00238{bottom:97.296288px;}
.yb8_c00238{bottom:98.019173px;}
.yb7_c00238{bottom:99.826872px;}
.yb6_c00238{bottom:100.315377px;}
.yb5_c00238{bottom:101.208828px;}
.yb4_c00238{bottom:102.429164px;}
.yb3_c00238{bottom:103.115834px;}
.yb2_c00238{bottom:113.382597px;}
.yb1_c00238{bottom:114.875147px;}
.yb0_c00238{bottom:116.040798px;}
.yaf_c00238{bottom:116.929094px;}
.yae_c00238{bottom:118.612368px;}
.yad_c00238{bottom:120.306693px;}
.yac_c00238{bottom:121.476690px;}
.yab_c00238{bottom:130.095744px;}
.yaa_c00238{bottom:130.858443px;}
.ya9_c00238{bottom:131.389094px;}
.ya8_c00238{bottom:133.446136px;}
.ya7_c00238{bottom:135.071063px;}
.ya6_c00238{bottom:135.957610px;}
.ya5_c00238{bottom:137.724120px;}
.ya4_c00238{bottom:138.494693px;}
.ya3_c00238{bottom:146.144471px;}
.ya2_c00238{bottom:146.812062px;}
.ya1_c00238{bottom:147.144902px;}
.ya0_c00238{bottom:147.954395px;}
.y9f_c00238{bottom:148.218020px;}
.y9e_c00238{bottom:148.530426px;}
.y9d_c00238{bottom:149.510404px;}
.y9c_c00238{bottom:149.826301px;}
.y9b_c00238{bottom:163.598988px;}
.y9a_c00238{bottom:164.240107px;}
.y99_c00238{bottom:165.088417px;}
.y98_c00238{bottom:165.523165px;}
.y97_c00238{bottom:166.718787px;}
.y96_c00238{bottom:168.872550px;}
.y95_c00238{bottom:169.657279px;}
.y94_c00238{bottom:170.351064px;}
.y93_c00238{bottom:179.736969px;}
.y92_c00238{bottom:181.311160px;}
.y91_c00238{bottom:181.862851px;}
.y90_c00238{bottom:183.131934px;}
.y8f_c00238{bottom:183.834903px;}
.y8e_c00238{bottom:185.097670px;}
.y8d_c00238{bottom:186.699225px;}
.y8c_c00238{bottom:187.091842px;}
.y8b_c00238{bottom:198.035614px;}
.y8a_c00238{bottom:199.073577px;}
.y89_c00238{bottom:199.601407px;}
.y88_c00238{bottom:200.239033px;}
.y87_c00238{bottom:200.856447px;}
.y86_c00238{bottom:201.713002px;}
.y85_c00238{bottom:202.185262px;}
.y84_c00238{bottom:203.564970px;}
.y83_c00238{bottom:220.442886px;}
.y82_c00238{bottom:232.028664px;}
.y81_c00238{bottom:232.411596px;}
.y80_c00238{bottom:233.474428px;}
.y7f_c00238{bottom:235.373278px;}
.y7e_c00238{bottom:235.978639px;}
.y7d_c00238{bottom:236.562228px;}
.y7c_c00238{bottom:237.857509px;}
.y7b_c00238{bottom:249.279392px;}
.y7a_c00238{bottom:249.730756px;}
.y79_c00238{bottom:250.784187px;}
.y78_c00238{bottom:252.178613px;}
.y77_c00238{bottom:252.680601px;}
.y76_c00238{bottom:253.650562px;}
.y75_c00238{bottom:254.596800px;}
.y74_c00238{bottom:266.277963px;}
.y73_c00238{bottom:267.026673px;}
.y72_c00238{bottom:267.716028px;}
.y71_c00238{bottom:268.506998px;}
.y70_c00238{bottom:269.448079px;}
.y6f_c00238{bottom:269.873408px;}
.y6e_c00238{bottom:271.030409px;}
.y6d_c00238{bottom:271.388058px;}
.y6c_c00238{bottom:271.828375px;}
.y6b_c00238{bottom:272.420171px;}
.y6a_c00238{bottom:284.880173px;}
.y69_c00238{bottom:285.793689px;}
.y68_c00238{bottom:286.591427px;}
.y67_c00238{bottom:287.124954px;}
.y66_c00238{bottom:287.578593px;}
.y65_c00238{bottom:288.039484px;}
.y64_c00238{bottom:289.075115px;}
.y63_c00238{bottom:289.430559px;}
.y62_c00238{bottom:301.674234px;}
.y61_c00238{bottom:302.042207px;}
.y60_c00238{bottom:303.089341px;}
.y5f_c00238{bottom:303.645579px;}
.y5e_c00238{bottom:304.336613px;}
.y5d_c00238{bottom:305.312792px;}
.y5c_c00238{bottom:305.549634px;}
.y5b_c00238{bottom:306.982188px;}
.y5a_c00238{bottom:319.590078px;}
.y59_c00238{bottom:320.623284px;}
.y58_c00238{bottom:321.784881px;}
.y57_c00238{bottom:322.478286px;}
.y56_c00238{bottom:322.853592px;}
.y55_c00238{bottom:323.721031px;}
.y54_c00238{bottom:336.454044px;}
.y53_c00238{bottom:337.281643px;}
.y52_c00238{bottom:337.987777px;}
.y51_c00238{bottom:338.265048px;}
.y50_c00238{bottom:338.644148px;}
.y4f_c00238{bottom:338.819998px;}
.y4e_c00238{bottom:339.332224px;}
.y4d_c00238{bottom:339.598360px;}
.y4c_c00238{bottom:340.191862px;}
.y4b_c00238{bottom:353.237355px;}
.y4a_c00238{bottom:353.878959px;}
.y49_c00238{bottom:354.679910px;}
.y48_c00238{bottom:354.996909px;}
.y47_c00238{bottom:355.379004px;}
.y46_c00238{bottom:356.394570px;}
.y45_c00238{bottom:369.962337px;}
.y44_c00238{bottom:370.245068px;}
.y43_c00238{bottom:371.190126px;}
.y42_c00238{bottom:371.484048px;}
.y41_c00238{bottom:371.849882px;}
.y40_c00238{bottom:372.130077px;}
.y3f_c00238{bottom:372.670909px;}
.y3e_c00238{bottom:373.487745px;}
.y3d_c00238{bottom:373.946098px;}
.y3c_c00238{bottom:387.162575px;}
.y3b_c00238{bottom:388.085131px;}
.y3a_c00238{bottom:388.459543px;}
.y39_c00238{bottom:388.678007px;}
.y38_c00238{bottom:389.853850px;}
.y37_c00238{bottom:390.417691px;}
.y36_c00238{bottom:403.511701px;}
.y35_c00238{bottom:404.610223px;}
.y34_c00238{bottom:404.957706px;}
.y33_c00238{bottom:406.019223px;}
.y32_c00238{bottom:406.462887px;}
.y31_c00238{bottom:407.699314px;}
.y30_c00238{bottom:420.998673px;}
.y2f_c00238{bottom:421.511487px;}
.y2e_c00238{bottom:421.787782px;}
.y2d_c00238{bottom:422.241163px;}
.y2c_c00238{bottom:422.677113px;}
.y2b_c00238{bottom:422.971035px;}
.y2a_c00238{bottom:423.467781px;}
.y29_c00238{bottom:424.169790px;}
.y28_c00238{bottom:438.910162px;}
.y27_c00238{bottom:439.169883px;}
.y26_c00238{bottom:439.724560px;}
.y25_c00238{bottom:440.454523px;}
.y24_c00238{bottom:440.731053px;}
.y23_c00238{bottom:441.451500px;}
.y22_c00238{bottom:454.838247px;}
.y21_c00238{bottom:455.516574px;}
.y20_c00238{bottom:455.975623px;}
.y1f_c00238{bottom:456.460783px;}
.y1e_c00238{bottom:457.025152px;}
.y1d_c00238{bottom:457.850802px;}
.y1c_c00238{bottom:458.117581px;}
.y1b_c00238{bottom:458.731500px;}
.y1a_c00238{bottom:472.800000px;}
.y19_c00238{bottom:491.416500px;}
.y18_c00238{bottom:506.817000px;}
.y17_c00238{bottom:523.734000px;}
.y16_c00238{bottom:523.963500px;}
.y15_c00238{bottom:524.808000px;}
.y14_c00238{bottom:525.075000px;}
.y13_c00238{bottom:525.223500px;}
.y12_c00238{bottom:525.931500px;}
.y11_c00238{bottom:526.303500px;}
.y10_c00238{bottom:526.501500px;}
.yf_c00238{bottom:541.170000px;}
.ye_c00238{bottom:541.455000px;}
.yd_c00238{bottom:541.825500px;}
.yc_c00238{bottom:542.688000px;}
.yb_c00238{bottom:542.878500px;}
.ya_c00238{bottom:543.490500px;}
.y9_c00238{bottom:543.639000px;}
.y8_c00238{bottom:544.051500px;}
.y7_c00238{bottom:558.985500px;}
.y6_c00238{bottom:559.273500px;}
.y5_c00238{bottom:560.245500px;}
.y4_c00238{bottom:560.511000px;}
.y3_c00238{bottom:561.301500px;}
.y2_c00238{bottom:562.141500px;}
.y1_c00238{bottom:576.711000px;}
.hf_c00238{height:55.654702px;}
.h10_c00238{height:57.754880px;}
.hd_c00238{height:59.855057px;}
.h8_c00238{height:60.905146px;}
.h7_c00238{height:61.955235px;}
.ha_c00238{height:64.055412px;}
.he_c00238{height:65.105501px;}
.hb_c00238{height:66.155589px;}
.h2_c00238{height:67.200000px;}
.hc_c00238{height:67.205678px;}
.h6_c00238{height:68.250000px;}
.h9_c00238{height:69.305856px;}
.h3_c00238{height:70.350000px;}
.h4_c00238{height:73.500000px;}
.h5_c00238{height:74.550000px;}
.h1_c00238{height:624.750000px;}
.h0_c00238{height:625.050000px;}
.w0_c00238{width:378.540000px;}
.w1_c00238{width:378.750000px;}
.x0_c00238{left:0.000000px;}
.x70_c00238{left:31.742218px;}
.x6e_c00238{left:32.996716px;}
.x6a_c00238{left:34.051171px;}
.x23_c00238{left:35.520000px;}
.x4f_c00238{left:37.279621px;}
.x41_c00238{left:39.008166px;}
.x34_c00238{left:40.348741px;}
.x2d_c00238{left:41.449507px;}
.x2_c00238{left:43.054500px;}
.x65_c00238{left:47.826592px;}
.x1c_c00238{left:49.410000px;}
.x29_c00238{left:52.506000px;}
.x6f_c00238{left:54.065170px;}
.x54_c00238{left:56.209567px;}
.x72_c00238{left:61.011391px;}
.xe_c00238{left:62.515500px;}
.x59_c00238{left:64.389780px;}
.x3b_c00238{left:72.761043px;}
.x71_c00238{left:74.474535px;}
.x7_c00238{left:80.074500px;}
.x24_c00238{left:82.744500px;}
.x45_c00238{left:84.429027px;}
.x1d_c00238{left:89.370000px;}
.x2e_c00238{left:91.641864px;}
.x8_c00238{left:93.561000px;}
.x6b_c00238{left:95.620357px;}
.x5e_c00238{left:96.794373px;}
.xf_c00238{left:99.787500px;}
.x25_c00238{left:103.266000px;}
.x46_c00238{left:104.901027px;}
.x2a_c00238{left:107.925000px;}
.x50_c00238{left:108.931108px;}
.x62_c00238{left:110.193312px;}
.x15_c00238{left:111.510000px;}
.x3_c00238{left:112.996500px;}
.x66_c00238{left:119.056708px;}
.x51_c00238{left:120.802536px;}
.x35_c00238{left:122.764096px;}
.x16_c00238{left:124.740000px;}
.x2f_c00238{left:127.083396px;}
.x2b_c00238{left:129.196500px;}
.x3c_c00238{left:131.093782px;}
.x4d_c00238{left:132.951202px;}
.x1b_c00238{left:134.190000px;}
.x55_c00238{left:139.359666px;}
.x1e_c00238{left:142.290000px;}
.x47_c00238{left:144.303027px;}
.x30_c00238{left:148.077123px;}
.x9_c00238{left:149.142000px;}
.x36_c00238{left:152.391336px;}
.x5f_c00238{left:153.399984px;}
.x42_c00238{left:155.406667px;}
.x48_c00238{left:157.830027px;}
.x78_c00238{left:159.290694px;}
.x77_c00238{left:162.861144px;}
.x38_c00238{left:164.838541px;}
.xa_c00238{left:166.455000px;}
.x63_c00238{left:167.979304px;}
.x73_c00238{left:169.441389px;}
.x10_c00238{left:170.526000px;}
.x1_c00238{left:177.930000px;}
.x31_c00238{left:179.188214px;}
.x1f_c00238{left:180.900000px;}
.x11_c00238{left:185.367000px;}
.x49_c00238{left:186.991527px;}
.x3d_c00238{left:189.749022px;}
.x56_c00238{left:194.176597px;}
.x17_c00238{left:199.530000px;}
.x4_c00238{left:201.003000px;}
.x52_c00238{left:204.157450px;}
.x39_c00238{left:207.212995px;}
.x4a_c00238{left:208.320027px;}
.x26_c00238{left:210.190500px;}
.x12_c00238{left:212.083500px;}
.x3e_c00238{left:215.928190px;}
.x18_c00238{left:223.290000px;}
.x20_c00238{left:224.910000px;}
.x5d_c00238{left:226.658170px;}
.x2c_c00238{left:228.015000px;}
.x32_c00238{left:231.278031px;}
.x67_c00238{left:234.597186px;}
.x3f_c00238{left:236.921917px;}
.x57_c00238{left:238.461211px;}
.x21_c00238{left:241.110000px;}
.xb_c00238{left:244.798500px;}
.x37_c00238{left:246.350398px;}
.x27_c00238{left:247.510500px;}
.x43_c00238{left:248.557876px;}
.x6c_c00238{left:253.300315px;}
.x68_c00238{left:254.300344px;}
.x4e_c00238{left:256.601985px;}
.x75_c00238{left:258.631879px;}
.x5a_c00238{left:260.126902px;}
.x4b_c00238{left:262.638027px;}
.x33_c00238{left:267.955563px;}
.x19_c00238{left:270.000000px;}
.x3a_c00238{left:273.101137px;}
.x74_c00238{left:274.894315px;}
.xc_c00238{left:278.500500px;}
.x5_c00238{left:282.055500px;}
.x53_c00238{left:284.332657px;}
.x58_c00238{left:289.228416px;}
.x64_c00238{left:290.565853px;}
.x5b_c00238{left:292.958490px;}
.x60_c00238{left:294.437820px;}
.x13_c00238{left:296.607000px;}
.x1a_c00238{left:298.080000px;}
.x44_c00238{left:302.066578px;}
.xd_c00238{left:304.453500px;}
.x6_c00238{left:306.027000px;}
.x69_c00238{left:310.534885px;}
.x61_c00238{left:312.699928px;}
.x6d_c00238{left:315.362943px;}
.x76_c00238{left:318.015756px;}
.x14_c00238{left:319.579500px;}
.x22_c00238{left:321.300000px;}
.x40_c00238{left:324.673786px;}
.x4c_c00238{left:326.299527px;}
.x5c_c00238{left:328.624785px;}
.x28_c00238{left:335.001000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
._0_c00238{width:27.270115pt;}
.fsd_c00238{font-size:49.470846pt;}
.fse_c00238{font-size:51.337671pt;}
.fsb_c00238{font-size:53.204495pt;}
.fs6_c00238{font-size:54.137907pt;}
.fs5_c00238{font-size:55.071320pt;}
.fs8_c00238{font-size:56.938144pt;}
.fsc_c00238{font-size:57.871556pt;}
.fs9_c00238{font-size:58.804968pt;}
.fs0_c00238{font-size:59.733333pt;}
.fsa_c00238{font-size:59.738381pt;}
.fs4_c00238{font-size:60.666667pt;}
.fs7_c00238{font-size:61.605205pt;}
.fs1_c00238{font-size:62.533333pt;}
.fs2_c00238{font-size:65.333333pt;}
.fs3_c00238{font-size:66.266667pt;}
.y0_c00238{bottom:0.000000pt;}
.yd6_c00238{bottom:23.514761pt;}
.yd5_c00238{bottom:24.559245pt;}
.yd4_c00238{bottom:24.950125pt;}
.yd3_c00238{bottom:25.716167pt;}
.yd2_c00238{bottom:26.349321pt;}
.yd1_c00238{bottom:26.611439pt;}
.yd0_c00238{bottom:39.936056pt;}
.ycf_c00238{bottom:41.044936pt;}
.yce_c00238{bottom:41.440097pt;}
.ycd_c00238{bottom:42.783881pt;}
.ycc_c00238{bottom:43.497964pt;}
.ycb_c00238{bottom:43.828527pt;}
.yca_c00238{bottom:45.227676pt;}
.yc9_c00238{bottom:45.686569pt;}
.yc8_c00238{bottom:47.018695pt;}
.yc7_c00238{bottom:55.338077pt;}
.yc6_c00238{bottom:55.877412pt;}
.yc5_c00238{bottom:57.336643pt;}
.yc4_c00238{bottom:58.259207pt;}
.yc3_c00238{bottom:59.772009pt;}
.yc2_c00238{bottom:60.937585pt;}
.yc1_c00238{bottom:70.356656pt;}
.yc0_c00238{bottom:71.940355pt;}
.ybf_c00238{bottom:74.056405pt;}
.ybe_c00238{bottom:74.444417pt;}
.ybd_c00238{bottom:76.035617pt;}
.ybc_c00238{bottom:77.400832pt;}
.ybb_c00238{bottom:77.979507pt;}
.yba_c00238{bottom:86.065916pt;}
.yb9_c00238{bottom:86.485589pt;}
.yb8_c00238{bottom:87.128153pt;}
.yb7_c00238{bottom:88.734997pt;}
.yb6_c00238{bottom:89.169224pt;}
.yb5_c00238{bottom:89.963403pt;}
.yb4_c00238{bottom:91.048145pt;}
.yb3_c00238{bottom:91.658519pt;}
.yb2_c00238{bottom:100.784531pt;}
.yb1_c00238{bottom:102.111241pt;}
.yb0_c00238{bottom:103.147376pt;}
.yaf_c00238{bottom:103.936972pt;}
.yae_c00238{bottom:105.433216pt;}
.yad_c00238{bottom:106.939283pt;}
.yac_c00238{bottom:107.979280pt;}
.yab_c00238{bottom:115.640661pt;}
.yaa_c00238{bottom:116.318616pt;}
.ya9_c00238{bottom:116.790305pt;}
.ya8_c00238{bottom:118.618788pt;}
.ya7_c00238{bottom:120.063167pt;}
.ya6_c00238{bottom:120.851209pt;}
.ya5_c00238{bottom:122.421440pt;}
.ya4_c00238{bottom:123.106393pt;}
.ya3_c00238{bottom:129.906196pt;}
.ya2_c00238{bottom:130.499611pt;}
.ya1_c00238{bottom:130.795468pt;}
.ya0_c00238{bottom:131.515017pt;}
.y9f_c00238{bottom:131.749351pt;}
.y9e_c00238{bottom:132.027045pt;}
.y9d_c00238{bottom:132.898137pt;}
.y9c_c00238{bottom:133.178935pt;}
.y9b_c00238{bottom:145.421323pt;}
.y9a_c00238{bottom:145.991207pt;}
.y99_c00238{bottom:146.745260pt;}
.y98_c00238{bottom:147.131703pt;}
.y97_c00238{bottom:148.194477pt;}
.y96_c00238{bottom:150.108933pt;}
.y95_c00238{bottom:150.806471pt;}
.y94_c00238{bottom:151.423168pt;}
.y93_c00238{bottom:159.766195pt;}
.y92_c00238{bottom:161.165476pt;}
.y91_c00238{bottom:161.655868pt;}
.y90_c00238{bottom:162.783941pt;}
.y8f_c00238{bottom:163.408803pt;}
.y8e_c00238{bottom:164.531263pt;}
.y8d_c00238{bottom:165.954867pt;}
.y8c_c00238{bottom:166.303860pt;}
.y8b_c00238{bottom:176.031657pt;}
.y8a_c00238{bottom:176.954291pt;}
.y89_c00238{bottom:177.423473pt;}
.y88_c00238{bottom:177.990252pt;}
.y87_c00238{bottom:178.539064pt;}
.y86_c00238{bottom:179.300447pt;}
.y85_c00238{bottom:179.720233pt;}
.y84_c00238{bottom:180.946640pt;}
.y83_c00238{bottom:195.949232pt;}
.y82_c00238{bottom:206.247701pt;}
.y81_c00238{bottom:206.588085pt;}
.y80_c00238{bottom:207.532825pt;}
.y7f_c00238{bottom:209.220692pt;}
.y7e_c00238{bottom:209.758791pt;}
.y7d_c00238{bottom:210.277536pt;}
.y7c_c00238{bottom:211.428897pt;}
.y7b_c00238{bottom:221.581681pt;}
.y7a_c00238{bottom:221.982895pt;}
.y79_c00238{bottom:222.919277pt;}
.y78_c00238{bottom:224.158767pt;}
.y77_c00238{bottom:224.604979pt;}
.y76_c00238{bottom:225.467167pt;}
.y75_c00238{bottom:226.308267pt;}
.y74_c00238{bottom:236.691523pt;}
.y73_c00238{bottom:237.357043pt;}
.y72_c00238{bottom:237.969803pt;}
.y71_c00238{bottom:238.672887pt;}
.y70_c00238{bottom:239.509404pt;}
.y6f_c00238{bottom:239.887473pt;}
.y6e_c00238{bottom:240.915919pt;}
.y6d_c00238{bottom:241.233829pt;}
.y6c_c00238{bottom:241.625223pt;}
.y6b_c00238{bottom:242.151263pt;}
.y6a_c00238{bottom:253.226820pt;}
.y69_c00238{bottom:254.038835pt;}
.y68_c00238{bottom:254.747935pt;}
.y67_c00238{bottom:255.222181pt;}
.y66_c00238{bottom:255.625416pt;}
.y65_c00238{bottom:256.035097pt;}
.y64_c00238{bottom:256.955657pt;}
.y63_c00238{bottom:257.271608pt;}
.y62_c00238{bottom:268.154875pt;}
.y61_c00238{bottom:268.481961pt;}
.y60_c00238{bottom:269.412748pt;}
.y5f_c00238{bottom:269.907181pt;}
.y5e_c00238{bottom:270.521433pt;}
.y5d_c00238{bottom:271.389148pt;}
.y5c_c00238{bottom:271.599675pt;}
.y5b_c00238{bottom:272.873056pt;}
.y5a_c00238{bottom:284.080069pt;}
.y59_c00238{bottom:284.998475pt;}
.y58_c00238{bottom:286.031005pt;}
.y57_c00238{bottom:286.647365pt;}
.y56_c00238{bottom:286.980971pt;}
.y55_c00238{bottom:287.752028pt;}
.y54_c00238{bottom:299.070261pt;}
.y53_c00238{bottom:299.805905pt;}
.y52_c00238{bottom:300.433580pt;}
.y51_c00238{bottom:300.680043pt;}
.y50_c00238{bottom:301.017020pt;}
.y4f_c00238{bottom:301.173332pt;}
.y4e_c00238{bottom:301.628644pt;}
.y4d_c00238{bottom:301.865209pt;}
.y4c_c00238{bottom:302.392767pt;}
.y4b_c00238{bottom:313.988760pt;}
.y4a_c00238{bottom:314.559075pt;}
.y49_c00238{bottom:315.271031pt;}
.y48_c00238{bottom:315.552808pt;}
.y47_c00238{bottom:315.892448pt;}
.y46_c00238{bottom:316.795173pt;}
.y45_c00238{bottom:328.855411pt;}
.y44_c00238{bottom:329.106727pt;}
.y43_c00238{bottom:329.946779pt;}
.y42_c00238{bottom:330.208043pt;}
.y41_c00238{bottom:330.533228pt;}
.y40_c00238{bottom:330.782291pt;}
.y3f_c00238{bottom:331.263031pt;}
.y3e_c00238{bottom:331.989107pt;}
.y3d_c00238{bottom:332.396532pt;}
.y3c_c00238{bottom:344.144511pt;}
.y3b_c00238{bottom:344.964561pt;}
.y3a_c00238{bottom:345.297372pt;}
.y39_c00238{bottom:345.491561pt;}
.y38_c00238{bottom:346.536756pt;}
.y37_c00238{bottom:347.037948pt;}
.y36_c00238{bottom:358.677068pt;}
.y35_c00238{bottom:359.653532pt;}
.y34_c00238{bottom:359.962405pt;}
.y33_c00238{bottom:360.905976pt;}
.y32_c00238{bottom:361.300344pt;}
.y31_c00238{bottom:362.399391pt;}
.y30_c00238{bottom:374.221043pt;}
.y2f_c00238{bottom:374.676877pt;}
.y2e_c00238{bottom:374.922473pt;}
.y2d_c00238{bottom:375.325479pt;}
.y2c_c00238{bottom:375.712989pt;}
.y2b_c00238{bottom:375.974253pt;}
.y2a_c00238{bottom:376.415805pt;}
.y29_c00238{bottom:377.039813pt;}
.y28_c00238{bottom:390.142367pt;}
.y27_c00238{bottom:390.373229pt;}
.y26_c00238{bottom:390.866276pt;}
.y25_c00238{bottom:391.515132pt;}
.y24_c00238{bottom:391.760936pt;}
.y23_c00238{bottom:392.401333pt;}
.y22_c00238{bottom:404.300664pt;}
.y21_c00238{bottom:404.903621pt;}
.y20_c00238{bottom:405.311665pt;}
.y1f_c00238{bottom:405.742919pt;}
.y1e_c00238{bottom:406.244580pt;}
.y1d_c00238{bottom:406.978491pt;}
.y1c_c00238{bottom:407.215628pt;}
.y1b_c00238{bottom:407.761333pt;}
.y1a_c00238{bottom:420.266667pt;}
.y19_c00238{bottom:436.814667pt;}
.y18_c00238{bottom:450.504000pt;}
.y17_c00238{bottom:465.541333pt;}
.y16_c00238{bottom:465.745333pt;}
.y15_c00238{bottom:466.496000pt;}
.y14_c00238{bottom:466.733333pt;}
.y13_c00238{bottom:466.865333pt;}
.y12_c00238{bottom:467.494667pt;}
.y11_c00238{bottom:467.825333pt;}
.y10_c00238{bottom:468.001333pt;}
.yf_c00238{bottom:481.040000pt;}
.ye_c00238{bottom:481.293333pt;}
.yd_c00238{bottom:481.622667pt;}
.yc_c00238{bottom:482.389333pt;}
.yb_c00238{bottom:482.558667pt;}
.ya_c00238{bottom:483.102667pt;}
.y9_c00238{bottom:483.234667pt;}
.y8_c00238{bottom:483.601333pt;}
.y7_c00238{bottom:496.876000pt;}
.y6_c00238{bottom:497.132000pt;}
.y5_c00238{bottom:497.996000pt;}
.y4_c00238{bottom:498.232000pt;}
.y3_c00238{bottom:498.934667pt;}
.y2_c00238{bottom:499.681333pt;}
.y1_c00238{bottom:512.632000pt;}
.hf_c00238{height:49.470846pt;}
.h10_c00238{height:51.337671pt;}
.hd_c00238{height:53.204495pt;}
.h8_c00238{height:54.137907pt;}
.h7_c00238{height:55.071320pt;}
.ha_c00238{height:56.938144pt;}
.he_c00238{height:57.871556pt;}
.hb_c00238{height:58.804968pt;}
.h2_c00238{height:59.733333pt;}
.hc_c00238{height:59.738381pt;}
.h6_c00238{height:60.666667pt;}
.h9_c00238{height:61.605205pt;}
.h3_c00238{height:62.533333pt;}
.h4_c00238{height:65.333333pt;}
.h5_c00238{height:66.266667pt;}
.h1_c00238{height:555.333333pt;}
.h0_c00238{height:555.600000pt;}
.w0_c00238{width:336.480000pt;}
.w1_c00238{width:336.666667pt;}
.x0_c00238{left:0.000000pt;}
.x70_c00238{left:28.215305pt;}
.x6e_c00238{left:29.330415pt;}
.x6a_c00238{left:30.267708pt;}
.x23_c00238{left:31.573333pt;}
.x4f_c00238{left:33.137441pt;}
.x41_c00238{left:34.673925pt;}
.x34_c00238{left:35.865548pt;}
.x2d_c00238{left:36.844007pt;}
.x2_c00238{left:38.270667pt;}
.x65_c00238{left:42.512527pt;}
.x1c_c00238{left:43.920000pt;}
.x29_c00238{left:46.672000pt;}
.x6f_c00238{left:48.057929pt;}
.x54_c00238{left:49.964060pt;}
.x72_c00238{left:54.232348pt;}
.xe_c00238{left:55.569333pt;}
.x59_c00238{left:57.235360pt;}
.x3b_c00238{left:64.676483pt;}
.x71_c00238{left:66.199587pt;}
.x7_c00238{left:71.177333pt;}
.x24_c00238{left:73.550667pt;}
.x45_c00238{left:75.048024pt;}
.x1d_c00238{left:79.440000pt;}
.x2e_c00238{left:81.459435pt;}
.x8_c00238{left:83.165333pt;}
.x6b_c00238{left:84.995873pt;}
.x5e_c00238{left:86.039443pt;}
.xf_c00238{left:88.700000pt;}
.x25_c00238{left:91.792000pt;}
.x46_c00238{left:93.245357pt;}
.x2a_c00238{left:95.933333pt;}
.x50_c00238{left:96.827652pt;}
.x62_c00238{left:97.949611pt;}
.x15_c00238{left:99.120000pt;}
.x3_c00238{left:100.441333pt;}
.x66_c00238{left:105.828185pt;}
.x51_c00238{left:107.380032pt;}
.x35_c00238{left:109.123641pt;}
.x16_c00238{left:110.880000pt;}
.x2f_c00238{left:112.963019pt;}
.x2b_c00238{left:114.841333pt;}
.x3c_c00238{left:116.527807pt;}
.x4d_c00238{left:118.178847pt;}
.x1b_c00238{left:119.280000pt;}
.x55_c00238{left:123.875259pt;}
.x1e_c00238{left:126.480000pt;}
.x47_c00238{left:128.269357pt;}
.x30_c00238{left:131.624109pt;}
.x9_c00238{left:132.570667pt;}
.x36_c00238{left:135.458965pt;}
.x5f_c00238{left:136.355541pt;}
.x42_c00238{left:138.139260pt;}
.x48_c00238{left:140.293357pt;}
.x78_c00238{left:141.591728pt;}
.x77_c00238{left:144.765461pt;}
.x38_c00238{left:146.523148pt;}
.xa_c00238{left:147.960000pt;}
.x63_c00238{left:149.314937pt;}
.x73_c00238{left:150.614568pt;}
.x10_c00238{left:151.578667pt;}
.x1_c00238{left:158.160000pt;}
.x31_c00238{left:159.278412pt;}
.x1f_c00238{left:160.800000pt;}
.x11_c00238{left:164.770667pt;}
.x49_c00238{left:166.214691pt;}
.x3d_c00238{left:168.665797pt;}
.x56_c00238{left:172.601420pt;}
.x17_c00238{left:177.360000pt;}
.x4_c00238{left:178.669333pt;}
.x52_c00238{left:181.473289pt;}
.x39_c00238{left:184.189329pt;}
.x4a_c00238{left:185.173357pt;}
.x26_c00238{left:186.836000pt;}
.x12_c00238{left:188.518667pt;}
.x3e_c00238{left:191.936169pt;}
.x18_c00238{left:198.480000pt;}
.x20_c00238{left:199.920000pt;}
.x5d_c00238{left:201.473929pt;}
.x2c_c00238{left:202.680000pt;}
.x32_c00238{left:205.580472pt;}
.x67_c00238{left:208.530832pt;}
.x3f_c00238{left:210.597260pt;}
.x57_c00238{left:211.965521pt;}
.x21_c00238{left:214.320000pt;}
.xb_c00238{left:217.598667pt;}
.x37_c00238{left:218.978132pt;}
.x27_c00238{left:220.009333pt;}
.x43_c00238{left:220.940335pt;}
.x6c_c00238{left:225.155836pt;}
.x68_c00238{left:226.044751pt;}
.x4e_c00238{left:228.090653pt;}
.x75_c00238{left:229.895004pt;}
.x5a_c00238{left:231.223913pt;}
.x4b_c00238{left:233.456024pt;}
.x33_c00238{left:238.182723pt;}
.x19_c00238{left:240.000000pt;}
.x3a_c00238{left:242.756567pt;}
.x74_c00238{left:244.350503pt;}
.xc_c00238{left:247.556000pt;}
.x5_c00238{left:250.716000pt;}
.x53_c00238{left:252.740140pt;}
.x58_c00238{left:257.091925pt;}
.x64_c00238{left:258.280759pt;}
.x5b_c00238{left:260.407547pt;}
.x60_c00238{left:261.722507pt;}
.x13_c00238{left:263.650667pt;}
.x1a_c00238{left:264.960000pt;}
.x44_c00238{left:268.503625pt;}
.xd_c00238{left:270.625333pt;}
.x6_c00238{left:272.024000pt;}
.x69_c00238{left:276.031009pt;}
.x61_c00238{left:277.955492pt;}
.x6d_c00238{left:280.322616pt;}
.x76_c00238{left:282.680672pt;}
.x14_c00238{left:284.070667pt;}
.x22_c00238{left:285.600000pt;}
.x40_c00238{left:288.598921pt;}
.x4c_c00238{left:290.044024pt;}
.x5c_c00238{left:292.110920pt;}
.x28_c00238{left:297.778667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00239 {
    display:none;
  }
  .loading-indicator_c00239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00239 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00239 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00239" -> "#page-container .classname_c00239")
 */
.pf_c00239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00239 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00239 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00239 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00239 {overflow:visible;}
  }
}
.c_c00239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00239 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00239:after { /* webkit #35443 */
  content: '';
}
.t_c00239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00239 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00239 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00239 { /* info for Javascript */
  display:none;
}
.l_c00239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00239:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00239 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00239.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c00239{transform:matrix(0.016310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016310,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.025327,0.000380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.025327,0.000380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.025327,0.000380,-0.003750,0.249972,0,0);}
.me5_c00239{transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);}
.m53_c00239{transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);}
.mf7_c00239{transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);}
.m5d_c00239{transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);}
.md7_c00239{transform:matrix(0.143810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143810,0.000000,0.000000,0.250000,0,0);}
.m66_c00239{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.m4d_c00239{transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146610,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{transform:matrix(0.149213,0.002238,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149213,0.002238,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149213,0.002238,-0.003750,0.249972,0,0);}
.md5_c00239{transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);}
.md9_c00239{transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);}
.me2_c00239{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.152368,0.002286,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152368,0.002286,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152368,0.002286,-0.003750,0.249972,0,0);}
.mf1_c00239{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.mf2_c00239{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m56_c00239{transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154755,0.000000,0.000000,0.250000,0,0);}
.m6c_c00239{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.155093,0.002326,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155093,0.002326,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155093,0.002326,-0.003750,0.249972,0,0);}
.mdb_c00239{transform:matrix(0.155180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155180,0.000000,0.000000,0.250000,0,0);}
.md6_c00239{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.mab_c00239{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.m61_c00239{transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{transform:matrix(0.157822,0.002367,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157822,0.002367,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157822,0.002367,-0.003750,0.249972,0,0);}
.m4b_c00239{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.mdd_c00239{transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);}
.mea_c00239{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.mdf_c00239{transform:matrix(0.160710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160710,0.000000,0.000000,0.250000,0,0);}
.m25_c00239{transform:matrix(0.160907,0.002414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160907,0.002414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160907,0.002414,-0.003750,0.249972,0,0);}
.m23_c00239{transform:matrix(0.160972,0.002415,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160972,0.002415,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160972,0.002415,-0.003750,0.249972,0,0);}
.m24_c00239{transform:matrix(0.162617,0.002439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162617,0.002439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162617,0.002439,-0.003750,0.249972,0,0);}
.m4_c00239{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.ma4_c00239{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.me7_c00239{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.mb8_c00239{transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164405,0.000000,0.000000,0.250000,0,0);}
.m69_c00239{transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);}
.m62_c00239{transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);}
.m43_c00239{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m22_c00239{transform:matrix(0.165686,0.002485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165686,0.002485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165686,0.002485,-0.003750,0.249972,0,0);}
.mc6_c00239{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.m21_c00239{transform:matrix(0.166116,0.002492,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166116,0.002492,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166116,0.002492,-0.003750,0.249972,0,0);}
.mbe_c00239{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.166566,0.002498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166566,0.002498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166566,0.002498,-0.003750,0.249972,0,0);}
.mbb_c00239{transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);}
.m8c_c00239{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.ma7_c00239{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m3e_c00239{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.mb5_c00239{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.mfd_c00239{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.m6d_c00239{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00239{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00239{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);}
.m71_c00239{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.m65_c00239{transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);}
.mb4_c00239{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.mb9_c00239{transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);}
.m9e_c00239{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.m94_c00239{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.m55_c00239{transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176610,0.000000,0.000000,0.250000,0,0);}
.mc7_c00239{transform:matrix(0.176670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176670,0.000000,0.000000,0.250000,0,0);}
.mda_c00239{transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);}
.m4f_c00239{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.m67_c00239{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.ma0_c00239{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);}
.m72_c00239{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.mef_c00239{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.178015,0.002670,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178015,0.002670,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178015,0.002670,-0.003750,0.249972,0,0);}
.m5b_c00239{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);}
.mbc_c00239{transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);}
.m8f_c00239{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.m2f_c00239{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.mc1_c00239{transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);}
.meb_c00239{transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179555,0.000000,0.000000,0.250000,0,0);}
.m50_c00239{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.me1_c00239{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.mf6_c00239{transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179690,0.000000,0.000000,0.250000,0,0);}
.m9c_c00239{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.mbf_c00239{transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);}
.mec_c00239{transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);}
.m60_c00239{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{transform:matrix(0.180880,0.002713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180880,0.002713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180880,0.002713,-0.003750,0.249972,0,0);}
.me6_c00239{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.m6e_c00239{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.mae_c00239{transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181290,0.000000,0.000000,0.250000,0,0);}
.m5f_c00239{transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);}
.maf_c00239{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.m91_c00239{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m54_c00239{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.182090,0.002731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182090,0.002731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182090,0.002731,-0.003750,0.249972,0,0);}
.me0_c00239{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.md8_c00239{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.m5a_c00239{transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);}
.m7b_c00239{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m36_c00239{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m7d_c00239{transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);}
.m38_c00239{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.m28_c00239{transform:matrix(0.184634,0.002770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184634,0.002770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184634,0.002770,-0.003750,0.249972,0,0);}
.ma3_c00239{transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);}
.m6a_c00239{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m77_c00239{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.mac_c00239{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.186044,0.002791,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186044,0.002791,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186044,0.002791,-0.003750,0.249972,0,0);}
.m74_c00239{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m4c_c00239{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.mb7_c00239{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.mc0_c00239{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.mc4_c00239{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m68_c00239{transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00239{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.md0_c00239{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.mc8_c00239{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m6f_c00239{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m96_c00239{transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);}
.mf5_c00239{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.maa_c00239{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.m3f_c00239{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.mf8_c00239{transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{transform:matrix(0.189490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189490,0.000000,0.000000,0.250000,0,0);}
.m26_c00239{transform:matrix(0.189979,0.002850,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189979,0.002850,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189979,0.002850,-0.003750,0.249972,0,0);}
.mdc_c00239{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m99_c00239{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m80_c00239{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m42_c00239{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.mbd_c00239{transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191845,0.000000,0.000000,0.250000,0,0);}
.m4a_c00239{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.mf4_c00239{transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.me8_c00239{transform:matrix(0.192595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192595,0.000000,0.000000,0.250000,0,0);}
.m4e_c00239{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m76_c00239{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.mfc_c00239{transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);}
.mf9_c00239{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m63_c00239{transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);}
.m2e_c00239{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.194068,0.002911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194068,0.002911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194068,0.002911,-0.003750,0.249972,0,0);}
.mde_c00239{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.m3c_c00239{transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);}
.m3b_c00239{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00239{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.mba_c00239{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m9f_c00239{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m73_c00239{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m64_c00239{transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);}
.me9_c00239{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.mb0_c00239{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.m46_c00239{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m48_c00239{transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);}
.mb6_c00239{transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198540,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);}
.ma1_c00239{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.mb3_c00239{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.mcf_c00239{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m8e_c00239{transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);}
.m95_c00239{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.mf3_c00239{transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);}
.m87_c00239{transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.mfa_c00239{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.mad_c00239{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.mc5_c00239{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m52_c00239{transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200795,0.000000,0.000000,0.250000,0,0);}
.m58_c00239{transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);}
.mca_c00239{transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);}
.m27_c00239{transform:matrix(0.201677,0.003025,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201677,0.003025,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201677,0.003025,-0.003750,0.249972,0,0);}
.m32_c00239{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00239{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m49_c00239{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m47_c00239{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.m78_c00239{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m81_c00239{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.mee_c00239{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.mc9_c00239{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m2d_c00239{transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);}
.m89_c00239{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m2a_c00239{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m75_c00239{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.ma9_c00239{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.mb2_c00239{transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);}
.m70_c00239{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m92_c00239{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m31_c00239{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m97_c00239{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{transform:matrix(0.208497,0.003127,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208497,0.003127,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208497,0.003127,-0.003750,0.249972,0,0);}
.m9d_c00239{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.m29_c00239{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m51_c00239{transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);}
.m41_c00239{transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);}
.ma6_c00239{transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);}
.m88_c00239{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.mfb_c00239{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213016,0.003195,-0.003750,0.249972,0,0);}
.m1b_c00239{transform:matrix(0.213126,0.003197,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213126,0.003197,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213126,0.003197,-0.003750,0.249972,0,0);}
.m7a_c00239{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m30_c00239{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.ma5_c00239{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.mcd_c00239{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m45_c00239{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);}
.md2_c00239{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.md1_c00239{transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);}
.med_c00239{transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m7c_c00239{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m44_c00239{transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);}
.m34_c00239{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.ma2_c00239{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m9a_c00239{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.m9b_c00239{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.ma8_c00239{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m18_c00239{transform:matrix(0.220335,0.003305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220335,0.003305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220335,0.003305,-0.003750,0.249972,0,0);}
.mb_c00239{transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);}
.m82_c00239{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{transform:matrix(0.221530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221530,0.000000,0.000000,0.250000,0,0);}
.m3d_c00239{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m8d_c00239{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00239{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.mb1_c00239{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.m79_c00239{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m57_c00239{transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);}
.mc2_c00239{transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);}
.m85_c00239{transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);}
.me3_c00239{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00239{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m98_c00239{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m2c_c00239{transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);}
.m40_c00239{transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);}
.md3_c00239{transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);}
.m93_c00239{transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);}
.m37_c00239{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m84_c00239{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.md4_c00239{transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);}
.mcc_c00239{transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);}
.m90_c00239{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.mce_c00239{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m8b_c00239{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.mcb_c00239{transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.259076,0.003886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259076,0.003886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259076,0.003886,-0.003750,0.249972,0,0);}
.m83_c00239{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m8a_c00239{transform:matrix(0.261190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261190,0.000000,0.000000,0.250000,0,0);}
.m86_c00239{transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00239{transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);}
.me4_c00239{transform:matrix(0.332990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332990,0.000000,0.000000,0.250000,0,0);}
.mf0_c00239{transform:matrix(0.416120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416120,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:0.000000px;}
.fc0_c00239{color:transparent;}
.fs12_c00239{font-size:22.050000px;}
.fsc_c00239{font-size:57.750000px;}
.fs2_c00239{font-size:58.800000px;}
.fs0_c00239{font-size:59.850000px;}
.fsb_c00239{font-size:60.900000px;}
.fs6_c00239{font-size:61.950000px;}
.fs8_c00239{font-size:63.000000px;}
.fsd_c00239{font-size:64.050000px;}
.fs7_c00239{font-size:65.100000px;}
.fs10_c00239{font-size:66.150000px;}
.fse_c00239{font-size:67.200000px;}
.fs9_c00239{font-size:68.250000px;}
.fs3_c00239{font-size:68.257678px;}
.fs11_c00239{font-size:69.300000px;}
.fs4_c00239{font-size:69.307796px;}
.fs1_c00239{font-size:70.350000px;}
.fsf_c00239{font-size:71.400000px;}
.fs5_c00239{font-size:71.408032px;}
.fsa_c00239{font-size:74.550000px;}
.y0_c00239{bottom:0.000000px;}
.y36_c00239{bottom:22.498500px;}
.y35_c00239{bottom:40.089000px;}
.y34_c00239{bottom:56.736000px;}
.y33_c00239{bottom:73.224000px;}
.y32_c00239{bottom:91.143000px;}
.y31_c00239{bottom:108.723000px;}
.y30_c00239{bottom:125.667000px;}
.y2f_c00239{bottom:142.969500px;}
.y2e_c00239{bottom:161.217000px;}
.y2d_c00239{bottom:177.720000px;}
.y2c_c00239{bottom:195.955500px;}
.y2b_c00239{bottom:213.357000px;}
.y2a_c00239{bottom:230.725500px;}
.y29_c00239{bottom:248.497500px;}
.y28_c00239{bottom:265.348500px;}
.y37_c00239{bottom:270.540000px;}
.y27_c00239{bottom:281.839500px;}
.y26_c00239{bottom:299.274000px;}
.y25_c00239{bottom:316.554000px;}
.y24_c00239{bottom:333.903000px;}
.y23_c00239{bottom:351.582000px;}
.y22_c00239{bottom:368.154000px;}
.y21_c00239{bottom:385.281000px;}
.y20_c00239{bottom:403.002000px;}
.y1f_c00239{bottom:420.262500px;}
.y1e_c00239{bottom:437.499000px;}
.y1d_c00239{bottom:454.851000px;}
.y1c_c00239{bottom:471.117000px;}
.y1b_c00239{bottom:486.240360px;}
.y1a_c00239{bottom:486.465922px;}
.y19_c00239{bottom:487.139303px;}
.y18_c00239{bottom:487.795335px;}
.y17_c00239{bottom:488.447183px;}
.y16_c00239{bottom:488.852250px;}
.y15_c00239{bottom:489.860655px;}
.y14_c00239{bottom:490.589340px;}
.y13_c00239{bottom:505.278923px;}
.y12_c00239{bottom:505.550768px;}
.y11_c00239{bottom:506.227943px;}
.y10_c00239{bottom:506.516213px;}
.yf_c00239{bottom:507.166740px;}
.ye_c00239{bottom:507.328493px;}
.yd_c00239{bottom:507.941325px;}
.yc_c00239{bottom:508.180800px;}
.yb_c00239{bottom:508.681013px;}
.ya_c00239{bottom:519.381773px;}
.y9_c00239{bottom:519.989992px;}
.y8_c00239{bottom:521.432603px;}
.y7_c00239{bottom:521.613547px;}
.y6_c00239{bottom:522.700095px;}
.y5_c00239{bottom:523.052760px;}
.y4_c00239{bottom:524.073000px;}
.y3_c00239{bottom:540.748500px;}
.y2_c00239{bottom:558.028500px;}
.y1_c00239{bottom:573.088500px;}
.h14_c00239{height:22.050000px;}
.he_c00239{height:57.750000px;}
.h4_c00239{height:58.800000px;}
.h2_c00239{height:59.850000px;}
.hd_c00239{height:60.900000px;}
.h8_c00239{height:61.950000px;}
.ha_c00239{height:63.000000px;}
.hf_c00239{height:64.050000px;}
.h9_c00239{height:65.100000px;}
.h12_c00239{height:66.150000px;}
.h10_c00239{height:67.200000px;}
.hb_c00239{height:68.250000px;}
.h5_c00239{height:68.257678px;}
.h13_c00239{height:69.300000px;}
.h6_c00239{height:69.307796px;}
.h3_c00239{height:70.350000px;}
.h11_c00239{height:71.400000px;}
.h7_c00239{height:71.408032px;}
.hc_c00239{height:74.550000px;}
.h1_c00239{height:618.750000px;}
.h0_c00239{height:619.050000px;}
.w0_c00239{width:359.100000px;}
.w1_c00239{width:359.250000px;}
.x0_c00239{left:0.000000px;}
.x37_c00239{left:36.720000px;}
.x2_c00239{left:38.610000px;}
.x24_c00239{left:39.690000px;}
.x3c_c00239{left:40.770000px;}
.x84_c00239{left:44.280000px;}
.x3d_c00239{left:56.700000px;}
.x3_c00239{left:59.130000px;}
.x71_c00239{left:61.020000px;}
.x57_c00239{left:63.990000px;}
.x2b_c00239{left:65.880000px;}
.x7a_c00239{left:67.500000px;}
.x67_c00239{left:69.390000px;}
.x2f_c00239{left:71.820000px;}
.x42_c00239{left:76.410000px;}
.x15_c00239{left:80.121608px;}
.x72_c00239{left:81.270000px;}
.x4f_c00239{left:82.350000px;}
.x2c_c00239{left:86.130000px;}
.x1d_c00239{left:87.591548px;}
.x82_c00239{left:89.910000px;}
.x48_c00239{left:90.990000px;}
.x6e_c00239{left:95.040000px;}
.x38_c00239{left:96.390000px;}
.x16_c00239{left:100.087508px;}
.x25_c00239{left:101.250000px;}
.x3e_c00239{left:103.410000px;}
.xb_c00239{left:105.300000px;}
.x4_c00239{left:106.920000px;}
.x6a_c00239{left:109.890000px;}
.x62_c00239{left:113.940000px;}
.x7b_c00239{left:115.830000px;}
.x7e_c00239{left:116.910000px;}
.x5b_c00239{left:119.610000px;}
.x26_c00239{left:122.040000px;}
.x58_c00239{left:123.390000px;}
.x50_c00239{left:126.900000px;}
.x10_c00239{left:129.697500px;}
.x43_c00239{left:130.950000px;}
.x39_c00239{left:132.840000px;}
.x5_c00239{left:134.730000px;}
.x6f_c00239{left:137.700000px;}
.x7c_c00239{left:142.020000px;}
.x44_c00239{left:144.180000px;}
.x73_c00239{left:145.260000px;}
.x55_c00239{left:146.610000px;}
.x65_c00239{left:148.230000px;}
.x6_c00239{left:149.580000px;}
.x17_c00239{left:151.145303px;}
.x27_c00239{left:153.090000px;}
.x1e_c00239{left:154.818548px;}
.x5c_c00239{left:157.410000px;}
.x45_c00239{left:160.380000px;}
.x34_c00239{left:163.350000px;}
.x18_c00239{left:164.629410px;}
.x3f_c00239{left:165.780000px;}
.x6b_c00239{left:166.860000px;}
.xc_c00239{left:168.480000px;}
.x5d_c00239{left:170.370000px;}
.x1_c00239{left:171.720000px;}
.x77_c00239{left:177.930000px;}
.x49_c00239{left:180.090000px;}
.x1f_c00239{left:181.823048px;}
.x70_c00239{left:186.570000px;}
.x30_c00239{left:187.650000px;}
.x3a_c00239{left:189.540000px;}
.x51_c00239{left:191.430000px;}
.x59_c00239{left:192.780000px;}
.x6c_c00239{left:194.130000px;}
.x7f_c00239{left:195.210000px;}
.x78_c00239{left:197.100000px;}
.x4a_c00239{left:198.450000px;}
.x83_c00239{left:200.610000px;}
.x11_c00239{left:202.134000px;}
.x35_c00239{left:203.850000px;}
.x7_c00239{left:206.280000px;}
.x74_c00239{left:208.980000px;}
.x28_c00239{left:210.330000px;}
.x12_c00239{left:214.197000px;}
.x52_c00239{left:216.000000px;}
.x19_c00239{left:218.900363px;}
.x56_c00239{left:222.210000px;}
.x2d_c00239{left:223.830000px;}
.x20_c00239{left:225.279547px;}
.x4c_c00239{left:227.340000px;}
.x46_c00239{left:230.850000px;}
.x5e_c00239{left:233.280000px;}
.x40_c00239{left:235.710000px;}
.xd_c00239{left:239.760000px;}
.x80_c00239{left:241.380000px;}
.x1a_c00239{left:242.919443px;}
.x31_c00239{left:244.350000px;}
.x75_c00239{left:248.940000px;}
.x2e_c00239{left:250.020000px;}
.x81_c00239{left:252.450000px;}
.x68_c00239{left:254.070000px;}
.x63_c00239{left:257.850000px;}
.xe_c00239{left:260.010000px;}
.x3b_c00239{left:261.900000px;}
.x47_c00239{left:265.140000px;}
.x5f_c00239{left:267.030000px;}
.x21_c00239{left:269.015048px;}
.x4d_c00239{left:270.810000px;}
.x53_c00239{left:272.160000px;}
.x32_c00239{left:278.370000px;}
.x8_c00239{left:280.530000px;}
.x4b_c00239{left:286.200000px;}
.x66_c00239{left:289.710000px;}
.x4e_c00239{left:290.790000px;}
.x36_c00239{left:291.870000px;}
.x69_c00239{left:294.030000px;}
.x54_c00239{left:295.110000px;}
.x9_c00239{left:297.270000px;}
.x1b_c00239{left:299.366985px;}
.x29_c00239{left:300.510000px;}
.x6d_c00239{left:302.940000px;}
.xf_c00239{left:304.290000px;}
.x41_c00239{left:305.910000px;}
.x79_c00239{left:307.800000px;}
.x13_c00239{left:310.371000px;}
.x60_c00239{left:312.660000px;}
.x22_c00239{left:313.907048px;}
.x61_c00239{left:315.090000px;}
.x7d_c00239{left:317.520000px;}
.x2a_c00239{left:318.870000px;}
.x33_c00239{left:319.950000px;}
.x1c_c00239{left:321.990998px;}
.xa_c00239{left:327.510000px;}
.x23_c00239{left:328.944548px;}
.x64_c00239{left:331.290000px;}
.x5a_c00239{left:332.640000px;}
.x76_c00239{left:335.340000px;}
.x85_c00239{left:349.110000px;}
.x14_c00239{left:350.919000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.fs12_c00239{font-size:19.600000pt;}
.fsc_c00239{font-size:51.333333pt;}
.fs2_c00239{font-size:52.266667pt;}
.fs0_c00239{font-size:53.200000pt;}
.fsb_c00239{font-size:54.133333pt;}
.fs6_c00239{font-size:55.066667pt;}
.fs8_c00239{font-size:56.000000pt;}
.fsd_c00239{font-size:56.933333pt;}
.fs7_c00239{font-size:57.866667pt;}
.fs10_c00239{font-size:58.800000pt;}
.fse_c00239{font-size:59.733333pt;}
.fs9_c00239{font-size:60.666667pt;}
.fs3_c00239{font-size:60.673491pt;}
.fs11_c00239{font-size:61.600000pt;}
.fs4_c00239{font-size:61.606930pt;}
.fs1_c00239{font-size:62.533333pt;}
.fsf_c00239{font-size:63.466667pt;}
.fs5_c00239{font-size:63.473806pt;}
.fsa_c00239{font-size:66.266667pt;}
.y0_c00239{bottom:0.000000pt;}
.y36_c00239{bottom:19.998667pt;}
.y35_c00239{bottom:35.634667pt;}
.y34_c00239{bottom:50.432000pt;}
.y33_c00239{bottom:65.088000pt;}
.y32_c00239{bottom:81.016000pt;}
.y31_c00239{bottom:96.642667pt;}
.y30_c00239{bottom:111.704000pt;}
.y2f_c00239{bottom:127.084000pt;}
.y2e_c00239{bottom:143.304000pt;}
.y2d_c00239{bottom:157.973333pt;}
.y2c_c00239{bottom:174.182667pt;}
.y2b_c00239{bottom:189.650667pt;}
.y2a_c00239{bottom:205.089333pt;}
.y29_c00239{bottom:220.886667pt;}
.y28_c00239{bottom:235.865333pt;}
.y37_c00239{bottom:240.480000pt;}
.y27_c00239{bottom:250.524000pt;}
.y26_c00239{bottom:266.021333pt;}
.y25_c00239{bottom:281.381333pt;}
.y24_c00239{bottom:296.802667pt;}
.y23_c00239{bottom:312.517333pt;}
.y22_c00239{bottom:327.248000pt;}
.y21_c00239{bottom:342.472000pt;}
.y20_c00239{bottom:358.224000pt;}
.y1f_c00239{bottom:373.566667pt;}
.y1e_c00239{bottom:388.888000pt;}
.y1d_c00239{bottom:404.312000pt;}
.y1c_c00239{bottom:418.770667pt;}
.y1b_c00239{bottom:432.213653pt;}
.y1a_c00239{bottom:432.414153pt;}
.y19_c00239{bottom:433.012713pt;}
.y18_c00239{bottom:433.595853pt;}
.y17_c00239{bottom:434.175273pt;}
.y16_c00239{bottom:434.535333pt;}
.y15_c00239{bottom:435.431693pt;}
.y14_c00239{bottom:436.079413pt;}
.y13_c00239{bottom:449.136820pt;}
.y12_c00239{bottom:449.378460pt;}
.y11_c00239{bottom:449.980393pt;}
.y10_c00239{bottom:450.236633pt;}
.yf_c00239{bottom:450.814880pt;}
.ye_c00239{bottom:450.958660pt;}
.yd_c00239{bottom:451.503400pt;}
.yc_c00239{bottom:451.716267pt;}
.yb_c00239{bottom:452.160900pt;}
.ya_c00239{bottom:461.672687pt;}
.y9_c00239{bottom:462.213327pt;}
.y8_c00239{bottom:463.495647pt;}
.y7_c00239{bottom:463.656487pt;}
.y6_c00239{bottom:464.622307pt;}
.y5_c00239{bottom:464.935787pt;}
.y4_c00239{bottom:465.842667pt;}
.y3_c00239{bottom:480.665333pt;}
.y2_c00239{bottom:496.025333pt;}
.y1_c00239{bottom:509.412000pt;}
.h14_c00239{height:19.600000pt;}
.he_c00239{height:51.333333pt;}
.h4_c00239{height:52.266667pt;}
.h2_c00239{height:53.200000pt;}
.hd_c00239{height:54.133333pt;}
.h8_c00239{height:55.066667pt;}
.ha_c00239{height:56.000000pt;}
.hf_c00239{height:56.933333pt;}
.h9_c00239{height:57.866667pt;}
.h12_c00239{height:58.800000pt;}
.h10_c00239{height:59.733333pt;}
.hb_c00239{height:60.666667pt;}
.h5_c00239{height:60.673491pt;}
.h13_c00239{height:61.600000pt;}
.h6_c00239{height:61.606930pt;}
.h3_c00239{height:62.533333pt;}
.h11_c00239{height:63.466667pt;}
.h7_c00239{height:63.473806pt;}
.hc_c00239{height:66.266667pt;}
.h1_c00239{height:550.000000pt;}
.h0_c00239{height:550.266667pt;}
.w0_c00239{width:319.200000pt;}
.w1_c00239{width:319.333333pt;}
.x0_c00239{left:0.000000pt;}
.x37_c00239{left:32.640000pt;}
.x2_c00239{left:34.320000pt;}
.x24_c00239{left:35.280000pt;}
.x3c_c00239{left:36.240000pt;}
.x84_c00239{left:39.360000pt;}
.x3d_c00239{left:50.400000pt;}
.x3_c00239{left:52.560000pt;}
.x71_c00239{left:54.240000pt;}
.x57_c00239{left:56.880000pt;}
.x2b_c00239{left:58.560000pt;}
.x7a_c00239{left:60.000000pt;}
.x67_c00239{left:61.680000pt;}
.x2f_c00239{left:63.840000pt;}
.x42_c00239{left:67.920000pt;}
.x15_c00239{left:71.219207pt;}
.x72_c00239{left:72.240000pt;}
.x4f_c00239{left:73.200000pt;}
.x2c_c00239{left:76.560000pt;}
.x1d_c00239{left:77.859153pt;}
.x82_c00239{left:79.920000pt;}
.x48_c00239{left:80.880000pt;}
.x6e_c00239{left:84.480000pt;}
.x38_c00239{left:85.680000pt;}
.x16_c00239{left:88.966673pt;}
.x25_c00239{left:90.000000pt;}
.x3e_c00239{left:91.920000pt;}
.xb_c00239{left:93.600000pt;}
.x4_c00239{left:95.040000pt;}
.x6a_c00239{left:97.680000pt;}
.x62_c00239{left:101.280000pt;}
.x7b_c00239{left:102.960000pt;}
.x7e_c00239{left:103.920000pt;}
.x5b_c00239{left:106.320000pt;}
.x26_c00239{left:108.480000pt;}
.x58_c00239{left:109.680000pt;}
.x50_c00239{left:112.800000pt;}
.x10_c00239{left:115.286667pt;}
.x43_c00239{left:116.400000pt;}
.x39_c00239{left:118.080000pt;}
.x5_c00239{left:119.760000pt;}
.x6f_c00239{left:122.400000pt;}
.x7c_c00239{left:126.240000pt;}
.x44_c00239{left:128.160000pt;}
.x73_c00239{left:129.120000pt;}
.x55_c00239{left:130.320000pt;}
.x65_c00239{left:131.760000pt;}
.x6_c00239{left:132.960000pt;}
.x17_c00239{left:134.351380pt;}
.x27_c00239{left:136.080000pt;}
.x1e_c00239{left:137.616487pt;}
.x5c_c00239{left:139.920000pt;}
.x45_c00239{left:142.560000pt;}
.x34_c00239{left:145.200000pt;}
.x18_c00239{left:146.337253pt;}
.x3f_c00239{left:147.360000pt;}
.x6b_c00239{left:148.320000pt;}
.xc_c00239{left:149.760000pt;}
.x5d_c00239{left:151.440000pt;}
.x1_c00239{left:152.640000pt;}
.x77_c00239{left:158.160000pt;}
.x49_c00239{left:160.080000pt;}
.x1f_c00239{left:161.620487pt;}
.x70_c00239{left:165.840000pt;}
.x30_c00239{left:166.800000pt;}
.x3a_c00239{left:168.480000pt;}
.x51_c00239{left:170.160000pt;}
.x59_c00239{left:171.360000pt;}
.x6c_c00239{left:172.560000pt;}
.x7f_c00239{left:173.520000pt;}
.x78_c00239{left:175.200000pt;}
.x4a_c00239{left:176.400000pt;}
.x83_c00239{left:178.320000pt;}
.x11_c00239{left:179.674667pt;}
.x35_c00239{left:181.200000pt;}
.x7_c00239{left:183.360000pt;}
.x74_c00239{left:185.760000pt;}
.x28_c00239{left:186.960000pt;}
.x12_c00239{left:190.397333pt;}
.x52_c00239{left:192.000000pt;}
.x19_c00239{left:194.578100pt;}
.x56_c00239{left:197.520000pt;}
.x2d_c00239{left:198.960000pt;}
.x20_c00239{left:200.248487pt;}
.x4c_c00239{left:202.080000pt;}
.x46_c00239{left:205.200000pt;}
.x5e_c00239{left:207.360000pt;}
.x40_c00239{left:209.520000pt;}
.xd_c00239{left:213.120000pt;}
.x80_c00239{left:214.560000pt;}
.x1a_c00239{left:215.928393pt;}
.x31_c00239{left:217.200000pt;}
.x75_c00239{left:221.280000pt;}
.x2e_c00239{left:222.240000pt;}
.x81_c00239{left:224.400000pt;}
.x68_c00239{left:225.840000pt;}
.x63_c00239{left:229.200000pt;}
.xe_c00239{left:231.120000pt;}
.x3b_c00239{left:232.800000pt;}
.x47_c00239{left:235.680000pt;}
.x5f_c00239{left:237.360000pt;}
.x21_c00239{left:239.124487pt;}
.x4d_c00239{left:240.720000pt;}
.x53_c00239{left:241.920000pt;}
.x32_c00239{left:247.440000pt;}
.x8_c00239{left:249.360000pt;}
.x4b_c00239{left:254.400000pt;}
.x66_c00239{left:257.520000pt;}
.x4e_c00239{left:258.480000pt;}
.x36_c00239{left:259.440000pt;}
.x69_c00239{left:261.360000pt;}
.x54_c00239{left:262.320000pt;}
.x9_c00239{left:264.240000pt;}
.x1b_c00239{left:266.103987pt;}
.x29_c00239{left:267.120000pt;}
.x6d_c00239{left:269.280000pt;}
.xf_c00239{left:270.480000pt;}
.x41_c00239{left:271.920000pt;}
.x79_c00239{left:273.600000pt;}
.x13_c00239{left:275.885333pt;}
.x60_c00239{left:277.920000pt;}
.x22_c00239{left:279.028487pt;}
.x61_c00239{left:280.080000pt;}
.x7d_c00239{left:282.240000pt;}
.x2a_c00239{left:283.440000pt;}
.x33_c00239{left:284.400000pt;}
.x1c_c00239{left:286.214220pt;}
.xa_c00239{left:291.120000pt;}
.x23_c00239{left:292.395153pt;}
.x64_c00239{left:294.480000pt;}
.x5a_c00239{left:295.680000pt;}
.x76_c00239{left:298.080000pt;}
.x85_c00239{left:310.320000pt;}
.x14_c00239{left:311.928000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00240 {
    display:none;
  }
  .loading-indicator_c00240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00240 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00240 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00240" -> "#page-container .classname_c00240")
 */
.pf_c00240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00240 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00240 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00240 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00240 {overflow:visible;}
  }
}
.c_c00240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00240 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00240:after { /* webkit #35443 */
  content: '';
}
.t_c00240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00240 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00240 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00240 { /* info for Javascript */
  display:none;
}
.l_c00240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00240:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00240 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00240.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7f_c00240{transform:matrix(0.033100,0.000794,-0.005998,0.249928,0,0);-ms-transform:matrix(0.033100,0.000794,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.033100,0.000794,-0.005998,0.249928,0,0);}
.m90_c00240{transform:matrix(0.135761,0.003258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.135761,0.003258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.135761,0.003258,-0.005998,0.249928,0,0);}
.m4_c00240{transform:matrix(0.140519,0.005204,-0.009253,0.249829,0,0);-ms-transform:matrix(0.140519,0.005204,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.140519,0.005204,-0.009253,0.249829,0,0);}
.m68_c00240{transform:matrix(0.140530,0.003373,-0.005998,0.249928,0,0);-ms-transform:matrix(0.140530,0.003373,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.140530,0.003373,-0.005998,0.249928,0,0);}
.m63_c00240{transform:matrix(0.143029,0.003433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143029,0.003433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143029,0.003433,-0.005998,0.249928,0,0);}
.m74_c00240{transform:matrix(0.143954,0.003455,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143954,0.003455,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143954,0.003455,-0.005998,0.249928,0,0);}
.m24_c00240{transform:matrix(0.145643,0.003495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.145643,0.003495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.145643,0.003495,-0.005998,0.249928,0,0);}
.mcb_c00240{transform:matrix(0.146353,0.003512,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146353,0.003512,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146353,0.003512,-0.005998,0.249928,0,0);}
.me5_c00240{transform:matrix(0.148537,0.003565,-0.005998,0.249928,0,0);-ms-transform:matrix(0.148537,0.003565,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.148537,0.003565,-0.005998,0.249928,0,0);}
.m79_c00240{transform:matrix(0.148832,0.003572,-0.005998,0.249928,0,0);-ms-transform:matrix(0.148832,0.003572,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.148832,0.003572,-0.005998,0.249928,0,0);}
.m14_c00240{transform:matrix(0.152605,0.005652,-0.009253,0.249829,0,0);-ms-transform:matrix(0.152605,0.005652,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.152605,0.005652,-0.009253,0.249829,0,0);}
.m75_c00240{transform:matrix(0.153426,0.003682,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153426,0.003682,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153426,0.003682,-0.005998,0.249928,0,0);}
.m8_c00240{transform:matrix(0.153660,0.005691,-0.009253,0.249829,0,0);-ms-transform:matrix(0.153660,0.005691,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.153660,0.005691,-0.009253,0.249829,0,0);}
.mc7_c00240{transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);}
.m33_c00240{transform:matrix(0.155795,0.003739,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155795,0.003739,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155795,0.003739,-0.005998,0.249928,0,0);}
.m0_c00240{transform:matrix(0.156213,0.005786,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156213,0.005786,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156213,0.005786,-0.009253,0.249829,0,0);}
.mb4_c00240{transform:matrix(0.157105,0.003771,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157105,0.003771,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157105,0.003771,-0.005998,0.249928,0,0);}
.m25_c00240{transform:matrix(0.157195,0.003773,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157195,0.003773,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157195,0.003773,-0.005998,0.249928,0,0);}
.m8d_c00240{transform:matrix(0.157620,0.003783,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157620,0.003783,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157620,0.003783,-0.005998,0.249928,0,0);}
.m92_c00240{transform:matrix(0.157750,0.003786,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157750,0.003786,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157750,0.003786,-0.005998,0.249928,0,0);}
.mc1_c00240{transform:matrix(0.157995,0.003792,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157995,0.003792,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157995,0.003792,-0.005998,0.249928,0,0);}
.m8f_c00240{transform:matrix(0.158699,0.003809,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158699,0.003809,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158699,0.003809,-0.005998,0.249928,0,0);}
.m6a_c00240{transform:matrix(0.159154,0.003820,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159154,0.003820,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159154,0.003820,-0.005998,0.249928,0,0);}
.mec_c00240{transform:matrix(0.159234,0.003822,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159234,0.003822,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159234,0.003822,-0.005998,0.249928,0,0);}
.m1c_c00240{transform:matrix(0.159774,0.003835,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159774,0.003835,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159774,0.003835,-0.005998,0.249928,0,0);}
.m30_c00240{transform:matrix(0.159794,0.003835,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159794,0.003835,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159794,0.003835,-0.005998,0.249928,0,0);}
.m16_c00240{transform:matrix(0.160530,0.005946,-0.009253,0.249829,0,0);-ms-transform:matrix(0.160530,0.005946,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.160530,0.005946,-0.009253,0.249829,0,0);}
.mde_c00240{transform:matrix(0.162278,0.003895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162278,0.003895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162278,0.003895,-0.005998,0.249928,0,0);}
.m8e_c00240{transform:matrix(0.162683,0.003904,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162683,0.003904,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162683,0.003904,-0.005998,0.249928,0,0);}
.mb5_c00240{transform:matrix(0.163108,0.003915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163108,0.003915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163108,0.003915,-0.005998,0.249928,0,0);}
.m21_c00240{transform:matrix(0.163313,0.003920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163313,0.003920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163313,0.003920,-0.005998,0.249928,0,0);}
.m1b_c00240{transform:matrix(0.164773,0.003955,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164773,0.003955,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164773,0.003955,-0.005998,0.249928,0,0);}
.m7a_c00240{transform:matrix(0.165142,0.003963,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165142,0.003963,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165142,0.003963,-0.005998,0.249928,0,0);}
.m54_c00240{transform:matrix(0.165577,0.003974,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165577,0.003974,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165577,0.003974,-0.005998,0.249928,0,0);}
.ma_c00240{transform:matrix(0.165626,0.006134,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165626,0.006134,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165626,0.006134,-0.009253,0.249829,0,0);}
.md1_c00240{transform:matrix(0.165977,0.003983,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165977,0.003983,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165977,0.003983,-0.005998,0.249928,0,0);}
.m39_c00240{transform:matrix(0.166562,0.003997,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166562,0.003997,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166562,0.003997,-0.005998,0.249928,0,0);}
.m5_c00240{transform:matrix(0.167310,0.006197,-0.009253,0.249829,0,0);-ms-transform:matrix(0.167310,0.006197,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.167310,0.006197,-0.009253,0.249829,0,0);}
.m20_c00240{transform:matrix(0.168177,0.004036,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168177,0.004036,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168177,0.004036,-0.005998,0.249928,0,0);}
.m37_c00240{transform:matrix(0.168322,0.004040,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168322,0.004040,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168322,0.004040,-0.005998,0.249928,0,0);}
.m91_c00240{transform:matrix(0.168451,0.004043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168451,0.004043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168451,0.004043,-0.005998,0.249928,0,0);}
.m77_c00240{transform:matrix(0.168481,0.004044,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168481,0.004044,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168481,0.004044,-0.005998,0.249928,0,0);}
.m1e_c00240{transform:matrix(0.168686,0.004048,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168686,0.004048,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168686,0.004048,-0.005998,0.249928,0,0);}
.m7_c00240{transform:matrix(0.169918,0.006293,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169918,0.006293,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169918,0.006293,-0.009253,0.249829,0,0);}
.m69_c00240{transform:matrix(0.170076,0.004082,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170076,0.004082,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170076,0.004082,-0.005998,0.249928,0,0);}
.m56_c00240{transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);}
.mdb_c00240{transform:matrix(0.171980,0.004128,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171980,0.004128,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171980,0.004128,-0.005998,0.249928,0,0);}
.m2a_c00240{transform:matrix(0.172160,0.004132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172160,0.004132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172160,0.004132,-0.005998,0.249928,0,0);}
.ma2_c00240{transform:matrix(0.172545,0.004141,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172545,0.004141,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172545,0.004141,-0.005998,0.249928,0,0);}
.mf_c00240{transform:matrix(0.172622,0.006393,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172622,0.006393,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172622,0.006393,-0.009253,0.249829,0,0);}
.me9_c00240{transform:matrix(0.172905,0.004150,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172905,0.004150,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172905,0.004150,-0.005998,0.249928,0,0);}
.mcf_c00240{transform:matrix(0.173430,0.004162,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173430,0.004162,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173430,0.004162,-0.005998,0.249928,0,0);}
.m73_c00240{transform:matrix(0.174065,0.004178,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174065,0.004178,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174065,0.004178,-0.005998,0.249928,0,0);}
.mea_c00240{transform:matrix(0.174295,0.004183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174295,0.004183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174295,0.004183,-0.005998,0.249928,0,0);}
.me6_c00240{transform:matrix(0.174800,0.004195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174800,0.004195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174800,0.004195,-0.005998,0.249928,0,0);}
.mb_c00240{transform:matrix(0.175270,0.006491,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175270,0.006491,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175270,0.006491,-0.009253,0.249829,0,0);}
.m17_c00240{transform:matrix(0.175565,0.006502,-0.009253,0.249829,0,0);-ms-transform:matrix(0.175565,0.006502,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.175565,0.006502,-0.009253,0.249829,0,0);}
.m3e_c00240{transform:matrix(0.175624,0.004215,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175624,0.004215,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175624,0.004215,-0.005998,0.249928,0,0);}
.m4b_c00240{transform:matrix(0.176349,0.004232,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176349,0.004232,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176349,0.004232,-0.005998,0.249928,0,0);}
.mb0_c00240{transform:matrix(0.176599,0.004238,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176599,0.004238,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176599,0.004238,-0.005998,0.249928,0,0);}
.m93_c00240{transform:matrix(0.176799,0.004243,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176799,0.004243,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176799,0.004243,-0.005998,0.249928,0,0);}
.m81_c00240{transform:matrix(0.176859,0.004245,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176859,0.004245,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176859,0.004245,-0.005998,0.249928,0,0);}
.m88_c00240{transform:matrix(0.176929,0.004246,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176929,0.004246,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176929,0.004246,-0.005998,0.249928,0,0);}
.mda_c00240{transform:matrix(0.177274,0.004255,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177274,0.004255,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177274,0.004255,-0.005998,0.249928,0,0);}
.md8_c00240{transform:matrix(0.177334,0.004256,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177334,0.004256,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177334,0.004256,-0.005998,0.249928,0,0);}
.m35_c00240{transform:matrix(0.177529,0.004261,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177529,0.004261,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177529,0.004261,-0.005998,0.249928,0,0);}
.mc9_c00240{transform:matrix(0.177579,0.004262,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177579,0.004262,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177579,0.004262,-0.005998,0.249928,0,0);}
.m4e_c00240{transform:matrix(0.178589,0.004286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178589,0.004286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178589,0.004286,-0.005998,0.249928,0,0);}
.m51_c00240{transform:matrix(0.178629,0.004287,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178629,0.004287,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178629,0.004287,-0.005998,0.249928,0,0);}
.m78_c00240{transform:matrix(0.178779,0.004291,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178779,0.004291,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178779,0.004291,-0.005998,0.249928,0,0);}
.mdc_c00240{transform:matrix(0.180268,0.004326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180268,0.004326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180268,0.004326,-0.005998,0.249928,0,0);}
.m94_c00240{transform:matrix(0.181198,0.004349,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181198,0.004349,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181198,0.004349,-0.005998,0.249928,0,0);}
.mc_c00240{transform:matrix(0.181271,0.006714,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181271,0.006714,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181271,0.006714,-0.009253,0.249829,0,0);}
.m6d_c00240{transform:matrix(0.181438,0.004355,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181438,0.004355,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181438,0.004355,-0.005998,0.249928,0,0);}
.m23_c00240{transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);}
.m57_c00240{transform:matrix(0.183142,0.004395,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183142,0.004395,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183142,0.004395,-0.005998,0.249928,0,0);}
.m22_c00240{transform:matrix(0.183227,0.004397,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183227,0.004397,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183227,0.004397,-0.005998,0.249928,0,0);}
.m18_c00240{transform:matrix(0.183869,0.006810,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183869,0.006810,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183869,0.006810,-0.009253,0.249829,0,0);}
.m29_c00240{transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184027,0.004417,-0.005998,0.249928,0,0);}
.md9_c00240{transform:matrix(0.184127,0.004419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184127,0.004419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184127,0.004419,-0.005998,0.249928,0,0);}
.m82_c00240{transform:matrix(0.184477,0.004427,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184477,0.004427,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184477,0.004427,-0.005998,0.249928,0,0);}
.m6_c00240{transform:matrix(0.184603,0.006837,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184603,0.006837,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184603,0.006837,-0.009253,0.249829,0,0);}
.m8a_c00240{transform:matrix(0.185307,0.004447,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185307,0.004447,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185307,0.004447,-0.005998,0.249928,0,0);}
.md5_c00240{transform:matrix(0.185687,0.004456,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185687,0.004456,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185687,0.004456,-0.005998,0.249928,0,0);}
.m7e_c00240{transform:matrix(0.185801,0.004459,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185801,0.004459,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185801,0.004459,-0.005998,0.249928,0,0);}
.m70_c00240{transform:matrix(0.186096,0.004466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186096,0.004466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186096,0.004466,-0.005998,0.249928,0,0);}
.m67_c00240{transform:matrix(0.186266,0.004470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186266,0.004470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186266,0.004470,-0.005998,0.249928,0,0);}
.m15_c00240{transform:matrix(0.186427,0.006905,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186427,0.006905,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186427,0.006905,-0.009253,0.249829,0,0);}
.me8_c00240{transform:matrix(0.186466,0.004475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186466,0.004475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186466,0.004475,-0.005998,0.249928,0,0);}
.m9a_c00240{transform:matrix(0.186881,0.004485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186881,0.004485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186881,0.004485,-0.005998,0.249928,0,0);}
.m28_c00240{transform:matrix(0.187046,0.004489,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187046,0.004489,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187046,0.004489,-0.005998,0.249928,0,0);}
.m43_c00240{transform:matrix(0.187191,0.004493,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187191,0.004493,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187191,0.004493,-0.005998,0.249928,0,0);}
.m12_c00240{transform:matrix(0.187421,0.006942,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187421,0.006942,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187421,0.006942,-0.009253,0.249829,0,0);}
.mb7_c00240{transform:matrix(0.187926,0.004510,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187926,0.004510,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187926,0.004510,-0.005998,0.249928,0,0);}
.m34_c00240{transform:matrix(0.188081,0.004514,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188081,0.004514,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188081,0.004514,-0.005998,0.249928,0,0);}
.mca_c00240{transform:matrix(0.188281,0.004519,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188281,0.004519,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188281,0.004519,-0.005998,0.249928,0,0);}
.ma4_c00240{transform:matrix(0.188681,0.004528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188681,0.004528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188681,0.004528,-0.005998,0.249928,0,0);}
.ma9_c00240{transform:matrix(0.189231,0.004542,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189231,0.004542,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189231,0.004542,-0.005998,0.249928,0,0);}
.m7d_c00240{transform:matrix(0.190175,0.004564,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190175,0.004564,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190175,0.004564,-0.005998,0.249928,0,0);}
.mc6_c00240{transform:matrix(0.190345,0.004568,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190345,0.004568,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190345,0.004568,-0.005998,0.249928,0,0);}
.med_c00240{transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);}
.m4d_c00240{transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);}
.m99_c00240{transform:matrix(0.191475,0.004595,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191475,0.004595,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191475,0.004595,-0.005998,0.249928,0,0);}
.mbc_c00240{transform:matrix(0.191530,0.004597,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191530,0.004597,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191530,0.004597,-0.005998,0.249928,0,0);}
.m8b_c00240{transform:matrix(0.191545,0.004597,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191545,0.004597,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191545,0.004597,-0.005998,0.249928,0,0);}
.mb8_c00240{transform:matrix(0.191565,0.004598,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191565,0.004598,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191565,0.004598,-0.005998,0.249928,0,0);}
.ma3_c00240{transform:matrix(0.191675,0.004600,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191675,0.004600,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191675,0.004600,-0.005998,0.249928,0,0);}
.md2_c00240{transform:matrix(0.192295,0.004615,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192295,0.004615,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192295,0.004615,-0.005998,0.249928,0,0);}
.m4f_c00240{transform:matrix(0.193094,0.004634,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193094,0.004634,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193094,0.004634,-0.005998,0.249928,0,0);}
.m31_c00240{transform:matrix(0.193144,0.004635,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193144,0.004635,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193144,0.004635,-0.005998,0.249928,0,0);}
.m42_c00240{transform:matrix(0.193759,0.004650,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193759,0.004650,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193759,0.004650,-0.005998,0.249928,0,0);}
.m48_c00240{transform:matrix(0.193844,0.004652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193844,0.004652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193844,0.004652,-0.005998,0.249928,0,0);}
.m47_c00240{transform:matrix(0.194014,0.004656,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194014,0.004656,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194014,0.004656,-0.005998,0.249928,0,0);}
.mcd_c00240{transform:matrix(0.194199,0.004661,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194199,0.004661,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194199,0.004661,-0.005998,0.249928,0,0);}
.m2d_c00240{transform:matrix(0.194224,0.004661,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194224,0.004661,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194224,0.004661,-0.005998,0.249928,0,0);}
.m3f_c00240{transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);}
.mb6_c00240{transform:matrix(0.195009,0.004680,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195009,0.004680,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195009,0.004680,-0.005998,0.249928,0,0);}
.mbe_c00240{transform:matrix(0.195149,0.004684,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195149,0.004684,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195149,0.004684,-0.005998,0.249928,0,0);}
.m6c_c00240{transform:matrix(0.196433,0.004714,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196433,0.004714,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196433,0.004714,-0.005998,0.249928,0,0);}
.m2f_c00240{transform:matrix(0.196463,0.004715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196463,0.004715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196463,0.004715,-0.005998,0.249928,0,0);}
.m64_c00240{transform:matrix(0.196603,0.004718,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196603,0.004718,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196603,0.004718,-0.005998,0.249928,0,0);}
.mc5_c00240{transform:matrix(0.196743,0.004722,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196743,0.004722,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196743,0.004722,-0.005998,0.249928,0,0);}
.m9c_c00240{transform:matrix(0.196773,0.004723,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196773,0.004723,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196773,0.004723,-0.005998,0.249928,0,0);}
.m58_c00240{transform:matrix(0.196928,0.004726,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196928,0.004726,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196928,0.004726,-0.005998,0.249928,0,0);}
.m9b_c00240{transform:matrix(0.197928,0.004750,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197928,0.004750,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197928,0.004750,-0.005998,0.249928,0,0);}
.m27_c00240{transform:matrix(0.197933,0.004750,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197933,0.004750,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197933,0.004750,-0.005998,0.249928,0,0);}
.m41_c00240{transform:matrix(0.197948,0.004751,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197948,0.004751,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197948,0.004751,-0.005998,0.249928,0,0);}
.m86_c00240{transform:matrix(0.198008,0.004752,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198008,0.004752,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198008,0.004752,-0.005998,0.249928,0,0);}
.mc8_c00240{transform:matrix(0.198238,0.004758,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198238,0.004758,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198238,0.004758,-0.005998,0.249928,0,0);}
.me_c00240{transform:matrix(0.198314,0.007345,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198314,0.007345,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198314,0.007345,-0.009253,0.249829,0,0);}
.m4c_c00240{transform:matrix(0.198568,0.004766,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198568,0.004766,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198568,0.004766,-0.005998,0.249928,0,0);}
.m95_c00240{transform:matrix(0.198933,0.004774,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198933,0.004774,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198933,0.004774,-0.005998,0.249928,0,0);}
.m49_c00240{transform:matrix(0.199478,0.004787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199478,0.004787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199478,0.004787,-0.005998,0.249928,0,0);}
.m5a_c00240{transform:matrix(0.199942,0.004799,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199942,0.004799,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199942,0.004799,-0.005998,0.249928,0,0);}
.m26_c00240{transform:matrix(0.200107,0.004803,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200107,0.004803,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200107,0.004803,-0.005998,0.249928,0,0);}
.m2e_c00240{transform:matrix(0.200397,0.004810,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200397,0.004810,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200397,0.004810,-0.005998,0.249928,0,0);}
.m1a_c00240{transform:matrix(0.200572,0.004814,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200572,0.004814,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200572,0.004814,-0.005998,0.249928,0,0);}
.me0_c00240{transform:matrix(0.201117,0.004827,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201117,0.004827,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201117,0.004827,-0.005998,0.249928,0,0);}
.m5b_c00240{transform:matrix(0.201277,0.004831,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201277,0.004831,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201277,0.004831,-0.005998,0.249928,0,0);}
.mb3_c00240{transform:matrix(0.201552,0.004837,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201552,0.004837,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201552,0.004837,-0.005998,0.249928,0,0);}
.ma1_c00240{transform:matrix(0.201667,0.004840,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201667,0.004840,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201667,0.004840,-0.005998,0.249928,0,0);}
.ma0_c00240{transform:matrix(0.201852,0.004844,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201852,0.004844,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201852,0.004844,-0.005998,0.249928,0,0);}
.me7_c00240{transform:matrix(0.201987,0.004848,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201987,0.004848,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201987,0.004848,-0.005998,0.249928,0,0);}
.m7b_c00240{transform:matrix(0.202282,0.004855,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202282,0.004855,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202282,0.004855,-0.005998,0.249928,0,0);}
.m36_c00240{transform:matrix(0.202447,0.004859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202447,0.004859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202447,0.004859,-0.005998,0.249928,0,0);}
.md6_c00240{transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);}
.md_c00240{transform:matrix(0.204545,0.007576,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204545,0.007576,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204545,0.007576,-0.009253,0.249829,0,0);}
.m9f_c00240{transform:matrix(0.204801,0.004915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204801,0.004915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204801,0.004915,-0.005998,0.249928,0,0);}
.mc0_c00240{transform:matrix(0.205886,0.004941,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205886,0.004941,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205886,0.004941,-0.005998,0.249928,0,0);}
.meb_c00240{transform:matrix(0.206156,0.004948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206156,0.004948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206156,0.004948,-0.005998,0.249928,0,0);}
.m76_c00240{transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);}
.me4_c00240{transform:matrix(0.206186,0.004948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206186,0.004948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206186,0.004948,-0.005998,0.249928,0,0);}
.md3_c00240{transform:matrix(0.206196,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206196,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206196,0.004949,-0.005998,0.249928,0,0);}
.m1f_c00240{transform:matrix(0.206226,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206226,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206226,0.004949,-0.005998,0.249928,0,0);}
.md7_c00240{transform:matrix(0.206586,0.004958,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206586,0.004958,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206586,0.004958,-0.005998,0.249928,0,0);}
.mc2_c00240{transform:matrix(0.207245,0.004974,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207245,0.004974,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207245,0.004974,-0.005998,0.249928,0,0);}
.m4a_c00240{transform:matrix(0.207450,0.004979,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207450,0.004979,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207450,0.004979,-0.005998,0.249928,0,0);}
.m9e_c00240{transform:matrix(0.207705,0.004985,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207705,0.004985,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207705,0.004985,-0.005998,0.249928,0,0);}
.mc3_c00240{transform:matrix(0.207885,0.004989,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207885,0.004989,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207885,0.004989,-0.005998,0.249928,0,0);}
.m5d_c00240{transform:matrix(0.208010,0.004992,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208010,0.004992,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208010,0.004992,-0.005998,0.249928,0,0);}
.me2_c00240{transform:matrix(0.208710,0.005009,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208710,0.005009,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208710,0.005009,-0.005998,0.249928,0,0);}
.m10_c00240{transform:matrix(0.208997,0.007741,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208997,0.007741,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208997,0.007741,-0.009253,0.249829,0,0);}
.m5c_c00240{transform:matrix(0.209770,0.005034,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209770,0.005034,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209770,0.005034,-0.005998,0.249928,0,0);}
.m2b_c00240{transform:matrix(0.209995,0.005040,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209995,0.005040,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209995,0.005040,-0.005998,0.249928,0,0);}
.mdd_c00240{transform:matrix(0.210035,0.005041,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210035,0.005041,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210035,0.005041,-0.005998,0.249928,0,0);}
.m84_c00240{transform:matrix(0.210214,0.005045,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210214,0.005045,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210214,0.005045,-0.005998,0.249928,0,0);}
.mce_c00240{transform:matrix(0.210419,0.005050,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210419,0.005050,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210419,0.005050,-0.005998,0.249928,0,0);}
.m61_c00240{transform:matrix(0.210534,0.005053,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210534,0.005053,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210534,0.005053,-0.005998,0.249928,0,0);}
.m55_c00240{transform:matrix(0.211119,0.005067,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211119,0.005067,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211119,0.005067,-0.005998,0.249928,0,0);}
.m8c_c00240{transform:matrix(0.211909,0.005086,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211909,0.005086,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211909,0.005086,-0.005998,0.249928,0,0);}
.mdf_c00240{transform:matrix(0.211914,0.005086,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211914,0.005086,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211914,0.005086,-0.005998,0.249928,0,0);}
.m83_c00240{transform:matrix(0.212774,0.005107,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212774,0.005107,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212774,0.005107,-0.005998,0.249928,0,0);}
.mae_c00240{transform:matrix(0.212894,0.005109,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212894,0.005109,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212894,0.005109,-0.005998,0.249928,0,0);}
.m1d_c00240{transform:matrix(0.212944,0.005111,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212944,0.005111,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212944,0.005111,-0.005998,0.249928,0,0);}
.m40_c00240{transform:matrix(0.213988,0.005136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213988,0.005136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213988,0.005136,-0.005998,0.249928,0,0);}
.m38_c00240{transform:matrix(0.215198,0.005165,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215198,0.005165,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215198,0.005165,-0.005998,0.249928,0,0);}
.m87_c00240{transform:matrix(0.215378,0.005169,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215378,0.005169,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215378,0.005169,-0.005998,0.249928,0,0);}
.m89_c00240{transform:matrix(0.215523,0.005173,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215523,0.005173,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215523,0.005173,-0.005998,0.249928,0,0);}
.m3a_c00240{transform:matrix(0.215748,0.005178,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215748,0.005178,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215748,0.005178,-0.005998,0.249928,0,0);}
.m72_c00240{transform:matrix(0.216638,0.005199,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216638,0.005199,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216638,0.005199,-0.005998,0.249928,0,0);}
.m53_c00240{transform:matrix(0.216973,0.005207,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216973,0.005207,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216973,0.005207,-0.005998,0.249928,0,0);}
.m6f_c00240{transform:matrix(0.217257,0.005214,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217257,0.005214,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217257,0.005214,-0.005998,0.249928,0,0);}
.m9d_c00240{transform:matrix(0.217872,0.005229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217872,0.005229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217872,0.005229,-0.005998,0.249928,0,0);}
.ma8_c00240{transform:matrix(0.217957,0.005231,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217957,0.005231,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217957,0.005231,-0.005998,0.249928,0,0);}
.maf_c00240{transform:matrix(0.218232,0.005238,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218232,0.005238,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218232,0.005238,-0.005998,0.249928,0,0);}
.m46_c00240{transform:matrix(0.218582,0.005246,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218582,0.005246,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218582,0.005246,-0.005998,0.249928,0,0);}
.mbd_c00240{transform:matrix(0.218617,0.005247,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218617,0.005247,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218617,0.005247,-0.005998,0.249928,0,0);}
.md4_c00240{transform:matrix(0.218927,0.005254,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218927,0.005254,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218927,0.005254,-0.005998,0.249928,0,0);}
.mbf_c00240{transform:matrix(0.218957,0.005255,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218957,0.005255,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218957,0.005255,-0.005998,0.249928,0,0);}
.mba_c00240{transform:matrix(0.219882,0.005277,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219882,0.005277,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219882,0.005277,-0.005998,0.249928,0,0);}
.m5f_c00240{transform:matrix(0.220012,0.005280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220012,0.005280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220012,0.005280,-0.005998,0.249928,0,0);}
.m19_c00240{transform:matrix(0.220207,0.005285,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220207,0.005285,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220207,0.005285,-0.005998,0.249928,0,0);}
.m50_c00240{transform:matrix(0.220252,0.005286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220252,0.005286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220252,0.005286,-0.005998,0.249928,0,0);}
.m59_c00240{transform:matrix(0.220586,0.005294,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220586,0.005294,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220586,0.005294,-0.005998,0.249928,0,0);}
.m60_c00240{transform:matrix(0.220726,0.005297,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220726,0.005297,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220726,0.005297,-0.005998,0.249928,0,0);}
.m2_c00240{transform:matrix(0.221408,0.008200,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221408,0.008200,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221408,0.008200,-0.009253,0.249829,0,0);}
.m2c_c00240{transform:matrix(0.221641,0.005319,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221641,0.005319,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221641,0.005319,-0.005998,0.249928,0,0);}
.m98_c00240{transform:matrix(0.222601,0.005342,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222601,0.005342,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222601,0.005342,-0.005998,0.249928,0,0);}
.m13_c00240{transform:matrix(0.223282,0.008270,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223282,0.008270,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223282,0.008270,-0.009253,0.249829,0,0);}
.m7c_c00240{transform:matrix(0.223856,0.005373,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223856,0.005373,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223856,0.005373,-0.005998,0.249928,0,0);}
.m9_c00240{transform:matrix(0.224341,0.008309,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224341,0.008309,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224341,0.008309,-0.009253,0.249829,0,0);}
.mcc_c00240{transform:matrix(0.224565,0.005390,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224565,0.005390,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224565,0.005390,-0.005998,0.249928,0,0);}
.m3d_c00240{transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);}
.mab_c00240{transform:matrix(0.225355,0.005409,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225355,0.005409,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225355,0.005409,-0.005998,0.249928,0,0);}
.mb1_c00240{transform:matrix(0.226860,0.005445,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226860,0.005445,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226860,0.005445,-0.005998,0.249928,0,0);}
.m71_c00240{transform:matrix(0.227150,0.005452,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227150,0.005452,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227150,0.005452,-0.005998,0.249928,0,0);}
.m52_c00240{transform:matrix(0.227400,0.005458,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227400,0.005458,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227400,0.005458,-0.005998,0.249928,0,0);}
.mb2_c00240{transform:matrix(0.227494,0.005460,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227494,0.005460,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227494,0.005460,-0.005998,0.249928,0,0);}
.mac_c00240{transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);}
.mc4_c00240{transform:matrix(0.228254,0.005478,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228254,0.005478,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228254,0.005478,-0.005998,0.249928,0,0);}
.ma7_c00240{transform:matrix(0.229439,0.005507,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229439,0.005507,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229439,0.005507,-0.005998,0.249928,0,0);}
.ma5_c00240{transform:matrix(0.231418,0.005554,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231418,0.005554,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231418,0.005554,-0.005998,0.249928,0,0);}
.m85_c00240{transform:matrix(0.232163,0.005572,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232163,0.005572,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232163,0.005572,-0.005998,0.249928,0,0);}
.me3_c00240{transform:matrix(0.232823,0.005588,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232823,0.005588,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232823,0.005588,-0.005998,0.249928,0,0);}
.m1_c00240{transform:matrix(0.234319,0.008678,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234319,0.008678,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234319,0.008678,-0.009253,0.249829,0,0);}
.md0_c00240{transform:matrix(0.235302,0.005647,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235302,0.005647,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235302,0.005647,-0.005998,0.249928,0,0);}
.ma6_c00240{transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);}
.m32_c00240{transform:matrix(0.235787,0.005659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235787,0.005659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235787,0.005659,-0.005998,0.249928,0,0);}
.mb9_c00240{transform:matrix(0.236487,0.005676,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236487,0.005676,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236487,0.005676,-0.005998,0.249928,0,0);}
.m6b_c00240{transform:matrix(0.236822,0.005684,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236822,0.005684,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236822,0.005684,-0.005998,0.249928,0,0);}
.me1_c00240{transform:matrix(0.243915,0.005854,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243915,0.005854,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243915,0.005854,-0.005998,0.249928,0,0);}
.mbb_c00240{transform:matrix(0.244380,0.005865,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244380,0.005865,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244380,0.005865,-0.005998,0.249928,0,0);}
.m5e_c00240{transform:matrix(0.244565,0.005870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244565,0.005870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244565,0.005870,-0.005998,0.249928,0,0);}
.m62_c00240{transform:matrix(0.245119,0.005883,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245119,0.005883,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245119,0.005883,-0.005998,0.249928,0,0);}
.m66_c00240{transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);}
.m3c_c00240{transform:matrix(0.248019,0.005952,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248019,0.005952,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248019,0.005952,-0.005998,0.249928,0,0);}
.maa_c00240{transform:matrix(0.248838,0.005972,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248838,0.005972,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248838,0.005972,-0.005998,0.249928,0,0);}
.m45_c00240{transform:matrix(0.249288,0.005983,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249288,0.005983,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249288,0.005983,-0.005998,0.249928,0,0);}
.m6e_c00240{transform:matrix(0.253452,0.006083,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253452,0.006083,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253452,0.006083,-0.005998,0.249928,0,0);}
.m11_c00240{transform:matrix(0.268656,0.009950,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268656,0.009950,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268656,0.009950,-0.009253,0.249829,0,0);}
.m96_c00240{transform:matrix(0.295995,0.007104,-0.005998,0.249928,0,0);-ms-transform:matrix(0.295995,0.007104,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.295995,0.007104,-0.005998,0.249928,0,0);}
.m44_c00240{transform:matrix(0.309136,0.007419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.309136,0.007419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.309136,0.007419,-0.005998,0.249928,0,0);}
.m3_c00240{transform:matrix(0.317852,0.011772,-0.009253,0.249829,0,0);-ms-transform:matrix(0.317852,0.011772,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.317852,0.011772,-0.009253,0.249829,0,0);}
.m97_c00240{transform:matrix(0.336493,0.008076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.336493,0.008076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.336493,0.008076,-0.005998,0.249928,0,0);}
.m80_c00240{transform:matrix(0.357917,0.008590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.357917,0.008590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.357917,0.008590,-0.005998,0.249928,0,0);}
.mad_c00240{transform:matrix(0.361341,0.008672,-0.005998,0.249928,0,0);-ms-transform:matrix(0.361341,0.008672,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.361341,0.008672,-0.005998,0.249928,0,0);}
.m65_c00240{transform:matrix(0.616193,0.014789,-0.005998,0.249928,0,0);-ms-transform:matrix(0.616193,0.014789,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.616193,0.014789,-0.005998,0.249928,0,0);}
.m3b_c00240{transform:matrix(0.762081,0.018290,-0.005998,0.249928,0,0);-ms-transform:matrix(0.762081,0.018290,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.762081,0.018290,-0.005998,0.249928,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:0.000000px;}
.fc0_c00240{color:transparent;}
.fsb_c00240{font-size:57.766630px;}
.fsa_c00240{font-size:58.816932px;}
.fs7_c00240{font-size:59.867234px;}
.fs9_c00240{font-size:60.917537px;}
.fsd_c00240{font-size:61.967839px;}
.fs8_c00240{font-size:64.068444px;}
.fs4_c00240{font-size:65.118746px;}
.fse_c00240{font-size:66.169048px;}
.fs6_c00240{font-size:67.219351px;}
.fs3_c00240{font-size:69.278167px;}
.fs5_c00240{font-size:70.370258px;}
.fs2_c00240{font-size:71.377505px;}
.fsc_c00240{font-size:71.420560px;}
.fs1_c00240{font-size:73.476844px;}
.fs0_c00240{font-size:80.824528px;}
.y0_c00240{bottom:0.000000px;}
.yee_c00240{bottom:25.154184px;}
.yed_c00240{bottom:26.202360px;}
.yec_c00240{bottom:27.810024px;}
.yeb_c00240{bottom:29.929032px;}
.yea_c00240{bottom:31.263192px;}
.ye9_c00240{bottom:32.330580px;}
.ye8_c00240{bottom:34.345440px;}
.ye7_c00240{bottom:37.543020px;}
.ye6_c00240{bottom:38.484576px;}
.ye5_c00240{bottom:45.556776px;}
.ye4_c00240{bottom:46.100292px;}
.ye3_c00240{bottom:48.761040px;}
.ye2_c00240{bottom:49.317084px;}
.ye1_c00240{bottom:52.600008px;}
.ye0_c00240{bottom:54.689892px;}
.ydf_c00240{bottom:58.979760px;}
.yde_c00240{bottom:64.066020px;}
.ydd_c00240{bottom:67.788468px;}
.ydc_c00240{bottom:69.070080px;}
.ydb_c00240{bottom:71.162040px;}
.yda_c00240{bottom:73.597572px;}
.yd9_c00240{bottom:77.629224px;}
.yd8_c00240{bottom:78.138480px;}
.yd7_c00240{bottom:80.169624px;}
.yd6_c00240{bottom:81.235308px;}
.yd5_c00240{bottom:84.037764px;}
.yd4_c00240{bottom:85.562880px;}
.yd3_c00240{bottom:88.031748px;}
.yd2_c00240{bottom:88.782576px;}
.yd1_c00240{bottom:89.797824px;}
.yd0_c00240{bottom:95.567700px;}
.ycf_c00240{bottom:96.172284px;}
.yce_c00240{bottom:98.839512px;}
.ycd_c00240{bottom:99.779760px;}
.ycc_c00240{bottom:101.008044px;}
.ycb_c00240{bottom:103.118724px;}
.yca_c00240{bottom:105.301428px;}
.yc9_c00240{bottom:107.625816px;}
.yc8_c00240{bottom:114.058008px;}
.yc7_c00240{bottom:115.581804px;}
.yc6_c00240{bottom:117.148872px;}
.yc5_c00240{bottom:120.540600px;}
.yc4_c00240{bottom:121.394928px;}
.yc3_c00240{bottom:123.808788px;}
.yc2_c00240{bottom:125.452392px;}
.yc1_c00240{bottom:129.946716px;}
.yc0_c00240{bottom:130.436532px;}
.ybf_c00240{bottom:132.384228px;}
.ybe_c00240{bottom:135.308712px;}
.ybd_c00240{bottom:135.928644px;}
.ybc_c00240{bottom:137.676048px;}
.ybb_c00240{bottom:138.029208px;}
.yba_c00240{bottom:140.306232px;}
.yb9_c00240{bottom:146.711556px;}
.yb8_c00240{bottom:147.499872px;}
.yb7_c00240{bottom:149.330676px;}
.yb6_c00240{bottom:150.205308px;}
.yb5_c00240{bottom:150.997824px;}
.yb4_c00240{bottom:154.865040px;}
.yb3_c00240{bottom:157.322616px;}
.yb2_c00240{bottom:161.893788px;}
.yb1_c00240{bottom:162.602292px;}
.yb0_c00240{bottom:165.724512px;}
.yaf_c00240{bottom:167.316672px;}
.yae_c00240{bottom:167.853648px;}
.yad_c00240{bottom:169.945524px;}
.yac_c00240{bottom:170.731860px;}
.yab_c00240{bottom:172.174392px;}
.yaa_c00240{bottom:179.417832px;}
.ya9_c00240{bottom:180.983832px;}
.ya8_c00240{bottom:183.780132px;}
.ya7_c00240{bottom:185.824308px;}
.ya6_c00240{bottom:186.166308px;}
.ya5_c00240{bottom:187.565820px;}
.ya4_c00240{bottom:196.647768px;}
.ya3_c00240{bottom:197.419224px;}
.ya2_c00240{bottom:198.096132px;}
.ya1_c00240{bottom:199.886004px;}
.ya0_c00240{bottom:202.533720px;}
.y9f_c00240{bottom:203.509680px;}
.y9e_c00240{bottom:204.192156px;}
.y9d_c00240{bottom:205.929216px;}
.y9c_c00240{bottom:216.184776px;}
.y9b_c00240{bottom:219.048972px;}
.y9a_c00240{bottom:219.838860px;}
.y99_c00240{bottom:222.144096px;}
.y98_c00240{bottom:222.716232px;}
.y97_c00240{bottom:224.026896px;}
.y96_c00240{bottom:231.902784px;}
.y95_c00240{bottom:232.671600px;}
.y94_c00240{bottom:234.440352px;}
.y93_c00240{bottom:236.639028px;}
.y92_c00240{bottom:237.348936px;}
.y91_c00240{bottom:238.157136px;}
.y90_c00240{bottom:239.629824px;}
.y8f_c00240{bottom:240.325656px;}
.y8e_c00240{bottom:241.855248px;}
.y8d_c00240{bottom:248.503788px;}
.y8c_c00240{bottom:250.943016px;}
.y8b_c00240{bottom:252.559980px;}
.y8a_c00240{bottom:256.312944px;}
.y89_c00240{bottom:257.271108px;}
.y88_c00240{bottom:259.679580px;}
.y87_c00240{bottom:266.071008px;}
.y86_c00240{bottom:266.565996px;}
.y85_c00240{bottom:270.213612px;}
.y84_c00240{bottom:270.994452px;}
.y83_c00240{bottom:272.294340px;}
.y82_c00240{bottom:273.642972px;}
.y81_c00240{bottom:275.610888px;}
.y80_c00240{bottom:287.456880px;}
.y7f_c00240{bottom:289.898256px;}
.y7e_c00240{bottom:290.485128px;}
.y7d_c00240{bottom:290.791452px;}
.y7c_c00240{bottom:292.619064px;}
.y7b_c00240{bottom:301.965636px;}
.y7a_c00240{bottom:303.028272px;}
.y79_c00240{bottom:303.709416px;}
.y78_c00240{bottom:304.954320px;}
.y77_c00240{bottom:306.426924px;}
.y76_c00240{bottom:306.942372px;}
.y75_c00240{bottom:307.925940px;}
.y74_c00240{bottom:310.448928px;}
.y73_c00240{bottom:320.382528px;}
.y72_c00240{bottom:321.354708px;}
.y71_c00240{bottom:321.983556px;}
.y70_c00240{bottom:323.137140px;}
.y6f_c00240{bottom:323.830608px;}
.y6e_c00240{bottom:324.540888px;}
.y6d_c00240{bottom:325.127040px;}
.y6c_c00240{bottom:326.650020px;}
.y6b_c00240{bottom:332.256996px;}
.y6a_c00240{bottom:334.211868px;}
.y69_c00240{bottom:334.851324px;}
.y68_c00240{bottom:337.441632px;}
.y67_c00240{bottom:338.259300px;}
.y66_c00240{bottom:340.557432px;}
.y65_c00240{bottom:342.643500px;}
.y64_c00240{bottom:343.129332px;}
.y63_c00240{bottom:349.572420px;}
.y62_c00240{bottom:351.986640px;}
.y61_c00240{bottom:352.717008px;}
.y60_c00240{bottom:353.130636px;}
.y5f_c00240{bottom:356.100756px;}
.y5e_c00240{bottom:357.791892px;}
.y5d_c00240{bottom:359.333652px;}
.y5c_c00240{bottom:369.078252px;}
.y5b_c00240{bottom:370.605420px;}
.y5a_c00240{bottom:371.214252px;}
.y59_c00240{bottom:373.123044px;}
.y58_c00240{bottom:374.880372px;}
.y57_c00240{bottom:375.474924px;}
.y56_c00240{bottom:376.069980px;}
.y55_c00240{bottom:376.613892px;}
.y54_c00240{bottom:386.996340px;}
.y53_c00240{bottom:388.805184px;}
.y52_c00240{bottom:389.523240px;}
.y51_c00240{bottom:390.704388px;}
.y50_c00240{bottom:391.461624px;}
.y4f_c00240{bottom:391.969092px;}
.y4e_c00240{bottom:393.483852px;}
.y4d_c00240{bottom:394.984992px;}
.y4c_c00240{bottom:403.280460px;}
.y4b_c00240{bottom:404.012964px;}
.y4a_c00240{bottom:404.580648px;}
.y49_c00240{bottom:405.436452px;}
.y48_c00240{bottom:406.780284px;}
.y47_c00240{bottom:407.262228px;}
.y46_c00240{bottom:407.677344px;}
.y45_c00240{bottom:408.816996px;}
.y44_c00240{bottom:409.293708px;}
.y43_c00240{bottom:420.733284px;}
.y42_c00240{bottom:421.731060px;}
.y41_c00240{bottom:422.454264px;}
.y40_c00240{bottom:423.750660px;}
.y3f_c00240{bottom:424.142304px;}
.y3e_c00240{bottom:425.964048px;}
.y3d_c00240{bottom:426.580080px;}
.y3c_c00240{bottom:427.661304px;}
.y3b_c00240{bottom:438.704496px;}
.y3a_c00240{bottom:439.937748px;}
.y39_c00240{bottom:441.338544px;}
.y38_c00240{bottom:442.320780px;}
.y37_c00240{bottom:443.007600px;}
.y36_c00240{bottom:443.835816px;}
.y35_c00240{bottom:444.556020px;}
.y34_c00240{bottom:445.485612px;}
.y33_c00240{bottom:455.810880px;}
.y32_c00240{bottom:457.909500px;}
.y31_c00240{bottom:458.517684px;}
.y30_c00240{bottom:460.166088px;}
.y2f_c00240{bottom:460.989264px;}
.y2e_c00240{bottom:461.962992px;}
.y2d_c00240{bottom:474.254136px;}
.y2c_c00240{bottom:474.893136px;}
.y2b_c00240{bottom:476.924220px;}
.y2a_c00240{bottom:478.055088px;}
.y29_c00240{bottom:479.515320px;}
.y28_c00240{bottom:489.922548px;}
.y27_c00240{bottom:490.170948px;}
.y26_c00240{bottom:491.247312px;}
.y25_c00240{bottom:491.645172px;}
.y24_c00240{bottom:492.057780px;}
.y23_c00240{bottom:493.691592px;}
.y22_c00240{bottom:494.536452px;}
.y21_c00240{bottom:495.026832px;}
.y20_c00240{bottom:495.451200px;}
.y1f_c00240{bottom:508.306716px;}
.y1e_c00240{bottom:509.834160px;}
.y1d_c00240{bottom:510.352704px;}
.y1c_c00240{bottom:511.045848px;}
.y1b_c00240{bottom:511.829712px;}
.y1a_c00240{bottom:513.814500px;}
.y19_c00240{bottom:524.645765px;}
.y18_c00240{bottom:525.193882px;}
.y17_c00240{bottom:525.477987px;}
.y16_c00240{bottom:526.800497px;}
.y15_c00240{bottom:527.227181px;}
.y14_c00240{bottom:527.605358px;}
.y13_c00240{bottom:528.575165px;}
.y12_c00240{bottom:528.965330px;}
.y11_c00240{bottom:541.033582px;}
.y10_c00240{bottom:542.657457px;}
.yf_c00240{bottom:542.947389px;}
.ye_c00240{bottom:544.168833px;}
.yd_c00240{bottom:544.906206px;}
.yc_c00240{bottom:545.647520px;}
.yb_c00240{bottom:546.554833px;}
.ya_c00240{bottom:546.770285px;}
.y9_c00240{bottom:559.665154px;}
.y8_c00240{bottom:561.386876px;}
.y7_c00240{bottom:561.852742px;}
.y6_c00240{bottom:563.652274px;}
.y5_c00240{bottom:564.149666px;}
.y4_c00240{bottom:564.430995px;}
.y3_c00240{bottom:565.122525px;}
.y2_c00240{bottom:569.325485px;}
.y1_c00240{bottom:574.582500px;}
.hd_c00240{height:57.766630px;}
.hc_c00240{height:58.816932px;}
.h9_c00240{height:59.867234px;}
.hb_c00240{height:60.917537px;}
.hf_c00240{height:61.967839px;}
.ha_c00240{height:64.068444px;}
.h6_c00240{height:65.118746px;}
.h10_c00240{height:66.169048px;}
.h8_c00240{height:67.219351px;}
.h5_c00240{height:69.278167px;}
.h7_c00240{height:70.370258px;}
.h4_c00240{height:71.377505px;}
.he_c00240{height:71.420560px;}
.h3_c00240{height:73.476844px;}
.h2_c00240{height:80.824528px;}
.h1_c00240{height:618.750000px;}
.h0_c00240{height:619.050000px;}
.w0_c00240{width:359.100000px;}
.w1_c00240{width:359.250000px;}
.x0_c00240{left:0.000000px;}
.x54_c00240{left:18.602220px;}
.x74_c00240{left:23.246904px;}
.x4e_c00240{left:25.090728px;}
.x10_c00240{left:26.839889px;}
.x3_c00240{left:28.141530px;}
.x42_c00240{left:35.404608px;}
.xa_c00240{left:38.103280px;}
.x78_c00240{left:39.267900px;}
.x18_c00240{left:40.569000px;}
.x47_c00240{left:43.192104px;}
.x4b_c00240{left:47.342160px;}
.x1d_c00240{left:49.818180px;}
.x11_c00240{left:52.770044px;}
.x43_c00240{left:55.566168px;}
.x79_c00240{left:58.112664px;}
.x4_c00240{left:61.033605px;}
.x2c_c00240{left:64.128816px;}
.x62_c00240{left:65.382948px;}
.x27_c00240{left:68.869716px;}
.x75_c00240{left:71.008980px;}
.x32_c00240{left:73.137828px;}
.x5_c00240{left:74.423147px;}
.x3c_c00240{left:77.480976px;}
.xb_c00240{left:79.252424px;}
.x76_c00240{left:80.299596px;}
.x63_c00240{left:82.217916px;}
.x67_c00240{left:83.430144px;}
.x48_c00240{left:84.856608px;}
.x5c_c00240{left:86.692908px;}
.x23_c00240{left:89.527452px;}
.x2d_c00240{left:91.823484px;}
.x58_c00240{left:93.110448px;}
.x55_c00240{left:94.752720px;}
.x6_c00240{left:98.062483px;}
.x44_c00240{left:99.630000px;}
.x28_c00240{left:103.168716px;}
.x38_c00240{left:104.503980px;}
.x56_c00240{left:107.516220px;}
.x50_c00240{left:109.672800px;}
.xc_c00240{left:112.880928px;}
.x5a_c00240{left:115.166964px;}
.x12_c00240{left:117.282022px;}
.x7a_c00240{left:122.055276px;}
.x19_c00240{left:123.268500px;}
.x6c_c00240{left:125.145540px;}
.x5d_c00240{left:126.479988px;}
.x3d_c00240{left:127.963704px;}
.x65_c00240{left:129.498756px;}
.x49_c00240{left:130.556352px;}
.x57_c00240{left:131.969220px;}
.x24_c00240{left:136.646952px;}
.x13_c00240{left:142.442836px;}
.x3e_c00240{left:144.855756px;}
.xd_c00240{left:146.322009px;}
.x5e_c00240{left:148.335684px;}
.x2e_c00240{left:150.134712px;}
.x1a_c00240{left:155.929500px;}
.x69_c00240{left:157.797324px;}
.x1_c00240{left:159.762000px;}
.x4c_c00240{left:162.728424px;}
.x45_c00240{left:164.722320px;}
.x5f_c00240{left:167.534208px;}
.x14_c00240{left:170.777029px;}
.x29_c00240{left:171.852216px;}
.x64_c00240{left:173.222064px;}
.x33_c00240{left:174.711828px;}
.x6f_c00240{left:176.389536px;}
.x7_c00240{left:183.599527px;}
.x1b_c00240{left:184.810500px;}
.x2f_c00240{left:187.934412px;}
.x34_c00240{left:191.030328px;}
.x59_c00240{left:193.976256px;}
.x2a_c00240{left:197.193216px;}
.x1e_c00240{left:198.230400px;}
.xe_c00240{left:201.746307px;}
.x70_c00240{left:204.304644px;}
.x8_c00240{left:205.739476px;}
.x3f_c00240{left:209.487468px;}
.x39_c00240{left:211.194648px;}
.xf_c00240{left:214.881936px;}
.x1f_c00240{left:218.861880px;}
.x25_c00240{left:221.275452px;}
.x71_c00240{left:225.658884px;}
.x60_c00240{left:226.939668px;}
.x6d_c00240{left:228.709812px;}
.x6a_c00240{left:231.074592px;}
.x40_c00240{left:233.403012px;}
.x46_c00240{left:235.437744px;}
.x20_c00240{left:238.753788px;}
.x30_c00240{left:241.798320px;}
.x77_c00240{left:242.808744px;}
.x35_c00240{left:245.046828px;}
.x26_c00240{left:247.900452px;}
.x51_c00240{left:250.216068px;}
.x3a_c00240{left:251.981100px;}
.x5b_c00240{left:256.491516px;}
.x15_c00240{left:258.708621px;}
.x68_c00240{left:262.157724px;}
.x66_c00240{left:263.994240px;}
.x6e_c00240{left:266.926224px;}
.x1c_c00240{left:270.060000px;}
.x52_c00240{left:272.906292px;}
.x36_c00240{left:275.180328px;}
.x16_c00240{left:277.602098px;}
.x3b_c00240{left:279.011544px;}
.x2b_c00240{left:284.635716px;}
.x4f_c00240{left:286.236228px;}
.x9_c00240{left:287.555024px;}
.x31_c00240{left:289.244052px;}
.x21_c00240{left:292.607472px;}
.x41_c00240{left:293.700336px;}
.x61_c00240{left:295.525284px;}
.x6b_c00240{left:298.242936px;}
.x72_c00240{left:300.011208px;}
.x2_c00240{left:301.701418px;}
.x22_c00240{left:305.021160px;}
.x4a_c00240{left:307.015344px;}
.x53_c00240{left:308.302680px;}
.x73_c00240{left:309.773052px;}
.x17_c00240{left:314.036293px;}
.x37_c00240{left:316.754328px;}
.x4d_c00240{left:320.646360px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:0.000000pt;}
.fsb_c00240{font-size:51.348115pt;}
.fsa_c00240{font-size:52.281717pt;}
.fs7_c00240{font-size:53.215319pt;}
.fs9_c00240{font-size:54.148921pt;}
.fsd_c00240{font-size:55.082524pt;}
.fs8_c00240{font-size:56.949728pt;}
.fs4_c00240{font-size:57.883330pt;}
.fse_c00240{font-size:58.816932pt;}
.fs6_c00240{font-size:59.750534pt;}
.fs3_c00240{font-size:61.580593pt;}
.fs5_c00240{font-size:62.551340pt;}
.fs2_c00240{font-size:63.446672pt;}
.fsc_c00240{font-size:63.484942pt;}
.fs1_c00240{font-size:65.312750pt;}
.fs0_c00240{font-size:71.844025pt;}
.y0_c00240{bottom:0.000000pt;}
.yee_c00240{bottom:22.359275pt;}
.yed_c00240{bottom:23.290987pt;}
.yec_c00240{bottom:24.720021pt;}
.yeb_c00240{bottom:26.603584pt;}
.yea_c00240{bottom:27.789504pt;}
.ye9_c00240{bottom:28.738293pt;}
.ye8_c00240{bottom:30.529280pt;}
.ye7_c00240{bottom:33.371573pt;}
.ye6_c00240{bottom:34.208512pt;}
.ye5_c00240{bottom:40.494912pt;}
.ye4_c00240{bottom:40.978037pt;}
.ye3_c00240{bottom:43.343147pt;}
.ye2_c00240{bottom:43.837408pt;}
.ye1_c00240{bottom:46.755563pt;}
.ye0_c00240{bottom:48.613237pt;}
.ydf_c00240{bottom:52.426453pt;}
.yde_c00240{bottom:56.947573pt;}
.ydd_c00240{bottom:60.256416pt;}
.ydc_c00240{bottom:61.395627pt;}
.ydb_c00240{bottom:63.255147pt;}
.yda_c00240{bottom:65.420064pt;}
.yd9_c00240{bottom:69.003755pt;}
.yd8_c00240{bottom:69.456427pt;}
.yd7_c00240{bottom:71.261888pt;}
.yd6_c00240{bottom:72.209163pt;}
.yd5_c00240{bottom:74.700235pt;}
.yd4_c00240{bottom:76.055893pt;}
.yd3_c00240{bottom:78.250443pt;}
.yd2_c00240{bottom:78.917845pt;}
.yd1_c00240{bottom:79.820288pt;}
.yd0_c00240{bottom:84.949067pt;}
.ycf_c00240{bottom:85.486475pt;}
.yce_c00240{bottom:87.857344pt;}
.ycd_c00240{bottom:88.693120pt;}
.ycc_c00240{bottom:89.784928pt;}
.ycb_c00240{bottom:91.661088pt;}
.yca_c00240{bottom:93.601269pt;}
.yc9_c00240{bottom:95.667392pt;}
.yc8_c00240{bottom:101.384896pt;}
.yc7_c00240{bottom:102.739381pt;}
.yc6_c00240{bottom:104.132331pt;}
.yc5_c00240{bottom:107.147200pt;}
.yc4_c00240{bottom:107.906603pt;}
.yc3_c00240{bottom:110.052256pt;}
.yc2_c00240{bottom:111.513237pt;}
.yc1_c00240{bottom:115.508192pt;}
.yc0_c00240{bottom:115.943584pt;}
.ybf_c00240{bottom:117.674869pt;}
.ybe_c00240{bottom:120.274411pt;}
.ybd_c00240{bottom:120.825461pt;}
.ybc_c00240{bottom:122.378709pt;}
.ybb_c00240{bottom:122.692629pt;}
.yba_c00240{bottom:124.716651pt;}
.yb9_c00240{bottom:130.410272pt;}
.yb8_c00240{bottom:131.110997pt;}
.yb7_c00240{bottom:132.738379pt;}
.yb6_c00240{bottom:133.515829pt;}
.yb5_c00240{bottom:134.220288pt;}
.yb4_c00240{bottom:137.657813pt;}
.yb3_c00240{bottom:139.842325pt;}
.yb2_c00240{bottom:143.905589pt;}
.yb1_c00240{bottom:144.535371pt;}
.yb0_c00240{bottom:147.310677pt;}
.yaf_c00240{bottom:148.725931pt;}
.yae_c00240{bottom:149.203243pt;}
.yad_c00240{bottom:151.062688pt;}
.yac_c00240{bottom:151.761653pt;}
.yab_c00240{bottom:153.043904pt;}
.yaa_c00240{bottom:159.482517pt;}
.ya9_c00240{bottom:160.874517pt;}
.ya8_c00240{bottom:163.360117pt;}
.ya7_c00240{bottom:165.177163pt;}
.ya6_c00240{bottom:165.481163pt;}
.ya5_c00240{bottom:166.725173pt;}
.ya4_c00240{bottom:174.798016pt;}
.ya3_c00240{bottom:175.483755pt;}
.ya2_c00240{bottom:176.085451pt;}
.ya1_c00240{bottom:177.676448pt;}
.ya0_c00240{bottom:180.029973pt;}
.y9f_c00240{bottom:180.897493pt;}
.y9e_c00240{bottom:181.504139pt;}
.y9d_c00240{bottom:183.048192pt;}
.y9c_c00240{bottom:192.164245pt;}
.y9b_c00240{bottom:194.710197pt;}
.y9a_c00240{bottom:195.412320pt;}
.y99_c00240{bottom:197.461419pt;}
.y98_c00240{bottom:197.969984pt;}
.y97_c00240{bottom:199.135019pt;}
.y96_c00240{bottom:206.135808pt;}
.y95_c00240{bottom:206.819200pt;}
.y94_c00240{bottom:208.391424pt;}
.y93_c00240{bottom:210.345803pt;}
.y92_c00240{bottom:210.976832pt;}
.y91_c00240{bottom:211.695232pt;}
.y90_c00240{bottom:213.004288pt;}
.y8f_c00240{bottom:213.622805pt;}
.y8e_c00240{bottom:214.982443pt;}
.y8d_c00240{bottom:220.892256pt;}
.y8c_c00240{bottom:223.060459pt;}
.y8b_c00240{bottom:224.497760pt;}
.y8a_c00240{bottom:227.833728pt;}
.y89_c00240{bottom:228.685429pt;}
.y88_c00240{bottom:230.826293pt;}
.y87_c00240{bottom:236.507563pt;}
.y86_c00240{bottom:236.947552pt;}
.y85_c00240{bottom:240.189877pt;}
.y84_c00240{bottom:240.883957pt;}
.y83_c00240{bottom:242.039413pt;}
.y82_c00240{bottom:243.238197pt;}
.y81_c00240{bottom:244.987456pt;}
.y80_c00240{bottom:255.517227pt;}
.y7f_c00240{bottom:257.687339pt;}
.y7e_c00240{bottom:258.209003pt;}
.y7d_c00240{bottom:258.481291pt;}
.y7c_c00240{bottom:260.105835pt;}
.y7b_c00240{bottom:268.413899pt;}
.y7a_c00240{bottom:269.358464pt;}
.y79_c00240{bottom:269.963925pt;}
.y78_c00240{bottom:271.070507pt;}
.y77_c00240{bottom:272.379488pt;}
.y76_c00240{bottom:272.837664pt;}
.y75_c00240{bottom:273.711947pt;}
.y74_c00240{bottom:275.954603pt;}
.y73_c00240{bottom:284.784469pt;}
.y72_c00240{bottom:285.648629pt;}
.y71_c00240{bottom:286.207605pt;}
.y70_c00240{bottom:287.233013pt;}
.y6f_c00240{bottom:287.849429pt;}
.y6e_c00240{bottom:288.480789pt;}
.y6d_c00240{bottom:289.001813pt;}
.y6c_c00240{bottom:290.355573pt;}
.y6b_c00240{bottom:295.339552pt;}
.y6a_c00240{bottom:297.077216pt;}
.y69_c00240{bottom:297.645621pt;}
.y68_c00240{bottom:299.948117pt;}
.y67_c00240{bottom:300.674933pt;}
.y66_c00240{bottom:302.717717pt;}
.y65_c00240{bottom:304.572000pt;}
.y64_c00240{bottom:305.003851pt;}
.y63_c00240{bottom:310.731040pt;}
.y62_c00240{bottom:312.877013pt;}
.y61_c00240{bottom:313.526229pt;}
.y60_c00240{bottom:313.893899pt;}
.y5f_c00240{bottom:316.534005pt;}
.y5e_c00240{bottom:318.037237pt;}
.y5d_c00240{bottom:319.407691pt;}
.y5c_c00240{bottom:328.069557pt;}
.y5b_c00240{bottom:329.427040pt;}
.y5a_c00240{bottom:329.968224pt;}
.y59_c00240{bottom:331.664928pt;}
.y58_c00240{bottom:333.226997pt;}
.y57_c00240{bottom:333.755488pt;}
.y56_c00240{bottom:334.284427pt;}
.y55_c00240{bottom:334.767904pt;}
.y54_c00240{bottom:343.996747pt;}
.y53_c00240{bottom:345.604608pt;}
.y52_c00240{bottom:346.242880pt;}
.y51_c00240{bottom:347.292789pt;}
.y50_c00240{bottom:347.965888pt;}
.y4f_c00240{bottom:348.416971pt;}
.y4e_c00240{bottom:349.763424pt;}
.y4d_c00240{bottom:351.097771pt;}
.y4c_c00240{bottom:358.471520pt;}
.y4b_c00240{bottom:359.122635pt;}
.y4a_c00240{bottom:359.627243pt;}
.y49_c00240{bottom:360.387957pt;}
.y48_c00240{bottom:361.582475pt;}
.y47_c00240{bottom:362.010869pt;}
.y46_c00240{bottom:362.379861pt;}
.y45_c00240{bottom:363.392885pt;}
.y44_c00240{bottom:363.816629pt;}
.y43_c00240{bottom:373.985141pt;}
.y42_c00240{bottom:374.872053pt;}
.y41_c00240{bottom:375.514901pt;}
.y40_c00240{bottom:376.667253pt;}
.y3f_c00240{bottom:377.015381pt;}
.y3e_c00240{bottom:378.634709pt;}
.y3d_c00240{bottom:379.182293pt;}
.y3c_c00240{bottom:380.143381pt;}
.y3b_c00240{bottom:389.959552pt;}
.y3a_c00240{bottom:391.055776pt;}
.y39_c00240{bottom:392.300928pt;}
.y38_c00240{bottom:393.174027pt;}
.y37_c00240{bottom:393.784533pt;}
.y36_c00240{bottom:394.520725pt;}
.y35_c00240{bottom:395.160907pt;}
.y34_c00240{bottom:395.987211pt;}
.y33_c00240{bottom:405.165227pt;}
.y32_c00240{bottom:407.030667pt;}
.y31_c00240{bottom:407.571275pt;}
.y30_c00240{bottom:409.036523pt;}
.y2f_c00240{bottom:409.768235pt;}
.y2e_c00240{bottom:410.633771pt;}
.y2d_c00240{bottom:421.559232pt;}
.y2c_c00240{bottom:422.127232pt;}
.y2b_c00240{bottom:423.932640pt;}
.y2a_c00240{bottom:424.937856pt;}
.y29_c00240{bottom:426.235840pt;}
.y28_c00240{bottom:435.486709pt;}
.y27_c00240{bottom:435.707509pt;}
.y26_c00240{bottom:436.664277pt;}
.y25_c00240{bottom:437.017931pt;}
.y24_c00240{bottom:437.384693pt;}
.y23_c00240{bottom:438.836971pt;}
.y22_c00240{bottom:439.587957pt;}
.y21_c00240{bottom:440.023851pt;}
.y20_c00240{bottom:440.401067pt;}
.y1f_c00240{bottom:451.828192pt;}
.y1e_c00240{bottom:453.185920pt;}
.y1d_c00240{bottom:453.646848pt;}
.y1c_c00240{bottom:454.262976pt;}
.y1b_c00240{bottom:454.959744pt;}
.y1a_c00240{bottom:456.724000pt;}
.y19_c00240{bottom:466.351791pt;}
.y18_c00240{bottom:466.839007pt;}
.y17_c00240{bottom:467.091544pt;}
.y16_c00240{bottom:468.267108pt;}
.y15_c00240{bottom:468.646383pt;}
.y14_c00240{bottom:468.982540pt;}
.y13_c00240{bottom:469.844591pt;}
.y12_c00240{bottom:470.191404pt;}
.y11_c00240{bottom:480.918740pt;}
.y10_c00240{bottom:482.362184pt;}
.yf_c00240{bottom:482.619901pt;}
.ye_c00240{bottom:483.705629pt;}
.yd_c00240{bottom:484.361072pt;}
.yc_c00240{bottom:485.020017pt;}
.yb_c00240{bottom:485.826519pt;}
.ya_c00240{bottom:486.018031pt;}
.y9_c00240{bottom:497.480137pt;}
.y8_c00240{bottom:499.010556pt;}
.y7_c00240{bottom:499.424660pt;}
.y6_c00240{bottom:501.024244pt;}
.y5_c00240{bottom:501.466369pt;}
.y4_c00240{bottom:501.716440pt;}
.y3_c00240{bottom:502.331133pt;}
.y2_c00240{bottom:506.067097pt;}
.y1_c00240{bottom:510.740000pt;}
.hd_c00240{height:51.348115pt;}
.hc_c00240{height:52.281717pt;}
.h9_c00240{height:53.215319pt;}
.hb_c00240{height:54.148921pt;}
.hf_c00240{height:55.082524pt;}
.ha_c00240{height:56.949728pt;}
.h6_c00240{height:57.883330pt;}
.h10_c00240{height:58.816932pt;}
.h8_c00240{height:59.750534pt;}
.h5_c00240{height:61.580593pt;}
.h7_c00240{height:62.551340pt;}
.h4_c00240{height:63.446672pt;}
.he_c00240{height:63.484942pt;}
.h3_c00240{height:65.312750pt;}
.h2_c00240{height:71.844025pt;}
.h1_c00240{height:550.000000pt;}
.h0_c00240{height:550.266667pt;}
.w0_c00240{width:319.200000pt;}
.w1_c00240{width:319.333333pt;}
.x0_c00240{left:0.000000pt;}
.x54_c00240{left:16.535307pt;}
.x74_c00240{left:20.663915pt;}
.x4e_c00240{left:22.302869pt;}
.x10_c00240{left:23.857679pt;}
.x3_c00240{left:25.014693pt;}
.x42_c00240{left:31.470763pt;}
.xa_c00240{left:33.869583pt;}
.x78_c00240{left:34.904800pt;}
.x18_c00240{left:36.061333pt;}
.x47_c00240{left:38.392981pt;}
.x4b_c00240{left:42.081920pt;}
.x1d_c00240{left:44.282827pt;}
.x11_c00240{left:46.906705pt;}
.x43_c00240{left:49.392149pt;}
.x79_c00240{left:51.655701pt;}
.x4_c00240{left:54.252093pt;}
.x2c_c00240{left:57.003392pt;}
.x62_c00240{left:58.118176pt;}
.x27_c00240{left:61.217525pt;}
.x75_c00240{left:63.119093pt;}
.x32_c00240{left:65.011403pt;}
.x5_c00240{left:66.153908pt;}
.x3c_c00240{left:68.871979pt;}
.xb_c00240{left:70.446599pt;}
.x76_c00240{left:71.377419pt;}
.x63_c00240{left:73.082592pt;}
.x67_c00240{left:74.160128pt;}
.x48_c00240{left:75.428096pt;}
.x5c_c00240{left:77.060363pt;}
.x23_c00240{left:79.579957pt;}
.x2d_c00240{left:81.620875pt;}
.x58_c00240{left:82.764843pt;}
.x55_c00240{left:84.224640pt;}
.x6_c00240{left:87.166652pt;}
.x44_c00240{left:88.560000pt;}
.x28_c00240{left:91.705525pt;}
.x38_c00240{left:92.892427pt;}
.x56_c00240{left:95.569973pt;}
.x50_c00240{left:97.486933pt;}
.xc_c00240{left:100.338603pt;}
.x5a_c00240{left:102.370635pt;}
.x12_c00240{left:104.250687pt;}
.x7a_c00240{left:108.493579pt;}
.x19_c00240{left:109.572000pt;}
.x6c_c00240{left:111.240480pt;}
.x5d_c00240{left:112.426656pt;}
.x3d_c00240{left:113.745515pt;}
.x65_c00240{left:115.110005pt;}
.x49_c00240{left:116.050091pt;}
.x57_c00240{left:117.305973pt;}
.x24_c00240{left:121.463957pt;}
.x13_c00240{left:126.615855pt;}
.x3e_c00240{left:128.760672pt;}
.xd_c00240{left:130.064008pt;}
.x5e_c00240{left:131.853941pt;}
.x2e_c00240{left:133.453077pt;}
.x1a_c00240{left:138.604000pt;}
.x69_c00240{left:140.264288pt;}
.x1_c00240{left:142.010667pt;}
.x4c_c00240{left:144.647488pt;}
.x45_c00240{left:146.419840pt;}
.x5f_c00240{left:148.919296pt;}
.x14_c00240{left:151.801804pt;}
.x29_c00240{left:152.757525pt;}
.x64_c00240{left:153.975168pt;}
.x33_c00240{left:155.299403pt;}
.x6f_c00240{left:156.790699pt;}
.x7_c00240{left:163.199580pt;}
.x1b_c00240{left:164.276000pt;}
.x2f_c00240{left:167.052811pt;}
.x34_c00240{left:169.804736pt;}
.x59_c00240{left:172.423339pt;}
.x2a_c00240{left:175.282859pt;}
.x1e_c00240{left:176.204800pt;}
.xe_c00240{left:179.330051pt;}
.x70_c00240{left:181.604128pt;}
.x8_c00240{left:182.879535pt;}
.x3f_c00240{left:186.211083pt;}
.x39_c00240{left:187.728576pt;}
.xf_c00240{left:191.006165pt;}
.x1f_c00240{left:194.543893pt;}
.x25_c00240{left:196.689291pt;}
.x71_c00240{left:200.585675pt;}
.x60_c00240{left:201.724149pt;}
.x6d_c00240{left:203.297611pt;}
.x6a_c00240{left:205.399637pt;}
.x40_c00240{left:207.469344pt;}
.x46_c00240{left:209.277995pt;}
.x20_c00240{left:212.225589pt;}
.x30_c00240{left:214.931840pt;}
.x77_c00240{left:215.829995pt;}
.x35_c00240{left:217.819403pt;}
.x26_c00240{left:220.355957pt;}
.x51_c00240{left:222.414283pt;}
.x3a_c00240{left:223.983200pt;}
.x5b_c00240{left:227.992459pt;}
.x15_c00240{left:229.963219pt;}
.x68_c00240{left:233.029088pt;}
.x66_c00240{left:234.661547pt;}
.x6e_c00240{left:237.267755pt;}
.x1c_c00240{left:240.053333pt;}
.x52_c00240{left:242.583371pt;}
.x36_c00240{left:244.604736pt;}
.x16_c00240{left:246.757420pt;}
.x3b_c00240{left:248.010261pt;}
.x2b_c00240{left:253.009525pt;}
.x4f_c00240{left:254.432203pt;}
.x9_c00240{left:255.604465pt;}
.x31_c00240{left:257.105824pt;}
.x21_c00240{left:260.095531pt;}
.x41_c00240{left:261.066965pt;}
.x61_c00240{left:262.689141pt;}
.x6b_c00240{left:265.104832pt;}
.x72_c00240{left:266.676629pt;}
.x2_c00240{left:268.179039pt;}
.x22_c00240{left:271.129920pt;}
.x4a_c00240{left:272.902528pt;}
.x53_c00240{left:274.046827pt;}
.x73_c00240{left:275.353824pt;}
.x17_c00240{left:279.143372pt;}
.x37_c00240{left:281.559403pt;}
.x4d_c00240{left:285.018987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00241 {
    display:none;
  }
  .loading-indicator_c00241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00241 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00241 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00241" -> "#page-container .classname_c00241")
 */
.pf_c00241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00241 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00241 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00241 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00241 {overflow:visible;}
  }
}
.c_c00241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00241 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00241:after { /* webkit #35443 */
  content: '';
}
.t_c00241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00241 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00241 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00241 { /* info for Javascript */
  display:none;
}
.l_c00241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00241:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00241 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00241.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00241{transform:matrix(0.041051,-0.000862,0.005249,0.249945,0,0);-ms-transform:matrix(0.041051,-0.000862,0.005249,0.249945,0,0);-webkit-transform:matrix(0.041051,-0.000862,0.005249,0.249945,0,0);}
.mb3_c00241{transform:matrix(0.056752,-0.001192,0.005249,0.249945,0,0);-ms-transform:matrix(0.056752,-0.001192,0.005249,0.249945,0,0);-webkit-transform:matrix(0.056752,-0.001192,0.005249,0.249945,0,0);}
.m60_c00241{transform:matrix(0.095410,-0.002767,0.007247,0.249895,0,0);-ms-transform:matrix(0.095410,-0.002767,0.007247,0.249895,0,0);-webkit-transform:matrix(0.095410,-0.002767,0.007247,0.249895,0,0);}
.m4d_c00241{transform:matrix(0.115524,-0.002195,0.004749,0.249955,0,0);-ms-transform:matrix(0.115524,-0.002195,0.004749,0.249955,0,0);-webkit-transform:matrix(0.115524,-0.002195,0.004749,0.249955,0,0);}
.mb2_c00241{transform:matrix(0.138609,-0.002911,0.005249,0.249945,0,0);-ms-transform:matrix(0.138609,-0.002911,0.005249,0.249945,0,0);-webkit-transform:matrix(0.138609,-0.002911,0.005249,0.249945,0,0);}
.m19_c00241{transform:matrix(0.141268,-0.003249,0.005748,0.249934,0,0);-ms-transform:matrix(0.141268,-0.003249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.141268,-0.003249,0.005748,0.249934,0,0);}
.m5e_c00241{transform:matrix(0.141675,-0.004109,0.007247,0.249895,0,0);-ms-transform:matrix(0.141675,-0.004109,0.007247,0.249895,0,0);-webkit-transform:matrix(0.141675,-0.004109,0.007247,0.249895,0,0);}
.maa_c00241{transform:matrix(0.146693,-0.003081,0.005249,0.249945,0,0);-ms-transform:matrix(0.146693,-0.003081,0.005249,0.249945,0,0);-webkit-transform:matrix(0.146693,-0.003081,0.005249,0.249945,0,0);}
.ma1_c00241{transform:matrix(0.146973,-0.003086,0.005249,0.249945,0,0);-ms-transform:matrix(0.146973,-0.003086,0.005249,0.249945,0,0);-webkit-transform:matrix(0.146973,-0.003086,0.005249,0.249945,0,0);}
.m6_c00241{transform:matrix(0.151285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151285,0.000000,0.000000,0.250000,0,0);}
.ma7_c00241{transform:matrix(0.152001,-0.003192,0.005249,0.249945,0,0);-ms-transform:matrix(0.152001,-0.003192,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152001,-0.003192,0.005249,0.249945,0,0);}
.ma4_c00241{transform:matrix(0.152176,-0.003196,0.005249,0.249945,0,0);-ms-transform:matrix(0.152176,-0.003196,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152176,-0.003196,0.005249,0.249945,0,0);}
.m84_c00241{transform:matrix(0.152880,-0.003516,0.005748,0.249934,0,0);-ms-transform:matrix(0.152880,-0.003516,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152880,-0.003516,0.005748,0.249934,0,0);}
.mb9_c00241{transform:matrix(0.152921,-0.003211,0.005249,0.249945,0,0);-ms-transform:matrix(0.152921,-0.003211,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152921,-0.003211,0.005249,0.249945,0,0);}
.m26_c00241{transform:matrix(0.153449,-0.003529,0.005748,0.249934,0,0);-ms-transform:matrix(0.153449,-0.003529,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153449,-0.003529,0.005748,0.249934,0,0);}
.m2_c00241{transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);}
.meb_c00241{transform:matrix(0.153861,-0.003231,0.005249,0.249945,0,0);-ms-transform:matrix(0.153861,-0.003231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.153861,-0.003231,0.005249,0.249945,0,0);}
.me9_c00241{transform:matrix(0.154326,-0.003241,0.005249,0.249945,0,0);-ms-transform:matrix(0.154326,-0.003241,0.005249,0.249945,0,0);-webkit-transform:matrix(0.154326,-0.003241,0.005249,0.249945,0,0);}
.mb_c00241{transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00241{transform:matrix(0.155525,-0.004510,0.007247,0.249895,0,0);-ms-transform:matrix(0.155525,-0.004510,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155525,-0.004510,0.007247,0.249895,0,0);}
.me_c00241{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.mae_c00241{transform:matrix(0.156785,-0.003292,0.005249,0.249945,0,0);-ms-transform:matrix(0.156785,-0.003292,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156785,-0.003292,0.005249,0.249945,0,0);}
.m25_c00241{transform:matrix(0.158053,-0.003635,0.005748,0.249934,0,0);-ms-transform:matrix(0.158053,-0.003635,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158053,-0.003635,0.005748,0.249934,0,0);}
.me8_c00241{transform:matrix(0.159480,-0.003349,0.005249,0.249945,0,0);-ms-transform:matrix(0.159480,-0.003349,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159480,-0.003349,0.005249,0.249945,0,0);}
.m89_c00241{transform:matrix(0.159993,-0.003680,0.005748,0.249934,0,0);-ms-transform:matrix(0.159993,-0.003680,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159993,-0.003680,0.005748,0.249934,0,0);}
.m96_c00241{transform:matrix(0.160130,-0.003363,0.005249,0.249945,0,0);-ms-transform:matrix(0.160130,-0.003363,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160130,-0.003363,0.005249,0.249945,0,0);}
.mc7_c00241{transform:matrix(0.161929,-0.003401,0.005249,0.249945,0,0);-ms-transform:matrix(0.161929,-0.003401,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161929,-0.003401,0.005249,0.249945,0,0);}
.m22_c00241{transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);-ms-transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);}
.m1a_c00241{transform:matrix(0.165526,-0.003807,0.005748,0.249934,0,0);-ms-transform:matrix(0.165526,-0.003807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165526,-0.003807,0.005748,0.249934,0,0);}
.ma5_c00241{transform:matrix(0.166408,-0.003495,0.005249,0.249945,0,0);-ms-transform:matrix(0.166408,-0.003495,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166408,-0.003495,0.005249,0.249945,0,0);}
.m32_c00241{transform:matrix(0.166850,-0.003671,0.005499,0.249940,0,0);-ms-transform:matrix(0.166850,-0.003671,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166850,-0.003671,0.005499,0.249940,0,0);}
.maf_c00241{transform:matrix(0.167053,-0.003508,0.005249,0.249945,0,0);-ms-transform:matrix(0.167053,-0.003508,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167053,-0.003508,0.005249,0.249945,0,0);}
.ma3_c00241{transform:matrix(0.167823,-0.003524,0.005249,0.249945,0,0);-ms-transform:matrix(0.167823,-0.003524,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167823,-0.003524,0.005249,0.249945,0,0);}
.m1e_c00241{transform:matrix(0.168535,-0.003876,0.005748,0.249934,0,0);-ms-transform:matrix(0.168535,-0.003876,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168535,-0.003876,0.005748,0.249934,0,0);}
.m2c_c00241{transform:matrix(0.168541,-0.004045,0.005998,0.249928,0,0);-ms-transform:matrix(0.168541,-0.004045,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168541,-0.004045,0.005998,0.249928,0,0);}
.m8_c00241{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);}
.mb1_c00241{transform:matrix(0.170487,-0.003580,0.005249,0.249945,0,0);-ms-transform:matrix(0.170487,-0.003580,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170487,-0.003580,0.005249,0.249945,0,0);}
.mc9_c00241{transform:matrix(0.170762,-0.003586,0.005249,0.249945,0,0);-ms-transform:matrix(0.170762,-0.003586,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170762,-0.003586,0.005249,0.249945,0,0);}
.mac_c00241{transform:matrix(0.170897,-0.003589,0.005249,0.249945,0,0);-ms-transform:matrix(0.170897,-0.003589,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170897,-0.003589,0.005249,0.249945,0,0);}
.m1f_c00241{transform:matrix(0.171430,-0.003943,0.005748,0.249934,0,0);-ms-transform:matrix(0.171430,-0.003943,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171430,-0.003943,0.005748,0.249934,0,0);}
.mbb_c00241{transform:matrix(0.171487,-0.003601,0.005249,0.249945,0,0);-ms-transform:matrix(0.171487,-0.003601,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171487,-0.003601,0.005249,0.249945,0,0);}
.mbc_c00241{transform:matrix(0.171627,-0.003604,0.005249,0.249945,0,0);-ms-transform:matrix(0.171627,-0.003604,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171627,-0.003604,0.005249,0.249945,0,0);}
.ma9_c00241{transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);-ms-transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171767,-0.003607,0.005249,0.249945,0,0);}
.mbe_c00241{transform:matrix(0.171777,-0.003607,0.005249,0.249945,0,0);-ms-transform:matrix(0.171777,-0.003607,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171777,-0.003607,0.005249,0.249945,0,0);}
.mc6_c00241{transform:matrix(0.172297,-0.003618,0.005249,0.249945,0,0);-ms-transform:matrix(0.172297,-0.003618,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172297,-0.003618,0.005249,0.249945,0,0);}
.m9c_c00241{transform:matrix(0.172522,-0.003623,0.005249,0.249945,0,0);-ms-transform:matrix(0.172522,-0.003623,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172522,-0.003623,0.005249,0.249945,0,0);}
.m1b_c00241{transform:matrix(0.172669,-0.003971,0.005748,0.249934,0,0);-ms-transform:matrix(0.172669,-0.003971,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172669,-0.003971,0.005748,0.249934,0,0);}
.m69_c00241{transform:matrix(0.172757,-0.004837,0.006997,0.249902,0,0);-ms-transform:matrix(0.172757,-0.004837,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172757,-0.004837,0.006997,0.249902,0,0);}
.m5_c00241{transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);}
.mdc_c00241{transform:matrix(0.173367,-0.003641,0.005249,0.249945,0,0);-ms-transform:matrix(0.173367,-0.003641,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173367,-0.003641,0.005249,0.249945,0,0);}
.m43_c00241{transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);-ms-transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173974,-0.003305,0.004749,0.249955,0,0);}
.m18_c00241{transform:matrix(0.174049,-0.004003,0.005748,0.249934,0,0);-ms-transform:matrix(0.174049,-0.004003,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174049,-0.004003,0.005748,0.249934,0,0);}
.m77_c00241{transform:matrix(0.174886,-0.004897,0.006997,0.249902,0,0);-ms-transform:matrix(0.174886,-0.004897,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174886,-0.004897,0.006997,0.249902,0,0);}
.mcb_c00241{transform:matrix(0.176016,-0.003696,0.005249,0.249945,0,0);-ms-transform:matrix(0.176016,-0.003696,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176016,-0.003696,0.005249,0.249945,0,0);}
.m9b_c00241{transform:matrix(0.176111,-0.003698,0.005249,0.249945,0,0);-ms-transform:matrix(0.176111,-0.003698,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176111,-0.003698,0.005249,0.249945,0,0);}
.m82_c00241{transform:matrix(0.176258,-0.004054,0.005748,0.249934,0,0);-ms-transform:matrix(0.176258,-0.004054,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176258,-0.004054,0.005748,0.249934,0,0);}
.mce_c00241{transform:matrix(0.176296,-0.003702,0.005249,0.249945,0,0);-ms-transform:matrix(0.176296,-0.003702,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176296,-0.003702,0.005249,0.249945,0,0);}
.m80_c00241{transform:matrix(0.176451,-0.004941,0.006997,0.249902,0,0);-ms-transform:matrix(0.176451,-0.004941,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176451,-0.004941,0.006997,0.249902,0,0);}
.m90_c00241{transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);-ms-transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176881,-0.003715,0.005249,0.249945,0,0);}
.me5_c00241{transform:matrix(0.177206,-0.003721,0.005249,0.249945,0,0);-ms-transform:matrix(0.177206,-0.003721,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177206,-0.003721,0.005249,0.249945,0,0);}
.m1_c00241{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.177713,-0.004087,0.005748,0.249934,0,0);-ms-transform:matrix(0.177713,-0.004087,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177713,-0.004087,0.005748,0.249934,0,0);}
.md9_c00241{transform:matrix(0.177771,-0.003733,0.005249,0.249945,0,0);-ms-transform:matrix(0.177771,-0.003733,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177771,-0.003733,0.005249,0.249945,0,0);}
.m7c_c00241{transform:matrix(0.178265,-0.004991,0.006997,0.249902,0,0);-ms-transform:matrix(0.178265,-0.004991,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178265,-0.004991,0.006997,0.249902,0,0);}
.mef_c00241{transform:matrix(0.178526,-0.003749,0.005249,0.249945,0,0);-ms-transform:matrix(0.178526,-0.003749,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178526,-0.003749,0.005249,0.249945,0,0);}
.m9e_c00241{transform:matrix(0.179001,-0.003759,0.005249,0.249945,0,0);-ms-transform:matrix(0.179001,-0.003759,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179001,-0.003759,0.005249,0.249945,0,0);}
.me7_c00241{transform:matrix(0.179275,-0.003765,0.005249,0.249945,0,0);-ms-transform:matrix(0.179275,-0.003765,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179275,-0.003765,0.005249,0.249945,0,0);}
.mad_c00241{transform:matrix(0.179315,-0.003766,0.005249,0.249945,0,0);-ms-transform:matrix(0.179315,-0.003766,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179315,-0.003766,0.005249,0.249945,0,0);}
.m41_c00241{transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);-ms-transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179573,-0.003412,0.004749,0.249955,0,0);}
.m29_c00241{transform:matrix(0.179613,-0.004311,0.005998,0.249928,0,0);-ms-transform:matrix(0.179613,-0.004311,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179613,-0.004311,0.005998,0.249928,0,0);}
.ma2_c00241{transform:matrix(0.179725,-0.003774,0.005249,0.249945,0,0);-ms-transform:matrix(0.179725,-0.003774,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179725,-0.003774,0.005249,0.249945,0,0);}
.mf4_c00241{transform:matrix(0.179965,-0.003779,0.005249,0.249945,0,0);-ms-transform:matrix(0.179965,-0.003779,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179965,-0.003779,0.005249,0.249945,0,0);}
.mb5_c00241{transform:matrix(0.180000,-0.003780,0.005249,0.249945,0,0);-ms-transform:matrix(0.180000,-0.003780,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180000,-0.003780,0.005249,0.249945,0,0);}
.m94_c00241{transform:matrix(0.180070,-0.003781,0.005249,0.249945,0,0);-ms-transform:matrix(0.180070,-0.003781,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180070,-0.003781,0.005249,0.249945,0,0);}
.mab_c00241{transform:matrix(0.180265,-0.003786,0.005249,0.249945,0,0);-ms-transform:matrix(0.180265,-0.003786,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180265,-0.003786,0.005249,0.249945,0,0);}
.m5d_c00241{transform:matrix(0.180884,-0.005246,0.007247,0.249895,0,0);-ms-transform:matrix(0.180884,-0.005246,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180884,-0.005246,0.007247,0.249895,0,0);}
.mc2_c00241{transform:matrix(0.181360,-0.003809,0.005249,0.249945,0,0);-ms-transform:matrix(0.181360,-0.003809,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181360,-0.003809,0.005249,0.249945,0,0);}
.m59_c00241{transform:matrix(0.181519,-0.005264,0.007247,0.249895,0,0);-ms-transform:matrix(0.181519,-0.005264,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181519,-0.005264,0.007247,0.249895,0,0);}
.m27_c00241{transform:matrix(0.181638,-0.004359,0.005998,0.249928,0,0);-ms-transform:matrix(0.181638,-0.004359,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181638,-0.004359,0.005998,0.249928,0,0);}
.m3_c00241{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m6b_c00241{transform:matrix(0.182568,-0.005112,0.006997,0.249902,0,0);-ms-transform:matrix(0.182568,-0.005112,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182568,-0.005112,0.006997,0.249902,0,0);}
.m61_c00241{transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);-ms-transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);}
.m5c_c00241{transform:matrix(0.183013,-0.005307,0.007247,0.249895,0,0);-ms-transform:matrix(0.183013,-0.005307,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183013,-0.005307,0.007247,0.249895,0,0);}
.m3b_c00241{transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-ms-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);}
.m88_c00241{transform:matrix(0.183661,-0.004224,0.005748,0.249934,0,0);-ms-transform:matrix(0.183661,-0.004224,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183661,-0.004224,0.005748,0.249934,0,0);}
.m24_c00241{transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-ms-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);}
.m6d_c00241{transform:matrix(0.184228,-0.005158,0.006997,0.249902,0,0);-ms-transform:matrix(0.184228,-0.005158,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184228,-0.005158,0.006997,0.249902,0,0);}
.m9_c00241{transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.mb0_c00241{transform:matrix(0.185904,-0.003904,0.005249,0.249945,0,0);-ms-transform:matrix(0.185904,-0.003904,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185904,-0.003904,0.005249,0.249945,0,0);}
.mf0_c00241{transform:matrix(0.186159,-0.003909,0.005249,0.249945,0,0);-ms-transform:matrix(0.186159,-0.003909,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186159,-0.003909,0.005249,0.249945,0,0);}
.mdf_c00241{transform:matrix(0.186569,-0.003918,0.005249,0.249945,0,0);-ms-transform:matrix(0.186569,-0.003918,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186569,-0.003918,0.005249,0.249945,0,0);}
.mee_c00241{transform:matrix(0.186614,-0.003919,0.005249,0.249945,0,0);-ms-transform:matrix(0.186614,-0.003919,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186614,-0.003919,0.005249,0.249945,0,0);}
.m2a_c00241{transform:matrix(0.186896,-0.004486,0.005998,0.249928,0,0);-ms-transform:matrix(0.186896,-0.004486,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186896,-0.004486,0.005998,0.249928,0,0);}
.m16_c00241{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.187281,-0.003558,0.004749,0.249955,0,0);-ms-transform:matrix(0.187281,-0.003558,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187281,-0.003558,0.004749,0.249955,0,0);}
.m42_c00241{transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);-ms-transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);}
.ma6_c00241{transform:matrix(0.187799,-0.003944,0.005249,0.249945,0,0);-ms-transform:matrix(0.187799,-0.003944,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187799,-0.003944,0.005249,0.249945,0,0);}
.mf3_c00241{transform:matrix(0.188204,-0.003952,0.005249,0.249945,0,0);-ms-transform:matrix(0.188204,-0.003952,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188204,-0.003952,0.005249,0.249945,0,0);}
.m5a_c00241{transform:matrix(0.188221,-0.005458,0.007247,0.249895,0,0);-ms-transform:matrix(0.188221,-0.005458,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188221,-0.005458,0.007247,0.249895,0,0);}
.mb4_c00241{transform:matrix(0.188528,-0.003959,0.005249,0.249945,0,0);-ms-transform:matrix(0.188528,-0.003959,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188528,-0.003959,0.005249,0.249945,0,0);}
.m0_c00241{transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);}
.m65_c00241{transform:matrix(0.188876,-0.005289,0.006997,0.249902,0,0);-ms-transform:matrix(0.188876,-0.005289,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188876,-0.005289,0.006997,0.249902,0,0);}
.m23_c00241{transform:matrix(0.189125,-0.004350,0.005748,0.249934,0,0);-ms-transform:matrix(0.189125,-0.004350,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189125,-0.004350,0.005748,0.249934,0,0);}
.m51_c00241{transform:matrix(0.189270,-0.004542,0.005998,0.249928,0,0);-ms-transform:matrix(0.189270,-0.004542,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189270,-0.004542,0.005998,0.249928,0,0);}
.mc8_c00241{transform:matrix(0.189818,-0.003986,0.005249,0.249945,0,0);-ms-transform:matrix(0.189818,-0.003986,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189818,-0.003986,0.005249,0.249945,0,0);}
.m7e_c00241{transform:matrix(0.190205,-0.005326,0.006997,0.249902,0,0);-ms-transform:matrix(0.190205,-0.005326,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190205,-0.005326,0.006997,0.249902,0,0);}
.m75_c00241{transform:matrix(0.190265,-0.005327,0.006997,0.249902,0,0);-ms-transform:matrix(0.190265,-0.005327,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190265,-0.005327,0.006997,0.249902,0,0);}
.m99_c00241{transform:matrix(0.190288,-0.003996,0.005249,0.249945,0,0);-ms-transform:matrix(0.190288,-0.003996,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190288,-0.003996,0.005249,0.249945,0,0);}
.mc1_c00241{transform:matrix(0.190428,-0.003999,0.005249,0.249945,0,0);-ms-transform:matrix(0.190428,-0.003999,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190428,-0.003999,0.005249,0.249945,0,0);}
.m3e_c00241{transform:matrix(0.190516,-0.003620,0.004749,0.249955,0,0);-ms-transform:matrix(0.190516,-0.003620,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190516,-0.003620,0.004749,0.249955,0,0);}
.m81_c00241{transform:matrix(0.190640,-0.005338,0.006997,0.249902,0,0);-ms-transform:matrix(0.190640,-0.005338,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190640,-0.005338,0.006997,0.249902,0,0);}
.m20_c00241{transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);-ms-transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);}
.mca_c00241{transform:matrix(0.190843,-0.004008,0.005249,0.249945,0,0);-ms-transform:matrix(0.190843,-0.004008,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190843,-0.004008,0.005249,0.249945,0,0);}
.ma8_c00241{transform:matrix(0.191328,-0.004018,0.005249,0.249945,0,0);-ms-transform:matrix(0.191328,-0.004018,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191328,-0.004018,0.005249,0.249945,0,0);}
.md7_c00241{transform:matrix(0.191433,-0.004020,0.005249,0.249945,0,0);-ms-transform:matrix(0.191433,-0.004020,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191433,-0.004020,0.005249,0.249945,0,0);}
.m1c_c00241{transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);-ms-transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);}
.mb6_c00241{transform:matrix(0.191653,-0.004025,0.005249,0.249945,0,0);-ms-transform:matrix(0.191653,-0.004025,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191653,-0.004025,0.005249,0.249945,0,0);}
.m34_c00241{transform:matrix(0.191869,-0.004221,0.005499,0.249940,0,0);-ms-transform:matrix(0.191869,-0.004221,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191869,-0.004221,0.005499,0.249940,0,0);}
.m3d_c00241{transform:matrix(0.192080,-0.003650,0.004749,0.249955,0,0);-ms-transform:matrix(0.192080,-0.003650,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192080,-0.003650,0.004749,0.249955,0,0);}
.m74_c00241{transform:matrix(0.192949,-0.005403,0.006997,0.249902,0,0);-ms-transform:matrix(0.192949,-0.005403,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192949,-0.005403,0.006997,0.249902,0,0);}
.mec_c00241{transform:matrix(0.193187,-0.004057,0.005249,0.249945,0,0);-ms-transform:matrix(0.193187,-0.004057,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193187,-0.004057,0.005249,0.249945,0,0);}
.m45_c00241{transform:matrix(0.193525,-0.003677,0.004749,0.249955,0,0);-ms-transform:matrix(0.193525,-0.003677,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193525,-0.003677,0.004749,0.249955,0,0);}
.m8d_c00241{transform:matrix(0.193957,-0.004073,0.005249,0.249945,0,0);-ms-transform:matrix(0.193957,-0.004073,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193957,-0.004073,0.005249,0.249945,0,0);}
.mc_c00241{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.md2_c00241{transform:matrix(0.195022,-0.004095,0.005249,0.249945,0,0);-ms-transform:matrix(0.195022,-0.004095,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195022,-0.004095,0.005249,0.249945,0,0);}
.m44_c00241{transform:matrix(0.195245,-0.003710,0.004749,0.249955,0,0);-ms-transform:matrix(0.195245,-0.003710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195245,-0.003710,0.004749,0.249955,0,0);}
.m83_c00241{transform:matrix(0.195408,-0.004494,0.005748,0.249934,0,0);-ms-transform:matrix(0.195408,-0.004494,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195408,-0.004494,0.005748,0.249934,0,0);}
.m2e_c00241{transform:matrix(0.196922,-0.004332,0.005499,0.249940,0,0);-ms-transform:matrix(0.196922,-0.004332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196922,-0.004332,0.005499,0.249940,0,0);}
.m5f_c00241{transform:matrix(0.196982,-0.005712,0.007247,0.249895,0,0);-ms-transform:matrix(0.196982,-0.005712,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196982,-0.005712,0.007247,0.249895,0,0);}
.ma_c00241{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m95_c00241{transform:matrix(0.197172,-0.004141,0.005249,0.249945,0,0);-ms-transform:matrix(0.197172,-0.004141,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197172,-0.004141,0.005249,0.249945,0,0);}
.mda_c00241{transform:matrix(0.197331,-0.004144,0.005249,0.249945,0,0);-ms-transform:matrix(0.197331,-0.004144,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197331,-0.004144,0.005249,0.249945,0,0);}
.ma0_c00241{transform:matrix(0.197526,-0.004148,0.005249,0.249945,0,0);-ms-transform:matrix(0.197526,-0.004148,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197526,-0.004148,0.005249,0.249945,0,0);}
.mbd_c00241{transform:matrix(0.198281,-0.004164,0.005249,0.249945,0,0);-ms-transform:matrix(0.198281,-0.004164,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198281,-0.004164,0.005249,0.249945,0,0);}
.m40_c00241{transform:matrix(0.198664,-0.003775,0.004749,0.249955,0,0);-ms-transform:matrix(0.198664,-0.003775,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198664,-0.003775,0.004749,0.249955,0,0);}
.md0_c00241{transform:matrix(0.198866,-0.004176,0.005249,0.249945,0,0);-ms-transform:matrix(0.198866,-0.004176,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198866,-0.004176,0.005249,0.249945,0,0);}
.m78_c00241{transform:matrix(0.199107,-0.005575,0.006997,0.249902,0,0);-ms-transform:matrix(0.199107,-0.005575,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199107,-0.005575,0.006997,0.249902,0,0);}
.m15_c00241{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.mf6_c00241{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m79_c00241{transform:matrix(0.199837,-0.005595,0.006997,0.249902,0,0);-ms-transform:matrix(0.199837,-0.005595,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199837,-0.005595,0.006997,0.249902,0,0);}
.mcc_c00241{transform:matrix(0.200466,-0.004210,0.005249,0.249945,0,0);-ms-transform:matrix(0.200466,-0.004210,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200466,-0.004210,0.005249,0.249945,0,0);}
.md6_c00241{transform:matrix(0.200916,-0.004219,0.005249,0.249945,0,0);-ms-transform:matrix(0.200916,-0.004219,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200916,-0.004219,0.005249,0.249945,0,0);}
.m9f_c00241{transform:matrix(0.201051,-0.004222,0.005249,0.249945,0,0);-ms-transform:matrix(0.201051,-0.004222,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201051,-0.004222,0.005249,0.249945,0,0);}
.mcf_c00241{transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);-ms-transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);}
.me6_c00241{transform:matrix(0.201266,-0.004227,0.005249,0.249945,0,0);-ms-transform:matrix(0.201266,-0.004227,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201266,-0.004227,0.005249,0.249945,0,0);}
.m12_c00241{transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);}
.mea_c00241{transform:matrix(0.202145,-0.004245,0.005249,0.249945,0,0);-ms-transform:matrix(0.202145,-0.004245,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202145,-0.004245,0.005249,0.249945,0,0);}
.me3_c00241{transform:matrix(0.202940,-0.004262,0.005249,0.249945,0,0);-ms-transform:matrix(0.202940,-0.004262,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202940,-0.004262,0.005249,0.249945,0,0);}
.m54_c00241{transform:matrix(0.202952,-0.004871,0.005998,0.249928,0,0);-ms-transform:matrix(0.202952,-0.004871,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202952,-0.004871,0.005998,0.249928,0,0);}
.m63_c00241{transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);-ms-transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202965,-0.005683,0.006997,0.249902,0,0);}
.m9d_c00241{transform:matrix(0.203365,-0.004271,0.005249,0.249945,0,0);-ms-transform:matrix(0.203365,-0.004271,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203365,-0.004271,0.005249,0.249945,0,0);}
.m6a_c00241{transform:matrix(0.203505,-0.005698,0.006997,0.249902,0,0);-ms-transform:matrix(0.203505,-0.005698,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203505,-0.005698,0.006997,0.249902,0,0);}
.m56_c00241{transform:matrix(0.203601,-0.004886,0.005998,0.249928,0,0);-ms-transform:matrix(0.203601,-0.004886,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203601,-0.004886,0.005998,0.249928,0,0);}
.m2f_c00241{transform:matrix(0.203631,-0.004480,0.005499,0.249940,0,0);-ms-transform:matrix(0.203631,-0.004480,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203631,-0.004480,0.005499,0.249940,0,0);}
.mc4_c00241{transform:matrix(0.204395,-0.004292,0.005249,0.249945,0,0);-ms-transform:matrix(0.204395,-0.004292,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204395,-0.004292,0.005249,0.249945,0,0);}
.m62_c00241{transform:matrix(0.204575,-0.005728,0.006997,0.249902,0,0);-ms-transform:matrix(0.204575,-0.005728,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204575,-0.005728,0.006997,0.249902,0,0);}
.mf_c00241{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{transform:matrix(0.205769,-0.005762,0.006997,0.249902,0,0);-ms-transform:matrix(0.205769,-0.005762,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205769,-0.005762,0.006997,0.249902,0,0);}
.m8c_c00241{transform:matrix(0.205985,-0.004326,0.005249,0.249945,0,0);-ms-transform:matrix(0.205985,-0.004326,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205985,-0.004326,0.005249,0.249945,0,0);}
.m97_c00241{transform:matrix(0.206934,-0.004346,0.005249,0.249945,0,0);-ms-transform:matrix(0.206934,-0.004346,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206934,-0.004346,0.005249,0.249945,0,0);}
.m8b_c00241{transform:matrix(0.206984,-0.004347,0.005249,0.249945,0,0);-ms-transform:matrix(0.206984,-0.004347,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206984,-0.004347,0.005249,0.249945,0,0);}
.m6f_c00241{transform:matrix(0.207829,-0.005819,0.006997,0.249902,0,0);-ms-transform:matrix(0.207829,-0.005819,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207829,-0.005819,0.006997,0.249902,0,0);}
.m70_c00241{transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);-ms-transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);}
.m8a_c00241{transform:matrix(0.208365,-0.004792,0.005748,0.249934,0,0);-ms-transform:matrix(0.208365,-0.004792,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208365,-0.004792,0.005748,0.249934,0,0);}
.mba_c00241{transform:matrix(0.208519,-0.004379,0.005249,0.249945,0,0);-ms-transform:matrix(0.208519,-0.004379,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208519,-0.004379,0.005249,0.249945,0,0);}
.mc5_c00241{transform:matrix(0.208524,-0.004379,0.005249,0.249945,0,0);-ms-transform:matrix(0.208524,-0.004379,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208524,-0.004379,0.005249,0.249945,0,0);}
.m33_c00241{transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);-ms-transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);}
.m4b_c00241{transform:matrix(0.209677,-0.003984,0.004749,0.249955,0,0);-ms-transform:matrix(0.209677,-0.003984,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209677,-0.003984,0.004749,0.249955,0,0);}
.mf2_c00241{transform:matrix(0.209969,-0.004409,0.005249,0.249945,0,0);-ms-transform:matrix(0.209969,-0.004409,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209969,-0.004409,0.005249,0.249945,0,0);}
.m46_c00241{transform:matrix(0.210167,-0.003993,0.004749,0.249955,0,0);-ms-transform:matrix(0.210167,-0.003993,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210167,-0.003993,0.004749,0.249955,0,0);}
.m35_c00241{transform:matrix(0.210304,-0.004627,0.005499,0.249940,0,0);-ms-transform:matrix(0.210304,-0.004627,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210304,-0.004627,0.005499,0.249940,0,0);}
.md_c00241{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m4a_c00241{transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-ms-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);}
.m98_c00241{transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);-ms-transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);}
.m6e_c00241{transform:matrix(0.211072,-0.005910,0.006997,0.249902,0,0);-ms-transform:matrix(0.211072,-0.005910,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211072,-0.005910,0.006997,0.249902,0,0);}
.mbf_c00241{transform:matrix(0.211543,-0.004442,0.005249,0.249945,0,0);-ms-transform:matrix(0.211543,-0.004442,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211543,-0.004442,0.005249,0.249945,0,0);}
.m7f_c00241{transform:matrix(0.211842,-0.005932,0.006997,0.249902,0,0);-ms-transform:matrix(0.211842,-0.005932,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211842,-0.005932,0.006997,0.249902,0,0);}
.m4e_c00241{transform:matrix(0.213307,-0.004053,0.004749,0.249955,0,0);-ms-transform:matrix(0.213307,-0.004053,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213307,-0.004053,0.004749,0.249955,0,0);}
.mf1_c00241{transform:matrix(0.213498,-0.004483,0.005249,0.249945,0,0);-ms-transform:matrix(0.213498,-0.004483,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213498,-0.004483,0.005249,0.249945,0,0);}
.me2_c00241{transform:matrix(0.213678,-0.004487,0.005249,0.249945,0,0);-ms-transform:matrix(0.213678,-0.004487,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213678,-0.004487,0.005249,0.249945,0,0);}
.mdb_c00241{transform:matrix(0.213783,-0.004489,0.005249,0.249945,0,0);-ms-transform:matrix(0.213783,-0.004489,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213783,-0.004489,0.005249,0.249945,0,0);}
.m28_c00241{transform:matrix(0.214073,-0.005138,0.005998,0.249928,0,0);-ms-transform:matrix(0.214073,-0.005138,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214073,-0.005138,0.005998,0.249928,0,0);}
.m93_c00241{transform:matrix(0.214223,-0.004499,0.005249,0.249945,0,0);-ms-transform:matrix(0.214223,-0.004499,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214223,-0.004499,0.005249,0.249945,0,0);}
.m7d_c00241{transform:matrix(0.214661,-0.006011,0.006997,0.249902,0,0);-ms-transform:matrix(0.214661,-0.006011,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214661,-0.006011,0.006997,0.249902,0,0);}
.m57_c00241{transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);-ms-transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);}
.m50_c00241{transform:matrix(0.214948,-0.005159,0.005998,0.249928,0,0);-ms-transform:matrix(0.214948,-0.005159,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214948,-0.005159,0.005998,0.249928,0,0);}
.m39_c00241{transform:matrix(0.215088,-0.004732,0.005499,0.249940,0,0);-ms-transform:matrix(0.215088,-0.004732,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215088,-0.004732,0.005499,0.249940,0,0);}
.mdd_c00241{transform:matrix(0.216267,-0.004542,0.005249,0.249945,0,0);-ms-transform:matrix(0.216267,-0.004542,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216267,-0.004542,0.005249,0.249945,0,0);}
.m17_c00241{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m53_c00241{transform:matrix(0.217092,-0.005210,0.005998,0.249928,0,0);-ms-transform:matrix(0.217092,-0.005210,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217092,-0.005210,0.005998,0.249928,0,0);}
.m49_c00241{transform:matrix(0.217546,-0.004133,0.004749,0.249955,0,0);-ms-transform:matrix(0.217546,-0.004133,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217546,-0.004133,0.004749,0.249955,0,0);}
.md8_c00241{transform:matrix(0.217612,-0.004570,0.005249,0.249945,0,0);-ms-transform:matrix(0.217612,-0.004570,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217612,-0.004570,0.005249,0.249945,0,0);}
.m91_c00241{transform:matrix(0.219267,-0.004605,0.005249,0.249945,0,0);-ms-transform:matrix(0.219267,-0.004605,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219267,-0.004605,0.005249,0.249945,0,0);}
.m37_c00241{transform:matrix(0.219482,-0.004829,0.005499,0.249940,0,0);-ms-transform:matrix(0.219482,-0.004829,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219482,-0.004829,0.005499,0.249940,0,0);}
.m8f_c00241{transform:matrix(0.219487,-0.004609,0.005249,0.249945,0,0);-ms-transform:matrix(0.219487,-0.004609,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219487,-0.004609,0.005249,0.249945,0,0);}
.m4c_c00241{transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);-ms-transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);}
.m3c_c00241{transform:matrix(0.219665,-0.004174,0.004749,0.249955,0,0);-ms-transform:matrix(0.219665,-0.004174,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219665,-0.004174,0.004749,0.249955,0,0);}
.m14_c00241{transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);}
.m7b_c00241{transform:matrix(0.221278,-0.006196,0.006997,0.249902,0,0);-ms-transform:matrix(0.221278,-0.006196,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221278,-0.006196,0.006997,0.249902,0,0);}
.m47_c00241{transform:matrix(0.221705,-0.004212,0.004749,0.249955,0,0);-ms-transform:matrix(0.221705,-0.004212,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221705,-0.004212,0.004749,0.249955,0,0);}
.m92_c00241{transform:matrix(0.221711,-0.004656,0.005249,0.249945,0,0);-ms-transform:matrix(0.221711,-0.004656,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221711,-0.004656,0.005249,0.249945,0,0);}
.m76_c00241{transform:matrix(0.222693,-0.006235,0.006997,0.249902,0,0);-ms-transform:matrix(0.222693,-0.006235,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222693,-0.006235,0.006997,0.249902,0,0);}
.m36_c00241{transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);-ms-transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);}
.m7a_c00241{transform:matrix(0.223317,-0.006253,0.006997,0.249902,0,0);-ms-transform:matrix(0.223317,-0.006253,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223317,-0.006253,0.006997,0.249902,0,0);}
.m31_c00241{transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);-ms-transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);}
.me1_c00241{transform:matrix(0.224466,-0.004714,0.005249,0.249945,0,0);-ms-transform:matrix(0.224466,-0.004714,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224466,-0.004714,0.005249,0.249945,0,0);}
.m13_c00241{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m85_c00241{transform:matrix(0.225750,-0.005192,0.005748,0.249934,0,0);-ms-transform:matrix(0.225750,-0.005192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225750,-0.005192,0.005748,0.249934,0,0);}
.m73_c00241{transform:matrix(0.226506,-0.006342,0.006997,0.249902,0,0);-ms-transform:matrix(0.226506,-0.006342,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226506,-0.006342,0.006997,0.249902,0,0);}
.m3a_c00241{transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);-ms-transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);}
.me4_c00241{transform:matrix(0.227930,-0.004787,0.005249,0.249945,0,0);-ms-transform:matrix(0.227930,-0.004787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227930,-0.004787,0.005249,0.249945,0,0);}
.md1_c00241{transform:matrix(0.228785,-0.004804,0.005249,0.249945,0,0);-ms-transform:matrix(0.228785,-0.004804,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228785,-0.004804,0.005249,0.249945,0,0);}
.m30_c00241{transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);-ms-transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230359,-0.005068,0.005499,0.249940,0,0);}
.md3_c00241{transform:matrix(0.231924,-0.004870,0.005249,0.249945,0,0);-ms-transform:matrix(0.231924,-0.004870,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231924,-0.004870,0.005249,0.249945,0,0);}
.m6c_c00241{transform:matrix(0.232379,-0.006507,0.006997,0.249902,0,0);-ms-transform:matrix(0.232379,-0.006507,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232379,-0.006507,0.006997,0.249902,0,0);}
.m52_c00241{transform:matrix(0.233538,-0.005605,0.005998,0.249928,0,0);-ms-transform:matrix(0.233538,-0.005605,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233538,-0.005605,0.005998,0.249928,0,0);}
.mf5_c00241{transform:matrix(0.234263,-0.004920,0.005249,0.249945,0,0);-ms-transform:matrix(0.234263,-0.004920,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234263,-0.004920,0.005249,0.249945,0,0);}
.mc0_c00241{transform:matrix(0.234413,-0.004923,0.005249,0.249945,0,0);-ms-transform:matrix(0.234413,-0.004923,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234413,-0.004923,0.005249,0.249945,0,0);}
.m2b_c00241{transform:matrix(0.234622,-0.005631,0.005998,0.249928,0,0);-ms-transform:matrix(0.234622,-0.005631,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234622,-0.005631,0.005998,0.249928,0,0);}
.m71_c00241{transform:matrix(0.234823,-0.006575,0.006997,0.249902,0,0);-ms-transform:matrix(0.234823,-0.006575,0.006997,0.249902,0,0);-webkit-transform:matrix(0.234823,-0.006575,0.006997,0.249902,0,0);}
.mcd_c00241{transform:matrix(0.235588,-0.004947,0.005249,0.249945,0,0);-ms-transform:matrix(0.235588,-0.004947,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235588,-0.004947,0.005249,0.249945,0,0);}
.m64_c00241{transform:matrix(0.235673,-0.006599,0.006997,0.249902,0,0);-ms-transform:matrix(0.235673,-0.006599,0.006997,0.249902,0,0);-webkit-transform:matrix(0.235673,-0.006599,0.006997,0.249902,0,0);}
.m67_c00241{transform:matrix(0.236652,-0.006626,0.006997,0.249902,0,0);-ms-transform:matrix(0.236652,-0.006626,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236652,-0.006626,0.006997,0.249902,0,0);}
.m55_c00241{transform:matrix(0.236977,-0.005687,0.005998,0.249928,0,0);-ms-transform:matrix(0.236977,-0.005687,0.005998,0.249928,0,0);-webkit-transform:matrix(0.236977,-0.005687,0.005998,0.249928,0,0);}
.m2d_c00241{transform:matrix(0.238182,-0.005240,0.005499,0.249940,0,0);-ms-transform:matrix(0.238182,-0.005240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238182,-0.005240,0.005499,0.249940,0,0);}
.m38_c00241{transform:matrix(0.238887,-0.005256,0.005499,0.249940,0,0);-ms-transform:matrix(0.238887,-0.005256,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238887,-0.005256,0.005499,0.249940,0,0);}
.m4f_c00241{transform:matrix(0.239252,-0.004546,0.004749,0.249955,0,0);-ms-transform:matrix(0.239252,-0.004546,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239252,-0.004546,0.004749,0.249955,0,0);}
.mde_c00241{transform:matrix(0.241922,-0.005080,0.005249,0.249945,0,0);-ms-transform:matrix(0.241922,-0.005080,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241922,-0.005080,0.005249,0.249945,0,0);}
.m66_c00241{transform:matrix(0.243245,-0.006811,0.006997,0.249902,0,0);-ms-transform:matrix(0.243245,-0.006811,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243245,-0.006811,0.006997,0.249902,0,0);}
.md5_c00241{transform:matrix(0.243746,-0.005119,0.005249,0.249945,0,0);-ms-transform:matrix(0.243746,-0.005119,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243746,-0.005119,0.005249,0.249945,0,0);}
.med_c00241{transform:matrix(0.243756,-0.005119,0.005249,0.249945,0,0);-ms-transform:matrix(0.243756,-0.005119,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243756,-0.005119,0.005249,0.249945,0,0);}
.m8e_c00241{transform:matrix(0.246206,-0.005170,0.005249,0.249945,0,0);-ms-transform:matrix(0.246206,-0.005170,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246206,-0.005170,0.005249,0.249945,0,0);}
.m48_c00241{transform:matrix(0.246780,-0.004689,0.004749,0.249955,0,0);-ms-transform:matrix(0.246780,-0.004689,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246780,-0.004689,0.004749,0.249955,0,0);}
.mc3_c00241{transform:matrix(0.247186,-0.005191,0.005249,0.249945,0,0);-ms-transform:matrix(0.247186,-0.005191,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247186,-0.005191,0.005249,0.249945,0,0);}
.md4_c00241{transform:matrix(0.249775,-0.005245,0.005249,0.249945,0,0);-ms-transform:matrix(0.249775,-0.005245,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249775,-0.005245,0.005249,0.249945,0,0);}
.m1d_c00241{transform:matrix(0.250169,-0.005754,0.005748,0.249934,0,0);-ms-transform:matrix(0.250169,-0.005754,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250169,-0.005754,0.005748,0.249934,0,0);}
.m58_c00241{transform:matrix(0.252567,-0.006062,0.005998,0.249928,0,0);-ms-transform:matrix(0.252567,-0.006062,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252567,-0.006062,0.005998,0.249928,0,0);}
.me0_c00241{transform:matrix(0.253294,-0.005319,0.005249,0.249945,0,0);-ms-transform:matrix(0.253294,-0.005319,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253294,-0.005319,0.005249,0.249945,0,0);}
.mf7_c00241{transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);}
.m9a_c00241{transform:matrix(0.264362,-0.005552,0.005249,0.249945,0,0);-ms-transform:matrix(0.264362,-0.005552,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264362,-0.005552,0.005249,0.249945,0,0);}
.m11_c00241{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.mb8_c00241{transform:matrix(0.302443,-0.006351,0.005249,0.249945,0,0);-ms-transform:matrix(0.302443,-0.006351,0.005249,0.249945,0,0);-webkit-transform:matrix(0.302443,-0.006351,0.005249,0.249945,0,0);}
.m86_c00241{transform:matrix(0.305174,-0.007019,0.005748,0.249934,0,0);-ms-transform:matrix(0.305174,-0.007019,0.005748,0.249934,0,0);-webkit-transform:matrix(0.305174,-0.007019,0.005748,0.249934,0,0);}
.m10_c00241{transform:matrix(0.305480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305480,0.000000,0.000000,0.250000,0,0);}
.m68_c00241{transform:matrix(0.362413,-0.010148,0.006997,0.249902,0,0);-ms-transform:matrix(0.362413,-0.010148,0.006997,0.249902,0,0);-webkit-transform:matrix(0.362413,-0.010148,0.006997,0.249902,0,0);}
.m87_c00241{transform:matrix(0.603820,-0.013888,0.005748,0.249934,0,0);-ms-transform:matrix(0.603820,-0.013888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.603820,-0.013888,0.005748,0.249934,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:0.000000px;}
.fc0_c00241{color:transparent;}
.fs1d_c00241{font-size:23.100000px;}
.fs19_c00241{font-size:54.612038px;}
.fs12_c00241{font-size:57.762732px;}
.fs8_c00241{font-size:57.763974px;}
.fs1b_c00241{font-size:58.812964px;}
.fsc_c00241{font-size:58.816932px;}
.fsb_c00241{font-size:59.860802px;}
.fs13_c00241{font-size:59.863195px;}
.fs3_c00241{font-size:60.900000px;}
.fs1a_c00241{font-size:60.913427px;}
.fs7_c00241{font-size:60.914736px;}
.fs10_c00241{font-size:60.923868px;}
.fsa_c00241{font-size:61.961181px;}
.fsf_c00241{font-size:61.974280px;}
.fs18_c00241{font-size:63.013890px;}
.fse_c00241{font-size:64.075103px;}
.fs17_c00241{font-size:65.114353px;}
.fs1c_c00241{font-size:67.214816px;}
.fs6_c00241{font-size:67.219351px;}
.fs0_c00241{font-size:68.250000px;}
.fs9_c00241{font-size:68.262318px;}
.fs11_c00241{font-size:68.268050px;}
.fs2_c00241{font-size:69.300000px;}
.fs5_c00241{font-size:69.318327px;}
.fs14_c00241{font-size:70.365510px;}
.fs16_c00241{font-size:72.465973px;}
.fsd_c00241{font-size:72.480459px;}
.fs1_c00241{font-size:73.500000px;}
.fs15_c00241{font-size:74.566436px;}
.fs4_c00241{font-size:76.670271px;}
.y0_c00241{bottom:0.000000px;}
.yf0_c00241{bottom:19.133989px;}
.yf1_c00241{bottom:20.528294px;}
.yf2_c00241{bottom:21.148174px;}
.yf3_c00241{bottom:22.120274px;}
.yf4_c00241{bottom:22.740470px;}
.yf5_c00241{bottom:24.887561px;}
.yf6_c00241{bottom:26.267997px;}
.yf7_c00241{bottom:26.876090px;}
.ye8_c00241{bottom:34.255065px;}
.ye9_c00241{bottom:35.519493px;}
.yea_c00241{bottom:36.163029px;}
.yeb_c00241{bottom:38.342691px;}
.yec_c00241{bottom:38.977639px;}
.yed_c00241{bottom:40.621603px;}
.yee_c00241{bottom:41.122259px;}
.yef_c00241{bottom:41.475264px;}
.ydf_c00241{bottom:51.805317px;}
.ye0_c00241{bottom:52.131303px;}
.ye1_c00241{bottom:52.541680px;}
.ye2_c00241{bottom:53.684842px;}
.ye3_c00241{bottom:54.869706px;}
.ye4_c00241{bottom:55.784554px;}
.ye5_c00241{bottom:56.976411px;}
.ye6_c00241{bottom:57.281808px;}
.ye7_c00241{bottom:57.880171px;}
.yd7_c00241{bottom:71.517502px;}
.yd8_c00241{bottom:72.239770px;}
.yd9_c00241{bottom:72.851835px;}
.yda_c00241{bottom:74.268608px;}
.ydb_c00241{bottom:74.748922px;}
.ydc_c00241{bottom:76.045506px;}
.ydd_c00241{bottom:76.432576px;}
.yde_c00241{bottom:76.835523px;}
.yd1_c00241{bottom:87.183369px;}
.yd2_c00241{bottom:87.793794px;}
.yd3_c00241{bottom:88.937836px;}
.yd4_c00241{bottom:89.458803px;}
.yd5_c00241{bottom:91.102152px;}
.yd6_c00241{bottom:92.779485px;}
.yc8_c00241{bottom:103.657885px;}
.yc9_c00241{bottom:104.280048px;}
.yca_c00241{bottom:104.967355px;}
.ycb_c00241{bottom:105.592794px;}
.ycc_c00241{bottom:106.836993px;}
.ycd_c00241{bottom:107.237938px;}
.yce_c00241{bottom:107.723188px;}
.ycf_c00241{bottom:109.433163px;}
.yd0_c00241{bottom:109.906140px;}
.yc0_c00241{bottom:121.753659px;}
.yc1_c00241{bottom:122.874777px;}
.yc2_c00241{bottom:123.186046px;}
.yc3_c00241{bottom:124.030123px;}
.yc4_c00241{bottom:125.449659px;}
.yc5_c00241{bottom:126.019353px;}
.yc6_c00241{bottom:126.946030px;}
.yc7_c00241{bottom:127.380322px;}
.yb9_c00241{bottom:140.113855px;}
.yba_c00241{bottom:141.056214px;}
.ybb_c00241{bottom:141.376738px;}
.ybc_c00241{bottom:142.303933px;}
.ybd_c00241{bottom:142.664121px;}
.ybe_c00241{bottom:143.337871px;}
.ybf_c00241{bottom:145.169904px;}
.yb5_c00241{bottom:156.050658px;}
.yb6_c00241{bottom:157.176945px;}
.yb7_c00241{bottom:157.717035px;}
.yb8_c00241{bottom:163.766602px;}
.yf9_c00241{bottom:166.860000px;}
.yf8_c00241{bottom:170.370000px;}
.yad_c00241{bottom:175.491316px;}
.yae_c00241{bottom:176.414010px;}
.yaf_c00241{bottom:176.968209px;}
.yb0_c00241{bottom:177.697461px;}
.yb1_c00241{bottom:178.573821px;}
.yb2_c00241{bottom:179.648170px;}
.yb3_c00241{bottom:180.482524px;}
.yb4_c00241{bottom:180.746590px;}
.ya5_c00241{bottom:191.963898px;}
.ya6_c00241{bottom:192.456907px;}
.ya7_c00241{bottom:193.961821px;}
.ya8_c00241{bottom:194.569224px;}
.ya9_c00241{bottom:195.652626px;}
.yaa_c00241{bottom:195.913491px;}
.yab_c00241{bottom:197.155934px;}
.yac_c00241{bottom:197.589226px;}
.y9c_c00241{bottom:210.055248px;}
.y9d_c00241{bottom:210.842038px;}
.y9e_c00241{bottom:211.674655px;}
.y9f_c00241{bottom:211.890876px;}
.ya0_c00241{bottom:212.376148px;}
.ya1_c00241{bottom:213.110422px;}
.ya2_c00241{bottom:213.316759px;}
.ya3_c00241{bottom:213.633339px;}
.ya4_c00241{bottom:214.657440px;}
.y94_c00241{bottom:227.340665px;}
.y95_c00241{bottom:228.828789px;}
.y96_c00241{bottom:229.343861px;}
.y97_c00241{bottom:230.594788px;}
.y98_c00241{bottom:230.996947px;}
.y99_c00241{bottom:231.818224px;}
.y9a_c00241{bottom:232.223659px;}
.y9b_c00241{bottom:232.737376px;}
.y8c_c00241{bottom:244.084500px;}
.y8d_c00241{bottom:245.088594px;}
.y8e_c00241{bottom:245.786193px;}
.y8f_c00241{bottom:246.113919px;}
.y90_c00241{bottom:247.226782px;}
.y91_c00241{bottom:247.956732px;}
.y92_c00241{bottom:248.841283px;}
.y93_c00241{bottom:249.569752px;}
.y83_c00241{bottom:260.826000px;}
.y84_c00241{bottom:262.045127px;}
.y85_c00241{bottom:262.985527px;}
.y86_c00241{bottom:263.342120px;}
.y87_c00241{bottom:264.578151px;}
.y88_c00241{bottom:264.801780px;}
.y89_c00241{bottom:266.217867px;}
.y8a_c00241{bottom:266.683341px;}
.y8b_c00241{bottom:267.398733px;}
.y7b_c00241{bottom:278.087142px;}
.y7c_c00241{bottom:279.370014px;}
.y7d_c00241{bottom:279.679680px;}
.y7e_c00241{bottom:280.209192px;}
.y7f_c00241{bottom:282.170664px;}
.y80_c00241{bottom:283.186092px;}
.y81_c00241{bottom:283.672680px;}
.y82_c00241{bottom:284.182500px;}
.y73_c00241{bottom:294.564858px;}
.y74_c00241{bottom:295.427022px;}
.y75_c00241{bottom:297.168582px;}
.y76_c00241{bottom:297.786780px;}
.y77_c00241{bottom:298.664076px;}
.y78_c00241{bottom:299.067450px;}
.y79_c00241{bottom:299.793276px;}
.y7a_c00241{bottom:301.467324px;}
.y6a_c00241{bottom:311.311974px;}
.y6b_c00241{bottom:312.249522px;}
.y6c_c00241{bottom:313.193580px;}
.y6d_c00241{bottom:314.226366px;}
.y6e_c00241{bottom:314.588052px;}
.y6f_c00241{bottom:315.780864px;}
.y70_c00241{bottom:316.565274px;}
.y71_c00241{bottom:318.248802px;}
.y72_c00241{bottom:318.891048px;}
.y63_c00241{bottom:328.599000px;}
.y64_c00241{bottom:329.446854px;}
.y65_c00241{bottom:330.023094px;}
.y66_c00241{bottom:332.465478px;}
.y67_c00241{bottom:334.283532px;}
.y68_c00241{bottom:335.263266px;}
.y69_c00241{bottom:336.858636px;}
.y5a_c00241{bottom:346.152000px;}
.y5b_c00241{bottom:347.366520px;}
.y5c_c00241{bottom:348.455107px;}
.y5d_c00241{bottom:348.940829px;}
.y5e_c00241{bottom:350.735204px;}
.y5f_c00241{bottom:351.319234px;}
.y60_c00241{bottom:352.120722px;}
.y61_c00241{bottom:353.870945px;}
.y62_c00241{bottom:354.223382px;}
.y51_c00241{bottom:364.507500px;}
.y52_c00241{bottom:365.182320px;}
.y53_c00241{bottom:365.578428px;}
.y54_c00241{bottom:366.997440px;}
.y55_c00241{bottom:367.483440px;}
.y56_c00241{bottom:369.022908px;}
.y57_c00241{bottom:369.343308px;}
.y58_c00241{bottom:369.745104px;}
.y59_c00241{bottom:370.179588px;}
.y49_c00241{bottom:381.509859px;}
.y4a_c00241{bottom:382.461386px;}
.y4b_c00241{bottom:382.892108px;}
.y4c_c00241{bottom:384.218357px;}
.y4d_c00241{bottom:385.114653px;}
.y4e_c00241{bottom:386.302714px;}
.y4f_c00241{bottom:386.674017px;}
.y50_c00241{bottom:387.161925px;}
.y41_c00241{bottom:398.790614px;}
.y42_c00241{bottom:399.452153px;}
.y43_c00241{bottom:400.039636px;}
.y44_c00241{bottom:401.048055px;}
.y45_c00241{bottom:401.685647px;}
.y46_c00241{bottom:402.107019px;}
.y47_c00241{bottom:403.634157px;}
.y48_c00241{bottom:404.158167px;}
.y3b_c00241{bottom:417.154500px;}
.y3c_c00241{bottom:417.667215px;}
.y3d_c00241{bottom:418.565278px;}
.y3e_c00241{bottom:419.371315px;}
.y3f_c00241{bottom:421.161743px;}
.y40_c00241{bottom:421.608252px;}
.y35_c00241{bottom:433.080477px;}
.y36_c00241{bottom:433.561731px;}
.y37_c00241{bottom:434.856021px;}
.y38_c00241{bottom:435.414123px;}
.y39_c00241{bottom:435.825096px;}
.y3a_c00241{bottom:436.086069px;}
.y2e_c00241{bottom:450.094500px;}
.y2f_c00241{bottom:451.139808px;}
.y30_c00241{bottom:451.592304px;}
.y31_c00241{bottom:452.888214px;}
.y32_c00241{bottom:453.180495px;}
.y33_c00241{bottom:455.619690px;}
.y34_c00241{bottom:455.978763px;}
.y28_c00241{bottom:467.104500px;}
.y29_c00241{bottom:467.949924px;}
.y2a_c00241{bottom:470.177640px;}
.y2b_c00241{bottom:471.527424px;}
.y2c_c00241{bottom:472.652460px;}
.y2d_c00241{bottom:473.212692px;}
.y1f_c00241{bottom:484.656000px;}
.y20_c00241{bottom:485.606441px;}
.y21_c00241{bottom:486.627468px;}
.y22_c00241{bottom:487.885925px;}
.y23_c00241{bottom:488.662382px;}
.y24_c00241{bottom:488.972951px;}
.y25_c00241{bottom:490.084955px;}
.y26_c00241{bottom:490.523622px;}
.y27_c00241{bottom:491.138826px;}
.y19_c00241{bottom:501.937500px;}
.y1a_c00241{bottom:503.686098px;}
.y1b_c00241{bottom:504.345738px;}
.y1c_c00241{bottom:505.919593px;}
.y1d_c00241{bottom:507.903689px;}
.y1e_c00241{bottom:508.272977px;}
.y11_c00241{bottom:518.137500px;}
.y12_c00241{bottom:519.007500px;}
.y13_c00241{bottom:519.487500px;}
.y14_c00241{bottom:521.361000px;}
.y15_c00241{bottom:522.021000px;}
.y16_c00241{bottom:522.768000px;}
.y17_c00241{bottom:524.544000px;}
.y18_c00241{bottom:525.793500px;}
.y9_c00241{bottom:536.227500px;}
.ya_c00241{bottom:536.679000px;}
.yb_c00241{bottom:537.840000px;}
.yc_c00241{bottom:538.144500px;}
.yd_c00241{bottom:538.722000px;}
.ye_c00241{bottom:540.364500px;}
.yf_c00241{bottom:540.736500px;}
.y10_c00241{bottom:541.870500px;}
.y2_c00241{bottom:552.975000px;}
.y3_c00241{bottom:554.448000px;}
.y4_c00241{bottom:555.441000px;}
.y5_c00241{bottom:555.978000px;}
.y6_c00241{bottom:558.357000px;}
.y7_c00241{bottom:559.606500px;}
.y8_c00241{bottom:560.164500px;}
.y1_c00241{bottom:573.877500px;}
.h1f_c00241{height:23.100000px;}
.h1b_c00241{height:54.612038px;}
.h14_c00241{height:57.762732px;}
.ha_c00241{height:57.763974px;}
.h1d_c00241{height:58.812964px;}
.he_c00241{height:58.816932px;}
.hd_c00241{height:59.860802px;}
.h15_c00241{height:59.863195px;}
.h5_c00241{height:60.900000px;}
.h1c_c00241{height:60.913427px;}
.h9_c00241{height:60.914736px;}
.h12_c00241{height:60.923868px;}
.hc_c00241{height:61.961181px;}
.h11_c00241{height:61.974280px;}
.h1a_c00241{height:63.013890px;}
.h10_c00241{height:64.075103px;}
.h19_c00241{height:65.114353px;}
.h1e_c00241{height:67.214816px;}
.h8_c00241{height:67.219351px;}
.h2_c00241{height:68.250000px;}
.hb_c00241{height:68.262318px;}
.h13_c00241{height:68.268050px;}
.h4_c00241{height:69.300000px;}
.h7_c00241{height:69.318327px;}
.h16_c00241{height:70.365510px;}
.h18_c00241{height:72.465973px;}
.hf_c00241{height:72.480459px;}
.h3_c00241{height:73.500000px;}
.h17_c00241{height:74.566436px;}
.h6_c00241{height:76.670271px;}
.h1_c00241{height:618.750000px;}
.h0_c00241{height:619.050000px;}
.w0_c00241{width:359.100000px;}
.w1_c00241{width:359.250000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:34.041000px;}
.x29_c00241{left:35.078286px;}
.x36_c00241{left:36.480853px;}
.x5c_c00241{left:37.503000px;}
.x71_c00241{left:39.150542px;}
.x3a_c00241{left:44.835000px;}
.x6e_c00241{left:49.136049px;}
.x9_c00241{left:52.332000px;}
.x78_c00241{left:53.482284px;}
.x2a_c00241{left:59.136342px;}
.x2f_c00241{left:60.451500px;}
.x68_c00241{left:61.854936px;}
.x33_c00241{left:65.086896px;}
.x10_c00241{left:66.324000px;}
.x21_c00241{left:69.717000px;}
.x4b_c00241{left:71.252058px;}
.x3b_c00241{left:72.952500px;}
.x1b_c00241{left:75.904500px;}
.x41_c00241{left:78.459000px;}
.x25_c00241{left:82.264500px;}
.x11_c00241{left:84.079500px;}
.x5d_c00241{left:85.317000px;}
.x30_c00241{left:87.436500px;}
.x3_c00241{left:88.593000px;}
.x56_c00241{left:90.262500px;}
.x34_c00241{left:91.821386px;}
.x75_c00241{left:93.393309px;}
.x54_c00241{left:95.029590px;}
.x6f_c00241{left:98.726628px;}
.xa_c00241{left:100.725000px;}
.x26_c00241{left:102.832500px;}
.x72_c00241{left:104.286687px;}
.x4c_c00241{left:106.201524px;}
.x16_c00241{left:109.816500px;}
.x61_c00241{left:111.965052px;}
.xb_c00241{left:113.427000px;}
.x42_c00241{left:115.996500px;}
.x5e_c00241{left:118.536000px;}
.x1c_c00241{left:120.297000px;}
.x2b_c00241{left:123.834180px;}
.x4_c00241{left:125.373000px;}
.x57_c00241{left:131.149500px;}
.x43_c00241{left:132.745500px;}
.x31_c00241{left:134.703000px;}
.xc_c00241{left:137.463000px;}
.x17_c00241{left:138.496500px;}
.x50_c00241{left:140.623338px;}
.x73_c00241{left:142.622868px;}
.x5_c00241{left:145.273500px;}
.x58_c00241{left:146.653500px;}
.x3c_c00241{left:148.582500px;}
.x2c_c00241{left:151.726401px;}
.x12_c00241{left:153.441000px;}
.x4d_c00241{left:157.826952px;}
.x6b_c00241{left:160.591772px;}
.x22_c00241{left:162.538500px;}
.x70_c00241{left:164.358869px;}
.x37_c00241{left:165.528480px;}
.x1_c00241{left:166.860000px;}
.x3d_c00241{left:168.832500px;}
.x2d_c00241{left:172.248792px;}
.x1d_c00241{left:175.012500px;}
.x76_c00241{left:176.586371px;}
.x13_c00241{left:177.883500px;}
.x65_c00241{left:183.311355px;}
.x2e_c00241{left:185.270853px;}
.x5f_c00241{left:187.135500px;}
.x44_c00241{left:194.620500px;}
.x51_c00241{left:200.413836px;}
.x4e_c00241{left:201.982170px;}
.x7d_c00241{left:203.165699px;}
.xd_c00241{left:205.920000px;}
.x18_c00241{left:206.925000px;}
.x1e_c00241{left:208.771500px;}
.x59_c00241{left:210.117000px;}
.x79_c00241{left:212.297106px;}
.x45_c00241{left:214.759500px;}
.x52_c00241{left:216.535680px;}
.x23_c00241{left:218.779500px;}
.x62_c00241{left:220.355820px;}
.xe_c00241{left:221.437500px;}
.x66_c00241{left:229.210174px;}
.x4f_c00241{left:231.015468px;}
.x6_c00241{left:233.361000px;}
.x69_c00241{left:234.672059px;}
.x48_c00241{left:238.999500px;}
.x46_c00241{left:242.397000px;}
.x7f_c00241{left:245.246181px;}
.x3e_c00241{left:246.327000px;}
.x35_c00241{left:255.181566px;}
.x63_c00241{left:261.393670px;}
.x3f_c00241{left:263.068500px;}
.x7a_c00241{left:264.121433px;}
.x24_c00241{left:265.656000px;}
.xf_c00241{left:268.711500px;}
.x14_c00241{left:271.351500px;}
.x49_c00241{left:273.990000px;}
.x74_c00241{left:275.187096px;}
.x7b_c00241{left:277.377866px;}
.x7_c00241{left:279.664500px;}
.x40_c00241{left:281.172000px;}
.x38_c00241{left:282.453534px;}
.x77_c00241{left:284.777639px;}
.x27_c00241{left:285.895500px;}
.x1f_c00241{left:289.695000px;}
.x5a_c00241{left:291.924000px;}
.x19_c00241{left:293.190000px;}
.x32_c00241{left:294.859500px;}
.x6a_c00241{left:296.765850px;}
.x60_c00241{left:298.705500px;}
.x8_c00241{left:300.307500px;}
.x28_c00241{left:302.217000px;}
.x7c_c00241{left:303.370263px;}
.x39_c00241{left:305.684650px;}
.x64_c00241{left:307.306615px;}
.x1a_c00241{left:309.246000px;}
.x53_c00241{left:312.539244px;}
.x55_c00241{left:313.815840px;}
.x47_c00241{left:314.902500px;}
.x20_c00241{left:316.443000px;}
.x15_c00241{left:317.626500px;}
.x80_c00241{left:321.570000px;}
.x5b_c00241{left:323.028000px;}
.x67_c00241{left:325.887818px;}
.x7e_c00241{left:328.468178px;}
.x6c_c00241{left:329.941919px;}
.x4a_c00241{left:330.967500px;}
.x6d_c00241{left:334.872515px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs1d_c00241{font-size:20.533333pt;}
.fs19_c00241{font-size:48.544034pt;}
.fs12_c00241{font-size:51.344651pt;}
.fs8_c00241{font-size:51.345754pt;}
.fs1b_c00241{font-size:52.278190pt;}
.fsc_c00241{font-size:52.281717pt;}
.fsb_c00241{font-size:53.209602pt;}
.fs13_c00241{font-size:53.211729pt;}
.fs3_c00241{font-size:54.133333pt;}
.fs1a_c00241{font-size:54.145268pt;}
.fs7_c00241{font-size:54.146432pt;}
.fs10_c00241{font-size:54.154549pt;}
.fsa_c00241{font-size:55.076605pt;}
.fsf_c00241{font-size:55.088249pt;}
.fs18_c00241{font-size:56.012347pt;}
.fse_c00241{font-size:56.955647pt;}
.fs17_c00241{font-size:57.879425pt;}
.fs1c_c00241{font-size:59.746503pt;}
.fs6_c00241{font-size:59.750534pt;}
.fs0_c00241{font-size:60.666667pt;}
.fs9_c00241{font-size:60.677616pt;}
.fs11_c00241{font-size:60.682711pt;}
.fs2_c00241{font-size:61.600000pt;}
.fs5_c00241{font-size:61.616291pt;}
.fs14_c00241{font-size:62.547120pt;}
.fs16_c00241{font-size:64.414199pt;}
.fsd_c00241{font-size:64.427075pt;}
.fs1_c00241{font-size:65.333333pt;}
.fs15_c00241{font-size:66.281277pt;}
.fs4_c00241{font-size:68.151352pt;}
.y0_c00241{bottom:0.000000pt;}
.yf0_c00241{bottom:17.007991pt;}
.yf1_c00241{bottom:18.247372pt;}
.yf2_c00241{bottom:18.798377pt;}
.yf3_c00241{bottom:19.662465pt;}
.yf4_c00241{bottom:20.213751pt;}
.yf5_c00241{bottom:22.122276pt;}
.yf6_c00241{bottom:23.349331pt;}
.yf7_c00241{bottom:23.889857pt;}
.ye8_c00241{bottom:30.448947pt;}
.ye9_c00241{bottom:31.572883pt;}
.yea_c00241{bottom:32.144915pt;}
.yeb_c00241{bottom:34.082392pt;}
.yec_c00241{bottom:34.646791pt;}
.yed_c00241{bottom:36.108092pt;}
.yee_c00241{bottom:36.553119pt;}
.yef_c00241{bottom:36.866901pt;}
.ydf_c00241{bottom:46.049171pt;}
.ye0_c00241{bottom:46.338936pt;}
.ye1_c00241{bottom:46.703716pt;}
.ye2_c00241{bottom:47.719860pt;}
.ye3_c00241{bottom:48.773072pt;}
.ye4_c00241{bottom:49.586271pt;}
.ye5_c00241{bottom:50.645699pt;}
.ye6_c00241{bottom:50.917163pt;}
.ye7_c00241{bottom:51.449041pt;}
.yd7_c00241{bottom:63.571113pt;}
.yd8_c00241{bottom:64.213129pt;}
.yd9_c00241{bottom:64.757187pt;}
.yda_c00241{bottom:66.016540pt;}
.ydb_c00241{bottom:66.443487pt;}
.ydc_c00241{bottom:67.596005pt;}
.ydd_c00241{bottom:67.940068pt;}
.yde_c00241{bottom:68.298243pt;}
.yd1_c00241{bottom:77.496328pt;}
.yd2_c00241{bottom:78.038928pt;}
.yd3_c00241{bottom:79.055855pt;}
.yd4_c00241{bottom:79.518936pt;}
.yd5_c00241{bottom:80.979691pt;}
.yd6_c00241{bottom:82.470653pt;}
.yc8_c00241{bottom:92.140343pt;}
.yc9_c00241{bottom:92.693376pt;}
.yca_c00241{bottom:93.304316pt;}
.ycb_c00241{bottom:93.860261pt;}
.ycc_c00241{bottom:94.966216pt;}
.ycd_c00241{bottom:95.322612pt;}
.yce_c00241{bottom:95.753945pt;}
.ycf_c00241{bottom:97.273923pt;}
.yd0_c00241{bottom:97.694347pt;}
.yc0_c00241{bottom:108.225475pt;}
.yc1_c00241{bottom:109.222024pt;}
.yc2_c00241{bottom:109.498708pt;}
.yc3_c00241{bottom:110.248999pt;}
.yc4_c00241{bottom:111.510808pt;}
.yc5_c00241{bottom:112.017203pt;}
.yc6_c00241{bottom:112.840916pt;}
.yc7_c00241{bottom:113.226953pt;}
.yb9_c00241{bottom:124.545649pt;}
.yba_c00241{bottom:125.383301pt;}
.ybb_c00241{bottom:125.668212pt;}
.ybc_c00241{bottom:126.492385pt;}
.ybd_c00241{bottom:126.812552pt;}
.ybe_c00241{bottom:127.411441pt;}
.ybf_c00241{bottom:129.039915pt;}
.yb5_c00241{bottom:138.711696pt;}
.yb6_c00241{bottom:139.712840pt;}
.yb7_c00241{bottom:140.192920pt;}
.yb8_c00241{bottom:145.570313pt;}
.yf9_c00241{bottom:148.320000pt;}
.yf8_c00241{bottom:151.440000pt;}
.yad_c00241{bottom:155.992281pt;}
.yae_c00241{bottom:156.812453pt;}
.yaf_c00241{bottom:157.305075pt;}
.yb0_c00241{bottom:157.953299pt;}
.yb1_c00241{bottom:158.732285pt;}
.yb2_c00241{bottom:159.687263pt;}
.yb3_c00241{bottom:160.428911pt;}
.yb4_c00241{bottom:160.663636pt;}
.ya5_c00241{bottom:170.634576pt;}
.ya6_c00241{bottom:171.072807pt;}
.ya7_c00241{bottom:172.410508pt;}
.ya8_c00241{bottom:172.950421pt;}
.ya9_c00241{bottom:173.913445pt;}
.yaa_c00241{bottom:174.145325pt;}
.yab_c00241{bottom:175.249719pt;}
.yac_c00241{bottom:175.634868pt;}
.y9c_c00241{bottom:186.715776pt;}
.y9d_c00241{bottom:187.415145pt;}
.y9e_c00241{bottom:188.155249pt;}
.y9f_c00241{bottom:188.347445pt;}
.ya0_c00241{bottom:188.778799pt;}
.ya1_c00241{bottom:189.431487pt;}
.ya2_c00241{bottom:189.614897pt;}
.ya3_c00241{bottom:189.896301pt;}
.ya4_c00241{bottom:190.806613pt;}
.y94_c00241{bottom:202.080591pt;}
.y95_c00241{bottom:203.403368pt;}
.y96_c00241{bottom:203.861209pt;}
.y97_c00241{bottom:204.973145pt;}
.y98_c00241{bottom:205.330620pt;}
.y99_c00241{bottom:206.060644pt;}
.y9a_c00241{bottom:206.421031pt;}
.y9b_c00241{bottom:206.877668pt;}
.y8c_c00241{bottom:216.964000pt;}
.y8d_c00241{bottom:217.856528pt;}
.y8e_c00241{bottom:218.476616pt;}
.y8f_c00241{bottom:218.767928pt;}
.y90_c00241{bottom:219.757140pt;}
.y91_c00241{bottom:220.405984pt;}
.y92_c00241{bottom:221.192252pt;}
.y93_c00241{bottom:221.839780pt;}
.y83_c00241{bottom:231.845333pt;}
.y84_c00241{bottom:232.929001pt;}
.y85_c00241{bottom:233.764913pt;}
.y86_c00241{bottom:234.081884pt;}
.y87_c00241{bottom:235.180579pt;}
.y88_c00241{bottom:235.379360pt;}
.y89_c00241{bottom:236.638104pt;}
.y8a_c00241{bottom:237.051859pt;}
.y8b_c00241{bottom:237.687763pt;}
.y7b_c00241{bottom:247.188571pt;}
.y7c_c00241{bottom:248.328901pt;}
.y7d_c00241{bottom:248.604160pt;}
.y7e_c00241{bottom:249.074837pt;}
.y7f_c00241{bottom:250.818368pt;}
.y80_c00241{bottom:251.720971pt;}
.y81_c00241{bottom:252.153493pt;}
.y82_c00241{bottom:252.606667pt;}
.y73_c00241{bottom:261.835429pt;}
.y74_c00241{bottom:262.601797pt;}
.y75_c00241{bottom:264.149851pt;}
.y76_c00241{bottom:264.699360pt;}
.y77_c00241{bottom:265.479179pt;}
.y78_c00241{bottom:265.837733pt;}
.y79_c00241{bottom:266.482912pt;}
.y7a_c00241{bottom:267.970955pt;}
.y6a_c00241{bottom:276.721755pt;}
.y6b_c00241{bottom:277.555131pt;}
.y6c_c00241{bottom:278.394293pt;}
.y6d_c00241{bottom:279.312325pt;}
.y6e_c00241{bottom:279.633824pt;}
.y6f_c00241{bottom:280.694101pt;}
.y70_c00241{bottom:281.391355pt;}
.y71_c00241{bottom:282.887824pt;}
.y72_c00241{bottom:283.458709pt;}
.y63_c00241{bottom:292.088000pt;}
.y64_c00241{bottom:292.841648pt;}
.y65_c00241{bottom:293.353861pt;}
.y66_c00241{bottom:295.524869pt;}
.y67_c00241{bottom:297.140917pt;}
.y68_c00241{bottom:298.011792pt;}
.y69_c00241{bottom:299.429899pt;}
.y5a_c00241{bottom:307.690667pt;}
.y5b_c00241{bottom:308.770240pt;}
.y5c_c00241{bottom:309.737873pt;}
.y5d_c00241{bottom:310.169625pt;}
.y5e_c00241{bottom:311.764625pt;}
.y5f_c00241{bottom:312.283764pt;}
.y60_c00241{bottom:312.996197pt;}
.y61_c00241{bottom:314.551951pt;}
.y62_c00241{bottom:314.865228pt;}
.y51_c00241{bottom:324.006667pt;}
.y52_c00241{bottom:324.606507pt;}
.y53_c00241{bottom:324.958603pt;}
.y54_c00241{bottom:326.219947pt;}
.y55_c00241{bottom:326.651947pt;}
.y56_c00241{bottom:328.020363pt;}
.y57_c00241{bottom:328.305163pt;}
.y58_c00241{bottom:328.662315pt;}
.y59_c00241{bottom:329.048523pt;}
.y49_c00241{bottom:339.119875pt;}
.y4a_c00241{bottom:339.965676pt;}
.y4b_c00241{bottom:340.348540pt;}
.y4c_c00241{bottom:341.527428pt;}
.y4d_c00241{bottom:342.324136pt;}
.y4e_c00241{bottom:343.380191pt;}
.y4f_c00241{bottom:343.710237pt;}
.y50_c00241{bottom:344.143933pt;}
.y41_c00241{bottom:354.480545pt;}
.y42_c00241{bottom:355.068580pt;}
.y43_c00241{bottom:355.590788pt;}
.y44_c00241{bottom:356.487160pt;}
.y45_c00241{bottom:357.053908pt;}
.y46_c00241{bottom:357.428461pt;}
.y47_c00241{bottom:358.785917pt;}
.y48_c00241{bottom:359.251704pt;}
.y3b_c00241{bottom:370.804000pt;}
.y3c_c00241{bottom:371.259747pt;}
.y3d_c00241{bottom:372.058025pt;}
.y3e_c00241{bottom:372.774503pt;}
.y3f_c00241{bottom:374.365993pt;}
.y40_c00241{bottom:374.762891pt;}
.y35_c00241{bottom:384.960424pt;}
.y36_c00241{bottom:385.388205pt;}
.y37_c00241{bottom:386.538685pt;}
.y38_c00241{bottom:387.034776pt;}
.y39_c00241{bottom:387.400085pt;}
.y3a_c00241{bottom:387.632061pt;}
.y2e_c00241{bottom:400.084000pt;}
.y2f_c00241{bottom:401.013163pt;}
.y30_c00241{bottom:401.415381pt;}
.y31_c00241{bottom:402.567301pt;}
.y32_c00241{bottom:402.827107pt;}
.y33_c00241{bottom:404.995280pt;}
.y34_c00241{bottom:405.314456pt;}
.y28_c00241{bottom:415.204000pt;}
.y29_c00241{bottom:415.955488pt;}
.y2a_c00241{bottom:417.935680pt;}
.y2b_c00241{bottom:419.135488pt;}
.y2c_c00241{bottom:420.135520pt;}
.y2d_c00241{bottom:420.633504pt;}
.y1f_c00241{bottom:430.805333pt;}
.y20_c00241{bottom:431.650169pt;}
.y21_c00241{bottom:432.557749pt;}
.y22_c00241{bottom:433.676377pt;}
.y23_c00241{bottom:434.366561pt;}
.y24_c00241{bottom:434.642623pt;}
.y25_c00241{bottom:435.631071pt;}
.y26_c00241{bottom:436.020997pt;}
.y27_c00241{bottom:436.567845pt;}
.y19_c00241{bottom:446.166667pt;}
.y1a_c00241{bottom:447.720976pt;}
.y1b_c00241{bottom:448.307323pt;}
.y1c_c00241{bottom:449.706305pt;}
.y1d_c00241{bottom:451.469945pt;}
.y1e_c00241{bottom:451.798201pt;}
.y11_c00241{bottom:460.566667pt;}
.y12_c00241{bottom:461.340000pt;}
.y13_c00241{bottom:461.766667pt;}
.y14_c00241{bottom:463.432000pt;}
.y15_c00241{bottom:464.018667pt;}
.y16_c00241{bottom:464.682667pt;}
.y17_c00241{bottom:466.261333pt;}
.y18_c00241{bottom:467.372000pt;}
.y9_c00241{bottom:476.646667pt;}
.ya_c00241{bottom:477.048000pt;}
.yb_c00241{bottom:478.080000pt;}
.yc_c00241{bottom:478.350667pt;}
.yd_c00241{bottom:478.864000pt;}
.ye_c00241{bottom:480.324000pt;}
.yf_c00241{bottom:480.654667pt;}
.y10_c00241{bottom:481.662667pt;}
.y2_c00241{bottom:491.533333pt;}
.y3_c00241{bottom:492.842667pt;}
.y4_c00241{bottom:493.725333pt;}
.y5_c00241{bottom:494.202667pt;}
.y6_c00241{bottom:496.317333pt;}
.y7_c00241{bottom:497.428000pt;}
.y8_c00241{bottom:497.924000pt;}
.y1_c00241{bottom:510.113333pt;}
.h1f_c00241{height:20.533333pt;}
.h1b_c00241{height:48.544034pt;}
.h14_c00241{height:51.344651pt;}
.ha_c00241{height:51.345754pt;}
.h1d_c00241{height:52.278190pt;}
.he_c00241{height:52.281717pt;}
.hd_c00241{height:53.209602pt;}
.h15_c00241{height:53.211729pt;}
.h5_c00241{height:54.133333pt;}
.h1c_c00241{height:54.145268pt;}
.h9_c00241{height:54.146432pt;}
.h12_c00241{height:54.154549pt;}
.hc_c00241{height:55.076605pt;}
.h11_c00241{height:55.088249pt;}
.h1a_c00241{height:56.012347pt;}
.h10_c00241{height:56.955647pt;}
.h19_c00241{height:57.879425pt;}
.h1e_c00241{height:59.746503pt;}
.h8_c00241{height:59.750534pt;}
.h2_c00241{height:60.666667pt;}
.hb_c00241{height:60.677616pt;}
.h13_c00241{height:60.682711pt;}
.h4_c00241{height:61.600000pt;}
.h7_c00241{height:61.616291pt;}
.h16_c00241{height:62.547120pt;}
.h18_c00241{height:64.414199pt;}
.hf_c00241{height:64.427075pt;}
.h3_c00241{height:65.333333pt;}
.h17_c00241{height:66.281277pt;}
.h6_c00241{height:68.151352pt;}
.h1_c00241{height:550.000000pt;}
.h0_c00241{height:550.266667pt;}
.w0_c00241{width:319.200000pt;}
.w1_c00241{width:319.333333pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:30.258667pt;}
.x29_c00241{left:31.180699pt;}
.x36_c00241{left:32.427425pt;}
.x5c_c00241{left:33.336000pt;}
.x71_c00241{left:34.800481pt;}
.x3a_c00241{left:39.853333pt;}
.x6e_c00241{left:43.676488pt;}
.x9_c00241{left:46.517333pt;}
.x78_c00241{left:47.539808pt;}
.x2a_c00241{left:52.565637pt;}
.x2f_c00241{left:53.734667pt;}
.x68_c00241{left:54.982165pt;}
.x33_c00241{left:57.855019pt;}
.x10_c00241{left:58.954667pt;}
.x21_c00241{left:61.970667pt;}
.x4b_c00241{left:63.335163pt;}
.x3b_c00241{left:64.846667pt;}
.x1b_c00241{left:67.470667pt;}
.x41_c00241{left:69.741333pt;}
.x25_c00241{left:73.124000pt;}
.x11_c00241{left:74.737333pt;}
.x5d_c00241{left:75.837333pt;}
.x30_c00241{left:77.721333pt;}
.x3_c00241{left:78.749333pt;}
.x56_c00241{left:80.233333pt;}
.x34_c00241{left:81.619009pt;}
.x75_c00241{left:83.016275pt;}
.x54_c00241{left:84.470747pt;}
.x6f_c00241{left:87.757003pt;}
.xa_c00241{left:89.533333pt;}
.x26_c00241{left:91.406667pt;}
.x72_c00241{left:92.699277pt;}
.x4c_c00241{left:94.401355pt;}
.x16_c00241{left:97.614667pt;}
.x61_c00241{left:99.524491pt;}
.xb_c00241{left:100.824000pt;}
.x42_c00241{left:103.108000pt;}
.x5e_c00241{left:105.365333pt;}
.x1c_c00241{left:106.930667pt;}
.x2b_c00241{left:110.074827pt;}
.x4_c00241{left:111.442667pt;}
.x57_c00241{left:116.577333pt;}
.x43_c00241{left:117.996000pt;}
.x31_c00241{left:119.736000pt;}
.xc_c00241{left:122.189333pt;}
.x17_c00241{left:123.108000pt;}
.x50_c00241{left:124.998523pt;}
.x73_c00241{left:126.775883pt;}
.x5_c00241{left:129.132000pt;}
.x58_c00241{left:130.358667pt;}
.x3c_c00241{left:132.073333pt;}
.x2c_c00241{left:134.867912pt;}
.x12_c00241{left:136.392000pt;}
.x4d_c00241{left:140.290624pt;}
.x6b_c00241{left:142.748241pt;}
.x22_c00241{left:144.478667pt;}
.x70_c00241{left:146.096772pt;}
.x37_c00241{left:147.136427pt;}
.x1_c00241{left:148.320000pt;}
.x3d_c00241{left:150.073333pt;}
.x2d_c00241{left:153.110037pt;}
.x1d_c00241{left:155.566667pt;}
.x76_c00241{left:156.965663pt;}
.x13_c00241{left:158.118667pt;}
.x65_c00241{left:162.943427pt;}
.x2e_c00241{left:164.685203pt;}
.x5f_c00241{left:166.342667pt;}
.x44_c00241{left:172.996000pt;}
.x51_c00241{left:178.145632pt;}
.x4e_c00241{left:179.539707pt;}
.x7d_c00241{left:180.591732pt;}
.xd_c00241{left:183.040000pt;}
.x18_c00241{left:183.933333pt;}
.x1e_c00241{left:185.574667pt;}
.x59_c00241{left:186.770667pt;}
.x79_c00241{left:188.708539pt;}
.x45_c00241{left:190.897333pt;}
.x52_c00241{left:192.476160pt;}
.x23_c00241{left:194.470667pt;}
.x62_c00241{left:195.871840pt;}
.xe_c00241{left:196.833333pt;}
.x66_c00241{left:203.742377pt;}
.x4f_c00241{left:205.347083pt;}
.x6_c00241{left:207.432000pt;}
.x69_c00241{left:208.597385pt;}
.x48_c00241{left:212.444000pt;}
.x46_c00241{left:215.464000pt;}
.x7f_c00241{left:217.996605pt;}
.x3e_c00241{left:218.957333pt;}
.x35_c00241{left:226.828059pt;}
.x63_c00241{left:232.349929pt;}
.x3f_c00241{left:233.838667pt;}
.x7a_c00241{left:234.774607pt;}
.x24_c00241{left:236.138667pt;}
.xf_c00241{left:238.854667pt;}
.x14_c00241{left:241.201333pt;}
.x49_c00241{left:243.546667pt;}
.x74_c00241{left:244.610752pt;}
.x7b_c00241{left:246.558103pt;}
.x7_c00241{left:248.590667pt;}
.x40_c00241{left:249.930667pt;}
.x38_c00241{left:251.069808pt;}
.x77_c00241{left:253.135679pt;}
.x27_c00241{left:254.129333pt;}
.x1f_c00241{left:257.506667pt;}
.x5a_c00241{left:259.488000pt;}
.x19_c00241{left:260.613333pt;}
.x32_c00241{left:262.097333pt;}
.x6a_c00241{left:263.791867pt;}
.x60_c00241{left:265.516000pt;}
.x8_c00241{left:266.940000pt;}
.x28_c00241{left:268.637333pt;}
.x7c_c00241{left:269.662456pt;}
.x39_c00241{left:271.719689pt;}
.x64_c00241{left:273.161436pt;}
.x1a_c00241{left:274.885333pt;}
.x53_c00241{left:277.812661pt;}
.x55_c00241{left:278.947413pt;}
.x47_c00241{left:279.913333pt;}
.x20_c00241{left:281.282667pt;}
.x15_c00241{left:282.334667pt;}
.x80_c00241{left:285.840000pt;}
.x5b_c00241{left:287.136000pt;}
.x67_c00241{left:289.678060pt;}
.x7e_c00241{left:291.971713pt;}
.x6c_c00241{left:293.281705pt;}
.x4a_c00241{left:294.193333pt;}
.x6d_c00241{left:297.664457pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00242 {
    display:none;
  }
  .loading-indicator_c00242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00242 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00242 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00242" -> "#page-container .classname_c00242")
 */
.pf_c00242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00242 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00242 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00242 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00242 {overflow:visible;}
  }
}
.c_c00242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00242 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00242:after { /* webkit #35443 */
  content: '';
}
.t_c00242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00242 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00242 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00242 { /* info for Javascript */
  display:none;
}
.l_c00242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00242:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00242 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00242.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.013136,0.000473,-0.009003,0.249838,0,0);-ms-transform:matrix(0.013136,0.000473,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.013136,0.000473,-0.009003,0.249838,0,0);}
.m2_c00242{transform:matrix(0.054774,0.001974,-0.009003,0.249838,0,0);-ms-transform:matrix(0.054774,0.001974,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.054774,0.001974,-0.009003,0.249838,0,0);}
.mf6_c00242{transform:matrix(0.054777,0.003513,-0.015999,0.249488,0,0);-ms-transform:matrix(0.054777,0.003513,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.054777,0.003513,-0.015999,0.249488,0,0);}
.mf4_c00242{transform:matrix(0.058305,0.003739,-0.015999,0.249488,0,0);-ms-transform:matrix(0.058305,0.003739,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.058305,0.003739,-0.015999,0.249488,0,0);}
.mf3_c00242{transform:matrix(0.065141,0.004177,-0.015999,0.249488,0,0);-ms-transform:matrix(0.065141,0.004177,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.065141,0.004177,-0.015999,0.249488,0,0);}
.mf5_c00242{transform:matrix(0.079397,0.005092,-0.015999,0.249488,0,0);-ms-transform:matrix(0.079397,0.005092,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.079397,0.005092,-0.015999,0.249488,0,0);}
.m7e_c00242{transform:matrix(0.121931,0.004394,-0.009003,0.249838,0,0);-ms-transform:matrix(0.121931,0.004394,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.121931,0.004394,-0.009003,0.249838,0,0);}
.md5_c00242{transform:matrix(0.131448,0.006316,-0.011998,0.249712,0,0);-ms-transform:matrix(0.131448,0.006316,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.131448,0.006316,-0.011998,0.249712,0,0);}
.m4e_c00242{transform:matrix(0.133708,0.004818,-0.009003,0.249838,0,0);-ms-transform:matrix(0.133708,0.004818,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.133708,0.004818,-0.009003,0.249838,0,0);}
.m2a_c00242{transform:matrix(0.138620,0.004995,-0.009003,0.249838,0,0);-ms-transform:matrix(0.138620,0.004995,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.138620,0.004995,-0.009003,0.249838,0,0);}
.m2b_c00242{transform:matrix(0.144646,0.005212,-0.009003,0.249838,0,0);-ms-transform:matrix(0.144646,0.005212,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.144646,0.005212,-0.009003,0.249838,0,0);}
.md1_c00242{transform:matrix(0.147515,0.007088,-0.011998,0.249712,0,0);-ms-transform:matrix(0.147515,0.007088,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.147515,0.007088,-0.011998,0.249712,0,0);}
.mc_c00242{transform:matrix(0.148079,0.005336,-0.009003,0.249838,0,0);-ms-transform:matrix(0.148079,0.005336,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.148079,0.005336,-0.009003,0.249838,0,0);}
.m4f_c00242{transform:matrix(0.149053,0.005371,-0.009003,0.249838,0,0);-ms-transform:matrix(0.149053,0.005371,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.149053,0.005371,-0.009003,0.249838,0,0);}
.m4a_c00242{transform:matrix(0.149733,0.005396,-0.009003,0.249838,0,0);-ms-transform:matrix(0.149733,0.005396,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.149733,0.005396,-0.009003,0.249838,0,0);}
.m1_c00242{transform:matrix(0.150003,0.005406,-0.009003,0.249838,0,0);-ms-transform:matrix(0.150003,0.005406,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.150003,0.005406,-0.009003,0.249838,0,0);}
.m78_c00242{transform:matrix(0.150432,0.005421,-0.009003,0.249838,0,0);-ms-transform:matrix(0.150432,0.005421,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.150432,0.005421,-0.009003,0.249838,0,0);}
.mc5_c00242{transform:matrix(0.150602,0.005427,-0.009003,0.249838,0,0);-ms-transform:matrix(0.150602,0.005427,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.150602,0.005427,-0.009003,0.249838,0,0);}
.m84_c00242{transform:matrix(0.154410,0.005564,-0.009003,0.249838,0,0);-ms-transform:matrix(0.154410,0.005564,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.154410,0.005564,-0.009003,0.249838,0,0);}
.m52_c00242{transform:matrix(0.155549,0.005605,-0.009003,0.249838,0,0);-ms-transform:matrix(0.155549,0.005605,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.155549,0.005605,-0.009003,0.249838,0,0);}
.m99_c00242{transform:matrix(0.155844,0.005616,-0.009003,0.249838,0,0);-ms-transform:matrix(0.155844,0.005616,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.155844,0.005616,-0.009003,0.249838,0,0);}
.m5_c00242{transform:matrix(0.156299,0.005632,-0.009003,0.249838,0,0);-ms-transform:matrix(0.156299,0.005632,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.156299,0.005632,-0.009003,0.249838,0,0);}
.m6e_c00242{transform:matrix(0.157388,0.005672,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157388,0.005672,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157388,0.005672,-0.009003,0.249838,0,0);}
.mf_c00242{transform:matrix(0.157478,0.005675,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157478,0.005675,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157478,0.005675,-0.009003,0.249838,0,0);}
.m31_c00242{transform:matrix(0.157498,0.005676,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157498,0.005676,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157498,0.005676,-0.009003,0.249838,0,0);}
.m22_c00242{transform:matrix(0.159097,0.005733,-0.009003,0.249838,0,0);-ms-transform:matrix(0.159097,0.005733,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.159097,0.005733,-0.009003,0.249838,0,0);}
.m5d_c00242{transform:matrix(0.159646,0.005753,-0.009003,0.249838,0,0);-ms-transform:matrix(0.159646,0.005753,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.159646,0.005753,-0.009003,0.249838,0,0);}
.mda_c00242{transform:matrix(0.161089,0.007740,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161089,0.007740,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161089,0.007740,-0.011998,0.249712,0,0);}
.md8_c00242{transform:matrix(0.161454,0.007758,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161454,0.007758,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161454,0.007758,-0.011998,0.249712,0,0);}
.m97_c00242{transform:matrix(0.161475,0.005819,-0.009003,0.249838,0,0);-ms-transform:matrix(0.161475,0.005819,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.161475,0.005819,-0.009003,0.249838,0,0);}
.m9e_c00242{transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);-ms-transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);}
.m3d_c00242{transform:matrix(0.161720,0.005828,-0.009003,0.249838,0,0);-ms-transform:matrix(0.161720,0.005828,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.161720,0.005828,-0.009003,0.249838,0,0);}
.mdd_c00242{transform:matrix(0.161848,0.007776,-0.011998,0.249712,0,0);-ms-transform:matrix(0.161848,0.007776,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.161848,0.007776,-0.011998,0.249712,0,0);}
.m3b_c00242{transform:matrix(0.162220,0.005846,-0.009003,0.249838,0,0);-ms-transform:matrix(0.162220,0.005846,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.162220,0.005846,-0.009003,0.249838,0,0);}
.m1c_c00242{transform:matrix(0.162664,0.005862,-0.009003,0.249838,0,0);-ms-transform:matrix(0.162664,0.005862,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.162664,0.005862,-0.009003,0.249838,0,0);}
.ma0_c00242{transform:matrix(0.162729,0.005864,-0.009003,0.249838,0,0);-ms-transform:matrix(0.162729,0.005864,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.162729,0.005864,-0.009003,0.249838,0,0);}
.me9_c00242{transform:matrix(0.163202,0.007842,-0.011998,0.249712,0,0);-ms-transform:matrix(0.163202,0.007842,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.163202,0.007842,-0.011998,0.249712,0,0);}
.m32_c00242{transform:matrix(0.164633,0.005933,-0.009003,0.249838,0,0);-ms-transform:matrix(0.164633,0.005933,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.164633,0.005933,-0.009003,0.249838,0,0);}
.mb2_c00242{transform:matrix(0.164693,0.005935,-0.009003,0.249838,0,0);-ms-transform:matrix(0.164693,0.005935,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.164693,0.005935,-0.009003,0.249838,0,0);}
.m3f_c00242{transform:matrix(0.165028,0.005947,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165028,0.005947,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165028,0.005947,-0.009003,0.249838,0,0);}
.m42_c00242{transform:matrix(0.165358,0.005959,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165358,0.005959,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165358,0.005959,-0.009003,0.249838,0,0);}
.ma_c00242{transform:matrix(0.165697,0.005971,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165697,0.005971,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165697,0.005971,-0.009003,0.249838,0,0);}
.m5b_c00242{transform:matrix(0.166297,0.005993,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166297,0.005993,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166297,0.005993,-0.009003,0.249838,0,0);}
.m69_c00242{transform:matrix(0.166722,0.006008,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166722,0.006008,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166722,0.006008,-0.009003,0.249838,0,0);}
.m1b_c00242{transform:matrix(0.167042,0.006020,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167042,0.006020,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167042,0.006020,-0.009003,0.249838,0,0);}
.mfd_c00242{transform:matrix(0.167097,0.010716,-0.015999,0.249488,0,0);-ms-transform:matrix(0.167097,0.010716,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.167097,0.010716,-0.015999,0.249488,0,0);}
.m62_c00242{transform:matrix(0.167147,0.006023,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167147,0.006023,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167147,0.006023,-0.009003,0.249838,0,0);}
.mc1_c00242{transform:matrix(0.167326,0.006030,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167326,0.006030,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167326,0.006030,-0.009003,0.249838,0,0);}
.mf2_c00242{transform:matrix(0.167880,0.010766,-0.015999,0.249488,0,0);-ms-transform:matrix(0.167880,0.010766,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.167880,0.010766,-0.015999,0.249488,0,0);}
.m11_c00242{transform:matrix(0.167951,0.006052,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167951,0.006052,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167951,0.006052,-0.009003,0.249838,0,0);}
.m5f_c00242{transform:matrix(0.169520,0.006109,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169520,0.006109,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169520,0.006109,-0.009003,0.249838,0,0);}
.m36_c00242{transform:matrix(0.169675,0.006114,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169675,0.006114,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169675,0.006114,-0.009003,0.249838,0,0);}
.m4_c00242{transform:matrix(0.169745,0.006117,-0.009003,0.249838,0,0);-ms-transform:matrix(0.169745,0.006117,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.169745,0.006117,-0.009003,0.249838,0,0);}
.m82_c00242{transform:matrix(0.170005,0.006126,-0.009003,0.249838,0,0);-ms-transform:matrix(0.170005,0.006126,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.170005,0.006126,-0.009003,0.249838,0,0);}
.m37_c00242{transform:matrix(0.171524,0.006181,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171524,0.006181,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171524,0.006181,-0.009003,0.249838,0,0);}
.m92_c00242{transform:matrix(0.171569,0.006183,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171569,0.006183,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171569,0.006183,-0.009003,0.249838,0,0);}
.m9f_c00242{transform:matrix(0.171699,0.006187,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171699,0.006187,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171699,0.006187,-0.009003,0.249838,0,0);}
.m20_c00242{transform:matrix(0.172108,0.006202,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172108,0.006202,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172108,0.006202,-0.009003,0.249838,0,0);}
.m29_c00242{transform:matrix(0.172323,0.006210,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172323,0.006210,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172323,0.006210,-0.009003,0.249838,0,0);}
.m6f_c00242{transform:matrix(0.172518,0.006217,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172518,0.006217,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172518,0.006217,-0.009003,0.249838,0,0);}
.mea_c00242{transform:matrix(0.172940,0.008309,-0.011998,0.249712,0,0);-ms-transform:matrix(0.172940,0.008309,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.172940,0.008309,-0.011998,0.249712,0,0);}
.m3c_c00242{transform:matrix(0.173048,0.006236,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173048,0.006236,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173048,0.006236,-0.009003,0.249838,0,0);}
.ma8_c00242{transform:matrix(0.173367,0.006247,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173367,0.006247,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173367,0.006247,-0.009003,0.249838,0,0);}
.ma3_c00242{transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);}
.mac_c00242{transform:matrix(0.173582,0.006255,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173582,0.006255,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173582,0.006255,-0.009003,0.249838,0,0);}
.maf_c00242{transform:matrix(0.173832,0.006264,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173832,0.006264,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173832,0.006264,-0.009003,0.249838,0,0);}
.m98_c00242{transform:matrix(0.174137,0.006275,-0.009003,0.249838,0,0);-ms-transform:matrix(0.174137,0.006275,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.174137,0.006275,-0.009003,0.249838,0,0);}
.mdc_c00242{transform:matrix(0.174164,0.008368,-0.011998,0.249712,0,0);-ms-transform:matrix(0.174164,0.008368,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.174164,0.008368,-0.011998,0.249712,0,0);}
.m2e_c00242{transform:matrix(0.174222,0.006278,-0.009003,0.249838,0,0);-ms-transform:matrix(0.174222,0.006278,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.174222,0.006278,-0.009003,0.249838,0,0);}
.m5c_c00242{transform:matrix(0.174252,0.006279,-0.009003,0.249838,0,0);-ms-transform:matrix(0.174252,0.006279,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.174252,0.006279,-0.009003,0.249838,0,0);}
.mfb_c00242{transform:matrix(0.174581,0.011196,-0.015999,0.249488,0,0);-ms-transform:matrix(0.174581,0.011196,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.174581,0.011196,-0.015999,0.249488,0,0);}
.mde_c00242{transform:matrix(0.174733,0.008396,-0.011998,0.249712,0,0);-ms-transform:matrix(0.174733,0.008396,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.174733,0.008396,-0.011998,0.249712,0,0);}
.mf1_c00242{transform:matrix(0.175171,0.011760,-0.016746,0.249439,0,0);-ms-transform:matrix(0.175171,0.011760,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.175171,0.011760,-0.016746,0.249439,0,0);}
.m8c_c00242{transform:matrix(0.175316,0.006318,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175316,0.006318,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175316,0.006318,-0.009003,0.249838,0,0);}
.m1a_c00242{transform:matrix(0.175561,0.006327,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175561,0.006327,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175561,0.006327,-0.009003,0.249838,0,0);}
.m8f_c00242{transform:matrix(0.175611,0.006328,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175611,0.006328,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175611,0.006328,-0.009003,0.249838,0,0);}
.mca_c00242{transform:matrix(0.175859,0.011806,-0.016746,0.249439,0,0);-ms-transform:matrix(0.175859,0.011806,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.175859,0.011806,-0.016746,0.249439,0,0);}
.m58_c00242{transform:matrix(0.175906,0.006339,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175906,0.006339,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175906,0.006339,-0.009003,0.249838,0,0);}
.m4c_c00242{transform:matrix(0.176126,0.006347,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176126,0.006347,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176126,0.006347,-0.009003,0.249838,0,0);}
.mdb_c00242{transform:matrix(0.176147,0.008464,-0.011998,0.249712,0,0);-ms-transform:matrix(0.176147,0.008464,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.176147,0.008464,-0.011998,0.249712,0,0);}
.m2f_c00242{transform:matrix(0.176181,0.006349,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176181,0.006349,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176181,0.006349,-0.009003,0.249838,0,0);}
.mfa_c00242{transform:matrix(0.176622,0.011326,-0.015999,0.249488,0,0);-ms-transform:matrix(0.176622,0.011326,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.176622,0.011326,-0.015999,0.249488,0,0);}
.m30_c00242{transform:matrix(0.177260,0.006388,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177260,0.006388,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177260,0.006388,-0.009003,0.249838,0,0);}
.m7c_c00242{transform:matrix(0.178204,0.006422,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178204,0.006422,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178204,0.006422,-0.009003,0.249838,0,0);}
.m3_c00242{transform:matrix(0.178469,0.006431,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178469,0.006431,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178469,0.006431,-0.009003,0.249838,0,0);}
.m5e_c00242{transform:matrix(0.178534,0.006434,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178534,0.006434,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178534,0.006434,-0.009003,0.249838,0,0);}
.mf8_c00242{transform:matrix(0.179042,0.011482,-0.015999,0.249488,0,0);-ms-transform:matrix(0.179042,0.011482,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.179042,0.011482,-0.015999,0.249488,0,0);}
.m2d_c00242{transform:matrix(0.179139,0.006455,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179139,0.006455,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179139,0.006455,-0.009003,0.249838,0,0);}
.mbd_c00242{transform:matrix(0.179673,0.006475,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179673,0.006475,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179673,0.006475,-0.009003,0.249838,0,0);}
.m79_c00242{transform:matrix(0.179773,0.006478,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179773,0.006478,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179773,0.006478,-0.009003,0.249838,0,0);}
.m13_c00242{transform:matrix(0.180058,0.006489,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180058,0.006489,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180058,0.006489,-0.009003,0.249838,0,0);}
.mb7_c00242{transform:matrix(0.180113,0.006491,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180113,0.006491,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180113,0.006491,-0.009003,0.249838,0,0);}
.mb4_c00242{transform:matrix(0.180333,0.006498,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180333,0.006498,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180333,0.006498,-0.009003,0.249838,0,0);}
.m94_c00242{transform:matrix(0.180463,0.006503,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180463,0.006503,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180463,0.006503,-0.009003,0.249838,0,0);}
.m45_c00242{transform:matrix(0.180928,0.006520,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180928,0.006520,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180928,0.006520,-0.009003,0.249838,0,0);}
.m3e_c00242{transform:matrix(0.180943,0.006520,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180943,0.006520,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180943,0.006520,-0.009003,0.249838,0,0);}
.m77_c00242{transform:matrix(0.181247,0.006531,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181247,0.006531,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181247,0.006531,-0.009003,0.249838,0,0);}
.m26_c00242{transform:matrix(0.181457,0.006539,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181457,0.006539,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181457,0.006539,-0.009003,0.249838,0,0);}
.m6a_c00242{transform:matrix(0.181607,0.006544,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181607,0.006544,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181607,0.006544,-0.009003,0.249838,0,0);}
.m21_c00242{transform:matrix(0.181957,0.006557,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181957,0.006557,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181957,0.006557,-0.009003,0.249838,0,0);}
.m51_c00242{transform:matrix(0.182267,0.006568,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182267,0.006568,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182267,0.006568,-0.009003,0.249838,0,0);}
.m23_c00242{transform:matrix(0.182277,0.006569,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182277,0.006569,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182277,0.006569,-0.009003,0.249838,0,0);}
.md_c00242{transform:matrix(0.182517,0.006577,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182517,0.006577,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182517,0.006577,-0.009003,0.249838,0,0);}
.mae_c00242{transform:matrix(0.183621,0.006617,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183621,0.006617,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183621,0.006617,-0.009003,0.249838,0,0);}
.m38_c00242{transform:matrix(0.184330,0.006643,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184330,0.006643,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184330,0.006643,-0.009003,0.249838,0,0);}
.mbe_c00242{transform:matrix(0.184390,0.006645,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184390,0.006645,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184390,0.006645,-0.009003,0.249838,0,0);}
.m34_c00242{transform:matrix(0.184650,0.006654,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184650,0.006654,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184650,0.006654,-0.009003,0.249838,0,0);}
.m3a_c00242{transform:matrix(0.184805,0.006660,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184805,0.006660,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184805,0.006660,-0.009003,0.249838,0,0);}
.m91_c00242{transform:matrix(0.184960,0.006665,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184960,0.006665,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184960,0.006665,-0.009003,0.249838,0,0);}
.m40_c00242{transform:matrix(0.185030,0.006668,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185030,0.006668,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185030,0.006668,-0.009003,0.249838,0,0);}
.m18_c00242{transform:matrix(0.185050,0.006668,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185050,0.006668,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185050,0.006668,-0.009003,0.249838,0,0);}
.m10_c00242{transform:matrix(0.185280,0.006677,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185280,0.006677,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185280,0.006677,-0.009003,0.249838,0,0);}
.m64_c00242{transform:matrix(0.185315,0.006678,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185315,0.006678,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185315,0.006678,-0.009003,0.249838,0,0);}
.m63_c00242{transform:matrix(0.185709,0.006692,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185709,0.006692,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185709,0.006692,-0.009003,0.249838,0,0);}
.me8_c00242{transform:matrix(0.185896,0.008932,-0.011998,0.249712,0,0);-ms-transform:matrix(0.185896,0.008932,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.185896,0.008932,-0.011998,0.249712,0,0);}
.mf9_c00242{transform:matrix(0.186058,0.011932,-0.015999,0.249488,0,0);-ms-transform:matrix(0.186058,0.011932,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.186058,0.011932,-0.015999,0.249488,0,0);}
.m1d_c00242{transform:matrix(0.186349,0.006715,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186349,0.006715,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186349,0.006715,-0.009003,0.249838,0,0);}
.mdf_c00242{transform:matrix(0.186700,0.008971,-0.011998,0.249712,0,0);-ms-transform:matrix(0.186700,0.008971,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.186700,0.008971,-0.011998,0.249712,0,0);}
.m55_c00242{transform:matrix(0.188003,0.006775,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188003,0.006775,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188003,0.006775,-0.009003,0.249838,0,0);}
.m43_c00242{transform:matrix(0.188108,0.006779,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188108,0.006779,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188108,0.006779,-0.009003,0.249838,0,0);}
.m66_c00242{transform:matrix(0.188418,0.006790,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188418,0.006790,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188418,0.006790,-0.009003,0.249838,0,0);}
.mad_c00242{transform:matrix(0.188593,0.006796,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188593,0.006796,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188593,0.006796,-0.009003,0.249838,0,0);}
.me6_c00242{transform:matrix(0.189576,0.009109,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189576,0.009109,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189576,0.009109,-0.011998,0.249712,0,0);}
.m95_c00242{transform:matrix(0.189662,0.006835,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189662,0.006835,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189662,0.006835,-0.009003,0.249838,0,0);}
.mb8_c00242{transform:matrix(0.189732,0.006837,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189732,0.006837,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189732,0.006837,-0.009003,0.249838,0,0);}
.md9_c00242{transform:matrix(0.189976,0.009128,-0.011998,0.249712,0,0);-ms-transform:matrix(0.189976,0.009128,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.189976,0.009128,-0.011998,0.249712,0,0);}
.m65_c00242{transform:matrix(0.190017,0.006847,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190017,0.006847,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190017,0.006847,-0.009003,0.249838,0,0);}
.m1e_c00242{transform:matrix(0.190426,0.006862,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190426,0.006862,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190426,0.006862,-0.009003,0.249838,0,0);}
.m56_c00242{transform:matrix(0.190691,0.006872,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190691,0.006872,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190691,0.006872,-0.009003,0.249838,0,0);}
.mc6_c00242{transform:matrix(0.190816,0.006876,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190816,0.006876,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190816,0.006876,-0.009003,0.249838,0,0);}
.mcd_c00242{transform:matrix(0.191070,0.012827,-0.016746,0.249439,0,0);-ms-transform:matrix(0.191070,0.012827,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.191070,0.012827,-0.016746,0.249439,0,0);}
.mb0_c00242{transform:matrix(0.191406,0.006898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191406,0.006898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191406,0.006898,-0.009003,0.249838,0,0);}
.ma6_c00242{transform:matrix(0.191815,0.006912,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191815,0.006912,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191815,0.006912,-0.009003,0.249838,0,0);}
.m50_c00242{transform:matrix(0.191830,0.006913,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191830,0.006913,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191830,0.006913,-0.009003,0.249838,0,0);}
.m68_c00242{transform:matrix(0.192475,0.006936,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192475,0.006936,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192475,0.006936,-0.009003,0.249838,0,0);}
.ma2_c00242{transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192555,0.006939,-0.009003,0.249838,0,0);}
.mcb_c00242{transform:matrix(0.192691,0.012936,-0.016746,0.249439,0,0);-ms-transform:matrix(0.192691,0.012936,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.192691,0.012936,-0.016746,0.249439,0,0);}
.mb5_c00242{transform:matrix(0.192705,0.006944,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192705,0.006944,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192705,0.006944,-0.009003,0.249838,0,0);}
.m27_c00242{transform:matrix(0.193399,0.006969,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193399,0.006969,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193399,0.006969,-0.009003,0.249838,0,0);}
.m9_c00242{transform:matrix(0.194064,0.006993,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194064,0.006993,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194064,0.006993,-0.009003,0.249838,0,0);}
.mc2_c00242{transform:matrix(0.194119,0.006995,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194119,0.006995,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194119,0.006995,-0.009003,0.249838,0,0);}
.mcc_c00242{transform:matrix(0.194148,0.013034,-0.016746,0.249439,0,0);-ms-transform:matrix(0.194148,0.013034,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.194148,0.013034,-0.016746,0.249439,0,0);}
.mc4_c00242{transform:matrix(0.194963,0.007026,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194963,0.007026,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194963,0.007026,-0.009003,0.249838,0,0);}
.m41_c00242{transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194998,0.007027,-0.009003,0.249838,0,0);}
.mab_c00242{transform:matrix(0.195028,0.007028,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195028,0.007028,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195028,0.007028,-0.009003,0.249838,0,0);}
.ma1_c00242{transform:matrix(0.195138,0.007032,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195138,0.007032,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195138,0.007032,-0.009003,0.249838,0,0);}
.m67_c00242{transform:matrix(0.196063,0.007065,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196063,0.007065,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196063,0.007065,-0.009003,0.249838,0,0);}
.mfe_c00242{transform:matrix(0.196212,0.012583,-0.015999,0.249488,0,0);-ms-transform:matrix(0.196212,0.012583,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.196212,0.012583,-0.015999,0.249488,0,0);}
.mfc_c00242{transform:matrix(0.196267,0.012586,-0.015999,0.249488,0,0);-ms-transform:matrix(0.196267,0.012586,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.196267,0.012586,-0.015999,0.249488,0,0);}
.ma4_c00242{transform:matrix(0.196577,0.007084,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196577,0.007084,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196577,0.007084,-0.009003,0.249838,0,0);}
.m49_c00242{transform:matrix(0.196647,0.007086,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196647,0.007086,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196647,0.007086,-0.009003,0.249838,0,0);}
.m57_c00242{transform:matrix(0.196912,0.007096,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196912,0.007096,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196912,0.007096,-0.009003,0.249838,0,0);}
.m96_c00242{transform:matrix(0.197522,0.007118,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197522,0.007118,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197522,0.007118,-0.009003,0.249838,0,0);}
.mba_c00242{transform:matrix(0.198016,0.007136,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198016,0.007136,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198016,0.007136,-0.009003,0.249838,0,0);}
.md6_c00242{transform:matrix(0.198696,0.009547,-0.011998,0.249712,0,0);-ms-transform:matrix(0.198696,0.009547,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.198696,0.009547,-0.011998,0.249712,0,0);}
.mbb_c00242{transform:matrix(0.199001,0.007171,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199001,0.007171,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199001,0.007171,-0.009003,0.249838,0,0);}
.m70_c00242{transform:matrix(0.199291,0.007182,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199291,0.007182,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199291,0.007182,-0.009003,0.249838,0,0);}
.md3_c00242{transform:matrix(0.199375,0.009580,-0.011998,0.249712,0,0);-ms-transform:matrix(0.199375,0.009580,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.199375,0.009580,-0.011998,0.249712,0,0);}
.m4b_c00242{transform:matrix(0.199421,0.007186,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199421,0.007186,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199421,0.007186,-0.009003,0.249838,0,0);}
.md7_c00242{transform:matrix(0.199620,0.009591,-0.011998,0.249712,0,0);-ms-transform:matrix(0.199620,0.009591,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.199620,0.009591,-0.011998,0.249712,0,0);}
.m9c_c00242{transform:matrix(0.199745,0.007198,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199745,0.007198,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199745,0.007198,-0.009003,0.249838,0,0);}
.m2c_c00242{transform:matrix(0.199775,0.007199,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199775,0.007199,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199775,0.007199,-0.009003,0.249838,0,0);}
.m87_c00242{transform:matrix(0.199890,0.007203,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199890,0.007203,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199890,0.007203,-0.009003,0.249838,0,0);}
.mb9_c00242{transform:matrix(0.200045,0.007209,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200045,0.007209,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200045,0.007209,-0.009003,0.249838,0,0);}
.ma7_c00242{transform:matrix(0.200225,0.007215,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200225,0.007215,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200225,0.007215,-0.009003,0.249838,0,0);}
.mc0_c00242{transform:matrix(0.200325,0.007219,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200325,0.007219,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200325,0.007219,-0.009003,0.249838,0,0);}
.m4d_c00242{transform:matrix(0.200425,0.007223,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200425,0.007223,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200425,0.007223,-0.009003,0.249838,0,0);}
.m90_c00242{transform:matrix(0.200900,0.007240,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200900,0.007240,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200900,0.007240,-0.009003,0.249838,0,0);}
.me_c00242{transform:matrix(0.200935,0.007241,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200935,0.007241,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200935,0.007241,-0.009003,0.249838,0,0);}
.m7f_c00242{transform:matrix(0.201614,0.007265,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201614,0.007265,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201614,0.007265,-0.009003,0.249838,0,0);}
.m8e_c00242{transform:matrix(0.201939,0.007277,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201939,0.007277,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201939,0.007277,-0.009003,0.249838,0,0);}
.m89_c00242{transform:matrix(0.202059,0.007281,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202059,0.007281,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202059,0.007281,-0.009003,0.249838,0,0);}
.m9b_c00242{transform:matrix(0.202139,0.007284,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202139,0.007284,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202139,0.007284,-0.009003,0.249838,0,0);}
.mb_c00242{transform:matrix(0.202354,0.007292,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202354,0.007292,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202354,0.007292,-0.009003,0.249838,0,0);}
.md2_c00242{transform:matrix(0.202771,0.009743,-0.011998,0.249712,0,0);-ms-transform:matrix(0.202771,0.009743,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.202771,0.009743,-0.011998,0.249712,0,0);}
.m61_c00242{transform:matrix(0.202883,0.007311,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202883,0.007311,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202883,0.007311,-0.009003,0.249838,0,0);}
.m83_c00242{transform:matrix(0.203158,0.007321,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203158,0.007321,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203158,0.007321,-0.009003,0.249838,0,0);}
.m25_c00242{transform:matrix(0.203598,0.007337,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203598,0.007337,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203598,0.007337,-0.009003,0.249838,0,0);}
.m80_c00242{transform:matrix(0.205936,0.007421,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205936,0.007421,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205936,0.007421,-0.009003,0.249838,0,0);}
.mef_c00242{transform:matrix(0.205961,0.013827,-0.016746,0.249439,0,0);-ms-transform:matrix(0.205961,0.013827,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.205961,0.013827,-0.016746,0.249439,0,0);}
.med_c00242{transform:matrix(0.205996,0.013829,-0.016746,0.249439,0,0);-ms-transform:matrix(0.205996,0.013829,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.205996,0.013829,-0.016746,0.249439,0,0);}
.m28_c00242{transform:matrix(0.206276,0.007433,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206276,0.007433,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206276,0.007433,-0.009003,0.249838,0,0);}
.m71_c00242{transform:matrix(0.206516,0.007442,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206516,0.007442,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206516,0.007442,-0.009003,0.249838,0,0);}
.m60_c00242{transform:matrix(0.206531,0.007443,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206531,0.007443,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206531,0.007443,-0.009003,0.249838,0,0);}
.me5_c00242{transform:matrix(0.207026,0.009947,-0.011998,0.249712,0,0);-ms-transform:matrix(0.207026,0.009947,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.207026,0.009947,-0.011998,0.249712,0,0);}
.m59_c00242{transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);}
.m9d_c00242{transform:matrix(0.207735,0.007486,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207735,0.007486,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207735,0.007486,-0.009003,0.249838,0,0);}
.mec_c00242{transform:matrix(0.207987,0.013963,-0.016746,0.249439,0,0);-ms-transform:matrix(0.207987,0.013963,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.207987,0.013963,-0.016746,0.249439,0,0);}
.m12_c00242{transform:matrix(0.208180,0.007502,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208180,0.007502,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208180,0.007502,-0.009003,0.249838,0,0);}
.m16_c00242{transform:matrix(0.208285,0.007506,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208285,0.007506,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208285,0.007506,-0.009003,0.249838,0,0);}
.m74_c00242{transform:matrix(0.209029,0.007533,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209029,0.007533,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209029,0.007533,-0.009003,0.249838,0,0);}
.m35_c00242{transform:matrix(0.209104,0.007535,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209104,0.007535,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209104,0.007535,-0.009003,0.249838,0,0);}
.m81_c00242{transform:matrix(0.210598,0.007589,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210598,0.007589,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210598,0.007589,-0.009003,0.249838,0,0);}
.m88_c00242{transform:matrix(0.210693,0.007593,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210693,0.007593,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210693,0.007593,-0.009003,0.249838,0,0);}
.m39_c00242{transform:matrix(0.211143,0.007609,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211143,0.007609,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211143,0.007609,-0.009003,0.249838,0,0);}
.m1f_c00242{transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211463,0.007620,-0.009003,0.249838,0,0);}
.ma5_c00242{transform:matrix(0.211688,0.007628,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211688,0.007628,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211688,0.007628,-0.009003,0.249838,0,0);}
.mbc_c00242{transform:matrix(0.212057,0.007642,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212057,0.007642,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212057,0.007642,-0.009003,0.249838,0,0);}
.mf7_c00242{transform:matrix(0.212898,0.013653,-0.015999,0.249488,0,0);-ms-transform:matrix(0.212898,0.013653,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.212898,0.013653,-0.015999,0.249488,0,0);}
.m85_c00242{transform:matrix(0.213032,0.007677,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213032,0.007677,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213032,0.007677,-0.009003,0.249838,0,0);}
.m24_c00242{transform:matrix(0.213232,0.007684,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213232,0.007684,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213232,0.007684,-0.009003,0.249838,0,0);}
.mce_c00242{transform:matrix(0.213355,0.014323,-0.016746,0.249439,0,0);-ms-transform:matrix(0.213355,0.014323,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.213355,0.014323,-0.016746,0.249439,0,0);}
.mcf_c00242{transform:matrix(0.213729,0.014349,-0.016746,0.249439,0,0);-ms-transform:matrix(0.213729,0.014349,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.213729,0.014349,-0.016746,0.249439,0,0);}
.md4_c00242{transform:matrix(0.213838,0.010275,-0.011998,0.249712,0,0);-ms-transform:matrix(0.213838,0.010275,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.213838,0.010275,-0.011998,0.249712,0,0);}
.ma9_c00242{transform:matrix(0.214776,0.007740,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214776,0.007740,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214776,0.007740,-0.009003,0.249838,0,0);}
.m8d_c00242{transform:matrix(0.215050,0.007750,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215050,0.007750,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215050,0.007750,-0.009003,0.249838,0,0);}
.mb1_c00242{transform:matrix(0.215055,0.007750,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215055,0.007750,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215055,0.007750,-0.009003,0.249838,0,0);}
.m33_c00242{transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215065,0.007750,-0.009003,0.249838,0,0);}
.m76_c00242{transform:matrix(0.215315,0.007759,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215315,0.007759,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215315,0.007759,-0.009003,0.249838,0,0);}
.m75_c00242{transform:matrix(0.215775,0.007776,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215775,0.007776,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215775,0.007776,-0.009003,0.249838,0,0);}
.m6d_c00242{transform:matrix(0.216594,0.007805,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216594,0.007805,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216594,0.007805,-0.009003,0.249838,0,0);}
.m9a_c00242{transform:matrix(0.216624,0.007806,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216624,0.007806,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216624,0.007806,-0.009003,0.249838,0,0);}
.md0_c00242{transform:matrix(0.216897,0.014561,-0.016746,0.249439,0,0);-ms-transform:matrix(0.216897,0.014561,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.216897,0.014561,-0.016746,0.249439,0,0);}
.m5a_c00242{transform:matrix(0.216979,0.007819,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216979,0.007819,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216979,0.007819,-0.009003,0.249838,0,0);}
.m7_c00242{transform:matrix(0.217519,0.007839,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217519,0.007839,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217519,0.007839,-0.009003,0.249838,0,0);}
.m7b_c00242{transform:matrix(0.217614,0.007842,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217614,0.007842,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217614,0.007842,-0.009003,0.249838,0,0);}
.mf0_c00242{transform:matrix(0.218034,0.014638,-0.016746,0.249439,0,0);-ms-transform:matrix(0.218034,0.014638,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.218034,0.014638,-0.016746,0.249439,0,0);}
.m6_c00242{transform:matrix(0.218343,0.007868,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218343,0.007868,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218343,0.007868,-0.009003,0.249838,0,0);}
.m86_c00242{transform:matrix(0.220322,0.007940,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220322,0.007940,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220322,0.007940,-0.009003,0.249838,0,0);}
.m7a_c00242{transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220477,0.007945,-0.009003,0.249838,0,0);}
.m15_c00242{transform:matrix(0.221431,0.007980,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221431,0.007980,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221431,0.007980,-0.009003,0.249838,0,0);}
.m53_c00242{transform:matrix(0.222596,0.008021,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222596,0.008021,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222596,0.008021,-0.009003,0.249838,0,0);}
.m7d_c00242{transform:matrix(0.223145,0.008041,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223145,0.008041,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223145,0.008041,-0.009003,0.249838,0,0);}
.m48_c00242{transform:matrix(0.223860,0.008067,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223860,0.008067,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223860,0.008067,-0.009003,0.249838,0,0);}
.mc9_c00242{transform:matrix(0.226316,0.015194,-0.016746,0.249439,0,0);-ms-transform:matrix(0.226316,0.015194,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.226316,0.015194,-0.016746,0.249439,0,0);}
.mc8_c00242{transform:matrix(0.226535,0.015208,-0.016746,0.249439,0,0);-ms-transform:matrix(0.226535,0.015208,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.226535,0.015208,-0.016746,0.249439,0,0);}
.m6c_c00242{transform:matrix(0.226998,0.008180,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226998,0.008180,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226998,0.008180,-0.009003,0.249838,0,0);}
.m44_c00242{transform:matrix(0.227457,0.008197,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227457,0.008197,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227457,0.008197,-0.009003,0.249838,0,0);}
.mb3_c00242{transform:matrix(0.228906,0.008249,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228906,0.008249,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228906,0.008249,-0.009003,0.249838,0,0);}
.m6b_c00242{transform:matrix(0.229231,0.008261,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229231,0.008261,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229231,0.008261,-0.009003,0.249838,0,0);}
.mee_c00242{transform:matrix(0.230431,0.015470,-0.016746,0.249439,0,0);-ms-transform:matrix(0.230431,0.015470,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.230431,0.015470,-0.016746,0.249439,0,0);}
.mbf_c00242{transform:matrix(0.230915,0.008321,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230915,0.008321,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230915,0.008321,-0.009003,0.249838,0,0);}
.m54_c00242{transform:matrix(0.232119,0.008365,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232119,0.008365,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232119,0.008365,-0.009003,0.249838,0,0);}
.mb6_c00242{transform:matrix(0.233064,0.008399,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233064,0.008399,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233064,0.008399,-0.009003,0.249838,0,0);}
.m14_c00242{transform:matrix(0.237776,0.008568,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237776,0.008568,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237776,0.008568,-0.009003,0.249838,0,0);}
.m46_c00242{transform:matrix(0.238125,0.008581,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238125,0.008581,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238125,0.008581,-0.009003,0.249838,0,0);}
.me2_c00242{transform:matrix(0.239219,0.011494,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239219,0.011494,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239219,0.011494,-0.011998,0.249712,0,0);}
.me0_c00242{transform:matrix(0.243394,0.011695,-0.011998,0.249712,0,0);-ms-transform:matrix(0.243394,0.011695,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.243394,0.011695,-0.011998,0.249712,0,0);}
.mc7_c00242{transform:matrix(0.245128,0.016457,-0.016746,0.249439,0,0);-ms-transform:matrix(0.245128,0.016457,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.245128,0.016457,-0.016746,0.249439,0,0);}
.m17_c00242{transform:matrix(0.247045,0.008903,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247045,0.008903,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247045,0.008903,-0.009003,0.249838,0,0);}
.me3_c00242{transform:matrix(0.248548,0.011942,-0.011998,0.249712,0,0);-ms-transform:matrix(0.248548,0.011942,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.248548,0.011942,-0.011998,0.249712,0,0);}
.m8a_c00242{transform:matrix(0.252471,0.009098,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252471,0.009098,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252471,0.009098,-0.009003,0.249838,0,0);}
.m8_c00242{transform:matrix(0.253296,0.009128,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253296,0.009128,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253296,0.009128,-0.009003,0.249838,0,0);}
.m73_c00242{transform:matrix(0.256738,0.009252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256738,0.009252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256738,0.009252,-0.009003,0.249838,0,0);}
.meb_c00242{transform:matrix(0.256982,0.017252,-0.016746,0.249439,0,0);-ms-transform:matrix(0.256982,0.017252,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.256982,0.017252,-0.016746,0.249439,0,0);}
.mc3_c00242{transform:matrix(0.257568,0.009282,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257568,0.009282,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257568,0.009282,-0.009003,0.249838,0,0);}
.m47_c00242{transform:matrix(0.259322,0.009345,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259322,0.009345,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259322,0.009345,-0.009003,0.249838,0,0);}
.me4_c00242{transform:matrix(0.259441,0.012466,-0.011998,0.249712,0,0);-ms-transform:matrix(0.259441,0.012466,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.259441,0.012466,-0.011998,0.249712,0,0);}
.me7_c00242{transform:matrix(0.260574,0.012520,-0.011998,0.249712,0,0);-ms-transform:matrix(0.260574,0.012520,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.260574,0.012520,-0.011998,0.249712,0,0);}
.m19_c00242{transform:matrix(0.261051,0.009407,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261051,0.009407,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261051,0.009407,-0.009003,0.249838,0,0);}
.me1_c00242{transform:matrix(0.261713,0.012575,-0.011998,0.249712,0,0);-ms-transform:matrix(0.261713,0.012575,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.261713,0.012575,-0.011998,0.249712,0,0);}
.m72_c00242{transform:matrix(0.280138,0.010095,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280138,0.010095,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280138,0.010095,-0.009003,0.249838,0,0);}
.m93_c00242{transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);-ms-transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);}
.m8b_c00242{transform:matrix(0.363014,0.013082,-0.009003,0.249838,0,0);-ms-transform:matrix(0.363014,0.013082,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.363014,0.013082,-0.009003,0.249838,0,0);}
.maa_c00242{transform:matrix(0.429201,0.015467,-0.009003,0.249838,0,0);-ms-transform:matrix(0.429201,0.015467,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.429201,0.015467,-0.009003,0.249838,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:0.000000px;}
.fc0_c00242{color:transparent;}
.fs10_c00242{font-size:54.613457px;}
.fs11_c00242{font-size:55.652782px;}
.fsf_c00242{font-size:55.658486px;}
.fsc_c00242{font-size:56.713975px;}
.fsb_c00242{font-size:59.828959px;}
.fs3_c00242{font-size:60.878590px;}
.fs7_c00242{font-size:61.928221px;}
.fs12_c00242{font-size:61.953097px;}
.fsa_c00242{font-size:62.977852px;}
.fs6_c00242{font-size:64.027482px;}
.fs9_c00242{font-size:65.077113px;}
.fsd_c00242{font-size:65.109927px;}
.fse_c00242{font-size:66.160087px;}
.fs1_c00242{font-size:67.176375px;}
.fs4_c00242{font-size:68.226006px;}
.fs2_c00242{font-size:69.275637px;}
.fs8_c00242{font-size:72.424529px;}
.fs5_c00242{font-size:75.573422px;}
.fs0_c00242{font-size:87.119361px;}
.y0_c00242{bottom:0.000000px;}
.y103_c00242{bottom:21.579543px;}
.y102_c00242{bottom:23.048412px;}
.yfb_c00242{bottom:25.813860px;}
.y101_c00242{bottom:26.422926px;}
.y100_c00242{bottom:27.635082px;}
.yfa_c00242{bottom:28.145220px;}
.yff_c00242{bottom:28.386000px;}
.yfe_c00242{bottom:31.085880px;}
.yf9_c00242{bottom:31.735428px;}
.yfd_c00242{bottom:32.478042px;}
.yf8_c00242{bottom:33.957060px;}
.yf6_c00242{bottom:34.754797px;}
.yf5_c00242{bottom:37.020670px;}
.yfc_c00242{bottom:37.033434px;}
.yf4_c00242{bottom:38.941225px;}
.yf7_c00242{bottom:40.798500px;}
.yf3_c00242{bottom:44.085318px;}
.yf2_c00242{bottom:45.453525px;}
.yf1_c00242{bottom:47.588145px;}
.yf0_c00242{bottom:51.880500px;}
.yef_c00242{bottom:65.191734px;}
.yee_c00242{bottom:66.641274px;}
.yed_c00242{bottom:70.230784px;}
.yec_c00242{bottom:73.934806px;}
.yeb_c00242{bottom:75.227886px;}
.yea_c00242{bottom:76.741753px;}
.ye9_c00242{bottom:77.552041px;}
.ye8_c00242{bottom:81.727569px;}
.ye7_c00242{bottom:84.709813px;}
.ye6_c00242{bottom:85.747932px;}
.ye5_c00242{bottom:87.234669px;}
.ye4_c00242{bottom:92.031565px;}
.ye3_c00242{bottom:94.031221px;}
.ye2_c00242{bottom:94.969453px;}
.ye1_c00242{bottom:96.450061px;}
.ye0_c00242{bottom:98.734693px;}
.ydf_c00242{bottom:99.918877px;}
.yde_c00242{bottom:102.922789px;}
.ydd_c00242{bottom:104.508301px;}
.ydc_c00242{bottom:109.620756px;}
.ydb_c00242{bottom:112.143204px;}
.yda_c00242{bottom:114.209460px;}
.yd9_c00242{bottom:117.506340px;}
.yd8_c00242{bottom:119.004228px;}
.yd7_c00242{bottom:121.890492px;}
.yd5_c00242{bottom:121.971921px;}
.yd6_c00242{bottom:122.332500px;}
.yd4_c00242{bottom:123.579620px;}
.yd3_c00242{bottom:127.550475px;}
.yd2_c00242{bottom:129.116064px;}
.yd1_c00242{bottom:130.653815px;}
.yd0_c00242{bottom:133.000389px;}
.ycf_c00242{bottom:133.846298px;}
.yce_c00242{bottom:135.682734px;}
.ycd_c00242{bottom:139.618817px;}
.ycc_c00242{bottom:140.721000px;}
.ycb_c00242{bottom:144.480986px;}
.yca_c00242{bottom:145.122182px;}
.yc9_c00242{bottom:148.346967px;}
.yc8_c00242{bottom:149.163299px;}
.yc7_c00242{bottom:151.269515px;}
.yc6_c00242{bottom:153.737247px;}
.yc5_c00242{bottom:156.227025px;}
.yc4_c00242{bottom:159.926984px;}
.yc3_c00242{bottom:160.865247px;}
.yc2_c00242{bottom:161.923377px;}
.yc1_c00242{bottom:162.778683px;}
.yc0_c00242{bottom:164.652983px;}
.ybf_c00242{bottom:166.084455px;}
.ybe_c00242{bottom:167.597643px;}
.ybd_c00242{bottom:168.901136px;}
.ybc_c00242{bottom:179.965574px;}
.ybb_c00242{bottom:180.810863px;}
.yba_c00242{bottom:182.578877px;}
.yb9_c00242{bottom:185.093657px;}
.yb8_c00242{bottom:187.109477px;}
.yb7_c00242{bottom:188.193891px;}
.yb6_c00242{bottom:188.925564px;}
.yb5_c00242{bottom:189.954683px;}
.yb4_c00242{bottom:193.775587px;}
.yb3_c00242{bottom:194.643084px;}
.yb2_c00242{bottom:196.938327px;}
.yb1_c00242{bottom:199.001802px;}
.yb0_c00242{bottom:201.320656px;}
.yaf_c00242{bottom:202.228045px;}
.yae_c00242{bottom:204.612996px;}
.yad_c00242{bottom:205.613818px;}
.yac_c00242{bottom:210.759303px;}
.yab_c00242{bottom:211.793754px;}
.yaa_c00242{bottom:213.958668px;}
.ya9_c00242{bottom:214.836775px;}
.ya8_c00242{bottom:215.264131px;}
.ya7_c00242{bottom:216.816699px;}
.ya6_c00242{bottom:217.832763px;}
.ya5_c00242{bottom:218.703634px;}
.ya4_c00242{bottom:219.641587px;}
.ya3_c00242{bottom:228.363789px;}
.ya2_c00242{bottom:230.682535px;}
.ya1_c00242{bottom:231.661852px;}
.ya0_c00242{bottom:232.180765px;}
.y9f_c00242{bottom:233.254258px;}
.y9e_c00242{bottom:235.708099px;}
.y9d_c00242{bottom:237.737649px;}
.y9c_c00242{bottom:238.535013px;}
.y9b_c00242{bottom:246.359059px;}
.y9a_c00242{bottom:247.288723px;}
.y99_c00242{bottom:247.793110px;}
.y98_c00242{bottom:249.962520px;}
.y97_c00242{bottom:251.000062px;}
.y96_c00242{bottom:251.984941px;}
.y95_c00242{bottom:254.893152px;}
.y94_c00242{bottom:256.618614px;}
.y93_c00242{bottom:263.249031px;}
.y92_c00242{bottom:264.163305px;}
.y91_c00242{bottom:265.006218px;}
.y90_c00242{bottom:268.117036px;}
.y8f_c00242{bottom:268.850167px;}
.y8e_c00242{bottom:269.363788px;}
.y8d_c00242{bottom:271.711789px;}
.y8c_c00242{bottom:272.417124px;}
.y8b_c00242{bottom:273.893322px;}
.y8a_c00242{bottom:280.531029px;}
.y89_c00242{bottom:282.681957px;}
.y88_c00242{bottom:283.273419px;}
.y87_c00242{bottom:284.543121px;}
.y86_c00242{bottom:287.136741px;}
.y85_c00242{bottom:288.005385px;}
.y84_c00242{bottom:290.896977px;}
.y83_c00242{bottom:300.867888px;}
.y82_c00242{bottom:302.182369px;}
.y81_c00242{bottom:302.951694px;}
.y80_c00242{bottom:304.423248px;}
.y7f_c00242{bottom:305.378049px;}
.y7e_c00242{bottom:307.022875px;}
.y7d_c00242{bottom:307.613622px;}
.y7c_c00242{bottom:308.981307px;}
.y7b_c00242{bottom:316.741255px;}
.y7a_c00242{bottom:318.125113px;}
.y79_c00242{bottom:319.954471px;}
.y78_c00242{bottom:321.774622px;}
.y77_c00242{bottom:323.396080px;}
.y76_c00242{bottom:323.955237px;}
.y75_c00242{bottom:325.168644px;}
.y74_c00242{bottom:334.874212px;}
.y73_c00242{bottom:335.720527px;}
.y72_c00242{bottom:336.137407px;}
.y71_c00242{bottom:336.611635px;}
.y70_c00242{bottom:338.027029px;}
.y6f_c00242{bottom:338.587630px;}
.y6e_c00242{bottom:339.501081px;}
.y6d_c00242{bottom:340.550152px;}
.y6c_c00242{bottom:349.281885px;}
.y6b_c00242{bottom:350.050629px;}
.y6a_c00242{bottom:352.391462px;}
.y69_c00242{bottom:353.416449px;}
.y68_c00242{bottom:354.078584px;}
.y67_c00242{bottom:355.833178px;}
.y66_c00242{bottom:356.499741px;}
.y65_c00242{bottom:358.101449px;}
.y64_c00242{bottom:367.549937px;}
.y63_c00242{bottom:368.688526px;}
.y62_c00242{bottom:369.305544px;}
.y61_c00242{bottom:370.232022px;}
.y60_c00242{bottom:370.891915px;}
.y5f_c00242{bottom:372.079186px;}
.y5e_c00242{bottom:374.037874px;}
.y5d_c00242{bottom:374.835009px;}
.y5c_c00242{bottom:384.385733px;}
.y5b_c00242{bottom:384.928756px;}
.y5a_c00242{bottom:385.577701px;}
.y59_c00242{bottom:386.737432px;}
.y58_c00242{bottom:388.598596px;}
.y57_c00242{bottom:389.390695px;}
.y56_c00242{bottom:390.484060px;}
.y55_c00242{bottom:392.111310px;}
.y54_c00242{bottom:400.329745px;}
.y53_c00242{bottom:400.831608px;}
.y52_c00242{bottom:402.070800px;}
.y51_c00242{bottom:402.496509px;}
.y50_c00242{bottom:402.827934px;}
.y4f_c00242{bottom:404.439564px;}
.y4e_c00242{bottom:404.938983px;}
.y4d_c00242{bottom:406.028311px;}
.y4c_c00242{bottom:406.495520px;}
.y4b_c00242{bottom:407.221144px;}
.y4a_c00242{bottom:420.448768px;}
.y49_c00242{bottom:421.032279px;}
.y48_c00242{bottom:423.052446px;}
.y47_c00242{bottom:424.511850px;}
.y46_c00242{bottom:425.610723px;}
.y45_c00242{bottom:427.202805px;}
.y44_c00242{bottom:434.755839px;}
.y43_c00242{bottom:435.373126px;}
.y42_c00242{bottom:436.550151px;}
.y41_c00242{bottom:437.076205px;}
.y40_c00242{bottom:437.998498px;}
.y3f_c00242{bottom:438.453624px;}
.y3e_c00242{bottom:439.437558px;}
.y3d_c00242{bottom:439.955404px;}
.y3c_c00242{bottom:440.960209px;}
.y3b_c00242{bottom:452.270334px;}
.y3a_c00242{bottom:452.521515px;}
.y39_c00242{bottom:453.847012px;}
.y38_c00242{bottom:454.223919px;}
.y37_c00242{bottom:454.709028px;}
.y36_c00242{bottom:456.102687px;}
.y35_c00242{bottom:456.718678px;}
.y34_c00242{bottom:457.208459px;}
.y33_c00242{bottom:457.965538px;}
.y32_c00242{bottom:469.269197px;}
.y31_c00242{bottom:470.860995px;}
.y30_c00242{bottom:472.422392px;}
.y2f_c00242{bottom:473.637540px;}
.y2e_c00242{bottom:474.249090px;}
.y2d_c00242{bottom:475.100103px;}
.y2c_c00242{bottom:475.817425px;}
.y2b_c00242{bottom:476.322447px;}
.y2a_c00242{bottom:486.795355px;}
.y29_c00242{bottom:488.074251px;}
.y28_c00242{bottom:488.652483px;}
.y27_c00242{bottom:489.969516px;}
.y26_c00242{bottom:490.560492px;}
.y25_c00242{bottom:491.312739px;}
.y24_c00242{bottom:492.773034px;}
.y23_c00242{bottom:493.057587px;}
.y22_c00242{bottom:504.475333px;}
.y21_c00242{bottom:504.932929px;}
.y20_c00242{bottom:505.915108px;}
.y1f_c00242{bottom:506.357854px;}
.y1e_c00242{bottom:507.345865px;}
.y1d_c00242{bottom:507.746356px;}
.y1c_c00242{bottom:508.327909px;}
.y1b_c00242{bottom:509.006811px;}
.y1a_c00242{bottom:509.525710px;}
.y19_c00242{bottom:520.639694px;}
.y18_c00242{bottom:521.082385px;}
.y17_c00242{bottom:523.248488px;}
.y16_c00242{bottom:523.926957px;}
.y15_c00242{bottom:525.970519px;}
.y14_c00242{bottom:526.463985px;}
.y13_c00242{bottom:528.679146px;}
.y12_c00242{bottom:529.224640px;}
.y11_c00242{bottom:539.444626px;}
.y10_c00242{bottom:540.689529px;}
.yf_c00242{bottom:541.924550px;}
.ye_c00242{bottom:543.324500px;}
.yd_c00242{bottom:544.048194px;}
.yc_c00242{bottom:544.393834px;}
.yb_c00242{bottom:545.416662px;}
.ya_c00242{bottom:557.568444px;}
.y9_c00242{bottom:558.045102px;}
.y8_c00242{bottom:560.072451px;}
.y7_c00242{bottom:560.387136px;}
.y6_c00242{bottom:561.185796px;}
.y5_c00242{bottom:562.060393px;}
.y4_c00242{bottom:563.232747px;}
.y3_c00242{bottom:566.414238px;}
.y2_c00242{bottom:571.967220px;}
.y1_c00242{bottom:576.723000px;}
.h12_c00242{height:54.613457px;}
.h13_c00242{height:55.652782px;}
.h11_c00242{height:55.658486px;}
.he_c00242{height:56.713975px;}
.hd_c00242{height:59.828959px;}
.h5_c00242{height:60.878590px;}
.h9_c00242{height:61.928221px;}
.h14_c00242{height:61.953097px;}
.hc_c00242{height:62.977852px;}
.h8_c00242{height:64.027482px;}
.hb_c00242{height:65.077113px;}
.hf_c00242{height:65.109927px;}
.h10_c00242{height:66.160087px;}
.h3_c00242{height:67.176375px;}
.h6_c00242{height:68.226006px;}
.h4_c00242{height:69.275637px;}
.ha_c00242{height:72.424529px;}
.h7_c00242{height:75.573422px;}
.h2_c00242{height:87.119361px;}
.h1_c00242{height:618.750000px;}
.h0_c00242{height:619.050000px;}
.w0_c00242{width:359.100000px;}
.w1_c00242{width:359.250000px;}
.x0_c00242{left:0.000000px;}
.x7c_c00242{left:23.978095px;}
.x69_c00242{left:25.128255px;}
.x4a_c00242{left:26.438646px;}
.x46_c00242{left:27.509088px;}
.x36_c00242{left:28.747146px;}
.x1_c00242{left:29.892000px;}
.x4_c00242{left:31.258915px;}
.x79_c00242{left:32.489081px;}
.x6e_c00242{left:34.135306px;}
.x41_c00242{left:35.778837px;}
.x1b_c00242{left:37.818282px;}
.x11_c00242{left:39.433692px;}
.x76_c00242{left:40.771599px;}
.x6a_c00242{left:47.862957px;}
.x1c_c00242{left:49.628541px;}
.x61_c00242{left:51.587890px;}
.x7d_c00242{left:53.107756px;}
.x63_c00242{left:55.275780px;}
.x12_c00242{left:57.027769px;}
.x39_c00242{left:58.799091px;}
.x4f_c00242{left:65.072703px;}
.x4b_c00242{left:66.855945px;}
.x5c_c00242{left:70.257972px;}
.x27_c00242{left:72.598642px;}
.x2f_c00242{left:75.039321px;}
.xb_c00242{left:77.498981px;}
.x5_c00242{left:82.153807px;}
.x58_c00242{left:83.661352px;}
.x22_c00242{left:84.955867px;}
.x7f_c00242{left:86.529018px;}
.x17_c00242{left:90.273490px;}
.xc_c00242{left:93.211198px;}
.x28_c00242{left:94.850611px;}
.x6f_c00242{left:95.935174px;}
.x30_c00242{left:98.528146px;}
.x82_c00242{left:100.334631px;}
.x6b_c00242{left:102.012132px;}
.x62_c00242{left:104.951635px;}
.x42_c00242{left:106.551156px;}
.x1d_c00242{left:110.387491px;}
.x80_c00242{left:111.946120px;}
.x64_c00242{left:114.175308px;}
.x47_c00242{left:116.611369px;}
.x23_c00242{left:117.648426px;}
.x6_c00242{left:120.122584px;}
.x29_c00242{left:122.811730px;}
.x83_c00242{left:123.871965px;}
.xd_c00242{left:126.076395px;}
.x13_c00242{left:128.408182px;}
.x53_c00242{left:130.409935px;}
.x7e_c00242{left:131.842555px;}
.x18_c00242{left:139.343196px;}
.x1e_c00242{left:141.671689px;}
.x31_c00242{left:143.153463px;}
.x14_c00242{left:144.308631px;}
.x59_c00242{left:145.404115px;}
.x7a_c00242{left:152.652297px;}
.x7_c00242{left:154.776612px;}
.x50_c00242{left:156.103824px;}
.x5a_c00242{left:158.907625px;}
.x2_c00242{left:161.864895px;}
.x32_c00242{left:163.819209px;}
.x1f_c00242{left:166.232199px;}
.x8_c00242{left:168.422331px;}
.x5d_c00242{left:170.005368px;}
.x81_c00242{left:173.280279px;}
.x75_c00242{left:174.960138px;}
.x65_c00242{left:175.988352px;}
.x5b_c00242{left:178.169439px;}
.x43_c00242{left:181.984512px;}
.x2a_c00242{left:186.051819px;}
.x24_c00242{left:187.783963px;}
.xe_c00242{left:189.574333px;}
.x3f_c00242{left:192.433404px;}
.x70_c00242{left:194.345206px;}
.x5e_c00242{left:196.590391px;}
.x51_c00242{left:198.105294px;}
.x4c_c00242{left:200.069908px;}
.x54_c00242{left:202.382890px;}
.x66_c00242{left:203.395363px;}
.x33_c00242{left:205.651416px;}
.x3d_c00242{left:206.950831px;}
.x2b_c00242{left:208.090893px;}
.x15_c00242{left:210.136075px;}
.x3a_c00242{left:211.413823px;}
.x44_c00242{left:213.967092px;}
.x37_c00242{left:215.468346px;}
.x72_c00242{left:218.545090px;}
.x20_c00242{left:221.017035px;}
.x6c_c00242{left:222.112263px;}
.x2c_c00242{left:225.170391px;}
.x48_c00242{left:227.824653px;}
.x34_c00242{left:229.534563px;}
.x16_c00242{left:232.003132px;}
.x38_c00242{left:233.118070px;}
.x55_c00242{left:237.617121px;}
.x3b_c00242{left:242.916910px;}
.x73_c00242{left:244.444975px;}
.xf_c00242{left:245.622500px;}
.x49_c00242{left:246.721251px;}
.x25_c00242{left:247.726029px;}
.x71_c00242{left:251.125437px;}
.x5f_c00242{left:252.169756px;}
.x56_c00242{left:254.030191px;}
.x9_c00242{left:256.408945px;}
.x52_c00242{left:257.596405px;}
.x19_c00242{left:259.764559px;}
.x4d_c00242{left:260.994112px;}
.x60_c00242{left:265.083924px;}
.x3e_c00242{left:267.134560px;}
.x67_c00242{left:270.966454px;}
.x6d_c00242{left:274.230066px;}
.xa_c00242{left:277.130932px;}
.x77_c00242{left:279.683817px;}
.x1a_c00242{left:282.622368px;}
.x2d_c00242{left:285.311514px;}
.x45_c00242{left:287.044482px;}
.x40_c00242{left:288.054700px;}
.x78_c00242{left:289.478172px;}
.x7b_c00242{left:292.161149px;}
.x3c_c00242{left:294.459087px;}
.x2e_c00242{left:296.695348px;}
.x21_c00242{left:298.242583px;}
.x10_c00242{left:302.111440px;}
.x68_c00242{left:303.253284px;}
.x74_c00242{left:304.883017px;}
.x4e_c00242{left:307.057449px;}
.x26_c00242{left:308.844849px;}
.x35_c00242{left:310.971126px;}
.x57_c00242{left:313.718443px;}
.x3_c00242{left:315.960146px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.fs10_c00242{font-size:48.545295pt;}
.fs11_c00242{font-size:49.469140pt;}
.fsf_c00242{font-size:49.474210pt;}
.fsc_c00242{font-size:50.412422pt;}
.fsb_c00242{font-size:53.181297pt;}
.fs3_c00242{font-size:54.114302pt;}
.fs7_c00242{font-size:55.047307pt;}
.fs12_c00242{font-size:55.069420pt;}
.fsa_c00242{font-size:55.980313pt;}
.fs6_c00242{font-size:56.913318pt;}
.fs9_c00242{font-size:57.846323pt;}
.fsd_c00242{font-size:57.875491pt;}
.fse_c00242{font-size:58.808966pt;}
.fs1_c00242{font-size:59.712333pt;}
.fs4_c00242{font-size:60.645339pt;}
.fs2_c00242{font-size:61.578344pt;}
.fs8_c00242{font-size:64.377359pt;}
.fs5_c00242{font-size:67.176375pt;}
.fs0_c00242{font-size:77.439432pt;}
.y0_c00242{bottom:0.000000pt;}
.y103_c00242{bottom:19.181816pt;}
.y102_c00242{bottom:20.487477pt;}
.yfb_c00242{bottom:22.945653pt;}
.y101_c00242{bottom:23.487045pt;}
.y100_c00242{bottom:24.564517pt;}
.yfa_c00242{bottom:25.017973pt;}
.yff_c00242{bottom:25.232000pt;}
.yfe_c00242{bottom:27.631893pt;}
.yf9_c00242{bottom:28.209269pt;}
.yfd_c00242{bottom:28.869371pt;}
.yf8_c00242{bottom:30.184053pt;}
.yf6_c00242{bottom:30.893153pt;}
.yf5_c00242{bottom:32.907263pt;}
.yfc_c00242{bottom:32.918608pt;}
.yf4_c00242{bottom:34.614423pt;}
.yf7_c00242{bottom:36.265333pt;}
.yf3_c00242{bottom:39.186949pt;}
.yf2_c00242{bottom:40.403133pt;}
.yf1_c00242{bottom:42.300573pt;}
.yf0_c00242{bottom:46.116000pt;}
.yef_c00242{bottom:57.948208pt;}
.yee_c00242{bottom:59.236688pt;}
.yed_c00242{bottom:62.427364pt;}
.yec_c00242{bottom:65.719828pt;}
.yeb_c00242{bottom:66.869232pt;}
.yea_c00242{bottom:68.214892pt;}
.ye9_c00242{bottom:68.935148pt;}
.ye8_c00242{bottom:72.646728pt;}
.ye7_c00242{bottom:75.297612pt;}
.ye6_c00242{bottom:76.220384pt;}
.ye5_c00242{bottom:77.541928pt;}
.ye4_c00242{bottom:81.805836pt;}
.ye3_c00242{bottom:83.583308pt;}
.ye2_c00242{bottom:84.417292pt;}
.ye1_c00242{bottom:85.733388pt;}
.ye0_c00242{bottom:87.764172pt;}
.ydf_c00242{bottom:88.816780pt;}
.yde_c00242{bottom:91.486924pt;}
.ydd_c00242{bottom:92.896268pt;}
.ydc_c00242{bottom:97.440672pt;}
.ydb_c00242{bottom:99.682848pt;}
.yda_c00242{bottom:101.519520pt;}
.yd9_c00242{bottom:104.450080pt;}
.yd8_c00242{bottom:105.781536pt;}
.yd7_c00242{bottom:108.347104pt;}
.yd5_c00242{bottom:108.419485pt;}
.yd6_c00242{bottom:108.740000pt;}
.yd4_c00242{bottom:109.848551pt;}
.yd3_c00242{bottom:113.378200pt;}
.yd2_c00242{bottom:114.769835pt;}
.yd1_c00242{bottom:116.136724pt;}
.yd0_c00242{bottom:118.222568pt;}
.ycf_c00242{bottom:118.974487pt;}
.yce_c00242{bottom:120.606875pt;}
.ycd_c00242{bottom:124.105615pt;}
.ycc_c00242{bottom:125.085333pt;}
.ycb_c00242{bottom:128.427543pt;}
.yca_c00242{bottom:128.997495pt;}
.yc9_c00242{bottom:131.863971pt;}
.yc8_c00242{bottom:132.589599pt;}
.yc7_c00242{bottom:134.461791pt;}
.yc6_c00242{bottom:136.655331pt;}
.yc5_c00242{bottom:138.868467pt;}
.yc4_c00242{bottom:142.157319pt;}
.yc3_c00242{bottom:142.991331pt;}
.yc2_c00242{bottom:143.931891pt;}
.yc1_c00242{bottom:144.692163pt;}
.yc0_c00242{bottom:146.358207pt;}
.ybf_c00242{bottom:147.630627pt;}
.ybe_c00242{bottom:148.975683pt;}
.ybd_c00242{bottom:150.134343pt;}
.ybc_c00242{bottom:159.969399pt;}
.ybb_c00242{bottom:160.720767pt;}
.yba_c00242{bottom:162.292335pt;}
.yb9_c00242{bottom:164.527695pt;}
.yb8_c00242{bottom:166.319535pt;}
.yb7_c00242{bottom:167.283459pt;}
.yb6_c00242{bottom:167.933835pt;}
.yb5_c00242{bottom:168.848607pt;}
.yb4_c00242{bottom:172.244967pt;}
.yb3_c00242{bottom:173.016075pt;}
.yb2_c00242{bottom:175.056291pt;}
.yb1_c00242{bottom:176.890491pt;}
.yb0_c00242{bottom:178.951695pt;}
.yaf_c00242{bottom:179.758263pt;}
.yae_c00242{bottom:181.878219pt;}
.yad_c00242{bottom:182.767839pt;}
.yac_c00242{bottom:187.341603pt;}
.yab_c00242{bottom:188.261115pt;}
.yaa_c00242{bottom:190.185483pt;}
.ya9_c00242{bottom:190.966023pt;}
.ya8_c00242{bottom:191.345895pt;}
.ya7_c00242{bottom:192.725955pt;}
.ya6_c00242{bottom:193.629123pt;}
.ya5_c00242{bottom:194.403231pt;}
.ya4_c00242{bottom:195.236967pt;}
.ya3_c00242{bottom:202.990035pt;}
.ya2_c00242{bottom:205.051143pt;}
.ya1_c00242{bottom:205.921647pt;}
.ya0_c00242{bottom:206.382903pt;}
.y9f_c00242{bottom:207.337119pt;}
.y9e_c00242{bottom:209.518311pt;}
.y9d_c00242{bottom:211.322355pt;}
.y9c_c00242{bottom:212.031123pt;}
.y9b_c00242{bottom:218.985831pt;}
.y9a_c00242{bottom:219.812199pt;}
.y99_c00242{bottom:220.260543pt;}
.y98_c00242{bottom:222.188907pt;}
.y97_c00242{bottom:223.111167pt;}
.y96_c00242{bottom:223.986615pt;}
.y95_c00242{bottom:226.571691pt;}
.y94_c00242{bottom:228.105435pt;}
.y93_c00242{bottom:233.999139pt;}
.y92_c00242{bottom:234.811827pt;}
.y91_c00242{bottom:235.561083pt;}
.y90_c00242{bottom:238.326255pt;}
.y8f_c00242{bottom:238.977927pt;}
.y8e_c00242{bottom:239.434479pt;}
.y8d_c00242{bottom:241.521591pt;}
.y8c_c00242{bottom:242.148555pt;}
.y8b_c00242{bottom:243.460731pt;}
.y8a_c00242{bottom:249.360915pt;}
.y89_c00242{bottom:251.272851pt;}
.y88_c00242{bottom:251.798595pt;}
.y87_c00242{bottom:252.927219pt;}
.y86_c00242{bottom:255.232659pt;}
.y85_c00242{bottom:256.004787pt;}
.y84_c00242{bottom:258.575091pt;}
.y83_c00242{bottom:267.438123pt;}
.y82_c00242{bottom:268.606551pt;}
.y81_c00242{bottom:269.290395pt;}
.y80_c00242{bottom:270.598443pt;}
.y7f_c00242{bottom:271.447155pt;}
.y7e_c00242{bottom:272.909223pt;}
.y7d_c00242{bottom:273.434331pt;}
.y7c_c00242{bottom:274.650051pt;}
.y7b_c00242{bottom:281.547783pt;}
.y7a_c00242{bottom:282.777879pt;}
.y79_c00242{bottom:284.403975pt;}
.y78_c00242{bottom:286.021887pt;}
.y77_c00242{bottom:287.463183pt;}
.y76_c00242{bottom:287.960211pt;}
.y75_c00242{bottom:289.038795pt;}
.y74_c00242{bottom:297.665967pt;}
.y73_c00242{bottom:298.418247pt;}
.y72_c00242{bottom:298.788807pt;}
.y71_c00242{bottom:299.210343pt;}
.y70_c00242{bottom:300.468471pt;}
.y6f_c00242{bottom:300.966783pt;}
.y6e_c00242{bottom:301.778739pt;}
.y6d_c00242{bottom:302.711247pt;}
.y6c_c00242{bottom:310.472787pt;}
.y6b_c00242{bottom:311.156115pt;}
.y6a_c00242{bottom:313.236855pt;}
.y69_c00242{bottom:314.147955pt;}
.y68_c00242{bottom:314.736519pt;}
.y67_c00242{bottom:316.296159pt;}
.y66_c00242{bottom:316.888659pt;}
.y65_c00242{bottom:318.312399pt;}
.y64_c00242{bottom:326.711055pt;}
.y63_c00242{bottom:327.723135pt;}
.y62_c00242{bottom:328.271595pt;}
.y61_c00242{bottom:329.095131pt;}
.y60_c00242{bottom:329.681703pt;}
.y5f_c00242{bottom:330.737055pt;}
.y5e_c00242{bottom:332.478111pt;}
.y5d_c00242{bottom:333.186675pt;}
.y5c_c00242{bottom:341.676207pt;}
.y5b_c00242{bottom:342.158895pt;}
.y5a_c00242{bottom:342.735735pt;}
.y59_c00242{bottom:343.766607pt;}
.y58_c00242{bottom:345.420975pt;}
.y57_c00242{bottom:346.125063pt;}
.y56_c00242{bottom:347.096943pt;}
.y55_c00242{bottom:348.543387pt;}
.y54_c00242{bottom:355.848663pt;}
.y53_c00242{bottom:356.294763pt;}
.y52_c00242{bottom:357.396267pt;}
.y51_c00242{bottom:357.774675pt;}
.y50_c00242{bottom:358.069275pt;}
.y4f_c00242{bottom:359.501835pt;}
.y4e_c00242{bottom:359.945763pt;}
.y4d_c00242{bottom:360.914055pt;}
.y4c_c00242{bottom:361.329351pt;}
.y4b_c00242{bottom:361.974351pt;}
.y4a_c00242{bottom:373.732239pt;}
.y49_c00242{bottom:374.250915pt;}
.y48_c00242{bottom:376.046619pt;}
.y47_c00242{bottom:377.343867pt;}
.y46_c00242{bottom:378.320643pt;}
.y45_c00242{bottom:379.735827pt;}
.y44_c00242{bottom:386.449635pt;}
.y43_c00242{bottom:386.998335pt;}
.y42_c00242{bottom:388.044579pt;}
.y41_c00242{bottom:388.512183pt;}
.y40_c00242{bottom:389.331999pt;}
.y3f_c00242{bottom:389.736555pt;}
.y3e_c00242{bottom:390.611163pt;}
.y3d_c00242{bottom:391.071471pt;}
.y3c_c00242{bottom:391.964631pt;}
.y3b_c00242{bottom:402.018075pt;}
.y3a_c00242{bottom:402.241347pt;}
.y39_c00242{bottom:403.419567pt;}
.y38_c00242{bottom:403.754595pt;}
.y37_c00242{bottom:404.185803pt;}
.y36_c00242{bottom:405.424611pt;}
.y35_c00242{bottom:405.972159pt;}
.y34_c00242{bottom:406.407519pt;}
.y33_c00242{bottom:407.080479pt;}
.y32_c00242{bottom:417.128175pt;}
.y31_c00242{bottom:418.543107pt;}
.y30_c00242{bottom:419.931015pt;}
.y2f_c00242{bottom:421.011147pt;}
.y2e_c00242{bottom:421.554747pt;}
.y2d_c00242{bottom:422.311203pt;}
.y2c_c00242{bottom:422.948823pt;}
.y2b_c00242{bottom:423.397731pt;}
.y2a_c00242{bottom:432.706983pt;}
.y29_c00242{bottom:433.843779pt;}
.y28_c00242{bottom:434.357763pt;}
.y27_c00242{bottom:435.528459pt;}
.y26_c00242{bottom:436.053771pt;}
.y25_c00242{bottom:436.722435pt;}
.y24_c00242{bottom:438.020475pt;}
.y23_c00242{bottom:438.273411pt;}
.y22_c00242{bottom:448.422519pt;}
.y21_c00242{bottom:448.829271pt;}
.y20_c00242{bottom:449.702319pt;}
.y1f_c00242{bottom:450.095871pt;}
.y1e_c00242{bottom:450.974103pt;}
.y1d_c00242{bottom:451.330095pt;}
.y1c_c00242{bottom:451.847031pt;}
.y1b_c00242{bottom:452.450499pt;}
.y1a_c00242{bottom:452.911743pt;}
.y19_c00242{bottom:462.790839pt;}
.y18_c00242{bottom:463.184343pt;}
.y17_c00242{bottom:465.109767pt;}
.y16_c00242{bottom:465.712851pt;}
.y15_c00242{bottom:467.529351pt;}
.y14_c00242{bottom:467.967987pt;}
.y13_c00242{bottom:469.937019pt;}
.y12_c00242{bottom:470.421903pt;}
.y11_c00242{bottom:479.506335pt;}
.y10_c00242{bottom:480.612915pt;}
.yf_c00242{bottom:481.710711pt;}
.ye_c00242{bottom:482.955111pt;}
.yd_c00242{bottom:483.598395pt;}
.yc_c00242{bottom:483.905631pt;}
.yb_c00242{bottom:484.814811pt;}
.ya_c00242{bottom:495.616395pt;}
.y9_c00242{bottom:496.040091pt;}
.y8_c00242{bottom:497.842179pt;}
.y7_c00242{bottom:498.121899pt;}
.y6_c00242{bottom:498.831819pt;}
.y5_c00242{bottom:499.609239pt;}
.y4_c00242{bottom:500.651331pt;}
.y3_c00242{bottom:503.479323pt;}
.y2_c00242{bottom:508.415307pt;}
.y1_c00242{bottom:512.642667pt;}
.h12_c00242{height:48.545295pt;}
.h13_c00242{height:49.469140pt;}
.h11_c00242{height:49.474210pt;}
.he_c00242{height:50.412422pt;}
.hd_c00242{height:53.181297pt;}
.h5_c00242{height:54.114302pt;}
.h9_c00242{height:55.047307pt;}
.h14_c00242{height:55.069420pt;}
.hc_c00242{height:55.980313pt;}
.h8_c00242{height:56.913318pt;}
.hb_c00242{height:57.846323pt;}
.hf_c00242{height:57.875491pt;}
.h10_c00242{height:58.808966pt;}
.h3_c00242{height:59.712333pt;}
.h6_c00242{height:60.645339pt;}
.h4_c00242{height:61.578344pt;}
.ha_c00242{height:64.377359pt;}
.h7_c00242{height:67.176375pt;}
.h2_c00242{height:77.439432pt;}
.h1_c00242{height:550.000000pt;}
.h0_c00242{height:550.266667pt;}
.w0_c00242{width:319.200000pt;}
.w1_c00242{width:319.333333pt;}
.x0_c00242{left:0.000000pt;}
.x7c_c00242{left:21.313863pt;}
.x69_c00242{left:22.336227pt;}
.x4a_c00242{left:23.501019pt;}
.x46_c00242{left:24.452523pt;}
.x36_c00242{left:25.553019pt;}
.x1_c00242{left:26.570667pt;}
.x4_c00242{left:27.785703pt;}
.x79_c00242{left:28.879183pt;}
.x6e_c00242{left:30.342495pt;}
.x41_c00242{left:31.803411pt;}
.x1b_c00242{left:33.616251pt;}
.x11_c00242{left:35.052171pt;}
.x76_c00242{left:36.241421pt;}
.x6a_c00242{left:42.544851pt;}
.x1c_c00242{left:44.114259pt;}
.x61_c00242{left:45.855903pt;}
.x7d_c00242{left:47.206895pt;}
.x63_c00242{left:49.134027pt;}
.x12_c00242{left:50.691351pt;}
.x39_c00242{left:52.265859pt;}
.x4f_c00242{left:57.842403pt;}
.x4b_c00242{left:59.427507pt;}
.x5c_c00242{left:62.451531pt;}
.x27_c00242{left:64.532127pt;}
.x2f_c00242{left:66.701619pt;}
.xb_c00242{left:68.887983pt;}
.x5_c00242{left:73.025607pt;}
.x58_c00242{left:74.365647pt;}
.x22_c00242{left:75.516327pt;}
.x7f_c00242{left:76.914683pt;}
.x17_c00242{left:80.243103pt;}
.xc_c00242{left:82.854399pt;}
.x28_c00242{left:84.311655pt;}
.x6f_c00242{left:85.275711pt;}
.x30_c00242{left:87.580575pt;}
.x82_c00242{left:89.186339pt;}
.x6b_c00242{left:90.677451pt;}
.x62_c00242{left:93.290343pt;}
.x42_c00242{left:94.712139pt;}
.x1d_c00242{left:98.122215pt;}
.x80_c00242{left:99.507663pt;}
.x64_c00242{left:101.489163pt;}
.x47_c00242{left:103.654551pt;}
.x23_c00242{left:104.576379pt;}
.x6_c00242{left:106.775631pt;}
.x29_c00242{left:109.165983pt;}
.x83_c00242{left:110.108413pt;}
.xd_c00242{left:112.067907pt;}
.x13_c00242{left:114.140607pt;}
.x53_c00242{left:115.919943pt;}
.x7e_c00242{left:117.193383pt;}
.x18_c00242{left:123.860619pt;}
.x1e_c00242{left:125.930391pt;}
.x31_c00242{left:127.247523pt;}
.x14_c00242{left:128.274339pt;}
.x59_c00242{left:129.248103pt;}
.x7a_c00242{left:135.690931pt;}
.x7_c00242{left:137.579211pt;}
.x50_c00242{left:138.758955pt;}
.x5a_c00242{left:141.251223pt;}
.x2_c00242{left:143.879907pt;}
.x32_c00242{left:145.617075pt;}
.x1f_c00242{left:147.761955pt;}
.x8_c00242{left:149.708739pt;}
.x5d_c00242{left:151.115883pt;}
.x81_c00242{left:154.026915pt;}
.x75_c00242{left:155.520123pt;}
.x65_c00242{left:156.434091pt;}
.x5b_c00242{left:158.372835pt;}
.x43_c00242{left:161.764011pt;}
.x2a_c00242{left:165.379395pt;}
.x24_c00242{left:166.919079pt;}
.xe_c00242{left:168.510519pt;}
.x3f_c00242{left:171.051915pt;}
.x70_c00242{left:172.751295pt;}
.x5e_c00242{left:174.747015pt;}
.x51_c00242{left:176.093595pt;}
.x4c_c00242{left:177.839919pt;}
.x54_c00242{left:179.895903pt;}
.x66_c00242{left:180.795879pt;}
.x33_c00242{left:182.801259pt;}
.x3d_c00242{left:183.956295pt;}
.x2b_c00242{left:184.969683pt;}
.x15_c00242{left:186.787623pt;}
.x3a_c00242{left:187.923399pt;}
.x44_c00242{left:190.192971pt;}
.x37_c00242{left:191.527419pt;}
.x72_c00242{left:194.262303pt;}
.x20_c00242{left:196.459587pt;}
.x6c_c00242{left:197.433123pt;}
.x2c_c00242{left:200.151459pt;}
.x48_c00242{left:202.510803pt;}
.x34_c00242{left:204.030723pt;}
.x16_c00242{left:206.225007pt;}
.x38_c00242{left:207.216063pt;}
.x55_c00242{left:211.215219pt;}
.x3b_c00242{left:215.926143pt;}
.x73_c00242{left:217.284423pt;}
.xf_c00242{left:218.331111pt;}
.x49_c00242{left:219.307779pt;}
.x25_c00242{left:220.200915pt;}
.x71_c00242{left:223.222611pt;}
.x5f_c00242{left:224.150895pt;}
.x56_c00242{left:225.804615pt;}
.x9_c00242{left:227.919063pt;}
.x52_c00242{left:228.974583pt;}
.x19_c00242{left:230.901831pt;}
.x4d_c00242{left:231.994767pt;}
.x60_c00242{left:235.630155pt;}
.x3e_c00242{left:237.452943pt;}
.x67_c00242{left:240.859071pt;}
.x6d_c00242{left:243.760059pt;}
.xa_c00242{left:246.338607pt;}
.x77_c00242{left:248.607837pt;}
.x1a_c00242{left:251.219883pt;}
.x2d_c00242{left:253.610235pt;}
.x45_c00242{left:255.150651pt;}
.x40_c00242{left:256.048623pt;}
.x78_c00242{left:257.313931pt;}
.x7b_c00242{left:259.698799pt;}
.x3c_c00242{left:261.741411pt;}
.x2e_c00242{left:263.729199pt;}
.x21_c00242{left:265.104519pt;}
.x10_c00242{left:268.543503pt;}
.x68_c00242{left:269.558475pt;}
.x74_c00242{left:271.007127pt;}
.x4e_c00242{left:272.939955pt;}
.x26_c00242{left:274.528755pt;}
.x35_c00242{left:276.418779pt;}
.x57_c00242{left:278.860839pt;}
.x3_c00242{left:280.853463pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00243 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00243 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00243 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00243 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00243.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mee_c00243{transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.123085,-0.003693,0.007497,0.249888,0,0);-ms-transform:matrix(0.123085,-0.003693,0.007497,0.249888,0,0);-webkit-transform:matrix(0.123085,-0.003693,0.007497,0.249888,0,0);}
.me1_c00243{transform:matrix(0.133863,-0.004958,0.009253,0.249829,0,0);-ms-transform:matrix(0.133863,-0.004958,0.009253,0.249829,0,0);-webkit-transform:matrix(0.133863,-0.004958,0.009253,0.249829,0,0);}
.me4_c00243{transform:matrix(0.145750,-0.005398,0.009253,0.249829,0,0);-ms-transform:matrix(0.145750,-0.005398,0.009253,0.249829,0,0);-webkit-transform:matrix(0.145750,-0.005398,0.009253,0.249829,0,0);}
.m21_c00243{transform:matrix(0.145951,-0.003795,0.006498,0.249916,0,0);-ms-transform:matrix(0.145951,-0.003795,0.006498,0.249916,0,0);-webkit-transform:matrix(0.145951,-0.003795,0.006498,0.249916,0,0);}
.m64_c00243{transform:matrix(0.148925,-0.003872,0.006498,0.249916,0,0);-ms-transform:matrix(0.148925,-0.003872,0.006498,0.249916,0,0);-webkit-transform:matrix(0.148925,-0.003872,0.006498,0.249916,0,0);}
.m4_c00243{transform:matrix(0.150332,-0.004510,0.007497,0.249888,0,0);-ms-transform:matrix(0.150332,-0.004510,0.007497,0.249888,0,0);-webkit-transform:matrix(0.150332,-0.004510,0.007497,0.249888,0,0);}
.m86_c00243{transform:matrix(0.150395,-0.004061,0.006748,0.249909,0,0);-ms-transform:matrix(0.150395,-0.004061,0.006748,0.249909,0,0);-webkit-transform:matrix(0.150395,-0.004061,0.006748,0.249909,0,0);}
.m80_c00243{transform:matrix(0.151067,-0.004532,0.007497,0.249888,0,0);-ms-transform:matrix(0.151067,-0.004532,0.007497,0.249888,0,0);-webkit-transform:matrix(0.151067,-0.004532,0.007497,0.249888,0,0);}
.m76_c00243{transform:matrix(0.154241,-0.004627,0.007497,0.249888,0,0);-ms-transform:matrix(0.154241,-0.004627,0.007497,0.249888,0,0);-webkit-transform:matrix(0.154241,-0.004627,0.007497,0.249888,0,0);}
.m0_c00243{transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155270,0.000000,0.000000,0.250000,0,0);}
.ma3_c00243{transform:matrix(0.156128,-0.004215,0.006748,0.249909,0,0);-ms-transform:matrix(0.156128,-0.004215,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156128,-0.004215,0.006748,0.249909,0,0);}
.mbe_c00243{transform:matrix(0.156183,-0.004217,0.006748,0.249909,0,0);-ms-transform:matrix(0.156183,-0.004217,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156183,-0.004217,0.006748,0.249909,0,0);}
.mdf_c00243{transform:matrix(0.156423,-0.005793,0.009253,0.249829,0,0);-ms-transform:matrix(0.156423,-0.005793,0.009253,0.249829,0,0);-webkit-transform:matrix(0.156423,-0.005793,0.009253,0.249829,0,0);}
.me_c00243{transform:matrix(0.157284,-0.004561,0.007247,0.249895,0,0);-ms-transform:matrix(0.157284,-0.004561,0.007247,0.249895,0,0);-webkit-transform:matrix(0.157284,-0.004561,0.007247,0.249895,0,0);}
.m72_c00243{transform:matrix(0.157967,-0.004107,0.006498,0.249916,0,0);-ms-transform:matrix(0.157967,-0.004107,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157967,-0.004107,0.006498,0.249916,0,0);}
.m9d_c00243{transform:matrix(0.158182,-0.004271,0.006748,0.249909,0,0);-ms-transform:matrix(0.158182,-0.004271,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158182,-0.004271,0.006748,0.249909,0,0);}
.m9e_c00243{transform:matrix(0.158847,-0.004289,0.006748,0.249909,0,0);-ms-transform:matrix(0.158847,-0.004289,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158847,-0.004289,0.006748,0.249909,0,0);}
.m41_c00243{transform:matrix(0.158961,-0.004133,0.006498,0.249916,0,0);-ms-transform:matrix(0.158961,-0.004133,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158961,-0.004133,0.006498,0.249916,0,0);}
.m2f_c00243{transform:matrix(0.159787,-0.004474,0.006997,0.249902,0,0);-ms-transform:matrix(0.159787,-0.004474,0.006997,0.249902,0,0);-webkit-transform:matrix(0.159787,-0.004474,0.006997,0.249902,0,0);}
.mc4_c00243{transform:matrix(0.160791,-0.004341,0.006748,0.249909,0,0);-ms-transform:matrix(0.160791,-0.004341,0.006748,0.249909,0,0);-webkit-transform:matrix(0.160791,-0.004341,0.006748,0.249909,0,0);}
.m4f_c00243{transform:matrix(0.160816,-0.004181,0.006498,0.249916,0,0);-ms-transform:matrix(0.160816,-0.004181,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160816,-0.004181,0.006498,0.249916,0,0);}
.m60_c00243{transform:matrix(0.160866,-0.004183,0.006498,0.249916,0,0);-ms-transform:matrix(0.160866,-0.004183,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160866,-0.004183,0.006498,0.249916,0,0);}
.m9a_c00243{transform:matrix(0.161016,-0.004347,0.006748,0.249909,0,0);-ms-transform:matrix(0.161016,-0.004347,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161016,-0.004347,0.006748,0.249909,0,0);}
.m6b_c00243{transform:matrix(0.161490,-0.004199,0.006498,0.249916,0,0);-ms-transform:matrix(0.161490,-0.004199,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161490,-0.004199,0.006498,0.249916,0,0);}
.m44_c00243{transform:matrix(0.161525,-0.004200,0.006498,0.249916,0,0);-ms-transform:matrix(0.161525,-0.004200,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161525,-0.004200,0.006498,0.249916,0,0);}
.me0_c00243{transform:matrix(0.162234,-0.006009,0.009253,0.249829,0,0);-ms-transform:matrix(0.162234,-0.006009,0.009253,0.249829,0,0);-webkit-transform:matrix(0.162234,-0.006009,0.009253,0.249829,0,0);}
.m15_c00243{transform:matrix(0.162935,-0.004236,0.006498,0.249916,0,0);-ms-transform:matrix(0.162935,-0.004236,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162935,-0.004236,0.006498,0.249916,0,0);}
.m3e_c00243{transform:matrix(0.163220,-0.004244,0.006498,0.249916,0,0);-ms-transform:matrix(0.163220,-0.004244,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163220,-0.004244,0.006498,0.249916,0,0);}
.m63_c00243{transform:matrix(0.163265,-0.004245,0.006498,0.249916,0,0);-ms-transform:matrix(0.163265,-0.004245,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163265,-0.004245,0.006498,0.249916,0,0);}
.md5_c00243{transform:matrix(0.164327,-0.006744,0.010252,0.249790,0,0);-ms-transform:matrix(0.164327,-0.006744,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164327,-0.006744,0.010252,0.249790,0,0);}
.m6a_c00243{transform:matrix(0.164479,-0.004276,0.006498,0.249916,0,0);-ms-transform:matrix(0.164479,-0.004276,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164479,-0.004276,0.006498,0.249916,0,0);}
.md8_c00243{transform:matrix(0.164666,-0.006758,0.010252,0.249790,0,0);-ms-transform:matrix(0.164666,-0.006758,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164666,-0.006758,0.010252,0.249790,0,0);}
.m97_c00243{transform:matrix(0.164870,-0.004451,0.006748,0.249909,0,0);-ms-transform:matrix(0.164870,-0.004451,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164870,-0.004451,0.006748,0.249909,0,0);}
.m5e_c00243{transform:matrix(0.164954,-0.004289,0.006498,0.249916,0,0);-ms-transform:matrix(0.164954,-0.004289,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164954,-0.004289,0.006498,0.249916,0,0);}
.m46_c00243{transform:matrix(0.165284,-0.004297,0.006498,0.249916,0,0);-ms-transform:matrix(0.165284,-0.004297,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165284,-0.004297,0.006498,0.249916,0,0);}
.m5f_c00243{transform:matrix(0.165404,-0.004301,0.006498,0.249916,0,0);-ms-transform:matrix(0.165404,-0.004301,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165404,-0.004301,0.006498,0.249916,0,0);}
.m42_c00243{transform:matrix(0.166109,-0.004319,0.006498,0.249916,0,0);-ms-transform:matrix(0.166109,-0.004319,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166109,-0.004319,0.006498,0.249916,0,0);}
.m73_c00243{transform:matrix(0.166549,-0.004330,0.006498,0.249916,0,0);-ms-transform:matrix(0.166549,-0.004330,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166549,-0.004330,0.006498,0.249916,0,0);}
.m6d_c00243{transform:matrix(0.166719,-0.004335,0.006498,0.249916,0,0);-ms-transform:matrix(0.166719,-0.004335,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166719,-0.004335,0.006498,0.249916,0,0);}
.ma_c00243{transform:matrix(0.167430,-0.004855,0.007247,0.249895,0,0);-ms-transform:matrix(0.167430,-0.004855,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167430,-0.004855,0.007247,0.249895,0,0);}
.m81_c00243{transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);-ms-transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);}
.m79_c00243{transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);-ms-transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);}
.m8f_c00243{transform:matrix(0.168259,-0.004543,0.006748,0.249909,0,0);-ms-transform:matrix(0.168259,-0.004543,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168259,-0.004543,0.006748,0.249909,0,0);}
.m6f_c00243{transform:matrix(0.168848,-0.004390,0.006498,0.249916,0,0);-ms-transform:matrix(0.168848,-0.004390,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168848,-0.004390,0.006498,0.249916,0,0);}
.m74_c00243{transform:matrix(0.168923,-0.004392,0.006498,0.249916,0,0);-ms-transform:matrix(0.168923,-0.004392,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168923,-0.004392,0.006498,0.249916,0,0);}
.m71_c00243{transform:matrix(0.169298,-0.004402,0.006498,0.249916,0,0);-ms-transform:matrix(0.169298,-0.004402,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169298,-0.004402,0.006498,0.249916,0,0);}
.m88_c00243{transform:matrix(0.169793,-0.004584,0.006748,0.249909,0,0);-ms-transform:matrix(0.169793,-0.004584,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169793,-0.004584,0.006748,0.249909,0,0);}
.m77_c00243{transform:matrix(0.170738,-0.005122,0.007497,0.249888,0,0);-ms-transform:matrix(0.170738,-0.005122,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170738,-0.005122,0.007497,0.249888,0,0);}
.ma0_c00243{transform:matrix(0.170778,-0.004611,0.006748,0.249909,0,0);-ms-transform:matrix(0.170778,-0.004611,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170778,-0.004611,0.006748,0.249909,0,0);}
.ma5_c00243{transform:matrix(0.171473,-0.004630,0.006748,0.249909,0,0);-ms-transform:matrix(0.171473,-0.004630,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171473,-0.004630,0.006748,0.249909,0,0);}
.m3d_c00243{transform:matrix(0.171482,-0.004459,0.006498,0.249916,0,0);-ms-transform:matrix(0.171482,-0.004459,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171482,-0.004459,0.006498,0.249916,0,0);}
.m8c_c00243{transform:matrix(0.171772,-0.004638,0.006748,0.249909,0,0);-ms-transform:matrix(0.171772,-0.004638,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171772,-0.004638,0.006748,0.249909,0,0);}
.mcc_c00243{transform:matrix(0.172457,-0.004656,0.006748,0.249909,0,0);-ms-transform:matrix(0.172457,-0.004656,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172457,-0.004656,0.006748,0.249909,0,0);}
.mb5_c00243{transform:matrix(0.172622,-0.004661,0.006748,0.249909,0,0);-ms-transform:matrix(0.172622,-0.004661,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172622,-0.004661,0.006748,0.249909,0,0);}
.m65_c00243{transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);-ms-transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);}
.m6e_c00243{transform:matrix(0.172757,-0.004492,0.006498,0.249916,0,0);-ms-transform:matrix(0.172757,-0.004492,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172757,-0.004492,0.006498,0.249916,0,0);}
.m61_c00243{transform:matrix(0.173326,-0.004506,0.006498,0.249916,0,0);-ms-transform:matrix(0.173326,-0.004506,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173326,-0.004506,0.006498,0.249916,0,0);}
.me2_c00243{transform:matrix(0.173986,-0.006444,0.009253,0.249829,0,0);-ms-transform:matrix(0.173986,-0.006444,0.009253,0.249829,0,0);-webkit-transform:matrix(0.173986,-0.006444,0.009253,0.249829,0,0);}
.m7c_c00243{transform:matrix(0.174367,-0.005231,0.007497,0.249888,0,0);-ms-transform:matrix(0.174367,-0.005231,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174367,-0.005231,0.007497,0.249888,0,0);}
.mb2_c00243{transform:matrix(0.174651,-0.004716,0.006748,0.249909,0,0);-ms-transform:matrix(0.174651,-0.004716,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174651,-0.004716,0.006748,0.249909,0,0);}
.m48_c00243{transform:matrix(0.174896,-0.004547,0.006498,0.249916,0,0);-ms-transform:matrix(0.174896,-0.004547,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174896,-0.004547,0.006498,0.249916,0,0);}
.m51_c00243{transform:matrix(0.175601,-0.004566,0.006498,0.249916,0,0);-ms-transform:matrix(0.175601,-0.004566,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175601,-0.004566,0.006498,0.249916,0,0);}
.m2d_c00243{transform:matrix(0.175741,-0.004921,0.006997,0.249902,0,0);-ms-transform:matrix(0.175741,-0.004921,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175741,-0.004921,0.006997,0.249902,0,0);}
.md7_c00243{transform:matrix(0.175942,-0.007221,0.010252,0.249790,0,0);-ms-transform:matrix(0.175942,-0.007221,0.010252,0.249790,0,0);-webkit-transform:matrix(0.175942,-0.007221,0.010252,0.249790,0,0);}
.m1c_c00243{transform:matrix(0.176385,-0.004586,0.006498,0.249916,0,0);-ms-transform:matrix(0.176385,-0.004586,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176385,-0.004586,0.006498,0.249916,0,0);}
.m5c_c00243{transform:matrix(0.177005,-0.004602,0.006498,0.249916,0,0);-ms-transform:matrix(0.177005,-0.004602,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177005,-0.004602,0.006498,0.249916,0,0);}
.m11_c00243{transform:matrix(0.177315,-0.004610,0.006498,0.249916,0,0);-ms-transform:matrix(0.177315,-0.004610,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177315,-0.004610,0.006498,0.249916,0,0);}
.m6_c00243{transform:matrix(0.177575,-0.005327,0.007497,0.249888,0,0);-ms-transform:matrix(0.177575,-0.005327,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177575,-0.005327,0.007497,0.249888,0,0);}
.m93_c00243{transform:matrix(0.178270,-0.004813,0.006748,0.249909,0,0);-ms-transform:matrix(0.178270,-0.004813,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178270,-0.004813,0.006748,0.249909,0,0);}
.m4a_c00243{transform:matrix(0.178570,-0.004643,0.006498,0.249916,0,0);-ms-transform:matrix(0.178570,-0.004643,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178570,-0.004643,0.006498,0.249916,0,0);}
.mc9_c00243{transform:matrix(0.179045,-0.004834,0.006748,0.249909,0,0);-ms-transform:matrix(0.179045,-0.004834,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179045,-0.004834,0.006748,0.249909,0,0);}
.m6c_c00243{transform:matrix(0.179589,-0.004669,0.006498,0.249916,0,0);-ms-transform:matrix(0.179589,-0.004669,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179589,-0.004669,0.006498,0.249916,0,0);}
.m75_c00243{transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);-ms-transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);}
.m17_c00243{transform:matrix(0.179964,-0.004679,0.006498,0.249916,0,0);-ms-transform:matrix(0.179964,-0.004679,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179964,-0.004679,0.006498,0.249916,0,0);}
.m4b_c00243{transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);-ms-transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180064,-0.004682,0.006498,0.249916,0,0);}
.m12_c00243{transform:matrix(0.180069,-0.004682,0.006498,0.249916,0,0);-ms-transform:matrix(0.180069,-0.004682,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180069,-0.004682,0.006498,0.249916,0,0);}
.m83_c00243{transform:matrix(0.180594,-0.005418,0.007497,0.249888,0,0);-ms-transform:matrix(0.180594,-0.005418,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180594,-0.005418,0.007497,0.249888,0,0);}
.m7a_c00243{transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);-ms-transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);}
.m47_c00243{transform:matrix(0.181414,-0.004717,0.006498,0.249916,0,0);-ms-transform:matrix(0.181414,-0.004717,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181414,-0.004717,0.006498,0.249916,0,0);}
.m5_c00243{transform:matrix(0.181448,-0.005443,0.007497,0.249888,0,0);-ms-transform:matrix(0.181448,-0.005443,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181448,-0.005443,0.007497,0.249888,0,0);}
.mbc_c00243{transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);-ms-transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181709,-0.004906,0.006748,0.249909,0,0);}
.m8_c00243{transform:matrix(0.181858,-0.005456,0.007497,0.249888,0,0);-ms-transform:matrix(0.181858,-0.005456,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181858,-0.005456,0.007497,0.249888,0,0);}
.m4c_c00243{transform:matrix(0.182473,-0.004744,0.006498,0.249916,0,0);-ms-transform:matrix(0.182473,-0.004744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182473,-0.004744,0.006498,0.249916,0,0);}
.m3c_c00243{transform:matrix(0.182998,-0.004575,0.006248,0.249922,0,0);-ms-transform:matrix(0.182998,-0.004575,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182998,-0.004575,0.006248,0.249922,0,0);}
.m91_c00243{transform:matrix(0.183088,-0.004943,0.006748,0.249909,0,0);-ms-transform:matrix(0.183088,-0.004943,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183088,-0.004943,0.006748,0.249909,0,0);}
.m8d_c00243{transform:matrix(0.183138,-0.004945,0.006748,0.249909,0,0);-ms-transform:matrix(0.183138,-0.004945,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183138,-0.004945,0.006748,0.249909,0,0);}
.m3a_c00243{transform:matrix(0.183278,-0.004582,0.006248,0.249922,0,0);-ms-transform:matrix(0.183278,-0.004582,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183278,-0.004582,0.006248,0.249922,0,0);}
.m56_c00243{transform:matrix(0.183298,-0.004766,0.006498,0.249916,0,0);-ms-transform:matrix(0.183298,-0.004766,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183298,-0.004766,0.006498,0.249916,0,0);}
.m69_c00243{transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);-ms-transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183808,-0.004779,0.006498,0.249916,0,0);}
.m27_c00243{transform:matrix(0.183943,-0.004783,0.006498,0.249916,0,0);-ms-transform:matrix(0.183943,-0.004783,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183943,-0.004783,0.006498,0.249916,0,0);}
.m85_c00243{transform:matrix(0.184688,-0.004987,0.006748,0.249909,0,0);-ms-transform:matrix(0.184688,-0.004987,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184688,-0.004987,0.006748,0.249909,0,0);}
.m57_c00243{transform:matrix(0.184738,-0.004803,0.006498,0.249916,0,0);-ms-transform:matrix(0.184738,-0.004803,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184738,-0.004803,0.006498,0.249916,0,0);}
.m3_c00243{transform:matrix(0.184777,-0.005543,0.007497,0.249888,0,0);-ms-transform:matrix(0.184777,-0.005543,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184777,-0.005543,0.007497,0.249888,0,0);}
.mdc_c00243{transform:matrix(0.184833,-0.008326,0.011250,0.249747,0,0);-ms-transform:matrix(0.184833,-0.008326,0.011250,0.249747,0,0);-webkit-transform:matrix(0.184833,-0.008326,0.011250,0.249747,0,0);}
.m40_c00243{transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);-ms-transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);}
.mb8_c00243{transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);-ms-transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);}
.m20_c00243{transform:matrix(0.185702,-0.004828,0.006498,0.249916,0,0);-ms-transform:matrix(0.185702,-0.004828,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185702,-0.004828,0.006498,0.249916,0,0);}
.mc_c00243{transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);-ms-transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);}
.m7f_c00243{transform:matrix(0.186526,-0.005596,0.007497,0.249888,0,0);-ms-transform:matrix(0.186526,-0.005596,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186526,-0.005596,0.007497,0.249888,0,0);}
.m2a_c00243{transform:matrix(0.187027,-0.005237,0.006997,0.249902,0,0);-ms-transform:matrix(0.187027,-0.005237,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187027,-0.005237,0.006997,0.249902,0,0);}
.m7b_c00243{transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);-ms-transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187071,-0.005612,0.007497,0.249888,0,0);}
.m14_c00243{transform:matrix(0.187137,-0.004866,0.006498,0.249916,0,0);-ms-transform:matrix(0.187137,-0.004866,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187137,-0.004866,0.006498,0.249916,0,0);}
.me6_c00243{transform:matrix(0.187232,-0.005242,0.006997,0.249902,0,0);-ms-transform:matrix(0.187232,-0.005242,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187232,-0.005242,0.006997,0.249902,0,0);}
.m2b_c00243{transform:matrix(0.187252,-0.005243,0.006997,0.249902,0,0);-ms-transform:matrix(0.187252,-0.005243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187252,-0.005243,0.006997,0.249902,0,0);}
.md9_c00243{transform:matrix(0.187442,-0.007693,0.010252,0.249790,0,0);-ms-transform:matrix(0.187442,-0.007693,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187442,-0.007693,0.010252,0.249790,0,0);}
.m3f_c00243{transform:matrix(0.187447,-0.004874,0.006498,0.249916,0,0);-ms-transform:matrix(0.187447,-0.004874,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187447,-0.004874,0.006498,0.249916,0,0);}
.m87_c00243{transform:matrix(0.188086,-0.005078,0.006748,0.249909,0,0);-ms-transform:matrix(0.188086,-0.005078,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188086,-0.005078,0.006748,0.249909,0,0);}
.mc2_c00243{transform:matrix(0.188251,-0.005083,0.006748,0.249909,0,0);-ms-transform:matrix(0.188251,-0.005083,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188251,-0.005083,0.006748,0.249909,0,0);}
.md2_c00243{transform:matrix(0.188741,-0.005096,0.006748,0.249909,0,0);-ms-transform:matrix(0.188741,-0.005096,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188741,-0.005096,0.006748,0.249909,0,0);}
.me8_c00243{transform:matrix(0.188781,-0.005286,0.006997,0.249902,0,0);-ms-transform:matrix(0.188781,-0.005286,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188781,-0.005286,0.006997,0.249902,0,0);}
.med_c00243{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.189305,-0.005490,0.007247,0.249895,0,0);-ms-transform:matrix(0.189305,-0.005490,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189305,-0.005490,0.007247,0.249895,0,0);}
.m9_c00243{transform:matrix(0.189530,-0.005496,0.007247,0.249895,0,0);-ms-transform:matrix(0.189530,-0.005496,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189530,-0.005496,0.007247,0.249895,0,0);}
.meb_c00243{transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);-ms-transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);}
.ma2_c00243{transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);-ms-transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190281,-0.005138,0.006748,0.249909,0,0);}
.m34_c00243{transform:matrix(0.190291,-0.005138,0.006748,0.249909,0,0);-ms-transform:matrix(0.190291,-0.005138,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190291,-0.005138,0.006748,0.249909,0,0);}
.m22_c00243{transform:matrix(0.190536,-0.004954,0.006498,0.249916,0,0);-ms-transform:matrix(0.190536,-0.004954,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190536,-0.004954,0.006498,0.249916,0,0);}
.md1_c00243{transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);-ms-transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);}
.mdd_c00243{transform:matrix(0.190752,-0.008592,0.011250,0.249747,0,0);-ms-transform:matrix(0.190752,-0.008592,0.011250,0.249747,0,0);-webkit-transform:matrix(0.190752,-0.008592,0.011250,0.249747,0,0);}
.m49_c00243{transform:matrix(0.190856,-0.004962,0.006498,0.249916,0,0);-ms-transform:matrix(0.190856,-0.004962,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190856,-0.004962,0.006498,0.249916,0,0);}
.mcd_c00243{transform:matrix(0.191015,-0.005157,0.006748,0.249909,0,0);-ms-transform:matrix(0.191015,-0.005157,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191015,-0.005157,0.006748,0.249909,0,0);}
.mdb_c00243{transform:matrix(0.191404,-0.007855,0.010252,0.249790,0,0);-ms-transform:matrix(0.191404,-0.007855,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191404,-0.007855,0.010252,0.249790,0,0);}
.m2e_c00243{transform:matrix(0.191585,-0.005364,0.006997,0.249902,0,0);-ms-transform:matrix(0.191585,-0.005364,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191585,-0.005364,0.006997,0.249902,0,0);}
.mb_c00243{transform:matrix(0.191624,-0.005557,0.007247,0.249895,0,0);-ms-transform:matrix(0.191624,-0.005557,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191624,-0.005557,0.007247,0.249895,0,0);}
.mda_c00243{transform:matrix(0.191883,-0.007875,0.010252,0.249790,0,0);-ms-transform:matrix(0.191883,-0.007875,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191883,-0.007875,0.010252,0.249790,0,0);}
.m58_c00243{transform:matrix(0.192630,-0.005008,0.006498,0.249916,0,0);-ms-transform:matrix(0.192630,-0.005008,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192630,-0.005008,0.006498,0.249916,0,0);}
.m84_c00243{transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);-ms-transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193599,-0.005227,0.006748,0.249909,0,0);}
.m9b_c00243{transform:matrix(0.193984,-0.005238,0.006748,0.249909,0,0);-ms-transform:matrix(0.193984,-0.005238,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193984,-0.005238,0.006748,0.249909,0,0);}
.mc5_c00243{transform:matrix(0.194539,-0.005253,0.006748,0.249909,0,0);-ms-transform:matrix(0.194539,-0.005253,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194539,-0.005253,0.006748,0.249909,0,0);}
.m66_c00243{transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);-ms-transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);}
.ma6_c00243{transform:matrix(0.194624,-0.005255,0.006748,0.249909,0,0);-ms-transform:matrix(0.194624,-0.005255,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194624,-0.005255,0.006748,0.249909,0,0);}
.mcf_c00243{transform:matrix(0.196343,-0.005301,0.006748,0.249909,0,0);-ms-transform:matrix(0.196343,-0.005301,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196343,-0.005301,0.006748,0.249909,0,0);}
.m5d_c00243{transform:matrix(0.196454,-0.005108,0.006498,0.249916,0,0);-ms-transform:matrix(0.196454,-0.005108,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196454,-0.005108,0.006498,0.249916,0,0);}
.mae_c00243{transform:matrix(0.196563,-0.005307,0.006748,0.249909,0,0);-ms-transform:matrix(0.196563,-0.005307,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196563,-0.005307,0.006748,0.249909,0,0);}
.mba_c00243{transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);-ms-transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196663,-0.005310,0.006748,0.249909,0,0);}
.m8e_c00243{transform:matrix(0.196738,-0.005312,0.006748,0.249909,0,0);-ms-transform:matrix(0.196738,-0.005312,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196738,-0.005312,0.006748,0.249909,0,0);}
.m90_c00243{transform:matrix(0.196843,-0.005315,0.006748,0.249909,0,0);-ms-transform:matrix(0.196843,-0.005315,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196843,-0.005315,0.006748,0.249909,0,0);}
.mbd_c00243{transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);-ms-transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197013,-0.005319,0.006748,0.249909,0,0);}
.md4_c00243{transform:matrix(0.197339,-0.008099,0.010252,0.249790,0,0);-ms-transform:matrix(0.197339,-0.008099,0.010252,0.249790,0,0);-webkit-transform:matrix(0.197339,-0.008099,0.010252,0.249790,0,0);}
.ma4_c00243{transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);-ms-transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197423,-0.005330,0.006748,0.249909,0,0);}
.m7_c00243{transform:matrix(0.198051,-0.005942,0.007497,0.249888,0,0);-ms-transform:matrix(0.198051,-0.005942,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198051,-0.005942,0.007497,0.249888,0,0);}
.m53_c00243{transform:matrix(0.198213,-0.005154,0.006498,0.249916,0,0);-ms-transform:matrix(0.198213,-0.005154,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198213,-0.005154,0.006498,0.249916,0,0);}
.m5a_c00243{transform:matrix(0.198233,-0.005154,0.006498,0.249916,0,0);-ms-transform:matrix(0.198233,-0.005154,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198233,-0.005154,0.006498,0.249916,0,0);}
.m13_c00243{transform:matrix(0.198373,-0.005158,0.006498,0.249916,0,0);-ms-transform:matrix(0.198373,-0.005158,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198373,-0.005158,0.006498,0.249916,0,0);}
.mad_c00243{transform:matrix(0.198573,-0.005361,0.006748,0.249909,0,0);-ms-transform:matrix(0.198573,-0.005361,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198573,-0.005361,0.006748,0.249909,0,0);}
.m7d_c00243{transform:matrix(0.198851,-0.005966,0.007497,0.249888,0,0);-ms-transform:matrix(0.198851,-0.005966,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198851,-0.005966,0.007497,0.249888,0,0);}
.m9f_c00243{transform:matrix(0.198923,-0.005371,0.006748,0.249909,0,0);-ms-transform:matrix(0.198923,-0.005371,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198923,-0.005371,0.006748,0.249909,0,0);}
.mec_c00243{transform:matrix(0.199007,-0.005572,0.006997,0.249902,0,0);-ms-transform:matrix(0.199007,-0.005572,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199007,-0.005572,0.006997,0.249902,0,0);}
.mce_c00243{transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);-ms-transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);}
.ma1_c00243{transform:matrix(0.200042,-0.005401,0.006748,0.249909,0,0);-ms-transform:matrix(0.200042,-0.005401,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200042,-0.005401,0.006748,0.249909,0,0);}
.m1d_c00243{transform:matrix(0.200067,-0.005202,0.006498,0.249916,0,0);-ms-transform:matrix(0.200067,-0.005202,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200067,-0.005202,0.006498,0.249916,0,0);}
.m2c_c00243{transform:matrix(0.201091,-0.005631,0.006997,0.249902,0,0);-ms-transform:matrix(0.201091,-0.005631,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201091,-0.005631,0.006997,0.249902,0,0);}
.m45_c00243{transform:matrix(0.201212,-0.005232,0.006498,0.249916,0,0);-ms-transform:matrix(0.201212,-0.005232,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201212,-0.005232,0.006498,0.249916,0,0);}
.m78_c00243{transform:matrix(0.201429,-0.006043,0.007497,0.249888,0,0);-ms-transform:matrix(0.201429,-0.006043,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201429,-0.006043,0.007497,0.249888,0,0);}
.m55_c00243{transform:matrix(0.201632,-0.005242,0.006498,0.249916,0,0);-ms-transform:matrix(0.201632,-0.005242,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201632,-0.005242,0.006498,0.249916,0,0);}
.mb9_c00243{transform:matrix(0.202121,-0.005457,0.006748,0.249909,0,0);-ms-transform:matrix(0.202121,-0.005457,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202121,-0.005457,0.006748,0.249909,0,0);}
.m67_c00243{transform:matrix(0.202557,-0.005266,0.006498,0.249916,0,0);-ms-transform:matrix(0.202557,-0.005266,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202557,-0.005266,0.006498,0.249916,0,0);}
.m18_c00243{transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);-ms-transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);}
.m68_c00243{transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);-ms-transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);}
.m89_c00243{transform:matrix(0.205415,-0.005546,0.006748,0.249909,0,0);-ms-transform:matrix(0.205415,-0.005546,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205415,-0.005546,0.006748,0.249909,0,0);}
.m9c_c00243{transform:matrix(0.205525,-0.005549,0.006748,0.249909,0,0);-ms-transform:matrix(0.205525,-0.005549,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205525,-0.005549,0.006748,0.249909,0,0);}
.m4d_c00243{transform:matrix(0.205601,-0.005346,0.006498,0.249916,0,0);-ms-transform:matrix(0.205601,-0.005346,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205601,-0.005346,0.006498,0.249916,0,0);}
.md6_c00243{transform:matrix(0.206756,-0.008485,0.010252,0.249790,0,0);-ms-transform:matrix(0.206756,-0.008485,0.010252,0.249790,0,0);-webkit-transform:matrix(0.206756,-0.008485,0.010252,0.249790,0,0);}
.mc0_c00243{transform:matrix(0.207120,-0.005592,0.006748,0.249909,0,0);-ms-transform:matrix(0.207120,-0.005592,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207120,-0.005592,0.006748,0.249909,0,0);}
.md0_c00243{transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);-ms-transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);}
.m8b_c00243{transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);-ms-transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);}
.mea_c00243{transform:matrix(0.207584,-0.005812,0.006997,0.249902,0,0);-ms-transform:matrix(0.207584,-0.005812,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207584,-0.005812,0.006997,0.249902,0,0);}
.maf_c00243{transform:matrix(0.207759,-0.005610,0.006748,0.249909,0,0);-ms-transform:matrix(0.207759,-0.005610,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207759,-0.005610,0.006748,0.249909,0,0);}
.m28_c00243{transform:matrix(0.207965,-0.005407,0.006498,0.249916,0,0);-ms-transform:matrix(0.207965,-0.005407,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207965,-0.005407,0.006498,0.249916,0,0);}
.me9_c00243{transform:matrix(0.208098,-0.005827,0.006997,0.249902,0,0);-ms-transform:matrix(0.208098,-0.005827,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208098,-0.005827,0.006997,0.249902,0,0);}
.m4e_c00243{transform:matrix(0.208340,-0.005417,0.006498,0.249916,0,0);-ms-transform:matrix(0.208340,-0.005417,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208340,-0.005417,0.006498,0.249916,0,0);}
.mb1_c00243{transform:matrix(0.208374,-0.005626,0.006748,0.249909,0,0);-ms-transform:matrix(0.208374,-0.005626,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208374,-0.005626,0.006748,0.249909,0,0);}
.mbb_c00243{transform:matrix(0.208509,-0.005630,0.006748,0.249909,0,0);-ms-transform:matrix(0.208509,-0.005630,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208509,-0.005630,0.006748,0.249909,0,0);}
.mc6_c00243{transform:matrix(0.209963,-0.005669,0.006748,0.249909,0,0);-ms-transform:matrix(0.209963,-0.005669,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209963,-0.005669,0.006748,0.249909,0,0);}
.ma7_c00243{transform:matrix(0.210413,-0.005681,0.006748,0.249909,0,0);-ms-transform:matrix(0.210413,-0.005681,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210413,-0.005681,0.006748,0.249909,0,0);}
.mc1_c00243{transform:matrix(0.210633,-0.005687,0.006748,0.249909,0,0);-ms-transform:matrix(0.210633,-0.005687,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210633,-0.005687,0.006748,0.249909,0,0);}
.m5b_c00243{transform:matrix(0.210789,-0.005481,0.006498,0.249916,0,0);-ms-transform:matrix(0.210789,-0.005481,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210789,-0.005481,0.006498,0.249916,0,0);}
.m94_c00243{transform:matrix(0.211258,-0.005704,0.006748,0.249909,0,0);-ms-transform:matrix(0.211258,-0.005704,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211258,-0.005704,0.006748,0.249909,0,0);}
.m8a_c00243{transform:matrix(0.211498,-0.005710,0.006748,0.249909,0,0);-ms-transform:matrix(0.211498,-0.005710,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211498,-0.005710,0.006748,0.249909,0,0);}
.mb0_c00243{transform:matrix(0.211678,-0.005715,0.006748,0.249909,0,0);-ms-transform:matrix(0.211678,-0.005715,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211678,-0.005715,0.006748,0.249909,0,0);}
.m1b_c00243{transform:matrix(0.212723,-0.005531,0.006498,0.249916,0,0);-ms-transform:matrix(0.212723,-0.005531,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212723,-0.005531,0.006498,0.249916,0,0);}
.m30_c00243{transform:matrix(0.212827,-0.005959,0.006997,0.249902,0,0);-ms-transform:matrix(0.212827,-0.005959,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212827,-0.005959,0.006997,0.249902,0,0);}
.m1f_c00243{transform:matrix(0.212973,-0.005537,0.006498,0.249916,0,0);-ms-transform:matrix(0.212973,-0.005537,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212973,-0.005537,0.006498,0.249916,0,0);}
.m95_c00243{transform:matrix(0.213587,-0.005767,0.006748,0.249909,0,0);-ms-transform:matrix(0.213587,-0.005767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213587,-0.005767,0.006748,0.249909,0,0);}
.m43_c00243{transform:matrix(0.214213,-0.005570,0.006498,0.249916,0,0);-ms-transform:matrix(0.214213,-0.005570,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214213,-0.005570,0.006498,0.249916,0,0);}
.m62_c00243{transform:matrix(0.214328,-0.005573,0.006498,0.249916,0,0);-ms-transform:matrix(0.214328,-0.005573,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214328,-0.005573,0.006498,0.249916,0,0);}
.mca_c00243{transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-ms-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);}
.m26_c00243{transform:matrix(0.214393,-0.005574,0.006498,0.249916,0,0);-ms-transform:matrix(0.214393,-0.005574,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214393,-0.005574,0.006498,0.249916,0,0);}
.m16_c00243{transform:matrix(0.214493,-0.005577,0.006498,0.249916,0,0);-ms-transform:matrix(0.214493,-0.005577,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214493,-0.005577,0.006498,0.249916,0,0);}
.m59_c00243{transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);-ms-transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);}
.mcb_c00243{transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);-ms-transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215162,-0.005809,0.006748,0.249909,0,0);}
.m99_c00243{transform:matrix(0.216126,-0.005835,0.006748,0.249909,0,0);-ms-transform:matrix(0.216126,-0.005835,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216126,-0.005835,0.006748,0.249909,0,0);}
.mf_c00243{transform:matrix(0.216129,-0.006268,0.007247,0.249895,0,0);-ms-transform:matrix(0.216129,-0.006268,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216129,-0.006268,0.007247,0.249895,0,0);}
.m96_c00243{transform:matrix(0.216496,-0.005845,0.006748,0.249909,0,0);-ms-transform:matrix(0.216496,-0.005845,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216496,-0.005845,0.006748,0.249909,0,0);}
.mde_c00243{transform:matrix(0.216535,-0.009754,0.011250,0.249747,0,0);-ms-transform:matrix(0.216535,-0.009754,0.011250,0.249747,0,0);-webkit-transform:matrix(0.216535,-0.009754,0.011250,0.249747,0,0);}
.m52_c00243{transform:matrix(0.217167,-0.005646,0.006498,0.249916,0,0);-ms-transform:matrix(0.217167,-0.005646,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217167,-0.005646,0.006498,0.249916,0,0);}
.mb4_c00243{transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);-ms-transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217291,-0.005867,0.006748,0.249909,0,0);}
.mbf_c00243{transform:matrix(0.217631,-0.005876,0.006748,0.249909,0,0);-ms-transform:matrix(0.217631,-0.005876,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217631,-0.005876,0.006748,0.249909,0,0);}
.m23_c00243{transform:matrix(0.218061,-0.005670,0.006498,0.249916,0,0);-ms-transform:matrix(0.218061,-0.005670,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218061,-0.005670,0.006498,0.249916,0,0);}
.m3b_c00243{transform:matrix(0.218417,-0.005460,0.006248,0.249922,0,0);-ms-transform:matrix(0.218417,-0.005460,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218417,-0.005460,0.006248,0.249922,0,0);}
.m19_c00243{transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);-ms-transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);}
.m10_c00243{transform:matrix(0.218663,-0.006341,0.007247,0.249895,0,0);-ms-transform:matrix(0.218663,-0.006341,0.007247,0.249895,0,0);-webkit-transform:matrix(0.218663,-0.006341,0.007247,0.249895,0,0);}
.md3_c00243{transform:matrix(0.218870,-0.005909,0.006748,0.249909,0,0);-ms-transform:matrix(0.218870,-0.005909,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218870,-0.005909,0.006748,0.249909,0,0);}
.ma8_c00243{transform:matrix(0.219325,-0.005922,0.006748,0.249909,0,0);-ms-transform:matrix(0.219325,-0.005922,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219325,-0.005922,0.006748,0.249909,0,0);}
.mb3_c00243{transform:matrix(0.219910,-0.005938,0.006748,0.249909,0,0);-ms-transform:matrix(0.219910,-0.005938,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219910,-0.005938,0.006748,0.249909,0,0);}
.m54_c00243{transform:matrix(0.220266,-0.005727,0.006498,0.249916,0,0);-ms-transform:matrix(0.220266,-0.005727,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220266,-0.005727,0.006498,0.249916,0,0);}
.mb6_c00243{transform:matrix(0.221384,-0.005977,0.006748,0.249909,0,0);-ms-transform:matrix(0.221384,-0.005977,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221384,-0.005977,0.006748,0.249909,0,0);}
.ma9_c00243{transform:matrix(0.222339,-0.006003,0.006748,0.249909,0,0);-ms-transform:matrix(0.222339,-0.006003,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222339,-0.006003,0.006748,0.249909,0,0);}
.m98_c00243{transform:matrix(0.223184,-0.006026,0.006748,0.249909,0,0);-ms-transform:matrix(0.223184,-0.006026,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223184,-0.006026,0.006748,0.249909,0,0);}
.m31_c00243{transform:matrix(0.223908,-0.006046,0.006748,0.249909,0,0);-ms-transform:matrix(0.223908,-0.006046,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223908,-0.006046,0.006748,0.249909,0,0);}
.mb7_c00243{transform:matrix(0.228122,-0.006159,0.006748,0.249909,0,0);-ms-transform:matrix(0.228122,-0.006159,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228122,-0.006159,0.006748,0.249909,0,0);}
.m25_c00243{transform:matrix(0.228798,-0.005949,0.006498,0.249916,0,0);-ms-transform:matrix(0.228798,-0.005949,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228798,-0.005949,0.006498,0.249916,0,0);}
.mac_c00243{transform:matrix(0.229501,-0.006197,0.006748,0.249909,0,0);-ms-transform:matrix(0.229501,-0.006197,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229501,-0.006197,0.006748,0.249909,0,0);}
.mc3_c00243{transform:matrix(0.230121,-0.006213,0.006748,0.249909,0,0);-ms-transform:matrix(0.230121,-0.006213,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230121,-0.006213,0.006748,0.249909,0,0);}
.m50_c00243{transform:matrix(0.230337,-0.005989,0.006498,0.249916,0,0);-ms-transform:matrix(0.230337,-0.005989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230337,-0.005989,0.006498,0.249916,0,0);}
.me3_c00243{transform:matrix(0.231291,-0.008566,0.009253,0.249829,0,0);-ms-transform:matrix(0.231291,-0.008566,0.009253,0.249829,0,0);-webkit-transform:matrix(0.231291,-0.008566,0.009253,0.249829,0,0);}
.m39_c00243{transform:matrix(0.231478,-0.005787,0.006248,0.249922,0,0);-ms-transform:matrix(0.231478,-0.005787,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231478,-0.005787,0.006248,0.249922,0,0);}
.mab_c00243{transform:matrix(0.231771,-0.006258,0.006748,0.249909,0,0);-ms-transform:matrix(0.231771,-0.006258,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231771,-0.006258,0.006748,0.249909,0,0);}
.me5_c00243{transform:matrix(0.232031,-0.008594,0.009253,0.249829,0,0);-ms-transform:matrix(0.232031,-0.008594,0.009253,0.249829,0,0);-webkit-transform:matrix(0.232031,-0.008594,0.009253,0.249829,0,0);}
.me7_c00243{transform:matrix(0.232209,-0.006502,0.006997,0.249902,0,0);-ms-transform:matrix(0.232209,-0.006502,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232209,-0.006502,0.006997,0.249902,0,0);}
.mc8_c00243{transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);-ms-transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);}
.m24_c00243{transform:matrix(0.234896,-0.006107,0.006498,0.249916,0,0);-ms-transform:matrix(0.234896,-0.006107,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234896,-0.006107,0.006498,0.249916,0,0);}
.m38_c00243{transform:matrix(0.235901,-0.005898,0.006248,0.249922,0,0);-ms-transform:matrix(0.235901,-0.005898,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235901,-0.005898,0.006248,0.249922,0,0);}
.maa_c00243{transform:matrix(0.236389,-0.006382,0.006748,0.249909,0,0);-ms-transform:matrix(0.236389,-0.006382,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236389,-0.006382,0.006748,0.249909,0,0);}
.m1e_c00243{transform:matrix(0.236665,-0.006153,0.006498,0.249916,0,0);-ms-transform:matrix(0.236665,-0.006153,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236665,-0.006153,0.006498,0.249916,0,0);}
.m35_c00243{transform:matrix(0.236999,-0.006399,0.006748,0.249909,0,0);-ms-transform:matrix(0.236999,-0.006399,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236999,-0.006399,0.006748,0.249909,0,0);}
.m2_c00243{transform:matrix(0.237998,-0.007140,0.007497,0.249888,0,0);-ms-transform:matrix(0.237998,-0.007140,0.007497,0.249888,0,0);-webkit-transform:matrix(0.237998,-0.007140,0.007497,0.249888,0,0);}
.m33_c00243{transform:matrix(0.241577,-0.006523,0.006748,0.249909,0,0);-ms-transform:matrix(0.241577,-0.006523,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241577,-0.006523,0.006748,0.249909,0,0);}
.m29_c00243{transform:matrix(0.242468,-0.006304,0.006498,0.249916,0,0);-ms-transform:matrix(0.242468,-0.006304,0.006498,0.249916,0,0);-webkit-transform:matrix(0.242468,-0.006304,0.006498,0.249916,0,0);}
.m1_c00243{transform:matrix(0.243595,-0.007308,0.007497,0.249888,0,0);-ms-transform:matrix(0.243595,-0.007308,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243595,-0.007308,0.007497,0.249888,0,0);}
.mc7_c00243{transform:matrix(0.244596,-0.006604,0.006748,0.249909,0,0);-ms-transform:matrix(0.244596,-0.006604,0.006748,0.249909,0,0);-webkit-transform:matrix(0.244596,-0.006604,0.006748,0.249909,0,0);}
.m32_c00243{transform:matrix(0.245041,-0.006616,0.006748,0.249909,0,0);-ms-transform:matrix(0.245041,-0.006616,0.006748,0.249909,0,0);-webkit-transform:matrix(0.245041,-0.006616,0.006748,0.249909,0,0);}
.m36_c00243{transform:matrix(0.247405,-0.006680,0.006748,0.249909,0,0);-ms-transform:matrix(0.247405,-0.006680,0.006748,0.249909,0,0);-webkit-transform:matrix(0.247405,-0.006680,0.006748,0.249909,0,0);}
.m37_c00243{transform:matrix(0.249287,-0.006232,0.006248,0.249922,0,0);-ms-transform:matrix(0.249287,-0.006232,0.006248,0.249922,0,0);-webkit-transform:matrix(0.249287,-0.006232,0.006248,0.249922,0,0);}
.m1a_c00243{transform:matrix(0.251505,-0.006539,0.006498,0.249916,0,0);-ms-transform:matrix(0.251505,-0.006539,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251505,-0.006539,0.006498,0.249916,0,0);}
.m92_c00243{transform:matrix(0.255572,-0.006900,0.006748,0.249909,0,0);-ms-transform:matrix(0.255572,-0.006900,0.006748,0.249909,0,0);-webkit-transform:matrix(0.255572,-0.006900,0.006748,0.249909,0,0);}
.m70_c00243{transform:matrix(0.257943,-0.006707,0.006498,0.249916,0,0);-ms-transform:matrix(0.257943,-0.006707,0.006498,0.249916,0,0);-webkit-transform:matrix(0.257943,-0.006707,0.006498,0.249916,0,0);}
.m7e_c00243{transform:matrix(0.418147,-0.012544,0.007497,0.249888,0,0);-ms-transform:matrix(0.418147,-0.012544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.418147,-0.012544,0.007497,0.249888,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:0.000000px;}
.fc0_c00243{color:transparent;}
.fs1b_c00243{font-size:22.050000px;}
.fs1a_c00243{font-size:35.700000px;}
.fs17_c00243{font-size:55.650723px;}
.fs7_c00243{font-size:57.771046px;}
.fs8_c00243{font-size:59.868700px;}
.fs4_c00243{font-size:59.870226px;}
.fs14_c00243{font-size:59.871811px;}
.fs5_c00243{font-size:60.920581px;}
.fs11_c00243{font-size:60.922194px;}
.fs6_c00243{font-size:60.923868px;}
.fs10_c00243{font-size:63.022959px;}
.fs19_c00243{font-size:63.024691px;}
.fsf_c00243{font-size:64.073342px;}
.fsa_c00243{font-size:65.122000px;}
.fs16_c00243{font-size:66.139481px;}
.fs15_c00243{font-size:66.174107px;}
.fs13_c00243{font-size:67.224490px;}
.fsb_c00243{font-size:68.273065px;}
.fs12_c00243{font-size:68.274873px;}
.fse_c00243{font-size:68.280706px;}
.fs9_c00243{font-size:69.323419px;}
.fs2_c00243{font-size:69.329135px;}
.fs3_c00243{font-size:70.373774px;}
.fsd_c00243{font-size:70.381650px;}
.fsc_c00243{font-size:71.424129px;}
.fs1_c00243{font-size:74.583540px;}
.fs18_c00243{font-size:81.874197px;}
.fs0_c00243{font-size:82.950000px;}
.y0_c00243{bottom:0.000000px;}
.yef_c00243{bottom:7.830000px;}
.yee_c00243{bottom:12.690000px;}
.ye7_c00243{bottom:17.830500px;}
.ye8_c00243{bottom:19.618146px;}
.ye9_c00243{bottom:20.058978px;}
.yea_c00243{bottom:21.271896px;}
.yeb_c00243{bottom:21.899754px;}
.yec_c00243{bottom:23.336028px;}
.yed_c00243{bottom:24.323322px;}
.ye0_c00243{bottom:35.388000px;}
.ye1_c00243{bottom:36.877342px;}
.ye2_c00243{bottom:38.150013px;}
.ye3_c00243{bottom:40.287151px;}
.ye4_c00243{bottom:42.645013px;}
.ye5_c00243{bottom:43.931004px;}
.ye6_c00243{bottom:45.031347px;}
.ydd_c00243{bottom:52.128000px;}
.yde_c00243{bottom:53.070233px;}
.ydf_c00243{bottom:53.840947px;}
.yd5_c00243{bottom:68.865000px;}
.yd6_c00243{bottom:70.632264px;}
.yd7_c00243{bottom:71.291175px;}
.yd8_c00243{bottom:74.255905px;}
.yd9_c00243{bottom:75.350913px;}
.yda_c00243{bottom:76.947453px;}
.ydb_c00243{bottom:78.096704px;}
.ydc_c00243{bottom:79.693981px;}
.yce_c00243{bottom:86.077720px;}
.ycf_c00243{bottom:87.519502px;}
.yd0_c00243{bottom:87.946033px;}
.yd1_c00243{bottom:89.995450px;}
.yd2_c00243{bottom:90.409911px;}
.yd3_c00243{bottom:91.321870px;}
.yd4_c00243{bottom:93.153202px;}
.yc7_c00243{bottom:103.359913px;}
.yc8_c00243{bottom:103.949938px;}
.yc9_c00243{bottom:106.008586px;}
.yca_c00243{bottom:107.588791px;}
.ycb_c00243{bottom:108.952717px;}
.ycc_c00243{bottom:109.819651px;}
.ycd_c00243{bottom:111.217882px;}
.ybf_c00243{bottom:120.374418px;}
.yc0_c00243{bottom:121.161556px;}
.yc1_c00243{bottom:121.608126px;}
.yc2_c00243{bottom:124.527378px;}
.yc3_c00243{bottom:125.051596px;}
.yc4_c00243{bottom:126.992323px;}
.yc5_c00243{bottom:127.436625px;}
.yc6_c00243{bottom:128.235267px;}
.yb6_c00243{bottom:140.896449px;}
.yb7_c00243{bottom:141.368601px;}
.yb8_c00243{bottom:141.904798px;}
.yb9_c00243{bottom:142.621468px;}
.yba_c00243{bottom:143.059129px;}
.ybb_c00243{bottom:143.952751px;}
.ybc_c00243{bottom:145.281523px;}
.ybd_c00243{bottom:145.676353px;}
.ybe_c00243{bottom:146.009649px;}
.yaf_c00243{bottom:156.028594px;}
.yb0_c00243{bottom:156.474666px;}
.yb1_c00243{bottom:157.850220px;}
.yb2_c00243{bottom:158.602447px;}
.yb3_c00243{bottom:159.871251px;}
.yb4_c00243{bottom:160.499883px;}
.yb5_c00243{bottom:162.141540px;}
.ya8_c00243{bottom:174.663609px;}
.ya9_c00243{bottom:176.000874px;}
.yaa_c00243{bottom:177.387703px;}
.yab_c00243{bottom:179.088085px;}
.yac_c00243{bottom:179.415285px;}
.yad_c00243{bottom:180.356793px;}
.yae_c00243{bottom:181.563381px;}
.ya1_c00243{bottom:192.486984px;}
.ya2_c00243{bottom:192.828686px;}
.ya3_c00243{bottom:193.825648px;}
.ya4_c00243{bottom:194.247268px;}
.ya5_c00243{bottom:194.655042px;}
.ya6_c00243{bottom:196.323787px;}
.ya7_c00243{bottom:197.557352px;}
.y98_c00243{bottom:210.312385px;}
.y99_c00243{bottom:211.186911px;}
.y9a_c00243{bottom:211.408012px;}
.y9b_c00243{bottom:212.686404px;}
.y9c_c00243{bottom:212.968669px;}
.y9d_c00243{bottom:214.084534px;}
.y9e_c00243{bottom:214.295677px;}
.y9f_c00243{bottom:214.716828px;}
.ya0_c00243{bottom:215.359363px;}
.y93_c00243{bottom:227.331795px;}
.y94_c00243{bottom:228.514126px;}
.y95_c00243{bottom:229.049050px;}
.y96_c00243{bottom:230.321149px;}
.y97_c00243{bottom:232.562032px;}
.y8c_c00243{bottom:244.077435px;}
.y8d_c00243{bottom:245.689563px;}
.y8e_c00243{bottom:246.086065px;}
.y8f_c00243{bottom:247.090341px;}
.y90_c00243{bottom:247.587052px;}
.y91_c00243{bottom:248.157252px;}
.y92_c00243{bottom:249.625362px;}
.y85_c00243{bottom:261.369000px;}
.y86_c00243{bottom:263.451591px;}
.y87_c00243{bottom:264.166133px;}
.y88_c00243{bottom:264.776103px;}
.y89_c00243{bottom:266.933740px;}
.y8a_c00243{bottom:267.396979px;}
.y8b_c00243{bottom:268.302964px;}
.y7e_c00243{bottom:277.288050px;}
.y7f_c00243{bottom:277.858980px;}
.y80_c00243{bottom:278.848935px;}
.y81_c00243{bottom:280.446135px;}
.y82_c00243{bottom:280.956195px;}
.y83_c00243{bottom:282.753795px;}
.y84_c00243{bottom:284.963805px;}
.y77_c00243{bottom:293.767500px;}
.y78_c00243{bottom:294.574890px;}
.y79_c00243{bottom:296.672835px;}
.y7a_c00243{bottom:298.261650px;}
.y7b_c00243{bottom:299.995500px;}
.y7c_c00243{bottom:300.603945px;}
.y7d_c00243{bottom:301.834830px;}
.y6d_c00243{bottom:311.011389px;}
.y6e_c00243{bottom:311.676309px;}
.y6f_c00243{bottom:312.874230px;}
.y70_c00243{bottom:313.542543px;}
.y71_c00243{bottom:314.529540px;}
.y72_c00243{bottom:314.932707px;}
.y73_c00243{bottom:315.585909px;}
.y74_c00243{bottom:317.108208px;}
.y75_c00243{bottom:317.550741px;}
.y76_c00243{bottom:318.549183px;}
.y64_c00243{bottom:328.298844px;}
.y65_c00243{bottom:329.223951px;}
.y66_c00243{bottom:330.145587px;}
.y67_c00243{bottom:331.400775px;}
.y68_c00243{bottom:331.795509px;}
.y69_c00243{bottom:333.974556px;}
.y6a_c00243{bottom:334.418655px;}
.y6b_c00243{bottom:335.262459px;}
.y6c_c00243{bottom:337.207758px;}
.y5b_c00243{bottom:345.590892px;}
.y5c_c00243{bottom:347.280111px;}
.y5d_c00243{bottom:347.732688px;}
.y5e_c00243{bottom:349.348584px;}
.y5f_c00243{bottom:350.461779px;}
.y60_c00243{bottom:351.241575px;}
.y61_c00243{bottom:351.848598px;}
.y62_c00243{bottom:353.318937px;}
.y63_c00243{bottom:354.828366px;}
.y55_c00243{bottom:363.142500px;}
.y56_c00243{bottom:363.739314px;}
.y57_c00243{bottom:364.969695px;}
.y58_c00243{bottom:366.541701px;}
.y59_c00243{bottom:368.494677px;}
.y5a_c00243{bottom:370.702083px;}
.y4d_c00243{bottom:380.695806px;}
.y4e_c00243{bottom:381.465501px;}
.y4f_c00243{bottom:383.381793px;}
.y50_c00243{bottom:383.743524px;}
.y51_c00243{bottom:384.242862px;}
.y52_c00243{bottom:386.382849px;}
.y53_c00243{bottom:386.919372px;}
.y54_c00243{bottom:387.551031px;}
.y46_c00243{bottom:398.254035px;}
.y47_c00243{bottom:399.478161px;}
.y48_c00243{bottom:399.950589px;}
.y49_c00243{bottom:401.286738px;}
.y4a_c00243{bottom:401.718393px;}
.y4b_c00243{bottom:403.461024px;}
.y4c_c00243{bottom:404.913213px;}
.y3e_c00243{bottom:415.539000px;}
.y3f_c00243{bottom:417.564192px;}
.y40_c00243{bottom:418.287369px;}
.y41_c00243{bottom:419.007543px;}
.y42_c00243{bottom:420.762855px;}
.y43_c00243{bottom:421.191114px;}
.y44_c00243{bottom:422.100477px;}
.y45_c00243{bottom:422.489931px;}
.y38_c00243{bottom:432.819000px;}
.y39_c00243{bottom:434.993513px;}
.y3a_c00243{bottom:437.598712px;}
.y3b_c00243{bottom:438.530437px;}
.y3c_c00243{bottom:438.922163px;}
.y3d_c00243{bottom:439.824338px;}
.y32_c00243{bottom:449.826000px;}
.y33_c00243{bottom:450.588413px;}
.y34_c00243{bottom:452.825835px;}
.y35_c00243{bottom:455.779945px;}
.y36_c00243{bottom:456.240228px;}
.y37_c00243{bottom:457.610627px;}
.y2b_c00243{bottom:466.570500px;}
.y2c_c00243{bottom:468.358146px;}
.y2d_c00243{bottom:469.224522px;}
.y2e_c00243{bottom:470.407998px;}
.y2f_c00243{bottom:471.228174px;}
.y30_c00243{bottom:472.956600px;}
.y31_c00243{bottom:473.513352px;}
.y21_c00243{bottom:484.106364px;}
.y22_c00243{bottom:485.229444px;}
.y23_c00243{bottom:486.063603px;}
.y24_c00243{bottom:486.756510px;}
.y25_c00243{bottom:487.736466px;}
.y26_c00243{bottom:488.104437px;}
.y27_c00243{bottom:488.462931px;}
.y28_c00243{bottom:489.506181px;}
.y29_c00243{bottom:490.205562px;}
.y2a_c00243{bottom:492.072345px;}
.y18_c00243{bottom:501.123741px;}
.y19_c00243{bottom:502.003392px;}
.y1a_c00243{bottom:502.999434px;}
.y1b_c00243{bottom:504.385443px;}
.y1c_c00243{bottom:506.307234px;}
.y1d_c00243{bottom:506.706696px;}
.y1e_c00243{bottom:507.301950px;}
.y1f_c00243{bottom:508.532706px;}
.y20_c00243{bottom:508.934430px;}
.y12_c00243{bottom:518.409000px;}
.y13_c00243{bottom:520.248903px;}
.y14_c00243{bottom:521.295975px;}
.y15_c00243{bottom:523.154559px;}
.y16_c00243{bottom:524.792208px;}
.y17_c00243{bottom:525.241683px;}
.ya_c00243{bottom:535.150500px;}
.yb_c00243{bottom:535.682940px;}
.yc_c00243{bottom:536.365455px;}
.yd_c00243{bottom:538.432836px;}
.ye_c00243{bottom:539.114916px;}
.yf_c00243{bottom:540.352230px;}
.y10_c00243{bottom:541.574798px;}
.y11_c00243{bottom:543.469310px;}
.y2_c00243{bottom:552.163500px;}
.y3_c00243{bottom:553.682610px;}
.y4_c00243{bottom:554.189040px;}
.y5_c00243{bottom:556.149105px;}
.y6_c00243{bottom:556.664130px;}
.y7_c00243{bottom:557.616510px;}
.y8_c00243{bottom:559.499580px;}
.y9_c00243{bottom:559.862370px;}
.y1_c00243{bottom:570.643500px;}
.h1d_c00243{height:22.050000px;}
.h1c_c00243{height:35.700000px;}
.h19_c00243{height:55.650723px;}
.h9_c00243{height:57.771046px;}
.ha_c00243{height:59.868700px;}
.h6_c00243{height:59.870226px;}
.h16_c00243{height:59.871811px;}
.h7_c00243{height:60.920581px;}
.h13_c00243{height:60.922194px;}
.h8_c00243{height:60.923868px;}
.h12_c00243{height:63.022959px;}
.h1b_c00243{height:63.024691px;}
.h11_c00243{height:64.073342px;}
.hc_c00243{height:65.122000px;}
.h18_c00243{height:66.139481px;}
.h17_c00243{height:66.174107px;}
.h15_c00243{height:67.224490px;}
.hd_c00243{height:68.273065px;}
.h14_c00243{height:68.274873px;}
.h10_c00243{height:68.280706px;}
.hb_c00243{height:69.323419px;}
.h4_c00243{height:69.329135px;}
.h5_c00243{height:70.373774px;}
.hf_c00243{height:70.381650px;}
.he_c00243{height:71.424129px;}
.h3_c00243{height:74.583540px;}
.h1a_c00243{height:81.874197px;}
.h2_c00243{height:82.950000px;}
.h1_c00243{height:618.750000px;}
.h0_c00243{height:619.050000px;}
.w0_c00243{width:359.100000px;}
.w1_c00243{width:359.250000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:33.106500px;}
.x10_c00243{left:34.363500px;}
.x39_c00243{left:35.465475px;}
.x2d_c00243{left:36.793500px;}
.x5f_c00243{left:37.980204px;}
.x6d_c00243{left:39.416058px;}
.x7c_c00243{left:40.574199px;}
.x7f_c00243{left:41.674500px;}
.x84_c00243{left:42.768000px;}
.x9_c00243{left:51.945000px;}
.x40_c00243{left:53.866182px;}
.x6a_c00243{left:55.607253px;}
.x4b_c00243{left:57.779049px;}
.x55_c00243{left:59.726295px;}
.x2a_c00243{left:62.206500px;}
.x3d_c00243{left:64.112034px;}
.x78_c00243{left:65.320932px;}
.x16_c00243{left:66.653571px;}
.x5a_c00243{left:68.631000px;}
.xa_c00243{left:75.480000px;}
.x79_c00243{left:79.747893px;}
.x3a_c00243{left:80.815305px;}
.x3_c00243{left:83.743500px;}
.x67_c00243{left:86.290794px;}
.x44_c00243{left:87.501054px;}
.x63_c00243{left:92.354217px;}
.x6e_c00243{left:95.115554px;}
.x41_c00243{left:96.281367px;}
.x26_c00243{left:97.980000px;}
.x7d_c00243{left:99.593064px;}
.x4_c00243{left:100.624500px;}
.x17_c00243{left:103.519596px;}
.x11_c00243{left:105.129000px;}
.x1e_c00243{left:106.468122px;}
.x81_c00243{left:108.181747px;}
.x33_c00243{left:112.810500px;}
.x60_c00243{left:114.756638px;}
.x64_c00243{left:116.669498px;}
.x4c_c00243{left:120.031614px;}
.x85_c00243{left:122.356500px;}
.x2e_c00243{left:123.774000px;}
.x6b_c00243{left:126.549659px;}
.x27_c00243{left:128.922000px;}
.x76_c00243{left:130.045086px;}
.x1f_c00243{left:132.136959px;}
.x51_c00243{left:133.807500px;}
.x3e_c00243{left:135.102201px;}
.x47_c00243{left:136.510746px;}
.x34_c00243{left:140.625000px;}
.x72_c00243{left:142.399914px;}
.x12_c00243{left:145.401000px;}
.xb_c00243{left:146.769000px;}
.x3b_c00243{left:147.778050px;}
.x48_c00243{left:149.268108px;}
.x42_c00243{left:150.508155px;}
.x4d_c00243{left:152.912682px;}
.x18_c00243{left:154.864770px;}
.x56_c00243{left:159.276765px;}
.x3c_c00243{left:163.745121px;}
.x1_c00243{left:166.590000px;}
.x20_c00243{left:168.442023px;}
.xc_c00243{left:170.289000px;}
.x5b_c00243{left:172.228500px;}
.x65_c00243{left:174.514314px;}
.x7e_c00243{left:176.615196px;}
.x57_c00243{left:178.881105px;}
.x21_c00243{left:182.075172px;}
.x5_c00243{left:183.127500px;}
.x68_c00243{left:185.250311px;}
.x52_c00243{left:186.768000px;}
.x4e_c00243{left:188.115516px;}
.x7a_c00243{left:190.827405px;}
.x73_c00243{left:193.173168px;}
.x22_c00243{left:195.343821px;}
.x28_c00243{left:200.481000px;}
.x61_c00243{left:205.159799px;}
.x45_c00243{left:207.593253px;}
.xd_c00243{left:212.955000px;}
.x6_c00243{left:214.873500px;}
.x13_c00243{left:216.885000px;}
.x74_c00243{left:218.290505px;}
.x49_c00243{left:219.568482px;}
.x6f_c00243{left:223.800503px;}
.x19_c00243{left:226.066437px;}
.x2f_c00243{left:227.982000px;}
.x6c_c00243{left:230.366261px;}
.x62_c00243{left:232.282673px;}
.x23_c00243{left:233.967807px;}
.x35_c00243{left:235.836000px;}
.x70_c00243{left:237.420096px;}
.x4f_c00243{left:238.871751px;}
.x1a_c00243{left:240.853047px;}
.x53_c00243{left:244.563000px;}
.x3f_c00243{left:246.255315px;}
.x58_c00243{left:248.009385px;}
.x36_c00243{left:252.307500px;}
.x50_c00243{left:253.640730px;}
.xe_c00243{left:255.112500px;}
.x24_c00243{left:259.885644px;}
.x4a_c00243{left:261.078561px;}
.x1b_c00243{left:262.881462px;}
.x82_c00243{left:263.908864px;}
.x30_c00243{left:265.251000px;}
.x80_c00243{left:266.612837px;}
.x7b_c00243{left:267.764603px;}
.x46_c00243{left:270.518787px;}
.x2b_c00243{left:271.533000px;}
.x5c_c00243{left:274.732500px;}
.x66_c00243{left:276.357044px;}
.x7_c00243{left:277.642500px;}
.x14_c00243{left:279.871500px;}
.x31_c00243{left:280.920000px;}
.x29_c00243{left:282.094500px;}
.x75_c00243{left:283.985069px;}
.x37_c00243{left:287.283000px;}
.x8_c00243{left:289.735500px;}
.x77_c00243{left:290.834795px;}
.x5d_c00243{left:291.889500px;}
.x43_c00243{left:293.953962px;}
.x15_c00243{left:297.159000px;}
.x83_c00243{left:298.630608px;}
.x38_c00243{left:302.262000px;}
.x54_c00243{left:305.874000px;}
.x1c_c00243{left:308.486292px;}
.x32_c00243{left:317.007000px;}
.x69_c00243{left:318.104589px;}
.xf_c00243{left:320.440500px;}
.x2c_c00243{left:322.288500px;}
.x1d_c00243{left:323.359902px;}
.x5e_c00243{left:325.444500px;}
.x71_c00243{left:326.875305px;}
.x25_c00243{left:329.029350px;}
.x59_c00243{left:333.036600px;}
.x86_c00243{left:349.920000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.fs1b_c00243{font-size:19.600000pt;}
.fs1a_c00243{font-size:31.733333pt;}
.fs17_c00243{font-size:49.467310pt;}
.fs7_c00243{font-size:51.352041pt;}
.fs8_c00243{font-size:53.216622pt;}
.fs4_c00243{font-size:53.217979pt;}
.fs14_c00243{font-size:53.219388pt;}
.fs5_c00243{font-size:54.151627pt;}
.fs11_c00243{font-size:54.153061pt;}
.fs6_c00243{font-size:54.154549pt;}
.fs10_c00243{font-size:56.020408pt;}
.fs19_c00243{font-size:56.021948pt;}
.fsf_c00243{font-size:56.954082pt;}
.fsa_c00243{font-size:57.886222pt;}
.fs16_c00243{font-size:58.790650pt;}
.fs15_c00243{font-size:58.821429pt;}
.fs13_c00243{font-size:59.755102pt;}
.fsb_c00243{font-size:60.687169pt;}
.fs12_c00243{font-size:60.688776pt;}
.fse_c00243{font-size:60.693961pt;}
.fs9_c00243{font-size:61.620817pt;}
.fs2_c00243{font-size:61.625897pt;}
.fs3_c00243{font-size:62.554466pt;}
.fsd_c00243{font-size:62.561467pt;}
.fsc_c00243{font-size:63.488115pt;}
.fs1_c00243{font-size:66.296480pt;}
.fs18_c00243{font-size:72.777064pt;}
.fs0_c00243{font-size:73.733333pt;}
.y0_c00243{bottom:0.000000pt;}
.yef_c00243{bottom:6.960000pt;}
.yee_c00243{bottom:11.280000pt;}
.ye7_c00243{bottom:15.849333pt;}
.ye8_c00243{bottom:17.438352pt;}
.ye9_c00243{bottom:17.830203pt;}
.yea_c00243{bottom:18.908352pt;}
.yeb_c00243{bottom:19.466448pt;}
.yec_c00243{bottom:20.743136pt;}
.yed_c00243{bottom:21.620731pt;}
.ye0_c00243{bottom:31.456000pt;}
.ye1_c00243{bottom:32.779860pt;}
.ye2_c00243{bottom:33.911123pt;}
.ye3_c00243{bottom:35.810801pt;}
.ye4_c00243{bottom:37.906679pt;}
.ye5_c00243{bottom:39.049781pt;}
.ye6_c00243{bottom:40.027864pt;}
.ydd_c00243{bottom:46.336000pt;}
.yde_c00243{bottom:47.173540pt;}
.ydf_c00243{bottom:47.858620pt;}
.yd5_c00243{bottom:61.213333pt;}
.yd6_c00243{bottom:62.784235pt;}
.yd7_c00243{bottom:63.369933pt;}
.yd8_c00243{bottom:66.005249pt;}
.yd9_c00243{bottom:66.978589pt;}
.yda_c00243{bottom:68.397736pt;}
.ydb_c00243{bottom:69.419292pt;}
.ydc_c00243{bottom:70.839095pt;}
.yce_c00243{bottom:76.513529pt;}
.ycf_c00243{bottom:77.795113pt;}
.yd0_c00243{bottom:78.174252pt;}
.yd1_c00243{bottom:79.995956pt;}
.yd2_c00243{bottom:80.364365pt;}
.yd3_c00243{bottom:81.174996pt;}
.yd4_c00243{bottom:82.802847pt;}
.yc7_c00243{bottom:91.875479pt;}
.yc8_c00243{bottom:92.399945pt;}
.yc9_c00243{bottom:94.229855pt;}
.yca_c00243{bottom:95.634481pt;}
.ycb_c00243{bottom:96.846860pt;}
.ycc_c00243{bottom:97.617468pt;}
.ycd_c00243{bottom:98.860340pt;}
.ybf_c00243{bottom:106.999483pt;}
.yc0_c00243{bottom:107.699161pt;}
.yc1_c00243{bottom:108.096112pt;}
.yc2_c00243{bottom:110.691003pt;}
.yc3_c00243{bottom:111.156975pt;}
.yc4_c00243{bottom:112.882065pt;}
.yc5_c00243{bottom:113.277000pt;}
.yc6_c00243{bottom:113.986904pt;}
.yb6_c00243{bottom:125.241288pt;}
.yb7_c00243{bottom:125.660979pt;}
.yb8_c00243{bottom:126.137599pt;}
.yb9_c00243{bottom:126.774639pt;}
.yba_c00243{bottom:127.163671pt;}
.ybb_c00243{bottom:127.958001pt;}
.ybc_c00243{bottom:129.139132pt;}
.ybd_c00243{bottom:129.490092pt;}
.ybe_c00243{bottom:129.786355pt;}
.yaf_c00243{bottom:138.692084pt;}
.yb0_c00243{bottom:139.088592pt;}
.yb1_c00243{bottom:140.311307pt;}
.yb2_c00243{bottom:140.979953pt;}
.yb3_c00243{bottom:142.107779pt;}
.yb4_c00243{bottom:142.666563pt;}
.yb5_c00243{bottom:144.125813pt;}
.ya8_c00243{bottom:155.256541pt;}
.ya9_c00243{bottom:156.445221pt;}
.yaa_c00243{bottom:157.677959pt;}
.yab_c00243{bottom:159.189409pt;}
.yac_c00243{bottom:159.480253pt;}
.yad_c00243{bottom:160.317149pt;}
.yae_c00243{bottom:161.389672pt;}
.ya1_c00243{bottom:171.099541pt;}
.ya2_c00243{bottom:171.403276pt;}
.ya3_c00243{bottom:172.289465pt;}
.ya4_c00243{bottom:172.664239pt;}
.ya5_c00243{bottom:173.026704pt;}
.ya6_c00243{bottom:174.510033pt;}
.ya7_c00243{bottom:175.606535pt;}
.y98_c00243{bottom:186.944343pt;}
.y99_c00243{bottom:187.721699pt;}
.y9a_c00243{bottom:187.918233pt;}
.y9b_c00243{bottom:189.054581pt;}
.y9c_c00243{bottom:189.305484pt;}
.y9d_c00243{bottom:190.297364pt;}
.y9e_c00243{bottom:190.485047pt;}
.y9f_c00243{bottom:190.859403pt;}
.ya0_c00243{bottom:191.430545pt;}
.y93_c00243{bottom:202.072707pt;}
.y94_c00243{bottom:203.123668pt;}
.y95_c00243{bottom:203.599156pt;}
.y96_c00243{bottom:204.729911pt;}
.y97_c00243{bottom:206.721807pt;}
.y8c_c00243{bottom:216.957720pt;}
.y8d_c00243{bottom:218.390723pt;}
.y8e_c00243{bottom:218.743169pt;}
.y8f_c00243{bottom:219.635859pt;}
.y90_c00243{bottom:220.077380pt;}
.y91_c00243{bottom:220.584224pt;}
.y92_c00243{bottom:221.889211pt;}
.y85_c00243{bottom:232.328000pt;}
.y86_c00243{bottom:234.179192pt;}
.y87_c00243{bottom:234.814340pt;}
.y88_c00243{bottom:235.356536pt;}
.y89_c00243{bottom:237.274436pt;}
.y8a_c00243{bottom:237.686204pt;}
.y8b_c00243{bottom:238.491524pt;}
.y7e_c00243{bottom:246.478267pt;}
.y7f_c00243{bottom:246.985760pt;}
.y80_c00243{bottom:247.865720pt;}
.y81_c00243{bottom:249.285453pt;}
.y82_c00243{bottom:249.738840pt;}
.y83_c00243{bottom:251.336707pt;}
.y84_c00243{bottom:253.301160pt;}
.y77_c00243{bottom:261.126667pt;}
.y78_c00243{bottom:261.844347pt;}
.y79_c00243{bottom:263.709187pt;}
.y7a_c00243{bottom:265.121467pt;}
.y7b_c00243{bottom:266.662667pt;}
.y7c_c00243{bottom:267.203507pt;}
.y7d_c00243{bottom:268.297627pt;}
.y6d_c00243{bottom:276.454568pt;}
.y6e_c00243{bottom:277.045608pt;}
.y6f_c00243{bottom:278.110427pt;}
.y70_c00243{bottom:278.704483pt;}
.y71_c00243{bottom:279.581813pt;}
.y72_c00243{bottom:279.940184pt;}
.y73_c00243{bottom:280.520808pt;}
.y74_c00243{bottom:281.873963pt;}
.y75_c00243{bottom:282.267325pt;}
.y76_c00243{bottom:283.154829pt;}
.y64_c00243{bottom:291.821195pt;}
.y65_c00243{bottom:292.643512pt;}
.y66_c00243{bottom:293.462744pt;}
.y67_c00243{bottom:294.578467pt;}
.y68_c00243{bottom:294.929341pt;}
.y69_c00243{bottom:296.866272pt;}
.y6a_c00243{bottom:297.261027pt;}
.y6b_c00243{bottom:298.011075pt;}
.y6c_c00243{bottom:299.740229pt;}
.y5b_c00243{bottom:307.191904pt;}
.y5c_c00243{bottom:308.693432pt;}
.y5d_c00243{bottom:309.095723pt;}
.y5e_c00243{bottom:310.532075pt;}
.y5f_c00243{bottom:311.521581pt;}
.y60_c00243{bottom:312.214733pt;}
.y61_c00243{bottom:312.754309pt;}
.y62_c00243{bottom:314.061277pt;}
.y63_c00243{bottom:315.402992pt;}
.y55_c00243{bottom:322.793333pt;}
.y56_c00243{bottom:323.323835pt;}
.y57_c00243{bottom:324.417507pt;}
.y58_c00243{bottom:325.814845pt;}
.y59_c00243{bottom:327.550824pt;}
.y5a_c00243{bottom:329.512963pt;}
.y4d_c00243{bottom:338.396272pt;}
.y4e_c00243{bottom:339.080445pt;}
.y4f_c00243{bottom:340.783816pt;}
.y50_c00243{bottom:341.105355pt;}
.y51_c00243{bottom:341.549211pt;}
.y52_c00243{bottom:343.451421pt;}
.y53_c00243{bottom:343.928331pt;}
.y54_c00243{bottom:344.489805pt;}
.y46_c00243{bottom:354.003587pt;}
.y47_c00243{bottom:355.091699pt;}
.y48_c00243{bottom:355.511635pt;}
.y49_c00243{bottom:356.699323pt;}
.y4a_c00243{bottom:357.083016pt;}
.y4b_c00243{bottom:358.632021pt;}
.y4c_c00243{bottom:359.922856pt;}
.y3e_c00243{bottom:369.368000pt;}
.y3f_c00243{bottom:371.168171pt;}
.y40_c00243{bottom:371.810995pt;}
.y41_c00243{bottom:372.451149pt;}
.y42_c00243{bottom:374.011427pt;}
.y43_c00243{bottom:374.392101pt;}
.y44_c00243{bottom:375.200424pt;}
.y45_c00243{bottom:375.546605pt;}
.y38_c00243{bottom:384.728000pt;}
.y39_c00243{bottom:386.660900pt;}
.y3a_c00243{bottom:388.976633pt;}
.y3b_c00243{bottom:389.804833pt;}
.y3c_c00243{bottom:390.153033pt;}
.y3d_c00243{bottom:390.954967pt;}
.y32_c00243{bottom:399.845333pt;}
.y33_c00243{bottom:400.523033pt;}
.y34_c00243{bottom:402.511853pt;}
.y35_c00243{bottom:405.137729pt;}
.y36_c00243{bottom:405.546869pt;}
.y37_c00243{bottom:406.765001pt;}
.y2b_c00243{bottom:414.729333pt;}
.y2c_c00243{bottom:416.318352pt;}
.y2d_c00243{bottom:417.088464pt;}
.y2e_c00243{bottom:418.140443pt;}
.y2f_c00243{bottom:418.869488pt;}
.y30_c00243{bottom:420.405867pt;}
.y31_c00243{bottom:420.900757pt;}
.y21_c00243{bottom:430.316768pt;}
.y22_c00243{bottom:431.315061pt;}
.y23_c00243{bottom:432.056536pt;}
.y24_c00243{bottom:432.672453pt;}
.y25_c00243{bottom:433.543525pt;}
.y26_c00243{bottom:433.870611pt;}
.y27_c00243{bottom:434.189272pt;}
.y28_c00243{bottom:435.116605pt;}
.y29_c00243{bottom:435.738277pt;}
.y2a_c00243{bottom:437.397640pt;}
.y18_c00243{bottom:445.443325pt;}
.y19_c00243{bottom:446.225237pt;}
.y1a_c00243{bottom:447.110608pt;}
.y1b_c00243{bottom:448.342616pt;}
.y1c_c00243{bottom:450.050875pt;}
.y1d_c00243{bottom:450.405952pt;}
.y1e_c00243{bottom:450.935067pt;}
.y1f_c00243{bottom:452.029072pt;}
.y20_c00243{bottom:452.386160pt;}
.y12_c00243{bottom:460.808000pt;}
.y13_c00243{bottom:462.443469pt;}
.y14_c00243{bottom:463.374200pt;}
.y15_c00243{bottom:465.026275pt;}
.y16_c00243{bottom:466.481963pt;}
.y17_c00243{bottom:466.881496pt;}
.ya_c00243{bottom:475.689333pt;}
.yb_c00243{bottom:476.162613pt;}
.yc_c00243{bottom:476.769293pt;}
.yd_c00243{bottom:478.606965pt;}
.ye_c00243{bottom:479.213259pt;}
.yf_c00243{bottom:480.313093pt;}
.y10_c00243{bottom:481.399820pt;}
.y11_c00243{bottom:483.083831pt;}
.y2_c00243{bottom:490.812000pt;}
.y3_c00243{bottom:492.162320pt;}
.y4_c00243{bottom:492.612480pt;}
.y5_c00243{bottom:494.354760pt;}
.y6_c00243{bottom:494.812560pt;}
.y7_c00243{bottom:495.659120pt;}
.y8_c00243{bottom:497.332960pt;}
.y9_c00243{bottom:497.655440pt;}
.y1_c00243{bottom:507.238667pt;}
.h1d_c00243{height:19.600000pt;}
.h1c_c00243{height:31.733333pt;}
.h19_c00243{height:49.467310pt;}
.h9_c00243{height:51.352041pt;}
.ha_c00243{height:53.216622pt;}
.h6_c00243{height:53.217979pt;}
.h16_c00243{height:53.219388pt;}
.h7_c00243{height:54.151627pt;}
.h13_c00243{height:54.153061pt;}
.h8_c00243{height:54.154549pt;}
.h12_c00243{height:56.020408pt;}
.h1b_c00243{height:56.021948pt;}
.h11_c00243{height:56.954082pt;}
.hc_c00243{height:57.886222pt;}
.h18_c00243{height:58.790650pt;}
.h17_c00243{height:58.821429pt;}
.h15_c00243{height:59.755102pt;}
.hd_c00243{height:60.687169pt;}
.h14_c00243{height:60.688776pt;}
.h10_c00243{height:60.693961pt;}
.hb_c00243{height:61.620817pt;}
.h4_c00243{height:61.625897pt;}
.h5_c00243{height:62.554466pt;}
.hf_c00243{height:62.561467pt;}
.he_c00243{height:63.488115pt;}
.h3_c00243{height:66.296480pt;}
.h1a_c00243{height:72.777064pt;}
.h2_c00243{height:73.733333pt;}
.h1_c00243{height:550.000000pt;}
.h0_c00243{height:550.266667pt;}
.w0_c00243{width:319.200000pt;}
.w1_c00243{width:319.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:29.428000pt;}
.x10_c00243{left:30.545333pt;}
.x39_c00243{left:31.524867pt;}
.x2d_c00243{left:32.705333pt;}
.x5f_c00243{left:33.760181pt;}
.x6d_c00243{left:35.036496pt;}
.x7c_c00243{left:36.065955pt;}
.x7f_c00243{left:37.044000pt;}
.x84_c00243{left:38.016000pt;}
.x9_c00243{left:46.173333pt;}
.x40_c00243{left:47.881051pt;}
.x6a_c00243{left:49.428669pt;}
.x4b_c00243{left:51.359155pt;}
.x55_c00243{left:53.090040pt;}
.x2a_c00243{left:55.294667pt;}
.x3d_c00243{left:56.988475pt;}
.x78_c00243{left:58.063051pt;}
.x16_c00243{left:59.247619pt;}
.x5a_c00243{left:61.005333pt;}
.xa_c00243{left:67.093333pt;}
.x79_c00243{left:70.887016pt;}
.x3a_c00243{left:71.835827pt;}
.x3_c00243{left:74.438667pt;}
.x67_c00243{left:76.702928pt;}
.x44_c00243{left:77.778715pt;}
.x63_c00243{left:82.092637pt;}
.x6e_c00243{left:84.547159pt;}
.x41_c00243{left:85.583437pt;}
.x26_c00243{left:87.093333pt;}
.x7d_c00243{left:88.527168pt;}
.x4_c00243{left:89.444000pt;}
.x17_c00243{left:92.017419pt;}
.x11_c00243{left:93.448000pt;}
.x1e_c00243{left:94.638331pt;}
.x81_c00243{left:96.161553pt;}
.x33_c00243{left:100.276000pt;}
.x60_c00243{left:102.005900pt;}
.x64_c00243{left:103.706220pt;}
.x4c_c00243{left:106.694768pt;}
.x85_c00243{left:108.761333pt;}
.x2e_c00243{left:110.021333pt;}
.x6b_c00243{left:112.488585pt;}
.x27_c00243{left:114.597333pt;}
.x76_c00243{left:115.595632pt;}
.x1f_c00243{left:117.455075pt;}
.x51_c00243{left:118.940000pt;}
.x3e_c00243{left:120.090845pt;}
.x47_c00243{left:121.342885pt;}
.x34_c00243{left:125.000000pt;}
.x72_c00243{left:126.577701pt;}
.x12_c00243{left:129.245333pt;}
.xb_c00243{left:130.461333pt;}
.x3b_c00243{left:131.358267pt;}
.x48_c00243{left:132.682763pt;}
.x42_c00243{left:133.785027pt;}
.x4d_c00243{left:135.922384pt;}
.x18_c00243{left:137.657573pt;}
.x56_c00243{left:141.579347pt;}
.x3c_c00243{left:145.551219pt;}
.x1_c00243{left:148.080000pt;}
.x20_c00243{left:149.726243pt;}
.xc_c00243{left:151.368000pt;}
.x5b_c00243{left:153.092000pt;}
.x65_c00243{left:155.123835pt;}
.x7e_c00243{left:156.991285pt;}
.x57_c00243{left:159.005427pt;}
.x21_c00243{left:161.844597pt;}
.x5_c00243{left:162.780000pt;}
.x68_c00243{left:164.666943pt;}
.x52_c00243{left:166.016000pt;}
.x4e_c00243{left:167.213792pt;}
.x7a_c00243{left:169.624360pt;}
.x73_c00243{left:171.709483pt;}
.x22_c00243{left:173.638952pt;}
.x28_c00243{left:178.205333pt;}
.x61_c00243{left:182.364265pt;}
.x45_c00243{left:184.527336pt;}
.xd_c00243{left:189.293333pt;}
.x6_c00243{left:190.998667pt;}
.x13_c00243{left:192.786667pt;}
.x74_c00243{left:194.036004pt;}
.x49_c00243{left:195.171984pt;}
.x6f_c00243{left:198.933780pt;}
.x19_c00243{left:200.947944pt;}
.x2f_c00243{left:202.650667pt;}
.x6c_c00243{left:204.770009pt;}
.x62_c00243{left:206.473487pt;}
.x23_c00243{left:207.971384pt;}
.x35_c00243{left:209.632000pt;}
.x70_c00243{left:211.040085pt;}
.x4f_c00243{left:212.330445pt;}
.x1a_c00243{left:214.091597pt;}
.x53_c00243{left:217.389333pt;}
.x3f_c00243{left:218.893613pt;}
.x58_c00243{left:220.452787pt;}
.x36_c00243{left:224.273333pt;}
.x50_c00243{left:225.458427pt;}
.xe_c00243{left:226.766667pt;}
.x24_c00243{left:231.009461pt;}
.x4a_c00243{left:232.069832pt;}
.x1b_c00243{left:233.672411pt;}
.x82_c00243{left:234.585657pt;}
.x30_c00243{left:235.778667pt;}
.x80_c00243{left:236.989188pt;}
.x7b_c00243{left:238.012980pt;}
.x46_c00243{left:240.461144pt;}
.x2b_c00243{left:241.362667pt;}
.x5c_c00243{left:244.206667pt;}
.x66_c00243{left:245.650705pt;}
.x7_c00243{left:246.793333pt;}
.x14_c00243{left:248.774667pt;}
.x31_c00243{left:249.706667pt;}
.x29_c00243{left:250.750667pt;}
.x75_c00243{left:252.431172pt;}
.x37_c00243{left:255.362667pt;}
.x8_c00243{left:257.542667pt;}
.x77_c00243{left:258.519817pt;}
.x5d_c00243{left:259.457333pt;}
.x43_c00243{left:261.292411pt;}
.x15_c00243{left:264.141333pt;}
.x83_c00243{left:265.449429pt;}
.x38_c00243{left:268.677333pt;}
.x54_c00243{left:271.888000pt;}
.x1c_c00243{left:274.210037pt;}
.x32_c00243{left:281.784000pt;}
.x69_c00243{left:282.759635pt;}
.xf_c00243{left:284.836000pt;}
.x2c_c00243{left:286.478667pt;}
.x1d_c00243{left:287.431024pt;}
.x5e_c00243{left:289.284000pt;}
.x71_c00243{left:290.555827pt;}
.x25_c00243{left:292.470533pt;}
.x59_c00243{left:296.032533pt;}
.x86_c00243{left:311.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00244 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00244 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00244 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00244 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00244.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00244{transform:matrix(0.033110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033110,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.099065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099065,0.000000,0.000000,0.250000,0,0);}
.md5_c00244{transform:matrix(0.103806,0.006345,-0.015252,0.249534,0,0);-ms-transform:matrix(0.103806,0.006345,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.103806,0.006345,-0.015252,0.249534,0,0);}
.m47_c00244{transform:matrix(0.119505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119505,0.000000,0.000000,0.250000,0,0);}
.m92_c00244{transform:matrix(0.122040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122040,0.000000,0.000000,0.250000,0,0);}
.maf_c00244{transform:matrix(0.123790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123790,0.000000,0.000000,0.250000,0,0);}
.mde_c00244{transform:matrix(0.124549,0.007987,-0.015999,0.249488,0,0);-ms-transform:matrix(0.124549,0.007987,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.124549,0.007987,-0.015999,0.249488,0,0);}
.m82_c00244{transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);}
.mae_c00244{transform:matrix(0.144040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144040,0.000000,0.000000,0.250000,0,0);}
.m9d_c00244{transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);}
.m8f_c00244{transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.ma3_c00244{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m90_c00244{transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);}
.m6d_c00244{transform:matrix(0.155495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155495,0.000000,0.000000,0.250000,0,0);}
.m89_c00244{transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);}
.m8b_c00244{transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00244{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.mc2_c00244{transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.ma7_c00244{transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{transform:matrix(0.160580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160580,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.md4_c00244{transform:matrix(0.163210,0.009976,-0.015252,0.249534,0,0);-ms-transform:matrix(0.163210,0.009976,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.163210,0.009976,-0.015252,0.249534,0,0);}
.m7_c00244{transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);}
.mc6_c00244{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);}
.mda_c00244{transform:matrix(0.167967,0.010266,-0.015252,0.249534,0,0);-ms-transform:matrix(0.167967,0.010266,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.167967,0.010266,-0.015252,0.249534,0,0);}
.maa_c00244{transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);}
.ma5_c00244{transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);}
.m68_c00244{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m69_c00244{transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m72_c00244{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.mc9_c00244{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.171485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171485,0.000000,0.000000,0.250000,0,0);}
.mb0_c00244{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m88_c00244{transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171680,0.000000,0.000000,0.250000,0,0);}
.m93_c00244{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);}
.mb8_c00244{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.mb1_c00244{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.mc4_c00244{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.med_c00244{transform:matrix(0.174921,0.005248,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174921,0.005248,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174921,0.005248,-0.007497,0.249888,0,0);}
.m75_c00244{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m98_c00244{transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175855,0.000000,0.000000,0.250000,0,0);}
.m6f_c00244{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);}
.mbc_c00244{transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);}
.m4c_c00244{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00244{transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);}
.m97_c00244{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.me5_c00244{transform:matrix(0.179499,0.005385,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179499,0.005385,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179499,0.005385,-0.007497,0.249888,0,0);}
.m2f_c00244{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.m80_c00244{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m76_c00244{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00244{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);}
.m8c_c00244{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m49_c00244{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.m79_c00244{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00244{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.m4a_c00244{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);}
.m51_c00244{transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.m84_c00244{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00244{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.m64_c00244{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.ma9_c00244{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.meb_c00244{transform:matrix(0.185681,0.005570,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185681,0.005570,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185681,0.005570,-0.007497,0.249888,0,0);}
.md_c00244{transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);}
.m4f_c00244{transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);}
.mbd_c00244{transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186210,0.000000,0.000000,0.250000,0,0);}
.ma1_c00244{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.m5a_c00244{transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);}
.mf4_c00244{transform:matrix(0.188100,0.005643,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188100,0.005643,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188100,0.005643,-0.007497,0.249888,0,0);}
.mc1_c00244{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m5d_c00244{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.mc3_c00244{transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);}
.m73_c00244{transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188570,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.me3_c00244{transform:matrix(0.189191,0.012133,-0.015999,0.249488,0,0);-ms-transform:matrix(0.189191,0.012133,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.189191,0.012133,-0.015999,0.249488,0,0);}
.m37_c00244{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.mc7_c00244{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.m4e_c00244{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m2c_c00244{transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);}
.mb6_c00244{transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);}
.m25_c00244{transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);}
.m81_c00244{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m44_c00244{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.mc5_c00244{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.me7_c00244{transform:matrix(0.193693,0.005811,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193693,0.005811,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193693,0.005811,-0.007497,0.249888,0,0);}
.m10_c00244{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mdd_c00244{transform:matrix(0.194362,0.011880,-0.015252,0.249534,0,0);-ms-transform:matrix(0.194362,0.011880,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.194362,0.011880,-0.015252,0.249534,0,0);}
.m3d_c00244{transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.md6_c00244{transform:matrix(0.194891,0.011912,-0.015252,0.249534,0,0);-ms-transform:matrix(0.194891,0.011912,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.194891,0.011912,-0.015252,0.249534,0,0);}
.mbb_c00244{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.mc8_c00244{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.mab_c00244{transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196310,0.000000,0.000000,0.250000,0,0);}
.mc0_c00244{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m83_c00244{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);}
.mf1_c00244{transform:matrix(0.197081,0.005912,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197081,0.005912,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197081,0.005912,-0.007497,0.249888,0,0);}
.mb2_c00244{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);}
.m4d_c00244{transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m62_c00244{transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);}
.m58_c00244{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m85_c00244{transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);}
.m2d_c00244{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m55_c00244{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m71_c00244{transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);}
.mad_c00244{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.mdb_c00244{transform:matrix(0.201903,0.012341,-0.015252,0.249534,0,0);-ms-transform:matrix(0.201903,0.012341,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.201903,0.012341,-0.015252,0.249534,0,0);}
.m3b_c00244{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.md7_c00244{transform:matrix(0.202607,0.012384,-0.015252,0.249534,0,0);-ms-transform:matrix(0.202607,0.012384,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.202607,0.012384,-0.015252,0.249534,0,0);}
.m27_c00244{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.md9_c00244{transform:matrix(0.202966,0.012406,-0.015252,0.249534,0,0);-ms-transform:matrix(0.202966,0.012406,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.202966,0.012406,-0.015252,0.249534,0,0);}
.m5c_c00244{transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.mb5_c00244{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.mbe_c00244{transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);}
.mbf_c00244{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00244{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);}
.m48_c00244{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m74_c00244{transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);}
.m54_c00244{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.me0_c00244{transform:matrix(0.204744,0.013130,-0.015999,0.249488,0,0);-ms-transform:matrix(0.204744,0.013130,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.204744,0.013130,-0.015999,0.249488,0,0);}
.m7a_c00244{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.ma8_c00244{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m50_c00244{transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);}
.m7b_c00244{transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);}
.md8_c00244{transform:matrix(0.207722,0.012696,-0.015252,0.249534,0,0);-ms-transform:matrix(0.207722,0.012696,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.207722,0.012696,-0.015252,0.249534,0,0);}
.mba_c00244{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m33_c00244{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);}
.m35_c00244{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m63_c00244{transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209780,0.000000,0.000000,0.250000,0,0);}
.m99_c00244{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.me2_c00244{transform:matrix(0.210533,0.013501,-0.015999,0.249488,0,0);-ms-transform:matrix(0.210533,0.013501,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.210533,0.013501,-0.015999,0.249488,0,0);}
.m14_c00244{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.mca_c00244{transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);}
.mb4_c00244{transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00244{transform:matrix(0.211760,0.013580,-0.015999,0.249488,0,0);-ms-transform:matrix(0.211760,0.013580,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.211760,0.013580,-0.015999,0.249488,0,0);}
.m6c_c00244{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.m59_c00244{transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);}
.mdc_c00244{transform:matrix(0.214954,0.013138,-0.015252,0.249534,0,0);-ms-transform:matrix(0.214954,0.013138,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.214954,0.013138,-0.015252,0.249534,0,0);}
.m8e_c00244{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00244{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);}
.m52_c00244{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m4b_c00244{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m3e_c00244{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00244{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.ma0_c00244{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m77_c00244{transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);}
.m78_c00244{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.mb7_c00244{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m22_c00244{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m86_c00244{transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00244{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m30_c00244{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.m40_c00244{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00244{transform:matrix(0.225688,0.006771,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225688,0.006771,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225688,0.006771,-0.007497,0.249888,0,0);}
.m66_c00244{transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);}
.m6b_c00244{transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);}
.m9b_c00244{transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);}
.m95_c00244{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.me9_c00244{transform:matrix(0.226888,0.006807,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226888,0.006807,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226888,0.006807,-0.007497,0.249888,0,0);}
.me4_c00244{transform:matrix(0.227807,0.014609,-0.015999,0.249488,0,0);-ms-transform:matrix(0.227807,0.014609,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.227807,0.014609,-0.015999,0.249488,0,0);}
.m45_c00244{transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);}
.mb9_c00244{transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);}
.m96_c00244{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.m28_c00244{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.mf3_c00244{transform:matrix(0.231451,0.006944,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231451,0.006944,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231451,0.006944,-0.007497,0.249888,0,0);}
.m70_c00244{transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00244{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.mcd_c00244{transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);}
.me6_c00244{transform:matrix(0.239682,0.007190,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239682,0.007190,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239682,0.007190,-0.007497,0.249888,0,0);}
.m7d_c00244{transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00244{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m7c_c00244{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.mea_c00244{transform:matrix(0.243525,0.007306,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243525,0.007306,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243525,0.007306,-0.007497,0.249888,0,0);}
.mef_c00244{transform:matrix(0.245420,0.007363,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245420,0.007363,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245420,0.007363,-0.007497,0.249888,0,0);}
.m15_c00244{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.mf0_c00244{transform:matrix(0.246509,0.007395,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246509,0.007395,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246509,0.007395,-0.007497,0.249888,0,0);}
.mce_c00244{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.mee_c00244{transform:matrix(0.248558,0.007457,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248558,0.007457,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248558,0.007457,-0.007497,0.249888,0,0);}
.md0_c00244{transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);}
.m9c_c00244{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.me8_c00244{transform:matrix(0.251957,0.007559,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251957,0.007559,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251957,0.007559,-0.007497,0.249888,0,0);}
.m38_c00244{transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257615,0.000000,0.000000,0.250000,0,0);}
.md1_c00244{transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);}
.mf2_c00244{transform:matrix(0.261138,0.007834,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261138,0.007834,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261138,0.007834,-0.007497,0.249888,0,0);}
.mcf_c00244{transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);}
.mec_c00244{transform:matrix(0.264601,0.007938,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264601,0.007938,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264601,0.007938,-0.007497,0.249888,0,0);}
.md2_c00244{transform:matrix(0.268630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268630,0.000000,0.000000,0.250000,0,0);}
.m65_c00244{transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);}
.m61_c00244{transform:matrix(0.275295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275295,0.000000,0.000000,0.250000,0,0);}
.md3_c00244{transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);}
.m60_c00244{transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);}
.mcb_c00244{transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);}
.m57_c00244{transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);}
.m31_c00244{transform:matrix(0.336190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336190,0.000000,0.000000,0.250000,0,0);}
.me1_c00244{transform:matrix(0.399430,0.025615,-0.015999,0.249488,0,0);-ms-transform:matrix(0.399430,0.025615,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.399430,0.025615,-0.015999,0.249488,0,0);}
.m67_c00244{transform:matrix(0.424600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424600,0.000000,0.000000,0.250000,0,0);}
.mcc_c00244{transform:matrix(0.684620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684620,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:0.000000px;}
.fc0_c00244{color:transparent;}
.fse_c00244{font-size:47.250000px;}
.fs15_c00244{font-size:52.523620px;}
.fs13_c00244{font-size:53.552677px;}
.fs14_c00244{font-size:55.675037px;}
.fs9_c00244{font-size:57.750000px;}
.fs10_c00244{font-size:58.791914px;}
.fs5_c00244{font-size:58.800000px;}
.fs2_c00244{font-size:59.850000px;}
.fsd_c00244{font-size:60.900000px;}
.fs12_c00244{font-size:60.903045px;}
.fs7_c00244{font-size:61.950000px;}
.fs11_c00244{font-size:61.953097px;}
.fsf_c00244{font-size:62.991337px;}
.fs8_c00244{font-size:63.000000px;}
.fs3_c00244{font-size:64.050000px;}
.fs1_c00244{font-size:65.100000px;}
.fsa_c00244{font-size:67.200000px;}
.fs6_c00244{font-size:68.250000px;}
.fsb_c00244{font-size:69.300000px;}
.fs4_c00244{font-size:70.350000px;}
.fsc_c00244{font-size:75.600000px;}
.fs0_c00244{font-size:78.750000px;}
.y0_c00244{bottom:0.000000px;}
.yf7_c00244{bottom:2.537370px;}
.yf6_c00244{bottom:16.859100px;}
.yf5_c00244{bottom:17.693355px;}
.yf4_c00244{bottom:19.302360px;}
.yf3_c00244{bottom:20.017605px;}
.yf2_c00244{bottom:23.758290px;}
.ye6_c00244{bottom:29.651964px;}
.ye5_c00244{bottom:30.810717px;}
.yf1_c00244{bottom:34.759740px;}
.yf0_c00244{bottom:37.393005px;}
.yef_c00244{bottom:37.907535px;}
.yee_c00244{bottom:40.335870px;}
.yed_c00244{bottom:40.770390px;}
.ye4_c00244{bottom:43.464132px;}
.ye3_c00244{bottom:43.468266px;}
.yec_c00244{bottom:53.126310px;}
.yeb_c00244{bottom:53.709735px;}
.yea_c00244{bottom:55.013250px;}
.ye9_c00244{bottom:55.709310px;}
.ye8_c00244{bottom:57.663210px;}
.ye7_c00244{bottom:58.057500px;}
.ye2_c00244{bottom:59.325516px;}
.ye1_c00244{bottom:64.230060px;}
.ye0_c00244{bottom:64.783500px;}
.yde_c00244{bottom:81.974949px;}
.ydf_c00244{bottom:83.500807px;}
.ydd_c00244{bottom:84.763228px;}
.ydc_c00244{bottom:85.730109px;}
.ydb_c00244{bottom:87.452596px;}
.yda_c00244{bottom:91.268787px;}
.yd9_c00244{bottom:93.855766px;}
.yd8_c00244{bottom:97.036581px;}
.yd7_c00244{bottom:97.700596px;}
.yd6_c00244{bottom:99.945000px;}
.yd5_c00244{bottom:108.771000px;}
.yd4_c00244{bottom:109.263000px;}
.yd3_c00244{bottom:111.130500px;}
.yd2_c00244{bottom:111.825000px;}
.yd1_c00244{bottom:114.099000px;}
.yd0_c00244{bottom:115.755000px;}
.ycf_c00244{bottom:116.973000px;}
.yce_c00244{bottom:118.086000px;}
.ycd_c00244{bottom:118.818000px;}
.ycc_c00244{bottom:124.140000px;}
.ycb_c00244{bottom:127.582500px;}
.yca_c00244{bottom:128.836500px;}
.yc9_c00244{bottom:131.541000px;}
.yc8_c00244{bottom:132.580500px;}
.yc7_c00244{bottom:133.459500px;}
.yc6_c00244{bottom:134.749500px;}
.yc5_c00244{bottom:139.072500px;}
.yc4_c00244{bottom:139.498500px;}
.yc3_c00244{bottom:140.686500px;}
.yc2_c00244{bottom:141.411000px;}
.yc1_c00244{bottom:141.993000px;}
.yc0_c00244{bottom:142.443000px;}
.ybf_c00244{bottom:143.224500px;}
.ybe_c00244{bottom:143.463000px;}
.ybd_c00244{bottom:144.459000px;}
.ybc_c00244{bottom:156.745500px;}
.ybb_c00244{bottom:159.097500px;}
.yba_c00244{bottom:160.200000px;}
.yb9_c00244{bottom:160.788000px;}
.yb8_c00244{bottom:162.570000px;}
.yb7_c00244{bottom:164.131500px;}
.yb6_c00244{bottom:165.439500px;}
.yb5_c00244{bottom:168.498000px;}
.yb4_c00244{bottom:172.218000px;}
.yb3_c00244{bottom:174.942000px;}
.yb2_c00244{bottom:177.907500px;}
.yb1_c00244{bottom:178.708500px;}
.yb0_c00244{bottom:179.646000px;}
.yaf_c00244{bottom:182.286000px;}
.yae_c00244{bottom:183.079500px;}
.yad_c00244{bottom:190.591500px;}
.yac_c00244{bottom:191.263500px;}
.yab_c00244{bottom:193.872000px;}
.yaa_c00244{bottom:194.320500px;}
.ya9_c00244{bottom:195.411000px;}
.ya8_c00244{bottom:196.348500px;}
.ya7_c00244{bottom:197.658000px;}
.ya6_c00244{bottom:206.799000px;}
.ya5_c00244{bottom:207.585000px;}
.ya4_c00244{bottom:209.686500px;}
.ya3_c00244{bottom:210.636000px;}
.ya2_c00244{bottom:212.238000px;}
.ya1_c00244{bottom:212.808000px;}
.ya0_c00244{bottom:213.255000px;}
.y9f_c00244{bottom:214.666500px;}
.y9e_c00244{bottom:223.260000px;}
.y9d_c00244{bottom:226.245000px;}
.y9c_c00244{bottom:227.284500px;}
.y9b_c00244{bottom:228.903000px;}
.y9a_c00244{bottom:230.160000px;}
.y99_c00244{bottom:230.947500px;}
.y98_c00244{bottom:232.420500px;}
.y97_c00244{bottom:234.378000px;}
.y96_c00244{bottom:242.938500px;}
.y95_c00244{bottom:245.610000px;}
.y94_c00244{bottom:246.634500px;}
.y93_c00244{bottom:247.444500px;}
.y92_c00244{bottom:249.307500px;}
.y91_c00244{bottom:251.118000px;}
.y90_c00244{bottom:260.400000px;}
.y8f_c00244{bottom:261.274500px;}
.y8e_c00244{bottom:262.404000px;}
.y8d_c00244{bottom:263.089500px;}
.y8c_c00244{bottom:264.345000px;}
.y8b_c00244{bottom:265.312500px;}
.y8a_c00244{bottom:268.057500px;}
.y89_c00244{bottom:269.212500px;}
.y88_c00244{bottom:270.562500px;}
.y87_c00244{bottom:277.653000px;}
.y86_c00244{bottom:278.268000px;}
.y85_c00244{bottom:280.083000px;}
.y84_c00244{bottom:280.702500px;}
.y83_c00244{bottom:283.686000px;}
.y82_c00244{bottom:284.593500px;}
.y81_c00244{bottom:285.405000px;}
.y80_c00244{bottom:294.148500px;}
.y7f_c00244{bottom:296.205000px;}
.y7e_c00244{bottom:296.664000px;}
.y7d_c00244{bottom:298.441500px;}
.y7c_c00244{bottom:299.235000px;}
.y7b_c00244{bottom:300.349500px;}
.y7a_c00244{bottom:301.939500px;}
.y79_c00244{bottom:302.953500px;}
.y78_c00244{bottom:313.539000px;}
.y77_c00244{bottom:314.851500px;}
.y76_c00244{bottom:315.286500px;}
.y75_c00244{bottom:316.258500px;}
.y74_c00244{bottom:317.083500px;}
.y73_c00244{bottom:317.691000px;}
.y72_c00244{bottom:318.297000px;}
.y71_c00244{bottom:319.360500px;}
.y70_c00244{bottom:319.684500px;}
.y6f_c00244{bottom:331.033500px;}
.y6e_c00244{bottom:331.336500px;}
.y6d_c00244{bottom:331.968000px;}
.y6c_c00244{bottom:333.501000px;}
.y6b_c00244{bottom:333.684000px;}
.y6a_c00244{bottom:334.641000px;}
.y69_c00244{bottom:335.190000px;}
.y68_c00244{bottom:335.613000px;}
.y67_c00244{bottom:347.097000px;}
.y66_c00244{bottom:348.061500px;}
.y65_c00244{bottom:348.339000px;}
.y64_c00244{bottom:349.375500px;}
.y63_c00244{bottom:349.990500px;}
.y62_c00244{bottom:350.320500px;}
.y61_c00244{bottom:351.499500px;}
.y60_c00244{bottom:351.844500px;}
.y5f_c00244{bottom:352.086000px;}
.y5e_c00244{bottom:363.846000px;}
.y5d_c00244{bottom:365.151000px;}
.y5c_c00244{bottom:365.530500px;}
.y5b_c00244{bottom:366.201000px;}
.y5a_c00244{bottom:367.230000px;}
.y59_c00244{bottom:367.606500px;}
.y58_c00244{bottom:368.284500px;}
.y57_c00244{bottom:380.134500px;}
.y56_c00244{bottom:380.529000px;}
.y55_c00244{bottom:381.537000px;}
.y54_c00244{bottom:381.879000px;}
.y53_c00244{bottom:383.451000px;}
.y52_c00244{bottom:384.364500px;}
.y51_c00244{bottom:384.591000px;}
.y50_c00244{bottom:385.027500px;}
.y4f_c00244{bottom:396.664500px;}
.y4e_c00244{bottom:398.485500px;}
.y4d_c00244{bottom:400.254000px;}
.y4c_c00244{bottom:402.211500px;}
.y4b_c00244{bottom:402.756000px;}
.y4a_c00244{bottom:404.202000px;}
.y49_c00244{bottom:414.001500px;}
.y48_c00244{bottom:414.397500px;}
.y47_c00244{bottom:414.916500px;}
.y46_c00244{bottom:416.031000px;}
.y45_c00244{bottom:416.437500px;}
.y44_c00244{bottom:417.694500px;}
.y43_c00244{bottom:430.401000px;}
.y42_c00244{bottom:431.283000px;}
.y41_c00244{bottom:432.513000px;}
.y40_c00244{bottom:433.327500px;}
.y3f_c00244{bottom:433.924500px;}
.y3e_c00244{bottom:434.895000px;}
.y3d_c00244{bottom:435.949500px;}
.y3c_c00244{bottom:436.642500px;}
.y3b_c00244{bottom:436.866000px;}
.y3a_c00244{bottom:449.116500px;}
.y39_c00244{bottom:449.508000px;}
.y38_c00244{bottom:450.198000px;}
.y37_c00244{bottom:450.552000px;}
.y36_c00244{bottom:450.973500px;}
.y35_c00244{bottom:452.326500px;}
.y34_c00244{bottom:452.860500px;}
.y33_c00244{bottom:453.276000px;}
.y32_c00244{bottom:454.686000px;}
.y31_c00244{bottom:464.974500px;}
.y30_c00244{bottom:466.401000px;}
.y2f_c00244{bottom:466.879500px;}
.y2e_c00244{bottom:467.485500px;}
.y2d_c00244{bottom:468.028500px;}
.y2c_c00244{bottom:469.176000px;}
.y2b_c00244{bottom:470.440500px;}
.y2a_c00244{bottom:471.699000px;}
.y29_c00244{bottom:483.357000px;}
.y28_c00244{bottom:484.330500px;}
.y27_c00244{bottom:484.656000px;}
.y26_c00244{bottom:485.880000px;}
.y25_c00244{bottom:486.685500px;}
.y24_c00244{bottom:486.996000px;}
.y23_c00244{bottom:487.338000px;}
.y22_c00244{bottom:487.540500px;}
.y21_c00244{bottom:488.164500px;}
.y20_c00244{bottom:499.710000px;}
.y1f_c00244{bottom:501.076500px;}
.y1e_c00244{bottom:501.523500px;}
.y1d_c00244{bottom:502.464000px;}
.y1c_c00244{bottom:503.539500px;}
.y1b_c00244{bottom:504.252000px;}
.y1a_c00244{bottom:505.710000px;}
.y19_c00244{bottom:506.529000px;}
.y18_c00244{bottom:517.854000px;}
.y17_c00244{bottom:518.260500px;}
.y16_c00244{bottom:518.533500px;}
.y15_c00244{bottom:519.102000px;}
.y14_c00244{bottom:519.322500px;}
.y13_c00244{bottom:519.999000px;}
.y12_c00244{bottom:520.201500px;}
.y11_c00244{bottom:520.834500px;}
.y10_c00244{bottom:535.144500px;}
.yf_c00244{bottom:536.022000px;}
.ye_c00244{bottom:536.239500px;}
.yd_c00244{bottom:537.004500px;}
.yc_c00244{bottom:537.334500px;}
.yb_c00244{bottom:538.015500px;}
.ya_c00244{bottom:538.654500px;}
.y9_c00244{bottom:551.719500px;}
.y8_c00244{bottom:552.424500px;}
.y7_c00244{bottom:552.915000px;}
.y6_c00244{bottom:554.844000px;}
.y5_c00244{bottom:555.988500px;}
.y4_c00244{bottom:556.476000px;}
.y3_c00244{bottom:557.344500px;}
.y2_c00244{bottom:557.824500px;}
.y1_c00244{bottom:567.504000px;}
.h10_c00244{height:47.250000px;}
.h17_c00244{height:52.523620px;}
.h15_c00244{height:53.552677px;}
.h16_c00244{height:55.675037px;}
.hb_c00244{height:57.750000px;}
.h12_c00244{height:58.791914px;}
.h7_c00244{height:58.800000px;}
.h4_c00244{height:59.850000px;}
.hf_c00244{height:60.900000px;}
.h14_c00244{height:60.903045px;}
.h9_c00244{height:61.950000px;}
.h13_c00244{height:61.953097px;}
.h11_c00244{height:62.991337px;}
.ha_c00244{height:63.000000px;}
.h5_c00244{height:64.050000px;}
.h3_c00244{height:65.100000px;}
.hc_c00244{height:67.200000px;}
.h8_c00244{height:68.250000px;}
.hd_c00244{height:69.300000px;}
.h6_c00244{height:70.350000px;}
.he_c00244{height:75.600000px;}
.h2_c00244{height:78.750000px;}
.h1_c00244{height:618.750000px;}
.h0_c00244{height:619.050000px;}
.w0_c00244{width:359.100000px;}
.w1_c00244{width:359.250000px;}
.x0_c00244{left:0.000000px;}
.x5f_c00244{left:20.310000px;}
.x5b_c00244{left:21.960000px;}
.x3_c00244{left:23.572500px;}
.x10_c00244{left:24.658500px;}
.x31_c00244{left:28.654500px;}
.x1c_c00244{left:29.737500px;}
.x38_c00244{left:32.437500px;}
.x68_c00244{left:34.939500px;}
.x47_c00244{left:36.729000px;}
.xb_c00244{left:39.262500px;}
.x52_c00244{left:40.579500px;}
.x7a_c00244{left:41.890500px;}
.x6c_c00244{left:43.386000px;}
.x4e_c00244{left:44.935500px;}
.x4_c00244{left:46.450500px;}
.x7d_c00244{left:47.768205px;}
.x5c_c00244{left:49.033500px;}
.x78_c00244{left:52.113000px;}
.x7f_c00244{left:53.292027px;}
.x48_c00244{left:54.849000px;}
.x3f_c00244{left:57.505500px;}
.x17_c00244{left:58.638000px;}
.x7e_c00244{left:62.368476px;}
.x1d_c00244{left:64.426500px;}
.x42_c00244{left:66.501000px;}
.x32_c00244{left:70.339500px;}
.x4f_c00244{left:72.394500px;}
.x1e_c00244{left:75.675000px;}
.x63_c00244{left:77.373000px;}
.x23_c00244{left:78.970500px;}
.x69_c00244{left:80.464500px;}
.x11_c00244{left:82.218000px;}
.x29_c00244{left:85.090500px;}
.x5_c00244{left:87.793500px;}
.x43_c00244{left:89.994000px;}
.x73_c00244{left:91.293000px;}
.x1f_c00244{left:94.656000px;}
.x79_c00244{left:95.712000px;}
.x6b_c00244{left:98.422500px;}
.x12_c00244{left:100.578000px;}
.x2a_c00244{left:103.171500px;}
.x53_c00244{left:104.832000px;}
.x6_c00244{left:111.003000px;}
.x65_c00244{left:114.201000px;}
.x49_c00244{left:116.905500px;}
.x33_c00244{left:118.293000px;}
.x18_c00244{left:119.359500px;}
.x82_c00244{left:120.587055px;}
.x7b_c00244{left:122.375853px;}
.x70_c00244{left:124.111500px;}
.x2b_c00244{left:126.379500px;}
.x54_c00244{left:128.215500px;}
.x50_c00244{left:129.385500px;}
.x74_c00244{left:130.395000px;}
.x64_c00244{left:132.147000px;}
.x24_c00244{left:133.935000px;}
.x6d_c00244{left:135.109500px;}
.x39_c00244{left:136.422000px;}
.xc_c00244{left:140.811000px;}
.x80_c00244{left:142.509000px;}
.x59_c00244{left:147.576000px;}
.x19_c00244{left:149.049000px;}
.x60_c00244{left:151.537500px;}
.x75_c00244{left:152.914500px;}
.x44_c00244{left:154.290000px;}
.x6e_c00244{left:155.650500px;}
.x20_c00244{left:156.658500px;}
.x55_c00244{left:159.918000px;}
.x1_c00244{left:162.810000px;}
.x7_c00244{left:165.535500px;}
.x4a_c00244{left:166.665000px;}
.x66_c00244{left:168.001500px;}
.x5a_c00244{left:174.021000px;}
.x61_c00244{left:175.734000px;}
.x5d_c00244{left:178.735500px;}
.x13_c00244{left:182.107500px;}
.x25_c00244{left:183.852000px;}
.x2c_c00244{left:185.208000px;}
.x34_c00244{left:189.538500px;}
.x1a_c00244{left:193.836000px;}
.x45_c00244{left:196.189500px;}
.x56_c00244{left:197.317500px;}
.x40_c00244{left:198.841500px;}
.x71_c00244{left:201.867000px;}
.x2d_c00244{left:203.565000px;}
.x3a_c00244{left:206.073000px;}
.x26_c00244{left:207.460500px;}
.x67_c00244{left:210.576000px;}
.x57_c00244{left:214.060500px;}
.x72_c00244{left:215.527500px;}
.x2e_c00244{left:218.950500px;}
.x4b_c00244{left:221.190000px;}
.xd_c00244{left:225.025500px;}
.x35_c00244{left:226.534500px;}
.x3d_c00244{left:228.640500px;}
.x6f_c00244{left:231.706500px;}
.x14_c00244{left:233.733000px;}
.x4c_c00244{left:235.780500px;}
.x3b_c00244{left:238.555500px;}
.xe_c00244{left:241.773000px;}
.x21_c00244{left:242.794500px;}
.x83_c00244{left:244.395825px;}
.x2f_c00244{left:248.938500px;}
.x1b_c00244{left:251.634000px;}
.x51_c00244{left:252.763500px;}
.x27_c00244{left:254.599500px;}
.x8_c00244{left:257.419500px;}
.x15_c00244{left:258.564000px;}
.x5e_c00244{left:259.891500px;}
.x3c_c00244{left:263.325000px;}
.x58_c00244{left:264.537000px;}
.x30_c00244{left:265.945500px;}
.x41_c00244{left:268.953000px;}
.x7c_c00244{left:271.135737px;}
.x62_c00244{left:274.363500px;}
.x76_c00244{left:277.611000px;}
.x9_c00244{left:280.797000px;}
.x36_c00244{left:282.433500px;}
.x4d_c00244{left:286.516500px;}
.x6a_c00244{left:288.769500px;}
.x3e_c00244{left:293.697000px;}
.x16_c00244{left:295.570500px;}
.x22_c00244{left:296.869500px;}
.x77_c00244{left:298.921500px;}
.x46_c00244{left:301.480500px;}
.x2_c00244{left:306.990000px;}
.xf_c00244{left:309.258000px;}
.x84_c00244{left:312.225585px;}
.xa_c00244{left:314.382000px;}
.x28_c00244{left:316.591500px;}
.x81_c00244{left:318.629880px;}
.x37_c00244{left:322.492500px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.fse_c00244{font-size:42.000000pt;}
.fs15_c00244{font-size:46.687662pt;}
.fs13_c00244{font-size:47.602380pt;}
.fs14_c00244{font-size:49.488922pt;}
.fs9_c00244{font-size:51.333333pt;}
.fs10_c00244{font-size:52.259480pt;}
.fs5_c00244{font-size:52.266667pt;}
.fs2_c00244{font-size:53.200000pt;}
.fsd_c00244{font-size:54.133333pt;}
.fs12_c00244{font-size:54.136040pt;}
.fs7_c00244{font-size:55.066667pt;}
.fs11_c00244{font-size:55.069420pt;}
.fsf_c00244{font-size:55.992299pt;}
.fs8_c00244{font-size:56.000000pt;}
.fs3_c00244{font-size:56.933333pt;}
.fs1_c00244{font-size:57.866667pt;}
.fsa_c00244{font-size:59.733333pt;}
.fs6_c00244{font-size:60.666667pt;}
.fsb_c00244{font-size:61.600000pt;}
.fs4_c00244{font-size:62.533333pt;}
.fsc_c00244{font-size:67.200000pt;}
.fs0_c00244{font-size:70.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.yf7_c00244{bottom:2.255440pt;}
.yf6_c00244{bottom:14.985867pt;}
.yf5_c00244{bottom:15.727427pt;}
.yf4_c00244{bottom:17.157653pt;}
.yf3_c00244{bottom:17.793427pt;}
.yf2_c00244{bottom:21.118480pt;}
.ye6_c00244{bottom:26.357301pt;}
.ye5_c00244{bottom:27.387304pt;}
.yf1_c00244{bottom:30.897547pt;}
.yf0_c00244{bottom:33.238227pt;}
.yef_c00244{bottom:33.695587pt;}
.yee_c00244{bottom:35.854107pt;}
.yed_c00244{bottom:36.240347pt;}
.ye4_c00244{bottom:38.634784pt;}
.ye3_c00244{bottom:38.638459pt;}
.yec_c00244{bottom:47.223387pt;}
.yeb_c00244{bottom:47.741987pt;}
.yea_c00244{bottom:48.900667pt;}
.ye9_c00244{bottom:49.519387pt;}
.ye8_c00244{bottom:51.256187pt;}
.ye7_c00244{bottom:51.606667pt;}
.ye2_c00244{bottom:52.733792pt;}
.ye1_c00244{bottom:57.093387pt;}
.ye0_c00244{bottom:57.585333pt;}
.yde_c00244{bottom:72.866621pt;}
.ydf_c00244{bottom:74.222940pt;}
.ydd_c00244{bottom:75.345092pt;}
.ydc_c00244{bottom:76.204541pt;}
.ydb_c00244{bottom:77.735641pt;}
.yda_c00244{bottom:81.127811pt;}
.yd9_c00244{bottom:83.427348pt;}
.yd8_c00244{bottom:86.254739pt;}
.yd7_c00244{bottom:86.844975pt;}
.yd6_c00244{bottom:88.840000pt;}
.yd5_c00244{bottom:96.685333pt;}
.yd4_c00244{bottom:97.122667pt;}
.yd3_c00244{bottom:98.782667pt;}
.yd2_c00244{bottom:99.400000pt;}
.yd1_c00244{bottom:101.421333pt;}
.yd0_c00244{bottom:102.893333pt;}
.ycf_c00244{bottom:103.976000pt;}
.yce_c00244{bottom:104.965333pt;}
.ycd_c00244{bottom:105.616000pt;}
.ycc_c00244{bottom:110.346667pt;}
.ycb_c00244{bottom:113.406667pt;}
.yca_c00244{bottom:114.521333pt;}
.yc9_c00244{bottom:116.925333pt;}
.yc8_c00244{bottom:117.849333pt;}
.yc7_c00244{bottom:118.630667pt;}
.yc6_c00244{bottom:119.777333pt;}
.yc5_c00244{bottom:123.620000pt;}
.yc4_c00244{bottom:123.998667pt;}
.yc3_c00244{bottom:125.054667pt;}
.yc2_c00244{bottom:125.698667pt;}
.yc1_c00244{bottom:126.216000pt;}
.yc0_c00244{bottom:126.616000pt;}
.ybf_c00244{bottom:127.310667pt;}
.ybe_c00244{bottom:127.522667pt;}
.ybd_c00244{bottom:128.408000pt;}
.ybc_c00244{bottom:139.329333pt;}
.ybb_c00244{bottom:141.420000pt;}
.yba_c00244{bottom:142.400000pt;}
.yb9_c00244{bottom:142.922667pt;}
.yb8_c00244{bottom:144.506667pt;}
.yb7_c00244{bottom:145.894667pt;}
.yb6_c00244{bottom:147.057333pt;}
.yb5_c00244{bottom:149.776000pt;}
.yb4_c00244{bottom:153.082667pt;}
.yb3_c00244{bottom:155.504000pt;}
.yb2_c00244{bottom:158.140000pt;}
.yb1_c00244{bottom:158.852000pt;}
.yb0_c00244{bottom:159.685333pt;}
.yaf_c00244{bottom:162.032000pt;}
.yae_c00244{bottom:162.737333pt;}
.yad_c00244{bottom:169.414667pt;}
.yac_c00244{bottom:170.012000pt;}
.yab_c00244{bottom:172.330667pt;}
.yaa_c00244{bottom:172.729333pt;}
.ya9_c00244{bottom:173.698667pt;}
.ya8_c00244{bottom:174.532000pt;}
.ya7_c00244{bottom:175.696000pt;}
.ya6_c00244{bottom:183.821333pt;}
.ya5_c00244{bottom:184.520000pt;}
.ya4_c00244{bottom:186.388000pt;}
.ya3_c00244{bottom:187.232000pt;}
.ya2_c00244{bottom:188.656000pt;}
.ya1_c00244{bottom:189.162667pt;}
.ya0_c00244{bottom:189.560000pt;}
.y9f_c00244{bottom:190.814667pt;}
.y9e_c00244{bottom:198.453333pt;}
.y9d_c00244{bottom:201.106667pt;}
.y9c_c00244{bottom:202.030667pt;}
.y9b_c00244{bottom:203.469333pt;}
.y9a_c00244{bottom:204.586667pt;}
.y99_c00244{bottom:205.286667pt;}
.y98_c00244{bottom:206.596000pt;}
.y97_c00244{bottom:208.336000pt;}
.y96_c00244{bottom:215.945333pt;}
.y95_c00244{bottom:218.320000pt;}
.y94_c00244{bottom:219.230667pt;}
.y93_c00244{bottom:219.950667pt;}
.y92_c00244{bottom:221.606667pt;}
.y91_c00244{bottom:223.216000pt;}
.y90_c00244{bottom:231.466667pt;}
.y8f_c00244{bottom:232.244000pt;}
.y8e_c00244{bottom:233.248000pt;}
.y8d_c00244{bottom:233.857333pt;}
.y8c_c00244{bottom:234.973333pt;}
.y8b_c00244{bottom:235.833333pt;}
.y8a_c00244{bottom:238.273333pt;}
.y89_c00244{bottom:239.300000pt;}
.y88_c00244{bottom:240.500000pt;}
.y87_c00244{bottom:246.802667pt;}
.y86_c00244{bottom:247.349333pt;}
.y85_c00244{bottom:248.962667pt;}
.y84_c00244{bottom:249.513333pt;}
.y83_c00244{bottom:252.165333pt;}
.y82_c00244{bottom:252.972000pt;}
.y81_c00244{bottom:253.693333pt;}
.y80_c00244{bottom:261.465333pt;}
.y7f_c00244{bottom:263.293333pt;}
.y7e_c00244{bottom:263.701333pt;}
.y7d_c00244{bottom:265.281333pt;}
.y7c_c00244{bottom:265.986667pt;}
.y7b_c00244{bottom:266.977333pt;}
.y7a_c00244{bottom:268.390667pt;}
.y79_c00244{bottom:269.292000pt;}
.y78_c00244{bottom:278.701333pt;}
.y77_c00244{bottom:279.868000pt;}
.y76_c00244{bottom:280.254667pt;}
.y75_c00244{bottom:281.118667pt;}
.y74_c00244{bottom:281.852000pt;}
.y73_c00244{bottom:282.392000pt;}
.y72_c00244{bottom:282.930667pt;}
.y71_c00244{bottom:283.876000pt;}
.y70_c00244{bottom:284.164000pt;}
.y6f_c00244{bottom:294.252000pt;}
.y6e_c00244{bottom:294.521333pt;}
.y6d_c00244{bottom:295.082667pt;}
.y6c_c00244{bottom:296.445333pt;}
.y6b_c00244{bottom:296.608000pt;}
.y6a_c00244{bottom:297.458667pt;}
.y69_c00244{bottom:297.946667pt;}
.y68_c00244{bottom:298.322667pt;}
.y67_c00244{bottom:308.530667pt;}
.y66_c00244{bottom:309.388000pt;}
.y65_c00244{bottom:309.634667pt;}
.y64_c00244{bottom:310.556000pt;}
.y63_c00244{bottom:311.102667pt;}
.y62_c00244{bottom:311.396000pt;}
.y61_c00244{bottom:312.444000pt;}
.y60_c00244{bottom:312.750667pt;}
.y5f_c00244{bottom:312.965333pt;}
.y5e_c00244{bottom:323.418667pt;}
.y5d_c00244{bottom:324.578667pt;}
.y5c_c00244{bottom:324.916000pt;}
.y5b_c00244{bottom:325.512000pt;}
.y5a_c00244{bottom:326.426667pt;}
.y59_c00244{bottom:326.761333pt;}
.y58_c00244{bottom:327.364000pt;}
.y57_c00244{bottom:337.897333pt;}
.y56_c00244{bottom:338.248000pt;}
.y55_c00244{bottom:339.144000pt;}
.y54_c00244{bottom:339.448000pt;}
.y53_c00244{bottom:340.845333pt;}
.y52_c00244{bottom:341.657333pt;}
.y51_c00244{bottom:341.858667pt;}
.y50_c00244{bottom:342.246667pt;}
.y4f_c00244{bottom:352.590667pt;}
.y4e_c00244{bottom:354.209333pt;}
.y4d_c00244{bottom:355.781333pt;}
.y4c_c00244{bottom:357.521333pt;}
.y4b_c00244{bottom:358.005333pt;}
.y4a_c00244{bottom:359.290667pt;}
.y49_c00244{bottom:368.001333pt;}
.y48_c00244{bottom:368.353333pt;}
.y47_c00244{bottom:368.814667pt;}
.y46_c00244{bottom:369.805333pt;}
.y45_c00244{bottom:370.166667pt;}
.y44_c00244{bottom:371.284000pt;}
.y43_c00244{bottom:382.578667pt;}
.y42_c00244{bottom:383.362667pt;}
.y41_c00244{bottom:384.456000pt;}
.y40_c00244{bottom:385.180000pt;}
.y3f_c00244{bottom:385.710667pt;}
.y3e_c00244{bottom:386.573333pt;}
.y3d_c00244{bottom:387.510667pt;}
.y3c_c00244{bottom:388.126667pt;}
.y3b_c00244{bottom:388.325333pt;}
.y3a_c00244{bottom:399.214667pt;}
.y39_c00244{bottom:399.562667pt;}
.y38_c00244{bottom:400.176000pt;}
.y37_c00244{bottom:400.490667pt;}
.y36_c00244{bottom:400.865333pt;}
.y35_c00244{bottom:402.068000pt;}
.y34_c00244{bottom:402.542667pt;}
.y33_c00244{bottom:402.912000pt;}
.y32_c00244{bottom:404.165333pt;}
.y31_c00244{bottom:413.310667pt;}
.y30_c00244{bottom:414.578667pt;}
.y2f_c00244{bottom:415.004000pt;}
.y2e_c00244{bottom:415.542667pt;}
.y2d_c00244{bottom:416.025333pt;}
.y2c_c00244{bottom:417.045333pt;}
.y2b_c00244{bottom:418.169333pt;}
.y2a_c00244{bottom:419.288000pt;}
.y29_c00244{bottom:429.650667pt;}
.y28_c00244{bottom:430.516000pt;}
.y27_c00244{bottom:430.805333pt;}
.y26_c00244{bottom:431.893333pt;}
.y25_c00244{bottom:432.609333pt;}
.y24_c00244{bottom:432.885333pt;}
.y23_c00244{bottom:433.189333pt;}
.y22_c00244{bottom:433.369333pt;}
.y21_c00244{bottom:433.924000pt;}
.y20_c00244{bottom:444.186667pt;}
.y1f_c00244{bottom:445.401333pt;}
.y1e_c00244{bottom:445.798667pt;}
.y1d_c00244{bottom:446.634667pt;}
.y1c_c00244{bottom:447.590667pt;}
.y1b_c00244{bottom:448.224000pt;}
.y1a_c00244{bottom:449.520000pt;}
.y19_c00244{bottom:450.248000pt;}
.y18_c00244{bottom:460.314667pt;}
.y17_c00244{bottom:460.676000pt;}
.y16_c00244{bottom:460.918667pt;}
.y15_c00244{bottom:461.424000pt;}
.y14_c00244{bottom:461.620000pt;}
.y13_c00244{bottom:462.221333pt;}
.y12_c00244{bottom:462.401333pt;}
.y11_c00244{bottom:462.964000pt;}
.y10_c00244{bottom:475.684000pt;}
.yf_c00244{bottom:476.464000pt;}
.ye_c00244{bottom:476.657333pt;}
.yd_c00244{bottom:477.337333pt;}
.yc_c00244{bottom:477.630667pt;}
.yb_c00244{bottom:478.236000pt;}
.ya_c00244{bottom:478.804000pt;}
.y9_c00244{bottom:490.417333pt;}
.y8_c00244{bottom:491.044000pt;}
.y7_c00244{bottom:491.480000pt;}
.y6_c00244{bottom:493.194667pt;}
.y5_c00244{bottom:494.212000pt;}
.y4_c00244{bottom:494.645333pt;}
.y3_c00244{bottom:495.417333pt;}
.y2_c00244{bottom:495.844000pt;}
.y1_c00244{bottom:504.448000pt;}
.h10_c00244{height:42.000000pt;}
.h17_c00244{height:46.687662pt;}
.h15_c00244{height:47.602380pt;}
.h16_c00244{height:49.488922pt;}
.hb_c00244{height:51.333333pt;}
.h12_c00244{height:52.259480pt;}
.h7_c00244{height:52.266667pt;}
.h4_c00244{height:53.200000pt;}
.hf_c00244{height:54.133333pt;}
.h14_c00244{height:54.136040pt;}
.h9_c00244{height:55.066667pt;}
.h13_c00244{height:55.069420pt;}
.h11_c00244{height:55.992299pt;}
.ha_c00244{height:56.000000pt;}
.h5_c00244{height:56.933333pt;}
.h3_c00244{height:57.866667pt;}
.hc_c00244{height:59.733333pt;}
.h8_c00244{height:60.666667pt;}
.hd_c00244{height:61.600000pt;}
.h6_c00244{height:62.533333pt;}
.he_c00244{height:67.200000pt;}
.h2_c00244{height:70.000000pt;}
.h1_c00244{height:550.000000pt;}
.h0_c00244{height:550.266667pt;}
.w0_c00244{width:319.200000pt;}
.w1_c00244{width:319.333333pt;}
.x0_c00244{left:0.000000pt;}
.x5f_c00244{left:18.053333pt;}
.x5b_c00244{left:19.520000pt;}
.x3_c00244{left:20.953333pt;}
.x10_c00244{left:21.918667pt;}
.x31_c00244{left:25.470667pt;}
.x1c_c00244{left:26.433333pt;}
.x38_c00244{left:28.833333pt;}
.x68_c00244{left:31.057333pt;}
.x47_c00244{left:32.648000pt;}
.xb_c00244{left:34.900000pt;}
.x52_c00244{left:36.070667pt;}
.x7a_c00244{left:37.236000pt;}
.x6c_c00244{left:38.565333pt;}
.x4e_c00244{left:39.942667pt;}
.x4_c00244{left:41.289333pt;}
.x7d_c00244{left:42.460627pt;}
.x5c_c00244{left:43.585333pt;}
.x78_c00244{left:46.322667pt;}
.x7f_c00244{left:47.370691pt;}
.x48_c00244{left:48.754667pt;}
.x3f_c00244{left:51.116000pt;}
.x17_c00244{left:52.122667pt;}
.x7e_c00244{left:55.438645pt;}
.x1d_c00244{left:57.268000pt;}
.x42_c00244{left:59.112000pt;}
.x32_c00244{left:62.524000pt;}
.x4f_c00244{left:64.350667pt;}
.x1e_c00244{left:67.266667pt;}
.x63_c00244{left:68.776000pt;}
.x23_c00244{left:70.196000pt;}
.x69_c00244{left:71.524000pt;}
.x11_c00244{left:73.082667pt;}
.x29_c00244{left:75.636000pt;}
.x5_c00244{left:78.038667pt;}
.x43_c00244{left:79.994667pt;}
.x73_c00244{left:81.149333pt;}
.x1f_c00244{left:84.138667pt;}
.x79_c00244{left:85.077333pt;}
.x6b_c00244{left:87.486667pt;}
.x12_c00244{left:89.402667pt;}
.x2a_c00244{left:91.708000pt;}
.x53_c00244{left:93.184000pt;}
.x6_c00244{left:98.669333pt;}
.x65_c00244{left:101.512000pt;}
.x49_c00244{left:103.916000pt;}
.x33_c00244{left:105.149333pt;}
.x18_c00244{left:106.097333pt;}
.x82_c00244{left:107.188493pt;}
.x7b_c00244{left:108.778536pt;}
.x70_c00244{left:110.321333pt;}
.x2b_c00244{left:112.337333pt;}
.x54_c00244{left:113.969333pt;}
.x50_c00244{left:115.009333pt;}
.x74_c00244{left:115.906667pt;}
.x64_c00244{left:117.464000pt;}
.x24_c00244{left:119.053333pt;}
.x6d_c00244{left:120.097333pt;}
.x39_c00244{left:121.264000pt;}
.xc_c00244{left:125.165333pt;}
.x80_c00244{left:126.674667pt;}
.x59_c00244{left:131.178667pt;}
.x19_c00244{left:132.488000pt;}
.x60_c00244{left:134.700000pt;}
.x75_c00244{left:135.924000pt;}
.x44_c00244{left:137.146667pt;}
.x6e_c00244{left:138.356000pt;}
.x20_c00244{left:139.252000pt;}
.x55_c00244{left:142.149333pt;}
.x1_c00244{left:144.720000pt;}
.x7_c00244{left:147.142667pt;}
.x4a_c00244{left:148.146667pt;}
.x66_c00244{left:149.334667pt;}
.x5a_c00244{left:154.685333pt;}
.x61_c00244{left:156.208000pt;}
.x5d_c00244{left:158.876000pt;}
.x13_c00244{left:161.873333pt;}
.x25_c00244{left:163.424000pt;}
.x2c_c00244{left:164.629333pt;}
.x34_c00244{left:168.478667pt;}
.x1a_c00244{left:172.298667pt;}
.x45_c00244{left:174.390667pt;}
.x56_c00244{left:175.393333pt;}
.x40_c00244{left:176.748000pt;}
.x71_c00244{left:179.437333pt;}
.x2d_c00244{left:180.946667pt;}
.x3a_c00244{left:183.176000pt;}
.x26_c00244{left:184.409333pt;}
.x67_c00244{left:187.178667pt;}
.x57_c00244{left:190.276000pt;}
.x72_c00244{left:191.580000pt;}
.x2e_c00244{left:194.622667pt;}
.x4b_c00244{left:196.613333pt;}
.xd_c00244{left:200.022667pt;}
.x35_c00244{left:201.364000pt;}
.x3d_c00244{left:203.236000pt;}
.x6f_c00244{left:205.961333pt;}
.x14_c00244{left:207.762667pt;}
.x4c_c00244{left:209.582667pt;}
.x3b_c00244{left:212.049333pt;}
.xe_c00244{left:214.909333pt;}
.x21_c00244{left:215.817333pt;}
.x83_c00244{left:217.240733pt;}
.x2f_c00244{left:221.278667pt;}
.x1b_c00244{left:223.674667pt;}
.x51_c00244{left:224.678667pt;}
.x27_c00244{left:226.310667pt;}
.x8_c00244{left:228.817333pt;}
.x15_c00244{left:229.834667pt;}
.x5e_c00244{left:231.014667pt;}
.x3c_c00244{left:234.066667pt;}
.x58_c00244{left:235.144000pt;}
.x30_c00244{left:236.396000pt;}
.x41_c00244{left:239.069333pt;}
.x7c_c00244{left:241.009544pt;}
.x62_c00244{left:243.878667pt;}
.x76_c00244{left:246.765333pt;}
.x9_c00244{left:249.597333pt;}
.x36_c00244{left:251.052000pt;}
.x4d_c00244{left:254.681333pt;}
.x6a_c00244{left:256.684000pt;}
.x3e_c00244{left:261.064000pt;}
.x16_c00244{left:262.729333pt;}
.x22_c00244{left:263.884000pt;}
.x77_c00244{left:265.708000pt;}
.x46_c00244{left:267.982667pt;}
.x2_c00244{left:272.880000pt;}
.xf_c00244{left:274.896000pt;}
.x84_c00244{left:277.533853pt;}
.xa_c00244{left:279.450667pt;}
.x28_c00244{left:281.414667pt;}
.x81_c00244{left:283.226560pt;}
.x37_c00244{left:286.660000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00245 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00245 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00245 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00245 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00245.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);}
.mfc_c00245{transform:matrix(0.097405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097405,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.128110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128110,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.mba_c00245{transform:matrix(0.133160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133160,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);}
.me0_c00245{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m61_c00245{transform:matrix(0.142530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142530,0.000000,0.000000,0.250000,0,0);}
.mf9_c00245{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.mf4_c00245{transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00245{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m7e_c00245{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m45_c00245{transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151485,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152440,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.153090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00245{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.mda_c00245{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.m3b_c00245{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);}
.m75_c00245{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00245{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m57_c00245{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.mf3_c00245{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.162295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162295,0.000000,0.000000,0.250000,0,0);}
.mae_c00245{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m6f_c00245{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);}
.m37_c00245{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m39_c00245{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m4a_c00245{transform:matrix(0.165620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165620,0.000000,0.000000,0.250000,0,0);}
.mb6_c00245{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.mf7_c00245{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00245{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m6a_c00245{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.mc0_c00245{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m84_c00245{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.mdd_c00245{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.mf5_c00245{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.m98_c00245{transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);}
.m5c_c00245{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mc5_c00245{transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);}
.maf_c00245{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m5e_c00245{transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);}
.me7_c00245{transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);}
.m82_c00245{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m6b_c00245{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m65_c00245{transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);}
.m3a_c00245{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m43_c00245{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.mc1_c00245{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m33_c00245{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.ma6_c00245{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m59_c00245{transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);}
.mec_c00245{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.mdc_c00245{transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);}
.ma0_c00245{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.mad_c00245{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00245{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.maa_c00245{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.ma1_c00245{transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);}
.md6_c00245{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.mf8_c00245{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);}
.mb7_c00245{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);}
.m20_c00245{transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);}
.m78_c00245{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.mbc_c00245{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.m97_c00245{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.m46_c00245{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m77_c00245{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.me1_c00245{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.mbe_c00245{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00245{transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);}
.mea_c00245{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.mdf_c00245{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.m8a_c00245{transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);}
.m48_c00245{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m1f_c00245{transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);}
.m4b_c00245{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mfa_c00245{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.md2_c00245{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.ma3_c00245{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m2a_c00245{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.m18_c00245{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m7a_c00245{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.m47_c00245{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m96_c00245{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.md5_c00245{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00245{transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);}
.m24_c00245{transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);}
.mab_c00245{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00245{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mfb_c00245{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m92_c00245{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m69_c00245{transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);}
.m89_c00245{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.md3_c00245{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.mf0_c00245{transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00245{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m5a_c00245{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00245{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.mde_c00245{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.m42_c00245{transform:matrix(0.197405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197405,0.000000,0.000000,0.250000,0,0);}
.m79_c00245{transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197805,0.000000,0.000000,0.250000,0,0);}
.m49_c00245{transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197845,0.000000,0.000000,0.250000,0,0);}
.m9e_c00245{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);}
.mc6_c00245{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.m70_c00245{transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);}
.m2d_c00245{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m21_c00245{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00245{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m66_c00245{transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200085,0.000000,0.000000,0.250000,0,0);}
.ma8_c00245{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201460,0.000000,0.000000,0.250000,0,0);}
.m2c_c00245{transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);}
.mbf_c00245{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m63_c00245{transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);}
.md9_c00245{transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);}
.m6e_c00245{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m3d_c00245{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.m7c_c00245{transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);}
.m88_c00245{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m56_c00245{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m86_c00245{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.mca_c00245{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.md1_c00245{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m29_c00245{transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);}
.mac_c00245{transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00245{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.m25_c00245{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m7f_c00245{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m55_c00245{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.mc4_c00245{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.m67_c00245{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m71_c00245{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.mb1_c00245{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m5f_c00245{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m9c_c00245{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.m87_c00245{transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);}
.m9a_c00245{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m8e_c00245{transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);}
.m5b_c00245{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m31_c00245{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m85_c00245{transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);}
.me9_c00245{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.m2e_c00245{transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);}
.m72_c00245{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mf6_c00245{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.m8c_c00245{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m5d_c00245{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00245{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m3e_c00245{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.m76_c00245{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m6c_c00245{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.m41_c00245{transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);}
.m73_c00245{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.me2_c00245{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.mcb_c00245{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m3c_c00245{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.m8d_c00245{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00245{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.mbb_c00245{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.mb0_c00245{transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214915,0.000000,0.000000,0.250000,0,0);}
.md7_c00245{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m74_c00245{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00245{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.md8_c00245{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.mb9_c00245{transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.mee_c00245{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m81_c00245{transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);}
.ma5_c00245{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m90_c00245{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);}
.mbd_c00245{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.me8_c00245{transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);}
.m80_c00245{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.mcc_c00245{transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);}
.mce_c00245{transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);}
.m38_c00245{transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);}
.m4c_c00245{transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);}
.m44_c00245{transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);}
.m58_c00245{transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);}
.m68_c00245{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00245{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m4f_c00245{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.me3_c00245{transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);}
.mcd_c00245{transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m93_c00245{transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);}
.m83_c00245{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.ma4_c00245{transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);}
.m9b_c00245{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.m64_c00245{transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);}
.m99_c00245{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.mf2_c00245{transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);}
.mc8_c00245{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.md4_c00245{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.m50_c00245{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.mef_c00245{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.me4_c00245{transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);}
.md0_c00245{transform:matrix(0.233865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233865,0.000000,0.000000,0.250000,0,0);}
.m34_c00245{transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);}
.m62_c00245{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m95_c00245{transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);}
.m32_c00245{transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);}
.m94_c00245{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.meb_c00245{transform:matrix(0.238345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238345,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.med_c00245{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m8b_c00245{transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);}
.m35_c00245{transform:matrix(0.245105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245105,0.000000,0.000000,0.250000,0,0);}
.m91_c00245{transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);}
.mf1_c00245{transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);}
.me5_c00245{transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m51_c00245{transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);}
.m30_c00245{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.m8f_c00245{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.mc3_c00245{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.me6_c00245{transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);}
.m40_c00245{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.m54_c00245{transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);}
.mc9_c00245{transform:matrix(0.263145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263145,0.000000,0.000000,0.250000,0,0);}
.m52_c00245{transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264865,0.000000,0.000000,0.250000,0,0);}
.m53_c00245{transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);}
.m7d_c00245{transform:matrix(0.275645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275645,0.000000,0.000000,0.250000,0,0);}
.m60_c00245{transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);}
.m4e_c00245{transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);}
.m4d_c00245{transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);}
.m3f_c00245{transform:matrix(0.312925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312925,0.000000,0.000000,0.250000,0,0);}
.m36_c00245{transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);}
.mb2_c00245{transform:matrix(0.385275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385275,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:0.000000px;}
.fc0_c00245{color:transparent;}
.fs10_c00245{font-size:27.300000px;}
.fs9_c00245{font-size:47.250000px;}
.fsf_c00245{font-size:54.600000px;}
.fsd_c00245{font-size:57.750000px;}
.fsc_c00245{font-size:58.800000px;}
.fs7_c00245{font-size:59.850000px;}
.fs3_c00245{font-size:60.900000px;}
.fs6_c00245{font-size:61.950000px;}
.fs0_c00245{font-size:63.000000px;}
.fs5_c00245{font-size:64.050000px;}
.fs4_c00245{font-size:65.100000px;}
.fs8_c00245{font-size:66.150000px;}
.fsa_c00245{font-size:67.200000px;}
.fsb_c00245{font-size:68.250000px;}
.fse_c00245{font-size:69.300000px;}
.fs2_c00245{font-size:71.400000px;}
.fs1_c00245{font-size:72.450000px;}
.y0_c00245{bottom:0.000000px;}
.y38_c00245{bottom:25.978500px;}
.y37_c00245{bottom:43.024500px;}
.y36_c00245{bottom:60.222000px;}
.y2d_c00245{bottom:76.141500px;}
.y2e_c00245{bottom:76.693500px;}
.y2f_c00245{bottom:76.938000px;}
.y30_c00245{bottom:77.226000px;}
.y31_c00245{bottom:77.985000px;}
.y32_c00245{bottom:78.783000px;}
.y33_c00245{bottom:79.228500px;}
.y3a_c00245{bottom:79.380000px;}
.y34_c00245{bottom:79.626000px;}
.y35_c00245{bottom:79.872000px;}
.y39_c00245{bottom:85.320000px;}
.y25_c00245{bottom:92.880000px;}
.y26_c00245{bottom:93.345000px;}
.y27_c00245{bottom:93.595500px;}
.y28_c00245{bottom:93.864000px;}
.y29_c00245{bottom:94.285500px;}
.y2a_c00245{bottom:94.911000px;}
.y2b_c00245{bottom:95.116500px;}
.y2c_c00245{bottom:95.419500px;}
.y24_c00245{bottom:110.761500px;}
.y23_c00245{bottom:127.740000px;}
.y22_c00245{bottom:145.588500px;}
.y19_c00245{bottom:158.496000px;}
.y1a_c00245{bottom:159.514500px;}
.y1b_c00245{bottom:159.742500px;}
.y1c_c00245{bottom:160.978500px;}
.y1d_c00245{bottom:161.224500px;}
.y1e_c00245{bottom:161.670000px;}
.y1f_c00245{bottom:163.093500px;}
.y20_c00245{bottom:163.332000px;}
.y21_c00245{bottom:163.660500px;}
.y18_c00245{bottom:181.111500px;}
.y17_c00245{bottom:198.781500px;}
.y16_c00245{bottom:214.992000px;}
.y15_c00245{bottom:233.040000px;}
.y14_c00245{bottom:250.141500px;}
.y13_c00245{bottom:266.581500px;}
.y12_c00245{bottom:284.374500px;}
.y11_c00245{bottom:300.840000px;}
.y10_c00245{bottom:318.000000px;}
.yf_c00245{bottom:335.013000px;}
.ye_c00245{bottom:352.894500px;}
.yd_c00245{bottom:370.291500px;}
.yc_c00245{bottom:387.211500px;}
.yb_c00245{bottom:404.071500px;}
.ya_c00245{bottom:420.327000px;}
.y9_c00245{bottom:438.750000px;}
.y8_c00245{bottom:455.490000px;}
.y7_c00245{bottom:472.920000px;}
.y6_c00245{bottom:490.380000px;}
.y5_c00245{bottom:507.390000px;}
.y4_c00245{bottom:524.278500px;}
.y3_c00245{bottom:541.288500px;}
.y2_c00245{bottom:557.880000px;}
.y1_c00245{bottom:574.678500px;}
.h12_c00245{height:27.300000px;}
.hb_c00245{height:47.250000px;}
.h11_c00245{height:54.600000px;}
.hf_c00245{height:57.750000px;}
.he_c00245{height:58.800000px;}
.h9_c00245{height:59.850000px;}
.h5_c00245{height:60.900000px;}
.h8_c00245{height:61.950000px;}
.h2_c00245{height:63.000000px;}
.h7_c00245{height:64.050000px;}
.h6_c00245{height:65.100000px;}
.ha_c00245{height:66.150000px;}
.hc_c00245{height:67.200000px;}
.hd_c00245{height:68.250000px;}
.h10_c00245{height:69.300000px;}
.h4_c00245{height:71.400000px;}
.h3_c00245{height:72.450000px;}
.h1_c00245{height:618.750000px;}
.h0_c00245{height:619.050000px;}
.w0_c00245{width:359.100000px;}
.w1_c00245{width:359.250000px;}
.x0_c00245{left:0.000000px;}
.x82_c00245{left:34.020000px;}
.x7f_c00245{left:35.910000px;}
.x76_c00245{left:37.260000px;}
.x63_c00245{left:38.340000px;}
.x51_c00245{left:39.690000px;}
.x4b_c00245{left:40.770000px;}
.x3a_c00245{left:41.850000px;}
.x2d_c00245{left:42.930000px;}
.x21_c00245{left:44.010000px;}
.x9_c00245{left:45.090000px;}
.x3_c00245{left:46.170000px;}
.x58_c00245{left:53.190000px;}
.x1_c00245{left:55.080000px;}
.x73_c00245{left:57.780000px;}
.x13_c00245{left:63.180000px;}
.x22_c00245{left:64.800000px;}
.x80_c00245{left:67.230000px;}
.xa_c00245{left:69.930000px;}
.x2e_c00245{left:71.820000px;}
.x27_c00245{left:72.900000px;}
.x77_c00245{left:74.790000px;}
.x56_c00245{left:75.870000px;}
.x68_c00245{left:77.760000px;}
.x4_c00245{left:81.000000px;}
.x64_c00245{left:82.890000px;}
.x2f_c00245{left:84.510000px;}
.x5f_c00245{left:86.400000px;}
.x6c_c00245{left:89.100000px;}
.x36_c00245{left:90.720000px;}
.x78_c00245{left:93.150000px;}
.x14_c00245{left:95.040000px;}
.x5_c00245{left:96.390000px;}
.x4e_c00245{left:98.010000px;}
.x83_c00245{left:102.060000px;}
.x71_c00245{left:103.206000px;}
.x23_c00245{left:108.540000px;}
.x6d_c00245{left:109.620000px;}
.x3f_c00245{left:110.700000px;}
.x1a_c00245{left:113.400000px;}
.x48_c00245{left:116.370000px;}
.x5c_c00245{left:117.450000px;}
.x52_c00245{left:118.530000px;}
.x28_c00245{left:121.770000px;}
.x40_c00245{left:124.470000px;}
.x24_c00245{left:127.980000px;}
.x44_c00245{left:130.410000px;}
.x5d_c00245{left:132.030000px;}
.x60_c00245{left:133.380000px;}
.x29_c00245{left:135.810000px;}
.x59_c00245{left:137.970000px;}
.x37_c00245{left:139.860000px;}
.x41_c00245{left:140.940000px;}
.x45_c00245{left:143.370000px;}
.xb_c00245{left:146.610000px;}
.x85_c00245{left:150.390000px;}
.x4c_c00245{left:154.440000px;}
.x46_c00245{left:157.140000px;}
.x6_c00245{left:158.760000px;}
.x81_c00245{left:161.730000px;}
.x30_c00245{left:163.080000px;}
.x1b_c00245{left:164.970000px;}
.x15_c00245{left:166.050000px;}
.x6e_c00245{left:167.940000px;}
.x3b_c00245{left:170.910000px;}
.x49_c00245{left:174.960000px;}
.xc_c00245{left:176.310000px;}
.x69_c00245{left:177.390000px;}
.x61_c00245{left:179.280000px;}
.x6f_c00245{left:180.360000px;}
.x2_c00245{left:182.250000px;}
.x1c_c00245{left:183.600000px;}
.x3c_c00245{left:189.000000px;}
.x10_c00245{left:193.050000px;}
.x16_c00245{left:196.830000px;}
.x42_c00245{left:197.910000px;}
.x74_c00245{left:200.070000px;}
.x38_c00245{left:201.420000px;}
.x86_c00245{left:202.500000px;}
.x2a_c00245{left:204.120000px;}
.x31_c00245{left:205.740000px;}
.x79_c00245{left:207.900000px;}
.x7b_c00245{left:213.030000px;}
.x11_c00245{left:214.380000px;}
.x17_c00245{left:216.540000px;}
.xd_c00245{left:218.430000px;}
.x53_c00245{left:220.050000px;}
.x32_c00245{left:223.830000px;}
.x47_c00245{left:224.910000px;}
.x5a_c00245{left:225.990000px;}
.x25_c00245{left:227.340000px;}
.x57_c00245{left:230.040000px;}
.x6a_c00245{left:233.010000px;}
.x1d_c00245{left:236.250000px;}
.x54_c00245{left:238.140000px;}
.xe_c00245{left:239.220000px;}
.x62_c00245{left:244.620000px;}
.x6b_c00245{left:246.240000px;}
.x4d_c00245{left:247.320000px;}
.x26_c00245{left:250.020000px;}
.x3d_c00245{left:251.910000px;}
.x7_c00245{left:252.990000px;}
.x1e_c00245{left:256.770000px;}
.x7d_c00245{left:260.113500px;}
.x33_c00245{left:262.710000px;}
.x7c_c00245{left:265.950000px;}
.x65_c00245{left:268.920000px;}
.x2b_c00245{left:272.160000px;}
.x7a_c00245{left:273.780000px;}
.x75_c00245{left:275.940000px;}
.x8_c00245{left:279.450000px;}
.x34_c00245{left:283.230000px;}
.x4f_c00245{left:284.310000px;}
.x39_c00245{left:286.200000px;}
.x4a_c00245{left:287.550000px;}
.x2c_c00245{left:288.630000px;}
.x7e_c00245{left:290.377500px;}
.x72_c00245{left:292.096500px;}
.x5e_c00245{left:293.490000px;}
.x12_c00245{left:295.380000px;}
.x1f_c00245{left:297.540000px;}
.x3e_c00245{left:300.510000px;}
.x18_c00245{left:302.400000px;}
.x5b_c00245{left:303.480000px;}
.x66_c00245{left:308.610000px;}
.x20_c00245{left:310.500000px;}
.x50_c00245{left:311.850000px;}
.x84_c00245{left:313.470000px;}
.x35_c00245{left:314.550000px;}
.xf_c00245{left:315.630000px;}
.x55_c00245{left:317.250000px;}
.x43_c00245{left:319.950000px;}
.x67_c00245{left:321.300000px;}
.x70_c00245{left:322.650000px;}
.x19_c00245{left:328.860000px;}
.x87_c00245{left:349.110000px;}
.x88_c00245{left:350.190000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs10_c00245{font-size:24.266667pt;}
.fs9_c00245{font-size:42.000000pt;}
.fsf_c00245{font-size:48.533333pt;}
.fsd_c00245{font-size:51.333333pt;}
.fsc_c00245{font-size:52.266667pt;}
.fs7_c00245{font-size:53.200000pt;}
.fs3_c00245{font-size:54.133333pt;}
.fs6_c00245{font-size:55.066667pt;}
.fs0_c00245{font-size:56.000000pt;}
.fs5_c00245{font-size:56.933333pt;}
.fs4_c00245{font-size:57.866667pt;}
.fs8_c00245{font-size:58.800000pt;}
.fsa_c00245{font-size:59.733333pt;}
.fsb_c00245{font-size:60.666667pt;}
.fse_c00245{font-size:61.600000pt;}
.fs2_c00245{font-size:63.466667pt;}
.fs1_c00245{font-size:64.400000pt;}
.y0_c00245{bottom:0.000000pt;}
.y38_c00245{bottom:23.092000pt;}
.y37_c00245{bottom:38.244000pt;}
.y36_c00245{bottom:53.530667pt;}
.y2d_c00245{bottom:67.681333pt;}
.y2e_c00245{bottom:68.172000pt;}
.y2f_c00245{bottom:68.389333pt;}
.y30_c00245{bottom:68.645333pt;}
.y31_c00245{bottom:69.320000pt;}
.y32_c00245{bottom:70.029333pt;}
.y33_c00245{bottom:70.425333pt;}
.y3a_c00245{bottom:70.560000pt;}
.y34_c00245{bottom:70.778667pt;}
.y35_c00245{bottom:70.997333pt;}
.y39_c00245{bottom:75.840000pt;}
.y25_c00245{bottom:82.560000pt;}
.y26_c00245{bottom:82.973333pt;}
.y27_c00245{bottom:83.196000pt;}
.y28_c00245{bottom:83.434667pt;}
.y29_c00245{bottom:83.809333pt;}
.y2a_c00245{bottom:84.365333pt;}
.y2b_c00245{bottom:84.548000pt;}
.y2c_c00245{bottom:84.817333pt;}
.y24_c00245{bottom:98.454667pt;}
.y23_c00245{bottom:113.546667pt;}
.y22_c00245{bottom:129.412000pt;}
.y19_c00245{bottom:140.885333pt;}
.y1a_c00245{bottom:141.790667pt;}
.y1b_c00245{bottom:141.993333pt;}
.y1c_c00245{bottom:143.092000pt;}
.y1d_c00245{bottom:143.310667pt;}
.y1e_c00245{bottom:143.706667pt;}
.y1f_c00245{bottom:144.972000pt;}
.y20_c00245{bottom:145.184000pt;}
.y21_c00245{bottom:145.476000pt;}
.y18_c00245{bottom:160.988000pt;}
.y17_c00245{bottom:176.694667pt;}
.y16_c00245{bottom:191.104000pt;}
.y15_c00245{bottom:207.146667pt;}
.y14_c00245{bottom:222.348000pt;}
.y13_c00245{bottom:236.961333pt;}
.y12_c00245{bottom:252.777333pt;}
.y11_c00245{bottom:267.413333pt;}
.y10_c00245{bottom:282.666667pt;}
.yf_c00245{bottom:297.789333pt;}
.ye_c00245{bottom:313.684000pt;}
.yd_c00245{bottom:329.148000pt;}
.yc_c00245{bottom:344.188000pt;}
.yb_c00245{bottom:359.174667pt;}
.ya_c00245{bottom:373.624000pt;}
.y9_c00245{bottom:390.000000pt;}
.y8_c00245{bottom:404.880000pt;}
.y7_c00245{bottom:420.373333pt;}
.y6_c00245{bottom:435.893333pt;}
.y5_c00245{bottom:451.013333pt;}
.y4_c00245{bottom:466.025333pt;}
.y3_c00245{bottom:481.145333pt;}
.y2_c00245{bottom:495.893333pt;}
.y1_c00245{bottom:510.825333pt;}
.h12_c00245{height:24.266667pt;}
.hb_c00245{height:42.000000pt;}
.h11_c00245{height:48.533333pt;}
.hf_c00245{height:51.333333pt;}
.he_c00245{height:52.266667pt;}
.h9_c00245{height:53.200000pt;}
.h5_c00245{height:54.133333pt;}
.h8_c00245{height:55.066667pt;}
.h2_c00245{height:56.000000pt;}
.h7_c00245{height:56.933333pt;}
.h6_c00245{height:57.866667pt;}
.ha_c00245{height:58.800000pt;}
.hc_c00245{height:59.733333pt;}
.hd_c00245{height:60.666667pt;}
.h10_c00245{height:61.600000pt;}
.h4_c00245{height:63.466667pt;}
.h3_c00245{height:64.400000pt;}
.h1_c00245{height:550.000000pt;}
.h0_c00245{height:550.266667pt;}
.w0_c00245{width:319.200000pt;}
.w1_c00245{width:319.333333pt;}
.x0_c00245{left:0.000000pt;}
.x82_c00245{left:30.240000pt;}
.x7f_c00245{left:31.920000pt;}
.x76_c00245{left:33.120000pt;}
.x63_c00245{left:34.080000pt;}
.x51_c00245{left:35.280000pt;}
.x4b_c00245{left:36.240000pt;}
.x3a_c00245{left:37.200000pt;}
.x2d_c00245{left:38.160000pt;}
.x21_c00245{left:39.120000pt;}
.x9_c00245{left:40.080000pt;}
.x3_c00245{left:41.040000pt;}
.x58_c00245{left:47.280000pt;}
.x1_c00245{left:48.960000pt;}
.x73_c00245{left:51.360000pt;}
.x13_c00245{left:56.160000pt;}
.x22_c00245{left:57.600000pt;}
.x80_c00245{left:59.760000pt;}
.xa_c00245{left:62.160000pt;}
.x2e_c00245{left:63.840000pt;}
.x27_c00245{left:64.800000pt;}
.x77_c00245{left:66.480000pt;}
.x56_c00245{left:67.440000pt;}
.x68_c00245{left:69.120000pt;}
.x4_c00245{left:72.000000pt;}
.x64_c00245{left:73.680000pt;}
.x2f_c00245{left:75.120000pt;}
.x5f_c00245{left:76.800000pt;}
.x6c_c00245{left:79.200000pt;}
.x36_c00245{left:80.640000pt;}
.x78_c00245{left:82.800000pt;}
.x14_c00245{left:84.480000pt;}
.x5_c00245{left:85.680000pt;}
.x4e_c00245{left:87.120000pt;}
.x83_c00245{left:90.720000pt;}
.x71_c00245{left:91.738667pt;}
.x23_c00245{left:96.480000pt;}
.x6d_c00245{left:97.440000pt;}
.x3f_c00245{left:98.400000pt;}
.x1a_c00245{left:100.800000pt;}
.x48_c00245{left:103.440000pt;}
.x5c_c00245{left:104.400000pt;}
.x52_c00245{left:105.360000pt;}
.x28_c00245{left:108.240000pt;}
.x40_c00245{left:110.640000pt;}
.x24_c00245{left:113.760000pt;}
.x44_c00245{left:115.920000pt;}
.x5d_c00245{left:117.360000pt;}
.x60_c00245{left:118.560000pt;}
.x29_c00245{left:120.720000pt;}
.x59_c00245{left:122.640000pt;}
.x37_c00245{left:124.320000pt;}
.x41_c00245{left:125.280000pt;}
.x45_c00245{left:127.440000pt;}
.xb_c00245{left:130.320000pt;}
.x85_c00245{left:133.680000pt;}
.x4c_c00245{left:137.280000pt;}
.x46_c00245{left:139.680000pt;}
.x6_c00245{left:141.120000pt;}
.x81_c00245{left:143.760000pt;}
.x30_c00245{left:144.960000pt;}
.x1b_c00245{left:146.640000pt;}
.x15_c00245{left:147.600000pt;}
.x6e_c00245{left:149.280000pt;}
.x3b_c00245{left:151.920000pt;}
.x49_c00245{left:155.520000pt;}
.xc_c00245{left:156.720000pt;}
.x69_c00245{left:157.680000pt;}
.x61_c00245{left:159.360000pt;}
.x6f_c00245{left:160.320000pt;}
.x2_c00245{left:162.000000pt;}
.x1c_c00245{left:163.200000pt;}
.x3c_c00245{left:168.000000pt;}
.x10_c00245{left:171.600000pt;}
.x16_c00245{left:174.960000pt;}
.x42_c00245{left:175.920000pt;}
.x74_c00245{left:177.840000pt;}
.x38_c00245{left:179.040000pt;}
.x86_c00245{left:180.000000pt;}
.x2a_c00245{left:181.440000pt;}
.x31_c00245{left:182.880000pt;}
.x79_c00245{left:184.800000pt;}
.x7b_c00245{left:189.360000pt;}
.x11_c00245{left:190.560000pt;}
.x17_c00245{left:192.480000pt;}
.xd_c00245{left:194.160000pt;}
.x53_c00245{left:195.600000pt;}
.x32_c00245{left:198.960000pt;}
.x47_c00245{left:199.920000pt;}
.x5a_c00245{left:200.880000pt;}
.x25_c00245{left:202.080000pt;}
.x57_c00245{left:204.480000pt;}
.x6a_c00245{left:207.120000pt;}
.x1d_c00245{left:210.000000pt;}
.x54_c00245{left:211.680000pt;}
.xe_c00245{left:212.640000pt;}
.x62_c00245{left:217.440000pt;}
.x6b_c00245{left:218.880000pt;}
.x4d_c00245{left:219.840000pt;}
.x26_c00245{left:222.240000pt;}
.x3d_c00245{left:223.920000pt;}
.x7_c00245{left:224.880000pt;}
.x1e_c00245{left:228.240000pt;}
.x7d_c00245{left:231.212000pt;}
.x33_c00245{left:233.520000pt;}
.x7c_c00245{left:236.400000pt;}
.x65_c00245{left:239.040000pt;}
.x2b_c00245{left:241.920000pt;}
.x7a_c00245{left:243.360000pt;}
.x75_c00245{left:245.280000pt;}
.x8_c00245{left:248.400000pt;}
.x34_c00245{left:251.760000pt;}
.x4f_c00245{left:252.720000pt;}
.x39_c00245{left:254.400000pt;}
.x4a_c00245{left:255.600000pt;}
.x2c_c00245{left:256.560000pt;}
.x7e_c00245{left:258.113333pt;}
.x72_c00245{left:259.641333pt;}
.x5e_c00245{left:260.880000pt;}
.x12_c00245{left:262.560000pt;}
.x1f_c00245{left:264.480000pt;}
.x3e_c00245{left:267.120000pt;}
.x18_c00245{left:268.800000pt;}
.x5b_c00245{left:269.760000pt;}
.x66_c00245{left:274.320000pt;}
.x20_c00245{left:276.000000pt;}
.x50_c00245{left:277.200000pt;}
.x84_c00245{left:278.640000pt;}
.x35_c00245{left:279.600000pt;}
.xf_c00245{left:280.560000pt;}
.x55_c00245{left:282.000000pt;}
.x43_c00245{left:284.400000pt;}
.x67_c00245{left:285.600000pt;}
.x70_c00245{left:286.800000pt;}
.x19_c00245{left:292.320000pt;}
.x87_c00245{left:310.320000pt;}
.x88_c00245{left:311.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00246 {
    display:none;
  }
  .loading-indicator_c00246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00246 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00246 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00246" -> "#page-container .classname_c00246")
 */
.pf_c00246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00246 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00246 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00246 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00246 {overflow:visible;}
  }
}
.c_c00246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00246 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00246:after { /* webkit #35443 */
  content: '';
}
.t_c00246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00246 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00246 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00246 { /* info for Javascript */
  display:none;
}
.l_c00246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00246:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00246 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00246.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb4_c00246{transform:matrix(0.015712,0.000283,-0.004499,0.249960,0,0);-ms-transform:matrix(0.015712,0.000283,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.015712,0.000283,-0.004499,0.249960,0,0);}
.m8_c00246{transform:matrix(0.102328,0.001842,-0.004499,0.249960,0,0);-ms-transform:matrix(0.102328,0.001842,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.102328,0.001842,-0.004499,0.249960,0,0);}
.m17_c00246{transform:matrix(0.128764,0.002318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.128764,0.002318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.128764,0.002318,-0.004499,0.249960,0,0);}
.m9e_c00246{transform:matrix(0.134458,0.002420,-0.004499,0.249960,0,0);-ms-transform:matrix(0.134458,0.002420,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.134458,0.002420,-0.004499,0.249960,0,0);}
.m16_c00246{transform:matrix(0.135068,0.002431,-0.004499,0.249960,0,0);-ms-transform:matrix(0.135068,0.002431,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.135068,0.002431,-0.004499,0.249960,0,0);}
.mf2_c00246{transform:matrix(0.136343,0.002454,-0.004499,0.249960,0,0);-ms-transform:matrix(0.136343,0.002454,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.136343,0.002454,-0.004499,0.249960,0,0);}
.m99_c00246{transform:matrix(0.140427,0.002528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.140427,0.002528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.140427,0.002528,-0.004499,0.249960,0,0);}
.m18_c00246{transform:matrix(0.142662,0.002568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142662,0.002568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142662,0.002568,-0.004499,0.249960,0,0);}
.mf5_c00246{transform:matrix(0.143342,0.002580,-0.004499,0.249960,0,0);-ms-transform:matrix(0.143342,0.002580,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.143342,0.002580,-0.004499,0.249960,0,0);}
.m5f_c00246{transform:matrix(0.144012,0.002592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144012,0.002592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144012,0.002592,-0.004499,0.249960,0,0);}
.mf7_c00246{transform:matrix(0.149016,0.002682,-0.004499,0.249960,0,0);-ms-transform:matrix(0.149016,0.002682,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.149016,0.002682,-0.004499,0.249960,0,0);}
.m26_c00246{transform:matrix(0.150111,0.002702,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150111,0.002702,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150111,0.002702,-0.004499,0.249960,0,0);}
.me_c00246{transform:matrix(0.151131,0.002720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151131,0.002720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151131,0.002720,-0.004499,0.249960,0,0);}
.mcf_c00246{transform:matrix(0.151300,0.002723,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151300,0.002723,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151300,0.002723,-0.004499,0.249960,0,0);}
.m1b_c00246{transform:matrix(0.151430,0.002726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151430,0.002726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151430,0.002726,-0.004499,0.249960,0,0);}
.m87_c00246{transform:matrix(0.152255,0.002741,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152255,0.002741,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152255,0.002741,-0.004499,0.249960,0,0);}
.m76_c00246{transform:matrix(0.152650,0.002748,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152650,0.002748,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152650,0.002748,-0.004499,0.249960,0,0);}
.maa_c00246{transform:matrix(0.152930,0.002753,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152930,0.002753,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152930,0.002753,-0.004499,0.249960,0,0);}
.m4f_c00246{transform:matrix(0.153935,0.002771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153935,0.002771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153935,0.002771,-0.004499,0.249960,0,0);}
.mb_c00246{transform:matrix(0.154495,0.002781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154495,0.002781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154495,0.002781,-0.004499,0.249960,0,0);}
.m33_c00246{transform:matrix(0.157794,0.002840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157794,0.002840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157794,0.002840,-0.004499,0.249960,0,0);}
.m2b_c00246{transform:matrix(0.158544,0.002854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158544,0.002854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158544,0.002854,-0.004499,0.249960,0,0);}
.m2e_c00246{transform:matrix(0.158619,0.002855,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158619,0.002855,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158619,0.002855,-0.004499,0.249960,0,0);}
.m8d_c00246{transform:matrix(0.159774,0.002876,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159774,0.002876,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159774,0.002876,-0.004499,0.249960,0,0);}
.m90_c00246{transform:matrix(0.162534,0.002926,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162534,0.002926,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162534,0.002926,-0.004499,0.249960,0,0);}
.mb6_c00246{transform:matrix(0.163274,0.002939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163274,0.002939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163274,0.002939,-0.004499,0.249960,0,0);}
.m89_c00246{transform:matrix(0.163698,0.002947,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163698,0.002947,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163698,0.002947,-0.004499,0.249960,0,0);}
.mc1_c00246{transform:matrix(0.163843,0.002949,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163843,0.002949,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163843,0.002949,-0.004499,0.249960,0,0);}
.mb3_c00246{transform:matrix(0.163933,0.002951,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163933,0.002951,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163933,0.002951,-0.004499,0.249960,0,0);}
.mf0_c00246{transform:matrix(0.163963,0.002951,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163963,0.002951,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163963,0.002951,-0.004499,0.249960,0,0);}
.mf8_c00246{transform:matrix(0.164008,0.002952,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164008,0.002952,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164008,0.002952,-0.004499,0.249960,0,0);}
.m3a_c00246{transform:matrix(0.164438,0.002960,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164438,0.002960,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164438,0.002960,-0.004499,0.249960,0,0);}
.ma2_c00246{transform:matrix(0.164863,0.002968,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164863,0.002968,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164863,0.002968,-0.004499,0.249960,0,0);}
.m5a_c00246{transform:matrix(0.165208,0.002974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165208,0.002974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165208,0.002974,-0.004499,0.249960,0,0);}
.m19_c00246{transform:matrix(0.165778,0.002984,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165778,0.002984,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165778,0.002984,-0.004499,0.249960,0,0);}
.m36_c00246{transform:matrix(0.166293,0.002993,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166293,0.002993,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166293,0.002993,-0.004499,0.249960,0,0);}
.m0_c00246{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m8a_c00246{transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166313,0.002994,-0.004499,0.249960,0,0);}
.m1c_c00246{transform:matrix(0.166633,0.002999,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166633,0.002999,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166633,0.002999,-0.004499,0.249960,0,0);}
.ma_c00246{transform:matrix(0.166743,0.003001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166743,0.003001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166743,0.003001,-0.004499,0.249960,0,0);}
.m3e_c00246{transform:matrix(0.166938,0.003005,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166938,0.003005,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166938,0.003005,-0.004499,0.249960,0,0);}
.ma8_c00246{transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166983,0.003006,-0.004499,0.249960,0,0);}
.m15_c00246{transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);}
.ma3_c00246{transform:matrix(0.167898,0.003022,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167898,0.003022,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167898,0.003022,-0.004499,0.249960,0,0);}
.m7e_c00246{transform:matrix(0.168503,0.003033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168503,0.003033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168503,0.003033,-0.004499,0.249960,0,0);}
.m67_c00246{transform:matrix(0.168523,0.003033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168523,0.003033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168523,0.003033,-0.004499,0.249960,0,0);}
.m9b_c00246{transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);}
.m5_c00246{transform:matrix(0.169608,0.003053,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169608,0.003053,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169608,0.003053,-0.004499,0.249960,0,0);}
.mb5_c00246{transform:matrix(0.170637,0.003071,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170637,0.003071,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170637,0.003071,-0.004499,0.249960,0,0);}
.ma0_c00246{transform:matrix(0.170817,0.003075,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170817,0.003075,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170817,0.003075,-0.004499,0.249960,0,0);}
.m23_c00246{transform:matrix(0.173077,0.003115,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173077,0.003115,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173077,0.003115,-0.004499,0.249960,0,0);}
.ma6_c00246{transform:matrix(0.173282,0.003119,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173282,0.003119,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173282,0.003119,-0.004499,0.249960,0,0);}
.m5c_c00246{transform:matrix(0.173602,0.003125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173602,0.003125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173602,0.003125,-0.004499,0.249960,0,0);}
.m2_c00246{transform:matrix(0.173752,0.003128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173752,0.003128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173752,0.003128,-0.004499,0.249960,0,0);}
.mc2_c00246{transform:matrix(0.173892,0.003130,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173892,0.003130,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173892,0.003130,-0.004499,0.249960,0,0);}
.m4b_c00246{transform:matrix(0.173942,0.003131,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173942,0.003131,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173942,0.003131,-0.004499,0.249960,0,0);}
.mb8_c00246{transform:matrix(0.174817,0.003147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174817,0.003147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174817,0.003147,-0.004499,0.249960,0,0);}
.m24_c00246{transform:matrix(0.175047,0.003151,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175047,0.003151,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175047,0.003151,-0.004499,0.249960,0,0);}
.m31_c00246{transform:matrix(0.175562,0.003160,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175562,0.003160,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175562,0.003160,-0.004499,0.249960,0,0);}
.m7d_c00246{transform:matrix(0.175872,0.003166,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175872,0.003166,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175872,0.003166,-0.004499,0.249960,0,0);}
.m96_c00246{transform:matrix(0.176546,0.003178,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176546,0.003178,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176546,0.003178,-0.004499,0.249960,0,0);}
.m2f_c00246{transform:matrix(0.176616,0.003179,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176616,0.003179,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176616,0.003179,-0.004499,0.249960,0,0);}
.mab_c00246{transform:matrix(0.177081,0.003187,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177081,0.003187,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177081,0.003187,-0.004499,0.249960,0,0);}
.m4a_c00246{transform:matrix(0.177266,0.003191,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177266,0.003191,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177266,0.003191,-0.004499,0.249960,0,0);}
.m71_c00246{transform:matrix(0.177631,0.003197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177631,0.003197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177631,0.003197,-0.004499,0.249960,0,0);}
.m1_c00246{transform:matrix(0.177961,0.003203,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177961,0.003203,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177961,0.003203,-0.004499,0.249960,0,0);}
.m38_c00246{transform:matrix(0.178131,0.003206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178131,0.003206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178131,0.003206,-0.004499,0.249960,0,0);}
.m8e_c00246{transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);}
.m9a_c00246{transform:matrix(0.178686,0.003216,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178686,0.003216,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178686,0.003216,-0.004499,0.249960,0,0);}
.m40_c00246{transform:matrix(0.178996,0.003222,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178996,0.003222,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178996,0.003222,-0.004499,0.249960,0,0);}
.mf_c00246{transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179046,0.003223,-0.004499,0.249960,0,0);}
.m12_c00246{transform:matrix(0.179126,0.003224,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179126,0.003224,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179126,0.003224,-0.004499,0.249960,0,0);}
.m27_c00246{transform:matrix(0.179541,0.003232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179541,0.003232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179541,0.003232,-0.004499,0.249960,0,0);}
.m39_c00246{transform:matrix(0.179866,0.003238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179866,0.003238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179866,0.003238,-0.004499,0.249960,0,0);}
.m93_c00246{transform:matrix(0.179886,0.003238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179886,0.003238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179886,0.003238,-0.004499,0.249960,0,0);}
.m42_c00246{transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);}
.mf6_c00246{transform:matrix(0.180396,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180396,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180396,0.003247,-0.004499,0.249960,0,0);}
.mff_c00246{transform:matrix(0.180786,0.003254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180786,0.003254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180786,0.003254,-0.004499,0.249960,0,0);}
.mb9_c00246{transform:matrix(0.180931,0.003257,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180931,0.003257,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180931,0.003257,-0.004499,0.249960,0,0);}
.ma1_c00246{transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181041,0.003259,-0.004499,0.249960,0,0);}
.m1f_c00246{transform:matrix(0.181066,0.003259,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181066,0.003259,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181066,0.003259,-0.004499,0.249960,0,0);}
.mcc_c00246{transform:matrix(0.181526,0.003267,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181526,0.003267,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181526,0.003267,-0.004499,0.249960,0,0);}
.mee_c00246{transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);}
.mca_c00246{transform:matrix(0.182315,0.003282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182315,0.003282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182315,0.003282,-0.004499,0.249960,0,0);}
.m29_c00246{transform:matrix(0.182325,0.003282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182325,0.003282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182325,0.003282,-0.004499,0.249960,0,0);}
.m8b_c00246{transform:matrix(0.182375,0.003283,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182375,0.003283,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182375,0.003283,-0.004499,0.249960,0,0);}
.ma9_c00246{transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182925,0.003293,-0.004499,0.249960,0,0);}
.m7_c00246{transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);}
.m9_c00246{transform:matrix(0.183650,0.003306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183650,0.003306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183650,0.003306,-0.004499,0.249960,0,0);}
.m9c_c00246{transform:matrix(0.183700,0.003307,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183700,0.003307,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183700,0.003307,-0.004499,0.249960,0,0);}
.m34_c00246{transform:matrix(0.183845,0.003309,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183845,0.003309,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183845,0.003309,-0.004499,0.249960,0,0);}
.m95_c00246{transform:matrix(0.184680,0.003324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184680,0.003324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184680,0.003324,-0.004499,0.249960,0,0);}
.ma4_c00246{transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);}
.m6c_c00246{transform:matrix(0.184980,0.003330,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184980,0.003330,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184980,0.003330,-0.004499,0.249960,0,0);}
.m75_c00246{transform:matrix(0.185320,0.003336,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185320,0.003336,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185320,0.003336,-0.004499,0.249960,0,0);}
.m9d_c00246{transform:matrix(0.185725,0.003343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185725,0.003343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185725,0.003343,-0.004499,0.249960,0,0);}
.m30_c00246{transform:matrix(0.185870,0.003346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185870,0.003346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185870,0.003346,-0.004499,0.249960,0,0);}
.m1a_c00246{transform:matrix(0.185915,0.003346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185915,0.003346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185915,0.003346,-0.004499,0.249960,0,0);}
.mf9_c00246{transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);}
.m2c_c00246{transform:matrix(0.186245,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186245,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186245,0.003352,-0.004499,0.249960,0,0);}
.mb7_c00246{transform:matrix(0.186895,0.003364,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186895,0.003364,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186895,0.003364,-0.004499,0.249960,0,0);}
.mbf_c00246{transform:matrix(0.187130,0.003368,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187130,0.003368,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187130,0.003368,-0.004499,0.249960,0,0);}
.mc_c00246{transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);}
.me1_c00246{transform:matrix(0.187530,0.003376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187530,0.003376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187530,0.003376,-0.004499,0.249960,0,0);}
.m60_c00246{transform:matrix(0.187575,0.003376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187575,0.003376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187575,0.003376,-0.004499,0.249960,0,0);}
.mc9_c00246{transform:matrix(0.187940,0.003383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187940,0.003383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187940,0.003383,-0.004499,0.249960,0,0);}
.m3f_c00246{transform:matrix(0.188639,0.003396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188639,0.003396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188639,0.003396,-0.004499,0.249960,0,0);}
.m78_c00246{transform:matrix(0.188729,0.003397,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188729,0.003397,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188729,0.003397,-0.004499,0.249960,0,0);}
.m57_c00246{transform:matrix(0.188894,0.003400,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188894,0.003400,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188894,0.003400,-0.004499,0.249960,0,0);}
.m4d_c00246{transform:matrix(0.189254,0.003407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189254,0.003407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189254,0.003407,-0.004499,0.249960,0,0);}
.m46_c00246{transform:matrix(0.189259,0.003407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189259,0.003407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189259,0.003407,-0.004499,0.249960,0,0);}
.mc3_c00246{transform:matrix(0.189374,0.003409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189374,0.003409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189374,0.003409,-0.004499,0.249960,0,0);}
.mf4_c00246{transform:matrix(0.190044,0.003421,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190044,0.003421,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190044,0.003421,-0.004499,0.249960,0,0);}
.m22_c00246{transform:matrix(0.190164,0.003423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190164,0.003423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190164,0.003423,-0.004499,0.249960,0,0);}
.m3b_c00246{transform:matrix(0.190379,0.003427,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190379,0.003427,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190379,0.003427,-0.004499,0.249960,0,0);}
.m37_c00246{transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);}
.m85_c00246{transform:matrix(0.190719,0.003433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190719,0.003433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190719,0.003433,-0.004499,0.249960,0,0);}
.m55_c00246{transform:matrix(0.190979,0.003438,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190979,0.003438,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190979,0.003438,-0.004499,0.249960,0,0);}
.m13_c00246{transform:matrix(0.191429,0.003446,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191429,0.003446,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191429,0.003446,-0.004499,0.249960,0,0);}
.m59_c00246{transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);}
.m69_c00246{transform:matrix(0.191934,0.003455,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191934,0.003455,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191934,0.003455,-0.004499,0.249960,0,0);}
.m6_c00246{transform:matrix(0.192034,0.003457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192034,0.003457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192034,0.003457,-0.004499,0.249960,0,0);}
.me3_c00246{transform:matrix(0.193114,0.003476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193114,0.003476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193114,0.003476,-0.004499,0.249960,0,0);}
.m70_c00246{transform:matrix(0.193224,0.003478,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193224,0.003478,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193224,0.003478,-0.004499,0.249960,0,0);}
.m5d_c00246{transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193229,0.003478,-0.004499,0.249960,0,0);}
.m66_c00246{transform:matrix(0.193354,0.003480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193354,0.003480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193354,0.003480,-0.004499,0.249960,0,0);}
.maf_c00246{transform:matrix(0.193509,0.003483,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193509,0.003483,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193509,0.003483,-0.004499,0.249960,0,0);}
.m62_c00246{transform:matrix(0.193699,0.003487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193699,0.003487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193699,0.003487,-0.004499,0.249960,0,0);}
.m61_c00246{transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);}
.me5_c00246{transform:matrix(0.193834,0.003489,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193834,0.003489,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193834,0.003489,-0.004499,0.249960,0,0);}
.m3d_c00246{transform:matrix(0.194274,0.003497,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194274,0.003497,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194274,0.003497,-0.004499,0.249960,0,0);}
.m32_c00246{transform:matrix(0.194663,0.003504,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194663,0.003504,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194663,0.003504,-0.004499,0.249960,0,0);}
.mf3_c00246{transform:matrix(0.194753,0.003506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194753,0.003506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194753,0.003506,-0.004499,0.249960,0,0);}
.m3c_c00246{transform:matrix(0.194758,0.003506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194758,0.003506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194758,0.003506,-0.004499,0.249960,0,0);}
.me9_c00246{transform:matrix(0.194808,0.003507,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194808,0.003507,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194808,0.003507,-0.004499,0.249960,0,0);}
.m65_c00246{transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);}
.me4_c00246{transform:matrix(0.195258,0.003515,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195258,0.003515,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195258,0.003515,-0.004499,0.249960,0,0);}
.mbe_c00246{transform:matrix(0.195353,0.003516,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195353,0.003516,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195353,0.003516,-0.004499,0.249960,0,0);}
.mbd_c00246{transform:matrix(0.195458,0.003518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195458,0.003518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195458,0.003518,-0.004499,0.249960,0,0);}
.m20_c00246{transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);}
.m77_c00246{transform:matrix(0.195638,0.003521,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195638,0.003521,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195638,0.003521,-0.004499,0.249960,0,0);}
.m58_c00246{transform:matrix(0.195698,0.003523,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195698,0.003523,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195698,0.003523,-0.004499,0.249960,0,0);}
.m9f_c00246{transform:matrix(0.195703,0.003523,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195703,0.003523,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195703,0.003523,-0.004499,0.249960,0,0);}
.m64_c00246{transform:matrix(0.195813,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195813,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195813,0.003525,-0.004499,0.249960,0,0);}
.m52_c00246{transform:matrix(0.195833,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195833,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195833,0.003525,-0.004499,0.249960,0,0);}
.m10_c00246{transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);}
.m35_c00246{transform:matrix(0.195923,0.003527,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195923,0.003527,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195923,0.003527,-0.004499,0.249960,0,0);}
.m45_c00246{transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);}
.mae_c00246{transform:matrix(0.196583,0.003538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196583,0.003538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196583,0.003538,-0.004499,0.249960,0,0);}
.m41_c00246{transform:matrix(0.197043,0.003547,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197043,0.003547,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197043,0.003547,-0.004499,0.249960,0,0);}
.m8c_c00246{transform:matrix(0.197088,0.003548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197088,0.003548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197088,0.003548,-0.004499,0.249960,0,0);}
.m49_c00246{transform:matrix(0.197443,0.003554,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197443,0.003554,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197443,0.003554,-0.004499,0.249960,0,0);}
.mea_c00246{transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197528,0.003556,-0.004499,0.249960,0,0);}
.m94_c00246{transform:matrix(0.197683,0.003558,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197683,0.003558,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197683,0.003558,-0.004499,0.249960,0,0);}
.m56_c00246{transform:matrix(0.197968,0.003563,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197968,0.003563,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197968,0.003563,-0.004499,0.249960,0,0);}
.m1d_c00246{transform:matrix(0.198623,0.003575,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198623,0.003575,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198623,0.003575,-0.004499,0.249960,0,0);}
.md_c00246{transform:matrix(0.198818,0.003579,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198818,0.003579,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198818,0.003579,-0.004499,0.249960,0,0);}
.mc0_c00246{transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199043,0.003583,-0.004499,0.249960,0,0);}
.mcd_c00246{transform:matrix(0.199048,0.003583,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199048,0.003583,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199048,0.003583,-0.004499,0.249960,0,0);}
.m73_c00246{transform:matrix(0.199403,0.003589,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199403,0.003589,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199403,0.003589,-0.004499,0.249960,0,0);}
.m6b_c00246{transform:matrix(0.200108,0.003602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200108,0.003602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200108,0.003602,-0.004499,0.249960,0,0);}
.mc8_c00246{transform:matrix(0.200533,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200533,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200533,0.003610,-0.004499,0.249960,0,0);}
.m97_c00246{transform:matrix(0.200563,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200563,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200563,0.003610,-0.004499,0.249960,0,0);}
.m25_c00246{transform:matrix(0.200842,0.003615,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200842,0.003615,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200842,0.003615,-0.004499,0.249960,0,0);}
.m68_c00246{transform:matrix(0.201197,0.003622,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201197,0.003622,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201197,0.003622,-0.004499,0.249960,0,0);}
.m21_c00246{transform:matrix(0.201237,0.003622,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201237,0.003622,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201237,0.003622,-0.004499,0.249960,0,0);}
.md6_c00246{transform:matrix(0.201302,0.003623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201302,0.003623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201302,0.003623,-0.004499,0.249960,0,0);}
.m63_c00246{transform:matrix(0.201322,0.003624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201322,0.003624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201322,0.003624,-0.004499,0.249960,0,0);}
.m44_c00246{transform:matrix(0.201762,0.003632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201762,0.003632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201762,0.003632,-0.004499,0.249960,0,0);}
.mfa_c00246{transform:matrix(0.201912,0.003634,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201912,0.003634,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201912,0.003634,-0.004499,0.249960,0,0);}
.m43_c00246{transform:matrix(0.201927,0.003635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201927,0.003635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201927,0.003635,-0.004499,0.249960,0,0);}
.m2a_c00246{transform:matrix(0.202452,0.003644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202452,0.003644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202452,0.003644,-0.004499,0.249960,0,0);}
.mac_c00246{transform:matrix(0.203377,0.003661,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203377,0.003661,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203377,0.003661,-0.004499,0.249960,0,0);}
.mce_c00246{transform:matrix(0.203567,0.003664,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203567,0.003664,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203567,0.003664,-0.004499,0.249960,0,0);}
.m11_c00246{transform:matrix(0.204067,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204067,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204067,0.003673,-0.004499,0.249960,0,0);}
.mba_c00246{transform:matrix(0.204237,0.003676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204237,0.003676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204237,0.003676,-0.004499,0.249960,0,0);}
.mfd_c00246{transform:matrix(0.204267,0.003677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204267,0.003677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204267,0.003677,-0.004499,0.249960,0,0);}
.m1e_c00246{transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);}
.md2_c00246{transform:matrix(0.204432,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204432,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204432,0.003680,-0.004499,0.249960,0,0);}
.m6d_c00246{transform:matrix(0.204522,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204522,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204522,0.003681,-0.004499,0.249960,0,0);}
.m47_c00246{transform:matrix(0.205072,0.003691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205072,0.003691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205072,0.003691,-0.004499,0.249960,0,0);}
.me6_c00246{transform:matrix(0.205117,0.003692,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205117,0.003692,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205117,0.003692,-0.004499,0.249960,0,0);}
.m6f_c00246{transform:matrix(0.205782,0.003704,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205782,0.003704,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205782,0.003704,-0.004499,0.249960,0,0);}
.mfb_c00246{transform:matrix(0.206197,0.003712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206197,0.003712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206197,0.003712,-0.004499,0.249960,0,0);}
.md0_c00246{transform:matrix(0.206322,0.003714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206322,0.003714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206322,0.003714,-0.004499,0.249960,0,0);}
.m72_c00246{transform:matrix(0.206846,0.003723,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206846,0.003723,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206846,0.003723,-0.004499,0.249960,0,0);}
.m54_c00246{transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);}
.mcb_c00246{transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);}
.m82_c00246{transform:matrix(0.207701,0.003739,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207701,0.003739,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207701,0.003739,-0.004499,0.249960,0,0);}
.m91_c00246{transform:matrix(0.207991,0.003744,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207991,0.003744,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207991,0.003744,-0.004499,0.249960,0,0);}
.m79_c00246{transform:matrix(0.208376,0.003751,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208376,0.003751,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208376,0.003751,-0.004499,0.249960,0,0);}
.m86_c00246{transform:matrix(0.208681,0.003756,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208681,0.003756,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208681,0.003756,-0.004499,0.249960,0,0);}
.md3_c00246{transform:matrix(0.209096,0.003764,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209096,0.003764,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209096,0.003764,-0.004499,0.249960,0,0);}
.m81_c00246{transform:matrix(0.209341,0.003768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209341,0.003768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209341,0.003768,-0.004499,0.249960,0,0);}
.m14_c00246{transform:matrix(0.209546,0.003772,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209546,0.003772,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209546,0.003772,-0.004499,0.249960,0,0);}
.m53_c00246{transform:matrix(0.209621,0.003773,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209621,0.003773,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209621,0.003773,-0.004499,0.249960,0,0);}
.m6e_c00246{transform:matrix(0.209731,0.003775,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209731,0.003775,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209731,0.003775,-0.004499,0.249960,0,0);}
.mb1_c00246{transform:matrix(0.209911,0.003778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209911,0.003778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209911,0.003778,-0.004499,0.249960,0,0);}
.m7a_c00246{transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);}
.mb2_c00246{transform:matrix(0.210581,0.003790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210581,0.003790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210581,0.003790,-0.004499,0.249960,0,0);}
.m8f_c00246{transform:matrix(0.211146,0.003801,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211146,0.003801,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211146,0.003801,-0.004499,0.249960,0,0);}
.m7b_c00246{transform:matrix(0.211211,0.003802,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211211,0.003802,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211211,0.003802,-0.004499,0.249960,0,0);}
.m50_c00246{transform:matrix(0.211266,0.003803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211266,0.003803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211266,0.003803,-0.004499,0.249960,0,0);}
.m5b_c00246{transform:matrix(0.211336,0.003804,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211336,0.003804,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211336,0.003804,-0.004499,0.249960,0,0);}
.m28_c00246{transform:matrix(0.211831,0.003813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211831,0.003813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211831,0.003813,-0.004499,0.249960,0,0);}
.me2_c00246{transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);}
.m7c_c00246{transform:matrix(0.212806,0.003830,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212806,0.003830,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212806,0.003830,-0.004499,0.249960,0,0);}
.mbb_c00246{transform:matrix(0.212841,0.003831,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212841,0.003831,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212841,0.003831,-0.004499,0.249960,0,0);}
.md7_c00246{transform:matrix(0.213340,0.003840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213340,0.003840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213340,0.003840,-0.004499,0.249960,0,0);}
.m98_c00246{transform:matrix(0.213545,0.003844,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213545,0.003844,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213545,0.003844,-0.004499,0.249960,0,0);}
.mc4_c00246{transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213760,0.003848,-0.004499,0.249960,0,0);}
.m4c_c00246{transform:matrix(0.214015,0.003852,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214015,0.003852,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214015,0.003852,-0.004499,0.249960,0,0);}
.m80_c00246{transform:matrix(0.214085,0.003854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214085,0.003854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214085,0.003854,-0.004499,0.249960,0,0);}
.md5_c00246{transform:matrix(0.215210,0.003874,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215210,0.003874,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215210,0.003874,-0.004499,0.249960,0,0);}
.m83_c00246{transform:matrix(0.216165,0.003891,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216165,0.003891,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216165,0.003891,-0.004499,0.249960,0,0);}
.mef_c00246{transform:matrix(0.217120,0.003908,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217120,0.003908,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217120,0.003908,-0.004499,0.249960,0,0);}
.m51_c00246{transform:matrix(0.217125,0.003908,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217125,0.003908,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217125,0.003908,-0.004499,0.249960,0,0);}
.m84_c00246{transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);}
.me8_c00246{transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);}
.m2d_c00246{transform:matrix(0.217840,0.003921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217840,0.003921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217840,0.003921,-0.004499,0.249960,0,0);}
.m4_c00246{transform:matrix(0.218660,0.003936,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218660,0.003936,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218660,0.003936,-0.004499,0.249960,0,0);}
.meb_c00246{transform:matrix(0.219439,0.003950,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219439,0.003950,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219439,0.003950,-0.004499,0.249960,0,0);}
.mad_c00246{transform:matrix(0.219964,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219964,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219964,0.003959,-0.004499,0.249960,0,0);}
.mda_c00246{transform:matrix(0.222444,0.004004,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222444,0.004004,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222444,0.004004,-0.004499,0.249960,0,0);}
.mfc_c00246{transform:matrix(0.222489,0.004005,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222489,0.004005,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222489,0.004005,-0.004499,0.249960,0,0);}
.mfe_c00246{transform:matrix(0.223004,0.004014,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223004,0.004014,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223004,0.004014,-0.004499,0.249960,0,0);}
.ma7_c00246{transform:matrix(0.224149,0.004035,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224149,0.004035,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224149,0.004035,-0.004499,0.249960,0,0);}
.m92_c00246{transform:matrix(0.225388,0.004057,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225388,0.004057,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225388,0.004057,-0.004499,0.249960,0,0);}
.m5e_c00246{transform:matrix(0.225653,0.004062,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225653,0.004062,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225653,0.004062,-0.004499,0.249960,0,0);}
.mb0_c00246{transform:matrix(0.227163,0.004089,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227163,0.004089,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227163,0.004089,-0.004499,0.249960,0,0);}
.md4_c00246{transform:matrix(0.227458,0.004094,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227458,0.004094,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227458,0.004094,-0.004499,0.249960,0,0);}
.mdd_c00246{transform:matrix(0.229908,0.004138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229908,0.004138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229908,0.004138,-0.004499,0.249960,0,0);}
.mf1_c00246{transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);}
.md1_c00246{transform:matrix(0.230388,0.004147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230388,0.004147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230388,0.004147,-0.004499,0.249960,0,0);}
.md9_c00246{transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);}
.m48_c00246{transform:matrix(0.230523,0.004149,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230523,0.004149,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230523,0.004149,-0.004499,0.249960,0,0);}
.mdc_c00246{transform:matrix(0.230913,0.004156,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230913,0.004156,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230913,0.004156,-0.004499,0.249960,0,0);}
.m7f_c00246{transform:matrix(0.233597,0.004205,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233597,0.004205,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233597,0.004205,-0.004499,0.249960,0,0);}
.m74_c00246{transform:matrix(0.234192,0.004215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234192,0.004215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234192,0.004215,-0.004499,0.249960,0,0);}
.mdb_c00246{transform:matrix(0.236842,0.004263,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236842,0.004263,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236842,0.004263,-0.004499,0.249960,0,0);}
.m6a_c00246{transform:matrix(0.237302,0.004271,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237302,0.004271,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237302,0.004271,-0.004499,0.249960,0,0);}
.mc5_c00246{transform:matrix(0.243366,0.004381,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243366,0.004381,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243366,0.004381,-0.004499,0.249960,0,0);}
.mc7_c00246{transform:matrix(0.243651,0.004386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243651,0.004386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243651,0.004386,-0.004499,0.249960,0,0);}
.mdf_c00246{transform:matrix(0.245300,0.004415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245300,0.004415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245300,0.004415,-0.004499,0.249960,0,0);}
.m4e_c00246{transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);}
.m88_c00246{transform:matrix(0.247800,0.004460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247800,0.004460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247800,0.004460,-0.004499,0.249960,0,0);}
.med_c00246{transform:matrix(0.249185,0.004485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249185,0.004485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249185,0.004485,-0.004499,0.249960,0,0);}
.mc6_c00246{transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);}
.ma5_c00246{transform:matrix(0.260853,0.004695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260853,0.004695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260853,0.004695,-0.004499,0.249960,0,0);}
.mec_c00246{transform:matrix(0.271181,0.004881,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271181,0.004881,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271181,0.004881,-0.004499,0.249960,0,0);}
.me7_c00246{transform:matrix(0.303601,0.005465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.303601,0.005465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.303601,0.005465,-0.004499,0.249960,0,0);}
.md8_c00246{transform:matrix(0.332021,0.005976,-0.004499,0.249960,0,0);-ms-transform:matrix(0.332021,0.005976,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.332021,0.005976,-0.004499,0.249960,0,0);}
.me0_c00246{transform:matrix(0.352683,0.006348,-0.004499,0.249960,0,0);-ms-transform:matrix(0.352683,0.006348,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.352683,0.006348,-0.004499,0.249960,0,0);}
.m3_c00246{transform:matrix(0.381623,0.006869,-0.004499,0.249960,0,0);-ms-transform:matrix(0.381623,0.006869,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.381623,0.006869,-0.004499,0.249960,0,0);}
.mbc_c00246{transform:matrix(0.565783,0.010184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.565783,0.010184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.565783,0.010184,-0.004499,0.249960,0,0);}
.mde_c00246{transform:matrix(0.725722,0.013063,-0.004499,0.249960,0,0);-ms-transform:matrix(0.725722,0.013063,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.725722,0.013063,-0.004499,0.249960,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:0.000000px;}
.fc0_c00246{color:transparent;}
.fsd_c00246{font-size:57.759355px;}
.fse_c00246{font-size:58.809525px;}
.fs8_c00246{font-size:59.859695px;}
.fsb_c00246{font-size:60.909865px;}
.fsa_c00246{font-size:61.960035px;}
.fsf_c00246{font-size:63.010205px;}
.fs7_c00246{font-size:64.060375px;}
.fs9_c00246{font-size:65.110545px;}
.fs6_c00246{font-size:66.160715px;}
.fs0_c00246{font-size:67.200000px;}
.fs1_c00246{font-size:67.210886px;}
.fsc_c00246{font-size:68.261056px;}
.fs3_c00246{font-size:69.311226px;}
.fs2_c00246{font-size:70.361396px;}
.fs5_c00246{font-size:73.511906px;}
.fs4_c00246{font-size:75.612246px;}
.y0_c00246{bottom:0.000000px;}
.y101_c00246{bottom:21.478188px;}
.y100_c00246{bottom:24.164814px;}
.yff_c00246{bottom:25.325031px;}
.yfe_c00246{bottom:27.978777px;}
.yfd_c00246{bottom:29.099670px;}
.yfc_c00246{bottom:31.864173px;}
.yfb_c00246{bottom:32.736318px;}
.yfa_c00246{bottom:34.485282px;}
.yf9_c00246{bottom:39.483750px;}
.yf8_c00246{bottom:40.350240px;}
.yf7_c00246{bottom:40.639371px;}
.yf6_c00246{bottom:41.894511px;}
.yf5_c00246{bottom:43.510326px;}
.yf4_c00246{bottom:43.876833px;}
.yf3_c00246{bottom:44.179317px;}
.yf2_c00246{bottom:45.000969px;}
.yf1_c00246{bottom:59.280552px;}
.yf0_c00246{bottom:59.832345px;}
.yef_c00246{bottom:61.275759px;}
.yee_c00246{bottom:62.021298px;}
.yed_c00246{bottom:63.724395px;}
.yec_c00246{bottom:64.305699px;}
.yeb_c00246{bottom:65.209854px;}
.yea_c00246{bottom:66.602445px;}
.ye9_c00246{bottom:67.945239px;}
.ye8_c00246{bottom:73.332936px;}
.ye7_c00246{bottom:75.358641px;}
.ye6_c00246{bottom:76.641468px;}
.ye5_c00246{bottom:78.623664px;}
.ye4_c00246{bottom:79.836237px;}
.ye3_c00246{bottom:81.245700px;}
.ye2_c00246{bottom:81.630417px;}
.ye1_c00246{bottom:83.147457px;}
.ye0_c00246{bottom:85.516140px;}
.ydf_c00246{bottom:92.333022px;}
.yde_c00246{bottom:94.613367px;}
.ydd_c00246{bottom:96.729132px;}
.ydc_c00246{bottom:99.792774px;}
.ydb_c00246{bottom:101.509590px;}
.yda_c00246{bottom:102.797553px;}
.yd9_c00246{bottom:110.347818px;}
.yd8_c00246{bottom:111.133689px;}
.yd7_c00246{bottom:113.431746px;}
.yd6_c00246{bottom:113.987961px;}
.yd5_c00246{bottom:114.522375px;}
.yd4_c00246{bottom:117.146343px;}
.yd3_c00246{bottom:118.221438px;}
.yd2_c00246{bottom:119.575356px;}
.yd1_c00246{bottom:120.040854px;}
.yd0_c00246{bottom:121.712322px;}
.ycf_c00246{bottom:126.187488px;}
.yce_c00246{bottom:127.025526px;}
.ycd_c00246{bottom:128.767677px;}
.ycc_c00246{bottom:130.096719px;}
.ycb_c00246{bottom:130.681758px;}
.yca_c00246{bottom:131.695575px;}
.yc9_c00246{bottom:133.670478px;}
.yc8_c00246{bottom:134.137629px;}
.yc7_c00246{bottom:135.656430px;}
.yc6_c00246{bottom:136.296240px;}
.yc5_c00246{bottom:143.410881px;}
.yc4_c00246{bottom:144.760800px;}
.yc3_c00246{bottom:145.291647px;}
.yc2_c00246{bottom:145.882005px;}
.yc1_c00246{bottom:146.872845px;}
.yc0_c00246{bottom:147.697413px;}
.ybf_c00246{bottom:148.572174px;}
.ybe_c00246{bottom:149.515386px;}
.ybd_c00246{bottom:161.440164px;}
.ybc_c00246{bottom:162.664650px;}
.ybb_c00246{bottom:166.296069px;}
.yba_c00246{bottom:167.977623px;}
.yb9_c00246{bottom:170.778984px;}
.yb8_c00246{bottom:171.922350px;}
.yb7_c00246{bottom:173.292555px;}
.yb6_c00246{bottom:174.933270px;}
.yb5_c00246{bottom:176.214099px;}
.yb4_c00246{bottom:177.353328px;}
.yb3_c00246{bottom:180.205155px;}
.yb2_c00246{bottom:183.235620px;}
.yb1_c00246{bottom:184.214217px;}
.yb0_c00246{bottom:187.132542px;}
.yaf_c00246{bottom:193.042890px;}
.yae_c00246{bottom:193.465212px;}
.yad_c00246{bottom:195.738093px;}
.yac_c00246{bottom:196.604130px;}
.yab_c00246{bottom:197.302791px;}
.yaa_c00246{bottom:198.566340px;}
.ya9_c00246{bottom:199.364646px;}
.ya8_c00246{bottom:201.329031px;}
.ya7_c00246{bottom:201.907938px;}
.ya6_c00246{bottom:210.239685px;}
.ya5_c00246{bottom:212.651568px;}
.ya4_c00246{bottom:213.287469px;}
.ya3_c00246{bottom:214.036614px;}
.ya2_c00246{bottom:215.547843px;}
.ya1_c00246{bottom:215.995266px;}
.ya0_c00246{bottom:217.186620px;}
.y9f_c00246{bottom:219.586725px;}
.y9e_c00246{bottom:221.086851px;}
.y9d_c00246{bottom:227.359893px;}
.y9c_c00246{bottom:229.553886px;}
.y9b_c00246{bottom:230.485464px;}
.y9a_c00246{bottom:232.656237px;}
.y99_c00246{bottom:233.677089px;}
.y98_c00246{bottom:235.825668px;}
.y97_c00246{bottom:236.810940px;}
.y96_c00246{bottom:239.723139px;}
.y95_c00246{bottom:245.356251px;}
.y94_c00246{bottom:247.227933px;}
.y93_c00246{bottom:249.535173px;}
.y92_c00246{bottom:250.383558px;}
.y91_c00246{bottom:251.099574px;}
.y90_c00246{bottom:254.297391px;}
.y8f_c00246{bottom:262.936899px;}
.y8e_c00246{bottom:264.393561px;}
.y8d_c00246{bottom:266.212080px;}
.y8c_c00246{bottom:268.403934px;}
.y8b_c00246{bottom:269.234256px;}
.y8a_c00246{bottom:270.361407px;}
.y89_c00246{bottom:270.752934px;}
.y88_c00246{bottom:271.307535px;}
.y87_c00246{bottom:283.159017px;}
.y86_c00246{bottom:283.563672px;}
.y85_c00246{bottom:284.496435px;}
.y84_c00246{bottom:284.775693px;}
.y83_c00246{bottom:286.095207px;}
.y82_c00246{bottom:286.510650px;}
.y81_c00246{bottom:288.019590px;}
.y80_c00246{bottom:288.373800px;}
.y7f_c00246{bottom:288.858012px;}
.y7e_c00246{bottom:299.761818px;}
.y7d_c00246{bottom:301.470708px;}
.y7c_c00246{bottom:301.990428px;}
.y7b_c00246{bottom:303.448431px;}
.y7a_c00246{bottom:303.798327px;}
.y79_c00246{bottom:305.439009px;}
.y78_c00246{bottom:305.952477px;}
.y77_c00246{bottom:306.408756px;}
.y76_c00246{bottom:317.030616px;}
.y75_c00246{bottom:318.128643px;}
.y74_c00246{bottom:318.601815px;}
.y73_c00246{bottom:319.780416px;}
.y72_c00246{bottom:320.188623px;}
.y71_c00246{bottom:321.146742px;}
.y70_c00246{bottom:322.131111px;}
.y6f_c00246{bottom:323.423613px;}
.y6e_c00246{bottom:334.250256px;}
.y6d_c00246{bottom:335.281827px;}
.y6c_c00246{bottom:336.302475px;}
.y6b_c00246{bottom:338.154387px;}
.y6a_c00246{bottom:338.548194px;}
.y69_c00246{bottom:339.353469px;}
.y68_c00246{bottom:350.147709px;}
.y67_c00246{bottom:351.021780px;}
.y66_c00246{bottom:351.227397px;}
.y65_c00246{bottom:352.057521px;}
.y64_c00246{bottom:352.248198px;}
.y63_c00246{bottom:352.976526px;}
.y62_c00246{bottom:353.305752px;}
.y61_c00246{bottom:354.091632px;}
.y60_c00246{bottom:354.471783px;}
.y5f_c00246{bottom:366.729897px;}
.y5e_c00246{bottom:367.127016px;}
.y5d_c00246{bottom:367.631448px;}
.y5c_c00246{bottom:368.428926px;}
.y5b_c00246{bottom:368.760588px;}
.y5a_c00246{bottom:369.854568px;}
.y59_c00246{bottom:370.578771px;}
.y58_c00246{bottom:371.692356px;}
.y57_c00246{bottom:372.026934px;}
.y56_c00246{bottom:383.822091px;}
.y55_c00246{bottom:385.038384px;}
.y54_c00246{bottom:386.151774px;}
.y53_c00246{bottom:386.516280px;}
.y52_c00246{bottom:387.368364px;}
.y51_c00246{bottom:387.774060px;}
.y50_c00246{bottom:388.229682px;}
.y4f_c00246{bottom:400.883919px;}
.y4e_c00246{bottom:401.316729px;}
.y4d_c00246{bottom:401.995848px;}
.y4c_c00246{bottom:403.416162px;}
.y4b_c00246{bottom:403.962930px;}
.y4a_c00246{bottom:404.954607px;}
.y49_c00246{bottom:405.277806px;}
.y48_c00246{bottom:407.136669px;}
.y47_c00246{bottom:416.883099px;}
.y46_c00246{bottom:417.064368px;}
.y45_c00246{bottom:418.058073px;}
.y44_c00246{bottom:418.623072px;}
.y43_c00246{bottom:419.068233px;}
.y42_c00246{bottom:419.941803px;}
.y41_c00246{bottom:420.223230px;}
.y40_c00246{bottom:420.754065px;}
.y3f_c00246{bottom:421.175172px;}
.y3e_c00246{bottom:434.085579px;}
.y3d_c00246{bottom:435.138504px;}
.y3c_c00246{bottom:435.661221px;}
.y3b_c00246{bottom:435.952521px;}
.y3a_c00246{bottom:436.758936px;}
.y39_c00246{bottom:437.310054px;}
.y38_c00246{bottom:437.998608px;}
.y37_c00246{bottom:438.503964px;}
.y36_c00246{bottom:438.728820px;}
.y35_c00246{bottom:452.480577px;}
.y34_c00246{bottom:452.871234px;}
.y33_c00246{bottom:453.135753px;}
.y32_c00246{bottom:454.137708px;}
.y31_c00246{bottom:454.377804px;}
.y30_c00246{bottom:455.573346px;}
.y2f_c00246{bottom:456.821487px;}
.y2e_c00246{bottom:469.337679px;}
.y2d_c00246{bottom:470.286495px;}
.y2c_c00246{bottom:470.773992px;}
.y2b_c00246{bottom:471.020556px;}
.y2a_c00246{bottom:472.102746px;}
.y29_c00246{bottom:472.398195px;}
.y28_c00246{bottom:473.442138px;}
.y27_c00246{bottom:473.734752px;}
.y26_c00246{bottom:474.103821px;}
.y25_c00246{bottom:486.670902px;}
.y24_c00246{bottom:487.896837px;}
.y23_c00246{bottom:488.252316px;}
.y22_c00246{bottom:489.155919px;}
.y21_c00246{bottom:490.142478px;}
.y20_c00246{bottom:491.930889px;}
.y1f_c00246{bottom:503.174829px;}
.y1e_c00246{bottom:503.779986px;}
.y1d_c00246{bottom:504.804630px;}
.y1c_c00246{bottom:505.145598px;}
.y1b_c00246{bottom:505.531488px;}
.y1a_c00246{bottom:506.287461px;}
.y19_c00246{bottom:506.663727px;}
.y18_c00246{bottom:507.059970px;}
.y17_c00246{bottom:507.471318px;}
.y16_c00246{bottom:507.861582px;}
.y15_c00246{bottom:520.117656px;}
.y14_c00246{bottom:521.410587px;}
.y13_c00246{bottom:522.662490px;}
.y12_c00246{bottom:523.176504px;}
.y11_c00246{bottom:524.065185px;}
.y10_c00246{bottom:538.161972px;}
.yf_c00246{bottom:538.434186px;}
.ye_c00246{bottom:539.537274px;}
.yd_c00246{bottom:539.829066px;}
.yc_c00246{bottom:540.278607px;}
.yb_c00246{bottom:540.836040px;}
.ya_c00246{bottom:541.166949px;}
.y9_c00246{bottom:541.348041px;}
.y8_c00246{bottom:554.629158px;}
.y7_c00246{bottom:555.299811px;}
.y6_c00246{bottom:555.882930px;}
.y5_c00246{bottom:556.602345px;}
.y4_c00246{bottom:557.453088px;}
.y3_c00246{bottom:558.253935px;}
.y2_c00246{bottom:559.174500px;}
.y1_c00246{bottom:573.480000px;}
.hf_c00246{height:57.759355px;}
.h10_c00246{height:58.809525px;}
.ha_c00246{height:59.859695px;}
.hd_c00246{height:60.909865px;}
.hc_c00246{height:61.960035px;}
.h11_c00246{height:63.010205px;}
.h9_c00246{height:64.060375px;}
.hb_c00246{height:65.110545px;}
.h8_c00246{height:66.160715px;}
.h2_c00246{height:67.200000px;}
.h3_c00246{height:67.210886px;}
.he_c00246{height:68.261056px;}
.h5_c00246{height:69.311226px;}
.h4_c00246{height:70.361396px;}
.h7_c00246{height:73.511906px;}
.h6_c00246{height:75.612246px;}
.h1_c00246{height:618.750000px;}
.h0_c00246{height:619.050000px;}
.w0_c00246{width:359.100000px;}
.w1_c00246{width:359.250000px;}
.x0_c00246{left:0.000000px;}
.x72_c00246{left:21.066597px;}
.x4e_c00246{left:22.097058px;}
.x26_c00246{left:23.504898px;}
.x2_c00246{left:24.568500px;}
.x9_c00246{left:25.773618px;}
.x2a_c00246{left:28.912587px;}
.x3f_c00246{left:30.845523px;}
.x66_c00246{left:37.459089px;}
.x42_c00246{left:39.457737px;}
.xa_c00246{left:40.919265px;}
.x2b_c00246{left:42.154830px;}
.x21_c00246{left:43.773303px;}
.x81_c00246{left:46.535268px;}
.x6b_c00246{left:48.282900px;}
.x15_c00246{left:49.545234px;}
.x32_c00246{left:54.945078px;}
.x77_c00246{left:57.338814px;}
.x22_c00246{left:59.196033px;}
.x61_c00246{left:61.707429px;}
.x7d_c00246{left:62.914995px;}
.x53_c00246{left:64.765260px;}
.x6e_c00246{left:67.350909px;}
.xb_c00246{left:68.472735px;}
.x6c_c00246{left:70.706589px;}
.x2c_c00246{left:71.897370px;}
.x73_c00246{left:73.182024px;}
.x3_c00246{left:75.711000px;}
.x7f_c00246{left:78.044967px;}
.x70_c00246{left:79.597638px;}
.x82_c00246{left:81.513126px;}
.x11_c00246{left:88.663506px;}
.x43_c00246{left:92.487375px;}
.x58_c00246{left:93.581619px;}
.x80_c00246{left:96.405819px;}
.x39_c00246{left:98.056059px;}
.x16_c00246{left:99.996543px;}
.x48_c00246{left:101.625021px;}
.x64_c00246{left:103.472577px;}
.x33_c00246{left:105.655887px;}
.x1d_c00246{left:109.132716px;}
.x3a_c00246{left:111.009939px;}
.x2d_c00246{left:112.401099px;}
.xc_c00246{left:114.946257px;}
.x4f_c00246{left:116.996325px;}
.x4_c00246{left:120.202500px;}
.x59_c00246{left:122.204949px;}
.x17_c00246{left:123.484380px;}
.x12_c00246{left:125.389152px;}
.x44_c00246{left:126.969012px;}
.x55_c00246{left:128.520810px;}
.x23_c00246{left:129.688764px;}
.x67_c00246{left:132.498750px;}
.x6f_c00246{left:135.332850px;}
.x40_c00246{left:140.199552px;}
.x2e_c00246{left:144.852693px;}
.x56_c00246{left:147.432960px;}
.x3b_c00246{left:150.681444px;}
.xd_c00246{left:152.424807px;}
.x7a_c00246{left:153.638511px;}
.x1e_c00246{left:156.105678px;}
.x6d_c00246{left:158.621898px;}
.x34_c00246{left:160.272858px;}
.x1_c00246{left:164.700000px;}
.x5_c00246{left:167.466000px;}
.x18_c00246{left:170.734581px;}
.x3c_c00246{left:172.554690px;}
.x50_c00246{left:173.897169px;}
.x5d_c00246{left:175.647231px;}
.xe_c00246{left:176.721426px;}
.x45_c00246{left:179.076204px;}
.x7b_c00246{left:181.824321px;}
.x49_c00246{left:184.809003px;}
.x24_c00246{left:186.642738px;}
.x35_c00246{left:188.088357px;}
.x78_c00246{left:190.126803px;}
.x2f_c00246{left:192.321057px;}
.x19_c00246{left:194.840445px;}
.x74_c00246{left:196.435521px;}
.x5a_c00246{left:197.792991px;}
.x1f_c00246{left:199.136856px;}
.x7e_c00246{left:201.719019px;}
.x54_c00246{left:202.752399px;}
.x68_c00246{left:206.410659px;}
.x6_c00246{left:207.433500px;}
.x30_c00246{left:209.421354px;}
.x13_c00246{left:214.779078px;}
.x1a_c00246{left:216.117201px;}
.x27_c00246{left:217.514415px;}
.x57_c00246{left:220.081722px;}
.x36_c00246{left:223.395126px;}
.x25_c00246{left:225.256536px;}
.x62_c00246{left:227.439759px;}
.x3d_c00246{left:229.370535px;}
.x28_c00246{left:231.459672px;}
.x46_c00246{left:232.803288px;}
.x4c_c00246{left:235.256478px;}
.x5f_c00246{left:236.474649px;}
.x7_c00246{left:239.829000px;}
.x51_c00246{left:242.738244px;}
.x63_c00246{left:244.178238px;}
.x79_c00246{left:248.900268px;}
.x5e_c00246{left:250.059816px;}
.x29_c00246{left:251.995794px;}
.x4a_c00246{left:253.937256px;}
.x3e_c00246{left:256.512606px;}
.x60_c00246{left:257.635740px;}
.x5b_c00246{left:260.476071px;}
.x41_c00246{left:262.790838px;}
.xf_c00246{left:268.597335px;}
.x71_c00246{left:271.815420px;}
.x20_c00246{left:274.405779px;}
.x47_c00246{left:275.720466px;}
.x8_c00246{left:277.087500px;}
.x75_c00246{left:279.078312px;}
.x1b_c00246{left:280.127496px;}
.x37_c00246{left:285.519867px;}
.x4d_c00246{left:286.814115px;}
.x52_c00246{left:288.484803px;}
.x10_c00246{left:291.222765px;}
.x65_c00246{left:293.841081px;}
.x38_c00246{left:296.840772px;}
.x76_c00246{left:298.229874px;}
.x31_c00246{left:302.042001px;}
.x69_c00246{left:303.762375px;}
.x7c_c00246{left:304.864971px;}
.x14_c00246{left:307.115220px;}
.x5c_c00246{left:310.725135px;}
.x4b_c00246{left:312.249915px;}
.x1c_c00246{left:317.915346px;}
.x6a_c00246{left:334.989942px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.fsd_c00246{font-size:51.341649pt;}
.fse_c00246{font-size:52.275133pt;}
.fs8_c00246{font-size:53.208618pt;}
.fsb_c00246{font-size:54.142102pt;}
.fsa_c00246{font-size:55.075587pt;}
.fsf_c00246{font-size:56.009071pt;}
.fs7_c00246{font-size:56.942556pt;}
.fs9_c00246{font-size:57.876040pt;}
.fs6_c00246{font-size:58.809525pt;}
.fs0_c00246{font-size:59.733333pt;}
.fs1_c00246{font-size:59.743009pt;}
.fsc_c00246{font-size:60.676494pt;}
.fs3_c00246{font-size:61.609978pt;}
.fs2_c00246{font-size:62.543463pt;}
.fs5_c00246{font-size:65.343916pt;}
.fs4_c00246{font-size:67.210886pt;}
.y0_c00246{bottom:0.000000pt;}
.y101_c00246{bottom:19.091723pt;}
.y100_c00246{bottom:21.479835pt;}
.yff_c00246{bottom:22.511139pt;}
.yfe_c00246{bottom:24.870024pt;}
.yfd_c00246{bottom:25.866373pt;}
.yfc_c00246{bottom:28.323709pt;}
.yfb_c00246{bottom:29.098949pt;}
.yfa_c00246{bottom:30.653584pt;}
.yf9_c00246{bottom:35.096667pt;}
.yf8_c00246{bottom:35.866880pt;}
.yf7_c00246{bottom:36.123885pt;}
.yf6_c00246{bottom:37.239565pt;}
.yf5_c00246{bottom:38.675845pt;}
.yf4_c00246{bottom:39.001629pt;}
.yf3_c00246{bottom:39.270504pt;}
.yf2_c00246{bottom:40.000861pt;}
.yf1_c00246{bottom:52.693824pt;}
.yf0_c00246{bottom:53.184307pt;}
.yef_c00246{bottom:54.467341pt;}
.yee_c00246{bottom:55.130043pt;}
.yed_c00246{bottom:56.643907pt;}
.yec_c00246{bottom:57.160621pt;}
.yeb_c00246{bottom:57.964315pt;}
.yea_c00246{bottom:59.202173pt;}
.ye9_c00246{bottom:60.395768pt;}
.ye8_c00246{bottom:65.184832pt;}
.ye7_c00246{bottom:66.985459pt;}
.ye6_c00246{bottom:68.125749pt;}
.ye5_c00246{bottom:69.887701pt;}
.ye4_c00246{bottom:70.965544pt;}
.ye3_c00246{bottom:72.218400pt;}
.ye2_c00246{bottom:72.560371pt;}
.ye1_c00246{bottom:73.908851pt;}
.ye0_c00246{bottom:76.014347pt;}
.ydf_c00246{bottom:82.073797pt;}
.yde_c00246{bottom:84.100771pt;}
.ydd_c00246{bottom:85.981451pt;}
.ydc_c00246{bottom:88.704688pt;}
.ydb_c00246{bottom:90.230747pt;}
.yda_c00246{bottom:91.375603pt;}
.yd9_c00246{bottom:98.086949pt;}
.yd8_c00246{bottom:98.785501pt;}
.yd7_c00246{bottom:100.828219pt;}
.yd6_c00246{bottom:101.322632pt;}
.yd5_c00246{bottom:101.797667pt;}
.yd4_c00246{bottom:104.130083pt;}
.yd3_c00246{bottom:105.085723pt;}
.yd2_c00246{bottom:106.289205pt;}
.yd1_c00246{bottom:106.702981pt;}
.yd0_c00246{bottom:108.188731pt;}
.ycf_c00246{bottom:112.166656pt;}
.yce_c00246{bottom:112.911579pt;}
.ycd_c00246{bottom:114.460157pt;}
.ycc_c00246{bottom:115.641528pt;}
.ycb_c00246{bottom:116.161563pt;}
.yca_c00246{bottom:117.062733pt;}
.yc9_c00246{bottom:118.818203pt;}
.yc8_c00246{bottom:119.233448pt;}
.yc7_c00246{bottom:120.583493pt;}
.yc6_c00246{bottom:121.152213pt;}
.yc5_c00246{bottom:127.476339pt;}
.yc4_c00246{bottom:128.676267pt;}
.yc3_c00246{bottom:129.148131pt;}
.yc2_c00246{bottom:129.672893pt;}
.yc1_c00246{bottom:130.553640pt;}
.yc0_c00246{bottom:131.286589pt;}
.ybf_c00246{bottom:132.064155pt;}
.ybe_c00246{bottom:132.902565pt;}
.ybd_c00246{bottom:143.502368pt;}
.ybc_c00246{bottom:144.590800pt;}
.ybb_c00246{bottom:147.818728pt;}
.yba_c00246{bottom:149.313443pt;}
.yb9_c00246{bottom:151.803541pt;}
.yb8_c00246{bottom:152.819867pt;}
.yb7_c00246{bottom:154.037827pt;}
.yb6_c00246{bottom:155.496240pt;}
.yb5_c00246{bottom:156.634755pt;}
.yb4_c00246{bottom:157.647403pt;}
.yb3_c00246{bottom:160.182360pt;}
.yb2_c00246{bottom:162.876107pt;}
.yb1_c00246{bottom:163.745971pt;}
.yb0_c00246{bottom:166.340037pt;}
.yaf_c00246{bottom:171.593680pt;}
.yae_c00246{bottom:171.969077pt;}
.yad_c00246{bottom:173.989416pt;}
.yac_c00246{bottom:174.759227pt;}
.yab_c00246{bottom:175.380259pt;}
.yaa_c00246{bottom:176.503413pt;}
.ya9_c00246{bottom:177.213019pt;}
.ya8_c00246{bottom:178.959139pt;}
.ya7_c00246{bottom:179.473723pt;}
.ya6_c00246{bottom:186.879720pt;}
.ya5_c00246{bottom:189.023616pt;}
.ya4_c00246{bottom:189.588861pt;}
.ya3_c00246{bottom:190.254768pt;}
.ya2_c00246{bottom:191.598083pt;}
.ya1_c00246{bottom:191.995792pt;}
.ya0_c00246{bottom:193.054773pt;}
.y9f_c00246{bottom:195.188200pt;}
.y9e_c00246{bottom:196.521645pt;}
.y9d_c00246{bottom:202.097683pt;}
.y9c_c00246{bottom:204.047899pt;}
.y9b_c00246{bottom:204.875968pt;}
.y9a_c00246{bottom:206.805544pt;}
.y99_c00246{bottom:207.712968pt;}
.y98_c00246{bottom:209.622816pt;}
.y97_c00246{bottom:210.498613pt;}
.y96_c00246{bottom:213.087235pt;}
.y95_c00246{bottom:218.094445pt;}
.y94_c00246{bottom:219.758163pt;}
.y93_c00246{bottom:221.809043pt;}
.y92_c00246{bottom:222.563163pt;}
.y91_c00246{bottom:223.199621pt;}
.y90_c00246{bottom:226.042125pt;}
.y8f_c00246{bottom:233.721688pt;}
.y8e_c00246{bottom:235.016499pt;}
.y8d_c00246{bottom:236.632960pt;}
.y8c_c00246{bottom:238.581275pt;}
.y8b_c00246{bottom:239.319339pt;}
.y8a_c00246{bottom:240.321251pt;}
.y89_c00246{bottom:240.669275pt;}
.y88_c00246{bottom:241.162253pt;}
.y87_c00246{bottom:251.696904pt;}
.y86_c00246{bottom:252.056597pt;}
.y85_c00246{bottom:252.885720pt;}
.y84_c00246{bottom:253.133949pt;}
.y83_c00246{bottom:254.306851pt;}
.y82_c00246{bottom:254.676133pt;}
.y81_c00246{bottom:256.017413pt;}
.y80_c00246{bottom:256.332267pt;}
.y7f_c00246{bottom:256.762677pt;}
.y7e_c00246{bottom:266.454949pt;}
.y7d_c00246{bottom:267.973963pt;}
.y7c_c00246{bottom:268.435936pt;}
.y7b_c00246{bottom:269.731939pt;}
.y7a_c00246{bottom:270.042957pt;}
.y79_c00246{bottom:271.501341pt;}
.y78_c00246{bottom:271.957757pt;}
.y77_c00246{bottom:272.363339pt;}
.y76_c00246{bottom:281.804992pt;}
.y75_c00246{bottom:282.781016pt;}
.y74_c00246{bottom:283.201613pt;}
.y73_c00246{bottom:284.249259pt;}
.y72_c00246{bottom:284.612109pt;}
.y71_c00246{bottom:285.463771pt;}
.y70_c00246{bottom:286.338765pt;}
.y6f_c00246{bottom:287.487656pt;}
.y6e_c00246{bottom:297.111339pt;}
.y6d_c00246{bottom:298.028291pt;}
.y6c_c00246{bottom:298.935533pt;}
.y6b_c00246{bottom:300.581677pt;}
.y6a_c00246{bottom:300.931728pt;}
.y69_c00246{bottom:301.647528pt;}
.y68_c00246{bottom:311.242408pt;}
.y67_c00246{bottom:312.019360pt;}
.y66_c00246{bottom:312.202131pt;}
.y65_c00246{bottom:312.940019pt;}
.y64_c00246{bottom:313.109509pt;}
.y63_c00246{bottom:313.756912pt;}
.y62_c00246{bottom:314.049557pt;}
.y61_c00246{bottom:314.748117pt;}
.y60_c00246{bottom:315.086029pt;}
.y5f_c00246{bottom:325.982131pt;}
.y5e_c00246{bottom:326.335125pt;}
.y5d_c00246{bottom:326.783509pt;}
.y5c_c00246{bottom:327.492379pt;}
.y5b_c00246{bottom:327.787189pt;}
.y5a_c00246{bottom:328.759616pt;}
.y59_c00246{bottom:329.403352pt;}
.y58_c00246{bottom:330.393205pt;}
.y57_c00246{bottom:330.690608pt;}
.y56_c00246{bottom:341.175192pt;}
.y55_c00246{bottom:342.256341pt;}
.y54_c00246{bottom:343.246021pt;}
.y53_c00246{bottom:343.570027pt;}
.y52_c00246{bottom:344.327435pt;}
.y51_c00246{bottom:344.688053pt;}
.y50_c00246{bottom:345.093051pt;}
.y4f_c00246{bottom:356.341261pt;}
.y4e_c00246{bottom:356.725981pt;}
.y4d_c00246{bottom:357.329643pt;}
.y4c_c00246{bottom:358.592144pt;}
.y4b_c00246{bottom:359.078160pt;}
.y4a_c00246{bottom:359.959651pt;}
.y49_c00246{bottom:360.246939pt;}
.y48_c00246{bottom:361.899261pt;}
.y47_c00246{bottom:370.562755pt;}
.y46_c00246{bottom:370.723883pt;}
.y45_c00246{bottom:371.607176pt;}
.y44_c00246{bottom:372.109397pt;}
.y43_c00246{bottom:372.505096pt;}
.y42_c00246{bottom:373.281603pt;}
.y41_c00246{bottom:373.531760pt;}
.y40_c00246{bottom:374.003613pt;}
.y3f_c00246{bottom:374.377931pt;}
.y3e_c00246{bottom:385.853848pt;}
.y3d_c00246{bottom:386.789781pt;}
.y3c_c00246{bottom:387.254419pt;}
.y3b_c00246{bottom:387.513352pt;}
.y3a_c00246{bottom:388.230165pt;}
.y39_c00246{bottom:388.720048pt;}
.y38_c00246{bottom:389.332096pt;}
.y37_c00246{bottom:389.781301pt;}
.y36_c00246{bottom:389.981173pt;}
.y35_c00246{bottom:402.204957pt;}
.y34_c00246{bottom:402.552208pt;}
.y33_c00246{bottom:402.787336pt;}
.y32_c00246{bottom:403.677963pt;}
.y31_c00246{bottom:403.891381pt;}
.y30_c00246{bottom:404.954085pt;}
.y2f_c00246{bottom:406.063544pt;}
.y2e_c00246{bottom:417.189048pt;}
.y2d_c00246{bottom:418.032440pt;}
.y2c_c00246{bottom:418.465771pt;}
.y2b_c00246{bottom:418.684939pt;}
.y2a_c00246{bottom:419.646885pt;}
.y29_c00246{bottom:419.909507pt;}
.y28_c00246{bottom:420.837456pt;}
.y27_c00246{bottom:421.097557pt;}
.y26_c00246{bottom:421.425619pt;}
.y25_c00246{bottom:432.596357pt;}
.y24_c00246{bottom:433.686077pt;}
.y23_c00246{bottom:434.002059pt;}
.y22_c00246{bottom:434.805261pt;}
.y21_c00246{bottom:435.682203pt;}
.y20_c00246{bottom:437.271901pt;}
.y1f_c00246{bottom:447.266515pt;}
.y1e_c00246{bottom:447.804432pt;}
.y1d_c00246{bottom:448.715227pt;}
.y1c_c00246{bottom:449.018309pt;}
.y1b_c00246{bottom:449.361323pt;}
.y1a_c00246{bottom:450.033299pt;}
.y19_c00246{bottom:450.367757pt;}
.y18_c00246{bottom:450.719973pt;}
.y17_c00246{bottom:451.085616pt;}
.y16_c00246{bottom:451.432517pt;}
.y15_c00246{bottom:462.326805pt;}
.y14_c00246{bottom:463.476077pt;}
.y13_c00246{bottom:464.588880pt;}
.y12_c00246{bottom:465.045781pt;}
.y11_c00246{bottom:465.835720pt;}
.y10_c00246{bottom:478.366197pt;}
.yf_c00246{bottom:478.608165pt;}
.ye_c00246{bottom:479.588688pt;}
.yd_c00246{bottom:479.848059pt;}
.yc_c00246{bottom:480.247651pt;}
.yb_c00246{bottom:480.743147pt;}
.ya_c00246{bottom:481.037288pt;}
.y9_c00246{bottom:481.198259pt;}
.y8_c00246{bottom:493.003696pt;}
.y7_c00246{bottom:493.599832pt;}
.y6_c00246{bottom:494.118160pt;}
.y5_c00246{bottom:494.757640pt;}
.y4_c00246{bottom:495.513856pt;}
.y3_c00246{bottom:496.225720pt;}
.y2_c00246{bottom:497.044000pt;}
.y1_c00246{bottom:509.760000pt;}
.hf_c00246{height:51.341649pt;}
.h10_c00246{height:52.275133pt;}
.ha_c00246{height:53.208618pt;}
.hd_c00246{height:54.142102pt;}
.hc_c00246{height:55.075587pt;}
.h11_c00246{height:56.009071pt;}
.h9_c00246{height:56.942556pt;}
.hb_c00246{height:57.876040pt;}
.h8_c00246{height:58.809525pt;}
.h2_c00246{height:59.733333pt;}
.h3_c00246{height:59.743009pt;}
.he_c00246{height:60.676494pt;}
.h5_c00246{height:61.609978pt;}
.h4_c00246{height:62.543463pt;}
.h7_c00246{height:65.343916pt;}
.h6_c00246{height:67.210886pt;}
.h1_c00246{height:550.000000pt;}
.h0_c00246{height:550.266667pt;}
.w0_c00246{width:319.200000pt;}
.w1_c00246{width:319.333333pt;}
.x0_c00246{left:0.000000pt;}
.x72_c00246{left:18.725864pt;}
.x4e_c00246{left:19.641829pt;}
.x26_c00246{left:20.893243pt;}
.x2_c00246{left:21.838667pt;}
.x9_c00246{left:22.909883pt;}
.x2a_c00246{left:25.700077pt;}
.x3f_c00246{left:27.418243pt;}
.x66_c00246{left:33.296968pt;}
.x42_c00246{left:35.073544pt;}
.xa_c00246{left:36.372680pt;}
.x2b_c00246{left:37.470960pt;}
.x21_c00246{left:38.909603pt;}
.x81_c00246{left:41.364683pt;}
.x6b_c00246{left:42.918133pt;}
.x15_c00246{left:44.040208pt;}
.x32_c00246{left:48.840069pt;}
.x77_c00246{left:50.967835pt;}
.x22_c00246{left:52.618696pt;}
.x61_c00246{left:54.851048pt;}
.x7d_c00246{left:55.924440pt;}
.x53_c00246{left:57.569120pt;}
.x6e_c00246{left:59.867475pt;}
.xb_c00246{left:60.864653pt;}
.x6c_c00246{left:62.850301pt;}
.x2c_c00246{left:63.908773pt;}
.x73_c00246{left:65.050688pt;}
.x3_c00246{left:67.298667pt;}
.x7f_c00246{left:69.373304pt;}
.x70_c00246{left:70.753456pt;}
.x82_c00246{left:72.456112pt;}
.x11_c00246{left:78.812005pt;}
.x43_c00246{left:82.211000pt;}
.x58_c00246{left:83.183661pt;}
.x80_c00246{left:85.694061pt;}
.x39_c00246{left:87.160941pt;}
.x16_c00246{left:88.885816pt;}
.x48_c00246{left:90.333352pt;}
.x64_c00246{left:91.975624pt;}
.x33_c00246{left:93.916344pt;}
.x1d_c00246{left:97.006859pt;}
.x3a_c00246{left:98.675501pt;}
.x2d_c00246{left:99.912088pt;}
.xc_c00246{left:102.174451pt;}
.x4f_c00246{left:103.996733pt;}
.x4_c00246{left:106.846667pt;}
.x59_c00246{left:108.626621pt;}
.x17_c00246{left:109.763893pt;}
.x12_c00246{left:111.457024pt;}
.x44_c00246{left:112.861344pt;}
.x55_c00246{left:114.240720pt;}
.x23_c00246{left:115.278901pt;}
.x67_c00246{left:117.776667pt;}
.x6f_c00246{left:120.295867pt;}
.x40_c00246{left:124.621824pt;}
.x2e_c00246{left:128.757949pt;}
.x56_c00246{left:131.051520pt;}
.x3b_c00246{left:133.939061pt;}
.xd_c00246{left:135.488717pt;}
.x7a_c00246{left:136.567565pt;}
.x1e_c00246{left:138.760603pt;}
.x6d_c00246{left:140.997243pt;}
.x34_c00246{left:142.464763pt;}
.x1_c00246{left:146.400000pt;}
.x5_c00246{left:148.858667pt;}
.x18_c00246{left:151.764072pt;}
.x3c_c00246{left:153.381947pt;}
.x50_c00246{left:154.575261pt;}
.x5d_c00246{left:156.130872pt;}
.xe_c00246{left:157.085712pt;}
.x45_c00246{left:159.178848pt;}
.x7b_c00246{left:161.621619pt;}
.x49_c00246{left:164.274669pt;}
.x24_c00246{left:165.904656pt;}
.x35_c00246{left:167.189651pt;}
.x78_c00246{left:169.001603pt;}
.x2f_c00246{left:170.952051pt;}
.x19_c00246{left:173.191507pt;}
.x74_c00246{left:174.609352pt;}
.x5a_c00246{left:175.815992pt;}
.x1f_c00246{left:177.010539pt;}
.x7e_c00246{left:179.305795pt;}
.x54_c00246{left:180.224355pt;}
.x68_c00246{left:183.476141pt;}
.x6_c00246{left:184.385333pt;}
.x30_c00246{left:186.152315pt;}
.x13_c00246{left:190.914736pt;}
.x1a_c00246{left:192.104179pt;}
.x27_c00246{left:193.346147pt;}
.x57_c00246{left:195.628197pt;}
.x36_c00246{left:198.573445pt;}
.x25_c00246{left:200.228032pt;}
.x62_c00246{left:202.168675pt;}
.x3d_c00246{left:203.884920pt;}
.x28_c00246{left:205.741931pt;}
.x46_c00246{left:206.936256pt;}
.x4c_c00246{left:209.116869pt;}
.x5f_c00246{left:210.199688pt;}
.x7_c00246{left:213.181333pt;}
.x51_c00246{left:215.767328pt;}
.x63_c00246{left:217.047323pt;}
.x79_c00246{left:221.244683pt;}
.x5e_c00246{left:222.275392pt;}
.x29_c00246{left:223.996261pt;}
.x4a_c00246{left:225.722005pt;}
.x3e_c00246{left:228.011205pt;}
.x60_c00246{left:229.009547pt;}
.x5b_c00246{left:231.534285pt;}
.x41_c00246{left:233.591856pt;}
.xf_c00246{left:238.753187pt;}
.x71_c00246{left:241.613707pt;}
.x20_c00246{left:243.916248pt;}
.x47_c00246{left:245.084859pt;}
.x8_c00246{left:246.300000pt;}
.x75_c00246{left:248.069611pt;}
.x1b_c00246{left:249.002219pt;}
.x37_c00246{left:253.795437pt;}
.x4d_c00246{left:254.945880pt;}
.x52_c00246{left:256.430936pt;}
.x10_c00246{left:258.864680pt;}
.x65_c00246{left:261.192072pt;}
.x38_c00246{left:263.858464pt;}
.x76_c00246{left:265.093221pt;}
.x31_c00246{left:268.481779pt;}
.x69_c00246{left:270.011000pt;}
.x7c_c00246{left:270.991085pt;}
.x14_c00246{left:272.991307pt;}
.x5c_c00246{left:276.200120pt;}
.x4b_c00246{left:277.555480pt;}
.x1c_c00246{left:282.591419pt;}
.x6a_c00246{left:297.768837pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00247 {
    display:none;
  }
  .loading-indicator_c00247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00247 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00247 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00247" -> "#page-container .classname_c00247")
 */
.pf_c00247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00247 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00247 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00247 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00247 {overflow:visible;}
  }
}
.c_c00247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00247 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00247:after { /* webkit #35443 */
  content: '';
}
.t_c00247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00247 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00247 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00247 { /* info for Javascript */
  display:none;
}
.l_c00247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00247:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00247 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00247.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00247{transform:matrix(0.029905,-0.000568,0.004749,0.249955,0,0);-ms-transform:matrix(0.029905,-0.000568,0.004749,0.249955,0,0);-webkit-transform:matrix(0.029905,-0.000568,0.004749,0.249955,0,0);}
.me4_c00247{transform:matrix(0.065731,-0.001380,0.005249,0.249945,0,0);-ms-transform:matrix(0.065731,-0.001380,0.005249,0.249945,0,0);-webkit-transform:matrix(0.065731,-0.001380,0.005249,0.249945,0,0);}
.mc_c00247{transform:matrix(0.096290,-0.002215,0.005748,0.249934,0,0);-ms-transform:matrix(0.096290,-0.002215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.096290,-0.002215,0.005748,0.249934,0,0);}
.m1e_c00247{transform:matrix(0.145114,-0.002757,0.004749,0.249955,0,0);-ms-transform:matrix(0.145114,-0.002757,0.004749,0.249955,0,0);-webkit-transform:matrix(0.145114,-0.002757,0.004749,0.249955,0,0);}
.mb4_c00247{transform:matrix(0.145443,-0.003054,0.005249,0.249945,0,0);-ms-transform:matrix(0.145443,-0.003054,0.005249,0.249945,0,0);-webkit-transform:matrix(0.145443,-0.003054,0.005249,0.249945,0,0);}
.me3_c00247{transform:matrix(0.145888,-0.003064,0.005249,0.249945,0,0);-ms-transform:matrix(0.145888,-0.003064,0.005249,0.249945,0,0);-webkit-transform:matrix(0.145888,-0.003064,0.005249,0.249945,0,0);}
.mb1_c00247{transform:matrix(0.147732,-0.003102,0.005249,0.249945,0,0);-ms-transform:matrix(0.147732,-0.003102,0.005249,0.249945,0,0);-webkit-transform:matrix(0.147732,-0.003102,0.005249,0.249945,0,0);}
.mc5_c00247{transform:matrix(0.151102,-0.003173,0.005249,0.249945,0,0);-ms-transform:matrix(0.151102,-0.003173,0.005249,0.249945,0,0);-webkit-transform:matrix(0.151102,-0.003173,0.005249,0.249945,0,0);}
.m25_c00247{transform:matrix(0.152358,-0.002895,0.004749,0.249955,0,0);-ms-transform:matrix(0.152358,-0.002895,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152358,-0.002895,0.004749,0.249955,0,0);}
.m48_c00247{transform:matrix(0.153665,-0.002459,0.003999,0.249968,0,0);-ms-transform:matrix(0.153665,-0.002459,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153665,-0.002459,0.003999,0.249968,0,0);}
.m61_c00247{transform:matrix(0.153984,-0.003542,0.005748,0.249934,0,0);-ms-transform:matrix(0.153984,-0.003542,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153984,-0.003542,0.005748,0.249934,0,0);}
.m11_c00247{transform:matrix(0.155384,-0.003574,0.005748,0.249934,0,0);-ms-transform:matrix(0.155384,-0.003574,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155384,-0.003574,0.005748,0.249934,0,0);}
.m8b_c00247{transform:matrix(0.155433,-0.002642,0.004249,0.249964,0,0);-ms-transform:matrix(0.155433,-0.002642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155433,-0.002642,0.004249,0.249964,0,0);}
.m52_c00247{transform:matrix(0.157335,-0.002517,0.003999,0.249968,0,0);-ms-transform:matrix(0.157335,-0.002517,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157335,-0.002517,0.003999,0.249968,0,0);}
.m32_c00247{transform:matrix(0.158055,-0.003319,0.005249,0.249945,0,0);-ms-transform:matrix(0.158055,-0.003319,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158055,-0.003319,0.005249,0.249945,0,0);}
.m18_c00247{transform:matrix(0.158836,-0.003018,0.004749,0.249955,0,0);-ms-transform:matrix(0.158836,-0.003018,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158836,-0.003018,0.004749,0.249955,0,0);}
.m41_c00247{transform:matrix(0.158925,-0.003337,0.005249,0.249945,0,0);-ms-transform:matrix(0.158925,-0.003337,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158925,-0.003337,0.005249,0.249945,0,0);}
.m54_c00247{transform:matrix(0.159495,-0.002552,0.003999,0.249968,0,0);-ms-transform:matrix(0.159495,-0.002552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159495,-0.002552,0.003999,0.249968,0,0);}
.m4f_c00247{transform:matrix(0.160169,-0.002563,0.003999,0.249968,0,0);-ms-transform:matrix(0.160169,-0.002563,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160169,-0.002563,0.003999,0.249968,0,0);}
.m78_c00247{transform:matrix(0.160386,-0.003047,0.004749,0.249955,0,0);-ms-transform:matrix(0.160386,-0.003047,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160386,-0.003047,0.004749,0.249955,0,0);}
.mc8_c00247{transform:matrix(0.160735,-0.003375,0.005249,0.249945,0,0);-ms-transform:matrix(0.160735,-0.003375,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160735,-0.003375,0.005249,0.249945,0,0);}
.mf_c00247{transform:matrix(0.162232,-0.003731,0.005748,0.249934,0,0);-ms-transform:matrix(0.162232,-0.003731,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162232,-0.003731,0.005748,0.249934,0,0);}
.mb5_c00247{transform:matrix(0.162614,-0.003415,0.005249,0.249945,0,0);-ms-transform:matrix(0.162614,-0.003415,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162614,-0.003415,0.005249,0.249945,0,0);}
.m4a_c00247{transform:matrix(0.162779,-0.002604,0.003999,0.249968,0,0);-ms-transform:matrix(0.162779,-0.002604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162779,-0.002604,0.003999,0.249968,0,0);}
.mdb_c00247{transform:matrix(0.162814,-0.003419,0.005249,0.249945,0,0);-ms-transform:matrix(0.162814,-0.003419,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162814,-0.003419,0.005249,0.249945,0,0);}
.m58_c00247{transform:matrix(0.163044,-0.002609,0.003999,0.249968,0,0);-ms-transform:matrix(0.163044,-0.002609,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163044,-0.002609,0.003999,0.249968,0,0);}
.mce_c00247{transform:matrix(0.163569,-0.003435,0.005249,0.249945,0,0);-ms-transform:matrix(0.163569,-0.003435,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163569,-0.003435,0.005249,0.249945,0,0);}
.mb2_c00247{transform:matrix(0.163774,-0.003439,0.005249,0.249945,0,0);-ms-transform:matrix(0.163774,-0.003439,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163774,-0.003439,0.005249,0.249945,0,0);}
.mc6_c00247{transform:matrix(0.163929,-0.003443,0.005249,0.249945,0,0);-ms-transform:matrix(0.163929,-0.003443,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163929,-0.003443,0.005249,0.249945,0,0);}
.m22_c00247{transform:matrix(0.164920,-0.003133,0.004749,0.249955,0,0);-ms-transform:matrix(0.164920,-0.003133,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164920,-0.003133,0.004749,0.249955,0,0);}
.mad_c00247{transform:matrix(0.165189,-0.003469,0.005249,0.249945,0,0);-ms-transform:matrix(0.165189,-0.003469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165189,-0.003469,0.005249,0.249945,0,0);}
.ma5_c00247{transform:matrix(0.165217,-0.001652,0.002500,0.249988,0,0);-ms-transform:matrix(0.165217,-0.001652,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165217,-0.001652,0.002500,0.249988,0,0);}
.ma3_c00247{transform:matrix(0.166452,-0.001665,0.002500,0.249988,0,0);-ms-transform:matrix(0.166452,-0.001665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166452,-0.001665,0.002500,0.249988,0,0);}
.m75_c00247{transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);-ms-transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166815,-0.003169,0.004749,0.249955,0,0);}
.m7b_c00247{transform:matrix(0.167165,-0.003176,0.004749,0.249955,0,0);-ms-transform:matrix(0.167165,-0.003176,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167165,-0.003176,0.004749,0.249955,0,0);}
.mc2_c00247{transform:matrix(0.167318,-0.003514,0.005249,0.249945,0,0);-ms-transform:matrix(0.167318,-0.003514,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167318,-0.003514,0.005249,0.249945,0,0);}
.m33_c00247{transform:matrix(0.167353,-0.003514,0.005249,0.249945,0,0);-ms-transform:matrix(0.167353,-0.003514,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167353,-0.003514,0.005249,0.249945,0,0);}
.m96_c00247{transform:matrix(0.167711,0.002180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167711,0.002180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167711,0.002180,-0.003250,0.249979,0,0);}
.mc7_c00247{transform:matrix(0.167828,-0.003524,0.005249,0.249945,0,0);-ms-transform:matrix(0.167828,-0.003524,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167828,-0.003524,0.005249,0.249945,0,0);}
.mf2_c00247{transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.168825,-0.003208,0.004749,0.249955,0,0);-ms-transform:matrix(0.168825,-0.003208,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168825,-0.003208,0.004749,0.249955,0,0);}
.m81_c00247{transform:matrix(0.168985,-0.003211,0.004749,0.249955,0,0);-ms-transform:matrix(0.168985,-0.003211,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168985,-0.003211,0.004749,0.249955,0,0);}
.m0_c00247{transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);}
.mbb_c00247{transform:matrix(0.169328,-0.003556,0.005249,0.249945,0,0);-ms-transform:matrix(0.169328,-0.003556,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169328,-0.003556,0.005249,0.249945,0,0);}
.m36_c00247{transform:matrix(0.169483,-0.003559,0.005249,0.249945,0,0);-ms-transform:matrix(0.169483,-0.003559,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169483,-0.003559,0.005249,0.249945,0,0);}
.m56_c00247{transform:matrix(0.169698,-0.002715,0.003999,0.249968,0,0);-ms-transform:matrix(0.169698,-0.002715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169698,-0.002715,0.003999,0.249968,0,0);}
.mb_c00247{transform:matrix(0.169870,-0.003907,0.005748,0.249934,0,0);-ms-transform:matrix(0.169870,-0.003907,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169870,-0.003907,0.005748,0.249934,0,0);}
.md2_c00247{transform:matrix(0.170073,-0.003572,0.005249,0.249945,0,0);-ms-transform:matrix(0.170073,-0.003572,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170073,-0.003572,0.005249,0.249945,0,0);}
.mb3_c00247{transform:matrix(0.171617,-0.003604,0.005249,0.249945,0,0);-ms-transform:matrix(0.171617,-0.003604,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171617,-0.003604,0.005249,0.249945,0,0);}
.m24_c00247{transform:matrix(0.172119,-0.003270,0.004749,0.249955,0,0);-ms-transform:matrix(0.172119,-0.003270,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172119,-0.003270,0.004749,0.249955,0,0);}
.mcd_c00247{transform:matrix(0.172517,-0.003623,0.005249,0.249945,0,0);-ms-transform:matrix(0.172517,-0.003623,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172517,-0.003623,0.005249,0.249945,0,0);}
.m4d_c00247{transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);-ms-transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);}
.mae_c00247{transform:matrix(0.172942,-0.003632,0.005249,0.249945,0,0);-ms-transform:matrix(0.172942,-0.003632,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172942,-0.003632,0.005249,0.249945,0,0);}
.mc4_c00247{transform:matrix(0.173012,-0.003633,0.005249,0.249945,0,0);-ms-transform:matrix(0.173012,-0.003633,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173012,-0.003633,0.005249,0.249945,0,0);}
.m2a_c00247{transform:matrix(0.173237,-0.003638,0.005249,0.249945,0,0);-ms-transform:matrix(0.173237,-0.003638,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173237,-0.003638,0.005249,0.249945,0,0);}
.m87_c00247{transform:matrix(0.174490,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174490,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174490,-0.002966,0.004249,0.249964,0,0);}
.m28_c00247{transform:matrix(0.175191,-0.003679,0.005249,0.249945,0,0);-ms-transform:matrix(0.175191,-0.003679,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175191,-0.003679,0.005249,0.249945,0,0);}
.m4b_c00247{transform:matrix(0.176352,-0.002822,0.003999,0.249968,0,0);-ms-transform:matrix(0.176352,-0.002822,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176352,-0.002822,0.003999,0.249968,0,0);}
.m55_c00247{transform:matrix(0.176807,-0.002829,0.003999,0.249968,0,0);-ms-transform:matrix(0.176807,-0.002829,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176807,-0.002829,0.003999,0.249968,0,0);}
.m80_c00247{transform:matrix(0.177338,-0.003369,0.004749,0.249955,0,0);-ms-transform:matrix(0.177338,-0.003369,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177338,-0.003369,0.004749,0.249955,0,0);}
.m47_c00247{transform:matrix(0.177752,-0.002844,0.003999,0.249968,0,0);-ms-transform:matrix(0.177752,-0.002844,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177752,-0.002844,0.003999,0.249968,0,0);}
.mbd_c00247{transform:matrix(0.178001,-0.003738,0.005249,0.249945,0,0);-ms-transform:matrix(0.178001,-0.003738,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178001,-0.003738,0.005249,0.249945,0,0);}
.mbc_c00247{transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);-ms-transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);}
.mec_c00247{transform:matrix(0.179052,-0.003939,0.005499,0.249940,0,0);-ms-transform:matrix(0.179052,-0.003939,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179052,-0.003939,0.005499,0.249940,0,0);}
.md9_c00247{transform:matrix(0.179800,-0.003776,0.005249,0.249945,0,0);-ms-transform:matrix(0.179800,-0.003776,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179800,-0.003776,0.005249,0.249945,0,0);}
.m19_c00247{transform:matrix(0.180187,-0.003424,0.004749,0.249955,0,0);-ms-transform:matrix(0.180187,-0.003424,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180187,-0.003424,0.004749,0.249955,0,0);}
.m5a_c00247{transform:matrix(0.180397,-0.002886,0.003999,0.249968,0,0);-ms-transform:matrix(0.180397,-0.002886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180397,-0.002886,0.003999,0.249968,0,0);}
.maa_c00247{transform:matrix(0.181005,-0.003801,0.005249,0.249945,0,0);-ms-transform:matrix(0.181005,-0.003801,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181005,-0.003801,0.005249,0.249945,0,0);}
.m51_c00247{transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);-ms-transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);}
.m37_c00247{transform:matrix(0.181515,-0.003812,0.005249,0.249945,0,0);-ms-transform:matrix(0.181515,-0.003812,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181515,-0.003812,0.005249,0.249945,0,0);}
.m7d_c00247{transform:matrix(0.181662,-0.003452,0.004749,0.249955,0,0);-ms-transform:matrix(0.181662,-0.003452,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181662,-0.003452,0.004749,0.249955,0,0);}
.mb0_c00247{transform:matrix(0.181760,-0.003817,0.005249,0.249945,0,0);-ms-transform:matrix(0.181760,-0.003817,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181760,-0.003817,0.005249,0.249945,0,0);}
.m59_c00247{transform:matrix(0.181947,-0.002911,0.003999,0.249968,0,0);-ms-transform:matrix(0.181947,-0.002911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181947,-0.002911,0.003999,0.249968,0,0);}
.m2b_c00247{transform:matrix(0.181950,-0.003821,0.005249,0.249945,0,0);-ms-transform:matrix(0.181950,-0.003821,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181950,-0.003821,0.005249,0.249945,0,0);}
.m57_c00247{transform:matrix(0.182322,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182322,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182322,-0.002917,0.003999,0.249968,0,0);}
.m7a_c00247{transform:matrix(0.182427,-0.003466,0.004749,0.249955,0,0);-ms-transform:matrix(0.182427,-0.003466,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182427,-0.003466,0.004749,0.249955,0,0);}
.me_c00247{transform:matrix(0.182617,-0.004200,0.005748,0.249934,0,0);-ms-transform:matrix(0.182617,-0.004200,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182617,-0.004200,0.005748,0.249934,0,0);}
.md6_c00247{transform:matrix(0.182675,-0.003836,0.005249,0.249945,0,0);-ms-transform:matrix(0.182675,-0.003836,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182675,-0.003836,0.005249,0.249945,0,0);}
.mc0_c00247{transform:matrix(0.182820,-0.003839,0.005249,0.249945,0,0);-ms-transform:matrix(0.182820,-0.003839,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182820,-0.003839,0.005249,0.249945,0,0);}
.m71_c00247{transform:matrix(0.182912,-0.003475,0.004749,0.249955,0,0);-ms-transform:matrix(0.182912,-0.003475,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182912,-0.003475,0.004749,0.249955,0,0);}
.m26_c00247{transform:matrix(0.182972,-0.003476,0.004749,0.249955,0,0);-ms-transform:matrix(0.182972,-0.003476,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182972,-0.003476,0.004749,0.249955,0,0);}
.m1b_c00247{transform:matrix(0.183137,-0.003480,0.004749,0.249955,0,0);-ms-transform:matrix(0.183137,-0.003480,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183137,-0.003480,0.004749,0.249955,0,0);}
.m14_c00247{transform:matrix(0.183227,-0.003481,0.004749,0.249955,0,0);-ms-transform:matrix(0.183227,-0.003481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183227,-0.003481,0.004749,0.249955,0,0);}
.mc1_c00247{transform:matrix(0.183250,-0.003848,0.005249,0.249945,0,0);-ms-transform:matrix(0.183250,-0.003848,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183250,-0.003848,0.005249,0.249945,0,0);}
.mba_c00247{transform:matrix(0.183570,-0.003855,0.005249,0.249945,0,0);-ms-transform:matrix(0.183570,-0.003855,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183570,-0.003855,0.005249,0.249945,0,0);}
.maf_c00247{transform:matrix(0.183794,-0.003860,0.005249,0.249945,0,0);-ms-transform:matrix(0.183794,-0.003860,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183794,-0.003860,0.005249,0.249945,0,0);}
.m4c_c00247{transform:matrix(0.184161,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184161,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184161,-0.002947,0.003999,0.249968,0,0);}
.m88_c00247{transform:matrix(0.184178,-0.003131,0.004249,0.249964,0,0);-ms-transform:matrix(0.184178,-0.003131,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184178,-0.003131,0.004249,0.249964,0,0);}
.m97_c00247{transform:matrix(0.184289,0.002396,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184289,0.002396,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184289,0.002396,-0.003250,0.249979,0,0);}
.m8e_c00247{transform:matrix(0.184519,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184519,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184519,-0.002030,0.002750,0.249985,0,0);}
.md_c00247{transform:matrix(0.185261,-0.004261,0.005748,0.249934,0,0);-ms-transform:matrix(0.185261,-0.004261,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185261,-0.004261,0.005748,0.249934,0,0);}
.m1c_c00247{transform:matrix(0.185936,-0.003533,0.004749,0.249955,0,0);-ms-transform:matrix(0.185936,-0.003533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185936,-0.003533,0.004749,0.249955,0,0);}
.m73_c00247{transform:matrix(0.186186,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186186,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186186,-0.003538,0.004749,0.249955,0,0);}
.m13_c00247{transform:matrix(0.186206,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186206,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186206,-0.003538,0.004749,0.249955,0,0);}
.m9a_c00247{transform:matrix(0.186289,0.002422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186289,0.002422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186289,0.002422,-0.003250,0.249979,0,0);}
.md1_c00247{transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);-ms-transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);}
.me2_c00247{transform:matrix(0.186699,-0.003921,0.005249,0.249945,0,0);-ms-transform:matrix(0.186699,-0.003921,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186699,-0.003921,0.005249,0.249945,0,0);}
.m1_c00247{transform:matrix(0.186911,-0.004299,0.005748,0.249934,0,0);-ms-transform:matrix(0.186911,-0.004299,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186911,-0.004299,0.005748,0.249934,0,0);}
.m3c_c00247{transform:matrix(0.186939,-0.003926,0.005249,0.249945,0,0);-ms-transform:matrix(0.186939,-0.003926,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186939,-0.003926,0.005249,0.249945,0,0);}
.m49_c00247{transform:matrix(0.186991,-0.002992,0.003999,0.249968,0,0);-ms-transform:matrix(0.186991,-0.002992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186991,-0.002992,0.003999,0.249968,0,0);}
.m35_c00247{transform:matrix(0.187194,-0.003931,0.005249,0.249945,0,0);-ms-transform:matrix(0.187194,-0.003931,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187194,-0.003931,0.005249,0.249945,0,0);}
.mda_c00247{transform:matrix(0.188243,-0.003953,0.005249,0.249945,0,0);-ms-transform:matrix(0.188243,-0.003953,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188243,-0.003953,0.005249,0.249945,0,0);}
.m8a_c00247{transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);-ms-transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188318,-0.003201,0.004249,0.249964,0,0);}
.me1_c00247{transform:matrix(0.188588,-0.003960,0.005249,0.249945,0,0);-ms-transform:matrix(0.188588,-0.003960,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188588,-0.003960,0.005249,0.249945,0,0);}
.m23_c00247{transform:matrix(0.188811,-0.003587,0.004749,0.249955,0,0);-ms-transform:matrix(0.188811,-0.003587,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188811,-0.003587,0.004749,0.249955,0,0);}
.mee_c00247{transform:matrix(0.188889,-0.004156,0.005499,0.249940,0,0);-ms-transform:matrix(0.188889,-0.004156,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188889,-0.004156,0.005499,0.249940,0,0);}
.mdc_c00247{transform:matrix(0.188973,-0.003968,0.005249,0.249945,0,0);-ms-transform:matrix(0.188973,-0.003968,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188973,-0.003968,0.005249,0.249945,0,0);}
.m74_c00247{transform:matrix(0.189691,-0.003604,0.004749,0.249955,0,0);-ms-transform:matrix(0.189691,-0.003604,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189691,-0.003604,0.004749,0.249955,0,0);}
.m94_c00247{transform:matrix(0.190543,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190543,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190543,-0.002096,0.002750,0.249985,0,0);}
.m10_c00247{transform:matrix(0.191054,-0.004394,0.005748,0.249934,0,0);-ms-transform:matrix(0.191054,-0.004394,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191054,-0.004394,0.005748,0.249934,0,0);}
.mb8_c00247{transform:matrix(0.191118,-0.004013,0.005249,0.249945,0,0);-ms-transform:matrix(0.191118,-0.004013,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191118,-0.004013,0.005249,0.249945,0,0);}
.mca_c00247{transform:matrix(0.191493,-0.004021,0.005249,0.249945,0,0);-ms-transform:matrix(0.191493,-0.004021,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191493,-0.004021,0.005249,0.249945,0,0);}
.me0_c00247{transform:matrix(0.191623,-0.004024,0.005249,0.249945,0,0);-ms-transform:matrix(0.191623,-0.004024,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191623,-0.004024,0.005249,0.249945,0,0);}
.m15_c00247{transform:matrix(0.192205,-0.003652,0.004749,0.249955,0,0);-ms-transform:matrix(0.192205,-0.003652,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192205,-0.003652,0.004749,0.249955,0,0);}
.m7e_c00247{transform:matrix(0.192360,-0.003655,0.004749,0.249955,0,0);-ms-transform:matrix(0.192360,-0.003655,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192360,-0.003655,0.004749,0.249955,0,0);}
.m8_c00247{transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);-ms-transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);}
.ma_c00247{transform:matrix(0.192474,-0.004427,0.005748,0.249934,0,0);-ms-transform:matrix(0.192474,-0.004427,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192474,-0.004427,0.005748,0.249934,0,0);}
.m9_c00247{transform:matrix(0.192594,-0.004430,0.005748,0.249934,0,0);-ms-transform:matrix(0.192594,-0.004430,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192594,-0.004430,0.005748,0.249934,0,0);}
.m70_c00247{transform:matrix(0.192670,-0.003661,0.004749,0.249955,0,0);-ms-transform:matrix(0.192670,-0.003661,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192670,-0.003661,0.004749,0.249955,0,0);}
.m8c_c00247{transform:matrix(0.193167,-0.003284,0.004249,0.249964,0,0);-ms-transform:matrix(0.193167,-0.003284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193167,-0.003284,0.004249,0.249964,0,0);}
.m43_c00247{transform:matrix(0.193792,-0.004070,0.005249,0.249945,0,0);-ms-transform:matrix(0.193792,-0.004070,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193792,-0.004070,0.005249,0.249945,0,0);}
.m1d_c00247{transform:matrix(0.194275,-0.003691,0.004749,0.249955,0,0);-ms-transform:matrix(0.194275,-0.003691,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194275,-0.003691,0.004749,0.249955,0,0);}
.mb9_c00247{transform:matrix(0.194617,-0.004087,0.005249,0.249945,0,0);-ms-transform:matrix(0.194617,-0.004087,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194617,-0.004087,0.005249,0.249945,0,0);}
.mc3_c00247{transform:matrix(0.194772,-0.004090,0.005249,0.249945,0,0);-ms-transform:matrix(0.194772,-0.004090,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194772,-0.004090,0.005249,0.249945,0,0);}
.m38_c00247{transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);-ms-transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);}
.md8_c00247{transform:matrix(0.195082,-0.004097,0.005249,0.249945,0,0);-ms-transform:matrix(0.195082,-0.004097,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195082,-0.004097,0.005249,0.249945,0,0);}
.mf1_c00247{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.mcc_c00247{transform:matrix(0.195272,-0.004101,0.005249,0.249945,0,0);-ms-transform:matrix(0.195272,-0.004101,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195272,-0.004101,0.005249,0.249945,0,0);}
.m84_c00247{transform:matrix(0.195280,-0.003710,0.004749,0.249955,0,0);-ms-transform:matrix(0.195280,-0.003710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195280,-0.003710,0.004749,0.249955,0,0);}
.m20_c00247{transform:matrix(0.195720,-0.003719,0.004749,0.249955,0,0);-ms-transform:matrix(0.195720,-0.003719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195720,-0.003719,0.004749,0.249955,0,0);}
.m53_c00247{transform:matrix(0.195730,-0.003132,0.003999,0.249968,0,0);-ms-transform:matrix(0.195730,-0.003132,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195730,-0.003132,0.003999,0.249968,0,0);}
.m34_c00247{transform:matrix(0.195747,-0.004111,0.005249,0.249945,0,0);-ms-transform:matrix(0.195747,-0.004111,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195747,-0.004111,0.005249,0.249945,0,0);}
.m9c_c00247{transform:matrix(0.195773,0.002545,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195773,0.002545,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195773,0.002545,-0.003250,0.249979,0,0);}
.mcb_c00247{transform:matrix(0.195802,-0.004112,0.005249,0.249945,0,0);-ms-transform:matrix(0.195802,-0.004112,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195802,-0.004112,0.005249,0.249945,0,0);}
.m1f_c00247{transform:matrix(0.196510,-0.003734,0.004749,0.249955,0,0);-ms-transform:matrix(0.196510,-0.003734,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196510,-0.003734,0.004749,0.249955,0,0);}
.m2e_c00247{transform:matrix(0.196847,-0.004134,0.005249,0.249945,0,0);-ms-transform:matrix(0.196847,-0.004134,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196847,-0.004134,0.005249,0.249945,0,0);}
.m30_c00247{transform:matrix(0.197117,-0.004139,0.005249,0.249945,0,0);-ms-transform:matrix(0.197117,-0.004139,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197117,-0.004139,0.005249,0.249945,0,0);}
.ma8_c00247{transform:matrix(0.197182,-0.004141,0.005249,0.249945,0,0);-ms-transform:matrix(0.197182,-0.004141,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197182,-0.004141,0.005249,0.249945,0,0);}
.m85_c00247{transform:matrix(0.197409,-0.003751,0.004749,0.249955,0,0);-ms-transform:matrix(0.197409,-0.003751,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197409,-0.003751,0.004749,0.249955,0,0);}
.m46_c00247{transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-ms-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);}
.m89_c00247{transform:matrix(0.198101,-0.003368,0.004249,0.249964,0,0);-ms-transform:matrix(0.198101,-0.003368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198101,-0.003368,0.004249,0.249964,0,0);}
.mbf_c00247{transform:matrix(0.198631,-0.004171,0.005249,0.249945,0,0);-ms-transform:matrix(0.198631,-0.004171,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198631,-0.004171,0.005249,0.249945,0,0);}
.me9_c00247{transform:matrix(0.198921,-0.004177,0.005249,0.249945,0,0);-ms-transform:matrix(0.198921,-0.004177,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198921,-0.004177,0.005249,0.249945,0,0);}
.m9b_c00247{transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);}
.m92_c00247{transform:matrix(0.199503,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199503,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199503,-0.002195,0.002750,0.249985,0,0);}
.m5b_c00247{transform:matrix(0.199804,-0.003197,0.003999,0.249968,0,0);-ms-transform:matrix(0.199804,-0.003197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199804,-0.003197,0.003999,0.249968,0,0);}
.m6c_c00247{transform:matrix(0.199847,-0.004397,0.005499,0.249940,0,0);-ms-transform:matrix(0.199847,-0.004397,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199847,-0.004397,0.005499,0.249940,0,0);}
.m5d_c00247{transform:matrix(0.200552,-0.004613,0.005748,0.249934,0,0);-ms-transform:matrix(0.200552,-0.004613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200552,-0.004613,0.005748,0.249934,0,0);}
.m17_c00247{transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);-ms-transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200594,-0.003811,0.004749,0.249955,0,0);}
.ma9_c00247{transform:matrix(0.200996,-0.004221,0.005249,0.249945,0,0);-ms-transform:matrix(0.200996,-0.004221,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200996,-0.004221,0.005249,0.249945,0,0);}
.med_c00247{transform:matrix(0.201656,-0.004436,0.005499,0.249940,0,0);-ms-transform:matrix(0.201656,-0.004436,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201656,-0.004436,0.005499,0.249940,0,0);}
.m65_c00247{transform:matrix(0.202036,-0.004445,0.005499,0.249940,0,0);-ms-transform:matrix(0.202036,-0.004445,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202036,-0.004445,0.005499,0.249940,0,0);}
.mde_c00247{transform:matrix(0.202350,-0.004249,0.005249,0.249945,0,0);-ms-transform:matrix(0.202350,-0.004249,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202350,-0.004249,0.005249,0.249945,0,0);}
.md0_c00247{transform:matrix(0.202995,-0.004263,0.005249,0.249945,0,0);-ms-transform:matrix(0.202995,-0.004263,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202995,-0.004263,0.005249,0.249945,0,0);}
.m9d_c00247{transform:matrix(0.203058,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203058,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203058,0.002640,-0.003250,0.249979,0,0);}
.m7c_c00247{transform:matrix(0.203293,-0.003863,0.004749,0.249955,0,0);-ms-transform:matrix(0.203293,-0.003863,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203293,-0.003863,0.004749,0.249955,0,0);}
.m63_c00247{transform:matrix(0.203606,-0.004683,0.005748,0.249934,0,0);-ms-transform:matrix(0.203606,-0.004683,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203606,-0.004683,0.005748,0.249934,0,0);}
.m6d_c00247{transform:matrix(0.204391,-0.004497,0.005499,0.249940,0,0);-ms-transform:matrix(0.204391,-0.004497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204391,-0.004497,0.005499,0.249940,0,0);}
.m9f_c00247{transform:matrix(0.206050,-0.002060,0.002500,0.249988,0,0);-ms-transform:matrix(0.206050,-0.002060,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206050,-0.002060,0.002500,0.249988,0,0);}
.mcf_c00247{transform:matrix(0.206484,-0.004336,0.005249,0.249945,0,0);-ms-transform:matrix(0.206484,-0.004336,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206484,-0.004336,0.005249,0.249945,0,0);}
.m93_c00247{transform:matrix(0.206618,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206618,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206618,-0.002273,0.002750,0.249985,0,0);}
.meb_c00247{transform:matrix(0.206770,-0.004549,0.005499,0.249940,0,0);-ms-transform:matrix(0.206770,-0.004549,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206770,-0.004549,0.005499,0.249940,0,0);}
.mea_c00247{transform:matrix(0.206930,-0.004552,0.005499,0.249940,0,0);-ms-transform:matrix(0.206930,-0.004552,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206930,-0.004552,0.005499,0.249940,0,0);}
.me5_c00247{transform:matrix(0.208354,-0.004375,0.005249,0.249945,0,0);-ms-transform:matrix(0.208354,-0.004375,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208354,-0.004375,0.005249,0.249945,0,0);}
.m66_c00247{transform:matrix(0.209334,-0.004605,0.005499,0.249940,0,0);-ms-transform:matrix(0.209334,-0.004605,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209334,-0.004605,0.005499,0.249940,0,0);}
.mac_c00247{transform:matrix(0.209759,-0.004405,0.005249,0.249945,0,0);-ms-transform:matrix(0.209759,-0.004405,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209759,-0.004405,0.005249,0.249945,0,0);}
.me6_c00247{transform:matrix(0.209814,-0.004406,0.005249,0.249945,0,0);-ms-transform:matrix(0.209814,-0.004406,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209814,-0.004406,0.005249,0.249945,0,0);}
.ma1_c00247{transform:matrix(0.209940,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209940,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209940,-0.002099,0.002500,0.249988,0,0);}
.m16_c00247{transform:matrix(0.210422,-0.003998,0.004749,0.249955,0,0);-ms-transform:matrix(0.210422,-0.003998,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210422,-0.003998,0.004749,0.249955,0,0);}
.m29_c00247{transform:matrix(0.210469,-0.004420,0.005249,0.249945,0,0);-ms-transform:matrix(0.210469,-0.004420,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210469,-0.004420,0.005249,0.249945,0,0);}
.m44_c00247{transform:matrix(0.210524,-0.004421,0.005249,0.249945,0,0);-ms-transform:matrix(0.210524,-0.004421,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210524,-0.004421,0.005249,0.249945,0,0);}
.m42_c00247{transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);-ms-transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);}
.me8_c00247{transform:matrix(0.211153,-0.004434,0.005249,0.249945,0,0);-ms-transform:matrix(0.211153,-0.004434,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211153,-0.004434,0.005249,0.249945,0,0);}
.m2d_c00247{transform:matrix(0.211248,-0.004436,0.005249,0.249945,0,0);-ms-transform:matrix(0.211248,-0.004436,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211248,-0.004436,0.005249,0.249945,0,0);}
.m12_c00247{transform:matrix(0.212192,-0.004032,0.004749,0.249955,0,0);-ms-transform:matrix(0.212192,-0.004032,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212192,-0.004032,0.004749,0.249955,0,0);}
.m5_c00247{transform:matrix(0.213379,-0.004908,0.005748,0.249934,0,0);-ms-transform:matrix(0.213379,-0.004908,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213379,-0.004908,0.005748,0.249934,0,0);}
.m79_c00247{transform:matrix(0.213791,-0.004062,0.004749,0.249955,0,0);-ms-transform:matrix(0.213791,-0.004062,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213791,-0.004062,0.004749,0.249955,0,0);}
.m3_c00247{transform:matrix(0.213993,-0.004922,0.005748,0.249934,0,0);-ms-transform:matrix(0.213993,-0.004922,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213993,-0.004922,0.005748,0.249934,0,0);}
.m5f_c00247{transform:matrix(0.214318,-0.004929,0.005748,0.249934,0,0);-ms-transform:matrix(0.214318,-0.004929,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214318,-0.004929,0.005748,0.249934,0,0);}
.m6e_c00247{transform:matrix(0.214778,-0.004725,0.005499,0.249940,0,0);-ms-transform:matrix(0.214778,-0.004725,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214778,-0.004725,0.005499,0.249940,0,0);}
.ma7_c00247{transform:matrix(0.215018,-0.004515,0.005249,0.249945,0,0);-ms-transform:matrix(0.215018,-0.004515,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215018,-0.004515,0.005249,0.249945,0,0);}
.mbe_c00247{transform:matrix(0.216277,-0.004542,0.005249,0.249945,0,0);-ms-transform:matrix(0.216277,-0.004542,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216277,-0.004542,0.005249,0.249945,0,0);}
.m4e_c00247{transform:matrix(0.216397,-0.003462,0.003999,0.249968,0,0);-ms-transform:matrix(0.216397,-0.003462,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216397,-0.003462,0.003999,0.249968,0,0);}
.mef_c00247{transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);-ms-transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216463,-0.004762,0.005499,0.249940,0,0);}
.m50_c00247{transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);}
.m77_c00247{transform:matrix(0.216796,-0.004119,0.004749,0.249955,0,0);-ms-transform:matrix(0.216796,-0.004119,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216796,-0.004119,0.004749,0.249955,0,0);}
.m99_c00247{transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);}
.m5c_c00247{transform:matrix(0.217812,-0.005010,0.005748,0.249934,0,0);-ms-transform:matrix(0.217812,-0.005010,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217812,-0.005010,0.005748,0.249934,0,0);}
.md7_c00247{transform:matrix(0.217822,-0.004574,0.005249,0.249945,0,0);-ms-transform:matrix(0.217822,-0.004574,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217822,-0.004574,0.005249,0.249945,0,0);}
.ma2_c00247{transform:matrix(0.218459,-0.002185,0.002500,0.249988,0,0);-ms-transform:matrix(0.218459,-0.002185,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218459,-0.002185,0.002500,0.249988,0,0);}
.m6a_c00247{transform:matrix(0.218502,-0.004807,0.005499,0.249940,0,0);-ms-transform:matrix(0.218502,-0.004807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218502,-0.004807,0.005499,0.249940,0,0);}
.m72_c00247{transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);-ms-transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);}
.ma0_c00247{transform:matrix(0.218544,-0.002185,0.002500,0.249988,0,0);-ms-transform:matrix(0.218544,-0.002185,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218544,-0.002185,0.002500,0.249988,0,0);}
.m86_c00247{transform:matrix(0.218853,-0.003721,0.004249,0.249964,0,0);-ms-transform:matrix(0.218853,-0.003721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218853,-0.003721,0.004249,0.249964,0,0);}
.m68_c00247{transform:matrix(0.218942,-0.004817,0.005499,0.249940,0,0);-ms-transform:matrix(0.218942,-0.004817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218942,-0.004817,0.005499,0.249940,0,0);}
.m8d_c00247{transform:matrix(0.219272,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219272,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219272,-0.002412,0.002750,0.249985,0,0);}
.m31_c00247{transform:matrix(0.219657,-0.004613,0.005249,0.249945,0,0);-ms-transform:matrix(0.219657,-0.004613,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219657,-0.004613,0.005249,0.249945,0,0);}
.m62_c00247{transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);-ms-transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);}
.m90_c00247{transform:matrix(0.220847,-0.002429,0.002750,0.249985,0,0);-ms-transform:matrix(0.220847,-0.002429,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220847,-0.002429,0.002750,0.249985,0,0);}
.m6_c00247{transform:matrix(0.221671,-0.005098,0.005748,0.249934,0,0);-ms-transform:matrix(0.221671,-0.005098,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221671,-0.005098,0.005748,0.249934,0,0);}
.m5e_c00247{transform:matrix(0.222216,-0.005111,0.005748,0.249934,0,0);-ms-transform:matrix(0.222216,-0.005111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222216,-0.005111,0.005748,0.249934,0,0);}
.ma4_c00247{transform:matrix(0.222964,-0.002230,0.002500,0.249988,0,0);-ms-transform:matrix(0.222964,-0.002230,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222964,-0.002230,0.002500,0.249988,0,0);}
.m6b_c00247{transform:matrix(0.223606,-0.004919,0.005499,0.249940,0,0);-ms-transform:matrix(0.223606,-0.004919,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223606,-0.004919,0.005499,0.249940,0,0);}
.mdf_c00247{transform:matrix(0.224820,-0.004721,0.005249,0.249945,0,0);-ms-transform:matrix(0.224820,-0.004721,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224820,-0.004721,0.005249,0.249945,0,0);}
.md3_c00247{transform:matrix(0.224970,-0.004724,0.005249,0.249945,0,0);-ms-transform:matrix(0.224970,-0.004724,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224970,-0.004724,0.005249,0.249945,0,0);}
.m45_c00247{transform:matrix(0.225245,-0.004730,0.005249,0.249945,0,0);-ms-transform:matrix(0.225245,-0.004730,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225245,-0.004730,0.005249,0.249945,0,0);}
.md4_c00247{transform:matrix(0.225845,-0.004743,0.005249,0.249945,0,0);-ms-transform:matrix(0.225845,-0.004743,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225845,-0.004743,0.005249,0.249945,0,0);}
.m64_c00247{transform:matrix(0.226040,-0.005199,0.005748,0.249934,0,0);-ms-transform:matrix(0.226040,-0.005199,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226040,-0.005199,0.005748,0.249934,0,0);}
.mab_c00247{transform:matrix(0.226970,-0.004766,0.005249,0.249945,0,0);-ms-transform:matrix(0.226970,-0.004766,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226970,-0.004766,0.005249,0.249945,0,0);}
.m3d_c00247{transform:matrix(0.227605,-0.004780,0.005249,0.249945,0,0);-ms-transform:matrix(0.227605,-0.004780,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227605,-0.004780,0.005249,0.249945,0,0);}
.m3f_c00247{transform:matrix(0.230599,-0.004843,0.005249,0.249945,0,0);-ms-transform:matrix(0.230599,-0.004843,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230599,-0.004843,0.005249,0.249945,0,0);}
.mc9_c00247{transform:matrix(0.231134,-0.004854,0.005249,0.249945,0,0);-ms-transform:matrix(0.231134,-0.004854,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231134,-0.004854,0.005249,0.249945,0,0);}
.mdd_c00247{transform:matrix(0.232484,-0.004882,0.005249,0.249945,0,0);-ms-transform:matrix(0.232484,-0.004882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232484,-0.004882,0.005249,0.249945,0,0);}
.m95_c00247{transform:matrix(0.232701,-0.002560,0.002750,0.249985,0,0);-ms-transform:matrix(0.232701,-0.002560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232701,-0.002560,0.002750,0.249985,0,0);}
.m8f_c00247{transform:matrix(0.233676,-0.002570,0.002750,0.249985,0,0);-ms-transform:matrix(0.233676,-0.002570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233676,-0.002570,0.002750,0.249985,0,0);}
.m60_c00247{transform:matrix(0.234033,-0.005383,0.005748,0.249934,0,0);-ms-transform:matrix(0.234033,-0.005383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234033,-0.005383,0.005748,0.249934,0,0);}
.m69_c00247{transform:matrix(0.238947,-0.005257,0.005499,0.249940,0,0);-ms-transform:matrix(0.238947,-0.005257,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238947,-0.005257,0.005499,0.249940,0,0);}
.m3b_c00247{transform:matrix(0.240067,-0.005041,0.005249,0.249945,0,0);-ms-transform:matrix(0.240067,-0.005041,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240067,-0.005041,0.005249,0.249945,0,0);}
.m2f_c00247{transform:matrix(0.240717,-0.005055,0.005249,0.249945,0,0);-ms-transform:matrix(0.240717,-0.005055,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240717,-0.005055,0.005249,0.249945,0,0);}
.m2c_c00247{transform:matrix(0.240922,-0.005059,0.005249,0.249945,0,0);-ms-transform:matrix(0.240922,-0.005059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240922,-0.005059,0.005249,0.249945,0,0);}
.mb6_c00247{transform:matrix(0.241672,-0.005075,0.005249,0.249945,0,0);-ms-transform:matrix(0.241672,-0.005075,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241672,-0.005075,0.005249,0.249945,0,0);}
.m91_c00247{transform:matrix(0.242495,-0.002667,0.002750,0.249985,0,0);-ms-transform:matrix(0.242495,-0.002667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242495,-0.002667,0.002750,0.249985,0,0);}
.m7_c00247{transform:matrix(0.244340,-0.005620,0.005748,0.249934,0,0);-ms-transform:matrix(0.244340,-0.005620,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244340,-0.005620,0.005748,0.249934,0,0);}
.m9e_c00247{transform:matrix(0.246053,-0.002461,0.002500,0.249988,0,0);-ms-transform:matrix(0.246053,-0.002461,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246053,-0.002461,0.002500,0.249988,0,0);}
.m7f_c00247{transform:matrix(0.247890,-0.004710,0.004749,0.249955,0,0);-ms-transform:matrix(0.247890,-0.004710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247890,-0.004710,0.004749,0.249955,0,0);}
.m6f_c00247{transform:matrix(0.248305,-0.005463,0.005499,0.249940,0,0);-ms-transform:matrix(0.248305,-0.005463,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248305,-0.005463,0.005499,0.249940,0,0);}
.me7_c00247{transform:matrix(0.248590,-0.005220,0.005249,0.249945,0,0);-ms-transform:matrix(0.248590,-0.005220,0.005249,0.249945,0,0);-webkit-transform:matrix(0.248590,-0.005220,0.005249,0.249945,0,0);}
.m83_c00247{transform:matrix(0.252020,-0.004788,0.004749,0.249955,0,0);-ms-transform:matrix(0.252020,-0.004788,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252020,-0.004788,0.004749,0.249955,0,0);}
.m3e_c00247{transform:matrix(0.254559,-0.005346,0.005249,0.249945,0,0);-ms-transform:matrix(0.254559,-0.005346,0.005249,0.249945,0,0);-webkit-transform:matrix(0.254559,-0.005346,0.005249,0.249945,0,0);}
.m39_c00247{transform:matrix(0.257398,-0.005405,0.005249,0.249945,0,0);-ms-transform:matrix(0.257398,-0.005405,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257398,-0.005405,0.005249,0.249945,0,0);}
.mb7_c00247{transform:matrix(0.258993,-0.005439,0.005249,0.249945,0,0);-ms-transform:matrix(0.258993,-0.005439,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258993,-0.005439,0.005249,0.249945,0,0);}
.m2_c00247{transform:matrix(0.262766,-0.006044,0.005748,0.249934,0,0);-ms-transform:matrix(0.262766,-0.006044,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262766,-0.006044,0.005748,0.249934,0,0);}
.m3a_c00247{transform:matrix(0.267631,-0.005620,0.005249,0.249945,0,0);-ms-transform:matrix(0.267631,-0.005620,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267631,-0.005620,0.005249,0.249945,0,0);}
.m67_c00247{transform:matrix(0.268510,-0.005907,0.005499,0.249940,0,0);-ms-transform:matrix(0.268510,-0.005907,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268510,-0.005907,0.005499,0.249940,0,0);}
.m27_c00247{transform:matrix(0.272381,-0.005175,0.004749,0.249955,0,0);-ms-transform:matrix(0.272381,-0.005175,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272381,-0.005175,0.004749,0.249955,0,0);}
.m82_c00247{transform:matrix(0.276680,-0.005257,0.004749,0.249955,0,0);-ms-transform:matrix(0.276680,-0.005257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.276680,-0.005257,0.004749,0.249955,0,0);}
.ma6_c00247{transform:matrix(0.277461,-0.002775,0.002500,0.249988,0,0);-ms-transform:matrix(0.277461,-0.002775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277461,-0.002775,0.002500,0.249988,0,0);}
.md5_c00247{transform:matrix(0.277924,-0.005836,0.005249,0.249945,0,0);-ms-transform:matrix(0.277924,-0.005836,0.005249,0.249945,0,0);-webkit-transform:matrix(0.277924,-0.005836,0.005249,0.249945,0,0);}
.m76_c00247{transform:matrix(0.311744,-0.005923,0.004749,0.249955,0,0);-ms-transform:matrix(0.311744,-0.005923,0.004749,0.249955,0,0);-webkit-transform:matrix(0.311744,-0.005923,0.004749,0.249955,0,0);}
.m98_c00247{transform:matrix(0.316833,0.004119,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316833,0.004119,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316833,0.004119,-0.003250,0.249979,0,0);}
.m40_c00247{transform:matrix(0.316840,-0.006654,0.005249,0.249945,0,0);-ms-transform:matrix(0.316840,-0.006654,0.005249,0.249945,0,0);-webkit-transform:matrix(0.316840,-0.006654,0.005249,0.249945,0,0);}
.mf3_c00247{transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.374101,-0.008604,0.005748,0.249934,0,0);-ms-transform:matrix(0.374101,-0.008604,0.005748,0.249934,0,0);-webkit-transform:matrix(0.374101,-0.008604,0.005748,0.249934,0,0);}
.mf0_c00247{transform:matrix(0.524738,-0.011544,0.005499,0.249940,0,0);-ms-transform:matrix(0.524738,-0.011544,0.005499,0.249940,0,0);-webkit-transform:matrix(0.524738,-0.011544,0.005499,0.249940,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:0.000000px;}
.fc0_c00247{color:transparent;}
.fs1d_c00247{font-size:30.450000px;}
.fs13_c00247{font-size:54.603303px;}
.fs8_c00247{font-size:55.662269px;}
.fse_c00247{font-size:56.713720px;}
.fs15_c00247{font-size:57.752887px;}
.fs6_c00247{font-size:58.812964px;}
.fsf_c00247{font-size:58.814228px;}
.fs1_c00247{font-size:58.815551px;}
.fs19_c00247{font-size:59.863195px;}
.fs1a_c00247{font-size:59.864482px;}
.fs9_c00247{font-size:61.963658px;}
.fsd_c00247{font-size:61.966384px;}
.fs14_c00247{font-size:64.055412px;}
.fs11_c00247{font-size:64.061560px;}
.fs16_c00247{font-size:64.064121px;}
.fs12_c00247{font-size:65.109406px;}
.fs3_c00247{font-size:65.111749px;}
.fsb_c00247{font-size:66.158467px;}
.fs18_c00247{font-size:66.164584px;}
.fsc_c00247{font-size:67.208601px;}
.fs10_c00247{font-size:67.212129px;}
.fs7_c00247{font-size:68.265047px;}
.fsa_c00247{font-size:69.308870px;}
.fs5_c00247{font-size:69.312508px;}
.fs4_c00247{font-size:70.362697px;}
.fs2_c00247{font-size:70.368605px;}
.fs17_c00247{font-size:73.516205px;}
.fs0_c00247{font-size:74.550000px;}
.fs1b_c00247{font-size:92.400000px;}
.fs1c_c00247{font-size:95.550000px;}
.y0_c00247{bottom:0.000000px;}
.yf4_c00247{bottom:6.867000px;}
.yeb_c00247{bottom:16.746000px;}
.yec_c00247{bottom:17.945583px;}
.yed_c00247{bottom:18.426855px;}
.yee_c00247{bottom:18.896775px;}
.yef_c00247{bottom:20.096622px;}
.yf0_c00247{bottom:20.696430px;}
.yf1_c00247{bottom:22.242018px;}
.ye6_c00247{bottom:34.260407px;}
.ye7_c00247{bottom:35.240750px;}
.ye8_c00247{bottom:35.486040px;}
.ye9_c00247{bottom:36.807213px;}
.yea_c00247{bottom:38.730099px;}
.ydd_c00247{bottom:51.273344px;}
.yde_c00247{bottom:52.171557px;}
.ydf_c00247{bottom:53.203535px;}
.ye0_c00247{bottom:54.094944px;}
.ye1_c00247{bottom:54.723582px;}
.ye2_c00247{bottom:55.164804px;}
.ye3_c00247{bottom:55.545464px;}
.ye4_c00247{bottom:56.372637px;}
.ye5_c00247{bottom:57.512832px;}
.yf3_c00247{bottom:60.756000px;}
.yd7_c00247{bottom:68.288786px;}
.yd8_c00247{bottom:70.153773px;}
.yd9_c00247{bottom:70.493511px;}
.yda_c00247{bottom:72.415233px;}
.ydb_c00247{bottom:73.840755px;}
.ydc_c00247{bottom:74.524282px;}
.yf2_c00247{bottom:76.680000px;}
.yd1_c00247{bottom:85.302255px;}
.yd2_c00247{bottom:86.639550px;}
.yd3_c00247{bottom:87.008916px;}
.yd4_c00247{bottom:87.358614px;}
.yd5_c00247{bottom:88.701926px;}
.yd6_c00247{bottom:90.282227px;}
.ycb_c00247{bottom:102.320632px;}
.ycc_c00247{bottom:103.806198px;}
.ycd_c00247{bottom:105.262757px;}
.yce_c00247{bottom:107.223581px;}
.ycf_c00247{bottom:107.702367px;}
.yd0_c00247{bottom:108.368307px;}
.yc2_c00247{bottom:119.871486px;}
.yc3_c00247{bottom:121.080109px;}
.yc4_c00247{bottom:122.377657px;}
.yc5_c00247{bottom:122.701257px;}
.yc6_c00247{bottom:123.464281px;}
.yc7_c00247{bottom:123.879294px;}
.yc8_c00247{bottom:124.831287px;}
.yc9_c00247{bottom:125.451805px;}
.yca_c00247{bottom:125.833523px;}
.yb9_c00247{bottom:137.429110px;}
.yba_c00247{bottom:139.216963px;}
.ybb_c00247{bottom:139.933622px;}
.ybc_c00247{bottom:140.440155px;}
.ybd_c00247{bottom:140.959245px;}
.ybe_c00247{bottom:142.125840px;}
.ybf_c00247{bottom:143.533350px;}
.yc0_c00247{bottom:143.872330px;}
.yc1_c00247{bottom:144.502818px;}
.yb0_c00247{bottom:154.981414px;}
.yb1_c00247{bottom:156.117557px;}
.yb2_c00247{bottom:156.682414px;}
.yb3_c00247{bottom:157.128960px;}
.yb4_c00247{bottom:158.051697px;}
.yb5_c00247{bottom:158.421054px;}
.yb6_c00247{bottom:158.824101px;}
.yb7_c00247{bottom:159.825117px;}
.yb8_c00247{bottom:160.142742px;}
.ya8_c00247{bottom:172.536000px;}
.ya9_c00247{bottom:173.477724px;}
.yaa_c00247{bottom:173.895068px;}
.yab_c00247{bottom:174.485567px;}
.yac_c00247{bottom:175.292061px;}
.yad_c00247{bottom:176.582269px;}
.yae_c00247{bottom:177.393363px;}
.yaf_c00247{bottom:177.906655px;}
.y9f_c00247{bottom:191.701500px;}
.ya0_c00247{bottom:192.443745px;}
.ya1_c00247{bottom:192.911145px;}
.ya2_c00247{bottom:193.264365px;}
.ya3_c00247{bottom:193.548360px;}
.ya4_c00247{bottom:193.750845px;}
.ya5_c00247{bottom:194.115360px;}
.ya6_c00247{bottom:194.379600px;}
.ya7_c00247{bottom:194.525910px;}
.y9e_c00247{bottom:204.835557px;}
.y9d_c00247{bottom:205.729983px;}
.y9c_c00247{bottom:206.017725px;}
.y9b_c00247{bottom:206.673998px;}
.y9a_c00247{bottom:207.038726px;}
.y99_c00247{bottom:207.350550px;}
.y98_c00247{bottom:207.891636px;}
.y97_c00247{bottom:208.171500px;}
.y8e_c00247{bottom:225.991500px;}
.y8f_c00247{bottom:226.384035px;}
.y90_c00247{bottom:226.636007px;}
.y91_c00247{bottom:226.939524px;}
.y92_c00247{bottom:227.449836px;}
.y93_c00247{bottom:227.794950px;}
.y94_c00247{bottom:228.302292px;}
.y95_c00247{bottom:228.602840px;}
.y96_c00247{bottom:228.789834px;}
.y87_c00247{bottom:242.193000px;}
.y88_c00247{bottom:243.128060px;}
.y89_c00247{bottom:243.648209px;}
.y8a_c00247{bottom:244.676369px;}
.y8b_c00247{bottom:245.759762px;}
.y8c_c00247{bottom:246.154527px;}
.y8d_c00247{bottom:246.471977px;}
.y80_c00247{bottom:258.929073px;}
.y81_c00247{bottom:259.632624px;}
.y82_c00247{bottom:260.309955px;}
.y83_c00247{bottom:260.669283px;}
.y84_c00247{bottom:261.408544px;}
.y85_c00247{bottom:261.751798px;}
.y86_c00247{bottom:263.307756px;}
.y78_c00247{bottom:275.941926px;}
.y79_c00247{bottom:277.324078px;}
.y7a_c00247{bottom:277.966864px;}
.y7b_c00247{bottom:279.192030px;}
.y7c_c00247{bottom:279.691584px;}
.y7d_c00247{bottom:280.898035px;}
.y7e_c00247{bottom:281.247328px;}
.y7f_c00247{bottom:282.361845px;}
.y71_c00247{bottom:292.414500px;}
.y72_c00247{bottom:293.536317px;}
.y73_c00247{bottom:294.066645px;}
.y74_c00247{bottom:295.275644px;}
.y75_c00247{bottom:295.990623px;}
.y76_c00247{bottom:297.170694px;}
.y77_c00247{bottom:297.504372px;}
.y69_c00247{bottom:309.961071px;}
.y6a_c00247{bottom:310.733733px;}
.y6b_c00247{bottom:311.387232px;}
.y6c_c00247{bottom:312.751155px;}
.y6d_c00247{bottom:313.458114px;}
.y6e_c00247{bottom:313.939386px;}
.y6f_c00247{bottom:314.565429px;}
.y70_c00247{bottom:315.057822px;}
.y66_c00247{bottom:326.436000px;}
.y67_c00247{bottom:326.958456px;}
.y68_c00247{bottom:332.739561px;}
.y5d_c00247{bottom:343.986000px;}
.y5e_c00247{bottom:344.968353px;}
.y5f_c00247{bottom:346.352666px;}
.y60_c00247{bottom:346.626837px;}
.y61_c00247{bottom:347.772824px;}
.y62_c00247{bottom:348.077459px;}
.y63_c00247{bottom:348.490217px;}
.y64_c00247{bottom:349.806530px;}
.y65_c00247{bottom:350.272142px;}
.y55_c00247{bottom:361.262196px;}
.y56_c00247{bottom:361.765500px;}
.y57_c00247{bottom:362.914176px;}
.y58_c00247{bottom:363.609684px;}
.y59_c00247{bottom:365.242416px;}
.y5a_c00247{bottom:365.652060px;}
.y5b_c00247{bottom:366.987288px;}
.y5c_c00247{bottom:367.427508px;}
.y4f_c00247{bottom:379.080828px;}
.y50_c00247{bottom:380.017560px;}
.y51_c00247{bottom:380.476728px;}
.y52_c00247{bottom:381.564324px;}
.y53_c00247{bottom:382.413792px;}
.y54_c00247{bottom:382.864464px;}
.y48_c00247{bottom:396.363000px;}
.y49_c00247{bottom:397.113552px;}
.y4a_c00247{bottom:397.417080px;}
.y4b_c00247{bottom:398.056296px;}
.y4c_c00247{bottom:398.652648px;}
.y4d_c00247{bottom:399.385992px;}
.y4e_c00247{bottom:399.927504px;}
.y41_c00247{bottom:413.341179px;}
.y42_c00247{bottom:413.911455px;}
.y43_c00247{bottom:414.321994px;}
.y44_c00247{bottom:415.524475px;}
.y45_c00247{bottom:418.001950px;}
.y46_c00247{bottom:418.438446px;}
.y47_c00247{bottom:419.352198px;}
.y3a_c00247{bottom:430.106085px;}
.y3b_c00247{bottom:431.337093px;}
.y3c_c00247{bottom:432.275283px;}
.y3d_c00247{bottom:433.301835px;}
.y3e_c00247{bottom:433.811709px;}
.y3f_c00247{bottom:435.138450px;}
.y40_c00247{bottom:435.382671px;}
.y33_c00247{bottom:447.387637px;}
.y34_c00247{bottom:447.733557px;}
.y35_c00247{bottom:448.559094px;}
.y36_c00247{bottom:449.431398px;}
.y37_c00247{bottom:450.721920px;}
.y38_c00247{bottom:451.195024px;}
.y39_c00247{bottom:452.228247px;}
.y29_c00247{bottom:464.133000px;}
.y2a_c00247{bottom:464.639646px;}
.y2b_c00247{bottom:465.046500px;}
.y2c_c00247{bottom:465.682957px;}
.y2d_c00247{bottom:466.548357px;}
.y2e_c00247{bottom:466.896778px;}
.y2f_c00247{bottom:467.633941px;}
.y30_c00247{bottom:468.178513px;}
.y31_c00247{bottom:469.287912px;}
.y32_c00247{bottom:469.788667px;}
.y22_c00247{bottom:481.678212px;}
.y23_c00247{bottom:482.769249px;}
.y24_c00247{bottom:483.181616px;}
.y25_c00247{bottom:484.797965px;}
.y26_c00247{bottom:485.437533px;}
.y27_c00247{bottom:485.817951px;}
.y28_c00247{bottom:486.859655px;}
.y1c_c00247{bottom:498.691413px;}
.y1d_c00247{bottom:499.173633px;}
.y1e_c00247{bottom:500.461520px;}
.y1f_c00247{bottom:501.507071px;}
.y20_c00247{bottom:502.143077px;}
.y21_c00247{bottom:503.396820px;}
.y13_c00247{bottom:515.704500px;}
.y14_c00247{bottom:516.233289px;}
.y15_c00247{bottom:516.623112px;}
.y16_c00247{bottom:518.075016px;}
.y17_c00247{bottom:518.465409px;}
.y18_c00247{bottom:520.081074px;}
.y19_c00247{bottom:520.291746px;}
.y1a_c00247{bottom:520.707304px;}
.y1b_c00247{bottom:521.540901px;}
.yb_c00247{bottom:532.169288px;}
.yc_c00247{bottom:533.644075px;}
.yd_c00247{bottom:534.751862px;}
.ye_c00247{bottom:535.045722px;}
.yf_c00247{bottom:536.244072px;}
.y10_c00247{bottom:536.857790px;}
.y11_c00247{bottom:537.690035px;}
.y12_c00247{bottom:538.478412px;}
.y2_c00247{bottom:549.456000px;}
.y3_c00247{bottom:549.847851px;}
.y4_c00247{bottom:551.821665px;}
.y5_c00247{bottom:552.084555px;}
.y6_c00247{bottom:552.341580px;}
.y7_c00247{bottom:552.977277px;}
.y8_c00247{bottom:554.437662px;}
.y9_c00247{bottom:554.648319px;}
.ya_c00247{bottom:555.455550px;}
.y1_c00247{bottom:565.650000px;}
.h1f_c00247{height:30.450000px;}
.h15_c00247{height:54.603303px;}
.ha_c00247{height:55.662269px;}
.h10_c00247{height:56.713720px;}
.h17_c00247{height:57.752887px;}
.h8_c00247{height:58.812964px;}
.h11_c00247{height:58.814228px;}
.h3_c00247{height:58.815551px;}
.h1b_c00247{height:59.863195px;}
.h1c_c00247{height:59.864482px;}
.hb_c00247{height:61.963658px;}
.hf_c00247{height:61.966384px;}
.h16_c00247{height:64.055412px;}
.h13_c00247{height:64.061560px;}
.h18_c00247{height:64.064121px;}
.h14_c00247{height:65.109406px;}
.h5_c00247{height:65.111749px;}
.hd_c00247{height:66.158467px;}
.h1a_c00247{height:66.164584px;}
.he_c00247{height:67.208601px;}
.h12_c00247{height:67.212129px;}
.h9_c00247{height:68.265047px;}
.hc_c00247{height:69.308870px;}
.h7_c00247{height:69.312508px;}
.h6_c00247{height:70.362697px;}
.h4_c00247{height:70.368605px;}
.h19_c00247{height:73.516205px;}
.h2_c00247{height:74.550000px;}
.h1d_c00247{height:92.400000px;}
.h1e_c00247{height:95.550000px;}
.h1_c00247{height:618.750000px;}
.h0_c00247{height:619.050000px;}
.w0_c00247{width:359.100000px;}
.w1_c00247{width:359.250000px;}
.x0_c00247{left:0.000000px;}
.x72_c00247{left:38.130325px;}
.x60_c00247{left:42.244500px;}
.x7a_c00247{left:43.455307px;}
.x12_c00247{left:44.770500px;}
.x53_c00247{left:46.418173px;}
.x2_c00247{left:47.541000px;}
.x36_c00247{left:59.341500px;}
.x3_c00247{left:64.578000px;}
.x2a_c00247{left:67.445304px;}
.x3f_c00247{left:68.897364px;}
.x23_c00247{left:71.001000px;}
.x13_c00247{left:72.601500px;}
.x5d_c00247{left:81.940500px;}
.x56_c00247{left:83.383278px;}
.x76_c00247{left:86.939007px;}
.x24_c00247{left:90.375000px;}
.x14_c00247{left:93.118500px;}
.x73_c00247{left:97.580848px;}
.x7b_c00247{left:99.631500px;}
.x3b_c00247{left:102.273948px;}
.x1e_c00247{left:104.088450px;}
.x37_c00247{left:106.251000px;}
.x30_c00247{left:108.523586px;}
.x65_c00247{left:110.895000px;}
.x54_c00247{left:112.213165px;}
.xb_c00247{left:114.508389px;}
.x2b_c00247{left:116.046399px;}
.x40_c00247{left:118.840272px;}
.x25_c00247{left:120.682500px;}
.x74_c00247{left:123.873828px;}
.x1f_c00247{left:125.791950px;}
.x3c_c00247{left:129.284016px;}
.x5a_c00247{left:132.526500px;}
.x4f_c00247{left:133.906500px;}
.x49_c00247{left:136.655418px;}
.x57_c00247{left:137.944278px;}
.x66_c00247{left:139.014000px;}
.x1a_c00247{left:140.385016px;}
.x68_c00247{left:141.476787px;}
.x55_c00247{left:142.805997px;}
.x6b_c00247{left:147.197879px;}
.x41_c00247{left:149.087388px;}
.x4_c00247{left:150.396000px;}
.x31_c00247{left:155.414562px;}
.x5_c00247{left:161.826000px;}
.x61_c00247{left:163.209000px;}
.xc_c00247{left:164.891562px;}
.x69_c00247{left:166.313862px;}
.x2c_c00247{left:167.374714px;}
.x15_c00247{left:169.534500px;}
.x6_c00247{left:173.001000px;}
.x77_c00247{left:174.384180px;}
.x58_c00247{left:176.852778px;}
.xd_c00247{left:178.255373px;}
.x1_c00247{left:179.550000px;}
.x70_c00247{left:181.200087px;}
.x6c_c00247{left:188.247945px;}
.x16_c00247{left:190.081500px;}
.x3d_c00247{left:193.226484px;}
.x1b_c00247{left:195.414016px;}
.x50_c00247{left:197.538000px;}
.x4a_c00247{left:198.651918px;}
.x7_c00247{left:200.640000px;}
.x38_c00247{left:202.444500px;}
.x32_c00247{left:206.727633px;}
.x20_c00247{left:210.862950px;}
.x26_c00247{left:213.586500px;}
.x6a_c00247{left:217.614107px;}
.x42_c00247{left:220.093944px;}
.x78_c00247{left:223.043172px;}
.x46_c00247{left:224.878500px;}
.x62_c00247{left:226.930500px;}
.x1c_c00247{left:228.888016px;}
.x4b_c00247{left:230.786418px;}
.xe_c00247{left:232.706615px;}
.x5f_c00247{left:233.874000px;}
.x51_c00247{left:235.168500px;}
.x43_c00247{left:237.913452px;}
.x27_c00247{left:239.518500px;}
.x2d_c00247{left:243.263077px;}
.x21_c00247{left:244.524450px;}
.x63_c00247{left:247.179000px;}
.x39_c00247{left:248.278500px;}
.x4c_c00247{left:252.662418px;}
.x5b_c00247{left:256.735500px;}
.xf_c00247{left:260.629770px;}
.x8_c00247{left:264.135000px;}
.x34_c00247{left:267.581113px;}
.x3e_c00247{left:269.702760px;}
.x2e_c00247{left:271.079908px;}
.x9_c00247{left:273.294000px;}
.x17_c00247{left:275.116500px;}
.x59_c00247{left:276.811278px;}
.x79_c00247{left:277.915006px;}
.x5c_c00247{left:279.957000px;}
.x4d_c00247{left:281.118918px;}
.x3a_c00247{left:282.123000px;}
.x5e_c00247{left:283.650000px;}
.x18_c00247{left:286.204500px;}
.x35_c00247{left:288.366613px;}
.x6d_c00247{left:291.244314px;}
.x28_c00247{left:292.347000px;}
.x1d_c00247{left:294.874516px;}
.x44_c00247{left:295.952448px;}
.x52_c00247{left:297.277500px;}
.x10_c00247{left:298.445633px;}
.x47_c00247{left:300.055500px;}
.x67_c00247{left:301.923000px;}
.x4e_c00247{left:303.500418px;}
.x6e_c00247{left:304.813680px;}
.x75_c00247{left:305.981862px;}
.xa_c00247{left:308.391000px;}
.x33_c00247{left:310.745807px;}
.x71_c00247{left:312.178587px;}
.x45_c00247{left:315.120312px;}
.x29_c00247{left:316.192500px;}
.x22_c00247{left:319.372950px;}
.x7c_c00247{left:322.110000px;}
.x64_c00247{left:324.685500px;}
.x6f_c00247{left:330.049069px;}
.x2f_c00247{left:331.857511px;}
.x48_c00247{left:333.250500px;}
.x11_c00247{left:334.288961px;}
.x7d_c00247{left:346.140000px;}
.x19_c00247{left:351.949500px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:0.000000pt;}
.fs1d_c00247{font-size:27.066667pt;}
.fs13_c00247{font-size:48.536270pt;}
.fs8_c00247{font-size:49.477573pt;}
.fse_c00247{font-size:50.412195pt;}
.fs15_c00247{font-size:51.335900pt;}
.fs6_c00247{font-size:52.278190pt;}
.fsf_c00247{font-size:52.279314pt;}
.fs1_c00247{font-size:52.280489pt;}
.fs19_c00247{font-size:53.211729pt;}
.fs1a_c00247{font-size:53.212873pt;}
.fs9_c00247{font-size:55.078808pt;}
.fsd_c00247{font-size:55.081230pt;}
.fs14_c00247{font-size:56.938144pt;}
.fs11_c00247{font-size:56.943609pt;}
.fs16_c00247{font-size:56.945886pt;}
.fs12_c00247{font-size:57.875028pt;}
.fs3_c00247{font-size:57.877111pt;}
.fsb_c00247{font-size:58.807526pt;}
.fs18_c00247{font-size:58.812964pt;}
.fsc_c00247{font-size:59.740979pt;}
.fs10_c00247{font-size:59.744114pt;}
.fs7_c00247{font-size:60.680042pt;}
.fsa_c00247{font-size:61.607884pt;}
.fs5_c00247{font-size:61.611118pt;}
.fs4_c00247{font-size:62.544620pt;}
.fs2_c00247{font-size:62.549871pt;}
.fs17_c00247{font-size:65.347738pt;}
.fs0_c00247{font-size:66.266667pt;}
.fs1b_c00247{font-size:82.133333pt;}
.fs1c_c00247{font-size:84.933333pt;}
.y0_c00247{bottom:0.000000pt;}
.yf4_c00247{bottom:6.104000pt;}
.yeb_c00247{bottom:14.885333pt;}
.yec_c00247{bottom:15.951629pt;}
.yed_c00247{bottom:16.379427pt;}
.yee_c00247{bottom:16.797133pt;}
.yef_c00247{bottom:17.863664pt;}
.yf0_c00247{bottom:18.396827pt;}
.yf1_c00247{bottom:19.770683pt;}
.ye6_c00247{bottom:30.453695pt;}
.ye7_c00247{bottom:31.325111pt;}
.ye8_c00247{bottom:31.543147pt;}
.ye9_c00247{bottom:32.717523pt;}
.yea_c00247{bottom:34.426755pt;}
.ydd_c00247{bottom:45.576305pt;}
.yde_c00247{bottom:46.374717pt;}
.ydf_c00247{bottom:47.292031pt;}
.ye0_c00247{bottom:48.084395pt;}
.ye1_c00247{bottom:48.643184pt;}
.ye2_c00247{bottom:49.035381pt;}
.ye3_c00247{bottom:49.373745pt;}
.ye4_c00247{bottom:50.109011pt;}
.ye5_c00247{bottom:51.122517pt;}
.yf3_c00247{bottom:54.005333pt;}
.yd7_c00247{bottom:60.701143pt;}
.yd8_c00247{bottom:62.358909pt;}
.yd9_c00247{bottom:62.660899pt;}
.yda_c00247{bottom:64.369096pt;}
.ydb_c00247{bottom:65.636227pt;}
.ydc_c00247{bottom:66.243807pt;}
.yf2_c00247{bottom:68.160000pt;}
.yd1_c00247{bottom:75.824227pt;}
.yd2_c00247{bottom:77.012933pt;}
.yd3_c00247{bottom:77.341259pt;}
.yd4_c00247{bottom:77.652101pt;}
.yd5_c00247{bottom:78.846156pt;}
.yd6_c00247{bottom:80.250868pt;}
.ycb_c00247{bottom:90.951673pt;}
.ycc_c00247{bottom:92.272176pt;}
.ycd_c00247{bottom:93.566895pt;}
.yce_c00247{bottom:95.309849pt;}
.ycf_c00247{bottom:95.735437pt;}
.yd0_c00247{bottom:96.327384pt;}
.yc2_c00247{bottom:106.552432pt;}
.yc3_c00247{bottom:107.626764pt;}
.yc4_c00247{bottom:108.780140pt;}
.yc5_c00247{bottom:109.067784pt;}
.yc6_c00247{bottom:109.746028pt;}
.yc7_c00247{bottom:110.114928pt;}
.yc8_c00247{bottom:110.961144pt;}
.yc9_c00247{bottom:111.512716pt;}
.yca_c00247{bottom:111.852020pt;}
.yb9_c00247{bottom:122.159209pt;}
.yba_c00247{bottom:123.748412pt;}
.ybb_c00247{bottom:124.385441pt;}
.ybc_c00247{bottom:124.835693pt;}
.ybd_c00247{bottom:125.297107pt;}
.ybe_c00247{bottom:126.334080pt;}
.ybf_c00247{bottom:127.585200pt;}
.yc0_c00247{bottom:127.886516pt;}
.yc1_c00247{bottom:128.446949pt;}
.yb0_c00247{bottom:137.761257pt;}
.yb1_c00247{bottom:138.771161pt;}
.yb2_c00247{bottom:139.273257pt;}
.yb3_c00247{bottom:139.670187pt;}
.yb4_c00247{bottom:140.490397pt;}
.yb5_c00247{bottom:140.818715pt;}
.yb6_c00247{bottom:141.176979pt;}
.yb7_c00247{bottom:142.066771pt;}
.yb8_c00247{bottom:142.349104pt;}
.ya8_c00247{bottom:153.365333pt;}
.ya9_c00247{bottom:154.202421pt;}
.yaa_c00247{bottom:154.573393pt;}
.yab_c00247{bottom:155.098281pt;}
.yac_c00247{bottom:155.815165pt;}
.yad_c00247{bottom:156.962017pt;}
.yae_c00247{bottom:157.682989pt;}
.yaf_c00247{bottom:158.139249pt;}
.y9f_c00247{bottom:170.401333pt;}
.ya0_c00247{bottom:171.061107pt;}
.ya1_c00247{bottom:171.476573pt;}
.ya2_c00247{bottom:171.790547pt;}
.ya3_c00247{bottom:172.042987pt;}
.ya4_c00247{bottom:172.222973pt;}
.ya5_c00247{bottom:172.546987pt;}
.ya6_c00247{bottom:172.781867pt;}
.ya7_c00247{bottom:172.911920pt;}
.y9e_c00247{bottom:182.076051pt;}
.y9d_c00247{bottom:182.871096pt;}
.y9c_c00247{bottom:183.126867pt;}
.y9b_c00247{bottom:183.710220pt;}
.y9a_c00247{bottom:184.034423pt;}
.y99_c00247{bottom:184.311600pt;}
.y98_c00247{bottom:184.792565pt;}
.y97_c00247{bottom:185.041333pt;}
.y8e_c00247{bottom:200.881333pt;}
.y8f_c00247{bottom:201.230253pt;}
.y90_c00247{bottom:201.454228pt;}
.y91_c00247{bottom:201.724021pt;}
.y92_c00247{bottom:202.177632pt;}
.y93_c00247{bottom:202.484400pt;}
.y94_c00247{bottom:202.935371pt;}
.y95_c00247{bottom:203.202524pt;}
.y96_c00247{bottom:203.368741pt;}
.y87_c00247{bottom:215.282667pt;}
.y88_c00247{bottom:216.113831pt;}
.y89_c00247{bottom:216.576185pt;}
.y8a_c00247{bottom:217.490105pt;}
.y8b_c00247{bottom:218.453121pt;}
.y8c_c00247{bottom:218.804024pt;}
.y8d_c00247{bottom:219.086201pt;}
.y80_c00247{bottom:230.159176pt;}
.y81_c00247{bottom:230.784555pt;}
.y82_c00247{bottom:231.386627pt;}
.y83_c00247{bottom:231.706029pt;}
.y84_c00247{bottom:232.363151pt;}
.y85_c00247{bottom:232.668265pt;}
.y86_c00247{bottom:234.051339pt;}
.y78_c00247{bottom:245.281712pt;}
.y79_c00247{bottom:246.510292pt;}
.y7a_c00247{bottom:247.081657pt;}
.y7b_c00247{bottom:248.170693pt;}
.y7c_c00247{bottom:248.614741pt;}
.y7d_c00247{bottom:249.687143pt;}
.y7e_c00247{bottom:249.997625pt;}
.y7f_c00247{bottom:250.988307pt;}
.y71_c00247{bottom:259.924000pt;}
.y72_c00247{bottom:260.921171pt;}
.y73_c00247{bottom:261.392573pt;}
.y74_c00247{bottom:262.467239pt;}
.y75_c00247{bottom:263.102776pt;}
.y76_c00247{bottom:264.151728pt;}
.y77_c00247{bottom:264.448331pt;}
.y69_c00247{bottom:275.520952pt;}
.y6a_c00247{bottom:276.207763pt;}
.y6b_c00247{bottom:276.788651pt;}
.y6c_c00247{bottom:278.001027pt;}
.y6d_c00247{bottom:278.629435pt;}
.y6e_c00247{bottom:279.057232pt;}
.y6f_c00247{bottom:279.613715pt;}
.y70_c00247{bottom:280.051397pt;}
.y66_c00247{bottom:290.165333pt;}
.y67_c00247{bottom:290.629739pt;}
.y68_c00247{bottom:295.768499pt;}
.y5d_c00247{bottom:305.765333pt;}
.y5e_c00247{bottom:306.638536pt;}
.y5f_c00247{bottom:307.869036pt;}
.y60_c00247{bottom:308.112744pt;}
.y61_c00247{bottom:309.131399pt;}
.y62_c00247{bottom:309.402185pt;}
.y63_c00247{bottom:309.769081pt;}
.y64_c00247{bottom:310.939137pt;}
.y65_c00247{bottom:311.353015pt;}
.y55_c00247{bottom:321.121952pt;}
.y56_c00247{bottom:321.569333pt;}
.y57_c00247{bottom:322.590379pt;}
.y58_c00247{bottom:323.208608pt;}
.y59_c00247{bottom:324.659925pt;}
.y5a_c00247{bottom:325.024053pt;}
.y5b_c00247{bottom:326.210923pt;}
.y5c_c00247{bottom:326.602229pt;}
.y4f_c00247{bottom:336.960736pt;}
.y50_c00247{bottom:337.793387pt;}
.y51_c00247{bottom:338.201536pt;}
.y52_c00247{bottom:339.168288pt;}
.y53_c00247{bottom:339.923371pt;}
.y54_c00247{bottom:340.323968pt;}
.y48_c00247{bottom:352.322667pt;}
.y49_c00247{bottom:352.989824pt;}
.y4a_c00247{bottom:353.259627pt;}
.y4b_c00247{bottom:353.827819pt;}
.y4c_c00247{bottom:354.357909pt;}
.y4d_c00247{bottom:355.009771pt;}
.y4e_c00247{bottom:355.491115pt;}
.y41_c00247{bottom:367.414381pt;}
.y42_c00247{bottom:367.921293pt;}
.y43_c00247{bottom:368.286217pt;}
.y44_c00247{bottom:369.355089pt;}
.y45_c00247{bottom:371.557289pt;}
.y46_c00247{bottom:371.945285pt;}
.y47_c00247{bottom:372.757509pt;}
.y3a_c00247{bottom:382.316520pt;}
.y3b_c00247{bottom:383.410749pt;}
.y3c_c00247{bottom:384.244696pt;}
.y3d_c00247{bottom:385.157187pt;}
.y3e_c00247{bottom:385.610408pt;}
.y3f_c00247{bottom:386.789733pt;}
.y40_c00247{bottom:387.006819pt;}
.y33_c00247{bottom:397.677900pt;}
.y34_c00247{bottom:397.985384pt;}
.y35_c00247{bottom:398.719195pt;}
.y36_c00247{bottom:399.494576pt;}
.y37_c00247{bottom:400.641707pt;}
.y38_c00247{bottom:401.062244pt;}
.y39_c00247{bottom:401.980664pt;}
.y29_c00247{bottom:412.562667pt;}
.y2a_c00247{bottom:413.013019pt;}
.y2b_c00247{bottom:413.374667pt;}
.y2c_c00247{bottom:413.940407pt;}
.y2d_c00247{bottom:414.709651pt;}
.y2e_c00247{bottom:415.019359pt;}
.y2f_c00247{bottom:415.674615pt;}
.y30_c00247{bottom:416.158679pt;}
.y31_c00247{bottom:417.144811pt;}
.y32_c00247{bottom:417.589927pt;}
.y22_c00247{bottom:428.158411pt;}
.y23_c00247{bottom:429.128221pt;}
.y24_c00247{bottom:429.494769pt;}
.y25_c00247{bottom:430.931524pt;}
.y26_c00247{bottom:431.500029pt;}
.y27_c00247{bottom:431.838179pt;}
.y28_c00247{bottom:432.764137pt;}
.y1c_c00247{bottom:443.281256pt;}
.y1d_c00247{bottom:443.709896pt;}
.y1e_c00247{bottom:444.854684pt;}
.y1f_c00247{bottom:445.784063pt;}
.y20_c00247{bottom:446.349401pt;}
.y21_c00247{bottom:447.463840pt;}
.y13_c00247{bottom:458.404000pt;}
.y14_c00247{bottom:458.874035pt;}
.y15_c00247{bottom:459.220544pt;}
.y16_c00247{bottom:460.511125pt;}
.y17_c00247{bottom:460.858141pt;}
.y18_c00247{bottom:462.294288pt;}
.y19_c00247{bottom:462.481552pt;}
.y1a_c00247{bottom:462.850937pt;}
.y1b_c00247{bottom:463.591912pt;}
.yb_c00247{bottom:473.039367pt;}
.yc_c00247{bottom:474.350289pt;}
.yd_c00247{bottom:475.334988pt;}
.ye_c00247{bottom:475.596197pt;}
.yf_c00247{bottom:476.661397pt;}
.y10_c00247{bottom:477.206924pt;}
.y11_c00247{bottom:477.946697pt;}
.y12_c00247{bottom:478.647477pt;}
.y2_c00247{bottom:488.405333pt;}
.y3_c00247{bottom:488.753645pt;}
.y4_c00247{bottom:490.508147pt;}
.y5_c00247{bottom:490.741827pt;}
.y6_c00247{bottom:490.970293pt;}
.y7_c00247{bottom:491.535357pt;}
.y8_c00247{bottom:492.833477pt;}
.y9_c00247{bottom:493.020728pt;}
.ya_c00247{bottom:493.738267pt;}
.y1_c00247{bottom:502.800000pt;}
.h1f_c00247{height:27.066667pt;}
.h15_c00247{height:48.536270pt;}
.ha_c00247{height:49.477573pt;}
.h10_c00247{height:50.412195pt;}
.h17_c00247{height:51.335900pt;}
.h8_c00247{height:52.278190pt;}
.h11_c00247{height:52.279314pt;}
.h3_c00247{height:52.280489pt;}
.h1b_c00247{height:53.211729pt;}
.h1c_c00247{height:53.212873pt;}
.hb_c00247{height:55.078808pt;}
.hf_c00247{height:55.081230pt;}
.h16_c00247{height:56.938144pt;}
.h13_c00247{height:56.943609pt;}
.h18_c00247{height:56.945886pt;}
.h14_c00247{height:57.875028pt;}
.h5_c00247{height:57.877111pt;}
.hd_c00247{height:58.807526pt;}
.h1a_c00247{height:58.812964pt;}
.he_c00247{height:59.740979pt;}
.h12_c00247{height:59.744114pt;}
.h9_c00247{height:60.680042pt;}
.hc_c00247{height:61.607884pt;}
.h7_c00247{height:61.611118pt;}
.h6_c00247{height:62.544620pt;}
.h4_c00247{height:62.549871pt;}
.h19_c00247{height:65.347738pt;}
.h2_c00247{height:66.266667pt;}
.h1d_c00247{height:82.133333pt;}
.h1e_c00247{height:84.933333pt;}
.h1_c00247{height:550.000000pt;}
.h0_c00247{height:550.266667pt;}
.w0_c00247{width:319.200000pt;}
.w1_c00247{width:319.333333pt;}
.x0_c00247{left:0.000000pt;}
.x72_c00247{left:33.893623pt;}
.x60_c00247{left:37.550667pt;}
.x7a_c00247{left:38.626940pt;}
.x12_c00247{left:39.796000pt;}
.x53_c00247{left:41.260599pt;}
.x2_c00247{left:42.258667pt;}
.x36_c00247{left:52.748000pt;}
.x3_c00247{left:57.402667pt;}
.x2a_c00247{left:59.951381pt;}
.x3f_c00247{left:61.242101pt;}
.x23_c00247{left:63.112000pt;}
.x13_c00247{left:64.534667pt;}
.x5d_c00247{left:72.836000pt;}
.x56_c00247{left:74.118469pt;}
.x76_c00247{left:77.279117pt;}
.x24_c00247{left:80.333333pt;}
.x14_c00247{left:82.772000pt;}
.x73_c00247{left:86.738532pt;}
.x7b_c00247{left:88.561333pt;}
.x3b_c00247{left:90.910176pt;}
.x1e_c00247{left:92.523067pt;}
.x37_c00247{left:94.445333pt;}
.x30_c00247{left:96.465409pt;}
.x65_c00247{left:98.573333pt;}
.x54_c00247{left:99.745036pt;}
.xb_c00247{left:101.785235pt;}
.x2b_c00247{left:103.152355pt;}
.x40_c00247{left:105.635797pt;}
.x25_c00247{left:107.273333pt;}
.x74_c00247{left:110.110069pt;}
.x1f_c00247{left:111.815067pt;}
.x3c_c00247{left:114.919125pt;}
.x5a_c00247{left:117.801333pt;}
.x4f_c00247{left:119.028000pt;}
.x49_c00247{left:121.471483pt;}
.x57_c00247{left:122.617136pt;}
.x66_c00247{left:123.568000pt;}
.x1a_c00247{left:124.786681pt;}
.x68_c00247{left:125.757144pt;}
.x55_c00247{left:126.938664pt;}
.x6b_c00247{left:130.842559pt;}
.x41_c00247{left:132.522123pt;}
.x4_c00247{left:133.685333pt;}
.x31_c00247{left:138.146277pt;}
.x5_c00247{left:143.845333pt;}
.x61_c00247{left:145.074667pt;}
.xc_c00247{left:146.570277pt;}
.x69_c00247{left:147.834544pt;}
.x2c_c00247{left:148.777524pt;}
.x15_c00247{left:150.697333pt;}
.x6_c00247{left:153.778667pt;}
.x77_c00247{left:155.008160pt;}
.x58_c00247{left:157.202469pt;}
.xd_c00247{left:158.449220pt;}
.x1_c00247{left:159.600000pt;}
.x70_c00247{left:161.066744pt;}
.x6c_c00247{left:167.331507pt;}
.x16_c00247{left:168.961333pt;}
.x3d_c00247{left:171.756875pt;}
.x1b_c00247{left:173.701348pt;}
.x50_c00247{left:175.589333pt;}
.x4a_c00247{left:176.579483pt;}
.x7_c00247{left:178.346667pt;}
.x38_c00247{left:179.950667pt;}
.x32_c00247{left:183.757896pt;}
.x20_c00247{left:187.433733pt;}
.x26_c00247{left:189.854667pt;}
.x6a_c00247{left:193.434761pt;}
.x42_c00247{left:195.639061pt;}
.x78_c00247{left:198.260597pt;}
.x46_c00247{left:199.892000pt;}
.x62_c00247{left:201.716000pt;}
.x1c_c00247{left:203.456015pt;}
.x4b_c00247{left:205.143483pt;}
.xe_c00247{left:206.850324pt;}
.x5f_c00247{left:207.888000pt;}
.x51_c00247{left:209.038667pt;}
.x43_c00247{left:211.478624pt;}
.x27_c00247{left:212.905333pt;}
.x2d_c00247{left:216.233847pt;}
.x21_c00247{left:217.355067pt;}
.x63_c00247{left:219.714667pt;}
.x39_c00247{left:220.692000pt;}
.x4c_c00247{left:224.588816pt;}
.x5b_c00247{left:228.209333pt;}
.xf_c00247{left:231.670907pt;}
.x8_c00247{left:234.786667pt;}
.x34_c00247{left:237.849879pt;}
.x3e_c00247{left:239.735787pt;}
.x2e_c00247{left:240.959919pt;}
.x9_c00247{left:242.928000pt;}
.x17_c00247{left:244.548000pt;}
.x59_c00247{left:246.054469pt;}
.x79_c00247{left:247.035561pt;}
.x5c_c00247{left:248.850667pt;}
.x4d_c00247{left:249.883483pt;}
.x3a_c00247{left:250.776000pt;}
.x5e_c00247{left:252.133333pt;}
.x18_c00247{left:254.404000pt;}
.x35_c00247{left:256.325879pt;}
.x6d_c00247{left:258.883835pt;}
.x28_c00247{left:259.864000pt;}
.x1d_c00247{left:262.110681pt;}
.x44_c00247{left:263.068843pt;}
.x52_c00247{left:264.246667pt;}
.x10_c00247{left:265.285007pt;}
.x47_c00247{left:266.716000pt;}
.x67_c00247{left:268.376000pt;}
.x4e_c00247{left:269.778149pt;}
.x6e_c00247{left:270.945493pt;}
.x75_c00247{left:271.983877pt;}
.xa_c00247{left:274.125333pt;}
.x33_c00247{left:276.218495pt;}
.x71_c00247{left:277.492077pt;}
.x45_c00247{left:280.106944pt;}
.x29_c00247{left:281.060000pt;}
.x22_c00247{left:283.887067pt;}
.x7c_c00247{left:286.320000pt;}
.x64_c00247{left:288.609333pt;}
.x6f_c00247{left:293.376951pt;}
.x2f_c00247{left:294.984455pt;}
.x48_c00247{left:296.222667pt;}
.x11_c00247{left:297.145743pt;}
.x7d_c00247{left:307.680000pt;}
.x19_c00247{left:312.844000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00248 {
    display:none;
  }
  .loading-indicator_c00248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00248 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00248 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00248" -> "#page-container .classname_c00248")
 */
.pf_c00248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00248 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00248 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00248 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00248 {overflow:visible;}
  }
}
.c_c00248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00248 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00248:after { /* webkit #35443 */
  content: '';
}
.t_c00248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00248 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00248 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00248 { /* info for Javascript */
  display:none;
}
.l_c00248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00248:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00248 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00248.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mae_c00248{transform:matrix(0.014261,-0.000342,0.005998,0.249928,0,0);-ms-transform:matrix(0.014261,-0.000342,0.005998,0.249928,0,0);-webkit-transform:matrix(0.014261,-0.000342,0.005998,0.249928,0,0);}
.me5_c00248{transform:matrix(0.015616,-0.000375,0.005998,0.249928,0,0);-ms-transform:matrix(0.015616,-0.000375,0.005998,0.249928,0,0);-webkit-transform:matrix(0.015616,-0.000375,0.005998,0.249928,0,0);}
.me6_c00248{transform:matrix(0.121440,-0.002915,0.005998,0.249928,0,0);-ms-transform:matrix(0.121440,-0.002915,0.005998,0.249928,0,0);-webkit-transform:matrix(0.121440,-0.002915,0.005998,0.249928,0,0);}
.m7a_c00248{transform:matrix(0.132142,-0.003171,0.005998,0.249928,0,0);-ms-transform:matrix(0.132142,-0.003171,0.005998,0.249928,0,0);-webkit-transform:matrix(0.132142,-0.003171,0.005998,0.249928,0,0);}
.m90_c00248{transform:matrix(0.139760,-0.003354,0.005998,0.249928,0,0);-ms-transform:matrix(0.139760,-0.003354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.139760,-0.003354,0.005998,0.249928,0,0);}
.me7_c00248{transform:matrix(0.145688,-0.003497,0.005998,0.249928,0,0);-ms-transform:matrix(0.145688,-0.003497,0.005998,0.249928,0,0);-webkit-transform:matrix(0.145688,-0.003497,0.005998,0.249928,0,0);}
.m95_c00248{transform:matrix(0.150347,-0.003608,0.005998,0.249928,0,0);-ms-transform:matrix(0.150347,-0.003608,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150347,-0.003608,0.005998,0.249928,0,0);}
.m58_c00248{transform:matrix(0.150962,-0.003623,0.005998,0.249928,0,0);-ms-transform:matrix(0.150962,-0.003623,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150962,-0.003623,0.005998,0.249928,0,0);}
.m53_c00248{transform:matrix(0.151251,-0.003630,0.005998,0.249928,0,0);-ms-transform:matrix(0.151251,-0.003630,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151251,-0.003630,0.005998,0.249928,0,0);}
.m93_c00248{transform:matrix(0.154640,-0.003711,0.005998,0.249928,0,0);-ms-transform:matrix(0.154640,-0.003711,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154640,-0.003711,0.005998,0.249928,0,0);}
.m7b_c00248{transform:matrix(0.157475,-0.003779,0.005998,0.249928,0,0);-ms-transform:matrix(0.157475,-0.003779,0.005998,0.249928,0,0);-webkit-transform:matrix(0.157475,-0.003779,0.005998,0.249928,0,0);}
.m7d_c00248{transform:matrix(0.158859,-0.003813,0.005998,0.249928,0,0);-ms-transform:matrix(0.158859,-0.003813,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158859,-0.003813,0.005998,0.249928,0,0);}
.m8c_c00248{transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);-ms-transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);}
.m8b_c00248{transform:matrix(0.159994,-0.003840,0.005998,0.249928,0,0);-ms-transform:matrix(0.159994,-0.003840,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159994,-0.003840,0.005998,0.249928,0,0);}
.m8d_c00248{transform:matrix(0.160259,-0.003846,0.005998,0.249928,0,0);-ms-transform:matrix(0.160259,-0.003846,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160259,-0.003846,0.005998,0.249928,0,0);}
.mea_c00248{transform:matrix(0.160474,-0.003851,0.005998,0.249928,0,0);-ms-transform:matrix(0.160474,-0.003851,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160474,-0.003851,0.005998,0.249928,0,0);}
.m85_c00248{transform:matrix(0.162308,-0.003895,0.005998,0.249928,0,0);-ms-transform:matrix(0.162308,-0.003895,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162308,-0.003895,0.005998,0.249928,0,0);}
.m17_c00248{transform:matrix(0.162718,-0.003905,0.005998,0.249928,0,0);-ms-transform:matrix(0.162718,-0.003905,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162718,-0.003905,0.005998,0.249928,0,0);}
.m76_c00248{transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);-ms-transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163238,-0.003918,0.005998,0.249928,0,0);}
.m98_c00248{transform:matrix(0.163893,-0.003933,0.005998,0.249928,0,0);-ms-transform:matrix(0.163893,-0.003933,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163893,-0.003933,0.005998,0.249928,0,0);}
.m6b_c00248{transform:matrix(0.165172,-0.003964,0.005998,0.249928,0,0);-ms-transform:matrix(0.165172,-0.003964,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165172,-0.003964,0.005998,0.249928,0,0);}
.m4_c00248{transform:matrix(0.165722,-0.003977,0.005998,0.249928,0,0);-ms-transform:matrix(0.165722,-0.003977,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165722,-0.003977,0.005998,0.249928,0,0);}
.m7_c00248{transform:matrix(0.165812,-0.003979,0.005998,0.249928,0,0);-ms-transform:matrix(0.165812,-0.003979,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165812,-0.003979,0.005998,0.249928,0,0);}
.ma_c00248{transform:matrix(0.166002,-0.003984,0.005998,0.249928,0,0);-ms-transform:matrix(0.166002,-0.003984,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166002,-0.003984,0.005998,0.249928,0,0);}
.m29_c00248{transform:matrix(0.166757,-0.004002,0.005998,0.249928,0,0);-ms-transform:matrix(0.166757,-0.004002,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166757,-0.004002,0.005998,0.249928,0,0);}
.m5b_c00248{transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);-ms-transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167082,-0.004010,0.005998,0.249928,0,0);}
.mdc_c00248{transform:matrix(0.168257,-0.004038,0.005998,0.249928,0,0);-ms-transform:matrix(0.168257,-0.004038,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168257,-0.004038,0.005998,0.249928,0,0);}
.m5_c00248{transform:matrix(0.169191,-0.004061,0.005998,0.249928,0,0);-ms-transform:matrix(0.169191,-0.004061,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169191,-0.004061,0.005998,0.249928,0,0);}
.m72_c00248{transform:matrix(0.169356,-0.004065,0.005998,0.249928,0,0);-ms-transform:matrix(0.169356,-0.004065,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169356,-0.004065,0.005998,0.249928,0,0);}
.m6_c00248{transform:matrix(0.169426,-0.004066,0.005998,0.249928,0,0);-ms-transform:matrix(0.169426,-0.004066,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169426,-0.004066,0.005998,0.249928,0,0);}
.m12_c00248{transform:matrix(0.169446,-0.004067,0.005998,0.249928,0,0);-ms-transform:matrix(0.169446,-0.004067,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169446,-0.004067,0.005998,0.249928,0,0);}
.m6f_c00248{transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);-ms-transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);}
.m94_c00248{transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);-ms-transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);}
.me_c00248{transform:matrix(0.170361,-0.004089,0.005998,0.249928,0,0);-ms-transform:matrix(0.170361,-0.004089,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170361,-0.004089,0.005998,0.249928,0,0);}
.m2a_c00248{transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);-ms-transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);}
.mc8_c00248{transform:matrix(0.171011,-0.004104,0.005998,0.249928,0,0);-ms-transform:matrix(0.171011,-0.004104,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171011,-0.004104,0.005998,0.249928,0,0);}
.m6c_c00248{transform:matrix(0.171756,-0.004122,0.005998,0.249928,0,0);-ms-transform:matrix(0.171756,-0.004122,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171756,-0.004122,0.005998,0.249928,0,0);}
.m61_c00248{transform:matrix(0.172270,-0.004134,0.005998,0.249928,0,0);-ms-transform:matrix(0.172270,-0.004134,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172270,-0.004134,0.005998,0.249928,0,0);}
.m68_c00248{transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);-ms-transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);}
.mc7_c00248{transform:matrix(0.172635,-0.004143,0.005998,0.249928,0,0);-ms-transform:matrix(0.172635,-0.004143,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172635,-0.004143,0.005998,0.249928,0,0);}
.m40_c00248{transform:matrix(0.172755,-0.004146,0.005998,0.249928,0,0);-ms-transform:matrix(0.172755,-0.004146,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172755,-0.004146,0.005998,0.249928,0,0);}
.m52_c00248{transform:matrix(0.173030,-0.004153,0.005998,0.249928,0,0);-ms-transform:matrix(0.173030,-0.004153,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173030,-0.004153,0.005998,0.249928,0,0);}
.maf_c00248{transform:matrix(0.173460,-0.004163,0.005998,0.249928,0,0);-ms-transform:matrix(0.173460,-0.004163,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173460,-0.004163,0.005998,0.249928,0,0);}
.m57_c00248{transform:matrix(0.173560,-0.004165,0.005998,0.249928,0,0);-ms-transform:matrix(0.173560,-0.004165,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173560,-0.004165,0.005998,0.249928,0,0);}
.m35_c00248{transform:matrix(0.173760,-0.004170,0.005998,0.249928,0,0);-ms-transform:matrix(0.173760,-0.004170,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173760,-0.004170,0.005998,0.249928,0,0);}
.m54_c00248{transform:matrix(0.173845,-0.004172,0.005998,0.249928,0,0);-ms-transform:matrix(0.173845,-0.004172,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173845,-0.004172,0.005998,0.249928,0,0);}
.m7c_c00248{transform:matrix(0.173880,-0.004173,0.005998,0.249928,0,0);-ms-transform:matrix(0.173880,-0.004173,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173880,-0.004173,0.005998,0.249928,0,0);}
.m78_c00248{transform:matrix(0.174195,-0.004181,0.005998,0.249928,0,0);-ms-transform:matrix(0.174195,-0.004181,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174195,-0.004181,0.005998,0.249928,0,0);}
.m70_c00248{transform:matrix(0.174500,-0.004188,0.005998,0.249928,0,0);-ms-transform:matrix(0.174500,-0.004188,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174500,-0.004188,0.005998,0.249928,0,0);}
.m87_c00248{transform:matrix(0.174650,-0.004192,0.005998,0.249928,0,0);-ms-transform:matrix(0.174650,-0.004192,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174650,-0.004192,0.005998,0.249928,0,0);}
.m55_c00248{transform:matrix(0.174905,-0.004198,0.005998,0.249928,0,0);-ms-transform:matrix(0.174905,-0.004198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174905,-0.004198,0.005998,0.249928,0,0);}
.m13_c00248{transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);-ms-transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);}
.m91_c00248{transform:matrix(0.175759,-0.004218,0.005998,0.249928,0,0);-ms-transform:matrix(0.175759,-0.004218,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175759,-0.004218,0.005998,0.249928,0,0);}
.md2_c00248{transform:matrix(0.175829,-0.004220,0.005998,0.249928,0,0);-ms-transform:matrix(0.175829,-0.004220,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175829,-0.004220,0.005998,0.249928,0,0);}
.md_c00248{transform:matrix(0.178179,-0.004276,0.005998,0.249928,0,0);-ms-transform:matrix(0.178179,-0.004276,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178179,-0.004276,0.005998,0.249928,0,0);}
.mc_c00248{transform:matrix(0.178249,-0.004278,0.005998,0.249928,0,0);-ms-transform:matrix(0.178249,-0.004278,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178249,-0.004278,0.005998,0.249928,0,0);}
.m19_c00248{transform:matrix(0.178484,-0.004284,0.005998,0.249928,0,0);-ms-transform:matrix(0.178484,-0.004284,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178484,-0.004284,0.005998,0.249928,0,0);}
.m96_c00248{transform:matrix(0.178579,-0.004286,0.005998,0.249928,0,0);-ms-transform:matrix(0.178579,-0.004286,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178579,-0.004286,0.005998,0.249928,0,0);}
.m5a_c00248{transform:matrix(0.179173,-0.004300,0.005998,0.249928,0,0);-ms-transform:matrix(0.179173,-0.004300,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179173,-0.004300,0.005998,0.249928,0,0);}
.mb6_c00248{transform:matrix(0.179563,-0.004310,0.005998,0.249928,0,0);-ms-transform:matrix(0.179563,-0.004310,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179563,-0.004310,0.005998,0.249928,0,0);}
.m3a_c00248{transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);-ms-transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179678,-0.004312,0.005998,0.249928,0,0);}
.m50_c00248{transform:matrix(0.179738,-0.004314,0.005998,0.249928,0,0);-ms-transform:matrix(0.179738,-0.004314,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179738,-0.004314,0.005998,0.249928,0,0);}
.mde_c00248{transform:matrix(0.179993,-0.004320,0.005998,0.249928,0,0);-ms-transform:matrix(0.179993,-0.004320,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179993,-0.004320,0.005998,0.249928,0,0);}
.m7f_c00248{transform:matrix(0.180213,-0.004325,0.005998,0.249928,0,0);-ms-transform:matrix(0.180213,-0.004325,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180213,-0.004325,0.005998,0.249928,0,0);}
.mac_c00248{transform:matrix(0.180223,-0.004325,0.005998,0.249928,0,0);-ms-transform:matrix(0.180223,-0.004325,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180223,-0.004325,0.005998,0.249928,0,0);}
.m7e_c00248{transform:matrix(0.180358,-0.004329,0.005998,0.249928,0,0);-ms-transform:matrix(0.180358,-0.004329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180358,-0.004329,0.005998,0.249928,0,0);}
.m65_c00248{transform:matrix(0.180373,-0.004329,0.005998,0.249928,0,0);-ms-transform:matrix(0.180373,-0.004329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180373,-0.004329,0.005998,0.249928,0,0);}
.mc6_c00248{transform:matrix(0.180853,-0.004340,0.005998,0.249928,0,0);-ms-transform:matrix(0.180853,-0.004340,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180853,-0.004340,0.005998,0.249928,0,0);}
.m77_c00248{transform:matrix(0.181123,-0.004347,0.005998,0.249928,0,0);-ms-transform:matrix(0.181123,-0.004347,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181123,-0.004347,0.005998,0.249928,0,0);}
.m4c_c00248{transform:matrix(0.181433,-0.004354,0.005998,0.249928,0,0);-ms-transform:matrix(0.181433,-0.004354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181433,-0.004354,0.005998,0.249928,0,0);}
.m2_c00248{transform:matrix(0.181528,-0.004357,0.005998,0.249928,0,0);-ms-transform:matrix(0.181528,-0.004357,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181528,-0.004357,0.005998,0.249928,0,0);}
.m3c_c00248{transform:matrix(0.181553,-0.004357,0.005998,0.249928,0,0);-ms-transform:matrix(0.181553,-0.004357,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181553,-0.004357,0.005998,0.249928,0,0);}
.m79_c00248{transform:matrix(0.182188,-0.004373,0.005998,0.249928,0,0);-ms-transform:matrix(0.182188,-0.004373,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182188,-0.004373,0.005998,0.249928,0,0);}
.m36_c00248{transform:matrix(0.182492,-0.004380,0.005998,0.249928,0,0);-ms-transform:matrix(0.182492,-0.004380,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182492,-0.004380,0.005998,0.249928,0,0);}
.m11_c00248{transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);-ms-transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182807,-0.004387,0.005998,0.249928,0,0);}
.mc4_c00248{transform:matrix(0.183407,-0.004402,0.005998,0.249928,0,0);-ms-transform:matrix(0.183407,-0.004402,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183407,-0.004402,0.005998,0.249928,0,0);}
.m4b_c00248{transform:matrix(0.183442,-0.004403,0.005998,0.249928,0,0);-ms-transform:matrix(0.183442,-0.004403,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183442,-0.004403,0.005998,0.249928,0,0);}
.m1_c00248{transform:matrix(0.183682,-0.004408,0.005998,0.249928,0,0);-ms-transform:matrix(0.183682,-0.004408,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183682,-0.004408,0.005998,0.249928,0,0);}
.meb_c00248{transform:matrix(0.183767,-0.004410,0.005998,0.249928,0,0);-ms-transform:matrix(0.183767,-0.004410,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183767,-0.004410,0.005998,0.249928,0,0);}
.m3d_c00248{transform:matrix(0.183877,-0.004413,0.005998,0.249928,0,0);-ms-transform:matrix(0.183877,-0.004413,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183877,-0.004413,0.005998,0.249928,0,0);}
.m97_c00248{transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);-ms-transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183942,-0.004415,0.005998,0.249928,0,0);}
.m8a_c00248{transform:matrix(0.183997,-0.004416,0.005998,0.249928,0,0);-ms-transform:matrix(0.183997,-0.004416,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183997,-0.004416,0.005998,0.249928,0,0);}
.m30_c00248{transform:matrix(0.184052,-0.004417,0.005998,0.249928,0,0);-ms-transform:matrix(0.184052,-0.004417,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184052,-0.004417,0.005998,0.249928,0,0);}
.m0_c00248{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);}
.m5c_c00248{transform:matrix(0.184162,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184162,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184162,-0.004420,0.005998,0.249928,0,0);}
.m1f_c00248{transform:matrix(0.184192,-0.004421,0.005998,0.249928,0,0);-ms-transform:matrix(0.184192,-0.004421,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184192,-0.004421,0.005998,0.249928,0,0);}
.m8f_c00248{transform:matrix(0.184312,-0.004423,0.005998,0.249928,0,0);-ms-transform:matrix(0.184312,-0.004423,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184312,-0.004423,0.005998,0.249928,0,0);}
.m32_c00248{transform:matrix(0.184837,-0.004436,0.005998,0.249928,0,0);-ms-transform:matrix(0.184837,-0.004436,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184837,-0.004436,0.005998,0.249928,0,0);}
.mf_c00248{transform:matrix(0.185112,-0.004443,0.005998,0.249928,0,0);-ms-transform:matrix(0.185112,-0.004443,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185112,-0.004443,0.005998,0.249928,0,0);}
.m4f_c00248{transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);-ms-transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);}
.m8_c00248{transform:matrix(0.187366,-0.004497,0.005998,0.249928,0,0);-ms-transform:matrix(0.187366,-0.004497,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187366,-0.004497,0.005998,0.249928,0,0);}
.me9_c00248{transform:matrix(0.187696,-0.004505,0.005998,0.249928,0,0);-ms-transform:matrix(0.187696,-0.004505,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187696,-0.004505,0.005998,0.249928,0,0);}
.m8e_c00248{transform:matrix(0.188666,-0.004528,0.005998,0.249928,0,0);-ms-transform:matrix(0.188666,-0.004528,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188666,-0.004528,0.005998,0.249928,0,0);}
.mb_c00248{transform:matrix(0.188906,-0.004534,0.005998,0.249928,0,0);-ms-transform:matrix(0.188906,-0.004534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188906,-0.004534,0.005998,0.249928,0,0);}
.mbe_c00248{transform:matrix(0.189280,-0.004543,0.005998,0.249928,0,0);-ms-transform:matrix(0.189280,-0.004543,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189280,-0.004543,0.005998,0.249928,0,0);}
.mc3_c00248{transform:matrix(0.189705,-0.004553,0.005998,0.249928,0,0);-ms-transform:matrix(0.189705,-0.004553,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189705,-0.004553,0.005998,0.249928,0,0);}
.m3_c00248{transform:matrix(0.189925,-0.004558,0.005998,0.249928,0,0);-ms-transform:matrix(0.189925,-0.004558,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189925,-0.004558,0.005998,0.249928,0,0);}
.m10_c00248{transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);-ms-transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);}
.m64_c00248{transform:matrix(0.190290,-0.004567,0.005998,0.249928,0,0);-ms-transform:matrix(0.190290,-0.004567,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190290,-0.004567,0.005998,0.249928,0,0);}
.m4a_c00248{transform:matrix(0.190435,-0.004570,0.005998,0.249928,0,0);-ms-transform:matrix(0.190435,-0.004570,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190435,-0.004570,0.005998,0.249928,0,0);}
.m83_c00248{transform:matrix(0.190580,-0.004574,0.005998,0.249928,0,0);-ms-transform:matrix(0.190580,-0.004574,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190580,-0.004574,0.005998,0.249928,0,0);}
.mcc_c00248{transform:matrix(0.190630,-0.004575,0.005998,0.249928,0,0);-ms-transform:matrix(0.190630,-0.004575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190630,-0.004575,0.005998,0.249928,0,0);}
.m88_c00248{transform:matrix(0.190675,-0.004576,0.005998,0.249928,0,0);-ms-transform:matrix(0.190675,-0.004576,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190675,-0.004576,0.005998,0.249928,0,0);}
.ma6_c00248{transform:matrix(0.191395,-0.004593,0.005998,0.249928,0,0);-ms-transform:matrix(0.191395,-0.004593,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191395,-0.004593,0.005998,0.249928,0,0);}
.m4e_c00248{transform:matrix(0.191705,-0.004601,0.005998,0.249928,0,0);-ms-transform:matrix(0.191705,-0.004601,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191705,-0.004601,0.005998,0.249928,0,0);}
.mce_c00248{transform:matrix(0.192160,-0.004612,0.005998,0.249928,0,0);-ms-transform:matrix(0.192160,-0.004612,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192160,-0.004612,0.005998,0.249928,0,0);}
.mb9_c00248{transform:matrix(0.193224,-0.004637,0.005998,0.249928,0,0);-ms-transform:matrix(0.193224,-0.004637,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193224,-0.004637,0.005998,0.249928,0,0);}
.m75_c00248{transform:matrix(0.193354,-0.004641,0.005998,0.249928,0,0);-ms-transform:matrix(0.193354,-0.004641,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193354,-0.004641,0.005998,0.249928,0,0);}
.m18_c00248{transform:matrix(0.193534,-0.004645,0.005998,0.249928,0,0);-ms-transform:matrix(0.193534,-0.004645,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193534,-0.004645,0.005998,0.249928,0,0);}
.m9f_c00248{transform:matrix(0.193744,-0.004650,0.005998,0.249928,0,0);-ms-transform:matrix(0.193744,-0.004650,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193744,-0.004650,0.005998,0.249928,0,0);}
.mbb_c00248{transform:matrix(0.193799,-0.004651,0.005998,0.249928,0,0);-ms-transform:matrix(0.193799,-0.004651,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193799,-0.004651,0.005998,0.249928,0,0);}
.m51_c00248{transform:matrix(0.193924,-0.004654,0.005998,0.249928,0,0);-ms-transform:matrix(0.193924,-0.004654,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193924,-0.004654,0.005998,0.249928,0,0);}
.mc9_c00248{transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);-ms-transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);}
.m38_c00248{transform:matrix(0.194544,-0.004669,0.005998,0.249928,0,0);-ms-transform:matrix(0.194544,-0.004669,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194544,-0.004669,0.005998,0.249928,0,0);}
.m6a_c00248{transform:matrix(0.194564,-0.004670,0.005998,0.249928,0,0);-ms-transform:matrix(0.194564,-0.004670,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194564,-0.004670,0.005998,0.249928,0,0);}
.m37_c00248{transform:matrix(0.194849,-0.004676,0.005998,0.249928,0,0);-ms-transform:matrix(0.194849,-0.004676,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194849,-0.004676,0.005998,0.249928,0,0);}
.m92_c00248{transform:matrix(0.195214,-0.004685,0.005998,0.249928,0,0);-ms-transform:matrix(0.195214,-0.004685,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195214,-0.004685,0.005998,0.249928,0,0);}
.m89_c00248{transform:matrix(0.195844,-0.004700,0.005998,0.249928,0,0);-ms-transform:matrix(0.195844,-0.004700,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195844,-0.004700,0.005998,0.249928,0,0);}
.md1_c00248{transform:matrix(0.195884,-0.004701,0.005998,0.249928,0,0);-ms-transform:matrix(0.195884,-0.004701,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195884,-0.004701,0.005998,0.249928,0,0);}
.m80_c00248{transform:matrix(0.196144,-0.004707,0.005998,0.249928,0,0);-ms-transform:matrix(0.196144,-0.004707,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196144,-0.004707,0.005998,0.249928,0,0);}
.m86_c00248{transform:matrix(0.196223,-0.004709,0.005998,0.249928,0,0);-ms-transform:matrix(0.196223,-0.004709,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196223,-0.004709,0.005998,0.249928,0,0);}
.m48_c00248{transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);-ms-transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196923,-0.004726,0.005998,0.249928,0,0);}
.m9c_c00248{transform:matrix(0.197043,-0.004729,0.005998,0.249928,0,0);-ms-transform:matrix(0.197043,-0.004729,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197043,-0.004729,0.005998,0.249928,0,0);}
.m5f_c00248{transform:matrix(0.197263,-0.004734,0.005998,0.249928,0,0);-ms-transform:matrix(0.197263,-0.004734,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197263,-0.004734,0.005998,0.249928,0,0);}
.m60_c00248{transform:matrix(0.197663,-0.004744,0.005998,0.249928,0,0);-ms-transform:matrix(0.197663,-0.004744,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197663,-0.004744,0.005998,0.249928,0,0);}
.m5e_c00248{transform:matrix(0.197693,-0.004745,0.005998,0.249928,0,0);-ms-transform:matrix(0.197693,-0.004745,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197693,-0.004745,0.005998,0.249928,0,0);}
.ma5_c00248{transform:matrix(0.199083,-0.004778,0.005998,0.249928,0,0);-ms-transform:matrix(0.199083,-0.004778,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199083,-0.004778,0.005998,0.249928,0,0);}
.m4d_c00248{transform:matrix(0.199423,-0.004786,0.005998,0.249928,0,0);-ms-transform:matrix(0.199423,-0.004786,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199423,-0.004786,0.005998,0.249928,0,0);}
.m22_c00248{transform:matrix(0.199523,-0.004789,0.005998,0.249928,0,0);-ms-transform:matrix(0.199523,-0.004789,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199523,-0.004789,0.005998,0.249928,0,0);}
.mb8_c00248{transform:matrix(0.199847,-0.004796,0.005998,0.249928,0,0);-ms-transform:matrix(0.199847,-0.004796,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199847,-0.004796,0.005998,0.249928,0,0);}
.md7_c00248{transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);-ms-transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);}
.me8_c00248{transform:matrix(0.200882,-0.004821,0.005998,0.249928,0,0);-ms-transform:matrix(0.200882,-0.004821,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200882,-0.004821,0.005998,0.249928,0,0);}
.ma1_c00248{transform:matrix(0.201002,-0.004824,0.005998,0.249928,0,0);-ms-transform:matrix(0.201002,-0.004824,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201002,-0.004824,0.005998,0.249928,0,0);}
.m81_c00248{transform:matrix(0.201157,-0.004828,0.005998,0.249928,0,0);-ms-transform:matrix(0.201157,-0.004828,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201157,-0.004828,0.005998,0.249928,0,0);}
.m2f_c00248{transform:matrix(0.201452,-0.004835,0.005998,0.249928,0,0);-ms-transform:matrix(0.201452,-0.004835,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201452,-0.004835,0.005998,0.249928,0,0);}
.m6e_c00248{transform:matrix(0.201597,-0.004838,0.005998,0.249928,0,0);-ms-transform:matrix(0.201597,-0.004838,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201597,-0.004838,0.005998,0.249928,0,0);}
.md0_c00248{transform:matrix(0.202722,-0.004865,0.005998,0.249928,0,0);-ms-transform:matrix(0.202722,-0.004865,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202722,-0.004865,0.005998,0.249928,0,0);}
.m56_c00248{transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);-ms-transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);}
.mad_c00248{transform:matrix(0.203816,-0.004892,0.005998,0.249928,0,0);-ms-transform:matrix(0.203816,-0.004892,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203816,-0.004892,0.005998,0.249928,0,0);}
.mbc_c00248{transform:matrix(0.204071,-0.004898,0.005998,0.249928,0,0);-ms-transform:matrix(0.204071,-0.004898,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204071,-0.004898,0.005998,0.249928,0,0);}
.m39_c00248{transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);-ms-transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204171,-0.004900,0.005998,0.249928,0,0);}
.m24_c00248{transform:matrix(0.204871,-0.004917,0.005998,0.249928,0,0);-ms-transform:matrix(0.204871,-0.004917,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204871,-0.004917,0.005998,0.249928,0,0);}
.m82_c00248{transform:matrix(0.205056,-0.004921,0.005998,0.249928,0,0);-ms-transform:matrix(0.205056,-0.004921,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205056,-0.004921,0.005998,0.249928,0,0);}
.me1_c00248{transform:matrix(0.205371,-0.004929,0.005998,0.249928,0,0);-ms-transform:matrix(0.205371,-0.004929,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205371,-0.004929,0.005998,0.249928,0,0);}
.mcf_c00248{transform:matrix(0.205561,-0.004933,0.005998,0.249928,0,0);-ms-transform:matrix(0.205561,-0.004933,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205561,-0.004933,0.005998,0.249928,0,0);}
.ma2_c00248{transform:matrix(0.205886,-0.004941,0.005998,0.249928,0,0);-ms-transform:matrix(0.205886,-0.004941,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205886,-0.004941,0.005998,0.249928,0,0);}
.m59_c00248{transform:matrix(0.206141,-0.004947,0.005998,0.249928,0,0);-ms-transform:matrix(0.206141,-0.004947,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206141,-0.004947,0.005998,0.249928,0,0);}
.m20_c00248{transform:matrix(0.206561,-0.004957,0.005998,0.249928,0,0);-ms-transform:matrix(0.206561,-0.004957,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206561,-0.004957,0.005998,0.249928,0,0);}
.m2b_c00248{transform:matrix(0.206725,-0.004961,0.005998,0.249928,0,0);-ms-transform:matrix(0.206725,-0.004961,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206725,-0.004961,0.005998,0.249928,0,0);}
.m84_c00248{transform:matrix(0.207070,-0.004970,0.005998,0.249928,0,0);-ms-transform:matrix(0.207070,-0.004970,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207070,-0.004970,0.005998,0.249928,0,0);}
.mda_c00248{transform:matrix(0.207265,-0.004974,0.005998,0.249928,0,0);-ms-transform:matrix(0.207265,-0.004974,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207265,-0.004974,0.005998,0.249928,0,0);}
.mdd_c00248{transform:matrix(0.207340,-0.004976,0.005998,0.249928,0,0);-ms-transform:matrix(0.207340,-0.004976,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207340,-0.004976,0.005998,0.249928,0,0);}
.m9e_c00248{transform:matrix(0.207590,-0.004982,0.005998,0.249928,0,0);-ms-transform:matrix(0.207590,-0.004982,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207590,-0.004982,0.005998,0.249928,0,0);}
.md9_c00248{transform:matrix(0.208465,-0.005003,0.005998,0.249928,0,0);-ms-transform:matrix(0.208465,-0.005003,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208465,-0.005003,0.005998,0.249928,0,0);}
.m31_c00248{transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);-ms-transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208655,-0.005008,0.005998,0.249928,0,0);}
.ma9_c00248{transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);-ms-transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208790,-0.005011,0.005998,0.249928,0,0);}
.m9_c00248{transform:matrix(0.208880,-0.005013,0.005998,0.249928,0,0);-ms-transform:matrix(0.208880,-0.005013,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208880,-0.005013,0.005998,0.249928,0,0);}
.m23_c00248{transform:matrix(0.209750,-0.005034,0.005998,0.249928,0,0);-ms-transform:matrix(0.209750,-0.005034,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209750,-0.005034,0.005998,0.249928,0,0);}
.m15_c00248{transform:matrix(0.210174,-0.005044,0.005998,0.249928,0,0);-ms-transform:matrix(0.210174,-0.005044,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210174,-0.005044,0.005998,0.249928,0,0);}
.m46_c00248{transform:matrix(0.210289,-0.005047,0.005998,0.249928,0,0);-ms-transform:matrix(0.210289,-0.005047,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210289,-0.005047,0.005998,0.249928,0,0);}
.m33_c00248{transform:matrix(0.210304,-0.005047,0.005998,0.249928,0,0);-ms-transform:matrix(0.210304,-0.005047,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210304,-0.005047,0.005998,0.249928,0,0);}
.md8_c00248{transform:matrix(0.210314,-0.005048,0.005998,0.249928,0,0);-ms-transform:matrix(0.210314,-0.005048,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210314,-0.005048,0.005998,0.249928,0,0);}
.m67_c00248{transform:matrix(0.210524,-0.005053,0.005998,0.249928,0,0);-ms-transform:matrix(0.210524,-0.005053,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210524,-0.005053,0.005998,0.249928,0,0);}
.m16_c00248{transform:matrix(0.210649,-0.005056,0.005998,0.249928,0,0);-ms-transform:matrix(0.210649,-0.005056,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210649,-0.005056,0.005998,0.249928,0,0);}
.ma7_c00248{transform:matrix(0.210829,-0.005060,0.005998,0.249928,0,0);-ms-transform:matrix(0.210829,-0.005060,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210829,-0.005060,0.005998,0.249928,0,0);}
.m42_c00248{transform:matrix(0.210924,-0.005062,0.005998,0.249928,0,0);-ms-transform:matrix(0.210924,-0.005062,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210924,-0.005062,0.005998,0.249928,0,0);}
.m43_c00248{transform:matrix(0.212199,-0.005093,0.005998,0.249928,0,0);-ms-transform:matrix(0.212199,-0.005093,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212199,-0.005093,0.005998,0.249928,0,0);}
.md6_c00248{transform:matrix(0.212469,-0.005099,0.005998,0.249928,0,0);-ms-transform:matrix(0.212469,-0.005099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212469,-0.005099,0.005998,0.249928,0,0);}
.m14_c00248{transform:matrix(0.212844,-0.005108,0.005998,0.249928,0,0);-ms-transform:matrix(0.212844,-0.005108,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212844,-0.005108,0.005998,0.249928,0,0);}
.m1b_c00248{transform:matrix(0.212929,-0.005110,0.005998,0.249928,0,0);-ms-transform:matrix(0.212929,-0.005110,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212929,-0.005110,0.005998,0.249928,0,0);}
.ma8_c00248{transform:matrix(0.213284,-0.005119,0.005998,0.249928,0,0);-ms-transform:matrix(0.213284,-0.005119,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213284,-0.005119,0.005998,0.249928,0,0);}
.m41_c00248{transform:matrix(0.213623,-0.005127,0.005998,0.249928,0,0);-ms-transform:matrix(0.213623,-0.005127,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213623,-0.005127,0.005998,0.249928,0,0);}
.ma4_c00248{transform:matrix(0.213643,-0.005127,0.005998,0.249928,0,0);-ms-transform:matrix(0.213643,-0.005127,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213643,-0.005127,0.005998,0.249928,0,0);}
.mcb_c00248{transform:matrix(0.214043,-0.005137,0.005998,0.249928,0,0);-ms-transform:matrix(0.214043,-0.005137,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214043,-0.005137,0.005998,0.249928,0,0);}
.m27_c00248{transform:matrix(0.214113,-0.005139,0.005998,0.249928,0,0);-ms-transform:matrix(0.214113,-0.005139,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214113,-0.005139,0.005998,0.249928,0,0);}
.m25_c00248{transform:matrix(0.214738,-0.005154,0.005998,0.249928,0,0);-ms-transform:matrix(0.214738,-0.005154,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214738,-0.005154,0.005998,0.249928,0,0);}
.mb3_c00248{transform:matrix(0.214898,-0.005158,0.005998,0.249928,0,0);-ms-transform:matrix(0.214898,-0.005158,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214898,-0.005158,0.005998,0.249928,0,0);}
.ma3_c00248{transform:matrix(0.214978,-0.005159,0.005998,0.249928,0,0);-ms-transform:matrix(0.214978,-0.005159,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214978,-0.005159,0.005998,0.249928,0,0);}
.mb2_c00248{transform:matrix(0.216208,-0.005189,0.005998,0.249928,0,0);-ms-transform:matrix(0.216208,-0.005189,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216208,-0.005189,0.005998,0.249928,0,0);}
.mb4_c00248{transform:matrix(0.216318,-0.005192,0.005998,0.249928,0,0);-ms-transform:matrix(0.216318,-0.005192,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216318,-0.005192,0.005998,0.249928,0,0);}
.m3f_c00248{transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);-ms-transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);}
.mbd_c00248{transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);-ms-transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);}
.m99_c00248{transform:matrix(0.216768,-0.005202,0.005998,0.249928,0,0);-ms-transform:matrix(0.216768,-0.005202,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216768,-0.005202,0.005998,0.249928,0,0);}
.maa_c00248{transform:matrix(0.217127,-0.005211,0.005998,0.249928,0,0);-ms-transform:matrix(0.217127,-0.005211,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217127,-0.005211,0.005998,0.249928,0,0);}
.md3_c00248{transform:matrix(0.217777,-0.005227,0.005998,0.249928,0,0);-ms-transform:matrix(0.217777,-0.005227,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217777,-0.005227,0.005998,0.249928,0,0);}
.mab_c00248{transform:matrix(0.218112,-0.005235,0.005998,0.249928,0,0);-ms-transform:matrix(0.218112,-0.005235,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218112,-0.005235,0.005998,0.249928,0,0);}
.m21_c00248{transform:matrix(0.218142,-0.005235,0.005998,0.249928,0,0);-ms-transform:matrix(0.218142,-0.005235,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218142,-0.005235,0.005998,0.249928,0,0);}
.m5d_c00248{transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);-ms-transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);}
.mb7_c00248{transform:matrix(0.218417,-0.005242,0.005998,0.249928,0,0);-ms-transform:matrix(0.218417,-0.005242,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218417,-0.005242,0.005998,0.249928,0,0);}
.m6d_c00248{transform:matrix(0.218462,-0.005243,0.005998,0.249928,0,0);-ms-transform:matrix(0.218462,-0.005243,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218462,-0.005243,0.005998,0.249928,0,0);}
.mcd_c00248{transform:matrix(0.218632,-0.005247,0.005998,0.249928,0,0);-ms-transform:matrix(0.218632,-0.005247,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218632,-0.005247,0.005998,0.249928,0,0);}
.mbf_c00248{transform:matrix(0.218787,-0.005251,0.005998,0.249928,0,0);-ms-transform:matrix(0.218787,-0.005251,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218787,-0.005251,0.005998,0.249928,0,0);}
.m9d_c00248{transform:matrix(0.218932,-0.005254,0.005998,0.249928,0,0);-ms-transform:matrix(0.218932,-0.005254,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218932,-0.005254,0.005998,0.249928,0,0);}
.m1d_c00248{transform:matrix(0.220352,-0.005288,0.005998,0.249928,0,0);-ms-transform:matrix(0.220352,-0.005288,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220352,-0.005288,0.005998,0.249928,0,0);}
.m28_c00248{transform:matrix(0.220731,-0.005298,0.005998,0.249928,0,0);-ms-transform:matrix(0.220731,-0.005298,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220731,-0.005298,0.005998,0.249928,0,0);}
.mdb_c00248{transform:matrix(0.221251,-0.005310,0.005998,0.249928,0,0);-ms-transform:matrix(0.221251,-0.005310,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221251,-0.005310,0.005998,0.249928,0,0);}
.me4_c00248{transform:matrix(0.221321,-0.005312,0.005998,0.249928,0,0);-ms-transform:matrix(0.221321,-0.005312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221321,-0.005312,0.005998,0.249928,0,0);}
.m49_c00248{transform:matrix(0.221786,-0.005323,0.005998,0.249928,0,0);-ms-transform:matrix(0.221786,-0.005323,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221786,-0.005323,0.005998,0.249928,0,0);}
.m45_c00248{transform:matrix(0.222061,-0.005329,0.005998,0.249928,0,0);-ms-transform:matrix(0.222061,-0.005329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222061,-0.005329,0.005998,0.249928,0,0);}
.m9b_c00248{transform:matrix(0.222316,-0.005336,0.005998,0.249928,0,0);-ms-transform:matrix(0.222316,-0.005336,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222316,-0.005336,0.005998,0.249928,0,0);}
.m2e_c00248{transform:matrix(0.222716,-0.005345,0.005998,0.249928,0,0);-ms-transform:matrix(0.222716,-0.005345,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222716,-0.005345,0.005998,0.249928,0,0);}
.me3_c00248{transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);-ms-transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);}
.m2c_c00248{transform:matrix(0.223991,-0.005376,0.005998,0.249928,0,0);-ms-transform:matrix(0.223991,-0.005376,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223991,-0.005376,0.005998,0.249928,0,0);}
.mb1_c00248{transform:matrix(0.224660,-0.005392,0.005998,0.249928,0,0);-ms-transform:matrix(0.224660,-0.005392,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224660,-0.005392,0.005998,0.249928,0,0);}
.md4_c00248{transform:matrix(0.224945,-0.005399,0.005998,0.249928,0,0);-ms-transform:matrix(0.224945,-0.005399,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224945,-0.005399,0.005998,0.249928,0,0);}
.mc5_c00248{transform:matrix(0.225040,-0.005401,0.005998,0.249928,0,0);-ms-transform:matrix(0.225040,-0.005401,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225040,-0.005401,0.005998,0.249928,0,0);}
.mb5_c00248{transform:matrix(0.226040,-0.005425,0.005998,0.249928,0,0);-ms-transform:matrix(0.226040,-0.005425,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226040,-0.005425,0.005998,0.249928,0,0);}
.m3e_c00248{transform:matrix(0.226660,-0.005440,0.005998,0.249928,0,0);-ms-transform:matrix(0.226660,-0.005440,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226660,-0.005440,0.005998,0.249928,0,0);}
.m34_c00248{transform:matrix(0.227320,-0.005456,0.005998,0.249928,0,0);-ms-transform:matrix(0.227320,-0.005456,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227320,-0.005456,0.005998,0.249928,0,0);}
.mc2_c00248{transform:matrix(0.228399,-0.005482,0.005998,0.249928,0,0);-ms-transform:matrix(0.228399,-0.005482,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228399,-0.005482,0.005998,0.249928,0,0);}
.m1c_c00248{transform:matrix(0.230169,-0.005524,0.005998,0.249928,0,0);-ms-transform:matrix(0.230169,-0.005524,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230169,-0.005524,0.005998,0.249928,0,0);}
.m44_c00248{transform:matrix(0.230259,-0.005526,0.005998,0.249928,0,0);-ms-transform:matrix(0.230259,-0.005526,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230259,-0.005526,0.005998,0.249928,0,0);}
.m26_c00248{transform:matrix(0.230629,-0.005535,0.005998,0.249928,0,0);-ms-transform:matrix(0.230629,-0.005535,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230629,-0.005535,0.005998,0.249928,0,0);}
.m3b_c00248{transform:matrix(0.231048,-0.005545,0.005998,0.249928,0,0);-ms-transform:matrix(0.231048,-0.005545,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231048,-0.005545,0.005998,0.249928,0,0);}
.m69_c00248{transform:matrix(0.231218,-0.005549,0.005998,0.249928,0,0);-ms-transform:matrix(0.231218,-0.005549,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231218,-0.005549,0.005998,0.249928,0,0);}
.md5_c00248{transform:matrix(0.231803,-0.005563,0.005998,0.249928,0,0);-ms-transform:matrix(0.231803,-0.005563,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231803,-0.005563,0.005998,0.249928,0,0);}
.mca_c00248{transform:matrix(0.234742,-0.005634,0.005998,0.249928,0,0);-ms-transform:matrix(0.234742,-0.005634,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234742,-0.005634,0.005998,0.249928,0,0);}
.m47_c00248{transform:matrix(0.235462,-0.005651,0.005998,0.249928,0,0);-ms-transform:matrix(0.235462,-0.005651,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235462,-0.005651,0.005998,0.249928,0,0);}
.mba_c00248{transform:matrix(0.235522,-0.005653,0.005998,0.249928,0,0);-ms-transform:matrix(0.235522,-0.005653,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235522,-0.005653,0.005998,0.249928,0,0);}
.m66_c00248{transform:matrix(0.236877,-0.005685,0.005998,0.249928,0,0);-ms-transform:matrix(0.236877,-0.005685,0.005998,0.249928,0,0);-webkit-transform:matrix(0.236877,-0.005685,0.005998,0.249928,0,0);}
.mb0_c00248{transform:matrix(0.237472,-0.005699,0.005998,0.249928,0,0);-ms-transform:matrix(0.237472,-0.005699,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237472,-0.005699,0.005998,0.249928,0,0);}
.me2_c00248{transform:matrix(0.238746,-0.005730,0.005998,0.249928,0,0);-ms-transform:matrix(0.238746,-0.005730,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238746,-0.005730,0.005998,0.249928,0,0);}
.m2d_c00248{transform:matrix(0.240276,-0.005767,0.005998,0.249928,0,0);-ms-transform:matrix(0.240276,-0.005767,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240276,-0.005767,0.005998,0.249928,0,0);}
.ma0_c00248{transform:matrix(0.242450,-0.005819,0.005998,0.249928,0,0);-ms-transform:matrix(0.242450,-0.005819,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242450,-0.005819,0.005998,0.249928,0,0);}
.me0_c00248{transform:matrix(0.246444,-0.005915,0.005998,0.249928,0,0);-ms-transform:matrix(0.246444,-0.005915,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246444,-0.005915,0.005998,0.249928,0,0);}
.mc1_c00248{transform:matrix(0.251378,-0.006033,0.005998,0.249928,0,0);-ms-transform:matrix(0.251378,-0.006033,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251378,-0.006033,0.005998,0.249928,0,0);}
.m74_c00248{transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);-ms-transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);}
.m73_c00248{transform:matrix(0.254812,-0.006115,0.005998,0.249928,0,0);-ms-transform:matrix(0.254812,-0.006115,0.005998,0.249928,0,0);-webkit-transform:matrix(0.254812,-0.006115,0.005998,0.249928,0,0);}
.m9a_c00248{transform:matrix(0.256616,-0.006159,0.005998,0.249928,0,0);-ms-transform:matrix(0.256616,-0.006159,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256616,-0.006159,0.005998,0.249928,0,0);}
.m1a_c00248{transform:matrix(0.257241,-0.006174,0.005998,0.249928,0,0);-ms-transform:matrix(0.257241,-0.006174,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257241,-0.006174,0.005998,0.249928,0,0);}
.m63_c00248{transform:matrix(0.269093,-0.006458,0.005998,0.249928,0,0);-ms-transform:matrix(0.269093,-0.006458,0.005998,0.249928,0,0);-webkit-transform:matrix(0.269093,-0.006458,0.005998,0.249928,0,0);}
.mc0_c00248{transform:matrix(0.287952,-0.006911,0.005998,0.249928,0,0);-ms-transform:matrix(0.287952,-0.006911,0.005998,0.249928,0,0);-webkit-transform:matrix(0.287952,-0.006911,0.005998,0.249928,0,0);}
.m1e_c00248{transform:matrix(0.312460,-0.007499,0.005998,0.249928,0,0);-ms-transform:matrix(0.312460,-0.007499,0.005998,0.249928,0,0);-webkit-transform:matrix(0.312460,-0.007499,0.005998,0.249928,0,0);}
.m62_c00248{transform:matrix(0.329475,-0.007907,0.005998,0.249928,0,0);-ms-transform:matrix(0.329475,-0.007907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.329475,-0.007907,0.005998,0.249928,0,0);}
.mdf_c00248{transform:matrix(0.670397,-0.016090,0.005998,0.249928,0,0);-ms-transform:matrix(0.670397,-0.016090,0.005998,0.249928,0,0);-webkit-transform:matrix(0.670397,-0.016090,0.005998,0.249928,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:0.000000px;}
.fc0_c00248{color:transparent;}
.fs3_c00248{font-size:57.766630px;}
.fs5_c00248{font-size:58.816932px;}
.fs7_c00248{font-size:59.867234px;}
.fs4_c00248{font-size:60.917537px;}
.fsc_c00248{font-size:61.967839px;}
.fsa_c00248{font-size:63.018141px;}
.fs6_c00248{font-size:64.068444px;}
.fsb_c00248{font-size:65.118746px;}
.fs1_c00248{font-size:66.169048px;}
.fs8_c00248{font-size:67.219351px;}
.fsd_c00248{font-size:68.269653px;}
.fs0_c00248{font-size:69.300000px;}
.fs9_c00248{font-size:69.319956px;}
.fs2_c00248{font-size:71.420560px;}
.y0_c00248{bottom:0.000000px;}
.yec_c00248{bottom:32.678832px;}
.yeb_c00248{bottom:32.678952px;}
.yea_c00248{bottom:32.679132px;}
.yef_c00248{bottom:32.679276px;}
.yed_c00248{bottom:32.679384px;}
.yee_c00248{bottom:32.679540px;}
.yf0_c00248{bottom:32.679804px;}
.ye4_c00248{bottom:52.570536px;}
.ye9_c00248{bottom:52.570848px;}
.ye6_c00248{bottom:52.570992px;}
.ye7_c00248{bottom:52.571028px;}
.ye5_c00248{bottom:52.571220px;}
.ye8_c00248{bottom:52.571532px;}
.yde_c00248{bottom:67.351536px;}
.ydd_c00248{bottom:67.351668px;}
.ydf_c00248{bottom:67.352220px;}
.ye0_c00248{bottom:67.352868px;}
.ye2_c00248{bottom:67.352904px;}
.ye3_c00248{bottom:67.353384px;}
.ye1_c00248{bottom:67.353564px;}
.yd5_c00248{bottom:83.295924px;}
.yd6_c00248{bottom:83.605572px;}
.yd7_c00248{bottom:84.863688px;}
.yd8_c00248{bottom:85.275900px;}
.yd9_c00248{bottom:85.933488px;}
.yda_c00248{bottom:86.265468px;}
.ydb_c00248{bottom:86.592444px;}
.ydc_c00248{bottom:87.272484px;}
.yd4_c00248{bottom:104.345172px;}
.yd3_c00248{bottom:105.326388px;}
.yd2_c00248{bottom:105.582684px;}
.yd1_c00248{bottom:105.915972px;}
.yd0_c00248{bottom:106.253400px;}
.ycf_c00248{bottom:107.060316px;}
.yce_c00248{bottom:122.305560px;}
.ycd_c00248{bottom:122.305908px;}
.ycb_c00248{bottom:122.306340px;}
.ycc_c00248{bottom:122.306400px;}
.yc8_c00248{bottom:122.306508px;}
.yc9_c00248{bottom:122.306808px;}
.yca_c00248{bottom:122.307000px;}
.yc1_c00248{bottom:134.056740px;}
.yc2_c00248{bottom:134.521572px;}
.yc3_c00248{bottom:134.842980px;}
.yc4_c00248{bottom:135.892332px;}
.yc5_c00248{bottom:137.078928px;}
.yc6_c00248{bottom:137.412576px;}
.yc7_c00248{bottom:138.163908px;}
.yb9_c00248{bottom:150.007848px;}
.yba_c00248{bottom:151.044552px;}
.ybb_c00248{bottom:151.933200px;}
.ybc_c00248{bottom:152.302356px;}
.ybd_c00248{bottom:153.006804px;}
.ybe_c00248{bottom:153.398028px;}
.ybf_c00248{bottom:153.849324px;}
.yc0_c00248{bottom:154.205304px;}
.yb0_c00248{bottom:167.557272px;}
.yb1_c00248{bottom:167.731836px;}
.yb2_c00248{bottom:168.473604px;}
.yb3_c00248{bottom:168.925416px;}
.yb4_c00248{bottom:169.930308px;}
.yb5_c00248{bottom:170.389668px;}
.yb6_c00248{bottom:171.058404px;}
.yb7_c00248{bottom:171.721872px;}
.yb8_c00248{bottom:171.957144px;}
.yae_c00248{bottom:189.191304px;}
.yaf_c00248{bottom:189.191604px;}
.yad_c00248{bottom:189.191868px;}
.yac_c00248{bottom:189.192456px;}
.yaa_c00248{bottom:189.192672px;}
.yab_c00248{bottom:189.192912px;}
.ya9_c00248{bottom:189.192972px;}
.ya2_c00248{bottom:205.063656px;}
.ya3_c00248{bottom:205.064016px;}
.ya4_c00248{bottom:205.064376px;}
.ya5_c00248{bottom:205.064424px;}
.ya6_c00248{bottom:205.064916px;}
.ya7_c00248{bottom:205.064964px;}
.ya8_c00248{bottom:205.065264px;}
.y9f_c00248{bottom:223.249404px;}
.ya0_c00248{bottom:223.249548px;}
.ya1_c00248{bottom:223.249680px;}
.y9d_c00248{bottom:223.250028px;}
.y9e_c00248{bottom:223.250088px;}
.y9b_c00248{bottom:223.250208px;}
.y9c_c00248{bottom:223.250676px;}
.y9a_c00248{bottom:240.477120px;}
.y93_c00248{bottom:240.477264px;}
.y92_c00248{bottom:240.477768px;}
.y99_c00248{bottom:240.477804px;}
.y94_c00248{bottom:240.477984px;}
.y95_c00248{bottom:240.478296px;}
.y98_c00248{bottom:240.478440px;}
.y97_c00248{bottom:240.478860px;}
.y96_c00248{bottom:240.478932px;}
.y89_c00248{bottom:258.633180px;}
.y91_c00248{bottom:258.633528px;}
.y8f_c00248{bottom:258.633552px;}
.y8b_c00248{bottom:258.633636px;}
.y8a_c00248{bottom:258.633720px;}
.y8c_c00248{bottom:258.633876px;}
.y8e_c00248{bottom:258.633972px;}
.y90_c00248{bottom:258.634272px;}
.y8d_c00248{bottom:258.634464px;}
.y87_c00248{bottom:274.867332px;}
.y86_c00248{bottom:274.867716px;}
.y88_c00248{bottom:274.867884px;}
.y85_c00248{bottom:274.868124px;}
.y84_c00248{bottom:274.868352px;}
.y83_c00248{bottom:274.869024px;}
.y7d_c00248{bottom:292.153332px;}
.y7c_c00248{bottom:292.153476px;}
.y81_c00248{bottom:292.153512px;}
.y7e_c00248{bottom:292.153788px;}
.y7b_c00248{bottom:292.153932px;}
.y7a_c00248{bottom:292.153980px;}
.y80_c00248{bottom:292.154040px;}
.y82_c00248{bottom:292.154208px;}
.y7f_c00248{bottom:292.154304px;}
.y78_c00248{bottom:310.489344px;}
.y77_c00248{bottom:310.489356px;}
.y76_c00248{bottom:310.489380px;}
.y74_c00248{bottom:310.489512px;}
.y79_c00248{bottom:310.489956px;}
.y75_c00248{bottom:310.490124px;}
.y73_c00248{bottom:310.490136px;}
.y72_c00248{bottom:310.490604px;}
.y6b_c00248{bottom:327.038508px;}
.y6d_c00248{bottom:327.038544px;}
.y6c_c00248{bottom:327.038688px;}
.y6e_c00248{bottom:327.038904px;}
.y6f_c00248{bottom:327.039420px;}
.y71_c00248{bottom:327.039768px;}
.y70_c00248{bottom:327.040032px;}
.y63_c00248{bottom:341.760600px;}
.y64_c00248{bottom:342.103704px;}
.y65_c00248{bottom:342.599004px;}
.y66_c00248{bottom:342.902820px;}
.y67_c00248{bottom:343.735944px;}
.y68_c00248{bottom:344.100432px;}
.y69_c00248{bottom:345.306720px;}
.y6a_c00248{bottom:345.525708px;}
.y5c_c00248{bottom:358.773984px;}
.y5d_c00248{bottom:359.128212px;}
.y5e_c00248{bottom:359.457456px;}
.y5f_c00248{bottom:359.897424px;}
.y60_c00248{bottom:360.402228px;}
.y61_c00248{bottom:360.729504px;}
.y62_c00248{bottom:361.412904px;}
.y54_c00248{bottom:375.249084px;}
.y55_c00248{bottom:376.004064px;}
.y56_c00248{bottom:376.256748px;}
.y57_c00248{bottom:376.785780px;}
.y58_c00248{bottom:377.002836px;}
.y59_c00248{bottom:377.795532px;}
.y5a_c00248{bottom:378.184428px;}
.y5b_c00248{bottom:378.376284px;}
.y4d_c00248{bottom:390.647016px;}
.y4e_c00248{bottom:391.326216px;}
.y4f_c00248{bottom:391.995060px;}
.y50_c00248{bottom:392.740308px;}
.y51_c00248{bottom:393.064212px;}
.y52_c00248{bottom:394.286016px;}
.y53_c00248{bottom:394.983840px;}
.y45_c00248{bottom:406.584672px;}
.y46_c00248{bottom:407.249556px;}
.y47_c00248{bottom:407.459808px;}
.y48_c00248{bottom:408.481332px;}
.y49_c00248{bottom:409.993344px;}
.y4a_c00248{bottom:410.523372px;}
.y4b_c00248{bottom:410.980488px;}
.y4c_c00248{bottom:411.994440px;}
.y3d_c00248{bottom:426.294648px;}
.y3e_c00248{bottom:426.683700px;}
.y3f_c00248{bottom:426.954168px;}
.y40_c00248{bottom:427.735512px;}
.y41_c00248{bottom:427.878948px;}
.y42_c00248{bottom:428.140260px;}
.y43_c00248{bottom:428.811372px;}
.y44_c00248{bottom:429.133188px;}
.y35_c00248{bottom:441.958992px;}
.y36_c00248{bottom:442.550424px;}
.y37_c00248{bottom:442.797084px;}
.y38_c00248{bottom:443.195460px;}
.y39_c00248{bottom:443.524236px;}
.y3a_c00248{bottom:444.754500px;}
.y3b_c00248{bottom:445.232532px;}
.y3c_c00248{bottom:445.573908px;}
.y33_c00248{bottom:460.418688px;}
.y34_c00248{bottom:460.419108px;}
.y2a_c00248{bottom:475.180560px;}
.y2b_c00248{bottom:475.795152px;}
.y2c_c00248{bottom:476.093280px;}
.y2d_c00248{bottom:477.478416px;}
.y2e_c00248{bottom:477.699240px;}
.y2f_c00248{bottom:478.893432px;}
.y30_c00248{bottom:479.186724px;}
.y31_c00248{bottom:479.982804px;}
.y32_c00248{bottom:480.330144px;}
.y22_c00248{bottom:492.197532px;}
.y23_c00248{bottom:492.599568px;}
.y24_c00248{bottom:492.875424px;}
.y25_c00248{bottom:493.755768px;}
.y26_c00248{bottom:494.854560px;}
.y27_c00248{bottom:495.893268px;}
.y28_c00248{bottom:496.969704px;}
.y29_c00248{bottom:498.133908px;}
.y1a_c00248{bottom:510.021048px;}
.y1b_c00248{bottom:510.326544px;}
.y1c_c00248{bottom:510.964476px;}
.y1d_c00248{bottom:512.256612px;}
.y1e_c00248{bottom:512.518776px;}
.y1f_c00248{bottom:513.954564px;}
.y20_c00248{bottom:514.206624px;}
.y21_c00248{bottom:514.652052px;}
.y11_c00248{bottom:526.225872px;}
.y12_c00248{bottom:527.251980px;}
.y13_c00248{bottom:528.221700px;}
.y14_c00248{bottom:528.553848px;}
.y15_c00248{bottom:529.079508px;}
.y16_c00248{bottom:529.411404px;}
.y17_c00248{bottom:530.447112px;}
.y18_c00248{bottom:530.792256px;}
.y19_c00248{bottom:531.141936px;}
.ya_c00248{bottom:542.976012px;}
.yb_c00248{bottom:543.447996px;}
.yc_c00248{bottom:545.324040px;}
.yd_c00248{bottom:546.965328px;}
.ye_c00248{bottom:547.559388px;}
.yf_c00248{bottom:548.610000px;}
.y10_c00248{bottom:549.712656px;}
.y2_c00248{bottom:560.529000px;}
.y3_c00248{bottom:562.082508px;}
.y4_c00248{bottom:563.033088px;}
.y5_c00248{bottom:563.914728px;}
.y6_c00248{bottom:564.734088px;}
.y7_c00248{bottom:565.375752px;}
.y8_c00248{bottom:566.549064px;}
.y9_c00248{bottom:567.155196px;}
.y1_c00248{bottom:581.044500px;}
.h5_c00248{height:57.766630px;}
.h7_c00248{height:58.816932px;}
.h9_c00248{height:59.867234px;}
.h6_c00248{height:60.917537px;}
.he_c00248{height:61.967839px;}
.hc_c00248{height:63.018141px;}
.h8_c00248{height:64.068444px;}
.hd_c00248{height:65.118746px;}
.h3_c00248{height:66.169048px;}
.ha_c00248{height:67.219351px;}
.hf_c00248{height:68.269653px;}
.h2_c00248{height:69.300000px;}
.hb_c00248{height:69.319956px;}
.h4_c00248{height:71.420560px;}
.h1_c00248{height:618.750000px;}
.h0_c00248{height:619.050000px;}
.w0_c00248{width:359.100000px;}
.w1_c00248{width:359.250000px;}
.x0_c00248{left:0.000000px;}
.x6b_c00248{left:18.911520px;}
.x2_c00248{left:27.375000px;}
.x1e_c00248{left:28.432620px;}
.x63_c00248{left:29.433216px;}
.x68_c00248{left:30.511740px;}
.x7a_c00248{left:32.401836px;}
.x24_c00248{left:33.490704px;}
.x17_c00248{left:36.156048px;}
.xa_c00248{left:47.087556px;}
.x18_c00248{left:52.261992px;}
.x29_c00248{left:54.546396px;}
.x65_c00248{left:56.439480px;}
.x69_c00248{left:59.140728px;}
.x1f_c00248{left:60.680424px;}
.x74_c00248{left:62.366436px;}
.x37_c00248{left:63.428844px;}
.x25_c00248{left:65.852592px;}
.x31_c00248{left:68.971884px;}
.x51_c00248{left:70.486296px;}
.x3e_c00248{left:73.093848px;}
.x38_c00248{left:74.503176px;}
.x6c_c00248{left:79.917660px;}
.x10_c00248{left:81.536868px;}
.x19_c00248{left:85.846524px;}
.x2a_c00248{left:87.402912px;}
.x44_c00248{left:90.861096px;}
.x3_c00248{left:92.104500px;}
.x32_c00248{left:93.561552px;}
.x7b_c00248{left:95.870376px;}
.x70_c00248{left:98.823600px;}
.x20_c00248{left:102.614448px;}
.x2b_c00248{left:103.808940px;}
.x5f_c00248{left:105.325176px;}
.x4f_c00248{left:106.945848px;}
.x7c_c00248{left:108.563712px;}
.x6d_c00248{left:110.062176px;}
.x45_c00248{left:111.895644px;}
.x4b_c00248{left:116.263692px;}
.x3f_c00248{left:117.659460px;}
.x60_c00248{left:119.909064px;}
.xb_c00248{left:122.129256px;}
.x50_c00248{left:127.201512px;}
.x39_c00248{left:128.260620px;}
.x2c_c00248{left:130.351164px;}
.x4_c00248{left:131.712000px;}
.x55_c00248{left:141.515004px;}
.x61_c00248{left:143.136420px;}
.x79_c00248{left:144.651408px;}
.x11_c00248{left:150.039576px;}
.x2d_c00248{left:152.242380px;}
.x1a_c00248{left:153.881196px;}
.x21_c00248{left:154.963728px;}
.x52_c00248{left:156.910548px;}
.x71_c00248{left:158.113416px;}
.x1_c00248{left:159.840000px;}
.x66_c00248{left:162.850716px;}
.x33_c00248{left:164.577192px;}
.x26_c00248{left:166.076616px;}
.x40_c00248{left:167.347188px;}
.x5_c00248{left:168.447000px;}
.x78_c00248{left:171.100812px;}
.x46_c00248{left:174.063036px;}
.x49_c00248{left:176.145420px;}
.x12_c00248{left:177.695388px;}
.x4c_c00248{left:180.306576px;}
.x72_c00248{left:182.750244px;}
.x5b_c00248{left:185.268192px;}
.xc_c00248{left:187.764672px;}
.x41_c00248{left:188.972868px;}
.x13_c00248{left:195.151476px;}
.x76_c00248{left:197.959488px;}
.x34_c00248{left:201.328140px;}
.x6_c00248{left:202.587000px;}
.x22_c00248{left:204.434292px;}
.x4a_c00248{left:205.916208px;}
.x3a_c00248{left:207.833160px;}
.xd_c00248{left:211.516596px;}
.x67_c00248{left:212.544336px;}
.x56_c00248{left:215.516592px;}
.x53_c00248{left:221.728380px;}
.x7_c00248{left:229.323000px;}
.x64_c00248{left:230.640564px;}
.x2e_c00248{left:234.271092px;}
.x3b_c00248{left:235.733508px;}
.x57_c00248{left:237.393192px;}
.x47_c00248{left:240.173580px;}
.x1b_c00248{left:243.264924px;}
.x27_c00248{left:244.377012px;}
.x5c_c00248{left:245.765040px;}
.x59_c00248{left:246.846276px;}
.x7e_c00248{left:248.196708px;}
.x14_c00248{left:249.687528px;}
.x6e_c00248{left:252.154812px;}
.xe_c00248{left:253.541088px;}
.x1c_c00248{left:256.519008px;}
.x3c_c00248{left:259.782888px;}
.x35_c00248{left:262.310148px;}
.x5a_c00248{left:264.942180px;}
.x2f_c00248{left:266.133468px;}
.x15_c00248{left:267.883224px;}
.x7d_c00248{left:268.991052px;}
.x42_c00248{left:270.461472px;}
.x48_c00248{left:272.636940px;}
.x5d_c00248{left:274.123848px;}
.x77_c00248{left:276.282096px;}
.x8_c00248{left:278.211000px;}
.x1d_c00248{left:279.956316px;}
.x58_c00248{left:281.146392px;}
.x6a_c00248{left:282.224676px;}
.x54_c00248{left:283.575984px;}
.x16_c00248{left:286.267920px;}
.x30_c00248{left:288.924900px;}
.x36_c00248{left:291.540756px;}
.x5e_c00248{left:295.730304px;}
.xf_c00248{left:297.671544px;}
.x4d_c00248{left:301.225008px;}
.x9_c00248{left:303.466500px;}
.x28_c00248{left:304.526712px;}
.x62_c00248{left:307.342992px;}
.x73_c00248{left:309.629640px;}
.x23_c00248{left:311.114460px;}
.x6f_c00248{left:312.115272px;}
.x3d_c00248{left:313.162296px;}
.x43_c00248{left:316.985016px;}
.x4e_c00248{left:318.041436px;}
.x75_c00248{left:322.567860px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.fs3_c00248{font-size:51.348115pt;}
.fs5_c00248{font-size:52.281717pt;}
.fs7_c00248{font-size:53.215319pt;}
.fs4_c00248{font-size:54.148921pt;}
.fsc_c00248{font-size:55.082524pt;}
.fsa_c00248{font-size:56.016126pt;}
.fs6_c00248{font-size:56.949728pt;}
.fsb_c00248{font-size:57.883330pt;}
.fs1_c00248{font-size:58.816932pt;}
.fs8_c00248{font-size:59.750534pt;}
.fsd_c00248{font-size:60.684136pt;}
.fs0_c00248{font-size:61.600000pt;}
.fs9_c00248{font-size:61.617738pt;}
.fs2_c00248{font-size:63.484942pt;}
.y0_c00248{bottom:0.000000pt;}
.yec_c00248{bottom:29.047851pt;}
.yeb_c00248{bottom:29.047957pt;}
.yea_c00248{bottom:29.048117pt;}
.yef_c00248{bottom:29.048245pt;}
.yed_c00248{bottom:29.048341pt;}
.yee_c00248{bottom:29.048480pt;}
.yf0_c00248{bottom:29.048715pt;}
.ye4_c00248{bottom:46.729365pt;}
.ye9_c00248{bottom:46.729643pt;}
.ye6_c00248{bottom:46.729771pt;}
.ye7_c00248{bottom:46.729803pt;}
.ye5_c00248{bottom:46.729973pt;}
.ye8_c00248{bottom:46.730251pt;}
.yde_c00248{bottom:59.868032pt;}
.ydd_c00248{bottom:59.868149pt;}
.ydf_c00248{bottom:59.868640pt;}
.ye0_c00248{bottom:59.869216pt;}
.ye2_c00248{bottom:59.869248pt;}
.ye3_c00248{bottom:59.869675pt;}
.ye1_c00248{bottom:59.869835pt;}
.yd5_c00248{bottom:74.040821pt;}
.yd6_c00248{bottom:74.316064pt;}
.yd7_c00248{bottom:75.434389pt;}
.yd8_c00248{bottom:75.800800pt;}
.yd9_c00248{bottom:76.385323pt;}
.yda_c00248{bottom:76.680416pt;}
.ydb_c00248{bottom:76.971061pt;}
.ydc_c00248{bottom:77.575541pt;}
.yd4_c00248{bottom:92.751264pt;}
.yd3_c00248{bottom:93.623456pt;}
.yd2_c00248{bottom:93.851275pt;}
.yd1_c00248{bottom:94.147531pt;}
.yd0_c00248{bottom:94.447467pt;}
.ycf_c00248{bottom:95.164725pt;}
.yce_c00248{bottom:108.716053pt;}
.ycd_c00248{bottom:108.716363pt;}
.ycb_c00248{bottom:108.716747pt;}
.ycc_c00248{bottom:108.716800pt;}
.yc8_c00248{bottom:108.716896pt;}
.yc9_c00248{bottom:108.717163pt;}
.yca_c00248{bottom:108.717333pt;}
.yc1_c00248{bottom:119.161547pt;}
.yc2_c00248{bottom:119.574731pt;}
.yc3_c00248{bottom:119.860427pt;}
.yc4_c00248{bottom:120.793184pt;}
.yc5_c00248{bottom:121.847936pt;}
.yc6_c00248{bottom:122.144512pt;}
.yc7_c00248{bottom:122.812363pt;}
.yb9_c00248{bottom:133.340309pt;}
.yba_c00248{bottom:134.261824pt;}
.ybb_c00248{bottom:135.051733pt;}
.ybc_c00248{bottom:135.379872pt;}
.ybd_c00248{bottom:136.006048pt;}
.ybe_c00248{bottom:136.353803pt;}
.ybf_c00248{bottom:136.754955pt;}
.yc0_c00248{bottom:137.071381pt;}
.yb0_c00248{bottom:148.939797pt;}
.yb1_c00248{bottom:149.094965pt;}
.yb2_c00248{bottom:149.754315pt;}
.yb3_c00248{bottom:150.155925pt;}
.yb4_c00248{bottom:151.049163pt;}
.yb5_c00248{bottom:151.457483pt;}
.yb6_c00248{bottom:152.051915pt;}
.yb7_c00248{bottom:152.641664pt;}
.yb8_c00248{bottom:152.850795pt;}
.yae_c00248{bottom:168.170048pt;}
.yaf_c00248{bottom:168.170315pt;}
.yad_c00248{bottom:168.170549pt;}
.yac_c00248{bottom:168.171072pt;}
.yaa_c00248{bottom:168.171264pt;}
.yab_c00248{bottom:168.171477pt;}
.ya9_c00248{bottom:168.171531pt;}
.ya2_c00248{bottom:182.278805pt;}
.ya3_c00248{bottom:182.279125pt;}
.ya4_c00248{bottom:182.279445pt;}
.ya5_c00248{bottom:182.279488pt;}
.ya6_c00248{bottom:182.279925pt;}
.ya7_c00248{bottom:182.279968pt;}
.ya8_c00248{bottom:182.280235pt;}
.y9f_c00248{bottom:198.443915pt;}
.ya0_c00248{bottom:198.444043pt;}
.ya1_c00248{bottom:198.444160pt;}
.y9d_c00248{bottom:198.444469pt;}
.y9e_c00248{bottom:198.444523pt;}
.y9b_c00248{bottom:198.444629pt;}
.y9c_c00248{bottom:198.445045pt;}
.y9a_c00248{bottom:213.757440pt;}
.y93_c00248{bottom:213.757568pt;}
.y92_c00248{bottom:213.758016pt;}
.y99_c00248{bottom:213.758048pt;}
.y94_c00248{bottom:213.758208pt;}
.y95_c00248{bottom:213.758485pt;}
.y98_c00248{bottom:213.758613pt;}
.y97_c00248{bottom:213.758987pt;}
.y96_c00248{bottom:213.759051pt;}
.y89_c00248{bottom:229.896160pt;}
.y91_c00248{bottom:229.896469pt;}
.y8f_c00248{bottom:229.896491pt;}
.y8b_c00248{bottom:229.896565pt;}
.y8a_c00248{bottom:229.896640pt;}
.y8c_c00248{bottom:229.896779pt;}
.y8e_c00248{bottom:229.896864pt;}
.y90_c00248{bottom:229.897131pt;}
.y8d_c00248{bottom:229.897301pt;}
.y87_c00248{bottom:244.326517pt;}
.y86_c00248{bottom:244.326859pt;}
.y88_c00248{bottom:244.327008pt;}
.y85_c00248{bottom:244.327221pt;}
.y84_c00248{bottom:244.327424pt;}
.y83_c00248{bottom:244.328021pt;}
.y7d_c00248{bottom:259.691851pt;}
.y7c_c00248{bottom:259.691979pt;}
.y81_c00248{bottom:259.692011pt;}
.y7e_c00248{bottom:259.692256pt;}
.y7b_c00248{bottom:259.692384pt;}
.y7a_c00248{bottom:259.692427pt;}
.y80_c00248{bottom:259.692480pt;}
.y82_c00248{bottom:259.692629pt;}
.y7f_c00248{bottom:259.692715pt;}
.y78_c00248{bottom:275.990528pt;}
.y77_c00248{bottom:275.990539pt;}
.y76_c00248{bottom:275.990560pt;}
.y74_c00248{bottom:275.990677pt;}
.y79_c00248{bottom:275.991072pt;}
.y75_c00248{bottom:275.991221pt;}
.y73_c00248{bottom:275.991232pt;}
.y72_c00248{bottom:275.991648pt;}
.y6b_c00248{bottom:290.700896pt;}
.y6d_c00248{bottom:290.700928pt;}
.y6c_c00248{bottom:290.701056pt;}
.y6e_c00248{bottom:290.701248pt;}
.y6f_c00248{bottom:290.701707pt;}
.y71_c00248{bottom:290.702016pt;}
.y70_c00248{bottom:290.702251pt;}
.y63_c00248{bottom:303.787200pt;}
.y64_c00248{bottom:304.092181pt;}
.y65_c00248{bottom:304.532448pt;}
.y66_c00248{bottom:304.802507pt;}
.y67_c00248{bottom:305.543061pt;}
.y68_c00248{bottom:305.867051pt;}
.y69_c00248{bottom:306.939307pt;}
.y6a_c00248{bottom:307.133963pt;}
.y5c_c00248{bottom:318.910208pt;}
.y5d_c00248{bottom:319.225077pt;}
.y5e_c00248{bottom:319.517739pt;}
.y5f_c00248{bottom:319.908821pt;}
.y60_c00248{bottom:320.357536pt;}
.y61_c00248{bottom:320.648448pt;}
.y62_c00248{bottom:321.255915pt;}
.y54_c00248{bottom:333.554741pt;}
.y55_c00248{bottom:334.225835pt;}
.y56_c00248{bottom:334.450443pt;}
.y57_c00248{bottom:334.920693pt;}
.y58_c00248{bottom:335.113632pt;}
.y59_c00248{bottom:335.818251pt;}
.y5a_c00248{bottom:336.163936pt;}
.y5b_c00248{bottom:336.334475pt;}
.y4d_c00248{bottom:347.241792pt;}
.y4e_c00248{bottom:347.845525pt;}
.y4f_c00248{bottom:348.440053pt;}
.y50_c00248{bottom:349.102496pt;}
.y51_c00248{bottom:349.390411pt;}
.y52_c00248{bottom:350.476459pt;}
.y53_c00248{bottom:351.096747pt;}
.y45_c00248{bottom:361.408597pt;}
.y46_c00248{bottom:361.999605pt;}
.y47_c00248{bottom:362.186496pt;}
.y48_c00248{bottom:363.094517pt;}
.y49_c00248{bottom:364.438528pt;}
.y4a_c00248{bottom:364.909664pt;}
.y4b_c00248{bottom:365.315989pt;}
.y4c_c00248{bottom:366.217280pt;}
.y3d_c00248{bottom:378.928576pt;}
.y3e_c00248{bottom:379.274400pt;}
.y3f_c00248{bottom:379.514816pt;}
.y40_c00248{bottom:380.209344pt;}
.y41_c00248{bottom:380.336843pt;}
.y42_c00248{bottom:380.569120pt;}
.y43_c00248{bottom:381.165664pt;}
.y44_c00248{bottom:381.451723pt;}
.y35_c00248{bottom:392.852437pt;}
.y36_c00248{bottom:393.378155pt;}
.y37_c00248{bottom:393.597408pt;}
.y38_c00248{bottom:393.951520pt;}
.y39_c00248{bottom:394.243765pt;}
.y3a_c00248{bottom:395.337333pt;}
.y3b_c00248{bottom:395.762251pt;}
.y3c_c00248{bottom:396.065696pt;}
.y33_c00248{bottom:409.261056pt;}
.y34_c00248{bottom:409.261429pt;}
.y2a_c00248{bottom:422.382720pt;}
.y2b_c00248{bottom:422.929024pt;}
.y2c_c00248{bottom:423.194027pt;}
.y2d_c00248{bottom:424.425259pt;}
.y2e_c00248{bottom:424.621547pt;}
.y2f_c00248{bottom:425.683051pt;}
.y30_c00248{bottom:425.943755pt;}
.y31_c00248{bottom:426.651381pt;}
.y32_c00248{bottom:426.960128pt;}
.y22_c00248{bottom:437.508917pt;}
.y23_c00248{bottom:437.866283pt;}
.y24_c00248{bottom:438.111488pt;}
.y25_c00248{bottom:438.894016pt;}
.y26_c00248{bottom:439.870720pt;}
.y27_c00248{bottom:440.794016pt;}
.y28_c00248{bottom:441.750848pt;}
.y29_c00248{bottom:442.785696pt;}
.y1a_c00248{bottom:453.352043pt;}
.y1b_c00248{bottom:453.623595pt;}
.y1c_c00248{bottom:454.190645pt;}
.y1d_c00248{bottom:455.339211pt;}
.y1e_c00248{bottom:455.572245pt;}
.y1f_c00248{bottom:456.848501pt;}
.y20_c00248{bottom:457.072555pt;}
.y21_c00248{bottom:457.468491pt;}
.y11_c00248{bottom:467.756331pt;}
.y12_c00248{bottom:468.668427pt;}
.y13_c00248{bottom:469.530400pt;}
.y14_c00248{bottom:469.825643pt;}
.y15_c00248{bottom:470.292896pt;}
.y16_c00248{bottom:470.587915pt;}
.y17_c00248{bottom:471.508544pt;}
.y18_c00248{bottom:471.815339pt;}
.y19_c00248{bottom:472.126165pt;}
.ya_c00248{bottom:482.645344pt;}
.yb_c00248{bottom:483.064885pt;}
.yc_c00248{bottom:484.732480pt;}
.yd_c00248{bottom:486.191403pt;}
.ye_c00248{bottom:486.719456pt;}
.yf_c00248{bottom:487.653333pt;}
.y10_c00248{bottom:488.633472pt;}
.y2_c00248{bottom:498.248000pt;}
.y3_c00248{bottom:499.628896pt;}
.y4_c00248{bottom:500.473856pt;}
.y5_c00248{bottom:501.257536pt;}
.y6_c00248{bottom:501.985856pt;}
.y7_c00248{bottom:502.556224pt;}
.y8_c00248{bottom:503.599168pt;}
.y9_c00248{bottom:504.137952pt;}
.y1_c00248{bottom:516.484000pt;}
.h5_c00248{height:51.348115pt;}
.h7_c00248{height:52.281717pt;}
.h9_c00248{height:53.215319pt;}
.h6_c00248{height:54.148921pt;}
.he_c00248{height:55.082524pt;}
.hc_c00248{height:56.016126pt;}
.h8_c00248{height:56.949728pt;}
.hd_c00248{height:57.883330pt;}
.h3_c00248{height:58.816932pt;}
.ha_c00248{height:59.750534pt;}
.hf_c00248{height:60.684136pt;}
.h2_c00248{height:61.600000pt;}
.hb_c00248{height:61.617738pt;}
.h4_c00248{height:63.484942pt;}
.h1_c00248{height:550.000000pt;}
.h0_c00248{height:550.266667pt;}
.w0_c00248{width:319.200000pt;}
.w1_c00248{width:319.333333pt;}
.x0_c00248{left:0.000000pt;}
.x6b_c00248{left:16.810240pt;}
.x2_c00248{left:24.333333pt;}
.x1e_c00248{left:25.273440pt;}
.x63_c00248{left:26.162859pt;}
.x68_c00248{left:27.121547pt;}
.x7a_c00248{left:28.801632pt;}
.x24_c00248{left:29.769515pt;}
.x17_c00248{left:32.138709pt;}
.xa_c00248{left:41.855605pt;}
.x18_c00248{left:46.455104pt;}
.x29_c00248{left:48.485685pt;}
.x65_c00248{left:50.168427pt;}
.x69_c00248{left:52.569536pt;}
.x1f_c00248{left:53.938155pt;}
.x74_c00248{left:55.436832pt;}
.x37_c00248{left:56.381195pt;}
.x25_c00248{left:58.535637pt;}
.x31_c00248{left:61.308341pt;}
.x51_c00248{left:62.654485pt;}
.x3e_c00248{left:64.972309pt;}
.x38_c00248{left:66.225045pt;}
.x6c_c00248{left:71.037920pt;}
.x10_c00248{left:72.477216pt;}
.x19_c00248{left:76.308021pt;}
.x2a_c00248{left:77.691477pt;}
.x44_c00248{left:80.765419pt;}
.x3_c00248{left:81.870667pt;}
.x32_c00248{left:83.165824pt;}
.x7b_c00248{left:85.218112pt;}
.x70_c00248{left:87.843200pt;}
.x20_c00248{left:91.212843pt;}
.x2b_c00248{left:92.274613pt;}
.x5f_c00248{left:93.622379pt;}
.x4f_c00248{left:95.062976pt;}
.x7c_c00248{left:96.501077pt;}
.x6d_c00248{left:97.833045pt;}
.x45_c00248{left:99.462795pt;}
.x4b_c00248{left:103.345504pt;}
.x3f_c00248{left:104.586187pt;}
.x60_c00248{left:106.585835pt;}
.xb_c00248{left:108.559339pt;}
.x50_c00248{left:113.068011pt;}
.x39_c00248{left:114.009440pt;}
.x2c_c00248{left:115.867701pt;}
.x4_c00248{left:117.077333pt;}
.x55_c00248{left:125.791115pt;}
.x61_c00248{left:127.232373pt;}
.x79_c00248{left:128.579029pt;}
.x11_c00248{left:133.368512pt;}
.x2d_c00248{left:135.326560pt;}
.x1a_c00248{left:136.783285pt;}
.x21_c00248{left:137.745536pt;}
.x52_c00248{left:139.476043pt;}
.x71_c00248{left:140.545259pt;}
.x1_c00248{left:142.080000pt;}
.x66_c00248{left:144.756192pt;}
.x33_c00248{left:146.290837pt;}
.x26_c00248{left:147.623659pt;}
.x40_c00248{left:148.753056pt;}
.x5_c00248{left:149.730667pt;}
.x78_c00248{left:152.089611pt;}
.x46_c00248{left:154.722699pt;}
.x49_c00248{left:156.573707pt;}
.x12_c00248{left:157.951456pt;}
.x4c_c00248{left:160.272512pt;}
.x72_c00248{left:162.444661pt;}
.x5b_c00248{left:164.682837pt;}
.xc_c00248{left:166.901931pt;}
.x41_c00248{left:167.975883pt;}
.x13_c00248{left:173.467979pt;}
.x76_c00248{left:175.963989pt;}
.x34_c00248{left:178.958347pt;}
.x6_c00248{left:180.077333pt;}
.x22_c00248{left:181.719371pt;}
.x4a_c00248{left:183.036629pt;}
.x3a_c00248{left:184.740587pt;}
.xd_c00248{left:188.014752pt;}
.x67_c00248{left:188.928299pt;}
.x56_c00248{left:191.570304pt;}
.x53_c00248{left:197.091893pt;}
.x7_c00248{left:203.842667pt;}
.x64_c00248{left:205.013835pt;}
.x2e_c00248{left:208.240971pt;}
.x3b_c00248{left:209.540896pt;}
.x57_c00248{left:211.016171pt;}
.x47_c00248{left:213.487627pt;}
.x1b_c00248{left:216.235488pt;}
.x27_c00248{left:217.224011pt;}
.x5c_c00248{left:218.457813pt;}
.x59_c00248{left:219.418912pt;}
.x7e_c00248{left:220.619296pt;}
.x14_c00248{left:221.944469pt;}
.x6e_c00248{left:224.137611pt;}
.xe_c00248{left:225.369856pt;}
.x1c_c00248{left:228.016896pt;}
.x3c_c00248{left:230.918123pt;}
.x35_c00248{left:233.164576pt;}
.x5a_c00248{left:235.504160pt;}
.x2f_c00248{left:236.563083pt;}
.x15_c00248{left:238.118421pt;}
.x7d_c00248{left:239.103157pt;}
.x42_c00248{left:240.410197pt;}
.x48_c00248{left:242.343947pt;}
.x5d_c00248{left:243.665643pt;}
.x77_c00248{left:245.584085pt;}
.x8_c00248{left:247.298667pt;}
.x1d_c00248{left:248.850059pt;}
.x58_c00248{left:249.907904pt;}
.x6a_c00248{left:250.866379pt;}
.x54_c00248{left:252.067541pt;}
.x16_c00248{left:254.460373pt;}
.x30_c00248{left:256.822133pt;}
.x36_c00248{left:259.147339pt;}
.x5e_c00248{left:262.871381pt;}
.xf_c00248{left:264.596928pt;}
.x4d_c00248{left:267.755563pt;}
.x9_c00248{left:269.748000pt;}
.x28_c00248{left:270.690411pt;}
.x62_c00248{left:273.193771pt;}
.x73_c00248{left:275.226347pt;}
.x23_c00248{left:276.546187pt;}
.x6f_c00248{left:277.435797pt;}
.x3d_c00248{left:278.366485pt;}
.x43_c00248{left:281.764459pt;}
.x4e_c00248{left:282.703499pt;}
.x75_c00248{left:286.726987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00249 {
    display:none;
  }
  .loading-indicator_c00249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00249 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00249 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00249" -> "#page-container .classname_c00249")
 */
.pf_c00249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00249 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00249 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00249 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00249 {overflow:visible;}
  }
}
.c_c00249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00249 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00249:after { /* webkit #35443 */
  content: '';
}
.t_c00249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00249 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00249 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00249 { /* info for Javascript */
  display:none;
}
.l_c00249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00249:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00249 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00249.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00249{transform:matrix(0.016565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016565,0.000000,0.000000,0.250000,0,0);}
.m5a_c00249{transform:matrix(0.092310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092310,0.000000,0.000000,0.250000,0,0);}
.mc2_c00249{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.m53_c00249{transform:matrix(0.128170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128170,0.000000,0.000000,0.250000,0,0);}
.m19_c00249{transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00249{transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.147065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147065,0.000000,0.000000,0.250000,0,0);}
.mdb_c00249{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00249{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00249{transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);}
.maa_c00249{transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);}
.m63_c00249{transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);}
.mda_c00249{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m8a_c00249{transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);}
.mab_c00249{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m5f_c00249{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00249{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.m4b_c00249{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.mba_c00249{transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159015,0.000000,0.000000,0.250000,0,0);}
.m6f_c00249{transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00249{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.me1_c00249{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m67_c00249{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.mde_c00249{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.mb7_c00249{transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);}
.mc7_c00249{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00249{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);}
.m83_c00249{transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);}
.m89_c00249{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00249{transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);}
.m64_c00249{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.m56_c00249{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.me2_c00249{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.mb8_c00249{transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166615,0.000000,0.000000,0.250000,0,0);}
.m61_c00249{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m5d_c00249{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.mc9_c00249{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.mdf_c00249{transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168955,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);}
.m94_c00249{transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);}
.m62_c00249{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00249{transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);}
.m59_c00249{transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);}
.m91_c00249{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.mcf_c00249{transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);}
.m32_c00249{transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m7b_c00249{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m69_c00249{transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);}
.ma3_c00249{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.ma0_c00249{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.mbd_c00249{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.md6_c00249{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00249{transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00249{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);}
.mb6_c00249{transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174910,0.000000,0.000000,0.250000,0,0);}
.m44_c00249{transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);}
.ma7_c00249{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mca_c00249{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m34_c00249{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m42_c00249{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.md1_c00249{transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00249{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.m70_c00249{transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);}
.m8d_c00249{transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);}
.mf1_c00249{transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);}
.mb4_c00249{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m75_c00249{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.178235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178235,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m82_c00249{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.mc5_c00249{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.mf2_c00249{transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);}
.m6d_c00249{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m43_c00249{transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m3c_c00249{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00249{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);}
.mc1_c00249{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.mb0_c00249{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182740,0.000000,0.000000,0.250000,0,0);}
.m6e_c00249{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m9a_c00249{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.mac_c00249{transform:matrix(0.183305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183305,0.000000,0.000000,0.250000,0,0);}
.m30_c00249{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m6b_c00249{transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);}
.mbf_c00249{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m16_c00249{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.m58_c00249{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.mb5_c00249{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m8e_c00249{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.m86_c00249{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.mcc_c00249{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m9c_c00249{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.m78_c00249{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.mcd_c00249{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m23_c00249{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.me3_c00249{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m97_c00249{transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00249{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m41_c00249{transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);}
.me0_c00249{transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);}
.ma8_c00249{transform:matrix(0.188980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188980,0.000000,0.000000,0.250000,0,0);}
.me6_c00249{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m40_c00249{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.mae_c00249{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m4f_c00249{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.mf0_c00249{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00249{transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);}
.m66_c00249{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m90_c00249{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m5e_c00249{transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00249{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m7e_c00249{transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);}
.m54_c00249{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.m74_c00249{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m84_c00249{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.mea_c00249{transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.mc3_c00249{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00249{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.ma5_c00249{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);}
.m55_c00249{transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);}
.m76_c00249{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.mec_c00249{transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);}
.m98_c00249{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m65_c00249{transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);}
.m8b_c00249{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.m93_c00249{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.me4_c00249{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.ma2_c00249{transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);}
.m51_c00249{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.m57_c00249{transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.m49_c00249{transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);}
.m9f_c00249{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.m7f_c00249{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m92_c00249{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.mce_c00249{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.m81_c00249{transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);}
.m8f_c00249{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m96_c00249{transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.me8_c00249{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00249{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);}
.m79_c00249{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.md9_c00249{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m85_c00249{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.mbb_c00249{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.ma6_c00249{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.mdc_c00249{transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);}
.m3e_c00249{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.mc6_c00249{transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);}
.m50_c00249{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.maf_c00249{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.mbe_c00249{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.md3_c00249{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.mb1_c00249{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.meb_c00249{transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204970,0.000000,0.000000,0.250000,0,0);}
.mee_c00249{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.ma9_c00249{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.md7_c00249{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m99_c00249{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.mb9_c00249{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m2f_c00249{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m2d_c00249{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.mef_c00249{transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);}
.med_c00249{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00249{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m68_c00249{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.mad_c00249{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m60_c00249{transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);}
.m71_c00249{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m4e_c00249{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.mb3_c00249{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m80_c00249{transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);}
.m73_c00249{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.m77_c00249{transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);}
.me7_c00249{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m95_c00249{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m9b_c00249{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m88_c00249{transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);}
.me9_c00249{transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);}
.me5_c00249{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);}
.m87_c00249{transform:matrix(0.222410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222410,0.000000,0.000000,0.250000,0,0);}
.md4_c00249{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.md5_c00249{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m9e_c00249{transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);}
.mb2_c00249{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.md8_c00249{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.md2_c00249{transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);}
.md0_c00249{transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);}
.m7a_c00249{transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);}
.m46_c00249{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);}
.m72_c00249{transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{transform:matrix(1.143115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.143115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.143115,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:transparent;}
.fsa_c00249{font-size:58.800000px;}
.fsb_c00249{font-size:59.850000px;}
.fs5_c00249{font-size:61.950000px;}
.fs8_c00249{font-size:64.050000px;}
.fs7_c00249{font-size:65.100000px;}
.fsc_c00249{font-size:66.150000px;}
.fs4_c00249{font-size:67.200000px;}
.fs9_c00249{font-size:68.250000px;}
.fs3_c00249{font-size:69.300000px;}
.fs6_c00249{font-size:70.350000px;}
.fs2_c00249{font-size:71.400000px;}
.fs1_c00249{font-size:72.450000px;}
.fs0_c00249{font-size:84.000000px;}
.y0_c00249{bottom:0.000000px;}
.ydc_c00249{bottom:23.025000px;}
.ydb_c00249{bottom:23.479500px;}
.yda_c00249{bottom:23.818500px;}
.yd9_c00249{bottom:24.184500px;}
.yd8_c00249{bottom:25.470000px;}
.yd7_c00249{bottom:25.915500px;}
.yd6_c00249{bottom:40.726500px;}
.yd5_c00249{bottom:41.043000px;}
.yd4_c00249{bottom:41.706000px;}
.yd3_c00249{bottom:42.229500px;}
.yd2_c00249{bottom:42.450000px;}
.yd1_c00249{bottom:42.880500px;}
.yd0_c00249{bottom:43.210500px;}
.ycf_c00249{bottom:43.737000px;}
.yce_c00249{bottom:58.225500px;}
.ycd_c00249{bottom:58.849500px;}
.ycc_c00249{bottom:59.080500px;}
.ycb_c00249{bottom:59.808000px;}
.yca_c00249{bottom:60.016500px;}
.yc9_c00249{bottom:60.792000px;}
.yc8_c00249{bottom:61.288500px;}
.yc7_c00249{bottom:75.216000px;}
.yc6_c00249{bottom:75.385500px;}
.yc5_c00249{bottom:75.682500px;}
.yc4_c00249{bottom:76.618500px;}
.yc3_c00249{bottom:76.894500px;}
.yc2_c00249{bottom:77.101500px;}
.yc1_c00249{bottom:78.028500px;}
.yc0_c00249{bottom:92.142000px;}
.ybf_c00249{bottom:92.944500px;}
.ybe_c00249{bottom:93.132000px;}
.ybd_c00249{bottom:93.283500px;}
.ybc_c00249{bottom:94.095000px;}
.ybb_c00249{bottom:94.341000px;}
.yba_c00249{bottom:95.079000px;}
.yb9_c00249{bottom:95.577000px;}
.yb8_c00249{bottom:109.324500px;}
.yb7_c00249{bottom:109.569000px;}
.yb6_c00249{bottom:110.155500px;}
.yb5_c00249{bottom:110.433000px;}
.yb4_c00249{bottom:111.198000px;}
.yb3_c00249{bottom:111.442500px;}
.yb2_c00249{bottom:112.236000px;}
.yb1_c00249{bottom:112.858500px;}
.yb0_c00249{bottom:126.504000px;}
.yaf_c00249{bottom:126.960000px;}
.yae_c00249{bottom:127.569000px;}
.yad_c00249{bottom:127.815000px;}
.yac_c00249{bottom:129.231000px;}
.yab_c00249{bottom:129.597000px;}
.yaa_c00249{bottom:143.563500px;}
.ya9_c00249{bottom:145.785000px;}
.ya8_c00249{bottom:146.095500px;}
.ya7_c00249{bottom:146.388000px;}
.ya6_c00249{bottom:147.145500px;}
.ya5_c00249{bottom:161.793000px;}
.ya4_c00249{bottom:162.070500px;}
.ya3_c00249{bottom:162.888000px;}
.ya2_c00249{bottom:163.095000px;}
.ya1_c00249{bottom:163.288500px;}
.ya0_c00249{bottom:163.972500px;}
.y9f_c00249{bottom:164.226000px;}
.y9e_c00249{bottom:164.695500px;}
.y9d_c00249{bottom:178.846500px;}
.y9c_c00249{bottom:179.535000px;}
.y9b_c00249{bottom:179.752500px;}
.y9a_c00249{bottom:180.120000px;}
.y99_c00249{bottom:180.271500px;}
.y98_c00249{bottom:181.044000px;}
.y97_c00249{bottom:181.314000px;}
.y96_c00249{bottom:181.759500px;}
.y95_c00249{bottom:181.974000px;}
.y94_c00249{bottom:182.514000px;}
.y93_c00249{bottom:197.538000px;}
.y92_c00249{bottom:197.880000px;}
.y91_c00249{bottom:198.562500px;}
.y90_c00249{bottom:198.838500px;}
.y8f_c00249{bottom:199.591500px;}
.y8e_c00249{bottom:200.095500px;}
.y8d_c00249{bottom:201.147000px;}
.y8c_c00249{bottom:214.563000px;}
.y8b_c00249{bottom:214.959000px;}
.y8a_c00249{bottom:215.389500px;}
.y89_c00249{bottom:216.570000px;}
.y88_c00249{bottom:217.360500px;}
.y87_c00249{bottom:217.885500px;}
.y86_c00249{bottom:231.613500px;}
.y85_c00249{bottom:232.575000px;}
.y84_c00249{bottom:232.878000px;}
.y83_c00249{bottom:233.275500px;}
.y82_c00249{bottom:234.216000px;}
.y81_c00249{bottom:234.514500px;}
.y80_c00249{bottom:234.843000px;}
.y7f_c00249{bottom:235.435500px;}
.y7e_c00249{bottom:248.652000px;}
.y7d_c00249{bottom:248.971500px;}
.y7c_c00249{bottom:249.993000px;}
.y7b_c00249{bottom:250.449000px;}
.y7a_c00249{bottom:250.746000px;}
.y79_c00249{bottom:252.130500px;}
.y78_c00249{bottom:252.445500px;}
.y77_c00249{bottom:265.779000px;}
.y76_c00249{bottom:265.936500px;}
.y75_c00249{bottom:266.673000px;}
.y74_c00249{bottom:267.198000px;}
.y73_c00249{bottom:267.595500px;}
.y72_c00249{bottom:267.930000px;}
.y71_c00249{bottom:268.263000px;}
.y70_c00249{bottom:268.488000px;}
.y6f_c00249{bottom:268.642500px;}
.y6e_c00249{bottom:282.097500px;}
.y6d_c00249{bottom:282.957000px;}
.y6c_c00249{bottom:283.314000px;}
.y6b_c00249{bottom:284.715000px;}
.y6a_c00249{bottom:285.073500px;}
.y69_c00249{bottom:285.591000px;}
.y68_c00249{bottom:285.924000px;}
.y67_c00249{bottom:301.306500px;}
.y66_c00249{bottom:318.721500px;}
.y65_c00249{bottom:334.384500px;}
.y64_c00249{bottom:334.578000px;}
.y63_c00249{bottom:334.809000px;}
.y62_c00249{bottom:335.617500px;}
.y61_c00249{bottom:335.950500px;}
.y60_c00249{bottom:336.402000px;}
.y5f_c00249{bottom:336.586500px;}
.y5e_c00249{bottom:337.225500px;}
.y5d_c00249{bottom:351.418500px;}
.y5c_c00249{bottom:351.631500px;}
.y5b_c00249{bottom:352.383000px;}
.y5a_c00249{bottom:352.899000px;}
.y59_c00249{bottom:353.517000px;}
.y58_c00249{bottom:353.710500px;}
.y57_c00249{bottom:353.986500px;}
.y56_c00249{bottom:354.235500px;}
.y55_c00249{bottom:368.919000px;}
.y54_c00249{bottom:369.142500px;}
.y53_c00249{bottom:369.834000px;}
.y52_c00249{bottom:370.492500px;}
.y51_c00249{bottom:370.735500px;}
.y50_c00249{bottom:371.299500px;}
.y4f_c00249{bottom:371.422500px;}
.y4e_c00249{bottom:372.058500px;}
.y4d_c00249{bottom:385.372500px;}
.y4c_c00249{bottom:386.419500px;}
.y4b_c00249{bottom:386.827500px;}
.y4a_c00249{bottom:387.961500px;}
.y49_c00249{bottom:388.465500px;}
.y48_c00249{bottom:388.755000px;}
.y47_c00249{bottom:389.280000px;}
.y46_c00249{bottom:389.881500px;}
.y45_c00249{bottom:402.858000px;}
.y44_c00249{bottom:403.221000px;}
.y43_c00249{bottom:404.007000px;}
.y42_c00249{bottom:404.313000px;}
.y41_c00249{bottom:405.094500px;}
.y40_c00249{bottom:405.388500px;}
.y3f_c00249{bottom:405.747000px;}
.y3e_c00249{bottom:406.590000px;}
.y3d_c00249{bottom:407.158500px;}
.y3c_c00249{bottom:420.450000px;}
.y3b_c00249{bottom:421.489500px;}
.y3a_c00249{bottom:421.689000px;}
.y39_c00249{bottom:422.206500px;}
.y38_c00249{bottom:422.512500px;}
.y37_c00249{bottom:422.829000px;}
.y36_c00249{bottom:423.666000px;}
.y35_c00249{bottom:424.168500px;}
.y34_c00249{bottom:437.710500px;}
.y33_c00249{bottom:438.520500px;}
.y32_c00249{bottom:438.838500px;}
.y31_c00249{bottom:439.237500px;}
.y30_c00249{bottom:439.522500px;}
.y2f_c00249{bottom:439.963500px;}
.y2e_c00249{bottom:440.413500px;}
.y2d_c00249{bottom:440.670000px;}
.y2c_c00249{bottom:441.717000px;}
.y2b_c00249{bottom:455.472000px;}
.y2a_c00249{bottom:455.757000px;}
.y29_c00249{bottom:456.538500px;}
.y28_c00249{bottom:456.741000px;}
.y27_c00249{bottom:457.023000px;}
.y26_c00249{bottom:457.204500px;}
.y25_c00249{bottom:458.032500px;}
.y24_c00249{bottom:458.187000px;}
.y23_c00249{bottom:471.943500px;}
.y22_c00249{bottom:472.228500px;}
.y21_c00249{bottom:473.172000px;}
.y20_c00249{bottom:473.580000px;}
.y1f_c00249{bottom:474.646500px;}
.y1e_c00249{bottom:474.928500px;}
.y1d_c00249{bottom:489.415500px;}
.y1c_c00249{bottom:489.787500px;}
.y1b_c00249{bottom:490.290000px;}
.y1a_c00249{bottom:491.224500px;}
.y19_c00249{bottom:491.833500px;}
.y18_c00249{bottom:492.384000px;}
.y17_c00249{bottom:493.020000px;}
.y16_c00249{bottom:504.477000px;}
.y15_c00249{bottom:505.450500px;}
.y14_c00249{bottom:506.221500px;}
.y13_c00249{bottom:506.557500px;}
.y12_c00249{bottom:507.001500px;}
.y11_c00249{bottom:507.360000px;}
.y10_c00249{bottom:507.687000px;}
.yf_c00249{bottom:508.678500px;}
.ye_c00249{bottom:508.984500px;}
.yd_c00249{bottom:509.448000px;}
.yc_c00249{bottom:509.761500px;}
.yb_c00249{bottom:525.057000px;}
.ya_c00249{bottom:540.483000px;}
.y9_c00249{bottom:540.793500px;}
.y8_c00249{bottom:541.549500px;}
.y7_c00249{bottom:541.789500px;}
.y6_c00249{bottom:542.190000px;}
.y5_c00249{bottom:542.371500px;}
.y4_c00249{bottom:542.871000px;}
.y3_c00249{bottom:543.241500px;}
.y2_c00249{bottom:559.320000px;}
.y1_c00249{bottom:572.529000px;}
.hc_c00249{height:58.800000px;}
.hd_c00249{height:59.850000px;}
.h7_c00249{height:61.950000px;}
.ha_c00249{height:64.050000px;}
.h9_c00249{height:65.100000px;}
.he_c00249{height:66.150000px;}
.h6_c00249{height:67.200000px;}
.hb_c00249{height:68.250000px;}
.h5_c00249{height:69.300000px;}
.h8_c00249{height:70.350000px;}
.h4_c00249{height:71.400000px;}
.h3_c00249{height:72.450000px;}
.h2_c00249{height:84.000000px;}
.h1_c00249{height:618.750000px;}
.h0_c00249{height:619.050000px;}
.w0_c00249{width:359.100000px;}
.w1_c00249{width:359.250000px;}
.x0_c00249{left:0.000000px;}
.x7f_c00249{left:31.192500px;}
.x7d_c00249{left:32.274000px;}
.x78_c00249{left:33.946500px;}
.x67_c00249{left:35.193000px;}
.x63_c00249{left:36.595500px;}
.x4c_c00249{left:37.945500px;}
.x48_c00249{left:38.998500px;}
.x2b_c00249{left:40.068000px;}
.x16_c00249{left:41.373000px;}
.x8_c00249{left:42.532500px;}
.x2_c00249{left:43.740000px;}
.x43_c00249{left:47.860500px;}
.x34_c00249{left:49.234500px;}
.x60_c00249{left:51.754500px;}
.x26_c00249{left:54.691500px;}
.x5e_c00249{left:57.939000px;}
.x17_c00249{left:59.800500px;}
.x4d_c00249{left:62.829000px;}
.x22_c00249{left:64.102500px;}
.x82_c00249{left:70.884000px;}
.x56_c00249{left:72.091500px;}
.x3c_c00249{left:75.135000px;}
.x6c_c00249{left:77.044500px;}
.x9_c00249{left:79.564500px;}
.x10_c00249{left:83.430000px;}
.x35_c00249{left:85.152000px;}
.x18_c00249{left:87.076500px;}
.x4e_c00249{left:90.366000px;}
.x49_c00249{left:91.972500px;}
.x6d_c00249{left:93.582000px;}
.x52_c00249{left:95.977500px;}
.x70_c00249{left:98.925000px;}
.x4a_c00249{left:102.172500px;}
.x19_c00249{left:105.102000px;}
.x57_c00249{left:108.001500px;}
.x4f_c00249{left:109.758000px;}
.x53_c00249{left:112.719000px;}
.x2c_c00249{left:114.862500px;}
.x7e_c00249{left:116.560500px;}
.x3_c00249{left:121.230000px;}
.x64_c00249{left:123.765000px;}
.x58_c00249{left:125.551500px;}
.x3d_c00249{left:127.780500px;}
.xa_c00249{left:129.477000px;}
.x44_c00249{left:131.088000px;}
.x2d_c00249{left:133.230000px;}
.x5c_c00249{left:134.461500px;}
.x79_c00249{left:137.010000px;}
.x73_c00249{left:143.541000px;}
.x36_c00249{left:144.901500px;}
.x27_c00249{left:146.539500px;}
.xb_c00249{left:147.565500px;}
.x4b_c00249{left:149.191500px;}
.x3e_c00249{left:150.202500px;}
.x23_c00249{left:153.004500px;}
.x4_c00249{left:154.710000px;}
.x7a_c00249{left:157.530000px;}
.x1e_c00249{left:161.089500px;}
.x74_c00249{left:162.388500px;}
.x11_c00249{left:164.160000px;}
.x2e_c00249{left:165.426000px;}
.x37_c00249{left:167.554500px;}
.x3f_c00249{left:168.618000px;}
.x62_c00249{left:170.266500px;}
.x28_c00249{left:172.132500px;}
.x1_c00249{left:174.690000px;}
.x59_c00249{left:176.041500px;}
.x6b_c00249{left:180.247500px;}
.x5_c00249{left:181.710000px;}
.x54_c00249{left:184.003500px;}
.x6f_c00249{left:186.151500px;}
.xc_c00249{left:187.573500px;}
.x38_c00249{left:189.427500px;}
.x29_c00249{left:190.495500px;}
.x12_c00249{left:193.320000px;}
.x5d_c00249{left:195.751500px;}
.x2f_c00249{left:196.950000px;}
.x5f_c00249{left:200.227500px;}
.x1a_c00249{left:203.719500px;}
.x6_c00249{left:207.630000px;}
.xd_c00249{left:211.558500px;}
.x68_c00249{left:213.463500px;}
.x80_c00249{left:215.628000px;}
.x30_c00249{left:217.267500px;}
.x65_c00249{left:219.345000px;}
.x75_c00249{left:221.259000px;}
.x1f_c00249{left:223.380000px;}
.x7b_c00249{left:225.117000px;}
.x39_c00249{left:226.387500px;}
.x45_c00249{left:227.413500px;}
.x72_c00249{left:228.559500px;}
.x1b_c00249{left:229.824000px;}
.x5a_c00249{left:231.391500px;}
.x40_c00249{left:236.607000px;}
.x7c_c00249{left:237.744000px;}
.x3a_c00249{left:240.684000px;}
.x76_c00249{left:242.589000px;}
.x69_c00249{left:244.249500px;}
.x31_c00249{left:245.814000px;}
.x6e_c00249{left:247.980000px;}
.x1c_c00249{left:249.606000px;}
.x46_c00249{left:251.440500px;}
.x13_c00249{left:254.070000px;}
.x20_c00249{left:256.929000px;}
.x2a_c00249{left:261.556500px;}
.x24_c00249{left:265.536000px;}
.x32_c00249{left:268.489500px;}
.x6a_c00249{left:272.545500px;}
.x14_c00249{left:276.480000px;}
.x55_c00249{left:278.500500px;}
.x21_c00249{left:281.698500px;}
.x61_c00249{left:283.923000px;}
.x41_c00249{left:285.735000px;}
.xe_c00249{left:287.118000px;}
.x25_c00249{left:289.290000px;}
.x83_c00249{left:293.091000px;}
.x7_c00249{left:295.380000px;}
.x50_c00249{left:298.272000px;}
.x15_c00249{left:299.700000px;}
.x81_c00249{left:304.693500px;}
.x77_c00249{left:306.547500px;}
.x42_c00249{left:308.413500px;}
.x66_c00249{left:309.583500px;}
.x5b_c00249{left:311.041500px;}
.x47_c00249{left:312.991500px;}
.x3b_c00249{left:314.923500px;}
.xf_c00249{left:318.205500px;}
.x51_c00249{left:319.557000px;}
.x33_c00249{left:326.319000px;}
.x71_c00249{left:334.366500px;}
.x1d_c00249{left:352.207500px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fsa_c00249{font-size:52.266667pt;}
.fsb_c00249{font-size:53.200000pt;}
.fs5_c00249{font-size:55.066667pt;}
.fs8_c00249{font-size:56.933333pt;}
.fs7_c00249{font-size:57.866667pt;}
.fsc_c00249{font-size:58.800000pt;}
.fs4_c00249{font-size:59.733333pt;}
.fs9_c00249{font-size:60.666667pt;}
.fs3_c00249{font-size:61.600000pt;}
.fs6_c00249{font-size:62.533333pt;}
.fs2_c00249{font-size:63.466667pt;}
.fs1_c00249{font-size:64.400000pt;}
.fs0_c00249{font-size:74.666667pt;}
.y0_c00249{bottom:0.000000pt;}
.ydc_c00249{bottom:20.466667pt;}
.ydb_c00249{bottom:20.870667pt;}
.yda_c00249{bottom:21.172000pt;}
.yd9_c00249{bottom:21.497333pt;}
.yd8_c00249{bottom:22.640000pt;}
.yd7_c00249{bottom:23.036000pt;}
.yd6_c00249{bottom:36.201333pt;}
.yd5_c00249{bottom:36.482667pt;}
.yd4_c00249{bottom:37.072000pt;}
.yd3_c00249{bottom:37.537333pt;}
.yd2_c00249{bottom:37.733333pt;}
.yd1_c00249{bottom:38.116000pt;}
.yd0_c00249{bottom:38.409333pt;}
.ycf_c00249{bottom:38.877333pt;}
.yce_c00249{bottom:51.756000pt;}
.ycd_c00249{bottom:52.310667pt;}
.ycc_c00249{bottom:52.516000pt;}
.ycb_c00249{bottom:53.162667pt;}
.yca_c00249{bottom:53.348000pt;}
.yc9_c00249{bottom:54.037333pt;}
.yc8_c00249{bottom:54.478667pt;}
.yc7_c00249{bottom:66.858667pt;}
.yc6_c00249{bottom:67.009333pt;}
.yc5_c00249{bottom:67.273333pt;}
.yc4_c00249{bottom:68.105333pt;}
.yc3_c00249{bottom:68.350667pt;}
.yc2_c00249{bottom:68.534667pt;}
.yc1_c00249{bottom:69.358667pt;}
.yc0_c00249{bottom:81.904000pt;}
.ybf_c00249{bottom:82.617333pt;}
.ybe_c00249{bottom:82.784000pt;}
.ybd_c00249{bottom:82.918667pt;}
.ybc_c00249{bottom:83.640000pt;}
.ybb_c00249{bottom:83.858667pt;}
.yba_c00249{bottom:84.514667pt;}
.yb9_c00249{bottom:84.957333pt;}
.yb8_c00249{bottom:97.177333pt;}
.yb7_c00249{bottom:97.394667pt;}
.yb6_c00249{bottom:97.916000pt;}
.yb5_c00249{bottom:98.162667pt;}
.yb4_c00249{bottom:98.842667pt;}
.yb3_c00249{bottom:99.060000pt;}
.yb2_c00249{bottom:99.765333pt;}
.yb1_c00249{bottom:100.318667pt;}
.yb0_c00249{bottom:112.448000pt;}
.yaf_c00249{bottom:112.853333pt;}
.yae_c00249{bottom:113.394667pt;}
.yad_c00249{bottom:113.613333pt;}
.yac_c00249{bottom:114.872000pt;}
.yab_c00249{bottom:115.197333pt;}
.yaa_c00249{bottom:127.612000pt;}
.ya9_c00249{bottom:129.586667pt;}
.ya8_c00249{bottom:129.862667pt;}
.ya7_c00249{bottom:130.122667pt;}
.ya6_c00249{bottom:130.796000pt;}
.ya5_c00249{bottom:143.816000pt;}
.ya4_c00249{bottom:144.062667pt;}
.ya3_c00249{bottom:144.789333pt;}
.ya2_c00249{bottom:144.973333pt;}
.ya1_c00249{bottom:145.145333pt;}
.ya0_c00249{bottom:145.753333pt;}
.y9f_c00249{bottom:145.978667pt;}
.y9e_c00249{bottom:146.396000pt;}
.y9d_c00249{bottom:158.974667pt;}
.y9c_c00249{bottom:159.586667pt;}
.y9b_c00249{bottom:159.780000pt;}
.y9a_c00249{bottom:160.106667pt;}
.y99_c00249{bottom:160.241333pt;}
.y98_c00249{bottom:160.928000pt;}
.y97_c00249{bottom:161.168000pt;}
.y96_c00249{bottom:161.564000pt;}
.y95_c00249{bottom:161.754667pt;}
.y94_c00249{bottom:162.234667pt;}
.y93_c00249{bottom:175.589333pt;}
.y92_c00249{bottom:175.893333pt;}
.y91_c00249{bottom:176.500000pt;}
.y90_c00249{bottom:176.745333pt;}
.y8f_c00249{bottom:177.414667pt;}
.y8e_c00249{bottom:177.862667pt;}
.y8d_c00249{bottom:178.797333pt;}
.y8c_c00249{bottom:190.722667pt;}
.y8b_c00249{bottom:191.074667pt;}
.y8a_c00249{bottom:191.457333pt;}
.y89_c00249{bottom:192.506667pt;}
.y88_c00249{bottom:193.209333pt;}
.y87_c00249{bottom:193.676000pt;}
.y86_c00249{bottom:205.878667pt;}
.y85_c00249{bottom:206.733333pt;}
.y84_c00249{bottom:207.002667pt;}
.y83_c00249{bottom:207.356000pt;}
.y82_c00249{bottom:208.192000pt;}
.y81_c00249{bottom:208.457333pt;}
.y80_c00249{bottom:208.749333pt;}
.y7f_c00249{bottom:209.276000pt;}
.y7e_c00249{bottom:221.024000pt;}
.y7d_c00249{bottom:221.308000pt;}
.y7c_c00249{bottom:222.216000pt;}
.y7b_c00249{bottom:222.621333pt;}
.y7a_c00249{bottom:222.885333pt;}
.y79_c00249{bottom:224.116000pt;}
.y78_c00249{bottom:224.396000pt;}
.y77_c00249{bottom:236.248000pt;}
.y76_c00249{bottom:236.388000pt;}
.y75_c00249{bottom:237.042667pt;}
.y74_c00249{bottom:237.509333pt;}
.y73_c00249{bottom:237.862667pt;}
.y72_c00249{bottom:238.160000pt;}
.y71_c00249{bottom:238.456000pt;}
.y70_c00249{bottom:238.656000pt;}
.y6f_c00249{bottom:238.793333pt;}
.y6e_c00249{bottom:250.753333pt;}
.y6d_c00249{bottom:251.517333pt;}
.y6c_c00249{bottom:251.834667pt;}
.y6b_c00249{bottom:253.080000pt;}
.y6a_c00249{bottom:253.398667pt;}
.y69_c00249{bottom:253.858667pt;}
.y68_c00249{bottom:254.154667pt;}
.y67_c00249{bottom:267.828000pt;}
.y66_c00249{bottom:283.308000pt;}
.y65_c00249{bottom:297.230667pt;}
.y64_c00249{bottom:297.402667pt;}
.y63_c00249{bottom:297.608000pt;}
.y62_c00249{bottom:298.326667pt;}
.y61_c00249{bottom:298.622667pt;}
.y60_c00249{bottom:299.024000pt;}
.y5f_c00249{bottom:299.188000pt;}
.y5e_c00249{bottom:299.756000pt;}
.y5d_c00249{bottom:312.372000pt;}
.y5c_c00249{bottom:312.561333pt;}
.y5b_c00249{bottom:313.229333pt;}
.y5a_c00249{bottom:313.688000pt;}
.y59_c00249{bottom:314.237333pt;}
.y58_c00249{bottom:314.409333pt;}
.y57_c00249{bottom:314.654667pt;}
.y56_c00249{bottom:314.876000pt;}
.y55_c00249{bottom:327.928000pt;}
.y54_c00249{bottom:328.126667pt;}
.y53_c00249{bottom:328.741333pt;}
.y52_c00249{bottom:329.326667pt;}
.y51_c00249{bottom:329.542667pt;}
.y50_c00249{bottom:330.044000pt;}
.y4f_c00249{bottom:330.153333pt;}
.y4e_c00249{bottom:330.718667pt;}
.y4d_c00249{bottom:342.553333pt;}
.y4c_c00249{bottom:343.484000pt;}
.y4b_c00249{bottom:343.846667pt;}
.y4a_c00249{bottom:344.854667pt;}
.y49_c00249{bottom:345.302667pt;}
.y48_c00249{bottom:345.560000pt;}
.y47_c00249{bottom:346.026667pt;}
.y46_c00249{bottom:346.561333pt;}
.y45_c00249{bottom:358.096000pt;}
.y44_c00249{bottom:358.418667pt;}
.y43_c00249{bottom:359.117333pt;}
.y42_c00249{bottom:359.389333pt;}
.y41_c00249{bottom:360.084000pt;}
.y40_c00249{bottom:360.345333pt;}
.y3f_c00249{bottom:360.664000pt;}
.y3e_c00249{bottom:361.413333pt;}
.y3d_c00249{bottom:361.918667pt;}
.y3c_c00249{bottom:373.733333pt;}
.y3b_c00249{bottom:374.657333pt;}
.y3a_c00249{bottom:374.834667pt;}
.y39_c00249{bottom:375.294667pt;}
.y38_c00249{bottom:375.566667pt;}
.y37_c00249{bottom:375.848000pt;}
.y36_c00249{bottom:376.592000pt;}
.y35_c00249{bottom:377.038667pt;}
.y34_c00249{bottom:389.076000pt;}
.y33_c00249{bottom:389.796000pt;}
.y32_c00249{bottom:390.078667pt;}
.y31_c00249{bottom:390.433333pt;}
.y30_c00249{bottom:390.686667pt;}
.y2f_c00249{bottom:391.078667pt;}
.y2e_c00249{bottom:391.478667pt;}
.y2d_c00249{bottom:391.706667pt;}
.y2c_c00249{bottom:392.637333pt;}
.y2b_c00249{bottom:404.864000pt;}
.y2a_c00249{bottom:405.117333pt;}
.y29_c00249{bottom:405.812000pt;}
.y28_c00249{bottom:405.992000pt;}
.y27_c00249{bottom:406.242667pt;}
.y26_c00249{bottom:406.404000pt;}
.y25_c00249{bottom:407.140000pt;}
.y24_c00249{bottom:407.277333pt;}
.y23_c00249{bottom:419.505333pt;}
.y22_c00249{bottom:419.758667pt;}
.y21_c00249{bottom:420.597333pt;}
.y20_c00249{bottom:420.960000pt;}
.y1f_c00249{bottom:421.908000pt;}
.y1e_c00249{bottom:422.158667pt;}
.y1d_c00249{bottom:435.036000pt;}
.y1c_c00249{bottom:435.366667pt;}
.y1b_c00249{bottom:435.813333pt;}
.y1a_c00249{bottom:436.644000pt;}
.y19_c00249{bottom:437.185333pt;}
.y18_c00249{bottom:437.674667pt;}
.y17_c00249{bottom:438.240000pt;}
.y16_c00249{bottom:448.424000pt;}
.y15_c00249{bottom:449.289333pt;}
.y14_c00249{bottom:449.974667pt;}
.y13_c00249{bottom:450.273333pt;}
.y12_c00249{bottom:450.668000pt;}
.y11_c00249{bottom:450.986667pt;}
.y10_c00249{bottom:451.277333pt;}
.yf_c00249{bottom:452.158667pt;}
.ye_c00249{bottom:452.430667pt;}
.yd_c00249{bottom:452.842667pt;}
.yc_c00249{bottom:453.121333pt;}
.yb_c00249{bottom:466.717333pt;}
.ya_c00249{bottom:480.429333pt;}
.y9_c00249{bottom:480.705333pt;}
.y8_c00249{bottom:481.377333pt;}
.y7_c00249{bottom:481.590667pt;}
.y6_c00249{bottom:481.946667pt;}
.y5_c00249{bottom:482.108000pt;}
.y4_c00249{bottom:482.552000pt;}
.y3_c00249{bottom:482.881333pt;}
.y2_c00249{bottom:497.173333pt;}
.y1_c00249{bottom:508.914667pt;}
.hc_c00249{height:52.266667pt;}
.hd_c00249{height:53.200000pt;}
.h7_c00249{height:55.066667pt;}
.ha_c00249{height:56.933333pt;}
.h9_c00249{height:57.866667pt;}
.he_c00249{height:58.800000pt;}
.h6_c00249{height:59.733333pt;}
.hb_c00249{height:60.666667pt;}
.h5_c00249{height:61.600000pt;}
.h8_c00249{height:62.533333pt;}
.h4_c00249{height:63.466667pt;}
.h3_c00249{height:64.400000pt;}
.h2_c00249{height:74.666667pt;}
.h1_c00249{height:550.000000pt;}
.h0_c00249{height:550.266667pt;}
.w0_c00249{width:319.200000pt;}
.w1_c00249{width:319.333333pt;}
.x0_c00249{left:0.000000pt;}
.x7f_c00249{left:27.726667pt;}
.x7d_c00249{left:28.688000pt;}
.x78_c00249{left:30.174667pt;}
.x67_c00249{left:31.282667pt;}
.x63_c00249{left:32.529333pt;}
.x4c_c00249{left:33.729333pt;}
.x48_c00249{left:34.665333pt;}
.x2b_c00249{left:35.616000pt;}
.x16_c00249{left:36.776000pt;}
.x8_c00249{left:37.806667pt;}
.x2_c00249{left:38.880000pt;}
.x43_c00249{left:42.542667pt;}
.x34_c00249{left:43.764000pt;}
.x60_c00249{left:46.004000pt;}
.x26_c00249{left:48.614667pt;}
.x5e_c00249{left:51.501333pt;}
.x17_c00249{left:53.156000pt;}
.x4d_c00249{left:55.848000pt;}
.x22_c00249{left:56.980000pt;}
.x82_c00249{left:63.008000pt;}
.x56_c00249{left:64.081333pt;}
.x3c_c00249{left:66.786667pt;}
.x6c_c00249{left:68.484000pt;}
.x9_c00249{left:70.724000pt;}
.x10_c00249{left:74.160000pt;}
.x35_c00249{left:75.690667pt;}
.x18_c00249{left:77.401333pt;}
.x4e_c00249{left:80.325333pt;}
.x49_c00249{left:81.753333pt;}
.x6d_c00249{left:83.184000pt;}
.x52_c00249{left:85.313333pt;}
.x70_c00249{left:87.933333pt;}
.x4a_c00249{left:90.820000pt;}
.x19_c00249{left:93.424000pt;}
.x57_c00249{left:96.001333pt;}
.x4f_c00249{left:97.562667pt;}
.x53_c00249{left:100.194667pt;}
.x2c_c00249{left:102.100000pt;}
.x7e_c00249{left:103.609333pt;}
.x3_c00249{left:107.760000pt;}
.x64_c00249{left:110.013333pt;}
.x58_c00249{left:111.601333pt;}
.x3d_c00249{left:113.582667pt;}
.xa_c00249{left:115.090667pt;}
.x44_c00249{left:116.522667pt;}
.x2d_c00249{left:118.426667pt;}
.x5c_c00249{left:119.521333pt;}
.x79_c00249{left:121.786667pt;}
.x73_c00249{left:127.592000pt;}
.x36_c00249{left:128.801333pt;}
.x27_c00249{left:130.257333pt;}
.xb_c00249{left:131.169333pt;}
.x4b_c00249{left:132.614667pt;}
.x3e_c00249{left:133.513333pt;}
.x23_c00249{left:136.004000pt;}
.x4_c00249{left:137.520000pt;}
.x7a_c00249{left:140.026667pt;}
.x1e_c00249{left:143.190667pt;}
.x74_c00249{left:144.345333pt;}
.x11_c00249{left:145.920000pt;}
.x2e_c00249{left:147.045333pt;}
.x37_c00249{left:148.937333pt;}
.x3f_c00249{left:149.882667pt;}
.x62_c00249{left:151.348000pt;}
.x28_c00249{left:153.006667pt;}
.x1_c00249{left:155.280000pt;}
.x59_c00249{left:156.481333pt;}
.x6b_c00249{left:160.220000pt;}
.x5_c00249{left:161.520000pt;}
.x54_c00249{left:163.558667pt;}
.x6f_c00249{left:165.468000pt;}
.xc_c00249{left:166.732000pt;}
.x38_c00249{left:168.380000pt;}
.x29_c00249{left:169.329333pt;}
.x12_c00249{left:171.840000pt;}
.x5d_c00249{left:174.001333pt;}
.x2f_c00249{left:175.066667pt;}
.x5f_c00249{left:177.980000pt;}
.x1a_c00249{left:181.084000pt;}
.x6_c00249{left:184.560000pt;}
.xd_c00249{left:188.052000pt;}
.x68_c00249{left:189.745333pt;}
.x80_c00249{left:191.669333pt;}
.x30_c00249{left:193.126667pt;}
.x65_c00249{left:194.973333pt;}
.x75_c00249{left:196.674667pt;}
.x1f_c00249{left:198.560000pt;}
.x7b_c00249{left:200.104000pt;}
.x39_c00249{left:201.233333pt;}
.x45_c00249{left:202.145333pt;}
.x72_c00249{left:203.164000pt;}
.x1b_c00249{left:204.288000pt;}
.x5a_c00249{left:205.681333pt;}
.x40_c00249{left:210.317333pt;}
.x7c_c00249{left:211.328000pt;}
.x3a_c00249{left:213.941333pt;}
.x76_c00249{left:215.634667pt;}
.x69_c00249{left:217.110667pt;}
.x31_c00249{left:218.501333pt;}
.x6e_c00249{left:220.426667pt;}
.x1c_c00249{left:221.872000pt;}
.x46_c00249{left:223.502667pt;}
.x13_c00249{left:225.840000pt;}
.x20_c00249{left:228.381333pt;}
.x2a_c00249{left:232.494667pt;}
.x24_c00249{left:236.032000pt;}
.x32_c00249{left:238.657333pt;}
.x6a_c00249{left:242.262667pt;}
.x14_c00249{left:245.760000pt;}
.x55_c00249{left:247.556000pt;}
.x21_c00249{left:250.398667pt;}
.x61_c00249{left:252.376000pt;}
.x41_c00249{left:253.986667pt;}
.xe_c00249{left:255.216000pt;}
.x25_c00249{left:257.146667pt;}
.x83_c00249{left:260.525333pt;}
.x7_c00249{left:262.560000pt;}
.x50_c00249{left:265.130667pt;}
.x15_c00249{left:266.400000pt;}
.x81_c00249{left:270.838667pt;}
.x77_c00249{left:272.486667pt;}
.x42_c00249{left:274.145333pt;}
.x66_c00249{left:275.185333pt;}
.x5b_c00249{left:276.481333pt;}
.x47_c00249{left:278.214667pt;}
.x3b_c00249{left:279.932000pt;}
.xf_c00249{left:282.849333pt;}
.x51_c00249{left:284.050667pt;}
.x33_c00249{left:290.061333pt;}
.x71_c00249{left:297.214667pt;}
.x1d_c00249{left:313.073333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00250 {
    display:none;
  }
  .loading-indicator_c00250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00250 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00250 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00250" -> "#page-container .classname_c00250")
 */
.pf_c00250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00250 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00250 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00250 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00250 {overflow:visible;}
  }
}
.c_c00250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00250 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00250:after { /* webkit #35443 */
  content: '';
}
.t_c00250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00250 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00250 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00250 { /* info for Javascript */
  display:none;
}
.l_c00250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00250:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00250 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00250.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00250{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.mea_c00250{transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);}
.mec_c00250{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.mac_c00250{transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);}
.m95_c00250{transform:matrix(0.152320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152320,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m61_c00250{transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155520,0.000000,0.000000,0.250000,0,0);}
.m5e_c00250{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m58_c00250{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.ma8_c00250{transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);}
.m93_c00250{transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);}
.m86_c00250{transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);}
.m5f_c00250{transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);}
.md5_c00250{transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00250{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m64_c00250{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m90_c00250{transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);}
.m6a_c00250{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.ma7_c00250{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m6c_c00250{transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);}
.mcd_c00250{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m67_c00250{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.med_c00250{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);}
.md4_c00250{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m74_c00250{transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00250{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m59_c00250{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.m9e_c00250{transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);}
.me7_c00250{transform:matrix(0.170365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170365,0.000000,0.000000,0.250000,0,0);}
.m53_c00250{transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m96_c00250{transform:matrix(0.171410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171410,0.000000,0.000000,0.250000,0,0);}
.me2_c00250{transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172740,0.000000,0.000000,0.250000,0,0);}
.md2_c00250{transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);}
.m9d_c00250{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m41_c00250{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00250{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.m6b_c00250{transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);}
.m69_c00250{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.m62_c00250{transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);}
.m5c_c00250{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00250{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m52_c00250{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m39_c00250{transform:matrix(0.175780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175780,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m9a_c00250{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m66_c00250{transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m6e_c00250{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.m4e_c00250{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.m70_c00250{transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m2a_c00250{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);}
.me8_c00250{transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);}
.m68_c00250{transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m91_c00250{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m9f_c00250{transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181680,0.000000,0.000000,0.250000,0,0);}
.m72_c00250{transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);}
.mab_c00250{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.mb8_c00250{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.mb3_c00250{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.me4_c00250{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.mf0_c00250{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m31_c00250{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);}
.m6f_c00250{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.mbb_c00250{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m54_c00250{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00250{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.mb7_c00250{transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);}
.me1_c00250{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m83_c00250{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.ma5_c00250{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.ma9_c00250{transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);}
.mda_c00250{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.maa_c00250{transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m94_c00250{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.me9_c00250{transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.m63_c00250{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);}
.mee_c00250{transform:matrix(0.190785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190785,0.000000,0.000000,0.250000,0,0);}
.m51_c00250{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m5d_c00250{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m99_c00250{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00250{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.mef_c00250{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.md1_c00250{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.mb0_c00250{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.meb_c00250{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m98_c00250{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.m7f_c00250{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m7e_c00250{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m65_c00250{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.m7c_c00250{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00250{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m8e_c00250{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);}
.m60_c00250{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00250{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.ma0_c00250{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.md6_c00250{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m3e_c00250{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.ma3_c00250{transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mb1_c00250{transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);}
.me5_c00250{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.ma4_c00250{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m71_c00250{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.mad_c00250{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m5a_c00250{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.m3a_c00250{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m42_c00250{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m46_c00250{transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202495,0.000000,0.000000,0.250000,0,0);}
.mf1_c00250{transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m35_c00250{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m78_c00250{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m5b_c00250{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.md9_c00250{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m44_c00250{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.md3_c00250{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m57_c00250{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00250{transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00250{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.m92_c00250{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.md0_c00250{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m49_c00250{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m82_c00250{transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);}
.m34_c00250{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m56_c00250{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m45_c00250{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.m77_c00250{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m73_c00250{transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);}
.mb6_c00250{transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);}
.md7_c00250{transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);}
.m32_c00250{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.me6_c00250{transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00250{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.me0_c00250{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.m97_c00250{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.mde_c00250{transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);}
.m75_c00250{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00250{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.ma1_c00250{transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.m55_c00250{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213060,0.000000,0.000000,0.250000,0,0);}
.m7a_c00250{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m81_c00250{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m79_c00250{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.mce_c00250{transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);}
.m6d_c00250{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.mca_c00250{transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.mcc_c00250{transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);}
.m7d_c00250{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m80_c00250{transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);}
.mdd_c00250{transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);}
.ma2_c00250{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00250{transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);}
.mc3_c00250{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maf_c00250{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);}
.m40_c00250{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.mcf_c00250{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.mc4_c00250{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m48_c00250{transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);}
.m87_c00250{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.m85_c00250{transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);}
.mbe_c00250{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.me3_c00250{transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);}
.m8c_c00250{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m50_c00250{transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);}
.mc2_c00250{transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);}
.m33_c00250{transform:matrix(0.227595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227595,0.000000,0.000000,0.250000,0,0);}
.mdc_c00250{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.mb9_c00250{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);}
.m8f_c00250{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m43_c00250{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.mb5_c00250{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m8b_c00250{transform:matrix(0.229870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229870,0.000000,0.000000,0.250000,0,0);}
.md8_c00250{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m9b_c00250{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.m36_c00250{transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);}
.m89_c00250{transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);}
.m29_c00250{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.mb2_c00250{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m88_c00250{transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);}
.mcb_c00250{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.mc8_c00250{transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);}
.mc5_c00250{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.mba_c00250{transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);}
.m3f_c00250{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00250{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.mc6_c00250{transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);}
.mdb_c00250{transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);}
.mbd_c00250{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.mc9_c00250{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m38_c00250{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.mbf_c00250{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m4b_c00250{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m84_c00250{transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);}
.m76_c00250{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m30_c00250{transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);}
.m4a_c00250{transform:matrix(0.258700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258700,0.000000,0.000000,0.250000,0,0);}
.mae_c00250{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.mbc_c00250{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m37_c00250{transform:matrix(0.272260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272260,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.278135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278135,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:0.000000px;}
.fc0_c00250{color:transparent;}
.fsd_c00250{font-size:52.500000px;}
.fs1_c00250{font-size:55.650000px;}
.fsb_c00250{font-size:57.750000px;}
.fs5_c00250{font-size:58.800000px;}
.fsc_c00250{font-size:59.850000px;}
.fs6_c00250{font-size:60.900000px;}
.fs4_c00250{font-size:61.950000px;}
.fs3_c00250{font-size:63.000000px;}
.fsa_c00250{font-size:64.050000px;}
.fs8_c00250{font-size:66.150000px;}
.fs7_c00250{font-size:67.200000px;}
.fs9_c00250{font-size:68.250000px;}
.fs2_c00250{font-size:69.300000px;}
.fs0_c00250{font-size:71.400000px;}
.y0_c00250{bottom:0.000000px;}
.y8a_c00250{bottom:34.560000px;}
.y89_c00250{bottom:52.800000px;}
.y88_c00250{bottom:53.319000px;}
.y87_c00250{bottom:53.749500px;}
.y86_c00250{bottom:54.258000px;}
.y85_c00250{bottom:55.891500px;}
.y84_c00250{bottom:67.234500px;}
.y83_c00250{bottom:67.863000px;}
.y82_c00250{bottom:68.238000px;}
.y81_c00250{bottom:68.452500px;}
.y80_c00250{bottom:69.112500px;}
.y7f_c00250{bottom:69.414000px;}
.y7e_c00250{bottom:70.234500px;}
.y7d_c00250{bottom:70.470000px;}
.y7c_c00250{bottom:88.621500px;}
.y7b_c00250{bottom:105.057000px;}
.y7a_c00250{bottom:122.848500px;}
.y79_c00250{bottom:136.798500px;}
.y78_c00250{bottom:156.868500px;}
.y77_c00250{bottom:172.563000px;}
.y76_c00250{bottom:190.200000px;}
.y75_c00250{bottom:207.150000px;}
.y74_c00250{bottom:224.038500px;}
.y73_c00250{bottom:240.808500px;}
.y6c_c00250{bottom:256.770000px;}
.y6d_c00250{bottom:257.374500px;}
.y6e_c00250{bottom:257.577000px;}
.y6f_c00250{bottom:258.282000px;}
.y70_c00250{bottom:258.588000px;}
.y71_c00250{bottom:259.168500px;}
.y72_c00250{bottom:259.513500px;}
.y64_c00250{bottom:274.320000px;}
.y65_c00250{bottom:274.776000px;}
.y66_c00250{bottom:275.017500px;}
.y67_c00250{bottom:275.683500px;}
.y68_c00250{bottom:275.970000px;}
.y69_c00250{bottom:276.148500px;}
.y6a_c00250{bottom:276.799500px;}
.y6b_c00250{bottom:276.993000px;}
.y5c_c00250{bottom:291.601500px;}
.y5d_c00250{bottom:291.816000px;}
.y5e_c00250{bottom:292.353000px;}
.y5f_c00250{bottom:292.575000px;}
.y60_c00250{bottom:292.990500px;}
.y61_c00250{bottom:293.436000px;}
.y62_c00250{bottom:293.944500px;}
.y63_c00250{bottom:294.612000px;}
.y5b_c00250{bottom:309.393000px;}
.y5a_c00250{bottom:327.120000px;}
.y54_c00250{bottom:341.016000px;}
.y55_c00250{bottom:341.607000px;}
.y56_c00250{bottom:342.781500px;}
.y57_c00250{bottom:343.722000px;}
.y58_c00250{bottom:344.703000px;}
.y59_c00250{bottom:345.304500px;}
.y53_c00250{bottom:356.547000px;}
.y52_c00250{bottom:356.754000px;}
.y51_c00250{bottom:357.079500px;}
.y50_c00250{bottom:357.451500px;}
.y4f_c00250{bottom:357.654000px;}
.y4e_c00250{bottom:357.805500px;}
.y4d_c00250{bottom:358.096500px;}
.y4c_c00250{bottom:358.311000px;}
.y4b_c00250{bottom:359.017500px;}
.y4a_c00250{bottom:359.374500px;}
.y42_c00250{bottom:374.493000px;}
.y43_c00250{bottom:374.991000px;}
.y44_c00250{bottom:375.181500px;}
.y45_c00250{bottom:376.333500px;}
.y46_c00250{bottom:376.510500px;}
.y47_c00250{bottom:376.768500px;}
.y48_c00250{bottom:377.359500px;}
.y49_c00250{bottom:378.327000px;}
.y39_c00250{bottom:390.424500px;}
.y3a_c00250{bottom:390.715500px;}
.y3b_c00250{bottom:391.230000px;}
.y3c_c00250{bottom:391.570500px;}
.y3d_c00250{bottom:392.656500px;}
.y3e_c00250{bottom:393.385500px;}
.y3f_c00250{bottom:394.377000px;}
.y40_c00250{bottom:394.983000px;}
.y41_c00250{bottom:395.901000px;}
.y38_c00250{bottom:411.448500px;}
.y30_c00250{bottom:425.793000px;}
.y31_c00250{bottom:426.729000px;}
.y32_c00250{bottom:427.059000px;}
.y33_c00250{bottom:428.032500px;}
.y34_c00250{bottom:428.286000px;}
.y35_c00250{bottom:428.718000px;}
.y36_c00250{bottom:429.748500px;}
.y37_c00250{bottom:429.981000px;}
.y2b_c00250{bottom:442.264500px;}
.y2c_c00250{bottom:443.967000px;}
.y2d_c00250{bottom:444.321000px;}
.y2e_c00250{bottom:445.629000px;}
.y2f_c00250{bottom:446.946000px;}
.y24_c00250{bottom:460.624500px;}
.y25_c00250{bottom:461.202000px;}
.y26_c00250{bottom:461.466000px;}
.y27_c00250{bottom:462.222000px;}
.y28_c00250{bottom:462.804000px;}
.y29_c00250{bottom:463.072500px;}
.y2a_c00250{bottom:463.881000px;}
.y1b_c00250{bottom:478.983000px;}
.y1c_c00250{bottom:479.617500px;}
.y1d_c00250{bottom:479.745000px;}
.y1e_c00250{bottom:479.953500px;}
.y1f_c00250{bottom:480.256500px;}
.y20_c00250{bottom:480.429000px;}
.y21_c00250{bottom:480.975000px;}
.y22_c00250{bottom:481.176000px;}
.y23_c00250{bottom:481.798500px;}
.y13_c00250{bottom:496.533000px;}
.y14_c00250{bottom:497.344500px;}
.y15_c00250{bottom:497.617500px;}
.y16_c00250{bottom:498.112500px;}
.y17_c00250{bottom:498.400500px;}
.y18_c00250{bottom:498.831000px;}
.y19_c00250{bottom:499.383000px;}
.y1a_c00250{bottom:499.597500px;}
.yc_c00250{bottom:511.116000px;}
.yd_c00250{bottom:512.100000px;}
.ye_c00250{bottom:512.878500px;}
.yf_c00250{bottom:513.618000px;}
.y10_c00250{bottom:514.048500px;}
.y11_c00250{bottom:515.076000px;}
.y12_c00250{bottom:515.421000px;}
.y4_c00250{bottom:529.743000px;}
.y5_c00250{bottom:530.281500px;}
.y6_c00250{bottom:530.706000px;}
.y7_c00250{bottom:531.184500px;}
.y8_c00250{bottom:531.688500px;}
.y9_c00250{bottom:532.923000px;}
.ya_c00250{bottom:533.232000px;}
.yb_c00250{bottom:533.827500px;}
.y3_c00250{bottom:546.882000px;}
.y2_c00250{bottom:563.938500px;}
.y1_c00250{bottom:577.659000px;}
.hf_c00250{height:52.500000px;}
.h3_c00250{height:55.650000px;}
.hd_c00250{height:57.750000px;}
.h7_c00250{height:58.800000px;}
.he_c00250{height:59.850000px;}
.h8_c00250{height:60.900000px;}
.h6_c00250{height:61.950000px;}
.h5_c00250{height:63.000000px;}
.hc_c00250{height:64.050000px;}
.ha_c00250{height:66.150000px;}
.h9_c00250{height:67.200000px;}
.hb_c00250{height:68.250000px;}
.h4_c00250{height:69.300000px;}
.h2_c00250{height:71.400000px;}
.h1_c00250{height:618.750000px;}
.h0_c00250{height:619.050000px;}
.w0_c00250{width:359.100000px;}
.w1_c00250{width:359.250000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:28.890000px;}
.x16_c00250{left:29.907000px;}
.x28_c00250{left:30.951000px;}
.x5e_c00250{left:32.667000px;}
.x2d_c00250{left:33.973500px;}
.x72_c00250{left:35.097000px;}
.x75_c00250{left:36.177000px;}
.x46_c00250{left:38.554500px;}
.x38_c00250{left:45.288000px;}
.x4a_c00250{left:49.680000px;}
.x76_c00250{left:51.567000px;}
.x3_c00250{left:54.810000px;}
.x5f_c00250{left:59.127000px;}
.x42_c00250{left:62.794500px;}
.x9_c00250{left:64.260000px;}
.x10_c00250{left:65.494500px;}
.x6d_c00250{left:69.117000px;}
.x39_c00250{left:70.981500px;}
.x29_c00250{left:72.229500px;}
.xa_c00250{left:73.710000px;}
.x53_c00250{left:77.013000px;}
.x3e_c00250{left:79.809000px;}
.x4b_c00250{left:83.160000px;}
.x31_c00250{left:85.764000px;}
.x23_c00250{left:88.057500px;}
.x79_c00250{left:89.637000px;}
.x2a_c00250{left:91.126500px;}
.x59_c00250{left:92.185500px;}
.x11_c00250{left:93.789000px;}
.x17_c00250{left:95.482500px;}
.x6a_c00250{left:96.927000px;}
.xb_c00250{left:99.090000px;}
.x54_c00250{left:101.100000px;}
.x1c_c00250{left:103.783500px;}
.x32_c00250{left:105.211500px;}
.x4_c00250{left:107.460000px;}
.x65_c00250{left:110.157000px;}
.x5a_c00250{left:112.438500px;}
.x24_c00250{left:118.584000px;}
.x51_c00250{left:119.740500px;}
.x6b_c00250{left:122.577000px;}
.x12_c00250{left:125.653500px;}
.x43_c00250{left:127.044000px;}
.x1d_c00250{left:128.629500px;}
.x68_c00250{left:130.137000px;}
.x6e_c00250{left:131.487000px;}
.x4c_c00250{left:133.110000px;}
.x2e_c00250{left:134.110500px;}
.x66_c00250{left:135.537000px;}
.x77_c00250{left:138.507000px;}
.x5_c00250{left:140.130000px;}
.x3a_c00250{left:142.254000px;}
.x60_c00250{left:143.367000px;}
.x6c_c00250{left:144.987000px;}
.x25_c00250{left:146.130000px;}
.x18_c00250{left:147.360000px;}
.x36_c00250{left:151.738500px;}
.x62_c00250{left:152.817000px;}
.x2f_c00250{left:154.930500px;}
.x73_c00250{left:156.597000px;}
.x1_c00250{left:158.490000px;}
.x26_c00250{left:161.850000px;}
.x7a_c00250{left:163.077000px;}
.x55_c00250{left:167.740500px;}
.x1e_c00250{left:173.676000px;}
.x3f_c00250{left:174.771000px;}
.x74_c00250{left:176.307000px;}
.x33_c00250{left:177.307500px;}
.x3b_c00250{left:178.711500px;}
.x4e_c00250{left:181.440000px;}
.x5b_c00250{left:182.907000px;}
.x6_c00250{left:186.300000px;}
.x78_c00250{left:187.377000px;}
.x80_c00250{left:189.267000px;}
.x69_c00250{left:190.347000px;}
.x40_c00250{left:193.168500px;}
.x19_c00250{left:196.681500px;}
.x47_c00250{left:197.836500px;}
.x1f_c00250{left:199.872000px;}
.x34_c00250{left:202.702500px;}
.x2b_c00250{left:205.905000px;}
.x7b_c00250{left:207.897000px;}
.x4f_c00250{left:209.250000px;}
.xc_c00250{left:210.870000px;}
.x56_c00250{left:214.236000px;}
.x7d_c00250{left:216.433500px;}
.x4d_c00250{left:219.510000px;}
.x6f_c00250{left:221.127000px;}
.x1a_c00250{left:225.384000px;}
.xd_c00250{left:227.610000px;}
.x7_c00250{left:228.960000px;}
.x30_c00250{left:231.886500px;}
.x41_c00250{left:235.356000px;}
.x20_c00250{left:239.070000px;}
.x13_c00250{left:241.474500px;}
.x52_c00250{left:244.225500px;}
.x37_c00250{left:247.858500px;}
.x63_c00250{left:250.827000px;}
.x7e_c00250{left:252.306000px;}
.x48_c00250{left:255.573000px;}
.x3c_c00250{left:258.621000px;}
.x14_c00250{left:262.078500px;}
.x2c_c00250{left:263.700000px;}
.x44_c00250{left:268.465500px;}
.x5c_c00250{left:271.423500px;}
.xe_c00250{left:272.700000px;}
.x50_c00250{left:274.590000px;}
.x7c_c00250{left:275.667000px;}
.x35_c00250{left:276.994500px;}
.x70_c00250{left:278.097000px;}
.x57_c00250{left:279.304500px;}
.x67_c00250{left:283.227000px;}
.x27_c00250{left:286.342500px;}
.x45_c00250{left:287.352000px;}
.x21_c00250{left:289.308000px;}
.x49_c00250{left:290.950500px;}
.xf_c00250{left:294.030000px;}
.x7f_c00250{left:295.506000px;}
.x58_c00250{left:298.696500px;}
.x71_c00250{left:300.507000px;}
.x15_c00250{left:301.771500px;}
.x3d_c00250{left:304.546500px;}
.x5d_c00250{left:305.982000px;}
.x22_c00250{left:308.754000px;}
.x8_c00250{left:311.040000px;}
.x64_c00250{left:314.277000px;}
.x1b_c00250{left:316.935000px;}
.x61_c00250{left:324.537000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
.fsd_c00250{font-size:46.666667pt;}
.fs1_c00250{font-size:49.466667pt;}
.fsb_c00250{font-size:51.333333pt;}
.fs5_c00250{font-size:52.266667pt;}
.fsc_c00250{font-size:53.200000pt;}
.fs6_c00250{font-size:54.133333pt;}
.fs4_c00250{font-size:55.066667pt;}
.fs3_c00250{font-size:56.000000pt;}
.fsa_c00250{font-size:56.933333pt;}
.fs8_c00250{font-size:58.800000pt;}
.fs7_c00250{font-size:59.733333pt;}
.fs9_c00250{font-size:60.666667pt;}
.fs2_c00250{font-size:61.600000pt;}
.fs0_c00250{font-size:63.466667pt;}
.y0_c00250{bottom:0.000000pt;}
.y8a_c00250{bottom:30.720000pt;}
.y89_c00250{bottom:46.933333pt;}
.y88_c00250{bottom:47.394667pt;}
.y87_c00250{bottom:47.777333pt;}
.y86_c00250{bottom:48.229333pt;}
.y85_c00250{bottom:49.681333pt;}
.y84_c00250{bottom:59.764000pt;}
.y83_c00250{bottom:60.322667pt;}
.y82_c00250{bottom:60.656000pt;}
.y81_c00250{bottom:60.846667pt;}
.y80_c00250{bottom:61.433333pt;}
.y7f_c00250{bottom:61.701333pt;}
.y7e_c00250{bottom:62.430667pt;}
.y7d_c00250{bottom:62.640000pt;}
.y7c_c00250{bottom:78.774667pt;}
.y7b_c00250{bottom:93.384000pt;}
.y7a_c00250{bottom:109.198667pt;}
.y79_c00250{bottom:121.598667pt;}
.y78_c00250{bottom:139.438667pt;}
.y77_c00250{bottom:153.389333pt;}
.y76_c00250{bottom:169.066667pt;}
.y75_c00250{bottom:184.133333pt;}
.y74_c00250{bottom:199.145333pt;}
.y73_c00250{bottom:214.052000pt;}
.y6c_c00250{bottom:228.240000pt;}
.y6d_c00250{bottom:228.777333pt;}
.y6e_c00250{bottom:228.957333pt;}
.y6f_c00250{bottom:229.584000pt;}
.y70_c00250{bottom:229.856000pt;}
.y71_c00250{bottom:230.372000pt;}
.y72_c00250{bottom:230.678667pt;}
.y64_c00250{bottom:243.840000pt;}
.y65_c00250{bottom:244.245333pt;}
.y66_c00250{bottom:244.460000pt;}
.y67_c00250{bottom:245.052000pt;}
.y68_c00250{bottom:245.306667pt;}
.y69_c00250{bottom:245.465333pt;}
.y6a_c00250{bottom:246.044000pt;}
.y6b_c00250{bottom:246.216000pt;}
.y5c_c00250{bottom:259.201333pt;}
.y5d_c00250{bottom:259.392000pt;}
.y5e_c00250{bottom:259.869333pt;}
.y5f_c00250{bottom:260.066667pt;}
.y60_c00250{bottom:260.436000pt;}
.y61_c00250{bottom:260.832000pt;}
.y62_c00250{bottom:261.284000pt;}
.y63_c00250{bottom:261.877333pt;}
.y5b_c00250{bottom:275.016000pt;}
.y5a_c00250{bottom:290.773333pt;}
.y54_c00250{bottom:303.125333pt;}
.y55_c00250{bottom:303.650667pt;}
.y56_c00250{bottom:304.694667pt;}
.y57_c00250{bottom:305.530667pt;}
.y58_c00250{bottom:306.402667pt;}
.y59_c00250{bottom:306.937333pt;}
.y53_c00250{bottom:316.930667pt;}
.y52_c00250{bottom:317.114667pt;}
.y51_c00250{bottom:317.404000pt;}
.y50_c00250{bottom:317.734667pt;}
.y4f_c00250{bottom:317.914667pt;}
.y4e_c00250{bottom:318.049333pt;}
.y4d_c00250{bottom:318.308000pt;}
.y4c_c00250{bottom:318.498667pt;}
.y4b_c00250{bottom:319.126667pt;}
.y4a_c00250{bottom:319.444000pt;}
.y42_c00250{bottom:332.882667pt;}
.y43_c00250{bottom:333.325333pt;}
.y44_c00250{bottom:333.494667pt;}
.y45_c00250{bottom:334.518667pt;}
.y46_c00250{bottom:334.676000pt;}
.y47_c00250{bottom:334.905333pt;}
.y48_c00250{bottom:335.430667pt;}
.y49_c00250{bottom:336.290667pt;}
.y39_c00250{bottom:347.044000pt;}
.y3a_c00250{bottom:347.302667pt;}
.y3b_c00250{bottom:347.760000pt;}
.y3c_c00250{bottom:348.062667pt;}
.y3d_c00250{bottom:349.028000pt;}
.y3e_c00250{bottom:349.676000pt;}
.y3f_c00250{bottom:350.557333pt;}
.y40_c00250{bottom:351.096000pt;}
.y41_c00250{bottom:351.912000pt;}
.y38_c00250{bottom:365.732000pt;}
.y30_c00250{bottom:378.482667pt;}
.y31_c00250{bottom:379.314667pt;}
.y32_c00250{bottom:379.608000pt;}
.y33_c00250{bottom:380.473333pt;}
.y34_c00250{bottom:380.698667pt;}
.y35_c00250{bottom:381.082667pt;}
.y36_c00250{bottom:381.998667pt;}
.y37_c00250{bottom:382.205333pt;}
.y2b_c00250{bottom:393.124000pt;}
.y2c_c00250{bottom:394.637333pt;}
.y2d_c00250{bottom:394.952000pt;}
.y2e_c00250{bottom:396.114667pt;}
.y2f_c00250{bottom:397.285333pt;}
.y24_c00250{bottom:409.444000pt;}
.y25_c00250{bottom:409.957333pt;}
.y26_c00250{bottom:410.192000pt;}
.y27_c00250{bottom:410.864000pt;}
.y28_c00250{bottom:411.381333pt;}
.y29_c00250{bottom:411.620000pt;}
.y2a_c00250{bottom:412.338667pt;}
.y1b_c00250{bottom:425.762667pt;}
.y1c_c00250{bottom:426.326667pt;}
.y1d_c00250{bottom:426.440000pt;}
.y1e_c00250{bottom:426.625333pt;}
.y1f_c00250{bottom:426.894667pt;}
.y20_c00250{bottom:427.048000pt;}
.y21_c00250{bottom:427.533333pt;}
.y22_c00250{bottom:427.712000pt;}
.y23_c00250{bottom:428.265333pt;}
.y13_c00250{bottom:441.362667pt;}
.y14_c00250{bottom:442.084000pt;}
.y15_c00250{bottom:442.326667pt;}
.y16_c00250{bottom:442.766667pt;}
.y17_c00250{bottom:443.022667pt;}
.y18_c00250{bottom:443.405333pt;}
.y19_c00250{bottom:443.896000pt;}
.y1a_c00250{bottom:444.086667pt;}
.yc_c00250{bottom:454.325333pt;}
.yd_c00250{bottom:455.200000pt;}
.ye_c00250{bottom:455.892000pt;}
.yf_c00250{bottom:456.549333pt;}
.y10_c00250{bottom:456.932000pt;}
.y11_c00250{bottom:457.845333pt;}
.y12_c00250{bottom:458.152000pt;}
.y4_c00250{bottom:470.882667pt;}
.y5_c00250{bottom:471.361333pt;}
.y6_c00250{bottom:471.738667pt;}
.y7_c00250{bottom:472.164000pt;}
.y8_c00250{bottom:472.612000pt;}
.y9_c00250{bottom:473.709333pt;}
.ya_c00250{bottom:473.984000pt;}
.yb_c00250{bottom:474.513333pt;}
.y3_c00250{bottom:486.117333pt;}
.y2_c00250{bottom:501.278667pt;}
.y1_c00250{bottom:513.474667pt;}
.hf_c00250{height:46.666667pt;}
.h3_c00250{height:49.466667pt;}
.hd_c00250{height:51.333333pt;}
.h7_c00250{height:52.266667pt;}
.he_c00250{height:53.200000pt;}
.h8_c00250{height:54.133333pt;}
.h6_c00250{height:55.066667pt;}
.h5_c00250{height:56.000000pt;}
.hc_c00250{height:56.933333pt;}
.ha_c00250{height:58.800000pt;}
.h9_c00250{height:59.733333pt;}
.hb_c00250{height:60.666667pt;}
.h4_c00250{height:61.600000pt;}
.h2_c00250{height:63.466667pt;}
.h1_c00250{height:550.000000pt;}
.h0_c00250{height:550.266667pt;}
.w0_c00250{width:319.200000pt;}
.w1_c00250{width:319.333333pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:25.680000pt;}
.x16_c00250{left:26.584000pt;}
.x28_c00250{left:27.512000pt;}
.x5e_c00250{left:29.037333pt;}
.x2d_c00250{left:30.198667pt;}
.x72_c00250{left:31.197333pt;}
.x75_c00250{left:32.157333pt;}
.x46_c00250{left:34.270667pt;}
.x38_c00250{left:40.256000pt;}
.x4a_c00250{left:44.160000pt;}
.x76_c00250{left:45.837333pt;}
.x3_c00250{left:48.720000pt;}
.x5f_c00250{left:52.557333pt;}
.x42_c00250{left:55.817333pt;}
.x9_c00250{left:57.120000pt;}
.x10_c00250{left:58.217333pt;}
.x6d_c00250{left:61.437333pt;}
.x39_c00250{left:63.094667pt;}
.x29_c00250{left:64.204000pt;}
.xa_c00250{left:65.520000pt;}
.x53_c00250{left:68.456000pt;}
.x3e_c00250{left:70.941333pt;}
.x4b_c00250{left:73.920000pt;}
.x31_c00250{left:76.234667pt;}
.x23_c00250{left:78.273333pt;}
.x79_c00250{left:79.677333pt;}
.x2a_c00250{left:81.001333pt;}
.x59_c00250{left:81.942667pt;}
.x11_c00250{left:83.368000pt;}
.x17_c00250{left:84.873333pt;}
.x6a_c00250{left:86.157333pt;}
.xb_c00250{left:88.080000pt;}
.x54_c00250{left:89.866667pt;}
.x1c_c00250{left:92.252000pt;}
.x32_c00250{left:93.521333pt;}
.x4_c00250{left:95.520000pt;}
.x65_c00250{left:97.917333pt;}
.x5a_c00250{left:99.945333pt;}
.x24_c00250{left:105.408000pt;}
.x51_c00250{left:106.436000pt;}
.x6b_c00250{left:108.957333pt;}
.x12_c00250{left:111.692000pt;}
.x43_c00250{left:112.928000pt;}
.x1d_c00250{left:114.337333pt;}
.x68_c00250{left:115.677333pt;}
.x6e_c00250{left:116.877333pt;}
.x4c_c00250{left:118.320000pt;}
.x2e_c00250{left:119.209333pt;}
.x66_c00250{left:120.477333pt;}
.x77_c00250{left:123.117333pt;}
.x5_c00250{left:124.560000pt;}
.x3a_c00250{left:126.448000pt;}
.x60_c00250{left:127.437333pt;}
.x6c_c00250{left:128.877333pt;}
.x25_c00250{left:129.893333pt;}
.x18_c00250{left:130.986667pt;}
.x36_c00250{left:134.878667pt;}
.x62_c00250{left:135.837333pt;}
.x2f_c00250{left:137.716000pt;}
.x73_c00250{left:139.197333pt;}
.x1_c00250{left:140.880000pt;}
.x26_c00250{left:143.866667pt;}
.x7a_c00250{left:144.957333pt;}
.x55_c00250{left:149.102667pt;}
.x1e_c00250{left:154.378667pt;}
.x3f_c00250{left:155.352000pt;}
.x74_c00250{left:156.717333pt;}
.x33_c00250{left:157.606667pt;}
.x3b_c00250{left:158.854667pt;}
.x4e_c00250{left:161.280000pt;}
.x5b_c00250{left:162.584000pt;}
.x6_c00250{left:165.600000pt;}
.x78_c00250{left:166.557333pt;}
.x80_c00250{left:168.237333pt;}
.x69_c00250{left:169.197333pt;}
.x40_c00250{left:171.705333pt;}
.x19_c00250{left:174.828000pt;}
.x47_c00250{left:175.854667pt;}
.x1f_c00250{left:177.664000pt;}
.x34_c00250{left:180.180000pt;}
.x2b_c00250{left:183.026667pt;}
.x7b_c00250{left:184.797333pt;}
.x4f_c00250{left:186.000000pt;}
.xc_c00250{left:187.440000pt;}
.x56_c00250{left:190.432000pt;}
.x7d_c00250{left:192.385333pt;}
.x4d_c00250{left:195.120000pt;}
.x6f_c00250{left:196.557333pt;}
.x1a_c00250{left:200.341333pt;}
.xd_c00250{left:202.320000pt;}
.x7_c00250{left:203.520000pt;}
.x30_c00250{left:206.121333pt;}
.x41_c00250{left:209.205333pt;}
.x20_c00250{left:212.506667pt;}
.x13_c00250{left:214.644000pt;}
.x52_c00250{left:217.089333pt;}
.x37_c00250{left:220.318667pt;}
.x63_c00250{left:222.957333pt;}
.x7e_c00250{left:224.272000pt;}
.x48_c00250{left:227.176000pt;}
.x3c_c00250{left:229.885333pt;}
.x14_c00250{left:232.958667pt;}
.x2c_c00250{left:234.400000pt;}
.x44_c00250{left:238.636000pt;}
.x5c_c00250{left:241.265333pt;}
.xe_c00250{left:242.400000pt;}
.x50_c00250{left:244.080000pt;}
.x7c_c00250{left:245.037333pt;}
.x35_c00250{left:246.217333pt;}
.x70_c00250{left:247.197333pt;}
.x57_c00250{left:248.270667pt;}
.x67_c00250{left:251.757333pt;}
.x27_c00250{left:254.526667pt;}
.x45_c00250{left:255.424000pt;}
.x21_c00250{left:257.162667pt;}
.x49_c00250{left:258.622667pt;}
.xf_c00250{left:261.360000pt;}
.x7f_c00250{left:262.672000pt;}
.x58_c00250{left:265.508000pt;}
.x71_c00250{left:267.117333pt;}
.x15_c00250{left:268.241333pt;}
.x3d_c00250{left:270.708000pt;}
.x5d_c00250{left:271.984000pt;}
.x22_c00250{left:274.448000pt;}
.x8_c00250{left:276.480000pt;}
.x64_c00250{left:279.357333pt;}
.x1b_c00250{left:281.720000pt;}
.x61_c00250{left:288.477333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00251 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00251 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00251 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00251 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00251.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.130469,0.002348,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130469,0.002348,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130469,0.002348,-0.004499,0.249960,0,0);}
.m89_c00251{transform:matrix(0.133943,0.002411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.133943,0.002411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.133943,0.002411,-0.004499,0.249960,0,0);}
.m9_c00251{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.mf3_c00251{transform:matrix(0.142442,0.002564,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142442,0.002564,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142442,0.002564,-0.004499,0.249960,0,0);}
.md7_c00251{transform:matrix(0.143372,0.002581,-0.004499,0.249960,0,0);-ms-transform:matrix(0.143372,0.002581,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.143372,0.002581,-0.004499,0.249960,0,0);}
.m34_c00251{transform:matrix(0.145786,0.002624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145786,0.002624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145786,0.002624,-0.004499,0.249960,0,0);}
.mb6_c00251{transform:matrix(0.147991,0.002664,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147991,0.002664,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147991,0.002664,-0.004499,0.249960,0,0);}
.mcd_c00251{transform:matrix(0.148971,0.002681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.148971,0.002681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.148971,0.002681,-0.004499,0.249960,0,0);}
.mae_c00251{transform:matrix(0.151370,0.002725,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151370,0.002725,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151370,0.002725,-0.004499,0.249960,0,0);}
.mb_c00251{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.153420,0.002762,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153420,0.002762,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153420,0.002762,-0.004499,0.249960,0,0);}
.m4b_c00251{transform:matrix(0.153865,0.002770,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153865,0.002770,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153865,0.002770,-0.004499,0.249960,0,0);}
.m70_c00251{transform:matrix(0.153920,0.002771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153920,0.002771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153920,0.002771,-0.004499,0.249960,0,0);}
.m6d_c00251{transform:matrix(0.155455,0.002798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155455,0.002798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155455,0.002798,-0.004499,0.249960,0,0);}
.mb1_c00251{transform:matrix(0.157350,0.002832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157350,0.002832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157350,0.002832,-0.004499,0.249960,0,0);}
.m3b_c00251{transform:matrix(0.157734,0.002839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157734,0.002839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157734,0.002839,-0.004499,0.249960,0,0);}
.m48_c00251{transform:matrix(0.158214,0.002848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158214,0.002848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158214,0.002848,-0.004499,0.249960,0,0);}
.md4_c00251{transform:matrix(0.158384,0.002851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158384,0.002851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158384,0.002851,-0.004499,0.249960,0,0);}
.m2c_c00251{transform:matrix(0.158674,0.002856,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158674,0.002856,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158674,0.002856,-0.004499,0.249960,0,0);}
.m2_c00251{transform:matrix(0.159135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159135,0.000000,0.000000,0.250000,0,0);}
.mc3_c00251{transform:matrix(0.160139,0.002883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160139,0.002883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160139,0.002883,-0.004499,0.249960,0,0);}
.m7c_c00251{transform:matrix(0.160239,0.002884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160239,0.002884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160239,0.002884,-0.004499,0.249960,0,0);}
.m24_c00251{transform:matrix(0.162394,0.002923,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162394,0.002923,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162394,0.002923,-0.004499,0.249960,0,0);}
.mce_c00251{transform:matrix(0.163239,0.002938,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163239,0.002938,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163239,0.002938,-0.004499,0.249960,0,0);}
.md6_c00251{transform:matrix(0.163613,0.002945,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163613,0.002945,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163613,0.002945,-0.004499,0.249960,0,0);}
.me5_c00251{transform:matrix(0.163938,0.002951,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163938,0.002951,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163938,0.002951,-0.004499,0.249960,0,0);}
.mc_c00251{transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);}
.m3a_c00251{transform:matrix(0.164578,0.002962,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164578,0.002962,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164578,0.002962,-0.004499,0.249960,0,0);}
.m8_c00251{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m63_c00251{transform:matrix(0.166463,0.002996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166463,0.002996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166463,0.002996,-0.004499,0.249960,0,0);}
.m47_c00251{transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);}
.m98_c00251{transform:matrix(0.167098,0.003008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167098,0.003008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167098,0.003008,-0.004499,0.249960,0,0);}
.mb5_c00251{transform:matrix(0.168083,0.003025,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168083,0.003025,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168083,0.003025,-0.004499,0.249960,0,0);}
.m55_c00251{transform:matrix(0.168293,0.003029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168293,0.003029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168293,0.003029,-0.004499,0.249960,0,0);}
.meb_c00251{transform:matrix(0.168588,0.003035,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168588,0.003035,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168588,0.003035,-0.004499,0.249960,0,0);}
.m40_c00251{transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168783,0.003038,-0.004499,0.249960,0,0);}
.me1_c00251{transform:matrix(0.169763,0.003056,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169763,0.003056,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169763,0.003056,-0.004499,0.249960,0,0);}
.m72_c00251{transform:matrix(0.170277,0.003065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170277,0.003065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170277,0.003065,-0.004499,0.249960,0,0);}
.m8a_c00251{transform:matrix(0.170382,0.003067,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170382,0.003067,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170382,0.003067,-0.004499,0.249960,0,0);}
.mf1_c00251{transform:matrix(0.172277,0.003101,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172277,0.003101,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172277,0.003101,-0.004499,0.249960,0,0);}
.mb4_c00251{transform:matrix(0.172452,0.003104,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172452,0.003104,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172452,0.003104,-0.004499,0.249960,0,0);}
.mb7_c00251{transform:matrix(0.173487,0.003123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173487,0.003123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173487,0.003123,-0.004499,0.249960,0,0);}
.mee_c00251{transform:matrix(0.173742,0.003127,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173742,0.003127,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173742,0.003127,-0.004499,0.249960,0,0);}
.m31_c00251{transform:matrix(0.173832,0.003129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173832,0.003129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173832,0.003129,-0.004499,0.249960,0,0);}
.m10_c00251{transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.174447,0.003140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174447,0.003140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174447,0.003140,-0.004499,0.249960,0,0);}
.m37_c00251{transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174597,0.003143,-0.004499,0.249960,0,0);}
.m60_c00251{transform:matrix(0.175587,0.003161,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175587,0.003161,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175587,0.003161,-0.004499,0.249960,0,0);}
.m5e_c00251{transform:matrix(0.176001,0.003168,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176001,0.003168,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176001,0.003168,-0.004499,0.249960,0,0);}
.ma4_c00251{transform:matrix(0.176311,0.003174,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176311,0.003174,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176311,0.003174,-0.004499,0.249960,0,0);}
.mb2_c00251{transform:matrix(0.176786,0.003182,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176786,0.003182,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176786,0.003182,-0.004499,0.249960,0,0);}
.m4c_c00251{transform:matrix(0.177121,0.003188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177121,0.003188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177121,0.003188,-0.004499,0.249960,0,0);}
.mc8_c00251{transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);}
.mb8_c00251{transform:matrix(0.177986,0.003204,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177986,0.003204,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177986,0.003204,-0.004499,0.249960,0,0);}
.m68_c00251{transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178376,0.003211,-0.004499,0.249960,0,0);}
.m4d_c00251{transform:matrix(0.178476,0.003213,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178476,0.003213,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178476,0.003213,-0.004499,0.249960,0,0);}
.ma2_c00251{transform:matrix(0.178491,0.003213,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178491,0.003213,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178491,0.003213,-0.004499,0.249960,0,0);}
.med_c00251{transform:matrix(0.178536,0.003214,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178536,0.003214,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178536,0.003214,-0.004499,0.249960,0,0);}
.m19_c00251{transform:matrix(0.178589,0.003572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178589,0.003572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178589,0.003572,-0.004999,0.249950,0,0);}
.ma0_c00251{transform:matrix(0.178971,0.003221,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178971,0.003221,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178971,0.003221,-0.004499,0.249960,0,0);}
.m71_c00251{transform:matrix(0.178981,0.003222,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178981,0.003222,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178981,0.003222,-0.004499,0.249960,0,0);}
.mdc_c00251{transform:matrix(0.179401,0.003229,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179401,0.003229,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179401,0.003229,-0.004499,0.249960,0,0);}
.mdd_c00251{transform:matrix(0.179876,0.003238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179876,0.003238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179876,0.003238,-0.004499,0.249960,0,0);}
.m67_c00251{transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);}
.m59_c00251{transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);}
.m95_c00251{transform:matrix(0.180901,0.003256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180901,0.003256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180901,0.003256,-0.004499,0.249960,0,0);}
.m3c_c00251{transform:matrix(0.180996,0.003258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180996,0.003258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180996,0.003258,-0.004499,0.249960,0,0);}
.m6e_c00251{transform:matrix(0.181676,0.003270,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181676,0.003270,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181676,0.003270,-0.004499,0.249960,0,0);}
.maa_c00251{transform:matrix(0.181746,0.003271,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181746,0.003271,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181746,0.003271,-0.004499,0.249960,0,0);}
.me_c00251{transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m5b_c00251{transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182260,0.003281,-0.004499,0.249960,0,0);}
.m73_c00251{transform:matrix(0.182400,0.003283,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182400,0.003283,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182400,0.003283,-0.004499,0.249960,0,0);}
.m3d_c00251{transform:matrix(0.182880,0.003292,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182880,0.003292,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182880,0.003292,-0.004499,0.249960,0,0);}
.me9_c00251{transform:matrix(0.183130,0.003296,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183130,0.003296,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183130,0.003296,-0.004499,0.249960,0,0);}
.me3_c00251{transform:matrix(0.183530,0.003304,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183530,0.003304,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183530,0.003304,-0.004499,0.249960,0,0);}
.m6a_c00251{transform:matrix(0.183565,0.003304,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183565,0.003304,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183565,0.003304,-0.004499,0.249960,0,0);}
.m84_c00251{transform:matrix(0.183710,0.003307,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183710,0.003307,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183710,0.003307,-0.004499,0.249960,0,0);}
.mf_c00251{transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183730,0.000000,0.000000,0.250000,0,0);}
.m77_c00251{transform:matrix(0.183755,0.003308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183755,0.003308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183755,0.003308,-0.004499,0.249960,0,0);}
.m7_c00251{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184185,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.184315,0.003318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184315,0.003318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184315,0.003318,-0.004499,0.249960,0,0);}
.m1f_c00251{transform:matrix(0.184440,0.003320,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184440,0.003320,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184440,0.003320,-0.004499,0.249960,0,0);}
.mac_c00251{transform:matrix(0.184635,0.003323,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184635,0.003323,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184635,0.003323,-0.004499,0.249960,0,0);}
.m2d_c00251{transform:matrix(0.184845,0.003327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184845,0.003327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184845,0.003327,-0.004499,0.249960,0,0);}
.m66_c00251{transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);}
.mcb_c00251{transform:matrix(0.185710,0.003343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185710,0.003343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185710,0.003343,-0.004499,0.249960,0,0);}
.me6_c00251{transform:matrix(0.185780,0.003344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185780,0.003344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185780,0.003344,-0.004499,0.249960,0,0);}
.mc9_c00251{transform:matrix(0.185880,0.003346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185880,0.003346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185880,0.003346,-0.004499,0.249960,0,0);}
.m20_c00251{transform:matrix(0.186270,0.003353,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186270,0.003353,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186270,0.003353,-0.004499,0.249960,0,0);}
.m90_c00251{transform:matrix(0.186480,0.003357,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186480,0.003357,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186480,0.003357,-0.004499,0.249960,0,0);}
.mc5_c00251{transform:matrix(0.186540,0.003358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186540,0.003358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186540,0.003358,-0.004499,0.249960,0,0);}
.m2b_c00251{transform:matrix(0.186920,0.003365,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186920,0.003365,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186920,0.003365,-0.004499,0.249960,0,0);}
.m1_c00251{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.mf0_c00251{transform:matrix(0.187075,0.003367,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187075,0.003367,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187075,0.003367,-0.004499,0.249960,0,0);}
.m6f_c00251{transform:matrix(0.187450,0.003374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187450,0.003374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187450,0.003374,-0.004499,0.249960,0,0);}
.m6c_c00251{transform:matrix(0.187490,0.003375,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187490,0.003375,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187490,0.003375,-0.004499,0.249960,0,0);}
.m96_c00251{transform:matrix(0.187765,0.003380,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187765,0.003380,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187765,0.003380,-0.004499,0.249960,0,0);}
.m29_c00251{transform:matrix(0.187840,0.003381,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187840,0.003381,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187840,0.003381,-0.004499,0.249960,0,0);}
.m12_c00251{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.188035,0.003385,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188035,0.003385,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188035,0.003385,-0.004499,0.249960,0,0);}
.m1a_c00251{transform:matrix(0.188082,0.003762,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188082,0.003762,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188082,0.003762,-0.004999,0.249950,0,0);}
.mad_c00251{transform:matrix(0.188240,0.003388,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188240,0.003388,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188240,0.003388,-0.004499,0.249960,0,0);}
.m78_c00251{transform:matrix(0.188319,0.003390,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188319,0.003390,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188319,0.003390,-0.004499,0.249960,0,0);}
.m27_c00251{transform:matrix(0.189369,0.003409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189369,0.003409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189369,0.003409,-0.004499,0.249960,0,0);}
.mc2_c00251{transform:matrix(0.189889,0.003418,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189889,0.003418,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189889,0.003418,-0.004499,0.249960,0,0);}
.ma1_c00251{transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);}
.m74_c00251{transform:matrix(0.190559,0.003430,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190559,0.003430,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190559,0.003430,-0.004499,0.249960,0,0);}
.m33_c00251{transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190579,0.003430,-0.004499,0.249960,0,0);}
.m16_c00251{transform:matrix(0.190892,0.003818,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190892,0.003818,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190892,0.003818,-0.004999,0.249950,0,0);}
.md3_c00251{transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);}
.mcf_c00251{transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191679,0.003450,-0.004499,0.249960,0,0);}
.me2_c00251{transform:matrix(0.191829,0.003453,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191829,0.003453,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191829,0.003453,-0.004499,0.249960,0,0);}
.m52_c00251{transform:matrix(0.191869,0.003454,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191869,0.003454,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191869,0.003454,-0.004499,0.249960,0,0);}
.m7d_c00251{transform:matrix(0.191999,0.003456,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191999,0.003456,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191999,0.003456,-0.004499,0.249960,0,0);}
.mf2_c00251{transform:matrix(0.192049,0.003457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192049,0.003457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192049,0.003457,-0.004499,0.249960,0,0);}
.md0_c00251{transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);}
.m7e_c00251{transform:matrix(0.192724,0.003469,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192724,0.003469,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192724,0.003469,-0.004499,0.249960,0,0);}
.m22_c00251{transform:matrix(0.193489,0.003483,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193489,0.003483,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193489,0.003483,-0.004499,0.249960,0,0);}
.ma7_c00251{transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);}
.m1b_c00251{transform:matrix(0.193924,0.003491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193924,0.003491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193924,0.003491,-0.004499,0.249960,0,0);}
.ma3_c00251{transform:matrix(0.194014,0.003492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194014,0.003492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194014,0.003492,-0.004499,0.249960,0,0);}
.me4_c00251{transform:matrix(0.194483,0.003501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194483,0.003501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194483,0.003501,-0.004499,0.249960,0,0);}
.ma5_c00251{transform:matrix(0.194558,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194558,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194558,0.003502,-0.004499,0.249960,0,0);}
.m3e_c00251{transform:matrix(0.194783,0.003506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194783,0.003506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194783,0.003506,-0.004499,0.249960,0,0);}
.m7f_c00251{transform:matrix(0.194898,0.003508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194898,0.003508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194898,0.003508,-0.004499,0.249960,0,0);}
.md5_c00251{transform:matrix(0.194903,0.003508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194903,0.003508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194903,0.003508,-0.004499,0.249960,0,0);}
.m8b_c00251{transform:matrix(0.194953,0.003509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194953,0.003509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194953,0.003509,-0.004499,0.249960,0,0);}
.mbf_c00251{transform:matrix(0.195163,0.003513,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195163,0.003513,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195163,0.003513,-0.004499,0.249960,0,0);}
.mcc_c00251{transform:matrix(0.195453,0.003518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195453,0.003518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195453,0.003518,-0.004499,0.249960,0,0);}
.maf_c00251{transform:matrix(0.195663,0.003522,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195663,0.003522,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195663,0.003522,-0.004499,0.249960,0,0);}
.m9e_c00251{transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);}
.mc0_c00251{transform:matrix(0.197023,0.003546,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197023,0.003546,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197023,0.003546,-0.004499,0.249960,0,0);}
.m85_c00251{transform:matrix(0.197138,0.003548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197138,0.003548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197138,0.003548,-0.004499,0.249960,0,0);}
.m80_c00251{transform:matrix(0.197213,0.003550,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197213,0.003550,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197213,0.003550,-0.004499,0.249960,0,0);}
.m4f_c00251{transform:matrix(0.197778,0.003560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197778,0.003560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197778,0.003560,-0.004499,0.249960,0,0);}
.mc4_c00251{transform:matrix(0.198048,0.003565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198048,0.003565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198048,0.003565,-0.004499,0.249960,0,0);}
.md1_c00251{transform:matrix(0.198398,0.003571,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198398,0.003571,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198398,0.003571,-0.004499,0.249960,0,0);}
.mbc_c00251{transform:matrix(0.198453,0.003572,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198453,0.003572,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198453,0.003572,-0.004499,0.249960,0,0);}
.m35_c00251{transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);}
.mca_c00251{transform:matrix(0.198573,0.003574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198573,0.003574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198573,0.003574,-0.004499,0.249960,0,0);}
.mb0_c00251{transform:matrix(0.199023,0.003582,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199023,0.003582,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199023,0.003582,-0.004499,0.249960,0,0);}
.m64_c00251{transform:matrix(0.199793,0.003596,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199793,0.003596,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199793,0.003596,-0.004499,0.249960,0,0);}
.mef_c00251{transform:matrix(0.200238,0.003604,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200238,0.003604,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200238,0.003604,-0.004499,0.249960,0,0);}
.m13_c00251{transform:matrix(0.200550,0.004011,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200550,0.004011,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200550,0.004011,-0.004999,0.249950,0,0);}
.ma_c00251{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.mbe_c00251{transform:matrix(0.201252,0.003623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201252,0.003623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201252,0.003623,-0.004499,0.249960,0,0);}
.m32_c00251{transform:matrix(0.201282,0.003623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201282,0.003623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201282,0.003623,-0.004499,0.249960,0,0);}
.m56_c00251{transform:matrix(0.201712,0.003631,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201712,0.003631,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201712,0.003631,-0.004499,0.249960,0,0);}
.m6_c00251{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00251{transform:matrix(0.203172,0.003657,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203172,0.003657,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203172,0.003657,-0.004499,0.249960,0,0);}
.m99_c00251{transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);}
.m62_c00251{transform:matrix(0.203797,0.003668,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203797,0.003668,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203797,0.003668,-0.004499,0.249960,0,0);}
.mec_c00251{transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);}
.m87_c00251{transform:matrix(0.204082,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204082,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204082,0.003673,-0.004499,0.249960,0,0);}
.mdf_c00251{transform:matrix(0.204462,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204462,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204462,0.003680,-0.004499,0.249960,0,0);}
.ma9_c00251{transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);}
.m54_c00251{transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);}
.mb9_c00251{transform:matrix(0.205462,0.003698,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205462,0.003698,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205462,0.003698,-0.004499,0.249960,0,0);}
.m88_c00251{transform:matrix(0.205997,0.003708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205997,0.003708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205997,0.003708,-0.004499,0.249960,0,0);}
.m18_c00251{transform:matrix(0.206239,0.004125,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206239,0.004125,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206239,0.004125,-0.004999,0.249950,0,0);}
.m1c_c00251{transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);}
.mc6_c00251{transform:matrix(0.206876,0.003724,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206876,0.003724,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206876,0.003724,-0.004499,0.249960,0,0);}
.m58_c00251{transform:matrix(0.207561,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207561,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207561,0.003736,-0.004499,0.249960,0,0);}
.m4_c00251{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m5d_c00251{transform:matrix(0.207951,0.003743,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207951,0.003743,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207951,0.003743,-0.004499,0.249960,0,0);}
.me0_c00251{transform:matrix(0.208071,0.003745,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208071,0.003745,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208071,0.003745,-0.004499,0.249960,0,0);}
.md9_c00251{transform:matrix(0.208131,0.003746,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208131,0.003746,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208131,0.003746,-0.004499,0.249960,0,0);}
.m5_c00251{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.mbd_c00251{transform:matrix(0.208931,0.003761,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208931,0.003761,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208931,0.003761,-0.004499,0.249960,0,0);}
.md8_c00251{transform:matrix(0.208971,0.003761,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208971,0.003761,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208971,0.003761,-0.004499,0.249960,0,0);}
.mab_c00251{transform:matrix(0.209076,0.003763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209076,0.003763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209076,0.003763,-0.004499,0.249960,0,0);}
.m17_c00251{transform:matrix(0.209378,0.004188,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209378,0.004188,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209378,0.004188,-0.004999,0.249950,0,0);}
.md2_c00251{transform:matrix(0.209406,0.003769,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209406,0.003769,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209406,0.003769,-0.004499,0.249960,0,0);}
.m61_c00251{transform:matrix(0.209691,0.003774,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209691,0.003774,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209691,0.003774,-0.004499,0.249960,0,0);}
.m7b_c00251{transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);}
.mb3_c00251{transform:matrix(0.210646,0.003792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210646,0.003792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210646,0.003792,-0.004499,0.249960,0,0);}
.m50_c00251{transform:matrix(0.211011,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211011,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211011,0.003798,-0.004499,0.249960,0,0);}
.m75_c00251{transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);}
.m3f_c00251{transform:matrix(0.211751,0.003812,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211751,0.003812,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211751,0.003812,-0.004499,0.249960,0,0);}
.m23_c00251{transform:matrix(0.212266,0.003821,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212266,0.003821,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212266,0.003821,-0.004499,0.249960,0,0);}
.m43_c00251{transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);}
.ma6_c00251{transform:matrix(0.213130,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213130,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213130,0.003836,-0.004499,0.249960,0,0);}
.mc7_c00251{transform:matrix(0.213305,0.003839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213305,0.003839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213305,0.003839,-0.004499,0.249960,0,0);}
.m69_c00251{transform:matrix(0.213325,0.003840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213325,0.003840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213325,0.003840,-0.004499,0.249960,0,0);}
.m92_c00251{transform:matrix(0.213885,0.003850,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213885,0.003850,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213885,0.003850,-0.004499,0.249960,0,0);}
.m25_c00251{transform:matrix(0.214195,0.003856,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214195,0.003856,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214195,0.003856,-0.004499,0.249960,0,0);}
.m7a_c00251{transform:matrix(0.214300,0.003857,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214300,0.003857,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214300,0.003857,-0.004499,0.249960,0,0);}
.m65_c00251{transform:matrix(0.214335,0.003858,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214335,0.003858,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214335,0.003858,-0.004499,0.249960,0,0);}
.m15_c00251{transform:matrix(0.214352,0.004287,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214352,0.004287,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214352,0.004287,-0.004999,0.249950,0,0);}
.m9c_c00251{transform:matrix(0.214725,0.003865,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214725,0.003865,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214725,0.003865,-0.004499,0.249960,0,0);}
.m94_c00251{transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);}
.m97_c00251{transform:matrix(0.215380,0.003877,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215380,0.003877,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215380,0.003877,-0.004499,0.249960,0,0);}
.mc1_c00251{transform:matrix(0.215615,0.003881,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215615,0.003881,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215615,0.003881,-0.004499,0.249960,0,0);}
.m8e_c00251{transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);}
.m79_c00251{transform:matrix(0.216485,0.003897,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216485,0.003897,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216485,0.003897,-0.004499,0.249960,0,0);}
.m86_c00251{transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);}
.m46_c00251{transform:matrix(0.216700,0.003901,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216700,0.003901,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216700,0.003901,-0.004499,0.249960,0,0);}
.m9f_c00251{transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);}
.m9d_c00251{transform:matrix(0.216940,0.003905,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216940,0.003905,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216940,0.003905,-0.004499,0.249960,0,0);}
.m45_c00251{transform:matrix(0.216965,0.003905,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216965,0.003905,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216965,0.003905,-0.004499,0.249960,0,0);}
.m39_c00251{transform:matrix(0.217175,0.003909,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217175,0.003909,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217175,0.003909,-0.004499,0.249960,0,0);}
.m76_c00251{transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218405,0.003931,-0.004499,0.249960,0,0);}
.m83_c00251{transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);}
.m49_c00251{transform:matrix(0.220409,0.003967,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220409,0.003967,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220409,0.003967,-0.004499,0.249960,0,0);}
.m36_c00251{transform:matrix(0.220464,0.003968,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220464,0.003968,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220464,0.003968,-0.004499,0.249960,0,0);}
.m41_c00251{transform:matrix(0.220694,0.003972,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220694,0.003972,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220694,0.003972,-0.004499,0.249960,0,0);}
.m57_c00251{transform:matrix(0.220959,0.003977,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220959,0.003977,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220959,0.003977,-0.004499,0.249960,0,0);}
.mbb_c00251{transform:matrix(0.222669,0.004008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222669,0.004008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222669,0.004008,-0.004499,0.249960,0,0);}
.m53_c00251{transform:matrix(0.222844,0.004011,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222844,0.004011,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222844,0.004011,-0.004499,0.249960,0,0);}
.me7_c00251{transform:matrix(0.223499,0.004023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223499,0.004023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223499,0.004023,-0.004499,0.249960,0,0);}
.mde_c00251{transform:matrix(0.225618,0.004061,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225618,0.004061,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225618,0.004061,-0.004499,0.249960,0,0);}
.ma8_c00251{transform:matrix(0.226068,0.004069,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226068,0.004069,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226068,0.004069,-0.004499,0.249960,0,0);}
.m8f_c00251{transform:matrix(0.226278,0.004073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226278,0.004073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226278,0.004073,-0.004499,0.249960,0,0);}
.m82_c00251{transform:matrix(0.226683,0.004080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226683,0.004080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226683,0.004080,-0.004499,0.249960,0,0);}
.m3_c00251{transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227835,0.000000,0.000000,0.250000,0,0);}
.m30_c00251{transform:matrix(0.228263,0.004109,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228263,0.004109,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228263,0.004109,-0.004499,0.249960,0,0);}
.m1d_c00251{transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);}
.m9a_c00251{transform:matrix(0.230038,0.004141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230038,0.004141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230038,0.004141,-0.004499,0.249960,0,0);}
.mea_c00251{transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);}
.m4e_c00251{transform:matrix(0.231483,0.004167,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231483,0.004167,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231483,0.004167,-0.004499,0.249960,0,0);}
.m5a_c00251{transform:matrix(0.232302,0.004181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232302,0.004181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232302,0.004181,-0.004499,0.249960,0,0);}
.m26_c00251{transform:matrix(0.234937,0.004229,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234937,0.004229,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234937,0.004229,-0.004499,0.249960,0,0);}
.m51_c00251{transform:matrix(0.235137,0.004232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235137,0.004232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235137,0.004232,-0.004499,0.249960,0,0);}
.m9b_c00251{transform:matrix(0.235442,0.004238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235442,0.004238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235442,0.004238,-0.004499,0.249960,0,0);}
.m42_c00251{transform:matrix(0.236667,0.004260,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236667,0.004260,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236667,0.004260,-0.004499,0.249960,0,0);}
.m21_c00251{transform:matrix(0.237287,0.004271,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237287,0.004271,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237287,0.004271,-0.004499,0.249960,0,0);}
.mba_c00251{transform:matrix(0.238051,0.004285,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238051,0.004285,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238051,0.004285,-0.004499,0.249960,0,0);}
.m5f_c00251{transform:matrix(0.240476,0.004329,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240476,0.004329,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240476,0.004329,-0.004499,0.249960,0,0);}
.m44_c00251{transform:matrix(0.245500,0.004419,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245500,0.004419,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245500,0.004419,-0.004499,0.249960,0,0);}
.mda_c00251{transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);}
.m14_c00251{transform:matrix(0.246766,0.004935,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246766,0.004935,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246766,0.004935,-0.004999,0.249950,0,0);}
.m6b_c00251{transform:matrix(0.251604,0.004529,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251604,0.004529,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251604,0.004529,-0.004499,0.249960,0,0);}
.m5c_c00251{transform:matrix(0.258983,0.004662,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258983,0.004662,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258983,0.004662,-0.004499,0.249960,0,0);}
.m91_c00251{transform:matrix(0.259558,0.004672,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259558,0.004672,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259558,0.004672,-0.004499,0.249960,0,0);}
.m81_c00251{transform:matrix(0.281819,0.005073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281819,0.005073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281819,0.005073,-0.004499,0.249960,0,0);}
.m8c_c00251{transform:matrix(0.290458,0.005228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290458,0.005228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290458,0.005228,-0.004499,0.249960,0,0);}
.m93_c00251{transform:matrix(0.326122,0.005870,-0.004499,0.249960,0,0);-ms-transform:matrix(0.326122,0.005870,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.326122,0.005870,-0.004499,0.249960,0,0);}
.mdb_c00251{transform:matrix(0.328612,0.005915,-0.004499,0.249960,0,0);-ms-transform:matrix(0.328612,0.005915,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.328612,0.005915,-0.004499,0.249960,0,0);}
.m8d_c00251{transform:matrix(0.333006,0.005994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.333006,0.005994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.333006,0.005994,-0.004499,0.249960,0,0);}
.m4a_c00251{transform:matrix(0.352118,0.006338,-0.004499,0.249960,0,0);-ms-transform:matrix(0.352118,0.006338,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.352118,0.006338,-0.004499,0.249960,0,0);}
.me8_c00251{transform:matrix(0.362176,0.006519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.362176,0.006519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.362176,0.006519,-0.004499,0.249960,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:0.000000px;}
.fc0_c00251{color:transparent;}
.fsc_c00251{font-size:57.759355px;}
.fs7_c00251{font-size:58.809525px;}
.fs3_c00251{font-size:58.811759px;}
.fs6_c00251{font-size:59.859695px;}
.fs4_c00251{font-size:60.909865px;}
.fs9_c00251{font-size:61.960035px;}
.fs8_c00251{font-size:63.010205px;}
.fsb_c00251{font-size:66.160715px;}
.fs5_c00251{font-size:68.261056px;}
.fs2_c00251{font-size:69.300000px;}
.fsa_c00251{font-size:69.311226px;}
.fs1_c00251{font-size:70.350000px;}
.fsd_c00251{font-size:70.361396px;}
.fse_c00251{font-size:73.511906px;}
.fs0_c00251{font-size:111.300000px;}
.y0_c00251{bottom:0.000000px;}
.yf8_c00251{bottom:27.997677px;}
.yf7_c00251{bottom:32.412969px;}
.yf6_c00251{bottom:32.758455px;}
.yf5_c00251{bottom:33.680178px;}
.yf4_c00251{bottom:48.358434px;}
.yf3_c00251{bottom:48.673146px;}
.yf2_c00251{bottom:48.925728px;}
.yf1_c00251{bottom:49.680843px;}
.yf0_c00251{bottom:50.073420px;}
.yef_c00251{bottom:51.499890px;}
.yee_c00251{bottom:63.450957px;}
.yed_c00251{bottom:63.742302px;}
.yec_c00251{bottom:65.338473px;}
.yeb_c00251{bottom:65.967096px;}
.yea_c00251{bottom:66.326355px;}
.ye9_c00251{bottom:66.960540px;}
.ye8_c00251{bottom:67.708209px;}
.ye7_c00251{bottom:67.997799px;}
.ye6_c00251{bottom:68.786298px;}
.ye5_c00251{bottom:79.585590px;}
.ye4_c00251{bottom:80.362872px;}
.ye3_c00251{bottom:80.674131px;}
.ye2_c00251{bottom:81.539517px;}
.ye1_c00251{bottom:82.117530px;}
.ye0_c00251{bottom:82.428789px;}
.ydf_c00251{bottom:83.253303px;}
.yde_c00251{bottom:83.556717px;}
.ydd_c00251{bottom:84.346827px;}
.ydc_c00251{bottom:84.742665px;}
.ydb_c00251{bottom:85.801662px;}
.yda_c00251{bottom:96.882381px;}
.yd9_c00251{bottom:97.456089px;}
.yd8_c00251{bottom:97.955229px;}
.yd7_c00251{bottom:98.282601px;}
.yd6_c00251{bottom:100.020591px;}
.yd5_c00251{bottom:100.493277px;}
.yd4_c00251{bottom:101.836593px;}
.yd3_c00251{bottom:102.234468px;}
.yd2_c00251{bottom:102.824826px;}
.yd1_c00251{bottom:103.354701px;}
.yd0_c00251{bottom:115.588764px;}
.ycf_c00251{bottom:116.870778px;}
.yce_c00251{bottom:117.798669px;}
.ycd_c00251{bottom:119.452884px;}
.ycc_c00251{bottom:120.365613px;}
.ycb_c00251{bottom:131.549481px;}
.yca_c00251{bottom:132.597150px;}
.yc9_c00251{bottom:133.997016px;}
.yc8_c00251{bottom:134.444349px;}
.yc7_c00251{bottom:135.694155px;}
.yc6_c00251{bottom:136.493982px;}
.yc5_c00251{bottom:137.649990px;}
.yc4_c00251{bottom:149.132169px;}
.yc3_c00251{bottom:151.203924px;}
.yc2_c00251{bottom:152.200203px;}
.yc1_c00251{bottom:152.985060px;}
.yc0_c00251{bottom:154.283571px;}
.ybf_c00251{bottom:155.508057px;}
.ybe_c00251{bottom:156.013029px;}
.ybd_c00251{bottom:167.969850px;}
.ybc_c00251{bottom:169.655631px;}
.ybb_c00251{bottom:170.090991px;}
.yba_c00251{bottom:171.486510px;}
.yb9_c00251{bottom:173.024682px;}
.yb8_c00251{bottom:183.798807px;}
.yb7_c00251{bottom:185.029488px;}
.yb6_c00251{bottom:186.068064px;}
.yb5_c00251{bottom:186.498510px;}
.yb4_c00251{bottom:187.811685px;}
.yb3_c00251{bottom:188.581914px;}
.yb2_c00251{bottom:189.118770px;}
.yb1_c00251{bottom:190.580109px;}
.yb0_c00251{bottom:199.792947px;}
.yaf_c00251{bottom:201.745785px;}
.yae_c00251{bottom:202.332255px;}
.yad_c00251{bottom:203.649894px;}
.yac_c00251{bottom:204.064599px;}
.yab_c00251{bottom:205.052511px;}
.yaa_c00251{bottom:207.413004px;}
.ya9_c00251{bottom:208.675041px;}
.ya8_c00251{bottom:218.948907px;}
.ya7_c00251{bottom:219.683160px;}
.ya6_c00251{bottom:220.168809px;}
.ya5_c00251{bottom:221.743812px;}
.ya4_c00251{bottom:222.388962px;}
.ya3_c00251{bottom:222.799755px;}
.ya2_c00251{bottom:224.848401px;}
.ya1_c00251{bottom:225.855594px;}
.ya0_c00251{bottom:226.496220px;}
.y9f_c00251{bottom:236.899887px;}
.y9e_c00251{bottom:237.171318px;}
.y9d_c00251{bottom:238.558236px;}
.y9c_c00251{bottom:239.028396px;}
.y9b_c00251{bottom:240.054747px;}
.y9a_c00251{bottom:241.441557px;}
.y99_c00251{bottom:241.973928px;}
.y98_c00251{bottom:242.434731px;}
.y97_c00251{bottom:242.973489px;}
.y96_c00251{bottom:253.947930px;}
.y95_c00251{bottom:254.537184px;}
.y94_c00251{bottom:255.419736px;}
.y93_c00251{bottom:257.393109px;}
.y92_c00251{bottom:258.201786px;}
.y91_c00251{bottom:258.451239px;}
.y90_c00251{bottom:259.094802px;}
.y8f_c00251{bottom:259.977516px;}
.y8e_c00251{bottom:270.431820px;}
.y8d_c00251{bottom:270.833097px;}
.y8c_c00251{bottom:271.701312px;}
.y8b_c00251{bottom:272.758824px;}
.y8a_c00251{bottom:273.161019px;}
.y89_c00251{bottom:274.219611px;}
.y88_c00251{bottom:274.703763px;}
.y87_c00251{bottom:275.134650px;}
.y86_c00251{bottom:276.450345px;}
.y85_c00251{bottom:287.087643px;}
.y84_c00251{bottom:287.757648px;}
.y83_c00251{bottom:289.452462px;}
.y82_c00251{bottom:289.969998px;}
.y81_c00251{bottom:291.823872px;}
.y80_c00251{bottom:292.258395px;}
.y7f_c00251{bottom:293.464272px;}
.y7e_c00251{bottom:305.026164px;}
.y7d_c00251{bottom:305.593353px;}
.y7c_c00251{bottom:307.453284px;}
.y7b_c00251{bottom:307.866888px;}
.y7a_c00251{bottom:308.183670px;}
.y79_c00251{bottom:309.447720px;}
.y78_c00251{bottom:310.474893px;}
.y77_c00251{bottom:321.342741px;}
.y76_c00251{bottom:322.639908px;}
.y75_c00251{bottom:324.173004px;}
.y74_c00251{bottom:324.690648px;}
.y73_c00251{bottom:325.160088px;}
.y72_c00251{bottom:326.359281px;}
.y71_c00251{bottom:326.864205px;}
.y70_c00251{bottom:327.488370px;}
.y6f_c00251{bottom:338.563035px;}
.y6e_c00251{bottom:339.740220px;}
.y6d_c00251{bottom:340.969929px;}
.y6c_c00251{bottom:341.343852px;}
.y6b_c00251{bottom:342.542289px;}
.y6a_c00251{bottom:342.923328px;}
.y69_c00251{bottom:343.585596px;}
.y68_c00251{bottom:344.770626px;}
.y67_c00251{bottom:356.664219px;}
.y66_c00251{bottom:357.190314px;}
.y65_c00251{bottom:358.500423px;}
.y64_c00251{bottom:358.813977px;}
.y63_c00251{bottom:360.101661px;}
.y62_c00251{bottom:361.507017px;}
.y61_c00251{bottom:362.048922px;}
.y60_c00251{bottom:372.970446px;}
.y5f_c00251{bottom:374.421117px;}
.y5e_c00251{bottom:374.779845px;}
.y5d_c00251{bottom:376.772409px;}
.y5c_c00251{bottom:377.416755px;}
.y5b_c00251{bottom:377.932410px;}
.y5a_c00251{bottom:379.410750px;}
.y59_c00251{bottom:380.144100px;}
.y58_c00251{bottom:391.023156px;}
.y57_c00251{bottom:391.675713px;}
.y56_c00251{bottom:392.178648px;}
.y55_c00251{bottom:393.286053px;}
.y54_c00251{bottom:393.924525px;}
.y53_c00251{bottom:395.542062px;}
.y52_c00251{bottom:395.825250px;}
.y51_c00251{bottom:397.163043px;}
.y50_c00251{bottom:406.785723px;}
.y4f_c00251{bottom:409.036977px;}
.y4e_c00251{bottom:410.463741px;}
.y4d_c00251{bottom:411.093510px;}
.y4c_c00251{bottom:411.409623px;}
.y4b_c00251{bottom:412.826421px;}
.y4a_c00251{bottom:413.478783px;}
.y49_c00251{bottom:414.713553px;}
.y48_c00251{bottom:425.494329px;}
.y47_c00251{bottom:426.308886px;}
.y46_c00251{bottom:428.382084px;}
.y45_c00251{bottom:428.902602px;}
.y44_c00251{bottom:430.668864px;}
.y43_c00251{bottom:431.995809px;}
.y42_c00251{bottom:441.324465px;}
.y41_c00251{bottom:441.667011px;}
.y40_c00251{bottom:442.379355px;}
.y3f_c00251{bottom:442.871055px;}
.y3e_c00251{bottom:444.422223px;}
.y3d_c00251{bottom:444.850818px;}
.y3c_c00251{bottom:445.563324px;}
.y3b_c00251{bottom:447.006162px;}
.y3a_c00251{bottom:447.529137px;}
.y39_c00251{bottom:448.738380px;}
.y38_c00251{bottom:459.074676px;}
.y37_c00251{bottom:460.028082px;}
.y36_c00251{bottom:460.645659px;}
.y35_c00251{bottom:462.628062px;}
.y34_c00251{bottom:463.324917px;}
.y33_c00251{bottom:464.779014px;}
.y32_c00251{bottom:465.438195px;}
.y31_c00251{bottom:465.751392px;}
.y30_c00251{bottom:477.760323px;}
.y2f_c00251{bottom:478.365993px;}
.y2e_c00251{bottom:480.544461px;}
.y2d_c00251{bottom:481.092558px;}
.y2c_c00251{bottom:481.699659px;}
.y2b_c00251{bottom:482.762436px;}
.y2a_c00251{bottom:493.772322px;}
.y29_c00251{bottom:494.245737px;}
.y28_c00251{bottom:494.968032px;}
.y27_c00251{bottom:495.285726px;}
.y26_c00251{bottom:496.797969px;}
.y25_c00251{bottom:497.465589px;}
.y24_c00251{bottom:498.162336px;}
.y23_c00251{bottom:498.961992px;}
.y22_c00251{bottom:500.044287px;}
.y21_c00251{bottom:511.062024px;}
.y20_c00251{bottom:511.633749px;}
.y1f_c00251{bottom:512.932125px;}
.y1e_c00251{bottom:514.391556px;}
.y1d_c00251{bottom:515.446257px;}
.y1c_c00251{bottom:516.243000px;}
.y1b_c00251{bottom:528.247440px;}
.y1a_c00251{bottom:528.684960px;}
.y19_c00251{bottom:529.347300px;}
.y18_c00251{bottom:530.440050px;}
.y17_c00251{bottom:530.764410px;}
.y16_c00251{bottom:531.880380px;}
.y15_c00251{bottom:533.276100px;}
.y14_c00251{bottom:533.794500px;}
.y13_c00251{bottom:545.242500px;}
.y12_c00251{bottom:545.998500px;}
.y11_c00251{bottom:547.150500px;}
.y10_c00251{bottom:548.073000px;}
.yf_c00251{bottom:548.577000px;}
.ye_c00251{bottom:548.976000px;}
.yd_c00251{bottom:549.730500px;}
.yc_c00251{bottom:550.191000px;}
.yb_c00251{bottom:550.450500px;}
.ya_c00251{bottom:550.804500px;}
.y9_c00251{bottom:563.008500px;}
.y8_c00251{bottom:563.580000px;}
.y7_c00251{bottom:564.807000px;}
.y6_c00251{bottom:565.083000px;}
.y5_c00251{bottom:566.157000px;}
.y4_c00251{bottom:567.162000px;}
.y3_c00251{bottom:567.664500px;}
.y2_c00251{bottom:568.086000px;}
.y1_c00251{bottom:577.798500px;}
.he_c00251{height:57.759355px;}
.h9_c00251{height:58.809525px;}
.h5_c00251{height:58.811759px;}
.h8_c00251{height:59.859695px;}
.h6_c00251{height:60.909865px;}
.hb_c00251{height:61.960035px;}
.ha_c00251{height:63.010205px;}
.hd_c00251{height:66.160715px;}
.h7_c00251{height:68.261056px;}
.h4_c00251{height:69.300000px;}
.hc_c00251{height:69.311226px;}
.h3_c00251{height:70.350000px;}
.hf_c00251{height:70.361396px;}
.h10_c00251{height:73.511906px;}
.h2_c00251{height:111.300000px;}
.h1_c00251{height:618.750000px;}
.h0_c00251{height:619.050000px;}
.w0_c00251{width:359.100000px;}
.w1_c00251{width:359.250000px;}
.x0_c00251{left:0.000000px;}
.x7b_c00251{left:33.287682px;}
.x70_c00251{left:35.068494px;}
.x6e_c00251{left:36.491052px;}
.x68_c00251{left:37.518441px;}
.x5a_c00251{left:38.565951px;}
.x44_c00251{left:40.232766px;}
.x13_c00251{left:41.337000px;}
.x22_c00251{left:42.940671px;}
.x18_c00251{left:44.095500px;}
.x2_c00251{left:45.927000px;}
.x54_c00251{left:48.623682px;}
.x27_c00251{left:56.257749px;}
.x6a_c00251{left:58.022385px;}
.x5b_c00251{left:60.994521px;}
.xa_c00251{left:63.216000px;}
.x3_c00251{left:66.990000px;}
.x45_c00251{left:68.573214px;}
.x3e_c00251{left:71.267118px;}
.xb_c00251{left:76.159500px;}
.x5c_c00251{left:80.175942px;}
.x28_c00251{left:83.709279px;}
.x76_c00251{left:85.887525px;}
.x55_c00251{left:86.993226px;}
.x19_c00251{left:88.359000px;}
.x2c_c00251{left:89.477250px;}
.x4_c00251{left:92.101500px;}
.x23_c00251{left:93.564444px;}
.x3a_c00251{left:95.570355px;}
.x64_c00251{left:96.711213px;}
.xc_c00251{left:99.208500px;}
.x74_c00251{left:100.990815px;}
.x4f_c00251{left:102.100743px;}
.x3b_c00251{left:106.884924px;}
.x2d_c00251{left:109.611861px;}
.x36_c00251{left:112.122138px;}
.x4b_c00251{left:113.975898px;}
.x56_c00251{left:114.994215px;}
.x65_c00251{left:118.200513px;}
.x1c_c00251{left:122.443530px;}
.x43_c00251{left:124.456785px;}
.x57_c00251{left:125.851743px;}
.x3f_c00251{left:130.389666px;}
.xd_c00251{left:136.918500px;}
.x5_c00251{left:142.371000px;}
.x29_c00251{left:144.319245px;}
.x50_c00251{left:145.683894px;}
.x1a_c00251{left:146.953500px;}
.x24_c00251{left:148.572474px;}
.x1d_c00251{left:151.481898px;}
.x61_c00251{left:155.392434px;}
.xe_c00251{left:156.901500px;}
.x5d_c00251{left:160.121802px;}
.x33_c00251{left:161.472900px;}
.x48_c00251{left:163.918755px;}
.x2e_c00251{left:165.094869px;}
.x46_c00251{left:167.402613px;}
.x71_c00251{left:168.446700px;}
.x3c_c00251{left:171.573270px;}
.x2a_c00251{left:173.363613px;}
.x37_c00251{left:176.301243px;}
.x1e_c00251{left:179.318901px;}
.x1_c00251{left:180.630000px;}
.xf_c00251{left:182.065500px;}
.x49_c00251{left:183.645702px;}
.x62_c00251{left:187.268982px;}
.x6c_c00251{left:189.391911px;}
.x47_c00251{left:190.908912px;}
.x14_c00251{left:192.841500px;}
.x6_c00251{left:196.074000px;}
.x3d_c00251{left:197.124057px;}
.x4c_c00251{left:198.212823px;}
.x38_c00251{left:199.617963px;}
.x63_c00251{left:200.638350px;}
.x5e_c00251{left:202.886685px;}
.x7_c00251{left:209.838000px;}
.x40_c00251{left:212.540754px;}
.x51_c00251{left:215.251641px;}
.x66_c00251{left:218.762850px;}
.x6f_c00251{left:220.395231px;}
.x4d_c00251{left:221.713122px;}
.x10_c00251{left:228.184500px;}
.x79_c00251{left:232.151424px;}
.x6b_c00251{left:237.371526px;}
.x1f_c00251{left:242.325597px;}
.x58_c00251{left:246.815862px;}
.x72_c00251{left:251.095305px;}
.x25_c00251{left:252.342885px;}
.x20_c00251{left:255.557166px;}
.x34_c00251{left:261.220536px;}
.x15_c00251{left:263.697000px;}
.x52_c00251{left:265.582914px;}
.x69_c00251{left:267.325917px;}
.x2f_c00251{left:268.650465px;}
.x8_c00251{left:271.206000px;}
.x4a_c00251{left:272.220423px;}
.x5f_c00251{left:273.491691px;}
.x77_c00251{left:274.788846px;}
.x7a_c00251{left:275.838366px;}
.x6d_c00251{left:277.342659px;}
.x26_c00251{left:281.156319px;}
.x11_c00251{left:285.784500px;}
.x30_c00251{left:287.547738px;}
.x78_c00251{left:288.640590px;}
.x60_c00251{left:291.469275px;}
.x35_c00251{left:292.552527px;}
.x73_c00251{left:294.025905px;}
.x16_c00251{left:296.814000px;}
.x41_c00251{left:297.992715px;}
.x9_c00251{left:299.793000px;}
.x21_c00251{left:305.396793px;}
.x53_c00251{left:306.898173px;}
.x67_c00251{left:309.487902px;}
.x59_c00251{left:310.827111px;}
.x31_c00251{left:314.951796px;}
.x75_c00251{left:317.321709px;}
.x17_c00251{left:318.690000px;}
.x2b_c00251{left:321.424629px;}
.x12_c00251{left:323.548500px;}
.x42_c00251{left:325.719729px;}
.x32_c00251{left:328.146906px;}
.x4e_c00251{left:329.250900px;}
.x1b_c00251{left:331.927500px;}
.x39_c00251{left:335.846904px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.fsc_c00251{font-size:51.341649pt;}
.fs7_c00251{font-size:52.275133pt;}
.fs3_c00251{font-size:52.277119pt;}
.fs6_c00251{font-size:53.208618pt;}
.fs4_c00251{font-size:54.142102pt;}
.fs9_c00251{font-size:55.075587pt;}
.fs8_c00251{font-size:56.009071pt;}
.fsb_c00251{font-size:58.809525pt;}
.fs5_c00251{font-size:60.676494pt;}
.fs2_c00251{font-size:61.600000pt;}
.fsa_c00251{font-size:61.609978pt;}
.fs1_c00251{font-size:62.533333pt;}
.fsd_c00251{font-size:62.543463pt;}
.fse_c00251{font-size:65.343916pt;}
.fs0_c00251{font-size:98.933333pt;}
.y0_c00251{bottom:0.000000pt;}
.yf8_c00251{bottom:24.886824pt;}
.yf7_c00251{bottom:28.811528pt;}
.yf6_c00251{bottom:29.118627pt;}
.yf5_c00251{bottom:29.937936pt;}
.yf4_c00251{bottom:42.985275pt;}
.yf3_c00251{bottom:43.265019pt;}
.yf2_c00251{bottom:43.489536pt;}
.yf1_c00251{bottom:44.160749pt;}
.yf0_c00251{bottom:44.509707pt;}
.yef_c00251{bottom:45.777680pt;}
.yee_c00251{bottom:56.400851pt;}
.yed_c00251{bottom:56.659824pt;}
.yec_c00251{bottom:58.078643pt;}
.yeb_c00251{bottom:58.637419pt;}
.yea_c00251{bottom:58.956760pt;}
.ye9_c00251{bottom:59.520480pt;}
.ye8_c00251{bottom:60.185075pt;}
.ye7_c00251{bottom:60.442488pt;}
.ye6_c00251{bottom:61.143376pt;}
.ye5_c00251{bottom:70.742747pt;}
.ye4_c00251{bottom:71.433664pt;}
.ye3_c00251{bottom:71.710339pt;}
.ye2_c00251{bottom:72.479571pt;}
.ye1_c00251{bottom:72.993360pt;}
.ye0_c00251{bottom:73.270035pt;}
.ydf_c00251{bottom:74.002936pt;}
.yde_c00251{bottom:74.272637pt;}
.ydd_c00251{bottom:74.974957pt;}
.ydc_c00251{bottom:75.326813pt;}
.ydb_c00251{bottom:76.268144pt;}
.yda_c00251{bottom:86.117672pt;}
.yd9_c00251{bottom:86.627635pt;}
.yd8_c00251{bottom:87.071315pt;}
.yd7_c00251{bottom:87.362312pt;}
.yd6_c00251{bottom:88.907192pt;}
.yd5_c00251{bottom:89.327357pt;}
.yd4_c00251{bottom:90.521416pt;}
.yd3_c00251{bottom:90.875083pt;}
.yd2_c00251{bottom:91.399845pt;}
.yd1_c00251{bottom:91.870845pt;}
.yd0_c00251{bottom:102.745568pt;}
.ycf_c00251{bottom:103.885136pt;}
.yce_c00251{bottom:104.709928pt;}
.ycd_c00251{bottom:106.180341pt;}
.ycc_c00251{bottom:106.991656pt;}
.ycb_c00251{bottom:116.932872pt;}
.yca_c00251{bottom:117.864133pt;}
.yc9_c00251{bottom:119.108459pt;}
.yc8_c00251{bottom:119.506088pt;}
.yc7_c00251{bottom:120.617027pt;}
.yc6_c00251{bottom:121.327984pt;}
.yc5_c00251{bottom:122.355547pt;}
.yc4_c00251{bottom:132.561928pt;}
.yc3_c00251{bottom:134.403488pt;}
.yc2_c00251{bottom:135.289069pt;}
.yc1_c00251{bottom:135.986720pt;}
.yc0_c00251{bottom:137.140952pt;}
.ybf_c00251{bottom:138.229384pt;}
.ybe_c00251{bottom:138.678248pt;}
.ybd_c00251{bottom:149.306533pt;}
.ybc_c00251{bottom:150.805005pt;}
.ybb_c00251{bottom:151.191992pt;}
.yba_c00251{bottom:152.432453pt;}
.yb9_c00251{bottom:153.799717pt;}
.yb8_c00251{bottom:163.376717pt;}
.yb7_c00251{bottom:164.470656pt;}
.yb6_c00251{bottom:165.393835pt;}
.yb5_c00251{bottom:165.776453pt;}
.yb4_c00251{bottom:166.943720pt;}
.yb3_c00251{bottom:167.628368pt;}
.yb2_c00251{bottom:168.105573pt;}
.yb1_c00251{bottom:169.404541pt;}
.yb0_c00251{bottom:177.593731pt;}
.yaf_c00251{bottom:179.329587pt;}
.yae_c00251{bottom:179.850893pt;}
.yad_c00251{bottom:181.022128pt;}
.yac_c00251{bottom:181.390755pt;}
.yab_c00251{bottom:182.268899pt;}
.yaa_c00251{bottom:184.367115pt;}
.ya9_c00251{bottom:185.488925pt;}
.ya8_c00251{bottom:194.621251pt;}
.ya7_c00251{bottom:195.273920pt;}
.ya6_c00251{bottom:195.705608pt;}
.ya5_c00251{bottom:197.105611pt;}
.ya4_c00251{bottom:197.679077pt;}
.ya3_c00251{bottom:198.044227pt;}
.ya2_c00251{bottom:199.865245pt;}
.ya1_c00251{bottom:200.760528pt;}
.ya0_c00251{bottom:201.329973pt;}
.y9f_c00251{bottom:210.577677pt;}
.y9e_c00251{bottom:210.818949pt;}
.y9d_c00251{bottom:212.051765pt;}
.y9c_c00251{bottom:212.469685pt;}
.y9b_c00251{bottom:213.381997pt;}
.y9a_c00251{bottom:214.614717pt;}
.y99_c00251{bottom:215.087936pt;}
.y98_c00251{bottom:215.497539pt;}
.y97_c00251{bottom:215.976435pt;}
.y96_c00251{bottom:225.731493pt;}
.y95_c00251{bottom:226.255275pt;}
.y94_c00251{bottom:227.039765pt;}
.y93_c00251{bottom:228.793875pt;}
.y92_c00251{bottom:229.512699pt;}
.y91_c00251{bottom:229.734435pt;}
.y90_c00251{bottom:230.306491pt;}
.y8f_c00251{bottom:231.091125pt;}
.y8e_c00251{bottom:240.383840pt;}
.y8d_c00251{bottom:240.740531pt;}
.y8c_c00251{bottom:241.512277pt;}
.y8b_c00251{bottom:242.452288pt;}
.y8a_c00251{bottom:242.809795pt;}
.y89_c00251{bottom:243.750765pt;}
.y88_c00251{bottom:244.181123pt;}
.y87_c00251{bottom:244.564133pt;}
.y86_c00251{bottom:245.733640pt;}
.y85_c00251{bottom:255.189016pt;}
.y84_c00251{bottom:255.784576pt;}
.y83_c00251{bottom:257.291077pt;}
.y82_c00251{bottom:257.751109pt;}
.y81_c00251{bottom:259.398997pt;}
.y80_c00251{bottom:259.785240pt;}
.y7f_c00251{bottom:260.857131pt;}
.y7e_c00251{bottom:271.134368pt;}
.y7d_c00251{bottom:271.638536pt;}
.y7c_c00251{bottom:273.291808pt;}
.y7b_c00251{bottom:273.659456pt;}
.y7a_c00251{bottom:273.941040pt;}
.y79_c00251{bottom:275.064640pt;}
.y78_c00251{bottom:275.977683pt;}
.y77_c00251{bottom:285.637992pt;}
.y76_c00251{bottom:286.791029pt;}
.y75_c00251{bottom:288.153781pt;}
.y74_c00251{bottom:288.613909pt;}
.y73_c00251{bottom:289.031189pt;}
.y72_c00251{bottom:290.097139pt;}
.y71_c00251{bottom:290.545960pt;}
.y70_c00251{bottom:291.100773pt;}
.y6f_c00251{bottom:300.944920pt;}
.y6e_c00251{bottom:301.991307pt;}
.y6d_c00251{bottom:303.084381pt;}
.y6c_c00251{bottom:303.416757pt;}
.y6b_c00251{bottom:304.482035pt;}
.y6a_c00251{bottom:304.820736pt;}
.y69_c00251{bottom:305.409419pt;}
.y68_c00251{bottom:306.462779pt;}
.y67_c00251{bottom:317.034861pt;}
.y66_c00251{bottom:317.502501pt;}
.y65_c00251{bottom:318.667043pt;}
.y64_c00251{bottom:318.945757pt;}
.y63_c00251{bottom:320.090365pt;}
.y62_c00251{bottom:321.339571pt;}
.y61_c00251{bottom:321.821264pt;}
.y60_c00251{bottom:331.529285pt;}
.y5f_c00251{bottom:332.818771pt;}
.y5e_c00251{bottom:333.137640pt;}
.y5d_c00251{bottom:334.908808pt;}
.y5c_c00251{bottom:335.481560pt;}
.y5b_c00251{bottom:335.939920pt;}
.y5a_c00251{bottom:337.254000pt;}
.y59_c00251{bottom:337.905867pt;}
.y58_c00251{bottom:347.576139pt;}
.y57_c00251{bottom:348.156189pt;}
.y56_c00251{bottom:348.603243pt;}
.y55_c00251{bottom:349.587603pt;}
.y54_c00251{bottom:350.155133pt;}
.y53_c00251{bottom:351.592944pt;}
.y52_c00251{bottom:351.844667pt;}
.y51_c00251{bottom:353.033816pt;}
.y50_c00251{bottom:361.587309pt;}
.y4f_c00251{bottom:363.588424pt;}
.y4e_c00251{bottom:364.856659pt;}
.y4d_c00251{bottom:365.416453pt;}
.y4c_c00251{bottom:365.697443pt;}
.y4b_c00251{bottom:366.956819pt;}
.y4a_c00251{bottom:367.536696pt;}
.y49_c00251{bottom:368.634269pt;}
.y48_c00251{bottom:378.217181pt;}
.y47_c00251{bottom:378.941232pt;}
.y46_c00251{bottom:380.784075pt;}
.y45_c00251{bottom:381.246757pt;}
.y44_c00251{bottom:382.816768pt;}
.y43_c00251{bottom:383.996275pt;}
.y42_c00251{bottom:392.288413pt;}
.y41_c00251{bottom:392.592899pt;}
.y40_c00251{bottom:393.226093pt;}
.y3f_c00251{bottom:393.663160pt;}
.y3e_c00251{bottom:395.041976pt;}
.y3d_c00251{bottom:395.422949pt;}
.y3c_c00251{bottom:396.056288pt;}
.y3b_c00251{bottom:397.338811pt;}
.y3a_c00251{bottom:397.803677pt;}
.y39_c00251{bottom:398.878560pt;}
.y38_c00251{bottom:408.066379pt;}
.y37_c00251{bottom:408.913851pt;}
.y36_c00251{bottom:409.462808pt;}
.y35_c00251{bottom:411.224944pt;}
.y34_c00251{bottom:411.844371pt;}
.y33_c00251{bottom:413.136901pt;}
.y32_c00251{bottom:413.722840pt;}
.y31_c00251{bottom:414.001237pt;}
.y30_c00251{bottom:424.675843pt;}
.y2f_c00251{bottom:425.214216pt;}
.y2e_c00251{bottom:427.150632pt;}
.y2d_c00251{bottom:427.637829pt;}
.y2c_c00251{bottom:428.177475pt;}
.y2b_c00251{bottom:429.122165pt;}
.y2a_c00251{bottom:438.908731pt;}
.y29_c00251{bottom:439.329544pt;}
.y28_c00251{bottom:439.971584pt;}
.y27_c00251{bottom:440.253979pt;}
.y26_c00251{bottom:441.598195pt;}
.y25_c00251{bottom:442.191635pt;}
.y24_c00251{bottom:442.810965pt;}
.y23_c00251{bottom:443.521771pt;}
.y22_c00251{bottom:444.483811pt;}
.y21_c00251{bottom:454.277355pt;}
.y20_c00251{bottom:454.785555pt;}
.y1f_c00251{bottom:455.939667pt;}
.y1e_c00251{bottom:457.236939pt;}
.y1d_c00251{bottom:458.174451pt;}
.y1c_c00251{bottom:458.882667pt;}
.y1b_c00251{bottom:469.553280pt;}
.y1a_c00251{bottom:469.942187pt;}
.y19_c00251{bottom:470.530933pt;}
.y18_c00251{bottom:471.502267pt;}
.y17_c00251{bottom:471.790587pt;}
.y16_c00251{bottom:472.782560pt;}
.y15_c00251{bottom:474.023200pt;}
.y14_c00251{bottom:474.484000pt;}
.y13_c00251{bottom:484.660000pt;}
.y12_c00251{bottom:485.332000pt;}
.y11_c00251{bottom:486.356000pt;}
.y10_c00251{bottom:487.176000pt;}
.yf_c00251{bottom:487.624000pt;}
.ye_c00251{bottom:487.978667pt;}
.yd_c00251{bottom:488.649333pt;}
.yc_c00251{bottom:489.058667pt;}
.yb_c00251{bottom:489.289333pt;}
.ya_c00251{bottom:489.604000pt;}
.y9_c00251{bottom:500.452000pt;}
.y8_c00251{bottom:500.960000pt;}
.y7_c00251{bottom:502.050667pt;}
.y6_c00251{bottom:502.296000pt;}
.y5_c00251{bottom:503.250667pt;}
.y4_c00251{bottom:504.144000pt;}
.y3_c00251{bottom:504.590667pt;}
.y2_c00251{bottom:504.965333pt;}
.y1_c00251{bottom:513.598667pt;}
.he_c00251{height:51.341649pt;}
.h9_c00251{height:52.275133pt;}
.h5_c00251{height:52.277119pt;}
.h8_c00251{height:53.208618pt;}
.h6_c00251{height:54.142102pt;}
.hb_c00251{height:55.075587pt;}
.ha_c00251{height:56.009071pt;}
.hd_c00251{height:58.809525pt;}
.h7_c00251{height:60.676494pt;}
.h4_c00251{height:61.600000pt;}
.hc_c00251{height:61.609978pt;}
.h3_c00251{height:62.533333pt;}
.hf_c00251{height:62.543463pt;}
.h10_c00251{height:65.343916pt;}
.h2_c00251{height:98.933333pt;}
.h1_c00251{height:550.000000pt;}
.h0_c00251{height:550.266667pt;}
.w0_c00251{width:319.200000pt;}
.w1_c00251{width:319.333333pt;}
.x0_c00251{left:0.000000pt;}
.x7b_c00251{left:29.589051pt;}
.x70_c00251{left:31.171995pt;}
.x6e_c00251{left:32.436491pt;}
.x68_c00251{left:33.349725pt;}
.x5a_c00251{left:34.280845pt;}
.x44_c00251{left:35.762459pt;}
.x13_c00251{left:36.744000pt;}
.x22_c00251{left:38.169485pt;}
.x18_c00251{left:39.196000pt;}
.x2_c00251{left:40.824000pt;}
.x54_c00251{left:43.221051pt;}
.x27_c00251{left:50.006888pt;}
.x6a_c00251{left:51.575453pt;}
.x5b_c00251{left:54.217352pt;}
.xa_c00251{left:56.192000pt;}
.x3_c00251{left:59.546667pt;}
.x45_c00251{left:60.953968pt;}
.x3e_c00251{left:63.348549pt;}
.xb_c00251{left:67.697333pt;}
.x5c_c00251{left:71.267504pt;}
.x28_c00251{left:74.408248pt;}
.x76_c00251{left:76.344467pt;}
.x55_c00251{left:77.327312pt;}
.x19_c00251{left:78.541333pt;}
.x2c_c00251{left:79.535333pt;}
.x4_c00251{left:81.868000pt;}
.x23_c00251{left:83.168395pt;}
.x3a_c00251{left:84.951427pt;}
.x64_c00251{left:85.965523pt;}
.xc_c00251{left:88.185333pt;}
.x74_c00251{left:89.769613pt;}
.x4f_c00251{left:90.756216pt;}
.x3b_c00251{left:95.008821pt;}
.x2d_c00251{left:97.432765pt;}
.x36_c00251{left:99.664123pt;}
.x4b_c00251{left:101.311909pt;}
.x56_c00251{left:102.217080pt;}
.x65_c00251{left:105.067123pt;}
.x1c_c00251{left:108.838693pt;}
.x43_c00251{left:110.628253pt;}
.x57_c00251{left:111.868216pt;}
.x3f_c00251{left:115.901925pt;}
.xd_c00251{left:121.705333pt;}
.x5_c00251{left:126.552000pt;}
.x29_c00251{left:128.283773pt;}
.x50_c00251{left:129.496795pt;}
.x1a_c00251{left:130.625333pt;}
.x24_c00251{left:132.064421pt;}
.x1d_c00251{left:134.650576pt;}
.x61_c00251{left:138.126608pt;}
.xe_c00251{left:139.468000pt;}
.x5d_c00251{left:142.330491pt;}
.x33_c00251{left:143.531467pt;}
.x48_c00251{left:145.705560pt;}
.x2e_c00251{left:146.750995pt;}
.x46_c00251{left:148.802323pt;}
.x71_c00251{left:149.730400pt;}
.x3c_c00251{left:152.509573pt;}
.x2a_c00251{left:154.100989pt;}
.x37_c00251{left:156.712216pt;}
.x1e_c00251{left:159.394579pt;}
.x1_c00251{left:160.560000pt;}
.xf_c00251{left:161.836000pt;}
.x49_c00251{left:163.240624pt;}
.x62_c00251{left:166.461317pt;}
.x6c_c00251{left:168.348365pt;}
.x47_c00251{left:169.696811pt;}
.x14_c00251{left:171.414667pt;}
.x6_c00251{left:174.288000pt;}
.x3d_c00251{left:175.221384pt;}
.x4c_c00251{left:176.189176pt;}
.x38_c00251{left:177.438189pt;}
.x63_c00251{left:178.345200pt;}
.x5e_c00251{left:180.343720pt;}
.x7_c00251{left:186.522667pt;}
.x40_c00251{left:188.925115pt;}
.x51_c00251{left:191.334792pt;}
.x66_c00251{left:194.455867pt;}
.x6f_c00251{left:195.906872pt;}
.x4d_c00251{left:197.078331pt;}
.x10_c00251{left:202.830667pt;}
.x79_c00251{left:206.356821pt;}
.x6b_c00251{left:210.996912pt;}
.x1f_c00251{left:215.400531pt;}
.x58_c00251{left:219.391877pt;}
.x72_c00251{left:223.195827pt;}
.x25_c00251{left:224.304787pt;}
.x20_c00251{left:227.161925pt;}
.x34_c00251{left:232.196032pt;}
.x15_c00251{left:234.397333pt;}
.x52_c00251{left:236.073701pt;}
.x69_c00251{left:237.623037pt;}
.x2f_c00251{left:238.800413pt;}
.x8_c00251{left:241.072000pt;}
.x4a_c00251{left:241.973709pt;}
.x5f_c00251{left:243.103725pt;}
.x77_c00251{left:244.256752pt;}
.x7a_c00251{left:245.189659pt;}
.x6d_c00251{left:246.526808pt;}
.x26_c00251{left:249.916728pt;}
.x11_c00251{left:254.030667pt;}
.x30_c00251{left:255.597989pt;}
.x78_c00251{left:256.569413pt;}
.x60_c00251{left:259.083800pt;}
.x35_c00251{left:260.046691pt;}
.x73_c00251{left:261.356360pt;}
.x16_c00251{left:263.834667pt;}
.x41_c00251{left:264.882413pt;}
.x9_c00251{left:266.482667pt;}
.x21_c00251{left:271.463816pt;}
.x53_c00251{left:272.798376pt;}
.x67_c00251{left:275.100357pt;}
.x59_c00251{left:276.290765pt;}
.x31_c00251{left:279.957152pt;}
.x75_c00251{left:282.063741pt;}
.x17_c00251{left:283.280000pt;}
.x2b_c00251{left:285.710781pt;}
.x12_c00251{left:287.598667pt;}
.x42_c00251{left:289.528648pt;}
.x32_c00251{left:291.686139pt;}
.x4e_c00251{left:292.667467pt;}
.x1b_c00251{left:295.046667pt;}
.x39_c00251{left:298.530581pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00252 {
    display:none;
  }
  .loading-indicator_c00252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00252 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00252 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00252" -> "#page-container .classname_c00252")
 */
.pf_c00252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00252 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00252 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00252 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00252 {overflow:visible;}
  }
}
.c_c00252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00252 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00252:after { /* webkit #35443 */
  content: '';
}
.t_c00252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00252 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00252 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00252 { /* info for Javascript */
  display:none;
}
.l_c00252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00252:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00252 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00252.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00252{transform:matrix(0.016552,0.000298,-0.004499,0.249960,0,0);-ms-transform:matrix(0.016552,0.000298,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.016552,0.000298,-0.004499,0.249960,0,0);}
.m4_c00252{transform:matrix(0.035672,-0.000428,0.003000,0.249982,0,0);-ms-transform:matrix(0.035672,-0.000428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.035672,-0.000428,0.003000,0.249982,0,0);}
.m2_c00252{transform:matrix(0.065345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065345,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.137290,-0.001647,0.003000,0.249982,0,0);-ms-transform:matrix(0.137290,-0.001647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137290,-0.001647,0.003000,0.249982,0,0);}
.m100_c00252{transform:matrix(0.138927,0.002501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.138927,0.002501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.138927,0.002501,-0.004499,0.249960,0,0);}
.m28_c00252{transform:matrix(0.142135,-0.001706,0.003000,0.249982,0,0);-ms-transform:matrix(0.142135,-0.001706,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142135,-0.001706,0.003000,0.249982,0,0);}
.m8_c00252{transform:matrix(0.144780,-0.001737,0.003000,0.249982,0,0);-ms-transform:matrix(0.144780,-0.001737,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144780,-0.001737,0.003000,0.249982,0,0);}
.m92_c00252{transform:matrix(0.145731,0.002623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145731,0.002623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145731,0.002623,-0.004499,0.249960,0,0);}
.mbf_c00252{transform:matrix(0.147851,0.002661,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147851,0.002661,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147851,0.002661,-0.004499,0.249960,0,0);}
.m11_c00252{transform:matrix(0.150939,-0.001811,0.003000,0.249982,0,0);-ms-transform:matrix(0.150939,-0.001811,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150939,-0.001811,0.003000,0.249982,0,0);}
.m6f_c00252{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.153509,-0.001842,0.003000,0.249982,0,0);-ms-transform:matrix(0.153509,-0.001842,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153509,-0.001842,0.003000,0.249982,0,0);}
.md1_c00252{transform:matrix(0.156020,0.002808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156020,0.002808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156020,0.002808,-0.004499,0.249960,0,0);}
.m1d_c00252{transform:matrix(0.156244,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156244,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156244,-0.001875,0.003000,0.249982,0,0);}
.mef_c00252{transform:matrix(0.156285,0.002813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156285,0.002813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156285,0.002813,-0.004499,0.249960,0,0);}
.m70_c00252{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.mb0_c00252{transform:matrix(0.157714,0.002839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157714,0.002839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157714,0.002839,-0.004499,0.249960,0,0);}
.m5e_c00252{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.159903,-0.001919,0.003000,0.249982,0,0);-ms-transform:matrix(0.159903,-0.001919,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159903,-0.001919,0.003000,0.249982,0,0);}
.m1b_c00252{transform:matrix(0.159923,-0.001919,0.003000,0.249982,0,0);-ms-transform:matrix(0.159923,-0.001919,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159923,-0.001919,0.003000,0.249982,0,0);}
.m94_c00252{transform:matrix(0.159989,0.002880,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159989,0.002880,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159989,0.002880,-0.004499,0.249960,0,0);}
.m103_c00252{transform:matrix(0.161614,0.002909,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161614,0.002909,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161614,0.002909,-0.004499,0.249960,0,0);}
.m65_c00252{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m9d_c00252{transform:matrix(0.162859,0.002931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162859,0.002931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162859,0.002931,-0.004499,0.249960,0,0);}
.m6b_c00252{transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);}
.mcb_c00252{transform:matrix(0.163109,0.002936,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163109,0.002936,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163109,0.002936,-0.004499,0.249960,0,0);}
.mf1_c00252{transform:matrix(0.163409,0.002941,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163409,0.002941,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163409,0.002941,-0.004499,0.249960,0,0);}
.m71_c00252{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m101_c00252{transform:matrix(0.166003,0.002988,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166003,0.002988,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166003,0.002988,-0.004499,0.249960,0,0);}
.ma5_c00252{transform:matrix(0.166868,0.003004,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166868,0.003004,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166868,0.003004,-0.004499,0.249960,0,0);}
.ma_c00252{transform:matrix(0.167148,-0.002006,0.003000,0.249982,0,0);-ms-transform:matrix(0.167148,-0.002006,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167148,-0.002006,0.003000,0.249982,0,0);}
.mbb_c00252{transform:matrix(0.167268,0.003011,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167268,0.003011,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167268,0.003011,-0.004499,0.249960,0,0);}
.m8e_c00252{transform:matrix(0.167298,0.003011,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167298,0.003011,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167298,0.003011,-0.004499,0.249960,0,0);}
.m6a_c00252{transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.168598,-0.002023,0.003000,0.249982,0,0);-ms-transform:matrix(0.168598,-0.002023,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168598,-0.002023,0.003000,0.249982,0,0);}
.me_c00252{transform:matrix(0.168918,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168918,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168918,-0.002027,0.003000,0.249982,0,0);}
.m90_c00252{transform:matrix(0.169073,0.003043,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169073,0.003043,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169073,0.003043,-0.004499,0.249960,0,0);}
.m97_c00252{transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);}
.mde_c00252{transform:matrix(0.169792,0.003056,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169792,0.003056,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169792,0.003056,-0.004499,0.249960,0,0);}
.mfc_c00252{transform:matrix(0.169892,0.003058,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169892,0.003058,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169892,0.003058,-0.004499,0.249960,0,0);}
.mf5_c00252{transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170877,0.003076,-0.004499,0.249960,0,0);}
.ma7_c00252{transform:matrix(0.171287,0.003083,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171287,0.003083,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171287,0.003083,-0.004499,0.249960,0,0);}
.mb2_c00252{transform:matrix(0.172382,0.003103,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172382,0.003103,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172382,0.003103,-0.004499,0.249960,0,0);}
.mb1_c00252{transform:matrix(0.173352,0.003120,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173352,0.003120,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173352,0.003120,-0.004499,0.249960,0,0);}
.md7_c00252{transform:matrix(0.173497,0.003123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173497,0.003123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173497,0.003123,-0.004499,0.249960,0,0);}
.m14_c00252{transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);}
.m2e_c00252{transform:matrix(0.174012,-0.002088,0.003000,0.249982,0,0);-ms-transform:matrix(0.174012,-0.002088,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174012,-0.002088,0.003000,0.249982,0,0);}
.m27_c00252{transform:matrix(0.175232,-0.002103,0.003000,0.249982,0,0);-ms-transform:matrix(0.175232,-0.002103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175232,-0.002103,0.003000,0.249982,0,0);}
.m66_c00252{transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.175412,-0.002105,0.003000,0.249982,0,0);-ms-transform:matrix(0.175412,-0.002105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175412,-0.002105,0.003000,0.249982,0,0);}
.ma4_c00252{transform:matrix(0.175567,0.003160,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175567,0.003160,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175567,0.003160,-0.004499,0.249960,0,0);}
.m2f_c00252{transform:matrix(0.175837,-0.002110,0.003000,0.249982,0,0);-ms-transform:matrix(0.175837,-0.002110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175837,-0.002110,0.003000,0.249982,0,0);}
.m69_c00252{transform:matrix(0.175865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175865,0.000000,0.000000,0.250000,0,0);}
.meb_c00252{transform:matrix(0.176306,0.003174,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176306,0.003174,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176306,0.003174,-0.004499,0.249960,0,0);}
.m4b_c00252{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.mc7_c00252{transform:matrix(0.176881,0.003184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176881,0.003184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176881,0.003184,-0.004499,0.249960,0,0);}
.m2d_c00252{transform:matrix(0.176917,-0.002123,0.003000,0.249982,0,0);-ms-transform:matrix(0.176917,-0.002123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176917,-0.002123,0.003000,0.249982,0,0);}
.m29_c00252{transform:matrix(0.177242,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177242,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177242,-0.002127,0.003000,0.249982,0,0);}
.md9_c00252{transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);}
.me3_c00252{transform:matrix(0.178026,0.003204,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178026,0.003204,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178026,0.003204,-0.004499,0.249960,0,0);}
.m9b_c00252{transform:matrix(0.178291,0.003209,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178291,0.003209,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178291,0.003209,-0.004499,0.249960,0,0);}
.mab_c00252{transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178611,0.003215,-0.004499,0.249960,0,0);}
.m31_c00252{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.179327,-0.002152,0.003000,0.249982,0,0);-ms-transform:matrix(0.179327,-0.002152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179327,-0.002152,0.003000,0.249982,0,0);}
.m38_c00252{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.mbd_c00252{transform:matrix(0.180316,0.003246,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180316,0.003246,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180316,0.003246,-0.004499,0.249960,0,0);}
.m24_c00252{transform:matrix(0.180877,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180877,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180877,-0.002171,0.003000,0.249982,0,0);}
.md5_c00252{transform:matrix(0.181191,0.003261,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181191,0.003261,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181191,0.003261,-0.004499,0.249960,0,0);}
.mf_c00252{transform:matrix(0.181252,-0.002175,0.003000,0.249982,0,0);-ms-transform:matrix(0.181252,-0.002175,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181252,-0.002175,0.003000,0.249982,0,0);}
.m48_c00252{transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.mfa_c00252{transform:matrix(0.182200,0.003280,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182200,0.003280,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182200,0.003280,-0.004499,0.249960,0,0);}
.m72_c00252{transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);}
.mce_c00252{transform:matrix(0.182735,0.003289,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182735,0.003289,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182735,0.003289,-0.004499,0.249960,0,0);}
.m95_c00252{transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183020,0.003294,-0.004499,0.249960,0,0);}
.mc1_c00252{transform:matrix(0.183155,0.003297,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183155,0.003297,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183155,0.003297,-0.004499,0.249960,0,0);}
.m5b_c00252{transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.183727,-0.002205,0.003000,0.249982,0,0);-ms-transform:matrix(0.183727,-0.002205,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183727,-0.002205,0.003000,0.249982,0,0);}
.m7e_c00252{transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.184064,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184064,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184064,0.002393,-0.003250,0.249979,0,0);}
.m75_c00252{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.mc6_c00252{transform:matrix(0.184535,0.003322,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184535,0.003322,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184535,0.003322,-0.004499,0.249960,0,0);}
.m6d_c00252{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.185567,-0.002227,0.003000,0.249982,0,0);-ms-transform:matrix(0.185567,-0.002227,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185567,-0.002227,0.003000,0.249982,0,0);}
.m89_c00252{transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);}
.mc8_c00252{transform:matrix(0.186195,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186195,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186195,0.003352,-0.004499,0.249960,0,0);}
.mcc_c00252{transform:matrix(0.186205,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186205,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186205,0.003352,-0.004499,0.249960,0,0);}
.m58_c00252{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.mb7_c00252{transform:matrix(0.186295,0.003353,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186295,0.003353,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186295,0.003353,-0.004499,0.249960,0,0);}
.mc5_c00252{transform:matrix(0.186520,0.003357,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186520,0.003357,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186520,0.003357,-0.004499,0.249960,0,0);}
.m64_c00252{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.m102_c00252{transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);}
.m2c_c00252{transform:matrix(0.187397,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187397,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187397,-0.002249,0.003000,0.249982,0,0);}
.m19_c00252{transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);}
.m99_c00252{transform:matrix(0.188135,0.003386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188135,0.003386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188135,0.003386,-0.004499,0.249960,0,0);}
.me2_c00252{transform:matrix(0.188364,0.003391,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188364,0.003391,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188364,0.003391,-0.004499,0.249960,0,0);}
.mfb_c00252{transform:matrix(0.188589,0.003395,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188589,0.003395,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188589,0.003395,-0.004499,0.249960,0,0);}
.m62_c00252{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.189731,-0.002277,0.003000,0.249982,0,0);-ms-transform:matrix(0.189731,-0.002277,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189731,-0.002277,0.003000,0.249982,0,0);}
.m61_c00252{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.189971,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189971,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189971,-0.002280,0.003000,0.249982,0,0);}
.mf6_c00252{transform:matrix(0.190284,0.003425,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190284,0.003425,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190284,0.003425,-0.004499,0.249960,0,0);}
.m4c_c00252{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.md3_c00252{transform:matrix(0.190744,0.003433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190744,0.003433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190744,0.003433,-0.004499,0.249960,0,0);}
.m15_c00252{transform:matrix(0.190801,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190801,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190801,-0.002290,0.003000,0.249982,0,0);}
.m60_c00252{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.mac_c00252{transform:matrix(0.191339,0.003444,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191339,0.003444,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191339,0.003444,-0.004499,0.249960,0,0);}
.m2b_c00252{transform:matrix(0.191511,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191511,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191511,-0.002298,0.003000,0.249982,0,0);}
.m37_c00252{transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.192381,-0.002309,0.003000,0.249982,0,0);-ms-transform:matrix(0.192381,-0.002309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192381,-0.002309,0.003000,0.249982,0,0);}
.m73_c00252{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.ma3_c00252{transform:matrix(0.192559,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192559,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192559,0.003466,-0.004499,0.249960,0,0);}
.m77_c00252{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00252{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m9f_c00252{transform:matrix(0.193309,0.003480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193309,0.003480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193309,0.003480,-0.004499,0.249960,0,0);}
.mdb_c00252{transform:matrix(0.194009,0.003492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194009,0.003492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194009,0.003492,-0.004499,0.249960,0,0);}
.m4e_c00252{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.ma0_c00252{transform:matrix(0.194873,0.003508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194873,0.003508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194873,0.003508,-0.004499,0.249960,0,0);}
.md0_c00252{transform:matrix(0.195068,0.003511,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195068,0.003511,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195068,0.003511,-0.004499,0.249960,0,0);}
.mb8_c00252{transform:matrix(0.195513,0.003519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195513,0.003519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195513,0.003519,-0.004499,0.249960,0,0);}
.maf_c00252{transform:matrix(0.195758,0.003524,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195758,0.003524,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195758,0.003524,-0.004499,0.249960,0,0);}
.mf2_c00252{transform:matrix(0.195863,0.003526,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195863,0.003526,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195863,0.003526,-0.004499,0.249960,0,0);}
.m67_c00252{transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195920,0.000000,0.000000,0.250000,0,0);}
.mf9_c00252{transform:matrix(0.196018,0.003528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196018,0.003528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196018,0.003528,-0.004499,0.249960,0,0);}
.m93_c00252{transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196113,0.003530,-0.004499,0.249960,0,0);}
.m5_c00252{transform:matrix(0.196131,-0.002354,0.003000,0.249982,0,0);-ms-transform:matrix(0.196131,-0.002354,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196131,-0.002354,0.003000,0.249982,0,0);}
.mdf_c00252{transform:matrix(0.196568,0.003538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196568,0.003538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196568,0.003538,-0.004499,0.249960,0,0);}
.m8b_c00252{transform:matrix(0.196708,0.002557,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196708,0.002557,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196708,0.002557,-0.003250,0.249979,0,0);}
.mda_c00252{transform:matrix(0.196768,0.003542,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196768,0.003542,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196768,0.003542,-0.004499,0.249960,0,0);}
.m9c_c00252{transform:matrix(0.197168,0.003549,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197168,0.003549,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197168,0.003549,-0.004499,0.249960,0,0);}
.m46_c00252{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.mae_c00252{transform:matrix(0.197693,0.003558,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197693,0.003558,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197693,0.003558,-0.004499,0.249960,0,0);}
.m8f_c00252{transform:matrix(0.197713,0.003559,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197713,0.003559,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197713,0.003559,-0.004499,0.249960,0,0);}
.m45_c00252{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.med_c00252{transform:matrix(0.198123,0.003566,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198123,0.003566,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198123,0.003566,-0.004499,0.249960,0,0);}
.md2_c00252{transform:matrix(0.198383,0.003571,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198383,0.003571,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198383,0.003571,-0.004499,0.249960,0,0);}
.mca_c00252{transform:matrix(0.198408,0.003571,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198408,0.003571,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198408,0.003571,-0.004499,0.249960,0,0);}
.m74_c00252{transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);}
.mf0_c00252{transform:matrix(0.199203,0.003586,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199203,0.003586,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199203,0.003586,-0.004499,0.249960,0,0);}
.m96_c00252{transform:matrix(0.199578,0.003592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199578,0.003592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199578,0.003592,-0.004499,0.249960,0,0);}
.ma2_c00252{transform:matrix(0.199838,0.003597,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199838,0.003597,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199838,0.003597,-0.004499,0.249960,0,0);}
.m3c_c00252{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.mb3_c00252{transform:matrix(0.200013,0.003600,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200013,0.003600,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200013,0.003600,-0.004499,0.249960,0,0);}
.m98_c00252{transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200233,0.003604,-0.004499,0.249960,0,0);}
.m36_c00252{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.mf7_c00252{transform:matrix(0.200642,0.003612,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200642,0.003612,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200642,0.003612,-0.004499,0.249960,0,0);}
.m4a_c00252{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.mb4_c00252{transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201317,0.003624,-0.004499,0.249960,0,0);}
.m30_c00252{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.201396,-0.002417,0.003000,0.249982,0,0);-ms-transform:matrix(0.201396,-0.002417,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201396,-0.002417,0.003000,0.249982,0,0);}
.m9a_c00252{transform:matrix(0.201482,0.003627,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201482,0.003627,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201482,0.003627,-0.004499,0.249960,0,0);}
.m33_c00252{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.202010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202010,0.000000,0.000000,0.250000,0,0);}
.me6_c00252{transform:matrix(0.202497,0.003645,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202497,0.003645,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202497,0.003645,-0.004499,0.249960,0,0);}
.ma6_c00252{transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);}
.m32_c00252{transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);}
.me4_c00252{transform:matrix(0.204167,0.003675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204167,0.003675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204167,0.003675,-0.004499,0.249960,0,0);}
.m56_c00252{transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);}
.m9e_c00252{transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204507,0.003681,-0.004499,0.249960,0,0);}
.m7b_c00252{transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.204913,0.002664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204913,0.002664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204913,0.002664,-0.003250,0.249979,0,0);}
.m7_c00252{transform:matrix(0.205615,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205615,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205615,-0.002467,0.003000,0.249982,0,0);}
.m54_c00252{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.mfe_c00252{transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);}
.m76_c00252{transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.mec_c00252{transform:matrix(0.207971,0.003743,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207971,0.003743,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207971,0.003743,-0.004499,0.249960,0,0);}
.m4f_c00252{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.mdc_c00252{transform:matrix(0.208571,0.003754,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208571,0.003754,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208571,0.003754,-0.004499,0.249960,0,0);}
.m6_c00252{transform:matrix(0.209120,-0.002509,0.003000,0.249982,0,0);-ms-transform:matrix(0.209120,-0.002509,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209120,-0.002509,0.003000,0.249982,0,0);}
.mcf_c00252{transform:matrix(0.209321,0.003768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209321,0.003768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209321,0.003768,-0.004499,0.249960,0,0);}
.m39_c00252{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.209660,-0.002516,0.003000,0.249982,0,0);-ms-transform:matrix(0.209660,-0.002516,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209660,-0.002516,0.003000,0.249982,0,0);}
.m80_c00252{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);}
.mf8_c00252{transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);}
.m82_c00252{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.mc3_c00252{transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);}
.m5f_c00252{transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);}
.mb5_c00252{transform:matrix(0.211621,0.003809,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211621,0.003809,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211621,0.003809,-0.004499,0.249960,0,0);}
.ma1_c00252{transform:matrix(0.211791,0.003812,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211791,0.003812,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211791,0.003812,-0.004499,0.249960,0,0);}
.mb6_c00252{transform:matrix(0.212201,0.003820,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212201,0.003820,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212201,0.003820,-0.004499,0.249960,0,0);}
.m7a_c00252{transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212680,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.212930,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212930,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212930,-0.002555,0.003000,0.249982,0,0);}
.ma8_c00252{transform:matrix(0.213015,0.003834,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213015,0.003834,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213015,0.003834,-0.004499,0.249960,0,0);}
.m1f_c00252{transform:matrix(0.213340,-0.002560,0.003000,0.249982,0,0);-ms-transform:matrix(0.213340,-0.002560,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213340,-0.002560,0.003000,0.249982,0,0);}
.m5c_c00252{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.214325,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214325,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214325,-0.002572,0.003000,0.249982,0,0);}
.m52_c00252{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.mea_c00252{transform:matrix(0.214765,0.003866,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214765,0.003866,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214765,0.003866,-0.004499,0.249960,0,0);}
.mc4_c00252{transform:matrix(0.215100,0.003872,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215100,0.003872,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215100,0.003872,-0.004499,0.249960,0,0);}
.m87_c00252{transform:matrix(0.215577,0.002802,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215577,0.002802,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215577,0.002802,-0.003250,0.249979,0,0);}
.ma9_c00252{transform:matrix(0.216285,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216285,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216285,0.003893,-0.004499,0.249960,0,0);}
.m8d_c00252{transform:matrix(0.216882,0.002819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216882,0.002819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216882,0.002819,-0.003250,0.249979,0,0);}
.mc0_c00252{transform:matrix(0.217475,0.003915,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217475,0.003915,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217475,0.003915,-0.004499,0.249960,0,0);}
.mc9_c00252{transform:matrix(0.218585,0.003935,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218585,0.003935,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218585,0.003935,-0.004499,0.249960,0,0);}
.me1_c00252{transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);}
.me8_c00252{transform:matrix(0.219939,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219939,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219939,0.003959,-0.004499,0.249960,0,0);}
.m20_c00252{transform:matrix(0.220564,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220564,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220564,-0.002647,0.003000,0.249982,0,0);}
.m8a_c00252{transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);}
.m5a_c00252{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me0_c00252{transform:matrix(0.225723,0.004063,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225723,0.004063,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225723,0.004063,-0.004499,0.249960,0,0);}
.m53_c00252{transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226210,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.226983,0.004086,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226983,0.004086,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226983,0.004086,-0.004499,0.249960,0,0);}
.mad_c00252{transform:matrix(0.227978,0.004104,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227978,0.004104,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227978,0.004104,-0.004499,0.249960,0,0);}
.md4_c00252{transform:matrix(0.228743,0.004117,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228743,0.004117,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228743,0.004117,-0.004499,0.249960,0,0);}
.m43_c00252{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.mee_c00252{transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230063,0.004141,-0.004499,0.249960,0,0);}
.mba_c00252{transform:matrix(0.230103,0.004142,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230103,0.004142,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230103,0.004142,-0.004499,0.249960,0,0);}
.mc2_c00252{transform:matrix(0.230358,0.004146,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230358,0.004146,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230358,0.004146,-0.004499,0.249960,0,0);}
.maa_c00252{transform:matrix(0.230378,0.004147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230378,0.004147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230378,0.004147,-0.004499,0.249960,0,0);}
.me5_c00252{transform:matrix(0.231278,0.004163,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231278,0.004163,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231278,0.004163,-0.004499,0.249960,0,0);}
.mb9_c00252{transform:matrix(0.232077,0.004177,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232077,0.004177,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232077,0.004177,-0.004499,0.249960,0,0);}
.m42_c00252{transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.mff_c00252{transform:matrix(0.234492,0.004221,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234492,0.004221,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234492,0.004221,-0.004499,0.249960,0,0);}
.mfd_c00252{transform:matrix(0.235302,0.004235,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235302,0.004235,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235302,0.004235,-0.004499,0.249960,0,0);}
.mf4_c00252{transform:matrix(0.237057,0.004267,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237057,0.004267,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237057,0.004267,-0.004499,0.249960,0,0);}
.m85_c00252{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mbc_c00252{transform:matrix(0.237457,0.004274,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237457,0.004274,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237457,0.004274,-0.004499,0.249960,0,0);}
.m79_c00252{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.238928,-0.002867,0.003000,0.249982,0,0);-ms-transform:matrix(0.238928,-0.002867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238928,-0.002867,0.003000,0.249982,0,0);}
.m40_c00252{transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);}
.me9_c00252{transform:matrix(0.239816,0.004317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239816,0.004317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239816,0.004317,-0.004499,0.249960,0,0);}
.m47_c00252{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);-ms-transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);}
.mcd_c00252{transform:matrix(0.241671,0.004350,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241671,0.004350,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241671,0.004350,-0.004499,0.249960,0,0);}
.me7_c00252{transform:matrix(0.242466,0.004364,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242466,0.004364,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242466,0.004364,-0.004499,0.249960,0,0);}
.m1e_c00252{transform:matrix(0.242858,-0.002914,0.003000,0.249982,0,0);-ms-transform:matrix(0.242858,-0.002914,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242858,-0.002914,0.003000,0.249982,0,0);}
.m55_c00252{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00252{transform:matrix(0.254459,0.004580,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254459,0.004580,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254459,0.004580,-0.004499,0.249960,0,0);}
.m7d_c00252{transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);}
.m86_c00252{transform:matrix(0.260523,0.003387,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260523,0.003387,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260523,0.003387,-0.003250,0.249979,0,0);}
.m26_c00252{transform:matrix(0.264621,-0.003175,0.003000,0.249982,0,0);-ms-transform:matrix(0.264621,-0.003175,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264621,-0.003175,0.003000,0.249982,0,0);}
.md6_c00252{transform:matrix(0.264632,0.004763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264632,0.004763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264632,0.004763,-0.004499,0.249960,0,0);}
.m3f_c00252{transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);}
.md8_c00252{transform:matrix(0.274666,0.004944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274666,0.004944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274666,0.004944,-0.004499,0.249960,0,0);}
.m0_c00252{transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);}
.mf3_c00252{transform:matrix(0.404499,0.007281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.404499,0.007281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.404499,0.007281,-0.004499,0.249960,0,0);}
.m3_c00252{transform:matrix(0.601085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601085,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:0.000000px;}
.fc0_c00252{color:transparent;}
.fs0_c00252{font-size:24.150000px;}
.fs1_c00252{font-size:53.550000px;}
.fsd_c00252{font-size:56.700000px;}
.fs9_c00252{font-size:57.750000px;}
.fs5_c00252{font-size:57.754158px;}
.fsf_c00252{font-size:57.754880px;}
.fs7_c00252{font-size:58.800000px;}
.fs14_c00252{font-size:58.809525px;}
.fs8_c00252{font-size:59.850000px;}
.fs17_c00252{font-size:59.859695px;}
.fse_c00252{font-size:60.900000px;}
.fs12_c00252{font-size:60.909865px;}
.fs6_c00252{font-size:61.950000px;}
.fs11_c00252{font-size:63.010205px;}
.fs10_c00252{font-size:64.060375px;}
.fs15_c00252{font-size:65.110545px;}
.fsa_c00252{font-size:66.150000px;}
.fs16_c00252{font-size:66.160715px;}
.fsc_c00252{font-size:68.250000px;}
.fs13_c00252{font-size:68.261056px;}
.fsb_c00252{font-size:69.300000px;}
.fs4_c00252{font-size:70.355065px;}
.fs3_c00252{font-size:71.405141px;}
.fs2_c00252{font-size:79.800000px;}
.y0_c00252{bottom:0.000000px;}
.ybb_c00252{bottom:24.578790px;}
.yba_c00252{bottom:25.268628px;}
.yb9_c00252{bottom:26.430402px;}
.yb8_c00252{bottom:27.096642px;}
.yb7_c00252{bottom:27.667074px;}
.yb6_c00252{bottom:30.414228px;}
.yb5_c00252{bottom:31.235493px;}
.yb4_c00252{bottom:33.041220px;}
.yb3_c00252{bottom:33.711999px;}
.yb2_c00252{bottom:34.798185px;}
.yb1_c00252{bottom:42.185538px;}
.yb0_c00252{bottom:43.695708px;}
.yaf_c00252{bottom:46.313919px;}
.yae_c00252{bottom:47.289876px;}
.yad_c00252{bottom:48.435750px;}
.yac_c00252{bottom:49.046169px;}
.yab_c00252{bottom:51.416379px;}
.yaa_c00252{bottom:52.892538px;}
.ya9_c00252{bottom:60.150525px;}
.ya8_c00252{bottom:60.624207px;}
.ya7_c00252{bottom:62.544012px;}
.ya6_c00252{bottom:63.074643px;}
.ya5_c00252{bottom:63.898545px;}
.ya4_c00252{bottom:65.696199px;}
.ya3_c00252{bottom:66.263577px;}
.ya2_c00252{bottom:68.011911px;}
.ya1_c00252{bottom:77.380107px;}
.ya0_c00252{bottom:77.751741px;}
.y9f_c00252{bottom:79.455723px;}
.y9e_c00252{bottom:81.707391px;}
.y9d_c00252{bottom:82.391331px;}
.y9c_c00252{bottom:83.225637px;}
.y9b_c00252{bottom:84.656667px;}
.y9a_c00252{bottom:85.562658px;}
.y99_c00252{bottom:95.179854px;}
.y98_c00252{bottom:97.187310px;}
.y97_c00252{bottom:98.699577px;}
.y96_c00252{bottom:100.523535px;}
.y95_c00252{bottom:101.682231px;}
.y94_c00252{bottom:102.068148px;}
.y93_c00252{bottom:103.929462px;}
.y92_c00252{bottom:111.192180px;}
.y91_c00252{bottom:113.205603px;}
.y90_c00252{bottom:114.573588px;}
.y8f_c00252{bottom:117.023259px;}
.y8e_c00252{bottom:117.647451px;}
.y8d_c00252{bottom:118.908342px;}
.y8c_c00252{bottom:119.390013px;}
.y8b_c00252{bottom:120.879192px;}
.y8a_c00252{bottom:121.485366px;}
.y89_c00252{bottom:129.448632px;}
.y88_c00252{bottom:132.560778px;}
.y87_c00252{bottom:133.363914px;}
.y86_c00252{bottom:135.508545px;}
.y85_c00252{bottom:136.002507px;}
.y84_c00252{bottom:137.253276px;}
.y83_c00252{bottom:138.021132px;}
.y82_c00252{bottom:139.309923px;}
.y81_c00252{bottom:146.600142px;}
.y80_c00252{bottom:146.910966px;}
.y7f_c00252{bottom:147.994395px;}
.y7e_c00252{bottom:149.073585px;}
.y7d_c00252{bottom:150.683568px;}
.y7c_c00252{bottom:151.178586px;}
.y2_c00252{bottom:156.333000px;}
.y7b_c00252{bottom:165.147039px;}
.y77_c00252{bottom:165.147393px;}
.y78_c00252{bottom:165.147468px;}
.y7a_c00252{bottom:165.147618px;}
.y76_c00252{bottom:165.147672px;}
.y79_c00252{bottom:165.147870px;}
.y75_c00252{bottom:165.148137px;}
.y74_c00252{bottom:165.148323px;}
.y73_c00252{bottom:179.738754px;}
.y72_c00252{bottom:180.554085px;}
.y71_c00252{bottom:182.444451px;}
.y70_c00252{bottom:183.309603px;}
.y6f_c00252{bottom:183.775611px;}
.y6e_c00252{bottom:185.009007px;}
.y6d_c00252{bottom:186.224562px;}
.y6c_c00252{bottom:187.062042px;}
.y6b_c00252{bottom:188.451435px;}
.y6a_c00252{bottom:198.499113px;}
.y69_c00252{bottom:199.514853px;}
.y68_c00252{bottom:199.743246px;}
.y67_c00252{bottom:200.773836px;}
.y66_c00252{bottom:201.430017px;}
.y65_c00252{bottom:202.115331px;}
.y64_c00252{bottom:203.028957px;}
.y63_c00252{bottom:216.091869px;}
.y62_c00252{bottom:216.876483px;}
.y61_c00252{bottom:217.829646px;}
.y60_c00252{bottom:218.269761px;}
.y5f_c00252{bottom:218.648706px;}
.y5e_c00252{bottom:221.354229px;}
.y5d_c00252{bottom:222.476427px;}
.y5c_c00252{bottom:233.258850px;}
.y5b_c00252{bottom:233.946063px;}
.y5a_c00252{bottom:234.946560px;}
.y59_c00252{bottom:235.351527px;}
.y58_c00252{bottom:236.187261px;}
.y57_c00252{bottom:236.412507px;}
.y56_c00252{bottom:237.921522px;}
.y55_c00252{bottom:238.337979px;}
.y54_c00252{bottom:238.677063px;}
.y53_c00252{bottom:250.874448px;}
.y52_c00252{bottom:251.320428px;}
.y51_c00252{bottom:251.750388px;}
.y50_c00252{bottom:252.178068px;}
.y4f_c00252{bottom:252.794802px;}
.y4e_c00252{bottom:253.790697px;}
.y4d_c00252{bottom:254.097438px;}
.y4c_c00252{bottom:254.489244px;}
.y4b_c00252{bottom:254.879310px;}
.y4a_c00252{bottom:268.901631px;}
.y49_c00252{bottom:269.288973px;}
.y48_c00252{bottom:270.029313px;}
.y47_c00252{bottom:270.377694px;}
.y46_c00252{bottom:271.550520px;}
.y45_c00252{bottom:272.141847px;}
.y44_c00252{bottom:272.780154px;}
.y43_c00252{bottom:273.514500px;}
.y42_c00252{bottom:286.506191px;}
.y41_c00252{bottom:286.881137px;}
.y40_c00252{bottom:287.267198px;}
.y3f_c00252{bottom:287.902781px;}
.y3e_c00252{bottom:288.110456px;}
.y3d_c00252{bottom:288.355356px;}
.y3c_c00252{bottom:289.138437px;}
.y3b_c00252{bottom:289.981500px;}
.y3a_c00252{bottom:306.174000px;}
.y39_c00252{bottom:323.097000px;}
.y38_c00252{bottom:339.660000px;}
.y37_c00252{bottom:355.980000px;}
.y36_c00252{bottom:371.913000px;}
.y35_c00252{bottom:389.010000px;}
.y34_c00252{bottom:408.123000px;}
.y33_c00252{bottom:423.570000px;}
.y32_c00252{bottom:439.704000px;}
.y31_c00252{bottom:459.333000px;}
.y30_c00252{bottom:474.612000px;}
.y1_c00252{bottom:479.250000px;}
.y2e_c00252{bottom:491.925036px;}
.y2c_c00252{bottom:491.925552px;}
.y2b_c00252{bottom:491.925606px;}
.y2a_c00252{bottom:491.925624px;}
.y2d_c00252{bottom:491.925654px;}
.y29_c00252{bottom:491.925720px;}
.y2f_c00252{bottom:491.925738px;}
.y28_c00252{bottom:491.926278px;}
.y1f_c00252{bottom:507.056250px;}
.y20_c00252{bottom:507.456834px;}
.y21_c00252{bottom:508.190376px;}
.y22_c00252{bottom:508.987224px;}
.y23_c00252{bottom:509.321136px;}
.y24_c00252{bottom:509.604618px;}
.y25_c00252{bottom:510.202074px;}
.y26_c00252{bottom:510.552858px;}
.y27_c00252{bottom:511.138464px;}
.y1e_c00252{bottom:528.264162px;}
.y1d_c00252{bottom:528.264840px;}
.y1c_c00252{bottom:528.265116px;}
.y1a_c00252{bottom:528.265212px;}
.y1b_c00252{bottom:528.265494px;}
.y19_c00252{bottom:528.265548px;}
.y15_c00252{bottom:528.265776px;}
.y18_c00252{bottom:528.265806px;}
.y16_c00252{bottom:528.265962px;}
.y17_c00252{bottom:528.266184px;}
.yc_c00252{bottom:540.813996px;}
.yd_c00252{bottom:541.508748px;}
.ye_c00252{bottom:541.743960px;}
.yf_c00252{bottom:542.836836px;}
.y10_c00252{bottom:543.863430px;}
.y11_c00252{bottom:544.142832px;}
.y12_c00252{bottom:544.718196px;}
.y13_c00252{bottom:545.056146px;}
.y14_c00252{bottom:545.561046px;}
.y4_c00252{bottom:559.441500px;}
.y5_c00252{bottom:559.698342px;}
.y6_c00252{bottom:560.566518px;}
.y7_c00252{bottom:561.417954px;}
.y8_c00252{bottom:561.563736px;}
.y9_c00252{bottom:561.703326px;}
.ya_c00252{bottom:562.160202px;}
.yb_c00252{bottom:562.785432px;}
.y3_c00252{bottom:573.372000px;}
.h2_c00252{height:24.150000px;}
.h3_c00252{height:53.550000px;}
.hf_c00252{height:56.700000px;}
.hb_c00252{height:57.750000px;}
.h7_c00252{height:57.754158px;}
.h11_c00252{height:57.754880px;}
.h9_c00252{height:58.800000px;}
.h16_c00252{height:58.809525px;}
.ha_c00252{height:59.850000px;}
.h19_c00252{height:59.859695px;}
.h10_c00252{height:60.900000px;}
.h14_c00252{height:60.909865px;}
.h8_c00252{height:61.950000px;}
.h13_c00252{height:63.010205px;}
.h12_c00252{height:64.060375px;}
.h17_c00252{height:65.110545px;}
.hc_c00252{height:66.150000px;}
.h18_c00252{height:66.160715px;}
.he_c00252{height:68.250000px;}
.h15_c00252{height:68.261056px;}
.hd_c00252{height:69.300000px;}
.h6_c00252{height:70.355065px;}
.h5_c00252{height:71.405141px;}
.h4_c00252{height:79.800000px;}
.h1_c00252{height:618.750000px;}
.h0_c00252{height:619.050000px;}
.w0_c00252{width:359.100000px;}
.w1_c00252{width:359.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:2.700000px;}
.x2_c00252{left:32.400000px;}
.x59_c00252{left:34.932000px;}
.x31_c00252{left:36.990000px;}
.xd_c00252{left:38.353254px;}
.x5_c00252{left:40.047000px;}
.x63_c00252{left:41.613288px;}
.x51_c00252{left:45.360000px;}
.x25_c00252{left:46.980000px;}
.x70_c00252{left:50.222988px;}
.x77_c00252{left:54.157176px;}
.x3f_c00252{left:57.780000px;}
.x64_c00252{left:59.450964px;}
.x6_c00252{left:61.450500px;}
.x34_c00252{left:63.180000px;}
.x52_c00252{left:64.530000px;}
.x1a_c00252{left:66.869088px;}
.x35_c00252{left:70.470000px;}
.x2d_c00252{left:71.820000px;}
.x26_c00252{left:73.170000px;}
.x3a_c00252{left:74.790000px;}
.x4a_c00252{left:76.680000px;}
.xe_c00252{left:79.246806px;}
.x65_c00252{left:81.337059px;}
.x67_c00252{left:84.278397px;}
.x6a_c00252{left:88.094445px;}
.x27_c00252{left:91.530000px;}
.xf_c00252{left:93.096978px;}
.x46_c00252{left:96.660000px;}
.x3b_c00252{left:98.010000px;}
.x4b_c00252{left:99.090000px;}
.x40_c00252{left:101.790000px;}
.x3_c00252{left:105.300000px;}
.x36_c00252{left:108.810000px;}
.x78_c00252{left:110.464950px;}
.x7a_c00252{left:111.494814px;}
.x15_c00252{left:112.863534px;}
.x21_c00252{left:115.294908px;}
.x2e_c00252{left:117.990000px;}
.x1b_c00252{left:119.246328px;}
.x6c_c00252{left:122.390112px;}
.x37_c00252{left:123.930000px;}
.x41_c00252{left:126.630000px;}
.x28_c00252{left:131.490000px;}
.x7_c00252{left:133.798500px;}
.x16_c00252{left:136.085382px;}
.x75_c00252{left:139.289493px;}
.x53_c00252{left:140.670000px;}
.x4c_c00252{left:141.750000px;}
.x38_c00252{left:143.910000px;}
.x5d_c00252{left:145.602000px;}
.x71_c00252{left:150.140334px;}
.x29_c00252{left:152.010000px;}
.x80_c00252{left:153.281718px;}
.x7d_c00252{left:154.961769px;}
.x10_c00252{left:157.416126px;}
.x5a_c00252{left:160.020000px;}
.x55_c00252{left:161.460000px;}
.x17_c00252{left:162.817734px;}
.x6d_c00252{left:164.329323px;}
.x47_c00252{left:166.590000px;}
.x2a_c00252{left:169.290000px;}
.x4_c00252{left:171.450000px;}
.x3c_c00252{left:173.340000px;}
.x1c_c00252{left:176.148960px;}
.x73_c00252{left:177.766047px;}
.x5b_c00252{left:178.858500px;}
.x42_c00252{left:182.520000px;}
.x7f_c00252{left:183.765336px;}
.x4d_c00252{left:185.490000px;}
.x2f_c00252{left:189.270000px;}
.x5c_c00252{left:194.833500px;}
.x22_c00252{left:196.300572px;}
.x3d_c00252{left:197.370000px;}
.x57_c00252{left:198.720000px;}
.x1d_c00252{left:199.974384px;}
.x30_c00252{left:203.310000px;}
.x8_c00252{left:204.751500px;}
.x56_c00252{left:206.820000px;}
.x5e_c00252{left:210.759000px;}
.x68_c00252{left:212.790519px;}
.x48_c00252{left:215.460000px;}
.x9_c00252{left:216.900000px;}
.x76_c00252{left:218.943750px;}
.x1e_c00252{left:220.222398px;}
.x32_c00252{left:222.480000px;}
.x43_c00252{left:227.070000px;}
.xa_c00252{left:228.532500px;}
.x5f_c00252{left:230.113500px;}
.x69_c00252{left:231.156048px;}
.x6b_c00252{left:232.565445px;}
.x11_c00252{left:234.244518px;}
.x66_c00252{left:237.943251px;}
.x81_c00252{left:242.491902px;}
.x54_c00252{left:244.080000px;}
.x44_c00252{left:245.430000px;}
.x23_c00252{left:249.765276px;}
.x6e_c00252{left:252.703800px;}
.x72_c00252{left:254.647692px;}
.x7e_c00252{left:256.197735px;}
.x61_c00252{left:260.206833px;}
.x7b_c00252{left:261.346968px;}
.x1f_c00252{left:262.884372px;}
.xb_c00252{left:266.605500px;}
.x12_c00252{left:268.064484px;}
.x24_c00252{left:270.826800px;}
.x18_c00252{left:273.524682px;}
.x4e_c00252{left:279.720000px;}
.x2b_c00252{left:280.800000px;}
.x19_c00252{left:284.594784px;}
.x13_c00252{left:287.975796px;}
.x3e_c00252{left:289.980000px;}
.x58_c00252{left:291.600000px;}
.x60_c00252{left:292.762500px;}
.x33_c00252{left:294.570000px;}
.x74_c00252{left:297.911547px;}
.x49_c00252{left:301.590000px;}
.x45_c00252{left:302.670000px;}
.x4f_c00252{left:306.990000px;}
.x2c_c00252{left:311.850000px;}
.x39_c00252{left:315.900000px;}
.x14_c00252{left:317.674014px;}
.xc_c00252{left:318.708000px;}
.x62_c00252{left:322.791342px;}
.x50_c00252{left:326.430000px;}
.x7c_c00252{left:328.274523px;}
.x20_c00252{left:329.790270px;}
.x79_c00252{left:330.906504px;}
.x6f_c00252{left:346.001832px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
.fs0_c00252{font-size:21.466667pt;}
.fs1_c00252{font-size:47.600000pt;}
.fsd_c00252{font-size:50.400000pt;}
.fs9_c00252{font-size:51.333333pt;}
.fs5_c00252{font-size:51.337029pt;}
.fsf_c00252{font-size:51.337671pt;}
.fs7_c00252{font-size:52.266667pt;}
.fs14_c00252{font-size:52.275133pt;}
.fs8_c00252{font-size:53.200000pt;}
.fs17_c00252{font-size:53.208618pt;}
.fse_c00252{font-size:54.133333pt;}
.fs12_c00252{font-size:54.142102pt;}
.fs6_c00252{font-size:55.066667pt;}
.fs11_c00252{font-size:56.009071pt;}
.fs10_c00252{font-size:56.942556pt;}
.fs15_c00252{font-size:57.876040pt;}
.fsa_c00252{font-size:58.800000pt;}
.fs16_c00252{font-size:58.809525pt;}
.fsc_c00252{font-size:60.666667pt;}
.fs13_c00252{font-size:60.676494pt;}
.fsb_c00252{font-size:61.600000pt;}
.fs4_c00252{font-size:62.537836pt;}
.fs3_c00252{font-size:63.471236pt;}
.fs2_c00252{font-size:70.933333pt;}
.y0_c00252{bottom:0.000000pt;}
.ybb_c00252{bottom:21.847813pt;}
.yba_c00252{bottom:22.461003pt;}
.yb9_c00252{bottom:23.493691pt;}
.yb8_c00252{bottom:24.085904pt;}
.yb7_c00252{bottom:24.592955pt;}
.yb6_c00252{bottom:27.034869pt;}
.yb5_c00252{bottom:27.764883pt;}
.yb4_c00252{bottom:29.369973pt;}
.yb3_c00252{bottom:29.966221pt;}
.yb2_c00252{bottom:30.931720pt;}
.yb1_c00252{bottom:37.498256pt;}
.yb0_c00252{bottom:38.840629pt;}
.yaf_c00252{bottom:41.167928pt;}
.yae_c00252{bottom:42.035445pt;}
.yad_c00252{bottom:43.054000pt;}
.yac_c00252{bottom:43.596595pt;}
.yab_c00252{bottom:45.703448pt;}
.yaa_c00252{bottom:47.015589pt;}
.ya9_c00252{bottom:53.467133pt;}
.ya8_c00252{bottom:53.888184pt;}
.ya7_c00252{bottom:55.594677pt;}
.ya6_c00252{bottom:56.066349pt;}
.ya5_c00252{bottom:56.798707pt;}
.ya4_c00252{bottom:58.396621pt;}
.ya3_c00252{bottom:58.900957pt;}
.ya2_c00252{bottom:60.455032pt;}
.ya1_c00252{bottom:68.782317pt;}
.ya0_c00252{bottom:69.112659pt;}
.y9f_c00252{bottom:70.627309pt;}
.y9e_c00252{bottom:72.628792pt;}
.y9d_c00252{bottom:73.236739pt;}
.y9c_c00252{bottom:73.978344pt;}
.y9b_c00252{bottom:75.250371pt;}
.y9a_c00252{bottom:76.055696pt;}
.y99_c00252{bottom:84.604315pt;}
.y98_c00252{bottom:86.388720pt;}
.y97_c00252{bottom:87.732957pt;}
.y96_c00252{bottom:89.354253pt;}
.y95_c00252{bottom:90.384205pt;}
.y94_c00252{bottom:90.727243pt;}
.y93_c00252{bottom:92.381744pt;}
.y92_c00252{bottom:98.837493pt;}
.y91_c00252{bottom:100.627203pt;}
.y90_c00252{bottom:101.843189pt;}
.y8f_c00252{bottom:104.020675pt;}
.y8e_c00252{bottom:104.575512pt;}
.y8d_c00252{bottom:105.696304pt;}
.y8c_c00252{bottom:106.124456pt;}
.y8b_c00252{bottom:107.448171pt;}
.y8a_c00252{bottom:107.986992pt;}
.y89_c00252{bottom:115.065451pt;}
.y88_c00252{bottom:117.831803pt;}
.y87_c00252{bottom:118.545701pt;}
.y86_c00252{bottom:120.452040pt;}
.y85_c00252{bottom:120.891117pt;}
.y84_c00252{bottom:122.002912pt;}
.y83_c00252{bottom:122.685451pt;}
.y82_c00252{bottom:123.831043pt;}
.y81_c00252{bottom:130.311237pt;}
.y80_c00252{bottom:130.587525pt;}
.y7f_c00252{bottom:131.550573pt;}
.y7e_c00252{bottom:132.509853pt;}
.y7d_c00252{bottom:133.940949pt;}
.y7c_c00252{bottom:134.380965pt;}
.y2_c00252{bottom:138.962667pt;}
.y7b_c00252{bottom:146.797368pt;}
.y77_c00252{bottom:146.797683pt;}
.y78_c00252{bottom:146.797749pt;}
.y7a_c00252{bottom:146.797883pt;}
.y76_c00252{bottom:146.797931pt;}
.y79_c00252{bottom:146.798107pt;}
.y75_c00252{bottom:146.798344pt;}
.y74_c00252{bottom:146.798509pt;}
.y73_c00252{bottom:159.767781pt;}
.y72_c00252{bottom:160.492520pt;}
.y71_c00252{bottom:162.172845pt;}
.y70_c00252{bottom:162.941869pt;}
.y6f_c00252{bottom:163.356099pt;}
.y6e_c00252{bottom:164.452451pt;}
.y6d_c00252{bottom:165.532944pt;}
.y6c_c00252{bottom:166.277371pt;}
.y6b_c00252{bottom:167.512387pt;}
.y6a_c00252{bottom:176.443656pt;}
.y69_c00252{bottom:177.346536pt;}
.y68_c00252{bottom:177.549552pt;}
.y67_c00252{bottom:178.465632pt;}
.y66_c00252{bottom:179.048904pt;}
.y65_c00252{bottom:179.658072pt;}
.y64_c00252{bottom:180.470184pt;}
.y63_c00252{bottom:192.081661pt;}
.y62_c00252{bottom:192.779096pt;}
.y61_c00252{bottom:193.626352pt;}
.y60_c00252{bottom:194.017565pt;}
.y5f_c00252{bottom:194.354405pt;}
.y5e_c00252{bottom:196.759315pt;}
.y5d_c00252{bottom:197.756824pt;}
.y5c_c00252{bottom:207.341200pt;}
.y5b_c00252{bottom:207.952056pt;}
.y5a_c00252{bottom:208.841387pt;}
.y59_c00252{bottom:209.201357pt;}
.y58_c00252{bottom:209.944232pt;}
.y57_c00252{bottom:210.144451pt;}
.y56_c00252{bottom:211.485797pt;}
.y55_c00252{bottom:211.855981pt;}
.y54_c00252{bottom:212.157389pt;}
.y53_c00252{bottom:222.999509pt;}
.y52_c00252{bottom:223.395936pt;}
.y51_c00252{bottom:223.778123pt;}
.y50_c00252{bottom:224.158283pt;}
.y4f_c00252{bottom:224.706491pt;}
.y4e_c00252{bottom:225.591731pt;}
.y4d_c00252{bottom:225.864389pt;}
.y4c_c00252{bottom:226.212661pt;}
.y4b_c00252{bottom:226.559387pt;}
.y4a_c00252{bottom:239.023672pt;}
.y49_c00252{bottom:239.367976pt;}
.y48_c00252{bottom:240.026056pt;}
.y47_c00252{bottom:240.335728pt;}
.y46_c00252{bottom:241.378240pt;}
.y45_c00252{bottom:241.903864pt;}
.y44_c00252{bottom:242.471248pt;}
.y43_c00252{bottom:243.124000pt;}
.y42_c00252{bottom:254.672169pt;}
.y41_c00252{bottom:255.005455pt;}
.y40_c00252{bottom:255.348620pt;}
.y3f_c00252{bottom:255.913583pt;}
.y3e_c00252{bottom:256.098183pt;}
.y3d_c00252{bottom:256.315872pt;}
.y3c_c00252{bottom:257.011944pt;}
.y3b_c00252{bottom:257.761333pt;}
.y3a_c00252{bottom:272.154667pt;}
.y39_c00252{bottom:287.197333pt;}
.y38_c00252{bottom:301.920000pt;}
.y37_c00252{bottom:316.426667pt;}
.y36_c00252{bottom:330.589333pt;}
.y35_c00252{bottom:345.786667pt;}
.y34_c00252{bottom:362.776000pt;}
.y33_c00252{bottom:376.506667pt;}
.y32_c00252{bottom:390.848000pt;}
.y31_c00252{bottom:408.296000pt;}
.y30_c00252{bottom:421.877333pt;}
.y1_c00252{bottom:426.000000pt;}
.y2e_c00252{bottom:437.266699pt;}
.y2c_c00252{bottom:437.267157pt;}
.y2b_c00252{bottom:437.267205pt;}
.y2a_c00252{bottom:437.267221pt;}
.y2d_c00252{bottom:437.267248pt;}
.y29_c00252{bottom:437.267307pt;}
.y2f_c00252{bottom:437.267323pt;}
.y28_c00252{bottom:437.267803pt;}
.y1f_c00252{bottom:450.716667pt;}
.y20_c00252{bottom:451.072741pt;}
.y21_c00252{bottom:451.724779pt;}
.y22_c00252{bottom:452.433088pt;}
.y23_c00252{bottom:452.729899pt;}
.y24_c00252{bottom:452.981883pt;}
.y25_c00252{bottom:453.512955pt;}
.y26_c00252{bottom:453.824763pt;}
.y27_c00252{bottom:454.345301pt;}
.y1e_c00252{bottom:469.568144pt;}
.y1d_c00252{bottom:469.568747pt;}
.y1c_c00252{bottom:469.568992pt;}
.y1a_c00252{bottom:469.569077pt;}
.y1b_c00252{bottom:469.569328pt;}
.y19_c00252{bottom:469.569376pt;}
.y15_c00252{bottom:469.569579pt;}
.y18_c00252{bottom:469.569605pt;}
.y16_c00252{bottom:469.569744pt;}
.y17_c00252{bottom:469.569941pt;}
.yc_c00252{bottom:480.723552pt;}
.yd_c00252{bottom:481.341109pt;}
.ye_c00252{bottom:481.550187pt;}
.yf_c00252{bottom:482.521632pt;}
.y10_c00252{bottom:483.434160pt;}
.y11_c00252{bottom:483.682517pt;}
.y12_c00252{bottom:484.193952pt;}
.y13_c00252{bottom:484.494352pt;}
.y14_c00252{bottom:484.943152pt;}
.y4_c00252{bottom:497.281333pt;}
.y5_c00252{bottom:497.509637pt;}
.y6_c00252{bottom:498.281349pt;}
.y7_c00252{bottom:499.038181pt;}
.y8_c00252{bottom:499.167765pt;}
.y9_c00252{bottom:499.291845pt;}
.ya_c00252{bottom:499.697957pt;}
.yb_c00252{bottom:500.253717pt;}
.y3_c00252{bottom:509.664000pt;}
.h2_c00252{height:21.466667pt;}
.h3_c00252{height:47.600000pt;}
.hf_c00252{height:50.400000pt;}
.hb_c00252{height:51.333333pt;}
.h7_c00252{height:51.337029pt;}
.h11_c00252{height:51.337671pt;}
.h9_c00252{height:52.266667pt;}
.h16_c00252{height:52.275133pt;}
.ha_c00252{height:53.200000pt;}
.h19_c00252{height:53.208618pt;}
.h10_c00252{height:54.133333pt;}
.h14_c00252{height:54.142102pt;}
.h8_c00252{height:55.066667pt;}
.h13_c00252{height:56.009071pt;}
.h12_c00252{height:56.942556pt;}
.h17_c00252{height:57.876040pt;}
.hc_c00252{height:58.800000pt;}
.h18_c00252{height:58.809525pt;}
.he_c00252{height:60.666667pt;}
.h15_c00252{height:60.676494pt;}
.hd_c00252{height:61.600000pt;}
.h6_c00252{height:62.537836pt;}
.h5_c00252{height:63.471236pt;}
.h4_c00252{height:70.933333pt;}
.h1_c00252{height:550.000000pt;}
.h0_c00252{height:550.266667pt;}
.w0_c00252{width:319.200000pt;}
.w1_c00252{width:319.333333pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:2.400000pt;}
.x2_c00252{left:28.800000pt;}
.x59_c00252{left:31.050667pt;}
.x31_c00252{left:32.880000pt;}
.xd_c00252{left:34.091781pt;}
.x5_c00252{left:35.597333pt;}
.x63_c00252{left:36.989589pt;}
.x51_c00252{left:40.320000pt;}
.x25_c00252{left:41.760000pt;}
.x70_c00252{left:44.642656pt;}
.x77_c00252{left:48.139712pt;}
.x3f_c00252{left:51.360000pt;}
.x64_c00252{left:52.845301pt;}
.x6_c00252{left:54.622667pt;}
.x34_c00252{left:56.160000pt;}
.x52_c00252{left:57.360000pt;}
.x1a_c00252{left:59.439189pt;}
.x35_c00252{left:62.640000pt;}
.x2d_c00252{left:63.840000pt;}
.x26_c00252{left:65.040000pt;}
.x3a_c00252{left:66.480000pt;}
.x4a_c00252{left:68.160000pt;}
.xe_c00252{left:70.441605pt;}
.x65_c00252{left:72.299608pt;}
.x67_c00252{left:74.914131pt;}
.x6a_c00252{left:78.306173pt;}
.x27_c00252{left:81.360000pt;}
.xf_c00252{left:82.752869pt;}
.x46_c00252{left:85.920000pt;}
.x3b_c00252{left:87.120000pt;}
.x4b_c00252{left:88.080000pt;}
.x40_c00252{left:90.480000pt;}
.x3_c00252{left:93.600000pt;}
.x36_c00252{left:96.720000pt;}
.x78_c00252{left:98.191067pt;}
.x7a_c00252{left:99.106501pt;}
.x15_c00252{left:100.323141pt;}
.x21_c00252{left:102.484363pt;}
.x2e_c00252{left:104.880000pt;}
.x1b_c00252{left:105.996736pt;}
.x6c_c00252{left:108.791211pt;}
.x37_c00252{left:110.160000pt;}
.x41_c00252{left:112.560000pt;}
.x28_c00252{left:116.880000pt;}
.x7_c00252{left:118.932000pt;}
.x16_c00252{left:120.964784pt;}
.x75_c00252{left:123.812883pt;}
.x53_c00252{left:125.040000pt;}
.x4c_c00252{left:126.000000pt;}
.x38_c00252{left:127.920000pt;}
.x5d_c00252{left:129.424000pt;}
.x71_c00252{left:133.458075pt;}
.x29_c00252{left:135.120000pt;}
.x80_c00252{left:136.250416pt;}
.x7d_c00252{left:137.743795pt;}
.x10_c00252{left:139.925445pt;}
.x5a_c00252{left:142.240000pt;}
.x55_c00252{left:143.520000pt;}
.x17_c00252{left:144.726875pt;}
.x6d_c00252{left:146.070509pt;}
.x47_c00252{left:148.080000pt;}
.x2a_c00252{left:150.480000pt;}
.x4_c00252{left:152.400000pt;}
.x3c_c00252{left:154.080000pt;}
.x1c_c00252{left:156.576853pt;}
.x73_c00252{left:158.014264pt;}
.x5b_c00252{left:158.985333pt;}
.x42_c00252{left:162.240000pt;}
.x7f_c00252{left:163.346965pt;}
.x4d_c00252{left:164.880000pt;}
.x2f_c00252{left:168.240000pt;}
.x5c_c00252{left:173.185333pt;}
.x22_c00252{left:174.489397pt;}
.x3d_c00252{left:175.440000pt;}
.x57_c00252{left:176.640000pt;}
.x1d_c00252{left:177.755008pt;}
.x30_c00252{left:180.720000pt;}
.x8_c00252{left:182.001333pt;}
.x56_c00252{left:183.840000pt;}
.x5e_c00252{left:187.341333pt;}
.x68_c00252{left:189.147128pt;}
.x48_c00252{left:191.520000pt;}
.x9_c00252{left:192.800000pt;}
.x76_c00252{left:194.616667pt;}
.x1e_c00252{left:195.753243pt;}
.x32_c00252{left:197.760000pt;}
.x43_c00252{left:201.840000pt;}
.xa_c00252{left:203.140000pt;}
.x5f_c00252{left:204.545333pt;}
.x69_c00252{left:205.472043pt;}
.x6b_c00252{left:206.724840pt;}
.x11_c00252{left:208.217349pt;}
.x66_c00252{left:211.505112pt;}
.x81_c00252{left:215.548357pt;}
.x54_c00252{left:216.960000pt;}
.x44_c00252{left:218.160000pt;}
.x23_c00252{left:222.013579pt;}
.x6e_c00252{left:224.625600pt;}
.x72_c00252{left:226.353504pt;}
.x7e_c00252{left:227.731320pt;}
.x61_c00252{left:231.294963pt;}
.x7b_c00252{left:232.308416pt;}
.x1f_c00252{left:233.674997pt;}
.xb_c00252{left:236.982667pt;}
.x12_c00252{left:238.279541pt;}
.x24_c00252{left:240.734933pt;}
.x18_c00252{left:243.133051pt;}
.x4e_c00252{left:248.640000pt;}
.x2b_c00252{left:249.600000pt;}
.x19_c00252{left:252.973141pt;}
.x13_c00252{left:255.978485pt;}
.x3e_c00252{left:257.760000pt;}
.x58_c00252{left:259.200000pt;}
.x60_c00252{left:260.233333pt;}
.x33_c00252{left:261.840000pt;}
.x74_c00252{left:264.810264pt;}
.x49_c00252{left:268.080000pt;}
.x45_c00252{left:269.040000pt;}
.x4f_c00252{left:272.880000pt;}
.x2c_c00252{left:277.200000pt;}
.x39_c00252{left:280.800000pt;}
.x14_c00252{left:282.376901pt;}
.xc_c00252{left:283.296000pt;}
.x62_c00252{left:286.925637pt;}
.x50_c00252{left:290.160000pt;}
.x7c_c00252{left:291.799576pt;}
.x20_c00252{left:293.146907pt;}
.x79_c00252{left:294.139115pt;}
.x6f_c00252{left:307.557184pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00253 {
    display:none;
  }
  .loading-indicator_c00253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00253 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00253 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00253" -> "#page-container .classname_c00253")
 */
.pf_c00253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00253 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00253 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00253 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00253 {overflow:visible;}
  }
}
.c_c00253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00253 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00253:after { /* webkit #35443 */
  content: '';
}
.t_c00253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00253 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00253 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00253 { /* info for Javascript */
  display:none;
}
.l_c00253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00253:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00253 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00253.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00253{transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009325,0.000000,0.000000,0.250000,0,0);}
.mca_c00253{transform:matrix(0.069140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069140,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.105830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105830,0.000000,0.000000,0.250000,0,0);}
.mf0_c00253{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.133800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133800,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m9e_c00253{transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);}
.md2_c00253{transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00253{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.ma2_c00253{transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m60_c00253{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.mbe_c00253{transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162735,0.000000,0.000000,0.250000,0,0);}
.m9f_c00253{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.mc8_c00253{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m6f_c00253{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m68_c00253{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.ma1_c00253{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m7f_c00253{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.me3_c00253{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m5f_c00253{transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m79_c00253{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.mc6_c00253{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.mf3_c00253{transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00253{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.m61_c00253{transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170810,0.000000,0.000000,0.250000,0,0);}
.me8_c00253{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171105,0.000000,0.000000,0.250000,0,0);}
.mab_c00253{transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00253{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.mf5_c00253{transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);}
.m86_c00253{transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00253{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.mde_c00253{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m7c_c00253{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m9b_c00253{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.mf7_c00253{transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);}
.mf6_c00253{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m77_c00253{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);}
.mbc_c00253{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.me4_c00253{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.meb_c00253{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m7d_c00253{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m63_c00253{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m73_c00253{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m5d_c00253{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);}
.md3_c00253{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.mb4_c00253{transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);}
.mee_c00253{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.me1_c00253{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00253{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m71_c00253{transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.ma0_c00253{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.mb5_c00253{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.mb2_c00253{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m72_c00253{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m54_c00253{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m91_c00253{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m78_c00253{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.mae_c00253{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.mc9_c00253{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00253{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m89_c00253{transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188085,0.000000,0.000000,0.250000,0,0);}
.mc2_c00253{transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);}
.mf2_c00253{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.ma4_c00253{transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189615,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.ma5_c00253{transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);}
.me5_c00253{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.ma9_c00253{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m85_c00253{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00253{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.me6_c00253{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.mad_c00253{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00253{transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192565,0.000000,0.000000,0.250000,0,0);}
.m8d_c00253{transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);}
.mc4_c00253{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.md5_c00253{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.mbf_c00253{transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);}
.med_c00253{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m66_c00253{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.m6e_c00253{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mda_c00253{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.m69_c00253{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.m62_c00253{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.mc1_c00253{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.m5e_c00253{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);}
.m92_c00253{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00253{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md0_c00253{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.mbd_c00253{transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.m64_c00253{transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);}
.maa_c00253{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);}
.mea_c00253{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m81_c00253{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.md6_c00253{transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00253{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.ma6_c00253{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m96_c00253{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.mb7_c00253{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.mcc_c00253{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.me7_c00253{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mdd_c00253{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.me0_c00253{transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m90_c00253{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.mcd_c00253{transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);}
.me9_c00253{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m46_c00253{transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206330,0.000000,0.000000,0.250000,0,0);}
.m7a_c00253{transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);}
.m75_c00253{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.mb3_c00253{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m76_c00253{transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);}
.m95_c00253{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m88_c00253{transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m80_c00253{transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);}
.mc5_c00253{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.md8_c00253{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m7b_c00253{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m8f_c00253{transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00253{transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210560,0.000000,0.000000,0.250000,0,0);}
.me2_c00253{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.ma8_c00253{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.mac_c00253{transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mcb_c00253{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.mf4_c00253{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.maf_c00253{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.mb0_c00253{transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.md1_c00253{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.md4_c00253{transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.mb8_c00253{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.m84_c00253{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.mbb_c00253{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);}
.m93_c00253{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.mdb_c00253{transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221310,0.000000,0.000000,0.250000,0,0);}
.md7_c00253{transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);}
.m65_c00253{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m6d_c00253{transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);}
.mce_c00253{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m8e_c00253{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00253{transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);}
.mba_c00253{transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m6a_c00253{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.mef_c00253{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.mec_c00253{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);}
.mb6_c00253{transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226845,0.000000,0.000000,0.250000,0,0);}
.m74_c00253{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.mcf_c00253{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m47_c00253{transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);}
.mdc_c00253{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m94_c00253{transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);}
.m8a_c00253{transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00253{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);}
.m51_c00253{transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);}
.m99_c00253{transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.md9_c00253{transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m4d_c00253{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.mf1_c00253{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00253{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270795,0.000000,0.000000,0.250000,0,0);}
.m82_c00253{transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);}
.m97_c00253{transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);}
.m6c_c00253{transform:matrix(0.340760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340760,0.000000,0.000000,0.250000,0,0);}
.m83_c00253{transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00253{transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.504300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504300,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:0.000000px;}
.fc0_c00253{color:transparent;}
.fs6_c00253{font-size:55.650000px;}
.fsd_c00253{font-size:58.800000px;}
.fs7_c00253{font-size:59.850000px;}
.fs2_c00253{font-size:60.900000px;}
.fs1_c00253{font-size:61.950000px;}
.fs3_c00253{font-size:63.000000px;}
.fsa_c00253{font-size:64.050000px;}
.fsc_c00253{font-size:65.100000px;}
.fs5_c00253{font-size:66.150000px;}
.fs8_c00253{font-size:67.200000px;}
.fs4_c00253{font-size:68.250000px;}
.fs9_c00253{font-size:69.300000px;}
.fsb_c00253{font-size:70.350000px;}
.fs0_c00253{font-size:81.900000px;}
.y0_c00253{bottom:0.000000px;}
.y21_c00253{bottom:24.513000px;}
.y20_c00253{bottom:40.983000px;}
.y1f_c00253{bottom:58.864500px;}
.y1e_c00253{bottom:75.756000px;}
.y1d_c00253{bottom:92.223000px;}
.y1c_c00253{bottom:110.124000px;}
.y1b_c00253{bottom:127.471500px;}
.y1a_c00253{bottom:144.754500px;}
.y19_c00253{bottom:162.873000px;}
.y18_c00253{bottom:181.170000px;}
.y17_c00253{bottom:198.361500px;}
.y16_c00253{bottom:215.460000px;}
.y15_c00253{bottom:232.678500px;}
.y14_c00253{bottom:249.873000px;}
.y13_c00253{bottom:266.578500px;}
.y12_c00253{bottom:284.160000px;}
.y11_c00253{bottom:301.084500px;}
.y10_c00253{bottom:318.093000px;}
.yf_c00253{bottom:335.523000px;}
.ye_c00253{bottom:352.653000px;}
.yd_c00253{bottom:370.020000px;}
.yc_c00253{bottom:387.268500px;}
.yb_c00253{bottom:404.460000px;}
.ya_c00253{bottom:421.555500px;}
.y9_c00253{bottom:439.228500px;}
.y8_c00253{bottom:456.118500px;}
.y7_c00253{bottom:473.550000px;}
.y6_c00253{bottom:490.800000px;}
.y5_c00253{bottom:507.870000px;}
.y4_c00253{bottom:524.490000px;}
.y3_c00253{bottom:541.890000px;}
.y2_c00253{bottom:559.170000px;}
.y1_c00253{bottom:572.298000px;}
.h8_c00253{height:55.650000px;}
.hf_c00253{height:58.800000px;}
.h9_c00253{height:59.850000px;}
.h4_c00253{height:60.900000px;}
.h3_c00253{height:61.950000px;}
.h5_c00253{height:63.000000px;}
.hc_c00253{height:64.050000px;}
.he_c00253{height:65.100000px;}
.h7_c00253{height:66.150000px;}
.ha_c00253{height:67.200000px;}
.h6_c00253{height:68.250000px;}
.hb_c00253{height:69.300000px;}
.hd_c00253{height:70.350000px;}
.h2_c00253{height:81.900000px;}
.h1_c00253{height:618.750000px;}
.h0_c00253{height:619.050000px;}
.w0_c00253{width:359.100000px;}
.w1_c00253{width:359.250000px;}
.x0_c00253{left:0.000000px;}
.x43_c00253{left:35.100000px;}
.x3_c00253{left:36.180000px;}
.x51_c00253{left:48.600000px;}
.x77_c00253{left:55.080000px;}
.x20_c00253{left:57.240000px;}
.x57_c00253{left:59.670000px;}
.x2f_c00253{left:61.020000px;}
.x10_c00253{left:62.370000px;}
.x63_c00253{left:65.880000px;}
.x16_c00253{left:69.390000px;}
.x39_c00253{left:70.740000px;}
.x4e_c00253{left:71.820000px;}
.x30_c00253{left:73.440000px;}
.x35_c00253{left:75.600000px;}
.x46_c00253{left:77.220000px;}
.x73_c00253{left:79.650000px;}
.x58_c00253{left:81.810000px;}
.x47_c00253{left:87.210000px;}
.x52_c00253{left:88.560000px;}
.x3e_c00253{left:89.640000px;}
.x2b_c00253{left:90.990000px;}
.x27_c00253{left:92.880000px;}
.x17_c00253{left:94.500000px;}
.x76_c00253{left:95.850000px;}
.x44_c00253{left:96.930000px;}
.xa_c00253{left:99.090000px;}
.x4_c00253{left:102.060000px;}
.x7e_c00253{left:103.410000px;}
.x6a_c00253{left:104.760000px;}
.x3f_c00253{left:108.810000px;}
.x64_c00253{left:111.240000px;}
.x2c_c00253{left:112.320000px;}
.xb_c00253{left:114.750000px;}
.x4b_c00253{left:116.640000px;}
.x1b_c00253{left:118.260000px;}
.x5c_c00253{left:119.880000px;}
.x31_c00253{left:121.230000px;}
.x5_c00253{left:124.200000px;}
.x21_c00253{left:126.630000px;}
.x28_c00253{left:127.710000px;}
.x4f_c00253{left:129.330000px;}
.x5a_c00253{left:132.030000px;}
.x53_c00253{left:133.110000px;}
.x4c_c00253{left:135.000000px;}
.x1c_c00253{left:138.780000px;}
.x65_c00253{left:139.860000px;}
.x32_c00253{left:142.560000px;}
.x18_c00253{left:144.720000px;}
.x54_c00253{left:146.340000px;}
.x48_c00253{left:148.500000px;}
.x3a_c00253{left:151.470000px;}
.x2d_c00253{left:155.520000px;}
.x50_c00253{left:157.140000px;}
.x11_c00253{left:161.190000px;}
.xc_c00253{left:163.620000px;}
.x1_c00253{left:168.750000px;}
.x6b_c00253{left:170.100000px;}
.x6_c00253{left:171.180000px;}
.x78_c00253{left:172.260000px;}
.x40_c00253{left:174.150000px;}
.x36_c00253{left:175.500000px;}
.x3b_c00253{left:177.120000px;}
.x5d_c00253{left:179.280000px;}
.x12_c00253{left:181.170000px;}
.xd_c00253{left:183.060000px;}
.x66_c00253{left:186.570000px;}
.x22_c00253{left:188.190000px;}
.x37_c00253{left:191.970000px;}
.x55_c00253{left:194.400000px;}
.x3c_c00253{left:197.370000px;}
.x19_c00253{left:199.530000px;}
.x61_c00253{left:201.150000px;}
.x23_c00253{left:202.230000px;}
.x79_c00253{left:203.850000px;}
.x5b_c00253{left:205.200000px;}
.x7b_c00253{left:206.550000px;}
.x67_c00253{left:208.170000px;}
.x7_c00253{left:210.330000px;}
.x33_c00253{left:211.680000px;}
.x41_c00253{left:214.110000px;}
.x62_c00253{left:217.080000px;}
.x24_c00253{left:218.160000px;}
.x4d_c00253{left:222.210000px;}
.x59_c00253{left:226.530000px;}
.x1d_c00253{left:227.880000px;}
.x7c_c00253{left:229.230000px;}
.x13_c00253{left:230.310000px;}
.x70_c00253{left:231.390000px;}
.x56_c00253{left:233.010000px;}
.x8_c00253{left:237.600000px;}
.x2e_c00253{left:240.570000px;}
.x1e_c00253{left:243.270000px;}
.x49_c00253{left:245.700000px;}
.x6d_c00253{left:246.780000px;}
.xe_c00253{left:248.670000px;}
.x6c_c00253{left:250.290000px;}
.x3d_c00253{left:253.530000px;}
.x29_c00253{left:258.660000px;}
.x5f_c00253{left:260.550000px;}
.x6e_c00253{left:261.900000px;}
.x45_c00253{left:263.520000px;}
.x4a_c00253{left:264.600000px;}
.x71_c00253{left:267.840000px;}
.x7a_c00253{left:271.350000px;}
.x74_c00253{left:274.050000px;}
.x60_c00253{left:275.130000px;}
.x68_c00253{left:278.370000px;}
.x14_c00253{left:281.070000px;}
.x1a_c00253{left:291.870000px;}
.x9_c00253{left:293.490000px;}
.x34_c00253{left:294.840000px;}
.x1f_c00253{left:296.730000px;}
.x69_c00253{left:297.810000px;}
.x7d_c00253{left:299.430000px;}
.x38_c00253{left:303.210000px;}
.x2a_c00253{left:304.830000px;}
.x25_c00253{left:309.960000px;}
.x42_c00253{left:311.040000px;}
.xf_c00253{left:313.470000px;}
.x72_c00253{left:315.090000px;}
.x2_c00253{left:316.980000px;}
.x75_c00253{left:318.060000px;}
.x5e_c00253{left:321.570000px;}
.x26_c00253{left:322.650000px;}
.x15_c00253{left:329.400000px;}
.x6f_c00253{left:333.450000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.000000pt;}
.fs6_c00253{font-size:49.466667pt;}
.fsd_c00253{font-size:52.266667pt;}
.fs7_c00253{font-size:53.200000pt;}
.fs2_c00253{font-size:54.133333pt;}
.fs1_c00253{font-size:55.066667pt;}
.fs3_c00253{font-size:56.000000pt;}
.fsa_c00253{font-size:56.933333pt;}
.fsc_c00253{font-size:57.866667pt;}
.fs5_c00253{font-size:58.800000pt;}
.fs8_c00253{font-size:59.733333pt;}
.fs4_c00253{font-size:60.666667pt;}
.fs9_c00253{font-size:61.600000pt;}
.fsb_c00253{font-size:62.533333pt;}
.fs0_c00253{font-size:72.800000pt;}
.y0_c00253{bottom:0.000000pt;}
.y21_c00253{bottom:21.789333pt;}
.y20_c00253{bottom:36.429333pt;}
.y1f_c00253{bottom:52.324000pt;}
.y1e_c00253{bottom:67.338667pt;}
.y1d_c00253{bottom:81.976000pt;}
.y1c_c00253{bottom:97.888000pt;}
.y1b_c00253{bottom:113.308000pt;}
.y1a_c00253{bottom:128.670667pt;}
.y19_c00253{bottom:144.776000pt;}
.y18_c00253{bottom:161.040000pt;}
.y17_c00253{bottom:176.321333pt;}
.y16_c00253{bottom:191.520000pt;}
.y15_c00253{bottom:206.825333pt;}
.y14_c00253{bottom:222.109333pt;}
.y13_c00253{bottom:236.958667pt;}
.y12_c00253{bottom:252.586667pt;}
.y11_c00253{bottom:267.630667pt;}
.y10_c00253{bottom:282.749333pt;}
.yf_c00253{bottom:298.242667pt;}
.ye_c00253{bottom:313.469333pt;}
.yd_c00253{bottom:328.906667pt;}
.yc_c00253{bottom:344.238667pt;}
.yb_c00253{bottom:359.520000pt;}
.ya_c00253{bottom:374.716000pt;}
.y9_c00253{bottom:390.425333pt;}
.y8_c00253{bottom:405.438667pt;}
.y7_c00253{bottom:420.933333pt;}
.y6_c00253{bottom:436.266667pt;}
.y5_c00253{bottom:451.440000pt;}
.y4_c00253{bottom:466.213333pt;}
.y3_c00253{bottom:481.680000pt;}
.y2_c00253{bottom:497.040000pt;}
.y1_c00253{bottom:508.709333pt;}
.h8_c00253{height:49.466667pt;}
.hf_c00253{height:52.266667pt;}
.h9_c00253{height:53.200000pt;}
.h4_c00253{height:54.133333pt;}
.h3_c00253{height:55.066667pt;}
.h5_c00253{height:56.000000pt;}
.hc_c00253{height:56.933333pt;}
.he_c00253{height:57.866667pt;}
.h7_c00253{height:58.800000pt;}
.ha_c00253{height:59.733333pt;}
.h6_c00253{height:60.666667pt;}
.hb_c00253{height:61.600000pt;}
.hd_c00253{height:62.533333pt;}
.h2_c00253{height:72.800000pt;}
.h1_c00253{height:550.000000pt;}
.h0_c00253{height:550.266667pt;}
.w0_c00253{width:319.200000pt;}
.w1_c00253{width:319.333333pt;}
.x0_c00253{left:0.000000pt;}
.x43_c00253{left:31.200000pt;}
.x3_c00253{left:32.160000pt;}
.x51_c00253{left:43.200000pt;}
.x77_c00253{left:48.960000pt;}
.x20_c00253{left:50.880000pt;}
.x57_c00253{left:53.040000pt;}
.x2f_c00253{left:54.240000pt;}
.x10_c00253{left:55.440000pt;}
.x63_c00253{left:58.560000pt;}
.x16_c00253{left:61.680000pt;}
.x39_c00253{left:62.880000pt;}
.x4e_c00253{left:63.840000pt;}
.x30_c00253{left:65.280000pt;}
.x35_c00253{left:67.200000pt;}
.x46_c00253{left:68.640000pt;}
.x73_c00253{left:70.800000pt;}
.x58_c00253{left:72.720000pt;}
.x47_c00253{left:77.520000pt;}
.x52_c00253{left:78.720000pt;}
.x3e_c00253{left:79.680000pt;}
.x2b_c00253{left:80.880000pt;}
.x27_c00253{left:82.560000pt;}
.x17_c00253{left:84.000000pt;}
.x76_c00253{left:85.200000pt;}
.x44_c00253{left:86.160000pt;}
.xa_c00253{left:88.080000pt;}
.x4_c00253{left:90.720000pt;}
.x7e_c00253{left:91.920000pt;}
.x6a_c00253{left:93.120000pt;}
.x3f_c00253{left:96.720000pt;}
.x64_c00253{left:98.880000pt;}
.x2c_c00253{left:99.840000pt;}
.xb_c00253{left:102.000000pt;}
.x4b_c00253{left:103.680000pt;}
.x1b_c00253{left:105.120000pt;}
.x5c_c00253{left:106.560000pt;}
.x31_c00253{left:107.760000pt;}
.x5_c00253{left:110.400000pt;}
.x21_c00253{left:112.560000pt;}
.x28_c00253{left:113.520000pt;}
.x4f_c00253{left:114.960000pt;}
.x5a_c00253{left:117.360000pt;}
.x53_c00253{left:118.320000pt;}
.x4c_c00253{left:120.000000pt;}
.x1c_c00253{left:123.360000pt;}
.x65_c00253{left:124.320000pt;}
.x32_c00253{left:126.720000pt;}
.x18_c00253{left:128.640000pt;}
.x54_c00253{left:130.080000pt;}
.x48_c00253{left:132.000000pt;}
.x3a_c00253{left:134.640000pt;}
.x2d_c00253{left:138.240000pt;}
.x50_c00253{left:139.680000pt;}
.x11_c00253{left:143.280000pt;}
.xc_c00253{left:145.440000pt;}
.x1_c00253{left:150.000000pt;}
.x6b_c00253{left:151.200000pt;}
.x6_c00253{left:152.160000pt;}
.x78_c00253{left:153.120000pt;}
.x40_c00253{left:154.800000pt;}
.x36_c00253{left:156.000000pt;}
.x3b_c00253{left:157.440000pt;}
.x5d_c00253{left:159.360000pt;}
.x12_c00253{left:161.040000pt;}
.xd_c00253{left:162.720000pt;}
.x66_c00253{left:165.840000pt;}
.x22_c00253{left:167.280000pt;}
.x37_c00253{left:170.640000pt;}
.x55_c00253{left:172.800000pt;}
.x3c_c00253{left:175.440000pt;}
.x19_c00253{left:177.360000pt;}
.x61_c00253{left:178.800000pt;}
.x23_c00253{left:179.760000pt;}
.x79_c00253{left:181.200000pt;}
.x5b_c00253{left:182.400000pt;}
.x7b_c00253{left:183.600000pt;}
.x67_c00253{left:185.040000pt;}
.x7_c00253{left:186.960000pt;}
.x33_c00253{left:188.160000pt;}
.x41_c00253{left:190.320000pt;}
.x62_c00253{left:192.960000pt;}
.x24_c00253{left:193.920000pt;}
.x4d_c00253{left:197.520000pt;}
.x59_c00253{left:201.360000pt;}
.x1d_c00253{left:202.560000pt;}
.x7c_c00253{left:203.760000pt;}
.x13_c00253{left:204.720000pt;}
.x70_c00253{left:205.680000pt;}
.x56_c00253{left:207.120000pt;}
.x8_c00253{left:211.200000pt;}
.x2e_c00253{left:213.840000pt;}
.x1e_c00253{left:216.240000pt;}
.x49_c00253{left:218.400000pt;}
.x6d_c00253{left:219.360000pt;}
.xe_c00253{left:221.040000pt;}
.x6c_c00253{left:222.480000pt;}
.x3d_c00253{left:225.360000pt;}
.x29_c00253{left:229.920000pt;}
.x5f_c00253{left:231.600000pt;}
.x6e_c00253{left:232.800000pt;}
.x45_c00253{left:234.240000pt;}
.x4a_c00253{left:235.200000pt;}
.x71_c00253{left:238.080000pt;}
.x7a_c00253{left:241.200000pt;}
.x74_c00253{left:243.600000pt;}
.x60_c00253{left:244.560000pt;}
.x68_c00253{left:247.440000pt;}
.x14_c00253{left:249.840000pt;}
.x1a_c00253{left:259.440000pt;}
.x9_c00253{left:260.880000pt;}
.x34_c00253{left:262.080000pt;}
.x1f_c00253{left:263.760000pt;}
.x69_c00253{left:264.720000pt;}
.x7d_c00253{left:266.160000pt;}
.x38_c00253{left:269.520000pt;}
.x2a_c00253{left:270.960000pt;}
.x25_c00253{left:275.520000pt;}
.x42_c00253{left:276.480000pt;}
.xf_c00253{left:278.640000pt;}
.x72_c00253{left:280.080000pt;}
.x2_c00253{left:281.760000pt;}
.x75_c00253{left:282.720000pt;}
.x5e_c00253{left:285.840000pt;}
.x26_c00253{left:286.800000pt;}
.x15_c00253{left:292.800000pt;}
.x6f_c00253{left:296.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00254 {
    display:none;
  }
  .loading-indicator_c00254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00254 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00254 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00254" -> "#page-container .classname_c00254")
 */
.pf_c00254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00254 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00254 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00254 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00254 {overflow:visible;}
  }
}
.c_c00254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00254 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00254:after { /* webkit #35443 */
  content: '';
}
.t_c00254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00254 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00254 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00254 { /* info for Javascript */
  display:none;
}
.l_c00254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00254:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00254 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00254.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc2_c00254{transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.014430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014430,0.000000,0.000000,0.250000,0,0);}
.mc3_c00254{transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.095240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00254{transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141240,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m85_c00254{transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);}
.m37_c00254{transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{transform:matrix(0.160520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160520,0.000000,0.000000,0.250000,0,0);}
.me6_c00254{transform:matrix(0.160542,0.005464,-0.008504,0.249855,0,0);-ms-transform:matrix(0.160542,0.005464,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.160542,0.005464,-0.008504,0.249855,0,0);}
.ma8_c00254{transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161720,0.000000,0.000000,0.250000,0,0);}
.mbe_c00254{transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);}
.m74_c00254{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.mc8_c00254{transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.mc0_c00254{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);}
.mb2_c00254{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.ma2_c00254{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00254{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.ma7_c00254{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.mcf_c00254{transform:matrix(0.174120,0.004179,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174120,0.004179,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174120,0.004179,-0.005998,0.249928,0,0);}
.m20_c00254{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.m56_c00254{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);}
.m96_c00254{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.mab_c00254{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m39_c00254{transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);}
.me3_c00254{transform:matrix(0.181573,0.004358,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181573,0.004358,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181573,0.004358,-0.005998,0.249928,0,0);}
.ma9_c00254{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m93_c00254{transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182420,0.000000,0.000000,0.250000,0,0);}
.me2_c00254{transform:matrix(0.182847,0.004388,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182847,0.004388,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182847,0.004388,-0.005998,0.249928,0,0);}
.m80_c00254{transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.ma6_c00254{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.mc9_c00254{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m9f_c00254{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m4d_c00254{transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m5c_c00254{transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);}
.maa_c00254{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.mc7_c00254{transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);}
.m49_c00254{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m66_c00254{transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);}
.m70_c00254{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mbf_c00254{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.maf_c00254{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);}
.me5_c00254{transform:matrix(0.190035,0.006468,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190035,0.006468,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190035,0.006468,-0.008504,0.249855,0,0);}
.me9_c00254{transform:matrix(0.190290,0.006476,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190290,0.006476,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190290,0.006476,-0.008504,0.249855,0,0);}
.m18_c00254{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m73_c00254{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);}
.md8_c00254{transform:matrix(0.190920,0.004582,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190920,0.004582,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190920,0.004582,-0.005998,0.249928,0,0);}
.m1b_c00254{transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);}
.mea_c00254{transform:matrix(0.191654,0.006523,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191654,0.006523,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191654,0.006523,-0.008504,0.249855,0,0);}
.me_c00254{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193860,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m76_c00254{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);}
.m88_c00254{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);}
.m8e_c00254{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00254{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me4_c00254{transform:matrix(0.197893,0.004749,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197893,0.004749,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197893,0.004749,-0.005998,0.249928,0,0);}
.m14_c00254{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.mc4_c00254{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m55_c00254{transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);}
.mae_c00254{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.m6c_c00254{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.mb8_c00254{transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199505,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.mb0_c00254{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.mcd_c00254{transform:matrix(0.200207,0.004805,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200207,0.004805,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200207,0.004805,-0.005998,0.249928,0,0);}
.m16_c00254{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.200355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200355,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);}
.m97_c00254{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m72_c00254{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.m6d_c00254{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.m94_c00254{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.mce_c00254{transform:matrix(0.201857,0.004845,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201857,0.004845,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201857,0.004845,-0.005998,0.249928,0,0);}
.md5_c00254{transform:matrix(0.202192,0.004853,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202192,0.004853,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202192,0.004853,-0.005998,0.249928,0,0);}
.m7e_c00254{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.me8_c00254{transform:matrix(0.202823,0.006903,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202823,0.006903,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202823,0.006903,-0.008504,0.249855,0,0);}
.m4a_c00254{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.m83_c00254{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.mb7_c00254{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m90_c00254{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.m84_c00254{transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);}
.m8a_c00254{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m71_c00254{transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.mb1_c00254{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m82_c00254{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m7d_c00254{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.mb3_c00254{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m77_c00254{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.m54_c00254{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00254{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.me1_c00254{transform:matrix(0.207175,0.004972,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207175,0.004972,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207175,0.004972,-0.005998,0.249928,0,0);}
.m3f_c00254{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.m48_c00254{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.m95_c00254{transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207510,0.000000,0.000000,0.250000,0,0);}
.m81_c00254{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00254{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.m50_c00254{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.md0_c00254{transform:matrix(0.209560,0.005029,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209560,0.005029,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209560,0.005029,-0.005998,0.249928,0,0);}
.m38_c00254{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.md4_c00254{transform:matrix(0.210809,0.005059,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210809,0.005059,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210809,0.005059,-0.005998,0.249928,0,0);}
.m7b_c00254{transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.mde_c00254{transform:matrix(0.212539,0.005101,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212539,0.005101,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212539,0.005101,-0.005998,0.249928,0,0);}
.m1c_c00254{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m6f_c00254{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.mc5_c00254{transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);}
.me7_c00254{transform:matrix(0.214966,0.007316,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214966,0.007316,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214966,0.007316,-0.008504,0.249855,0,0);}
.m33_c00254{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m91_c00254{transform:matrix(0.215570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215570,0.000000,0.000000,0.250000,0,0);}
.mdf_c00254{transform:matrix(0.216453,0.005195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216453,0.005195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216453,0.005195,-0.005998,0.249928,0,0);}
.m47_c00254{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m36_c00254{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.m92_c00254{transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217215,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);}
.me0_c00254{transform:matrix(0.217447,0.005219,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217447,0.005219,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217447,0.005219,-0.005998,0.249928,0,0);}
.m8d_c00254{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218540,0.000000,0.000000,0.250000,0,0);}
.m51_c00254{transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);}
.m6e_c00254{transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);}
.m9e_c00254{transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m40_c00254{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m2a_c00254{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.mca_c00254{transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);}
.m4f_c00254{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.mc6_c00254{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.mdd_c00254{transform:matrix(0.225135,0.005403,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225135,0.005403,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225135,0.005403,-0.005998,0.249928,0,0);}
.m53_c00254{transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225190,0.000000,0.000000,0.250000,0,0);}
.m8f_c00254{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.md6_c00254{transform:matrix(0.230844,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230844,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230844,0.005540,-0.005998,0.249928,0,0);}
.m8c_c00254{transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231020,0.000000,0.000000,0.250000,0,0);}
.md3_c00254{transform:matrix(0.233193,0.005597,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233193,0.005597,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233193,0.005597,-0.005998,0.249928,0,0);}
.md2_c00254{transform:matrix(0.233378,0.005601,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233378,0.005601,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233378,0.005601,-0.005998,0.249928,0,0);}
.m87_c00254{transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);}
.mad_c00254{transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);}
.m8b_c00254{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m61_c00254{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.mc1_c00254{transform:matrix(0.241885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241885,0.000000,0.000000,0.250000,0,0);}
.md9_c00254{transform:matrix(0.246244,0.005910,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246244,0.005910,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246244,0.005910,-0.005998,0.249928,0,0);}
.m6b_c00254{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00254{transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);}
.mda_c00254{transform:matrix(0.252777,0.006067,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252777,0.006067,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252777,0.006067,-0.005998,0.249928,0,0);}
.m9d_c00254{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.mdb_c00254{transform:matrix(0.256441,0.006155,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256441,0.006155,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256441,0.006155,-0.005998,0.249928,0,0);}
.m5a_c00254{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.mbd_c00254{transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263035,0.000000,0.000000,0.250000,0,0);}
.md7_c00254{transform:matrix(0.267868,0.006429,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267868,0.006429,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267868,0.006429,-0.005998,0.249928,0,0);}
.mdc_c00254{transform:matrix(0.280039,0.006721,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280039,0.006721,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280039,0.006721,-0.005998,0.249928,0,0);}
.m59_c00254{transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);}
.mba_c00254{transform:matrix(0.304755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304755,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.346885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346885,0.000000,0.000000,0.250000,0,0);}
.mb5_c00254{transform:matrix(0.378630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378630,0.000000,0.000000,0.250000,0,0);}
.mcc_c00254{transform:matrix(0.398260,0.009558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.398260,0.009558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.398260,0.009558,-0.005998,0.249928,0,0);}
.mb6_c00254{transform:matrix(0.502940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502940,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.503830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503830,0.000000,0.000000,0.250000,0,0);}
.mac_c00254{transform:matrix(0.540505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540505,0.000000,0.000000,0.250000,0,0);}
.mbb_c00254{transform:matrix(0.563310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563310,0.000000,0.000000,0.250000,0,0);}
.md1_c00254{transform:matrix(0.625585,0.015014,-0.005998,0.249928,0,0);-ms-transform:matrix(0.625585,0.015014,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.625585,0.015014,-0.005998,0.249928,0,0);}
.mb4_c00254{transform:matrix(0.630905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630905,0.000000,0.000000,0.250000,0,0);}
.mcb_c00254{transform:matrix(1.791734,0.043002,-0.005998,0.249928,0,0);-ms-transform:matrix(1.791734,0.043002,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.791734,0.043002,-0.005998,0.249928,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:0.000000px;}
.fc0_c00254{color:transparent;}
.fs5_c00254{font-size:57.750000px;}
.fse_c00254{font-size:57.766630px;}
.fs8_c00254{font-size:58.800000px;}
.fsd_c00254{font-size:58.816932px;}
.fs7_c00254{font-size:59.850000px;}
.fs4_c00254{font-size:60.900000px;}
.fsf_c00254{font-size:60.917537px;}
.fs9_c00254{font-size:61.950000px;}
.fs6_c00254{font-size:63.000000px;}
.fsc_c00254{font-size:63.018141px;}
.fs3_c00254{font-size:64.050000px;}
.fs2_c00254{font-size:65.100000px;}
.fs10_c00254{font-size:66.122112px;}
.fsa_c00254{font-size:66.150000px;}
.fs1_c00254{font-size:68.250000px;}
.fsb_c00254{font-size:69.300000px;}
.fs0_c00254{font-size:132.300000px;}
.y0_c00254{bottom:0.000000px;}
.y7d_c00254{bottom:19.713675px;}
.y7c_c00254{bottom:20.644833px;}
.y7b_c00254{bottom:22.751745px;}
.y7a_c00254{bottom:25.645842px;}
.y79_c00254{bottom:26.224794px;}
.y78_c00254{bottom:27.826500px;}
.y77_c00254{bottom:38.463444px;}
.y76_c00254{bottom:39.228840px;}
.y75_c00254{bottom:40.338384px;}
.y74_c00254{bottom:42.107472px;}
.y73_c00254{bottom:43.576908px;}
.y72_c00254{bottom:44.619384px;}
.y71_c00254{bottom:45.624876px;}
.y70_c00254{bottom:55.287564px;}
.y6f_c00254{bottom:55.672740px;}
.y6e_c00254{bottom:56.585016px;}
.y6d_c00254{bottom:56.930436px;}
.y6c_c00254{bottom:59.238696px;}
.y6b_c00254{bottom:59.968608px;}
.y6a_c00254{bottom:61.011204px;}
.y69_c00254{bottom:72.589824px;}
.y68_c00254{bottom:73.225632px;}
.y67_c00254{bottom:73.695828px;}
.y66_c00254{bottom:75.143112px;}
.y65_c00254{bottom:76.314840px;}
.y64_c00254{bottom:77.406660px;}
.y63_c00254{bottom:78.024180px;}
.y62_c00254{bottom:89.364396px;}
.y61_c00254{bottom:90.379272px;}
.y60_c00254{bottom:92.415108px;}
.y5f_c00254{bottom:93.472140px;}
.y5e_c00254{bottom:96.397500px;}
.y5d_c00254{bottom:106.881000px;}
.y5c_c00254{bottom:115.632000px;}
.y5b_c00254{bottom:142.656000px;}
.y5a_c00254{bottom:143.166000px;}
.y59_c00254{bottom:144.066000px;}
.y58_c00254{bottom:144.454500px;}
.y57_c00254{bottom:145.038000px;}
.y56_c00254{bottom:145.536000px;}
.y55_c00254{bottom:159.163500px;}
.y54_c00254{bottom:176.005500px;}
.y53_c00254{bottom:177.060000px;}
.y52_c00254{bottom:177.586500px;}
.y51_c00254{bottom:178.401000px;}
.y50_c00254{bottom:179.601000px;}
.y4f_c00254{bottom:180.690000px;}
.y4e_c00254{bottom:181.156500px;}
.y4d_c00254{bottom:181.887000px;}
.y4c_c00254{bottom:183.069000px;}
.y4b_c00254{bottom:193.320000px;}
.y4a_c00254{bottom:194.797500px;}
.y49_c00254{bottom:195.964500px;}
.y48_c00254{bottom:196.465500px;}
.y47_c00254{bottom:197.589000px;}
.y46_c00254{bottom:197.866500px;}
.y45_c00254{bottom:198.186000px;}
.y44_c00254{bottom:210.795000px;}
.y43_c00254{bottom:211.345500px;}
.y42_c00254{bottom:212.607000px;}
.y41_c00254{bottom:213.066000px;}
.y40_c00254{bottom:213.678000px;}
.y3f_c00254{bottom:213.979500px;}
.y3e_c00254{bottom:214.849500px;}
.y3d_c00254{bottom:215.466000px;}
.y3c_c00254{bottom:227.547000px;}
.y3b_c00254{bottom:228.786000px;}
.y3a_c00254{bottom:229.282500px;}
.y39_c00254{bottom:230.352000px;}
.y38_c00254{bottom:230.566500px;}
.y37_c00254{bottom:231.312000px;}
.y36_c00254{bottom:231.666000px;}
.y35_c00254{bottom:245.452500px;}
.y34_c00254{bottom:245.646000px;}
.y33_c00254{bottom:246.327000px;}
.y32_c00254{bottom:246.678000px;}
.y31_c00254{bottom:246.966000px;}
.y30_c00254{bottom:247.605000px;}
.y2f_c00254{bottom:248.379000px;}
.y2e_c00254{bottom:248.556000px;}
.y2d_c00254{bottom:249.214500px;}
.y2c_c00254{bottom:262.480500px;}
.y2b_c00254{bottom:263.686500px;}
.y2a_c00254{bottom:264.309000px;}
.y29_c00254{bottom:264.555000px;}
.y28_c00254{bottom:265.212000px;}
.y27_c00254{bottom:265.681500px;}
.y26_c00254{bottom:265.954500px;}
.y25_c00254{bottom:280.450500px;}
.y24_c00254{bottom:280.903500px;}
.y23_c00254{bottom:281.644500px;}
.y22_c00254{bottom:282.391500px;}
.y21_c00254{bottom:283.237500px;}
.y20_c00254{bottom:283.486500px;}
.y1f_c00254{bottom:284.044500px;}
.y1e_c00254{bottom:298.165500px;}
.y1d_c00254{bottom:299.118000px;}
.y1c_c00254{bottom:299.434500px;}
.y1b_c00254{bottom:300.205500px;}
.y1a_c00254{bottom:300.616500px;}
.y19_c00254{bottom:300.991500px;}
.y18_c00254{bottom:301.591500px;}
.y17_c00254{bottom:317.115000px;}
.y16_c00254{bottom:334.039500px;}
.y15_c00254{bottom:350.053500px;}
.y14_c00254{bottom:365.758500px;}
.y13_c00254{bottom:381.474000px;}
.y12_c00254{bottom:382.078500px;}
.y11_c00254{bottom:382.335000px;}
.y10_c00254{bottom:383.865000px;}
.yf_c00254{bottom:384.421500px;}
.ye_c00254{bottom:384.975000px;}
.yd_c00254{bottom:385.315500px;}
.yc_c00254{bottom:386.373000px;}
.yb_c00254{bottom:399.876000px;}
.ya_c00254{bottom:418.366500px;}
.y9_c00254{bottom:434.676000px;}
.y8_c00254{bottom:452.713500px;}
.y7_c00254{bottom:468.006000px;}
.y6_c00254{bottom:487.020000px;}
.y5_c00254{bottom:503.908500px;}
.y4_c00254{bottom:521.763000px;}
.y3_c00254{bottom:539.071500px;}
.y2_c00254{bottom:554.668500px;}
.y1_c00254{bottom:567.273000px;}
.h7_c00254{height:57.750000px;}
.h10_c00254{height:57.766630px;}
.ha_c00254{height:58.800000px;}
.hf_c00254{height:58.816932px;}
.h9_c00254{height:59.850000px;}
.h6_c00254{height:60.900000px;}
.h11_c00254{height:60.917537px;}
.hb_c00254{height:61.950000px;}
.h8_c00254{height:63.000000px;}
.he_c00254{height:63.018141px;}
.h5_c00254{height:64.050000px;}
.h4_c00254{height:65.100000px;}
.h12_c00254{height:66.122112px;}
.hc_c00254{height:66.150000px;}
.h3_c00254{height:68.250000px;}
.hd_c00254{height:69.300000px;}
.h2_c00254{height:132.300000px;}
.h1_c00254{height:618.750000px;}
.h0_c00254{height:619.050000px;}
.w0_c00254{width:359.100000px;}
.w1_c00254{width:359.250000px;}
.x0_c00254{left:0.000000px;}
.x73_c00254{left:21.604500px;}
.x5d_c00254{left:27.144000px;}
.x58_c00254{left:30.333000px;}
.x3d_c00254{left:31.680000px;}
.x3_c00254{left:34.560000px;}
.x10_c00254{left:38.610000px;}
.x2d_c00254{left:41.580000px;}
.x4_c00254{left:46.980000px;}
.x5e_c00254{left:49.852500px;}
.x26_c00254{left:53.460000px;}
.x2e_c00254{left:54.540000px;}
.x11_c00254{left:55.890000px;}
.x37_c00254{left:56.970000px;}
.x4f_c00254{left:59.398500px;}
.x18_c00254{left:62.100000px;}
.x41_c00254{left:65.338500px;}
.x44_c00254{left:72.088500px;}
.x59_c00254{left:73.276500px;}
.x21_c00254{left:74.520000px;}
.x69_c00254{left:76.785000px;}
.x38_c00254{left:78.840000px;}
.x54_c00254{left:80.910000px;}
.x7c_c00254{left:82.186512px;}
.xb_c00254{left:88.290000px;}
.x45_c00254{left:89.638500px;}
.x2f_c00254{left:91.800000px;}
.x35_c00254{left:93.420000px;}
.x7f_c00254{left:100.103652px;}
.x1d_c00254{left:102.330000px;}
.x3e_c00254{left:105.205500px;}
.x27_c00254{left:106.380000px;}
.x70_c00254{left:107.871000px;}
.x19_c00254{left:111.240000px;}
.x5_c00254{left:113.130000px;}
.x36_c00254{left:114.210000px;}
.x46_c00254{left:115.558500px;}
.x79_c00254{left:117.568464px;}
.x63_c00254{left:118.896000px;}
.x12_c00254{left:120.150000px;}
.x50_c00254{left:121.228500px;}
.x6a_c00254{left:122.860500px;}
.x71_c00254{left:124.744500px;}
.x66_c00254{left:126.987000px;}
.x6d_c00254{left:129.601500px;}
.xc_c00254{left:131.490000px;}
.x47_c00254{left:133.378500px;}
.x30_c00254{left:134.730000px;}
.x13_c00254{left:141.210000px;}
.x22_c00254{left:143.100000px;}
.x1a_c00254{left:144.450000px;}
.x55_c00254{left:146.464500px;}
.x80_c00254{left:149.073096px;}
.x28_c00254{left:150.390000px;}
.x75_c00254{left:153.175500px;}
.x31_c00254{left:154.980000px;}
.x5a_c00254{left:157.509000px;}
.xd_c00254{left:159.030000px;}
.x39_c00254{left:160.110000px;}
.x1e_c00254{left:161.460000px;}
.x6_c00254{left:163.620000px;}
.x23_c00254{left:165.240000px;}
.x1_c00254{left:166.320000px;}
.x14_c00254{left:169.830000px;}
.x48_c00254{left:171.718500px;}
.x3a_c00254{left:174.690000px;}
.x7a_c00254{left:176.146080px;}
.x4d_c00254{left:182.518500px;}
.x7_c00254{left:183.870000px;}
.x49_c00254{left:190.348500px;}
.x60_c00254{left:192.063000px;}
.x32_c00254{left:195.210000px;}
.x76_c00254{left:197.218500px;}
.x42_c00254{left:200.878500px;}
.x29_c00254{left:204.120000px;}
.x72_c00254{left:206.824500px;}
.x81_c00254{left:208.026600px;}
.x56_c00254{left:210.774000px;}
.x15_c00254{left:212.220000px;}
.x6e_c00254{left:213.841500px;}
.x5b_c00254{left:215.016000px;}
.x5f_c00254{left:216.108000px;}
.x2a_c00254{left:218.160000px;}
.x67_c00254{left:219.586500px;}
.x51_c00254{left:221.398500px;}
.x8_c00254{left:223.830000px;}
.xe_c00254{left:225.180000px;}
.x7d_c00254{left:226.912452px;}
.x33_c00254{left:230.040000px;}
.x24_c00254{left:233.550000px;}
.x2b_c00254{left:235.170000px;}
.x57_c00254{left:237.175500px;}
.x52_c00254{left:238.678500px;}
.x1f_c00254{left:240.570000px;}
.x6b_c00254{left:242.199000px;}
.x3f_c00254{left:244.210500px;}
.x6f_c00254{left:245.701500px;}
.x7b_c00254{left:248.519028px;}
.x4a_c00254{left:250.558500px;}
.x1b_c00254{left:251.640000px;}
.x3b_c00254{left:252.720000px;}
.x16_c00254{left:255.150000px;}
.x40_c00254{left:257.695500px;}
.x64_c00254{left:260.617500px;}
.x4e_c00254{left:262.438500px;}
.x20_c00254{left:263.790000px;}
.x83_c00254{left:266.139274px;}
.x9_c00254{left:267.840000px;}
.x82_c00254{left:270.515100px;}
.x5c_c00254{left:271.983000px;}
.x43_c00254{left:275.938500px;}
.x74_c00254{left:277.294500px;}
.x4b_c00254{left:278.908500px;}
.x77_c00254{left:282.045000px;}
.x61_c00254{left:286.365000px;}
.x2c_c00254{left:288.630000px;}
.x65_c00254{left:291.175500px;}
.xf_c00254{left:292.950000px;}
.x17_c00254{left:294.840000px;}
.x62_c00254{left:300.136500px;}
.x68_c00254{left:301.708500px;}
.x6c_c00254{left:303.000000px;}
.x7e_c00254{left:305.183604px;}
.x3c_c00254{left:306.450000px;}
.x34_c00254{left:307.530000px;}
.x4c_c00254{left:309.688500px;}
.x53_c00254{left:310.768500px;}
.xa_c00254{left:314.010000px;}
.x1c_c00254{left:315.630000px;}
.x78_c00254{left:324.331500px;}
.x2_c00254{left:326.430000px;}
.x25_c00254{left:328.590000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:0.000000pt;}
.fs5_c00254{font-size:51.333333pt;}
.fse_c00254{font-size:51.348115pt;}
.fs8_c00254{font-size:52.266667pt;}
.fsd_c00254{font-size:52.281717pt;}
.fs7_c00254{font-size:53.200000pt;}
.fs4_c00254{font-size:54.133333pt;}
.fsf_c00254{font-size:54.148921pt;}
.fs9_c00254{font-size:55.066667pt;}
.fs6_c00254{font-size:56.000000pt;}
.fsc_c00254{font-size:56.016126pt;}
.fs3_c00254{font-size:56.933333pt;}
.fs2_c00254{font-size:57.866667pt;}
.fs10_c00254{font-size:58.775211pt;}
.fsa_c00254{font-size:58.800000pt;}
.fs1_c00254{font-size:60.666667pt;}
.fsb_c00254{font-size:61.600000pt;}
.fs0_c00254{font-size:117.600000pt;}
.y0_c00254{bottom:0.000000pt;}
.y7d_c00254{bottom:17.523267pt;}
.y7c_c00254{bottom:18.350963pt;}
.y7b_c00254{bottom:20.223773pt;}
.y7a_c00254{bottom:22.796304pt;}
.y79_c00254{bottom:23.310928pt;}
.y78_c00254{bottom:24.734667pt;}
.y77_c00254{bottom:34.189728pt;}
.y76_c00254{bottom:34.870080pt;}
.y75_c00254{bottom:35.856341pt;}
.y74_c00254{bottom:37.428864pt;}
.y73_c00254{bottom:38.735029pt;}
.y72_c00254{bottom:39.661675pt;}
.y71_c00254{bottom:40.555445pt;}
.y70_c00254{bottom:49.144501pt;}
.y6f_c00254{bottom:49.486880pt;}
.y6e_c00254{bottom:50.297792pt;}
.y6d_c00254{bottom:50.604832pt;}
.y6c_c00254{bottom:52.656619pt;}
.y6b_c00254{bottom:53.305429pt;}
.y6a_c00254{bottom:54.232181pt;}
.y69_c00254{bottom:64.524288pt;}
.y68_c00254{bottom:65.089451pt;}
.y67_c00254{bottom:65.507403pt;}
.y66_c00254{bottom:66.793877pt;}
.y65_c00254{bottom:67.835413pt;}
.y64_c00254{bottom:68.805920pt;}
.y63_c00254{bottom:69.354827pt;}
.y62_c00254{bottom:79.435019pt;}
.y61_c00254{bottom:80.337131pt;}
.y60_c00254{bottom:82.146763pt;}
.y5f_c00254{bottom:83.086347pt;}
.y5e_c00254{bottom:85.686667pt;}
.y5d_c00254{bottom:95.005333pt;}
.y5c_c00254{bottom:102.784000pt;}
.y5b_c00254{bottom:126.805333pt;}
.y5a_c00254{bottom:127.258667pt;}
.y59_c00254{bottom:128.058667pt;}
.y58_c00254{bottom:128.404000pt;}
.y57_c00254{bottom:128.922667pt;}
.y56_c00254{bottom:129.365333pt;}
.y55_c00254{bottom:141.478667pt;}
.y54_c00254{bottom:156.449333pt;}
.y53_c00254{bottom:157.386667pt;}
.y52_c00254{bottom:157.854667pt;}
.y51_c00254{bottom:158.578667pt;}
.y50_c00254{bottom:159.645333pt;}
.y4f_c00254{bottom:160.613333pt;}
.y4e_c00254{bottom:161.028000pt;}
.y4d_c00254{bottom:161.677333pt;}
.y4c_c00254{bottom:162.728000pt;}
.y4b_c00254{bottom:171.840000pt;}
.y4a_c00254{bottom:173.153333pt;}
.y49_c00254{bottom:174.190667pt;}
.y48_c00254{bottom:174.636000pt;}
.y47_c00254{bottom:175.634667pt;}
.y46_c00254{bottom:175.881333pt;}
.y45_c00254{bottom:176.165333pt;}
.y44_c00254{bottom:187.373333pt;}
.y43_c00254{bottom:187.862667pt;}
.y42_c00254{bottom:188.984000pt;}
.y41_c00254{bottom:189.392000pt;}
.y40_c00254{bottom:189.936000pt;}
.y3f_c00254{bottom:190.204000pt;}
.y3e_c00254{bottom:190.977333pt;}
.y3d_c00254{bottom:191.525333pt;}
.y3c_c00254{bottom:202.264000pt;}
.y3b_c00254{bottom:203.365333pt;}
.y3a_c00254{bottom:203.806667pt;}
.y39_c00254{bottom:204.757333pt;}
.y38_c00254{bottom:204.948000pt;}
.y37_c00254{bottom:205.610667pt;}
.y36_c00254{bottom:205.925333pt;}
.y35_c00254{bottom:218.180000pt;}
.y34_c00254{bottom:218.352000pt;}
.y33_c00254{bottom:218.957333pt;}
.y32_c00254{bottom:219.269333pt;}
.y31_c00254{bottom:219.525333pt;}
.y30_c00254{bottom:220.093333pt;}
.y2f_c00254{bottom:220.781333pt;}
.y2e_c00254{bottom:220.938667pt;}
.y2d_c00254{bottom:221.524000pt;}
.y2c_c00254{bottom:233.316000pt;}
.y2b_c00254{bottom:234.388000pt;}
.y2a_c00254{bottom:234.941333pt;}
.y29_c00254{bottom:235.160000pt;}
.y28_c00254{bottom:235.744000pt;}
.y27_c00254{bottom:236.161333pt;}
.y26_c00254{bottom:236.404000pt;}
.y25_c00254{bottom:249.289333pt;}
.y24_c00254{bottom:249.692000pt;}
.y23_c00254{bottom:250.350667pt;}
.y22_c00254{bottom:251.014667pt;}
.y21_c00254{bottom:251.766667pt;}
.y20_c00254{bottom:251.988000pt;}
.y1f_c00254{bottom:252.484000pt;}
.y1e_c00254{bottom:265.036000pt;}
.y1d_c00254{bottom:265.882667pt;}
.y1c_c00254{bottom:266.164000pt;}
.y1b_c00254{bottom:266.849333pt;}
.y1a_c00254{bottom:267.214667pt;}
.y19_c00254{bottom:267.548000pt;}
.y18_c00254{bottom:268.081333pt;}
.y17_c00254{bottom:281.880000pt;}
.y16_c00254{bottom:296.924000pt;}
.y15_c00254{bottom:311.158667pt;}
.y14_c00254{bottom:325.118667pt;}
.y13_c00254{bottom:339.088000pt;}
.y12_c00254{bottom:339.625333pt;}
.y11_c00254{bottom:339.853333pt;}
.y10_c00254{bottom:341.213333pt;}
.yf_c00254{bottom:341.708000pt;}
.ye_c00254{bottom:342.200000pt;}
.yd_c00254{bottom:342.502667pt;}
.yc_c00254{bottom:343.442667pt;}
.yb_c00254{bottom:355.445333pt;}
.ya_c00254{bottom:371.881333pt;}
.y9_c00254{bottom:386.378667pt;}
.y8_c00254{bottom:402.412000pt;}
.y7_c00254{bottom:416.005333pt;}
.y6_c00254{bottom:432.906667pt;}
.y5_c00254{bottom:447.918667pt;}
.y4_c00254{bottom:463.789333pt;}
.y3_c00254{bottom:479.174667pt;}
.y2_c00254{bottom:493.038667pt;}
.y1_c00254{bottom:504.242667pt;}
.h7_c00254{height:51.333333pt;}
.h10_c00254{height:51.348115pt;}
.ha_c00254{height:52.266667pt;}
.hf_c00254{height:52.281717pt;}
.h9_c00254{height:53.200000pt;}
.h6_c00254{height:54.133333pt;}
.h11_c00254{height:54.148921pt;}
.hb_c00254{height:55.066667pt;}
.h8_c00254{height:56.000000pt;}
.he_c00254{height:56.016126pt;}
.h5_c00254{height:56.933333pt;}
.h4_c00254{height:57.866667pt;}
.h12_c00254{height:58.775211pt;}
.hc_c00254{height:58.800000pt;}
.h3_c00254{height:60.666667pt;}
.hd_c00254{height:61.600000pt;}
.h2_c00254{height:117.600000pt;}
.h1_c00254{height:550.000000pt;}
.h0_c00254{height:550.266667pt;}
.w0_c00254{width:319.200000pt;}
.w1_c00254{width:319.333333pt;}
.x0_c00254{left:0.000000pt;}
.x73_c00254{left:19.204000pt;}
.x5d_c00254{left:24.128000pt;}
.x58_c00254{left:26.962667pt;}
.x3d_c00254{left:28.160000pt;}
.x3_c00254{left:30.720000pt;}
.x10_c00254{left:34.320000pt;}
.x2d_c00254{left:36.960000pt;}
.x4_c00254{left:41.760000pt;}
.x5e_c00254{left:44.313333pt;}
.x26_c00254{left:47.520000pt;}
.x2e_c00254{left:48.480000pt;}
.x11_c00254{left:49.680000pt;}
.x37_c00254{left:50.640000pt;}
.x4f_c00254{left:52.798667pt;}
.x18_c00254{left:55.200000pt;}
.x41_c00254{left:58.078667pt;}
.x44_c00254{left:64.078667pt;}
.x59_c00254{left:65.134667pt;}
.x21_c00254{left:66.240000pt;}
.x69_c00254{left:68.253333pt;}
.x38_c00254{left:70.080000pt;}
.x54_c00254{left:71.920000pt;}
.x7c_c00254{left:73.054677pt;}
.xb_c00254{left:78.480000pt;}
.x45_c00254{left:79.678667pt;}
.x2f_c00254{left:81.600000pt;}
.x35_c00254{left:83.040000pt;}
.x7f_c00254{left:88.981024pt;}
.x1d_c00254{left:90.960000pt;}
.x3e_c00254{left:93.516000pt;}
.x27_c00254{left:94.560000pt;}
.x70_c00254{left:95.885333pt;}
.x19_c00254{left:98.880000pt;}
.x5_c00254{left:100.560000pt;}
.x36_c00254{left:101.520000pt;}
.x46_c00254{left:102.718667pt;}
.x79_c00254{left:104.505301pt;}
.x63_c00254{left:105.685333pt;}
.x12_c00254{left:106.800000pt;}
.x50_c00254{left:107.758667pt;}
.x6a_c00254{left:109.209333pt;}
.x71_c00254{left:110.884000pt;}
.x66_c00254{left:112.877333pt;}
.x6d_c00254{left:115.201333pt;}
.xc_c00254{left:116.880000pt;}
.x47_c00254{left:118.558667pt;}
.x30_c00254{left:119.760000pt;}
.x13_c00254{left:125.520000pt;}
.x22_c00254{left:127.200000pt;}
.x1a_c00254{left:128.400000pt;}
.x55_c00254{left:130.190667pt;}
.x80_c00254{left:132.509419pt;}
.x28_c00254{left:133.680000pt;}
.x75_c00254{left:136.156000pt;}
.x31_c00254{left:137.760000pt;}
.x5a_c00254{left:140.008000pt;}
.xd_c00254{left:141.360000pt;}
.x39_c00254{left:142.320000pt;}
.x1e_c00254{left:143.520000pt;}
.x6_c00254{left:145.440000pt;}
.x23_c00254{left:146.880000pt;}
.x1_c00254{left:147.840000pt;}
.x14_c00254{left:150.960000pt;}
.x48_c00254{left:152.638667pt;}
.x3a_c00254{left:155.280000pt;}
.x7a_c00254{left:156.574293pt;}
.x4d_c00254{left:162.238667pt;}
.x7_c00254{left:163.440000pt;}
.x49_c00254{left:169.198667pt;}
.x60_c00254{left:170.722667pt;}
.x32_c00254{left:173.520000pt;}
.x76_c00254{left:175.305333pt;}
.x42_c00254{left:178.558667pt;}
.x29_c00254{left:181.440000pt;}
.x72_c00254{left:183.844000pt;}
.x81_c00254{left:184.912533pt;}
.x56_c00254{left:187.354667pt;}
.x15_c00254{left:188.640000pt;}
.x6e_c00254{left:190.081333pt;}
.x5b_c00254{left:191.125333pt;}
.x5f_c00254{left:192.096000pt;}
.x2a_c00254{left:193.920000pt;}
.x67_c00254{left:195.188000pt;}
.x51_c00254{left:196.798667pt;}
.x8_c00254{left:198.960000pt;}
.xe_c00254{left:200.160000pt;}
.x7d_c00254{left:201.699957pt;}
.x33_c00254{left:204.480000pt;}
.x24_c00254{left:207.600000pt;}
.x2b_c00254{left:209.040000pt;}
.x57_c00254{left:210.822667pt;}
.x52_c00254{left:212.158667pt;}
.x1f_c00254{left:213.840000pt;}
.x6b_c00254{left:215.288000pt;}
.x3f_c00254{left:217.076000pt;}
.x6f_c00254{left:218.401333pt;}
.x7b_c00254{left:220.905803pt;}
.x4a_c00254{left:222.718667pt;}
.x1b_c00254{left:223.680000pt;}
.x3b_c00254{left:224.640000pt;}
.x16_c00254{left:226.800000pt;}
.x40_c00254{left:229.062667pt;}
.x64_c00254{left:231.660000pt;}
.x4e_c00254{left:233.278667pt;}
.x20_c00254{left:234.480000pt;}
.x83_c00254{left:236.568244pt;}
.x9_c00254{left:238.080000pt;}
.x82_c00254{left:240.457867pt;}
.x5c_c00254{left:241.762667pt;}
.x43_c00254{left:245.278667pt;}
.x74_c00254{left:246.484000pt;}
.x4b_c00254{left:247.918667pt;}
.x77_c00254{left:250.706667pt;}
.x61_c00254{left:254.546667pt;}
.x2c_c00254{left:256.560000pt;}
.x65_c00254{left:258.822667pt;}
.xf_c00254{left:260.400000pt;}
.x17_c00254{left:262.080000pt;}
.x62_c00254{left:266.788000pt;}
.x68_c00254{left:268.185333pt;}
.x6c_c00254{left:269.333333pt;}
.x7e_c00254{left:271.274315pt;}
.x3c_c00254{left:272.400000pt;}
.x34_c00254{left:273.360000pt;}
.x4c_c00254{left:275.278667pt;}
.x53_c00254{left:276.238667pt;}
.xa_c00254{left:279.120000pt;}
.x1c_c00254{left:280.560000pt;}
.x78_c00254{left:288.294667pt;}
.x2_c00254{left:290.160000pt;}
.x25_c00254{left:292.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00255 {
    display:none;
  }
  .loading-indicator_c00255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00255 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00255 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00255" -> "#page-container .classname_c00255")
 */
.pf_c00255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00255 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00255 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00255 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00255 {overflow:visible;}
  }
}
.c_c00255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00255 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00255:after { /* webkit #35443 */
  content: '';
}
.t_c00255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00255 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00255 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00255 { /* info for Javascript */
  display:none;
}
.l_c00255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00255:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00255 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00255.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdf_c00255{transform:matrix(0.122985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122985,0.000000,0.000000,0.250000,0,0);}
.m70_c00255{transform:matrix(0.131595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131595,0.000000,0.000000,0.250000,0,0);}
.md6_c00255{transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136185,0.000000,0.000000,0.250000,0,0);}
.m7b_c00255{transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);}
.m41_c00255{transform:matrix(0.141915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141915,0.000000,0.000000,0.250000,0,0);}
.mee_c00255{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.mc2_c00255{transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);}
.me5_c00255{transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145705,0.000000,0.000000,0.250000,0,0);}
.m7e_c00255{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.ma1_c00255{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.me9_c00255{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);}
.mc7_c00255{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.m4d_c00255{transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);}
.m76_c00255{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);}
.m61_c00255{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.mb5_c00255{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.mcc_c00255{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.md1_c00255{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.m62_c00255{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.ma4_c00255{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00255{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.m49_c00255{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);}
.ma6_c00255{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.mdd_c00255{transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00255{transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164820,0.000000,0.000000,0.250000,0,0);}
.m57_c00255{transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);}
.me8_c00255{transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m99_c00255{transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.166180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166180,0.000000,0.000000,0.250000,0,0);}
.m74_c00255{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m7f_c00255{transform:matrix(0.167690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167690,0.000000,0.000000,0.250000,0,0);}
.m7c_c00255{transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);}
.mb6_c00255{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.168830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168830,0.000000,0.000000,0.250000,0,0);}
.md2_c00255{transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);}
.mcb_c00255{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.me0_c00255{transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.mde_c00255{transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00255{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m47_c00255{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.mec_c00255{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.mda_c00255{transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171535,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);}
.meb_c00255{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m58_c00255{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173695,0.000000,0.000000,0.250000,0,0);}
.m81_c00255{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.ma8_c00255{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.m8e_c00255{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.mcf_c00255{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mea_c00255{transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);}
.m9c_c00255{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m5c_c00255{transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.178795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178795,0.000000,0.000000,0.250000,0,0);}
.m5e_c00255{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.ma3_c00255{transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);}
.m46_c00255{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.mbf_c00255{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m3b_c00255{transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00255{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.md5_c00255{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m56_c00255{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m48_c00255{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m28_c00255{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00255{transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m72_c00255{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00255{transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00255{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{transform:matrix(0.183940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183940,0.000000,0.000000,0.250000,0,0);}
.mc4_c00255{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.med_c00255{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.mc1_c00255{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.mc9_c00255{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.mba_c00255{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m33_c00255{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);}
.m55_c00255{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00255{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.m93_c00255{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m2d_c00255{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00255{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);}
.m71_c00255{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m9e_c00255{transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00255{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.md7_c00255{transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.m52_c00255{transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.mdb_c00255{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);}
.m5d_c00255{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m94_c00255{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00255{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m45_c00255{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.me1_c00255{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.mcd_c00255{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m4b_c00255{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m53_c00255{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.me3_c00255{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.me2_c00255{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m43_c00255{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m64_c00255{transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);}
.m80_c00255{transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);}
.maf_c00255{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m73_c00255{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.me4_c00255{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00255{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.mc5_c00255{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m89_c00255{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.m75_c00255{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.md3_c00255{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.mc3_c00255{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.m86_c00255{transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m7a_c00255{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m68_c00255{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.md4_c00255{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.mb8_c00255{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m96_c00255{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00255{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m9d_c00255{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m98_c00255{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00255{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m82_c00255{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00255{transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00255{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00255{transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.me7_c00255{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);}
.maa_c00255{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mb7_c00255{transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211865,0.000000,0.000000,0.250000,0,0);}
.me6_c00255{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);}
.m83_c00255{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.mad_c00255{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m7d_c00255{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mac_c00255{transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);}
.mbe_c00255{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);}
.m65_c00255{transform:matrix(0.217445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217445,0.000000,0.000000,0.250000,0,0);}
.m51_c00255{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.md0_c00255{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.mc8_c00255{transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218040,0.000000,0.000000,0.250000,0,0);}
.mae_c00255{transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218865,0.000000,0.000000,0.250000,0,0);}
.mc0_c00255{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m59_c00255{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219690,0.000000,0.000000,0.250000,0,0);}
.m88_c00255{transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);}
.m23_c00255{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mce_c00255{transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);}
.md9_c00255{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m40_c00255{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m6b_c00255{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m63_c00255{transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);}
.m8a_c00255{transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m9b_c00255{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00255{transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m79_c00255{transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225305,0.000000,0.000000,0.250000,0,0);}
.m60_c00255{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.mca_c00255{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.m8c_c00255{transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);}
.m92_c00255{transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);}
.mbd_c00255{transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);}
.m84_c00255{transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m8d_c00255{transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);}
.mbc_c00255{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m37_c00255{transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);}
.m97_c00255{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);}
.m6a_c00255{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md8_c00255{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00255{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.mab_c00255{transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);}
.m4f_c00255{transform:matrix(0.260145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260145,0.000000,0.000000,0.250000,0,0);}
.ma9_c00255{transform:matrix(0.266395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266395,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);}
.mb9_c00255{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m91_c00255{transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);}
.m69_c00255{transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:transparent;}
.fs4_c00255{font-size:59.850000px;}
.fs7_c00255{font-size:60.900000px;}
.fs8_c00255{font-size:61.950000px;}
.fs2_c00255{font-size:63.000000px;}
.fs6_c00255{font-size:64.050000px;}
.fs0_c00255{font-size:65.100000px;}
.fs5_c00255{font-size:66.150000px;}
.fs9_c00255{font-size:67.200000px;}
.fs3_c00255{font-size:68.250000px;}
.fs1_c00255{font-size:69.300000px;}
.fsa_c00255{font-size:73.500000px;}
.y0_c00255{bottom:0.000000px;}
.y38_c00255{bottom:20.793000px;}
.y39_c00255{bottom:21.156000px;}
.y3a_c00255{bottom:21.514500px;}
.y3b_c00255{bottom:22.446000px;}
.y3c_c00255{bottom:23.311500px;}
.y3d_c00255{bottom:23.598000px;}
.y3e_c00255{bottom:24.898500px;}
.y37_c00255{bottom:39.388500px;}
.y36_c00255{bottom:56.016000px;}
.y35_c00255{bottom:73.837500px;}
.y2e_c00255{bottom:89.643000px;}
.y2f_c00255{bottom:90.192000px;}
.y30_c00255{bottom:90.408000px;}
.y31_c00255{bottom:90.871500px;}
.y32_c00255{bottom:91.099500px;}
.y33_c00255{bottom:91.393500px;}
.y34_c00255{bottom:92.338500px;}
.y28_c00255{bottom:106.924500px;}
.y29_c00255{bottom:107.695500px;}
.y2a_c00255{bottom:108.045000px;}
.y2b_c00255{bottom:109.201500px;}
.y2c_c00255{bottom:109.531500px;}
.y2d_c00255{bottom:109.930500px;}
.y20_c00255{bottom:124.204500px;}
.y21_c00255{bottom:125.011500px;}
.y22_c00255{bottom:125.241000px;}
.y23_c00255{bottom:125.874000px;}
.y24_c00255{bottom:126.111000px;}
.y25_c00255{bottom:126.637500px;}
.y26_c00255{bottom:126.874500px;}
.y27_c00255{bottom:127.359000px;}
.y1f_c00255{bottom:143.377500px;}
.y1e_c00255{bottom:160.863000px;}
.y1d_c00255{bottom:178.065000px;}
.y1c_c00255{bottom:195.391500px;}
.y1b_c00255{bottom:213.244500px;}
.y1a_c00255{bottom:231.183000px;}
.y19_c00255{bottom:248.043000px;}
.y18_c00255{bottom:264.841500px;}
.y17_c00255{bottom:281.467500px;}
.y16_c00255{bottom:298.561500px;}
.y10_c00255{bottom:314.823000px;}
.y11_c00255{bottom:315.447000px;}
.y12_c00255{bottom:315.682500px;}
.y13_c00255{bottom:316.426500px;}
.y14_c00255{bottom:316.732500px;}
.y15_c00255{bottom:317.418000px;}
.yf_c00255{bottom:333.451500px;}
.ye_c00255{bottom:351.004500px;}
.yd_c00255{bottom:368.404500px;}
.yc_c00255{bottom:385.621500px;}
.yb_c00255{bottom:401.166000px;}
.ya_c00255{bottom:419.916000px;}
.y9_c00255{bottom:437.386500px;}
.y8_c00255{bottom:454.029000px;}
.y7_c00255{bottom:472.020000px;}
.y6_c00255{bottom:488.728500px;}
.y5_c00255{bottom:506.187000px;}
.y4_c00255{bottom:522.666000px;}
.y3_c00255{bottom:540.522000px;}
.y2_c00255{bottom:556.470000px;}
.y1_c00255{bottom:573.348000px;}
.h6_c00255{height:59.850000px;}
.h9_c00255{height:60.900000px;}
.ha_c00255{height:61.950000px;}
.h4_c00255{height:63.000000px;}
.h8_c00255{height:64.050000px;}
.h2_c00255{height:65.100000px;}
.h7_c00255{height:66.150000px;}
.hb_c00255{height:67.200000px;}
.h5_c00255{height:68.250000px;}
.h3_c00255{height:69.300000px;}
.hc_c00255{height:73.500000px;}
.h1_c00255{height:618.750000px;}
.h0_c00255{height:619.050000px;}
.w0_c00255{width:359.100000px;}
.w1_c00255{width:359.250000px;}
.x0_c00255{left:0.000000px;}
.x3c_c00255{left:38.610000px;}
.x2_c00255{left:39.690000px;}
.x7a_c00255{left:41.446500px;}
.x65_c00255{left:42.930000px;}
.x5f_c00255{left:54.540000px;}
.x25_c00255{left:56.970000px;}
.x53_c00255{left:63.720000px;}
.x32_c00255{left:67.230000px;}
.x66_c00255{left:68.310000px;}
.x4c_c00255{left:69.930000px;}
.x60_c00255{left:71.820000px;}
.x3d_c00255{left:73.710000px;}
.x3_c00255{left:77.760000px;}
.x5c_c00255{left:79.920000px;}
.x2c_c00255{left:81.540000px;}
.x1a_c00255{left:83.970000px;}
.x47_c00255{left:85.860000px;}
.x78_c00255{left:89.241000px;}
.x56_c00255{left:90.990000px;}
.x61_c00255{left:93.690000px;}
.xe_c00255{left:98.820000px;}
.x26_c00255{left:99.900000px;}
.x50_c00255{left:101.371500px;}
.x38_c00255{left:103.680000px;}
.x1f_c00255{left:105.030000px;}
.x1b_c00255{left:106.110000px;}
.x57_c00255{left:108.810000px;}
.x41_c00255{left:111.240000px;}
.x75_c00255{left:112.687500px;}
.x27_c00255{left:115.020000px;}
.x4d_c00255{left:117.450000px;}
.x73_c00255{left:118.800000px;}
.xf_c00255{left:119.880000px;}
.x9_c00255{left:120.960000px;}
.x2d_c00255{left:122.040000px;}
.x48_c00255{left:124.740000px;}
.x54_c00255{left:128.250000px;}
.x3e_c00255{left:133.110000px;}
.x14_c00255{left:138.510000px;}
.x6d_c00255{left:140.130000px;}
.x79_c00255{left:141.480000px;}
.xa_c00255{left:143.910000px;}
.x39_c00255{left:145.260000px;}
.x28_c00255{left:149.040000px;}
.x33_c00255{left:151.200000px;}
.x49_c00255{left:160.110000px;}
.x4_c00255{left:163.080000px;}
.x20_c00255{left:164.430000px;}
.x15_c00255{left:165.780000px;}
.x55_c00255{left:169.290000px;}
.x34_c00255{left:171.450000px;}
.x1_c00255{left:173.880000px;}
.x5a_c00255{left:176.850000px;}
.x2e_c00255{left:178.470000px;}
.x3f_c00255{left:179.550000px;}
.x42_c00255{left:182.520000px;}
.x5_c00255{left:186.030000px;}
.x10_c00255{left:187.110000px;}
.x58_c00255{left:191.430000px;}
.x16_c00255{left:195.210000px;}
.x11_c00255{left:198.990000px;}
.x1c_c00255{left:200.610000px;}
.x6a_c00255{left:201.960000px;}
.x64_c00255{left:203.580000px;}
.x2f_c00255{left:204.930000px;}
.x6e_c00255{left:207.360000px;}
.x67_c00255{left:209.520000px;}
.x29_c00255{left:211.140000px;}
.x76_c00255{left:212.566500px;}
.x21_c00255{left:214.650000px;}
.xb_c00255{left:216.000000px;}
.x35_c00255{left:221.670000px;}
.x43_c00255{left:224.370000px;}
.x4a_c00255{left:225.720000px;}
.x17_c00255{left:227.610000px;}
.x5d_c00255{left:228.690000px;}
.x51_c00255{left:229.888500px;}
.x3a_c00255{left:231.390000px;}
.x22_c00255{left:234.090000px;}
.x6f_c00255{left:235.170000px;}
.x36_c00255{left:241.380000px;}
.x5b_c00255{left:244.350000px;}
.x6_c00255{left:245.430000px;}
.x44_c00255{left:246.510000px;}
.x6b_c00255{left:248.940000px;}
.x4e_c00255{left:252.450000px;}
.x2a_c00255{left:257.850000px;}
.x7_c00255{left:260.550000px;}
.x45_c00255{left:263.250000px;}
.x30_c00255{left:264.870000px;}
.x68_c00255{left:265.950000px;}
.x40_c00255{left:267.570000px;}
.x1d_c00255{left:268.650000px;}
.x5e_c00255{left:270.540000px;}
.x6c_c00255{left:271.890000px;}
.x31_c00255{left:275.940000px;}
.x18_c00255{left:278.100000px;}
.x4f_c00255{left:279.990000px;}
.x62_c00255{left:281.610000px;}
.xc_c00255{left:282.960000px;}
.x37_c00255{left:285.390000px;}
.x70_c00255{left:287.280000px;}
.x12_c00255{left:288.630000px;}
.x77_c00255{left:290.160000px;}
.x46_c00255{left:294.030000px;}
.xd_c00255{left:296.460000px;}
.x52_c00255{left:298.443000px;}
.x71_c00255{left:299.970000px;}
.x19_c00255{left:301.590000px;}
.x63_c00255{left:303.480000px;}
.x59_c00255{left:306.450000px;}
.x74_c00255{left:308.610000px;}
.x23_c00255{left:311.040000px;}
.x13_c00255{left:312.390000px;}
.x4b_c00255{left:314.550000px;}
.x69_c00255{left:317.520000px;}
.x72_c00255{left:319.410000px;}
.x3b_c00255{left:322.380000px;}
.x2b_c00255{left:323.460000px;}
.x8_c00255{left:325.620000px;}
.x24_c00255{left:328.050000px;}
.x1e_c00255{left:331.290000px;}
.x7b_c00255{left:334.714500px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs4_c00255{font-size:53.200000pt;}
.fs7_c00255{font-size:54.133333pt;}
.fs8_c00255{font-size:55.066667pt;}
.fs2_c00255{font-size:56.000000pt;}
.fs6_c00255{font-size:56.933333pt;}
.fs0_c00255{font-size:57.866667pt;}
.fs5_c00255{font-size:58.800000pt;}
.fs9_c00255{font-size:59.733333pt;}
.fs3_c00255{font-size:60.666667pt;}
.fs1_c00255{font-size:61.600000pt;}
.fsa_c00255{font-size:65.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y38_c00255{bottom:18.482667pt;}
.y39_c00255{bottom:18.805333pt;}
.y3a_c00255{bottom:19.124000pt;}
.y3b_c00255{bottom:19.952000pt;}
.y3c_c00255{bottom:20.721333pt;}
.y3d_c00255{bottom:20.976000pt;}
.y3e_c00255{bottom:22.132000pt;}
.y37_c00255{bottom:35.012000pt;}
.y36_c00255{bottom:49.792000pt;}
.y35_c00255{bottom:65.633333pt;}
.y2e_c00255{bottom:79.682667pt;}
.y2f_c00255{bottom:80.170667pt;}
.y30_c00255{bottom:80.362667pt;}
.y31_c00255{bottom:80.774667pt;}
.y32_c00255{bottom:80.977333pt;}
.y33_c00255{bottom:81.238667pt;}
.y34_c00255{bottom:82.078667pt;}
.y28_c00255{bottom:95.044000pt;}
.y29_c00255{bottom:95.729333pt;}
.y2a_c00255{bottom:96.040000pt;}
.y2b_c00255{bottom:97.068000pt;}
.y2c_c00255{bottom:97.361333pt;}
.y2d_c00255{bottom:97.716000pt;}
.y20_c00255{bottom:110.404000pt;}
.y21_c00255{bottom:111.121333pt;}
.y22_c00255{bottom:111.325333pt;}
.y23_c00255{bottom:111.888000pt;}
.y24_c00255{bottom:112.098667pt;}
.y25_c00255{bottom:112.566667pt;}
.y26_c00255{bottom:112.777333pt;}
.y27_c00255{bottom:113.208000pt;}
.y1f_c00255{bottom:127.446667pt;}
.y1e_c00255{bottom:142.989333pt;}
.y1d_c00255{bottom:158.280000pt;}
.y1c_c00255{bottom:173.681333pt;}
.y1b_c00255{bottom:189.550667pt;}
.y1a_c00255{bottom:205.496000pt;}
.y19_c00255{bottom:220.482667pt;}
.y18_c00255{bottom:235.414667pt;}
.y17_c00255{bottom:250.193333pt;}
.y16_c00255{bottom:265.388000pt;}
.y10_c00255{bottom:279.842667pt;}
.y11_c00255{bottom:280.397333pt;}
.y12_c00255{bottom:280.606667pt;}
.y13_c00255{bottom:281.268000pt;}
.y14_c00255{bottom:281.540000pt;}
.y15_c00255{bottom:282.149333pt;}
.yf_c00255{bottom:296.401333pt;}
.ye_c00255{bottom:312.004000pt;}
.yd_c00255{bottom:327.470667pt;}
.yc_c00255{bottom:342.774667pt;}
.yb_c00255{bottom:356.592000pt;}
.ya_c00255{bottom:373.258667pt;}
.y9_c00255{bottom:388.788000pt;}
.y8_c00255{bottom:403.581333pt;}
.y7_c00255{bottom:419.573333pt;}
.y6_c00255{bottom:434.425333pt;}
.y5_c00255{bottom:449.944000pt;}
.y4_c00255{bottom:464.592000pt;}
.y3_c00255{bottom:480.464000pt;}
.y2_c00255{bottom:494.640000pt;}
.y1_c00255{bottom:509.642667pt;}
.h6_c00255{height:53.200000pt;}
.h9_c00255{height:54.133333pt;}
.ha_c00255{height:55.066667pt;}
.h4_c00255{height:56.000000pt;}
.h8_c00255{height:56.933333pt;}
.h2_c00255{height:57.866667pt;}
.h7_c00255{height:58.800000pt;}
.hb_c00255{height:59.733333pt;}
.h5_c00255{height:60.666667pt;}
.h3_c00255{height:61.600000pt;}
.hc_c00255{height:65.333333pt;}
.h1_c00255{height:550.000000pt;}
.h0_c00255{height:550.266667pt;}
.w0_c00255{width:319.200000pt;}
.w1_c00255{width:319.333333pt;}
.x0_c00255{left:0.000000pt;}
.x3c_c00255{left:34.320000pt;}
.x2_c00255{left:35.280000pt;}
.x7a_c00255{left:36.841333pt;}
.x65_c00255{left:38.160000pt;}
.x5f_c00255{left:48.480000pt;}
.x25_c00255{left:50.640000pt;}
.x53_c00255{left:56.640000pt;}
.x32_c00255{left:59.760000pt;}
.x66_c00255{left:60.720000pt;}
.x4c_c00255{left:62.160000pt;}
.x60_c00255{left:63.840000pt;}
.x3d_c00255{left:65.520000pt;}
.x3_c00255{left:69.120000pt;}
.x5c_c00255{left:71.040000pt;}
.x2c_c00255{left:72.480000pt;}
.x1a_c00255{left:74.640000pt;}
.x47_c00255{left:76.320000pt;}
.x78_c00255{left:79.325333pt;}
.x56_c00255{left:80.880000pt;}
.x61_c00255{left:83.280000pt;}
.xe_c00255{left:87.840000pt;}
.x26_c00255{left:88.800000pt;}
.x50_c00255{left:90.108000pt;}
.x38_c00255{left:92.160000pt;}
.x1f_c00255{left:93.360000pt;}
.x1b_c00255{left:94.320000pt;}
.x57_c00255{left:96.720000pt;}
.x41_c00255{left:98.880000pt;}
.x75_c00255{left:100.166667pt;}
.x27_c00255{left:102.240000pt;}
.x4d_c00255{left:104.400000pt;}
.x73_c00255{left:105.600000pt;}
.xf_c00255{left:106.560000pt;}
.x9_c00255{left:107.520000pt;}
.x2d_c00255{left:108.480000pt;}
.x48_c00255{left:110.880000pt;}
.x54_c00255{left:114.000000pt;}
.x3e_c00255{left:118.320000pt;}
.x14_c00255{left:123.120000pt;}
.x6d_c00255{left:124.560000pt;}
.x79_c00255{left:125.760000pt;}
.xa_c00255{left:127.920000pt;}
.x39_c00255{left:129.120000pt;}
.x28_c00255{left:132.480000pt;}
.x33_c00255{left:134.400000pt;}
.x49_c00255{left:142.320000pt;}
.x4_c00255{left:144.960000pt;}
.x20_c00255{left:146.160000pt;}
.x15_c00255{left:147.360000pt;}
.x55_c00255{left:150.480000pt;}
.x34_c00255{left:152.400000pt;}
.x1_c00255{left:154.560000pt;}
.x5a_c00255{left:157.200000pt;}
.x2e_c00255{left:158.640000pt;}
.x3f_c00255{left:159.600000pt;}
.x42_c00255{left:162.240000pt;}
.x5_c00255{left:165.360000pt;}
.x10_c00255{left:166.320000pt;}
.x58_c00255{left:170.160000pt;}
.x16_c00255{left:173.520000pt;}
.x11_c00255{left:176.880000pt;}
.x1c_c00255{left:178.320000pt;}
.x6a_c00255{left:179.520000pt;}
.x64_c00255{left:180.960000pt;}
.x2f_c00255{left:182.160000pt;}
.x6e_c00255{left:184.320000pt;}
.x67_c00255{left:186.240000pt;}
.x29_c00255{left:187.680000pt;}
.x76_c00255{left:188.948000pt;}
.x21_c00255{left:190.800000pt;}
.xb_c00255{left:192.000000pt;}
.x35_c00255{left:197.040000pt;}
.x43_c00255{left:199.440000pt;}
.x4a_c00255{left:200.640000pt;}
.x17_c00255{left:202.320000pt;}
.x5d_c00255{left:203.280000pt;}
.x51_c00255{left:204.345333pt;}
.x3a_c00255{left:205.680000pt;}
.x22_c00255{left:208.080000pt;}
.x6f_c00255{left:209.040000pt;}
.x36_c00255{left:214.560000pt;}
.x5b_c00255{left:217.200000pt;}
.x6_c00255{left:218.160000pt;}
.x44_c00255{left:219.120000pt;}
.x6b_c00255{left:221.280000pt;}
.x4e_c00255{left:224.400000pt;}
.x2a_c00255{left:229.200000pt;}
.x7_c00255{left:231.600000pt;}
.x45_c00255{left:234.000000pt;}
.x30_c00255{left:235.440000pt;}
.x68_c00255{left:236.400000pt;}
.x40_c00255{left:237.840000pt;}
.x1d_c00255{left:238.800000pt;}
.x5e_c00255{left:240.480000pt;}
.x6c_c00255{left:241.680000pt;}
.x31_c00255{left:245.280000pt;}
.x18_c00255{left:247.200000pt;}
.x4f_c00255{left:248.880000pt;}
.x62_c00255{left:250.320000pt;}
.xc_c00255{left:251.520000pt;}
.x37_c00255{left:253.680000pt;}
.x70_c00255{left:255.360000pt;}
.x12_c00255{left:256.560000pt;}
.x77_c00255{left:257.920000pt;}
.x46_c00255{left:261.360000pt;}
.xd_c00255{left:263.520000pt;}
.x52_c00255{left:265.282667pt;}
.x71_c00255{left:266.640000pt;}
.x19_c00255{left:268.080000pt;}
.x63_c00255{left:269.760000pt;}
.x59_c00255{left:272.400000pt;}
.x74_c00255{left:274.320000pt;}
.x23_c00255{left:276.480000pt;}
.x13_c00255{left:277.680000pt;}
.x4b_c00255{left:279.600000pt;}
.x69_c00255{left:282.240000pt;}
.x72_c00255{left:283.920000pt;}
.x3b_c00255{left:286.560000pt;}
.x2b_c00255{left:287.520000pt;}
.x8_c00255{left:289.440000pt;}
.x24_c00255{left:291.600000pt;}
.x1e_c00255{left:294.480000pt;}
.x7b_c00255{left:297.524000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00256 {
    display:none;
  }
  .loading-indicator_c00256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00256 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00256 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00256" -> "#page-container .classname_c00256")
 */
.pf_c00256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00256 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00256 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00256 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00256 {overflow:visible;}
  }
}
.c_c00256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00256 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00256:after { /* webkit #35443 */
  content: '';
}
.t_c00256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00256 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00256 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00256 { /* info for Javascript */
  display:none;
}
.l_c00256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00256:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00256 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00256.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.013280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013280,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.103180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103180,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.116080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116080,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.121630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121630,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.140785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140785,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.142920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142920,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);}
.mc5_c00256{transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157480,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.157935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157935,0.000000,0.000000,0.250000,0,0);}
.ma7_c00256{transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m4a_c00256{transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mb8_c00256{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.mb0_c00256{transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00256{transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00256{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);}
.mf8_c00256{transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);}
.md2_c00256{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.ma5_c00256{transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);}
.me7_c00256{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.mee_c00256{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.maa_c00256{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m54_c00256{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.mf9_c00256{transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m2d_c00256{transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);}
.m9e_c00256{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.m23_c00256{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.mc9_c00256{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00256{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.mf5_c00256{transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174845,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);}
.mf3_c00256{transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176440,0.000000,0.000000,0.250000,0,0);}
.me2_c00256{transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);}
.me0_c00256{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me4_c00256{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);}
.mce_c00256{transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);}
.ma9_c00256{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.mae_c00256{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.mc7_c00256{transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m9f_c00256{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00256{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.me8_c00256{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00256{transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);}
.m94_c00256{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);}
.mbe_c00256{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.md1_c00256{transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);}
.m73_c00256{transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);}
.ma1_c00256{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00256{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.mb7_c00256{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00256{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);}
.mf4_c00256{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m6f_c00256{transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);}
.m91_c00256{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.mc3_c00256{transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.ma3_c00256{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);}
.m7a_c00256{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m92_c00256{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m5e_c00256{transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194645,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);}
.m95_c00256{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.md6_c00256{transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00256{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);}
.m53_c00256{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mab_c00256{transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);}
.mfa_c00256{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.mc4_c00256{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.ma8_c00256{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);}
.m70_c00256{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m97_c00256{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m67_c00256{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);}
.mcb_c00256{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.mf6_c00256{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.mf7_c00256{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.md0_c00256{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202270,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.mca_c00256{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.mb1_c00256{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.me3_c00256{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);}
.me1_c00256{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);}
.mda_c00256{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);}
.mef_c00256{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.mc0_c00256{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m56_c00256{transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);}
.mc1_c00256{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m98_c00256{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.mb4_c00256{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m7b_c00256{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);}
.mf0_c00256{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.m55_c00256{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.mc2_c00256{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00256{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.ma2_c00256{transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);}
.m8f_c00256{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.m46_c00256{transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m99_c00256{transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);}
.mb2_c00256{transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00256{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.md7_c00256{transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);}
.maf_c00256{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m96_c00256{transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);}
.m9d_c00256{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.md3_c00256{transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);}
.md9_c00256{transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);}
.mdd_c00256{transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);}
.mac_c00256{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.me5_c00256{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);}
.ma0_c00256{transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);}
.mad_c00256{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m9b_c00256{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);}
.med_c00256{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.mba_c00256{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mb5_c00256{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.md4_c00256{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);}
.mbc_c00256{transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229520,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231315,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);}
.mb6_c00256{transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);}
.meb_c00256{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m9a_c00256{transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);}
.me9_c00256{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.mb3_c00256{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);}
.md8_c00256{transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241060,0.000000,0.000000,0.250000,0,0);}
.m82_c00256{transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);}
.mdc_c00256{transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);}
.mf1_c00256{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.mea_c00256{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.mdb_c00256{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.m93_c00256{transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);}
.mb9_c00256{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.mcc_c00256{transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);}
.m47_c00256{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.270140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270140,0.000000,0.000000,0.250000,0,0);}
.mec_c00256{transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);}
.m43_c00256{transform:matrix(0.292335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292335,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);}
.md5_c00256{transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);}
.m30_c00256{transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);}
.mbf_c00256{transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.390060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390060,0.000000,0.000000,0.250000,0,0);}
.me6_c00256{transform:matrix(0.484845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484845,0.000000,0.000000,0.250000,0,0);}
.mdf_c00256{transform:matrix(0.530485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530485,0.000000,0.000000,0.250000,0,0);}
.mde_c00256{transform:matrix(0.563045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563045,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:0.000000px;}
.fc0_c00256{color:transparent;}
.fsf_c00256{font-size:51.450000px;}
.fsb_c00256{font-size:54.600000px;}
.fse_c00256{font-size:58.800000px;}
.fs4_c00256{font-size:59.850000px;}
.fs8_c00256{font-size:60.900000px;}
.fs9_c00256{font-size:61.950000px;}
.fs2_c00256{font-size:63.000000px;}
.fs7_c00256{font-size:64.050000px;}
.fsa_c00256{font-size:65.100000px;}
.fs5_c00256{font-size:66.150000px;}
.fsd_c00256{font-size:67.200000px;}
.fsc_c00256{font-size:68.250000px;}
.fs1_c00256{font-size:69.300000px;}
.fs10_c00256{font-size:70.350000px;}
.fs3_c00256{font-size:72.450000px;}
.fs6_c00256{font-size:74.550000px;}
.fs0_c00256{font-size:130.200000px;}
.y0_c00256{bottom:0.000000px;}
.y57_c00256{bottom:27.442500px;}
.y56_c00256{bottom:27.981000px;}
.y55_c00256{bottom:28.183500px;}
.y54_c00256{bottom:29.115000px;}
.y53_c00256{bottom:29.539500px;}
.y52_c00256{bottom:29.815500px;}
.y51_c00256{bottom:31.053000px;}
.y50_c00256{bottom:42.120000px;}
.y4f_c00256{bottom:61.767000px;}
.y4e_c00256{bottom:77.968500px;}
.y4d_c00256{bottom:95.517000px;}
.y4c_c00256{bottom:113.293500px;}
.y43_c00256{bottom:126.903000px;}
.y44_c00256{bottom:127.291500px;}
.y45_c00256{bottom:127.671000px;}
.y46_c00256{bottom:127.905000px;}
.y47_c00256{bottom:128.175000px;}
.y48_c00256{bottom:128.644500px;}
.y49_c00256{bottom:129.090000px;}
.y4a_c00256{bottom:129.417000px;}
.y4b_c00256{bottom:129.699000px;}
.y42_c00256{bottom:147.031500px;}
.y41_c00256{bottom:163.890000px;}
.y40_c00256{bottom:179.572500px;}
.y3f_c00256{bottom:198.561000px;}
.y3e_c00256{bottom:215.269500px;}
.y3d_c00256{bottom:215.448000px;}
.y3c_c00256{bottom:216.172500px;}
.y3b_c00256{bottom:216.487500px;}
.y3a_c00256{bottom:217.215000px;}
.y39_c00256{bottom:217.354500px;}
.y38_c00256{bottom:217.891500px;}
.y37_c00256{bottom:233.428500px;}
.y36_c00256{bottom:250.770000px;}
.y35_c00256{bottom:267.810000px;}
.y34_c00256{bottom:285.355500px;}
.y33_c00256{bottom:302.701500px;}
.y32_c00256{bottom:320.134500px;}
.y31_c00256{bottom:337.024500px;}
.y30_c00256{bottom:353.136000px;}
.y2f_c00256{bottom:370.891500px;}
.y26_c00256{bottom:385.020000px;}
.y27_c00256{bottom:385.435500px;}
.y28_c00256{bottom:385.744500px;}
.y29_c00256{bottom:386.254500px;}
.y2a_c00256{bottom:386.748000px;}
.y2b_c00256{bottom:386.889000px;}
.y2c_c00256{bottom:387.369000px;}
.y2d_c00256{bottom:387.664500px;}
.y2e_c00256{bottom:387.823500px;}
.y25_c00256{bottom:403.080000px;}
.y24_c00256{bottom:421.620000px;}
.y1d_c00256{bottom:436.051500px;}
.y1e_c00256{bottom:436.828500px;}
.y1f_c00256{bottom:437.020500px;}
.y20_c00256{bottom:437.205000px;}
.y21_c00256{bottom:437.968500px;}
.y22_c00256{bottom:438.729000px;}
.y23_c00256{bottom:438.948000px;}
.y1c_c00256{bottom:454.798500px;}
.y1b_c00256{bottom:471.540000px;}
.y1a_c00256{bottom:489.717000px;}
.y12_c00256{bottom:504.361500px;}
.y13_c00256{bottom:505.059000px;}
.y14_c00256{bottom:505.522500px;}
.y15_c00256{bottom:505.740000px;}
.y16_c00256{bottom:506.809500px;}
.y17_c00256{bottom:507.186000px;}
.y18_c00256{bottom:507.406500px;}
.y19_c00256{bottom:507.762000px;}
.ya_c00256{bottom:520.563000px;}
.yb_c00256{bottom:521.737500px;}
.yc_c00256{bottom:522.118500px;}
.yd_c00256{bottom:522.669000px;}
.ye_c00256{bottom:523.623000px;}
.yf_c00256{bottom:523.917000px;}
.y10_c00256{bottom:524.266500px;}
.y11_c00256{bottom:524.841000px;}
.y3_c00256{bottom:538.651500px;}
.y4_c00256{bottom:539.634000px;}
.y5_c00256{bottom:539.917500px;}
.y6_c00256{bottom:540.918000px;}
.y7_c00256{bottom:541.123500px;}
.y8_c00256{bottom:541.683000px;}
.y9_c00256{bottom:542.008500px;}
.y2_c00256{bottom:559.009500px;}
.y1_c00256{bottom:571.399500px;}
.h11_c00256{height:51.450000px;}
.hd_c00256{height:54.600000px;}
.h10_c00256{height:58.800000px;}
.h6_c00256{height:59.850000px;}
.ha_c00256{height:60.900000px;}
.hb_c00256{height:61.950000px;}
.h4_c00256{height:63.000000px;}
.h9_c00256{height:64.050000px;}
.hc_c00256{height:65.100000px;}
.h7_c00256{height:66.150000px;}
.hf_c00256{height:67.200000px;}
.he_c00256{height:68.250000px;}
.h3_c00256{height:69.300000px;}
.h12_c00256{height:70.350000px;}
.h5_c00256{height:72.450000px;}
.h8_c00256{height:74.550000px;}
.h2_c00256{height:130.200000px;}
.h1_c00256{height:618.750000px;}
.h0_c00256{height:619.050000px;}
.w0_c00256{width:359.100000px;}
.w1_c00256{width:359.250000px;}
.x0_c00256{left:0.000000px;}
.x51_c00256{left:34.555500px;}
.x6d_c00256{left:35.913000px;}
.x4_c00256{left:37.800000px;}
.x56_c00256{left:38.875500px;}
.x68_c00256{left:40.452000px;}
.x77_c00256{left:41.583000px;}
.x5d_c00256{left:48.057000px;}
.x42_c00256{left:50.215500px;}
.x4b_c00256{left:55.885500px;}
.x34_c00256{left:61.827000px;}
.x57_c00256{left:63.715500px;}
.x5_c00256{left:65.070000px;}
.x43_c00256{left:67.495500px;}
.x6e_c00256{left:71.553000px;}
.x1_c00256{left:74.520000px;}
.x5e_c00256{left:76.407000px;}
.x3b_c00256{left:78.654000px;}
.x25_c00256{left:80.188500px;}
.x30_c00256{left:82.077000px;}
.x1d_c00256{left:86.128500px;}
.x40_c00256{left:88.285500px;}
.x17_c00256{left:92.161500px;}
.x46_c00256{left:95.305500px;}
.x62_c00256{left:97.740000px;}
.x26_c00256{left:100.708500px;}
.x2a_c00256{left:101.788500px;}
.x6f_c00256{left:102.873000px;}
.x71_c00256{left:104.223000px;}
.x1e_c00256{left:106.378500px;}
.x11_c00256{left:107.398500px;}
.xc_c00256{left:108.703500px;}
.x69_c00256{left:110.308500px;}
.x35_c00256{left:112.047000px;}
.x2c_c00256{left:115.353000px;}
.x6_c00256{left:116.640000px;}
.x47_c00256{left:117.715500px;}
.x4d_c00256{left:118.795500px;}
.x27_c00256{left:120.418500px;}
.x58_c00256{left:125.815500px;}
.x18_c00256{left:127.869000px;}
.xd_c00256{left:128.971500px;}
.x5f_c00256{left:130.680000px;}
.x2d_c00256{left:134.526000px;}
.x78_c00256{left:137.703000px;}
.x7a_c00256{left:139.320000px;}
.x44_c00256{left:143.095500px;}
.x19_c00256{left:144.627000px;}
.x1f_c00256{left:147.148500px;}
.x7d_c00256{left:148.179000px;}
.x63_c00256{left:150.930000px;}
.x2e_c00256{left:152.943000px;}
.x7_c00256{left:156.870000px;}
.x20_c00256{left:160.378500px;}
.x12_c00256{left:162.220500px;}
.x31_c00256{left:165.237000px;}
.x7e_c00256{left:166.546500px;}
.x52_c00256{left:167.665500px;}
.x36_c00256{left:170.097000px;}
.x2_c00256{left:171.720000px;}
.x70_c00256{left:173.613000px;}
.x48_c00256{left:174.955500px;}
.x28_c00256{left:178.738500px;}
.x8_c00256{left:180.090000px;}
.x32_c00256{left:181.707000px;}
.x41_c00256{left:185.485500px;}
.x37_c00256{left:188.187000px;}
.x76_c00256{left:189.543000px;}
.x21_c00256{left:190.618500px;}
.x5b_c00256{left:193.585500px;}
.x5c_c00256{left:195.652500px;}
.x4e_c00256{left:196.825500px;}
.x6a_c00256{left:198.841500px;}
.xe_c00256{left:200.446500px;}
.x72_c00256{left:203.853000px;}
.x4c_c00256{left:205.195500px;}
.x49_c00256{left:206.815500px;}
.x66_c00256{left:208.710000px;}
.x3c_c00256{left:209.893500px;}
.x60_c00256{left:212.760000px;}
.x79_c00256{left:213.843000px;}
.xf_c00256{left:215.091000px;}
.x13_c00256{left:218.332500px;}
.x3d_c00256{left:223.948500px;}
.x61_c00256{left:225.720000px;}
.x1a_c00256{left:226.914000px;}
.x73_c00256{left:228.423000px;}
.x29_c00256{left:229.498500px;}
.x67_c00256{left:230.850000px;}
.x38_c00256{left:232.197000px;}
.x4f_c00256{left:234.085500px;}
.x14_c00256{left:235.653000px;}
.x6b_c00256{left:239.343000px;}
.x45_c00256{left:244.885500px;}
.x59_c00256{left:249.745500px;}
.x39_c00256{left:252.717000px;}
.x10_c00256{left:255.051000px;}
.x15_c00256{left:256.171500px;}
.x33_c00256{left:257.577000px;}
.x9_c00256{left:258.660000px;}
.x7b_c00256{left:260.010000px;}
.x22_c00256{left:262.438500px;}
.x4a_c00256{left:266.755500px;}
.x6c_c00256{left:269.043000px;}
.x7f_c00256{left:270.415500px;}
.x1b_c00256{left:272.799000px;}
.x53_c00256{left:274.315500px;}
.x64_c00256{left:275.670000px;}
.x3_c00256{left:278.100000px;}
.x50_c00256{left:282.955500px;}
.x74_c00256{left:285.663000px;}
.x16_c00256{left:289.935000px;}
.x54_c00256{left:293.755500px;}
.x5a_c00256{left:296.455500px;}
.xa_c00256{left:297.540000px;}
.x1c_c00256{left:300.138000px;}
.x3e_c00256{left:301.435500px;}
.x7c_c00256{left:302.670000px;}
.x2b_c00256{left:305.368500px;}
.x23_c00256{left:308.878500px;}
.xb_c00256{left:316.170000px;}
.x3f_c00256{left:317.317500px;}
.x75_c00256{left:323.193000px;}
.x55_c00256{left:324.265500px;}
.x24_c00256{left:325.618500px;}
.x2f_c00256{left:327.361500px;}
.x65_c00256{left:328.860000px;}
.x3a_c00256{left:330.747000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.fsf_c00256{font-size:45.733333pt;}
.fsb_c00256{font-size:48.533333pt;}
.fse_c00256{font-size:52.266667pt;}
.fs4_c00256{font-size:53.200000pt;}
.fs8_c00256{font-size:54.133333pt;}
.fs9_c00256{font-size:55.066667pt;}
.fs2_c00256{font-size:56.000000pt;}
.fs7_c00256{font-size:56.933333pt;}
.fsa_c00256{font-size:57.866667pt;}
.fs5_c00256{font-size:58.800000pt;}
.fsd_c00256{font-size:59.733333pt;}
.fsc_c00256{font-size:60.666667pt;}
.fs1_c00256{font-size:61.600000pt;}
.fs10_c00256{font-size:62.533333pt;}
.fs3_c00256{font-size:64.400000pt;}
.fs6_c00256{font-size:66.266667pt;}
.fs0_c00256{font-size:115.733333pt;}
.y0_c00256{bottom:0.000000pt;}
.y57_c00256{bottom:24.393333pt;}
.y56_c00256{bottom:24.872000pt;}
.y55_c00256{bottom:25.052000pt;}
.y54_c00256{bottom:25.880000pt;}
.y53_c00256{bottom:26.257333pt;}
.y52_c00256{bottom:26.502667pt;}
.y51_c00256{bottom:27.602667pt;}
.y50_c00256{bottom:37.440000pt;}
.y4f_c00256{bottom:54.904000pt;}
.y4e_c00256{bottom:69.305333pt;}
.y4d_c00256{bottom:84.904000pt;}
.y4c_c00256{bottom:100.705333pt;}
.y43_c00256{bottom:112.802667pt;}
.y44_c00256{bottom:113.148000pt;}
.y45_c00256{bottom:113.485333pt;}
.y46_c00256{bottom:113.693333pt;}
.y47_c00256{bottom:113.933333pt;}
.y48_c00256{bottom:114.350667pt;}
.y49_c00256{bottom:114.746667pt;}
.y4a_c00256{bottom:115.037333pt;}
.y4b_c00256{bottom:115.288000pt;}
.y42_c00256{bottom:130.694667pt;}
.y41_c00256{bottom:145.680000pt;}
.y40_c00256{bottom:159.620000pt;}
.y3f_c00256{bottom:176.498667pt;}
.y3e_c00256{bottom:191.350667pt;}
.y3d_c00256{bottom:191.509333pt;}
.y3c_c00256{bottom:192.153333pt;}
.y3b_c00256{bottom:192.433333pt;}
.y3a_c00256{bottom:193.080000pt;}
.y39_c00256{bottom:193.204000pt;}
.y38_c00256{bottom:193.681333pt;}
.y37_c00256{bottom:207.492000pt;}
.y36_c00256{bottom:222.906667pt;}
.y35_c00256{bottom:238.053333pt;}
.y34_c00256{bottom:253.649333pt;}
.y33_c00256{bottom:269.068000pt;}
.y32_c00256{bottom:284.564000pt;}
.y31_c00256{bottom:299.577333pt;}
.y30_c00256{bottom:313.898667pt;}
.y2f_c00256{bottom:329.681333pt;}
.y26_c00256{bottom:342.240000pt;}
.y27_c00256{bottom:342.609333pt;}
.y28_c00256{bottom:342.884000pt;}
.y29_c00256{bottom:343.337333pt;}
.y2a_c00256{bottom:343.776000pt;}
.y2b_c00256{bottom:343.901333pt;}
.y2c_c00256{bottom:344.328000pt;}
.y2d_c00256{bottom:344.590667pt;}
.y2e_c00256{bottom:344.732000pt;}
.y25_c00256{bottom:358.293333pt;}
.y24_c00256{bottom:374.773333pt;}
.y1d_c00256{bottom:387.601333pt;}
.y1e_c00256{bottom:388.292000pt;}
.y1f_c00256{bottom:388.462667pt;}
.y20_c00256{bottom:388.626667pt;}
.y21_c00256{bottom:389.305333pt;}
.y22_c00256{bottom:389.981333pt;}
.y23_c00256{bottom:390.176000pt;}
.y1c_c00256{bottom:404.265333pt;}
.y1b_c00256{bottom:419.146667pt;}
.y1a_c00256{bottom:435.304000pt;}
.y12_c00256{bottom:448.321333pt;}
.y13_c00256{bottom:448.941333pt;}
.y14_c00256{bottom:449.353333pt;}
.y15_c00256{bottom:449.546667pt;}
.y16_c00256{bottom:450.497333pt;}
.y17_c00256{bottom:450.832000pt;}
.y18_c00256{bottom:451.028000pt;}
.y19_c00256{bottom:451.344000pt;}
.ya_c00256{bottom:462.722667pt;}
.yb_c00256{bottom:463.766667pt;}
.yc_c00256{bottom:464.105333pt;}
.yd_c00256{bottom:464.594667pt;}
.ye_c00256{bottom:465.442667pt;}
.yf_c00256{bottom:465.704000pt;}
.y10_c00256{bottom:466.014667pt;}
.y11_c00256{bottom:466.525333pt;}
.y3_c00256{bottom:478.801333pt;}
.y4_c00256{bottom:479.674667pt;}
.y5_c00256{bottom:479.926667pt;}
.y6_c00256{bottom:480.816000pt;}
.y7_c00256{bottom:480.998667pt;}
.y8_c00256{bottom:481.496000pt;}
.y9_c00256{bottom:481.785333pt;}
.y2_c00256{bottom:496.897333pt;}
.y1_c00256{bottom:507.910667pt;}
.h11_c00256{height:45.733333pt;}
.hd_c00256{height:48.533333pt;}
.h10_c00256{height:52.266667pt;}
.h6_c00256{height:53.200000pt;}
.ha_c00256{height:54.133333pt;}
.hb_c00256{height:55.066667pt;}
.h4_c00256{height:56.000000pt;}
.h9_c00256{height:56.933333pt;}
.hc_c00256{height:57.866667pt;}
.h7_c00256{height:58.800000pt;}
.hf_c00256{height:59.733333pt;}
.he_c00256{height:60.666667pt;}
.h3_c00256{height:61.600000pt;}
.h12_c00256{height:62.533333pt;}
.h5_c00256{height:64.400000pt;}
.h8_c00256{height:66.266667pt;}
.h2_c00256{height:115.733333pt;}
.h1_c00256{height:550.000000pt;}
.h0_c00256{height:550.266667pt;}
.w0_c00256{width:319.200000pt;}
.w1_c00256{width:319.333333pt;}
.x0_c00256{left:0.000000pt;}
.x51_c00256{left:30.716000pt;}
.x6d_c00256{left:31.922667pt;}
.x4_c00256{left:33.600000pt;}
.x56_c00256{left:34.556000pt;}
.x68_c00256{left:35.957333pt;}
.x77_c00256{left:36.962667pt;}
.x5d_c00256{left:42.717333pt;}
.x42_c00256{left:44.636000pt;}
.x4b_c00256{left:49.676000pt;}
.x34_c00256{left:54.957333pt;}
.x57_c00256{left:56.636000pt;}
.x5_c00256{left:57.840000pt;}
.x43_c00256{left:59.996000pt;}
.x6e_c00256{left:63.602667pt;}
.x1_c00256{left:66.240000pt;}
.x5e_c00256{left:67.917333pt;}
.x3b_c00256{left:69.914667pt;}
.x25_c00256{left:71.278667pt;}
.x30_c00256{left:72.957333pt;}
.x1d_c00256{left:76.558667pt;}
.x40_c00256{left:78.476000pt;}
.x17_c00256{left:81.921333pt;}
.x46_c00256{left:84.716000pt;}
.x62_c00256{left:86.880000pt;}
.x26_c00256{left:89.518667pt;}
.x2a_c00256{left:90.478667pt;}
.x6f_c00256{left:91.442667pt;}
.x71_c00256{left:92.642667pt;}
.x1e_c00256{left:94.558667pt;}
.x11_c00256{left:95.465333pt;}
.xc_c00256{left:96.625333pt;}
.x69_c00256{left:98.052000pt;}
.x35_c00256{left:99.597333pt;}
.x2c_c00256{left:102.536000pt;}
.x6_c00256{left:103.680000pt;}
.x47_c00256{left:104.636000pt;}
.x4d_c00256{left:105.596000pt;}
.x27_c00256{left:107.038667pt;}
.x58_c00256{left:111.836000pt;}
.x18_c00256{left:113.661333pt;}
.xd_c00256{left:114.641333pt;}
.x5f_c00256{left:116.160000pt;}
.x2d_c00256{left:119.578667pt;}
.x78_c00256{left:122.402667pt;}
.x7a_c00256{left:123.840000pt;}
.x44_c00256{left:127.196000pt;}
.x19_c00256{left:128.557333pt;}
.x1f_c00256{left:130.798667pt;}
.x7d_c00256{left:131.714667pt;}
.x63_c00256{left:134.160000pt;}
.x2e_c00256{left:135.949333pt;}
.x7_c00256{left:139.440000pt;}
.x20_c00256{left:142.558667pt;}
.x12_c00256{left:144.196000pt;}
.x31_c00256{left:146.877333pt;}
.x7e_c00256{left:148.041333pt;}
.x52_c00256{left:149.036000pt;}
.x36_c00256{left:151.197333pt;}
.x2_c00256{left:152.640000pt;}
.x70_c00256{left:154.322667pt;}
.x48_c00256{left:155.516000pt;}
.x28_c00256{left:158.878667pt;}
.x8_c00256{left:160.080000pt;}
.x32_c00256{left:161.517333pt;}
.x41_c00256{left:164.876000pt;}
.x37_c00256{left:167.277333pt;}
.x76_c00256{left:168.482667pt;}
.x21_c00256{left:169.438667pt;}
.x5b_c00256{left:172.076000pt;}
.x5c_c00256{left:173.913333pt;}
.x4e_c00256{left:174.956000pt;}
.x6a_c00256{left:176.748000pt;}
.xe_c00256{left:178.174667pt;}
.x72_c00256{left:181.202667pt;}
.x4c_c00256{left:182.396000pt;}
.x49_c00256{left:183.836000pt;}
.x66_c00256{left:185.520000pt;}
.x3c_c00256{left:186.572000pt;}
.x60_c00256{left:189.120000pt;}
.x79_c00256{left:190.082667pt;}
.xf_c00256{left:191.192000pt;}
.x13_c00256{left:194.073333pt;}
.x3d_c00256{left:199.065333pt;}
.x61_c00256{left:200.640000pt;}
.x1a_c00256{left:201.701333pt;}
.x73_c00256{left:203.042667pt;}
.x29_c00256{left:203.998667pt;}
.x67_c00256{left:205.200000pt;}
.x38_c00256{left:206.397333pt;}
.x4f_c00256{left:208.076000pt;}
.x14_c00256{left:209.469333pt;}
.x6b_c00256{left:212.749333pt;}
.x45_c00256{left:217.676000pt;}
.x59_c00256{left:221.996000pt;}
.x39_c00256{left:224.637333pt;}
.x10_c00256{left:226.712000pt;}
.x15_c00256{left:227.708000pt;}
.x33_c00256{left:228.957333pt;}
.x9_c00256{left:229.920000pt;}
.x7b_c00256{left:231.120000pt;}
.x22_c00256{left:233.278667pt;}
.x4a_c00256{left:237.116000pt;}
.x6c_c00256{left:239.149333pt;}
.x7f_c00256{left:240.369333pt;}
.x1b_c00256{left:242.488000pt;}
.x53_c00256{left:243.836000pt;}
.x64_c00256{left:245.040000pt;}
.x3_c00256{left:247.200000pt;}
.x50_c00256{left:251.516000pt;}
.x74_c00256{left:253.922667pt;}
.x16_c00256{left:257.720000pt;}
.x54_c00256{left:261.116000pt;}
.x5a_c00256{left:263.516000pt;}
.xa_c00256{left:264.480000pt;}
.x1c_c00256{left:266.789333pt;}
.x3e_c00256{left:267.942667pt;}
.x7c_c00256{left:269.040000pt;}
.x2b_c00256{left:271.438667pt;}
.x23_c00256{left:274.558667pt;}
.xb_c00256{left:281.040000pt;}
.x3f_c00256{left:282.060000pt;}
.x75_c00256{left:287.282667pt;}
.x55_c00256{left:288.236000pt;}
.x24_c00256{left:289.438667pt;}
.x2f_c00256{left:290.988000pt;}
.x65_c00256{left:292.320000pt;}
.x3a_c00256{left:293.997333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00257 {
    display:none;
  }
  .loading-indicator_c00257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00257 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00257 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00257" -> "#page-container .classname_c00257")
 */
.pf_c00257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00257 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00257 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00257 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00257 {overflow:visible;}
  }
}
.c_c00257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00257 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00257:after { /* webkit #35443 */
  content: '';
}
.t_c00257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00257 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00257 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00257 { /* info for Javascript */
  display:none;
}
.l_c00257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00257:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00257 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00257.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00257{transform:matrix(0.072450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072450,0.000000,0.000000,0.250000,0,0);}
.md6_c00257{transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144865,0.000000,0.000000,0.250000,0,0);}
.me8_c00257{transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148510,0.000000,0.000000,0.250000,0,0);}
.m1a_c00257{transform:matrix(0.148715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148715,0.000000,0.000000,0.250000,0,0);}
.mf3_c00257{transform:matrix(0.148720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148720,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);}
.m74_c00257{transform:matrix(0.151895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151895,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);}
.mc9_c00257{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);}
.mef_c00257{transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159215,0.000000,0.000000,0.250000,0,0);}
.mf4_c00257{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.ma9_c00257{transform:matrix(0.159915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00257{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.mf0_c00257{transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);}
.ma7_c00257{transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);}
.mca_c00257{transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);}
.m4c_c00257{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.mdc_c00257{transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.mbe_c00257{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);}
.maa_c00257{transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00257{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.mc0_c00257{transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167960,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168055,0.000000,0.000000,0.250000,0,0);}
.m75_c00257{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);}
.mf6_c00257{transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);}
.mdb_c00257{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.md9_c00257{transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);}
.m81_c00257{transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);}
.mbf_c00257{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.mba_c00257{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.mdf_c00257{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171220,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m78_c00257{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.md4_c00257{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.mea_c00257{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.md2_c00257{transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.maf_c00257{transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);}
.m6f_c00257{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.mbd_c00257{transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);}
.m70_c00257{transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);}
.md7_c00257{transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);}
.md1_c00257{transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);}
.me2_c00257{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mf5_c00257{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m94_c00257{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.mde_c00257{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.179190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179190,0.000000,0.000000,0.250000,0,0);}
.mf1_c00257{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00257{transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.180240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180240,0.000000,0.000000,0.250000,0,0);}
.m9e_c00257{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m99_c00257{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m9b_c00257{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.m6b_c00257{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.me0_c00257{transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);}
.mc4_c00257{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.mad_c00257{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m6a_c00257{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.mf2_c00257{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m57_c00257{transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);}
.me1_c00257{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m2e_c00257{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.meb_c00257{transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184370,0.000000,0.000000,0.250000,0,0);}
.m4a_c00257{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.ma6_c00257{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.mce_c00257{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m82_c00257{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m6e_c00257{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.mab_c00257{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00257{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.mc6_c00257{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);}
.mcb_c00257{transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);}
.mee_c00257{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m90_c00257{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m35_c00257{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.mb7_c00257{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);}
.md8_c00257{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.me9_c00257{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.m62_c00257{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m54_c00257{transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m4b_c00257{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m79_c00257{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m7e_c00257{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.mec_c00257{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m1e_c00257{transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);}
.m60_c00257{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.m89_c00257{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m50_c00257{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.m72_c00257{transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);}
.ma4_c00257{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m55_c00257{transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);}
.m8f_c00257{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.mcd_c00257{transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.ma0_c00257{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m36_c00257{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00257{transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);}
.mb9_c00257{transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00257{transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);}
.m26_c00257{transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197885,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m56_c00257{transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198255,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.me5_c00257{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00257{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.mdd_c00257{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.mbc_c00257{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m83_c00257{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.mc7_c00257{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.me6_c00257{transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.m88_c00257{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.ma8_c00257{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m76_c00257{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m51_c00257{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.me4_c00257{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m8b_c00257{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m41_c00257{transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m46_c00257{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.m77_c00257{transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);}
.m3a_c00257{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);}
.me7_c00257{transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);}
.me3_c00257{transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.md5_c00257{transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00257{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.mc2_c00257{transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);}
.m58_c00257{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m3c_c00257{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m95_c00257{transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208265,0.000000,0.000000,0.250000,0,0);}
.m6d_c00257{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m7a_c00257{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.mb4_c00257{transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00257{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.md3_c00257{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00257{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.mc5_c00257{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m7f_c00257{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m69_c00257{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.ma3_c00257{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m63_c00257{transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);}
.m24_c00257{transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212405,0.000000,0.000000,0.250000,0,0);}
.m91_c00257{transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213185,0.000000,0.000000,0.250000,0,0);}
.m25_c00257{transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.ma2_c00257{transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.mc8_c00257{transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m93_c00257{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m5e_c00257{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.m8c_c00257{transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);}
.mda_c00257{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.ma5_c00257{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.mcf_c00257{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m7c_c00257{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.m68_c00257{transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);}
.m86_c00257{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.mc1_c00257{transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);}
.m39_c00257{transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m8a_c00257{transform:matrix(0.226530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226530,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);}
.m71_c00257{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m7d_c00257{transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);}
.m66_c00257{transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229820,0.000000,0.000000,0.250000,0,0);}
.m30_c00257{transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00257{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.m92_c00257{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.mb1_c00257{transform:matrix(0.234205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234205,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m84_c00257{transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m8d_c00257{transform:matrix(0.237445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00257{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m5c_c00257{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.m8e_c00257{transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);}
.m4e_c00257{transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.med_c00257{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);}
.md0_c00257{transform:matrix(0.645675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645675,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:0.000000px;}
.fc0_c00257{color:transparent;}
.fsc_c00257{font-size:55.650000px;}
.fs7_c00257{font-size:57.750000px;}
.fs5_c00257{font-size:58.800000px;}
.fs4_c00257{font-size:59.850000px;}
.fs9_c00257{font-size:60.900000px;}
.fsd_c00257{font-size:61.950000px;}
.fsa_c00257{font-size:63.000000px;}
.fs2_c00257{font-size:64.050000px;}
.fsb_c00257{font-size:65.100000px;}
.fs6_c00257{font-size:66.150000px;}
.fs8_c00257{font-size:67.200000px;}
.fs1_c00257{font-size:72.450000px;}
.fs3_c00257{font-size:73.500000px;}
.fs0_c00257{font-size:76.650000px;}
.y0_c00257{bottom:0.000000px;}
.y2a_c00257{bottom:23.286000px;}
.y29_c00257{bottom:40.575000px;}
.y28_c00257{bottom:58.296000px;}
.y27_c00257{bottom:74.551500px;}
.y26_c00257{bottom:92.757000px;}
.y25_c00257{bottom:109.402500px;}
.y24_c00257{bottom:126.418500px;}
.y23_c00257{bottom:144.778500px;}
.y22_c00257{bottom:162.303000px;}
.y21_c00257{bottom:178.530000px;}
.y20_c00257{bottom:178.947000px;}
.y1f_c00257{bottom:179.218500px;}
.y1e_c00257{bottom:179.748000px;}
.y1d_c00257{bottom:179.860500px;}
.y1c_c00257{bottom:180.519000px;}
.y1b_c00257{bottom:181.300500px;}
.y1a_c00257{bottom:181.569000px;}
.y19_c00257{bottom:181.734000px;}
.y18_c00257{bottom:181.980000px;}
.y17_c00257{bottom:196.711500px;}
.y16_c00257{bottom:214.888500px;}
.y15_c00257{bottom:232.471500px;}
.y14_c00257{bottom:248.812500px;}
.y13_c00257{bottom:266.371500px;}
.y12_c00257{bottom:282.843000px;}
.y11_c00257{bottom:300.304500px;}
.y10_c00257{bottom:317.671500px;}
.yf_c00257{bottom:334.326000px;}
.ye_c00257{bottom:351.879000px;}
.yd_c00257{bottom:369.124500px;}
.yc_c00257{bottom:386.641500px;}
.yb_c00257{bottom:403.651500px;}
.ya_c00257{bottom:421.236000px;}
.y9_c00257{bottom:438.244500px;}
.y8_c00257{bottom:455.824500px;}
.y7_c00257{bottom:471.862500px;}
.y6_c00257{bottom:489.543000px;}
.y5_c00257{bottom:507.118500px;}
.y4_c00257{bottom:523.981500px;}
.y3_c00257{bottom:541.021500px;}
.y2_c00257{bottom:558.721500px;}
.y1_c00257{bottom:571.987500px;}
.he_c00257{height:55.650000px;}
.h9_c00257{height:57.750000px;}
.h7_c00257{height:58.800000px;}
.h6_c00257{height:59.850000px;}
.hb_c00257{height:60.900000px;}
.hf_c00257{height:61.950000px;}
.hc_c00257{height:63.000000px;}
.h4_c00257{height:64.050000px;}
.hd_c00257{height:65.100000px;}
.h8_c00257{height:66.150000px;}
.ha_c00257{height:67.200000px;}
.h3_c00257{height:72.450000px;}
.h5_c00257{height:73.500000px;}
.h2_c00257{height:76.650000px;}
.h1_c00257{height:618.750000px;}
.h0_c00257{height:619.050000px;}
.w0_c00257{width:359.100000px;}
.w1_c00257{width:359.250000px;}
.x0_c00257{left:0.000000px;}
.x6b_c00257{left:38.070000px;}
.x2d_c00257{left:39.150000px;}
.x1b_c00257{left:40.230000px;}
.x2_c00257{left:41.310000px;}
.x17_c00257{left:42.390000px;}
.x68_c00257{left:47.250000px;}
.x55_c00257{left:56.430000px;}
.x6e_c00257{left:58.320000px;}
.x43_c00257{left:59.400000px;}
.x54_c00257{left:63.180000px;}
.x23_c00257{left:65.610000px;}
.x62_c00257{left:69.931500px;}
.x38_c00257{left:72.630000px;}
.x44_c00257{left:76.140000px;}
.xa_c00257{left:77.220000px;}
.x1c_c00257{left:80.190000px;}
.x66_c00257{left:83.971500px;}
.x4a_c00257{left:86.670000px;}
.x18_c00257{left:87.750000px;}
.x12_c00257{left:89.370000px;}
.x31_c00257{left:91.530000px;}
.x72_c00257{left:93.150000px;}
.x3_c00257{left:94.230000px;}
.x40_c00257{left:95.580000px;}
.x50_c00257{left:98.280000px;}
.x1d_c00257{left:100.710000px;}
.x56_c00257{left:103.410000px;}
.x51_c00257{left:105.030000px;}
.x29_c00257{left:109.080000px;}
.x32_c00257{left:112.320000px;}
.x74_c00257{left:114.210000px;}
.x65_c00257{left:116.101500px;}
.x45_c00257{left:118.260000px;}
.x6c_c00257{left:120.420000px;}
.x5b_c00257{left:123.930000px;}
.x6f_c00257{left:126.090000px;}
.x2a_c00257{left:129.060000px;}
.x1e_c00257{left:130.410000px;}
.x46_c00257{left:137.970000px;}
.x4b_c00257{left:139.050000px;}
.x75_c00257{left:140.130000px;}
.x39_c00257{left:141.480000px;}
.xb_c00257{left:143.370000px;}
.x52_c00257{left:144.990000px;}
.x4_c00257{left:153.090000px;}
.x19_c00257{left:154.170000px;}
.xc_c00257{left:157.140000px;}
.x4c_c00257{left:159.570000px;}
.x76_c00257{left:160.920000px;}
.x57_c00257{left:163.350000px;}
.x41_c00257{left:164.430000px;}
.x24_c00257{left:166.590000px;}
.x3a_c00257{left:167.940000px;}
.x1_c00257{left:171.450000px;}
.x1f_c00257{left:173.610000px;}
.x2e_c00257{left:175.500000px;}
.x5c_c00257{left:177.120000px;}
.x2b_c00257{left:180.630000px;}
.x13_c00257{left:182.790000px;}
.x3d_c00257{left:184.950000px;}
.xd_c00257{left:187.650000px;}
.x25_c00257{left:190.620000px;}
.x70_c00257{left:191.970000px;}
.x4d_c00257{left:195.210000px;}
.x36_c00257{left:197.910000px;}
.x49_c00257{left:198.990000px;}
.x5_c00257{left:201.690000px;}
.xe_c00257{left:203.310000px;}
.x6d_c00257{left:206.820000px;}
.x33_c00257{left:208.980000px;}
.x5d_c00257{left:210.330000px;}
.x26_c00257{left:211.950000px;}
.x3b_c00257{left:215.190000px;}
.x63_c00257{left:217.081500px;}
.x6_c00257{left:218.970000px;}
.x58_c00257{left:221.670000px;}
.x60_c00257{left:224.221500px;}
.x14_c00257{left:226.260000px;}
.x73_c00257{left:227.610000px;}
.x47_c00257{left:231.390000px;}
.x59_c00257{left:237.060000px;}
.xf_c00257{left:238.680000px;}
.x3e_c00257{left:240.840000px;}
.x15_c00257{left:244.890000px;}
.x27_c00257{left:247.860000px;}
.x53_c00257{left:251.640000px;}
.x5e_c00257{left:254.340000px;}
.x64_c00257{left:256.231500px;}
.x4e_c00257{left:259.200000px;}
.x20_c00257{left:260.550000px;}
.x2f_c00257{left:263.790000px;}
.x34_c00257{left:265.950000px;}
.x61_c00257{left:268.290000px;}
.x69_c00257{left:270.810000px;}
.x16_c00257{left:273.510000px;}
.x5f_c00257{left:276.750000px;}
.x10_c00257{left:278.370000px;}
.x77_c00257{left:279.990000px;}
.x7_c00257{left:282.960000px;}
.x42_c00257{left:286.470000px;}
.x28_c00257{left:291.870000px;}
.x37_c00257{left:292.950000px;}
.x48_c00257{left:295.110000px;}
.x2c_c00257{left:296.730000px;}
.x8_c00257{left:299.430000px;}
.x78_c00257{left:300.510000px;}
.x21_c00257{left:305.370000px;}
.x1a_c00257{left:308.070000px;}
.x67_c00257{left:310.501500px;}
.x11_c00257{left:311.580000px;}
.x3f_c00257{left:313.740000px;}
.x9_c00257{left:315.360000px;}
.x3c_c00257{left:316.710000px;}
.x6a_c00257{left:317.790000px;}
.x71_c00257{left:318.870000px;}
.x22_c00257{left:322.380000px;}
.x4f_c00257{left:324.810000px;}
.x30_c00257{left:326.430000px;}
.x5a_c00257{left:329.130000px;}
.x35_c00257{left:330.210000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.fsc_c00257{font-size:49.466667pt;}
.fs7_c00257{font-size:51.333333pt;}
.fs5_c00257{font-size:52.266667pt;}
.fs4_c00257{font-size:53.200000pt;}
.fs9_c00257{font-size:54.133333pt;}
.fsd_c00257{font-size:55.066667pt;}
.fsa_c00257{font-size:56.000000pt;}
.fs2_c00257{font-size:56.933333pt;}
.fsb_c00257{font-size:57.866667pt;}
.fs6_c00257{font-size:58.800000pt;}
.fs8_c00257{font-size:59.733333pt;}
.fs1_c00257{font-size:64.400000pt;}
.fs3_c00257{font-size:65.333333pt;}
.fs0_c00257{font-size:68.133333pt;}
.y0_c00257{bottom:0.000000pt;}
.y2a_c00257{bottom:20.698667pt;}
.y29_c00257{bottom:36.066667pt;}
.y28_c00257{bottom:51.818667pt;}
.y27_c00257{bottom:66.268000pt;}
.y26_c00257{bottom:82.450667pt;}
.y25_c00257{bottom:97.246667pt;}
.y24_c00257{bottom:112.372000pt;}
.y23_c00257{bottom:128.692000pt;}
.y22_c00257{bottom:144.269333pt;}
.y21_c00257{bottom:158.693333pt;}
.y20_c00257{bottom:159.064000pt;}
.y1f_c00257{bottom:159.305333pt;}
.y1e_c00257{bottom:159.776000pt;}
.y1d_c00257{bottom:159.876000pt;}
.y1c_c00257{bottom:160.461333pt;}
.y1b_c00257{bottom:161.156000pt;}
.y1a_c00257{bottom:161.394667pt;}
.y19_c00257{bottom:161.541333pt;}
.y18_c00257{bottom:161.760000pt;}
.y17_c00257{bottom:174.854667pt;}
.y16_c00257{bottom:191.012000pt;}
.y15_c00257{bottom:206.641333pt;}
.y14_c00257{bottom:221.166667pt;}
.y13_c00257{bottom:236.774667pt;}
.y12_c00257{bottom:251.416000pt;}
.y11_c00257{bottom:266.937333pt;}
.y10_c00257{bottom:282.374667pt;}
.yf_c00257{bottom:297.178667pt;}
.ye_c00257{bottom:312.781333pt;}
.yd_c00257{bottom:328.110667pt;}
.yc_c00257{bottom:343.681333pt;}
.yb_c00257{bottom:358.801333pt;}
.ya_c00257{bottom:374.432000pt;}
.y9_c00257{bottom:389.550667pt;}
.y8_c00257{bottom:405.177333pt;}
.y7_c00257{bottom:419.433333pt;}
.y6_c00257{bottom:435.149333pt;}
.y5_c00257{bottom:450.772000pt;}
.y4_c00257{bottom:465.761333pt;}
.y3_c00257{bottom:480.908000pt;}
.y2_c00257{bottom:496.641333pt;}
.y1_c00257{bottom:508.433333pt;}
.he_c00257{height:49.466667pt;}
.h9_c00257{height:51.333333pt;}
.h7_c00257{height:52.266667pt;}
.h6_c00257{height:53.200000pt;}
.hb_c00257{height:54.133333pt;}
.hf_c00257{height:55.066667pt;}
.hc_c00257{height:56.000000pt;}
.h4_c00257{height:56.933333pt;}
.hd_c00257{height:57.866667pt;}
.h8_c00257{height:58.800000pt;}
.ha_c00257{height:59.733333pt;}
.h3_c00257{height:64.400000pt;}
.h5_c00257{height:65.333333pt;}
.h2_c00257{height:68.133333pt;}
.h1_c00257{height:550.000000pt;}
.h0_c00257{height:550.266667pt;}
.w0_c00257{width:319.200000pt;}
.w1_c00257{width:319.333333pt;}
.x0_c00257{left:0.000000pt;}
.x6b_c00257{left:33.840000pt;}
.x2d_c00257{left:34.800000pt;}
.x1b_c00257{left:35.760000pt;}
.x2_c00257{left:36.720000pt;}
.x17_c00257{left:37.680000pt;}
.x68_c00257{left:42.000000pt;}
.x55_c00257{left:50.160000pt;}
.x6e_c00257{left:51.840000pt;}
.x43_c00257{left:52.800000pt;}
.x54_c00257{left:56.160000pt;}
.x23_c00257{left:58.320000pt;}
.x62_c00257{left:62.161333pt;}
.x38_c00257{left:64.560000pt;}
.x44_c00257{left:67.680000pt;}
.xa_c00257{left:68.640000pt;}
.x1c_c00257{left:71.280000pt;}
.x66_c00257{left:74.641333pt;}
.x4a_c00257{left:77.040000pt;}
.x18_c00257{left:78.000000pt;}
.x12_c00257{left:79.440000pt;}
.x31_c00257{left:81.360000pt;}
.x72_c00257{left:82.800000pt;}
.x3_c00257{left:83.760000pt;}
.x40_c00257{left:84.960000pt;}
.x50_c00257{left:87.360000pt;}
.x1d_c00257{left:89.520000pt;}
.x56_c00257{left:91.920000pt;}
.x51_c00257{left:93.360000pt;}
.x29_c00257{left:96.960000pt;}
.x32_c00257{left:99.840000pt;}
.x74_c00257{left:101.520000pt;}
.x65_c00257{left:103.201333pt;}
.x45_c00257{left:105.120000pt;}
.x6c_c00257{left:107.040000pt;}
.x5b_c00257{left:110.160000pt;}
.x6f_c00257{left:112.080000pt;}
.x2a_c00257{left:114.720000pt;}
.x1e_c00257{left:115.920000pt;}
.x46_c00257{left:122.640000pt;}
.x4b_c00257{left:123.600000pt;}
.x75_c00257{left:124.560000pt;}
.x39_c00257{left:125.760000pt;}
.xb_c00257{left:127.440000pt;}
.x52_c00257{left:128.880000pt;}
.x4_c00257{left:136.080000pt;}
.x19_c00257{left:137.040000pt;}
.xc_c00257{left:139.680000pt;}
.x4c_c00257{left:141.840000pt;}
.x76_c00257{left:143.040000pt;}
.x57_c00257{left:145.200000pt;}
.x41_c00257{left:146.160000pt;}
.x24_c00257{left:148.080000pt;}
.x3a_c00257{left:149.280000pt;}
.x1_c00257{left:152.400000pt;}
.x1f_c00257{left:154.320000pt;}
.x2e_c00257{left:156.000000pt;}
.x5c_c00257{left:157.440000pt;}
.x2b_c00257{left:160.560000pt;}
.x13_c00257{left:162.480000pt;}
.x3d_c00257{left:164.400000pt;}
.xd_c00257{left:166.800000pt;}
.x25_c00257{left:169.440000pt;}
.x70_c00257{left:170.640000pt;}
.x4d_c00257{left:173.520000pt;}
.x36_c00257{left:175.920000pt;}
.x49_c00257{left:176.880000pt;}
.x5_c00257{left:179.280000pt;}
.xe_c00257{left:180.720000pt;}
.x6d_c00257{left:183.840000pt;}
.x33_c00257{left:185.760000pt;}
.x5d_c00257{left:186.960000pt;}
.x26_c00257{left:188.400000pt;}
.x3b_c00257{left:191.280000pt;}
.x63_c00257{left:192.961333pt;}
.x6_c00257{left:194.640000pt;}
.x58_c00257{left:197.040000pt;}
.x60_c00257{left:199.308000pt;}
.x14_c00257{left:201.120000pt;}
.x73_c00257{left:202.320000pt;}
.x47_c00257{left:205.680000pt;}
.x59_c00257{left:210.720000pt;}
.xf_c00257{left:212.160000pt;}
.x3e_c00257{left:214.080000pt;}
.x15_c00257{left:217.680000pt;}
.x27_c00257{left:220.320000pt;}
.x53_c00257{left:223.680000pt;}
.x5e_c00257{left:226.080000pt;}
.x64_c00257{left:227.761333pt;}
.x4e_c00257{left:230.400000pt;}
.x20_c00257{left:231.600000pt;}
.x2f_c00257{left:234.480000pt;}
.x34_c00257{left:236.400000pt;}
.x61_c00257{left:238.480000pt;}
.x69_c00257{left:240.720000pt;}
.x16_c00257{left:243.120000pt;}
.x5f_c00257{left:246.000000pt;}
.x10_c00257{left:247.440000pt;}
.x77_c00257{left:248.880000pt;}
.x7_c00257{left:251.520000pt;}
.x42_c00257{left:254.640000pt;}
.x28_c00257{left:259.440000pt;}
.x37_c00257{left:260.400000pt;}
.x48_c00257{left:262.320000pt;}
.x2c_c00257{left:263.760000pt;}
.x8_c00257{left:266.160000pt;}
.x78_c00257{left:267.120000pt;}
.x21_c00257{left:271.440000pt;}
.x1a_c00257{left:273.840000pt;}
.x67_c00257{left:276.001333pt;}
.x11_c00257{left:276.960000pt;}
.x3f_c00257{left:278.880000pt;}
.x9_c00257{left:280.320000pt;}
.x3c_c00257{left:281.520000pt;}
.x6a_c00257{left:282.480000pt;}
.x71_c00257{left:283.440000pt;}
.x22_c00257{left:286.560000pt;}
.x4f_c00257{left:288.720000pt;}
.x30_c00257{left:290.160000pt;}
.x5a_c00257{left:292.560000pt;}
.x35_c00257{left:293.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00258 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00258 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00258 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00258 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00258.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md8_c00258{transform:matrix(0.038675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038675,0.000000,0.000000,0.250000,0,0);}
.mea_c00258{transform:matrix(0.071390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071390,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);}
.mf7_c00258{transform:matrix(0.097260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097260,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.102025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102025,0.000000,0.000000,0.250000,0,0);}
.ma0_c00258{transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137815,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);}
.md9_c00258{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m92_c00258{transform:matrix(0.151070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151070,0.000000,0.000000,0.250000,0,0);}
.m9a_c00258{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.mf1_c00258{transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);}
.m8b_c00258{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);}
.mf0_c00258{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00258{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.md3_c00258{transform:matrix(0.155765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155765,0.000000,0.000000,0.250000,0,0);}
.m62_c00258{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m67_c00258{transform:matrix(0.156540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00258{transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157305,0.000000,0.000000,0.250000,0,0);}
.md6_c00258{transform:matrix(0.157505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157505,0.000000,0.000000,0.250000,0,0);}
.mb8_c00258{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159165,0.000000,0.000000,0.250000,0,0);}
.m98_c00258{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m42_c00258{transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00258{transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);}
.m52_c00258{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.m6c_c00258{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.mde_c00258{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.m4d_c00258{transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);}
.m36_c00258{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.md2_c00258{transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163905,0.000000,0.000000,0.250000,0,0);}
.m55_c00258{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m96_c00258{transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);}
.mf6_c00258{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m4b_c00258{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m65_c00258{transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.mf5_c00258{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m64_c00258{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00258{transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);}
.m90_c00258{transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);}
.mb1_c00258{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.m3c_c00258{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m53_c00258{transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);}
.mf8_c00258{transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);}
.m69_c00258{transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);}
.m48_c00258{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);}
.mb3_c00258{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.m4e_c00258{transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);}
.m5f_c00258{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.mb6_c00258{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m6a_c00258{transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);}
.m51_c00258{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00258{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m82_c00258{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);}
.m87_c00258{transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);}
.m77_c00258{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);}
.m58_c00258{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m4c_c00258{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m9b_c00258{transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);}
.md7_c00258{transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176260,0.000000,0.000000,0.250000,0,0);}
.meb_c00258{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.mf9_c00258{transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);}
.ma3_c00258{transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00258{transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);}
.mb0_c00258{transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00258{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);}
.md5_c00258{transform:matrix(0.179590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179590,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);}
.m8d_c00258{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.180545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180545,0.000000,0.000000,0.250000,0,0);}
.mbd_c00258{transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);}
.m8f_c00258{transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);}
.m9c_c00258{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m61_c00258{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.mec_c00258{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m84_c00258{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.me1_c00258{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.me3_c00258{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.mf3_c00258{transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.mef_c00258{transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183165,0.000000,0.000000,0.250000,0,0);}
.mc7_c00258{transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00258{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.m34_c00258{transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);}
.m7a_c00258{transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);}
.m76_c00258{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.m6b_c00258{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.me5_c00258{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.m60_c00258{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m68_c00258{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m99_c00258{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m93_c00258{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.mb7_c00258{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188730,0.000000,0.000000,0.250000,0,0);}
.m79_c00258{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m63_c00258{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.ma9_c00258{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.ma5_c00258{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m4f_c00258{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00258{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m40_c00258{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mab_c00258{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.m3b_c00258{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191565,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m4a_c00258{transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192280,0.000000,0.000000,0.250000,0,0);}
.mc4_c00258{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.m8e_c00258{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.m20_c00258{transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);}
.me0_c00258{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.mc9_c00258{transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);}
.m43_c00258{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.ma2_c00258{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m83_c00258{transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.mad_c00258{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.ma6_c00258{transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);}
.m56_c00258{transform:matrix(0.195130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195130,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.mfb_c00258{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m95_c00258{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m88_c00258{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.mcf_c00258{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m70_c00258{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.mdd_c00258{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m7d_c00258{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.mfa_c00258{transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);}
.mda_c00258{transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);}
.m97_c00258{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.me9_c00258{transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198710,0.000000,0.000000,0.250000,0,0);}
.m91_c00258{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.mba_c00258{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00258{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.md1_c00258{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00258{transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);}
.m41_c00258{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mc0_c00258{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m8a_c00258{transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200740,0.000000,0.000000,0.250000,0,0);}
.m9f_c00258{transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);}
.mae_c00258{transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);}
.m8c_c00258{transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);}
.m6d_c00258{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);}
.ma7_c00258{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.me8_c00258{transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);}
.mdb_c00258{transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);}
.me2_c00258{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m72_c00258{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.m57_c00258{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00258{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.me7_c00258{transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);}
.mc1_c00258{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.m94_c00258{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m80_c00258{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m7b_c00258{transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);}
.mf4_c00258{transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc5_c00258{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m89_c00258{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.mbb_c00258{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.mc8_c00258{transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);}
.m54_c00258{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.maa_c00258{transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);}
.ma8_c00258{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mdc_c00258{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m78_c00258{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00258{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.m49_c00258{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m75_c00258{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.mb2_c00258{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.mac_c00258{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.mf2_c00258{transform:matrix(0.213165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213165,0.000000,0.000000,0.250000,0,0);}
.m5a_c00258{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.maf_c00258{transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00258{transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);}
.m6e_c00258{transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);}
.m86_c00258{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.mb4_c00258{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.m5c_c00258{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.m7c_c00258{transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);}
.m85_c00258{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.mbf_c00258{transform:matrix(0.222980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222980,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);}
.md4_c00258{transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);}
.m71_c00258{transform:matrix(0.224280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224280,0.000000,0.000000,0.250000,0,0);}
.mce_c00258{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.me6_c00258{transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);}
.mcd_c00258{transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);}
.m5b_c00258{transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);}
.mbc_c00258{transform:matrix(0.229380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229380,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.me4_c00258{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m73_c00258{transform:matrix(0.234595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234595,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);}
.m59_c00258{transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);}
.mcc_c00258{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m66_c00258{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.med_c00258{transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);}
.m74_c00258{transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);}
.mc3_c00258{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00258{transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);}
.m81_c00258{transform:matrix(0.282395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282395,0.000000,0.000000,0.250000,0,0);}
.mdf_c00258{transform:matrix(0.374780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374780,0.000000,0.000000,0.250000,0,0);}
.mee_c00258{transform:matrix(0.382135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382135,0.000000,0.000000,0.250000,0,0);}
.mca_c00258{transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);}
.mcb_c00258{transform:matrix(0.620920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620920,0.000000,0.000000,0.250000,0,0);}
.md0_c00258{transform:matrix(0.691245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691245,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:0.000000px;}
.fc0_c00258{color:transparent;}
.fs9_c00258{font-size:54.600000px;}
.fs2_c00258{font-size:58.800000px;}
.fs5_c00258{font-size:59.850000px;}
.fs1_c00258{font-size:60.900000px;}
.fsd_c00258{font-size:61.950000px;}
.fsa_c00258{font-size:63.000000px;}
.fsb_c00258{font-size:65.100000px;}
.fs3_c00258{font-size:66.150000px;}
.fs4_c00258{font-size:67.200000px;}
.fs8_c00258{font-size:68.250000px;}
.fs7_c00258{font-size:69.300000px;}
.fsf_c00258{font-size:70.350000px;}
.fsc_c00258{font-size:71.400000px;}
.fs6_c00258{font-size:72.450000px;}
.fse_c00258{font-size:74.550000px;}
.fs0_c00258{font-size:130.200000px;}
.y0_c00258{bottom:0.000000px;}
.y84_c00258{bottom:22.344000px;}
.y83_c00258{bottom:23.590500px;}
.y82_c00258{bottom:25.135500px;}
.y81_c00258{bottom:26.146500px;}
.y80_c00258{bottom:26.395500px;}
.y7f_c00258{bottom:27.003000px;}
.y7e_c00258{bottom:40.030500px;}
.y7d_c00258{bottom:40.387500px;}
.y7c_c00258{bottom:41.064000px;}
.y7b_c00258{bottom:41.560500px;}
.y7a_c00258{bottom:41.767500px;}
.y79_c00258{bottom:41.916000px;}
.y78_c00258{bottom:42.516000px;}
.y77_c00258{bottom:42.646500px;}
.y76_c00258{bottom:43.197000px;}
.y75_c00258{bottom:58.197000px;}
.y74_c00258{bottom:59.151000px;}
.y73_c00258{bottom:59.409000px;}
.y72_c00258{bottom:61.270500px;}
.y71_c00258{bottom:61.842000px;}
.y70_c00258{bottom:63.289500px;}
.y6f_c00258{bottom:64.266000px;}
.y6e_c00258{bottom:75.267000px;}
.y6d_c00258{bottom:92.733000px;}
.y6c_c00258{bottom:93.429000px;}
.y6b_c00258{bottom:93.639000px;}
.y6a_c00258{bottom:94.732500px;}
.y69_c00258{bottom:95.740500px;}
.y68_c00258{bottom:96.301500px;}
.y67_c00258{bottom:96.657000px;}
.y66_c00258{bottom:102.717000px;}
.y65_c00258{bottom:126.538500px;}
.y64_c00258{bottom:127.038000px;}
.y63_c00258{bottom:128.131500px;}
.y62_c00258{bottom:128.521500px;}
.y61_c00258{bottom:129.511500px;}
.y60_c00258{bottom:129.958500px;}
.y5f_c00258{bottom:131.220000px;}
.y5e_c00258{bottom:144.870000px;}
.y5d_c00258{bottom:146.032500px;}
.y5c_c00258{bottom:146.464500px;}
.y5b_c00258{bottom:146.848500px;}
.y5a_c00258{bottom:147.106500px;}
.y59_c00258{bottom:148.093500px;}
.y58_c00258{bottom:148.456500px;}
.y57_c00258{bottom:149.038500px;}
.y56_c00258{bottom:160.687500px;}
.y55_c00258{bottom:162.309000px;}
.y54_c00258{bottom:164.289000px;}
.y53_c00258{bottom:164.962500px;}
.y52_c00258{bottom:166.630500px;}
.y51_c00258{bottom:167.988000px;}
.y50_c00258{bottom:168.753000px;}
.y4f_c00258{bottom:178.555500px;}
.y4e_c00258{bottom:195.279000px;}
.y4d_c00258{bottom:195.424500px;}
.y4c_c00258{bottom:195.622500px;}
.y4b_c00258{bottom:196.153500px;}
.y4a_c00258{bottom:196.779000px;}
.y49_c00258{bottom:197.457000px;}
.y48_c00258{bottom:197.700000px;}
.y47_c00258{bottom:198.219000px;}
.y46_c00258{bottom:198.718500px;}
.y45_c00258{bottom:212.709000px;}
.y44_c00258{bottom:212.955000px;}
.y43_c00258{bottom:213.600000px;}
.y42_c00258{bottom:213.756000px;}
.y41_c00258{bottom:214.507500px;}
.y40_c00258{bottom:215.244000px;}
.y3f_c00258{bottom:215.422500px;}
.y3e_c00258{bottom:215.730000px;}
.y3d_c00258{bottom:230.110500px;}
.y3c_c00258{bottom:230.316000px;}
.y3b_c00258{bottom:230.472000px;}
.y3a_c00258{bottom:231.589500px;}
.y39_c00258{bottom:231.928500px;}
.y38_c00258{bottom:232.273500px;}
.y37_c00258{bottom:233.379000px;}
.y36_c00258{bottom:234.123000px;}
.y35_c00258{bottom:234.361500px;}
.y34_c00258{bottom:248.263500px;}
.y33_c00258{bottom:248.595000px;}
.y32_c00258{bottom:249.309000px;}
.y31_c00258{bottom:249.802500px;}
.y30_c00258{bottom:250.528500px;}
.y2f_c00258{bottom:250.744500px;}
.y2e_c00258{bottom:251.815500px;}
.y2d_c00258{bottom:252.123000px;}
.y2c_c00258{bottom:252.451500px;}
.y2b_c00258{bottom:265.491000px;}
.y2a_c00258{bottom:265.753500px;}
.y29_c00258{bottom:266.676000px;}
.y28_c00258{bottom:267.810000px;}
.y27_c00258{bottom:268.153500px;}
.y26_c00258{bottom:268.906500px;}
.y25_c00258{bottom:269.191500px;}
.y24_c00258{bottom:287.008500px;}
.y23_c00258{bottom:300.787500px;}
.y22_c00258{bottom:301.426500px;}
.y21_c00258{bottom:301.821000px;}
.y20_c00258{bottom:302.092500px;}
.y1f_c00258{bottom:302.586000px;}
.y1e_c00258{bottom:302.862000px;}
.y1d_c00258{bottom:303.486000px;}
.y1c_c00258{bottom:303.736500px;}
.y1b_c00258{bottom:304.222500px;}
.y1a_c00258{bottom:304.761000px;}
.y19_c00258{bottom:305.101500px;}
.y18_c00258{bottom:318.940500px;}
.y17_c00258{bottom:319.477500px;}
.y16_c00258{bottom:319.603500px;}
.y15_c00258{bottom:320.502000px;}
.y14_c00258{bottom:320.923500px;}
.y13_c00258{bottom:321.148500px;}
.y12_c00258{bottom:321.519000px;}
.y11_c00258{bottom:322.137000px;}
.y10_c00258{bottom:322.650000px;}
.yf_c00258{bottom:336.886500px;}
.ye_c00258{bottom:351.718500px;}
.yd_c00258{bottom:369.088500px;}
.yc_c00258{bottom:386.037000px;}
.yb_c00258{bottom:403.555500px;}
.ya_c00258{bottom:420.055500px;}
.y9_c00258{bottom:436.840500px;}
.y8_c00258{bottom:454.020000px;}
.y7_c00258{bottom:471.898500px;}
.y6_c00258{bottom:488.907000px;}
.y5_c00258{bottom:506.581500px;}
.y4_c00258{bottom:523.111500px;}
.y3_c00258{bottom:540.390000px;}
.y2_c00258{bottom:557.847000px;}
.y1_c00258{bottom:570.370500px;}
.hb_c00258{height:54.600000px;}
.h4_c00258{height:58.800000px;}
.h7_c00258{height:59.850000px;}
.h3_c00258{height:60.900000px;}
.hf_c00258{height:61.950000px;}
.hc_c00258{height:63.000000px;}
.hd_c00258{height:65.100000px;}
.h5_c00258{height:66.150000px;}
.h6_c00258{height:67.200000px;}
.ha_c00258{height:68.250000px;}
.h9_c00258{height:69.300000px;}
.h11_c00258{height:70.350000px;}
.he_c00258{height:71.400000px;}
.h8_c00258{height:72.450000px;}
.h10_c00258{height:74.550000px;}
.h2_c00258{height:130.200000px;}
.h1_c00258{height:618.750000px;}
.h0_c00258{height:619.050000px;}
.w0_c00258{width:359.100000px;}
.w1_c00258{width:359.250000px;}
.x0_c00258{left:0.000000px;}
.x5a_c00258{left:31.683000px;}
.x53_c00258{left:32.940000px;}
.x18_c00258{left:34.020000px;}
.xe_c00258{left:36.180000px;}
.x3_c00258{left:37.260000px;}
.x35_c00258{left:46.710000px;}
.x7c_c00258{left:47.794500px;}
.x4b_c00258{left:54.540000px;}
.x3b_c00258{left:57.240000px;}
.x2d_c00258{left:58.320000px;}
.x21_c00258{left:60.210000px;}
.x5e_c00258{left:62.154000px;}
.xf_c00258{left:63.720000px;}
.x40_c00258{left:65.610000px;}
.x9_c00258{left:68.310000px;}
.x29_c00258{left:69.390000px;}
.x56_c00258{left:72.223500px;}
.x2e_c00258{left:73.710000px;}
.x7e_c00258{left:75.567000px;}
.x10_c00258{left:79.110000px;}
.x4_c00258{left:81.270000px;}
.x36_c00258{left:82.350000px;}
.x3c_c00258{left:84.780000px;}
.x78_c00258{left:86.244000px;}
.x4c_c00258{left:89.100000px;}
.x19_c00258{left:90.180000px;}
.x72_c00258{left:91.300500px;}
.x41_c00258{left:93.690000px;}
.x80_c00258{left:95.694000px;}
.x75_c00258{left:99.079500px;}
.x37_c00258{left:100.170000px;}
.x11_c00258{left:101.520000px;}
.x1a_c00258{left:103.950000px;}
.x6e_c00258{left:105.586500px;}
.x22_c00258{left:111.780000px;}
.x6b_c00258{left:117.834000px;}
.x5_c00258{left:119.070000px;}
.x79_c00258{left:121.296000px;}
.x5b_c00258{left:122.677500px;}
.x4f_c00258{left:125.010000px;}
.x2a_c00258{left:126.090000px;}
.x23_c00258{left:130.410000px;}
.x2f_c00258{left:133.650000px;}
.x47_c00258{left:134.730000px;}
.x38_c00258{left:138.510000px;}
.x63_c00258{left:139.951500px;}
.x5f_c00258{left:143.415000px;}
.xa_c00258{left:146.070000px;}
.x57_c00258{left:148.344000px;}
.x81_c00258{left:150.301500px;}
.x4d_c00258{left:152.010000px;}
.x64_c00258{left:153.435000px;}
.x83_c00258{left:154.561500px;}
.x42_c00258{left:155.790000px;}
.x12_c00258{left:159.570000px;}
.x3d_c00258{left:161.460000px;}
.x6f_c00258{left:163.080000px;}
.x1b_c00258{left:164.160000px;}
.x58_c00258{left:165.649500px;}
.x1_c00258{left:167.130000px;}
.x73_c00258{left:169.122000px;}
.x43_c00258{left:170.640000px;}
.x30_c00258{left:171.990000px;}
.x39_c00258{left:173.610000px;}
.x76_c00258{left:174.729000px;}
.x66_c00258{left:176.454000px;}
.x13_c00258{left:179.010000px;}
.x6_c00258{left:180.630000px;}
.x48_c00258{left:183.600000px;}
.x70_c00258{left:186.288000px;}
.x1c_c00258{left:192.510000px;}
.x24_c00258{left:194.940000px;}
.x67_c00258{left:196.354500px;}
.x69_c00258{left:197.503500px;}
.xb_c00258{left:198.720000px;}
.x14_c00258{left:201.960000px;}
.x31_c00258{left:203.580000px;}
.x25_c00258{left:205.470000px;}
.x49_c00258{left:207.630000px;}
.x60_c00258{left:210.108000px;}
.xc_c00258{left:212.490000px;}
.x1d_c00258{left:214.920000px;}
.x2b_c00258{left:221.130000px;}
.x32_c00258{left:222.750000px;}
.x26_c00258{left:225.720000px;}
.x44_c00258{left:226.800000px;}
.x84_c00258{left:228.159000px;}
.x65_c00258{left:229.603500px;}
.x7d_c00258{left:231.124500px;}
.x5c_c00258{left:232.308000px;}
.x50_c00258{left:236.520000px;}
.x3e_c00258{left:240.840000px;}
.x15_c00258{left:244.350000px;}
.x7_c00258{left:247.320000px;}
.x5d_c00258{left:250.377000px;}
.x77_c00258{left:252.885000px;}
.x45_c00258{left:254.340000px;}
.x7f_c00258{left:255.534000px;}
.x1e_c00258{left:257.850000px;}
.x54_c00258{left:261.630000px;}
.x51_c00258{left:263.250000px;}
.x61_c00258{left:264.376500px;}
.x7a_c00258{left:265.765500px;}
.xd_c00258{left:267.030000px;}
.x8_c00258{left:270.810000px;}
.x4e_c00258{left:274.590000px;}
.x59_c00258{left:276.864000px;}
.x1f_c00258{left:278.100000px;}
.x62_c00258{left:279.853500px;}
.x16_c00258{left:281.880000px;}
.x68_c00258{left:283.297500px;}
.x6a_c00258{left:284.703000px;}
.x33_c00258{left:285.930000px;}
.x6d_c00258{left:288.364500px;}
.x27_c00258{left:289.440000px;}
.x6c_c00258{left:290.919000px;}
.x74_c00258{left:292.771500px;}
.x3a_c00258{left:294.570000px;}
.x3f_c00258{left:296.460000px;}
.x2_c00258{left:299.970000px;}
.x20_c00258{left:304.290000px;}
.x34_c00258{left:305.910000px;}
.x2c_c00258{left:307.260000px;}
.x7b_c00258{left:309.276000px;}
.x71_c00258{left:310.509000px;}
.x4a_c00258{left:313.470000px;}
.x28_c00258{left:316.440000px;}
.x46_c00258{left:317.520000px;}
.x17_c00258{left:318.600000px;}
.x55_c00258{left:319.680000px;}
.x82_c00258{left:321.706500px;}
.x52_c00258{left:326.430000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.fs9_c00258{font-size:48.533333pt;}
.fs2_c00258{font-size:52.266667pt;}
.fs5_c00258{font-size:53.200000pt;}
.fs1_c00258{font-size:54.133333pt;}
.fsd_c00258{font-size:55.066667pt;}
.fsa_c00258{font-size:56.000000pt;}
.fsb_c00258{font-size:57.866667pt;}
.fs3_c00258{font-size:58.800000pt;}
.fs4_c00258{font-size:59.733333pt;}
.fs8_c00258{font-size:60.666667pt;}
.fs7_c00258{font-size:61.600000pt;}
.fsf_c00258{font-size:62.533333pt;}
.fsc_c00258{font-size:63.466667pt;}
.fs6_c00258{font-size:64.400000pt;}
.fse_c00258{font-size:66.266667pt;}
.fs0_c00258{font-size:115.733333pt;}
.y0_c00258{bottom:0.000000pt;}
.y84_c00258{bottom:19.861333pt;}
.y83_c00258{bottom:20.969333pt;}
.y82_c00258{bottom:22.342667pt;}
.y81_c00258{bottom:23.241333pt;}
.y80_c00258{bottom:23.462667pt;}
.y7f_c00258{bottom:24.002667pt;}
.y7e_c00258{bottom:35.582667pt;}
.y7d_c00258{bottom:35.900000pt;}
.y7c_c00258{bottom:36.501333pt;}
.y7b_c00258{bottom:36.942667pt;}
.y7a_c00258{bottom:37.126667pt;}
.y79_c00258{bottom:37.258667pt;}
.y78_c00258{bottom:37.792000pt;}
.y77_c00258{bottom:37.908000pt;}
.y76_c00258{bottom:38.397333pt;}
.y75_c00258{bottom:51.730667pt;}
.y74_c00258{bottom:52.578667pt;}
.y73_c00258{bottom:52.808000pt;}
.y72_c00258{bottom:54.462667pt;}
.y71_c00258{bottom:54.970667pt;}
.y70_c00258{bottom:56.257333pt;}
.y6f_c00258{bottom:57.125333pt;}
.y6e_c00258{bottom:66.904000pt;}
.y6d_c00258{bottom:82.429333pt;}
.y6c_c00258{bottom:83.048000pt;}
.y6b_c00258{bottom:83.234667pt;}
.y6a_c00258{bottom:84.206667pt;}
.y69_c00258{bottom:85.102667pt;}
.y68_c00258{bottom:85.601333pt;}
.y67_c00258{bottom:85.917333pt;}
.y66_c00258{bottom:91.304000pt;}
.y65_c00258{bottom:112.478667pt;}
.y64_c00258{bottom:112.922667pt;}
.y63_c00258{bottom:113.894667pt;}
.y62_c00258{bottom:114.241333pt;}
.y61_c00258{bottom:115.121333pt;}
.y60_c00258{bottom:115.518667pt;}
.y5f_c00258{bottom:116.640000pt;}
.y5e_c00258{bottom:128.773333pt;}
.y5d_c00258{bottom:129.806667pt;}
.y5c_c00258{bottom:130.190667pt;}
.y5b_c00258{bottom:130.532000pt;}
.y5a_c00258{bottom:130.761333pt;}
.y59_c00258{bottom:131.638667pt;}
.y58_c00258{bottom:131.961333pt;}
.y57_c00258{bottom:132.478667pt;}
.y56_c00258{bottom:142.833333pt;}
.y55_c00258{bottom:144.274667pt;}
.y54_c00258{bottom:146.034667pt;}
.y53_c00258{bottom:146.633333pt;}
.y52_c00258{bottom:148.116000pt;}
.y51_c00258{bottom:149.322667pt;}
.y50_c00258{bottom:150.002667pt;}
.y4f_c00258{bottom:158.716000pt;}
.y4e_c00258{bottom:173.581333pt;}
.y4d_c00258{bottom:173.710667pt;}
.y4c_c00258{bottom:173.886667pt;}
.y4b_c00258{bottom:174.358667pt;}
.y4a_c00258{bottom:174.914667pt;}
.y49_c00258{bottom:175.517333pt;}
.y48_c00258{bottom:175.733333pt;}
.y47_c00258{bottom:176.194667pt;}
.y46_c00258{bottom:176.638667pt;}
.y45_c00258{bottom:189.074667pt;}
.y44_c00258{bottom:189.293333pt;}
.y43_c00258{bottom:189.866667pt;}
.y42_c00258{bottom:190.005333pt;}
.y41_c00258{bottom:190.673333pt;}
.y40_c00258{bottom:191.328000pt;}
.y3f_c00258{bottom:191.486667pt;}
.y3e_c00258{bottom:191.760000pt;}
.y3d_c00258{bottom:204.542667pt;}
.y3c_c00258{bottom:204.725333pt;}
.y3b_c00258{bottom:204.864000pt;}
.y3a_c00258{bottom:205.857333pt;}
.y39_c00258{bottom:206.158667pt;}
.y38_c00258{bottom:206.465333pt;}
.y37_c00258{bottom:207.448000pt;}
.y36_c00258{bottom:208.109333pt;}
.y35_c00258{bottom:208.321333pt;}
.y34_c00258{bottom:220.678667pt;}
.y33_c00258{bottom:220.973333pt;}
.y32_c00258{bottom:221.608000pt;}
.y31_c00258{bottom:222.046667pt;}
.y30_c00258{bottom:222.692000pt;}
.y2f_c00258{bottom:222.884000pt;}
.y2e_c00258{bottom:223.836000pt;}
.y2d_c00258{bottom:224.109333pt;}
.y2c_c00258{bottom:224.401333pt;}
.y2b_c00258{bottom:235.992000pt;}
.y2a_c00258{bottom:236.225333pt;}
.y29_c00258{bottom:237.045333pt;}
.y28_c00258{bottom:238.053333pt;}
.y27_c00258{bottom:238.358667pt;}
.y26_c00258{bottom:239.028000pt;}
.y25_c00258{bottom:239.281333pt;}
.y24_c00258{bottom:255.118667pt;}
.y23_c00258{bottom:267.366667pt;}
.y22_c00258{bottom:267.934667pt;}
.y21_c00258{bottom:268.285333pt;}
.y20_c00258{bottom:268.526667pt;}
.y1f_c00258{bottom:268.965333pt;}
.y1e_c00258{bottom:269.210667pt;}
.y1d_c00258{bottom:269.765333pt;}
.y1c_c00258{bottom:269.988000pt;}
.y1b_c00258{bottom:270.420000pt;}
.y1a_c00258{bottom:270.898667pt;}
.y19_c00258{bottom:271.201333pt;}
.y18_c00258{bottom:283.502667pt;}
.y17_c00258{bottom:283.980000pt;}
.y16_c00258{bottom:284.092000pt;}
.y15_c00258{bottom:284.890667pt;}
.y14_c00258{bottom:285.265333pt;}
.y13_c00258{bottom:285.465333pt;}
.y12_c00258{bottom:285.794667pt;}
.y11_c00258{bottom:286.344000pt;}
.y10_c00258{bottom:286.800000pt;}
.yf_c00258{bottom:299.454667pt;}
.ye_c00258{bottom:312.638667pt;}
.yd_c00258{bottom:328.078667pt;}
.yc_c00258{bottom:343.144000pt;}
.yb_c00258{bottom:358.716000pt;}
.ya_c00258{bottom:373.382667pt;}
.y9_c00258{bottom:388.302667pt;}
.y8_c00258{bottom:403.573333pt;}
.y7_c00258{bottom:419.465333pt;}
.y6_c00258{bottom:434.584000pt;}
.y5_c00258{bottom:450.294667pt;}
.y4_c00258{bottom:464.988000pt;}
.y3_c00258{bottom:480.346667pt;}
.y2_c00258{bottom:495.864000pt;}
.y1_c00258{bottom:506.996000pt;}
.hb_c00258{height:48.533333pt;}
.h4_c00258{height:52.266667pt;}
.h7_c00258{height:53.200000pt;}
.h3_c00258{height:54.133333pt;}
.hf_c00258{height:55.066667pt;}
.hc_c00258{height:56.000000pt;}
.hd_c00258{height:57.866667pt;}
.h5_c00258{height:58.800000pt;}
.h6_c00258{height:59.733333pt;}
.ha_c00258{height:60.666667pt;}
.h9_c00258{height:61.600000pt;}
.h11_c00258{height:62.533333pt;}
.he_c00258{height:63.466667pt;}
.h8_c00258{height:64.400000pt;}
.h10_c00258{height:66.266667pt;}
.h2_c00258{height:115.733333pt;}
.h1_c00258{height:550.000000pt;}
.h0_c00258{height:550.266667pt;}
.w0_c00258{width:319.200000pt;}
.w1_c00258{width:319.333333pt;}
.x0_c00258{left:0.000000pt;}
.x5a_c00258{left:28.162667pt;}
.x53_c00258{left:29.280000pt;}
.x18_c00258{left:30.240000pt;}
.xe_c00258{left:32.160000pt;}
.x3_c00258{left:33.120000pt;}
.x35_c00258{left:41.520000pt;}
.x7c_c00258{left:42.484000pt;}
.x4b_c00258{left:48.480000pt;}
.x3b_c00258{left:50.880000pt;}
.x2d_c00258{left:51.840000pt;}
.x21_c00258{left:53.520000pt;}
.x5e_c00258{left:55.248000pt;}
.xf_c00258{left:56.640000pt;}
.x40_c00258{left:58.320000pt;}
.x9_c00258{left:60.720000pt;}
.x29_c00258{left:61.680000pt;}
.x56_c00258{left:64.198667pt;}
.x2e_c00258{left:65.520000pt;}
.x7e_c00258{left:67.170667pt;}
.x10_c00258{left:70.320000pt;}
.x4_c00258{left:72.240000pt;}
.x36_c00258{left:73.200000pt;}
.x3c_c00258{left:75.360000pt;}
.x78_c00258{left:76.661333pt;}
.x4c_c00258{left:79.200000pt;}
.x19_c00258{left:80.160000pt;}
.x72_c00258{left:81.156000pt;}
.x41_c00258{left:83.280000pt;}
.x80_c00258{left:85.061333pt;}
.x75_c00258{left:88.070667pt;}
.x37_c00258{left:89.040000pt;}
.x11_c00258{left:90.240000pt;}
.x1a_c00258{left:92.400000pt;}
.x6e_c00258{left:93.854667pt;}
.x22_c00258{left:99.360000pt;}
.x6b_c00258{left:104.741333pt;}
.x5_c00258{left:105.840000pt;}
.x79_c00258{left:107.818667pt;}
.x5b_c00258{left:109.046667pt;}
.x4f_c00258{left:111.120000pt;}
.x2a_c00258{left:112.080000pt;}
.x23_c00258{left:115.920000pt;}
.x2f_c00258{left:118.800000pt;}
.x47_c00258{left:119.760000pt;}
.x38_c00258{left:123.120000pt;}
.x63_c00258{left:124.401333pt;}
.x5f_c00258{left:127.480000pt;}
.xa_c00258{left:129.840000pt;}
.x57_c00258{left:131.861333pt;}
.x81_c00258{left:133.601333pt;}
.x4d_c00258{left:135.120000pt;}
.x64_c00258{left:136.386667pt;}
.x83_c00258{left:137.388000pt;}
.x42_c00258{left:138.480000pt;}
.x12_c00258{left:141.840000pt;}
.x3d_c00258{left:143.520000pt;}
.x6f_c00258{left:144.960000pt;}
.x1b_c00258{left:145.920000pt;}
.x58_c00258{left:147.244000pt;}
.x1_c00258{left:148.560000pt;}
.x73_c00258{left:150.330667pt;}
.x43_c00258{left:151.680000pt;}
.x30_c00258{left:152.880000pt;}
.x39_c00258{left:154.320000pt;}
.x76_c00258{left:155.314667pt;}
.x66_c00258{left:156.848000pt;}
.x13_c00258{left:159.120000pt;}
.x6_c00258{left:160.560000pt;}
.x48_c00258{left:163.200000pt;}
.x70_c00258{left:165.589333pt;}
.x1c_c00258{left:171.120000pt;}
.x24_c00258{left:173.280000pt;}
.x67_c00258{left:174.537333pt;}
.x69_c00258{left:175.558667pt;}
.xb_c00258{left:176.640000pt;}
.x14_c00258{left:179.520000pt;}
.x31_c00258{left:180.960000pt;}
.x25_c00258{left:182.640000pt;}
.x49_c00258{left:184.560000pt;}
.x60_c00258{left:186.762667pt;}
.xc_c00258{left:188.880000pt;}
.x1d_c00258{left:191.040000pt;}
.x2b_c00258{left:196.560000pt;}
.x32_c00258{left:198.000000pt;}
.x26_c00258{left:200.640000pt;}
.x44_c00258{left:201.600000pt;}
.x84_c00258{left:202.808000pt;}
.x65_c00258{left:204.092000pt;}
.x7d_c00258{left:205.444000pt;}
.x5c_c00258{left:206.496000pt;}
.x50_c00258{left:210.240000pt;}
.x3e_c00258{left:214.080000pt;}
.x15_c00258{left:217.200000pt;}
.x7_c00258{left:219.840000pt;}
.x5d_c00258{left:222.557333pt;}
.x77_c00258{left:224.786667pt;}
.x45_c00258{left:226.080000pt;}
.x7f_c00258{left:227.141333pt;}
.x1e_c00258{left:229.200000pt;}
.x54_c00258{left:232.560000pt;}
.x51_c00258{left:234.000000pt;}
.x61_c00258{left:235.001333pt;}
.x7a_c00258{left:236.236000pt;}
.xd_c00258{left:237.360000pt;}
.x8_c00258{left:240.720000pt;}
.x4e_c00258{left:244.080000pt;}
.x59_c00258{left:246.101333pt;}
.x1f_c00258{left:247.200000pt;}
.x62_c00258{left:248.758667pt;}
.x16_c00258{left:250.560000pt;}
.x68_c00258{left:251.820000pt;}
.x6a_c00258{left:253.069333pt;}
.x33_c00258{left:254.160000pt;}
.x6d_c00258{left:256.324000pt;}
.x27_c00258{left:257.280000pt;}
.x6c_c00258{left:258.594667pt;}
.x74_c00258{left:260.241333pt;}
.x3a_c00258{left:261.840000pt;}
.x3f_c00258{left:263.520000pt;}
.x2_c00258{left:266.640000pt;}
.x20_c00258{left:270.480000pt;}
.x34_c00258{left:271.920000pt;}
.x2c_c00258{left:273.120000pt;}
.x7b_c00258{left:274.912000pt;}
.x71_c00258{left:276.008000pt;}
.x4a_c00258{left:278.640000pt;}
.x28_c00258{left:281.280000pt;}
.x46_c00258{left:282.240000pt;}
.x17_c00258{left:283.200000pt;}
.x55_c00258{left:284.160000pt;}
.x82_c00258{left:285.961333pt;}
.x52_c00258{left:290.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00259 {
    display:none;
  }
  .loading-indicator_c00259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00259 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00259 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00259" -> "#page-container .classname_c00259")
 */
.pf_c00259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00259 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00259 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00259 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00259 {overflow:visible;}
  }
}
.c_c00259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00259 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00259:after { /* webkit #35443 */
  content: '';
}
.t_c00259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00259 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00259 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00259 { /* info for Javascript */
  display:none;
}
.l_c00259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00259:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00259 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00259.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00259{transform:matrix(0.031840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00259{transform:matrix(0.092255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092255,0.000000,0.000000,0.250000,0,0);}
.me7_c00259{transform:matrix(0.142060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142060,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);}
.md7_c00259{transform:matrix(0.147255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147255,0.000000,0.000000,0.250000,0,0);}
.m86_c00259{transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.me9_c00259{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.meb_c00259{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.me8_c00259{transform:matrix(0.151305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151305,0.000000,0.000000,0.250000,0,0);}
.m2f_c00259{transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);}
.mc9_c00259{transform:matrix(0.154585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154585,0.000000,0.000000,0.250000,0,0);}
.m89_c00259{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.m5c_c00259{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m9f_c00259{transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);}
.ma7_c00259{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.mac_c00259{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.m8c_c00259{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m5d_c00259{transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);}
.m59_c00259{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m80_c00259{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m83_c00259{transform:matrix(0.166160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166160,0.000000,0.000000,0.250000,0,0);}
.m7d_c00259{transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);}
.mcf_c00259{transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);}
.m23_c00259{transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);}
.mda_c00259{transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);}
.m7e_c00259{transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);}
.m92_c00259{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);}
.m65_c00259{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m95_c00259{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173885,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00259{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m41_c00259{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mc0_c00259{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.me2_c00259{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m7c_c00259{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);}
.m3f_c00259{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.m82_c00259{transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);}
.ma8_c00259{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.m36_c00259{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m5b_c00259{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.me5_c00259{transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m77_c00259{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m8b_c00259{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m90_c00259{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.me0_c00259{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.mbc_c00259{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.mc7_c00259{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.mb8_c00259{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.mec_c00259{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.mea_c00259{transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182080,0.000000,0.000000,0.250000,0,0);}
.md3_c00259{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);}
.m63_c00259{transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);}
.m87_c00259{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);}
.m8e_c00259{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);}
.ma3_c00259{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m8d_c00259{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.m85_c00259{transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);}
.ma2_c00259{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.mc6_c00259{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00259{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.m75_c00259{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m98_c00259{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.md0_c00259{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.mc4_c00259{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m9e_c00259{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00259{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.m54_c00259{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m60_c00259{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.ma5_c00259{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m43_c00259{transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);}
.m46_c00259{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.md5_c00259{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m96_c00259{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00259{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m72_c00259{transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);}
.m88_c00259{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.mb2_c00259{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.md4_c00259{transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);}
.m68_c00259{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m84_c00259{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m7f_c00259{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m66_c00259{transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);}
.mbd_c00259{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.m94_c00259{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.me1_c00259{transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);}
.m34_c00259{transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);}
.m62_c00259{transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);}
.mcd_c00259{transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);}
.m39_c00259{transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);}
.m45_c00259{transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);}
.m56_c00259{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00259{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00259{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00259{transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);}
.ma0_c00259{transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00259{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.md9_c00259{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m58_c00259{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m5e_c00259{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00259{transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205315,0.000000,0.000000,0.250000,0,0);}
.m74_c00259{transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205335,0.000000,0.000000,0.250000,0,0);}
.m76_c00259{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.mab_c00259{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.m57_c00259{transform:matrix(0.205830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205830,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m61_c00259{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m3b_c00259{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.mc1_c00259{transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);}
.m25_c00259{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.mb9_c00259{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.md2_c00259{transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);}
.mdf_c00259{transform:matrix(0.206915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206915,0.000000,0.000000,0.250000,0,0);}
.maa_c00259{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m5f_c00259{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.md6_c00259{transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.mad_c00259{transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208205,0.000000,0.000000,0.250000,0,0);}
.me4_c00259{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m4e_c00259{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00259{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m6f_c00259{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.mdd_c00259{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.m9c_c00259{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m4b_c00259{transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);}
.ma4_c00259{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.mc8_c00259{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m64_c00259{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mce_c00259{transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m79_c00259{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mdb_c00259{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);}
.me6_c00259{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);}
.mb6_c00259{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.m42_c00259{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00259{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m38_c00259{transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);}
.md8_c00259{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m47_c00259{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.m51_c00259{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m5a_c00259{transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);}
.m50_c00259{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m53_c00259{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m93_c00259{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m9b_c00259{transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);}
.m7a_c00259{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.mca_c00259{transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.mb1_c00259{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.m35_c00259{transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);}
.mc5_c00259{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.mbf_c00259{transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);}
.m81_c00259{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m3a_c00259{transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);}
.mc3_c00259{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m40_c00259{transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);}
.mbe_c00259{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m97_c00259{transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224920,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.m6b_c00259{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00259{transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227310,0.000000,0.000000,0.250000,0,0);}
.m70_c00259{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00259{transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);}
.m67_c00259{transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);}
.m78_c00259{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.mb0_c00259{transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);}
.mb3_c00259{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.m4d_c00259{transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);}
.m99_c00259{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m73_c00259{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.mb7_c00259{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m3d_c00259{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00259{transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);}
.mb4_c00259{transform:matrix(0.234215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234215,0.000000,0.000000,0.250000,0,0);}
.m52_c00259{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m4c_c00259{transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);}
.me3_c00259{transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00259{transform:matrix(0.235530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235530,0.000000,0.000000,0.250000,0,0);}
.m4f_c00259{transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236190,0.000000,0.000000,0.250000,0,0);}
.m69_c00259{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.mc2_c00259{transform:matrix(0.237815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00259{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m71_c00259{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.mae_c00259{transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);}
.m6e_c00259{transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);}
.mde_c00259{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.md1_c00259{transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m91_c00259{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.maf_c00259{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m49_c00259{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m55_c00259{transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);}
.mcb_c00259{transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);}
.m44_c00259{transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);}
.mba_c00259{transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);}
.m31_c00259{transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);}
.m6d_c00259{transform:matrix(0.297880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297880,0.000000,0.000000,0.250000,0,0);}
.m48_c00259{transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00259{transform:matrix(0.383055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383055,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
.fc0_c00259{color:transparent;}
.fs6_c00259{font-size:58.800000px;}
.fs3_c00259{font-size:59.850000px;}
.fs8_c00259{font-size:60.900000px;}
.fs1_c00259{font-size:61.950000px;}
.fs7_c00259{font-size:63.000000px;}
.fs5_c00259{font-size:65.100000px;}
.fs2_c00259{font-size:66.150000px;}
.fs4_c00259{font-size:68.250000px;}
.fs9_c00259{font-size:69.300000px;}
.fs0_c00259{font-size:72.450000px;}
.fsa_c00259{font-size:73.500000px;}
.y0_c00259{bottom:0.000000px;}
.yd3_c00259{bottom:22.150500px;}
.yd4_c00259{bottom:22.350000px;}
.yd5_c00259{bottom:22.626000px;}
.yd6_c00259{bottom:23.404500px;}
.yd7_c00259{bottom:24.259500px;}
.yd8_c00259{bottom:24.520500px;}
.yca_c00259{bottom:38.625000px;}
.ycb_c00259{bottom:39.874500px;}
.ycc_c00259{bottom:40.321500px;}
.ycd_c00259{bottom:40.831500px;}
.yce_c00259{bottom:42.345000px;}
.ycf_c00259{bottom:42.841500px;}
.yd0_c00259{bottom:44.217000px;}
.yd1_c00259{bottom:44.815500px;}
.yd2_c00259{bottom:45.364500px;}
.yc3_c00259{bottom:55.633500px;}
.yc4_c00259{bottom:56.538000px;}
.yc5_c00259{bottom:56.965500px;}
.yc6_c00259{bottom:57.589500px;}
.yc7_c00259{bottom:58.492500px;}
.yc8_c00259{bottom:58.678500px;}
.yc9_c00259{bottom:59.670000px;}
.yba_c00259{bottom:73.177500px;}
.ybb_c00259{bottom:73.411500px;}
.ybc_c00259{bottom:73.621500px;}
.ybd_c00259{bottom:74.191500px;}
.ybe_c00259{bottom:74.680500px;}
.ybf_c00259{bottom:74.947500px;}
.yc0_c00259{bottom:75.715500px;}
.yc1_c00259{bottom:75.949500px;}
.yc2_c00259{bottom:76.608000px;}
.yb4_c00259{bottom:90.462000px;}
.yb5_c00259{bottom:91.303500px;}
.yb6_c00259{bottom:91.779000px;}
.yb7_c00259{bottom:93.165000px;}
.yb8_c00259{bottom:94.084500px;}
.yb9_c00259{bottom:95.187000px;}
.yad_c00259{bottom:107.199000px;}
.yae_c00259{bottom:107.794500px;}
.yaf_c00259{bottom:108.073500px;}
.yb0_c00259{bottom:109.026000px;}
.yb1_c00259{bottom:109.402500px;}
.yb2_c00259{bottom:110.425500px;}
.yb3_c00259{bottom:111.994500px;}
.ya5_c00259{bottom:124.747500px;}
.ya6_c00259{bottom:125.172000px;}
.ya7_c00259{bottom:126.025500px;}
.ya8_c00259{bottom:126.249000px;}
.ya9_c00259{bottom:127.026000px;}
.yaa_c00259{bottom:127.419000px;}
.yab_c00259{bottom:128.256000px;}
.yac_c00259{bottom:129.055500px;}
.y9e_c00259{bottom:142.026000px;}
.y9f_c00259{bottom:142.816500px;}
.ya0_c00259{bottom:143.820000px;}
.ya1_c00259{bottom:143.992500px;}
.ya2_c00259{bottom:144.220500px;}
.ya3_c00259{bottom:144.964500px;}
.ya4_c00259{bottom:145.839000px;}
.y97_c00259{bottom:160.116000px;}
.y98_c00259{bottom:160.374000px;}
.y99_c00259{bottom:160.902000px;}
.y9a_c00259{bottom:161.433000px;}
.y9b_c00259{bottom:162.127500px;}
.y9c_c00259{bottom:162.672000px;}
.y9d_c00259{bottom:162.811500px;}
.y8f_c00259{bottom:177.936000px;}
.y90_c00259{bottom:178.236000px;}
.y91_c00259{bottom:178.506000px;}
.y92_c00259{bottom:178.651500px;}
.y93_c00259{bottom:179.269500px;}
.y94_c00259{bottom:179.553000px;}
.y95_c00259{bottom:180.028500px;}
.y96_c00259{bottom:180.477000px;}
.y88_c00259{bottom:195.757500px;}
.y89_c00259{bottom:196.261500px;}
.y8a_c00259{bottom:196.339500px;}
.y8b_c00259{bottom:197.485500px;}
.y8c_c00259{bottom:197.794500px;}
.y8d_c00259{bottom:197.982000px;}
.y8e_c00259{bottom:198.822000px;}
.y87_c00259{bottom:214.513500px;}
.y86_c00259{bottom:231.049500px;}
.y85_c00259{bottom:248.472000px;}
.y7d_c00259{bottom:264.607500px;}
.y7e_c00259{bottom:264.999000px;}
.y7f_c00259{bottom:265.441500px;}
.y80_c00259{bottom:265.576500px;}
.y81_c00259{bottom:266.272500px;}
.y82_c00259{bottom:266.488500px;}
.y83_c00259{bottom:267.169500px;}
.y84_c00259{bottom:267.469500px;}
.y7c_c00259{bottom:282.747000px;}
.y74_c00259{bottom:298.086000px;}
.y75_c00259{bottom:298.267500px;}
.y76_c00259{bottom:298.746000px;}
.y77_c00259{bottom:299.286000px;}
.y78_c00259{bottom:299.542500px;}
.y79_c00259{bottom:300.231000px;}
.y7a_c00259{bottom:300.439500px;}
.y7b_c00259{bottom:300.633000px;}
.y73_c00259{bottom:317.032500px;}
.y6c_c00259{bottom:332.107500px;}
.y6d_c00259{bottom:332.731500px;}
.y6e_c00259{bottom:333.550500px;}
.y6f_c00259{bottom:333.772500px;}
.y70_c00259{bottom:334.488000px;}
.y71_c00259{bottom:335.131500px;}
.y72_c00259{bottom:336.855000px;}
.y63_c00259{bottom:349.659000px;}
.y64_c00259{bottom:350.076000px;}
.y65_c00259{bottom:350.383500px;}
.y66_c00259{bottom:350.716500px;}
.y67_c00259{bottom:351.538500px;}
.y68_c00259{bottom:352.243500px;}
.y69_c00259{bottom:352.801500px;}
.y6a_c00259{bottom:353.004000px;}
.y6b_c00259{bottom:353.347500px;}
.y5b_c00259{bottom:367.477500px;}
.y5c_c00259{bottom:368.149500px;}
.y5d_c00259{bottom:368.781000px;}
.y5e_c00259{bottom:368.913000px;}
.y5f_c00259{bottom:369.166500px;}
.y60_c00259{bottom:369.847500px;}
.y61_c00259{bottom:370.123500px;}
.y62_c00259{bottom:370.285500px;}
.y51_c00259{bottom:385.296000px;}
.y52_c00259{bottom:385.653000px;}
.y53_c00259{bottom:386.214000px;}
.y54_c00259{bottom:386.416500px;}
.y55_c00259{bottom:386.638500px;}
.y56_c00259{bottom:386.985000px;}
.y57_c00259{bottom:387.498000px;}
.y58_c00259{bottom:387.619500px;}
.y59_c00259{bottom:387.805500px;}
.y5a_c00259{bottom:388.000500px;}
.y49_c00259{bottom:401.766000px;}
.y4a_c00259{bottom:402.252000px;}
.y4b_c00259{bottom:402.514500px;}
.y4c_c00259{bottom:403.240500px;}
.y4d_c00259{bottom:403.555500px;}
.y4e_c00259{bottom:403.807500px;}
.y4f_c00259{bottom:404.685000px;}
.y50_c00259{bottom:404.886000px;}
.y40_c00259{bottom:418.776000px;}
.y41_c00259{bottom:419.179500px;}
.y42_c00259{bottom:419.365500px;}
.y43_c00259{bottom:420.091500px;}
.y44_c00259{bottom:420.295500px;}
.y45_c00259{bottom:420.910500px;}
.y46_c00259{bottom:421.153500px;}
.y47_c00259{bottom:421.485000px;}
.y48_c00259{bottom:422.142000px;}
.y38_c00259{bottom:436.324500px;}
.y39_c00259{bottom:436.690500px;}
.y3a_c00259{bottom:436.866000px;}
.y3b_c00259{bottom:437.566500px;}
.y3c_c00259{bottom:438.153000px;}
.y3d_c00259{bottom:438.348000px;}
.y3e_c00259{bottom:438.985500px;}
.y3f_c00259{bottom:439.362000px;}
.y2e_c00259{bottom:452.794500px;}
.y2f_c00259{bottom:453.109500px;}
.y30_c00259{bottom:453.831000px;}
.y31_c00259{bottom:453.981000px;}
.y32_c00259{bottom:454.423500px;}
.y33_c00259{bottom:454.804500px;}
.y34_c00259{bottom:455.001000px;}
.y35_c00259{bottom:455.733000px;}
.y36_c00259{bottom:455.869500px;}
.y37_c00259{bottom:456.048000px;}
.y26_c00259{bottom:470.616000px;}
.y27_c00259{bottom:470.904000px;}
.y28_c00259{bottom:471.558000px;}
.y29_c00259{bottom:472.057500px;}
.y2a_c00259{bottom:472.254000px;}
.y2b_c00259{bottom:472.617000px;}
.y2c_c00259{bottom:473.433000px;}
.y2d_c00259{bottom:473.763000px;}
.y1e_c00259{bottom:487.894500px;}
.y1f_c00259{bottom:488.332500px;}
.y20_c00259{bottom:488.431500px;}
.y21_c00259{bottom:489.297000px;}
.y22_c00259{bottom:489.460500px;}
.y23_c00259{bottom:490.179000px;}
.y24_c00259{bottom:491.055000px;}
.y25_c00259{bottom:491.230500px;}
.y18_c00259{bottom:505.173000px;}
.y19_c00259{bottom:505.954500px;}
.y1a_c00259{bottom:506.566500px;}
.y1b_c00259{bottom:507.370500px;}
.y1c_c00259{bottom:507.513000px;}
.y1d_c00259{bottom:508.300500px;}
.y11_c00259{bottom:522.181500px;}
.y12_c00259{bottom:522.784500px;}
.y13_c00259{bottom:523.335000px;}
.y14_c00259{bottom:523.753500px;}
.y15_c00259{bottom:524.019000px;}
.y16_c00259{bottom:524.635500px;}
.y17_c00259{bottom:525.396000px;}
.ya_c00259{bottom:538.651500px;}
.yb_c00259{bottom:539.193000px;}
.yc_c00259{bottom:539.685000px;}
.yd_c00259{bottom:540.255000px;}
.ye_c00259{bottom:541.012500px;}
.yf_c00259{bottom:542.137500px;}
.y10_c00259{bottom:542.496000px;}
.y2_c00259{bottom:556.201500px;}
.y3_c00259{bottom:556.606500px;}
.y4_c00259{bottom:556.882500px;}
.y5_c00259{bottom:557.200500px;}
.y6_c00259{bottom:558.352500px;}
.y7_c00259{bottom:558.780000px;}
.y8_c00259{bottom:559.740000px;}
.y9_c00259{bottom:560.020500px;}
.y1_c00259{bottom:572.254500px;}
.h8_c00259{height:58.800000px;}
.h5_c00259{height:59.850000px;}
.ha_c00259{height:60.900000px;}
.h3_c00259{height:61.950000px;}
.h9_c00259{height:63.000000px;}
.h7_c00259{height:65.100000px;}
.h4_c00259{height:66.150000px;}
.h6_c00259{height:68.250000px;}
.hb_c00259{height:69.300000px;}
.h2_c00259{height:72.450000px;}
.hc_c00259{height:73.500000px;}
.h1_c00259{height:618.750000px;}
.h0_c00259{height:619.050000px;}
.w0_c00259{width:359.100000px;}
.w1_c00259{width:359.250000px;}
.x0_c00259{left:0.000000px;}
.x27_c00259{left:34.660500px;}
.x3_c00259{left:43.114500px;}
.x3f_c00259{left:44.406000px;}
.x69_c00259{left:45.486000px;}
.x64_c00259{left:54.160500px;}
.x28_c00259{left:60.904500px;}
.x53_c00259{left:62.227500px;}
.x21_c00259{left:67.377000px;}
.x4f_c00259{left:68.851500px;}
.x72_c00259{left:70.173000px;}
.x4_c00259{left:72.003000px;}
.x61_c00259{left:73.171500px;}
.x1b_c00259{left:74.355000px;}
.x6a_c00259{left:75.472500px;}
.x33_c00259{left:77.305500px;}
.x40_c00259{left:80.056500px;}
.xa_c00259{left:81.730500px;}
.x39_c00259{left:84.388500px;}
.x78_c00259{left:87.190500px;}
.x2f_c00259{left:88.443000px;}
.x79_c00259{left:90.289500px;}
.x5_c00259{left:91.708500px;}
.x34_c00259{left:92.767500px;}
.x5d_c00259{left:94.501500px;}
.x65_c00259{left:96.219000px;}
.x10_c00259{left:97.830000px;}
.x75_c00259{left:99.870000px;}
.x66_c00259{left:102.769500px;}
.x3a_c00259{left:106.264500px;}
.x16_c00259{left:107.881500px;}
.x54_c00259{left:110.026500px;}
.x46_c00259{left:111.636000px;}
.x6_c00259{left:114.381000px;}
.xb_c00259{left:116.823000px;}
.x7f_c00259{left:118.804500px;}
.x73_c00259{left:120.382500px;}
.x22_c00259{left:121.864500px;}
.x59_c00259{left:128.319000px;}
.x29_c00259{left:133.537500px;}
.x41_c00259{left:136.200000px;}
.x50_c00259{left:137.701500px;}
.x7c_c00259{left:139.792500px;}
.x5a_c00259{left:141.874500px;}
.x1c_c00259{left:143.254500px;}
.x30_c00259{left:146.758500px;}
.x11_c00259{left:147.828000px;}
.x35_c00259{left:153.241500px;}
.x1d_c00259{left:154.885500px;}
.x42_c00259{left:156.405000px;}
.xc_c00259{left:157.531500px;}
.x17_c00259{left:158.914500px;}
.x23_c00259{left:163.497000px;}
.x6d_c00259{left:164.581500px;}
.x3b_c00259{left:166.743000px;}
.x2a_c00259{left:170.467500px;}
.x5e_c00259{left:174.151500px;}
.x1_c00259{left:175.500000px;}
.x43_c00259{left:178.548000px;}
.x24_c00259{left:179.913000px;}
.x6f_c00259{left:183.171000px;}
.x7d_c00259{left:184.330500px;}
.x12_c00259{left:185.845500px;}
.x47_c00259{left:188.011500px;}
.x51_c00259{left:189.811500px;}
.x3c_c00259{left:192.961500px;}
.x31_c00259{left:195.628500px;}
.x7_c00259{left:196.684500px;}
.x67_c00259{left:198.277500px;}
.x7a_c00259{left:200.772000px;}
.x2b_c00259{left:202.263000px;}
.x1e_c00259{left:206.175000px;}
.x6b_c00259{left:207.195000px;}
.x13_c00259{left:209.932500px;}
.xd_c00259{left:211.596000px;}
.x3d_c00259{left:213.996000px;}
.x4a_c00259{left:216.468000px;}
.x2c_c00259{left:218.592000px;}
.x36_c00259{left:221.497500px;}
.x68_c00259{left:223.986000px;}
.x18_c00259{left:225.855000px;}
.x2_c00259{left:227.340000px;}
.x80_c00259{left:228.397500px;}
.x4d_c00259{left:232.638000px;}
.x82_c00259{left:236.389500px;}
.x19_c00259{left:237.750000px;}
.x62_c00259{left:239.221500px;}
.x37_c00259{left:241.747500px;}
.x76_c00259{left:246.973500px;}
.x60_c00259{left:248.941500px;}
.x57_c00259{left:250.561500px;}
.x74_c00259{left:251.569500px;}
.x4b_c00259{left:253.711500px;}
.x6c_c00259{left:254.734500px;}
.x55_c00259{left:258.522000px;}
.x83_c00259{left:260.176500px;}
.x52_c00259{left:262.711500px;}
.x32_c00259{left:264.960000px;}
.x14_c00259{left:266.038500px;}
.x4c_c00259{left:267.228000px;}
.x1f_c00259{left:268.743000px;}
.x70_c00259{left:271.272000px;}
.x58_c00259{left:272.971500px;}
.x44_c00259{left:276.601500px;}
.x25_c00259{left:278.191500px;}
.x2d_c00259{left:279.538500px;}
.x20_c00259{left:281.236500px;}
.x7b_c00259{left:284.212500px;}
.x3e_c00259{left:287.094000px;}
.x81_c00259{left:288.231000px;}
.x6e_c00259{left:289.849500px;}
.x2e_c00259{left:290.947500px;}
.xe_c00259{left:291.979500px;}
.x8_c00259{left:295.827000px;}
.x56_c00259{left:298.731000px;}
.x5b_c00259{left:301.165500px;}
.x1a_c00259{left:303.351000px;}
.x26_c00259{left:305.731500px;}
.x48_c00259{left:309.003000px;}
.x45_c00259{left:314.637000px;}
.x9_c00259{left:315.817500px;}
.xf_c00259{left:317.628000px;}
.x63_c00259{left:320.221500px;}
.x5f_c00259{left:322.921500px;}
.x38_c00259{left:324.150000px;}
.x49_c00259{left:325.161000px;}
.x5c_c00259{left:331.149000px;}
.x7e_c00259{left:332.868000px;}
.x15_c00259{left:335.164500px;}
.x71_c00259{left:338.505000px;}
.x4e_c00259{left:340.336500px;}
.x77_c00259{left:345.019500px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fs6_c00259{font-size:52.266667pt;}
.fs3_c00259{font-size:53.200000pt;}
.fs8_c00259{font-size:54.133333pt;}
.fs1_c00259{font-size:55.066667pt;}
.fs7_c00259{font-size:56.000000pt;}
.fs5_c00259{font-size:57.866667pt;}
.fs2_c00259{font-size:58.800000pt;}
.fs4_c00259{font-size:60.666667pt;}
.fs9_c00259{font-size:61.600000pt;}
.fs0_c00259{font-size:64.400000pt;}
.fsa_c00259{font-size:65.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.yd3_c00259{bottom:19.689333pt;}
.yd4_c00259{bottom:19.866667pt;}
.yd5_c00259{bottom:20.112000pt;}
.yd6_c00259{bottom:20.804000pt;}
.yd7_c00259{bottom:21.564000pt;}
.yd8_c00259{bottom:21.796000pt;}
.yca_c00259{bottom:34.333333pt;}
.ycb_c00259{bottom:35.444000pt;}
.ycc_c00259{bottom:35.841333pt;}
.ycd_c00259{bottom:36.294667pt;}
.yce_c00259{bottom:37.640000pt;}
.ycf_c00259{bottom:38.081333pt;}
.yd0_c00259{bottom:39.304000pt;}
.yd1_c00259{bottom:39.836000pt;}
.yd2_c00259{bottom:40.324000pt;}
.yc3_c00259{bottom:49.452000pt;}
.yc4_c00259{bottom:50.256000pt;}
.yc5_c00259{bottom:50.636000pt;}
.yc6_c00259{bottom:51.190667pt;}
.yc7_c00259{bottom:51.993333pt;}
.yc8_c00259{bottom:52.158667pt;}
.yc9_c00259{bottom:53.040000pt;}
.yba_c00259{bottom:65.046667pt;}
.ybb_c00259{bottom:65.254667pt;}
.ybc_c00259{bottom:65.441333pt;}
.ybd_c00259{bottom:65.948000pt;}
.ybe_c00259{bottom:66.382667pt;}
.ybf_c00259{bottom:66.620000pt;}
.yc0_c00259{bottom:67.302667pt;}
.yc1_c00259{bottom:67.510667pt;}
.yc2_c00259{bottom:68.096000pt;}
.yb4_c00259{bottom:80.410667pt;}
.yb5_c00259{bottom:81.158667pt;}
.yb6_c00259{bottom:81.581333pt;}
.yb7_c00259{bottom:82.813333pt;}
.yb8_c00259{bottom:83.630667pt;}
.yb9_c00259{bottom:84.610667pt;}
.yad_c00259{bottom:95.288000pt;}
.yae_c00259{bottom:95.817333pt;}
.yaf_c00259{bottom:96.065333pt;}
.yb0_c00259{bottom:96.912000pt;}
.yb1_c00259{bottom:97.246667pt;}
.yb2_c00259{bottom:98.156000pt;}
.yb3_c00259{bottom:99.550667pt;}
.ya5_c00259{bottom:110.886667pt;}
.ya6_c00259{bottom:111.264000pt;}
.ya7_c00259{bottom:112.022667pt;}
.ya8_c00259{bottom:112.221333pt;}
.ya9_c00259{bottom:112.912000pt;}
.yaa_c00259{bottom:113.261333pt;}
.yab_c00259{bottom:114.005333pt;}
.yac_c00259{bottom:114.716000pt;}
.y9e_c00259{bottom:126.245333pt;}
.y9f_c00259{bottom:126.948000pt;}
.ya0_c00259{bottom:127.840000pt;}
.ya1_c00259{bottom:127.993333pt;}
.ya2_c00259{bottom:128.196000pt;}
.ya3_c00259{bottom:128.857333pt;}
.ya4_c00259{bottom:129.634667pt;}
.y97_c00259{bottom:142.325333pt;}
.y98_c00259{bottom:142.554667pt;}
.y99_c00259{bottom:143.024000pt;}
.y9a_c00259{bottom:143.496000pt;}
.y9b_c00259{bottom:144.113333pt;}
.y9c_c00259{bottom:144.597333pt;}
.y9d_c00259{bottom:144.721333pt;}
.y8f_c00259{bottom:158.165333pt;}
.y90_c00259{bottom:158.432000pt;}
.y91_c00259{bottom:158.672000pt;}
.y92_c00259{bottom:158.801333pt;}
.y93_c00259{bottom:159.350667pt;}
.y94_c00259{bottom:159.602667pt;}
.y95_c00259{bottom:160.025333pt;}
.y96_c00259{bottom:160.424000pt;}
.y88_c00259{bottom:174.006667pt;}
.y89_c00259{bottom:174.454667pt;}
.y8a_c00259{bottom:174.524000pt;}
.y8b_c00259{bottom:175.542667pt;}
.y8c_c00259{bottom:175.817333pt;}
.y8d_c00259{bottom:175.984000pt;}
.y8e_c00259{bottom:176.730667pt;}
.y87_c00259{bottom:190.678667pt;}
.y86_c00259{bottom:205.377333pt;}
.y85_c00259{bottom:220.864000pt;}
.y7d_c00259{bottom:235.206667pt;}
.y7e_c00259{bottom:235.554667pt;}
.y7f_c00259{bottom:235.948000pt;}
.y80_c00259{bottom:236.068000pt;}
.y81_c00259{bottom:236.686667pt;}
.y82_c00259{bottom:236.878667pt;}
.y83_c00259{bottom:237.484000pt;}
.y84_c00259{bottom:237.750667pt;}
.y7c_c00259{bottom:251.330667pt;}
.y74_c00259{bottom:264.965333pt;}
.y75_c00259{bottom:265.126667pt;}
.y76_c00259{bottom:265.552000pt;}
.y77_c00259{bottom:266.032000pt;}
.y78_c00259{bottom:266.260000pt;}
.y79_c00259{bottom:266.872000pt;}
.y7a_c00259{bottom:267.057333pt;}
.y7b_c00259{bottom:267.229333pt;}
.y73_c00259{bottom:281.806667pt;}
.y6c_c00259{bottom:295.206667pt;}
.y6d_c00259{bottom:295.761333pt;}
.y6e_c00259{bottom:296.489333pt;}
.y6f_c00259{bottom:296.686667pt;}
.y70_c00259{bottom:297.322667pt;}
.y71_c00259{bottom:297.894667pt;}
.y72_c00259{bottom:299.426667pt;}
.y63_c00259{bottom:310.808000pt;}
.y64_c00259{bottom:311.178667pt;}
.y65_c00259{bottom:311.452000pt;}
.y66_c00259{bottom:311.748000pt;}
.y67_c00259{bottom:312.478667pt;}
.y68_c00259{bottom:313.105333pt;}
.y69_c00259{bottom:313.601333pt;}
.y6a_c00259{bottom:313.781333pt;}
.y6b_c00259{bottom:314.086667pt;}
.y5b_c00259{bottom:326.646667pt;}
.y5c_c00259{bottom:327.244000pt;}
.y5d_c00259{bottom:327.805333pt;}
.y5e_c00259{bottom:327.922667pt;}
.y5f_c00259{bottom:328.148000pt;}
.y60_c00259{bottom:328.753333pt;}
.y61_c00259{bottom:328.998667pt;}
.y62_c00259{bottom:329.142667pt;}
.y51_c00259{bottom:342.485333pt;}
.y52_c00259{bottom:342.802667pt;}
.y53_c00259{bottom:343.301333pt;}
.y54_c00259{bottom:343.481333pt;}
.y55_c00259{bottom:343.678667pt;}
.y56_c00259{bottom:343.986667pt;}
.y57_c00259{bottom:344.442667pt;}
.y58_c00259{bottom:344.550667pt;}
.y59_c00259{bottom:344.716000pt;}
.y5a_c00259{bottom:344.889333pt;}
.y49_c00259{bottom:357.125333pt;}
.y4a_c00259{bottom:357.557333pt;}
.y4b_c00259{bottom:357.790667pt;}
.y4c_c00259{bottom:358.436000pt;}
.y4d_c00259{bottom:358.716000pt;}
.y4e_c00259{bottom:358.940000pt;}
.y4f_c00259{bottom:359.720000pt;}
.y50_c00259{bottom:359.898667pt;}
.y40_c00259{bottom:372.245333pt;}
.y41_c00259{bottom:372.604000pt;}
.y42_c00259{bottom:372.769333pt;}
.y43_c00259{bottom:373.414667pt;}
.y44_c00259{bottom:373.596000pt;}
.y45_c00259{bottom:374.142667pt;}
.y46_c00259{bottom:374.358667pt;}
.y47_c00259{bottom:374.653333pt;}
.y48_c00259{bottom:375.237333pt;}
.y38_c00259{bottom:387.844000pt;}
.y39_c00259{bottom:388.169333pt;}
.y3a_c00259{bottom:388.325333pt;}
.y3b_c00259{bottom:388.948000pt;}
.y3c_c00259{bottom:389.469333pt;}
.y3d_c00259{bottom:389.642667pt;}
.y3e_c00259{bottom:390.209333pt;}
.y3f_c00259{bottom:390.544000pt;}
.y2e_c00259{bottom:402.484000pt;}
.y2f_c00259{bottom:402.764000pt;}
.y30_c00259{bottom:403.405333pt;}
.y31_c00259{bottom:403.538667pt;}
.y32_c00259{bottom:403.932000pt;}
.y33_c00259{bottom:404.270667pt;}
.y34_c00259{bottom:404.445333pt;}
.y35_c00259{bottom:405.096000pt;}
.y36_c00259{bottom:405.217333pt;}
.y37_c00259{bottom:405.376000pt;}
.y26_c00259{bottom:418.325333pt;}
.y27_c00259{bottom:418.581333pt;}
.y28_c00259{bottom:419.162667pt;}
.y29_c00259{bottom:419.606667pt;}
.y2a_c00259{bottom:419.781333pt;}
.y2b_c00259{bottom:420.104000pt;}
.y2c_c00259{bottom:420.829333pt;}
.y2d_c00259{bottom:421.122667pt;}
.y1e_c00259{bottom:433.684000pt;}
.y1f_c00259{bottom:434.073333pt;}
.y20_c00259{bottom:434.161333pt;}
.y21_c00259{bottom:434.930667pt;}
.y22_c00259{bottom:435.076000pt;}
.y23_c00259{bottom:435.714667pt;}
.y24_c00259{bottom:436.493333pt;}
.y25_c00259{bottom:436.649333pt;}
.y18_c00259{bottom:449.042667pt;}
.y19_c00259{bottom:449.737333pt;}
.y1a_c00259{bottom:450.281333pt;}
.y1b_c00259{bottom:450.996000pt;}
.y1c_c00259{bottom:451.122667pt;}
.y1d_c00259{bottom:451.822667pt;}
.y11_c00259{bottom:464.161333pt;}
.y12_c00259{bottom:464.697333pt;}
.y13_c00259{bottom:465.186667pt;}
.y14_c00259{bottom:465.558667pt;}
.y15_c00259{bottom:465.794667pt;}
.y16_c00259{bottom:466.342667pt;}
.y17_c00259{bottom:467.018667pt;}
.ya_c00259{bottom:478.801333pt;}
.yb_c00259{bottom:479.282667pt;}
.yc_c00259{bottom:479.720000pt;}
.yd_c00259{bottom:480.226667pt;}
.ye_c00259{bottom:480.900000pt;}
.yf_c00259{bottom:481.900000pt;}
.y10_c00259{bottom:482.218667pt;}
.y2_c00259{bottom:494.401333pt;}
.y3_c00259{bottom:494.761333pt;}
.y4_c00259{bottom:495.006667pt;}
.y5_c00259{bottom:495.289333pt;}
.y6_c00259{bottom:496.313333pt;}
.y7_c00259{bottom:496.693333pt;}
.y8_c00259{bottom:497.546667pt;}
.y9_c00259{bottom:497.796000pt;}
.y1_c00259{bottom:508.670667pt;}
.h8_c00259{height:52.266667pt;}
.h5_c00259{height:53.200000pt;}
.ha_c00259{height:54.133333pt;}
.h3_c00259{height:55.066667pt;}
.h9_c00259{height:56.000000pt;}
.h7_c00259{height:57.866667pt;}
.h4_c00259{height:58.800000pt;}
.h6_c00259{height:60.666667pt;}
.hb_c00259{height:61.600000pt;}
.h2_c00259{height:64.400000pt;}
.hc_c00259{height:65.333333pt;}
.h1_c00259{height:550.000000pt;}
.h0_c00259{height:550.266667pt;}
.w0_c00259{width:319.200000pt;}
.w1_c00259{width:319.333333pt;}
.x0_c00259{left:0.000000pt;}
.x27_c00259{left:30.809333pt;}
.x3_c00259{left:38.324000pt;}
.x3f_c00259{left:39.472000pt;}
.x69_c00259{left:40.432000pt;}
.x64_c00259{left:48.142667pt;}
.x28_c00259{left:54.137333pt;}
.x53_c00259{left:55.313333pt;}
.x21_c00259{left:59.890667pt;}
.x4f_c00259{left:61.201333pt;}
.x72_c00259{left:62.376000pt;}
.x4_c00259{left:64.002667pt;}
.x61_c00259{left:65.041333pt;}
.x1b_c00259{left:66.093333pt;}
.x6a_c00259{left:67.086667pt;}
.x33_c00259{left:68.716000pt;}
.x40_c00259{left:71.161333pt;}
.xa_c00259{left:72.649333pt;}
.x39_c00259{left:75.012000pt;}
.x78_c00259{left:77.502667pt;}
.x2f_c00259{left:78.616000pt;}
.x79_c00259{left:80.257333pt;}
.x5_c00259{left:81.518667pt;}
.x34_c00259{left:82.460000pt;}
.x5d_c00259{left:84.001333pt;}
.x65_c00259{left:85.528000pt;}
.x10_c00259{left:86.960000pt;}
.x75_c00259{left:88.773333pt;}
.x66_c00259{left:91.350667pt;}
.x3a_c00259{left:94.457333pt;}
.x16_c00259{left:95.894667pt;}
.x54_c00259{left:97.801333pt;}
.x46_c00259{left:99.232000pt;}
.x6_c00259{left:101.672000pt;}
.xb_c00259{left:103.842667pt;}
.x7f_c00259{left:105.604000pt;}
.x73_c00259{left:107.006667pt;}
.x22_c00259{left:108.324000pt;}
.x59_c00259{left:114.061333pt;}
.x29_c00259{left:118.700000pt;}
.x41_c00259{left:121.066667pt;}
.x50_c00259{left:122.401333pt;}
.x7c_c00259{left:124.260000pt;}
.x5a_c00259{left:126.110667pt;}
.x1c_c00259{left:127.337333pt;}
.x30_c00259{left:130.452000pt;}
.x11_c00259{left:131.402667pt;}
.x35_c00259{left:136.214667pt;}
.x1d_c00259{left:137.676000pt;}
.x42_c00259{left:139.026667pt;}
.xc_c00259{left:140.028000pt;}
.x17_c00259{left:141.257333pt;}
.x23_c00259{left:145.330667pt;}
.x6d_c00259{left:146.294667pt;}
.x3b_c00259{left:148.216000pt;}
.x2a_c00259{left:151.526667pt;}
.x5e_c00259{left:154.801333pt;}
.x1_c00259{left:156.000000pt;}
.x43_c00259{left:158.709333pt;}
.x24_c00259{left:159.922667pt;}
.x6f_c00259{left:162.818667pt;}
.x7d_c00259{left:163.849333pt;}
.x12_c00259{left:165.196000pt;}
.x47_c00259{left:167.121333pt;}
.x51_c00259{left:168.721333pt;}
.x3c_c00259{left:171.521333pt;}
.x31_c00259{left:173.892000pt;}
.x7_c00259{left:174.830667pt;}
.x67_c00259{left:176.246667pt;}
.x7a_c00259{left:178.464000pt;}
.x2b_c00259{left:179.789333pt;}
.x1e_c00259{left:183.266667pt;}
.x6b_c00259{left:184.173333pt;}
.x13_c00259{left:186.606667pt;}
.xd_c00259{left:188.085333pt;}
.x3d_c00259{left:190.218667pt;}
.x4a_c00259{left:192.416000pt;}
.x2c_c00259{left:194.304000pt;}
.x36_c00259{left:196.886667pt;}
.x68_c00259{left:199.098667pt;}
.x18_c00259{left:200.760000pt;}
.x2_c00259{left:202.080000pt;}
.x80_c00259{left:203.020000pt;}
.x4d_c00259{left:206.789333pt;}
.x82_c00259{left:210.124000pt;}
.x19_c00259{left:211.333333pt;}
.x62_c00259{left:212.641333pt;}
.x37_c00259{left:214.886667pt;}
.x76_c00259{left:219.532000pt;}
.x60_c00259{left:221.281333pt;}
.x57_c00259{left:222.721333pt;}
.x74_c00259{left:223.617333pt;}
.x4b_c00259{left:225.521333pt;}
.x6c_c00259{left:226.430667pt;}
.x55_c00259{left:229.797333pt;}
.x83_c00259{left:231.268000pt;}
.x52_c00259{left:233.521333pt;}
.x32_c00259{left:235.520000pt;}
.x14_c00259{left:236.478667pt;}
.x4c_c00259{left:237.536000pt;}
.x1f_c00259{left:238.882667pt;}
.x70_c00259{left:241.130667pt;}
.x58_c00259{left:242.641333pt;}
.x44_c00259{left:245.868000pt;}
.x25_c00259{left:247.281333pt;}
.x2d_c00259{left:248.478667pt;}
.x20_c00259{left:249.988000pt;}
.x7b_c00259{left:252.633333pt;}
.x3e_c00259{left:255.194667pt;}
.x81_c00259{left:256.205333pt;}
.x6e_c00259{left:257.644000pt;}
.x2e_c00259{left:258.620000pt;}
.xe_c00259{left:259.537333pt;}
.x8_c00259{left:262.957333pt;}
.x56_c00259{left:265.538667pt;}
.x5b_c00259{left:267.702667pt;}
.x1a_c00259{left:269.645333pt;}
.x26_c00259{left:271.761333pt;}
.x48_c00259{left:274.669333pt;}
.x45_c00259{left:279.677333pt;}
.x9_c00259{left:280.726667pt;}
.xf_c00259{left:282.336000pt;}
.x63_c00259{left:284.641333pt;}
.x5f_c00259{left:287.041333pt;}
.x38_c00259{left:288.133333pt;}
.x49_c00259{left:289.032000pt;}
.x5c_c00259{left:294.354667pt;}
.x7e_c00259{left:295.882667pt;}
.x15_c00259{left:297.924000pt;}
.x71_c00259{left:300.893333pt;}
.x4e_c00259{left:302.521333pt;}
.x77_c00259{left:306.684000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00260 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00260 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00260 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00260 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00260.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c00260{transform:matrix(0.011542,0.000265,-0.005748,0.249934,0,0);-ms-transform:matrix(0.011542,0.000265,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.011542,0.000265,-0.005748,0.249934,0,0);}
.mcc_c00260{transform:matrix(0.027968,0.000643,-0.005748,0.249934,0,0);-ms-transform:matrix(0.027968,0.000643,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.027968,0.000643,-0.005748,0.249934,0,0);}
.mcb_c00260{transform:matrix(0.059174,0.001361,-0.005748,0.249934,0,0);-ms-transform:matrix(0.059174,0.001361,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.059174,0.001361,-0.005748,0.249934,0,0);}
.mbb_c00260{transform:matrix(0.063763,0.001467,-0.005748,0.249934,0,0);-ms-transform:matrix(0.063763,0.001467,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.063763,0.001467,-0.005748,0.249934,0,0);}
.mbc_c00260{transform:matrix(0.071476,0.001644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.071476,0.001644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.071476,0.001644,-0.005748,0.249934,0,0);}
.m1_c00260{transform:matrix(0.083703,0.001925,-0.005748,0.249934,0,0);-ms-transform:matrix(0.083703,0.001925,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.083703,0.001925,-0.005748,0.249934,0,0);}
.mc6_c00260{transform:matrix(0.085737,0.001972,-0.005748,0.249934,0,0);-ms-transform:matrix(0.085737,0.001972,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.085737,0.001972,-0.005748,0.249934,0,0);}
.mb9_c00260{transform:matrix(0.087187,0.002005,-0.005748,0.249934,0,0);-ms-transform:matrix(0.087187,0.002005,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.087187,0.002005,-0.005748,0.249934,0,0);}
.mbd_c00260{transform:matrix(0.092371,0.002125,-0.005748,0.249934,0,0);-ms-transform:matrix(0.092371,0.002125,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.092371,0.002125,-0.005748,0.249934,0,0);}
.m37_c00260{transform:matrix(0.096869,0.002228,-0.005748,0.249934,0,0);-ms-transform:matrix(0.096869,0.002228,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.096869,0.002228,-0.005748,0.249934,0,0);}
.m5b_c00260{transform:matrix(0.108766,0.002502,-0.005748,0.249934,0,0);-ms-transform:matrix(0.108766,0.002502,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.108766,0.002502,-0.005748,0.249934,0,0);}
.mba_c00260{transform:matrix(0.124562,0.002865,-0.005748,0.249934,0,0);-ms-transform:matrix(0.124562,0.002865,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.124562,0.002865,-0.005748,0.249934,0,0);}
.mc7_c00260{transform:matrix(0.125632,0.002890,-0.005748,0.249934,0,0);-ms-transform:matrix(0.125632,0.002890,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.125632,0.002890,-0.005748,0.249934,0,0);}
.m8_c00260{transform:matrix(0.125887,0.002895,-0.005748,0.249934,0,0);-ms-transform:matrix(0.125887,0.002895,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.125887,0.002895,-0.005748,0.249934,0,0);}
.m11_c00260{transform:matrix(0.133490,0.003070,-0.005748,0.249934,0,0);-ms-transform:matrix(0.133490,0.003070,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.133490,0.003070,-0.005748,0.249934,0,0);}
.m10_c00260{transform:matrix(0.137654,0.003166,-0.005748,0.249934,0,0);-ms-transform:matrix(0.137654,0.003166,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.137654,0.003166,-0.005748,0.249934,0,0);}
.me_c00260{transform:matrix(0.140323,0.003227,-0.005748,0.249934,0,0);-ms-transform:matrix(0.140323,0.003227,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.140323,0.003227,-0.005748,0.249934,0,0);}
.m9d_c00260{transform:matrix(0.141018,0.003243,-0.005748,0.249934,0,0);-ms-transform:matrix(0.141018,0.003243,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.141018,0.003243,-0.005748,0.249934,0,0);}
.mc5_c00260{transform:matrix(0.141508,0.003255,-0.005748,0.249934,0,0);-ms-transform:matrix(0.141508,0.003255,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.141508,0.003255,-0.005748,0.249934,0,0);}
.mc9_c00260{transform:matrix(0.146276,0.003364,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146276,0.003364,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146276,0.003364,-0.005748,0.249934,0,0);}
.m97_c00260{transform:matrix(0.148421,0.003414,-0.005748,0.249934,0,0);-ms-transform:matrix(0.148421,0.003414,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.148421,0.003414,-0.005748,0.249934,0,0);}
.me8_c00260{transform:matrix(0.148561,0.003417,-0.005748,0.249934,0,0);-ms-transform:matrix(0.148561,0.003417,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.148561,0.003417,-0.005748,0.249934,0,0);}
.m2e_c00260{transform:matrix(0.150775,0.003468,-0.005748,0.249934,0,0);-ms-transform:matrix(0.150775,0.003468,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.150775,0.003468,-0.005748,0.249934,0,0);}
.mcd_c00260{transform:matrix(0.151120,0.003476,-0.005748,0.249934,0,0);-ms-transform:matrix(0.151120,0.003476,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.151120,0.003476,-0.005748,0.249934,0,0);}
.m93_c00260{transform:matrix(0.152280,0.003502,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152280,0.003502,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152280,0.003502,-0.005748,0.249934,0,0);}
.mca_c00260{transform:matrix(0.153135,0.003522,-0.005748,0.249934,0,0);-ms-transform:matrix(0.153135,0.003522,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.153135,0.003522,-0.005748,0.249934,0,0);}
.mf_c00260{transform:matrix(0.156044,0.003589,-0.005748,0.249934,0,0);-ms-transform:matrix(0.156044,0.003589,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.156044,0.003589,-0.005748,0.249934,0,0);}
.m7f_c00260{transform:matrix(0.157738,0.003628,-0.005748,0.249934,0,0);-ms-transform:matrix(0.157738,0.003628,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.157738,0.003628,-0.005748,0.249934,0,0);}
.m21_c00260{transform:matrix(0.157953,0.003633,-0.005748,0.249934,0,0);-ms-transform:matrix(0.157953,0.003633,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.157953,0.003633,-0.005748,0.249934,0,0);}
.m69_c00260{transform:matrix(0.158368,0.003642,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158368,0.003642,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158368,0.003642,-0.005748,0.249934,0,0);}
.m54_c00260{transform:matrix(0.158748,0.003651,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158748,0.003651,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158748,0.003651,-0.005748,0.249934,0,0);}
.m81_c00260{transform:matrix(0.159138,0.003660,-0.005748,0.249934,0,0);-ms-transform:matrix(0.159138,0.003660,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.159138,0.003660,-0.005748,0.249934,0,0);}
.mb_c00260{transform:matrix(0.160028,0.003681,-0.005748,0.249934,0,0);-ms-transform:matrix(0.160028,0.003681,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.160028,0.003681,-0.005748,0.249934,0,0);}
.m5_c00260{transform:matrix(0.160897,0.003701,-0.005748,0.249934,0,0);-ms-transform:matrix(0.160897,0.003701,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.160897,0.003701,-0.005748,0.249934,0,0);}
.me6_c00260{transform:matrix(0.161132,0.003706,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161132,0.003706,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161132,0.003706,-0.005748,0.249934,0,0);}
.m70_c00260{transform:matrix(0.161607,0.003717,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161607,0.003717,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161607,0.003717,-0.005748,0.249934,0,0);}
.m94_c00260{transform:matrix(0.161867,0.003723,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161867,0.003723,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161867,0.003723,-0.005748,0.249934,0,0);}
.m63_c00260{transform:matrix(0.162127,0.003729,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162127,0.003729,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162127,0.003729,-0.005748,0.249934,0,0);}
.m47_c00260{transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);}
.m96_c00260{transform:matrix(0.162682,0.003742,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162682,0.003742,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162682,0.003742,-0.005748,0.249934,0,0);}
.m76_c00260{transform:matrix(0.164931,0.003793,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164931,0.003793,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164931,0.003793,-0.005748,0.249934,0,0);}
.m98_c00260{transform:matrix(0.164966,0.003794,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164966,0.003794,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164966,0.003794,-0.005748,0.249934,0,0);}
.m4c_c00260{transform:matrix(0.165556,0.003808,-0.005748,0.249934,0,0);-ms-transform:matrix(0.165556,0.003808,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.165556,0.003808,-0.005748,0.249934,0,0);}
.m7b_c00260{transform:matrix(0.167071,0.003843,-0.005748,0.249934,0,0);-ms-transform:matrix(0.167071,0.003843,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.167071,0.003843,-0.005748,0.249934,0,0);}
.mcf_c00260{transform:matrix(0.167346,0.003849,-0.005748,0.249934,0,0);-ms-transform:matrix(0.167346,0.003849,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.167346,0.003849,-0.005748,0.249934,0,0);}
.m2f_c00260{transform:matrix(0.168670,0.003879,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168670,0.003879,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168670,0.003879,-0.005748,0.249934,0,0);}
.m87_c00260{transform:matrix(0.169245,0.003893,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169245,0.003893,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169245,0.003893,-0.005748,0.249934,0,0);}
.m95_c00260{transform:matrix(0.169485,0.003898,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169485,0.003898,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169485,0.003898,-0.005748,0.249934,0,0);}
.m34_c00260{transform:matrix(0.170585,0.003923,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170585,0.003923,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170585,0.003923,-0.005748,0.249934,0,0);}
.m24_c00260{transform:matrix(0.170710,0.003926,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170710,0.003926,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170710,0.003926,-0.005748,0.249934,0,0);}
.m2d_c00260{transform:matrix(0.170925,0.003931,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170925,0.003931,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170925,0.003931,-0.005748,0.249934,0,0);}
.m85_c00260{transform:matrix(0.171055,0.003934,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171055,0.003934,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171055,0.003934,-0.005748,0.249934,0,0);}
.md3_c00260{transform:matrix(0.171120,0.003936,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171120,0.003936,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171120,0.003936,-0.005748,0.249934,0,0);}
.m25_c00260{transform:matrix(0.171140,0.003936,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171140,0.003936,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171140,0.003936,-0.005748,0.249934,0,0);}
.med_c00260{transform:matrix(0.171385,0.003942,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171385,0.003942,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171385,0.003942,-0.005748,0.249934,0,0);}
.m18_c00260{transform:matrix(0.172139,0.003959,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172139,0.003959,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172139,0.003959,-0.005748,0.249934,0,0);}
.md_c00260{transform:matrix(0.172309,0.003963,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172309,0.003963,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172309,0.003963,-0.005748,0.249934,0,0);}
.m59_c00260{transform:matrix(0.172639,0.003971,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172639,0.003971,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172639,0.003971,-0.005748,0.249934,0,0);}
.m4a_c00260{transform:matrix(0.172679,0.003972,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172679,0.003972,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172679,0.003972,-0.005748,0.249934,0,0);}
.m1f_c00260{transform:matrix(0.172824,0.003975,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172824,0.003975,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172824,0.003975,-0.005748,0.249934,0,0);}
.mce_c00260{transform:matrix(0.173344,0.003987,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173344,0.003987,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173344,0.003987,-0.005748,0.249934,0,0);}
.me9_c00260{transform:matrix(0.173434,0.003989,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173434,0.003989,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173434,0.003989,-0.005748,0.249934,0,0);}
.m40_c00260{transform:matrix(0.173479,0.003990,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173479,0.003990,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173479,0.003990,-0.005748,0.249934,0,0);}
.mae_c00260{transform:matrix(0.173524,0.003991,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173524,0.003991,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173524,0.003991,-0.005748,0.249934,0,0);}
.m56_c00260{transform:matrix(0.173699,0.003995,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173699,0.003995,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173699,0.003995,-0.005748,0.249934,0,0);}
.m75_c00260{transform:matrix(0.174269,0.004008,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174269,0.004008,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174269,0.004008,-0.005748,0.249934,0,0);}
.m90_c00260{transform:matrix(0.174304,0.004009,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174304,0.004009,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174304,0.004009,-0.005748,0.249934,0,0);}
.m41_c00260{transform:matrix(0.174394,0.004011,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174394,0.004011,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174394,0.004011,-0.005748,0.249934,0,0);}
.m48_c00260{transform:matrix(0.174579,0.004015,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174579,0.004015,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174579,0.004015,-0.005748,0.249934,0,0);}
.m39_c00260{transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175169,0.004029,-0.005748,0.249934,0,0);}
.m6e_c00260{transform:matrix(0.175634,0.004040,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175634,0.004040,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175634,0.004040,-0.005748,0.249934,0,0);}
.m9a_c00260{transform:matrix(0.176738,0.004065,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176738,0.004065,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176738,0.004065,-0.005748,0.249934,0,0);}
.md2_c00260{transform:matrix(0.176763,0.004066,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176763,0.004066,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176763,0.004066,-0.005748,0.249934,0,0);}
.mc_c00260{transform:matrix(0.176988,0.004071,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176988,0.004071,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176988,0.004071,-0.005748,0.249934,0,0);}
.m82_c00260{transform:matrix(0.177063,0.004072,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177063,0.004072,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177063,0.004072,-0.005748,0.249934,0,0);}
.m8d_c00260{transform:matrix(0.177128,0.004074,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177128,0.004074,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177128,0.004074,-0.005748,0.249934,0,0);}
.m42_c00260{transform:matrix(0.177353,0.004079,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177353,0.004079,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177353,0.004079,-0.005748,0.249934,0,0);}
.m80_c00260{transform:matrix(0.177468,0.004082,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177468,0.004082,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177468,0.004082,-0.005748,0.249934,0,0);}
.m38_c00260{transform:matrix(0.177598,0.004085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177598,0.004085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177598,0.004085,-0.005748,0.249934,0,0);}
.m9e_c00260{transform:matrix(0.178918,0.004115,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178918,0.004115,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178918,0.004115,-0.005748,0.249934,0,0);}
.ma4_c00260{transform:matrix(0.179358,0.004125,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179358,0.004125,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179358,0.004125,-0.005748,0.249934,0,0);}
.m7a_c00260{transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);}
.m4f_c00260{transform:matrix(0.179538,0.004129,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179538,0.004129,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179538,0.004129,-0.005748,0.249934,0,0);}
.mbe_c00260{transform:matrix(0.179697,0.004133,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179697,0.004133,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179697,0.004133,-0.005748,0.249934,0,0);}
.m5a_c00260{transform:matrix(0.180377,0.004149,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180377,0.004149,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180377,0.004149,-0.005748,0.249934,0,0);}
.md1_c00260{transform:matrix(0.180912,0.004161,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180912,0.004161,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180912,0.004161,-0.005748,0.249934,0,0);}
.m22_c00260{transform:matrix(0.181157,0.004167,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181157,0.004167,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181157,0.004167,-0.005748,0.249934,0,0);}
.m1d_c00260{transform:matrix(0.181212,0.004168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181212,0.004168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181212,0.004168,-0.005748,0.249934,0,0);}
.m7c_c00260{transform:matrix(0.181742,0.004180,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181742,0.004180,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181742,0.004180,-0.005748,0.249934,0,0);}
.m72_c00260{transform:matrix(0.181947,0.004185,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181947,0.004185,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181947,0.004185,-0.005748,0.249934,0,0);}
.mb7_c00260{transform:matrix(0.182017,0.004186,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182017,0.004186,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182017,0.004186,-0.005748,0.249934,0,0);}
.m77_c00260{transform:matrix(0.182487,0.004197,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182487,0.004197,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182487,0.004197,-0.005748,0.249934,0,0);}
.m68_c00260{transform:matrix(0.182527,0.004198,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182527,0.004198,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182527,0.004198,-0.005748,0.249934,0,0);}
.md7_c00260{transform:matrix(0.182817,0.004205,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182817,0.004205,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182817,0.004205,-0.005748,0.249934,0,0);}
.m36_c00260{transform:matrix(0.183057,0.004210,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183057,0.004210,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183057,0.004210,-0.005748,0.249934,0,0);}
.m6a_c00260{transform:matrix(0.183202,0.004214,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183202,0.004214,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183202,0.004214,-0.005748,0.249934,0,0);}
.m89_c00260{transform:matrix(0.183227,0.004214,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183227,0.004214,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183227,0.004214,-0.005748,0.249934,0,0);}
.m92_c00260{transform:matrix(0.183481,0.004220,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183481,0.004220,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183481,0.004220,-0.005748,0.249934,0,0);}
.m35_c00260{transform:matrix(0.183646,0.004224,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183646,0.004224,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183646,0.004224,-0.005748,0.249934,0,0);}
.m7e_c00260{transform:matrix(0.184106,0.004234,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184106,0.004234,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184106,0.004234,-0.005748,0.249934,0,0);}
.m74_c00260{transform:matrix(0.184216,0.004237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184216,0.004237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184216,0.004237,-0.005748,0.249934,0,0);}
.m4d_c00260{transform:matrix(0.184461,0.004243,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184461,0.004243,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184461,0.004243,-0.005748,0.249934,0,0);}
.m23_c00260{transform:matrix(0.184676,0.004248,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184676,0.004248,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184676,0.004248,-0.005748,0.249934,0,0);}
.m91_c00260{transform:matrix(0.184746,0.004249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184746,0.004249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184746,0.004249,-0.005748,0.249934,0,0);}
.m65_c00260{transform:matrix(0.185071,0.004257,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185071,0.004257,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185071,0.004257,-0.005748,0.249934,0,0);}
.ma9_c00260{transform:matrix(0.185091,0.004257,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185091,0.004257,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185091,0.004257,-0.005748,0.249934,0,0);}
.m84_c00260{transform:matrix(0.185361,0.004263,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185361,0.004263,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185361,0.004263,-0.005748,0.249934,0,0);}
.ma5_c00260{transform:matrix(0.185766,0.004273,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185766,0.004273,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185766,0.004273,-0.005748,0.249934,0,0);}
.m3b_c00260{transform:matrix(0.186261,0.004284,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186261,0.004284,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186261,0.004284,-0.005748,0.249934,0,0);}
.mc8_c00260{transform:matrix(0.186686,0.004294,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186686,0.004294,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186686,0.004294,-0.005748,0.249934,0,0);}
.m13_c00260{transform:matrix(0.186836,0.004297,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186836,0.004297,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186836,0.004297,-0.005748,0.249934,0,0);}
.m49_c00260{transform:matrix(0.186916,0.004299,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186916,0.004299,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186916,0.004299,-0.005748,0.249934,0,0);}
.m26_c00260{transform:matrix(0.187865,0.004321,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187865,0.004321,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187865,0.004321,-0.005748,0.249934,0,0);}
.m50_c00260{transform:matrix(0.187930,0.004322,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187930,0.004322,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187930,0.004322,-0.005748,0.249934,0,0);}
.ma7_c00260{transform:matrix(0.188250,0.004330,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188250,0.004330,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188250,0.004330,-0.005748,0.249934,0,0);}
.m51_c00260{transform:matrix(0.188830,0.004343,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188830,0.004343,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188830,0.004343,-0.005748,0.249934,0,0);}
.m3a_c00260{transform:matrix(0.189800,0.004365,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189800,0.004365,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189800,0.004365,-0.005748,0.249934,0,0);}
.m33_c00260{transform:matrix(0.189890,0.004367,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189890,0.004367,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189890,0.004367,-0.005748,0.249934,0,0);}
.m6_c00260{transform:matrix(0.189950,0.004369,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189950,0.004369,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189950,0.004369,-0.005748,0.249934,0,0);}
.m57_c00260{transform:matrix(0.190455,0.004380,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190455,0.004380,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190455,0.004380,-0.005748,0.249934,0,0);}
.m1c_c00260{transform:matrix(0.190900,0.004391,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190900,0.004391,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190900,0.004391,-0.005748,0.249934,0,0);}
.m44_c00260{transform:matrix(0.191614,0.004407,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191614,0.004407,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191614,0.004407,-0.005748,0.249934,0,0);}
.m1a_c00260{transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);}
.mef_c00260{transform:matrix(0.192274,0.004422,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192274,0.004422,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192274,0.004422,-0.005748,0.249934,0,0);}
.mec_c00260{transform:matrix(0.192959,0.004438,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192959,0.004438,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192959,0.004438,-0.005748,0.249934,0,0);}
.m64_c00260{transform:matrix(0.192974,0.004438,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192974,0.004438,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192974,0.004438,-0.005748,0.249934,0,0);}
.m88_c00260{transform:matrix(0.193139,0.004442,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193139,0.004442,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193139,0.004442,-0.005748,0.249934,0,0);}
.mee_c00260{transform:matrix(0.193339,0.004447,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193339,0.004447,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193339,0.004447,-0.005748,0.249934,0,0);}
.mf0_c00260{transform:matrix(0.193544,0.004452,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193544,0.004452,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193544,0.004452,-0.005748,0.249934,0,0);}
.mb5_c00260{transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);}
.m1b_c00260{transform:matrix(0.195363,0.004493,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195363,0.004493,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195363,0.004493,-0.005748,0.249934,0,0);}
.m7d_c00260{transform:matrix(0.195618,0.004499,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195618,0.004499,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195618,0.004499,-0.005748,0.249934,0,0);}
.m7_c00260{transform:matrix(0.196123,0.004511,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196123,0.004511,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196123,0.004511,-0.005748,0.249934,0,0);}
.meb_c00260{transform:matrix(0.196268,0.004514,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196268,0.004514,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196268,0.004514,-0.005748,0.249934,0,0);}
.m52_c00260{transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196328,0.004516,-0.005748,0.249934,0,0);}
.m14_c00260{transform:matrix(0.196533,0.004520,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196533,0.004520,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196533,0.004520,-0.005748,0.249934,0,0);}
.mf2_c00260{transform:matrix(0.196843,0.004527,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196843,0.004527,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196843,0.004527,-0.005748,0.249934,0,0);}
.m53_c00260{transform:matrix(0.197528,0.004543,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197528,0.004543,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197528,0.004543,-0.005748,0.249934,0,0);}
.m5d_c00260{transform:matrix(0.197568,0.004544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197568,0.004544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197568,0.004544,-0.005748,0.249934,0,0);}
.m55_c00260{transform:matrix(0.197583,0.004544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197583,0.004544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197583,0.004544,-0.005748,0.249934,0,0);}
.m79_c00260{transform:matrix(0.197813,0.004550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197813,0.004550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197813,0.004550,-0.005748,0.249934,0,0);}
.m27_c00260{transform:matrix(0.197828,0.004550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197828,0.004550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197828,0.004550,-0.005748,0.249934,0,0);}
.maf_c00260{transform:matrix(0.198128,0.004557,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198128,0.004557,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198128,0.004557,-0.005748,0.249934,0,0);}
.ma6_c00260{transform:matrix(0.198637,0.004569,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198637,0.004569,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198637,0.004569,-0.005748,0.249934,0,0);}
.m6b_c00260{transform:matrix(0.198647,0.004569,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198647,0.004569,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198647,0.004569,-0.005748,0.249934,0,0);}
.m61_c00260{transform:matrix(0.199732,0.004594,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199732,0.004594,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199732,0.004594,-0.005748,0.249934,0,0);}
.m32_c00260{transform:matrix(0.200207,0.004605,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200207,0.004605,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200207,0.004605,-0.005748,0.249934,0,0);}
.mf3_c00260{transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.200952,0.004622,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200952,0.004622,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200952,0.004622,-0.005748,0.249934,0,0);}
.m71_c00260{transform:matrix(0.201132,0.004626,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201132,0.004626,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201132,0.004626,-0.005748,0.249934,0,0);}
.mdb_c00260{transform:matrix(0.201197,0.004628,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201197,0.004628,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201197,0.004628,-0.005748,0.249934,0,0);}
.me5_c00260{transform:matrix(0.201357,0.004631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201357,0.004631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201357,0.004631,-0.005748,0.249934,0,0);}
.m5f_c00260{transform:matrix(0.201902,0.004644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201902,0.004644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201902,0.004644,-0.005748,0.249934,0,0);}
.mf1_c00260{transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202501,0.004658,-0.005748,0.249934,0,0);}
.m19_c00260{transform:matrix(0.202571,0.004659,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202571,0.004659,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202571,0.004659,-0.005748,0.249934,0,0);}
.me7_c00260{transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);}
.m30_c00260{transform:matrix(0.203276,0.004675,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203276,0.004675,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203276,0.004675,-0.005748,0.249934,0,0);}
.m8c_c00260{transform:matrix(0.204066,0.004694,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204066,0.004694,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204066,0.004694,-0.005748,0.249934,0,0);}
.m46_c00260{transform:matrix(0.204271,0.004698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204271,0.004698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204271,0.004698,-0.005748,0.249934,0,0);}
.m8a_c00260{transform:matrix(0.204946,0.004714,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204946,0.004714,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204946,0.004714,-0.005748,0.249934,0,0);}
.m9b_c00260{transform:matrix(0.205541,0.004727,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205541,0.004727,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205541,0.004727,-0.005748,0.249934,0,0);}
.m9_c00260{transform:matrix(0.205761,0.004732,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205761,0.004732,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205761,0.004732,-0.005748,0.249934,0,0);}
.mea_c00260{transform:matrix(0.206485,0.004749,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206485,0.004749,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206485,0.004749,-0.005748,0.249934,0,0);}
.md8_c00260{transform:matrix(0.206795,0.004756,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206795,0.004756,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206795,0.004756,-0.005748,0.249934,0,0);}
.m99_c00260{transform:matrix(0.207735,0.004778,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207735,0.004778,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207735,0.004778,-0.005748,0.249934,0,0);}
.mde_c00260{transform:matrix(0.208345,0.004792,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208345,0.004792,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208345,0.004792,-0.005748,0.249934,0,0);}
.m2b_c00260{transform:matrix(0.208530,0.004796,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208530,0.004796,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208530,0.004796,-0.005748,0.249934,0,0);}
.m9f_c00260{transform:matrix(0.208795,0.004802,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208795,0.004802,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208795,0.004802,-0.005748,0.249934,0,0);}
.me0_c00260{transform:matrix(0.209175,0.004811,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209175,0.004811,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209175,0.004811,-0.005748,0.249934,0,0);}
.md9_c00260{transform:matrix(0.209335,0.004815,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209335,0.004815,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209335,0.004815,-0.005748,0.249934,0,0);}
.m86_c00260{transform:matrix(0.209600,0.004821,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209600,0.004821,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209600,0.004821,-0.005748,0.249934,0,0);}
.m58_c00260{transform:matrix(0.209914,0.004828,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209914,0.004828,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209914,0.004828,-0.005748,0.249934,0,0);}
.ma8_c00260{transform:matrix(0.210469,0.004841,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210469,0.004841,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210469,0.004841,-0.005748,0.249934,0,0);}
.m3f_c00260{transform:matrix(0.210589,0.004844,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210589,0.004844,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210589,0.004844,-0.005748,0.249934,0,0);}
.m1e_c00260{transform:matrix(0.211494,0.004864,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211494,0.004864,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211494,0.004864,-0.005748,0.249934,0,0);}
.mdc_c00260{transform:matrix(0.212779,0.004894,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212779,0.004894,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212779,0.004894,-0.005748,0.249934,0,0);}
.m60_c00260{transform:matrix(0.212969,0.004898,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212969,0.004898,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212969,0.004898,-0.005748,0.249934,0,0);}
.m2a_c00260{transform:matrix(0.213439,0.004909,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213439,0.004909,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213439,0.004909,-0.005748,0.249934,0,0);}
.md5_c00260{transform:matrix(0.213773,0.004917,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213773,0.004917,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213773,0.004917,-0.005748,0.249934,0,0);}
.m43_c00260{transform:matrix(0.213838,0.004918,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213838,0.004918,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213838,0.004918,-0.005748,0.249934,0,0);}
.mad_c00260{transform:matrix(0.213958,0.004921,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213958,0.004921,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213958,0.004921,-0.005748,0.249934,0,0);}
.mdf_c00260{transform:matrix(0.215248,0.004951,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215248,0.004951,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215248,0.004951,-0.005748,0.249934,0,0);}
.me2_c00260{transform:matrix(0.215678,0.004961,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215678,0.004961,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215678,0.004961,-0.005748,0.249934,0,0);}
.ma0_c00260{transform:matrix(0.215708,0.004961,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215708,0.004961,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215708,0.004961,-0.005748,0.249934,0,0);}
.ma2_c00260{transform:matrix(0.216238,0.004973,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216238,0.004973,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216238,0.004973,-0.005748,0.249934,0,0);}
.ma1_c00260{transform:matrix(0.216563,0.004981,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216563,0.004981,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216563,0.004981,-0.005748,0.249934,0,0);}
.m29_c00260{transform:matrix(0.217328,0.004999,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217328,0.004999,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217328,0.004999,-0.005748,0.249934,0,0);}
.m20_c00260{transform:matrix(0.219182,0.005041,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219182,0.005041,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219182,0.005041,-0.005748,0.249934,0,0);}
.me4_c00260{transform:matrix(0.219272,0.005043,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219272,0.005043,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219272,0.005043,-0.005748,0.249934,0,0);}
.m73_c00260{transform:matrix(0.220117,0.005063,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220117,0.005063,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220117,0.005063,-0.005748,0.249934,0,0);}
.m66_c00260{transform:matrix(0.220892,0.005081,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220892,0.005081,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220892,0.005081,-0.005748,0.249934,0,0);}
.mb4_c00260{transform:matrix(0.221256,0.005089,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221256,0.005089,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221256,0.005089,-0.005748,0.249934,0,0);}
.mc1_c00260{transform:matrix(0.221361,0.005091,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221361,0.005091,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221361,0.005091,-0.005748,0.249934,0,0);}
.m5e_c00260{transform:matrix(0.222416,0.005116,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222416,0.005116,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222416,0.005116,-0.005748,0.249934,0,0);}
.m6f_c00260{transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222831,0.005125,-0.005748,0.249934,0,0);}
.ma_c00260{transform:matrix(0.223471,0.005140,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223471,0.005140,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223471,0.005140,-0.005748,0.249934,0,0);}
.m8b_c00260{transform:matrix(0.223816,0.005148,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223816,0.005148,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223816,0.005148,-0.005748,0.249934,0,0);}
.mdd_c00260{transform:matrix(0.224321,0.005159,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224321,0.005159,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224321,0.005159,-0.005748,0.249934,0,0);}
.mb2_c00260{transform:matrix(0.225050,0.005176,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225050,0.005176,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225050,0.005176,-0.005748,0.249934,0,0);}
.m83_c00260{transform:matrix(0.225550,0.005188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225550,0.005188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225550,0.005188,-0.005748,0.249934,0,0);}
.m5c_c00260{transform:matrix(0.226165,0.005202,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226165,0.005202,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226165,0.005202,-0.005748,0.249934,0,0);}
.m31_c00260{transform:matrix(0.226630,0.005212,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226630,0.005212,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226630,0.005212,-0.005748,0.249934,0,0);}
.md0_c00260{transform:matrix(0.227920,0.005242,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227920,0.005242,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227920,0.005242,-0.005748,0.249934,0,0);}
.mb6_c00260{transform:matrix(0.228794,0.005262,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228794,0.005262,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228794,0.005262,-0.005748,0.249934,0,0);}
.m62_c00260{transform:matrix(0.229614,0.005281,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229614,0.005281,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229614,0.005281,-0.005748,0.249934,0,0);}
.m3e_c00260{transform:matrix(0.229694,0.005283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229694,0.005283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229694,0.005283,-0.005748,0.249934,0,0);}
.m2_c00260{transform:matrix(0.230189,0.005294,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230189,0.005294,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230189,0.005294,-0.005748,0.249934,0,0);}
.m2c_c00260{transform:matrix(0.230979,0.005313,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230979,0.005313,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230979,0.005313,-0.005748,0.249934,0,0);}
.m3d_c00260{transform:matrix(0.231329,0.005321,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231329,0.005321,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231329,0.005321,-0.005748,0.249934,0,0);}
.m15_c00260{transform:matrix(0.232109,0.005338,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232109,0.005338,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232109,0.005338,-0.005748,0.249934,0,0);}
.md6_c00260{transform:matrix(0.235168,0.005409,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235168,0.005409,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235168,0.005409,-0.005748,0.249934,0,0);}
.m16_c00260{transform:matrix(0.236303,0.005435,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236303,0.005435,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236303,0.005435,-0.005748,0.249934,0,0);}
.md4_c00260{transform:matrix(0.240571,0.005533,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240571,0.005533,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240571,0.005533,-0.005748,0.249934,0,0);}
.m78_c00260{transform:matrix(0.240926,0.005541,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240926,0.005541,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240926,0.005541,-0.005748,0.249934,0,0);}
.m4b_c00260{transform:matrix(0.242641,0.005581,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242641,0.005581,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242641,0.005581,-0.005748,0.249934,0,0);}
.mac_c00260{transform:matrix(0.245405,0.005644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245405,0.005644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245405,0.005644,-0.005748,0.249934,0,0);}
.mda_c00260{transform:matrix(0.248384,0.005713,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248384,0.005713,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248384,0.005713,-0.005748,0.249934,0,0);}
.m28_c00260{transform:matrix(0.249079,0.005729,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249079,0.005729,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249079,0.005729,-0.005748,0.249934,0,0);}
.ma3_c00260{transform:matrix(0.250904,0.005771,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250904,0.005771,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250904,0.005771,-0.005748,0.249934,0,0);}
.m6c_c00260{transform:matrix(0.254478,0.005853,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254478,0.005853,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254478,0.005853,-0.005748,0.249934,0,0);}
.mb8_c00260{transform:matrix(0.260756,0.005997,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260756,0.005997,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260756,0.005997,-0.005748,0.249934,0,0);}
.mb3_c00260{transform:matrix(0.261406,0.006012,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261406,0.006012,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261406,0.006012,-0.005748,0.249934,0,0);}
.m17_c00260{transform:matrix(0.262840,0.006045,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262840,0.006045,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262840,0.006045,-0.005748,0.249934,0,0);}
.maa_c00260{transform:matrix(0.263920,0.006070,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263920,0.006070,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263920,0.006070,-0.005748,0.249934,0,0);}
.m3_c00260{transform:matrix(0.264985,0.006095,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264985,0.006095,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264985,0.006095,-0.005748,0.249934,0,0);}
.mc4_c00260{transform:matrix(0.279821,0.006436,-0.005748,0.249934,0,0);-ms-transform:matrix(0.279821,0.006436,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.279821,0.006436,-0.005748,0.249934,0,0);}
.mc3_c00260{transform:matrix(0.297071,0.006833,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297071,0.006833,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297071,0.006833,-0.005748,0.249934,0,0);}
.mc2_c00260{transform:matrix(0.298386,0.006863,-0.005748,0.249934,0,0);-ms-transform:matrix(0.298386,0.006863,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.298386,0.006863,-0.005748,0.249934,0,0);}
.m6d_c00260{transform:matrix(0.298481,0.006865,-0.005748,0.249934,0,0);-ms-transform:matrix(0.298481,0.006865,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.298481,0.006865,-0.005748,0.249934,0,0);}
.m67_c00260{transform:matrix(0.312797,0.007194,-0.005748,0.249934,0,0);-ms-transform:matrix(0.312797,0.007194,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.312797,0.007194,-0.005748,0.249934,0,0);}
.mbf_c00260{transform:matrix(0.319785,0.007355,-0.005748,0.249934,0,0);-ms-transform:matrix(0.319785,0.007355,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.319785,0.007355,-0.005748,0.249934,0,0);}
.m9c_c00260{transform:matrix(0.322935,0.007427,-0.005748,0.249934,0,0);-ms-transform:matrix(0.322935,0.007427,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.322935,0.007427,-0.005748,0.249934,0,0);}
.mb1_c00260{transform:matrix(0.340950,0.007842,-0.005748,0.249934,0,0);-ms-transform:matrix(0.340950,0.007842,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.340950,0.007842,-0.005748,0.249934,0,0);}
.mab_c00260{transform:matrix(0.344709,0.007928,-0.005748,0.249934,0,0);-ms-transform:matrix(0.344709,0.007928,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.344709,0.007928,-0.005748,0.249934,0,0);}
.m4_c00260{transform:matrix(0.347793,0.007999,-0.005748,0.249934,0,0);-ms-transform:matrix(0.347793,0.007999,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.347793,0.007999,-0.005748,0.249934,0,0);}
.m45_c00260{transform:matrix(0.353726,0.008136,-0.005748,0.249934,0,0);-ms-transform:matrix(0.353726,0.008136,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.353726,0.008136,-0.005748,0.249934,0,0);}
.m8f_c00260{transform:matrix(0.353746,0.008136,-0.005748,0.249934,0,0);-ms-transform:matrix(0.353746,0.008136,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.353746,0.008136,-0.005748,0.249934,0,0);}
.m4e_c00260{transform:matrix(0.406013,0.009338,-0.005748,0.249934,0,0);-ms-transform:matrix(0.406013,0.009338,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.406013,0.009338,-0.005748,0.249934,0,0);}
.me3_c00260{transform:matrix(0.440658,0.010135,-0.005748,0.249934,0,0);-ms-transform:matrix(0.440658,0.010135,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.440658,0.010135,-0.005748,0.249934,0,0);}
.mc0_c00260{transform:matrix(0.458679,0.010550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.458679,0.010550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.458679,0.010550,-0.005748,0.249934,0,0);}
.m8e_c00260{transform:matrix(0.475234,0.010930,-0.005748,0.249934,0,0);-ms-transform:matrix(0.475234,0.010930,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.475234,0.010930,-0.005748,0.249934,0,0);}
.m0_c00260{transform:matrix(0.673142,0.015482,-0.005748,0.249934,0,0);-ms-transform:matrix(0.673142,0.015482,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.673142,0.015482,-0.005748,0.249934,0,0);}
.me1_c00260{transform:matrix(0.760864,0.017500,-0.005748,0.249934,0,0);-ms-transform:matrix(0.760864,0.017500,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.760864,0.017500,-0.005748,0.249934,0,0);}
.mb0_c00260{transform:matrix(0.772671,0.017771,-0.005748,0.249934,0,0);-ms-transform:matrix(0.772671,0.017771,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.772671,0.017771,-0.005748,0.249934,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
.fc0_c00260{color:transparent;}
.fs12_c00260{font-size:52.513884px;}
.fse_c00260{font-size:55.664717px;}
.fs6_c00260{font-size:59.865828px;}
.fsd_c00260{font-size:60.916106px;}
.fs9_c00260{font-size:61.966384px;}
.fs11_c00260{font-size:63.016661px;}
.fsa_c00260{font-size:64.066939px;}
.fsb_c00260{font-size:65.117217px;}
.fs3_c00260{font-size:66.167494px;}
.fs1_c00260{font-size:67.217772px;}
.fs4_c00260{font-size:68.268050px;}
.fs5_c00260{font-size:69.318327px;}
.fs8_c00260{font-size:70.368605px;}
.fsc_c00260{font-size:72.469160px;}
.fs7_c00260{font-size:74.569716px;}
.fs2_c00260{font-size:75.619994px;}
.fs13_c00260{font-size:90.300000px;}
.fs0_c00260{font-size:92.424437px;}
.fs10_c00260{font-size:173.295819px;}
.fsf_c00260{font-size:196.401928px;}
.y0_c00260{bottom:0.000000px;}
.yf4_c00260{bottom:5.741612px;}
.yf3_c00260{bottom:10.837053px;}
.yf2_c00260{bottom:11.214831px;}
.yf1_c00260{bottom:15.769331px;}
.yf0_c00260{bottom:16.517897px;}
.yef_c00260{bottom:16.820883px;}
.yee_c00260{bottom:18.630092px;}
.yed_c00260{bottom:19.935783px;}
.yec_c00260{bottom:20.737337px;}
.yeb_c00260{bottom:21.465480px;}
.yea_c00260{bottom:21.951162px;}
.ye9_c00260{bottom:22.818605px;}
.ye8_c00260{bottom:33.555822px;}
.ye7_c00260{bottom:34.779635px;}
.ye6_c00260{bottom:36.521084px;}
.yf5_c00260{bottom:37.666500px;}
.ye5_c00260{bottom:38.515546px;}
.ye4_c00260{bottom:39.763938px;}
.ye3_c00260{bottom:41.467010px;}
.ye2_c00260{bottom:52.908669px;}
.ye1_c00260{bottom:53.493014px;}
.ye0_c00260{bottom:54.933324px;}
.ydf_c00260{bottom:56.677320px;}
.yde_c00260{bottom:57.294005px;}
.ydd_c00260{bottom:58.865676px;}
.ydc_c00260{bottom:59.829701px;}
.ydb_c00260{bottom:72.406737px;}
.yda_c00260{bottom:73.119648px;}
.yd9_c00260{bottom:73.686521px;}
.yd8_c00260{bottom:75.423186px;}
.yd7_c00260{bottom:76.177251px;}
.yd6_c00260{bottom:78.197543px;}
.yd5_c00260{bottom:86.886564px;}
.yd4_c00260{bottom:89.355809px;}
.yd3_c00260{bottom:91.432233px;}
.yd2_c00260{bottom:92.047376px;}
.yd1_c00260{bottom:94.226123px;}
.yd0_c00260{bottom:95.321231px;}
.ycf_c00260{bottom:95.854470px;}
.ycd_c00260{bottom:96.240855px;}
.yce_c00260{bottom:97.891797px;}
.ycc_c00260{bottom:97.904810px;}
.ycb_c00260{bottom:98.576049px;}
.yca_c00260{bottom:100.754775px;}
.yc9_c00260{bottom:101.489958px;}
.yc8_c00260{bottom:102.550911px;}
.yc7_c00260{bottom:103.301256px;}
.yc6_c00260{bottom:104.154762px;}
.yc5_c00260{bottom:105.219381px;}
.yc4_c00260{bottom:106.576494px;}
.yc3_c00260{bottom:108.301760px;}
.yc2_c00260{bottom:112.558011px;}
.yc1_c00260{bottom:114.557714px;}
.yc0_c00260{bottom:116.303088px;}
.ybf_c00260{bottom:122.000724px;}
.ybe_c00260{bottom:124.179821px;}
.ybd_c00260{bottom:127.898354px;}
.ybc_c00260{bottom:129.123488px;}
.ybb_c00260{bottom:132.373628px;}
.yba_c00260{bottom:133.406093px;}
.yb9_c00260{bottom:134.684792px;}
.yb8_c00260{bottom:154.189011px;}
.yb7_c00260{bottom:154.747547px;}
.yb6_c00260{bottom:156.722022px;}
.yb5_c00260{bottom:157.872690px;}
.yb4_c00260{bottom:161.252154px;}
.yb3_c00260{bottom:162.385541px;}
.yb2_c00260{bottom:164.625978px;}
.yb1_c00260{bottom:170.868264px;}
.yb0_c00260{bottom:172.296017px;}
.yaf_c00260{bottom:173.812329px;}
.yae_c00260{bottom:175.906677px;}
.yad_c00260{bottom:176.990093px;}
.yac_c00260{bottom:177.308676px;}
.yab_c00260{bottom:189.978383px;}
.yaa_c00260{bottom:191.581721px;}
.ya9_c00260{bottom:192.104339px;}
.ya8_c00260{bottom:193.084817px;}
.ya7_c00260{bottom:193.637261px;}
.ya6_c00260{bottom:194.748600px;}
.ya5_c00260{bottom:195.128627px;}
.ya4_c00260{bottom:206.638922px;}
.ya3_c00260{bottom:208.162674px;}
.ya2_c00260{bottom:208.729191px;}
.ya1_c00260{bottom:210.371442px;}
.ya0_c00260{bottom:211.793945px;}
.y9f_c00260{bottom:212.339522px;}
.y9e_c00260{bottom:213.223847px;}
.y9d_c00260{bottom:224.997231px;}
.y9c_c00260{bottom:226.638513px;}
.y9b_c00260{bottom:228.192891px;}
.y9a_c00260{bottom:228.963113px;}
.y99_c00260{bottom:230.990247px;}
.y98_c00260{bottom:232.374369px;}
.y97_c00260{bottom:234.298181px;}
.y96_c00260{bottom:240.803849px;}
.y95_c00260{bottom:241.566189px;}
.y94_c00260{bottom:244.393119px;}
.y93_c00260{bottom:246.103220px;}
.y92_c00260{bottom:248.157099px;}
.y91_c00260{bottom:248.597529px;}
.y90_c00260{bottom:250.452761px;}
.y8f_c00260{bottom:251.043962px;}
.y8e_c00260{bottom:259.991561px;}
.y8d_c00260{bottom:262.299848px;}
.y8c_c00260{bottom:263.628828px;}
.y8b_c00260{bottom:264.100665px;}
.y8a_c00260{bottom:265.953587px;}
.y89_c00260{bottom:266.885601px;}
.y88_c00260{bottom:267.780378px;}
.y87_c00260{bottom:277.581624px;}
.y86_c00260{bottom:279.261813px;}
.y85_c00260{bottom:280.941347px;}
.y84_c00260{bottom:282.520053px;}
.y83_c00260{bottom:283.019808px;}
.y82_c00260{bottom:283.714698px;}
.y81_c00260{bottom:285.606614px;}
.y80_c00260{bottom:293.809025px;}
.y7f_c00260{bottom:294.465623px;}
.y7e_c00260{bottom:295.307891px;}
.y7d_c00260{bottom:295.893101px;}
.y7c_c00260{bottom:296.800392px;}
.y7b_c00260{bottom:297.335792px;}
.y7a_c00260{bottom:298.388291px;}
.y79_c00260{bottom:299.589498px;}
.y78_c00260{bottom:300.134315px;}
.y77_c00260{bottom:301.334936px;}
.y76_c00260{bottom:302.412978px;}
.y75_c00260{bottom:303.158936px;}
.y74_c00260{bottom:312.854630px;}
.y73_c00260{bottom:313.418811px;}
.y72_c00260{bottom:314.127048px;}
.y71_c00260{bottom:315.277886px;}
.y70_c00260{bottom:317.176010px;}
.y6f_c00260{bottom:318.023024px;}
.y6e_c00260{bottom:318.999156px;}
.y6d_c00260{bottom:320.440398px;}
.y6c_c00260{bottom:330.071787px;}
.y6b_c00260{bottom:330.658695px;}
.y6a_c00260{bottom:331.435207px;}
.y69_c00260{bottom:331.700192px;}
.y68_c00260{bottom:332.831747px;}
.y67_c00260{bottom:334.149008px;}
.y66_c00260{bottom:334.650290px;}
.y65_c00260{bottom:336.101457px;}
.y64_c00260{bottom:345.655436px;}
.y63_c00260{bottom:346.701042px;}
.y62_c00260{bottom:347.018457px;}
.y61_c00260{bottom:348.277042px;}
.y60_c00260{bottom:349.689436px;}
.y5f_c00260{bottom:350.007127px;}
.y5e_c00260{bottom:351.277151px;}
.y5d_c00260{bottom:351.492476px;}
.y5c_c00260{bottom:362.385114px;}
.y5b_c00260{bottom:363.526149px;}
.y5a_c00260{bottom:363.861841px;}
.y59_c00260{bottom:365.130657px;}
.y58_c00260{bottom:366.135855px;}
.y57_c00260{bottom:366.966384px;}
.y56_c00260{bottom:367.967994px;}
.y55_c00260{bottom:379.297618px;}
.y54_c00260{bottom:379.625815px;}
.y53_c00260{bottom:380.714877px;}
.y52_c00260{bottom:381.292797px;}
.y51_c00260{bottom:381.763365px;}
.y50_c00260{bottom:383.169979px;}
.y4f_c00260{bottom:383.578306px;}
.y4e_c00260{bottom:384.003936px;}
.y4d_c00260{bottom:384.830751px;}
.y4c_c00260{bottom:385.251378px;}
.y4b_c00260{bottom:395.528259px;}
.y4a_c00260{bottom:396.261160px;}
.y49_c00260{bottom:397.015021px;}
.y48_c00260{bottom:398.120834px;}
.y47_c00260{bottom:399.244569px;}
.y46_c00260{bottom:399.592759px;}
.y45_c00260{bottom:400.929957px;}
.y44_c00260{bottom:401.184303px;}
.y43_c00260{bottom:413.195457px;}
.y42_c00260{bottom:414.329319px;}
.y41_c00260{bottom:414.684255px;}
.y40_c00260{bottom:416.381356px;}
.y3f_c00260{bottom:416.925154px;}
.y3e_c00260{bottom:418.190847px;}
.y3d_c00260{bottom:428.821501px;}
.y3c_c00260{bottom:431.518228px;}
.y3b_c00260{bottom:432.246040px;}
.y3a_c00260{bottom:433.395166px;}
.y39_c00260{bottom:433.929641px;}
.y38_c00260{bottom:434.200224px;}
.y37_c00260{bottom:435.483417px;}
.y36_c00260{bottom:446.752263px;}
.y35_c00260{bottom:447.170113px;}
.y34_c00260{bottom:448.070514px;}
.y33_c00260{bottom:449.415586px;}
.y32_c00260{bottom:450.713553px;}
.y31_c00260{bottom:451.048092px;}
.y30_c00260{bottom:452.367516px;}
.y2f_c00260{bottom:452.829264px;}
.y2e_c00260{bottom:454.119693px;}
.y2d_c00260{bottom:465.565245px;}
.y2c_c00260{bottom:466.030443px;}
.y2b_c00260{bottom:468.371854px;}
.y2a_c00260{bottom:469.955542px;}
.y29_c00260{bottom:470.276668px;}
.y28_c00260{bottom:470.795824px;}
.y27_c00260{bottom:471.132372px;}
.y26_c00260{bottom:482.288995px;}
.y25_c00260{bottom:482.812578px;}
.y24_c00260{bottom:483.006079px;}
.y23_c00260{bottom:483.878413px;}
.y22_c00260{bottom:484.158891px;}
.y21_c00260{bottom:485.192340px;}
.y20_c00260{bottom:485.711419px;}
.y1f_c00260{bottom:498.768685px;}
.y1e_c00260{bottom:499.591639px;}
.y1d_c00260{bottom:500.146099px;}
.y1c_c00260{bottom:500.776471px;}
.y1b_c00260{bottom:502.362888px;}
.y1a_c00260{bottom:504.324274px;}
.y19_c00260{bottom:506.242419px;}
.y18_c00260{bottom:516.090559px;}
.y17_c00260{bottom:517.363036px;}
.y16_c00260{bottom:518.647951px;}
.y15_c00260{bottom:519.671847px;}
.y14_c00260{bottom:520.148877px;}
.y13_c00260{bottom:521.632533px;}
.y12_c00260{bottom:534.072698px;}
.y11_c00260{bottom:534.519018px;}
.y10_c00260{bottom:535.819555px;}
.yf_c00260{bottom:536.195136px;}
.ye_c00260{bottom:536.635762px;}
.yd_c00260{bottom:537.847477px;}
.yc_c00260{bottom:538.646172px;}
.yb_c00260{bottom:550.836220px;}
.ya_c00260{bottom:551.100765px;}
.y9_c00260{bottom:551.319634px;}
.y8_c00260{bottom:552.291726px;}
.y7_c00260{bottom:553.055542px;}
.y6_c00260{bottom:553.413526px;}
.y5_c00260{bottom:553.588894px;}
.y4_c00260{bottom:554.442802px;}
.y3_c00260{bottom:554.579328px;}
.y2_c00260{bottom:562.326523px;}
.y1_c00260{bottom:568.351500px;}
.h14_c00260{height:52.513884px;}
.h10_c00260{height:55.664717px;}
.h8_c00260{height:59.865828px;}
.hf_c00260{height:60.916106px;}
.hb_c00260{height:61.966384px;}
.h13_c00260{height:63.016661px;}
.hc_c00260{height:64.066939px;}
.hd_c00260{height:65.117217px;}
.h5_c00260{height:66.167494px;}
.h3_c00260{height:67.217772px;}
.h6_c00260{height:68.268050px;}
.h7_c00260{height:69.318327px;}
.ha_c00260{height:70.368605px;}
.he_c00260{height:72.469160px;}
.h9_c00260{height:74.569716px;}
.h4_c00260{height:75.619994px;}
.h15_c00260{height:90.300000px;}
.h2_c00260{height:92.424437px;}
.h12_c00260{height:173.295819px;}
.h11_c00260{height:196.401928px;}
.h1_c00260{height:618.750000px;}
.h0_c00260{height:619.050000px;}
.w0_c00260{width:359.100000px;}
.w1_c00260{width:359.250000px;}
.x0_c00260{left:0.000000px;}
.x4e_c00260{left:28.077108px;}
.x58_c00260{left:29.528622px;}
.x46_c00260{left:31.050000px;}
.x22_c00260{left:32.305426px;}
.x3_c00260{left:33.552351px;}
.x70_c00260{left:36.252519px;}
.x17_c00260{left:38.026555px;}
.x39_c00260{left:39.704383px;}
.x28_c00260{left:41.492199px;}
.x4_c00260{left:43.272852px;}
.x79_c00260{left:45.279021px;}
.x23_c00260{left:46.937926px;}
.x52_c00260{left:50.714665px;}
.x3a_c00260{left:51.806935px;}
.x5a_c00260{left:57.200397px;}
.x6d_c00260{left:59.453889px;}
.x63_c00260{left:62.865996px;}
.x1_c00260{left:63.921000px;}
.x24_c00260{left:69.509926px;}
.x73_c00260{left:71.400976px;}
.x1e_c00260{left:75.935703px;}
.x60_c00260{left:78.102109px;}
.x43_c00260{left:81.392829px;}
.xc_c00260{left:83.187465px;}
.x53_c00260{left:84.405196px;}
.x5b_c00260{left:85.455411px;}
.x2f_c00260{left:87.861810px;}
.x29_c00260{left:89.310817px;}
.x3f_c00260{left:90.765441px;}
.x65_c00260{left:92.015395px;}
.x7a_c00260{left:93.604966px;}
.x4a_c00260{left:96.379375px;}
.x30_c00260{left:99.626310px;}
.x35_c00260{left:101.018149px;}
.x5_c00260{left:104.281479px;}
.x2a_c00260{left:106.385230px;}
.x5c_c00260{left:107.970712px;}
.x18_c00260{left:109.091535px;}
.x12_c00260{left:111.038838px;}
.x61_c00260{left:112.702585px;}
.x3b_c00260{left:115.492368px;}
.x6_c00260{left:116.800066px;}
.x68_c00260{left:119.193889px;}
.x59_c00260{left:120.269145px;}
.x31_c00260{left:122.864310px;}
.x36_c00260{left:126.945357px;}
.x40_c00260{left:130.482769px;}
.x3c_c00260{left:132.066627px;}
.x13_c00260{left:136.151149px;}
.x54_c00260{left:138.956415px;}
.x1f_c00260{left:140.509087px;}
.x7_c00260{left:142.413379px;}
.x74_c00260{left:144.361246px;}
.x77_c00260{left:148.240297px;}
.x6a_c00260{left:149.456821px;}
.x25_c00260{left:152.327926px;}
.x2b_c00260{left:155.268745px;}
.xd_c00260{left:158.904643px;}
.x5d_c00260{left:163.469341px;}
.x2c_c00260{left:167.660607px;}
.x4b_c00260{left:169.117029px;}
.x32_c00260{left:172.826310px;}
.x55_c00260{left:176.501152px;}
.x66_c00260{left:179.289394px;}
.x19_c00260{left:181.710342px;}
.x47_c00260{left:184.228072px;}
.xe_c00260{left:186.414559px;}
.x14_c00260{left:190.064617px;}
.x7b_c00260{left:194.892840px;}
.x8_c00260{left:196.960161px;}
.x72_c00260{left:198.731967px;}
.x4f_c00260{left:200.136904px;}
.x75_c00260{left:202.503897px;}
.x33_c00260{left:204.470310px;}
.x37_c00260{left:207.779583px;}
.xf_c00260{left:209.921854px;}
.x20_c00260{left:212.621214px;}
.x4c_c00260{left:214.399959px;}
.x2d_c00260{left:215.741691px;}
.x64_c00260{left:217.584282px;}
.x41_c00260{left:219.864375px;}
.x62_c00260{left:221.518081px;}
.x21_c00260{left:224.753680px;}
.x56_c00260{left:226.160406px;}
.x44_c00260{left:236.601024px;}
.x3d_c00260{left:238.203991px;}
.x1a_c00260{left:240.440425px;}
.x67_c00260{left:242.475445px;}
.x48_c00260{left:244.169332px;}
.x6e_c00260{left:245.275833px;}
.x42_c00260{left:247.405651px;}
.x71_c00260{left:249.668632px;}
.x26_c00260{left:254.128426px;}
.x4d_c00260{left:256.093561px;}
.x15_c00260{left:257.675827px;}
.x49_c00260{left:259.275022px;}
.x50_c00260{left:262.108434px;}
.x1b_c00260{left:263.802286px;}
.x9_c00260{left:266.435047px;}
.x76_c00260{left:269.978029px;}
.x57_c00260{left:272.781246px;}
.x27_c00260{left:274.354426px;}
.x78_c00260{left:277.066530px;}
.x38_c00260{left:278.708860px;}
.x51_c00260{left:280.895898px;}
.xa_c00260{left:282.084790px;}
.x1c_c00260{left:284.320389px;}
.x5e_c00260{left:286.083373px;}
.x10_c00260{left:291.197430px;}
.x69_c00260{left:294.989809px;}
.x7c_c00260{left:297.088110px;}
.x2e_c00260{left:298.885032px;}
.xb_c00260{left:300.960189px;}
.x6b_c00260{left:304.299453px;}
.x5f_c00260{left:306.700249px;}
.x3e_c00260{left:309.044769px;}
.x45_c00260{left:310.398595px;}
.x6f_c00260{left:311.814262px;}
.x1d_c00260{left:314.815594px;}
.x6c_c00260{left:317.089975px;}
.x11_c00260{left:319.085415px;}
.x34_c00260{left:321.719310px;}
.x16_c00260{left:324.681003px;}
.x2_c00260{left:325.876500px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.fs12_c00260{font-size:46.679008pt;}
.fse_c00260{font-size:49.479749pt;}
.fs6_c00260{font-size:53.214070pt;}
.fsd_c00260{font-size:54.147650pt;}
.fs9_c00260{font-size:55.081230pt;}
.fs11_c00260{font-size:56.014810pt;}
.fsa_c00260{font-size:56.948390pt;}
.fsb_c00260{font-size:57.881970pt;}
.fs3_c00260{font-size:58.815551pt;}
.fs1_c00260{font-size:59.749131pt;}
.fs4_c00260{font-size:60.682711pt;}
.fs5_c00260{font-size:61.616291pt;}
.fs8_c00260{font-size:62.549871pt;}
.fsc_c00260{font-size:64.417032pt;}
.fs7_c00260{font-size:66.284192pt;}
.fs2_c00260{font-size:67.217772pt;}
.fs13_c00260{font-size:80.266667pt;}
.fs0_c00260{font-size:82.155055pt;}
.fs10_c00260{font-size:154.040728pt;}
.fsf_c00260{font-size:174.579491pt;}
.y0_c00260{bottom:0.000000pt;}
.yf4_c00260{bottom:5.103655pt;}
.yf3_c00260{bottom:9.632936pt;}
.yf2_c00260{bottom:9.968739pt;}
.yf1_c00260{bottom:14.017183pt;}
.yf0_c00260{bottom:14.682575pt;}
.yef_c00260{bottom:14.951896pt;}
.yee_c00260{bottom:16.560081pt;}
.yed_c00260{bottom:17.720696pt;}
.yec_c00260{bottom:18.433188pt;}
.yeb_c00260{bottom:19.080427pt;}
.yea_c00260{bottom:19.512144pt;}
.ye9_c00260{bottom:20.283204pt;}
.ye8_c00260{bottom:29.827397pt;}
.ye7_c00260{bottom:30.915231pt;}
.ye6_c00260{bottom:32.463185pt;}
.yf5_c00260{bottom:33.481333pt;}
.ye5_c00260{bottom:34.236041pt;}
.ye4_c00260{bottom:35.345723pt;}
.ye3_c00260{bottom:36.859564pt;}
.ye2_c00260{bottom:47.029928pt;}
.ye1_c00260{bottom:47.549345pt;}
.ye0_c00260{bottom:48.829621pt;}
.ydf_c00260{bottom:50.379840pt;}
.yde_c00260{bottom:50.928004pt;}
.ydd_c00260{bottom:52.325045pt;}
.ydc_c00260{bottom:53.181956pt;}
.ydb_c00260{bottom:64.361544pt;}
.yda_c00260{bottom:64.995243pt;}
.yd9_c00260{bottom:65.499129pt;}
.yd8_c00260{bottom:67.042832pt;}
.yd7_c00260{bottom:67.713112pt;}
.yd6_c00260{bottom:69.508927pt;}
.yd5_c00260{bottom:77.232501pt;}
.yd4_c00260{bottom:79.427385pt;}
.yd3_c00260{bottom:81.273096pt;}
.yd2_c00260{bottom:81.819889pt;}
.yd1_c00260{bottom:83.756553pt;}
.yd0_c00260{bottom:84.729983pt;}
.ycf_c00260{bottom:85.203973pt;}
.ycd_c00260{bottom:85.547427pt;}
.yce_c00260{bottom:87.014931pt;}
.ycc_c00260{bottom:87.026497pt;}
.ycb_c00260{bottom:87.623155pt;}
.yca_c00260{bottom:89.559800pt;}
.yc9_c00260{bottom:90.213296pt;}
.yc8_c00260{bottom:91.156365pt;}
.yc7_c00260{bottom:91.823339pt;}
.yc6_c00260{bottom:92.582011pt;}
.yc5_c00260{bottom:93.528339pt;}
.yc4_c00260{bottom:94.734661pt;}
.yc3_c00260{bottom:96.268231pt;}
.yc2_c00260{bottom:100.051565pt;}
.yc1_c00260{bottom:101.829079pt;}
.yc0_c00260{bottom:103.380523pt;}
.ybf_c00260{bottom:108.445088pt;}
.ybe_c00260{bottom:110.382063pt;}
.ybd_c00260{bottom:113.687425pt;}
.ybc_c00260{bottom:114.776433pt;}
.ybb_c00260{bottom:117.665447pt;}
.yba_c00260{bottom:118.583193pt;}
.yb9_c00260{bottom:119.719815pt;}
.yb8_c00260{bottom:137.056899pt;}
.yb7_c00260{bottom:137.553375pt;}
.yb6_c00260{bottom:139.308464pt;}
.yb5_c00260{bottom:140.331280pt;}
.yb4_c00260{bottom:143.335248pt;}
.yb3_c00260{bottom:144.342703pt;}
.yb2_c00260{bottom:146.334203pt;}
.yb1_c00260{bottom:151.882901pt;}
.yb0_c00260{bottom:153.152015pt;}
.yaf_c00260{bottom:154.499848pt;}
.yae_c00260{bottom:156.361491pt;}
.yad_c00260{bottom:157.324527pt;}
.yac_c00260{bottom:157.607712pt;}
.yab_c00260{bottom:168.869673pt;}
.yaa_c00260{bottom:170.294863pt;}
.ya9_c00260{bottom:170.759412pt;}
.ya8_c00260{bottom:171.630948pt;}
.ya7_c00260{bottom:172.122009pt;}
.ya6_c00260{bottom:173.109867pt;}
.ya5_c00260{bottom:173.447668pt;}
.ya4_c00260{bottom:183.679041pt;}
.ya3_c00260{bottom:185.033488pt;}
.ya2_c00260{bottom:185.537059pt;}
.ya1_c00260{bottom:186.996837pt;}
.ya0_c00260{bottom:188.261284pt;}
.y9f_c00260{bottom:188.746241pt;}
.y9e_c00260{bottom:189.532308pt;}
.y9d_c00260{bottom:199.997539pt;}
.y9c_c00260{bottom:201.456456pt;}
.y9b_c00260{bottom:202.838125pt;}
.y9a_c00260{bottom:203.522767pt;}
.y99_c00260{bottom:205.324664pt;}
.y98_c00260{bottom:206.554995pt;}
.y97_c00260{bottom:208.265049pt;}
.y96_c00260{bottom:214.047865pt;}
.y95_c00260{bottom:214.725501pt;}
.y94_c00260{bottom:217.238328pt;}
.y93_c00260{bottom:218.758417pt;}
.y92_c00260{bottom:220.584088pt;}
.y91_c00260{bottom:220.975581pt;}
.y90_c00260{bottom:222.624676pt;}
.y8f_c00260{bottom:223.150188pt;}
.y8e_c00260{bottom:231.103609pt;}
.y8d_c00260{bottom:233.155420pt;}
.y8c_c00260{bottom:234.336736pt;}
.y8b_c00260{bottom:234.756147pt;}
.y8a_c00260{bottom:236.403188pt;}
.y89_c00260{bottom:237.231645pt;}
.y88_c00260{bottom:238.027003pt;}
.y87_c00260{bottom:246.739221pt;}
.y86_c00260{bottom:248.232723pt;}
.y85_c00260{bottom:249.725641pt;}
.y84_c00260{bottom:251.128936pt;}
.y83_c00260{bottom:251.573163pt;}
.y82_c00260{bottom:252.190843pt;}
.y81_c00260{bottom:253.872545pt;}
.y80_c00260{bottom:261.163577pt;}
.y7f_c00260{bottom:261.747220pt;}
.y7e_c00260{bottom:262.495903pt;}
.y7d_c00260{bottom:263.016089pt;}
.y7c_c00260{bottom:263.822571pt;}
.y7b_c00260{bottom:264.298481pt;}
.y7a_c00260{bottom:265.234036pt;}
.y79_c00260{bottom:266.301776pt;}
.y78_c00260{bottom:266.786057pt;}
.y77_c00260{bottom:267.853276pt;}
.y76_c00260{bottom:268.811536pt;}
.y75_c00260{bottom:269.474609pt;}
.y74_c00260{bottom:278.093004pt;}
.y73_c00260{bottom:278.594499pt;}
.y72_c00260{bottom:279.224043pt;}
.y71_c00260{bottom:280.247009pt;}
.y70_c00260{bottom:281.934231pt;}
.y6f_c00260{bottom:282.687132pt;}
.y6e_c00260{bottom:283.554805pt;}
.y6d_c00260{bottom:284.835909pt;}
.y6c_c00260{bottom:293.397144pt;}
.y6b_c00260{bottom:293.918840pt;}
.y6a_c00260{bottom:294.609073pt;}
.y69_c00260{bottom:294.844615pt;}
.y68_c00260{bottom:295.850441pt;}
.y67_c00260{bottom:297.021340pt;}
.y66_c00260{bottom:297.466924pt;}
.y65_c00260{bottom:298.756851pt;}
.y64_c00260{bottom:307.249276pt;}
.y63_c00260{bottom:308.178704pt;}
.y62_c00260{bottom:308.460851pt;}
.y61_c00260{bottom:309.579593pt;}
.y60_c00260{bottom:310.835055pt;}
.y5f_c00260{bottom:311.117447pt;}
.y5e_c00260{bottom:312.246356pt;}
.y5d_c00260{bottom:312.437756pt;}
.y5c_c00260{bottom:322.120101pt;}
.y5b_c00260{bottom:323.134355pt;}
.y5a_c00260{bottom:323.432748pt;}
.y59_c00260{bottom:324.560584pt;}
.y58_c00260{bottom:325.454093pt;}
.y57_c00260{bottom:326.192341pt;}
.y56_c00260{bottom:327.082661pt;}
.y55_c00260{bottom:337.153439pt;}
.y54_c00260{bottom:337.445169pt;}
.y53_c00260{bottom:338.413224pt;}
.y52_c00260{bottom:338.926931pt;}
.y51_c00260{bottom:339.345213pt;}
.y50_c00260{bottom:340.595537pt;}
.y4f_c00260{bottom:340.958495pt;}
.y4e_c00260{bottom:341.336832pt;}
.y4d_c00260{bottom:342.071779pt;}
.y4c_c00260{bottom:342.445669pt;}
.y4b_c00260{bottom:351.580675pt;}
.y4a_c00260{bottom:352.232143pt;}
.y49_c00260{bottom:352.902241pt;}
.y48_c00260{bottom:353.885185pt;}
.y47_c00260{bottom:354.884061pt;}
.y46_c00260{bottom:355.193564pt;}
.y45_c00260{bottom:356.382184pt;}
.y44_c00260{bottom:356.608269pt;}
.y43_c00260{bottom:367.284851pt;}
.y42_c00260{bottom:368.292728pt;}
.y41_c00260{bottom:368.608227pt;}
.y40_c00260{bottom:370.116761pt;}
.y3f_c00260{bottom:370.600137pt;}
.y3e_c00260{bottom:371.725197pt;}
.y3d_c00260{bottom:381.174668pt;}
.y3c_c00260{bottom:383.571759pt;}
.y3b_c00260{bottom:384.218703pt;}
.y3a_c00260{bottom:385.240148pt;}
.y39_c00260{bottom:385.715236pt;}
.y38_c00260{bottom:385.955755pt;}
.y37_c00260{bottom:387.096371pt;}
.y36_c00260{bottom:397.113123pt;}
.y35_c00260{bottom:397.484545pt;}
.y34_c00260{bottom:398.284901pt;}
.y33_c00260{bottom:399.480521pt;}
.y32_c00260{bottom:400.634269pt;}
.y31_c00260{bottom:400.931637pt;}
.y30_c00260{bottom:402.104459pt;}
.y2f_c00260{bottom:402.514901pt;}
.y2e_c00260{bottom:403.661949pt;}
.y2d_c00260{bottom:413.835773pt;}
.y2c_c00260{bottom:414.249283pt;}
.y2b_c00260{bottom:416.330537pt;}
.y2a_c00260{bottom:417.738260pt;}
.y29_c00260{bottom:418.023705pt;}
.y28_c00260{bottom:418.485177pt;}
.y27_c00260{bottom:418.784331pt;}
.y26_c00260{bottom:428.701329pt;}
.y25_c00260{bottom:429.166736pt;}
.y24_c00260{bottom:429.338737pt;}
.y23_c00260{bottom:430.114145pt;}
.y22_c00260{bottom:430.363459pt;}
.y21_c00260{bottom:431.282080pt;}
.y20_c00260{bottom:431.743484pt;}
.y1f_c00260{bottom:443.349943pt;}
.y1e_c00260{bottom:444.081457pt;}
.y1d_c00260{bottom:444.574311pt;}
.y1c_c00260{bottom:445.134641pt;}
.y1b_c00260{bottom:446.544789pt;}
.y1a_c00260{bottom:448.288244pt;}
.y19_c00260{bottom:449.993261pt;}
.y18_c00260{bottom:458.747164pt;}
.y17_c00260{bottom:459.878255pt;}
.y16_c00260{bottom:461.020401pt;}
.y15_c00260{bottom:461.930531pt;}
.y14_c00260{bottom:462.354557pt;}
.y13_c00260{bottom:463.673363pt;}
.y12_c00260{bottom:474.731287pt;}
.y11_c00260{bottom:475.128016pt;}
.y10_c00260{bottom:476.284049pt;}
.yf_c00260{bottom:476.617899pt;}
.ye_c00260{bottom:477.009567pt;}
.yd_c00260{bottom:478.086647pt;}
.yc_c00260{bottom:478.796597pt;}
.yb_c00260{bottom:489.632196pt;}
.ya_c00260{bottom:489.867347pt;}
.y9_c00260{bottom:490.061897pt;}
.y8_c00260{bottom:490.925979pt;}
.y7_c00260{bottom:491.604927pt;}
.y6_c00260{bottom:491.923135pt;}
.y5_c00260{bottom:492.079017pt;}
.y4_c00260{bottom:492.838047pt;}
.y3_c00260{bottom:492.959403pt;}
.y2_c00260{bottom:499.845799pt;}
.y1_c00260{bottom:505.201333pt;}
.h14_c00260{height:46.679008pt;}
.h10_c00260{height:49.479749pt;}
.h8_c00260{height:53.214070pt;}
.hf_c00260{height:54.147650pt;}
.hb_c00260{height:55.081230pt;}
.h13_c00260{height:56.014810pt;}
.hc_c00260{height:56.948390pt;}
.hd_c00260{height:57.881970pt;}
.h5_c00260{height:58.815551pt;}
.h3_c00260{height:59.749131pt;}
.h6_c00260{height:60.682711pt;}
.h7_c00260{height:61.616291pt;}
.ha_c00260{height:62.549871pt;}
.he_c00260{height:64.417032pt;}
.h9_c00260{height:66.284192pt;}
.h4_c00260{height:67.217772pt;}
.h15_c00260{height:80.266667pt;}
.h2_c00260{height:82.155055pt;}
.h12_c00260{height:154.040728pt;}
.h11_c00260{height:174.579491pt;}
.h1_c00260{height:550.000000pt;}
.h0_c00260{height:550.266667pt;}
.w0_c00260{width:319.200000pt;}
.w1_c00260{width:319.333333pt;}
.x0_c00260{left:0.000000pt;}
.x4e_c00260{left:24.957429pt;}
.x58_c00260{left:26.247664pt;}
.x46_c00260{left:27.600000pt;}
.x22_c00260{left:28.715935pt;}
.x3_c00260{left:29.824312pt;}
.x70_c00260{left:32.224461pt;}
.x17_c00260{left:33.801383pt;}
.x39_c00260{left:35.292785pt;}
.x28_c00260{left:36.881955pt;}
.x4_c00260{left:38.464757pt;}
.x79_c00260{left:40.248019pt;}
.x23_c00260{left:41.722601pt;}
.x52_c00260{left:45.079703pt;}
.x3a_c00260{left:46.050609pt;}
.x5a_c00260{left:50.844797pt;}
.x6d_c00260{left:52.847901pt;}
.x63_c00260{left:55.880885pt;}
.x1_c00260{left:56.818667pt;}
.x24_c00260{left:61.786601pt;}
.x73_c00260{left:63.467535pt;}
.x1e_c00260{left:67.498403pt;}
.x60_c00260{left:69.424097pt;}
.x43_c00260{left:72.349181pt;}
.xc_c00260{left:73.944413pt;}
.x53_c00260{left:75.026841pt;}
.x5b_c00260{left:75.960365pt;}
.x2f_c00260{left:78.099387pt;}
.x29_c00260{left:79.387393pt;}
.x3f_c00260{left:80.680392pt;}
.x65_c00260{left:81.791463pt;}
.x7a_c00260{left:83.204415pt;}
.x4a_c00260{left:85.670556pt;}
.x30_c00260{left:88.556720pt;}
.x35_c00260{left:89.793911pt;}
.x5_c00260{left:92.694648pt;}
.x2a_c00260{left:94.564649pt;}
.x5c_c00260{left:95.973967pt;}
.x18_c00260{left:96.970253pt;}
.x12_c00260{left:98.701189pt;}
.x61_c00260{left:100.180076pt;}
.x3b_c00260{left:102.659883pt;}
.x6_c00260{left:103.822281pt;}
.x68_c00260{left:105.950124pt;}
.x59_c00260{left:106.905907pt;}
.x31_c00260{left:109.212720pt;}
.x36_c00260{left:112.840317pt;}
.x40_c00260{left:115.984684pt;}
.x3c_c00260{left:117.392557pt;}
.x13_c00260{left:121.023244pt;}
.x54_c00260{left:123.516813pt;}
.x1f_c00260{left:124.896967pt;}
.x7_c00260{left:126.589671pt;}
.x74_c00260{left:128.321108pt;}
.x77_c00260{left:131.769153pt;}
.x6a_c00260{left:132.850508pt;}
.x25_c00260{left:135.402601pt;}
.x2b_c00260{left:138.016663pt;}
.xd_c00260{left:141.248572pt;}
.x5d_c00260{left:145.306081pt;}
.x2c_c00260{left:149.031651pt;}
.x4b_c00260{left:150.326248pt;}
.x32_c00260{left:153.623387pt;}
.x55_c00260{left:156.889913pt;}
.x66_c00260{left:159.368351pt;}
.x19_c00260{left:161.520304pt;}
.x47_c00260{left:163.758287pt;}
.xe_c00260{left:165.701831pt;}
.x14_c00260{left:168.946327pt;}
.x7b_c00260{left:173.238080pt;}
.x8_c00260{left:175.075699pt;}
.x72_c00260{left:176.650637pt;}
.x4f_c00260{left:177.899471pt;}
.x75_c00260{left:180.003464pt;}
.x33_c00260{left:181.751387pt;}
.x37_c00260{left:184.692963pt;}
.xf_c00260{left:186.597204pt;}
.x20_c00260{left:188.996635pt;}
.x4c_c00260{left:190.577741pt;}
.x2d_c00260{left:191.770392pt;}
.x64_c00260{left:193.408251pt;}
.x41_c00260{left:195.435000pt;}
.x62_c00260{left:196.904961pt;}
.x21_c00260{left:199.781049pt;}
.x56_c00260{left:201.031472pt;}
.x44_c00260{left:210.312021pt;}
.x3d_c00260{left:211.736881pt;}
.x1a_c00260{left:213.724823pt;}
.x67_c00260{left:215.533729pt;}
.x48_c00260{left:217.039407pt;}
.x6e_c00260{left:218.022963pt;}
.x42_c00260{left:219.916135pt;}
.x71_c00260{left:221.927673pt;}
.x26_c00260{left:225.891935pt;}
.x4d_c00260{left:227.638721pt;}
.x15_c00260{left:229.045180pt;}
.x49_c00260{left:230.466687pt;}
.x50_c00260{left:232.985275pt;}
.x1b_c00260{left:234.490921pt;}
.x9_c00260{left:236.831153pt;}
.x76_c00260{left:239.980471pt;}
.x57_c00260{left:242.472219pt;}
.x27_c00260{left:243.870601pt;}
.x78_c00260{left:246.281360pt;}
.x38_c00260{left:247.741209pt;}
.x51_c00260{left:249.685243pt;}
.xa_c00260{left:250.742036pt;}
.x1c_c00260{left:252.729235pt;}
.x5e_c00260{left:254.296332pt;}
.x10_c00260{left:258.842160pt;}
.x69_c00260{left:262.213164pt;}
.x7c_c00260{left:264.078320pt;}
.x2e_c00260{left:265.675584pt;}
.xb_c00260{left:267.520168pt;}
.x6b_c00260{left:270.488403pt;}
.x5f_c00260{left:272.622444pt;}
.x3e_c00260{left:274.706461pt;}
.x45_c00260{left:275.909863pt;}
.x6f_c00260{left:277.168233pt;}
.x1d_c00260{left:279.836084pt;}
.x6c_c00260{left:281.857756pt;}
.x11_c00260{left:283.631480pt;}
.x34_c00260{left:285.972720pt;}
.x16_c00260{left:288.605336pt;}
.x2_c00260{left:289.668000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00261 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00261 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00261 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00261 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00261.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c00261{transform:matrix(0.130094,-0.003643,0.006997,0.249902,0,0);-ms-transform:matrix(0.130094,-0.003643,0.006997,0.249902,0,0);-webkit-transform:matrix(0.130094,-0.003643,0.006997,0.249902,0,0);}
.m17_c00261{transform:matrix(0.134782,-0.003774,0.006997,0.249902,0,0);-ms-transform:matrix(0.134782,-0.003774,0.006997,0.249902,0,0);-webkit-transform:matrix(0.134782,-0.003774,0.006997,0.249902,0,0);}
.m1f_c00261{transform:matrix(0.137661,-0.003855,0.006997,0.249902,0,0);-ms-transform:matrix(0.137661,-0.003855,0.006997,0.249902,0,0);-webkit-transform:matrix(0.137661,-0.003855,0.006997,0.249902,0,0);}
.m19_c00261{transform:matrix(0.138881,-0.003889,0.006997,0.249902,0,0);-ms-transform:matrix(0.138881,-0.003889,0.006997,0.249902,0,0);-webkit-transform:matrix(0.138881,-0.003889,0.006997,0.249902,0,0);}
.m59_c00261{transform:matrix(0.140385,-0.003931,0.006997,0.249902,0,0);-ms-transform:matrix(0.140385,-0.003931,0.006997,0.249902,0,0);-webkit-transform:matrix(0.140385,-0.003931,0.006997,0.249902,0,0);}
.m89_c00261{transform:matrix(0.143033,-0.003862,0.006748,0.249909,0,0);-ms-transform:matrix(0.143033,-0.003862,0.006748,0.249909,0,0);-webkit-transform:matrix(0.143033,-0.003862,0.006748,0.249909,0,0);}
.me9_c00261{transform:matrix(0.143209,-0.004010,0.006997,0.249902,0,0);-ms-transform:matrix(0.143209,-0.004010,0.006997,0.249902,0,0);-webkit-transform:matrix(0.143209,-0.004010,0.006997,0.249902,0,0);}
.mc_c00261{transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);-ms-transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);-webkit-transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);}
.m6_c00261{transform:matrix(0.146198,-0.004094,0.006997,0.249902,0,0);-ms-transform:matrix(0.146198,-0.004094,0.006997,0.249902,0,0);-webkit-transform:matrix(0.146198,-0.004094,0.006997,0.249902,0,0);}
.md9_c00261{transform:matrix(0.147656,-0.002658,0.004499,0.249960,0,0);-ms-transform:matrix(0.147656,-0.002658,0.004499,0.249960,0,0);-webkit-transform:matrix(0.147656,-0.002658,0.004499,0.249960,0,0);}
.m5c_c00261{transform:matrix(0.148452,-0.004157,0.006997,0.249902,0,0);-ms-transform:matrix(0.148452,-0.004157,0.006997,0.249902,0,0);-webkit-transform:matrix(0.148452,-0.004157,0.006997,0.249902,0,0);}
.mbf_c00261{transform:matrix(0.148586,-0.002675,0.004499,0.249960,0,0);-ms-transform:matrix(0.148586,-0.002675,0.004499,0.249960,0,0);-webkit-transform:matrix(0.148586,-0.002675,0.004499,0.249960,0,0);}
.mad_c00261{transform:matrix(0.148956,-0.004022,0.006748,0.249909,0,0);-ms-transform:matrix(0.148956,-0.004022,0.006748,0.249909,0,0);-webkit-transform:matrix(0.148956,-0.004022,0.006748,0.249909,0,0);}
.mac_c00261{transform:matrix(0.149141,-0.004027,0.006748,0.249909,0,0);-ms-transform:matrix(0.149141,-0.004027,0.006748,0.249909,0,0);-webkit-transform:matrix(0.149141,-0.004027,0.006748,0.249909,0,0);}
.mce_c00261{transform:matrix(0.149911,-0.002698,0.004499,0.249960,0,0);-ms-transform:matrix(0.149911,-0.002698,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149911,-0.002698,0.004499,0.249960,0,0);}
.m1c_c00261{transform:matrix(0.150051,-0.004201,0.006997,0.249902,0,0);-ms-transform:matrix(0.150051,-0.004201,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150051,-0.004201,0.006997,0.249902,0,0);}
.m11_c00261{transform:matrix(0.150536,-0.004215,0.006997,0.249902,0,0);-ms-transform:matrix(0.150536,-0.004215,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150536,-0.004215,0.006997,0.249902,0,0);}
.m24_c00261{transform:matrix(0.152085,-0.004258,0.006997,0.249902,0,0);-ms-transform:matrix(0.152085,-0.004258,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152085,-0.004258,0.006997,0.249902,0,0);}
.maf_c00261{transform:matrix(0.152319,-0.004113,0.006748,0.249909,0,0);-ms-transform:matrix(0.152319,-0.004113,0.006748,0.249909,0,0);-webkit-transform:matrix(0.152319,-0.004113,0.006748,0.249909,0,0);}
.mf_c00261{transform:matrix(0.152725,-0.004276,0.006997,0.249902,0,0);-ms-transform:matrix(0.152725,-0.004276,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152725,-0.004276,0.006997,0.249902,0,0);}
.m1_c00261{transform:matrix(0.152900,-0.004281,0.006997,0.249902,0,0);-ms-transform:matrix(0.152900,-0.004281,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152900,-0.004281,0.006997,0.249902,0,0);}
.m9f_c00261{transform:matrix(0.153344,-0.004140,0.006748,0.249909,0,0);-ms-transform:matrix(0.153344,-0.004140,0.006748,0.249909,0,0);-webkit-transform:matrix(0.153344,-0.004140,0.006748,0.249909,0,0);}
.mb3_c00261{transform:matrix(0.154304,-0.004166,0.006748,0.249909,0,0);-ms-transform:matrix(0.154304,-0.004166,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154304,-0.004166,0.006748,0.249909,0,0);}
.ma0_c00261{transform:matrix(0.154919,-0.004183,0.006748,0.249909,0,0);-ms-transform:matrix(0.154919,-0.004183,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154919,-0.004183,0.006748,0.249909,0,0);}
.m9b_c00261{transform:matrix(0.154969,-0.004184,0.006748,0.249909,0,0);-ms-transform:matrix(0.154969,-0.004184,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154969,-0.004184,0.006748,0.249909,0,0);}
.m12_c00261{transform:matrix(0.155049,-0.004341,0.006997,0.249902,0,0);-ms-transform:matrix(0.155049,-0.004341,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155049,-0.004341,0.006997,0.249902,0,0);}
.mca_c00261{transform:matrix(0.155550,-0.002800,0.004499,0.249960,0,0);-ms-transform:matrix(0.155550,-0.002800,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155550,-0.002800,0.004499,0.249960,0,0);}
.mc1_c00261{transform:matrix(0.155775,-0.002804,0.004499,0.249960,0,0);-ms-transform:matrix(0.155775,-0.002804,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155775,-0.002804,0.004499,0.249960,0,0);}
.m8_c00261{transform:matrix(0.157033,-0.004397,0.006997,0.249902,0,0);-ms-transform:matrix(0.157033,-0.004397,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157033,-0.004397,0.006997,0.249902,0,0);}
.mbe_c00261{transform:matrix(0.157434,-0.002834,0.004499,0.249960,0,0);-ms-transform:matrix(0.157434,-0.002834,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157434,-0.002834,0.004499,0.249960,0,0);}
.m2b_c00261{transform:matrix(0.158288,-0.004432,0.006997,0.249902,0,0);-ms-transform:matrix(0.158288,-0.004432,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158288,-0.004432,0.006997,0.249902,0,0);}
.m10_c00261{transform:matrix(0.158603,-0.004441,0.006997,0.249902,0,0);-ms-transform:matrix(0.158603,-0.004441,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158603,-0.004441,0.006997,0.249902,0,0);}
.m9e_c00261{transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);-ms-transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);}
.mb0_c00261{transform:matrix(0.160467,-0.004333,0.006748,0.249909,0,0);-ms-transform:matrix(0.160467,-0.004333,0.006748,0.249909,0,0);-webkit-transform:matrix(0.160467,-0.004333,0.006748,0.249909,0,0);}
.m60_c00261{transform:matrix(0.160762,-0.004501,0.006997,0.249902,0,0);-ms-transform:matrix(0.160762,-0.004501,0.006997,0.249902,0,0);-webkit-transform:matrix(0.160762,-0.004501,0.006997,0.249902,0,0);}
.m1d_c00261{transform:matrix(0.161112,-0.004511,0.006997,0.249902,0,0);-ms-transform:matrix(0.161112,-0.004511,0.006997,0.249902,0,0);-webkit-transform:matrix(0.161112,-0.004511,0.006997,0.249902,0,0);}
.m36_c00261{transform:matrix(0.162496,-0.004550,0.006997,0.249902,0,0);-ms-transform:matrix(0.162496,-0.004550,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162496,-0.004550,0.006997,0.249902,0,0);}
.m42_c00261{transform:matrix(0.162601,-0.004553,0.006997,0.249902,0,0);-ms-transform:matrix(0.162601,-0.004553,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162601,-0.004553,0.006997,0.249902,0,0);}
.m74_c00261{transform:matrix(0.162831,-0.004396,0.006748,0.249909,0,0);-ms-transform:matrix(0.162831,-0.004396,0.006748,0.249909,0,0);-webkit-transform:matrix(0.162831,-0.004396,0.006748,0.249909,0,0);}
.m31_c00261{transform:matrix(0.162906,-0.004561,0.006997,0.249902,0,0);-ms-transform:matrix(0.162906,-0.004561,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162906,-0.004561,0.006997,0.249902,0,0);}
.m4a_c00261{transform:matrix(0.163381,-0.004575,0.006997,0.249902,0,0);-ms-transform:matrix(0.163381,-0.004575,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163381,-0.004575,0.006997,0.249902,0,0);}
.me7_c00261{transform:matrix(0.163626,-0.004582,0.006997,0.249902,0,0);-ms-transform:matrix(0.163626,-0.004582,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163626,-0.004582,0.006997,0.249902,0,0);}
.m2a_c00261{transform:matrix(0.164091,-0.004595,0.006997,0.249902,0,0);-ms-transform:matrix(0.164091,-0.004595,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164091,-0.004595,0.006997,0.249902,0,0);}
.mf3_c00261{transform:matrix(0.164525,-0.006423,0.009752,0.249810,0,0);-ms-transform:matrix(0.164525,-0.006423,0.009752,0.249810,0,0);-webkit-transform:matrix(0.164525,-0.006423,0.009752,0.249810,0,0);}
.m48_c00261{transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);-ms-transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);}
.mc9_c00261{transform:matrix(0.165318,-0.002976,0.004499,0.249960,0,0);-ms-transform:matrix(0.165318,-0.002976,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165318,-0.002976,0.004499,0.249960,0,0);}
.m78_c00261{transform:matrix(0.165635,-0.004472,0.006748,0.249909,0,0);-ms-transform:matrix(0.165635,-0.004472,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165635,-0.004472,0.006748,0.249909,0,0);}
.m1b_c00261{transform:matrix(0.165690,-0.004639,0.006997,0.249902,0,0);-ms-transform:matrix(0.165690,-0.004639,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165690,-0.004639,0.006997,0.249902,0,0);}
.mcd_c00261{transform:matrix(0.166218,-0.002992,0.004499,0.249960,0,0);-ms-transform:matrix(0.166218,-0.002992,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166218,-0.002992,0.004499,0.249960,0,0);}
.m33_c00261{transform:matrix(0.166230,-0.004654,0.006997,0.249902,0,0);-ms-transform:matrix(0.166230,-0.004654,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166230,-0.004654,0.006997,0.249902,0,0);}
.m2_c00261{transform:matrix(0.166345,-0.004658,0.006997,0.249902,0,0);-ms-transform:matrix(0.166345,-0.004658,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166345,-0.004658,0.006997,0.249902,0,0);}
.m72_c00261{transform:matrix(0.166854,-0.004505,0.006748,0.249909,0,0);-ms-transform:matrix(0.166854,-0.004505,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166854,-0.004505,0.006748,0.249909,0,0);}
.mb_c00261{transform:matrix(0.167904,-0.004701,0.006997,0.249902,0,0);-ms-transform:matrix(0.167904,-0.004701,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167904,-0.004701,0.006997,0.249902,0,0);}
.m3_c00261{transform:matrix(0.168039,-0.004705,0.006997,0.249902,0,0);-ms-transform:matrix(0.168039,-0.004705,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168039,-0.004705,0.006997,0.249902,0,0);}
.ma9_c00261{transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);-ms-transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);}
.md_c00261{transform:matrix(0.168664,-0.004723,0.006997,0.249902,0,0);-ms-transform:matrix(0.168664,-0.004723,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168664,-0.004723,0.006997,0.249902,0,0);}
.m4_c00261{transform:matrix(0.168694,-0.004723,0.006997,0.249902,0,0);-ms-transform:matrix(0.168694,-0.004723,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168694,-0.004723,0.006997,0.249902,0,0);}
.m2c_c00261{transform:matrix(0.169983,-0.004760,0.006997,0.249902,0,0);-ms-transform:matrix(0.169983,-0.004760,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169983,-0.004760,0.006997,0.249902,0,0);}
.m95_c00261{transform:matrix(0.170403,-0.004601,0.006748,0.249909,0,0);-ms-transform:matrix(0.170403,-0.004601,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170403,-0.004601,0.006748,0.249909,0,0);}
.m47_c00261{transform:matrix(0.170453,-0.004773,0.006997,0.249902,0,0);-ms-transform:matrix(0.170453,-0.004773,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170453,-0.004773,0.006997,0.249902,0,0);}
.m28_c00261{transform:matrix(0.170908,-0.004785,0.006997,0.249902,0,0);-ms-transform:matrix(0.170908,-0.004785,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170908,-0.004785,0.006997,0.249902,0,0);}
.me5_c00261{transform:matrix(0.171028,-0.004789,0.006997,0.249902,0,0);-ms-transform:matrix(0.171028,-0.004789,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171028,-0.004789,0.006997,0.249902,0,0);}
.m5_c00261{transform:matrix(0.171363,-0.004798,0.006997,0.249902,0,0);-ms-transform:matrix(0.171363,-0.004798,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171363,-0.004798,0.006997,0.249902,0,0);}
.m8a_c00261{transform:matrix(0.171637,-0.004634,0.006748,0.249909,0,0);-ms-transform:matrix(0.171637,-0.004634,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171637,-0.004634,0.006748,0.249909,0,0);}
.m3e_c00261{transform:matrix(0.171943,-0.004814,0.006997,0.249902,0,0);-ms-transform:matrix(0.171943,-0.004814,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171943,-0.004814,0.006997,0.249902,0,0);}
.m70_c00261{transform:matrix(0.171992,-0.004644,0.006748,0.249909,0,0);-ms-transform:matrix(0.171992,-0.004644,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171992,-0.004644,0.006748,0.249909,0,0);}
.m13_c00261{transform:matrix(0.172123,-0.004819,0.006997,0.249902,0,0);-ms-transform:matrix(0.172123,-0.004819,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172123,-0.004819,0.006997,0.249902,0,0);}
.maa_c00261{transform:matrix(0.173072,-0.004673,0.006748,0.249909,0,0);-ms-transform:matrix(0.173072,-0.004673,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173072,-0.004673,0.006748,0.249909,0,0);}
.m5d_c00261{transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);-ms-transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);}
.m8b_c00261{transform:matrix(0.174366,-0.004708,0.006748,0.249909,0,0);-ms-transform:matrix(0.174366,-0.004708,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174366,-0.004708,0.006748,0.249909,0,0);}
.m5e_c00261{transform:matrix(0.174467,-0.004885,0.006997,0.249902,0,0);-ms-transform:matrix(0.174467,-0.004885,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174467,-0.004885,0.006997,0.249902,0,0);}
.mc0_c00261{transform:matrix(0.174472,-0.003140,0.004499,0.249960,0,0);-ms-transform:matrix(0.174472,-0.003140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174472,-0.003140,0.004499,0.249960,0,0);}
.me4_c00261{transform:matrix(0.175431,-0.004912,0.006997,0.249902,0,0);-ms-transform:matrix(0.175431,-0.004912,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175431,-0.004912,0.006997,0.249902,0,0);}
.m2d_c00261{transform:matrix(0.175501,-0.004914,0.006997,0.249902,0,0);-ms-transform:matrix(0.175501,-0.004914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175501,-0.004914,0.006997,0.249902,0,0);}
.mbc_c00261{transform:matrix(0.177021,-0.003186,0.004499,0.249960,0,0);-ms-transform:matrix(0.177021,-0.003186,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177021,-0.003186,0.004499,0.249960,0,0);}
.m66_c00261{transform:matrix(0.177075,-0.004781,0.006748,0.249909,0,0);-ms-transform:matrix(0.177075,-0.004781,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177075,-0.004781,0.006748,0.249909,0,0);}
.me8_c00261{transform:matrix(0.177630,-0.004974,0.006997,0.249902,0,0);-ms-transform:matrix(0.177630,-0.004974,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177630,-0.004974,0.006997,0.249902,0,0);}
.m84_c00261{transform:matrix(0.177830,-0.004801,0.006748,0.249909,0,0);-ms-transform:matrix(0.177830,-0.004801,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177830,-0.004801,0.006748,0.249909,0,0);}
.m38_c00261{transform:matrix(0.177995,-0.004984,0.006997,0.249902,0,0);-ms-transform:matrix(0.177995,-0.004984,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177995,-0.004984,0.006997,0.249902,0,0);}
.m3c_c00261{transform:matrix(0.179395,-0.005023,0.006997,0.249902,0,0);-ms-transform:matrix(0.179395,-0.005023,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179395,-0.005023,0.006997,0.249902,0,0);}
.m73_c00261{transform:matrix(0.179445,-0.004845,0.006748,0.249909,0,0);-ms-transform:matrix(0.179445,-0.004845,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179445,-0.004845,0.006748,0.249909,0,0);}
.mab_c00261{transform:matrix(0.179495,-0.004846,0.006748,0.249909,0,0);-ms-transform:matrix(0.179495,-0.004846,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179495,-0.004846,0.006748,0.249909,0,0);}
.mbd_c00261{transform:matrix(0.180596,-0.003251,0.004499,0.249960,0,0);-ms-transform:matrix(0.180596,-0.003251,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180596,-0.003251,0.004499,0.249960,0,0);}
.m69_c00261{transform:matrix(0.180954,-0.004886,0.006748,0.249909,0,0);-ms-transform:matrix(0.180954,-0.004886,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180954,-0.004886,0.006748,0.249909,0,0);}
.m76_c00261{transform:matrix(0.180969,-0.004886,0.006748,0.249909,0,0);-ms-transform:matrix(0.180969,-0.004886,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180969,-0.004886,0.006748,0.249909,0,0);}
.m18_c00261{transform:matrix(0.181244,-0.005075,0.006997,0.249902,0,0);-ms-transform:matrix(0.181244,-0.005075,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181244,-0.005075,0.006997,0.249902,0,0);}
.m15_c00261{transform:matrix(0.182034,-0.005097,0.006997,0.249902,0,0);-ms-transform:matrix(0.182034,-0.005097,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182034,-0.005097,0.006997,0.249902,0,0);}
.ma1_c00261{transform:matrix(0.182109,-0.004917,0.006748,0.249909,0,0);-ms-transform:matrix(0.182109,-0.004917,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182109,-0.004917,0.006748,0.249909,0,0);}
.ma_c00261{transform:matrix(0.182169,-0.005101,0.006997,0.249902,0,0);-ms-transform:matrix(0.182169,-0.005101,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182169,-0.005101,0.006997,0.249902,0,0);}
.m4e_c00261{transform:matrix(0.182643,-0.005114,0.006997,0.249902,0,0);-ms-transform:matrix(0.182643,-0.005114,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182643,-0.005114,0.006997,0.249902,0,0);}
.m51_c00261{transform:matrix(0.182793,-0.005118,0.006997,0.249902,0,0);-ms-transform:matrix(0.182793,-0.005118,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182793,-0.005118,0.006997,0.249902,0,0);}
.m94_c00261{transform:matrix(0.183303,-0.004949,0.006748,0.249909,0,0);-ms-transform:matrix(0.183303,-0.004949,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183303,-0.004949,0.006748,0.249909,0,0);}
.m7f_c00261{transform:matrix(0.183323,-0.004950,0.006748,0.249909,0,0);-ms-transform:matrix(0.183323,-0.004950,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183323,-0.004950,0.006748,0.249909,0,0);}
.me6_c00261{transform:matrix(0.183473,-0.005137,0.006997,0.249902,0,0);-ms-transform:matrix(0.183473,-0.005137,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183473,-0.005137,0.006997,0.249902,0,0);}
.m81_c00261{transform:matrix(0.183668,-0.004959,0.006748,0.249909,0,0);-ms-transform:matrix(0.183668,-0.004959,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183668,-0.004959,0.006748,0.249909,0,0);}
.mb2_c00261{transform:matrix(0.183808,-0.004963,0.006748,0.249909,0,0);-ms-transform:matrix(0.183808,-0.004963,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183808,-0.004963,0.006748,0.249909,0,0);}
.m20_c00261{transform:matrix(0.183813,-0.005147,0.006997,0.249902,0,0);-ms-transform:matrix(0.183813,-0.005147,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183813,-0.005147,0.006997,0.249902,0,0);}
.mf1_c00261{transform:matrix(0.184333,-0.005161,0.006997,0.249902,0,0);-ms-transform:matrix(0.184333,-0.005161,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184333,-0.005161,0.006997,0.249902,0,0);}
.mdc_c00261{transform:matrix(0.185095,-0.003332,0.004499,0.249960,0,0);-ms-transform:matrix(0.185095,-0.003332,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185095,-0.003332,0.004499,0.249960,0,0);}
.me3_c00261{transform:matrix(0.185150,-0.003333,0.004499,0.249960,0,0);-ms-transform:matrix(0.185150,-0.003333,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185150,-0.003333,0.004499,0.249960,0,0);}
.mea_c00261{transform:matrix(0.185392,-0.005191,0.006997,0.249902,0,0);-ms-transform:matrix(0.185392,-0.005191,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185392,-0.005191,0.006997,0.249902,0,0);}
.mb5_c00261{transform:matrix(0.185447,-0.005007,0.006748,0.249909,0,0);-ms-transform:matrix(0.185447,-0.005007,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185447,-0.005007,0.006748,0.249909,0,0);}
.m6a_c00261{transform:matrix(0.185657,-0.005013,0.006748,0.249909,0,0);-ms-transform:matrix(0.185657,-0.005013,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185657,-0.005013,0.006748,0.249909,0,0);}
.m9_c00261{transform:matrix(0.185812,-0.005203,0.006997,0.249902,0,0);-ms-transform:matrix(0.185812,-0.005203,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185812,-0.005203,0.006997,0.249902,0,0);}
.m27_c00261{transform:matrix(0.186357,-0.005218,0.006997,0.249902,0,0);-ms-transform:matrix(0.186357,-0.005218,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186357,-0.005218,0.006997,0.249902,0,0);}
.m32_c00261{transform:matrix(0.186547,-0.005223,0.006997,0.249902,0,0);-ms-transform:matrix(0.186547,-0.005223,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186547,-0.005223,0.006997,0.249902,0,0);}
.m25_c00261{transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);-ms-transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);}
.m29_c00261{transform:matrix(0.186667,-0.005227,0.006997,0.249902,0,0);-ms-transform:matrix(0.186667,-0.005227,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186667,-0.005227,0.006997,0.249902,0,0);}
.m9d_c00261{transform:matrix(0.186857,-0.005045,0.006748,0.249909,0,0);-ms-transform:matrix(0.186857,-0.005045,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186857,-0.005045,0.006748,0.249909,0,0);}
.m7b_c00261{transform:matrix(0.186912,-0.005047,0.006748,0.249909,0,0);-ms-transform:matrix(0.186912,-0.005047,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186912,-0.005047,0.006748,0.249909,0,0);}
.m4d_c00261{transform:matrix(0.187142,-0.005240,0.006997,0.249902,0,0);-ms-transform:matrix(0.187142,-0.005240,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187142,-0.005240,0.006997,0.249902,0,0);}
.meb_c00261{transform:matrix(0.187207,-0.005242,0.006997,0.249902,0,0);-ms-transform:matrix(0.187207,-0.005242,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187207,-0.005242,0.006997,0.249902,0,0);}
.m53_c00261{transform:matrix(0.187477,-0.005249,0.006997,0.249902,0,0);-ms-transform:matrix(0.187477,-0.005249,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187477,-0.005249,0.006997,0.249902,0,0);}
.m77_c00261{transform:matrix(0.188121,-0.005079,0.006748,0.249909,0,0);-ms-transform:matrix(0.188121,-0.005079,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188121,-0.005079,0.006748,0.249909,0,0);}
.m3b_c00261{transform:matrix(0.188581,-0.005280,0.006997,0.249902,0,0);-ms-transform:matrix(0.188581,-0.005280,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188581,-0.005280,0.006997,0.249902,0,0);}
.me1_c00261{transform:matrix(0.188704,-0.003397,0.004499,0.249960,0,0);-ms-transform:matrix(0.188704,-0.003397,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188704,-0.003397,0.004499,0.249960,0,0);}
.m9c_c00261{transform:matrix(0.189371,-0.005113,0.006748,0.249909,0,0);-ms-transform:matrix(0.189371,-0.005113,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189371,-0.005113,0.006748,0.249909,0,0);}
.m100_c00261{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m23_c00261{transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);-ms-transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);}
.mbb_c00261{transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-ms-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);}
.m7e_c00261{transform:matrix(0.190396,-0.005141,0.006748,0.249909,0,0);-ms-transform:matrix(0.190396,-0.005141,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190396,-0.005141,0.006748,0.249909,0,0);}
.ma5_c00261{transform:matrix(0.190955,-0.005156,0.006748,0.249909,0,0);-ms-transform:matrix(0.190955,-0.005156,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190955,-0.005156,0.006748,0.249909,0,0);}
.m97_c00261{transform:matrix(0.191525,-0.005171,0.006748,0.249909,0,0);-ms-transform:matrix(0.191525,-0.005171,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191525,-0.005171,0.006748,0.249909,0,0);}
.m58_c00261{transform:matrix(0.191980,-0.005375,0.006997,0.249902,0,0);-ms-transform:matrix(0.191980,-0.005375,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191980,-0.005375,0.006997,0.249902,0,0);}
.m30_c00261{transform:matrix(0.192115,-0.005379,0.006997,0.249902,0,0);-ms-transform:matrix(0.192115,-0.005379,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192115,-0.005379,0.006997,0.249902,0,0);}
.m4c_c00261{transform:matrix(0.192165,-0.005381,0.006997,0.249902,0,0);-ms-transform:matrix(0.192165,-0.005381,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192165,-0.005381,0.006997,0.249902,0,0);}
.mae_c00261{transform:matrix(0.192165,-0.005188,0.006748,0.249909,0,0);-ms-transform:matrix(0.192165,-0.005188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192165,-0.005188,0.006748,0.249909,0,0);}
.m87_c00261{transform:matrix(0.193584,-0.005227,0.006748,0.249909,0,0);-ms-transform:matrix(0.193584,-0.005227,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193584,-0.005227,0.006748,0.249909,0,0);}
.m5a_c00261{transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);-ms-transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);}
.ma8_c00261{transform:matrix(0.193874,-0.005235,0.006748,0.249909,0,0);-ms-transform:matrix(0.193874,-0.005235,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193874,-0.005235,0.006748,0.249909,0,0);}
.m52_c00261{transform:matrix(0.194154,-0.005436,0.006997,0.249902,0,0);-ms-transform:matrix(0.194154,-0.005436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194154,-0.005436,0.006997,0.249902,0,0);}
.m39_c00261{transform:matrix(0.194299,-0.005440,0.006997,0.249902,0,0);-ms-transform:matrix(0.194299,-0.005440,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194299,-0.005440,0.006997,0.249902,0,0);}
.m1e_c00261{transform:matrix(0.194364,-0.005442,0.006997,0.249902,0,0);-ms-transform:matrix(0.194364,-0.005442,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194364,-0.005442,0.006997,0.249902,0,0);}
.m85_c00261{transform:matrix(0.194614,-0.005255,0.006748,0.249909,0,0);-ms-transform:matrix(0.194614,-0.005255,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194614,-0.005255,0.006748,0.249909,0,0);}
.m7d_c00261{transform:matrix(0.194719,-0.005257,0.006748,0.249909,0,0);-ms-transform:matrix(0.194719,-0.005257,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194719,-0.005257,0.006748,0.249909,0,0);}
.m44_c00261{transform:matrix(0.195788,-0.005482,0.006997,0.249902,0,0);-ms-transform:matrix(0.195788,-0.005482,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195788,-0.005482,0.006997,0.249902,0,0);}
.m98_c00261{transform:matrix(0.196029,-0.005293,0.006748,0.249909,0,0);-ms-transform:matrix(0.196029,-0.005293,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196029,-0.005293,0.006748,0.249909,0,0);}
.mfb_c00261{transform:matrix(0.196166,-0.007658,0.009752,0.249810,0,0);-ms-transform:matrix(0.196166,-0.007658,0.009752,0.249810,0,0);-webkit-transform:matrix(0.196166,-0.007658,0.009752,0.249810,0,0);}
.mc2_c00261{transform:matrix(0.196358,-0.003534,0.004499,0.249960,0,0);-ms-transform:matrix(0.196358,-0.003534,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196358,-0.003534,0.004499,0.249960,0,0);}
.mdf_c00261{transform:matrix(0.196378,-0.003535,0.004499,0.249960,0,0);-ms-transform:matrix(0.196378,-0.003535,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196378,-0.003535,0.004499,0.249960,0,0);}
.md1_c00261{transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);-ms-transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);}
.m75_c00261{transform:matrix(0.196573,-0.005307,0.006748,0.249909,0,0);-ms-transform:matrix(0.196573,-0.005307,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196573,-0.005307,0.006748,0.249909,0,0);}
.m46_c00261{transform:matrix(0.196918,-0.005514,0.006997,0.249902,0,0);-ms-transform:matrix(0.196918,-0.005514,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196918,-0.005514,0.006997,0.249902,0,0);}
.m26_c00261{transform:matrix(0.197023,-0.005517,0.006997,0.249902,0,0);-ms-transform:matrix(0.197023,-0.005517,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197023,-0.005517,0.006997,0.249902,0,0);}
.m6f_c00261{transform:matrix(0.197033,-0.005320,0.006748,0.249909,0,0);-ms-transform:matrix(0.197033,-0.005320,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197033,-0.005320,0.006748,0.249909,0,0);}
.m43_c00261{transform:matrix(0.197153,-0.005520,0.006997,0.249902,0,0);-ms-transform:matrix(0.197153,-0.005520,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197153,-0.005520,0.006997,0.249902,0,0);}
.m34_c00261{transform:matrix(0.197198,-0.005522,0.006997,0.249902,0,0);-ms-transform:matrix(0.197198,-0.005522,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197198,-0.005522,0.006997,0.249902,0,0);}
.m3a_c00261{transform:matrix(0.197238,-0.005523,0.006997,0.249902,0,0);-ms-transform:matrix(0.197238,-0.005523,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197238,-0.005523,0.006997,0.249902,0,0);}
.me_c00261{transform:matrix(0.198372,-0.005554,0.006997,0.249902,0,0);-ms-transform:matrix(0.198372,-0.005554,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198372,-0.005554,0.006997,0.249902,0,0);}
.m2e_c00261{transform:matrix(0.198947,-0.005571,0.006997,0.249902,0,0);-ms-transform:matrix(0.198947,-0.005571,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198947,-0.005571,0.006997,0.249902,0,0);}
.mf0_c00261{transform:matrix(0.199082,-0.005574,0.006997,0.249902,0,0);-ms-transform:matrix(0.199082,-0.005574,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199082,-0.005574,0.006997,0.249902,0,0);}
.m67_c00261{transform:matrix(0.199122,-0.005376,0.006748,0.249909,0,0);-ms-transform:matrix(0.199122,-0.005376,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199122,-0.005376,0.006748,0.249909,0,0);}
.m14_c00261{transform:matrix(0.199452,-0.005585,0.006997,0.249902,0,0);-ms-transform:matrix(0.199452,-0.005585,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199452,-0.005585,0.006997,0.249902,0,0);}
.mb9_c00261{transform:matrix(0.199532,-0.005387,0.006748,0.249909,0,0);-ms-transform:matrix(0.199532,-0.005387,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199532,-0.005387,0.006748,0.249909,0,0);}
.md4_c00261{transform:matrix(0.199593,-0.003593,0.004499,0.249960,0,0);-ms-transform:matrix(0.199593,-0.003593,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199593,-0.003593,0.004499,0.249960,0,0);}
.mf4_c00261{transform:matrix(0.199858,-0.007802,0.009752,0.249810,0,0);-ms-transform:matrix(0.199858,-0.007802,0.009752,0.249810,0,0);-webkit-transform:matrix(0.199858,-0.007802,0.009752,0.249810,0,0);}
.ma6_c00261{transform:matrix(0.199982,-0.005400,0.006748,0.249909,0,0);-ms-transform:matrix(0.199982,-0.005400,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199982,-0.005400,0.006748,0.249909,0,0);}
.m71_c00261{transform:matrix(0.200127,-0.005403,0.006748,0.249909,0,0);-ms-transform:matrix(0.200127,-0.005403,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200127,-0.005403,0.006748,0.249909,0,0);}
.m9a_c00261{transform:matrix(0.200242,-0.005407,0.006748,0.249909,0,0);-ms-transform:matrix(0.200242,-0.005407,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200242,-0.005407,0.006748,0.249909,0,0);}
.mc4_c00261{transform:matrix(0.200747,-0.003613,0.004499,0.249960,0,0);-ms-transform:matrix(0.200747,-0.003613,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200747,-0.003613,0.004499,0.249960,0,0);}
.m88_c00261{transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);-ms-transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201552,-0.005442,0.006748,0.249909,0,0);}
.m22_c00261{transform:matrix(0.201796,-0.005650,0.006997,0.249902,0,0);-ms-transform:matrix(0.201796,-0.005650,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201796,-0.005650,0.006997,0.249902,0,0);}
.m45_c00261{transform:matrix(0.201976,-0.005655,0.006997,0.249902,0,0);-ms-transform:matrix(0.201976,-0.005655,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201976,-0.005655,0.006997,0.249902,0,0);}
.mdd_c00261{transform:matrix(0.202172,-0.003639,0.004499,0.249960,0,0);-ms-transform:matrix(0.202172,-0.003639,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202172,-0.003639,0.004499,0.249960,0,0);}
.m91_c00261{transform:matrix(0.202561,-0.005469,0.006748,0.249909,0,0);-ms-transform:matrix(0.202561,-0.005469,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202561,-0.005469,0.006748,0.249909,0,0);}
.mee_c00261{transform:matrix(0.203175,-0.005689,0.006997,0.249902,0,0);-ms-transform:matrix(0.203175,-0.005689,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203175,-0.005689,0.006997,0.249902,0,0);}
.m65_c00261{transform:matrix(0.203306,-0.005489,0.006748,0.249909,0,0);-ms-transform:matrix(0.203306,-0.005489,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203306,-0.005489,0.006748,0.249909,0,0);}
.m68_c00261{transform:matrix(0.204156,-0.005512,0.006748,0.249909,0,0);-ms-transform:matrix(0.204156,-0.005512,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204156,-0.005512,0.006748,0.249909,0,0);}
.m1a_c00261{transform:matrix(0.204265,-0.005719,0.006997,0.249902,0,0);-ms-transform:matrix(0.204265,-0.005719,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204265,-0.005719,0.006997,0.249902,0,0);}
.m54_c00261{transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);-ms-transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);}
.m2f_c00261{transform:matrix(0.204890,-0.005737,0.006997,0.249902,0,0);-ms-transform:matrix(0.204890,-0.005737,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204890,-0.005737,0.006997,0.249902,0,0);}
.m6e_c00261{transform:matrix(0.205240,-0.005541,0.006748,0.249909,0,0);-ms-transform:matrix(0.205240,-0.005541,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205240,-0.005541,0.006748,0.249909,0,0);}
.m50_c00261{transform:matrix(0.205894,-0.005765,0.006997,0.249902,0,0);-ms-transform:matrix(0.205894,-0.005765,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205894,-0.005765,0.006997,0.249902,0,0);}
.m4b_c00261{transform:matrix(0.206554,-0.005784,0.006997,0.249902,0,0);-ms-transform:matrix(0.206554,-0.005784,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206554,-0.005784,0.006997,0.249902,0,0);}
.m64_c00261{transform:matrix(0.207544,-0.005604,0.006748,0.249909,0,0);-ms-transform:matrix(0.207544,-0.005604,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207544,-0.005604,0.006748,0.249909,0,0);}
.m79_c00261{transform:matrix(0.208899,-0.005640,0.006748,0.249909,0,0);-ms-transform:matrix(0.208899,-0.005640,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208899,-0.005640,0.006748,0.249909,0,0);}
.me2_c00261{transform:matrix(0.209166,-0.003765,0.004499,0.249960,0,0);-ms-transform:matrix(0.209166,-0.003765,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209166,-0.003765,0.004499,0.249960,0,0);}
.me0_c00261{transform:matrix(0.209251,-0.003767,0.004499,0.249960,0,0);-ms-transform:matrix(0.209251,-0.003767,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209251,-0.003767,0.004499,0.249960,0,0);}
.m21_c00261{transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);-ms-transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);}
.mb6_c00261{transform:matrix(0.209499,-0.005656,0.006748,0.249909,0,0);-ms-transform:matrix(0.209499,-0.005656,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209499,-0.005656,0.006748,0.249909,0,0);}
.m3d_c00261{transform:matrix(0.209673,-0.005871,0.006997,0.249902,0,0);-ms-transform:matrix(0.209673,-0.005871,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209673,-0.005871,0.006997,0.249902,0,0);}
.m86_c00261{transform:matrix(0.209859,-0.005666,0.006748,0.249909,0,0);-ms-transform:matrix(0.209859,-0.005666,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209859,-0.005666,0.006748,0.249909,0,0);}
.m7_c00261{transform:matrix(0.210303,-0.005888,0.006997,0.249902,0,0);-ms-transform:matrix(0.210303,-0.005888,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210303,-0.005888,0.006997,0.249902,0,0);}
.m41_c00261{transform:matrix(0.210502,-0.005894,0.006997,0.249902,0,0);-ms-transform:matrix(0.210502,-0.005894,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210502,-0.005894,0.006997,0.249902,0,0);}
.m0_c00261{transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);}
.mcb_c00261{transform:matrix(0.212066,-0.003817,0.004499,0.249960,0,0);-ms-transform:matrix(0.212066,-0.003817,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212066,-0.003817,0.004499,0.249960,0,0);}
.m5b_c00261{transform:matrix(0.212102,-0.005939,0.006997,0.249902,0,0);-ms-transform:matrix(0.212102,-0.005939,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212102,-0.005939,0.006997,0.249902,0,0);}
.md0_c00261{transform:matrix(0.212211,-0.003820,0.004499,0.249960,0,0);-ms-transform:matrix(0.212211,-0.003820,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212211,-0.003820,0.004499,0.249960,0,0);}
.m8e_c00261{transform:matrix(0.212288,-0.005732,0.006748,0.249909,0,0);-ms-transform:matrix(0.212288,-0.005732,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212288,-0.005732,0.006748,0.249909,0,0);}
.mba_c00261{transform:matrix(0.212453,-0.005736,0.006748,0.249909,0,0);-ms-transform:matrix(0.212453,-0.005736,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212453,-0.005736,0.006748,0.249909,0,0);}
.m5f_c00261{transform:matrix(0.212467,-0.005949,0.006997,0.249902,0,0);-ms-transform:matrix(0.212467,-0.005949,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212467,-0.005949,0.006997,0.249902,0,0);}
.m6c_c00261{transform:matrix(0.212503,-0.005738,0.006748,0.249909,0,0);-ms-transform:matrix(0.212503,-0.005738,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212503,-0.005738,0.006748,0.249909,0,0);}
.m99_c00261{transform:matrix(0.212702,-0.005743,0.006748,0.249909,0,0);-ms-transform:matrix(0.212702,-0.005743,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212702,-0.005743,0.006748,0.249909,0,0);}
.m96_c00261{transform:matrix(0.212982,-0.005751,0.006748,0.249909,0,0);-ms-transform:matrix(0.212982,-0.005751,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212982,-0.005751,0.006748,0.249909,0,0);}
.ma3_c00261{transform:matrix(0.213787,-0.005772,0.006748,0.249909,0,0);-ms-transform:matrix(0.213787,-0.005772,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213787,-0.005772,0.006748,0.249909,0,0);}
.m8f_c00261{transform:matrix(0.214122,-0.005781,0.006748,0.249909,0,0);-ms-transform:matrix(0.214122,-0.005781,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214122,-0.005781,0.006748,0.249909,0,0);}
.m49_c00261{transform:matrix(0.214736,-0.006013,0.006997,0.249902,0,0);-ms-transform:matrix(0.214736,-0.006013,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214736,-0.006013,0.006997,0.249902,0,0);}
.mdb_c00261{transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);-ms-transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215270,-0.003875,0.004499,0.249960,0,0);}
.mb4_c00261{transform:matrix(0.216056,-0.005834,0.006748,0.249909,0,0);-ms-transform:matrix(0.216056,-0.005834,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216056,-0.005834,0.006748,0.249909,0,0);}
.m3f_c00261{transform:matrix(0.218020,-0.006105,0.006997,0.249902,0,0);-ms-transform:matrix(0.218020,-0.006105,0.006997,0.249902,0,0);-webkit-transform:matrix(0.218020,-0.006105,0.006997,0.249902,0,0);}
.m63_c00261{transform:matrix(0.218835,-0.005909,0.006748,0.249909,0,0);-ms-transform:matrix(0.218835,-0.005909,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218835,-0.005909,0.006748,0.249909,0,0);}
.m6d_c00261{transform:matrix(0.218855,-0.005909,0.006748,0.249909,0,0);-ms-transform:matrix(0.218855,-0.005909,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218855,-0.005909,0.006748,0.249909,0,0);}
.ma7_c00261{transform:matrix(0.218945,-0.005912,0.006748,0.249909,0,0);-ms-transform:matrix(0.218945,-0.005912,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218945,-0.005912,0.006748,0.249909,0,0);}
.m7a_c00261{transform:matrix(0.219210,-0.005919,0.006748,0.249909,0,0);-ms-transform:matrix(0.219210,-0.005919,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219210,-0.005919,0.006748,0.249909,0,0);}
.m37_c00261{transform:matrix(0.220074,-0.006162,0.006997,0.249902,0,0);-ms-transform:matrix(0.220074,-0.006162,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220074,-0.006162,0.006997,0.249902,0,0);}
.m16_c00261{transform:matrix(0.221153,-0.006192,0.006997,0.249902,0,0);-ms-transform:matrix(0.221153,-0.006192,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221153,-0.006192,0.006997,0.249902,0,0);}
.m40_c00261{transform:matrix(0.221578,-0.006204,0.006997,0.249902,0,0);-ms-transform:matrix(0.221578,-0.006204,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221578,-0.006204,0.006997,0.249902,0,0);}
.m7c_c00261{transform:matrix(0.222619,-0.006011,0.006748,0.249909,0,0);-ms-transform:matrix(0.222619,-0.006011,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222619,-0.006011,0.006748,0.249909,0,0);}
.mc8_c00261{transform:matrix(0.223299,-0.004019,0.004499,0.249960,0,0);-ms-transform:matrix(0.223299,-0.004019,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223299,-0.004019,0.004499,0.249960,0,0);}
.m80_c00261{transform:matrix(0.223743,-0.006041,0.006748,0.249909,0,0);-ms-transform:matrix(0.223743,-0.006041,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223743,-0.006041,0.006748,0.249909,0,0);}
.ma2_c00261{transform:matrix(0.224208,-0.006054,0.006748,0.249909,0,0);-ms-transform:matrix(0.224208,-0.006054,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224208,-0.006054,0.006748,0.249909,0,0);}
.mc6_c00261{transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);-ms-transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224329,-0.004038,0.004499,0.249960,0,0);}
.m82_c00261{transform:matrix(0.225083,-0.006077,0.006748,0.249909,0,0);-ms-transform:matrix(0.225083,-0.006077,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225083,-0.006077,0.006748,0.249909,0,0);}
.ma4_c00261{transform:matrix(0.225843,-0.006098,0.006748,0.249909,0,0);-ms-transform:matrix(0.225843,-0.006098,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225843,-0.006098,0.006748,0.249909,0,0);}
.mff_c00261{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.m61_c00261{transform:matrix(0.226771,-0.006350,0.006997,0.249902,0,0);-ms-transform:matrix(0.226771,-0.006350,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226771,-0.006350,0.006997,0.249902,0,0);}
.mb1_c00261{transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);-ms-transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227007,-0.006129,0.006748,0.249909,0,0);}
.mfc_c00261{transform:matrix(0.227257,-0.008872,0.009752,0.249810,0,0);-ms-transform:matrix(0.227257,-0.008872,0.009752,0.249810,0,0);-webkit-transform:matrix(0.227257,-0.008872,0.009752,0.249810,0,0);}
.m92_c00261{transform:matrix(0.227477,-0.006142,0.006748,0.249909,0,0);-ms-transform:matrix(0.227477,-0.006142,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227477,-0.006142,0.006748,0.249909,0,0);}
.mc5_c00261{transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);-ms-transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);}
.mf9_c00261{transform:matrix(0.228186,-0.008908,0.009752,0.249810,0,0);-ms-transform:matrix(0.228186,-0.008908,0.009752,0.249810,0,0);-webkit-transform:matrix(0.228186,-0.008908,0.009752,0.249810,0,0);}
.m101_c00261{transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228955,0.000000,0.000000,0.250000,0,0);}
.mf8_c00261{transform:matrix(0.229036,-0.008941,0.009752,0.249810,0,0);-ms-transform:matrix(0.229036,-0.008941,0.009752,0.249810,0,0);-webkit-transform:matrix(0.229036,-0.008941,0.009752,0.249810,0,0);}
.m56_c00261{transform:matrix(0.230020,-0.006441,0.006997,0.249902,0,0);-ms-transform:matrix(0.230020,-0.006441,0.006997,0.249902,0,0);-webkit-transform:matrix(0.230020,-0.006441,0.006997,0.249902,0,0);}
.md7_c00261{transform:matrix(0.230653,-0.004152,0.004499,0.249960,0,0);-ms-transform:matrix(0.230653,-0.004152,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230653,-0.004152,0.004499,0.249960,0,0);}
.m8c_c00261{transform:matrix(0.230696,-0.006229,0.006748,0.249909,0,0);-ms-transform:matrix(0.230696,-0.006229,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230696,-0.006229,0.006748,0.249909,0,0);}
.m8d_c00261{transform:matrix(0.232145,-0.006268,0.006748,0.249909,0,0);-ms-transform:matrix(0.232145,-0.006268,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232145,-0.006268,0.006748,0.249909,0,0);}
.m35_c00261{transform:matrix(0.232579,-0.006512,0.006997,0.249902,0,0);-ms-transform:matrix(0.232579,-0.006512,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232579,-0.006512,0.006997,0.249902,0,0);}
.m93_c00261{transform:matrix(0.233520,-0.006305,0.006748,0.249909,0,0);-ms-transform:matrix(0.233520,-0.006305,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233520,-0.006305,0.006748,0.249909,0,0);}
.mef_c00261{transform:matrix(0.233703,-0.006544,0.006997,0.249902,0,0);-ms-transform:matrix(0.233703,-0.006544,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233703,-0.006544,0.006997,0.249902,0,0);}
.mde_c00261{transform:matrix(0.234242,-0.004216,0.004499,0.249960,0,0);-ms-transform:matrix(0.234242,-0.004216,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234242,-0.004216,0.004499,0.249960,0,0);}
.mda_c00261{transform:matrix(0.234467,-0.004220,0.004499,0.249960,0,0);-ms-transform:matrix(0.234467,-0.004220,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234467,-0.004220,0.004499,0.249960,0,0);}
.mc7_c00261{transform:matrix(0.236522,-0.004257,0.004499,0.249960,0,0);-ms-transform:matrix(0.236522,-0.004257,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236522,-0.004257,0.004499,0.249960,0,0);}
.mb8_c00261{transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);-ms-transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);}
.mcf_c00261{transform:matrix(0.238921,-0.004301,0.004499,0.249960,0,0);-ms-transform:matrix(0.238921,-0.004301,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238921,-0.004301,0.004499,0.249960,0,0);}
.mfd_c00261{transform:matrix(0.238943,-0.009328,0.009752,0.249810,0,0);-ms-transform:matrix(0.238943,-0.009328,0.009752,0.249810,0,0);-webkit-transform:matrix(0.238943,-0.009328,0.009752,0.249810,0,0);}
.mf2_c00261{transform:matrix(0.239681,-0.006711,0.006997,0.249902,0,0);-ms-transform:matrix(0.239681,-0.006711,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239681,-0.006711,0.006997,0.249902,0,0);}
.m57_c00261{transform:matrix(0.239721,-0.006712,0.006997,0.249902,0,0);-ms-transform:matrix(0.239721,-0.006712,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239721,-0.006712,0.006997,0.249902,0,0);}
.mfa_c00261{transform:matrix(0.239877,-0.009365,0.009752,0.249810,0,0);-ms-transform:matrix(0.239877,-0.009365,0.009752,0.249810,0,0);-webkit-transform:matrix(0.239877,-0.009365,0.009752,0.249810,0,0);}
.mc3_c00261{transform:matrix(0.242261,-0.004361,0.004499,0.249960,0,0);-ms-transform:matrix(0.242261,-0.004361,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242261,-0.004361,0.004499,0.249960,0,0);}
.md2_c00261{transform:matrix(0.243571,-0.004384,0.004499,0.249960,0,0);-ms-transform:matrix(0.243571,-0.004384,0.004499,0.249960,0,0);-webkit-transform:matrix(0.243571,-0.004384,0.004499,0.249960,0,0);}
.md5_c00261{transform:matrix(0.244560,-0.004402,0.004499,0.249960,0,0);-ms-transform:matrix(0.244560,-0.004402,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244560,-0.004402,0.004499,0.249960,0,0);}
.m55_c00261{transform:matrix(0.245094,-0.006863,0.006997,0.249902,0,0);-ms-transform:matrix(0.245094,-0.006863,0.006997,0.249902,0,0);-webkit-transform:matrix(0.245094,-0.006863,0.006997,0.249902,0,0);}
.md6_c00261{transform:matrix(0.246305,-0.004433,0.004499,0.249960,0,0);-ms-transform:matrix(0.246305,-0.004433,0.004499,0.249960,0,0);-webkit-transform:matrix(0.246305,-0.004433,0.004499,0.249960,0,0);}
.mb7_c00261{transform:matrix(0.247190,-0.006674,0.006748,0.249909,0,0);-ms-transform:matrix(0.247190,-0.006674,0.006748,0.249909,0,0);-webkit-transform:matrix(0.247190,-0.006674,0.006748,0.249909,0,0);}
.med_c00261{transform:matrix(0.248787,-0.006966,0.006997,0.249902,0,0);-ms-transform:matrix(0.248787,-0.006966,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248787,-0.006966,0.006997,0.249902,0,0);}
.m4f_c00261{transform:matrix(0.248867,-0.006968,0.006997,0.249902,0,0);-ms-transform:matrix(0.248867,-0.006968,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248867,-0.006968,0.006997,0.249902,0,0);}
.md8_c00261{transform:matrix(0.250379,-0.004507,0.004499,0.249960,0,0);-ms-transform:matrix(0.250379,-0.004507,0.004499,0.249960,0,0);-webkit-transform:matrix(0.250379,-0.004507,0.004499,0.249960,0,0);}
.mcc_c00261{transform:matrix(0.251694,-0.004530,0.004499,0.249960,0,0);-ms-transform:matrix(0.251694,-0.004530,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251694,-0.004530,0.004499,0.249960,0,0);}
.m83_c00261{transform:matrix(0.261305,-0.007055,0.006748,0.249909,0,0);-ms-transform:matrix(0.261305,-0.007055,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261305,-0.007055,0.006748,0.249909,0,0);}
.md3_c00261{transform:matrix(0.264282,-0.004757,0.004499,0.249960,0,0);-ms-transform:matrix(0.264282,-0.004757,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264282,-0.004757,0.004499,0.249960,0,0);}
.m90_c00261{transform:matrix(0.266338,-0.007191,0.006748,0.249909,0,0);-ms-transform:matrix(0.266338,-0.007191,0.006748,0.249909,0,0);-webkit-transform:matrix(0.266338,-0.007191,0.006748,0.249909,0,0);}
.m6b_c00261{transform:matrix(0.292104,-0.007887,0.006748,0.249909,0,0);-ms-transform:matrix(0.292104,-0.007887,0.006748,0.249909,0,0);-webkit-transform:matrix(0.292104,-0.007887,0.006748,0.249909,0,0);}
.mf6_c00261{transform:matrix(0.301091,-0.011754,0.009752,0.249810,0,0);-ms-transform:matrix(0.301091,-0.011754,0.009752,0.249810,0,0);-webkit-transform:matrix(0.301091,-0.011754,0.009752,0.249810,0,0);}
.mfe_c00261{transform:matrix(0.314675,-0.012285,0.009752,0.249810,0,0);-ms-transform:matrix(0.314675,-0.012285,0.009752,0.249810,0,0);-webkit-transform:matrix(0.314675,-0.012285,0.009752,0.249810,0,0);}
.mf5_c00261{transform:matrix(0.373461,-0.014580,0.009752,0.249810,0,0);-ms-transform:matrix(0.373461,-0.014580,0.009752,0.249810,0,0);-webkit-transform:matrix(0.373461,-0.014580,0.009752,0.249810,0,0);}
.mf7_c00261{transform:matrix(0.427045,-0.016671,0.009752,0.249810,0,0);-ms-transform:matrix(0.427045,-0.016671,0.009752,0.249810,0,0);-webkit-transform:matrix(0.427045,-0.016671,0.009752,0.249810,0,0);}
.mec_c00261{transform:matrix(0.451448,-0.012641,0.006997,0.249902,0,0);-ms-transform:matrix(0.451448,-0.012641,0.006997,0.249902,0,0);-webkit-transform:matrix(0.451448,-0.012641,0.006997,0.249902,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:0.000000px;}
.fc0_c00261{color:transparent;}
.fs17_c00261{font-size:20.994980px;}
.fs18_c00261{font-size:54.586949px;}
.fs13_c00261{font-size:55.659015px;}
.fs19_c00261{font-size:57.750000px;}
.fsf_c00261{font-size:58.821429px;}
.fs14_c00261{font-size:59.859695px;}
.fsc_c00261{font-size:59.871811px;}
.fs11_c00261{font-size:60.909865px;}
.fs16_c00261{font-size:60.923868px;}
.fsb_c00261{font-size:61.972577px;}
.fs7_c00261{font-size:61.974280px;}
.fs8_c00261{font-size:64.073342px;}
.fs6_c00261{font-size:64.075103px;}
.fsa_c00261{font-size:65.123725px;}
.fs5_c00261{font-size:65.125514px;}
.fs4_c00261{font-size:67.226337px;}
.fs9_c00261{font-size:68.274873px;}
.fs0_c00261{font-size:69.300000px;}
.fsd_c00261{font-size:69.325255px;}
.fs12_c00261{font-size:70.361396px;}
.fse_c00261{font-size:70.375638px;}
.fs3_c00261{font-size:70.377572px;}
.fs2_c00261{font-size:71.427983px;}
.fs10_c00261{font-size:72.461736px;}
.fs15_c00261{font-size:73.528806px;}
.fs1_c00261{font-size:76.680041px;}
.y0_c00261{bottom:0.000000px;}
.y101_c00261{bottom:16.866000px;}
.yf9_c00261{bottom:32.135926px;}
.yfa_c00261{bottom:33.756790px;}
.yfb_c00261{bottom:34.366333px;}
.yfc_c00261{bottom:35.267571px;}
.yfd_c00261{bottom:36.938803px;}
.yfe_c00261{bottom:37.311525px;}
.yff_c00261{bottom:38.827571px;}
.y100_c00261{bottom:40.211028px;}
.yf5_c00261{bottom:46.174500px;}
.yf6_c00261{bottom:46.985953px;}
.yee_c00261{bottom:49.157940px;}
.yf7_c00261{bottom:50.104998px;}
.yef_c00261{bottom:50.497170px;}
.yf8_c00261{bottom:51.618685px;}
.yf0_c00261{bottom:53.300262px;}
.yf1_c00261{bottom:53.952648px;}
.yf2_c00261{bottom:55.648224px;}
.yf3_c00261{bottom:57.358236px;}
.yf4_c00261{bottom:58.123098px;}
.ye6_c00261{bottom:67.507500px;}
.ye7_c00261{bottom:68.584632px;}
.ye8_c00261{bottom:69.474864px;}
.ye9_c00261{bottom:70.434816px;}
.yea_c00261{bottom:71.420178px;}
.yeb_c00261{bottom:71.802840px;}
.yec_c00261{bottom:72.530028px;}
.yed_c00261{bottom:74.606172px;}
.ydd_c00261{bottom:83.970360px;}
.yde_c00261{bottom:84.601683px;}
.ydf_c00261{bottom:85.122816px;}
.ye0_c00261{bottom:87.074346px;}
.ye1_c00261{bottom:87.667584px;}
.ye2_c00261{bottom:88.384302px;}
.ye3_c00261{bottom:89.660319px;}
.ye4_c00261{bottom:90.530850px;}
.ye5_c00261{bottom:92.632290px;}
.yd5_c00261{bottom:101.791962px;}
.yd6_c00261{bottom:103.639989px;}
.yd7_c00261{bottom:104.228529px;}
.yd8_c00261{bottom:106.344498px;}
.yd9_c00261{bottom:106.827063px;}
.yda_c00261{bottom:108.408162px;}
.ydb_c00261{bottom:108.831669px;}
.ydc_c00261{bottom:109.350333px;}
.ycb_c00261{bottom:118.531329px;}
.ycc_c00261{bottom:119.310966px;}
.ycd_c00261{bottom:119.805915px;}
.yce_c00261{bottom:121.091751px;}
.ycf_c00261{bottom:121.629093px;}
.yd0_c00261{bottom:123.295557px;}
.yd1_c00261{bottom:123.781809px;}
.yd2_c00261{bottom:125.106243px;}
.yd3_c00261{bottom:125.613441px;}
.yd4_c00261{bottom:126.855345px;}
.yc6_c00261{bottom:137.704848px;}
.yc7_c00261{bottom:138.638256px;}
.yc8_c00261{bottom:140.904798px;}
.yc9_c00261{bottom:141.329856px;}
.yca_c00261{bottom:142.973118px;}
.ybe_c00261{bottom:156.333000px;}
.ybf_c00261{bottom:156.562608px;}
.yc0_c00261{bottom:157.567494px;}
.yc1_c00261{bottom:158.040399px;}
.yc2_c00261{bottom:158.327193px;}
.yc3_c00261{bottom:159.177909px;}
.yc4_c00261{bottom:160.252158px;}
.yc5_c00261{bottom:161.049495px;}
.yb6_c00261{bottom:171.392851px;}
.yb7_c00261{bottom:172.978891px;}
.yb8_c00261{bottom:173.589081px;}
.yb9_c00261{bottom:174.974977px;}
.yba_c00261{bottom:175.314516px;}
.ybb_c00261{bottom:175.656970px;}
.ybc_c00261{bottom:177.237259px;}
.ybd_c00261{bottom:177.760257px;}
.yac_c00261{bottom:190.299439px;}
.yad_c00261{bottom:191.517031px;}
.yae_c00261{bottom:192.031300px;}
.yaf_c00261{bottom:192.541600px;}
.yb0_c00261{bottom:193.303405px;}
.yb1_c00261{bottom:194.214736px;}
.yb2_c00261{bottom:194.783559px;}
.yb3_c00261{bottom:196.167768px;}
.yb4_c00261{bottom:196.479334px;}
.yb5_c00261{bottom:197.483977px;}
.ya5_c00261{bottom:208.120689px;}
.ya6_c00261{bottom:208.949116px;}
.ya7_c00261{bottom:210.544930px;}
.ya8_c00261{bottom:211.004901px;}
.ya9_c00261{bottom:211.820172px;}
.yaa_c00261{bottom:212.513367px;}
.yab_c00261{bottom:213.000700px;}
.y9d_c00261{bottom:225.139878px;}
.y9e_c00261{bottom:226.011733px;}
.y9f_c00261{bottom:226.669968px;}
.ya0_c00261{bottom:228.492687px;}
.ya1_c00261{bottom:229.482103px;}
.ya2_c00261{bottom:229.943644px;}
.ya3_c00261{bottom:230.348085px;}
.ya4_c00261{bottom:231.641470px;}
.y96_c00261{bottom:242.158491px;}
.y97_c00261{bottom:243.185806px;}
.y98_c00261{bottom:243.674904px;}
.y99_c00261{bottom:245.217600px;}
.y9a_c00261{bottom:245.839926px;}
.y9b_c00261{bottom:247.139328px;}
.y9c_c00261{bottom:248.628853px;}
.y8f_c00261{bottom:258.903312px;}
.y90_c00261{bottom:259.899897px;}
.y91_c00261{bottom:261.468037px;}
.y92_c00261{bottom:262.367305px;}
.y93_c00261{bottom:263.512804px;}
.y94_c00261{bottom:265.205154px;}
.y95_c00261{bottom:265.740462px;}
.y86_c00261{bottom:275.650489px;}
.y87_c00261{bottom:276.327259px;}
.y88_c00261{bottom:277.700643px;}
.y89_c00261{bottom:278.587801px;}
.y8a_c00261{bottom:279.234480px;}
.y8b_c00261{bottom:281.150097px;}
.y8c_c00261{bottom:281.537059px;}
.y8d_c00261{bottom:282.270891px;}
.y8e_c00261{bottom:282.746829px;}
.y7f_c00261{bottom:292.669677px;}
.y80_c00261{bottom:293.785817px;}
.y81_c00261{bottom:294.583735px;}
.y82_c00261{bottom:295.829884px;}
.y83_c00261{bottom:298.312461px;}
.y84_c00261{bottom:299.043795px;}
.y85_c00261{bottom:300.385082px;}
.y75_c00261{bottom:309.952141px;}
.y76_c00261{bottom:310.640115px;}
.y77_c00261{bottom:310.969421px;}
.y78_c00261{bottom:311.837416px;}
.y79_c00261{bottom:312.931321px;}
.y7a_c00261{bottom:313.880237px;}
.y7b_c00261{bottom:315.418264px;}
.y7c_c00261{bottom:315.924838px;}
.y7d_c00261{bottom:316.475719px;}
.y7e_c00261{bottom:317.526492px;}
.y6d_c00261{bottom:326.972356px;}
.y6e_c00261{bottom:327.582951px;}
.y6f_c00261{bottom:328.848042px;}
.y70_c00261{bottom:330.168817px;}
.y71_c00261{bottom:331.865622px;}
.y72_c00261{bottom:333.229934px;}
.y73_c00261{bottom:333.567163px;}
.y74_c00261{bottom:334.185979px;}
.y64_c00261{bottom:345.606000px;}
.y65_c00261{bottom:346.331598px;}
.y66_c00261{bottom:347.010904px;}
.y67_c00261{bottom:348.315531px;}
.y68_c00261{bottom:348.837657px;}
.y69_c00261{bottom:349.945940px;}
.y6a_c00261{bottom:350.711511px;}
.y6b_c00261{bottom:351.290945px;}
.y6c_c00261{bottom:352.175059px;}
.y59_c00261{bottom:362.545386px;}
.y5a_c00261{bottom:363.042654px;}
.y5b_c00261{bottom:363.453420px;}
.y5c_c00261{bottom:363.972312px;}
.y5d_c00261{bottom:365.389428px;}
.y5e_c00261{bottom:365.981622px;}
.y5f_c00261{bottom:366.436200px;}
.y60_c00261{bottom:367.109688px;}
.y61_c00261{bottom:367.768368px;}
.y62_c00261{bottom:368.371116px;}
.y63_c00261{bottom:369.164796px;}
.y51_c00261{bottom:380.371794px;}
.y52_c00261{bottom:381.979464px;}
.y53_c00261{bottom:382.425084px;}
.y54_c00261{bottom:383.568000px;}
.y55_c00261{bottom:384.501060px;}
.y56_c00261{bottom:385.492950px;}
.y57_c00261{bottom:385.992570px;}
.y58_c00261{bottom:386.498964px;}
.y4a_c00261{bottom:397.388742px;}
.y4b_c00261{bottom:398.985462px;}
.y4c_c00261{bottom:399.707448px;}
.y4d_c00261{bottom:401.457306px;}
.y4e_c00261{bottom:402.004806px;}
.y4f_c00261{bottom:403.106874px;}
.y50_c00261{bottom:404.112906px;}
.y41_c00261{bottom:413.865552px;}
.y42_c00261{bottom:414.843174px;}
.y43_c00261{bottom:415.289346px;}
.y44_c00261{bottom:415.903512px;}
.y45_c00261{bottom:417.133020px;}
.y46_c00261{bottom:417.719730px;}
.y47_c00261{bottom:418.957470px;}
.y48_c00261{bottom:420.856938px;}
.y49_c00261{bottom:421.761870px;}
.y3a_c00261{bottom:431.688750px;}
.y3b_c00261{bottom:432.670260px;}
.y3c_c00261{bottom:434.485338px;}
.y3d_c00261{bottom:435.325596px;}
.y3e_c00261{bottom:435.762888px;}
.y3f_c00261{bottom:437.124792px;}
.y40_c00261{bottom:437.606892px;}
.y32_c00261{bottom:448.168128px;}
.y33_c00261{bottom:449.054622px;}
.y34_c00261{bottom:450.382116px;}
.y35_c00261{bottom:451.202922px;}
.y36_c00261{bottom:452.329572px;}
.y37_c00261{bottom:452.915850px;}
.y38_c00261{bottom:453.638628px;}
.y39_c00261{bottom:456.079122px;}
.y29_c00261{bottom:465.188022px;}
.y2a_c00261{bottom:465.844020px;}
.y2b_c00261{bottom:467.917812px;}
.y2c_c00261{bottom:468.415092px;}
.y2d_c00261{bottom:469.695000px;}
.y2e_c00261{bottom:470.368008px;}
.y2f_c00261{bottom:470.705940px;}
.y30_c00261{bottom:472.466748px;}
.y31_c00261{bottom:472.855332px;}
.y22_c00261{bottom:482.743188px;}
.y23_c00261{bottom:483.084942px;}
.y24_c00261{bottom:485.670294px;}
.y25_c00261{bottom:486.305292px;}
.y26_c00261{bottom:487.071078px;}
.y27_c00261{bottom:489.834006px;}
.y28_c00261{bottom:490.652922px;}
.y1b_c00261{bottom:499.762710px;}
.y1c_c00261{bottom:502.277628px;}
.y1d_c00261{bottom:503.169522px;}
.y1e_c00261{bottom:503.774418px;}
.y1f_c00261{bottom:505.653426px;}
.y20_c00261{bottom:506.775402px;}
.y21_c00261{bottom:507.387186px;}
.y14_c00261{bottom:517.317936px;}
.y15_c00261{bottom:519.106212px;}
.y16_c00261{bottom:520.222194px;}
.y17_c00261{bottom:522.143148px;}
.y18_c00261{bottom:523.756746px;}
.y19_c00261{bottom:524.332356px;}
.y1a_c00261{bottom:525.370008px;}
.ya_c00261{bottom:534.603690px;}
.yb_c00261{bottom:536.439930px;}
.yc_c00261{bottom:537.269874px;}
.yd_c00261{bottom:538.053000px;}
.ye_c00261{bottom:538.558788px;}
.yf_c00261{bottom:539.863158px;}
.y10_c00261{bottom:540.251550px;}
.y11_c00261{bottom:540.689280px;}
.y12_c00261{bottom:541.207332px;}
.y13_c00261{bottom:542.892282px;}
.y2_c00261{bottom:551.889000px;}
.y3_c00261{bottom:552.922200px;}
.y4_c00261{bottom:553.891182px;}
.y5_c00261{bottom:555.058572px;}
.y6_c00261{bottom:556.669482px;}
.y7_c00261{bottom:557.289990px;}
.y8_c00261{bottom:559.157646px;}
.y9_c00261{bottom:559.884372px;}
.y1_c00261{bottom:572.802000px;}
.h19_c00261{height:20.994980px;}
.h1a_c00261{height:54.586949px;}
.h15_c00261{height:55.659015px;}
.h1b_c00261{height:57.750000px;}
.h11_c00261{height:58.821429px;}
.h16_c00261{height:59.859695px;}
.he_c00261{height:59.871811px;}
.h13_c00261{height:60.909865px;}
.h18_c00261{height:60.923868px;}
.hd_c00261{height:61.972577px;}
.h9_c00261{height:61.974280px;}
.ha_c00261{height:64.073342px;}
.h8_c00261{height:64.075103px;}
.hc_c00261{height:65.123725px;}
.h7_c00261{height:65.125514px;}
.h6_c00261{height:67.226337px;}
.hb_c00261{height:68.274873px;}
.h2_c00261{height:69.300000px;}
.hf_c00261{height:69.325255px;}
.h14_c00261{height:70.361396px;}
.h10_c00261{height:70.375638px;}
.h5_c00261{height:70.377572px;}
.h4_c00261{height:71.427983px;}
.h12_c00261{height:72.461736px;}
.h17_c00261{height:73.528806px;}
.h3_c00261{height:76.680041px;}
.h1_c00261{height:618.750000px;}
.h0_c00261{height:619.050000px;}
.w0_c00261{width:359.100000px;}
.w1_c00261{width:359.250000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:38.418000px;}
.x33_c00261{left:39.517980px;}
.x67_c00261{left:40.787979px;}
.x1c_c00261{left:51.154482px;}
.x63_c00261{left:52.270500px;}
.x43_c00261{left:56.641500px;}
.x72_c00261{left:57.751500px;}
.x3c_c00261{left:59.598648px;}
.x6f_c00261{left:61.407705px;}
.x20_c00261{left:62.684382px;}
.x4e_c00261{left:64.835860px;}
.x69_c00261{left:66.828396px;}
.x28_c00261{left:70.556784px;}
.x2e_c00261{left:72.874770px;}
.x3_c00261{left:75.318000px;}
.x3d_c00261{left:76.735080px;}
.x54_c00261{left:78.280643px;}
.x53_c00261{left:79.345665px;}
.x44_c00261{left:83.515500px;}
.x2c_c00261{left:85.335264px;}
.x2f_c00261{left:88.273350px;}
.x78_c00261{left:94.770000px;}
.x73_c00261{left:96.220500px;}
.x34_c00261{left:98.634618px;}
.xa_c00261{left:101.772366px;}
.x57_c00261{left:103.477753px;}
.x38_c00261{left:106.438026px;}
.x45_c00261{left:108.675000px;}
.x4_c00261{left:109.924500px;}
.x4a_c00261{left:111.079291px;}
.x29_c00261{left:117.967284px;}
.x64_c00261{left:120.853500px;}
.x17_c00261{left:122.572956px;}
.x5e_c00261{left:124.334886px;}
.x35_c00261{left:125.384874px;}
.x6a_c00261{left:128.248746px;}
.xb_c00261{left:130.394568px;}
.x21_c00261{left:136.748382px;}
.x55_c00261{left:138.583763px;}
.x12_c00261{left:142.445970px;}
.x1d_c00261{left:143.488482px;}
.x2a_c00261{left:147.281784px;}
.x4f_c00261{left:149.695360px;}
.x5_c00261{left:151.617000px;}
.x22_c00261{left:154.508382px;}
.xc_c00261{left:157.398312px;}
.x4b_c00261{left:161.887168px;}
.x65_c00261{left:163.059000px;}
.x1_c00261{left:166.320000px;}
.x58_c00261{left:167.730937px;}
.x68_c00261{left:168.796860px;}
.x18_c00261{left:172.437642px;}
.xd_c00261{left:174.818808px;}
.x46_c00261{left:176.332500px;}
.x5f_c00261{left:177.665844px;}
.x3e_c00261{left:182.093382px;}
.x50_c00261{left:184.840360px;}
.x2b_c00261{left:187.519284px;}
.x36_c00261{left:190.185180px;}
.x1e_c00261{left:193.516482px;}
.x74_c00261{left:195.404574px;}
.x6c_c00261{left:197.327985px;}
.x23_c00261{left:200.219382px;}
.x60_c00261{left:203.925573px;}
.x5c_c00261{left:206.136642px;}
.x6_c00261{left:209.149500px;}
.x13_c00261{left:211.051470px;}
.x5a_c00261{left:213.559371px;}
.x30_c00261{left:214.827864px;}
.x47_c00261{left:217.380000px;}
.xe_c00261{left:219.795048px;}
.x6b_c00261{left:221.011386px;}
.x24_c00261{left:224.255382px;}
.x4c_c00261{left:227.122410px;}
.x3f_c00261{left:229.083132px;}
.x7_c00261{left:231.310500px;}
.xf_c00261{left:233.183670px;}
.x19_c00261{left:235.095156px;}
.x25_c00261{left:236.324382px;}
.x51_c00261{left:241.804360px;}
.x48_c00261{left:245.734500px;}
.x10_c00261{left:248.280750px;}
.x75_c00261{left:250.116996px;}
.x37_c00261{left:251.242860px;}
.x39_c00261{left:252.828906px;}
.x40_c00261{left:256.521198px;}
.x5b_c00261{left:257.533430px;}
.x70_c00261{left:259.096545px;}
.x52_c00261{left:260.566360px;}
.x61_c00261{left:264.734234px;}
.x11_c00261{left:266.139246px;}
.x49_c00261{left:267.195000px;}
.x14_c00261{left:268.679970px;}
.x66_c00261{left:270.001500px;}
.x1a_c00261{left:272.485056px;}
.x3a_c00261{left:273.621216px;}
.x77_c00261{left:279.256070px;}
.x31_c00261{left:280.307016px;}
.x41_c00261{left:281.640012px;}
.x6d_c00261{left:283.070502px;}
.x62_c00261{left:284.827260px;}
.x15_c00261{left:289.237470px;}
.x1b_c00261{left:292.886922px;}
.x3b_c00261{left:294.709068px;}
.x8_c00261{left:298.012500px;}
.x26_c00261{left:299.210382px;}
.x6e_c00261{left:300.964965px;}
.x56_c00261{left:302.881677px;}
.x5d_c00261{left:306.152142px;}
.x59_c00261{left:309.862939px;}
.x32_c00261{left:311.500134px;}
.x27_c00261{left:313.088382px;}
.x42_c00261{left:314.703708px;}
.x4d_c00261{left:316.397340px;}
.x2d_c00261{left:320.350254px;}
.x1f_c00261{left:321.439482px;}
.x9_c00261{left:323.967000px;}
.x16_c00261{left:326.296470px;}
.x71_c00261{left:329.161425px;}
.x76_c00261{left:333.689906px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
.fs17_c00261{font-size:18.662205pt;}
.fs18_c00261{font-size:48.521732pt;}
.fs13_c00261{font-size:49.474680pt;}
.fs19_c00261{font-size:51.333333pt;}
.fsf_c00261{font-size:52.285714pt;}
.fs14_c00261{font-size:53.208618pt;}
.fsc_c00261{font-size:53.219388pt;}
.fs11_c00261{font-size:54.142102pt;}
.fs16_c00261{font-size:54.154549pt;}
.fsb_c00261{font-size:55.086735pt;}
.fs7_c00261{font-size:55.088249pt;}
.fs8_c00261{font-size:56.954082pt;}
.fs6_c00261{font-size:56.955647pt;}
.fsa_c00261{font-size:57.887755pt;}
.fs5_c00261{font-size:57.889346pt;}
.fs4_c00261{font-size:59.756744pt;}
.fs9_c00261{font-size:60.688776pt;}
.fs0_c00261{font-size:61.600000pt;}
.fsd_c00261{font-size:61.622449pt;}
.fs12_c00261{font-size:62.543463pt;}
.fse_c00261{font-size:62.556123pt;}
.fs3_c00261{font-size:62.557842pt;}
.fs2_c00261{font-size:63.491541pt;}
.fs10_c00261{font-size:64.410432pt;}
.fs15_c00261{font-size:65.358939pt;}
.fs1_c00261{font-size:68.160036pt;}
.y0_c00261{bottom:0.000000pt;}
.y101_c00261{bottom:14.992000pt;}
.yf9_c00261{bottom:28.565268pt;}
.yfa_c00261{bottom:30.006036pt;}
.yfb_c00261{bottom:30.547852pt;}
.yfc_c00261{bottom:31.348952pt;}
.yfd_c00261{bottom:32.834492pt;}
.yfe_c00261{bottom:33.165800pt;}
.yff_c00261{bottom:34.513396pt;}
.y100_c00261{bottom:35.743136pt;}
.yf5_c00261{bottom:41.044000pt;}
.yf6_c00261{bottom:41.765292pt;}
.yee_c00261{bottom:43.695947pt;}
.yf7_c00261{bottom:44.537776pt;}
.yef_c00261{bottom:44.886373pt;}
.yf8_c00261{bottom:45.883276pt;}
.yf0_c00261{bottom:47.378011pt;}
.yf1_c00261{bottom:47.957909pt;}
.yf2_c00261{bottom:49.465088pt;}
.yf3_c00261{bottom:50.985099pt;}
.yf4_c00261{bottom:51.664976pt;}
.ye6_c00261{bottom:60.006667pt;}
.ye7_c00261{bottom:60.964117pt;}
.ye8_c00261{bottom:61.755435pt;}
.ye9_c00261{bottom:62.608725pt;}
.yea_c00261{bottom:63.484603pt;}
.yeb_c00261{bottom:63.824747pt;}
.yec_c00261{bottom:64.471136pt;}
.yed_c00261{bottom:66.316597pt;}
.ydd_c00261{bottom:74.640320pt;}
.yde_c00261{bottom:75.201496pt;}
.ydf_c00261{bottom:75.664725pt;}
.ye0_c00261{bottom:77.399419pt;}
.ye1_c00261{bottom:77.926741pt;}
.ye2_c00261{bottom:78.563824pt;}
.ye3_c00261{bottom:79.698061pt;}
.ye4_c00261{bottom:80.471867pt;}
.ye5_c00261{bottom:82.339813pt;}
.yd5_c00261{bottom:90.481744pt;}
.yd6_c00261{bottom:92.124435pt;}
.yd7_c00261{bottom:92.647581pt;}
.yd8_c00261{bottom:94.528443pt;}
.yd9_c00261{bottom:94.957389pt;}
.yda_c00261{bottom:96.362811pt;}
.ydb_c00261{bottom:96.739261pt;}
.ydc_c00261{bottom:97.200296pt;}
.ycb_c00261{bottom:105.361181pt;}
.ycc_c00261{bottom:106.054192pt;}
.ycd_c00261{bottom:106.494147pt;}
.yce_c00261{bottom:107.637112pt;}
.ycf_c00261{bottom:108.114749pt;}
.yd0_c00261{bottom:109.596051pt;}
.yd1_c00261{bottom:110.028275pt;}
.yd2_c00261{bottom:111.205549pt;}
.yd3_c00261{bottom:111.656392pt;}
.yd4_c00261{bottom:112.760307pt;}
.yc6_c00261{bottom:122.404309pt;}
.yc7_c00261{bottom:123.234005pt;}
.yc8_c00261{bottom:125.248709pt;}
.yc9_c00261{bottom:125.626539pt;}
.yca_c00261{bottom:127.087216pt;}
.ybe_c00261{bottom:138.962667pt;}
.ybf_c00261{bottom:139.166763pt;}
.yc0_c00261{bottom:140.059995pt;}
.yc1_c00261{bottom:140.480355pt;}
.yc2_c00261{bottom:140.735283pt;}
.yc3_c00261{bottom:141.491475pt;}
.yc4_c00261{bottom:142.446363pt;}
.yc5_c00261{bottom:143.155107pt;}
.yb6_c00261{bottom:152.349201pt;}
.yb7_c00261{bottom:153.759015pt;}
.yb8_c00261{bottom:154.301405pt;}
.yb9_c00261{bottom:155.533313pt;}
.yba_c00261{bottom:155.835125pt;}
.ybb_c00261{bottom:156.139529pt;}
.ybc_c00261{bottom:157.544231pt;}
.ybd_c00261{bottom:158.009117pt;}
.yac_c00261{bottom:169.155057pt;}
.yad_c00261{bottom:170.237361pt;}
.yae_c00261{bottom:170.694489pt;}
.yaf_c00261{bottom:171.148089pt;}
.yb0_c00261{bottom:171.825249pt;}
.yb1_c00261{bottom:172.635321pt;}
.yb2_c00261{bottom:173.140941pt;}
.yb3_c00261{bottom:174.371349pt;}
.yb4_c00261{bottom:174.648297pt;}
.yb5_c00261{bottom:175.541313pt;}
.ya5_c00261{bottom:184.996168pt;}
.ya6_c00261{bottom:185.732548pt;}
.ya7_c00261{bottom:187.151049pt;}
.ya8_c00261{bottom:187.559912pt;}
.ya9_c00261{bottom:188.284597pt;}
.yaa_c00261{bottom:188.900771pt;}
.yab_c00261{bottom:189.333956pt;}
.y9d_c00261{bottom:200.124336pt;}
.y9e_c00261{bottom:200.899319pt;}
.y9f_c00261{bottom:201.484416pt;}
.ya0_c00261{bottom:203.104611pt;}
.ya1_c00261{bottom:203.984092pt;}
.ya2_c00261{bottom:204.394351pt;}
.ya3_c00261{bottom:204.753853pt;}
.ya4_c00261{bottom:205.903529pt;}
.y96_c00261{bottom:215.251992pt;}
.y97_c00261{bottom:216.165161pt;}
.y98_c00261{bottom:216.599915pt;}
.y99_c00261{bottom:217.971200pt;}
.y9a_c00261{bottom:218.524379pt;}
.y9b_c00261{bottom:219.679403pt;}
.y9c_c00261{bottom:221.003425pt;}
.y8f_c00261{bottom:230.136277pt;}
.y90_c00261{bottom:231.022131pt;}
.y91_c00261{bottom:232.416033pt;}
.y92_c00261{bottom:233.215383pt;}
.y93_c00261{bottom:234.233604pt;}
.y94_c00261{bottom:235.737915pt;}
.y95_c00261{bottom:236.213744pt;}
.y86_c00261{bottom:245.022657pt;}
.y87_c00261{bottom:245.624231pt;}
.y88_c00261{bottom:246.845016pt;}
.y89_c00261{bottom:247.633601pt;}
.y8a_c00261{bottom:248.208427pt;}
.y8b_c00261{bottom:249.911197pt;}
.y8c_c00261{bottom:250.255164pt;}
.y8d_c00261{bottom:250.907459pt;}
.y8e_c00261{bottom:251.330515pt;}
.y7f_c00261{bottom:260.150824pt;}
.y80_c00261{bottom:261.142948pt;}
.y81_c00261{bottom:261.852209pt;}
.y82_c00261{bottom:262.959897pt;}
.y83_c00261{bottom:265.166632pt;}
.y84_c00261{bottom:265.816707pt;}
.y85_c00261{bottom:267.008961pt;}
.y75_c00261{bottom:275.513015pt;}
.y76_c00261{bottom:276.124547pt;}
.y77_c00261{bottom:276.417263pt;}
.y78_c00261{bottom:277.188815pt;}
.y79_c00261{bottom:278.161175pt;}
.y7a_c00261{bottom:279.004655pt;}
.y7b_c00261{bottom:280.371791pt;}
.y7c_c00261{bottom:280.822079pt;}
.y7d_c00261{bottom:281.311751pt;}
.y7e_c00261{bottom:282.245771pt;}
.y6d_c00261{bottom:290.642095pt;}
.y6e_c00261{bottom:291.184845pt;}
.y6f_c00261{bottom:292.309371pt;}
.y70_c00261{bottom:293.483393pt;}
.y71_c00261{bottom:294.991664pt;}
.y72_c00261{bottom:296.204385pt;}
.y73_c00261{bottom:296.504145pt;}
.y74_c00261{bottom:297.054204pt;}
.y64_c00261{bottom:307.205333pt;}
.y65_c00261{bottom:307.850309pt;}
.y66_c00261{bottom:308.454137pt;}
.y67_c00261{bottom:309.613805pt;}
.y68_c00261{bottom:310.077917pt;}
.y69_c00261{bottom:311.063057pt;}
.y6a_c00261{bottom:311.743565pt;}
.y6b_c00261{bottom:312.258617pt;}
.y6c_c00261{bottom:313.044497pt;}
.y59_c00261{bottom:322.262565pt;}
.y5a_c00261{bottom:322.704581pt;}
.y5b_c00261{bottom:323.069707pt;}
.y5c_c00261{bottom:323.530944pt;}
.y5d_c00261{bottom:324.790603pt;}
.y5e_c00261{bottom:325.316997pt;}
.y5f_c00261{bottom:325.721067pt;}
.y60_c00261{bottom:326.319723pt;}
.y61_c00261{bottom:326.905216pt;}
.y62_c00261{bottom:327.440992pt;}
.y63_c00261{bottom:328.146485pt;}
.y51_c00261{bottom:338.108261pt;}
.y52_c00261{bottom:339.537301pt;}
.y53_c00261{bottom:339.933408pt;}
.y54_c00261{bottom:340.949333pt;}
.y55_c00261{bottom:341.778720pt;}
.y56_c00261{bottom:342.660400pt;}
.y57_c00261{bottom:343.104507pt;}
.y58_c00261{bottom:343.554635pt;}
.y4a_c00261{bottom:353.234437pt;}
.y4b_c00261{bottom:354.653744pt;}
.y4c_c00261{bottom:355.295509pt;}
.y4d_c00261{bottom:356.850939pt;}
.y4e_c00261{bottom:357.337605pt;}
.y4f_c00261{bottom:358.317221pt;}
.y50_c00261{bottom:359.211472pt;}
.y41_c00261{bottom:367.880491pt;}
.y42_c00261{bottom:368.749488pt;}
.y43_c00261{bottom:369.146085pt;}
.y44_c00261{bottom:369.692011pt;}
.y45_c00261{bottom:370.784907pt;}
.y46_c00261{bottom:371.306427pt;}
.y47_c00261{bottom:372.406640pt;}
.y48_c00261{bottom:374.095056pt;}
.y49_c00261{bottom:374.899440pt;}
.y3a_c00261{bottom:383.723333pt;}
.y3b_c00261{bottom:384.595787pt;}
.y3c_c00261{bottom:386.209189pt;}
.y3d_c00261{bottom:386.956085pt;}
.y3e_c00261{bottom:387.344789pt;}
.y3f_c00261{bottom:388.555371pt;}
.y40_c00261{bottom:388.983904pt;}
.y32_c00261{bottom:398.371669pt;}
.y33_c00261{bottom:399.159664pt;}
.y34_c00261{bottom:400.339659pt;}
.y35_c00261{bottom:401.069264pt;}
.y36_c00261{bottom:402.070731pt;}
.y37_c00261{bottom:402.591867pt;}
.y38_c00261{bottom:403.234336pt;}
.y39_c00261{bottom:405.403664pt;}
.y29_c00261{bottom:413.500464pt;}
.y2a_c00261{bottom:414.083573pt;}
.y2b_c00261{bottom:415.926944pt;}
.y2c_c00261{bottom:416.368971pt;}
.y2d_c00261{bottom:417.506667pt;}
.y2e_c00261{bottom:418.104896pt;}
.y2f_c00261{bottom:418.405280pt;}
.y30_c00261{bottom:419.970443pt;}
.y31_c00261{bottom:420.315851pt;}
.y22_c00261{bottom:429.105056pt;}
.y23_c00261{bottom:429.408837pt;}
.y24_c00261{bottom:431.706928pt;}
.y25_c00261{bottom:432.271371pt;}
.y26_c00261{bottom:432.952069pt;}
.y27_c00261{bottom:435.408005pt;}
.y28_c00261{bottom:436.135931pt;}
.y1b_c00261{bottom:444.233520pt;}
.y1c_c00261{bottom:446.469003pt;}
.y1d_c00261{bottom:447.261797pt;}
.y1e_c00261{bottom:447.799483pt;}
.y1f_c00261{bottom:449.469712pt;}
.y20_c00261{bottom:450.467024pt;}
.y21_c00261{bottom:451.010832pt;}
.y14_c00261{bottom:459.838165pt;}
.y15_c00261{bottom:461.427744pt;}
.y16_c00261{bottom:462.419728pt;}
.y17_c00261{bottom:464.127243pt;}
.y18_c00261{bottom:465.561552pt;}
.y19_c00261{bottom:466.073205pt;}
.y1a_c00261{bottom:466.995563pt;}
.ya_c00261{bottom:475.203280pt;}
.yb_c00261{bottom:476.835493pt;}
.yc_c00261{bottom:477.573221pt;}
.yd_c00261{bottom:478.269333pt;}
.ye_c00261{bottom:478.718923pt;}
.yf_c00261{bottom:479.878363pt;}
.y10_c00261{bottom:480.223600pt;}
.y11_c00261{bottom:480.612693pt;}
.y12_c00261{bottom:481.073184pt;}
.y13_c00261{bottom:482.570917pt;}
.y2_c00261{bottom:490.568000pt;}
.y3_c00261{bottom:491.486400pt;}
.y4_c00261{bottom:492.347717pt;}
.y5_c00261{bottom:493.385397pt;}
.y6_c00261{bottom:494.817317pt;}
.y7_c00261{bottom:495.368880pt;}
.y8_c00261{bottom:497.029019pt;}
.y9_c00261{bottom:497.674997pt;}
.y1_c00261{bottom:509.157333pt;}
.h19_c00261{height:18.662205pt;}
.h1a_c00261{height:48.521732pt;}
.h15_c00261{height:49.474680pt;}
.h1b_c00261{height:51.333333pt;}
.h11_c00261{height:52.285714pt;}
.h16_c00261{height:53.208618pt;}
.he_c00261{height:53.219388pt;}
.h13_c00261{height:54.142102pt;}
.h18_c00261{height:54.154549pt;}
.hd_c00261{height:55.086735pt;}
.h9_c00261{height:55.088249pt;}
.ha_c00261{height:56.954082pt;}
.h8_c00261{height:56.955647pt;}
.hc_c00261{height:57.887755pt;}
.h7_c00261{height:57.889346pt;}
.h6_c00261{height:59.756744pt;}
.hb_c00261{height:60.688776pt;}
.h2_c00261{height:61.600000pt;}
.hf_c00261{height:61.622449pt;}
.h14_c00261{height:62.543463pt;}
.h10_c00261{height:62.556123pt;}
.h5_c00261{height:62.557842pt;}
.h4_c00261{height:63.491541pt;}
.h12_c00261{height:64.410432pt;}
.h17_c00261{height:65.358939pt;}
.h3_c00261{height:68.160036pt;}
.h1_c00261{height:550.000000pt;}
.h0_c00261{height:550.266667pt;}
.w0_c00261{width:319.200000pt;}
.w1_c00261{width:319.333333pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:34.149333pt;}
.x33_c00261{left:35.127093pt;}
.x67_c00261{left:36.255981pt;}
.x1c_c00261{left:45.470651pt;}
.x63_c00261{left:46.462667pt;}
.x43_c00261{left:50.348000pt;}
.x72_c00261{left:51.334667pt;}
.x3c_c00261{left:52.976576pt;}
.x6f_c00261{left:54.584627pt;}
.x20_c00261{left:55.719451pt;}
.x4e_c00261{left:57.631876pt;}
.x69_c00261{left:59.403019pt;}
.x28_c00261{left:62.717141pt;}
.x2e_c00261{left:64.777573pt;}
.x3_c00261{left:66.949333pt;}
.x3d_c00261{left:68.208960pt;}
.x54_c00261{left:69.582793pt;}
.x53_c00261{left:70.529480pt;}
.x44_c00261{left:74.236000pt;}
.x2c_c00261{left:75.853568pt;}
.x2f_c00261{left:78.465200pt;}
.x78_c00261{left:84.240000pt;}
.x73_c00261{left:85.529333pt;}
.x34_c00261{left:87.675216pt;}
.xa_c00261{left:90.464325pt;}
.x57_c00261{left:91.980225pt;}
.x38_c00261{left:94.611579pt;}
.x45_c00261{left:96.600000pt;}
.x4_c00261{left:97.710667pt;}
.x4a_c00261{left:98.737148pt;}
.x29_c00261{left:104.859808pt;}
.x64_c00261{left:107.425333pt;}
.x17_c00261{left:108.953739pt;}
.x5e_c00261{left:110.519899pt;}
.x35_c00261{left:111.453221pt;}
.x6a_c00261{left:113.998885pt;}
.xb_c00261{left:115.906283pt;}
.x21_c00261{left:121.554117pt;}
.x55_c00261{left:123.185567pt;}
.x12_c00261{left:126.618640pt;}
.x1d_c00261{left:127.545317pt;}
.x2a_c00261{left:130.917141pt;}
.x4f_c00261{left:133.062543pt;}
.x5_c00261{left:134.770667pt;}
.x22_c00261{left:137.340784pt;}
.xc_c00261{left:139.909611pt;}
.x4b_c00261{left:143.899705pt;}
.x65_c00261{left:144.941333pt;}
.x1_c00261{left:147.840000pt;}
.x58_c00261{left:149.094167pt;}
.x68_c00261{left:150.041653pt;}
.x18_c00261{left:153.277904pt;}
.xd_c00261{left:155.394496pt;}
.x46_c00261{left:156.740000pt;}
.x5f_c00261{left:157.925195pt;}
.x3e_c00261{left:161.860784pt;}
.x50_c00261{left:164.302543pt;}
.x2b_c00261{left:166.683808pt;}
.x36_c00261{left:169.053493pt;}
.x1e_c00261{left:172.014651pt;}
.x74_c00261{left:173.692955pt;}
.x6c_c00261{left:175.402653pt;}
.x23_c00261{left:177.972784pt;}
.x60_c00261{left:181.267176pt;}
.x5c_c00261{left:183.232571pt;}
.x6_c00261{left:185.910667pt;}
.x13_c00261{left:187.601307pt;}
.x5a_c00261{left:189.830552pt;}
.x30_c00261{left:190.958101pt;}
.x47_c00261{left:193.226667pt;}
.xe_c00261{left:195.373376pt;}
.x6b_c00261{left:196.454565pt;}
.x24_c00261{left:199.338117pt;}
.x4c_c00261{left:201.886587pt;}
.x3f_c00261{left:203.629451pt;}
.x7_c00261{left:205.609333pt;}
.xf_c00261{left:207.274373pt;}
.x19_c00261{left:208.973472pt;}
.x25_c00261{left:210.066117pt;}
.x51_c00261{left:214.937209pt;}
.x48_c00261{left:218.430667pt;}
.x10_c00261{left:220.694000pt;}
.x75_c00261{left:222.326219pt;}
.x37_c00261{left:223.326987pt;}
.x39_c00261{left:224.736805pt;}
.x40_c00261{left:228.018843pt;}
.x5b_c00261{left:228.918604pt;}
.x70_c00261{left:230.308040pt;}
.x52_c00261{left:231.614543pt;}
.x61_c00261{left:235.319319pt;}
.x11_c00261{left:236.568219pt;}
.x49_c00261{left:237.506667pt;}
.x14_c00261{left:238.826640pt;}
.x66_c00261{left:240.001333pt;}
.x1a_c00261{left:242.208939pt;}
.x3a_c00261{left:243.218859pt;}
.x77_c00261{left:248.227617pt;}
.x31_c00261{left:249.161792pt;}
.x41_c00261{left:250.346677pt;}
.x6d_c00261{left:251.618224pt;}
.x62_c00261{left:253.179787pt;}
.x15_c00261{left:257.099973pt;}
.x1b_c00261{left:260.343931pt;}
.x3b_c00261{left:261.963616pt;}
.x8_c00261{left:264.900000pt;}
.x26_c00261{left:265.964784pt;}
.x6e_c00261{left:267.524413pt;}
.x56_c00261{left:269.228157pt;}
.x5d_c00261{left:272.135237pt;}
.x59_c00261{left:275.433724pt;}
.x32_c00261{left:276.889008pt;}
.x27_c00261{left:278.300784pt;}
.x42_c00261{left:279.736629pt;}
.x4d_c00261{left:281.242080pt;}
.x2d_c00261{left:284.755781pt;}
.x1f_c00261{left:285.723984pt;}
.x9_c00261{left:287.970667pt;}
.x16_c00261{left:290.041307pt;}
.x71_c00261{left:292.587933pt;}
.x76_c00261{left:296.613249pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00262 {
    display:none;
  }
  .loading-indicator_c00262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00262 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00262 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00262" -> "#page-container .classname_c00262")
 */
.pf_c00262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00262 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00262 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00262 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00262 {overflow:visible;}
  }
}
.c_c00262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00262 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00262:after { /* webkit #35443 */
  content: '';
}
.t_c00262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00262 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00262 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00262 { /* info for Javascript */
  display:none;
}
.l_c00262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00262:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00262 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00262.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00262{transform:matrix(0.017043,0.000290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.017043,0.000290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.017043,0.000290,-0.004249,0.249964,0,0);}
.m91_c00262{transform:matrix(0.074569,0.001566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.074569,0.001566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.074569,0.001566,-0.005249,0.249945,0,0);}
.mb0_c00262{transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122010,0.000000,0.000000,0.250000,0,0);}
.mb8_c00262{transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{transform:matrix(0.130139,0.002603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.130139,0.002603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.130139,0.002603,-0.004999,0.249950,0,0);}
.m5_c00262{transform:matrix(0.141515,0.002406,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141515,0.002406,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141515,0.002406,-0.004249,0.249964,0,0);}
.m26_c00262{transform:matrix(0.143076,0.002862,-0.004999,0.249950,0,0);-ms-transform:matrix(0.143076,0.002862,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.143076,0.002862,-0.004999,0.249950,0,0);}
.mda_c00262{transform:matrix(0.144206,-0.002019,0.003500,0.249976,0,0);-ms-transform:matrix(0.144206,-0.002019,0.003500,0.249976,0,0);-webkit-transform:matrix(0.144206,-0.002019,0.003500,0.249976,0,0);}
.m74_c00262{transform:matrix(0.148062,0.003109,-0.005249,0.249945,0,0);-ms-transform:matrix(0.148062,0.003109,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.148062,0.003109,-0.005249,0.249945,0,0);}
.m60_c00262{transform:matrix(0.149292,0.003135,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149292,0.003135,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149292,0.003135,-0.005249,0.249945,0,0);}
.m28_c00262{transform:matrix(0.150830,0.003017,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150830,0.003017,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150830,0.003017,-0.004999,0.249950,0,0);}
.m47_c00262{transform:matrix(0.151590,0.003032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151590,0.003032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151590,0.003032,-0.004999,0.249950,0,0);}
.m7e_c00262{transform:matrix(0.153081,0.003215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153081,0.003215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153081,0.003215,-0.005249,0.249945,0,0);}
.mc0_c00262{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00262{transform:matrix(0.155331,0.003262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155331,0.003262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155331,0.003262,-0.005249,0.249945,0,0);}
.mbc_c00262{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.m9c_c00262{transform:matrix(0.156890,0.003295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156890,0.003295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156890,0.003295,-0.005249,0.249945,0,0);}
.m2b_c00262{transform:matrix(0.157813,0.003156,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157813,0.003156,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157813,0.003156,-0.004999,0.249950,0,0);}
.m17_c00262{transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158752,0.002699,-0.004249,0.249964,0,0);}
.m0_c00262{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00262{transform:matrix(0.158959,-0.002225,0.003500,0.249976,0,0);-ms-transform:matrix(0.158959,-0.002225,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158959,-0.002225,0.003500,0.249976,0,0);}
.m50_c00262{transform:matrix(0.159403,0.003188,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159403,0.003188,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159403,0.003188,-0.004999,0.249950,0,0);}
.ma1_c00262{transform:matrix(0.160830,0.003377,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160830,0.003377,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160830,0.003377,-0.005249,0.249945,0,0);}
.m18_c00262{transform:matrix(0.161237,0.002741,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161237,0.002741,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161237,0.002741,-0.004249,0.249964,0,0);}
.m66_c00262{transform:matrix(0.161299,0.003387,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161299,0.003387,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161299,0.003387,-0.005249,0.249945,0,0);}
.m25_c00262{transform:matrix(0.162053,0.003241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162053,0.003241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162053,0.003241,-0.004999,0.249950,0,0);}
.md4_c00262{transform:matrix(0.162419,-0.002274,0.003500,0.249976,0,0);-ms-transform:matrix(0.162419,-0.002274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162419,-0.002274,0.003500,0.249976,0,0);}
.m3e_c00262{transform:matrix(0.162647,0.003253,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162647,0.003253,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162647,0.003253,-0.004999,0.249950,0,0);}
.m2d_c00262{transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164432,0.003289,-0.004999,0.249950,0,0);}
.m6a_c00262{transform:matrix(0.164874,0.003462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164874,0.003462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164874,0.003462,-0.005249,0.249945,0,0);}
.m95_c00262{transform:matrix(0.167173,0.003511,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167173,0.003511,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167173,0.003511,-0.005249,0.249945,0,0);}
.m78_c00262{transform:matrix(0.167803,0.003524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167803,0.003524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167803,0.003524,-0.005249,0.249945,0,0);}
.mde_c00262{transform:matrix(0.168099,-0.002353,0.003500,0.249976,0,0);-ms-transform:matrix(0.168099,-0.002353,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168099,-0.002353,0.003500,0.249976,0,0);}
.m22_c00262{transform:matrix(0.168911,0.003378,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168911,0.003378,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168911,0.003378,-0.004999,0.249950,0,0);}
.me8_c00262{transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.169406,0.002880,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169406,0.002880,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169406,0.002880,-0.004249,0.249964,0,0);}
.m51_c00262{transform:matrix(0.169681,0.003394,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169681,0.003394,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169681,0.003394,-0.004999,0.249950,0,0);}
.m71_c00262{transform:matrix(0.169853,0.003567,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169853,0.003567,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169853,0.003567,-0.005249,0.249945,0,0);}
.me9_c00262{transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170845,0.000000,0.000000,0.250000,0,0);}
.m96_c00262{transform:matrix(0.170957,0.003590,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170957,0.003590,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170957,0.003590,-0.005249,0.249945,0,0);}
.m73_c00262{transform:matrix(0.171182,0.003595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171182,0.003595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171182,0.003595,-0.005249,0.249945,0,0);}
.m7c_c00262{transform:matrix(0.171642,0.003604,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171642,0.003604,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171642,0.003604,-0.005249,0.249945,0,0);}
.mdc_c00262{transform:matrix(0.172103,-0.002409,0.003500,0.249976,0,0);-ms-transform:matrix(0.172103,-0.002409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172103,-0.002409,0.003500,0.249976,0,0);}
.m1b_c00262{transform:matrix(0.172225,0.002928,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172225,0.002928,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172225,0.002928,-0.004249,0.249964,0,0);}
.m4b_c00262{transform:matrix(0.172580,0.003452,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172580,0.003452,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172580,0.003452,-0.004999,0.249950,0,0);}
.m27_c00262{transform:matrix(0.172690,0.003454,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172690,0.003454,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172690,0.003454,-0.004999,0.249950,0,0);}
.m87_c00262{transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172957,0.003632,-0.005249,0.249945,0,0);}
.me_c00262{transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172970,0.002940,-0.004249,0.249964,0,0);}
.m9b_c00262{transform:matrix(0.173547,0.003644,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173547,0.003644,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173547,0.003644,-0.005249,0.249945,0,0);}
.m82_c00262{transform:matrix(0.173717,0.003648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173717,0.003648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173717,0.003648,-0.005249,0.249945,0,0);}
.meb_c00262{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173910,0.002956,-0.004249,0.249964,0,0);}
.m4d_c00262{transform:matrix(0.174695,0.003494,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174695,0.003494,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174695,0.003494,-0.004999,0.249950,0,0);}
.md_c00262{transform:matrix(0.174740,0.002971,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174740,0.002971,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174740,0.002971,-0.004249,0.249964,0,0);}
.m8e_c00262{transform:matrix(0.175601,0.003688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175601,0.003688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175601,0.003688,-0.005249,0.249945,0,0);}
.m45_c00262{transform:matrix(0.175985,0.003520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175985,0.003520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175985,0.003520,-0.004999,0.249950,0,0);}
.m98_c00262{transform:matrix(0.176036,0.003697,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176036,0.003697,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176036,0.003697,-0.005249,0.249945,0,0);}
.mb1_c00262{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177094,0.003011,-0.004249,0.249964,0,0);}
.maf_c00262{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00262{transform:matrix(0.177245,0.003545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177245,0.003545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177245,0.003545,-0.004999,0.249950,0,0);}
.m4_c00262{transform:matrix(0.177454,0.003017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177454,0.003017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177454,0.003017,-0.004249,0.249964,0,0);}
.m23_c00262{transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178064,0.003561,-0.004999,0.249950,0,0);}
.m11_c00262{transform:matrix(0.178149,0.003029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178149,0.003029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178149,0.003029,-0.004249,0.249964,0,0);}
.me6_c00262{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m31_c00262{transform:matrix(0.178689,0.003574,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178689,0.003574,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178689,0.003574,-0.004999,0.249950,0,0);}
.ma6_c00262{transform:matrix(0.179450,0.003768,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179450,0.003768,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179450,0.003768,-0.005249,0.249945,0,0);}
.m81_c00262{transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179660,0.003773,-0.005249,0.249945,0,0);}
.m41_c00262{transform:matrix(0.179964,0.003599,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179964,0.003599,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179964,0.003599,-0.004999,0.249950,0,0);}
.m1a_c00262{transform:matrix(0.180064,0.003061,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180064,0.003061,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180064,0.003061,-0.004249,0.249964,0,0);}
.m88_c00262{transform:matrix(0.180130,0.003783,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180130,0.003783,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180130,0.003783,-0.005249,0.249945,0,0);}
.m65_c00262{transform:matrix(0.180380,0.003788,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180380,0.003788,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180380,0.003788,-0.005249,0.249945,0,0);}
.m59_c00262{transform:matrix(0.180675,0.003794,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180675,0.003794,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180675,0.003794,-0.005249,0.249945,0,0);}
.mb_c00262{transform:matrix(0.180724,0.003072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180724,0.003072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180724,0.003072,-0.004249,0.249964,0,0);}
.ma2_c00262{transform:matrix(0.181140,0.003804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181140,0.003804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181140,0.003804,-0.005249,0.249945,0,0);}
.m57_c00262{transform:matrix(0.181165,0.003804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181165,0.003804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181165,0.003804,-0.005249,0.249945,0,0);}
.mbf_c00262{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.md8_c00262{transform:matrix(0.182622,-0.002557,0.003500,0.249976,0,0);-ms-transform:matrix(0.182622,-0.002557,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182622,-0.002557,0.003500,0.249976,0,0);}
.m24_c00262{transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183243,0.003665,-0.004999,0.249950,0,0);}
.m63_c00262{transform:matrix(0.183530,0.003854,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183530,0.003854,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183530,0.003854,-0.005249,0.249945,0,0);}
.m6e_c00262{transform:matrix(0.183540,0.003854,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183540,0.003854,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183540,0.003854,-0.005249,0.249945,0,0);}
.m4f_c00262{transform:matrix(0.183983,0.003680,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183983,0.003680,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183983,0.003680,-0.004999,0.249950,0,0);}
.m3_c00262{transform:matrix(0.184398,0.003135,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184398,0.003135,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184398,0.003135,-0.004249,0.249964,0,0);}
.m9e_c00262{transform:matrix(0.184539,0.003875,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184539,0.003875,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184539,0.003875,-0.005249,0.249945,0,0);}
.m39_c00262{transform:matrix(0.184598,0.003692,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184598,0.003692,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184598,0.003692,-0.004999,0.249950,0,0);}
.ma_c00262{transform:matrix(0.185343,0.003151,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185343,0.003151,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185343,0.003151,-0.004249,0.249964,0,0);}
.m67_c00262{transform:matrix(0.186194,0.003910,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186194,0.003910,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186194,0.003910,-0.005249,0.249945,0,0);}
.m97_c00262{transform:matrix(0.187554,0.003939,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187554,0.003939,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187554,0.003939,-0.005249,0.249945,0,0);}
.m70_c00262{transform:matrix(0.187609,0.003940,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187609,0.003940,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187609,0.003940,-0.005249,0.249945,0,0);}
.m40_c00262{transform:matrix(0.188157,0.003763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188157,0.003763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188157,0.003763,-0.004999,0.249950,0,0);}
.mac_c00262{transform:matrix(0.188204,0.003952,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188204,0.003952,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188204,0.003952,-0.005249,0.249945,0,0);}
.m36_c00262{transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188277,0.003766,-0.004999,0.249950,0,0);}
.m10_c00262{transform:matrix(0.189763,0.003226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189763,0.003226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189763,0.003226,-0.004249,0.249964,0,0);}
.m8d_c00262{transform:matrix(0.189978,0.003990,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189978,0.003990,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189978,0.003990,-0.005249,0.249945,0,0);}
.m1d_c00262{transform:matrix(0.190078,0.003231,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190078,0.003231,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190078,0.003231,-0.004249,0.249964,0,0);}
.m2f_c00262{transform:matrix(0.190362,0.003807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190362,0.003807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190362,0.003807,-0.004999,0.249950,0,0);}
.ma7_c00262{transform:matrix(0.190738,0.004005,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190738,0.004005,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190738,0.004005,-0.005249,0.249945,0,0);}
.m48_c00262{transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);}
.m5a_c00262{transform:matrix(0.192008,0.004032,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192008,0.004032,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192008,0.004032,-0.005249,0.249945,0,0);}
.m8f_c00262{transform:matrix(0.192972,0.004052,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192972,0.004052,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192972,0.004052,-0.005249,0.249945,0,0);}
.mea_c00262{transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);}
.m6f_c00262{transform:matrix(0.193542,0.004064,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193542,0.004064,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193542,0.004064,-0.005249,0.249945,0,0);}
.m2a_c00262{transform:matrix(0.193571,0.003871,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193571,0.003871,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193571,0.003871,-0.004999,0.249950,0,0);}
.m84_c00262{transform:matrix(0.193902,0.004072,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193902,0.004072,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193902,0.004072,-0.005249,0.249945,0,0);}
.m4a_c00262{transform:matrix(0.194021,0.003880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194021,0.003880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194021,0.003880,-0.004999,0.249950,0,0);}
.mae_c00262{transform:matrix(0.195597,0.004108,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195597,0.004108,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195597,0.004108,-0.005249,0.249945,0,0);}
.m76_c00262{transform:matrix(0.196057,0.004117,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196057,0.004117,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196057,0.004117,-0.005249,0.249945,0,0);}
.m90_c00262{transform:matrix(0.196062,0.004117,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196062,0.004117,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196062,0.004117,-0.005249,0.249945,0,0);}
.mc_c00262{transform:matrix(0.196182,0.003335,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196182,0.003335,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196182,0.003335,-0.004249,0.249964,0,0);}
.m9f_c00262{transform:matrix(0.196477,0.004126,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196477,0.004126,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196477,0.004126,-0.005249,0.249945,0,0);}
.m3d_c00262{transform:matrix(0.196486,0.003930,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196486,0.003930,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196486,0.003930,-0.004999,0.249950,0,0);}
.m54_c00262{transform:matrix(0.196526,0.003931,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196526,0.003931,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196526,0.003931,-0.004999,0.249950,0,0);}
.m43_c00262{transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196776,0.003936,-0.004999,0.249950,0,0);}
.m3c_c00262{transform:matrix(0.196906,0.003938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196906,0.003938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196906,0.003938,-0.004999,0.249950,0,0);}
.me2_c00262{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.197586,0.003359,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197586,0.003359,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197586,0.003359,-0.004249,0.249964,0,0);}
.mb2_c00262{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m86_c00262{transform:matrix(0.197831,0.004154,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197831,0.004154,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197831,0.004154,-0.005249,0.249945,0,0);}
.m80_c00262{transform:matrix(0.198246,0.004163,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198246,0.004163,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198246,0.004163,-0.005249,0.249945,0,0);}
.m35_c00262{transform:matrix(0.198365,0.003967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198365,0.003967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198365,0.003967,-0.004999,0.249950,0,0);}
.mdd_c00262{transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);-ms-transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);}
.m1f_c00262{transform:matrix(0.198776,0.003379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198776,0.003379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198776,0.003379,-0.004249,0.249964,0,0);}
.ma4_c00262{transform:matrix(0.198796,0.004175,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198796,0.004175,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198796,0.004175,-0.005249,0.249945,0,0);}
.ma8_c00262{transform:matrix(0.199016,0.004179,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199016,0.004179,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199016,0.004179,-0.005249,0.249945,0,0);}
.m32_c00262{transform:matrix(0.199270,0.003985,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199270,0.003985,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199270,0.003985,-0.004999,0.249950,0,0);}
.m49_c00262{transform:matrix(0.199650,0.003993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199650,0.003993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199650,0.003993,-0.004999,0.249950,0,0);}
.m6c_c00262{transform:matrix(0.199666,0.004193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199666,0.004193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199666,0.004193,-0.005249,0.249945,0,0);}
.m12_c00262{transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);}
.mdf_c00262{transform:matrix(0.201470,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201470,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201470,-0.002821,0.003500,0.249976,0,0);}
.m38_c00262{transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);}
.m2e_c00262{transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);}
.m15_c00262{transform:matrix(0.201911,0.003432,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201911,0.003432,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201911,0.003432,-0.004249,0.249964,0,0);}
.m3b_c00262{transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202150,0.004043,-0.004999,0.249950,0,0);}
.m42_c00262{transform:matrix(0.202410,0.004048,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202410,0.004048,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202410,0.004048,-0.004999,0.249950,0,0);}
.m64_c00262{transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);}
.m7a_c00262{transform:matrix(0.202805,0.004259,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202805,0.004259,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202805,0.004259,-0.005249,0.249945,0,0);}
.mec_c00262{transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{transform:matrix(0.204159,0.004083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204159,0.004083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204159,0.004083,-0.004999,0.249950,0,0);}
.m69_c00262{transform:matrix(0.204605,0.004297,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204605,0.004297,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204605,0.004297,-0.005249,0.249945,0,0);}
.m9_c00262{transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);}
.ma3_c00262{transform:matrix(0.205615,0.004318,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205615,0.004318,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205615,0.004318,-0.005249,0.249945,0,0);}
.m79_c00262{transform:matrix(0.205820,0.004322,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205820,0.004322,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205820,0.004322,-0.005249,0.249945,0,0);}
.m77_c00262{transform:matrix(0.205995,0.004326,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205995,0.004326,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205995,0.004326,-0.005249,0.249945,0,0);}
.ma0_c00262{transform:matrix(0.206360,0.004334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206360,0.004334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206360,0.004334,-0.005249,0.249945,0,0);}
.m7f_c00262{transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206434,0.004335,-0.005249,0.249945,0,0);}
.mb4_c00262{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.mbe_c00262{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.m94_c00262{transform:matrix(0.206934,0.004346,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206934,0.004346,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206934,0.004346,-0.005249,0.249945,0,0);}
.m1e_c00262{transform:matrix(0.206975,0.003519,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206975,0.003519,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206975,0.003519,-0.004249,0.249964,0,0);}
.md7_c00262{transform:matrix(0.207000,-0.002898,0.003500,0.249976,0,0);-ms-transform:matrix(0.207000,-0.002898,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207000,-0.002898,0.003500,0.249976,0,0);}
.m4c_c00262{transform:matrix(0.207389,0.004148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207389,0.004148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207389,0.004148,-0.004999,0.249950,0,0);}
.m8a_c00262{transform:matrix(0.207719,0.004362,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207719,0.004362,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207719,0.004362,-0.005249,0.249945,0,0);}
.mb6_c00262{transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);}
.m4e_c00262{transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);}
.md6_c00262{transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);-ms-transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209085,-0.002927,0.003500,0.249976,0,0);}
.m16_c00262{transform:matrix(0.210010,0.003570,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210010,0.003570,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210010,0.003570,-0.004249,0.249964,0,0);}
.mc4_c00262{transform:matrix(0.210404,-0.002946,0.003500,0.249976,0,0);-ms-transform:matrix(0.210404,-0.002946,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210404,-0.002946,0.003500,0.249976,0,0);}
.mba_c00262{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m68_c00262{transform:matrix(0.211143,0.004434,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211143,0.004434,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211143,0.004434,-0.005249,0.249945,0,0);}
.mad_c00262{transform:matrix(0.212253,0.004457,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212253,0.004457,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212253,0.004457,-0.005249,0.249945,0,0);}
.m44_c00262{transform:matrix(0.212258,0.004245,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212258,0.004245,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212258,0.004245,-0.004999,0.249950,0,0);}
.m7d_c00262{transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212293,0.004458,-0.005249,0.249945,0,0);}
.md3_c00262{transform:matrix(0.212684,-0.002978,0.003500,0.249976,0,0);-ms-transform:matrix(0.212684,-0.002978,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212684,-0.002978,0.003500,0.249976,0,0);}
.m1c_c00262{transform:matrix(0.213139,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213139,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213139,0.003623,-0.004249,0.249964,0,0);}
.m13_c00262{transform:matrix(0.214594,0.003648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214594,0.003648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214594,0.003648,-0.004249,0.249964,0,0);}
.m5b_c00262{transform:matrix(0.215642,0.004528,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215642,0.004528,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215642,0.004528,-0.005249,0.249945,0,0);}
.mf_c00262{transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);}
.me0_c00262{transform:matrix(0.217154,-0.003040,0.003500,0.249976,0,0);-ms-transform:matrix(0.217154,-0.003040,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217154,-0.003040,0.003500,0.249976,0,0);}
.me7_c00262{transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);}
.mb3_c00262{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m92_c00262{transform:matrix(0.218977,0.004599,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218977,0.004599,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218977,0.004599,-0.005249,0.249945,0,0);}
.m5e_c00262{transform:matrix(0.218997,0.004599,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218997,0.004599,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218997,0.004599,-0.005249,0.249945,0,0);}
.m6b_c00262{transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);}
.md2_c00262{transform:matrix(0.220093,-0.003081,0.003500,0.249976,0,0);-ms-transform:matrix(0.220093,-0.003081,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220093,-0.003081,0.003500,0.249976,0,0);}
.ma9_c00262{transform:matrix(0.222306,0.004668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222306,0.004668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222306,0.004668,-0.005249,0.249945,0,0);}
.mc5_c00262{transform:matrix(0.223163,-0.003124,0.003500,0.249976,0,0);-ms-transform:matrix(0.223163,-0.003124,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223163,-0.003124,0.003500,0.249976,0,0);}
.m53_c00262{transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);}
.maa_c00262{transform:matrix(0.224101,0.004706,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224101,0.004706,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224101,0.004706,-0.005249,0.249945,0,0);}
.m58_c00262{transform:matrix(0.225435,0.004734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225435,0.004734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225435,0.004734,-0.005249,0.249945,0,0);}
.m5f_c00262{transform:matrix(0.225700,0.004740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225700,0.004740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225700,0.004740,-0.005249,0.249945,0,0);}
.m52_c00262{transform:matrix(0.225760,0.004515,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225760,0.004515,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225760,0.004515,-0.004999,0.249950,0,0);}
.m89_c00262{transform:matrix(0.226590,0.004758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226590,0.004758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226590,0.004758,-0.005249,0.249945,0,0);}
.m5c_c00262{transform:matrix(0.226940,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226940,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226940,0.004766,-0.005249,0.249945,0,0);}
.m21_c00262{transform:matrix(0.227012,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227012,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227012,0.003859,-0.004249,0.249964,0,0);}
.me1_c00262{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00262{transform:matrix(0.227415,0.004776,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227415,0.004776,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227415,0.004776,-0.005249,0.249945,0,0);}
.m3f_c00262{transform:matrix(0.227440,0.004549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227440,0.004549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227440,0.004549,-0.004999,0.249950,0,0);}
.m56_c00262{transform:matrix(0.227795,0.004784,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227795,0.004784,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227795,0.004784,-0.005249,0.249945,0,0);}
.md0_c00262{transform:matrix(0.227953,-0.003191,0.003500,0.249976,0,0);-ms-transform:matrix(0.227953,-0.003191,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227953,-0.003191,0.003500,0.249976,0,0);}
.mab_c00262{transform:matrix(0.228980,0.004809,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228980,0.004809,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228980,0.004809,-0.005249,0.249945,0,0);}
.m34_c00262{transform:matrix(0.229699,0.004594,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229699,0.004594,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229699,0.004594,-0.004999,0.249950,0,0);}
.m99_c00262{transform:matrix(0.229954,0.004829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229954,0.004829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229954,0.004829,-0.005249,0.249945,0,0);}
.m20_c00262{transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);}
.m33_c00262{transform:matrix(0.231024,0.004620,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231024,0.004620,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231024,0.004620,-0.004999,0.249950,0,0);}
.m85_c00262{transform:matrix(0.231334,0.004858,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231334,0.004858,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231334,0.004858,-0.005249,0.249945,0,0);}
.m75_c00262{transform:matrix(0.231529,0.004862,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231529,0.004862,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231529,0.004862,-0.005249,0.249945,0,0);}
.m72_c00262{transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);}
.m55_c00262{transform:matrix(0.235613,0.004948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235613,0.004948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235613,0.004948,-0.005249,0.249945,0,0);}
.m37_c00262{transform:matrix(0.235953,0.004719,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235953,0.004719,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235953,0.004719,-0.004999,0.249950,0,0);}
.me4_c00262{transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);}
.m8b_c00262{transform:matrix(0.237928,0.004996,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237928,0.004996,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237928,0.004996,-0.005249,0.249945,0,0);}
.mc6_c00262{transform:matrix(0.238052,-0.003333,0.003500,0.249976,0,0);-ms-transform:matrix(0.238052,-0.003333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238052,-0.003333,0.003500,0.249976,0,0);}
.mbd_c00262{transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238890,0.000000,0.000000,0.250000,0,0);}
.m61_c00262{transform:matrix(0.240367,0.005048,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240367,0.005048,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240367,0.005048,-0.005249,0.249945,0,0);}
.me5_c00262{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.m83_c00262{transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);}
.m46_c00262{transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);}
.mc8_c00262{transform:matrix(0.253220,-0.003545,0.003500,0.249976,0,0);-ms-transform:matrix(0.253220,-0.003545,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253220,-0.003545,0.003500,0.249976,0,0);}
.mb5_c00262{transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);}
.mcc_c00262{transform:matrix(0.254390,-0.003561,0.003500,0.249976,0,0);-ms-transform:matrix(0.254390,-0.003561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254390,-0.003561,0.003500,0.249976,0,0);}
.m5d_c00262{transform:matrix(0.255269,0.005361,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255269,0.005361,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255269,0.005361,-0.005249,0.249945,0,0);}
.m7b_c00262{transform:matrix(0.259333,0.005446,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259333,0.005446,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259333,0.005446,-0.005249,0.249945,0,0);}
.mcf_c00262{transform:matrix(0.259470,-0.003633,0.003500,0.249976,0,0);-ms-transform:matrix(0.259470,-0.003633,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259470,-0.003633,0.003500,0.249976,0,0);}
.mb7_c00262{transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);}
.m62_c00262{transform:matrix(0.264197,0.005548,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264197,0.005548,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264197,0.005548,-0.005249,0.249945,0,0);}
.m7_c00262{transform:matrix(0.265052,0.004506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265052,0.004506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265052,0.004506,-0.004249,0.249964,0,0);}
.mcd_c00262{transform:matrix(0.265304,-0.003714,0.003500,0.249976,0,0);-ms-transform:matrix(0.265304,-0.003714,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265304,-0.003714,0.003500,0.249976,0,0);}
.ma5_c00262{transform:matrix(0.265836,0.005583,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265836,0.005583,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265836,0.005583,-0.005249,0.249945,0,0);}
.mc7_c00262{transform:matrix(0.266324,-0.003729,0.003500,0.249976,0,0);-ms-transform:matrix(0.266324,-0.003729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266324,-0.003729,0.003500,0.249976,0,0);}
.m29_c00262{transform:matrix(0.272545,0.005451,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272545,0.005451,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272545,0.005451,-0.004999,0.249950,0,0);}
.mcb_c00262{transform:matrix(0.274293,-0.003840,0.003500,0.249976,0,0);-ms-transform:matrix(0.274293,-0.003840,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274293,-0.003840,0.003500,0.249976,0,0);}
.md5_c00262{transform:matrix(0.278653,-0.003901,0.003500,0.249976,0,0);-ms-transform:matrix(0.278653,-0.003901,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278653,-0.003901,0.003500,0.249976,0,0);}
.m8_c00262{transform:matrix(0.279470,0.004751,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279470,0.004751,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279470,0.004751,-0.004249,0.249964,0,0);}
.mc3_c00262{transform:matrix(0.288367,-0.004037,0.003500,0.249976,0,0);-ms-transform:matrix(0.288367,-0.004037,0.003500,0.249976,0,0);-webkit-transform:matrix(0.288367,-0.004037,0.003500,0.249976,0,0);}
.mce_c00262{transform:matrix(0.307940,-0.004311,0.003500,0.249976,0,0);-ms-transform:matrix(0.307940,-0.004311,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307940,-0.004311,0.003500,0.249976,0,0);}
.m6d_c00262{transform:matrix(0.311176,0.006535,-0.005249,0.249945,0,0);-ms-transform:matrix(0.311176,0.006535,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.311176,0.006535,-0.005249,0.249945,0,0);}
.me3_c00262{transform:matrix(0.323570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323570,0.000000,0.000000,0.250000,0,0);}
.md9_c00262{transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);-ms-transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);-webkit-transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);}
.mb9_c00262{transform:matrix(0.338635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338635,0.000000,0.000000,0.250000,0,0);}
.m93_c00262{transform:matrix(0.358776,0.007534,-0.005249,0.249945,0,0);-ms-transform:matrix(0.358776,0.007534,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.358776,0.007534,-0.005249,0.249945,0,0);}
.mbb_c00262{transform:matrix(0.478710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478710,0.000000,0.000000,0.250000,0,0);}
.mc2_c00262{transform:matrix(0.488882,-0.006844,0.003500,0.249976,0,0);-ms-transform:matrix(0.488882,-0.006844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.488882,-0.006844,0.003500,0.249976,0,0);}
.m8c_c00262{transform:matrix(0.494751,0.010390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.494751,0.010390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.494751,0.010390,-0.005249,0.249945,0,0);}
.md1_c00262{transform:matrix(0.503966,-0.007056,0.003500,0.249976,0,0);-ms-transform:matrix(0.503966,-0.007056,0.003500,0.249976,0,0);-webkit-transform:matrix(0.503966,-0.007056,0.003500,0.249976,0,0);}
.mca_c00262{transform:matrix(0.549351,-0.007691,0.003500,0.249976,0,0);-ms-transform:matrix(0.549351,-0.007691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.549351,-0.007691,0.003500,0.249976,0,0);}
.mc9_c00262{transform:matrix(0.611540,-0.008562,0.003500,0.249976,0,0);-ms-transform:matrix(0.611540,-0.008562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.611540,-0.008562,0.003500,0.249976,0,0);}
.mc1_c00262{transform:matrix(0.666765,-0.009335,0.003500,0.249976,0,0);-ms-transform:matrix(0.666765,-0.009335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.666765,-0.009335,0.003500,0.249976,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:0.000000px;}
.fc0_c00262{color:transparent;}
.fs17_c00262{font-size:46.204527px;}
.fs16_c00262{font-size:48.304733px;}
.fsc_c00262{font-size:55.662269px;}
.fs1a_c00262{font-size:57.750000px;}
.fsb_c00262{font-size:58.812964px;}
.fs18_c00262{font-size:59.855865px;}
.fs7_c00262{font-size:59.861969px;}
.fs9_c00262{font-size:60.912179px;}
.fs13_c00262{font-size:60.913427px;}
.fs3_c00262{font-size:61.958951px;}
.fsf_c00262{font-size:61.963658px;}
.fs14_c00262{font-size:63.000000px;}
.fs4_c00262{font-size:63.009103px;}
.fs8_c00262{font-size:63.012599px;}
.fs12_c00262{font-size:63.013890px;}
.fse_c00262{font-size:64.064121px;}
.fs19_c00262{font-size:66.156482px;}
.fs6_c00262{font-size:66.163229px;}
.fs15_c00262{font-size:67.200000px;}
.fs1_c00262{font-size:67.209710px;}
.fsa_c00262{font-size:67.213439px;}
.fsd_c00262{font-size:67.214816px;}
.fs2_c00262{font-size:69.310013px;}
.fs11_c00262{font-size:69.315279px;}
.fs1b_c00262{font-size:70.350000px;}
.fs10_c00262{font-size:71.415742px;}
.fs5_c00262{font-size:74.564909px;}
.fs0_c00262{font-size:80.850000px;}
.y0_c00262{bottom:0.000000px;}
.yd7_c00262{bottom:23.304000px;}
.yd6_c00262{bottom:25.519500px;}
.yd5_c00262{bottom:30.514500px;}
.yd4_c00262{bottom:32.583000px;}
.yd3_c00262{bottom:34.311000px;}
.yd2_c00262{bottom:40.591500px;}
.yd1_c00262{bottom:60.414618px;}
.yd0_c00262{bottom:61.695342px;}
.ycf_c00262{bottom:62.202879px;}
.yce_c00262{bottom:63.677481px;}
.ycd_c00262{bottom:64.105605px;}
.ycc_c00262{bottom:64.438068px;}
.ycb_c00262{bottom:64.865217px;}
.yca_c00262{bottom:65.876769px;}
.yc1_c00262{bottom:75.237039px;}
.yc9_c00262{bottom:75.237321px;}
.yc6_c00262{bottom:75.237387px;}
.yc7_c00262{bottom:75.237426px;}
.yc8_c00262{bottom:75.237465px;}
.yc2_c00262{bottom:75.237657px;}
.yc3_c00262{bottom:75.237774px;}
.yc5_c00262{bottom:75.237789px;}
.yc4_c00262{bottom:75.237810px;}
.ybe_c00262{bottom:92.037123px;}
.ybb_c00262{bottom:92.037450px;}
.ybc_c00262{bottom:92.037768px;}
.ybd_c00262{bottom:92.037804px;}
.ybf_c00262{bottom:92.037858px;}
.yb9_c00262{bottom:92.038014px;}
.yba_c00262{bottom:92.038131px;}
.yc0_c00262{bottom:92.038137px;}
.yb2_c00262{bottom:105.304500px;}
.yb3_c00262{bottom:106.456539px;}
.yb4_c00262{bottom:106.762320px;}
.yb5_c00262{bottom:107.808162px;}
.yb6_c00262{bottom:108.015831px;}
.yb7_c00262{bottom:108.409287px;}
.yb8_c00262{bottom:109.203381px;}
.yb1_c00262{bottom:124.936500px;}
.yb0_c00262{bottom:143.433000px;}
.yaf_c00262{bottom:159.456590px;}
.yae_c00262{bottom:160.289630px;}
.yad_c00262{bottom:162.434493px;}
.yac_c00262{bottom:164.398187px;}
.yab_c00262{bottom:176.272916px;}
.yaa_c00262{bottom:177.866661px;}
.ya9_c00262{bottom:179.756850px;}
.ya8_c00262{bottom:181.216995px;}
.ya7_c00262{bottom:181.953129px;}
.ya6_c00262{bottom:193.960914px;}
.ya5_c00262{bottom:195.426925px;}
.ya4_c00262{bottom:196.599189px;}
.ya3_c00262{bottom:197.655225px;}
.ya2_c00262{bottom:198.153472px;}
.ya1_c00262{bottom:213.126634px;}
.ya0_c00262{bottom:214.237237px;}
.y9f_c00262{bottom:216.477567px;}
.y9e_c00262{bottom:217.069414px;}
.y9d_c00262{bottom:217.801087px;}
.y9c_c00262{bottom:219.441151px;}
.y9b_c00262{bottom:220.581835px;}
.y9a_c00262{bottom:228.750348px;}
.y99_c00262{bottom:230.208325px;}
.y98_c00262{bottom:230.906820px;}
.y97_c00262{bottom:233.572962px;}
.y96_c00262{bottom:234.492511px;}
.y95_c00262{bottom:237.219642px;}
.y94_c00262{bottom:238.943784px;}
.y93_c00262{bottom:246.651222px;}
.y92_c00262{bottom:247.135971px;}
.y91_c00262{bottom:249.945918px;}
.y90_c00262{bottom:251.098473px;}
.y8f_c00262{bottom:254.028618px;}
.y8e_c00262{bottom:254.651586px;}
.y8d_c00262{bottom:255.683250px;}
.y8c_c00262{bottom:264.708135px;}
.y8b_c00262{bottom:265.331001px;}
.y8a_c00262{bottom:266.989924px;}
.y89_c00262{bottom:267.526657px;}
.y88_c00262{bottom:268.169068px;}
.y87_c00262{bottom:269.841595px;}
.y86_c00262{bottom:271.819683px;}
.y85_c00262{bottom:272.689814px;}
.y84_c00262{bottom:282.832413px;}
.y83_c00262{bottom:284.152377px;}
.y82_c00262{bottom:284.644659px;}
.y81_c00262{bottom:285.712283px;}
.y80_c00262{bottom:287.375824px;}
.y7f_c00262{bottom:287.899369px;}
.y7e_c00262{bottom:289.405053px;}
.y7d_c00262{bottom:290.240346px;}
.y7c_c00262{bottom:300.035601px;}
.y7b_c00262{bottom:300.639163px;}
.y7a_c00262{bottom:302.494516px;}
.y79_c00262{bottom:303.120900px;}
.y78_c00262{bottom:303.488949px;}
.y77_c00262{bottom:304.648207px;}
.y76_c00262{bottom:306.236524px;}
.y75_c00262{bottom:306.766104px;}
.y74_c00262{bottom:307.794012px;}
.y73_c00262{bottom:317.695396px;}
.y72_c00262{bottom:318.325698px;}
.y71_c00262{bottom:319.411996px;}
.y70_c00262{bottom:319.965916px;}
.y6f_c00262{bottom:321.511457px;}
.y6e_c00262{bottom:322.175151px;}
.y6d_c00262{bottom:322.707403px;}
.y6c_c00262{bottom:324.333754px;}
.y6b_c00262{bottom:325.078260px;}
.y6a_c00262{bottom:335.697428px;}
.y69_c00262{bottom:336.710467px;}
.y68_c00262{bottom:337.205899px;}
.y67_c00262{bottom:338.317093px;}
.y66_c00262{bottom:338.805312px;}
.y65_c00262{bottom:339.086859px;}
.y64_c00262{bottom:340.467472px;}
.y63_c00262{bottom:351.935712px;}
.y62_c00262{bottom:352.755849px;}
.y61_c00262{bottom:353.105358px;}
.y60_c00262{bottom:353.454729px;}
.y5f_c00262{bottom:354.681268px;}
.y5e_c00262{bottom:355.970258px;}
.y5d_c00262{bottom:356.334079px;}
.y5c_c00262{bottom:356.940139px;}
.y5b_c00262{bottom:367.700658px;}
.y5a_c00262{bottom:368.041488px;}
.y59_c00262{bottom:370.008537px;}
.y58_c00262{bottom:370.602217px;}
.y57_c00262{bottom:371.977161px;}
.y56_c00262{bottom:373.146000px;}
.y55_c00262{bottom:383.738520px;}
.y54_c00262{bottom:387.442200px;}
.y53_c00262{bottom:389.424990px;}
.y52_c00262{bottom:389.912040px;}
.y51_c00262{bottom:390.477360px;}
.y50_c00262{bottom:392.300040px;}
.y4f_c00262{bottom:401.178510px;}
.y4e_c00262{bottom:401.886600px;}
.y4d_c00262{bottom:403.072170px;}
.y4c_c00262{bottom:403.431300px;}
.y4b_c00262{bottom:404.395950px;}
.y4a_c00262{bottom:405.530280px;}
.y49_c00262{bottom:406.112340px;}
.y48_c00262{bottom:406.608090px;}
.y47_c00262{bottom:418.136700px;}
.y46_c00262{bottom:418.647720px;}
.y45_c00262{bottom:419.327940px;}
.y44_c00262{bottom:420.060480px;}
.y43_c00262{bottom:421.558050px;}
.y42_c00262{bottom:422.907150px;}
.y41_c00262{bottom:424.161810px;}
.y40_c00262{bottom:436.296570px;}
.y3f_c00262{bottom:436.715640px;}
.y3e_c00262{bottom:438.175830px;}
.y3d_c00262{bottom:439.644870px;}
.y3c_c00262{bottom:440.055840px;}
.y3b_c00262{bottom:440.634060px;}
.y3a_c00262{bottom:452.638920px;}
.y39_c00262{bottom:454.825560px;}
.y38_c00262{bottom:456.525330px;}
.y37_c00262{bottom:457.311660px;}
.y36_c00262{bottom:459.185280px;}
.y35_c00262{bottom:461.167680px;}
.y34_c00262{bottom:470.045760px;}
.y33_c00262{bottom:470.513160px;}
.y32_c00262{bottom:471.539070px;}
.y31_c00262{bottom:471.939900px;}
.y30_c00262{bottom:472.251930px;}
.y2f_c00262{bottom:472.958580px;}
.y2e_c00262{bottom:473.340450px;}
.y2d_c00262{bottom:474.612420px;}
.y2c_c00262{bottom:474.932610px;}
.y2b_c00262{bottom:486.828300px;}
.y2a_c00262{bottom:488.547750px;}
.y29_c00262{bottom:488.931720px;}
.y28_c00262{bottom:489.539970px;}
.y27_c00262{bottom:490.006440px;}
.y26_c00262{bottom:490.810890px;}
.y25_c00262{bottom:491.075100px;}
.y24_c00262{bottom:491.992710px;}
.y23_c00262{bottom:492.216000px;}
.y22_c00262{bottom:504.449420px;}
.y21_c00262{bottom:504.656290px;}
.y20_c00262{bottom:505.937011px;}
.y1f_c00262{bottom:506.079303px;}
.y1e_c00262{bottom:507.003293px;}
.y1d_c00262{bottom:507.192921px;}
.y1c_c00262{bottom:508.135270px;}
.y1b_c00262{bottom:508.404039px;}
.y1a_c00262{bottom:508.676964px;}
.y19_c00262{bottom:521.633716px;}
.y18_c00262{bottom:521.896798px;}
.y17_c00262{bottom:522.324234px;}
.y16_c00262{bottom:523.591058px;}
.y15_c00262{bottom:523.850059px;}
.y14_c00262{bottom:524.056624px;}
.y13_c00262{bottom:524.787538px;}
.y12_c00262{bottom:525.556609px;}
.y11_c00262{bottom:525.958362px;}
.y10_c00262{bottom:539.505075px;}
.yf_c00262{bottom:539.785092px;}
.ye_c00262{bottom:540.507129px;}
.yd_c00262{bottom:540.926899px;}
.yc_c00262{bottom:541.319112px;}
.yb_c00262{bottom:542.299018px;}
.ya_c00262{bottom:543.240729px;}
.y9_c00262{bottom:556.437253px;}
.y8_c00262{bottom:557.304024px;}
.y7_c00262{bottom:557.629863px;}
.y6_c00262{bottom:557.932599px;}
.y5_c00262{bottom:558.630177px;}
.y4_c00262{bottom:559.493428px;}
.y3_c00262{bottom:560.848218px;}
.y2_c00262{bottom:561.061500px;}
.y1_c00262{bottom:572.134500px;}
.h19_c00262{height:46.204527px;}
.h18_c00262{height:48.304733px;}
.he_c00262{height:55.662269px;}
.h1c_c00262{height:57.750000px;}
.hd_c00262{height:58.812964px;}
.h1a_c00262{height:59.855865px;}
.h9_c00262{height:59.861969px;}
.hb_c00262{height:60.912179px;}
.h15_c00262{height:60.913427px;}
.h5_c00262{height:61.958951px;}
.h11_c00262{height:61.963658px;}
.h16_c00262{height:63.000000px;}
.h6_c00262{height:63.009103px;}
.ha_c00262{height:63.012599px;}
.h14_c00262{height:63.013890px;}
.h10_c00262{height:64.064121px;}
.h1b_c00262{height:66.156482px;}
.h8_c00262{height:66.163229px;}
.h17_c00262{height:67.200000px;}
.h3_c00262{height:67.209710px;}
.hc_c00262{height:67.213439px;}
.hf_c00262{height:67.214816px;}
.h4_c00262{height:69.310013px;}
.h13_c00262{height:69.315279px;}
.h1d_c00262{height:70.350000px;}
.h12_c00262{height:71.415742px;}
.h7_c00262{height:74.564909px;}
.h2_c00262{height:80.850000px;}
.h1_c00262{height:618.750000px;}
.h0_c00262{height:619.050000px;}
.w0_c00262{width:359.100000px;}
.w1_c00262{width:359.250000px;}
.x0_c00262{left:0.000000px;}
.x5a_c00262{left:14.112191px;}
.x49_c00262{left:15.119818px;}
.x2c_c00262{left:16.531680px;}
.xa_c00262{left:17.580204px;}
.x4f_c00262{left:18.886138px;}
.x44_c00262{left:20.841114px;}
.x6e_c00262{left:22.410000px;}
.x20_c00262{left:24.289500px;}
.x78_c00262{left:26.220543px;}
.x2_c00262{left:27.723000px;}
.x18_c00262{left:34.062914px;}
.x21_c00262{left:35.454000px;}
.x6f_c00262{left:36.990000px;}
.x41_c00262{left:38.338500px;}
.x3_c00262{left:40.269000px;}
.x11_c00262{left:42.470352px;}
.x5b_c00262{left:43.587528px;}
.x30_c00262{left:45.638250px;}
.x19_c00262{left:50.843694px;}
.x45_c00262{left:52.702437px;}
.x50_c00262{left:54.328185px;}
.x73_c00262{left:57.243435px;}
.x5c_c00262{left:61.390299px;}
.x31_c00262{left:66.186750px;}
.x39_c00262{left:68.059980px;}
.x46_c00262{left:71.885256px;}
.x34_c00262{left:73.466040px;}
.x3e_c00262{left:74.907780px;}
.x79_c00262{left:76.776609px;}
.x74_c00262{left:78.306072px;}
.x6b_c00262{left:79.920000px;}
.x22_c00262{left:81.334500px;}
.xb_c00262{left:84.890146px;}
.x12_c00262{left:90.534168px;}
.x3f_c00262{left:93.119760px;}
.x23_c00262{left:94.545000px;}
.x62_c00262{left:97.766391px;}
.x28_c00262{left:100.495110px;}
.x4c_c00262{left:102.574572px;}
.x55_c00262{left:104.298685px;}
.x7b_c00262{left:106.650000px;}
.x1a_c00262{left:109.718188px;}
.x57_c00262{left:113.817835px;}
.x75_c00262{left:115.300317px;}
.x4a_c00262{left:117.518818px;}
.x63_c00262{left:118.673249px;}
.x4_c00262{left:119.962500px;}
.x1b_c00262{left:121.578892px;}
.x69_c00262{left:123.437741px;}
.x56_c00262{left:124.441575px;}
.x51_c00262{left:127.382431px;}
.x66_c00262{left:130.716941px;}
.x24_c00262{left:134.767500px;}
.x13_c00262{left:136.176933px;}
.x32_c00262{left:139.638750px;}
.x2d_c00262{left:140.905320px;}
.x5d_c00262{left:145.110698px;}
.x4d_c00262{left:146.875996px;}
.x1_c00262{left:148.500000px;}
.x67_c00262{left:151.764767px;}
.xc_c00262{left:154.888216px;}
.x25_c00262{left:158.091000px;}
.x42_c00262{left:159.471000px;}
.x14_c00262{left:165.328443px;}
.x3a_c00262{left:167.981970px;}
.x5_c00262{left:170.742000px;}
.x40_c00262{left:172.794240px;}
.x29_c00262{left:174.199080px;}
.x6c_c00262{left:175.230000px;}
.x5e_c00262{left:178.056027px;}
.x1c_c00262{left:179.373387px;}
.xd_c00262{left:182.902144px;}
.x3b_c00262{left:185.113140px;}
.x58_c00262{left:186.179140px;}
.x1d_c00262{left:188.273040px;}
.x77_c00262{left:189.558528px;}
.x6a_c00262{left:191.149869px;}
.x65_c00262{left:192.191471px;}
.x4b_c00262{left:194.024818px;}
.x2a_c00262{left:195.291000px;}
.x64_c00262{left:199.586466px;}
.x52_c00262{left:201.640957px;}
.x35_c00262{left:202.819350px;}
.x47_c00262{left:204.249300px;}
.x70_c00262{left:205.470000px;}
.x26_c00262{left:207.702000px;}
.x72_c00262{left:208.849500px;}
.x7a_c00262{left:209.922966px;}
.x6_c00262{left:211.776000px;}
.xe_c00262{left:212.890175px;}
.x2e_c00262{left:221.092680px;}
.x48_c00262{left:222.601056px;}
.x4e_c00262{left:224.626200px;}
.x7_c00262{left:229.584000px;}
.x60_c00262{left:231.517949px;}
.x33_c00262{left:233.601750px;}
.x36_c00262{left:236.145030px;}
.x3c_c00262{left:241.540500px;}
.x15_c00262{left:244.525295px;}
.x7c_c00262{left:245.970000px;}
.x68_c00262{left:247.490637px;}
.x8_c00262{left:248.751000px;}
.x61_c00262{left:250.416117px;}
.x59_c00262{left:254.789796px;}
.x5f_c00262{left:258.339434px;}
.xf_c00262{left:264.453801px;}
.x53_c00262{left:265.623216px;}
.x37_c00262{left:267.079800px;}
.x1e_c00262{left:268.287392px;}
.x16_c00262{left:271.257253px;}
.x2b_c00262{left:273.858060px;}
.x3d_c00262{left:275.294340px;}
.x7d_c00262{left:276.418500px;}
.x1f_c00262{left:281.250621px;}
.x10_c00262{left:284.455821px;}
.x54_c00262{left:286.432219px;}
.x17_c00262{left:287.703534px;}
.x38_c00262{left:290.304870px;}
.x2f_c00262{left:291.634170px;}
.x27_c00262{left:293.674500px;}
.x43_c00262{left:297.640500px;}
.x9_c00262{left:299.737500px;}
.x71_c00262{left:301.860000px;}
.x76_c00262{left:302.970588px;}
.x6d_c00262{left:309.690000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs17_c00262{font-size:41.070691pt;}
.fs16_c00262{font-size:42.937541pt;}
.fsc_c00262{font-size:49.477573pt;}
.fs1a_c00262{font-size:51.333333pt;}
.fsb_c00262{font-size:52.278190pt;}
.fs18_c00262{font-size:53.205213pt;}
.fs7_c00262{font-size:53.210639pt;}
.fs9_c00262{font-size:54.144159pt;}
.fs13_c00262{font-size:54.145268pt;}
.fs3_c00262{font-size:55.074623pt;}
.fsf_c00262{font-size:55.078808pt;}
.fs14_c00262{font-size:56.000000pt;}
.fs4_c00262{font-size:56.008091pt;}
.fs8_c00262{font-size:56.011199pt;}
.fs12_c00262{font-size:56.012347pt;}
.fse_c00262{font-size:56.945886pt;}
.fs19_c00262{font-size:58.805762pt;}
.fs6_c00262{font-size:58.811759pt;}
.fs15_c00262{font-size:59.733333pt;}
.fs1_c00262{font-size:59.741964pt;}
.fsa_c00262{font-size:59.745279pt;}
.fsd_c00262{font-size:59.746503pt;}
.fs2_c00262{font-size:61.608901pt;}
.fs11_c00262{font-size:61.613581pt;}
.fs1b_c00262{font-size:62.533333pt;}
.fs10_c00262{font-size:63.480660pt;}
.fs5_c00262{font-size:66.279919pt;}
.fs0_c00262{font-size:71.866667pt;}
.y0_c00262{bottom:0.000000pt;}
.yd7_c00262{bottom:20.714667pt;}
.yd6_c00262{bottom:22.684000pt;}
.yd5_c00262{bottom:27.124000pt;}
.yd4_c00262{bottom:28.962667pt;}
.yd3_c00262{bottom:30.498667pt;}
.yd2_c00262{bottom:36.081333pt;}
.yd1_c00262{bottom:53.701883pt;}
.yd0_c00262{bottom:54.840304pt;}
.ycf_c00262{bottom:55.291448pt;}
.yce_c00262{bottom:56.602205pt;}
.ycd_c00262{bottom:56.982760pt;}
.ycc_c00262{bottom:57.278283pt;}
.ycb_c00262{bottom:57.657971pt;}
.yca_c00262{bottom:58.557128pt;}
.yc1_c00262{bottom:66.877368pt;}
.yc9_c00262{bottom:66.877619pt;}
.yc6_c00262{bottom:66.877677pt;}
.yc7_c00262{bottom:66.877712pt;}
.yc8_c00262{bottom:66.877747pt;}
.yc2_c00262{bottom:66.877917pt;}
.yc3_c00262{bottom:66.878021pt;}
.yc5_c00262{bottom:66.878035pt;}
.yc4_c00262{bottom:66.878053pt;}
.ybe_c00262{bottom:81.810776pt;}
.ybb_c00262{bottom:81.811067pt;}
.ybc_c00262{bottom:81.811349pt;}
.ybd_c00262{bottom:81.811381pt;}
.ybf_c00262{bottom:81.811429pt;}
.yb9_c00262{bottom:81.811568pt;}
.yba_c00262{bottom:81.811672pt;}
.yc0_c00262{bottom:81.811677pt;}
.yb2_c00262{bottom:93.604000pt;}
.yb3_c00262{bottom:94.628035pt;}
.yb4_c00262{bottom:94.899840pt;}
.yb5_c00262{bottom:95.829477pt;}
.yb6_c00262{bottom:96.014072pt;}
.yb7_c00262{bottom:96.363811pt;}
.yb8_c00262{bottom:97.069672pt;}
.yb1_c00262{bottom:111.054667pt;}
.yb0_c00262{bottom:127.496000pt;}
.yaf_c00262{bottom:141.739191pt;}
.yae_c00262{bottom:142.479671pt;}
.yad_c00262{bottom:144.386216pt;}
.yac_c00262{bottom:146.131721pt;}
.yab_c00262{bottom:156.687036pt;}
.yaa_c00262{bottom:158.103699pt;}
.ya9_c00262{bottom:159.783867pt;}
.ya8_c00262{bottom:161.081773pt;}
.ya7_c00262{bottom:161.736115pt;}
.ya6_c00262{bottom:172.409701pt;}
.ya5_c00262{bottom:173.712823pt;}
.ya4_c00262{bottom:174.754835pt;}
.ya3_c00262{bottom:175.693533pt;}
.ya2_c00262{bottom:176.136420pt;}
.ya1_c00262{bottom:189.445897pt;}
.ya0_c00262{bottom:190.433100pt;}
.y9f_c00262{bottom:192.424504pt;}
.y9e_c00262{bottom:192.950591pt;}
.y9d_c00262{bottom:193.600967pt;}
.y9c_c00262{bottom:195.058801pt;}
.y9b_c00262{bottom:196.072743pt;}
.y9a_c00262{bottom:203.333643pt;}
.y99_c00262{bottom:204.629623pt;}
.y98_c00262{bottom:205.250507pt;}
.y97_c00262{bottom:207.620411pt;}
.y96_c00262{bottom:208.437788pt;}
.y95_c00262{bottom:210.861904pt;}
.y94_c00262{bottom:212.394475pt;}
.y93_c00262{bottom:219.245531pt;}
.y92_c00262{bottom:219.676419pt;}
.y91_c00262{bottom:222.174149pt;}
.y90_c00262{bottom:223.198643pt;}
.y8f_c00262{bottom:225.803216pt;}
.y8e_c00262{bottom:226.356965pt;}
.y8d_c00262{bottom:227.274000pt;}
.y8c_c00262{bottom:235.296120pt;}
.y8b_c00262{bottom:235.849779pt;}
.y8a_c00262{bottom:237.324377pt;}
.y89_c00262{bottom:237.801473pt;}
.y88_c00262{bottom:238.372505pt;}
.y87_c00262{bottom:239.859196pt;}
.y86_c00262{bottom:241.617496pt;}
.y85_c00262{bottom:242.390945pt;}
.y84_c00262{bottom:251.406589pt;}
.y83_c00262{bottom:252.579891pt;}
.y82_c00262{bottom:253.017475pt;}
.y81_c00262{bottom:253.966473pt;}
.y80_c00262{bottom:255.445177pt;}
.y7f_c00262{bottom:255.910551pt;}
.y7e_c00262{bottom:257.248936pt;}
.y7d_c00262{bottom:257.991419pt;}
.y7c_c00262{bottom:266.698312pt;}
.y7b_c00262{bottom:267.234812pt;}
.y7a_c00262{bottom:268.884015pt;}
.y79_c00262{bottom:269.440800pt;}
.y78_c00262{bottom:269.767955pt;}
.y77_c00262{bottom:270.798407pt;}
.y76_c00262{bottom:272.210244pt;}
.y75_c00262{bottom:272.680981pt;}
.y74_c00262{bottom:273.594677pt;}
.y73_c00262{bottom:282.395908pt;}
.y72_c00262{bottom:282.956176pt;}
.y71_c00262{bottom:283.921775pt;}
.y70_c00262{bottom:284.414148pt;}
.y6f_c00262{bottom:285.787961pt;}
.y6e_c00262{bottom:286.377912pt;}
.y6d_c00262{bottom:286.851025pt;}
.y6c_c00262{bottom:288.296671pt;}
.y6b_c00262{bottom:288.958453pt;}
.y6a_c00262{bottom:298.397713pt;}
.y69_c00262{bottom:299.298193pt;}
.y68_c00262{bottom:299.738577pt;}
.y67_c00262{bottom:300.726305pt;}
.y66_c00262{bottom:301.160277pt;}
.y65_c00262{bottom:301.410541pt;}
.y64_c00262{bottom:302.637753pt;}
.y63_c00262{bottom:312.831744pt;}
.y62_c00262{bottom:313.560755pt;}
.y61_c00262{bottom:313.871429pt;}
.y60_c00262{bottom:314.181981pt;}
.y5f_c00262{bottom:315.272239pt;}
.y5e_c00262{bottom:316.418007pt;}
.y5d_c00262{bottom:316.741404pt;}
.y5c_c00262{bottom:317.280124pt;}
.y5b_c00262{bottom:326.845029pt;}
.y5a_c00262{bottom:327.147989pt;}
.y59_c00262{bottom:328.896477pt;}
.y58_c00262{bottom:329.424193pt;}
.y57_c00262{bottom:330.646365pt;}
.y56_c00262{bottom:331.685333pt;}
.y55_c00262{bottom:341.100907pt;}
.y54_c00262{bottom:344.393067pt;}
.y53_c00262{bottom:346.155547pt;}
.y52_c00262{bottom:346.588480pt;}
.y51_c00262{bottom:347.090987pt;}
.y50_c00262{bottom:348.711147pt;}
.y4f_c00262{bottom:356.603120pt;}
.y4e_c00262{bottom:357.232533pt;}
.y4d_c00262{bottom:358.286373pt;}
.y4c_c00262{bottom:358.605600pt;}
.y4b_c00262{bottom:359.463067pt;}
.y4a_c00262{bottom:360.471360pt;}
.y49_c00262{bottom:360.988747pt;}
.y48_c00262{bottom:361.429413pt;}
.y47_c00262{bottom:371.677067pt;}
.y46_c00262{bottom:372.131307pt;}
.y45_c00262{bottom:372.735947pt;}
.y44_c00262{bottom:373.387093pt;}
.y43_c00262{bottom:374.718267pt;}
.y42_c00262{bottom:375.917467pt;}
.y41_c00262{bottom:377.032720pt;}
.y40_c00262{bottom:387.819173pt;}
.y3f_c00262{bottom:388.191680pt;}
.y3e_c00262{bottom:389.489627pt;}
.y3d_c00262{bottom:390.795440pt;}
.y3c_c00262{bottom:391.160747pt;}
.y3b_c00262{bottom:391.674720pt;}
.y3a_c00262{bottom:402.345707pt;}
.y39_c00262{bottom:404.289387pt;}
.y38_c00262{bottom:405.800293pt;}
.y37_c00262{bottom:406.499253pt;}
.y36_c00262{bottom:408.164693pt;}
.y35_c00262{bottom:409.926827pt;}
.y34_c00262{bottom:417.818453pt;}
.y33_c00262{bottom:418.233920pt;}
.y32_c00262{bottom:419.145840pt;}
.y31_c00262{bottom:419.502133pt;}
.y30_c00262{bottom:419.779493pt;}
.y2f_c00262{bottom:420.407627pt;}
.y2e_c00262{bottom:420.747067pt;}
.y2d_c00262{bottom:421.877707pt;}
.y2c_c00262{bottom:422.162320pt;}
.y2b_c00262{bottom:432.736267pt;}
.y2a_c00262{bottom:434.264667pt;}
.y29_c00262{bottom:434.605973pt;}
.y28_c00262{bottom:435.146640pt;}
.y27_c00262{bottom:435.561280pt;}
.y26_c00262{bottom:436.276347pt;}
.y25_c00262{bottom:436.511200pt;}
.y24_c00262{bottom:437.326853pt;}
.y23_c00262{bottom:437.525333pt;}
.y22_c00262{bottom:448.399484pt;}
.y21_c00262{bottom:448.583369pt;}
.y20_c00262{bottom:449.721788pt;}
.y1f_c00262{bottom:449.848269pt;}
.y1e_c00262{bottom:450.669593pt;}
.y1d_c00262{bottom:450.838152pt;}
.y1c_c00262{bottom:451.675796pt;}
.y1b_c00262{bottom:451.914701pt;}
.y1a_c00262{bottom:452.157301pt;}
.y19_c00262{bottom:463.674415pt;}
.y18_c00262{bottom:463.908265pt;}
.y17_c00262{bottom:464.288208pt;}
.y16_c00262{bottom:465.414273pt;}
.y15_c00262{bottom:465.644497pt;}
.y14_c00262{bottom:465.828111pt;}
.y13_c00262{bottom:466.477812pt;}
.y12_c00262{bottom:467.161431pt;}
.y11_c00262{bottom:467.518544pt;}
.y10_c00262{bottom:479.560067pt;}
.yf_c00262{bottom:479.808971pt;}
.ye_c00262{bottom:480.450781pt;}
.yd_c00262{bottom:480.823911pt;}
.yc_c00262{bottom:481.172544pt;}
.yb_c00262{bottom:482.043572pt;}
.ya_c00262{bottom:482.880648pt;}
.y9_c00262{bottom:494.610892pt;}
.y8_c00262{bottom:495.381355pt;}
.y7_c00262{bottom:495.670989pt;}
.y6_c00262{bottom:495.940088pt;}
.y5_c00262{bottom:496.560157pt;}
.y4_c00262{bottom:497.327492pt;}
.y3_c00262{bottom:498.531749pt;}
.y2_c00262{bottom:498.721333pt;}
.y1_c00262{bottom:508.564000pt;}
.h19_c00262{height:41.070691pt;}
.h18_c00262{height:42.937541pt;}
.he_c00262{height:49.477573pt;}
.h1c_c00262{height:51.333333pt;}
.hd_c00262{height:52.278190pt;}
.h1a_c00262{height:53.205213pt;}
.h9_c00262{height:53.210639pt;}
.hb_c00262{height:54.144159pt;}
.h15_c00262{height:54.145268pt;}
.h5_c00262{height:55.074623pt;}
.h11_c00262{height:55.078808pt;}
.h16_c00262{height:56.000000pt;}
.h6_c00262{height:56.008091pt;}
.ha_c00262{height:56.011199pt;}
.h14_c00262{height:56.012347pt;}
.h10_c00262{height:56.945886pt;}
.h1b_c00262{height:58.805762pt;}
.h8_c00262{height:58.811759pt;}
.h17_c00262{height:59.733333pt;}
.h3_c00262{height:59.741964pt;}
.hc_c00262{height:59.745279pt;}
.hf_c00262{height:59.746503pt;}
.h4_c00262{height:61.608901pt;}
.h13_c00262{height:61.613581pt;}
.h1d_c00262{height:62.533333pt;}
.h12_c00262{height:63.480660pt;}
.h7_c00262{height:66.279919pt;}
.h2_c00262{height:71.866667pt;}
.h1_c00262{height:550.000000pt;}
.h0_c00262{height:550.266667pt;}
.w0_c00262{width:319.200000pt;}
.w1_c00262{width:319.333333pt;}
.x0_c00262{left:0.000000pt;}
.x5a_c00262{left:12.544169pt;}
.x49_c00262{left:13.439839pt;}
.x2c_c00262{left:14.694827pt;}
.xa_c00262{left:15.626848pt;}
.x4f_c00262{left:16.787679pt;}
.x44_c00262{left:18.525435pt;}
.x6e_c00262{left:19.920000pt;}
.x20_c00262{left:21.590667pt;}
.x78_c00262{left:23.307149pt;}
.x2_c00262{left:24.642667pt;}
.x18_c00262{left:30.278145pt;}
.x21_c00262{left:31.514667pt;}
.x6f_c00262{left:32.880000pt;}
.x41_c00262{left:34.078667pt;}
.x3_c00262{left:35.794667pt;}
.x11_c00262{left:37.751424pt;}
.x5b_c00262{left:38.744469pt;}
.x30_c00262{left:40.567333pt;}
.x19_c00262{left:45.194395pt;}
.x45_c00262{left:46.846611pt;}
.x50_c00262{left:48.291720pt;}
.x73_c00262{left:50.883053pt;}
.x5c_c00262{left:54.569155pt;}
.x31_c00262{left:58.832667pt;}
.x39_c00262{left:60.497760pt;}
.x46_c00262{left:63.898005pt;}
.x34_c00262{left:65.303147pt;}
.x3e_c00262{left:66.584693pt;}
.x79_c00262{left:68.245875pt;}
.x74_c00262{left:69.605397pt;}
.x6b_c00262{left:71.040000pt;}
.x22_c00262{left:72.297333pt;}
.xb_c00262{left:75.457908pt;}
.x12_c00262{left:80.474816pt;}
.x3f_c00262{left:82.773120pt;}
.x23_c00262{left:84.040000pt;}
.x62_c00262{left:86.903459pt;}
.x28_c00262{left:89.328987pt;}
.x4c_c00262{left:91.177397pt;}
.x55_c00262{left:92.709943pt;}
.x7b_c00262{left:94.800000pt;}
.x1a_c00262{left:97.527279pt;}
.x57_c00262{left:101.171409pt;}
.x75_c00262{left:102.489171pt;}
.x4a_c00262{left:104.461172pt;}
.x63_c00262{left:105.487332pt;}
.x4_c00262{left:106.633333pt;}
.x1b_c00262{left:108.070127pt;}
.x69_c00262{left:109.722436pt;}
.x56_c00262{left:110.614733pt;}
.x51_c00262{left:113.228828pt;}
.x66_c00262{left:116.192836pt;}
.x24_c00262{left:119.793333pt;}
.x13_c00262{left:121.046163pt;}
.x32_c00262{left:124.123333pt;}
.x2d_c00262{left:125.249173pt;}
.x5d_c00262{left:128.987287pt;}
.x4d_c00262{left:130.556441pt;}
.x1_c00262{left:132.000000pt;}
.x67_c00262{left:134.902015pt;}
.xc_c00262{left:137.678415pt;}
.x25_c00262{left:140.525333pt;}
.x42_c00262{left:141.752000pt;}
.x14_c00262{left:146.958616pt;}
.x3a_c00262{left:149.317307pt;}
.x5_c00262{left:151.770667pt;}
.x40_c00262{left:153.594880pt;}
.x29_c00262{left:154.843627pt;}
.x6c_c00262{left:155.760000pt;}
.x5e_c00262{left:158.272024pt;}
.x1c_c00262{left:159.443011pt;}
.xd_c00262{left:162.579684pt;}
.x3b_c00262{left:164.545013pt;}
.x58_c00262{left:165.492569pt;}
.x1d_c00262{left:167.353813pt;}
.x77_c00262{left:168.496469pt;}
.x6a_c00262{left:169.910995pt;}
.x65_c00262{left:170.836863pt;}
.x4b_c00262{left:172.466505pt;}
.x2a_c00262{left:173.592000pt;}
.x64_c00262{left:177.410192pt;}
.x52_c00262{left:179.236407pt;}
.x35_c00262{left:180.283867pt;}
.x47_c00262{left:181.554933pt;}
.x70_c00262{left:182.640000pt;}
.x26_c00262{left:184.624000pt;}
.x72_c00262{left:185.644000pt;}
.x7a_c00262{left:186.598192pt;}
.x6_c00262{left:188.245333pt;}
.xe_c00262{left:189.235711pt;}
.x2e_c00262{left:196.526827pt;}
.x48_c00262{left:197.867605pt;}
.x4e_c00262{left:199.667733pt;}
.x7_c00262{left:204.074667pt;}
.x60_c00262{left:205.793732pt;}
.x33_c00262{left:207.646000pt;}
.x36_c00262{left:209.906693pt;}
.x3c_c00262{left:214.702667pt;}
.x15_c00262{left:217.355817pt;}
.x7c_c00262{left:218.640000pt;}
.x68_c00262{left:219.991677pt;}
.x8_c00262{left:221.112000pt;}
.x61_c00262{left:222.592104pt;}
.x59_c00262{left:226.479819pt;}
.x5f_c00262{left:229.635052pt;}
.xf_c00262{left:235.070045pt;}
.x53_c00262{left:236.109525pt;}
.x37_c00262{left:237.404267pt;}
.x1e_c00262{left:238.477681pt;}
.x16_c00262{left:241.117559pt;}
.x2b_c00262{left:243.429387pt;}
.x3d_c00262{left:244.706080pt;}
.x7d_c00262{left:245.705333pt;}
.x1f_c00262{left:250.000552pt;}
.x10_c00262{left:252.849619pt;}
.x54_c00262{left:254.606417pt;}
.x17_c00262{left:255.736475pt;}
.x38_c00262{left:258.048773pt;}
.x2f_c00262{left:259.230373pt;}
.x27_c00262{left:261.044000pt;}
.x43_c00262{left:264.569333pt;}
.x9_c00262{left:266.433333pt;}
.x71_c00262{left:268.320000pt;}
.x76_c00262{left:269.307189pt;}
.x6d_c00262{left:275.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00263 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00263 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00263 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00263 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00263{transform:matrix(0.036446,-0.001459,0.010002,0.249800,0,0);-ms-transform:matrix(0.036446,-0.001459,0.010002,0.249800,0,0);-webkit-transform:matrix(0.036446,-0.001459,0.010002,0.249800,0,0);}
.ma1_c00263{transform:matrix(0.134093,-0.005369,0.010002,0.249800,0,0);-ms-transform:matrix(0.134093,-0.005369,0.010002,0.249800,0,0);-webkit-transform:matrix(0.134093,-0.005369,0.010002,0.249800,0,0);}
.ma2_c00263{transform:matrix(0.141681,-0.005673,0.010002,0.249800,0,0);-ms-transform:matrix(0.141681,-0.005673,0.010002,0.249800,0,0);-webkit-transform:matrix(0.141681,-0.005673,0.010002,0.249800,0,0);}
.m9e_c00263{transform:matrix(0.143775,-0.005757,0.010002,0.249800,0,0);-ms-transform:matrix(0.143775,-0.005757,0.010002,0.249800,0,0);-webkit-transform:matrix(0.143775,-0.005757,0.010002,0.249800,0,0);}
.m6a_c00263{transform:matrix(0.144154,-0.005772,0.010002,0.249800,0,0);-ms-transform:matrix(0.144154,-0.005772,0.010002,0.249800,0,0);-webkit-transform:matrix(0.144154,-0.005772,0.010002,0.249800,0,0);}
.m2a_c00263{transform:matrix(0.150015,-0.006007,0.010002,0.249800,0,0);-ms-transform:matrix(0.150015,-0.006007,0.010002,0.249800,0,0);-webkit-transform:matrix(0.150015,-0.006007,0.010002,0.249800,0,0);}
.m40_c00263{transform:matrix(0.150579,-0.006029,0.010002,0.249800,0,0);-ms-transform:matrix(0.150579,-0.006029,0.010002,0.249800,0,0);-webkit-transform:matrix(0.150579,-0.006029,0.010002,0.249800,0,0);}
.m3c_c00263{transform:matrix(0.151169,-0.006053,0.010002,0.249800,0,0);-ms-transform:matrix(0.151169,-0.006053,0.010002,0.249800,0,0);-webkit-transform:matrix(0.151169,-0.006053,0.010002,0.249800,0,0);}
.md2_c00263{transform:matrix(0.152323,-0.006099,0.010002,0.249800,0,0);-ms-transform:matrix(0.152323,-0.006099,0.010002,0.249800,0,0);-webkit-transform:matrix(0.152323,-0.006099,0.010002,0.249800,0,0);}
.ma0_c00263{transform:matrix(0.152358,-0.006100,0.010002,0.249800,0,0);-ms-transform:matrix(0.152358,-0.006100,0.010002,0.249800,0,0);-webkit-transform:matrix(0.152358,-0.006100,0.010002,0.249800,0,0);}
.me2_c00263{transform:matrix(0.152598,-0.006110,0.010002,0.249800,0,0);-ms-transform:matrix(0.152598,-0.006110,0.010002,0.249800,0,0);-webkit-transform:matrix(0.152598,-0.006110,0.010002,0.249800,0,0);}
.mc5_c00263{transform:matrix(0.155106,-0.006210,0.010002,0.249800,0,0);-ms-transform:matrix(0.155106,-0.006210,0.010002,0.249800,0,0);-webkit-transform:matrix(0.155106,-0.006210,0.010002,0.249800,0,0);}
.mae_c00263{transform:matrix(0.155835,-0.006240,0.010002,0.249800,0,0);-ms-transform:matrix(0.155835,-0.006240,0.010002,0.249800,0,0);-webkit-transform:matrix(0.155835,-0.006240,0.010002,0.249800,0,0);}
.m3a_c00263{transform:matrix(0.156240,-0.006256,0.010002,0.249800,0,0);-ms-transform:matrix(0.156240,-0.006256,0.010002,0.249800,0,0);-webkit-transform:matrix(0.156240,-0.006256,0.010002,0.249800,0,0);}
.mc3_c00263{transform:matrix(0.156869,-0.006281,0.010002,0.249800,0,0);-ms-transform:matrix(0.156869,-0.006281,0.010002,0.249800,0,0);-webkit-transform:matrix(0.156869,-0.006281,0.010002,0.249800,0,0);}
.ma3_c00263{transform:matrix(0.157524,-0.006307,0.010002,0.249800,0,0);-ms-transform:matrix(0.157524,-0.006307,0.010002,0.249800,0,0);-webkit-transform:matrix(0.157524,-0.006307,0.010002,0.249800,0,0);}
.m74_c00263{transform:matrix(0.158453,-0.006344,0.010002,0.249800,0,0);-ms-transform:matrix(0.158453,-0.006344,0.010002,0.249800,0,0);-webkit-transform:matrix(0.158453,-0.006344,0.010002,0.249800,0,0);}
.m4c_c00263{transform:matrix(0.158848,-0.006360,0.010002,0.249800,0,0);-ms-transform:matrix(0.158848,-0.006360,0.010002,0.249800,0,0);-webkit-transform:matrix(0.158848,-0.006360,0.010002,0.249800,0,0);}
.md9_c00263{transform:matrix(0.160466,-0.006425,0.010002,0.249800,0,0);-ms-transform:matrix(0.160466,-0.006425,0.010002,0.249800,0,0);-webkit-transform:matrix(0.160466,-0.006425,0.010002,0.249800,0,0);}
.m1b_c00263{transform:matrix(0.161146,-0.006452,0.010002,0.249800,0,0);-ms-transform:matrix(0.161146,-0.006452,0.010002,0.249800,0,0);-webkit-transform:matrix(0.161146,-0.006452,0.010002,0.249800,0,0);}
.m95_c00263{transform:matrix(0.163399,-0.006543,0.010002,0.249800,0,0);-ms-transform:matrix(0.163399,-0.006543,0.010002,0.249800,0,0);-webkit-transform:matrix(0.163399,-0.006543,0.010002,0.249800,0,0);}
.m30_c00263{transform:matrix(0.163594,-0.006550,0.010002,0.249800,0,0);-ms-transform:matrix(0.163594,-0.006550,0.010002,0.249800,0,0);-webkit-transform:matrix(0.163594,-0.006550,0.010002,0.249800,0,0);}
.m7d_c00263{transform:matrix(0.164768,-0.006597,0.010002,0.249800,0,0);-ms-transform:matrix(0.164768,-0.006597,0.010002,0.249800,0,0);-webkit-transform:matrix(0.164768,-0.006597,0.010002,0.249800,0,0);}
.mad_c00263{transform:matrix(0.165952,-0.006645,0.010002,0.249800,0,0);-ms-transform:matrix(0.165952,-0.006645,0.010002,0.249800,0,0);-webkit-transform:matrix(0.165952,-0.006645,0.010002,0.249800,0,0);}
.m1c_c00263{transform:matrix(0.166217,-0.006655,0.010002,0.249800,0,0);-ms-transform:matrix(0.166217,-0.006655,0.010002,0.249800,0,0);-webkit-transform:matrix(0.166217,-0.006655,0.010002,0.249800,0,0);}
.m16_c00263{transform:matrix(0.166651,-0.006673,0.010002,0.249800,0,0);-ms-transform:matrix(0.166651,-0.006673,0.010002,0.249800,0,0);-webkit-transform:matrix(0.166651,-0.006673,0.010002,0.249800,0,0);}
.md8_c00263{transform:matrix(0.166701,-0.006675,0.010002,0.249800,0,0);-ms-transform:matrix(0.166701,-0.006675,0.010002,0.249800,0,0);-webkit-transform:matrix(0.166701,-0.006675,0.010002,0.249800,0,0);}
.ma4_c00263{transform:matrix(0.166756,-0.006677,0.010002,0.249800,0,0);-ms-transform:matrix(0.166756,-0.006677,0.010002,0.249800,0,0);-webkit-transform:matrix(0.166756,-0.006677,0.010002,0.249800,0,0);}
.m10_c00263{transform:matrix(0.167571,-0.006710,0.010002,0.249800,0,0);-ms-transform:matrix(0.167571,-0.006710,0.010002,0.249800,0,0);-webkit-transform:matrix(0.167571,-0.006710,0.010002,0.249800,0,0);}
.m2f_c00263{transform:matrix(0.167731,-0.006716,0.010002,0.249800,0,0);-ms-transform:matrix(0.167731,-0.006716,0.010002,0.249800,0,0);-webkit-transform:matrix(0.167731,-0.006716,0.010002,0.249800,0,0);}
.m1_c00263{transform:matrix(0.167975,-0.006726,0.010002,0.249800,0,0);-ms-transform:matrix(0.167975,-0.006726,0.010002,0.249800,0,0);-webkit-transform:matrix(0.167975,-0.006726,0.010002,0.249800,0,0);}
.m2b_c00263{transform:matrix(0.168395,-0.006743,0.010002,0.249800,0,0);-ms-transform:matrix(0.168395,-0.006743,0.010002,0.249800,0,0);-webkit-transform:matrix(0.168395,-0.006743,0.010002,0.249800,0,0);}
.m7_c00263{transform:matrix(0.168920,-0.006764,0.010002,0.249800,0,0);-ms-transform:matrix(0.168920,-0.006764,0.010002,0.249800,0,0);-webkit-transform:matrix(0.168920,-0.006764,0.010002,0.249800,0,0);}
.mb3_c00263{transform:matrix(0.169139,-0.006772,0.010002,0.249800,0,0);-ms-transform:matrix(0.169139,-0.006772,0.010002,0.249800,0,0);-webkit-transform:matrix(0.169139,-0.006772,0.010002,0.249800,0,0);}
.m50_c00263{transform:matrix(0.169229,-0.006776,0.010002,0.249800,0,0);-ms-transform:matrix(0.169229,-0.006776,0.010002,0.249800,0,0);-webkit-transform:matrix(0.169229,-0.006776,0.010002,0.249800,0,0);}
.m6_c00263{transform:matrix(0.169854,-0.006801,0.010002,0.249800,0,0);-ms-transform:matrix(0.169854,-0.006801,0.010002,0.249800,0,0);-webkit-transform:matrix(0.169854,-0.006801,0.010002,0.249800,0,0);}
.me1_c00263{transform:matrix(0.169959,-0.006805,0.010002,0.249800,0,0);-ms-transform:matrix(0.169959,-0.006805,0.010002,0.249800,0,0);-webkit-transform:matrix(0.169959,-0.006805,0.010002,0.249800,0,0);}
.mda_c00263{transform:matrix(0.170289,-0.006818,0.010002,0.249800,0,0);-ms-transform:matrix(0.170289,-0.006818,0.010002,0.249800,0,0);-webkit-transform:matrix(0.170289,-0.006818,0.010002,0.249800,0,0);}
.m4b_c00263{transform:matrix(0.170319,-0.006820,0.010002,0.249800,0,0);-ms-transform:matrix(0.170319,-0.006820,0.010002,0.249800,0,0);-webkit-transform:matrix(0.170319,-0.006820,0.010002,0.249800,0,0);}
.m53_c00263{transform:matrix(0.170723,-0.006836,0.010002,0.249800,0,0);-ms-transform:matrix(0.170723,-0.006836,0.010002,0.249800,0,0);-webkit-transform:matrix(0.170723,-0.006836,0.010002,0.249800,0,0);}
.m2c_c00263{transform:matrix(0.171578,-0.006870,0.010002,0.249800,0,0);-ms-transform:matrix(0.171578,-0.006870,0.010002,0.249800,0,0);-webkit-transform:matrix(0.171578,-0.006870,0.010002,0.249800,0,0);}
.m32_c00263{transform:matrix(0.172147,-0.006893,0.010002,0.249800,0,0);-ms-transform:matrix(0.172147,-0.006893,0.010002,0.249800,0,0);-webkit-transform:matrix(0.172147,-0.006893,0.010002,0.249800,0,0);}
.m8_c00263{transform:matrix(0.172327,-0.006900,0.010002,0.249800,0,0);-ms-transform:matrix(0.172327,-0.006900,0.010002,0.249800,0,0);-webkit-transform:matrix(0.172327,-0.006900,0.010002,0.249800,0,0);}
.me5_c00263{transform:matrix(0.172921,-0.006924,0.010002,0.249800,0,0);-ms-transform:matrix(0.172921,-0.006924,0.010002,0.249800,0,0);-webkit-transform:matrix(0.172921,-0.006924,0.010002,0.249800,0,0);}
.mc2_c00263{transform:matrix(0.173031,-0.006928,0.010002,0.249800,0,0);-ms-transform:matrix(0.173031,-0.006928,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173031,-0.006928,0.010002,0.249800,0,0);}
.m19_c00263{transform:matrix(0.173381,-0.006942,0.010002,0.249800,0,0);-ms-transform:matrix(0.173381,-0.006942,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173381,-0.006942,0.010002,0.249800,0,0);}
.mc_c00263{transform:matrix(0.173391,-0.006943,0.010002,0.249800,0,0);-ms-transform:matrix(0.173391,-0.006943,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173391,-0.006943,0.010002,0.249800,0,0);}
.maf_c00263{transform:matrix(0.173571,-0.006950,0.010002,0.249800,0,0);-ms-transform:matrix(0.173571,-0.006950,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173571,-0.006950,0.010002,0.249800,0,0);}
.m58_c00263{transform:matrix(0.173701,-0.006955,0.010002,0.249800,0,0);-ms-transform:matrix(0.173701,-0.006955,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173701,-0.006955,0.010002,0.249800,0,0);}
.ma9_c00263{transform:matrix(0.173846,-0.006961,0.010002,0.249800,0,0);-ms-transform:matrix(0.173846,-0.006961,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173846,-0.006961,0.010002,0.249800,0,0);}
.md_c00263{transform:matrix(0.174910,-0.007003,0.010002,0.249800,0,0);-ms-transform:matrix(0.174910,-0.007003,0.010002,0.249800,0,0);-webkit-transform:matrix(0.174910,-0.007003,0.010002,0.249800,0,0);}
.mb2_c00263{transform:matrix(0.175100,-0.007011,0.010002,0.249800,0,0);-ms-transform:matrix(0.175100,-0.007011,0.010002,0.249800,0,0);-webkit-transform:matrix(0.175100,-0.007011,0.010002,0.249800,0,0);}
.m99_c00263{transform:matrix(0.175584,-0.007030,0.010002,0.249800,0,0);-ms-transform:matrix(0.175584,-0.007030,0.010002,0.249800,0,0);-webkit-transform:matrix(0.175584,-0.007030,0.010002,0.249800,0,0);}
.m5_c00263{transform:matrix(0.176089,-0.007051,0.010002,0.249800,0,0);-ms-transform:matrix(0.176089,-0.007051,0.010002,0.249800,0,0);-webkit-transform:matrix(0.176089,-0.007051,0.010002,0.249800,0,0);}
.m5d_c00263{transform:matrix(0.176658,-0.007073,0.010002,0.249800,0,0);-ms-transform:matrix(0.176658,-0.007073,0.010002,0.249800,0,0);-webkit-transform:matrix(0.176658,-0.007073,0.010002,0.249800,0,0);}
.m9f_c00263{transform:matrix(0.176773,-0.007078,0.010002,0.249800,0,0);-ms-transform:matrix(0.176773,-0.007078,0.010002,0.249800,0,0);-webkit-transform:matrix(0.176773,-0.007078,0.010002,0.249800,0,0);}
.m29_c00263{transform:matrix(0.176953,-0.007085,0.010002,0.249800,0,0);-ms-transform:matrix(0.176953,-0.007085,0.010002,0.249800,0,0);-webkit-transform:matrix(0.176953,-0.007085,0.010002,0.249800,0,0);}
.mce_c00263{transform:matrix(0.177608,-0.007111,0.010002,0.249800,0,0);-ms-transform:matrix(0.177608,-0.007111,0.010002,0.249800,0,0);-webkit-transform:matrix(0.177608,-0.007111,0.010002,0.249800,0,0);}
.m24_c00263{transform:matrix(0.178077,-0.007130,0.010002,0.249800,0,0);-ms-transform:matrix(0.178077,-0.007130,0.010002,0.249800,0,0);-webkit-transform:matrix(0.178077,-0.007130,0.010002,0.249800,0,0);}
.me3_c00263{transform:matrix(0.178692,-0.007155,0.010002,0.249800,0,0);-ms-transform:matrix(0.178692,-0.007155,0.010002,0.249800,0,0);-webkit-transform:matrix(0.178692,-0.007155,0.010002,0.249800,0,0);}
.mba_c00263{transform:matrix(0.178897,-0.007163,0.010002,0.249800,0,0);-ms-transform:matrix(0.178897,-0.007163,0.010002,0.249800,0,0);-webkit-transform:matrix(0.178897,-0.007163,0.010002,0.249800,0,0);}
.mc7_c00263{transform:matrix(0.179301,-0.007179,0.010002,0.249800,0,0);-ms-transform:matrix(0.179301,-0.007179,0.010002,0.249800,0,0);-webkit-transform:matrix(0.179301,-0.007179,0.010002,0.249800,0,0);}
.mc9_c00263{transform:matrix(0.179756,-0.007197,0.010002,0.249800,0,0);-ms-transform:matrix(0.179756,-0.007197,0.010002,0.249800,0,0);-webkit-transform:matrix(0.179756,-0.007197,0.010002,0.249800,0,0);}
.m2d_c00263{transform:matrix(0.179946,-0.007205,0.010002,0.249800,0,0);-ms-transform:matrix(0.179946,-0.007205,0.010002,0.249800,0,0);-webkit-transform:matrix(0.179946,-0.007205,0.010002,0.249800,0,0);}
.mbe_c00263{transform:matrix(0.180595,-0.007231,0.010002,0.249800,0,0);-ms-transform:matrix(0.180595,-0.007231,0.010002,0.249800,0,0);-webkit-transform:matrix(0.180595,-0.007231,0.010002,0.249800,0,0);}
.m0_c00263{transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.181649,-0.007273,0.010002,0.249800,0,0);-ms-transform:matrix(0.181649,-0.007273,0.010002,0.249800,0,0);-webkit-transform:matrix(0.181649,-0.007273,0.010002,0.249800,0,0);}
.m35_c00263{transform:matrix(0.181674,-0.007274,0.010002,0.249800,0,0);-ms-transform:matrix(0.181674,-0.007274,0.010002,0.249800,0,0);-webkit-transform:matrix(0.181674,-0.007274,0.010002,0.249800,0,0);}
.m1f_c00263{transform:matrix(0.181734,-0.007277,0.010002,0.249800,0,0);-ms-transform:matrix(0.181734,-0.007277,0.010002,0.249800,0,0);-webkit-transform:matrix(0.181734,-0.007277,0.010002,0.249800,0,0);}
.m23_c00263{transform:matrix(0.181859,-0.007282,0.010002,0.249800,0,0);-ms-transform:matrix(0.181859,-0.007282,0.010002,0.249800,0,0);-webkit-transform:matrix(0.181859,-0.007282,0.010002,0.249800,0,0);}
.m52_c00263{transform:matrix(0.182154,-0.007293,0.010002,0.249800,0,0);-ms-transform:matrix(0.182154,-0.007293,0.010002,0.249800,0,0);-webkit-transform:matrix(0.182154,-0.007293,0.010002,0.249800,0,0);}
.mc1_c00263{transform:matrix(0.182279,-0.007298,0.010002,0.249800,0,0);-ms-transform:matrix(0.182279,-0.007298,0.010002,0.249800,0,0);-webkit-transform:matrix(0.182279,-0.007298,0.010002,0.249800,0,0);}
.mf_c00263{transform:matrix(0.182604,-0.007311,0.010002,0.249800,0,0);-ms-transform:matrix(0.182604,-0.007311,0.010002,0.249800,0,0);-webkit-transform:matrix(0.182604,-0.007311,0.010002,0.249800,0,0);}
.m34_c00263{transform:matrix(0.183733,-0.007357,0.010002,0.249800,0,0);-ms-transform:matrix(0.183733,-0.007357,0.010002,0.249800,0,0);-webkit-transform:matrix(0.183733,-0.007357,0.010002,0.249800,0,0);}
.mdb_c00263{transform:matrix(0.183888,-0.007363,0.010002,0.249800,0,0);-ms-transform:matrix(0.183888,-0.007363,0.010002,0.249800,0,0);-webkit-transform:matrix(0.183888,-0.007363,0.010002,0.249800,0,0);}
.m65_c00263{transform:matrix(0.183958,-0.007366,0.010002,0.249800,0,0);-ms-transform:matrix(0.183958,-0.007366,0.010002,0.249800,0,0);-webkit-transform:matrix(0.183958,-0.007366,0.010002,0.249800,0,0);}
.m20_c00263{transform:matrix(0.184102,-0.007371,0.010002,0.249800,0,0);-ms-transform:matrix(0.184102,-0.007371,0.010002,0.249800,0,0);-webkit-transform:matrix(0.184102,-0.007371,0.010002,0.249800,0,0);}
.m59_c00263{transform:matrix(0.184397,-0.007383,0.010002,0.249800,0,0);-ms-transform:matrix(0.184397,-0.007383,0.010002,0.249800,0,0);-webkit-transform:matrix(0.184397,-0.007383,0.010002,0.249800,0,0);}
.mb6_c00263{transform:matrix(0.185092,-0.007411,0.010002,0.249800,0,0);-ms-transform:matrix(0.185092,-0.007411,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185092,-0.007411,0.010002,0.249800,0,0);}
.me9_c00263{transform:matrix(0.185172,-0.007414,0.010002,0.249800,0,0);-ms-transform:matrix(0.185172,-0.007414,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185172,-0.007414,0.010002,0.249800,0,0);}
.m6f_c00263{transform:matrix(0.185242,-0.007417,0.010002,0.249800,0,0);-ms-transform:matrix(0.185242,-0.007417,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185242,-0.007417,0.010002,0.249800,0,0);}
.m12_c00263{transform:matrix(0.185441,-0.007425,0.010002,0.249800,0,0);-ms-transform:matrix(0.185441,-0.007425,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185441,-0.007425,0.010002,0.249800,0,0);}
.m1d_c00263{transform:matrix(0.185506,-0.007428,0.010002,0.249800,0,0);-ms-transform:matrix(0.185506,-0.007428,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185506,-0.007428,0.010002,0.249800,0,0);}
.m3f_c00263{transform:matrix(0.185671,-0.007434,0.010002,0.249800,0,0);-ms-transform:matrix(0.185671,-0.007434,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185671,-0.007434,0.010002,0.249800,0,0);}
.m43_c00263{transform:matrix(0.185791,-0.007439,0.010002,0.249800,0,0);-ms-transform:matrix(0.185791,-0.007439,0.010002,0.249800,0,0);-webkit-transform:matrix(0.185791,-0.007439,0.010002,0.249800,0,0);}
.mbd_c00263{transform:matrix(0.186101,-0.007451,0.010002,0.249800,0,0);-ms-transform:matrix(0.186101,-0.007451,0.010002,0.249800,0,0);-webkit-transform:matrix(0.186101,-0.007451,0.010002,0.249800,0,0);}
.mc0_c00263{transform:matrix(0.186860,-0.007482,0.010002,0.249800,0,0);-ms-transform:matrix(0.186860,-0.007482,0.010002,0.249800,0,0);-webkit-transform:matrix(0.186860,-0.007482,0.010002,0.249800,0,0);}
.m83_c00263{transform:matrix(0.187255,-0.007498,0.010002,0.249800,0,0);-ms-transform:matrix(0.187255,-0.007498,0.010002,0.249800,0,0);-webkit-transform:matrix(0.187255,-0.007498,0.010002,0.249800,0,0);}
.me4_c00263{transform:matrix(0.187510,-0.007508,0.010002,0.249800,0,0);-ms-transform:matrix(0.187510,-0.007508,0.010002,0.249800,0,0);-webkit-transform:matrix(0.187510,-0.007508,0.010002,0.249800,0,0);}
.m70_c00263{transform:matrix(0.187829,-0.007521,0.010002,0.249800,0,0);-ms-transform:matrix(0.187829,-0.007521,0.010002,0.249800,0,0);-webkit-transform:matrix(0.187829,-0.007521,0.010002,0.249800,0,0);}
.m6c_c00263{transform:matrix(0.187999,-0.007528,0.010002,0.249800,0,0);-ms-transform:matrix(0.187999,-0.007528,0.010002,0.249800,0,0);-webkit-transform:matrix(0.187999,-0.007528,0.010002,0.249800,0,0);}
.m73_c00263{transform:matrix(0.188164,-0.007534,0.010002,0.249800,0,0);-ms-transform:matrix(0.188164,-0.007534,0.010002,0.249800,0,0);-webkit-transform:matrix(0.188164,-0.007534,0.010002,0.249800,0,0);}
.mac_c00263{transform:matrix(0.188434,-0.007545,0.010002,0.249800,0,0);-ms-transform:matrix(0.188434,-0.007545,0.010002,0.249800,0,0);-webkit-transform:matrix(0.188434,-0.007545,0.010002,0.249800,0,0);}
.m28_c00263{transform:matrix(0.188609,-0.007552,0.010002,0.249800,0,0);-ms-transform:matrix(0.188609,-0.007552,0.010002,0.249800,0,0);-webkit-transform:matrix(0.188609,-0.007552,0.010002,0.249800,0,0);}
.m67_c00263{transform:matrix(0.189988,-0.007607,0.010002,0.249800,0,0);-ms-transform:matrix(0.189988,-0.007607,0.010002,0.249800,0,0);-webkit-transform:matrix(0.189988,-0.007607,0.010002,0.249800,0,0);}
.ma6_c00263{transform:matrix(0.190717,-0.007636,0.010002,0.249800,0,0);-ms-transform:matrix(0.190717,-0.007636,0.010002,0.249800,0,0);-webkit-transform:matrix(0.190717,-0.007636,0.010002,0.249800,0,0);}
.md5_c00263{transform:matrix(0.190742,-0.007637,0.010002,0.249800,0,0);-ms-transform:matrix(0.190742,-0.007637,0.010002,0.249800,0,0);-webkit-transform:matrix(0.190742,-0.007637,0.010002,0.249800,0,0);}
.m6e_c00263{transform:matrix(0.191821,-0.007681,0.010002,0.249800,0,0);-ms-transform:matrix(0.191821,-0.007681,0.010002,0.249800,0,0);-webkit-transform:matrix(0.191821,-0.007681,0.010002,0.249800,0,0);}
.m55_c00263{transform:matrix(0.191896,-0.007684,0.010002,0.249800,0,0);-ms-transform:matrix(0.191896,-0.007684,0.010002,0.249800,0,0);-webkit-transform:matrix(0.191896,-0.007684,0.010002,0.249800,0,0);}
.ma_c00263{transform:matrix(0.192026,-0.007689,0.010002,0.249800,0,0);-ms-transform:matrix(0.192026,-0.007689,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192026,-0.007689,0.010002,0.249800,0,0);}
.mdd_c00263{transform:matrix(0.192356,-0.007702,0.010002,0.249800,0,0);-ms-transform:matrix(0.192356,-0.007702,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192356,-0.007702,0.010002,0.249800,0,0);}
.m78_c00263{transform:matrix(0.192671,-0.007715,0.010002,0.249800,0,0);-ms-transform:matrix(0.192671,-0.007715,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192671,-0.007715,0.010002,0.249800,0,0);}
.m76_c00263{transform:matrix(0.192811,-0.007720,0.010002,0.249800,0,0);-ms-transform:matrix(0.192811,-0.007720,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192811,-0.007720,0.010002,0.249800,0,0);}
.m68_c00263{transform:matrix(0.192860,-0.007722,0.010002,0.249800,0,0);-ms-transform:matrix(0.192860,-0.007722,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192860,-0.007722,0.010002,0.249800,0,0);}
.md6_c00263{transform:matrix(0.192900,-0.007724,0.010002,0.249800,0,0);-ms-transform:matrix(0.192900,-0.007724,0.010002,0.249800,0,0);-webkit-transform:matrix(0.192900,-0.007724,0.010002,0.249800,0,0);}
.mde_c00263{transform:matrix(0.193180,-0.007735,0.010002,0.249800,0,0);-ms-transform:matrix(0.193180,-0.007735,0.010002,0.249800,0,0);-webkit-transform:matrix(0.193180,-0.007735,0.010002,0.249800,0,0);}
.mb1_c00263{transform:matrix(0.193275,-0.007739,0.010002,0.249800,0,0);-ms-transform:matrix(0.193275,-0.007739,0.010002,0.249800,0,0);-webkit-transform:matrix(0.193275,-0.007739,0.010002,0.249800,0,0);}
.mdc_c00263{transform:matrix(0.194174,-0.007775,0.010002,0.249800,0,0);-ms-transform:matrix(0.194174,-0.007775,0.010002,0.249800,0,0);-webkit-transform:matrix(0.194174,-0.007775,0.010002,0.249800,0,0);}
.m7c_c00263{transform:matrix(0.194204,-0.007776,0.010002,0.249800,0,0);-ms-transform:matrix(0.194204,-0.007776,0.010002,0.249800,0,0);-webkit-transform:matrix(0.194204,-0.007776,0.010002,0.249800,0,0);}
.m41_c00263{transform:matrix(0.194299,-0.007780,0.010002,0.249800,0,0);-ms-transform:matrix(0.194299,-0.007780,0.010002,0.249800,0,0);-webkit-transform:matrix(0.194299,-0.007780,0.010002,0.249800,0,0);}
.m31_c00263{transform:matrix(0.194494,-0.007788,0.010002,0.249800,0,0);-ms-transform:matrix(0.194494,-0.007788,0.010002,0.249800,0,0);-webkit-transform:matrix(0.194494,-0.007788,0.010002,0.249800,0,0);}
.m51_c00263{transform:matrix(0.194504,-0.007788,0.010002,0.249800,0,0);-ms-transform:matrix(0.194504,-0.007788,0.010002,0.249800,0,0);-webkit-transform:matrix(0.194504,-0.007788,0.010002,0.249800,0,0);}
.m7b_c00263{transform:matrix(0.195918,-0.007845,0.010002,0.249800,0,0);-ms-transform:matrix(0.195918,-0.007845,0.010002,0.249800,0,0);-webkit-transform:matrix(0.195918,-0.007845,0.010002,0.249800,0,0);}
.m3b_c00263{transform:matrix(0.195958,-0.007846,0.010002,0.249800,0,0);-ms-transform:matrix(0.195958,-0.007846,0.010002,0.249800,0,0);-webkit-transform:matrix(0.195958,-0.007846,0.010002,0.249800,0,0);}
.m6b_c00263{transform:matrix(0.195993,-0.007848,0.010002,0.249800,0,0);-ms-transform:matrix(0.195993,-0.007848,0.010002,0.249800,0,0);-webkit-transform:matrix(0.195993,-0.007848,0.010002,0.249800,0,0);}
.m7f_c00263{transform:matrix(0.196168,-0.007855,0.010002,0.249800,0,0);-ms-transform:matrix(0.196168,-0.007855,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196168,-0.007855,0.010002,0.249800,0,0);}
.m77_c00263{transform:matrix(0.196213,-0.007856,0.010002,0.249800,0,0);-ms-transform:matrix(0.196213,-0.007856,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196213,-0.007856,0.010002,0.249800,0,0);}
.ma7_c00263{transform:matrix(0.196298,-0.007860,0.010002,0.249800,0,0);-ms-transform:matrix(0.196298,-0.007860,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196298,-0.007860,0.010002,0.249800,0,0);}
.md1_c00263{transform:matrix(0.196318,-0.007861,0.010002,0.249800,0,0);-ms-transform:matrix(0.196318,-0.007861,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196318,-0.007861,0.010002,0.249800,0,0);}
.m71_c00263{transform:matrix(0.196737,-0.007877,0.010002,0.249800,0,0);-ms-transform:matrix(0.196737,-0.007877,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196737,-0.007877,0.010002,0.249800,0,0);}
.m5e_c00263{transform:matrix(0.196987,-0.007887,0.010002,0.249800,0,0);-ms-transform:matrix(0.196987,-0.007887,0.010002,0.249800,0,0);-webkit-transform:matrix(0.196987,-0.007887,0.010002,0.249800,0,0);}
.m3d_c00263{transform:matrix(0.197102,-0.007892,0.010002,0.249800,0,0);-ms-transform:matrix(0.197102,-0.007892,0.010002,0.249800,0,0);-webkit-transform:matrix(0.197102,-0.007892,0.010002,0.249800,0,0);}
.me6_c00263{transform:matrix(0.197357,-0.007902,0.010002,0.249800,0,0);-ms-transform:matrix(0.197357,-0.007902,0.010002,0.249800,0,0);-webkit-transform:matrix(0.197357,-0.007902,0.010002,0.249800,0,0);}
.m1a_c00263{transform:matrix(0.197971,-0.007927,0.010002,0.249800,0,0);-ms-transform:matrix(0.197971,-0.007927,0.010002,0.249800,0,0);-webkit-transform:matrix(0.197971,-0.007927,0.010002,0.249800,0,0);}
.m11_c00263{transform:matrix(0.198236,-0.007937,0.010002,0.249800,0,0);-ms-transform:matrix(0.198236,-0.007937,0.010002,0.249800,0,0);-webkit-transform:matrix(0.198236,-0.007937,0.010002,0.249800,0,0);}
.m38_c00263{transform:matrix(0.198431,-0.007945,0.010002,0.249800,0,0);-ms-transform:matrix(0.198431,-0.007945,0.010002,0.249800,0,0);-webkit-transform:matrix(0.198431,-0.007945,0.010002,0.249800,0,0);}
.m8c_c00263{transform:matrix(0.198621,-0.007953,0.010002,0.249800,0,0);-ms-transform:matrix(0.198621,-0.007953,0.010002,0.249800,0,0);-webkit-transform:matrix(0.198621,-0.007953,0.010002,0.249800,0,0);}
.mb4_c00263{transform:matrix(0.199665,-0.007995,0.010002,0.249800,0,0);-ms-transform:matrix(0.199665,-0.007995,0.010002,0.249800,0,0);-webkit-transform:matrix(0.199665,-0.007995,0.010002,0.249800,0,0);}
.m49_c00263{transform:matrix(0.199865,-0.008003,0.010002,0.249800,0,0);-ms-transform:matrix(0.199865,-0.008003,0.010002,0.249800,0,0);-webkit-transform:matrix(0.199865,-0.008003,0.010002,0.249800,0,0);}
.m8d_c00263{transform:matrix(0.199925,-0.008005,0.010002,0.249800,0,0);-ms-transform:matrix(0.199925,-0.008005,0.010002,0.249800,0,0);-webkit-transform:matrix(0.199925,-0.008005,0.010002,0.249800,0,0);}
.m8b_c00263{transform:matrix(0.199980,-0.008007,0.010002,0.249800,0,0);-ms-transform:matrix(0.199980,-0.008007,0.010002,0.249800,0,0);-webkit-transform:matrix(0.199980,-0.008007,0.010002,0.249800,0,0);}
.m15_c00263{transform:matrix(0.200105,-0.008012,0.010002,0.249800,0,0);-ms-transform:matrix(0.200105,-0.008012,0.010002,0.249800,0,0);-webkit-transform:matrix(0.200105,-0.008012,0.010002,0.249800,0,0);}
.m9c_c00263{transform:matrix(0.200774,-0.008039,0.010002,0.249800,0,0);-ms-transform:matrix(0.200774,-0.008039,0.010002,0.249800,0,0);-webkit-transform:matrix(0.200774,-0.008039,0.010002,0.249800,0,0);}
.mcf_c00263{transform:matrix(0.200799,-0.008040,0.010002,0.249800,0,0);-ms-transform:matrix(0.200799,-0.008040,0.010002,0.249800,0,0);-webkit-transform:matrix(0.200799,-0.008040,0.010002,0.249800,0,0);}
.m2_c00263{transform:matrix(0.201249,-0.008058,0.010002,0.249800,0,0);-ms-transform:matrix(0.201249,-0.008058,0.010002,0.249800,0,0);-webkit-transform:matrix(0.201249,-0.008058,0.010002,0.249800,0,0);}
.m66_c00263{transform:matrix(0.201898,-0.008084,0.010002,0.249800,0,0);-ms-transform:matrix(0.201898,-0.008084,0.010002,0.249800,0,0);-webkit-transform:matrix(0.201898,-0.008084,0.010002,0.249800,0,0);}
.m75_c00263{transform:matrix(0.202458,-0.008106,0.010002,0.249800,0,0);-ms-transform:matrix(0.202458,-0.008106,0.010002,0.249800,0,0);-webkit-transform:matrix(0.202458,-0.008106,0.010002,0.249800,0,0);}
.mbf_c00263{transform:matrix(0.202488,-0.008108,0.010002,0.249800,0,0);-ms-transform:matrix(0.202488,-0.008108,0.010002,0.249800,0,0);-webkit-transform:matrix(0.202488,-0.008108,0.010002,0.249800,0,0);}
.m9d_c00263{transform:matrix(0.202583,-0.008111,0.010002,0.249800,0,0);-ms-transform:matrix(0.202583,-0.008111,0.010002,0.249800,0,0);-webkit-transform:matrix(0.202583,-0.008111,0.010002,0.249800,0,0);}
.md4_c00263{transform:matrix(0.202628,-0.008113,0.010002,0.249800,0,0);-ms-transform:matrix(0.202628,-0.008113,0.010002,0.249800,0,0);-webkit-transform:matrix(0.202628,-0.008113,0.010002,0.249800,0,0);}
.m90_c00263{transform:matrix(0.203037,-0.008130,0.010002,0.249800,0,0);-ms-transform:matrix(0.203037,-0.008130,0.010002,0.249800,0,0);-webkit-transform:matrix(0.203037,-0.008130,0.010002,0.249800,0,0);}
.m9_c00263{transform:matrix(0.203577,-0.008151,0.010002,0.249800,0,0);-ms-transform:matrix(0.203577,-0.008151,0.010002,0.249800,0,0);-webkit-transform:matrix(0.203577,-0.008151,0.010002,0.249800,0,0);}
.m54_c00263{transform:matrix(0.203582,-0.008151,0.010002,0.249800,0,0);-ms-transform:matrix(0.203582,-0.008151,0.010002,0.249800,0,0);-webkit-transform:matrix(0.203582,-0.008151,0.010002,0.249800,0,0);}
.m33_c00263{transform:matrix(0.204061,-0.008171,0.010002,0.249800,0,0);-ms-transform:matrix(0.204061,-0.008171,0.010002,0.249800,0,0);-webkit-transform:matrix(0.204061,-0.008171,0.010002,0.249800,0,0);}
.m22_c00263{transform:matrix(0.204281,-0.008179,0.010002,0.249800,0,0);-ms-transform:matrix(0.204281,-0.008179,0.010002,0.249800,0,0);-webkit-transform:matrix(0.204281,-0.008179,0.010002,0.249800,0,0);}
.mb0_c00263{transform:matrix(0.204666,-0.008195,0.010002,0.249800,0,0);-ms-transform:matrix(0.204666,-0.008195,0.010002,0.249800,0,0);-webkit-transform:matrix(0.204666,-0.008195,0.010002,0.249800,0,0);}
.m27_c00263{transform:matrix(0.204726,-0.008197,0.010002,0.249800,0,0);-ms-transform:matrix(0.204726,-0.008197,0.010002,0.249800,0,0);-webkit-transform:matrix(0.204726,-0.008197,0.010002,0.249800,0,0);}
.mab_c00263{transform:matrix(0.205246,-0.008218,0.010002,0.249800,0,0);-ms-transform:matrix(0.205246,-0.008218,0.010002,0.249800,0,0);-webkit-transform:matrix(0.205246,-0.008218,0.010002,0.249800,0,0);}
.mcd_c00263{transform:matrix(0.205670,-0.008235,0.010002,0.249800,0,0);-ms-transform:matrix(0.205670,-0.008235,0.010002,0.249800,0,0);-webkit-transform:matrix(0.205670,-0.008235,0.010002,0.249800,0,0);}
.m14_c00263{transform:matrix(0.205840,-0.008242,0.010002,0.249800,0,0);-ms-transform:matrix(0.205840,-0.008242,0.010002,0.249800,0,0);-webkit-transform:matrix(0.205840,-0.008242,0.010002,0.249800,0,0);}
.m98_c00263{transform:matrix(0.206135,-0.008254,0.010002,0.249800,0,0);-ms-transform:matrix(0.206135,-0.008254,0.010002,0.249800,0,0);-webkit-transform:matrix(0.206135,-0.008254,0.010002,0.249800,0,0);}
.mb8_c00263{transform:matrix(0.206889,-0.008284,0.010002,0.249800,0,0);-ms-transform:matrix(0.206889,-0.008284,0.010002,0.249800,0,0);-webkit-transform:matrix(0.206889,-0.008284,0.010002,0.249800,0,0);}
.ma8_c00263{transform:matrix(0.207699,-0.008316,0.010002,0.249800,0,0);-ms-transform:matrix(0.207699,-0.008316,0.010002,0.249800,0,0);-webkit-transform:matrix(0.207699,-0.008316,0.010002,0.249800,0,0);}
.m88_c00263{transform:matrix(0.208233,-0.008338,0.010002,0.249800,0,0);-ms-transform:matrix(0.208233,-0.008338,0.010002,0.249800,0,0);-webkit-transform:matrix(0.208233,-0.008338,0.010002,0.249800,0,0);}
.me0_c00263{transform:matrix(0.208413,-0.008345,0.010002,0.249800,0,0);-ms-transform:matrix(0.208413,-0.008345,0.010002,0.249800,0,0);-webkit-transform:matrix(0.208413,-0.008345,0.010002,0.249800,0,0);}
.m4f_c00263{transform:matrix(0.208723,-0.008357,0.010002,0.249800,0,0);-ms-transform:matrix(0.208723,-0.008357,0.010002,0.249800,0,0);-webkit-transform:matrix(0.208723,-0.008357,0.010002,0.249800,0,0);}
.maa_c00263{transform:matrix(0.208868,-0.008363,0.010002,0.249800,0,0);-ms-transform:matrix(0.208868,-0.008363,0.010002,0.249800,0,0);-webkit-transform:matrix(0.208868,-0.008363,0.010002,0.249800,0,0);}
.m2e_c00263{transform:matrix(0.209347,-0.008382,0.010002,0.249800,0,0);-ms-transform:matrix(0.209347,-0.008382,0.010002,0.249800,0,0);-webkit-transform:matrix(0.209347,-0.008382,0.010002,0.249800,0,0);}
.mbc_c00263{transform:matrix(0.209397,-0.008384,0.010002,0.249800,0,0);-ms-transform:matrix(0.209397,-0.008384,0.010002,0.249800,0,0);-webkit-transform:matrix(0.209397,-0.008384,0.010002,0.249800,0,0);}
.m80_c00263{transform:matrix(0.209507,-0.008389,0.010002,0.249800,0,0);-ms-transform:matrix(0.209507,-0.008389,0.010002,0.249800,0,0);-webkit-transform:matrix(0.209507,-0.008389,0.010002,0.249800,0,0);}
.m69_c00263{transform:matrix(0.209792,-0.008400,0.010002,0.249800,0,0);-ms-transform:matrix(0.209792,-0.008400,0.010002,0.249800,0,0);-webkit-transform:matrix(0.209792,-0.008400,0.010002,0.249800,0,0);}
.m48_c00263{transform:matrix(0.210077,-0.008411,0.010002,0.249800,0,0);-ms-transform:matrix(0.210077,-0.008411,0.010002,0.249800,0,0);-webkit-transform:matrix(0.210077,-0.008411,0.010002,0.249800,0,0);}
.mcb_c00263{transform:matrix(0.210506,-0.008429,0.010002,0.249800,0,0);-ms-transform:matrix(0.210506,-0.008429,0.010002,0.249800,0,0);-webkit-transform:matrix(0.210506,-0.008429,0.010002,0.249800,0,0);}
.m4e_c00263{transform:matrix(0.210541,-0.008430,0.010002,0.249800,0,0);-ms-transform:matrix(0.210541,-0.008430,0.010002,0.249800,0,0);-webkit-transform:matrix(0.210541,-0.008430,0.010002,0.249800,0,0);}
.mb7_c00263{transform:matrix(0.210891,-0.008444,0.010002,0.249800,0,0);-ms-transform:matrix(0.210891,-0.008444,0.010002,0.249800,0,0);-webkit-transform:matrix(0.210891,-0.008444,0.010002,0.249800,0,0);}
.m56_c00263{transform:matrix(0.212555,-0.008511,0.010002,0.249800,0,0);-ms-transform:matrix(0.212555,-0.008511,0.010002,0.249800,0,0);-webkit-transform:matrix(0.212555,-0.008511,0.010002,0.249800,0,0);}
.m1e_c00263{transform:matrix(0.212824,-0.008522,0.010002,0.249800,0,0);-ms-transform:matrix(0.212824,-0.008522,0.010002,0.249800,0,0);-webkit-transform:matrix(0.212824,-0.008522,0.010002,0.249800,0,0);}
.m7e_c00263{transform:matrix(0.213034,-0.008530,0.010002,0.249800,0,0);-ms-transform:matrix(0.213034,-0.008530,0.010002,0.249800,0,0);-webkit-transform:matrix(0.213034,-0.008530,0.010002,0.249800,0,0);}
.m62_c00263{transform:matrix(0.213169,-0.008535,0.010002,0.249800,0,0);-ms-transform:matrix(0.213169,-0.008535,0.010002,0.249800,0,0);-webkit-transform:matrix(0.213169,-0.008535,0.010002,0.249800,0,0);}
.m25_c00263{transform:matrix(0.213179,-0.008536,0.010002,0.249800,0,0);-ms-transform:matrix(0.213179,-0.008536,0.010002,0.249800,0,0);-webkit-transform:matrix(0.213179,-0.008536,0.010002,0.249800,0,0);}
.m63_c00263{transform:matrix(0.214838,-0.008602,0.010002,0.249800,0,0);-ms-transform:matrix(0.214838,-0.008602,0.010002,0.249800,0,0);-webkit-transform:matrix(0.214838,-0.008602,0.010002,0.249800,0,0);}
.m94_c00263{transform:matrix(0.215297,-0.008621,0.010002,0.249800,0,0);-ms-transform:matrix(0.215297,-0.008621,0.010002,0.249800,0,0);-webkit-transform:matrix(0.215297,-0.008621,0.010002,0.249800,0,0);}
.mb5_c00263{transform:matrix(0.215732,-0.008638,0.010002,0.249800,0,0);-ms-transform:matrix(0.215732,-0.008638,0.010002,0.249800,0,0);-webkit-transform:matrix(0.215732,-0.008638,0.010002,0.249800,0,0);}
.m37_c00263{transform:matrix(0.216182,-0.008656,0.010002,0.249800,0,0);-ms-transform:matrix(0.216182,-0.008656,0.010002,0.249800,0,0);-webkit-transform:matrix(0.216182,-0.008656,0.010002,0.249800,0,0);}
.mca_c00263{transform:matrix(0.216197,-0.008657,0.010002,0.249800,0,0);-ms-transform:matrix(0.216197,-0.008657,0.010002,0.249800,0,0);-webkit-transform:matrix(0.216197,-0.008657,0.010002,0.249800,0,0);}
.m5f_c00263{transform:matrix(0.216357,-0.008663,0.010002,0.249800,0,0);-ms-transform:matrix(0.216357,-0.008663,0.010002,0.249800,0,0);-webkit-transform:matrix(0.216357,-0.008663,0.010002,0.249800,0,0);}
.m26_c00263{transform:matrix(0.217066,-0.008691,0.010002,0.249800,0,0);-ms-transform:matrix(0.217066,-0.008691,0.010002,0.249800,0,0);-webkit-transform:matrix(0.217066,-0.008691,0.010002,0.249800,0,0);}
.mb9_c00263{transform:matrix(0.217581,-0.008712,0.010002,0.249800,0,0);-ms-transform:matrix(0.217581,-0.008712,0.010002,0.249800,0,0);-webkit-transform:matrix(0.217581,-0.008712,0.010002,0.249800,0,0);}
.m18_c00263{transform:matrix(0.217761,-0.008719,0.010002,0.249800,0,0);-ms-transform:matrix(0.217761,-0.008719,0.010002,0.249800,0,0);-webkit-transform:matrix(0.217761,-0.008719,0.010002,0.249800,0,0);}
.md3_c00263{transform:matrix(0.218060,-0.008731,0.010002,0.249800,0,0);-ms-transform:matrix(0.218060,-0.008731,0.010002,0.249800,0,0);-webkit-transform:matrix(0.218060,-0.008731,0.010002,0.249800,0,0);}
.m9b_c00263{transform:matrix(0.218755,-0.008759,0.010002,0.249800,0,0);-ms-transform:matrix(0.218755,-0.008759,0.010002,0.249800,0,0);-webkit-transform:matrix(0.218755,-0.008759,0.010002,0.249800,0,0);}
.m64_c00263{transform:matrix(0.219159,-0.008775,0.010002,0.249800,0,0);-ms-transform:matrix(0.219159,-0.008775,0.010002,0.249800,0,0);-webkit-transform:matrix(0.219159,-0.008775,0.010002,0.249800,0,0);}
.me8_c00263{transform:matrix(0.219394,-0.008785,0.010002,0.249800,0,0);-ms-transform:matrix(0.219394,-0.008785,0.010002,0.249800,0,0);-webkit-transform:matrix(0.219394,-0.008785,0.010002,0.249800,0,0);}
.mb_c00263{transform:matrix(0.219519,-0.008790,0.010002,0.249800,0,0);-ms-transform:matrix(0.219519,-0.008790,0.010002,0.249800,0,0);-webkit-transform:matrix(0.219519,-0.008790,0.010002,0.249800,0,0);}
.m45_c00263{transform:matrix(0.219704,-0.008797,0.010002,0.249800,0,0);-ms-transform:matrix(0.219704,-0.008797,0.010002,0.249800,0,0);-webkit-transform:matrix(0.219704,-0.008797,0.010002,0.249800,0,0);}
.m5b_c00263{transform:matrix(0.220189,-0.008816,0.010002,0.249800,0,0);-ms-transform:matrix(0.220189,-0.008816,0.010002,0.249800,0,0);-webkit-transform:matrix(0.220189,-0.008816,0.010002,0.249800,0,0);}
.m36_c00263{transform:matrix(0.220478,-0.008828,0.010002,0.249800,0,0);-ms-transform:matrix(0.220478,-0.008828,0.010002,0.249800,0,0);-webkit-transform:matrix(0.220478,-0.008828,0.010002,0.249800,0,0);}
.m13_c00263{transform:matrix(0.220543,-0.008831,0.010002,0.249800,0,0);-ms-transform:matrix(0.220543,-0.008831,0.010002,0.249800,0,0);-webkit-transform:matrix(0.220543,-0.008831,0.010002,0.249800,0,0);}
.m96_c00263{transform:matrix(0.220888,-0.008844,0.010002,0.249800,0,0);-ms-transform:matrix(0.220888,-0.008844,0.010002,0.249800,0,0);-webkit-transform:matrix(0.220888,-0.008844,0.010002,0.249800,0,0);}
.m57_c00263{transform:matrix(0.220983,-0.008848,0.010002,0.249800,0,0);-ms-transform:matrix(0.220983,-0.008848,0.010002,0.249800,0,0);-webkit-transform:matrix(0.220983,-0.008848,0.010002,0.249800,0,0);}
.m82_c00263{transform:matrix(0.222517,-0.008910,0.010002,0.249800,0,0);-ms-transform:matrix(0.222517,-0.008910,0.010002,0.249800,0,0);-webkit-transform:matrix(0.222517,-0.008910,0.010002,0.249800,0,0);}
.m39_c00263{transform:matrix(0.223131,-0.008934,0.010002,0.249800,0,0);-ms-transform:matrix(0.223131,-0.008934,0.010002,0.249800,0,0);-webkit-transform:matrix(0.223131,-0.008934,0.010002,0.249800,0,0);}
.m5a_c00263{transform:matrix(0.223696,-0.008957,0.010002,0.249800,0,0);-ms-transform:matrix(0.223696,-0.008957,0.010002,0.249800,0,0);-webkit-transform:matrix(0.223696,-0.008957,0.010002,0.249800,0,0);}
.mbb_c00263{transform:matrix(0.225364,-0.009024,0.010002,0.249800,0,0);-ms-transform:matrix(0.225364,-0.009024,0.010002,0.249800,0,0);-webkit-transform:matrix(0.225364,-0.009024,0.010002,0.249800,0,0);}
.m60_c00263{transform:matrix(0.225534,-0.009030,0.010002,0.249800,0,0);-ms-transform:matrix(0.225534,-0.009030,0.010002,0.249800,0,0);-webkit-transform:matrix(0.225534,-0.009030,0.010002,0.249800,0,0);}
.mc6_c00263{transform:matrix(0.226379,-0.009064,0.010002,0.249800,0,0);-ms-transform:matrix(0.226379,-0.009064,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226379,-0.009064,0.010002,0.249800,0,0);}
.m46_c00263{transform:matrix(0.226464,-0.009068,0.010002,0.249800,0,0);-ms-transform:matrix(0.226464,-0.009068,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226464,-0.009068,0.010002,0.249800,0,0);}
.m8f_c00263{transform:matrix(0.226648,-0.009075,0.010002,0.249800,0,0);-ms-transform:matrix(0.226648,-0.009075,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226648,-0.009075,0.010002,0.249800,0,0);}
.m21_c00263{transform:matrix(0.226933,-0.009086,0.010002,0.249800,0,0);-ms-transform:matrix(0.226933,-0.009086,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226933,-0.009086,0.010002,0.249800,0,0);}
.mc8_c00263{transform:matrix(0.228287,-0.009141,0.010002,0.249800,0,0);-ms-transform:matrix(0.228287,-0.009141,0.010002,0.249800,0,0);-webkit-transform:matrix(0.228287,-0.009141,0.010002,0.249800,0,0);}
.mc4_c00263{transform:matrix(0.230076,-0.009212,0.010002,0.249800,0,0);-ms-transform:matrix(0.230076,-0.009212,0.010002,0.249800,0,0);-webkit-transform:matrix(0.230076,-0.009212,0.010002,0.249800,0,0);}
.m72_c00263{transform:matrix(0.230126,-0.009214,0.010002,0.249800,0,0);-ms-transform:matrix(0.230126,-0.009214,0.010002,0.249800,0,0);-webkit-transform:matrix(0.230126,-0.009214,0.010002,0.249800,0,0);}
.m61_c00263{transform:matrix(0.230285,-0.009221,0.010002,0.249800,0,0);-ms-transform:matrix(0.230285,-0.009221,0.010002,0.249800,0,0);-webkit-transform:matrix(0.230285,-0.009221,0.010002,0.249800,0,0);}
.m4_c00263{transform:matrix(0.231874,-0.009284,0.010002,0.249800,0,0);-ms-transform:matrix(0.231874,-0.009284,0.010002,0.249800,0,0);-webkit-transform:matrix(0.231874,-0.009284,0.010002,0.249800,0,0);}
.m3e_c00263{transform:matrix(0.233138,-0.009335,0.010002,0.249800,0,0);-ms-transform:matrix(0.233138,-0.009335,0.010002,0.249800,0,0);-webkit-transform:matrix(0.233138,-0.009335,0.010002,0.249800,0,0);}
.m86_c00263{transform:matrix(0.233788,-0.009361,0.010002,0.249800,0,0);-ms-transform:matrix(0.233788,-0.009361,0.010002,0.249800,0,0);-webkit-transform:matrix(0.233788,-0.009361,0.010002,0.249800,0,0);}
.me_c00263{transform:matrix(0.236111,-0.009454,0.010002,0.249800,0,0);-ms-transform:matrix(0.236111,-0.009454,0.010002,0.249800,0,0);-webkit-transform:matrix(0.236111,-0.009454,0.010002,0.249800,0,0);}
.m87_c00263{transform:matrix(0.236406,-0.009466,0.010002,0.249800,0,0);-ms-transform:matrix(0.236406,-0.009466,0.010002,0.249800,0,0);-webkit-transform:matrix(0.236406,-0.009466,0.010002,0.249800,0,0);}
.me7_c00263{transform:matrix(0.236995,-0.009489,0.010002,0.249800,0,0);-ms-transform:matrix(0.236995,-0.009489,0.010002,0.249800,0,0);-webkit-transform:matrix(0.236995,-0.009489,0.010002,0.249800,0,0);}
.m47_c00263{transform:matrix(0.238044,-0.009531,0.010002,0.249800,0,0);-ms-transform:matrix(0.238044,-0.009531,0.010002,0.249800,0,0);-webkit-transform:matrix(0.238044,-0.009531,0.010002,0.249800,0,0);}
.m9a_c00263{transform:matrix(0.238444,-0.009547,0.010002,0.249800,0,0);-ms-transform:matrix(0.238444,-0.009547,0.010002,0.249800,0,0);-webkit-transform:matrix(0.238444,-0.009547,0.010002,0.249800,0,0);}
.mcc_c00263{transform:matrix(0.238679,-0.009557,0.010002,0.249800,0,0);-ms-transform:matrix(0.238679,-0.009557,0.010002,0.249800,0,0);-webkit-transform:matrix(0.238679,-0.009557,0.010002,0.249800,0,0);}
.m8e_c00263{transform:matrix(0.239898,-0.009606,0.010002,0.249800,0,0);-ms-transform:matrix(0.239898,-0.009606,0.010002,0.249800,0,0);-webkit-transform:matrix(0.239898,-0.009606,0.010002,0.249800,0,0);}
.m8a_c00263{transform:matrix(0.240432,-0.009627,0.010002,0.249800,0,0);-ms-transform:matrix(0.240432,-0.009627,0.010002,0.249800,0,0);-webkit-transform:matrix(0.240432,-0.009627,0.010002,0.249800,0,0);}
.m79_c00263{transform:matrix(0.241227,-0.009659,0.010002,0.249800,0,0);-ms-transform:matrix(0.241227,-0.009659,0.010002,0.249800,0,0);-webkit-transform:matrix(0.241227,-0.009659,0.010002,0.249800,0,0);}
.md0_c00263{transform:matrix(0.242860,-0.009724,0.010002,0.249800,0,0);-ms-transform:matrix(0.242860,-0.009724,0.010002,0.249800,0,0);-webkit-transform:matrix(0.242860,-0.009724,0.010002,0.249800,0,0);}
.m44_c00263{transform:matrix(0.246333,-0.009863,0.010002,0.249800,0,0);-ms-transform:matrix(0.246333,-0.009863,0.010002,0.249800,0,0);-webkit-transform:matrix(0.246333,-0.009863,0.010002,0.249800,0,0);}
.m42_c00263{transform:matrix(0.247577,-0.009913,0.010002,0.249800,0,0);-ms-transform:matrix(0.247577,-0.009913,0.010002,0.249800,0,0);-webkit-transform:matrix(0.247577,-0.009913,0.010002,0.249800,0,0);}
.m4a_c00263{transform:matrix(0.248696,-0.009958,0.010002,0.249800,0,0);-ms-transform:matrix(0.248696,-0.009958,0.010002,0.249800,0,0);-webkit-transform:matrix(0.248696,-0.009958,0.010002,0.249800,0,0);}
.m81_c00263{transform:matrix(0.249075,-0.009973,0.010002,0.249800,0,0);-ms-transform:matrix(0.249075,-0.009973,0.010002,0.249800,0,0);-webkit-transform:matrix(0.249075,-0.009973,0.010002,0.249800,0,0);}
.ma5_c00263{transform:matrix(0.249470,-0.009989,0.010002,0.249800,0,0);-ms-transform:matrix(0.249470,-0.009989,0.010002,0.249800,0,0);-webkit-transform:matrix(0.249470,-0.009989,0.010002,0.249800,0,0);}
.mdf_c00263{transform:matrix(0.256814,-0.010283,0.010002,0.249800,0,0);-ms-transform:matrix(0.256814,-0.010283,0.010002,0.249800,0,0);-webkit-transform:matrix(0.256814,-0.010283,0.010002,0.249800,0,0);}
.m5c_c00263{transform:matrix(0.259057,-0.010373,0.010002,0.249800,0,0);-ms-transform:matrix(0.259057,-0.010373,0.010002,0.249800,0,0);-webkit-transform:matrix(0.259057,-0.010373,0.010002,0.249800,0,0);}
.m91_c00263{transform:matrix(0.260891,-0.010446,0.010002,0.249800,0,0);-ms-transform:matrix(0.260891,-0.010446,0.010002,0.249800,0,0);-webkit-transform:matrix(0.260891,-0.010446,0.010002,0.249800,0,0);}
.m84_c00263{transform:matrix(0.263019,-0.010531,0.010002,0.249800,0,0);-ms-transform:matrix(0.263019,-0.010531,0.010002,0.249800,0,0);-webkit-transform:matrix(0.263019,-0.010531,0.010002,0.249800,0,0);}
.m3_c00263{transform:matrix(0.267606,-0.010715,0.010002,0.249800,0,0);-ms-transform:matrix(0.267606,-0.010715,0.010002,0.249800,0,0);-webkit-transform:matrix(0.267606,-0.010715,0.010002,0.249800,0,0);}
.m92_c00263{transform:matrix(0.271667,-0.010878,0.010002,0.249800,0,0);-ms-transform:matrix(0.271667,-0.010878,0.010002,0.249800,0,0);-webkit-transform:matrix(0.271667,-0.010878,0.010002,0.249800,0,0);}
.m89_c00263{transform:matrix(0.275944,-0.011049,0.010002,0.249800,0,0);-ms-transform:matrix(0.275944,-0.011049,0.010002,0.249800,0,0);-webkit-transform:matrix(0.275944,-0.011049,0.010002,0.249800,0,0);}
.m93_c00263{transform:matrix(0.279346,-0.011185,0.010002,0.249800,0,0);-ms-transform:matrix(0.279346,-0.011185,0.010002,0.249800,0,0);-webkit-transform:matrix(0.279346,-0.011185,0.010002,0.249800,0,0);}
.m6d_c00263{transform:matrix(0.292581,-0.011715,0.010002,0.249800,0,0);-ms-transform:matrix(0.292581,-0.011715,0.010002,0.249800,0,0);-webkit-transform:matrix(0.292581,-0.011715,0.010002,0.249800,0,0);}
.m17_c00263{transform:matrix(0.296707,-0.011880,0.010002,0.249800,0,0);-ms-transform:matrix(0.296707,-0.011880,0.010002,0.249800,0,0);-webkit-transform:matrix(0.296707,-0.011880,0.010002,0.249800,0,0);}
.m7a_c00263{transform:matrix(0.372237,-0.014904,0.010002,0.249800,0,0);-ms-transform:matrix(0.372237,-0.014904,0.010002,0.249800,0,0);-webkit-transform:matrix(0.372237,-0.014904,0.010002,0.249800,0,0);}
.m85_c00263{transform:matrix(0.378132,-0.015140,0.010002,0.249800,0,0);-ms-transform:matrix(0.378132,-0.015140,0.010002,0.249800,0,0);-webkit-transform:matrix(0.378132,-0.015140,0.010002,0.249800,0,0);}
.m97_c00263{transform:matrix(0.408438,-0.016354,0.010002,0.249800,0,0);-ms-transform:matrix(0.408438,-0.016354,0.010002,0.249800,0,0);-webkit-transform:matrix(0.408438,-0.016354,0.010002,0.249800,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:0.000000px;}
.fc0_c00263{color:transparent;}
.fsc_c00263{font-size:55.638897px;}
.fs6_c00263{font-size:58.788268px;}
.fs8_c00263{font-size:59.838059px;}
.fs9_c00263{font-size:60.887849px;}
.fs2_c00263{font-size:61.937640px;}
.fs3_c00263{font-size:62.987430px;}
.fsa_c00263{font-size:64.037221px;}
.fse_c00263{font-size:65.087011px;}
.fs7_c00263{font-size:66.136802px;}
.fsb_c00263{font-size:67.186592px;}
.fs5_c00263{font-size:68.236383px;}
.fs4_c00263{font-size:69.286173px;}
.fs1_c00263{font-size:70.335964px;}
.fsf_c00263{font-size:71.385754px;}
.fs0_c00263{font-size:71.400000px;}
.fsd_c00263{font-size:75.584916px;}
.y0_c00263{bottom:0.000000px;}
.ye2_c00263{bottom:16.578526px;}
.ye3_c00263{bottom:16.976485px;}
.ye4_c00263{bottom:17.845621px;}
.ye5_c00263{bottom:18.468997px;}
.ye6_c00263{bottom:19.948606px;}
.ye7_c00263{bottom:20.613753px;}
.ye8_c00263{bottom:21.483910px;}
.ye9_c00263{bottom:23.277637px;}
.yea_c00263{bottom:23.524719px;}
.yeb_c00263{bottom:24.577201px;}
.yda_c00263{bottom:32.779558px;}
.ydb_c00263{bottom:33.852775px;}
.ydc_c00263{bottom:34.653817px;}
.ydd_c00263{bottom:36.092692px;}
.yde_c00263{bottom:37.001560px;}
.ydf_c00263{bottom:39.530034px;}
.ye0_c00263{bottom:42.068107px;}
.ye1_c00263{bottom:43.766136px;}
.yd3_c00263{bottom:50.869212px;}
.yd4_c00263{bottom:52.797951px;}
.yd5_c00263{bottom:53.358570px;}
.yd6_c00263{bottom:54.977175px;}
.yd7_c00263{bottom:57.280681px;}
.yd8_c00263{bottom:59.390113px;}
.yd9_c00263{bottom:60.983514px;}
.ycd_c00263{bottom:68.418828px;}
.yce_c00263{bottom:69.948867px;}
.ycf_c00263{bottom:72.287667px;}
.yd0_c00263{bottom:73.813506px;}
.yd1_c00263{bottom:74.676388px;}
.yd2_c00263{bottom:76.966947px;}
.yc6_c00263{bottom:85.690440px;}
.yc7_c00263{bottom:88.009458px;}
.yc8_c00263{bottom:88.658790px;}
.yc9_c00263{bottom:91.303042px;}
.yca_c00263{bottom:91.964316px;}
.ycb_c00263{bottom:94.377723px;}
.ycc_c00263{bottom:94.963207px;}
.ybf_c00263{bottom:100.546965px;}
.yc0_c00263{bottom:101.690775px;}
.yc1_c00263{bottom:104.283139px;}
.yc2_c00263{bottom:105.853171px;}
.yc3_c00263{bottom:109.102116px;}
.yc4_c00263{bottom:111.971929px;}
.yc5_c00263{bottom:112.841950px;}
.yb8_c00263{bottom:119.705955px;}
.yb9_c00263{bottom:121.829265px;}
.yba_c00263{bottom:123.953775px;}
.ybb_c00263{bottom:124.894954px;}
.ybc_c00263{bottom:126.829584px;}
.ybd_c00263{bottom:127.491765px;}
.ybe_c00263{bottom:129.483166px;}
.yb1_c00263{bottom:138.337206px;}
.yb2_c00263{bottom:139.770751px;}
.yb3_c00263{bottom:143.122630px;}
.yb4_c00263{bottom:145.415535px;}
.yb5_c00263{bottom:146.620245px;}
.yb6_c00263{bottom:147.113373px;}
.yb7_c00263{bottom:149.341419px;}
.ya8_c00263{bottom:155.068464px;}
.ya9_c00263{bottom:156.784591px;}
.yaa_c00263{bottom:157.118095px;}
.yab_c00263{bottom:157.931478px;}
.yac_c00263{bottom:159.836113px;}
.yad_c00263{bottom:160.256578px;}
.yae_c00263{bottom:161.501769px;}
.yaf_c00263{bottom:162.168295px;}
.yb0_c00263{bottom:164.195001px;}
.ya0_c00263{bottom:173.420284px;}
.ya1_c00263{bottom:174.355816px;}
.ya2_c00263{bottom:176.356402px;}
.ya3_c00263{bottom:177.541197px;}
.ya4_c00263{bottom:178.765723px;}
.ya5_c00263{bottom:179.519034px;}
.ya6_c00263{bottom:181.149537px;}
.ya7_c00263{bottom:181.742655px;}
.y9a_c00263{bottom:190.969438px;}
.y9b_c00263{bottom:191.749593px;}
.y9c_c00263{bottom:193.119079px;}
.y9d_c00263{bottom:194.700336px;}
.y9e_c00263{bottom:196.978011px;}
.y9f_c00263{bottom:199.013661px;}
.y93_c00263{bottom:208.517454px;}
.y94_c00263{bottom:209.903446px;}
.y95_c00263{bottom:212.423443px;}
.y96_c00263{bottom:213.092550px;}
.y97_c00263{bottom:213.970725px;}
.y98_c00263{bottom:214.632688px;}
.y99_c00263{bottom:216.412810px;}
.y8c_c00263{bottom:226.061187px;}
.y8d_c00263{bottom:226.357533px;}
.y8e_c00263{bottom:228.234475px;}
.y8f_c00263{bottom:229.377544px;}
.y90_c00263{bottom:229.891305px;}
.y91_c00263{bottom:231.528024px;}
.y92_c00263{bottom:232.872660px;}
.y84_c00263{bottom:242.799949px;}
.y85_c00263{bottom:244.271515px;}
.y86_c00263{bottom:245.071428px;}
.y87_c00263{bottom:247.039998px;}
.y88_c00263{bottom:247.426150px;}
.y89_c00263{bottom:249.159573px;}
.y8a_c00263{bottom:249.476344px;}
.y8b_c00263{bottom:250.311607px;}
.y7e_c00263{bottom:259.270881px;}
.y7f_c00263{bottom:261.178744px;}
.y80_c00263{bottom:261.883414px;}
.y81_c00263{bottom:264.460960px;}
.y82_c00263{bottom:266.242438px;}
.y83_c00263{bottom:266.644404px;}
.y78_c00263{bottom:276.008062px;}
.y79_c00263{bottom:277.396947px;}
.y7a_c00263{bottom:279.408921px;}
.y7b_c00263{bottom:281.677741px;}
.y7c_c00263{bottom:283.721221px;}
.y7d_c00263{bottom:284.178502px;}
.y71_c00263{bottom:293.016028px;}
.y72_c00263{bottom:293.965725px;}
.y73_c00263{bottom:294.640899px;}
.y74_c00263{bottom:300.115981px;}
.y75_c00263{bottom:300.959650px;}
.y76_c00263{bottom:302.225992px;}
.y77_c00263{bottom:302.746834px;}
.y69_c00263{bottom:310.022200px;}
.y6a_c00263{bottom:311.021761px;}
.y6b_c00263{bottom:311.603268px;}
.y6c_c00263{bottom:313.605150px;}
.y6d_c00263{bottom:314.381613px;}
.y6e_c00263{bottom:316.723062px;}
.y6f_c00263{bottom:318.960883px;}
.y70_c00263{bottom:319.444762px;}
.y64_c00263{bottom:327.302071px;}
.y65_c00263{bottom:330.445396px;}
.y66_c00263{bottom:333.314628px;}
.y67_c00263{bottom:335.822220px;}
.y68_c00263{bottom:336.500196px;}
.y5e_c00263{bottom:345.118006px;}
.y5f_c00263{bottom:347.195434px;}
.y60_c00263{bottom:348.036582px;}
.y61_c00263{bottom:350.466058px;}
.y62_c00263{bottom:353.559909px;}
.y63_c00263{bottom:355.683181px;}
.y57_c00263{bottom:362.660562px;}
.y58_c00263{bottom:364.123020px;}
.y59_c00263{bottom:367.373013px;}
.y5a_c00263{bottom:368.627053px;}
.y5b_c00263{bottom:369.288430px;}
.y5c_c00263{bottom:370.543071px;}
.y5d_c00263{bottom:371.817876px;}
.y4e_c00263{bottom:379.933113px;}
.y4f_c00263{bottom:380.751987px;}
.y50_c00263{bottom:382.507119px;}
.y51_c00263{bottom:382.941670px;}
.y52_c00263{bottom:384.135504px;}
.y53_c00263{bottom:384.701424px;}
.y54_c00263{bottom:385.624779px;}
.y55_c00263{bottom:387.167946px;}
.y56_c00263{bottom:388.232631px;}
.y45_c00263{bottom:396.946504px;}
.y46_c00263{bottom:398.074869px;}
.y47_c00263{bottom:399.124386px;}
.y48_c00263{bottom:400.976251px;}
.y49_c00263{bottom:402.032788px;}
.y4a_c00263{bottom:403.735477px;}
.y4b_c00263{bottom:404.535186px;}
.y4c_c00263{bottom:406.692246px;}
.y4d_c00263{bottom:407.166298px;}
.y3c_c00263{bottom:414.488931px;}
.y3d_c00263{bottom:416.058202px;}
.y3e_c00263{bottom:416.705499px;}
.y3f_c00263{bottom:418.586236px;}
.y40_c00263{bottom:419.104326px;}
.y41_c00263{bottom:419.817217px;}
.y42_c00263{bottom:420.480177px;}
.y43_c00263{bottom:422.212744px;}
.y44_c00263{bottom:422.849599px;}
.y35_c00263{bottom:431.225484px;}
.y36_c00263{bottom:432.296817px;}
.y37_c00263{bottom:434.440083px;}
.y38_c00263{bottom:435.435565px;}
.y39_c00263{bottom:436.885072px;}
.y3a_c00263{bottom:440.033061px;}
.y3b_c00263{bottom:441.055666px;}
.y2f_c00263{bottom:447.969412px;}
.y30_c00263{bottom:450.600685px;}
.y31_c00263{bottom:451.672192px;}
.y32_c00263{bottom:452.798724px;}
.y33_c00263{bottom:456.445219px;}
.y34_c00263{bottom:457.893676px;}
.y27_c00263{bottom:464.976177px;}
.y28_c00263{bottom:465.418269px;}
.y29_c00263{bottom:467.023489px;}
.y2a_c00263{bottom:468.160278px;}
.y2b_c00263{bottom:470.933008px;}
.y2c_c00263{bottom:471.772969px;}
.y2d_c00263{bottom:473.117724px;}
.y2e_c00263{bottom:474.970092px;}
.y20_c00263{bottom:482.520441px;}
.y21_c00263{bottom:483.359968px;}
.y22_c00263{bottom:484.290763px;}
.y23_c00263{bottom:486.758823px;}
.y24_c00263{bottom:489.069010px;}
.y25_c00263{bottom:489.730144px;}
.y26_c00263{bottom:491.603016px;}
.y18_c00263{bottom:499.528624px;}
.y19_c00263{bottom:501.938226px;}
.y1a_c00263{bottom:503.006973px;}
.y1b_c00263{bottom:506.011129px;}
.y1c_c00263{bottom:506.504821px;}
.y1d_c00263{bottom:507.200779px;}
.y1e_c00263{bottom:508.884423px;}
.y1f_c00263{bottom:509.401816px;}
.y11_c00263{bottom:516.799986px;}
.y12_c00263{bottom:517.872783px;}
.y13_c00263{bottom:520.344973px;}
.y14_c00263{bottom:521.335986px;}
.y15_c00263{bottom:524.750346px;}
.y16_c00263{bottom:526.876737px;}
.y17_c00263{bottom:527.760883px;}
.ya_c00263{bottom:534.075139px;}
.yb_c00263{bottom:535.104226px;}
.yc_c00263{bottom:537.119137px;}
.yd_c00263{bottom:540.139735px;}
.ye_c00263{bottom:541.047858px;}
.yf_c00263{bottom:542.975827px;}
.y10_c00263{bottom:545.083621px;}
.y2_c00263{bottom:550.822500px;}
.y3_c00263{bottom:552.822780px;}
.y4_c00263{bottom:553.446960px;}
.y5_c00263{bottom:555.024660px;}
.y6_c00263{bottom:555.859920px;}
.y7_c00263{bottom:556.702920px;}
.y8_c00263{bottom:559.739640px;}
.y9_c00263{bottom:562.035180px;}
.y1_c00263{bottom:573.339000px;}
.he_c00263{height:55.638897px;}
.h8_c00263{height:58.788268px;}
.ha_c00263{height:59.838059px;}
.hb_c00263{height:60.887849px;}
.h4_c00263{height:61.937640px;}
.h5_c00263{height:62.987430px;}
.hc_c00263{height:64.037221px;}
.h10_c00263{height:65.087011px;}
.h9_c00263{height:66.136802px;}
.hd_c00263{height:67.186592px;}
.h7_c00263{height:68.236383px;}
.h6_c00263{height:69.286173px;}
.h3_c00263{height:70.335964px;}
.h11_c00263{height:71.385754px;}
.h2_c00263{height:71.400000px;}
.hf_c00263{height:75.584916px;}
.h1_c00263{height:618.750000px;}
.h0_c00263{height:619.050000px;}
.w0_c00263{width:359.100000px;}
.w1_c00263{width:359.250000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:39.181500px;}
.x16_c00263{left:40.217697px;}
.x41_c00263{left:41.510382px;}
.x4c_c00263{left:42.605934px;}
.x6a_c00263{left:44.538570px;}
.x23_c00263{left:52.079287px;}
.x71_c00263{left:56.186088px;}
.x1d_c00263{left:62.835300px;}
.xa_c00263{left:66.112674px;}
.x10_c00263{left:67.997340px;}
.x5a_c00263{left:70.068720px;}
.x2e_c00263{left:71.732991px;}
.x5d_c00263{left:73.072054px;}
.x63_c00263{left:77.838375px;}
.x4f_c00263{left:82.810119px;}
.x42_c00263{left:84.482697px;}
.x4d_c00263{left:86.448273px;}
.x1e_c00263{left:87.956157px;}
.x3_c00263{left:89.138493px;}
.x59_c00263{left:91.970944px;}
.x24_c00263{left:93.181765px;}
.x44_c00263{left:97.404840px;}
.x53_c00263{left:100.029459px;}
.x17_c00263{left:101.934381px;}
.x4_c00263{left:104.727389px;}
.x31_c00263{left:107.720029px;}
.x29_c00263{left:111.251304px;}
.x55_c00263{left:115.669913px;}
.xb_c00263{left:117.709567px;}
.x3b_c00263{left:118.770155px;}
.x45_c00263{left:120.099325px;}
.x25_c00263{left:122.285274px;}
.x47_c00263{left:123.945066px;}
.x69_c00263{left:125.251176px;}
.x18_c00263{left:129.301068px;}
.x3c_c00263{left:131.909665px;}
.x11_c00263{left:133.001496px;}
.x4b_c00263{left:138.523710px;}
.x2a_c00263{left:140.186323px;}
.x50_c00263{left:141.905639px;}
.x5_c00263{left:144.130446px;}
.x72_c00263{left:148.932419px;}
.x67_c00263{left:151.379335px;}
.x35_c00263{left:152.519886px;}
.x1f_c00263{left:154.581453px;}
.x12_c00263{left:159.064009px;}
.x2f_c00263{left:161.331261px;}
.x6c_c00263{left:163.826672px;}
.x6_c00263{left:164.991064px;}
.x3d_c00263{left:168.060628px;}
.x2b_c00263{left:170.608035px;}
.x1_c00263{left:172.530000px;}
.x5b_c00263{left:175.325928px;}
.x56_c00263{left:179.079263px;}
.x32_c00263{left:180.300676px;}
.x36_c00263{left:181.830730px;}
.x7_c00263{left:186.044989px;}
.x57_c00263{left:191.534799px;}
.x26_c00263{left:193.296015px;}
.xc_c00263{left:195.098225px;}
.x73_c00263{left:196.872806px;}
.x48_c00263{left:199.390112px;}
.x30_c00263{left:202.705633px;}
.x61_c00263{left:204.800449px;}
.x19_c00263{left:206.241613px;}
.x51_c00263{left:208.577936px;}
.x3e_c00263{left:213.127130px;}
.x27_c00263{left:214.798831px;}
.x20_c00263{left:216.964015px;}
.xd_c00263{left:218.340859px;}
.x5e_c00263{left:219.869848px;}
.x33_c00263{left:221.934652px;}
.x37_c00263{left:229.078503px;}
.x6d_c00263{left:231.515192px;}
.x21_c00263{left:234.825298px;}
.x1a_c00263{left:236.702823px;}
.x62_c00263{left:243.658485px;}
.x5f_c00263{left:244.943780px;}
.x58_c00263{left:247.384514px;}
.x13_c00263{left:248.835855px;}
.x38_c00263{left:251.262840px;}
.x54_c00263{left:253.334504px;}
.x4e_c00263{left:257.041490px;}
.x64_c00263{left:258.244196px;}
.x3f_c00263{left:259.839464px;}
.x8_c00263{left:261.887072px;}
.x6b_c00263{left:263.500657px;}
.x49_c00263{left:265.315905px;}
.xe_c00263{left:267.728904px;}
.x2c_c00263{left:269.063812px;}
.x43_c00263{left:273.087189px;}
.x34_c00263{left:274.389360px;}
.x68_c00263{left:276.156508px;}
.x65_c00263{left:278.305760px;}
.x1b_c00263{left:279.838885px;}
.x52_c00263{left:282.055043px;}
.x4a_c00263{left:283.147997px;}
.x22_c00263{left:285.386253px;}
.x6f_c00263{left:288.056933px;}
.x40_c00263{left:292.052727px;}
.x1c_c00263{left:293.098153px;}
.x28_c00263{left:296.708643px;}
.x60_c00263{left:299.235176px;}
.x14_c00263{left:304.716363px;}
.x2d_c00263{left:308.162859px;}
.x39_c00263{left:311.133019px;}
.x9_c00263{left:319.218183px;}
.xf_c00263{left:321.720520px;}
.x3a_c00263{left:324.284457px;}
.x46_c00263{left:326.554469px;}
.x15_c00263{left:327.959958px;}
.x5c_c00263{left:329.157816px;}
.x70_c00263{left:332.676812px;}
.x66_c00263{left:338.574308px;}
.x6e_c00263{left:340.299425px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.fsc_c00263{font-size:49.456797pt;}
.fs6_c00263{font-size:52.256238pt;}
.fs8_c00263{font-size:53.189386pt;}
.fs9_c00263{font-size:54.122533pt;}
.fs2_c00263{font-size:55.055680pt;}
.fs3_c00263{font-size:55.988827pt;}
.fsa_c00263{font-size:56.921974pt;}
.fse_c00263{font-size:57.855121pt;}
.fs7_c00263{font-size:58.788268pt;}
.fsb_c00263{font-size:59.721415pt;}
.fs5_c00263{font-size:60.654562pt;}
.fs4_c00263{font-size:61.587710pt;}
.fs1_c00263{font-size:62.520857pt;}
.fsf_c00263{font-size:63.454004pt;}
.fs0_c00263{font-size:63.466667pt;}
.fsd_c00263{font-size:67.186592pt;}
.y0_c00263{bottom:0.000000pt;}
.ye2_c00263{bottom:14.736468pt;}
.ye3_c00263{bottom:15.090209pt;}
.ye4_c00263{bottom:15.862775pt;}
.ye5_c00263{bottom:16.416887pt;}
.ye6_c00263{bottom:17.732095pt;}
.ye7_c00263{bottom:18.323336pt;}
.ye8_c00263{bottom:19.096809pt;}
.ye9_c00263{bottom:20.691233pt;}
.yea_c00263{bottom:20.910861pt;}
.yeb_c00263{bottom:21.846401pt;}
.yda_c00263{bottom:29.137385pt;}
.ydb_c00263{bottom:30.091356pt;}
.ydc_c00263{bottom:30.803393pt;}
.ydd_c00263{bottom:32.082393pt;}
.yde_c00263{bottom:32.890276pt;}
.ydf_c00263{bottom:35.137808pt;}
.ye0_c00263{bottom:37.393873pt;}
.ye1_c00263{bottom:38.903232pt;}
.yd3_c00263{bottom:45.217077pt;}
.yd4_c00263{bottom:46.931512pt;}
.yd5_c00263{bottom:47.429840pt;}
.yd6_c00263{bottom:48.868600pt;}
.yd7_c00263{bottom:50.916161pt;}
.yd8_c00263{bottom:52.791212pt;}
.yd9_c00263{bottom:54.207568pt;}
.ycd_c00263{bottom:60.816736pt;}
.yce_c00263{bottom:62.176771pt;}
.ycf_c00263{bottom:64.255704pt;}
.yd0_c00263{bottom:65.612005pt;}
.yd1_c00263{bottom:66.379012pt;}
.yd2_c00263{bottom:68.415064pt;}
.yc6_c00263{bottom:76.169280pt;}
.yc7_c00263{bottom:78.230629pt;}
.yc8_c00263{bottom:78.807813pt;}
.yc9_c00263{bottom:81.158260pt;}
.yca_c00263{bottom:81.746059pt;}
.ycb_c00263{bottom:83.891309pt;}
.ycc_c00263{bottom:84.411740pt;}
.ybf_c00263{bottom:89.375080pt;}
.yc0_c00263{bottom:90.391800pt;}
.yc1_c00263{bottom:92.696124pt;}
.yc2_c00263{bottom:94.091708pt;}
.yc3_c00263{bottom:96.979659pt;}
.yc4_c00263{bottom:99.530604pt;}
.yc5_c00263{bottom:100.303956pt;}
.yb8_c00263{bottom:106.405293pt;}
.yb9_c00263{bottom:108.292680pt;}
.yba_c00263{bottom:110.181133pt;}
.ybb_c00263{bottom:111.017737pt;}
.ybc_c00263{bottom:112.737408pt;}
.ybd_c00263{bottom:113.326013pt;}
.ybe_c00263{bottom:115.096148pt;}
.yb1_c00263{bottom:122.966405pt;}
.yb2_c00263{bottom:124.240668pt;}
.yb3_c00263{bottom:127.220116pt;}
.yb4_c00263{bottom:129.258253pt;}
.yb5_c00263{bottom:130.329107pt;}
.yb6_c00263{bottom:130.767443pt;}
.yb7_c00263{bottom:132.747928pt;}
.ya8_c00263{bottom:137.838635pt;}
.ya9_c00263{bottom:139.364081pt;}
.yaa_c00263{bottom:139.660529pt;}
.yab_c00263{bottom:140.383536pt;}
.yac_c00263{bottom:142.076545pt;}
.yad_c00263{bottom:142.450292pt;}
.yae_c00263{bottom:143.557128pt;}
.yaf_c00263{bottom:144.149596pt;}
.yb0_c00263{bottom:145.951112pt;}
.ya0_c00263{bottom:154.151364pt;}
.ya1_c00263{bottom:154.982948pt;}
.ya2_c00263{bottom:156.761247pt;}
.ya3_c00263{bottom:157.814397pt;}
.ya4_c00263{bottom:158.902865pt;}
.ya5_c00263{bottom:159.572475pt;}
.ya6_c00263{bottom:161.021811pt;}
.ya7_c00263{bottom:161.549027pt;}
.y9a_c00263{bottom:169.750612pt;}
.y9b_c00263{bottom:170.444083pt;}
.y9c_c00263{bottom:171.661404pt;}
.y9d_c00263{bottom:173.066965pt;}
.y9e_c00263{bottom:175.091565pt;}
.y9f_c00263{bottom:176.901032pt;}
.y93_c00263{bottom:185.348848pt;}
.y94_c00263{bottom:186.580841pt;}
.y95_c00263{bottom:188.820839pt;}
.y96_c00263{bottom:189.415600pt;}
.y97_c00263{bottom:190.196200pt;}
.y98_c00263{bottom:190.784612pt;}
.y99_c00263{bottom:192.366943pt;}
.y8c_c00263{bottom:200.943277pt;}
.y8d_c00263{bottom:201.206696pt;}
.y8e_c00263{bottom:202.875089pt;}
.y8f_c00263{bottom:203.891151pt;}
.y90_c00263{bottom:204.347827pt;}
.y91_c00263{bottom:205.802688pt;}
.y92_c00263{bottom:206.997920pt;}
.y84_c00263{bottom:215.822177pt;}
.y85_c00263{bottom:217.130236pt;}
.y86_c00263{bottom:217.841269pt;}
.y87_c00263{bottom:219.591109pt;}
.y88_c00263{bottom:219.934356pt;}
.y89_c00263{bottom:221.475176pt;}
.y8a_c00263{bottom:221.756751pt;}
.y8b_c00263{bottom:222.499207pt;}
.y7e_c00263{bottom:230.463005pt;}
.y7f_c00263{bottom:232.158884pt;}
.y80_c00263{bottom:232.785257pt;}
.y81_c00263{bottom:235.076409pt;}
.y82_c00263{bottom:236.659945pt;}
.y83_c00263{bottom:237.017248pt;}
.y78_c00263{bottom:245.340500pt;}
.y79_c00263{bottom:246.575064pt;}
.y7a_c00263{bottom:248.363485pt;}
.y7b_c00263{bottom:250.380215pt;}
.y7c_c00263{bottom:252.196641pt;}
.y7d_c00263{bottom:252.603113pt;}
.y71_c00263{bottom:260.458692pt;}
.y72_c00263{bottom:261.302867pt;}
.y73_c00263{bottom:261.903021pt;}
.y74_c00263{bottom:266.769761pt;}
.y75_c00263{bottom:267.519689pt;}
.y76_c00263{bottom:268.645327pt;}
.y77_c00263{bottom:269.108297pt;}
.y69_c00263{bottom:275.575289pt;}
.y6a_c00263{bottom:276.463788pt;}
.y6b_c00263{bottom:276.980683pt;}
.y6c_c00263{bottom:278.760133pt;}
.y6d_c00263{bottom:279.450323pt;}
.y6e_c00263{bottom:281.531611pt;}
.y6f_c00263{bottom:283.520785pt;}
.y70_c00263{bottom:283.950900pt;}
.y64_c00263{bottom:290.935175pt;}
.y65_c00263{bottom:293.729241pt;}
.y66_c00263{bottom:296.279669pt;}
.y67_c00263{bottom:298.508640pt;}
.y68_c00263{bottom:299.111285pt;}
.y5e_c00263{bottom:306.771561pt;}
.y5f_c00263{bottom:308.618164pt;}
.y60_c00263{bottom:309.365851pt;}
.y61_c00263{bottom:311.525385pt;}
.y62_c00263{bottom:314.275475pt;}
.y63_c00263{bottom:316.162828pt;}
.y57_c00263{bottom:322.364944pt;}
.y58_c00263{bottom:323.664907pt;}
.y59_c00263{bottom:326.553789pt;}
.y5a_c00263{bottom:327.668492pt;}
.y5b_c00263{bottom:328.256383pt;}
.y5c_c00263{bottom:329.371619pt;}
.y5d_c00263{bottom:330.504779pt;}
.y4e_c00263{bottom:337.718323pt;}
.y4f_c00263{bottom:338.446211pt;}
.y50_c00263{bottom:340.006328pt;}
.y51_c00263{bottom:340.392596pt;}
.y52_c00263{bottom:341.453781pt;}
.y53_c00263{bottom:341.956821pt;}
.y54_c00263{bottom:342.777581pt;}
.y55_c00263{bottom:344.149285pt;}
.y56_c00263{bottom:345.095672pt;}
.y45_c00263{bottom:352.841337pt;}
.y46_c00263{bottom:353.844328pt;}
.y47_c00263{bottom:354.777232pt;}
.y48_c00263{bottom:356.423335pt;}
.y49_c00263{bottom:357.362479pt;}
.y4a_c00263{bottom:358.875980pt;}
.y4b_c00263{bottom:359.586832pt;}
.y4c_c00263{bottom:361.504219pt;}
.y4d_c00263{bottom:361.925599pt;}
.y3c_c00263{bottom:368.434605pt;}
.y3d_c00263{bottom:369.829513pt;}
.y3e_c00263{bottom:370.404888pt;}
.y3f_c00263{bottom:372.076655pt;}
.y40_c00263{bottom:372.537179pt;}
.y41_c00263{bottom:373.170860pt;}
.y42_c00263{bottom:373.760157pt;}
.y43_c00263{bottom:375.300217pt;}
.y44_c00263{bottom:375.866311pt;}
.y35_c00263{bottom:383.311541pt;}
.y36_c00263{bottom:384.263837pt;}
.y37_c00263{bottom:386.168963pt;}
.y38_c00263{bottom:387.053836pt;}
.y39_c00263{bottom:388.342287pt;}
.y3a_c00263{bottom:391.140499pt;}
.y3b_c00263{bottom:392.049481pt;}
.y2f_c00263{bottom:398.195033pt;}
.y30_c00263{bottom:400.533943pt;}
.y31_c00263{bottom:401.486393pt;}
.y32_c00263{bottom:402.487755pt;}
.y33_c00263{bottom:405.729084pt;}
.y34_c00263{bottom:407.016601pt;}
.y27_c00263{bottom:413.312157pt;}
.y28_c00263{bottom:413.705128pt;}
.y29_c00263{bottom:415.131991pt;}
.y2a_c00263{bottom:416.142469pt;}
.y2b_c00263{bottom:418.607119pt;}
.y2c_c00263{bottom:419.353751pt;}
.y2d_c00263{bottom:420.549088pt;}
.y2e_c00263{bottom:422.195637pt;}
.y20_c00263{bottom:428.907059pt;}
.y21_c00263{bottom:429.653305pt;}
.y22_c00263{bottom:430.480679pt;}
.y23_c00263{bottom:432.674509pt;}
.y24_c00263{bottom:434.728009pt;}
.y25_c00263{bottom:435.315684pt;}
.y26_c00263{bottom:436.980459pt;}
.y18_c00263{bottom:444.025444pt;}
.y19_c00263{bottom:446.167312pt;}
.y1a_c00263{bottom:447.117309pt;}
.y1b_c00263{bottom:449.787671pt;}
.y1c_c00263{bottom:450.226508pt;}
.y1d_c00263{bottom:450.845137pt;}
.y1e_c00263{bottom:452.341709pt;}
.y1f_c00263{bottom:452.801615pt;}
.y11_c00263{bottom:459.377765pt;}
.y12_c00263{bottom:460.331363pt;}
.y13_c00263{bottom:462.528865pt;}
.y14_c00263{bottom:463.409765pt;}
.y15_c00263{bottom:466.444752pt;}
.y16_c00263{bottom:468.334877pt;}
.y17_c00263{bottom:469.120785pt;}
.ya_c00263{bottom:474.733457pt;}
.yb_c00263{bottom:475.648201pt;}
.yc_c00263{bottom:477.439233pt;}
.yd_c00263{bottom:480.124209pt;}
.ye_c00263{bottom:480.931429pt;}
.yf_c00263{bottom:482.645180pt;}
.y10_c00263{bottom:484.518775pt;}
.y2_c00263{bottom:489.620000pt;}
.y3_c00263{bottom:491.398027pt;}
.y4_c00263{bottom:491.952853pt;}
.y5_c00263{bottom:493.355253pt;}
.y6_c00263{bottom:494.097707pt;}
.y7_c00263{bottom:494.847040pt;}
.y8_c00263{bottom:497.546347pt;}
.y9_c00263{bottom:499.586827pt;}
.y1_c00263{bottom:509.634667pt;}
.he_c00263{height:49.456797pt;}
.h8_c00263{height:52.256238pt;}
.ha_c00263{height:53.189386pt;}
.hb_c00263{height:54.122533pt;}
.h4_c00263{height:55.055680pt;}
.h5_c00263{height:55.988827pt;}
.hc_c00263{height:56.921974pt;}
.h10_c00263{height:57.855121pt;}
.h9_c00263{height:58.788268pt;}
.hd_c00263{height:59.721415pt;}
.h7_c00263{height:60.654562pt;}
.h6_c00263{height:61.587710pt;}
.h3_c00263{height:62.520857pt;}
.h11_c00263{height:63.454004pt;}
.h2_c00263{height:63.466667pt;}
.hf_c00263{height:67.186592pt;}
.h1_c00263{height:550.000000pt;}
.h0_c00263{height:550.266667pt;}
.w0_c00263{width:319.200000pt;}
.w1_c00263{width:319.333333pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:34.828000pt;}
.x16_c00263{left:35.749064pt;}
.x41_c00263{left:36.898117pt;}
.x4c_c00263{left:37.871941pt;}
.x6a_c00263{left:39.589840pt;}
.x23_c00263{left:46.292700pt;}
.x71_c00263{left:49.943189pt;}
.x1d_c00263{left:55.853600pt;}
.xa_c00263{left:58.766821pt;}
.x10_c00263{left:60.442080pt;}
.x5a_c00263{left:62.283307pt;}
.x2e_c00263{left:63.762659pt;}
.x5d_c00263{left:64.952937pt;}
.x63_c00263{left:69.189667pt;}
.x4f_c00263{left:73.608995pt;}
.x42_c00263{left:75.095731pt;}
.x4d_c00263{left:76.842909pt;}
.x1e_c00263{left:78.183251pt;}
.x3_c00263{left:79.234216pt;}
.x59_c00263{left:81.751951pt;}
.x24_c00263{left:82.828236pt;}
.x44_c00263{left:86.582080pt;}
.x53_c00263{left:88.915075pt;}
.x17_c00263{left:90.608339pt;}
.x4_c00263{left:93.091012pt;}
.x31_c00263{left:95.751137pt;}
.x29_c00263{left:98.890048pt;}
.x55_c00263{left:102.817700pt;}
.xb_c00263{left:104.630727pt;}
.x3b_c00263{left:105.573471pt;}
.x45_c00263{left:106.754956pt;}
.x25_c00263{left:108.698021pt;}
.x47_c00263{left:110.173392pt;}
.x69_c00263{left:111.334379pt;}
.x18_c00263{left:114.934283pt;}
.x3c_c00263{left:117.253036pt;}
.x11_c00263{left:118.223552pt;}
.x4b_c00263{left:123.132187pt;}
.x2a_c00263{left:124.610065pt;}
.x50_c00263{left:126.138345pt;}
.x5_c00263{left:128.115952pt;}
.x72_c00263{left:132.384372pt;}
.x67_c00263{left:134.559409pt;}
.x35_c00263{left:135.573232pt;}
.x1f_c00263{left:137.405736pt;}
.x12_c00263{left:141.390231pt;}
.x2f_c00263{left:143.405565pt;}
.x6c_c00263{left:145.623708pt;}
.x6_c00263{left:146.658724pt;}
.x3d_c00263{left:149.387225pt;}
.x2b_c00263{left:151.651587pt;}
.x1_c00263{left:153.360000pt;}
.x5b_c00263{left:155.845269pt;}
.x56_c00263{left:159.181567pt;}
.x32_c00263{left:160.267268pt;}
.x36_c00263{left:161.627316pt;}
.x7_c00263{left:165.373324pt;}
.x57_c00263{left:170.253155pt;}
.x26_c00263{left:171.818680pt;}
.xc_c00263{left:173.420644pt;}
.x73_c00263{left:174.998049pt;}
.x48_c00263{left:177.235655pt;}
.x30_c00263{left:180.182785pt;}
.x61_c00263{left:182.044844pt;}
.x19_c00263{left:183.325879pt;}
.x51_c00263{left:185.402609pt;}
.x3e_c00263{left:189.446337pt;}
.x27_c00263{left:190.932295pt;}
.x20_c00263{left:192.856903pt;}
.xd_c00263{left:194.080764pt;}
.x5e_c00263{left:195.439865pt;}
.x33_c00263{left:197.275247pt;}
.x37_c00263{left:203.625336pt;}
.x6d_c00263{left:205.791281pt;}
.x21_c00263{left:208.733599pt;}
.x1a_c00263{left:210.402509pt;}
.x62_c00263{left:216.585320pt;}
.x5f_c00263{left:217.727804pt;}
.x58_c00263{left:219.897345pt;}
.x13_c00263{left:221.187427pt;}
.x38_c00263{left:223.344747pt;}
.x54_c00263{left:225.186225pt;}
.x4e_c00263{left:228.481324pt;}
.x64_c00263{left:229.550396pt;}
.x3f_c00263{left:230.968412pt;}
.x8_c00263{left:232.788508pt;}
.x6b_c00263{left:234.222807pt;}
.x49_c00263{left:235.836360pt;}
.xe_c00263{left:237.981248pt;}
.x2c_c00263{left:239.167833pt;}
.x43_c00263{left:242.744168pt;}
.x34_c00263{left:243.901653pt;}
.x68_c00263{left:245.472452pt;}
.x65_c00263{left:247.382897pt;}
.x1b_c00263{left:248.745676pt;}
.x52_c00263{left:250.715593pt;}
.x4a_c00263{left:251.687108pt;}
.x22_c00263{left:253.676669pt;}
.x6f_c00263{left:256.050607pt;}
.x40_c00263{left:259.602424pt;}
.x1c_c00263{left:260.531692pt;}
.x28_c00263{left:263.741016pt;}
.x60_c00263{left:265.986823pt;}
.x14_c00263{left:270.858989pt;}
.x2d_c00263{left:273.922541pt;}
.x39_c00263{left:276.562684pt;}
.x9_c00263{left:283.749496pt;}
.xf_c00263{left:285.973796pt;}
.x3a_c00263{left:288.252851pt;}
.x46_c00263{left:290.270639pt;}
.x15_c00263{left:291.519963pt;}
.x5c_c00263{left:292.584725pt;}
.x70_c00263{left:295.712721pt;}
.x66_c00263{left:300.954940pt;}
.x6e_c00263{left:302.488377pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00264 {
    display:none;
  }
  .loading-indicator_c00264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00264 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00264 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00264" -> "#page-container .classname_c00264")
 */
.pf_c00264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00264 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00264 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00264 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00264 {overflow:visible;}
  }
}
.c_c00264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00264 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00264:after { /* webkit #35443 */
  content: '';
}
.t_c00264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00264 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00264 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00264 { /* info for Javascript */
  display:none;
}
.l_c00264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00264:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00264 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00264.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00264{transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.031430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031430,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);}
.mc5_c00264{transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.131715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131715,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.148340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148340,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);}
.mce_c00264{transform:matrix(0.150360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m7d_c00264{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mca_c00264{transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);}
.mc7_c00264{transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m78_c00264{transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);}
.mbd_c00264{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m67_c00264{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);}
.mbb_c00264{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.mdb_c00264{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m81_c00264{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mc9_c00264{transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.mec_c00264{transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177265,0.000000,0.000000,0.250000,0,0);}
.m90_c00264{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m93_c00264{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);}
.m8e_c00264{transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);}
.ma3_c00264{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m75_c00264{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m95_c00264{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.me5_c00264{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);}
.m7f_c00264{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);}
.m88_c00264{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00264{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.me3_c00264{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m9b_c00264{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.mb7_c00264{transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m7e_c00264{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.md4_c00264{transform:matrix(0.185835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185835,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186020,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.mcd_c00264{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.me0_c00264{transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00264{transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);}
.mcf_c00264{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);}
.mb8_c00264{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.mbf_c00264{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190835,0.000000,0.000000,0.250000,0,0);}
.me4_c00264{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);}
.ma6_c00264{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);}
.m83_c00264{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.m8c_c00264{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mdf_c00264{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.ma4_c00264{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.md9_c00264{transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.md1_c00264{transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.maa_c00264{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);}
.m2b_c00264{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.m9c_c00264{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);}
.ma5_c00264{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200070,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200540,0.000000,0.000000,0.250000,0,0);}
.me9_c00264{transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m91_c00264{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.202565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202565,0.000000,0.000000,0.250000,0,0);}
.m5d_c00264{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00264{transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);}
.mb0_c00264{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m8a_c00264{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);}
.m87_c00264{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m80_c00264{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);}
.md3_c00264{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);}
.mcc_c00264{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.md7_c00264{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.mb2_c00264{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m84_c00264{transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);}
.m92_c00264{transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.me1_c00264{transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);}
.mb1_c00264{transform:matrix(0.210915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210915,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.ma2_c00264{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.mac_c00264{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m7c_c00264{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);}
.m9e_c00264{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.mb6_c00264{transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);}
.mdc_c00264{transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);}
.md0_c00264{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m8b_c00264{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.mc0_c00264{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m9a_c00264{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m9f_c00264{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.mcb_c00264{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);}
.me7_c00264{transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220770,0.000000,0.000000,0.250000,0,0);}
.ma9_c00264{transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);}
.me6_c00264{transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m94_c00264{transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);}
.med_c00264{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m57_c00264{transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);}
.mbe_c00264{transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.md8_c00264{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.mc4_c00264{transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);}
.mee_c00264{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m6d_c00264{transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);}
.ma7_c00264{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.235115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235115,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);}
.maf_c00264{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.mea_c00264{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.ma1_c00264{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.mae_c00264{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);}
.meb_c00264{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.mde_c00264{transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);}
.mc8_c00264{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.ma8_c00264{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.mdd_c00264{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.md5_c00264{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.me8_c00264{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);}
.md6_c00264{transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.257525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257525,0.000000,0.000000,0.250000,0,0);}
.me2_c00264{transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);}
.mab_c00264{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.260475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260475,0.000000,0.000000,0.250000,0,0);}
.mba_c00264{transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);}
.mad_c00264{transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);}
.m8f_c00264{transform:matrix(0.324075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);}
.mb9_c00264{transform:matrix(0.393535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00264{transform:matrix(0.394335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394335,0.000000,0.000000,0.250000,0,0);}
.mc2_c00264{transform:matrix(0.422850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422850,0.000000,0.000000,0.250000,0,0);}
.mc3_c00264{transform:matrix(0.446150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446150,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);}
.mb3_c00264{transform:matrix(0.517760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517760,0.000000,0.000000,0.250000,0,0);}
.mc6_c00264{transform:matrix(0.520120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520120,0.000000,0.000000,0.250000,0,0);}
.mb4_c00264{transform:matrix(0.560150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560150,0.000000,0.000000,0.250000,0,0);}
.mda_c00264{transform:matrix(0.580655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580655,0.000000,0.000000,0.250000,0,0);}
.mc1_c00264{transform:matrix(0.730340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730340,0.000000,0.000000,0.250000,0,0);}
.md2_c00264{transform:matrix(0.850285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850285,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:0.000000px;}
.fc0_c00264{color:transparent;}
.fs8_c00264{font-size:55.650000px;}
.fs6_c00264{font-size:57.750000px;}
.fs4_c00264{font-size:58.800000px;}
.fs3_c00264{font-size:59.850000px;}
.fs2_c00264{font-size:60.900000px;}
.fs0_c00264{font-size:61.950000px;}
.fs7_c00264{font-size:64.050000px;}
.fs1_c00264{font-size:65.100000px;}
.fs9_c00264{font-size:67.200000px;}
.fs5_c00264{font-size:70.350000px;}
.fsa_c00264{font-size:112.350000px;}
.fsb_c00264{font-size:119.700000px;}
.y0_c00264{bottom:0.000000px;}
.y5a_c00264{bottom:30.390000px;}
.y59_c00264{bottom:49.828500px;}
.y58_c00264{bottom:66.765000px;}
.y57_c00264{bottom:67.335000px;}
.y56_c00264{bottom:67.842000px;}
.y55_c00264{bottom:68.008500px;}
.y54_c00264{bottom:68.778000px;}
.y53_c00264{bottom:68.976000px;}
.y52_c00264{bottom:69.394500px;}
.y51_c00264{bottom:69.658500px;}
.y50_c00264{bottom:84.903000px;}
.y49_c00264{bottom:96.663000px;}
.y4a_c00264{bottom:97.761000px;}
.y4b_c00264{bottom:97.953000px;}
.y4c_c00264{bottom:98.911500px;}
.y4d_c00264{bottom:99.333000px;}
.y4e_c00264{bottom:99.814500px;}
.y4f_c00264{bottom:100.707000px;}
.y48_c00264{bottom:109.038000px;}
.y47_c00264{bottom:124.546500px;}
.y46_c00264{bottom:153.208500px;}
.y40_c00264{bottom:166.588500px;}
.y41_c00264{bottom:167.178000px;}
.y42_c00264{bottom:167.790000px;}
.y43_c00264{bottom:167.971500px;}
.y44_c00264{bottom:168.927000px;}
.y45_c00264{bottom:169.576500px;}
.y3f_c00264{bottom:186.688500px;}
.y3e_c00264{bottom:203.848500px;}
.y3d_c00264{bottom:220.251000px;}
.y3c_c00264{bottom:238.621500px;}
.y3b_c00264{bottom:255.930000px;}
.y3a_c00264{bottom:274.590000px;}
.y39_c00264{bottom:292.945500px;}
.y38_c00264{bottom:309.232500px;}
.y37_c00264{bottom:326.065500px;}
.y36_c00264{bottom:342.586500px;}
.y2c_c00264{bottom:356.938500px;}
.y2d_c00264{bottom:357.175500px;}
.y2e_c00264{bottom:357.693000px;}
.y2f_c00264{bottom:357.916500px;}
.y30_c00264{bottom:358.701000px;}
.y31_c00264{bottom:358.909500px;}
.y32_c00264{bottom:359.149500px;}
.y33_c00264{bottom:359.541000px;}
.y34_c00264{bottom:359.764500px;}
.y35_c00264{bottom:359.958000px;}
.y23_c00264{bottom:373.140000px;}
.y24_c00264{bottom:373.509000px;}
.y25_c00264{bottom:374.547000px;}
.y26_c00264{bottom:374.715000px;}
.y27_c00264{bottom:374.928000px;}
.y28_c00264{bottom:375.286500px;}
.y29_c00264{bottom:375.739500px;}
.y2a_c00264{bottom:376.381500px;}
.y2b_c00264{bottom:376.735500px;}
.y1c_c00264{bottom:390.148500px;}
.y1d_c00264{bottom:390.516000px;}
.y1e_c00264{bottom:390.837000px;}
.y1f_c00264{bottom:391.323000px;}
.y20_c00264{bottom:391.864500px;}
.y21_c00264{bottom:392.116500px;}
.y22_c00264{bottom:392.637000px;}
.y1b_c00264{bottom:410.367000px;}
.y1a_c00264{bottom:426.655500px;}
.y19_c00264{bottom:443.136000px;}
.y18_c00264{bottom:461.937000px;}
.y17_c00264{bottom:478.465500px;}
.y16_c00264{bottom:494.752500px;}
.y15_c00264{bottom:513.174000px;}
.yc_c00264{bottom:526.770000px;}
.yd_c00264{bottom:526.977000px;}
.ye_c00264{bottom:527.280000px;}
.yf_c00264{bottom:527.932500px;}
.y10_c00264{bottom:528.264000px;}
.y11_c00264{bottom:528.876000px;}
.y12_c00264{bottom:529.269000px;}
.y13_c00264{bottom:530.685000px;}
.y14_c00264{bottom:530.944500px;}
.y3_c00264{bottom:545.401500px;}
.y4_c00264{bottom:545.626500px;}
.y5_c00264{bottom:546.333000px;}
.y6_c00264{bottom:547.173000px;}
.y7_c00264{bottom:547.341000px;}
.y8_c00264{bottom:547.650000px;}
.y9_c00264{bottom:547.816500px;}
.ya_c00264{bottom:548.146500px;}
.yb_c00264{bottom:548.371500px;}
.y2_c00264{bottom:563.997000px;}
.y1_c00264{bottom:580.590000px;}
.ha_c00264{height:55.650000px;}
.h8_c00264{height:57.750000px;}
.h6_c00264{height:58.800000px;}
.h5_c00264{height:59.850000px;}
.h4_c00264{height:60.900000px;}
.h2_c00264{height:61.950000px;}
.h9_c00264{height:64.050000px;}
.h3_c00264{height:65.100000px;}
.hb_c00264{height:67.200000px;}
.h7_c00264{height:70.350000px;}
.hc_c00264{height:112.350000px;}
.hd_c00264{height:119.700000px;}
.h1_c00264{height:618.750000px;}
.h0_c00264{height:619.050000px;}
.w0_c00264{width:359.100000px;}
.w1_c00264{width:359.250000px;}
.x0_c00264{left:0.000000px;}
.x51_c00264{left:11.880000px;}
.x45_c00264{left:18.222000px;}
.x4_c00264{left:19.710000px;}
.x1_c00264{left:22.140000px;}
.x66_c00264{left:23.220000px;}
.x31_c00264{left:25.920000px;}
.x79_c00264{left:27.537000px;}
.x5f_c00264{left:28.620000px;}
.x12_c00264{left:33.978000px;}
.x7b_c00264{left:36.723000px;}
.xa_c00264{left:40.374000px;}
.x60_c00264{left:41.580000px;}
.x52_c00264{left:43.200000px;}
.x20_c00264{left:47.250000px;}
.x5a_c00264{left:51.570000px;}
.x13_c00264{left:54.147000px;}
.x49_c00264{left:57.240000px;}
.x3e_c00264{left:60.295500px;}
.x2d_c00264{left:62.910000px;}
.x4d_c00264{left:64.800000px;}
.x21_c00264{left:67.230000px;}
.x32_c00264{left:69.120000px;}
.x1a_c00264{left:70.740000px;}
.x57_c00264{left:73.440000px;}
.x67_c00264{left:75.330000px;}
.x6a_c00264{left:76.680000px;}
.x6d_c00264{left:79.780500px;}
.x5_c00264{left:82.350000px;}
.x37_c00264{left:86.940000px;}
.x26_c00264{left:89.100000px;}
.x22_c00264{left:90.990000px;}
.x55_c00264{left:93.150000px;}
.x33_c00264{left:94.770000px;}
.x14_c00264{left:97.647000px;}
.x58_c00264{left:98.820000px;}
.x6e_c00264{left:100.711500px;}
.xb_c00264{left:104.623500px;}
.x46_c00264{left:107.049000px;}
.x2e_c00264{left:108.540000px;}
.x27_c00264{left:109.890000px;}
.x71_c00264{left:110.971500px;}
.x56_c00264{left:112.860000px;}
.x7c_c00264{left:115.833000px;}
.x4a_c00264{left:117.990000px;}
.x15_c00264{left:119.730000px;}
.x4e_c00264{left:124.200000px;}
.x38_c00264{left:127.440000px;}
.x28_c00264{left:128.790000px;}
.x53_c00264{left:131.220000px;}
.x5b_c00264{left:133.380000px;}
.x1b_c00264{left:134.730000px;}
.x61_c00264{left:136.890000px;}
.x41_c00264{left:140.281500px;}
.x75_c00264{left:141.753000px;}
.x34_c00264{left:143.910000px;}
.x3c_c00264{left:144.990000px;}
.x6_c00264{left:147.150000px;}
.x59_c00264{left:148.770000px;}
.x1c_c00264{left:150.660000px;}
.x2f_c00264{left:152.010000px;}
.x64_c00264{left:153.630000px;}
.x2_c00264{left:156.870000px;}
.x16_c00264{left:160.563000px;}
.x76_c00264{left:161.733000px;}
.x23_c00264{left:168.750000px;}
.x39_c00264{left:170.100000px;}
.x4f_c00264{left:171.180000px;}
.x6f_c00264{left:176.041500px;}
.x7a_c00264{left:177.559500px;}
.x29_c00264{left:178.740000px;}
.x5c_c00264{left:179.820000px;}
.xc_c00264{left:181.036500px;}
.x3f_c00264{left:182.923500px;}
.x42_c00264{left:184.231500px;}
.x17_c00264{left:186.763500px;}
.x7_c00264{left:189.270000px;}
.x35_c00264{left:192.240000px;}
.x72_c00264{left:193.591500px;}
.xd_c00264{left:196.368000px;}
.x6b_c00264{left:198.450000px;}
.x5d_c00264{left:203.580000px;}
.x68_c00264{left:204.930000px;}
.x1d_c00264{left:206.010000px;}
.x2a_c00264{left:208.980000px;}
.x4b_c00264{left:214.110000px;}
.x24_c00264{left:217.890000px;}
.x43_c00264{left:219.118500px;}
.x3a_c00264{left:221.670000px;}
.x77_c00264{left:222.753000px;}
.xe_c00264{left:224.494500px;}
.x8_c00264{left:225.990000px;}
.x62_c00264{left:227.880000px;}
.x2b_c00264{left:232.740000px;}
.x73_c00264{left:233.821500px;}
.x25_c00264{left:236.790000px;}
.xf_c00264{left:239.592000px;}
.x54_c00264{left:241.110000px;}
.x70_c00264{left:244.621500px;}
.x78_c00264{left:246.783000px;}
.x7d_c00264{left:248.133000px;}
.x63_c00264{left:251.370000px;}
.x40_c00264{left:253.084500px;}
.x3d_c00264{left:255.420000px;}
.x65_c00264{left:258.120000px;}
.x30_c00264{left:260.820000px;}
.x36_c00264{left:263.520000px;}
.x5e_c00264{left:265.410000px;}
.x44_c00264{left:268.534500px;}
.x10_c00264{left:269.599500px;}
.x1e_c00264{left:273.510000px;}
.x47_c00264{left:274.990500px;}
.x2c_c00264{left:278.910000px;}
.x18_c00264{left:281.181000px;}
.x74_c00264{left:282.961500px;}
.x50_c00264{left:284.580000px;}
.x69_c00264{left:287.010000px;}
.x11_c00264{left:290.119500px;}
.x48_c00264{left:292.533000px;}
.x3b_c00264{left:295.920000px;}
.x6c_c00264{left:297.270000px;}
.x19_c00264{left:298.473000px;}
.x1f_c00264{left:301.050000px;}
.x4c_c00264{left:305.370000px;}
.x3_c00264{left:309.420000px;}
.x9_c00264{left:311.310000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
.fs8_c00264{font-size:49.466667pt;}
.fs6_c00264{font-size:51.333333pt;}
.fs4_c00264{font-size:52.266667pt;}
.fs3_c00264{font-size:53.200000pt;}
.fs2_c00264{font-size:54.133333pt;}
.fs0_c00264{font-size:55.066667pt;}
.fs7_c00264{font-size:56.933333pt;}
.fs1_c00264{font-size:57.866667pt;}
.fs9_c00264{font-size:59.733333pt;}
.fs5_c00264{font-size:62.533333pt;}
.fsa_c00264{font-size:99.866667pt;}
.fsb_c00264{font-size:106.400000pt;}
.y0_c00264{bottom:0.000000pt;}
.y5a_c00264{bottom:27.013333pt;}
.y59_c00264{bottom:44.292000pt;}
.y58_c00264{bottom:59.346667pt;}
.y57_c00264{bottom:59.853333pt;}
.y56_c00264{bottom:60.304000pt;}
.y55_c00264{bottom:60.452000pt;}
.y54_c00264{bottom:61.136000pt;}
.y53_c00264{bottom:61.312000pt;}
.y52_c00264{bottom:61.684000pt;}
.y51_c00264{bottom:61.918667pt;}
.y50_c00264{bottom:75.469333pt;}
.y49_c00264{bottom:85.922667pt;}
.y4a_c00264{bottom:86.898667pt;}
.y4b_c00264{bottom:87.069333pt;}
.y4c_c00264{bottom:87.921333pt;}
.y4d_c00264{bottom:88.296000pt;}
.y4e_c00264{bottom:88.724000pt;}
.y4f_c00264{bottom:89.517333pt;}
.y48_c00264{bottom:96.922667pt;}
.y47_c00264{bottom:110.708000pt;}
.y46_c00264{bottom:136.185333pt;}
.y40_c00264{bottom:148.078667pt;}
.y41_c00264{bottom:148.602667pt;}
.y42_c00264{bottom:149.146667pt;}
.y43_c00264{bottom:149.308000pt;}
.y44_c00264{bottom:150.157333pt;}
.y45_c00264{bottom:150.734667pt;}
.y3f_c00264{bottom:165.945333pt;}
.y3e_c00264{bottom:181.198667pt;}
.y3d_c00264{bottom:195.778667pt;}
.y3c_c00264{bottom:212.108000pt;}
.y3b_c00264{bottom:227.493333pt;}
.y3a_c00264{bottom:244.080000pt;}
.y39_c00264{bottom:260.396000pt;}
.y38_c00264{bottom:274.873333pt;}
.y37_c00264{bottom:289.836000pt;}
.y36_c00264{bottom:304.521333pt;}
.y2c_c00264{bottom:317.278667pt;}
.y2d_c00264{bottom:317.489333pt;}
.y2e_c00264{bottom:317.949333pt;}
.y2f_c00264{bottom:318.148000pt;}
.y30_c00264{bottom:318.845333pt;}
.y31_c00264{bottom:319.030667pt;}
.y32_c00264{bottom:319.244000pt;}
.y33_c00264{bottom:319.592000pt;}
.y34_c00264{bottom:319.790667pt;}
.y35_c00264{bottom:319.962667pt;}
.y23_c00264{bottom:331.680000pt;}
.y24_c00264{bottom:332.008000pt;}
.y25_c00264{bottom:332.930667pt;}
.y26_c00264{bottom:333.080000pt;}
.y27_c00264{bottom:333.269333pt;}
.y28_c00264{bottom:333.588000pt;}
.y29_c00264{bottom:333.990667pt;}
.y2a_c00264{bottom:334.561333pt;}
.y2b_c00264{bottom:334.876000pt;}
.y1c_c00264{bottom:346.798667pt;}
.y1d_c00264{bottom:347.125333pt;}
.y1e_c00264{bottom:347.410667pt;}
.y1f_c00264{bottom:347.842667pt;}
.y20_c00264{bottom:348.324000pt;}
.y21_c00264{bottom:348.548000pt;}
.y22_c00264{bottom:349.010667pt;}
.y1b_c00264{bottom:364.770667pt;}
.y1a_c00264{bottom:379.249333pt;}
.y19_c00264{bottom:393.898667pt;}
.y18_c00264{bottom:410.610667pt;}
.y17_c00264{bottom:425.302667pt;}
.y16_c00264{bottom:439.780000pt;}
.y15_c00264{bottom:456.154667pt;}
.yc_c00264{bottom:468.240000pt;}
.yd_c00264{bottom:468.424000pt;}
.ye_c00264{bottom:468.693333pt;}
.yf_c00264{bottom:469.273333pt;}
.y10_c00264{bottom:469.568000pt;}
.y11_c00264{bottom:470.112000pt;}
.y12_c00264{bottom:470.461333pt;}
.y13_c00264{bottom:471.720000pt;}
.y14_c00264{bottom:471.950667pt;}
.y3_c00264{bottom:484.801333pt;}
.y4_c00264{bottom:485.001333pt;}
.y5_c00264{bottom:485.629333pt;}
.y6_c00264{bottom:486.376000pt;}
.y7_c00264{bottom:486.525333pt;}
.y8_c00264{bottom:486.800000pt;}
.y9_c00264{bottom:486.948000pt;}
.ya_c00264{bottom:487.241333pt;}
.yb_c00264{bottom:487.441333pt;}
.y2_c00264{bottom:501.330667pt;}
.y1_c00264{bottom:516.080000pt;}
.ha_c00264{height:49.466667pt;}
.h8_c00264{height:51.333333pt;}
.h6_c00264{height:52.266667pt;}
.h5_c00264{height:53.200000pt;}
.h4_c00264{height:54.133333pt;}
.h2_c00264{height:55.066667pt;}
.h9_c00264{height:56.933333pt;}
.h3_c00264{height:57.866667pt;}
.hb_c00264{height:59.733333pt;}
.h7_c00264{height:62.533333pt;}
.hc_c00264{height:99.866667pt;}
.hd_c00264{height:106.400000pt;}
.h1_c00264{height:550.000000pt;}
.h0_c00264{height:550.266667pt;}
.w0_c00264{width:319.200000pt;}
.w1_c00264{width:319.333333pt;}
.x0_c00264{left:0.000000pt;}
.x51_c00264{left:10.560000pt;}
.x45_c00264{left:16.197333pt;}
.x4_c00264{left:17.520000pt;}
.x1_c00264{left:19.680000pt;}
.x66_c00264{left:20.640000pt;}
.x31_c00264{left:23.040000pt;}
.x79_c00264{left:24.477333pt;}
.x5f_c00264{left:25.440000pt;}
.x12_c00264{left:30.202667pt;}
.x7b_c00264{left:32.642667pt;}
.xa_c00264{left:35.888000pt;}
.x60_c00264{left:36.960000pt;}
.x52_c00264{left:38.400000pt;}
.x20_c00264{left:42.000000pt;}
.x5a_c00264{left:45.840000pt;}
.x13_c00264{left:48.130667pt;}
.x49_c00264{left:50.880000pt;}
.x3e_c00264{left:53.596000pt;}
.x2d_c00264{left:55.920000pt;}
.x4d_c00264{left:57.600000pt;}
.x21_c00264{left:59.760000pt;}
.x32_c00264{left:61.440000pt;}
.x1a_c00264{left:62.880000pt;}
.x57_c00264{left:65.280000pt;}
.x67_c00264{left:66.960000pt;}
.x6a_c00264{left:68.160000pt;}
.x6d_c00264{left:70.916000pt;}
.x5_c00264{left:73.200000pt;}
.x37_c00264{left:77.280000pt;}
.x26_c00264{left:79.200000pt;}
.x22_c00264{left:80.880000pt;}
.x55_c00264{left:82.800000pt;}
.x33_c00264{left:84.240000pt;}
.x14_c00264{left:86.797333pt;}
.x58_c00264{left:87.840000pt;}
.x6e_c00264{left:89.521333pt;}
.xb_c00264{left:92.998667pt;}
.x46_c00264{left:95.154667pt;}
.x2e_c00264{left:96.480000pt;}
.x27_c00264{left:97.680000pt;}
.x71_c00264{left:98.641333pt;}
.x56_c00264{left:100.320000pt;}
.x7c_c00264{left:102.962667pt;}
.x4a_c00264{left:104.880000pt;}
.x15_c00264{left:106.426667pt;}
.x4e_c00264{left:110.400000pt;}
.x38_c00264{left:113.280000pt;}
.x28_c00264{left:114.480000pt;}
.x53_c00264{left:116.640000pt;}
.x5b_c00264{left:118.560000pt;}
.x1b_c00264{left:119.760000pt;}
.x61_c00264{left:121.680000pt;}
.x41_c00264{left:124.694667pt;}
.x75_c00264{left:126.002667pt;}
.x34_c00264{left:127.920000pt;}
.x3c_c00264{left:128.880000pt;}
.x6_c00264{left:130.800000pt;}
.x59_c00264{left:132.240000pt;}
.x1c_c00264{left:133.920000pt;}
.x2f_c00264{left:135.120000pt;}
.x64_c00264{left:136.560000pt;}
.x2_c00264{left:139.440000pt;}
.x16_c00264{left:142.722667pt;}
.x76_c00264{left:143.762667pt;}
.x23_c00264{left:150.000000pt;}
.x39_c00264{left:151.200000pt;}
.x4f_c00264{left:152.160000pt;}
.x6f_c00264{left:156.481333pt;}
.x7a_c00264{left:157.830667pt;}
.x29_c00264{left:158.880000pt;}
.x5c_c00264{left:159.840000pt;}
.xc_c00264{left:160.921333pt;}
.x3f_c00264{left:162.598667pt;}
.x42_c00264{left:163.761333pt;}
.x17_c00264{left:166.012000pt;}
.x7_c00264{left:168.240000pt;}
.x35_c00264{left:170.880000pt;}
.x72_c00264{left:172.081333pt;}
.xd_c00264{left:174.549333pt;}
.x6b_c00264{left:176.400000pt;}
.x5d_c00264{left:180.960000pt;}
.x68_c00264{left:182.160000pt;}
.x1d_c00264{left:183.120000pt;}
.x2a_c00264{left:185.760000pt;}
.x4b_c00264{left:190.320000pt;}
.x24_c00264{left:193.680000pt;}
.x43_c00264{left:194.772000pt;}
.x3a_c00264{left:197.040000pt;}
.x77_c00264{left:198.002667pt;}
.xe_c00264{left:199.550667pt;}
.x8_c00264{left:200.880000pt;}
.x62_c00264{left:202.560000pt;}
.x2b_c00264{left:206.880000pt;}
.x73_c00264{left:207.841333pt;}
.x25_c00264{left:210.480000pt;}
.xf_c00264{left:212.970667pt;}
.x54_c00264{left:214.320000pt;}
.x70_c00264{left:217.441333pt;}
.x78_c00264{left:219.362667pt;}
.x7d_c00264{left:220.562667pt;}
.x63_c00264{left:223.440000pt;}
.x40_c00264{left:224.964000pt;}
.x3d_c00264{left:227.040000pt;}
.x65_c00264{left:229.440000pt;}
.x30_c00264{left:231.840000pt;}
.x36_c00264{left:234.240000pt;}
.x5e_c00264{left:235.920000pt;}
.x44_c00264{left:238.697333pt;}
.x10_c00264{left:239.644000pt;}
.x1e_c00264{left:243.120000pt;}
.x47_c00264{left:244.436000pt;}
.x2c_c00264{left:247.920000pt;}
.x18_c00264{left:249.938667pt;}
.x74_c00264{left:251.521333pt;}
.x50_c00264{left:252.960000pt;}
.x69_c00264{left:255.120000pt;}
.x11_c00264{left:257.884000pt;}
.x48_c00264{left:260.029333pt;}
.x3b_c00264{left:263.040000pt;}
.x6c_c00264{left:264.240000pt;}
.x19_c00264{left:265.309333pt;}
.x1f_c00264{left:267.600000pt;}
.x4c_c00264{left:271.440000pt;}
.x3_c00264{left:275.040000pt;}
.x9_c00264{left:276.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00265 {
    display:none;
  }
  .loading-indicator_c00265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00265 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00265 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00265" -> "#page-container .classname_c00265")
 */
.pf_c00265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00265 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00265 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00265 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00265 {overflow:visible;}
  }
}
.c_c00265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00265 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00265:after { /* webkit #35443 */
  content: '';
}
.t_c00265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00265 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00265 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00265 { /* info for Javascript */
  display:none;
}
.l_c00265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00265:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00265 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00265.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00265{transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);}
.m51_c00265{transform:matrix(0.092935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092935,0.000000,0.000000,0.250000,0,0);}
.m79_c00265{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.me9_c00265{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.mb6_c00265{transform:matrix(0.142515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142515,0.000000,0.000000,0.250000,0,0);}
.mf0_c00265{transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);}
.mee_c00265{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00265{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.152329,-0.001828,0.003000,0.249982,0,0);-ms-transform:matrix(0.152329,-0.001828,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152329,-0.001828,0.003000,0.249982,0,0);}
.m78_c00265{transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);}
.mec_c00265{transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155570,0.000000,0.000000,0.250000,0,0);}
.mb2_c00265{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m94_c00265{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.158855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158855,0.000000,0.000000,0.250000,0,0);}
.me7_c00265{transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.160645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160645,0.000000,0.000000,0.250000,0,0);}
.me6_c00265{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.mb5_c00265{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.mdd_c00265{transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);}
.m89_c00265{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.163728,-0.001965,0.003000,0.249982,0,0);-ms-transform:matrix(0.163728,-0.001965,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163728,-0.001965,0.003000,0.249982,0,0);}
.mda_c00265{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m6b_c00265{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.166078,-0.001993,0.003000,0.249982,0,0);-ms-transform:matrix(0.166078,-0.001993,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166078,-0.001993,0.003000,0.249982,0,0);}
.m68_c00265{transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);}
.m9f_c00265{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.168006,-0.002184,0.003250,0.249979,0,0);-ms-transform:matrix(0.168006,-0.002184,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168006,-0.002184,0.003250,0.249979,0,0);}
.mad_c00265{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{transform:matrix(0.169363,-0.002032,0.003000,0.249982,0,0);-ms-transform:matrix(0.169363,-0.002032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169363,-0.002032,0.003000,0.249982,0,0);}
.m6e_c00265{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m9e_c00265{transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171160,0.000000,0.000000,0.250000,0,0);}
.mb3_c00265{transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.171463,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171463,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171463,-0.002058,0.003000,0.249982,0,0);}
.md6_c00265{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m76_c00265{transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);}
.mc5_c00265{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.172670,-0.002245,0.003250,0.249979,0,0);-ms-transform:matrix(0.172670,-0.002245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172670,-0.002245,0.003250,0.249979,0,0);}
.me8_c00265{transform:matrix(0.172715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172715,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00265{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00265{transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);}
.mef_c00265{transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);}
.mbf_c00265{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.175677,-0.002108,0.003000,0.249982,0,0);-ms-transform:matrix(0.175677,-0.002108,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175677,-0.002108,0.003000,0.249982,0,0);}
.m28_c00265{transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.mf2_c00265{transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00265{transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.178560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00265{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m80_c00265{transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);}
.mc0_c00265{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m27_c00265{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.mdb_c00265{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-ms-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);}
.maf_c00265{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.m36_c00265{transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);}
.mc6_c00265{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mae_c00265{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m9c_c00265{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00265{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.md5_c00265{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);}
.mf1_c00265{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md1_c00265{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m5c_c00265{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.mbb_c00265{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m75_c00265{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m69_c00265{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m72_c00265{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.mac_c00265{transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.187756,-0.002253,0.003000,0.249982,0,0);-ms-transform:matrix(0.187756,-0.002253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187756,-0.002253,0.003000,0.249982,0,0);}
.m2d_c00265{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.m7b_c00265{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m91_c00265{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.mf3_c00265{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.mb8_c00265{transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);}
.me1_c00265{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.med_c00265{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.189639,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189639,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189639,-0.002465,0.003250,0.249979,0,0);}
.mc2_c00265{transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);}
.mba_c00265{transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);}
.ma2_c00265{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.189811,-0.002278,0.003000,0.249982,0,0);-ms-transform:matrix(0.189811,-0.002278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189811,-0.002278,0.003000,0.249982,0,0);}
.m66_c00265{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.mb4_c00265{transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);}
.m70_c00265{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.191711,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191711,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191711,-0.002301,0.003000,0.249982,0,0);}
.mcb_c00265{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00265{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00265{transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);}
.m74_c00265{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.ma5_c00265{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.ma0_c00265{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.193996,-0.002328,0.003000,0.249982,0,0);-ms-transform:matrix(0.193996,-0.002328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193996,-0.002328,0.003000,0.249982,0,0);}
.md7_c00265{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.md8_c00265{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mcf_c00265{transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.ma1_c00265{transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.196018,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.196018,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196018,-0.002548,0.003250,0.249979,0,0);}
.m8_c00265{transform:matrix(0.196618,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196618,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196618,-0.002556,0.003250,0.249979,0,0);}
.mbd_c00265{transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);}
.me2_c00265{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.197223,-0.002564,0.003250,0.249979,0,0);-ms-transform:matrix(0.197223,-0.002564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197223,-0.002564,0.003250,0.249979,0,0);}
.m2a_c00265{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m93_c00265{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);}
.md0_c00265{transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197860,0.000000,0.000000,0.250000,0,0);}
.m7e_c00265{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.m99_c00265{transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198240,0.000000,0.000000,0.250000,0,0);}
.me3_c00265{transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);}
.mc9_c00265{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.199858,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199858,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199858,-0.002598,0.003250,0.249979,0,0);}
.m97_c00265{transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);}
.mc7_c00265{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.200161,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200161,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200161,-0.002402,0.003000,0.249982,0,0);}
.ma7_c00265{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.me0_c00265{transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);}
.m9b_c00265{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m3d_c00265{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m64_c00265{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.201600,-0.002419,0.003000,0.249982,0,0);-ms-transform:matrix(0.201600,-0.002419,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201600,-0.002419,0.003000,0.249982,0,0);}
.mc3_c00265{transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);-ms-transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201708,-0.002622,0.003250,0.249979,0,0);}
.m6_c00265{transform:matrix(0.202483,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202483,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202483,-0.002632,0.003250,0.249979,0,0);}
.m16_c00265{transform:matrix(0.203180,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203180,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203180,-0.002438,0.003000,0.249982,0,0);}
.mb1_c00265{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.mc8_c00265{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.me5_c00265{transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00265{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.ma6_c00265{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.204273,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204273,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204273,-0.002656,0.003250,0.249979,0,0);}
.ma3_c00265{transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);}
.mdf_c00265{transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);}
.m73_c00265{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m62_c00265{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m3c_c00265{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.206408,-0.002683,0.003250,0.249979,0,0);-ms-transform:matrix(0.206408,-0.002683,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206408,-0.002683,0.003250,0.249979,0,0);}
.m98_c00265{transform:matrix(0.206610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206610,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.207257,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207257,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207257,-0.002694,0.003250,0.249979,0,0);}
.ma8_c00265{transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.mde_c00265{transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.md9_c00265{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.m84_c00265{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m81_c00265{transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);}
.mbe_c00265{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m96_c00265{transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m67_c00265{transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.mea_c00265{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m85_c00265{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.217465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217465,0.000000,0.000000,0.250000,0,0);}
.mce_c00265{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);-ms-transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);}
.mca_c00265{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m92_c00265{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);}
.m7c_c00265{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.m95_c00265{transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);}
.m34_c00265{transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);}
.me4_c00265{transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.maa_c00265{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.mcc_c00265{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m5f_c00265{transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);}
.m90_c00265{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.md4_c00265{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.md2_c00265{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.mc4_c00265{transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);}
.md3_c00265{transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229110,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.230176,-0.002992,0.003250,0.249979,0,0);-ms-transform:matrix(0.230176,-0.002992,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230176,-0.002992,0.003250,0.249979,0,0);}
.m82_c00265{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m86_c00265{transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);}
.m88_c00265{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.237793,-0.002854,0.003000,0.249982,0,0);-ms-transform:matrix(0.237793,-0.002854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237793,-0.002854,0.003000,0.249982,0,0);}
.mc1_c00265{transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.239580,-0.003115,0.003250,0.249979,0,0);-ms-transform:matrix(0.239580,-0.003115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239580,-0.003115,0.003250,0.249979,0,0);}
.m7d_c00265{transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);}
.m9d_c00265{transform:matrix(0.246420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00265{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);}
.mab_c00265{transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.354660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354660,0.000000,0.000000,0.250000,0,0);}
.mdc_c00265{transform:matrix(0.415385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415385,0.000000,0.000000,0.250000,0,0);}
.meb_c00265{transform:matrix(0.605200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605200,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
.fc0_c00265{color:transparent;}
.fs11_c00265{font-size:38.850000px;}
.fsa_c00265{font-size:57.750000px;}
.fsd_c00265{font-size:58.800000px;}
.fs8_c00265{font-size:59.850000px;}
.fs5_c00265{font-size:60.900000px;}
.fs6_c00265{font-size:61.950000px;}
.fs4_c00265{font-size:61.954460px;}
.fs1_c00265{font-size:61.955235px;}
.fsc_c00265{font-size:63.000000px;}
.fs2_c00265{font-size:63.005323px;}
.fs7_c00265{font-size:64.050000px;}
.fs0_c00265{font-size:66.150000px;}
.fse_c00265{font-size:67.200000px;}
.fsb_c00265{font-size:68.250000px;}
.fs9_c00265{font-size:69.300000px;}
.fs3_c00265{font-size:69.304989px;}
.fs10_c00265{font-size:71.400000px;}
.fsf_c00265{font-size:72.450000px;}
.y0_c00265{bottom:0.000000px;}
.y8b_c00265{bottom:5.670000px;}
.y8a_c00265{bottom:20.331000px;}
.y89_c00265{bottom:37.411500px;}
.y82_c00265{bottom:53.185500px;}
.y83_c00265{bottom:53.416500px;}
.y84_c00265{bottom:54.346500px;}
.y85_c00265{bottom:54.946500px;}
.y86_c00265{bottom:55.161000px;}
.y87_c00265{bottom:55.612500px;}
.y88_c00265{bottom:56.112000px;}
.y7b_c00265{bottom:69.927000px;}
.y7c_c00265{bottom:70.627500px;}
.y7d_c00265{bottom:71.460000px;}
.y7e_c00265{bottom:71.890500px;}
.y7f_c00265{bottom:73.060500px;}
.y80_c00265{bottom:73.422000px;}
.y81_c00265{bottom:74.217000px;}
.y72_c00265{bottom:87.489000px;}
.y73_c00265{bottom:88.246500px;}
.y74_c00265{bottom:89.647500px;}
.y75_c00265{bottom:92.338500px;}
.y76_c00265{bottom:93.307500px;}
.y77_c00265{bottom:93.771000px;}
.y78_c00265{bottom:96.163500px;}
.y79_c00265{bottom:96.627000px;}
.y7a_c00265{bottom:97.417500px;}
.y6a_c00265{bottom:104.487000px;}
.y6b_c00265{bottom:104.731500px;}
.y6c_c00265{bottom:105.424500px;}
.y6d_c00265{bottom:105.711000px;}
.y6e_c00265{bottom:106.557000px;}
.y6f_c00265{bottom:106.984500px;}
.y70_c00265{bottom:107.659500px;}
.y71_c00265{bottom:107.820000px;}
.y62_c00265{bottom:122.040000px;}
.y63_c00265{bottom:122.577000px;}
.y64_c00265{bottom:122.893500px;}
.y65_c00265{bottom:123.160500px;}
.y66_c00265{bottom:123.897000px;}
.y67_c00265{bottom:124.779000px;}
.y68_c00265{bottom:125.812500px;}
.y69_c00265{bottom:126.468000px;}
.y61_c00265{bottom:140.601000px;}
.y60_c00265{bottom:158.916000px;}
.y5f_c00265{bottom:175.870500px;}
.y5e_c00265{bottom:193.252500px;}
.y5d_c00265{bottom:211.072500px;}
.y5c_c00265{bottom:228.622500px;}
.y5b_c00265{bottom:245.809500px;}
.y5a_c00265{bottom:262.524000px;}
.y52_c00265{bottom:277.827000px;}
.y53_c00265{bottom:278.077500px;}
.y54_c00265{bottom:278.659500px;}
.y55_c00265{bottom:278.928000px;}
.y56_c00265{bottom:279.682500px;}
.y57_c00265{bottom:280.083000px;}
.y58_c00265{bottom:280.644000px;}
.y59_c00265{bottom:280.870500px;}
.y4a_c00265{bottom:294.838500px;}
.y4b_c00265{bottom:295.207500px;}
.y4c_c00265{bottom:295.884000px;}
.y4d_c00265{bottom:296.035500px;}
.y4e_c00265{bottom:296.952000px;}
.y4f_c00265{bottom:297.258000px;}
.y50_c00265{bottom:297.739500px;}
.y51_c00265{bottom:297.864000px;}
.y41_c00265{bottom:312.120000px;}
.y42_c00265{bottom:312.301500px;}
.y43_c00265{bottom:312.732000px;}
.y44_c00265{bottom:313.347000px;}
.y45_c00265{bottom:313.602000px;}
.y46_c00265{bottom:314.038500px;}
.y47_c00265{bottom:314.284500px;}
.y48_c00265{bottom:314.581500px;}
.y49_c00265{bottom:314.836500px;}
.y39_c00265{bottom:329.400000px;}
.y3a_c00265{bottom:329.586000px;}
.y3b_c00265{bottom:330.055500px;}
.y3c_c00265{bottom:330.264000px;}
.y3d_c00265{bottom:330.652500px;}
.y3e_c00265{bottom:330.945000px;}
.y3f_c00265{bottom:331.519500px;}
.y40_c00265{bottom:332.097000px;}
.y32_c00265{bottom:346.951500px;}
.y33_c00265{bottom:347.769000px;}
.y34_c00265{bottom:348.372000px;}
.y35_c00265{bottom:348.675000px;}
.y36_c00265{bottom:349.383000px;}
.y37_c00265{bottom:349.615500px;}
.y38_c00265{bottom:350.152500px;}
.y31_c00265{bottom:365.400000px;}
.y30_c00265{bottom:383.325000px;}
.y27_c00265{bottom:399.331500px;}
.y28_c00265{bottom:399.550500px;}
.y29_c00265{bottom:399.835500px;}
.y2a_c00265{bottom:400.120500px;}
.y2b_c00265{bottom:400.852500px;}
.y2c_c00265{bottom:401.196000px;}
.y2d_c00265{bottom:401.446500px;}
.y2e_c00265{bottom:401.728500px;}
.y2f_c00265{bottom:402.457500px;}
.y26_c00265{bottom:417.510000px;}
.y25_c00265{bottom:434.481000px;}
.y24_c00265{bottom:450.808500px;}
.y23_c00265{bottom:468.810000px;}
.y22_c00265{bottom:486.685500px;}
.y19_c00265{bottom:502.199394px;}
.y1a_c00265{bottom:502.486302px;}
.y1b_c00265{bottom:502.671804px;}
.y1c_c00265{bottom:502.996626px;}
.y1d_c00265{bottom:503.396070px;}
.y1e_c00265{bottom:503.574540px;}
.y1f_c00265{bottom:504.111174px;}
.y20_c00265{bottom:504.241356px;}
.y21_c00265{bottom:504.867198px;}
.y12_c00265{bottom:519.211500px;}
.y13_c00265{bottom:520.112076px;}
.y14_c00265{bottom:520.397250px;}
.y15_c00265{bottom:520.873458px;}
.y16_c00265{bottom:521.145672px;}
.y17_c00265{bottom:521.617902px;}
.y18_c00265{bottom:521.758302px;}
.y9_c00265{bottom:535.680173px;}
.ya_c00265{bottom:536.368172px;}
.yb_c00265{bottom:536.691560px;}
.yc_c00265{bottom:537.308812px;}
.yd_c00265{bottom:538.000224px;}
.ye_c00265{bottom:538.168743px;}
.yf_c00265{bottom:538.397010px;}
.y10_c00265{bottom:539.109579px;}
.y11_c00265{bottom:539.372771px;}
.y2_c00265{bottom:552.961500px;}
.y3_c00265{bottom:553.509158px;}
.y4_c00265{bottom:554.572727px;}
.y5_c00265{bottom:555.113227px;}
.y6_c00265{bottom:555.477546px;}
.y7_c00265{bottom:556.180346px;}
.y8_c00265{bottom:556.717883px;}
.y1_c00265{bottom:571.324500px;}
.h13_c00265{height:38.850000px;}
.hc_c00265{height:57.750000px;}
.hf_c00265{height:58.800000px;}
.ha_c00265{height:59.850000px;}
.h7_c00265{height:60.900000px;}
.h8_c00265{height:61.950000px;}
.h6_c00265{height:61.954460px;}
.h3_c00265{height:61.955235px;}
.he_c00265{height:63.000000px;}
.h4_c00265{height:63.005323px;}
.h9_c00265{height:64.050000px;}
.h2_c00265{height:66.150000px;}
.h10_c00265{height:67.200000px;}
.hd_c00265{height:68.250000px;}
.hb_c00265{height:69.300000px;}
.h5_c00265{height:69.304989px;}
.h12_c00265{height:71.400000px;}
.h11_c00265{height:72.450000px;}
.h1_c00265{height:618.750000px;}
.h0_c00265{height:619.050000px;}
.w0_c00265{width:359.100000px;}
.w1_c00265{width:359.250000px;}
.x0_c00265{left:0.000000px;}
.x3_c00265{left:43.098000px;}
.x48_c00265{left:44.418000px;}
.x3b_c00265{left:48.870000px;}
.x58_c00265{left:57.508500px;}
.x2c_c00265{left:60.750000px;}
.x45_c00265{left:62.233500px;}
.x56_c00265{left:65.338500px;}
.x3e_c00265{left:66.960000px;}
.x18_c00265{left:71.945250px;}
.x61_c00265{left:73.168500px;}
.x32_c00265{left:78.300000px;}
.x6a_c00265{left:80.853000px;}
.x2d_c00265{left:82.890000px;}
.x4_c00265{left:85.225500px;}
.x1f_c00265{left:88.290000px;}
.x19_c00265{left:90.529200px;}
.x73_c00265{left:91.725000px;}
.x62_c00265{left:93.418500px;}
.xa_c00265{left:96.028120px;}
.x59_c00265{left:99.358500px;}
.x3f_c00265{left:100.980000px;}
.x6b_c00265{left:101.997000px;}
.x5e_c00265{left:104.758500px;}
.x26_c00265{left:106.110000px;}
.x20_c00265{left:108.270000px;}
.x6e_c00265{left:111.973500px;}
.x12_c00265{left:118.680000px;}
.x6c_c00265{left:119.812500px;}
.xb_c00265{left:120.904120px;}
.x1a_c00265{left:122.973474px;}
.x5a_c00265{left:124.738500px;}
.x3c_c00265{left:128.790000px;}
.x46_c00265{left:130.002000px;}
.x33_c00265{left:131.490000px;}
.x77_c00265{left:135.531000px;}
.x4d_c00265{left:139.395000px;}
.x27_c00265{left:140.670000px;}
.x13_c00265{left:142.444500px;}
.x51_c00265{left:144.847500px;}
.x2e_c00265{left:147.690000px;}
.x34_c00265{left:148.770000px;}
.x5f_c00265{left:150.928500px;}
.x28_c00265{left:153.090000px;}
.x49_c00265{left:155.926500px;}
.x21_c00265{left:157.140000px;}
.x5b_c00265{left:159.298500px;}
.x1b_c00265{left:162.886428px;}
.x5_c00265{left:167.038500px;}
.xc_c00265{left:168.385120px;}
.x37_c00265{left:169.899000px;}
.x29_c00265{left:172.530000px;}
.x63_c00265{left:174.148500px;}
.x1_c00265{left:176.310000px;}
.x65_c00265{left:177.928500px;}
.x4a_c00265{left:179.092500px;}
.x1c_c00265{left:180.759360px;}
.x14_c00265{left:182.128500px;}
.x78_c00265{left:185.751000px;}
.x3d_c00265{left:193.050000px;}
.x54_c00265{left:197.098500px;}
.x38_c00265{left:198.517500px;}
.x57_c00265{left:201.418500px;}
.x66_c00265{left:203.038500px;}
.x15_c00265{left:204.813000px;}
.x71_c00265{left:206.895000px;}
.x6_c00265{left:208.615500px;}
.x64_c00265{left:210.328500px;}
.x2f_c00265{left:212.220000px;}
.x52_c00265{left:213.372000px;}
.x22_c00265{left:216.000000px;}
.x35_c00265{left:219.510000px;}
.xd_c00265{left:221.570621px;}
.x6f_c00265{left:223.438500px;}
.x75_c00265{left:224.754000px;}
.x40_c00265{left:227.070000px;}
.x79_c00265{left:229.491000px;}
.x43_c00265{left:230.947500px;}
.x23_c00265{left:232.200000px;}
.xe_c00265{left:234.533621px;}
.x7_c00265{left:236.640000px;}
.x55_c00265{left:239.758500px;}
.x4b_c00265{left:241.191000px;}
.x39_c00265{left:242.859000px;}
.x16_c00265{left:244.165500px;}
.x1d_c00265{left:247.453962px;}
.x44_c00265{left:248.827500px;}
.xf_c00265{left:252.092620px;}
.x2_c00265{left:254.070000px;}
.x17_c00265{left:255.865500px;}
.x5c_c00265{left:259.738500px;}
.x30_c00265{left:262.440000px;}
.x4e_c00265{left:264.457500px;}
.x60_c00265{left:266.488500px;}
.x4c_c00265{left:268.240500px;}
.x70_c00265{left:271.690500px;}
.x69_c00265{left:278.638500px;}
.x41_c00265{left:282.420000px;}
.x5d_c00265{left:286.198500px;}
.x67_c00265{left:289.438500px;}
.x8_c00265{left:290.701500px;}
.x36_c00265{left:295.380000px;}
.x2a_c00265{left:297.000000px;}
.x24_c00265{left:298.620000px;}
.x7a_c00265{left:299.691000px;}
.x53_c00265{left:300.856500px;}
.x68_c00265{left:302.398500px;}
.x3a_c00265{left:303.603000px;}
.x10_c00265{left:306.905620px;}
.x4f_c00265{left:308.188500px;}
.x1e_c00265{left:310.108974px;}
.x76_c00265{left:311.188500px;}
.x47_c00265{left:313.327500px;}
.x25_c00265{left:315.360000px;}
.x42_c00265{left:316.710000px;}
.x50_c00265{left:319.533000px;}
.x72_c00265{left:321.025500px;}
.x31_c00265{left:322.110000px;}
.x2b_c00265{left:325.620000px;}
.x11_c00265{left:327.151120px;}
.x74_c00265{left:331.008000px;}
.x9_c00265{left:332.050500px;}
.x6d_c00265{left:340.365000px;}
.x7b_c00265{left:351.261000px;}
.x7c_c00265{left:352.620000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
.fs11_c00265{font-size:34.533333pt;}
.fsa_c00265{font-size:51.333333pt;}
.fsd_c00265{font-size:52.266667pt;}
.fs8_c00265{font-size:53.200000pt;}
.fs5_c00265{font-size:54.133333pt;}
.fs6_c00265{font-size:55.066667pt;}
.fs4_c00265{font-size:55.070631pt;}
.fs1_c00265{font-size:55.071320pt;}
.fsc_c00265{font-size:56.000000pt;}
.fs2_c00265{font-size:56.004732pt;}
.fs7_c00265{font-size:56.933333pt;}
.fs0_c00265{font-size:58.800000pt;}
.fse_c00265{font-size:59.733333pt;}
.fsb_c00265{font-size:60.666667pt;}
.fs9_c00265{font-size:61.600000pt;}
.fs3_c00265{font-size:61.604435pt;}
.fs10_c00265{font-size:63.466667pt;}
.fsf_c00265{font-size:64.400000pt;}
.y0_c00265{bottom:0.000000pt;}
.y8b_c00265{bottom:5.040000pt;}
.y8a_c00265{bottom:18.072000pt;}
.y89_c00265{bottom:33.254667pt;}
.y82_c00265{bottom:47.276000pt;}
.y83_c00265{bottom:47.481333pt;}
.y84_c00265{bottom:48.308000pt;}
.y85_c00265{bottom:48.841333pt;}
.y86_c00265{bottom:49.032000pt;}
.y87_c00265{bottom:49.433333pt;}
.y88_c00265{bottom:49.877333pt;}
.y7b_c00265{bottom:62.157333pt;}
.y7c_c00265{bottom:62.780000pt;}
.y7d_c00265{bottom:63.520000pt;}
.y7e_c00265{bottom:63.902667pt;}
.y7f_c00265{bottom:64.942667pt;}
.y80_c00265{bottom:65.264000pt;}
.y81_c00265{bottom:65.970667pt;}
.y72_c00265{bottom:77.768000pt;}
.y73_c00265{bottom:78.441333pt;}
.y74_c00265{bottom:79.686667pt;}
.y75_c00265{bottom:82.078667pt;}
.y76_c00265{bottom:82.940000pt;}
.y77_c00265{bottom:83.352000pt;}
.y78_c00265{bottom:85.478667pt;}
.y79_c00265{bottom:85.890667pt;}
.y7a_c00265{bottom:86.593333pt;}
.y6a_c00265{bottom:92.877333pt;}
.y6b_c00265{bottom:93.094667pt;}
.y6c_c00265{bottom:93.710667pt;}
.y6d_c00265{bottom:93.965333pt;}
.y6e_c00265{bottom:94.717333pt;}
.y6f_c00265{bottom:95.097333pt;}
.y70_c00265{bottom:95.697333pt;}
.y71_c00265{bottom:95.840000pt;}
.y62_c00265{bottom:108.480000pt;}
.y63_c00265{bottom:108.957333pt;}
.y64_c00265{bottom:109.238667pt;}
.y65_c00265{bottom:109.476000pt;}
.y66_c00265{bottom:110.130667pt;}
.y67_c00265{bottom:110.914667pt;}
.y68_c00265{bottom:111.833333pt;}
.y69_c00265{bottom:112.416000pt;}
.y61_c00265{bottom:124.978667pt;}
.y60_c00265{bottom:141.258667pt;}
.y5f_c00265{bottom:156.329333pt;}
.y5e_c00265{bottom:171.780000pt;}
.y5d_c00265{bottom:187.620000pt;}
.y5c_c00265{bottom:203.220000pt;}
.y5b_c00265{bottom:218.497333pt;}
.y5a_c00265{bottom:233.354667pt;}
.y52_c00265{bottom:246.957333pt;}
.y53_c00265{bottom:247.180000pt;}
.y54_c00265{bottom:247.697333pt;}
.y55_c00265{bottom:247.936000pt;}
.y56_c00265{bottom:248.606667pt;}
.y57_c00265{bottom:248.962667pt;}
.y58_c00265{bottom:249.461333pt;}
.y59_c00265{bottom:249.662667pt;}
.y4a_c00265{bottom:262.078667pt;}
.y4b_c00265{bottom:262.406667pt;}
.y4c_c00265{bottom:263.008000pt;}
.y4d_c00265{bottom:263.142667pt;}
.y4e_c00265{bottom:263.957333pt;}
.y4f_c00265{bottom:264.229333pt;}
.y50_c00265{bottom:264.657333pt;}
.y51_c00265{bottom:264.768000pt;}
.y41_c00265{bottom:277.440000pt;}
.y42_c00265{bottom:277.601333pt;}
.y43_c00265{bottom:277.984000pt;}
.y44_c00265{bottom:278.530667pt;}
.y45_c00265{bottom:278.757333pt;}
.y46_c00265{bottom:279.145333pt;}
.y47_c00265{bottom:279.364000pt;}
.y48_c00265{bottom:279.628000pt;}
.y49_c00265{bottom:279.854667pt;}
.y39_c00265{bottom:292.800000pt;}
.y3a_c00265{bottom:292.965333pt;}
.y3b_c00265{bottom:293.382667pt;}
.y3c_c00265{bottom:293.568000pt;}
.y3d_c00265{bottom:293.913333pt;}
.y3e_c00265{bottom:294.173333pt;}
.y3f_c00265{bottom:294.684000pt;}
.y40_c00265{bottom:295.197333pt;}
.y32_c00265{bottom:308.401333pt;}
.y33_c00265{bottom:309.128000pt;}
.y34_c00265{bottom:309.664000pt;}
.y35_c00265{bottom:309.933333pt;}
.y36_c00265{bottom:310.562667pt;}
.y37_c00265{bottom:310.769333pt;}
.y38_c00265{bottom:311.246667pt;}
.y31_c00265{bottom:324.800000pt;}
.y30_c00265{bottom:340.733333pt;}
.y27_c00265{bottom:354.961333pt;}
.y28_c00265{bottom:355.156000pt;}
.y29_c00265{bottom:355.409333pt;}
.y2a_c00265{bottom:355.662667pt;}
.y2b_c00265{bottom:356.313333pt;}
.y2c_c00265{bottom:356.618667pt;}
.y2d_c00265{bottom:356.841333pt;}
.y2e_c00265{bottom:357.092000pt;}
.y2f_c00265{bottom:357.740000pt;}
.y26_c00265{bottom:371.120000pt;}
.y25_c00265{bottom:386.205333pt;}
.y24_c00265{bottom:400.718667pt;}
.y23_c00265{bottom:416.720000pt;}
.y22_c00265{bottom:432.609333pt;}
.y19_c00265{bottom:446.399461pt;}
.y1a_c00265{bottom:446.654491pt;}
.y1b_c00265{bottom:446.819381pt;}
.y1c_c00265{bottom:447.108112pt;}
.y1d_c00265{bottom:447.463173pt;}
.y1e_c00265{bottom:447.621813pt;}
.y1f_c00265{bottom:448.098821pt;}
.y20_c00265{bottom:448.214539pt;}
.y21_c00265{bottom:448.770843pt;}
.y12_c00265{bottom:461.521333pt;}
.y13_c00265{bottom:462.321845pt;}
.y14_c00265{bottom:462.575333pt;}
.y15_c00265{bottom:462.998629pt;}
.y16_c00265{bottom:463.240597pt;}
.y17_c00265{bottom:463.660357pt;}
.y18_c00265{bottom:463.785157pt;}
.y9_c00265{bottom:476.160153pt;}
.ya_c00265{bottom:476.771708pt;}
.yb_c00265{bottom:477.059164pt;}
.yc_c00265{bottom:477.607833pt;}
.yd_c00265{bottom:478.222421pt;}
.ye_c00265{bottom:478.372216pt;}
.yf_c00265{bottom:478.575120pt;}
.y10_c00265{bottom:479.208515pt;}
.y11_c00265{bottom:479.442463pt;}
.y2_c00265{bottom:491.521333pt;}
.y3_c00265{bottom:492.008140pt;}
.y4_c00265{bottom:492.953535pt;}
.y5_c00265{bottom:493.433980pt;}
.y6_c00265{bottom:493.757819pt;}
.y7_c00265{bottom:494.382529pt;}
.y8_c00265{bottom:494.860340pt;}
.y1_c00265{bottom:507.844000pt;}
.h13_c00265{height:34.533333pt;}
.hc_c00265{height:51.333333pt;}
.hf_c00265{height:52.266667pt;}
.ha_c00265{height:53.200000pt;}
.h7_c00265{height:54.133333pt;}
.h8_c00265{height:55.066667pt;}
.h6_c00265{height:55.070631pt;}
.h3_c00265{height:55.071320pt;}
.he_c00265{height:56.000000pt;}
.h4_c00265{height:56.004732pt;}
.h9_c00265{height:56.933333pt;}
.h2_c00265{height:58.800000pt;}
.h10_c00265{height:59.733333pt;}
.hd_c00265{height:60.666667pt;}
.hb_c00265{height:61.600000pt;}
.h5_c00265{height:61.604435pt;}
.h12_c00265{height:63.466667pt;}
.h11_c00265{height:64.400000pt;}
.h1_c00265{height:550.000000pt;}
.h0_c00265{height:550.266667pt;}
.w0_c00265{width:319.200000pt;}
.w1_c00265{width:319.333333pt;}
.x0_c00265{left:0.000000pt;}
.x3_c00265{left:38.309333pt;}
.x48_c00265{left:39.482667pt;}
.x3b_c00265{left:43.440000pt;}
.x58_c00265{left:51.118667pt;}
.x2c_c00265{left:54.000000pt;}
.x45_c00265{left:55.318667pt;}
.x56_c00265{left:58.078667pt;}
.x3e_c00265{left:59.520000pt;}
.x18_c00265{left:63.951333pt;}
.x61_c00265{left:65.038667pt;}
.x32_c00265{left:69.600000pt;}
.x6a_c00265{left:71.869333pt;}
.x2d_c00265{left:73.680000pt;}
.x4_c00265{left:75.756000pt;}
.x1f_c00265{left:78.480000pt;}
.x19_c00265{left:80.470400pt;}
.x73_c00265{left:81.533333pt;}
.x62_c00265{left:83.038667pt;}
.xa_c00265{left:85.358329pt;}
.x59_c00265{left:88.318667pt;}
.x3f_c00265{left:89.760000pt;}
.x6b_c00265{left:90.664000pt;}
.x5e_c00265{left:93.118667pt;}
.x26_c00265{left:94.320000pt;}
.x20_c00265{left:96.240000pt;}
.x6e_c00265{left:99.532000pt;}
.x12_c00265{left:105.493333pt;}
.x6c_c00265{left:106.500000pt;}
.xb_c00265{left:107.470329pt;}
.x1a_c00265{left:109.309755pt;}
.x5a_c00265{left:110.878667pt;}
.x3c_c00265{left:114.480000pt;}
.x46_c00265{left:115.557333pt;}
.x33_c00265{left:116.880000pt;}
.x77_c00265{left:120.472000pt;}
.x4d_c00265{left:123.906667pt;}
.x27_c00265{left:125.040000pt;}
.x13_c00265{left:126.617333pt;}
.x51_c00265{left:128.753333pt;}
.x2e_c00265{left:131.280000pt;}
.x34_c00265{left:132.240000pt;}
.x5f_c00265{left:134.158667pt;}
.x28_c00265{left:136.080000pt;}
.x49_c00265{left:138.601333pt;}
.x21_c00265{left:139.680000pt;}
.x5b_c00265{left:141.598667pt;}
.x1b_c00265{left:144.787936pt;}
.x5_c00265{left:148.478667pt;}
.xc_c00265{left:149.675663pt;}
.x37_c00265{left:151.021333pt;}
.x29_c00265{left:153.360000pt;}
.x63_c00265{left:154.798667pt;}
.x1_c00265{left:156.720000pt;}
.x65_c00265{left:158.158667pt;}
.x4a_c00265{left:159.193333pt;}
.x1c_c00265{left:160.674987pt;}
.x14_c00265{left:161.892000pt;}
.x78_c00265{left:165.112000pt;}
.x3d_c00265{left:171.600000pt;}
.x54_c00265{left:175.198667pt;}
.x38_c00265{left:176.460000pt;}
.x57_c00265{left:179.038667pt;}
.x66_c00265{left:180.478667pt;}
.x15_c00265{left:182.056000pt;}
.x71_c00265{left:183.906667pt;}
.x6_c00265{left:185.436000pt;}
.x64_c00265{left:186.958667pt;}
.x2f_c00265{left:188.640000pt;}
.x52_c00265{left:189.664000pt;}
.x22_c00265{left:192.000000pt;}
.x35_c00265{left:195.120000pt;}
.xd_c00265{left:196.951663pt;}
.x6f_c00265{left:198.612000pt;}
.x75_c00265{left:199.781333pt;}
.x40_c00265{left:201.840000pt;}
.x79_c00265{left:203.992000pt;}
.x43_c00265{left:205.286667pt;}
.x23_c00265{left:206.400000pt;}
.xe_c00265{left:208.474329pt;}
.x7_c00265{left:210.346667pt;}
.x55_c00265{left:213.118667pt;}
.x4b_c00265{left:214.392000pt;}
.x39_c00265{left:215.874667pt;}
.x16_c00265{left:217.036000pt;}
.x1d_c00265{left:219.959077pt;}
.x44_c00265{left:221.180000pt;}
.xf_c00265{left:224.082329pt;}
.x2_c00265{left:225.840000pt;}
.x17_c00265{left:227.436000pt;}
.x5c_c00265{left:230.878667pt;}
.x30_c00265{left:233.280000pt;}
.x4e_c00265{left:235.073333pt;}
.x60_c00265{left:236.878667pt;}
.x4c_c00265{left:238.436000pt;}
.x70_c00265{left:241.502667pt;}
.x69_c00265{left:247.678667pt;}
.x41_c00265{left:251.040000pt;}
.x5d_c00265{left:254.398667pt;}
.x67_c00265{left:257.278667pt;}
.x8_c00265{left:258.401333pt;}
.x36_c00265{left:262.560000pt;}
.x2a_c00265{left:264.000000pt;}
.x24_c00265{left:265.440000pt;}
.x7a_c00265{left:266.392000pt;}
.x53_c00265{left:267.428000pt;}
.x68_c00265{left:268.798667pt;}
.x3a_c00265{left:269.869333pt;}
.x10_c00265{left:272.804996pt;}
.x4f_c00265{left:273.945333pt;}
.x1e_c00265{left:275.652421pt;}
.x76_c00265{left:276.612000pt;}
.x47_c00265{left:278.513333pt;}
.x25_c00265{left:280.320000pt;}
.x42_c00265{left:281.520000pt;}
.x50_c00265{left:284.029333pt;}
.x72_c00265{left:285.356000pt;}
.x31_c00265{left:286.320000pt;}
.x2b_c00265{left:289.440000pt;}
.x11_c00265{left:290.800996pt;}
.x74_c00265{left:294.229333pt;}
.x9_c00265{left:295.156000pt;}
.x6d_c00265{left:302.546667pt;}
.x7b_c00265{left:312.232000pt;}
.x7c_c00265{left:313.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00266 {
    display:none;
  }
  .loading-indicator_c00266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00266 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00266 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00266" -> "#page-container .classname_c00266")
 */
.pf_c00266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00266 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00266 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00266 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00266 {overflow:visible;}
  }
}
.c_c00266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00266 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00266:after { /* webkit #35443 */
  content: '';
}
.t_c00266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00266 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00266 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00266 { /* info for Javascript */
  display:none;
}
.l_c00266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00266:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00266 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00266.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c00266{transform:matrix(0.103458,-0.001241,0.003000,0.249982,0,0);-ms-transform:matrix(0.103458,-0.001241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.103458,-0.001241,0.003000,0.249982,0,0);}
.md2_c00266{transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{transform:matrix(0.130409,-0.001695,0.003250,0.249979,0,0);-ms-transform:matrix(0.130409,-0.001695,0.003250,0.249979,0,0);-webkit-transform:matrix(0.130409,-0.001695,0.003250,0.249979,0,0);}
.mbf_c00266{transform:matrix(0.136095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136095,0.000000,0.000000,0.250000,0,0);}
.mcd_c00266{transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);}
.m54_c00266{transform:matrix(0.145605,-0.001747,0.003000,0.249982,0,0);-ms-transform:matrix(0.145605,-0.001747,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145605,-0.001747,0.003000,0.249982,0,0);}
.m37_c00266{transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148820,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.150745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150745,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.152085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152085,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{transform:matrix(0.153397,-0.001994,0.003250,0.249979,0,0);-ms-transform:matrix(0.153397,-0.001994,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153397,-0.001994,0.003250,0.249979,0,0);}
.m4f_c00266{transform:matrix(0.156189,-0.001874,0.003000,0.249982,0,0);-ms-transform:matrix(0.156189,-0.001874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156189,-0.001874,0.003000,0.249982,0,0);}
.m63_c00266{transform:matrix(0.158489,-0.001902,0.003000,0.249982,0,0);-ms-transform:matrix(0.158489,-0.001902,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158489,-0.001902,0.003000,0.249982,0,0);}
.m9f_c00266{transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);}
.mb4_c00266{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);-ms-transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161448,-0.001937,0.003000,0.249982,0,0);}
.m2f_c00266{transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162815,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.162933,-0.001955,0.003000,0.249982,0,0);-ms-transform:matrix(0.162933,-0.001955,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162933,-0.001955,0.003000,0.249982,0,0);}
.m9d_c00266{transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.164080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164080,0.000000,0.000000,0.250000,0,0);}
.mc0_c00266{transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);-ms-transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);}
.m67_c00266{transform:matrix(0.164728,-0.001977,0.003000,0.249982,0,0);-ms-transform:matrix(0.164728,-0.001977,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164728,-0.001977,0.003000,0.249982,0,0);}
.m9_c00266{transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);}
.mee_c00266{transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.166298,-0.001996,0.003000,0.249982,0,0);-ms-transform:matrix(0.166298,-0.001996,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166298,-0.001996,0.003000,0.249982,0,0);}
.m9a_c00266{transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);}
.me9_c00266{transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.166943,-0.002003,0.003000,0.249982,0,0);-ms-transform:matrix(0.166943,-0.002003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166943,-0.002003,0.003000,0.249982,0,0);}
.mb_c00266{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.167628,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167628,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167628,-0.002012,0.003000,0.249982,0,0);}
.m17_c00266{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.med_c00266{transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);}
.mae_c00266{transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.168643,-0.002024,0.003000,0.249982,0,0);-ms-transform:matrix(0.168643,-0.002024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168643,-0.002024,0.003000,0.249982,0,0);}
.m2a_c00266{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.mb1_c00266{transform:matrix(0.171115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);-ms-transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172748,-0.002073,0.003000,0.249982,0,0);}
.m22_c00266{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.173787,-0.002085,0.003000,0.249982,0,0);-ms-transform:matrix(0.173787,-0.002085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173787,-0.002085,0.003000,0.249982,0,0);}
.m9c_c00266{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.174337,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174337,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174337,-0.002092,0.003000,0.249982,0,0);}
.m15_c00266{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);}
.m64_c00266{transform:matrix(0.174812,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174812,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174812,-0.002098,0.003000,0.249982,0,0);}
.m66_c00266{transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);-ms-transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175287,-0.002103,0.003000,0.249982,0,0);}
.m77_c00266{transform:matrix(0.175582,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175582,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175582,-0.002107,0.003000,0.249982,0,0);}
.m8_c00266{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175970,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{transform:matrix(0.176202,-0.002114,0.003000,0.249982,0,0);-ms-transform:matrix(0.176202,-0.002114,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176202,-0.002114,0.003000,0.249982,0,0);}
.m24_c00266{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.176540,-0.002295,0.003250,0.249979,0,0);-ms-transform:matrix(0.176540,-0.002295,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176540,-0.002295,0.003250,0.249979,0,0);}
.m1d_c00266{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.177867,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177867,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177867,-0.002134,0.003000,0.249982,0,0);}
.maa_c00266{transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);}
.m99_c00266{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.178542,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178542,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178542,-0.002143,0.003000,0.249982,0,0);}
.m68_c00266{transform:matrix(0.178837,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178837,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178837,-0.002146,0.003000,0.249982,0,0);}
.m16_c00266{transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);}
.mcc_c00266{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.me5_c00266{transform:matrix(0.179600,0.002694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179600,0.002694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179600,0.002694,-0.003750,0.249972,0,0);}
.m8e_c00266{transform:matrix(0.179687,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179687,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179687,-0.002156,0.003000,0.249982,0,0);}
.m4_c00266{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.181115,-0.002354,0.003250,0.249979,0,0);-ms-transform:matrix(0.181115,-0.002354,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181115,-0.002354,0.003250,0.249979,0,0);}
.m95_c00266{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);}
.meb_c00266{transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.182650,-0.002374,0.003250,0.249979,0,0);-ms-transform:matrix(0.182650,-0.002374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182650,-0.002374,0.003250,0.249979,0,0);}
.md6_c00266{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.mbe_c00266{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.183267,-0.002199,0.003000,0.249982,0,0);-ms-transform:matrix(0.183267,-0.002199,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183267,-0.002199,0.003000,0.249982,0,0);}
.m46_c00266{transform:matrix(0.183694,-0.002388,0.003250,0.249979,0,0);-ms-transform:matrix(0.183694,-0.002388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183694,-0.002388,0.003250,0.249979,0,0);}
.m5f_c00266{transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);}
.mc1_c00266{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.184922,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184922,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184922,-0.002219,0.003000,0.249982,0,0);}
.m11_c00266{transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);}
.mb5_c00266{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.185307,-0.002224,0.003000,0.249982,0,0);-ms-transform:matrix(0.185307,-0.002224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185307,-0.002224,0.003000,0.249982,0,0);}
.m6c_c00266{transform:matrix(0.185527,-0.002226,0.003000,0.249982,0,0);-ms-transform:matrix(0.185527,-0.002226,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185527,-0.002226,0.003000,0.249982,0,0);}
.mb2_c00266{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.mc8_c00266{transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);}
.mec_c00266{transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.186782,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186782,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186782,-0.002241,0.003000,0.249982,0,0);}
.m1f_c00266{transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186990,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.187896,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187896,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187896,-0.002255,0.003000,0.249982,0,0);}
.mb0_c00266{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.188401,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188401,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188401,-0.002261,0.003000,0.249982,0,0);}
.m83_c00266{transform:matrix(0.188661,-0.002264,0.003000,0.249982,0,0);-ms-transform:matrix(0.188661,-0.002264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188661,-0.002264,0.003000,0.249982,0,0);}
.mc_c00266{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);}
.mc4_c00266{transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);}
.me4_c00266{transform:matrix(0.190289,0.002854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190289,0.002854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190289,0.002854,-0.003750,0.249972,0,0);}
.m9e_c00266{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00266{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.mb7_c00266{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);}
.mad_c00266{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.m33_c00266{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mea_c00266{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);}
.m8b_c00266{transform:matrix(0.192986,-0.002316,0.003000,0.249982,0,0);-ms-transform:matrix(0.192986,-0.002316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192986,-0.002316,0.003000,0.249982,0,0);}
.mb3_c00266{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m4c_c00266{transform:matrix(0.193786,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193786,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193786,-0.002325,0.003000,0.249982,0,0);}
.m2_c00266{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00266{transform:matrix(0.194361,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194361,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194361,-0.002332,0.003000,0.249982,0,0);}
.m69_c00266{transform:matrix(0.194416,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194416,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194416,-0.002333,0.003000,0.249982,0,0);}
.m75_c00266{transform:matrix(0.195396,-0.002345,0.003000,0.249982,0,0);-ms-transform:matrix(0.195396,-0.002345,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195396,-0.002345,0.003000,0.249982,0,0);}
.m20_c00266{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.195711,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195711,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195711,-0.002349,0.003000,0.249982,0,0);}
.md7_c00266{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.197926,-0.002375,0.003000,0.249982,0,0);-ms-transform:matrix(0.197926,-0.002375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197926,-0.002375,0.003000,0.249982,0,0);}
.m25_c00266{transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);}
.m14_c00266{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.198796,-0.002386,0.003000,0.249982,0,0);-ms-transform:matrix(0.198796,-0.002386,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198796,-0.002386,0.003000,0.249982,0,0);}
.m8f_c00266{transform:matrix(0.199296,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199296,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199296,-0.002392,0.003000,0.249982,0,0);}
.m62_c00266{transform:matrix(0.199486,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199486,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199486,-0.002394,0.003000,0.249982,0,0);}
.m7d_c00266{transform:matrix(0.199666,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199666,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199666,-0.002396,0.003000,0.249982,0,0);}
.m12_c00266{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.200616,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200616,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200616,-0.002407,0.003000,0.249982,0,0);}
.m48_c00266{transform:matrix(0.200796,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200796,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200796,-0.002410,0.003000,0.249982,0,0);}
.me8_c00266{transform:matrix(0.200842,0.003013,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200842,0.003013,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200842,0.003013,-0.003750,0.249972,0,0);}
.m3e_c00266{transform:matrix(0.200953,-0.002612,0.003250,0.249979,0,0);-ms-transform:matrix(0.200953,-0.002612,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200953,-0.002612,0.003250,0.249979,0,0);}
.m5a_c00266{transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);}
.m47_c00266{transform:matrix(0.201061,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201061,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201061,-0.002413,0.003000,0.249982,0,0);}
.mc3_c00266{transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202180,-0.002426,0.003000,0.249982,0,0);}
.m7_c00266{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);-ms-transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203900,-0.002447,0.003000,0.249982,0,0);}
.m82_c00266{transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204640,-0.002456,0.003000,0.249982,0,0);}
.m81_c00266{transform:matrix(0.204790,-0.002457,0.003000,0.249982,0,0);-ms-transform:matrix(0.204790,-0.002457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204790,-0.002457,0.003000,0.249982,0,0);}
.m74_c00266{transform:matrix(0.205275,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205275,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205275,-0.002463,0.003000,0.249982,0,0);}
.mcf_c00266{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.206468,-0.002684,0.003250,0.249979,0,0);-ms-transform:matrix(0.206468,-0.002684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206468,-0.002684,0.003250,0.249979,0,0);}
.me6_c00266{transform:matrix(0.206652,0.003100,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206652,0.003100,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206652,0.003100,-0.003750,0.249972,0,0);}
.m0_c00266{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.208280,-0.002499,0.003000,0.249982,0,0);-ms-transform:matrix(0.208280,-0.002499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208280,-0.002499,0.003000,0.249982,0,0);}
.ma0_c00266{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.209225,-0.002511,0.003000,0.249982,0,0);-ms-transform:matrix(0.209225,-0.002511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209225,-0.002511,0.003000,0.249982,0,0);}
.m27_c00266{transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.209995,-0.002520,0.003000,0.249982,0,0);-ms-transform:matrix(0.209995,-0.002520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209995,-0.002520,0.003000,0.249982,0,0);}
.md_c00266{transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210215,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.210305,-0.002524,0.003000,0.249982,0,0);-ms-transform:matrix(0.210305,-0.002524,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210305,-0.002524,0.003000,0.249982,0,0);}
.m6_c00266{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mdc_c00266{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);}
.mef_c00266{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.me7_c00266{transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);}
.m72_c00266{transform:matrix(0.212400,-0.002549,0.003000,0.249982,0,0);-ms-transform:matrix(0.212400,-0.002549,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212400,-0.002549,0.003000,0.249982,0,0);}
.mac_c00266{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);}
.m1_c00266{transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.213025,-0.002556,0.003000,0.249982,0,0);-ms-transform:matrix(0.213025,-0.002556,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213025,-0.002556,0.003000,0.249982,0,0);}
.mab_c00266{transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.213522,-0.002776,0.003250,0.249979,0,0);-ms-transform:matrix(0.213522,-0.002776,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213522,-0.002776,0.003250,0.249979,0,0);}
.mc5_c00266{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.mba_c00266{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.214180,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214180,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214180,-0.002570,0.003000,0.249982,0,0);}
.m3d_c00266{transform:matrix(0.214277,-0.002786,0.003250,0.249979,0,0);-ms-transform:matrix(0.214277,-0.002786,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214277,-0.002786,0.003250,0.249979,0,0);}
.md5_c00266{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.214885,-0.002579,0.003000,0.249982,0,0);-ms-transform:matrix(0.214885,-0.002579,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214885,-0.002579,0.003000,0.249982,0,0);}
.me3_c00266{transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);}
.m5_c00266{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.mb8_c00266{transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);}
.mc9_c00266{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.218412,-0.002839,0.003250,0.249979,0,0);-ms-transform:matrix(0.218412,-0.002839,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218412,-0.002839,0.003250,0.249979,0,0);}
.m7c_c00266{transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);-ms-transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218424,-0.002621,0.003000,0.249982,0,0);}
.m92_c00266{transform:matrix(0.218839,-0.002626,0.003000,0.249982,0,0);-ms-transform:matrix(0.218839,-0.002626,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218839,-0.002626,0.003000,0.249982,0,0);}
.maf_c00266{transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);}
.mdf_c00266{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.221014,-0.002652,0.003000,0.249982,0,0);-ms-transform:matrix(0.221014,-0.002652,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221014,-0.002652,0.003000,0.249982,0,0);}
.m38_c00266{transform:matrix(0.221586,-0.002881,0.003250,0.249979,0,0);-ms-transform:matrix(0.221586,-0.002881,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221586,-0.002881,0.003250,0.249979,0,0);}
.m85_c00266{transform:matrix(0.221794,-0.002662,0.003000,0.249982,0,0);-ms-transform:matrix(0.221794,-0.002662,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221794,-0.002662,0.003000,0.249982,0,0);}
.mbd_c00266{transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.223884,-0.002687,0.003000,0.249982,0,0);-ms-transform:matrix(0.223884,-0.002687,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223884,-0.002687,0.003000,0.249982,0,0);}
.m50_c00266{transform:matrix(0.224014,-0.002688,0.003000,0.249982,0,0);-ms-transform:matrix(0.224014,-0.002688,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224014,-0.002688,0.003000,0.249982,0,0);}
.m2e_c00266{transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.225266,-0.002928,0.003250,0.249979,0,0);-ms-transform:matrix(0.225266,-0.002928,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225266,-0.002928,0.003250,0.249979,0,0);}
.mde_c00266{transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.226639,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226639,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226639,-0.002720,0.003000,0.249982,0,0);}
.mc7_c00266{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.md8_c00266{transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);}
.mb9_c00266{transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);}
.me1_c00266{transform:matrix(0.232519,0.003488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232519,0.003488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232519,0.003488,-0.003750,0.249972,0,0);}
.mc2_c00266{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.233638,-0.002804,0.003000,0.249982,0,0);-ms-transform:matrix(0.233638,-0.002804,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233638,-0.002804,0.003000,0.249982,0,0);}
.m3b_c00266{transform:matrix(0.233940,-0.003041,0.003250,0.249979,0,0);-ms-transform:matrix(0.233940,-0.003041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233940,-0.003041,0.003250,0.249979,0,0);}
.m5b_c00266{transform:matrix(0.235263,-0.002823,0.003000,0.249982,0,0);-ms-transform:matrix(0.235263,-0.002823,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235263,-0.002823,0.003000,0.249982,0,0);}
.m57_c00266{transform:matrix(0.238183,-0.002858,0.003000,0.249982,0,0);-ms-transform:matrix(0.238183,-0.002858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238183,-0.002858,0.003000,0.249982,0,0);}
.md4_c00266{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.md0_c00266{transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);}
.mdb_c00266{transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245135,0.000000,0.000000,0.250000,0,0);}
.mbc_c00266{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.249292,-0.002992,0.003000,0.249982,0,0);-ms-transform:matrix(0.249292,-0.002992,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249292,-0.002992,0.003000,0.249982,0,0);}
.md9_c00266{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.mdd_c00266{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.md1_c00266{transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);}
.me2_c00266{transform:matrix(0.286483,0.004297,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286483,0.004297,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286483,0.004297,-0.003750,0.249972,0,0);}
.mbb_c00266{transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);}
.mce_c00266{transform:matrix(0.307140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307140,0.000000,0.000000,0.250000,0,0);}
.me0_c00266{transform:matrix(0.325768,0.004887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.325768,0.004887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.325768,0.004887,-0.003750,0.249972,0,0);}
.m65_c00266{transform:matrix(0.330946,-0.003971,0.003000,0.249982,0,0);-ms-transform:matrix(0.330946,-0.003971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.330946,-0.003971,0.003000,0.249982,0,0);}
.mda_c00266{transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);}
.m6a_c00266{transform:matrix(0.439968,-0.005280,0.003000,0.249982,0,0);-ms-transform:matrix(0.439968,-0.005280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.439968,-0.005280,0.003000,0.249982,0,0);}
.mca_c00266{transform:matrix(0.560870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560870,0.000000,0.000000,0.250000,0,0);}
.mcb_c00266{transform:matrix(0.625570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625570,0.000000,0.000000,0.250000,0,0);}
.md3_c00266{transform:matrix(0.664405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664405,0.000000,0.000000,0.250000,0,0);}
.mb6_c00266{transform:matrix(0.943750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943750,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:0.000000px;}
.fc0_c00266{color:transparent;}
.fs12_c00266{font-size:57.756497px;}
.fs11_c00266{font-size:58.800000px;}
.fs8_c00266{font-size:58.804968px;}
.fs1_c00266{font-size:59.850000px;}
.fsb_c00266{font-size:59.854309px;}
.fs6_c00266{font-size:59.855057px;}
.fs0_c00266{font-size:61.950000px;}
.fsd_c00266{font-size:61.954460px;}
.fs3_c00266{font-size:63.000000px;}
.fse_c00266{font-size:64.054611px;}
.fs9_c00266{font-size:65.104687px;}
.fs2_c00266{font-size:66.150000px;}
.fsc_c00266{font-size:66.154763px;}
.fs5_c00266{font-size:67.200000px;}
.fsf_c00266{font-size:68.250000px;}
.fs10_c00266{font-size:69.300000px;}
.fs4_c00266{font-size:73.500000px;}
.fs7_c00266{font-size:73.506210px;}
.fsa_c00266{font-size:74.555367px;}
.y0_c00266{bottom:0.000000px;}
.ya0_c00266{bottom:29.848500px;}
.y9f_c00266{bottom:47.847367px;}
.y9e_c00266{bottom:48.191640px;}
.y9d_c00266{bottom:49.013385px;}
.y9c_c00266{bottom:49.312860px;}
.y9b_c00266{bottom:49.672297px;}
.y9a_c00266{bottom:50.713395px;}
.y99_c00266{bottom:50.990032px;}
.y98_c00266{bottom:51.235957px;}
.y97_c00266{bottom:52.111500px;}
.y96_c00266{bottom:65.782500px;}
.y95_c00266{bottom:82.770000px;}
.y94_c00266{bottom:100.980000px;}
.y93_c00266{bottom:116.896500px;}
.y92_c00266{bottom:133.512000px;}
.y91_c00266{bottom:151.057500px;}
.y8a_c00266{bottom:165.783000px;}
.y8b_c00266{bottom:166.897500px;}
.y8c_c00266{bottom:167.143500px;}
.y8d_c00266{bottom:167.784000px;}
.y8e_c00266{bottom:168.178500px;}
.y8f_c00266{bottom:168.505500px;}
.y90_c00266{bottom:168.742500px;}
.y89_c00266{bottom:186.180000px;}
.y88_c00266{bottom:202.683000px;}
.y87_c00266{bottom:220.050000px;}
.y86_c00266{bottom:237.600000px;}
.y7e_c00266{bottom:255.374010px;}
.y7f_c00266{bottom:255.374214px;}
.y85_c00266{bottom:255.374256px;}
.y81_c00266{bottom:255.374262px;}
.y80_c00266{bottom:255.374460px;}
.y82_c00266{bottom:255.374544px;}
.y83_c00266{bottom:255.374748px;}
.y84_c00266{bottom:255.374910px;}
.y76_c00266{bottom:275.150436px;}
.y78_c00266{bottom:275.150502px;}
.y7d_c00266{bottom:275.150520px;}
.y79_c00266{bottom:275.150544px;}
.y7a_c00266{bottom:275.150550px;}
.y7b_c00266{bottom:275.150616px;}
.y75_c00266{bottom:275.150892px;}
.y77_c00266{bottom:275.150958px;}
.y7c_c00266{bottom:275.151258px;}
.y74_c00266{bottom:290.119938px;}
.y73_c00266{bottom:290.120316px;}
.y72_c00266{bottom:290.120574px;}
.y71_c00266{bottom:290.121270px;}
.y70_c00266{bottom:290.121768px;}
.y6f_c00266{bottom:290.122062px;}
.y6e_c00266{bottom:290.122098px;}
.y6d_c00266{bottom:290.122656px;}
.y6c_c00266{bottom:290.123292px;}
.y65_c00266{bottom:307.587312px;}
.y66_c00266{bottom:307.587936px;}
.y67_c00266{bottom:307.588122px;}
.y6a_c00266{bottom:307.588236px;}
.y6b_c00266{bottom:307.588260px;}
.y69_c00266{bottom:307.588410px;}
.y68_c00266{bottom:307.588824px;}
.y64_c00266{bottom:324.273888px;}
.y5f_c00266{bottom:324.274452px;}
.y5c_c00266{bottom:324.274464px;}
.y60_c00266{bottom:324.274554px;}
.y63_c00266{bottom:324.274566px;}
.y61_c00266{bottom:324.274578px;}
.y5e_c00266{bottom:324.274770px;}
.y5d_c00266{bottom:324.274926px;}
.y62_c00266{bottom:324.275262px;}
.y51_c00266{bottom:338.847990px;}
.y52_c00266{bottom:339.260196px;}
.y53_c00266{bottom:339.723294px;}
.y54_c00266{bottom:340.329912px;}
.y55_c00266{bottom:340.540428px;}
.y56_c00266{bottom:341.022726px;}
.y57_c00266{bottom:341.225406px;}
.y58_c00266{bottom:341.573118px;}
.y59_c00266{bottom:342.240516px;}
.y5a_c00266{bottom:342.674646px;}
.y5b_c00266{bottom:343.269174px;}
.y4a_c00266{bottom:355.319010px;}
.y4b_c00266{bottom:356.026848px;}
.y4c_c00266{bottom:356.586558px;}
.y4d_c00266{bottom:357.637932px;}
.y4e_c00266{bottom:357.918036px;}
.y4f_c00266{bottom:358.800546px;}
.y50_c00266{bottom:359.008794px;}
.y47_c00266{bottom:376.377288px;}
.y49_c00266{bottom:376.377534px;}
.y44_c00266{bottom:376.377636px;}
.y46_c00266{bottom:376.377786px;}
.y45_c00266{bottom:376.377840px;}
.y48_c00266{bottom:376.377972px;}
.y43_c00266{bottom:376.378230px;}
.y3b_c00266{bottom:389.341500px;}
.y3c_c00266{bottom:389.746320px;}
.y3d_c00266{bottom:390.070338px;}
.y3e_c00266{bottom:390.694992px;}
.y3f_c00266{bottom:391.123374px;}
.y40_c00266{bottom:391.327638px;}
.y41_c00266{bottom:392.140860px;}
.y42_c00266{bottom:392.390358px;}
.y3a_c00266{bottom:407.972856px;}
.y31_c00266{bottom:422.011446px;}
.y32_c00266{bottom:422.670691px;}
.y33_c00266{bottom:422.873425px;}
.y34_c00266{bottom:423.439552px;}
.y35_c00266{bottom:423.885711px;}
.y36_c00266{bottom:424.154443px;}
.y37_c00266{bottom:424.899420px;}
.y38_c00266{bottom:426.101434px;}
.y39_c00266{bottom:426.479878px;}
.y2c_c00266{bottom:440.371500px;}
.y2d_c00266{bottom:441.055891px;}
.y2e_c00266{bottom:441.986139px;}
.y2f_c00266{bottom:443.060433px;}
.y30_c00266{bottom:443.829103px;}
.y22_c00266{bottom:457.648500px;}
.y23_c00266{bottom:457.917000px;}
.y24_c00266{bottom:458.764500px;}
.y25_c00266{bottom:459.012000px;}
.y26_c00266{bottom:459.205500px;}
.y27_c00266{bottom:459.757500px;}
.y28_c00266{bottom:459.997500px;}
.y29_c00266{bottom:460.603500px;}
.y2a_c00266{bottom:460.743000px;}
.y2b_c00266{bottom:461.008500px;}
.y1c_c00266{bottom:473.850000px;}
.y1d_c00266{bottom:474.817500px;}
.y1e_c00266{bottom:475.684500px;}
.y1f_c00266{bottom:476.065500px;}
.y20_c00266{bottom:476.883000px;}
.y21_c00266{bottom:478.065000px;}
.y15_c00266{bottom:492.210000px;}
.y16_c00266{bottom:492.714000px;}
.y17_c00266{bottom:492.976500px;}
.y18_c00266{bottom:493.324500px;}
.y19_c00266{bottom:494.062500px;}
.y1a_c00266{bottom:494.782500px;}
.y1b_c00266{bottom:495.042000px;}
.yb_c00266{bottom:509.760000px;}
.yc_c00266{bottom:510.546000px;}
.yd_c00266{bottom:510.771000px;}
.ye_c00266{bottom:511.297500px;}
.yf_c00266{bottom:511.567500px;}
.y10_c00266{bottom:511.795500px;}
.y11_c00266{bottom:512.340000px;}
.y12_c00266{bottom:512.631000px;}
.y13_c00266{bottom:513.294000px;}
.y14_c00266{bottom:513.430500px;}
.ya_c00266{bottom:528.628500px;}
.y3_c00266{bottom:543.511500px;}
.y4_c00266{bottom:543.864000px;}
.y5_c00266{bottom:544.450500px;}
.y6_c00266{bottom:545.272500px;}
.y7_c00266{bottom:545.679000px;}
.y8_c00266{bottom:546.529500px;}
.y9_c00266{bottom:547.662000px;}
.y2_c00266{bottom:563.611500px;}
.y1_c00266{bottom:579.694500px;}
.h14_c00266{height:57.756497px;}
.h13_c00266{height:58.800000px;}
.ha_c00266{height:58.804968px;}
.h3_c00266{height:59.850000px;}
.hd_c00266{height:59.854309px;}
.h8_c00266{height:59.855057px;}
.h2_c00266{height:61.950000px;}
.hf_c00266{height:61.954460px;}
.h5_c00266{height:63.000000px;}
.h10_c00266{height:64.054611px;}
.hb_c00266{height:65.104687px;}
.h4_c00266{height:66.150000px;}
.he_c00266{height:66.154763px;}
.h7_c00266{height:67.200000px;}
.h11_c00266{height:68.250000px;}
.h12_c00266{height:69.300000px;}
.h6_c00266{height:73.500000px;}
.h9_c00266{height:73.506210px;}
.hc_c00266{height:74.555367px;}
.h1_c00266{height:618.750000px;}
.h0_c00266{height:619.050000px;}
.w0_c00266{width:359.100000px;}
.w1_c00266{width:359.250000px;}
.x0_c00266{left:0.000000px;}
.x33_c00266{left:13.193964px;}
.x41_c00266{left:21.327708px;}
.x2_c00266{left:23.490000px;}
.x70_c00266{left:25.653000px;}
.x64_c00266{left:29.160000px;}
.x6b_c00266{left:40.230000px;}
.x51_c00266{left:42.388890px;}
.x7b_c00266{left:44.010000px;}
.x27_c00266{left:45.234000px;}
.x9_c00266{left:47.971500px;}
.x4a_c00266{left:48.982542px;}
.x5b_c00266{left:52.647276px;}
.x34_c00266{left:57.096313px;}
.x1f_c00266{left:61.441500px;}
.x58_c00266{left:64.529346px;}
.xf_c00266{left:66.151500px;}
.x45_c00266{left:68.755218px;}
.x35_c00266{left:70.613962px;}
.x2f_c00266{left:75.760500px;}
.x3b_c00266{left:78.183000px;}
.x10_c00266{left:79.651500px;}
.x20_c00266{left:81.621000px;}
.x17_c00266{left:84.127500px;}
.xa_c00266{left:87.048000px;}
.x78_c00266{left:89.370000px;}
.x52_c00266{left:92.883162px;}
.x5c_c00266{left:96.659112px;}
.x6c_c00266{left:97.740000px;}
.x18_c00266{left:101.397000px;}
.x3_c00266{left:102.870000px;}
.x71_c00266{left:103.953000px;}
.x3c_c00266{left:105.184500px;}
.x21_c00266{left:108.427500px;}
.x42_c00266{left:110.433042px;}
.x67_c00266{left:111.780000px;}
.x53_c00266{left:114.484776px;}
.x28_c00266{left:115.912500px;}
.x7a_c00266{left:118.998000px;}
.x4b_c00266{left:120.247968px;}
.x73_c00266{left:126.090000px;}
.x4_c00266{left:129.060000px;}
.x54_c00266{left:131.495724px;}
.x11_c00266{left:132.841500px;}
.x4c_c00266{left:134.290464px;}
.x6d_c00266{left:135.423000px;}
.x29_c00266{left:136.494000px;}
.x36_c00266{left:138.095707px;}
.x60_c00266{left:140.132652px;}
.xb_c00266{left:141.874500px;}
.x25_c00266{left:145.188000px;}
.x30_c00266{left:147.318000px;}
.x75_c00266{left:148.500000px;}
.x69_c00266{left:152.010000px;}
.x12_c00266{left:153.361500px;}
.x1_c00266{left:154.980000px;}
.x37_c00266{left:155.997739px;}
.x3d_c00266{left:157.239000px;}
.x61_c00266{left:159.033870px;}
.x65_c00266{left:160.650000px;}
.x19_c00266{left:162.693000px;}
.x22_c00266{left:165.142500px;}
.x4d_c00266{left:166.480812px;}
.xc_c00266{left:168.937500px;}
.x26_c00266{left:170.574000px;}
.x6a_c00266{left:173.340000px;}
.x46_c00266{left:176.133348px;}
.x1a_c00266{left:180.253500px;}
.x5_c00266{left:181.980000px;}
.x43_c00266{left:184.147662px;}
.x6e_c00266{left:188.814000px;}
.x3e_c00266{left:192.937500px;}
.x47_c00266{left:194.849682px;}
.x68_c00266{left:196.020000px;}
.x2a_c00266{left:198.610500px;}
.x6_c00266{left:203.040000px;}
.x38_c00266{left:205.686952px;}
.x74_c00266{left:207.090000px;}
.x3f_c00266{left:209.959500px;}
.x13_c00266{left:211.681500px;}
.x7c_c00266{left:213.840000px;}
.x56_c00266{left:216.821214px;}
.x2b_c00266{left:218.584500px;}
.x23_c00266{left:220.479000px;}
.x1b_c00266{left:222.096000px;}
.xd_c00266{left:225.661500px;}
.x31_c00266{left:229.956000px;}
.x5d_c00266{left:231.938088px;}
.x62_c00266{left:235.450368px;}
.x59_c00266{left:237.880830px;}
.x24_c00266{left:240.477000px;}
.x1c_c00266{left:244.509000px;}
.x66_c00266{left:245.700000px;}
.x4e_c00266{left:247.710396px;}
.x6f_c00266{left:249.019500px;}
.x44_c00266{left:250.302684px;}
.x76_c00266{left:251.370000px;}
.x48_c00266{left:253.640058px;}
.x55_c00266{left:256.514724px;}
.x7_c00266{left:257.850000px;}
.x14_c00266{left:259.201500px;}
.x5e_c00266{left:261.370818px;}
.x5a_c00266{left:264.613182px;}
.x49_c00266{left:267.493554px;}
.x2c_c00266{left:269.061000px;}
.x77_c00266{left:273.780000px;}
.x4f_c00266{left:276.636852px;}
.x8_c00266{left:277.830000px;}
.x2d_c00266{left:280.683000px;}
.x15_c00266{left:282.961500px;}
.x39_c00266{left:285.801366px;}
.x5f_c00266{left:287.563098px;}
.x32_c00266{left:289.084500px;}
.x63_c00266{left:292.154040px;}
.x72_c00266{left:293.493000px;}
.x1d_c00266{left:295.474500px;}
.x40_c00266{left:298.519500px;}
.xe_c00266{left:301.171500px;}
.x2e_c00266{left:302.767500px;}
.x16_c00266{left:304.831500px;}
.x1e_c00266{left:306.016500px;}
.x79_c00266{left:308.070000px;}
.x3a_c00266{left:310.988703px;}
.x57_c00266{left:312.947556px;}
.x50_c00266{left:316.304430px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.fs12_c00266{font-size:51.339108pt;}
.fs11_c00266{font-size:52.266667pt;}
.fs8_c00266{font-size:52.271083pt;}
.fs1_c00266{font-size:53.200000pt;}
.fsb_c00266{font-size:53.203830pt;}
.fs6_c00266{font-size:53.204495pt;}
.fs0_c00266{font-size:55.066667pt;}
.fsd_c00266{font-size:55.070631pt;}
.fs3_c00266{font-size:56.000000pt;}
.fse_c00266{font-size:56.937432pt;}
.fs9_c00266{font-size:57.870833pt;}
.fs2_c00266{font-size:58.800000pt;}
.fsc_c00266{font-size:58.804233pt;}
.fs5_c00266{font-size:59.733333pt;}
.fsf_c00266{font-size:60.666667pt;}
.fs10_c00266{font-size:61.600000pt;}
.fs4_c00266{font-size:65.333333pt;}
.fs7_c00266{font-size:65.338854pt;}
.fsa_c00266{font-size:66.271438pt;}
.y0_c00266{bottom:0.000000pt;}
.ya0_c00266{bottom:26.532000pt;}
.y9f_c00266{bottom:42.530993pt;}
.y9e_c00266{bottom:42.837013pt;}
.y9d_c00266{bottom:43.567453pt;}
.y9c_c00266{bottom:43.833653pt;}
.y9b_c00266{bottom:44.153153pt;}
.y9a_c00266{bottom:45.078573pt;}
.y99_c00266{bottom:45.324473pt;}
.y98_c00266{bottom:45.543073pt;}
.y97_c00266{bottom:46.321333pt;}
.y96_c00266{bottom:58.473333pt;}
.y95_c00266{bottom:73.573333pt;}
.y94_c00266{bottom:89.760000pt;}
.y93_c00266{bottom:103.908000pt;}
.y92_c00266{bottom:118.677333pt;}
.y91_c00266{bottom:134.273333pt;}
.y8a_c00266{bottom:147.362667pt;}
.y8b_c00266{bottom:148.353333pt;}
.y8c_c00266{bottom:148.572000pt;}
.y8d_c00266{bottom:149.141333pt;}
.y8e_c00266{bottom:149.492000pt;}
.y8f_c00266{bottom:149.782667pt;}
.y90_c00266{bottom:149.993333pt;}
.y89_c00266{bottom:165.493333pt;}
.y88_c00266{bottom:180.162667pt;}
.y87_c00266{bottom:195.600000pt;}
.y86_c00266{bottom:211.200000pt;}
.y7e_c00266{bottom:226.999120pt;}
.y7f_c00266{bottom:226.999301pt;}
.y85_c00266{bottom:226.999339pt;}
.y81_c00266{bottom:226.999344pt;}
.y80_c00266{bottom:226.999520pt;}
.y82_c00266{bottom:226.999595pt;}
.y83_c00266{bottom:226.999776pt;}
.y84_c00266{bottom:226.999920pt;}
.y76_c00266{bottom:244.578165pt;}
.y78_c00266{bottom:244.578224pt;}
.y7d_c00266{bottom:244.578240pt;}
.y79_c00266{bottom:244.578261pt;}
.y7a_c00266{bottom:244.578267pt;}
.y7b_c00266{bottom:244.578325pt;}
.y75_c00266{bottom:244.578571pt;}
.y77_c00266{bottom:244.578629pt;}
.y7c_c00266{bottom:244.578896pt;}
.y74_c00266{bottom:257.884389pt;}
.y73_c00266{bottom:257.884725pt;}
.y72_c00266{bottom:257.884955pt;}
.y71_c00266{bottom:257.885573pt;}
.y70_c00266{bottom:257.886016pt;}
.y6f_c00266{bottom:257.886277pt;}
.y6e_c00266{bottom:257.886309pt;}
.y6d_c00266{bottom:257.886805pt;}
.y6c_c00266{bottom:257.887371pt;}
.y65_c00266{bottom:273.410944pt;}
.y66_c00266{bottom:273.411499pt;}
.y67_c00266{bottom:273.411664pt;}
.y6a_c00266{bottom:273.411765pt;}
.y6b_c00266{bottom:273.411787pt;}
.y69_c00266{bottom:273.411920pt;}
.y68_c00266{bottom:273.412288pt;}
.y64_c00266{bottom:288.243456pt;}
.y5f_c00266{bottom:288.243957pt;}
.y5c_c00266{bottom:288.243968pt;}
.y60_c00266{bottom:288.244048pt;}
.y63_c00266{bottom:288.244059pt;}
.y61_c00266{bottom:288.244069pt;}
.y5e_c00266{bottom:288.244240pt;}
.y5d_c00266{bottom:288.244379pt;}
.y62_c00266{bottom:288.244677pt;}
.y51_c00266{bottom:301.198213pt;}
.y52_c00266{bottom:301.564619pt;}
.y53_c00266{bottom:301.976261pt;}
.y54_c00266{bottom:302.515477pt;}
.y55_c00266{bottom:302.702603pt;}
.y56_c00266{bottom:303.131312pt;}
.y57_c00266{bottom:303.311472pt;}
.y58_c00266{bottom:303.620549pt;}
.y59_c00266{bottom:304.213792pt;}
.y5a_c00266{bottom:304.599685pt;}
.y5b_c00266{bottom:305.128155pt;}
.y4a_c00266{bottom:315.839120pt;}
.y4b_c00266{bottom:316.468309pt;}
.y4c_c00266{bottom:316.965829pt;}
.y4d_c00266{bottom:317.900384pt;}
.y4e_c00266{bottom:318.149365pt;}
.y4f_c00266{bottom:318.933819pt;}
.y50_c00266{bottom:319.118928pt;}
.y47_c00266{bottom:334.557589pt;}
.y49_c00266{bottom:334.557808pt;}
.y44_c00266{bottom:334.557899pt;}
.y46_c00266{bottom:334.558032pt;}
.y45_c00266{bottom:334.558080pt;}
.y48_c00266{bottom:334.558197pt;}
.y43_c00266{bottom:334.558427pt;}
.y3b_c00266{bottom:346.081333pt;}
.y3c_c00266{bottom:346.441173pt;}
.y3d_c00266{bottom:346.729189pt;}
.y3e_c00266{bottom:347.284437pt;}
.y3f_c00266{bottom:347.665221pt;}
.y40_c00266{bottom:347.846789pt;}
.y41_c00266{bottom:348.569653pt;}
.y42_c00266{bottom:348.791429pt;}
.y3a_c00266{bottom:362.642539pt;}
.y31_c00266{bottom:375.121285pt;}
.y32_c00266{bottom:375.707281pt;}
.y33_c00266{bottom:375.887489pt;}
.y34_c00266{bottom:376.390713pt;}
.y35_c00266{bottom:376.787299pt;}
.y36_c00266{bottom:377.026172pt;}
.y37_c00266{bottom:377.688373pt;}
.y38_c00266{bottom:378.756831pt;}
.y39_c00266{bottom:379.093225pt;}
.y2c_c00266{bottom:391.441333pt;}
.y2d_c00266{bottom:392.049681pt;}
.y2e_c00266{bottom:392.876568pt;}
.y2f_c00266{bottom:393.831496pt;}
.y30_c00266{bottom:394.514759pt;}
.y22_c00266{bottom:406.798667pt;}
.y23_c00266{bottom:407.037333pt;}
.y24_c00266{bottom:407.790667pt;}
.y25_c00266{bottom:408.010667pt;}
.y26_c00266{bottom:408.182667pt;}
.y27_c00266{bottom:408.673333pt;}
.y28_c00266{bottom:408.886667pt;}
.y29_c00266{bottom:409.425333pt;}
.y2a_c00266{bottom:409.549333pt;}
.y2b_c00266{bottom:409.785333pt;}
.y1c_c00266{bottom:421.200000pt;}
.y1d_c00266{bottom:422.060000pt;}
.y1e_c00266{bottom:422.830667pt;}
.y1f_c00266{bottom:423.169333pt;}
.y20_c00266{bottom:423.896000pt;}
.y21_c00266{bottom:424.946667pt;}
.y15_c00266{bottom:437.520000pt;}
.y16_c00266{bottom:437.968000pt;}
.y17_c00266{bottom:438.201333pt;}
.y18_c00266{bottom:438.510667pt;}
.y19_c00266{bottom:439.166667pt;}
.y1a_c00266{bottom:439.806667pt;}
.y1b_c00266{bottom:440.037333pt;}
.yb_c00266{bottom:453.120000pt;}
.yc_c00266{bottom:453.818667pt;}
.yd_c00266{bottom:454.018667pt;}
.ye_c00266{bottom:454.486667pt;}
.yf_c00266{bottom:454.726667pt;}
.y10_c00266{bottom:454.929333pt;}
.y11_c00266{bottom:455.413333pt;}
.y12_c00266{bottom:455.672000pt;}
.y13_c00266{bottom:456.261333pt;}
.y14_c00266{bottom:456.382667pt;}
.ya_c00266{bottom:469.892000pt;}
.y3_c00266{bottom:483.121333pt;}
.y4_c00266{bottom:483.434667pt;}
.y5_c00266{bottom:483.956000pt;}
.y6_c00266{bottom:484.686667pt;}
.y7_c00266{bottom:485.048000pt;}
.y8_c00266{bottom:485.804000pt;}
.y9_c00266{bottom:486.810667pt;}
.y2_c00266{bottom:500.988000pt;}
.y1_c00266{bottom:515.284000pt;}
.h14_c00266{height:51.339108pt;}
.h13_c00266{height:52.266667pt;}
.ha_c00266{height:52.271083pt;}
.h3_c00266{height:53.200000pt;}
.hd_c00266{height:53.203830pt;}
.h8_c00266{height:53.204495pt;}
.h2_c00266{height:55.066667pt;}
.hf_c00266{height:55.070631pt;}
.h5_c00266{height:56.000000pt;}
.h10_c00266{height:56.937432pt;}
.hb_c00266{height:57.870833pt;}
.h4_c00266{height:58.800000pt;}
.he_c00266{height:58.804233pt;}
.h7_c00266{height:59.733333pt;}
.h11_c00266{height:60.666667pt;}
.h12_c00266{height:61.600000pt;}
.h6_c00266{height:65.333333pt;}
.h9_c00266{height:65.338854pt;}
.hc_c00266{height:66.271438pt;}
.h1_c00266{height:550.000000pt;}
.h0_c00266{height:550.266667pt;}
.w0_c00266{width:319.200000pt;}
.w1_c00266{width:319.333333pt;}
.x0_c00266{left:0.000000pt;}
.x33_c00266{left:11.727968pt;}
.x41_c00266{left:18.957963pt;}
.x2_c00266{left:20.880000pt;}
.x70_c00266{left:22.802667pt;}
.x64_c00266{left:25.920000pt;}
.x6b_c00266{left:35.760000pt;}
.x51_c00266{left:37.679013pt;}
.x7b_c00266{left:39.120000pt;}
.x27_c00266{left:40.208000pt;}
.x9_c00266{left:42.641333pt;}
.x4a_c00266{left:43.540037pt;}
.x5b_c00266{left:46.797579pt;}
.x34_c00266{left:50.752279pt;}
.x1f_c00266{left:54.614667pt;}
.x58_c00266{left:57.359419pt;}
.xf_c00266{left:58.801333pt;}
.x45_c00266{left:61.115749pt;}
.x35_c00266{left:62.767967pt;}
.x2f_c00266{left:67.342667pt;}
.x3b_c00266{left:69.496000pt;}
.x10_c00266{left:70.801333pt;}
.x20_c00266{left:72.552000pt;}
.x17_c00266{left:74.780000pt;}
.xa_c00266{left:77.376000pt;}
.x78_c00266{left:79.440000pt;}
.x52_c00266{left:82.562811pt;}
.x5c_c00266{left:85.919211pt;}
.x6c_c00266{left:86.880000pt;}
.x18_c00266{left:90.130667pt;}
.x3_c00266{left:91.440000pt;}
.x71_c00266{left:92.402667pt;}
.x3c_c00266{left:93.497333pt;}
.x21_c00266{left:96.380000pt;}
.x42_c00266{left:98.162704pt;}
.x67_c00266{left:99.360000pt;}
.x53_c00266{left:101.764245pt;}
.x28_c00266{left:103.033333pt;}
.x7a_c00266{left:105.776000pt;}
.x4b_c00266{left:106.887083pt;}
.x73_c00266{left:112.080000pt;}
.x4_c00266{left:114.720000pt;}
.x54_c00266{left:116.885088pt;}
.x11_c00266{left:118.081333pt;}
.x4c_c00266{left:119.369301pt;}
.x6d_c00266{left:120.376000pt;}
.x29_c00266{left:121.328000pt;}
.x36_c00266{left:122.751740pt;}
.x60_c00266{left:124.562357pt;}
.xb_c00266{left:126.110667pt;}
.x25_c00266{left:129.056000pt;}
.x30_c00266{left:130.949333pt;}
.x75_c00266{left:132.000000pt;}
.x69_c00266{left:135.120000pt;}
.x12_c00266{left:136.321333pt;}
.x1_c00266{left:137.760000pt;}
.x37_c00266{left:138.664657pt;}
.x3d_c00266{left:139.768000pt;}
.x61_c00266{left:141.363440pt;}
.x65_c00266{left:142.800000pt;}
.x19_c00266{left:144.616000pt;}
.x22_c00266{left:146.793333pt;}
.x4d_c00266{left:147.982944pt;}
.xc_c00266{left:150.166667pt;}
.x26_c00266{left:151.621333pt;}
.x6a_c00266{left:154.080000pt;}
.x46_c00266{left:156.562976pt;}
.x1a_c00266{left:160.225333pt;}
.x5_c00266{left:161.760000pt;}
.x43_c00266{left:163.686811pt;}
.x6e_c00266{left:167.834667pt;}
.x3e_c00266{left:171.500000pt;}
.x47_c00266{left:173.199717pt;}
.x68_c00266{left:174.240000pt;}
.x2a_c00266{left:176.542667pt;}
.x6_c00266{left:180.480000pt;}
.x38_c00266{left:182.832847pt;}
.x74_c00266{left:184.080000pt;}
.x3f_c00266{left:186.630667pt;}
.x13_c00266{left:188.161333pt;}
.x7c_c00266{left:190.080000pt;}
.x56_c00266{left:192.729968pt;}
.x2b_c00266{left:194.297333pt;}
.x23_c00266{left:195.981333pt;}
.x1b_c00266{left:197.418667pt;}
.xd_c00266{left:200.588000pt;}
.x31_c00266{left:204.405333pt;}
.x5d_c00266{left:206.167189pt;}
.x62_c00266{left:209.289216pt;}
.x59_c00266{left:211.449627pt;}
.x24_c00266{left:213.757333pt;}
.x1c_c00266{left:217.341333pt;}
.x66_c00266{left:218.400000pt;}
.x4e_c00266{left:220.187019pt;}
.x6f_c00266{left:221.350667pt;}
.x44_c00266{left:222.491275pt;}
.x76_c00266{left:223.440000pt;}
.x48_c00266{left:225.457829pt;}
.x55_c00266{left:228.013088pt;}
.x7_c00266{left:229.200000pt;}
.x14_c00266{left:230.401333pt;}
.x5e_c00266{left:232.329616pt;}
.x5a_c00266{left:235.211717pt;}
.x49_c00266{left:237.772048pt;}
.x2c_c00266{left:239.165333pt;}
.x77_c00266{left:243.360000pt;}
.x4f_c00266{left:245.899424pt;}
.x8_c00266{left:246.960000pt;}
.x2d_c00266{left:249.496000pt;}
.x15_c00266{left:251.521333pt;}
.x39_c00266{left:254.045659pt;}
.x5f_c00266{left:255.611643pt;}
.x32_c00266{left:256.964000pt;}
.x63_c00266{left:259.692480pt;}
.x72_c00266{left:260.882667pt;}
.x1d_c00266{left:262.644000pt;}
.x40_c00266{left:265.350667pt;}
.xe_c00266{left:267.708000pt;}
.x2e_c00266{left:269.126667pt;}
.x16_c00266{left:270.961333pt;}
.x1e_c00266{left:272.014667pt;}
.x79_c00266{left:273.840000pt;}
.x3a_c00266{left:276.434403pt;}
.x57_c00266{left:278.175605pt;}
.x50_c00266{left:281.159493pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00267 {
    display:none;
  }
  .loading-indicator_c00267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00267 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00267 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00267" -> "#page-container .classname_c00267")
 */
.pf_c00267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00267 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00267 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00267 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00267 {overflow:visible;}
  }
}
.c_c00267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00267 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00267:after { /* webkit #35443 */
  content: '';
}
.t_c00267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00267 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00267 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00267 { /* info for Javascript */
  display:none;
}
.l_c00267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00267:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00267 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00267.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md4_c00267{transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);}
.m31_c00267{transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132240,0.000000,0.000000,0.250000,0,0);}
.md5_c00267{transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);}
.mdc_c00267{transform:matrix(0.140870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140870,0.000000,0.000000,0.250000,0,0);}
.ma9_c00267{transform:matrix(0.144305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144305,0.000000,0.000000,0.250000,0,0);}
.ma0_c00267{transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.mb6_c00267{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);}
.m83_c00267{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.ma2_c00267{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.ma7_c00267{transform:matrix(0.152045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152045,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.mb5_c00267{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m85_c00267{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.mb9_c00267{transform:matrix(0.157640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157640,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00267{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m5b_c00267{transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162045,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.m71_c00267{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.m76_c00267{transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);}
.mad_c00267{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m8b_c00267{transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m92_c00267{transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165230,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.m1a_c00267{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m45_c00267{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.mc6_c00267{transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166965,0.000000,0.000000,0.250000,0,0);}
.m77_c00267{transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);}
.m9f_c00267{transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168080,0.000000,0.000000,0.250000,0,0);}
.m6e_c00267{transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168205,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m86_c00267{transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);}
.mdb_c00267{transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00267{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m55_c00267{transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170415,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.m63_c00267{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m9d_c00267{transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);}
.m57_c00267{transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.me1_c00267{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.me0_c00267{transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);}
.m75_c00267{transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);}
.mb4_c00267{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.mb1_c00267{transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);}
.mbe_c00267{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);}
.ma1_c00267{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.mc3_c00267{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);}
.mb8_c00267{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178970,0.000000,0.000000,0.250000,0,0);}
.m3c_c00267{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.179530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179530,0.000000,0.000000,0.250000,0,0);}
.m82_c00267{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.m8f_c00267{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m3f_c00267{transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);}
.m54_c00267{transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);}
.m61_c00267{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m9e_c00267{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181785,0.000000,0.000000,0.250000,0,0);}
.md9_c00267{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m47_c00267{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00267{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.md8_c00267{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.md7_c00267{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.m87_c00267{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m5c_c00267{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.mae_c00267{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m84_c00267{transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);}
.mc1_c00267{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);}
.mbf_c00267{transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);}
.m94_c00267{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m4a_c00267{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00267{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.mb3_c00267{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);}
.ma3_c00267{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);}
.me2_c00267{transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);}
.m79_c00267{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00267{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m6d_c00267{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192490,0.000000,0.000000,0.250000,0,0);}
.m88_c00267{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m6b_c00267{transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);}
.mda_c00267{transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);}
.m95_c00267{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m58_c00267{transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);}
.m7a_c00267{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m66_c00267{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m65_c00267{transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);}
.m51_c00267{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.me6_c00267{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.m9b_c00267{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.mca_c00267{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m5f_c00267{transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);}
.mbc_c00267{transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);}
.md6_c00267{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m7d_c00267{transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);}
.m8c_c00267{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.m7f_c00267{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.mab_c00267{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.mc2_c00267{transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m5a_c00267{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.mdd_c00267{transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.m93_c00267{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);}
.mac_c00267{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m4d_c00267{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.mb0_c00267{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m99_c00267{transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);}
.m40_c00267{transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);}
.m39_c00267{transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);}
.m6f_c00267{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.mba_c00267{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m73_c00267{transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);}
.m4b_c00267{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m56_c00267{transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.md2_c00267{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m4c_c00267{transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);}
.mb7_c00267{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m60_c00267{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m44_c00267{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m80_c00267{transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);}
.m67_c00267{transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);}
.mc5_c00267{transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m7b_c00267{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.ma4_c00267{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m8d_c00267{transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);}
.m5d_c00267{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mc0_c00267{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m8e_c00267{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.maf_c00267{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.me4_c00267{transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);}
.m91_c00267{transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);}
.m52_c00267{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.me3_c00267{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m35_c00267{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00267{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m68_c00267{transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215835,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.me7_c00267{transform:matrix(0.215991,0.001296,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215991,0.001296,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215991,0.001296,-0.001500,0.249996,0,0);}
.mcd_c00267{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.mc9_c00267{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00267{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00267{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.m9a_c00267{transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);}
.m72_c00267{transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);}
.m90_c00267{transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);}
.m64_c00267{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.mde_c00267{transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);}
.mc8_c00267{transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);}
.m78_c00267{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.md1_c00267{transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);}
.me5_c00267{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.mbd_c00267{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.maa_c00267{transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);}
.m69_c00267{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.mc7_c00267{transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);}
.mce_c00267{transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);}
.m50_c00267{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.ma5_c00267{transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);}
.m98_c00267{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00267{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.mcf_c00267{transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);}
.m70_c00267{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);}
.md3_c00267{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);}
.m53_c00267{transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);}
.m49_c00267{transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00267{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m4f_c00267{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.mcb_c00267{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.mb2_c00267{transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);}
.mdf_c00267{transform:matrix(0.259225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259225,0.000000,0.000000,0.250000,0,0);}
.md0_c00267{transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);}
.m42_c00267{transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00267{transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00267{transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.354210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354210,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.483775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483775,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.522665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522665,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:0.000000px;}
.fc0_c00267{color:transparent;}
.fs10_c00267{font-size:48.300869px;}
.fse_c00267{font-size:52.500000px;}
.fs8_c00267{font-size:58.800000px;}
.fs7_c00267{font-size:59.850000px;}
.fs4_c00267{font-size:60.900000px;}
.fs1_c00267{font-size:61.950000px;}
.fsd_c00267{font-size:63.000000px;}
.fsc_c00267{font-size:65.100000px;}
.fs6_c00267{font-size:66.150000px;}
.fs5_c00267{font-size:67.200000px;}
.fsa_c00267{font-size:68.250000px;}
.fs2_c00267{font-size:69.300000px;}
.fsf_c00267{font-size:70.350000px;}
.fsb_c00267{font-size:71.400000px;}
.fs9_c00267{font-size:72.450000px;}
.fs3_c00267{font-size:74.550000px;}
.fs0_c00267{font-size:89.250000px;}
.y0_c00267{bottom:0.000000px;}
.y30_c00267{bottom:9.730500px;}
.y2f_c00267{bottom:27.751500px;}
.y2e_c00267{bottom:45.487500px;}
.y2d_c00267{bottom:62.323500px;}
.y2c_c00267{bottom:79.027500px;}
.y2b_c00267{bottom:96.874500px;}
.y2a_c00267{bottom:114.721500px;}
.y29_c00267{bottom:131.230500px;}
.y28_c00267{bottom:149.518500px;}
.y27_c00267{bottom:167.286000px;}
.y26_c00267{bottom:184.530000px;}
.y25_c00267{bottom:202.591500px;}
.y24_c00267{bottom:217.431000px;}
.y23_c00267{bottom:217.683000px;}
.y22_c00267{bottom:218.367000px;}
.y21_c00267{bottom:218.889000px;}
.y20_c00267{bottom:219.138000px;}
.y1f_c00267{bottom:219.595500px;}
.y1e_c00267{bottom:220.053000px;}
.y1d_c00267{bottom:236.553000px;}
.y1c_c00267{bottom:251.644500px;}
.y1b_c00267{bottom:251.796000px;}
.y1a_c00267{bottom:252.501000px;}
.y19_c00267{bottom:252.718500px;}
.y18_c00267{bottom:253.012500px;}
.y17_c00267{bottom:253.203000px;}
.y16_c00267{bottom:253.827000px;}
.y15_c00267{bottom:254.040000px;}
.y14_c00267{bottom:254.343000px;}
.y13_c00267{bottom:270.000000px;}
.y12_c00267{bottom:287.221500px;}
.y11_c00267{bottom:304.335000px;}
.y10_c00267{bottom:321.481500px;}
.yf_c00267{bottom:338.517000px;}
.ye_c00267{bottom:356.217000px;}
.yd_c00267{bottom:374.005500px;}
.yc_c00267{bottom:390.750000px;}
.yb_c00267{bottom:408.292500px;}
.ya_c00267{bottom:424.645500px;}
.y9_c00267{bottom:442.435500px;}
.y8_c00267{bottom:459.928500px;}
.y7_c00267{bottom:476.269500px;}
.y6_c00267{bottom:493.764000px;}
.y5_c00267{bottom:510.570000px;}
.y4_c00267{bottom:528.517500px;}
.y3_c00267{bottom:544.824000px;}
.y2_c00267{bottom:563.338500px;}
.y1_c00267{bottom:575.776500px;}
.h12_c00267{height:48.300869px;}
.h10_c00267{height:52.500000px;}
.ha_c00267{height:58.800000px;}
.h9_c00267{height:59.850000px;}
.h6_c00267{height:60.900000px;}
.h3_c00267{height:61.950000px;}
.hf_c00267{height:63.000000px;}
.he_c00267{height:65.100000px;}
.h8_c00267{height:66.150000px;}
.h7_c00267{height:67.200000px;}
.hc_c00267{height:68.250000px;}
.h4_c00267{height:69.300000px;}
.h11_c00267{height:70.350000px;}
.hd_c00267{height:71.400000px;}
.hb_c00267{height:72.450000px;}
.h5_c00267{height:74.550000px;}
.h2_c00267{height:89.250000px;}
.h1_c00267{height:618.750000px;}
.h0_c00267{height:619.050000px;}
.w0_c00267{width:359.100000px;}
.w1_c00267{width:359.250000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:40.230000px;}
.x36_c00267{left:41.310000px;}
.x47_c00267{left:42.930000px;}
.x69_c00267{left:54.808500px;}
.x10_c00267{left:57.240000px;}
.x59_c00267{left:59.668500px;}
.xa_c00267{left:61.290000px;}
.x52_c00267{left:63.720000px;}
.x3_c00267{left:65.070000px;}
.x2c_c00267{left:69.390000px;}
.x11_c00267{left:71.550000px;}
.x1b_c00267{left:74.790000px;}
.x44_c00267{left:78.300000px;}
.x3f_c00267{left:80.460000px;}
.x4b_c00267{left:82.350000px;}
.x48_c00267{left:85.590000px;}
.x6a_c00267{left:86.938500px;}
.x55_c00267{left:88.974000px;}
.xb_c00267{left:95.040000px;}
.x27_c00267{left:96.390000px;}
.x73_c00267{left:97.738500px;}
.x30_c00267{left:99.630000px;}
.x20_c00267{left:101.520000px;}
.x12_c00267{left:103.410000px;}
.x16_c00267{left:106.650000px;}
.x4f_c00267{left:108.000000px;}
.x37_c00267{left:110.160000px;}
.x4_c00267{left:112.860000px;}
.x40_c00267{left:114.750000px;}
.x5a_c00267{left:116.368500px;}
.x5c_c00267{left:118.638000px;}
.x17_c00267{left:122.580000px;}
.x21_c00267{left:123.930000px;}
.xc_c00267{left:125.550000px;}
.x1c_c00267{left:127.440000px;}
.x5d_c00267{left:130.138500px;}
.x2d_c00267{left:133.110000px;}
.x5_c00267{left:135.000000px;}
.x28_c00267{left:139.320000px;}
.x22_c00267{left:142.560000px;}
.x49_c00267{left:143.640000px;}
.x53_c00267{left:144.990000px;}
.x1d_c00267{left:147.420000px;}
.x13_c00267{left:153.090000px;}
.x67_c00267{left:156.598500px;}
.x2a_c00267{left:158.490000px;}
.x31_c00267{left:162.270000px;}
.x45_c00267{left:166.860000px;}
.x61_c00267{left:171.988500px;}
.x1_c00267{left:174.960000px;}
.x5f_c00267{left:178.738500px;}
.x6_c00267{left:181.170000px;}
.x6b_c00267{left:182.248500px;}
.x2e_c00267{left:183.870000px;}
.x32_c00267{left:185.760000px;}
.x4c_c00267{left:188.730000px;}
.x18_c00267{left:191.970000px;}
.x7_c00267{left:195.210000px;}
.x29_c00267{left:199.530000px;}
.x19_c00267{left:200.880000px;}
.x46_c00267{left:203.850000px;}
.x70_c00267{left:207.088500px;}
.x56_c00267{left:209.380500px;}
.x23_c00267{left:212.490000px;}
.x14_c00267{left:213.570000px;}
.x5b_c00267{left:214.648500px;}
.x33_c00267{left:215.730000px;}
.x38_c00267{left:216.810000px;}
.x8_c00267{left:218.430000px;}
.x3c_c00267{left:220.320000px;}
.x50_c00267{left:222.210000px;}
.x2f_c00267{left:224.370000px;}
.x1e_c00267{left:226.260000px;}
.x64_c00267{left:227.608500px;}
.x4d_c00267{left:229.230000px;}
.x2b_c00267{left:232.470000px;}
.x39_c00267{left:234.360000px;}
.xd_c00267{left:236.250000px;}
.x24_c00267{left:240.300000px;}
.x51_c00267{left:241.650000px;}
.x6f_c00267{left:244.078500px;}
.x62_c00267{left:245.968500px;}
.x3d_c00267{left:247.860000px;}
.x71_c00267{left:249.208500px;}
.x6c_c00267{left:250.558500px;}
.x41_c00267{left:253.530000px;}
.xe_c00267{left:258.390000px;}
.x25_c00267{left:261.090000px;}
.x65_c00267{left:264.598500px;}
.x42_c00267{left:267.300000px;}
.x54_c00267{left:268.650000px;}
.x1a_c00267{left:270.000000px;}
.x57_c00267{left:273.421500px;}
.x34_c00267{left:276.750000px;}
.x60_c00267{left:278.908500px;}
.x3a_c00267{left:279.990000px;}
.x9_c00267{left:281.610000px;}
.xf_c00267{left:283.770000px;}
.x66_c00267{left:285.118500px;}
.x58_c00267{left:287.190000px;}
.x6d_c00267{left:289.168500px;}
.x4a_c00267{left:290.250000px;}
.x1f_c00267{left:292.680000px;}
.x15_c00267{left:295.110000px;}
.x68_c00267{left:297.808500px;}
.x72_c00267{left:298.888500px;}
.x43_c00267{left:299.970000px;}
.x35_c00267{left:301.320000px;}
.x5e_c00267{left:304.828500px;}
.x26_c00267{left:305.910000px;}
.x3e_c00267{left:310.500000px;}
.x63_c00267{left:312.928500px;}
.x4e_c00267{left:325.890000px;}
.x3b_c00267{left:328.590000px;}
.x6e_c00267{left:334.528500px;}
.x74_c00267{left:351.478500px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs10_c00267{font-size:42.934106pt;}
.fse_c00267{font-size:46.666667pt;}
.fs8_c00267{font-size:52.266667pt;}
.fs7_c00267{font-size:53.200000pt;}
.fs4_c00267{font-size:54.133333pt;}
.fs1_c00267{font-size:55.066667pt;}
.fsd_c00267{font-size:56.000000pt;}
.fsc_c00267{font-size:57.866667pt;}
.fs6_c00267{font-size:58.800000pt;}
.fs5_c00267{font-size:59.733333pt;}
.fsa_c00267{font-size:60.666667pt;}
.fs2_c00267{font-size:61.600000pt;}
.fsf_c00267{font-size:62.533333pt;}
.fsb_c00267{font-size:63.466667pt;}
.fs9_c00267{font-size:64.400000pt;}
.fs3_c00267{font-size:66.266667pt;}
.fs0_c00267{font-size:79.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y30_c00267{bottom:8.649333pt;}
.y2f_c00267{bottom:24.668000pt;}
.y2e_c00267{bottom:40.433333pt;}
.y2d_c00267{bottom:55.398667pt;}
.y2c_c00267{bottom:70.246667pt;}
.y2b_c00267{bottom:86.110667pt;}
.y2a_c00267{bottom:101.974667pt;}
.y29_c00267{bottom:116.649333pt;}
.y28_c00267{bottom:132.905333pt;}
.y27_c00267{bottom:148.698667pt;}
.y26_c00267{bottom:164.026667pt;}
.y25_c00267{bottom:180.081333pt;}
.y24_c00267{bottom:193.272000pt;}
.y23_c00267{bottom:193.496000pt;}
.y22_c00267{bottom:194.104000pt;}
.y21_c00267{bottom:194.568000pt;}
.y20_c00267{bottom:194.789333pt;}
.y1f_c00267{bottom:195.196000pt;}
.y1e_c00267{bottom:195.602667pt;}
.y1d_c00267{bottom:210.269333pt;}
.y1c_c00267{bottom:223.684000pt;}
.y1b_c00267{bottom:223.818667pt;}
.y1a_c00267{bottom:224.445333pt;}
.y19_c00267{bottom:224.638667pt;}
.y18_c00267{bottom:224.900000pt;}
.y17_c00267{bottom:225.069333pt;}
.y16_c00267{bottom:225.624000pt;}
.y15_c00267{bottom:225.813333pt;}
.y14_c00267{bottom:226.082667pt;}
.y13_c00267{bottom:240.000000pt;}
.y12_c00267{bottom:255.308000pt;}
.y11_c00267{bottom:270.520000pt;}
.y10_c00267{bottom:285.761333pt;}
.yf_c00267{bottom:300.904000pt;}
.ye_c00267{bottom:316.637333pt;}
.yd_c00267{bottom:332.449333pt;}
.yc_c00267{bottom:347.333333pt;}
.yb_c00267{bottom:362.926667pt;}
.ya_c00267{bottom:377.462667pt;}
.y9_c00267{bottom:393.276000pt;}
.y8_c00267{bottom:408.825333pt;}
.y7_c00267{bottom:423.350667pt;}
.y6_c00267{bottom:438.901333pt;}
.y5_c00267{bottom:453.840000pt;}
.y4_c00267{bottom:469.793333pt;}
.y3_c00267{bottom:484.288000pt;}
.y2_c00267{bottom:500.745333pt;}
.y1_c00267{bottom:511.801333pt;}
.h12_c00267{height:42.934106pt;}
.h10_c00267{height:46.666667pt;}
.ha_c00267{height:52.266667pt;}
.h9_c00267{height:53.200000pt;}
.h6_c00267{height:54.133333pt;}
.h3_c00267{height:55.066667pt;}
.hf_c00267{height:56.000000pt;}
.he_c00267{height:57.866667pt;}
.h8_c00267{height:58.800000pt;}
.h7_c00267{height:59.733333pt;}
.hc_c00267{height:60.666667pt;}
.h4_c00267{height:61.600000pt;}
.h11_c00267{height:62.533333pt;}
.hd_c00267{height:63.466667pt;}
.hb_c00267{height:64.400000pt;}
.h5_c00267{height:66.266667pt;}
.h2_c00267{height:79.333333pt;}
.h1_c00267{height:550.000000pt;}
.h0_c00267{height:550.266667pt;}
.w0_c00267{width:319.200000pt;}
.w1_c00267{width:319.333333pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:35.760000pt;}
.x36_c00267{left:36.720000pt;}
.x47_c00267{left:38.160000pt;}
.x69_c00267{left:48.718667pt;}
.x10_c00267{left:50.880000pt;}
.x59_c00267{left:53.038667pt;}
.xa_c00267{left:54.480000pt;}
.x52_c00267{left:56.640000pt;}
.x3_c00267{left:57.840000pt;}
.x2c_c00267{left:61.680000pt;}
.x11_c00267{left:63.600000pt;}
.x1b_c00267{left:66.480000pt;}
.x44_c00267{left:69.600000pt;}
.x3f_c00267{left:71.520000pt;}
.x4b_c00267{left:73.200000pt;}
.x48_c00267{left:76.080000pt;}
.x6a_c00267{left:77.278667pt;}
.x55_c00267{left:79.088000pt;}
.xb_c00267{left:84.480000pt;}
.x27_c00267{left:85.680000pt;}
.x73_c00267{left:86.878667pt;}
.x30_c00267{left:88.560000pt;}
.x20_c00267{left:90.240000pt;}
.x12_c00267{left:91.920000pt;}
.x16_c00267{left:94.800000pt;}
.x4f_c00267{left:96.000000pt;}
.x37_c00267{left:97.920000pt;}
.x4_c00267{left:100.320000pt;}
.x40_c00267{left:102.000000pt;}
.x5a_c00267{left:103.438667pt;}
.x5c_c00267{left:105.456000pt;}
.x17_c00267{left:108.960000pt;}
.x21_c00267{left:110.160000pt;}
.xc_c00267{left:111.600000pt;}
.x1c_c00267{left:113.280000pt;}
.x5d_c00267{left:115.678667pt;}
.x2d_c00267{left:118.320000pt;}
.x5_c00267{left:120.000000pt;}
.x28_c00267{left:123.840000pt;}
.x22_c00267{left:126.720000pt;}
.x49_c00267{left:127.680000pt;}
.x53_c00267{left:128.880000pt;}
.x1d_c00267{left:131.040000pt;}
.x13_c00267{left:136.080000pt;}
.x67_c00267{left:139.198667pt;}
.x2a_c00267{left:140.880000pt;}
.x31_c00267{left:144.240000pt;}
.x45_c00267{left:148.320000pt;}
.x61_c00267{left:152.878667pt;}
.x1_c00267{left:155.520000pt;}
.x5f_c00267{left:158.878667pt;}
.x6_c00267{left:161.040000pt;}
.x6b_c00267{left:161.998667pt;}
.x2e_c00267{left:163.440000pt;}
.x32_c00267{left:165.120000pt;}
.x4c_c00267{left:167.760000pt;}
.x18_c00267{left:170.640000pt;}
.x7_c00267{left:173.520000pt;}
.x29_c00267{left:177.360000pt;}
.x19_c00267{left:178.560000pt;}
.x46_c00267{left:181.200000pt;}
.x70_c00267{left:184.078667pt;}
.x56_c00267{left:186.116000pt;}
.x23_c00267{left:188.880000pt;}
.x14_c00267{left:189.840000pt;}
.x5b_c00267{left:190.798667pt;}
.x33_c00267{left:191.760000pt;}
.x38_c00267{left:192.720000pt;}
.x8_c00267{left:194.160000pt;}
.x3c_c00267{left:195.840000pt;}
.x50_c00267{left:197.520000pt;}
.x2f_c00267{left:199.440000pt;}
.x1e_c00267{left:201.120000pt;}
.x64_c00267{left:202.318667pt;}
.x4d_c00267{left:203.760000pt;}
.x2b_c00267{left:206.640000pt;}
.x39_c00267{left:208.320000pt;}
.xd_c00267{left:210.000000pt;}
.x24_c00267{left:213.600000pt;}
.x51_c00267{left:214.800000pt;}
.x6f_c00267{left:216.958667pt;}
.x62_c00267{left:218.638667pt;}
.x3d_c00267{left:220.320000pt;}
.x71_c00267{left:221.518667pt;}
.x6c_c00267{left:222.718667pt;}
.x41_c00267{left:225.360000pt;}
.xe_c00267{left:229.680000pt;}
.x25_c00267{left:232.080000pt;}
.x65_c00267{left:235.198667pt;}
.x42_c00267{left:237.600000pt;}
.x54_c00267{left:238.800000pt;}
.x1a_c00267{left:240.000000pt;}
.x57_c00267{left:243.041333pt;}
.x34_c00267{left:246.000000pt;}
.x60_c00267{left:247.918667pt;}
.x3a_c00267{left:248.880000pt;}
.x9_c00267{left:250.320000pt;}
.xf_c00267{left:252.240000pt;}
.x66_c00267{left:253.438667pt;}
.x58_c00267{left:255.280000pt;}
.x6d_c00267{left:257.038667pt;}
.x4a_c00267{left:258.000000pt;}
.x1f_c00267{left:260.160000pt;}
.x15_c00267{left:262.320000pt;}
.x68_c00267{left:264.718667pt;}
.x72_c00267{left:265.678667pt;}
.x43_c00267{left:266.640000pt;}
.x35_c00267{left:267.840000pt;}
.x5e_c00267{left:270.958667pt;}
.x26_c00267{left:271.920000pt;}
.x3e_c00267{left:276.000000pt;}
.x63_c00267{left:278.158667pt;}
.x4e_c00267{left:289.680000pt;}
.x3b_c00267{left:292.080000pt;}
.x6e_c00267{left:297.358667pt;}
.x74_c00267{left:312.425333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00268 {
    display:none;
  }
  .loading-indicator_c00268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00268 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00268 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00268" -> "#page-container .classname_c00268")
 */
.pf_c00268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00268 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00268 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00268 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00268 {overflow:visible;}
  }
}
.c_c00268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00268 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00268:after { /* webkit #35443 */
  content: '';
}
.t_c00268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00268 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00268 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00268 { /* info for Javascript */
  display:none;
}
.l_c00268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00268:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00268 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00268.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me6_c00268{transform:matrix(0.074354,0.002156,-0.007247,0.249895,0,0);-ms-transform:matrix(0.074354,0.002156,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.074354,0.002156,-0.007247,0.249895,0,0);}
.mcb_c00268{transform:matrix(0.091170,0.001368,-0.003750,0.249972,0,0);-ms-transform:matrix(0.091170,0.001368,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.091170,0.001368,-0.003750,0.249972,0,0);}
.mb6_c00268{transform:matrix(0.097684,0.001465,-0.003750,0.249972,0,0);-ms-transform:matrix(0.097684,0.001465,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.097684,0.001465,-0.003750,0.249972,0,0);}
.md9_c00268{transform:matrix(0.097869,0.001468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.097869,0.001468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.097869,0.001468,-0.003750,0.249972,0,0);}
.m87_c00268{transform:matrix(0.110908,0.001664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.110908,0.001664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.110908,0.001664,-0.003750,0.249972,0,0);}
.mb9_c00268{transform:matrix(0.111847,0.001678,-0.003750,0.249972,0,0);-ms-transform:matrix(0.111847,0.001678,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.111847,0.001678,-0.003750,0.249972,0,0);}
.mce_c00268{transform:matrix(0.122526,0.001838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.122526,0.001838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.122526,0.001838,-0.003750,0.249972,0,0);}
.mb8_c00268{transform:matrix(0.131485,0.001972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.131485,0.001972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.131485,0.001972,-0.003750,0.249972,0,0);}
.m11_c00268{transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134370,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.134490,0.002017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.134490,0.002017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.134490,0.002017,-0.003750,0.249972,0,0);}
.m7b_c00268{transform:matrix(0.135400,0.002031,-0.003750,0.249972,0,0);-ms-transform:matrix(0.135400,0.002031,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.135400,0.002031,-0.003750,0.249972,0,0);}
.mba_c00268{transform:matrix(0.135645,0.002035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.135645,0.002035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.135645,0.002035,-0.003750,0.249972,0,0);}
.m28_c00268{transform:matrix(0.137350,0.002060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.137350,0.002060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.137350,0.002060,-0.003750,0.249972,0,0);}
.m49_c00268{transform:matrix(0.142489,0.002137,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142489,0.002137,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142489,0.002137,-0.003750,0.249972,0,0);}
.m18_c00268{transform:matrix(0.144840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144840,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.145469,0.002182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145469,0.002182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145469,0.002182,-0.003750,0.249972,0,0);}
.m22_c00268{transform:matrix(0.146019,0.002190,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146019,0.002190,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146019,0.002190,-0.003750,0.249972,0,0);}
.m3c_c00268{transform:matrix(0.146544,0.002198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146544,0.002198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146544,0.002198,-0.003750,0.249972,0,0);}
.m6c_c00268{transform:matrix(0.146569,0.002199,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146569,0.002199,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146569,0.002199,-0.003750,0.249972,0,0);}
.m80_c00268{transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);}
.m92_c00268{transform:matrix(0.149788,0.002247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149788,0.002247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149788,0.002247,-0.003750,0.249972,0,0);}
.mea_c00268{transform:matrix(0.151681,0.004399,-0.007247,0.249895,0,0);-ms-transform:matrix(0.151681,0.004399,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.151681,0.004399,-0.007247,0.249895,0,0);}
.md3_c00268{transform:matrix(0.151888,0.002278,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151888,0.002278,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151888,0.002278,-0.003750,0.249972,0,0);}
.m68_c00268{transform:matrix(0.153318,0.002300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153318,0.002300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153318,0.002300,-0.003750,0.249972,0,0);}
.m5e_c00268{transform:matrix(0.153483,0.002302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153483,0.002302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153483,0.002302,-0.003750,0.249972,0,0);}
.m57_c00268{transform:matrix(0.154378,0.002316,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154378,0.002316,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154378,0.002316,-0.003750,0.249972,0,0);}
.ma_c00268{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.mb3_c00268{transform:matrix(0.156307,0.002345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156307,0.002345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156307,0.002345,-0.003750,0.249972,0,0);}
.m6b_c00268{transform:matrix(0.156797,0.002352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156797,0.002352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156797,0.002352,-0.003750,0.249972,0,0);}
.m27_c00268{transform:matrix(0.156907,0.002354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156907,0.002354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156907,0.002354,-0.003750,0.249972,0,0);}
.m14_c00268{transform:matrix(0.157545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157545,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.158142,0.002372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158142,0.002372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158142,0.002372,-0.003750,0.249972,0,0);}
.m53_c00268{transform:matrix(0.158922,0.002384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158922,0.002384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158922,0.002384,-0.003750,0.249972,0,0);}
.mbe_c00268{transform:matrix(0.159237,0.002389,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159237,0.002389,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159237,0.002389,-0.003750,0.249972,0,0);}
.m9e_c00268{transform:matrix(0.159382,0.002391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159382,0.002391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159382,0.002391,-0.003750,0.249972,0,0);}
.md_c00268{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.mb5_c00268{transform:matrix(0.159707,0.002396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159707,0.002396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159707,0.002396,-0.003750,0.249972,0,0);}
.ma7_c00268{transform:matrix(0.159992,0.002400,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159992,0.002400,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159992,0.002400,-0.003750,0.249972,0,0);}
.m6e_c00268{transform:matrix(0.160287,0.002404,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160287,0.002404,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160287,0.002404,-0.003750,0.249972,0,0);}
.m70_c00268{transform:matrix(0.160697,0.002410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160697,0.002410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160697,0.002410,-0.003750,0.249972,0,0);}
.m73_c00268{transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);}
.mb_c00268{transform:matrix(0.162180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162180,0.000000,0.000000,0.250000,0,0);}
.me0_c00268{transform:matrix(0.162612,0.002439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162612,0.002439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162612,0.002439,-0.003750,0.249972,0,0);}
.m3a_c00268{transform:matrix(0.162752,0.002441,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162752,0.002441,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162752,0.002441,-0.003750,0.249972,0,0);}
.m71_c00268{transform:matrix(0.162867,0.002443,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162867,0.002443,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162867,0.002443,-0.003750,0.249972,0,0);}
.m76_c00268{transform:matrix(0.162912,0.002444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162912,0.002444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162912,0.002444,-0.003750,0.249972,0,0);}
.m43_c00268{transform:matrix(0.163262,0.002449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163262,0.002449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163262,0.002449,-0.003750,0.249972,0,0);}
.ma9_c00268{transform:matrix(0.163717,0.002456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163717,0.002456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163717,0.002456,-0.003750,0.249972,0,0);}
.m2_c00268{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m78_c00268{transform:matrix(0.164162,0.002462,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164162,0.002462,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164162,0.002462,-0.003750,0.249972,0,0);}
.mb1_c00268{transform:matrix(0.164442,0.002467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164442,0.002467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164442,0.002467,-0.003750,0.249972,0,0);}
.ma0_c00268{transform:matrix(0.164471,0.002467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164471,0.002467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164471,0.002467,-0.003750,0.249972,0,0);}
.m4c_c00268{transform:matrix(0.165036,0.002476,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165036,0.002476,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165036,0.002476,-0.003750,0.249972,0,0);}
.m79_c00268{transform:matrix(0.165446,0.002482,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165446,0.002482,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165446,0.002482,-0.003750,0.249972,0,0);}
.m58_c00268{transform:matrix(0.166851,0.002503,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166851,0.002503,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166851,0.002503,-0.003750,0.249972,0,0);}
.m6f_c00268{transform:matrix(0.167236,0.002509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167236,0.002509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167236,0.002509,-0.003750,0.249972,0,0);}
.m63_c00268{transform:matrix(0.167521,0.002513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167521,0.002513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167521,0.002513,-0.003750,0.249972,0,0);}
.ma8_c00268{transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);}
.m4f_c00268{transform:matrix(0.168066,0.002521,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168066,0.002521,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168066,0.002521,-0.003750,0.249972,0,0);}
.m38_c00268{transform:matrix(0.168111,0.002522,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168111,0.002522,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168111,0.002522,-0.003750,0.249972,0,0);}
.m4a_c00268{transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);}
.m8c_c00268{transform:matrix(0.168271,0.002524,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168271,0.002524,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168271,0.002524,-0.003750,0.249972,0,0);}
.m9_c00268{transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.168881,0.002533,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168881,0.002533,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168881,0.002533,-0.003750,0.249972,0,0);}
.me7_c00268{transform:matrix(0.169269,0.004909,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169269,0.004909,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169269,0.004909,-0.007247,0.249895,0,0);}
.m50_c00268{transform:matrix(0.169416,0.002541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169416,0.002541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169416,0.002541,-0.003750,0.249972,0,0);}
.m4_c00268{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m5d_c00268{transform:matrix(0.170086,0.002551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170086,0.002551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170086,0.002551,-0.003750,0.249972,0,0);}
.m83_c00268{transform:matrix(0.170511,0.002558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170511,0.002558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170511,0.002558,-0.003750,0.249972,0,0);}
.m9f_c00268{transform:matrix(0.171461,0.002572,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171461,0.002572,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171461,0.002572,-0.003750,0.249972,0,0);}
.m6_c00268{transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.171646,0.002575,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171646,0.002575,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171646,0.002575,-0.003750,0.249972,0,0);}
.m54_c00268{transform:matrix(0.172201,0.002583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172201,0.002583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172201,0.002583,-0.003750,0.249972,0,0);}
.m1a_c00268{transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);}
.mdb_c00268{transform:matrix(0.172531,0.002588,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172531,0.002588,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172531,0.002588,-0.003750,0.249972,0,0);}
.m94_c00268{transform:matrix(0.172596,0.002589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172596,0.002589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172596,0.002589,-0.003750,0.249972,0,0);}
.m24_c00268{transform:matrix(0.172746,0.002591,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172746,0.002591,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172746,0.002591,-0.003750,0.249972,0,0);}
.m9c_c00268{transform:matrix(0.173425,0.002601,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173425,0.002601,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173425,0.002601,-0.003750,0.249972,0,0);}
.ma5_c00268{transform:matrix(0.174050,0.002611,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174050,0.002611,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174050,0.002611,-0.003750,0.249972,0,0);}
.m1_c00268{transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);}
.m7c_c00268{transform:matrix(0.174230,0.002613,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174230,0.002613,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174230,0.002613,-0.003750,0.249972,0,0);}
.m42_c00268{transform:matrix(0.174870,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174870,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174870,0.002623,-0.003750,0.249972,0,0);}
.m41_c00268{transform:matrix(0.175930,0.002639,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175930,0.002639,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175930,0.002639,-0.003750,0.249972,0,0);}
.m4e_c00268{transform:matrix(0.175955,0.002639,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175955,0.002639,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175955,0.002639,-0.003750,0.249972,0,0);}
.mca_c00268{transform:matrix(0.176070,0.002641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176070,0.002641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176070,0.002641,-0.003750,0.249972,0,0);}
.m91_c00268{transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176315,0.002645,-0.003750,0.249972,0,0);}
.m23_c00268{transform:matrix(0.176615,0.002649,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176615,0.002649,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176615,0.002649,-0.003750,0.249972,0,0);}
.m7d_c00268{transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176725,0.002651,-0.003750,0.249972,0,0);}
.m5_c00268{transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);}
.m7e_c00268{transform:matrix(0.177095,0.002656,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177095,0.002656,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177095,0.002656,-0.003750,0.249972,0,0);}
.m82_c00268{transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177160,0.002657,-0.003750,0.249972,0,0);}
.m19_c00268{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);}
.mde_c00268{transform:matrix(0.178500,0.002677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178500,0.002677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178500,0.002677,-0.003750,0.249972,0,0);}
.m81_c00268{transform:matrix(0.178630,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178630,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178630,0.002679,-0.003750,0.249972,0,0);}
.m55_c00268{transform:matrix(0.178735,0.002681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178735,0.002681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178735,0.002681,-0.003750,0.249972,0,0);}
.m3_c00268{transform:matrix(0.179220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179220,0.000000,0.000000,0.250000,0,0);}
.m6d_c00268{transform:matrix(0.179235,0.002689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179235,0.002689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179235,0.002689,-0.003750,0.249972,0,0);}
.m62_c00268{transform:matrix(0.180310,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180310,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180310,0.002705,-0.003750,0.249972,0,0);}
.maf_c00268{transform:matrix(0.180335,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180335,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180335,0.002705,-0.003750,0.249972,0,0);}
.m12_c00268{transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.180495,0.002707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180495,0.002707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180495,0.002707,-0.003750,0.249972,0,0);}
.m13_c00268{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m85_c00268{transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181050,0.002716,-0.003750,0.249972,0,0);}
.mdd_c00268{transform:matrix(0.181155,0.002717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181155,0.002717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181155,0.002717,-0.003750,0.249972,0,0);}
.meb_c00268{transform:matrix(0.181159,0.005254,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181159,0.005254,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181159,0.005254,-0.007247,0.249895,0,0);}
.m7_c00268{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.ma1_c00268{transform:matrix(0.181225,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181225,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181225,0.002718,-0.003750,0.249972,0,0);}
.m9b_c00268{transform:matrix(0.181250,0.002719,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181250,0.002719,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181250,0.002719,-0.003750,0.249972,0,0);}
.m8d_c00268{transform:matrix(0.181615,0.002724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181615,0.002724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181615,0.002724,-0.003750,0.249972,0,0);}
.m4d_c00268{transform:matrix(0.181945,0.002729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181945,0.002729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181945,0.002729,-0.003750,0.249972,0,0);}
.m51_c00268{transform:matrix(0.182080,0.002731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182080,0.002731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182080,0.002731,-0.003750,0.249972,0,0);}
.m48_c00268{transform:matrix(0.182160,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182160,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182160,0.002732,-0.003750,0.249972,0,0);}
.mf_c00268{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m88_c00268{transform:matrix(0.183619,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183619,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183619,0.002754,-0.003750,0.249972,0,0);}
.m2b_c00268{transform:matrix(0.183729,0.002756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183729,0.002756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183729,0.002756,-0.003750,0.249972,0,0);}
.mae_c00268{transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183799,0.002757,-0.003750,0.249972,0,0);}
.m1f_c00268{transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);}
.m61_c00268{transform:matrix(0.184539,0.002768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184539,0.002768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184539,0.002768,-0.003750,0.249972,0,0);}
.m7a_c00268{transform:matrix(0.185319,0.002780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185319,0.002780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185319,0.002780,-0.003750,0.249972,0,0);}
.m86_c00268{transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);}
.m5b_c00268{transform:matrix(0.186214,0.002793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186214,0.002793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186214,0.002793,-0.003750,0.249972,0,0);}
.m7f_c00268{transform:matrix(0.186644,0.002800,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186644,0.002800,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186644,0.002800,-0.003750,0.249972,0,0);}
.m74_c00268{transform:matrix(0.186749,0.002801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186749,0.002801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186749,0.002801,-0.003750,0.249972,0,0);}
.m33_c00268{transform:matrix(0.186939,0.002804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186939,0.002804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186939,0.002804,-0.003750,0.249972,0,0);}
.m34_c00268{transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);}
.md0_c00268{transform:matrix(0.187599,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187599,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187599,0.002814,-0.003750,0.249972,0,0);}
.m9d_c00268{transform:matrix(0.187684,0.002815,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187684,0.002815,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187684,0.002815,-0.003750,0.249972,0,0);}
.md6_c00268{transform:matrix(0.187864,0.002818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187864,0.002818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187864,0.002818,-0.003750,0.249972,0,0);}
.m96_c00268{transform:matrix(0.187879,0.002818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187879,0.002818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187879,0.002818,-0.003750,0.249972,0,0);}
.m26_c00268{transform:matrix(0.189164,0.002837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189164,0.002837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189164,0.002837,-0.003750,0.249972,0,0);}
.m45_c00268{transform:matrix(0.190779,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190779,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190779,0.002862,-0.003750,0.249972,0,0);}
.ma4_c00268{transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);}
.ma6_c00268{transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);}
.mc_c00268{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{transform:matrix(0.191423,0.002871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191423,0.002871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191423,0.002871,-0.003750,0.249972,0,0);}
.m3b_c00268{transform:matrix(0.191503,0.002873,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191503,0.002873,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191503,0.002873,-0.003750,0.249972,0,0);}
.mbf_c00268{transform:matrix(0.191943,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191943,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191943,0.002879,-0.003750,0.249972,0,0);}
.mac_c00268{transform:matrix(0.192423,0.002886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192423,0.002886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192423,0.002886,-0.003750,0.249972,0,0);}
.md7_c00268{transform:matrix(0.192603,0.002889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192603,0.002889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192603,0.002889,-0.003750,0.249972,0,0);}
.mb4_c00268{transform:matrix(0.192833,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192833,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192833,0.002892,-0.003750,0.249972,0,0);}
.m1b_c00268{transform:matrix(0.192858,0.002893,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192858,0.002893,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192858,0.002893,-0.003750,0.249972,0,0);}
.mc7_c00268{transform:matrix(0.193118,0.002897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193118,0.002897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193118,0.002897,-0.003750,0.249972,0,0);}
.m25_c00268{transform:matrix(0.193313,0.002900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193313,0.002900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193313,0.002900,-0.003750,0.249972,0,0);}
.m95_c00268{transform:matrix(0.193933,0.002909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193933,0.002909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193933,0.002909,-0.003750,0.249972,0,0);}
.mc0_c00268{transform:matrix(0.194563,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194563,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194563,0.002918,-0.003750,0.249972,0,0);}
.mc5_c00268{transform:matrix(0.194593,0.002919,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194593,0.002919,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194593,0.002919,-0.003750,0.249972,0,0);}
.m35_c00268{transform:matrix(0.195113,0.002927,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195113,0.002927,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195113,0.002927,-0.003750,0.249972,0,0);}
.m5f_c00268{transform:matrix(0.195158,0.002927,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195158,0.002927,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195158,0.002927,-0.003750,0.249972,0,0);}
.m52_c00268{transform:matrix(0.195883,0.002938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195883,0.002938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195883,0.002938,-0.003750,0.249972,0,0);}
.mdc_c00268{transform:matrix(0.196043,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196043,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196043,0.002941,-0.003750,0.249972,0,0);}
.m84_c00268{transform:matrix(0.196648,0.002950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196648,0.002950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196648,0.002950,-0.003750,0.249972,0,0);}
.mdf_c00268{transform:matrix(0.196913,0.002954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196913,0.002954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196913,0.002954,-0.003750,0.249972,0,0);}
.med_c00268{transform:matrix(0.197097,0.005716,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197097,0.005716,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197097,0.005716,-0.007247,0.249895,0,0);}
.mbb_c00268{transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197283,0.002959,-0.003750,0.249972,0,0);}
.md8_c00268{transform:matrix(0.197903,0.002969,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197903,0.002969,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197903,0.002969,-0.003750,0.249972,0,0);}
.m77_c00268{transform:matrix(0.198528,0.002978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198528,0.002978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198528,0.002978,-0.003750,0.249972,0,0);}
.ma3_c00268{transform:matrix(0.198738,0.002981,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198738,0.002981,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198738,0.002981,-0.003750,0.249972,0,0);}
.mad_c00268{transform:matrix(0.199023,0.002985,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199023,0.002985,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199023,0.002985,-0.003750,0.249972,0,0);}
.m47_c00268{transform:matrix(0.200492,0.003007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200492,0.003007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200492,0.003007,-0.003750,0.249972,0,0);}
.m2d_c00268{transform:matrix(0.200532,0.003008,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200532,0.003008,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200532,0.003008,-0.003750,0.249972,0,0);}
.m10_c00268{transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);}
.mee_c00268{transform:matrix(0.201725,0.005850,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201725,0.005850,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201725,0.005850,-0.007247,0.249895,0,0);}
.mb0_c00268{transform:matrix(0.201762,0.003026,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201762,0.003026,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201762,0.003026,-0.003750,0.249972,0,0);}
.m1d_c00268{transform:matrix(0.202447,0.003037,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202447,0.003037,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202447,0.003037,-0.003750,0.249972,0,0);}
.m93_c00268{transform:matrix(0.202822,0.003042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202822,0.003042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202822,0.003042,-0.003750,0.249972,0,0);}
.mec_c00268{transform:matrix(0.203874,0.005912,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203874,0.005912,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203874,0.005912,-0.007247,0.249895,0,0);}
.m97_c00268{transform:matrix(0.204587,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204587,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204587,0.003069,-0.003750,0.249972,0,0);}
.m8b_c00268{transform:matrix(0.204652,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204652,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204652,0.003070,-0.003750,0.249972,0,0);}
.mb2_c00268{transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);}
.m5a_c00268{transform:matrix(0.205492,0.003082,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205492,0.003082,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205492,0.003082,-0.003750,0.249972,0,0);}
.me1_c00268{transform:matrix(0.207207,0.003108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207207,0.003108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207207,0.003108,-0.003750,0.249972,0,0);}
.m69_c00268{transform:matrix(0.207387,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207387,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207387,0.003111,-0.003750,0.249972,0,0);}
.m32_c00268{transform:matrix(0.208567,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208567,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208567,0.003128,-0.003750,0.249972,0,0);}
.m8f_c00268{transform:matrix(0.208577,0.003129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208577,0.003129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208577,0.003129,-0.003750,0.249972,0,0);}
.m2f_c00268{transform:matrix(0.208682,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208682,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208682,0.003130,-0.003750,0.249972,0,0);}
.m75_c00268{transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208921,0.003134,-0.003750,0.249972,0,0);}
.me_c00268{transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.209451,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209451,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209451,0.003142,-0.003750,0.249972,0,0);}
.m2a_c00268{transform:matrix(0.209491,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209491,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209491,0.003142,-0.003750,0.249972,0,0);}
.m4b_c00268{transform:matrix(0.209521,0.003143,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209521,0.003143,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209521,0.003143,-0.003750,0.249972,0,0);}
.m31_c00268{transform:matrix(0.209616,0.003144,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209616,0.003144,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209616,0.003144,-0.003750,0.249972,0,0);}
.me2_c00268{transform:matrix(0.209986,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209986,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209986,0.003150,-0.003750,0.249972,0,0);}
.m72_c00268{transform:matrix(0.210246,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210246,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210246,0.003154,-0.003750,0.249972,0,0);}
.mda_c00268{transform:matrix(0.212116,0.003182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212116,0.003182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212116,0.003182,-0.003750,0.249972,0,0);}
.m8_c00268{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.212906,0.003194,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212906,0.003194,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212906,0.003194,-0.003750,0.249972,0,0);}
.maa_c00268{transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);}
.m1e_c00268{transform:matrix(0.213806,0.003207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213806,0.003207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213806,0.003207,-0.003750,0.249972,0,0);}
.m89_c00268{transform:matrix(0.215321,0.003230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215321,0.003230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215321,0.003230,-0.003750,0.249972,0,0);}
.m65_c00268{transform:matrix(0.215331,0.003230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215331,0.003230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215331,0.003230,-0.003750,0.249972,0,0);}
.m5c_c00268{transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215976,0.003240,-0.003750,0.249972,0,0);}
.m29_c00268{transform:matrix(0.216946,0.003254,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216946,0.003254,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216946,0.003254,-0.003750,0.249972,0,0);}
.m21_c00268{transform:matrix(0.216986,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216986,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216986,0.003255,-0.003750,0.249972,0,0);}
.m98_c00268{transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217241,0.003259,-0.003750,0.249972,0,0);}
.m8a_c00268{transform:matrix(0.218300,0.003275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218300,0.003275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218300,0.003275,-0.003750,0.249972,0,0);}
.m6a_c00268{transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218340,0.003275,-0.003750,0.249972,0,0);}
.m56_c00268{transform:matrix(0.218790,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218790,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218790,0.003282,-0.003750,0.249972,0,0);}
.md1_c00268{transform:matrix(0.219095,0.003286,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219095,0.003286,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219095,0.003286,-0.003750,0.249972,0,0);}
.m59_c00268{transform:matrix(0.219195,0.003288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219195,0.003288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219195,0.003288,-0.003750,0.249972,0,0);}
.ma2_c00268{transform:matrix(0.219210,0.003288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219210,0.003288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219210,0.003288,-0.003750,0.249972,0,0);}
.m17_c00268{transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.221590,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221590,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221590,0.003324,-0.003750,0.249972,0,0);}
.me9_c00268{transform:matrix(0.222197,0.006444,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222197,0.006444,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222197,0.006444,-0.007247,0.249895,0,0);}
.mbd_c00268{transform:matrix(0.222420,0.003336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222420,0.003336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222420,0.003336,-0.003750,0.249972,0,0);}
.md2_c00268{transform:matrix(0.224095,0.003361,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224095,0.003361,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224095,0.003361,-0.003750,0.249972,0,0);}
.m20_c00268{transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);}
.m66_c00268{transform:matrix(0.224350,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224350,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224350,0.003365,-0.003750,0.249972,0,0);}
.m9a_c00268{transform:matrix(0.224770,0.003372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224770,0.003372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224770,0.003372,-0.003750,0.249972,0,0);}
.me5_c00268{transform:matrix(0.226080,0.006556,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226080,0.006556,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226080,0.006556,-0.007247,0.249895,0,0);}
.m36_c00268{transform:matrix(0.226794,0.003402,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226794,0.003402,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226794,0.003402,-0.003750,0.249972,0,0);}
.me8_c00268{transform:matrix(0.229643,0.006660,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229643,0.006660,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229643,0.006660,-0.007247,0.249895,0,0);}
.m8e_c00268{transform:matrix(0.232994,0.003495,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232994,0.003495,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232994,0.003495,-0.003750,0.249972,0,0);}
.m2e_c00268{transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);}
.mc8_c00268{transform:matrix(0.238673,0.003580,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238673,0.003580,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238673,0.003580,-0.003750,0.249972,0,0);}
.me3_c00268{transform:matrix(0.239119,0.006934,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239119,0.006934,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239119,0.006934,-0.007247,0.249895,0,0);}
.md5_c00268{transform:matrix(0.239253,0.003589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239253,0.003589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239253,0.003589,-0.003750,0.249972,0,0);}
.mcc_c00268{transform:matrix(0.243508,0.003653,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243508,0.003653,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243508,0.003653,-0.003750,0.249972,0,0);}
.m90_c00268{transform:matrix(0.244093,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244093,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244093,0.003661,-0.003750,0.249972,0,0);}
.m99_c00268{transform:matrix(0.244757,0.003671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244757,0.003671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244757,0.003671,-0.003750,0.249972,0,0);}
.mc9_c00268{transform:matrix(0.246197,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246197,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246197,0.003693,-0.003750,0.249972,0,0);}
.me4_c00268{transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);}
.m67_c00268{transform:matrix(0.272729,0.004091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272729,0.004091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272729,0.004091,-0.003750,0.249972,0,0);}
.mb7_c00268{transform:matrix(0.298201,0.004473,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298201,0.004473,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298201,0.004473,-0.003750,0.249972,0,0);}
.mc4_c00268{transform:matrix(0.307325,0.004610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.307325,0.004610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.307325,0.004610,-0.003750,0.249972,0,0);}
.mcd_c00268{transform:matrix(0.314340,0.004715,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314340,0.004715,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314340,0.004715,-0.003750,0.249972,0,0);}
.mc2_c00268{transform:matrix(0.320504,0.004808,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320504,0.004808,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320504,0.004808,-0.003750,0.249972,0,0);}
.md4_c00268{transform:matrix(0.323924,0.004859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.323924,0.004859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.323924,0.004859,-0.003750,0.249972,0,0);}
.m1c_c00268{transform:matrix(0.330648,0.004960,-0.003750,0.249972,0,0);-ms-transform:matrix(0.330648,0.004960,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.330648,0.004960,-0.003750,0.249972,0,0);}
.mbc_c00268{transform:matrix(0.347586,0.005214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.347586,0.005214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.347586,0.005214,-0.003750,0.249972,0,0);}
.mcf_c00268{transform:matrix(0.383532,0.005753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.383532,0.005753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.383532,0.005753,-0.003750,0.249972,0,0);}
.mc3_c00268{transform:matrix(0.425222,0.006378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.425222,0.006378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.425222,0.006378,-0.003750,0.249972,0,0);}
.mab_c00268{transform:matrix(0.437556,0.006563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.437556,0.006563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.437556,0.006563,-0.003750,0.249972,0,0);}
.m30_c00268{transform:matrix(0.445950,0.006689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.445950,0.006689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.445950,0.006689,-0.003750,0.249972,0,0);}
.mc6_c00268{transform:matrix(0.627954,0.009419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.627954,0.009419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.627954,0.009419,-0.003750,0.249972,0,0);}
.mc1_c00268{transform:matrix(0.654621,0.009819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.654621,0.009819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.654621,0.009819,-0.003750,0.249972,0,0);}
.m0_c00268{transform:matrix(1.065040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065040,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:0.000000px;}
.fc0_c00268{color:transparent;}
.fs12_c00268{font-size:46.219423px;}
.fs10_c00268{font-size:54.606142px;}
.fs7_c00268{font-size:58.806615px;}
.fs13_c00268{font-size:58.824720px;}
.fs6_c00268{font-size:60.906851px;}
.fs4_c00268{font-size:61.956969px;}
.fsb_c00268{font-size:63.007087px;}
.fs11_c00268{font-size:64.057205px;}
.fsc_c00268{font-size:65.107323px;}
.fs1_c00268{font-size:66.150000px;}
.fse_c00268{font-size:66.157441px;}
.fsa_c00268{font-size:67.207560px;}
.fs2_c00268{font-size:68.250000px;}
.fs8_c00268{font-size:68.257678px;}
.fs5_c00268{font-size:69.307796px;}
.fs3_c00268{font-size:70.350000px;}
.fs9_c00268{font-size:70.357914px;}
.fsd_c00268{font-size:71.408032px;}
.fs0_c00268{font-size:142.800000px;}
.fsf_c00268{font-size:211.073742px;}
.y0_c00268{bottom:0.000000px;}
.ye9_c00268{bottom:23.144647px;}
.ye8_c00268{bottom:24.008380px;}
.ye7_c00268{bottom:25.062027px;}
.ye6_c00268{bottom:25.672194px;}
.ye5_c00268{bottom:28.076806px;}
.ye4_c00268{bottom:29.870121px;}
.ye3_c00268{bottom:31.989744px;}
.ye2_c00268{bottom:33.227497px;}
.ye1_c00268{bottom:34.326259px;}
.ye0_c00268{bottom:35.893651px;}
.ydf_c00268{bottom:37.988133px;}
.yde_c00268{bottom:39.157500px;}
.ydd_c00268{bottom:41.461770px;}
.ydc_c00268{bottom:44.092635px;}
.ydb_c00268{bottom:45.332753px;}
.yda_c00268{bottom:47.871773px;}
.yd9_c00268{bottom:48.640545px;}
.yd8_c00268{bottom:49.350443px;}
.yd7_c00268{bottom:50.202428px;}
.yd6_c00268{bottom:52.336650px;}
.yd5_c00268{bottom:57.317438px;}
.yd4_c00268{bottom:57.548918px;}
.yd3_c00268{bottom:57.748845px;}
.yd2_c00268{bottom:58.704300px;}
.yd1_c00268{bottom:59.163675px;}
.yd0_c00268{bottom:59.521658px;}
.ycf_c00268{bottom:60.346560px;}
.yce_c00268{bottom:60.627398px;}
.ycd_c00268{bottom:60.963015px;}
.ycc_c00268{bottom:75.457350px;}
.ycb_c00268{bottom:76.528440px;}
.yca_c00268{bottom:77.837783px;}
.yc9_c00268{bottom:78.608948px;}
.yc8_c00268{bottom:78.857490px;}
.yc7_c00268{bottom:79.436198px;}
.yc6_c00268{bottom:80.674380px;}
.yc5_c00268{bottom:91.938285px;}
.yc4_c00268{bottom:92.435055px;}
.yc3_c00268{bottom:93.474188px;}
.yc2_c00268{bottom:94.104960px;}
.yc1_c00268{bottom:94.905893px;}
.yc0_c00268{bottom:96.951368px;}
.ybf_c00268{bottom:97.852545px;}
.ybe_c00268{bottom:98.765895px;}
.ybd_c00268{bottom:109.513965px;}
.ybc_c00268{bottom:109.656443px;}
.ybb_c00268{bottom:110.791568px;}
.yba_c00268{bottom:111.414863px;}
.yb4_c00268{bottom:111.482918px;}
.yb1_c00268{bottom:111.483135px;}
.yb2_c00268{bottom:111.483510px;}
.yb3_c00268{bottom:111.483578px;}
.yb0_c00268{bottom:111.483863px;}
.yb9_c00268{bottom:111.774473px;}
.yb8_c00268{bottom:112.100700px;}
.yb7_c00268{bottom:112.316640px;}
.yb6_c00268{bottom:112.959608px;}
.yb5_c00268{bottom:113.619090px;}
.yaf_c00268{bottom:144.248648px;}
.yae_c00268{bottom:145.003073px;}
.yad_c00268{bottom:147.333803px;}
.yac_c00268{bottom:151.323383px;}
.yab_c00268{bottom:152.563455px;}
.yaa_c00268{bottom:155.820225px;}
.ya9_c00268{bottom:157.382738px;}
.ya6_c00268{bottom:162.158445px;}
.ya8_c00268{bottom:162.158498px;}
.ya5_c00268{bottom:162.158520px;}
.ya7_c00268{bottom:162.158963px;}
.ya4_c00268{bottom:179.125673px;}
.ya3_c00268{bottom:179.125733px;}
.ya1_c00268{bottom:179.125815px;}
.ya2_c00268{bottom:179.126310px;}
.ya0_c00268{bottom:179.126370px;}
.y9f_c00268{bottom:195.562965px;}
.y9e_c00268{bottom:196.296660px;}
.y9d_c00268{bottom:196.989113px;}
.y9c_c00268{bottom:197.877443px;}
.y9b_c00268{bottom:214.108058px;}
.y9a_c00268{bottom:214.704840px;}
.y99_c00268{bottom:216.629955px;}
.y98_c00268{bottom:217.182645px;}
.y97_c00268{bottom:218.129408px;}
.y96_c00268{bottom:218.866073px;}
.y95_c00268{bottom:220.879395px;}
.y94_c00268{bottom:221.470478px;}
.y93_c00268{bottom:222.457673px;}
.y92_c00268{bottom:230.034548px;}
.y91_c00268{bottom:232.264748px;}
.y90_c00268{bottom:232.995105px;}
.y8f_c00268{bottom:235.191630px;}
.y8e_c00268{bottom:236.001855px;}
.y8d_c00268{bottom:238.707848px;}
.y8c_c00268{bottom:239.346180px;}
.y8b_c00268{bottom:240.012308px;}
.y8a_c00268{bottom:248.285745px;}
.y89_c00268{bottom:249.413123px;}
.y88_c00268{bottom:250.295010px;}
.y87_c00268{bottom:251.500988px;}
.y86_c00268{bottom:252.004028px;}
.y85_c00268{bottom:253.155360px;}
.y84_c00268{bottom:253.370610px;}
.y83_c00268{bottom:254.859143px;}
.y82_c00268{bottom:265.167878px;}
.y81_c00268{bottom:265.795058px;}
.y80_c00268{bottom:268.328318px;}
.y7f_c00268{bottom:268.955610px;}
.y7e_c00268{bottom:271.335878px;}
.y7d_c00268{bottom:272.224463px;}
.y7c_c00268{bottom:273.224940px;}
.y7b_c00268{bottom:282.679088px;}
.y7a_c00268{bottom:283.234830px;}
.y79_c00268{bottom:283.745430px;}
.y78_c00268{bottom:285.287535px;}
.y77_c00268{bottom:287.199803px;}
.y76_c00268{bottom:288.365723px;}
.y75_c00268{bottom:289.696523px;}
.y74_c00268{bottom:304.932173px;}
.y73_c00268{bottom:308.053800px;}
.y72_c00268{bottom:317.872590px;}
.y71_c00268{bottom:318.332880px;}
.y70_c00268{bottom:319.652078px;}
.y6f_c00268{bottom:320.031060px;}
.y6e_c00268{bottom:320.534610px;}
.y6d_c00268{bottom:322.006793px;}
.y6c_c00268{bottom:322.527840px;}
.y6b_c00268{bottom:323.589278px;}
.y6a_c00268{bottom:323.994000px;}
.y69_c00268{bottom:324.528660px;}
.y68_c00268{bottom:335.610998px;}
.y67_c00268{bottom:335.914515px;}
.y66_c00268{bottom:337.580715px;}
.y65_c00268{bottom:337.933785px;}
.y64_c00268{bottom:338.303040px;}
.y63_c00268{bottom:339.578558px;}
.y62_c00268{bottom:340.143510px;}
.y61_c00268{bottom:340.458698px;}
.y60_c00268{bottom:353.108843px;}
.y5f_c00268{bottom:353.329313px;}
.y5e_c00268{bottom:353.576033px;}
.y5d_c00268{bottom:354.441015px;}
.y5c_c00268{bottom:354.906840px;}
.y5b_c00268{bottom:355.429507px;}
.y5a_c00268{bottom:356.507970px;}
.y59_c00268{bottom:356.758965px;}
.y58_c00268{bottom:357.739830px;}
.y57_c00268{bottom:367.888005px;}
.y56_c00268{bottom:368.303198px;}
.y55_c00268{bottom:369.432773px;}
.y54_c00268{bottom:369.875873px;}
.y53_c00268{bottom:371.086118px;}
.y52_c00268{bottom:371.615175px;}
.y51_c00268{bottom:372.706185px;}
.y50_c00268{bottom:373.673535px;}
.y4f_c00268{bottom:385.330688px;}
.y4e_c00268{bottom:385.472168px;}
.y4d_c00268{bottom:386.125365px;}
.y4c_c00268{bottom:386.684332px;}
.y4b_c00268{bottom:387.100470px;}
.y4a_c00268{bottom:387.640268px;}
.y49_c00268{bottom:388.146225px;}
.y48_c00268{bottom:388.940722px;}
.y47_c00268{bottom:389.333460px;}
.y46_c00268{bottom:402.149310px;}
.y45_c00268{bottom:403.375522px;}
.y44_c00268{bottom:403.643595px;}
.y43_c00268{bottom:403.864942px;}
.y42_c00268{bottom:404.543130px;}
.y41_c00268{bottom:404.977380px;}
.y40_c00268{bottom:405.257603px;}
.y3f_c00268{bottom:406.074150px;}
.y3e_c00268{bottom:418.891492px;}
.y3d_c00268{bottom:419.994525px;}
.y3c_c00268{bottom:420.418193px;}
.y3b_c00268{bottom:420.958410px;}
.y3a_c00268{bottom:421.589760px;}
.y39_c00268{bottom:421.865933px;}
.y38_c00268{bottom:422.511397px;}
.y37_c00268{bottom:422.814870px;}
.y36_c00268{bottom:436.085123px;}
.y35_c00268{bottom:437.025825px;}
.y34_c00268{bottom:437.328450px;}
.y33_c00268{bottom:438.694425px;}
.y32_c00268{bottom:438.968813px;}
.y31_c00268{bottom:439.844782px;}
.y30_c00268{bottom:440.209733px;}
.y2f_c00268{bottom:440.366940px;}
.y2e_c00268{bottom:453.664148px;}
.y2d_c00268{bottom:454.175790px;}
.y2c_c00268{bottom:454.626090px;}
.y2b_c00268{bottom:454.825530px;}
.y2a_c00268{bottom:455.671147px;}
.y29_c00268{bottom:456.450225px;}
.y28_c00268{bottom:457.107165px;}
.y27_c00268{bottom:470.310623px;}
.y26_c00268{bottom:471.020055px;}
.y25_c00268{bottom:471.756487px;}
.y24_c00268{bottom:471.994680px;}
.y23_c00268{bottom:472.302045px;}
.y22_c00268{bottom:472.667700px;}
.y21_c00268{bottom:473.848035px;}
.y20_c00268{bottom:488.111910px;}
.y1f_c00268{bottom:488.313472px;}
.y1e_c00268{bottom:488.521260px;}
.y1d_c00268{bottom:489.450825px;}
.y1c_c00268{bottom:490.068877px;}
.y1b_c00268{bottom:490.932608px;}
.y1a_c00268{bottom:491.129160px;}
.y19_c00268{bottom:506.148847px;}
.y18_c00268{bottom:506.363115px;}
.y17_c00268{bottom:507.067927px;}
.y16_c00268{bottom:507.618907px;}
.y15_c00268{bottom:508.615342px;}
.y14_c00268{bottom:508.978313px;}
.y13_c00268{bottom:510.033000px;}
.y12_c00268{bottom:524.049000px;}
.y11_c00268{bottom:524.278500px;}
.y10_c00268{bottom:524.664000px;}
.yf_c00268{bottom:525.046500px;}
.ye_c00268{bottom:525.409500px;}
.yd_c00268{bottom:525.808500px;}
.yc_c00268{bottom:526.179000px;}
.yb_c00268{bottom:526.770000px;}
.ya_c00268{bottom:541.617000px;}
.y9_c00268{bottom:557.788500px;}
.y8_c00268{bottom:558.477000px;}
.y7_c00268{bottom:558.825000px;}
.y6_c00268{bottom:559.110000px;}
.y5_c00268{bottom:559.642500px;}
.y4_c00268{bottom:559.894500px;}
.y3_c00268{bottom:560.116500px;}
.y2_c00268{bottom:560.791500px;}
.y1_c00268{bottom:568.335000px;}
.h14_c00268{height:46.219423px;}
.h12_c00268{height:54.606142px;}
.h9_c00268{height:58.806615px;}
.h15_c00268{height:58.824720px;}
.h8_c00268{height:60.906851px;}
.h6_c00268{height:61.956969px;}
.hd_c00268{height:63.007087px;}
.h13_c00268{height:64.057205px;}
.he_c00268{height:65.107323px;}
.h3_c00268{height:66.150000px;}
.h10_c00268{height:66.157441px;}
.hc_c00268{height:67.207560px;}
.h4_c00268{height:68.250000px;}
.ha_c00268{height:68.257678px;}
.h7_c00268{height:69.307796px;}
.h5_c00268{height:70.350000px;}
.hb_c00268{height:70.357914px;}
.hf_c00268{height:71.408032px;}
.h2_c00268{height:142.800000px;}
.h11_c00268{height:211.073742px;}
.h1_c00268{height:618.750000px;}
.h0_c00268{height:619.050000px;}
.w0_c00268{width:359.100000px;}
.w1_c00268{width:359.250000px;}
.x0_c00268{left:0.000000px;}
.x44_c00268{left:25.997257px;}
.x56_c00268{left:28.354665px;}
.x4b_c00268{left:29.514390px;}
.x2_c00268{left:30.646500px;}
.x1f_c00268{left:34.977667px;}
.x60_c00268{left:37.481565px;}
.x19_c00268{left:38.706000px;}
.x6c_c00268{left:42.921045px;}
.x68_c00268{left:45.622612px;}
.x4c_c00268{left:47.026102px;}
.x2e_c00268{left:48.945690px;}
.xa_c00268{left:50.758500px;}
.x20_c00268{left:52.782225px;}
.x32_c00268{left:55.770810px;}
.x5b_c00268{left:60.547087px;}
.x6a_c00268{left:62.484352px;}
.x5f_c00268{left:65.286517px;}
.x61_c00268{left:67.386487px;}
.xb_c00268{left:68.578500px;}
.x50_c00268{left:69.698445px;}
.x2f_c00268{left:73.275690px;}
.x6f_c00268{left:75.919110px;}
.x40_c00268{left:78.376485px;}
.x2a_c00268{left:81.397042px;}
.x12_c00268{left:84.123000px;}
.x62_c00268{left:85.287150px;}
.x36_c00268{left:88.672462px;}
.x45_c00268{left:90.817365px;}
.x3_c00268{left:91.992000px;}
.x7b_c00268{left:95.694412px;}
.x57_c00268{left:100.614165px;}
.xc_c00268{left:102.868500px;}
.x1a_c00268{left:109.018500px;}
.x4_c00268{left:112.239000px;}
.x51_c00268{left:115.855410px;}
.x13_c00268{left:117.868500px;}
.x25_c00268{left:121.684312px;}
.x78_c00268{left:127.759627px;}
.x7d_c00268{left:129.160973px;}
.x21_c00268{left:131.368950px;}
.x1b_c00268{left:133.216500px;}
.x5_c00268{left:135.141000px;}
.x70_c00268{left:137.280532px;}
.x52_c00268{left:138.489187px;}
.x37_c00268{left:139.704727px;}
.x2b_c00268{left:141.337342px;}
.x3c_c00268{left:143.209530px;}
.x63_c00268{left:146.292180px;}
.x46_c00268{left:147.611467px;}
.x26_c00268{left:149.762145px;}
.xd_c00268{left:150.928500px;}
.x7c_c00268{left:152.549250px;}
.x14_c00268{left:154.092000px;}
.x41_c00268{left:159.374910px;}
.x71_c00268{left:160.529370px;}
.x1_c00268{left:163.620000px;}
.x33_c00268{left:166.704975px;}
.x64_c00268{left:168.597150px;}
.x4d_c00268{left:169.735567px;}
.x6d_c00268{left:171.725025px;}
.x27_c00268{left:173.453865px;}
.x47_c00268{left:175.154325px;}
.x69_c00268{left:176.857132px;}
.x3d_c00268{left:179.196030px;}
.x6_c00268{left:183.495000px;}
.x15_c00268{left:187.036500px;}
.x38_c00268{left:188.117947px;}
.x4e_c00268{left:189.372690px;}
.x28_c00268{left:191.833927px;}
.x5c_c00268{left:194.861872px;}
.xe_c00268{left:196.558500px;}
.x5d_c00268{left:198.112665px;}
.x1c_c00268{left:199.645500px;}
.x53_c00268{left:202.527015px;}
.x39_c00268{left:203.974695px;}
.x34_c00268{left:205.320060px;}
.x2c_c00268{left:206.413800px;}
.x7_c00268{left:209.394000px;}
.x58_c00268{left:210.505222px;}
.xf_c00268{left:211.948500px;}
.x65_c00268{left:214.048387px;}
.x42_c00268{left:219.853365px;}
.x16_c00268{left:221.817000px;}
.x3a_c00268{left:223.146487px;}
.x54_c00268{left:224.394382px;}
.x79_c00268{left:226.851217px;}
.x7e_c00268{left:229.086302px;}
.x5e_c00268{left:230.799292px;}
.x74_c00268{left:232.047975px;}
.x1d_c00268{left:236.377500px;}
.x8_c00268{left:241.021500px;}
.x3e_c00268{left:244.203030px;}
.x48_c00268{left:245.270640px;}
.x6b_c00268{left:246.960082px;}
.x29_c00268{left:248.531137px;}
.x66_c00268{left:253.276275px;}
.x17_c00268{left:256.915500px;}
.x49_c00268{left:258.217852px;}
.x75_c00268{left:259.496190px;}
.x30_c00268{left:261.206190px;}
.x59_c00268{left:265.601490px;}
.x6e_c00268{left:267.586080px;}
.x7f_c00268{left:268.702881px;}
.x4a_c00268{left:269.815155px;}
.x22_c00268{left:272.051887px;}
.x7a_c00268{left:276.653790px;}
.x18_c00268{left:277.747500px;}
.x10_c00268{left:282.688500px;}
.x5a_c00268{left:283.837935px;}
.x3f_c00268{left:287.749530px;}
.x80_c00268{left:289.272138px;}
.x23_c00268{left:291.005535px;}
.x2d_c00268{left:295.842000px;}
.x1e_c00268{left:297.649500px;}
.x4f_c00268{left:298.782262px;}
.x67_c00268{left:299.990782px;}
.x9_c00268{left:303.600000px;}
.x76_c00268{left:304.666267px;}
.x11_c00268{left:305.908500px;}
.x24_c00268{left:309.344137px;}
.x3b_c00268{left:310.695292px;}
.x72_c00268{left:311.833642px;}
.x35_c00268{left:314.401702px;}
.x55_c00268{left:318.181110px;}
.x43_c00268{left:319.270417px;}
.x73_c00268{left:322.032300px;}
.x31_c00268{left:323.919690px;}
.x77_c00268{left:326.281680px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.fs12_c00268{font-size:41.083932pt;}
.fs10_c00268{font-size:48.538793pt;}
.fs7_c00268{font-size:52.272546pt;}
.fs13_c00268{font-size:52.288640pt;}
.fs6_c00268{font-size:54.139423pt;}
.fs4_c00268{font-size:55.072861pt;}
.fsb_c00268{font-size:56.006300pt;}
.fs11_c00268{font-size:56.939738pt;}
.fsc_c00268{font-size:57.873176pt;}
.fs1_c00268{font-size:58.800000pt;}
.fse_c00268{font-size:58.806615pt;}
.fsa_c00268{font-size:59.740053pt;}
.fs2_c00268{font-size:60.666667pt;}
.fs8_c00268{font-size:60.673491pt;}
.fs5_c00268{font-size:61.606930pt;}
.fs3_c00268{font-size:62.533333pt;}
.fs9_c00268{font-size:62.540368pt;}
.fsd_c00268{font-size:63.473806pt;}
.fs0_c00268{font-size:126.933333pt;}
.fsf_c00268{font-size:187.621104pt;}
.y0_c00268{bottom:0.000000pt;}
.ye9_c00268{bottom:20.573020pt;}
.ye8_c00268{bottom:21.340783pt;}
.ye7_c00268{bottom:22.277357pt;}
.ye6_c00268{bottom:22.819728pt;}
.ye5_c00268{bottom:24.957161pt;}
.ye4_c00268{bottom:26.551219pt;}
.ye3_c00268{bottom:28.435328pt;}
.ye2_c00268{bottom:29.535553pt;}
.ye1_c00268{bottom:30.512231pt;}
.ye0_c00268{bottom:31.905468pt;}
.ydf_c00268{bottom:33.767229pt;}
.yde_c00268{bottom:34.806667pt;}
.ydd_c00268{bottom:36.854907pt;}
.ydc_c00268{bottom:39.193453pt;}
.ydb_c00268{bottom:40.295780pt;}
.yda_c00268{bottom:42.552687pt;}
.yd9_c00268{bottom:43.236040pt;}
.yd8_c00268{bottom:43.867060pt;}
.yd7_c00268{bottom:44.624380pt;}
.yd6_c00268{bottom:46.521467pt;}
.yd5_c00268{bottom:50.948833pt;}
.yd4_c00268{bottom:51.154593pt;}
.yd3_c00268{bottom:51.332307pt;}
.yd2_c00268{bottom:52.181600pt;}
.yd1_c00268{bottom:52.589933pt;}
.yd0_c00268{bottom:52.908140pt;}
.ycf_c00268{bottom:53.641387pt;}
.yce_c00268{bottom:53.891020pt;}
.ycd_c00268{bottom:54.189347pt;}
.ycc_c00268{bottom:67.073200pt;}
.ycb_c00268{bottom:68.025280pt;}
.yca_c00268{bottom:69.189140pt;}
.yc9_c00268{bottom:69.874620pt;}
.yc8_c00268{bottom:70.095547pt;}
.yc7_c00268{bottom:70.609953pt;}
.yc6_c00268{bottom:71.710560pt;}
.yc5_c00268{bottom:81.722920pt;}
.yc4_c00268{bottom:82.164493pt;}
.yc3_c00268{bottom:83.088167pt;}
.yc2_c00268{bottom:83.648853pt;}
.yc1_c00268{bottom:84.360793pt;}
.yc0_c00268{bottom:86.178993pt;}
.ybf_c00268{bottom:86.980040pt;}
.ybe_c00268{bottom:87.791907pt;}
.ybd_c00268{bottom:97.345747pt;}
.ybc_c00268{bottom:97.472393pt;}
.ybb_c00268{bottom:98.481393pt;}
.yba_c00268{bottom:99.035433pt;}
.yb4_c00268{bottom:99.095927pt;}
.yb1_c00268{bottom:99.096120pt;}
.yb2_c00268{bottom:99.096453pt;}
.yb3_c00268{bottom:99.096513pt;}
.yb0_c00268{bottom:99.096767pt;}
.yb9_c00268{bottom:99.355087pt;}
.yb8_c00268{bottom:99.645067pt;}
.yb7_c00268{bottom:99.837013pt;}
.yb6_c00268{bottom:100.408540pt;}
.yb5_c00268{bottom:100.994747pt;}
.yaf_c00268{bottom:128.221020pt;}
.yae_c00268{bottom:128.891620pt;}
.yad_c00268{bottom:130.963380pt;}
.yac_c00268{bottom:134.509673pt;}
.yab_c00268{bottom:135.611960pt;}
.yaa_c00268{bottom:138.506867pt;}
.ya9_c00268{bottom:139.895767pt;}
.ya6_c00268{bottom:144.140840pt;}
.ya8_c00268{bottom:144.140887pt;}
.ya5_c00268{bottom:144.140907pt;}
.ya7_c00268{bottom:144.141300pt;}
.ya4_c00268{bottom:159.222820pt;}
.ya3_c00268{bottom:159.222873pt;}
.ya1_c00268{bottom:159.222947pt;}
.ya2_c00268{bottom:159.223387pt;}
.ya0_c00268{bottom:159.223440pt;}
.y9f_c00268{bottom:173.833747pt;}
.y9e_c00268{bottom:174.485920pt;}
.y9d_c00268{bottom:175.101433pt;}
.y9c_c00268{bottom:175.891060pt;}
.y9b_c00268{bottom:190.318273pt;}
.y9a_c00268{bottom:190.848747pt;}
.y99_c00268{bottom:192.559960pt;}
.y98_c00268{bottom:193.051240pt;}
.y97_c00268{bottom:193.892807pt;}
.y96_c00268{bottom:194.547620pt;}
.y95_c00268{bottom:196.337240pt;}
.y94_c00268{bottom:196.862647pt;}
.y93_c00268{bottom:197.740153pt;}
.y92_c00268{bottom:204.475153pt;}
.y91_c00268{bottom:206.457553pt;}
.y90_c00268{bottom:207.106760pt;}
.y8f_c00268{bottom:209.059227pt;}
.y8e_c00268{bottom:209.779427pt;}
.y8d_c00268{bottom:212.184753pt;}
.y8c_c00268{bottom:212.752160pt;}
.y8b_c00268{bottom:213.344273pt;}
.y8a_c00268{bottom:220.698440pt;}
.y89_c00268{bottom:221.700553pt;}
.y88_c00268{bottom:222.484453pt;}
.y87_c00268{bottom:223.556433pt;}
.y86_c00268{bottom:224.003580pt;}
.y85_c00268{bottom:225.026987pt;}
.y84_c00268{bottom:225.218320pt;}
.y83_c00268{bottom:226.541460pt;}
.y82_c00268{bottom:235.704780pt;}
.y81_c00268{bottom:236.262273pt;}
.y80_c00268{bottom:238.514060pt;}
.y7f_c00268{bottom:239.071653pt;}
.y7e_c00268{bottom:241.187447pt;}
.y7d_c00268{bottom:241.977300pt;}
.y7c_c00268{bottom:242.866613pt;}
.y7b_c00268{bottom:251.270300pt;}
.y7a_c00268{bottom:251.764293pt;}
.y79_c00268{bottom:252.218160pt;}
.y78_c00268{bottom:253.588920pt;}
.y77_c00268{bottom:255.288713pt;}
.y76_c00268{bottom:256.325087pt;}
.y75_c00268{bottom:257.508020pt;}
.y74_c00268{bottom:271.050820pt;}
.y73_c00268{bottom:273.825600pt;}
.y72_c00268{bottom:282.553413pt;}
.y71_c00268{bottom:282.962560pt;}
.y70_c00268{bottom:284.135180pt;}
.y6f_c00268{bottom:284.472053pt;}
.y6e_c00268{bottom:284.919653pt;}
.y6d_c00268{bottom:286.228260pt;}
.y6c_c00268{bottom:286.691413pt;}
.y6b_c00268{bottom:287.634913pt;}
.y6a_c00268{bottom:287.994667pt;}
.y69_c00268{bottom:288.469920pt;}
.y68_c00268{bottom:298.320887pt;}
.y67_c00268{bottom:298.590680pt;}
.y66_c00268{bottom:300.071747pt;}
.y65_c00268{bottom:300.385587pt;}
.y64_c00268{bottom:300.713813pt;}
.y63_c00268{bottom:301.847607pt;}
.y62_c00268{bottom:302.349787pt;}
.y61_c00268{bottom:302.629953pt;}
.y60_c00268{bottom:313.874527pt;}
.y5f_c00268{bottom:314.070500pt;}
.y5e_c00268{bottom:314.289807pt;}
.y5d_c00268{bottom:315.058680pt;}
.y5c_c00268{bottom:315.472747pt;}
.y5b_c00268{bottom:315.937340pt;}
.y5a_c00268{bottom:316.895973pt;}
.y59_c00268{bottom:317.119080pt;}
.y58_c00268{bottom:317.990960pt;}
.y57_c00268{bottom:327.011560pt;}
.y56_c00268{bottom:327.380620pt;}
.y55_c00268{bottom:328.384687pt;}
.y54_c00268{bottom:328.778553pt;}
.y53_c00268{bottom:329.854327pt;}
.y52_c00268{bottom:330.324600pt;}
.y51_c00268{bottom:331.294387pt;}
.y50_c00268{bottom:332.154253pt;}
.y4f_c00268{bottom:342.516167pt;}
.y4e_c00268{bottom:342.641927pt;}
.y4d_c00268{bottom:343.222547pt;}
.y4c_c00268{bottom:343.719407pt;}
.y4b_c00268{bottom:344.089307pt;}
.y4a_c00268{bottom:344.569127pt;}
.y49_c00268{bottom:345.018867pt;}
.y48_c00268{bottom:345.725087pt;}
.y47_c00268{bottom:346.074187pt;}
.y46_c00268{bottom:357.466053pt;}
.y45_c00268{bottom:358.556020pt;}
.y44_c00268{bottom:358.794307pt;}
.y43_c00268{bottom:358.991060pt;}
.y42_c00268{bottom:359.593893pt;}
.y41_c00268{bottom:359.979893pt;}
.y40_c00268{bottom:360.228980pt;}
.y3f_c00268{bottom:360.954800pt;}
.y3e_c00268{bottom:372.347993pt;}
.y3d_c00268{bottom:373.328467pt;}
.y3c_c00268{bottom:373.705060pt;}
.y3b_c00268{bottom:374.185253pt;}
.y3a_c00268{bottom:374.746453pt;}
.y39_c00268{bottom:374.991940pt;}
.y38_c00268{bottom:375.565687pt;}
.y37_c00268{bottom:375.835440pt;}
.y36_c00268{bottom:387.631220pt;}
.y35_c00268{bottom:388.467400pt;}
.y34_c00268{bottom:388.736400pt;}
.y33_c00268{bottom:389.950600pt;}
.y32_c00268{bottom:390.194500pt;}
.y31_c00268{bottom:390.973140pt;}
.y30_c00268{bottom:391.297540pt;}
.y2f_c00268{bottom:391.437280pt;}
.y2e_c00268{bottom:403.257020pt;}
.y2d_c00268{bottom:403.711813pt;}
.y2c_c00268{bottom:404.112080pt;}
.y2b_c00268{bottom:404.289360pt;}
.y2a_c00268{bottom:405.041020pt;}
.y29_c00268{bottom:405.733533pt;}
.y28_c00268{bottom:406.317480pt;}
.y27_c00268{bottom:418.053887pt;}
.y26_c00268{bottom:418.684493pt;}
.y25_c00268{bottom:419.339100pt;}
.y24_c00268{bottom:419.550827pt;}
.y23_c00268{bottom:419.824040pt;}
.y22_c00268{bottom:420.149067pt;}
.y21_c00268{bottom:421.198253pt;}
.y20_c00268{bottom:433.877253pt;}
.y1f_c00268{bottom:434.056420pt;}
.y1e_c00268{bottom:434.241120pt;}
.y1d_c00268{bottom:435.067400pt;}
.y1c_c00268{bottom:435.616780pt;}
.y1b_c00268{bottom:436.384540pt;}
.y1a_c00268{bottom:436.559253pt;}
.y19_c00268{bottom:449.910087pt;}
.y18_c00268{bottom:450.100547pt;}
.y17_c00268{bottom:450.727047pt;}
.y16_c00268{bottom:451.216807pt;}
.y15_c00268{bottom:452.102527pt;}
.y14_c00268{bottom:452.425167pt;}
.y13_c00268{bottom:453.362667pt;}
.y12_c00268{bottom:465.821333pt;}
.y11_c00268{bottom:466.025333pt;}
.y10_c00268{bottom:466.368000pt;}
.yf_c00268{bottom:466.708000pt;}
.ye_c00268{bottom:467.030667pt;}
.yd_c00268{bottom:467.385333pt;}
.yc_c00268{bottom:467.714667pt;}
.yb_c00268{bottom:468.240000pt;}
.ya_c00268{bottom:481.437333pt;}
.y9_c00268{bottom:495.812000pt;}
.y8_c00268{bottom:496.424000pt;}
.y7_c00268{bottom:496.733333pt;}
.y6_c00268{bottom:496.986667pt;}
.y5_c00268{bottom:497.460000pt;}
.y4_c00268{bottom:497.684000pt;}
.y3_c00268{bottom:497.881333pt;}
.y2_c00268{bottom:498.481333pt;}
.y1_c00268{bottom:505.186667pt;}
.h14_c00268{height:41.083932pt;}
.h12_c00268{height:48.538793pt;}
.h9_c00268{height:52.272546pt;}
.h15_c00268{height:52.288640pt;}
.h8_c00268{height:54.139423pt;}
.h6_c00268{height:55.072861pt;}
.hd_c00268{height:56.006300pt;}
.h13_c00268{height:56.939738pt;}
.he_c00268{height:57.873176pt;}
.h3_c00268{height:58.800000pt;}
.h10_c00268{height:58.806615pt;}
.hc_c00268{height:59.740053pt;}
.h4_c00268{height:60.666667pt;}
.ha_c00268{height:60.673491pt;}
.h7_c00268{height:61.606930pt;}
.h5_c00268{height:62.533333pt;}
.hb_c00268{height:62.540368pt;}
.hf_c00268{height:63.473806pt;}
.h2_c00268{height:126.933333pt;}
.h11_c00268{height:187.621104pt;}
.h1_c00268{height:550.000000pt;}
.h0_c00268{height:550.266667pt;}
.w0_c00268{width:319.200000pt;}
.w1_c00268{width:319.333333pt;}
.x0_c00268{left:0.000000pt;}
.x44_c00268{left:23.108673pt;}
.x56_c00268{left:25.204147pt;}
.x4b_c00268{left:26.235013pt;}
.x2_c00268{left:27.241333pt;}
.x1f_c00268{left:31.091260pt;}
.x60_c00268{left:33.316947pt;}
.x19_c00268{left:34.405333pt;}
.x6c_c00268{left:38.152040pt;}
.x68_c00268{left:40.553433pt;}
.x4c_c00268{left:41.800980pt;}
.x2e_c00268{left:43.507280pt;}
.xa_c00268{left:45.118667pt;}
.x20_c00268{left:46.917533pt;}
.x32_c00268{left:49.574053pt;}
.x5b_c00268{left:53.819633pt;}
.x6a_c00268{left:55.541647pt;}
.x5f_c00268{left:58.032460pt;}
.x61_c00268{left:59.899100pt;}
.xb_c00268{left:60.958667pt;}
.x50_c00268{left:61.954173pt;}
.x2f_c00268{left:65.133947pt;}
.x6f_c00268{left:67.483653pt;}
.x40_c00268{left:69.667987pt;}
.x2a_c00268{left:72.352927pt;}
.x12_c00268{left:74.776000pt;}
.x62_c00268{left:75.810800pt;}
.x36_c00268{left:78.819967pt;}
.x45_c00268{left:80.726547pt;}
.x3_c00268{left:81.770667pt;}
.x7b_c00268{left:85.061700pt;}
.x57_c00268{left:89.434813pt;}
.xc_c00268{left:91.438667pt;}
.x1a_c00268{left:96.905333pt;}
.x4_c00268{left:99.768000pt;}
.x51_c00268{left:102.982587pt;}
.x13_c00268{left:104.772000pt;}
.x25_c00268{left:108.163833pt;}
.x78_c00268{left:113.564113pt;}
.x7d_c00268{left:114.809753pt;}
.x21_c00268{left:116.772400pt;}
.x1b_c00268{left:118.414667pt;}
.x5_c00268{left:120.125333pt;}
.x70_c00268{left:122.027140pt;}
.x52_c00268{left:123.101500pt;}
.x37_c00268{left:124.181980pt;}
.x2b_c00268{left:125.633193pt;}
.x3c_c00268{left:127.297360pt;}
.x63_c00268{left:130.037493pt;}
.x46_c00268{left:131.210193pt;}
.x26_c00268{left:133.121907pt;}
.xd_c00268{left:134.158667pt;}
.x7c_c00268{left:135.599333pt;}
.x14_c00268{left:136.970667pt;}
.x41_c00268{left:141.666587pt;}
.x71_c00268{left:142.692773pt;}
.x1_c00268{left:145.440000pt;}
.x33_c00268{left:148.182200pt;}
.x64_c00268{left:149.864133pt;}
.x4d_c00268{left:150.876060pt;}
.x6d_c00268{left:152.644467pt;}
.x27_c00268{left:154.181213pt;}
.x47_c00268{left:155.692733pt;}
.x69_c00268{left:157.206340pt;}
.x3d_c00268{left:159.285360pt;}
.x6_c00268{left:163.106667pt;}
.x15_c00268{left:166.254667pt;}
.x38_c00268{left:167.215953pt;}
.x4e_c00268{left:168.331280pt;}
.x28_c00268{left:170.519047pt;}
.x5c_c00268{left:173.210553pt;}
.xe_c00268{left:174.718667pt;}
.x5d_c00268{left:176.100147pt;}
.x1c_c00268{left:177.462667pt;}
.x53_c00268{left:180.024013pt;}
.x39_c00268{left:181.310840pt;}
.x34_c00268{left:182.506720pt;}
.x2c_c00268{left:183.478933pt;}
.x7_c00268{left:186.128000pt;}
.x58_c00268{left:187.115753pt;}
.xf_c00268{left:188.398667pt;}
.x65_c00268{left:190.265233pt;}
.x42_c00268{left:195.425213pt;}
.x16_c00268{left:197.170667pt;}
.x3a_c00268{left:198.352433pt;}
.x54_c00268{left:199.461673pt;}
.x79_c00268{left:201.645527pt;}
.x7e_c00268{left:203.632268pt;}
.x5e_c00268{left:205.154927pt;}
.x74_c00268{left:206.264867pt;}
.x1d_c00268{left:210.113333pt;}
.x8_c00268{left:214.241333pt;}
.x3e_c00268{left:217.069360pt;}
.x48_c00268{left:218.018347pt;}
.x6b_c00268{left:219.520073pt;}
.x29_c00268{left:220.916567pt;}
.x66_c00268{left:225.134467pt;}
.x17_c00268{left:228.369333pt;}
.x49_c00268{left:229.526980pt;}
.x75_c00268{left:230.663280pt;}
.x30_c00268{left:232.183280pt;}
.x59_c00268{left:236.090213pt;}
.x6e_c00268{left:237.854293pt;}
.x7f_c00268{left:238.847005pt;}
.x4a_c00268{left:239.835693pt;}
.x22_c00268{left:241.823900pt;}
.x7a_c00268{left:245.914480pt;}
.x18_c00268{left:246.886667pt;}
.x10_c00268{left:251.278667pt;}
.x5a_c00268{left:252.300387pt;}
.x3f_c00268{left:255.777360pt;}
.x80_c00268{left:257.130789pt;}
.x23_c00268{left:258.671587pt;}
.x2d_c00268{left:262.970667pt;}
.x1e_c00268{left:264.577333pt;}
.x4f_c00268{left:265.584233pt;}
.x67_c00268{left:266.658473pt;}
.x9_c00268{left:269.866667pt;}
.x76_c00268{left:270.814460pt;}
.x11_c00268{left:271.918667pt;}
.x24_c00268{left:274.972567pt;}
.x3b_c00268{left:276.173593pt;}
.x72_c00268{left:277.185460pt;}
.x35_c00268{left:279.468180pt;}
.x55_c00268{left:282.827653pt;}
.x43_c00268{left:283.795927pt;}
.x73_c00268{left:286.250933pt;}
.x31_c00268{left:287.928613pt;}
.x77_c00268{left:290.028160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00269 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00269 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00269 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00269 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00269.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4_c00269{transform:matrix(0.101959,-0.001122,0.002750,0.249985,0,0);-ms-transform:matrix(0.101959,-0.001122,0.002750,0.249985,0,0);-webkit-transform:matrix(0.101959,-0.001122,0.002750,0.249985,0,0);}
.m1a_c00269{transform:matrix(0.122695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122695,0.000000,0.000000,0.250000,0,0);}
.mfb_c00269{transform:matrix(0.138647,-0.001525,0.002750,0.249985,0,0);-ms-transform:matrix(0.138647,-0.001525,0.002750,0.249985,0,0);-webkit-transform:matrix(0.138647,-0.001525,0.002750,0.249985,0,0);}
.md4_c00269{transform:matrix(0.142636,-0.001569,0.002750,0.249985,0,0);-ms-transform:matrix(0.142636,-0.001569,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142636,-0.001569,0.002750,0.249985,0,0);}
.mf0_c00269{transform:matrix(0.143396,-0.001577,0.002750,0.249985,0,0);-ms-transform:matrix(0.143396,-0.001577,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143396,-0.001577,0.002750,0.249985,0,0);}
.mdb_c00269{transform:matrix(0.149001,-0.001639,0.002750,0.249985,0,0);-ms-transform:matrix(0.149001,-0.001639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149001,-0.001639,0.002750,0.249985,0,0);}
.m7c_c00269{transform:matrix(0.149211,-0.001641,0.002750,0.249985,0,0);-ms-transform:matrix(0.149211,-0.001641,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149211,-0.001641,0.002750,0.249985,0,0);}
.m1f_c00269{transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);}
.md0_c00269{transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);-ms-transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);}
.m30_c00269{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.ma9_c00269{transform:matrix(0.158480,-0.001743,0.002750,0.249985,0,0);-ms-transform:matrix(0.158480,-0.001743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158480,-0.001743,0.002750,0.249985,0,0);}
.m7e_c00269{transform:matrix(0.158935,-0.001748,0.002750,0.249985,0,0);-ms-transform:matrix(0.158935,-0.001748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158935,-0.001748,0.002750,0.249985,0,0);}
.m1e_c00269{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.m73_c00269{transform:matrix(0.159640,-0.001756,0.002750,0.249985,0,0);-ms-transform:matrix(0.159640,-0.001756,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159640,-0.001756,0.002750,0.249985,0,0);}
.m9_c00269{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mf2_c00269{transform:matrix(0.161070,-0.001772,0.002750,0.249985,0,0);-ms-transform:matrix(0.161070,-0.001772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161070,-0.001772,0.002750,0.249985,0,0);}
.mc7_c00269{transform:matrix(0.162760,-0.001790,0.002750,0.249985,0,0);-ms-transform:matrix(0.162760,-0.001790,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162760,-0.001790,0.002750,0.249985,0,0);}
.m5a_c00269{transform:matrix(0.163055,-0.001794,0.002750,0.249985,0,0);-ms-transform:matrix(0.163055,-0.001794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163055,-0.001794,0.002750,0.249985,0,0);}
.m7a_c00269{transform:matrix(0.163320,-0.001797,0.002750,0.249985,0,0);-ms-transform:matrix(0.163320,-0.001797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163320,-0.001797,0.002750,0.249985,0,0);}
.m7f_c00269{transform:matrix(0.163580,-0.001799,0.002750,0.249985,0,0);-ms-transform:matrix(0.163580,-0.001799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163580,-0.001799,0.002750,0.249985,0,0);}
.m59_c00269{transform:matrix(0.163595,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163595,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163595,-0.001800,0.002750,0.249985,0,0);}
.me8_c00269{transform:matrix(0.164240,-0.001807,0.002750,0.249985,0,0);-ms-transform:matrix(0.164240,-0.001807,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164240,-0.001807,0.002750,0.249985,0,0);}
.m24_c00269{transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);}
.mce_c00269{transform:matrix(0.164610,-0.001811,0.002750,0.249985,0,0);-ms-transform:matrix(0.164610,-0.001811,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164610,-0.001811,0.002750,0.249985,0,0);}
.m65_c00269{transform:matrix(0.164865,-0.001814,0.002750,0.249985,0,0);-ms-transform:matrix(0.164865,-0.001814,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164865,-0.001814,0.002750,0.249985,0,0);}
.md8_c00269{transform:matrix(0.165135,-0.001816,0.002750,0.249985,0,0);-ms-transform:matrix(0.165135,-0.001816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165135,-0.001816,0.002750,0.249985,0,0);}
.m7d_c00269{transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);-ms-transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);}
.m31_c00269{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m78_c00269{transform:matrix(0.165940,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165940,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165940,-0.001825,0.002750,0.249985,0,0);}
.m68_c00269{transform:matrix(0.165965,-0.001826,0.002750,0.249985,0,0);-ms-transform:matrix(0.165965,-0.001826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165965,-0.001826,0.002750,0.249985,0,0);}
.m84_c00269{transform:matrix(0.166100,-0.001827,0.002750,0.249985,0,0);-ms-transform:matrix(0.166100,-0.001827,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166100,-0.001827,0.002750,0.249985,0,0);}
.mf_c00269{transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.mdf_c00269{transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);-ms-transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);}
.m8f_c00269{transform:matrix(0.166820,-0.001835,0.002750,0.249985,0,0);-ms-transform:matrix(0.166820,-0.001835,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166820,-0.001835,0.002750,0.249985,0,0);}
.m37_c00269{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mff_c00269{transform:matrix(0.167670,-0.001844,0.002750,0.249985,0,0);-ms-transform:matrix(0.167670,-0.001844,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167670,-0.001844,0.002750,0.249985,0,0);}
.mf8_c00269{transform:matrix(0.168270,-0.001851,0.002750,0.249985,0,0);-ms-transform:matrix(0.168270,-0.001851,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168270,-0.001851,0.002750,0.249985,0,0);}
.mf5_c00269{transform:matrix(0.168430,-0.001853,0.002750,0.249985,0,0);-ms-transform:matrix(0.168430,-0.001853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168430,-0.001853,0.002750,0.249985,0,0);}
.m13_c00269{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.me1_c00269{transform:matrix(0.169350,-0.001863,0.002750,0.249985,0,0);-ms-transform:matrix(0.169350,-0.001863,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169350,-0.001863,0.002750,0.249985,0,0);}
.mbd_c00269{transform:matrix(0.170125,-0.001871,0.002750,0.249985,0,0);-ms-transform:matrix(0.170125,-0.001871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170125,-0.001871,0.002750,0.249985,0,0);}
.mb8_c00269{transform:matrix(0.170310,-0.001873,0.002750,0.249985,0,0);-ms-transform:matrix(0.170310,-0.001873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170310,-0.001873,0.002750,0.249985,0,0);}
.mde_c00269{transform:matrix(0.170830,-0.001879,0.002750,0.249985,0,0);-ms-transform:matrix(0.170830,-0.001879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170830,-0.001879,0.002750,0.249985,0,0);}
.mb1_c00269{transform:matrix(0.170855,-0.001879,0.002750,0.249985,0,0);-ms-transform:matrix(0.170855,-0.001879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170855,-0.001879,0.002750,0.249985,0,0);}
.me3_c00269{transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-ms-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);}
.m9b_c00269{transform:matrix(0.172180,-0.001894,0.002750,0.249985,0,0);-ms-transform:matrix(0.172180,-0.001894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172180,-0.001894,0.002750,0.249985,0,0);}
.md6_c00269{transform:matrix(0.172605,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172605,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172605,-0.001899,0.002750,0.249985,0,0);}
.md5_c00269{transform:matrix(0.173629,-0.001910,0.002750,0.249985,0,0);-ms-transform:matrix(0.173629,-0.001910,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173629,-0.001910,0.002750,0.249985,0,0);}
.m55_c00269{transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);-ms-transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);}
.mfe_c00269{transform:matrix(0.173694,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173694,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173694,-0.001911,0.002750,0.249985,0,0);}
.m25_c00269{transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.mc6_c00269{transform:matrix(0.175129,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175129,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175129,-0.001926,0.002750,0.249985,0,0);}
.m8d_c00269{transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);-ms-transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175354,-0.001929,0.002750,0.249985,0,0);}
.m67_c00269{transform:matrix(0.175529,-0.001931,0.002750,0.249985,0,0);-ms-transform:matrix(0.175529,-0.001931,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175529,-0.001931,0.002750,0.249985,0,0);}
.m9a_c00269{transform:matrix(0.175794,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175794,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175794,-0.001934,0.002750,0.249985,0,0);}
.m86_c00269{transform:matrix(0.175859,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175859,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175859,-0.001934,0.002750,0.249985,0,0);}
.m53_c00269{transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m64_c00269{transform:matrix(0.176339,-0.001940,0.002750,0.249985,0,0);-ms-transform:matrix(0.176339,-0.001940,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176339,-0.001940,0.002750,0.249985,0,0);}
.m2b_c00269{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m80_c00269{transform:matrix(0.177424,-0.001952,0.002750,0.249985,0,0);-ms-transform:matrix(0.177424,-0.001952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177424,-0.001952,0.002750,0.249985,0,0);}
.m4e_c00269{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m8a_c00269{transform:matrix(0.177614,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177614,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177614,-0.001954,0.002750,0.249985,0,0);}
.mfd_c00269{transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);}
.m1d_c00269{transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);}
.mbc_c00269{transform:matrix(0.178989,-0.001969,0.002750,0.249985,0,0);-ms-transform:matrix(0.178989,-0.001969,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178989,-0.001969,0.002750,0.249985,0,0);}
.m69_c00269{transform:matrix(0.179014,-0.001969,0.002750,0.249985,0,0);-ms-transform:matrix(0.179014,-0.001969,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179014,-0.001969,0.002750,0.249985,0,0);}
.m74_c00269{transform:matrix(0.179274,-0.001972,0.002750,0.249985,0,0);-ms-transform:matrix(0.179274,-0.001972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179274,-0.001972,0.002750,0.249985,0,0);}
.mb4_c00269{transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);-ms-transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179314,-0.001972,0.002750,0.249985,0,0);}
.m87_c00269{transform:matrix(0.179429,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179429,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179429,-0.001974,0.002750,0.249985,0,0);}
.m27_c00269{transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180120,0.000000,0.000000,0.250000,0,0);}
.m66_c00269{transform:matrix(0.180154,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180154,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180154,-0.001982,0.002750,0.249985,0,0);}
.m6a_c00269{transform:matrix(0.180159,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180159,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180159,-0.001982,0.002750,0.249985,0,0);}
.m83_c00269{transform:matrix(0.180404,-0.001984,0.002750,0.249985,0,0);-ms-transform:matrix(0.180404,-0.001984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180404,-0.001984,0.002750,0.249985,0,0);}
.m94_c00269{transform:matrix(0.180439,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180439,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180439,-0.001985,0.002750,0.249985,0,0);}
.md1_c00269{transform:matrix(0.180484,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180484,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180484,-0.001985,0.002750,0.249985,0,0);}
.m52_c00269{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.181264,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181264,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181264,-0.001994,0.002750,0.249985,0,0);}
.mcd_c00269{transform:matrix(0.181499,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181499,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181499,-0.001996,0.002750,0.249985,0,0);}
.me2_c00269{transform:matrix(0.181614,-0.001998,0.002750,0.249985,0,0);-ms-transform:matrix(0.181614,-0.001998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181614,-0.001998,0.002750,0.249985,0,0);}
.m8e_c00269{transform:matrix(0.181689,-0.001999,0.002750,0.249985,0,0);-ms-transform:matrix(0.181689,-0.001999,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181689,-0.001999,0.002750,0.249985,0,0);}
.m10_c00269{transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);}
.mee_c00269{transform:matrix(0.182344,-0.002006,0.002750,0.249985,0,0);-ms-transform:matrix(0.182344,-0.002006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182344,-0.002006,0.002750,0.249985,0,0);}
.mb6_c00269{transform:matrix(0.182894,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182894,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182894,-0.002012,0.002750,0.249985,0,0);}
.md2_c00269{transform:matrix(0.183529,-0.002019,0.002750,0.249985,0,0);-ms-transform:matrix(0.183529,-0.002019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183529,-0.002019,0.002750,0.249985,0,0);}
.m7b_c00269{transform:matrix(0.183584,-0.002019,0.002750,0.249985,0,0);-ms-transform:matrix(0.183584,-0.002019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183584,-0.002019,0.002750,0.249985,0,0);}
.me5_c00269{transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);}
.m81_c00269{transform:matrix(0.183979,-0.002024,0.002750,0.249985,0,0);-ms-transform:matrix(0.183979,-0.002024,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183979,-0.002024,0.002750,0.249985,0,0);}
.m2c_c00269{transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.mcf_c00269{transform:matrix(0.184624,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184624,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184624,-0.002031,0.002750,0.249985,0,0);}
.me6_c00269{transform:matrix(0.184744,-0.002032,0.002750,0.249985,0,0);-ms-transform:matrix(0.184744,-0.002032,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184744,-0.002032,0.002750,0.249985,0,0);}
.m82_c00269{transform:matrix(0.185164,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185164,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185164,-0.002037,0.002750,0.249985,0,0);}
.m70_c00269{transform:matrix(0.185444,-0.002040,0.002750,0.249985,0,0);-ms-transform:matrix(0.185444,-0.002040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185444,-0.002040,0.002750,0.249985,0,0);}
.m38_c00269{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.ma3_c00269{transform:matrix(0.185599,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185599,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185599,-0.002042,0.002750,0.249985,0,0);}
.m43_c00269{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.185639,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185639,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185639,-0.002042,0.002750,0.249985,0,0);}
.md3_c00269{transform:matrix(0.185799,-0.002044,0.002750,0.249985,0,0);-ms-transform:matrix(0.185799,-0.002044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185799,-0.002044,0.002750,0.249985,0,0);}
.m2e_c00269{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.mc9_c00269{transform:matrix(0.186814,-0.002055,0.002750,0.249985,0,0);-ms-transform:matrix(0.186814,-0.002055,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186814,-0.002055,0.002750,0.249985,0,0);}
.m0_c00269{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.m5b_c00269{transform:matrix(0.187694,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187694,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187694,-0.002065,0.002750,0.249985,0,0);}
.m77_c00269{transform:matrix(0.188264,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188264,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188264,-0.002071,0.002750,0.249985,0,0);}
.m6f_c00269{transform:matrix(0.188509,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188509,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188509,-0.002074,0.002750,0.249985,0,0);}
.m4_c00269{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);}
.mcc_c00269{transform:matrix(0.190148,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190148,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190148,-0.002092,0.002750,0.249985,0,0);}
.m4c_c00269{transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);}
.m90_c00269{transform:matrix(0.190628,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190628,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190628,-0.002097,0.002750,0.249985,0,0);}
.m35_c00269{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.meb_c00269{transform:matrix(0.191303,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191303,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191303,-0.002104,0.002750,0.249985,0,0);}
.m28_c00269{transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.mb7_c00269{transform:matrix(0.192318,-0.002116,0.002750,0.249985,0,0);-ms-transform:matrix(0.192318,-0.002116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192318,-0.002116,0.002750,0.249985,0,0);}
.mf9_c00269{transform:matrix(0.192818,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192818,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192818,-0.002121,0.002750,0.249985,0,0);}
.m2f_c00269{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m8b_c00269{transform:matrix(0.193273,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193273,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193273,-0.002126,0.002750,0.249985,0,0);}
.m8c_c00269{transform:matrix(0.193658,-0.002130,0.002750,0.249985,0,0);-ms-transform:matrix(0.193658,-0.002130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193658,-0.002130,0.002750,0.249985,0,0);}
.ma5_c00269{transform:matrix(0.193933,-0.002133,0.002750,0.249985,0,0);-ms-transform:matrix(0.193933,-0.002133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193933,-0.002133,0.002750,0.249985,0,0);}
.m15_c00269{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mef_c00269{transform:matrix(0.194608,-0.002141,0.002750,0.249985,0,0);-ms-transform:matrix(0.194608,-0.002141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194608,-0.002141,0.002750,0.249985,0,0);}
.mc_c00269{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.mca_c00269{transform:matrix(0.194853,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194853,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194853,-0.002143,0.002750,0.249985,0,0);}
.m76_c00269{transform:matrix(0.195068,-0.002146,0.002750,0.249985,0,0);-ms-transform:matrix(0.195068,-0.002146,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195068,-0.002146,0.002750,0.249985,0,0);}
.m6b_c00269{transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);}
.md_c00269{transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m6c_c00269{transform:matrix(0.195853,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195853,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195853,-0.002154,0.002750,0.249985,0,0);}
.m49_c00269{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.mdc_c00269{transform:matrix(0.196618,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196618,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196618,-0.002163,0.002750,0.249985,0,0);}
.m4b_c00269{transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.mc4_c00269{transform:matrix(0.197598,-0.002174,0.002750,0.249985,0,0);-ms-transform:matrix(0.197598,-0.002174,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197598,-0.002174,0.002750,0.249985,0,0);}
.mb9_c00269{transform:matrix(0.197778,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197778,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197778,-0.002176,0.002750,0.249985,0,0);}
.maf_c00269{transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);}
.m89_c00269{transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);}
.mf7_c00269{transform:matrix(0.198743,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198743,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198743,-0.002186,0.002750,0.249985,0,0);}
.ma6_c00269{transform:matrix(0.198758,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198758,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198758,-0.002186,0.002750,0.249985,0,0);}
.mb2_c00269{transform:matrix(0.199068,-0.002190,0.002750,0.249985,0,0);-ms-transform:matrix(0.199068,-0.002190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199068,-0.002190,0.002750,0.249985,0,0);}
.m14_c00269{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.mf1_c00269{transform:matrix(0.199663,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199663,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199663,-0.002196,0.002750,0.249985,0,0);}
.m48_c00269{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.mf3_c00269{transform:matrix(0.200013,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.200013,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200013,-0.002200,0.002750,0.249985,0,0);}
.m4f_c00269{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.200748,-0.002208,0.002750,0.249985,0,0);-ms-transform:matrix(0.200748,-0.002208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200748,-0.002208,0.002750,0.249985,0,0);}
.m75_c00269{transform:matrix(0.201368,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201368,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201368,-0.002215,0.002750,0.249985,0,0);}
.m36_c00269{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201480,0.000000,0.000000,0.250000,0,0);}
.m85_c00269{transform:matrix(0.202383,-0.002226,0.002750,0.249985,0,0);-ms-transform:matrix(0.202383,-0.002226,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202383,-0.002226,0.002750,0.249985,0,0);}
.m2d_c00269{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.mc8_c00269{transform:matrix(0.202658,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202658,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202658,-0.002229,0.002750,0.249985,0,0);}
.mba_c00269{transform:matrix(0.202718,-0.002230,0.002750,0.249985,0,0);-ms-transform:matrix(0.202718,-0.002230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202718,-0.002230,0.002750,0.249985,0,0);}
.m42_c00269{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);}
.mda_c00269{transform:matrix(0.203333,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203333,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203333,-0.002237,0.002750,0.249985,0,0);}
.mb3_c00269{transform:matrix(0.203648,-0.002240,0.002750,0.249985,0,0);-ms-transform:matrix(0.203648,-0.002240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203648,-0.002240,0.002750,0.249985,0,0);}
.maa_c00269{transform:matrix(0.203848,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203848,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203848,-0.002242,0.002750,0.249985,0,0);}
.m96_c00269{transform:matrix(0.204553,-0.002250,0.002750,0.249985,0,0);-ms-transform:matrix(0.204553,-0.002250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204553,-0.002250,0.002750,0.249985,0,0);}
.m9c_c00269{transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204598,-0.002251,0.002750,0.249985,0,0);}
.mcb_c00269{transform:matrix(0.204643,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204643,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204643,-0.002251,0.002750,0.249985,0,0);}
.m3_c00269{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00269{transform:matrix(0.206428,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206428,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206428,-0.002271,0.002750,0.249985,0,0);}
.m72_c00269{transform:matrix(0.207562,-0.002283,0.002750,0.249985,0,0);-ms-transform:matrix(0.207562,-0.002283,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207562,-0.002283,0.002750,0.249985,0,0);}
.m29_c00269{transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207705,0.000000,0.000000,0.250000,0,0);}
.m91_c00269{transform:matrix(0.209132,-0.002300,0.002750,0.249985,0,0);-ms-transform:matrix(0.209132,-0.002300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209132,-0.002300,0.002750,0.249985,0,0);}
.m9d_c00269{transform:matrix(0.209362,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209362,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209362,-0.002303,0.002750,0.249985,0,0);}
.m6_c00269{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m71_c00269{transform:matrix(0.209877,-0.002309,0.002750,0.249985,0,0);-ms-transform:matrix(0.209877,-0.002309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209877,-0.002309,0.002750,0.249985,0,0);}
.m6e_c00269{transform:matrix(0.210542,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210542,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210542,-0.002316,0.002750,0.249985,0,0);}
.mbe_c00269{transform:matrix(0.210627,-0.002317,0.002750,0.249985,0,0);-ms-transform:matrix(0.210627,-0.002317,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210627,-0.002317,0.002750,0.249985,0,0);}
.m3e_c00269{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.210792,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210792,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210792,-0.002319,0.002750,0.249985,0,0);}
.m5e_c00269{transform:matrix(0.211052,-0.002322,0.002750,0.249985,0,0);-ms-transform:matrix(0.211052,-0.002322,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211052,-0.002322,0.002750,0.249985,0,0);}
.m44_c00269{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m92_c00269{transform:matrix(0.211207,-0.002323,0.002750,0.249985,0,0);-ms-transform:matrix(0.211207,-0.002323,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211207,-0.002323,0.002750,0.249985,0,0);}
.m88_c00269{transform:matrix(0.211242,-0.002324,0.002750,0.249985,0,0);-ms-transform:matrix(0.211242,-0.002324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211242,-0.002324,0.002750,0.249985,0,0);}
.ma2_c00269{transform:matrix(0.211607,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211607,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211607,-0.002328,0.002750,0.249985,0,0);}
.m62_c00269{transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);}
.med_c00269{transform:matrix(0.211982,-0.002332,0.002750,0.249985,0,0);-ms-transform:matrix(0.211982,-0.002332,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211982,-0.002332,0.002750,0.249985,0,0);}
.mfc_c00269{transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212117,-0.002333,0.002750,0.249985,0,0);}
.m5d_c00269{transform:matrix(0.212322,-0.002336,0.002750,0.249985,0,0);-ms-transform:matrix(0.212322,-0.002336,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212322,-0.002336,0.002750,0.249985,0,0);}
.m47_c00269{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.mec_c00269{transform:matrix(0.212817,-0.002341,0.002750,0.249985,0,0);-ms-transform:matrix(0.212817,-0.002341,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212817,-0.002341,0.002750,0.249985,0,0);}
.mb5_c00269{transform:matrix(0.212882,-0.002342,0.002750,0.249985,0,0);-ms-transform:matrix(0.212882,-0.002342,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212882,-0.002342,0.002750,0.249985,0,0);}
.m58_c00269{transform:matrix(0.213317,-0.002346,0.002750,0.249985,0,0);-ms-transform:matrix(0.213317,-0.002346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213317,-0.002346,0.002750,0.249985,0,0);}
.ma7_c00269{transform:matrix(0.213332,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213332,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213332,-0.002347,0.002750,0.249985,0,0);}
.m63_c00269{transform:matrix(0.213552,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213552,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213552,-0.002349,0.002750,0.249985,0,0);}
.m46_c00269{transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);}
.me4_c00269{transform:matrix(0.214217,-0.002356,0.002750,0.249985,0,0);-ms-transform:matrix(0.214217,-0.002356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214217,-0.002356,0.002750,0.249985,0,0);}
.m99_c00269{transform:matrix(0.214697,-0.002362,0.002750,0.249985,0,0);-ms-transform:matrix(0.214697,-0.002362,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214697,-0.002362,0.002750,0.249985,0,0);}
.m93_c00269{transform:matrix(0.215137,-0.002367,0.002750,0.249985,0,0);-ms-transform:matrix(0.215137,-0.002367,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215137,-0.002367,0.002750,0.249985,0,0);}
.m61_c00269{transform:matrix(0.215292,-0.002368,0.002750,0.249985,0,0);-ms-transform:matrix(0.215292,-0.002368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215292,-0.002368,0.002750,0.249985,0,0);}
.me9_c00269{transform:matrix(0.215342,-0.002369,0.002750,0.249985,0,0);-ms-transform:matrix(0.215342,-0.002369,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215342,-0.002369,0.002750,0.249985,0,0);}
.md7_c00269{transform:matrix(0.215577,-0.002371,0.002750,0.249985,0,0);-ms-transform:matrix(0.215577,-0.002371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215577,-0.002371,0.002750,0.249985,0,0);}
.m40_c00269{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m97_c00269{transform:matrix(0.215642,-0.002372,0.002750,0.249985,0,0);-ms-transform:matrix(0.215642,-0.002372,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215642,-0.002372,0.002750,0.249985,0,0);}
.mb0_c00269{transform:matrix(0.216372,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216372,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216372,-0.002380,0.002750,0.249985,0,0);}
.mbb_c00269{transform:matrix(0.216387,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216387,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216387,-0.002380,0.002750,0.249985,0,0);}
.m95_c00269{transform:matrix(0.216407,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216407,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216407,-0.002380,0.002750,0.249985,0,0);}
.mac_c00269{transform:matrix(0.216632,-0.002383,0.002750,0.249985,0,0);-ms-transform:matrix(0.216632,-0.002383,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216632,-0.002383,0.002750,0.249985,0,0);}
.me0_c00269{transform:matrix(0.216727,-0.002384,0.002750,0.249985,0,0);-ms-transform:matrix(0.216727,-0.002384,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216727,-0.002384,0.002750,0.249985,0,0);}
.md9_c00269{transform:matrix(0.216787,-0.002385,0.002750,0.249985,0,0);-ms-transform:matrix(0.216787,-0.002385,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216787,-0.002385,0.002750,0.249985,0,0);}
.ma0_c00269{transform:matrix(0.217137,-0.002389,0.002750,0.249985,0,0);-ms-transform:matrix(0.217137,-0.002389,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217137,-0.002389,0.002750,0.249985,0,0);}
.m51_c00269{transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218140,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m79_c00269{transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219777,-0.002418,0.002750,0.249985,0,0);}
.m50_c00269{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00269{transform:matrix(0.222577,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222577,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222577,-0.002448,0.002750,0.249985,0,0);}
.m3c_c00269{transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);}
.m98_c00269{transform:matrix(0.222767,-0.002450,0.002750,0.249985,0,0);-ms-transform:matrix(0.222767,-0.002450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222767,-0.002450,0.002750,0.249985,0,0);}
.mc3_c00269{transform:matrix(0.223851,-0.002462,0.002750,0.249985,0,0);-ms-transform:matrix(0.223851,-0.002462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223851,-0.002462,0.002750,0.249985,0,0);}
.mab_c00269{transform:matrix(0.224376,-0.002468,0.002750,0.249985,0,0);-ms-transform:matrix(0.224376,-0.002468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224376,-0.002468,0.002750,0.249985,0,0);}
.me_c00269{transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);}
.mea_c00269{transform:matrix(0.230221,-0.002532,0.002750,0.249985,0,0);-ms-transform:matrix(0.230221,-0.002532,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230221,-0.002532,0.002750,0.249985,0,0);}
.mae_c00269{transform:matrix(0.230981,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.230981,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230981,-0.002541,0.002750,0.249985,0,0);}
.mad_c00269{transform:matrix(0.234781,-0.002583,0.002750,0.249985,0,0);-ms-transform:matrix(0.234781,-0.002583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234781,-0.002583,0.002750,0.249985,0,0);}
.m45_c00269{transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);}
.me7_c00269{transform:matrix(0.236496,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236496,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236496,-0.002601,0.002750,0.249985,0,0);}
.m60_c00269{transform:matrix(0.236731,-0.002604,0.002750,0.249985,0,0);-ms-transform:matrix(0.236731,-0.002604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236731,-0.002604,0.002750,0.249985,0,0);}
.m19_c00269{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.mc2_c00269{transform:matrix(0.237761,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237761,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237761,-0.002615,0.002750,0.249985,0,0);}
.ma4_c00269{transform:matrix(0.238021,-0.002618,0.002750,0.249985,0,0);-ms-transform:matrix(0.238021,-0.002618,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238021,-0.002618,0.002750,0.249985,0,0);}
.m9f_c00269{transform:matrix(0.239016,-0.002629,0.002750,0.249985,0,0);-ms-transform:matrix(0.239016,-0.002629,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239016,-0.002629,0.002750,0.249985,0,0);}
.m3b_c00269{transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);}
.ma8_c00269{transform:matrix(0.240240,-0.002643,0.002750,0.249985,0,0);-ms-transform:matrix(0.240240,-0.002643,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240240,-0.002643,0.002750,0.249985,0,0);}
.mc5_c00269{transform:matrix(0.241370,-0.002655,0.002750,0.249985,0,0);-ms-transform:matrix(0.241370,-0.002655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241370,-0.002655,0.002750,0.249985,0,0);}
.mc0_c00269{transform:matrix(0.243155,-0.002675,0.002750,0.249985,0,0);-ms-transform:matrix(0.243155,-0.002675,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243155,-0.002675,0.002750,0.249985,0,0);}
.m54_c00269{transform:matrix(0.243170,-0.002675,0.002750,0.249985,0,0);-ms-transform:matrix(0.243170,-0.002675,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243170,-0.002675,0.002750,0.249985,0,0);}
.m41_c00269{transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.ma1_c00269{transform:matrix(0.252175,-0.002774,0.002750,0.249985,0,0);-ms-transform:matrix(0.252175,-0.002774,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252175,-0.002774,0.002750,0.249985,0,0);}
.m9e_c00269{transform:matrix(0.264494,-0.002909,0.002750,0.249985,0,0);-ms-transform:matrix(0.264494,-0.002909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264494,-0.002909,0.002750,0.249985,0,0);}
.mbf_c00269{transform:matrix(0.264729,-0.002912,0.002750,0.249985,0,0);-ms-transform:matrix(0.264729,-0.002912,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264729,-0.002912,0.002750,0.249985,0,0);}
.m17_c00269{transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);}
.mfa_c00269{transform:matrix(0.345009,-0.003795,0.002750,0.249985,0,0);-ms-transform:matrix(0.345009,-0.003795,0.002750,0.249985,0,0);-webkit-transform:matrix(0.345009,-0.003795,0.002750,0.249985,0,0);}
.mf6_c00269{transform:matrix(0.360618,-0.003967,0.002750,0.249985,0,0);-ms-transform:matrix(0.360618,-0.003967,0.002750,0.249985,0,0);-webkit-transform:matrix(0.360618,-0.003967,0.002750,0.249985,0,0);}
.mdd_c00269{transform:matrix(0.500645,-0.005507,0.002750,0.249985,0,0);-ms-transform:matrix(0.500645,-0.005507,0.002750,0.249985,0,0);-webkit-transform:matrix(0.500645,-0.005507,0.002750,0.249985,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:0.000000px;}
.fc0_c00269{color:transparent;}
.fs10_c00269{font-size:54.603303px;}
.fse_c00269{font-size:57.753494px;}
.fs6_c00269{font-size:59.850000px;}
.fs8_c00269{font-size:59.853621px;}
.fsd_c00269{font-size:60.903684px;}
.fsf_c00269{font-size:61.953748px;}
.fs4_c00269{font-size:63.000000px;}
.fsc_c00269{font-size:63.003811px;}
.fs5_c00269{font-size:64.050000px;}
.fs7_c00269{font-size:64.053875px;}
.fs2_c00269{font-size:65.100000px;}
.fs9_c00269{font-size:65.103938px;}
.fs3_c00269{font-size:67.200000px;}
.fsb_c00269{font-size:67.204065px;}
.fs0_c00269{font-size:68.250000px;}
.fs11_c00269{font-size:68.254129px;}
.fs1_c00269{font-size:69.300000px;}
.fsa_c00269{font-size:69.304193px;}
.fs12_c00269{font-size:71.404320px;}
.y0_c00269{bottom:0.000000px;}
.ye5_c00269{bottom:21.320820px;}
.ye6_c00269{bottom:21.966751px;}
.ye7_c00269{bottom:22.584448px;}
.ye8_c00269{bottom:23.680813px;}
.ye9_c00269{bottom:23.825020px;}
.yea_c00269{bottom:24.229012px;}
.yeb_c00269{bottom:25.277814px;}
.yec_c00269{bottom:26.150941px;}
.yed_c00269{bottom:27.244684px;}
.ydd_c00269{bottom:39.677242px;}
.yde_c00269{bottom:40.879503px;}
.ydf_c00269{bottom:41.198269px;}
.ye0_c00269{bottom:42.601891px;}
.ye1_c00269{bottom:42.950430px;}
.ye2_c00269{bottom:43.867671px;}
.ye3_c00269{bottom:44.135619px;}
.ye4_c00269{bottom:44.645140px;}
.yd4_c00269{bottom:56.959774px;}
.yd5_c00269{bottom:57.586872px;}
.yd6_c00269{bottom:59.177779px;}
.yd7_c00269{bottom:59.536938px;}
.yd8_c00269{bottom:60.686536px;}
.yd9_c00269{bottom:60.967125px;}
.yda_c00269{bottom:61.483837px;}
.ydb_c00269{bottom:62.333881px;}
.ydc_c00269{bottom:62.713392px;}
.ycb_c00269{bottom:73.699098px;}
.ycc_c00269{bottom:73.972407px;}
.ycd_c00269{bottom:74.341629px;}
.yce_c00269{bottom:75.466911px;}
.ycf_c00269{bottom:75.760507px;}
.yd0_c00269{bottom:76.158841px;}
.yd1_c00269{bottom:76.638030px;}
.yd2_c00269{bottom:77.046360px;}
.yd3_c00269{bottom:78.662229px;}
.yc3_c00269{bottom:91.248571px;}
.yc4_c00269{bottom:91.536550px;}
.yc5_c00269{bottom:92.444614px;}
.yc6_c00269{bottom:92.670880px;}
.yc7_c00269{bottom:93.777133px;}
.yc8_c00269{bottom:94.181890px;}
.yc9_c00269{bottom:94.432768px;}
.yca_c00269{bottom:94.980699px;}
.yba_c00269{bottom:108.529968px;}
.ybb_c00269{bottom:109.051888px;}
.ybc_c00269{bottom:109.474440px;}
.ybd_c00269{bottom:110.295426px;}
.ybe_c00269{bottom:110.594640px;}
.ybf_c00269{bottom:111.049407px;}
.yc0_c00269{bottom:111.684421px;}
.yc1_c00269{bottom:112.134141px;}
.yc2_c00269{bottom:112.407802px;}
.yb3_c00269{bottom:125.810191px;}
.yb4_c00269{bottom:126.376513px;}
.yb5_c00269{bottom:126.704659px;}
.yb6_c00269{bottom:127.854637px;}
.yb7_c00269{bottom:128.275062px;}
.yb8_c00269{bottom:129.362070px;}
.yb9_c00269{bottom:130.691080px;}
.yac_c00269{bottom:143.091205px;}
.yad_c00269{bottom:143.663239px;}
.yae_c00269{bottom:144.529473px;}
.yaf_c00269{bottom:145.228903px;}
.yb0_c00269{bottom:145.962166px;}
.yb1_c00269{bottom:146.698332px;}
.yb2_c00269{bottom:147.035799px;}
.ya3_c00269{bottom:160.643582px;}
.ya4_c00269{bottom:161.537669px;}
.ya5_c00269{bottom:162.081389px;}
.ya6_c00269{bottom:162.326634px;}
.ya7_c00269{bottom:163.100408px;}
.ya8_c00269{bottom:163.407112px;}
.ya9_c00269{bottom:164.111558px;}
.yaa_c00269{bottom:164.724472px;}
.yab_c00269{bottom:165.027516px;}
.y9a_c00269{bottom:178.467728px;}
.y9b_c00269{bottom:179.794001px;}
.y9c_c00269{bottom:180.072470px;}
.y9d_c00269{bottom:181.323386px;}
.y9e_c00269{bottom:181.533854px;}
.y9f_c00269{bottom:181.928879px;}
.ya0_c00269{bottom:182.994957px;}
.ya1_c00269{bottom:183.364814px;}
.ya2_c00269{bottom:183.677835px;}
.y92_c00269{bottom:196.555685px;}
.y93_c00269{bottom:196.905143px;}
.y94_c00269{bottom:197.582906px;}
.y95_c00269{bottom:197.877159px;}
.y96_c00269{bottom:198.683529px;}
.y97_c00269{bottom:198.947160px;}
.y98_c00269{bottom:199.762968px;}
.y99_c00269{bottom:199.974117px;}
.y8c_c00269{bottom:213.838490px;}
.y8d_c00269{bottom:214.598226px;}
.y8e_c00269{bottom:215.398292px;}
.y8f_c00269{bottom:216.697821px;}
.y90_c00269{bottom:217.269120px;}
.y91_c00269{bottom:217.894704px;}
.y83_c00269{bottom:231.116086px;}
.y84_c00269{bottom:231.394041px;}
.y85_c00269{bottom:232.015575px;}
.y86_c00269{bottom:232.144800px;}
.y87_c00269{bottom:232.900823px;}
.y88_c00269{bottom:233.112060px;}
.y89_c00269{bottom:233.270774px;}
.y8a_c00269{bottom:233.576367px;}
.y8b_c00269{bottom:233.760641px;}
.y7a_c00269{bottom:248.396735px;}
.y7b_c00269{bottom:248.622438px;}
.y7c_c00269{bottom:248.848075px;}
.y7d_c00269{bottom:249.065562px;}
.y7e_c00269{bottom:249.733845px;}
.y7f_c00269{bottom:250.259502px;}
.y80_c00269{bottom:250.689706px;}
.y81_c00269{bottom:251.008058px;}
.y82_c00269{bottom:251.269071px;}
.y71_c00269{bottom:265.946193px;}
.y72_c00269{bottom:266.121260px;}
.y73_c00269{bottom:266.325946px;}
.y74_c00269{bottom:266.490666px;}
.y75_c00269{bottom:267.108817px;}
.y76_c00269{bottom:267.608767px;}
.y77_c00269{bottom:267.809064px;}
.y78_c00269{bottom:268.023272px;}
.y79_c00269{bottom:268.480268px;}
.y67_c00269{bottom:282.686443px;}
.y68_c00269{bottom:282.986991px;}
.y69_c00269{bottom:283.381654px;}
.y6a_c00269{bottom:283.728963px;}
.y6b_c00269{bottom:283.963642px;}
.y6c_c00269{bottom:284.279057px;}
.y6d_c00269{bottom:284.489910px;}
.y6e_c00269{bottom:284.905809px;}
.y6f_c00269{bottom:285.193916px;}
.y70_c00269{bottom:285.752374px;}
.y60_c00269{bottom:299.697951px;}
.y61_c00269{bottom:300.265333px;}
.y62_c00269{bottom:301.256224px;}
.y63_c00269{bottom:302.228970px;}
.y64_c00269{bottom:303.078741px;}
.y65_c00269{bottom:303.521779px;}
.y66_c00269{bottom:303.785445px;}
.y58_c00269{bottom:316.979123px;}
.y59_c00269{bottom:317.478055px;}
.y5a_c00269{bottom:317.782929px;}
.y5b_c00269{bottom:318.642711px;}
.y5c_c00269{bottom:319.042329px;}
.y5d_c00269{bottom:319.649667px;}
.y5e_c00269{bottom:320.576181px;}
.y5f_c00269{bottom:320.741023px;}
.y4f_c00269{bottom:333.990391px;}
.y50_c00269{bottom:334.496619px;}
.y51_c00269{bottom:335.181139px;}
.y52_c00269{bottom:335.411166px;}
.y53_c00269{bottom:335.737977px;}
.y54_c00269{bottom:336.611646px;}
.y55_c00269{bottom:337.359348px;}
.y56_c00269{bottom:337.647327px;}
.y57_c00269{bottom:337.927123px;}
.y47_c00269{bottom:351.810333px;}
.y48_c00269{bottom:352.187365px;}
.y49_c00269{bottom:352.491728px;}
.y4a_c00269{bottom:353.493337px;}
.y4b_c00269{bottom:353.784897px;}
.y4c_c00269{bottom:354.411784px;}
.y4d_c00269{bottom:354.626713px;}
.y4e_c00269{bottom:354.897387px;}
.y40_c00269{bottom:369.901500px;}
.y41_c00269{bottom:370.186603px;}
.y42_c00269{bottom:370.745029px;}
.y43_c00269{bottom:371.336027px;}
.y44_c00269{bottom:372.090291px;}
.y45_c00269{bottom:372.229452px;}
.y46_c00269{bottom:372.515282px;}
.y3f_c00269{bottom:388.399500px;}
.y3e_c00269{bottom:405.333000px;}
.y37_c00269{bottom:421.741500px;}
.y38_c00269{bottom:422.284500px;}
.y39_c00269{bottom:423.060000px;}
.y3a_c00269{bottom:423.270000px;}
.y3b_c00269{bottom:423.513000px;}
.y3c_c00269{bottom:424.222500px;}
.y3d_c00269{bottom:424.611000px;}
.y2f_c00269{bottom:438.753000px;}
.y30_c00269{bottom:438.970500px;}
.y31_c00269{bottom:439.189500px;}
.y32_c00269{bottom:439.956000px;}
.y33_c00269{bottom:440.487000px;}
.y34_c00269{bottom:440.733000px;}
.y35_c00269{bottom:441.409500px;}
.y36_c00269{bottom:441.585000px;}
.y26_c00269{bottom:456.031500px;}
.y27_c00269{bottom:456.252000px;}
.y28_c00269{bottom:456.469500px;}
.y29_c00269{bottom:457.042500px;}
.y2a_c00269{bottom:457.296000px;}
.y2b_c00269{bottom:458.064000px;}
.y2c_c00269{bottom:458.812500px;}
.y2d_c00269{bottom:458.965500px;}
.y2e_c00269{bottom:459.189000px;}
.y1f_c00269{bottom:473.313000px;}
.y20_c00269{bottom:474.184500px;}
.y21_c00269{bottom:474.961500px;}
.y22_c00269{bottom:475.168500px;}
.y23_c00269{bottom:475.777500px;}
.y24_c00269{bottom:476.176500px;}
.y25_c00269{bottom:476.694000px;}
.y17_c00269{bottom:489.514500px;}
.y18_c00269{bottom:489.877500px;}
.y19_c00269{bottom:491.544000px;}
.y1a_c00269{bottom:491.998500px;}
.y1b_c00269{bottom:492.261000px;}
.y1c_c00269{bottom:492.603000px;}
.y1d_c00269{bottom:493.212000px;}
.y1e_c00269{bottom:494.154000px;}
.yd_c00269{bottom:507.064500px;}
.ye_c00269{bottom:507.631500px;}
.yf_c00269{bottom:507.880500px;}
.y10_c00269{bottom:508.621500px;}
.y11_c00269{bottom:508.855500px;}
.y12_c00269{bottom:509.418000px;}
.y13_c00269{bottom:509.619000px;}
.y14_c00269{bottom:510.151500px;}
.y15_c00269{bottom:510.510000px;}
.y16_c00269{bottom:510.790500px;}
.y4_c00269{bottom:524.343000px;}
.y5_c00269{bottom:524.628000px;}
.y6_c00269{bottom:524.929500px;}
.y7_c00269{bottom:525.681000px;}
.y8_c00269{bottom:526.509000px;}
.y9_c00269{bottom:526.779000px;}
.ya_c00269{bottom:527.205000px;}
.yb_c00269{bottom:527.865000px;}
.yc_c00269{bottom:528.132000px;}
.y3_c00269{bottom:543.525000px;}
.y2_c00269{bottom:560.532000px;}
.y1_c00269{bottom:576.321000px;}
.h12_c00269{height:54.603303px;}
.h10_c00269{height:57.753494px;}
.h8_c00269{height:59.850000px;}
.ha_c00269{height:59.853621px;}
.hf_c00269{height:60.903684px;}
.h11_c00269{height:61.953748px;}
.h6_c00269{height:63.000000px;}
.he_c00269{height:63.003811px;}
.h7_c00269{height:64.050000px;}
.h9_c00269{height:64.053875px;}
.h4_c00269{height:65.100000px;}
.hb_c00269{height:65.103938px;}
.h5_c00269{height:67.200000px;}
.hd_c00269{height:67.204065px;}
.h2_c00269{height:68.250000px;}
.h13_c00269{height:68.254129px;}
.h3_c00269{height:69.300000px;}
.hc_c00269{height:69.304193px;}
.h14_c00269{height:71.404320px;}
.h1_c00269{height:618.750000px;}
.h0_c00269{height:619.050000px;}
.w0_c00269{width:359.100000px;}
.w1_c00269{width:359.250000px;}
.x0_c00269{left:0.000000px;}
.x4f_c00269{left:33.556779px;}
.x5f_c00269{left:34.637115px;}
.x37_c00269{left:35.905500px;}
.x2_c00269{left:36.990000px;}
.x75_c00269{left:49.532789px;}
.x55_c00269{left:52.497266px;}
.x73_c00269{left:53.898635px;}
.x26_c00269{left:54.958500px;}
.x2c_c00269{left:56.296500px;}
.xd_c00269{left:58.758000px;}
.x50_c00269{left:60.879279px;}
.x3c_c00269{left:62.635500px;}
.x41_c00269{left:64.698129px;}
.x79_c00269{left:66.956390px;}
.x71_c00269{left:68.965812px;}
.x45_c00269{left:71.462022px;}
.x27_c00269{left:73.039500px;}
.x5b_c00269{left:75.946084px;}
.x14_c00269{left:77.176500px;}
.x70_c00269{left:80.434043px;}
.xe_c00269{left:81.978000px;}
.x3e_c00269{left:88.161000px;}
.x56_c00269{left:89.489178px;}
.x32_c00269{left:90.835500px;}
.x9_c00269{left:93.960000px;}
.x5c_c00269{left:95.717584px;}
.x4a_c00269{left:97.358984px;}
.x3_c00269{left:103.410000px;}
.x77_c00269{left:105.139494px;}
.x21_c00269{left:109.221000px;}
.xa_c00269{left:111.240000px;}
.x68_c00269{left:119.061741px;}
.x28_c00269{left:120.765000px;}
.x4_c00269{left:121.770000px;}
.x60_c00269{left:124.591605px;}
.x38_c00269{left:126.625500px;}
.x51_c00269{left:128.331279px;}
.x6d_c00269{left:129.772463px;}
.x63_c00269{left:131.976767px;}
.x74_c00269{left:134.925962px;}
.x46_c00269{left:136.736861px;}
.xf_c00269{left:139.747500px;}
.x29_c00269{left:141.886500px;}
.x65_c00269{left:144.613505px;}
.x2d_c00269{left:145.918500px;}
.x15_c00269{left:147.856500px;}
.x52_c00269{left:149.665779px;}
.x57_c00269{left:151.276354px;}
.x39_c00269{left:154.435500px;}
.x5d_c00269{left:156.470584px;}
.x47_c00269{left:160.037085px;}
.x1b_c00269{left:163.459500px;}
.x16_c00269{left:164.593500px;}
.x3d_c00269{left:167.665500px;}
.xb_c00269{left:169.290000px;}
.x1_c00269{left:171.450000px;}
.x22_c00269{left:174.015000px;}
.x6e_c00269{left:176.445917px;}
.x53_c00269{left:178.339779px;}
.x5_c00269{left:182.250000px;}
.x69_c00269{left:184.911950px;}
.x42_c00269{left:187.561923px;}
.x33_c00269{left:189.378000px;}
.x1c_c00269{left:191.889000px;}
.x2e_c00269{left:194.248500px;}
.x6a_c00269{left:195.998976px;}
.x54_c00269{left:197.508279px;}
.x58_c00269{left:201.226899px;}
.x6_c00269{left:203.310000px;}
.x17_c00269{left:204.808500px;}
.x2a_c00269{left:205.884000px;}
.x1d_c00269{left:208.276500px;}
.x66_c00269{left:211.782762px;}
.x34_c00269{left:213.678000px;}
.x2f_c00269{left:216.664500px;}
.x18_c00269{left:219.153000px;}
.x59_c00269{left:221.208614px;}
.x48_c00269{left:222.414023px;}
.x10_c00269{left:224.215500px;}
.x6f_c00269{left:225.376772px;}
.x78_c00269{left:226.988459px;}
.x1e_c00269{left:229.687500px;}
.x61_c00269{left:234.227810px;}
.x43_c00269{left:235.823367px;}
.x4b_c00269{left:241.013832px;}
.x23_c00269{left:242.058000px;}
.x5e_c00269{left:243.367084px;}
.x72_c00269{left:244.461090px;}
.x64_c00269{left:248.863832px;}
.x62_c00269{left:250.156491px;}
.x44_c00269{left:252.362004px;}
.x11_c00269{left:256.929000px;}
.xc_c00269{left:259.470000px;}
.x3f_c00269{left:261.223500px;}
.x7_c00269{left:265.950000px;}
.x1f_c00269{left:267.769500px;}
.x3a_c00269{left:271.885500px;}
.x40_c00269{left:273.874500px;}
.x24_c00269{left:275.272500px;}
.x30_c00269{left:278.166000px;}
.x8_c00269{left:279.990000px;}
.x19_c00269{left:282.789000px;}
.x35_c00269{left:284.650500px;}
.x5a_c00269{left:288.227839px;}
.x4e_c00269{left:290.434696px;}
.x6b_c00269{left:292.350495px;}
.x31_c00269{left:294.177000px;}
.x3b_c00269{left:296.725500px;}
.x2b_c00269{left:299.580000px;}
.x67_c00269{left:301.730772px;}
.x1a_c00269{left:302.788500px;}
.x12_c00269{left:307.687500px;}
.x6c_c00269{left:308.805543px;}
.x4c_c00269{left:312.286265px;}
.x49_c00269{left:316.363421px;}
.x25_c00269{left:318.424500px;}
.x76_c00269{left:321.324506px;}
.x36_c00269{left:323.542500px;}
.x4d_c00269{left:324.953484px;}
.x20_c00269{left:326.649000px;}
.x13_c00269{left:328.225500px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.fs10_c00269{font-size:48.536270pt;}
.fse_c00269{font-size:51.336439pt;}
.fs6_c00269{font-size:53.200000pt;}
.fs8_c00269{font-size:53.203219pt;}
.fsd_c00269{font-size:54.136608pt;}
.fsf_c00269{font-size:55.069998pt;}
.fs4_c00269{font-size:56.000000pt;}
.fsc_c00269{font-size:56.003388pt;}
.fs5_c00269{font-size:56.933333pt;}
.fs7_c00269{font-size:56.936778pt;}
.fs2_c00269{font-size:57.866667pt;}
.fs9_c00269{font-size:57.870167pt;}
.fs3_c00269{font-size:59.733333pt;}
.fsb_c00269{font-size:59.736947pt;}
.fs0_c00269{font-size:60.666667pt;}
.fs11_c00269{font-size:60.670337pt;}
.fs1_c00269{font-size:61.600000pt;}
.fsa_c00269{font-size:61.603727pt;}
.fs12_c00269{font-size:63.470506pt;}
.y0_c00269{bottom:0.000000pt;}
.ye5_c00269{bottom:18.951840pt;}
.ye6_c00269{bottom:19.526001pt;}
.ye7_c00269{bottom:20.075065pt;}
.ye8_c00269{bottom:21.049612pt;}
.ye9_c00269{bottom:21.177796pt;}
.yea_c00269{bottom:21.536900pt;}
.yeb_c00269{bottom:22.469168pt;}
.yec_c00269{bottom:23.245281pt;}
.yed_c00269{bottom:24.217497pt;}
.ydd_c00269{bottom:35.268660pt;}
.yde_c00269{bottom:36.337336pt;}
.ydf_c00269{bottom:36.620684pt;}
.ye0_c00269{bottom:37.868348pt;}
.ye1_c00269{bottom:38.178160pt;}
.ye2_c00269{bottom:38.993485pt;}
.ye3_c00269{bottom:39.231661pt;}
.ye4_c00269{bottom:39.684569pt;}
.yd4_c00269{bottom:50.630911pt;}
.yd5_c00269{bottom:51.188331pt;}
.yd6_c00269{bottom:52.602471pt;}
.yd7_c00269{bottom:52.921723pt;}
.yd8_c00269{bottom:53.943588pt;}
.yd9_c00269{bottom:54.193000pt;}
.yda_c00269{bottom:54.652300pt;}
.ydb_c00269{bottom:55.407895pt;}
.ydc_c00269{bottom:55.745237pt;}
.ycb_c00269{bottom:65.510309pt;}
.ycc_c00269{bottom:65.753251pt;}
.ycd_c00269{bottom:66.081448pt;}
.yce_c00269{bottom:67.081699pt;}
.ycf_c00269{bottom:67.342673pt;}
.yd0_c00269{bottom:67.696748pt;}
.yd1_c00269{bottom:68.122693pt;}
.yd2_c00269{bottom:68.485653pt;}
.yd3_c00269{bottom:69.921981pt;}
.yc3_c00269{bottom:81.109841pt;}
.yc4_c00269{bottom:81.365823pt;}
.yc5_c00269{bottom:82.172991pt;}
.yc6_c00269{bottom:82.374116pt;}
.yc7_c00269{bottom:83.357452pt;}
.yc8_c00269{bottom:83.717236pt;}
.yc9_c00269{bottom:83.940239pt;}
.yca_c00269{bottom:84.427288pt;}
.yba_c00269{bottom:96.471083pt;}
.ybb_c00269{bottom:96.935012pt;}
.ybc_c00269{bottom:97.310613pt;}
.ybd_c00269{bottom:98.040379pt;}
.ybe_c00269{bottom:98.306347pt;}
.ybf_c00269{bottom:98.710584pt;}
.yc0_c00269{bottom:99.275041pt;}
.yc1_c00269{bottom:99.674792pt;}
.yc2_c00269{bottom:99.918047pt;}
.yb3_c00269{bottom:111.831281pt;}
.yb4_c00269{bottom:112.334679pt;}
.yb5_c00269{bottom:112.626364pt;}
.yb6_c00269{bottom:113.648567pt;}
.yb7_c00269{bottom:114.022277pt;}
.yb8_c00269{bottom:114.988507pt;}
.yb9_c00269{bottom:116.169849pt;}
.yac_c00269{bottom:127.192183pt;}
.yad_c00269{bottom:127.700657pt;}
.yae_c00269{bottom:128.470643pt;}
.yaf_c00269{bottom:129.092359pt;}
.yb0_c00269{bottom:129.744148pt;}
.yb1_c00269{bottom:130.398517pt;}
.yb2_c00269{bottom:130.698488pt;}
.ya3_c00269{bottom:142.794295pt;}
.ya4_c00269{bottom:143.589039pt;}
.ya5_c00269{bottom:144.072345pt;}
.ya6_c00269{bottom:144.290341pt;}
.ya7_c00269{bottom:144.978140pt;}
.ya8_c00269{bottom:145.250767pt;}
.ya9_c00269{bottom:145.876940pt;}
.yaa_c00269{bottom:146.421753pt;}
.yab_c00269{bottom:146.691125pt;}
.y9a_c00269{bottom:158.637980pt;}
.y9b_c00269{bottom:159.816889pt;}
.y9c_c00269{bottom:160.064417pt;}
.y9d_c00269{bottom:161.176343pt;}
.y9e_c00269{bottom:161.363425pt;}
.y9f_c00269{bottom:161.714559pt;}
.ya0_c00269{bottom:162.662184pt;}
.ya1_c00269{bottom:162.990945pt;}
.ya2_c00269{bottom:163.269187pt;}
.y92_c00269{bottom:174.716164pt;}
.y93_c00269{bottom:175.026793pt;}
.y94_c00269{bottom:175.629249pt;}
.y95_c00269{bottom:175.890808pt;}
.y96_c00269{bottom:176.607581pt;}
.y97_c00269{bottom:176.841920pt;}
.y98_c00269{bottom:177.567083pt;}
.y99_c00269{bottom:177.754771pt;}
.y8c_c00269{bottom:190.078657pt;}
.y8d_c00269{bottom:190.753979pt;}
.y8e_c00269{bottom:191.465148pt;}
.y8f_c00269{bottom:192.620285pt;}
.y90_c00269{bottom:193.128107pt;}
.y91_c00269{bottom:193.684181pt;}
.y83_c00269{bottom:205.436521pt;}
.y84_c00269{bottom:205.683592pt;}
.y85_c00269{bottom:206.236067pt;}
.y86_c00269{bottom:206.350933pt;}
.y87_c00269{bottom:207.022953pt;}
.y88_c00269{bottom:207.210720pt;}
.y89_c00269{bottom:207.351799pt;}
.y8a_c00269{bottom:207.623437pt;}
.y8b_c00269{bottom:207.787236pt;}
.y7a_c00269{bottom:220.797097pt;}
.y7b_c00269{bottom:220.997723pt;}
.y7c_c00269{bottom:221.198289pt;}
.y7d_c00269{bottom:221.391611pt;}
.y7e_c00269{bottom:221.985640pt;}
.y7f_c00269{bottom:222.452891pt;}
.y80_c00269{bottom:222.835295pt;}
.y81_c00269{bottom:223.118273pt;}
.y82_c00269{bottom:223.350285pt;}
.y71_c00269{bottom:236.396616pt;}
.y72_c00269{bottom:236.552231pt;}
.y73_c00269{bottom:236.734175pt;}
.y74_c00269{bottom:236.880592pt;}
.y75_c00269{bottom:237.430060pt;}
.y76_c00269{bottom:237.874460pt;}
.y77_c00269{bottom:238.052501pt;}
.y78_c00269{bottom:238.242908pt;}
.y79_c00269{bottom:238.649127pt;}
.y67_c00269{bottom:251.276839pt;}
.y68_c00269{bottom:251.543992pt;}
.y69_c00269{bottom:251.894804pt;}
.y6a_c00269{bottom:252.203523pt;}
.y6b_c00269{bottom:252.412127pt;}
.y6c_c00269{bottom:252.692495pt;}
.y6d_c00269{bottom:252.879920pt;}
.y6e_c00269{bottom:253.249608pt;}
.y6f_c00269{bottom:253.505703pt;}
.y70_c00269{bottom:254.002111pt;}
.y60_c00269{bottom:266.398179pt;}
.y61_c00269{bottom:266.902519pt;}
.y62_c00269{bottom:267.783311pt;}
.y63_c00269{bottom:268.647973pt;}
.y64_c00269{bottom:269.403325pt;}
.y65_c00269{bottom:269.797137pt;}
.y66_c00269{bottom:270.031507pt;}
.y58_c00269{bottom:281.759220pt;}
.y59_c00269{bottom:282.202716pt;}
.y5a_c00269{bottom:282.473715pt;}
.y5b_c00269{bottom:283.237965pt;}
.y5c_c00269{bottom:283.593181pt;}
.y5d_c00269{bottom:284.133037pt;}
.y5e_c00269{bottom:284.956605pt;}
.y5f_c00269{bottom:285.103132pt;}
.y4f_c00269{bottom:296.880348pt;}
.y50_c00269{bottom:297.330328pt;}
.y51_c00269{bottom:297.938791pt;}
.y52_c00269{bottom:298.143259pt;}
.y53_c00269{bottom:298.433757pt;}
.y54_c00269{bottom:299.210352pt;}
.y55_c00269{bottom:299.874976pt;}
.y56_c00269{bottom:300.130957pt;}
.y57_c00269{bottom:300.379665pt;}
.y47_c00269{bottom:312.720296pt;}
.y48_c00269{bottom:313.055436pt;}
.y49_c00269{bottom:313.325980pt;}
.y4a_c00269{bottom:314.216300pt;}
.y4b_c00269{bottom:314.475464pt;}
.y4c_c00269{bottom:315.032697pt;}
.y4d_c00269{bottom:315.223745pt;}
.y4e_c00269{bottom:315.464344pt;}
.y40_c00269{bottom:328.801333pt;}
.y41_c00269{bottom:329.054759pt;}
.y42_c00269{bottom:329.551137pt;}
.y43_c00269{bottom:330.076468pt;}
.y44_c00269{bottom:330.746925pt;}
.y45_c00269{bottom:330.870624pt;}
.y46_c00269{bottom:331.124695pt;}
.y3f_c00269{bottom:345.244000pt;}
.y3e_c00269{bottom:360.296000pt;}
.y37_c00269{bottom:374.881333pt;}
.y38_c00269{bottom:375.364000pt;}
.y39_c00269{bottom:376.053333pt;}
.y3a_c00269{bottom:376.240000pt;}
.y3b_c00269{bottom:376.456000pt;}
.y3c_c00269{bottom:377.086667pt;}
.y3d_c00269{bottom:377.432000pt;}
.y2f_c00269{bottom:390.002667pt;}
.y30_c00269{bottom:390.196000pt;}
.y31_c00269{bottom:390.390667pt;}
.y32_c00269{bottom:391.072000pt;}
.y33_c00269{bottom:391.544000pt;}
.y34_c00269{bottom:391.762667pt;}
.y35_c00269{bottom:392.364000pt;}
.y36_c00269{bottom:392.520000pt;}
.y26_c00269{bottom:405.361333pt;}
.y27_c00269{bottom:405.557333pt;}
.y28_c00269{bottom:405.750667pt;}
.y29_c00269{bottom:406.260000pt;}
.y2a_c00269{bottom:406.485333pt;}
.y2b_c00269{bottom:407.168000pt;}
.y2c_c00269{bottom:407.833333pt;}
.y2d_c00269{bottom:407.969333pt;}
.y2e_c00269{bottom:408.168000pt;}
.y1f_c00269{bottom:420.722667pt;}
.y20_c00269{bottom:421.497333pt;}
.y21_c00269{bottom:422.188000pt;}
.y22_c00269{bottom:422.372000pt;}
.y23_c00269{bottom:422.913333pt;}
.y24_c00269{bottom:423.268000pt;}
.y25_c00269{bottom:423.728000pt;}
.y17_c00269{bottom:435.124000pt;}
.y18_c00269{bottom:435.446667pt;}
.y19_c00269{bottom:436.928000pt;}
.y1a_c00269{bottom:437.332000pt;}
.y1b_c00269{bottom:437.565333pt;}
.y1c_c00269{bottom:437.869333pt;}
.y1d_c00269{bottom:438.410667pt;}
.y1e_c00269{bottom:439.248000pt;}
.yd_c00269{bottom:450.724000pt;}
.ye_c00269{bottom:451.228000pt;}
.yf_c00269{bottom:451.449333pt;}
.y10_c00269{bottom:452.108000pt;}
.y11_c00269{bottom:452.316000pt;}
.y12_c00269{bottom:452.816000pt;}
.y13_c00269{bottom:452.994667pt;}
.y14_c00269{bottom:453.468000pt;}
.y15_c00269{bottom:453.786667pt;}
.y16_c00269{bottom:454.036000pt;}
.y4_c00269{bottom:466.082667pt;}
.y5_c00269{bottom:466.336000pt;}
.y6_c00269{bottom:466.604000pt;}
.y7_c00269{bottom:467.272000pt;}
.y8_c00269{bottom:468.008000pt;}
.y9_c00269{bottom:468.248000pt;}
.ya_c00269{bottom:468.626667pt;}
.yb_c00269{bottom:469.213333pt;}
.yc_c00269{bottom:469.450667pt;}
.y3_c00269{bottom:483.133333pt;}
.y2_c00269{bottom:498.250667pt;}
.y1_c00269{bottom:512.285333pt;}
.h12_c00269{height:48.536270pt;}
.h10_c00269{height:51.336439pt;}
.h8_c00269{height:53.200000pt;}
.ha_c00269{height:53.203219pt;}
.hf_c00269{height:54.136608pt;}
.h11_c00269{height:55.069998pt;}
.h6_c00269{height:56.000000pt;}
.he_c00269{height:56.003388pt;}
.h7_c00269{height:56.933333pt;}
.h9_c00269{height:56.936778pt;}
.h4_c00269{height:57.866667pt;}
.hb_c00269{height:57.870167pt;}
.h5_c00269{height:59.733333pt;}
.hd_c00269{height:59.736947pt;}
.h2_c00269{height:60.666667pt;}
.h13_c00269{height:60.670337pt;}
.h3_c00269{height:61.600000pt;}
.hc_c00269{height:61.603727pt;}
.h14_c00269{height:63.470506pt;}
.h1_c00269{height:550.000000pt;}
.h0_c00269{height:550.266667pt;}
.w0_c00269{width:319.200000pt;}
.w1_c00269{width:319.333333pt;}
.x0_c00269{left:0.000000pt;}
.x4f_c00269{left:29.828248pt;}
.x5f_c00269{left:30.788547pt;}
.x37_c00269{left:31.916000pt;}
.x2_c00269{left:32.880000pt;}
.x75_c00269{left:44.029145pt;}
.x55_c00269{left:46.664236pt;}
.x73_c00269{left:47.909897pt;}
.x26_c00269{left:48.852000pt;}
.x2c_c00269{left:50.041333pt;}
.xd_c00269{left:52.229333pt;}
.x50_c00269{left:54.114915pt;}
.x3c_c00269{left:55.676000pt;}
.x41_c00269{left:57.509448pt;}
.x79_c00269{left:59.516791pt;}
.x71_c00269{left:61.302944pt;}
.x45_c00269{left:63.521797pt;}
.x27_c00269{left:64.924000pt;}
.x5b_c00269{left:67.507631pt;}
.x14_c00269{left:68.601333pt;}
.x70_c00269{left:71.496927pt;}
.xe_c00269{left:72.869333pt;}
.x3e_c00269{left:78.365333pt;}
.x56_c00269{left:79.545936pt;}
.x32_c00269{left:80.742667pt;}
.x9_c00269{left:83.520000pt;}
.x5c_c00269{left:85.082297pt;}
.x4a_c00269{left:86.541319pt;}
.x3_c00269{left:91.920000pt;}
.x77_c00269{left:93.457328pt;}
.x21_c00269{left:97.085333pt;}
.xa_c00269{left:98.880000pt;}
.x68_c00269{left:105.832659pt;}
.x28_c00269{left:107.346667pt;}
.x4_c00269{left:108.240000pt;}
.x60_c00269{left:110.748093pt;}
.x38_c00269{left:112.556000pt;}
.x51_c00269{left:114.072248pt;}
.x6d_c00269{left:115.353300pt;}
.x63_c00269{left:117.312681pt;}
.x74_c00269{left:119.934188pt;}
.x46_c00269{left:121.543876pt;}
.xf_c00269{left:124.220000pt;}
.x29_c00269{left:126.121333pt;}
.x65_c00269{left:128.545337pt;}
.x2d_c00269{left:129.705333pt;}
.x15_c00269{left:131.428000pt;}
.x52_c00269{left:133.036248pt;}
.x57_c00269{left:134.467871pt;}
.x39_c00269{left:137.276000pt;}
.x5d_c00269{left:139.084964pt;}
.x47_c00269{left:142.255187pt;}
.x1b_c00269{left:145.297333pt;}
.x16_c00269{left:146.305333pt;}
.x3d_c00269{left:149.036000pt;}
.xb_c00269{left:150.480000pt;}
.x1_c00269{left:152.400000pt;}
.x22_c00269{left:154.680000pt;}
.x6e_c00269{left:156.840815pt;}
.x53_c00269{left:158.524248pt;}
.x5_c00269{left:162.000000pt;}
.x69_c00269{left:164.366177pt;}
.x42_c00269{left:166.721709pt;}
.x33_c00269{left:168.336000pt;}
.x1c_c00269{left:170.568000pt;}
.x2e_c00269{left:172.665333pt;}
.x6a_c00269{left:174.221312pt;}
.x54_c00269{left:175.562915pt;}
.x58_c00269{left:178.868355pt;}
.x6_c00269{left:180.720000pt;}
.x17_c00269{left:182.052000pt;}
.x2a_c00269{left:183.008000pt;}
.x1d_c00269{left:185.134667pt;}
.x66_c00269{left:188.251344pt;}
.x34_c00269{left:189.936000pt;}
.x2f_c00269{left:192.590667pt;}
.x18_c00269{left:194.802667pt;}
.x59_c00269{left:196.629879pt;}
.x48_c00269{left:197.701353pt;}
.x10_c00269{left:199.302667pt;}
.x6f_c00269{left:200.334908pt;}
.x78_c00269{left:201.767519pt;}
.x1e_c00269{left:204.166667pt;}
.x61_c00269{left:208.202497pt;}
.x43_c00269{left:209.620771pt;}
.x4b_c00269{left:214.234517pt;}
.x23_c00269{left:215.162667pt;}
.x5e_c00269{left:216.326297pt;}
.x72_c00269{left:217.298747pt;}
.x64_c00269{left:221.212295pt;}
.x62_c00269{left:222.361325pt;}
.x44_c00269{left:224.321781pt;}
.x11_c00269{left:228.381333pt;}
.xc_c00269{left:230.640000pt;}
.x3f_c00269{left:232.198667pt;}
.x7_c00269{left:236.400000pt;}
.x1f_c00269{left:238.017333pt;}
.x3a_c00269{left:241.676000pt;}
.x40_c00269{left:243.444000pt;}
.x24_c00269{left:244.686667pt;}
.x30_c00269{left:247.258667pt;}
.x8_c00269{left:248.880000pt;}
.x19_c00269{left:251.368000pt;}
.x35_c00269{left:253.022667pt;}
.x5a_c00269{left:256.202524pt;}
.x4e_c00269{left:258.164175pt;}
.x6b_c00269{left:259.867107pt;}
.x31_c00269{left:261.490667pt;}
.x3b_c00269{left:263.756000pt;}
.x2b_c00269{left:266.293333pt;}
.x67_c00269{left:268.205131pt;}
.x1a_c00269{left:269.145333pt;}
.x12_c00269{left:273.500000pt;}
.x6c_c00269{left:274.493816pt;}
.x4c_c00269{left:277.587791pt;}
.x49_c00269{left:281.211929pt;}
.x25_c00269{left:283.044000pt;}
.x76_c00269{left:285.621783pt;}
.x36_c00269{left:287.593333pt;}
.x4d_c00269{left:288.847541pt;}
.x20_c00269{left:290.354667pt;}
.x13_c00269{left:291.756000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00270 {
    display:none;
  }
  .loading-indicator_c00270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00270 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00270 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00270" -> "#page-container .classname_c00270")
 */
.pf_c00270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00270 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00270 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00270 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00270 {overflow:visible;}
  }
}
.c_c00270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00270 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00270:after { /* webkit #35443 */
  content: '';
}
.t_c00270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00270 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00270 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00270 { /* info for Javascript */
  display:none;
}
.l_c00270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00270:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00270 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00270.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbf_c00270{transform:matrix(0.018483,0.000499,-0.006748,0.249909,0,0);-ms-transform:matrix(0.018483,0.000499,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.018483,0.000499,-0.006748,0.249909,0,0);}
.ma9_c00270{transform:matrix(0.062282,0.001682,-0.006748,0.249909,0,0);-ms-transform:matrix(0.062282,0.001682,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.062282,0.001682,-0.006748,0.249909,0,0);}
.m55_c00270{transform:matrix(0.067800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067800,0.000000,0.000000,0.250000,0,0);}
.m65_c00270{transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);}
.m73_c00270{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m33_c00270{transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139780,0.000000,0.000000,0.250000,0,0);}
.m68_c00270{transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);}
.ma1_c00270{transform:matrix(0.141079,0.003809,-0.006748,0.249909,0,0);-ms-transform:matrix(0.141079,0.003809,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.141079,0.003809,-0.006748,0.249909,0,0);}
.m8d_c00270{transform:matrix(0.141393,0.003818,-0.006748,0.249909,0,0);-ms-transform:matrix(0.141393,0.003818,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.141393,0.003818,-0.006748,0.249909,0,0);}
.mcf_c00270{transform:matrix(0.143353,0.003871,-0.006748,0.249909,0,0);-ms-transform:matrix(0.143353,0.003871,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.143353,0.003871,-0.006748,0.249909,0,0);}
.m2b_c00270{transform:matrix(0.149085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149085,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m85_c00270{transform:matrix(0.153029,0.004132,-0.006748,0.249909,0,0);-ms-transform:matrix(0.153029,0.004132,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.153029,0.004132,-0.006748,0.249909,0,0);}
.m2c_c00270{transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);}
.m8a_c00270{transform:matrix(0.155423,0.004196,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155423,0.004196,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155423,0.004196,-0.006748,0.249909,0,0);}
.m81_c00270{transform:matrix(0.155793,0.004206,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155793,0.004206,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155793,0.004206,-0.006748,0.249909,0,0);}
.mdd_c00270{transform:matrix(0.156093,0.004215,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156093,0.004215,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156093,0.004215,-0.006748,0.249909,0,0);}
.m94_c00270{transform:matrix(0.156173,0.004217,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156173,0.004217,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156173,0.004217,-0.006748,0.249909,0,0);}
.m8f_c00270{transform:matrix(0.156583,0.004228,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156583,0.004228,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156583,0.004228,-0.006748,0.249909,0,0);}
.me5_c00270{transform:matrix(0.158142,0.004270,-0.006748,0.249909,0,0);-ms-transform:matrix(0.158142,0.004270,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.158142,0.004270,-0.006748,0.249909,0,0);}
.m3a_c00270{transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);}
.mcb_c00270{transform:matrix(0.159762,0.004314,-0.006748,0.249909,0,0);-ms-transform:matrix(0.159762,0.004314,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.159762,0.004314,-0.006748,0.249909,0,0);}
.mb6_c00270{transform:matrix(0.160626,0.004337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160626,0.004337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160626,0.004337,-0.006748,0.249909,0,0);}
.m95_c00270{transform:matrix(0.161271,0.004354,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161271,0.004354,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161271,0.004354,-0.006748,0.249909,0,0);}
.me3_c00270{transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161576,0.004363,-0.006748,0.249909,0,0);}
.maa_c00270{transform:matrix(0.161956,0.004373,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161956,0.004373,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161956,0.004373,-0.006748,0.249909,0,0);}
.mf0_c00270{transform:matrix(0.162081,0.004376,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162081,0.004376,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162081,0.004376,-0.006748,0.249909,0,0);}
.m80_c00270{transform:matrix(0.162191,0.004379,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162191,0.004379,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162191,0.004379,-0.006748,0.249909,0,0);}
.m4b_c00270{transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);}
.m7c_c00270{transform:matrix(0.163370,0.004248,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163370,0.004248,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163370,0.004248,-0.006498,0.249916,0,0);}
.m31_c00270{transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164640,0.000000,0.000000,0.250000,0,0);}
.m75_c00270{transform:matrix(0.165839,0.004312,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165839,0.004312,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165839,0.004312,-0.006498,0.249916,0,0);}
.m39_c00270{transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);}
.mcc_c00270{transform:matrix(0.167099,0.004512,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167099,0.004512,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167099,0.004512,-0.006748,0.249909,0,0);}
.ma4_c00270{transform:matrix(0.167129,0.004512,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167129,0.004512,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167129,0.004512,-0.006748,0.249909,0,0);}
.m60_c00270{transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);}
.m50_c00270{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.168856,0.007775,-0.011499,0.249735,0,0);-ms-transform:matrix(0.168856,0.007775,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.168856,0.007775,-0.011499,0.249735,0,0);}
.mb1_c00270{transform:matrix(0.169523,0.004577,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169523,0.004577,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169523,0.004577,-0.006748,0.249909,0,0);}
.m99_c00270{transform:matrix(0.170013,0.004590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170013,0.004590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170013,0.004590,-0.006748,0.249909,0,0);}
.m5e_c00270{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m8e_c00270{transform:matrix(0.170683,0.004608,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170683,0.004608,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170683,0.004608,-0.006748,0.249909,0,0);}
.mbe_c00270{transform:matrix(0.171173,0.004622,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171173,0.004622,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171173,0.004622,-0.006748,0.249909,0,0);}
.m9a_c00270{transform:matrix(0.171288,0.004625,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171288,0.004625,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171288,0.004625,-0.006748,0.249909,0,0);}
.m63_c00270{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.ma2_c00270{transform:matrix(0.173642,0.004688,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173642,0.004688,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173642,0.004688,-0.006748,0.249909,0,0);}
.meb_c00270{transform:matrix(0.173872,0.004695,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173872,0.004695,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173872,0.004695,-0.006748,0.249909,0,0);}
.m96_c00270{transform:matrix(0.174032,0.004699,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174032,0.004699,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174032,0.004699,-0.006748,0.249909,0,0);}
.me0_c00270{transform:matrix(0.174107,0.004701,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174107,0.004701,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174107,0.004701,-0.006748,0.249909,0,0);}
.md2_c00270{transform:matrix(0.174681,0.004716,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174681,0.004716,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174681,0.004716,-0.006748,0.249909,0,0);}
.m27_c00270{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.me1_c00270{transform:matrix(0.175476,0.004738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175476,0.004738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175476,0.004738,-0.006748,0.249909,0,0);}
.md8_c00270{transform:matrix(0.175626,0.004742,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175626,0.004742,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175626,0.004742,-0.006748,0.249909,0,0);}
.m79_c00270{transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);}
.m22_c00270{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m82_c00270{transform:matrix(0.176781,0.004773,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176781,0.004773,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176781,0.004773,-0.006748,0.249909,0,0);}
.me_c00270{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mf2_c00270{transform:matrix(0.176921,0.004777,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176921,0.004777,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176921,0.004777,-0.006748,0.249909,0,0);}
.m35_c00270{transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m9b_c00270{transform:matrix(0.178055,0.004807,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178055,0.004807,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178055,0.004807,-0.006748,0.249909,0,0);}
.m11_c00270{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.m71_c00270{transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);}
.mbb_c00270{transform:matrix(0.178380,0.004816,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178380,0.004816,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178380,0.004816,-0.006748,0.249909,0,0);}
.mca_c00270{transform:matrix(0.178400,0.004817,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178400,0.004817,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178400,0.004817,-0.006748,0.249909,0,0);}
.mae_c00270{transform:matrix(0.178415,0.004817,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178415,0.004817,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178415,0.004817,-0.006748,0.249909,0,0);}
.m5d_c00270{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);}
.mb9_c00270{transform:matrix(0.179844,0.004856,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179844,0.004856,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179844,0.004856,-0.006748,0.249909,0,0);}
.m89_c00270{transform:matrix(0.179859,0.004856,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179859,0.004856,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179859,0.004856,-0.006748,0.249909,0,0);}
.m4f_c00270{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.m74_c00270{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m5c_c00270{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.m53_c00270{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m7e_c00270{transform:matrix(0.182269,0.004921,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182269,0.004921,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182269,0.004921,-0.006748,0.249909,0,0);}
.m49_c00270{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m7b_c00270{transform:matrix(0.182848,0.004754,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182848,0.004754,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182848,0.004754,-0.006498,0.249916,0,0);}
.ma3_c00270{transform:matrix(0.183298,0.004949,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183298,0.004949,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183298,0.004949,-0.006748,0.249909,0,0);}
.m8b_c00270{transform:matrix(0.183648,0.004958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183648,0.004958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183648,0.004958,-0.006748,0.249909,0,0);}
.m43_c00270{transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);}
.m70_c00270{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m3c_c00270{transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.184420,0.008492,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184420,0.008492,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184420,0.008492,-0.011499,0.249735,0,0);}
.m44_c00270{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.mde_c00270{transform:matrix(0.184848,0.004991,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184848,0.004991,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184848,0.004991,-0.006748,0.249909,0,0);}
.m58_c00270{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.me4_c00270{transform:matrix(0.185287,0.005003,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185287,0.005003,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185287,0.005003,-0.006748,0.249909,0,0);}
.m64_c00270{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.m92_c00270{transform:matrix(0.185507,0.005009,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185507,0.005009,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185507,0.005009,-0.006748,0.249909,0,0);}
.m77_c00270{transform:matrix(0.185912,0.004834,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185912,0.004834,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185912,0.004834,-0.006498,0.249916,0,0);}
.m7d_c00270{transform:matrix(0.186152,0.005026,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186152,0.005026,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186152,0.005026,-0.006748,0.249909,0,0);}
.mdc_c00270{transform:matrix(0.186222,0.005028,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186222,0.005028,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186222,0.005028,-0.006748,0.249909,0,0);}
.mc6_c00270{transform:matrix(0.186252,0.005029,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186252,0.005029,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186252,0.005029,-0.006748,0.249909,0,0);}
.m83_c00270{transform:matrix(0.186362,0.005032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186362,0.005032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186362,0.005032,-0.006748,0.249909,0,0);}
.mb_c00270{transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00270{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00270{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.mad_c00270{transform:matrix(0.188651,0.005094,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188651,0.005094,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188651,0.005094,-0.006748,0.249909,0,0);}
.m4e_c00270{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m61_c00270{transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);}
.m66_c00270{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.m8c_c00270{transform:matrix(0.189541,0.005118,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189541,0.005118,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189541,0.005118,-0.006748,0.249909,0,0);}
.m30_c00270{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.mc1_c00270{transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189686,0.005122,-0.006748,0.249909,0,0);}
.m6f_c00270{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m93_c00270{transform:matrix(0.190481,0.005143,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190481,0.005143,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190481,0.005143,-0.006748,0.249909,0,0);}
.m5f_c00270{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.m88_c00270{transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191120,0.005160,-0.006748,0.249909,0,0);}
.m1f_c00270{transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00270{transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191620,0.005174,-0.006748,0.249909,0,0);}
.m19_c00270{transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.m9e_c00270{transform:matrix(0.192050,0.005185,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192050,0.005185,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192050,0.005185,-0.006748,0.249909,0,0);}
.mbd_c00270{transform:matrix(0.192170,0.005189,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192170,0.005189,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192170,0.005189,-0.006748,0.249909,0,0);}
.m15_c00270{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.mdf_c00270{transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192815,0.005206,-0.006748,0.249909,0,0);}
.m3d_c00270{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mb7_c00270{transform:matrix(0.193090,0.005213,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193090,0.005213,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193090,0.005213,-0.006748,0.249909,0,0);}
.mc7_c00270{transform:matrix(0.193270,0.005218,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193270,0.005218,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193270,0.005218,-0.006748,0.249909,0,0);}
.m51_c00270{transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);}
.m6c_c00270{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.mc8_c00270{transform:matrix(0.194019,0.005239,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194019,0.005239,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194019,0.005239,-0.006748,0.249909,0,0);}
.m3b_c00270{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.mac_c00270{transform:matrix(0.195169,0.005270,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195169,0.005270,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195169,0.005270,-0.006748,0.249909,0,0);}
.ma6_c00270{transform:matrix(0.195524,0.005279,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195524,0.005279,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195524,0.005279,-0.006748,0.249909,0,0);}
.ma0_c00270{transform:matrix(0.195604,0.005281,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195604,0.005281,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195604,0.005281,-0.006748,0.249909,0,0);}
.mc4_c00270{transform:matrix(0.195639,0.005282,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195639,0.005282,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195639,0.005282,-0.006748,0.249909,0,0);}
.mf3_c00270{transform:matrix(0.196114,0.005295,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196114,0.005295,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196114,0.005295,-0.006748,0.249909,0,0);}
.m9c_c00270{transform:matrix(0.196338,0.005301,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196338,0.005301,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196338,0.005301,-0.006748,0.249909,0,0);}
.mab_c00270{transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196368,0.005302,-0.006748,0.249909,0,0);}
.ma8_c00270{transform:matrix(0.196403,0.005303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196403,0.005303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196403,0.005303,-0.006748,0.249909,0,0);}
.maf_c00270{transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196428,0.005304,-0.006748,0.249909,0,0);}
.m97_c00270{transform:matrix(0.196478,0.005305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196478,0.005305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196478,0.005305,-0.006748,0.249909,0,0);}
.mb5_c00270{transform:matrix(0.196493,0.005305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196493,0.005305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196493,0.005305,-0.006748,0.249909,0,0);}
.mce_c00270{transform:matrix(0.197068,0.005321,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197068,0.005321,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197068,0.005321,-0.006748,0.249909,0,0);}
.m7a_c00270{transform:matrix(0.197178,0.005127,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197178,0.005127,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197178,0.005127,-0.006498,0.249916,0,0);}
.me6_c00270{transform:matrix(0.197228,0.005325,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197228,0.005325,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197228,0.005325,-0.006748,0.249909,0,0);}
.m4_c00270{transform:matrix(0.197301,0.009085,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197301,0.009085,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197301,0.009085,-0.011499,0.249735,0,0);}
.md9_c00270{transform:matrix(0.197358,0.005329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197358,0.005329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197358,0.005329,-0.006748,0.249909,0,0);}
.mba_c00270{transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197638,0.005336,-0.006748,0.249909,0,0);}
.m91_c00270{transform:matrix(0.198058,0.005348,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198058,0.005348,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198058,0.005348,-0.006748,0.249909,0,0);}
.m76_c00270{transform:matrix(0.198288,0.005155,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198288,0.005155,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198288,0.005155,-0.006498,0.249916,0,0);}
.m62_c00270{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.m32_c00270{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.md4_c00270{transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);}
.m41_c00270{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00270{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m6d_c00270{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.md1_c00270{transform:matrix(0.200247,0.005407,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200247,0.005407,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200247,0.005407,-0.006748,0.249909,0,0);}
.md3_c00270{transform:matrix(0.200352,0.005410,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200352,0.005410,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200352,0.005410,-0.006748,0.249909,0,0);}
.mbc_c00270{transform:matrix(0.200407,0.005411,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200407,0.005411,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200407,0.005411,-0.006748,0.249909,0,0);}
.m9d_c00270{transform:matrix(0.200727,0.005420,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200727,0.005420,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200727,0.005420,-0.006748,0.249909,0,0);}
.m40_c00270{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.201057,0.009258,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201057,0.009258,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201057,0.009258,-0.011499,0.249735,0,0);}
.me2_c00270{transform:matrix(0.201317,0.005436,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201317,0.005436,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201317,0.005436,-0.006748,0.249909,0,0);}
.mf1_c00270{transform:matrix(0.201362,0.005437,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201362,0.005437,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201362,0.005437,-0.006748,0.249909,0,0);}
.m18_c00270{transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);}
.m84_c00270{transform:matrix(0.201622,0.005444,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201622,0.005444,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201622,0.005444,-0.006748,0.249909,0,0);}
.m5a_c00270{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.mb3_c00270{transform:matrix(0.201652,0.005445,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201652,0.005445,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201652,0.005445,-0.006748,0.249909,0,0);}
.mc_c00270{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.mec_c00270{transform:matrix(0.202471,0.005467,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202471,0.005467,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202471,0.005467,-0.006748,0.249909,0,0);}
.m54_c00270{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.mea_c00270{transform:matrix(0.203531,0.005495,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203531,0.005495,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203531,0.005495,-0.006748,0.249909,0,0);}
.md7_c00270{transform:matrix(0.203551,0.005496,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203551,0.005496,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203551,0.005496,-0.006748,0.249909,0,0);}
.mdb_c00270{transform:matrix(0.204146,0.005512,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204146,0.005512,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204146,0.005512,-0.006748,0.249909,0,0);}
.mee_c00270{transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204575,0.005524,-0.006748,0.249909,0,0);}
.m4d_c00270{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00270{transform:matrix(0.204685,0.005527,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204685,0.005527,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204685,0.005527,-0.006748,0.249909,0,0);}
.m86_c00270{transform:matrix(0.205270,0.005542,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205270,0.005542,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205270,0.005542,-0.006748,0.249909,0,0);}
.mb0_c00270{transform:matrix(0.205545,0.005550,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205545,0.005550,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205545,0.005550,-0.006748,0.249909,0,0);}
.mf_c00270{transform:matrix(0.207640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207640,0.000000,0.000000,0.250000,0,0);}
.me9_c00270{transform:matrix(0.207649,0.005607,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207649,0.005607,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207649,0.005607,-0.006748,0.249909,0,0);}
.m52_c00270{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00270{transform:matrix(0.207954,0.005615,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207954,0.005615,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207954,0.005615,-0.006748,0.249909,0,0);}
.ma5_c00270{transform:matrix(0.208299,0.005624,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208299,0.005624,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208299,0.005624,-0.006748,0.249909,0,0);}
.m20_c00270{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m98_c00270{transform:matrix(0.208849,0.005639,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208849,0.005639,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208849,0.005639,-0.006748,0.249909,0,0);}
.mcd_c00270{transform:matrix(0.209054,0.005644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209054,0.005644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209054,0.005644,-0.006748,0.249909,0,0);}
.md0_c00270{transform:matrix(0.209124,0.005646,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209124,0.005646,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209124,0.005646,-0.006748,0.249909,0,0);}
.mc3_c00270{transform:matrix(0.209849,0.005666,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209849,0.005666,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209849,0.005666,-0.006748,0.249909,0,0);}
.m59_c00270{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.mc5_c00270{transform:matrix(0.210538,0.005685,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210538,0.005685,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210538,0.005685,-0.006748,0.249909,0,0);}
.mc9_c00270{transform:matrix(0.210773,0.005691,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210773,0.005691,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210773,0.005691,-0.006748,0.249909,0,0);}
.m46_c00270{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00270{transform:matrix(0.210993,0.005697,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210993,0.005697,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210993,0.005697,-0.006748,0.249909,0,0);}
.m25_c00270{transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);}
.m67_c00270{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.md6_c00270{transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212458,0.005736,-0.006748,0.249909,0,0);}
.m72_c00270{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.mef_c00270{transform:matrix(0.213727,0.005771,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213727,0.005771,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213727,0.005771,-0.006748,0.249909,0,0);}
.mc0_c00270{transform:matrix(0.215142,0.005809,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215142,0.005809,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215142,0.005809,-0.006748,0.249909,0,0);}
.m37_c00270{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.mb8_c00270{transform:matrix(0.216881,0.005856,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216881,0.005856,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216881,0.005856,-0.006748,0.249909,0,0);}
.mda_c00270{transform:matrix(0.217176,0.005864,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217176,0.005864,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217176,0.005864,-0.006748,0.249909,0,0);}
.mb4_c00270{transform:matrix(0.217441,0.005871,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217441,0.005871,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217441,0.005871,-0.006748,0.249909,0,0);}
.m3f_c00270{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m9f_c00270{transform:matrix(0.218460,0.005898,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218460,0.005898,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218460,0.005898,-0.006748,0.249909,0,0);}
.m36_c00270{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);}
.m38_c00270{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m5b_c00270{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221010,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);}
.m42_c00270{transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);}
.m57_c00270{transform:matrix(0.226545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226545,0.000000,0.000000,0.250000,0,0);}
.m78_c00270{transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);}
.m45_c00270{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.227365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227365,0.000000,0.000000,0.250000,0,0);}
.m48_c00270{transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235820,0.000000,0.000000,0.250000,0,0);}
.med_c00270{transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);}
.m7_c00270{transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);}
.me8_c00270{transform:matrix(0.248614,0.006713,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248614,0.006713,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248614,0.006713,-0.006748,0.249909,0,0);}
.md5_c00270{transform:matrix(0.252618,0.006821,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252618,0.006821,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252618,0.006821,-0.006748,0.249909,0,0);}
.m56_c00270{transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);}
.m69_c00270{transform:matrix(0.277055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277055,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319285,0.000000,0.000000,0.250000,0,0);}
.m87_c00270{transform:matrix(0.329855,0.008906,-0.006748,0.249909,0,0);-ms-transform:matrix(0.329855,0.008906,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.329855,0.008906,-0.006748,0.249909,0,0);}
.m6a_c00270{transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.421703,0.019418,-0.011499,0.249735,0,0);-ms-transform:matrix(0.421703,0.019418,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.421703,0.019418,-0.011499,0.249735,0,0);}
.m90_c00270{transform:matrix(0.530792,0.014331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.530792,0.014331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.530792,0.014331,-0.006748,0.249909,0,0);}
.me7_c00270{transform:matrix(0.532966,0.014390,-0.006748,0.249909,0,0);-ms-transform:matrix(0.532966,0.014390,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.532966,0.014390,-0.006748,0.249909,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:0.000000px;}
.fc0_c00270{color:transparent;}
.fs8_c00270{font-size:58.800000px;}
.fs0_c00270{font-size:58.803440px;}
.fs4_c00270{font-size:60.900000px;}
.fsa_c00270{font-size:61.950000px;}
.fs12_c00270{font-size:61.972577px;}
.fs2_c00270{font-size:63.000000px;}
.fs14_c00270{font-size:63.022959px;}
.fs7_c00270{font-size:64.050000px;}
.fs3_c00270{font-size:65.100000px;}
.fs11_c00270{font-size:65.123725px;}
.fs10_c00270{font-size:66.174107px;}
.fs9_c00270{font-size:67.200000px;}
.fs13_c00270{font-size:67.224490px;}
.fs6_c00270{font-size:68.250000px;}
.fsc_c00270{font-size:68.273065px;}
.fsf_c00270{font-size:68.274873px;}
.fse_c00270{font-size:69.325255px;}
.fsb_c00270{font-size:70.350000px;}
.fsd_c00270{font-size:70.375638px;}
.fs5_c00270{font-size:73.500000px;}
.fs1_c00270{font-size:82.950000px;}
.y0_c00270{bottom:0.000000px;}
.yd1_c00270{bottom:19.890698px;}
.yd0_c00270{bottom:20.795411px;}
.ycf_c00270{bottom:23.128528px;}
.yce_c00270{bottom:23.808136px;}
.ycd_c00270{bottom:24.856168px;}
.ycc_c00270{bottom:26.107755px;}
.ycb_c00270{bottom:36.670177px;}
.yca_c00270{bottom:38.507109px;}
.yc9_c00270{bottom:39.127319px;}
.yc8_c00270{bottom:40.544646px;}
.yc7_c00270{bottom:43.239744px;}
.yc6_c00270{bottom:43.972005px;}
.yc5_c00270{bottom:46.105673px;}
.yc4_c00270{bottom:56.272149px;}
.yc3_c00270{bottom:56.965601px;}
.yc2_c00270{bottom:57.754338px;}
.yc1_c00270{bottom:58.734091px;}
.yc0_c00270{bottom:60.044953px;}
.ybf_c00270{bottom:61.416219px;}
.ybe_c00270{bottom:62.249561px;}
.ybd_c00270{bottom:63.410364px;}
.ybc_c00270{bottom:64.497962px;}
.ybb_c00270{bottom:65.283296px;}
.yba_c00270{bottom:72.750406px;}
.yb9_c00270{bottom:74.735784px;}
.yb8_c00270{bottom:75.976168px;}
.yb7_c00270{bottom:77.685090px;}
.yb6_c00270{bottom:78.528553px;}
.yb5_c00270{bottom:79.778376px;}
.yb4_c00270{bottom:80.151115px;}
.yb3_c00270{bottom:81.215460px;}
.yb2_c00270{bottom:90.044271px;}
.yb1_c00270{bottom:91.101444px;}
.yb0_c00270{bottom:93.791329px;}
.yaf_c00270{bottom:95.103114px;}
.yae_c00270{bottom:97.753906px;}
.yad_c00270{bottom:98.397382px;}
.yac_c00270{bottom:100.126551px;}
.yab_c00270{bottom:108.518055px;}
.yaa_c00270{bottom:110.525167px;}
.ya9_c00270{bottom:111.163227px;}
.ya8_c00270{bottom:113.371683px;}
.ya7_c00270{bottom:113.875486px;}
.ya6_c00270{bottom:115.192482px;}
.ya5_c00270{bottom:115.953414px;}
.ya4_c00270{bottom:117.406974px;}
.ya3_c00270{bottom:124.453423px;}
.ya2_c00270{bottom:125.952117px;}
.ya1_c00270{bottom:126.649617px;}
.ya0_c00270{bottom:128.278210px;}
.y9f_c00270{bottom:129.057490px;}
.y9e_c00270{bottom:130.918705px;}
.y9d_c00270{bottom:132.782755px;}
.y9c_c00270{bottom:139.280592px;}
.y9b_c00270{bottom:140.544522px;}
.y9a_c00270{bottom:144.736132px;}
.y99_c00270{bottom:145.722291px;}
.y98_c00270{bottom:146.870452px;}
.y97_c00270{bottom:149.304669px;}
.y96_c00270{bottom:151.005739px;}
.y95_c00270{bottom:154.698901px;}
.y94_c00270{bottom:157.407270px;}
.y93_c00270{bottom:159.587406px;}
.y92_c00270{bottom:162.536782px;}
.y91_c00270{bottom:163.425465px;}
.y90_c00270{bottom:165.237835px;}
.y8f_c00270{bottom:166.891909px;}
.y8e_c00270{bottom:167.732944px;}
.y8d_c00270{bottom:169.805104px;}
.y8c_c00270{bottom:174.209365px;}
.y8b_c00270{bottom:174.768078px;}
.y8a_c00270{bottom:176.768491px;}
.y89_c00270{bottom:177.630174px;}
.y88_c00270{bottom:178.246321px;}
.y87_c00270{bottom:178.509841px;}
.y5_c00270{bottom:180.472689px;}
.y4_c00270{bottom:181.196844px;}
.y3_c00270{bottom:182.366532px;}
.y2_c00270{bottom:183.168381px;}
.y1_c00270{bottom:184.165500px;}
.y86_c00270{bottom:192.913098px;}
.y85_c00270{bottom:194.307516px;}
.y84_c00270{bottom:196.400622px;}
.y83_c00270{bottom:198.203647px;}
.y82_c00270{bottom:199.141780px;}
.y81_c00270{bottom:200.740968px;}
.y80_c00270{bottom:201.672538px;}
.y7f_c00270{bottom:209.618901px;}
.y7e_c00270{bottom:210.029055px;}
.y7d_c00270{bottom:210.687916px;}
.y7c_c00270{bottom:212.462197px;}
.y7b_c00270{bottom:212.962529px;}
.y7a_c00270{bottom:214.997745px;}
.y79_c00270{bottom:215.443977px;}
.y78_c00270{bottom:226.778538px;}
.y77_c00270{bottom:228.520633px;}
.y76_c00270{bottom:229.444704px;}
.y75_c00270{bottom:231.138192px;}
.y74_c00270{bottom:233.074921px;}
.y73_c00270{bottom:234.267346px;}
.y72_c00270{bottom:235.431295px;}
.y71_c00270{bottom:245.855061px;}
.y70_c00270{bottom:246.178482px;}
.y6f_c00270{bottom:247.934778px;}
.y6e_c00270{bottom:248.254392px;}
.y6d_c00270{bottom:250.225127px;}
.y6c_c00270{bottom:250.644447px;}
.y6b_c00270{bottom:251.431049px;}
.y6a_c00270{bottom:252.175046px;}
.y69_c00270{bottom:261.696009px;}
.y68_c00270{bottom:263.716959px;}
.y67_c00270{bottom:264.344061px;}
.y66_c00270{bottom:265.317600px;}
.y65_c00270{bottom:266.925733px;}
.y64_c00270{bottom:267.314533px;}
.y63_c00270{bottom:268.602433px;}
.y62_c00270{bottom:269.463504px;}
.y61_c00270{bottom:280.785225px;}
.y60_c00270{bottom:281.390659px;}
.y5f_c00270{bottom:282.418752px;}
.y5e_c00270{bottom:283.024187px;}
.y5d_c00270{bottom:284.064510px;}
.y5c_c00270{bottom:284.854503px;}
.y5b_c00270{bottom:285.594276px;}
.y5a_c00270{bottom:287.287500px;}
.y59_c00270{bottom:297.664251px;}
.y58_c00270{bottom:298.183926px;}
.y57_c00270{bottom:299.349597px;}
.y56_c00270{bottom:300.013728px;}
.y55_c00270{bottom:301.729689px;}
.y54_c00270{bottom:302.457156px;}
.y53_c00270{bottom:304.496661px;}
.y52_c00270{bottom:305.109000px;}
.y51_c00270{bottom:315.669000px;}
.y50_c00270{bottom:317.061000px;}
.y4f_c00270{bottom:317.503500px;}
.y4e_c00270{bottom:318.735000px;}
.y4d_c00270{bottom:319.257000px;}
.y4c_c00270{bottom:320.196000px;}
.y4b_c00270{bottom:320.671500px;}
.y4a_c00270{bottom:321.849000px;}
.y49_c00270{bottom:333.273000px;}
.y48_c00270{bottom:333.885000px;}
.y47_c00270{bottom:334.345500px;}
.y46_c00270{bottom:334.582500px;}
.y45_c00270{bottom:335.395500px;}
.y44_c00270{bottom:335.662500px;}
.y43_c00270{bottom:336.448500px;}
.y42_c00270{bottom:337.282500px;}
.y41_c00270{bottom:337.504500px;}
.y40_c00270{bottom:349.948500px;}
.y3f_c00270{bottom:350.452500px;}
.y3e_c00270{bottom:350.905500px;}
.y3d_c00270{bottom:351.529500px;}
.y3c_c00270{bottom:351.841500px;}
.y3b_c00270{bottom:352.620000px;}
.y3a_c00270{bottom:353.146500px;}
.y39_c00270{bottom:353.431500px;}
.y38_c00270{bottom:367.908000px;}
.y37_c00270{bottom:381.253500px;}
.y36_c00270{bottom:384.829500px;}
.y35_c00270{bottom:385.186500px;}
.y34_c00270{bottom:385.644000px;}
.y33_c00270{bottom:386.796000px;}
.y32_c00270{bottom:387.187500px;}
.y31_c00270{bottom:400.176000px;}
.y30_c00270{bottom:401.080500px;}
.y2f_c00270{bottom:401.740500px;}
.y2e_c00270{bottom:402.424500px;}
.y2d_c00270{bottom:402.684000px;}
.y2c_c00270{bottom:403.653000px;}
.y2b_c00270{bottom:417.262500px;}
.y2a_c00270{bottom:418.189500px;}
.y29_c00270{bottom:418.521000px;}
.y28_c00270{bottom:418.957500px;}
.y27_c00270{bottom:419.503500px;}
.y26_c00270{bottom:419.700000px;}
.y25_c00270{bottom:420.100500px;}
.y24_c00270{bottom:420.391500px;}
.y23_c00270{bottom:435.085500px;}
.y22_c00270{bottom:435.538500px;}
.y21_c00270{bottom:435.754500px;}
.y20_c00270{bottom:436.590000px;}
.y1f_c00270{bottom:436.914000px;}
.y1e_c00270{bottom:437.847000px;}
.y1d_c00270{bottom:438.586500px;}
.y1c_c00270{bottom:439.023000px;}
.y1b_c00270{bottom:452.859000px;}
.y1a_c00270{bottom:470.185500px;}
.y19_c00270{bottom:470.503500px;}
.y18_c00270{bottom:471.766500px;}
.y17_c00270{bottom:472.150500px;}
.y16_c00270{bottom:472.585500px;}
.y15_c00270{bottom:473.575500px;}
.y14_c00270{bottom:473.853000px;}
.y13_c00270{bottom:487.915500px;}
.y12_c00270{bottom:505.228500px;}
.y11_c00270{bottom:522.529500px;}
.y10_c00270{bottom:522.838500px;}
.yf_c00270{bottom:522.988500px;}
.ye_c00270{bottom:523.407000px;}
.yd_c00270{bottom:523.821000px;}
.yc_c00270{bottom:524.049000px;}
.yb_c00270{bottom:524.887500px;}
.ya_c00270{bottom:525.144000px;}
.y9_c00270{bottom:525.691500px;}
.y8_c00270{bottom:539.553000px;}
.y7_c00270{bottom:556.674000px;}
.y6_c00270{bottom:569.292000px;}
.ha_c00270{height:58.800000px;}
.h2_c00270{height:58.803440px;}
.h6_c00270{height:60.900000px;}
.hc_c00270{height:61.950000px;}
.h14_c00270{height:61.972577px;}
.h4_c00270{height:63.000000px;}
.h16_c00270{height:63.022959px;}
.h9_c00270{height:64.050000px;}
.h5_c00270{height:65.100000px;}
.h13_c00270{height:65.123725px;}
.h12_c00270{height:66.174107px;}
.hb_c00270{height:67.200000px;}
.h15_c00270{height:67.224490px;}
.h8_c00270{height:68.250000px;}
.he_c00270{height:68.273065px;}
.h11_c00270{height:68.274873px;}
.h10_c00270{height:69.325255px;}
.hd_c00270{height:70.350000px;}
.hf_c00270{height:70.375638px;}
.h7_c00270{height:73.500000px;}
.h3_c00270{height:82.950000px;}
.h1_c00270{height:618.750000px;}
.h0_c00270{height:619.050000px;}
.w0_c00270{width:359.100000px;}
.w1_c00270{width:359.250000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:18.072000px;}
.x6c_c00270{left:27.174461px;}
.x4b_c00270{left:29.128500px;}
.x41_c00270{left:30.295500px;}
.x2e_c00270{left:31.918500px;}
.x7_c00270{left:33.750000px;}
.x26_c00270{left:34.923000px;}
.x67_c00270{left:36.099533px;}
.xe_c00270{left:37.800000px;}
.x2_c00270{left:39.726824px;}
.x3d_c00270{left:42.120000px;}
.x21_c00270{left:46.705500px;}
.x7e_c00270{left:47.975962px;}
.x46_c00270{left:50.325000px;}
.x27_c00270{left:52.219500px;}
.x3b_c00270{left:53.455500px;}
.x63_c00270{left:55.898115px;}
.x3_c00270{left:57.140892px;}
.x2f_c00270{left:59.212500px;}
.x56_c00270{left:60.956225px;}
.x73_c00270{left:65.119236px;}
.x1a_c00270{left:70.195500px;}
.x7a_c00270{left:72.242410px;}
.x79_c00270{left:73.986528px;}
.xf_c00270{left:75.060000px;}
.x8_c00270{left:77.220000px;}
.x4_c00270{left:82.543464px;}
.x1b_c00270{left:83.695500px;}
.x74_c00270{left:85.129282px;}
.x5a_c00270{left:87.990906px;}
.x52_c00270{left:91.609500px;}
.x42_c00270{left:92.742000px;}
.x82_c00270{left:94.065240px;}
.x13_c00270{left:95.455500px;}
.x5_c00270{left:98.270221px;}
.x68_c00270{left:100.853105px;}
.x64_c00270{left:102.951746px;}
.x4c_c00270{left:104.259000px;}
.x30_c00270{left:105.396000px;}
.x22_c00270{left:107.995500px;}
.x7b_c00270{left:111.304645px;}
.x35_c00270{left:112.731000px;}
.x28_c00270{left:114.120000px;}
.x53_c00270{left:119.008500px;}
.x57_c00270{left:123.056225px;}
.x9_c00270{left:124.200000px;}
.x39_c00270{left:125.937000px;}
.x7f_c00270{left:126.977866px;}
.x3e_c00270{left:128.790000px;}
.x50_c00270{left:130.249500px;}
.x75_c00270{left:133.052067px;}
.x85_c00270{left:135.629266px;}
.x69_c00270{left:137.597244px;}
.x29_c00270{left:141.301500px;}
.x3c_c00270{left:142.848000px;}
.xa_c00270{left:147.150000px;}
.x54_c00270{left:148.267500px;}
.x3f_c00270{left:150.660000px;}
.x43_c00270{left:152.682000px;}
.x47_c00270{left:158.403000px;}
.x14_c00270{left:159.967500px;}
.x36_c00270{left:162.408000px;}
.x10_c00270{left:163.890000px;}
.x6_c00270{left:165.240000px;}
.x6d_c00270{left:166.952070px;}
.x1c_c00270{left:168.745500px;}
.x4d_c00270{left:170.664000px;}
.x5e_c00270{left:174.092343px;}
.x48_c00270{left:176.175000px;}
.x15_c00270{left:177.517500px;}
.x3a_c00270{left:178.588500px;}
.x5b_c00270{left:179.958417px;}
.x58_c00270{left:182.616725px;}
.x31_c00270{left:183.954000px;}
.x55_c00270{left:186.798000px;}
.x83_c00270{left:189.259114px;}
.x76_c00270{left:191.162814px;}
.x5c_c00270{left:192.240741px;}
.x80_c00270{left:195.738091px;}
.x6a_c00270{left:197.607084px;}
.x65_c00270{left:199.225239px;}
.x23_c00270{left:200.875500px;}
.x37_c00270{left:202.155000px;}
.x6e_c00270{left:205.082262px;}
.xb_c00270{left:206.280000px;}
.x77_c00270{left:207.956333px;}
.x16_c00270{left:209.382000px;}
.x24_c00270{left:211.945500px;}
.x59_c00270{left:218.673725px;}
.x1d_c00270{left:219.775500px;}
.x81_c00270{left:220.850451px;}
.x44_c00270{left:224.767500px;}
.x4e_c00270{left:226.639500px;}
.x11_c00270{left:228.690000px;}
.x7c_c00270{left:229.817148px;}
.xc_c00270{left:231.120000px;}
.x1e_c00270{left:232.465500px;}
.x32_c00270{left:236.149500px;}
.x60_c00270{left:239.394658px;}
.x17_c00270{left:241.524000px;}
.x2a_c00270{left:244.249500px;}
.x49_c00270{left:246.141000px;}
.x2c_c00270{left:248.125500px;}
.x33_c00270{left:249.642000px;}
.x18_c00270{left:253.117500px;}
.x5f_c00270{left:255.916827px;}
.x71_c00270{left:258.540906px;}
.x45_c00270{left:259.651500px;}
.x78_c00270{left:260.778159px;}
.x2b_c00270{left:264.124500px;}
.x40_c00270{left:266.490000px;}
.x61_c00270{left:268.022237px;}
.x1f_c00270{left:270.535500px;}
.x5d_c00270{left:272.213888px;}
.x19_c00270{left:276.852000px;}
.x34_c00270{left:277.980000px;}
.x6f_c00270{left:279.935199px;}
.x86_c00270{left:281.674686px;}
.x66_c00270{left:284.556354px;}
.x62_c00270{left:285.826140px;}
.x20_c00270{left:288.895500px;}
.x12_c00270{left:290.790000px;}
.x7d_c00270{left:291.841264px;}
.x25_c00270{left:294.025500px;}
.x84_c00270{left:296.898492px;}
.xd_c00270{left:299.430000px;}
.x70_c00270{left:302.507541px;}
.x2d_c00270{left:304.555500px;}
.x72_c00270{left:306.876182px;}
.x4f_c00270{left:310.071000px;}
.x6b_c00270{left:311.589221px;}
.x51_c00270{left:314.592000px;}
.x38_c00270{left:316.567500px;}
.x4a_c00270{left:317.614500px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.fs8_c00270{font-size:52.266667pt;}
.fs0_c00270{font-size:52.269724pt;}
.fs4_c00270{font-size:54.133333pt;}
.fsa_c00270{font-size:55.066667pt;}
.fs12_c00270{font-size:55.086735pt;}
.fs2_c00270{font-size:56.000000pt;}
.fs14_c00270{font-size:56.020408pt;}
.fs7_c00270{font-size:56.933333pt;}
.fs3_c00270{font-size:57.866667pt;}
.fs11_c00270{font-size:57.887755pt;}
.fs10_c00270{font-size:58.821429pt;}
.fs9_c00270{font-size:59.733333pt;}
.fs13_c00270{font-size:59.755102pt;}
.fs6_c00270{font-size:60.666667pt;}
.fsc_c00270{font-size:60.687169pt;}
.fsf_c00270{font-size:60.688776pt;}
.fse_c00270{font-size:61.622449pt;}
.fsb_c00270{font-size:62.533333pt;}
.fsd_c00270{font-size:62.556123pt;}
.fs5_c00270{font-size:65.333333pt;}
.fs1_c00270{font-size:73.733333pt;}
.y0_c00270{bottom:0.000000pt;}
.yd1_c00270{bottom:17.680620pt;}
.yd0_c00270{bottom:18.484809pt;}
.ycf_c00270{bottom:20.558692pt;}
.yce_c00270{bottom:21.162788pt;}
.ycd_c00270{bottom:22.094372pt;}
.ycc_c00270{bottom:23.206893pt;}
.ycb_c00270{bottom:32.595713pt;}
.yca_c00270{bottom:34.228541pt;}
.yc9_c00270{bottom:34.779839pt;}
.yc8_c00270{bottom:36.039685pt;}
.yc7_c00270{bottom:38.435328pt;}
.yc6_c00270{bottom:39.086227pt;}
.yc5_c00270{bottom:40.982820pt;}
.yc4_c00270{bottom:50.019688pt;}
.yc3_c00270{bottom:50.636089pt;}
.yc2_c00270{bottom:51.337189pt;}
.yc1_c00270{bottom:52.208081pt;}
.yc0_c00270{bottom:53.373292pt;}
.ybf_c00270{bottom:54.592195pt;}
.ybe_c00270{bottom:55.332943pt;}
.ybd_c00270{bottom:56.364768pt;}
.ybc_c00270{bottom:57.331521pt;}
.ybb_c00270{bottom:58.029596pt;}
.yba_c00270{bottom:64.667028pt;}
.yb9_c00270{bottom:66.431808pt;}
.yb8_c00270{bottom:67.534372pt;}
.yb7_c00270{bottom:69.053413pt;}
.yb6_c00270{bottom:69.803159pt;}
.yb5_c00270{bottom:70.914112pt;}
.yb4_c00270{bottom:71.245436pt;}
.yb3_c00270{bottom:72.191520pt;}
.yb2_c00270{bottom:80.039352pt;}
.yb1_c00270{bottom:80.979061pt;}
.yb0_c00270{bottom:83.370071pt;}
.yaf_c00270{bottom:84.536101pt;}
.yae_c00270{bottom:86.892361pt;}
.yad_c00270{bottom:87.464340pt;}
.yac_c00270{bottom:89.001379pt;}
.yab_c00270{bottom:96.460493pt;}
.yaa_c00270{bottom:98.244593pt;}
.ya9_c00270{bottom:98.811757pt;}
.ya8_c00270{bottom:100.774829pt;}
.ya7_c00270{bottom:101.222655pt;}
.ya6_c00270{bottom:102.393317pt;}
.ya5_c00270{bottom:103.069701pt;}
.ya4_c00270{bottom:104.361755pt;}
.ya3_c00270{bottom:110.625265pt;}
.ya2_c00270{bottom:111.957437pt;}
.ya1_c00270{bottom:112.577437pt;}
.ya0_c00270{bottom:114.025076pt;}
.y9f_c00270{bottom:114.717769pt;}
.y9e_c00270{bottom:116.372183pt;}
.y9d_c00270{bottom:118.029116pt;}
.y9c_c00270{bottom:123.804971pt;}
.y9b_c00270{bottom:124.928464pt;}
.y9a_c00270{bottom:128.654340pt;}
.y99_c00270{bottom:129.530925pt;}
.y98_c00270{bottom:130.551513pt;}
.y97_c00270{bottom:132.715261pt;}
.y96_c00270{bottom:134.227324pt;}
.y95_c00270{bottom:137.510135pt;}
.y94_c00270{bottom:139.917573pt;}
.y93_c00270{bottom:141.855472pt;}
.y92_c00270{bottom:144.477140pt;}
.y91_c00270{bottom:145.267080pt;}
.y90_c00270{bottom:146.878076pt;}
.y8f_c00270{bottom:148.348364pt;}
.y8e_c00270{bottom:149.095951pt;}
.y8d_c00270{bottom:150.937871pt;}
.y8c_c00270{bottom:154.852769pt;}
.y8b_c00270{bottom:155.349403pt;}
.y8a_c00270{bottom:157.127548pt;}
.y89_c00270{bottom:157.893488pt;}
.y88_c00270{bottom:158.441175pt;}
.y87_c00270{bottom:158.675415pt;}
.y5_c00270{bottom:160.420168pt;}
.y4_c00270{bottom:161.063861pt;}
.y3_c00270{bottom:162.103584pt;}
.y2_c00270{bottom:162.816339pt;}
.y1_c00270{bottom:163.702667pt;}
.y86_c00270{bottom:171.478309pt;}
.y85_c00270{bottom:172.717792pt;}
.y84_c00270{bottom:174.578331pt;}
.y83_c00270{bottom:176.181020pt;}
.y82_c00270{bottom:177.014916pt;}
.y81_c00270{bottom:178.436416pt;}
.y80_c00270{bottom:179.264479pt;}
.y7f_c00270{bottom:186.327912pt;}
.y7e_c00270{bottom:186.692493pt;}
.y7d_c00270{bottom:187.278148pt;}
.y7c_c00270{bottom:188.855287pt;}
.y7b_c00270{bottom:189.300025pt;}
.y7a_c00270{bottom:191.109107pt;}
.y79_c00270{bottom:191.505757pt;}
.y78_c00270{bottom:201.580923pt;}
.y77_c00270{bottom:203.129452pt;}
.y76_c00270{bottom:203.950848pt;}
.y75_c00270{bottom:205.456171pt;}
.y74_c00270{bottom:207.177708pt;}
.y73_c00270{bottom:208.237641pt;}
.y72_c00270{bottom:209.272263pt;}
.y71_c00270{bottom:218.537832pt;}
.y70_c00270{bottom:218.825317pt;}
.y6f_c00270{bottom:220.386469pt;}
.y6e_c00270{bottom:220.670571pt;}
.y6d_c00270{bottom:222.422335pt;}
.y6c_c00270{bottom:222.795064pt;}
.y6b_c00270{bottom:223.494265pt;}
.y6a_c00270{bottom:224.155596pt;}
.y69_c00270{bottom:232.618675pt;}
.y68_c00270{bottom:234.415075pt;}
.y67_c00270{bottom:234.972499pt;}
.y66_c00270{bottom:235.837867pt;}
.y65_c00270{bottom:237.267319pt;}
.y64_c00270{bottom:237.612919pt;}
.y63_c00270{bottom:238.757719pt;}
.y62_c00270{bottom:239.523115pt;}
.y61_c00270{bottom:249.586867pt;}
.y60_c00270{bottom:250.125031pt;}
.y5f_c00270{bottom:251.038891pt;}
.y5e_c00270{bottom:251.577055pt;}
.y5d_c00270{bottom:252.501787pt;}
.y5c_c00270{bottom:253.204003pt;}
.y5b_c00270{bottom:253.861579pt;}
.y5a_c00270{bottom:255.366667pt;}
.y59_c00270{bottom:264.590445pt;}
.y58_c00270{bottom:265.052379pt;}
.y57_c00270{bottom:266.088531pt;}
.y56_c00270{bottom:266.678869pt;}
.y55_c00270{bottom:268.204168pt;}
.y54_c00270{bottom:268.850805pt;}
.y53_c00270{bottom:270.663699pt;}
.y52_c00270{bottom:271.208000pt;}
.y51_c00270{bottom:280.594667pt;}
.y50_c00270{bottom:281.832000pt;}
.y4f_c00270{bottom:282.225333pt;}
.y4e_c00270{bottom:283.320000pt;}
.y4d_c00270{bottom:283.784000pt;}
.y4c_c00270{bottom:284.618667pt;}
.y4b_c00270{bottom:285.041333pt;}
.y4a_c00270{bottom:286.088000pt;}
.y49_c00270{bottom:296.242667pt;}
.y48_c00270{bottom:296.786667pt;}
.y47_c00270{bottom:297.196000pt;}
.y46_c00270{bottom:297.406667pt;}
.y45_c00270{bottom:298.129333pt;}
.y44_c00270{bottom:298.366667pt;}
.y43_c00270{bottom:299.065333pt;}
.y42_c00270{bottom:299.806667pt;}
.y41_c00270{bottom:300.004000pt;}
.y40_c00270{bottom:311.065333pt;}
.y3f_c00270{bottom:311.513333pt;}
.y3e_c00270{bottom:311.916000pt;}
.y3d_c00270{bottom:312.470667pt;}
.y3c_c00270{bottom:312.748000pt;}
.y3b_c00270{bottom:313.440000pt;}
.y3a_c00270{bottom:313.908000pt;}
.y39_c00270{bottom:314.161333pt;}
.y38_c00270{bottom:327.029333pt;}
.y37_c00270{bottom:338.892000pt;}
.y36_c00270{bottom:342.070667pt;}
.y35_c00270{bottom:342.388000pt;}
.y34_c00270{bottom:342.794667pt;}
.y33_c00270{bottom:343.818667pt;}
.y32_c00270{bottom:344.166667pt;}
.y31_c00270{bottom:355.712000pt;}
.y30_c00270{bottom:356.516000pt;}
.y2f_c00270{bottom:357.102667pt;}
.y2e_c00270{bottom:357.710667pt;}
.y2d_c00270{bottom:357.941333pt;}
.y2c_c00270{bottom:358.802667pt;}
.y2b_c00270{bottom:370.900000pt;}
.y2a_c00270{bottom:371.724000pt;}
.y29_c00270{bottom:372.018667pt;}
.y28_c00270{bottom:372.406667pt;}
.y27_c00270{bottom:372.892000pt;}
.y26_c00270{bottom:373.066667pt;}
.y25_c00270{bottom:373.422667pt;}
.y24_c00270{bottom:373.681333pt;}
.y23_c00270{bottom:386.742667pt;}
.y22_c00270{bottom:387.145333pt;}
.y21_c00270{bottom:387.337333pt;}
.y20_c00270{bottom:388.080000pt;}
.y1f_c00270{bottom:388.368000pt;}
.y1e_c00270{bottom:389.197333pt;}
.y1d_c00270{bottom:389.854667pt;}
.y1c_c00270{bottom:390.242667pt;}
.y1b_c00270{bottom:402.541333pt;}
.y1a_c00270{bottom:417.942667pt;}
.y19_c00270{bottom:418.225333pt;}
.y18_c00270{bottom:419.348000pt;}
.y17_c00270{bottom:419.689333pt;}
.y16_c00270{bottom:420.076000pt;}
.y15_c00270{bottom:420.956000pt;}
.y14_c00270{bottom:421.202667pt;}
.y13_c00270{bottom:433.702667pt;}
.y12_c00270{bottom:449.092000pt;}
.y11_c00270{bottom:464.470667pt;}
.y10_c00270{bottom:464.745333pt;}
.yf_c00270{bottom:464.878667pt;}
.ye_c00270{bottom:465.250667pt;}
.yd_c00270{bottom:465.618667pt;}
.yc_c00270{bottom:465.821333pt;}
.yb_c00270{bottom:466.566667pt;}
.ya_c00270{bottom:466.794667pt;}
.y9_c00270{bottom:467.281333pt;}
.y8_c00270{bottom:479.602667pt;}
.y7_c00270{bottom:494.821333pt;}
.y6_c00270{bottom:506.037333pt;}
.ha_c00270{height:52.266667pt;}
.h2_c00270{height:52.269724pt;}
.h6_c00270{height:54.133333pt;}
.hc_c00270{height:55.066667pt;}
.h14_c00270{height:55.086735pt;}
.h4_c00270{height:56.000000pt;}
.h16_c00270{height:56.020408pt;}
.h9_c00270{height:56.933333pt;}
.h5_c00270{height:57.866667pt;}
.h13_c00270{height:57.887755pt;}
.h12_c00270{height:58.821429pt;}
.hb_c00270{height:59.733333pt;}
.h15_c00270{height:59.755102pt;}
.h8_c00270{height:60.666667pt;}
.he_c00270{height:60.687169pt;}
.h11_c00270{height:60.688776pt;}
.h10_c00270{height:61.622449pt;}
.hd_c00270{height:62.533333pt;}
.hf_c00270{height:62.556123pt;}
.h7_c00270{height:65.333333pt;}
.h3_c00270{height:73.733333pt;}
.h1_c00270{height:550.000000pt;}
.h0_c00270{height:550.266667pt;}
.w0_c00270{width:319.200000pt;}
.w1_c00270{width:319.333333pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:16.064000pt;}
.x6c_c00270{left:24.155076pt;}
.x4b_c00270{left:25.892000pt;}
.x41_c00270{left:26.929333pt;}
.x2e_c00270{left:28.372000pt;}
.x7_c00270{left:30.000000pt;}
.x26_c00270{left:31.042667pt;}
.x67_c00270{left:32.088473pt;}
.xe_c00270{left:33.600000pt;}
.x2_c00270{left:35.312732pt;}
.x3d_c00270{left:37.440000pt;}
.x21_c00270{left:41.516000pt;}
.x7e_c00270{left:42.645300pt;}
.x46_c00270{left:44.733333pt;}
.x27_c00270{left:46.417333pt;}
.x3b_c00270{left:47.516000pt;}
.x63_c00270{left:49.687213pt;}
.x3_c00270{left:50.791904pt;}
.x2f_c00270{left:52.633333pt;}
.x56_c00270{left:54.183311pt;}
.x73_c00270{left:57.883765pt;}
.x1a_c00270{left:62.396000pt;}
.x7a_c00270{left:64.215476pt;}
.x79_c00270{left:65.765803pt;}
.xf_c00270{left:66.720000pt;}
.x8_c00270{left:68.640000pt;}
.x4_c00270{left:73.371968pt;}
.x1b_c00270{left:74.396000pt;}
.x74_c00270{left:75.670473pt;}
.x5a_c00270{left:78.214139pt;}
.x52_c00270{left:81.430667pt;}
.x42_c00270{left:82.437333pt;}
.x82_c00270{left:83.613547pt;}
.x13_c00270{left:84.849333pt;}
.x5_c00270{left:87.351308pt;}
.x68_c00270{left:89.647204pt;}
.x64_c00270{left:91.512663pt;}
.x4c_c00270{left:92.674667pt;}
.x30_c00270{left:93.685333pt;}
.x22_c00270{left:95.996000pt;}
.x7b_c00270{left:98.937463pt;}
.x35_c00270{left:100.205333pt;}
.x28_c00270{left:101.440000pt;}
.x53_c00270{left:105.785333pt;}
.x57_c00270{left:109.383311pt;}
.x9_c00270{left:110.400000pt;}
.x39_c00270{left:111.944000pt;}
.x7f_c00270{left:112.869215pt;}
.x3e_c00270{left:114.480000pt;}
.x50_c00270{left:115.777333pt;}
.x75_c00270{left:118.268504pt;}
.x85_c00270{left:120.559348pt;}
.x69_c00270{left:122.308661pt;}
.x29_c00270{left:125.601333pt;}
.x3c_c00270{left:126.976000pt;}
.xa_c00270{left:130.800000pt;}
.x54_c00270{left:131.793333pt;}
.x3f_c00270{left:133.920000pt;}
.x43_c00270{left:135.717333pt;}
.x47_c00270{left:140.802667pt;}
.x14_c00270{left:142.193333pt;}
.x36_c00270{left:144.362667pt;}
.x10_c00270{left:145.680000pt;}
.x6_c00270{left:146.880000pt;}
.x6d_c00270{left:148.401840pt;}
.x1c_c00270{left:149.996000pt;}
.x4d_c00270{left:151.701333pt;}
.x5e_c00270{left:154.748749pt;}
.x48_c00270{left:156.600000pt;}
.x15_c00270{left:157.793333pt;}
.x3a_c00270{left:158.745333pt;}
.x5b_c00270{left:159.963037pt;}
.x58_c00270{left:162.325977pt;}
.x31_c00270{left:163.514667pt;}
.x55_c00270{left:166.042667pt;}
.x83_c00270{left:168.230324pt;}
.x76_c00270{left:169.922501pt;}
.x5c_c00270{left:170.880659pt;}
.x80_c00270{left:173.989415pt;}
.x6a_c00270{left:175.650741pt;}
.x65_c00270{left:177.089101pt;}
.x23_c00270{left:178.556000pt;}
.x37_c00270{left:179.693333pt;}
.x6e_c00270{left:182.295344pt;}
.xb_c00270{left:183.360000pt;}
.x77_c00270{left:184.850073pt;}
.x16_c00270{left:186.117333pt;}
.x24_c00270{left:188.396000pt;}
.x59_c00270{left:194.376644pt;}
.x1d_c00270{left:195.356000pt;}
.x81_c00270{left:196.311512pt;}
.x44_c00270{left:199.793333pt;}
.x4e_c00270{left:201.457333pt;}
.x11_c00270{left:203.280000pt;}
.x7c_c00270{left:204.281909pt;}
.xc_c00270{left:205.440000pt;}
.x1e_c00270{left:206.636000pt;}
.x32_c00270{left:209.910667pt;}
.x60_c00270{left:212.795252pt;}
.x17_c00270{left:214.688000pt;}
.x2a_c00270{left:217.110667pt;}
.x49_c00270{left:218.792000pt;}
.x2c_c00270{left:220.556000pt;}
.x33_c00270{left:221.904000pt;}
.x18_c00270{left:224.993333pt;}
.x5f_c00270{left:227.481624pt;}
.x71_c00270{left:229.814139pt;}
.x45_c00270{left:230.801333pt;}
.x78_c00270{left:231.802808pt;}
.x2b_c00270{left:234.777333pt;}
.x40_c00270{left:236.880000pt;}
.x61_c00270{left:238.241988pt;}
.x1f_c00270{left:240.476000pt;}
.x5d_c00270{left:241.967900pt;}
.x19_c00270{left:246.090667pt;}
.x34_c00270{left:247.093333pt;}
.x6f_c00270{left:248.831288pt;}
.x86_c00270{left:250.377499pt;}
.x66_c00270{left:252.938981pt;}
.x62_c00270{left:254.067680pt;}
.x20_c00270{left:256.796000pt;}
.x12_c00270{left:258.480000pt;}
.x7d_c00270{left:259.414457pt;}
.x25_c00270{left:261.356000pt;}
.x84_c00270{left:263.909771pt;}
.xd_c00270{left:266.160000pt;}
.x70_c00270{left:268.895592pt;}
.x2d_c00270{left:270.716000pt;}
.x72_c00270{left:272.778828pt;}
.x4f_c00270{left:275.618667pt;}
.x6b_c00270{left:276.968196pt;}
.x51_c00270{left:279.637333pt;}
.x38_c00270{left:281.393333pt;}
.x4a_c00270{left:282.324000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00271 {
    display:none;
  }
  .loading-indicator_c00271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00271 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00271 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00271" -> "#page-container .classname_c00271")
 */
.pf_c00271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00271 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00271 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00271 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00271 {overflow:visible;}
  }
}
.c_c00271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00271 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00271:after { /* webkit #35443 */
  content: '';
}
.t_c00271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00271 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00271 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00271 { /* info for Javascript */
  display:none;
}
.l_c00271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00271:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00271 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00271.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf1_c00271{transform:matrix(0.143659,-0.002442,0.004249,0.249964,0,0);-ms-transform:matrix(0.143659,-0.002442,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143659,-0.002442,0.004249,0.249964,0,0);}
.m3a_c00271{transform:matrix(0.145796,-0.002916,0.004999,0.249950,0,0);-ms-transform:matrix(0.145796,-0.002916,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145796,-0.002916,0.004999,0.249950,0,0);}
.me0_c00271{transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);-ms-transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);}
.m6a_c00271{transform:matrix(0.150070,-0.003001,0.004999,0.249950,0,0);-ms-transform:matrix(0.150070,-0.003001,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150070,-0.003001,0.004999,0.249950,0,0);}
.m44_c00271{transform:matrix(0.152015,-0.003040,0.004999,0.249950,0,0);-ms-transform:matrix(0.152015,-0.003040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152015,-0.003040,0.004999,0.249950,0,0);}
.mc9_c00271{transform:matrix(0.152133,-0.002586,0.004249,0.249964,0,0);-ms-transform:matrix(0.152133,-0.002586,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152133,-0.002586,0.004249,0.249964,0,0);}
.m56_c00271{transform:matrix(0.153369,-0.003067,0.004999,0.249950,0,0);-ms-transform:matrix(0.153369,-0.003067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153369,-0.003067,0.004999,0.249950,0,0);}
.m83_c00271{transform:matrix(0.154469,-0.003089,0.004999,0.249950,0,0);-ms-transform:matrix(0.154469,-0.003089,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154469,-0.003089,0.004999,0.249950,0,0);}
.m67_c00271{transform:matrix(0.154924,-0.003098,0.004999,0.249950,0,0);-ms-transform:matrix(0.154924,-0.003098,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154924,-0.003098,0.004999,0.249950,0,0);}
.m51_c00271{transform:matrix(0.154989,-0.003100,0.004999,0.249950,0,0);-ms-transform:matrix(0.154989,-0.003100,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154989,-0.003100,0.004999,0.249950,0,0);}
.m87_c00271{transform:matrix(0.156394,-0.003128,0.004999,0.249950,0,0);-ms-transform:matrix(0.156394,-0.003128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156394,-0.003128,0.004999,0.249950,0,0);}
.m17_c00271{transform:matrix(0.157164,-0.003143,0.004999,0.249950,0,0);-ms-transform:matrix(0.157164,-0.003143,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157164,-0.003143,0.004999,0.249950,0,0);}
.m59_c00271{transform:matrix(0.157808,-0.003156,0.004999,0.249950,0,0);-ms-transform:matrix(0.157808,-0.003156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157808,-0.003156,0.004999,0.249950,0,0);}
.me2_c00271{transform:matrix(0.158067,-0.002687,0.004249,0.249964,0,0);-ms-transform:matrix(0.158067,-0.002687,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158067,-0.002687,0.004249,0.249964,0,0);}
.m11_c00271{transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);-ms-transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);}
.me7_c00271{transform:matrix(0.160062,-0.002721,0.004249,0.249964,0,0);-ms-transform:matrix(0.160062,-0.002721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160062,-0.002721,0.004249,0.249964,0,0);}
.mbe_c00271{transform:matrix(0.160142,-0.002722,0.004249,0.249964,0,0);-ms-transform:matrix(0.160142,-0.002722,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160142,-0.002722,0.004249,0.249964,0,0);}
.m78_c00271{transform:matrix(0.161718,-0.003234,0.004999,0.249950,0,0);-ms-transform:matrix(0.161718,-0.003234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161718,-0.003234,0.004999,0.249950,0,0);}
.me1_c00271{transform:matrix(0.162961,-0.002770,0.004249,0.249964,0,0);-ms-transform:matrix(0.162961,-0.002770,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162961,-0.002770,0.004249,0.249964,0,0);}
.m80_c00271{transform:matrix(0.163342,-0.003267,0.004999,0.249950,0,0);-ms-transform:matrix(0.163342,-0.003267,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163342,-0.003267,0.004999,0.249950,0,0);}
.m4c_c00271{transform:matrix(0.163362,-0.003267,0.004999,0.249950,0,0);-ms-transform:matrix(0.163362,-0.003267,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163362,-0.003267,0.004999,0.249950,0,0);}
.m7d_c00271{transform:matrix(0.163412,-0.003268,0.004999,0.249950,0,0);-ms-transform:matrix(0.163412,-0.003268,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163412,-0.003268,0.004999,0.249950,0,0);}
.m82_c00271{transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);}
.md_c00271{transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);-ms-transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);}
.m4_c00271{transform:matrix(0.164632,-0.003293,0.004999,0.249950,0,0);-ms-transform:matrix(0.164632,-0.003293,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164632,-0.003293,0.004999,0.249950,0,0);}
.me_c00271{transform:matrix(0.165827,-0.003317,0.004999,0.249950,0,0);-ms-transform:matrix(0.165827,-0.003317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165827,-0.003317,0.004999,0.249950,0,0);}
.mce_c00271{transform:matrix(0.165851,-0.002819,0.004249,0.249964,0,0);-ms-transform:matrix(0.165851,-0.002819,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165851,-0.002819,0.004249,0.249964,0,0);}
.m69_c00271{transform:matrix(0.167986,-0.003360,0.004999,0.249950,0,0);-ms-transform:matrix(0.167986,-0.003360,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167986,-0.003360,0.004999,0.249950,0,0);}
.m8d_c00271{transform:matrix(0.168081,-0.003362,0.004999,0.249950,0,0);-ms-transform:matrix(0.168081,-0.003362,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168081,-0.003362,0.004999,0.249950,0,0);}
.m60_c00271{transform:matrix(0.168101,-0.003362,0.004999,0.249950,0,0);-ms-transform:matrix(0.168101,-0.003362,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168101,-0.003362,0.004999,0.249950,0,0);}
.m47_c00271{transform:matrix(0.168791,-0.003376,0.004999,0.249950,0,0);-ms-transform:matrix(0.168791,-0.003376,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168791,-0.003376,0.004999,0.249950,0,0);}
.m1c_c00271{transform:matrix(0.168796,-0.003376,0.004999,0.249950,0,0);-ms-transform:matrix(0.168796,-0.003376,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168796,-0.003376,0.004999,0.249950,0,0);}
.m85_c00271{transform:matrix(0.169621,-0.003392,0.004999,0.249950,0,0);-ms-transform:matrix(0.169621,-0.003392,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169621,-0.003392,0.004999,0.249950,0,0);}
.m4a_c00271{transform:matrix(0.169791,-0.003396,0.004999,0.249950,0,0);-ms-transform:matrix(0.169791,-0.003396,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169791,-0.003396,0.004999,0.249950,0,0);}
.m2b_c00271{transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);-ms-transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);}
.mea_c00271{transform:matrix(0.170450,-0.002898,0.004249,0.249964,0,0);-ms-transform:matrix(0.170450,-0.002898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170450,-0.002898,0.004249,0.249964,0,0);}
.m3d_c00271{transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);-ms-transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);}
.me3_c00271{transform:matrix(0.171620,-0.002918,0.004249,0.249964,0,0);-ms-transform:matrix(0.171620,-0.002918,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171620,-0.002918,0.004249,0.249964,0,0);}
.me5_c00271{transform:matrix(0.172245,-0.002928,0.004249,0.249964,0,0);-ms-transform:matrix(0.172245,-0.002928,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172245,-0.002928,0.004249,0.249964,0,0);}
.mf2_c00271{transform:matrix(0.172270,-0.002929,0.004249,0.249964,0,0);-ms-transform:matrix(0.172270,-0.002929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172270,-0.002929,0.004249,0.249964,0,0);}
.m34_c00271{transform:matrix(0.172645,-0.003453,0.004999,0.249950,0,0);-ms-transform:matrix(0.172645,-0.003453,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172645,-0.003453,0.004999,0.249950,0,0);}
.m6c_c00271{transform:matrix(0.172845,-0.003457,0.004999,0.249950,0,0);-ms-transform:matrix(0.172845,-0.003457,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172845,-0.003457,0.004999,0.249950,0,0);}
.m26_c00271{transform:matrix(0.172965,-0.003459,0.004999,0.249950,0,0);-ms-transform:matrix(0.172965,-0.003459,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172965,-0.003459,0.004999,0.249950,0,0);}
.md1_c00271{transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);-ms-transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);}
.mc6_c00271{transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);}
.mc4_c00271{transform:matrix(0.174135,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174135,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174135,-0.002960,0.004249,0.249964,0,0);}
.mad_c00271{transform:matrix(0.174210,-0.002962,0.004249,0.249964,0,0);-ms-transform:matrix(0.174210,-0.002962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174210,-0.002962,0.004249,0.249964,0,0);}
.m1a_c00271{transform:matrix(0.174295,-0.003486,0.004999,0.249950,0,0);-ms-transform:matrix(0.174295,-0.003486,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174295,-0.003486,0.004999,0.249950,0,0);}
.mde_c00271{transform:matrix(0.174445,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174445,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174445,-0.002966,0.004249,0.249964,0,0);}
.m1e_c00271{transform:matrix(0.174840,-0.003497,0.004999,0.249950,0,0);-ms-transform:matrix(0.174840,-0.003497,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174840,-0.003497,0.004999,0.249950,0,0);}
.mb9_c00271{transform:matrix(0.174920,-0.002974,0.004249,0.249964,0,0);-ms-transform:matrix(0.174920,-0.002974,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174920,-0.002974,0.004249,0.249964,0,0);}
.m4d_c00271{transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);-ms-transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);}
.mb7_c00271{transform:matrix(0.175285,-0.002980,0.004249,0.249964,0,0);-ms-transform:matrix(0.175285,-0.002980,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175285,-0.002980,0.004249,0.249964,0,0);}
.ma1_c00271{transform:matrix(0.175285,-0.003506,0.004999,0.249950,0,0);-ms-transform:matrix(0.175285,-0.003506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175285,-0.003506,0.004999,0.249950,0,0);}
.ma9_c00271{transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-ms-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);}
.m9b_c00271{transform:matrix(0.176200,-0.003524,0.004999,0.249950,0,0);-ms-transform:matrix(0.176200,-0.003524,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176200,-0.003524,0.004999,0.249950,0,0);}
.m9d_c00271{transform:matrix(0.176805,-0.003536,0.004999,0.249950,0,0);-ms-transform:matrix(0.176805,-0.003536,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176805,-0.003536,0.004999,0.249950,0,0);}
.mab_c00271{transform:matrix(0.177244,-0.003013,0.004249,0.249964,0,0);-ms-transform:matrix(0.177244,-0.003013,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177244,-0.003013,0.004249,0.249964,0,0);}
.m18_c00271{transform:matrix(0.177619,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177619,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177619,-0.003552,0.004999,0.249950,0,0);}
.mb4_c00271{transform:matrix(0.177799,-0.003023,0.004249,0.249964,0,0);-ms-transform:matrix(0.177799,-0.003023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177799,-0.003023,0.004249,0.249964,0,0);}
.m6d_c00271{transform:matrix(0.178114,-0.003562,0.004999,0.249950,0,0);-ms-transform:matrix(0.178114,-0.003562,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178114,-0.003562,0.004999,0.249950,0,0);}
.mf5_c00271{transform:matrix(0.178259,-0.003030,0.004249,0.249964,0,0);-ms-transform:matrix(0.178259,-0.003030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178259,-0.003030,0.004249,0.249964,0,0);}
.meb_c00271{transform:matrix(0.178974,-0.003043,0.004249,0.249964,0,0);-ms-transform:matrix(0.178974,-0.003043,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178974,-0.003043,0.004249,0.249964,0,0);}
.mb5_c00271{transform:matrix(0.179299,-0.003048,0.004249,0.249964,0,0);-ms-transform:matrix(0.179299,-0.003048,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179299,-0.003048,0.004249,0.249964,0,0);}
.m8f_c00271{transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);-ms-transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179579,-0.003592,0.004999,0.249950,0,0);}
.ma5_c00271{transform:matrix(0.179674,-0.003054,0.004249,0.249964,0,0);-ms-transform:matrix(0.179674,-0.003054,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179674,-0.003054,0.004249,0.249964,0,0);}
.m66_c00271{transform:matrix(0.180054,-0.003601,0.004999,0.249950,0,0);-ms-transform:matrix(0.180054,-0.003601,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180054,-0.003601,0.004999,0.249950,0,0);}
.m68_c00271{transform:matrix(0.180239,-0.003605,0.004999,0.249950,0,0);-ms-transform:matrix(0.180239,-0.003605,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180239,-0.003605,0.004999,0.249950,0,0);}
.m52_c00271{transform:matrix(0.180554,-0.003611,0.004999,0.249950,0,0);-ms-transform:matrix(0.180554,-0.003611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180554,-0.003611,0.004999,0.249950,0,0);}
.m7a_c00271{transform:matrix(0.180654,-0.003613,0.004999,0.249950,0,0);-ms-transform:matrix(0.180654,-0.003613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180654,-0.003613,0.004999,0.249950,0,0);}
.m37_c00271{transform:matrix(0.180719,-0.003614,0.004999,0.249950,0,0);-ms-transform:matrix(0.180719,-0.003614,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180719,-0.003614,0.004999,0.249950,0,0);}
.m3f_c00271{transform:matrix(0.180729,-0.003615,0.004999,0.249950,0,0);-ms-transform:matrix(0.180729,-0.003615,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180729,-0.003615,0.004999,0.249950,0,0);}
.m73_c00271{transform:matrix(0.180949,-0.003619,0.004999,0.249950,0,0);-ms-transform:matrix(0.180949,-0.003619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180949,-0.003619,0.004999,0.249950,0,0);}
.m95_c00271{transform:matrix(0.181819,-0.003636,0.004999,0.249950,0,0);-ms-transform:matrix(0.181819,-0.003636,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181819,-0.003636,0.004999,0.249950,0,0);}
.m63_c00271{transform:matrix(0.182139,-0.003643,0.004999,0.249950,0,0);-ms-transform:matrix(0.182139,-0.003643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182139,-0.003643,0.004999,0.249950,0,0);}
.mf3_c00271{transform:matrix(0.182214,-0.003098,0.004249,0.249964,0,0);-ms-transform:matrix(0.182214,-0.003098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182214,-0.003098,0.004249,0.249964,0,0);}
.m58_c00271{transform:matrix(0.182244,-0.003645,0.004999,0.249950,0,0);-ms-transform:matrix(0.182244,-0.003645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182244,-0.003645,0.004999,0.249950,0,0);}
.m93_c00271{transform:matrix(0.182314,-0.003646,0.004999,0.249950,0,0);-ms-transform:matrix(0.182314,-0.003646,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182314,-0.003646,0.004999,0.249950,0,0);}
.m2c_c00271{transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);-ms-transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);}
.m2f_c00271{transform:matrix(0.182449,-0.003649,0.004999,0.249950,0,0);-ms-transform:matrix(0.182449,-0.003649,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182449,-0.003649,0.004999,0.249950,0,0);}
.m2_c00271{transform:matrix(0.182454,-0.003649,0.004999,0.249950,0,0);-ms-transform:matrix(0.182454,-0.003649,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182454,-0.003649,0.004999,0.249950,0,0);}
.mc0_c00271{transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);-ms-transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183653,-0.003122,0.004249,0.249964,0,0);}
.mdb_c00271{transform:matrix(0.183683,-0.003123,0.004249,0.249964,0,0);-ms-transform:matrix(0.183683,-0.003123,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183683,-0.003123,0.004249,0.249964,0,0);}
.m71_c00271{transform:matrix(0.184113,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184113,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184113,-0.003682,0.004999,0.249950,0,0);}
.m1b_c00271{transform:matrix(0.184473,-0.003689,0.004999,0.249950,0,0);-ms-transform:matrix(0.184473,-0.003689,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184473,-0.003689,0.004999,0.249950,0,0);}
.m92_c00271{transform:matrix(0.184553,-0.003691,0.004999,0.249950,0,0);-ms-transform:matrix(0.184553,-0.003691,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184553,-0.003691,0.004999,0.249950,0,0);}
.m2d_c00271{transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184918,-0.003698,0.004999,0.249950,0,0);}
.md2_c00271{transform:matrix(0.184933,-0.003144,0.004249,0.249964,0,0);-ms-transform:matrix(0.184933,-0.003144,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184933,-0.003144,0.004249,0.249964,0,0);}
.m6e_c00271{transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);-ms-transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);}
.m74_c00271{transform:matrix(0.185213,-0.003704,0.004999,0.249950,0,0);-ms-transform:matrix(0.185213,-0.003704,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185213,-0.003704,0.004999,0.249950,0,0);}
.m55_c00271{transform:matrix(0.185368,-0.003707,0.004999,0.249950,0,0);-ms-transform:matrix(0.185368,-0.003707,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185368,-0.003707,0.004999,0.249950,0,0);}
.mcd_c00271{transform:matrix(0.185568,-0.003155,0.004249,0.249964,0,0);-ms-transform:matrix(0.185568,-0.003155,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185568,-0.003155,0.004249,0.249964,0,0);}
.m81_c00271{transform:matrix(0.185683,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185683,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185683,-0.003714,0.004999,0.249950,0,0);}
.mcb_c00271{transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);}
.me6_c00271{transform:matrix(0.186423,-0.003169,0.004249,0.249964,0,0);-ms-transform:matrix(0.186423,-0.003169,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186423,-0.003169,0.004249,0.249964,0,0);}
.md9_c00271{transform:matrix(0.186613,-0.003172,0.004249,0.249964,0,0);-ms-transform:matrix(0.186613,-0.003172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186613,-0.003172,0.004249,0.249964,0,0);}
.m28_c00271{transform:matrix(0.186643,-0.003733,0.004999,0.249950,0,0);-ms-transform:matrix(0.186643,-0.003733,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186643,-0.003733,0.004999,0.249950,0,0);}
.m7b_c00271{transform:matrix(0.186718,-0.003734,0.004999,0.249950,0,0);-ms-transform:matrix(0.186718,-0.003734,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186718,-0.003734,0.004999,0.249950,0,0);}
.m53_c00271{transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);-ms-transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186928,-0.003739,0.004999,0.249950,0,0);}
.m10_c00271{transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);}
.m79_c00271{transform:matrix(0.187368,-0.003747,0.004999,0.249950,0,0);-ms-transform:matrix(0.187368,-0.003747,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187368,-0.003747,0.004999,0.249950,0,0);}
.m4b_c00271{transform:matrix(0.187777,-0.003756,0.004999,0.249950,0,0);-ms-transform:matrix(0.187777,-0.003756,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187777,-0.003756,0.004999,0.249950,0,0);}
.mdf_c00271{transform:matrix(0.187808,-0.003193,0.004249,0.249964,0,0);-ms-transform:matrix(0.187808,-0.003193,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187808,-0.003193,0.004249,0.249964,0,0);}
.mdd_c00271{transform:matrix(0.189723,-0.003225,0.004249,0.249964,0,0);-ms-transform:matrix(0.189723,-0.003225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189723,-0.003225,0.004249,0.249964,0,0);}
.m76_c00271{transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);-ms-transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);}
.m1_c00271{transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{transform:matrix(0.191072,-0.003821,0.004999,0.249950,0,0);-ms-transform:matrix(0.191072,-0.003821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191072,-0.003821,0.004999,0.249950,0,0);}
.me4_c00271{transform:matrix(0.191792,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191792,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191792,-0.003260,0.004249,0.249964,0,0);}
.mc_c00271{transform:matrix(0.191817,-0.003836,0.004999,0.249950,0,0);-ms-transform:matrix(0.191817,-0.003836,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191817,-0.003836,0.004999,0.249950,0,0);}
.m15_c00271{transform:matrix(0.191922,-0.003838,0.004999,0.249950,0,0);-ms-transform:matrix(0.191922,-0.003838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191922,-0.003838,0.004999,0.249950,0,0);}
.m3_c00271{transform:matrix(0.192202,-0.003844,0.004999,0.249950,0,0);-ms-transform:matrix(0.192202,-0.003844,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192202,-0.003844,0.004999,0.249950,0,0);}
.m3e_c00271{transform:matrix(0.192287,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192287,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192287,-0.003846,0.004999,0.249950,0,0);}
.m5_c00271{transform:matrix(0.192422,-0.003848,0.004999,0.249950,0,0);-ms-transform:matrix(0.192422,-0.003848,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192422,-0.003848,0.004999,0.249950,0,0);}
.mae_c00271{transform:matrix(0.193837,-0.003295,0.004249,0.249964,0,0);-ms-transform:matrix(0.193837,-0.003295,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193837,-0.003295,0.004249,0.249964,0,0);}
.m39_c00271{transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);-ms-transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194046,-0.003881,0.004999,0.249950,0,0);}
.m19_c00271{transform:matrix(0.194121,-0.003882,0.004999,0.249950,0,0);-ms-transform:matrix(0.194121,-0.003882,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194121,-0.003882,0.004999,0.249950,0,0);}
.m8b_c00271{transform:matrix(0.194161,-0.003883,0.004999,0.249950,0,0);-ms-transform:matrix(0.194161,-0.003883,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194161,-0.003883,0.004999,0.249950,0,0);}
.mcc_c00271{transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194277,-0.003303,0.004249,0.249964,0,0);}
.m2a_c00271{transform:matrix(0.194531,-0.003891,0.004999,0.249950,0,0);-ms-transform:matrix(0.194531,-0.003891,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194531,-0.003891,0.004999,0.249950,0,0);}
.m57_c00271{transform:matrix(0.194551,-0.003891,0.004999,0.249950,0,0);-ms-transform:matrix(0.194551,-0.003891,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194551,-0.003891,0.004999,0.249950,0,0);}
.m6_c00271{transform:matrix(0.194976,-0.003900,0.004999,0.249950,0,0);-ms-transform:matrix(0.194976,-0.003900,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194976,-0.003900,0.004999,0.249950,0,0);}
.m41_c00271{transform:matrix(0.195011,-0.003900,0.004999,0.249950,0,0);-ms-transform:matrix(0.195011,-0.003900,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195011,-0.003900,0.004999,0.249950,0,0);}
.m5c_c00271{transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195596,-0.003912,0.004999,0.249950,0,0);}
.mb1_c00271{transform:matrix(0.195672,-0.003326,0.004249,0.249964,0,0);-ms-transform:matrix(0.195672,-0.003326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195672,-0.003326,0.004249,0.249964,0,0);}
.m7e_c00271{transform:matrix(0.195826,-0.003917,0.004999,0.249950,0,0);-ms-transform:matrix(0.195826,-0.003917,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195826,-0.003917,0.004999,0.249950,0,0);}
.mb8_c00271{transform:matrix(0.195837,-0.003329,0.004249,0.249964,0,0);-ms-transform:matrix(0.195837,-0.003329,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195837,-0.003329,0.004249,0.249964,0,0);}
.md8_c00271{transform:matrix(0.196097,-0.003334,0.004249,0.249964,0,0);-ms-transform:matrix(0.196097,-0.003334,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196097,-0.003334,0.004249,0.249964,0,0);}
.m77_c00271{transform:matrix(0.196101,-0.003922,0.004999,0.249950,0,0);-ms-transform:matrix(0.196101,-0.003922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196101,-0.003922,0.004999,0.249950,0,0);}
.mca_c00271{transform:matrix(0.196147,-0.003334,0.004249,0.249964,0,0);-ms-transform:matrix(0.196147,-0.003334,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196147,-0.003334,0.004249,0.249964,0,0);}
.m6b_c00271{transform:matrix(0.196161,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196161,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196161,-0.003923,0.004999,0.249950,0,0);}
.ma_c00271{transform:matrix(0.196821,-0.003936,0.004999,0.249950,0,0);-ms-transform:matrix(0.196821,-0.003936,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196821,-0.003936,0.004999,0.249950,0,0);}
.md3_c00271{transform:matrix(0.196907,-0.003347,0.004249,0.249964,0,0);-ms-transform:matrix(0.196907,-0.003347,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196907,-0.003347,0.004249,0.249964,0,0);}
.m8c_c00271{transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);-ms-transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197406,-0.003948,0.004999,0.249950,0,0);}
.mf4_c00271{transform:matrix(0.197791,-0.003362,0.004249,0.249964,0,0);-ms-transform:matrix(0.197791,-0.003362,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197791,-0.003362,0.004249,0.249964,0,0);}
.mc2_c00271{transform:matrix(0.198131,-0.003368,0.004249,0.249964,0,0);-ms-transform:matrix(0.198131,-0.003368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198131,-0.003368,0.004249,0.249964,0,0);}
.mac_c00271{transform:matrix(0.198281,-0.003371,0.004249,0.249964,0,0);-ms-transform:matrix(0.198281,-0.003371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198281,-0.003371,0.004249,0.249964,0,0);}
.m4f_c00271{transform:matrix(0.198345,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198345,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198345,-0.003967,0.004999,0.249950,0,0);}
.m88_c00271{transform:matrix(0.199250,-0.003985,0.004999,0.249950,0,0);-ms-transform:matrix(0.199250,-0.003985,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199250,-0.003985,0.004999,0.249950,0,0);}
.m86_c00271{transform:matrix(0.199305,-0.003986,0.004999,0.249950,0,0);-ms-transform:matrix(0.199305,-0.003986,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199305,-0.003986,0.004999,0.249950,0,0);}
.mcf_c00271{transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);-ms-transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);}
.m46_c00271{transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-ms-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);}
.m49_c00271{transform:matrix(0.199825,-0.003997,0.004999,0.249950,0,0);-ms-transform:matrix(0.199825,-0.003997,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199825,-0.003997,0.004999,0.249950,0,0);}
.m16_c00271{transform:matrix(0.200400,-0.004008,0.004999,0.249950,0,0);-ms-transform:matrix(0.200400,-0.004008,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200400,-0.004008,0.004999,0.249950,0,0);}
.mc5_c00271{transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);-ms-transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);}
.m45_c00271{transform:matrix(0.200505,-0.004010,0.004999,0.249950,0,0);-ms-transform:matrix(0.200505,-0.004010,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200505,-0.004010,0.004999,0.249950,0,0);}
.mb_c00271{transform:matrix(0.200955,-0.004019,0.004999,0.249950,0,0);-ms-transform:matrix(0.200955,-0.004019,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200955,-0.004019,0.004999,0.249950,0,0);}
.m7f_c00271{transform:matrix(0.200985,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.200985,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200985,-0.004020,0.004999,0.249950,0,0);}
.m9_c00271{transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);-ms-transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);}
.ma0_c00271{transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);-ms-transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);}
.m4e_c00271{transform:matrix(0.201460,-0.004029,0.004999,0.249950,0,0);-ms-transform:matrix(0.201460,-0.004029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201460,-0.004029,0.004999,0.249950,0,0);}
.mda_c00271{transform:matrix(0.201881,-0.003432,0.004249,0.249964,0,0);-ms-transform:matrix(0.201881,-0.003432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201881,-0.003432,0.004249,0.249964,0,0);}
.m40_c00271{transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);-ms-transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);}
.m12_c00271{transform:matrix(0.202335,-0.004047,0.004999,0.249950,0,0);-ms-transform:matrix(0.202335,-0.004047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202335,-0.004047,0.004999,0.249950,0,0);}
.m6f_c00271{transform:matrix(0.203364,-0.004067,0.004999,0.249950,0,0);-ms-transform:matrix(0.203364,-0.004067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203364,-0.004067,0.004999,0.249950,0,0);}
.m20_c00271{transform:matrix(0.204034,-0.004081,0.004999,0.249950,0,0);-ms-transform:matrix(0.204034,-0.004081,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204034,-0.004081,0.004999,0.249950,0,0);}
.m36_c00271{transform:matrix(0.204499,-0.004090,0.004999,0.249950,0,0);-ms-transform:matrix(0.204499,-0.004090,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204499,-0.004090,0.004999,0.249950,0,0);}
.m7_c00271{transform:matrix(0.204594,-0.004092,0.004999,0.249950,0,0);-ms-transform:matrix(0.204594,-0.004092,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204594,-0.004092,0.004999,0.249950,0,0);}
.m8a_c00271{transform:matrix(0.204704,-0.004094,0.004999,0.249950,0,0);-ms-transform:matrix(0.204704,-0.004094,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204704,-0.004094,0.004999,0.249950,0,0);}
.m35_c00271{transform:matrix(0.204874,-0.004097,0.004999,0.249950,0,0);-ms-transform:matrix(0.204874,-0.004097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204874,-0.004097,0.004999,0.249950,0,0);}
.m21_c00271{transform:matrix(0.205294,-0.004106,0.004999,0.249950,0,0);-ms-transform:matrix(0.205294,-0.004106,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205294,-0.004106,0.004999,0.249950,0,0);}
.m1d_c00271{transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);-ms-transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);}
.m97_c00271{transform:matrix(0.205839,-0.004117,0.004999,0.249950,0,0);-ms-transform:matrix(0.205839,-0.004117,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205839,-0.004117,0.004999,0.249950,0,0);}
.m38_c00271{transform:matrix(0.205949,-0.004119,0.004999,0.249950,0,0);-ms-transform:matrix(0.205949,-0.004119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205949,-0.004119,0.004999,0.249950,0,0);}
.mb3_c00271{transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);-ms-transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206080,-0.003503,0.004249,0.249964,0,0);}
.m54_c00271{transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);-ms-transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);}
.m30_c00271{transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);-ms-transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206419,-0.004128,0.004999,0.249950,0,0);}
.m96_c00271{transform:matrix(0.206824,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206824,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206824,-0.004136,0.004999,0.249950,0,0);}
.m91_c00271{transform:matrix(0.207129,-0.004143,0.004999,0.249950,0,0);-ms-transform:matrix(0.207129,-0.004143,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207129,-0.004143,0.004999,0.249950,0,0);}
.mf_c00271{transform:matrix(0.207613,-0.004152,0.004999,0.249950,0,0);-ms-transform:matrix(0.207613,-0.004152,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207613,-0.004152,0.004999,0.249950,0,0);}
.m62_c00271{transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-ms-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);}
.m13_c00271{transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);-ms-transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208483,-0.004170,0.004999,0.249950,0,0);}
.m72_c00271{transform:matrix(0.208533,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208533,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208533,-0.004171,0.004999,0.249950,0,0);}
.m61_c00271{transform:matrix(0.208673,-0.004173,0.004999,0.249950,0,0);-ms-transform:matrix(0.208673,-0.004173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208673,-0.004173,0.004999,0.249950,0,0);}
.mec_c00271{transform:matrix(0.208855,-0.003551,0.004249,0.249964,0,0);-ms-transform:matrix(0.208855,-0.003551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208855,-0.003551,0.004249,0.249964,0,0);}
.m9c_c00271{transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);-ms-transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208863,-0.004177,0.004999,0.249950,0,0);}
.mf0_c00271{transform:matrix(0.209085,-0.003554,0.004249,0.249964,0,0);-ms-transform:matrix(0.209085,-0.003554,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209085,-0.003554,0.004249,0.249964,0,0);}
.mb0_c00271{transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);-ms-transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);}
.m32_c00271{transform:matrix(0.209723,-0.004194,0.004999,0.249950,0,0);-ms-transform:matrix(0.209723,-0.004194,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209723,-0.004194,0.004999,0.249950,0,0);}
.ma8_c00271{transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);-ms-transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210175,-0.003573,0.004249,0.249964,0,0);}
.m27_c00271{transform:matrix(0.210838,-0.004217,0.004999,0.249950,0,0);-ms-transform:matrix(0.210838,-0.004217,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210838,-0.004217,0.004999,0.249950,0,0);}
.mb6_c00271{transform:matrix(0.210850,-0.003584,0.004249,0.249964,0,0);-ms-transform:matrix(0.210850,-0.003584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210850,-0.003584,0.004249,0.249964,0,0);}
.m31_c00271{transform:matrix(0.211398,-0.004228,0.004999,0.249950,0,0);-ms-transform:matrix(0.211398,-0.004228,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211398,-0.004228,0.004999,0.249950,0,0);}
.mbf_c00271{transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);-ms-transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);}
.mba_c00271{transform:matrix(0.211579,-0.003597,0.004249,0.249964,0,0);-ms-transform:matrix(0.211579,-0.003597,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211579,-0.003597,0.004249,0.249964,0,0);}
.m48_c00271{transform:matrix(0.211888,-0.004238,0.004999,0.249950,0,0);-ms-transform:matrix(0.211888,-0.004238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211888,-0.004238,0.004999,0.249950,0,0);}
.mdc_c00271{transform:matrix(0.213119,-0.003623,0.004249,0.249964,0,0);-ms-transform:matrix(0.213119,-0.003623,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213119,-0.003623,0.004249,0.249964,0,0);}
.m2e_c00271{transform:matrix(0.213787,-0.004276,0.004999,0.249950,0,0);-ms-transform:matrix(0.213787,-0.004276,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213787,-0.004276,0.004999,0.249950,0,0);}
.m23_c00271{transform:matrix(0.215242,-0.004305,0.004999,0.249950,0,0);-ms-transform:matrix(0.215242,-0.004305,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215242,-0.004305,0.004999,0.249950,0,0);}
.mbc_c00271{transform:matrix(0.215364,-0.003661,0.004249,0.249964,0,0);-ms-transform:matrix(0.215364,-0.003661,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215364,-0.003661,0.004249,0.249964,0,0);}
.mef_c00271{transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);-ms-transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);}
.md5_c00271{transform:matrix(0.215724,-0.003667,0.004249,0.249964,0,0);-ms-transform:matrix(0.215724,-0.003667,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215724,-0.003667,0.004249,0.249964,0,0);}
.med_c00271{transform:matrix(0.216284,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216284,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216284,-0.003677,0.004249,0.249964,0,0);}
.m24_c00271{transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);}
.maf_c00271{transform:matrix(0.216634,-0.003683,0.004249,0.249964,0,0);-ms-transform:matrix(0.216634,-0.003683,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216634,-0.003683,0.004249,0.249964,0,0);}
.m89_c00271{transform:matrix(0.216862,-0.004337,0.004999,0.249950,0,0);-ms-transform:matrix(0.216862,-0.004337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216862,-0.004337,0.004999,0.249950,0,0);}
.m5e_c00271{transform:matrix(0.216937,-0.004339,0.004999,0.249950,0,0);-ms-transform:matrix(0.216937,-0.004339,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216937,-0.004339,0.004999,0.249950,0,0);}
.m14_c00271{transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);-ms-transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);}
.mbd_c00271{transform:matrix(0.217554,-0.003698,0.004249,0.249964,0,0);-ms-transform:matrix(0.217554,-0.003698,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217554,-0.003698,0.004249,0.249964,0,0);}
.ma6_c00271{transform:matrix(0.217799,-0.003703,0.004249,0.249964,0,0);-ms-transform:matrix(0.217799,-0.003703,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217799,-0.003703,0.004249,0.249964,0,0);}
.m94_c00271{transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);-ms-transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);}
.mc3_c00271{transform:matrix(0.218758,-0.003719,0.004249,0.249964,0,0);-ms-transform:matrix(0.218758,-0.003719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218758,-0.003719,0.004249,0.249964,0,0);}
.mbb_c00271{transform:matrix(0.219088,-0.003725,0.004249,0.249964,0,0);-ms-transform:matrix(0.219088,-0.003725,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219088,-0.003725,0.004249,0.249964,0,0);}
.maa_c00271{transform:matrix(0.219878,-0.003738,0.004249,0.249964,0,0);-ms-transform:matrix(0.219878,-0.003738,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219878,-0.003738,0.004249,0.249964,0,0);}
.m9a_c00271{transform:matrix(0.220476,-0.004410,0.004999,0.249950,0,0);-ms-transform:matrix(0.220476,-0.004410,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220476,-0.004410,0.004999,0.249950,0,0);}
.m29_c00271{transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);-ms-transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);}
.ma4_c00271{transform:matrix(0.220993,-0.003757,0.004249,0.249964,0,0);-ms-transform:matrix(0.220993,-0.003757,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220993,-0.003757,0.004249,0.249964,0,0);}
.m98_c00271{transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);-ms-transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);}
.m7c_c00271{transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);-ms-transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221176,-0.004424,0.004999,0.249950,0,0);}
.mc7_c00271{transform:matrix(0.221708,-0.003769,0.004249,0.249964,0,0);-ms-transform:matrix(0.221708,-0.003769,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221708,-0.003769,0.004249,0.249964,0,0);}
.m99_c00271{transform:matrix(0.221731,-0.004435,0.004999,0.249950,0,0);-ms-transform:matrix(0.221731,-0.004435,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221731,-0.004435,0.004999,0.249950,0,0);}
.m5a_c00271{transform:matrix(0.222506,-0.004450,0.004999,0.249950,0,0);-ms-transform:matrix(0.222506,-0.004450,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222506,-0.004450,0.004999,0.249950,0,0);}
.ma7_c00271{transform:matrix(0.222868,-0.003789,0.004249,0.249964,0,0);-ms-transform:matrix(0.222868,-0.003789,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222868,-0.003789,0.004249,0.249964,0,0);}
.m8_c00271{transform:matrix(0.222960,-0.004459,0.004999,0.249950,0,0);-ms-transform:matrix(0.222960,-0.004459,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222960,-0.004459,0.004999,0.249950,0,0);}
.m33_c00271{transform:matrix(0.223185,-0.004464,0.004999,0.249950,0,0);-ms-transform:matrix(0.223185,-0.004464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223185,-0.004464,0.004999,0.249950,0,0);}
.m84_c00271{transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);-ms-transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);}
.m22_c00271{transform:matrix(0.224580,-0.004492,0.004999,0.249950,0,0);-ms-transform:matrix(0.224580,-0.004492,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224580,-0.004492,0.004999,0.249950,0,0);}
.m9e_c00271{transform:matrix(0.224700,-0.004494,0.004999,0.249950,0,0);-ms-transform:matrix(0.224700,-0.004494,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224700,-0.004494,0.004999,0.249950,0,0);}
.mee_c00271{transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-ms-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);}
.m43_c00271{transform:matrix(0.225325,-0.004506,0.004999,0.249950,0,0);-ms-transform:matrix(0.225325,-0.004506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225325,-0.004506,0.004999,0.249950,0,0);}
.md7_c00271{transform:matrix(0.225952,-0.003841,0.004249,0.249964,0,0);-ms-transform:matrix(0.225952,-0.003841,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225952,-0.003841,0.004249,0.249964,0,0);}
.m25_c00271{transform:matrix(0.226130,-0.004523,0.004999,0.249950,0,0);-ms-transform:matrix(0.226130,-0.004523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226130,-0.004523,0.004999,0.249950,0,0);}
.m3b_c00271{transform:matrix(0.226775,-0.004535,0.004999,0.249950,0,0);-ms-transform:matrix(0.226775,-0.004535,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226775,-0.004535,0.004999,0.249950,0,0);}
.m8e_c00271{transform:matrix(0.227000,-0.004540,0.004999,0.249950,0,0);-ms-transform:matrix(0.227000,-0.004540,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227000,-0.004540,0.004999,0.249950,0,0);}
.m9f_c00271{transform:matrix(0.228039,-0.004561,0.004999,0.249950,0,0);-ms-transform:matrix(0.228039,-0.004561,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228039,-0.004561,0.004999,0.249950,0,0);}
.m42_c00271{transform:matrix(0.228509,-0.004570,0.004999,0.249950,0,0);-ms-transform:matrix(0.228509,-0.004570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228509,-0.004570,0.004999,0.249950,0,0);}
.m70_c00271{transform:matrix(0.229629,-0.004593,0.004999,0.249950,0,0);-ms-transform:matrix(0.229629,-0.004593,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229629,-0.004593,0.004999,0.249950,0,0);}
.m50_c00271{transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);-ms-transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);}
.m75_c00271{transform:matrix(0.231269,-0.004625,0.004999,0.249950,0,0);-ms-transform:matrix(0.231269,-0.004625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231269,-0.004625,0.004999,0.249950,0,0);}
.m0_c00271{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.m90_c00271{transform:matrix(0.231969,-0.004639,0.004999,0.249950,0,0);-ms-transform:matrix(0.231969,-0.004639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231969,-0.004639,0.004999,0.249950,0,0);}
.ma3_c00271{transform:matrix(0.232154,-0.004643,0.004999,0.249950,0,0);-ms-transform:matrix(0.232154,-0.004643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232154,-0.004643,0.004999,0.249950,0,0);}
.m1f_c00271{transform:matrix(0.232234,-0.004645,0.004999,0.249950,0,0);-ms-transform:matrix(0.232234,-0.004645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232234,-0.004645,0.004999,0.249950,0,0);}
.m5f_c00271{transform:matrix(0.236958,-0.004739,0.004999,0.249950,0,0);-ms-transform:matrix(0.236958,-0.004739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236958,-0.004739,0.004999,0.249950,0,0);}
.m65_c00271{transform:matrix(0.237652,-0.004753,0.004999,0.249950,0,0);-ms-transform:matrix(0.237652,-0.004753,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237652,-0.004753,0.004999,0.249950,0,0);}
.m5b_c00271{transform:matrix(0.240562,-0.004811,0.004999,0.249950,0,0);-ms-transform:matrix(0.240562,-0.004811,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240562,-0.004811,0.004999,0.249950,0,0);}
.mc8_c00271{transform:matrix(0.244545,-0.004157,0.004249,0.249964,0,0);-ms-transform:matrix(0.244545,-0.004157,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244545,-0.004157,0.004249,0.249964,0,0);}
.m5d_c00271{transform:matrix(0.245521,-0.004910,0.004999,0.249950,0,0);-ms-transform:matrix(0.245521,-0.004910,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245521,-0.004910,0.004999,0.249950,0,0);}
.mc1_c00271{transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);-ms-transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);}
.md6_c00271{transform:matrix(0.251329,-0.004273,0.004249,0.249964,0,0);-ms-transform:matrix(0.251329,-0.004273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251329,-0.004273,0.004249,0.249964,0,0);}
.m3c_c00271{transform:matrix(0.255444,-0.005109,0.004999,0.249950,0,0);-ms-transform:matrix(0.255444,-0.005109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.255444,-0.005109,0.004999,0.249950,0,0);}
.ma2_c00271{transform:matrix(0.259878,-0.005198,0.004999,0.249950,0,0);-ms-transform:matrix(0.259878,-0.005198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.259878,-0.005198,0.004999,0.249950,0,0);}
.md4_c00271{transform:matrix(0.262132,-0.004456,0.004249,0.249964,0,0);-ms-transform:matrix(0.262132,-0.004456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262132,-0.004456,0.004249,0.249964,0,0);}
.mb2_c00271{transform:matrix(0.263942,-0.004487,0.004249,0.249964,0,0);-ms-transform:matrix(0.263942,-0.004487,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263942,-0.004487,0.004249,0.249964,0,0);}
.me8_c00271{transform:matrix(0.294992,-0.005015,0.004249,0.249964,0,0);-ms-transform:matrix(0.294992,-0.005015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294992,-0.005015,0.004249,0.249964,0,0);}
.md0_c00271{transform:matrix(0.308125,-0.005238,0.004249,0.249964,0,0);-ms-transform:matrix(0.308125,-0.005238,0.004249,0.249964,0,0);-webkit-transform:matrix(0.308125,-0.005238,0.004249,0.249964,0,0);}
.me9_c00271{transform:matrix(0.340901,-0.005795,0.004249,0.249964,0,0);-ms-transform:matrix(0.340901,-0.005795,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340901,-0.005795,0.004249,0.249964,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:0.000000px;}
.fc0_c00271{color:transparent;}
.fs0_c00271{font-size:16.800000px;}
.fsc_c00271{font-size:55.661129px;}
.fs9_c00271{font-size:58.811759px;}
.fsf_c00271{font-size:59.858648px;}
.fsb_c00271{font-size:59.861969px;}
.fse_c00271{font-size:60.908799px;}
.fs6_c00271{font-size:60.912179px;}
.fsd_c00271{font-size:61.958951px;}
.fs5_c00271{font-size:61.962389px;}
.fs10_c00271{font-size:63.009103px;}
.fs7_c00271{font-size:63.012599px;}
.fs2_c00271{font-size:65.113019px;}
.fs11_c00271{font-size:66.159558px;}
.fs3_c00271{font-size:66.163229px;}
.fs1_c00271{font-size:67.200000px;}
.fs4_c00271{font-size:67.213439px;}
.fs13_c00271{font-size:68.259861px;}
.fs8_c00271{font-size:69.313859px;}
.fs12_c00271{font-size:70.360165px;}
.fsa_c00271{font-size:72.464489px;}
.fs14_c00271{font-size:73.510620px;}
.y0_c00271{bottom:0.000000px;}
.yf6_c00271{bottom:20.764257px;}
.yf7_c00271{bottom:21.840234px;}
.yf8_c00271{bottom:22.140053px;}
.yf9_c00271{bottom:23.217126px;}
.yfa_c00271{bottom:24.347195px;}
.yfb_c00271{bottom:24.579393px;}
.yed_c00271{bottom:37.779152px;}
.yee_c00271{bottom:38.231862px;}
.yef_c00271{bottom:39.073938px;}
.yf0_c00271{bottom:39.360315px;}
.yf1_c00271{bottom:39.662753px;}
.yf2_c00271{bottom:40.350221px;}
.yf3_c00271{bottom:40.765613px;}
.yf4_c00271{bottom:42.030981px;}
.yf5_c00271{bottom:42.264209px;}
.ye5_c00271{bottom:54.791595px;}
.ye6_c00271{bottom:55.386816px;}
.ye7_c00271{bottom:55.723391px;}
.ye8_c00271{bottom:56.631216px;}
.ye9_c00271{bottom:56.976818px;}
.yea_c00271{bottom:57.953264px;}
.yeb_c00271{bottom:58.698297px;}
.yec_c00271{bottom:59.584652px;}
.yde_c00271{bottom:71.803682px;}
.ydf_c00271{bottom:73.145726px;}
.ye0_c00271{bottom:73.553964px;}
.ye1_c00271{bottom:74.351597px;}
.ye2_c00271{bottom:74.726052px;}
.ye3_c00271{bottom:75.872522px;}
.ye4_c00271{bottom:76.689662px;}
.yd7_c00271{bottom:89.086491px;}
.yd8_c00271{bottom:90.286925px;}
.yd9_c00271{bottom:91.391217px;}
.yda_c00271{bottom:91.641362px;}
.ydb_c00271{bottom:93.223410px;}
.ydc_c00271{bottom:93.753470px;}
.ydd_c00271{bottom:94.893138px;}
.yd0_c00271{bottom:105.830766px;}
.yd1_c00271{bottom:106.753493px;}
.yd2_c00271{bottom:107.519459px;}
.yd3_c00271{bottom:108.954417px;}
.yd4_c00271{bottom:110.253078px;}
.yd5_c00271{bottom:110.656080px;}
.yd6_c00271{bottom:111.842732px;}
.yc7_c00271{bottom:123.380690px;}
.yc8_c00271{bottom:124.519317px;}
.yc9_c00271{bottom:125.014370px;}
.yca_c00271{bottom:125.735432px;}
.ycb_c00271{bottom:126.251198px;}
.ycc_c00271{bottom:126.797822px;}
.ycd_c00271{bottom:129.021593px;}
.yce_c00271{bottom:129.491750px;}
.ycf_c00271{bottom:129.903761px;}
.ybf_c00271{bottom:140.662509px;}
.yc0_c00271{bottom:141.142152px;}
.yc1_c00271{bottom:142.070681px;}
.yc2_c00271{bottom:143.192255px;}
.yc3_c00271{bottom:143.559930px;}
.yc4_c00271{bottom:143.876928px;}
.yc5_c00271{bottom:144.779340px;}
.yc6_c00271{bottom:145.085093px;}
.yb8_c00271{bottom:158.218259px;}
.yb9_c00271{bottom:158.629083px;}
.yba_c00271{bottom:159.800511px;}
.ybb_c00271{bottom:160.102679px;}
.ybc_c00271{bottom:162.041234px;}
.ybd_c00271{bottom:162.493401px;}
.ybe_c00271{bottom:163.645025px;}
.yb0_c00271{bottom:176.038599px;}
.yb1_c00271{bottom:176.560836px;}
.yb2_c00271{bottom:177.127452px;}
.yb3_c00271{bottom:177.495051px;}
.yb4_c00271{bottom:178.354640px;}
.yb5_c00271{bottom:179.235372px;}
.yb6_c00271{bottom:179.558745px;}
.yb7_c00271{bottom:179.923157px;}
.ya9_c00271{bottom:193.323000px;}
.yaa_c00271{bottom:194.668227px;}
.yab_c00271{bottom:194.971116px;}
.yac_c00271{bottom:195.824423px;}
.yad_c00271{bottom:196.733727px;}
.yae_c00271{bottom:197.068746px;}
.yaf_c00271{bottom:197.468637px;}
.ya2_c00271{bottom:211.072620px;}
.ya3_c00271{bottom:211.377360px;}
.ya4_c00271{bottom:212.286810px;}
.ya5_c00271{bottom:212.691660px;}
.ya6_c00271{bottom:213.737130px;}
.ya7_c00271{bottom:213.989520px;}
.ya8_c00271{bottom:214.611150px;}
.y9b_c00271{bottom:227.815170px;}
.y9c_c00271{bottom:228.401640px;}
.y9d_c00271{bottom:228.704670px;}
.y9e_c00271{bottom:229.819800px;}
.y9f_c00271{bottom:230.667480px;}
.ya0_c00271{bottom:230.871510px;}
.ya1_c00271{bottom:231.416070px;}
.y93_c00271{bottom:244.826730px;}
.y94_c00271{bottom:245.993400px;}
.y95_c00271{bottom:246.329220px;}
.y96_c00271{bottom:247.447830px;}
.y97_c00271{bottom:247.719750px;}
.y98_c00271{bottom:248.064840px;}
.y99_c00271{bottom:248.761200px;}
.y9a_c00271{bottom:249.068490px;}
.y8b_c00271{bottom:261.841320px;}
.y8c_c00271{bottom:262.534950px;}
.y8d_c00271{bottom:262.802280px;}
.y8e_c00271{bottom:263.235750px;}
.y8f_c00271{bottom:264.090810px;}
.y90_c00271{bottom:265.029150px;}
.y91_c00271{bottom:266.186580px;}
.y92_c00271{bottom:266.389680px;}
.y84_c00271{bottom:278.045010px;}
.y85_c00271{bottom:278.852910px;}
.y86_c00271{bottom:279.226830px;}
.y87_c00271{bottom:280.320510px;}
.y88_c00271{bottom:280.937790px;}
.y89_c00271{bottom:282.250440px;}
.y8a_c00271{bottom:282.638100px;}
.y7a_c00271{bottom:294.792750px;}
.y7b_c00271{bottom:295.215900px;}
.y7c_c00271{bottom:295.852050px;}
.y7d_c00271{bottom:297.048300px;}
.y7e_c00271{bottom:297.587130px;}
.y7f_c00271{bottom:298.407150px;}
.y80_c00271{bottom:298.698270px;}
.y81_c00271{bottom:299.203110px;}
.y82_c00271{bottom:299.629350px;}
.y83_c00271{bottom:300.673350px;}
.y72_c00271{bottom:311.804490px;}
.y73_c00271{bottom:312.971250px;}
.y74_c00271{bottom:313.260540px;}
.y75_c00271{bottom:313.853010px;}
.y76_c00271{bottom:315.304320px;}
.y77_c00271{bottom:315.678990px;}
.y78_c00271{bottom:317.192580px;}
.y79_c00271{bottom:317.701920px;}
.y69_c00271{bottom:328.815090px;}
.y6a_c00271{bottom:329.418120px;}
.y6b_c00271{bottom:329.772690px;}
.y6c_c00271{bottom:330.422160px;}
.y6d_c00271{bottom:331.366950px;}
.y6e_c00271{bottom:331.795140px;}
.y6f_c00271{bottom:333.262800px;}
.y70_c00271{bottom:333.951330px;}
.y71_c00271{bottom:334.706040px;}
.y63_c00271{bottom:346.639860px;}
.y64_c00271{bottom:347.711550px;}
.y65_c00271{bottom:348.317340px;}
.y66_c00271{bottom:349.814880px;}
.y67_c00271{bottom:350.682930px;}
.y68_c00271{bottom:351.446460px;}
.y5d_c00271{bottom:364.191870px;}
.y5e_c00271{bottom:365.332440px;}
.y5f_c00271{bottom:366.698460px;}
.y60_c00271{bottom:367.242540px;}
.y61_c00271{bottom:368.028030px;}
.y62_c00271{bottom:368.819400px;}
.y54_c00271{bottom:381.475020px;}
.y55_c00271{bottom:381.767640px;}
.y56_c00271{bottom:382.084830px;}
.y57_c00271{bottom:382.923480px;}
.y58_c00271{bottom:383.604450px;}
.y59_c00271{bottom:384.215670px;}
.y5a_c00271{bottom:384.518700px;}
.y5b_c00271{bottom:385.138860px;}
.y5c_c00271{bottom:385.448340px;}
.y4c_c00271{bottom:398.761170px;}
.y4d_c00271{bottom:399.813990px;}
.y4e_c00271{bottom:400.134030px;}
.y4f_c00271{bottom:400.955280px;}
.y50_c00271{bottom:401.405250px;}
.y51_c00271{bottom:401.777880px;}
.y52_c00271{bottom:402.534330px;}
.y53_c00271{bottom:402.960300px;}
.y42_c00271{bottom:415.771530px;}
.y43_c00271{bottom:416.312490px;}
.y44_c00271{bottom:416.588070px;}
.y45_c00271{bottom:417.408900px;}
.y46_c00271{bottom:417.947100px;}
.y47_c00271{bottom:418.460310px;}
.y48_c00271{bottom:418.562910px;}
.y49_c00271{bottom:418.964250px;}
.y4a_c00271{bottom:419.220780px;}
.y4b_c00271{bottom:419.553720px;}
.y3a_c00271{bottom:432.786900px;}
.y3b_c00271{bottom:434.094210px;}
.y3c_c00271{bottom:434.586630px;}
.y3d_c00271{bottom:434.850960px;}
.y3e_c00271{bottom:435.975930px;}
.y3f_c00271{bottom:436.293300px;}
.y40_c00271{bottom:436.480500px;}
.y41_c00271{bottom:436.795770px;}
.y30_c00271{bottom:449.530800px;}
.y31_c00271{bottom:449.896590px;}
.y32_c00271{bottom:450.256200px;}
.y33_c00271{bottom:451.181880px;}
.y34_c00271{bottom:451.683810px;}
.y35_c00271{bottom:452.605950px;}
.y36_c00271{bottom:453.268260px;}
.y37_c00271{bottom:453.630330px;}
.y38_c00271{bottom:454.076310px;}
.y39_c00271{bottom:454.356330px;}
.y27_c00271{bottom:466.277100px;}
.y28_c00271{bottom:467.011170px;}
.y29_c00271{bottom:468.007170px;}
.y2a_c00271{bottom:469.137600px;}
.y2b_c00271{bottom:469.377480px;}
.y2c_c00271{bottom:469.929720px;}
.y2d_c00271{bottom:470.343210px;}
.y2e_c00271{bottom:471.189210px;}
.y2f_c00271{bottom:471.486150px;}
.y20_c00271{bottom:483.560310px;}
.y21_c00271{bottom:484.643820px;}
.y22_c00271{bottom:485.016570px;}
.y23_c00271{bottom:485.468790px;}
.y24_c00271{bottom:485.910750px;}
.y25_c00271{bottom:486.402750px;}
.y26_c00271{bottom:486.589110px;}
.y1a_c00271{bottom:499.764240px;}
.y1b_c00271{bottom:500.309520px;}
.y1c_c00271{bottom:501.334440px;}
.y1d_c00271{bottom:501.704460px;}
.y1e_c00271{bottom:502.822440px;}
.y1f_c00271{bottom:504.164970px;}
.y13_c00271{bottom:516.511560px;}
.y14_c00271{bottom:518.144640px;}
.y15_c00271{bottom:519.486360px;}
.y16_c00271{bottom:520.511130px;}
.y17_c00271{bottom:520.921800px;}
.y18_c00271{bottom:522.225630px;}
.y19_c00271{bottom:522.747360px;}
.ya_c00271{bottom:534.332670px;}
.yb_c00271{bottom:535.216920px;}
.yc_c00271{bottom:535.698840px;}
.yd_c00271{bottom:535.972680px;}
.ye_c00271{bottom:537.268650px;}
.yf_c00271{bottom:537.713520px;}
.y10_c00271{bottom:538.264740px;}
.y11_c00271{bottom:539.528520px;}
.y12_c00271{bottom:540.004170px;}
.y3_c00271{bottom:551.344500px;}
.y4_c00271{bottom:552.225930px;}
.y5_c00271{bottom:552.620280px;}
.y6_c00271{bottom:553.068060px;}
.y7_c00271{bottom:554.427840px;}
.y8_c00271{bottom:555.256020px;}
.y9_c00271{bottom:556.545930px;}
.y2_c00271{bottom:570.097500px;}
.y1_c00271{bottom:601.830000px;}
.h2_c00271{height:16.800000px;}
.he_c00271{height:55.661129px;}
.hb_c00271{height:58.811759px;}
.h11_c00271{height:59.858648px;}
.hd_c00271{height:59.861969px;}
.h10_c00271{height:60.908799px;}
.h8_c00271{height:60.912179px;}
.hf_c00271{height:61.958951px;}
.h7_c00271{height:61.962389px;}
.h12_c00271{height:63.009103px;}
.h9_c00271{height:63.012599px;}
.h4_c00271{height:65.113019px;}
.h13_c00271{height:66.159558px;}
.h5_c00271{height:66.163229px;}
.h3_c00271{height:67.200000px;}
.h6_c00271{height:67.213439px;}
.h15_c00271{height:68.259861px;}
.ha_c00271{height:69.313859px;}
.h14_c00271{height:70.360165px;}
.hc_c00271{height:72.464489px;}
.h16_c00271{height:73.510620px;}
.h1_c00271{height:618.750000px;}
.h0_c00271{height:619.050000px;}
.w0_c00271{width:359.100000px;}
.w1_c00271{width:359.250000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:33.129000px;}
.x15_c00271{left:34.247640px;}
.x39_c00271{left:35.563920px;}
.x51_c00271{left:36.721920px;}
.x62_c00271{left:37.914630px;}
.x6d_c00271{left:39.088279px;}
.x82_c00271{left:40.139595px;}
.x27_c00271{left:56.020800px;}
.x6c_c00271{left:59.410808px;}
.x63_c00271{left:61.404930px;}
.x16_c00271{left:64.512840px;}
.x6e_c00271{left:69.067789px;}
.x6a_c00271{left:71.418525px;}
.x32_c00271{left:73.619250px;}
.x20_c00271{left:75.015240px;}
.x3_c00271{left:77.200500px;}
.x40_c00271{left:79.297800px;}
.x5a_c00271{left:80.569350px;}
.x49_c00271{left:81.712590px;}
.x76_c00271{left:83.352855px;}
.x52_c00271{left:87.210930px;}
.x71_c00271{left:88.600939px;}
.x4e_c00271{left:91.955580px;}
.x33_c00271{left:93.325620px;}
.x7f_c00271{left:94.717400px;}
.x4_c00271{left:96.918000px;}
.x78_c00271{left:99.633409px;}
.x9_c00271{left:101.761230px;}
.xf_c00271{left:104.528280px;}
.x3a_c00271{left:105.761940px;}
.x45_c00271{left:107.674560px;}
.x72_c00271{left:110.131246px;}
.x4a_c00271{left:112.610460px;}
.x7d_c00271{left:114.181929px;}
.xa_c00271{left:115.453230px;}
.x1b_c00271{left:117.287130px;}
.x5_c00271{left:119.307000px;}
.x17_c00271{left:121.461120px;}
.x47_c00271{left:124.191330px;}
.x3b_c00271{left:127.091070px;}
.x21_c00271{left:130.367460px;}
.x28_c00271{left:131.614830px;}
.x4f_c00271{left:133.942740px;}
.x66_c00271{left:134.964000px;}
.x5d_c00271{left:137.629650px;}
.x41_c00271{left:139.237500px;}
.x18_c00271{left:141.987930px;}
.x53_c00271{left:144.172290px;}
.x1c_c00271{left:145.978650px;}
.x80_c00271{left:148.118900px;}
.x34_c00271{left:151.924140px;}
.x2e_c00271{left:155.093490px;}
.x4b_c00271{left:157.599060px;}
.x29_c00271{left:161.138100px;}
.x10_c00271{left:162.835770px;}
.x73_c00271{left:163.909764px;}
.x1_c00271{left:166.320000px;}
.x79_c00271{left:167.390967px;}
.x81_c00271{left:168.448400px;}
.x54_c00271{left:169.838280px;}
.x2f_c00271{left:172.736760px;}
.x83_c00271{left:175.492005px;}
.x4c_c00271{left:177.958140px;}
.xb_c00271{left:180.251730px;}
.x3c_c00271{left:181.884060px;}
.x6b_c00271{left:183.555938px;}
.x67_c00271{left:185.158500px;}
.x6_c00271{left:187.296000px;}
.x35_c00271{left:190.313730px;}
.x22_c00271{left:193.191480px;}
.x57_c00271{left:197.365140px;}
.xc_c00271{left:202.495230px;}
.x19_c00271{left:204.114420px;}
.x11_c00271{left:207.396600px;}
.x55_c00271{left:208.888500px;}
.x3d_c00271{left:211.885560px;}
.x1d_c00271{left:214.847310px;}
.x85_c00271{left:215.936369px;}
.x50_c00271{left:220.890000px;}
.x56_c00271{left:222.769230px;}
.x12_c00271{left:225.229020px;}
.x36_c00271{left:226.928610px;}
.x7_c00271{left:228.705000px;}
.xd_c00271{left:230.056230px;}
.x42_c00271{left:231.533070px;}
.x37_c00271{left:234.234480px;}
.x23_c00271{left:237.224250px;}
.x68_c00271{left:238.647000px;}
.x6f_c00271{left:239.998696px;}
.x5f_c00271{left:241.322220px;}
.x64_c00271{left:242.868810px;}
.x7a_c00271{left:246.507438px;}
.x30_c00271{left:247.742760px;}
.x77_c00271{left:250.023033px;}
.x1e_c00271{left:252.652590px;}
.x2a_c00271{left:254.316180px;}
.x60_c00271{left:255.875460px;}
.x69_c00271{left:258.354000px;}
.x24_c00271{left:260.224680px;}
.x38_c00271{left:262.929930px;}
.x84_c00271{left:263.945496px;}
.x7e_c00271{left:265.667354px;}
.x1f_c00271{left:266.997600px;}
.x31_c00271{left:268.863360px;}
.x58_c00271{left:270.275550px;}
.x7b_c00271{left:273.009587px;}
.x2b_c00271{left:275.570940px;}
.x1a_c00271{left:278.668890px;}
.x4d_c00271{left:280.590570px;}
.x13_c00271{left:281.942130px;}
.x74_c00271{left:284.332473px;}
.x3e_c00271{left:287.172090px;}
.x48_c00271{left:288.900630px;}
.x59_c00271{left:291.834420px;}
.x8_c00271{left:293.200500px;}
.x61_c00271{left:294.808140px;}
.x70_c00271{left:296.435665px;}
.x43_c00271{left:297.500490px;}
.x5e_c00271{left:299.669820px;}
.x2c_c00271{left:301.846530px;}
.x14_c00271{left:304.652280px;}
.x25_c00271{left:307.251570px;}
.x5b_c00271{left:308.844120px;}
.x65_c00271{left:310.129230px;}
.x86_c00271{left:313.192316px;}
.x3f_c00271{left:315.598440px;}
.xe_c00271{left:317.027730px;}
.x2d_c00271{left:318.323520px;}
.x44_c00271{left:319.652160px;}
.x5c_c00271{left:321.550140px;}
.x75_c00271{left:322.632546px;}
.x26_c00271{left:323.749230px;}
.x46_c00271{left:325.614990px;}
.x7c_c00271{left:329.987179px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.fs0_c00271{font-size:14.933333pt;}
.fsc_c00271{font-size:49.476559pt;}
.fs9_c00271{font-size:52.277119pt;}
.fsf_c00271{font-size:53.207687pt;}
.fsb_c00271{font-size:53.210639pt;}
.fse_c00271{font-size:54.141155pt;}
.fs6_c00271{font-size:54.144159pt;}
.fsd_c00271{font-size:55.074623pt;}
.fs5_c00271{font-size:55.077679pt;}
.fs10_c00271{font-size:56.008091pt;}
.fs7_c00271{font-size:56.011199pt;}
.fs2_c00271{font-size:57.878239pt;}
.fs11_c00271{font-size:58.808496pt;}
.fs3_c00271{font-size:58.811759pt;}
.fs1_c00271{font-size:59.733333pt;}
.fs4_c00271{font-size:59.745279pt;}
.fs13_c00271{font-size:60.675432pt;}
.fs8_c00271{font-size:61.612319pt;}
.fs12_c00271{font-size:62.542369pt;}
.fsa_c00271{font-size:64.412879pt;}
.fs14_c00271{font-size:65.342773pt;}
.y0_c00271{bottom:0.000000pt;}
.yf6_c00271{bottom:18.457117pt;}
.yf7_c00271{bottom:19.413541pt;}
.yf8_c00271{bottom:19.680047pt;}
.yf9_c00271{bottom:20.637445pt;}
.yfa_c00271{bottom:21.641951pt;}
.yfb_c00271{bottom:21.848349pt;}
.yed_c00271{bottom:33.581468pt;}
.yee_c00271{bottom:33.983877pt;}
.yef_c00271{bottom:34.732389pt;}
.yf0_c00271{bottom:34.986947pt;}
.yf1_c00271{bottom:35.255780pt;}
.yf2_c00271{bottom:35.866863pt;}
.yf3_c00271{bottom:36.236100pt;}
.yf4_c00271{bottom:37.360872pt;}
.yf5_c00271{bottom:37.568185pt;}
.ye5_c00271{bottom:48.703640pt;}
.ye6_c00271{bottom:49.232725pt;}
.ye7_c00271{bottom:49.531903pt;}
.ye8_c00271{bottom:50.338859pt;}
.ye9_c00271{bottom:50.646060pt;}
.yea_c00271{bottom:51.514012pt;}
.yeb_c00271{bottom:52.176264pt;}
.yec_c00271{bottom:52.964135pt;}
.yde_c00271{bottom:63.825495pt;}
.ydf_c00271{bottom:65.018423pt;}
.ye0_c00271{bottom:65.381301pt;}
.ye1_c00271{bottom:66.090308pt;}
.ye2_c00271{bottom:66.423157pt;}
.ye3_c00271{bottom:67.442241pt;}
.ye4_c00271{bottom:68.168588pt;}
.yd7_c00271{bottom:79.187992pt;}
.yd8_c00271{bottom:80.255044pt;}
.yd9_c00271{bottom:81.236637pt;}
.yda_c00271{bottom:81.458988pt;}
.ydb_c00271{bottom:82.865253pt;}
.ydc_c00271{bottom:83.336417pt;}
.ydd_c00271{bottom:84.349456pt;}
.yd0_c00271{bottom:94.071792pt;}
.yd1_c00271{bottom:94.891993pt;}
.yd2_c00271{bottom:95.572852pt;}
.yd3_c00271{bottom:96.848371pt;}
.yd4_c00271{bottom:98.002736pt;}
.yd5_c00271{bottom:98.360960pt;}
.yd6_c00271{bottom:99.415761pt;}
.yc7_c00271{bottom:109.671724pt;}
.yc8_c00271{bottom:110.683837pt;}
.yc9_c00271{bottom:111.123884pt;}
.yca_c00271{bottom:111.764828pt;}
.ycb_c00271{bottom:112.223287pt;}
.ycc_c00271{bottom:112.709175pt;}
.ycd_c00271{bottom:114.685860pt;}
.yce_c00271{bottom:115.103777pt;}
.ycf_c00271{bottom:115.470009pt;}
.ybf_c00271{bottom:125.033341pt;}
.yc0_c00271{bottom:125.459691pt;}
.yc1_c00271{bottom:126.285049pt;}
.yc2_c00271{bottom:127.282004pt;}
.yc3_c00271{bottom:127.608827pt;}
.yc4_c00271{bottom:127.890603pt;}
.yc5_c00271{bottom:128.692747pt;}
.yc6_c00271{bottom:128.964527pt;}
.yb8_c00271{bottom:140.638452pt;}
.yb9_c00271{bottom:141.003629pt;}
.yba_c00271{bottom:142.044899pt;}
.ybb_c00271{bottom:142.313492pt;}
.ybc_c00271{bottom:144.036652pt;}
.ybd_c00271{bottom:144.438579pt;}
.ybe_c00271{bottom:145.462244pt;}
.yb0_c00271{bottom:156.478755pt;}
.yb1_c00271{bottom:156.942965pt;}
.yb2_c00271{bottom:157.446624pt;}
.yb3_c00271{bottom:157.773379pt;}
.yb4_c00271{bottom:158.537457pt;}
.yb5_c00271{bottom:159.320331pt;}
.yb6_c00271{bottom:159.607773pt;}
.yb7_c00271{bottom:159.931695pt;}
.ya9_c00271{bottom:171.842667pt;}
.yaa_c00271{bottom:173.038424pt;}
.yab_c00271{bottom:173.307659pt;}
.yac_c00271{bottom:174.066153pt;}
.yad_c00271{bottom:174.874424pt;}
.yae_c00271{bottom:175.172219pt;}
.yaf_c00271{bottom:175.527677pt;}
.ya2_c00271{bottom:187.620107pt;}
.ya3_c00271{bottom:187.890987pt;}
.ya4_c00271{bottom:188.699387pt;}
.ya5_c00271{bottom:189.059253pt;}
.ya6_c00271{bottom:189.988560pt;}
.ya7_c00271{bottom:190.212907pt;}
.ya8_c00271{bottom:190.765467pt;}
.y9b_c00271{bottom:202.502373pt;}
.y9c_c00271{bottom:203.023680pt;}
.y9d_c00271{bottom:203.293040pt;}
.y9e_c00271{bottom:204.284267pt;}
.y9f_c00271{bottom:205.037760pt;}
.ya0_c00271{bottom:205.219120pt;}
.ya1_c00271{bottom:205.703173pt;}
.y93_c00271{bottom:217.623760pt;}
.y94_c00271{bottom:218.660800pt;}
.y95_c00271{bottom:218.959307pt;}
.y96_c00271{bottom:219.953627pt;}
.y97_c00271{bottom:220.195333pt;}
.y98_c00271{bottom:220.502080pt;}
.y99_c00271{bottom:221.121067pt;}
.y9a_c00271{bottom:221.394213pt;}
.y8b_c00271{bottom:232.747840pt;}
.y8c_c00271{bottom:233.364400pt;}
.y8d_c00271{bottom:233.602027pt;}
.y8e_c00271{bottom:233.987333pt;}
.y8f_c00271{bottom:234.747387pt;}
.y90_c00271{bottom:235.581467pt;}
.y91_c00271{bottom:236.610293pt;}
.y92_c00271{bottom:236.790827pt;}
.y84_c00271{bottom:247.151120pt;}
.y85_c00271{bottom:247.869253pt;}
.y86_c00271{bottom:248.201627pt;}
.y87_c00271{bottom:249.173787pt;}
.y88_c00271{bottom:249.722480pt;}
.y89_c00271{bottom:250.889280pt;}
.y8a_c00271{bottom:251.233867pt;}
.y7a_c00271{bottom:262.038000pt;}
.y7b_c00271{bottom:262.414133pt;}
.y7c_c00271{bottom:262.979600pt;}
.y7d_c00271{bottom:264.042933pt;}
.y7e_c00271{bottom:264.521893pt;}
.y7f_c00271{bottom:265.250800pt;}
.y80_c00271{bottom:265.509573pt;}
.y81_c00271{bottom:265.958320pt;}
.y82_c00271{bottom:266.337200pt;}
.y83_c00271{bottom:267.265200pt;}
.y72_c00271{bottom:277.159547pt;}
.y73_c00271{bottom:278.196667pt;}
.y74_c00271{bottom:278.453813pt;}
.y75_c00271{bottom:278.980453pt;}
.y76_c00271{bottom:280.270507pt;}
.y77_c00271{bottom:280.603547pt;}
.y78_c00271{bottom:281.948960pt;}
.y79_c00271{bottom:282.401707pt;}
.y69_c00271{bottom:292.280080pt;}
.y6a_c00271{bottom:292.816107pt;}
.y6b_c00271{bottom:293.131280pt;}
.y6c_c00271{bottom:293.708587pt;}
.y6d_c00271{bottom:294.548400pt;}
.y6e_c00271{bottom:294.929013pt;}
.y6f_c00271{bottom:296.233600pt;}
.y70_c00271{bottom:296.845627pt;}
.y71_c00271{bottom:297.516480pt;}
.y63_c00271{bottom:308.124320pt;}
.y64_c00271{bottom:309.076933pt;}
.y65_c00271{bottom:309.615413pt;}
.y66_c00271{bottom:310.946560pt;}
.y67_c00271{bottom:311.718160pt;}
.y68_c00271{bottom:312.396853pt;}
.y5d_c00271{bottom:323.726107pt;}
.y5e_c00271{bottom:324.739947pt;}
.y5f_c00271{bottom:325.954187pt;}
.y60_c00271{bottom:326.437813pt;}
.y61_c00271{bottom:327.136027pt;}
.y62_c00271{bottom:327.839467pt;}
.y54_c00271{bottom:339.088907pt;}
.y55_c00271{bottom:339.349013pt;}
.y56_c00271{bottom:339.630960pt;}
.y57_c00271{bottom:340.376427pt;}
.y58_c00271{bottom:340.981733pt;}
.y59_c00271{bottom:341.525040pt;}
.y5a_c00271{bottom:341.794400pt;}
.y5b_c00271{bottom:342.345653pt;}
.y5c_c00271{bottom:342.620747pt;}
.y4c_c00271{bottom:354.454373pt;}
.y4d_c00271{bottom:355.390213pt;}
.y4e_c00271{bottom:355.674693pt;}
.y4f_c00271{bottom:356.404693pt;}
.y50_c00271{bottom:356.804667pt;}
.y51_c00271{bottom:357.135893pt;}
.y52_c00271{bottom:357.808293pt;}
.y53_c00271{bottom:358.186933pt;}
.y42_c00271{bottom:369.574693pt;}
.y43_c00271{bottom:370.055547pt;}
.y44_c00271{bottom:370.300507pt;}
.y45_c00271{bottom:371.030133pt;}
.y46_c00271{bottom:371.508533pt;}
.y47_c00271{bottom:371.964720pt;}
.y48_c00271{bottom:372.055920pt;}
.y49_c00271{bottom:372.412667pt;}
.y4a_c00271{bottom:372.640693pt;}
.y4b_c00271{bottom:372.936640pt;}
.y3a_c00271{bottom:384.699467pt;}
.y3b_c00271{bottom:385.861520pt;}
.y3c_c00271{bottom:386.299227pt;}
.y3d_c00271{bottom:386.534187pt;}
.y3e_c00271{bottom:387.534160pt;}
.y3f_c00271{bottom:387.816267pt;}
.y40_c00271{bottom:387.982667pt;}
.y41_c00271{bottom:388.262907pt;}
.y30_c00271{bottom:399.582933pt;}
.y31_c00271{bottom:399.908080pt;}
.y32_c00271{bottom:400.227733pt;}
.y33_c00271{bottom:401.050560pt;}
.y34_c00271{bottom:401.496720pt;}
.y35_c00271{bottom:402.316400pt;}
.y36_c00271{bottom:402.905120pt;}
.y37_c00271{bottom:403.226960pt;}
.y38_c00271{bottom:403.623387pt;}
.y39_c00271{bottom:403.872293pt;}
.y27_c00271{bottom:414.468533pt;}
.y28_c00271{bottom:415.121040pt;}
.y29_c00271{bottom:416.006373pt;}
.y2a_c00271{bottom:417.011200pt;}
.y2b_c00271{bottom:417.224427pt;}
.y2c_c00271{bottom:417.715307pt;}
.y2d_c00271{bottom:418.082853pt;}
.y2e_c00271{bottom:418.834853pt;}
.y2f_c00271{bottom:419.098800pt;}
.y20_c00271{bottom:429.831387pt;}
.y21_c00271{bottom:430.794507pt;}
.y22_c00271{bottom:431.125840pt;}
.y23_c00271{bottom:431.527813pt;}
.y24_c00271{bottom:431.920667pt;}
.y25_c00271{bottom:432.358000pt;}
.y26_c00271{bottom:432.523653pt;}
.y1a_c00271{bottom:444.234880pt;}
.y1b_c00271{bottom:444.719573pt;}
.y1c_c00271{bottom:445.630613pt;}
.y1d_c00271{bottom:445.959520pt;}
.y1e_c00271{bottom:446.953280pt;}
.y1f_c00271{bottom:448.146640pt;}
.y13_c00271{bottom:459.121387pt;}
.y14_c00271{bottom:460.573013pt;}
.y15_c00271{bottom:461.765653pt;}
.y16_c00271{bottom:462.676560pt;}
.y17_c00271{bottom:463.041600pt;}
.y18_c00271{bottom:464.200560pt;}
.y19_c00271{bottom:464.664320pt;}
.ya_c00271{bottom:474.962373pt;}
.yb_c00271{bottom:475.748373pt;}
.yc_c00271{bottom:476.176747pt;}
.yd_c00271{bottom:476.420160pt;}
.ye_c00271{bottom:477.572133pt;}
.yf_c00271{bottom:477.967573pt;}
.y10_c00271{bottom:478.457547pt;}
.y11_c00271{bottom:479.580907pt;}
.y12_c00271{bottom:480.003707pt;}
.y3_c00271{bottom:490.084000pt;}
.y4_c00271{bottom:490.867493pt;}
.y5_c00271{bottom:491.218027pt;}
.y6_c00271{bottom:491.616053pt;}
.y7_c00271{bottom:492.824747pt;}
.y8_c00271{bottom:493.560907pt;}
.y9_c00271{bottom:494.707493pt;}
.y2_c00271{bottom:506.753333pt;}
.y1_c00271{bottom:534.960000pt;}
.h2_c00271{height:14.933333pt;}
.he_c00271{height:49.476559pt;}
.hb_c00271{height:52.277119pt;}
.h11_c00271{height:53.207687pt;}
.hd_c00271{height:53.210639pt;}
.h10_c00271{height:54.141155pt;}
.h8_c00271{height:54.144159pt;}
.hf_c00271{height:55.074623pt;}
.h7_c00271{height:55.077679pt;}
.h12_c00271{height:56.008091pt;}
.h9_c00271{height:56.011199pt;}
.h4_c00271{height:57.878239pt;}
.h13_c00271{height:58.808496pt;}
.h5_c00271{height:58.811759pt;}
.h3_c00271{height:59.733333pt;}
.h6_c00271{height:59.745279pt;}
.h15_c00271{height:60.675432pt;}
.ha_c00271{height:61.612319pt;}
.h14_c00271{height:62.542369pt;}
.hc_c00271{height:64.412879pt;}
.h16_c00271{height:65.342773pt;}
.h1_c00271{height:550.000000pt;}
.h0_c00271{height:550.266667pt;}
.w0_c00271{width:319.200000pt;}
.w1_c00271{width:319.333333pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:29.448000pt;}
.x15_c00271{left:30.442347pt;}
.x39_c00271{left:31.612373pt;}
.x51_c00271{left:32.641707pt;}
.x62_c00271{left:33.701893pt;}
.x6d_c00271{left:34.745137pt;}
.x82_c00271{left:35.679640pt;}
.x27_c00271{left:49.796267pt;}
.x6c_c00271{left:52.809607pt;}
.x63_c00271{left:54.582160pt;}
.x16_c00271{left:57.344747pt;}
.x6e_c00271{left:61.393591pt;}
.x6a_c00271{left:63.483133pt;}
.x32_c00271{left:65.439333pt;}
.x20_c00271{left:66.680213pt;}
.x3_c00271{left:68.622667pt;}
.x40_c00271{left:70.486933pt;}
.x5a_c00271{left:71.617200pt;}
.x49_c00271{left:72.633413pt;}
.x76_c00271{left:74.091427pt;}
.x52_c00271{left:77.520827pt;}
.x71_c00271{left:78.756391pt;}
.x4e_c00271{left:81.738293pt;}
.x33_c00271{left:82.956107pt;}
.x7f_c00271{left:84.193244pt;}
.x4_c00271{left:86.149333pt;}
.x78_c00271{left:88.563031pt;}
.x9_c00271{left:90.454427pt;}
.xf_c00271{left:92.914027pt;}
.x3a_c00271{left:94.010613pt;}
.x45_c00271{left:95.710720pt;}
.x72_c00271{left:97.894441pt;}
.x4a_c00271{left:100.098187pt;}
.x7d_c00271{left:101.495048pt;}
.xa_c00271{left:102.625093pt;}
.x1b_c00271{left:104.255227pt;}
.x5_c00271{left:106.050667pt;}
.x17_c00271{left:107.965440pt;}
.x47_c00271{left:110.392293pt;}
.x3b_c00271{left:112.969840pt;}
.x21_c00271{left:115.882187pt;}
.x28_c00271{left:116.990960pt;}
.x4f_c00271{left:119.060213pt;}
.x66_c00271{left:119.968000pt;}
.x5d_c00271{left:122.337467pt;}
.x41_c00271{left:123.766667pt;}
.x18_c00271{left:126.211493pt;}
.x53_c00271{left:128.153147pt;}
.x1c_c00271{left:129.758800pt;}
.x80_c00271{left:131.661244pt;}
.x34_c00271{left:135.043680pt;}
.x2e_c00271{left:137.860880pt;}
.x4b_c00271{left:140.088053pt;}
.x29_c00271{left:143.233867pt;}
.x10_c00271{left:144.742907pt;}
.x73_c00271{left:145.697568pt;}
.x1_c00271{left:147.840000pt;}
.x79_c00271{left:148.791971pt;}
.x81_c00271{left:149.731911pt;}
.x54_c00271{left:150.967360pt;}
.x2f_c00271{left:153.543787pt;}
.x83_c00271{left:155.992893pt;}
.x4c_c00271{left:158.185013pt;}
.xb_c00271{left:160.223760pt;}
.x3c_c00271{left:161.674720pt;}
.x6b_c00271{left:163.160833pt;}
.x67_c00271{left:164.585333pt;}
.x6_c00271{left:166.485333pt;}
.x35_c00271{left:169.167760pt;}
.x22_c00271{left:171.725760pt;}
.x57_c00271{left:175.435680pt;}
.xc_c00271{left:179.995760pt;}
.x19_c00271{left:181.435040pt;}
.x11_c00271{left:184.352533pt;}
.x55_c00271{left:185.678667pt;}
.x3d_c00271{left:188.342720pt;}
.x1d_c00271{left:190.975387pt;}
.x85_c00271{left:191.943439pt;}
.x50_c00271{left:196.346667pt;}
.x56_c00271{left:198.017093pt;}
.x12_c00271{left:200.203573pt;}
.x36_c00271{left:201.714320pt;}
.x7_c00271{left:203.293333pt;}
.xd_c00271{left:204.494427pt;}
.x42_c00271{left:205.807173pt;}
.x37_c00271{left:208.208427pt;}
.x23_c00271{left:210.866000pt;}
.x68_c00271{left:212.130667pt;}
.x6f_c00271{left:213.332175pt;}
.x5f_c00271{left:214.508640pt;}
.x64_c00271{left:215.883387pt;}
.x7a_c00271{left:219.117723pt;}
.x30_c00271{left:220.215787pt;}
.x77_c00271{left:222.242696pt;}
.x1e_c00271{left:224.580080pt;}
.x2a_c00271{left:226.058827pt;}
.x60_c00271{left:227.444853pt;}
.x69_c00271{left:229.648000pt;}
.x24_c00271{left:231.310827pt;}
.x38_c00271{left:233.715493pt;}
.x84_c00271{left:234.618219pt;}
.x7e_c00271{left:236.148759pt;}
.x1f_c00271{left:237.331200pt;}
.x31_c00271{left:238.989653pt;}
.x58_c00271{left:240.244933pt;}
.x7b_c00271{left:242.675188pt;}
.x2b_c00271{left:244.951947pt;}
.x1a_c00271{left:247.705680pt;}
.x4d_c00271{left:249.413840pt;}
.x13_c00271{left:250.615227pt;}
.x74_c00271{left:252.739976pt;}
.x3e_c00271{left:255.264080pt;}
.x48_c00271{left:256.800560pt;}
.x59_c00271{left:259.408373pt;}
.x8_c00271{left:260.622667pt;}
.x61_c00271{left:262.051680pt;}
.x70_c00271{left:263.498369pt;}
.x43_c00271{left:264.444880pt;}
.x5e_c00271{left:266.373173pt;}
.x2c_c00271{left:268.308027pt;}
.x14_c00271{left:270.802027pt;}
.x25_c00271{left:273.112507pt;}
.x5b_c00271{left:274.528107pt;}
.x65_c00271{left:275.670427pt;}
.x86_c00271{left:278.393169pt;}
.x3f_c00271{left:280.531947pt;}
.xe_c00271{left:281.802427pt;}
.x2d_c00271{left:282.954240pt;}
.x44_c00271{left:284.135253pt;}
.x5c_c00271{left:285.822347pt;}
.x75_c00271{left:286.784485pt;}
.x26_c00271{left:287.777093pt;}
.x46_c00271{left:289.435547pt;}
.x7c_c00271{left:293.321937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00272 {
    display:none;
  }
  .loading-indicator_c00272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00272 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00272 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00272" -> "#page-container .classname_c00272")
 */
.pf_c00272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00272 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00272 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00272 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00272 {overflow:visible;}
  }
}
.c_c00272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00272 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00272:after { /* webkit #35443 */
  content: '';
}
.t_c00272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00272 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00272 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00272 { /* info for Javascript */
  display:none;
}
.l_c00272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00272:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00272 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00272.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00272{transform:matrix(0.041370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041370,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.112880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112880,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.113305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113305,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.145610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145610,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.148145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148145,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156640,0.000000,0.000000,0.250000,0,0);}
.ma0_c00272{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.159855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159855,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);}
.m4a_c00272{transform:matrix(0.161565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161565,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.ma7_c00272{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);}
.mb9_c00272{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);}
.m69_c00272{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174780,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175135,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.mc7_c00272{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.mcc_c00272{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.mde_c00272{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md8_c00272{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183255,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00272{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00272{transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);}
.mbe_c00272{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.md4_c00272{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.mcb_c00272{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.md2_c00272{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.mbb_c00272{transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.mc4_c00272{transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194465,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00272{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);}
.mb8_c00272{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);}
.me0_c00272{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);}
.mc5_c00272{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.mc1_c00272{transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.mda_c00272{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.mba_c00272{transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.mc2_c00272{transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206755,0.000000,0.000000,0.250000,0,0);}
.mb2_c00272{transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);}
.mbf_c00272{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.mb6_c00272{transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00272{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.mc8_c00272{transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);}
.me2_c00272{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);}
.mdf_c00272{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);}
.m49_c00272{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.md6_c00272{transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);}
.md9_c00272{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.m6a_c00272{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.m73_c00272{transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224110,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);}
.m87_c00272{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.mb1_c00272{transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);}
.md3_c00272{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.mdb_c00272{transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.mce_c00272{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.me1_c00272{transform:matrix(0.228905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228905,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);}
.md5_c00272{transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);}
.mbc_c00272{transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.230655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230655,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.mdc_c00272{transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.mca_c00272{transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00272{transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243845,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.mb4_c00272{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.mbd_c00272{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);}
.mc0_c00272{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);}
.mb3_c00272{transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);}
.md0_c00272{transform:matrix(0.387260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387260,0.000000,0.000000,0.250000,0,0);}
.md7_c00272{transform:matrix(0.393205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393205,0.000000,0.000000,0.250000,0,0);}
.md1_c00272{transform:matrix(0.460525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460525,0.000000,0.000000,0.250000,0,0);}
.mcf_c00272{transform:matrix(0.524670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524670,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.571735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571735,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:0.000000px;}
.fc0_c00272{color:transparent;}
.fsb_c00272{font-size:57.750000px;}
.fs7_c00272{font-size:58.800000px;}
.fs6_c00272{font-size:59.850000px;}
.fs4_c00272{font-size:60.900000px;}
.fs8_c00272{font-size:61.950000px;}
.fsa_c00272{font-size:63.000000px;}
.fs5_c00272{font-size:64.050000px;}
.fs2_c00272{font-size:65.100000px;}
.fs9_c00272{font-size:66.150000px;}
.fs3_c00272{font-size:68.250000px;}
.fs1_c00272{font-size:70.350000px;}
.fs0_c00272{font-size:93.450000px;}
.y0_c00272{bottom:0.000000px;}
.y6a_c00272{bottom:28.260000px;}
.y69_c00272{bottom:29.157000px;}
.y68_c00272{bottom:29.547000px;}
.y67_c00272{bottom:31.033500px;}
.y66_c00272{bottom:31.359000px;}
.y65_c00272{bottom:32.133000px;}
.y64_c00272{bottom:45.079500px;}
.y63_c00272{bottom:45.312000px;}
.y62_c00272{bottom:46.044000px;}
.y61_c00272{bottom:46.807500px;}
.y60_c00272{bottom:47.115000px;}
.y5f_c00272{bottom:47.788500px;}
.y5e_c00272{bottom:64.347000px;}
.y5d_c00272{bottom:80.359500px;}
.y5c_c00272{bottom:81.202500px;}
.y5b_c00272{bottom:82.041000px;}
.y5a_c00272{bottom:82.431000px;}
.y59_c00272{bottom:82.690500px;}
.y58_c00272{bottom:83.539500px;}
.y57_c00272{bottom:83.971500px;}
.y56_c00272{bottom:97.554000px;}
.y55_c00272{bottom:98.352000px;}
.y54_c00272{bottom:98.886000px;}
.y53_c00272{bottom:99.064500px;}
.y52_c00272{bottom:99.475500px;}
.y51_c00272{bottom:100.063500px;}
.y50_c00272{bottom:100.359000px;}
.y4f_c00272{bottom:101.526000px;}
.y4e_c00272{bottom:113.556000px;}
.y4d_c00272{bottom:114.081000px;}
.y4c_c00272{bottom:114.426000px;}
.y4b_c00272{bottom:114.613500px;}
.y4a_c00272{bottom:115.446000px;}
.y49_c00272{bottom:116.043000px;}
.y48_c00272{bottom:116.658000px;}
.y47_c00272{bottom:132.493500px;}
.y46_c00272{bottom:148.851000px;}
.y45_c00272{bottom:149.097000px;}
.y44_c00272{bottom:149.266500px;}
.y43_c00272{bottom:150.076500px;}
.y42_c00272{bottom:150.387000px;}
.y41_c00272{bottom:151.351500px;}
.y40_c00272{bottom:152.557500px;}
.y3f_c00272{bottom:165.064500px;}
.y3e_c00272{bottom:181.591500px;}
.y3d_c00272{bottom:198.930000px;}
.y3c_c00272{bottom:199.164000px;}
.y3b_c00272{bottom:199.431000px;}
.y3a_c00272{bottom:200.517000px;}
.y39_c00272{bottom:200.694000px;}
.y38_c00272{bottom:201.628500px;}
.y37_c00272{bottom:201.855000px;}
.y36_c00272{bottom:202.504500px;}
.y35_c00272{bottom:215.836500px;}
.y34_c00272{bottom:216.060000px;}
.y33_c00272{bottom:216.268500px;}
.y32_c00272{bottom:216.819000px;}
.y31_c00272{bottom:217.218000px;}
.y30_c00272{bottom:217.890000px;}
.y2f_c00272{bottom:218.433000px;}
.y2e_c00272{bottom:232.642500px;}
.y2d_c00272{bottom:233.703000px;}
.y2c_c00272{bottom:234.267000px;}
.y2b_c00272{bottom:234.646500px;}
.y2a_c00272{bottom:235.566000px;}
.y29_c00272{bottom:235.984500px;}
.y28_c00272{bottom:250.305000px;}
.y27_c00272{bottom:250.851000px;}
.y26_c00272{bottom:251.229000px;}
.y25_c00272{bottom:252.501000px;}
.y24_c00272{bottom:253.189500px;}
.y23_c00272{bottom:253.374000px;}
.y22_c00272{bottom:254.076000px;}
.y21_c00272{bottom:267.661500px;}
.y20_c00272{bottom:268.161000px;}
.y1f_c00272{bottom:268.381500px;}
.y1e_c00272{bottom:269.005500px;}
.y1d_c00272{bottom:269.223000px;}
.y1c_c00272{bottom:269.482500px;}
.y1b_c00272{bottom:269.734500px;}
.y1a_c00272{bottom:286.947000px;}
.y19_c00272{bottom:303.744000px;}
.y18_c00272{bottom:320.962500px;}
.y17_c00272{bottom:337.924500px;}
.y16_c00272{bottom:353.194500px;}
.y15_c00272{bottom:369.102000px;}
.y14_c00272{bottom:386.461500px;}
.y13_c00272{bottom:403.198500px;}
.y12_c00272{bottom:420.369000px;}
.y11_c00272{bottom:437.427000px;}
.y10_c00272{bottom:437.733000px;}
.yf_c00272{bottom:438.148500px;}
.ye_c00272{bottom:438.354000px;}
.yd_c00272{bottom:438.654000px;}
.yc_c00272{bottom:438.793500px;}
.yb_c00272{bottom:439.693500px;}
.ya_c00272{bottom:439.906500px;}
.y9_c00272{bottom:440.373000px;}
.y8_c00272{bottom:454.230000px;}
.y7_c00272{bottom:471.540000px;}
.y6_c00272{bottom:488.908500px;}
.y5_c00272{bottom:506.643000px;}
.y4_c00272{bottom:523.057500px;}
.y3_c00272{bottom:540.931500px;}
.y2_c00272{bottom:557.550000px;}
.y1_c00272{bottom:569.958000px;}
.hd_c00272{height:57.750000px;}
.h9_c00272{height:58.800000px;}
.h8_c00272{height:59.850000px;}
.h6_c00272{height:60.900000px;}
.ha_c00272{height:61.950000px;}
.hc_c00272{height:63.000000px;}
.h7_c00272{height:64.050000px;}
.h4_c00272{height:65.100000px;}
.hb_c00272{height:66.150000px;}
.h5_c00272{height:68.250000px;}
.h3_c00272{height:70.350000px;}
.h2_c00272{height:93.450000px;}
.h1_c00272{height:618.750000px;}
.h0_c00272{height:619.050000px;}
.w0_c00272{width:359.100000px;}
.w1_c00272{width:359.250000px;}
.x0_c00272{left:0.000000px;}
.x51_c00272{left:24.300000px;}
.x1e_c00272{left:25.650000px;}
.x3_c00272{left:27.000000px;}
.xa_c00272{left:30.780000px;}
.x17_c00272{left:32.400000px;}
.x12_c00272{left:34.560000px;}
.x52_c00272{left:40.230000px;}
.xb_c00272{left:43.740000px;}
.x67_c00272{left:46.168500px;}
.x59_c00272{left:48.600000px;}
.x18_c00272{left:49.950000px;}
.x56_c00272{left:52.380000px;}
.x4d_c00272{left:55.350000px;}
.x81_c00272{left:60.828000px;}
.x43_c00272{left:61.830000px;}
.x33_c00272{left:64.260000px;}
.x2d_c00272{left:67.993500px;}
.x48_c00272{left:70.200000px;}
.x63_c00272{left:72.187500px;}
.x44_c00272{left:74.250000px;}
.x68_c00272{left:75.328500px;}
.x1f_c00272{left:76.410000px;}
.x3d_c00272{left:79.650000px;}
.x4_c00272{left:81.540000px;}
.x49_c00272{left:83.430000px;}
.x13_c00272{left:85.590000px;}
.x2e_c00272{left:87.381000px;}
.x64_c00272{left:88.402500px;}
.x19_c00272{left:92.340000px;}
.x45_c00272{left:93.690000px;}
.x74_c00272{left:95.038500px;}
.x5_c00272{left:97.740000px;}
.x24_c00272{left:99.630000px;}
.xc_c00272{left:100.980000px;}
.x79_c00272{left:103.495500px;}
.x20_c00272{left:105.030000px;}
.x3e_c00272{left:106.650000px;}
.x6d_c00272{left:109.078500px;}
.x70_c00272{left:111.613500px;}
.x39_c00272{left:114.210000px;}
.x69_c00272{left:117.448500px;}
.x82_c00272{left:118.675500px;}
.x75_c00272{left:123.388500px;}
.x7f_c00272{left:125.173500px;}
.x3f_c00272{left:126.630000px;}
.xd_c00272{left:130.140000px;}
.x34_c00272{left:131.760000px;}
.x25_c00272{left:133.110000px;}
.x3a_c00272{left:135.810000px;}
.x35_c00272{left:144.450000px;}
.x4a_c00272{left:145.800000px;}
.x6_c00272{left:148.230000px;}
.x1a_c00272{left:151.470000px;}
.x7b_c00272{left:153.535500px;}
.xe_c00272{left:155.250000px;}
.x40_c00272{left:157.410000px;}
.x1_c00272{left:158.490000px;}
.x29_c00272{left:160.380000px;}
.x5c_c00272{left:161.637000px;}
.x4e_c00272{left:163.350000px;}
.x53_c00272{left:165.240000px;}
.x65_c00272{left:167.790000px;}
.x7_c00272{left:169.290000px;}
.x7d_c00272{left:173.608500px;}
.x26_c00272{left:177.120000px;}
.x1b_c00272{left:179.010000px;}
.x6e_c00272{left:180.088500px;}
.x2f_c00272{left:181.857000px;}
.x5d_c00272{left:183.756000px;}
.x3b_c00272{left:184.950000px;}
.x62_c00272{left:186.490500px;}
.x7a_c00272{left:189.739500px;}
.x2a_c00272{left:195.480000px;}
.x21_c00272{left:197.100000px;}
.x57_c00272{left:198.450000px;}
.x36_c00272{left:200.070000px;}
.x14_c00272{left:201.150000px;}
.x71_c00272{left:202.639500px;}
.x54_c00272{left:204.120000px;}
.x46_c00272{left:207.090000px;}
.x30_c00272{left:209.127000px;}
.x77_c00272{left:210.754500px;}
.xf_c00272{left:212.760000px;}
.x6a_c00272{left:213.838500px;}
.x5f_c00272{left:216.348000px;}
.x83_c00272{left:217.393500px;}
.x41_c00272{left:221.670000px;}
.x8_c00272{left:223.290000px;}
.x76_c00272{left:224.368500px;}
.x31_c00272{left:227.752500px;}
.x47_c00272{left:229.500000px;}
.x7e_c00272{left:232.198500px;}
.x5e_c00272{left:233.674500px;}
.x6b_c00272{left:234.898500px;}
.x58_c00272{left:236.250000px;}
.x1c_c00272{left:240.300000px;}
.x60_c00272{left:241.533000px;}
.x5a_c00272{left:244.620000px;}
.x15_c00272{left:245.700000px;}
.x27_c00272{left:247.050000px;}
.x42_c00272{left:248.670000px;}
.x2b_c00272{left:253.530000px;}
.x6c_c00272{left:254.878500px;}
.x37_c00272{left:256.770000px;}
.x22_c00272{left:259.200000px;}
.x72_c00272{left:260.479500px;}
.x4f_c00272{left:263.250000px;}
.x66_c00272{left:264.430500px;}
.x16_c00272{left:266.220000px;}
.x28_c00272{left:268.650000px;}
.x9_c00272{left:271.890000px;}
.x80_c00272{left:274.722000px;}
.x23_c00272{left:277.290000px;}
.x50_c00272{left:278.370000px;}
.x55_c00272{left:281.070000px;}
.x4b_c00272{left:284.580000px;}
.x2_c00272{left:285.660000px;}
.x73_c00272{left:290.148000px;}
.x10_c00272{left:291.330000px;}
.x32_c00272{left:293.407500px;}
.x5b_c00272{left:298.080000px;}
.x4c_c00272{left:300.240000px;}
.x2c_c00272{left:302.130000px;}
.x3c_c00272{left:303.750000px;}
.x78_c00272{left:306.844500px;}
.x11_c00272{left:309.420000px;}
.x61_c00272{left:311.763000px;}
.x7c_c00272{left:312.772500px;}
.x1d_c00272{left:315.090000px;}
.x6f_c00272{left:316.438500px;}
.x38_c00272{left:319.410000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.fsb_c00272{font-size:51.333333pt;}
.fs7_c00272{font-size:52.266667pt;}
.fs6_c00272{font-size:53.200000pt;}
.fs4_c00272{font-size:54.133333pt;}
.fs8_c00272{font-size:55.066667pt;}
.fsa_c00272{font-size:56.000000pt;}
.fs5_c00272{font-size:56.933333pt;}
.fs2_c00272{font-size:57.866667pt;}
.fs9_c00272{font-size:58.800000pt;}
.fs3_c00272{font-size:60.666667pt;}
.fs1_c00272{font-size:62.533333pt;}
.fs0_c00272{font-size:83.066667pt;}
.y0_c00272{bottom:0.000000pt;}
.y6a_c00272{bottom:25.120000pt;}
.y69_c00272{bottom:25.917333pt;}
.y68_c00272{bottom:26.264000pt;}
.y67_c00272{bottom:27.585333pt;}
.y66_c00272{bottom:27.874667pt;}
.y65_c00272{bottom:28.562667pt;}
.y64_c00272{bottom:40.070667pt;}
.y63_c00272{bottom:40.277333pt;}
.y62_c00272{bottom:40.928000pt;}
.y61_c00272{bottom:41.606667pt;}
.y60_c00272{bottom:41.880000pt;}
.y5f_c00272{bottom:42.478667pt;}
.y5e_c00272{bottom:57.197333pt;}
.y5d_c00272{bottom:71.430667pt;}
.y5c_c00272{bottom:72.180000pt;}
.y5b_c00272{bottom:72.925333pt;}
.y5a_c00272{bottom:73.272000pt;}
.y59_c00272{bottom:73.502667pt;}
.y58_c00272{bottom:74.257333pt;}
.y57_c00272{bottom:74.641333pt;}
.y56_c00272{bottom:86.714667pt;}
.y55_c00272{bottom:87.424000pt;}
.y54_c00272{bottom:87.898667pt;}
.y53_c00272{bottom:88.057333pt;}
.y52_c00272{bottom:88.422667pt;}
.y51_c00272{bottom:88.945333pt;}
.y50_c00272{bottom:89.208000pt;}
.y4f_c00272{bottom:90.245333pt;}
.y4e_c00272{bottom:100.938667pt;}
.y4d_c00272{bottom:101.405333pt;}
.y4c_c00272{bottom:101.712000pt;}
.y4b_c00272{bottom:101.878667pt;}
.y4a_c00272{bottom:102.618667pt;}
.y49_c00272{bottom:103.149333pt;}
.y48_c00272{bottom:103.696000pt;}
.y47_c00272{bottom:117.772000pt;}
.y46_c00272{bottom:132.312000pt;}
.y45_c00272{bottom:132.530667pt;}
.y44_c00272{bottom:132.681333pt;}
.y43_c00272{bottom:133.401333pt;}
.y42_c00272{bottom:133.677333pt;}
.y41_c00272{bottom:134.534667pt;}
.y40_c00272{bottom:135.606667pt;}
.y3f_c00272{bottom:146.724000pt;}
.y3e_c00272{bottom:161.414667pt;}
.y3d_c00272{bottom:176.826667pt;}
.y3c_c00272{bottom:177.034667pt;}
.y3b_c00272{bottom:177.272000pt;}
.y3a_c00272{bottom:178.237333pt;}
.y39_c00272{bottom:178.394667pt;}
.y38_c00272{bottom:179.225333pt;}
.y37_c00272{bottom:179.426667pt;}
.y36_c00272{bottom:180.004000pt;}
.y35_c00272{bottom:191.854667pt;}
.y34_c00272{bottom:192.053333pt;}
.y33_c00272{bottom:192.238667pt;}
.y32_c00272{bottom:192.728000pt;}
.y31_c00272{bottom:193.082667pt;}
.y30_c00272{bottom:193.680000pt;}
.y2f_c00272{bottom:194.162667pt;}
.y2e_c00272{bottom:206.793333pt;}
.y2d_c00272{bottom:207.736000pt;}
.y2c_c00272{bottom:208.237333pt;}
.y2b_c00272{bottom:208.574667pt;}
.y2a_c00272{bottom:209.392000pt;}
.y29_c00272{bottom:209.764000pt;}
.y28_c00272{bottom:222.493333pt;}
.y27_c00272{bottom:222.978667pt;}
.y26_c00272{bottom:223.314667pt;}
.y25_c00272{bottom:224.445333pt;}
.y24_c00272{bottom:225.057333pt;}
.y23_c00272{bottom:225.221333pt;}
.y22_c00272{bottom:225.845333pt;}
.y21_c00272{bottom:237.921333pt;}
.y20_c00272{bottom:238.365333pt;}
.y1f_c00272{bottom:238.561333pt;}
.y1e_c00272{bottom:239.116000pt;}
.y1d_c00272{bottom:239.309333pt;}
.y1c_c00272{bottom:239.540000pt;}
.y1b_c00272{bottom:239.764000pt;}
.y1a_c00272{bottom:255.064000pt;}
.y19_c00272{bottom:269.994667pt;}
.y18_c00272{bottom:285.300000pt;}
.y17_c00272{bottom:300.377333pt;}
.y16_c00272{bottom:313.950667pt;}
.y15_c00272{bottom:328.090667pt;}
.y14_c00272{bottom:343.521333pt;}
.y13_c00272{bottom:358.398667pt;}
.y12_c00272{bottom:373.661333pt;}
.y11_c00272{bottom:388.824000pt;}
.y10_c00272{bottom:389.096000pt;}
.yf_c00272{bottom:389.465333pt;}
.ye_c00272{bottom:389.648000pt;}
.yd_c00272{bottom:389.914667pt;}
.yc_c00272{bottom:390.038667pt;}
.yb_c00272{bottom:390.838667pt;}
.ya_c00272{bottom:391.028000pt;}
.y9_c00272{bottom:391.442667pt;}
.y8_c00272{bottom:403.760000pt;}
.y7_c00272{bottom:419.146667pt;}
.y6_c00272{bottom:434.585333pt;}
.y5_c00272{bottom:450.349333pt;}
.y4_c00272{bottom:464.940000pt;}
.y3_c00272{bottom:480.828000pt;}
.y2_c00272{bottom:495.600000pt;}
.y1_c00272{bottom:506.629333pt;}
.hd_c00272{height:51.333333pt;}
.h9_c00272{height:52.266667pt;}
.h8_c00272{height:53.200000pt;}
.h6_c00272{height:54.133333pt;}
.ha_c00272{height:55.066667pt;}
.hc_c00272{height:56.000000pt;}
.h7_c00272{height:56.933333pt;}
.h4_c00272{height:57.866667pt;}
.hb_c00272{height:58.800000pt;}
.h5_c00272{height:60.666667pt;}
.h3_c00272{height:62.533333pt;}
.h2_c00272{height:83.066667pt;}
.h1_c00272{height:550.000000pt;}
.h0_c00272{height:550.266667pt;}
.w0_c00272{width:319.200000pt;}
.w1_c00272{width:319.333333pt;}
.x0_c00272{left:0.000000pt;}
.x51_c00272{left:21.600000pt;}
.x1e_c00272{left:22.800000pt;}
.x3_c00272{left:24.000000pt;}
.xa_c00272{left:27.360000pt;}
.x17_c00272{left:28.800000pt;}
.x12_c00272{left:30.720000pt;}
.x52_c00272{left:35.760000pt;}
.xb_c00272{left:38.880000pt;}
.x67_c00272{left:41.038667pt;}
.x59_c00272{left:43.200000pt;}
.x18_c00272{left:44.400000pt;}
.x56_c00272{left:46.560000pt;}
.x4d_c00272{left:49.200000pt;}
.x81_c00272{left:54.069333pt;}
.x43_c00272{left:54.960000pt;}
.x33_c00272{left:57.120000pt;}
.x2d_c00272{left:60.438667pt;}
.x48_c00272{left:62.400000pt;}
.x63_c00272{left:64.166667pt;}
.x44_c00272{left:66.000000pt;}
.x68_c00272{left:66.958667pt;}
.x1f_c00272{left:67.920000pt;}
.x3d_c00272{left:70.800000pt;}
.x4_c00272{left:72.480000pt;}
.x49_c00272{left:74.160000pt;}
.x13_c00272{left:76.080000pt;}
.x2e_c00272{left:77.672000pt;}
.x64_c00272{left:78.580000pt;}
.x19_c00272{left:82.080000pt;}
.x45_c00272{left:83.280000pt;}
.x74_c00272{left:84.478667pt;}
.x5_c00272{left:86.880000pt;}
.x24_c00272{left:88.560000pt;}
.xc_c00272{left:89.760000pt;}
.x79_c00272{left:91.996000pt;}
.x20_c00272{left:93.360000pt;}
.x3e_c00272{left:94.800000pt;}
.x6d_c00272{left:96.958667pt;}
.x70_c00272{left:99.212000pt;}
.x39_c00272{left:101.520000pt;}
.x69_c00272{left:104.398667pt;}
.x82_c00272{left:105.489333pt;}
.x75_c00272{left:109.678667pt;}
.x7f_c00272{left:111.265333pt;}
.x3f_c00272{left:112.560000pt;}
.xd_c00272{left:115.680000pt;}
.x34_c00272{left:117.120000pt;}
.x25_c00272{left:118.320000pt;}
.x3a_c00272{left:120.720000pt;}
.x35_c00272{left:128.400000pt;}
.x4a_c00272{left:129.600000pt;}
.x6_c00272{left:131.760000pt;}
.x1a_c00272{left:134.640000pt;}
.x7b_c00272{left:136.476000pt;}
.xe_c00272{left:138.000000pt;}
.x40_c00272{left:139.920000pt;}
.x1_c00272{left:140.880000pt;}
.x29_c00272{left:142.560000pt;}
.x5c_c00272{left:143.677333pt;}
.x4e_c00272{left:145.200000pt;}
.x53_c00272{left:146.880000pt;}
.x65_c00272{left:149.146667pt;}
.x7_c00272{left:150.480000pt;}
.x7d_c00272{left:154.318667pt;}
.x26_c00272{left:157.440000pt;}
.x1b_c00272{left:159.120000pt;}
.x6e_c00272{left:160.078667pt;}
.x2f_c00272{left:161.650667pt;}
.x5d_c00272{left:163.338667pt;}
.x3b_c00272{left:164.400000pt;}
.x62_c00272{left:165.769333pt;}
.x7a_c00272{left:168.657333pt;}
.x2a_c00272{left:173.760000pt;}
.x21_c00272{left:175.200000pt;}
.x57_c00272{left:176.400000pt;}
.x36_c00272{left:177.840000pt;}
.x14_c00272{left:178.800000pt;}
.x71_c00272{left:180.124000pt;}
.x54_c00272{left:181.440000pt;}
.x46_c00272{left:184.080000pt;}
.x30_c00272{left:185.890667pt;}
.x77_c00272{left:187.337333pt;}
.xf_c00272{left:189.120000pt;}
.x6a_c00272{left:190.078667pt;}
.x5f_c00272{left:192.309333pt;}
.x83_c00272{left:193.238667pt;}
.x41_c00272{left:197.040000pt;}
.x8_c00272{left:198.480000pt;}
.x76_c00272{left:199.438667pt;}
.x31_c00272{left:202.446667pt;}
.x47_c00272{left:204.000000pt;}
.x7e_c00272{left:206.398667pt;}
.x5e_c00272{left:207.710667pt;}
.x6b_c00272{left:208.798667pt;}
.x58_c00272{left:210.000000pt;}
.x1c_c00272{left:213.600000pt;}
.x60_c00272{left:214.696000pt;}
.x5a_c00272{left:217.440000pt;}
.x15_c00272{left:218.400000pt;}
.x27_c00272{left:219.600000pt;}
.x42_c00272{left:221.040000pt;}
.x2b_c00272{left:225.360000pt;}
.x6c_c00272{left:226.558667pt;}
.x37_c00272{left:228.240000pt;}
.x22_c00272{left:230.400000pt;}
.x72_c00272{left:231.537333pt;}
.x4f_c00272{left:234.000000pt;}
.x66_c00272{left:235.049333pt;}
.x16_c00272{left:236.640000pt;}
.x28_c00272{left:238.800000pt;}
.x9_c00272{left:241.680000pt;}
.x80_c00272{left:244.197333pt;}
.x23_c00272{left:246.480000pt;}
.x50_c00272{left:247.440000pt;}
.x55_c00272{left:249.840000pt;}
.x4b_c00272{left:252.960000pt;}
.x2_c00272{left:253.920000pt;}
.x73_c00272{left:257.909333pt;}
.x10_c00272{left:258.960000pt;}
.x32_c00272{left:260.806667pt;}
.x5b_c00272{left:264.960000pt;}
.x4c_c00272{left:266.880000pt;}
.x2c_c00272{left:268.560000pt;}
.x3c_c00272{left:270.000000pt;}
.x78_c00272{left:272.750667pt;}
.x11_c00272{left:275.040000pt;}
.x61_c00272{left:277.122667pt;}
.x7c_c00272{left:278.020000pt;}
.x1d_c00272{left:280.080000pt;}
.x6f_c00272{left:281.278667pt;}
.x38_c00272{left:283.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00273 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00273 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00273 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00273 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c00273{transform:matrix(0.029230,-0.000526,0.004499,0.249960,0,0);-ms-transform:matrix(0.029230,-0.000526,0.004499,0.249960,0,0);-webkit-transform:matrix(0.029230,-0.000526,0.004499,0.249960,0,0);}
.mc2_c00273{transform:matrix(0.080464,-0.002414,0.007497,0.249888,0,0);-ms-transform:matrix(0.080464,-0.002414,0.007497,0.249888,0,0);-webkit-transform:matrix(0.080464,-0.002414,0.007497,0.249888,0,0);}
.m6f_c00273{transform:matrix(0.118951,-0.002379,0.004999,0.249950,0,0);-ms-transform:matrix(0.118951,-0.002379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.118951,-0.002379,0.004999,0.249950,0,0);}
.md0_c00273{transform:matrix(0.124215,-0.004725,0.009503,0.249819,0,0);-ms-transform:matrix(0.124215,-0.004725,0.009503,0.249819,0,0);-webkit-transform:matrix(0.124215,-0.004725,0.009503,0.249819,0,0);}
.me2_c00273{transform:matrix(0.127459,-0.003441,0.006748,0.249909,0,0);-ms-transform:matrix(0.127459,-0.003441,0.006748,0.249909,0,0);-webkit-transform:matrix(0.127459,-0.003441,0.006748,0.249909,0,0);}
.m16_c00273{transform:matrix(0.132154,-0.002643,0.004999,0.249950,0,0);-ms-transform:matrix(0.132154,-0.002643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.132154,-0.002643,0.004999,0.249950,0,0);}
.m89_c00273{transform:matrix(0.141887,-0.002838,0.004999,0.249950,0,0);-ms-transform:matrix(0.141887,-0.002838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141887,-0.002838,0.004999,0.249950,0,0);}
.m41_c00273{transform:matrix(0.142816,-0.002856,0.004999,0.249950,0,0);-ms-transform:matrix(0.142816,-0.002856,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142816,-0.002856,0.004999,0.249950,0,0);}
.m1c_c00273{transform:matrix(0.146431,-0.002929,0.004999,0.249950,0,0);-ms-transform:matrix(0.146431,-0.002929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146431,-0.002929,0.004999,0.249950,0,0);}
.m74_c00273{transform:matrix(0.146556,-0.002931,0.004999,0.249950,0,0);-ms-transform:matrix(0.146556,-0.002931,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146556,-0.002931,0.004999,0.249950,0,0);}
.mc_c00273{transform:matrix(0.147421,-0.002948,0.004999,0.249950,0,0);-ms-transform:matrix(0.147421,-0.002948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147421,-0.002948,0.004999,0.249950,0,0);}
.m27_c00273{transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);-ms-transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);}
.m2e_c00273{transform:matrix(0.151450,-0.003029,0.004999,0.249950,0,0);-ms-transform:matrix(0.151450,-0.003029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151450,-0.003029,0.004999,0.249950,0,0);}
.mb3_c00273{transform:matrix(0.152451,-0.004574,0.007497,0.249888,0,0);-ms-transform:matrix(0.152451,-0.004574,0.007497,0.249888,0,0);-webkit-transform:matrix(0.152451,-0.004574,0.007497,0.249888,0,0);}
.mc3_c00273{transform:matrix(0.152611,-0.004578,0.007497,0.249888,0,0);-ms-transform:matrix(0.152611,-0.004578,0.007497,0.249888,0,0);-webkit-transform:matrix(0.152611,-0.004578,0.007497,0.249888,0,0);}
.mb_c00273{transform:matrix(0.153339,-0.003067,0.004999,0.249950,0,0);-ms-transform:matrix(0.153339,-0.003067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153339,-0.003067,0.004999,0.249950,0,0);}
.m6b_c00273{transform:matrix(0.154669,-0.003093,0.004999,0.249950,0,0);-ms-transform:matrix(0.154669,-0.003093,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154669,-0.003093,0.004999,0.249950,0,0);}
.m5c_c00273{transform:matrix(0.154724,-0.003094,0.004999,0.249950,0,0);-ms-transform:matrix(0.154724,-0.003094,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154724,-0.003094,0.004999,0.249950,0,0);}
.m1f_c00273{transform:matrix(0.155064,-0.003101,0.004999,0.249950,0,0);-ms-transform:matrix(0.155064,-0.003101,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155064,-0.003101,0.004999,0.249950,0,0);}
.m8f_c00273{transform:matrix(0.155094,-0.003102,0.004999,0.249950,0,0);-ms-transform:matrix(0.155094,-0.003102,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155094,-0.003102,0.004999,0.249950,0,0);}
.m6e_c00273{transform:matrix(0.155439,-0.003109,0.004999,0.249950,0,0);-ms-transform:matrix(0.155439,-0.003109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155439,-0.003109,0.004999,0.249950,0,0);}
.m67_c00273{transform:matrix(0.155504,-0.003110,0.004999,0.249950,0,0);-ms-transform:matrix(0.155504,-0.003110,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155504,-0.003110,0.004999,0.249950,0,0);}
.m8_c00273{transform:matrix(0.156574,-0.003131,0.004999,0.249950,0,0);-ms-transform:matrix(0.156574,-0.003131,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156574,-0.003131,0.004999,0.249950,0,0);}
.m6a_c00273{transform:matrix(0.157119,-0.003142,0.004999,0.249950,0,0);-ms-transform:matrix(0.157119,-0.003142,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157119,-0.003142,0.004999,0.249950,0,0);}
.m1d_c00273{transform:matrix(0.157419,-0.003148,0.004999,0.249950,0,0);-ms-transform:matrix(0.157419,-0.003148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157419,-0.003148,0.004999,0.249950,0,0);}
.m13_c00273{transform:matrix(0.157768,-0.003155,0.004999,0.249950,0,0);-ms-transform:matrix(0.157768,-0.003155,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157768,-0.003155,0.004999,0.249950,0,0);}
.m54_c00273{transform:matrix(0.160393,-0.003208,0.004999,0.249950,0,0);-ms-transform:matrix(0.160393,-0.003208,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160393,-0.003208,0.004999,0.249950,0,0);}
.m7b_c00273{transform:matrix(0.161308,-0.003226,0.004999,0.249950,0,0);-ms-transform:matrix(0.161308,-0.003226,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161308,-0.003226,0.004999,0.249950,0,0);}
.m31_c00273{transform:matrix(0.161938,-0.003239,0.004999,0.249950,0,0);-ms-transform:matrix(0.161938,-0.003239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161938,-0.003239,0.004999,0.249950,0,0);}
.md2_c00273{transform:matrix(0.162732,-0.006190,0.009503,0.249819,0,0);-ms-transform:matrix(0.162732,-0.006190,0.009503,0.249819,0,0);-webkit-transform:matrix(0.162732,-0.006190,0.009503,0.249819,0,0);}
.m44_c00273{transform:matrix(0.162817,-0.003256,0.004999,0.249950,0,0);-ms-transform:matrix(0.162817,-0.003256,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162817,-0.003256,0.004999,0.249950,0,0);}
.m3e_c00273{transform:matrix(0.162857,-0.003257,0.004999,0.249950,0,0);-ms-transform:matrix(0.162857,-0.003257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162857,-0.003257,0.004999,0.249950,0,0);}
.m2_c00273{transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);-ms-transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163442,-0.003269,0.004999,0.249950,0,0);}
.m1a_c00273{transform:matrix(0.164117,-0.003282,0.004999,0.249950,0,0);-ms-transform:matrix(0.164117,-0.003282,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164117,-0.003282,0.004999,0.249950,0,0);}
.mce_c00273{transform:matrix(0.164346,-0.006251,0.009503,0.249819,0,0);-ms-transform:matrix(0.164346,-0.006251,0.009503,0.249819,0,0);-webkit-transform:matrix(0.164346,-0.006251,0.009503,0.249819,0,0);}
.m8b_c00273{transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);-ms-transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164362,-0.003287,0.004999,0.249950,0,0);}
.m3_c00273{transform:matrix(0.164427,-0.003289,0.004999,0.249950,0,0);-ms-transform:matrix(0.164427,-0.003289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164427,-0.003289,0.004999,0.249950,0,0);}
.m12_c00273{transform:matrix(0.164532,-0.003291,0.004999,0.249950,0,0);-ms-transform:matrix(0.164532,-0.003291,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164532,-0.003291,0.004999,0.249950,0,0);}
.m5_c00273{transform:matrix(0.164697,-0.003294,0.004999,0.249950,0,0);-ms-transform:matrix(0.164697,-0.003294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164697,-0.003294,0.004999,0.249950,0,0);}
.m38_c00273{transform:matrix(0.165022,-0.003300,0.004999,0.249950,0,0);-ms-transform:matrix(0.165022,-0.003300,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165022,-0.003300,0.004999,0.249950,0,0);}
.mcc_c00273{transform:matrix(0.165525,-0.006296,0.009503,0.249819,0,0);-ms-transform:matrix(0.165525,-0.006296,0.009503,0.249819,0,0);-webkit-transform:matrix(0.165525,-0.006296,0.009503,0.249819,0,0);}
.m20_c00273{transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);-ms-transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);}
.mda_c00273{transform:matrix(0.166169,-0.004487,0.006748,0.249909,0,0);-ms-transform:matrix(0.166169,-0.004487,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166169,-0.004487,0.006748,0.249909,0,0);}
.mf_c00273{transform:matrix(0.166212,-0.003324,0.004999,0.249950,0,0);-ms-transform:matrix(0.166212,-0.003324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166212,-0.003324,0.004999,0.249950,0,0);}
.m21_c00273{transform:matrix(0.166722,-0.003334,0.004999,0.249950,0,0);-ms-transform:matrix(0.166722,-0.003334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166722,-0.003334,0.004999,0.249950,0,0);}
.mca_c00273{transform:matrix(0.167080,-0.005012,0.007497,0.249888,0,0);-ms-transform:matrix(0.167080,-0.005012,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167080,-0.005012,0.007497,0.249888,0,0);}
.m56_c00273{transform:matrix(0.167362,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167362,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167362,-0.003347,0.004999,0.249950,0,0);}
.m1b_c00273{transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);-ms-transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);}
.mb9_c00273{transform:matrix(0.169249,-0.005077,0.007497,0.249888,0,0);-ms-transform:matrix(0.169249,-0.005077,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169249,-0.005077,0.007497,0.249888,0,0);}
.mec_c00273{transform:matrix(0.170078,-0.004592,0.006748,0.249909,0,0);-ms-transform:matrix(0.170078,-0.004592,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170078,-0.004592,0.006748,0.249909,0,0);}
.m35_c00273{transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);-ms-transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);}
.me4_c00273{transform:matrix(0.171238,-0.004623,0.006748,0.249909,0,0);-ms-transform:matrix(0.171238,-0.004623,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171238,-0.004623,0.006748,0.249909,0,0);}
.mbf_c00273{transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);-ms-transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171413,-0.005142,0.007497,0.249888,0,0);}
.m55_c00273{transform:matrix(0.171501,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171501,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171501,-0.003430,0.004999,0.249950,0,0);}
.m15_c00273{transform:matrix(0.171821,-0.003436,0.004999,0.249950,0,0);-ms-transform:matrix(0.171821,-0.003436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171821,-0.003436,0.004999,0.249950,0,0);}
.mb2_c00273{transform:matrix(0.172213,-0.005166,0.007497,0.249888,0,0);-ms-transform:matrix(0.172213,-0.005166,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172213,-0.005166,0.007497,0.249888,0,0);}
.m2c_c00273{transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);}
.m24_c00273{transform:matrix(0.173410,-0.003468,0.004999,0.249950,0,0);-ms-transform:matrix(0.173410,-0.003468,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173410,-0.003468,0.004999,0.249950,0,0);}
.mb8_c00273{transform:matrix(0.173447,-0.005203,0.007497,0.249888,0,0);-ms-transform:matrix(0.173447,-0.005203,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173447,-0.005203,0.007497,0.249888,0,0);}
.mb4_c00273{transform:matrix(0.173682,-0.005210,0.007497,0.249888,0,0);-ms-transform:matrix(0.173682,-0.005210,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173682,-0.005210,0.007497,0.249888,0,0);}
.m11_c00273{transform:matrix(0.174110,-0.003482,0.004999,0.249950,0,0);-ms-transform:matrix(0.174110,-0.003482,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174110,-0.003482,0.004999,0.249950,0,0);}
.m4f_c00273{transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);-ms-transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174330,-0.003487,0.004999,0.249950,0,0);}
.mad_c00273{transform:matrix(0.174716,-0.005241,0.007497,0.249888,0,0);-ms-transform:matrix(0.174716,-0.005241,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174716,-0.005241,0.007497,0.249888,0,0);}
.m7c_c00273{transform:matrix(0.175075,-0.003501,0.004999,0.249950,0,0);-ms-transform:matrix(0.175075,-0.003501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175075,-0.003501,0.004999,0.249950,0,0);}
.m17_c00273{transform:matrix(0.175080,-0.003502,0.004999,0.249950,0,0);-ms-transform:matrix(0.175080,-0.003502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175080,-0.003502,0.004999,0.249950,0,0);}
.m9_c00273{transform:matrix(0.175090,-0.003502,0.004999,0.249950,0,0);-ms-transform:matrix(0.175090,-0.003502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175090,-0.003502,0.004999,0.249950,0,0);}
.ma1_c00273{transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);-ms-transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175282,-0.003155,0.004499,0.249960,0,0);}
.m3f_c00273{transform:matrix(0.175400,-0.003508,0.004999,0.249950,0,0);-ms-transform:matrix(0.175400,-0.003508,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175400,-0.003508,0.004999,0.249950,0,0);}
.maa_c00273{transform:matrix(0.175536,-0.005266,0.007497,0.249888,0,0);-ms-transform:matrix(0.175536,-0.005266,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175536,-0.005266,0.007497,0.249888,0,0);}
.m77_c00273{transform:matrix(0.175935,-0.003519,0.004999,0.249950,0,0);-ms-transform:matrix(0.175935,-0.003519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175935,-0.003519,0.004999,0.249950,0,0);}
.md5_c00273{transform:matrix(0.176271,-0.004759,0.006748,0.249909,0,0);-ms-transform:matrix(0.176271,-0.004759,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176271,-0.004759,0.006748,0.249909,0,0);}
.m2a_c00273{transform:matrix(0.176365,-0.003527,0.004999,0.249950,0,0);-ms-transform:matrix(0.176365,-0.003527,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176365,-0.003527,0.004999,0.249950,0,0);}
.ma7_c00273{transform:matrix(0.176376,-0.003175,0.004499,0.249960,0,0);-ms-transform:matrix(0.176376,-0.003175,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176376,-0.003175,0.004499,0.249960,0,0);}
.m14_c00273{transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);}
.mb0_c00273{transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-ms-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);}
.md9_c00273{transform:matrix(0.176826,-0.004774,0.006748,0.249909,0,0);-ms-transform:matrix(0.176826,-0.004774,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176826,-0.004774,0.006748,0.249909,0,0);}
.me_c00273{transform:matrix(0.177599,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177599,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177599,-0.003552,0.004999,0.249950,0,0);}
.m58_c00273{transform:matrix(0.177984,-0.003560,0.004999,0.249950,0,0);-ms-transform:matrix(0.177984,-0.003560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177984,-0.003560,0.004999,0.249950,0,0);}
.m57_c00273{transform:matrix(0.178219,-0.003564,0.004999,0.249950,0,0);-ms-transform:matrix(0.178219,-0.003564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178219,-0.003564,0.004999,0.249950,0,0);}
.m96_c00273{transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);-ms-transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);}
.m90_c00273{transform:matrix(0.178499,-0.003570,0.004999,0.249950,0,0);-ms-transform:matrix(0.178499,-0.003570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178499,-0.003570,0.004999,0.249950,0,0);}
.mbd_c00273{transform:matrix(0.178775,-0.005363,0.007497,0.249888,0,0);-ms-transform:matrix(0.178775,-0.005363,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178775,-0.005363,0.007497,0.249888,0,0);}
.m4e_c00273{transform:matrix(0.178834,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178834,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178834,-0.003577,0.004999,0.249950,0,0);}
.m99_c00273{transform:matrix(0.179058,-0.004118,0.005748,0.249934,0,0);-ms-transform:matrix(0.179058,-0.004118,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179058,-0.004118,0.005748,0.249934,0,0);}
.m1_c00273{transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);}
.m2b_c00273{transform:matrix(0.179814,-0.003596,0.004999,0.249950,0,0);-ms-transform:matrix(0.179814,-0.003596,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179814,-0.003596,0.004999,0.249950,0,0);}
.md_c00273{transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);-ms-transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179989,-0.003600,0.004999,0.249950,0,0);}
.m69_c00273{transform:matrix(0.180924,-0.003618,0.004999,0.249950,0,0);-ms-transform:matrix(0.180924,-0.003618,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180924,-0.003618,0.004999,0.249950,0,0);}
.m36_c00273{transform:matrix(0.181084,-0.003622,0.004999,0.249950,0,0);-ms-transform:matrix(0.181084,-0.003622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181084,-0.003622,0.004999,0.249950,0,0);}
.mc4_c00273{transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);-ms-transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181168,-0.005435,0.007497,0.249888,0,0);}
.m32_c00273{transform:matrix(0.182084,-0.003642,0.004999,0.249950,0,0);-ms-transform:matrix(0.182084,-0.003642,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182084,-0.003642,0.004999,0.249950,0,0);}
.m34_c00273{transform:matrix(0.182129,-0.003643,0.004999,0.249950,0,0);-ms-transform:matrix(0.182129,-0.003643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182129,-0.003643,0.004999,0.249950,0,0);}
.m60_c00273{transform:matrix(0.182229,-0.003645,0.004999,0.249950,0,0);-ms-transform:matrix(0.182229,-0.003645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182229,-0.003645,0.004999,0.249950,0,0);}
.m7_c00273{transform:matrix(0.182918,-0.003658,0.004999,0.249950,0,0);-ms-transform:matrix(0.182918,-0.003658,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182918,-0.003658,0.004999,0.249950,0,0);}
.m68_c00273{transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);-ms-transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);}
.m91_c00273{transform:matrix(0.184213,-0.003684,0.004999,0.249950,0,0);-ms-transform:matrix(0.184213,-0.003684,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184213,-0.003684,0.004999,0.249950,0,0);}
.ma_c00273{transform:matrix(0.184248,-0.003685,0.004999,0.249950,0,0);-ms-transform:matrix(0.184248,-0.003685,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184248,-0.003685,0.004999,0.249950,0,0);}
.m29_c00273{transform:matrix(0.184783,-0.003696,0.004999,0.249950,0,0);-ms-transform:matrix(0.184783,-0.003696,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184783,-0.003696,0.004999,0.249950,0,0);}
.m61_c00273{transform:matrix(0.184813,-0.003696,0.004999,0.249950,0,0);-ms-transform:matrix(0.184813,-0.003696,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184813,-0.003696,0.004999,0.249950,0,0);}
.mbe_c00273{transform:matrix(0.185806,-0.005574,0.007497,0.249888,0,0);-ms-transform:matrix(0.185806,-0.005574,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185806,-0.005574,0.007497,0.249888,0,0);}
.m4_c00273{transform:matrix(0.186338,-0.003727,0.004999,0.249950,0,0);-ms-transform:matrix(0.186338,-0.003727,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186338,-0.003727,0.004999,0.249950,0,0);}
.m7e_c00273{transform:matrix(0.186613,-0.003732,0.004999,0.249950,0,0);-ms-transform:matrix(0.186613,-0.003732,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186613,-0.003732,0.004999,0.249950,0,0);}
.mbb_c00273{transform:matrix(0.186901,-0.005607,0.007497,0.249888,0,0);-ms-transform:matrix(0.186901,-0.005607,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186901,-0.005607,0.007497,0.249888,0,0);}
.m4b_c00273{transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187088,-0.003742,0.004999,0.249950,0,0);}
.mc7_c00273{transform:matrix(0.187131,-0.005614,0.007497,0.249888,0,0);-ms-transform:matrix(0.187131,-0.005614,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187131,-0.005614,0.007497,0.249888,0,0);}
.me6_c00273{transform:matrix(0.187427,-0.005061,0.006748,0.249909,0,0);-ms-transform:matrix(0.187427,-0.005061,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187427,-0.005061,0.006748,0.249909,0,0);}
.mc1_c00273{transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-ms-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);}
.m30_c00273{transform:matrix(0.187522,-0.003750,0.004999,0.249950,0,0);-ms-transform:matrix(0.187522,-0.003750,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187522,-0.003750,0.004999,0.249950,0,0);}
.mc5_c00273{transform:matrix(0.188225,-0.005647,0.007497,0.249888,0,0);-ms-transform:matrix(0.188225,-0.005647,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188225,-0.005647,0.007497,0.249888,0,0);}
.md3_c00273{transform:matrix(0.188324,-0.007163,0.009503,0.249819,0,0);-ms-transform:matrix(0.188324,-0.007163,0.009503,0.249819,0,0);-webkit-transform:matrix(0.188324,-0.007163,0.009503,0.249819,0,0);}
.m71_c00273{transform:matrix(0.188432,-0.003769,0.004999,0.249950,0,0);-ms-transform:matrix(0.188432,-0.003769,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188432,-0.003769,0.004999,0.249950,0,0);}
.me0_c00273{transform:matrix(0.188621,-0.005093,0.006748,0.249909,0,0);-ms-transform:matrix(0.188621,-0.005093,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188621,-0.005093,0.006748,0.249909,0,0);}
.me3_c00273{transform:matrix(0.189441,-0.005115,0.006748,0.249909,0,0);-ms-transform:matrix(0.189441,-0.005115,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189441,-0.005115,0.006748,0.249909,0,0);}
.m66_c00273{transform:matrix(0.189972,-0.003799,0.004999,0.249950,0,0);-ms-transform:matrix(0.189972,-0.003799,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189972,-0.003799,0.004999,0.249950,0,0);}
.m7a_c00273{transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);-ms-transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);}
.med_c00273{transform:matrix(0.190496,-0.005143,0.006748,0.249909,0,0);-ms-transform:matrix(0.190496,-0.005143,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190496,-0.005143,0.006748,0.249909,0,0);}
.m88_c00273{transform:matrix(0.190537,-0.003811,0.004999,0.249950,0,0);-ms-transform:matrix(0.190537,-0.003811,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190537,-0.003811,0.004999,0.249950,0,0);}
.m73_c00273{transform:matrix(0.190602,-0.003812,0.004999,0.249950,0,0);-ms-transform:matrix(0.190602,-0.003812,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190602,-0.003812,0.004999,0.249950,0,0);}
.m52_c00273{transform:matrix(0.190807,-0.003816,0.004999,0.249950,0,0);-ms-transform:matrix(0.190807,-0.003816,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190807,-0.003816,0.004999,0.249950,0,0);}
.m1e_c00273{transform:matrix(0.190922,-0.003818,0.004999,0.249950,0,0);-ms-transform:matrix(0.190922,-0.003818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190922,-0.003818,0.004999,0.249950,0,0);}
.mcf_c00273{transform:matrix(0.190972,-0.007264,0.009503,0.249819,0,0);-ms-transform:matrix(0.190972,-0.007264,0.009503,0.249819,0,0);-webkit-transform:matrix(0.190972,-0.007264,0.009503,0.249819,0,0);}
.m45_c00273{transform:matrix(0.191157,-0.003823,0.004999,0.249950,0,0);-ms-transform:matrix(0.191157,-0.003823,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191157,-0.003823,0.004999,0.249950,0,0);}
.mef_c00273{transform:matrix(0.191385,-0.005167,0.006748,0.249909,0,0);-ms-transform:matrix(0.191385,-0.005167,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191385,-0.005167,0.006748,0.249909,0,0);}
.m53_c00273{transform:matrix(0.191707,-0.003834,0.004999,0.249950,0,0);-ms-transform:matrix(0.191707,-0.003834,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191707,-0.003834,0.004999,0.249950,0,0);}
.m42_c00273{transform:matrix(0.192077,-0.003842,0.004999,0.249950,0,0);-ms-transform:matrix(0.192077,-0.003842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192077,-0.003842,0.004999,0.249950,0,0);}
.m3b_c00273{transform:matrix(0.192117,-0.003842,0.004999,0.249950,0,0);-ms-transform:matrix(0.192117,-0.003842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192117,-0.003842,0.004999,0.249950,0,0);}
.m2d_c00273{transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192472,-0.003849,0.004999,0.249950,0,0);}
.m87_c00273{transform:matrix(0.192716,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192716,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192716,-0.003854,0.004999,0.249950,0,0);}
.m63_c00273{transform:matrix(0.193136,-0.003863,0.004999,0.249950,0,0);-ms-transform:matrix(0.193136,-0.003863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193136,-0.003863,0.004999,0.249950,0,0);}
.m97_c00273{transform:matrix(0.193569,-0.004452,0.005748,0.249934,0,0);-ms-transform:matrix(0.193569,-0.004452,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193569,-0.004452,0.005748,0.249934,0,0);}
.m7f_c00273{transform:matrix(0.193741,-0.003875,0.004999,0.249950,0,0);-ms-transform:matrix(0.193741,-0.003875,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193741,-0.003875,0.004999,0.249950,0,0);}
.m4d_c00273{transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);}
.m75_c00273{transform:matrix(0.194106,-0.003882,0.004999,0.249950,0,0);-ms-transform:matrix(0.194106,-0.003882,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194106,-0.003882,0.004999,0.249950,0,0);}
.m3c_c00273{transform:matrix(0.194316,-0.003886,0.004999,0.249950,0,0);-ms-transform:matrix(0.194316,-0.003886,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194316,-0.003886,0.004999,0.249950,0,0);}
.m28_c00273{transform:matrix(0.194416,-0.003888,0.004999,0.249950,0,0);-ms-transform:matrix(0.194416,-0.003888,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194416,-0.003888,0.004999,0.249950,0,0);}
.m39_c00273{transform:matrix(0.194641,-0.003893,0.004999,0.249950,0,0);-ms-transform:matrix(0.194641,-0.003893,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194641,-0.003893,0.004999,0.249950,0,0);}
.m3a_c00273{transform:matrix(0.194771,-0.003895,0.004999,0.249950,0,0);-ms-transform:matrix(0.194771,-0.003895,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194771,-0.003895,0.004999,0.249950,0,0);}
.md7_c00273{transform:matrix(0.194869,-0.005261,0.006748,0.249909,0,0);-ms-transform:matrix(0.194869,-0.005261,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194869,-0.005261,0.006748,0.249909,0,0);}
.mcd_c00273{transform:matrix(0.194904,-0.007414,0.009503,0.249819,0,0);-ms-transform:matrix(0.194904,-0.007414,0.009503,0.249819,0,0);-webkit-transform:matrix(0.194904,-0.007414,0.009503,0.249819,0,0);}
.m8d_c00273{transform:matrix(0.194916,-0.003898,0.004999,0.249950,0,0);-ms-transform:matrix(0.194916,-0.003898,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194916,-0.003898,0.004999,0.249950,0,0);}
.m40_c00273{transform:matrix(0.195391,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195391,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195391,-0.003908,0.004999,0.249950,0,0);}
.mdb_c00273{transform:matrix(0.195944,-0.005290,0.006748,0.249909,0,0);-ms-transform:matrix(0.195944,-0.005290,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195944,-0.005290,0.006748,0.249909,0,0);}
.m43_c00273{transform:matrix(0.196501,-0.003930,0.004999,0.249950,0,0);-ms-transform:matrix(0.196501,-0.003930,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196501,-0.003930,0.004999,0.249950,0,0);}
.m23_c00273{transform:matrix(0.196841,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196841,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196841,-0.003937,0.004999,0.249950,0,0);}
.m6c_c00273{transform:matrix(0.197241,-0.003945,0.004999,0.249950,0,0);-ms-transform:matrix(0.197241,-0.003945,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197241,-0.003945,0.004999,0.249950,0,0);}
.m50_c00273{transform:matrix(0.197950,-0.003959,0.004999,0.249950,0,0);-ms-transform:matrix(0.197950,-0.003959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197950,-0.003959,0.004999,0.249950,0,0);}
.m86_c00273{transform:matrix(0.198415,-0.003968,0.004999,0.249950,0,0);-ms-transform:matrix(0.198415,-0.003968,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198415,-0.003968,0.004999,0.249950,0,0);}
.m2f_c00273{transform:matrix(0.198765,-0.003975,0.004999,0.249950,0,0);-ms-transform:matrix(0.198765,-0.003975,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198765,-0.003975,0.004999,0.249950,0,0);}
.ma4_c00273{transform:matrix(0.199813,-0.003597,0.004499,0.249960,0,0);-ms-transform:matrix(0.199813,-0.003597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199813,-0.003597,0.004499,0.249960,0,0);}
.m10_c00273{transform:matrix(0.200125,-0.004002,0.004999,0.249950,0,0);-ms-transform:matrix(0.200125,-0.004002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200125,-0.004002,0.004999,0.249950,0,0);}
.m79_c00273{transform:matrix(0.200140,-0.004003,0.004999,0.249950,0,0);-ms-transform:matrix(0.200140,-0.004003,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200140,-0.004003,0.004999,0.249950,0,0);}
.mc6_c00273{transform:matrix(0.200585,-0.006018,0.007497,0.249888,0,0);-ms-transform:matrix(0.200585,-0.006018,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200585,-0.006018,0.007497,0.249888,0,0);}
.ma2_c00273{transform:matrix(0.200807,-0.003615,0.004499,0.249960,0,0);-ms-transform:matrix(0.200807,-0.003615,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200807,-0.003615,0.004499,0.249960,0,0);}
.m78_c00273{transform:matrix(0.201285,-0.004026,0.004999,0.249950,0,0);-ms-transform:matrix(0.201285,-0.004026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201285,-0.004026,0.004999,0.249950,0,0);}
.m8a_c00273{transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);-ms-transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201330,-0.004027,0.004999,0.249950,0,0);}
.mcb_c00273{transform:matrix(0.201394,-0.006042,0.007497,0.249888,0,0);-ms-transform:matrix(0.201394,-0.006042,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201394,-0.006042,0.007497,0.249888,0,0);}
.m51_c00273{transform:matrix(0.201410,-0.004028,0.004999,0.249950,0,0);-ms-transform:matrix(0.201410,-0.004028,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201410,-0.004028,0.004999,0.249950,0,0);}
.m37_c00273{transform:matrix(0.201855,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201855,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201855,-0.004037,0.004999,0.249950,0,0);}
.m46_c00273{transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);-ms-transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201975,-0.004039,0.004999,0.249950,0,0);}
.m9f_c00273{transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);}
.me5_c00273{transform:matrix(0.202736,-0.005474,0.006748,0.249909,0,0);-ms-transform:matrix(0.202736,-0.005474,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202736,-0.005474,0.006748,0.249909,0,0);}
.m5f_c00273{transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);-ms-transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);}
.m59_c00273{transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);-ms-transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202924,-0.004058,0.004999,0.249950,0,0);}
.m70_c00273{transform:matrix(0.202944,-0.004059,0.004999,0.249950,0,0);-ms-transform:matrix(0.202944,-0.004059,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202944,-0.004059,0.004999,0.249950,0,0);}
.md4_c00273{transform:matrix(0.203266,-0.005488,0.006748,0.249909,0,0);-ms-transform:matrix(0.203266,-0.005488,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203266,-0.005488,0.006748,0.249909,0,0);}
.me7_c00273{transform:matrix(0.203841,-0.005504,0.006748,0.249909,0,0);-ms-transform:matrix(0.203841,-0.005504,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203841,-0.005504,0.006748,0.249909,0,0);}
.m76_c00273{transform:matrix(0.203899,-0.004078,0.004999,0.249950,0,0);-ms-transform:matrix(0.203899,-0.004078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203899,-0.004078,0.004999,0.249950,0,0);}
.m9a_c00273{transform:matrix(0.204306,-0.004699,0.005748,0.249934,0,0);-ms-transform:matrix(0.204306,-0.004699,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204306,-0.004699,0.005748,0.249934,0,0);}
.mf0_c00273{transform:matrix(0.204465,-0.005521,0.006748,0.249909,0,0);-ms-transform:matrix(0.204465,-0.005521,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204465,-0.005521,0.006748,0.249909,0,0);}
.mba_c00273{transform:matrix(0.204603,-0.006138,0.007497,0.249888,0,0);-ms-transform:matrix(0.204603,-0.006138,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204603,-0.006138,0.007497,0.249888,0,0);}
.m4c_c00273{transform:matrix(0.205184,-0.004104,0.004999,0.249950,0,0);-ms-transform:matrix(0.205184,-0.004104,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205184,-0.004104,0.004999,0.249950,0,0);}
.m25_c00273{transform:matrix(0.205349,-0.004107,0.004999,0.249950,0,0);-ms-transform:matrix(0.205349,-0.004107,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205349,-0.004107,0.004999,0.249950,0,0);}
.m72_c00273{transform:matrix(0.205599,-0.004112,0.004999,0.249950,0,0);-ms-transform:matrix(0.205599,-0.004112,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205599,-0.004112,0.004999,0.249950,0,0);}
.m92_c00273{transform:matrix(0.205614,-0.004112,0.004999,0.249950,0,0);-ms-transform:matrix(0.205614,-0.004112,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205614,-0.004112,0.004999,0.249950,0,0);}
.md1_c00273{transform:matrix(0.206071,-0.007839,0.009503,0.249819,0,0);-ms-transform:matrix(0.206071,-0.007839,0.009503,0.249819,0,0);-webkit-transform:matrix(0.206071,-0.007839,0.009503,0.249819,0,0);}
.md8_c00273{transform:matrix(0.206225,-0.005568,0.006748,0.249909,0,0);-ms-transform:matrix(0.206225,-0.005568,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206225,-0.005568,0.006748,0.249909,0,0);}
.mea_c00273{transform:matrix(0.206630,-0.005579,0.006748,0.249909,0,0);-ms-transform:matrix(0.206630,-0.005579,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206630,-0.005579,0.006748,0.249909,0,0);}
.m98_c00273{transform:matrix(0.206985,-0.004761,0.005748,0.249934,0,0);-ms-transform:matrix(0.206985,-0.004761,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206985,-0.004761,0.005748,0.249934,0,0);}
.meb_c00273{transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);-ms-transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207884,-0.005613,0.006748,0.249909,0,0);}
.m4a_c00273{transform:matrix(0.208093,-0.004162,0.004999,0.249950,0,0);-ms-transform:matrix(0.208093,-0.004162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208093,-0.004162,0.004999,0.249950,0,0);}
.m9d_c00273{transform:matrix(0.208562,-0.003128,0.003750,0.249972,0,0);-ms-transform:matrix(0.208562,-0.003128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208562,-0.003128,0.003750,0.249972,0,0);}
.md6_c00273{transform:matrix(0.210573,-0.005685,0.006748,0.249909,0,0);-ms-transform:matrix(0.210573,-0.005685,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210573,-0.005685,0.006748,0.249909,0,0);}
.m5a_c00273{transform:matrix(0.211623,-0.004232,0.004999,0.249950,0,0);-ms-transform:matrix(0.211623,-0.004232,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211623,-0.004232,0.004999,0.249950,0,0);}
.m18_c00273{transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);-ms-transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211723,-0.004234,0.004999,0.249950,0,0);}
.m80_c00273{transform:matrix(0.212338,-0.004247,0.004999,0.249950,0,0);-ms-transform:matrix(0.212338,-0.004247,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212338,-0.004247,0.004999,0.249950,0,0);}
.m3d_c00273{transform:matrix(0.212433,-0.004249,0.004999,0.249950,0,0);-ms-transform:matrix(0.212433,-0.004249,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212433,-0.004249,0.004999,0.249950,0,0);}
.m9b_c00273{transform:matrix(0.212896,-0.003193,0.003750,0.249972,0,0);-ms-transform:matrix(0.212896,-0.003193,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212896,-0.003193,0.003750,0.249972,0,0);}
.m33_c00273{transform:matrix(0.213027,-0.004261,0.004999,0.249950,0,0);-ms-transform:matrix(0.213027,-0.004261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213027,-0.004261,0.004999,0.249950,0,0);}
.mac_c00273{transform:matrix(0.213199,-0.006396,0.007497,0.249888,0,0);-ms-transform:matrix(0.213199,-0.006396,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213199,-0.006396,0.007497,0.249888,0,0);}
.mc8_c00273{transform:matrix(0.213799,-0.006414,0.007497,0.249888,0,0);-ms-transform:matrix(0.213799,-0.006414,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213799,-0.006414,0.007497,0.249888,0,0);}
.m84_c00273{transform:matrix(0.213872,-0.004277,0.004999,0.249950,0,0);-ms-transform:matrix(0.213872,-0.004277,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213872,-0.004277,0.004999,0.249950,0,0);}
.m64_c00273{transform:matrix(0.213877,-0.004278,0.004999,0.249950,0,0);-ms-transform:matrix(0.213877,-0.004278,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213877,-0.004278,0.004999,0.249950,0,0);}
.mee_c00273{transform:matrix(0.214412,-0.005789,0.006748,0.249909,0,0);-ms-transform:matrix(0.214412,-0.005789,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214412,-0.005789,0.006748,0.249909,0,0);}
.me8_c00273{transform:matrix(0.214632,-0.005795,0.006748,0.249909,0,0);-ms-transform:matrix(0.214632,-0.005795,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214632,-0.005795,0.006748,0.249909,0,0);}
.m9e_c00273{transform:matrix(0.215311,-0.003230,0.003750,0.249972,0,0);-ms-transform:matrix(0.215311,-0.003230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215311,-0.003230,0.003750,0.249972,0,0);}
.m6d_c00273{transform:matrix(0.216327,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216327,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216327,-0.004327,0.004999,0.249950,0,0);}
.m9c_c00273{transform:matrix(0.216366,-0.003245,0.003750,0.249972,0,0);-ms-transform:matrix(0.216366,-0.003245,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216366,-0.003245,0.003750,0.249972,0,0);}
.mab_c00273{transform:matrix(0.216518,-0.006496,0.007497,0.249888,0,0);-ms-transform:matrix(0.216518,-0.006496,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216518,-0.006496,0.007497,0.249888,0,0);}
.mb6_c00273{transform:matrix(0.216897,-0.006507,0.007497,0.249888,0,0);-ms-transform:matrix(0.216897,-0.006507,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216897,-0.006507,0.007497,0.249888,0,0);}
.m94_c00273{transform:matrix(0.217013,-0.004991,0.005748,0.249934,0,0);-ms-transform:matrix(0.217013,-0.004991,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217013,-0.004991,0.005748,0.249934,0,0);}
.mae_c00273{transform:matrix(0.217402,-0.006522,0.007497,0.249888,0,0);-ms-transform:matrix(0.217402,-0.006522,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217402,-0.006522,0.007497,0.249888,0,0);}
.mde_c00273{transform:matrix(0.217581,-0.005875,0.006748,0.249909,0,0);-ms-transform:matrix(0.217581,-0.005875,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217581,-0.005875,0.006748,0.249909,0,0);}
.m5d_c00273{transform:matrix(0.217961,-0.004359,0.004999,0.249950,0,0);-ms-transform:matrix(0.217961,-0.004359,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217961,-0.004359,0.004999,0.249950,0,0);}
.m62_c00273{transform:matrix(0.218461,-0.004369,0.004999,0.249950,0,0);-ms-transform:matrix(0.218461,-0.004369,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218461,-0.004369,0.004999,0.249950,0,0);}
.m7d_c00273{transform:matrix(0.220381,-0.004408,0.004999,0.249950,0,0);-ms-transform:matrix(0.220381,-0.004408,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220381,-0.004408,0.004999,0.249950,0,0);}
.mb5_c00273{transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);-ms-transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221096,-0.006633,0.007497,0.249888,0,0);}
.m8e_c00273{transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);-ms-transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221161,-0.004423,0.004999,0.249950,0,0);}
.mdf_c00273{transform:matrix(0.222004,-0.005994,0.006748,0.249909,0,0);-ms-transform:matrix(0.222004,-0.005994,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222004,-0.005994,0.006748,0.249909,0,0);}
.m8c_c00273{transform:matrix(0.223320,-0.004466,0.004999,0.249950,0,0);-ms-transform:matrix(0.223320,-0.004466,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223320,-0.004466,0.004999,0.249950,0,0);}
.m47_c00273{transform:matrix(0.223725,-0.004475,0.004999,0.249950,0,0);-ms-transform:matrix(0.223725,-0.004475,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223725,-0.004475,0.004999,0.249950,0,0);}
.ma3_c00273{transform:matrix(0.224679,-0.004044,0.004499,0.249960,0,0);-ms-transform:matrix(0.224679,-0.004044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224679,-0.004044,0.004499,0.249960,0,0);}
.ma5_c00273{transform:matrix(0.225468,-0.004058,0.004499,0.249960,0,0);-ms-transform:matrix(0.225468,-0.004058,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225468,-0.004058,0.004499,0.249960,0,0);}
.m85_c00273{transform:matrix(0.225610,-0.004512,0.004999,0.249950,0,0);-ms-transform:matrix(0.225610,-0.004512,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225610,-0.004512,0.004999,0.249950,0,0);}
.m93_c00273{transform:matrix(0.225800,-0.005193,0.005748,0.249934,0,0);-ms-transform:matrix(0.225800,-0.005193,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225800,-0.005193,0.005748,0.249934,0,0);}
.m26_c00273{transform:matrix(0.226965,-0.004539,0.004999,0.249950,0,0);-ms-transform:matrix(0.226965,-0.004539,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226965,-0.004539,0.004999,0.249950,0,0);}
.me9_c00273{transform:matrix(0.230366,-0.006220,0.006748,0.249909,0,0);-ms-transform:matrix(0.230366,-0.006220,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230366,-0.006220,0.006748,0.249909,0,0);}
.mdd_c00273{transform:matrix(0.230621,-0.006227,0.006748,0.249909,0,0);-ms-transform:matrix(0.230621,-0.006227,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230621,-0.006227,0.006748,0.249909,0,0);}
.mbc_c00273{transform:matrix(0.231246,-0.006937,0.007497,0.249888,0,0);-ms-transform:matrix(0.231246,-0.006937,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231246,-0.006937,0.007497,0.249888,0,0);}
.mdc_c00273{transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);-ms-transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);}
.m22_c00273{transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);-ms-transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232523,-0.004650,0.004999,0.249950,0,0);}
.m81_c00273{transform:matrix(0.233283,-0.004666,0.004999,0.249950,0,0);-ms-transform:matrix(0.233283,-0.004666,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233283,-0.004666,0.004999,0.249950,0,0);}
.ma6_c00273{transform:matrix(0.235817,-0.004245,0.004499,0.249960,0,0);-ms-transform:matrix(0.235817,-0.004245,0.004499,0.249960,0,0);-webkit-transform:matrix(0.235817,-0.004245,0.004499,0.249960,0,0);}
.m95_c00273{transform:matrix(0.236467,-0.005439,0.005748,0.249934,0,0);-ms-transform:matrix(0.236467,-0.005439,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236467,-0.005439,0.005748,0.249934,0,0);}
.mc9_c00273{transform:matrix(0.236604,-0.007098,0.007497,0.249888,0,0);-ms-transform:matrix(0.236604,-0.007098,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236604,-0.007098,0.007497,0.249888,0,0);}
.mc0_c00273{transform:matrix(0.246164,-0.007385,0.007497,0.249888,0,0);-ms-transform:matrix(0.246164,-0.007385,0.007497,0.249888,0,0);-webkit-transform:matrix(0.246164,-0.007385,0.007497,0.249888,0,0);}
.ma9_c00273{transform:matrix(0.248503,-0.007455,0.007497,0.249888,0,0);-ms-transform:matrix(0.248503,-0.007455,0.007497,0.249888,0,0);-webkit-transform:matrix(0.248503,-0.007455,0.007497,0.249888,0,0);}
.m65_c00273{transform:matrix(0.249820,-0.004996,0.004999,0.249950,0,0);-ms-transform:matrix(0.249820,-0.004996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249820,-0.004996,0.004999,0.249950,0,0);}
.m83_c00273{transform:matrix(0.254564,-0.005091,0.004999,0.249950,0,0);-ms-transform:matrix(0.254564,-0.005091,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254564,-0.005091,0.004999,0.249950,0,0);}
.ma0_c00273{transform:matrix(0.255736,-0.003836,0.003750,0.249972,0,0);-ms-transform:matrix(0.255736,-0.003836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255736,-0.003836,0.003750,0.249972,0,0);}
.m82_c00273{transform:matrix(0.261328,-0.005227,0.004999,0.249950,0,0);-ms-transform:matrix(0.261328,-0.005227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.261328,-0.005227,0.004999,0.249950,0,0);}
.me1_c00273{transform:matrix(0.264803,-0.007150,0.006748,0.249909,0,0);-ms-transform:matrix(0.264803,-0.007150,0.006748,0.249909,0,0);-webkit-transform:matrix(0.264803,-0.007150,0.006748,0.249909,0,0);}
.mb1_c00273{transform:matrix(0.265990,-0.007980,0.007497,0.249888,0,0);-ms-transform:matrix(0.265990,-0.007980,0.007497,0.249888,0,0);-webkit-transform:matrix(0.265990,-0.007980,0.007497,0.249888,0,0);}
.maf_c00273{transform:matrix(0.276895,-0.008307,0.007497,0.249888,0,0);-ms-transform:matrix(0.276895,-0.008307,0.007497,0.249888,0,0);-webkit-transform:matrix(0.276895,-0.008307,0.007497,0.249888,0,0);}
.mb7_c00273{transform:matrix(0.291604,-0.008748,0.007497,0.249888,0,0);-ms-transform:matrix(0.291604,-0.008748,0.007497,0.249888,0,0);-webkit-transform:matrix(0.291604,-0.008748,0.007497,0.249888,0,0);}
.m19_c00273{transform:matrix(0.309053,-0.006181,0.004999,0.249950,0,0);-ms-transform:matrix(0.309053,-0.006181,0.004999,0.249950,0,0);-webkit-transform:matrix(0.309053,-0.006181,0.004999,0.249950,0,0);}
.m5b_c00273{transform:matrix(0.318491,-0.006370,0.004999,0.249950,0,0);-ms-transform:matrix(0.318491,-0.006370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.318491,-0.006370,0.004999,0.249950,0,0);}
.m49_c00273{transform:matrix(0.322745,-0.006455,0.004999,0.249950,0,0);-ms-transform:matrix(0.322745,-0.006455,0.004999,0.249950,0,0);-webkit-transform:matrix(0.322745,-0.006455,0.004999,0.249950,0,0);}
.m5e_c00273{transform:matrix(0.344926,-0.006899,0.004999,0.249950,0,0);-ms-transform:matrix(0.344926,-0.006899,0.004999,0.249950,0,0);-webkit-transform:matrix(0.344926,-0.006899,0.004999,0.249950,0,0);}
.m48_c00273{transform:matrix(0.356634,-0.007133,0.004999,0.249950,0,0);-ms-transform:matrix(0.356634,-0.007133,0.004999,0.249950,0,0);-webkit-transform:matrix(0.356634,-0.007133,0.004999,0.249950,0,0);}
.m0_c00273{transform:matrix(0.361160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361160,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.388182,-0.007764,0.004999,0.249950,0,0);-ms-transform:matrix(0.388182,-0.007764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.388182,-0.007764,0.004999,0.249950,0,0);}
.mf1_c00273{transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
.fc0_c00273{color:transparent;}
.fs0_c00273{font-size:16.800000px;}
.fs19_c00273{font-size:26.250000px;}
.fsc_c00273{font-size:55.661129px;}
.fsa_c00273{font-size:58.811759px;}
.fsd_c00273{font-size:59.865828px;}
.fse_c00273{font-size:60.906851px;}
.fs17_c00273{font-size:60.922194px;}
.fsf_c00273{font-size:61.960035px;}
.fs10_c00273{font-size:61.977871px;}
.fs16_c00273{font-size:63.022959px;}
.fs14_c00273{font-size:63.028344px;}
.fs5_c00273{font-size:64.062809px;}
.fs18_c00273{font-size:64.073342px;}
.fs15_c00273{font-size:65.081932px;}
.fs7_c00273{font-size:65.113019px;}
.fs8_c00273{font-size:66.163229px;}
.fs13_c00273{font-size:66.179761px;}
.fs1_c00273{font-size:67.200000px;}
.fs6_c00273{font-size:67.213439px;}
.fs12_c00273{font-size:67.230233px;}
.fs9_c00273{font-size:68.263649px;}
.fs11_c00273{font-size:68.280706px;}
.fsb_c00273{font-size:69.313859px;}
.fs2_c00273{font-size:70.364069px;}
.fs3_c00273{font-size:71.414279px;}
.fs4_c00273{font-size:72.464489px;}
.y0_c00273{bottom:0.000000px;}
.yeb_c00273{bottom:19.161312px;}
.yec_c00273{bottom:19.589200px;}
.yed_c00273{bottom:20.850151px;}
.yee_c00273{bottom:21.186040px;}
.yef_c00273{bottom:22.502952px;}
.yf0_c00273{bottom:23.786740px;}
.yf1_c00273{bottom:25.372890px;}
.ye4_c00273{bottom:36.716496px;}
.ye5_c00273{bottom:38.110251px;}
.ye6_c00273{bottom:38.643610px;}
.ye7_c00273{bottom:39.979093px;}
.ye8_c00273{bottom:41.197020px;}
.ye9_c00273{bottom:41.553375px;}
.yea_c00273{bottom:43.045168px;}
.yde_c00273{bottom:53.461875px;}
.ydf_c00273{bottom:55.008325px;}
.ye0_c00273{bottom:57.183690px;}
.ye1_c00273{bottom:58.047324px;}
.ye2_c00273{bottom:59.228736px;}
.ye3_c00273{bottom:60.850065px;}
.yd5_c00273{bottom:70.476000px;}
.yd6_c00273{bottom:71.609473px;}
.yd7_c00273{bottom:72.106975px;}
.yd8_c00273{bottom:73.524840px;}
.yd9_c00273{bottom:73.878567px;}
.yda_c00273{bottom:75.617110px;}
.ydb_c00273{bottom:76.265110px;}
.ydc_c00273{bottom:76.742727px;}
.ydd_c00273{bottom:77.998308px;}
.ycd_c00273{bottom:88.032000px;}
.yce_c00273{bottom:89.441667px;}
.ycf_c00273{bottom:91.831278px;}
.yd0_c00273{bottom:92.720421px;}
.yd1_c00273{bottom:94.363275px;}
.yd2_c00273{bottom:95.291463px;}
.yd3_c00273{bottom:97.017024px;}
.yd4_c00273{bottom:97.655823px;}
.yc7_c00273{bottom:105.282030px;}
.yc8_c00273{bottom:106.136775px;}
.yc9_c00273{bottom:106.884300px;}
.yca_c00273{bottom:111.801420px;}
.ycb_c00273{bottom:113.664045px;}
.ycc_c00273{bottom:114.380295px;}
.yc0_c00273{bottom:122.022900px;}
.yc1_c00273{bottom:123.023175px;}
.yc2_c00273{bottom:124.586070px;}
.yc3_c00273{bottom:125.727030px;}
.yc4_c00273{bottom:126.010710px;}
.yc5_c00273{bottom:126.426255px;}
.yc6_c00273{bottom:127.865070px;}
.yb9_c00273{bottom:139.850970px;}
.yba_c00273{bottom:140.559000px;}
.ybb_c00273{bottom:141.736545px;}
.ybc_c00273{bottom:142.117380px;}
.ybd_c00273{bottom:143.780535px;}
.ybe_c00273{bottom:145.857600px;}
.ybf_c00273{bottom:146.883780px;}
.yb3_c00273{bottom:157.139040px;}
.yb4_c00273{bottom:158.086560px;}
.yb5_c00273{bottom:158.808735px;}
.yb6_c00273{bottom:160.611720px;}
.yb7_c00273{bottom:161.371350px;}
.yb8_c00273{bottom:162.528870px;}
.yaa_c00273{bottom:174.435000px;}
.yab_c00273{bottom:175.900200px;}
.yac_c00273{bottom:176.403390px;}
.yad_c00273{bottom:177.941445px;}
.yae_c00273{bottom:178.622250px;}
.yaf_c00273{bottom:179.319030px;}
.yb0_c00273{bottom:182.070105px;}
.yb1_c00273{bottom:182.484465px;}
.yb2_c00273{bottom:182.905980px;}
.ya2_c00273{bottom:193.593000px;}
.ya3_c00273{bottom:194.089692px;}
.ya4_c00273{bottom:195.236733px;}
.ya5_c00273{bottom:196.508703px;}
.ya6_c00273{bottom:197.049648px;}
.ya7_c00273{bottom:198.279039px;}
.ya8_c00273{bottom:198.774165px;}
.ya9_c00273{bottom:199.238187px;}
.y9c_c00273{bottom:210.063000px;}
.y9d_c00273{bottom:211.029983px;}
.y9e_c00273{bottom:211.488848px;}
.y9f_c00273{bottom:212.732310px;}
.ya0_c00273{bottom:213.635347px;}
.ya1_c00273{bottom:214.368555px;}
.y94_c00273{bottom:227.616000px;}
.y95_c00273{bottom:228.763539px;}
.y96_c00273{bottom:230.237206px;}
.y97_c00273{bottom:230.529421px;}
.y98_c00273{bottom:231.069967px;}
.y99_c00273{bottom:232.104346px;}
.y9a_c00273{bottom:232.740457px;}
.y9b_c00273{bottom:233.274655px;}
.y8e_c00273{bottom:244.832070px;}
.y8f_c00273{bottom:246.193140px;}
.y90_c00273{bottom:247.230270px;}
.y91_c00273{bottom:247.792290px;}
.y92_c00273{bottom:249.682140px;}
.y93_c00273{bottom:250.158120px;}
.y86_c00273{bottom:261.843690px;}
.y87_c00273{bottom:262.315110px;}
.y88_c00273{bottom:263.383020px;}
.y89_c00273{bottom:263.747580px;}
.y8a_c00273{bottom:265.351740px;}
.y8b_c00273{bottom:265.610130px;}
.y8c_c00273{bottom:266.419650px;}
.y8d_c00273{bottom:266.821710px;}
.y7e_c00273{bottom:278.587500px;}
.y7f_c00273{bottom:279.406530px;}
.y80_c00273{bottom:279.813600px;}
.y81_c00273{bottom:280.299840px;}
.y82_c00273{bottom:281.089260px;}
.y83_c00273{bottom:282.314610px;}
.y84_c00273{bottom:283.349370px;}
.y85_c00273{bottom:283.625700px;}
.y77_c00273{bottom:295.331010px;}
.y78_c00273{bottom:296.044200px;}
.y79_c00273{bottom:296.892150px;}
.y7a_c00273{bottom:298.005090px;}
.y7b_c00273{bottom:299.096100px;}
.y7c_c00273{bottom:300.138210px;}
.y7d_c00273{bottom:300.574230px;}
.y70_c00273{bottom:312.615810px;}
.y71_c00273{bottom:312.938760px;}
.y72_c00273{bottom:313.707510px;}
.y73_c00273{bottom:314.357070px;}
.y74_c00273{bottom:315.332970px;}
.y75_c00273{bottom:317.525370px;}
.y76_c00273{bottom:317.979750px;}
.y67_c00273{bottom:329.630700px;}
.y68_c00273{bottom:330.078270px;}
.y69_c00273{bottom:330.612300px;}
.y6a_c00273{bottom:332.407860px;}
.y6b_c00273{bottom:333.542190px;}
.y6c_c00273{bottom:334.004040px;}
.y6d_c00273{bottom:334.536060px;}
.y6e_c00273{bottom:335.969760px;}
.y6f_c00273{bottom:336.256200px;}
.y60_c00273{bottom:346.915650px;}
.y61_c00273{bottom:347.748060px;}
.y62_c00273{bottom:348.294060px;}
.y63_c00273{bottom:349.169640px;}
.y64_c00273{bottom:350.976060px;}
.y65_c00273{bottom:352.961490px;}
.y66_c00273{bottom:353.882610px;}
.y58_c00273{bottom:364.466670px;}
.y59_c00273{bottom:366.028890px;}
.y5a_c00273{bottom:366.384390px;}
.y5b_c00273{bottom:367.971060px;}
.y5c_c00273{bottom:369.594420px;}
.y5d_c00273{bottom:369.930390px;}
.y5e_c00273{bottom:370.555380px;}
.y5f_c00273{bottom:372.198600px;}
.y52_c00273{bottom:382.823610px;}
.y53_c00273{bottom:383.327070px;}
.y54_c00273{bottom:384.423240px;}
.y55_c00273{bottom:385.201800px;}
.y56_c00273{bottom:385.506420px;}
.y57_c00273{bottom:386.628930px;}
.y4b_c00273{bottom:399.570870px;}
.y4c_c00273{bottom:400.647780px;}
.y4d_c00273{bottom:401.032020px;}
.y4e_c00273{bottom:402.119610px;}
.y4f_c00273{bottom:402.791100px;}
.y50_c00273{bottom:403.904490px;}
.y51_c00273{bottom:404.397720px;}
.y43_c00273{bottom:417.393630px;}
.y44_c00273{bottom:417.937260px;}
.y45_c00273{bottom:418.843860px;}
.y46_c00273{bottom:419.098590px;}
.y47_c00273{bottom:419.988300px;}
.y48_c00273{bottom:420.495330px;}
.y49_c00273{bottom:421.321110px;}
.y4a_c00273{bottom:421.547040px;}
.y3b_c00273{bottom:435.216570px;}
.y3c_c00273{bottom:435.686790px;}
.y3d_c00273{bottom:436.150650px;}
.y3e_c00273{bottom:436.535610px;}
.y3f_c00273{bottom:437.511450px;}
.y40_c00273{bottom:437.966010px;}
.y41_c00273{bottom:438.407670px;}
.y42_c00273{bottom:439.435080px;}
.y33_c00273{bottom:451.152180px;}
.y34_c00273{bottom:451.783680px;}
.y35_c00273{bottom:453.368580px;}
.y36_c00273{bottom:454.117530px;}
.y37_c00273{bottom:454.493070px;}
.y38_c00273{bottom:455.713440px;}
.y39_c00273{bottom:455.964900px;}
.y3a_c00273{bottom:456.272430px;}
.y2b_c00273{bottom:468.166200px;}
.y2c_c00273{bottom:469.203120px;}
.y2d_c00273{bottom:469.691130px;}
.y2e_c00273{bottom:471.079020px;}
.y2f_c00273{bottom:471.301320px;}
.y30_c00273{bottom:471.619560px;}
.y31_c00273{bottom:472.604280px;}
.y32_c00273{bottom:473.630400px;}
.y23_c00273{bottom:485.720070px;}
.y24_c00273{bottom:486.451680px;}
.y25_c00273{bottom:487.525020px;}
.y26_c00273{bottom:487.899960px;}
.y27_c00273{bottom:489.278760px;}
.y28_c00273{bottom:489.566520px;}
.y29_c00273{bottom:489.906690px;}
.y2a_c00273{bottom:491.214840px;}
.y1c_c00273{bottom:502.465020px;}
.y1d_c00273{bottom:503.733780px;}
.y1e_c00273{bottom:504.133740px;}
.y1f_c00273{bottom:505.430250px;}
.y20_c00273{bottom:506.580450px;}
.y21_c00273{bottom:507.146040px;}
.y22_c00273{bottom:508.188030px;}
.y14_c00273{bottom:519.748320px;}
.y15_c00273{bottom:520.806930px;}
.y16_c00273{bottom:521.163480px;}
.y17_c00273{bottom:522.057960px;}
.y18_c00273{bottom:522.367980px;}
.y19_c00273{bottom:523.523790px;}
.y1a_c00273{bottom:524.701200px;}
.y1b_c00273{bottom:524.915220px;}
.yb_c00273{bottom:537.301470px;}
.yc_c00273{bottom:538.379850px;}
.yd_c00273{bottom:538.846110px;}
.ye_c00273{bottom:539.211840px;}
.yf_c00273{bottom:540.180180px;}
.y10_c00273{bottom:540.591150px;}
.y11_c00273{bottom:541.787670px;}
.y12_c00273{bottom:542.119260px;}
.y13_c00273{bottom:542.972400px;}
.y3_c00273{bottom:554.314500px;}
.y4_c00273{bottom:554.692530px;}
.y5_c00273{bottom:555.260070px;}
.y6_c00273{bottom:556.593720px;}
.y7_c00273{bottom:557.003700px;}
.y8_c00273{bottom:558.657060px;}
.y9_c00273{bottom:559.056570px;}
.ya_c00273{bottom:559.569690px;}
.y2_c00273{bottom:574.020000px;}
.y1_c00273{bottom:592.380000px;}
.h2_c00273{height:16.800000px;}
.h1b_c00273{height:26.250000px;}
.he_c00273{height:55.661129px;}
.hc_c00273{height:58.811759px;}
.hf_c00273{height:59.865828px;}
.h10_c00273{height:60.906851px;}
.h19_c00273{height:60.922194px;}
.h11_c00273{height:61.960035px;}
.h12_c00273{height:61.977871px;}
.h18_c00273{height:63.022959px;}
.h16_c00273{height:63.028344px;}
.h7_c00273{height:64.062809px;}
.h1a_c00273{height:64.073342px;}
.h17_c00273{height:65.081932px;}
.h9_c00273{height:65.113019px;}
.ha_c00273{height:66.163229px;}
.h15_c00273{height:66.179761px;}
.h3_c00273{height:67.200000px;}
.h8_c00273{height:67.213439px;}
.h14_c00273{height:67.230233px;}
.hb_c00273{height:68.263649px;}
.h13_c00273{height:68.280706px;}
.hd_c00273{height:69.313859px;}
.h4_c00273{height:70.364069px;}
.h5_c00273{height:71.414279px;}
.h6_c00273{height:72.464489px;}
.h1_c00273{height:618.750000px;}
.h0_c00273{height:619.050000px;}
.w0_c00273{width:359.100000px;}
.w1_c00273{width:359.250000px;}
.x0_c00273{left:0.000000px;}
.x66_c00273{left:25.857000px;}
.x3_c00273{left:29.149500px;}
.x27_c00273{left:30.482310px;}
.x56_c00273{left:31.841250px;}
.x6f_c00273{left:33.149145px;}
.x13_c00273{left:45.363030px;}
.x4_c00273{left:48.051000px;}
.x47_c00273{left:49.704150px;}
.x7c_c00273{left:52.410760px;}
.x34_c00273{left:55.269450px;}
.x73_c00273{left:58.225710px;}
.x61_c00273{left:59.928000px;}
.x45_c00273{left:62.320440px;}
.x2e_c00273{left:63.697110px;}
.x38_c00273{left:66.078720px;}
.x21_c00273{left:68.480940px;}
.x74_c00273{left:70.036903px;}
.x48_c00273{left:72.954270px;}
.x67_c00273{left:74.697000px;}
.x5_c00273{left:76.428000px;}
.x6c_c00273{left:77.495445px;}
.x1_c00273{left:79.380000px;}
.x5a_c00273{left:81.774000px;}
.xb_c00273{left:83.332230px;}
.x28_c00273{left:85.029390px;}
.x3d_c00273{left:86.658600px;}
.x41_c00273{left:90.407700px;}
.x68_c00273{left:91.470000px;}
.x1b_c00273{left:93.150300px;}
.x78_c00273{left:95.361429px;}
.x5f_c00273{left:96.547500px;}
.x14_c00273{left:98.293530px;}
.x57_c00273{left:99.894750px;}
.x42_c00273{left:104.056050px;}
.xc_c00273{left:106.645230px;}
.x4f_c00273{left:108.810240px;}
.x29_c00273{left:110.705400px;}
.x6d_c00273{left:111.877215px;}
.x1c_c00273{left:113.148300px;}
.x15_c00273{left:116.121030px;}
.x70_c00273{left:120.306585px;}
.x7d_c00273{left:121.838253px;}
.x62_c00273{left:123.652500px;}
.xd_c00273{left:124.931730px;}
.x39_c00273{left:126.564780px;}
.x52_c00273{left:131.503440px;}
.x75_c00273{left:132.858519px;}
.x35_c00273{left:137.653020px;}
.x6_c00273{left:143.110500px;}
.x22_c00273{left:144.721470px;}
.x5b_c00273{left:145.846500px;}
.x2f_c00273{left:147.143790px;}
.x71_c00273{left:148.880745px;}
.x49_c00273{left:151.027590px;}
.x51_c00273{left:156.375690px;}
.x5c_c00273{left:158.551500px;}
.x16_c00273{left:160.845030px;}
.x7_c00273{left:163.609500px;}
.x2_c00273{left:165.510000px;}
.x7a_c00273{left:169.404861px;}
.xe_c00273{left:173.348730px;}
.x17_c00273{left:176.346030px;}
.x1d_c00273{left:177.973800px;}
.x58_c00273{left:179.852250px;}
.x5d_c00273{left:182.053500px;}
.x2a_c00273{left:183.776370px;}
.x30_c00273{left:186.542070px;}
.x3f_c00273{left:188.684190px;}
.xf_c00273{left:193.897230px;}
.x2b_c00273{left:195.491610px;}
.x36_c00273{left:198.599880px;}
.x4a_c00273{left:200.316120px;}
.x3a_c00273{left:202.919430px;}
.x31_c00273{left:206.294460px;}
.x40_c00273{left:208.942200px;}
.x60_c00273{left:210.036000px;}
.x2c_c00273{left:212.228940px;}
.x72_c00273{left:213.684315px;}
.x53_c00273{left:215.913120px;}
.x23_c00273{left:217.262910px;}
.x50_c00273{left:219.007740px;}
.x4b_c00273{left:220.407420px;}
.x63_c00273{left:224.370000px;}
.x37_c00273{left:227.030160px;}
.x54_c00273{left:229.507890px;}
.x24_c00273{left:232.401210px;}
.x18_c00273{left:234.136530px;}
.x1e_c00273{left:235.483800px;}
.x3b_c00273{left:236.749320px;}
.x43_c00273{left:240.389670px;}
.x4c_c00273{left:243.557040px;}
.x8_c00273{left:246.277500px;}
.x77_c00273{left:247.854000px;}
.x25_c00273{left:250.310070px;}
.x10_c00273{left:253.723230px;}
.x3e_c00273{left:258.122550px;}
.x1f_c00273{left:263.763300px;}
.x9_c00273{left:266.253000px;}
.x76_c00273{left:269.189052px;}
.x11_c00273{left:270.302730px;}
.x55_c00273{left:272.084730px;}
.x59_c00273{left:274.344750px;}
.x5e_c00273{left:277.909500px;}
.x69_c00273{left:280.360500px;}
.x32_c00273{left:283.787520px;}
.x4e_c00273{left:285.939480px;}
.x6e_c00273{left:289.079550px;}
.xa_c00273{left:291.909000px;}
.x19_c00273{left:293.007030px;}
.x6a_c00273{left:294.172500px;}
.x7b_c00273{left:297.140188px;}
.x46_c00273{left:298.219620px;}
.x33_c00273{left:299.989350px;}
.x1a_c00273{left:303.708030px;}
.x4d_c00273{left:305.863290px;}
.x3c_c00273{left:306.891840px;}
.x6b_c00273{left:308.223000px;}
.x12_c00273{left:312.959730px;}
.x20_c00273{left:315.862800px;}
.x2d_c00273{left:318.098070px;}
.x26_c00273{left:319.168950px;}
.x64_c00273{left:320.176500px;}
.x44_c00273{left:327.614700px;}
.x79_c00273{left:329.012525px;}
.x65_c00273{left:345.955500px;}
.x7e_c00273{left:352.620000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs0_c00273{font-size:14.933333pt;}
.fs19_c00273{font-size:23.333333pt;}
.fsc_c00273{font-size:49.476559pt;}
.fsa_c00273{font-size:52.277119pt;}
.fsd_c00273{font-size:53.214070pt;}
.fse_c00273{font-size:54.139423pt;}
.fs17_c00273{font-size:54.153061pt;}
.fsf_c00273{font-size:55.075587pt;}
.fs10_c00273{font-size:55.091441pt;}
.fs16_c00273{font-size:56.020408pt;}
.fs14_c00273{font-size:56.025194pt;}
.fs5_c00273{font-size:56.944719pt;}
.fs18_c00273{font-size:56.954082pt;}
.fs15_c00273{font-size:57.850606pt;}
.fs7_c00273{font-size:57.878239pt;}
.fs8_c00273{font-size:58.811759pt;}
.fs13_c00273{font-size:58.826454pt;}
.fs1_c00273{font-size:59.733333pt;}
.fs6_c00273{font-size:59.745279pt;}
.fs12_c00273{font-size:59.760207pt;}
.fs9_c00273{font-size:60.678799pt;}
.fs11_c00273{font-size:60.693961pt;}
.fsb_c00273{font-size:61.612319pt;}
.fs2_c00273{font-size:62.545839pt;}
.fs3_c00273{font-size:63.479359pt;}
.fs4_c00273{font-size:64.412879pt;}
.y0_c00273{bottom:0.000000pt;}
.yeb_c00273{bottom:17.032277pt;}
.yec_c00273{bottom:17.412623pt;}
.yed_c00273{bottom:18.533468pt;}
.yee_c00273{bottom:18.832036pt;}
.yef_c00273{bottom:20.002624pt;}
.yf0_c00273{bottom:21.143769pt;}
.yf1_c00273{bottom:22.553680pt;}
.ye4_c00273{bottom:32.636885pt;}
.ye5_c00273{bottom:33.875779pt;}
.ye6_c00273{bottom:34.349876pt;}
.ye7_c00273{bottom:35.536972pt;}
.ye8_c00273{bottom:36.619573pt;}
.ye9_c00273{bottom:36.936333pt;}
.yea_c00273{bottom:38.262372pt;}
.yde_c00273{bottom:47.521667pt;}
.ydf_c00273{bottom:48.896289pt;}
.ye0_c00273{bottom:50.829947pt;}
.ye1_c00273{bottom:51.597621pt;}
.ye2_c00273{bottom:52.647765pt;}
.ye3_c00273{bottom:54.088947pt;}
.yd5_c00273{bottom:62.645333pt;}
.yd6_c00273{bottom:63.652865pt;}
.yd7_c00273{bottom:64.095089pt;}
.yd8_c00273{bottom:65.355413pt;}
.yd9_c00273{bottom:65.669837pt;}
.yda_c00273{bottom:67.215209pt;}
.ydb_c00273{bottom:67.791209pt;}
.ydc_c00273{bottom:68.215757pt;}
.ydd_c00273{bottom:69.331829pt;}
.ycd_c00273{bottom:78.250667pt;}
.yce_c00273{bottom:79.503704pt;}
.ycf_c00273{bottom:81.627803pt;}
.yd0_c00273{bottom:82.418152pt;}
.yd1_c00273{bottom:83.878467pt;}
.yd2_c00273{bottom:84.703523pt;}
.yd3_c00273{bottom:86.237355pt;}
.yd4_c00273{bottom:86.805176pt;}
.yc7_c00273{bottom:93.584027pt;}
.yc8_c00273{bottom:94.343800pt;}
.yc9_c00273{bottom:95.008267pt;}
.yca_c00273{bottom:99.379040pt;}
.ycb_c00273{bottom:101.034707pt;}
.ycc_c00273{bottom:101.671373pt;}
.yc0_c00273{bottom:108.464800pt;}
.yc1_c00273{bottom:109.353933pt;}
.yc2_c00273{bottom:110.743173pt;}
.yc3_c00273{bottom:111.757360pt;}
.yc4_c00273{bottom:112.009520pt;}
.yc5_c00273{bottom:112.378893pt;}
.yc6_c00273{bottom:113.657840pt;}
.yb9_c00273{bottom:124.311973pt;}
.yba_c00273{bottom:124.941333pt;}
.ybb_c00273{bottom:125.988040pt;}
.ybc_c00273{bottom:126.326560pt;}
.ybd_c00273{bottom:127.804920pt;}
.ybe_c00273{bottom:129.651200pt;}
.ybf_c00273{bottom:130.563360pt;}
.yb3_c00273{bottom:139.679147pt;}
.yb4_c00273{bottom:140.521387pt;}
.yb5_c00273{bottom:141.163320pt;}
.yb6_c00273{bottom:142.765973pt;}
.yb7_c00273{bottom:143.441200pt;}
.yb8_c00273{bottom:144.470107pt;}
.yaa_c00273{bottom:155.053333pt;}
.yab_c00273{bottom:156.355733pt;}
.yac_c00273{bottom:156.803013pt;}
.yad_c00273{bottom:158.170173pt;}
.yae_c00273{bottom:158.775333pt;}
.yaf_c00273{bottom:159.394693pt;}
.yb0_c00273{bottom:161.840093pt;}
.yb1_c00273{bottom:162.208413pt;}
.yb2_c00273{bottom:162.583093pt;}
.ya2_c00273{bottom:172.082667pt;}
.ya3_c00273{bottom:172.524171pt;}
.ya4_c00273{bottom:173.543763pt;}
.ya5_c00273{bottom:174.674403pt;}
.ya6_c00273{bottom:175.155243pt;}
.ya7_c00273{bottom:176.248035pt;}
.ya8_c00273{bottom:176.688147pt;}
.ya9_c00273{bottom:177.100611pt;}
.y9c_c00273{bottom:186.722667pt;}
.y9d_c00273{bottom:187.582207pt;}
.y9e_c00273{bottom:187.990087pt;}
.y9f_c00273{bottom:189.095387pt;}
.ya0_c00273{bottom:189.898087pt;}
.ya1_c00273{bottom:190.549827pt;}
.y94_c00273{bottom:202.325333pt;}
.y95_c00273{bottom:203.345368pt;}
.y96_c00273{bottom:204.655295pt;}
.y97_c00273{bottom:204.915041pt;}
.y98_c00273{bottom:205.395527pt;}
.y99_c00273{bottom:206.314975pt;}
.y9a_c00273{bottom:206.880407pt;}
.y9b_c00273{bottom:207.355249pt;}
.y8e_c00273{bottom:217.628507pt;}
.y8f_c00273{bottom:218.838347pt;}
.y90_c00273{bottom:219.760240pt;}
.y91_c00273{bottom:220.259813pt;}
.y92_c00273{bottom:221.939680pt;}
.y93_c00273{bottom:222.362773pt;}
.y86_c00273{bottom:232.749947pt;}
.y87_c00273{bottom:233.168987pt;}
.y88_c00273{bottom:234.118240pt;}
.y89_c00273{bottom:234.442293pt;}
.y8a_c00273{bottom:235.868213pt;}
.y8b_c00273{bottom:236.097893pt;}
.y8c_c00273{bottom:236.817467pt;}
.y8d_c00273{bottom:237.174853pt;}
.y7e_c00273{bottom:247.633333pt;}
.y7f_c00273{bottom:248.361360pt;}
.y80_c00273{bottom:248.723200pt;}
.y81_c00273{bottom:249.155413pt;}
.y82_c00273{bottom:249.857120pt;}
.y83_c00273{bottom:250.946320pt;}
.y84_c00273{bottom:251.866107pt;}
.y85_c00273{bottom:252.111733pt;}
.y77_c00273{bottom:262.516453pt;}
.y78_c00273{bottom:263.150400pt;}
.y79_c00273{bottom:263.904133pt;}
.y7a_c00273{bottom:264.893413pt;}
.y7b_c00273{bottom:265.863200pt;}
.y7c_c00273{bottom:266.789520pt;}
.y7d_c00273{bottom:267.177093pt;}
.y70_c00273{bottom:277.880720pt;}
.y71_c00273{bottom:278.167787pt;}
.y72_c00273{bottom:278.851120pt;}
.y73_c00273{bottom:279.428507pt;}
.y74_c00273{bottom:280.295973pt;}
.y75_c00273{bottom:282.244773pt;}
.y76_c00273{bottom:282.648667pt;}
.y67_c00273{bottom:293.005067pt;}
.y68_c00273{bottom:293.402907pt;}
.y69_c00273{bottom:293.877600pt;}
.y6a_c00273{bottom:295.473653pt;}
.y6b_c00273{bottom:296.481947pt;}
.y6c_c00273{bottom:296.892480pt;}
.y6d_c00273{bottom:297.365387pt;}
.y6e_c00273{bottom:298.639787pt;}
.y6f_c00273{bottom:298.894400pt;}
.y60_c00273{bottom:308.369467pt;}
.y61_c00273{bottom:309.109387pt;}
.y62_c00273{bottom:309.594720pt;}
.y63_c00273{bottom:310.373013pt;}
.y64_c00273{bottom:311.978720pt;}
.y65_c00273{bottom:313.743547pt;}
.y66_c00273{bottom:314.562320pt;}
.y58_c00273{bottom:323.970373pt;}
.y59_c00273{bottom:325.359013pt;}
.y5a_c00273{bottom:325.675013pt;}
.y5b_c00273{bottom:327.085387pt;}
.y5c_c00273{bottom:328.528373pt;}
.y5d_c00273{bottom:328.827013pt;}
.y5e_c00273{bottom:329.382560pt;}
.y5f_c00273{bottom:330.843200pt;}
.y52_c00273{bottom:340.287653pt;}
.y53_c00273{bottom:340.735173pt;}
.y54_c00273{bottom:341.709547pt;}
.y55_c00273{bottom:342.401600pt;}
.y56_c00273{bottom:342.672373pt;}
.y57_c00273{bottom:343.670160pt;}
.y4b_c00273{bottom:355.174107pt;}
.y4c_c00273{bottom:356.131360pt;}
.y4d_c00273{bottom:356.472907pt;}
.y4e_c00273{bottom:357.439653pt;}
.y4f_c00273{bottom:358.036533pt;}
.y50_c00273{bottom:359.026213pt;}
.y51_c00273{bottom:359.464640pt;}
.y43_c00273{bottom:371.016560pt;}
.y44_c00273{bottom:371.499787pt;}
.y45_c00273{bottom:372.305653pt;}
.y46_c00273{bottom:372.532080pt;}
.y47_c00273{bottom:373.322933pt;}
.y48_c00273{bottom:373.773627pt;}
.y49_c00273{bottom:374.507653pt;}
.y4a_c00273{bottom:374.708480pt;}
.y3b_c00273{bottom:386.859173pt;}
.y3c_c00273{bottom:387.277147pt;}
.y3d_c00273{bottom:387.689467pt;}
.y3e_c00273{bottom:388.031653pt;}
.y3f_c00273{bottom:388.899067pt;}
.y40_c00273{bottom:389.303120pt;}
.y41_c00273{bottom:389.695707pt;}
.y42_c00273{bottom:390.608960pt;}
.y33_c00273{bottom:401.024160pt;}
.y34_c00273{bottom:401.585493pt;}
.y35_c00273{bottom:402.994293pt;}
.y36_c00273{bottom:403.660027pt;}
.y37_c00273{bottom:403.993840pt;}
.y38_c00273{bottom:405.078613pt;}
.y39_c00273{bottom:405.302133pt;}
.y3a_c00273{bottom:405.575493pt;}
.y2b_c00273{bottom:416.147733pt;}
.y2c_c00273{bottom:417.069440pt;}
.y2d_c00273{bottom:417.503227pt;}
.y2e_c00273{bottom:418.736907pt;}
.y2f_c00273{bottom:418.934507pt;}
.y30_c00273{bottom:419.217387pt;}
.y31_c00273{bottom:420.092693pt;}
.y32_c00273{bottom:421.004800pt;}
.y23_c00273{bottom:431.751173pt;}
.y24_c00273{bottom:432.401493pt;}
.y25_c00273{bottom:433.355573pt;}
.y26_c00273{bottom:433.688853pt;}
.y27_c00273{bottom:434.914453pt;}
.y28_c00273{bottom:435.170240pt;}
.y29_c00273{bottom:435.472613pt;}
.y2a_c00273{bottom:436.635413pt;}
.y1c_c00273{bottom:446.635573pt;}
.y1d_c00273{bottom:447.763360pt;}
.y1e_c00273{bottom:448.118880pt;}
.y1f_c00273{bottom:449.271333pt;}
.y20_c00273{bottom:450.293733pt;}
.y21_c00273{bottom:450.796480pt;}
.y22_c00273{bottom:451.722693pt;}
.y14_c00273{bottom:461.998507pt;}
.y15_c00273{bottom:462.939493pt;}
.y16_c00273{bottom:463.256427pt;}
.y17_c00273{bottom:464.051520pt;}
.y18_c00273{bottom:464.327093pt;}
.y19_c00273{bottom:465.354480pt;}
.y1a_c00273{bottom:466.401067pt;}
.y1b_c00273{bottom:466.591307pt;}
.yb_c00273{bottom:477.601307pt;}
.yc_c00273{bottom:478.559867pt;}
.yd_c00273{bottom:478.974320pt;}
.ye_c00273{bottom:479.299413pt;}
.yf_c00273{bottom:480.160160pt;}
.y10_c00273{bottom:480.525467pt;}
.y11_c00273{bottom:481.589040pt;}
.y12_c00273{bottom:481.883787pt;}
.y13_c00273{bottom:482.642133pt;}
.y3_c00273{bottom:492.724000pt;}
.y4_c00273{bottom:493.060027pt;}
.y5_c00273{bottom:493.564507pt;}
.y6_c00273{bottom:494.749973pt;}
.y7_c00273{bottom:495.114400pt;}
.y8_c00273{bottom:496.584053pt;}
.y9_c00273{bottom:496.939173pt;}
.ya_c00273{bottom:497.395280pt;}
.y2_c00273{bottom:510.240000pt;}
.y1_c00273{bottom:526.560000pt;}
.h2_c00273{height:14.933333pt;}
.h1b_c00273{height:23.333333pt;}
.he_c00273{height:49.476559pt;}
.hc_c00273{height:52.277119pt;}
.hf_c00273{height:53.214070pt;}
.h10_c00273{height:54.139423pt;}
.h19_c00273{height:54.153061pt;}
.h11_c00273{height:55.075587pt;}
.h12_c00273{height:55.091441pt;}
.h18_c00273{height:56.020408pt;}
.h16_c00273{height:56.025194pt;}
.h7_c00273{height:56.944719pt;}
.h1a_c00273{height:56.954082pt;}
.h17_c00273{height:57.850606pt;}
.h9_c00273{height:57.878239pt;}
.ha_c00273{height:58.811759pt;}
.h15_c00273{height:58.826454pt;}
.h3_c00273{height:59.733333pt;}
.h8_c00273{height:59.745279pt;}
.h14_c00273{height:59.760207pt;}
.hb_c00273{height:60.678799pt;}
.h13_c00273{height:60.693961pt;}
.hd_c00273{height:61.612319pt;}
.h4_c00273{height:62.545839pt;}
.h5_c00273{height:63.479359pt;}
.h6_c00273{height:64.412879pt;}
.h1_c00273{height:550.000000pt;}
.h0_c00273{height:550.266667pt;}
.w0_c00273{width:319.200000pt;}
.w1_c00273{width:319.333333pt;}
.x0_c00273{left:0.000000pt;}
.x66_c00273{left:22.984000pt;}
.x3_c00273{left:25.910667pt;}
.x27_c00273{left:27.095387pt;}
.x56_c00273{left:28.303333pt;}
.x6f_c00273{left:29.465907pt;}
.x13_c00273{left:40.322693pt;}
.x4_c00273{left:42.712000pt;}
.x47_c00273{left:44.181467pt;}
.x7c_c00273{left:46.587343pt;}
.x34_c00273{left:49.128400pt;}
.x73_c00273{left:51.756187pt;}
.x61_c00273{left:53.269333pt;}
.x45_c00273{left:55.395947pt;}
.x2e_c00273{left:56.619653pt;}
.x38_c00273{left:58.736640pt;}
.x21_c00273{left:60.871947pt;}
.x74_c00273{left:62.255025pt;}
.x48_c00273{left:64.848240pt;}
.x67_c00273{left:66.397333pt;}
.x5_c00273{left:67.936000pt;}
.x6c_c00273{left:68.884840pt;}
.x1_c00273{left:70.560000pt;}
.x5a_c00273{left:72.688000pt;}
.xb_c00273{left:74.073093pt;}
.x28_c00273{left:75.581680pt;}
.x3d_c00273{left:77.029867pt;}
.x41_c00273{left:80.362400pt;}
.x68_c00273{left:81.306667pt;}
.x1b_c00273{left:82.800267pt;}
.x78_c00273{left:84.765715pt;}
.x5f_c00273{left:85.820000pt;}
.x14_c00273{left:87.372027pt;}
.x57_c00273{left:88.795333pt;}
.x42_c00273{left:92.494267pt;}
.xc_c00273{left:94.795760pt;}
.x4f_c00273{left:96.720213pt;}
.x29_c00273{left:98.404800pt;}
.x6d_c00273{left:99.446413pt;}
.x1c_c00273{left:100.576267pt;}
.x15_c00273{left:103.218693pt;}
.x70_c00273{left:106.939187pt;}
.x7d_c00273{left:108.300669pt;}
.x62_c00273{left:109.913333pt;}
.xd_c00273{left:111.050427pt;}
.x39_c00273{left:112.502027pt;}
.x52_c00273{left:116.891947pt;}
.x75_c00273{left:118.096461pt;}
.x35_c00273{left:122.358240pt;}
.x6_c00273{left:127.209333pt;}
.x22_c00273{left:128.641307pt;}
.x5b_c00273{left:129.641333pt;}
.x2f_c00273{left:130.794480pt;}
.x71_c00273{left:132.338440pt;}
.x49_c00273{left:134.246747pt;}
.x51_c00273{left:139.000613pt;}
.x5c_c00273{left:140.934667pt;}
.x16_c00273{left:142.973360pt;}
.x7_c00273{left:145.430667pt;}
.x2_c00273{left:147.120000pt;}
.x7a_c00273{left:150.582099pt;}
.xe_c00273{left:154.087760pt;}
.x17_c00273{left:156.752027pt;}
.x1d_c00273{left:158.198933pt;}
.x58_c00273{left:159.868667pt;}
.x5d_c00273{left:161.825333pt;}
.x2a_c00273{left:163.356773pt;}
.x30_c00273{left:165.815173pt;}
.x3f_c00273{left:167.719280pt;}
.xf_c00273{left:172.353093pt;}
.x2b_c00273{left:173.770320pt;}
.x36_c00273{left:176.533227pt;}
.x4a_c00273{left:178.058773pt;}
.x3a_c00273{left:180.372827pt;}
.x31_c00273{left:183.372853pt;}
.x40_c00273{left:185.726400pt;}
.x60_c00273{left:186.698667pt;}
.x2c_c00273{left:188.647947pt;}
.x72_c00273{left:189.941613pt;}
.x53_c00273{left:191.922773pt;}
.x23_c00273{left:193.122587pt;}
.x50_c00273{left:194.673547pt;}
.x4b_c00273{left:195.917707pt;}
.x63_c00273{left:199.440000pt;}
.x37_c00273{left:201.804587pt;}
.x54_c00273{left:204.007013pt;}
.x24_c00273{left:206.578853pt;}
.x18_c00273{left:208.121360pt;}
.x1e_c00273{left:209.318933pt;}
.x3b_c00273{left:210.443840pt;}
.x43_c00273{left:213.679707pt;}
.x4c_c00273{left:216.495147pt;}
.x8_c00273{left:218.913333pt;}
.x77_c00273{left:220.314667pt;}
.x25_c00273{left:222.497840pt;}
.x10_c00273{left:225.531760pt;}
.x3e_c00273{left:229.442267pt;}
.x1f_c00273{left:234.456267pt;}
.x9_c00273{left:236.669333pt;}
.x76_c00273{left:239.279157pt;}
.x11_c00273{left:240.269093pt;}
.x55_c00273{left:241.853093pt;}
.x59_c00273{left:243.862000pt;}
.x5e_c00273{left:247.030667pt;}
.x69_c00273{left:249.209333pt;}
.x32_c00273{left:252.255573pt;}
.x4e_c00273{left:254.168427pt;}
.x6e_c00273{left:256.959600pt;}
.xa_c00273{left:259.474667pt;}
.x19_c00273{left:260.450693pt;}
.x6a_c00273{left:261.486667pt;}
.x7b_c00273{left:264.124612pt;}
.x46_c00273{left:265.084107pt;}
.x33_c00273{left:266.657200pt;}
.x1a_c00273{left:269.962693pt;}
.x4d_c00273{left:271.878480pt;}
.x3c_c00273{left:272.792747pt;}
.x6b_c00273{left:273.976000pt;}
.x12_c00273{left:278.186427pt;}
.x20_c00273{left:280.766933pt;}
.x2d_c00273{left:282.753840pt;}
.x26_c00273{left:283.705733pt;}
.x64_c00273{left:284.601333pt;}
.x44_c00273{left:291.213067pt;}
.x79_c00273{left:292.455577pt;}
.x65_c00273{left:307.516000pt;}
.x7e_c00273{left:313.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00274 {
    display:none;
  }
  .loading-indicator_c00274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00274 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00274 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00274" -> "#page-container .classname_c00274")
 */
.pf_c00274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00274 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00274 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00274 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00274 {overflow:visible;}
  }
}
.c_c00274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00274 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00274:after { /* webkit #35443 */
  content: '';
}
.t_c00274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00274 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00274 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00274 { /* info for Javascript */
  display:none;
}
.l_c00274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00274:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00274 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00274.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00274;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00274{transform:matrix(0.072513,0.002323,-0.008004,0.249872,0,0);-ms-transform:matrix(0.072513,0.002323,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.072513,0.002323,-0.008004,0.249872,0,0);}
.me7_c00274{transform:matrix(0.074929,0.002475,-0.008254,0.249864,0,0);-ms-transform:matrix(0.074929,0.002475,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.074929,0.002475,-0.008254,0.249864,0,0);}
.mc_c00274{transform:matrix(0.086265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086265,0.000000,0.000000,0.250000,0,0);}
.m52_c00274{transform:matrix(0.126905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126905,0.000000,0.000000,0.250000,0,0);}
.m56_c00274{transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);}
.m98_c00274{transform:matrix(0.138393,0.003598,-0.006498,0.249916,0,0);-ms-transform:matrix(0.138393,0.003598,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.138393,0.003598,-0.006498,0.249916,0,0);}
.m6_c00274{transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.141692,0.003684,-0.006498,0.249916,0,0);-ms-transform:matrix(0.141692,0.003684,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.141692,0.003684,-0.006498,0.249916,0,0);}
.m38_c00274{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00274{transform:matrix(0.146543,0.003517,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146543,0.003517,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146543,0.003517,-0.005998,0.249928,0,0);}
.m1_c00274{transform:matrix(0.147745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147745,0.000000,0.000000,0.250000,0,0);}
.m58_c00274{transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);}
.meb_c00274{transform:matrix(0.151416,0.004240,-0.006997,0.249902,0,0);-ms-transform:matrix(0.151416,0.004240,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.151416,0.004240,-0.006997,0.249902,0,0);}
.mee_c00274{transform:matrix(0.153115,0.004287,-0.006997,0.249902,0,0);-ms-transform:matrix(0.153115,0.004287,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.153115,0.004287,-0.006997,0.249902,0,0);}
.m31_c00274{transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153420,0.000000,0.000000,0.250000,0,0);}
.md5_c00274{transform:matrix(0.153571,0.004919,-0.008004,0.249872,0,0);-ms-transform:matrix(0.153571,0.004919,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.153571,0.004919,-0.008004,0.249872,0,0);}
.mef_c00274{transform:matrix(0.155164,0.004345,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155164,0.004345,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155164,0.004345,-0.006997,0.249902,0,0);}
.m92_c00274{transform:matrix(0.155427,0.004041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155427,0.004041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155427,0.004041,-0.006498,0.249916,0,0);}
.m7f_c00274{transform:matrix(0.155642,0.004047,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155642,0.004047,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155642,0.004047,-0.006498,0.249916,0,0);}
.m4_c00274{transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);}
.mea_c00274{transform:matrix(0.158178,0.004429,-0.006997,0.249902,0,0);-ms-transform:matrix(0.158178,0.004429,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.158178,0.004429,-0.006997,0.249902,0,0);}
.m16_c00274{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.med_c00274{transform:matrix(0.161482,0.004521,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161482,0.004521,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161482,0.004521,-0.006997,0.249902,0,0);}
.mdb_c00274{transform:matrix(0.161642,0.005178,-0.008004,0.249872,0,0);-ms-transform:matrix(0.161642,0.005178,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.161642,0.005178,-0.008004,0.249872,0,0);}
.mce_c00274{transform:matrix(0.162157,0.005194,-0.008004,0.249872,0,0);-ms-transform:matrix(0.162157,0.005194,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.162157,0.005194,-0.008004,0.249872,0,0);}
.m35_c00274{transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);}
.md0_c00274{transform:matrix(0.162687,0.005211,-0.008004,0.249872,0,0);-ms-transform:matrix(0.162687,0.005211,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.162687,0.005211,-0.008004,0.249872,0,0);}
.m14_c00274{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.maa_c00274{transform:matrix(0.164373,0.003945,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164373,0.003945,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164373,0.003945,-0.005998,0.249928,0,0);}
.m25_c00274{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m93_c00274{transform:matrix(0.167478,0.004354,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167478,0.004354,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167478,0.004354,-0.006498,0.249916,0,0);}
.m59_c00274{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00274{transform:matrix(0.167578,0.004357,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167578,0.004357,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167578,0.004357,-0.006498,0.249916,0,0);}
.m75_c00274{transform:matrix(0.168773,0.004388,-0.006498,0.249916,0,0);-ms-transform:matrix(0.168773,0.004388,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.168773,0.004388,-0.006498,0.249916,0,0);}
.m3c_c00274{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.169618,0.004410,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169618,0.004410,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169618,0.004410,-0.006498,0.249916,0,0);}
.m66_c00274{transform:matrix(0.169696,0.003394,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169696,0.003394,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169696,0.003394,-0.004999,0.249950,0,0);}
.m9e_c00274{transform:matrix(0.170013,0.004420,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170013,0.004420,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170013,0.004420,-0.006498,0.249916,0,0);}
.m86_c00274{transform:matrix(0.170162,0.004424,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170162,0.004424,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170162,0.004424,-0.006498,0.249916,0,0);}
.ma5_c00274{transform:matrix(0.170321,0.004088,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170321,0.004088,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170321,0.004088,-0.005998,0.249928,0,0);}
.m8f_c00274{transform:matrix(0.170757,0.004440,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170757,0.004440,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170757,0.004440,-0.006498,0.249916,0,0);}
.ma3_c00274{transform:matrix(0.170846,0.004100,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170846,0.004100,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170846,0.004100,-0.005998,0.249928,0,0);}
.m54_c00274{transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{transform:matrix(0.172172,0.005515,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172172,0.005515,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172172,0.005515,-0.008004,0.249872,0,0);}
.m8b_c00274{transform:matrix(0.173151,0.004502,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173151,0.004502,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173151,0.004502,-0.006498,0.249916,0,0);}
.m40_c00274{transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.mcd_c00274{transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);}
.m73_c00274{transform:matrix(0.174491,0.004537,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174491,0.004537,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174491,0.004537,-0.006498,0.249916,0,0);}
.ma6_c00274{transform:matrix(0.174940,0.004199,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174940,0.004199,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174940,0.004199,-0.005998,0.249928,0,0);}
.md3_c00274{transform:matrix(0.174945,0.005604,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174945,0.005604,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174945,0.005604,-0.008004,0.249872,0,0);}
.m1c_c00274{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.mca_c00274{transform:matrix(0.175255,0.005614,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175255,0.005614,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175255,0.005614,-0.008004,0.249872,0,0);}
.m2f_c00274{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m6d_c00274{transform:matrix(0.176290,0.004584,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176290,0.004584,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176290,0.004584,-0.006498,0.249916,0,0);}
.me9_c00274{transform:matrix(0.176571,0.004944,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176571,0.004944,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176571,0.004944,-0.006997,0.249902,0,0);}
.m78_c00274{transform:matrix(0.176700,0.004594,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176700,0.004594,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176700,0.004594,-0.006498,0.249916,0,0);}
.m37_c00274{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00274{transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);}
.m76_c00274{transform:matrix(0.177260,0.004609,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177260,0.004609,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177260,0.004609,-0.006498,0.249916,0,0);}
.m90_c00274{transform:matrix(0.177410,0.004613,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177410,0.004613,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177410,0.004613,-0.006498,0.249916,0,0);}
.mec_c00274{transform:matrix(0.177635,0.004974,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177635,0.004974,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177635,0.004974,-0.006997,0.249902,0,0);}
.mde_c00274{transform:matrix(0.177744,0.005693,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177744,0.005693,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177744,0.005693,-0.008004,0.249872,0,0);}
.m7c_c00274{transform:matrix(0.178125,0.004631,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178125,0.004631,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178125,0.004631,-0.006498,0.249916,0,0);}
.mb5_c00274{transform:matrix(0.178184,0.003029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178184,0.003029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178184,0.003029,-0.004249,0.249964,0,0);}
.m46_c00274{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.mb9_c00274{transform:matrix(0.178779,0.003039,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178779,0.003039,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178779,0.003039,-0.004249,0.249964,0,0);}
.m1a_c00274{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m81_c00274{transform:matrix(0.180079,0.004682,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180079,0.004682,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180079,0.004682,-0.006498,0.249916,0,0);}
.m36_c00274{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);}
.m9a_c00274{transform:matrix(0.181544,0.004720,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181544,0.004720,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181544,0.004720,-0.006498,0.249916,0,0);}
.m82_c00274{transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181579,0.004721,-0.006498,0.249916,0,0);}
.m62_c00274{transform:matrix(0.181724,0.003634,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181724,0.003634,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181724,0.003634,-0.004999,0.249950,0,0);}
.m8e_c00274{transform:matrix(0.181998,0.004732,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181998,0.004732,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181998,0.004732,-0.006498,0.249916,0,0);}
.ma_c00274{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.182264,0.003098,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182264,0.003098,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182264,0.003098,-0.004249,0.249964,0,0);}
.m99_c00274{transform:matrix(0.182388,0.004742,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182388,0.004742,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182388,0.004742,-0.006498,0.249916,0,0);}
.ma2_c00274{transform:matrix(0.182513,0.004745,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182513,0.004745,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182513,0.004745,-0.006498,0.249916,0,0);}
.mb_c00274{transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);}
.mc7_c00274{transform:matrix(0.182901,0.005859,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182901,0.005859,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182901,0.005859,-0.008004,0.249872,0,0);}
.m5_c00274{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{transform:matrix(0.183116,0.005866,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183116,0.005866,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183116,0.005866,-0.008004,0.249872,0,0);}
.m6e_c00274{transform:matrix(0.184688,0.004802,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184688,0.004802,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184688,0.004802,-0.006498,0.249916,0,0);}
.m7_c00274{transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m79_c00274{transform:matrix(0.184928,0.004808,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184928,0.004808,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184928,0.004808,-0.006498,0.249916,0,0);}
.m6c_c00274{transform:matrix(0.184992,0.004810,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184992,0.004810,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184992,0.004810,-0.006498,0.249916,0,0);}
.m4d_c00274{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.me0_c00274{transform:matrix(0.185290,0.005935,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185290,0.005935,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185290,0.005935,-0.008004,0.249872,0,0);}
.m1b_c00274{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m9f_c00274{transform:matrix(0.186107,0.004839,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186107,0.004839,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186107,0.004839,-0.006498,0.249916,0,0);}
.m80_c00274{transform:matrix(0.186142,0.004840,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186142,0.004840,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186142,0.004840,-0.006498,0.249916,0,0);}
.mdf_c00274{transform:matrix(0.186329,0.005969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186329,0.005969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186329,0.005969,-0.008004,0.249872,0,0);}
.m74_c00274{transform:matrix(0.186357,0.004845,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186357,0.004845,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186357,0.004845,-0.006498,0.249916,0,0);}
.m51_c00274{transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.mdc_c00274{transform:matrix(0.186919,0.005987,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186919,0.005987,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186919,0.005987,-0.008004,0.249872,0,0);}
.md8_c00274{transform:matrix(0.187104,0.005993,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187104,0.005993,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187104,0.005993,-0.008004,0.249872,0,0);}
.ma4_c00274{transform:matrix(0.187706,0.004505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187706,0.004505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187706,0.004505,-0.005998,0.249928,0,0);}
.m67_c00274{transform:matrix(0.188122,0.003762,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188122,0.003762,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188122,0.003762,-0.004999,0.249950,0,0);}
.ma8_c00274{transform:matrix(0.188481,0.004524,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188481,0.004524,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188481,0.004524,-0.005998,0.249928,0,0);}
.mb6_c00274{transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188603,0.003206,-0.004249,0.249964,0,0);}
.m77_c00274{transform:matrix(0.188971,0.004913,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188971,0.004913,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188971,0.004913,-0.006498,0.249916,0,0);}
.m95_c00274{transform:matrix(0.189171,0.004918,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189171,0.004918,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189171,0.004918,-0.006498,0.249916,0,0);}
.m2c_c00274{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.mcf_c00274{transform:matrix(0.190142,0.006091,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190142,0.006091,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190142,0.006091,-0.008004,0.249872,0,0);}
.m57_c00274{transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00274{transform:matrix(0.190296,0.004948,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190296,0.004948,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190296,0.004948,-0.006498,0.249916,0,0);}
.m87_c00274{transform:matrix(0.191430,0.004977,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191430,0.004977,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191430,0.004977,-0.006498,0.249916,0,0);}
.ma7_c00274{transform:matrix(0.191460,0.004595,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191460,0.004595,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191460,0.004595,-0.005998,0.249928,0,0);}
.m17_c00274{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.m64_c00274{transform:matrix(0.192487,0.003850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192487,0.003850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192487,0.003850,-0.004999,0.249950,0,0);}
.m27_c00274{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.mae_c00274{transform:matrix(0.193084,0.004634,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193084,0.004634,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193084,0.004634,-0.005998,0.249928,0,0);}
.md6_c00274{transform:matrix(0.193301,0.006192,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193301,0.006192,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193301,0.006192,-0.008004,0.249872,0,0);}
.m12_c00274{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.m5d_c00274{transform:matrix(0.193988,0.002910,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193988,0.002910,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193988,0.002910,-0.003750,0.249972,0,0);}
.m68_c00274{transform:matrix(0.194006,0.003880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194006,0.003880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194006,0.003880,-0.004999,0.249950,0,0);}
.m91_c00274{transform:matrix(0.194739,0.005063,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194739,0.005063,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194739,0.005063,-0.006498,0.249916,0,0);}
.m42_c00274{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.195161,0.003903,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195161,0.003903,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195161,0.003903,-0.004999,0.249950,0,0);}
.m49_c00274{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{transform:matrix(0.195659,0.004696,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195659,0.004696,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195659,0.004696,-0.005998,0.249928,0,0);}
.mbb_c00274{transform:matrix(0.195667,0.003326,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195667,0.003326,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195667,0.003326,-0.004249,0.249964,0,0);}
.m72_c00274{transform:matrix(0.196294,0.005104,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196294,0.005104,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196294,0.005104,-0.006498,0.249916,0,0);}
.m2e_c00274{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.196784,0.006303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196784,0.006303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196784,0.006303,-0.008004,0.249872,0,0);}
.mc0_c00274{transform:matrix(0.197057,0.003350,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197057,0.003350,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197057,0.003350,-0.004249,0.249964,0,0);}
.m83_c00274{transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197098,0.005125,-0.006498,0.249916,0,0);}
.md2_c00274{transform:matrix(0.197124,0.006314,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197124,0.006314,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197124,0.006314,-0.008004,0.249872,0,0);}
.m19_c00274{transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197380,0.000000,0.000000,0.250000,0,0);}
.m55_c00274{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m9d_c00274{transform:matrix(0.197808,0.005143,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197808,0.005143,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197808,0.005143,-0.006498,0.249916,0,0);}
.me5_c00274{transform:matrix(0.198542,0.006558,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198542,0.006558,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198542,0.006558,-0.008254,0.249864,0,0);}
.m9_c00274{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.mc2_c00274{transform:matrix(0.198773,0.006367,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198773,0.006367,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198773,0.006367,-0.008004,0.249872,0,0);}
.m4b_c00274{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m6b_c00274{transform:matrix(0.199223,0.005180,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199223,0.005180,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199223,0.005180,-0.006498,0.249916,0,0);}
.m53_c00274{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.me6_c00274{transform:matrix(0.200985,0.006639,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200985,0.006639,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200985,0.006639,-0.008254,0.249864,0,0);}
.m85_c00274{transform:matrix(0.201602,0.005242,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201602,0.005242,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201602,0.005242,-0.006498,0.249916,0,0);}
.m43_c00274{transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.202367,0.005262,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202367,0.005262,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202367,0.005262,-0.006498,0.249916,0,0);}
.m1f_c00274{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{transform:matrix(0.203071,0.005280,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203071,0.005280,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203071,0.005280,-0.006498,0.249916,0,0);}
.m22_c00274{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.me4_c00274{transform:matrix(0.203459,0.006721,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203459,0.006721,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203459,0.006721,-0.008254,0.249864,0,0);}
.m9b_c00274{transform:matrix(0.203841,0.005300,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203841,0.005300,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203841,0.005300,-0.006498,0.249916,0,0);}
.mc4_c00274{transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);}
.m94_c00274{transform:matrix(0.204071,0.005306,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204071,0.005306,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204071,0.005306,-0.006498,0.249916,0,0);}
.m3e_c00274{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00274{transform:matrix(0.204391,0.005314,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204391,0.005314,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204391,0.005314,-0.006498,0.249916,0,0);}
.me3_c00274{transform:matrix(0.204448,0.006754,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204448,0.006754,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204448,0.006754,-0.008254,0.249864,0,0);}
.m7b_c00274{transform:matrix(0.204531,0.005318,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204531,0.005318,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204531,0.005318,-0.006498,0.249916,0,0);}
.m45_c00274{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m47_c00274{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m96_c00274{transform:matrix(0.205755,0.005350,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205755,0.005350,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205755,0.005350,-0.006498,0.249916,0,0);}
.mbc_c00274{transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206605,0.003512,-0.004249,0.249964,0,0);}
.m21_c00274{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00274{transform:matrix(0.207100,0.005385,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207100,0.005385,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207100,0.005385,-0.006498,0.249916,0,0);}
.m41_c00274{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m7e_c00274{transform:matrix(0.207740,0.005401,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207740,0.005401,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207740,0.005401,-0.006498,0.249916,0,0);}
.m30_c00274{transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.mb4_c00274{transform:matrix(0.208655,0.003547,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208655,0.003547,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208655,0.003547,-0.004249,0.249964,0,0);}
.mc6_c00274{transform:matrix(0.208743,0.006686,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208743,0.006686,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208743,0.006686,-0.008004,0.249872,0,0);}
.md4_c00274{transform:matrix(0.209782,0.006720,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209782,0.006720,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209782,0.006720,-0.008004,0.249872,0,0);}
.m4f_c00274{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);}
.m23_c00274{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00274{transform:matrix(0.213584,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213584,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213584,0.003631,-0.004249,0.249964,0,0);}
.m3a_c00274{transform:matrix(0.213880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213880,0.000000,0.000000,0.250000,0,0);}
.mb0_c00274{transform:matrix(0.214568,0.005150,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214568,0.005150,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214568,0.005150,-0.005998,0.249928,0,0);}
.m8a_c00274{transform:matrix(0.215527,0.005604,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215527,0.005604,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215527,0.005604,-0.006498,0.249916,0,0);}
.m50_c00274{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.mad_c00274{transform:matrix(0.216698,0.005201,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216698,0.005201,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216698,0.005201,-0.005998,0.249928,0,0);}
.m2d_c00274{transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);}
.mb3_c00274{transform:matrix(0.218463,0.003714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218463,0.003714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218463,0.003714,-0.004249,0.249964,0,0);}
.me8_c00274{transform:matrix(0.220385,0.007280,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220385,0.007280,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220385,0.007280,-0.008254,0.249864,0,0);}
.mb7_c00274{transform:matrix(0.222143,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222143,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222143,0.003776,-0.004249,0.249964,0,0);}
.m71_c00274{transform:matrix(0.225684,0.005868,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225684,0.005868,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225684,0.005868,-0.006498,0.249916,0,0);}
.mcb_c00274{transform:matrix(0.226209,0.007246,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226209,0.007246,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226209,0.007246,-0.008004,0.249872,0,0);}
.m5a_c00274{transform:matrix(0.226425,0.003396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226425,0.003396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226425,0.003396,-0.003750,0.249972,0,0);}
.mc1_c00274{transform:matrix(0.227533,0.007288,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227533,0.007288,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227533,0.007288,-0.008004,0.249872,0,0);}
.mdd_c00274{transform:matrix(0.227798,0.007297,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227798,0.007297,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227798,0.007297,-0.008004,0.249872,0,0);}
.m5f_c00274{transform:matrix(0.227889,0.003418,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227889,0.003418,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227889,0.003418,-0.003750,0.249972,0,0);}
.m84_c00274{transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);}
.m3d_c00274{transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);}
.me1_c00274{transform:matrix(0.229040,0.007566,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229040,0.007566,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229040,0.007566,-0.008254,0.249864,0,0);}
.m63_c00274{transform:matrix(0.230984,0.004620,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230984,0.004620,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230984,0.004620,-0.004999,0.249950,0,0);}
.m97_c00274{transform:matrix(0.231287,0.006013,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231287,0.006013,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231287,0.006013,-0.006498,0.249916,0,0);}
.m8d_c00274{transform:matrix(0.232137,0.006036,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232137,0.006036,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232137,0.006036,-0.006498,0.249916,0,0);}
.m48_c00274{transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);}
.maf_c00274{transform:matrix(0.234363,0.005625,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234363,0.005625,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234363,0.005625,-0.005998,0.249928,0,0);}
.m6a_c00274{transform:matrix(0.236343,0.004727,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236343,0.004727,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236343,0.004727,-0.004999,0.249950,0,0);}
.m70_c00274{transform:matrix(0.238344,0.006197,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238344,0.006197,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238344,0.006197,-0.006498,0.249916,0,0);}
.m5e_c00274{transform:matrix(0.239848,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239848,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239848,0.003598,-0.003750,0.249972,0,0);}
.m1d_c00274{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m61_c00274{transform:matrix(0.244597,0.003669,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244597,0.003669,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244597,0.003669,-0.003750,0.249972,0,0);}
.m60_c00274{transform:matrix(0.244692,0.003670,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244692,0.003670,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244692,0.003670,-0.003750,0.249972,0,0);}
.m3b_c00274{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.mcc_c00274{transform:matrix(0.247113,0.007916,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247113,0.007916,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247113,0.007916,-0.008004,0.249872,0,0);}
.mb8_c00274{transform:matrix(0.248454,0.004224,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248454,0.004224,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248454,0.004224,-0.004249,0.249964,0,0);}
.m69_c00274{transform:matrix(0.249670,0.004993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249670,0.004993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249670,0.004993,-0.004999,0.249950,0,0);}
.m5c_c00274{transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);}
.mb2_c00274{transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);}
.m9c_c00274{transform:matrix(0.262156,0.006816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262156,0.006816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262156,0.006816,-0.006498,0.249916,0,0);}
.mba_c00274{transform:matrix(0.263127,0.004473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263127,0.004473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263127,0.004473,-0.004249,0.249964,0,0);}
.m5b_c00274{transform:matrix(0.263580,0.003954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263580,0.003954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263580,0.003954,-0.003750,0.249972,0,0);}
.mf_c00274{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{transform:matrix(0.276478,0.008856,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276478,0.008856,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276478,0.008856,-0.008004,0.249872,0,0);}
.mb1_c00274{transform:matrix(0.280265,0.004764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280265,0.004764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280265,0.004764,-0.004249,0.249964,0,0);}
.mab_c00274{transform:matrix(0.293076,0.007034,-0.005998,0.249928,0,0);-ms-transform:matrix(0.293076,0.007034,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.293076,0.007034,-0.005998,0.249928,0,0);}
.mbd_c00274{transform:matrix(0.298742,0.005079,-0.004249,0.249964,0,0);-ms-transform:matrix(0.298742,0.005079,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.298742,0.005079,-0.004249,0.249964,0,0);}
.me_c00274{transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);}
.md9_c00274{transform:matrix(0.346772,0.011108,-0.008004,0.249872,0,0);-ms-transform:matrix(0.346772,0.011108,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.346772,0.011108,-0.008004,0.249872,0,0);}
.m26_c00274{transform:matrix(0.351015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);}
.mda_c00274{transform:matrix(0.578718,0.018538,-0.008004,0.249872,0,0);-ms-transform:matrix(0.578718,0.018538,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.578718,0.018538,-0.008004,0.249872,0,0);}
.md1_c00274{transform:matrix(0.686278,0.021983,-0.008004,0.249872,0,0);-ms-transform:matrix(0.686278,0.021983,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.686278,0.021983,-0.008004,0.249872,0,0);}
.me2_c00274{transform:matrix(0.828103,0.027355,-0.008254,0.249864,0,0);-ms-transform:matrix(0.828103,0.027355,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.828103,0.027355,-0.008254,0.249864,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:0.000000px;}
.fc0_c00274{color:transparent;}
.fs7_c00274{font-size:54.606142px;}
.fsf_c00274{font-size:58.808496px;}
.fs9_c00274{font-size:60.920581px;}
.fsc_c00274{font-size:61.970936px;}
.fs13_c00274{font-size:62.969280px;}
.fs14_c00274{font-size:62.971328px;}
.fs5_c00274{font-size:63.000000px;}
.fs8_c00274{font-size:63.012599px;}
.fs10_c00274{font-size:64.018768px;}
.fse_c00274{font-size:64.068444px;}
.fs12_c00274{font-size:65.068256px;}
.fs3_c00274{font-size:65.100000px;}
.fs4_c00274{font-size:66.150000px;}
.fsb_c00274{font-size:66.172355px;}
.fs2_c00274{font-size:67.200000px;}
.fs11_c00274{font-size:68.216720px;}
.fsd_c00274{font-size:69.319956px;}
.fsa_c00274{font-size:69.323419px;}
.fs1_c00274{font-size:70.350000px;}
.fs6_c00274{font-size:71.400000px;}
.fs15_c00274{font-size:71.427983px;}
.fs0_c00274{font-size:78.750000px;}
.y0_c00274{bottom:0.000000px;}
.yef_c00274{bottom:21.825822px;}
.yee_c00274{bottom:23.555550px;}
.yed_c00274{bottom:24.341496px;}
.yec_c00274{bottom:25.834050px;}
.yeb_c00274{bottom:26.588286px;}
.yea_c00274{bottom:27.141006px;}
.ye9_c00274{bottom:28.090500px;}
.ye8_c00274{bottom:39.619744px;}
.ye7_c00274{bottom:39.980154px;}
.ye6_c00274{bottom:42.344026px;}
.ye5_c00274{bottom:43.011633px;}
.ye4_c00274{bottom:44.013513px;}
.ye3_c00274{bottom:44.868329px;}
.ye2_c00274{bottom:47.573751px;}
.ye1_c00274{bottom:48.598500px;}
.ye0_c00274{bottom:57.031164px;}
.ydf_c00274{bottom:58.082280px;}
.yde_c00274{bottom:58.689087px;}
.ydd_c00274{bottom:60.539823px;}
.ydc_c00274{bottom:62.815342px;}
.ydb_c00274{bottom:63.432699px;}
.yda_c00274{bottom:64.389174px;}
.yd9_c00274{bottom:65.104388px;}
.yd8_c00274{bottom:73.055451px;}
.yd7_c00274{bottom:73.297577px;}
.yd6_c00274{bottom:75.131293px;}
.yd5_c00274{bottom:75.666729px;}
.yd4_c00274{bottom:76.053709px;}
.yd3_c00274{bottom:77.353239px;}
.yd2_c00274{bottom:78.697463px;}
.yd1_c00274{bottom:81.298767px;}
.yd0_c00274{bottom:90.177633px;}
.ycf_c00274{bottom:90.584643px;}
.yce_c00274{bottom:91.003442px;}
.ycd_c00274{bottom:91.373448px;}
.ycc_c00274{bottom:91.648602px;}
.ycb_c00274{bottom:92.949090px;}
.yca_c00274{bottom:93.463355px;}
.yc9_c00274{bottom:93.973656px;}
.yc8_c00274{bottom:108.337416px;}
.yc7_c00274{bottom:109.002648px;}
.yc6_c00274{bottom:110.194104px;}
.yc5_c00274{bottom:112.096968px;}
.yc4_c00274{bottom:114.295656px;}
.yc3_c00274{bottom:114.892872px;}
.yc2_c00274{bottom:115.523832px;}
.yc1_c00274{bottom:116.925000px;}
.yc0_c00274{bottom:124.835386px;}
.ybf_c00274{bottom:126.751665px;}
.ybe_c00274{bottom:127.260722px;}
.ybd_c00274{bottom:127.967872px;}
.ybc_c00274{bottom:129.934012px;}
.ybb_c00274{bottom:130.453128px;}
.yba_c00274{bottom:131.320279px;}
.yb9_c00274{bottom:132.781898px;}
.yb8_c00274{bottom:133.662622px;}
.yb7_c00274{bottom:142.104652px;}
.yb6_c00274{bottom:143.049580px;}
.yb5_c00274{bottom:143.348109px;}
.yb4_c00274{bottom:143.747617px;}
.yb3_c00274{bottom:144.551454px;}
.yb2_c00274{bottom:145.928964px;}
.yb1_c00274{bottom:146.176722px;}
.yb0_c00274{bottom:146.884500px;}
.yaf_c00274{bottom:160.006056px;}
.yae_c00274{bottom:160.819080px;}
.yad_c00274{bottom:161.348496px;}
.yac_c00274{bottom:162.316812px;}
.yab_c00274{bottom:162.905868px;}
.yaa_c00274{bottom:163.347852px;}
.ya9_c00274{bottom:177.608496px;}
.ya8_c00274{bottom:178.065948px;}
.ya7_c00274{bottom:179.209524px;}
.ya6_c00274{bottom:180.428808px;}
.ya5_c00274{bottom:181.795692px;}
.ya4_c00274{bottom:182.750628px;}
.ya3_c00274{bottom:183.429264px;}
.ya2_c00274{bottom:183.877500px;}
.ya1_c00274{bottom:193.161348px;}
.ya0_c00274{bottom:195.048462px;}
.y9f_c00274{bottom:195.433536px;}
.y9e_c00274{bottom:197.462358px;}
.y9d_c00274{bottom:198.386964px;}
.y9c_c00274{bottom:200.516919px;}
.y9b_c00274{bottom:201.667968px;}
.y9a_c00274{bottom:210.255750px;}
.y99_c00274{bottom:211.459074px;}
.y98_c00274{bottom:212.572035px;}
.y97_c00274{bottom:213.378501px;}
.y96_c00274{bottom:215.763294px;}
.y95_c00274{bottom:216.440736px;}
.y94_c00274{bottom:217.287948px;}
.y93_c00274{bottom:219.766653px;}
.y92_c00274{bottom:227.907543px;}
.y91_c00274{bottom:228.491124px;}
.y90_c00274{bottom:229.232739px;}
.y8f_c00274{bottom:230.732973px;}
.y8e_c00274{bottom:231.289779px;}
.y8d_c00274{bottom:233.245200px;}
.y8c_c00274{bottom:233.764740px;}
.y8b_c00274{bottom:234.345960px;}
.y8a_c00274{bottom:245.831895px;}
.y89_c00274{bottom:247.284084px;}
.y88_c00274{bottom:247.566000px;}
.y87_c00274{bottom:248.924619px;}
.y86_c00274{bottom:250.441650px;}
.y85_c00274{bottom:251.057355px;}
.y84_c00274{bottom:252.243990px;}
.y83_c00274{bottom:252.709455px;}
.y82_c00274{bottom:263.070183px;}
.y81_c00274{bottom:264.412806px;}
.y80_c00274{bottom:265.025727px;}
.y7f_c00274{bottom:266.273544px;}
.y7e_c00274{bottom:266.795091px;}
.y7d_c00274{bottom:267.217290px;}
.y7c_c00274{bottom:269.034993px;}
.y7b_c00274{bottom:270.437127px;}
.y7a_c00274{bottom:271.078458px;}
.y79_c00274{bottom:282.966270px;}
.y78_c00274{bottom:283.705845px;}
.y77_c00274{bottom:284.254992px;}
.y76_c00274{bottom:285.154800px;}
.y75_c00274{bottom:286.493676px;}
.y74_c00274{bottom:286.795842px;}
.y73_c00274{bottom:287.507718px;}
.y72_c00274{bottom:288.089247px;}
.y71_c00274{bottom:298.907988px;}
.y70_c00274{bottom:300.052755px;}
.y6f_c00274{bottom:301.492284px;}
.y6e_c00274{bottom:301.969683px;}
.y6d_c00274{bottom:303.303405px;}
.y6c_c00274{bottom:303.738879px;}
.y6b_c00274{bottom:304.290729px;}
.y6a_c00274{bottom:305.647500px;}
.y69_c00274{bottom:322.923720px;}
.y68_c00274{bottom:334.723440px;}
.y67_c00274{bottom:334.955280px;}
.y66_c00274{bottom:335.970180px;}
.y65_c00274{bottom:336.369600px;}
.y64_c00274{bottom:337.374330px;}
.y63_c00274{bottom:338.055660px;}
.y62_c00274{bottom:338.410380px;}
.y61_c00274{bottom:339.394500px;}
.y60_c00274{bottom:350.574488px;}
.y5f_c00274{bottom:351.404760px;}
.y5e_c00274{bottom:351.789465px;}
.y5d_c00274{bottom:352.793820px;}
.y5c_c00274{bottom:353.267198px;}
.y5b_c00274{bottom:353.624340px;}
.y5a_c00274{bottom:354.625253px;}
.y59_c00274{bottom:354.783000px;}
.y58_c00274{bottom:367.332000px;}
.y57_c00274{bottom:367.552500px;}
.y56_c00274{bottom:368.349000px;}
.y55_c00274{bottom:368.568000px;}
.y54_c00274{bottom:369.469500px;}
.y53_c00274{bottom:370.101000px;}
.y52_c00274{bottom:370.470000px;}
.y51_c00274{bottom:370.713000px;}
.y50_c00274{bottom:384.610500px;}
.y4f_c00274{bottom:385.299000px;}
.y4e_c00274{bottom:386.161500px;}
.y4d_c00274{bottom:386.412000px;}
.y4c_c00274{bottom:386.920500px;}
.y4b_c00274{bottom:387.789000px;}
.y4a_c00274{bottom:387.979500px;}
.y49_c00274{bottom:388.263000px;}
.y48_c00274{bottom:400.569000px;}
.y47_c00274{bottom:401.281500px;}
.y46_c00274{bottom:401.569500px;}
.y45_c00274{bottom:402.682500px;}
.y44_c00274{bottom:402.844500px;}
.y43_c00274{bottom:403.585500px;}
.y42_c00274{bottom:404.731500px;}
.y41_c00274{bottom:417.561000px;}
.y40_c00274{bottom:418.630500px;}
.y3f_c00274{bottom:419.094000px;}
.y3e_c00274{bottom:419.377500px;}
.y3d_c00274{bottom:420.595500px;}
.y3c_c00274{bottom:421.641000px;}
.y3b_c00274{bottom:422.442000px;}
.y3a_c00274{bottom:422.805000px;}
.y39_c00274{bottom:423.903000px;}
.y38_c00274{bottom:434.629500px;}
.y37_c00274{bottom:434.758500px;}
.y36_c00274{bottom:435.670500px;}
.y35_c00274{bottom:436.675500px;}
.y34_c00274{bottom:437.068500px;}
.y33_c00274{bottom:437.419500px;}
.y32_c00274{bottom:437.926500px;}
.y31_c00274{bottom:438.154500px;}
.y30_c00274{bottom:438.753000px;}
.y2f_c00274{bottom:452.692500px;}
.y2e_c00274{bottom:453.553500px;}
.y2d_c00274{bottom:454.336500px;}
.y2c_c00274{bottom:455.154000px;}
.y2b_c00274{bottom:456.049500px;}
.y2a_c00274{bottom:456.303000px;}
.y29_c00274{bottom:470.025000px;}
.y28_c00274{bottom:471.498000px;}
.y27_c00274{bottom:471.915000px;}
.y26_c00274{bottom:472.449000px;}
.y25_c00274{bottom:473.563500px;}
.y24_c00274{bottom:474.010500px;}
.y23_c00274{bottom:474.396000px;}
.y22_c00274{bottom:487.176000px;}
.y21_c00274{bottom:487.315500px;}
.y20_c00274{bottom:487.963500px;}
.y1f_c00274{bottom:488.284500px;}
.y1e_c00274{bottom:488.601000px;}
.y1d_c00274{bottom:489.561000px;}
.y1c_c00274{bottom:489.672000px;}
.y1b_c00274{bottom:490.054500px;}
.y1a_c00274{bottom:504.469500px;}
.y19_c00274{bottom:505.821000px;}
.y18_c00274{bottom:506.092500px;}
.y17_c00274{bottom:507.531000px;}
.y16_c00274{bottom:507.802500px;}
.y15_c00274{bottom:508.684500px;}
.y14_c00274{bottom:521.748000px;}
.y13_c00274{bottom:522.292500px;}
.y12_c00274{bottom:522.529500px;}
.y11_c00274{bottom:522.696000px;}
.y10_c00274{bottom:523.335000px;}
.yf_c00274{bottom:523.896000px;}
.ye_c00274{bottom:524.217000px;}
.yd_c00274{bottom:524.883000px;}
.yc_c00274{bottom:540.360000px;}
.yb_c00274{bottom:555.898500px;}
.ya_c00274{bottom:556.207500px;}
.y9_c00274{bottom:556.372500px;}
.y8_c00274{bottom:556.899000px;}
.y7_c00274{bottom:557.119500px;}
.y6_c00274{bottom:557.484000px;}
.y5_c00274{bottom:558.327000px;}
.y4_c00274{bottom:558.565500px;}
.y3_c00274{bottom:559.008000px;}
.y2_c00274{bottom:559.443000px;}
.y1_c00274{bottom:571.050000px;}
.h9_c00274{height:54.606142px;}
.h11_c00274{height:58.808496px;}
.hb_c00274{height:60.920581px;}
.he_c00274{height:61.970936px;}
.h15_c00274{height:62.969280px;}
.h16_c00274{height:62.971328px;}
.h7_c00274{height:63.000000px;}
.ha_c00274{height:63.012599px;}
.h12_c00274{height:64.018768px;}
.h10_c00274{height:64.068444px;}
.h14_c00274{height:65.068256px;}
.h5_c00274{height:65.100000px;}
.h6_c00274{height:66.150000px;}
.hd_c00274{height:66.172355px;}
.h4_c00274{height:67.200000px;}
.h13_c00274{height:68.216720px;}
.hf_c00274{height:69.319956px;}
.hc_c00274{height:69.323419px;}
.h3_c00274{height:70.350000px;}
.h8_c00274{height:71.400000px;}
.h17_c00274{height:71.427983px;}
.h2_c00274{height:78.750000px;}
.h1_c00274{height:618.750000px;}
.h0_c00274{height:619.050000px;}
.w0_c00274{width:359.100000px;}
.w1_c00274{width:359.250000px;}
.x0_c00274{left:0.000000px;}
.x68_c00274{left:23.205000px;}
.x1a_c00274{left:25.449000px;}
.x32_c00274{left:27.585000px;}
.x22_c00274{left:29.175000px;}
.x2_c00274{left:30.856500px;}
.x4a_c00274{left:31.863060px;}
.xf_c00274{left:34.153500px;}
.x44_c00274{left:43.815000px;}
.x3b_c00274{left:46.252500px;}
.x40_c00274{left:47.356500px;}
.x29_c00274{left:48.427500px;}
.x23_c00274{left:50.578500px;}
.x4e_c00274{left:55.493394px;}
.x1b_c00274{left:57.291000px;}
.x3c_c00274{left:58.956000px;}
.x67_c00274{left:60.833304px;}
.x72_c00274{left:62.144481px;}
.x3_c00274{left:64.372500px;}
.x1c_c00274{left:66.556500px;}
.x5e_c00274{left:68.003112px;}
.x56_c00274{left:69.035670px;}
.x2d_c00274{left:71.401500px;}
.x62_c00274{left:74.202000px;}
.x24_c00274{left:75.403500px;}
.x33_c00274{left:77.487000px;}
.x69_c00274{left:79.413000px;}
.x7f_c00274{left:83.322000px;}
.x16_c00274{left:85.143000px;}
.x70_c00274{left:86.168496px;}
.x2e_c00274{left:87.651000px;}
.x79_c00274{left:89.911257px;}
.xc_c00274{left:93.690000px;}
.x4_c00274{left:98.391000px;}
.x50_c00274{left:100.456302px;}
.x17_c00274{left:102.148500px;}
.x71_c00274{left:104.812833px;}
.x38_c00274{left:105.933000px;}
.xd_c00274{left:108.000000px;}
.x45_c00274{left:110.542500px;}
.x74_c00274{left:112.143263px;}
.x63_c00274{left:113.991000px;}
.x4b_c00274{left:114.994500px;}
.x5_c00274{left:116.755500px;}
.x10_c00274{left:123.795000px;}
.x5a_c00274{left:125.751363px;}
.x48_c00274{left:127.009500px;}
.x34_c00274{left:130.428000px;}
.x6d_c00274{left:133.273548px;}
.x46_c00274{left:134.352000px;}
.x25_c00274{left:137.301000px;}
.x5f_c00274{left:139.013241px;}
.x7c_c00274{left:144.008465px;}
.x1d_c00274{left:146.503500px;}
.x2f_c00274{left:148.906500px;}
.x3d_c00274{left:150.751500px;}
.x39_c00274{left:155.344500px;}
.x75_c00274{left:158.463365px;}
.x6a_c00274{left:160.443000px;}
.x80_c00274{left:163.909500px;}
.x1_c00274{left:165.510000px;}
.x26_c00274{left:166.986000px;}
.x57_c00274{left:169.527783px;}
.x64_c00274{left:170.944500px;}
.x1e_c00274{left:172.902000px;}
.x11_c00274{left:174.819000px;}
.xe_c00274{left:176.040000px;}
.x35_c00274{left:177.960000px;}
.x2a_c00274{left:180.207000px;}
.x6_c00274{left:181.608000px;}
.x51_c00274{left:183.431157px;}
.x4c_c00274{left:184.653000px;}
.x54_c00274{left:187.391514px;}
.x27_c00274{left:190.131000px;}
.x18_c00274{left:192.043500px;}
.x49_c00274{left:197.217000px;}
.x1f_c00274{left:199.647000px;}
.x73_c00274{left:201.358836px;}
.x52_c00274{left:202.740150px;}
.x41_c00274{left:205.927500px;}
.x6b_c00274{left:207.727500px;}
.x7_c00274{left:209.679000px;}
.x6e_c00274{left:213.445974px;}
.x76_c00274{left:216.546297px;}
.x5b_c00274{left:218.531976px;}
.x7d_c00274{left:220.425971px;}
.x65_c00274{left:221.748000px;}
.x3e_c00274{left:225.009000px;}
.x8_c00274{left:226.633500px;}
.x58_c00274{left:229.538343px;}
.x6c_c00274{left:231.228000px;}
.x12_c00274{left:232.882500px;}
.x77_c00274{left:234.994608px;}
.x6f_c00274{left:236.243542px;}
.x60_c00274{left:237.481023px;}
.x2b_c00274{left:240.421500px;}
.x5c_c00274{left:242.968530px;}
.x55_c00274{left:243.975939px;}
.x36_c00274{left:246.249000px;}
.x13_c00274{left:248.047500px;}
.x61_c00274{left:250.328697px;}
.x20_c00274{left:253.659000px;}
.x4f_c00274{left:255.640320px;}
.x47_c00274{left:258.514500px;}
.x3a_c00274{left:259.554000px;}
.x21_c00274{left:265.254000px;}
.x9_c00274{left:267.136500px;}
.x14_c00274{left:269.592000px;}
.x3f_c00274{left:270.910500px;}
.x28_c00274{left:271.939500px;}
.x7a_c00274{left:274.271490px;}
.x5d_c00274{left:276.710907px;}
.xa_c00274{left:279.817500px;}
.x59_c00274{left:282.585747px;}
.x4d_c00274{left:284.049000px;}
.x66_c00274{left:288.457500px;}
.x42_c00274{left:290.650500px;}
.x7e_c00274{left:291.986838px;}
.x19_c00274{left:293.559000px;}
.x78_c00274{left:298.141452px;}
.xb_c00274{left:303.580500px;}
.x2c_c00274{left:306.630000px;}
.x43_c00274{left:309.066000px;}
.x7b_c00274{left:310.457727px;}
.x30_c00274{left:313.912500px;}
.x37_c00274{left:315.898500px;}
.x15_c00274{left:319.044000px;}
.x53_c00274{left:321.385569px;}
.x31_c00274{left:323.091000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.fs7_c00274{font-size:48.538793pt;}
.fsf_c00274{font-size:52.274219pt;}
.fs9_c00274{font-size:54.151627pt;}
.fsc_c00274{font-size:55.085276pt;}
.fs13_c00274{font-size:55.972693pt;}
.fs14_c00274{font-size:55.974514pt;}
.fs5_c00274{font-size:56.000000pt;}
.fs8_c00274{font-size:56.011199pt;}
.fs10_c00274{font-size:56.905572pt;}
.fse_c00274{font-size:56.949728pt;}
.fs12_c00274{font-size:57.838450pt;}
.fs3_c00274{font-size:57.866667pt;}
.fs4_c00274{font-size:58.800000pt;}
.fsb_c00274{font-size:58.819871pt;}
.fs2_c00274{font-size:59.733333pt;}
.fs11_c00274{font-size:60.637084pt;}
.fsd_c00274{font-size:61.617738pt;}
.fsa_c00274{font-size:61.620817pt;}
.fs1_c00274{font-size:62.533333pt;}
.fs6_c00274{font-size:63.466667pt;}
.fs15_c00274{font-size:63.491541pt;}
.fs0_c00274{font-size:70.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.yef_c00274{bottom:19.400731pt;}
.yee_c00274{bottom:20.938267pt;}
.yed_c00274{bottom:21.636885pt;}
.yec_c00274{bottom:22.963600pt;}
.yeb_c00274{bottom:23.634032pt;}
.yea_c00274{bottom:24.125339pt;}
.ye9_c00274{bottom:24.969333pt;}
.ye8_c00274{bottom:35.217551pt;}
.ye7_c00274{bottom:35.537915pt;}
.ye6_c00274{bottom:37.639135pt;}
.ye5_c00274{bottom:38.232563pt;}
.ye4_c00274{bottom:39.123123pt;}
.ye3_c00274{bottom:39.882959pt;}
.ye2_c00274{bottom:42.287779pt;}
.ye1_c00274{bottom:43.198667pt;}
.ye0_c00274{bottom:50.694368pt;}
.ydf_c00274{bottom:51.628693pt;}
.yde_c00274{bottom:52.168077pt;}
.ydd_c00274{bottom:53.813176pt;}
.ydc_c00274{bottom:55.835860pt;}
.ydb_c00274{bottom:56.384621pt;}
.yda_c00274{bottom:57.234821pt;}
.yd9_c00274{bottom:57.870567pt;}
.yd8_c00274{bottom:64.938179pt;}
.yd7_c00274{bottom:65.153401pt;}
.yd6_c00274{bottom:66.783372pt;}
.yd5_c00274{bottom:67.259315pt;}
.yd4_c00274{bottom:67.603297pt;}
.yd3_c00274{bottom:68.758435pt;}
.yd2_c00274{bottom:69.953300pt;}
.yd1_c00274{bottom:72.265571pt;}
.yd0_c00274{bottom:80.157896pt;}
.ycf_c00274{bottom:80.519683pt;}
.yce_c00274{bottom:80.891948pt;}
.ycd_c00274{bottom:81.220843pt;}
.ycc_c00274{bottom:81.465424pt;}
.ycb_c00274{bottom:82.621413pt;}
.yca_c00274{bottom:83.078537pt;}
.yc9_c00274{bottom:83.532139pt;}
.yc8_c00274{bottom:96.299925pt;}
.yc7_c00274{bottom:96.891243pt;}
.yc6_c00274{bottom:97.950315pt;}
.yc5_c00274{bottom:99.641749pt;}
.yc4_c00274{bottom:101.596139pt;}
.yc3_c00274{bottom:102.126997pt;}
.yc2_c00274{bottom:102.687851pt;}
.yc1_c00274{bottom:103.933333pt;}
.yc0_c00274{bottom:110.964788pt;}
.ybf_c00274{bottom:112.668147pt;}
.ybe_c00274{bottom:113.120641pt;}
.ybd_c00274{bottom:113.749220pt;}
.ybc_c00274{bottom:115.496900pt;}
.ybb_c00274{bottom:115.958336pt;}
.yba_c00274{bottom:116.729137pt;}
.yb9_c00274{bottom:118.028353pt;}
.yb8_c00274{bottom:118.811220pt;}
.yb7_c00274{bottom:126.315247pt;}
.yb6_c00274{bottom:127.155183pt;}
.yb5_c00274{bottom:127.420541pt;}
.yb4_c00274{bottom:127.775660pt;}
.yb3_c00274{bottom:128.490181pt;}
.yb2_c00274{bottom:129.714635pt;}
.yb1_c00274{bottom:129.934864pt;}
.yb0_c00274{bottom:130.564000pt;}
.yaf_c00274{bottom:142.227605pt;}
.yae_c00274{bottom:142.950293pt;}
.yad_c00274{bottom:143.420885pt;}
.yac_c00274{bottom:144.281611pt;}
.yab_c00274{bottom:144.805216pt;}
.yaa_c00274{bottom:145.198091pt;}
.ya9_c00274{bottom:157.874219pt;}
.ya8_c00274{bottom:158.280843pt;}
.ya7_c00274{bottom:159.297355pt;}
.ya6_c00274{bottom:160.381163pt;}
.ya5_c00274{bottom:161.596171pt;}
.ya4_c00274{bottom:162.445003pt;}
.ya3_c00274{bottom:163.048235pt;}
.ya2_c00274{bottom:163.446667pt;}
.ya1_c00274{bottom:171.698976pt;}
.ya0_c00274{bottom:173.376411pt;}
.y9f_c00274{bottom:173.718699pt;}
.y9e_c00274{bottom:175.522096pt;}
.y9d_c00274{bottom:176.343968pt;}
.y9c_c00274{bottom:178.237261pt;}
.y9b_c00274{bottom:179.260416pt;}
.y9a_c00274{bottom:186.894000pt;}
.y99_c00274{bottom:187.963621pt;}
.y98_c00274{bottom:188.952920pt;}
.y97_c00274{bottom:189.669779pt;}
.y96_c00274{bottom:191.789595pt;}
.y95_c00274{bottom:192.391765pt;}
.y94_c00274{bottom:193.144843pt;}
.y93_c00274{bottom:195.348136pt;}
.y92_c00274{bottom:202.584483pt;}
.y91_c00274{bottom:203.103221pt;}
.y90_c00274{bottom:203.762435pt;}
.y8f_c00274{bottom:205.095976pt;}
.y8e_c00274{bottom:205.590915pt;}
.y8d_c00274{bottom:207.329067pt;}
.y8c_c00274{bottom:207.790880pt;}
.y8b_c00274{bottom:208.307520pt;}
.y8a_c00274{bottom:218.517240pt;}
.y89_c00274{bottom:219.808075pt;}
.y88_c00274{bottom:220.058667pt;}
.y87_c00274{bottom:221.266328pt;}
.y86_c00274{bottom:222.614800pt;}
.y85_c00274{bottom:223.162093pt;}
.y84_c00274{bottom:224.216880pt;}
.y83_c00274{bottom:224.630627pt;}
.y82_c00274{bottom:233.840163pt;}
.y81_c00274{bottom:235.033605pt;}
.y80_c00274{bottom:235.578424pt;}
.y7f_c00274{bottom:236.687595pt;}
.y7e_c00274{bottom:237.151192pt;}
.y7d_c00274{bottom:237.526480pt;}
.y7c_c00274{bottom:239.142216pt;}
.y7b_c00274{bottom:240.388557pt;}
.y7a_c00274{bottom:240.958629pt;}
.y79_c00274{bottom:251.525573pt;}
.y78_c00274{bottom:252.182973pt;}
.y77_c00274{bottom:252.671104pt;}
.y76_c00274{bottom:253.470933pt;}
.y75_c00274{bottom:254.661045pt;}
.y74_c00274{bottom:254.929637pt;}
.y73_c00274{bottom:255.562416pt;}
.y72_c00274{bottom:256.079331pt;}
.y71_c00274{bottom:265.695989pt;}
.y70_c00274{bottom:266.713560pt;}
.y6f_c00274{bottom:267.993141pt;}
.y6e_c00274{bottom:268.417496pt;}
.y6d_c00274{bottom:269.603027pt;}
.y6c_c00274{bottom:269.990115pt;}
.y6b_c00274{bottom:270.480648pt;}
.y6a_c00274{bottom:271.686667pt;}
.y69_c00274{bottom:287.043307pt;}
.y68_c00274{bottom:297.531947pt;}
.y67_c00274{bottom:297.738027pt;}
.y66_c00274{bottom:298.640160pt;}
.y65_c00274{bottom:298.995200pt;}
.y64_c00274{bottom:299.888293pt;}
.y63_c00274{bottom:300.493920pt;}
.y62_c00274{bottom:300.809227pt;}
.y61_c00274{bottom:301.684000pt;}
.y60_c00274{bottom:311.621767pt;}
.y5f_c00274{bottom:312.359787pt;}
.y5e_c00274{bottom:312.701747pt;}
.y5d_c00274{bottom:313.594507pt;}
.y5c_c00274{bottom:314.015287pt;}
.y5b_c00274{bottom:314.332747pt;}
.y5a_c00274{bottom:315.222447pt;}
.y59_c00274{bottom:315.362667pt;}
.y58_c00274{bottom:326.517333pt;}
.y57_c00274{bottom:326.713333pt;}
.y56_c00274{bottom:327.421333pt;}
.y55_c00274{bottom:327.616000pt;}
.y54_c00274{bottom:328.417333pt;}
.y53_c00274{bottom:328.978667pt;}
.y52_c00274{bottom:329.306667pt;}
.y51_c00274{bottom:329.522667pt;}
.y50_c00274{bottom:341.876000pt;}
.y4f_c00274{bottom:342.488000pt;}
.y4e_c00274{bottom:343.254667pt;}
.y4d_c00274{bottom:343.477333pt;}
.y4c_c00274{bottom:343.929333pt;}
.y4b_c00274{bottom:344.701333pt;}
.y4a_c00274{bottom:344.870667pt;}
.y49_c00274{bottom:345.122667pt;}
.y48_c00274{bottom:356.061333pt;}
.y47_c00274{bottom:356.694667pt;}
.y46_c00274{bottom:356.950667pt;}
.y45_c00274{bottom:357.940000pt;}
.y44_c00274{bottom:358.084000pt;}
.y43_c00274{bottom:358.742667pt;}
.y42_c00274{bottom:359.761333pt;}
.y41_c00274{bottom:371.165333pt;}
.y40_c00274{bottom:372.116000pt;}
.y3f_c00274{bottom:372.528000pt;}
.y3e_c00274{bottom:372.780000pt;}
.y3d_c00274{bottom:373.862667pt;}
.y3c_c00274{bottom:374.792000pt;}
.y3b_c00274{bottom:375.504000pt;}
.y3a_c00274{bottom:375.826667pt;}
.y39_c00274{bottom:376.802667pt;}
.y38_c00274{bottom:386.337333pt;}
.y37_c00274{bottom:386.452000pt;}
.y36_c00274{bottom:387.262667pt;}
.y35_c00274{bottom:388.156000pt;}
.y34_c00274{bottom:388.505333pt;}
.y33_c00274{bottom:388.817333pt;}
.y32_c00274{bottom:389.268000pt;}
.y31_c00274{bottom:389.470667pt;}
.y30_c00274{bottom:390.002667pt;}
.y2f_c00274{bottom:402.393333pt;}
.y2e_c00274{bottom:403.158667pt;}
.y2d_c00274{bottom:403.854667pt;}
.y2c_c00274{bottom:404.581333pt;}
.y2b_c00274{bottom:405.377333pt;}
.y2a_c00274{bottom:405.602667pt;}
.y29_c00274{bottom:417.800000pt;}
.y28_c00274{bottom:419.109333pt;}
.y27_c00274{bottom:419.480000pt;}
.y26_c00274{bottom:419.954667pt;}
.y25_c00274{bottom:420.945333pt;}
.y24_c00274{bottom:421.342667pt;}
.y23_c00274{bottom:421.685333pt;}
.y22_c00274{bottom:433.045333pt;}
.y21_c00274{bottom:433.169333pt;}
.y20_c00274{bottom:433.745333pt;}
.y1f_c00274{bottom:434.030667pt;}
.y1e_c00274{bottom:434.312000pt;}
.y1d_c00274{bottom:435.165333pt;}
.y1c_c00274{bottom:435.264000pt;}
.y1b_c00274{bottom:435.604000pt;}
.y1a_c00274{bottom:448.417333pt;}
.y19_c00274{bottom:449.618667pt;}
.y18_c00274{bottom:449.860000pt;}
.y17_c00274{bottom:451.138667pt;}
.y16_c00274{bottom:451.380000pt;}
.y15_c00274{bottom:452.164000pt;}
.y14_c00274{bottom:463.776000pt;}
.y13_c00274{bottom:464.260000pt;}
.y12_c00274{bottom:464.470667pt;}
.y11_c00274{bottom:464.618667pt;}
.y10_c00274{bottom:465.186667pt;}
.yf_c00274{bottom:465.685333pt;}
.ye_c00274{bottom:465.970667pt;}
.yd_c00274{bottom:466.562667pt;}
.yc_c00274{bottom:480.320000pt;}
.yb_c00274{bottom:494.132000pt;}
.ya_c00274{bottom:494.406667pt;}
.y9_c00274{bottom:494.553333pt;}
.y8_c00274{bottom:495.021333pt;}
.y7_c00274{bottom:495.217333pt;}
.y6_c00274{bottom:495.541333pt;}
.y5_c00274{bottom:496.290667pt;}
.y4_c00274{bottom:496.502667pt;}
.y3_c00274{bottom:496.896000pt;}
.y2_c00274{bottom:497.282667pt;}
.y1_c00274{bottom:507.600000pt;}
.h9_c00274{height:48.538793pt;}
.h11_c00274{height:52.274219pt;}
.hb_c00274{height:54.151627pt;}
.he_c00274{height:55.085276pt;}
.h15_c00274{height:55.972693pt;}
.h16_c00274{height:55.974514pt;}
.h7_c00274{height:56.000000pt;}
.ha_c00274{height:56.011199pt;}
.h12_c00274{height:56.905572pt;}
.h10_c00274{height:56.949728pt;}
.h14_c00274{height:57.838450pt;}
.h5_c00274{height:57.866667pt;}
.h6_c00274{height:58.800000pt;}
.hd_c00274{height:58.819871pt;}
.h4_c00274{height:59.733333pt;}
.h13_c00274{height:60.637084pt;}
.hf_c00274{height:61.617738pt;}
.hc_c00274{height:61.620817pt;}
.h3_c00274{height:62.533333pt;}
.h8_c00274{height:63.466667pt;}
.h17_c00274{height:63.491541pt;}
.h2_c00274{height:70.000000pt;}
.h1_c00274{height:550.000000pt;}
.h0_c00274{height:550.266667pt;}
.w0_c00274{width:319.200000pt;}
.w1_c00274{width:319.333333pt;}
.x0_c00274{left:0.000000pt;}
.x68_c00274{left:20.626667pt;}
.x1a_c00274{left:22.621333pt;}
.x32_c00274{left:24.520000pt;}
.x22_c00274{left:25.933333pt;}
.x2_c00274{left:27.428000pt;}
.x4a_c00274{left:28.322720pt;}
.xf_c00274{left:30.358667pt;}
.x44_c00274{left:38.946667pt;}
.x3b_c00274{left:41.113333pt;}
.x40_c00274{left:42.094667pt;}
.x29_c00274{left:43.046667pt;}
.x23_c00274{left:44.958667pt;}
.x4e_c00274{left:49.327461pt;}
.x1b_c00274{left:50.925333pt;}
.x3c_c00274{left:52.405333pt;}
.x67_c00274{left:54.074048pt;}
.x72_c00274{left:55.239539pt;}
.x3_c00274{left:57.220000pt;}
.x1c_c00274{left:59.161333pt;}
.x5e_c00274{left:60.447211pt;}
.x56_c00274{left:61.365040pt;}
.x2d_c00274{left:63.468000pt;}
.x62_c00274{left:65.957333pt;}
.x24_c00274{left:67.025333pt;}
.x33_c00274{left:68.877333pt;}
.x69_c00274{left:70.589333pt;}
.x7f_c00274{left:74.064000pt;}
.x16_c00274{left:75.682667pt;}
.x70_c00274{left:76.594219pt;}
.x2e_c00274{left:77.912000pt;}
.x79_c00274{left:79.921117pt;}
.xc_c00274{left:83.280000pt;}
.x4_c00274{left:87.458667pt;}
.x50_c00274{left:89.294491pt;}
.x17_c00274{left:90.798667pt;}
.x71_c00274{left:93.166963pt;}
.x38_c00274{left:94.162667pt;}
.xd_c00274{left:96.000000pt;}
.x45_c00274{left:98.260000pt;}
.x74_c00274{left:99.682900pt;}
.x63_c00274{left:101.325333pt;}
.x4b_c00274{left:102.217333pt;}
.x5_c00274{left:103.782667pt;}
.x10_c00274{left:110.040000pt;}
.x5a_c00274{left:111.778989pt;}
.x48_c00274{left:112.897333pt;}
.x34_c00274{left:115.936000pt;}
.x6d_c00274{left:118.465376pt;}
.x46_c00274{left:119.424000pt;}
.x25_c00274{left:122.045333pt;}
.x5f_c00274{left:123.567325pt;}
.x7c_c00274{left:128.007524pt;}
.x1d_c00274{left:130.225333pt;}
.x2f_c00274{left:132.361333pt;}
.x3d_c00274{left:134.001333pt;}
.x39_c00274{left:138.084000pt;}
.x75_c00274{left:140.856324pt;}
.x6a_c00274{left:142.616000pt;}
.x80_c00274{left:145.697333pt;}
.x1_c00274{left:147.120000pt;}
.x26_c00274{left:148.432000pt;}
.x57_c00274{left:150.691363pt;}
.x64_c00274{left:151.950667pt;}
.x1e_c00274{left:153.690667pt;}
.x11_c00274{left:155.394667pt;}
.xe_c00274{left:156.480000pt;}
.x35_c00274{left:158.186667pt;}
.x2a_c00274{left:160.184000pt;}
.x6_c00274{left:161.429333pt;}
.x51_c00274{left:163.049917pt;}
.x4c_c00274{left:164.136000pt;}
.x54_c00274{left:166.570235pt;}
.x27_c00274{left:169.005333pt;}
.x18_c00274{left:170.705333pt;}
.x49_c00274{left:175.304000pt;}
.x1f_c00274{left:177.464000pt;}
.x73_c00274{left:178.985632pt;}
.x52_c00274{left:180.213467pt;}
.x41_c00274{left:183.046667pt;}
.x6b_c00274{left:184.646667pt;}
.x7_c00274{left:186.381333pt;}
.x6e_c00274{left:189.729755pt;}
.x76_c00274{left:192.485597pt;}
.x5b_c00274{left:194.250645pt;}
.x7d_c00274{left:195.934196pt;}
.x65_c00274{left:197.109333pt;}
.x3e_c00274{left:200.008000pt;}
.x8_c00274{left:201.452000pt;}
.x58_c00274{left:204.034083pt;}
.x6c_c00274{left:205.536000pt;}
.x12_c00274{left:207.006667pt;}
.x77_c00274{left:208.884096pt;}
.x6f_c00274{left:209.994260pt;}
.x60_c00274{left:211.094243pt;}
.x2b_c00274{left:213.708000pt;}
.x5c_c00274{left:215.972027pt;}
.x55_c00274{left:216.867501pt;}
.x36_c00274{left:218.888000pt;}
.x13_c00274{left:220.486667pt;}
.x61_c00274{left:222.514397pt;}
.x20_c00274{left:225.474667pt;}
.x4f_c00274{left:227.235840pt;}
.x47_c00274{left:229.790667pt;}
.x3a_c00274{left:230.714667pt;}
.x21_c00274{left:235.781333pt;}
.x9_c00274{left:237.454667pt;}
.x14_c00274{left:239.637333pt;}
.x3f_c00274{left:240.809333pt;}
.x28_c00274{left:241.724000pt;}
.x7a_c00274{left:243.796880pt;}
.x5d_c00274{left:245.965251pt;}
.xa_c00274{left:248.726667pt;}
.x59_c00274{left:251.187331pt;}
.x4d_c00274{left:252.488000pt;}
.x66_c00274{left:256.406667pt;}
.x42_c00274{left:258.356000pt;}
.x7e_c00274{left:259.543856pt;}
.x19_c00274{left:260.941333pt;}
.x78_c00274{left:265.014624pt;}
.xb_c00274{left:269.849333pt;}
.x2c_c00274{left:272.560000pt;}
.x43_c00274{left:274.725333pt;}
.x7b_c00274{left:275.962424pt;}
.x30_c00274{left:279.033333pt;}
.x37_c00274{left:280.798667pt;}
.x15_c00274{left:283.594667pt;}
.x53_c00274{left:285.676061pt;}
.x31_c00274{left:287.192000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00275 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00275 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00275 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00275 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00275{transform:matrix(0.020088,-0.000281,0.003500,0.249976,0,0);-ms-transform:matrix(0.020088,-0.000281,0.003500,0.249976,0,0);-webkit-transform:matrix(0.020088,-0.000281,0.003500,0.249976,0,0);}
.m9e_c00275{transform:matrix(0.020733,-0.000290,0.003500,0.249976,0,0);-ms-transform:matrix(0.020733,-0.000290,0.003500,0.249976,0,0);-webkit-transform:matrix(0.020733,-0.000290,0.003500,0.249976,0,0);}
.m57_c00275{transform:matrix(0.028972,-0.000406,0.003500,0.249976,0,0);-ms-transform:matrix(0.028972,-0.000406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.028972,-0.000406,0.003500,0.249976,0,0);}
.mc6_c00275{transform:matrix(0.048485,-0.000679,0.003500,0.249976,0,0);-ms-transform:matrix(0.048485,-0.000679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.048485,-0.000679,0.003500,0.249976,0,0);}
.m1_c00275{transform:matrix(0.073910,-0.001478,0.004999,0.249950,0,0);-ms-transform:matrix(0.073910,-0.001478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.073910,-0.001478,0.004999,0.249950,0,0);}
.m33_c00275{transform:matrix(0.121816,-0.002436,0.004999,0.249950,0,0);-ms-transform:matrix(0.121816,-0.002436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.121816,-0.002436,0.004999,0.249950,0,0);}
.m1b_c00275{transform:matrix(0.125495,-0.002510,0.004999,0.249950,0,0);-ms-transform:matrix(0.125495,-0.002510,0.004999,0.249950,0,0);-webkit-transform:matrix(0.125495,-0.002510,0.004999,0.249950,0,0);}
.m6c_c00275{transform:matrix(0.140436,-0.001966,0.003500,0.249976,0,0);-ms-transform:matrix(0.140436,-0.001966,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140436,-0.001966,0.003500,0.249976,0,0);}
.m1f_c00275{transform:matrix(0.142586,-0.002852,0.004999,0.249950,0,0);-ms-transform:matrix(0.142586,-0.002852,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142586,-0.002852,0.004999,0.249950,0,0);}
.me8_c00275{transform:matrix(0.148235,-0.002075,0.003500,0.249976,0,0);-ms-transform:matrix(0.148235,-0.002075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148235,-0.002075,0.003500,0.249976,0,0);}
.mea_c00275{transform:matrix(0.151765,-0.002125,0.003500,0.249976,0,0);-ms-transform:matrix(0.151765,-0.002125,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151765,-0.002125,0.003500,0.249976,0,0);}
.mc1_c00275{transform:matrix(0.152545,-0.002136,0.003500,0.249976,0,0);-ms-transform:matrix(0.152545,-0.002136,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152545,-0.002136,0.003500,0.249976,0,0);}
.mae_c00275{transform:matrix(0.152740,-0.002138,0.003500,0.249976,0,0);-ms-transform:matrix(0.152740,-0.002138,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152740,-0.002138,0.003500,0.249976,0,0);}
.mc3_c00275{transform:matrix(0.153325,-0.002147,0.003500,0.249976,0,0);-ms-transform:matrix(0.153325,-0.002147,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153325,-0.002147,0.003500,0.249976,0,0);}
.m91_c00275{transform:matrix(0.153735,-0.002152,0.003500,0.249976,0,0);-ms-transform:matrix(0.153735,-0.002152,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153735,-0.002152,0.003500,0.249976,0,0);}
.ma8_c00275{transform:matrix(0.154590,-0.002164,0.003500,0.249976,0,0);-ms-transform:matrix(0.154590,-0.002164,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154590,-0.002164,0.003500,0.249976,0,0);}
.m51_c00275{transform:matrix(0.156925,-0.002197,0.003500,0.249976,0,0);-ms-transform:matrix(0.156925,-0.002197,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156925,-0.002197,0.003500,0.249976,0,0);}
.m66_c00275{transform:matrix(0.158684,-0.002222,0.003500,0.249976,0,0);-ms-transform:matrix(0.158684,-0.002222,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158684,-0.002222,0.003500,0.249976,0,0);}
.m92_c00275{transform:matrix(0.159129,-0.002228,0.003500,0.249976,0,0);-ms-transform:matrix(0.159129,-0.002228,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159129,-0.002228,0.003500,0.249976,0,0);}
.m2_c00275{transform:matrix(0.161243,-0.003225,0.004999,0.249950,0,0);-ms-transform:matrix(0.161243,-0.003225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161243,-0.003225,0.004999,0.249950,0,0);}
.m52_c00275{transform:matrix(0.161524,-0.002261,0.003500,0.249976,0,0);-ms-transform:matrix(0.161524,-0.002261,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161524,-0.002261,0.003500,0.249976,0,0);}
.m7f_c00275{transform:matrix(0.162264,-0.002272,0.003500,0.249976,0,0);-ms-transform:matrix(0.162264,-0.002272,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162264,-0.002272,0.003500,0.249976,0,0);}
.me7_c00275{transform:matrix(0.164739,-0.002306,0.003500,0.249976,0,0);-ms-transform:matrix(0.164739,-0.002306,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164739,-0.002306,0.003500,0.249976,0,0);}
.m6d_c00275{transform:matrix(0.166224,-0.002327,0.003500,0.249976,0,0);-ms-transform:matrix(0.166224,-0.002327,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166224,-0.002327,0.003500,0.249976,0,0);}
.m20_c00275{transform:matrix(0.166882,-0.003338,0.004999,0.249950,0,0);-ms-transform:matrix(0.166882,-0.003338,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166882,-0.003338,0.004999,0.249950,0,0);}
.m70_c00275{transform:matrix(0.166999,-0.002338,0.003500,0.249976,0,0);-ms-transform:matrix(0.166999,-0.002338,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166999,-0.002338,0.003500,0.249976,0,0);}
.mb3_c00275{transform:matrix(0.167939,-0.002351,0.003500,0.249976,0,0);-ms-transform:matrix(0.167939,-0.002351,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167939,-0.002351,0.003500,0.249976,0,0);}
.mb4_c00275{transform:matrix(0.167954,-0.002351,0.003500,0.249976,0,0);-ms-transform:matrix(0.167954,-0.002351,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167954,-0.002351,0.003500,0.249976,0,0);}
.me9_c00275{transform:matrix(0.167959,-0.002351,0.003500,0.249976,0,0);-ms-transform:matrix(0.167959,-0.002351,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167959,-0.002351,0.003500,0.249976,0,0);}
.m67_c00275{transform:matrix(0.167989,-0.002352,0.003500,0.249976,0,0);-ms-transform:matrix(0.167989,-0.002352,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167989,-0.002352,0.003500,0.249976,0,0);}
.m79_c00275{transform:matrix(0.168189,-0.002355,0.003500,0.249976,0,0);-ms-transform:matrix(0.168189,-0.002355,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168189,-0.002355,0.003500,0.249976,0,0);}
.md1_c00275{transform:matrix(0.168888,-0.002364,0.003500,0.249976,0,0);-ms-transform:matrix(0.168888,-0.002364,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168888,-0.002364,0.003500,0.249976,0,0);}
.m64_c00275{transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);-ms-transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);}
.m94_c00275{transform:matrix(0.169233,-0.002369,0.003500,0.249976,0,0);-ms-transform:matrix(0.169233,-0.002369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169233,-0.002369,0.003500,0.249976,0,0);}
.m6b_c00275{transform:matrix(0.169863,-0.002378,0.003500,0.249976,0,0);-ms-transform:matrix(0.169863,-0.002378,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169863,-0.002378,0.003500,0.249976,0,0);}
.md2_c00275{transform:matrix(0.169938,-0.002379,0.003500,0.249976,0,0);-ms-transform:matrix(0.169938,-0.002379,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169938,-0.002379,0.003500,0.249976,0,0);}
.m15_c00275{transform:matrix(0.170031,-0.003401,0.004999,0.249950,0,0);-ms-transform:matrix(0.170031,-0.003401,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170031,-0.003401,0.004999,0.249950,0,0);}
.m56_c00275{transform:matrix(0.170188,-0.002383,0.003500,0.249976,0,0);-ms-transform:matrix(0.170188,-0.002383,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170188,-0.002383,0.003500,0.249976,0,0);}
.m45_c00275{transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);}
.m78_c00275{transform:matrix(0.171498,-0.002401,0.003500,0.249976,0,0);-ms-transform:matrix(0.171498,-0.002401,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171498,-0.002401,0.003500,0.249976,0,0);}
.mb5_c00275{transform:matrix(0.172403,-0.002414,0.003500,0.249976,0,0);-ms-transform:matrix(0.172403,-0.002414,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172403,-0.002414,0.003500,0.249976,0,0);}
.m0_c00275{transform:matrix(0.172595,-0.003452,0.004999,0.249950,0,0);-ms-transform:matrix(0.172595,-0.003452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172595,-0.003452,0.004999,0.249950,0,0);}
.m16_c00275{transform:matrix(0.172725,-0.003455,0.004999,0.249950,0,0);-ms-transform:matrix(0.172725,-0.003455,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172725,-0.003455,0.004999,0.249950,0,0);}
.m1e_c00275{transform:matrix(0.173260,-0.003465,0.004999,0.249950,0,0);-ms-transform:matrix(0.173260,-0.003465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173260,-0.003465,0.004999,0.249950,0,0);}
.m68_c00275{transform:matrix(0.173273,-0.002426,0.003500,0.249976,0,0);-ms-transform:matrix(0.173273,-0.002426,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173273,-0.002426,0.003500,0.249976,0,0);}
.ma_c00275{transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);}
.m18_c00275{transform:matrix(0.173590,-0.003472,0.004999,0.249950,0,0);-ms-transform:matrix(0.173590,-0.003472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173590,-0.003472,0.004999,0.249950,0,0);}
.mb7_c00275{transform:matrix(0.173653,-0.002431,0.003500,0.249976,0,0);-ms-transform:matrix(0.173653,-0.002431,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173653,-0.002431,0.003500,0.249976,0,0);}
.m3_c00275{transform:matrix(0.175480,-0.003510,0.004999,0.249950,0,0);-ms-transform:matrix(0.175480,-0.003510,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175480,-0.003510,0.004999,0.249950,0,0);}
.m4b_c00275{transform:matrix(0.175835,-0.003517,0.004999,0.249950,0,0);-ms-transform:matrix(0.175835,-0.003517,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175835,-0.003517,0.004999,0.249950,0,0);}
.m5_c00275{transform:matrix(0.176785,-0.003536,0.004999,0.249950,0,0);-ms-transform:matrix(0.176785,-0.003536,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176785,-0.003536,0.004999,0.249950,0,0);}
.m14_c00275{transform:matrix(0.176895,-0.003538,0.004999,0.249950,0,0);-ms-transform:matrix(0.176895,-0.003538,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176895,-0.003538,0.004999,0.249950,0,0);}
.m6e_c00275{transform:matrix(0.177428,-0.002484,0.003500,0.249976,0,0);-ms-transform:matrix(0.177428,-0.002484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177428,-0.002484,0.003500,0.249976,0,0);}
.ma2_c00275{transform:matrix(0.177793,-0.002489,0.003500,0.249976,0,0);-ms-transform:matrix(0.177793,-0.002489,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177793,-0.002489,0.003500,0.249976,0,0);}
.m1c_c00275{transform:matrix(0.177954,-0.003559,0.004999,0.249950,0,0);-ms-transform:matrix(0.177954,-0.003559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177954,-0.003559,0.004999,0.249950,0,0);}
.m4f_c00275{transform:matrix(0.178023,-0.002492,0.003500,0.249976,0,0);-ms-transform:matrix(0.178023,-0.002492,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178023,-0.002492,0.003500,0.249976,0,0);}
.md7_c00275{transform:matrix(0.178882,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178882,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178882,-0.002504,0.003500,0.249976,0,0);}
.m34_c00275{transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);-ms-transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);}
.mc4_c00275{transform:matrix(0.179267,-0.002510,0.003500,0.249976,0,0);-ms-transform:matrix(0.179267,-0.002510,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179267,-0.002510,0.003500,0.249976,0,0);}
.m22_c00275{transform:matrix(0.179289,-0.003586,0.004999,0.249950,0,0);-ms-transform:matrix(0.179289,-0.003586,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179289,-0.003586,0.004999,0.249950,0,0);}
.m63_c00275{transform:matrix(0.179682,-0.002516,0.003500,0.249976,0,0);-ms-transform:matrix(0.179682,-0.002516,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179682,-0.002516,0.003500,0.249976,0,0);}
.md9_c00275{transform:matrix(0.180072,-0.002521,0.003500,0.249976,0,0);-ms-transform:matrix(0.180072,-0.002521,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180072,-0.002521,0.003500,0.249976,0,0);}
.mdd_c00275{transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-ms-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180407,-0.002526,0.003500,0.249976,0,0);}
.m17_c00275{transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180439,-0.003609,0.004999,0.249950,0,0);}
.mc8_c00275{transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-ms-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);}
.m40_c00275{transform:matrix(0.181264,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181264,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181264,-0.003625,0.004999,0.249950,0,0);}
.md6_c00275{transform:matrix(0.181742,-0.002544,0.003500,0.249976,0,0);-ms-transform:matrix(0.181742,-0.002544,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181742,-0.002544,0.003500,0.249976,0,0);}
.m39_c00275{transform:matrix(0.182254,-0.003645,0.004999,0.249950,0,0);-ms-transform:matrix(0.182254,-0.003645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182254,-0.003645,0.004999,0.249950,0,0);}
.mb8_c00275{transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-ms-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);}
.m75_c00275{transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-ms-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);}
.m2c_c00275{transform:matrix(0.183328,-0.003667,0.004999,0.249950,0,0);-ms-transform:matrix(0.183328,-0.003667,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183328,-0.003667,0.004999,0.249950,0,0);}
.ma3_c00275{transform:matrix(0.183412,-0.002568,0.003500,0.249976,0,0);-ms-transform:matrix(0.183412,-0.002568,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183412,-0.002568,0.003500,0.249976,0,0);}
.m28_c00275{transform:matrix(0.183513,-0.003670,0.004999,0.249950,0,0);-ms-transform:matrix(0.183513,-0.003670,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183513,-0.003670,0.004999,0.249950,0,0);}
.m6a_c00275{transform:matrix(0.184067,-0.002577,0.003500,0.249976,0,0);-ms-transform:matrix(0.184067,-0.002577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184067,-0.002577,0.003500,0.249976,0,0);}
.m81_c00275{transform:matrix(0.184142,-0.002578,0.003500,0.249976,0,0);-ms-transform:matrix(0.184142,-0.002578,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184142,-0.002578,0.003500,0.249976,0,0);}
.mc7_c00275{transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);}
.m69_c00275{transform:matrix(0.185067,-0.002591,0.003500,0.249976,0,0);-ms-transform:matrix(0.185067,-0.002591,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185067,-0.002591,0.003500,0.249976,0,0);}
.m53_c00275{transform:matrix(0.185137,-0.002592,0.003500,0.249976,0,0);-ms-transform:matrix(0.185137,-0.002592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185137,-0.002592,0.003500,0.249976,0,0);}
.meb_c00275{transform:matrix(0.185427,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185427,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185427,-0.002596,0.003500,0.249976,0,0);}
.m8e_c00275{transform:matrix(0.185602,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185602,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185602,-0.002598,0.003500,0.249976,0,0);}
.mb6_c00275{transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-ms-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);}
.mc_c00275{transform:matrix(0.186513,-0.003730,0.004999,0.249950,0,0);-ms-transform:matrix(0.186513,-0.003730,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186513,-0.003730,0.004999,0.249950,0,0);}
.m83_c00275{transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);-ms-transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);}
.mbd_c00275{transform:matrix(0.187247,-0.002621,0.003500,0.249976,0,0);-ms-transform:matrix(0.187247,-0.002621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187247,-0.002621,0.003500,0.249976,0,0);}
.m97_c00275{transform:matrix(0.188452,-0.002638,0.003500,0.249976,0,0);-ms-transform:matrix(0.188452,-0.002638,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188452,-0.002638,0.003500,0.249976,0,0);}
.mbe_c00275{transform:matrix(0.189071,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189071,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189071,-0.002647,0.003500,0.249976,0,0);}
.m93_c00275{transform:matrix(0.189301,-0.002650,0.003500,0.249976,0,0);-ms-transform:matrix(0.189301,-0.002650,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189301,-0.002650,0.003500,0.249976,0,0);}
.mde_c00275{transform:matrix(0.189321,-0.002651,0.003500,0.249976,0,0);-ms-transform:matrix(0.189321,-0.002651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189321,-0.002651,0.003500,0.249976,0,0);}
.m5d_c00275{transform:matrix(0.190171,-0.002662,0.003500,0.249976,0,0);-ms-transform:matrix(0.190171,-0.002662,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190171,-0.002662,0.003500,0.249976,0,0);}
.m82_c00275{transform:matrix(0.190271,-0.002664,0.003500,0.249976,0,0);-ms-transform:matrix(0.190271,-0.002664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190271,-0.002664,0.003500,0.249976,0,0);}
.md8_c00275{transform:matrix(0.190456,-0.002666,0.003500,0.249976,0,0);-ms-transform:matrix(0.190456,-0.002666,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190456,-0.002666,0.003500,0.249976,0,0);}
.m12_c00275{transform:matrix(0.190512,-0.003810,0.004999,0.249950,0,0);-ms-transform:matrix(0.190512,-0.003810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190512,-0.003810,0.004999,0.249950,0,0);}
.mb2_c00275{transform:matrix(0.191091,-0.002675,0.003500,0.249976,0,0);-ms-transform:matrix(0.191091,-0.002675,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191091,-0.002675,0.003500,0.249976,0,0);}
.ma0_c00275{transform:matrix(0.191146,-0.002676,0.003500,0.249976,0,0);-ms-transform:matrix(0.191146,-0.002676,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191146,-0.002676,0.003500,0.249976,0,0);}
.ma1_c00275{transform:matrix(0.191456,-0.002680,0.003500,0.249976,0,0);-ms-transform:matrix(0.191456,-0.002680,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191456,-0.002680,0.003500,0.249976,0,0);}
.m37_c00275{transform:matrix(0.191747,-0.003835,0.004999,0.249950,0,0);-ms-transform:matrix(0.191747,-0.003835,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191747,-0.003835,0.004999,0.249950,0,0);}
.m13_c00275{transform:matrix(0.191832,-0.003837,0.004999,0.249950,0,0);-ms-transform:matrix(0.191832,-0.003837,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191832,-0.003837,0.004999,0.249950,0,0);}
.m27_c00275{transform:matrix(0.191837,-0.003837,0.004999,0.249950,0,0);-ms-transform:matrix(0.191837,-0.003837,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191837,-0.003837,0.004999,0.249950,0,0);}
.m8a_c00275{transform:matrix(0.191896,-0.002687,0.003500,0.249976,0,0);-ms-transform:matrix(0.191896,-0.002687,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191896,-0.002687,0.003500,0.249976,0,0);}
.mad_c00275{transform:matrix(0.192591,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192591,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192591,-0.002696,0.003500,0.249976,0,0);}
.m50_c00275{transform:matrix(0.192921,-0.002701,0.003500,0.249976,0,0);-ms-transform:matrix(0.192921,-0.002701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192921,-0.002701,0.003500,0.249976,0,0);}
.m4_c00275{transform:matrix(0.192921,-0.003858,0.004999,0.249950,0,0);-ms-transform:matrix(0.192921,-0.003858,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192921,-0.003858,0.004999,0.249950,0,0);}
.m7b_c00275{transform:matrix(0.193006,-0.002702,0.003500,0.249976,0,0);-ms-transform:matrix(0.193006,-0.002702,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193006,-0.002702,0.003500,0.249976,0,0);}
.m71_c00275{transform:matrix(0.193086,-0.002703,0.003500,0.249976,0,0);-ms-transform:matrix(0.193086,-0.002703,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193086,-0.002703,0.003500,0.249976,0,0);}
.md0_c00275{transform:matrix(0.193176,-0.002704,0.003500,0.249976,0,0);-ms-transform:matrix(0.193176,-0.002704,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193176,-0.002704,0.003500,0.249976,0,0);}
.m19_c00275{transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);-ms-transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193591,-0.003872,0.004999,0.249950,0,0);}
.m42_c00275{transform:matrix(0.194631,-0.003893,0.004999,0.249950,0,0);-ms-transform:matrix(0.194631,-0.003893,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194631,-0.003893,0.004999,0.249950,0,0);}
.me3_c00275{transform:matrix(0.194656,-0.002725,0.003500,0.249976,0,0);-ms-transform:matrix(0.194656,-0.002725,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194656,-0.002725,0.003500,0.249976,0,0);}
.m5f_c00275{transform:matrix(0.194761,-0.002727,0.003500,0.249976,0,0);-ms-transform:matrix(0.194761,-0.002727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194761,-0.002727,0.003500,0.249976,0,0);}
.m3f_c00275{transform:matrix(0.194826,-0.003897,0.004999,0.249950,0,0);-ms-transform:matrix(0.194826,-0.003897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194826,-0.003897,0.004999,0.249950,0,0);}
.m72_c00275{transform:matrix(0.195371,-0.002735,0.003500,0.249976,0,0);-ms-transform:matrix(0.195371,-0.002735,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195371,-0.002735,0.003500,0.249976,0,0);}
.ma4_c00275{transform:matrix(0.195641,-0.002739,0.003500,0.249976,0,0);-ms-transform:matrix(0.195641,-0.002739,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195641,-0.002739,0.003500,0.249976,0,0);}
.m8_c00275{transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);}
.mbf_c00275{transform:matrix(0.196121,-0.002746,0.003500,0.249976,0,0);-ms-transform:matrix(0.196121,-0.002746,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196121,-0.002746,0.003500,0.249976,0,0);}
.md4_c00275{transform:matrix(0.196176,-0.002746,0.003500,0.249976,0,0);-ms-transform:matrix(0.196176,-0.002746,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196176,-0.002746,0.003500,0.249976,0,0);}
.me6_c00275{transform:matrix(0.196241,-0.002747,0.003500,0.249976,0,0);-ms-transform:matrix(0.196241,-0.002747,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196241,-0.002747,0.003500,0.249976,0,0);}
.mc5_c00275{transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);-ms-transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196596,-0.002752,0.003500,0.249976,0,0);}
.mf_c00275{transform:matrix(0.197196,-0.003944,0.004999,0.249950,0,0);-ms-transform:matrix(0.197196,-0.003944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197196,-0.003944,0.004999,0.249950,0,0);}
.m26_c00275{transform:matrix(0.197441,-0.003949,0.004999,0.249950,0,0);-ms-transform:matrix(0.197441,-0.003949,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197441,-0.003949,0.004999,0.249950,0,0);}
.mab_c00275{transform:matrix(0.197936,-0.002771,0.003500,0.249976,0,0);-ms-transform:matrix(0.197936,-0.002771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197936,-0.002771,0.003500,0.249976,0,0);}
.m4c_c00275{transform:matrix(0.197995,-0.003960,0.004999,0.249950,0,0);-ms-transform:matrix(0.197995,-0.003960,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197995,-0.003960,0.004999,0.249950,0,0);}
.mcc_c00275{transform:matrix(0.198031,-0.002772,0.003500,0.249976,0,0);-ms-transform:matrix(0.198031,-0.002772,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198031,-0.002772,0.003500,0.249976,0,0);}
.m9a_c00275{transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);-ms-transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);}
.m35_c00275{transform:matrix(0.198590,-0.003972,0.004999,0.249950,0,0);-ms-transform:matrix(0.198590,-0.003972,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198590,-0.003972,0.004999,0.249950,0,0);}
.m96_c00275{transform:matrix(0.199170,-0.002788,0.003500,0.249976,0,0);-ms-transform:matrix(0.199170,-0.002788,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199170,-0.002788,0.003500,0.249976,0,0);}
.m77_c00275{transform:matrix(0.199200,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199200,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199200,-0.002789,0.003500,0.249976,0,0);}
.m84_c00275{transform:matrix(0.199300,-0.002790,0.003500,0.249976,0,0);-ms-transform:matrix(0.199300,-0.002790,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199300,-0.002790,0.003500,0.249976,0,0);}
.m41_c00275{transform:matrix(0.199720,-0.003994,0.004999,0.249950,0,0);-ms-transform:matrix(0.199720,-0.003994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199720,-0.003994,0.004999,0.249950,0,0);}
.ma5_c00275{transform:matrix(0.199810,-0.002797,0.003500,0.249976,0,0);-ms-transform:matrix(0.199810,-0.002797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199810,-0.002797,0.003500,0.249976,0,0);}
.mc0_c00275{transform:matrix(0.199940,-0.002799,0.003500,0.249976,0,0);-ms-transform:matrix(0.199940,-0.002799,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199940,-0.002799,0.003500,0.249976,0,0);}
.m73_c00275{transform:matrix(0.200390,-0.002805,0.003500,0.249976,0,0);-ms-transform:matrix(0.200390,-0.002805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200390,-0.002805,0.003500,0.249976,0,0);}
.m3a_c00275{transform:matrix(0.200590,-0.004012,0.004999,0.249950,0,0);-ms-transform:matrix(0.200590,-0.004012,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200590,-0.004012,0.004999,0.249950,0,0);}
.me2_c00275{transform:matrix(0.201475,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201475,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201475,-0.002821,0.003500,0.249976,0,0);}
.m29_c00275{transform:matrix(0.201525,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201525,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201525,-0.004030,0.004999,0.249950,0,0);}
.mb1_c00275{transform:matrix(0.201525,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201525,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201525,-0.002821,0.003500,0.249976,0,0);}
.m6_c00275{transform:matrix(0.201840,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201840,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201840,-0.004037,0.004999,0.249950,0,0);}
.m99_c00275{transform:matrix(0.201955,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201955,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201955,-0.002827,0.003500,0.249976,0,0);}
.m80_c00275{transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201980,-0.002828,0.003500,0.249976,0,0);}
.m9b_c00275{transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);}
.m2a_c00275{transform:matrix(0.203244,-0.004065,0.004999,0.249950,0,0);-ms-transform:matrix(0.203244,-0.004065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203244,-0.004065,0.004999,0.249950,0,0);}
.m1a_c00275{transform:matrix(0.203289,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203289,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203289,-0.004066,0.004999,0.249950,0,0);}
.m62_c00275{transform:matrix(0.203640,-0.002851,0.003500,0.249976,0,0);-ms-transform:matrix(0.203640,-0.002851,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203640,-0.002851,0.003500,0.249976,0,0);}
.mbc_c00275{transform:matrix(0.204540,-0.002864,0.003500,0.249976,0,0);-ms-transform:matrix(0.204540,-0.002864,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204540,-0.002864,0.003500,0.249976,0,0);}
.m5e_c00275{transform:matrix(0.204840,-0.002868,0.003500,0.249976,0,0);-ms-transform:matrix(0.204840,-0.002868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204840,-0.002868,0.003500,0.249976,0,0);}
.m48_c00275{transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);-ms-transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);}
.m44_c00275{transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);-ms-transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204869,-0.004097,0.004999,0.249950,0,0);}
.m61_c00275{transform:matrix(0.205400,-0.002876,0.003500,0.249976,0,0);-ms-transform:matrix(0.205400,-0.002876,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205400,-0.002876,0.003500,0.249976,0,0);}
.m2f_c00275{transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);-ms-transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);}
.m5c_c00275{transform:matrix(0.205950,-0.002883,0.003500,0.249976,0,0);-ms-transform:matrix(0.205950,-0.002883,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205950,-0.002883,0.003500,0.249976,0,0);}
.mdb_c00275{transform:matrix(0.206210,-0.002887,0.003500,0.249976,0,0);-ms-transform:matrix(0.206210,-0.002887,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206210,-0.002887,0.003500,0.249976,0,0);}
.m65_c00275{transform:matrix(0.206865,-0.002896,0.003500,0.249976,0,0);-ms-transform:matrix(0.206865,-0.002896,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206865,-0.002896,0.003500,0.249976,0,0);}
.m76_c00275{transform:matrix(0.207480,-0.002905,0.003500,0.249976,0,0);-ms-transform:matrix(0.207480,-0.002905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207480,-0.002905,0.003500,0.249976,0,0);}
.mda_c00275{transform:matrix(0.207715,-0.002908,0.003500,0.249976,0,0);-ms-transform:matrix(0.207715,-0.002908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207715,-0.002908,0.003500,0.249976,0,0);}
.m21_c00275{transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);-ms-transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207898,-0.004158,0.004999,0.249950,0,0);}
.maa_c00275{transform:matrix(0.208305,-0.002916,0.003500,0.249976,0,0);-ms-transform:matrix(0.208305,-0.002916,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208305,-0.002916,0.003500,0.249976,0,0);}
.m4e_c00275{transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-ms-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);}
.m8f_c00275{transform:matrix(0.208680,-0.002922,0.003500,0.249976,0,0);-ms-transform:matrix(0.208680,-0.002922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208680,-0.002922,0.003500,0.249976,0,0);}
.m1d_c00275{transform:matrix(0.208898,-0.004178,0.004999,0.249950,0,0);-ms-transform:matrix(0.208898,-0.004178,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208898,-0.004178,0.004999,0.249950,0,0);}
.m23_c00275{transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-ms-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);}
.m6f_c00275{transform:matrix(0.209339,-0.002931,0.003500,0.249976,0,0);-ms-transform:matrix(0.209339,-0.002931,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209339,-0.002931,0.003500,0.249976,0,0);}
.m5a_c00275{transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-ms-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);}
.mcf_c00275{transform:matrix(0.210594,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210594,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210594,-0.002948,0.003500,0.249976,0,0);}
.m86_c00275{transform:matrix(0.210604,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210604,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210604,-0.002948,0.003500,0.249976,0,0);}
.m8d_c00275{transform:matrix(0.210839,-0.002952,0.003500,0.249976,0,0);-ms-transform:matrix(0.210839,-0.002952,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210839,-0.002952,0.003500,0.249976,0,0);}
.ma9_c00275{transform:matrix(0.212104,-0.002969,0.003500,0.249976,0,0);-ms-transform:matrix(0.212104,-0.002969,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212104,-0.002969,0.003500,0.249976,0,0);}
.mc9_c00275{transform:matrix(0.212414,-0.002974,0.003500,0.249976,0,0);-ms-transform:matrix(0.212414,-0.002974,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212414,-0.002974,0.003500,0.249976,0,0);}
.m11_c00275{transform:matrix(0.212597,-0.004252,0.004999,0.249950,0,0);-ms-transform:matrix(0.212597,-0.004252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212597,-0.004252,0.004999,0.249950,0,0);}
.m55_c00275{transform:matrix(0.213009,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213009,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213009,-0.002982,0.003500,0.249976,0,0);}
.m7a_c00275{transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213024,-0.002982,0.003500,0.249976,0,0);}
.m31_c00275{transform:matrix(0.213687,-0.004274,0.004999,0.249950,0,0);-ms-transform:matrix(0.213687,-0.004274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213687,-0.004274,0.004999,0.249950,0,0);}
.m5b_c00275{transform:matrix(0.216339,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216339,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216339,-0.003029,0.003500,0.249976,0,0);}
.m85_c00275{transform:matrix(0.216824,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216824,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216824,-0.003036,0.003500,0.249976,0,0);}
.mcb_c00275{transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);-ms-transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);}
.md3_c00275{transform:matrix(0.217009,-0.003038,0.003500,0.249976,0,0);-ms-transform:matrix(0.217009,-0.003038,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217009,-0.003038,0.003500,0.249976,0,0);}
.ma6_c00275{transform:matrix(0.217089,-0.003039,0.003500,0.249976,0,0);-ms-transform:matrix(0.217089,-0.003039,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217089,-0.003039,0.003500,0.249976,0,0);}
.m60_c00275{transform:matrix(0.217734,-0.003048,0.003500,0.249976,0,0);-ms-transform:matrix(0.217734,-0.003048,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217734,-0.003048,0.003500,0.249976,0,0);}
.m87_c00275{transform:matrix(0.217784,-0.003049,0.003500,0.249976,0,0);-ms-transform:matrix(0.217784,-0.003049,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217784,-0.003049,0.003500,0.249976,0,0);}
.m38_c00275{transform:matrix(0.217791,-0.004356,0.004999,0.249950,0,0);-ms-transform:matrix(0.217791,-0.004356,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217791,-0.004356,0.004999,0.249950,0,0);}
.m43_c00275{transform:matrix(0.218466,-0.004369,0.004999,0.249950,0,0);-ms-transform:matrix(0.218466,-0.004369,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218466,-0.004369,0.004999,0.249950,0,0);}
.m95_c00275{transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);}
.mc2_c00275{transform:matrix(0.219508,-0.003073,0.003500,0.249976,0,0);-ms-transform:matrix(0.219508,-0.003073,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219508,-0.003073,0.003500,0.249976,0,0);}
.m7_c00275{transform:matrix(0.219766,-0.004395,0.004999,0.249950,0,0);-ms-transform:matrix(0.219766,-0.004395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219766,-0.004395,0.004999,0.249950,0,0);}
.m24_c00275{transform:matrix(0.220011,-0.004400,0.004999,0.249950,0,0);-ms-transform:matrix(0.220011,-0.004400,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220011,-0.004400,0.004999,0.249950,0,0);}
.m3d_c00275{transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);-ms-transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220091,-0.004402,0.004999,0.249950,0,0);}
.m3c_c00275{transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);-ms-transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220516,-0.004410,0.004999,0.249950,0,0);}
.mdc_c00275{transform:matrix(0.220668,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220668,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220668,-0.003089,0.003500,0.249976,0,0);}
.m90_c00275{transform:matrix(0.221163,-0.003096,0.003500,0.249976,0,0);-ms-transform:matrix(0.221163,-0.003096,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221163,-0.003096,0.003500,0.249976,0,0);}
.m7e_c00275{transform:matrix(0.222108,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222108,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222108,-0.003110,0.003500,0.249976,0,0);}
.m2e_c00275{transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);-ms-transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);}
.m36_c00275{transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);}
.m9f_c00275{transform:matrix(0.223903,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223903,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223903,-0.003135,0.003500,0.249976,0,0);}
.m32_c00275{transform:matrix(0.223955,-0.004479,0.004999,0.249950,0,0);-ms-transform:matrix(0.223955,-0.004479,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223955,-0.004479,0.004999,0.249950,0,0);}
.m3e_c00275{transform:matrix(0.224550,-0.004491,0.004999,0.249950,0,0);-ms-transform:matrix(0.224550,-0.004491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224550,-0.004491,0.004999,0.249950,0,0);}
.m88_c00275{transform:matrix(0.224888,-0.003148,0.003500,0.249976,0,0);-ms-transform:matrix(0.224888,-0.003148,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224888,-0.003148,0.003500,0.249976,0,0);}
.m58_c00275{transform:matrix(0.225793,-0.003161,0.003500,0.249976,0,0);-ms-transform:matrix(0.225793,-0.003161,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225793,-0.003161,0.003500,0.249976,0,0);}
.mb_c00275{transform:matrix(0.226540,-0.004531,0.004999,0.249950,0,0);-ms-transform:matrix(0.226540,-0.004531,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226540,-0.004531,0.004999,0.249950,0,0);}
.m25_c00275{transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);-ms-transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);}
.me5_c00275{transform:matrix(0.227053,-0.003179,0.003500,0.249976,0,0);-ms-transform:matrix(0.227053,-0.003179,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227053,-0.003179,0.003500,0.249976,0,0);}
.m2d_c00275{transform:matrix(0.227100,-0.004542,0.004999,0.249950,0,0);-ms-transform:matrix(0.227100,-0.004542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227100,-0.004542,0.004999,0.249950,0,0);}
.m74_c00275{transform:matrix(0.227383,-0.003183,0.003500,0.249976,0,0);-ms-transform:matrix(0.227383,-0.003183,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227383,-0.003183,0.003500,0.249976,0,0);}
.m9_c00275{transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);-ms-transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228829,-0.004577,0.004999,0.249950,0,0);}
.me_c00275{transform:matrix(0.229604,-0.004592,0.004999,0.249950,0,0);-ms-transform:matrix(0.229604,-0.004592,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229604,-0.004592,0.004999,0.249950,0,0);}
.m30_c00275{transform:matrix(0.232369,-0.004647,0.004999,0.249950,0,0);-ms-transform:matrix(0.232369,-0.004647,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232369,-0.004647,0.004999,0.249950,0,0);}
.m59_c00275{transform:matrix(0.232857,-0.003260,0.003500,0.249976,0,0);-ms-transform:matrix(0.232857,-0.003260,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232857,-0.003260,0.003500,0.249976,0,0);}
.m4d_c00275{transform:matrix(0.234418,-0.004688,0.004999,0.249950,0,0);-ms-transform:matrix(0.234418,-0.004688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234418,-0.004688,0.004999,0.249950,0,0);}
.md_c00275{transform:matrix(0.234943,-0.004699,0.004999,0.249950,0,0);-ms-transform:matrix(0.234943,-0.004699,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234943,-0.004699,0.004999,0.249950,0,0);}
.m2b_c00275{transform:matrix(0.235438,-0.004709,0.004999,0.249950,0,0);-ms-transform:matrix(0.235438,-0.004709,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235438,-0.004709,0.004999,0.249950,0,0);}
.mdf_c00275{transform:matrix(0.239926,-0.003359,0.003500,0.249976,0,0);-ms-transform:matrix(0.239926,-0.003359,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239926,-0.003359,0.003500,0.249976,0,0);}
.m98_c00275{transform:matrix(0.240426,-0.003366,0.003500,0.249976,0,0);-ms-transform:matrix(0.240426,-0.003366,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240426,-0.003366,0.003500,0.249976,0,0);}
.mb0_c00275{transform:matrix(0.242351,-0.003393,0.003500,0.249976,0,0);-ms-transform:matrix(0.242351,-0.003393,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242351,-0.003393,0.003500,0.249976,0,0);}
.mce_c00275{transform:matrix(0.242381,-0.003393,0.003500,0.249976,0,0);-ms-transform:matrix(0.242381,-0.003393,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242381,-0.003393,0.003500,0.249976,0,0);}
.mb9_c00275{transform:matrix(0.245786,-0.003441,0.003500,0.249976,0,0);-ms-transform:matrix(0.245786,-0.003441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245786,-0.003441,0.003500,0.249976,0,0);}
.mbb_c00275{transform:matrix(0.248176,-0.003474,0.003500,0.249976,0,0);-ms-transform:matrix(0.248176,-0.003474,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248176,-0.003474,0.003500,0.249976,0,0);}
.m7c_c00275{transform:matrix(0.250475,-0.003507,0.003500,0.249976,0,0);-ms-transform:matrix(0.250475,-0.003507,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250475,-0.003507,0.003500,0.249976,0,0);}
.m9c_c00275{transform:matrix(0.251060,-0.003515,0.003500,0.249976,0,0);-ms-transform:matrix(0.251060,-0.003515,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251060,-0.003515,0.003500,0.249976,0,0);}
.m49_c00275{transform:matrix(0.253084,-0.005062,0.004999,0.249950,0,0);-ms-transform:matrix(0.253084,-0.005062,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253084,-0.005062,0.004999,0.249950,0,0);}
.m8c_c00275{transform:matrix(0.253790,-0.003553,0.003500,0.249976,0,0);-ms-transform:matrix(0.253790,-0.003553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253790,-0.003553,0.003500,0.249976,0,0);}
.m89_c00275{transform:matrix(0.254495,-0.003563,0.003500,0.249976,0,0);-ms-transform:matrix(0.254495,-0.003563,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254495,-0.003563,0.003500,0.249976,0,0);}
.maf_c00275{transform:matrix(0.255135,-0.003572,0.003500,0.249976,0,0);-ms-transform:matrix(0.255135,-0.003572,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255135,-0.003572,0.003500,0.249976,0,0);}
.m9d_c00275{transform:matrix(0.255510,-0.003577,0.003500,0.249976,0,0);-ms-transform:matrix(0.255510,-0.003577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255510,-0.003577,0.003500,0.249976,0,0);}
.m7d_c00275{transform:matrix(0.261524,-0.003661,0.003500,0.249976,0,0);-ms-transform:matrix(0.261524,-0.003661,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261524,-0.003661,0.003500,0.249976,0,0);}
.m47_c00275{transform:matrix(0.279674,-0.005593,0.004999,0.249950,0,0);-ms-transform:matrix(0.279674,-0.005593,0.004999,0.249950,0,0);-webkit-transform:matrix(0.279674,-0.005593,0.004999,0.249950,0,0);}
.md5_c00275{transform:matrix(0.300131,-0.004202,0.003500,0.249976,0,0);-ms-transform:matrix(0.300131,-0.004202,0.003500,0.249976,0,0);-webkit-transform:matrix(0.300131,-0.004202,0.003500,0.249976,0,0);}
.me0_c00275{transform:matrix(0.302215,-0.004231,0.003500,0.249976,0,0);-ms-transform:matrix(0.302215,-0.004231,0.003500,0.249976,0,0);-webkit-transform:matrix(0.302215,-0.004231,0.003500,0.249976,0,0);}
.m46_c00275{transform:matrix(0.303449,-0.006069,0.004999,0.249950,0,0);-ms-transform:matrix(0.303449,-0.006069,0.004999,0.249950,0,0);-webkit-transform:matrix(0.303449,-0.006069,0.004999,0.249950,0,0);}
.me1_c00275{transform:matrix(0.318914,-0.004465,0.003500,0.249976,0,0);-ms-transform:matrix(0.318914,-0.004465,0.003500,0.249976,0,0);-webkit-transform:matrix(0.318914,-0.004465,0.003500,0.249976,0,0);}
.m3b_c00275{transform:matrix(0.324625,-0.006493,0.004999,0.249950,0,0);-ms-transform:matrix(0.324625,-0.006493,0.004999,0.249950,0,0);-webkit-transform:matrix(0.324625,-0.006493,0.004999,0.249950,0,0);}
.m8b_c00275{transform:matrix(0.325278,-0.004554,0.003500,0.249976,0,0);-ms-transform:matrix(0.325278,-0.004554,0.003500,0.249976,0,0);-webkit-transform:matrix(0.325278,-0.004554,0.003500,0.249976,0,0);}
.mcd_c00275{transform:matrix(0.327348,-0.004583,0.003500,0.249976,0,0);-ms-transform:matrix(0.327348,-0.004583,0.003500,0.249976,0,0);-webkit-transform:matrix(0.327348,-0.004583,0.003500,0.249976,0,0);}
.ma7_c00275{transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);-ms-transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);-webkit-transform:matrix(0.336207,-0.004707,0.003500,0.249976,0,0);}
.m10_c00275{transform:matrix(0.361688,-0.007234,0.004999,0.249950,0,0);-ms-transform:matrix(0.361688,-0.007234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.361688,-0.007234,0.004999,0.249950,0,0);}
.m4a_c00275{transform:matrix(0.361783,-0.007236,0.004999,0.249950,0,0);-ms-transform:matrix(0.361783,-0.007236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.361783,-0.007236,0.004999,0.249950,0,0);}
.mba_c00275{transform:matrix(0.365889,-0.005122,0.003500,0.249976,0,0);-ms-transform:matrix(0.365889,-0.005122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.365889,-0.005122,0.003500,0.249976,0,0);}
.mac_c00275{transform:matrix(0.412690,-0.005778,0.003500,0.249976,0,0);-ms-transform:matrix(0.412690,-0.005778,0.003500,0.249976,0,0);-webkit-transform:matrix(0.412690,-0.005778,0.003500,0.249976,0,0);}
.mca_c00275{transform:matrix(0.461045,-0.006455,0.003500,0.249976,0,0);-ms-transform:matrix(0.461045,-0.006455,0.003500,0.249976,0,0);-webkit-transform:matrix(0.461045,-0.006455,0.003500,0.249976,0,0);}
.me4_c00275{transform:matrix(0.465239,-0.006513,0.003500,0.249976,0,0);-ms-transform:matrix(0.465239,-0.006513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.465239,-0.006513,0.003500,0.249976,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:0.000000px;}
.fc0_c00275{color:transparent;}
.fse_c00275{font-size:57.755659px;}
.fsc_c00275{font-size:58.805762px;}
.fs5_c00275{font-size:58.811759px;}
.fsd_c00275{font-size:59.855865px;}
.fs8_c00275{font-size:60.905968px;}
.fs2_c00275{font-size:60.912179px;}
.fs9_c00275{font-size:61.956071px;}
.fs11_c00275{font-size:63.006174px;}
.fs4_c00275{font-size:63.012599px;}
.fs10_c00275{font-size:65.106379px;}
.fsb_c00275{font-size:66.156482px;}
.fs6_c00275{font-size:66.163229px;}
.fs7_c00275{font-size:67.206585px;}
.fs1_c00275{font-size:67.213439px;}
.fsa_c00275{font-size:68.256688px;}
.fsf_c00275{font-size:69.306791px;}
.fs3_c00275{font-size:71.414279px;}
.fs12_c00275{font-size:74.557306px;}
.fs0_c00275{font-size:80.866168px;}
.y0_c00275{bottom:0.000000px;}
.ye7_c00275{bottom:14.280255px;}
.ye8_c00275{bottom:14.925144px;}
.ye9_c00275{bottom:15.393129px;}
.yea_c00275{bottom:16.202175px;}
.yeb_c00275{bottom:16.402452px;}
.yec_c00275{bottom:17.105406px;}
.yed_c00275{bottom:17.415702px;}
.ydf_c00275{bottom:33.407340px;}
.ye5_c00275{bottom:33.407364px;}
.ye4_c00275{bottom:33.407706px;}
.ye0_c00275{bottom:33.407877px;}
.ye6_c00275{bottom:33.407901px;}
.ye3_c00275{bottom:33.408327px;}
.ye1_c00275{bottom:33.408453px;}
.ye2_c00275{bottom:33.408948px;}
.yd8_c00275{bottom:49.113495px;}
.yd9_c00275{bottom:50.118159px;}
.yda_c00275{bottom:50.604321px;}
.ydb_c00275{bottom:51.640497px;}
.ydc_c00275{bottom:51.990840px;}
.ydd_c00275{bottom:53.254587px;}
.yde_c00275{bottom:53.624391px;}
.yd1_c00275{bottom:66.122592px;}
.yd2_c00275{bottom:67.008261px;}
.yd3_c00275{bottom:67.945899px;}
.yd4_c00275{bottom:68.498550px;}
.yd5_c00275{bottom:68.934288px;}
.yd6_c00275{bottom:69.673584px;}
.yd7_c00275{bottom:70.064817px;}
.yc9_c00275{bottom:83.135553px;}
.yca_c00275{bottom:83.616306px;}
.ycb_c00275{bottom:83.993136px;}
.ycc_c00275{bottom:85.038126px;}
.ycd_c00275{bottom:86.080155px;}
.yce_c00275{bottom:86.577252px;}
.ycf_c00275{bottom:87.597573px;}
.yd0_c00275{bottom:88.017399px;}
.yc2_c00275{bottom:100.416525px;}
.yc3_c00275{bottom:100.983735px;}
.yc4_c00275{bottom:101.271204px;}
.yc5_c00275{bottom:101.928798px;}
.yc6_c00275{bottom:102.537315px;}
.yc7_c00275{bottom:103.372674px;}
.yc8_c00275{bottom:104.591955px;}
.ybd_c00275{bottom:119.047542px;}
.ybe_c00275{bottom:119.660046px;}
.ybf_c00275{bottom:120.191424px;}
.yc0_c00275{bottom:121.117059px;}
.yc1_c00275{bottom:121.805574px;}
.yb5_c00275{bottom:135.250182px;}
.yb6_c00275{bottom:135.787578px;}
.yb7_c00275{bottom:136.450869px;}
.yb8_c00275{bottom:136.805166px;}
.yb9_c00275{bottom:137.352486px;}
.yba_c00275{bottom:138.061617px;}
.ybb_c00275{bottom:138.295701px;}
.ybc_c00275{bottom:138.762168px;}
.yaf_c00275{bottom:155.245755px;}
.yb0_c00275{bottom:155.245971px;}
.yb1_c00275{bottom:155.246469px;}
.yb3_c00275{bottom:155.246502px;}
.yb4_c00275{bottom:155.247039px;}
.yb2_c00275{bottom:155.247063px;}
.ya8_c00275{bottom:172.596159px;}
.ya9_c00275{bottom:172.596654px;}
.yae_c00275{bottom:172.596780px;}
.yac_c00275{bottom:172.596828px;}
.yab_c00275{bottom:172.596849px;}
.yaa_c00275{bottom:172.596891px;}
.yad_c00275{bottom:172.597482px;}
.ya7_c00275{bottom:189.291978px;}
.ya6_c00275{bottom:189.292101px;}
.ya4_c00275{bottom:189.292146px;}
.ya1_c00275{bottom:189.292236px;}
.ya5_c00275{bottom:189.292464px;}
.ya2_c00275{bottom:189.292692px;}
.ya3_c00275{bottom:189.292848px;}
.ya0_c00275{bottom:207.029142px;}
.y9b_c00275{bottom:207.029382px;}
.y9c_c00275{bottom:207.029616px;}
.y9f_c00275{bottom:207.029727px;}
.y9d_c00275{bottom:207.029853px;}
.y9e_c00275{bottom:207.030408px;}
.y93_c00275{bottom:223.545834px;}
.y94_c00275{bottom:223.861035px;}
.y95_c00275{bottom:224.122284px;}
.y96_c00275{bottom:224.421879px;}
.y97_c00275{bottom:225.271098px;}
.y98_c00275{bottom:225.465075px;}
.y99_c00275{bottom:226.198311px;}
.y9a_c00275{bottom:226.516821px;}
.y8c_c00275{bottom:240.828327px;}
.y8d_c00275{bottom:241.095048px;}
.y8e_c00275{bottom:242.077854px;}
.y8f_c00275{bottom:242.392971px;}
.y90_c00275{bottom:242.903799px;}
.y91_c00275{bottom:243.153630px;}
.y92_c00275{bottom:243.647433px;}
.y8b_c00275{bottom:258.591483px;}
.y8a_c00275{bottom:258.592107px;}
.y89_c00275{bottom:258.592233px;}
.y88_c00275{bottom:258.592758px;}
.y87_c00275{bottom:258.592899px;}
.y86_c00275{bottom:258.593622px;}
.y7e_c00275{bottom:274.313973px;}
.y7f_c00275{bottom:274.565097px;}
.y80_c00275{bottom:275.298585px;}
.y81_c00275{bottom:275.531337px;}
.y82_c00275{bottom:275.799120px;}
.y83_c00275{bottom:276.023028px;}
.y84_c00275{bottom:276.730653px;}
.y85_c00275{bottom:276.949341px;}
.y76_c00275{bottom:291.055959px;}
.y77_c00275{bottom:291.411159px;}
.y78_c00275{bottom:292.361304px;}
.y79_c00275{bottom:292.765449px;}
.y7a_c00275{bottom:293.008290px;}
.y7b_c00275{bottom:293.351751px;}
.y7c_c00275{bottom:293.934168px;}
.y7d_c00275{bottom:294.152406px;}
.y70_c00275{bottom:308.596473px;}
.y71_c00275{bottom:309.281061px;}
.y72_c00275{bottom:309.894342px;}
.y73_c00275{bottom:310.578048px;}
.y74_c00275{bottom:311.510478px;}
.y75_c00275{bottom:311.964909px;}
.y67_c00275{bottom:325.888191px;}
.y68_c00275{bottom:326.273778px;}
.y69_c00275{bottom:326.549133px;}
.y6a_c00275{bottom:327.504171px;}
.y6b_c00275{bottom:327.812535px;}
.y6c_c00275{bottom:328.528608px;}
.y6d_c00275{bottom:328.857246px;}
.y6e_c00275{bottom:329.129451px;}
.y6f_c00275{bottom:329.434434px;}
.y60_c00275{bottom:342.899829px;}
.y61_c00275{bottom:343.675377px;}
.y62_c00275{bottom:344.401539px;}
.y63_c00275{bottom:344.928921px;}
.y64_c00275{bottom:345.177822px;}
.y65_c00275{bottom:345.381159px;}
.y66_c00275{bottom:345.702525px;}
.y59_c00275{bottom:363.169056px;}
.y5b_c00275{bottom:363.169089px;}
.y5d_c00275{bottom:363.169104px;}
.y5c_c00275{bottom:363.169128px;}
.y5f_c00275{bottom:363.169458px;}
.y5a_c00275{bottom:363.169572px;}
.y5e_c00275{bottom:363.169680px;}
.y50_c00275{bottom:378.813000px;}
.y51_c00275{bottom:379.073001px;}
.y52_c00275{bottom:379.469922px;}
.y53_c00275{bottom:379.750671px;}
.y54_c00275{bottom:379.985010px;}
.y55_c00275{bottom:381.185769px;}
.y56_c00275{bottom:381.416643px;}
.y57_c00275{bottom:381.904368px;}
.y58_c00275{bottom:383.033517px;}
.y4d_c00275{bottom:397.378440px;}
.y4e_c00275{bottom:397.378470px;}
.y49_c00275{bottom:397.378500px;}
.y4b_c00275{bottom:397.378860px;}
.y4a_c00275{bottom:397.378890px;}
.y4f_c00275{bottom:397.379010px;}
.y4c_c00275{bottom:397.379100px;}
.y41_c00275{bottom:413.332680px;}
.y42_c00275{bottom:413.600340px;}
.y43_c00275{bottom:414.106050px;}
.y44_c00275{bottom:414.829140px;}
.y45_c00275{bottom:414.986040px;}
.y46_c00275{bottom:415.590960px;}
.y47_c00275{bottom:415.785090px;}
.y48_c00275{bottom:416.201310px;}
.y38_c00275{bottom:430.075110px;}
.y39_c00275{bottom:430.349400px;}
.y3a_c00275{bottom:430.830810px;}
.y3b_c00275{bottom:431.043540px;}
.y3c_c00275{bottom:431.724120px;}
.y3d_c00275{bottom:431.988750px;}
.y3e_c00275{bottom:432.550110px;}
.y3f_c00275{bottom:432.926610px;}
.y40_c00275{bottom:433.850580px;}
.y32_c00275{bottom:447.359490px;}
.y33_c00275{bottom:448.162080px;}
.y34_c00275{bottom:448.868700px;}
.y35_c00275{bottom:449.076540px;}
.y36_c00275{bottom:449.322780px;}
.y37_c00275{bottom:450.119190px;}
.y2a_c00275{bottom:464.105280px;}
.y2b_c00275{bottom:465.034890px;}
.y2c_c00275{bottom:465.556440px;}
.y2d_c00275{bottom:465.881370px;}
.y2e_c00275{bottom:466.765380px;}
.y2f_c00275{bottom:466.928550px;}
.y30_c00275{bottom:467.767050px;}
.y31_c00275{bottom:468.130140px;}
.y23_c00275{bottom:481.659930px;}
.y24_c00275{bottom:481.989270px;}
.y25_c00275{bottom:482.256690px;}
.y26_c00275{bottom:482.904270px;}
.y27_c00275{bottom:483.756360px;}
.y28_c00275{bottom:484.266630px;}
.y29_c00275{bottom:484.782960px;}
.y1a_c00275{bottom:498.677580px;}
.y1b_c00275{bottom:499.014060px;}
.y1c_c00275{bottom:499.176240px;}
.y1d_c00275{bottom:499.363530px;}
.y1e_c00275{bottom:500.014710px;}
.y1f_c00275{bottom:500.302410px;}
.y20_c00275{bottom:500.917440px;}
.y21_c00275{bottom:501.348030px;}
.y22_c00275{bottom:501.852660px;}
.y13_c00275{bottom:516.230280px;}
.y14_c00275{bottom:516.877200px;}
.y15_c00275{bottom:517.267590px;}
.y16_c00275{bottom:517.941030px;}
.y17_c00275{bottom:518.208390px;}
.y18_c00275{bottom:518.987160px;}
.y19_c00275{bottom:519.195690px;}
.ya_c00275{bottom:532.705800px;}
.yb_c00275{bottom:532.889820px;}
.yc_c00275{bottom:533.161890px;}
.yd_c00275{bottom:533.713200px;}
.ye_c00275{bottom:534.125100px;}
.yf_c00275{bottom:535.138410px;}
.y10_c00275{bottom:535.433700px;}
.y11_c00275{bottom:536.020470px;}
.y12_c00275{bottom:536.242740px;}
.y3_c00275{bottom:549.990930px;}
.y4_c00275{bottom:550.521390px;}
.y5_c00275{bottom:550.897920px;}
.y6_c00275{bottom:551.905290px;}
.y7_c00275{bottom:552.610800px;}
.y8_c00275{bottom:553.569240px;}
.y9_c00275{bottom:553.777470px;}
.y1_c00275{bottom:565.387500px;}
.y2_c00275{bottom:568.530000px;}
.h10_c00275{height:57.755659px;}
.he_c00275{height:58.805762px;}
.h7_c00275{height:58.811759px;}
.hf_c00275{height:59.855865px;}
.ha_c00275{height:60.905968px;}
.h4_c00275{height:60.912179px;}
.hb_c00275{height:61.956071px;}
.h13_c00275{height:63.006174px;}
.h6_c00275{height:63.012599px;}
.h12_c00275{height:65.106379px;}
.hd_c00275{height:66.156482px;}
.h8_c00275{height:66.163229px;}
.h9_c00275{height:67.206585px;}
.h3_c00275{height:67.213439px;}
.hc_c00275{height:68.256688px;}
.h11_c00275{height:69.306791px;}
.h5_c00275{height:71.414279px;}
.h14_c00275{height:74.557306px;}
.h2_c00275{height:80.866168px;}
.h1_c00275{height:618.750000px;}
.h0_c00275{height:619.050000px;}
.w0_c00275{width:359.100000px;}
.w1_c00275{width:359.250000px;}
.x0_c00275{left:0.000000px;}
.x3_c00275{left:37.432230px;}
.x15_c00275{left:38.466000px;}
.x2a_c00275{left:39.764520px;}
.x52_c00275{left:41.181063px;}
.x64_c00275{left:42.661266px;}
.x49_c00275{left:49.533144px;}
.xa_c00275{left:50.848980px;}
.x3b_c00275{left:58.705500px;}
.x2b_c00275{left:60.831960px;}
.x16_c00275{left:66.544500px;}
.x6e_c00275{left:67.650336px;}
.x1e_c00275{left:68.696220px;}
.xb_c00275{left:70.304820px;}
.x4_c00275{left:72.808770px;}
.x4a_c00275{left:75.253287px;}
.x17_c00275{left:80.055660px;}
.x59_c00275{left:82.353525px;}
.x3c_c00275{left:87.057000px;}
.x36_c00275{left:89.076900px;}
.x75_c00275{left:90.184032px;}
.x1f_c00275{left:93.021600px;}
.x5e_c00275{left:94.365873px;}
.x18_c00275{left:95.722680px;}
.x5_c00275{left:97.937790px;}
.x43_c00275{left:100.093080px;}
.x5a_c00275{left:101.525784px;}
.x6d_c00275{left:103.617264px;}
.x23_c00275{left:105.205770px;}
.x3d_c00275{left:107.110500px;}
.xc_c00275{left:109.725060px;}
.x27_c00275{left:112.180380px;}
.x2c_c00275{left:114.296460px;}
.x31_c00275{left:117.286770px;}
.x5f_c00275{left:121.659528px;}
.x3e_c00275{left:123.849000px;}
.x41_c00275{left:125.017599px;}
.x10_c00275{left:132.432420px;}
.x6b_c00275{left:137.589090px;}
.xd_c00275{left:139.173600px;}
.x24_c00275{left:142.462740px;}
.x4e_c00275{left:147.322677px;}
.x19_c00275{left:150.040380px;}
.x20_c00275{left:151.886190px;}
.x44_c00275{left:155.926857px;}
.x4b_c00275{left:157.351653px;}
.x66_c00275{left:158.500155px;}
.x57_c00275{left:162.949227px;}
.x6_c00275{left:165.113010px;}
.x2d_c00275{left:166.632780px;}
.x37_c00275{left:167.931930px;}
.x72_c00275{left:169.024275px;}
.x1_c00275{left:170.181000px;}
.x53_c00275{left:172.717911px;}
.x1a_c00275{left:174.029220px;}
.x28_c00275{left:176.397930px;}
.x4c_c00275{left:177.877359px;}
.x77_c00275{left:179.749416px;}
.x38_c00275{left:181.974540px;}
.x5b_c00275{left:183.748149px;}
.x65_c00275{left:185.504259px;}
.x2e_c00275{left:186.992130px;}
.x32_c00275{left:189.605730px;}
.x54_c00275{left:191.349663px;}
.x11_c00275{left:193.715460px;}
.x29_c00275{left:195.343350px;}
.x45_c00275{left:196.490424px;}
.x39_c00275{left:198.448140px;}
.x4f_c00275{left:204.303273px;}
.x33_c00275{left:205.328880px;}
.x3f_c00275{left:209.617500px;}
.x7_c00275{left:212.168220px;}
.x46_c00275{left:215.662197px;}
.x12_c00275{left:218.037840px;}
.x6f_c00275{left:223.528437px;}
.x1b_c00275{left:225.338940px;}
.x21_c00275{left:229.379640px;}
.x47_c00275{left:231.257907px;}
.xe_c00275{left:232.664820px;}
.x76_c00275{left:237.887970px;}
.x25_c00275{left:240.480000px;}
.x42_c00275{left:243.828888px;}
.x4d_c00275{left:247.462872px;}
.x73_c00275{left:249.702492px;}
.x5c_c00275{left:252.869547px;}
.x48_c00275{left:255.927243px;}
.x2f_c00275{left:259.095210px;}
.x1c_c00275{left:261.274200px;}
.x55_c00275{left:262.627671px;}
.x71_c00275{left:264.261024px;}
.x34_c00275{left:265.811970px;}
.x74_c00275{left:268.186938px;}
.x6c_c00275{left:272.067849px;}
.xf_c00275{left:274.533330px;}
.x8_c00275{left:276.071610px;}
.x62_c00275{left:277.315473px;}
.x3a_c00275{left:278.383590px;}
.x56_c00275{left:279.394902px;}
.x50_c00275{left:282.050457px;}
.x60_c00275{left:283.054290px;}
.x35_c00275{left:285.272370px;}
.x13_c00275{left:288.789060px;}
.x9_c00275{left:289.934490px;}
.x67_c00275{left:293.783157px;}
.x69_c00275{left:296.422305px;}
.x5d_c00275{left:297.785937px;}
.x70_c00275{left:299.283624px;}
.x26_c00275{left:300.412200px;}
.x1d_c00275{left:303.387450px;}
.x58_c00275{left:304.743165px;}
.x14_c00275{left:307.693950px;}
.x61_c00275{left:312.020508px;}
.x51_c00275{left:319.868007px;}
.x22_c00275{left:322.801470px;}
.x2_c00275{left:327.306000px;}
.x68_c00275{left:328.346940px;}
.x30_c00275{left:330.128640px;}
.x6a_c00275{left:335.313897px;}
.x40_c00275{left:341.599500px;}
.x63_c00275{left:347.251686px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.fse_c00275{font-size:51.338364pt;}
.fsc_c00275{font-size:52.271789pt;}
.fs5_c00275{font-size:52.277119pt;}
.fsd_c00275{font-size:53.205213pt;}
.fs8_c00275{font-size:54.138638pt;}
.fs2_c00275{font-size:54.144159pt;}
.fs9_c00275{font-size:55.072063pt;}
.fs11_c00275{font-size:56.005488pt;}
.fs4_c00275{font-size:56.011199pt;}
.fs10_c00275{font-size:57.872337pt;}
.fsb_c00275{font-size:58.805762pt;}
.fs6_c00275{font-size:58.811759pt;}
.fs7_c00275{font-size:59.739187pt;}
.fs1_c00275{font-size:59.745279pt;}
.fsa_c00275{font-size:60.672612pt;}
.fsf_c00275{font-size:61.606037pt;}
.fs3_c00275{font-size:63.479359pt;}
.fs12_c00275{font-size:66.273160pt;}
.fs0_c00275{font-size:71.881039pt;}
.y0_c00275{bottom:0.000000pt;}
.ye7_c00275{bottom:12.693560pt;}
.ye8_c00275{bottom:13.266795pt;}
.ye9_c00275{bottom:13.682781pt;}
.yea_c00275{bottom:14.401933pt;}
.yeb_c00275{bottom:14.579957pt;}
.yec_c00275{bottom:15.204805pt;}
.yed_c00275{bottom:15.480624pt;}
.ydf_c00275{bottom:29.695413pt;}
.ye5_c00275{bottom:29.695435pt;}
.ye4_c00275{bottom:29.695739pt;}
.ye0_c00275{bottom:29.695891pt;}
.ye6_c00275{bottom:29.695912pt;}
.ye3_c00275{bottom:29.696291pt;}
.ye1_c00275{bottom:29.696403pt;}
.ye2_c00275{bottom:29.696843pt;}
.yd8_c00275{bottom:43.656440pt;}
.yd9_c00275{bottom:44.549475pt;}
.yda_c00275{bottom:44.981619pt;}
.ydb_c00275{bottom:45.902664pt;}
.ydc_c00275{bottom:46.214080pt;}
.ydd_c00275{bottom:47.337411pt;}
.yde_c00275{bottom:47.666125pt;}
.yd1_c00275{bottom:58.775637pt;}
.yd2_c00275{bottom:59.562899pt;}
.yd3_c00275{bottom:60.396355pt;}
.yd4_c00275{bottom:60.887600pt;}
.yd5_c00275{bottom:61.274923pt;}
.yd6_c00275{bottom:61.932075pt;}
.yd7_c00275{bottom:62.279837pt;}
.yc9_c00275{bottom:73.898269pt;}
.yca_c00275{bottom:74.325605pt;}
.ycb_c00275{bottom:74.660565pt;}
.ycc_c00275{bottom:75.589445pt;}
.ycd_c00275{bottom:76.515693pt;}
.yce_c00275{bottom:76.957557pt;}
.ycf_c00275{bottom:77.864509pt;}
.yd0_c00275{bottom:78.237688pt;}
.yc2_c00275{bottom:89.259133pt;}
.yc3_c00275{bottom:89.763320pt;}
.yc4_c00275{bottom:90.018848pt;}
.yc5_c00275{bottom:90.603376pt;}
.yc6_c00275{bottom:91.144280pt;}
.yc7_c00275{bottom:91.886821pt;}
.yc8_c00275{bottom:92.970627pt;}
.ybd_c00275{bottom:105.820037pt;}
.ybe_c00275{bottom:106.364485pt;}
.ybf_c00275{bottom:106.836821pt;}
.yc0_c00275{bottom:107.659608pt;}
.yc1_c00275{bottom:108.271621pt;}
.yb5_c00275{bottom:120.222384pt;}
.yb6_c00275{bottom:120.700069pt;}
.yb7_c00275{bottom:121.289661pt;}
.yb8_c00275{bottom:121.604592pt;}
.yb9_c00275{bottom:122.091099pt;}
.yba_c00275{bottom:122.721437pt;}
.ybb_c00275{bottom:122.929512pt;}
.ybc_c00275{bottom:123.344149pt;}
.yaf_c00275{bottom:137.996227pt;}
.yb0_c00275{bottom:137.996419pt;}
.yb1_c00275{bottom:137.996861pt;}
.yb3_c00275{bottom:137.996891pt;}
.yb4_c00275{bottom:137.997368pt;}
.yb2_c00275{bottom:137.997389pt;}
.ya8_c00275{bottom:153.418808pt;}
.ya9_c00275{bottom:153.419248pt;}
.yae_c00275{bottom:153.419360pt;}
.yac_c00275{bottom:153.419403pt;}
.yab_c00275{bottom:153.419421pt;}
.yaa_c00275{bottom:153.419459pt;}
.yad_c00275{bottom:153.419984pt;}
.ya7_c00275{bottom:168.259536pt;}
.ya6_c00275{bottom:168.259645pt;}
.ya4_c00275{bottom:168.259685pt;}
.ya1_c00275{bottom:168.259765pt;}
.ya5_c00275{bottom:168.259968pt;}
.ya2_c00275{bottom:168.260171pt;}
.ya3_c00275{bottom:168.260309pt;}
.ya0_c00275{bottom:184.025904pt;}
.y9b_c00275{bottom:184.026117pt;}
.y9c_c00275{bottom:184.026325pt;}
.y9f_c00275{bottom:184.026424pt;}
.y9d_c00275{bottom:184.026536pt;}
.y9e_c00275{bottom:184.027029pt;}
.y93_c00275{bottom:198.707408pt;}
.y94_c00275{bottom:198.987587pt;}
.y95_c00275{bottom:199.219808pt;}
.y96_c00275{bottom:199.486115pt;}
.y97_c00275{bottom:200.240976pt;}
.y98_c00275{bottom:200.413400pt;}
.y99_c00275{bottom:201.065165pt;}
.y9a_c00275{bottom:201.348285pt;}
.y8c_c00275{bottom:214.069624pt;}
.y8d_c00275{bottom:214.306709pt;}
.y8e_c00275{bottom:215.180315pt;}
.y8f_c00275{bottom:215.460419pt;}
.y90_c00275{bottom:215.914488pt;}
.y91_c00275{bottom:216.136560pt;}
.y92_c00275{bottom:216.575496pt;}
.y8b_c00275{bottom:229.859096pt;}
.y8a_c00275{bottom:229.859651pt;}
.y89_c00275{bottom:229.859763pt;}
.y88_c00275{bottom:229.860229pt;}
.y87_c00275{bottom:229.860355pt;}
.y86_c00275{bottom:229.860997pt;}
.y7e_c00275{bottom:243.834643pt;}
.y7f_c00275{bottom:244.057864pt;}
.y80_c00275{bottom:244.709853pt;}
.y81_c00275{bottom:244.916744pt;}
.y82_c00275{bottom:245.154773pt;}
.y83_c00275{bottom:245.353803pt;}
.y84_c00275{bottom:245.982803pt;}
.y85_c00275{bottom:246.177192pt;}
.y76_c00275{bottom:258.716408pt;}
.y77_c00275{bottom:259.032141pt;}
.y78_c00275{bottom:259.876715pt;}
.y79_c00275{bottom:260.235955pt;}
.y7a_c00275{bottom:260.451813pt;}
.y7b_c00275{bottom:260.757112pt;}
.y7c_c00275{bottom:261.274816pt;}
.y7d_c00275{bottom:261.468805pt;}
.y70_c00275{bottom:274.307976pt;}
.y71_c00275{bottom:274.916499pt;}
.y72_c00275{bottom:275.461637pt;}
.y73_c00275{bottom:276.069376pt;}
.y74_c00275{bottom:276.898203pt;}
.y75_c00275{bottom:277.302141pt;}
.y67_c00275{bottom:289.678392pt;}
.y68_c00275{bottom:290.021136pt;}
.y69_c00275{bottom:290.265896pt;}
.y6a_c00275{bottom:291.114819pt;}
.y6b_c00275{bottom:291.388920pt;}
.y6c_c00275{bottom:292.025429pt;}
.y6d_c00275{bottom:292.317552pt;}
.y6e_c00275{bottom:292.559512pt;}
.y6f_c00275{bottom:292.830608pt;}
.y60_c00275{bottom:304.799848pt;}
.y61_c00275{bottom:305.489224pt;}
.y62_c00275{bottom:306.134701pt;}
.y63_c00275{bottom:306.603485pt;}
.y64_c00275{bottom:306.824731pt;}
.y65_c00275{bottom:307.005475pt;}
.y66_c00275{bottom:307.291133pt;}
.y59_c00275{bottom:322.816939pt;}
.y5b_c00275{bottom:322.816968pt;}
.y5d_c00275{bottom:322.816981pt;}
.y5c_c00275{bottom:322.817003pt;}
.y5f_c00275{bottom:322.817296pt;}
.y5a_c00275{bottom:322.817397pt;}
.y5e_c00275{bottom:322.817493pt;}
.y50_c00275{bottom:336.722667pt;}
.y51_c00275{bottom:336.953779pt;}
.y52_c00275{bottom:337.306597pt;}
.y53_c00275{bottom:337.556152pt;}
.y54_c00275{bottom:337.764453pt;}
.y55_c00275{bottom:338.831795pt;}
.y56_c00275{bottom:339.037016pt;}
.y57_c00275{bottom:339.470549pt;}
.y58_c00275{bottom:340.474237pt;}
.y4d_c00275{bottom:353.225280pt;}
.y4e_c00275{bottom:353.225307pt;}
.y49_c00275{bottom:353.225333pt;}
.y4b_c00275{bottom:353.225653pt;}
.y4a_c00275{bottom:353.225680pt;}
.y4f_c00275{bottom:353.225787pt;}
.y4c_c00275{bottom:353.225867pt;}
.y41_c00275{bottom:367.406827pt;}
.y42_c00275{bottom:367.644747pt;}
.y43_c00275{bottom:368.094267pt;}
.y44_c00275{bottom:368.737013pt;}
.y45_c00275{bottom:368.876480pt;}
.y46_c00275{bottom:369.414187pt;}
.y47_c00275{bottom:369.586747pt;}
.y48_c00275{bottom:369.956720pt;}
.y38_c00275{bottom:382.288987pt;}
.y39_c00275{bottom:382.532800pt;}
.y3a_c00275{bottom:382.960720pt;}
.y3b_c00275{bottom:383.149813pt;}
.y3c_c00275{bottom:383.754773pt;}
.y3d_c00275{bottom:383.990000pt;}
.y3e_c00275{bottom:384.488987pt;}
.y3f_c00275{bottom:384.823653pt;}
.y40_c00275{bottom:385.644960pt;}
.y32_c00275{bottom:397.652880pt;}
.y33_c00275{bottom:398.366293pt;}
.y34_c00275{bottom:398.994400pt;}
.y35_c00275{bottom:399.179147pt;}
.y36_c00275{bottom:399.398027pt;}
.y37_c00275{bottom:400.105947pt;}
.y2a_c00275{bottom:412.538027pt;}
.y2b_c00275{bottom:413.364347pt;}
.y2c_c00275{bottom:413.827947pt;}
.y2d_c00275{bottom:414.116773pt;}
.y2e_c00275{bottom:414.902560pt;}
.y2f_c00275{bottom:415.047600pt;}
.y30_c00275{bottom:415.792933pt;}
.y31_c00275{bottom:416.115680pt;}
.y23_c00275{bottom:428.142160pt;}
.y24_c00275{bottom:428.434907pt;}
.y25_c00275{bottom:428.672613pt;}
.y26_c00275{bottom:429.248240pt;}
.y27_c00275{bottom:430.005653pt;}
.y28_c00275{bottom:430.459227pt;}
.y29_c00275{bottom:430.918187pt;}
.y1a_c00275{bottom:443.268960pt;}
.y1b_c00275{bottom:443.568053pt;}
.y1c_c00275{bottom:443.712213pt;}
.y1d_c00275{bottom:443.878693pt;}
.y1e_c00275{bottom:444.457520pt;}
.y1f_c00275{bottom:444.713253pt;}
.y20_c00275{bottom:445.259947pt;}
.y21_c00275{bottom:445.642693pt;}
.y22_c00275{bottom:446.091253pt;}
.y13_c00275{bottom:458.871360pt;}
.y14_c00275{bottom:459.446400pt;}
.y15_c00275{bottom:459.793413pt;}
.y16_c00275{bottom:460.392027pt;}
.y17_c00275{bottom:460.629680pt;}
.y18_c00275{bottom:461.321920pt;}
.y19_c00275{bottom:461.507280pt;}
.ya_c00275{bottom:473.516267pt;}
.yb_c00275{bottom:473.679840pt;}
.yc_c00275{bottom:473.921680pt;}
.yd_c00275{bottom:474.411733pt;}
.ye_c00275{bottom:474.777867pt;}
.yf_c00275{bottom:475.678587pt;}
.y10_c00275{bottom:475.941067pt;}
.y11_c00275{bottom:476.462640pt;}
.y12_c00275{bottom:476.660213pt;}
.y3_c00275{bottom:488.880827pt;}
.y4_c00275{bottom:489.352347pt;}
.y5_c00275{bottom:489.687040pt;}
.y6_c00275{bottom:490.582480pt;}
.y7_c00275{bottom:491.209600pt;}
.y8_c00275{bottom:492.061547pt;}
.y9_c00275{bottom:492.246640pt;}
.y1_c00275{bottom:502.566667pt;}
.y2_c00275{bottom:505.360000pt;}
.h10_c00275{height:51.338364pt;}
.he_c00275{height:52.271789pt;}
.h7_c00275{height:52.277119pt;}
.hf_c00275{height:53.205213pt;}
.ha_c00275{height:54.138638pt;}
.h4_c00275{height:54.144159pt;}
.hb_c00275{height:55.072063pt;}
.h13_c00275{height:56.005488pt;}
.h6_c00275{height:56.011199pt;}
.h12_c00275{height:57.872337pt;}
.hd_c00275{height:58.805762pt;}
.h8_c00275{height:58.811759pt;}
.h9_c00275{height:59.739187pt;}
.h3_c00275{height:59.745279pt;}
.hc_c00275{height:60.672612pt;}
.h11_c00275{height:61.606037pt;}
.h5_c00275{height:63.479359pt;}
.h14_c00275{height:66.273160pt;}
.h2_c00275{height:71.881039pt;}
.h1_c00275{height:550.000000pt;}
.h0_c00275{height:550.266667pt;}
.w0_c00275{width:319.200000pt;}
.w1_c00275{width:319.333333pt;}
.x0_c00275{left:0.000000pt;}
.x3_c00275{left:33.273093pt;}
.x15_c00275{left:34.192000pt;}
.x2a_c00275{left:35.346240pt;}
.x52_c00275{left:36.605389pt;}
.x64_c00275{left:37.921125pt;}
.x49_c00275{left:44.029461pt;}
.xa_c00275{left:45.199093pt;}
.x3b_c00275{left:52.182667pt;}
.x2b_c00275{left:54.072853pt;}
.x16_c00275{left:59.150667pt;}
.x6e_c00275{left:60.133632pt;}
.x1e_c00275{left:61.063307pt;}
.xb_c00275{left:62.493173pt;}
.x4_c00275{left:64.718907pt;}
.x4a_c00275{left:66.891811pt;}
.x17_c00275{left:71.160587pt;}
.x59_c00275{left:73.203133pt;}
.x3c_c00275{left:77.384000pt;}
.x36_c00275{left:79.179467pt;}
.x75_c00275{left:80.163584pt;}
.x1f_c00275{left:82.685867pt;}
.x5e_c00275{left:83.880776pt;}
.x18_c00275{left:85.086827pt;}
.x5_c00275{left:87.055813pt;}
.x43_c00275{left:88.971627pt;}
.x5a_c00275{left:90.245141pt;}
.x6d_c00275{left:92.104235pt;}
.x23_c00275{left:93.516240pt;}
.x3d_c00275{left:95.209333pt;}
.xc_c00275{left:97.533387pt;}
.x27_c00275{left:99.715893pt;}
.x2c_c00275{left:101.596853pt;}
.x31_c00275{left:104.254907pt;}
.x5f_c00275{left:108.141803pt;}
.x3e_c00275{left:110.088000pt;}
.x41_c00275{left:111.126755pt;}
.x10_c00275{left:117.717707pt;}
.x6b_c00275{left:122.301413pt;}
.xd_c00275{left:123.709867pt;}
.x24_c00275{left:126.633547pt;}
.x4e_c00275{left:130.953491pt;}
.x19_c00275{left:133.369227pt;}
.x20_c00275{left:135.009947pt;}
.x44_c00275{left:138.601651pt;}
.x4b_c00275{left:139.868136pt;}
.x66_c00275{left:140.889027pt;}
.x57_c00275{left:144.843757pt;}
.x6_c00275{left:146.767120pt;}
.x2d_c00275{left:148.118027pt;}
.x37_c00275{left:149.272827pt;}
.x72_c00275{left:150.243800pt;}
.x1_c00275{left:151.272000pt;}
.x53_c00275{left:153.527032pt;}
.x1a_c00275{left:154.692640pt;}
.x28_c00275{left:156.798160pt;}
.x4c_c00275{left:158.113208pt;}
.x77_c00275{left:159.777259pt;}
.x38_c00275{left:161.755147pt;}
.x5b_c00275{left:163.331688pt;}
.x65_c00275{left:164.892675pt;}
.x2e_c00275{left:166.215227pt;}
.x32_c00275{left:168.538427pt;}
.x54_c00275{left:170.088589pt;}
.x11_c00275{left:172.191520pt;}
.x29_c00275{left:173.638533pt;}
.x45_c00275{left:174.658155pt;}
.x39_c00275{left:176.398347pt;}
.x4f_c00275{left:181.602909pt;}
.x33_c00275{left:182.514560pt;}
.x3f_c00275{left:186.326667pt;}
.x7_c00275{left:188.593973pt;}
.x46_c00275{left:191.699731pt;}
.x12_c00275{left:193.811413pt;}
.x6f_c00275{left:198.691944pt;}
.x1b_c00275{left:200.301280pt;}
.x21_c00275{left:203.893013pt;}
.x47_c00275{left:205.562584pt;}
.xe_c00275{left:206.813173pt;}
.x76_c00275{left:211.455973pt;}
.x25_c00275{left:213.760000pt;}
.x42_c00275{left:216.736789pt;}
.x4d_c00275{left:219.966997pt;}
.x73_c00275{left:221.957771pt;}
.x5c_c00275{left:224.772931pt;}
.x48_c00275{left:227.490883pt;}
.x2f_c00275{left:230.306853pt;}
.x1c_c00275{left:232.243733pt;}
.x55_c00275{left:233.446819pt;}
.x71_c00275{left:234.898688pt;}
.x34_c00275{left:236.277307pt;}
.x74_c00275{left:238.388389pt;}
.x6c_c00275{left:241.838088pt;}
.xf_c00275{left:244.029627pt;}
.x8_c00275{left:245.396987pt;}
.x62_c00275{left:246.502643pt;}
.x3a_c00275{left:247.452080pt;}
.x56_c00275{left:248.351024pt;}
.x50_c00275{left:250.711517pt;}
.x60_c00275{left:251.603813pt;}
.x35_c00275{left:253.575440pt;}
.x13_c00275{left:256.701387pt;}
.x9_c00275{left:257.719547pt;}
.x67_c00275{left:261.140584pt;}
.x69_c00275{left:263.486493pt;}
.x5d_c00275{left:264.698611pt;}
.x70_c00275{left:266.029888pt;}
.x26_c00275{left:267.033067pt;}
.x1d_c00275{left:269.677733pt;}
.x58_c00275{left:270.882813pt;}
.x14_c00275{left:273.505733pt;}
.x61_c00275{left:277.351563pt;}
.x51_c00275{left:284.327117pt;}
.x22_c00275{left:286.934640pt;}
.x2_c00275{left:290.938667pt;}
.x68_c00275{left:291.863947pt;}
.x30_c00275{left:293.447680pt;}
.x6a_c00275{left:298.056797pt;}
.x40_c00275{left:303.644000pt;}
.x63_c00275{left:308.668165pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00276 {
    display:none;
  }
  .loading-indicator_c00276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00276 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00276 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00276" -> "#page-container .classname_c00276")
 */
.pf_c00276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00276 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00276 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00276 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00276 {overflow:visible;}
  }
}
.c_c00276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00276 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00276:after { /* webkit #35443 */
  content: '';
}
.t_c00276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00276 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00276 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00276 { /* info for Javascript */
  display:none;
}
.l_c00276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00276:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00276 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00276.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00276{transform:matrix(0.077285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077285,0.000000,0.000000,0.250000,0,0);}
.ma7_c00276{transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00276{transform:matrix(0.126805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126805,0.000000,0.000000,0.250000,0,0);}
.mea_c00276{transform:matrix(0.136650,0.002050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.136650,0.002050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.136650,0.002050,-0.003750,0.249972,0,0);}
.m27_c00276{transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m23_c00276{transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);}
.mf2_c00276{transform:matrix(0.145944,0.002189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145944,0.002189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145944,0.002189,-0.003750,0.249972,0,0);}
.m97_c00276{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.md9_c00276{transform:matrix(0.147980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147980,0.000000,0.000000,0.250000,0,0);}
.m85_c00276{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150440,0.000000,0.000000,0.250000,0,0);}
.mb0_c00276{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m7c_c00276{transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154580,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);}
.m6d_c00276{transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00276{transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157685,0.000000,0.000000,0.250000,0,0);}
.m98_c00276{transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);}
.m4d_c00276{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m54_c00276{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.mee_c00276{transform:matrix(0.160352,0.002405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160352,0.002405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160352,0.002405,-0.003750,0.249972,0,0);}
.m1b_c00276{transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);}
.mdc_c00276{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.md1_c00276{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.m7f_c00276{transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161760,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);}
.m26_c00276{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.maf_c00276{transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00276{transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);}
.m3c_c00276{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.md8_c00276{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);}
.m57_c00276{transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);}
.m83_c00276{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.ma3_c00276{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m62_c00276{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00276{transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);}
.m2c_c00276{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.mf0_c00276{transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171741,0.002576,-0.003750,0.249972,0,0);}
.mdd_c00276{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m7d_c00276{transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);}
.mdf_c00276{transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);}
.mda_c00276{transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m92_c00276{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00276{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.mbe_c00276{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m7b_c00276{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m32_c00276{transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.md4_c00276{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.mec_c00276{transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);}
.mab_c00276{transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);}
.ma2_c00276{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m59_c00276{transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178265,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.mc9_c00276{transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.mf3_c00276{transform:matrix(0.179630,0.002694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179630,0.002694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179630,0.002694,-0.003750,0.249972,0,0);}
.m8a_c00276{transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);}
.me8_c00276{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00276{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.mc1_c00276{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m87_c00276{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m84_c00276{transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);}
.meb_c00276{transform:matrix(0.181685,0.002725,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181685,0.002725,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181685,0.002725,-0.003750,0.249972,0,0);}
.m66_c00276{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m4b_c00276{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m80_c00276{transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.mef_c00276{transform:matrix(0.184939,0.002774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184939,0.002774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184939,0.002774,-0.003750,0.249972,0,0);}
.m3d_c00276{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m88_c00276{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.m56_c00276{transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);}
.m20_c00276{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.md7_c00276{transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m91_c00276{transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00276{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.me0_c00276{transform:matrix(0.187780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187780,0.000000,0.000000,0.250000,0,0);}
.m5d_c00276{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m9b_c00276{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m71_c00276{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.mc7_c00276{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00276{transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);}
.m53_c00276{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00276{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m72_c00276{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m69_c00276{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.mb4_c00276{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mc0_c00276{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.mbf_c00276{transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192520,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m9f_c00276{transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.med_c00276{transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);}
.mad_c00276{transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);}
.m89_c00276{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.mf1_c00276{transform:matrix(0.193713,0.002906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193713,0.002906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193713,0.002906,-0.003750,0.249972,0,0);}
.m31_c00276{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);}
.m63_c00276{transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);}
.m7a_c00276{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m77_c00276{transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);}
.m96_c00276{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m65_c00276{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.m99_c00276{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.mba_c00276{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.md0_c00276{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.ma0_c00276{transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.ma9_c00276{transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);}
.m35_c00276{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);}
.m74_c00276{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.me9_c00276{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.me7_c00276{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m2e_c00276{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.mae_c00276{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.ma4_c00276{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m8d_c00276{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.m6e_c00276{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.md6_c00276{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.m61_c00276{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m95_c00276{transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);}
.m3b_c00276{transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);}
.mc5_c00276{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.me5_c00276{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.m55_c00276{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m76_c00276{transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00276{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.mb7_c00276{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.mb6_c00276{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.mde_c00276{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m93_c00276{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.md5_c00276{transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);}
.ma8_c00276{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m64_c00276{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.md2_c00276{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.m5b_c00276{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.mbd_c00276{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.ma6_c00276{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.mce_c00276{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.mc2_c00276{transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00276{transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);}
.m86_c00276{transform:matrix(0.215860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215860,0.000000,0.000000,0.250000,0,0);}
.me6_c00276{transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);}
.m9d_c00276{transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);}
.me2_c00276{transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);}
.mb1_c00276{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.m8b_c00276{transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);}
.mb8_c00276{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.m58_c00276{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.mc3_c00276{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.mca_c00276{transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221235,0.000000,0.000000,0.250000,0,0);}
.m6f_c00276{transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);}
.m8f_c00276{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00276{transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);}
.ma1_c00276{transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);}
.me1_c00276{transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m67_c00276{transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00276{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00276{transform:matrix(0.231395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00276{transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.m70_c00276{transform:matrix(0.233805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233805,0.000000,0.000000,0.250000,0,0);}
.mbb_c00276{transform:matrix(0.233810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233810,0.000000,0.000000,0.250000,0,0);}
.me4_c00276{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);}
.m5a_c00276{transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00276{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.mbc_c00276{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.mb2_c00276{transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);}
.m9e_c00276{transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);}
.maa_c00276{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.mcb_c00276{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.mc6_c00276{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.mcc_c00276{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.mc4_c00276{transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m50_c00276{transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);}
.m90_c00276{transform:matrix(0.277675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277675,0.000000,0.000000,0.250000,0,0);}
.mb3_c00276{transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);}
.md3_c00276{transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.393375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393375,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.401085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401085,0.000000,0.000000,0.250000,0,0);}
.me3_c00276{transform:matrix(0.451380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451380,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:0.000000px;}
.fc0_c00276{color:transparent;}
.fse_c00276{font-size:53.550000px;}
.fsd_c00276{font-size:58.800000px;}
.fs3_c00276{font-size:59.850000px;}
.fsa_c00276{font-size:60.900000px;}
.fs1_c00276{font-size:61.950000px;}
.fsb_c00276{font-size:63.000000px;}
.fs7_c00276{font-size:64.050000px;}
.fs8_c00276{font-size:65.100000px;}
.fs6_c00276{font-size:66.150000px;}
.fsc_c00276{font-size:67.200000px;}
.fs2_c00276{font-size:68.250000px;}
.fs10_c00276{font-size:68.257678px;}
.fs9_c00276{font-size:70.350000px;}
.fsf_c00276{font-size:70.357914px;}
.fs4_c00276{font-size:72.450000px;}
.fs5_c00276{font-size:73.500000px;}
.fs0_c00276{font-size:100.800000px;}
.y0_c00276{bottom:0.000000px;}
.y78_c00276{bottom:13.410037px;}
.y79_c00276{bottom:13.410255px;}
.y7a_c00276{bottom:13.410675px;}
.y77_c00276{bottom:25.271850px;}
.y76_c00276{bottom:25.684050px;}
.y75_c00276{bottom:26.068822px;}
.y74_c00276{bottom:26.490585px;}
.y73_c00276{bottom:27.701940px;}
.y72_c00276{bottom:28.726905px;}
.y71_c00276{bottom:28.893000px;}
.y70_c00276{bottom:44.214000px;}
.y6f_c00276{bottom:45.063000px;}
.y6e_c00276{bottom:45.295500px;}
.y6d_c00276{bottom:46.179000px;}
.y6c_c00276{bottom:47.047500px;}
.y6b_c00276{bottom:47.215500px;}
.y6a_c00276{bottom:47.794500px;}
.y69_c00276{bottom:61.749000px;}
.y68_c00276{bottom:62.178000px;}
.y67_c00276{bottom:62.947500px;}
.y66_c00276{bottom:63.324000px;}
.y65_c00276{bottom:64.510500px;}
.y64_c00276{bottom:64.815000px;}
.y63_c00276{bottom:65.346000px;}
.y62_c00276{bottom:79.011000px;}
.y61_c00276{bottom:96.652500px;}
.y60_c00276{bottom:97.101000px;}
.y5f_c00276{bottom:97.476000px;}
.y5e_c00276{bottom:99.264000px;}
.y5d_c00276{bottom:99.750000px;}
.y5c_c00276{bottom:100.753500px;}
.y5b_c00276{bottom:101.671500px;}
.y5a_c00276{bottom:103.150500px;}
.y59_c00276{bottom:113.625000px;}
.y58_c00276{bottom:115.410000px;}
.y57_c00276{bottom:115.698000px;}
.y56_c00276{bottom:116.868000px;}
.y55_c00276{bottom:117.300000px;}
.y54_c00276{bottom:118.324500px;}
.y53_c00276{bottom:118.798500px;}
.y52_c00276{bottom:119.887500px;}
.y51_c00276{bottom:131.340000px;}
.y50_c00276{bottom:132.289500px;}
.y4f_c00276{bottom:132.597000px;}
.y4e_c00276{bottom:133.272000px;}
.y4d_c00276{bottom:133.530000px;}
.y4c_c00276{bottom:134.044500px;}
.y4b_c00276{bottom:134.742000px;}
.y4a_c00276{bottom:135.043500px;}
.y49_c00276{bottom:135.343500px;}
.y48_c00276{bottom:135.816000px;}
.y47_c00276{bottom:150.660000px;}
.y46_c00276{bottom:151.224000px;}
.y45_c00276{bottom:151.408500px;}
.y44_c00276{bottom:152.241000px;}
.y43_c00276{bottom:152.812500px;}
.y42_c00276{bottom:152.980500px;}
.y41_c00276{bottom:153.640500px;}
.y40_c00276{bottom:153.900000px;}
.y3f_c00276{bottom:164.277000px;}
.y3e_c00276{bottom:180.502500px;}
.y3d_c00276{bottom:180.759000px;}
.y3c_c00276{bottom:181.794000px;}
.y3b_c00276{bottom:182.497500px;}
.y3a_c00276{bottom:182.703000px;}
.y39_c00276{bottom:184.209000px;}
.y38_c00276{bottom:184.953000px;}
.y37_c00276{bottom:199.194000px;}
.y36_c00276{bottom:215.506500px;}
.y35_c00276{bottom:216.054000px;}
.y34_c00276{bottom:216.991500px;}
.y33_c00276{bottom:217.243500px;}
.y32_c00276{bottom:217.879500px;}
.y31_c00276{bottom:218.722500px;}
.y30_c00276{bottom:218.971500px;}
.y2f_c00276{bottom:233.373000px;}
.y2e_c00276{bottom:234.024000px;}
.y2d_c00276{bottom:234.202500px;}
.y2c_c00276{bottom:234.478500px;}
.y2b_c00276{bottom:235.174500px;}
.y2a_c00276{bottom:235.843500px;}
.y29_c00276{bottom:236.251500px;}
.y28_c00276{bottom:250.767000px;}
.y27_c00276{bottom:251.272500px;}
.y26_c00276{bottom:251.491500px;}
.y25_c00276{bottom:251.824500px;}
.y24_c00276{bottom:252.790500px;}
.y23_c00276{bottom:253.066500px;}
.y22_c00276{bottom:253.261500px;}
.y21_c00276{bottom:268.723500px;}
.y20_c00276{bottom:268.927500px;}
.y1f_c00276{bottom:269.617500px;}
.y1e_c00276{bottom:269.883000px;}
.y1d_c00276{bottom:270.505500px;}
.y1c_c00276{bottom:270.877500px;}
.y1b_c00276{bottom:271.260000px;}
.y1a_c00276{bottom:271.891500px;}
.y19_c00276{bottom:285.675000px;}
.y18_c00276{bottom:285.897000px;}
.y17_c00276{bottom:286.137000px;}
.y16_c00276{bottom:286.701000px;}
.y15_c00276{bottom:286.923000px;}
.y14_c00276{bottom:287.472000px;}
.y13_c00276{bottom:288.247500px;}
.y12_c00276{bottom:288.363000px;}
.y11_c00276{bottom:304.428000px;}
.y10_c00276{bottom:321.888000px;}
.yf_c00276{bottom:338.430000px;}
.ye_c00276{bottom:354.565500px;}
.yd_c00276{bottom:371.403000px;}
.yc_c00276{bottom:388.144500px;}
.yb_c00276{bottom:404.004000px;}
.ya_c00276{bottom:421.585500px;}
.y9_c00276{bottom:439.288500px;}
.y8_c00276{bottom:456.900000px;}
.y7_c00276{bottom:472.320000px;}
.y6_c00276{bottom:490.495500px;}
.y5_c00276{bottom:507.598500px;}
.y4_c00276{bottom:525.088500px;}
.y3_c00276{bottom:541.599000px;}
.y2_c00276{bottom:558.988500px;}
.y1_c00276{bottom:569.049000px;}
.h10_c00276{height:53.550000px;}
.hf_c00276{height:58.800000px;}
.h5_c00276{height:59.850000px;}
.hc_c00276{height:60.900000px;}
.h3_c00276{height:61.950000px;}
.hd_c00276{height:63.000000px;}
.h9_c00276{height:64.050000px;}
.ha_c00276{height:65.100000px;}
.h8_c00276{height:66.150000px;}
.he_c00276{height:67.200000px;}
.h4_c00276{height:68.250000px;}
.h12_c00276{height:68.257678px;}
.hb_c00276{height:70.350000px;}
.h11_c00276{height:70.357914px;}
.h6_c00276{height:72.450000px;}
.h7_c00276{height:73.500000px;}
.h2_c00276{height:100.800000px;}
.h1_c00276{height:618.750000px;}
.h0_c00276{height:619.050000px;}
.w0_c00276{width:359.100000px;}
.w1_c00276{width:359.250000px;}
.x0_c00276{left:0.000000px;}
.x4c_c00276{left:23.220000px;}
.x3_c00276{left:26.460000px;}
.x27_c00276{left:27.810000px;}
.x5d_c00276{left:29.325000px;}
.x74_c00276{left:31.296000px;}
.x38_c00276{left:32.400000px;}
.x55_c00276{left:38.752500px;}
.x42_c00276{left:44.010000px;}
.x3d_c00276{left:48.060000px;}
.x5a_c00276{left:50.344500px;}
.x11_c00276{left:52.920000px;}
.x6d_c00276{left:57.550500px;}
.x79_c00276{left:60.015000px;}
.x22_c00276{left:62.370000px;}
.x45_c00276{left:63.720000px;}
.x1e_c00276{left:65.070000px;}
.x77_c00276{left:67.555500px;}
.x50_c00276{left:69.390000px;}
.x12_c00276{left:71.280000px;}
.x49_c00276{left:72.900000px;}
.x5b_c00276{left:75.463500px;}
.x32_c00276{left:76.950000px;}
.x71_c00276{left:79.768500px;}
.x39_c00276{left:81.270000px;}
.x23_c00276{left:82.890000px;}
.x13_c00276{left:87.750000px;}
.x1f_c00276{left:88.830000px;}
.x2e_c00276{left:90.720000px;}
.x6e_c00276{left:92.952000px;}
.x3e_c00276{left:96.660000px;}
.xa_c00276{left:98.010000px;}
.x28_c00276{left:99.900000px;}
.x72_c00276{left:101.316000px;}
.x66_c00276{left:103.414500px;}
.x4_c00276{left:105.300000px;}
.xb_c00276{left:111.240000px;}
.x58_c00276{left:112.752000px;}
.x62_c00276{left:113.785500px;}
.x56_c00276{left:116.238000px;}
.x51_c00276{left:118.260000px;}
.x3a_c00276{left:121.230000px;}
.x19_c00276{left:124.470000px;}
.x4d_c00276{left:126.630000px;}
.x5_c00276{left:131.220000px;}
.x6f_c00276{left:134.017500px;}
.x46_c00276{left:135.270000px;}
.x5e_c00276{left:137.044500px;}
.x24_c00276{left:138.510000px;}
.x33_c00276{left:142.560000px;}
.x1a_c00276{left:143.910000px;}
.x4e_c00276{left:146.880000px;}
.x29_c00276{left:147.960000px;}
.x3f_c00276{left:150.120000px;}
.x6b_c00276{left:153.363000px;}
.x75_c00276{left:154.444500px;}
.x1_c00276{left:157.950000px;}
.x14_c00276{left:159.300000px;}
.x3b_c00276{left:161.190000px;}
.x63_c00276{left:162.727500px;}
.x25_c00276{left:164.160000px;}
.xc_c00276{left:166.590000px;}
.x43_c00276{left:168.480000px;}
.x2f_c00276{left:170.370000px;}
.x40_c00276{left:172.260000px;}
.x76_c00276{left:174.424500px;}
.x70_c00276{left:179.424000px;}
.x4f_c00276{left:182.790000px;}
.x67_c00276{left:184.954500px;}
.x30_c00276{left:187.650000px;}
.x2a_c00276{left:191.970000px;}
.x34_c00276{left:194.130000px;}
.x59_c00276{left:195.658500px;}
.x41_c00276{left:199.530000px;}
.x1b_c00276{left:202.770000px;}
.x52_c00276{left:203.850000px;}
.x15_c00276{left:206.280000px;}
.xd_c00276{left:210.600000px;}
.x5c_c00276{left:213.435000px;}
.x6_c00276{left:215.460000px;}
.x35_c00276{left:217.890000px;}
.x16_c00276{left:219.510000px;}
.x73_c00276{left:220.711500px;}
.x53_c00276{left:221.940000px;}
.x1c_c00276{left:223.290000px;}
.x78_c00276{left:225.315000px;}
.x6a_c00276{left:227.160000px;}
.x7_c00276{left:228.960000px;}
.xe_c00276{left:230.850000px;}
.x2_c00276{left:232.740000px;}
.x5f_c00276{left:234.243000px;}
.x6c_c00276{left:236.169000px;}
.x2b_c00276{left:238.950000px;}
.x47_c00276{left:244.080000px;}
.x7c_c00276{left:245.179470px;}
.x7a_c00276{left:248.293500px;}
.x57_c00276{left:249.615000px;}
.x60_c00276{left:252.061500px;}
.x64_c00276{left:254.187000px;}
.x31_c00276{left:256.230000px;}
.x36_c00276{left:258.930000px;}
.x2c_c00276{left:260.280000px;}
.x4a_c00276{left:267.840000px;}
.x20_c00276{left:272.700000px;}
.x1d_c00276{left:274.860000px;}
.x17_c00276{left:277.290000px;}
.x8_c00276{left:278.640000px;}
.xf_c00276{left:280.260000px;}
.x68_c00276{left:281.884500px;}
.x44_c00276{left:287.820000px;}
.x18_c00276{left:290.250000px;}
.x54_c00276{left:291.330000px;}
.x10_c00276{left:292.950000px;}
.x21_c00276{left:294.840000px;}
.x65_c00276{left:296.293500px;}
.x4b_c00276{left:298.080000px;}
.x26_c00276{left:299.430000px;}
.x7b_c00276{left:301.425000px;}
.x69_c00276{left:303.214500px;}
.x48_c00276{left:306.450000px;}
.x37_c00276{left:307.800000px;}
.x3c_c00276{left:314.010000px;}
.x2d_c00276{left:315.360000px;}
.x61_c00276{left:317.130000px;}
.x9_c00276{left:318.600000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.fse_c00276{font-size:47.600000pt;}
.fsd_c00276{font-size:52.266667pt;}
.fs3_c00276{font-size:53.200000pt;}
.fsa_c00276{font-size:54.133333pt;}
.fs1_c00276{font-size:55.066667pt;}
.fsb_c00276{font-size:56.000000pt;}
.fs7_c00276{font-size:56.933333pt;}
.fs8_c00276{font-size:57.866667pt;}
.fs6_c00276{font-size:58.800000pt;}
.fsc_c00276{font-size:59.733333pt;}
.fs2_c00276{font-size:60.666667pt;}
.fs10_c00276{font-size:60.673491pt;}
.fs9_c00276{font-size:62.533333pt;}
.fsf_c00276{font-size:62.540368pt;}
.fs4_c00276{font-size:64.400000pt;}
.fs5_c00276{font-size:65.333333pt;}
.fs0_c00276{font-size:89.600000pt;}
.y0_c00276{bottom:0.000000pt;}
.y78_c00276{bottom:11.920033pt;}
.y79_c00276{bottom:11.920227pt;}
.y7a_c00276{bottom:11.920600pt;}
.y77_c00276{bottom:22.463867pt;}
.y76_c00276{bottom:22.830267pt;}
.y75_c00276{bottom:23.172287pt;}
.y74_c00276{bottom:23.547187pt;}
.y73_c00276{bottom:24.623947pt;}
.y72_c00276{bottom:25.535027pt;}
.y71_c00276{bottom:25.682667pt;}
.y70_c00276{bottom:39.301333pt;}
.y6f_c00276{bottom:40.056000pt;}
.y6e_c00276{bottom:40.262667pt;}
.y6d_c00276{bottom:41.048000pt;}
.y6c_c00276{bottom:41.820000pt;}
.y6b_c00276{bottom:41.969333pt;}
.y6a_c00276{bottom:42.484000pt;}
.y69_c00276{bottom:54.888000pt;}
.y68_c00276{bottom:55.269333pt;}
.y67_c00276{bottom:55.953333pt;}
.y66_c00276{bottom:56.288000pt;}
.y65_c00276{bottom:57.342667pt;}
.y64_c00276{bottom:57.613333pt;}
.y63_c00276{bottom:58.085333pt;}
.y62_c00276{bottom:70.232000pt;}
.y61_c00276{bottom:85.913333pt;}
.y60_c00276{bottom:86.312000pt;}
.y5f_c00276{bottom:86.645333pt;}
.y5e_c00276{bottom:88.234667pt;}
.y5d_c00276{bottom:88.666667pt;}
.y5c_c00276{bottom:89.558667pt;}
.y5b_c00276{bottom:90.374667pt;}
.y5a_c00276{bottom:91.689333pt;}
.y59_c00276{bottom:101.000000pt;}
.y58_c00276{bottom:102.586667pt;}
.y57_c00276{bottom:102.842667pt;}
.y56_c00276{bottom:103.882667pt;}
.y55_c00276{bottom:104.266667pt;}
.y54_c00276{bottom:105.177333pt;}
.y53_c00276{bottom:105.598667pt;}
.y52_c00276{bottom:106.566667pt;}
.y51_c00276{bottom:116.746667pt;}
.y50_c00276{bottom:117.590667pt;}
.y4f_c00276{bottom:117.864000pt;}
.y4e_c00276{bottom:118.464000pt;}
.y4d_c00276{bottom:118.693333pt;}
.y4c_c00276{bottom:119.150667pt;}
.y4b_c00276{bottom:119.770667pt;}
.y4a_c00276{bottom:120.038667pt;}
.y49_c00276{bottom:120.305333pt;}
.y48_c00276{bottom:120.725333pt;}
.y47_c00276{bottom:133.920000pt;}
.y46_c00276{bottom:134.421333pt;}
.y45_c00276{bottom:134.585333pt;}
.y44_c00276{bottom:135.325333pt;}
.y43_c00276{bottom:135.833333pt;}
.y42_c00276{bottom:135.982667pt;}
.y41_c00276{bottom:136.569333pt;}
.y40_c00276{bottom:136.800000pt;}
.y3f_c00276{bottom:146.024000pt;}
.y3e_c00276{bottom:160.446667pt;}
.y3d_c00276{bottom:160.674667pt;}
.y3c_c00276{bottom:161.594667pt;}
.y3b_c00276{bottom:162.220000pt;}
.y3a_c00276{bottom:162.402667pt;}
.y39_c00276{bottom:163.741333pt;}
.y38_c00276{bottom:164.402667pt;}
.y37_c00276{bottom:177.061333pt;}
.y36_c00276{bottom:191.561333pt;}
.y35_c00276{bottom:192.048000pt;}
.y34_c00276{bottom:192.881333pt;}
.y33_c00276{bottom:193.105333pt;}
.y32_c00276{bottom:193.670667pt;}
.y31_c00276{bottom:194.420000pt;}
.y30_c00276{bottom:194.641333pt;}
.y2f_c00276{bottom:207.442667pt;}
.y2e_c00276{bottom:208.021333pt;}
.y2d_c00276{bottom:208.180000pt;}
.y2c_c00276{bottom:208.425333pt;}
.y2b_c00276{bottom:209.044000pt;}
.y2a_c00276{bottom:209.638667pt;}
.y29_c00276{bottom:210.001333pt;}
.y28_c00276{bottom:222.904000pt;}
.y27_c00276{bottom:223.353333pt;}
.y26_c00276{bottom:223.548000pt;}
.y25_c00276{bottom:223.844000pt;}
.y24_c00276{bottom:224.702667pt;}
.y23_c00276{bottom:224.948000pt;}
.y22_c00276{bottom:225.121333pt;}
.y21_c00276{bottom:238.865333pt;}
.y20_c00276{bottom:239.046667pt;}
.y1f_c00276{bottom:239.660000pt;}
.y1e_c00276{bottom:239.896000pt;}
.y1d_c00276{bottom:240.449333pt;}
.y1c_c00276{bottom:240.780000pt;}
.y1b_c00276{bottom:241.120000pt;}
.y1a_c00276{bottom:241.681333pt;}
.y19_c00276{bottom:253.933333pt;}
.y18_c00276{bottom:254.130667pt;}
.y17_c00276{bottom:254.344000pt;}
.y16_c00276{bottom:254.845333pt;}
.y15_c00276{bottom:255.042667pt;}
.y14_c00276{bottom:255.530667pt;}
.y13_c00276{bottom:256.220000pt;}
.y12_c00276{bottom:256.322667pt;}
.y11_c00276{bottom:270.602667pt;}
.y10_c00276{bottom:286.122667pt;}
.yf_c00276{bottom:300.826667pt;}
.ye_c00276{bottom:315.169333pt;}
.yd_c00276{bottom:330.136000pt;}
.yc_c00276{bottom:345.017333pt;}
.yb_c00276{bottom:359.114667pt;}
.ya_c00276{bottom:374.742667pt;}
.y9_c00276{bottom:390.478667pt;}
.y8_c00276{bottom:406.133333pt;}
.y7_c00276{bottom:419.840000pt;}
.y6_c00276{bottom:435.996000pt;}
.y5_c00276{bottom:451.198667pt;}
.y4_c00276{bottom:466.745333pt;}
.y3_c00276{bottom:481.421333pt;}
.y2_c00276{bottom:496.878667pt;}
.y1_c00276{bottom:505.821333pt;}
.h10_c00276{height:47.600000pt;}
.hf_c00276{height:52.266667pt;}
.h5_c00276{height:53.200000pt;}
.hc_c00276{height:54.133333pt;}
.h3_c00276{height:55.066667pt;}
.hd_c00276{height:56.000000pt;}
.h9_c00276{height:56.933333pt;}
.ha_c00276{height:57.866667pt;}
.h8_c00276{height:58.800000pt;}
.he_c00276{height:59.733333pt;}
.h4_c00276{height:60.666667pt;}
.h12_c00276{height:60.673491pt;}
.hb_c00276{height:62.533333pt;}
.h11_c00276{height:62.540368pt;}
.h6_c00276{height:64.400000pt;}
.h7_c00276{height:65.333333pt;}
.h2_c00276{height:89.600000pt;}
.h1_c00276{height:550.000000pt;}
.h0_c00276{height:550.266667pt;}
.w0_c00276{width:319.200000pt;}
.w1_c00276{width:319.333333pt;}
.x0_c00276{left:0.000000pt;}
.x4c_c00276{left:20.640000pt;}
.x3_c00276{left:23.520000pt;}
.x27_c00276{left:24.720000pt;}
.x5d_c00276{left:26.066667pt;}
.x74_c00276{left:27.818667pt;}
.x38_c00276{left:28.800000pt;}
.x55_c00276{left:34.446667pt;}
.x42_c00276{left:39.120000pt;}
.x3d_c00276{left:42.720000pt;}
.x5a_c00276{left:44.750667pt;}
.x11_c00276{left:47.040000pt;}
.x6d_c00276{left:51.156000pt;}
.x79_c00276{left:53.346667pt;}
.x22_c00276{left:55.440000pt;}
.x45_c00276{left:56.640000pt;}
.x1e_c00276{left:57.840000pt;}
.x77_c00276{left:60.049333pt;}
.x50_c00276{left:61.680000pt;}
.x12_c00276{left:63.360000pt;}
.x49_c00276{left:64.800000pt;}
.x5b_c00276{left:67.078667pt;}
.x32_c00276{left:68.400000pt;}
.x71_c00276{left:70.905333pt;}
.x39_c00276{left:72.240000pt;}
.x23_c00276{left:73.680000pt;}
.x13_c00276{left:78.000000pt;}
.x1f_c00276{left:78.960000pt;}
.x2e_c00276{left:80.640000pt;}
.x6e_c00276{left:82.624000pt;}
.x3e_c00276{left:85.920000pt;}
.xa_c00276{left:87.120000pt;}
.x28_c00276{left:88.800000pt;}
.x72_c00276{left:90.058667pt;}
.x66_c00276{left:91.924000pt;}
.x4_c00276{left:93.600000pt;}
.xb_c00276{left:98.880000pt;}
.x58_c00276{left:100.224000pt;}
.x62_c00276{left:101.142667pt;}
.x56_c00276{left:103.322667pt;}
.x51_c00276{left:105.120000pt;}
.x3a_c00276{left:107.760000pt;}
.x19_c00276{left:110.640000pt;}
.x4d_c00276{left:112.560000pt;}
.x5_c00276{left:116.640000pt;}
.x6f_c00276{left:119.126667pt;}
.x46_c00276{left:120.240000pt;}
.x5e_c00276{left:121.817333pt;}
.x24_c00276{left:123.120000pt;}
.x33_c00276{left:126.720000pt;}
.x1a_c00276{left:127.920000pt;}
.x4e_c00276{left:130.560000pt;}
.x29_c00276{left:131.520000pt;}
.x3f_c00276{left:133.440000pt;}
.x6b_c00276{left:136.322667pt;}
.x75_c00276{left:137.284000pt;}
.x1_c00276{left:140.400000pt;}
.x14_c00276{left:141.600000pt;}
.x3b_c00276{left:143.280000pt;}
.x63_c00276{left:144.646667pt;}
.x25_c00276{left:145.920000pt;}
.xc_c00276{left:148.080000pt;}
.x43_c00276{left:149.760000pt;}
.x2f_c00276{left:151.440000pt;}
.x40_c00276{left:153.120000pt;}
.x76_c00276{left:155.044000pt;}
.x70_c00276{left:159.488000pt;}
.x4f_c00276{left:162.480000pt;}
.x67_c00276{left:164.404000pt;}
.x30_c00276{left:166.800000pt;}
.x2a_c00276{left:170.640000pt;}
.x34_c00276{left:172.560000pt;}
.x59_c00276{left:173.918667pt;}
.x41_c00276{left:177.360000pt;}
.x1b_c00276{left:180.240000pt;}
.x52_c00276{left:181.200000pt;}
.x15_c00276{left:183.360000pt;}
.xd_c00276{left:187.200000pt;}
.x5c_c00276{left:189.720000pt;}
.x6_c00276{left:191.520000pt;}
.x35_c00276{left:193.680000pt;}
.x16_c00276{left:195.120000pt;}
.x73_c00276{left:196.188000pt;}
.x53_c00276{left:197.280000pt;}
.x1c_c00276{left:198.480000pt;}
.x78_c00276{left:200.280000pt;}
.x6a_c00276{left:201.920000pt;}
.x7_c00276{left:203.520000pt;}
.xe_c00276{left:205.200000pt;}
.x2_c00276{left:206.880000pt;}
.x5f_c00276{left:208.216000pt;}
.x6c_c00276{left:209.928000pt;}
.x2b_c00276{left:212.400000pt;}
.x47_c00276{left:216.960000pt;}
.x7c_c00276{left:217.937307pt;}
.x7a_c00276{left:220.705333pt;}
.x57_c00276{left:221.880000pt;}
.x60_c00276{left:224.054667pt;}
.x64_c00276{left:225.944000pt;}
.x31_c00276{left:227.760000pt;}
.x36_c00276{left:230.160000pt;}
.x2c_c00276{left:231.360000pt;}
.x4a_c00276{left:238.080000pt;}
.x20_c00276{left:242.400000pt;}
.x1d_c00276{left:244.320000pt;}
.x17_c00276{left:246.480000pt;}
.x8_c00276{left:247.680000pt;}
.xf_c00276{left:249.120000pt;}
.x68_c00276{left:250.564000pt;}
.x44_c00276{left:255.840000pt;}
.x18_c00276{left:258.000000pt;}
.x54_c00276{left:258.960000pt;}
.x10_c00276{left:260.400000pt;}
.x21_c00276{left:262.080000pt;}
.x65_c00276{left:263.372000pt;}
.x4b_c00276{left:264.960000pt;}
.x26_c00276{left:266.160000pt;}
.x7b_c00276{left:267.933333pt;}
.x69_c00276{left:269.524000pt;}
.x48_c00276{left:272.400000pt;}
.x37_c00276{left:273.600000pt;}
.x3c_c00276{left:279.120000pt;}
.x2d_c00276{left:280.320000pt;}
.x61_c00276{left:281.893333pt;}
.x9_c00276{left:283.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00277 {
    display:none;
  }
  .loading-indicator_c00277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00277 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00277 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00277" -> "#page-container .classname_c00277")
 */
.pf_c00277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00277 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00277 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00277 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00277 {overflow:visible;}
  }
}
.c_c00277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00277 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00277:after { /* webkit #35443 */
  content: '';
}
.t_c00277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00277 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00277 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00277 { /* info for Javascript */
  display:none;
}
.l_c00277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00277:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00277 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00277.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00277{transform:matrix(0.012693,-0.000419,0.008254,0.249864,0,0);-ms-transform:matrix(0.012693,-0.000419,0.008254,0.249864,0,0);-webkit-transform:matrix(0.012693,-0.000419,0.008254,0.249864,0,0);}
.m28_c00277{transform:matrix(0.099925,-0.003301,0.008254,0.249864,0,0);-ms-transform:matrix(0.099925,-0.003301,0.008254,0.249864,0,0);-webkit-transform:matrix(0.099925,-0.003301,0.008254,0.249864,0,0);}
.me9_c00277{transform:matrix(0.125156,-0.001877,0.003750,0.249972,0,0);-ms-transform:matrix(0.125156,-0.001877,0.003750,0.249972,0,0);-webkit-transform:matrix(0.125156,-0.001877,0.003750,0.249972,0,0);}
.me6_c00277{transform:matrix(0.134555,-0.002018,0.003750,0.249972,0,0);-ms-transform:matrix(0.134555,-0.002018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.134555,-0.002018,0.003750,0.249972,0,0);}
.m2b_c00277{transform:matrix(0.139649,-0.004613,0.008254,0.249864,0,0);-ms-transform:matrix(0.139649,-0.004613,0.008254,0.249864,0,0);-webkit-transform:matrix(0.139649,-0.004613,0.008254,0.249864,0,0);}
.me5_c00277{transform:matrix(0.141044,-0.002116,0.003750,0.249972,0,0);-ms-transform:matrix(0.141044,-0.002116,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141044,-0.002116,0.003750,0.249972,0,0);}
.mb1_c00277{transform:matrix(0.141232,-0.002542,0.004499,0.249960,0,0);-ms-transform:matrix(0.141232,-0.002542,0.004499,0.249960,0,0);-webkit-transform:matrix(0.141232,-0.002542,0.004499,0.249960,0,0);}
.me8_c00277{transform:matrix(0.143179,-0.002148,0.003750,0.249972,0,0);-ms-transform:matrix(0.143179,-0.002148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143179,-0.002148,0.003750,0.249972,0,0);}
.md2_c00277{transform:matrix(0.147228,-0.002208,0.003750,0.249972,0,0);-ms-transform:matrix(0.147228,-0.002208,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147228,-0.002208,0.003750,0.249972,0,0);}
.mb2_c00277{transform:matrix(0.149071,-0.002683,0.004499,0.249960,0,0);-ms-transform:matrix(0.149071,-0.002683,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149071,-0.002683,0.004499,0.249960,0,0);}
.m24_c00277{transform:matrix(0.149404,-0.004935,0.008254,0.249864,0,0);-ms-transform:matrix(0.149404,-0.004935,0.008254,0.249864,0,0);-webkit-transform:matrix(0.149404,-0.004935,0.008254,0.249864,0,0);}
.m20_c00277{transform:matrix(0.152502,-0.005038,0.008254,0.249864,0,0);-ms-transform:matrix(0.152502,-0.005038,0.008254,0.249864,0,0);-webkit-transform:matrix(0.152502,-0.005038,0.008254,0.249864,0,0);}
.m97_c00277{transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);}
.m55_c00277{transform:matrix(0.153718,-0.002306,0.003750,0.249972,0,0);-ms-transform:matrix(0.153718,-0.002306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153718,-0.002306,0.003750,0.249972,0,0);}
.m93_c00277{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.mea_c00277{transform:matrix(0.154448,-0.002317,0.003750,0.249972,0,0);-ms-transform:matrix(0.154448,-0.002317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154448,-0.002317,0.003750,0.249972,0,0);}
.m0_c00277{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.me4_c00277{transform:matrix(0.154563,-0.002318,0.003750,0.249972,0,0);-ms-transform:matrix(0.154563,-0.002318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154563,-0.002318,0.003750,0.249972,0,0);}
.ma6_c00277{transform:matrix(0.154719,-0.001857,0.003000,0.249982,0,0);-ms-transform:matrix(0.154719,-0.001857,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154719,-0.001857,0.003000,0.249982,0,0);}
.m9_c00277{transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);}
.mdd_c00277{transform:matrix(0.156777,-0.002352,0.003750,0.249972,0,0);-ms-transform:matrix(0.156777,-0.002352,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156777,-0.002352,0.003750,0.249972,0,0);}
.m77_c00277{transform:matrix(0.157252,-0.002673,0.004249,0.249964,0,0);-ms-transform:matrix(0.157252,-0.002673,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157252,-0.002673,0.004249,0.249964,0,0);}
.mda_c00277{transform:matrix(0.157747,-0.002366,0.003750,0.249972,0,0);-ms-transform:matrix(0.157747,-0.002366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157747,-0.002366,0.003750,0.249972,0,0);}
.m5b_c00277{transform:matrix(0.158177,-0.002689,0.004249,0.249964,0,0);-ms-transform:matrix(0.158177,-0.002689,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158177,-0.002689,0.004249,0.249964,0,0);}
.m70_c00277{transform:matrix(0.158307,-0.002691,0.004249,0.249964,0,0);-ms-transform:matrix(0.158307,-0.002691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158307,-0.002691,0.004249,0.249964,0,0);}
.m29_c00277{transform:matrix(0.158673,-0.005241,0.008254,0.249864,0,0);-ms-transform:matrix(0.158673,-0.005241,0.008254,0.249864,0,0);-webkit-transform:matrix(0.158673,-0.005241,0.008254,0.249864,0,0);}
.m1b_c00277{transform:matrix(0.159308,-0.005262,0.008254,0.249864,0,0);-ms-transform:matrix(0.159308,-0.005262,0.008254,0.249864,0,0);-webkit-transform:matrix(0.159308,-0.005262,0.008254,0.249864,0,0);}
.md6_c00277{transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);-ms-transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159952,-0.002399,0.003750,0.249972,0,0);}
.m39_c00277{transform:matrix(0.160497,-0.002407,0.003750,0.249972,0,0);-ms-transform:matrix(0.160497,-0.002407,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160497,-0.002407,0.003750,0.249972,0,0);}
.mbd_c00277{transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-ms-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);}
.m7_c00277{transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);}
.mdb_c00277{transform:matrix(0.165831,-0.002487,0.003750,0.249972,0,0);-ms-transform:matrix(0.165831,-0.002487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165831,-0.002487,0.003750,0.249972,0,0);}
.m2_c00277{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mbf_c00277{transform:matrix(0.166571,-0.002499,0.003750,0.249972,0,0);-ms-transform:matrix(0.166571,-0.002499,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166571,-0.002499,0.003750,0.249972,0,0);}
.mb_c00277{transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168551,-0.002528,0.003750,0.249972,0,0);}
.m23_c00277{transform:matrix(0.169298,-0.005592,0.008254,0.249864,0,0);-ms-transform:matrix(0.169298,-0.005592,0.008254,0.249864,0,0);-webkit-transform:matrix(0.169298,-0.005592,0.008254,0.249864,0,0);}
.m83_c00277{transform:matrix(0.169690,-0.002885,0.004249,0.249964,0,0);-ms-transform:matrix(0.169690,-0.002885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169690,-0.002885,0.004249,0.249964,0,0);}
.maa_c00277{transform:matrix(0.170038,-0.002040,0.003000,0.249982,0,0);-ms-transform:matrix(0.170038,-0.002040,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170038,-0.002040,0.003000,0.249982,0,0);}
.m8b_c00277{transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);-ms-transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);}
.mb4_c00277{transform:matrix(0.170437,-0.003068,0.004499,0.249960,0,0);-ms-transform:matrix(0.170437,-0.003068,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170437,-0.003068,0.004499,0.249960,0,0);}
.m58_c00277{transform:matrix(0.170525,-0.002899,0.004249,0.249964,0,0);-ms-transform:matrix(0.170525,-0.002899,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170525,-0.002899,0.004249,0.249964,0,0);}
.m84_c00277{transform:matrix(0.171040,-0.002908,0.004249,0.249964,0,0);-ms-transform:matrix(0.171040,-0.002908,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171040,-0.002908,0.004249,0.249964,0,0);}
.m40_c00277{transform:matrix(0.171321,-0.002570,0.003750,0.249972,0,0);-ms-transform:matrix(0.171321,-0.002570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171321,-0.002570,0.003750,0.249972,0,0);}
.m6d_c00277{transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);}
.md1_c00277{transform:matrix(0.171501,-0.002573,0.003750,0.249972,0,0);-ms-transform:matrix(0.171501,-0.002573,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171501,-0.002573,0.003750,0.249972,0,0);}
.m85_c00277{transform:matrix(0.172010,-0.002924,0.004249,0.249964,0,0);-ms-transform:matrix(0.172010,-0.002924,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172010,-0.002924,0.004249,0.249964,0,0);}
.m95_c00277{transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);}
.mc4_c00277{transform:matrix(0.172746,-0.002591,0.003750,0.249972,0,0);-ms-transform:matrix(0.172746,-0.002591,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172746,-0.002591,0.003750,0.249972,0,0);}
.mce_c00277{transform:matrix(0.172836,-0.002593,0.003750,0.249972,0,0);-ms-transform:matrix(0.172836,-0.002593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172836,-0.002593,0.003750,0.249972,0,0);}
.md5_c00277{transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);}
.m14_c00277{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.m88_c00277{transform:matrix(0.174145,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174145,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174145,-0.002960,0.004249,0.249964,0,0);}
.mb6_c00277{transform:matrix(0.174402,-0.003139,0.004499,0.249960,0,0);-ms-transform:matrix(0.174402,-0.003139,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174402,-0.003139,0.004499,0.249960,0,0);}
.m22_c00277{transform:matrix(0.174460,-0.005763,0.008254,0.249864,0,0);-ms-transform:matrix(0.174460,-0.005763,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174460,-0.005763,0.008254,0.249864,0,0);}
.m96_c00277{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);}
.m68_c00277{transform:matrix(0.174890,-0.002973,0.004249,0.249964,0,0);-ms-transform:matrix(0.174890,-0.002973,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174890,-0.002973,0.004249,0.249964,0,0);}
.m75_c00277{transform:matrix(0.175595,-0.002985,0.004249,0.249964,0,0);-ms-transform:matrix(0.175595,-0.002985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175595,-0.002985,0.004249,0.249964,0,0);}
.m48_c00277{transform:matrix(0.175850,-0.002638,0.003750,0.249972,0,0);-ms-transform:matrix(0.175850,-0.002638,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175850,-0.002638,0.003750,0.249972,0,0);}
.m60_c00277{transform:matrix(0.176544,-0.003001,0.004249,0.249964,0,0);-ms-transform:matrix(0.176544,-0.003001,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176544,-0.003001,0.004249,0.249964,0,0);}
.m7f_c00277{transform:matrix(0.176764,-0.003005,0.004249,0.249964,0,0);-ms-transform:matrix(0.176764,-0.003005,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176764,-0.003005,0.004249,0.249964,0,0);}
.m34_c00277{transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-ms-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);}
.m1e_c00277{transform:matrix(0.177088,-0.005850,0.008254,0.249864,0,0);-ms-transform:matrix(0.177088,-0.005850,0.008254,0.249864,0,0);-webkit-transform:matrix(0.177088,-0.005850,0.008254,0.249864,0,0);}
.m63_c00277{transform:matrix(0.177149,-0.003012,0.004249,0.249964,0,0);-ms-transform:matrix(0.177149,-0.003012,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177149,-0.003012,0.004249,0.249964,0,0);}
.ma3_c00277{transform:matrix(0.177152,-0.002126,0.003000,0.249982,0,0);-ms-transform:matrix(0.177152,-0.002126,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177152,-0.002126,0.003000,0.249982,0,0);}
.m7b_c00277{transform:matrix(0.177229,-0.003013,0.004249,0.249964,0,0);-ms-transform:matrix(0.177229,-0.003013,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177229,-0.003013,0.004249,0.249964,0,0);}
.mae_c00277{transform:matrix(0.178067,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178067,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178067,-0.002137,0.003000,0.249982,0,0);}
.m87_c00277{transform:matrix(0.178279,-0.003031,0.004249,0.249964,0,0);-ms-transform:matrix(0.178279,-0.003031,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178279,-0.003031,0.004249,0.249964,0,0);}
.m5d_c00277{transform:matrix(0.178359,-0.003032,0.004249,0.249964,0,0);-ms-transform:matrix(0.178359,-0.003032,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178359,-0.003032,0.004249,0.249964,0,0);}
.m81_c00277{transform:matrix(0.180304,-0.003065,0.004249,0.249964,0,0);-ms-transform:matrix(0.180304,-0.003065,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180304,-0.003065,0.004249,0.249964,0,0);}
.m7e_c00277{transform:matrix(0.180484,-0.003068,0.004249,0.249964,0,0);-ms-transform:matrix(0.180484,-0.003068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180484,-0.003068,0.004249,0.249964,0,0);}
.mc9_c00277{transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);}
.md8_c00277{transform:matrix(0.180650,-0.002710,0.003750,0.249972,0,0);-ms-transform:matrix(0.180650,-0.002710,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180650,-0.002710,0.003750,0.249972,0,0);}
.m5f_c00277{transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);-ms-transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);}
.mb7_c00277{transform:matrix(0.180956,-0.003257,0.004499,0.249960,0,0);-ms-transform:matrix(0.180956,-0.003257,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180956,-0.003257,0.004499,0.249960,0,0);}
.m64_c00277{transform:matrix(0.181054,-0.003078,0.004249,0.249964,0,0);-ms-transform:matrix(0.181054,-0.003078,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181054,-0.003078,0.004249,0.249964,0,0);}
.mcf_c00277{transform:matrix(0.181270,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181270,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181270,-0.002719,0.003750,0.249972,0,0);}
.m57_c00277{transform:matrix(0.181689,-0.003089,0.004249,0.249964,0,0);-ms-transform:matrix(0.181689,-0.003089,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181689,-0.003089,0.004249,0.249964,0,0);}
.m3_c00277{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.me0_c00277{transform:matrix(0.181930,-0.002729,0.003750,0.249972,0,0);-ms-transform:matrix(0.181930,-0.002729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181930,-0.002729,0.003750,0.249972,0,0);}
.mcc_c00277{transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);}
.m33_c00277{transform:matrix(0.182807,-0.002559,0.003500,0.249976,0,0);-ms-transform:matrix(0.182807,-0.002559,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182807,-0.002559,0.003500,0.249976,0,0);}
.m76_c00277{transform:matrix(0.183503,-0.003120,0.004249,0.249964,0,0);-ms-transform:matrix(0.183503,-0.003120,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183503,-0.003120,0.004249,0.249964,0,0);}
.m17_c00277{transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);}
.ma2_c00277{transform:matrix(0.183827,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183827,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183827,-0.002206,0.003000,0.249982,0,0);}
.ma1_c00277{transform:matrix(0.184402,-0.002213,0.003000,0.249982,0,0);-ms-transform:matrix(0.184402,-0.002213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184402,-0.002213,0.003000,0.249982,0,0);}
.mec_c00277{transform:matrix(0.184499,-0.002767,0.003750,0.249972,0,0);-ms-transform:matrix(0.184499,-0.002767,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184499,-0.002767,0.003750,0.249972,0,0);}
.m1_c00277{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m9d_c00277{transform:matrix(0.184972,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.184972,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184972,-0.002220,0.003000,0.249982,0,0);}
.m94_c00277{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.m89_c00277{transform:matrix(0.185883,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185883,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185883,-0.003160,0.004249,0.249964,0,0);}
.m16_c00277{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.m8a_c00277{transform:matrix(0.185983,-0.003162,0.004249,0.249964,0,0);-ms-transform:matrix(0.185983,-0.003162,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185983,-0.003162,0.004249,0.249964,0,0);}
.ma4_c00277{transform:matrix(0.186127,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186127,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186127,-0.002234,0.003000,0.249982,0,0);}
.m65_c00277{transform:matrix(0.186663,-0.003173,0.004249,0.249964,0,0);-ms-transform:matrix(0.186663,-0.003173,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186663,-0.003173,0.004249,0.249964,0,0);}
.m3f_c00277{transform:matrix(0.187059,-0.002806,0.003750,0.249972,0,0);-ms-transform:matrix(0.187059,-0.002806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187059,-0.002806,0.003750,0.249972,0,0);}
.m2e_c00277{transform:matrix(0.187347,-0.002623,0.003500,0.249976,0,0);-ms-transform:matrix(0.187347,-0.002623,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187347,-0.002623,0.003500,0.249976,0,0);}
.m56_c00277{transform:matrix(0.187359,-0.002810,0.003750,0.249972,0,0);-ms-transform:matrix(0.187359,-0.002810,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187359,-0.002810,0.003750,0.249972,0,0);}
.mbc_c00277{transform:matrix(0.187569,-0.002814,0.003750,0.249972,0,0);-ms-transform:matrix(0.187569,-0.002814,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187569,-0.002814,0.003750,0.249972,0,0);}
.mb5_c00277{transform:matrix(0.188100,-0.003386,0.004499,0.249960,0,0);-ms-transform:matrix(0.188100,-0.003386,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188100,-0.003386,0.004499,0.249960,0,0);}
.m46_c00277{transform:matrix(0.188224,-0.002823,0.003750,0.249972,0,0);-ms-transform:matrix(0.188224,-0.002823,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188224,-0.002823,0.003750,0.249972,0,0);}
.md_c00277{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m59_c00277{transform:matrix(0.188808,-0.003210,0.004249,0.249964,0,0);-ms-transform:matrix(0.188808,-0.003210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188808,-0.003210,0.004249,0.249964,0,0);}
.mba_c00277{transform:matrix(0.189044,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189044,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189044,-0.002836,0.003750,0.249972,0,0);}
.m3a_c00277{transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);-ms-transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189179,-0.002838,0.003750,0.249972,0,0);}
.mab_c00277{transform:matrix(0.189336,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189336,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189336,-0.002272,0.003000,0.249982,0,0);}
.m62_c00277{transform:matrix(0.189488,-0.003221,0.004249,0.249964,0,0);-ms-transform:matrix(0.189488,-0.003221,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189488,-0.003221,0.004249,0.249964,0,0);}
.m5_c00277{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.me7_c00277{transform:matrix(0.189739,-0.002846,0.003750,0.249972,0,0);-ms-transform:matrix(0.189739,-0.002846,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189739,-0.002846,0.003750,0.249972,0,0);}
.mac_c00277{transform:matrix(0.189991,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189991,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189991,-0.002280,0.003000,0.249982,0,0);}
.m2c_c00277{transform:matrix(0.190026,-0.006277,0.008254,0.249864,0,0);-ms-transform:matrix(0.190026,-0.006277,0.008254,0.249864,0,0);-webkit-transform:matrix(0.190026,-0.006277,0.008254,0.249864,0,0);}
.mb3_c00277{transform:matrix(0.190209,-0.003424,0.004499,0.249960,0,0);-ms-transform:matrix(0.190209,-0.003424,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190209,-0.003424,0.004499,0.249960,0,0);}
.mc_c00277{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m25_c00277{transform:matrix(0.191491,-0.006326,0.008254,0.249864,0,0);-ms-transform:matrix(0.191491,-0.006326,0.008254,0.249864,0,0);-webkit-transform:matrix(0.191491,-0.006326,0.008254,0.249864,0,0);}
.m3b_c00277{transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);}
.m1a_c00277{transform:matrix(0.191895,-0.006339,0.008254,0.249864,0,0);-ms-transform:matrix(0.191895,-0.006339,0.008254,0.249864,0,0);-webkit-transform:matrix(0.191895,-0.006339,0.008254,0.249864,0,0);}
.m86_c00277{transform:matrix(0.191997,-0.003264,0.004249,0.249964,0,0);-ms-transform:matrix(0.191997,-0.003264,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191997,-0.003264,0.004249,0.249964,0,0);}
.mf_c00277{transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m74_c00277{transform:matrix(0.192937,-0.003280,0.004249,0.249964,0,0);-ms-transform:matrix(0.192937,-0.003280,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192937,-0.003280,0.004249,0.249964,0,0);}
.m1f_c00277{transform:matrix(0.192975,-0.006375,0.008254,0.249864,0,0);-ms-transform:matrix(0.192975,-0.006375,0.008254,0.249864,0,0);-webkit-transform:matrix(0.192975,-0.006375,0.008254,0.249864,0,0);}
.md7_c00277{transform:matrix(0.192988,-0.002895,0.003750,0.249972,0,0);-ms-transform:matrix(0.192988,-0.002895,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192988,-0.002895,0.003750,0.249972,0,0);}
.m7a_c00277{transform:matrix(0.193332,-0.003287,0.004249,0.249964,0,0);-ms-transform:matrix(0.193332,-0.003287,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193332,-0.003287,0.004249,0.249964,0,0);}
.md3_c00277{transform:matrix(0.193548,-0.002903,0.003750,0.249972,0,0);-ms-transform:matrix(0.193548,-0.002903,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193548,-0.002903,0.003750,0.249972,0,0);}
.mdc_c00277{transform:matrix(0.193928,-0.002909,0.003750,0.249972,0,0);-ms-transform:matrix(0.193928,-0.002909,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193928,-0.002909,0.003750,0.249972,0,0);}
.m50_c00277{transform:matrix(0.193978,-0.002910,0.003750,0.249972,0,0);-ms-transform:matrix(0.193978,-0.002910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193978,-0.002910,0.003750,0.249972,0,0);}
.md9_c00277{transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);}
.m38_c00277{transform:matrix(0.194433,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194433,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194433,-0.002916,0.003750,0.249972,0,0);}
.m8d_c00277{transform:matrix(0.194592,-0.003308,0.004249,0.249964,0,0);-ms-transform:matrix(0.194592,-0.003308,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194592,-0.003308,0.004249,0.249964,0,0);}
.m27_c00277{transform:matrix(0.194639,-0.006430,0.008254,0.249864,0,0);-ms-transform:matrix(0.194639,-0.006430,0.008254,0.249864,0,0);-webkit-transform:matrix(0.194639,-0.006430,0.008254,0.249864,0,0);}
.m69_c00277{transform:matrix(0.194927,-0.003314,0.004249,0.249964,0,0);-ms-transform:matrix(0.194927,-0.003314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194927,-0.003314,0.004249,0.249964,0,0);}
.m3c_c00277{transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195673,-0.002935,0.003750,0.249972,0,0);}
.m4c_c00277{transform:matrix(0.196173,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196173,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196173,-0.002943,0.003750,0.249972,0,0);}
.m11_c00277{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00277{transform:matrix(0.196857,-0.003347,0.004249,0.249964,0,0);-ms-transform:matrix(0.196857,-0.003347,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196857,-0.003347,0.004249,0.249964,0,0);}
.m61_c00277{transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);-ms-transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);}
.m44_c00277{transform:matrix(0.197138,-0.002957,0.003750,0.249972,0,0);-ms-transform:matrix(0.197138,-0.002957,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197138,-0.002957,0.003750,0.249972,0,0);}
.m3d_c00277{transform:matrix(0.197293,-0.002959,0.003750,0.249972,0,0);-ms-transform:matrix(0.197293,-0.002959,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197293,-0.002959,0.003750,0.249972,0,0);}
.m8f_c00277{transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);-ms-transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198126,-0.003368,0.004249,0.249964,0,0);}
.ma9_c00277{transform:matrix(0.198216,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198216,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198216,-0.002379,0.003000,0.249982,0,0);}
.mf4_c00277{transform:matrix(0.198433,-0.002976,0.003750,0.249972,0,0);-ms-transform:matrix(0.198433,-0.002976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198433,-0.002976,0.003750,0.249972,0,0);}
.m6f_c00277{transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);-ms-transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);}
.m3e_c00277{transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);}
.m12_c00277{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.mad_c00277{transform:matrix(0.199756,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199756,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199756,-0.002397,0.003000,0.249982,0,0);}
.mb8_c00277{transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);-ms-transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199843,-0.003597,0.004499,0.249960,0,0);}
.m6a_c00277{transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);-ms-transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200481,-0.003408,0.004249,0.249964,0,0);}
.mcd_c00277{transform:matrix(0.200632,-0.003009,0.003750,0.249972,0,0);-ms-transform:matrix(0.200632,-0.003009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200632,-0.003009,0.003750,0.249972,0,0);}
.m9f_c00277{transform:matrix(0.200861,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200861,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200861,-0.002410,0.003000,0.249982,0,0);}
.mca_c00277{transform:matrix(0.201012,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.201012,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201012,-0.003015,0.003750,0.249972,0,0);}
.m8e_c00277{transform:matrix(0.201016,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.201016,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201016,-0.003417,0.004249,0.249964,0,0);}
.m78_c00277{transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);-ms-transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201071,-0.003418,0.004249,0.249964,0,0);}
.me2_c00277{transform:matrix(0.201702,-0.003026,0.003750,0.249972,0,0);-ms-transform:matrix(0.201702,-0.003026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201702,-0.003026,0.003750,0.249972,0,0);}
.m6_c00277{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.202060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202060,0.000000,0.000000,0.250000,0,0);}
.m82_c00277{transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);-ms-transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);}
.mee_c00277{transform:matrix(0.202607,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202607,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202607,-0.003039,0.003750,0.249972,0,0);}
.m67_c00277{transform:matrix(0.203951,-0.003467,0.004249,0.249964,0,0);-ms-transform:matrix(0.203951,-0.003467,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203951,-0.003467,0.004249,0.249964,0,0);}
.md4_c00277{transform:matrix(0.204042,-0.003061,0.003750,0.249972,0,0);-ms-transform:matrix(0.204042,-0.003061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204042,-0.003061,0.003750,0.249972,0,0);}
.m80_c00277{transform:matrix(0.204620,-0.003479,0.004249,0.249964,0,0);-ms-transform:matrix(0.204620,-0.003479,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204620,-0.003479,0.004249,0.249964,0,0);}
.m4_c00277{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.ma5_c00277{transform:matrix(0.205150,-0.002462,0.003000,0.249982,0,0);-ms-transform:matrix(0.205150,-0.002462,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205150,-0.002462,0.003000,0.249982,0,0);}
.mf5_c00277{transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);-ms-transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);}
.md0_c00277{transform:matrix(0.205702,-0.003086,0.003750,0.249972,0,0);-ms-transform:matrix(0.205702,-0.003086,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205702,-0.003086,0.003750,0.249972,0,0);}
.m6e_c00277{transform:matrix(0.206290,-0.003507,0.004249,0.249964,0,0);-ms-transform:matrix(0.206290,-0.003507,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206290,-0.003507,0.004249,0.249964,0,0);}
.m43_c00277{transform:matrix(0.206392,-0.003096,0.003750,0.249972,0,0);-ms-transform:matrix(0.206392,-0.003096,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206392,-0.003096,0.003750,0.249972,0,0);}
.m54_c00277{transform:matrix(0.206817,-0.003102,0.003750,0.249972,0,0);-ms-transform:matrix(0.206817,-0.003102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206817,-0.003102,0.003750,0.249972,0,0);}
.m4e_c00277{transform:matrix(0.206997,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.206997,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206997,-0.003105,0.003750,0.249972,0,0);}
.mde_c00277{transform:matrix(0.207447,-0.003112,0.003750,0.249972,0,0);-ms-transform:matrix(0.207447,-0.003112,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207447,-0.003112,0.003750,0.249972,0,0);}
.mb9_c00277{transform:matrix(0.207817,-0.003117,0.003750,0.249972,0,0);-ms-transform:matrix(0.207817,-0.003117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207817,-0.003117,0.003750,0.249972,0,0);}
.me_c00277{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.me1_c00277{transform:matrix(0.208107,-0.003122,0.003750,0.249972,0,0);-ms-transform:matrix(0.208107,-0.003122,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208107,-0.003122,0.003750,0.249972,0,0);}
.mbb_c00277{transform:matrix(0.209681,-0.003145,0.003750,0.249972,0,0);-ms-transform:matrix(0.209681,-0.003145,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209681,-0.003145,0.003750,0.249972,0,0);}
.m91_c00277{transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00277{transform:matrix(0.210295,-0.003575,0.004249,0.249964,0,0);-ms-transform:matrix(0.210295,-0.003575,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210295,-0.003575,0.004249,0.249964,0,0);}
.m73_c00277{transform:matrix(0.210685,-0.003582,0.004249,0.249964,0,0);-ms-transform:matrix(0.210685,-0.003582,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210685,-0.003582,0.004249,0.249964,0,0);}
.m49_c00277{transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);-ms-transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);}
.mbe_c00277{transform:matrix(0.212101,-0.003182,0.003750,0.249972,0,0);-ms-transform:matrix(0.212101,-0.003182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212101,-0.003182,0.003750,0.249972,0,0);}
.m35_c00277{transform:matrix(0.212289,-0.002972,0.003500,0.249976,0,0);-ms-transform:matrix(0.212289,-0.002972,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212289,-0.002972,0.003500,0.249976,0,0);}
.m4b_c00277{transform:matrix(0.212581,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212581,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212581,-0.003189,0.003750,0.249972,0,0);}
.m31_c00277{transform:matrix(0.212659,-0.002977,0.003500,0.249976,0,0);-ms-transform:matrix(0.212659,-0.002977,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212659,-0.002977,0.003500,0.249976,0,0);}
.mc2_c00277{transform:matrix(0.213046,-0.003196,0.003750,0.249972,0,0);-ms-transform:matrix(0.213046,-0.003196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213046,-0.003196,0.003750,0.249972,0,0);}
.m98_c00277{transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);}
.m66_c00277{transform:matrix(0.213429,-0.003628,0.004249,0.249964,0,0);-ms-transform:matrix(0.213429,-0.003628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213429,-0.003628,0.004249,0.249964,0,0);}
.m92_c00277{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.ma8_c00277{transform:matrix(0.213610,-0.002563,0.003000,0.249982,0,0);-ms-transform:matrix(0.213610,-0.002563,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213610,-0.002563,0.003000,0.249982,0,0);}
.m5a_c00277{transform:matrix(0.215059,-0.003656,0.004249,0.249964,0,0);-ms-transform:matrix(0.215059,-0.003656,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215059,-0.003656,0.004249,0.249964,0,0);}
.m7c_c00277{transform:matrix(0.215739,-0.003668,0.004249,0.249964,0,0);-ms-transform:matrix(0.215739,-0.003668,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215739,-0.003668,0.004249,0.249964,0,0);}
.m41_c00277{transform:matrix(0.216391,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216391,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216391,-0.003246,0.003750,0.249972,0,0);}
.mf0_c00277{transform:matrix(0.217611,-0.003264,0.003750,0.249972,0,0);-ms-transform:matrix(0.217611,-0.003264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217611,-0.003264,0.003750,0.249972,0,0);}
.mdf_c00277{transform:matrix(0.218105,-0.003272,0.003750,0.249972,0,0);-ms-transform:matrix(0.218105,-0.003272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218105,-0.003272,0.003750,0.249972,0,0);}
.m51_c00277{transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);-ms-transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);}
.m45_c00277{transform:matrix(0.219435,-0.003292,0.003750,0.249972,0,0);-ms-transform:matrix(0.219435,-0.003292,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219435,-0.003292,0.003750,0.249972,0,0);}
.m4a_c00277{transform:matrix(0.220420,-0.003306,0.003750,0.249972,0,0);-ms-transform:matrix(0.220420,-0.003306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220420,-0.003306,0.003750,0.249972,0,0);}
.m21_c00277{transform:matrix(0.220545,-0.007285,0.008254,0.249864,0,0);-ms-transform:matrix(0.220545,-0.007285,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220545,-0.007285,0.008254,0.249864,0,0);}
.m26_c00277{transform:matrix(0.220640,-0.007288,0.008254,0.249864,0,0);-ms-transform:matrix(0.220640,-0.007288,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220640,-0.007288,0.008254,0.249864,0,0);}
.m6c_c00277{transform:matrix(0.222328,-0.003780,0.004249,0.249964,0,0);-ms-transform:matrix(0.222328,-0.003780,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222328,-0.003780,0.004249,0.249964,0,0);}
.med_c00277{transform:matrix(0.222910,-0.003344,0.003750,0.249972,0,0);-ms-transform:matrix(0.222910,-0.003344,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222910,-0.003344,0.003750,0.249972,0,0);}
.m5e_c00277{transform:matrix(0.222988,-0.003791,0.004249,0.249964,0,0);-ms-transform:matrix(0.222988,-0.003791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222988,-0.003791,0.004249,0.249964,0,0);}
.m47_c00277{transform:matrix(0.223940,-0.003359,0.003750,0.249972,0,0);-ms-transform:matrix(0.223940,-0.003359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223940,-0.003359,0.003750,0.249972,0,0);}
.m8c_c00277{transform:matrix(0.224343,-0.003814,0.004249,0.249964,0,0);-ms-transform:matrix(0.224343,-0.003814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224343,-0.003814,0.004249,0.249964,0,0);}
.m52_c00277{transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);-ms-transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);}
.mc1_c00277{transform:matrix(0.225470,-0.003382,0.003750,0.249972,0,0);-ms-transform:matrix(0.225470,-0.003382,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225470,-0.003382,0.003750,0.249972,0,0);}
.mc5_c00277{transform:matrix(0.225525,-0.003383,0.003750,0.249972,0,0);-ms-transform:matrix(0.225525,-0.003383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225525,-0.003383,0.003750,0.249972,0,0);}
.m79_c00277{transform:matrix(0.225947,-0.003841,0.004249,0.249964,0,0);-ms-transform:matrix(0.225947,-0.003841,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225947,-0.003841,0.004249,0.249964,0,0);}
.maf_c00277{transform:matrix(0.226229,-0.002715,0.003000,0.249982,0,0);-ms-transform:matrix(0.226229,-0.002715,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226229,-0.002715,0.003000,0.249982,0,0);}
.mc7_c00277{transform:matrix(0.226560,-0.003398,0.003750,0.249972,0,0);-ms-transform:matrix(0.226560,-0.003398,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226560,-0.003398,0.003750,0.249972,0,0);}
.ma7_c00277{transform:matrix(0.227144,-0.002726,0.003000,0.249982,0,0);-ms-transform:matrix(0.227144,-0.002726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227144,-0.002726,0.003000,0.249982,0,0);}
.me3_c00277{transform:matrix(0.227239,-0.003409,0.003750,0.249972,0,0);-ms-transform:matrix(0.227239,-0.003409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227239,-0.003409,0.003750,0.249972,0,0);}
.m5c_c00277{transform:matrix(0.227877,-0.003874,0.004249,0.249964,0,0);-ms-transform:matrix(0.227877,-0.003874,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227877,-0.003874,0.004249,0.249964,0,0);}
.mc0_c00277{transform:matrix(0.229904,-0.003449,0.003750,0.249972,0,0);-ms-transform:matrix(0.229904,-0.003449,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229904,-0.003449,0.003750,0.249972,0,0);}
.m32_c00277{transform:matrix(0.230017,-0.003220,0.003500,0.249976,0,0);-ms-transform:matrix(0.230017,-0.003220,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230017,-0.003220,0.003500,0.249976,0,0);}
.m53_c00277{transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);-ms-transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);}
.mb0_c00277{transform:matrix(0.232427,-0.004184,0.004499,0.249960,0,0);-ms-transform:matrix(0.232427,-0.004184,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232427,-0.004184,0.004499,0.249960,0,0);}
.m4f_c00277{transform:matrix(0.234299,-0.003514,0.003750,0.249972,0,0);-ms-transform:matrix(0.234299,-0.003514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234299,-0.003514,0.003750,0.249972,0,0);}
.ma0_c00277{transform:matrix(0.237763,-0.002853,0.003000,0.249982,0,0);-ms-transform:matrix(0.237763,-0.002853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237763,-0.002853,0.003000,0.249982,0,0);}
.mef_c00277{transform:matrix(0.238183,-0.003573,0.003750,0.249972,0,0);-ms-transform:matrix(0.238183,-0.003573,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238183,-0.003573,0.003750,0.249972,0,0);}
.m36_c00277{transform:matrix(0.243496,-0.003409,0.003500,0.249976,0,0);-ms-transform:matrix(0.243496,-0.003409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243496,-0.003409,0.003500,0.249976,0,0);}
.m42_c00277{transform:matrix(0.244423,-0.003666,0.003750,0.249972,0,0);-ms-transform:matrix(0.244423,-0.003666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244423,-0.003666,0.003750,0.249972,0,0);}
.mc8_c00277{transform:matrix(0.245937,-0.003689,0.003750,0.249972,0,0);-ms-transform:matrix(0.245937,-0.003689,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245937,-0.003689,0.003750,0.249972,0,0);}
.mf3_c00277{transform:matrix(0.249732,-0.003746,0.003750,0.249972,0,0);-ms-transform:matrix(0.249732,-0.003746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249732,-0.003746,0.003750,0.249972,0,0);}
.m1c_c00277{transform:matrix(0.252277,-0.008333,0.008254,0.249864,0,0);-ms-transform:matrix(0.252277,-0.008333,0.008254,0.249864,0,0);-webkit-transform:matrix(0.252277,-0.008333,0.008254,0.249864,0,0);}
.m90_c00277{transform:matrix(0.252958,-0.004300,0.004249,0.249964,0,0);-ms-transform:matrix(0.252958,-0.004300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252958,-0.004300,0.004249,0.249964,0,0);}
.mf1_c00277{transform:matrix(0.255146,-0.003827,0.003750,0.249972,0,0);-ms-transform:matrix(0.255146,-0.003827,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255146,-0.003827,0.003750,0.249972,0,0);}
.mc3_c00277{transform:matrix(0.259326,-0.003890,0.003750,0.249972,0,0);-ms-transform:matrix(0.259326,-0.003890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259326,-0.003890,0.003750,0.249972,0,0);}
.m9b_c00277{transform:matrix(0.261096,-0.003133,0.003000,0.249982,0,0);-ms-transform:matrix(0.261096,-0.003133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261096,-0.003133,0.003000,0.249982,0,0);}
.m9c_c00277{transform:matrix(0.263506,-0.003162,0.003000,0.249982,0,0);-ms-transform:matrix(0.263506,-0.003162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263506,-0.003162,0.003000,0.249982,0,0);}
.mf2_c00277{transform:matrix(0.263890,-0.003958,0.003750,0.249972,0,0);-ms-transform:matrix(0.263890,-0.003958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263890,-0.003958,0.003750,0.249972,0,0);}
.m72_c00277{transform:matrix(0.265512,-0.004514,0.004249,0.249964,0,0);-ms-transform:matrix(0.265512,-0.004514,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265512,-0.004514,0.004249,0.249964,0,0);}
.m99_c00277{transform:matrix(0.267016,-0.003204,0.003000,0.249982,0,0);-ms-transform:matrix(0.267016,-0.003204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267016,-0.003204,0.003000,0.249982,0,0);}
.m9a_c00277{transform:matrix(0.273690,-0.003284,0.003000,0.249982,0,0);-ms-transform:matrix(0.273690,-0.003284,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273690,-0.003284,0.003000,0.249982,0,0);}
.m9e_c00277{transform:matrix(0.276760,-0.003321,0.003000,0.249982,0,0);-ms-transform:matrix(0.276760,-0.003321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276760,-0.003321,0.003000,0.249982,0,0);}
.m30_c00277{transform:matrix(0.277618,-0.003887,0.003500,0.249976,0,0);-ms-transform:matrix(0.277618,-0.003887,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277618,-0.003887,0.003500,0.249976,0,0);}
.meb_c00277{transform:matrix(0.280428,-0.004206,0.003750,0.249972,0,0);-ms-transform:matrix(0.280428,-0.004206,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280428,-0.004206,0.003750,0.249972,0,0);}
.mc6_c00277{transform:matrix(0.281038,-0.004216,0.003750,0.249972,0,0);-ms-transform:matrix(0.281038,-0.004216,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281038,-0.004216,0.003750,0.249972,0,0);}
.m2d_c00277{transform:matrix(0.295339,-0.009756,0.008254,0.249864,0,0);-ms-transform:matrix(0.295339,-0.009756,0.008254,0.249864,0,0);-webkit-transform:matrix(0.295339,-0.009756,0.008254,0.249864,0,0);}
.m8_c00277{transform:matrix(0.295935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295935,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.299552,-0.009895,0.008254,0.249864,0,0);-ms-transform:matrix(0.299552,-0.009895,0.008254,0.249864,0,0);-webkit-transform:matrix(0.299552,-0.009895,0.008254,0.249864,0,0);}
.mf6_c00277{transform:matrix(0.305601,-0.004584,0.003750,0.249972,0,0);-ms-transform:matrix(0.305601,-0.004584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.305601,-0.004584,0.003750,0.249972,0,0);}
.m19_c00277{transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00277{transform:matrix(0.330858,-0.004963,0.003750,0.249972,0,0);-ms-transform:matrix(0.330858,-0.004963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.330858,-0.004963,0.003750,0.249972,0,0);}
.mcb_c00277{transform:matrix(0.344891,-0.005173,0.003750,0.249972,0,0);-ms-transform:matrix(0.344891,-0.005173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344891,-0.005173,0.003750,0.249972,0,0);}
.m71_c00277{transform:matrix(0.454354,-0.007724,0.004249,0.249964,0,0);-ms-transform:matrix(0.454354,-0.007724,0.004249,0.249964,0,0);-webkit-transform:matrix(0.454354,-0.007724,0.004249,0.249964,0,0);}
.m2f_c00277{transform:matrix(0.477958,-0.006691,0.003500,0.249976,0,0);-ms-transform:matrix(0.477958,-0.006691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.477958,-0.006691,0.003500,0.249976,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:0.000000px;}
.fc0_c00277{color:transparent;}
.fs4_c00277{font-size:34.650000px;}
.fs1b_c00277{font-size:55.656260px;}
.fsc_c00277{font-size:57.756497px;}
.fs8_c00277{font-size:58.805762px;}
.fs16_c00277{font-size:58.806615px;}
.fs7_c00277{font-size:61.921806px;}
.fs12_c00277{font-size:61.954460px;}
.fs17_c00277{font-size:61.956969px;}
.fs15_c00277{font-size:61.960035px;}
.fsb_c00277{font-size:63.007087px;}
.fsf_c00277{font-size:63.009103px;}
.fs1_c00277{font-size:65.100000px;}
.fs14_c00277{font-size:65.104687px;}
.fs18_c00277{font-size:65.107323px;}
.fse_c00277{font-size:65.109406px;}
.fs5_c00277{font-size:66.119895px;}
.fsa_c00277{font-size:66.157441px;}
.fsd_c00277{font-size:66.159558px;}
.fs19_c00277{font-size:67.207560px;}
.fs13_c00277{font-size:68.254914px;}
.fs10_c00277{font-size:68.259861px;}
.fs3_c00277{font-size:69.300000px;}
.fs9_c00277{font-size:69.307796px;}
.fs11_c00277{font-size:69.310013px;}
.fs2_c00277{font-size:70.350000px;}
.fs6_c00277{font-size:76.615116px;}
.fs0_c00277{font-size:82.950000px;}
.fs1a_c00277{font-size:91.360276px;}
.y0_c00277{bottom:0.000000px;}
.yed_c00277{bottom:17.806575px;}
.yee_c00277{bottom:19.444042px;}
.yef_c00277{bottom:20.604232px;}
.yf0_c00277{bottom:20.843722px;}
.yf1_c00277{bottom:21.530347px;}
.yf2_c00277{bottom:22.546522px;}
.yec_c00277{bottom:36.185490px;}
.yeb_c00277{bottom:36.186202px;}
.yea_c00277{bottom:36.186697px;}
.ye9_c00277{bottom:36.187387px;}
.ye7_c00277{bottom:36.187695px;}
.ye8_c00277{bottom:36.187882px;}
.ye0_c00277{bottom:49.939965px;}
.ye1_c00277{bottom:50.662890px;}
.ye2_c00277{bottom:50.916262px;}
.ye3_c00277{bottom:51.774292px;}
.ye4_c00277{bottom:51.959115px;}
.ye5_c00277{bottom:52.289827px;}
.ye6_c00277{bottom:53.043030px;}
.yd8_c00277{bottom:68.306708px;}
.yd9_c00277{bottom:68.943592px;}
.yda_c00277{bottom:69.482152px;}
.ydb_c00277{bottom:70.670468px;}
.ydc_c00277{bottom:71.081227px;}
.ydd_c00277{bottom:72.362902px;}
.yde_c00277{bottom:73.782443px;}
.ydf_c00277{bottom:74.305950px;}
.yd0_c00277{bottom:85.317465px;}
.yd1_c00277{bottom:86.487082px;}
.yd2_c00277{bottom:87.023152px;}
.yd3_c00277{bottom:87.496837px;}
.yd4_c00277{bottom:88.503195px;}
.yd5_c00277{bottom:89.792475px;}
.yd6_c00277{bottom:90.372697px;}
.yd7_c00277{bottom:90.692475px;}
.yc8_c00277{bottom:102.869115px;}
.yc9_c00277{bottom:103.957125px;}
.yca_c00277{bottom:104.665672px;}
.ycb_c00277{bottom:105.210810px;}
.ycc_c00277{bottom:106.434637px;}
.ycd_c00277{bottom:106.911855px;}
.yce_c00277{bottom:108.060862px;}
.ycf_c00277{bottom:108.477240px;}
.yc2_c00277{bottom:120.417607px;}
.yc3_c00277{bottom:121.306538px;}
.yc4_c00277{bottom:122.643180px;}
.yc5_c00277{bottom:122.832382px;}
.yc6_c00277{bottom:123.339982px;}
.yc7_c00277{bottom:124.345620px;}
.ybc_c00277{bottom:136.353832px;}
.ybd_c00277{bottom:136.823925px;}
.ybe_c00277{bottom:138.259163px;}
.ybf_c00277{bottom:139.698735px;}
.yc0_c00277{bottom:140.068935px;}
.yc1_c00277{bottom:141.720870px;}
.yb4_c00277{bottom:154.713000px;}
.yb5_c00277{bottom:154.943827px;}
.yb6_c00277{bottom:155.932028px;}
.yb7_c00277{bottom:157.013670px;}
.yb8_c00277{bottom:157.762830px;}
.yb9_c00277{bottom:158.336400px;}
.yba_c00277{bottom:158.507693px;}
.ybb_c00277{bottom:158.718990px;}
.yab_c00277{bottom:172.264500px;}
.yac_c00277{bottom:173.347497px;}
.yad_c00277{bottom:173.818485px;}
.yae_c00277{bottom:174.063375px;}
.yaf_c00277{bottom:175.052817px;}
.yb0_c00277{bottom:175.384998px;}
.yb1_c00277{bottom:176.258070px;}
.yb2_c00277{bottom:176.585121px;}
.yb3_c00277{bottom:176.862708px;}
.ya3_c00277{bottom:189.540036px;}
.ya4_c00277{bottom:190.242294px;}
.ya5_c00277{bottom:190.565022px;}
.ya6_c00277{bottom:191.076246px;}
.ya7_c00277{bottom:192.043326px;}
.ya8_c00277{bottom:192.488700px;}
.ya9_c00277{bottom:192.768024px;}
.yaa_c00277{bottom:193.086570px;}
.y9c_c00277{bottom:207.900018px;}
.y9d_c00277{bottom:208.230480px;}
.y9e_c00277{bottom:208.868904px;}
.y9f_c00277{bottom:209.564838px;}
.ya0_c00277{bottom:209.957508px;}
.ya1_c00277{bottom:210.675996px;}
.ya2_c00277{bottom:210.871350px;}
.y94_c00277{bottom:224.911500px;}
.y95_c00277{bottom:225.708756px;}
.y96_c00277{bottom:225.964392px;}
.y97_c00277{bottom:226.457142px;}
.y98_c00277{bottom:226.719366px;}
.y99_c00277{bottom:227.493546px;}
.y9a_c00277{bottom:227.684922px;}
.y9b_c00277{bottom:228.368940px;}
.y93_c00277{bottom:243.825000px;}
.y88_c00277{bottom:258.918503px;}
.y89_c00277{bottom:259.162125px;}
.y8a_c00277{bottom:259.609494px;}
.y8b_c00277{bottom:259.823960px;}
.y8c_c00277{bottom:260.050964px;}
.y8d_c00277{bottom:260.654025px;}
.y8e_c00277{bottom:260.880851px;}
.y8f_c00277{bottom:261.066006px;}
.y90_c00277{bottom:261.296100px;}
.y91_c00277{bottom:261.847002px;}
.y92_c00277{bottom:262.138908px;}
.y81_c00277{bottom:274.853519px;}
.y82_c00277{bottom:275.484946px;}
.y83_c00277{bottom:276.381912px;}
.y84_c00277{bottom:276.792354px;}
.y85_c00277{bottom:278.153620px;}
.y86_c00277{bottom:279.265380px;}
.y87_c00277{bottom:280.503663px;}
.y7a_c00277{bottom:292.404827px;}
.y7b_c00277{bottom:293.690001px;}
.y7c_c00277{bottom:295.204318px;}
.y7d_c00277{bottom:295.438842px;}
.y7e_c00277{bottom:295.714268px;}
.y7f_c00277{bottom:296.517721px;}
.y80_c00277{bottom:296.889920px;}
.y71_c00277{bottom:309.418722px;}
.y72_c00277{bottom:310.525836px;}
.y73_c00277{bottom:310.973604px;}
.y74_c00277{bottom:311.595249px;}
.y75_c00277{bottom:311.984181px;}
.y76_c00277{bottom:312.526497px;}
.y77_c00277{bottom:313.753782px;}
.y78_c00277{bottom:314.393528px;}
.y79_c00277{bottom:314.949660px;}
.y68_c00277{bottom:326.970657px;}
.y69_c00277{bottom:328.135089px;}
.y6a_c00277{bottom:328.595747px;}
.y6b_c00277{bottom:328.885197px;}
.y6c_c00277{bottom:329.605496px;}
.y6d_c00277{bottom:329.954361px;}
.y6e_c00277{bottom:331.055961px;}
.y6f_c00277{bottom:331.285665px;}
.y70_c00277{bottom:331.666813px;}
.y5f_c00277{bottom:343.985454px;}
.y60_c00277{bottom:344.489196px;}
.y61_c00277{bottom:345.671284px;}
.y62_c00277{bottom:346.223747px;}
.y63_c00277{bottom:346.502017px;}
.y64_c00277{bottom:347.934345px;}
.y65_c00277{bottom:348.790841px;}
.y66_c00277{bottom:349.340885px;}
.y67_c00277{bottom:350.329048px;}
.y58_c00277{bottom:361.534500px;}
.y59_c00277{bottom:362.511099px;}
.y5a_c00277{bottom:362.976194px;}
.y5b_c00277{bottom:364.076238px;}
.y5c_c00277{bottom:364.320962px;}
.y5d_c00277{bottom:364.578205px;}
.y5e_c00277{bottom:365.762732px;}
.y4e_c00277{bottom:379.349632px;}
.y4f_c00277{bottom:379.556227px;}
.y50_c00277{bottom:380.325772px;}
.y51_c00277{bottom:380.528362px;}
.y52_c00277{bottom:380.787652px;}
.y53_c00277{bottom:381.083280px;}
.y54_c00277{bottom:381.937785px;}
.y55_c00277{bottom:382.387402px;}
.y56_c00277{bottom:383.355487px;}
.y57_c00277{bottom:383.593492px;}
.y46_c00277{bottom:396.629325px;}
.y47_c00277{bottom:397.041187px;}
.y48_c00277{bottom:397.655437px;}
.y49_c00277{bottom:398.550210px;}
.y4a_c00277{bottom:398.789790px;}
.y4b_c00277{bottom:399.547680px;}
.y4c_c00277{bottom:399.807015px;}
.y4d_c00277{bottom:400.064070px;}
.y3f_c00277{bottom:413.911665px;}
.y40_c00277{bottom:414.187387px;}
.y41_c00277{bottom:415.174342px;}
.y42_c00277{bottom:415.436152px;}
.y43_c00277{bottom:416.449327px;}
.y44_c00277{bottom:417.201480px;}
.y45_c00277{bottom:417.843075px;}
.y38_c00277{bottom:430.383000px;}
.y39_c00277{bottom:430.783793px;}
.y3a_c00277{bottom:431.331082px;}
.y3b_c00277{bottom:432.096622px;}
.y3c_c00277{bottom:433.072492px;}
.y3d_c00277{bottom:433.323075px;}
.y3e_c00277{bottom:434.040870px;}
.y2f_c00277{bottom:447.933000px;}
.y30_c00277{bottom:448.254426px;}
.y31_c00277{bottom:448.696959px;}
.y32_c00277{bottom:448.957443px;}
.y33_c00277{bottom:449.282607px;}
.y34_c00277{bottom:450.378912px;}
.y35_c00277{bottom:450.744900px;}
.y36_c00277{bottom:451.301463px;}
.y37_c00277{bottom:451.566042px;}
.y27_c00277{bottom:462.806984px;}
.y28_c00277{bottom:464.353427px;}
.y29_c00277{bottom:466.242068px;}
.y2a_c00277{bottom:466.549922px;}
.y2b_c00277{bottom:467.271978px;}
.y2c_c00277{bottom:467.866145px;}
.y2d_c00277{bottom:468.568603px;}
.y2e_c00277{bottom:470.149391px;}
.y1e_c00277{bottom:481.691837px;}
.y1f_c00277{bottom:481.867526px;}
.y20_c00277{bottom:482.977397px;}
.y21_c00277{bottom:483.357818px;}
.y22_c00277{bottom:484.167957px;}
.y23_c00277{bottom:485.324196px;}
.y24_c00277{bottom:485.673981px;}
.y25_c00277{bottom:486.572951px;}
.y26_c00277{bottom:486.855947px;}
.y1b_c00277{bottom:498.975000px;}
.y1c_c00277{bottom:502.977917px;}
.y1d_c00277{bottom:508.181753px;}
.y1a_c00277{bottom:512.863500px;}
.y11_c00277{bottom:516.244500px;}
.y12_c00277{bottom:517.239000px;}
.y13_c00277{bottom:517.749000px;}
.y14_c00277{bottom:518.605500px;}
.y15_c00277{bottom:519.189000px;}
.y16_c00277{bottom:519.606000px;}
.y17_c00277{bottom:520.498500px;}
.y18_c00277{bottom:520.950000px;}
.y19_c00277{bottom:521.451000px;}
.ya_c00277{bottom:532.716000px;}
.yb_c00277{bottom:533.475000px;}
.yc_c00277{bottom:534.313500px;}
.yd_c00277{bottom:535.590000px;}
.ye_c00277{bottom:535.900500px;}
.yf_c00277{bottom:537.513000px;}
.y10_c00277{bottom:537.849000px;}
.y2_c00277{bottom:550.264500px;}
.y3_c00277{bottom:551.404500px;}
.y4_c00277{bottom:551.955000px;}
.y5_c00277{bottom:553.197000px;}
.y6_c00277{bottom:553.425000px;}
.y7_c00277{bottom:554.737500px;}
.y8_c00277{bottom:555.396000px;}
.y9_c00277{bottom:555.687000px;}
.y1_c00277{bottom:567.952500px;}
.h6_c00277{height:34.650000px;}
.h1d_c00277{height:55.656260px;}
.he_c00277{height:57.756497px;}
.ha_c00277{height:58.805762px;}
.h18_c00277{height:58.806615px;}
.h9_c00277{height:61.921806px;}
.h14_c00277{height:61.954460px;}
.h19_c00277{height:61.956969px;}
.h17_c00277{height:61.960035px;}
.hd_c00277{height:63.007087px;}
.h11_c00277{height:63.009103px;}
.h3_c00277{height:65.100000px;}
.h16_c00277{height:65.104687px;}
.h1a_c00277{height:65.107323px;}
.h10_c00277{height:65.109406px;}
.h7_c00277{height:66.119895px;}
.hc_c00277{height:66.157441px;}
.hf_c00277{height:66.159558px;}
.h1b_c00277{height:67.207560px;}
.h15_c00277{height:68.254914px;}
.h12_c00277{height:68.259861px;}
.h5_c00277{height:69.300000px;}
.hb_c00277{height:69.307796px;}
.h13_c00277{height:69.310013px;}
.h4_c00277{height:70.350000px;}
.h8_c00277{height:76.615116px;}
.h2_c00277{height:82.950000px;}
.h1c_c00277{height:91.360276px;}
.h1_c00277{height:618.750000px;}
.h0_c00277{height:619.050000px;}
.w0_c00277{width:359.100000px;}
.w1_c00277{width:359.250000px;}
.x0_c00277{left:0.000000px;}
.x7b_c00277{left:38.234108px;}
.x53_c00277{left:39.388555px;}
.x35_c00277{left:40.401892px;}
.x2_c00277{left:41.542500px;}
.x17_c00277{left:42.556500px;}
.x1a_c00277{left:48.502399px;}
.x3e_c00277{left:54.457770px;}
.x1b_c00277{left:57.771931px;}
.x36_c00277{left:60.083685px;}
.x45_c00277{left:62.943682px;}
.x29_c00277{left:64.173000px;}
.x63_c00277{left:66.582030px;}
.x30_c00277{left:67.663500px;}
.x57_c00277{left:71.545401px;}
.x3a_c00277{left:73.063740px;}
.xa_c00277{left:75.568500px;}
.x65_c00277{left:91.660968px;}
.xf_c00277{left:93.294000px;}
.x2a_c00277{left:95.782500px;}
.x5a_c00277{left:97.090086px;}
.x3_c00277{left:98.544000px;}
.x68_c00277{left:99.549000px;}
.x5e_c00277{left:101.250000px;}
.x23_c00277{left:102.911990px;}
.x31_c00277{left:104.149500px;}
.x3f_c00277{left:105.760770px;}
.x49_c00277{left:108.963918px;}
.xb_c00277{left:113.703000px;}
.x54_c00277{left:114.987055px;}
.x1c_c00277{left:116.075524px;}
.x10_c00277{left:120.117000px;}
.x4e_c00277{left:122.054361px;}
.x72_c00277{left:124.713360px;}
.x4_c00277{left:126.084000px;}
.x60_c00277{left:127.329000px;}
.x7d_c00277{left:129.250418px;}
.x37_c00277{left:130.581742px;}
.x5b_c00277{left:133.826697px;}
.x1d_c00277{left:136.038758px;}
.x2b_c00277{left:137.614500px;}
.x69_c00277{left:139.320000px;}
.x46_c00277{left:141.763476px;}
.x77_c00277{left:146.080980px;}
.x75_c00277{left:147.586980px;}
.x38_c00277{left:149.236012px;}
.x66_c00277{left:151.155528px;}
.x4a_c00277{left:153.087918px;}
.x32_c00277{left:155.185500px;}
.x40_c00277{left:156.261270px;}
.x18_c00277{left:163.735700px;}
.x11_c00277{left:165.211500px;}
.x61_c00277{left:168.391500px;}
.x1_c00277{left:172.530000px;}
.x4f_c00277{left:175.233551px;}
.x1e_c00277{left:178.638336px;}
.x5c_c00277{left:184.040456px;}
.xc_c00277{left:185.787000px;}
.x5_c00277{left:188.148000px;}
.x3b_c00277{left:189.168727px;}
.x24_c00277{left:190.613840px;}
.x6c_c00277{left:192.210000px;}
.x6a_c00277{left:194.289000px;}
.x12_c00277{left:195.949500px;}
.x70_c00277{left:197.760690px;}
.x6_c00277{left:199.531500px;}
.x5d_c00277{left:202.943562px;}
.x44_c00277{left:204.369000px;}
.x6e_c00277{left:206.443867px;}
.x3c_c00277{left:207.541267px;}
.x73_c00277{left:208.936777px;}
.x64_c00277{left:210.501030px;}
.x41_c00277{left:213.228270px;}
.x2c_c00277{left:215.922000px;}
.x13_c00277{left:217.863000px;}
.x25_c00277{left:219.466089px;}
.x39_c00277{left:221.582092px;}
.x78_c00277{left:223.001902px;}
.x6f_c00277{left:224.922472px;}
.x5f_c00277{left:231.930000px;}
.x55_c00277{left:234.061555px;}
.x33_c00277{left:236.949000px;}
.x1f_c00277{left:239.390118px;}
.x2d_c00277{left:242.064000px;}
.x26_c00277{left:243.220604px;}
.x7e_c00277{left:245.132198px;}
.x71_c00277{left:247.514932px;}
.x67_c00277{left:252.107616px;}
.x62_c00277{left:254.758500px;}
.x20_c00277{left:257.744718px;}
.xd_c00277{left:259.090500px;}
.x58_c00277{left:260.561262px;}
.x76_c00277{left:262.320863px;}
.x7_c00277{left:265.126500px;}
.x50_c00277{left:268.383389px;}
.x27_c00277{left:271.297931px;}
.xe_c00277{left:274.345500px;}
.x6b_c00277{left:279.417000px;}
.x4b_c00277{left:280.779918px;}
.x2e_c00277{left:281.818500px;}
.x47_c00277{left:283.465440px;}
.x34_c00277{left:284.802000px;}
.x3d_c00277{left:285.858630px;}
.x79_c00277{left:287.531130px;}
.x14_c00277{left:288.604500px;}
.x6d_c00277{left:291.811500px;}
.x4c_c00277{left:294.291918px;}
.x7c_c00277{left:296.716718px;}
.x8_c00277{left:298.059000px;}
.x2f_c00277{left:300.717000px;}
.x51_c00277{left:302.043741px;}
.x56_c00277{left:303.217556px;}
.x21_c00277{left:304.940776px;}
.x74_c00277{left:306.201525px;}
.x42_c00277{left:307.741770px;}
.x7a_c00277{left:311.329133px;}
.x9_c00277{left:312.643500px;}
.x15_c00277{left:315.009000px;}
.x4d_c00277{left:316.712418px;}
.x22_c00277{left:319.820269px;}
.x19_c00277{left:321.270008px;}
.x59_c00277{left:322.457100px;}
.x43_c00277{left:323.608770px;}
.x48_c00277{left:328.353615px;}
.x52_c00277{left:331.315246px;}
.x28_c00277{left:334.456907px;}
.x16_c00277{left:337.230000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
.fs4_c00277{font-size:30.800000pt;}
.fs1b_c00277{font-size:49.472231pt;}
.fsc_c00277{font-size:51.339108pt;}
.fs8_c00277{font-size:52.271789pt;}
.fs16_c00277{font-size:52.272546pt;}
.fs7_c00277{font-size:55.041606pt;}
.fs12_c00277{font-size:55.070631pt;}
.fs17_c00277{font-size:55.072861pt;}
.fs15_c00277{font-size:55.075587pt;}
.fsb_c00277{font-size:56.006300pt;}
.fsf_c00277{font-size:56.008091pt;}
.fs1_c00277{font-size:57.866667pt;}
.fs14_c00277{font-size:57.870833pt;}
.fs18_c00277{font-size:57.873176pt;}
.fse_c00277{font-size:57.875028pt;}
.fs5_c00277{font-size:58.773240pt;}
.fsa_c00277{font-size:58.806615pt;}
.fsd_c00277{font-size:58.808496pt;}
.fs19_c00277{font-size:59.740053pt;}
.fs13_c00277{font-size:60.671035pt;}
.fs10_c00277{font-size:60.675432pt;}
.fs3_c00277{font-size:61.600000pt;}
.fs9_c00277{font-size:61.606930pt;}
.fs11_c00277{font-size:61.608901pt;}
.fs2_c00277{font-size:62.533333pt;}
.fs6_c00277{font-size:68.102326pt;}
.fs0_c00277{font-size:73.733333pt;}
.fs1a_c00277{font-size:81.209134pt;}
.y0_c00277{bottom:0.000000pt;}
.yed_c00277{bottom:15.828067pt;}
.yee_c00277{bottom:17.283593pt;}
.yef_c00277{bottom:18.314873pt;}
.yf0_c00277{bottom:18.527753pt;}
.yf1_c00277{bottom:19.138087pt;}
.yf2_c00277{bottom:20.041353pt;}
.yec_c00277{bottom:32.164880pt;}
.yeb_c00277{bottom:32.165513pt;}
.yea_c00277{bottom:32.165953pt;}
.ye9_c00277{bottom:32.166567pt;}
.ye7_c00277{bottom:32.166840pt;}
.ye8_c00277{bottom:32.167007pt;}
.ye0_c00277{bottom:44.391080pt;}
.ye1_c00277{bottom:45.033680pt;}
.ye2_c00277{bottom:45.258900pt;}
.ye3_c00277{bottom:46.021593pt;}
.ye4_c00277{bottom:46.185880pt;}
.ye5_c00277{bottom:46.479847pt;}
.ye6_c00277{bottom:47.149360pt;}
.yd8_c00277{bottom:60.717073pt;}
.yd9_c00277{bottom:61.283193pt;}
.yda_c00277{bottom:61.761913pt;}
.ydb_c00277{bottom:62.818193pt;}
.ydc_c00277{bottom:63.183313pt;}
.ydd_c00277{bottom:64.322580pt;}
.yde_c00277{bottom:65.584393pt;}
.ydf_c00277{bottom:66.049733pt;}
.yd0_c00277{bottom:75.837747pt;}
.yd1_c00277{bottom:76.877407pt;}
.yd2_c00277{bottom:77.353913pt;}
.yd3_c00277{bottom:77.774967pt;}
.yd4_c00277{bottom:78.669507pt;}
.yd5_c00277{bottom:79.815533pt;}
.yd6_c00277{bottom:80.331287pt;}
.yd7_c00277{bottom:80.615533pt;}
.yc8_c00277{bottom:91.439213pt;}
.yc9_c00277{bottom:92.406333pt;}
.yca_c00277{bottom:93.036153pt;}
.ycb_c00277{bottom:93.520720pt;}
.ycc_c00277{bottom:94.608567pt;}
.ycd_c00277{bottom:95.032760pt;}
.yce_c00277{bottom:96.054100pt;}
.ycf_c00277{bottom:96.424213pt;}
.yc2_c00277{bottom:107.037873pt;}
.yc3_c00277{bottom:107.828033pt;}
.yc4_c00277{bottom:109.016160pt;}
.yc5_c00277{bottom:109.184340pt;}
.yc6_c00277{bottom:109.635540pt;}
.yc7_c00277{bottom:110.529440pt;}
.ybc_c00277{bottom:121.203407pt;}
.ybd_c00277{bottom:121.621267pt;}
.ybe_c00277{bottom:122.897033pt;}
.ybf_c00277{bottom:124.176653pt;}
.yc0_c00277{bottom:124.505720pt;}
.yc1_c00277{bottom:125.974107pt;}
.yb4_c00277{bottom:137.522667pt;}
.yb5_c00277{bottom:137.727847pt;}
.yb6_c00277{bottom:138.606247pt;}
.yb7_c00277{bottom:139.567707pt;}
.yb8_c00277{bottom:140.233627pt;}
.yb9_c00277{bottom:140.743467pt;}
.yba_c00277{bottom:140.895727pt;}
.ybb_c00277{bottom:141.083547pt;}
.yab_c00277{bottom:153.124000pt;}
.yac_c00277{bottom:154.086664pt;}
.yad_c00277{bottom:154.505320pt;}
.yae_c00277{bottom:154.723000pt;}
.yaf_c00277{bottom:155.602504pt;}
.yb0_c00277{bottom:155.897776pt;}
.yb1_c00277{bottom:156.673840pt;}
.yb2_c00277{bottom:156.964552pt;}
.yb3_c00277{bottom:157.211296pt;}
.ya3_c00277{bottom:168.480032pt;}
.ya4_c00277{bottom:169.104261pt;}
.ya5_c00277{bottom:169.391131pt;}
.ya6_c00277{bottom:169.845552pt;}
.ya7_c00277{bottom:170.705179pt;}
.ya8_c00277{bottom:171.101067pt;}
.ya9_c00277{bottom:171.349355pt;}
.yaa_c00277{bottom:171.632507pt;}
.y9c_c00277{bottom:184.800016pt;}
.y9d_c00277{bottom:185.093760pt;}
.y9e_c00277{bottom:185.661248pt;}
.y9f_c00277{bottom:186.279856pt;}
.ya0_c00277{bottom:186.628896pt;}
.ya1_c00277{bottom:187.267552pt;}
.ya2_c00277{bottom:187.441200pt;}
.y94_c00277{bottom:199.921333pt;}
.y95_c00277{bottom:200.630005pt;}
.y96_c00277{bottom:200.857237pt;}
.y97_c00277{bottom:201.295237pt;}
.y98_c00277{bottom:201.528325pt;}
.y99_c00277{bottom:202.216485pt;}
.y9a_c00277{bottom:202.386597pt;}
.y9b_c00277{bottom:202.994613pt;}
.y93_c00277{bottom:216.733333pt;}
.y88_c00277{bottom:230.149780pt;}
.y89_c00277{bottom:230.366333pt;}
.y8a_c00277{bottom:230.763995pt;}
.y8b_c00277{bottom:230.954631pt;}
.y8c_c00277{bottom:231.156412pt;}
.y8d_c00277{bottom:231.692467pt;}
.y8e_c00277{bottom:231.894089pt;}
.y8f_c00277{bottom:232.058672pt;}
.y90_c00277{bottom:232.263200pt;}
.y91_c00277{bottom:232.752891pt;}
.y92_c00277{bottom:233.012363pt;}
.y81_c00277{bottom:244.314239pt;}
.y82_c00277{bottom:244.875508pt;}
.y83_c00277{bottom:245.672811pt;}
.y84_c00277{bottom:246.037648pt;}
.y85_c00277{bottom:247.247663pt;}
.y86_c00277{bottom:248.235893pt;}
.y87_c00277{bottom:249.336589pt;}
.y7a_c00277{bottom:259.915401pt;}
.y7b_c00277{bottom:261.057779pt;}
.y7c_c00277{bottom:262.403839pt;}
.y7d_c00277{bottom:262.612304pt;}
.y7e_c00277{bottom:262.857127pt;}
.y7f_c00277{bottom:263.571308pt;}
.y80_c00277{bottom:263.902151pt;}
.y71_c00277{bottom:275.038864pt;}
.y72_c00277{bottom:276.022965pt;}
.y73_c00277{bottom:276.420981pt;}
.y74_c00277{bottom:276.973555pt;}
.y75_c00277{bottom:277.319272pt;}
.y76_c00277{bottom:277.801331pt;}
.y77_c00277{bottom:278.892251pt;}
.y78_c00277{bottom:279.460913pt;}
.y79_c00277{bottom:279.955253pt;}
.y68_c00277{bottom:290.640584pt;}
.y69_c00277{bottom:291.675635pt;}
.y6a_c00277{bottom:292.085108pt;}
.y6b_c00277{bottom:292.342397pt;}
.y6c_c00277{bottom:292.982663pt;}
.y6d_c00277{bottom:293.292765pt;}
.y6e_c00277{bottom:294.271965pt;}
.y6f_c00277{bottom:294.476147pt;}
.y70_c00277{bottom:294.814945pt;}
.y5f_c00277{bottom:305.764848pt;}
.y60_c00277{bottom:306.212619pt;}
.y61_c00277{bottom:307.263364pt;}
.y62_c00277{bottom:307.754441pt;}
.y63_c00277{bottom:308.001793pt;}
.y64_c00277{bottom:309.274973pt;}
.y65_c00277{bottom:310.036303pt;}
.y66_c00277{bottom:310.525231pt;}
.y67_c00277{bottom:311.403599pt;}
.y58_c00277{bottom:321.364000pt;}
.y59_c00277{bottom:322.232088pt;}
.y5a_c00277{bottom:322.645505pt;}
.y5b_c00277{bottom:323.623323pt;}
.y5c_c00277{bottom:323.840855pt;}
.y5d_c00277{bottom:324.069516pt;}
.y5e_c00277{bottom:325.122428pt;}
.y4e_c00277{bottom:337.199673pt;}
.y4f_c00277{bottom:337.383313pt;}
.y50_c00277{bottom:338.067353pt;}
.y51_c00277{bottom:338.247433pt;}
.y52_c00277{bottom:338.477913pt;}
.y53_c00277{bottom:338.740693pt;}
.y54_c00277{bottom:339.500253pt;}
.y55_c00277{bottom:339.899913pt;}
.y56_c00277{bottom:340.760433pt;}
.y57_c00277{bottom:340.971993pt;}
.y46_c00277{bottom:352.559400pt;}
.y47_c00277{bottom:352.925500pt;}
.y48_c00277{bottom:353.471500pt;}
.y49_c00277{bottom:354.266853pt;}
.y4a_c00277{bottom:354.479813pt;}
.y4b_c00277{bottom:355.153493pt;}
.y4c_c00277{bottom:355.384013pt;}
.y4d_c00277{bottom:355.612507pt;}
.y3f_c00277{bottom:367.921480pt;}
.y40_c00277{bottom:368.166567pt;}
.y41_c00277{bottom:369.043860pt;}
.y42_c00277{bottom:369.276580pt;}
.y43_c00277{bottom:370.177180pt;}
.y44_c00277{bottom:370.845760pt;}
.y45_c00277{bottom:371.416067pt;}
.y38_c00277{bottom:382.562667pt;}
.y39_c00277{bottom:382.918927pt;}
.y3a_c00277{bottom:383.405407pt;}
.y3b_c00277{bottom:384.085887pt;}
.y3c_c00277{bottom:384.953327pt;}
.y3d_c00277{bottom:385.176067pt;}
.y3e_c00277{bottom:385.814107pt;}
.y2f_c00277{bottom:398.162667pt;}
.y30_c00277{bottom:398.448379pt;}
.y31_c00277{bottom:398.841741pt;}
.y32_c00277{bottom:399.073283pt;}
.y33_c00277{bottom:399.362317pt;}
.y34_c00277{bottom:400.336811pt;}
.y35_c00277{bottom:400.662133pt;}
.y36_c00277{bottom:401.156856pt;}
.y37_c00277{bottom:401.392037pt;}
.y27_c00277{bottom:411.383985pt;}
.y28_c00277{bottom:412.758601pt;}
.y29_c00277{bottom:414.437393pt;}
.y2a_c00277{bottom:414.711041pt;}
.y2b_c00277{bottom:415.352869pt;}
.y2c_c00277{bottom:415.881017pt;}
.y2d_c00277{bottom:416.505425pt;}
.y2e_c00277{bottom:417.910569pt;}
.y1e_c00277{bottom:428.170521pt;}
.y1f_c00277{bottom:428.326689pt;}
.y20_c00277{bottom:429.313241pt;}
.y21_c00277{bottom:429.651393pt;}
.y22_c00277{bottom:430.371517pt;}
.y23_c00277{bottom:431.399285pt;}
.y24_c00277{bottom:431.710205pt;}
.y25_c00277{bottom:432.509289pt;}
.y26_c00277{bottom:432.760841pt;}
.y1b_c00277{bottom:443.533333pt;}
.y1c_c00277{bottom:447.091481pt;}
.y1d_c00277{bottom:451.717113pt;}
.y1a_c00277{bottom:455.878667pt;}
.y11_c00277{bottom:458.884000pt;}
.y12_c00277{bottom:459.768000pt;}
.y13_c00277{bottom:460.221333pt;}
.y14_c00277{bottom:460.982667pt;}
.y15_c00277{bottom:461.501333pt;}
.y16_c00277{bottom:461.872000pt;}
.y17_c00277{bottom:462.665333pt;}
.y18_c00277{bottom:463.066667pt;}
.y19_c00277{bottom:463.512000pt;}
.ya_c00277{bottom:473.525333pt;}
.yb_c00277{bottom:474.200000pt;}
.yc_c00277{bottom:474.945333pt;}
.yd_c00277{bottom:476.080000pt;}
.ye_c00277{bottom:476.356000pt;}
.yf_c00277{bottom:477.789333pt;}
.y10_c00277{bottom:478.088000pt;}
.y2_c00277{bottom:489.124000pt;}
.y3_c00277{bottom:490.137333pt;}
.y4_c00277{bottom:490.626667pt;}
.y5_c00277{bottom:491.730667pt;}
.y6_c00277{bottom:491.933333pt;}
.y7_c00277{bottom:493.100000pt;}
.y8_c00277{bottom:493.685333pt;}
.y9_c00277{bottom:493.944000pt;}
.y1_c00277{bottom:504.846667pt;}
.h6_c00277{height:30.800000pt;}
.h1d_c00277{height:49.472231pt;}
.he_c00277{height:51.339108pt;}
.ha_c00277{height:52.271789pt;}
.h18_c00277{height:52.272546pt;}
.h9_c00277{height:55.041606pt;}
.h14_c00277{height:55.070631pt;}
.h19_c00277{height:55.072861pt;}
.h17_c00277{height:55.075587pt;}
.hd_c00277{height:56.006300pt;}
.h11_c00277{height:56.008091pt;}
.h3_c00277{height:57.866667pt;}
.h16_c00277{height:57.870833pt;}
.h1a_c00277{height:57.873176pt;}
.h10_c00277{height:57.875028pt;}
.h7_c00277{height:58.773240pt;}
.hc_c00277{height:58.806615pt;}
.hf_c00277{height:58.808496pt;}
.h1b_c00277{height:59.740053pt;}
.h15_c00277{height:60.671035pt;}
.h12_c00277{height:60.675432pt;}
.h5_c00277{height:61.600000pt;}
.hb_c00277{height:61.606930pt;}
.h13_c00277{height:61.608901pt;}
.h4_c00277{height:62.533333pt;}
.h8_c00277{height:68.102326pt;}
.h2_c00277{height:73.733333pt;}
.h1c_c00277{height:81.209134pt;}
.h1_c00277{height:550.000000pt;}
.h0_c00277{height:550.266667pt;}
.w0_c00277{width:319.200000pt;}
.w1_c00277{width:319.333333pt;}
.x0_c00277{left:0.000000pt;}
.x7b_c00277{left:33.985873pt;}
.x53_c00277{left:35.012049pt;}
.x35_c00277{left:35.912793pt;}
.x2_c00277{left:36.926667pt;}
.x17_c00277{left:37.828000pt;}
.x1a_c00277{left:43.113244pt;}
.x3e_c00277{left:48.406907pt;}
.x1b_c00277{left:51.352828pt;}
.x36_c00277{left:53.407720pt;}
.x45_c00277{left:55.949940pt;}
.x29_c00277{left:57.042667pt;}
.x63_c00277{left:59.184027pt;}
.x30_c00277{left:60.145333pt;}
.x57_c00277{left:63.595912pt;}
.x3a_c00277{left:64.945547pt;}
.xa_c00277{left:67.172000pt;}
.x65_c00277{left:81.476416pt;}
.xf_c00277{left:82.928000pt;}
.x2a_c00277{left:85.140000pt;}
.x5a_c00277{left:86.302299pt;}
.x3_c00277{left:87.594667pt;}
.x68_c00277{left:88.488000pt;}
.x5e_c00277{left:90.000000pt;}
.x23_c00277{left:91.477324pt;}
.x31_c00277{left:92.577333pt;}
.x3f_c00277{left:94.009573pt;}
.x49_c00277{left:96.856816pt;}
.xb_c00277{left:101.069333pt;}
.x54_c00277{left:102.210716pt;}
.x1c_c00277{left:103.178244pt;}
.x10_c00277{left:106.770667pt;}
.x4e_c00277{left:108.492765pt;}
.x72_c00277{left:110.856320pt;}
.x4_c00277{left:112.074667pt;}
.x60_c00277{left:113.181333pt;}
.x7d_c00277{left:114.889260pt;}
.x37_c00277{left:116.072660pt;}
.x5b_c00277{left:118.957064pt;}
.x1d_c00277{left:120.923340pt;}
.x2b_c00277{left:122.324000pt;}
.x69_c00277{left:123.840000pt;}
.x46_c00277{left:126.011979pt;}
.x77_c00277{left:129.849760pt;}
.x75_c00277{left:131.188427pt;}
.x38_c00277{left:132.654233pt;}
.x66_c00277{left:134.360469pt;}
.x4a_c00277{left:136.078149pt;}
.x32_c00277{left:137.942667pt;}
.x40_c00277{left:138.898907pt;}
.x18_c00277{left:145.542844pt;}
.x11_c00277{left:146.854667pt;}
.x61_c00277{left:149.681333pt;}
.x1_c00277{left:153.360000pt;}
.x4f_c00277{left:155.763156pt;}
.x1e_c00277{left:158.789632pt;}
.x5c_c00277{left:163.591516pt;}
.xc_c00277{left:165.144000pt;}
.x5_c00277{left:167.242667pt;}
.x3b_c00277{left:168.149980pt;}
.x24_c00277{left:169.434524pt;}
.x6c_c00277{left:170.853333pt;}
.x6a_c00277{left:172.701333pt;}
.x12_c00277{left:174.177333pt;}
.x70_c00277{left:175.787280pt;}
.x6_c00277{left:177.361333pt;}
.x5d_c00277{left:180.394277pt;}
.x44_c00277{left:181.661333pt;}
.x6e_c00277{left:183.505660pt;}
.x3c_c00277{left:184.481127pt;}
.x73_c00277{left:185.721580pt;}
.x64_c00277{left:187.112027pt;}
.x41_c00277{left:189.536240pt;}
.x2c_c00277{left:191.930667pt;}
.x13_c00277{left:193.656000pt;}
.x25_c00277{left:195.080968pt;}
.x39_c00277{left:196.961860pt;}
.x78_c00277{left:198.223913pt;}
.x6f_c00277{left:199.931087pt;}
.x5f_c00277{left:206.160000pt;}
.x55_c00277{left:208.054716pt;}
.x33_c00277{left:210.621333pt;}
.x1f_c00277{left:212.791216pt;}
.x2d_c00277{left:215.168000pt;}
.x26_c00277{left:216.196092pt;}
.x7e_c00277{left:217.895287pt;}
.x71_c00277{left:220.013273pt;}
.x67_c00277{left:224.095659pt;}
.x62_c00277{left:226.452000pt;}
.x20_c00277{left:229.106416pt;}
.xd_c00277{left:230.302667pt;}
.x58_c00277{left:231.610011pt;}
.x76_c00277{left:233.174100pt;}
.x7_c00277{left:235.668000pt;}
.x50_c00277{left:238.563012pt;}
.x27_c00277{left:241.153716pt;}
.xe_c00277{left:243.862667pt;}
.x6b_c00277{left:248.370667pt;}
.x4b_c00277{left:249.582149pt;}
.x2e_c00277{left:250.505333pt;}
.x47_c00277{left:251.969280pt;}
.x34_c00277{left:253.157333pt;}
.x3d_c00277{left:254.096560pt;}
.x79_c00277{left:255.583227pt;}
.x14_c00277{left:256.537333pt;}
.x6d_c00277{left:259.388000pt;}
.x4c_c00277{left:261.592816pt;}
.x7c_c00277{left:263.748193pt;}
.x8_c00277{left:264.941333pt;}
.x2f_c00277{left:267.304000pt;}
.x51_c00277{left:268.483325pt;}
.x56_c00277{left:269.526716pt;}
.x21_c00277{left:271.058468pt;}
.x74_c00277{left:272.179133pt;}
.x42_c00277{left:273.548240pt;}
.x7a_c00277{left:276.737007pt;}
.x9_c00277{left:277.905333pt;}
.x15_c00277{left:280.008000pt;}
.x4d_c00277{left:281.522149pt;}
.x22_c00277{left:284.284684pt;}
.x19_c00277{left:285.573340pt;}
.x59_c00277{left:286.628533pt;}
.x43_c00277{left:287.652240pt;}
.x48_c00277{left:291.869880pt;}
.x52_c00277{left:294.502441pt;}
.x28_c00277{left:297.295028pt;}
.x16_c00277{left:299.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00278 {
    display:none;
  }
  .loading-indicator_c00278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00278 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00278 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00278" -> "#page-container .classname_c00278")
 */
.pf_c00278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00278 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00278 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00278 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00278 {overflow:visible;}
  }
}
.c_c00278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00278 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00278:after { /* webkit #35443 */
  content: '';
}
.t_c00278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00278 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00278 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00278 { /* info for Javascript */
  display:none;
}
.l_c00278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00278:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00278 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00278.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00278{transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);}
.mad_c00278{transform:matrix(0.130740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130740,0.000000,0.000000,0.250000,0,0);}
.mb3_c00278{transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138995,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.139220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139220,0.000000,0.000000,0.250000,0,0);}
.mdc_c00278{transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);}
.m97_c00278{transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);}
.me3_c00278{transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.145885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145885,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150130,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);}
.m98_c00278{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.me7_c00278{transform:matrix(0.151510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151510,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);}
.me0_c00278{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.mb8_c00278{transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153055,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m8f_c00278{transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.mb9_c00278{transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.mdd_c00278{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.mb6_c00278{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.158535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158535,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.ma3_c00278{transform:matrix(0.158710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158710,0.000000,0.000000,0.250000,0,0);}
.m90_c00278{transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158715,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160030,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);}
.m9f_c00278{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.md3_c00278{transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);}
.m95_c00278{transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m58_c00278{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.mb0_c00278{transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);}
.mb7_c00278{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.mea_c00278{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m9b_c00278{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.ma1_c00278{transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mc1_c00278{transform:matrix(0.164935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164935,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);}
.mb4_c00278{transform:matrix(0.166345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166345,0.000000,0.000000,0.250000,0,0);}
.ma0_c00278{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.mb5_c00278{transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.mb1_c00278{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.md8_c00278{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169595,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.mab_c00278{transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);}
.md5_c00278{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);}
.maa_c00278{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m96_c00278{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.ma8_c00278{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);}
.mc7_c00278{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m6a_c00278{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m9e_c00278{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.md0_c00278{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.mc4_c00278{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.me9_c00278{transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178110,0.000000,0.000000,0.250000,0,0);}
.mf4_c00278{transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.mcc_c00278{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m99_c00278{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.ma7_c00278{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);}
.m79_c00278{transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.mdb_c00278{transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183140,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.med_c00278{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.mc2_c00278{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m88_c00278{transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184145,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);}
.mf1_c00278{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.mc6_c00278{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.meb_c00278{transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.m9c_c00278{transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.mda_c00278{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);}
.m63_c00278{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m94_c00278{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);}
.mca_c00278{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.me2_c00278{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);}
.mdf_c00278{transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);}
.mbd_c00278{transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188840,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.m72_c00278{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.m71_c00278{transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);}
.mbf_c00278{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);}
.mb2_c00278{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.m52_c00278{transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00278{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m51_c00278{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.191385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191385,0.000000,0.000000,0.250000,0,0);}
.m32_c00278{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mcb_c00278{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.maf_c00278{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.me4_c00278{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.mc5_c00278{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.m41_c00278{transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00278{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.ma9_c00278{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.md9_c00278{transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);}
.mde_c00278{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mf2_c00278{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00278{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.mfd_c00278{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.mae_c00278{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);}
.mec_c00278{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);}
.me1_c00278{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00278{transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);}
.m9a_c00278{transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202115,0.000000,0.000000,0.250000,0,0);}
.mac_c00278{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.mbb_c00278{transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202420,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.203180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203180,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.ma6_c00278{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);}
.mff_c00278{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.mf0_c00278{transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);}
.mc3_c00278{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m65_c00278{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.mfe_c00278{transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.m64_c00278{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.md6_c00278{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m67_c00278{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m34_c00278{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.mbc_c00278{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.md7_c00278{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209540,0.000000,0.000000,0.250000,0,0);}
.mf8_c00278{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.md1_c00278{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00278{transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.mcf_c00278{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.me5_c00278{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.mce_c00278{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.216920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216920,0.000000,0.000000,0.250000,0,0);}
.me8_c00278{transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.mbe_c00278{transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);}
.mf9_c00278{transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.mee_c00278{transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);}
.mc8_c00278{transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);}
.mfa_c00278{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.ma5_c00278{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);}
.mc9_c00278{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mfc_c00278{transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220920,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.mcd_c00278{transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);}
.mf7_c00278{transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);}
.me6_c00278{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.mc0_c00278{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.md4_c00278{transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);}
.mf3_c00278{transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);}
.mfb_c00278{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);}
.md2_c00278{transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);}
.mef_c00278{transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);}
.mf6_c00278{transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.331720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331720,0.000000,0.000000,0.250000,0,0);}
.m73_c00278{transform:matrix(0.478745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478745,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:0.000000px;}
.fc0_c00278{color:transparent;}
.fse_c00278{font-size:55.650000px;}
.fs0_c00278{font-size:57.750000px;}
.fsd_c00278{font-size:58.800000px;}
.fs4_c00278{font-size:60.900000px;}
.fs9_c00278{font-size:61.950000px;}
.fs8_c00278{font-size:63.000000px;}
.fs5_c00278{font-size:64.050000px;}
.fs1_c00278{font-size:66.150000px;}
.fsa_c00278{font-size:67.200000px;}
.fs6_c00278{font-size:68.250000px;}
.fs2_c00278{font-size:69.300000px;}
.fs7_c00278{font-size:70.350000px;}
.fs3_c00278{font-size:71.400000px;}
.fsb_c00278{font-size:73.500000px;}
.fsc_c00278{font-size:77.700000px;}
.y0_c00278{bottom:0.000000px;}
.ya3_c00278{bottom:18.796500px;}
.ya2_c00278{bottom:19.951500px;}
.ya1_c00278{bottom:20.329500px;}
.ya0_c00278{bottom:20.851500px;}
.y9f_c00278{bottom:22.143000px;}
.y9e_c00278{bottom:22.417500px;}
.y9d_c00278{bottom:38.461500px;}
.y9c_c00278{bottom:40.249500px;}
.y9b_c00278{bottom:41.809500px;}
.y9a_c00278{bottom:42.985500px;}
.y99_c00278{bottom:44.047500px;}
.y98_c00278{bottom:54.508500px;}
.y97_c00278{bottom:54.915000px;}
.y96_c00278{bottom:55.614000px;}
.y95_c00278{bottom:56.011500px;}
.y94_c00278{bottom:56.385000px;}
.y93_c00278{bottom:56.674500px;}
.y92_c00278{bottom:57.345000px;}
.y91_c00278{bottom:58.869000px;}
.y90_c00278{bottom:71.266500px;}
.y8f_c00278{bottom:71.554500px;}
.y8e_c00278{bottom:72.133500px;}
.y8d_c00278{bottom:72.381000px;}
.y8c_c00278{bottom:72.777000px;}
.y8b_c00278{bottom:73.738500px;}
.y8a_c00278{bottom:74.193000px;}
.y89_c00278{bottom:74.593500px;}
.y88_c00278{bottom:74.715000px;}
.y87_c00278{bottom:75.610500px;}
.y86_c00278{bottom:88.587000px;}
.y85_c00278{bottom:89.374500px;}
.y84_c00278{bottom:90.775500px;}
.y83_c00278{bottom:91.318500px;}
.y82_c00278{bottom:91.869000px;}
.y81_c00278{bottom:93.394500px;}
.y80_c00278{bottom:93.904500px;}
.y7f_c00278{bottom:94.258500px;}
.y7e_c00278{bottom:96.405000px;}
.y7d_c00278{bottom:107.328000px;}
.y7c_c00278{bottom:123.831000px;}
.y7b_c00278{bottom:124.621500px;}
.y7a_c00278{bottom:124.944000px;}
.y79_c00278{bottom:126.268500px;}
.y78_c00278{bottom:126.601500px;}
.y77_c00278{bottom:127.218000px;}
.y76_c00278{bottom:127.485000px;}
.y75_c00278{bottom:128.257500px;}
.y74_c00278{bottom:140.461500px;}
.y73_c00278{bottom:140.802000px;}
.y72_c00278{bottom:141.022500px;}
.y71_c00278{bottom:142.180500px;}
.y70_c00278{bottom:143.118000px;}
.y6f_c00278{bottom:143.403000px;}
.y6e_c00278{bottom:144.030000px;}
.y6d_c00278{bottom:144.439500px;}
.y6c_c00278{bottom:144.997500px;}
.y6b_c00278{bottom:158.260500px;}
.y6a_c00278{bottom:158.632500px;}
.y69_c00278{bottom:159.934500px;}
.y68_c00278{bottom:160.492500px;}
.y67_c00278{bottom:162.340500px;}
.y66_c00278{bottom:162.697500px;}
.y65_c00278{bottom:163.137000px;}
.y64_c00278{bottom:164.014500px;}
.y63_c00278{bottom:164.163000px;}
.y62_c00278{bottom:175.507500px;}
.y61_c00278{bottom:175.753500px;}
.y60_c00278{bottom:176.155500px;}
.y5f_c00278{bottom:176.949000px;}
.y5e_c00278{bottom:177.415500px;}
.y5d_c00278{bottom:178.177500px;}
.y5c_c00278{bottom:178.476000px;}
.y5b_c00278{bottom:178.746000px;}
.y5a_c00278{bottom:192.537000px;}
.y59_c00278{bottom:193.294500px;}
.y58_c00278{bottom:194.811000px;}
.y57_c00278{bottom:196.698000px;}
.y56_c00278{bottom:197.394000px;}
.y55_c00278{bottom:197.760000px;}
.y54_c00278{bottom:198.727500px;}
.y53_c00278{bottom:208.603500px;}
.y52_c00278{bottom:209.365500px;}
.y51_c00278{bottom:210.826500px;}
.y50_c00278{bottom:211.656000px;}
.y4f_c00278{bottom:211.993500px;}
.y4e_c00278{bottom:213.276000px;}
.y4d_c00278{bottom:214.587000px;}
.y4c_c00278{bottom:215.473500px;}
.y4b_c00278{bottom:226.297500px;}
.y4a_c00278{bottom:226.900500px;}
.y49_c00278{bottom:227.731500px;}
.y48_c00278{bottom:228.111000px;}
.y47_c00278{bottom:228.865500px;}
.y46_c00278{bottom:230.004000px;}
.y45_c00278{bottom:230.920500px;}
.y44_c00278{bottom:231.393000px;}
.y43_c00278{bottom:232.209000px;}
.y42_c00278{bottom:243.381000px;}
.y41_c00278{bottom:244.185000px;}
.y40_c00278{bottom:244.584000px;}
.y3f_c00278{bottom:244.986000px;}
.y3e_c00278{bottom:245.811000px;}
.y3d_c00278{bottom:246.109500px;}
.y3c_c00278{bottom:246.739500px;}
.y3b_c00278{bottom:248.242500px;}
.y3a_c00278{bottom:248.950500px;}
.y39_c00278{bottom:260.944500px;}
.y38_c00278{bottom:261.322500px;}
.y37_c00278{bottom:261.871500px;}
.y36_c00278{bottom:263.097000px;}
.y35_c00278{bottom:264.367500px;}
.y34_c00278{bottom:264.802500px;}
.y33_c00278{bottom:265.248000px;}
.y32_c00278{bottom:266.230500px;}
.y31_c00278{bottom:278.307000px;}
.y30_c00278{bottom:278.662500px;}
.y2f_c00278{bottom:279.907500px;}
.y2e_c00278{bottom:280.158000px;}
.y2d_c00278{bottom:281.043000px;}
.y2c_c00278{bottom:281.758500px;}
.y2b_c00278{bottom:282.121500px;}
.y2a_c00278{bottom:283.240500px;}
.y29_c00278{bottom:297.645000px;}
.y28_c00278{bottom:298.446000px;}
.y27_c00278{bottom:299.065500px;}
.y26_c00278{bottom:299.473500px;}
.y25_c00278{bottom:300.162000px;}
.y24_c00278{bottom:300.891000px;}
.y23_c00278{bottom:301.056000px;}
.y22_c00278{bottom:313.782000px;}
.y21_c00278{bottom:314.344500px;}
.y20_c00278{bottom:315.699000px;}
.y1f_c00278{bottom:316.833000px;}
.y1e_c00278{bottom:317.886000px;}
.y1d_c00278{bottom:318.297000px;}
.y1c_c00278{bottom:318.879000px;}
.y1b_c00278{bottom:333.477000px;}
.y1a_c00278{bottom:348.661500px;}
.y19_c00278{bottom:365.133000px;}
.y18_c00278{bottom:382.381500px;}
.y17_c00278{bottom:398.080500px;}
.y16_c00278{bottom:415.588500px;}
.y15_c00278{bottom:432.361500px;}
.y14_c00278{bottom:432.954000px;}
.y13_c00278{bottom:433.245000px;}
.y12_c00278{bottom:433.981500px;}
.y11_c00278{bottom:434.676000px;}
.y10_c00278{bottom:435.121500px;}
.yf_c00278{bottom:435.784500px;}
.ye_c00278{bottom:450.003000px;}
.yd_c00278{bottom:467.431500px;}
.yc_c00278{bottom:484.653000px;}
.yb_c00278{bottom:502.351500px;}
.ya_c00278{bottom:519.033000px;}
.y9_c00278{bottom:536.295000px;}
.y8_c00278{bottom:553.365000px;}
.y7_c00278{bottom:553.617000px;}
.y6_c00278{bottom:554.158500px;}
.y5_c00278{bottom:554.742000px;}
.y4_c00278{bottom:554.907000px;}
.y3_c00278{bottom:555.726000px;}
.y2_c00278{bottom:556.201500px;}
.y1_c00278{bottom:570.534000px;}
.h10_c00278{height:55.650000px;}
.h2_c00278{height:57.750000px;}
.hf_c00278{height:58.800000px;}
.h6_c00278{height:60.900000px;}
.hb_c00278{height:61.950000px;}
.ha_c00278{height:63.000000px;}
.h7_c00278{height:64.050000px;}
.h3_c00278{height:66.150000px;}
.hc_c00278{height:67.200000px;}
.h8_c00278{height:68.250000px;}
.h4_c00278{height:69.300000px;}
.h9_c00278{height:70.350000px;}
.h5_c00278{height:71.400000px;}
.hd_c00278{height:73.500000px;}
.he_c00278{height:77.700000px;}
.h1_c00278{height:618.750000px;}
.h0_c00278{height:619.050000px;}
.w0_c00278{width:359.100000px;}
.w1_c00278{width:359.250000px;}
.x0_c00278{left:0.000000px;}
.x36_c00278{left:28.888500px;}
.x43_c00278{left:29.968500px;}
.x2_c00278{left:31.213500px;}
.x7b_c00278{left:34.554000px;}
.x9_c00278{left:35.910000px;}
.x56_c00278{left:37.146000px;}
.x22_c00278{left:39.420000px;}
.x4a_c00278{left:42.118500px;}
.xa_c00278{left:45.900000px;}
.x57_c00278{left:48.960000px;}
.x4d_c00278{left:50.488500px;}
.x3e_c00278{left:52.918500px;}
.x51_c00278{left:57.810000px;}
.x10_c00278{left:58.860000px;}
.x39_c00278{left:63.718500px;}
.x29_c00278{left:65.340000px;}
.x44_c00278{left:67.228500px;}
.x3_c00278{left:70.888500px;}
.x6b_c00278{left:73.524000px;}
.x84_c00278{left:76.327500px;}
.x11_c00278{left:77.760000px;}
.x2a_c00278{left:80.460000px;}
.x32_c00278{left:82.488000px;}
.x17_c00278{left:85.860000px;}
.x1e_c00278{left:87.210000px;}
.x63_c00278{left:88.578000px;}
.x73_c00278{left:89.947500px;}
.x23_c00278{left:92.070000px;}
.x87_c00278{left:94.273500px;}
.x18_c00278{left:99.090000px;}
.x5d_c00278{left:100.554000px;}
.x45_c00278{left:101.788500px;}
.x70_c00278{left:105.576000px;}
.xb_c00278{left:109.080000px;}
.x33_c00278{left:116.775000px;}
.x69_c00278{left:118.021500px;}
.x1f_c00278{left:119.070000px;}
.x24_c00278{left:121.230000px;}
.x12_c00278{left:122.310000px;}
.x46_c00278{left:123.388500px;}
.x81_c00278{left:125.065500px;}
.x83_c00278{left:127.741500px;}
.x74_c00278{left:129.126000px;}
.x52_c00278{left:130.972500px;}
.x6c_c00278{left:132.174000px;}
.x25_c00278{left:136.350000px;}
.x4_c00278{left:139.168500px;}
.x60_c00278{left:140.244000px;}
.x7d_c00278{left:141.436500px;}
.x13_c00278{left:142.560000px;}
.x37_c00278{left:145.798500px;}
.x75_c00278{left:146.950500px;}
.x58_c00278{left:150.208500px;}
.x5_c00278{left:152.956500px;}
.x2b_c00278{left:154.980000px;}
.x3a_c00278{left:157.678500px;}
.x5a_c00278{left:159.382500px;}
.x3f_c00278{left:160.918500px;}
.x78_c00278{left:162.133500px;}
.x1_c00278{left:163.890000px;}
.x6d_c00278{left:168.057000px;}
.xc_c00278{left:169.290000px;}
.x47_c00278{left:171.448500px;}
.x4e_c00278{left:174.958500px;}
.x20_c00278{left:180.360000px;}
.x19_c00278{left:181.710000px;}
.x26_c00278{left:184.410000px;}
.x5e_c00278{left:185.856000px;}
.x53_c00278{left:187.677000px;}
.xd_c00278{left:190.620000px;}
.x3b_c00278{left:193.858500px;}
.x85_c00278{left:195.238500px;}
.x4b_c00278{left:196.288500px;}
.x7e_c00278{left:197.920500px;}
.x1a_c00278{left:198.990000px;}
.x48_c00278{left:200.338500px;}
.x6_c00278{left:201.549000px;}
.x27_c00278{left:202.770000px;}
.x21_c00278{left:203.850000px;}
.x40_c00278{left:205.198500px;}
.x14_c00278{left:209.250000px;}
.x2c_c00278{left:214.650000px;}
.x64_c00278{left:216.268500px;}
.x7f_c00278{left:218.308500px;}
.x82_c00278{left:219.411000px;}
.xe_c00278{left:222.210000px;}
.x59_c00278{left:223.638000px;}
.x2d_c00278{left:225.990000px;}
.x41_c00278{left:227.338500px;}
.x6e_c00278{left:229.147500px;}
.x71_c00278{left:231.190500px;}
.x65_c00278{left:233.545500px;}
.x7c_c00278{left:235.164000px;}
.x3c_c00278{left:236.788500px;}
.x80_c00278{left:238.398000px;}
.x2e_c00278{left:241.380000px;}
.x7_c00278{left:246.633000px;}
.x61_c00278{left:247.969500px;}
.x34_c00278{left:249.322500px;}
.x79_c00278{left:250.476000px;}
.x1b_c00278{left:253.800000px;}
.x54_c00278{left:255.414000px;}
.x2f_c00278{left:257.580000px;}
.x38_c00278{left:260.008500px;}
.x4f_c00278{left:261.358500px;}
.x42_c00278{left:263.248500px;}
.x6a_c00278{left:266.028000px;}
.x8_c00278{left:267.690000px;}
.x4c_c00278{left:270.268500px;}
.x66_c00278{left:271.339500px;}
.x86_c00278{left:272.994000px;}
.x67_c00278{left:274.123500px;}
.x1c_c00278{left:275.130000px;}
.x76_c00278{left:277.918500px;}
.x6f_c00278{left:279.022500px;}
.x15_c00278{left:280.260000px;}
.x55_c00278{left:283.510500px;}
.xf_c00278{left:284.850000px;}
.x28_c00278{left:285.930000px;}
.x72_c00278{left:290.356500px;}
.x5b_c00278{left:291.619500px;}
.x5f_c00278{left:293.488500px;}
.x35_c00278{left:294.945000px;}
.x49_c00278{left:299.428500px;}
.x30_c00278{left:301.320000px;}
.x50_c00278{left:302.668500px;}
.x68_c00278{left:304.573500px;}
.x3d_c00278{left:305.908500px;}
.x62_c00278{left:308.112000px;}
.x5c_c00278{left:311.352000px;}
.x77_c00278{left:312.984000px;}
.x16_c00278{left:316.170000px;}
.x1d_c00278{left:318.870000px;}
.x31_c00278{left:320.760000px;}
.x7a_c00278{left:324.633000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:0.000000pt;}
.fse_c00278{font-size:49.466667pt;}
.fs0_c00278{font-size:51.333333pt;}
.fsd_c00278{font-size:52.266667pt;}
.fs4_c00278{font-size:54.133333pt;}
.fs9_c00278{font-size:55.066667pt;}
.fs8_c00278{font-size:56.000000pt;}
.fs5_c00278{font-size:56.933333pt;}
.fs1_c00278{font-size:58.800000pt;}
.fsa_c00278{font-size:59.733333pt;}
.fs6_c00278{font-size:60.666667pt;}
.fs2_c00278{font-size:61.600000pt;}
.fs7_c00278{font-size:62.533333pt;}
.fs3_c00278{font-size:63.466667pt;}
.fsb_c00278{font-size:65.333333pt;}
.fsc_c00278{font-size:69.066667pt;}
.y0_c00278{bottom:0.000000pt;}
.ya3_c00278{bottom:16.708000pt;}
.ya2_c00278{bottom:17.734667pt;}
.ya1_c00278{bottom:18.070667pt;}
.ya0_c00278{bottom:18.534667pt;}
.y9f_c00278{bottom:19.682667pt;}
.y9e_c00278{bottom:19.926667pt;}
.y9d_c00278{bottom:34.188000pt;}
.y9c_c00278{bottom:35.777333pt;}
.y9b_c00278{bottom:37.164000pt;}
.y9a_c00278{bottom:38.209333pt;}
.y99_c00278{bottom:39.153333pt;}
.y98_c00278{bottom:48.452000pt;}
.y97_c00278{bottom:48.813333pt;}
.y96_c00278{bottom:49.434667pt;}
.y95_c00278{bottom:49.788000pt;}
.y94_c00278{bottom:50.120000pt;}
.y93_c00278{bottom:50.377333pt;}
.y92_c00278{bottom:50.973333pt;}
.y91_c00278{bottom:52.328000pt;}
.y90_c00278{bottom:63.348000pt;}
.y8f_c00278{bottom:63.604000pt;}
.y8e_c00278{bottom:64.118667pt;}
.y8d_c00278{bottom:64.338667pt;}
.y8c_c00278{bottom:64.690667pt;}
.y8b_c00278{bottom:65.545333pt;}
.y8a_c00278{bottom:65.949333pt;}
.y89_c00278{bottom:66.305333pt;}
.y88_c00278{bottom:66.413333pt;}
.y87_c00278{bottom:67.209333pt;}
.y86_c00278{bottom:78.744000pt;}
.y85_c00278{bottom:79.444000pt;}
.y84_c00278{bottom:80.689333pt;}
.y83_c00278{bottom:81.172000pt;}
.y82_c00278{bottom:81.661333pt;}
.y81_c00278{bottom:83.017333pt;}
.y80_c00278{bottom:83.470667pt;}
.y7f_c00278{bottom:83.785333pt;}
.y7e_c00278{bottom:85.693333pt;}
.y7d_c00278{bottom:95.402667pt;}
.y7c_c00278{bottom:110.072000pt;}
.y7b_c00278{bottom:110.774667pt;}
.y7a_c00278{bottom:111.061333pt;}
.y79_c00278{bottom:112.238667pt;}
.y78_c00278{bottom:112.534667pt;}
.y77_c00278{bottom:113.082667pt;}
.y76_c00278{bottom:113.320000pt;}
.y75_c00278{bottom:114.006667pt;}
.y74_c00278{bottom:124.854667pt;}
.y73_c00278{bottom:125.157333pt;}
.y72_c00278{bottom:125.353333pt;}
.y71_c00278{bottom:126.382667pt;}
.y70_c00278{bottom:127.216000pt;}
.y6f_c00278{bottom:127.469333pt;}
.y6e_c00278{bottom:128.026667pt;}
.y6d_c00278{bottom:128.390667pt;}
.y6c_c00278{bottom:128.886667pt;}
.y6b_c00278{bottom:140.676000pt;}
.y6a_c00278{bottom:141.006667pt;}
.y69_c00278{bottom:142.164000pt;}
.y68_c00278{bottom:142.660000pt;}
.y67_c00278{bottom:144.302667pt;}
.y66_c00278{bottom:144.620000pt;}
.y65_c00278{bottom:145.010667pt;}
.y64_c00278{bottom:145.790667pt;}
.y63_c00278{bottom:145.922667pt;}
.y62_c00278{bottom:156.006667pt;}
.y61_c00278{bottom:156.225333pt;}
.y60_c00278{bottom:156.582667pt;}
.y5f_c00278{bottom:157.288000pt;}
.y5e_c00278{bottom:157.702667pt;}
.y5d_c00278{bottom:158.380000pt;}
.y5c_c00278{bottom:158.645333pt;}
.y5b_c00278{bottom:158.885333pt;}
.y5a_c00278{bottom:171.144000pt;}
.y59_c00278{bottom:171.817333pt;}
.y58_c00278{bottom:173.165333pt;}
.y57_c00278{bottom:174.842667pt;}
.y56_c00278{bottom:175.461333pt;}
.y55_c00278{bottom:175.786667pt;}
.y54_c00278{bottom:176.646667pt;}
.y53_c00278{bottom:185.425333pt;}
.y52_c00278{bottom:186.102667pt;}
.y51_c00278{bottom:187.401333pt;}
.y50_c00278{bottom:188.138667pt;}
.y4f_c00278{bottom:188.438667pt;}
.y4e_c00278{bottom:189.578667pt;}
.y4d_c00278{bottom:190.744000pt;}
.y4c_c00278{bottom:191.532000pt;}
.y4b_c00278{bottom:201.153333pt;}
.y4a_c00278{bottom:201.689333pt;}
.y49_c00278{bottom:202.428000pt;}
.y48_c00278{bottom:202.765333pt;}
.y47_c00278{bottom:203.436000pt;}
.y46_c00278{bottom:204.448000pt;}
.y45_c00278{bottom:205.262667pt;}
.y44_c00278{bottom:205.682667pt;}
.y43_c00278{bottom:206.408000pt;}
.y42_c00278{bottom:216.338667pt;}
.y41_c00278{bottom:217.053333pt;}
.y40_c00278{bottom:217.408000pt;}
.y3f_c00278{bottom:217.765333pt;}
.y3e_c00278{bottom:218.498667pt;}
.y3d_c00278{bottom:218.764000pt;}
.y3c_c00278{bottom:219.324000pt;}
.y3b_c00278{bottom:220.660000pt;}
.y3a_c00278{bottom:221.289333pt;}
.y39_c00278{bottom:231.950667pt;}
.y38_c00278{bottom:232.286667pt;}
.y37_c00278{bottom:232.774667pt;}
.y36_c00278{bottom:233.864000pt;}
.y35_c00278{bottom:234.993333pt;}
.y34_c00278{bottom:235.380000pt;}
.y33_c00278{bottom:235.776000pt;}
.y32_c00278{bottom:236.649333pt;}
.y31_c00278{bottom:247.384000pt;}
.y30_c00278{bottom:247.700000pt;}
.y2f_c00278{bottom:248.806667pt;}
.y2e_c00278{bottom:249.029333pt;}
.y2d_c00278{bottom:249.816000pt;}
.y2c_c00278{bottom:250.452000pt;}
.y2b_c00278{bottom:250.774667pt;}
.y2a_c00278{bottom:251.769333pt;}
.y29_c00278{bottom:264.573333pt;}
.y28_c00278{bottom:265.285333pt;}
.y27_c00278{bottom:265.836000pt;}
.y26_c00278{bottom:266.198667pt;}
.y25_c00278{bottom:266.810667pt;}
.y24_c00278{bottom:267.458667pt;}
.y23_c00278{bottom:267.605333pt;}
.y22_c00278{bottom:278.917333pt;}
.y21_c00278{bottom:279.417333pt;}
.y20_c00278{bottom:280.621333pt;}
.y1f_c00278{bottom:281.629333pt;}
.y1e_c00278{bottom:282.565333pt;}
.y1d_c00278{bottom:282.930667pt;}
.y1c_c00278{bottom:283.448000pt;}
.y1b_c00278{bottom:296.424000pt;}
.y1a_c00278{bottom:309.921333pt;}
.y19_c00278{bottom:324.562667pt;}
.y18_c00278{bottom:339.894667pt;}
.y17_c00278{bottom:353.849333pt;}
.y16_c00278{bottom:369.412000pt;}
.y15_c00278{bottom:384.321333pt;}
.y14_c00278{bottom:384.848000pt;}
.y13_c00278{bottom:385.106667pt;}
.y12_c00278{bottom:385.761333pt;}
.y11_c00278{bottom:386.378667pt;}
.y10_c00278{bottom:386.774667pt;}
.yf_c00278{bottom:387.364000pt;}
.ye_c00278{bottom:400.002667pt;}
.yd_c00278{bottom:415.494667pt;}
.yc_c00278{bottom:430.802667pt;}
.yb_c00278{bottom:446.534667pt;}
.ya_c00278{bottom:461.362667pt;}
.y9_c00278{bottom:476.706667pt;}
.y8_c00278{bottom:491.880000pt;}
.y7_c00278{bottom:492.104000pt;}
.y6_c00278{bottom:492.585333pt;}
.y5_c00278{bottom:493.104000pt;}
.y4_c00278{bottom:493.250667pt;}
.y3_c00278{bottom:493.978667pt;}
.y2_c00278{bottom:494.401333pt;}
.y1_c00278{bottom:507.141333pt;}
.h10_c00278{height:49.466667pt;}
.h2_c00278{height:51.333333pt;}
.hf_c00278{height:52.266667pt;}
.h6_c00278{height:54.133333pt;}
.hb_c00278{height:55.066667pt;}
.ha_c00278{height:56.000000pt;}
.h7_c00278{height:56.933333pt;}
.h3_c00278{height:58.800000pt;}
.hc_c00278{height:59.733333pt;}
.h8_c00278{height:60.666667pt;}
.h4_c00278{height:61.600000pt;}
.h9_c00278{height:62.533333pt;}
.h5_c00278{height:63.466667pt;}
.hd_c00278{height:65.333333pt;}
.he_c00278{height:69.066667pt;}
.h1_c00278{height:550.000000pt;}
.h0_c00278{height:550.266667pt;}
.w0_c00278{width:319.200000pt;}
.w1_c00278{width:319.333333pt;}
.x0_c00278{left:0.000000pt;}
.x36_c00278{left:25.678667pt;}
.x43_c00278{left:26.638667pt;}
.x2_c00278{left:27.745333pt;}
.x7b_c00278{left:30.714667pt;}
.x9_c00278{left:31.920000pt;}
.x56_c00278{left:33.018667pt;}
.x22_c00278{left:35.040000pt;}
.x4a_c00278{left:37.438667pt;}
.xa_c00278{left:40.800000pt;}
.x57_c00278{left:43.520000pt;}
.x4d_c00278{left:44.878667pt;}
.x3e_c00278{left:47.038667pt;}
.x51_c00278{left:51.386667pt;}
.x10_c00278{left:52.320000pt;}
.x39_c00278{left:56.638667pt;}
.x29_c00278{left:58.080000pt;}
.x44_c00278{left:59.758667pt;}
.x3_c00278{left:63.012000pt;}
.x6b_c00278{left:65.354667pt;}
.x84_c00278{left:67.846667pt;}
.x11_c00278{left:69.120000pt;}
.x2a_c00278{left:71.520000pt;}
.x32_c00278{left:73.322667pt;}
.x17_c00278{left:76.320000pt;}
.x1e_c00278{left:77.520000pt;}
.x63_c00278{left:78.736000pt;}
.x73_c00278{left:79.953333pt;}
.x23_c00278{left:81.840000pt;}
.x87_c00278{left:83.798667pt;}
.x18_c00278{left:88.080000pt;}
.x5d_c00278{left:89.381333pt;}
.x45_c00278{left:90.478667pt;}
.x70_c00278{left:93.845333pt;}
.xb_c00278{left:96.960000pt;}
.x33_c00278{left:103.800000pt;}
.x69_c00278{left:104.908000pt;}
.x1f_c00278{left:105.840000pt;}
.x24_c00278{left:107.760000pt;}
.x12_c00278{left:108.720000pt;}
.x46_c00278{left:109.678667pt;}
.x81_c00278{left:111.169333pt;}
.x83_c00278{left:113.548000pt;}
.x74_c00278{left:114.778667pt;}
.x52_c00278{left:116.420000pt;}
.x6c_c00278{left:117.488000pt;}
.x25_c00278{left:121.200000pt;}
.x4_c00278{left:123.705333pt;}
.x60_c00278{left:124.661333pt;}
.x7d_c00278{left:125.721333pt;}
.x13_c00278{left:126.720000pt;}
.x37_c00278{left:129.598667pt;}
.x75_c00278{left:130.622667pt;}
.x58_c00278{left:133.518667pt;}
.x5_c00278{left:135.961333pt;}
.x2b_c00278{left:137.760000pt;}
.x3a_c00278{left:140.158667pt;}
.x5a_c00278{left:141.673333pt;}
.x3f_c00278{left:143.038667pt;}
.x78_c00278{left:144.118667pt;}
.x1_c00278{left:145.680000pt;}
.x6d_c00278{left:149.384000pt;}
.xc_c00278{left:150.480000pt;}
.x47_c00278{left:152.398667pt;}
.x4e_c00278{left:155.518667pt;}
.x20_c00278{left:160.320000pt;}
.x19_c00278{left:161.520000pt;}
.x26_c00278{left:163.920000pt;}
.x5e_c00278{left:165.205333pt;}
.x53_c00278{left:166.824000pt;}
.xd_c00278{left:169.440000pt;}
.x3b_c00278{left:172.318667pt;}
.x85_c00278{left:173.545333pt;}
.x4b_c00278{left:174.478667pt;}
.x7e_c00278{left:175.929333pt;}
.x1a_c00278{left:176.880000pt;}
.x48_c00278{left:178.078667pt;}
.x6_c00278{left:179.154667pt;}
.x27_c00278{left:180.240000pt;}
.x21_c00278{left:181.200000pt;}
.x40_c00278{left:182.398667pt;}
.x14_c00278{left:186.000000pt;}
.x2c_c00278{left:190.800000pt;}
.x64_c00278{left:192.238667pt;}
.x7f_c00278{left:194.052000pt;}
.x82_c00278{left:195.032000pt;}
.xe_c00278{left:197.520000pt;}
.x59_c00278{left:198.789333pt;}
.x2d_c00278{left:200.880000pt;}
.x41_c00278{left:202.078667pt;}
.x6e_c00278{left:203.686667pt;}
.x71_c00278{left:205.502667pt;}
.x65_c00278{left:207.596000pt;}
.x7c_c00278{left:209.034667pt;}
.x3c_c00278{left:210.478667pt;}
.x80_c00278{left:211.909333pt;}
.x2e_c00278{left:214.560000pt;}
.x7_c00278{left:219.229333pt;}
.x61_c00278{left:220.417333pt;}
.x34_c00278{left:221.620000pt;}
.x79_c00278{left:222.645333pt;}
.x1b_c00278{left:225.600000pt;}
.x54_c00278{left:227.034667pt;}
.x2f_c00278{left:228.960000pt;}
.x38_c00278{left:231.118667pt;}
.x4f_c00278{left:232.318667pt;}
.x42_c00278{left:233.998667pt;}
.x6a_c00278{left:236.469333pt;}
.x8_c00278{left:237.946667pt;}
.x4c_c00278{left:240.238667pt;}
.x66_c00278{left:241.190667pt;}
.x86_c00278{left:242.661333pt;}
.x67_c00278{left:243.665333pt;}
.x1c_c00278{left:244.560000pt;}
.x76_c00278{left:247.038667pt;}
.x6f_c00278{left:248.020000pt;}
.x15_c00278{left:249.120000pt;}
.x55_c00278{left:252.009333pt;}
.xf_c00278{left:253.200000pt;}
.x28_c00278{left:254.160000pt;}
.x72_c00278{left:258.094667pt;}
.x5b_c00278{left:259.217333pt;}
.x5f_c00278{left:260.878667pt;}
.x35_c00278{left:262.173333pt;}
.x49_c00278{left:266.158667pt;}
.x30_c00278{left:267.840000pt;}
.x50_c00278{left:269.038667pt;}
.x68_c00278{left:270.732000pt;}
.x3d_c00278{left:271.918667pt;}
.x62_c00278{left:273.877333pt;}
.x5c_c00278{left:276.757333pt;}
.x77_c00278{left:278.208000pt;}
.x16_c00278{left:281.040000pt;}
.x1d_c00278{left:283.440000pt;}
.x31_c00278{left:285.120000pt;}
.x7a_c00278{left:288.562667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00279 {
    display:none;
  }
  .loading-indicator_c00279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00279 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00279 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00279" -> "#page-container .classname_c00279")
 */
.pf_c00279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00279 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00279 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00279 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00279 {overflow:visible;}
  }
}
.c_c00279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00279 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00279:after { /* webkit #35443 */
  content: '';
}
.t_c00279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00279 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00279 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00279 { /* info for Javascript */
  display:none;
}
.l_c00279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00279:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00279 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00279.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00279{transform:matrix(0.008939,-0.000116,0.003250,0.249979,0,0);-ms-transform:matrix(0.008939,-0.000116,0.003250,0.249979,0,0);-webkit-transform:matrix(0.008939,-0.000116,0.003250,0.249979,0,0);}
.mb7_c00279{transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00279{transform:matrix(0.076235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076235,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.108471,-0.001410,0.003250,0.249979,0,0);-ms-transform:matrix(0.108471,-0.001410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.108471,-0.001410,0.003250,0.249979,0,0);}
.m28_c00279{transform:matrix(0.134704,-0.001751,0.003250,0.249979,0,0);-ms-transform:matrix(0.134704,-0.001751,0.003250,0.249979,0,0);-webkit-transform:matrix(0.134704,-0.001751,0.003250,0.249979,0,0);}
.md3_c00279{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.mbd_c00279{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00279{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m8a_c00279{transform:matrix(0.151815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151815,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.152447,-0.001982,0.003250,0.249979,0,0);-ms-transform:matrix(0.152447,-0.001982,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152447,-0.001982,0.003250,0.249979,0,0);}
.mf0_c00279{transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);}
.m8d_c00279{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.md5_c00279{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.154957,-0.002014,0.003250,0.249979,0,0);-ms-transform:matrix(0.154957,-0.002014,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154957,-0.002014,0.003250,0.249979,0,0);}
.mb3_c00279{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.mae_c00279{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.mbf_c00279{transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);}
.mab_c00279{transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);}
.m96_c00279{transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.160291,-0.002084,0.003250,0.249979,0,0);-ms-transform:matrix(0.160291,-0.002084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160291,-0.002084,0.003250,0.249979,0,0);}
.m11_c00279{transform:matrix(0.161446,-0.002099,0.003250,0.249979,0,0);-ms-transform:matrix(0.161446,-0.002099,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161446,-0.002099,0.003250,0.249979,0,0);}
.mb5_c00279{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.mc3_c00279{transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);}
.me4_c00279{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m29_c00279{transform:matrix(0.163081,-0.002120,0.003250,0.249979,0,0);-ms-transform:matrix(0.163081,-0.002120,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163081,-0.002120,0.003250,0.249979,0,0);}
.mc8_c00279{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.m75_c00279{transform:matrix(0.164401,-0.002137,0.003250,0.249979,0,0);-ms-transform:matrix(0.164401,-0.002137,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164401,-0.002137,0.003250,0.249979,0,0);}
.mcd_c00279{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m92_c00279{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m86_c00279{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00279{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.mde_c00279{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m72_c00279{transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);-ms-transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166111,-0.002159,0.003250,0.249979,0,0);}
.m9f_c00279{transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.166426,-0.002164,0.003250,0.249979,0,0);-ms-transform:matrix(0.166426,-0.002164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166426,-0.002164,0.003250,0.249979,0,0);}
.m1b_c00279{transform:matrix(0.166816,-0.002169,0.003250,0.249979,0,0);-ms-transform:matrix(0.166816,-0.002169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166816,-0.002169,0.003250,0.249979,0,0);}
.m10_c00279{transform:matrix(0.167136,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167136,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167136,-0.002173,0.003250,0.249979,0,0);}
.me5_c00279{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m98_c00279{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.m5d_c00279{transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);-ms-transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);}
.md4_c00279{transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);}
.m61_c00279{transform:matrix(0.168401,-0.002189,0.003250,0.249979,0,0);-ms-transform:matrix(0.168401,-0.002189,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168401,-0.002189,0.003250,0.249979,0,0);}
.me3_c00279{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.mad_c00279{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m6e_c00279{transform:matrix(0.170306,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170306,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170306,-0.002214,0.003250,0.249979,0,0);}
.m6d_c00279{transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);-ms-transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170931,-0.002222,0.003250,0.249979,0,0);}
.mb0_c00279{transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171585,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);-ms-transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171610,-0.002231,0.003250,0.249979,0,0);}
.m25_c00279{transform:matrix(0.172125,-0.002238,0.003250,0.249979,0,0);-ms-transform:matrix(0.172125,-0.002238,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172125,-0.002238,0.003250,0.249979,0,0);}
.mce_c00279{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00279{transform:matrix(0.173350,-0.002254,0.003250,0.249979,0,0);-ms-transform:matrix(0.173350,-0.002254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173350,-0.002254,0.003250,0.249979,0,0);}
.m1c_c00279{transform:matrix(0.173485,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173485,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173485,-0.002255,0.003250,0.249979,0,0);}
.md9_c00279{transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);}
.m59_c00279{transform:matrix(0.174625,-0.002270,0.003250,0.249979,0,0);-ms-transform:matrix(0.174625,-0.002270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174625,-0.002270,0.003250,0.249979,0,0);}
.ma5_c00279{transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);}
.m4d_c00279{transform:matrix(0.174915,-0.002274,0.003250,0.249979,0,0);-ms-transform:matrix(0.174915,-0.002274,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174915,-0.002274,0.003250,0.249979,0,0);}
.m57_c00279{transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);}
.m71_c00279{transform:matrix(0.175680,-0.002284,0.003250,0.249979,0,0);-ms-transform:matrix(0.175680,-0.002284,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175680,-0.002284,0.003250,0.249979,0,0);}
.ma6_c00279{transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);}
.m56_c00279{transform:matrix(0.175765,-0.002285,0.003250,0.249979,0,0);-ms-transform:matrix(0.175765,-0.002285,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175765,-0.002285,0.003250,0.249979,0,0);}
.m30_c00279{transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);-ms-transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);}
.md6_c00279{transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);}
.mc0_c00279{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.176330,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176330,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176330,-0.002292,0.003250,0.249979,0,0);}
.m7_c00279{transform:matrix(0.176385,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176385,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176385,-0.002293,0.003250,0.249979,0,0);}
.m39_c00279{transform:matrix(0.176725,-0.002297,0.003250,0.249979,0,0);-ms-transform:matrix(0.176725,-0.002297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176725,-0.002297,0.003250,0.249979,0,0);}
.mc2_c00279{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m6b_c00279{transform:matrix(0.176865,-0.002299,0.003250,0.249979,0,0);-ms-transform:matrix(0.176865,-0.002299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176865,-0.002299,0.003250,0.249979,0,0);}
.mc_c00279{transform:matrix(0.177005,-0.002301,0.003250,0.249979,0,0);-ms-transform:matrix(0.177005,-0.002301,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177005,-0.002301,0.003250,0.249979,0,0);}
.m3a_c00279{transform:matrix(0.177440,-0.002307,0.003250,0.249979,0,0);-ms-transform:matrix(0.177440,-0.002307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177440,-0.002307,0.003250,0.249979,0,0);}
.m23_c00279{transform:matrix(0.177770,-0.002311,0.003250,0.249979,0,0);-ms-transform:matrix(0.177770,-0.002311,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177770,-0.002311,0.003250,0.249979,0,0);}
.m5f_c00279{transform:matrix(0.177780,-0.002311,0.003250,0.249979,0,0);-ms-transform:matrix(0.177780,-0.002311,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177780,-0.002311,0.003250,0.249979,0,0);}
.m8f_c00279{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.mc7_c00279{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.m5e_c00279{transform:matrix(0.178570,-0.002321,0.003250,0.249979,0,0);-ms-transform:matrix(0.178570,-0.002321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178570,-0.002321,0.003250,0.249979,0,0);}
.m1e_c00279{transform:matrix(0.178815,-0.002325,0.003250,0.249979,0,0);-ms-transform:matrix(0.178815,-0.002325,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178815,-0.002325,0.003250,0.249979,0,0);}
.m7a_c00279{transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);-ms-transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);}
.m9a_c00279{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.mb2_c00279{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.m31_c00279{transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);-ms-transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);}
.m2e_c00279{transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);-ms-transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);}
.m37_c00279{transform:matrix(0.180700,-0.002349,0.003250,0.249979,0,0);-ms-transform:matrix(0.180700,-0.002349,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180700,-0.002349,0.003250,0.249979,0,0);}
.m33_c00279{transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);-ms-transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181405,-0.002358,0.003250,0.249979,0,0);}
.m85_c00279{transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);}
.mcb_c00279{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m7c_c00279{transform:matrix(0.182310,-0.002370,0.003250,0.249979,0,0);-ms-transform:matrix(0.182310,-0.002370,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182310,-0.002370,0.003250,0.249979,0,0);}
.m12_c00279{transform:matrix(0.182835,-0.002377,0.003250,0.249979,0,0);-ms-transform:matrix(0.182835,-0.002377,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182835,-0.002377,0.003250,0.249979,0,0);}
.m80_c00279{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.md0_c00279{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m62_c00279{transform:matrix(0.183819,-0.002390,0.003250,0.249979,0,0);-ms-transform:matrix(0.183819,-0.002390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183819,-0.002390,0.003250,0.249979,0,0);}
.m4f_c00279{transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);-ms-transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184184,-0.002394,0.003250,0.249979,0,0);}
.m7e_c00279{transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184879,-0.002403,0.003250,0.249979,0,0);}
.m53_c00279{transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);-ms-transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);}
.mcf_c00279{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.me1_c00279{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m99_c00279{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m9d_c00279{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.m2a_c00279{transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);-ms-transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186764,-0.002428,0.003250,0.249979,0,0);}
.mec_c00279{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);-ms-transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187139,-0.002433,0.003250,0.249979,0,0);}
.mc5_c00279{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00279{transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);}
.md7_c00279{transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);}
.m60_c00279{transform:matrix(0.188129,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188129,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188129,-0.002446,0.003250,0.249979,0,0);}
.m50_c00279{transform:matrix(0.188159,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188159,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188159,-0.002446,0.003250,0.249979,0,0);}
.mba_c00279{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.188379,-0.002449,0.003250,0.249979,0,0);-ms-transform:matrix(0.188379,-0.002449,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188379,-0.002449,0.003250,0.249979,0,0);}
.me0_c00279{transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);}
.m8e_c00279{transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);}
.m91_c00279{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m66_c00279{transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);-ms-transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189309,-0.002461,0.003250,0.249979,0,0);}
.m18_c00279{transform:matrix(0.189384,-0.002462,0.003250,0.249979,0,0);-ms-transform:matrix(0.189384,-0.002462,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189384,-0.002462,0.003250,0.249979,0,0);}
.mdc_c00279{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.m5b_c00279{transform:matrix(0.189774,-0.002467,0.003250,0.249979,0,0);-ms-transform:matrix(0.189774,-0.002467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189774,-0.002467,0.003250,0.249979,0,0);}
.m26_c00279{transform:matrix(0.189939,-0.002469,0.003250,0.249979,0,0);-ms-transform:matrix(0.189939,-0.002469,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189939,-0.002469,0.003250,0.249979,0,0);}
.m64_c00279{transform:matrix(0.190124,-0.002472,0.003250,0.249979,0,0);-ms-transform:matrix(0.190124,-0.002472,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190124,-0.002472,0.003250,0.249979,0,0);}
.m1a_c00279{transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);-ms-transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);}
.m95_c00279{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);}
.mb4_c00279{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m82_c00279{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.md1_c00279{transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);}
.mc9_c00279{transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.191559,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191559,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191559,-0.002490,0.003250,0.249979,0,0);}
.m9b_c00279{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m83_c00279{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.m94_c00279{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.192224,-0.002499,0.003250,0.249979,0,0);-ms-transform:matrix(0.192224,-0.002499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192224,-0.002499,0.003250,0.249979,0,0);}
.m63_c00279{transform:matrix(0.192664,-0.002505,0.003250,0.249979,0,0);-ms-transform:matrix(0.192664,-0.002505,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192664,-0.002505,0.003250,0.249979,0,0);}
.me2_c00279{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.m87_c00279{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mdf_c00279{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.ma0_c00279{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.me8_c00279{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00279{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.193864,-0.002520,0.003250,0.249979,0,0);-ms-transform:matrix(0.193864,-0.002520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193864,-0.002520,0.003250,0.249979,0,0);}
.mac_c00279{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.m73_c00279{transform:matrix(0.195129,-0.002537,0.003250,0.249979,0,0);-ms-transform:matrix(0.195129,-0.002537,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195129,-0.002537,0.003250,0.249979,0,0);}
.m36_c00279{transform:matrix(0.195353,-0.002540,0.003250,0.249979,0,0);-ms-transform:matrix(0.195353,-0.002540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195353,-0.002540,0.003250,0.249979,0,0);}
.m70_c00279{transform:matrix(0.195373,-0.002540,0.003250,0.249979,0,0);-ms-transform:matrix(0.195373,-0.002540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195373,-0.002540,0.003250,0.249979,0,0);}
.ma2_c00279{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{transform:matrix(0.196008,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.196008,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196008,-0.002548,0.003250,0.249979,0,0);}
.m8_c00279{transform:matrix(0.196153,-0.002550,0.003250,0.249979,0,0);-ms-transform:matrix(0.196153,-0.002550,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196153,-0.002550,0.003250,0.249979,0,0);}
.mcc_c00279{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.196558,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196558,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196558,-0.002555,0.003250,0.249979,0,0);}
.m38_c00279{transform:matrix(0.196643,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196643,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196643,-0.002556,0.003250,0.249979,0,0);}
.m19_c00279{transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);}
.m2b_c00279{transform:matrix(0.196968,-0.002561,0.003250,0.249979,0,0);-ms-transform:matrix(0.196968,-0.002561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196968,-0.002561,0.003250,0.249979,0,0);}
.m17_c00279{transform:matrix(0.197168,-0.002563,0.003250,0.249979,0,0);-ms-transform:matrix(0.197168,-0.002563,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197168,-0.002563,0.003250,0.249979,0,0);}
.m6c_c00279{transform:matrix(0.197818,-0.002572,0.003250,0.249979,0,0);-ms-transform:matrix(0.197818,-0.002572,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197818,-0.002572,0.003250,0.249979,0,0);}
.ma3_c00279{transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);}
.mca_c00279{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.m54_c00279{transform:matrix(0.198148,-0.002576,0.003250,0.249979,0,0);-ms-transform:matrix(0.198148,-0.002576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198148,-0.002576,0.003250,0.249979,0,0);}
.m76_c00279{transform:matrix(0.198523,-0.002581,0.003250,0.249979,0,0);-ms-transform:matrix(0.198523,-0.002581,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198523,-0.002581,0.003250,0.249979,0,0);}
.mc6_c00279{transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198740,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.198793,-0.002584,0.003250,0.249979,0,0);-ms-transform:matrix(0.198793,-0.002584,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198793,-0.002584,0.003250,0.249979,0,0);}
.ma9_c00279{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.198838,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198838,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198838,-0.002585,0.003250,0.249979,0,0);}
.m8b_c00279{transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);}
.md2_c00279{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.m67_c00279{transform:matrix(0.199478,-0.002593,0.003250,0.249979,0,0);-ms-transform:matrix(0.199478,-0.002593,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199478,-0.002593,0.003250,0.249979,0,0);}
.m43_c00279{transform:matrix(0.199563,-0.002594,0.003250,0.249979,0,0);-ms-transform:matrix(0.199563,-0.002594,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199563,-0.002594,0.003250,0.249979,0,0);}
.m2f_c00279{transform:matrix(0.199753,-0.002597,0.003250,0.249979,0,0);-ms-transform:matrix(0.199753,-0.002597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199753,-0.002597,0.003250,0.249979,0,0);}
.mdb_c00279{transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);-ms-transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);}
.m78_c00279{transform:matrix(0.200433,-0.002606,0.003250,0.249979,0,0);-ms-transform:matrix(0.200433,-0.002606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200433,-0.002606,0.003250,0.249979,0,0);}
.m88_c00279{transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);}
.mf6_c00279{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m2c_c00279{transform:matrix(0.201438,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201438,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201438,-0.002619,0.003250,0.249979,0,0);}
.mf1_c00279{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.ma4_c00279{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.mea_c00279{transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);}
.m51_c00279{transform:matrix(0.202793,-0.002636,0.003250,0.249979,0,0);-ms-transform:matrix(0.202793,-0.002636,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202793,-0.002636,0.003250,0.249979,0,0);}
.m79_c00279{transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);-ms-transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);}
.me6_c00279{transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.203733,-0.002649,0.003250,0.249979,0,0);-ms-transform:matrix(0.203733,-0.002649,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203733,-0.002649,0.003250,0.249979,0,0);}
.m42_c00279{transform:matrix(0.204003,-0.002652,0.003250,0.249979,0,0);-ms-transform:matrix(0.204003,-0.002652,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204003,-0.002652,0.003250,0.249979,0,0);}
.m90_c00279{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.m58_c00279{transform:matrix(0.204843,-0.002663,0.003250,0.249979,0,0);-ms-transform:matrix(0.204843,-0.002663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204843,-0.002663,0.003250,0.249979,0,0);}
.m3_c00279{transform:matrix(0.205158,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205158,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205158,-0.002667,0.003250,0.249979,0,0);}
.m9c_c00279{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.me7_c00279{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.me9_c00279{transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00279{transform:matrix(0.206303,-0.002682,0.003250,0.249979,0,0);-ms-transform:matrix(0.206303,-0.002682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206303,-0.002682,0.003250,0.249979,0,0);}
.maf_c00279{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m77_c00279{transform:matrix(0.206648,-0.002686,0.003250,0.249979,0,0);-ms-transform:matrix(0.206648,-0.002686,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206648,-0.002686,0.003250,0.249979,0,0);}
.m32_c00279{transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);-ms-transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);}
.mb9_c00279{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.mbc_c00279{transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);}
.m93_c00279{transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.208922,-0.002716,0.003250,0.249979,0,0);-ms-transform:matrix(0.208922,-0.002716,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208922,-0.002716,0.003250,0.249979,0,0);}
.m48_c00279{transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);-ms-transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);}
.ma7_c00279{transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.209357,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209357,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209357,-0.002722,0.003250,0.249979,0,0);}
.m52_c00279{transform:matrix(0.209702,-0.002726,0.003250,0.249979,0,0);-ms-transform:matrix(0.209702,-0.002726,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209702,-0.002726,0.003250,0.249979,0,0);}
.m4e_c00279{transform:matrix(0.210487,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210487,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210487,-0.002736,0.003250,0.249979,0,0);}
.mda_c00279{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00279{transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);}
.m6_c00279{transform:matrix(0.211222,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211222,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211222,-0.002746,0.003250,0.249979,0,0);}
.m45_c00279{transform:matrix(0.211702,-0.002752,0.003250,0.249979,0,0);-ms-transform:matrix(0.211702,-0.002752,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211702,-0.002752,0.003250,0.249979,0,0);}
.m1d_c00279{transform:matrix(0.212132,-0.002758,0.003250,0.249979,0,0);-ms-transform:matrix(0.212132,-0.002758,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212132,-0.002758,0.003250,0.249979,0,0);}
.md8_c00279{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.m7f_c00279{transform:matrix(0.212287,-0.002760,0.003250,0.249979,0,0);-ms-transform:matrix(0.212287,-0.002760,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212287,-0.002760,0.003250,0.249979,0,0);}
.m49_c00279{transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);-ms-transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);}
.m4b_c00279{transform:matrix(0.212762,-0.002766,0.003250,0.249979,0,0);-ms-transform:matrix(0.212762,-0.002766,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212762,-0.002766,0.003250,0.249979,0,0);}
.mef_c00279{transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);}
.m55_c00279{transform:matrix(0.213152,-0.002771,0.003250,0.249979,0,0);-ms-transform:matrix(0.213152,-0.002771,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213152,-0.002771,0.003250,0.249979,0,0);}
.m2d_c00279{transform:matrix(0.213247,-0.002772,0.003250,0.249979,0,0);-ms-transform:matrix(0.213247,-0.002772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213247,-0.002772,0.003250,0.249979,0,0);}
.m89_c00279{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.214597,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214597,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214597,-0.002790,0.003250,0.249979,0,0);}
.m3c_c00279{transform:matrix(0.214882,-0.002793,0.003250,0.249979,0,0);-ms-transform:matrix(0.214882,-0.002793,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214882,-0.002793,0.003250,0.249979,0,0);}
.mf3_c00279{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.mbb_c00279{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.216312,-0.002812,0.003250,0.249979,0,0);-ms-transform:matrix(0.216312,-0.002812,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216312,-0.002812,0.003250,0.249979,0,0);}
.mb1_c00279{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m69_c00279{transform:matrix(0.219061,-0.002848,0.003250,0.249979,0,0);-ms-transform:matrix(0.219061,-0.002848,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219061,-0.002848,0.003250,0.249979,0,0);}
.m5a_c00279{transform:matrix(0.219091,-0.002848,0.003250,0.249979,0,0);-ms-transform:matrix(0.219091,-0.002848,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219091,-0.002848,0.003250,0.249979,0,0);}
.meb_c00279{transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219130,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.219436,-0.002853,0.003250,0.249979,0,0);-ms-transform:matrix(0.219436,-0.002853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219436,-0.002853,0.003250,0.249979,0,0);}
.mb8_c00279{transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);}
.maa_c00279{transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);}
.mf2_c00279{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.mf4_c00279{transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);}
.m7b_c00279{transform:matrix(0.221281,-0.002877,0.003250,0.249979,0,0);-ms-transform:matrix(0.221281,-0.002877,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221281,-0.002877,0.003250,0.249979,0,0);}
.m9e_c00279{transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);}
.m68_c00279{transform:matrix(0.222566,-0.002893,0.003250,0.249979,0,0);-ms-transform:matrix(0.222566,-0.002893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222566,-0.002893,0.003250,0.249979,0,0);}
.m74_c00279{transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);-ms-transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);}
.mf5_c00279{transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);}
.m6a_c00279{transform:matrix(0.224096,-0.002913,0.003250,0.249979,0,0);-ms-transform:matrix(0.224096,-0.002913,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224096,-0.002913,0.003250,0.249979,0,0);}
.med_c00279{transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);-ms-transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);}
.m5c_c00279{transform:matrix(0.225886,-0.002937,0.003250,0.249979,0,0);-ms-transform:matrix(0.225886,-0.002937,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225886,-0.002937,0.003250,0.249979,0,0);}
.mee_c00279{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00279{transform:matrix(0.227496,-0.002957,0.003250,0.249979,0,0);-ms-transform:matrix(0.227496,-0.002957,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227496,-0.002957,0.003250,0.249979,0,0);}
.m84_c00279{transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.231205,-0.003006,0.003250,0.249979,0,0);-ms-transform:matrix(0.231205,-0.003006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231205,-0.003006,0.003250,0.249979,0,0);}
.m8c_c00279{transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);}
.m81_c00279{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.234955,-0.003054,0.003250,0.249979,0,0);-ms-transform:matrix(0.234955,-0.003054,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234955,-0.003054,0.003250,0.249979,0,0);}
.mb6_c00279{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.ma8_c00279{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00279{transform:matrix(0.243814,-0.003170,0.003250,0.249979,0,0);-ms-transform:matrix(0.243814,-0.003170,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243814,-0.003170,0.003250,0.249979,0,0);}
.m2_c00279{transform:matrix(0.246349,-0.003203,0.003250,0.249979,0,0);-ms-transform:matrix(0.246349,-0.003203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246349,-0.003203,0.003250,0.249979,0,0);}
.m4_c00279{transform:matrix(0.248019,-0.003224,0.003250,0.249979,0,0);-ms-transform:matrix(0.248019,-0.003224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248019,-0.003224,0.003250,0.249979,0,0);}
.m97_c00279{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m65_c00279{transform:matrix(0.254409,-0.003307,0.003250,0.249979,0,0);-ms-transform:matrix(0.254409,-0.003307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254409,-0.003307,0.003250,0.249979,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:0.000000px;}
.fc0_c00279{color:transparent;}
.fsb_c00279{font-size:59.850000px;}
.fsd_c00279{font-size:60.900000px;}
.fs1_c00279{font-size:60.905146px;}
.fsa_c00279{font-size:61.950000px;}
.fs6_c00279{font-size:61.955235px;}
.fs11_c00279{font-size:63.000000px;}
.fs8_c00279{font-size:63.005323px;}
.fs2_c00279{font-size:64.055412px;}
.fsc_c00279{font-size:65.100000px;}
.fs4_c00279{font-size:65.105501px;}
.fse_c00279{font-size:66.150000px;}
.fs12_c00279{font-size:67.200000px;}
.fs7_c00279{font-size:67.205678px;}
.fs3_c00279{font-size:68.255767px;}
.fsf_c00279{font-size:69.300000px;}
.fs5_c00279{font-size:69.305856px;}
.fs9_c00279{font-size:70.355944px;}
.fs10_c00279{font-size:72.450000px;}
.fs0_c00279{font-size:81.900000px;}
.y0_c00279{bottom:0.000000px;}
.y9a_c00279{bottom:19.230000px;}
.y99_c00279{bottom:36.378000px;}
.y98_c00279{bottom:53.190000px;}
.y97_c00279{bottom:69.585000px;}
.y96_c00279{bottom:87.208500px;}
.y8c_c00279{bottom:103.143000px;}
.y8d_c00279{bottom:103.654500px;}
.y8e_c00279{bottom:104.023500px;}
.y8f_c00279{bottom:104.325000px;}
.y90_c00279{bottom:105.004500px;}
.y91_c00279{bottom:105.463500px;}
.y92_c00279{bottom:105.979500px;}
.y93_c00279{bottom:106.225500px;}
.y94_c00279{bottom:106.429500px;}
.y95_c00279{bottom:106.633500px;}
.y8b_c00279{bottom:121.890000px;}
.y8a_c00279{bottom:138.720000px;}
.y89_c00279{bottom:155.989500px;}
.y88_c00279{bottom:173.250000px;}
.y87_c00279{bottom:191.070000px;}
.y86_c00279{bottom:208.506000px;}
.y85_c00279{bottom:225.901500px;}
.y84_c00279{bottom:243.481500px;}
.y83_c00279{bottom:260.491500px;}
.y7f_c00279{bottom:277.071529px;}
.y7e_c00279{bottom:277.071607px;}
.y7d_c00279{bottom:277.071777px;}
.y80_c00279{bottom:277.072251px;}
.y7c_c00279{bottom:277.072276px;}
.y81_c00279{bottom:277.072891px;}
.y7b_c00279{bottom:277.072905px;}
.y82_c00279{bottom:277.073203px;}
.y7a_c00279{bottom:294.291148px;}
.y77_c00279{bottom:294.291394px;}
.y78_c00279{bottom:294.291466px;}
.y76_c00279{bottom:294.291594px;}
.y75_c00279{bottom:294.291612px;}
.y79_c00279{bottom:294.291837px;}
.y74_c00279{bottom:294.292161px;}
.y73_c00279{bottom:294.292810px;}
.y6c_c00279{bottom:309.948708px;}
.y6d_c00279{bottom:310.577596px;}
.y6e_c00279{bottom:311.344215px;}
.y6f_c00279{bottom:311.568727px;}
.y70_c00279{bottom:311.751361px;}
.y71_c00279{bottom:312.258729px;}
.y72_c00279{bottom:312.480744px;}
.y64_c00279{bottom:327.500554px;}
.y65_c00279{bottom:327.769930px;}
.y66_c00279{bottom:328.035093px;}
.y67_c00279{bottom:328.556601px;}
.y68_c00279{bottom:329.031861px;}
.y69_c00279{bottom:329.631100px;}
.y6a_c00279{bottom:330.148279px;}
.y6b_c00279{bottom:330.267421px;}
.y5e_c00279{bottom:344.512126px;}
.y5f_c00279{bottom:344.821959px;}
.y60_c00279{bottom:345.569296px;}
.y61_c00279{bottom:345.899569px;}
.y62_c00279{bottom:346.517149px;}
.y63_c00279{bottom:347.307219px;}
.y55_c00279{bottom:362.332285px;}
.y56_c00279{bottom:362.926207px;}
.y57_c00279{bottom:363.089355px;}
.y58_c00279{bottom:363.306604px;}
.y59_c00279{bottom:363.714013px;}
.y5a_c00279{bottom:363.945735px;}
.y5b_c00279{bottom:364.427355px;}
.y5c_c00279{bottom:364.934487px;}
.y5d_c00279{bottom:365.407077px;}
.y50_c00279{bottom:380.820276px;}
.y4e_c00279{bottom:380.820504px;}
.y4f_c00279{bottom:380.820814px;}
.y53_c00279{bottom:380.820939px;}
.y51_c00279{bottom:380.821006px;}
.y54_c00279{bottom:380.821171px;}
.y52_c00279{bottom:380.821438px;}
.y46_c00279{bottom:396.352891px;}
.y47_c00279{bottom:396.981643px;}
.y48_c00279{bottom:397.184835px;}
.y49_c00279{bottom:397.417090px;}
.y4a_c00279{bottom:397.700823px;}
.y4b_c00279{bottom:398.213982px;}
.y4c_c00279{bottom:398.351752px;}
.y4d_c00279{bottom:399.038026px;}
.y45_c00279{bottom:415.356202px;}
.y44_c00279{bottom:415.356792px;}
.y3d_c00279{bottom:415.356814px;}
.y3f_c00279{bottom:415.356906px;}
.y41_c00279{bottom:415.356958px;}
.y3e_c00279{bottom:415.357345px;}
.y40_c00279{bottom:415.357377px;}
.y42_c00279{bottom:415.357419px;}
.y43_c00279{bottom:415.357440px;}
.y3c_c00279{bottom:431.995299px;}
.y3b_c00279{bottom:431.995618px;}
.y35_c00279{bottom:431.995642px;}
.y39_c00279{bottom:431.995656px;}
.y38_c00279{bottom:431.995695px;}
.y36_c00279{bottom:431.995873px;}
.y37_c00279{bottom:431.996124px;}
.y3a_c00279{bottom:431.996298px;}
.y2e_c00279{bottom:449.284189px;}
.y2f_c00279{bottom:449.284441px;}
.y2d_c00279{bottom:449.284548px;}
.y30_c00279{bottom:449.285052px;}
.y31_c00279{bottom:449.285443px;}
.y33_c00279{bottom:449.286105px;}
.y32_c00279{bottom:449.286114px;}
.y34_c00279{bottom:449.286775px;}
.y23_c00279{bottom:465.206857px;}
.y24_c00279{bottom:465.374938px;}
.y25_c00279{bottom:466.019724px;}
.y26_c00279{bottom:466.317968px;}
.y27_c00279{bottom:466.800095px;}
.y28_c00279{bottom:466.883463px;}
.y29_c00279{bottom:467.216212px;}
.y2a_c00279{bottom:467.392525px;}
.y2b_c00279{bottom:467.704562px;}
.y2c_c00279{bottom:467.991843px;}
.y1c_c00279{bottom:482.218215px;}
.y1d_c00279{bottom:482.455114px;}
.y1e_c00279{bottom:483.128085px;}
.y1f_c00279{bottom:483.795653px;}
.y20_c00279{bottom:484.354183px;}
.y21_c00279{bottom:484.554021px;}
.y22_c00279{bottom:484.951608px;}
.y14_c00279{bottom:499.231215px;}
.y15_c00279{bottom:499.812920px;}
.y16_c00279{bottom:499.985806px;}
.y17_c00279{bottom:500.733456px;}
.y18_c00279{bottom:500.982686px;}
.y19_c00279{bottom:501.733806px;}
.y1a_c00279{bottom:502.070883px;}
.y1b_c00279{bottom:502.720311px;}
.yd_c00279{bottom:516.780835px;}
.ye_c00279{bottom:517.405805px;}
.yf_c00279{bottom:518.368034px;}
.y10_c00279{bottom:518.660674px;}
.y11_c00279{bottom:519.272382px;}
.y12_c00279{bottom:519.584661px;}
.y13_c00279{bottom:519.769049px;}
.y9_c00279{bottom:534.131481px;}
.ya_c00279{bottom:534.132024px;}
.yb_c00279{bottom:534.132285px;}
.yc_c00279{bottom:534.132367px;}
.y2_c00279{bottom:550.533000px;}
.y3_c00279{bottom:551.760525px;}
.y4_c00279{bottom:552.000141px;}
.y5_c00279{bottom:552.919001px;}
.y6_c00279{bottom:553.140150px;}
.y7_c00279{bottom:553.411220px;}
.y8_c00279{bottom:554.246073px;}
.y1_c00279{bottom:565.384500px;}
.hd_c00279{height:59.850000px;}
.hf_c00279{height:60.900000px;}
.h3_c00279{height:60.905146px;}
.hc_c00279{height:61.950000px;}
.h8_c00279{height:61.955235px;}
.h13_c00279{height:63.000000px;}
.ha_c00279{height:63.005323px;}
.h4_c00279{height:64.055412px;}
.he_c00279{height:65.100000px;}
.h6_c00279{height:65.105501px;}
.h10_c00279{height:66.150000px;}
.h14_c00279{height:67.200000px;}
.h9_c00279{height:67.205678px;}
.h5_c00279{height:68.255767px;}
.h11_c00279{height:69.300000px;}
.h7_c00279{height:69.305856px;}
.hb_c00279{height:70.355944px;}
.h12_c00279{height:72.450000px;}
.h2_c00279{height:81.900000px;}
.h1_c00279{height:618.750000px;}
.h0_c00279{height:619.050000px;}
.w0_c00279{width:359.100000px;}
.w1_c00279{width:359.250000px;}
.x0_c00279{left:0.000000px;}
.x78_c00279{left:41.041500px;}
.x2e_c00279{left:42.391735px;}
.x2_c00279{left:43.918500px;}
.x9_c00279{left:46.169064px;}
.x5c_c00279{left:58.590000px;}
.x1d_c00279{left:59.792550px;}
.x56_c00279{left:62.370000px;}
.x3a_c00279{left:65.344506px;}
.xc_c00279{left:68.194806px;}
.x45_c00279{left:69.466748px;}
.x2f_c00279{left:71.283610px;}
.x28_c00279{left:77.224350px;}
.x57_c00279{left:79.380000px;}
.x73_c00279{left:81.099000px;}
.x7d_c00279{left:82.890000px;}
.x5d_c00279{left:83.970000px;}
.x30_c00279{left:86.944762px;}
.x13_c00279{left:88.386764px;}
.x50_c00279{left:92.881349px;}
.x53_c00279{left:94.771982px;}
.x46_c00279{left:95.980281px;}
.x29_c00279{left:98.016360px;}
.x14_c00279{left:101.685764px;}
.x36_c00279{left:105.974316px;}
.x58_c00279{left:107.460000px;}
.x54_c00279{left:108.812861px;}
.x3e_c00279{left:112.201394px;}
.x6e_c00279{left:114.210000px;}
.x5e_c00279{left:116.100000px;}
.xd_c00279{left:120.308489px;}
.x62_c00279{left:122.040000px;}
.x1e_c00279{left:124.278565px;}
.x37_c00279{left:126.220596px;}
.x31_c00279{left:127.718646px;}
.x3f_c00279{left:131.913400px;}
.x19_c00279{left:134.854981px;}
.x66_c00279{left:136.620000px;}
.x3_c00279{left:138.343500px;}
.x3b_c00279{left:140.141142px;}
.x2a_c00279{left:141.490712px;}
.xa_c00279{left:144.996756px;}
.x6a_c00279{left:146.340000px;}
.x47_c00279{left:148.098309px;}
.x38_c00279{left:149.394993px;}
.x5f_c00279{left:150.930000px;}
.x1f_c00279{left:154.029216px;}
.x4_c00279{left:156.775500px;}
.x15_c00279{left:159.197263px;}
.x51_c00279{left:162.007029px;}
.x2b_c00279{left:168.492275px;}
.x7f_c00279{left:174.420000px;}
.x79_c00279{left:175.771500px;}
.x1_c00279{left:177.930000px;}
.xb_c00279{left:180.099684px;}
.x7a_c00279{left:181.441500px;}
.x4b_c00279{left:182.605863px;}
.x52_c00279{left:184.149273px;}
.x32_c00279{left:185.503915px;}
.x59_c00279{left:187.380000px;}
.x40_c00279{left:189.963402px;}
.x7c_c00279{left:193.590000px;}
.x23_c00279{left:195.764159px;}
.x33_c00279{left:198.464599px;}
.xe_c00279{left:200.442522px;}
.x1a_c00279{left:201.555075px;}
.x6b_c00279{left:203.040000px;}
.x4c_c00279{left:205.069241px;}
.x3c_c00279{left:207.916588px;}
.x20_c00279{left:210.684939px;}
.x63_c00279{left:212.490000px;}
.x60_c00279{left:216.810000px;}
.x5a_c00279{left:218.430000px;}
.x74_c00279{left:220.404000px;}
.x3d_c00279{left:221.957468px;}
.x4d_c00279{left:223.387962px;}
.xf_c00279{left:224.799834px;}
.x72_c00279{left:225.990000px;}
.x5_c00279{left:227.457000px;}
.x39_c00279{left:229.043593px;}
.x41_c00279{left:233.704533px;}
.x16_c00279{left:236.147264px;}
.x5b_c00279{left:238.410000px;}
.x64_c00279{left:240.300000px;}
.x2c_c00279{left:241.938676px;}
.x6_c00279{left:244.468500px;}
.x7e_c00279{left:245.970000px;}
.x55_c00279{left:247.334261px;}
.x24_c00279{left:248.418550px;}
.x67_c00279{left:252.720000px;}
.x6f_c00279{left:254.340000px;}
.x48_c00279{left:255.564002px;}
.x1b_c00279{left:257.444259px;}
.x75_c00279{left:260.146500px;}
.x17_c00279{left:262.076263px;}
.x71_c00279{left:263.250000px;}
.x7_c00279{left:265.320000px;}
.x25_c00279{left:267.050190px;}
.x6c_c00279{left:271.620000px;}
.x4e_c00279{left:274.187451px;}
.x10_c00279{left:275.777997px;}
.x1c_c00279{left:277.432539px;}
.x42_c00279{left:279.869742px;}
.x68_c00279{left:281.070000px;}
.x2d_c00279{left:283.522716px;}
.x6d_c00279{left:289.170000px;}
.x21_c00279{left:292.772637px;}
.x76_c00279{left:294.714000px;}
.x4f_c00279{left:296.343309px;}
.x44_c00279{left:297.465831px;}
.x69_c00279{left:299.430000px;}
.x11_c00279{left:301.761329px;}
.x34_c00279{left:306.203812px;}
.x49_c00279{left:307.349030px;}
.x26_c00279{left:308.364171px;}
.x77_c00279{left:310.375500px;}
.x18_c00279{left:312.032263px;}
.x61_c00279{left:315.090000px;}
.x12_c00279{left:317.099023px;}
.x4a_c00279{left:319.283498px;}
.x22_c00279{left:321.449249px;}
.x43_c00279{left:322.800854px;}
.x65_c00279{left:325.620000px;}
.x27_c00279{left:326.995811px;}
.x8_c00279{left:329.539500px;}
.x35_c00279{left:331.316563px;}
.x7b_c00279{left:334.801500px;}
.x70_c00279{left:337.500000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fsb_c00279{font-size:53.200000pt;}
.fsd_c00279{font-size:54.133333pt;}
.fs1_c00279{font-size:54.137907pt;}
.fsa_c00279{font-size:55.066667pt;}
.fs6_c00279{font-size:55.071320pt;}
.fs11_c00279{font-size:56.000000pt;}
.fs8_c00279{font-size:56.004732pt;}
.fs2_c00279{font-size:56.938144pt;}
.fsc_c00279{font-size:57.866667pt;}
.fs4_c00279{font-size:57.871556pt;}
.fse_c00279{font-size:58.800000pt;}
.fs12_c00279{font-size:59.733333pt;}
.fs7_c00279{font-size:59.738381pt;}
.fs3_c00279{font-size:60.671793pt;}
.fsf_c00279{font-size:61.600000pt;}
.fs5_c00279{font-size:61.605205pt;}
.fs9_c00279{font-size:62.538617pt;}
.fs10_c00279{font-size:64.400000pt;}
.fs0_c00279{font-size:72.800000pt;}
.y0_c00279{bottom:0.000000pt;}
.y9a_c00279{bottom:17.093333pt;}
.y99_c00279{bottom:32.336000pt;}
.y98_c00279{bottom:47.280000pt;}
.y97_c00279{bottom:61.853333pt;}
.y96_c00279{bottom:77.518667pt;}
.y8c_c00279{bottom:91.682667pt;}
.y8d_c00279{bottom:92.137333pt;}
.y8e_c00279{bottom:92.465333pt;}
.y8f_c00279{bottom:92.733333pt;}
.y90_c00279{bottom:93.337333pt;}
.y91_c00279{bottom:93.745333pt;}
.y92_c00279{bottom:94.204000pt;}
.y93_c00279{bottom:94.422667pt;}
.y94_c00279{bottom:94.604000pt;}
.y95_c00279{bottom:94.785333pt;}
.y8b_c00279{bottom:108.346667pt;}
.y8a_c00279{bottom:123.306667pt;}
.y89_c00279{bottom:138.657333pt;}
.y88_c00279{bottom:154.000000pt;}
.y87_c00279{bottom:169.840000pt;}
.y86_c00279{bottom:185.338667pt;}
.y85_c00279{bottom:200.801333pt;}
.y84_c00279{bottom:216.428000pt;}
.y83_c00279{bottom:231.548000pt;}
.y7f_c00279{bottom:246.285804pt;}
.y7e_c00279{bottom:246.285873pt;}
.y7d_c00279{bottom:246.286024pt;}
.y80_c00279{bottom:246.286445pt;}
.y7c_c00279{bottom:246.286468pt;}
.y81_c00279{bottom:246.287015pt;}
.y7b_c00279{bottom:246.287027pt;}
.y82_c00279{bottom:246.287292pt;}
.y7a_c00279{bottom:261.592132pt;}
.y77_c00279{bottom:261.592351pt;}
.y78_c00279{bottom:261.592415pt;}
.y76_c00279{bottom:261.592528pt;}
.y75_c00279{bottom:261.592544pt;}
.y79_c00279{bottom:261.592744pt;}
.y74_c00279{bottom:261.593032pt;}
.y73_c00279{bottom:261.593609pt;}
.y6c_c00279{bottom:275.509963pt;}
.y6d_c00279{bottom:276.068975pt;}
.y6e_c00279{bottom:276.750413pt;}
.y6f_c00279{bottom:276.949980pt;}
.y70_c00279{bottom:277.112321pt;}
.y71_c00279{bottom:277.563315pt;}
.y72_c00279{bottom:277.760661pt;}
.y64_c00279{bottom:291.111604pt;}
.y65_c00279{bottom:291.351049pt;}
.y66_c00279{bottom:291.586749pt;}
.y67_c00279{bottom:292.050312pt;}
.y68_c00279{bottom:292.472765pt;}
.y69_c00279{bottom:293.005423pt;}
.y6a_c00279{bottom:293.465137pt;}
.y6b_c00279{bottom:293.571041pt;}
.y5e_c00279{bottom:306.233001pt;}
.y5f_c00279{bottom:306.508408pt;}
.y60_c00279{bottom:307.172708pt;}
.y61_c00279{bottom:307.466284pt;}
.y62_c00279{bottom:308.015244pt;}
.y63_c00279{bottom:308.717528pt;}
.y55_c00279{bottom:322.073143pt;}
.y56_c00279{bottom:322.601073pt;}
.y57_c00279{bottom:322.746093pt;}
.y58_c00279{bottom:322.939204pt;}
.y59_c00279{bottom:323.301345pt;}
.y5a_c00279{bottom:323.507320pt;}
.y5b_c00279{bottom:323.935427pt;}
.y5c_c00279{bottom:324.386211pt;}
.y5d_c00279{bottom:324.806291pt;}
.y50_c00279{bottom:338.506912pt;}
.y4e_c00279{bottom:338.507115pt;}
.y4f_c00279{bottom:338.507391pt;}
.y53_c00279{bottom:338.507501pt;}
.y51_c00279{bottom:338.507561pt;}
.y54_c00279{bottom:338.507708pt;}
.y52_c00279{bottom:338.507945pt;}
.y46_c00279{bottom:352.313681pt;}
.y47_c00279{bottom:352.872572pt;}
.y48_c00279{bottom:353.053187pt;}
.y49_c00279{bottom:353.259636pt;}
.y4a_c00279{bottom:353.511843pt;}
.y4b_c00279{bottom:353.967984pt;}
.y4c_c00279{bottom:354.090447pt;}
.y4d_c00279{bottom:354.700468pt;}
.y45_c00279{bottom:369.205513pt;}
.y44_c00279{bottom:369.206037pt;}
.y3d_c00279{bottom:369.206057pt;}
.y3f_c00279{bottom:369.206139pt;}
.y41_c00279{bottom:369.206185pt;}
.y3e_c00279{bottom:369.206529pt;}
.y40_c00279{bottom:369.206557pt;}
.y42_c00279{bottom:369.206595pt;}
.y43_c00279{bottom:369.206613pt;}
.y3c_c00279{bottom:383.995821pt;}
.y3b_c00279{bottom:383.996105pt;}
.y35_c00279{bottom:383.996127pt;}
.y39_c00279{bottom:383.996139pt;}
.y38_c00279{bottom:383.996173pt;}
.y36_c00279{bottom:383.996332pt;}
.y37_c00279{bottom:383.996555pt;}
.y3a_c00279{bottom:383.996709pt;}
.y2e_c00279{bottom:399.363724pt;}
.y2f_c00279{bottom:399.363948pt;}
.y2d_c00279{bottom:399.364043pt;}
.y30_c00279{bottom:399.364491pt;}
.y31_c00279{bottom:399.364839pt;}
.y33_c00279{bottom:399.365427pt;}
.y32_c00279{bottom:399.365435pt;}
.y34_c00279{bottom:399.366023pt;}
.y23_c00279{bottom:413.517207pt;}
.y24_c00279{bottom:413.666612pt;}
.y25_c00279{bottom:414.239755pt;}
.y26_c00279{bottom:414.504860pt;}
.y27_c00279{bottom:414.933417pt;}
.y28_c00279{bottom:415.007523pt;}
.y29_c00279{bottom:415.303300pt;}
.y2a_c00279{bottom:415.460023pt;}
.y2b_c00279{bottom:415.737388pt;}
.y2c_c00279{bottom:415.992749pt;}
.y1c_c00279{bottom:428.638413pt;}
.y1d_c00279{bottom:428.848991pt;}
.y1e_c00279{bottom:429.447187pt;}
.y1f_c00279{bottom:430.040580pt;}
.y20_c00279{bottom:430.537052pt;}
.y21_c00279{bottom:430.714685pt;}
.y22_c00279{bottom:431.068096pt;}
.y14_c00279{bottom:443.761080pt;}
.y15_c00279{bottom:444.278151pt;}
.y16_c00279{bottom:444.431828pt;}
.y17_c00279{bottom:445.096405pt;}
.y18_c00279{bottom:445.317943pt;}
.y19_c00279{bottom:445.985605pt;}
.y1a_c00279{bottom:446.285229pt;}
.y1b_c00279{bottom:446.862499pt;}
.yd_c00279{bottom:459.360743pt;}
.ye_c00279{bottom:459.916271pt;}
.yf_c00279{bottom:460.771585pt;}
.y10_c00279{bottom:461.031711pt;}
.y11_c00279{bottom:461.575451pt;}
.y12_c00279{bottom:461.853032pt;}
.y13_c00279{bottom:462.016932pt;}
.y9_c00279{bottom:474.783539pt;}
.ya_c00279{bottom:474.784021pt;}
.yb_c00279{bottom:474.784253pt;}
.yc_c00279{bottom:474.784327pt;}
.y2_c00279{bottom:489.362667pt;}
.y3_c00279{bottom:490.453800pt;}
.y4_c00279{bottom:490.666792pt;}
.y5_c00279{bottom:491.483556pt;}
.y6_c00279{bottom:491.680133pt;}
.y7_c00279{bottom:491.921084pt;}
.y8_c00279{bottom:492.663176pt;}
.y1_c00279{bottom:502.564000pt;}
.hd_c00279{height:53.200000pt;}
.hf_c00279{height:54.133333pt;}
.h3_c00279{height:54.137907pt;}
.hc_c00279{height:55.066667pt;}
.h8_c00279{height:55.071320pt;}
.h13_c00279{height:56.000000pt;}
.ha_c00279{height:56.004732pt;}
.h4_c00279{height:56.938144pt;}
.he_c00279{height:57.866667pt;}
.h6_c00279{height:57.871556pt;}
.h10_c00279{height:58.800000pt;}
.h14_c00279{height:59.733333pt;}
.h9_c00279{height:59.738381pt;}
.h5_c00279{height:60.671793pt;}
.h11_c00279{height:61.600000pt;}
.h7_c00279{height:61.605205pt;}
.hb_c00279{height:62.538617pt;}
.h12_c00279{height:64.400000pt;}
.h2_c00279{height:72.800000pt;}
.h1_c00279{height:550.000000pt;}
.h0_c00279{height:550.266667pt;}
.w0_c00279{width:319.200000pt;}
.w1_c00279{width:319.333333pt;}
.x0_c00279{left:0.000000pt;}
.x78_c00279{left:36.481333pt;}
.x2e_c00279{left:37.681543pt;}
.x2_c00279{left:39.038667pt;}
.x9_c00279{left:41.039168pt;}
.x5c_c00279{left:52.080000pt;}
.x1d_c00279{left:53.148933pt;}
.x56_c00279{left:55.440000pt;}
.x3a_c00279{left:58.084005pt;}
.xc_c00279{left:60.617605pt;}
.x45_c00279{left:61.748220pt;}
.x2f_c00279{left:63.363209pt;}
.x28_c00279{left:68.643867pt;}
.x57_c00279{left:70.560000pt;}
.x73_c00279{left:72.088000pt;}
.x7d_c00279{left:73.680000pt;}
.x5d_c00279{left:74.640000pt;}
.x30_c00279{left:77.284233pt;}
.x13_c00279{left:78.566012pt;}
.x50_c00279{left:82.561199pt;}
.x53_c00279{left:84.241761pt;}
.x46_c00279{left:85.315805pt;}
.x29_c00279{left:87.125653pt;}
.x14_c00279{left:90.387345pt;}
.x36_c00279{left:94.199392pt;}
.x58_c00279{left:95.520000pt;}
.x54_c00279{left:96.722543pt;}
.x3e_c00279{left:99.734572pt;}
.x6e_c00279{left:101.520000pt;}
.x5e_c00279{left:103.200000pt;}
.xd_c00279{left:106.940879pt;}
.x62_c00279{left:108.480000pt;}
.x1e_c00279{left:110.469836pt;}
.x37_c00279{left:112.196085pt;}
.x31_c00279{left:113.527685pt;}
.x3f_c00279{left:117.256356pt;}
.x19_c00279{left:119.871095pt;}
.x66_c00279{left:121.440000pt;}
.x3_c00279{left:122.972000pt;}
.x3b_c00279{left:124.569904pt;}
.x2a_c00279{left:125.769521pt;}
.xa_c00279{left:128.886005pt;}
.x6a_c00279{left:130.080000pt;}
.x47_c00279{left:131.642941pt;}
.x38_c00279{left:132.795549pt;}
.x5f_c00279{left:134.160000pt;}
.x1f_c00279{left:136.914859pt;}
.x4_c00279{left:139.356000pt;}
.x15_c00279{left:141.508679pt;}
.x51_c00279{left:144.006248pt;}
.x2b_c00279{left:149.770911pt;}
.x7f_c00279{left:155.040000pt;}
.x79_c00279{left:156.241333pt;}
.x1_c00279{left:158.160000pt;}
.xb_c00279{left:160.088608pt;}
.x7a_c00279{left:161.281333pt;}
.x4b_c00279{left:162.316323pt;}
.x52_c00279{left:163.688243pt;}
.x32_c00279{left:164.892369pt;}
.x59_c00279{left:166.560000pt;}
.x40_c00279{left:168.856357pt;}
.x7c_c00279{left:172.080000pt;}
.x23_c00279{left:174.012585pt;}
.x33_c00279{left:176.412977pt;}
.xe_c00279{left:178.171131pt;}
.x1a_c00279{left:179.160067pt;}
.x6b_c00279{left:180.480000pt;}
.x4c_c00279{left:182.283769pt;}
.x3c_c00279{left:184.814745pt;}
.x20_c00279{left:187.275501pt;}
.x63_c00279{left:188.880000pt;}
.x60_c00279{left:192.720000pt;}
.x5a_c00279{left:194.160000pt;}
.x74_c00279{left:195.914667pt;}
.x3d_c00279{left:197.295527pt;}
.x4d_c00279{left:198.567077pt;}
.xf_c00279{left:199.822075pt;}
.x72_c00279{left:200.880000pt;}
.x5_c00279{left:202.184000pt;}
.x39_c00279{left:203.594305pt;}
.x41_c00279{left:207.737363pt;}
.x16_c00279{left:209.908679pt;}
.x5b_c00279{left:211.920000pt;}
.x64_c00279{left:213.600000pt;}
.x2c_c00279{left:215.056601pt;}
.x6_c00279{left:217.305333pt;}
.x7e_c00279{left:218.640000pt;}
.x55_c00279{left:219.852676pt;}
.x24_c00279{left:220.816489pt;}
.x67_c00279{left:224.640000pt;}
.x6f_c00279{left:226.080000pt;}
.x48_c00279{left:227.168001pt;}
.x1b_c00279{left:228.839341pt;}
.x75_c00279{left:231.241333pt;}
.x17_c00279{left:232.956679pt;}
.x71_c00279{left:234.000000pt;}
.x7_c00279{left:235.840000pt;}
.x25_c00279{left:237.377947pt;}
.x6c_c00279{left:241.440000pt;}
.x4e_c00279{left:243.722179pt;}
.x10_c00279{left:245.135997pt;}
.x1c_c00279{left:246.606701pt;}
.x42_c00279{left:248.773104pt;}
.x68_c00279{left:249.840000pt;}
.x2d_c00279{left:252.020192pt;}
.x6d_c00279{left:257.040000pt;}
.x21_c00279{left:260.242344pt;}
.x76_c00279{left:261.968000pt;}
.x4f_c00279{left:263.416275pt;}
.x44_c00279{left:264.414072pt;}
.x69_c00279{left:266.160000pt;}
.x11_c00279{left:268.232292pt;}
.x34_c00279{left:272.181167pt;}
.x49_c00279{left:273.199137pt;}
.x26_c00279{left:274.101485pt;}
.x77_c00279{left:275.889333pt;}
.x18_c00279{left:277.362012pt;}
.x61_c00279{left:280.080000pt;}
.x12_c00279{left:281.865799pt;}
.x4a_c00279{left:283.807553pt;}
.x22_c00279{left:285.732665pt;}
.x43_c00279{left:286.934092pt;}
.x65_c00279{left:289.440000pt;}
.x27_c00279{left:290.662943pt;}
.x8_c00279{left:292.924000pt;}
.x35_c00279{left:294.503612pt;}
.x7b_c00279{left:297.601333pt;}
.x70_c00279{left:300.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00280 {
    display:none;
  }
  .loading-indicator_c00280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00280 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00280 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00280" -> "#page-container .classname_c00280")
 */
.pf_c00280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00280 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00280 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00280 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00280 {overflow:visible;}
  }
}
.c_c00280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00280 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00280:after { /* webkit #35443 */
  content: '';
}
.t_c00280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00280 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00280 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00280 { /* info for Javascript */
  display:none;
}
.l_c00280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00280:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00280 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00280.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.018710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018710,0.000000,0.000000,0.250000,0,0);}
.mc6_c00280{transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00280{transform:matrix(0.066445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066445,0.000000,0.000000,0.250000,0,0);}
.meb_c00280{transform:matrix(0.129550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129550,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.135280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135280,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145755,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);}
.mb2_c00280{transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.me7_c00280{transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m102_c00280{transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);}
.md7_c00280{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00280{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.mfc_c00280{transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);}
.mf9_c00280{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00280{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);}
.mc4_c00280{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);}
.m9f_c00280{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);}
.mae_c00280{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.169215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169215,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.mb6_c00280{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);}
.mbd_c00280{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173240,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.maf_c00280{transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);}
.maa_c00280{transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.175790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175790,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.mb5_c00280{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.mf5_c00280{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m5e_c00280{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.md5_c00280{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.me8_c00280{transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178165,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.mb7_c00280{transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.mb3_c00280{transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.ma3_c00280{transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);}
.mb4_c00280{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m9b_c00280{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.ma2_c00280{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.me6_c00280{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.md1_c00280{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mf0_c00280{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);}
.md3_c00280{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.md2_c00280{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mfd_c00280{transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.md4_c00280{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00280{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.mca_c00280{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.mbb_c00280{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m9d_c00280{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);}
.md9_c00280{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.mfe_c00280{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);}
.mea_c00280{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00280{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m9c_c00280{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mdb_c00280{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191990,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.mad_c00280{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00280{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.mb1_c00280{transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);}
.ma8_c00280{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.me2_c00280{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.me4_c00280{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.me9_c00280{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m49_c00280{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mc2_c00280{transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.ma5_c00280{transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);}
.m101_c00280{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.md6_c00280{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.mf6_c00280{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.m96_c00280{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.mc5_c00280{transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);}
.m100_c00280{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.me5_c00280{transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.mc9_c00280{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mfa_c00280{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00280{transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00280{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.200285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200285,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.mc8_c00280{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200970,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00280{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md8_c00280{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.mcb_c00280{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.ma1_c00280{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.md0_c00280{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206365,0.000000,0.000000,0.250000,0,0);}
.mee_c00280{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.mf3_c00280{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);}
.med_c00280{transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);}
.mda_c00280{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);}
.mff_c00280{transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.ma0_c00280{transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211185,0.000000,0.000000,0.250000,0,0);}
.mdd_c00280{transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00280{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.ma7_c00280{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.mc1_c00280{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.mba_c00280{transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);}
.mf7_c00280{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);}
.m9e_c00280{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.mcf_c00280{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);}
.me3_c00280{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215595,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.mdc_c00280{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.mf1_c00280{transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216860,0.000000,0.000000,0.250000,0,0);}
.mc7_c00280{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218145,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.mce_c00280{transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219015,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);}
.mde_c00280{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.mac_c00280{transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);}
.me0_c00280{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.mef_c00280{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.mf8_c00280{transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.mfb_c00280{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.mc3_c00280{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.mbe_c00280{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.mec_c00280{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.mcd_c00280{transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.mab_c00280{transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);}
.mb8_c00280{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.237410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237410,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.mc0_c00280{transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238885,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.239110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239110,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.260365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260365,0.000000,0.000000,0.250000,0,0);}
.m91_c00280{transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.me1_c00280{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);}
.mf2_c00280{transform:matrix(0.417035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417035,0.000000,0.000000,0.250000,0,0);}
.mbf_c00280{transform:matrix(0.911465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911465,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:0.000000px;}
.fc0_c00280{color:transparent;}
.fs9_c00280{font-size:56.700000px;}
.fsd_c00280{font-size:58.800000px;}
.fs2_c00280{font-size:59.850000px;}
.fs1_c00280{font-size:60.900000px;}
.fs3_c00280{font-size:61.950000px;}
.fs7_c00280{font-size:63.000000px;}
.fs6_c00280{font-size:64.050000px;}
.fs5_c00280{font-size:65.100000px;}
.fsb_c00280{font-size:66.150000px;}
.fsa_c00280{font-size:67.200000px;}
.fsc_c00280{font-size:68.250000px;}
.fs8_c00280{font-size:69.300000px;}
.fs4_c00280{font-size:74.550000px;}
.fs0_c00280{font-size:92.400000px;}
.y0_c00280{bottom:0.000000px;}
.y83_c00280{bottom:31.201500px;}
.y82_c00280{bottom:32.542500px;}
.y81_c00280{bottom:33.321000px;}
.y80_c00280{bottom:34.165500px;}
.y7f_c00280{bottom:34.612500px;}
.y7e_c00280{bottom:35.682000px;}
.y7d_c00280{bottom:35.907000px;}
.y7c_c00280{bottom:49.315500px;}
.y7b_c00280{bottom:50.208000px;}
.y7a_c00280{bottom:50.788500px;}
.y79_c00280{bottom:51.118500px;}
.y78_c00280{bottom:51.456000px;}
.y77_c00280{bottom:52.732500px;}
.y76_c00280{bottom:53.127000px;}
.y75_c00280{bottom:53.445000px;}
.y74_c00280{bottom:54.331500px;}
.y73_c00280{bottom:55.077000px;}
.y72_c00280{bottom:67.123500px;}
.y71_c00280{bottom:67.968000px;}
.y70_c00280{bottom:68.155500px;}
.y6f_c00280{bottom:68.746500px;}
.y6e_c00280{bottom:69.466500px;}
.y6d_c00280{bottom:70.008000px;}
.y6c_c00280{bottom:70.195500px;}
.y6b_c00280{bottom:84.622500px;}
.y6a_c00280{bottom:101.902500px;}
.y69_c00280{bottom:119.557500px;}
.y68_c00280{bottom:133.885500px;}
.y61_c00280{bottom:150.655500px;}
.y62_c00280{bottom:151.513500px;}
.y63_c00280{bottom:152.044500px;}
.y64_c00280{bottom:152.608500px;}
.y65_c00280{bottom:152.976000px;}
.y66_c00280{bottom:153.213000px;}
.y67_c00280{bottom:153.354000px;}
.y60_c00280{bottom:169.666500px;}
.y5f_c00280{bottom:170.077500px;}
.y5e_c00280{bottom:170.313000px;}
.y5d_c00280{bottom:170.641500px;}
.y5c_c00280{bottom:171.219000px;}
.y5b_c00280{bottom:171.703500px;}
.y5a_c00280{bottom:172.203000px;}
.y59_c00280{bottom:172.524000px;}
.y58_c00280{bottom:173.337000px;}
.y4f_c00280{bottom:183.057000px;}
.y50_c00280{bottom:183.607500px;}
.y51_c00280{bottom:184.042500px;}
.y52_c00280{bottom:184.414500px;}
.y53_c00280{bottom:185.124000px;}
.y54_c00280{bottom:185.341500px;}
.y55_c00280{bottom:185.758500px;}
.y56_c00280{bottom:186.124500px;}
.y57_c00280{bottom:186.700500px;}
.y4e_c00280{bottom:205.029000px;}
.y4d_c00280{bottom:220.810500px;}
.y4c_c00280{bottom:239.926500px;}
.y4b_c00280{bottom:256.459500px;}
.y4a_c00280{bottom:274.479000px;}
.y49_c00280{bottom:291.645000px;}
.y48_c00280{bottom:308.956500px;}
.y47_c00280{bottom:326.119500px;}
.y46_c00280{bottom:342.940500px;}
.y3e_c00280{bottom:358.017000px;}
.y3f_c00280{bottom:358.218000px;}
.y40_c00280{bottom:358.500000px;}
.y41_c00280{bottom:358.912500px;}
.y42_c00280{bottom:359.613000px;}
.y43_c00280{bottom:359.865000px;}
.y44_c00280{bottom:360.274500px;}
.y45_c00280{bottom:360.756000px;}
.y34_c00280{bottom:374.757000px;}
.y35_c00280{bottom:374.956500px;}
.y36_c00280{bottom:375.603000px;}
.y37_c00280{bottom:375.730500px;}
.y38_c00280{bottom:376.285500px;}
.y39_c00280{bottom:376.428000px;}
.y3a_c00280{bottom:376.983000px;}
.y3b_c00280{bottom:377.319000px;}
.y3c_c00280{bottom:377.554500px;}
.y3d_c00280{bottom:377.970000px;}
.y33_c00280{bottom:392.856000px;}
.y2f_c00280{bottom:406.618500px;}
.y30_c00280{bottom:407.049000px;}
.y31_c00280{bottom:408.108000px;}
.y32_c00280{bottom:409.143000px;}
.y27_c00280{bottom:424.707000px;}
.y28_c00280{bottom:424.825500px;}
.y29_c00280{bottom:425.346000px;}
.y2a_c00280{bottom:425.629500px;}
.y2b_c00280{bottom:426.037500px;}
.y2c_c00280{bottom:426.504000px;}
.y2d_c00280{bottom:426.672000px;}
.y2e_c00280{bottom:427.482000px;}
.y26_c00280{bottom:443.343000px;}
.y1f_c00280{bottom:459.270000px;}
.y20_c00280{bottom:459.537000px;}
.y21_c00280{bottom:460.006500px;}
.y22_c00280{bottom:460.554000px;}
.y23_c00280{bottom:460.791000px;}
.y24_c00280{bottom:461.382000px;}
.y25_c00280{bottom:461.662500px;}
.y16_c00280{bottom:475.471500px;}
.y17_c00280{bottom:475.899000px;}
.y18_c00280{bottom:476.377500px;}
.y19_c00280{bottom:476.611500px;}
.y1a_c00280{bottom:477.180000px;}
.y1b_c00280{bottom:477.510000px;}
.y1c_c00280{bottom:477.771000px;}
.y1d_c00280{bottom:478.423500px;}
.y1e_c00280{bottom:479.073000px;}
.y15_c00280{bottom:495.474000px;}
.ye_c00280{bottom:510.031500px;}
.yf_c00280{bottom:510.796500px;}
.y10_c00280{bottom:511.060500px;}
.y11_c00280{bottom:511.639500px;}
.y12_c00280{bottom:512.292000px;}
.y13_c00280{bottom:512.797500px;}
.y14_c00280{bottom:513.507000px;}
.y4_c00280{bottom:527.311500px;}
.y5_c00280{bottom:527.682000px;}
.y6_c00280{bottom:527.932500px;}
.y7_c00280{bottom:528.261000px;}
.y8_c00280{bottom:528.975000px;}
.y9_c00280{bottom:529.171500px;}
.ya_c00280{bottom:529.512000px;}
.yb_c00280{bottom:530.260500px;}
.yc_c00280{bottom:530.548500px;}
.yd_c00280{bottom:530.775000px;}
.y3_c00280{bottom:548.040000px;}
.y2_c00280{bottom:563.748000px;}
.y1_c00280{bottom:576.036000px;}
.hb_c00280{height:56.700000px;}
.hf_c00280{height:58.800000px;}
.h4_c00280{height:59.850000px;}
.h3_c00280{height:60.900000px;}
.h5_c00280{height:61.950000px;}
.h9_c00280{height:63.000000px;}
.h8_c00280{height:64.050000px;}
.h7_c00280{height:65.100000px;}
.hd_c00280{height:66.150000px;}
.hc_c00280{height:67.200000px;}
.he_c00280{height:68.250000px;}
.ha_c00280{height:69.300000px;}
.h6_c00280{height:74.550000px;}
.h2_c00280{height:92.400000px;}
.h1_c00280{height:618.750000px;}
.h0_c00280{height:619.050000px;}
.w0_c00280{width:359.100000px;}
.w1_c00280{width:359.250000px;}
.x0_c00280{left:0.000000px;}
.x75_c00280{left:25.648500px;}
.x21_c00280{left:28.350000px;}
.x50_c00280{left:31.323000px;}
.xb_c00280{left:32.940000px;}
.x29_c00280{left:34.182000px;}
.x3_c00280{left:35.370000px;}
.x1_c00280{left:36.450000px;}
.x3b_c00280{left:41.796000px;}
.x68_c00280{left:43.449000px;}
.x39_c00280{left:45.777000px;}
.x22_c00280{left:48.060000px;}
.x7b_c00280{left:49.948500px;}
.x33_c00280{left:51.301500px;}
.xc_c00280{left:52.380000px;}
.x57_c00280{left:57.513000px;}
.x4d_c00280{left:59.403000px;}
.x14_c00280{left:60.862500px;}
.x4_c00280{left:63.990000px;}
.x2a_c00280{left:67.123500px;}
.x83_c00280{left:70.819500px;}
.x3c_c00280{left:72.547500px;}
.x49_c00280{left:76.269000px;}
.x15_c00280{left:78.735000px;}
.x34_c00280{left:80.191500px;}
.x5_c00280{left:82.620000px;}
.xd_c00280{left:83.700000px;}
.x69_c00280{left:85.747500px;}
.x58_c00280{left:88.563000px;}
.x3f_c00280{left:90.453000px;}
.x1c_c00280{left:93.301500px;}
.x3a_c00280{left:97.855500px;}
.x23_c00280{left:100.170000px;}
.x16_c00280{left:102.228000px;}
.x2b_c00280{left:103.897500px;}
.x52_c00280{left:106.383000px;}
.x30_c00280{left:107.845500px;}
.x40_c00280{left:110.163000px;}
.x6f_c00280{left:111.366000px;}
.x1d_c00280{left:113.559000px;}
.x24_c00280{left:115.290000px;}
.x6_c00280{left:117.450000px;}
.x6a_c00280{left:119.200500px;}
.x2c_c00280{left:121.885500px;}
.x76_c00280{left:124.738500px;}
.xe_c00280{left:125.820000px;}
.x66_c00280{left:127.443000px;}
.x53_c00280{left:128.523000px;}
.x35_c00280{left:129.871500px;}
.x5c_c00280{left:130.953000px;}
.x5f_c00280{left:133.383000px;}
.x64_c00280{left:134.733000px;}
.x59_c00280{left:139.863000px;}
.xf_c00280{left:142.020000px;}
.x70_c00280{left:147.021000px;}
.x3d_c00280{left:148.140000px;}
.x84_c00280{left:150.778500px;}
.x7_c00280{left:152.550000px;}
.x88_c00280{left:155.715000px;}
.x1e_c00280{left:158.130000px;}
.x5a_c00280{left:160.113000px;}
.x31_c00280{left:162.655500px;}
.x8_c00280{left:164.970000px;}
.x17_c00280{left:167.301000px;}
.x10_c00280{left:168.480000px;}
.x25_c00280{left:170.100000px;}
.x36_c00280{left:171.451500px;}
.x2_c00280{left:172.800000px;}
.x60_c00280{left:173.883000px;}
.x4a_c00280{left:177.501000px;}
.x41_c00280{left:179.013000px;}
.x7c_c00280{left:180.358500px;}
.x71_c00280{left:181.582500px;}
.x54_c00280{left:183.063000px;}
.x45_c00280{left:184.788000px;}
.x11_c00280{left:187.110000px;}
.x65_c00280{left:188.463000px;}
.x77_c00280{left:189.538500px;}
.x18_c00280{left:191.599500px;}
.x61_c00280{left:194.403000px;}
.x42_c00280{left:198.993000px;}
.x4b_c00280{left:200.451000px;}
.x6b_c00280{left:202.395000px;}
.x67_c00280{left:203.853000px;}
.x89_c00280{left:205.366500px;}
.x7d_c00280{left:207.898500px;}
.x12_c00280{left:208.980000px;}
.x2d_c00280{left:211.027500px;}
.x51_c00280{left:212.223000px;}
.x26_c00280{left:213.570000px;}
.x85_c00280{left:214.581000px;}
.x5d_c00280{left:217.353000px;}
.x6c_c00280{left:219.124500px;}
.x3e_c00280{left:222.120000px;}
.x78_c00280{left:223.288500px;}
.x27_c00280{left:225.450000px;}
.x81_c00280{left:226.959000px;}
.x73_c00280{left:228.249000px;}
.x9_c00280{left:229.500000px;}
.x37_c00280{left:231.931500px;}
.x46_c00280{left:235.236000px;}
.x4c_c00280{left:237.718500px;}
.x62_c00280{left:238.953000px;}
.x55_c00280{left:241.383000px;}
.x19_c00280{left:245.049000px;}
.x1f_c00280{left:247.207500px;}
.x6d_c00280{left:251.196000px;}
.x43_c00280{left:255.693000px;}
.x4e_c00280{left:257.313000px;}
.x38_c00280{left:258.931500px;}
.x2e_c00280{left:261.253500px;}
.x72_c00280{left:263.172000px;}
.x1a_c00280{left:265.572000px;}
.x13_c00280{left:268.380000px;}
.x79_c00280{left:270.538500px;}
.x5b_c00280{left:271.893000px;}
.x32_c00280{left:273.642000px;}
.x86_c00280{left:277.054500px;}
.x6e_c00280{left:279.303000px;}
.x1b_c00280{left:281.746500px;}
.x47_c00280{left:287.124000px;}
.xa_c00280{left:289.710000px;}
.x7e_c00280{left:291.328500px;}
.x4f_c00280{left:293.493000px;}
.x82_c00280{left:297.390000px;}
.x80_c00280{left:300.508500px;}
.x20_c00280{left:301.759500px;}
.x74_c00280{left:302.776500px;}
.x7f_c00280{left:306.448500px;}
.x28_c00280{left:308.070000px;}
.x7a_c00280{left:309.418500px;}
.x2f_c00280{left:311.209500px;}
.x56_c00280{left:314.553000px;}
.x5e_c00280{left:318.333000px;}
.x44_c00280{left:320.493000px;}
.x87_c00280{left:321.700500px;}
.x63_c00280{left:323.733000px;}
.x48_c00280{left:324.940500px;}
.x8a_c00280{left:330.079500px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.fs9_c00280{font-size:50.400000pt;}
.fsd_c00280{font-size:52.266667pt;}
.fs2_c00280{font-size:53.200000pt;}
.fs1_c00280{font-size:54.133333pt;}
.fs3_c00280{font-size:55.066667pt;}
.fs7_c00280{font-size:56.000000pt;}
.fs6_c00280{font-size:56.933333pt;}
.fs5_c00280{font-size:57.866667pt;}
.fsb_c00280{font-size:58.800000pt;}
.fsa_c00280{font-size:59.733333pt;}
.fsc_c00280{font-size:60.666667pt;}
.fs8_c00280{font-size:61.600000pt;}
.fs4_c00280{font-size:66.266667pt;}
.fs0_c00280{font-size:82.133333pt;}
.y0_c00280{bottom:0.000000pt;}
.y83_c00280{bottom:27.734667pt;}
.y82_c00280{bottom:28.926667pt;}
.y81_c00280{bottom:29.618667pt;}
.y80_c00280{bottom:30.369333pt;}
.y7f_c00280{bottom:30.766667pt;}
.y7e_c00280{bottom:31.717333pt;}
.y7d_c00280{bottom:31.917333pt;}
.y7c_c00280{bottom:43.836000pt;}
.y7b_c00280{bottom:44.629333pt;}
.y7a_c00280{bottom:45.145333pt;}
.y79_c00280{bottom:45.438667pt;}
.y78_c00280{bottom:45.738667pt;}
.y77_c00280{bottom:46.873333pt;}
.y76_c00280{bottom:47.224000pt;}
.y75_c00280{bottom:47.506667pt;}
.y74_c00280{bottom:48.294667pt;}
.y73_c00280{bottom:48.957333pt;}
.y72_c00280{bottom:59.665333pt;}
.y71_c00280{bottom:60.416000pt;}
.y70_c00280{bottom:60.582667pt;}
.y6f_c00280{bottom:61.108000pt;}
.y6e_c00280{bottom:61.748000pt;}
.y6d_c00280{bottom:62.229333pt;}
.y6c_c00280{bottom:62.396000pt;}
.y6b_c00280{bottom:75.220000pt;}
.y6a_c00280{bottom:90.580000pt;}
.y69_c00280{bottom:106.273333pt;}
.y68_c00280{bottom:119.009333pt;}
.y61_c00280{bottom:133.916000pt;}
.y62_c00280{bottom:134.678667pt;}
.y63_c00280{bottom:135.150667pt;}
.y64_c00280{bottom:135.652000pt;}
.y65_c00280{bottom:135.978667pt;}
.y66_c00280{bottom:136.189333pt;}
.y67_c00280{bottom:136.314667pt;}
.y60_c00280{bottom:150.814667pt;}
.y5f_c00280{bottom:151.180000pt;}
.y5e_c00280{bottom:151.389333pt;}
.y5d_c00280{bottom:151.681333pt;}
.y5c_c00280{bottom:152.194667pt;}
.y5b_c00280{bottom:152.625333pt;}
.y5a_c00280{bottom:153.069333pt;}
.y59_c00280{bottom:153.354667pt;}
.y58_c00280{bottom:154.077333pt;}
.y4f_c00280{bottom:162.717333pt;}
.y50_c00280{bottom:163.206667pt;}
.y51_c00280{bottom:163.593333pt;}
.y52_c00280{bottom:163.924000pt;}
.y53_c00280{bottom:164.554667pt;}
.y54_c00280{bottom:164.748000pt;}
.y55_c00280{bottom:165.118667pt;}
.y56_c00280{bottom:165.444000pt;}
.y57_c00280{bottom:165.956000pt;}
.y4e_c00280{bottom:182.248000pt;}
.y4d_c00280{bottom:196.276000pt;}
.y4c_c00280{bottom:213.268000pt;}
.y4b_c00280{bottom:227.964000pt;}
.y4a_c00280{bottom:243.981333pt;}
.y49_c00280{bottom:259.240000pt;}
.y48_c00280{bottom:274.628000pt;}
.y47_c00280{bottom:289.884000pt;}
.y46_c00280{bottom:304.836000pt;}
.y3e_c00280{bottom:318.237333pt;}
.y3f_c00280{bottom:318.416000pt;}
.y40_c00280{bottom:318.666667pt;}
.y41_c00280{bottom:319.033333pt;}
.y42_c00280{bottom:319.656000pt;}
.y43_c00280{bottom:319.880000pt;}
.y44_c00280{bottom:320.244000pt;}
.y45_c00280{bottom:320.672000pt;}
.y34_c00280{bottom:333.117333pt;}
.y35_c00280{bottom:333.294667pt;}
.y36_c00280{bottom:333.869333pt;}
.y37_c00280{bottom:333.982667pt;}
.y38_c00280{bottom:334.476000pt;}
.y39_c00280{bottom:334.602667pt;}
.y3a_c00280{bottom:335.096000pt;}
.y3b_c00280{bottom:335.394667pt;}
.y3c_c00280{bottom:335.604000pt;}
.y3d_c00280{bottom:335.973333pt;}
.y33_c00280{bottom:349.205333pt;}
.y2f_c00280{bottom:361.438667pt;}
.y30_c00280{bottom:361.821333pt;}
.y31_c00280{bottom:362.762667pt;}
.y32_c00280{bottom:363.682667pt;}
.y27_c00280{bottom:377.517333pt;}
.y28_c00280{bottom:377.622667pt;}
.y29_c00280{bottom:378.085333pt;}
.y2a_c00280{bottom:378.337333pt;}
.y2b_c00280{bottom:378.700000pt;}
.y2c_c00280{bottom:379.114667pt;}
.y2d_c00280{bottom:379.264000pt;}
.y2e_c00280{bottom:379.984000pt;}
.y26_c00280{bottom:394.082667pt;}
.y1f_c00280{bottom:408.240000pt;}
.y20_c00280{bottom:408.477333pt;}
.y21_c00280{bottom:408.894667pt;}
.y22_c00280{bottom:409.381333pt;}
.y23_c00280{bottom:409.592000pt;}
.y24_c00280{bottom:410.117333pt;}
.y25_c00280{bottom:410.366667pt;}
.y16_c00280{bottom:422.641333pt;}
.y17_c00280{bottom:423.021333pt;}
.y18_c00280{bottom:423.446667pt;}
.y19_c00280{bottom:423.654667pt;}
.y1a_c00280{bottom:424.160000pt;}
.y1b_c00280{bottom:424.453333pt;}
.y1c_c00280{bottom:424.685333pt;}
.y1d_c00280{bottom:425.265333pt;}
.y1e_c00280{bottom:425.842667pt;}
.y15_c00280{bottom:440.421333pt;}
.ye_c00280{bottom:453.361333pt;}
.yf_c00280{bottom:454.041333pt;}
.y10_c00280{bottom:454.276000pt;}
.y11_c00280{bottom:454.790667pt;}
.y12_c00280{bottom:455.370667pt;}
.y13_c00280{bottom:455.820000pt;}
.y14_c00280{bottom:456.450667pt;}
.y4_c00280{bottom:468.721333pt;}
.y5_c00280{bottom:469.050667pt;}
.y6_c00280{bottom:469.273333pt;}
.y7_c00280{bottom:469.565333pt;}
.y8_c00280{bottom:470.200000pt;}
.y9_c00280{bottom:470.374667pt;}
.ya_c00280{bottom:470.677333pt;}
.yb_c00280{bottom:471.342667pt;}
.yc_c00280{bottom:471.598667pt;}
.yd_c00280{bottom:471.800000pt;}
.y3_c00280{bottom:487.146667pt;}
.y2_c00280{bottom:501.109333pt;}
.y1_c00280{bottom:512.032000pt;}
.hb_c00280{height:50.400000pt;}
.hf_c00280{height:52.266667pt;}
.h4_c00280{height:53.200000pt;}
.h3_c00280{height:54.133333pt;}
.h5_c00280{height:55.066667pt;}
.h9_c00280{height:56.000000pt;}
.h8_c00280{height:56.933333pt;}
.h7_c00280{height:57.866667pt;}
.hd_c00280{height:58.800000pt;}
.hc_c00280{height:59.733333pt;}
.he_c00280{height:60.666667pt;}
.ha_c00280{height:61.600000pt;}
.h6_c00280{height:66.266667pt;}
.h2_c00280{height:82.133333pt;}
.h1_c00280{height:550.000000pt;}
.h0_c00280{height:550.266667pt;}
.w0_c00280{width:319.200000pt;}
.w1_c00280{width:319.333333pt;}
.x0_c00280{left:0.000000pt;}
.x75_c00280{left:22.798667pt;}
.x21_c00280{left:25.200000pt;}
.x50_c00280{left:27.842667pt;}
.xb_c00280{left:29.280000pt;}
.x29_c00280{left:30.384000pt;}
.x3_c00280{left:31.440000pt;}
.x1_c00280{left:32.400000pt;}
.x3b_c00280{left:37.152000pt;}
.x68_c00280{left:38.621333pt;}
.x39_c00280{left:40.690667pt;}
.x22_c00280{left:42.720000pt;}
.x7b_c00280{left:44.398667pt;}
.x33_c00280{left:45.601333pt;}
.xc_c00280{left:46.560000pt;}
.x57_c00280{left:51.122667pt;}
.x4d_c00280{left:52.802667pt;}
.x14_c00280{left:54.100000pt;}
.x4_c00280{left:56.880000pt;}
.x2a_c00280{left:59.665333pt;}
.x83_c00280{left:62.950667pt;}
.x3c_c00280{left:64.486667pt;}
.x49_c00280{left:67.794667pt;}
.x15_c00280{left:69.986667pt;}
.x34_c00280{left:71.281333pt;}
.x5_c00280{left:73.440000pt;}
.xd_c00280{left:74.400000pt;}
.x69_c00280{left:76.220000pt;}
.x58_c00280{left:78.722667pt;}
.x3f_c00280{left:80.402667pt;}
.x1c_c00280{left:82.934667pt;}
.x3a_c00280{left:86.982667pt;}
.x23_c00280{left:89.040000pt;}
.x16_c00280{left:90.869333pt;}
.x2b_c00280{left:92.353333pt;}
.x52_c00280{left:94.562667pt;}
.x30_c00280{left:95.862667pt;}
.x40_c00280{left:97.922667pt;}
.x6f_c00280{left:98.992000pt;}
.x1d_c00280{left:100.941333pt;}
.x24_c00280{left:102.480000pt;}
.x6_c00280{left:104.400000pt;}
.x6a_c00280{left:105.956000pt;}
.x2c_c00280{left:108.342667pt;}
.x76_c00280{left:110.878667pt;}
.xe_c00280{left:111.840000pt;}
.x66_c00280{left:113.282667pt;}
.x53_c00280{left:114.242667pt;}
.x35_c00280{left:115.441333pt;}
.x5c_c00280{left:116.402667pt;}
.x5f_c00280{left:118.562667pt;}
.x64_c00280{left:119.762667pt;}
.x59_c00280{left:124.322667pt;}
.xf_c00280{left:126.240000pt;}
.x70_c00280{left:130.685333pt;}
.x3d_c00280{left:131.680000pt;}
.x84_c00280{left:134.025333pt;}
.x7_c00280{left:135.600000pt;}
.x88_c00280{left:138.413333pt;}
.x1e_c00280{left:140.560000pt;}
.x5a_c00280{left:142.322667pt;}
.x31_c00280{left:144.582667pt;}
.x8_c00280{left:146.640000pt;}
.x17_c00280{left:148.712000pt;}
.x10_c00280{left:149.760000pt;}
.x25_c00280{left:151.200000pt;}
.x36_c00280{left:152.401333pt;}
.x2_c00280{left:153.600000pt;}
.x60_c00280{left:154.562667pt;}
.x4a_c00280{left:157.778667pt;}
.x41_c00280{left:159.122667pt;}
.x7c_c00280{left:160.318667pt;}
.x71_c00280{left:161.406667pt;}
.x54_c00280{left:162.722667pt;}
.x45_c00280{left:164.256000pt;}
.x11_c00280{left:166.320000pt;}
.x65_c00280{left:167.522667pt;}
.x77_c00280{left:168.478667pt;}
.x18_c00280{left:170.310667pt;}
.x61_c00280{left:172.802667pt;}
.x42_c00280{left:176.882667pt;}
.x4b_c00280{left:178.178667pt;}
.x6b_c00280{left:179.906667pt;}
.x67_c00280{left:181.202667pt;}
.x89_c00280{left:182.548000pt;}
.x7d_c00280{left:184.798667pt;}
.x12_c00280{left:185.760000pt;}
.x2d_c00280{left:187.580000pt;}
.x51_c00280{left:188.642667pt;}
.x26_c00280{left:189.840000pt;}
.x85_c00280{left:190.738667pt;}
.x5d_c00280{left:193.202667pt;}
.x6c_c00280{left:194.777333pt;}
.x3e_c00280{left:197.440000pt;}
.x78_c00280{left:198.478667pt;}
.x27_c00280{left:200.400000pt;}
.x81_c00280{left:201.741333pt;}
.x73_c00280{left:202.888000pt;}
.x9_c00280{left:204.000000pt;}
.x37_c00280{left:206.161333pt;}
.x46_c00280{left:209.098667pt;}
.x4c_c00280{left:211.305333pt;}
.x62_c00280{left:212.402667pt;}
.x55_c00280{left:214.562667pt;}
.x19_c00280{left:217.821333pt;}
.x1f_c00280{left:219.740000pt;}
.x6d_c00280{left:223.285333pt;}
.x43_c00280{left:227.282667pt;}
.x4e_c00280{left:228.722667pt;}
.x38_c00280{left:230.161333pt;}
.x2e_c00280{left:232.225333pt;}
.x72_c00280{left:233.930667pt;}
.x1a_c00280{left:236.064000pt;}
.x13_c00280{left:238.560000pt;}
.x79_c00280{left:240.478667pt;}
.x5b_c00280{left:241.682667pt;}
.x32_c00280{left:243.237333pt;}
.x86_c00280{left:246.270667pt;}
.x6e_c00280{left:248.269333pt;}
.x1b_c00280{left:250.441333pt;}
.x47_c00280{left:255.221333pt;}
.xa_c00280{left:257.520000pt;}
.x7e_c00280{left:258.958667pt;}
.x4f_c00280{left:260.882667pt;}
.x82_c00280{left:264.346667pt;}
.x80_c00280{left:267.118667pt;}
.x20_c00280{left:268.230667pt;}
.x74_c00280{left:269.134667pt;}
.x7f_c00280{left:272.398667pt;}
.x28_c00280{left:273.840000pt;}
.x7a_c00280{left:275.038667pt;}
.x2f_c00280{left:276.630667pt;}
.x56_c00280{left:279.602667pt;}
.x5e_c00280{left:282.962667pt;}
.x44_c00280{left:284.882667pt;}
.x87_c00280{left:285.956000pt;}
.x63_c00280{left:287.762667pt;}
.x48_c00280{left:288.836000pt;}
.x8a_c00280{left:293.404000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00281 {
    display:none;
  }
  .loading-indicator_c00281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00281 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00281 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00281" -> "#page-container .classname_c00281")
 */
.pf_c00281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00281 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00281 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00281 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00281 {overflow:visible;}
  }
}
.c_c00281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00281 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00281:after { /* webkit #35443 */
  content: '';
}
.t_c00281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00281 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00281 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00281 { /* info for Javascript */
  display:none;
}
.l_c00281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00281:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00281 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00281.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00281{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00281{transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148990,0.000000,0.000000,0.250000,0,0);}
.m2b_c00281{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);}
.m1a_c00281{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00281{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00281{transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168130,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00281{transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);}
.m33_c00281{transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172745,0.000000,0.000000,0.250000,0,0);}
.m35_c00281{transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);}
.m48_c00281{transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m31_c00281{transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.m45_c00281{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00281{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.m25_c00281{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m44_c00281{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m3b_c00281{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00281{transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);}
.m3d_c00281{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m4c_c00281{transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m23_c00281{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m52_c00281{transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.m50_c00281{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.m30_c00281{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m43_c00281{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m2d_c00281{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m24_c00281{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.m47_c00281{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.m32_c00281{transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);}
.m41_c00281{transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m22_c00281{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m26_c00281{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m54_c00281{transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);}
.m3e_c00281{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00281{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m29_c00281{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m36_c00281{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.ma_c00281{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m40_c00281{transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.214240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214240,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m46_c00281{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00281{transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m37_c00281{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m27_c00281{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m39_c00281{transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);}
.m38_c00281{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m49_c00281{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m9_c00281{transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);}
.m4b_c00281{transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);}
.m4f_c00281{transform:matrix(0.224185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224185,0.000000,0.000000,0.250000,0,0);}
.m20_c00281{transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);}
.m53_c00281{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.m10_c00281{transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);}
.m34_c00281{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00281{transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);}
.m21_c00281{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m28_c00281{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m4d_c00281{transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);}
.m55_c00281{transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.530390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530390,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.538995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538995,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:0.000000px;}
.fc0_c00281{color:transparent;}
.fs0_c00281{font-size:52.500000px;}
.fs7_c00281{font-size:57.750000px;}
.fs4_c00281{font-size:58.800000px;}
.fs2_c00281{font-size:60.900000px;}
.fs1_c00281{font-size:65.100000px;}
.fs3_c00281{font-size:68.250000px;}
.fs6_c00281{font-size:70.350000px;}
.fs5_c00281{font-size:71.400000px;}
.y0_c00281{bottom:0.000000px;}
.yc_c00281{bottom:390.145500px;}
.yb_c00281{bottom:407.424000px;}
.ya_c00281{bottom:424.885500px;}
.y9_c00281{bottom:441.865500px;}
.y8_c00281{bottom:459.330000px;}
.y7_c00281{bottom:476.670000px;}
.y6_c00281{bottom:493.830000px;}
.y5_c00281{bottom:510.570000px;}
.y4_c00281{bottom:528.120000px;}
.y3_c00281{bottom:545.430000px;}
.y2_c00281{bottom:562.261500px;}
.y1_c00281{bottom:578.748000px;}
.h2_c00281{height:52.500000px;}
.h9_c00281{height:57.750000px;}
.h6_c00281{height:58.800000px;}
.h4_c00281{height:60.900000px;}
.h3_c00281{height:65.100000px;}
.h5_c00281{height:68.250000px;}
.h8_c00281{height:70.350000px;}
.h7_c00281{height:71.400000px;}
.h1_c00281{height:618.750000px;}
.h0_c00281{height:619.050000px;}
.w0_c00281{width:359.100000px;}
.w1_c00281{width:359.250000px;}
.x0_c00281{left:0.000000px;}
.x27_c00281{left:42.120000px;}
.x2_c00281{left:43.470000px;}
.x35_c00281{left:60.750000px;}
.x28_c00281{left:62.100000px;}
.x12_c00281{left:65.610000px;}
.x1a_c00281{left:68.850000px;}
.x36_c00281{left:77.760000px;}
.x42_c00281{left:79.380000px;}
.x13_c00281{left:85.860000px;}
.x1b_c00281{left:86.940000px;}
.x21_c00281{left:89.640000px;}
.x3a_c00281{left:90.720000px;}
.x3f_c00281{left:91.800000px;}
.xa_c00281{left:93.690000px;}
.x29_c00281{left:99.360000px;}
.x3_c00281{left:100.710000px;}
.x2f_c00281{left:105.840000px;}
.x37_c00281{left:109.620000px;}
.x22_c00281{left:111.780000px;}
.x40_c00281{left:113.670000px;}
.xb_c00281{left:122.310000px;}
.x14_c00281{left:126.630000px;}
.x30_c00281{left:129.060000px;}
.x4_c00281{left:131.490000px;}
.x43_c00281{left:134.730000px;}
.xc_c00281{left:138.240000px;}
.x3b_c00281{left:149.580000px;}
.x2a_c00281{left:155.250000px;}
.x23_c00281{left:159.840000px;}
.x1c_c00281{left:163.620000px;}
.x2b_c00281{left:172.530000px;}
.x5_c00281{left:176.850000px;}
.x1_c00281{left:182.790000px;}
.x15_c00281{left:184.950000px;}
.xd_c00281{left:191.430000px;}
.x31_c00281{left:192.510000px;}
.x24_c00281{left:200.610000px;}
.x6_c00281{left:206.550000px;}
.xe_c00281{left:213.030000px;}
.x25_c00281{left:216.270000px;}
.x32_c00281{left:219.510000px;}
.x2c_c00281{left:222.210000px;}
.x1d_c00281{left:223.290000px;}
.x3c_c00281{left:225.450000px;}
.x38_c00281{left:226.530000px;}
.x7_c00281{left:234.090000px;}
.x2d_c00281{left:237.600000px;}
.xf_c00281{left:241.110000px;}
.x33_c00281{left:247.590000px;}
.x16_c00281{left:256.770000px;}
.x3d_c00281{left:262.170000px;}
.x41_c00281{left:267.840000px;}
.x1e_c00281{left:270.000000px;}
.x17_c00281{left:272.430000px;}
.x26_c00281{left:275.400000px;}
.x39_c00281{left:279.990000px;}
.x10_c00281{left:285.930000px;}
.x1f_c00281{left:289.170000px;}
.x2e_c00281{left:292.950000px;}
.x18_c00281{left:300.240000px;}
.x34_c00281{left:301.590000px;}
.x20_c00281{left:304.020000px;}
.x8_c00281{left:306.720000px;}
.x3e_c00281{left:319.680000px;}
.x11_c00281{left:321.030000px;}
.x19_c00281{left:324.810000px;}
.x9_c00281{left:332.100000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs0_c00281{font-size:46.666667pt;}
.fs7_c00281{font-size:51.333333pt;}
.fs4_c00281{font-size:52.266667pt;}
.fs2_c00281{font-size:54.133333pt;}
.fs1_c00281{font-size:57.866667pt;}
.fs3_c00281{font-size:60.666667pt;}
.fs6_c00281{font-size:62.533333pt;}
.fs5_c00281{font-size:63.466667pt;}
.y0_c00281{bottom:0.000000pt;}
.yc_c00281{bottom:346.796000pt;}
.yb_c00281{bottom:362.154667pt;}
.ya_c00281{bottom:377.676000pt;}
.y9_c00281{bottom:392.769333pt;}
.y8_c00281{bottom:408.293333pt;}
.y7_c00281{bottom:423.706667pt;}
.y6_c00281{bottom:438.960000pt;}
.y5_c00281{bottom:453.840000pt;}
.y4_c00281{bottom:469.440000pt;}
.y3_c00281{bottom:484.826667pt;}
.y2_c00281{bottom:499.788000pt;}
.y1_c00281{bottom:514.442667pt;}
.h2_c00281{height:46.666667pt;}
.h9_c00281{height:51.333333pt;}
.h6_c00281{height:52.266667pt;}
.h4_c00281{height:54.133333pt;}
.h3_c00281{height:57.866667pt;}
.h5_c00281{height:60.666667pt;}
.h8_c00281{height:62.533333pt;}
.h7_c00281{height:63.466667pt;}
.h1_c00281{height:550.000000pt;}
.h0_c00281{height:550.266667pt;}
.w0_c00281{width:319.200000pt;}
.w1_c00281{width:319.333333pt;}
.x0_c00281{left:0.000000pt;}
.x27_c00281{left:37.440000pt;}
.x2_c00281{left:38.640000pt;}
.x35_c00281{left:54.000000pt;}
.x28_c00281{left:55.200000pt;}
.x12_c00281{left:58.320000pt;}
.x1a_c00281{left:61.200000pt;}
.x36_c00281{left:69.120000pt;}
.x42_c00281{left:70.560000pt;}
.x13_c00281{left:76.320000pt;}
.x1b_c00281{left:77.280000pt;}
.x21_c00281{left:79.680000pt;}
.x3a_c00281{left:80.640000pt;}
.x3f_c00281{left:81.600000pt;}
.xa_c00281{left:83.280000pt;}
.x29_c00281{left:88.320000pt;}
.x3_c00281{left:89.520000pt;}
.x2f_c00281{left:94.080000pt;}
.x37_c00281{left:97.440000pt;}
.x22_c00281{left:99.360000pt;}
.x40_c00281{left:101.040000pt;}
.xb_c00281{left:108.720000pt;}
.x14_c00281{left:112.560000pt;}
.x30_c00281{left:114.720000pt;}
.x4_c00281{left:116.880000pt;}
.x43_c00281{left:119.760000pt;}
.xc_c00281{left:122.880000pt;}
.x3b_c00281{left:132.960000pt;}
.x2a_c00281{left:138.000000pt;}
.x23_c00281{left:142.080000pt;}
.x1c_c00281{left:145.440000pt;}
.x2b_c00281{left:153.360000pt;}
.x5_c00281{left:157.200000pt;}
.x1_c00281{left:162.480000pt;}
.x15_c00281{left:164.400000pt;}
.xd_c00281{left:170.160000pt;}
.x31_c00281{left:171.120000pt;}
.x24_c00281{left:178.320000pt;}
.x6_c00281{left:183.600000pt;}
.xe_c00281{left:189.360000pt;}
.x25_c00281{left:192.240000pt;}
.x32_c00281{left:195.120000pt;}
.x2c_c00281{left:197.520000pt;}
.x1d_c00281{left:198.480000pt;}
.x3c_c00281{left:200.400000pt;}
.x38_c00281{left:201.360000pt;}
.x7_c00281{left:208.080000pt;}
.x2d_c00281{left:211.200000pt;}
.xf_c00281{left:214.320000pt;}
.x33_c00281{left:220.080000pt;}
.x16_c00281{left:228.240000pt;}
.x3d_c00281{left:233.040000pt;}
.x41_c00281{left:238.080000pt;}
.x1e_c00281{left:240.000000pt;}
.x17_c00281{left:242.160000pt;}
.x26_c00281{left:244.800000pt;}
.x39_c00281{left:248.880000pt;}
.x10_c00281{left:254.160000pt;}
.x1f_c00281{left:257.040000pt;}
.x2e_c00281{left:260.400000pt;}
.x18_c00281{left:266.880000pt;}
.x34_c00281{left:268.080000pt;}
.x20_c00281{left:270.240000pt;}
.x8_c00281{left:272.640000pt;}
.x3e_c00281{left:284.160000pt;}
.x11_c00281{left:285.360000pt;}
.x19_c00281{left:288.720000pt;}
.x9_c00281{left:295.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00282 {
    display:none;
  }
  .loading-indicator_c00282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00282 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00282 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00282" -> "#page-container .classname_c00282")
 */
.pf_c00282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00282 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00282 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00282 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00282 {overflow:visible;}
  }
}
.c_c00282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00282 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00282:after { /* webkit #35443 */
  content: '';
}
.t_c00282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00282 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00282 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00282 { /* info for Javascript */
  display:none;
}
.l_c00282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00282:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00282 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00282.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00282;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00282{transform:matrix(0.042145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042145,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.066259,-0.000928,0.003500,0.249976,0,0);-ms-transform:matrix(0.066259,-0.000928,0.003500,0.249976,0,0);-webkit-transform:matrix(0.066259,-0.000928,0.003500,0.249976,0,0);}
.m0_c00282{transform:matrix(0.126480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126480,0.000000,0.000000,0.250000,0,0);}
.m93_c00282{transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141245,0.000000,0.000000,0.250000,0,0);}
.m49_c00282{transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);}
.m5e_c00282{transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);}
.m4b_c00282{transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);}
.m57_c00282{transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);}
.m67_c00282{transform:matrix(0.156360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156360,0.000000,0.000000,0.250000,0,0);}
.m62_c00282{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.m5f_c00282{transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.164449,-0.002302,0.003500,0.249976,0,0);-ms-transform:matrix(0.164449,-0.002302,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164449,-0.002302,0.003500,0.249976,0,0);}
.m5b_c00282{transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);}
.mb0_c00282{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.m99_c00282{transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);}
.m69_c00282{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.ma6_c00282{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m6d_c00282{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m47_c00282{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m51_c00282{transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);}
.ma9_c00282{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m53_c00282{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m8e_c00282{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m64_c00282{transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);}
.m4e_c00282{transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175720,0.000000,0.000000,0.250000,0,0);}
.m5c_c00282{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m52_c00282{transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);}
.m72_c00282{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.maa_c00282{transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);}
.m9f_c00282{transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);}
.m65_c00282{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.ma7_c00282{transform:matrix(0.178090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178090,0.000000,0.000000,0.250000,0,0);}
.m50_c00282{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.179472,-0.002513,0.003500,0.249976,0,0);-ms-transform:matrix(0.179472,-0.002513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179472,-0.002513,0.003500,0.249976,0,0);}
.m39_c00282{transform:matrix(0.181965,-0.003821,0.005249,0.249945,0,0);-ms-transform:matrix(0.181965,-0.003821,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181965,-0.003821,0.005249,0.249945,0,0);}
.m21_c00282{transform:matrix(0.182242,-0.002551,0.003500,0.249976,0,0);-ms-transform:matrix(0.182242,-0.002551,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182242,-0.002551,0.003500,0.249976,0,0);}
.m77_c00282{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m85_c00282{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00282{transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);}
.m48_c00282{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.m90_c00282{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m9c_c00282{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m37_c00282{transform:matrix(0.185214,-0.003889,0.005249,0.249945,0,0);-ms-transform:matrix(0.185214,-0.003889,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185214,-0.003889,0.005249,0.249945,0,0);}
.m8f_c00282{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.mb1_c00282{transform:matrix(0.185575,0.003340,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185575,0.003340,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185575,0.003340,-0.004499,0.249960,0,0);}
.mb7_c00282{transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);}
.m30_c00282{transform:matrix(0.186509,-0.003917,0.005249,0.249945,0,0);-ms-transform:matrix(0.186509,-0.003917,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186509,-0.003917,0.005249,0.249945,0,0);}
.m91_c00282{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m5d_c00282{transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);}
.m9d_c00282{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.190963,-0.004010,0.005249,0.249945,0,0);-ms-transform:matrix(0.190963,-0.004010,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190963,-0.004010,0.005249,0.249945,0,0);}
.m8c_c00282{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m78_c00282{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.m4a_c00282{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.192161,-0.002690,0.003500,0.249976,0,0);-ms-transform:matrix(0.192161,-0.002690,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192161,-0.002690,0.003500,0.249976,0,0);}
.m35_c00282{transform:matrix(0.192733,-0.004047,0.005249,0.249945,0,0);-ms-transform:matrix(0.192733,-0.004047,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192733,-0.004047,0.005249,0.249945,0,0);}
.m61_c00282{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m71_c00282{transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194065,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.194101,-0.002717,0.003500,0.249976,0,0);-ms-transform:matrix(0.194101,-0.002717,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194101,-0.002717,0.003500,0.249976,0,0);}
.m6a_c00282{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00282{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m89_c00282{transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);}
.m9b_c00282{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.195281,-0.002734,0.003500,0.249976,0,0);-ms-transform:matrix(0.195281,-0.002734,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195281,-0.002734,0.003500,0.249976,0,0);}
.m6c_c00282{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m3c_c00282{transform:matrix(0.196576,-0.002359,0.003000,0.249982,0,0);-ms-transform:matrix(0.196576,-0.002359,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196576,-0.002359,0.003000,0.249982,0,0);}
.m4d_c00282{transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);}
.m66_c00282{transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);}
.m8b_c00282{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m44_c00282{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.197951,-0.002771,0.003500,0.249976,0,0);-ms-transform:matrix(0.197951,-0.002771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197951,-0.002771,0.003500,0.249976,0,0);}
.m83_c00282{transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00282{transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);}
.m7e_c00282{transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199155,0.000000,0.000000,0.250000,0,0);}
.m96_c00282{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.200340,-0.002805,0.003500,0.249976,0,0);-ms-transform:matrix(0.200340,-0.002805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200340,-0.002805,0.003500,0.249976,0,0);}
.m98_c00282{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.202125,-0.002830,0.003500,0.249976,0,0);-ms-transform:matrix(0.202125,-0.002830,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202125,-0.002830,0.003500,0.249976,0,0);}
.m59_c00282{transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202240,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.202970,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.202970,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202970,-0.002842,0.003500,0.249976,0,0);}
.m1c_c00282{transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);}
.m73_c00282{transform:matrix(0.203365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203365,0.000000,0.000000,0.250000,0,0);}
.ma3_c00282{transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);}
.m63_c00282{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.ma5_c00282{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.204710,-0.002866,0.003500,0.249976,0,0);-ms-transform:matrix(0.204710,-0.002866,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204710,-0.002866,0.003500,0.249976,0,0);}
.m2e_c00282{transform:matrix(0.204774,-0.004095,0.004999,0.249950,0,0);-ms-transform:matrix(0.204774,-0.004095,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204774,-0.004095,0.004999,0.249950,0,0);}
.m68_c00282{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00282{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m6e_c00282{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m45_c00282{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m97_c00282{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00282{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.maf_c00282{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m60_c00282{transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);}
.m9a_c00282{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m6f_c00282{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m22_c00282{transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);-ms-transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);}
.m70_c00282{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m56_c00282{transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208160,0.000000,0.000000,0.250000,0,0);}
.m5a_c00282{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.m7f_c00282{transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);}
.m86_c00282{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);-ms-transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);}
.m1e_c00282{transform:matrix(0.209319,-0.002930,0.003500,0.249976,0,0);-ms-transform:matrix(0.209319,-0.002930,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209319,-0.002930,0.003500,0.249976,0,0);}
.m79_c00282{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.210453,-0.004209,0.004999,0.249950,0,0);-ms-transform:matrix(0.210453,-0.004209,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210453,-0.004209,0.004999,0.249950,0,0);}
.mb3_c00282{transform:matrix(0.210836,0.003795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210836,0.003795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210836,0.003795,-0.004499,0.249960,0,0);}
.m3e_c00282{transform:matrix(0.211020,-0.002532,0.003000,0.249982,0,0);-ms-transform:matrix(0.211020,-0.002532,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211020,-0.002532,0.003000,0.249982,0,0);}
.m87_c00282{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mae_c00282{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.m8a_c00282{transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00282{transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212496,0.003825,-0.004499,0.249960,0,0);}
.m4c_c00282{transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.213714,-0.002992,0.003500,0.249976,0,0);-ms-transform:matrix(0.213714,-0.002992,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213714,-0.002992,0.003500,0.249976,0,0);}
.ma0_c00282{transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);}
.m41_c00282{transform:matrix(0.214185,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214185,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214185,-0.002570,0.003000,0.249982,0,0);}
.m82_c00282{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.215452,-0.004525,0.005249,0.249945,0,0);-ms-transform:matrix(0.215452,-0.004525,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215452,-0.004525,0.005249,0.249945,0,0);}
.mad_c00282{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m81_c00282{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00282{transform:matrix(0.216815,0.003903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216815,0.003903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216815,0.003903,-0.004499,0.249960,0,0);}
.m3_c00282{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.m24_c00282{transform:matrix(0.217839,-0.003050,0.003500,0.249976,0,0);-ms-transform:matrix(0.217839,-0.003050,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217839,-0.003050,0.003500,0.249976,0,0);}
.m58_c00282{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.ma4_c00282{transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217970,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m9e_c00282{transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219334,-0.003071,0.003500,0.249976,0,0);}
.m88_c00282{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.m92_c00282{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00282{transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);}
.mab_c00282{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m80_c00282{transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.223086,-0.004685,0.005249,0.249945,0,0);-ms-transform:matrix(0.223086,-0.004685,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223086,-0.004685,0.005249,0.249945,0,0);}
.m8d_c00282{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.224193,-0.003139,0.003500,0.249976,0,0);-ms-transform:matrix(0.224193,-0.003139,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224193,-0.003139,0.003500,0.249976,0,0);}
.m23_c00282{transform:matrix(0.225008,-0.003150,0.003500,0.249976,0,0);-ms-transform:matrix(0.225008,-0.003150,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225008,-0.003150,0.003500,0.249976,0,0);}
.m26_c00282{transform:matrix(0.225388,-0.003155,0.003500,0.249976,0,0);-ms-transform:matrix(0.225388,-0.003155,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225388,-0.003155,0.003500,0.249976,0,0);}
.m28_c00282{transform:matrix(0.227969,-0.004559,0.004999,0.249950,0,0);-ms-transform:matrix(0.227969,-0.004559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227969,-0.004559,0.004999,0.249950,0,0);}
.mb6_c00282{transform:matrix(0.228988,0.004122,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228988,0.004122,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228988,0.004122,-0.004499,0.249960,0,0);}
.ma1_c00282{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m3d_c00282{transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);-ms-transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229363,-0.002752,0.003000,0.249982,0,0);}
.m2c_c00282{transform:matrix(0.229374,-0.004587,0.004999,0.249950,0,0);-ms-transform:matrix(0.229374,-0.004587,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229374,-0.004587,0.004999,0.249950,0,0);}
.m94_c00282{transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);}
.m95_c00282{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m54_c00282{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m75_c00282{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.236043,-0.004957,0.005249,0.249945,0,0);-ms-transform:matrix(0.236043,-0.004957,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236043,-0.004957,0.005249,0.249945,0,0);}
.m55_c00282{transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(0.237763,-0.004993,0.005249,0.249945,0,0);-ms-transform:matrix(0.237763,-0.004993,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237763,-0.004993,0.005249,0.249945,0,0);}
.m29_c00282{transform:matrix(0.238307,-0.004766,0.004999,0.249950,0,0);-ms-transform:matrix(0.238307,-0.004766,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238307,-0.004766,0.004999,0.249950,0,0);}
.m3f_c00282{transform:matrix(0.238993,-0.002868,0.003000,0.249982,0,0);-ms-transform:matrix(0.238993,-0.002868,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238993,-0.002868,0.003000,0.249982,0,0);}
.mac_c00282{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m74_c00282{transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.239617,-0.005032,0.005249,0.249945,0,0);-ms-transform:matrix(0.239617,-0.005032,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239617,-0.005032,0.005249,0.249945,0,0);}
.m76_c00282{transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.247680,-0.004954,0.004999,0.249950,0,0);-ms-transform:matrix(0.247680,-0.004954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247680,-0.004954,0.004999,0.249950,0,0);}
.mb4_c00282{transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);}
.m19_c00282{transform:matrix(0.251120,-0.003516,0.003500,0.249976,0,0);-ms-transform:matrix(0.251120,-0.003516,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251120,-0.003516,0.003500,0.249976,0,0);}
.m32_c00282{transform:matrix(0.251180,-0.005275,0.005249,0.249945,0,0);-ms-transform:matrix(0.251180,-0.005275,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251180,-0.005275,0.005249,0.249945,0,0);}
.m43_c00282{transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);}
.m42_c00282{transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.258840,-0.003624,0.003500,0.249976,0,0);-ms-transform:matrix(0.258840,-0.003624,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258840,-0.003624,0.003500,0.249976,0,0);}
.m84_c00282{transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);}
.m40_c00282{transform:matrix(0.260766,-0.003129,0.003000,0.249982,0,0);-ms-transform:matrix(0.260766,-0.003129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260766,-0.003129,0.003000,0.249982,0,0);}
.ma2_c00282{transform:matrix(0.265520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265520,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.278369,-0.005846,0.005249,0.249945,0,0);-ms-transform:matrix(0.278369,-0.005846,0.005249,0.249945,0,0);-webkit-transform:matrix(0.278369,-0.005846,0.005249,0.249945,0,0);}
.m2d_c00282{transform:matrix(0.281119,-0.005622,0.004999,0.249950,0,0);-ms-transform:matrix(0.281119,-0.005622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281119,-0.005622,0.004999,0.249950,0,0);}
.m3b_c00282{transform:matrix(0.281525,-0.003378,0.003000,0.249982,0,0);-ms-transform:matrix(0.281525,-0.003378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281525,-0.003378,0.003000,0.249982,0,0);}
.m9_c00282{transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.305130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305130,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);}
.m46_c00282{transform:matrix(0.374445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374445,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.414550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414550,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.414975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414975,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.441705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441705,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.449880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449880,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.460230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460230,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.569860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569860,0.000000,0.000000,0.250000,0,0);}
.ma8_c00282{transform:matrix(0.573750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573750,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.590385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590385,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
.fc0_c00282{color:transparent;}
.fs3_c00282{font-size:23.100000px;}
.fs2_c00282{font-size:51.450000px;}
.fs10_c00282{font-size:57.750000px;}
.fsa_c00282{font-size:58.800000px;}
.fs12_c00282{font-size:58.809525px;}
.fse_c00282{font-size:59.850000px;}
.fs9_c00282{font-size:60.904385px;}
.fs6_c00282{font-size:60.912179px;}
.fs7_c00282{font-size:60.913427px;}
.fsf_c00282{font-size:61.950000px;}
.fs5_c00282{font-size:63.006174px;}
.fs8_c00282{font-size:63.013890px;}
.fs11_c00282{font-size:64.050000px;}
.fsc_c00282{font-size:65.100000px;}
.fsd_c00282{font-size:66.150000px;}
.fs4_c00282{font-size:67.206585px;}
.fsb_c00282{font-size:71.400000px;}
.fs1_c00282{font-size:97.650000px;}
.fs0_c00282{font-size:98.700000px;}
.y0_c00282{bottom:0.000000px;}
.y74_c00282{bottom:32.649402px;}
.y73_c00282{bottom:33.637656px;}
.y72_c00282{bottom:34.006530px;}
.y71_c00282{bottom:34.817232px;}
.y70_c00282{bottom:35.999157px;}
.y6f_c00282{bottom:36.402564px;}
.y6e_c00282{bottom:37.263000px;}
.y6d_c00282{bottom:50.793000px;}
.y6c_c00282{bottom:51.235500px;}
.y6b_c00282{bottom:51.450000px;}
.y6a_c00282{bottom:52.047000px;}
.y69_c00282{bottom:52.633500px;}
.y68_c00282{bottom:52.912500px;}
.y67_c00282{bottom:53.700000px;}
.y66_c00282{bottom:53.904000px;}
.y65_c00282{bottom:54.276000px;}
.y64_c00282{bottom:68.430000px;}
.y63_c00282{bottom:68.841000px;}
.y62_c00282{bottom:70.020000px;}
.y61_c00282{bottom:71.512500px;}
.y60_c00282{bottom:71.970000px;}
.y5f_c00282{bottom:72.636000px;}
.y5e_c00282{bottom:86.464500px;}
.y5d_c00282{bottom:102.310500px;}
.y5c_c00282{bottom:102.786000px;}
.y5b_c00282{bottom:103.555500px;}
.y5a_c00282{bottom:104.173500px;}
.y59_c00282{bottom:105.084000px;}
.y58_c00282{bottom:105.780000px;}
.y57_c00282{bottom:106.116000px;}
.y56_c00282{bottom:119.676000px;}
.y55_c00282{bottom:134.940000px;}
.y54_c00282{bottom:135.481500px;}
.y53_c00282{bottom:135.988500px;}
.y52_c00282{bottom:137.445000px;}
.y51_c00282{bottom:138.855000px;}
.y50_c00282{bottom:139.306500px;}
.y4f_c00282{bottom:139.866000px;}
.y4e_c00282{bottom:151.152000px;}
.y4d_c00282{bottom:152.086500px;}
.y4c_c00282{bottom:152.415000px;}
.y4b_c00282{bottom:153.910500px;}
.y4a_c00282{bottom:154.657500px;}
.y49_c00282{bottom:156.360000px;}
.y48_c00282{bottom:157.417500px;}
.y47_c00282{bottom:170.068500px;}
.y46_c00282{bottom:187.708500px;}
.y45_c00282{bottom:205.351500px;}
.y44_c00282{bottom:222.568500px;}
.y43_c00282{bottom:240.601500px;}
.y42_c00282{bottom:257.134500px;}
.y41_c00282{bottom:274.563000px;}
.y40_c00282{bottom:309.451500px;}
.y39_c00282{bottom:325.081500px;}
.y3a_c00282{bottom:326.008032px;}
.y3b_c00282{bottom:326.361210px;}
.y3c_c00282{bottom:327.135588px;}
.y3d_c00282{bottom:327.430482px;}
.y3e_c00282{bottom:328.265952px;}
.y3f_c00282{bottom:328.454520px;}
.y33_c00282{bottom:340.740207px;}
.y34_c00282{bottom:341.250876px;}
.y35_c00282{bottom:343.044448px;}
.y36_c00282{bottom:343.491088px;}
.y37_c00282{bottom:344.696721px;}
.y38_c00282{bottom:345.084719px;}
.y2d_c00282{bottom:356.676000px;}
.y2e_c00282{bottom:357.960916px;}
.y2f_c00282{bottom:358.524042px;}
.y30_c00282{bottom:360.004416px;}
.y31_c00282{bottom:361.115956px;}
.y32_c00282{bottom:361.586567px;}
.y25_c00282{bottom:373.684500px;}
.y26_c00282{bottom:374.170290px;}
.y27_c00282{bottom:374.845380px;}
.y28_c00282{bottom:375.671400px;}
.y29_c00282{bottom:376.238490px;}
.y2a_c00282{bottom:377.016810px;}
.y2b_c00282{bottom:378.669300px;}
.y2c_c00282{bottom:379.102200px;}
.y1f_c00282{bottom:390.419775px;}
.y20_c00282{bottom:390.951810px;}
.y21_c00282{bottom:391.141797px;}
.y22_c00282{bottom:392.090745px;}
.y23_c00282{bottom:393.296649px;}
.y24_c00282{bottom:394.146687px;}
.y16_c00282{bottom:407.162613px;}
.y17_c00282{bottom:407.933646px;}
.y18_c00282{bottom:408.188529px;}
.y19_c00282{bottom:409.185576px;}
.y1a_c00282{bottom:409.919688px;}
.y1b_c00282{bottom:410.284146px;}
.y1c_c00282{bottom:410.724744px;}
.y1d_c00282{bottom:411.474498px;}
.y1e_c00282{bottom:411.901932px;}
.ye_c00282{bottom:424.713000px;}
.yf_c00282{bottom:425.559048px;}
.y10_c00282{bottom:425.846454px;}
.y11_c00282{bottom:426.160278px;}
.y12_c00282{bottom:427.127118px;}
.y13_c00282{bottom:427.411647px;}
.y14_c00282{bottom:428.335920px;}
.y15_c00282{bottom:428.424918px;}
.yd_c00282{bottom:478.558500px;}
.y5_c00282{bottom:502.746000px;}
.y6_c00282{bottom:502.980000px;}
.y7_c00282{bottom:503.605500px;}
.y8_c00282{bottom:504.468000px;}
.y9_c00282{bottom:505.312500px;}
.ya_c00282{bottom:505.933500px;}
.yb_c00282{bottom:507.142500px;}
.yc_c00282{bottom:507.574500px;}
.y2_c00282{bottom:544.057500px;}
.y3_c00282{bottom:546.012000px;}
.y4_c00282{bottom:547.720500px;}
.y1_c00282{bottom:579.018000px;}
.h5_c00282{height:23.100000px;}
.h4_c00282{height:51.450000px;}
.h12_c00282{height:57.750000px;}
.hc_c00282{height:58.800000px;}
.h14_c00282{height:58.809525px;}
.h10_c00282{height:59.850000px;}
.hb_c00282{height:60.904385px;}
.h8_c00282{height:60.912179px;}
.h9_c00282{height:60.913427px;}
.h11_c00282{height:61.950000px;}
.h7_c00282{height:63.006174px;}
.ha_c00282{height:63.013890px;}
.h13_c00282{height:64.050000px;}
.he_c00282{height:65.100000px;}
.hf_c00282{height:66.150000px;}
.h6_c00282{height:67.206585px;}
.hd_c00282{height:71.400000px;}
.h3_c00282{height:97.650000px;}
.h2_c00282{height:98.700000px;}
.h1_c00282{height:618.750000px;}
.h0_c00282{height:619.050000px;}
.w0_c00282{width:359.100000px;}
.w1_c00282{width:359.250000px;}
.x0_c00282{left:0.000000px;}
.x5a_c00282{left:29.700000px;}
.x10_c00282{left:32.338500px;}
.x61_c00282{left:33.478500px;}
.x5_c00282{left:35.133000px;}
.x2b_c00282{left:36.987000px;}
.x17_c00282{left:40.165191px;}
.x20_c00282{left:41.482803px;}
.x30_c00282{left:44.191680px;}
.x3c_c00282{left:45.360000px;}
.x6_c00282{left:46.840500px;}
.x24_c00282{left:48.303000px;}
.x73_c00282{left:52.744500px;}
.x65_c00282{left:57.889500px;}
.x47_c00282{left:63.180000px;}
.x52_c00282{left:66.150000px;}
.x5b_c00282{left:70.200000px;}
.x25_c00282{left:72.592500px;}
.x6c_c00282{left:75.526500px;}
.x7_c00282{left:78.121500px;}
.x21_c00282{left:79.485303px;}
.x53_c00282{left:80.730000px;}
.x18_c00282{left:83.022297px;}
.x4c_c00282{left:85.860000px;}
.x2_c00282{left:88.690500px;}
.x11_c00282{left:92.770500px;}
.x42_c00282{left:94.230000px;}
.x19_c00282{left:97.155999px;}
.x2c_c00282{left:98.173500px;}
.x62_c00282{left:99.898500px;}
.x3d_c00282{left:102.330000px;}
.x6d_c00282{left:104.100000px;}
.x26_c00282{left:106.347000px;}
.x66_c00282{left:107.598000px;}
.x4d_c00282{left:109.620000px;}
.x3a_c00282{left:110.970000px;}
.x12_c00282{left:113.299500px;}
.xd_c00282{left:114.750000px;}
.x8_c00282{left:121.276500px;}
.x3e_c00282{left:122.310000px;}
.x2d_c00282{left:124.989000px;}
.x5c_c00282{left:127.440000px;}
.x3b_c00282{left:128.790000px;}
.x4e_c00282{left:132.300000px;}
.xe_c00282{left:134.730000px;}
.x60_c00282{left:138.922500px;}
.x3f_c00282{left:141.480000px;}
.x35_c00282{left:142.701000px;}
.x27_c00282{left:147.648000px;}
.x43_c00282{left:151.200000px;}
.x1a_c00282{left:152.513391px;}
.x56_c00282{left:155.250000px;}
.x48_c00282{left:157.140000px;}
.xf_c00282{left:160.650000px;}
.x9_c00282{left:163.471500px;}
.x1_c00282{left:167.940000px;}
.x54_c00282{left:169.020000px;}
.x6e_c00282{left:171.091500px;}
.x31_c00282{left:172.211244px;}
.x28_c00282{left:176.002500px;}
.x69_c00282{left:178.201500px;}
.x4f_c00282{left:182.790000px;}
.x49_c00282{left:186.570000px;}
.x74_c00282{left:188.620500px;}
.x3_c00282{left:191.559000px;}
.x1b_c00282{left:193.269102px;}
.xa_c00282{left:194.514000px;}
.x32_c00282{left:197.052819px;}
.x5d_c00282{left:200.880000px;}
.x13_c00282{left:204.775500px;}
.x36_c00282{left:207.232500px;}
.x44_c00282{left:212.220000px;}
.x1c_c00282{left:213.514968px;}
.x29_c00282{left:214.918500px;}
.x67_c00282{left:216.867000px;}
.x6f_c00282{left:219.945000px;}
.x57_c00282{left:221.130000px;}
.x63_c00282{left:222.208500px;}
.x14_c00282{left:225.099000px;}
.x50_c00282{left:227.070000px;}
.x5e_c00282{left:228.420000px;}
.x37_c00282{left:231.807000px;}
.x40_c00282{left:234.090000px;}
.x45_c00282{left:236.520000px;}
.x1d_c00282{left:238.020603px;}
.x4a_c00282{left:242.190000px;}
.x64_c00282{left:245.158500px;}
.x22_c00282{left:246.973803px;}
.x2e_c00282{left:248.413500px;}
.x58_c00282{left:250.290000px;}
.x51_c00282{left:252.450000px;}
.xb_c00282{left:254.953500px;}
.x5f_c00282{left:256.230000px;}
.x6a_c00282{left:262.171500px;}
.x33_c00282{left:264.039540px;}
.x70_c00282{left:269.644500px;}
.x2f_c00282{left:270.823500px;}
.x59_c00282{left:273.510000px;}
.xc_c00282{left:276.577500px;}
.x55_c00282{left:278.640000px;}
.x1e_c00282{left:279.679272px;}
.x4_c00282{left:281.467500px;}
.x34_c00282{left:285.588395px;}
.x71_c00282{left:287.464500px;}
.x6b_c00282{left:289.981500px;}
.x15_c00282{left:291.118500px;}
.x16_c00282{left:297.475500px;}
.x46_c00282{left:299.430000px;}
.x38_c00282{left:301.429500px;}
.x1f_c00282{left:303.458949px;}
.x68_c00282{left:305.718000px;}
.x23_c00282{left:307.690803px;}
.x41_c00282{left:309.150000px;}
.x39_c00282{left:317.143500px;}
.x2a_c00282{left:319.188000px;}
.x4b_c00282{left:322.380000px;}
.x72_c00282{left:324.400500px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.fs3_c00282{font-size:20.533333pt;}
.fs2_c00282{font-size:45.733333pt;}
.fs10_c00282{font-size:51.333333pt;}
.fsa_c00282{font-size:52.266667pt;}
.fs12_c00282{font-size:52.275133pt;}
.fse_c00282{font-size:53.200000pt;}
.fs9_c00282{font-size:54.137231pt;}
.fs6_c00282{font-size:54.144159pt;}
.fs7_c00282{font-size:54.145268pt;}
.fsf_c00282{font-size:55.066667pt;}
.fs5_c00282{font-size:56.005488pt;}
.fs8_c00282{font-size:56.012347pt;}
.fs11_c00282{font-size:56.933333pt;}
.fsc_c00282{font-size:57.866667pt;}
.fsd_c00282{font-size:58.800000pt;}
.fs4_c00282{font-size:59.739187pt;}
.fsb_c00282{font-size:63.466667pt;}
.fs1_c00282{font-size:86.800000pt;}
.fs0_c00282{font-size:87.733333pt;}
.y0_c00282{bottom:0.000000pt;}
.y74_c00282{bottom:29.021691pt;}
.y73_c00282{bottom:29.900139pt;}
.y72_c00282{bottom:30.228027pt;}
.y71_c00282{bottom:30.948651pt;}
.y70_c00282{bottom:31.999251pt;}
.y6f_c00282{bottom:32.357835pt;}
.y6e_c00282{bottom:33.122667pt;}
.y6d_c00282{bottom:45.149333pt;}
.y6c_c00282{bottom:45.542667pt;}
.y6b_c00282{bottom:45.733333pt;}
.y6a_c00282{bottom:46.264000pt;}
.y69_c00282{bottom:46.785333pt;}
.y68_c00282{bottom:47.033333pt;}
.y67_c00282{bottom:47.733333pt;}
.y66_c00282{bottom:47.914667pt;}
.y65_c00282{bottom:48.245333pt;}
.y64_c00282{bottom:60.826667pt;}
.y63_c00282{bottom:61.192000pt;}
.y62_c00282{bottom:62.240000pt;}
.y61_c00282{bottom:63.566667pt;}
.y60_c00282{bottom:63.973333pt;}
.y5f_c00282{bottom:64.565333pt;}
.y5e_c00282{bottom:76.857333pt;}
.y5d_c00282{bottom:90.942667pt;}
.y5c_c00282{bottom:91.365333pt;}
.y5b_c00282{bottom:92.049333pt;}
.y5a_c00282{bottom:92.598667pt;}
.y59_c00282{bottom:93.408000pt;}
.y58_c00282{bottom:94.026667pt;}
.y57_c00282{bottom:94.325333pt;}
.y56_c00282{bottom:106.378667pt;}
.y55_c00282{bottom:119.946667pt;}
.y54_c00282{bottom:120.428000pt;}
.y53_c00282{bottom:120.878667pt;}
.y52_c00282{bottom:122.173333pt;}
.y51_c00282{bottom:123.426667pt;}
.y50_c00282{bottom:123.828000pt;}
.y4f_c00282{bottom:124.325333pt;}
.y4e_c00282{bottom:134.357333pt;}
.y4d_c00282{bottom:135.188000pt;}
.y4c_c00282{bottom:135.480000pt;}
.y4b_c00282{bottom:136.809333pt;}
.y4a_c00282{bottom:137.473333pt;}
.y49_c00282{bottom:138.986667pt;}
.y48_c00282{bottom:139.926667pt;}
.y47_c00282{bottom:151.172000pt;}
.y46_c00282{bottom:166.852000pt;}
.y45_c00282{bottom:182.534667pt;}
.y44_c00282{bottom:197.838667pt;}
.y43_c00282{bottom:213.868000pt;}
.y42_c00282{bottom:228.564000pt;}
.y41_c00282{bottom:244.056000pt;}
.y40_c00282{bottom:275.068000pt;}
.y39_c00282{bottom:288.961333pt;}
.y3a_c00282{bottom:289.784917pt;}
.y3b_c00282{bottom:290.098853pt;}
.y3c_c00282{bottom:290.787189pt;}
.y3d_c00282{bottom:291.049317pt;}
.y3e_c00282{bottom:291.791957pt;}
.y3f_c00282{bottom:291.959573pt;}
.y33_c00282{bottom:302.880184pt;}
.y34_c00282{bottom:303.334112pt;}
.y35_c00282{bottom:304.928399pt;}
.y36_c00282{bottom:305.325412pt;}
.y37_c00282{bottom:306.397085pt;}
.y38_c00282{bottom:306.741972pt;}
.y2d_c00282{bottom:317.045333pt;}
.y2e_c00282{bottom:318.187481pt;}
.y2f_c00282{bottom:318.688037pt;}
.y30_c00282{bottom:320.003925pt;}
.y31_c00282{bottom:320.991961pt;}
.y32_c00282{bottom:321.410281pt;}
.y25_c00282{bottom:332.164000pt;}
.y26_c00282{bottom:332.595813pt;}
.y27_c00282{bottom:333.195893pt;}
.y28_c00282{bottom:333.930133pt;}
.y29_c00282{bottom:334.434213pt;}
.y2a_c00282{bottom:335.126053pt;}
.y2b_c00282{bottom:336.594933pt;}
.y2c_c00282{bottom:336.979733pt;}
.y1f_c00282{bottom:347.039800pt;}
.y20_c00282{bottom:347.512720pt;}
.y21_c00282{bottom:347.681597pt;}
.y22_c00282{bottom:348.525107pt;}
.y23_c00282{bottom:349.597021pt;}
.y24_c00282{bottom:350.352611pt;}
.y16_c00282{bottom:361.922323pt;}
.y17_c00282{bottom:362.607685pt;}
.y18_c00282{bottom:362.834248pt;}
.y19_c00282{bottom:363.720512pt;}
.y1a_c00282{bottom:364.373056pt;}
.y1b_c00282{bottom:364.697019pt;}
.y1c_c00282{bottom:365.088661pt;}
.y1d_c00282{bottom:365.755109pt;}
.y1e_c00282{bottom:366.135051pt;}
.ye_c00282{bottom:377.522667pt;}
.yf_c00282{bottom:378.274709pt;}
.y10_c00282{bottom:378.530181pt;}
.y11_c00282{bottom:378.809136pt;}
.y12_c00282{bottom:379.668549pt;}
.y13_c00282{bottom:379.921464pt;}
.y14_c00282{bottom:380.743040pt;}
.y15_c00282{bottom:380.822149pt;}
.yd_c00282{bottom:425.385333pt;}
.y5_c00282{bottom:446.885333pt;}
.y6_c00282{bottom:447.093333pt;}
.y7_c00282{bottom:447.649333pt;}
.y8_c00282{bottom:448.416000pt;}
.y9_c00282{bottom:449.166667pt;}
.ya_c00282{bottom:449.718667pt;}
.yb_c00282{bottom:450.793333pt;}
.yc_c00282{bottom:451.177333pt;}
.y2_c00282{bottom:483.606667pt;}
.y3_c00282{bottom:485.344000pt;}
.y4_c00282{bottom:486.862667pt;}
.y1_c00282{bottom:514.682667pt;}
.h5_c00282{height:20.533333pt;}
.h4_c00282{height:45.733333pt;}
.h12_c00282{height:51.333333pt;}
.hc_c00282{height:52.266667pt;}
.h14_c00282{height:52.275133pt;}
.h10_c00282{height:53.200000pt;}
.hb_c00282{height:54.137231pt;}
.h8_c00282{height:54.144159pt;}
.h9_c00282{height:54.145268pt;}
.h11_c00282{height:55.066667pt;}
.h7_c00282{height:56.005488pt;}
.ha_c00282{height:56.012347pt;}
.h13_c00282{height:56.933333pt;}
.he_c00282{height:57.866667pt;}
.hf_c00282{height:58.800000pt;}
.h6_c00282{height:59.739187pt;}
.hd_c00282{height:63.466667pt;}
.h3_c00282{height:86.800000pt;}
.h2_c00282{height:87.733333pt;}
.h1_c00282{height:550.000000pt;}
.h0_c00282{height:550.266667pt;}
.w0_c00282{width:319.200000pt;}
.w1_c00282{width:319.333333pt;}
.x0_c00282{left:0.000000pt;}
.x5a_c00282{left:26.400000pt;}
.x10_c00282{left:28.745333pt;}
.x61_c00282{left:29.758667pt;}
.x5_c00282{left:31.229333pt;}
.x2b_c00282{left:32.877333pt;}
.x17_c00282{left:35.702392pt;}
.x20_c00282{left:36.873603pt;}
.x30_c00282{left:39.281493pt;}
.x3c_c00282{left:40.320000pt;}
.x6_c00282{left:41.636000pt;}
.x24_c00282{left:42.936000pt;}
.x73_c00282{left:46.884000pt;}
.x65_c00282{left:51.457333pt;}
.x47_c00282{left:56.160000pt;}
.x52_c00282{left:58.800000pt;}
.x5b_c00282{left:62.400000pt;}
.x25_c00282{left:64.526667pt;}
.x6c_c00282{left:67.134667pt;}
.x7_c00282{left:69.441333pt;}
.x21_c00282{left:70.653603pt;}
.x53_c00282{left:71.760000pt;}
.x18_c00282{left:73.797597pt;}
.x4c_c00282{left:76.320000pt;}
.x2_c00282{left:78.836000pt;}
.x11_c00282{left:82.462667pt;}
.x42_c00282{left:83.760000pt;}
.x19_c00282{left:86.360888pt;}
.x2c_c00282{left:87.265333pt;}
.x62_c00282{left:88.798667pt;}
.x3d_c00282{left:90.960000pt;}
.x6d_c00282{left:92.533333pt;}
.x26_c00282{left:94.530667pt;}
.x66_c00282{left:95.642667pt;}
.x4d_c00282{left:97.440000pt;}
.x3a_c00282{left:98.640000pt;}
.x12_c00282{left:100.710667pt;}
.xd_c00282{left:102.000000pt;}
.x8_c00282{left:107.801333pt;}
.x3e_c00282{left:108.720000pt;}
.x2d_c00282{left:111.101333pt;}
.x5c_c00282{left:113.280000pt;}
.x3b_c00282{left:114.480000pt;}
.x4e_c00282{left:117.600000pt;}
.xe_c00282{left:119.760000pt;}
.x60_c00282{left:123.486667pt;}
.x3f_c00282{left:125.760000pt;}
.x35_c00282{left:126.845333pt;}
.x27_c00282{left:131.242667pt;}
.x43_c00282{left:134.400000pt;}
.x1a_c00282{left:135.567459pt;}
.x56_c00282{left:138.000000pt;}
.x48_c00282{left:139.680000pt;}
.xf_c00282{left:142.800000pt;}
.x9_c00282{left:145.308000pt;}
.x1_c00282{left:149.280000pt;}
.x54_c00282{left:150.240000pt;}
.x6e_c00282{left:152.081333pt;}
.x31_c00282{left:153.076661pt;}
.x28_c00282{left:156.446667pt;}
.x69_c00282{left:158.401333pt;}
.x4f_c00282{left:162.480000pt;}
.x49_c00282{left:165.840000pt;}
.x74_c00282{left:167.662667pt;}
.x3_c00282{left:170.274667pt;}
.x1b_c00282{left:171.794757pt;}
.xa_c00282{left:172.901333pt;}
.x32_c00282{left:175.158061pt;}
.x5d_c00282{left:178.560000pt;}
.x13_c00282{left:182.022667pt;}
.x36_c00282{left:184.206667pt;}
.x44_c00282{left:188.640000pt;}
.x1c_c00282{left:189.791083pt;}
.x29_c00282{left:191.038667pt;}
.x67_c00282{left:192.770667pt;}
.x6f_c00282{left:195.506667pt;}
.x57_c00282{left:196.560000pt;}
.x63_c00282{left:197.518667pt;}
.x14_c00282{left:200.088000pt;}
.x50_c00282{left:201.840000pt;}
.x5e_c00282{left:203.040000pt;}
.x37_c00282{left:206.050667pt;}
.x40_c00282{left:208.080000pt;}
.x45_c00282{left:210.240000pt;}
.x1d_c00282{left:211.573869pt;}
.x4a_c00282{left:215.280000pt;}
.x64_c00282{left:217.918667pt;}
.x22_c00282{left:219.532269pt;}
.x2e_c00282{left:220.812000pt;}
.x58_c00282{left:222.480000pt;}
.x51_c00282{left:224.400000pt;}
.xb_c00282{left:226.625333pt;}
.x5f_c00282{left:227.760000pt;}
.x6a_c00282{left:233.041333pt;}
.x33_c00282{left:234.701813pt;}
.x70_c00282{left:239.684000pt;}
.x2f_c00282{left:240.732000pt;}
.x59_c00282{left:243.120000pt;}
.xc_c00282{left:245.846667pt;}
.x55_c00282{left:247.680000pt;}
.x1e_c00282{left:248.603797pt;}
.x4_c00282{left:250.193333pt;}
.x34_c00282{left:253.856351pt;}
.x71_c00282{left:255.524000pt;}
.x6b_c00282{left:257.761333pt;}
.x15_c00282{left:258.772000pt;}
.x16_c00282{left:264.422667pt;}
.x46_c00282{left:266.160000pt;}
.x38_c00282{left:267.937333pt;}
.x1f_c00282{left:269.741288pt;}
.x68_c00282{left:271.749333pt;}
.x23_c00282{left:273.502936pt;}
.x41_c00282{left:274.800000pt;}
.x39_c00282{left:281.905333pt;}
.x2a_c00282{left:283.722667pt;}
.x4b_c00282{left:286.560000pt;}
.x72_c00282{left:288.356000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00283 {
    display:none;
  }
  .loading-indicator_c00283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00283 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00283 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00283" -> "#page-container .classname_c00283")
 */
.pf_c00283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00283 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00283 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00283 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00283 {overflow:visible;}
  }
}
.c_c00283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00283 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00283:after { /* webkit #35443 */
  content: '';
}
.t_c00283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00283 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00283 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00283 { /* info for Javascript */
  display:none;
}
.l_c00283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00283:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00283 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00283.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.meb_c00283{transform:matrix(0.101015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101015,0.000000,0.000000,0.250000,0,0);}
.m6f_c00283{transform:matrix(0.136665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136665,0.000000,0.000000,0.250000,0,0);}
.m76_c00283{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m67_c00283{transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139330,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.139995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139995,0.000000,0.000000,0.250000,0,0);}
.m68_c00283{transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);}
.m71_c00283{transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);}
.m6b_c00283{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);}
.m75_c00283{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m69_c00283{transform:matrix(0.150195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150195,0.000000,0.000000,0.250000,0,0);}
.me6_c00283{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.mc7_c00283{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m74_c00283{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154990,0.000000,0.000000,0.250000,0,0);}
.m72_c00283{transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);}
.m29_c00283{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.mb0_c00283{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.ma7_c00283{transform:matrix(0.158205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158205,0.000000,0.000000,0.250000,0,0);}
.m2b_c00283{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m8c_c00283{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.mb5_c00283{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.m86_c00283{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mc9_c00283{transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);}
.m83_c00283{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m41_c00283{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);}
.ma9_c00283{transform:matrix(0.162545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162545,0.000000,0.000000,0.250000,0,0);}
.m6a_c00283{transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);}
.m5e_c00283{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163340,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.mec_c00283{transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.m5c_c00283{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m89_c00283{transform:matrix(0.165885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165885,0.000000,0.000000,0.250000,0,0);}
.m77_c00283{transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);}
.m49_c00283{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.m59_c00283{transform:matrix(0.166780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166780,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.mab_c00283{transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);}
.mc5_c00283{transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168345,0.000000,0.000000,0.250000,0,0);}
.mc3_c00283{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.mb2_c00283{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171845,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);}
.mbe_c00283{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.md3_c00283{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);}
.m9a_c00283{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.me8_c00283{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m92_c00283{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.m8d_c00283{transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m8e_c00283{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00283{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m6c_c00283{transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m42_c00283{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.ma1_c00283{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m51_c00283{transform:matrix(0.179160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179160,0.000000,0.000000,0.250000,0,0);}
.mb6_c00283{transform:matrix(0.179740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179740,0.000000,0.000000,0.250000,0,0);}
.m93_c00283{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.mac_c00283{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m82_c00283{transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);}
.m84_c00283{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.me7_c00283{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m61_c00283{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m60_c00283{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);}
.m62_c00283{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183215,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00283{transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.md9_c00283{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m70_c00283{transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185005,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);}
.m8a_c00283{transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);}
.m98_c00283{transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.mcb_c00283{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);}
.mb1_c00283{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.ma8_c00283{transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);}
.m43_c00283{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m64_c00283{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.ma3_c00283{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188430,0.000000,0.000000,0.250000,0,0);}
.m8f_c00283{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m7e_c00283{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.md7_c00283{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00283{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m85_c00283{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m54_c00283{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.mb3_c00283{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.mb8_c00283{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.md0_c00283{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.mee_c00283{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);}
.mc8_c00283{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00283{transform:matrix(0.192305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192305,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.mca_c00283{transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);}
.mbb_c00283{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00283{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.m8b_c00283{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.maf_c00283{transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00283{transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);}
.m95_c00283{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m81_c00283{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.m91_c00283{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m9f_c00283{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m80_c00283{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.me4_c00283{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m65_c00283{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.mc4_c00283{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.maa_c00283{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.mcf_c00283{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.ma5_c00283{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.ma2_c00283{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m7b_c00283{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.mce_c00283{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.med_c00283{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.mea_c00283{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.mbd_c00283{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m56_c00283{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00283{transform:matrix(0.205030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205030,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m9d_c00283{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m46_c00283{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m5f_c00283{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.ma4_c00283{transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);}
.m88_c00283{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.mef_c00283{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.m94_c00283{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mc0_c00283{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m63_c00283{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m7d_c00283{transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m99_c00283{transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);}
.m33_c00283{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m79_c00283{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.me9_c00283{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.mad_c00283{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m73_c00283{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.mb9_c00283{transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);}
.mb4_c00283{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m97_c00283{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.mdb_c00283{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.m7c_c00283{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.md1_c00283{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.mae_c00283{transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215760,0.000000,0.000000,0.250000,0,0);}
.mc1_c00283{transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215905,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.216990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216990,0.000000,0.000000,0.250000,0,0);}
.m9c_c00283{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.md8_c00283{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.me5_c00283{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.ma0_c00283{transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.md4_c00283{transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);}
.mf1_c00283{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.m5d_c00283{transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m7f_c00283{transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m96_c00283{transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.me0_c00283{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mba_c00283{transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);}
.mb7_c00283{transform:matrix(0.227790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227790,0.000000,0.000000,0.250000,0,0);}
.mda_c00283{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00283{transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);}
.mbc_c00283{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.mcd_c00283{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.md6_c00283{transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);}
.m9b_c00283{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.md2_c00283{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.ma6_c00283{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.m7a_c00283{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m78_c00283{transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);}
.mdd_c00283{transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);}
.me2_c00283{transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);}
.m87_c00283{transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);}
.mbf_c00283{transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);}
.me1_c00283{transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);}
.mdc_c00283{transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);}
.md5_c00283{transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244735,0.000000,0.000000,0.250000,0,0);}
.mdf_c00283{transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);}
.me3_c00283{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m9e_c00283{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.mde_c00283{transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);}
.mcc_c00283{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m66_c00283{transform:matrix(0.309020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309020,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.359370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359370,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:0.000000px;}
.fc0_c00283{color:transparent;}
.fs0_c00283{font-size:33.600000px;}
.fsf_c00283{font-size:55.650000px;}
.fsa_c00283{font-size:58.800000px;}
.fsd_c00283{font-size:59.850000px;}
.fse_c00283{font-size:60.900000px;}
.fs6_c00283{font-size:61.950000px;}
.fs7_c00283{font-size:63.000000px;}
.fs9_c00283{font-size:64.050000px;}
.fs3_c00283{font-size:65.100000px;}
.fs4_c00283{font-size:66.150000px;}
.fs8_c00283{font-size:67.200000px;}
.fs5_c00283{font-size:68.250000px;}
.fs2_c00283{font-size:69.300000px;}
.fsc_c00283{font-size:70.350000px;}
.fsb_c00283{font-size:72.450000px;}
.fs1_c00283{font-size:73.500000px;}
.y0_c00283{bottom:0.000000px;}
.y21_c00283{bottom:27.120000px;}
.y20_c00283{bottom:43.921500px;}
.y1f_c00283{bottom:60.930000px;}
.y1e_c00283{bottom:78.780000px;}
.y1d_c00283{bottom:95.580000px;}
.y1c_c00283{bottom:112.471500px;}
.y1b_c00283{bottom:130.107000px;}
.y1a_c00283{bottom:147.037500px;}
.y19_c00283{bottom:164.847000px;}
.y18_c00283{bottom:181.876500px;}
.y17_c00283{bottom:199.540500px;}
.y16_c00283{bottom:216.973500px;}
.y15_c00283{bottom:234.406500px;}
.y14_c00283{bottom:251.073000px;}
.y13_c00283{bottom:268.428000px;}
.y12_c00283{bottom:285.474000px;}
.y11_c00283{bottom:303.058500px;}
.y10_c00283{bottom:320.073000px;}
.yf_c00283{bottom:337.377000px;}
.ye_c00283{bottom:354.357000px;}
.yd_c00283{bottom:371.908500px;}
.yc_c00283{bottom:389.125500px;}
.yb_c00283{bottom:406.189500px;}
.ya_c00283{bottom:423.477000px;}
.y9_c00283{bottom:440.700000px;}
.y8_c00283{bottom:457.735500px;}
.y7_c00283{bottom:474.478500px;}
.y6_c00283{bottom:492.388500px;}
.y5_c00283{bottom:509.098500px;}
.y4_c00283{bottom:526.801500px;}
.y3_c00283{bottom:543.958500px;}
.y2_c00283{bottom:561.088500px;}
.y1_c00283{bottom:573.717000px;}
.h2_c00283{height:33.600000px;}
.h11_c00283{height:55.650000px;}
.hc_c00283{height:58.800000px;}
.hf_c00283{height:59.850000px;}
.h10_c00283{height:60.900000px;}
.h8_c00283{height:61.950000px;}
.h9_c00283{height:63.000000px;}
.hb_c00283{height:64.050000px;}
.h5_c00283{height:65.100000px;}
.h6_c00283{height:66.150000px;}
.ha_c00283{height:67.200000px;}
.h7_c00283{height:68.250000px;}
.h4_c00283{height:69.300000px;}
.he_c00283{height:70.350000px;}
.hd_c00283{height:72.450000px;}
.h3_c00283{height:73.500000px;}
.h1_c00283{height:618.750000px;}
.h0_c00283{height:619.050000px;}
.w0_c00283{width:359.100000px;}
.w1_c00283{width:359.250000px;}
.x0_c00283{left:0.000000px;}
.x74_c00283{left:41.580000px;}
.x82_c00283{left:46.440000px;}
.x76_c00283{left:47.520000px;}
.x5d_c00283{left:48.600000px;}
.x3_c00283{left:50.220000px;}
.x4e_c00283{left:58.050000px;}
.x48_c00283{left:67.230000px;}
.x28_c00283{left:70.200000px;}
.x2e_c00283{left:71.820000px;}
.x72_c00283{left:73.170000px;}
.xf_c00283{left:74.520000px;}
.x4f_c00283{left:79.380000px;}
.x70_c00283{left:80.460000px;}
.x5e_c00283{left:82.080000px;}
.x24_c00283{left:83.970000px;}
.x19_c00283{left:86.940000px;}
.x10_c00283{left:89.370000px;}
.xa_c00283{left:90.990000px;}
.x2f_c00283{left:92.070000px;}
.x5f_c00283{left:95.040000px;}
.x59_c00283{left:96.120000px;}
.x77_c00283{left:97.200000px;}
.x6b_c00283{left:98.280000px;}
.x63_c00283{left:99.360000px;}
.x7c_c00283{left:100.440000px;}
.x4_c00283{left:101.520000px;}
.x50_c00283{left:105.030000px;}
.x11_c00283{left:106.920000px;}
.x1a_c00283{left:109.080000px;}
.x3a_c00283{left:112.320000px;}
.x40_c00283{left:116.910000px;}
.x29_c00283{left:118.800000px;}
.x49_c00283{left:120.420000px;}
.x83_c00283{left:121.770000px;}
.x30_c00283{left:123.930000px;}
.x54_c00283{left:126.900000px;}
.x64_c00283{left:129.870000px;}
.x71_c00283{left:132.030000px;}
.x5_c00283{left:134.190000px;}
.x25_c00283{left:136.890000px;}
.x20_c00283{left:138.240000px;}
.x4a_c00283{left:141.210000px;}
.x78_c00283{left:143.370000px;}
.x7f_c00283{left:144.450000px;}
.x6c_c00283{left:147.150000px;}
.x55_c00283{left:148.770000px;}
.x41_c00283{left:150.930000px;}
.xb_c00283{left:153.090000px;}
.x36_c00283{left:154.440000px;}
.x1b_c00283{left:155.790000px;}
.x12_c00283{left:157.410000px;}
.x68_c00283{left:159.300000px;}
.x7d_c00283{left:161.730000px;}
.x6_c00283{left:163.620000px;}
.x4b_c00283{left:164.700000px;}
.x62_c00283{left:165.780000px;}
.x65_c00283{left:167.670000px;}
.x79_c00283{left:169.290000px;}
.x37_c00283{left:173.880000px;}
.x1c_c00283{left:176.040000px;}
.x31_c00283{left:177.930000px;}
.x3b_c00283{left:181.980000px;}
.x1_c00283{left:183.600000px;}
.x5a_c00283{left:185.220000px;}
.x13_c00283{left:186.840000px;}
.x2a_c00283{left:189.810000px;}
.x46_c00283{left:191.160000px;}
.x7a_c00283{left:196.020000px;}
.xc_c00283{left:197.100000px;}
.x51_c00283{left:200.070000px;}
.x84_c00283{left:201.150000px;}
.x6d_c00283{left:202.770000px;}
.x3c_c00283{left:204.930000px;}
.x32_c00283{left:206.550000px;}
.x80_c00283{left:208.980000px;}
.x60_c00283{left:211.950000px;}
.x21_c00283{left:213.570000px;}
.x5b_c00283{left:216.000000px;}
.x14_c00283{left:218.430000px;}
.x52_c00283{left:220.590000px;}
.x33_c00283{left:222.750000px;}
.x42_c00283{left:224.370000px;}
.x85_c00283{left:225.990000px;}
.x38_c00283{left:227.070000px;}
.x6e_c00283{left:230.850000px;}
.x15_c00283{left:233.550000px;}
.x1d_c00283{left:236.250000px;}
.x7_c00283{left:238.410000px;}
.x26_c00283{left:240.840000px;}
.x47_c00283{left:243.810000px;}
.x56_c00283{left:245.970000px;}
.x16_c00283{left:247.050000px;}
.x7e_c00283{left:249.210000px;}
.x22_c00283{left:250.290000px;}
.x81_c00283{left:252.180000px;}
.x2b_c00283{left:253.800000px;}
.x43_c00283{left:255.420000px;}
.x3d_c00283{left:257.310000px;}
.x8_c00283{left:262.440000px;}
.x66_c00283{left:265.410000px;}
.x17_c00283{left:267.570000px;}
.xd_c00283{left:270.000000px;}
.x73_c00283{left:273.510000px;}
.x2c_c00283{left:274.590000px;}
.x1e_c00283{left:276.210000px;}
.x69_c00283{left:277.560000px;}
.x3e_c00283{left:279.990000px;}
.x75_c00283{left:281.070000px;}
.x7b_c00283{left:286.200000px;}
.x4c_c00283{left:287.280000px;}
.x5c_c00283{left:288.630000px;}
.x61_c00283{left:289.710000px;}
.x23_c00283{left:291.060000px;}
.x39_c00283{left:293.220000px;}
.x53_c00283{left:295.650000px;}
.x34_c00283{left:297.810000px;}
.x57_c00283{left:301.860000px;}
.x44_c00283{left:304.020000px;}
.x6a_c00283{left:305.910000px;}
.x2d_c00283{left:307.530000px;}
.xe_c00283{left:309.960000px;}
.x86_c00283{left:312.120000px;}
.x4d_c00283{left:313.470000px;}
.x45_c00283{left:316.440000px;}
.x58_c00283{left:318.870000px;}
.x9_c00283{left:327.240000px;}
.x27_c00283{left:329.400000px;}
.x18_c00283{left:331.290000px;}
.x2_c00283{left:333.450000px;}
.x35_c00283{left:335.610000px;}
.x67_c00283{left:336.690000px;}
.x1f_c00283{left:338.580000px;}
.x3f_c00283{left:339.660000px;}
.x6f_c00283{left:345.060000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
.fs0_c00283{font-size:29.866667pt;}
.fsf_c00283{font-size:49.466667pt;}
.fsa_c00283{font-size:52.266667pt;}
.fsd_c00283{font-size:53.200000pt;}
.fse_c00283{font-size:54.133333pt;}
.fs6_c00283{font-size:55.066667pt;}
.fs7_c00283{font-size:56.000000pt;}
.fs9_c00283{font-size:56.933333pt;}
.fs3_c00283{font-size:57.866667pt;}
.fs4_c00283{font-size:58.800000pt;}
.fs8_c00283{font-size:59.733333pt;}
.fs5_c00283{font-size:60.666667pt;}
.fs2_c00283{font-size:61.600000pt;}
.fsc_c00283{font-size:62.533333pt;}
.fsb_c00283{font-size:64.400000pt;}
.fs1_c00283{font-size:65.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y21_c00283{bottom:24.106667pt;}
.y20_c00283{bottom:39.041333pt;}
.y1f_c00283{bottom:54.160000pt;}
.y1e_c00283{bottom:70.026667pt;}
.y1d_c00283{bottom:84.960000pt;}
.y1c_c00283{bottom:99.974667pt;}
.y1b_c00283{bottom:115.650667pt;}
.y1a_c00283{bottom:130.700000pt;}
.y19_c00283{bottom:146.530667pt;}
.y18_c00283{bottom:161.668000pt;}
.y17_c00283{bottom:177.369333pt;}
.y16_c00283{bottom:192.865333pt;}
.y15_c00283{bottom:208.361333pt;}
.y14_c00283{bottom:223.176000pt;}
.y13_c00283{bottom:238.602667pt;}
.y12_c00283{bottom:253.754667pt;}
.y11_c00283{bottom:269.385333pt;}
.y10_c00283{bottom:284.509333pt;}
.yf_c00283{bottom:299.890667pt;}
.ye_c00283{bottom:314.984000pt;}
.yd_c00283{bottom:330.585333pt;}
.yc_c00283{bottom:345.889333pt;}
.yb_c00283{bottom:361.057333pt;}
.ya_c00283{bottom:376.424000pt;}
.y9_c00283{bottom:391.733333pt;}
.y8_c00283{bottom:406.876000pt;}
.y7_c00283{bottom:421.758667pt;}
.y6_c00283{bottom:437.678667pt;}
.y5_c00283{bottom:452.532000pt;}
.y4_c00283{bottom:468.268000pt;}
.y3_c00283{bottom:483.518667pt;}
.y2_c00283{bottom:498.745333pt;}
.y1_c00283{bottom:509.970667pt;}
.h2_c00283{height:29.866667pt;}
.h11_c00283{height:49.466667pt;}
.hc_c00283{height:52.266667pt;}
.hf_c00283{height:53.200000pt;}
.h10_c00283{height:54.133333pt;}
.h8_c00283{height:55.066667pt;}
.h9_c00283{height:56.000000pt;}
.hb_c00283{height:56.933333pt;}
.h5_c00283{height:57.866667pt;}
.h6_c00283{height:58.800000pt;}
.ha_c00283{height:59.733333pt;}
.h7_c00283{height:60.666667pt;}
.h4_c00283{height:61.600000pt;}
.he_c00283{height:62.533333pt;}
.hd_c00283{height:64.400000pt;}
.h3_c00283{height:65.333333pt;}
.h1_c00283{height:550.000000pt;}
.h0_c00283{height:550.266667pt;}
.w0_c00283{width:319.200000pt;}
.w1_c00283{width:319.333333pt;}
.x0_c00283{left:0.000000pt;}
.x74_c00283{left:36.960000pt;}
.x82_c00283{left:41.280000pt;}
.x76_c00283{left:42.240000pt;}
.x5d_c00283{left:43.200000pt;}
.x3_c00283{left:44.640000pt;}
.x4e_c00283{left:51.600000pt;}
.x48_c00283{left:59.760000pt;}
.x28_c00283{left:62.400000pt;}
.x2e_c00283{left:63.840000pt;}
.x72_c00283{left:65.040000pt;}
.xf_c00283{left:66.240000pt;}
.x4f_c00283{left:70.560000pt;}
.x70_c00283{left:71.520000pt;}
.x5e_c00283{left:72.960000pt;}
.x24_c00283{left:74.640000pt;}
.x19_c00283{left:77.280000pt;}
.x10_c00283{left:79.440000pt;}
.xa_c00283{left:80.880000pt;}
.x2f_c00283{left:81.840000pt;}
.x5f_c00283{left:84.480000pt;}
.x59_c00283{left:85.440000pt;}
.x77_c00283{left:86.400000pt;}
.x6b_c00283{left:87.360000pt;}
.x63_c00283{left:88.320000pt;}
.x7c_c00283{left:89.280000pt;}
.x4_c00283{left:90.240000pt;}
.x50_c00283{left:93.360000pt;}
.x11_c00283{left:95.040000pt;}
.x1a_c00283{left:96.960000pt;}
.x3a_c00283{left:99.840000pt;}
.x40_c00283{left:103.920000pt;}
.x29_c00283{left:105.600000pt;}
.x49_c00283{left:107.040000pt;}
.x83_c00283{left:108.240000pt;}
.x30_c00283{left:110.160000pt;}
.x54_c00283{left:112.800000pt;}
.x64_c00283{left:115.440000pt;}
.x71_c00283{left:117.360000pt;}
.x5_c00283{left:119.280000pt;}
.x25_c00283{left:121.680000pt;}
.x20_c00283{left:122.880000pt;}
.x4a_c00283{left:125.520000pt;}
.x78_c00283{left:127.440000pt;}
.x7f_c00283{left:128.400000pt;}
.x6c_c00283{left:130.800000pt;}
.x55_c00283{left:132.240000pt;}
.x41_c00283{left:134.160000pt;}
.xb_c00283{left:136.080000pt;}
.x36_c00283{left:137.280000pt;}
.x1b_c00283{left:138.480000pt;}
.x12_c00283{left:139.920000pt;}
.x68_c00283{left:141.600000pt;}
.x7d_c00283{left:143.760000pt;}
.x6_c00283{left:145.440000pt;}
.x4b_c00283{left:146.400000pt;}
.x62_c00283{left:147.360000pt;}
.x65_c00283{left:149.040000pt;}
.x79_c00283{left:150.480000pt;}
.x37_c00283{left:154.560000pt;}
.x1c_c00283{left:156.480000pt;}
.x31_c00283{left:158.160000pt;}
.x3b_c00283{left:161.760000pt;}
.x1_c00283{left:163.200000pt;}
.x5a_c00283{left:164.640000pt;}
.x13_c00283{left:166.080000pt;}
.x2a_c00283{left:168.720000pt;}
.x46_c00283{left:169.920000pt;}
.x7a_c00283{left:174.240000pt;}
.xc_c00283{left:175.200000pt;}
.x51_c00283{left:177.840000pt;}
.x84_c00283{left:178.800000pt;}
.x6d_c00283{left:180.240000pt;}
.x3c_c00283{left:182.160000pt;}
.x32_c00283{left:183.600000pt;}
.x80_c00283{left:185.760000pt;}
.x60_c00283{left:188.400000pt;}
.x21_c00283{left:189.840000pt;}
.x5b_c00283{left:192.000000pt;}
.x14_c00283{left:194.160000pt;}
.x52_c00283{left:196.080000pt;}
.x33_c00283{left:198.000000pt;}
.x42_c00283{left:199.440000pt;}
.x85_c00283{left:200.880000pt;}
.x38_c00283{left:201.840000pt;}
.x6e_c00283{left:205.200000pt;}
.x15_c00283{left:207.600000pt;}
.x1d_c00283{left:210.000000pt;}
.x7_c00283{left:211.920000pt;}
.x26_c00283{left:214.080000pt;}
.x47_c00283{left:216.720000pt;}
.x56_c00283{left:218.640000pt;}
.x16_c00283{left:219.600000pt;}
.x7e_c00283{left:221.520000pt;}
.x22_c00283{left:222.480000pt;}
.x81_c00283{left:224.160000pt;}
.x2b_c00283{left:225.600000pt;}
.x43_c00283{left:227.040000pt;}
.x3d_c00283{left:228.720000pt;}
.x8_c00283{left:233.280000pt;}
.x66_c00283{left:235.920000pt;}
.x17_c00283{left:237.840000pt;}
.xd_c00283{left:240.000000pt;}
.x73_c00283{left:243.120000pt;}
.x2c_c00283{left:244.080000pt;}
.x1e_c00283{left:245.520000pt;}
.x69_c00283{left:246.720000pt;}
.x3e_c00283{left:248.880000pt;}
.x75_c00283{left:249.840000pt;}
.x7b_c00283{left:254.400000pt;}
.x4c_c00283{left:255.360000pt;}
.x5c_c00283{left:256.560000pt;}
.x61_c00283{left:257.520000pt;}
.x23_c00283{left:258.720000pt;}
.x39_c00283{left:260.640000pt;}
.x53_c00283{left:262.800000pt;}
.x34_c00283{left:264.720000pt;}
.x57_c00283{left:268.320000pt;}
.x44_c00283{left:270.240000pt;}
.x6a_c00283{left:271.920000pt;}
.x2d_c00283{left:273.360000pt;}
.xe_c00283{left:275.520000pt;}
.x86_c00283{left:277.440000pt;}
.x4d_c00283{left:278.640000pt;}
.x45_c00283{left:281.280000pt;}
.x58_c00283{left:283.440000pt;}
.x9_c00283{left:290.880000pt;}
.x27_c00283{left:292.800000pt;}
.x18_c00283{left:294.480000pt;}
.x2_c00283{left:296.400000pt;}
.x35_c00283{left:298.320000pt;}
.x67_c00283{left:299.280000pt;}
.x1f_c00283{left:300.960000pt;}
.x3f_c00283{left:301.920000pt;}
.x6f_c00283{left:306.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00284 {
    display:none;
  }
  .loading-indicator_c00284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00284 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00284 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00284" -> "#page-container .classname_c00284")
 */
.pf_c00284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00284 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00284 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00284 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00284 {overflow:visible;}
  }
}
.c_c00284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00284 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00284:after { /* webkit #35443 */
  content: '';
}
.t_c00284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00284 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00284 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00284 { /* info for Javascript */
  display:none;
}
.l_c00284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00284:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00284 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00284.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7a_c00284{transform:matrix(0.016063,-0.000241,0.003750,0.249972,0,0);-ms-transform:matrix(0.016063,-0.000241,0.003750,0.249972,0,0);-webkit-transform:matrix(0.016063,-0.000241,0.003750,0.249972,0,0);}
.ma3_c00284{transform:matrix(0.017668,-0.000265,0.003750,0.249972,0,0);-ms-transform:matrix(0.017668,-0.000265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.017668,-0.000265,0.003750,0.249972,0,0);}
.m1_c00284{transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.115162,-0.001727,0.003750,0.249972,0,0);-ms-transform:matrix(0.115162,-0.001727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.115162,-0.001727,0.003750,0.249972,0,0);}
.mc6_c00284{transform:matrix(0.118332,-0.001775,0.003750,0.249972,0,0);-ms-transform:matrix(0.118332,-0.001775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.118332,-0.001775,0.003750,0.249972,0,0);}
.m0_c00284{transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124165,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130465,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.141704,-0.002126,0.003750,0.249972,0,0);-ms-transform:matrix(0.141704,-0.002126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141704,-0.002126,0.003750,0.249972,0,0);}
.m1e_c00284{transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);}
.mf2_c00284{transform:matrix(0.145554,-0.002183,0.003750,0.249972,0,0);-ms-transform:matrix(0.145554,-0.002183,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145554,-0.002183,0.003750,0.249972,0,0);}
.mb7_c00284{transform:matrix(0.145639,-0.002185,0.003750,0.249972,0,0);-ms-transform:matrix(0.145639,-0.002185,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145639,-0.002185,0.003750,0.249972,0,0);}
.m5f_c00284{transform:matrix(0.145714,-0.002186,0.003750,0.249972,0,0);-ms-transform:matrix(0.145714,-0.002186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145714,-0.002186,0.003750,0.249972,0,0);}
.mce_c00284{transform:matrix(0.146519,-0.002198,0.003750,0.249972,0,0);-ms-transform:matrix(0.146519,-0.002198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146519,-0.002198,0.003750,0.249972,0,0);}
.m29_c00284{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.148415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148415,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);-ms-transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);}
.md4_c00284{transform:matrix(0.151698,-0.002275,0.003750,0.249972,0,0);-ms-transform:matrix(0.151698,-0.002275,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151698,-0.002275,0.003750,0.249972,0,0);}
.maa_c00284{transform:matrix(0.152138,-0.002282,0.003750,0.249972,0,0);-ms-transform:matrix(0.152138,-0.002282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152138,-0.002282,0.003750,0.249972,0,0);}
.m12_c00284{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152255,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);-ms-transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);}
.mb_c00284{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.153608,-0.002304,0.003750,0.249972,0,0);-ms-transform:matrix(0.153608,-0.002304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153608,-0.002304,0.003750,0.249972,0,0);}
.m6_c00284{transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.154898,-0.002323,0.003750,0.249972,0,0);-ms-transform:matrix(0.154898,-0.002323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154898,-0.002323,0.003750,0.249972,0,0);}
.mef_c00284{transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);-ms-transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);}
.mf3_c00284{transform:matrix(0.155243,-0.002329,0.003750,0.249972,0,0);-ms-transform:matrix(0.155243,-0.002329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155243,-0.002329,0.003750,0.249972,0,0);}
.m74_c00284{transform:matrix(0.156132,-0.002342,0.003750,0.249972,0,0);-ms-transform:matrix(0.156132,-0.002342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156132,-0.002342,0.003750,0.249972,0,0);}
.me5_c00284{transform:matrix(0.156907,-0.002354,0.003750,0.249972,0,0);-ms-transform:matrix(0.156907,-0.002354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156907,-0.002354,0.003750,0.249972,0,0);}
.mf8_c00284{transform:matrix(0.158177,-0.002373,0.003750,0.249972,0,0);-ms-transform:matrix(0.158177,-0.002373,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158177,-0.002373,0.003750,0.249972,0,0);}
.m70_c00284{transform:matrix(0.158312,-0.002375,0.003750,0.249972,0,0);-ms-transform:matrix(0.158312,-0.002375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158312,-0.002375,0.003750,0.249972,0,0);}
.m9d_c00284{transform:matrix(0.159412,-0.002391,0.003750,0.249972,0,0);-ms-transform:matrix(0.159412,-0.002391,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159412,-0.002391,0.003750,0.249972,0,0);}
.md2_c00284{transform:matrix(0.159787,-0.002397,0.003750,0.249972,0,0);-ms-transform:matrix(0.159787,-0.002397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159787,-0.002397,0.003750,0.249972,0,0);}
.m99_c00284{transform:matrix(0.159832,-0.002397,0.003750,0.249972,0,0);-ms-transform:matrix(0.159832,-0.002397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159832,-0.002397,0.003750,0.249972,0,0);}
.m19_c00284{transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.160665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160665,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.161227,-0.002418,0.003750,0.249972,0,0);-ms-transform:matrix(0.161227,-0.002418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161227,-0.002418,0.003750,0.249972,0,0);}
.mbb_c00284{transform:matrix(0.162137,-0.002432,0.003750,0.249972,0,0);-ms-transform:matrix(0.162137,-0.002432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162137,-0.002432,0.003750,0.249972,0,0);}
.m50_c00284{transform:matrix(0.162187,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162187,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162187,-0.002433,0.003750,0.249972,0,0);}
.mdf_c00284{transform:matrix(0.162757,-0.002441,0.003750,0.249972,0,0);-ms-transform:matrix(0.162757,-0.002441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162757,-0.002441,0.003750,0.249972,0,0);}
.m27_c00284{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);-ms-transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);}
.m6d_c00284{transform:matrix(0.163737,-0.002456,0.003750,0.249972,0,0);-ms-transform:matrix(0.163737,-0.002456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163737,-0.002456,0.003750,0.249972,0,0);}
.m46_c00284{transform:matrix(0.163962,-0.002459,0.003750,0.249972,0,0);-ms-transform:matrix(0.163962,-0.002459,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163962,-0.002459,0.003750,0.249972,0,0);}
.m6f_c00284{transform:matrix(0.164327,-0.002465,0.003750,0.249972,0,0);-ms-transform:matrix(0.164327,-0.002465,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164327,-0.002465,0.003750,0.249972,0,0);}
.m32_c00284{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.164661,-0.002470,0.003750,0.249972,0,0);-ms-transform:matrix(0.164661,-0.002470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164661,-0.002470,0.003750,0.249972,0,0);}
.m33_c00284{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.mbd_c00284{transform:matrix(0.165191,-0.002478,0.003750,0.249972,0,0);-ms-transform:matrix(0.165191,-0.002478,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165191,-0.002478,0.003750,0.249972,0,0);}
.m1b_c00284{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);}
.mac_c00284{transform:matrix(0.167191,-0.002508,0.003750,0.249972,0,0);-ms-transform:matrix(0.167191,-0.002508,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167191,-0.002508,0.003750,0.249972,0,0);}
.mb6_c00284{transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);}
.mbc_c00284{transform:matrix(0.167986,-0.002520,0.003750,0.249972,0,0);-ms-transform:matrix(0.167986,-0.002520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167986,-0.002520,0.003750,0.249972,0,0);}
.me3_c00284{transform:matrix(0.168036,-0.002521,0.003750,0.249972,0,0);-ms-transform:matrix(0.168036,-0.002521,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168036,-0.002521,0.003750,0.249972,0,0);}
.m53_c00284{transform:matrix(0.168306,-0.002525,0.003750,0.249972,0,0);-ms-transform:matrix(0.168306,-0.002525,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168306,-0.002525,0.003750,0.249972,0,0);}
.m34_c00284{transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.169041,-0.002536,0.003750,0.249972,0,0);-ms-transform:matrix(0.169041,-0.002536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169041,-0.002536,0.003750,0.249972,0,0);}
.m88_c00284{transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);-ms-transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);}
.m3b_c00284{transform:matrix(0.169836,-0.002548,0.003750,0.249972,0,0);-ms-transform:matrix(0.169836,-0.002548,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169836,-0.002548,0.003750,0.249972,0,0);}
.m89_c00284{transform:matrix(0.170131,-0.002552,0.003750,0.249972,0,0);-ms-transform:matrix(0.170131,-0.002552,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170131,-0.002552,0.003750,0.249972,0,0);}
.mc_c00284{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.170876,-0.002563,0.003750,0.249972,0,0);-ms-transform:matrix(0.170876,-0.002563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170876,-0.002563,0.003750,0.249972,0,0);}
.mf_c00284{transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170895,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);}
.m43_c00284{transform:matrix(0.171506,-0.002573,0.003750,0.249972,0,0);-ms-transform:matrix(0.171506,-0.002573,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171506,-0.002573,0.003750,0.249972,0,0);}
.m36_c00284{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00284{transform:matrix(0.173121,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173121,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173121,-0.002597,0.003750,0.249972,0,0);}
.m92_c00284{transform:matrix(0.173535,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173535,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173535,-0.002603,0.003750,0.249972,0,0);}
.me8_c00284{transform:matrix(0.174225,-0.002613,0.003750,0.249972,0,0);-ms-transform:matrix(0.174225,-0.002613,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174225,-0.002613,0.003750,0.249972,0,0);}
.maf_c00284{transform:matrix(0.174260,-0.002614,0.003750,0.249972,0,0);-ms-transform:matrix(0.174260,-0.002614,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174260,-0.002614,0.003750,0.249972,0,0);}
.m5_c00284{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.mb5_c00284{transform:matrix(0.174820,-0.002622,0.003750,0.249972,0,0);-ms-transform:matrix(0.174820,-0.002622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174820,-0.002622,0.003750,0.249972,0,0);}
.m54_c00284{transform:matrix(0.175170,-0.002628,0.003750,0.249972,0,0);-ms-transform:matrix(0.175170,-0.002628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175170,-0.002628,0.003750,0.249972,0,0);}
.mae_c00284{transform:matrix(0.175220,-0.002628,0.003750,0.249972,0,0);-ms-transform:matrix(0.175220,-0.002628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175220,-0.002628,0.003750,0.249972,0,0);}
.m75_c00284{transform:matrix(0.175405,-0.002631,0.003750,0.249972,0,0);-ms-transform:matrix(0.175405,-0.002631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175405,-0.002631,0.003750,0.249972,0,0);}
.ma0_c00284{transform:matrix(0.175435,-0.002632,0.003750,0.249972,0,0);-ms-transform:matrix(0.175435,-0.002632,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175435,-0.002632,0.003750,0.249972,0,0);}
.mb1_c00284{transform:matrix(0.175475,-0.002632,0.003750,0.249972,0,0);-ms-transform:matrix(0.175475,-0.002632,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175475,-0.002632,0.003750,0.249972,0,0);}
.mb8_c00284{transform:matrix(0.177215,-0.002658,0.003750,0.249972,0,0);-ms-transform:matrix(0.177215,-0.002658,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177215,-0.002658,0.003750,0.249972,0,0);}
.m31_c00284{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.177495,-0.002662,0.003750,0.249972,0,0);-ms-transform:matrix(0.177495,-0.002662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177495,-0.002662,0.003750,0.249972,0,0);}
.mf5_c00284{transform:matrix(0.177835,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177835,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177835,-0.002668,0.003750,0.249972,0,0);}
.m13_c00284{transform:matrix(0.177965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177965,0.000000,0.000000,0.250000,0,0);}
.ma4_c00284{transform:matrix(0.178000,-0.002670,0.003750,0.249972,0,0);-ms-transform:matrix(0.178000,-0.002670,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178000,-0.002670,0.003750,0.249972,0,0);}
.m7d_c00284{transform:matrix(0.178090,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178090,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178090,-0.002671,0.003750,0.249972,0,0);}
.m5e_c00284{transform:matrix(0.178445,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178445,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178445,-0.002677,0.003750,0.249972,0,0);}
.m14_c00284{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.179045,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179045,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179045,-0.002686,0.003750,0.249972,0,0);}
.m80_c00284{transform:matrix(0.179805,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179805,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179805,-0.002697,0.003750,0.249972,0,0);}
.m22_c00284{transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);}
.md_c00284{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.180860,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180860,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180860,-0.002713,0.003750,0.249972,0,0);}
.m7f_c00284{transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);-ms-transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);}
.m1f_c00284{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.181925,-0.002729,0.003750,0.249972,0,0);-ms-transform:matrix(0.181925,-0.002729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181925,-0.002729,0.003750,0.249972,0,0);}
.m82_c00284{transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-ms-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);}
.m9f_c00284{transform:matrix(0.182409,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182409,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182409,-0.002736,0.003750,0.249972,0,0);}
.m24_c00284{transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.183334,-0.002750,0.003750,0.249972,0,0);-ms-transform:matrix(0.183334,-0.002750,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183334,-0.002750,0.003750,0.249972,0,0);}
.m30_c00284{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.md1_c00284{transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);}
.m72_c00284{transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);}
.mea_c00284{transform:matrix(0.186804,-0.002802,0.003750,0.249972,0,0);-ms-transform:matrix(0.186804,-0.002802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186804,-0.002802,0.003750,0.249972,0,0);}
.m9e_c00284{transform:matrix(0.186854,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186854,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186854,-0.002803,0.003750,0.249972,0,0);}
.m2e_c00284{transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);}
.mc8_c00284{transform:matrix(0.187829,-0.002817,0.003750,0.249972,0,0);-ms-transform:matrix(0.187829,-0.002817,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187829,-0.002817,0.003750,0.249972,0,0);}
.mb2_c00284{transform:matrix(0.188099,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188099,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188099,-0.002821,0.003750,0.249972,0,0);}
.mb9_c00284{transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);-ms-transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);}
.m84_c00284{transform:matrix(0.188759,-0.002831,0.003750,0.249972,0,0);-ms-transform:matrix(0.188759,-0.002831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188759,-0.002831,0.003750,0.249972,0,0);}
.m23_c00284{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.mf7_c00284{transform:matrix(0.189029,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.189029,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189029,-0.002835,0.003750,0.249972,0,0);}
.mf4_c00284{transform:matrix(0.189084,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189084,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189084,-0.002836,0.003750,0.249972,0,0);}
.ma6_c00284{transform:matrix(0.189529,-0.002843,0.003750,0.249972,0,0);-ms-transform:matrix(0.189529,-0.002843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189529,-0.002843,0.003750,0.249972,0,0);}
.m77_c00284{transform:matrix(0.190379,-0.002856,0.003750,0.249972,0,0);-ms-transform:matrix(0.190379,-0.002856,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190379,-0.002856,0.003750,0.249972,0,0);}
.m8e_c00284{transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);-ms-transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);}
.m58_c00284{transform:matrix(0.191463,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191463,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191463,-0.002872,0.003750,0.249972,0,0);}
.mcd_c00284{transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);}
.m20_c00284{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.191938,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191938,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191938,-0.002879,0.003750,0.249972,0,0);}
.m4f_c00284{transform:matrix(0.192818,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192818,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192818,-0.002892,0.003750,0.249972,0,0);}
.ma9_c00284{transform:matrix(0.193643,-0.002905,0.003750,0.249972,0,0);-ms-transform:matrix(0.193643,-0.002905,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193643,-0.002905,0.003750,0.249972,0,0);}
.m4d_c00284{transform:matrix(0.193888,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193888,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193888,-0.002908,0.003750,0.249972,0,0);}
.m10_c00284{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.med_c00284{transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);}
.m16_c00284{transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00284{transform:matrix(0.194393,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194393,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194393,-0.002916,0.003750,0.249972,0,0);}
.m47_c00284{transform:matrix(0.194898,-0.002923,0.003750,0.249972,0,0);-ms-transform:matrix(0.194898,-0.002923,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194898,-0.002923,0.003750,0.249972,0,0);}
.mba_c00284{transform:matrix(0.194948,-0.002924,0.003750,0.249972,0,0);-ms-transform:matrix(0.194948,-0.002924,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194948,-0.002924,0.003750,0.249972,0,0);}
.m68_c00284{transform:matrix(0.194978,-0.002925,0.003750,0.249972,0,0);-ms-transform:matrix(0.194978,-0.002925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194978,-0.002925,0.003750,0.249972,0,0);}
.m4_c00284{transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.195733,-0.002936,0.003750,0.249972,0,0);-ms-transform:matrix(0.195733,-0.002936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195733,-0.002936,0.003750,0.249972,0,0);}
.mcf_c00284{transform:matrix(0.195743,-0.002936,0.003750,0.249972,0,0);-ms-transform:matrix(0.195743,-0.002936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195743,-0.002936,0.003750,0.249972,0,0);}
.m35_c00284{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.195983,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.195983,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195983,-0.002940,0.003750,0.249972,0,0);}
.m2a_c00284{transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);}
.me9_c00284{transform:matrix(0.196148,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196148,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196148,-0.002942,0.003750,0.249972,0,0);}
.mc9_c00284{transform:matrix(0.196208,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196208,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196208,-0.002943,0.003750,0.249972,0,0);}
.m60_c00284{transform:matrix(0.196483,-0.002947,0.003750,0.249972,0,0);-ms-transform:matrix(0.196483,-0.002947,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196483,-0.002947,0.003750,0.249972,0,0);}
.m8f_c00284{transform:matrix(0.196583,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196583,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196583,-0.002949,0.003750,0.249972,0,0);}
.me4_c00284{transform:matrix(0.196688,-0.002950,0.003750,0.249972,0,0);-ms-transform:matrix(0.196688,-0.002950,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196688,-0.002950,0.003750,0.249972,0,0);}
.m2c_c00284{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.198423,-0.002976,0.003750,0.249972,0,0);-ms-transform:matrix(0.198423,-0.002976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198423,-0.002976,0.003750,0.249972,0,0);}
.m6c_c00284{transform:matrix(0.198668,-0.002980,0.003750,0.249972,0,0);-ms-transform:matrix(0.198668,-0.002980,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198668,-0.002980,0.003750,0.249972,0,0);}
.m42_c00284{transform:matrix(0.198943,-0.002984,0.003750,0.249972,0,0);-ms-transform:matrix(0.198943,-0.002984,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198943,-0.002984,0.003750,0.249972,0,0);}
.m79_c00284{transform:matrix(0.199018,-0.002985,0.003750,0.249972,0,0);-ms-transform:matrix(0.199018,-0.002985,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199018,-0.002985,0.003750,0.249972,0,0);}
.m15_c00284{transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);-ms-transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);}
.mb3_c00284{transform:matrix(0.199853,-0.002998,0.003750,0.249972,0,0);-ms-transform:matrix(0.199853,-0.002998,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199853,-0.002998,0.003750,0.249972,0,0);}
.mf1_c00284{transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);}
.m98_c00284{transform:matrix(0.200337,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200337,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200337,-0.003005,0.003750,0.249972,0,0);}
.m3a_c00284{transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);}
.mad_c00284{transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);-ms-transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200607,-0.003009,0.003750,0.249972,0,0);}
.m3e_c00284{transform:matrix(0.200877,-0.003013,0.003750,0.249972,0,0);-ms-transform:matrix(0.200877,-0.003013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200877,-0.003013,0.003750,0.249972,0,0);}
.mb4_c00284{transform:matrix(0.201337,-0.003020,0.003750,0.249972,0,0);-ms-transform:matrix(0.201337,-0.003020,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201337,-0.003020,0.003750,0.249972,0,0);}
.m25_c00284{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.202692,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202692,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202692,-0.003040,0.003750,0.249972,0,0);}
.m6a_c00284{transform:matrix(0.202817,-0.003042,0.003750,0.249972,0,0);-ms-transform:matrix(0.202817,-0.003042,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202817,-0.003042,0.003750,0.249972,0,0);}
.m5a_c00284{transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);}
.m62_c00284{transform:matrix(0.203102,-0.003047,0.003750,0.249972,0,0);-ms-transform:matrix(0.203102,-0.003047,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203102,-0.003047,0.003750,0.249972,0,0);}
.m9b_c00284{transform:matrix(0.203267,-0.003049,0.003750,0.249972,0,0);-ms-transform:matrix(0.203267,-0.003049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203267,-0.003049,0.003750,0.249972,0,0);}
.mf6_c00284{transform:matrix(0.203297,-0.003049,0.003750,0.249972,0,0);-ms-transform:matrix(0.203297,-0.003049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203297,-0.003049,0.003750,0.249972,0,0);}
.mf9_c00284{transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);}
.m4e_c00284{transform:matrix(0.205077,-0.003076,0.003750,0.249972,0,0);-ms-transform:matrix(0.205077,-0.003076,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205077,-0.003076,0.003750,0.249972,0,0);}
.m41_c00284{transform:matrix(0.205542,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205542,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205542,-0.003083,0.003750,0.249972,0,0);}
.m93_c00284{transform:matrix(0.205812,-0.003087,0.003750,0.249972,0,0);-ms-transform:matrix(0.205812,-0.003087,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205812,-0.003087,0.003750,0.249972,0,0);}
.mb0_c00284{transform:matrix(0.205892,-0.003088,0.003750,0.249972,0,0);-ms-transform:matrix(0.205892,-0.003088,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205892,-0.003088,0.003750,0.249972,0,0);}
.mec_c00284{transform:matrix(0.206297,-0.003094,0.003750,0.249972,0,0);-ms-transform:matrix(0.206297,-0.003094,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206297,-0.003094,0.003750,0.249972,0,0);}
.m97_c00284{transform:matrix(0.206452,-0.003097,0.003750,0.249972,0,0);-ms-transform:matrix(0.206452,-0.003097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206452,-0.003097,0.003750,0.249972,0,0);}
.m86_c00284{transform:matrix(0.206477,-0.003097,0.003750,0.249972,0,0);-ms-transform:matrix(0.206477,-0.003097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206477,-0.003097,0.003750,0.249972,0,0);}
.mab_c00284{transform:matrix(0.206517,-0.003098,0.003750,0.249972,0,0);-ms-transform:matrix(0.206517,-0.003098,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206517,-0.003098,0.003750,0.249972,0,0);}
.meb_c00284{transform:matrix(0.206987,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.206987,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206987,-0.003105,0.003750,0.249972,0,0);}
.m71_c00284{transform:matrix(0.207102,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207102,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207102,-0.003107,0.003750,0.249972,0,0);}
.mcb_c00284{transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);}
.m3c_c00284{transform:matrix(0.207632,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207632,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207632,-0.003114,0.003750,0.249972,0,0);}
.m8b_c00284{transform:matrix(0.207977,-0.003120,0.003750,0.249972,0,0);-ms-transform:matrix(0.207977,-0.003120,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207977,-0.003120,0.003750,0.249972,0,0);}
.m2f_c00284{transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.208432,-0.003126,0.003750,0.249972,0,0);-ms-transform:matrix(0.208432,-0.003126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208432,-0.003126,0.003750,0.249972,0,0);}
.mf0_c00284{transform:matrix(0.208507,-0.003128,0.003750,0.249972,0,0);-ms-transform:matrix(0.208507,-0.003128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208507,-0.003128,0.003750,0.249972,0,0);}
.m66_c00284{transform:matrix(0.208717,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208717,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208717,-0.003131,0.003750,0.249972,0,0);}
.m3d_c00284{transform:matrix(0.209256,-0.003139,0.003750,0.249972,0,0);-ms-transform:matrix(0.209256,-0.003139,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209256,-0.003139,0.003750,0.249972,0,0);}
.md0_c00284{transform:matrix(0.209446,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209446,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209446,-0.003142,0.003750,0.249972,0,0);}
.md3_c00284{transform:matrix(0.209506,-0.003143,0.003750,0.249972,0,0);-ms-transform:matrix(0.209506,-0.003143,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209506,-0.003143,0.003750,0.249972,0,0);}
.m44_c00284{transform:matrix(0.209846,-0.003148,0.003750,0.249972,0,0);-ms-transform:matrix(0.209846,-0.003148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209846,-0.003148,0.003750,0.249972,0,0);}
.m40_c00284{transform:matrix(0.210721,-0.003161,0.003750,0.249972,0,0);-ms-transform:matrix(0.210721,-0.003161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210721,-0.003161,0.003750,0.249972,0,0);}
.m4a_c00284{transform:matrix(0.211001,-0.003165,0.003750,0.249972,0,0);-ms-transform:matrix(0.211001,-0.003165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211001,-0.003165,0.003750,0.249972,0,0);}
.m7c_c00284{transform:matrix(0.211071,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211071,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211071,-0.003166,0.003750,0.249972,0,0);}
.m81_c00284{transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);}
.mdb_c00284{transform:matrix(0.211471,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211471,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211471,-0.003172,0.003750,0.249972,0,0);}
.m61_c00284{transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);-ms-transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);}
.m9_c00284{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);-ms-transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212276,-0.003184,0.003750,0.249972,0,0);}
.m87_c00284{transform:matrix(0.213196,-0.003198,0.003750,0.249972,0,0);-ms-transform:matrix(0.213196,-0.003198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213196,-0.003198,0.003750,0.249972,0,0);}
.mca_c00284{transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);-ms-transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);}
.mda_c00284{transform:matrix(0.214316,-0.003215,0.003750,0.249972,0,0);-ms-transform:matrix(0.214316,-0.003215,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214316,-0.003215,0.003750,0.249972,0,0);}
.ma2_c00284{transform:matrix(0.217401,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217401,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217401,-0.003261,0.003750,0.249972,0,0);}
.me6_c00284{transform:matrix(0.218715,-0.003281,0.003750,0.249972,0,0);-ms-transform:matrix(0.218715,-0.003281,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218715,-0.003281,0.003750,0.249972,0,0);}
.m64_c00284{transform:matrix(0.219295,-0.003289,0.003750,0.249972,0,0);-ms-transform:matrix(0.219295,-0.003289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219295,-0.003289,0.003750,0.249972,0,0);}
.m65_c00284{transform:matrix(0.219825,-0.003297,0.003750,0.249972,0,0);-ms-transform:matrix(0.219825,-0.003297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219825,-0.003297,0.003750,0.249972,0,0);}
.md6_c00284{transform:matrix(0.220770,-0.003312,0.003750,0.249972,0,0);-ms-transform:matrix(0.220770,-0.003312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220770,-0.003312,0.003750,0.249972,0,0);}
.m90_c00284{transform:matrix(0.221470,-0.003322,0.003750,0.249972,0,0);-ms-transform:matrix(0.221470,-0.003322,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221470,-0.003322,0.003750,0.249972,0,0);}
.m57_c00284{transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);-ms-transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);}
.m67_c00284{transform:matrix(0.222935,-0.003344,0.003750,0.249972,0,0);-ms-transform:matrix(0.222935,-0.003344,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222935,-0.003344,0.003750,0.249972,0,0);}
.m8a_c00284{transform:matrix(0.224505,-0.003368,0.003750,0.249972,0,0);-ms-transform:matrix(0.224505,-0.003368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224505,-0.003368,0.003750,0.249972,0,0);}
.m69_c00284{transform:matrix(0.225675,-0.003385,0.003750,0.249972,0,0);-ms-transform:matrix(0.225675,-0.003385,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225675,-0.003385,0.003750,0.249972,0,0);}
.m3f_c00284{transform:matrix(0.226220,-0.003393,0.003750,0.249972,0,0);-ms-transform:matrix(0.226220,-0.003393,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226220,-0.003393,0.003750,0.249972,0,0);}
.m48_c00284{transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);-ms-transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);}
.m7e_c00284{transform:matrix(0.230499,-0.003457,0.003750,0.249972,0,0);-ms-transform:matrix(0.230499,-0.003457,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230499,-0.003457,0.003750,0.249972,0,0);}
.me2_c00284{transform:matrix(0.231864,-0.003478,0.003750,0.249972,0,0);-ms-transform:matrix(0.231864,-0.003478,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231864,-0.003478,0.003750,0.249972,0,0);}
.m9a_c00284{transform:matrix(0.234069,-0.003511,0.003750,0.249972,0,0);-ms-transform:matrix(0.234069,-0.003511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234069,-0.003511,0.003750,0.249972,0,0);}
.m96_c00284{transform:matrix(0.235444,-0.003532,0.003750,0.249972,0,0);-ms-transform:matrix(0.235444,-0.003532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235444,-0.003532,0.003750,0.249972,0,0);}
.ma8_c00284{transform:matrix(0.235459,-0.003532,0.003750,0.249972,0,0);-ms-transform:matrix(0.235459,-0.003532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235459,-0.003532,0.003750,0.249972,0,0);}
.md7_c00284{transform:matrix(0.235564,-0.003533,0.003750,0.249972,0,0);-ms-transform:matrix(0.235564,-0.003533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235564,-0.003533,0.003750,0.249972,0,0);}
.md8_c00284{transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);-ms-transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);}
.m91_c00284{transform:matrix(0.239543,-0.003593,0.003750,0.249972,0,0);-ms-transform:matrix(0.239543,-0.003593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239543,-0.003593,0.003750,0.249972,0,0);}
.mc5_c00284{transform:matrix(0.244298,-0.003664,0.003750,0.249972,0,0);-ms-transform:matrix(0.244298,-0.003664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244298,-0.003664,0.003750,0.249972,0,0);}
.md5_c00284{transform:matrix(0.246742,-0.003701,0.003750,0.249972,0,0);-ms-transform:matrix(0.246742,-0.003701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246742,-0.003701,0.003750,0.249972,0,0);}
.md9_c00284{transform:matrix(0.247012,-0.003705,0.003750,0.249972,0,0);-ms-transform:matrix(0.247012,-0.003705,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247012,-0.003705,0.003750,0.249972,0,0);}
.m11_c00284{transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.255411,-0.003831,0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,-0.003831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,-0.003831,0.003750,0.249972,0,0);}
.mc3_c00284{transform:matrix(0.259806,-0.003897,0.003750,0.249972,0,0);-ms-transform:matrix(0.259806,-0.003897,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259806,-0.003897,0.003750,0.249972,0,0);}
.me1_c00284{transform:matrix(0.265020,-0.003975,0.003750,0.249972,0,0);-ms-transform:matrix(0.265020,-0.003975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265020,-0.003975,0.003750,0.249972,0,0);}
.mcc_c00284{transform:matrix(0.265495,-0.003982,0.003750,0.249972,0,0);-ms-transform:matrix(0.265495,-0.003982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265495,-0.003982,0.003750,0.249972,0,0);}
.mc0_c00284{transform:matrix(0.292612,-0.004389,0.003750,0.249972,0,0);-ms-transform:matrix(0.292612,-0.004389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292612,-0.004389,0.003750,0.249972,0,0);}
.mc2_c00284{transform:matrix(0.295857,-0.004438,0.003750,0.249972,0,0);-ms-transform:matrix(0.295857,-0.004438,0.003750,0.249972,0,0);-webkit-transform:matrix(0.295857,-0.004438,0.003750,0.249972,0,0);}
.mbf_c00284{transform:matrix(0.301251,-0.004519,0.003750,0.249972,0,0);-ms-transform:matrix(0.301251,-0.004519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301251,-0.004519,0.003750,0.249972,0,0);}
.m94_c00284{transform:matrix(0.311765,-0.004676,0.003750,0.249972,0,0);-ms-transform:matrix(0.311765,-0.004676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311765,-0.004676,0.003750,0.249972,0,0);}
.mc4_c00284{transform:matrix(0.315889,-0.004738,0.003750,0.249972,0,0);-ms-transform:matrix(0.315889,-0.004738,0.003750,0.249972,0,0);-webkit-transform:matrix(0.315889,-0.004738,0.003750,0.249972,0,0);}
.mc1_c00284{transform:matrix(0.332668,-0.004990,0.003750,0.249972,0,0);-ms-transform:matrix(0.332668,-0.004990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.332668,-0.004990,0.003750,0.249972,0,0);}
.mee_c00284{transform:matrix(0.344501,-0.005168,0.003750,0.249972,0,0);-ms-transform:matrix(0.344501,-0.005168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344501,-0.005168,0.003750,0.249972,0,0);}
.mde_c00284{transform:matrix(0.378027,-0.005670,0.003750,0.249972,0,0);-ms-transform:matrix(0.378027,-0.005670,0.003750,0.249972,0,0);-webkit-transform:matrix(0.378027,-0.005670,0.003750,0.249972,0,0);}
.mdd_c00284{transform:matrix(0.414483,-0.006217,0.003750,0.249972,0,0);-ms-transform:matrix(0.414483,-0.006217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.414483,-0.006217,0.003750,0.249972,0,0);}
.mdc_c00284{transform:matrix(0.506148,-0.007592,0.003750,0.249972,0,0);-ms-transform:matrix(0.506148,-0.007592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.506148,-0.007592,0.003750,0.249972,0,0);}
.mbe_c00284{transform:matrix(0.576320,-0.008645,0.003750,0.249972,0,0);-ms-transform:matrix(0.576320,-0.008645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.576320,-0.008645,0.003750,0.249972,0,0);}
.me0_c00284{transform:matrix(0.691202,-0.010368,0.003750,0.249972,0,0);-ms-transform:matrix(0.691202,-0.010368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.691202,-0.010368,0.003750,0.249972,0,0);}
.me7_c00284{transform:matrix(0.713300,-0.010699,0.003750,0.249972,0,0);-ms-transform:matrix(0.713300,-0.010699,0.003750,0.249972,0,0);-webkit-transform:matrix(0.713300,-0.010699,0.003750,0.249972,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:0.000000px;}
.fc0_c00284{color:transparent;}
.fs11_c00284{font-size:30.453425px;}
.fsf_c00284{font-size:40.954607px;}
.fs10_c00284{font-size:57.756497px;}
.fsd_c00284{font-size:59.856733px;}
.fse_c00284{font-size:60.906851px;}
.fs7_c00284{font-size:61.956969px;}
.fs4_c00284{font-size:63.000000px;}
.fsb_c00284{font-size:63.007087px;}
.fs6_c00284{font-size:64.057205px;}
.fs5_c00284{font-size:65.100000px;}
.fs9_c00284{font-size:65.107323px;}
.fs8_c00284{font-size:66.157441px;}
.fsa_c00284{font-size:68.257678px;}
.fs2_c00284{font-size:69.300000px;}
.fsc_c00284{font-size:69.307796px;}
.fs3_c00284{font-size:70.350000px;}
.fs12_c00284{font-size:71.408032px;}
.fs1_c00284{font-size:72.450000px;}
.fs0_c00284{font-size:98.700000px;}
.y0_c00284{bottom:0.000000px;}
.yf3_c00284{bottom:27.353258px;}
.yf2_c00284{bottom:27.353648px;}
.yf1_c00284{bottom:27.354338px;}
.yf0_c00284{bottom:27.354878px;}
.yef_c00284{bottom:27.355463px;}
.ye8_c00284{bottom:42.073763px;}
.ye9_c00284{bottom:43.050945px;}
.yea_c00284{bottom:43.386998px;}
.yeb_c00284{bottom:44.257223px;}
.yec_c00284{bottom:44.422163px;}
.yed_c00284{bottom:44.594648px;}
.yee_c00284{bottom:44.900835px;}
.ye1_c00284{bottom:63.553575px;}
.ye4_c00284{bottom:63.553733px;}
.ye3_c00284{bottom:63.553995px;}
.ye2_c00284{bottom:63.554040px;}
.ye6_c00284{bottom:63.554048px;}
.ye5_c00284{bottom:63.554438px;}
.ye7_c00284{bottom:63.554625px;}
.ye0_c00284{bottom:83.722020px;}
.ydf_c00284{bottom:83.722215px;}
.yde_c00284{bottom:83.722928px;}
.ydd_c00284{bottom:83.723423px;}
.ydc_c00284{bottom:83.723918px;}
.ydb_c00284{bottom:83.724630px;}
.yda_c00284{bottom:83.725148px;}
.yd7_c00284{bottom:110.391960px;}
.yd8_c00284{bottom:110.392020px;}
.yd6_c00284{bottom:110.392155px;}
.yd9_c00284{bottom:110.392695px;}
.yd5_c00284{bottom:117.061035px;}
.yd0_c00284{bottom:117.061350px;}
.yd4_c00284{bottom:117.061358px;}
.yd3_c00284{bottom:117.061380px;}
.yd2_c00284{bottom:117.061493px;}
.ycf_c00284{bottom:117.061718px;}
.yce_c00284{bottom:117.061890px;}
.yd1_c00284{bottom:117.062055px;}
.yc6_c00284{bottom:126.874388px;}
.yc7_c00284{bottom:127.633703px;}
.yc8_c00284{bottom:128.327310px;}
.yc9_c00284{bottom:128.827410px;}
.yca_c00284{bottom:129.936338px;}
.ycb_c00284{bottom:131.610375px;}
.ycc_c00284{bottom:132.044205px;}
.ycd_c00284{bottom:132.431108px;}
.ybf_c00284{bottom:148.634355px;}
.yc1_c00284{bottom:148.635038px;}
.yc0_c00284{bottom:148.635060px;}
.yc2_c00284{bottom:148.635420px;}
.yc3_c00284{bottom:148.635435px;}
.yc4_c00284{bottom:148.635540px;}
.yc5_c00284{bottom:148.635878px;}
.yba_c00284{bottom:169.523595px;}
.yb8_c00284{bottom:169.523903px;}
.ybb_c00284{bottom:169.523955px;}
.ybc_c00284{bottom:169.524210px;}
.yb9_c00284{bottom:169.524263px;}
.ybd_c00284{bottom:169.524593px;}
.ybe_c00284{bottom:169.525148px;}
.yaf_c00284{bottom:179.794215px;}
.yb0_c00284{bottom:180.595688px;}
.yb1_c00284{bottom:181.234935px;}
.yb2_c00284{bottom:181.586340px;}
.yb3_c00284{bottom:182.452995px;}
.yb4_c00284{bottom:182.906745px;}
.yb5_c00284{bottom:183.336000px;}
.yb6_c00284{bottom:183.819600px;}
.yb7_c00284{bottom:184.142288px;}
.ya7_c00284{bottom:198.423225px;}
.ya8_c00284{bottom:199.055205px;}
.ya9_c00284{bottom:199.391940px;}
.yaa_c00284{bottom:199.617128px;}
.yab_c00284{bottom:200.143433px;}
.yac_c00284{bottom:200.419515px;}
.yad_c00284{bottom:200.935905px;}
.yae_c00284{bottom:201.271500px;}
.y9d_c00284{bottom:218.825940px;}
.y9e_c00284{bottom:218.826368px;}
.ya0_c00284{bottom:218.826578px;}
.y9f_c00284{bottom:218.827050px;}
.ya3_c00284{bottom:218.827125px;}
.ya4_c00284{bottom:218.827163px;}
.ya2_c00284{bottom:218.827170px;}
.ya1_c00284{bottom:218.827238px;}
.ya6_c00284{bottom:218.827245px;}
.ya5_c00284{bottom:218.827740px;}
.y98_c00284{bottom:235.746930px;}
.y9c_c00284{bottom:235.747215px;}
.y99_c00284{bottom:235.747313px;}
.y97_c00284{bottom:235.747575px;}
.y96_c00284{bottom:235.747620px;}
.y9b_c00284{bottom:235.747628px;}
.y9a_c00284{bottom:235.747868px;}
.y92_c00284{bottom:253.803878px;}
.y93_c00284{bottom:253.803938px;}
.y94_c00284{bottom:253.804365px;}
.y91_c00284{bottom:253.804590px;}
.y95_c00284{bottom:253.804770px;}
.y90_c00284{bottom:253.804875px;}
.y8e_c00284{bottom:253.805070px;}
.y8f_c00284{bottom:253.805198px;}
.y8a_c00284{bottom:271.596533px;}
.y8b_c00284{bottom:271.596638px;}
.y8c_c00284{bottom:271.596765px;}
.y89_c00284{bottom:271.597050px;}
.y86_c00284{bottom:271.597298px;}
.y87_c00284{bottom:271.597358px;}
.y8d_c00284{bottom:271.597493px;}
.y88_c00284{bottom:271.597695px;}
.y85_c00284{bottom:289.030530px;}
.y84_c00284{bottom:289.030597px;}
.y83_c00284{bottom:289.031093px;}
.y82_c00284{bottom:289.031438px;}
.y81_c00284{bottom:289.031805px;}
.y80_c00284{bottom:289.031895px;}
.y7e_c00284{bottom:289.032008px;}
.y7f_c00284{bottom:289.032090px;}
.y76_c00284{bottom:306.858195px;}
.y78_c00284{bottom:306.858315px;}
.y75_c00284{bottom:306.858413px;}
.y74_c00284{bottom:306.858585px;}
.y77_c00284{bottom:306.858750px;}
.y79_c00284{bottom:306.859043px;}
.y7d_c00284{bottom:306.859140px;}
.y7a_c00284{bottom:306.859298px;}
.y7c_c00284{bottom:306.859335px;}
.y7b_c00284{bottom:306.859808px;}
.y73_c00284{bottom:324.463500px;}
.y72_c00284{bottom:324.463973px;}
.y71_c00284{bottom:324.464468px;}
.y6f_c00284{bottom:324.464685px;}
.y70_c00284{bottom:324.464790px;}
.y6b_c00284{bottom:324.465083px;}
.y6e_c00284{bottom:324.465158px;}
.y6d_c00284{bottom:324.465180px;}
.y6a_c00284{bottom:324.465300px;}
.y6c_c00284{bottom:324.465720px;}
.y61_c00284{bottom:336.952958px;}
.y62_c00284{bottom:338.036108px;}
.y63_c00284{bottom:338.370945px;}
.y64_c00284{bottom:339.594353px;}
.y65_c00284{bottom:340.338323px;}
.y66_c00284{bottom:340.692788px;}
.y67_c00284{bottom:341.553660px;}
.y68_c00284{bottom:341.762423px;}
.y69_c00284{bottom:342.122303px;}
.y59_c00284{bottom:355.041480px;}
.y5a_c00284{bottom:355.313783px;}
.y5b_c00284{bottom:356.567123px;}
.y5c_c00284{bottom:356.700998px;}
.y5d_c00284{bottom:357.797498px;}
.y5e_c00284{bottom:358.092488px;}
.y5f_c00284{bottom:358.708440px;}
.y60_c00284{bottom:358.898610px;}
.y53_c00284{bottom:370.165980px;}
.y54_c00284{bottom:370.844295px;}
.y55_c00284{bottom:371.173958px;}
.y56_c00284{bottom:371.774790px;}
.y57_c00284{bottom:373.409108px;}
.y58_c00284{bottom:375.046298px;}
.y4b_c00284{bottom:388.525185px;}
.y4c_c00284{bottom:389.234730px;}
.y4d_c00284{bottom:389.419215px;}
.y4e_c00284{bottom:389.656433px;}
.y4f_c00284{bottom:390.246465px;}
.y50_c00284{bottom:390.472943px;}
.y51_c00284{bottom:391.081433px;}
.y52_c00284{bottom:391.365990px;}
.y45_c00284{bottom:403.649490px;}
.y46_c00284{bottom:404.451953px;}
.y47_c00284{bottom:405.699293px;}
.y48_c00284{bottom:406.233263px;}
.y49_c00284{bottom:407.587260px;}
.y4a_c00284{bottom:408.338903px;}
.y3e_c00284{bottom:424.514760px;}
.y40_c00284{bottom:424.514820px;}
.y43_c00284{bottom:424.514963px;}
.y3f_c00284{bottom:424.515143px;}
.y44_c00284{bottom:424.515240px;}
.y3c_c00284{bottom:424.515255px;}
.y3d_c00284{bottom:424.515383px;}
.y41_c00284{bottom:424.515398px;}
.y42_c00284{bottom:424.515435px;}
.y35_c00284{bottom:439.293000px;}
.y36_c00284{bottom:439.511318px;}
.y37_c00284{bottom:440.251163px;}
.y38_c00284{bottom:441.005543px;}
.y39_c00284{bottom:441.839865px;}
.y3a_c00284{bottom:442.536510px;}
.y3b_c00284{bottom:443.298180px;}
.y2b_c00284{bottom:456.576000px;}
.y2c_c00284{bottom:457.513500px;}
.y2d_c00284{bottom:457.801500px;}
.y2e_c00284{bottom:458.047500px;}
.y2f_c00284{bottom:458.518500px;}
.y30_c00284{bottom:458.829000px;}
.y31_c00284{bottom:459.112500px;}
.y32_c00284{bottom:459.457500px;}
.y33_c00284{bottom:460.086000px;}
.y34_c00284{bottom:460.353000px;}
.y2a_c00284{bottom:476.904000px;}
.y21_c00284{bottom:490.864500px;}
.y22_c00284{bottom:491.136000px;}
.y23_c00284{bottom:492.289500px;}
.y24_c00284{bottom:492.549000px;}
.y25_c00284{bottom:493.245000px;}
.y26_c00284{bottom:493.480500px;}
.y27_c00284{bottom:494.035500px;}
.y28_c00284{bottom:494.328000px;}
.y29_c00284{bottom:495.210000px;}
.y19_c00284{bottom:507.874500px;}
.y1a_c00284{bottom:508.273500px;}
.y1b_c00284{bottom:508.659000px;}
.y1c_c00284{bottom:509.545500px;}
.y1d_c00284{bottom:509.875500px;}
.y1e_c00284{bottom:511.000500px;}
.y1f_c00284{bottom:511.363500px;}
.y20_c00284{bottom:512.551500px;}
.y11_c00284{bottom:524.886000px;}
.y12_c00284{bottom:525.148500px;}
.y13_c00284{bottom:525.445500px;}
.y14_c00284{bottom:526.609500px;}
.y15_c00284{bottom:526.999500px;}
.y16_c00284{bottom:528.132000px;}
.y17_c00284{bottom:529.675500px;}
.y18_c00284{bottom:530.077500px;}
.ya_c00284{bottom:541.897500px;}
.yb_c00284{bottom:542.899500px;}
.yc_c00284{bottom:543.232500px;}
.yd_c00284{bottom:544.075500px;}
.ye_c00284{bottom:544.515000px;}
.yf_c00284{bottom:546.327000px;}
.y10_c00284{bottom:546.721500px;}
.y2_c00284{bottom:558.904500px;}
.y3_c00284{bottom:559.438500px;}
.y4_c00284{bottom:559.777500px;}
.y5_c00284{bottom:560.967000px;}
.y6_c00284{bottom:561.454500px;}
.y7_c00284{bottom:561.870000px;}
.y8_c00284{bottom:563.239500px;}
.y9_c00284{bottom:563.736000px;}
.y1_c00284{bottom:579.928500px;}
.h13_c00284{height:30.453425px;}
.h11_c00284{height:40.954607px;}
.h12_c00284{height:57.756497px;}
.hf_c00284{height:59.856733px;}
.h10_c00284{height:60.906851px;}
.h9_c00284{height:61.956969px;}
.h6_c00284{height:63.000000px;}
.hd_c00284{height:63.007087px;}
.h8_c00284{height:64.057205px;}
.h7_c00284{height:65.100000px;}
.hb_c00284{height:65.107323px;}
.ha_c00284{height:66.157441px;}
.hc_c00284{height:68.257678px;}
.h4_c00284{height:69.300000px;}
.he_c00284{height:69.307796px;}
.h5_c00284{height:70.350000px;}
.h14_c00284{height:71.408032px;}
.h3_c00284{height:72.450000px;}
.h2_c00284{height:98.700000px;}
.h1_c00284{height:618.750000px;}
.h0_c00284{height:619.050000px;}
.w0_c00284{width:359.100000px;}
.w1_c00284{width:359.250000px;}
.x0_c00284{left:0.000000px;}
.x57_c00284{left:10.801463px;}
.x67_c00284{left:14.579505px;}
.x4c_c00284{left:16.442918px;}
.x3_c00284{left:22.105500px;}
.x1c_c00284{left:23.673000px;}
.x68_c00284{left:25.110368px;}
.x3b_c00284{left:26.480452px;}
.x47_c00284{left:28.775925px;}
.x30_c00284{left:31.281000px;}
.x6d_c00284{left:32.397150px;}
.x7d_c00284{left:33.555960px;}
.x10_c00284{left:36.451500px;}
.x62_c00284{left:38.610840px;}
.x1d_c00284{left:41.775000px;}
.x17_c00284{left:46.401000px;}
.x48_c00284{left:48.229718px;}
.x4_c00284{left:50.200500px;}
.x11_c00284{left:52.075500px;}
.x65_c00284{left:54.543728px;}
.x80_c00284{left:56.161770px;}
.x5b_c00284{left:57.246248px;}
.x69_c00284{left:61.564058px;}
.x51_c00284{left:62.915648px;}
.x35_c00284{left:63.993982px;}
.x5_c00284{left:68.014500px;}
.x18_c00284{left:69.051000px;}
.x43_c00284{left:71.169473px;}
.x77_c00284{left:72.364568px;}
.x3c_c00284{left:73.676535px;}
.x4d_c00284{left:76.650218px;}
.x5c_c00284{left:78.037928px;}
.x66_c00284{left:81.006690px;}
.xb_c00284{left:83.140500px;}
.x2b_c00284{left:86.233500px;}
.x44_c00284{left:87.645735px;}
.x25_c00284{left:89.910000px;}
.x3f_c00284{left:91.127168px;}
.x74_c00284{left:92.617185px;}
.x31_c00284{left:95.158500px;}
.x79_c00284{left:99.367133px;}
.x75_c00284{left:101.797268px;}
.x2c_c00284{left:105.472500px;}
.x36_c00284{left:106.929135px;}
.x7e_c00284{left:108.703710px;}
.x6b_c00284{left:110.592548px;}
.x26_c00284{left:112.050000px;}
.x12_c00284{left:113.349000px;}
.x70_c00284{left:114.849735px;}
.x6c_c00284{left:115.999058px;}
.x6e_c00284{left:117.187208px;}
.x1e_c00284{left:118.692000px;}
.xc_c00284{left:121.491000px;}
.x52_c00284{left:123.671805px;}
.x37_c00284{left:126.912135px;}
.x5d_c00284{left:129.343470px;}
.x6_c00284{left:130.642500px;}
.x81_c00284{left:132.039848px;}
.x13_c00284{left:133.876500px;}
.x1f_c00284{left:135.993000px;}
.x49_c00284{left:137.787068px;}
.x27_c00284{left:139.320000px;}
.xd_c00284{left:141.472500px;}
.x32_c00284{left:145.450500px;}
.x3d_c00284{left:147.030330px;}
.x1_c00284{left:153.360000px;}
.x7_c00284{left:156.294000px;}
.x28_c00284{left:162.810000px;}
.x71_c00284{left:165.272948px;}
.x5e_c00284{left:170.928330px;}
.x58_c00284{left:172.819913px;}
.x2d_c00284{left:173.988000px;}
.x40_c00284{left:175.379948px;}
.x6a_c00284{left:176.597933px;}
.x8_c00284{left:178.186500px;}
.x82_c00284{left:180.914850px;}
.x20_c00284{left:182.358000px;}
.x59_c00284{left:187.671743px;}
.x7a_c00284{left:190.367108px;}
.x63_c00284{left:192.257423px;}
.x14_c00284{left:193.473000px;}
.x5f_c00284{left:196.311045px;}
.x21_c00284{left:198.096000px;}
.x45_c00284{left:199.447365px;}
.x33_c00284{left:201.072000px;}
.x53_c00284{left:202.251990px;}
.x4e_c00284{left:204.525458px;}
.x19_c00284{left:206.755500px;}
.x7b_c00284{left:210.618653px;}
.x38_c00284{left:211.972260px;}
.x7f_c00284{left:214.221383px;}
.x2e_c00284{left:215.893500px;}
.x54_c00284{left:218.724203px;}
.x60_c00284{left:220.881030px;}
.xe_c00284{left:223.806000px;}
.x39_c00284{left:225.743865px;}
.x29_c00284{left:226.800000px;}
.x1a_c00284{left:228.079500px;}
.x61_c00284{left:232.492140px;}
.x76_c00284{left:233.571900px;}
.x22_c00284{left:235.074000px;}
.xf_c00284{left:241.707000px;}
.x3a_c00284{left:243.566370px;}
.x41_c00284{left:245.047598px;}
.x34_c00284{left:247.515000px;}
.x9_c00284{left:250.276500px;}
.x23_c00284{left:254.526000px;}
.x55_c00284{left:255.718028px;}
.x2f_c00284{left:257.751000px;}
.x72_c00284{left:261.087390px;}
.x64_c00284{left:265.706438px;}
.x42_c00284{left:268.819178px;}
.x4f_c00284{left:272.044920px;}
.x15_c00284{left:274.734000px;}
.xa_c00284{left:276.396000px;}
.x2_c00284{left:277.560000px;}
.x73_c00284{left:278.679045px;}
.x46_c00284{left:281.287223px;}
.x7c_c00284{left:282.447308px;}
.x50_c00284{left:283.661903px;}
.x4a_c00284{left:290.643840px;}
.x78_c00284{left:292.440113px;}
.x6f_c00284{left:294.057488px;}
.x16_c00284{left:295.888500px;}
.x1b_c00284{left:297.948000px;}
.x56_c00284{left:299.463383px;}
.x3e_c00284{left:302.299673px;}
.x4b_c00284{left:304.222043px;}
.x2a_c00284{left:306.450000px;}
.x5a_c00284{left:310.805940px;}
.x24_c00284{left:313.312500px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.fs11_c00284{font-size:27.069711pt;}
.fsf_c00284{font-size:36.404095pt;}
.fs10_c00284{font-size:51.339108pt;}
.fsd_c00284{font-size:53.205985pt;}
.fse_c00284{font-size:54.139423pt;}
.fs7_c00284{font-size:55.072861pt;}
.fs4_c00284{font-size:56.000000pt;}
.fsb_c00284{font-size:56.006300pt;}
.fs6_c00284{font-size:56.939738pt;}
.fs5_c00284{font-size:57.866667pt;}
.fs9_c00284{font-size:57.873176pt;}
.fs8_c00284{font-size:58.806615pt;}
.fsa_c00284{font-size:60.673491pt;}
.fs2_c00284{font-size:61.600000pt;}
.fsc_c00284{font-size:61.606930pt;}
.fs3_c00284{font-size:62.533333pt;}
.fs12_c00284{font-size:63.473806pt;}
.fs1_c00284{font-size:64.400000pt;}
.fs0_c00284{font-size:87.733333pt;}
.y0_c00284{bottom:0.000000pt;}
.yf3_c00284{bottom:24.314007pt;}
.yf2_c00284{bottom:24.314353pt;}
.yf1_c00284{bottom:24.314967pt;}
.yf0_c00284{bottom:24.315447pt;}
.yef_c00284{bottom:24.315967pt;}
.ye8_c00284{bottom:37.398900pt;}
.ye9_c00284{bottom:38.267507pt;}
.yea_c00284{bottom:38.566220pt;}
.yeb_c00284{bottom:39.339753pt;}
.yec_c00284{bottom:39.486367pt;}
.yed_c00284{bottom:39.639687pt;}
.yee_c00284{bottom:39.911853pt;}
.ye1_c00284{bottom:56.492067pt;}
.ye4_c00284{bottom:56.492207pt;}
.ye3_c00284{bottom:56.492440pt;}
.ye2_c00284{bottom:56.492480pt;}
.ye6_c00284{bottom:56.492487pt;}
.ye5_c00284{bottom:56.492833pt;}
.ye7_c00284{bottom:56.493000pt;}
.ye0_c00284{bottom:74.419573pt;}
.ydf_c00284{bottom:74.419747pt;}
.yde_c00284{bottom:74.420380pt;}
.ydd_c00284{bottom:74.420820pt;}
.ydc_c00284{bottom:74.421260pt;}
.ydb_c00284{bottom:74.421893pt;}
.yda_c00284{bottom:74.422353pt;}
.yd7_c00284{bottom:98.126187pt;}
.yd8_c00284{bottom:98.126240pt;}
.yd6_c00284{bottom:98.126360pt;}
.yd9_c00284{bottom:98.126840pt;}
.yd5_c00284{bottom:104.054253pt;}
.yd0_c00284{bottom:104.054533pt;}
.yd4_c00284{bottom:104.054540pt;}
.yd3_c00284{bottom:104.054560pt;}
.yd2_c00284{bottom:104.054660pt;}
.ycf_c00284{bottom:104.054860pt;}
.yce_c00284{bottom:104.055013pt;}
.yd1_c00284{bottom:104.055160pt;}
.yc6_c00284{bottom:112.777233pt;}
.yc7_c00284{bottom:113.452180pt;}
.yc8_c00284{bottom:114.068720pt;}
.yc9_c00284{bottom:114.513253pt;}
.yca_c00284{bottom:115.498967pt;}
.ycb_c00284{bottom:116.987000pt;}
.ycc_c00284{bottom:117.372627pt;}
.ycd_c00284{bottom:117.716540pt;}
.ybf_c00284{bottom:132.119427pt;}
.yc1_c00284{bottom:132.120033pt;}
.yc0_c00284{bottom:132.120053pt;}
.yc2_c00284{bottom:132.120373pt;}
.yc3_c00284{bottom:132.120387pt;}
.yc4_c00284{bottom:132.120480pt;}
.yc5_c00284{bottom:132.120780pt;}
.yba_c00284{bottom:150.687640pt;}
.yb8_c00284{bottom:150.687913pt;}
.ybb_c00284{bottom:150.687960pt;}
.ybc_c00284{bottom:150.688187pt;}
.yb9_c00284{bottom:150.688233pt;}
.ybd_c00284{bottom:150.688527pt;}
.ybe_c00284{bottom:150.689020pt;}
.yaf_c00284{bottom:159.817080pt;}
.yb0_c00284{bottom:160.529500pt;}
.yb1_c00284{bottom:161.097720pt;}
.yb2_c00284{bottom:161.410080pt;}
.yb3_c00284{bottom:162.180440pt;}
.yb4_c00284{bottom:162.583773pt;}
.yb5_c00284{bottom:162.965333pt;}
.yb6_c00284{bottom:163.395200pt;}
.yb7_c00284{bottom:163.682033pt;}
.ya7_c00284{bottom:176.376200pt;}
.ya8_c00284{bottom:176.937960pt;}
.ya9_c00284{bottom:177.237280pt;}
.yaa_c00284{bottom:177.437447pt;}
.yab_c00284{bottom:177.905273pt;}
.yac_c00284{bottom:178.150680pt;}
.yad_c00284{bottom:178.609693pt;}
.yae_c00284{bottom:178.908000pt;}
.y9d_c00284{bottom:194.511947pt;}
.y9e_c00284{bottom:194.512327pt;}
.ya0_c00284{bottom:194.512513pt;}
.y9f_c00284{bottom:194.512933pt;}
.ya3_c00284{bottom:194.513000pt;}
.ya4_c00284{bottom:194.513033pt;}
.ya2_c00284{bottom:194.513040pt;}
.ya1_c00284{bottom:194.513100pt;}
.ya6_c00284{bottom:194.513107pt;}
.ya5_c00284{bottom:194.513547pt;}
.y98_c00284{bottom:209.552827pt;}
.y9c_c00284{bottom:209.553080pt;}
.y99_c00284{bottom:209.553167pt;}
.y97_c00284{bottom:209.553400pt;}
.y96_c00284{bottom:209.553440pt;}
.y9b_c00284{bottom:209.553447pt;}
.y9a_c00284{bottom:209.553660pt;}
.y92_c00284{bottom:225.603447pt;}
.y93_c00284{bottom:225.603500pt;}
.y94_c00284{bottom:225.603880pt;}
.y91_c00284{bottom:225.604080pt;}
.y95_c00284{bottom:225.604240pt;}
.y90_c00284{bottom:225.604333pt;}
.y8e_c00284{bottom:225.604507pt;}
.y8f_c00284{bottom:225.604620pt;}
.y8a_c00284{bottom:241.419140pt;}
.y8b_c00284{bottom:241.419233pt;}
.y8c_c00284{bottom:241.419347pt;}
.y89_c00284{bottom:241.419600pt;}
.y86_c00284{bottom:241.419820pt;}
.y87_c00284{bottom:241.419873pt;}
.y8d_c00284{bottom:241.419993pt;}
.y88_c00284{bottom:241.420173pt;}
.y85_c00284{bottom:256.916027pt;}
.y84_c00284{bottom:256.916087pt;}
.y83_c00284{bottom:256.916527pt;}
.y82_c00284{bottom:256.916833pt;}
.y81_c00284{bottom:256.917160pt;}
.y80_c00284{bottom:256.917240pt;}
.y7e_c00284{bottom:256.917340pt;}
.y7f_c00284{bottom:256.917413pt;}
.y76_c00284{bottom:272.762840pt;}
.y78_c00284{bottom:272.762947pt;}
.y75_c00284{bottom:272.763033pt;}
.y74_c00284{bottom:272.763187pt;}
.y77_c00284{bottom:272.763333pt;}
.y79_c00284{bottom:272.763593pt;}
.y7d_c00284{bottom:272.763680pt;}
.y7a_c00284{bottom:272.763820pt;}
.y7c_c00284{bottom:272.763853pt;}
.y7b_c00284{bottom:272.764273pt;}
.y73_c00284{bottom:288.412000pt;}
.y72_c00284{bottom:288.412420pt;}
.y71_c00284{bottom:288.412860pt;}
.y6f_c00284{bottom:288.413053pt;}
.y70_c00284{bottom:288.413147pt;}
.y6b_c00284{bottom:288.413407pt;}
.y6e_c00284{bottom:288.413473pt;}
.y6d_c00284{bottom:288.413493pt;}
.y6a_c00284{bottom:288.413600pt;}
.y6c_c00284{bottom:288.413973pt;}
.y61_c00284{bottom:299.513740pt;}
.y62_c00284{bottom:300.476540pt;}
.y63_c00284{bottom:300.774173pt;}
.y64_c00284{bottom:301.861647pt;}
.y65_c00284{bottom:302.522953pt;}
.y66_c00284{bottom:302.838033pt;}
.y67_c00284{bottom:303.603253pt;}
.y68_c00284{bottom:303.788820pt;}
.y69_c00284{bottom:304.108713pt;}
.y59_c00284{bottom:315.592427pt;}
.y5a_c00284{bottom:315.834473pt;}
.y5b_c00284{bottom:316.948553pt;}
.y5c_c00284{bottom:317.067553pt;}
.y5d_c00284{bottom:318.042220pt;}
.y5e_c00284{bottom:318.304433pt;}
.y5f_c00284{bottom:318.851947pt;}
.y60_c00284{bottom:319.020987pt;}
.y53_c00284{bottom:329.036427pt;}
.y54_c00284{bottom:329.639373pt;}
.y55_c00284{bottom:329.932407pt;}
.y56_c00284{bottom:330.466480pt;}
.y57_c00284{bottom:331.919207pt;}
.y58_c00284{bottom:333.374487pt;}
.y4b_c00284{bottom:345.355720pt;}
.y4c_c00284{bottom:345.986427pt;}
.y4d_c00284{bottom:346.150413pt;}
.y4e_c00284{bottom:346.361273pt;}
.y4f_c00284{bottom:346.885747pt;}
.y50_c00284{bottom:347.087060pt;}
.y51_c00284{bottom:347.627940pt;}
.y52_c00284{bottom:347.880880pt;}
.y45_c00284{bottom:358.799547pt;}
.y46_c00284{bottom:359.512847pt;}
.y47_c00284{bottom:360.621593pt;}
.y48_c00284{bottom:361.096233pt;}
.y49_c00284{bottom:362.299787pt;}
.y4a_c00284{bottom:362.967913pt;}
.y3e_c00284{bottom:377.346453pt;}
.y40_c00284{bottom:377.346507pt;}
.y43_c00284{bottom:377.346633pt;}
.y3f_c00284{bottom:377.346793pt;}
.y44_c00284{bottom:377.346880pt;}
.y3c_c00284{bottom:377.346893pt;}
.y3d_c00284{bottom:377.347007pt;}
.y41_c00284{bottom:377.347020pt;}
.y42_c00284{bottom:377.347053pt;}
.y35_c00284{bottom:390.482667pt;}
.y36_c00284{bottom:390.676727pt;}
.y37_c00284{bottom:391.334367pt;}
.y38_c00284{bottom:392.004927pt;}
.y39_c00284{bottom:392.746547pt;}
.y3a_c00284{bottom:393.365787pt;}
.y3b_c00284{bottom:394.042827pt;}
.y2b_c00284{bottom:405.845333pt;}
.y2c_c00284{bottom:406.678667pt;}
.y2d_c00284{bottom:406.934667pt;}
.y2e_c00284{bottom:407.153333pt;}
.y2f_c00284{bottom:407.572000pt;}
.y30_c00284{bottom:407.848000pt;}
.y31_c00284{bottom:408.100000pt;}
.y32_c00284{bottom:408.406667pt;}
.y33_c00284{bottom:408.965333pt;}
.y34_c00284{bottom:409.202667pt;}
.y2a_c00284{bottom:423.914667pt;}
.y21_c00284{bottom:436.324000pt;}
.y22_c00284{bottom:436.565333pt;}
.y23_c00284{bottom:437.590667pt;}
.y24_c00284{bottom:437.821333pt;}
.y25_c00284{bottom:438.440000pt;}
.y26_c00284{bottom:438.649333pt;}
.y27_c00284{bottom:439.142667pt;}
.y28_c00284{bottom:439.402667pt;}
.y29_c00284{bottom:440.186667pt;}
.y19_c00284{bottom:451.444000pt;}
.y1a_c00284{bottom:451.798667pt;}
.y1b_c00284{bottom:452.141333pt;}
.y1c_c00284{bottom:452.929333pt;}
.y1d_c00284{bottom:453.222667pt;}
.y1e_c00284{bottom:454.222667pt;}
.y1f_c00284{bottom:454.545333pt;}
.y20_c00284{bottom:455.601333pt;}
.y11_c00284{bottom:466.565333pt;}
.y12_c00284{bottom:466.798667pt;}
.y13_c00284{bottom:467.062667pt;}
.y14_c00284{bottom:468.097333pt;}
.y15_c00284{bottom:468.444000pt;}
.y16_c00284{bottom:469.450667pt;}
.y17_c00284{bottom:470.822667pt;}
.y18_c00284{bottom:471.180000pt;}
.ya_c00284{bottom:481.686667pt;}
.yb_c00284{bottom:482.577333pt;}
.yc_c00284{bottom:482.873333pt;}
.yd_c00284{bottom:483.622667pt;}
.ye_c00284{bottom:484.013333pt;}
.yf_c00284{bottom:485.624000pt;}
.y10_c00284{bottom:485.974667pt;}
.y2_c00284{bottom:496.804000pt;}
.y3_c00284{bottom:497.278667pt;}
.y4_c00284{bottom:497.580000pt;}
.y5_c00284{bottom:498.637333pt;}
.y6_c00284{bottom:499.070667pt;}
.y7_c00284{bottom:499.440000pt;}
.y8_c00284{bottom:500.657333pt;}
.y9_c00284{bottom:501.098667pt;}
.y1_c00284{bottom:515.492000pt;}
.h13_c00284{height:27.069711pt;}
.h11_c00284{height:36.404095pt;}
.h12_c00284{height:51.339108pt;}
.hf_c00284{height:53.205985pt;}
.h10_c00284{height:54.139423pt;}
.h9_c00284{height:55.072861pt;}
.h6_c00284{height:56.000000pt;}
.hd_c00284{height:56.006300pt;}
.h8_c00284{height:56.939738pt;}
.h7_c00284{height:57.866667pt;}
.hb_c00284{height:57.873176pt;}
.ha_c00284{height:58.806615pt;}
.hc_c00284{height:60.673491pt;}
.h4_c00284{height:61.600000pt;}
.he_c00284{height:61.606930pt;}
.h5_c00284{height:62.533333pt;}
.h14_c00284{height:63.473806pt;}
.h3_c00284{height:64.400000pt;}
.h2_c00284{height:87.733333pt;}
.h1_c00284{height:550.000000pt;}
.h0_c00284{height:550.266667pt;}
.w0_c00284{width:319.200000pt;}
.w1_c00284{width:319.333333pt;}
.x0_c00284{left:0.000000pt;}
.x57_c00284{left:9.601300pt;}
.x67_c00284{left:12.959560pt;}
.x4c_c00284{left:14.615927pt;}
.x3_c00284{left:19.649333pt;}
.x1c_c00284{left:21.042667pt;}
.x68_c00284{left:22.320327pt;}
.x3b_c00284{left:23.538180pt;}
.x47_c00284{left:25.578600pt;}
.x30_c00284{left:27.805333pt;}
.x6d_c00284{left:28.797467pt;}
.x7d_c00284{left:29.827520pt;}
.x10_c00284{left:32.401333pt;}
.x62_c00284{left:34.320747pt;}
.x1d_c00284{left:37.133333pt;}
.x17_c00284{left:41.245333pt;}
.x48_c00284{left:42.870860pt;}
.x4_c00284{left:44.622667pt;}
.x11_c00284{left:46.289333pt;}
.x65_c00284{left:48.483313pt;}
.x80_c00284{left:49.921573pt;}
.x5b_c00284{left:50.885553pt;}
.x69_c00284{left:54.723607pt;}
.x51_c00284{left:55.925020pt;}
.x35_c00284{left:56.883540pt;}
.x5_c00284{left:60.457333pt;}
.x18_c00284{left:61.378667pt;}
.x43_c00284{left:63.261753pt;}
.x77_c00284{left:64.324060pt;}
.x3c_c00284{left:65.490253pt;}
.x4d_c00284{left:68.133527pt;}
.x5c_c00284{left:69.367047pt;}
.x66_c00284{left:72.005947pt;}
.xb_c00284{left:73.902667pt;}
.x2b_c00284{left:76.652000pt;}
.x44_c00284{left:77.907320pt;}
.x25_c00284{left:79.920000pt;}
.x3f_c00284{left:81.001927pt;}
.x74_c00284{left:82.326387pt;}
.x31_c00284{left:84.585333pt;}
.x79_c00284{left:88.326340pt;}
.x75_c00284{left:90.486460pt;}
.x2c_c00284{left:93.753333pt;}
.x36_c00284{left:95.048120pt;}
.x7e_c00284{left:96.625520pt;}
.x6b_c00284{left:98.304487pt;}
.x26_c00284{left:99.600000pt;}
.x12_c00284{left:100.754667pt;}
.x70_c00284{left:102.088653pt;}
.x6c_c00284{left:103.110273pt;}
.x6e_c00284{left:104.166407pt;}
.x1e_c00284{left:105.504000pt;}
.xc_c00284{left:107.992000pt;}
.x52_c00284{left:109.930493pt;}
.x37_c00284{left:112.810787pt;}
.x5d_c00284{left:114.971973pt;}
.x6_c00284{left:116.126667pt;}
.x81_c00284{left:117.368753pt;}
.x13_c00284{left:119.001333pt;}
.x1f_c00284{left:120.882667pt;}
.x49_c00284{left:122.477393pt;}
.x27_c00284{left:123.840000pt;}
.xd_c00284{left:125.753333pt;}
.x32_c00284{left:129.289333pt;}
.x3d_c00284{left:130.693627pt;}
.x1_c00284{left:136.320000pt;}
.x7_c00284{left:138.928000pt;}
.x28_c00284{left:144.720000pt;}
.x71_c00284{left:146.909287pt;}
.x5e_c00284{left:151.936293pt;}
.x58_c00284{left:153.617700pt;}
.x2d_c00284{left:154.656000pt;}
.x40_c00284{left:155.893287pt;}
.x6a_c00284{left:156.975940pt;}
.x8_c00284{left:158.388000pt;}
.x82_c00284{left:160.813200pt;}
.x20_c00284{left:162.096000pt;}
.x59_c00284{left:166.819327pt;}
.x7a_c00284{left:169.215207pt;}
.x63_c00284{left:170.895487pt;}
.x14_c00284{left:171.976000pt;}
.x5f_c00284{left:174.498707pt;}
.x21_c00284{left:176.085333pt;}
.x45_c00284{left:177.286547pt;}
.x33_c00284{left:178.730667pt;}
.x53_c00284{left:179.779547pt;}
.x4e_c00284{left:181.800407pt;}
.x19_c00284{left:183.782667pt;}
.x7b_c00284{left:187.216580pt;}
.x38_c00284{left:188.419787pt;}
.x7f_c00284{left:190.419007pt;}
.x2e_c00284{left:191.905333pt;}
.x54_c00284{left:194.421513pt;}
.x60_c00284{left:196.338693pt;}
.xe_c00284{left:198.938667pt;}
.x39_c00284{left:200.661213pt;}
.x29_c00284{left:201.600000pt;}
.x1a_c00284{left:202.737333pt;}
.x61_c00284{left:206.659680pt;}
.x76_c00284{left:207.619467pt;}
.x22_c00284{left:208.954667pt;}
.xf_c00284{left:214.850667pt;}
.x3a_c00284{left:216.503440pt;}
.x41_c00284{left:217.820087pt;}
.x34_c00284{left:220.013333pt;}
.x9_c00284{left:222.468000pt;}
.x23_c00284{left:226.245333pt;}
.x55_c00284{left:227.304913pt;}
.x2f_c00284{left:229.112000pt;}
.x72_c00284{left:232.077680pt;}
.x64_c00284{left:236.183500pt;}
.x42_c00284{left:238.950380pt;}
.x4f_c00284{left:241.817707pt;}
.x15_c00284{left:244.208000pt;}
.xa_c00284{left:245.685333pt;}
.x2_c00284{left:246.720000pt;}
.x73_c00284{left:247.714707pt;}
.x46_c00284{left:250.033087pt;}
.x7c_c00284{left:251.064273pt;}
.x50_c00284{left:252.143913pt;}
.x4a_c00284{left:258.350080pt;}
.x78_c00284{left:259.946767pt;}
.x6f_c00284{left:261.384433pt;}
.x16_c00284{left:263.012000pt;}
.x1b_c00284{left:264.842667pt;}
.x56_c00284{left:266.189673pt;}
.x3e_c00284{left:268.710820pt;}
.x4b_c00284{left:270.419593pt;}
.x2a_c00284{left:272.400000pt;}
.x5a_c00284{left:276.271947pt;}
.x24_c00284{left:278.500000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00285 {
    display:none;
  }
  .loading-indicator_c00285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00285 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00285 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00285" -> "#page-container .classname_c00285")
 */
.pf_c00285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00285 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00285 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00285 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00285 {overflow:visible;}
  }
}
.c_c00285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00285 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00285:after { /* webkit #35443 */
  content: '';
}
.t_c00285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00285 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00285 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00285 { /* info for Javascript */
  display:none;
}
.l_c00285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00285:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00285 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00285.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md6_c00285{transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012325,0.000000,0.000000,0.250000,0,0);}
.m9b_c00285{transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);}
.m68_c00285{transform:matrix(0.028800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028800,0.000000,0.000000,0.250000,0,0);}
.mc2_c00285{transform:matrix(0.066150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066150,0.000000,0.000000,0.250000,0,0);}
.mbe_c00285{transform:matrix(0.129990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129990,0.000000,0.000000,0.250000,0,0);}
.mb6_c00285{transform:matrix(0.133440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133440,0.000000,0.000000,0.250000,0,0);}
.me8_c00285{transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);}
.me0_c00285{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m9a_c00285{transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);}
.m6f_c00285{transform:matrix(0.147045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147045,0.000000,0.000000,0.250000,0,0);}
.mc5_c00285{transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);}
.mb3_c00285{transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);}
.mbc_c00285{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m59_c00285{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.mb9_c00285{transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);}
.m33_c00285{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00285{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m78_c00285{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.m42_c00285{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m8a_c00285{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m66_c00285{transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158905,0.000000,0.000000,0.250000,0,0);}
.m89_c00285{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.mdc_c00285{transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);}
.m43_c00285{transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);}
.mb8_c00285{transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160565,0.000000,0.000000,0.250000,0,0);}
.m4a_c00285{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m6b_c00285{transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162290,0.000000,0.000000,0.250000,0,0);}
.m55_c00285{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);}
.m37_c00285{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m53_c00285{transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);}
.m99_c00285{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m28_c00285{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m6e_c00285{transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);}
.m88_c00285{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{transform:matrix(0.165860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165860,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);}
.m87_c00285{transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);}
.mae_c00285{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m83_c00285{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m6a_c00285{transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);}
.mc6_c00285{transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);}
.m63_c00285{transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00285{transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m6d_c00285{transform:matrix(0.169390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169390,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.170030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170030,0.000000,0.000000,0.250000,0,0);}
.m94_c00285{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m79_c00285{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.me5_c00285{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.mbd_c00285{transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173415,0.000000,0.000000,0.250000,0,0);}
.m97_c00285{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.mb2_c00285{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m47_c00285{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.ma7_c00285{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m38_c00285{transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.md7_c00285{transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);}
.mdf_c00285{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.mdb_c00285{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.me1_c00285{transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);}
.mb7_c00285{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.me7_c00285{transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.mba_c00285{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);}
.m5e_c00285{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m77_c00285{transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);}
.m6c_c00285{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m72_c00285{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.mbf_c00285{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.mdd_c00285{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.me9_c00285{transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.mc1_c00285{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00285{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m62_c00285{transform:matrix(0.180105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180105,0.000000,0.000000,0.250000,0,0);}
.m60_c00285{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m8e_c00285{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m50_c00285{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m30_c00285{transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);}
.m9c_c00285{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.mde_c00285{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m81_c00285{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.md0_c00285{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m31_c00285{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00285{transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);}
.m58_c00285{transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);}
.m96_c00285{transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);}
.m56_c00285{transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);}
.m29_c00285{transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);}
.m84_c00285{transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);}
.mb1_c00285{transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);}
.m36_c00285{transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185490,0.000000,0.000000,0.250000,0,0);}
.mbb_c00285{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m25_c00285{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m34_c00285{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m9f_c00285{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.me3_c00285{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m7a_c00285{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00285{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.mb5_c00285{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.me6_c00285{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m5c_c00285{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.m2d_c00285{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m86_c00285{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00285{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m27_c00285{transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190195,0.000000,0.000000,0.250000,0,0);}
.me2_c00285{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m61_c00285{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.m51_c00285{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m4e_c00285{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m71_c00285{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.mc3_c00285{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.m35_c00285{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);}
.m48_c00285{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m76_c00285{transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);}
.m8c_c00285{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m3a_c00285{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00285{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);}
.m3f_c00285{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);}
.m95_c00285{transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);}
.m2a_c00285{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.m41_c00285{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.m3e_c00285{transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);}
.m82_c00285{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.mb0_c00285{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m73_c00285{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m85_c00285{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m5b_c00285{transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);}
.md5_c00285{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m54_c00285{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m3c_c00285{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.m8d_c00285{transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m93_c00285{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.mc7_c00285{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m69_c00285{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.m44_c00285{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.ma6_c00285{transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);}
.m49_c00285{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m2f_c00285{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.m57_c00285{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00285{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00285{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00285{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m64_c00285{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.mcf_c00285{transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);}
.m65_c00285{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.md1_c00285{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);}
.m70_c00285{transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);}
.m8f_c00285{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m32_c00285{transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);}
.m40_c00285{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.mad_c00285{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.ma4_c00285{transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00285{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.mcc_c00285{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00285{transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210260,0.000000,0.000000,0.250000,0,0);}
.ma5_c00285{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.me4_c00285{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m9e_c00285{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.md3_c00285{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.mcb_c00285{transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);}
.m8b_c00285{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);}
.mb4_c00285{transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);}
.md2_c00285{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00285{transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.m91_c00285{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.md8_c00285{transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.maa_c00285{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.mda_c00285{transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);}
.ma1_c00285{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00285{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.mab_c00285{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m90_c00285{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.md9_c00285{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mce_c00285{transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);}
.m9d_c00285{transform:matrix(0.218720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218720,0.000000,0.000000,0.250000,0,0);}
.m98_c00285{transform:matrix(0.218935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218935,0.000000,0.000000,0.250000,0,0);}
.md4_c00285{transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);}
.ma2_c00285{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.m7c_c00285{transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);}
.m7f_c00285{transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);}
.mca_c00285{transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);}
.m39_c00285{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m92_c00285{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m4c_c00285{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m45_c00285{transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226670,0.000000,0.000000,0.250000,0,0);}
.ma0_c00285{transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);}
.maf_c00285{transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);}
.m80_c00285{transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.231330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231330,0.000000,0.000000,0.250000,0,0);}
.ma9_c00285{transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.mac_c00285{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.243070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243070,0.000000,0.000000,0.250000,0,0);}
.mc0_c00285{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.mc8_c00285{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m67_c00285{transform:matrix(0.262570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262570,0.000000,0.000000,0.250000,0,0);}
.m75_c00285{transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);}
.ma3_c00285{transform:matrix(0.363400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363400,0.000000,0.000000,0.250000,0,0);}
.m74_c00285{transform:matrix(0.394575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394575,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
.fc0_c00285{color:transparent;}
.fsb_c00285{font-size:57.750000px;}
.fs4_c00285{font-size:58.800000px;}
.fs2_c00285{font-size:59.850000px;}
.fs8_c00285{font-size:60.900000px;}
.fs0_c00285{font-size:61.950000px;}
.fs3_c00285{font-size:63.000000px;}
.fs7_c00285{font-size:65.100000px;}
.fs5_c00285{font-size:66.150000px;}
.fsc_c00285{font-size:67.200000px;}
.fs6_c00285{font-size:68.250000px;}
.fs9_c00285{font-size:69.300000px;}
.fsd_c00285{font-size:70.350000px;}
.fsa_c00285{font-size:71.400000px;}
.fs1_c00285{font-size:72.450000px;}
.y0_c00285{bottom:0.000000px;}
.y93_c00285{bottom:31.467000px;}
.y92_c00285{bottom:48.886500px;}
.y91_c00285{bottom:66.367500px;}
.y90_c00285{bottom:83.317500px;}
.y8f_c00285{bottom:102.418500px;}
.y8e_c00285{bottom:116.437500px;}
.y8d_c00285{bottom:133.023000px;}
.y8c_c00285{bottom:133.681500px;}
.y8b_c00285{bottom:133.839000px;}
.y8a_c00285{bottom:134.365500px;}
.y89_c00285{bottom:134.535000px;}
.y88_c00285{bottom:135.232500px;}
.y87_c00285{bottom:135.432000px;}
.y86_c00285{bottom:136.086000px;}
.y85_c00285{bottom:149.233500px;}
.y84_c00285{bottom:149.664000px;}
.y83_c00285{bottom:150.438000px;}
.y82_c00285{bottom:150.721500px;}
.y81_c00285{bottom:150.978000px;}
.y80_c00285{bottom:152.163000px;}
.y7f_c00285{bottom:152.478000px;}
.y7e_c00285{bottom:153.144000px;}
.y7d_c00285{bottom:153.907500px;}
.y7c_c00285{bottom:170.112000px;}
.y7b_c00285{bottom:186.111000px;}
.y7a_c00285{bottom:186.451500px;}
.y79_c00285{bottom:187.108500px;}
.y78_c00285{bottom:187.393500px;}
.y77_c00285{bottom:187.722000px;}
.y76_c00285{bottom:188.482500px;}
.y75_c00285{bottom:188.748000px;}
.y74_c00285{bottom:202.900500px;}
.y73_c00285{bottom:203.430000px;}
.y72_c00285{bottom:204.129000px;}
.y71_c00285{bottom:204.397500px;}
.y70_c00285{bottom:205.272000px;}
.y6f_c00285{bottom:206.547000px;}
.y6e_c00285{bottom:206.956500px;}
.y6d_c00285{bottom:207.093000px;}
.y6c_c00285{bottom:219.679500px;}
.y6b_c00285{bottom:219.964500px;}
.y6a_c00285{bottom:221.092500px;}
.y69_c00285{bottom:221.920500px;}
.y68_c00285{bottom:222.490500px;}
.y67_c00285{bottom:223.611000px;}
.y66_c00285{bottom:224.103000px;}
.y65_c00285{bottom:237.214500px;}
.y64_c00285{bottom:237.903000px;}
.y63_c00285{bottom:238.561500px;}
.y62_c00285{bottom:238.845000px;}
.y61_c00285{bottom:239.601000px;}
.y60_c00285{bottom:239.934000px;}
.y5f_c00285{bottom:240.387000px;}
.y5e_c00285{bottom:240.735000px;}
.y5d_c00285{bottom:241.113000px;}
.y5c_c00285{bottom:253.413000px;}
.y5b_c00285{bottom:253.723500px;}
.y5a_c00285{bottom:254.242500px;}
.y59_c00285{bottom:254.583000px;}
.y58_c00285{bottom:255.591000px;}
.y57_c00285{bottom:255.784500px;}
.y56_c00285{bottom:256.965000px;}
.y55_c00285{bottom:257.215500px;}
.y54_c00285{bottom:257.427000px;}
.y53_c00285{bottom:257.854500px;}
.y52_c00285{bottom:270.120000px;}
.y51_c00285{bottom:271.179000px;}
.y50_c00285{bottom:271.533000px;}
.y4f_c00285{bottom:272.305500px;}
.y4e_c00285{bottom:273.196500px;}
.y4d_c00285{bottom:273.783000px;}
.y4c_c00285{bottom:289.122000px;}
.y4b_c00285{bottom:305.800500px;}
.y4a_c00285{bottom:321.250500px;}
.y49_c00285{bottom:321.525000px;}
.y48_c00285{bottom:321.816000px;}
.y47_c00285{bottom:322.074000px;}
.y46_c00285{bottom:322.836000px;}
.y45_c00285{bottom:323.079000px;}
.y44_c00285{bottom:323.527500px;}
.y43_c00285{bottom:324.273000px;}
.y42_c00285{bottom:340.594500px;}
.y41_c00285{bottom:355.909500px;}
.y40_c00285{bottom:356.499000px;}
.y3f_c00285{bottom:356.835000px;}
.y3e_c00285{bottom:357.492000px;}
.y3d_c00285{bottom:358.210500px;}
.y3c_c00285{bottom:359.190000px;}
.y3b_c00285{bottom:359.911500px;}
.y3a_c00285{bottom:373.726500px;}
.y39_c00285{bottom:374.296500px;}
.y38_c00285{bottom:374.572500px;}
.y37_c00285{bottom:375.388500px;}
.y36_c00285{bottom:375.534000px;}
.y35_c00285{bottom:376.207500px;}
.y34_c00285{bottom:376.393500px;}
.y33_c00285{bottom:376.552500px;}
.y32_c00285{bottom:376.921500px;}
.y31_c00285{bottom:391.174500px;}
.y30_c00285{bottom:392.046000px;}
.y2f_c00285{bottom:392.334000px;}
.y2e_c00285{bottom:392.580000px;}
.y2d_c00285{bottom:393.334500px;}
.y2c_c00285{bottom:394.200000px;}
.y2b_c00285{bottom:407.728500px;}
.y2a_c00285{bottom:408.219000px;}
.y29_c00285{bottom:408.478500px;}
.y28_c00285{bottom:409.122000px;}
.y27_c00285{bottom:409.750500px;}
.y26_c00285{bottom:409.968000px;}
.y25_c00285{bottom:410.335500px;}
.y24_c00285{bottom:410.937000px;}
.y23_c00285{bottom:411.210000px;}
.y22_c00285{bottom:424.999500px;}
.y21_c00285{bottom:425.358000px;}
.y20_c00285{bottom:426.220500px;}
.y1f_c00285{bottom:426.553500px;}
.y1e_c00285{bottom:426.994500px;}
.y1d_c00285{bottom:427.948500px;}
.y1c_c00285{bottom:428.254500px;}
.y1b_c00285{bottom:428.761500px;}
.y1a_c00285{bottom:442.576500px;}
.y19_c00285{bottom:442.726500px;}
.y18_c00285{bottom:443.533500px;}
.y17_c00285{bottom:444.387000px;}
.y16_c00285{bottom:444.633000px;}
.y15_c00285{bottom:445.500000px;}
.y14_c00285{bottom:460.213500px;}
.y13_c00285{bottom:477.639000px;}
.y12_c00285{bottom:493.839000px;}
.y11_c00285{bottom:494.118000px;}
.y10_c00285{bottom:494.709000px;}
.yf_c00285{bottom:494.997000px;}
.ye_c00285{bottom:495.621000px;}
.yd_c00285{bottom:496.299000px;}
.yc_c00285{bottom:496.530000px;}
.yb_c00285{bottom:509.920500px;}
.ya_c00285{bottom:511.029000px;}
.y9_c00285{bottom:511.855500px;}
.y8_c00285{bottom:512.593500px;}
.y7_c00285{bottom:512.794500px;}
.y6_c00285{bottom:512.952000px;}
.y5_c00285{bottom:513.270000px;}
.y4_c00285{bottom:529.234500px;}
.y3_c00285{bottom:546.003000px;}
.y2_c00285{bottom:562.836000px;}
.y1_c00285{bottom:578.953500px;}
.hd_c00285{height:57.750000px;}
.h6_c00285{height:58.800000px;}
.h4_c00285{height:59.850000px;}
.ha_c00285{height:60.900000px;}
.h2_c00285{height:61.950000px;}
.h5_c00285{height:63.000000px;}
.h9_c00285{height:65.100000px;}
.h7_c00285{height:66.150000px;}
.he_c00285{height:67.200000px;}
.h8_c00285{height:68.250000px;}
.hb_c00285{height:69.300000px;}
.hf_c00285{height:70.350000px;}
.hc_c00285{height:71.400000px;}
.h3_c00285{height:72.450000px;}
.h1_c00285{height:618.750000px;}
.h0_c00285{height:619.050000px;}
.w0_c00285{width:359.100000px;}
.w1_c00285{width:359.250000px;}
.x0_c00285{left:0.000000px;}
.x6b_c00285{left:37.602000px;}
.x38_c00285{left:43.593000px;}
.x67_c00285{left:44.799000px;}
.x6a_c00285{left:45.900000px;}
.x59_c00285{left:47.643000px;}
.x49_c00285{left:49.783500px;}
.x33_c00285{left:50.863500px;}
.x1d_c00285{left:52.525500px;}
.x2_c00285{left:53.730000px;}
.x55_c00285{left:61.830000px;}
.x39_c00285{left:64.642500px;}
.x68_c00285{left:68.959500px;}
.x1e_c00285{left:73.582500px;}
.x5d_c00285{left:74.620500px;}
.x24_c00285{left:77.223000px;}
.xa_c00285{left:79.650000px;}
.x44_c00285{left:80.860500px;}
.x11_c00285{left:85.590000px;}
.x34_c00285{left:87.051000px;}
.x65_c00285{left:88.650000px;}
.x19_c00285{left:92.736000px;}
.x45_c00285{left:94.078500px;}
.x53_c00285{left:95.854500px;}
.x60_c00285{left:100.017000px;}
.x12_c00285{left:102.060000px;}
.x5e_c00285{left:103.507500px;}
.x56_c00285{left:105.300000px;}
.x3_c00285{left:108.810000px;}
.x3a_c00285{left:110.889000px;}
.x4c_c00285{left:112.324500px;}
.x28_c00285{left:114.753000px;}
.x2e_c00285{left:118.662000px;}
.x40_c00285{left:122.449500px;}
.x71_c00285{left:123.661500px;}
.x6f_c00285{left:125.821500px;}
.xb_c00285{left:127.170000px;}
.x4_c00285{left:129.330000px;}
.x73_c00285{left:131.221500px;}
.x61_c00285{left:132.414000px;}
.x1f_c00285{left:135.159000px;}
.x2f_c00285{left:137.569500px;}
.x3b_c00285{left:139.177500px;}
.x13_c00285{left:141.750000px;}
.x5_c00285{left:146.070000px;}
.x62_c00285{left:147.838500px;}
.xc_c00285{left:149.040000px;}
.x51_c00285{left:151.899000px;}
.x29_c00285{left:156.603000px;}
.x76_c00285{left:159.840000px;}
.x14_c00285{left:162.270000px;}
.x46_c00285{left:165.696000px;}
.x69_c00285{left:168.070500px;}
.x25_c00285{left:169.833000px;}
.x1a_c00285{left:171.045000px;}
.x66_c00285{left:173.697000px;}
.x2a_c00285{left:177.393000px;}
.x63_c00285{left:183.460500px;}
.x41_c00285{left:185.364000px;}
.x1_c00285{left:188.460000px;}
.x77_c00285{left:190.350000px;}
.x20_c00285{left:191.854500px;}
.x4d_c00285{left:193.864500px;}
.x57_c00285{left:199.530000px;}
.x6d_c00285{left:201.025500px;}
.x30_c00285{left:203.179500px;}
.x3c_c00285{left:204.253500px;}
.x42_c00285{left:205.884000px;}
.x6_c00285{left:209.250000px;}
.x74_c00285{left:210.331500px;}
.x21_c00285{left:218.041500px;}
.x5a_c00285{left:220.768500px;}
.x4a_c00285{left:222.643500px;}
.x52_c00285{left:224.796000px;}
.xd_c00285{left:230.310000px;}
.x35_c00285{left:232.314000px;}
.x64_c00285{left:235.243500px;}
.x6c_c00285{left:236.674500px;}
.x1b_c00285{left:239.895000px;}
.x15_c00285{left:241.920000px;}
.xe_c00285{left:245.430000px;}
.x5b_c00285{left:247.984500px;}
.x26_c00285{left:250.293000px;}
.x5f_c00285{left:252.339000px;}
.x3d_c00285{left:253.725000px;}
.x16_c00285{left:258.660000px;}
.x2b_c00285{left:260.553000px;}
.x7_c00285{left:262.980000px;}
.x31_c00285{left:265.293000px;}
.x47_c00285{left:268.789500px;}
.x78_c00285{left:270.270000px;}
.x22_c00285{left:271.771500px;}
.x3e_c00285{left:273.639000px;}
.x32_c00285{left:276.873000px;}
.x17_c00285{left:281.610000px;}
.x4e_c00285{left:284.584500px;}
.x70_c00285{left:286.201500px;}
.xf_c00285{left:287.820000px;}
.x75_c00285{left:289.441500px;}
.x8_c00285{left:291.060000px;}
.x36_c00285{left:293.941500px;}
.x23_c00285{left:297.148500px;}
.x18_c00285{left:299.430000px;}
.x43_c00285{left:302.556000px;}
.x2c_c00285{left:304.833000px;}
.x10_c00285{left:306.720000px;}
.x4f_c00285{left:307.804500px;}
.x6e_c00285{left:309.151500px;}
.x3f_c00285{left:311.425500px;}
.x48_c00285{left:316.302000px;}
.x37_c00285{left:319.525500px;}
.x27_c00285{left:322.923000px;}
.x9_c00285{left:325.350000px;}
.x2d_c00285{left:326.703000px;}
.x54_c00285{left:327.784500px;}
.x5c_c00285{left:329.482500px;}
.x1c_c00285{left:332.232000px;}
.x58_c00285{left:334.260000px;}
.x4b_c00285{left:335.680500px;}
.x72_c00285{left:342.361500px;}
.x50_c00285{left:355.054500px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fsb_c00285{font-size:51.333333pt;}
.fs4_c00285{font-size:52.266667pt;}
.fs2_c00285{font-size:53.200000pt;}
.fs8_c00285{font-size:54.133333pt;}
.fs0_c00285{font-size:55.066667pt;}
.fs3_c00285{font-size:56.000000pt;}
.fs7_c00285{font-size:57.866667pt;}
.fs5_c00285{font-size:58.800000pt;}
.fsc_c00285{font-size:59.733333pt;}
.fs6_c00285{font-size:60.666667pt;}
.fs9_c00285{font-size:61.600000pt;}
.fsd_c00285{font-size:62.533333pt;}
.fsa_c00285{font-size:63.466667pt;}
.fs1_c00285{font-size:64.400000pt;}
.y0_c00285{bottom:0.000000pt;}
.y93_c00285{bottom:27.970667pt;}
.y92_c00285{bottom:43.454667pt;}
.y91_c00285{bottom:58.993333pt;}
.y90_c00285{bottom:74.060000pt;}
.y8f_c00285{bottom:91.038667pt;}
.y8e_c00285{bottom:103.500000pt;}
.y8d_c00285{bottom:118.242667pt;}
.y8c_c00285{bottom:118.828000pt;}
.y8b_c00285{bottom:118.968000pt;}
.y8a_c00285{bottom:119.436000pt;}
.y89_c00285{bottom:119.586667pt;}
.y88_c00285{bottom:120.206667pt;}
.y87_c00285{bottom:120.384000pt;}
.y86_c00285{bottom:120.965333pt;}
.y85_c00285{bottom:132.652000pt;}
.y84_c00285{bottom:133.034667pt;}
.y83_c00285{bottom:133.722667pt;}
.y82_c00285{bottom:133.974667pt;}
.y81_c00285{bottom:134.202667pt;}
.y80_c00285{bottom:135.256000pt;}
.y7f_c00285{bottom:135.536000pt;}
.y7e_c00285{bottom:136.128000pt;}
.y7d_c00285{bottom:136.806667pt;}
.y7c_c00285{bottom:151.210667pt;}
.y7b_c00285{bottom:165.432000pt;}
.y7a_c00285{bottom:165.734667pt;}
.y79_c00285{bottom:166.318667pt;}
.y78_c00285{bottom:166.572000pt;}
.y77_c00285{bottom:166.864000pt;}
.y76_c00285{bottom:167.540000pt;}
.y75_c00285{bottom:167.776000pt;}
.y74_c00285{bottom:180.356000pt;}
.y73_c00285{bottom:180.826667pt;}
.y72_c00285{bottom:181.448000pt;}
.y71_c00285{bottom:181.686667pt;}
.y70_c00285{bottom:182.464000pt;}
.y6f_c00285{bottom:183.597333pt;}
.y6e_c00285{bottom:183.961333pt;}
.y6d_c00285{bottom:184.082667pt;}
.y6c_c00285{bottom:195.270667pt;}
.y6b_c00285{bottom:195.524000pt;}
.y6a_c00285{bottom:196.526667pt;}
.y69_c00285{bottom:197.262667pt;}
.y68_c00285{bottom:197.769333pt;}
.y67_c00285{bottom:198.765333pt;}
.y66_c00285{bottom:199.202667pt;}
.y65_c00285{bottom:210.857333pt;}
.y64_c00285{bottom:211.469333pt;}
.y63_c00285{bottom:212.054667pt;}
.y62_c00285{bottom:212.306667pt;}
.y61_c00285{bottom:212.978667pt;}
.y60_c00285{bottom:213.274667pt;}
.y5f_c00285{bottom:213.677333pt;}
.y5e_c00285{bottom:213.986667pt;}
.y5d_c00285{bottom:214.322667pt;}
.y5c_c00285{bottom:225.256000pt;}
.y5b_c00285{bottom:225.532000pt;}
.y5a_c00285{bottom:225.993333pt;}
.y59_c00285{bottom:226.296000pt;}
.y58_c00285{bottom:227.192000pt;}
.y57_c00285{bottom:227.364000pt;}
.y56_c00285{bottom:228.413333pt;}
.y55_c00285{bottom:228.636000pt;}
.y54_c00285{bottom:228.824000pt;}
.y53_c00285{bottom:229.204000pt;}
.y52_c00285{bottom:240.106667pt;}
.y51_c00285{bottom:241.048000pt;}
.y50_c00285{bottom:241.362667pt;}
.y4f_c00285{bottom:242.049333pt;}
.y4e_c00285{bottom:242.841333pt;}
.y4d_c00285{bottom:243.362667pt;}
.y4c_c00285{bottom:256.997333pt;}
.y4b_c00285{bottom:271.822667pt;}
.y4a_c00285{bottom:285.556000pt;}
.y49_c00285{bottom:285.800000pt;}
.y48_c00285{bottom:286.058667pt;}
.y47_c00285{bottom:286.288000pt;}
.y46_c00285{bottom:286.965333pt;}
.y45_c00285{bottom:287.181333pt;}
.y44_c00285{bottom:287.580000pt;}
.y43_c00285{bottom:288.242667pt;}
.y42_c00285{bottom:302.750667pt;}
.y41_c00285{bottom:316.364000pt;}
.y40_c00285{bottom:316.888000pt;}
.y3f_c00285{bottom:317.186667pt;}
.y3e_c00285{bottom:317.770667pt;}
.y3d_c00285{bottom:318.409333pt;}
.y3c_c00285{bottom:319.280000pt;}
.y3b_c00285{bottom:319.921333pt;}
.y3a_c00285{bottom:332.201333pt;}
.y39_c00285{bottom:332.708000pt;}
.y38_c00285{bottom:332.953333pt;}
.y37_c00285{bottom:333.678667pt;}
.y36_c00285{bottom:333.808000pt;}
.y35_c00285{bottom:334.406667pt;}
.y34_c00285{bottom:334.572000pt;}
.y33_c00285{bottom:334.713333pt;}
.y32_c00285{bottom:335.041333pt;}
.y31_c00285{bottom:347.710667pt;}
.y30_c00285{bottom:348.485333pt;}
.y2f_c00285{bottom:348.741333pt;}
.y2e_c00285{bottom:348.960000pt;}
.y2d_c00285{bottom:349.630667pt;}
.y2c_c00285{bottom:350.400000pt;}
.y2b_c00285{bottom:362.425333pt;}
.y2a_c00285{bottom:362.861333pt;}
.y29_c00285{bottom:363.092000pt;}
.y28_c00285{bottom:363.664000pt;}
.y27_c00285{bottom:364.222667pt;}
.y26_c00285{bottom:364.416000pt;}
.y25_c00285{bottom:364.742667pt;}
.y24_c00285{bottom:365.277333pt;}
.y23_c00285{bottom:365.520000pt;}
.y22_c00285{bottom:377.777333pt;}
.y21_c00285{bottom:378.096000pt;}
.y20_c00285{bottom:378.862667pt;}
.y1f_c00285{bottom:379.158667pt;}
.y1e_c00285{bottom:379.550667pt;}
.y1d_c00285{bottom:380.398667pt;}
.y1c_c00285{bottom:380.670667pt;}
.y1b_c00285{bottom:381.121333pt;}
.y1a_c00285{bottom:393.401333pt;}
.y19_c00285{bottom:393.534667pt;}
.y18_c00285{bottom:394.252000pt;}
.y17_c00285{bottom:395.010667pt;}
.y16_c00285{bottom:395.229333pt;}
.y15_c00285{bottom:396.000000pt;}
.y14_c00285{bottom:409.078667pt;}
.y13_c00285{bottom:424.568000pt;}
.y12_c00285{bottom:438.968000pt;}
.y11_c00285{bottom:439.216000pt;}
.y10_c00285{bottom:439.741333pt;}
.yf_c00285{bottom:439.997333pt;}
.ye_c00285{bottom:440.552000pt;}
.yd_c00285{bottom:441.154667pt;}
.yc_c00285{bottom:441.360000pt;}
.yb_c00285{bottom:453.262667pt;}
.ya_c00285{bottom:454.248000pt;}
.y9_c00285{bottom:454.982667pt;}
.y8_c00285{bottom:455.638667pt;}
.y7_c00285{bottom:455.817333pt;}
.y6_c00285{bottom:455.957333pt;}
.y5_c00285{bottom:456.240000pt;}
.y4_c00285{bottom:470.430667pt;}
.y3_c00285{bottom:485.336000pt;}
.y2_c00285{bottom:500.298667pt;}
.y1_c00285{bottom:514.625333pt;}
.hd_c00285{height:51.333333pt;}
.h6_c00285{height:52.266667pt;}
.h4_c00285{height:53.200000pt;}
.ha_c00285{height:54.133333pt;}
.h2_c00285{height:55.066667pt;}
.h5_c00285{height:56.000000pt;}
.h9_c00285{height:57.866667pt;}
.h7_c00285{height:58.800000pt;}
.he_c00285{height:59.733333pt;}
.h8_c00285{height:60.666667pt;}
.hb_c00285{height:61.600000pt;}
.hf_c00285{height:62.533333pt;}
.hc_c00285{height:63.466667pt;}
.h3_c00285{height:64.400000pt;}
.h1_c00285{height:550.000000pt;}
.h0_c00285{height:550.266667pt;}
.w0_c00285{width:319.200000pt;}
.w1_c00285{width:319.333333pt;}
.x0_c00285{left:0.000000pt;}
.x6b_c00285{left:33.424000pt;}
.x38_c00285{left:38.749333pt;}
.x67_c00285{left:39.821333pt;}
.x6a_c00285{left:40.800000pt;}
.x59_c00285{left:42.349333pt;}
.x49_c00285{left:44.252000pt;}
.x33_c00285{left:45.212000pt;}
.x1d_c00285{left:46.689333pt;}
.x2_c00285{left:47.760000pt;}
.x55_c00285{left:54.960000pt;}
.x39_c00285{left:57.460000pt;}
.x68_c00285{left:61.297333pt;}
.x1e_c00285{left:65.406667pt;}
.x5d_c00285{left:66.329333pt;}
.x24_c00285{left:68.642667pt;}
.xa_c00285{left:70.800000pt;}
.x44_c00285{left:71.876000pt;}
.x11_c00285{left:76.080000pt;}
.x34_c00285{left:77.378667pt;}
.x65_c00285{left:78.800000pt;}
.x19_c00285{left:82.432000pt;}
.x45_c00285{left:83.625333pt;}
.x53_c00285{left:85.204000pt;}
.x60_c00285{left:88.904000pt;}
.x12_c00285{left:90.720000pt;}
.x5e_c00285{left:92.006667pt;}
.x56_c00285{left:93.600000pt;}
.x3_c00285{left:96.720000pt;}
.x3a_c00285{left:98.568000pt;}
.x4c_c00285{left:99.844000pt;}
.x28_c00285{left:102.002667pt;}
.x2e_c00285{left:105.477333pt;}
.x40_c00285{left:108.844000pt;}
.x71_c00285{left:109.921333pt;}
.x6f_c00285{left:111.841333pt;}
.xb_c00285{left:113.040000pt;}
.x4_c00285{left:114.960000pt;}
.x73_c00285{left:116.641333pt;}
.x61_c00285{left:117.701333pt;}
.x1f_c00285{left:120.141333pt;}
.x2f_c00285{left:122.284000pt;}
.x3b_c00285{left:123.713333pt;}
.x13_c00285{left:126.000000pt;}
.x5_c00285{left:129.840000pt;}
.x62_c00285{left:131.412000pt;}
.xc_c00285{left:132.480000pt;}
.x51_c00285{left:135.021333pt;}
.x29_c00285{left:139.202667pt;}
.x76_c00285{left:142.080000pt;}
.x14_c00285{left:144.240000pt;}
.x46_c00285{left:147.285333pt;}
.x69_c00285{left:149.396000pt;}
.x25_c00285{left:150.962667pt;}
.x1a_c00285{left:152.040000pt;}
.x66_c00285{left:154.397333pt;}
.x2a_c00285{left:157.682667pt;}
.x63_c00285{left:163.076000pt;}
.x41_c00285{left:164.768000pt;}
.x1_c00285{left:167.520000pt;}
.x77_c00285{left:169.200000pt;}
.x20_c00285{left:170.537333pt;}
.x4d_c00285{left:172.324000pt;}
.x57_c00285{left:177.360000pt;}
.x6d_c00285{left:178.689333pt;}
.x30_c00285{left:180.604000pt;}
.x3c_c00285{left:181.558667pt;}
.x42_c00285{left:183.008000pt;}
.x6_c00285{left:186.000000pt;}
.x74_c00285{left:186.961333pt;}
.x21_c00285{left:193.814667pt;}
.x5a_c00285{left:196.238667pt;}
.x4a_c00285{left:197.905333pt;}
.x52_c00285{left:199.818667pt;}
.xd_c00285{left:204.720000pt;}
.x35_c00285{left:206.501333pt;}
.x64_c00285{left:209.105333pt;}
.x6c_c00285{left:210.377333pt;}
.x1b_c00285{left:213.240000pt;}
.x15_c00285{left:215.040000pt;}
.xe_c00285{left:218.160000pt;}
.x5b_c00285{left:220.430667pt;}
.x26_c00285{left:222.482667pt;}
.x5f_c00285{left:224.301333pt;}
.x3d_c00285{left:225.533333pt;}
.x16_c00285{left:229.920000pt;}
.x2b_c00285{left:231.602667pt;}
.x7_c00285{left:233.760000pt;}
.x31_c00285{left:235.816000pt;}
.x47_c00285{left:238.924000pt;}
.x78_c00285{left:240.240000pt;}
.x22_c00285{left:241.574667pt;}
.x3e_c00285{left:243.234667pt;}
.x32_c00285{left:246.109333pt;}
.x17_c00285{left:250.320000pt;}
.x4e_c00285{left:252.964000pt;}
.x70_c00285{left:254.401333pt;}
.xf_c00285{left:255.840000pt;}
.x75_c00285{left:257.281333pt;}
.x8_c00285{left:258.720000pt;}
.x36_c00285{left:261.281333pt;}
.x23_c00285{left:264.132000pt;}
.x18_c00285{left:266.160000pt;}
.x43_c00285{left:268.938667pt;}
.x2c_c00285{left:270.962667pt;}
.x10_c00285{left:272.640000pt;}
.x4f_c00285{left:273.604000pt;}
.x6e_c00285{left:274.801333pt;}
.x3f_c00285{left:276.822667pt;}
.x48_c00285{left:281.157333pt;}
.x37_c00285{left:284.022667pt;}
.x27_c00285{left:287.042667pt;}
.x9_c00285{left:289.200000pt;}
.x2d_c00285{left:290.402667pt;}
.x54_c00285{left:291.364000pt;}
.x5c_c00285{left:292.873333pt;}
.x1c_c00285{left:295.317333pt;}
.x58_c00285{left:297.120000pt;}
.x4b_c00285{left:298.382667pt;}
.x72_c00285{left:304.321333pt;}
.x50_c00285{left:315.604000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00286 {
    display:none;
  }
  .loading-indicator_c00286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00286 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00286 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00286" -> "#page-container .classname_c00286")
 */
.pf_c00286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00286 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00286 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00286 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00286 {overflow:visible;}
  }
}
.c_c00286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00286 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00286:after { /* webkit #35443 */
  content: '';
}
.t_c00286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00286 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00286 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00286 { /* info for Javascript */
  display:none;
}
.l_c00286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00286:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00286 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00286.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c00286{transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.040910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040910,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.058820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058820,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122665,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{transform:matrix(0.129940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129940,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.131740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131740,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.135465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135465,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);}
.mb3_c00286{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);}
.m9e_c00286{transform:matrix(0.148010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148010,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.150030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150030,0.000000,0.000000,0.250000,0,0);}
.md7_c00286{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.157390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157390,0.000000,0.000000,0.250000,0,0);}
.ma5_c00286{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.ma1_c00286{transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.161135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161135,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.me2_c00286{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.164030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164030,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00286{transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);}
.md8_c00286{transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168790,0.000000,0.000000,0.250000,0,0);}
.ma0_c00286{transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.ma8_c00286{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.meb_c00286{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.ma6_c00286{transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.mef_c00286{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.ma2_c00286{transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173030,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.mf2_c00286{transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174055,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.md5_c00286{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);}
.me8_c00286{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.mcb_c00286{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00286{transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.mde_c00286{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.mdc_c00286{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.md4_c00286{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);}
.me5_c00286{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.mdf_c00286{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.mc8_c00286{transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);}
.mf0_c00286{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.maa_c00286{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.ma7_c00286{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.mcc_c00286{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.me0_c00286{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);}
.mc7_c00286{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00286{transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189370,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.m9b_c00286{transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.mbd_c00286{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mb5_c00286{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.me9_c00286{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.md1_c00286{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.me7_c00286{transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194870,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.mbf_c00286{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);}
.mcf_c00286{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.mb0_c00286{transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);}
.mdd_c00286{transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00286{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.mca_c00286{transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);}
.m98_c00286{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);}
.ma9_c00286{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.md6_c00286{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.mae_c00286{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);}
.mab_c00286{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.md2_c00286{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.me4_c00286{transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);}
.mb4_c00286{transform:matrix(0.204780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204780,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.mb2_c00286{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.mc9_c00286{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.mc4_c00286{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);}
.mb7_c00286{transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);}
.m95_c00286{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maf_c00286{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.md0_c00286{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);}
.mdb_c00286{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.mc3_c00286{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);}
.mcd_c00286{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.mc5_c00286{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.md9_c00286{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);}
.mb1_c00286{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.mda_c00286{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.med_c00286{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.me1_c00286{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);}
.mad_c00286{transform:matrix(0.223460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223460,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);}
.mc2_c00286{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);}
.m9c_c00286{transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224770,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);}
.mc6_c00286{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.md3_c00286{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.me3_c00286{transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230155,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233795,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);}
.me6_c00286{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.mba_c00286{transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.mce_c00286{transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00286{transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.mbc_c00286{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);}
.mc1_c00286{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);}
.mb9_c00286{transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.mc0_c00286{transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.280870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280870,0.000000,0.000000,0.250000,0,0);}
.mbb_c00286{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);}
.mec_c00286{transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);}
.mee_c00286{transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);}
.mac_c00286{transform:matrix(0.424170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424170,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.462300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462300,0.000000,0.000000,0.250000,0,0);}
.mb8_c00286{transform:matrix(0.488320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488320,0.000000,0.000000,0.250000,0,0);}
.mea_c00286{transform:matrix(0.847490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847490,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:0.000000px;}
.fc0_c00286{color:transparent;}
.fsf_c00286{font-size:55.650000px;}
.fsb_c00286{font-size:57.750000px;}
.fs7_c00286{font-size:58.800000px;}
.fs0_c00286{font-size:59.850000px;}
.fs3_c00286{font-size:60.900000px;}
.fs1_c00286{font-size:61.950000px;}
.fs2_c00286{font-size:63.000000px;}
.fs5_c00286{font-size:64.050000px;}
.fs9_c00286{font-size:65.100000px;}
.fs8_c00286{font-size:66.150000px;}
.fs10_c00286{font-size:67.200000px;}
.fsc_c00286{font-size:68.250000px;}
.fs6_c00286{font-size:70.350000px;}
.fsa_c00286{font-size:71.400000px;}
.fs4_c00286{font-size:72.450000px;}
.fse_c00286{font-size:77.700000px;}
.fsd_c00286{font-size:95.550000px;}
.y0_c00286{bottom:0.000000px;}
.y44_c00286{bottom:35.077500px;}
.y43_c00286{bottom:54.007500px;}
.y42_c00286{bottom:70.887000px;}
.y39_c00286{bottom:83.700000px;}
.y3a_c00286{bottom:83.881500px;}
.y3b_c00286{bottom:84.270000px;}
.y3c_c00286{bottom:84.618000px;}
.y3d_c00286{bottom:85.104000px;}
.y3e_c00286{bottom:85.981500px;}
.y3f_c00286{bottom:86.238000px;}
.y40_c00286{bottom:86.704500px;}
.y41_c00286{bottom:86.982000px;}
.y38_c00286{bottom:104.968500px;}
.y37_c00286{bottom:122.539500px;}
.y36_c00286{bottom:137.538000px;}
.y35_c00286{bottom:155.181000px;}
.y34_c00286{bottom:171.573000px;}
.y33_c00286{bottom:188.997000px;}
.y32_c00286{bottom:205.861500px;}
.y31_c00286{bottom:222.690000px;}
.y30_c00286{bottom:240.643500px;}
.y2f_c00286{bottom:257.943000px;}
.y2e_c00286{bottom:275.872500px;}
.y2d_c00286{bottom:294.175500px;}
.y2c_c00286{bottom:310.470000px;}
.y2b_c00286{bottom:326.476500px;}
.y20_c00286{bottom:341.011500px;}
.y21_c00286{bottom:341.197500px;}
.y22_c00286{bottom:341.331000px;}
.y23_c00286{bottom:341.544000px;}
.y24_c00286{bottom:342.189000px;}
.y25_c00286{bottom:342.565500px;}
.y26_c00286{bottom:343.017000px;}
.y27_c00286{bottom:343.359000px;}
.y28_c00286{bottom:343.656000px;}
.y29_c00286{bottom:343.798500px;}
.y2a_c00286{bottom:343.978500px;}
.y1f_c00286{bottom:359.988000px;}
.y1e_c00286{bottom:375.834000px;}
.y1d_c00286{bottom:392.778000px;}
.y1c_c00286{bottom:410.077500px;}
.y1b_c00286{bottom:428.329500px;}
.y1a_c00286{bottom:444.255000px;}
.y19_c00286{bottom:461.508000px;}
.y13_c00286{bottom:475.747500px;}
.y14_c00286{bottom:477.180000px;}
.y15_c00286{bottom:479.209500px;}
.y16_c00286{bottom:479.758500px;}
.y17_c00286{bottom:480.754500px;}
.y18_c00286{bottom:481.006500px;}
.y12_c00286{bottom:498.438000px;}
.yb_c00286{bottom:510.574500px;}
.yc_c00286{bottom:511.057500px;}
.yd_c00286{bottom:511.794000px;}
.ye_c00286{bottom:512.130000px;}
.yf_c00286{bottom:512.874000px;}
.y10_c00286{bottom:513.853500px;}
.y11_c00286{bottom:514.147500px;}
.y4_c00286{bottom:528.394500px;}
.y5_c00286{bottom:529.278000px;}
.y6_c00286{bottom:529.705500px;}
.y7_c00286{bottom:530.506500px;}
.y8_c00286{bottom:530.926500px;}
.y9_c00286{bottom:531.675000px;}
.ya_c00286{bottom:532.386000px;}
.y3_c00286{bottom:547.714500px;}
.y2_c00286{bottom:565.338000px;}
.y1_c00286{bottom:580.363500px;}
.h11_c00286{height:55.650000px;}
.hd_c00286{height:57.750000px;}
.h9_c00286{height:58.800000px;}
.h2_c00286{height:59.850000px;}
.h5_c00286{height:60.900000px;}
.h3_c00286{height:61.950000px;}
.h4_c00286{height:63.000000px;}
.h7_c00286{height:64.050000px;}
.hb_c00286{height:65.100000px;}
.ha_c00286{height:66.150000px;}
.h12_c00286{height:67.200000px;}
.he_c00286{height:68.250000px;}
.h8_c00286{height:70.350000px;}
.hc_c00286{height:71.400000px;}
.h6_c00286{height:72.450000px;}
.h10_c00286{height:77.700000px;}
.hf_c00286{height:95.550000px;}
.h1_c00286{height:618.750000px;}
.h0_c00286{height:619.050000px;}
.w0_c00286{width:359.100000px;}
.w1_c00286{width:359.250000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:10.530000px;}
.x15_c00286{left:11.802000px;}
.x31_c00286{left:15.658500px;}
.x42_c00286{left:17.145000px;}
.x78_c00286{left:18.898500px;}
.x3_c00286{left:19.980000px;}
.x2d_c00286{left:21.598500px;}
.x3e_c00286{left:23.758500px;}
.x66_c00286{left:31.858500px;}
.x24_c00286{left:33.478500px;}
.x6b_c00286{left:37.528500px;}
.x32_c00286{left:42.388500px;}
.x55_c00286{left:43.738500px;}
.x16_c00286{left:46.339500px;}
.x4a_c00286{left:49.408500px;}
.x52_c00286{left:51.298500px;}
.x37_c00286{left:53.188500px;}
.x61_c00286{left:54.538500px;}
.x67_c00286{left:60.208500px;}
.x29_c00286{left:63.718500px;}
.x43_c00286{left:65.742000px;}
.x33_c00286{left:69.118500px;}
.x3b_c00286{left:72.358500px;}
.x10_c00286{left:74.434500px;}
.x62_c00286{left:76.138500px;}
.x4_c00286{left:79.110000px;}
.x1f_c00286{left:80.728500px;}
.x71_c00286{left:81.808500px;}
.x1b_c00286{left:84.778500px;}
.x3c_c00286{left:86.128500px;}
.x6f_c00286{left:89.368500px;}
.x34_c00286{left:90.718500px;}
.x56_c00286{left:92.608500px;}
.x2e_c00286{left:96.658500px;}
.x17_c00286{left:98.983500px;}
.x5_c00286{left:101.250000px;}
.x4b_c00286{left:102.598500px;}
.xa_c00286{left:104.220000px;}
.x1c_c00286{left:111.778500px;}
.x59_c00286{left:112.858500px;}
.x3d_c00286{left:113.938500px;}
.x4f_c00286{left:115.558500px;}
.x6c_c00286{left:118.528500px;}
.xb_c00286{left:120.690000px;}
.x18_c00286{left:123.027000px;}
.x44_c00286{left:124.324500px;}
.x25_c00286{left:125.818500px;}
.x3f_c00286{left:129.328500px;}
.x63_c00286{left:130.678500px;}
.x1d_c00286{left:131.758500px;}
.x77_c00286{left:133.263000px;}
.x6d_c00286{left:135.538500px;}
.x38_c00286{left:137.428500px;}
.x2a_c00286{left:139.318500px;}
.x70_c00286{left:140.938500px;}
.x57_c00286{left:143.098500px;}
.x72_c00286{left:144.178500px;}
.x1_c00286{left:145.530000px;}
.x79_c00286{left:147.688500px;}
.x75_c00286{left:150.118500px;}
.x4c_c00286{left:152.008500px;}
.xc_c00286{left:154.710000px;}
.x6_c00286{left:157.140000px;}
.x45_c00286{left:158.616000px;}
.x11_c00286{left:162.102000px;}
.x40_c00286{left:170.908500px;}
.x50_c00286{left:173.608500px;}
.x2f_c00286{left:174.958500px;}
.x19_c00286{left:176.214000px;}
.x20_c00286{left:177.373500px;}
.x5d_c00286{left:180.898500px;}
.x39_c00286{left:182.788500px;}
.x7_c00286{left:186.840000px;}
.x58_c00286{left:190.078500px;}
.x12_c00286{left:192.133500px;}
.x51_c00286{left:194.668500px;}
.x26_c00286{left:197.368500px;}
.x46_c00286{left:199.660500px;}
.x21_c00286{left:203.541000px;}
.x53_c00286{left:206.818500px;}
.x5e_c00286{left:208.438500px;}
.x2b_c00286{left:210.328500px;}
.x76_c00286{left:211.678500px;}
.x35_c00286{left:213.298500px;}
.x7a_c00286{left:214.378500px;}
.x64_c00286{left:218.428500px;}
.x73_c00286{left:220.588500px;}
.xd_c00286{left:222.750000px;}
.x27_c00286{left:224.098500px;}
.x3a_c00286{left:225.718500px;}
.x5b_c00286{left:228.418500px;}
.x47_c00286{left:230.715000px;}
.x65_c00286{left:231.928500px;}
.x6e_c00286{left:234.088500px;}
.x8_c00286{left:237.060000px;}
.x68_c00286{left:239.218500px;}
.x74_c00286{left:242.188500px;}
.x13_c00286{left:245.605500px;}
.x22_c00286{left:250.944000px;}
.x69_c00286{left:252.178500px;}
.xe_c00286{left:254.070000px;}
.x5f_c00286{left:255.958500px;}
.x48_c00286{left:257.706000px;}
.x30_c00286{left:261.088500px;}
.x23_c00286{left:262.938000px;}
.x6a_c00286{left:265.408500px;}
.x1a_c00286{left:267.141000px;}
.x41_c00286{left:271.078500px;}
.x28_c00286{left:274.048500px;}
.x5a_c00286{left:275.938500px;}
.x60_c00286{left:277.288500px;}
.x54_c00286{left:280.798500px;}
.x4d_c00286{left:284.038500px;}
.xf_c00286{left:285.930000px;}
.x49_c00286{left:287.103000px;}
.x36_c00286{left:288.898500px;}
.x9_c00286{left:292.140000px;}
.x5c_c00286{left:294.838500px;}
.x14_c00286{left:296.359500px;}
.x4e_c00286{left:297.538500px;}
.x1e_c00286{left:299.698500px;}
.x2c_c00286{left:301.318500px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
.fsf_c00286{font-size:49.466667pt;}
.fsb_c00286{font-size:51.333333pt;}
.fs7_c00286{font-size:52.266667pt;}
.fs0_c00286{font-size:53.200000pt;}
.fs3_c00286{font-size:54.133333pt;}
.fs1_c00286{font-size:55.066667pt;}
.fs2_c00286{font-size:56.000000pt;}
.fs5_c00286{font-size:56.933333pt;}
.fs9_c00286{font-size:57.866667pt;}
.fs8_c00286{font-size:58.800000pt;}
.fs10_c00286{font-size:59.733333pt;}
.fsc_c00286{font-size:60.666667pt;}
.fs6_c00286{font-size:62.533333pt;}
.fsa_c00286{font-size:63.466667pt;}
.fs4_c00286{font-size:64.400000pt;}
.fse_c00286{font-size:69.066667pt;}
.fsd_c00286{font-size:84.933333pt;}
.y0_c00286{bottom:0.000000pt;}
.y44_c00286{bottom:31.180000pt;}
.y43_c00286{bottom:48.006667pt;}
.y42_c00286{bottom:63.010667pt;}
.y39_c00286{bottom:74.400000pt;}
.y3a_c00286{bottom:74.561333pt;}
.y3b_c00286{bottom:74.906667pt;}
.y3c_c00286{bottom:75.216000pt;}
.y3d_c00286{bottom:75.648000pt;}
.y3e_c00286{bottom:76.428000pt;}
.y3f_c00286{bottom:76.656000pt;}
.y40_c00286{bottom:77.070667pt;}
.y41_c00286{bottom:77.317333pt;}
.y38_c00286{bottom:93.305333pt;}
.y37_c00286{bottom:108.924000pt;}
.y36_c00286{bottom:122.256000pt;}
.y35_c00286{bottom:137.938667pt;}
.y34_c00286{bottom:152.509333pt;}
.y33_c00286{bottom:167.997333pt;}
.y32_c00286{bottom:182.988000pt;}
.y31_c00286{bottom:197.946667pt;}
.y30_c00286{bottom:213.905333pt;}
.y2f_c00286{bottom:229.282667pt;}
.y2e_c00286{bottom:245.220000pt;}
.y2d_c00286{bottom:261.489333pt;}
.y2c_c00286{bottom:275.973333pt;}
.y2b_c00286{bottom:290.201333pt;}
.y20_c00286{bottom:303.121333pt;}
.y21_c00286{bottom:303.286667pt;}
.y22_c00286{bottom:303.405333pt;}
.y23_c00286{bottom:303.594667pt;}
.y24_c00286{bottom:304.168000pt;}
.y25_c00286{bottom:304.502667pt;}
.y26_c00286{bottom:304.904000pt;}
.y27_c00286{bottom:305.208000pt;}
.y28_c00286{bottom:305.472000pt;}
.y29_c00286{bottom:305.598667pt;}
.y2a_c00286{bottom:305.758667pt;}
.y1f_c00286{bottom:319.989333pt;}
.y1e_c00286{bottom:334.074667pt;}
.y1d_c00286{bottom:349.136000pt;}
.y1c_c00286{bottom:364.513333pt;}
.y1b_c00286{bottom:380.737333pt;}
.y1a_c00286{bottom:394.893333pt;}
.y19_c00286{bottom:410.229333pt;}
.y13_c00286{bottom:422.886667pt;}
.y14_c00286{bottom:424.160000pt;}
.y15_c00286{bottom:425.964000pt;}
.y16_c00286{bottom:426.452000pt;}
.y17_c00286{bottom:427.337333pt;}
.y18_c00286{bottom:427.561333pt;}
.y12_c00286{bottom:443.056000pt;}
.yb_c00286{bottom:453.844000pt;}
.yc_c00286{bottom:454.273333pt;}
.yd_c00286{bottom:454.928000pt;}
.ye_c00286{bottom:455.226667pt;}
.yf_c00286{bottom:455.888000pt;}
.y10_c00286{bottom:456.758667pt;}
.y11_c00286{bottom:457.020000pt;}
.y4_c00286{bottom:469.684000pt;}
.y5_c00286{bottom:470.469333pt;}
.y6_c00286{bottom:470.849333pt;}
.y7_c00286{bottom:471.561333pt;}
.y8_c00286{bottom:471.934667pt;}
.y9_c00286{bottom:472.600000pt;}
.ya_c00286{bottom:473.232000pt;}
.y3_c00286{bottom:486.857333pt;}
.y2_c00286{bottom:502.522667pt;}
.y1_c00286{bottom:515.878667pt;}
.h11_c00286{height:49.466667pt;}
.hd_c00286{height:51.333333pt;}
.h9_c00286{height:52.266667pt;}
.h2_c00286{height:53.200000pt;}
.h5_c00286{height:54.133333pt;}
.h3_c00286{height:55.066667pt;}
.h4_c00286{height:56.000000pt;}
.h7_c00286{height:56.933333pt;}
.hb_c00286{height:57.866667pt;}
.ha_c00286{height:58.800000pt;}
.h12_c00286{height:59.733333pt;}
.he_c00286{height:60.666667pt;}
.h8_c00286{height:62.533333pt;}
.hc_c00286{height:63.466667pt;}
.h6_c00286{height:64.400000pt;}
.h10_c00286{height:69.066667pt;}
.hf_c00286{height:84.933333pt;}
.h1_c00286{height:550.000000pt;}
.h0_c00286{height:550.266667pt;}
.w0_c00286{width:319.200000pt;}
.w1_c00286{width:319.333333pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:9.360000pt;}
.x15_c00286{left:10.490667pt;}
.x31_c00286{left:13.918667pt;}
.x42_c00286{left:15.240000pt;}
.x78_c00286{left:16.798667pt;}
.x3_c00286{left:17.760000pt;}
.x2d_c00286{left:19.198667pt;}
.x3e_c00286{left:21.118667pt;}
.x66_c00286{left:28.318667pt;}
.x24_c00286{left:29.758667pt;}
.x6b_c00286{left:33.358667pt;}
.x32_c00286{left:37.678667pt;}
.x55_c00286{left:38.878667pt;}
.x16_c00286{left:41.190667pt;}
.x4a_c00286{left:43.918667pt;}
.x52_c00286{left:45.598667pt;}
.x37_c00286{left:47.278667pt;}
.x61_c00286{left:48.478667pt;}
.x67_c00286{left:53.518667pt;}
.x29_c00286{left:56.638667pt;}
.x43_c00286{left:58.437333pt;}
.x33_c00286{left:61.438667pt;}
.x3b_c00286{left:64.318667pt;}
.x10_c00286{left:66.164000pt;}
.x62_c00286{left:67.678667pt;}
.x4_c00286{left:70.320000pt;}
.x1f_c00286{left:71.758667pt;}
.x71_c00286{left:72.718667pt;}
.x1b_c00286{left:75.358667pt;}
.x3c_c00286{left:76.558667pt;}
.x6f_c00286{left:79.438667pt;}
.x34_c00286{left:80.638667pt;}
.x56_c00286{left:82.318667pt;}
.x2e_c00286{left:85.918667pt;}
.x17_c00286{left:87.985333pt;}
.x5_c00286{left:90.000000pt;}
.x4b_c00286{left:91.198667pt;}
.xa_c00286{left:92.640000pt;}
.x1c_c00286{left:99.358667pt;}
.x59_c00286{left:100.318667pt;}
.x3d_c00286{left:101.278667pt;}
.x4f_c00286{left:102.718667pt;}
.x6c_c00286{left:105.358667pt;}
.xb_c00286{left:107.280000pt;}
.x18_c00286{left:109.357333pt;}
.x44_c00286{left:110.510667pt;}
.x25_c00286{left:111.838667pt;}
.x3f_c00286{left:114.958667pt;}
.x63_c00286{left:116.158667pt;}
.x1d_c00286{left:117.118667pt;}
.x77_c00286{left:118.456000pt;}
.x6d_c00286{left:120.478667pt;}
.x38_c00286{left:122.158667pt;}
.x2a_c00286{left:123.838667pt;}
.x70_c00286{left:125.278667pt;}
.x57_c00286{left:127.198667pt;}
.x72_c00286{left:128.158667pt;}
.x1_c00286{left:129.360000pt;}
.x79_c00286{left:131.278667pt;}
.x75_c00286{left:133.438667pt;}
.x4c_c00286{left:135.118667pt;}
.xc_c00286{left:137.520000pt;}
.x6_c00286{left:139.680000pt;}
.x45_c00286{left:140.992000pt;}
.x11_c00286{left:144.090667pt;}
.x40_c00286{left:151.918667pt;}
.x50_c00286{left:154.318667pt;}
.x2f_c00286{left:155.518667pt;}
.x19_c00286{left:156.634667pt;}
.x20_c00286{left:157.665333pt;}
.x5d_c00286{left:160.798667pt;}
.x39_c00286{left:162.478667pt;}
.x7_c00286{left:166.080000pt;}
.x58_c00286{left:168.958667pt;}
.x12_c00286{left:170.785333pt;}
.x51_c00286{left:173.038667pt;}
.x26_c00286{left:175.438667pt;}
.x46_c00286{left:177.476000pt;}
.x21_c00286{left:180.925333pt;}
.x53_c00286{left:183.838667pt;}
.x5e_c00286{left:185.278667pt;}
.x2b_c00286{left:186.958667pt;}
.x76_c00286{left:188.158667pt;}
.x35_c00286{left:189.598667pt;}
.x7a_c00286{left:190.558667pt;}
.x64_c00286{left:194.158667pt;}
.x73_c00286{left:196.078667pt;}
.xd_c00286{left:198.000000pt;}
.x27_c00286{left:199.198667pt;}
.x3a_c00286{left:200.638667pt;}
.x5b_c00286{left:203.038667pt;}
.x47_c00286{left:205.080000pt;}
.x65_c00286{left:206.158667pt;}
.x6e_c00286{left:208.078667pt;}
.x8_c00286{left:210.720000pt;}
.x68_c00286{left:212.638667pt;}
.x74_c00286{left:215.278667pt;}
.x13_c00286{left:218.316000pt;}
.x22_c00286{left:223.061333pt;}
.x69_c00286{left:224.158667pt;}
.xe_c00286{left:225.840000pt;}
.x5f_c00286{left:227.518667pt;}
.x48_c00286{left:229.072000pt;}
.x30_c00286{left:232.078667pt;}
.x23_c00286{left:233.722667pt;}
.x6a_c00286{left:235.918667pt;}
.x1a_c00286{left:237.458667pt;}
.x41_c00286{left:240.958667pt;}
.x28_c00286{left:243.598667pt;}
.x5a_c00286{left:245.278667pt;}
.x60_c00286{left:246.478667pt;}
.x54_c00286{left:249.598667pt;}
.x4d_c00286{left:252.478667pt;}
.xf_c00286{left:254.160000pt;}
.x49_c00286{left:255.202667pt;}
.x36_c00286{left:256.798667pt;}
.x9_c00286{left:259.680000pt;}
.x5c_c00286{left:262.078667pt;}
.x14_c00286{left:263.430667pt;}
.x4e_c00286{left:264.478667pt;}
.x1e_c00286{left:266.398667pt;}
.x2c_c00286{left:267.838667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00287 {
    display:none;
  }
  .loading-indicator_c00287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00287 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00287 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00287" -> "#page-container .classname_c00287")
 */
.pf_c00287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00287 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00287 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00287 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00287 {overflow:visible;}
  }
}
.c_c00287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00287 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00287:after { /* webkit #35443 */
  content: '';
}
.t_c00287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00287 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00287 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00287 { /* info for Javascript */
  display:none;
}
.l_c00287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00287:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00287 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00287.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00287{transform:matrix(0.071516,0.001144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.071516,0.001144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.071516,0.001144,-0.003999,0.249968,0,0);}
.mc3_c00287{transform:matrix(0.137627,0.002202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.137627,0.002202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.137627,0.002202,-0.003999,0.249968,0,0);}
.m47_c00287{transform:matrix(0.142147,0.002274,-0.003999,0.249968,0,0);-ms-transform:matrix(0.142147,0.002274,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.142147,0.002274,-0.003999,0.249968,0,0);}
.m1e_c00287{transform:matrix(0.145296,0.002325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145296,0.002325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145296,0.002325,-0.003999,0.249968,0,0);}
.m15_c00287{transform:matrix(0.150546,0.002409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150546,0.002409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150546,0.002409,-0.003999,0.249968,0,0);}
.md3_c00287{transform:matrix(0.151191,0.002419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151191,0.002419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151191,0.002419,-0.003999,0.249968,0,0);}
.mcb_c00287{transform:matrix(0.151646,0.002426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151646,0.002426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151646,0.002426,-0.003999,0.249968,0,0);}
.m55_c00287{transform:matrix(0.152700,0.002443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152700,0.002443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152700,0.002443,-0.003999,0.249968,0,0);}
.ma5_c00287{transform:matrix(0.153250,0.002452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153250,0.002452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153250,0.002452,-0.003999,0.249968,0,0);}
.me6_c00287{transform:matrix(0.153275,0.002452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153275,0.002452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153275,0.002452,-0.003999,0.249968,0,0);}
.m32_c00287{transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154305,0.002469,-0.003999,0.249968,0,0);}
.m39_c00287{transform:matrix(0.155110,0.002482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155110,0.002482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155110,0.002482,-0.003999,0.249968,0,0);}
.m44_c00287{transform:matrix(0.155820,0.002493,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155820,0.002493,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155820,0.002493,-0.003999,0.249968,0,0);}
.m3d_c00287{transform:matrix(0.156790,0.002509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156790,0.002509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156790,0.002509,-0.003999,0.249968,0,0);}
.m87_c00287{transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157030,0.002512,-0.003999,0.249968,0,0);}
.m57_c00287{transform:matrix(0.157205,0.002515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157205,0.002515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157205,0.002515,-0.003999,0.249968,0,0);}
.m37_c00287{transform:matrix(0.157875,0.002526,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157875,0.002526,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157875,0.002526,-0.003999,0.249968,0,0);}
.m80_c00287{transform:matrix(0.158220,0.002532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158220,0.002532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158220,0.002532,-0.003999,0.249968,0,0);}
.m4f_c00287{transform:matrix(0.158315,0.002533,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158315,0.002533,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158315,0.002533,-0.003999,0.249968,0,0);}
.m9b_c00287{transform:matrix(0.158440,0.002535,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158440,0.002535,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158440,0.002535,-0.003999,0.249968,0,0);}
.m8e_c00287{transform:matrix(0.159175,0.002547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159175,0.002547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159175,0.002547,-0.003999,0.249968,0,0);}
.mc_c00287{transform:matrix(0.159535,0.002553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159535,0.002553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159535,0.002553,-0.003999,0.249968,0,0);}
.mcf_c00287{transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);}
.m0_c00287{transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160040,0.000000,0.000000,0.250000,0,0);}
.mc8_c00287{transform:matrix(0.160184,0.002563,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160184,0.002563,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160184,0.002563,-0.003999,0.249968,0,0);}
.m9d_c00287{transform:matrix(0.160299,0.002565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160299,0.002565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160299,0.002565,-0.003999,0.249968,0,0);}
.md7_c00287{transform:matrix(0.161379,0.002582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161379,0.002582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161379,0.002582,-0.003999,0.249968,0,0);}
.mf7_c00287{transform:matrix(0.161629,0.002586,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161629,0.002586,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161629,0.002586,-0.003999,0.249968,0,0);}
.mbe_c00287{transform:matrix(0.161769,0.002588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161769,0.002588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161769,0.002588,-0.003999,0.249968,0,0);}
.m85_c00287{transform:matrix(0.162319,0.002597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162319,0.002597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162319,0.002597,-0.003999,0.249968,0,0);}
.md_c00287{transform:matrix(0.163674,0.002619,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163674,0.002619,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163674,0.002619,-0.003999,0.249968,0,0);}
.m3c_c00287{transform:matrix(0.164334,0.002629,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164334,0.002629,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164334,0.002629,-0.003999,0.249968,0,0);}
.mda_c00287{transform:matrix(0.164469,0.002632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164469,0.002632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164469,0.002632,-0.003999,0.249968,0,0);}
.m7_c00287{transform:matrix(0.165099,0.002642,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165099,0.002642,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165099,0.002642,-0.003999,0.249968,0,0);}
.m45_c00287{transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165294,0.002645,-0.003999,0.249968,0,0);}
.m61_c00287{transform:matrix(0.165534,0.002649,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165534,0.002649,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165534,0.002649,-0.003999,0.249968,0,0);}
.mf5_c00287{transform:matrix(0.165579,0.002649,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165579,0.002649,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165579,0.002649,-0.003999,0.249968,0,0);}
.ma1_c00287{transform:matrix(0.166204,0.002659,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166204,0.002659,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166204,0.002659,-0.003999,0.249968,0,0);}
.mad_c00287{transform:matrix(0.167259,0.002676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167259,0.002676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167259,0.002676,-0.003999,0.249968,0,0);}
.m86_c00287{transform:matrix(0.167564,0.002681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167564,0.002681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167564,0.002681,-0.003999,0.249968,0,0);}
.m11_c00287{transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);}
.m10_c00287{transform:matrix(0.168718,0.002699,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168718,0.002699,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168718,0.002699,-0.003999,0.249968,0,0);}
.mc4_c00287{transform:matrix(0.168868,0.002702,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168868,0.002702,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168868,0.002702,-0.003999,0.249968,0,0);}
.mf1_c00287{transform:matrix(0.169183,0.002707,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169183,0.002707,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169183,0.002707,-0.003999,0.249968,0,0);}
.mcd_c00287{transform:matrix(0.169693,0.002715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169693,0.002715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169693,0.002715,-0.003999,0.249968,0,0);}
.m8f_c00287{transform:matrix(0.170513,0.002728,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170513,0.002728,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170513,0.002728,-0.003999,0.249968,0,0);}
.m41_c00287{transform:matrix(0.170818,0.002733,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170818,0.002733,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170818,0.002733,-0.003999,0.249968,0,0);}
.m7d_c00287{transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170983,0.002736,-0.003999,0.249968,0,0);}
.m2e_c00287{transform:matrix(0.171263,0.002740,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171263,0.002740,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171263,0.002740,-0.003999,0.249968,0,0);}
.mf3_c00287{transform:matrix(0.171278,0.002740,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171278,0.002740,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171278,0.002740,-0.003999,0.249968,0,0);}
.mc2_c00287{transform:matrix(0.171293,0.002741,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171293,0.002741,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171293,0.002741,-0.003999,0.249968,0,0);}
.m7c_c00287{transform:matrix(0.171883,0.002750,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171883,0.002750,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171883,0.002750,-0.003999,0.249968,0,0);}
.mac_c00287{transform:matrix(0.172663,0.002763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172663,0.002763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172663,0.002763,-0.003999,0.249968,0,0);}
.mef_c00287{transform:matrix(0.172923,0.002767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172923,0.002767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172923,0.002767,-0.003999,0.249968,0,0);}
.m36_c00287{transform:matrix(0.172958,0.002767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172958,0.002767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172958,0.002767,-0.003999,0.249968,0,0);}
.me8_c00287{transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);}
.m56_c00287{transform:matrix(0.173358,0.002774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173358,0.002774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173358,0.002774,-0.003999,0.249968,0,0);}
.m6c_c00287{transform:matrix(0.173528,0.002776,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173528,0.002776,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173528,0.002776,-0.003999,0.249968,0,0);}
.md8_c00287{transform:matrix(0.174203,0.002787,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174203,0.002787,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174203,0.002787,-0.003999,0.249968,0,0);}
.m7a_c00287{transform:matrix(0.174573,0.002793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174573,0.002793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174573,0.002793,-0.003999,0.249968,0,0);}
.m78_c00287{transform:matrix(0.174773,0.002796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174773,0.002796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174773,0.002796,-0.003999,0.249968,0,0);}
.mc6_c00287{transform:matrix(0.175243,0.002804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175243,0.002804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175243,0.002804,-0.003999,0.249968,0,0);}
.m33_c00287{transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175653,0.002810,-0.003999,0.249968,0,0);}
.mdd_c00287{transform:matrix(0.175997,0.002816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175997,0.002816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175997,0.002816,-0.003999,0.249968,0,0);}
.m54_c00287{transform:matrix(0.176132,0.002818,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176132,0.002818,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176132,0.002818,-0.003999,0.249968,0,0);}
.md0_c00287{transform:matrix(0.176407,0.002823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176407,0.002823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176407,0.002823,-0.003999,0.249968,0,0);}
.md4_c00287{transform:matrix(0.176887,0.002830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176887,0.002830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176887,0.002830,-0.003999,0.249968,0,0);}
.mb0_c00287{transform:matrix(0.176922,0.002831,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176922,0.002831,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176922,0.002831,-0.003999,0.249968,0,0);}
.mfa_c00287{transform:matrix(0.176937,0.002831,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176937,0.002831,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176937,0.002831,-0.003999,0.249968,0,0);}
.m58_c00287{transform:matrix(0.177067,0.002833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177067,0.002833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177067,0.002833,-0.003999,0.249968,0,0);}
.m9f_c00287{transform:matrix(0.177312,0.002837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177312,0.002837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177312,0.002837,-0.003999,0.249968,0,0);}
.m64_c00287{transform:matrix(0.177447,0.002839,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177447,0.002839,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177447,0.002839,-0.003999,0.249968,0,0);}
.mee_c00287{transform:matrix(0.177737,0.002844,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177737,0.002844,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177737,0.002844,-0.003999,0.249968,0,0);}
.m1f_c00287{transform:matrix(0.178152,0.002850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178152,0.002850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178152,0.002850,-0.003999,0.249968,0,0);}
.me9_c00287{transform:matrix(0.178227,0.002852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178227,0.002852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178227,0.002852,-0.003999,0.249968,0,0);}
.m12_c00287{transform:matrix(0.178562,0.002857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178562,0.002857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178562,0.002857,-0.003999,0.249968,0,0);}
.m35_c00287{transform:matrix(0.178627,0.002858,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178627,0.002858,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178627,0.002858,-0.003999,0.249968,0,0);}
.m49_c00287{transform:matrix(0.179222,0.002868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179222,0.002868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179222,0.002868,-0.003999,0.249968,0,0);}
.m8d_c00287{transform:matrix(0.179342,0.002869,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179342,0.002869,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179342,0.002869,-0.003999,0.249968,0,0);}
.m81_c00287{transform:matrix(0.180132,0.002882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180132,0.002882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180132,0.002882,-0.003999,0.249968,0,0);}
.ma_c00287{transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);}
.m2a_c00287{transform:matrix(0.180337,0.002885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180337,0.002885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180337,0.002885,-0.003999,0.249968,0,0);}
.mc5_c00287{transform:matrix(0.180367,0.002886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180367,0.002886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180367,0.002886,-0.003999,0.249968,0,0);}
.me2_c00287{transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);}
.mdb_c00287{transform:matrix(0.180497,0.002888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180497,0.002888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180497,0.002888,-0.003999,0.249968,0,0);}
.m1d_c00287{transform:matrix(0.181692,0.002907,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181692,0.002907,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181692,0.002907,-0.003999,0.249968,0,0);}
.m19_c00287{transform:matrix(0.182092,0.002913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182092,0.002913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182092,0.002913,-0.003999,0.249968,0,0);}
.m2d_c00287{transform:matrix(0.182157,0.002915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182157,0.002915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182157,0.002915,-0.003999,0.249968,0,0);}
.mbd_c00287{transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182257,0.002916,-0.003999,0.249968,0,0);}
.m6_c00287{transform:matrix(0.182532,0.002921,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182532,0.002921,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182532,0.002921,-0.003999,0.249968,0,0);}
.m79_c00287{transform:matrix(0.182837,0.002925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182837,0.002925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182837,0.002925,-0.003999,0.249968,0,0);}
.m67_c00287{transform:matrix(0.182867,0.002926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182867,0.002926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182867,0.002926,-0.003999,0.249968,0,0);}
.m4c_c00287{transform:matrix(0.183177,0.002931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183177,0.002931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183177,0.002931,-0.003999,0.249968,0,0);}
.m50_c00287{transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);}
.m52_c00287{transform:matrix(0.184101,0.002946,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184101,0.002946,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184101,0.002946,-0.003999,0.249968,0,0);}
.m4b_c00287{transform:matrix(0.184111,0.002946,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184111,0.002946,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184111,0.002946,-0.003999,0.249968,0,0);}
.m2f_c00287{transform:matrix(0.184641,0.002954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184641,0.002954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184641,0.002954,-0.003999,0.249968,0,0);}
.m59_c00287{transform:matrix(0.184736,0.002956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184736,0.002956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184736,0.002956,-0.003999,0.249968,0,0);}
.m74_c00287{transform:matrix(0.185396,0.002966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185396,0.002966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185396,0.002966,-0.003999,0.249968,0,0);}
.m8_c00287{transform:matrix(0.185756,0.002972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185756,0.002972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185756,0.002972,-0.003999,0.249968,0,0);}
.m76_c00287{transform:matrix(0.185761,0.002972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185761,0.002972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185761,0.002972,-0.003999,0.249968,0,0);}
.md1_c00287{transform:matrix(0.185846,0.002974,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185846,0.002974,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185846,0.002974,-0.003999,0.249968,0,0);}
.m3e_c00287{transform:matrix(0.186206,0.002979,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186206,0.002979,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186206,0.002979,-0.003999,0.249968,0,0);}
.m82_c00287{transform:matrix(0.186616,0.002986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186616,0.002986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186616,0.002986,-0.003999,0.249968,0,0);}
.m16_c00287{transform:matrix(0.186676,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186676,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186676,0.002987,-0.003999,0.249968,0,0);}
.m7b_c00287{transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187116,0.002994,-0.003999,0.249968,0,0);}
.mbf_c00287{transform:matrix(0.187326,0.002997,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187326,0.002997,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187326,0.002997,-0.003999,0.249968,0,0);}
.m51_c00287{transform:matrix(0.187636,0.003002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187636,0.003002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187636,0.003002,-0.003999,0.249968,0,0);}
.m42_c00287{transform:matrix(0.187881,0.003006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187881,0.003006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187881,0.003006,-0.003999,0.249968,0,0);}
.maf_c00287{transform:matrix(0.188466,0.003015,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188466,0.003015,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188466,0.003015,-0.003999,0.249968,0,0);}
.ma7_c00287{transform:matrix(0.188596,0.003018,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188596,0.003018,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188596,0.003018,-0.003999,0.249968,0,0);}
.m99_c00287{transform:matrix(0.188666,0.003019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188666,0.003019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188666,0.003019,-0.003999,0.249968,0,0);}
.m83_c00287{transform:matrix(0.189046,0.003025,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189046,0.003025,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189046,0.003025,-0.003999,0.249968,0,0);}
.m89_c00287{transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189166,0.003027,-0.003999,0.249968,0,0);}
.m3b_c00287{transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);}
.me5_c00287{transform:matrix(0.189951,0.003039,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189951,0.003039,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189951,0.003039,-0.003999,0.249968,0,0);}
.md6_c00287{transform:matrix(0.189986,0.003040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189986,0.003040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189986,0.003040,-0.003999,0.249968,0,0);}
.m40_c00287{transform:matrix(0.190576,0.003049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190576,0.003049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190576,0.003049,-0.003999,0.249968,0,0);}
.m5b_c00287{transform:matrix(0.190751,0.003052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190751,0.003052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190751,0.003052,-0.003999,0.249968,0,0);}
.mdc_c00287{transform:matrix(0.190766,0.003052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190766,0.003052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190766,0.003052,-0.003999,0.249968,0,0);}
.ma8_c00287{transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);}
.m7e_c00287{transform:matrix(0.190881,0.003054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190881,0.003054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190881,0.003054,-0.003999,0.249968,0,0);}
.m60_c00287{transform:matrix(0.191406,0.003062,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191406,0.003062,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191406,0.003062,-0.003999,0.249968,0,0);}
.m69_c00287{transform:matrix(0.191425,0.003063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191425,0.003063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191425,0.003063,-0.003999,0.249968,0,0);}
.m9e_c00287{transform:matrix(0.191575,0.003065,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191575,0.003065,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191575,0.003065,-0.003999,0.249968,0,0);}
.m8c_c00287{transform:matrix(0.191625,0.003066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191625,0.003066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191625,0.003066,-0.003999,0.249968,0,0);}
.m1a_c00287{transform:matrix(0.191835,0.003069,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191835,0.003069,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191835,0.003069,-0.003999,0.249968,0,0);}
.ma4_c00287{transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192335,0.003077,-0.003999,0.249968,0,0);}
.mf8_c00287{transform:matrix(0.192400,0.003078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192400,0.003078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192400,0.003078,-0.003999,0.249968,0,0);}
.m8a_c00287{transform:matrix(0.192540,0.003081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192540,0.003081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192540,0.003081,-0.003999,0.249968,0,0);}
.m2_c00287{transform:matrix(0.192680,0.003083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192680,0.003083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192680,0.003083,-0.003999,0.249968,0,0);}
.m18_c00287{transform:matrix(0.192710,0.003083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192710,0.003083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192710,0.003083,-0.003999,0.249968,0,0);}
.m8b_c00287{transform:matrix(0.192975,0.003088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192975,0.003088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192975,0.003088,-0.003999,0.249968,0,0);}
.ma0_c00287{transform:matrix(0.193235,0.003092,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193235,0.003092,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193235,0.003092,-0.003999,0.249968,0,0);}
.m3f_c00287{transform:matrix(0.193615,0.003098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193615,0.003098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193615,0.003098,-0.003999,0.249968,0,0);}
.me0_c00287{transform:matrix(0.194155,0.003106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194155,0.003106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194155,0.003106,-0.003999,0.249968,0,0);}
.mf9_c00287{transform:matrix(0.194255,0.003108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194255,0.003108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194255,0.003108,-0.003999,0.249968,0,0);}
.mcc_c00287{transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);}
.m28_c00287{transform:matrix(0.194350,0.003110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194350,0.003110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194350,0.003110,-0.003999,0.249968,0,0);}
.m84_c00287{transform:matrix(0.194370,0.003110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194370,0.003110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194370,0.003110,-0.003999,0.249968,0,0);}
.m38_c00287{transform:matrix(0.194455,0.003111,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194455,0.003111,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194455,0.003111,-0.003999,0.249968,0,0);}
.m1c_c00287{transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194505,0.003112,-0.003999,0.249968,0,0);}
.m43_c00287{transform:matrix(0.194955,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194955,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194955,0.003119,-0.003999,0.249968,0,0);}
.mb2_c00287{transform:matrix(0.194960,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194960,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194960,0.003119,-0.003999,0.249968,0,0);}
.ma2_c00287{transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195635,0.003130,-0.003999,0.249968,0,0);}
.m9_c00287{transform:matrix(0.196310,0.003141,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196310,0.003141,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196310,0.003141,-0.003999,0.249968,0,0);}
.m2c_c00287{transform:matrix(0.196635,0.003146,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196635,0.003146,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196635,0.003146,-0.003999,0.249968,0,0);}
.m92_c00287{transform:matrix(0.196720,0.003148,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196720,0.003148,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196720,0.003148,-0.003999,0.249968,0,0);}
.mba_c00287{transform:matrix(0.197210,0.003155,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197210,0.003155,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197210,0.003155,-0.003999,0.249968,0,0);}
.mce_c00287{transform:matrix(0.197420,0.003159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197420,0.003159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197420,0.003159,-0.003999,0.249968,0,0);}
.mc9_c00287{transform:matrix(0.197660,0.003163,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197660,0.003163,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197660,0.003163,-0.003999,0.249968,0,0);}
.m29_c00287{transform:matrix(0.197670,0.003163,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197670,0.003163,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197670,0.003163,-0.003999,0.249968,0,0);}
.mea_c00287{transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198245,0.003172,-0.003999,0.249968,0,0);}
.m5_c00287{transform:matrix(0.198750,0.003180,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198750,0.003180,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198750,0.003180,-0.003999,0.249968,0,0);}
.m5a_c00287{transform:matrix(0.199050,0.003185,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199050,0.003185,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199050,0.003185,-0.003999,0.249968,0,0);}
.ma3_c00287{transform:matrix(0.199185,0.003187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199185,0.003187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199185,0.003187,-0.003999,0.249968,0,0);}
.m48_c00287{transform:matrix(0.199274,0.003188,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199274,0.003188,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199274,0.003188,-0.003999,0.249968,0,0);}
.md9_c00287{transform:matrix(0.199564,0.003193,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199564,0.003193,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199564,0.003193,-0.003999,0.249968,0,0);}
.m53_c00287{transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);}
.me_c00287{transform:matrix(0.200379,0.003206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200379,0.003206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200379,0.003206,-0.003999,0.249968,0,0);}
.mc0_c00287{transform:matrix(0.200394,0.003206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200394,0.003206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200394,0.003206,-0.003999,0.249968,0,0);}
.ma9_c00287{transform:matrix(0.200484,0.003208,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200484,0.003208,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200484,0.003208,-0.003999,0.249968,0,0);}
.m6e_c00287{transform:matrix(0.200519,0.003208,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200519,0.003208,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200519,0.003208,-0.003999,0.249968,0,0);}
.m4_c00287{transform:matrix(0.200524,0.003208,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200524,0.003208,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200524,0.003208,-0.003999,0.249968,0,0);}
.m5c_c00287{transform:matrix(0.200629,0.003210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200629,0.003210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200629,0.003210,-0.003999,0.249968,0,0);}
.m46_c00287{transform:matrix(0.200649,0.003210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200649,0.003210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200649,0.003210,-0.003999,0.249968,0,0);}
.me3_c00287{transform:matrix(0.200814,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200814,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200814,0.003213,-0.003999,0.249968,0,0);}
.mf6_c00287{transform:matrix(0.201049,0.003217,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201049,0.003217,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201049,0.003217,-0.003999,0.249968,0,0);}
.m2b_c00287{transform:matrix(0.201289,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201289,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201289,0.003221,-0.003999,0.249968,0,0);}
.mde_c00287{transform:matrix(0.201314,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201314,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201314,0.003221,-0.003999,0.249968,0,0);}
.m30_c00287{transform:matrix(0.201804,0.003229,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201804,0.003229,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201804,0.003229,-0.003999,0.249968,0,0);}
.meb_c00287{transform:matrix(0.201959,0.003231,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201959,0.003231,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201959,0.003231,-0.003999,0.249968,0,0);}
.md2_c00287{transform:matrix(0.202374,0.003238,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202374,0.003238,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202374,0.003238,-0.003999,0.249968,0,0);}
.mf4_c00287{transform:matrix(0.202764,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202764,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202764,0.003244,-0.003999,0.249968,0,0);}
.mc7_c00287{transform:matrix(0.202799,0.003245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202799,0.003245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202799,0.003245,-0.003999,0.249968,0,0);}
.m75_c00287{transform:matrix(0.203634,0.003258,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203634,0.003258,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203634,0.003258,-0.003999,0.249968,0,0);}
.m5e_c00287{transform:matrix(0.203714,0.003259,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203714,0.003259,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203714,0.003259,-0.003999,0.249968,0,0);}
.m17_c00287{transform:matrix(0.203909,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203909,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203909,0.003263,-0.003999,0.249968,0,0);}
.m4a_c00287{transform:matrix(0.203934,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203934,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203934,0.003263,-0.003999,0.249968,0,0);}
.mf2_c00287{transform:matrix(0.203964,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203964,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203964,0.003263,-0.003999,0.249968,0,0);}
.mab_c00287{transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204659,0.003275,-0.003999,0.249968,0,0);}
.me7_c00287{transform:matrix(0.205024,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205024,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205024,0.003280,-0.003999,0.249968,0,0);}
.m6a_c00287{transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206194,0.003299,-0.003999,0.249968,0,0);}
.m3_c00287{transform:matrix(0.206264,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206264,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206264,0.003300,-0.003999,0.249968,0,0);}
.m66_c00287{transform:matrix(0.206349,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206349,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206349,0.003302,-0.003999,0.249968,0,0);}
.m77_c00287{transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206399,0.003302,-0.003999,0.249968,0,0);}
.mb5_c00287{transform:matrix(0.206724,0.003308,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206724,0.003308,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206724,0.003308,-0.003999,0.249968,0,0);}
.m9c_c00287{transform:matrix(0.207288,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207288,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207288,0.003317,-0.003999,0.249968,0,0);}
.m68_c00287{transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);}
.m1b_c00287{transform:matrix(0.208828,0.003341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208828,0.003341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208828,0.003341,-0.003999,0.249968,0,0);}
.m5d_c00287{transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);}
.m6d_c00287{transform:matrix(0.210143,0.003362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210143,0.003362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210143,0.003362,-0.003999,0.249968,0,0);}
.m20_c00287{transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210438,0.003367,-0.003999,0.249968,0,0);}
.m98_c00287{transform:matrix(0.211223,0.003380,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211223,0.003380,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211223,0.003380,-0.003999,0.249968,0,0);}
.m1_c00287{transform:matrix(0.211678,0.003387,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211678,0.003387,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211678,0.003387,-0.003999,0.249968,0,0);}
.mb1_c00287{transform:matrix(0.212358,0.003398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212358,0.003398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212358,0.003398,-0.003999,0.249968,0,0);}
.m14_c00287{transform:matrix(0.212363,0.003398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212363,0.003398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212363,0.003398,-0.003999,0.249968,0,0);}
.mb_c00287{transform:matrix(0.212608,0.003402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212608,0.003402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212608,0.003402,-0.003999,0.249968,0,0);}
.m34_c00287{transform:matrix(0.212703,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212703,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212703,0.003403,-0.003999,0.249968,0,0);}
.m27_c00287{transform:matrix(0.213683,0.003419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213683,0.003419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213683,0.003419,-0.003999,0.249968,0,0);}
.m26_c00287{transform:matrix(0.214008,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214008,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214008,0.003424,-0.003999,0.249968,0,0);}
.mdf_c00287{transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214313,0.003429,-0.003999,0.249968,0,0);}
.m5f_c00287{transform:matrix(0.215127,0.003442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215127,0.003442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215127,0.003442,-0.003999,0.249968,0,0);}
.mae_c00287{transform:matrix(0.215622,0.003450,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215622,0.003450,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215622,0.003450,-0.003999,0.249968,0,0);}
.mfb_c00287{transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);}
.mb7_c00287{transform:matrix(0.216172,0.003459,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216172,0.003459,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216172,0.003459,-0.003999,0.249968,0,0);}
.m72_c00287{transform:matrix(0.216772,0.003468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216772,0.003468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216772,0.003468,-0.003999,0.249968,0,0);}
.mb8_c00287{transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);}
.mf0_c00287{transform:matrix(0.217477,0.003480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217477,0.003480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217477,0.003480,-0.003999,0.249968,0,0);}
.mca_c00287{transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);}
.mec_c00287{transform:matrix(0.218972,0.003504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218972,0.003504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218972,0.003504,-0.003999,0.249968,0,0);}
.m95_c00287{transform:matrix(0.219377,0.003510,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219377,0.003510,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219377,0.003510,-0.003999,0.249968,0,0);}
.m22_c00287{transform:matrix(0.219557,0.003513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219557,0.003513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219557,0.003513,-0.003999,0.249968,0,0);}
.m94_c00287{transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219967,0.003519,-0.003999,0.249968,0,0);}
.mb9_c00287{transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220092,0.003521,-0.003999,0.249968,0,0);}
.mb3_c00287{transform:matrix(0.220102,0.003522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220102,0.003522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220102,0.003522,-0.003999,0.249968,0,0);}
.m9a_c00287{transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220437,0.003527,-0.003999,0.249968,0,0);}
.m6b_c00287{transform:matrix(0.221797,0.003549,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221797,0.003549,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221797,0.003549,-0.003999,0.249968,0,0);}
.m3a_c00287{transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);}
.maa_c00287{transform:matrix(0.223136,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223136,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223136,0.003570,-0.003999,0.249968,0,0);}
.m31_c00287{transform:matrix(0.223586,0.003577,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223586,0.003577,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223586,0.003577,-0.003999,0.249968,0,0);}
.m6f_c00287{transform:matrix(0.223951,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223951,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223951,0.003583,-0.003999,0.249968,0,0);}
.m21_c00287{transform:matrix(0.224296,0.003589,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224296,0.003589,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224296,0.003589,-0.003999,0.249968,0,0);}
.m63_c00287{transform:matrix(0.225166,0.003603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225166,0.003603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225166,0.003603,-0.003999,0.249968,0,0);}
.mb6_c00287{transform:matrix(0.225246,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225246,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225246,0.003604,-0.003999,0.249968,0,0);}
.m4e_c00287{transform:matrix(0.228121,0.003650,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228121,0.003650,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228121,0.003650,-0.003999,0.249968,0,0);}
.me1_c00287{transform:matrix(0.229491,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229491,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229491,0.003672,-0.003999,0.249968,0,0);}
.ma6_c00287{transform:matrix(0.231355,0.003702,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231355,0.003702,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231355,0.003702,-0.003999,0.249968,0,0);}
.m13_c00287{transform:matrix(0.232015,0.003712,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232015,0.003712,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232015,0.003712,-0.003999,0.249968,0,0);}
.m97_c00287{transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233675,0.003739,-0.003999,0.249968,0,0);}
.m90_c00287{transform:matrix(0.233975,0.003744,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233975,0.003744,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233975,0.003744,-0.003999,0.249968,0,0);}
.m62_c00287{transform:matrix(0.234085,0.003745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234085,0.003745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234085,0.003745,-0.003999,0.249968,0,0);}
.m24_c00287{transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);}
.m65_c00287{transform:matrix(0.236170,0.003779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236170,0.003779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236170,0.003779,-0.003999,0.249968,0,0);}
.m23_c00287{transform:matrix(0.236655,0.003786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236655,0.003786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236655,0.003786,-0.003999,0.249968,0,0);}
.m7f_c00287{transform:matrix(0.237810,0.003805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237810,0.003805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237810,0.003805,-0.003999,0.249968,0,0);}
.mbb_c00287{transform:matrix(0.240544,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240544,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240544,0.003849,-0.003999,0.249968,0,0);}
.m70_c00287{transform:matrix(0.242594,0.003882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242594,0.003882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242594,0.003882,-0.003999,0.249968,0,0);}
.mbc_c00287{transform:matrix(0.244494,0.003912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244494,0.003912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244494,0.003912,-0.003999,0.249968,0,0);}
.mf_c00287{transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);}
.m96_c00287{transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);}
.m93_c00287{transform:matrix(0.249378,0.003990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249378,0.003990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249378,0.003990,-0.003999,0.249968,0,0);}
.m91_c00287{transform:matrix(0.251163,0.004019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251163,0.004019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251163,0.004019,-0.003999,0.249968,0,0);}
.mb4_c00287{transform:matrix(0.261057,0.004177,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261057,0.004177,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261057,0.004177,-0.003999,0.249968,0,0);}
.m88_c00287{transform:matrix(0.261117,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261117,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261117,0.004178,-0.003999,0.249968,0,0);}
.md5_c00287{transform:matrix(0.266496,0.004264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266496,0.004264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266496,0.004264,-0.003999,0.249968,0,0);}
.m25_c00287{transform:matrix(0.276160,0.004419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276160,0.004419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276160,0.004419,-0.003999,0.249968,0,0);}
.m73_c00287{transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);}
.m4d_c00287{transform:matrix(0.284194,0.004547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284194,0.004547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284194,0.004547,-0.003999,0.249968,0,0);}
.m71_c00287{transform:matrix(0.333152,0.005330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.333152,0.005330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.333152,0.005330,-0.003999,0.249968,0,0);}
.me4_c00287{transform:matrix(0.399719,0.006396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.399719,0.006396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.399719,0.006396,-0.003999,0.249968,0,0);}
.med_c00287{transform:matrix(0.418481,0.006696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.418481,0.006696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.418481,0.006696,-0.003999,0.249968,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:0.000000px;}
.fc0_c00287{color:transparent;}
.fs4_c00287{font-size:55.657123px;}
.fsa_c00287{font-size:57.757392px;}
.fsd_c00287{font-size:58.807526px;}
.fs6_c00287{font-size:59.857660px;}
.fse_c00287{font-size:60.907795px;}
.fs5_c00287{font-size:61.957929px;}
.fs2_c00287{font-size:63.008063px;}
.fs9_c00287{font-size:64.058198px;}
.fs1_c00287{font-size:65.108332px;}
.fs7_c00287{font-size:66.158467px;}
.fs8_c00287{font-size:67.208601px;}
.fsc_c00287{font-size:68.258735px;}
.fs3_c00287{font-size:69.308870px;}
.fsb_c00287{font-size:71.409139px;}
.fs0_c00287{font-size:78.750000px;}
.y0_c00287{bottom:0.000000px;}
.y101_c00287{bottom:29.747196px;}
.y100_c00287{bottom:30.091932px;}
.yff_c00287{bottom:31.052916px;}
.yfe_c00287{bottom:32.371548px;}
.yfd_c00287{bottom:32.888208px;}
.yfc_c00287{bottom:34.138668px;}
.yfb_c00287{bottom:34.500996px;}
.yfa_c00287{bottom:47.097156px;}
.yf9_c00287{bottom:47.793024px;}
.yf8_c00287{bottom:49.182684px;}
.yf7_c00287{bottom:49.773480px;}
.yf6_c00287{bottom:52.094940px;}
.yf5_c00287{bottom:53.636172px;}
.yf4_c00287{bottom:54.220128px;}
.yf3_c00287{bottom:54.756084px;}
.yf2_c00287{bottom:60.746256px;}
.yf1_c00287{bottom:61.655892px;}
.yf0_c00287{bottom:62.125956px;}
.yef_c00287{bottom:63.992136px;}
.yee_c00287{bottom:65.343516px;}
.yed_c00287{bottom:65.968308px;}
.yec_c00287{bottom:66.653148px;}
.yeb_c00287{bottom:68.706600px;}
.yea_c00287{bottom:69.355740px;}
.ye9_c00287{bottom:70.695648px;}
.ye8_c00287{bottom:78.766572px;}
.ye7_c00287{bottom:80.653500px;}
.ye6_c00287{bottom:81.402192px;}
.ye5_c00287{bottom:82.314348px;}
.ye4_c00287{bottom:82.751172px;}
.ye3_c00287{bottom:83.880972px;}
.ye2_c00287{bottom:84.548544px;}
.ye1_c00287{bottom:86.302152px;}
.ye0_c00287{bottom:87.429780px;}
.ydf_c00287{bottom:96.572604px;}
.yde_c00287{bottom:97.741608px;}
.ydd_c00287{bottom:98.244312px;}
.ydc_c00287{bottom:100.253568px;}
.ydb_c00287{bottom:101.828592px;}
.yda_c00287{bottom:102.644316px;}
.yd9_c00287{bottom:104.983092px;}
.yd8_c00287{bottom:112.186596px;}
.yd7_c00287{bottom:113.832624px;}
.yd6_c00287{bottom:114.584544px;}
.yd5_c00287{bottom:117.043956px;}
.yd4_c00287{bottom:118.321464px;}
.yd3_c00287{bottom:119.990400px;}
.yd2_c00287{bottom:120.811668px;}
.yd1_c00287{bottom:121.301832px;}
.yd0_c00287{bottom:121.998972px;}
.ycf_c00287{bottom:129.509844px;}
.yce_c00287{bottom:130.056108px;}
.ycd_c00287{bottom:130.460988px;}
.ycc_c00287{bottom:131.997252px;}
.ycb_c00287{bottom:132.592584px;}
.yca_c00287{bottom:133.196928px;}
.yc9_c00287{bottom:134.267124px;}
.yc8_c00287{bottom:135.928896px;}
.yc7_c00287{bottom:137.119104px;}
.yc6_c00287{bottom:147.139092px;}
.yc5_c00287{bottom:148.515108px;}
.yc4_c00287{bottom:149.090580px;}
.yc3_c00287{bottom:149.409024px;}
.yc2_c00287{bottom:150.953460px;}
.yc1_c00287{bottom:153.855612px;}
.yc0_c00287{bottom:154.480572px;}
.ybf_c00287{bottom:156.832656px;}
.ybe_c00287{bottom:163.163532px;}
.ybd_c00287{bottom:164.011404px;}
.ybc_c00287{bottom:165.700320px;}
.ybb_c00287{bottom:166.330896px;}
.yba_c00287{bottom:168.820092px;}
.yb9_c00287{bottom:169.552308px;}
.yb8_c00287{bottom:173.046972px;}
.yb7_c00287{bottom:175.201728px;}
.yb6_c00287{bottom:179.627868px;}
.yb5_c00287{bottom:182.517084px;}
.yb4_c00287{bottom:185.239920px;}
.yb3_c00287{bottom:188.171796px;}
.yb2_c00287{bottom:189.101832px;}
.yb1_c00287{bottom:190.228140px;}
.yb0_c00287{bottom:192.284484px;}
.yaf_c00287{bottom:193.288008px;}
.yae_c00287{bottom:197.248608px;}
.yad_c00287{bottom:198.656748px;}
.yac_c00287{bottom:202.826232px;}
.yab_c00287{bottom:203.777328px;}
.yaa_c00287{bottom:206.488944px;}
.ya9_c00287{bottom:208.313448px;}
.ya8_c00287{bottom:210.570000px;}
.ya7_c00287{bottom:214.116240px;}
.ya6_c00287{bottom:215.489400px;}
.ya5_c00287{bottom:216.844416px;}
.ya4_c00287{bottom:219.444036px;}
.ya3_c00287{bottom:221.174424px;}
.ya2_c00287{bottom:222.283836px;}
.ya1_c00287{bottom:226.186308px;}
.ya0_c00287{bottom:228.130884px;}
.y9f_c00287{bottom:232.265436px;}
.y9e_c00287{bottom:233.259108px;}
.y9d_c00287{bottom:233.815620px;}
.y9c_c00287{bottom:235.308336px;}
.y9b_c00287{bottom:236.711544px;}
.y9a_c00287{bottom:240.174108px;}
.y99_c00287{bottom:244.874472px;}
.y98_c00287{bottom:250.814736px;}
.y97_c00287{bottom:251.382396px;}
.y96_c00287{bottom:253.517652px;}
.y95_c00287{bottom:254.415024px;}
.y94_c00287{bottom:256.565664px;}
.y93_c00287{bottom:257.561400px;}
.y92_c00287{bottom:259.526472px;}
.y91_c00287{bottom:260.532000px;}
.y90_c00287{bottom:269.141592px;}
.y8f_c00287{bottom:270.057216px;}
.y8e_c00287{bottom:271.883616px;}
.y8d_c00287{bottom:274.298244px;}
.y8c_c00287{bottom:276.208392px;}
.y8b_c00287{bottom:276.999900px;}
.y8a_c00287{bottom:277.811376px;}
.y89_c00287{bottom:283.213392px;}
.y88_c00287{bottom:283.860924px;}
.y87_c00287{bottom:284.893620px;}
.y86_c00287{bottom:285.605748px;}
.y85_c00287{bottom:288.516504px;}
.y84_c00287{bottom:290.288268px;}
.y83_c00287{bottom:291.092988px;}
.y82_c00287{bottom:292.745748px;}
.y81_c00287{bottom:293.659152px;}
.y80_c00287{bottom:294.819900px;}
.y7f_c00287{bottom:302.195508px;}
.y7e_c00287{bottom:303.274452px;}
.y7d_c00287{bottom:304.202664px;}
.y7c_c00287{bottom:306.486720px;}
.y7b_c00287{bottom:308.207196px;}
.y7a_c00287{bottom:311.019852px;}
.y79_c00287{bottom:317.692548px;}
.y78_c00287{bottom:319.145988px;}
.y77_c00287{bottom:321.233208px;}
.y76_c00287{bottom:321.904644px;}
.y75_c00287{bottom:323.200416px;}
.y74_c00287{bottom:324.529476px;}
.y73_c00287{bottom:327.227196px;}
.y72_c00287{bottom:335.181204px;}
.y71_c00287{bottom:337.289952px;}
.y70_c00287{bottom:337.695756px;}
.y6f_c00287{bottom:339.259788px;}
.y6e_c00287{bottom:340.506672px;}
.y6d_c00287{bottom:341.385576px;}
.y6c_c00287{bottom:342.280968px;}
.y6b_c00287{bottom:344.152068px;}
.y6a_c00287{bottom:345.050400px;}
.y69_c00287{bottom:354.651648px;}
.y68_c00287{bottom:355.389180px;}
.y67_c00287{bottom:356.935992px;}
.y66_c00287{bottom:359.117724px;}
.y65_c00287{bottom:359.759124px;}
.y64_c00287{bottom:360.432384px;}
.y63_c00287{bottom:362.595780px;}
.y62_c00287{bottom:369.418908px;}
.y61_c00287{bottom:370.518060px;}
.y60_c00287{bottom:372.829908px;}
.y5f_c00287{bottom:374.547624px;}
.y5e_c00287{bottom:375.102336px;}
.y5d_c00287{bottom:376.499100px;}
.y5c_c00287{bottom:378.038124px;}
.y5b_c00287{bottom:378.807960px;}
.y5a_c00287{bottom:379.886112px;}
.y59_c00287{bottom:389.137260px;}
.y58_c00287{bottom:390.022524px;}
.y57_c00287{bottom:391.132176px;}
.y56_c00287{bottom:391.744764px;}
.y55_c00287{bottom:392.721996px;}
.y54_c00287{bottom:393.227256px;}
.y53_c00287{bottom:394.663944px;}
.y52_c00287{bottom:395.403456px;}
.y51_c00287{bottom:397.075140px;}
.y50_c00287{bottom:397.707324px;}
.y4f_c00287{bottom:402.534708px;}
.y4e_c00287{bottom:405.688968px;}
.y4d_c00287{bottom:407.775516px;}
.y4c_c00287{bottom:410.423184px;}
.y4b_c00287{bottom:411.842748px;}
.y4a_c00287{bottom:412.772508px;}
.y49_c00287{bottom:415.261716px;}
.y48_c00287{bottom:419.682780px;}
.y47_c00287{bottom:422.618808px;}
.y46_c00287{bottom:423.396672px;}
.y45_c00287{bottom:424.321236px;}
.y44_c00287{bottom:426.563544px;}
.y43_c00287{bottom:427.834536px;}
.y42_c00287{bottom:428.623788px;}
.y41_c00287{bottom:430.290756px;}
.y40_c00287{bottom:432.539364px;}
.y3f_c00287{bottom:439.608504px;}
.y3e_c00287{bottom:440.191284px;}
.y3d_c00287{bottom:442.136652px;}
.y3c_c00287{bottom:443.698056px;}
.y3b_c00287{bottom:445.390080px;}
.y3a_c00287{bottom:446.403804px;}
.y39_c00287{bottom:447.495072px;}
.y38_c00287{bottom:448.470684px;}
.y37_c00287{bottom:456.198228px;}
.y36_c00287{bottom:456.972096px;}
.y35_c00287{bottom:459.811848px;}
.y34_c00287{bottom:460.358820px;}
.y33_c00287{bottom:461.042016px;}
.y32_c00287{bottom:462.782280px;}
.y31_c00287{bottom:464.808636px;}
.y30_c00287{bottom:465.480888px;}
.y2f_c00287{bottom:472.128564px;}
.y2e_c00287{bottom:473.438304px;}
.y2d_c00287{bottom:474.694452px;}
.y2c_c00287{bottom:476.122656px;}
.y2b_c00287{bottom:477.049188px;}
.y2a_c00287{bottom:479.155548px;}
.y29_c00287{bottom:480.190032px;}
.y28_c00287{bottom:480.965724px;}
.y27_c00287{bottom:482.227032px;}
.y26_c00287{bottom:490.243740px;}
.y25_c00287{bottom:492.842124px;}
.y24_c00287{bottom:495.132720px;}
.y23_c00287{bottom:497.551428px;}
.y22_c00287{bottom:499.232352px;}
.y21_c00287{bottom:500.052060px;}
.y20_c00287{bottom:506.297988px;}
.y1f_c00287{bottom:507.019560px;}
.y1e_c00287{bottom:508.985784px;}
.y1d_c00287{bottom:509.525784px;}
.y1c_c00287{bottom:511.567176px;}
.y1b_c00287{bottom:512.082444px;}
.y1a_c00287{bottom:513.929628px;}
.y19_c00287{bottom:514.901412px;}
.y18_c00287{bottom:523.071648px;}
.y17_c00287{bottom:524.835096px;}
.y16_c00287{bottom:525.435960px;}
.y15_c00287{bottom:527.652240px;}
.y14_c00287{bottom:528.425964px;}
.y13_c00287{bottom:530.234244px;}
.y12_c00287{bottom:531.005292px;}
.y11_c00287{bottom:531.697020px;}
.y10_c00287{bottom:532.175592px;}
.yf_c00287{bottom:542.180532px;}
.ye_c00287{bottom:542.586564px;}
.yd_c00287{bottom:543.063276px;}
.yc_c00287{bottom:544.854396px;}
.yb_c00287{bottom:546.223188px;}
.ya_c00287{bottom:547.713384px;}
.y9_c00287{bottom:548.375004px;}
.y8_c00287{bottom:559.307592px;}
.y7_c00287{bottom:560.336304px;}
.y6_c00287{bottom:560.512296px;}
.y5_c00287{bottom:561.507432px;}
.y4_c00287{bottom:561.718944px;}
.y3_c00287{bottom:562.596552px;}
.y2_c00287{bottom:563.763000px;}
.y1_c00287{bottom:574.020000px;}
.h6_c00287{height:55.657123px;}
.hc_c00287{height:57.757392px;}
.hf_c00287{height:58.807526px;}
.h8_c00287{height:59.857660px;}
.h10_c00287{height:60.907795px;}
.h7_c00287{height:61.957929px;}
.h4_c00287{height:63.008063px;}
.hb_c00287{height:64.058198px;}
.h3_c00287{height:65.108332px;}
.h9_c00287{height:66.158467px;}
.ha_c00287{height:67.208601px;}
.he_c00287{height:68.258735px;}
.h5_c00287{height:69.308870px;}
.hd_c00287{height:71.409139px;}
.h2_c00287{height:78.750000px;}
.h1_c00287{height:618.750000px;}
.h0_c00287{height:619.050000px;}
.w0_c00287{width:359.100000px;}
.w1_c00287{width:359.250000px;}
.x0_c00287{left:0.000000px;}
.x78_c00287{left:35.813040px;}
.x6f_c00287{left:37.638888px;}
.x6a_c00287{left:38.825328px;}
.x59_c00287{left:39.964248px;}
.x4f_c00287{left:41.562756px;}
.x3e_c00287{left:43.242264px;}
.x35_c00287{left:44.676996px;}
.x1e_c00287{left:46.512264px;}
.xf_c00287{left:47.524368px;}
.x2_c00287{left:48.942000px;}
.x57_c00287{left:50.032224px;}
.x75_c00287{left:55.189032px;}
.x6b_c00287{left:60.191244px;}
.x10_c00287{left:61.587312px;}
.x5a_c00287{left:65.112600px;}
.x1f_c00287{left:66.517272px;}
.x46_c00287{left:68.148540px;}
.x7b_c00287{left:69.550356px;}
.x3f_c00287{left:71.616780px;}
.x17_c00287{left:74.330868px;}
.x9_c00287{left:75.855660px;}
.x72_c00287{left:77.049600px;}
.x62_c00287{left:79.937088px;}
.x11_c00287{left:81.939456px;}
.x67_c00287{left:87.363096px;}
.x52_c00287{left:90.101868px;}
.x40_c00287{left:91.880652px;}
.x2f_c00287{left:95.802984px;}
.x36_c00287{left:98.789028px;}
.x23_c00287{left:102.866976px;}
.x12_c00287{left:104.623428px;}
.x20_c00287{left:107.527380px;}
.x41_c00287{left:108.680832px;}
.x79_c00287{left:111.280944px;}
.x5b_c00287{left:114.223236px;}
.x50_c00287{left:117.578220px;}
.x37_c00287{left:119.014332px;}
.x3_c00287{left:121.845000px;}
.x83_c00287{left:124.331472px;}
.x18_c00287{left:125.638452px;}
.x3a_c00287{left:128.636004px;}
.x80_c00287{left:130.125684px;}
.x24_c00287{left:131.606784px;}
.x2a_c00287{left:133.815240px;}
.xa_c00287{left:137.953716px;}
.x19_c00287{left:139.931868px;}
.x5d_c00287{left:142.126752px;}
.x47_c00287{left:147.186516px;}
.x42_c00287{left:148.555008px;}
.x30_c00287{left:150.385164px;}
.x13_c00287{left:157.813116px;}
.x63_c00287{left:161.237472px;}
.x4b_c00287{left:164.285004px;}
.x21_c00287{left:166.516788px;}
.x3b_c00287{left:168.541236px;}
.x7e_c00287{left:170.209860px;}
.x48_c00287{left:172.297884px;}
.x4_c00287{left:176.695500px;}
.x31_c00287{left:178.621560px;}
.x14_c00287{left:180.570564px;}
.x2b_c00287{left:182.177052px;}
.x1_c00287{left:183.330000px;}
.x64_c00287{left:184.345140px;}
.x73_c00287{left:188.231688px;}
.x5_c00287{left:189.915000px;}
.x5c_c00287{left:192.904044px;}
.xb_c00287{left:194.995920px;}
.x1a_c00287{left:196.625724px;}
.x4c_c00287{left:201.290748px;}
.x68_c00287{left:204.131208px;}
.x70_c00287{left:205.631340px;}
.x38_c00287{left:207.423900px;}
.x3c_c00287{left:209.715060px;}
.x1b_c00287{left:211.620924px;}
.x27_c00287{left:213.143232px;}
.x43_c00287{left:214.676532px;}
.x25_c00287{left:215.854332px;}
.x5e_c00287{left:217.407132px;}
.x4d_c00287{left:220.468416px;}
.x22_c00287{left:222.375444px;}
.x2c_c00287{left:226.782492px;}
.x32_c00287{left:228.461448px;}
.x76_c00287{left:231.957324px;}
.x81_c00287{left:234.121716px;}
.x7c_c00287{left:240.763320px;}
.x15_c00287{left:245.756796px;}
.x5f_c00287{left:247.905492px;}
.x33_c00287{left:249.018420px;}
.x51_c00287{left:250.892436px;}
.x6_c00287{left:252.111000px;}
.x7a_c00287{left:253.215888px;}
.x26_c00287{left:255.510636px;}
.x3d_c00287{left:257.527248px;}
.x71_c00287{left:258.857664px;}
.x53_c00287{left:260.093664px;}
.x44_c00287{left:261.558288px;}
.x7_c00287{left:263.110500px;}
.x49_c00287{left:264.189948px;}
.x1c_c00287{left:266.242452px;}
.x6c_c00287{left:267.988188px;}
.xc_c00287{left:269.618868px;}
.x58_c00287{left:272.311932px;}
.x65_c00287{left:274.549464px;}
.x54_c00287{left:277.032108px;}
.x4e_c00287{left:280.120296px;}
.x2d_c00287{left:282.351096px;}
.x45_c00287{left:283.929216px;}
.x1d_c00287{left:286.303044px;}
.xd_c00287{left:289.473324px;}
.x74_c00287{left:290.973672px;}
.x60_c00287{left:292.429608px;}
.x7f_c00287{left:293.448420px;}
.x77_c00287{left:295.088124px;}
.x28_c00287{left:296.666184px;}
.x7d_c00287{left:297.930768px;}
.x2e_c00287{left:298.988532px;}
.x55_c00287{left:301.627884px;}
.x66_c00287{left:302.786016px;}
.x6e_c00287{left:304.556532px;}
.xe_c00287{left:306.410664px;}
.x82_c00287{left:308.577912px;}
.x61_c00287{left:314.023740px;}
.x16_c00287{left:315.318780px;}
.x56_c00287{left:317.060976px;}
.x29_c00287{left:319.432632px;}
.x39_c00287{left:321.357228px;}
.x69_c00287{left:322.798860px;}
.x4a_c00287{left:324.437136px;}
.x8_c00287{left:327.405000px;}
.x6d_c00287{left:329.471208px;}
.x34_c00287{left:331.567140px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.fs4_c00287{font-size:49.472998pt;}
.fsa_c00287{font-size:51.339904pt;}
.fsd_c00287{font-size:52.273356pt;}
.fs6_c00287{font-size:53.206809pt;}
.fse_c00287{font-size:54.140262pt;}
.fs5_c00287{font-size:55.073715pt;}
.fs2_c00287{font-size:56.007168pt;}
.fs9_c00287{font-size:56.940620pt;}
.fs1_c00287{font-size:57.874073pt;}
.fs7_c00287{font-size:58.807526pt;}
.fs8_c00287{font-size:59.740979pt;}
.fsc_c00287{font-size:60.674432pt;}
.fs3_c00287{font-size:61.607884pt;}
.fsb_c00287{font-size:63.474790pt;}
.fs0_c00287{font-size:70.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y101_c00287{bottom:26.441952pt;}
.y100_c00287{bottom:26.748384pt;}
.yff_c00287{bottom:27.602592pt;}
.yfe_c00287{bottom:28.774709pt;}
.yfd_c00287{bottom:29.233963pt;}
.yfc_c00287{bottom:30.345483pt;}
.yfb_c00287{bottom:30.667552pt;}
.yfa_c00287{bottom:41.864139pt;}
.yf9_c00287{bottom:42.482688pt;}
.yf8_c00287{bottom:43.717941pt;}
.yf7_c00287{bottom:44.243093pt;}
.yf6_c00287{bottom:46.306613pt;}
.yf5_c00287{bottom:47.676597pt;}
.yf4_c00287{bottom:48.195669pt;}
.yf3_c00287{bottom:48.672075pt;}
.yf2_c00287{bottom:53.996672pt;}
.yf1_c00287{bottom:54.805237pt;}
.yf0_c00287{bottom:55.223072pt;}
.yef_c00287{bottom:56.881899pt;}
.yee_c00287{bottom:58.083125pt;}
.yed_c00287{bottom:58.638496pt;}
.yec_c00287{bottom:59.247243pt;}
.yeb_c00287{bottom:61.072533pt;}
.yea_c00287{bottom:61.649547pt;}
.ye9_c00287{bottom:62.840576pt;}
.ye8_c00287{bottom:70.014731pt;}
.ye7_c00287{bottom:71.692000pt;}
.ye6_c00287{bottom:72.357504pt;}
.ye5_c00287{bottom:73.168309pt;}
.ye4_c00287{bottom:73.556597pt;}
.ye3_c00287{bottom:74.560864pt;}
.ye2_c00287{bottom:75.154261pt;}
.ye1_c00287{bottom:76.713024pt;}
.ye0_c00287{bottom:77.715360pt;}
.ydf_c00287{bottom:85.842315pt;}
.yde_c00287{bottom:86.881429pt;}
.ydd_c00287{bottom:87.328277pt;}
.ydc_c00287{bottom:89.114283pt;}
.ydb_c00287{bottom:90.514304pt;}
.yda_c00287{bottom:91.239392pt;}
.yd9_c00287{bottom:93.318304pt;}
.yd8_c00287{bottom:99.721419pt;}
.yd7_c00287{bottom:101.184555pt;}
.yd6_c00287{bottom:101.852928pt;}
.yd5_c00287{bottom:104.039072pt;}
.yd4_c00287{bottom:105.174635pt;}
.yd3_c00287{bottom:106.658133pt;}
.yd2_c00287{bottom:107.388149pt;}
.yd1_c00287{bottom:107.823851pt;}
.yd0_c00287{bottom:108.443531pt;}
.ycf_c00287{bottom:115.119861pt;}
.yce_c00287{bottom:115.605429pt;}
.ycd_c00287{bottom:115.965323pt;}
.ycc_c00287{bottom:117.330891pt;}
.ycb_c00287{bottom:117.860075pt;}
.yca_c00287{bottom:118.397269pt;}
.yc9_c00287{bottom:119.348555pt;}
.yc8_c00287{bottom:120.825685pt;}
.yc7_c00287{bottom:121.883648pt;}
.yc6_c00287{bottom:130.790304pt;}
.yc5_c00287{bottom:132.013429pt;}
.yc4_c00287{bottom:132.524960pt;}
.yc3_c00287{bottom:132.808021pt;}
.yc2_c00287{bottom:134.180853pt;}
.yc1_c00287{bottom:136.760544pt;}
.yc0_c00287{bottom:137.316064pt;}
.ybf_c00287{bottom:139.406805pt;}
.ybe_c00287{bottom:145.034251pt;}
.ybd_c00287{bottom:145.787915pt;}
.ybc_c00287{bottom:147.289173pt;}
.ybb_c00287{bottom:147.849685pt;}
.yba_c00287{bottom:150.062304pt;}
.yb9_c00287{bottom:150.713163pt;}
.yb8_c00287{bottom:153.819531pt;}
.yb7_c00287{bottom:155.734869pt;}
.yb6_c00287{bottom:159.669216pt;}
.yb5_c00287{bottom:162.237408pt;}
.yb4_c00287{bottom:164.657707pt;}
.yb3_c00287{bottom:167.263819pt;}
.yb2_c00287{bottom:168.090517pt;}
.yb1_c00287{bottom:169.091680pt;}
.yb0_c00287{bottom:170.919541pt;}
.yaf_c00287{bottom:171.811563pt;}
.yae_c00287{bottom:175.332096pt;}
.yad_c00287{bottom:176.583776pt;}
.yac_c00287{bottom:180.289984pt;}
.yab_c00287{bottom:181.135403pt;}
.yaa_c00287{bottom:183.545728pt;}
.ya9_c00287{bottom:185.167509pt;}
.ya8_c00287{bottom:187.173333pt;}
.ya7_c00287{bottom:190.325547pt;}
.ya6_c00287{bottom:191.546133pt;}
.ya5_c00287{bottom:192.750592pt;}
.ya4_c00287{bottom:195.061365pt;}
.ya3_c00287{bottom:196.599488pt;}
.ya2_c00287{bottom:197.585632pt;}
.ya1_c00287{bottom:201.054496pt;}
.ya0_c00287{bottom:202.783008pt;}
.y9f_c00287{bottom:206.458165pt;}
.y9e_c00287{bottom:207.341429pt;}
.y9d_c00287{bottom:207.836107pt;}
.y9c_c00287{bottom:209.162965pt;}
.y9b_c00287{bottom:210.410261pt;}
.y9a_c00287{bottom:213.488096pt;}
.y99_c00287{bottom:217.666197pt;}
.y98_c00287{bottom:222.946432pt;}
.y97_c00287{bottom:223.451019pt;}
.y96_c00287{bottom:225.349024pt;}
.y95_c00287{bottom:226.146688pt;}
.y94_c00287{bottom:228.058368pt;}
.y93_c00287{bottom:228.943467pt;}
.y92_c00287{bottom:230.690197pt;}
.y91_c00287{bottom:231.584000pt;}
.y90_c00287{bottom:239.236971pt;}
.y8f_c00287{bottom:240.050859pt;}
.y8e_c00287{bottom:241.674325pt;}
.y8d_c00287{bottom:243.820661pt;}
.y8c_c00287{bottom:245.518571pt;}
.y8b_c00287{bottom:246.222133pt;}
.y8a_c00287{bottom:246.943445pt;}
.y89_c00287{bottom:251.745237pt;}
.y88_c00287{bottom:252.320821pt;}
.y87_c00287{bottom:253.238773pt;}
.y86_c00287{bottom:253.871776pt;}
.y85_c00287{bottom:256.459115pt;}
.y84_c00287{bottom:258.034016pt;}
.y83_c00287{bottom:258.749323pt;}
.y82_c00287{bottom:260.218443pt;}
.y81_c00287{bottom:261.030357pt;}
.y80_c00287{bottom:262.062133pt;}
.y7f_c00287{bottom:268.618229pt;}
.y7e_c00287{bottom:269.577291pt;}
.y7d_c00287{bottom:270.402368pt;}
.y7c_c00287{bottom:272.432640pt;}
.y7b_c00287{bottom:273.961952pt;}
.y7a_c00287{bottom:276.462091pt;}
.y79_c00287{bottom:282.393376pt;}
.y78_c00287{bottom:283.685323pt;}
.y77_c00287{bottom:285.540629pt;}
.y76_c00287{bottom:286.137461pt;}
.y75_c00287{bottom:287.289259pt;}
.y74_c00287{bottom:288.470645pt;}
.y73_c00287{bottom:290.868619pt;}
.y72_c00287{bottom:297.938848pt;}
.y71_c00287{bottom:299.813291pt;}
.y70_c00287{bottom:300.174005pt;}
.y6f_c00287{bottom:301.564256pt;}
.y6e_c00287{bottom:302.672597pt;}
.y6d_c00287{bottom:303.453845pt;}
.y6c_c00287{bottom:304.249749pt;}
.y6b_c00287{bottom:305.912949pt;}
.y6a_c00287{bottom:306.711467pt;}
.y69_c00287{bottom:315.245909pt;}
.y68_c00287{bottom:315.901493pt;}
.y67_c00287{bottom:317.276437pt;}
.y66_c00287{bottom:319.215755pt;}
.y65_c00287{bottom:319.785888pt;}
.y64_c00287{bottom:320.384341pt;}
.y63_c00287{bottom:322.307360pt;}
.y62_c00287{bottom:328.372363pt;}
.y61_c00287{bottom:329.349387pt;}
.y60_c00287{bottom:331.404363pt;}
.y5f_c00287{bottom:332.931221pt;}
.y5e_c00287{bottom:333.424299pt;}
.y5d_c00287{bottom:334.665867pt;}
.y5c_c00287{bottom:336.033888pt;}
.y5b_c00287{bottom:336.718187pt;}
.y5a_c00287{bottom:337.676544pt;}
.y59_c00287{bottom:345.899787pt;}
.y58_c00287{bottom:346.686688pt;}
.y57_c00287{bottom:347.673045pt;}
.y56_c00287{bottom:348.217568pt;}
.y55_c00287{bottom:349.086219pt;}
.y54_c00287{bottom:349.535339pt;}
.y53_c00287{bottom:350.812395pt;}
.y52_c00287{bottom:351.469739pt;}
.y51_c00287{bottom:352.955680pt;}
.y50_c00287{bottom:353.517621pt;}
.y4f_c00287{bottom:357.808629pt;}
.y4e_c00287{bottom:360.612416pt;}
.y4d_c00287{bottom:362.467125pt;}
.y4c_c00287{bottom:364.820608pt;}
.y4b_c00287{bottom:366.082443pt;}
.y4a_c00287{bottom:366.908896pt;}
.y49_c00287{bottom:369.121525pt;}
.y48_c00287{bottom:373.051360pt;}
.y47_c00287{bottom:375.661163pt;}
.y46_c00287{bottom:376.352597pt;}
.y45_c00287{bottom:377.174432pt;}
.y44_c00287{bottom:379.167595pt;}
.y43_c00287{bottom:380.297365pt;}
.y42_c00287{bottom:380.998923pt;}
.y41_c00287{bottom:382.480672pt;}
.y40_c00287{bottom:384.479435pt;}
.y3f_c00287{bottom:390.763115pt;}
.y3e_c00287{bottom:391.281141pt;}
.y3d_c00287{bottom:393.010357pt;}
.y3c_c00287{bottom:394.398272pt;}
.y3b_c00287{bottom:395.902293pt;}
.y3a_c00287{bottom:396.803381pt;}
.y39_c00287{bottom:397.773397pt;}
.y38_c00287{bottom:398.640608pt;}
.y37_c00287{bottom:405.509536pt;}
.y36_c00287{bottom:406.197419pt;}
.y35_c00287{bottom:408.721643pt;}
.y34_c00287{bottom:409.207840pt;}
.y33_c00287{bottom:409.815125pt;}
.y32_c00287{bottom:411.362027pt;}
.y31_c00287{bottom:413.163232pt;}
.y30_c00287{bottom:413.760789pt;}
.y2f_c00287{bottom:419.669835pt;}
.y2e_c00287{bottom:420.834048pt;}
.y2d_c00287{bottom:421.950624pt;}
.y2c_c00287{bottom:423.220139pt;}
.y2b_c00287{bottom:424.043723pt;}
.y2a_c00287{bottom:425.916043pt;}
.y29_c00287{bottom:426.835584pt;}
.y28_c00287{bottom:427.525088pt;}
.y27_c00287{bottom:428.646251pt;}
.y26_c00287{bottom:435.772213pt;}
.y25_c00287{bottom:438.081888pt;}
.y24_c00287{bottom:440.117973pt;}
.y23_c00287{bottom:442.267936pt;}
.y22_c00287{bottom:443.762091pt;}
.y21_c00287{bottom:444.490720pt;}
.y20_c00287{bottom:450.042656pt;}
.y1f_c00287{bottom:450.684053pt;}
.y1e_c00287{bottom:452.431808pt;}
.y1d_c00287{bottom:452.911808pt;}
.y1c_c00287{bottom:454.726379pt;}
.y1b_c00287{bottom:455.184395pt;}
.y1a_c00287{bottom:456.826336pt;}
.y19_c00287{bottom:457.690144pt;}
.y18_c00287{bottom:464.952576pt;}
.y17_c00287{bottom:466.520085pt;}
.y16_c00287{bottom:467.054187pt;}
.y15_c00287{bottom:469.024213pt;}
.y14_c00287{bottom:469.711968pt;}
.y13_c00287{bottom:471.319328pt;}
.y12_c00287{bottom:472.004704pt;}
.y11_c00287{bottom:472.619573pt;}
.y10_c00287{bottom:473.044971pt;}
.yf_c00287{bottom:481.938251pt;}
.ye_c00287{bottom:482.299168pt;}
.yd_c00287{bottom:482.722912pt;}
.yc_c00287{bottom:484.315019pt;}
.yb_c00287{bottom:485.531723pt;}
.ya_c00287{bottom:486.856341pt;}
.y9_c00287{bottom:487.444448pt;}
.y8_c00287{bottom:497.162304pt;}
.y7_c00287{bottom:498.076715pt;}
.y6_c00287{bottom:498.233152pt;}
.y5_c00287{bottom:499.117717pt;}
.y4_c00287{bottom:499.305728pt;}
.y3_c00287{bottom:500.085824pt;}
.y2_c00287{bottom:501.122667pt;}
.y1_c00287{bottom:510.240000pt;}
.h6_c00287{height:49.472998pt;}
.hc_c00287{height:51.339904pt;}
.hf_c00287{height:52.273356pt;}
.h8_c00287{height:53.206809pt;}
.h10_c00287{height:54.140262pt;}
.h7_c00287{height:55.073715pt;}
.h4_c00287{height:56.007168pt;}
.hb_c00287{height:56.940620pt;}
.h3_c00287{height:57.874073pt;}
.h9_c00287{height:58.807526pt;}
.ha_c00287{height:59.740979pt;}
.he_c00287{height:60.674432pt;}
.h5_c00287{height:61.607884pt;}
.hd_c00287{height:63.474790pt;}
.h2_c00287{height:70.000000pt;}
.h1_c00287{height:550.000000pt;}
.h0_c00287{height:550.266667pt;}
.w0_c00287{width:319.200000pt;}
.w1_c00287{width:319.333333pt;}
.x0_c00287{left:0.000000pt;}
.x78_c00287{left:31.833813pt;}
.x6f_c00287{left:33.456789pt;}
.x6a_c00287{left:34.511403pt;}
.x59_c00287{left:35.523776pt;}
.x4f_c00287{left:36.944672pt;}
.x3e_c00287{left:38.437568pt;}
.x35_c00287{left:39.712885pt;}
.x1e_c00287{left:41.344235pt;}
.xf_c00287{left:42.243883pt;}
.x2_c00287{left:43.504000pt;}
.x57_c00287{left:44.473088pt;}
.x75_c00287{left:49.056917pt;}
.x6b_c00287{left:53.503328pt;}
.x10_c00287{left:54.744277pt;}
.x5a_c00287{left:57.877867pt;}
.x1f_c00287{left:59.126464pt;}
.x46_c00287{left:60.576480pt;}
.x7b_c00287{left:61.822539pt;}
.x3f_c00287{left:63.659360pt;}
.x17_c00287{left:66.071883pt;}
.x9_c00287{left:67.427253pt;}
.x72_c00287{left:68.488533pt;}
.x62_c00287{left:71.055189pt;}
.x11_c00287{left:72.835072pt;}
.x67_c00287{left:77.656085pt;}
.x52_c00287{left:80.090549pt;}
.x40_c00287{left:81.671691pt;}
.x2f_c00287{left:85.158208pt;}
.x36_c00287{left:87.812469pt;}
.x23_c00287{left:91.437312pt;}
.x12_c00287{left:92.998603pt;}
.x20_c00287{left:95.579893pt;}
.x41_c00287{left:96.605184pt;}
.x79_c00287{left:98.916395pt;}
.x5b_c00287{left:101.531765pt;}
.x50_c00287{left:104.513973pt;}
.x37_c00287{left:105.790517pt;}
.x3_c00287{left:108.306667pt;}
.x83_c00287{left:110.516864pt;}
.x18_c00287{left:111.678624pt;}
.x3a_c00287{left:114.343115pt;}
.x80_c00287{left:115.667275pt;}
.x24_c00287{left:116.983808pt;}
.x2a_c00287{left:118.946880pt;}
.xa_c00287{left:122.625525pt;}
.x19_c00287{left:124.383883pt;}
.x5d_c00287{left:126.334891pt;}
.x47_c00287{left:130.832459pt;}
.x42_c00287{left:132.048896pt;}
.x30_c00287{left:133.675701pt;}
.x13_c00287{left:140.278325pt;}
.x63_c00287{left:143.322197pt;}
.x4b_c00287{left:146.031115pt;}
.x21_c00287{left:148.014923pt;}
.x3b_c00287{left:149.814432pt;}
.x7e_c00287{left:151.297653pt;}
.x48_c00287{left:153.153675pt;}
.x4_c00287{left:157.062667pt;}
.x31_c00287{left:158.774720pt;}
.x14_c00287{left:160.507168pt;}
.x2b_c00287{left:161.935157pt;}
.x1_c00287{left:162.960000pt;}
.x64_c00287{left:163.862347pt;}
.x73_c00287{left:167.317056pt;}
.x5_c00287{left:168.813333pt;}
.x5c_c00287{left:171.470261pt;}
.xb_c00287{left:173.329707pt;}
.x1a_c00287{left:174.778421pt;}
.x4c_c00287{left:178.925109pt;}
.x68_c00287{left:181.449963pt;}
.x70_c00287{left:182.783413pt;}
.x38_c00287{left:184.376800pt;}
.x3c_c00287{left:186.413387pt;}
.x1b_c00287{left:188.107488pt;}
.x27_c00287{left:189.460651pt;}
.x43_c00287{left:190.823584pt;}
.x25_c00287{left:191.870517pt;}
.x5e_c00287{left:193.250784pt;}
.x4d_c00287{left:195.971925pt;}
.x22_c00287{left:197.667061pt;}
.x2c_c00287{left:201.584437pt;}
.x32_c00287{left:203.076843pt;}
.x76_c00287{left:206.184288pt;}
.x81_c00287{left:208.108192pt;}
.x7c_c00287{left:214.011840pt;}
.x15_c00287{left:218.450485pt;}
.x5f_c00287{left:220.360437pt;}
.x33_c00287{left:221.349707pt;}
.x51_c00287{left:223.015499pt;}
.x6_c00287{left:224.098667pt;}
.x7a_c00287{left:225.080789pt;}
.x26_c00287{left:227.120565pt;}
.x3d_c00287{left:228.913109pt;}
.x71_c00287{left:230.095701pt;}
.x53_c00287{left:231.194368pt;}
.x44_c00287{left:232.496256pt;}
.x7_c00287{left:233.876000pt;}
.x49_c00287{left:234.835509pt;}
.x1c_c00287{left:236.659957pt;}
.x6c_c00287{left:238.211723pt;}
.xc_c00287{left:239.661216pt;}
.x58_c00287{left:242.055051pt;}
.x65_c00287{left:244.043968pt;}
.x54_c00287{left:246.250763pt;}
.x4e_c00287{left:248.995819pt;}
.x2d_c00287{left:250.978752pt;}
.x45_c00287{left:252.381525pt;}
.x1d_c00287{left:254.491595pt;}
.xd_c00287{left:257.309621pt;}
.x74_c00287{left:258.643264pt;}
.x60_c00287{left:259.937429pt;}
.x7f_c00287{left:260.843040pt;}
.x77_c00287{left:262.300555pt;}
.x28_c00287{left:263.703275pt;}
.x7d_c00287{left:264.827349pt;}
.x2e_c00287{left:265.767584pt;}
.x55_c00287{left:268.113675pt;}
.x66_c00287{left:269.143125pt;}
.x6e_c00287{left:270.716917pt;}
.xe_c00287{left:272.365035pt;}
.x82_c00287{left:274.291477pt;}
.x61_c00287{left:279.132213pt;}
.x16_c00287{left:280.283360pt;}
.x56_c00287{left:281.831979pt;}
.x29_c00287{left:283.940117pt;}
.x39_c00287{left:285.650869pt;}
.x69_c00287{left:286.932320pt;}
.x4a_c00287{left:288.388565pt;}
.x8_c00287{left:291.026667pt;}
.x6d_c00287{left:292.863296pt;}
.x34_c00287{left:294.726347pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00288 {
    display:none;
  }
  .loading-indicator_c00288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00288 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00288 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00288" -> "#page-container .classname_c00288")
 */
.pf_c00288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00288 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00288 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00288 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00288 {overflow:visible;}
  }
}
.c_c00288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00288 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00288:after { /* webkit #35443 */
  content: '';
}
.t_c00288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00288 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00288 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00288 { /* info for Javascript */
  display:none;
}
.l_c00288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00288:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00288 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00288.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00288;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.014320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014320,0.000000,0.000000,0.250000,0,0);}
.m51_c00288{transform:matrix(0.025415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025415,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00288{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m36_c00288{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.mf2_c00288{transform:matrix(0.146555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146555,0.000000,0.000000,0.250000,0,0);}
.md0_c00288{transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m39_c00288{transform:matrix(0.147945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147945,0.000000,0.000000,0.250000,0,0);}
.mf7_c00288{transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);}
.m87_c00288{transform:matrix(0.150020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150020,0.000000,0.000000,0.250000,0,0);}
.mbf_c00288{transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m46_c00288{transform:matrix(0.153035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153035,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.me4_c00288{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.me2_c00288{transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);}
.md1_c00288{transform:matrix(0.157885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157885,0.000000,0.000000,0.250000,0,0);}
.m3c_c00288{transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158155,0.000000,0.000000,0.250000,0,0);}
.mbe_c00288{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.m9b_c00288{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m3b_c00288{transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);}
.m6a_c00288{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mad_c00288{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{transform:matrix(0.161065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161065,0.000000,0.000000,0.250000,0,0);}
.m48_c00288{transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162795,0.000000,0.000000,0.250000,0,0);}
.m2c_c00288{transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);}
.m38_c00288{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.mbd_c00288{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.mbc_c00288{transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);}
.m97_c00288{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m86_c00288{transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);}
.m2f_c00288{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.m3a_c00288{transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);}
.me3_c00288{transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);}
.m61_c00288{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m5e_c00288{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m31_c00288{transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);}
.me0_c00288{transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);}
.m18_c00288{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170735,0.000000,0.000000,0.250000,0,0);}
.mef_c00288{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.ma5_c00288{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m65_c00288{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00288{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.mb1_c00288{transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00288{transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);}
.mac_c00288{transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173440,0.000000,0.000000,0.250000,0,0);}
.m91_c00288{transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);}
.m6b_c00288{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.mf6_c00288{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00288{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00288{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00288{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.mec_c00288{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.md4_c00288{transform:matrix(0.175285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175285,0.000000,0.000000,0.250000,0,0);}
.me1_c00288{transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);}
.mf3_c00288{transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175820,0.000000,0.000000,0.250000,0,0);}
.m43_c00288{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m30_c00288{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.m26_c00288{transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);}
.me6_c00288{transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);}
.mca_c00288{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.ma3_c00288{transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);}
.m8f_c00288{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);}
.mee_c00288{transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);}
.m23_c00288{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.me5_c00288{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.mb6_c00288{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m7f_c00288{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00288{transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181495,0.000000,0.000000,0.250000,0,0);}
.m9a_c00288{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.m2a_c00288{transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);}
.m27_c00288{transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);}
.m3d_c00288{transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);}
.m14_c00288{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m5c_c00288{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m45_c00288{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.mde_c00288{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m80_c00288{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m3e_c00288{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m4f_c00288{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.mc8_c00288{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.mf4_c00288{transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);}
.m95_c00288{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.mc3_c00288{transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);}
.m40_c00288{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m89_c00288{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.me7_c00288{transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);}
.m8c_c00288{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.mea_c00288{transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);}
.m83_c00288{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.mba_c00288{transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);}
.m7d_c00288{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.m93_c00288{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.md6_c00288{transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);}
.mdc_c00288{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m37_c00288{transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188440,0.000000,0.000000,0.250000,0,0);}
.m78_c00288{transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00288{transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);}
.m29_c00288{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m50_c00288{transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);}
.md9_c00288{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mdb_c00288{transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.mf5_c00288{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.mc9_c00288{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.maf_c00288{transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);}
.m59_c00288{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00288{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.me8_c00288{transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);}
.md3_c00288{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.md7_c00288{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193745,0.000000,0.000000,0.250000,0,0);}
.m60_c00288{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.mc0_c00288{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.m22_c00288{transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);}
.m9e_c00288{transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m69_c00288{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.maa_c00288{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.ma7_c00288{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.m99_c00288{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m81_c00288{transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);}
.m56_c00288{transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);}
.m25_c00288{transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);}
.m4c_c00288{transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);}
.m85_c00288{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m6c_c00288{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.m5f_c00288{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mae_c00288{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m33_c00288{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m63_c00288{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.md2_c00288{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.med_c00288{transform:matrix(0.200785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200785,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);}
.mab_c00288{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m74_c00288{transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);}
.ma9_c00288{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.m57_c00288{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.m66_c00288{transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203030,0.000000,0.000000,0.250000,0,0);}
.m3f_c00288{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.mc4_c00288{transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00288{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.mb3_c00288{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.mbb_c00288{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00288{transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204235,0.000000,0.000000,0.250000,0,0);}
.m92_c00288{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m8d_c00288{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00288{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.m62_c00288{transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205080,0.000000,0.000000,0.250000,0,0);}
.m75_c00288{transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);}
.mb7_c00288{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m12_c00288{transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);}
.m8e_c00288{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.m7a_c00288{transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);}
.m94_c00288{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00288{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m79_c00288{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.m41_c00288{transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);}
.mda_c00288{transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207980,0.000000,0.000000,0.250000,0,0);}
.mc5_c00288{transform:matrix(0.208380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208380,0.000000,0.000000,0.250000,0,0);}
.m42_c00288{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m5d_c00288{transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);}
.m44_c00288{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);}
.mb9_c00288{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m55_c00288{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m64_c00288{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m8a_c00288{transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);}
.m52_c00288{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00288{transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);}
.m4b_c00288{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00288{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.ma1_c00288{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.ma0_c00288{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.mcc_c00288{transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215080,0.000000,0.000000,0.250000,0,0);}
.mcd_c00288{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m71_c00288{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.216855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216855,0.000000,0.000000,0.250000,0,0);}
.m96_c00288{transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);}
.m88_c00288{transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00288{transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);}
.m6d_c00288{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m68_c00288{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m47_c00288{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m82_c00288{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m73_c00288{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m58_c00288{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m4d_c00288{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mb8_c00288{transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);}
.m7c_c00288{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.ma6_c00288{transform:matrix(0.223690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223690,0.000000,0.000000,0.250000,0,0);}
.ma2_c00288{transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);}
.m5b_c00288{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.mf0_c00288{transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);}
.md8_c00288{transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);}
.mb0_c00288{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00288{transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);}
.m84_c00288{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00288{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232680,0.000000,0.000000,0.250000,0,0);}
.mf1_c00288{transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);}
.m72_c00288{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m35_c00288{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m67_c00288{transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);}
.meb_c00288{transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241440,0.000000,0.000000,0.250000,0,0);}
.ma8_c00288{transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);}
.mf9_c00288{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m98_c00288{transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);}
.m77_c00288{transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);}
.md5_c00288{transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);}
.mf8_c00288{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m76_c00288{transform:matrix(0.309285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309285,0.000000,0.000000,0.250000,0,0);}
.m90_c00288{transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);}
.mce_c00288{transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);}
.m70_c00288{transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);}
.mc1_c00288{transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00288{transform:matrix(0.594865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594865,0.000000,0.000000,0.250000,0,0);}
.mc6_c00288{transform:matrix(0.718415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718415,0.000000,0.000000,0.250000,0,0);}
.me9_c00288{transform:matrix(0.780620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780620,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:0.000000px;}
.fc0_c00288{color:transparent;}
.fs8_c00288{font-size:57.750000px;}
.fs1_c00288{font-size:59.850000px;}
.fs6_c00288{font-size:60.900000px;}
.fs7_c00288{font-size:61.950000px;}
.fs2_c00288{font-size:63.000000px;}
.fs5_c00288{font-size:64.050000px;}
.fs9_c00288{font-size:65.100000px;}
.fsa_c00288{font-size:66.150000px;}
.fsb_c00288{font-size:67.200000px;}
.fs3_c00288{font-size:69.300000px;}
.fs4_c00288{font-size:72.450000px;}
.fs0_c00288{font-size:120.750000px;}
.y0_c00288{bottom:0.000000px;}
.y6c_c00288{bottom:17.901000px;}
.y6b_c00288{bottom:18.213000px;}
.y6a_c00288{bottom:18.436500px;}
.y69_c00288{bottom:18.828000px;}
.y68_c00288{bottom:19.546500px;}
.y67_c00288{bottom:20.745000px;}
.y66_c00288{bottom:21.028500px;}
.y65_c00288{bottom:21.603000px;}
.y64_c00288{bottom:36.067500px;}
.y63_c00288{bottom:37.165500px;}
.y62_c00288{bottom:37.444500px;}
.y61_c00288{bottom:37.902000px;}
.y60_c00288{bottom:38.802000px;}
.y5f_c00288{bottom:39.082500px;}
.y5e_c00288{bottom:39.415500px;}
.y5d_c00288{bottom:39.727500px;}
.y5c_c00288{bottom:40.504500px;}
.y5b_c00288{bottom:53.349000px;}
.y5a_c00288{bottom:68.728500px;}
.y59_c00288{bottom:68.977500px;}
.y58_c00288{bottom:69.240000px;}
.y57_c00288{bottom:69.654000px;}
.y56_c00288{bottom:70.366500px;}
.y55_c00288{bottom:70.647000px;}
.y54_c00288{bottom:71.521500px;}
.y53_c00288{bottom:71.775000px;}
.y52_c00288{bottom:72.094500px;}
.y51_c00288{bottom:87.907500px;}
.y50_c00288{bottom:105.393000px;}
.y4f_c00288{bottom:122.106000px;}
.y4e_c00288{bottom:139.500000px;}
.y4d_c00288{bottom:139.950000px;}
.y4c_c00288{bottom:140.236500px;}
.y4b_c00288{bottom:140.881500px;}
.y4a_c00288{bottom:141.853500px;}
.y49_c00288{bottom:142.306500px;}
.y48_c00288{bottom:143.419500px;}
.y47_c00288{bottom:143.643000px;}
.y46_c00288{bottom:157.023000px;}
.y45_c00288{bottom:172.737000px;}
.y44_c00288{bottom:189.103500px;}
.y43_c00288{bottom:189.442500px;}
.y42_c00288{bottom:189.691500px;}
.y41_c00288{bottom:190.215000px;}
.y40_c00288{bottom:190.488000px;}
.y3f_c00288{bottom:191.034000px;}
.y3e_c00288{bottom:191.173500px;}
.y3d_c00288{bottom:191.877000px;}
.y3c_c00288{bottom:192.243000px;}
.y3b_c00288{bottom:206.379000px;}
.y3a_c00288{bottom:207.340500px;}
.y39_c00288{bottom:208.045500px;}
.y38_c00288{bottom:208.276500px;}
.y37_c00288{bottom:208.816500px;}
.y36_c00288{bottom:209.200500px;}
.y35_c00288{bottom:209.523000px;}
.y34_c00288{bottom:223.470000px;}
.y33_c00288{bottom:223.779000px;}
.y32_c00288{bottom:224.173500px;}
.y31_c00288{bottom:224.394000px;}
.y30_c00288{bottom:225.148500px;}
.y2f_c00288{bottom:225.657000px;}
.y2e_c00288{bottom:225.793500px;}
.y2d_c00288{bottom:226.339500px;}
.y2c_c00288{bottom:226.533000px;}
.y2b_c00288{bottom:240.699000px;}
.y2a_c00288{bottom:241.075500px;}
.y29_c00288{bottom:241.719000px;}
.y28_c00288{bottom:241.945500px;}
.y27_c00288{bottom:242.137500px;}
.y26_c00288{bottom:243.295500px;}
.y25_c00288{bottom:243.574500px;}
.y24_c00288{bottom:244.198500px;}
.y23_c00288{bottom:244.353000px;}
.y22_c00288{bottom:258.123000px;}
.y21_c00288{bottom:259.117500px;}
.y20_c00288{bottom:259.813500px;}
.y1f_c00288{bottom:260.235000px;}
.y1e_c00288{bottom:261.078000px;}
.y1d_c00288{bottom:261.363000px;}
.y1c_c00288{bottom:276.355500px;}
.y1b_c00288{bottom:293.077500px;}
.y1a_c00288{bottom:293.368500px;}
.y19_c00288{bottom:293.647500px;}
.y18_c00288{bottom:294.580500px;}
.y17_c00288{bottom:295.240500px;}
.y16_c00288{bottom:295.923000px;}
.y15_c00288{bottom:311.862000px;}
.y14_c00288{bottom:328.386000px;}
.y13_c00288{bottom:344.670000px;}
.y12_c00288{bottom:361.197000px;}
.y11_c00288{bottom:378.429000px;}
.y10_c00288{bottom:395.169000px;}
.yf_c00288{bottom:412.179000px;}
.ye_c00288{bottom:429.075000px;}
.yd_c00288{bottom:447.625500px;}
.yc_c00288{bottom:463.360500px;}
.yb_c00288{bottom:479.790000px;}
.ya_c00288{bottom:480.163500px;}
.y9_c00288{bottom:480.828000px;}
.y8_c00288{bottom:481.368000px;}
.y7_c00288{bottom:482.298000px;}
.y6_c00288{bottom:482.761500px;}
.y5_c00288{bottom:497.527500px;}
.y4_c00288{bottom:514.842000px;}
.y3_c00288{bottom:532.479000px;}
.y2_c00288{bottom:549.031500px;}
.y1_c00288{bottom:563.646000px;}
.ha_c00288{height:57.750000px;}
.h3_c00288{height:59.850000px;}
.h8_c00288{height:60.900000px;}
.h9_c00288{height:61.950000px;}
.h4_c00288{height:63.000000px;}
.h7_c00288{height:64.050000px;}
.hb_c00288{height:65.100000px;}
.hc_c00288{height:66.150000px;}
.hd_c00288{height:67.200000px;}
.h5_c00288{height:69.300000px;}
.h6_c00288{height:72.450000px;}
.h2_c00288{height:120.750000px;}
.h1_c00288{height:618.750000px;}
.h0_c00288{height:619.050000px;}
.w0_c00288{width:359.100000px;}
.w1_c00288{width:359.250000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:15.660000px;}
.x1_c00288{left:17.280000px;}
.x10_c00288{left:18.630000px;}
.x40_c00288{left:22.410000px;}
.x53_c00288{left:24.153000px;}
.x4_c00288{left:31.860000px;}
.x4e_c00288{left:34.020000px;}
.x54_c00288{left:35.221500px;}
.x2b_c00288{left:36.990000px;}
.x78_c00288{left:38.427000px;}
.x9_c00288{left:40.500000px;}
.x63_c00288{left:42.658500px;}
.x41_c00288{left:44.010000px;}
.x5a_c00288{left:46.819500px;}
.x5c_c00288{left:50.341500px;}
.x3b_c00288{left:54.810000px;}
.x1d_c00288{left:57.658500px;}
.x2c_c00288{left:62.100000px;}
.x46_c00288{left:67.230000px;}
.x6d_c00288{left:68.845500px;}
.xa_c00288{left:71.550000px;}
.x32_c00288{left:73.440000px;}
.x4f_c00288{left:75.870000px;}
.x3c_c00288{left:77.220000px;}
.x29_c00288{left:79.380000px;}
.x71_c00288{left:80.455500px;}
.x47_c00288{left:82.080000px;}
.x11_c00288{left:84.510000px;}
.xb_c00288{left:85.860000px;}
.x22_c00288{left:87.748500px;}
.x6b_c00288{left:90.445500px;}
.x2d_c00288{left:92.340000px;}
.x6e_c00288{left:94.225500px;}
.x5_c00288{left:96.390000px;}
.x33_c00288{left:98.010000px;}
.x55_c00288{left:99.738000px;}
.x23_c00288{left:103.408500px;}
.x2a_c00288{left:104.760000px;}
.x66_c00288{left:107.050500px;}
.x4b_c00288{left:109.620000px;}
.x42_c00288{left:110.970000px;}
.x74_c00288{left:113.226000px;}
.x5d_c00288{left:114.360000px;}
.x5b_c00288{left:117.901500px;}
.x37_c00288{left:119.070000px;}
.x12_c00288{left:124.470000px;}
.x5e_c00288{left:127.042500px;}
.xc_c00288{left:128.520000px;}
.x75_c00288{left:130.789500px;}
.x48_c00288{left:132.300000px;}
.x3d_c00288{left:134.190000px;}
.x13_c00288{left:136.080000px;}
.x67_c00288{left:137.287500px;}
.x3e_c00288{left:139.050000px;}
.x1e_c00288{left:142.152000px;}
.x24_c00288{left:144.178500px;}
.x2_c00288{left:146.880000px;}
.x6f_c00288{left:148.876500px;}
.x18_c00288{left:151.470000px;}
.x43_c00288{left:162.270000px;}
.x6_c00288{left:164.430000px;}
.x69_c00288{left:168.745500px;}
.x70_c00288{left:170.469000px;}
.x38_c00288{left:172.260000px;}
.x61_c00288{left:175.228500px;}
.x25_c00288{left:176.848500px;}
.x14_c00288{left:178.200000px;}
.xd_c00288{left:180.900000px;}
.x56_c00288{left:182.421000px;}
.x79_c00288{left:185.313000px;}
.x76_c00288{left:187.017000px;}
.x19_c00288{left:189.540000px;}
.x1f_c00288{left:191.307000px;}
.x15_c00288{left:195.750000px;}
.x62_c00288{left:197.908500px;}
.xe_c00288{left:198.990000px;}
.x5f_c00288{left:201.565500px;}
.x51_c00288{left:203.970000px;}
.x34_c00288{left:209.520000px;}
.x58_c00288{left:211.546500px;}
.x2e_c00288{left:212.760000px;}
.x6c_c00288{left:216.265500px;}
.x50_c00288{left:217.890000px;}
.x72_c00288{left:220.045500px;}
.x1a_c00288{left:221.130000px;}
.x4c_c00288{left:222.750000px;}
.x7_c00288{left:224.910000px;}
.x35_c00288{left:226.260000px;}
.x26_c00288{left:231.388500px;}
.x77_c00288{left:233.074500px;}
.x7a_c00288{left:236.664000px;}
.x2f_c00288{left:238.950000px;}
.x8_c00288{left:240.300000px;}
.x1b_c00288{left:241.380000px;}
.x3f_c00288{left:243.270000px;}
.x64_c00288{left:244.888500px;}
.x39_c00288{left:245.970000px;}
.x49_c00288{left:248.130000px;}
.x44_c00288{left:250.020000px;}
.x20_c00288{left:251.773500px;}
.x27_c00288{left:257.038500px;}
.x57_c00288{left:258.283500px;}
.x16_c00288{left:259.740000px;}
.x65_c00288{left:261.898500px;}
.x4a_c00288{left:263.520000px;}
.x7b_c00288{left:264.678000px;}
.x30_c00288{left:267.030000px;}
.x45_c00288{left:270.270000px;}
.x60_c00288{left:271.771500px;}
.x6a_c00288{left:274.315500px;}
.xf_c00288{left:275.670000px;}
.x4d_c00288{left:278.100000px;}
.x7c_c00288{left:280.632000px;}
.x17_c00288{left:283.770000px;}
.x21_c00288{left:285.795000px;}
.x52_c00288{left:286.864500px;}
.x1c_c00288{left:289.710000px;}
.x31_c00288{left:291.060000px;}
.x68_c00288{left:294.193500px;}
.x59_c00288{left:295.561500px;}
.x28_c00288{left:298.618500px;}
.x73_c00288{left:301.585500px;}
.x36_c00288{left:303.210000px;}
.x3a_c00288{left:307.260000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.fs8_c00288{font-size:51.333333pt;}
.fs1_c00288{font-size:53.200000pt;}
.fs6_c00288{font-size:54.133333pt;}
.fs7_c00288{font-size:55.066667pt;}
.fs2_c00288{font-size:56.000000pt;}
.fs5_c00288{font-size:56.933333pt;}
.fs9_c00288{font-size:57.866667pt;}
.fsa_c00288{font-size:58.800000pt;}
.fsb_c00288{font-size:59.733333pt;}
.fs3_c00288{font-size:61.600000pt;}
.fs4_c00288{font-size:64.400000pt;}
.fs0_c00288{font-size:107.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y6c_c00288{bottom:15.912000pt;}
.y6b_c00288{bottom:16.189333pt;}
.y6a_c00288{bottom:16.388000pt;}
.y69_c00288{bottom:16.736000pt;}
.y68_c00288{bottom:17.374667pt;}
.y67_c00288{bottom:18.440000pt;}
.y66_c00288{bottom:18.692000pt;}
.y65_c00288{bottom:19.202667pt;}
.y64_c00288{bottom:32.060000pt;}
.y63_c00288{bottom:33.036000pt;}
.y62_c00288{bottom:33.284000pt;}
.y61_c00288{bottom:33.690667pt;}
.y60_c00288{bottom:34.490667pt;}
.y5f_c00288{bottom:34.740000pt;}
.y5e_c00288{bottom:35.036000pt;}
.y5d_c00288{bottom:35.313333pt;}
.y5c_c00288{bottom:36.004000pt;}
.y5b_c00288{bottom:47.421333pt;}
.y5a_c00288{bottom:61.092000pt;}
.y59_c00288{bottom:61.313333pt;}
.y58_c00288{bottom:61.546667pt;}
.y57_c00288{bottom:61.914667pt;}
.y56_c00288{bottom:62.548000pt;}
.y55_c00288{bottom:62.797333pt;}
.y54_c00288{bottom:63.574667pt;}
.y53_c00288{bottom:63.800000pt;}
.y52_c00288{bottom:64.084000pt;}
.y51_c00288{bottom:78.140000pt;}
.y50_c00288{bottom:93.682667pt;}
.y4f_c00288{bottom:108.538667pt;}
.y4e_c00288{bottom:124.000000pt;}
.y4d_c00288{bottom:124.400000pt;}
.y4c_c00288{bottom:124.654667pt;}
.y4b_c00288{bottom:125.228000pt;}
.y4a_c00288{bottom:126.092000pt;}
.y49_c00288{bottom:126.494667pt;}
.y48_c00288{bottom:127.484000pt;}
.y47_c00288{bottom:127.682667pt;}
.y46_c00288{bottom:139.576000pt;}
.y45_c00288{bottom:153.544000pt;}
.y44_c00288{bottom:168.092000pt;}
.y43_c00288{bottom:168.393333pt;}
.y42_c00288{bottom:168.614667pt;}
.y41_c00288{bottom:169.080000pt;}
.y40_c00288{bottom:169.322667pt;}
.y3f_c00288{bottom:169.808000pt;}
.y3e_c00288{bottom:169.932000pt;}
.y3d_c00288{bottom:170.557333pt;}
.y3c_c00288{bottom:170.882667pt;}
.y3b_c00288{bottom:183.448000pt;}
.y3a_c00288{bottom:184.302667pt;}
.y39_c00288{bottom:184.929333pt;}
.y38_c00288{bottom:185.134667pt;}
.y37_c00288{bottom:185.614667pt;}
.y36_c00288{bottom:185.956000pt;}
.y35_c00288{bottom:186.242667pt;}
.y34_c00288{bottom:198.640000pt;}
.y33_c00288{bottom:198.914667pt;}
.y32_c00288{bottom:199.265333pt;}
.y31_c00288{bottom:199.461333pt;}
.y30_c00288{bottom:200.132000pt;}
.y2f_c00288{bottom:200.584000pt;}
.y2e_c00288{bottom:200.705333pt;}
.y2d_c00288{bottom:201.190667pt;}
.y2c_c00288{bottom:201.362667pt;}
.y2b_c00288{bottom:213.954667pt;}
.y2a_c00288{bottom:214.289333pt;}
.y29_c00288{bottom:214.861333pt;}
.y28_c00288{bottom:215.062667pt;}
.y27_c00288{bottom:215.233333pt;}
.y26_c00288{bottom:216.262667pt;}
.y25_c00288{bottom:216.510667pt;}
.y24_c00288{bottom:217.065333pt;}
.y23_c00288{bottom:217.202667pt;}
.y22_c00288{bottom:229.442667pt;}
.y21_c00288{bottom:230.326667pt;}
.y20_c00288{bottom:230.945333pt;}
.y1f_c00288{bottom:231.320000pt;}
.y1e_c00288{bottom:232.069333pt;}
.y1d_c00288{bottom:232.322667pt;}
.y1c_c00288{bottom:245.649333pt;}
.y1b_c00288{bottom:260.513333pt;}
.y1a_c00288{bottom:260.772000pt;}
.y19_c00288{bottom:261.020000pt;}
.y18_c00288{bottom:261.849333pt;}
.y17_c00288{bottom:262.436000pt;}
.y16_c00288{bottom:263.042667pt;}
.y15_c00288{bottom:277.210667pt;}
.y14_c00288{bottom:291.898667pt;}
.y13_c00288{bottom:306.373333pt;}
.y12_c00288{bottom:321.064000pt;}
.y11_c00288{bottom:336.381333pt;}
.y10_c00288{bottom:351.261333pt;}
.yf_c00288{bottom:366.381333pt;}
.ye_c00288{bottom:381.400000pt;}
.yd_c00288{bottom:397.889333pt;}
.yc_c00288{bottom:411.876000pt;}
.yb_c00288{bottom:426.480000pt;}
.ya_c00288{bottom:426.812000pt;}
.y9_c00288{bottom:427.402667pt;}
.y8_c00288{bottom:427.882667pt;}
.y7_c00288{bottom:428.709333pt;}
.y6_c00288{bottom:429.121333pt;}
.y5_c00288{bottom:442.246667pt;}
.y4_c00288{bottom:457.637333pt;}
.y3_c00288{bottom:473.314667pt;}
.y2_c00288{bottom:488.028000pt;}
.y1_c00288{bottom:501.018667pt;}
.ha_c00288{height:51.333333pt;}
.h3_c00288{height:53.200000pt;}
.h8_c00288{height:54.133333pt;}
.h9_c00288{height:55.066667pt;}
.h4_c00288{height:56.000000pt;}
.h7_c00288{height:56.933333pt;}
.hb_c00288{height:57.866667pt;}
.hc_c00288{height:58.800000pt;}
.hd_c00288{height:59.733333pt;}
.h5_c00288{height:61.600000pt;}
.h6_c00288{height:64.400000pt;}
.h2_c00288{height:107.333333pt;}
.h1_c00288{height:550.000000pt;}
.h0_c00288{height:550.266667pt;}
.w0_c00288{width:319.200000pt;}
.w1_c00288{width:319.333333pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:13.920000pt;}
.x1_c00288{left:15.360000pt;}
.x10_c00288{left:16.560000pt;}
.x40_c00288{left:19.920000pt;}
.x53_c00288{left:21.469333pt;}
.x4_c00288{left:28.320000pt;}
.x4e_c00288{left:30.240000pt;}
.x54_c00288{left:31.308000pt;}
.x2b_c00288{left:32.880000pt;}
.x78_c00288{left:34.157333pt;}
.x9_c00288{left:36.000000pt;}
.x63_c00288{left:37.918667pt;}
.x41_c00288{left:39.120000pt;}
.x5a_c00288{left:41.617333pt;}
.x5c_c00288{left:44.748000pt;}
.x3b_c00288{left:48.720000pt;}
.x1d_c00288{left:51.252000pt;}
.x2c_c00288{left:55.200000pt;}
.x46_c00288{left:59.760000pt;}
.x6d_c00288{left:61.196000pt;}
.xa_c00288{left:63.600000pt;}
.x32_c00288{left:65.280000pt;}
.x4f_c00288{left:67.440000pt;}
.x3c_c00288{left:68.640000pt;}
.x29_c00288{left:70.560000pt;}
.x71_c00288{left:71.516000pt;}
.x47_c00288{left:72.960000pt;}
.x11_c00288{left:75.120000pt;}
.xb_c00288{left:76.320000pt;}
.x22_c00288{left:77.998667pt;}
.x6b_c00288{left:80.396000pt;}
.x2d_c00288{left:82.080000pt;}
.x6e_c00288{left:83.756000pt;}
.x5_c00288{left:85.680000pt;}
.x33_c00288{left:87.120000pt;}
.x55_c00288{left:88.656000pt;}
.x23_c00288{left:91.918667pt;}
.x2a_c00288{left:93.120000pt;}
.x66_c00288{left:95.156000pt;}
.x4b_c00288{left:97.440000pt;}
.x42_c00288{left:98.640000pt;}
.x74_c00288{left:100.645333pt;}
.x5d_c00288{left:101.653333pt;}
.x5b_c00288{left:104.801333pt;}
.x37_c00288{left:105.840000pt;}
.x12_c00288{left:110.640000pt;}
.x5e_c00288{left:112.926667pt;}
.xc_c00288{left:114.240000pt;}
.x75_c00288{left:116.257333pt;}
.x48_c00288{left:117.600000pt;}
.x3d_c00288{left:119.280000pt;}
.x13_c00288{left:120.960000pt;}
.x67_c00288{left:122.033333pt;}
.x3e_c00288{left:123.600000pt;}
.x1e_c00288{left:126.357333pt;}
.x24_c00288{left:128.158667pt;}
.x2_c00288{left:130.560000pt;}
.x6f_c00288{left:132.334667pt;}
.x18_c00288{left:134.640000pt;}
.x43_c00288{left:144.240000pt;}
.x6_c00288{left:146.160000pt;}
.x69_c00288{left:149.996000pt;}
.x70_c00288{left:151.528000pt;}
.x38_c00288{left:153.120000pt;}
.x61_c00288{left:155.758667pt;}
.x25_c00288{left:157.198667pt;}
.x14_c00288{left:158.400000pt;}
.xd_c00288{left:160.800000pt;}
.x56_c00288{left:162.152000pt;}
.x79_c00288{left:164.722667pt;}
.x76_c00288{left:166.237333pt;}
.x19_c00288{left:168.480000pt;}
.x1f_c00288{left:170.050667pt;}
.x15_c00288{left:174.000000pt;}
.x62_c00288{left:175.918667pt;}
.xe_c00288{left:176.880000pt;}
.x5f_c00288{left:179.169333pt;}
.x51_c00288{left:181.306667pt;}
.x34_c00288{left:186.240000pt;}
.x58_c00288{left:188.041333pt;}
.x2e_c00288{left:189.120000pt;}
.x6c_c00288{left:192.236000pt;}
.x50_c00288{left:193.680000pt;}
.x72_c00288{left:195.596000pt;}
.x1a_c00288{left:196.560000pt;}
.x4c_c00288{left:198.000000pt;}
.x7_c00288{left:199.920000pt;}
.x35_c00288{left:201.120000pt;}
.x26_c00288{left:205.678667pt;}
.x77_c00288{left:207.177333pt;}
.x7a_c00288{left:210.368000pt;}
.x2f_c00288{left:212.400000pt;}
.x8_c00288{left:213.600000pt;}
.x1b_c00288{left:214.560000pt;}
.x3f_c00288{left:216.240000pt;}
.x64_c00288{left:217.678667pt;}
.x39_c00288{left:218.640000pt;}
.x49_c00288{left:220.560000pt;}
.x44_c00288{left:222.240000pt;}
.x20_c00288{left:223.798667pt;}
.x27_c00288{left:228.478667pt;}
.x57_c00288{left:229.585333pt;}
.x16_c00288{left:230.880000pt;}
.x65_c00288{left:232.798667pt;}
.x4a_c00288{left:234.240000pt;}
.x7b_c00288{left:235.269333pt;}
.x30_c00288{left:237.360000pt;}
.x45_c00288{left:240.240000pt;}
.x60_c00288{left:241.574667pt;}
.x6a_c00288{left:243.836000pt;}
.xf_c00288{left:245.040000pt;}
.x4d_c00288{left:247.200000pt;}
.x7c_c00288{left:249.450667pt;}
.x17_c00288{left:252.240000pt;}
.x21_c00288{left:254.040000pt;}
.x52_c00288{left:254.990667pt;}
.x1c_c00288{left:257.520000pt;}
.x31_c00288{left:258.720000pt;}
.x68_c00288{left:261.505333pt;}
.x59_c00288{left:262.721333pt;}
.x28_c00288{left:265.438667pt;}
.x73_c00288{left:268.076000pt;}
.x36_c00288{left:269.520000pt;}
.x3a_c00288{left:273.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00289 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00289 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00289 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00289 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c00289{transform:matrix(0.089425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089425,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.092065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092065,0.000000,0.000000,0.250000,0,0);}
.m7f_c00289{transform:matrix(0.108935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108935,0.000000,0.000000,0.250000,0,0);}
.maa_c00289{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.142215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142215,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.mdc_c00289{transform:matrix(0.147105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147105,0.000000,0.000000,0.250000,0,0);}
.mef_c00289{transform:matrix(0.148505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148505,0.000000,0.000000,0.250000,0,0);}
.mbc_c00289{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.med_c00289{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m80_c00289{transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152940,0.000000,0.000000,0.250000,0,0);}
.ma5_c00289{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m82_c00289{transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);}
.md6_c00289{transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);}
.m29_c00289{transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154935,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155345,0.000000,0.000000,0.250000,0,0);}
.ma3_c00289{transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.mcd_c00289{transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160135,0.000000,0.000000,0.250000,0,0);}
.mc4_c00289{transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);}
.meb_c00289{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.mf5_c00289{transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.mf0_c00289{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00289{transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00289{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m94_c00289{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00289{transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);}
.mf2_c00289{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m75_c00289{transform:matrix(0.168282,0.001683,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168282,0.001683,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168282,0.001683,-0.002500,0.249988,0,0);}
.md9_c00289{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.ma8_c00289{transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);}
.md0_c00289{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.mac_c00289{transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);}
.mee_c00289{transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);}
.ma0_c00289{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.171940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171940,0.000000,0.000000,0.250000,0,0);}
.mf4_c00289{transform:matrix(0.172115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172115,0.000000,0.000000,0.250000,0,0);}
.ma9_c00289{transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00289{transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);}
.md5_c00289{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.mb6_c00289{transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173830,0.000000,0.000000,0.250000,0,0);}
.mbe_c00289{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00289{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00289{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);}
.m5f_c00289{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m5e_c00289{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m85_c00289{transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00289{transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176645,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m93_c00289{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.m84_c00289{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00289{transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179505,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180540,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180815,0.000000,0.000000,0.250000,0,0);}
.ma2_c00289{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.md1_c00289{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.ma7_c00289{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.mc1_c00289{transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);}
.m76_c00289{transform:matrix(0.182641,0.001826,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182641,0.001826,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182641,0.001826,-0.002500,0.249988,0,0);}
.mc2_c00289{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m7c_c00289{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.mca_c00289{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.m6e_c00289{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.md2_c00289{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.mad_c00289{transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);}
.me6_c00289{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187630,0.000000,0.000000,0.250000,0,0);}
.mbd_c00289{transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.mdb_c00289{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.m9d_c00289{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.m7d_c00289{transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.ma4_c00289{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00289{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.mcb_c00289{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.m95_c00289{transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);}
.mb8_c00289{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.m98_c00289{transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.mb7_c00289{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m7b_c00289{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.mde_c00289{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mce_c00289{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.m32_c00289{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.mdd_c00289{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);}
.me2_c00289{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);}
.m48_c00289{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m7e_c00289{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m77_c00289{transform:matrix(0.195130,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195130,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195130,0.001951,-0.002500,0.249988,0,0);}
.mb_c00289{transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195820,0.000000,0.000000,0.250000,0,0);}
.mb1_c00289{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.mba_c00289{transform:matrix(0.196090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196090,0.000000,0.000000,0.250000,0,0);}
.md7_c00289{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00289{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);}
.me3_c00289{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.mab_c00289{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00289{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.mdf_c00289{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.md8_c00289{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);}
.m8f_c00289{transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);}
.md4_c00289{transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m8d_c00289{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00289{transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);}
.m71_c00289{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m52_c00289{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m79_c00289{transform:matrix(0.201380,0.002014,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201380,0.002014,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201380,0.002014,-0.002500,0.249988,0,0);}
.m1e_c00289{transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{transform:matrix(0.201710,0.002017,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201710,0.002017,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201710,0.002017,-0.002500,0.249988,0,0);}
.mbf_c00289{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m83_c00289{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.me9_c00289{transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);}
.md3_c00289{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);}
.m9e_c00289{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.mf1_c00289{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00289{transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);}
.m89_c00289{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);}
.m5b_c00289{transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.me5_c00289{transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);}
.mc7_c00289{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.ma1_c00289{transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m70_c00289{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m7a_c00289{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m36_c00289{transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);}
.me8_c00289{transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m9c_c00289{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.mb4_c00289{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m72_c00289{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.mb9_c00289{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.mc6_c00289{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);}
.m81_c00289{transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);}
.m73_c00289{transform:matrix(0.215939,0.002159,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215939,0.002159,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215939,0.002159,-0.002500,0.249988,0,0);}
.mea_c00289{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.me7_c00289{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.me1_c00289{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.m57_c00289{transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);}
.me0_c00289{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.224755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224755,0.000000,0.000000,0.250000,0,0);}
.mc3_c00289{transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);}
.mec_c00289{transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);}
.mcf_c00289{transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226290,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.226399,0.002264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226399,0.002264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226399,0.002264,-0.002500,0.249988,0,0);}
.m4c_c00289{transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);}
.m96_c00289{transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);}
.m67_c00289{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m44_c00289{transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228610,0.000000,0.000000,0.250000,0,0);}
.mda_c00289{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.m99_c00289{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.m8e_c00289{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.me4_c00289{transform:matrix(0.239965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239965,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.maf_c00289{transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245780,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.mc5_c00289{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.mb3_c00289{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.265255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265255,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.271855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271855,0.000000,0.000000,0.250000,0,0);}
.mb2_c00289{transform:matrix(0.341950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341950,0.000000,0.000000,0.250000,0,0);}
.m6c_c00289{transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);}
.mae_c00289{transform:matrix(0.345870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345870,0.000000,0.000000,0.250000,0,0);}
.mb0_c00289{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.419055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419055,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:0.000000px;}
.fc0_c00289{color:transparent;}
.fs6_c00289{font-size:54.600000px;}
.fs7_c00289{font-size:55.650000px;}
.fsa_c00289{font-size:60.900000px;}
.fs8_c00289{font-size:63.000000px;}
.fs9_c00289{font-size:64.050000px;}
.fsc_c00289{font-size:65.100000px;}
.fsb_c00289{font-size:65.103255px;}
.fs3_c00289{font-size:66.150000px;}
.fs5_c00289{font-size:67.200000px;}
.fs1_c00289{font-size:68.250000px;}
.fs4_c00289{font-size:69.300000px;}
.fs0_c00289{font-size:70.350000px;}
.fs2_c00289{font-size:71.400000px;}
.y0_c00289{bottom:0.000000px;}
.y65_c00289{bottom:28.195500px;}
.y64_c00289{bottom:42.723000px;}
.y63_c00289{bottom:61.261500px;}
.y62_c00289{bottom:76.369500px;}
.y61_c00289{bottom:92.955000px;}
.y60_c00289{bottom:110.520000px;}
.y5f_c00289{bottom:124.590000px;}
.y5e_c00289{bottom:126.022500px;}
.y5d_c00289{bottom:127.369500px;}
.y5c_c00289{bottom:127.575000px;}
.y5b_c00289{bottom:128.062500px;}
.y5a_c00289{bottom:128.791500px;}
.y59_c00289{bottom:143.515500px;}
.y58_c00289{bottom:143.715000px;}
.y57_c00289{bottom:143.995500px;}
.y56_c00289{bottom:144.717000px;}
.y55_c00289{bottom:144.897000px;}
.y54_c00289{bottom:145.521000px;}
.y53_c00289{bottom:145.656000px;}
.y52_c00289{bottom:146.218500px;}
.y51_c00289{bottom:146.340000px;}
.y50_c00289{bottom:161.881500px;}
.y4f_c00289{bottom:177.210000px;}
.y4e_c00289{bottom:177.403500px;}
.y4d_c00289{bottom:177.774000px;}
.y4c_c00289{bottom:178.516500px;}
.y4b_c00289{bottom:179.113500px;}
.y4a_c00289{bottom:179.374500px;}
.y49_c00289{bottom:179.742000px;}
.y48_c00289{bottom:180.360000px;}
.y47_c00289{bottom:196.146000px;}
.y46_c00289{bottom:213.024000px;}
.y45_c00289{bottom:213.355500px;}
.y44_c00289{bottom:214.113000px;}
.y43_c00289{bottom:214.386000px;}
.y42_c00289{bottom:215.022000px;}
.y41_c00289{bottom:215.728500px;}
.y40_c00289{bottom:229.972500px;}
.y3f_c00289{bottom:230.298000px;}
.y3e_c00289{bottom:231.004500px;}
.y3d_c00289{bottom:231.855000px;}
.y3c_c00289{bottom:232.093500px;}
.y3b_c00289{bottom:232.804500px;}
.y3a_c00289{bottom:233.280000px;}
.y39_c00289{bottom:245.776500px;}
.y38_c00289{bottom:246.738000px;}
.y37_c00289{bottom:247.519500px;}
.y36_c00289{bottom:247.801500px;}
.y35_c00289{bottom:248.491500px;}
.y34_c00289{bottom:248.703000px;}
.y33_c00289{bottom:248.952000px;}
.y32_c00289{bottom:249.210000px;}
.y31_c00289{bottom:262.678500px;}
.y30_c00289{bottom:262.879500px;}
.y2f_c00289{bottom:263.038500px;}
.y2e_c00289{bottom:263.778000px;}
.y2d_c00289{bottom:264.498000px;}
.y2c_c00289{bottom:264.744000px;}
.y2b_c00289{bottom:265.275000px;}
.y2a_c00289{bottom:265.465500px;}
.y29_c00289{bottom:265.951500px;}
.y28_c00289{bottom:280.921500px;}
.y27_c00289{bottom:295.159875px;}
.y26_c00289{bottom:296.096835px;}
.y25_c00289{bottom:296.574870px;}
.y24_c00289{bottom:297.330915px;}
.y23_c00289{bottom:297.630135px;}
.y22_c00289{bottom:297.808815px;}
.y21_c00289{bottom:298.081500px;}
.y20_c00289{bottom:315.570000px;}
.y1f_c00289{bottom:332.166000px;}
.y1e_c00289{bottom:350.901000px;}
.y1d_c00289{bottom:366.660000px;}
.y1c_c00289{bottom:383.973000px;}
.y1b_c00289{bottom:401.668500px;}
.y1a_c00289{bottom:417.061500px;}
.y19_c00289{bottom:417.253500px;}
.y18_c00289{bottom:417.573000px;}
.y17_c00289{bottom:418.063500px;}
.y16_c00289{bottom:418.237500px;}
.y15_c00289{bottom:418.788000px;}
.y14_c00289{bottom:419.025000px;}
.y13_c00289{bottom:419.170500px;}
.y12_c00289{bottom:419.916000px;}
.y11_c00289{bottom:420.118500px;}
.y10_c00289{bottom:433.920000px;}
.yf_c00289{bottom:449.704500px;}
.ye_c00289{bottom:450.789000px;}
.yd_c00289{bottom:451.315500px;}
.yc_c00289{bottom:451.648500px;}
.yb_c00289{bottom:452.154000px;}
.ya_c00289{bottom:452.508000px;}
.y9_c00289{bottom:452.997000px;}
.y8_c00289{bottom:453.330000px;}
.y7_c00289{bottom:469.654500px;}
.y6_c00289{bottom:487.140000px;}
.y5_c00289{bottom:503.343000px;}
.y4_c00289{bottom:519.358500px;}
.y3_c00289{bottom:536.820000px;}
.y2_c00289{bottom:553.527000px;}
.y1_c00289{bottom:570.103500px;}
.h8_c00289{height:54.600000px;}
.h9_c00289{height:55.650000px;}
.hc_c00289{height:60.900000px;}
.ha_c00289{height:63.000000px;}
.hb_c00289{height:64.050000px;}
.he_c00289{height:65.100000px;}
.hd_c00289{height:65.103255px;}
.h5_c00289{height:66.150000px;}
.h7_c00289{height:67.200000px;}
.h3_c00289{height:68.250000px;}
.h6_c00289{height:69.300000px;}
.h2_c00289{height:70.350000px;}
.h4_c00289{height:71.400000px;}
.h1_c00289{height:618.750000px;}
.h0_c00289{height:619.050000px;}
.w0_c00289{width:359.100000px;}
.w1_c00289{width:359.250000px;}
.x0_c00289{left:0.000000px;}
.x81_c00289{left:34.020000px;}
.x70_c00289{left:35.527500px;}
.x69_c00289{left:36.570000px;}
.x58_c00289{left:37.800000px;}
.x52_c00289{left:39.150000px;}
.x46_c00289{left:40.230000px;}
.x3d_c00289{left:41.310000px;}
.x22_c00289{left:42.390000px;}
.x2_c00289{left:43.740000px;}
.x71_c00289{left:47.679000px;}
.x83_c00289{left:50.490000px;}
.x88_c00289{left:55.080000px;}
.x36_c00289{left:59.836500px;}
.x17_c00289{left:61.560000px;}
.x47_c00289{left:66.150000px;}
.x6c_c00289{left:67.228500px;}
.x1b_c00289{left:68.310000px;}
.x77_c00289{left:69.658500px;}
.x7a_c00289{left:71.008500px;}
.x41_c00289{left:72.090000px;}
.x6d_c00289{left:75.058500px;}
.xa_c00289{left:76.410000px;}
.x5b_c00289{left:78.154500px;}
.x10_c00289{left:79.650000px;}
.x56_c00289{left:83.881500px;}
.x2f_c00289{left:86.130000px;}
.x3_c00289{left:87.750000px;}
.x23_c00289{left:90.180000px;}
.x6a_c00289{left:92.728500px;}
.x5c_c00289{left:94.086000px;}
.x11_c00289{left:97.470000px;}
.x18_c00289{left:102.330000px;}
.x72_c00289{left:103.860000px;}
.x29_c00289{left:105.474000px;}
.x42_c00289{left:107.460000px;}
.x84_c00289{left:108.540000px;}
.x24_c00289{left:110.430000px;}
.x57_c00289{left:113.803500px;}
.x30_c00289{left:116.640000px;}
.x12_c00289{left:121.500000px;}
.x48_c00289{left:122.850000px;}
.x4_c00289{left:124.470000px;}
.x1c_c00289{left:125.820000px;}
.x37_c00289{left:127.633500px;}
.x85_c00289{left:129.330000px;}
.x74_c00289{left:130.500000px;}
.x2a_c00289{left:132.690000px;}
.x31_c00289{left:135.270000px;}
.x7c_c00289{left:136.890000px;}
.x4e_c00289{left:137.970000px;}
.x53_c00289{left:139.590000px;}
.x38_c00289{left:140.820000px;}
.xb_c00289{left:142.020000px;}
.x25_c00289{left:146.880000px;}
.x1d_c00289{left:150.390000px;}
.x7b_c00289{left:151.468500px;}
.x61_c00289{left:154.836000px;}
.x5d_c00289{left:158.889000px;}
.x5_c00289{left:160.650000px;}
.x39_c00289{left:162.426000px;}
.x82_c00289{left:165.780000px;}
.x78_c00289{left:167.938500px;}
.x2b_c00289{left:171.630000px;}
.x13_c00289{left:175.500000px;}
.x1_c00289{left:177.120000px;}
.x62_c00289{left:178.323000px;}
.x54_c00289{left:179.550000px;}
.x26_c00289{left:181.980000px;}
.x65_c00289{left:183.996000px;}
.x43_c00289{left:187.920000px;}
.x14_c00289{left:189.000000px;}
.x32_c00289{left:191.430000px;}
.x2c_c00289{left:197.220000px;}
.x55_c00289{left:199.800000px;}
.xc_c00289{left:200.880000px;}
.x7d_c00289{left:202.770000px;}
.x6_c00289{left:204.930000px;}
.x49_c00289{left:207.090000px;}
.x59_c00289{left:208.170000px;}
.x3e_c00289{left:210.060000px;}
.x33_c00289{left:211.410000px;}
.x3a_c00289{left:212.433000px;}
.x86_c00289{left:216.000000px;}
.x5e_c00289{left:218.830500px;}
.x75_c00289{left:220.345500px;}
.x7e_c00289{left:223.020000px;}
.x3b_c00289{left:228.307500px;}
.x1e_c00289{left:230.580000px;}
.x79_c00289{left:231.658500px;}
.x19_c00289{left:233.550000px;}
.x2d_c00289{left:237.717000px;}
.x7f_c00289{left:238.950000px;}
.xd_c00289{left:240.030000px;}
.x4f_c00289{left:241.110000px;}
.x63_c00289{left:243.387000px;}
.x15_c00289{left:244.620000px;}
.x7_c00289{left:248.400000px;}
.x64_c00289{left:250.381500px;}
.x66_c00289{left:252.912000px;}
.x1f_c00289{left:254.340000px;}
.x6e_c00289{left:257.038500px;}
.x44_c00289{left:258.390000px;}
.x50_c00289{left:261.360000px;}
.x4a_c00289{left:262.710000px;}
.x27_c00289{left:264.870000px;}
.x87_c00289{left:265.950000px;}
.x4d_c00289{left:268.110000px;}
.x6f_c00289{left:270.268500px;}
.x6b_c00289{left:271.740000px;}
.x34_c00289{left:272.970000px;}
.x45_c00289{left:276.480000px;}
.x80_c00289{left:277.560000px;}
.x3f_c00289{left:280.800000px;}
.x67_c00289{left:283.095000px;}
.x1a_c00289{left:285.120000px;}
.x28_c00289{left:289.440000px;}
.xe_c00289{left:292.410000px;}
.x5f_c00289{left:293.613000px;}
.x4b_c00289{left:295.110000px;}
.x35_c00289{left:297.540000px;}
.x20_c00289{left:301.050000px;}
.x16_c00289{left:302.940000px;}
.x40_c00289{left:305.370000px;}
.x68_c00289{left:306.718500px;}
.x60_c00289{left:310.344000px;}
.x8_c00289{left:312.660000px;}
.x5a_c00289{left:314.550000px;}
.x76_c00289{left:315.883500px;}
.x73_c00289{left:317.938500px;}
.x3c_c00289{left:319.533000px;}
.x2e_c00289{left:321.105000px;}
.xf_c00289{left:322.380000px;}
.x4c_c00289{left:323.730000px;}
.x9_c00289{left:324.810000px;}
.x21_c00289{left:331.290000px;}
.x51_c00289{left:332.370000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs6_c00289{font-size:48.533333pt;}
.fs7_c00289{font-size:49.466667pt;}
.fsa_c00289{font-size:54.133333pt;}
.fs8_c00289{font-size:56.000000pt;}
.fs9_c00289{font-size:56.933333pt;}
.fsc_c00289{font-size:57.866667pt;}
.fsb_c00289{font-size:57.869560pt;}
.fs3_c00289{font-size:58.800000pt;}
.fs5_c00289{font-size:59.733333pt;}
.fs1_c00289{font-size:60.666667pt;}
.fs4_c00289{font-size:61.600000pt;}
.fs0_c00289{font-size:62.533333pt;}
.fs2_c00289{font-size:63.466667pt;}
.y0_c00289{bottom:0.000000pt;}
.y65_c00289{bottom:25.062667pt;}
.y64_c00289{bottom:37.976000pt;}
.y63_c00289{bottom:54.454667pt;}
.y62_c00289{bottom:67.884000pt;}
.y61_c00289{bottom:82.626667pt;}
.y60_c00289{bottom:98.240000pt;}
.y5f_c00289{bottom:110.746667pt;}
.y5e_c00289{bottom:112.020000pt;}
.y5d_c00289{bottom:113.217333pt;}
.y5c_c00289{bottom:113.400000pt;}
.y5b_c00289{bottom:113.833333pt;}
.y5a_c00289{bottom:114.481333pt;}
.y59_c00289{bottom:127.569333pt;}
.y58_c00289{bottom:127.746667pt;}
.y57_c00289{bottom:127.996000pt;}
.y56_c00289{bottom:128.637333pt;}
.y55_c00289{bottom:128.797333pt;}
.y54_c00289{bottom:129.352000pt;}
.y53_c00289{bottom:129.472000pt;}
.y52_c00289{bottom:129.972000pt;}
.y51_c00289{bottom:130.080000pt;}
.y50_c00289{bottom:143.894667pt;}
.y4f_c00289{bottom:157.520000pt;}
.y4e_c00289{bottom:157.692000pt;}
.y4d_c00289{bottom:158.021333pt;}
.y4c_c00289{bottom:158.681333pt;}
.y4b_c00289{bottom:159.212000pt;}
.y4a_c00289{bottom:159.444000pt;}
.y49_c00289{bottom:159.770667pt;}
.y48_c00289{bottom:160.320000pt;}
.y47_c00289{bottom:174.352000pt;}
.y46_c00289{bottom:189.354667pt;}
.y45_c00289{bottom:189.649333pt;}
.y44_c00289{bottom:190.322667pt;}
.y43_c00289{bottom:190.565333pt;}
.y42_c00289{bottom:191.130667pt;}
.y41_c00289{bottom:191.758667pt;}
.y40_c00289{bottom:204.420000pt;}
.y3f_c00289{bottom:204.709333pt;}
.y3e_c00289{bottom:205.337333pt;}
.y3d_c00289{bottom:206.093333pt;}
.y3c_c00289{bottom:206.305333pt;}
.y3b_c00289{bottom:206.937333pt;}
.y3a_c00289{bottom:207.360000pt;}
.y39_c00289{bottom:218.468000pt;}
.y38_c00289{bottom:219.322667pt;}
.y37_c00289{bottom:220.017333pt;}
.y36_c00289{bottom:220.268000pt;}
.y35_c00289{bottom:220.881333pt;}
.y34_c00289{bottom:221.069333pt;}
.y33_c00289{bottom:221.290667pt;}
.y32_c00289{bottom:221.520000pt;}
.y31_c00289{bottom:233.492000pt;}
.y30_c00289{bottom:233.670667pt;}
.y2f_c00289{bottom:233.812000pt;}
.y2e_c00289{bottom:234.469333pt;}
.y2d_c00289{bottom:235.109333pt;}
.y2c_c00289{bottom:235.328000pt;}
.y2b_c00289{bottom:235.800000pt;}
.y2a_c00289{bottom:235.969333pt;}
.y29_c00289{bottom:236.401333pt;}
.y28_c00289{bottom:249.708000pt;}
.y27_c00289{bottom:262.364333pt;}
.y26_c00289{bottom:263.197187pt;}
.y25_c00289{bottom:263.622107pt;}
.y24_c00289{bottom:264.294147pt;}
.y23_c00289{bottom:264.560120pt;}
.y22_c00289{bottom:264.718947pt;}
.y21_c00289{bottom:264.961333pt;}
.y20_c00289{bottom:280.506667pt;}
.y1f_c00289{bottom:295.258667pt;}
.y1e_c00289{bottom:311.912000pt;}
.y1d_c00289{bottom:325.920000pt;}
.y1c_c00289{bottom:341.309333pt;}
.y1b_c00289{bottom:357.038667pt;}
.y1a_c00289{bottom:370.721333pt;}
.y19_c00289{bottom:370.892000pt;}
.y18_c00289{bottom:371.176000pt;}
.y17_c00289{bottom:371.612000pt;}
.y16_c00289{bottom:371.766667pt;}
.y15_c00289{bottom:372.256000pt;}
.y14_c00289{bottom:372.466667pt;}
.y13_c00289{bottom:372.596000pt;}
.y12_c00289{bottom:373.258667pt;}
.y11_c00289{bottom:373.438667pt;}
.y10_c00289{bottom:385.706667pt;}
.yf_c00289{bottom:399.737333pt;}
.ye_c00289{bottom:400.701333pt;}
.yd_c00289{bottom:401.169333pt;}
.yc_c00289{bottom:401.465333pt;}
.yb_c00289{bottom:401.914667pt;}
.ya_c00289{bottom:402.229333pt;}
.y9_c00289{bottom:402.664000pt;}
.y8_c00289{bottom:402.960000pt;}
.y7_c00289{bottom:417.470667pt;}
.y6_c00289{bottom:433.013333pt;}
.y5_c00289{bottom:447.416000pt;}
.y4_c00289{bottom:461.652000pt;}
.y3_c00289{bottom:477.173333pt;}
.y2_c00289{bottom:492.024000pt;}
.y1_c00289{bottom:506.758667pt;}
.h8_c00289{height:48.533333pt;}
.h9_c00289{height:49.466667pt;}
.hc_c00289{height:54.133333pt;}
.ha_c00289{height:56.000000pt;}
.hb_c00289{height:56.933333pt;}
.he_c00289{height:57.866667pt;}
.hd_c00289{height:57.869560pt;}
.h5_c00289{height:58.800000pt;}
.h7_c00289{height:59.733333pt;}
.h3_c00289{height:60.666667pt;}
.h6_c00289{height:61.600000pt;}
.h2_c00289{height:62.533333pt;}
.h4_c00289{height:63.466667pt;}
.h1_c00289{height:550.000000pt;}
.h0_c00289{height:550.266667pt;}
.w0_c00289{width:319.200000pt;}
.w1_c00289{width:319.333333pt;}
.x0_c00289{left:0.000000pt;}
.x81_c00289{left:30.240000pt;}
.x70_c00289{left:31.580000pt;}
.x69_c00289{left:32.506667pt;}
.x58_c00289{left:33.600000pt;}
.x52_c00289{left:34.800000pt;}
.x46_c00289{left:35.760000pt;}
.x3d_c00289{left:36.720000pt;}
.x22_c00289{left:37.680000pt;}
.x2_c00289{left:38.880000pt;}
.x71_c00289{left:42.381333pt;}
.x83_c00289{left:44.880000pt;}
.x88_c00289{left:48.960000pt;}
.x36_c00289{left:53.188000pt;}
.x17_c00289{left:54.720000pt;}
.x47_c00289{left:58.800000pt;}
.x6c_c00289{left:59.758667pt;}
.x1b_c00289{left:60.720000pt;}
.x77_c00289{left:61.918667pt;}
.x7a_c00289{left:63.118667pt;}
.x41_c00289{left:64.080000pt;}
.x6d_c00289{left:66.718667pt;}
.xa_c00289{left:67.920000pt;}
.x5b_c00289{left:69.470667pt;}
.x10_c00289{left:70.800000pt;}
.x56_c00289{left:74.561333pt;}
.x2f_c00289{left:76.560000pt;}
.x3_c00289{left:78.000000pt;}
.x23_c00289{left:80.160000pt;}
.x6a_c00289{left:82.425333pt;}
.x5c_c00289{left:83.632000pt;}
.x11_c00289{left:86.640000pt;}
.x18_c00289{left:90.960000pt;}
.x72_c00289{left:92.320000pt;}
.x29_c00289{left:93.754667pt;}
.x42_c00289{left:95.520000pt;}
.x84_c00289{left:96.480000pt;}
.x24_c00289{left:98.160000pt;}
.x57_c00289{left:101.158667pt;}
.x30_c00289{left:103.680000pt;}
.x12_c00289{left:108.000000pt;}
.x48_c00289{left:109.200000pt;}
.x4_c00289{left:110.640000pt;}
.x1c_c00289{left:111.840000pt;}
.x37_c00289{left:113.452000pt;}
.x85_c00289{left:114.960000pt;}
.x74_c00289{left:116.000000pt;}
.x2a_c00289{left:117.946667pt;}
.x31_c00289{left:120.240000pt;}
.x7c_c00289{left:121.680000pt;}
.x4e_c00289{left:122.640000pt;}
.x53_c00289{left:124.080000pt;}
.x38_c00289{left:125.173333pt;}
.xb_c00289{left:126.240000pt;}
.x25_c00289{left:130.560000pt;}
.x1d_c00289{left:133.680000pt;}
.x7b_c00289{left:134.638667pt;}
.x61_c00289{left:137.632000pt;}
.x5d_c00289{left:141.234667pt;}
.x5_c00289{left:142.800000pt;}
.x39_c00289{left:144.378667pt;}
.x82_c00289{left:147.360000pt;}
.x78_c00289{left:149.278667pt;}
.x2b_c00289{left:152.560000pt;}
.x13_c00289{left:156.000000pt;}
.x1_c00289{left:157.440000pt;}
.x62_c00289{left:158.509333pt;}
.x54_c00289{left:159.600000pt;}
.x26_c00289{left:161.760000pt;}
.x65_c00289{left:163.552000pt;}
.x43_c00289{left:167.040000pt;}
.x14_c00289{left:168.000000pt;}
.x32_c00289{left:170.160000pt;}
.x2c_c00289{left:175.306667pt;}
.x55_c00289{left:177.600000pt;}
.xc_c00289{left:178.560000pt;}
.x7d_c00289{left:180.240000pt;}
.x6_c00289{left:182.160000pt;}
.x49_c00289{left:184.080000pt;}
.x59_c00289{left:185.040000pt;}
.x3e_c00289{left:186.720000pt;}
.x33_c00289{left:187.920000pt;}
.x3a_c00289{left:188.829333pt;}
.x86_c00289{left:192.000000pt;}
.x5e_c00289{left:194.516000pt;}
.x75_c00289{left:195.862667pt;}
.x7e_c00289{left:198.240000pt;}
.x3b_c00289{left:202.940000pt;}
.x1e_c00289{left:204.960000pt;}
.x79_c00289{left:205.918667pt;}
.x19_c00289{left:207.600000pt;}
.x2d_c00289{left:211.304000pt;}
.x7f_c00289{left:212.400000pt;}
.xd_c00289{left:213.360000pt;}
.x4f_c00289{left:214.320000pt;}
.x63_c00289{left:216.344000pt;}
.x15_c00289{left:217.440000pt;}
.x7_c00289{left:220.800000pt;}
.x64_c00289{left:222.561333pt;}
.x66_c00289{left:224.810667pt;}
.x1f_c00289{left:226.080000pt;}
.x6e_c00289{left:228.478667pt;}
.x44_c00289{left:229.680000pt;}
.x50_c00289{left:232.320000pt;}
.x4a_c00289{left:233.520000pt;}
.x27_c00289{left:235.440000pt;}
.x87_c00289{left:236.400000pt;}
.x4d_c00289{left:238.320000pt;}
.x6f_c00289{left:240.238667pt;}
.x6b_c00289{left:241.546667pt;}
.x34_c00289{left:242.640000pt;}
.x45_c00289{left:245.760000pt;}
.x80_c00289{left:246.720000pt;}
.x3f_c00289{left:249.600000pt;}
.x67_c00289{left:251.640000pt;}
.x1a_c00289{left:253.440000pt;}
.x28_c00289{left:257.280000pt;}
.xe_c00289{left:259.920000pt;}
.x5f_c00289{left:260.989333pt;}
.x4b_c00289{left:262.320000pt;}
.x35_c00289{left:264.480000pt;}
.x20_c00289{left:267.600000pt;}
.x16_c00289{left:269.280000pt;}
.x40_c00289{left:271.440000pt;}
.x68_c00289{left:272.638667pt;}
.x60_c00289{left:275.861333pt;}
.x8_c00289{left:277.920000pt;}
.x5a_c00289{left:279.600000pt;}
.x76_c00289{left:280.785333pt;}
.x73_c00289{left:282.612000pt;}
.x3c_c00289{left:284.029333pt;}
.x2e_c00289{left:285.426667pt;}
.xf_c00289{left:286.560000pt;}
.x4c_c00289{left:287.760000pt;}
.x9_c00289{left:288.720000pt;}
.x21_c00289{left:294.480000pt;}
.x51_c00289{left:295.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00290 {
    display:none;
  }
  .loading-indicator_c00290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00290 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00290 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00290" -> "#page-container .classname_c00290")
 */
.pf_c00290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00290 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00290 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00290 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00290 {overflow:visible;}
  }
}
.c_c00290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00290 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00290:after { /* webkit #35443 */
  content: '';
}
.t_c00290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00290 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00290 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00290 { /* info for Javascript */
  display:none;
}
.l_c00290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00290:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00290 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00290.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf7_c00290{transform:matrix(0.088668,0.002571,-0.007247,0.249895,0,0);-ms-transform:matrix(0.088668,0.002571,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.088668,0.002571,-0.007247,0.249895,0,0);}
.mf5_c00290{transform:matrix(0.105091,0.003048,-0.007247,0.249895,0,0);-ms-transform:matrix(0.105091,0.003048,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.105091,0.003048,-0.007247,0.249895,0,0);}
.mf4_c00290{transform:matrix(0.119045,0.003452,-0.007247,0.249895,0,0);-ms-transform:matrix(0.119045,0.003452,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.119045,0.003452,-0.007247,0.249895,0,0);}
.m6e_c00290{transform:matrix(0.132127,0.001453,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132127,0.001453,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132127,0.001453,-0.002750,0.249985,0,0);}
.md4_c00290{transform:matrix(0.137387,0.001511,-0.002750,0.249985,0,0);-ms-transform:matrix(0.137387,0.001511,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.137387,0.001511,-0.002750,0.249985,0,0);}
.m89_c00290{transform:matrix(0.142036,0.001562,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142036,0.001562,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142036,0.001562,-0.002750,0.249985,0,0);}
.mb2_c00290{transform:matrix(0.144041,0.001584,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144041,0.001584,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144041,0.001584,-0.002750,0.249985,0,0);}
.m32_c00290{transform:matrix(0.144921,0.001594,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144921,0.001594,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144921,0.001594,-0.002750,0.249985,0,0);}
.m4c_c00290{transform:matrix(0.149346,0.001643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149346,0.001643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149346,0.001643,-0.002750,0.249985,0,0);}
.md8_c00290{transform:matrix(0.151551,0.001667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151551,0.001667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151551,0.001667,-0.002750,0.249985,0,0);}
.m7f_c00290{transform:matrix(0.152081,0.001673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152081,0.001673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152081,0.001673,-0.002750,0.249985,0,0);}
.med_c00290{transform:matrix(0.152366,0.001676,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152366,0.001676,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152366,0.001676,-0.002750,0.249985,0,0);}
.mb3_c00290{transform:matrix(0.152431,0.001677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152431,0.001677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152431,0.001677,-0.002750,0.249985,0,0);}
.ma5_c00290{transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);}
.m46_c00290{transform:matrix(0.152976,0.001683,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152976,0.001683,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152976,0.001683,-0.002750,0.249985,0,0);}
.m38_c00290{transform:matrix(0.153956,0.001694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153956,0.001694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153956,0.001694,-0.002750,0.249985,0,0);}
.m60_c00290{transform:matrix(0.154746,0.001702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154746,0.001702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154746,0.001702,-0.002750,0.249985,0,0);}
.mec_c00290{transform:matrix(0.155191,0.001707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155191,0.001707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155191,0.001707,-0.002750,0.249985,0,0);}
.m0_c00290{transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.157870,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157870,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157870,0.001737,-0.002750,0.249985,0,0);}
.m84_c00290{transform:matrix(0.158005,0.001738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158005,0.001738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158005,0.001738,-0.002750,0.249985,0,0);}
.mc5_c00290{transform:matrix(0.158400,0.001742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158400,0.001742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158400,0.001742,-0.002750,0.249985,0,0);}
.mdf_c00290{transform:matrix(0.158520,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158520,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158520,0.001744,-0.002750,0.249985,0,0);}
.md_c00290{transform:matrix(0.158690,0.001746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158690,0.001746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158690,0.001746,-0.002750,0.249985,0,0);}
.m37_c00290{transform:matrix(0.159815,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159815,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159815,0.001758,-0.002750,0.249985,0,0);}
.m77_c00290{transform:matrix(0.159845,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159845,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159845,0.001758,-0.002750,0.249985,0,0);}
.m86_c00290{transform:matrix(0.160050,0.001761,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160050,0.001761,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160050,0.001761,-0.002750,0.249985,0,0);}
.m9c_c00290{transform:matrix(0.160375,0.001764,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160375,0.001764,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160375,0.001764,-0.002750,0.249985,0,0);}
.m1b_c00290{transform:matrix(0.161085,0.001772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161085,0.001772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161085,0.001772,-0.002750,0.249985,0,0);}
.mfe_c00290{transform:matrix(0.161967,0.004697,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161967,0.004697,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161967,0.004697,-0.007247,0.249895,0,0);}
.m9_c00290{transform:matrix(0.162160,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162160,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162160,0.001784,-0.002750,0.249985,0,0);}
.m61_c00290{transform:matrix(0.162630,0.001789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162630,0.001789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162630,0.001789,-0.002750,0.249985,0,0);}
.ma0_c00290{transform:matrix(0.163505,0.001799,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163505,0.001799,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163505,0.001799,-0.002750,0.249985,0,0);}
.ma7_c00290{transform:matrix(0.163885,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163885,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163885,0.001803,-0.002750,0.249985,0,0);}
.m35_c00290{transform:matrix(0.165080,0.001816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165080,0.001816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165080,0.001816,-0.002750,0.249985,0,0);}
.me6_c00290{transform:matrix(0.165640,0.001822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165640,0.001822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165640,0.001822,-0.002750,0.249985,0,0);}
.maf_c00290{transform:matrix(0.165755,0.001823,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165755,0.001823,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165755,0.001823,-0.002750,0.249985,0,0);}
.m51_c00290{transform:matrix(0.165870,0.001825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165870,0.001825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165870,0.001825,-0.002750,0.249985,0,0);}
.mda_c00290{transform:matrix(0.165940,0.001825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165940,0.001825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165940,0.001825,-0.002750,0.249985,0,0);}
.mc0_c00290{transform:matrix(0.166115,0.001827,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166115,0.001827,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166115,0.001827,-0.002750,0.249985,0,0);}
.mea_c00290{transform:matrix(0.166710,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166710,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166710,0.001834,-0.002750,0.249985,0,0);}
.mb0_c00290{transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);}
.m3c_c00290{transform:matrix(0.166795,0.001835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166795,0.001835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166795,0.001835,-0.002750,0.249985,0,0);}
.m73_c00290{transform:matrix(0.167095,0.001838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167095,0.001838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167095,0.001838,-0.002750,0.249985,0,0);}
.m7d_c00290{transform:matrix(0.167660,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167660,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167660,0.001844,-0.002750,0.249985,0,0);}
.m56_c00290{transform:matrix(0.168270,0.001851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168270,0.001851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168270,0.001851,-0.002750,0.249985,0,0);}
.me3_c00290{transform:matrix(0.168390,0.001852,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168390,0.001852,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168390,0.001852,-0.002750,0.249985,0,0);}
.m6a_c00290{transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168450,0.001853,-0.002750,0.249985,0,0);}
.m9a_c00290{transform:matrix(0.168480,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168480,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168480,0.001853,-0.002750,0.249985,0,0);}
.ma2_c00290{transform:matrix(0.168825,0.001857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168825,0.001857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168825,0.001857,-0.002750,0.249985,0,0);}
.m39_c00290{transform:matrix(0.168945,0.001858,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168945,0.001858,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168945,0.001858,-0.002750,0.249985,0,0);}
.m95_c00290{transform:matrix(0.169285,0.001862,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169285,0.001862,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169285,0.001862,-0.002750,0.249985,0,0);}
.m8_c00290{transform:matrix(0.169485,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169485,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169485,0.001864,-0.002750,0.249985,0,0);}
.m53_c00290{transform:matrix(0.169600,0.001866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169600,0.001866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169600,0.001866,-0.002750,0.249985,0,0);}
.m44_c00290{transform:matrix(0.170080,0.001871,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170080,0.001871,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170080,0.001871,-0.002750,0.249985,0,0);}
.mf9_c00290{transform:matrix(0.170103,0.004933,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170103,0.004933,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170103,0.004933,-0.007247,0.249895,0,0);}
.m7e_c00290{transform:matrix(0.170265,0.001873,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170265,0.001873,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170265,0.001873,-0.002750,0.249985,0,0);}
.me2_c00290{transform:matrix(0.171165,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171165,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171165,0.001883,-0.002750,0.249985,0,0);}
.m7a_c00290{transform:matrix(0.171275,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171275,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171275,0.001884,-0.002750,0.249985,0,0);}
.mfa_c00290{transform:matrix(0.171528,0.004974,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171528,0.004974,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171528,0.004974,-0.007247,0.249895,0,0);}
.mfd_c00290{transform:matrix(0.171998,0.004988,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171998,0.004988,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171998,0.004988,-0.007247,0.249895,0,0);}
.mba_c00290{transform:matrix(0.172220,0.001894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172220,0.001894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172220,0.001894,-0.002750,0.249985,0,0);}
.m2f_c00290{transform:matrix(0.173165,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173165,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173165,0.001905,-0.002750,0.249985,0,0);}
.m43_c00290{transform:matrix(0.173185,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173185,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173185,0.001905,-0.002750,0.249985,0,0);}
.m50_c00290{transform:matrix(0.173330,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173330,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173330,0.001907,-0.002750,0.249985,0,0);}
.m81_c00290{transform:matrix(0.173405,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173405,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173405,0.001907,-0.002750,0.249985,0,0);}
.m9f_c00290{transform:matrix(0.173455,0.001908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173455,0.001908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173455,0.001908,-0.002750,0.249985,0,0);}
.m8c_c00290{transform:matrix(0.173545,0.001909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173545,0.001909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173545,0.001909,-0.002750,0.249985,0,0);}
.m19_c00290{transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);}
.md7_c00290{transform:matrix(0.173869,0.001913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173869,0.001913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173869,0.001913,-0.002750,0.249985,0,0);}
.m62_c00290{transform:matrix(0.173909,0.001913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173909,0.001913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173909,0.001913,-0.002750,0.249985,0,0);}
.m82_c00290{transform:matrix(0.173954,0.001913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173954,0.001913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173954,0.001913,-0.002750,0.249985,0,0);}
.m52_c00290{transform:matrix(0.174024,0.001914,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174024,0.001914,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174024,0.001914,-0.002750,0.249985,0,0);}
.mcc_c00290{transform:matrix(0.174074,0.001915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174074,0.001915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174074,0.001915,-0.002750,0.249985,0,0);}
.mb_c00290{transform:matrix(0.174724,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174724,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174724,0.001922,-0.002750,0.249985,0,0);}
.m93_c00290{transform:matrix(0.175259,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175259,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175259,0.001928,-0.002750,0.249985,0,0);}
.mdd_c00290{transform:matrix(0.175419,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175419,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175419,0.001930,-0.002750,0.249985,0,0);}
.m2_c00290{transform:matrix(0.175759,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175759,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175759,0.001933,-0.002750,0.249985,0,0);}
.m75_c00290{transform:matrix(0.175774,0.001934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175774,0.001934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175774,0.001934,-0.002750,0.249985,0,0);}
.m5c_c00290{transform:matrix(0.176299,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176299,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176299,0.001939,-0.002750,0.249985,0,0);}
.mfb_c00290{transform:matrix(0.176756,0.005126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176756,0.005126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176756,0.005126,-0.007247,0.249895,0,0);}
.m36_c00290{transform:matrix(0.176984,0.001947,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176984,0.001947,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176984,0.001947,-0.002750,0.249985,0,0);}
.mcf_c00290{transform:matrix(0.177059,0.001948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177059,0.001948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177059,0.001948,-0.002750,0.249985,0,0);}
.mc9_c00290{transform:matrix(0.177384,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177384,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177384,0.001951,-0.002750,0.249985,0,0);}
.md9_c00290{transform:matrix(0.177679,0.001954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177679,0.001954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177679,0.001954,-0.002750,0.249985,0,0);}
.m6b_c00290{transform:matrix(0.177959,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177959,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177959,0.001958,-0.002750,0.249985,0,0);}
.m3a_c00290{transform:matrix(0.178709,0.001966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178709,0.001966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178709,0.001966,-0.002750,0.249985,0,0);}
.mdb_c00290{transform:matrix(0.178809,0.001967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178809,0.001967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178809,0.001967,-0.002750,0.249985,0,0);}
.m65_c00290{transform:matrix(0.178919,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178919,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178919,0.001968,-0.002750,0.249985,0,0);}
.m4_c00290{transform:matrix(0.179024,0.001969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179024,0.001969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179024,0.001969,-0.002750,0.249985,0,0);}
.m4e_c00290{transform:matrix(0.179629,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179629,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179629,0.001976,-0.002750,0.249985,0,0);}
.m87_c00290{transform:matrix(0.179774,0.001978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179774,0.001978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179774,0.001978,-0.002750,0.249985,0,0);}
.mc2_c00290{transform:matrix(0.180544,0.001986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180544,0.001986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180544,0.001986,-0.002750,0.249985,0,0);}
.m7c_c00290{transform:matrix(0.180704,0.001988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180704,0.001988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180704,0.001988,-0.002750,0.249985,0,0);}
.md0_c00290{transform:matrix(0.180894,0.001990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180894,0.001990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180894,0.001990,-0.002750,0.249985,0,0);}
.mde_c00290{transform:matrix(0.181069,0.001992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181069,0.001992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181069,0.001992,-0.002750,0.249985,0,0);}
.m2d_c00290{transform:matrix(0.181124,0.001992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181124,0.001992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181124,0.001992,-0.002750,0.249985,0,0);}
.m5e_c00290{transform:matrix(0.181354,0.001995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181354,0.001995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181354,0.001995,-0.002750,0.249985,0,0);}
.m33_c00290{transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);}
.ma3_c00290{transform:matrix(0.181829,0.002000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181829,0.002000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181829,0.002000,-0.002750,0.249985,0,0);}
.m72_c00290{transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);}
.m92_c00290{transform:matrix(0.182329,0.002006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182329,0.002006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182329,0.002006,-0.002750,0.249985,0,0);}
.m24_c00290{transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);}
.mf2_c00290{transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);}
.m4d_c00290{transform:matrix(0.183024,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183024,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183024,0.002013,-0.002750,0.249985,0,0);}
.mc4_c00290{transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);}
.m4b_c00290{transform:matrix(0.184114,0.002025,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184114,0.002025,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184114,0.002025,-0.002750,0.249985,0,0);}
.mdc_c00290{transform:matrix(0.184244,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184244,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184244,0.002027,-0.002750,0.249985,0,0);}
.m63_c00290{transform:matrix(0.184644,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184644,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184644,0.002031,-0.002750,0.249985,0,0);}
.m94_c00290{transform:matrix(0.184844,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184844,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184844,0.002033,-0.002750,0.249985,0,0);}
.m8d_c00290{transform:matrix(0.185649,0.002042,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185649,0.002042,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185649,0.002042,-0.002750,0.249985,0,0);}
.mbd_c00290{transform:matrix(0.185964,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185964,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185964,0.002046,-0.002750,0.249985,0,0);}
.m30_c00290{transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);}
.mcd_c00290{transform:matrix(0.186554,0.002052,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186554,0.002052,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186554,0.002052,-0.002750,0.249985,0,0);}
.m13_c00290{transform:matrix(0.186954,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186954,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186954,0.002056,-0.002750,0.249985,0,0);}
.m27_c00290{transform:matrix(0.186964,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186964,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186964,0.002057,-0.002750,0.249985,0,0);}
.mef_c00290{transform:matrix(0.187579,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187579,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187579,0.002063,-0.002750,0.249985,0,0);}
.m8f_c00290{transform:matrix(0.187959,0.002068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187959,0.002068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187959,0.002068,-0.002750,0.249985,0,0);}
.m4f_c00290{transform:matrix(0.187974,0.002068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187974,0.002068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187974,0.002068,-0.002750,0.249985,0,0);}
.mc3_c00290{transform:matrix(0.188819,0.002077,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188819,0.002077,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188819,0.002077,-0.002750,0.249985,0,0);}
.me7_c00290{transform:matrix(0.189169,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189169,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189169,0.002081,-0.002750,0.249985,0,0);}
.m68_c00290{transform:matrix(0.189289,0.002082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189289,0.002082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189289,0.002082,-0.002750,0.249985,0,0);}
.mb7_c00290{transform:matrix(0.189339,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189339,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189339,0.002083,-0.002750,0.249985,0,0);}
.m83_c00290{transform:matrix(0.189969,0.002090,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189969,0.002090,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189969,0.002090,-0.002750,0.249985,0,0);}
.mee_c00290{transform:matrix(0.190138,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190138,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190138,0.002092,-0.002750,0.249985,0,0);}
.m9b_c00290{transform:matrix(0.190718,0.002098,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190718,0.002098,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190718,0.002098,-0.002750,0.249985,0,0);}
.mb1_c00290{transform:matrix(0.190868,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190868,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190868,0.002100,-0.002750,0.249985,0,0);}
.me5_c00290{transform:matrix(0.191108,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191108,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191108,0.002102,-0.002750,0.249985,0,0);}
.m2b_c00290{transform:matrix(0.191358,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191358,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191358,0.002105,-0.002750,0.249985,0,0);}
.mb6_c00290{transform:matrix(0.191993,0.002112,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191993,0.002112,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191993,0.002112,-0.002750,0.249985,0,0);}
.m23_c00290{transform:matrix(0.192313,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192313,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192313,0.002115,-0.002750,0.249985,0,0);}
.m4a_c00290{transform:matrix(0.192933,0.002122,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192933,0.002122,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192933,0.002122,-0.002750,0.249985,0,0);}
.mfc_c00290{transform:matrix(0.193074,0.005599,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193074,0.005599,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193074,0.005599,-0.007247,0.249895,0,0);}
.m40_c00290{transform:matrix(0.193508,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193508,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193508,0.002129,-0.002750,0.249985,0,0);}
.m90_c00290{transform:matrix(0.193758,0.002131,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193758,0.002131,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193758,0.002131,-0.002750,0.249985,0,0);}
.m3_c00290{transform:matrix(0.193788,0.002132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193788,0.002132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193788,0.002132,-0.002750,0.249985,0,0);}
.m55_c00290{transform:matrix(0.194033,0.002134,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194033,0.002134,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194033,0.002134,-0.002750,0.249985,0,0);}
.m9d_c00290{transform:matrix(0.194088,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194088,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194088,0.002135,-0.002750,0.249985,0,0);}
.m34_c00290{transform:matrix(0.194473,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194473,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194473,0.002139,-0.002750,0.249985,0,0);}
.m8b_c00290{transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194558,0.002140,-0.002750,0.249985,0,0);}
.ma6_c00290{transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194728,0.002142,-0.002750,0.249985,0,0);}
.m5f_c00290{transform:matrix(0.194763,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194763,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194763,0.002142,-0.002750,0.249985,0,0);}
.m9e_c00290{transform:matrix(0.195223,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195223,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195223,0.002147,-0.002750,0.249985,0,0);}
.m49_c00290{transform:matrix(0.195258,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195258,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195258,0.002148,-0.002750,0.249985,0,0);}
.m5d_c00290{transform:matrix(0.195373,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195373,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195373,0.002149,-0.002750,0.249985,0,0);}
.md2_c00290{transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);}
.m66_c00290{transform:matrix(0.195853,0.002154,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195853,0.002154,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195853,0.002154,-0.002750,0.249985,0,0);}
.m7b_c00290{transform:matrix(0.196318,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196318,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196318,0.002159,-0.002750,0.249985,0,0);}
.mad_c00290{transform:matrix(0.196443,0.002161,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196443,0.002161,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196443,0.002161,-0.002750,0.249985,0,0);}
.meb_c00290{transform:matrix(0.197023,0.002167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197023,0.002167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197023,0.002167,-0.002750,0.249985,0,0);}
.mbe_c00290{transform:matrix(0.197428,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197428,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197428,0.002172,-0.002750,0.249985,0,0);}
.m57_c00290{transform:matrix(0.197438,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197438,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197438,0.002172,-0.002750,0.249985,0,0);}
.m6c_c00290{transform:matrix(0.197508,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197508,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197508,0.002173,-0.002750,0.249985,0,0);}
.m76_c00290{transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);}
.m2e_c00290{transform:matrix(0.198158,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198158,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198158,0.002180,-0.002750,0.249985,0,0);}
.ma8_c00290{transform:matrix(0.198418,0.002183,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198418,0.002183,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198418,0.002183,-0.002750,0.249985,0,0);}
.ma4_c00290{transform:matrix(0.198563,0.002184,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198563,0.002184,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198563,0.002184,-0.002750,0.249985,0,0);}
.mb4_c00290{transform:matrix(0.198683,0.002186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198683,0.002186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198683,0.002186,-0.002750,0.249985,0,0);}
.m91_c00290{transform:matrix(0.198878,0.002188,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198878,0.002188,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198878,0.002188,-0.002750,0.249985,0,0);}
.m21_c00290{transform:matrix(0.199093,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199093,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199093,0.002190,-0.002750,0.249985,0,0);}
.m85_c00290{transform:matrix(0.199453,0.002194,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199453,0.002194,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199453,0.002194,-0.002750,0.249985,0,0);}
.m67_c00290{transform:matrix(0.199623,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199623,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199623,0.002196,-0.002750,0.249985,0,0);}
.m5b_c00290{transform:matrix(0.200008,0.002200,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200008,0.002200,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200008,0.002200,-0.002750,0.249985,0,0);}
.m1c_c00290{transform:matrix(0.200368,0.002204,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200368,0.002204,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200368,0.002204,-0.002750,0.249985,0,0);}
.m98_c00290{transform:matrix(0.200588,0.002206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200588,0.002206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200588,0.002206,-0.002750,0.249985,0,0);}
.m41_c00290{transform:matrix(0.201523,0.002217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201523,0.002217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201523,0.002217,-0.002750,0.249985,0,0);}
.m22_c00290{transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);}
.m58_c00290{transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);}
.me0_c00290{transform:matrix(0.202893,0.002232,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202893,0.002232,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202893,0.002232,-0.002750,0.249985,0,0);}
.mc_c00290{transform:matrix(0.203018,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203018,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203018,0.002233,-0.002750,0.249985,0,0);}
.m31_c00290{transform:matrix(0.203433,0.002238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203433,0.002238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203433,0.002238,-0.002750,0.249985,0,0);}
.m64_c00290{transform:matrix(0.203448,0.002238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203448,0.002238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203448,0.002238,-0.002750,0.249985,0,0);}
.m26_c00290{transform:matrix(0.204038,0.002244,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204038,0.002244,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204038,0.002244,-0.002750,0.249985,0,0);}
.mb5_c00290{transform:matrix(0.204823,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204823,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204823,0.002253,-0.002750,0.249985,0,0);}
.m3b_c00290{transform:matrix(0.204848,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204848,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204848,0.002253,-0.002750,0.249985,0,0);}
.m8a_c00290{transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);}
.mac_c00290{transform:matrix(0.205213,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205213,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205213,0.002257,-0.002750,0.249985,0,0);}
.m2c_c00290{transform:matrix(0.205233,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205233,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205233,0.002258,-0.002750,0.249985,0,0);}
.me1_c00290{transform:matrix(0.205238,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205238,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205238,0.002258,-0.002750,0.249985,0,0);}
.mb9_c00290{transform:matrix(0.205293,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205293,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205293,0.002258,-0.002750,0.249985,0,0);}
.m96_c00290{transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);}
.md3_c00290{transform:matrix(0.205853,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205853,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205853,0.002264,-0.002750,0.249985,0,0);}
.m45_c00290{transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206018,0.002266,-0.002750,0.249985,0,0);}
.m14_c00290{transform:matrix(0.206098,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206098,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206098,0.002267,-0.002750,0.249985,0,0);}
.m48_c00290{transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206378,0.002270,-0.002750,0.249985,0,0);}
.m7_c00290{transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);}
.me9_c00290{transform:matrix(0.206797,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206797,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206797,0.002275,-0.002750,0.249985,0,0);}
.m69_c00290{transform:matrix(0.206827,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206827,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206827,0.002275,-0.002750,0.249985,0,0);}
.m1_c00290{transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);}
.ma1_c00290{transform:matrix(0.207402,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207402,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207402,0.002281,-0.002750,0.249985,0,0);}
.mbb_c00290{transform:matrix(0.207917,0.002287,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207917,0.002287,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207917,0.002287,-0.002750,0.249985,0,0);}
.me4_c00290{transform:matrix(0.207972,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207972,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207972,0.002288,-0.002750,0.249985,0,0);}
.m5a_c00290{transform:matrix(0.208092,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208092,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208092,0.002289,-0.002750,0.249985,0,0);}
.m1a_c00290{transform:matrix(0.208562,0.002294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208562,0.002294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208562,0.002294,-0.002750,0.249985,0,0);}
.mbf_c00290{transform:matrix(0.208592,0.002295,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208592,0.002295,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208592,0.002295,-0.002750,0.249985,0,0);}
.m25_c00290{transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208802,0.002297,-0.002750,0.249985,0,0);}
.m3f_c00290{transform:matrix(0.208942,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208942,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208942,0.002298,-0.002750,0.249985,0,0);}
.m74_c00290{transform:matrix(0.209257,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209257,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209257,0.002302,-0.002750,0.249985,0,0);}
.m2a_c00290{transform:matrix(0.209362,0.002303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209362,0.002303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209362,0.002303,-0.002750,0.249985,0,0);}
.ma_c00290{transform:matrix(0.209837,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209837,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209837,0.002308,-0.002750,0.249985,0,0);}
.m6_c00290{transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210377,0.002314,-0.002750,0.249985,0,0);}
.m6f_c00290{transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);}
.m16_c00290{transform:matrix(0.210822,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210822,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210822,0.002319,-0.002750,0.249985,0,0);}
.mbc_c00290{transform:matrix(0.211142,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211142,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211142,0.002323,-0.002750,0.249985,0,0);}
.m6d_c00290{transform:matrix(0.211687,0.002329,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211687,0.002329,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211687,0.002329,-0.002750,0.249985,0,0);}
.md5_c00290{transform:matrix(0.212057,0.002333,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212057,0.002333,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212057,0.002333,-0.002750,0.249985,0,0);}
.m59_c00290{transform:matrix(0.212817,0.002341,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212817,0.002341,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212817,0.002341,-0.002750,0.249985,0,0);}
.mc6_c00290{transform:matrix(0.212867,0.002342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212867,0.002342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212867,0.002342,-0.002750,0.249985,0,0);}
.mab_c00290{transform:matrix(0.213432,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213432,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213432,0.002348,-0.002750,0.249985,0,0);}
.m1d_c00290{transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214392,0.002358,-0.002750,0.249985,0,0);}
.m17_c00290{transform:matrix(0.214612,0.002361,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214612,0.002361,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214612,0.002361,-0.002750,0.249985,0,0);}
.m88_c00290{transform:matrix(0.215872,0.002375,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215872,0.002375,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215872,0.002375,-0.002750,0.249985,0,0);}
.me8_c00290{transform:matrix(0.216312,0.002379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216312,0.002379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216312,0.002379,-0.002750,0.249985,0,0);}
.ma9_c00290{transform:matrix(0.216872,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216872,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216872,0.002386,-0.002750,0.249985,0,0);}
.m11_c00290{transform:matrix(0.217212,0.002389,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217212,0.002389,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217212,0.002389,-0.002750,0.249985,0,0);}
.m97_c00290{transform:matrix(0.217272,0.002390,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217272,0.002390,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217272,0.002390,-0.002750,0.249985,0,0);}
.mca_c00290{transform:matrix(0.217312,0.002390,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217312,0.002390,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217312,0.002390,-0.002750,0.249985,0,0);}
.m8e_c00290{transform:matrix(0.218497,0.002403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218497,0.002403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218497,0.002403,-0.002750,0.249985,0,0);}
.m54_c00290{transform:matrix(0.220027,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220027,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220027,0.002420,-0.002750,0.249985,0,0);}
.m71_c00290{transform:matrix(0.220562,0.002426,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220562,0.002426,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220562,0.002426,-0.002750,0.249985,0,0);}
.m18_c00290{transform:matrix(0.221122,0.002432,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221122,0.002432,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221122,0.002432,-0.002750,0.249985,0,0);}
.m1e_c00290{transform:matrix(0.222302,0.002445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222302,0.002445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222302,0.002445,-0.002750,0.249985,0,0);}
.m5_c00290{transform:matrix(0.223751,0.002461,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223751,0.002461,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223751,0.002461,-0.002750,0.249985,0,0);}
.m15_c00290{transform:matrix(0.224656,0.002471,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224656,0.002471,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224656,0.002471,-0.002750,0.249985,0,0);}
.md1_c00290{transform:matrix(0.224916,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224916,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224916,0.002474,-0.002750,0.249985,0,0);}
.m78_c00290{transform:matrix(0.225281,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225281,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225281,0.002478,-0.002750,0.249985,0,0);}
.mc1_c00290{transform:matrix(0.225676,0.002482,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225676,0.002482,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225676,0.002482,-0.002750,0.249985,0,0);}
.m70_c00290{transform:matrix(0.226421,0.002491,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226421,0.002491,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226421,0.002491,-0.002750,0.249985,0,0);}
.m42_c00290{transform:matrix(0.227481,0.002502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227481,0.002502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227481,0.002502,-0.002750,0.249985,0,0);}
.m47_c00290{transform:matrix(0.227606,0.002504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227606,0.002504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227606,0.002504,-0.002750,0.249985,0,0);}
.mf0_c00290{transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);}
.m20_c00290{transform:matrix(0.230456,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230456,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230456,0.002535,-0.002750,0.249985,0,0);}
.maa_c00290{transform:matrix(0.233246,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233246,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233246,0.002566,-0.002750,0.249985,0,0);}
.m79_c00290{transform:matrix(0.233881,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233881,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233881,0.002573,-0.002750,0.249985,0,0);}
.mae_c00290{transform:matrix(0.236051,0.002597,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236051,0.002597,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236051,0.002597,-0.002750,0.249985,0,0);}
.m10_c00290{transform:matrix(0.237726,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237726,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237726,0.002615,-0.002750,0.249985,0,0);}
.mc7_c00290{transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239271,0.002632,-0.002750,0.249985,0,0);}
.m99_c00290{transform:matrix(0.243140,0.002675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243140,0.002675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243140,0.002675,-0.002750,0.249985,0,0);}
.m80_c00290{transform:matrix(0.244670,0.002691,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244670,0.002691,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244670,0.002691,-0.002750,0.249985,0,0);}
.mf_c00290{transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);}
.mb8_c00290{transform:matrix(0.249500,0.002744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249500,0.002744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249500,0.002744,-0.002750,0.249985,0,0);}
.mc8_c00290{transform:matrix(0.256185,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256185,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256185,0.002818,-0.002750,0.249985,0,0);}
.m29_c00290{transform:matrix(0.269684,0.002967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269684,0.002967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269684,0.002967,-0.002750,0.249985,0,0);}
.m3e_c00290{transform:matrix(0.274603,0.003021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274603,0.003021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274603,0.003021,-0.002750,0.249985,0,0);}
.mf1_c00290{transform:matrix(0.276053,0.003037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276053,0.003037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276053,0.003037,-0.002750,0.249985,0,0);}
.m3d_c00290{transform:matrix(0.300517,0.003306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.300517,0.003306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.300517,0.003306,-0.002750,0.249985,0,0);}
.mce_c00290{transform:matrix(0.307791,0.003386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307791,0.003386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307791,0.003386,-0.002750,0.249985,0,0);}
.mf8_c00290{transform:matrix(0.310180,0.008995,-0.007247,0.249895,0,0);-ms-transform:matrix(0.310180,0.008995,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.310180,0.008995,-0.007247,0.249895,0,0);}
.m12_c00290{transform:matrix(0.312111,0.003433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312111,0.003433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312111,0.003433,-0.002750,0.249985,0,0);}
.mcb_c00290{transform:matrix(0.316276,0.003479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316276,0.003479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316276,0.003479,-0.002750,0.249985,0,0);}
.md6_c00290{transform:matrix(0.318616,0.003505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.318616,0.003505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.318616,0.003505,-0.002750,0.249985,0,0);}
.mf3_c00290{transform:matrix(0.322404,0.009350,-0.007247,0.249895,0,0);-ms-transform:matrix(0.322404,0.009350,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.322404,0.009350,-0.007247,0.249895,0,0);}
.m28_c00290{transform:matrix(0.352139,0.003874,-0.002750,0.249985,0,0);-ms-transform:matrix(0.352139,0.003874,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.352139,0.003874,-0.002750,0.249985,0,0);}
.mf6_c00290{transform:matrix(0.369665,0.010720,-0.007247,0.249895,0,0);-ms-transform:matrix(0.369665,0.010720,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.369665,0.010720,-0.007247,0.249895,0,0);}
.m1f_c00290{transform:matrix(0.636077,0.006997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.636077,0.006997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.636077,0.006997,-0.002750,0.249985,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:0.000000px;}
.fc0_c00290{color:transparent;}
.fsc_c00290{font-size:27.311477px;}
.fs6_c00290{font-size:60.903684px;}
.fs3_c00290{font-size:61.953748px;}
.fs7_c00290{font-size:63.003811px;}
.fs8_c00290{font-size:65.103938px;}
.fs1_c00290{font-size:66.154002px;}
.fsd_c00290{font-size:66.177810px;}
.fs4_c00290{font-size:67.204065px;}
.fs5_c00290{font-size:68.254129px;}
.fsb_c00290{font-size:69.304193px;}
.fs9_c00290{font-size:70.354256px;}
.fs2_c00290{font-size:71.404320px;}
.fsa_c00290{font-size:76.654637px;}
.fs0_c00290{font-size:80.850000px;}
.y0_c00290{bottom:0.000000px;}
.y101_c00290{bottom:23.878557px;}
.y100_c00290{bottom:25.689442px;}
.yff_c00290{bottom:26.890269px;}
.yfe_c00290{bottom:28.997571px;}
.yfd_c00290{bottom:30.392877px;}
.yfc_c00290{bottom:31.379802px;}
.yfb_c00290{bottom:33.219918px;}
.yfa_c00290{bottom:33.830721px;}
.yf9_c00290{bottom:34.810863px;}
.yf8_c00290{bottom:36.071406px;}
.yf7_c00290{bottom:37.275790px;}
.yf6_c00290{bottom:41.287839px;}
.yf5_c00290{bottom:42.393000px;}
.yf4_c00290{bottom:42.743203px;}
.yf3_c00290{bottom:43.213353px;}
.yf2_c00290{bottom:44.324344px;}
.yf1_c00290{bottom:44.556393px;}
.yf0_c00290{bottom:45.633688px;}
.yef_c00290{bottom:46.043290px;}
.yee_c00290{bottom:47.224396px;}
.yed_c00290{bottom:61.038967px;}
.yec_c00290{bottom:61.595893px;}
.yeb_c00290{bottom:62.945580px;}
.yea_c00290{bottom:63.309894px;}
.ye9_c00290{bottom:65.149752px;}
.ye8_c00290{bottom:65.554600px;}
.ye7_c00290{bottom:66.267694px;}
.ye6_c00290{bottom:66.939808px;}
.ye5_c00290{bottom:77.144191px;}
.ye4_c00290{bottom:77.487924px;}
.ye3_c00290{bottom:78.424089px;}
.ye2_c00290{bottom:79.071726px;}
.ye1_c00290{bottom:79.486468px;}
.ye0_c00290{bottom:79.852062px;}
.ydf_c00290{bottom:80.162979px;}
.yde_c00290{bottom:95.171356px;}
.ydd_c00290{bottom:95.897361px;}
.ydc_c00290{bottom:96.179076px;}
.ydb_c00290{bottom:97.202466px;}
.yda_c00290{bottom:97.595785px;}
.yd9_c00290{bottom:98.632717px;}
.yd8_c00290{bottom:99.064635px;}
.yd1_c00290{bottom:112.355553px;}
.yd2_c00290{bottom:112.355616px;}
.yd0_c00290{bottom:112.355940px;}
.yd3_c00290{bottom:112.356352px;}
.yd5_c00290{bottom:112.356508px;}
.yd7_c00290{bottom:112.356528px;}
.yd6_c00290{bottom:112.356541px;}
.yd4_c00290{bottom:112.357029px;}
.ycf_c00290{bottom:129.091521px;}
.ycb_c00290{bottom:129.091765px;}
.ycd_c00290{bottom:129.092118px;}
.yce_c00290{bottom:129.092134px;}
.ycc_c00290{bottom:129.092292px;}
.yca_c00290{bottom:129.092439px;}
.yc8_c00290{bottom:129.092746px;}
.yc9_c00290{bottom:129.092809px;}
.yc7_c00290{bottom:143.763258px;}
.yc6_c00290{bottom:144.370176px;}
.yc5_c00290{bottom:144.960100px;}
.yc4_c00290{bottom:145.828258px;}
.yc3_c00290{bottom:146.349961px;}
.yc2_c00290{bottom:146.651836px;}
.yc1_c00290{bottom:147.127756px;}
.yba_c00290{bottom:163.204578px;}
.ybb_c00290{bottom:163.204911px;}
.ybc_c00290{bottom:163.205230px;}
.ybe_c00290{bottom:163.205310px;}
.ybd_c00290{bottom:163.205667px;}
.ybf_c00290{bottom:163.205703px;}
.yc0_c00290{bottom:163.205959px;}
.yb9_c00290{bottom:179.374377px;}
.yb8_c00290{bottom:179.531317px;}
.yb7_c00290{bottom:180.339676px;}
.yb6_c00290{bottom:180.662433px;}
.yb5_c00290{bottom:181.139935px;}
.yb4_c00290{bottom:181.377301px;}
.yb3_c00290{bottom:181.542886px;}
.yb2_c00290{bottom:182.100765px;}
.yb1_c00290{bottom:182.521483px;}
.yb0_c00290{bottom:182.767444px;}
.yaf_c00290{bottom:195.691521px;}
.yae_c00290{bottom:196.037250px;}
.yad_c00290{bottom:196.825834px;}
.yac_c00290{bottom:197.649198px;}
.yab_c00290{bottom:197.811082px;}
.yaa_c00290{bottom:198.417142px;}
.ya9_c00290{bottom:198.700159px;}
.ya8_c00290{bottom:212.645739px;}
.ya7_c00290{bottom:212.856838px;}
.ya6_c00290{bottom:213.551694px;}
.ya5_c00290{bottom:213.943965px;}
.ya4_c00290{bottom:214.158034px;}
.ya3_c00290{bottom:214.322278px;}
.ya2_c00290{bottom:214.598070px;}
.ya1_c00290{bottom:215.154915px;}
.ya0_c00290{bottom:215.712931px;}
.y9f_c00290{bottom:229.560987px;}
.y9e_c00290{bottom:230.038551px;}
.y9d_c00290{bottom:230.403895px;}
.y9c_c00290{bottom:231.343534px;}
.y9b_c00290{bottom:231.743982px;}
.y9a_c00290{bottom:232.825005px;}
.y99_c00290{bottom:233.063251px;}
.y98_c00290{bottom:233.533903px;}
.y97_c00290{bottom:247.313556px;}
.y96_c00290{bottom:247.492059px;}
.y95_c00290{bottom:248.093803px;}
.y94_c00290{bottom:249.056133px;}
.y93_c00290{bottom:250.088395px;}
.y92_c00290{bottom:250.315780px;}
.y91_c00290{bottom:250.814416px;}
.y90_c00290{bottom:264.596737px;}
.y8f_c00290{bottom:265.432581px;}
.y8e_c00290{bottom:265.693077px;}
.y8d_c00290{bottom:265.960963px;}
.y8c_c00290{bottom:266.947716px;}
.y8b_c00290{bottom:267.211890px;}
.y8a_c00290{bottom:267.752842px;}
.y89_c00290{bottom:268.633374px;}
.y84_c00290{bottom:283.255543px;}
.y83_c00290{bottom:283.255794px;}
.y85_c00290{bottom:283.255966px;}
.y82_c00290{bottom:283.256224px;}
.y86_c00290{bottom:283.256673px;}
.y88_c00290{bottom:283.256676px;}
.y87_c00290{bottom:283.256856px;}
.y7d_c00290{bottom:303.218133px;}
.y7a_c00290{bottom:303.218143px;}
.y7f_c00290{bottom:303.218452px;}
.y80_c00290{bottom:303.218515px;}
.y7c_c00290{bottom:303.218536px;}
.y7e_c00290{bottom:303.218646px;}
.y7b_c00290{bottom:303.218716px;}
.y81_c00290{bottom:303.219031px;}
.y79_c00290{bottom:318.435183px;}
.y77_c00290{bottom:318.435267px;}
.y78_c00290{bottom:318.435313px;}
.y75_c00290{bottom:318.435411px;}
.y76_c00290{bottom:318.435894px;}
.y74_c00290{bottom:318.436038px;}
.y6b_c00290{bottom:334.719031px;}
.y6c_c00290{bottom:334.719738px;}
.y6d_c00290{bottom:334.720054px;}
.y6e_c00290{bottom:334.720717px;}
.y6f_c00290{bottom:334.721064px;}
.y72_c00290{bottom:334.721400px;}
.y71_c00290{bottom:334.721530px;}
.y73_c00290{bottom:334.721703px;}
.y70_c00290{bottom:334.721710px;}
.y69_c00290{bottom:350.952387px;}
.y67_c00290{bottom:350.952757px;}
.y6a_c00290{bottom:350.952856px;}
.y68_c00290{bottom:350.953030px;}
.y66_c00290{bottom:350.953041px;}
.y65_c00290{bottom:350.953561px;}
.y64_c00290{bottom:350.953695px;}
.y63_c00290{bottom:350.954008px;}
.y62_c00290{bottom:367.425360px;}
.y60_c00290{bottom:367.425400px;}
.y61_c00290{bottom:367.425733px;}
.y5b_c00290{bottom:367.426048px;}
.y5f_c00290{bottom:367.426074px;}
.y5d_c00290{bottom:367.426248px;}
.y5e_c00290{bottom:367.426414px;}
.y5c_c00290{bottom:367.426771px;}
.y5a_c00290{bottom:384.230620px;}
.y59_c00290{bottom:384.748437px;}
.y58_c00290{bottom:385.940527px;}
.y57_c00290{bottom:386.222304px;}
.y56_c00290{bottom:386.717129px;}
.y55_c00290{bottom:387.538525px;}
.y54_c00290{bottom:387.867358px;}
.y53_c00290{bottom:388.248591px;}
.y52_c00290{bottom:401.327262px;}
.y51_c00290{bottom:401.327365px;}
.y50_c00290{bottom:401.328022px;}
.y4f_c00290{bottom:401.328379px;}
.y4d_c00290{bottom:401.328540px;}
.y4c_c00290{bottom:401.328747px;}
.y4e_c00290{bottom:401.329036px;}
.y4b_c00290{bottom:417.430480px;}
.y4a_c00290{bottom:417.964487px;}
.y49_c00290{bottom:418.499746px;}
.y48_c00290{bottom:419.025337px;}
.y47_c00290{bottom:419.200584px;}
.y46_c00290{bottom:419.330637px;}
.y45_c00290{bottom:419.874840px;}
.y44_c00290{bottom:420.109420px;}
.y43_c00290{bottom:433.918908px;}
.y42_c00290{bottom:434.653374px;}
.y41_c00290{bottom:435.180846px;}
.y40_c00290{bottom:436.597457px;}
.y3f_c00290{bottom:436.938933px;}
.y3e_c00290{bottom:437.677539px;}
.y3d_c00290{bottom:437.983287px;}
.y3c_c00290{bottom:438.300153px;}
.y3b_c00290{bottom:438.472738px;}
.y33_c00290{bottom:452.414998px;}
.y34_c00290{bottom:452.415465px;}
.y3a_c00290{bottom:452.415587px;}
.y38_c00290{bottom:452.415627px;}
.y39_c00290{bottom:452.415630px;}
.y35_c00290{bottom:452.415678px;}
.y37_c00290{bottom:452.416284px;}
.y36_c00290{bottom:452.416327px;}
.y32_c00290{bottom:469.528056px;}
.y31_c00290{bottom:469.528639px;}
.y2f_c00290{bottom:469.528890px;}
.y30_c00290{bottom:469.529296px;}
.y2d_c00290{bottom:469.529424px;}
.y2e_c00290{bottom:469.529593px;}
.y2c_c00290{bottom:469.530054px;}
.y2b_c00290{bottom:486.706728px;}
.y2a_c00290{bottom:486.707461px;}
.y25_c00290{bottom:486.707626px;}
.y26_c00290{bottom:486.708003px;}
.y29_c00290{bottom:486.708135px;}
.y27_c00290{bottom:486.708409px;}
.y28_c00290{bottom:486.708429px;}
.y24_c00290{bottom:503.823580px;}
.y1f_c00290{bottom:503.823598px;}
.y22_c00290{bottom:503.823711px;}
.y1e_c00290{bottom:503.823928px;}
.y20_c00290{bottom:503.824112px;}
.y1c_c00290{bottom:503.824209px;}
.y23_c00290{bottom:503.824284px;}
.y21_c00290{bottom:503.824444px;}
.y1d_c00290{bottom:503.824675px;}
.y1a_c00290{bottom:521.420723px;}
.y19_c00290{bottom:521.420823px;}
.y1b_c00290{bottom:521.421099px;}
.y18_c00290{bottom:521.421573px;}
.y17_c00290{bottom:521.422033px;}
.y16_c00290{bottom:521.422751px;}
.y15_c00290{bottom:521.422838px;}
.yb_c00290{bottom:538.305417px;}
.yc_c00290{bottom:538.305944px;}
.ye_c00290{bottom:538.305963px;}
.yf_c00290{bottom:538.306099px;}
.y10_c00290{bottom:538.306446px;}
.yd_c00290{bottom:538.306590px;}
.y14_c00290{bottom:538.307115px;}
.y11_c00290{bottom:538.307169px;}
.y13_c00290{bottom:538.307188px;}
.y12_c00290{bottom:538.307815px;}
.ya_c00290{bottom:555.349392px;}
.y9_c00290{bottom:555.531139px;}
.y8_c00290{bottom:555.673567px;}
.y7_c00290{bottom:556.169590px;}
.y6_c00290{bottom:556.701286px;}
.y5_c00290{bottom:556.897290px;}
.y4_c00290{bottom:557.264927px;}
.y3_c00290{bottom:557.886201px;}
.y2_c00290{bottom:558.361500px;}
.y1_c00290{bottom:568.209000px;}
.he_c00290{height:27.311477px;}
.h8_c00290{height:60.903684px;}
.h5_c00290{height:61.953748px;}
.h9_c00290{height:63.003811px;}
.ha_c00290{height:65.103938px;}
.h3_c00290{height:66.154002px;}
.hf_c00290{height:66.177810px;}
.h6_c00290{height:67.204065px;}
.h7_c00290{height:68.254129px;}
.hd_c00290{height:69.304193px;}
.hb_c00290{height:70.354256px;}
.h4_c00290{height:71.404320px;}
.hc_c00290{height:76.654637px;}
.h2_c00290{height:80.850000px;}
.h1_c00290{height:618.750000px;}
.h0_c00290{height:619.050000px;}
.w0_c00290{width:359.100000px;}
.w1_c00290{width:359.250000px;}
.x0_c00290{left:0.000000px;}
.xb_c00290{left:18.359466px;}
.x55_c00290{left:19.430325px;}
.x48_c00290{left:20.513781px;}
.x2_c00290{left:22.027500px;}
.x7b_c00290{left:24.324450px;}
.x71_c00290{left:25.375020px;}
.x1f_c00290{left:26.728472px;}
.x42_c00290{left:27.876192px;}
.x25_c00290{left:29.967426px;}
.xc_c00290{left:36.450160px;}
.x19_c00290{left:39.959337px;}
.x77_c00290{left:41.181270px;}
.x37_c00290{left:43.066876px;}
.x2b_c00290{left:44.549960px;}
.x43_c00290{left:49.032058px;}
.x63_c00290{left:50.566605px;}
.x4f_c00290{left:52.913475px;}
.xd_c00290{left:55.620987px;}
.x20_c00290{left:56.970635px;}
.x32_c00290{left:59.591045px;}
.x15_c00290{left:61.830539px;}
.x3_c00290{left:65.236500px;}
.x44_c00290{left:67.333656px;}
.x4c_c00290{left:69.655551px;}
.x21_c00290{left:73.981197px;}
.x61_c00290{left:75.152833px;}
.x59_c00290{left:76.406346px;}
.x33_c00290{left:78.657989px;}
.x6f_c00290{left:83.006799px;}
.x5e_c00290{left:85.671391px;}
.x2c_c00290{left:86.672058px;}
.x79_c00290{left:89.679012px;}
.x3e_c00290{left:90.987195px;}
.x38_c00290{left:92.539876px;}
.x78_c00290{left:97.636159px;}
.x1a_c00290{left:100.443647px;}
.x49_c00290{left:102.869247px;}
.x39_c00290{left:104.362876px;}
.x7e_c00290{left:106.527494px;}
.x75_c00290{left:109.076560px;}
.x1b_c00290{left:110.974917px;}
.x26_c00290{left:112.052859px;}
.x6a_c00290{left:114.053278px;}
.x50_c00290{left:115.286532px;}
.xe_c00290{left:117.185429px;}
.x3a_c00290{left:120.294376px;}
.x4_c00290{left:121.716000px;}
.x34_c00290{left:124.801447px;}
.x70_c00290{left:126.479320px;}
.x72_c00290{left:129.870159px;}
.x27_c00290{left:132.573834px;}
.x66_c00290{left:134.913684px;}
.x64_c00290{left:138.587244px;}
.x22_c00290{left:141.214832px;}
.x5f_c00290{left:143.180994px;}
.xf_c00290{left:145.267328px;}
.x67_c00290{left:148.617535px;}
.x73_c00290{left:150.661167px;}
.x3f_c00290{left:152.281603px;}
.x1_c00290{left:153.900000px;}
.x5_c00290{left:155.137500px;}
.x45_c00290{left:156.144825px;}
.x2d_c00290{left:159.576386px;}
.x10_c00290{left:161.737824px;}
.x28_c00290{left:163.086030px;}
.x51_c00290{left:164.429488px;}
.x68_c00290{left:166.441837px;}
.x3b_c00290{left:168.075376px;}
.x5a_c00290{left:169.561615px;}
.x6_c00290{left:172.956000px;}
.x52_c00290{left:176.310924px;}
.x7a_c00290{left:177.817432px;}
.x6c_c00290{left:180.489484px;}
.x4a_c00290{left:181.712784px;}
.x2e_c00290{left:186.038087px;}
.x56_c00290{left:187.111603px;}
.x7c_c00290{left:195.270000px;}
.x16_c00290{left:198.999621px;}
.x40_c00290{left:202.774708px;}
.x17_c00290{left:205.750430px;}
.x11_c00290{left:208.450483px;}
.x5b_c00290{left:210.333549px;}
.x57_c00290{left:214.383403px;}
.x3c_c00290{left:216.735376px;}
.x4d_c00290{left:220.053234px;}
.x7_c00290{left:221.292000px;}
.x46_c00290{left:222.375226px;}
.x29_c00290{left:224.380439px;}
.x6d_c00290{left:225.995985px;}
.x12_c00290{left:227.621310px;}
.x1c_c00290{left:232.752152px;}
.x2f_c00290{left:233.830862px;}
.x7d_c00290{left:236.800500px;}
.x53_c00290{left:242.194393px;}
.x5d_c00290{left:246.785905px;}
.x6b_c00290{left:248.319793px;}
.x47_c00290{left:251.174515px;}
.x23_c00290{left:253.270878px;}
.x69_c00290{left:256.952331px;}
.x2a_c00290{left:259.483179px;}
.x74_c00290{left:261.097032px;}
.x41_c00290{left:264.069117px;}
.x3d_c00290{left:265.281376px;}
.x8_c00290{left:266.385000px;}
.x35_c00290{left:267.662593px;}
.x6e_c00290{left:269.738281px;}
.x18_c00290{left:271.903932px;}
.x24_c00290{left:273.521820px;}
.x62_c00290{left:274.769928px;}
.x1d_c00290{left:278.114646px;}
.x9_c00290{left:279.333000px;}
.x4b_c00290{left:282.698994px;}
.x65_c00290{left:284.125842px;}
.x54_c00290{left:285.126591px;}
.x30_c00290{left:287.564363px;}
.x13_c00290{left:289.185752px;}
.x4e_c00290{left:291.337363px;}
.x58_c00290{left:293.768506px;}
.xa_c00290{left:295.855500px;}
.x1e_c00290{left:298.635621px;}
.x31_c00290{left:300.524430px;}
.x14_c00290{left:301.875786px;}
.x76_c00290{left:305.108287px;}
.x5c_c00290{left:308.889478px;}
.x7f_c00290{left:310.089789px;}
.x60_c00290{left:311.218966px;}
.x36_c00290{left:313.566069px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fsc_c00290{font-size:24.276869pt;}
.fs6_c00290{font-size:54.136608pt;}
.fs3_c00290{font-size:55.069998pt;}
.fs7_c00290{font-size:56.003388pt;}
.fs8_c00290{font-size:57.870167pt;}
.fs1_c00290{font-size:58.803557pt;}
.fsd_c00290{font-size:58.824720pt;}
.fs4_c00290{font-size:59.736947pt;}
.fs5_c00290{font-size:60.670337pt;}
.fsb_c00290{font-size:61.603727pt;}
.fs9_c00290{font-size:62.537116pt;}
.fs2_c00290{font-size:63.470506pt;}
.fsa_c00290{font-size:68.137455pt;}
.fs0_c00290{font-size:71.866667pt;}
.y0_c00290{bottom:0.000000pt;}
.y101_c00290{bottom:21.225384pt;}
.y100_c00290{bottom:22.835060pt;}
.yff_c00290{bottom:23.902461pt;}
.yfe_c00290{bottom:25.775619pt;}
.yfd_c00290{bottom:27.015891pt;}
.yfc_c00290{bottom:27.893157pt;}
.yfb_c00290{bottom:29.528816pt;}
.yfa_c00290{bottom:30.071752pt;}
.yf9_c00290{bottom:30.942989pt;}
.yf8_c00290{bottom:32.063472pt;}
.yf7_c00290{bottom:33.134036pt;}
.yf6_c00290{bottom:36.700301pt;}
.yf5_c00290{bottom:37.682667pt;}
.yf4_c00290{bottom:37.993959pt;}
.yf3_c00290{bottom:38.411869pt;}
.yf2_c00290{bottom:39.399417pt;}
.yf1_c00290{bottom:39.605683pt;}
.yf0_c00290{bottom:40.563279pt;}
.yef_c00290{bottom:40.927369pt;}
.yee_c00290{bottom:41.977241pt;}
.yed_c00290{bottom:54.256860pt;}
.yec_c00290{bottom:54.751905pt;}
.yeb_c00290{bottom:55.951627pt;}
.yea_c00290{bottom:56.275461pt;}
.ye9_c00290{bottom:57.910891pt;}
.ye8_c00290{bottom:58.270756pt;}
.ye7_c00290{bottom:58.904617pt;}
.ye6_c00290{bottom:59.502052pt;}
.ye5_c00290{bottom:68.572615pt;}
.ye4_c00290{bottom:68.878155pt;}
.ye3_c00290{bottom:69.710301pt;}
.ye2_c00290{bottom:70.285979pt;}
.ye1_c00290{bottom:70.654639pt;}
.ye0_c00290{bottom:70.979611pt;}
.ydf_c00290{bottom:71.255981pt;}
.yde_c00290{bottom:84.596761pt;}
.ydd_c00290{bottom:85.242099pt;}
.ydc_c00290{bottom:85.492512pt;}
.ydb_c00290{bottom:86.402192pt;}
.yda_c00290{bottom:86.751809pt;}
.yd9_c00290{bottom:87.673527pt;}
.yd8_c00290{bottom:88.057453pt;}
.yd1_c00290{bottom:99.871603pt;}
.yd2_c00290{bottom:99.871659pt;}
.yd0_c00290{bottom:99.871947pt;}
.yd3_c00290{bottom:99.872313pt;}
.yd5_c00290{bottom:99.872452pt;}
.yd7_c00290{bottom:99.872469pt;}
.yd6_c00290{bottom:99.872481pt;}
.yd4_c00290{bottom:99.872915pt;}
.ycf_c00290{bottom:114.748019pt;}
.ycb_c00290{bottom:114.748236pt;}
.ycd_c00290{bottom:114.748549pt;}
.yce_c00290{bottom:114.748564pt;}
.ycc_c00290{bottom:114.748704pt;}
.yca_c00290{bottom:114.748835pt;}
.yc8_c00290{bottom:114.749108pt;}
.yc9_c00290{bottom:114.749164pt;}
.yc7_c00290{bottom:127.789563pt;}
.yc6_c00290{bottom:128.329045pt;}
.yc5_c00290{bottom:128.853423pt;}
.yc4_c00290{bottom:129.625119pt;}
.yc3_c00290{bottom:130.088855pt;}
.yc2_c00290{bottom:130.357188pt;}
.yc1_c00290{bottom:130.780228pt;}
.yba_c00290{bottom:145.070736pt;}
.ybb_c00290{bottom:145.071032pt;}
.ybc_c00290{bottom:145.071316pt;}
.ybe_c00290{bottom:145.071387pt;}
.ybd_c00290{bottom:145.071704pt;}
.ybf_c00290{bottom:145.071736pt;}
.yc0_c00290{bottom:145.071964pt;}
.yb9_c00290{bottom:159.443891pt;}
.yb8_c00290{bottom:159.583393pt;}
.yb7_c00290{bottom:160.301935pt;}
.yb6_c00290{bottom:160.588829pt;}
.yb5_c00290{bottom:161.013276pt;}
.yb4_c00290{bottom:161.224268pt;}
.yb3_c00290{bottom:161.371455pt;}
.yb2_c00290{bottom:161.867347pt;}
.yb1_c00290{bottom:162.241319pt;}
.yb0_c00290{bottom:162.459951pt;}
.yaf_c00290{bottom:173.948019pt;}
.yae_c00290{bottom:174.255333pt;}
.yad_c00290{bottom:174.956297pt;}
.yac_c00290{bottom:175.688176pt;}
.yab_c00290{bottom:175.832073pt;}
.yaa_c00290{bottom:176.370793pt;}
.ya9_c00290{bottom:176.622364pt;}
.ya8_c00290{bottom:189.018435pt;}
.ya7_c00290{bottom:189.206079pt;}
.ya6_c00290{bottom:189.823728pt;}
.ya5_c00290{bottom:190.172413pt;}
.ya4_c00290{bottom:190.362697pt;}
.ya3_c00290{bottom:190.508692pt;}
.ya2_c00290{bottom:190.753840pt;}
.ya1_c00290{bottom:191.248813pt;}
.ya0_c00290{bottom:191.744828pt;}
.y9f_c00290{bottom:204.054211pt;}
.y9e_c00290{bottom:204.478712pt;}
.y9d_c00290{bottom:204.803463pt;}
.y9c_c00290{bottom:205.638697pt;}
.y9b_c00290{bottom:205.994651pt;}
.y9a_c00290{bottom:206.955560pt;}
.y99_c00290{bottom:207.167335pt;}
.y98_c00290{bottom:207.585692pt;}
.y97_c00290{bottom:219.834272pt;}
.y96_c00290{bottom:219.992941pt;}
.y95_c00290{bottom:220.527825pt;}
.y94_c00290{bottom:221.383229pt;}
.y93_c00290{bottom:222.300796pt;}
.y92_c00290{bottom:222.502916pt;}
.y91_c00290{bottom:222.946148pt;}
.y90_c00290{bottom:235.197100pt;}
.y8f_c00290{bottom:235.940072pt;}
.y8e_c00290{bottom:236.171624pt;}
.y8d_c00290{bottom:236.409745pt;}
.y8c_c00290{bottom:237.286859pt;}
.y8b_c00290{bottom:237.521680pt;}
.y8a_c00290{bottom:238.002527pt;}
.y89_c00290{bottom:238.785221pt;}
.y84_c00290{bottom:251.782705pt;}
.y83_c00290{bottom:251.782928pt;}
.y85_c00290{bottom:251.783081pt;}
.y82_c00290{bottom:251.783311pt;}
.y86_c00290{bottom:251.783709pt;}
.y88_c00290{bottom:251.783712pt;}
.y87_c00290{bottom:251.783872pt;}
.y7d_c00290{bottom:269.527229pt;}
.y7a_c00290{bottom:269.527239pt;}
.y7f_c00290{bottom:269.527513pt;}
.y80_c00290{bottom:269.527569pt;}
.y7c_c00290{bottom:269.527588pt;}
.y7e_c00290{bottom:269.527685pt;}
.y7b_c00290{bottom:269.527748pt;}
.y81_c00290{bottom:269.528028pt;}
.y79_c00290{bottom:283.053496pt;}
.y77_c00290{bottom:283.053571pt;}
.y78_c00290{bottom:283.053612pt;}
.y75_c00290{bottom:283.053699pt;}
.y76_c00290{bottom:283.054128pt;}
.y74_c00290{bottom:283.054256pt;}
.y6b_c00290{bottom:297.528028pt;}
.y6c_c00290{bottom:297.528656pt;}
.y6d_c00290{bottom:297.528937pt;}
.y6e_c00290{bottom:297.529527pt;}
.y6f_c00290{bottom:297.529835pt;}
.y72_c00290{bottom:297.530133pt;}
.y71_c00290{bottom:297.530249pt;}
.y73_c00290{bottom:297.530403pt;}
.y70_c00290{bottom:297.530409pt;}
.y69_c00290{bottom:311.957677pt;}
.y67_c00290{bottom:311.958007pt;}
.y6a_c00290{bottom:311.958095pt;}
.y68_c00290{bottom:311.958249pt;}
.y66_c00290{bottom:311.958259pt;}
.y65_c00290{bottom:311.958721pt;}
.y64_c00290{bottom:311.958840pt;}
.y63_c00290{bottom:311.959119pt;}
.y62_c00290{bottom:326.600320pt;}
.y60_c00290{bottom:326.600356pt;}
.y61_c00290{bottom:326.600652pt;}
.y5b_c00290{bottom:326.600932pt;}
.y5f_c00290{bottom:326.600955pt;}
.y5d_c00290{bottom:326.601109pt;}
.y5e_c00290{bottom:326.601257pt;}
.y5c_c00290{bottom:326.601575pt;}
.y5a_c00290{bottom:341.538329pt;}
.y59_c00290{bottom:341.998611pt;}
.y58_c00290{bottom:343.058247pt;}
.y57_c00290{bottom:343.308715pt;}
.y56_c00290{bottom:343.748559pt;}
.y55_c00290{bottom:344.478689pt;}
.y54_c00290{bottom:344.770985pt;}
.y53_c00290{bottom:345.109859pt;}
.y52_c00290{bottom:356.735344pt;}
.y51_c00290{bottom:356.735436pt;}
.y50_c00290{bottom:356.736020pt;}
.y4f_c00290{bottom:356.736337pt;}
.y4d_c00290{bottom:356.736480pt;}
.y4c_c00290{bottom:356.736664pt;}
.y4e_c00290{bottom:356.736921pt;}
.y4b_c00290{bottom:371.049316pt;}
.y4a_c00290{bottom:371.523988pt;}
.y49_c00290{bottom:371.999775pt;}
.y48_c00290{bottom:372.466967pt;}
.y47_c00290{bottom:372.622741pt;}
.y46_c00290{bottom:372.738344pt;}
.y45_c00290{bottom:373.222080pt;}
.y44_c00290{bottom:373.430596pt;}
.y43_c00290{bottom:385.705696pt;}
.y42_c00290{bottom:386.358555pt;}
.y41_c00290{bottom:386.827419pt;}
.y40_c00290{bottom:388.086628pt;}
.y3f_c00290{bottom:388.390163pt;}
.y3e_c00290{bottom:389.046701pt;}
.y3d_c00290{bottom:389.318477pt;}
.y3c_c00290{bottom:389.600136pt;}
.y3b_c00290{bottom:389.753545pt;}
.y33_c00290{bottom:402.146665pt;}
.y34_c00290{bottom:402.147080pt;}
.y3a_c00290{bottom:402.147188pt;}
.y38_c00290{bottom:402.147224pt;}
.y39_c00290{bottom:402.147227pt;}
.y35_c00290{bottom:402.147269pt;}
.y37_c00290{bottom:402.147808pt;}
.y36_c00290{bottom:402.147847pt;}
.y32_c00290{bottom:417.358272pt;}
.y31_c00290{bottom:417.358791pt;}
.y2f_c00290{bottom:417.359013pt;}
.y30_c00290{bottom:417.359375pt;}
.y2d_c00290{bottom:417.359488pt;}
.y2e_c00290{bottom:417.359639pt;}
.y2c_c00290{bottom:417.360048pt;}
.y2b_c00290{bottom:432.628203pt;}
.y2a_c00290{bottom:432.628855pt;}
.y25_c00290{bottom:432.629001pt;}
.y26_c00290{bottom:432.629336pt;}
.y29_c00290{bottom:432.629453pt;}
.y27_c00290{bottom:432.629697pt;}
.y28_c00290{bottom:432.629715pt;}
.y24_c00290{bottom:447.843183pt;}
.y1f_c00290{bottom:447.843199pt;}
.y22_c00290{bottom:447.843299pt;}
.y1e_c00290{bottom:447.843492pt;}
.y20_c00290{bottom:447.843655pt;}
.y1c_c00290{bottom:447.843741pt;}
.y23_c00290{bottom:447.843808pt;}
.y21_c00290{bottom:447.843951pt;}
.y1d_c00290{bottom:447.844156pt;}
.y1a_c00290{bottom:463.485087pt;}
.y19_c00290{bottom:463.485176pt;}
.y1b_c00290{bottom:463.485421pt;}
.y18_c00290{bottom:463.485843pt;}
.y17_c00290{bottom:463.486252pt;}
.y16_c00290{bottom:463.486889pt;}
.y15_c00290{bottom:463.486967pt;}
.yb_c00290{bottom:478.493704pt;}
.yc_c00290{bottom:478.494172pt;}
.ye_c00290{bottom:478.494189pt;}
.yf_c00290{bottom:478.494311pt;}
.y10_c00290{bottom:478.494619pt;}
.yd_c00290{bottom:478.494747pt;}
.y14_c00290{bottom:478.495213pt;}
.y11_c00290{bottom:478.495261pt;}
.y13_c00290{bottom:478.495279pt;}
.y12_c00290{bottom:478.495836pt;}
.ya_c00290{bottom:493.643904pt;}
.y9_c00290{bottom:493.805457pt;}
.y8_c00290{bottom:493.932060pt;}
.y7_c00290{bottom:494.372969pt;}
.y6_c00290{bottom:494.845588pt;}
.y5_c00290{bottom:495.019813pt;}
.y4_c00290{bottom:495.346601pt;}
.y3_c00290{bottom:495.898845pt;}
.y2_c00290{bottom:496.321333pt;}
.y1_c00290{bottom:505.074667pt;}
.he_c00290{height:24.276869pt;}
.h8_c00290{height:54.136608pt;}
.h5_c00290{height:55.069998pt;}
.h9_c00290{height:56.003388pt;}
.ha_c00290{height:57.870167pt;}
.h3_c00290{height:58.803557pt;}
.hf_c00290{height:58.824720pt;}
.h6_c00290{height:59.736947pt;}
.h7_c00290{height:60.670337pt;}
.hd_c00290{height:61.603727pt;}
.hb_c00290{height:62.537116pt;}
.h4_c00290{height:63.470506pt;}
.hc_c00290{height:68.137455pt;}
.h2_c00290{height:71.866667pt;}
.h1_c00290{height:550.000000pt;}
.h0_c00290{height:550.266667pt;}
.w0_c00290{width:319.200000pt;}
.w1_c00290{width:319.333333pt;}
.x0_c00290{left:0.000000pt;}
.xb_c00290{left:16.319525pt;}
.x55_c00290{left:17.271400pt;}
.x48_c00290{left:18.234472pt;}
.x2_c00290{left:19.580000pt;}
.x7b_c00290{left:21.621733pt;}
.x71_c00290{left:22.555573pt;}
.x1f_c00290{left:23.758641pt;}
.x42_c00290{left:24.778837pt;}
.x25_c00290{left:26.637712pt;}
.xc_c00290{left:32.400143pt;}
.x19_c00290{left:35.519411pt;}
.x77_c00290{left:36.605573pt;}
.x37_c00290{left:38.281668pt;}
.x2b_c00290{left:39.599964pt;}
.x43_c00290{left:43.584052pt;}
.x63_c00290{left:44.948093pt;}
.x4f_c00290{left:47.034200pt;}
.xd_c00290{left:49.440877pt;}
.x20_c00290{left:50.640564pt;}
.x32_c00290{left:52.969817pt;}
.x15_c00290{left:54.960479pt;}
.x3_c00290{left:57.988000pt;}
.x44_c00290{left:59.852139pt;}
.x4c_c00290{left:61.916045pt;}
.x21_c00290{left:65.761064pt;}
.x61_c00290{left:66.802519pt;}
.x59_c00290{left:67.916752pt;}
.x33_c00290{left:69.918212pt;}
.x6f_c00290{left:73.783821pt;}
.x5e_c00290{left:76.152348pt;}
.x2c_c00290{left:77.041829pt;}
.x79_c00290{left:79.714677pt;}
.x3e_c00290{left:80.877507pt;}
.x38_c00290{left:82.257668pt;}
.x78_c00290{left:86.787697pt;}
.x1a_c00290{left:89.283241pt;}
.x49_c00290{left:91.439331pt;}
.x39_c00290{left:92.767001pt;}
.x7e_c00290{left:94.691105pt;}
.x75_c00290{left:96.956943pt;}
.x1b_c00290{left:98.644371pt;}
.x26_c00290{left:99.602541pt;}
.x6a_c00290{left:101.380692pt;}
.x50_c00290{left:102.476917pt;}
.xe_c00290{left:104.164825pt;}
.x3a_c00290{left:106.928335pt;}
.x4_c00290{left:108.192000pt;}
.x34_c00290{left:110.934620pt;}
.x70_c00290{left:112.426063pt;}
.x72_c00290{left:115.440141pt;}
.x27_c00290{left:117.843408pt;}
.x66_c00290{left:119.923275pt;}
.x64_c00290{left:123.188661pt;}
.x22_c00290{left:125.524295pt;}
.x5f_c00290{left:127.271995pt;}
.xf_c00290{left:129.126513pt;}
.x67_c00290{left:132.104476pt;}
.x73_c00290{left:133.921037pt;}
.x3f_c00290{left:135.361425pt;}
.x1_c00290{left:136.800000pt;}
.x5_c00290{left:137.900000pt;}
.x45_c00290{left:138.795400pt;}
.x2d_c00290{left:141.845676pt;}
.x10_c00290{left:143.766955pt;}
.x28_c00290{left:144.965360pt;}
.x51_c00290{left:146.159545pt;}
.x68_c00290{left:147.948300pt;}
.x3b_c00290{left:149.400335pt;}
.x5a_c00290{left:150.721436pt;}
.x6_c00290{left:153.738667pt;}
.x52_c00290{left:156.720821pt;}
.x7a_c00290{left:158.059940pt;}
.x6c_c00290{left:160.435097pt;}
.x4a_c00290{left:161.522475pt;}
.x2e_c00290{left:165.367188pt;}
.x56_c00290{left:166.321425pt;}
.x7c_c00290{left:173.573333pt;}
.x16_c00290{left:176.888552pt;}
.x40_c00290{left:180.244185pt;}
.x17_c00290{left:182.889271pt;}
.x11_c00290{left:185.289319pt;}
.x5b_c00290{left:186.963155pt;}
.x57_c00290{left:190.563025pt;}
.x3c_c00290{left:192.653668pt;}
.x4d_c00290{left:195.602875pt;}
.x7_c00290{left:196.704000pt;}
.x46_c00290{left:197.666868pt;}
.x29_c00290{left:199.449279pt;}
.x6d_c00290{left:200.885320pt;}
.x12_c00290{left:202.330053pt;}
.x1c_c00290{left:206.890801pt;}
.x2f_c00290{left:207.849655pt;}
.x7d_c00290{left:210.489333pt;}
.x53_c00290{left:215.283905pt;}
.x5d_c00290{left:219.365249pt;}
.x6b_c00290{left:220.728705pt;}
.x47_c00290{left:223.266236pt;}
.x23_c00290{left:225.129669pt;}
.x69_c00290{left:228.402072pt;}
.x2a_c00290{left:230.651715pt;}
.x74_c00290{left:232.086251pt;}
.x41_c00290{left:234.728104pt;}
.x3d_c00290{left:235.805668pt;}
.x8_c00290{left:236.786667pt;}
.x35_c00290{left:237.922305pt;}
.x6e_c00290{left:239.767361pt;}
.x18_c00290{left:241.692384pt;}
.x24_c00290{left:243.130507pt;}
.x62_c00290{left:244.239936pt;}
.x1d_c00290{left:247.213019pt;}
.x9_c00290{left:248.296000pt;}
.x4b_c00290{left:251.287995pt;}
.x65_c00290{left:252.556304pt;}
.x54_c00290{left:253.445859pt;}
.x30_c00290{left:255.612767pt;}
.x13_c00290{left:257.054001pt;}
.x4e_c00290{left:258.966545pt;}
.x58_c00290{left:261.127561pt;}
.xa_c00290{left:262.982667pt;}
.x1e_c00290{left:265.453885pt;}
.x31_c00290{left:267.132827pt;}
.x14_c00290{left:268.334032pt;}
.x76_c00290{left:271.207367pt;}
.x5c_c00290{left:274.568425pt;}
.x7f_c00290{left:275.635368pt;}
.x60_c00290{left:276.639081pt;}
.x36_c00290{left:278.725395pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00291 {
    display:none;
  }
  .loading-indicator_c00291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00291 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00291 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00291" -> "#page-container .classname_c00291")
 */
.pf_c00291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00291 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00291 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00291 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00291 {overflow:visible;}
  }
}
.c_c00291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00291 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00291:after { /* webkit #35443 */
  content: '';
}
.t_c00291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00291 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00291 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00291 { /* info for Javascript */
  display:none;
}
.l_c00291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00291:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00291 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00291.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00291{transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.058580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058580,0.000000,0.000000,0.250000,0,0);}
.mf0_c00291{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.135555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135555,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.139930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139930,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.140945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140945,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);}
.mc0_c00291{transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147890,0.000000,0.000000,0.250000,0,0);}
.m47_c00291{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.mb6_c00291{transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151480,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);}
.meb_c00291{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155855,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(0.156155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156155,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.md3_c00291{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);}
.me2_c00291{transform:matrix(0.162070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162070,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);}
.mf7_c00291{transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);}
.m92_c00291{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.mf3_c00291{transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167570,0.000000,0.000000,0.250000,0,0);}
.mc5_c00291{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.mcc_c00291{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.me0_c00291{transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169890,0.000000,0.000000,0.250000,0,0);}
.mc2_c00291{transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);}
.mb0_c00291{transform:matrix(0.171180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171180,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);}
.mb4_c00291{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);}
.mba_c00291{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);}
.mb3_c00291{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.mf6_c00291{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.me5_c00291{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.mb8_c00291{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.md9_c00291{transform:matrix(0.176195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176195,0.000000,0.000000,0.250000,0,0);}
.me9_c00291{transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);}
.mdd_c00291{transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);}
.mc8_c00291{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.mf5_c00291{transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177535,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.mf1_c00291{transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);}
.mc4_c00291{transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.mbd_c00291{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.mec_c00291{transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179320,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.mbf_c00291{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.mcd_c00291{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.mdb_c00291{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m86_c00291{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.md1_c00291{transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);}
.mab_c00291{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.mf4_c00291{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.mb9_c00291{transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.mea_c00291{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186435,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00291{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.med_c00291{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.mdc_c00291{transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188640,0.000000,0.000000,0.250000,0,0);}
.mf2_c00291{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.mde_c00291{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);}
.me3_c00291{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.mbe_c00291{transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190735,0.000000,0.000000,0.250000,0,0);}
.mc7_c00291{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.mf9_c00291{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00291{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.mb2_c00291{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.mc6_c00291{transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.me7_c00291{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196185,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.maa_c00291{transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197110,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.mdf_c00291{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199870,0.000000,0.000000,0.250000,0,0);}
.mcb_c00291{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);}
.mcf_c00291{transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.me1_c00291{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);}
.m6b_c00291{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.me6_c00291{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.mb7_c00291{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205780,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.md7_c00291{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.md4_c00291{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.mee_c00291{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.md6_c00291{transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);}
.md2_c00291{transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.212745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212745,0.000000,0.000000,0.250000,0,0);}
.me4_c00291{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214755,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.215260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215260,0.000000,0.000000,0.250000,0,0);}
.mda_c00291{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.mca_c00291{transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);}
.mad_c00291{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.mef_c00291{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.220155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220155,0.000000,0.000000,0.250000,0,0);}
.mce_c00291{transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.md5_c00291{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m9e_c00291{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.md8_c00291{transform:matrix(0.230105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230105,0.000000,0.000000,0.250000,0,0);}
.mf8_c00291{transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);}
.mc9_c00291{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.maf_c00291{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);}
.mac_c00291{transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238320,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.mc3_c00291{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.271705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271705,0.000000,0.000000,0.250000,0,0);}
.md0_c00291{transform:matrix(0.310670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310670,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.318285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318285,0.000000,0.000000,0.250000,0,0);}
.me8_c00291{transform:matrix(0.358375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358375,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.752075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752075,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:0.000000px;}
.fc0_c00291{color:transparent;}
.fs10_c00291{font-size:33.600000px;}
.fs9_c00291{font-size:55.650000px;}
.fs7_c00291{font-size:56.700000px;}
.fs0_c00291{font-size:57.750000px;}
.fsa_c00291{font-size:58.800000px;}
.fsd_c00291{font-size:59.850000px;}
.fsc_c00291{font-size:60.900000px;}
.fs6_c00291{font-size:61.950000px;}
.fs5_c00291{font-size:63.000000px;}
.fs1_c00291{font-size:64.050000px;}
.fs4_c00291{font-size:65.100000px;}
.fsb_c00291{font-size:66.150000px;}
.fs2_c00291{font-size:67.200000px;}
.fsf_c00291{font-size:68.250000px;}
.fs8_c00291{font-size:69.300000px;}
.fse_c00291{font-size:70.350000px;}
.fs3_c00291{font-size:72.450000px;}
.y0_c00291{bottom:0.000000px;}
.y35_c00291{bottom:31.531500px;}
.y34_c00291{bottom:49.048500px;}
.y33_c00291{bottom:66.357000px;}
.y32_c00291{bottom:82.620000px;}
.y31_c00291{bottom:100.678500px;}
.y30_c00291{bottom:116.221500px;}
.y2f_c00291{bottom:133.174500px;}
.y2e_c00291{bottom:150.873000px;}
.y2d_c00291{bottom:167.584500px;}
.y2c_c00291{bottom:184.992000px;}
.y2b_c00291{bottom:200.905500px;}
.y2a_c00291{bottom:201.454500px;}
.y29_c00291{bottom:201.633000px;}
.y28_c00291{bottom:202.002000px;}
.y27_c00291{bottom:202.426500px;}
.y26_c00291{bottom:203.217000px;}
.y25_c00291{bottom:203.581500px;}
.y24_c00291{bottom:219.787500px;}
.y23_c00291{bottom:235.254000px;}
.y22_c00291{bottom:235.542000px;}
.y21_c00291{bottom:236.320500px;}
.y20_c00291{bottom:236.469000px;}
.y1f_c00291{bottom:237.087000px;}
.y1e_c00291{bottom:237.369000px;}
.y1d_c00291{bottom:237.666000px;}
.y1c_c00291{bottom:238.411500px;}
.y1b_c00291{bottom:253.789500px;}
.y1a_c00291{bottom:270.655500px;}
.y36_c00291{bottom:272.430000px;}
.y19_c00291{bottom:287.098500px;}
.y18_c00291{bottom:304.290000px;}
.y17_c00291{bottom:320.934000px;}
.y16_c00291{bottom:338.580000px;}
.y15_c00291{bottom:356.100000px;}
.y14_c00291{bottom:372.568500px;}
.y13_c00291{bottom:389.664000px;}
.y12_c00291{bottom:406.674000px;}
.y11_c00291{bottom:423.960000px;}
.y10_c00291{bottom:441.093000px;}
.yf_c00291{bottom:456.547500px;}
.ye_c00291{bottom:457.068000px;}
.yd_c00291{bottom:457.617000px;}
.yc_c00291{bottom:457.990500px;}
.yb_c00291{bottom:458.190000px;}
.ya_c00291{bottom:458.875500px;}
.y9_c00291{bottom:459.012000px;}
.y8_c00291{bottom:459.540000px;}
.y7_c00291{bottom:475.374000px;}
.y6_c00291{bottom:491.878500px;}
.y5_c00291{bottom:508.741500px;}
.y4_c00291{bottom:525.217500px;}
.y3_c00291{bottom:543.390000px;}
.y2_c00291{bottom:560.158500px;}
.y1_c00291{bottom:575.229000px;}
.h12_c00291{height:33.600000px;}
.hb_c00291{height:55.650000px;}
.h9_c00291{height:56.700000px;}
.h2_c00291{height:57.750000px;}
.hc_c00291{height:58.800000px;}
.hf_c00291{height:59.850000px;}
.he_c00291{height:60.900000px;}
.h8_c00291{height:61.950000px;}
.h7_c00291{height:63.000000px;}
.h3_c00291{height:64.050000px;}
.h6_c00291{height:65.100000px;}
.hd_c00291{height:66.150000px;}
.h4_c00291{height:67.200000px;}
.h11_c00291{height:68.250000px;}
.ha_c00291{height:69.300000px;}
.h10_c00291{height:70.350000px;}
.h5_c00291{height:72.450000px;}
.h1_c00291{height:618.750000px;}
.h0_c00291{height:619.050000px;}
.w0_c00291{width:359.100000px;}
.w1_c00291{width:359.250000px;}
.x0_c00291{left:0.000000px;}
.x14_c00291{left:30.240000px;}
.x43_c00291{left:37.530000px;}
.x71_c00291{left:38.608500px;}
.xa_c00291{left:39.690000px;}
.x3_c00291{left:41.310000px;}
.x1b_c00291{left:42.390000px;}
.xb_c00291{left:57.510000px;}
.x47_c00291{left:59.670000px;}
.x79_c00291{left:61.018500px;}
.x36_c00291{left:62.370000px;}
.x60_c00291{left:64.530000px;}
.x2c_c00291{left:66.420000px;}
.x56_c00291{left:69.390000px;}
.x69_c00291{left:71.938500px;}
.x5a_c00291{left:74.250000px;}
.x24_c00291{left:76.140000px;}
.x7b_c00291{left:80.728500px;}
.x2d_c00291{left:82.080000px;}
.x54_c00291{left:84.780000px;}
.x82_c00291{left:85.858500px;}
.x1c_c00291{left:89.100000px;}
.x25_c00291{left:90.720000px;}
.x15_c00291{left:91.800000px;}
.x4b_c00291{left:93.690000px;}
.x5b_c00291{left:94.770000px;}
.x75_c00291{left:96.928500px;}
.xc_c00291{left:98.550000px;}
.x31_c00291{left:100.620000px;}
.x2e_c00291{left:101.790000px;}
.x7c_c00291{left:103.408500px;}
.x65_c00291{left:106.108500px;}
.x3d_c00291{left:107.460000px;}
.x4e_c00291{left:109.350000px;}
.x4c_c00291{left:111.510000px;}
.x6d_c00291{left:114.478500px;}
.x16_c00291{left:116.640000px;}
.xd_c00291{left:118.530000px;}
.x44_c00291{left:123.390000px;}
.x4_c00291{left:125.280000px;}
.x1d_c00291{left:127.170000px;}
.x7d_c00291{left:128.788500px;}
.x4f_c00291{left:129.870000px;}
.x61_c00291{left:132.300000px;}
.x64_c00291{left:133.837500px;}
.x37_c00291{left:135.810000px;}
.x26_c00291{left:139.050000px;}
.x1e_c00291{left:142.560000px;}
.x6a_c00291{left:143.791500px;}
.x48_c00291{left:145.800000px;}
.x5_c00291{left:147.690000px;}
.x17_c00291{left:150.660000px;}
.x38_c00291{left:151.740000px;}
.x3e_c00291{left:153.090000px;}
.x72_c00291{left:155.788500px;}
.x2f_c00291{left:156.870000px;}
.xe_c00291{left:158.760000px;}
.x7e_c00291{left:160.918500px;}
.x32_c00291{left:162.958500px;}
.x76_c00291{left:167.128500px;}
.x1f_c00291{left:170.370000px;}
.x66_c00291{left:172.528500px;}
.x27_c00291{left:174.420000px;}
.x1_c00291{left:176.040000px;}
.x6_c00291{left:177.930000px;}
.x30_c00291{left:180.360000px;}
.x6b_c00291{left:182.370000px;}
.x62_c00291{left:185.220000px;}
.xf_c00291{left:186.300000px;}
.x51_c00291{left:187.650000px;}
.x73_c00291{left:190.618500px;}
.x20_c00291{left:192.510000px;}
.x5c_c00291{left:195.210000px;}
.x7_c00291{left:200.070000px;}
.x28_c00291{left:202.770000px;}
.x80_c00291{left:204.388500px;}
.x45_c00291{left:205.470000px;}
.x70_c00291{left:209.518500px;}
.x57_c00291{left:211.680000px;}
.x7a_c00291{left:213.028500px;}
.x33_c00291{left:215.065500px;}
.x83_c00291{left:220.318500px;}
.x10_c00291{left:222.210000px;}
.x3f_c00291{left:223.830000px;}
.x77_c00291{left:224.908500px;}
.x50_c00291{left:225.990000px;}
.x8_c00291{left:227.610000px;}
.x39_c00291{left:228.960000px;}
.x6c_c00291{left:232.053000px;}
.x52_c00291{left:233.280000px;}
.x46_c00291{left:235.440000px;}
.x18_c00291{left:237.870000px;}
.x3a_c00291{left:240.840000px;}
.x67_c00291{left:241.918500px;}
.x29_c00291{left:243.540000px;}
.x21_c00291{left:245.430000px;}
.x53_c00291{left:247.320000px;}
.x4d_c00291{left:251.370000px;}
.x68_c00291{left:253.798500px;}
.x40_c00291{left:255.420000px;}
.x84_c00291{left:256.498500px;}
.x78_c00291{left:257.578500px;}
.x3b_c00291{left:259.200000px;}
.x19_c00291{left:261.630000px;}
.x22_c00291{left:262.980000px;}
.x34_c00291{left:264.988500px;}
.x11_c00291{left:266.220000px;}
.x2_c00291{left:268.110000px;}
.x5d_c00291{left:270.540000px;}
.x63_c00291{left:271.620000px;}
.x41_c00291{left:274.050000px;}
.x6e_c00291{left:276.748500px;}
.x7f_c00291{left:279.988500px;}
.x9_c00291{left:282.150000px;}
.x5f_c00291{left:284.850000px;}
.x58_c00291{left:287.010000px;}
.x74_c00291{left:288.088500px;}
.x2a_c00291{left:291.600000px;}
.x12_c00291{left:294.840000px;}
.x5e_c00291{left:298.350000px;}
.x42_c00291{left:299.700000px;}
.x23_c00291{left:301.320000px;}
.x6f_c00291{left:303.208500px;}
.x49_c00291{left:306.450000px;}
.x3c_c00291{left:308.070000px;}
.x35_c00291{left:312.280500px;}
.x59_c00291{left:314.820000px;}
.x81_c00291{left:317.788500px;}
.x2b_c00291{left:320.490000px;}
.x1a_c00291{left:325.350000px;}
.x4a_c00291{left:326.970000px;}
.x55_c00291{left:332.100000px;}
.x13_c00291{left:333.450000px;}
.x85_c00291{left:338.040000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
.fs10_c00291{font-size:29.866667pt;}
.fs9_c00291{font-size:49.466667pt;}
.fs7_c00291{font-size:50.400000pt;}
.fs0_c00291{font-size:51.333333pt;}
.fsa_c00291{font-size:52.266667pt;}
.fsd_c00291{font-size:53.200000pt;}
.fsc_c00291{font-size:54.133333pt;}
.fs6_c00291{font-size:55.066667pt;}
.fs5_c00291{font-size:56.000000pt;}
.fs1_c00291{font-size:56.933333pt;}
.fs4_c00291{font-size:57.866667pt;}
.fsb_c00291{font-size:58.800000pt;}
.fs2_c00291{font-size:59.733333pt;}
.fsf_c00291{font-size:60.666667pt;}
.fs8_c00291{font-size:61.600000pt;}
.fse_c00291{font-size:62.533333pt;}
.fs3_c00291{font-size:64.400000pt;}
.y0_c00291{bottom:0.000000pt;}
.y35_c00291{bottom:28.028000pt;}
.y34_c00291{bottom:43.598667pt;}
.y33_c00291{bottom:58.984000pt;}
.y32_c00291{bottom:73.440000pt;}
.y31_c00291{bottom:89.492000pt;}
.y30_c00291{bottom:103.308000pt;}
.y2f_c00291{bottom:118.377333pt;}
.y2e_c00291{bottom:134.109333pt;}
.y2d_c00291{bottom:148.964000pt;}
.y2c_c00291{bottom:164.437333pt;}
.y2b_c00291{bottom:178.582667pt;}
.y2a_c00291{bottom:179.070667pt;}
.y29_c00291{bottom:179.229333pt;}
.y28_c00291{bottom:179.557333pt;}
.y27_c00291{bottom:179.934667pt;}
.y26_c00291{bottom:180.637333pt;}
.y25_c00291{bottom:180.961333pt;}
.y24_c00291{bottom:195.366667pt;}
.y23_c00291{bottom:209.114667pt;}
.y22_c00291{bottom:209.370667pt;}
.y21_c00291{bottom:210.062667pt;}
.y20_c00291{bottom:210.194667pt;}
.y1f_c00291{bottom:210.744000pt;}
.y1e_c00291{bottom:210.994667pt;}
.y1d_c00291{bottom:211.258667pt;}
.y1c_c00291{bottom:211.921333pt;}
.y1b_c00291{bottom:225.590667pt;}
.y1a_c00291{bottom:240.582667pt;}
.y36_c00291{bottom:242.160000pt;}
.y19_c00291{bottom:255.198667pt;}
.y18_c00291{bottom:270.480000pt;}
.y17_c00291{bottom:285.274667pt;}
.y16_c00291{bottom:300.960000pt;}
.y15_c00291{bottom:316.533333pt;}
.y14_c00291{bottom:331.172000pt;}
.y13_c00291{bottom:346.368000pt;}
.y12_c00291{bottom:361.488000pt;}
.y11_c00291{bottom:376.853333pt;}
.y10_c00291{bottom:392.082667pt;}
.yf_c00291{bottom:405.820000pt;}
.ye_c00291{bottom:406.282667pt;}
.yd_c00291{bottom:406.770667pt;}
.yc_c00291{bottom:407.102667pt;}
.yb_c00291{bottom:407.280000pt;}
.ya_c00291{bottom:407.889333pt;}
.y9_c00291{bottom:408.010667pt;}
.y8_c00291{bottom:408.480000pt;}
.y7_c00291{bottom:422.554667pt;}
.y6_c00291{bottom:437.225333pt;}
.y5_c00291{bottom:452.214667pt;}
.y4_c00291{bottom:466.860000pt;}
.y3_c00291{bottom:483.013333pt;}
.y2_c00291{bottom:497.918667pt;}
.y1_c00291{bottom:511.314667pt;}
.h12_c00291{height:29.866667pt;}
.hb_c00291{height:49.466667pt;}
.h9_c00291{height:50.400000pt;}
.h2_c00291{height:51.333333pt;}
.hc_c00291{height:52.266667pt;}
.hf_c00291{height:53.200000pt;}
.he_c00291{height:54.133333pt;}
.h8_c00291{height:55.066667pt;}
.h7_c00291{height:56.000000pt;}
.h3_c00291{height:56.933333pt;}
.h6_c00291{height:57.866667pt;}
.hd_c00291{height:58.800000pt;}
.h4_c00291{height:59.733333pt;}
.h11_c00291{height:60.666667pt;}
.ha_c00291{height:61.600000pt;}
.h10_c00291{height:62.533333pt;}
.h5_c00291{height:64.400000pt;}
.h1_c00291{height:550.000000pt;}
.h0_c00291{height:550.266667pt;}
.w0_c00291{width:319.200000pt;}
.w1_c00291{width:319.333333pt;}
.x0_c00291{left:0.000000pt;}
.x14_c00291{left:26.880000pt;}
.x43_c00291{left:33.360000pt;}
.x71_c00291{left:34.318667pt;}
.xa_c00291{left:35.280000pt;}
.x3_c00291{left:36.720000pt;}
.x1b_c00291{left:37.680000pt;}
.xb_c00291{left:51.120000pt;}
.x47_c00291{left:53.040000pt;}
.x79_c00291{left:54.238667pt;}
.x36_c00291{left:55.440000pt;}
.x60_c00291{left:57.360000pt;}
.x2c_c00291{left:59.040000pt;}
.x56_c00291{left:61.680000pt;}
.x69_c00291{left:63.945333pt;}
.x5a_c00291{left:66.000000pt;}
.x24_c00291{left:67.680000pt;}
.x7b_c00291{left:71.758667pt;}
.x2d_c00291{left:72.960000pt;}
.x54_c00291{left:75.360000pt;}
.x82_c00291{left:76.318667pt;}
.x1c_c00291{left:79.200000pt;}
.x25_c00291{left:80.640000pt;}
.x15_c00291{left:81.600000pt;}
.x4b_c00291{left:83.280000pt;}
.x5b_c00291{left:84.240000pt;}
.x75_c00291{left:86.158667pt;}
.xc_c00291{left:87.600000pt;}
.x31_c00291{left:89.440000pt;}
.x2e_c00291{left:90.480000pt;}
.x7c_c00291{left:91.918667pt;}
.x65_c00291{left:94.318667pt;}
.x3d_c00291{left:95.520000pt;}
.x4e_c00291{left:97.200000pt;}
.x4c_c00291{left:99.120000pt;}
.x6d_c00291{left:101.758667pt;}
.x16_c00291{left:103.680000pt;}
.xd_c00291{left:105.360000pt;}
.x44_c00291{left:109.680000pt;}
.x4_c00291{left:111.360000pt;}
.x1d_c00291{left:113.040000pt;}
.x7d_c00291{left:114.478667pt;}
.x4f_c00291{left:115.440000pt;}
.x61_c00291{left:117.600000pt;}
.x64_c00291{left:118.966667pt;}
.x37_c00291{left:120.720000pt;}
.x26_c00291{left:123.600000pt;}
.x1e_c00291{left:126.720000pt;}
.x6a_c00291{left:127.814667pt;}
.x48_c00291{left:129.600000pt;}
.x5_c00291{left:131.280000pt;}
.x17_c00291{left:133.920000pt;}
.x38_c00291{left:134.880000pt;}
.x3e_c00291{left:136.080000pt;}
.x72_c00291{left:138.478667pt;}
.x2f_c00291{left:139.440000pt;}
.xe_c00291{left:141.120000pt;}
.x7e_c00291{left:143.038667pt;}
.x32_c00291{left:144.852000pt;}
.x76_c00291{left:148.558667pt;}
.x1f_c00291{left:151.440000pt;}
.x66_c00291{left:153.358667pt;}
.x27_c00291{left:155.040000pt;}
.x1_c00291{left:156.480000pt;}
.x6_c00291{left:158.160000pt;}
.x30_c00291{left:160.320000pt;}
.x6b_c00291{left:162.106667pt;}
.x62_c00291{left:164.640000pt;}
.xf_c00291{left:165.600000pt;}
.x51_c00291{left:166.800000pt;}
.x73_c00291{left:169.438667pt;}
.x20_c00291{left:171.120000pt;}
.x5c_c00291{left:173.520000pt;}
.x7_c00291{left:177.840000pt;}
.x28_c00291{left:180.240000pt;}
.x80_c00291{left:181.678667pt;}
.x45_c00291{left:182.640000pt;}
.x70_c00291{left:186.238667pt;}
.x57_c00291{left:188.160000pt;}
.x7a_c00291{left:189.358667pt;}
.x33_c00291{left:191.169333pt;}
.x83_c00291{left:195.838667pt;}
.x10_c00291{left:197.520000pt;}
.x3f_c00291{left:198.960000pt;}
.x77_c00291{left:199.918667pt;}
.x50_c00291{left:200.880000pt;}
.x8_c00291{left:202.320000pt;}
.x39_c00291{left:203.520000pt;}
.x6c_c00291{left:206.269333pt;}
.x52_c00291{left:207.360000pt;}
.x46_c00291{left:209.280000pt;}
.x18_c00291{left:211.440000pt;}
.x3a_c00291{left:214.080000pt;}
.x67_c00291{left:215.038667pt;}
.x29_c00291{left:216.480000pt;}
.x21_c00291{left:218.160000pt;}
.x53_c00291{left:219.840000pt;}
.x4d_c00291{left:223.440000pt;}
.x68_c00291{left:225.598667pt;}
.x40_c00291{left:227.040000pt;}
.x84_c00291{left:227.998667pt;}
.x78_c00291{left:228.958667pt;}
.x3b_c00291{left:230.400000pt;}
.x19_c00291{left:232.560000pt;}
.x22_c00291{left:233.760000pt;}
.x34_c00291{left:235.545333pt;}
.x11_c00291{left:236.640000pt;}
.x2_c00291{left:238.320000pt;}
.x5d_c00291{left:240.480000pt;}
.x63_c00291{left:241.440000pt;}
.x41_c00291{left:243.600000pt;}
.x6e_c00291{left:245.998667pt;}
.x7f_c00291{left:248.878667pt;}
.x9_c00291{left:250.800000pt;}
.x5f_c00291{left:253.200000pt;}
.x58_c00291{left:255.120000pt;}
.x74_c00291{left:256.078667pt;}
.x2a_c00291{left:259.200000pt;}
.x12_c00291{left:262.080000pt;}
.x5e_c00291{left:265.200000pt;}
.x42_c00291{left:266.400000pt;}
.x23_c00291{left:267.840000pt;}
.x6f_c00291{left:269.518667pt;}
.x49_c00291{left:272.400000pt;}
.x3c_c00291{left:273.840000pt;}
.x35_c00291{left:277.582667pt;}
.x59_c00291{left:279.840000pt;}
.x81_c00291{left:282.478667pt;}
.x2b_c00291{left:284.880000pt;}
.x1a_c00291{left:289.200000pt;}
.x4a_c00291{left:290.640000pt;}
.x55_c00291{left:295.200000pt;}
.x13_c00291{left:296.400000pt;}
.x85_c00291{left:300.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00292 {
    display:none;
  }
  .loading-indicator_c00292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00292 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00292 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00292" -> "#page-container .classname_c00292")
 */
.pf_c00292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00292 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00292 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00292 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00292 {overflow:visible;}
  }
}
.c_c00292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00292 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00292:after { /* webkit #35443 */
  content: '';
}
.t_c00292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00292 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00292 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00292 { /* info for Javascript */
  display:none;
}
.l_c00292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00292:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00292 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00292.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10b_c00292{transform:matrix(0.035918,0.001113,-0.007746,0.249880,0,0);-ms-transform:matrix(0.035918,0.001113,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.035918,0.001113,-0.007746,0.249880,0,0);}
.m137_c00292{transform:matrix(0.037374,0.001384,-0.009253,0.249829,0,0);-ms-transform:matrix(0.037374,0.001384,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.037374,0.001384,-0.009253,0.249829,0,0);}
.m9e_c00292{transform:matrix(0.048770,0.001562,-0.008004,0.249872,0,0);-ms-transform:matrix(0.048770,0.001562,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.048770,0.001562,-0.008004,0.249872,0,0);}
.m142_c00292{transform:matrix(0.049954,0.001600,-0.008004,0.249872,0,0);-ms-transform:matrix(0.049954,0.001600,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.049954,0.001600,-0.008004,0.249872,0,0);}
.m148_c00292{transform:matrix(0.050719,0.001625,-0.008004,0.249872,0,0);-ms-transform:matrix(0.050719,0.001625,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.050719,0.001625,-0.008004,0.249872,0,0);}
.ma4_c00292{transform:matrix(0.054524,0.001690,-0.007746,0.249880,0,0);-ms-transform:matrix(0.054524,0.001690,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.054524,0.001690,-0.007746,0.249880,0,0);}
.m9f_c00292{transform:matrix(0.057391,0.001838,-0.008004,0.249872,0,0);-ms-transform:matrix(0.057391,0.001838,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.057391,0.001838,-0.008004,0.249872,0,0);}
.mac_c00292{transform:matrix(0.064254,0.001992,-0.007746,0.249880,0,0);-ms-transform:matrix(0.064254,0.001992,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.064254,0.001992,-0.007746,0.249880,0,0);}
.mc3_c00292{transform:matrix(0.068321,0.001366,-0.004999,0.249950,0,0);-ms-transform:matrix(0.068321,0.001366,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.068321,0.001366,-0.004999,0.249950,0,0);}
.mc4_c00292{transform:matrix(0.069226,0.001385,-0.004999,0.249950,0,0);-ms-transform:matrix(0.069226,0.001385,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.069226,0.001385,-0.004999,0.249950,0,0);}
.m126_c00292{transform:matrix(0.070664,0.002546,-0.009003,0.249838,0,0);-ms-transform:matrix(0.070664,0.002546,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.070664,0.002546,-0.009003,0.249838,0,0);}
.ma6_c00292{transform:matrix(0.082285,0.002551,-0.007746,0.249880,0,0);-ms-transform:matrix(0.082285,0.002551,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.082285,0.002551,-0.007746,0.249880,0,0);}
.med_c00292{transform:matrix(0.082695,0.002564,-0.007746,0.249880,0,0);-ms-transform:matrix(0.082695,0.002564,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.082695,0.002564,-0.007746,0.249880,0,0);}
.mb8_c00292{transform:matrix(0.086488,0.001730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.086488,0.001730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.086488,0.001730,-0.004999,0.249950,0,0);}
.ma0_c00292{transform:matrix(0.086616,0.002774,-0.008004,0.249872,0,0);-ms-transform:matrix(0.086616,0.002774,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.086616,0.002774,-0.008004,0.249872,0,0);}
.mf1_c00292{transform:matrix(0.089797,0.002784,-0.007746,0.249880,0,0);-ms-transform:matrix(0.089797,0.002784,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.089797,0.002784,-0.007746,0.249880,0,0);}
.ma_c00292{transform:matrix(0.093395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093395,0.000000,0.000000,0.250000,0,0);}
.mad_c00292{transform:matrix(0.103610,0.003212,-0.007746,0.249880,0,0);-ms-transform:matrix(0.103610,0.003212,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.103610,0.003212,-0.007746,0.249880,0,0);}
.m4c_c00292{transform:matrix(0.106085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106085,0.000000,0.000000,0.250000,0,0);}
.m11c_c00292{transform:matrix(0.110768,0.003992,-0.009003,0.249838,0,0);-ms-transform:matrix(0.110768,0.003992,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.110768,0.003992,-0.009003,0.249838,0,0);}
.m11b_c00292{transform:matrix(0.111852,0.004031,-0.009003,0.249838,0,0);-ms-transform:matrix(0.111852,0.004031,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.111852,0.004031,-0.009003,0.249838,0,0);}
.m107_c00292{transform:matrix(0.122336,0.003792,-0.007746,0.249880,0,0);-ms-transform:matrix(0.122336,0.003792,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.122336,0.003792,-0.007746,0.249880,0,0);}
.me7_c00292{transform:matrix(0.130172,0.004035,-0.007746,0.249880,0,0);-ms-transform:matrix(0.130172,0.004035,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.130172,0.004035,-0.007746,0.249880,0,0);}
.m78_c00292{transform:matrix(0.141355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141355,0.000000,0.000000,0.250000,0,0);}
.m36_c00292{transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);}
.mb3_c00292{transform:matrix(0.145860,0.004522,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145860,0.004522,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145860,0.004522,-0.007746,0.249880,0,0);}
.mf3_c00292{transform:matrix(0.147379,0.004569,-0.007746,0.249880,0,0);-ms-transform:matrix(0.147379,0.004569,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.147379,0.004569,-0.007746,0.249880,0,0);}
.mb6_c00292{transform:matrix(0.148709,0.004610,-0.007746,0.249880,0,0);-ms-transform:matrix(0.148709,0.004610,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.148709,0.004610,-0.007746,0.249880,0,0);}
.m6_c00292{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00292{transform:matrix(0.151052,0.004683,-0.007746,0.249880,0,0);-ms-transform:matrix(0.151052,0.004683,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.151052,0.004683,-0.007746,0.249880,0,0);}
.ma1_c00292{transform:matrix(0.154231,0.004940,-0.008004,0.249872,0,0);-ms-transform:matrix(0.154231,0.004940,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.154231,0.004940,-0.008004,0.249872,0,0);}
.m2c_c00292{transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);}
.m13e_c00292{transform:matrix(0.155813,0.005771,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155813,0.005771,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155813,0.005771,-0.009253,0.249829,0,0);}
.mab_c00292{transform:matrix(0.156865,0.004863,-0.007746,0.249880,0,0);-ms-transform:matrix(0.156865,0.004863,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.156865,0.004863,-0.007746,0.249880,0,0);}
.m31_c00292{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.mb4_c00292{transform:matrix(0.161003,0.004991,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161003,0.004991,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161003,0.004991,-0.007746,0.249880,0,0);}
.m100_c00292{transform:matrix(0.161018,0.004992,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161018,0.004992,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161018,0.004992,-0.007746,0.249880,0,0);}
.m7_c00292{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.mf5_c00292{transform:matrix(0.161722,0.005013,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161722,0.005013,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161722,0.005013,-0.007746,0.249880,0,0);}
.mfd_c00292{transform:matrix(0.162062,0.005024,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162062,0.005024,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162062,0.005024,-0.007746,0.249880,0,0);}
.m5c_c00292{transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);}
.mfa_c00292{transform:matrix(0.163466,0.005067,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163466,0.005067,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163466,0.005067,-0.007746,0.249880,0,0);}
.m95_c00292{transform:matrix(0.164795,0.005279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.164795,0.005279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.164795,0.005279,-0.008004,0.249872,0,0);}
.meb_c00292{transform:matrix(0.165505,0.005131,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165505,0.005131,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165505,0.005131,-0.007746,0.249880,0,0);}
.mb2_c00292{transform:matrix(0.166220,0.005153,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166220,0.005153,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166220,0.005153,-0.007746,0.249880,0,0);}
.m7f_c00292{transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);}
.m55_c00292{transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);}
.m74_c00292{transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);}
.m7d_c00292{transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m40_c00292{transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);}
.m7b_c00292{transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);}
.mda_c00292{transform:matrix(0.170618,0.005289,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170618,0.005289,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170618,0.005289,-0.007746,0.249880,0,0);}
.m54_c00292{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.m35_c00292{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.mc5_c00292{transform:matrix(0.173060,0.003461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173060,0.003461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173060,0.003461,-0.004999,0.249950,0,0);}
.m7a_c00292{transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);}
.m9b_c00292{transform:matrix(0.173231,0.005549,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173231,0.005549,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173231,0.005549,-0.008004,0.249872,0,0);}
.m3d_c00292{transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);}
.m92_c00292{transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173941,0.005572,-0.008004,0.249872,0,0);}
.md6_c00292{transform:matrix(0.174581,0.005412,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174581,0.005412,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174581,0.005412,-0.007746,0.249880,0,0);}
.m90_c00292{transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);}
.m13f_c00292{transform:matrix(0.176464,0.006536,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176464,0.006536,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176464,0.006536,-0.009253,0.249829,0,0);}
.me8_c00292{transform:matrix(0.177145,0.005491,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177145,0.005491,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177145,0.005491,-0.007746,0.249880,0,0);}
.m3e_c00292{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m47_c00292{transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177640,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.me0_c00292{transform:matrix(0.178384,0.005530,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178384,0.005530,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178384,0.005530,-0.007746,0.249880,0,0);}
.md8_c00292{transform:matrix(0.178389,0.005530,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178389,0.005530,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178389,0.005530,-0.007746,0.249880,0,0);}
.md2_c00292{transform:matrix(0.179279,0.005558,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179279,0.005558,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179279,0.005558,-0.007746,0.249880,0,0);}
.m32_c00292{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m6b_c00292{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.m45_c00292{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.mb1_c00292{transform:matrix(0.180573,0.005598,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180573,0.005598,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180573,0.005598,-0.007746,0.249880,0,0);}
.mf8_c00292{transform:matrix(0.180753,0.005603,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180753,0.005603,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180753,0.005603,-0.007746,0.249880,0,0);}
.m20_c00292{transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m75_c00292{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.mf4_c00292{transform:matrix(0.182157,0.005647,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182157,0.005647,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182157,0.005647,-0.007746,0.249880,0,0);}
.m122_c00292{transform:matrix(0.182297,0.006569,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182297,0.006569,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182297,0.006569,-0.009003,0.249838,0,0);}
.m8d_c00292{transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);}
.m84_c00292{transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);}
.m30_c00292{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.md7_c00292{transform:matrix(0.184451,0.005718,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184451,0.005718,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184451,0.005718,-0.007746,0.249880,0,0);}
.mb_c00292{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m123_c00292{transform:matrix(0.184705,0.006656,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184705,0.006656,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184705,0.006656,-0.009003,0.249838,0,0);}
.m48_c00292{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m13a_c00292{transform:matrix(0.184948,0.006850,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184948,0.006850,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184948,0.006850,-0.009253,0.249829,0,0);}
.m94_c00292{transform:matrix(0.185015,0.005926,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185015,0.005926,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185015,0.005926,-0.008004,0.249872,0,0);}
.m88_c00292{transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);}
.m82_c00292{transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);}
.mde_c00292{transform:matrix(0.186365,0.005777,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186365,0.005777,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186365,0.005777,-0.007746,0.249880,0,0);}
.md5_c00292{transform:matrix(0.186485,0.005781,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186485,0.005781,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186485,0.005781,-0.007746,0.249880,0,0);}
.m4f_c00292{transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);}
.m6e_c00292{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m89_c00292{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);}
.m60_c00292{transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);}
.mf7_c00292{transform:matrix(0.188170,0.005833,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188170,0.005833,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188170,0.005833,-0.007746,0.249880,0,0);}
.m121_c00292{transform:matrix(0.188962,0.006809,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188962,0.006809,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188962,0.006809,-0.009003,0.249838,0,0);}
.m1f_c00292{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);}
.mdb_c00292{transform:matrix(0.189304,0.005868,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189304,0.005868,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189304,0.005868,-0.007746,0.249880,0,0);}
.mf6_c00292{transform:matrix(0.189344,0.005870,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189344,0.005870,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189344,0.005870,-0.007746,0.249880,0,0);}
.m2f_c00292{transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);}
.m56_c00292{transform:matrix(0.189705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189705,0.000000,0.000000,0.250000,0,0);}
.m5b_c00292{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.me9_c00292{transform:matrix(0.191178,0.005927,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191178,0.005927,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191178,0.005927,-0.007746,0.249880,0,0);}
.m83_c00292{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m10c_c00292{transform:matrix(0.191723,0.005943,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191723,0.005943,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191723,0.005943,-0.007746,0.249880,0,0);}
.m80_c00292{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.m7e_c00292{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m6d_c00292{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.mb5_c00292{transform:matrix(0.194037,0.006015,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194037,0.006015,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194037,0.006015,-0.007746,0.249880,0,0);}
.mc7_c00292{transform:matrix(0.194042,0.006015,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194042,0.006015,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194042,0.006015,-0.007746,0.249880,0,0);}
.mfe_c00292{transform:matrix(0.194282,0.006023,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194282,0.006023,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194282,0.006023,-0.007746,0.249880,0,0);}
.m8_c00292{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m5d_c00292{transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194310,0.000000,0.000000,0.250000,0,0);}
.m44_c00292{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m25_c00292{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m49_c00292{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.md1_c00292{transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);}
.m65_c00292{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.m24_c00292{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m68_c00292{transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);}
.m91_c00292{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.mcd_c00292{transform:matrix(0.197805,0.006132,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197805,0.006132,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197805,0.006132,-0.007746,0.249880,0,0);}
.m13d_c00292{transform:matrix(0.198054,0.007335,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198054,0.007335,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198054,0.007335,-0.009253,0.249829,0,0);}
.m14_c00292{transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.md9_c00292{transform:matrix(0.199239,0.006176,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199239,0.006176,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199239,0.006176,-0.007746,0.249880,0,0);}
.m0_c00292{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);}
.m13c_c00292{transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200907,0.007441,-0.009253,0.249829,0,0);}
.m9a_c00292{transform:matrix(0.201092,0.006441,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201092,0.006441,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201092,0.006441,-0.008004,0.249872,0,0);}
.m79_c00292{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m93_c00292{transform:matrix(0.201432,0.006452,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201432,0.006452,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201432,0.006452,-0.008004,0.249872,0,0);}
.m103_c00292{transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);}
.m1_c00292{transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);}
.m11e_c00292{transform:matrix(0.202119,0.007284,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202119,0.007284,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202119,0.007284,-0.009003,0.249838,0,0);}
.m38_c00292{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00292{transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);}
.mdc_c00292{transform:matrix(0.202603,0.006281,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202603,0.006281,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202603,0.006281,-0.007746,0.249880,0,0);}
.m63_c00292{transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);}
.m76_c00292{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m33_c00292{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00292{transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);}
.m87_c00292{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.md0_c00292{transform:matrix(0.204567,0.006342,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204567,0.006342,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204567,0.006342,-0.007746,0.249880,0,0);}
.m66_c00292{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m136_c00292{transform:matrix(0.205304,0.007604,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205304,0.007604,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205304,0.007604,-0.009253,0.249829,0,0);}
.m8c_c00292{transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);}
.m4a_c00292{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);}
.m69_c00292{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m34_c00292{transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206315,0.000000,0.000000,0.250000,0,0);}
.m11f_c00292{transform:matrix(0.206321,0.007435,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206321,0.007435,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206321,0.007435,-0.009003,0.249838,0,0);}
.m62_c00292{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.mb0_c00292{transform:matrix(0.206591,0.006404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206591,0.006404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206591,0.006404,-0.007746,0.249880,0,0);}
.m46_c00292{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.m5a_c00292{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.mea_c00292{transform:matrix(0.206911,0.006414,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206911,0.006414,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206911,0.006414,-0.007746,0.249880,0,0);}
.m67_c00292{transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m120_c00292{transform:matrix(0.209719,0.007557,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209719,0.007557,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209719,0.007557,-0.009003,0.249838,0,0);}
.m2d_c00292{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m4b_c00292{transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);}
.m140_c00292{transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209926,0.007775,-0.009253,0.249829,0,0);}
.m98_c00292{transform:matrix(0.210792,0.006752,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210792,0.006752,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210792,0.006752,-0.008004,0.249872,0,0);}
.m50_c00292{transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);}
.mbb_c00292{transform:matrix(0.210858,0.004217,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210858,0.004217,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210858,0.004217,-0.004999,0.249950,0,0);}
.m8f_c00292{transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);}
.me6_c00292{transform:matrix(0.211064,0.006543,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211064,0.006543,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211064,0.006543,-0.007746,0.249880,0,0);}
.m42_c00292{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.mbf_c00292{transform:matrix(0.211688,0.004234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211688,0.004234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211688,0.004234,-0.004999,0.249950,0,0);}
.m77_c00292{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.mce_c00292{transform:matrix(0.212023,0.006573,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212023,0.006573,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212023,0.006573,-0.007746,0.249880,0,0);}
.m144_c00292{transform:matrix(0.213805,0.006849,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213805,0.006849,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213805,0.006849,-0.008004,0.249872,0,0);}
.m39_c00292{transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mff_c00292{transform:matrix(0.215571,0.006683,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215571,0.006683,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215571,0.006683,-0.007746,0.249880,0,0);}
.m13b_c00292{transform:matrix(0.215767,0.007991,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215767,0.007991,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215767,0.007991,-0.009253,0.249829,0,0);}
.m86_c00292{transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);}
.m5f_c00292{transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);}
.m3b_c00292{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m101_c00292{transform:matrix(0.216871,0.006723,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216871,0.006723,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216871,0.006723,-0.007746,0.249880,0,0);}
.m10_c00292{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00292{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m53_c00292{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.mf9_c00292{transform:matrix(0.219195,0.006795,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219195,0.006795,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219195,0.006795,-0.007746,0.249880,0,0);}
.m70_c00292{transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);}
.m59_c00292{transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);}
.mfc_c00292{transform:matrix(0.223043,0.006914,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223043,0.006914,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223043,0.006914,-0.007746,0.249880,0,0);}
.mc1_c00292{transform:matrix(0.223540,0.004471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223540,0.004471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223540,0.004471,-0.004999,0.249950,0,0);}
.m23_c00292{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.m21_c00292{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.m9c_c00292{transform:matrix(0.225449,0.007222,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225449,0.007222,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225449,0.007222,-0.008004,0.249872,0,0);}
.m18_c00292{transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);}
.m43_c00292{transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);}
.m8e_c00292{transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);}
.m72_c00292{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.mca_c00292{transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);}
.m1b_c00292{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maa_c00292{transform:matrix(0.227356,0.007048,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227356,0.007048,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227356,0.007048,-0.007746,0.249880,0,0);}
.mae_c00292{transform:matrix(0.227945,0.007066,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227945,0.007066,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227945,0.007066,-0.007746,0.249880,0,0);}
.mcc_c00292{transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);}
.m9_c00292{transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);}
.mba_c00292{transform:matrix(0.229589,0.004592,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229589,0.004592,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229589,0.004592,-0.004999,0.249950,0,0);}
.mcb_c00292{transform:matrix(0.230364,0.007141,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230364,0.007141,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230364,0.007141,-0.007746,0.249880,0,0);}
.m29_c00292{transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);}
.m57_c00292{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m64_c00292{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.maf_c00292{transform:matrix(0.233398,0.007235,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233398,0.007235,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233398,0.007235,-0.007746,0.249880,0,0);}
.m71_c00292{transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235840,0.000000,0.000000,0.250000,0,0);}
.m52_c00292{transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);}
.m106_c00292{transform:matrix(0.236222,0.007323,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236222,0.007323,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236222,0.007323,-0.007746,0.249880,0,0);}
.me2_c00292{transform:matrix(0.236237,0.007323,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236237,0.007323,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236237,0.007323,-0.007746,0.249880,0,0);}
.m12d_c00292{transform:matrix(0.236931,0.008538,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236931,0.008538,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236931,0.008538,-0.009003,0.249838,0,0);}
.m130_c00292{transform:matrix(0.237521,0.008559,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237521,0.008559,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237521,0.008559,-0.009003,0.249838,0,0);}
.mbd_c00292{transform:matrix(0.238537,0.004771,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238537,0.004771,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238537,0.004771,-0.004999,0.249950,0,0);}
.m4d_c00292{transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00292{transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);}
.m115_c00292{transform:matrix(0.242958,0.007532,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242958,0.007532,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242958,0.007532,-0.007746,0.249880,0,0);}
.mc2_c00292{transform:matrix(0.244276,0.004886,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244276,0.004886,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244276,0.004886,-0.004999,0.249950,0,0);}
.m96_c00292{transform:matrix(0.244575,0.007834,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244575,0.007834,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244575,0.007834,-0.008004,0.249872,0,0);}
.m12a_c00292{transform:matrix(0.245041,0.008830,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245041,0.008830,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245041,0.008830,-0.009003,0.249838,0,0);}
.mc8_c00292{transform:matrix(0.245417,0.007608,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245417,0.007608,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245417,0.007608,-0.007746,0.249880,0,0);}
.m10e_c00292{transform:matrix(0.246037,0.007627,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246037,0.007627,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246037,0.007627,-0.007746,0.249880,0,0);}
.mbc_c00292{transform:matrix(0.247226,0.004945,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247226,0.004945,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247226,0.004945,-0.004999,0.249950,0,0);}
.mc0_c00292{transform:matrix(0.247521,0.004950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247521,0.004950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247521,0.004950,-0.004999,0.249950,0,0);}
.m2e_c00292{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m111_c00292{transform:matrix(0.250864,0.007777,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250864,0.007777,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250864,0.007777,-0.007746,0.249880,0,0);}
.m85_c00292{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m145_c00292{transform:matrix(0.252590,0.008091,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252590,0.008091,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252590,0.008091,-0.008004,0.249872,0,0);}
.m6f_c00292{transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);}
.m3a_c00292{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.mcf_c00292{transform:matrix(0.253733,0.007866,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253733,0.007866,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253733,0.007866,-0.007746,0.249880,0,0);}
.mbe_c00292{transform:matrix(0.255229,0.005105,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255229,0.005105,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255229,0.005105,-0.004999,0.249950,0,0);}
.m12c_c00292{transform:matrix(0.255654,0.009213,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255654,0.009213,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255654,0.009213,-0.009003,0.249838,0,0);}
.m110_c00292{transform:matrix(0.257146,0.007972,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257146,0.007972,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257146,0.007972,-0.007746,0.249880,0,0);}
.m97_c00292{transform:matrix(0.260351,0.008340,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260351,0.008340,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260351,0.008340,-0.008004,0.249872,0,0);}
.m41_c00292{transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);}
.mc6_c00292{transform:matrix(0.266802,0.008271,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266802,0.008271,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266802,0.008271,-0.007746,0.249880,0,0);}
.m61_c00292{transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);}
.m51_c00292{transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);}
.mb9_c00292{transform:matrix(0.271901,0.005438,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271901,0.005438,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271901,0.005438,-0.004999,0.249950,0,0);}
.mec_c00292{transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);}
.md4_c00292{transform:matrix(0.273444,0.008477,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273444,0.008477,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273444,0.008477,-0.007746,0.249880,0,0);}
.m113_c00292{transform:matrix(0.274683,0.008515,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274683,0.008515,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274683,0.008515,-0.007746,0.249880,0,0);}
.mc9_c00292{transform:matrix(0.281195,0.008717,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281195,0.008717,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281195,0.008717,-0.007746,0.249880,0,0);}
.m9d_c00292{transform:matrix(0.282450,0.009047,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282450,0.009047,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282450,0.009047,-0.008004,0.249872,0,0);}
.m7c_c00292{transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00292{transform:matrix(0.285178,0.008841,-0.007746,0.249880,0,0);-ms-transform:matrix(0.285178,0.008841,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.285178,0.008841,-0.007746,0.249880,0,0);}
.m58_c00292{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m102_c00292{transform:matrix(0.290306,0.008999,-0.007746,0.249880,0,0);-ms-transform:matrix(0.290306,0.008999,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.290306,0.008999,-0.007746,0.249880,0,0);}
.m10a_c00292{transform:matrix(0.290845,0.009016,-0.007746,0.249880,0,0);-ms-transform:matrix(0.290845,0.009016,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.290845,0.009016,-0.007746,0.249880,0,0);}
.m128_c00292{transform:matrix(0.291461,0.010503,-0.009003,0.249838,0,0);-ms-transform:matrix(0.291461,0.010503,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.291461,0.010503,-0.009003,0.249838,0,0);}
.m116_c00292{transform:matrix(0.293369,0.009094,-0.007746,0.249880,0,0);-ms-transform:matrix(0.293369,0.009094,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.293369,0.009094,-0.007746,0.249880,0,0);}
.m8a_c00292{transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);}
.m11a_c00292{transform:matrix(0.297997,0.010739,-0.009003,0.249838,0,0);-ms-transform:matrix(0.297997,0.010739,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.297997,0.010739,-0.009003,0.249838,0,0);}
.m118_c00292{transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);-ms-transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.298861,0.010770,-0.009003,0.249838,0,0);}
.m114_c00292{transform:matrix(0.299686,0.009290,-0.007746,0.249880,0,0);-ms-transform:matrix(0.299686,0.009290,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.299686,0.009290,-0.007746,0.249880,0,0);}
.m139_c00292{transform:matrix(0.303577,0.011244,-0.009253,0.249829,0,0);-ms-transform:matrix(0.303577,0.011244,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.303577,0.011244,-0.009253,0.249829,0,0);}
.mdf_c00292{transform:matrix(0.307867,0.009544,-0.007746,0.249880,0,0);-ms-transform:matrix(0.307867,0.009544,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.307867,0.009544,-0.007746,0.249880,0,0);}
.m146_c00292{transform:matrix(0.308302,0.009876,-0.008004,0.249872,0,0);-ms-transform:matrix(0.308302,0.009876,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.308302,0.009876,-0.008004,0.249872,0,0);}
.md3_c00292{transform:matrix(0.319102,0.009892,-0.007746,0.249880,0,0);-ms-transform:matrix(0.319102,0.009892,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.319102,0.009892,-0.007746,0.249880,0,0);}
.m73_c00292{transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);}
.m129_c00292{transform:matrix(0.327702,0.011809,-0.009003,0.249838,0,0);-ms-transform:matrix(0.327702,0.011809,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.327702,0.011809,-0.009003,0.249838,0,0);}
.ma9_c00292{transform:matrix(0.329397,0.010211,-0.007746,0.249880,0,0);-ms-transform:matrix(0.329397,0.010211,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.329397,0.010211,-0.007746,0.249880,0,0);}
.m108_c00292{transform:matrix(0.333060,0.010325,-0.007746,0.249880,0,0);-ms-transform:matrix(0.333060,0.010325,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.333060,0.010325,-0.007746,0.249880,0,0);}
.m105_c00292{transform:matrix(0.333535,0.010340,-0.007746,0.249880,0,0);-ms-transform:matrix(0.333535,0.010340,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.333535,0.010340,-0.007746,0.249880,0,0);}
.m132_c00292{transform:matrix(0.334253,0.012045,-0.009003,0.249838,0,0);-ms-transform:matrix(0.334253,0.012045,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.334253,0.012045,-0.009003,0.249838,0,0);}
.m12e_c00292{transform:matrix(0.338056,0.012182,-0.009003,0.249838,0,0);-ms-transform:matrix(0.338056,0.012182,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.338056,0.012182,-0.009003,0.249838,0,0);}
.m109_c00292{transform:matrix(0.338917,0.010506,-0.007746,0.249880,0,0);-ms-transform:matrix(0.338917,0.010506,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.338917,0.010506,-0.007746,0.249880,0,0);}
.m104_c00292{transform:matrix(0.343800,0.010658,-0.007746,0.249880,0,0);-ms-transform:matrix(0.343800,0.010658,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.343800,0.010658,-0.007746,0.249880,0,0);}
.m117_c00292{transform:matrix(0.354880,0.012788,-0.009003,0.249838,0,0);-ms-transform:matrix(0.354880,0.012788,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.354880,0.012788,-0.009003,0.249838,0,0);}
.m125_c00292{transform:matrix(0.359362,0.012950,-0.009003,0.249838,0,0);-ms-transform:matrix(0.359362,0.012950,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.359362,0.012950,-0.009003,0.249838,0,0);}
.me4_c00292{transform:matrix(0.361756,0.011214,-0.007746,0.249880,0,0);-ms-transform:matrix(0.361756,0.011214,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.361756,0.011214,-0.007746,0.249880,0,0);}
.m127_c00292{transform:matrix(0.363149,0.013086,-0.009003,0.249838,0,0);-ms-transform:matrix(0.363149,0.013086,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.363149,0.013086,-0.009003,0.249838,0,0);}
.mfb_c00292{transform:matrix(0.366184,0.011352,-0.007746,0.249880,0,0);-ms-transform:matrix(0.366184,0.011352,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.366184,0.011352,-0.007746,0.249880,0,0);}
.m10f_c00292{transform:matrix(0.368303,0.011417,-0.007746,0.249880,0,0);-ms-transform:matrix(0.368303,0.011417,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.368303,0.011417,-0.007746,0.249880,0,0);}
.m12f_c00292{transform:matrix(0.370574,0.013354,-0.009003,0.249838,0,0);-ms-transform:matrix(0.370574,0.013354,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.370574,0.013354,-0.009003,0.249838,0,0);}
.m112_c00292{transform:matrix(0.373566,0.011581,-0.007746,0.249880,0,0);-ms-transform:matrix(0.373566,0.011581,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.373566,0.011581,-0.007746,0.249880,0,0);}
.m12b_c00292{transform:matrix(0.376900,0.013582,-0.009003,0.249838,0,0);-ms-transform:matrix(0.376900,0.013582,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.376900,0.013582,-0.009003,0.249838,0,0);}
.mee_c00292{transform:matrix(0.381832,0.011837,-0.007746,0.249880,0,0);-ms-transform:matrix(0.381832,0.011837,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.381832,0.011837,-0.007746,0.249880,0,0);}
.mf2_c00292{transform:matrix(0.383316,0.011883,-0.007746,0.249880,0,0);-ms-transform:matrix(0.383316,0.011883,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.383316,0.011883,-0.007746,0.249880,0,0);}
.m37_c00292{transform:matrix(0.400835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400835,0.000000,0.000000,0.250000,0,0);}
.me1_c00292{transform:matrix(0.410063,0.012712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.410063,0.012712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.410063,0.012712,-0.007746,0.249880,0,0);}
.m135_c00292{transform:matrix(0.412997,0.015296,-0.009253,0.249829,0,0);-ms-transform:matrix(0.412997,0.015296,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.412997,0.015296,-0.009253,0.249829,0,0);}
.m131_c00292{transform:matrix(0.432809,0.015597,-0.009003,0.249838,0,0);-ms-transform:matrix(0.432809,0.015597,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.432809,0.015597,-0.009003,0.249838,0,0);}
.me5_c00292{transform:matrix(0.436900,0.013544,-0.007746,0.249880,0,0);-ms-transform:matrix(0.436900,0.013544,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.436900,0.013544,-0.007746,0.249880,0,0);}
.m138_c00292{transform:matrix(0.437915,0.016219,-0.009253,0.249829,0,0);-ms-transform:matrix(0.437915,0.016219,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.437915,0.016219,-0.009253,0.249829,0,0);}
.m119_c00292{transform:matrix(0.438161,0.015790,-0.009003,0.249838,0,0);-ms-transform:matrix(0.438161,0.015790,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.438161,0.015790,-0.009003,0.249838,0,0);}
.m4_c00292{transform:matrix(0.438395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438395,0.000000,0.000000,0.250000,0,0);}
.ma3_c00292{transform:matrix(0.449654,0.014403,-0.008004,0.249872,0,0);-ms-transform:matrix(0.449654,0.014403,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.449654,0.014403,-0.008004,0.249872,0,0);}
.mb7_c00292{transform:matrix(0.470886,0.009418,-0.004999,0.249950,0,0);-ms-transform:matrix(0.470886,0.009418,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.470886,0.009418,-0.004999,0.249950,0,0);}
.m133_c00292{transform:matrix(0.475854,0.017624,-0.009253,0.249829,0,0);-ms-transform:matrix(0.475854,0.017624,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.475854,0.017624,-0.009253,0.249829,0,0);}
.m28_c00292{transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);}
.mef_c00292{transform:matrix(0.479390,0.014861,-0.007746,0.249880,0,0);-ms-transform:matrix(0.479390,0.014861,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.479390,0.014861,-0.007746,0.249880,0,0);}
.m141_c00292{transform:matrix(0.480519,0.015392,-0.008004,0.249872,0,0);-ms-transform:matrix(0.480519,0.015392,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.480519,0.015392,-0.008004,0.249872,0,0);}
.m134_c00292{transform:matrix(0.487576,0.018058,-0.009253,0.249829,0,0);-ms-transform:matrix(0.487576,0.018058,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.487576,0.018058,-0.009253,0.249829,0,0);}
.m5_c00292{transform:matrix(0.526130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526130,0.000000,0.000000,0.250000,0,0);}
.m10d_c00292{transform:matrix(0.536847,0.016642,-0.007746,0.249880,0,0);-ms-transform:matrix(0.536847,0.016642,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.536847,0.016642,-0.007746,0.249880,0,0);}
.m143_c00292{transform:matrix(0.542707,0.017384,-0.008004,0.249872,0,0);-ms-transform:matrix(0.542707,0.017384,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.542707,0.017384,-0.008004,0.249872,0,0);}
.m147_c00292{transform:matrix(0.546105,0.017493,-0.008004,0.249872,0,0);-ms-transform:matrix(0.546105,0.017493,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.546105,0.017493,-0.008004,0.249872,0,0);}
.ma5_c00292{transform:matrix(0.659198,0.020435,-0.007746,0.249880,0,0);-ms-transform:matrix(0.659198,0.020435,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.659198,0.020435,-0.007746,0.249880,0,0);}
.mf0_c00292{transform:matrix(0.734467,0.022768,-0.007746,0.249880,0,0);-ms-transform:matrix(0.734467,0.022768,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.734467,0.022768,-0.007746,0.249880,0,0);}
.ma2_c00292{transform:matrix(0.750345,0.024035,-0.008004,0.249872,0,0);-ms-transform:matrix(0.750345,0.024035,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.750345,0.024035,-0.008004,0.249872,0,0);}
.m99_c00292{transform:matrix(0.754843,0.024179,-0.008004,0.249872,0,0);-ms-transform:matrix(0.754843,0.024179,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.754843,0.024179,-0.008004,0.249872,0,0);}
.m124_c00292{transform:matrix(0.856809,0.030876,-0.009003,0.249838,0,0);-ms-transform:matrix(0.856809,0.030876,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.856809,0.030876,-0.009003,0.249838,0,0);}
.m11d_c00292{transform:matrix(0.958713,0.034548,-0.009003,0.249838,0,0);-ms-transform:matrix(0.958713,0.034548,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.958713,0.034548,-0.009003,0.249838,0,0);}
.ma8_c00292{transform:matrix(1.160083,0.035963,-0.007746,0.249880,0,0);-ms-transform:matrix(1.160083,0.035963,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.160083,0.035963,-0.007746,0.249880,0,0);}
.m6a_c00292{transform:matrix(1.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.191655,0.000000,0.000000,0.250000,0,0);}
.me3_c00292{transform:matrix(1.551929,0.048110,-0.007746,0.249880,0,0);-ms-transform:matrix(1.551929,0.048110,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.551929,0.048110,-0.007746,0.249880,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:transparent;}
.fsd_c00292{font-size:19.940272px;}
.fse_c00292{font-size:21.010088px;}
.fs1c_c00292{font-size:24.141510px;}
.fs20_c00292{font-size:31.484640px;}
.fs1a_c00292{font-size:33.588188px;}
.fs16_c00292{font-size:33.616141px;}
.fs11_c00292{font-size:42.008399px;}
.fs1e_c00292{font-size:43.036437px;}
.fs19_c00292{font-size:44.121185px;}
.fs1d_c00292{font-size:51.431912px;}
.fs10_c00292{font-size:54.610919px;}
.fs12_c00292{font-size:59.878751px;}
.fs1b_c00292{font-size:60.878590px;}
.fs5_c00292{font-size:60.900000px;}
.fs21_c00292{font-size:61.919792px;}
.fs7_c00292{font-size:61.950000px;}
.fs18_c00292{font-size:61.979760px;}
.fs9_c00292{font-size:63.000000px;}
.fs0_c00292{font-size:64.050000px;}
.fs4_c00292{font-size:65.100000px;}
.fs15_c00292{font-size:65.131273px;}
.fs1f_c00292{font-size:66.129159px;}
.fs3_c00292{font-size:66.150000px;}
.fsc_c00292{font-size:67.167232px;}
.fs8_c00292{font-size:67.200000px;}
.fs6_c00292{font-size:68.250000px;}
.fs14_c00292{font-size:68.282786px;}
.fsb_c00292{font-size:69.300000px;}
.fsa_c00292{font-size:70.350000px;}
.fs17_c00292{font-size:70.383795px;}
.fs2_c00292{font-size:71.400000px;}
.fs13_c00292{font-size:72.484804px;}
.fs1_c00292{font-size:73.500000px;}
.fsf_c00292{font-size:74.585813px;}
.y0_c00292{bottom:0.000000px;}
.y14d_c00292{bottom:11.557639px;}
.y14c_c00292{bottom:14.371224px;}
.y148_c00292{bottom:17.464644px;}
.y147_c00292{bottom:18.431844px;}
.y14b_c00292{bottom:19.878528px;}
.y14a_c00292{bottom:20.447432px;}
.y149_c00292{bottom:21.881490px;}
.y145_c00292{bottom:24.197452px;}
.y146_c00292{bottom:24.304500px;}
.y144_c00292{bottom:26.178525px;}
.y143_c00292{bottom:26.935822px;}
.y142_c00292{bottom:27.577125px;}
.y141_c00292{bottom:29.416784px;}
.y140_c00292{bottom:31.146940px;}
.y13f_c00292{bottom:31.835251px;}
.y13e_c00292{bottom:33.501584px;}
.y13d_c00292{bottom:34.319765px;}
.y13c_c00292{bottom:35.056694px;}
.y13b_c00292{bottom:36.358224px;}
.y13a_c00292{bottom:38.866935px;}
.y137_c00292{bottom:39.534930px;}
.y136_c00292{bottom:41.243922px;}
.y139_c00292{bottom:42.384692px;}
.y138_c00292{bottom:44.019000px;}
.y135_c00292{bottom:44.472393px;}
.y134_c00292{bottom:45.142844px;}
.y133_c00292{bottom:48.221303px;}
.y132_c00292{bottom:49.543817px;}
.y130_c00292{bottom:51.663276px;}
.y131_c00292{bottom:52.406613px;}
.y12f_c00292{bottom:52.481322px;}
.y12e_c00292{bottom:54.589914px;}
.y12d_c00292{bottom:55.393380px;}
.y12c_c00292{bottom:56.137230px;}
.y12b_c00292{bottom:57.882888px;}
.y12a_c00292{bottom:59.404500px;}
.y129_c00292{bottom:60.127682px;}
.y128_c00292{bottom:61.658312px;}
.y127_c00292{bottom:62.203658px;}
.y126_c00292{bottom:64.399298px;}
.y125_c00292{bottom:65.406398px;}
.y124_c00292{bottom:67.520930px;}
.y123_c00292{bottom:69.138662px;}
.y122_c00292{bottom:69.634746px;}
.y121_c00292{bottom:70.041312px;}
.y120_c00292{bottom:70.974162px;}
.y11f_c00292{bottom:72.006588px;}
.y11e_c00292{bottom:73.067148px;}
.y11d_c00292{bottom:75.251340px;}
.y11c_c00292{bottom:76.684500px;}
.y11b_c00292{bottom:77.636958px;}
.y11a_c00292{bottom:78.375046px;}
.y119_c00292{bottom:79.253935px;}
.y118_c00292{bottom:80.447511px;}
.y117_c00292{bottom:81.573906px;}
.y116_c00292{bottom:82.391904px;}
.y115_c00292{bottom:83.045560px;}
.y114_c00292{bottom:84.022029px;}
.y111_c00292{bottom:84.620263px;}
.y113_c00292{bottom:84.658446px;}
.y110_c00292{bottom:85.135576px;}
.y112_c00292{bottom:85.810450px;}
.y10f_c00292{bottom:86.553826px;}
.y10e_c00292{bottom:88.833024px;}
.y10d_c00292{bottom:89.749306px;}
.y10c_c00292{bottom:90.723993px;}
.y10b_c00292{bottom:91.534720px;}
.y108_c00292{bottom:91.889772px;}
.y10a_c00292{bottom:92.214690px;}
.y107_c00292{bottom:92.267334px;}
.y109_c00292{bottom:93.372028px;}
.y106_c00292{bottom:93.623413px;}
.y105_c00292{bottom:94.300174px;}
.y104_c00292{bottom:95.276646px;}
.y103_c00292{bottom:96.795937px;}
.y102_c00292{bottom:97.434360px;}
.y101_c00292{bottom:98.834869px;}
.y100_c00292{bottom:99.872685px;}
.yff_c00292{bottom:112.688293px;}
.yfe_c00292{bottom:113.108937px;}
.yfd_c00292{bottom:114.468922px;}
.yfc_c00292{bottom:116.600283px;}
.yfb_c00292{bottom:117.093604px;}
.yfa_c00292{bottom:117.856900px;}
.yf9_c00292{bottom:118.847694px;}
.yf8_c00292{bottom:119.304258px;}
.yf7_c00292{bottom:119.503851px;}
.yf6_c00292{bottom:120.652101px;}
.yf5_c00292{bottom:123.263542px;}
.yf4_c00292{bottom:124.964196px;}
.yf3_c00292{bottom:125.751981px;}
.yf2_c00292{bottom:126.058657px;}
.yf1_c00292{bottom:127.789028px;}
.yf0_c00292{bottom:129.526407px;}
.yef_c00292{bottom:130.308795px;}
.yee_c00292{bottom:131.387462px;}
.yed_c00292{bottom:132.821553px;}
.yec_c00292{bottom:134.336389px;}
.yeb_c00292{bottom:134.932375px;}
.yea_c00292{bottom:135.784454px;}
.ye9_c00292{bottom:135.824391px;}
.ye8_c00292{bottom:137.408753px;}
.ye7_c00292{bottom:141.728228px;}
.ye6_c00292{bottom:145.049906px;}
.ye5_c00292{bottom:145.841594px;}
.ye4_c00292{bottom:146.894895px;}
.ye3_c00292{bottom:147.437175px;}
.ye2_c00292{bottom:148.911871px;}
.ye1_c00292{bottom:149.297823px;}
.ye0_c00292{bottom:150.394705px;}
.ydf_c00292{bottom:151.680907px;}
.yde_c00292{bottom:151.975000px;}
.ydd_c00292{bottom:153.081543px;}
.ydc_c00292{bottom:165.122118px;}
.ydb_c00292{bottom:165.533015px;}
.yda_c00292{bottom:166.471803px;}
.yd9_c00292{bottom:167.360131px;}
.yd8_c00292{bottom:167.846002px;}
.yd7_c00292{bottom:168.994244px;}
.yd6_c00292{bottom:169.591880px;}
.yd5_c00292{bottom:170.189515px;}
.yd4_c00292{bottom:170.606120px;}
.yd3_c00292{bottom:171.177555px;}
.yd2_c00292{bottom:179.965236px;}
.yd1_c00292{bottom:182.302187px;}
.yd0_c00292{bottom:182.869533px;}
.ycf_c00292{bottom:183.750801px;}
.yce_c00292{bottom:184.804910px;}
.ycd_c00292{bottom:185.039176px;}
.ycc_c00292{bottom:185.910773px;}
.yc9_c00292{bottom:186.810450px;}
.ycb_c00292{bottom:187.197846px;}
.yc8_c00292{bottom:187.376280px;}
.yca_c00292{bottom:187.651500px;}
.yc7_c00292{bottom:189.088860px;}
.yc6_c00292{bottom:189.809490px;}
.yc5_c00292{bottom:198.495900px;}
.yc4_c00292{bottom:199.187280px;}
.yc3_c00292{bottom:199.668330px;}
.yc2_c00292{bottom:200.219550px;}
.yc1_c00292{bottom:201.143730px;}
.yc0_c00292{bottom:201.483960px;}
.ybf_c00292{bottom:202.141980px;}
.ybe_c00292{bottom:202.531350px;}
.ybd_c00292{bottom:203.353620px;}
.ybc_c00292{bottom:203.516790px;}
.ybb_c00292{bottom:204.126000px;}
.yba_c00292{bottom:212.885597px;}
.yb9_c00292{bottom:216.007134px;}
.yb8_c00292{bottom:217.694081px;}
.yb7_c00292{bottom:218.369931px;}
.yb6_c00292{bottom:219.896956px;}
.yb5_c00292{bottom:220.935384px;}
.yb4_c00292{bottom:221.766819px;}
.yb1_c00292{bottom:222.415821px;}
.yb0_c00292{bottom:222.777638px;}
.yb3_c00292{bottom:223.085550px;}
.yaf_c00292{bottom:223.205344px;}
.yb2_c00292{bottom:223.558314px;}
.yae_c00292{bottom:223.640910px;}
.yad_c00292{bottom:224.192540px;}
.ya7_c00292{bottom:224.751411px;}
.ya6_c00292{bottom:225.477786px;}
.ya5_c00292{bottom:225.681511px;}
.yac_c00292{bottom:225.943637px;}
.yab_c00292{bottom:226.463646px;}
.ya4_c00292{bottom:226.613820px;}
.yaa_c00292{bottom:227.055824px;}
.ya9_c00292{bottom:229.721901px;}
.ya3_c00292{bottom:230.140768px;}
.ya8_c00292{bottom:230.581500px;}
.y9c_c00292{bottom:230.902140px;}
.ya2_c00292{bottom:230.919074px;}
.y9b_c00292{bottom:231.381228px;}
.ya1_c00292{bottom:232.282038px;}
.y9a_c00292{bottom:233.424012px;}
.ya0_c00292{bottom:233.887207px;}
.y99_c00292{bottom:233.958876px;}
.y9f_c00292{bottom:234.343372px;}
.y9e_c00292{bottom:234.947061px;}
.y9d_c00292{bottom:235.445354px;}
.y98_c00292{bottom:236.060652px;}
.y97_c00292{bottom:237.617532px;}
.y96_c00292{bottom:239.233500px;}
.y95_c00292{bottom:246.828000px;}
.y94_c00292{bottom:247.345500px;}
.y93_c00292{bottom:249.885000px;}
.y92_c00292{bottom:250.302000px;}
.y91_c00292{bottom:252.340500px;}
.y90_c00292{bottom:254.226000px;}
.y8f_c00292{bottom:255.651000px;}
.y8e_c00292{bottom:256.234500px;}
.y8d_c00292{bottom:266.031000px;}
.y8c_c00292{bottom:266.617500px;}
.y8b_c00292{bottom:269.779500px;}
.y8a_c00292{bottom:271.456500px;}
.y89_c00292{bottom:272.314500px;}
.y88_c00292{bottom:274.057500px;}
.y87_c00292{bottom:282.237000px;}
.y86_c00292{bottom:284.734500px;}
.y85_c00292{bottom:285.718500px;}
.y84_c00292{bottom:286.435500px;}
.y83_c00292{bottom:288.952500px;}
.y82_c00292{bottom:290.157000px;}
.y81_c00292{bottom:290.778000px;}
.y80_c00292{bottom:292.149000px;}
.y7f_c00292{bottom:300.319500px;}
.y7e_c00292{bottom:302.643000px;}
.y7d_c00292{bottom:303.049500px;}
.y7c_c00292{bottom:304.950000px;}
.y7b_c00292{bottom:306.616500px;}
.y7a_c00292{bottom:307.548000px;}
.y79_c00292{bottom:308.170500px;}
.y78_c00292{bottom:309.154500px;}
.y77_c00292{bottom:318.381000px;}
.y76_c00292{bottom:319.168500px;}
.y75_c00292{bottom:320.116500px;}
.y74_c00292{bottom:320.758500px;}
.y73_c00292{bottom:321.801000px;}
.y72_c00292{bottom:322.530000px;}
.y71_c00292{bottom:323.406000px;}
.y70_c00292{bottom:323.952000px;}
.y6f_c00292{bottom:325.081500px;}
.y6e_c00292{bottom:334.530000px;}
.y6d_c00292{bottom:336.040500px;}
.y6c_c00292{bottom:336.337500px;}
.y6b_c00292{bottom:337.899000px;}
.y6a_c00292{bottom:338.136000px;}
.y69_c00292{bottom:339.009000px;}
.y68_c00292{bottom:339.699000px;}
.y67_c00292{bottom:340.738500px;}
.y66_c00292{bottom:352.134000px;}
.y65_c00292{bottom:352.539000px;}
.y64_c00292{bottom:353.908500px;}
.y63_c00292{bottom:355.833000px;}
.y62_c00292{bottom:356.250000px;}
.y61_c00292{bottom:357.846000px;}
.y60_c00292{bottom:358.566000px;}
.y5f_c00292{bottom:366.885000px;}
.y5e_c00292{bottom:368.547000px;}
.y5d_c00292{bottom:369.133500px;}
.y5c_c00292{bottom:369.633000px;}
.y5b_c00292{bottom:370.086000px;}
.y5a_c00292{bottom:370.797000px;}
.y59_c00292{bottom:372.624000px;}
.y58_c00292{bottom:373.212000px;}
.y57_c00292{bottom:373.953000px;}
.y56_c00292{bottom:383.578500px;}
.y55_c00292{bottom:384.288000px;}
.y54_c00292{bottom:385.767000px;}
.y53_c00292{bottom:386.260500px;}
.y52_c00292{bottom:386.590500px;}
.y51_c00292{bottom:387.901500px;}
.y50_c00292{bottom:388.366500px;}
.y4f_c00292{bottom:389.614500px;}
.y4e_c00292{bottom:390.399000px;}
.y4d_c00292{bottom:390.690000px;}
.y4c_c00292{bottom:401.908500px;}
.y4b_c00292{bottom:403.014000px;}
.y4a_c00292{bottom:404.806500px;}
.y49_c00292{bottom:406.350000px;}
.y48_c00292{bottom:407.458500px;}
.y47_c00292{bottom:408.094500px;}
.y46_c00292{bottom:409.870500px;}
.y45_c00292{bottom:419.313000px;}
.y44_c00292{bottom:420.066000px;}
.y43_c00292{bottom:421.438500px;}
.y42_c00292{bottom:422.335500px;}
.y41_c00292{bottom:424.108500px;}
.y40_c00292{bottom:425.196000px;}
.y3f_c00292{bottom:425.730000px;}
.y3e_c00292{bottom:426.877500px;}
.y3d_c00292{bottom:434.532000px;}
.y3c_c00292{bottom:436.746000px;}
.y3b_c00292{bottom:438.057000px;}
.y3a_c00292{bottom:438.519000px;}
.y39_c00292{bottom:439.999500px;}
.y38_c00292{bottom:441.735000px;}
.y37_c00292{bottom:451.767000px;}
.y36_c00292{bottom:452.781000px;}
.y35_c00292{bottom:454.617000px;}
.y34_c00292{bottom:455.110500px;}
.y33_c00292{bottom:456.109500px;}
.y32_c00292{bottom:456.723000px;}
.y31_c00292{bottom:457.222500px;}
.y30_c00292{bottom:458.737500px;}
.y2f_c00292{bottom:468.612000px;}
.y2e_c00292{bottom:470.452500px;}
.y2d_c00292{bottom:470.959500px;}
.y2c_c00292{bottom:472.212000px;}
.y2b_c00292{bottom:473.275500px;}
.y2a_c00292{bottom:474.079500px;}
.y29_c00292{bottom:475.467000px;}
.y28_c00292{bottom:476.338500px;}
.y27_c00292{bottom:477.097500px;}
.y26_c00292{bottom:485.886000px;}
.y25_c00292{bottom:486.826500px;}
.y24_c00292{bottom:487.531500px;}
.y23_c00292{bottom:488.731500px;}
.y22_c00292{bottom:489.120000px;}
.y21_c00292{bottom:490.675500px;}
.y20_c00292{bottom:492.217500px;}
.y1f_c00292{bottom:503.031000px;}
.y1e_c00292{bottom:503.880000px;}
.y1d_c00292{bottom:505.576500px;}
.y1c_c00292{bottom:506.185500px;}
.y1b_c00292{bottom:507.283500px;}
.y1a_c00292{bottom:507.843000px;}
.y19_c00292{bottom:508.923000px;}
.y18_c00292{bottom:509.493000px;}
.y17_c00292{bottom:520.686000px;}
.y16_c00292{bottom:521.059500px;}
.y15_c00292{bottom:522.345000px;}
.y14_c00292{bottom:523.111500px;}
.y13_c00292{bottom:523.894500px;}
.y12_c00292{bottom:525.363000px;}
.y11_c00292{bottom:525.961500px;}
.y10_c00292{bottom:539.371500px;}
.yf_c00292{bottom:539.919000px;}
.ye_c00292{bottom:540.340500px;}
.yd_c00292{bottom:541.861500px;}
.yc_c00292{bottom:542.148000px;}
.yb_c00292{bottom:543.342000px;}
.ya_c00292{bottom:544.053000px;}
.y9_c00292{bottom:555.955500px;}
.y8_c00292{bottom:556.312500px;}
.y7_c00292{bottom:556.885500px;}
.y6_c00292{bottom:557.544000px;}
.y5_c00292{bottom:558.975000px;}
.y4_c00292{bottom:559.824000px;}
.y3_c00292{bottom:560.433000px;}
.y2_c00292{bottom:561.607500px;}
.y1_c00292{bottom:575.098500px;}
.hf_c00292{height:19.940272px;}
.h10_c00292{height:21.010088px;}
.h1e_c00292{height:24.141510px;}
.h22_c00292{height:31.484640px;}
.h1c_c00292{height:33.588188px;}
.h18_c00292{height:33.616141px;}
.h13_c00292{height:42.008399px;}
.h20_c00292{height:43.036437px;}
.h1b_c00292{height:44.121185px;}
.h1f_c00292{height:51.431912px;}
.h12_c00292{height:54.610919px;}
.h14_c00292{height:59.878751px;}
.h1d_c00292{height:60.878590px;}
.h7_c00292{height:60.900000px;}
.h23_c00292{height:61.919792px;}
.h9_c00292{height:61.950000px;}
.h1a_c00292{height:61.979760px;}
.hb_c00292{height:63.000000px;}
.h2_c00292{height:64.050000px;}
.h6_c00292{height:65.100000px;}
.h17_c00292{height:65.131273px;}
.h21_c00292{height:66.129159px;}
.h5_c00292{height:66.150000px;}
.he_c00292{height:67.167232px;}
.ha_c00292{height:67.200000px;}
.h8_c00292{height:68.250000px;}
.h16_c00292{height:68.282786px;}
.hd_c00292{height:69.300000px;}
.hc_c00292{height:70.350000px;}
.h19_c00292{height:70.383795px;}
.h4_c00292{height:71.400000px;}
.h15_c00292{height:72.484804px;}
.h3_c00292{height:73.500000px;}
.h11_c00292{height:74.585813px;}
.h1_c00292{height:618.750000px;}
.h0_c00292{height:619.050000px;}
.w0_c00292{width:359.100000px;}
.w1_c00292{width:359.250000px;}
.x0_c00292{left:0.000000px;}
.x81_c00292{left:17.078544px;}
.x2_c00292{left:20.727000px;}
.x62_c00292{left:22.590000px;}
.x32_c00292{left:23.692500px;}
.x3a_c00292{left:25.258500px;}
.x5a_c00292{left:26.566500px;}
.x11_c00292{left:27.804000px;}
.xa_c00292{left:30.012000px;}
.x18_c00292{left:31.867500px;}
.x7c_c00292{left:34.131360px;}
.x3f_c00292{left:37.428000px;}
.x76_c00292{left:39.374877px;}
.x63_c00292{left:40.845000px;}
.x87_c00292{left:42.072424px;}
.x26_c00292{left:54.450000px;}
.x19_c00292{left:56.664000px;}
.x12_c00292{left:57.756000px;}
.x73_c00292{left:60.177000px;}
.xb_c00292{left:62.343000px;}
.x5b_c00292{left:64.645500px;}
.x36_c00292{left:65.830500px;}
.x4f_c00292{left:67.711500px;}
.x40_c00292{left:68.802000px;}
.x6d_c00292{left:69.845348px;}
.x56_c00292{left:73.056000px;}
.x3_c00292{left:74.092500px;}
.x5f_c00292{left:75.378000px;}
.x69_c00292{left:76.503501px;}
.x43_c00292{left:77.712000px;}
.x97_c00292{left:80.863130px;}
.x27_c00292{left:82.545000px;}
.x64_c00292{left:85.384500px;}
.x50_c00292{left:87.918000px;}
.x2c_c00292{left:91.767000px;}
.x33_c00292{left:93.141000px;}
.x20_c00292{left:96.054000px;}
.x7d_c00292{left:99.128262px;}
.x4_c00292{left:101.776500px;}
.x1a_c00292{left:103.638000px;}
.x4c_c00292{left:106.404000px;}
.x89_c00292{left:109.387876px;}
.x2d_c00292{left:111.735000px;}
.x6e_c00292{left:114.384047px;}
.x5c_c00292{left:115.389000px;}
.xc_c00292{left:116.592000px;}
.x37_c00292{left:118.161000px;}
.x51_c00292{left:120.352500px;}
.x77_c00292{left:123.295196px;}
.x6a_c00292{left:125.107349px;}
.x1b_c00292{left:127.956000px;}
.xd_c00292{left:129.588000px;}
.x13_c00292{left:131.205000px;}
.x82_c00292{left:132.402922px;}
.x49_c00292{left:134.736000px;}
.x2e_c00292{left:136.303500px;}
.x41_c00292{left:137.325000px;}
.x3b_c00292{left:138.825000px;}
.x5_c00292{left:140.335500px;}
.x65_c00292{left:144.304500px;}
.x4d_c00292{left:146.104500px;}
.x52_c00292{left:147.348000px;}
.x8b_c00292{left:148.786194px;}
.x44_c00292{left:150.802500px;}
.x6f_c00292{left:152.204336px;}
.x28_c00292{left:153.217500px;}
.x57_c00292{left:154.285500px;}
.x4e_c00292{left:156.888000px;}
.x7b_c00292{left:158.541000px;}
.x21_c00292{left:160.855500px;}
.x90_c00292{left:162.410457px;}
.x78_c00292{left:163.497000px;}
.x92_c00292{left:166.121242px;}
.x14_c00292{left:170.361000px;}
.x1_c00292{left:171.450000px;}
.x70_c00292{left:173.785945px;}
.x1c_c00292{left:175.726500px;}
.x22_c00292{left:177.052500px;}
.x45_c00292{left:179.229000px;}
.x79_c00292{left:181.278640px;}
.x83_c00292{left:183.604165px;}
.x53_c00292{left:185.980500px;}
.x29_c00292{left:187.516500px;}
.x3c_c00292{left:188.601000px;}
.x42_c00292{left:189.766500px;}
.x74_c00292{left:193.011000px;}
.x2f_c00292{left:195.984000px;}
.x46_c00292{left:197.334000px;}
.xe_c00292{left:198.693000px;}
.x95_c00292{left:201.106911px;}
.x1d_c00292{left:202.185000px;}
.x38_c00292{left:204.316500px;}
.x6_c00292{left:205.368000px;}
.x6b_c00292{left:207.419953px;}
.x15_c00292{left:208.717500px;}
.x54_c00292{left:209.737500px;}
.x4a_c00292{left:211.698000px;}
.x58_c00292{left:213.676500px;}
.xf_c00292{left:217.860000px;}
.x66_c00292{left:221.001000px;}
.x84_c00292{left:222.129246px;}
.x34_c00292{left:223.246500px;}
.x7a_c00292{left:225.670515px;}
.x23_c00292{left:227.058000px;}
.x7f_c00292{left:228.185530px;}
.x96_c00292{left:230.911452px;}
.x5d_c00292{left:232.552500px;}
.x7_c00292{left:235.270500px;}
.x91_c00292{left:238.472819px;}
.x47_c00292{left:240.790500px;}
.x10_c00292{left:242.718000px;}
.x2a_c00292{left:244.245000px;}
.x3d_c00292{left:246.400500px;}
.x80_c00292{left:247.567344px;}
.x39_c00292{left:248.571000px;}
.x85_c00292{left:250.079850px;}
.x8c_c00292{left:251.866194px;}
.x60_c00292{left:253.384500px;}
.x88_c00292{left:254.421037px;}
.x24_c00292{left:256.458000px;}
.x8f_c00292{left:258.665173px;}
.x8_c00292{left:261.334500px;}
.x4b_c00292{left:266.487000px;}
.x93_c00292{left:267.572689px;}
.x30_c00292{left:269.398500px;}
.x61_c00292{left:271.725000px;}
.x16_c00292{left:272.968500px;}
.x55_c00292{left:273.981000px;}
.x1e_c00292{left:275.974500px;}
.x9_c00292{left:277.567500px;}
.x86_c00292{left:278.572804px;}
.x8e_c00292{left:280.019925px;}
.x3e_c00292{left:282.081000px;}
.x75_c00292{left:284.067000px;}
.x6c_c00292{left:286.149645px;}
.x8a_c00292{left:287.544897px;}
.x94_c00292{left:290.273466px;}
.x17_c00292{left:291.612000px;}
.x7e_c00292{left:293.442889px;}
.x25_c00292{left:295.624500px;}
.x71_c00292{left:297.544707px;}
.x59_c00292{left:298.969500px;}
.x67_c00292{left:300.378000px;}
.x5e_c00292{left:301.930500px;}
.x2b_c00292{left:303.637500px;}
.x48_c00292{left:307.243500px;}
.x31_c00292{left:309.934500px;}
.x35_c00292{left:311.826000px;}
.x1f_c00292{left:312.913500px;}
.x8d_c00292{left:314.239194px;}
.x68_c00292{left:316.536000px;}
.x98_c00292{left:320.927886px;}
.x72_c00292{left:323.350061px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fsd_c00292{font-size:17.724686pt;}
.fse_c00292{font-size:18.675634pt;}
.fs1c_c00292{font-size:21.459120pt;}
.fs20_c00292{font-size:27.986347pt;}
.fs1a_c00292{font-size:29.856167pt;}
.fs16_c00292{font-size:29.881014pt;}
.fs11_c00292{font-size:37.340799pt;}
.fs1e_c00292{font-size:38.254611pt;}
.fs19_c00292{font-size:39.218831pt;}
.fs1d_c00292{font-size:45.717255pt;}
.fs10_c00292{font-size:48.543039pt;}
.fs12_c00292{font-size:53.225556pt;}
.fs1b_c00292{font-size:54.114302pt;}
.fs5_c00292{font-size:54.133333pt;}
.fs21_c00292{font-size:55.039815pt;}
.fs7_c00292{font-size:55.066667pt;}
.fs18_c00292{font-size:55.093120pt;}
.fs9_c00292{font-size:56.000000pt;}
.fs0_c00292{font-size:56.933333pt;}
.fs4_c00292{font-size:57.866667pt;}
.fs15_c00292{font-size:57.894465pt;}
.fs1f_c00292{font-size:58.781475pt;}
.fs3_c00292{font-size:58.800000pt;}
.fsc_c00292{font-size:59.704206pt;}
.fs8_c00292{font-size:59.733333pt;}
.fs6_c00292{font-size:60.666667pt;}
.fs14_c00292{font-size:60.695810pt;}
.fsb_c00292{font-size:61.600000pt;}
.fsa_c00292{font-size:62.533333pt;}
.fs17_c00292{font-size:62.563373pt;}
.fs2_c00292{font-size:63.466667pt;}
.fs13_c00292{font-size:64.430937pt;}
.fs1_c00292{font-size:65.333333pt;}
.fsf_c00292{font-size:66.298500pt;}
.y0_c00292{bottom:0.000000pt;}
.y14d_c00292{bottom:10.273457pt;}
.y14c_c00292{bottom:12.774421pt;}
.y148_c00292{bottom:15.524128pt;}
.y147_c00292{bottom:16.383861pt;}
.y14b_c00292{bottom:17.669803pt;}
.y14a_c00292{bottom:18.175495pt;}
.y149_c00292{bottom:19.450213pt;}
.y145_c00292{bottom:21.508847pt;}
.y146_c00292{bottom:21.604000pt;}
.y144_c00292{bottom:23.269800pt;}
.y143_c00292{bottom:23.942953pt;}
.y142_c00292{bottom:24.513000pt;}
.y141_c00292{bottom:26.148252pt;}
.y140_c00292{bottom:27.686169pt;}
.y13f_c00292{bottom:28.298001pt;}
.y13e_c00292{bottom:29.779185pt;}
.y13d_c00292{bottom:30.506457pt;}
.y13c_c00292{bottom:31.161505pt;}
.y13b_c00292{bottom:32.318421pt;}
.y13a_c00292{bottom:34.548387pt;}
.y137_c00292{bottom:35.142160pt;}
.y136_c00292{bottom:36.661264pt;}
.y139_c00292{bottom:37.675281pt;}
.y138_c00292{bottom:39.128000pt;}
.y135_c00292{bottom:39.531016pt;}
.y134_c00292{bottom:40.126972pt;}
.y133_c00292{bottom:42.863380pt;}
.y132_c00292{bottom:44.038948pt;}
.y130_c00292{bottom:45.922912pt;}
.y131_c00292{bottom:46.583656pt;}
.y12f_c00292{bottom:46.650064pt;}
.y12e_c00292{bottom:48.524368pt;}
.y12d_c00292{bottom:49.238560pt;}
.y12c_c00292{bottom:49.899760pt;}
.y12b_c00292{bottom:51.451456pt;}
.y12a_c00292{bottom:52.804000pt;}
.y129_c00292{bottom:53.446828pt;}
.y128_c00292{bottom:54.807388pt;}
.y127_c00292{bottom:55.292140pt;}
.y126_c00292{bottom:57.243820pt;}
.y125_c00292{bottom:58.139020pt;}
.y124_c00292{bottom:60.018604pt;}
.y123_c00292{bottom:61.456588pt;}
.y122_c00292{bottom:61.897552pt;}
.y121_c00292{bottom:62.258944pt;}
.y120_c00292{bottom:63.088144pt;}
.y11f_c00292{bottom:64.005856pt;}
.y11e_c00292{bottom:64.948576pt;}
.y11d_c00292{bottom:66.890080pt;}
.y11c_c00292{bottom:68.164000pt;}
.y11b_c00292{bottom:69.010629pt;}
.y11a_c00292{bottom:69.666708pt;}
.y119_c00292{bottom:70.447943pt;}
.y118_c00292{bottom:71.508899pt;}
.y117_c00292{bottom:72.510139pt;}
.y116_c00292{bottom:73.237248pt;}
.y115_c00292{bottom:73.818276pt;}
.y114_c00292{bottom:74.686248pt;}
.y111_c00292{bottom:75.218012pt;}
.y113_c00292{bottom:75.251952pt;}
.y110_c00292{bottom:75.676068pt;}
.y112_c00292{bottom:76.275956pt;}
.y10f_c00292{bottom:76.936735pt;}
.y10e_c00292{bottom:78.962688pt;}
.y10d_c00292{bottom:79.777161pt;}
.y10c_c00292{bottom:80.643549pt;}
.y10b_c00292{bottom:81.364196pt;}
.y108_c00292{bottom:81.679797pt;}
.y10a_c00292{bottom:81.968613pt;}
.y107_c00292{bottom:82.015408pt;}
.y109_c00292{bottom:82.997359pt;}
.y106_c00292{bottom:83.220812pt;}
.y105_c00292{bottom:83.822377pt;}
.y104_c00292{bottom:84.690352pt;}
.y103_c00292{bottom:86.040833pt;}
.y102_c00292{bottom:86.608320pt;}
.y101_c00292{bottom:87.853217pt;}
.y100_c00292{bottom:88.775720pt;}
.yff_c00292{bottom:100.167372pt;}
.yfe_c00292{bottom:100.541277pt;}
.yfd_c00292{bottom:101.750153pt;}
.yfc_c00292{bottom:103.644696pt;}
.yfb_c00292{bottom:104.083204pt;}
.yfa_c00292{bottom:104.761689pt;}
.yf9_c00292{bottom:105.642395pt;}
.yf8_c00292{bottom:106.048229pt;}
.yf7_c00292{bottom:106.225645pt;}
.yf6_c00292{bottom:107.246312pt;}
.yf5_c00292{bottom:109.567593pt;}
.yf4_c00292{bottom:111.079285pt;}
.yf3_c00292{bottom:111.779539pt;}
.yf2_c00292{bottom:112.052140pt;}
.yf1_c00292{bottom:113.590247pt;}
.yf0_c00292{bottom:115.134584pt;}
.yef_c00292{bottom:115.830040pt;}
.yee_c00292{bottom:116.788855pt;}
.yed_c00292{bottom:118.063603pt;}
.yec_c00292{bottom:119.410124pt;}
.yeb_c00292{bottom:119.939889pt;}
.yea_c00292{bottom:120.697292pt;}
.ye9_c00292{bottom:120.732792pt;}
.ye8_c00292{bottom:122.141113pt;}
.ye7_c00292{bottom:125.980647pt;}
.ye6_c00292{bottom:128.933249pt;}
.ye5_c00292{bottom:129.636972pt;}
.ye4_c00292{bottom:130.573240pt;}
.ye3_c00292{bottom:131.055267pt;}
.ye2_c00292{bottom:132.366108pt;}
.ye1_c00292{bottom:132.709176pt;}
.ye0_c00292{bottom:133.684183pt;}
.ydf_c00292{bottom:134.827473pt;}
.yde_c00292{bottom:135.088889pt;}
.ydd_c00292{bottom:136.072483pt;}
.ydc_c00292{bottom:146.775216pt;}
.ydb_c00292{bottom:147.140457pt;}
.yda_c00292{bottom:147.974936pt;}
.yd9_c00292{bottom:148.764561pt;}
.yd8_c00292{bottom:149.196447pt;}
.yd7_c00292{bottom:150.217105pt;}
.yd6_c00292{bottom:150.748337pt;}
.yd5_c00292{bottom:151.279569pt;}
.yd4_c00292{bottom:151.649884pt;}
.yd3_c00292{bottom:152.157827pt;}
.yd2_c00292{bottom:159.969099pt;}
.yd1_c00292{bottom:162.046388pt;}
.yd0_c00292{bottom:162.550696pt;}
.ycf_c00292{bottom:163.334045pt;}
.yce_c00292{bottom:164.271031pt;}
.ycd_c00292{bottom:164.479268pt;}
.ycc_c00292{bottom:165.254020pt;}
.yc9_c00292{bottom:166.053733pt;}
.ycb_c00292{bottom:166.398085pt;}
.yc8_c00292{bottom:166.556693pt;}
.yca_c00292{bottom:166.801333pt;}
.yc7_c00292{bottom:168.078987pt;}
.yc6_c00292{bottom:168.719547pt;}
.yc5_c00292{bottom:176.440800pt;}
.yc4_c00292{bottom:177.055360pt;}
.yc3_c00292{bottom:177.482960pt;}
.yc2_c00292{bottom:177.972933pt;}
.yc1_c00292{bottom:178.794427pt;}
.yc0_c00292{bottom:179.096853pt;}
.ybf_c00292{bottom:179.681760pt;}
.ybe_c00292{bottom:180.027867pt;}
.ybd_c00292{bottom:180.758773pt;}
.ybc_c00292{bottom:180.903813pt;}
.ybb_c00292{bottom:181.445333pt;}
.yba_c00292{bottom:189.231641pt;}
.yb9_c00292{bottom:192.006341pt;}
.yb8_c00292{bottom:193.505849pt;}
.yb7_c00292{bottom:194.106605pt;}
.yb6_c00292{bottom:195.463961pt;}
.yb5_c00292{bottom:196.387008pt;}
.yb4_c00292{bottom:197.126061pt;}
.yb1_c00292{bottom:197.702952pt;}
.yb0_c00292{bottom:198.024567pt;}
.yb3_c00292{bottom:198.298267pt;}
.yaf_c00292{bottom:198.404751pt;}
.yb2_c00292{bottom:198.718501pt;}
.yae_c00292{bottom:198.791920pt;}
.yad_c00292{bottom:199.282257pt;}
.ya7_c00292{bottom:199.779032pt;}
.ya6_c00292{bottom:200.424699pt;}
.ya5_c00292{bottom:200.605788pt;}
.yac_c00292{bottom:200.838788pt;}
.yab_c00292{bottom:201.301019pt;}
.ya4_c00292{bottom:201.434507pt;}
.yaa_c00292{bottom:201.827399pt;}
.ya9_c00292{bottom:204.197245pt;}
.ya3_c00292{bottom:204.569572pt;}
.ya8_c00292{bottom:204.961333pt;}
.y9c_c00292{bottom:205.246347pt;}
.ya2_c00292{bottom:205.261399pt;}
.y9b_c00292{bottom:205.672203pt;}
.ya1_c00292{bottom:206.472923pt;}
.y9a_c00292{bottom:207.488011pt;}
.ya0_c00292{bottom:207.899740pt;}
.y99_c00292{bottom:207.963445pt;}
.y9f_c00292{bottom:208.305220pt;}
.y9e_c00292{bottom:208.841832pt;}
.y9d_c00292{bottom:209.284759pt;}
.y98_c00292{bottom:209.831691pt;}
.y97_c00292{bottom:211.215584pt;}
.y96_c00292{bottom:212.652000pt;}
.y95_c00292{bottom:219.402667pt;}
.y94_c00292{bottom:219.862667pt;}
.y93_c00292{bottom:222.120000pt;}
.y92_c00292{bottom:222.490667pt;}
.y91_c00292{bottom:224.302667pt;}
.y90_c00292{bottom:225.978667pt;}
.y8f_c00292{bottom:227.245333pt;}
.y8e_c00292{bottom:227.764000pt;}
.y8d_c00292{bottom:236.472000pt;}
.y8c_c00292{bottom:236.993333pt;}
.y8b_c00292{bottom:239.804000pt;}
.y8a_c00292{bottom:241.294667pt;}
.y89_c00292{bottom:242.057333pt;}
.y88_c00292{bottom:243.606667pt;}
.y87_c00292{bottom:250.877333pt;}
.y86_c00292{bottom:253.097333pt;}
.y85_c00292{bottom:253.972000pt;}
.y84_c00292{bottom:254.609333pt;}
.y83_c00292{bottom:256.846667pt;}
.y82_c00292{bottom:257.917333pt;}
.y81_c00292{bottom:258.469333pt;}
.y80_c00292{bottom:259.688000pt;}
.y7f_c00292{bottom:266.950667pt;}
.y7e_c00292{bottom:269.016000pt;}
.y7d_c00292{bottom:269.377333pt;}
.y7c_c00292{bottom:271.066667pt;}
.y7b_c00292{bottom:272.548000pt;}
.y7a_c00292{bottom:273.376000pt;}
.y79_c00292{bottom:273.929333pt;}
.y78_c00292{bottom:274.804000pt;}
.y77_c00292{bottom:283.005333pt;}
.y76_c00292{bottom:283.705333pt;}
.y75_c00292{bottom:284.548000pt;}
.y74_c00292{bottom:285.118667pt;}
.y73_c00292{bottom:286.045333pt;}
.y72_c00292{bottom:286.693333pt;}
.y71_c00292{bottom:287.472000pt;}
.y70_c00292{bottom:287.957333pt;}
.y6f_c00292{bottom:288.961333pt;}
.y6e_c00292{bottom:297.360000pt;}
.y6d_c00292{bottom:298.702667pt;}
.y6c_c00292{bottom:298.966667pt;}
.y6b_c00292{bottom:300.354667pt;}
.y6a_c00292{bottom:300.565333pt;}
.y69_c00292{bottom:301.341333pt;}
.y68_c00292{bottom:301.954667pt;}
.y67_c00292{bottom:302.878667pt;}
.y66_c00292{bottom:313.008000pt;}
.y65_c00292{bottom:313.368000pt;}
.y64_c00292{bottom:314.585333pt;}
.y63_c00292{bottom:316.296000pt;}
.y62_c00292{bottom:316.666667pt;}
.y61_c00292{bottom:318.085333pt;}
.y60_c00292{bottom:318.725333pt;}
.y5f_c00292{bottom:326.120000pt;}
.y5e_c00292{bottom:327.597333pt;}
.y5d_c00292{bottom:328.118667pt;}
.y5c_c00292{bottom:328.562667pt;}
.y5b_c00292{bottom:328.965333pt;}
.y5a_c00292{bottom:329.597333pt;}
.y59_c00292{bottom:331.221333pt;}
.y58_c00292{bottom:331.744000pt;}
.y57_c00292{bottom:332.402667pt;}
.y56_c00292{bottom:340.958667pt;}
.y55_c00292{bottom:341.589333pt;}
.y54_c00292{bottom:342.904000pt;}
.y53_c00292{bottom:343.342667pt;}
.y52_c00292{bottom:343.636000pt;}
.y51_c00292{bottom:344.801333pt;}
.y50_c00292{bottom:345.214667pt;}
.y4f_c00292{bottom:346.324000pt;}
.y4e_c00292{bottom:347.021333pt;}
.y4d_c00292{bottom:347.280000pt;}
.y4c_c00292{bottom:357.252000pt;}
.y4b_c00292{bottom:358.234667pt;}
.y4a_c00292{bottom:359.828000pt;}
.y49_c00292{bottom:361.200000pt;}
.y48_c00292{bottom:362.185333pt;}
.y47_c00292{bottom:362.750667pt;}
.y46_c00292{bottom:364.329333pt;}
.y45_c00292{bottom:372.722667pt;}
.y44_c00292{bottom:373.392000pt;}
.y43_c00292{bottom:374.612000pt;}
.y42_c00292{bottom:375.409333pt;}
.y41_c00292{bottom:376.985333pt;}
.y40_c00292{bottom:377.952000pt;}
.y3f_c00292{bottom:378.426667pt;}
.y3e_c00292{bottom:379.446667pt;}
.y3d_c00292{bottom:386.250667pt;}
.y3c_c00292{bottom:388.218667pt;}
.y3b_c00292{bottom:389.384000pt;}
.y3a_c00292{bottom:389.794667pt;}
.y39_c00292{bottom:391.110667pt;}
.y38_c00292{bottom:392.653333pt;}
.y37_c00292{bottom:401.570667pt;}
.y36_c00292{bottom:402.472000pt;}
.y35_c00292{bottom:404.104000pt;}
.y34_c00292{bottom:404.542667pt;}
.y33_c00292{bottom:405.430667pt;}
.y32_c00292{bottom:405.976000pt;}
.y31_c00292{bottom:406.420000pt;}
.y30_c00292{bottom:407.766667pt;}
.y2f_c00292{bottom:416.544000pt;}
.y2e_c00292{bottom:418.180000pt;}
.y2d_c00292{bottom:418.630667pt;}
.y2c_c00292{bottom:419.744000pt;}
.y2b_c00292{bottom:420.689333pt;}
.y2a_c00292{bottom:421.404000pt;}
.y29_c00292{bottom:422.637333pt;}
.y28_c00292{bottom:423.412000pt;}
.y27_c00292{bottom:424.086667pt;}
.y26_c00292{bottom:431.898667pt;}
.y25_c00292{bottom:432.734667pt;}
.y24_c00292{bottom:433.361333pt;}
.y23_c00292{bottom:434.428000pt;}
.y22_c00292{bottom:434.773333pt;}
.y21_c00292{bottom:436.156000pt;}
.y20_c00292{bottom:437.526667pt;}
.y1f_c00292{bottom:447.138667pt;}
.y1e_c00292{bottom:447.893333pt;}
.y1d_c00292{bottom:449.401333pt;}
.y1c_c00292{bottom:449.942667pt;}
.y1b_c00292{bottom:450.918667pt;}
.y1a_c00292{bottom:451.416000pt;}
.y19_c00292{bottom:452.376000pt;}
.y18_c00292{bottom:452.882667pt;}
.y17_c00292{bottom:462.832000pt;}
.y16_c00292{bottom:463.164000pt;}
.y15_c00292{bottom:464.306667pt;}
.y14_c00292{bottom:464.988000pt;}
.y13_c00292{bottom:465.684000pt;}
.y12_c00292{bottom:466.989333pt;}
.y11_c00292{bottom:467.521333pt;}
.y10_c00292{bottom:479.441333pt;}
.yf_c00292{bottom:479.928000pt;}
.ye_c00292{bottom:480.302667pt;}
.yd_c00292{bottom:481.654667pt;}
.yc_c00292{bottom:481.909333pt;}
.yb_c00292{bottom:482.970667pt;}
.ya_c00292{bottom:483.602667pt;}
.y9_c00292{bottom:494.182667pt;}
.y8_c00292{bottom:494.500000pt;}
.y7_c00292{bottom:495.009333pt;}
.y6_c00292{bottom:495.594667pt;}
.y5_c00292{bottom:496.866667pt;}
.y4_c00292{bottom:497.621333pt;}
.y3_c00292{bottom:498.162667pt;}
.y2_c00292{bottom:499.206667pt;}
.y1_c00292{bottom:511.198667pt;}
.hf_c00292{height:17.724686pt;}
.h10_c00292{height:18.675634pt;}
.h1e_c00292{height:21.459120pt;}
.h22_c00292{height:27.986347pt;}
.h1c_c00292{height:29.856167pt;}
.h18_c00292{height:29.881014pt;}
.h13_c00292{height:37.340799pt;}
.h20_c00292{height:38.254611pt;}
.h1b_c00292{height:39.218831pt;}
.h1f_c00292{height:45.717255pt;}
.h12_c00292{height:48.543039pt;}
.h14_c00292{height:53.225556pt;}
.h1d_c00292{height:54.114302pt;}
.h7_c00292{height:54.133333pt;}
.h23_c00292{height:55.039815pt;}
.h9_c00292{height:55.066667pt;}
.h1a_c00292{height:55.093120pt;}
.hb_c00292{height:56.000000pt;}
.h2_c00292{height:56.933333pt;}
.h6_c00292{height:57.866667pt;}
.h17_c00292{height:57.894465pt;}
.h21_c00292{height:58.781475pt;}
.h5_c00292{height:58.800000pt;}
.he_c00292{height:59.704206pt;}
.ha_c00292{height:59.733333pt;}
.h8_c00292{height:60.666667pt;}
.h16_c00292{height:60.695810pt;}
.hd_c00292{height:61.600000pt;}
.hc_c00292{height:62.533333pt;}
.h19_c00292{height:62.563373pt;}
.h4_c00292{height:63.466667pt;}
.h15_c00292{height:64.430937pt;}
.h3_c00292{height:65.333333pt;}
.h11_c00292{height:66.298500pt;}
.h1_c00292{height:550.000000pt;}
.h0_c00292{height:550.266667pt;}
.w0_c00292{width:319.200000pt;}
.w1_c00292{width:319.333333pt;}
.x0_c00292{left:0.000000pt;}
.x81_c00292{left:15.180928pt;}
.x2_c00292{left:18.424000pt;}
.x62_c00292{left:20.080000pt;}
.x32_c00292{left:21.060000pt;}
.x3a_c00292{left:22.452000pt;}
.x5a_c00292{left:23.614667pt;}
.x11_c00292{left:24.714667pt;}
.xa_c00292{left:26.677333pt;}
.x18_c00292{left:28.326667pt;}
.x7c_c00292{left:30.338987pt;}
.x3f_c00292{left:33.269333pt;}
.x76_c00292{left:34.999891pt;}
.x63_c00292{left:36.306667pt;}
.x87_c00292{left:37.397711pt;}
.x26_c00292{left:48.400000pt;}
.x19_c00292{left:50.368000pt;}
.x12_c00292{left:51.338667pt;}
.x73_c00292{left:53.490667pt;}
.xb_c00292{left:55.416000pt;}
.x5b_c00292{left:57.462667pt;}
.x36_c00292{left:58.516000pt;}
.x4f_c00292{left:60.188000pt;}
.x40_c00292{left:61.157333pt;}
.x6d_c00292{left:62.084753pt;}
.x56_c00292{left:64.938667pt;}
.x3_c00292{left:65.860000pt;}
.x5f_c00292{left:67.002667pt;}
.x69_c00292{left:68.003112pt;}
.x43_c00292{left:69.077333pt;}
.x97_c00292{left:71.878337pt;}
.x27_c00292{left:73.373333pt;}
.x64_c00292{left:75.897333pt;}
.x50_c00292{left:78.149333pt;}
.x2c_c00292{left:81.570667pt;}
.x33_c00292{left:82.792000pt;}
.x20_c00292{left:85.381333pt;}
.x7d_c00292{left:88.114011pt;}
.x4_c00292{left:90.468000pt;}
.x1a_c00292{left:92.122667pt;}
.x4c_c00292{left:94.581333pt;}
.x89_c00292{left:97.233668pt;}
.x2d_c00292{left:99.320000pt;}
.x6e_c00292{left:101.674708pt;}
.x5c_c00292{left:102.568000pt;}
.xc_c00292{left:103.637333pt;}
.x37_c00292{left:105.032000pt;}
.x51_c00292{left:106.980000pt;}
.x77_c00292{left:109.595729pt;}
.x6a_c00292{left:111.206532pt;}
.x1b_c00292{left:113.738667pt;}
.xd_c00292{left:115.189333pt;}
.x13_c00292{left:116.626667pt;}
.x82_c00292{left:117.691487pt;}
.x49_c00292{left:119.765333pt;}
.x2e_c00292{left:121.158667pt;}
.x41_c00292{left:122.066667pt;}
.x3b_c00292{left:123.400000pt;}
.x5_c00292{left:124.742667pt;}
.x65_c00292{left:128.270667pt;}
.x4d_c00292{left:129.870667pt;}
.x52_c00292{left:130.976000pt;}
.x8b_c00292{left:132.254395pt;}
.x44_c00292{left:134.046667pt;}
.x6f_c00292{left:135.292743pt;}
.x28_c00292{left:136.193333pt;}
.x57_c00292{left:137.142667pt;}
.x4e_c00292{left:139.456000pt;}
.x7b_c00292{left:140.925333pt;}
.x21_c00292{left:142.982667pt;}
.x90_c00292{left:144.364851pt;}
.x78_c00292{left:145.330667pt;}
.x92_c00292{left:147.663327pt;}
.x14_c00292{left:151.432000pt;}
.x1_c00292{left:152.400000pt;}
.x70_c00292{left:154.476396pt;}
.x1c_c00292{left:156.201333pt;}
.x22_c00292{left:157.380000pt;}
.x45_c00292{left:159.314667pt;}
.x79_c00292{left:161.136569pt;}
.x83_c00292{left:163.203703pt;}
.x53_c00292{left:165.316000pt;}
.x29_c00292{left:166.681333pt;}
.x3c_c00292{left:167.645333pt;}
.x42_c00292{left:168.681333pt;}
.x74_c00292{left:171.565333pt;}
.x2f_c00292{left:174.208000pt;}
.x46_c00292{left:175.408000pt;}
.xe_c00292{left:176.616000pt;}
.x95_c00292{left:178.761699pt;}
.x1d_c00292{left:179.720000pt;}
.x38_c00292{left:181.614667pt;}
.x6_c00292{left:182.549333pt;}
.x6b_c00292{left:184.373292pt;}
.x15_c00292{left:185.526667pt;}
.x54_c00292{left:186.433333pt;}
.x4a_c00292{left:188.176000pt;}
.x58_c00292{left:189.934667pt;}
.xf_c00292{left:193.653333pt;}
.x66_c00292{left:196.445333pt;}
.x84_c00292{left:197.448219pt;}
.x34_c00292{left:198.441333pt;}
.x7a_c00292{left:200.596013pt;}
.x23_c00292{left:201.829333pt;}
.x7f_c00292{left:202.831583pt;}
.x96_c00292{left:205.254624pt;}
.x5d_c00292{left:206.713333pt;}
.x7_c00292{left:209.129333pt;}
.x91_c00292{left:211.975839pt;}
.x47_c00292{left:214.036000pt;}
.x10_c00292{left:215.749333pt;}
.x2a_c00292{left:217.106667pt;}
.x3d_c00292{left:219.022667pt;}
.x80_c00292{left:220.059861pt;}
.x39_c00292{left:220.952000pt;}
.x85_c00292{left:222.293200pt;}
.x8c_c00292{left:223.881061pt;}
.x60_c00292{left:225.230667pt;}
.x88_c00292{left:226.152033pt;}
.x24_c00292{left:227.962667pt;}
.x8f_c00292{left:229.924599pt;}
.x8_c00292{left:232.297333pt;}
.x4b_c00292{left:236.877333pt;}
.x93_c00292{left:237.842391pt;}
.x30_c00292{left:239.465333pt;}
.x61_c00292{left:241.533333pt;}
.x16_c00292{left:242.638667pt;}
.x55_c00292{left:243.538667pt;}
.x1e_c00292{left:245.310667pt;}
.x9_c00292{left:246.726667pt;}
.x86_c00292{left:247.620271pt;}
.x8e_c00292{left:248.906600pt;}
.x3e_c00292{left:250.738667pt;}
.x75_c00292{left:252.504000pt;}
.x6c_c00292{left:254.355240pt;}
.x8a_c00292{left:255.595464pt;}
.x94_c00292{left:258.020859pt;}
.x17_c00292{left:259.210667pt;}
.x7e_c00292{left:260.838124pt;}
.x25_c00292{left:262.777333pt;}
.x71_c00292{left:264.484184pt;}
.x59_c00292{left:265.750667pt;}
.x67_c00292{left:267.002667pt;}
.x5e_c00292{left:268.382667pt;}
.x2b_c00292{left:269.900000pt;}
.x48_c00292{left:273.105333pt;}
.x31_c00292{left:275.497333pt;}
.x35_c00292{left:277.178667pt;}
.x1f_c00292{left:278.145333pt;}
.x8d_c00292{left:279.323728pt;}
.x68_c00292{left:281.365333pt;}
.x98_c00292{left:285.269232pt;}
.x72_c00292{left:287.422276pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00293 {
    display:none;
  }
  .loading-indicator_c00293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00293 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00293 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00293" -> "#page-container .classname_c00293")
 */
.pf_c00293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00293 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00293 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00293 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00293 {overflow:visible;}
  }
}
.c_c00293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00293 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00293:after { /* webkit #35443 */
  content: '';
}
.t_c00293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00293 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00293 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00293 { /* info for Javascript */
  display:none;
}
.l_c00293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00293:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00293 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00293.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf6_c00293{transform:matrix(0.074599,-0.001567,0.005249,0.249945,0,0);-ms-transform:matrix(0.074599,-0.001567,0.005249,0.249945,0,0);-webkit-transform:matrix(0.074599,-0.001567,0.005249,0.249945,0,0);}
.mb2_c00293{transform:matrix(0.077743,-0.001633,0.005249,0.249945,0,0);-ms-transform:matrix(0.077743,-0.001633,0.005249,0.249945,0,0);-webkit-transform:matrix(0.077743,-0.001633,0.005249,0.249945,0,0);}
.m4d_c00293{transform:matrix(0.092320,-0.001939,0.005249,0.249945,0,0);-ms-transform:matrix(0.092320,-0.001939,0.005249,0.249945,0,0);-webkit-transform:matrix(0.092320,-0.001939,0.005249,0.249945,0,0);}
.m4a_c00293{transform:matrix(0.100568,-0.002112,0.005249,0.249945,0,0);-ms-transform:matrix(0.100568,-0.002112,0.005249,0.249945,0,0);-webkit-transform:matrix(0.100568,-0.002112,0.005249,0.249945,0,0);}
.m4e_c00293{transform:matrix(0.107306,-0.002253,0.005249,0.249945,0,0);-ms-transform:matrix(0.107306,-0.002253,0.005249,0.249945,0,0);-webkit-transform:matrix(0.107306,-0.002253,0.005249,0.249945,0,0);}
.m4b_c00293{transform:matrix(0.119259,-0.002504,0.005249,0.249945,0,0);-ms-transform:matrix(0.119259,-0.002504,0.005249,0.249945,0,0);-webkit-transform:matrix(0.119259,-0.002504,0.005249,0.249945,0,0);}
.m4f_c00293{transform:matrix(0.126912,-0.002665,0.005249,0.249945,0,0);-ms-transform:matrix(0.126912,-0.002665,0.005249,0.249945,0,0);-webkit-transform:matrix(0.126912,-0.002665,0.005249,0.249945,0,0);}
.m3f_c00293{transform:matrix(0.130146,-0.002733,0.005249,0.249945,0,0);-ms-transform:matrix(0.130146,-0.002733,0.005249,0.249945,0,0);-webkit-transform:matrix(0.130146,-0.002733,0.005249,0.249945,0,0);}
.m0_c00293{transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);}
.m49_c00293{transform:matrix(0.132241,-0.002777,0.005249,0.249945,0,0);-ms-transform:matrix(0.132241,-0.002777,0.005249,0.249945,0,0);-webkit-transform:matrix(0.132241,-0.002777,0.005249,0.249945,0,0);}
.ma2_c00293{transform:matrix(0.134265,-0.002820,0.005249,0.249945,0,0);-ms-transform:matrix(0.134265,-0.002820,0.005249,0.249945,0,0);-webkit-transform:matrix(0.134265,-0.002820,0.005249,0.249945,0,0);}
.m4c_c00293{transform:matrix(0.140824,-0.002957,0.005249,0.249945,0,0);-ms-transform:matrix(0.140824,-0.002957,0.005249,0.249945,0,0);-webkit-transform:matrix(0.140824,-0.002957,0.005249,0.249945,0,0);}
.m8d_c00293{transform:matrix(0.142504,-0.002993,0.005249,0.249945,0,0);-ms-transform:matrix(0.142504,-0.002993,0.005249,0.249945,0,0);-webkit-transform:matrix(0.142504,-0.002993,0.005249,0.249945,0,0);}
.mb7_c00293{transform:matrix(0.142749,-0.002998,0.005249,0.249945,0,0);-ms-transform:matrix(0.142749,-0.002998,0.005249,0.249945,0,0);-webkit-transform:matrix(0.142749,-0.002998,0.005249,0.249945,0,0);}
.ma0_c00293{transform:matrix(0.145318,-0.003052,0.005249,0.249945,0,0);-ms-transform:matrix(0.145318,-0.003052,0.005249,0.249945,0,0);-webkit-transform:matrix(0.145318,-0.003052,0.005249,0.249945,0,0);}
.mb5_c00293{transform:matrix(0.147363,-0.003095,0.005249,0.249945,0,0);-ms-transform:matrix(0.147363,-0.003095,0.005249,0.249945,0,0);-webkit-transform:matrix(0.147363,-0.003095,0.005249,0.249945,0,0);}
.m71_c00293{transform:matrix(0.152586,-0.003204,0.005249,0.249945,0,0);-ms-transform:matrix(0.152586,-0.003204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152586,-0.003204,0.005249,0.249945,0,0);}
.m52_c00293{transform:matrix(0.152996,-0.003213,0.005249,0.249945,0,0);-ms-transform:matrix(0.152996,-0.003213,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152996,-0.003213,0.005249,0.249945,0,0);}
.ma1_c00293{transform:matrix(0.154476,-0.003244,0.005249,0.249945,0,0);-ms-transform:matrix(0.154476,-0.003244,0.005249,0.249945,0,0);-webkit-transform:matrix(0.154476,-0.003244,0.005249,0.249945,0,0);}
.m17_c00293{transform:matrix(0.155041,-0.003256,0.005249,0.249945,0,0);-ms-transform:matrix(0.155041,-0.003256,0.005249,0.249945,0,0);-webkit-transform:matrix(0.155041,-0.003256,0.005249,0.249945,0,0);}
.mf0_c00293{transform:matrix(0.156356,-0.003283,0.005249,0.249945,0,0);-ms-transform:matrix(0.156356,-0.003283,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156356,-0.003283,0.005249,0.249945,0,0);}
.m5f_c00293{transform:matrix(0.156550,-0.003288,0.005249,0.249945,0,0);-ms-transform:matrix(0.156550,-0.003288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156550,-0.003288,0.005249,0.249945,0,0);}
.mef_c00293{transform:matrix(0.156905,-0.003295,0.005249,0.249945,0,0);-ms-transform:matrix(0.156905,-0.003295,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156905,-0.003295,0.005249,0.249945,0,0);}
.m20_c00293{transform:matrix(0.157275,-0.003303,0.005249,0.249945,0,0);-ms-transform:matrix(0.157275,-0.003303,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157275,-0.003303,0.005249,0.249945,0,0);}
.mf3_c00293{transform:matrix(0.157865,-0.003315,0.005249,0.249945,0,0);-ms-transform:matrix(0.157865,-0.003315,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157865,-0.003315,0.005249,0.249945,0,0);}
.mb_c00293{transform:matrix(0.158075,-0.003320,0.005249,0.249945,0,0);-ms-transform:matrix(0.158075,-0.003320,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158075,-0.003320,0.005249,0.249945,0,0);}
.m9c_c00293{transform:matrix(0.159840,-0.003357,0.005249,0.249945,0,0);-ms-transform:matrix(0.159840,-0.003357,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159840,-0.003357,0.005249,0.249945,0,0);}
.mb1_c00293{transform:matrix(0.159890,-0.003358,0.005249,0.249945,0,0);-ms-transform:matrix(0.159890,-0.003358,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159890,-0.003358,0.005249,0.249945,0,0);}
.m74_c00293{transform:matrix(0.160780,-0.003376,0.005249,0.249945,0,0);-ms-transform:matrix(0.160780,-0.003376,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160780,-0.003376,0.005249,0.249945,0,0);}
.m85_c00293{transform:matrix(0.161299,-0.003387,0.005249,0.249945,0,0);-ms-transform:matrix(0.161299,-0.003387,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161299,-0.003387,0.005249,0.249945,0,0);}
.m73_c00293{transform:matrix(0.161994,-0.003402,0.005249,0.249945,0,0);-ms-transform:matrix(0.161994,-0.003402,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161994,-0.003402,0.005249,0.249945,0,0);}
.ma9_c00293{transform:matrix(0.162479,-0.003412,0.005249,0.249945,0,0);-ms-transform:matrix(0.162479,-0.003412,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162479,-0.003412,0.005249,0.249945,0,0);}
.mcc_c00293{transform:matrix(0.164209,-0.003448,0.005249,0.249945,0,0);-ms-transform:matrix(0.164209,-0.003448,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164209,-0.003448,0.005249,0.249945,0,0);}
.m2d_c00293{transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);-ms-transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);}
.maf_c00293{transform:matrix(0.164834,-0.003462,0.005249,0.249945,0,0);-ms-transform:matrix(0.164834,-0.003462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164834,-0.003462,0.005249,0.249945,0,0);}
.m56_c00293{transform:matrix(0.165733,-0.003480,0.005249,0.249945,0,0);-ms-transform:matrix(0.165733,-0.003480,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165733,-0.003480,0.005249,0.249945,0,0);}
.mb3_c00293{transform:matrix(0.166128,-0.003489,0.005249,0.249945,0,0);-ms-transform:matrix(0.166128,-0.003489,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166128,-0.003489,0.005249,0.249945,0,0);}
.mb6_c00293{transform:matrix(0.166623,-0.003499,0.005249,0.249945,0,0);-ms-transform:matrix(0.166623,-0.003499,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166623,-0.003499,0.005249,0.249945,0,0);}
.ma3_c00293{transform:matrix(0.167708,-0.003522,0.005249,0.249945,0,0);-ms-transform:matrix(0.167708,-0.003522,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167708,-0.003522,0.005249,0.249945,0,0);}
.m7e_c00293{transform:matrix(0.167843,-0.003525,0.005249,0.249945,0,0);-ms-transform:matrix(0.167843,-0.003525,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167843,-0.003525,0.005249,0.249945,0,0);}
.m50_c00293{transform:matrix(0.167908,-0.003526,0.005249,0.249945,0,0);-ms-transform:matrix(0.167908,-0.003526,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167908,-0.003526,0.005249,0.249945,0,0);}
.m7d_c00293{transform:matrix(0.168178,-0.003532,0.005249,0.249945,0,0);-ms-transform:matrix(0.168178,-0.003532,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168178,-0.003532,0.005249,0.249945,0,0);}
.m79_c00293{transform:matrix(0.168388,-0.003536,0.005249,0.249945,0,0);-ms-transform:matrix(0.168388,-0.003536,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168388,-0.003536,0.005249,0.249945,0,0);}
.m60_c00293{transform:matrix(0.168393,-0.003536,0.005249,0.249945,0,0);-ms-transform:matrix(0.168393,-0.003536,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168393,-0.003536,0.005249,0.249945,0,0);}
.mdf_c00293{transform:matrix(0.169748,-0.003565,0.005249,0.249945,0,0);-ms-transform:matrix(0.169748,-0.003565,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169748,-0.003565,0.005249,0.249945,0,0);}
.m7a_c00293{transform:matrix(0.169863,-0.003567,0.005249,0.249945,0,0);-ms-transform:matrix(0.169863,-0.003567,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169863,-0.003567,0.005249,0.249945,0,0);}
.ma_c00293{transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);-ms-transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);}
.m7c_c00293{transform:matrix(0.170038,-0.003571,0.005249,0.249945,0,0);-ms-transform:matrix(0.170038,-0.003571,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170038,-0.003571,0.005249,0.249945,0,0);}
.m3d_c00293{transform:matrix(0.170912,-0.003589,0.005249,0.249945,0,0);-ms-transform:matrix(0.170912,-0.003589,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170912,-0.003589,0.005249,0.249945,0,0);}
.mae_c00293{transform:matrix(0.171127,-0.003594,0.005249,0.249945,0,0);-ms-transform:matrix(0.171127,-0.003594,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171127,-0.003594,0.005249,0.249945,0,0);}
.me_c00293{transform:matrix(0.172812,-0.003629,0.005249,0.249945,0,0);-ms-transform:matrix(0.172812,-0.003629,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172812,-0.003629,0.005249,0.249945,0,0);}
.m1d_c00293{transform:matrix(0.173162,-0.003636,0.005249,0.249945,0,0);-ms-transform:matrix(0.173162,-0.003636,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173162,-0.003636,0.005249,0.249945,0,0);}
.me8_c00293{transform:matrix(0.173217,-0.003638,0.005249,0.249945,0,0);-ms-transform:matrix(0.173217,-0.003638,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173217,-0.003638,0.005249,0.249945,0,0);}
.me1_c00293{transform:matrix(0.174087,-0.003656,0.005249,0.249945,0,0);-ms-transform:matrix(0.174087,-0.003656,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174087,-0.003656,0.005249,0.249945,0,0);}
.m39_c00293{transform:matrix(0.174207,-0.003658,0.005249,0.249945,0,0);-ms-transform:matrix(0.174207,-0.003658,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174207,-0.003658,0.005249,0.249945,0,0);}
.m6d_c00293{transform:matrix(0.174307,-0.003660,0.005249,0.249945,0,0);-ms-transform:matrix(0.174307,-0.003660,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174307,-0.003660,0.005249,0.249945,0,0);}
.m29_c00293{transform:matrix(0.174871,-0.003672,0.005249,0.249945,0,0);-ms-transform:matrix(0.174871,-0.003672,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174871,-0.003672,0.005249,0.249945,0,0);}
.mc1_c00293{transform:matrix(0.175316,-0.003682,0.005249,0.249945,0,0);-ms-transform:matrix(0.175316,-0.003682,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175316,-0.003682,0.005249,0.249945,0,0);}
.m7b_c00293{transform:matrix(0.175736,-0.003690,0.005249,0.249945,0,0);-ms-transform:matrix(0.175736,-0.003690,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175736,-0.003690,0.005249,0.249945,0,0);}
.m19_c00293{transform:matrix(0.175846,-0.003693,0.005249,0.249945,0,0);-ms-transform:matrix(0.175846,-0.003693,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175846,-0.003693,0.005249,0.249945,0,0);}
.m6_c00293{transform:matrix(0.176051,-0.003697,0.005249,0.249945,0,0);-ms-transform:matrix(0.176051,-0.003697,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176051,-0.003697,0.005249,0.249945,0,0);}
.m2a_c00293{transform:matrix(0.176311,-0.003703,0.005249,0.249945,0,0);-ms-transform:matrix(0.176311,-0.003703,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176311,-0.003703,0.005249,0.249945,0,0);}
.m26_c00293{transform:matrix(0.176571,-0.003708,0.005249,0.249945,0,0);-ms-transform:matrix(0.176571,-0.003708,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176571,-0.003708,0.005249,0.249945,0,0);}
.m6e_c00293{transform:matrix(0.177131,-0.003720,0.005249,0.249945,0,0);-ms-transform:matrix(0.177131,-0.003720,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177131,-0.003720,0.005249,0.249945,0,0);}
.m57_c00293{transform:matrix(0.177781,-0.003733,0.005249,0.249945,0,0);-ms-transform:matrix(0.177781,-0.003733,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177781,-0.003733,0.005249,0.249945,0,0);}
.m2e_c00293{transform:matrix(0.178316,-0.003745,0.005249,0.249945,0,0);-ms-transform:matrix(0.178316,-0.003745,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178316,-0.003745,0.005249,0.249945,0,0);}
.ma8_c00293{transform:matrix(0.178806,-0.003755,0.005249,0.249945,0,0);-ms-transform:matrix(0.178806,-0.003755,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178806,-0.003755,0.005249,0.249945,0,0);}
.m31_c00293{transform:matrix(0.179245,-0.003764,0.005249,0.249945,0,0);-ms-transform:matrix(0.179245,-0.003764,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179245,-0.003764,0.005249,0.249945,0,0);}
.m6a_c00293{transform:matrix(0.179990,-0.003780,0.005249,0.249945,0,0);-ms-transform:matrix(0.179990,-0.003780,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179990,-0.003780,0.005249,0.249945,0,0);}
.m64_c00293{transform:matrix(0.180315,-0.003787,0.005249,0.249945,0,0);-ms-transform:matrix(0.180315,-0.003787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180315,-0.003787,0.005249,0.249945,0,0);}
.m78_c00293{transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);-ms-transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180320,-0.003787,0.005249,0.249945,0,0);}
.md5_c00293{transform:matrix(0.180350,-0.003787,0.005249,0.249945,0,0);-ms-transform:matrix(0.180350,-0.003787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180350,-0.003787,0.005249,0.249945,0,0);}
.m59_c00293{transform:matrix(0.181095,-0.003803,0.005249,0.249945,0,0);-ms-transform:matrix(0.181095,-0.003803,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181095,-0.003803,0.005249,0.249945,0,0);}
.m16_c00293{transform:matrix(0.181105,-0.003803,0.005249,0.249945,0,0);-ms-transform:matrix(0.181105,-0.003803,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181105,-0.003803,0.005249,0.249945,0,0);}
.m6c_c00293{transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);-ms-transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);}
.m32_c00293{transform:matrix(0.181520,-0.003812,0.005249,0.249945,0,0);-ms-transform:matrix(0.181520,-0.003812,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181520,-0.003812,0.005249,0.249945,0,0);}
.m9_c00293{transform:matrix(0.181785,-0.003817,0.005249,0.249945,0,0);-ms-transform:matrix(0.181785,-0.003817,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181785,-0.003817,0.005249,0.249945,0,0);}
.m35_c00293{transform:matrix(0.182005,-0.003822,0.005249,0.249945,0,0);-ms-transform:matrix(0.182005,-0.003822,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182005,-0.003822,0.005249,0.249945,0,0);}
.m34_c00293{transform:matrix(0.182165,-0.003825,0.005249,0.249945,0,0);-ms-transform:matrix(0.182165,-0.003825,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182165,-0.003825,0.005249,0.249945,0,0);}
.mb4_c00293{transform:matrix(0.182510,-0.003833,0.005249,0.249945,0,0);-ms-transform:matrix(0.182510,-0.003833,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182510,-0.003833,0.005249,0.249945,0,0);}
.m8_c00293{transform:matrix(0.182870,-0.003840,0.005249,0.249945,0,0);-ms-transform:matrix(0.182870,-0.003840,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182870,-0.003840,0.005249,0.249945,0,0);}
.m51_c00293{transform:matrix(0.182945,-0.003842,0.005249,0.249945,0,0);-ms-transform:matrix(0.182945,-0.003842,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182945,-0.003842,0.005249,0.249945,0,0);}
.m22_c00293{transform:matrix(0.183135,-0.003846,0.005249,0.249945,0,0);-ms-transform:matrix(0.183135,-0.003846,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183135,-0.003846,0.005249,0.249945,0,0);}
.m58_c00293{transform:matrix(0.183375,-0.003851,0.005249,0.249945,0,0);-ms-transform:matrix(0.183375,-0.003851,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183375,-0.003851,0.005249,0.249945,0,0);}
.m5a_c00293{transform:matrix(0.183415,-0.003852,0.005249,0.249945,0,0);-ms-transform:matrix(0.183415,-0.003852,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183415,-0.003852,0.005249,0.249945,0,0);}
.mdd_c00293{transform:matrix(0.183460,-0.003853,0.005249,0.249945,0,0);-ms-transform:matrix(0.183460,-0.003853,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183460,-0.003853,0.005249,0.249945,0,0);}
.mbf_c00293{transform:matrix(0.183635,-0.003856,0.005249,0.249945,0,0);-ms-transform:matrix(0.183635,-0.003856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183635,-0.003856,0.005249,0.249945,0,0);}
.m9d_c00293{transform:matrix(0.184184,-0.003868,0.005249,0.249945,0,0);-ms-transform:matrix(0.184184,-0.003868,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184184,-0.003868,0.005249,0.249945,0,0);}
.mec_c00293{transform:matrix(0.184984,-0.003885,0.005249,0.249945,0,0);-ms-transform:matrix(0.184984,-0.003885,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184984,-0.003885,0.005249,0.249945,0,0);}
.m7f_c00293{transform:matrix(0.185954,-0.003905,0.005249,0.249945,0,0);-ms-transform:matrix(0.185954,-0.003905,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185954,-0.003905,0.005249,0.249945,0,0);}
.m53_c00293{transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);-ms-transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186394,-0.003914,0.005249,0.249945,0,0);}
.md0_c00293{transform:matrix(0.186599,-0.003919,0.005249,0.249945,0,0);-ms-transform:matrix(0.186599,-0.003919,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186599,-0.003919,0.005249,0.249945,0,0);}
.mcf_c00293{transform:matrix(0.186644,-0.003920,0.005249,0.249945,0,0);-ms-transform:matrix(0.186644,-0.003920,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186644,-0.003920,0.005249,0.249945,0,0);}
.m45_c00293{transform:matrix(0.187309,-0.003933,0.005249,0.249945,0,0);-ms-transform:matrix(0.187309,-0.003933,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187309,-0.003933,0.005249,0.249945,0,0);}
.ma7_c00293{transform:matrix(0.188393,-0.003956,0.005249,0.249945,0,0);-ms-transform:matrix(0.188393,-0.003956,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188393,-0.003956,0.005249,0.249945,0,0);}
.m1e_c00293{transform:matrix(0.188568,-0.003960,0.005249,0.249945,0,0);-ms-transform:matrix(0.188568,-0.003960,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188568,-0.003960,0.005249,0.249945,0,0);}
.m1b_c00293{transform:matrix(0.188838,-0.003966,0.005249,0.249945,0,0);-ms-transform:matrix(0.188838,-0.003966,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188838,-0.003966,0.005249,0.249945,0,0);}
.m61_c00293{transform:matrix(0.189183,-0.003973,0.005249,0.249945,0,0);-ms-transform:matrix(0.189183,-0.003973,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189183,-0.003973,0.005249,0.249945,0,0);}
.m70_c00293{transform:matrix(0.189383,-0.003977,0.005249,0.249945,0,0);-ms-transform:matrix(0.189383,-0.003977,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189383,-0.003977,0.005249,0.249945,0,0);}
.me3_c00293{transform:matrix(0.189638,-0.003982,0.005249,0.249945,0,0);-ms-transform:matrix(0.189638,-0.003982,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189638,-0.003982,0.005249,0.249945,0,0);}
.mf_c00293{transform:matrix(0.189673,-0.003983,0.005249,0.249945,0,0);-ms-transform:matrix(0.189673,-0.003983,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189673,-0.003983,0.005249,0.249945,0,0);}
.mee_c00293{transform:matrix(0.189708,-0.003984,0.005249,0.249945,0,0);-ms-transform:matrix(0.189708,-0.003984,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189708,-0.003984,0.005249,0.249945,0,0);}
.ma4_c00293{transform:matrix(0.190143,-0.003993,0.005249,0.249945,0,0);-ms-transform:matrix(0.190143,-0.003993,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190143,-0.003993,0.005249,0.249945,0,0);}
.m3_c00293{transform:matrix(0.190323,-0.003997,0.005249,0.249945,0,0);-ms-transform:matrix(0.190323,-0.003997,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190323,-0.003997,0.005249,0.249945,0,0);}
.mcd_c00293{transform:matrix(0.190393,-0.003998,0.005249,0.249945,0,0);-ms-transform:matrix(0.190393,-0.003998,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190393,-0.003998,0.005249,0.249945,0,0);}
.m75_c00293{transform:matrix(0.191233,-0.004016,0.005249,0.249945,0,0);-ms-transform:matrix(0.191233,-0.004016,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191233,-0.004016,0.005249,0.249945,0,0);}
.m72_c00293{transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);-ms-transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);}
.m1a_c00293{transform:matrix(0.192288,-0.004038,0.005249,0.249945,0,0);-ms-transform:matrix(0.192288,-0.004038,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192288,-0.004038,0.005249,0.249945,0,0);}
.m92_c00293{transform:matrix(0.192633,-0.004045,0.005249,0.249945,0,0);-ms-transform:matrix(0.192633,-0.004045,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192633,-0.004045,0.005249,0.249945,0,0);}
.me2_c00293{transform:matrix(0.192663,-0.004046,0.005249,0.249945,0,0);-ms-transform:matrix(0.192663,-0.004046,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192663,-0.004046,0.005249,0.249945,0,0);}
.mbd_c00293{transform:matrix(0.192673,-0.004046,0.005249,0.249945,0,0);-ms-transform:matrix(0.192673,-0.004046,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192673,-0.004046,0.005249,0.249945,0,0);}
.m30_c00293{transform:matrix(0.193742,-0.004069,0.005249,0.249945,0,0);-ms-transform:matrix(0.193742,-0.004069,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193742,-0.004069,0.005249,0.249945,0,0);}
.mc5_c00293{transform:matrix(0.194392,-0.004082,0.005249,0.249945,0,0);-ms-transform:matrix(0.194392,-0.004082,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194392,-0.004082,0.005249,0.249945,0,0);}
.m8a_c00293{transform:matrix(0.194427,-0.004083,0.005249,0.249945,0,0);-ms-transform:matrix(0.194427,-0.004083,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194427,-0.004083,0.005249,0.249945,0,0);}
.m3c_c00293{transform:matrix(0.194527,-0.004085,0.005249,0.249945,0,0);-ms-transform:matrix(0.194527,-0.004085,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194527,-0.004085,0.005249,0.249945,0,0);}
.m1c_c00293{transform:matrix(0.195112,-0.004097,0.005249,0.249945,0,0);-ms-transform:matrix(0.195112,-0.004097,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195112,-0.004097,0.005249,0.249945,0,0);}
.mab_c00293{transform:matrix(0.196792,-0.004133,0.005249,0.249945,0,0);-ms-transform:matrix(0.196792,-0.004133,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196792,-0.004133,0.005249,0.249945,0,0);}
.mac_c00293{transform:matrix(0.197866,-0.004155,0.005249,0.249945,0,0);-ms-transform:matrix(0.197866,-0.004155,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197866,-0.004155,0.005249,0.249945,0,0);}
.m95_c00293{transform:matrix(0.198226,-0.004163,0.005249,0.249945,0,0);-ms-transform:matrix(0.198226,-0.004163,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198226,-0.004163,0.005249,0.249945,0,0);}
.mde_c00293{transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);-ms-transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198406,-0.004167,0.005249,0.249945,0,0);}
.me9_c00293{transform:matrix(0.198516,-0.004169,0.005249,0.249945,0,0);-ms-transform:matrix(0.198516,-0.004169,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198516,-0.004169,0.005249,0.249945,0,0);}
.m97_c00293{transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);-ms-transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);}
.mf4_c00293{transform:matrix(0.199146,-0.004182,0.005249,0.249945,0,0);-ms-transform:matrix(0.199146,-0.004182,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199146,-0.004182,0.005249,0.249945,0,0);}
.m42_c00293{transform:matrix(0.199436,-0.004188,0.005249,0.249945,0,0);-ms-transform:matrix(0.199436,-0.004188,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199436,-0.004188,0.005249,0.249945,0,0);}
.mea_c00293{transform:matrix(0.199711,-0.004194,0.005249,0.249945,0,0);-ms-transform:matrix(0.199711,-0.004194,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199711,-0.004194,0.005249,0.249945,0,0);}
.mc0_c00293{transform:matrix(0.199876,-0.004197,0.005249,0.249945,0,0);-ms-transform:matrix(0.199876,-0.004197,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199876,-0.004197,0.005249,0.249945,0,0);}
.m69_c00293{transform:matrix(0.200016,-0.004200,0.005249,0.249945,0,0);-ms-transform:matrix(0.200016,-0.004200,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200016,-0.004200,0.005249,0.249945,0,0);}
.mce_c00293{transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);-ms-transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);}
.mb0_c00293{transform:matrix(0.200241,-0.004205,0.005249,0.249945,0,0);-ms-transform:matrix(0.200241,-0.004205,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200241,-0.004205,0.005249,0.249945,0,0);}
.m44_c00293{transform:matrix(0.200326,-0.004207,0.005249,0.249945,0,0);-ms-transform:matrix(0.200326,-0.004207,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200326,-0.004207,0.005249,0.249945,0,0);}
.m38_c00293{transform:matrix(0.200411,-0.004209,0.005249,0.249945,0,0);-ms-transform:matrix(0.200411,-0.004209,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200411,-0.004209,0.005249,0.249945,0,0);}
.m7_c00293{transform:matrix(0.200821,-0.004217,0.005249,0.249945,0,0);-ms-transform:matrix(0.200821,-0.004217,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200821,-0.004217,0.005249,0.249945,0,0);}
.me7_c00293{transform:matrix(0.200891,-0.004219,0.005249,0.249945,0,0);-ms-transform:matrix(0.200891,-0.004219,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200891,-0.004219,0.005249,0.249945,0,0);}
.me4_c00293{transform:matrix(0.201246,-0.004226,0.005249,0.249945,0,0);-ms-transform:matrix(0.201246,-0.004226,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201246,-0.004226,0.005249,0.249945,0,0);}
.m94_c00293{transform:matrix(0.201421,-0.004230,0.005249,0.249945,0,0);-ms-transform:matrix(0.201421,-0.004230,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201421,-0.004230,0.005249,0.249945,0,0);}
.med_c00293{transform:matrix(0.201441,-0.004230,0.005249,0.249945,0,0);-ms-transform:matrix(0.201441,-0.004230,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201441,-0.004230,0.005249,0.249945,0,0);}
.m8f_c00293{transform:matrix(0.201471,-0.004231,0.005249,0.249945,0,0);-ms-transform:matrix(0.201471,-0.004231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201471,-0.004231,0.005249,0.249945,0,0);}
.m80_c00293{transform:matrix(0.201990,-0.004242,0.005249,0.249945,0,0);-ms-transform:matrix(0.201990,-0.004242,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201990,-0.004242,0.005249,0.249945,0,0);}
.mc7_c00293{transform:matrix(0.202610,-0.004255,0.005249,0.249945,0,0);-ms-transform:matrix(0.202610,-0.004255,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202610,-0.004255,0.005249,0.249945,0,0);}
.mc4_c00293{transform:matrix(0.203270,-0.004269,0.005249,0.249945,0,0);-ms-transform:matrix(0.203270,-0.004269,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203270,-0.004269,0.005249,0.249945,0,0);}
.md4_c00293{transform:matrix(0.203350,-0.004270,0.005249,0.249945,0,0);-ms-transform:matrix(0.203350,-0.004270,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203350,-0.004270,0.005249,0.249945,0,0);}
.m88_c00293{transform:matrix(0.204405,-0.004293,0.005249,0.249945,0,0);-ms-transform:matrix(0.204405,-0.004293,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204405,-0.004293,0.005249,0.249945,0,0);}
.m5b_c00293{transform:matrix(0.204850,-0.004302,0.005249,0.249945,0,0);-ms-transform:matrix(0.204850,-0.004302,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204850,-0.004302,0.005249,0.249945,0,0);}
.m5_c00293{transform:matrix(0.205130,-0.004308,0.005249,0.249945,0,0);-ms-transform:matrix(0.205130,-0.004308,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205130,-0.004308,0.005249,0.249945,0,0);}
.me0_c00293{transform:matrix(0.205870,-0.004323,0.005249,0.249945,0,0);-ms-transform:matrix(0.205870,-0.004323,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205870,-0.004323,0.005249,0.249945,0,0);}
.me6_c00293{transform:matrix(0.206190,-0.004330,0.005249,0.249945,0,0);-ms-transform:matrix(0.206190,-0.004330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206190,-0.004330,0.005249,0.249945,0,0);}
.m6f_c00293{transform:matrix(0.206215,-0.004331,0.005249,0.249945,0,0);-ms-transform:matrix(0.206215,-0.004331,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206215,-0.004331,0.005249,0.249945,0,0);}
.m47_c00293{transform:matrix(0.207039,-0.004348,0.005249,0.249945,0,0);-ms-transform:matrix(0.207039,-0.004348,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207039,-0.004348,0.005249,0.249945,0,0);}
.m5c_c00293{transform:matrix(0.207184,-0.004351,0.005249,0.249945,0,0);-ms-transform:matrix(0.207184,-0.004351,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207184,-0.004351,0.005249,0.249945,0,0);}
.m9b_c00293{transform:matrix(0.207834,-0.004365,0.005249,0.249945,0,0);-ms-transform:matrix(0.207834,-0.004365,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207834,-0.004365,0.005249,0.249945,0,0);}
.mad_c00293{transform:matrix(0.207974,-0.004367,0.005249,0.249945,0,0);-ms-transform:matrix(0.207974,-0.004367,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207974,-0.004367,0.005249,0.249945,0,0);}
.m8c_c00293{transform:matrix(0.208924,-0.004387,0.005249,0.249945,0,0);-ms-transform:matrix(0.208924,-0.004387,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208924,-0.004387,0.005249,0.249945,0,0);}
.m4_c00293{transform:matrix(0.209314,-0.004396,0.005249,0.249945,0,0);-ms-transform:matrix(0.209314,-0.004396,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209314,-0.004396,0.005249,0.249945,0,0);}
.m5d_c00293{transform:matrix(0.209384,-0.004397,0.005249,0.249945,0,0);-ms-transform:matrix(0.209384,-0.004397,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209384,-0.004397,0.005249,0.249945,0,0);}
.mdb_c00293{transform:matrix(0.209429,-0.004398,0.005249,0.249945,0,0);-ms-transform:matrix(0.209429,-0.004398,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209429,-0.004398,0.005249,0.249945,0,0);}
.m33_c00293{transform:matrix(0.210019,-0.004410,0.005249,0.249945,0,0);-ms-transform:matrix(0.210019,-0.004410,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210019,-0.004410,0.005249,0.249945,0,0);}
.mbc_c00293{transform:matrix(0.210434,-0.004419,0.005249,0.249945,0,0);-ms-transform:matrix(0.210434,-0.004419,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210434,-0.004419,0.005249,0.249945,0,0);}
.m23_c00293{transform:matrix(0.210609,-0.004423,0.005249,0.249945,0,0);-ms-transform:matrix(0.210609,-0.004423,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210609,-0.004423,0.005249,0.249945,0,0);}
.m11_c00293{transform:matrix(0.210689,-0.004424,0.005249,0.249945,0,0);-ms-transform:matrix(0.210689,-0.004424,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210689,-0.004424,0.005249,0.249945,0,0);}
.m2f_c00293{transform:matrix(0.210764,-0.004426,0.005249,0.249945,0,0);-ms-transform:matrix(0.210764,-0.004426,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210764,-0.004426,0.005249,0.249945,0,0);}
.m65_c00293{transform:matrix(0.211173,-0.004435,0.005249,0.249945,0,0);-ms-transform:matrix(0.211173,-0.004435,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211173,-0.004435,0.005249,0.249945,0,0);}
.m10_c00293{transform:matrix(0.211233,-0.004436,0.005249,0.249945,0,0);-ms-transform:matrix(0.211233,-0.004436,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211233,-0.004436,0.005249,0.249945,0,0);}
.m27_c00293{transform:matrix(0.211593,-0.004443,0.005249,0.249945,0,0);-ms-transform:matrix(0.211593,-0.004443,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211593,-0.004443,0.005249,0.249945,0,0);}
.m6b_c00293{transform:matrix(0.212128,-0.004455,0.005249,0.249945,0,0);-ms-transform:matrix(0.212128,-0.004455,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212128,-0.004455,0.005249,0.249945,0,0);}
.m82_c00293{transform:matrix(0.212228,-0.004457,0.005249,0.249945,0,0);-ms-transform:matrix(0.212228,-0.004457,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212228,-0.004457,0.005249,0.249945,0,0);}
.m8b_c00293{transform:matrix(0.212278,-0.004458,0.005249,0.249945,0,0);-ms-transform:matrix(0.212278,-0.004458,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212278,-0.004458,0.005249,0.249945,0,0);}
.md8_c00293{transform:matrix(0.212793,-0.004469,0.005249,0.249945,0,0);-ms-transform:matrix(0.212793,-0.004469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212793,-0.004469,0.005249,0.249945,0,0);}
.mb8_c00293{transform:matrix(0.212798,-0.004469,0.005249,0.249945,0,0);-ms-transform:matrix(0.212798,-0.004469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212798,-0.004469,0.005249,0.249945,0,0);}
.m77_c00293{transform:matrix(0.213213,-0.004477,0.005249,0.249945,0,0);-ms-transform:matrix(0.213213,-0.004477,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213213,-0.004477,0.005249,0.249945,0,0);}
.me5_c00293{transform:matrix(0.213463,-0.004483,0.005249,0.249945,0,0);-ms-transform:matrix(0.213463,-0.004483,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213463,-0.004483,0.005249,0.249945,0,0);}
.m5e_c00293{transform:matrix(0.214913,-0.004513,0.005249,0.249945,0,0);-ms-transform:matrix(0.214913,-0.004513,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214913,-0.004513,0.005249,0.249945,0,0);}
.mcb_c00293{transform:matrix(0.215383,-0.004523,0.005249,0.249945,0,0);-ms-transform:matrix(0.215383,-0.004523,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215383,-0.004523,0.005249,0.249945,0,0);}
.mbb_c00293{transform:matrix(0.216767,-0.004552,0.005249,0.249945,0,0);-ms-transform:matrix(0.216767,-0.004552,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216767,-0.004552,0.005249,0.249945,0,0);}
.meb_c00293{transform:matrix(0.216952,-0.004556,0.005249,0.249945,0,0);-ms-transform:matrix(0.216952,-0.004556,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216952,-0.004556,0.005249,0.249945,0,0);}
.m41_c00293{transform:matrix(0.217032,-0.004558,0.005249,0.249945,0,0);-ms-transform:matrix(0.217032,-0.004558,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217032,-0.004558,0.005249,0.249945,0,0);}
.mc_c00293{transform:matrix(0.217127,-0.004560,0.005249,0.249945,0,0);-ms-transform:matrix(0.217127,-0.004560,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217127,-0.004560,0.005249,0.249945,0,0);}
.m9f_c00293{transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);-ms-transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218107,-0.004580,0.005249,0.249945,0,0);}
.m81_c00293{transform:matrix(0.218247,-0.004583,0.005249,0.249945,0,0);-ms-transform:matrix(0.218247,-0.004583,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218247,-0.004583,0.005249,0.249945,0,0);}
.m43_c00293{transform:matrix(0.218297,-0.004584,0.005249,0.249945,0,0);-ms-transform:matrix(0.218297,-0.004584,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218297,-0.004584,0.005249,0.249945,0,0);}
.m28_c00293{transform:matrix(0.218432,-0.004587,0.005249,0.249945,0,0);-ms-transform:matrix(0.218432,-0.004587,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218432,-0.004587,0.005249,0.249945,0,0);}
.m98_c00293{transform:matrix(0.218622,-0.004591,0.005249,0.249945,0,0);-ms-transform:matrix(0.218622,-0.004591,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218622,-0.004591,0.005249,0.249945,0,0);}
.m3b_c00293{transform:matrix(0.218837,-0.004596,0.005249,0.249945,0,0);-ms-transform:matrix(0.218837,-0.004596,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218837,-0.004596,0.005249,0.249945,0,0);}
.m68_c00293{transform:matrix(0.218912,-0.004597,0.005249,0.249945,0,0);-ms-transform:matrix(0.218912,-0.004597,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218912,-0.004597,0.005249,0.249945,0,0);}
.m15_c00293{transform:matrix(0.221166,-0.004644,0.005249,0.249945,0,0);-ms-transform:matrix(0.221166,-0.004644,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221166,-0.004644,0.005249,0.249945,0,0);}
.m63_c00293{transform:matrix(0.221206,-0.004645,0.005249,0.249945,0,0);-ms-transform:matrix(0.221206,-0.004645,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221206,-0.004645,0.005249,0.249945,0,0);}
.m46_c00293{transform:matrix(0.221691,-0.004656,0.005249,0.249945,0,0);-ms-transform:matrix(0.221691,-0.004656,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221691,-0.004656,0.005249,0.249945,0,0);}
.m9e_c00293{transform:matrix(0.222286,-0.004668,0.005249,0.249945,0,0);-ms-transform:matrix(0.222286,-0.004668,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222286,-0.004668,0.005249,0.249945,0,0);}
.m48_c00293{transform:matrix(0.222626,-0.004675,0.005249,0.249945,0,0);-ms-transform:matrix(0.222626,-0.004675,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222626,-0.004675,0.005249,0.249945,0,0);}
.mc6_c00293{transform:matrix(0.222631,-0.004675,0.005249,0.249945,0,0);-ms-transform:matrix(0.222631,-0.004675,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222631,-0.004675,0.005249,0.249945,0,0);}
.m99_c00293{transform:matrix(0.223511,-0.004694,0.005249,0.249945,0,0);-ms-transform:matrix(0.223511,-0.004694,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223511,-0.004694,0.005249,0.249945,0,0);}
.m21_c00293{transform:matrix(0.224311,-0.004711,0.005249,0.249945,0,0);-ms-transform:matrix(0.224311,-0.004711,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224311,-0.004711,0.005249,0.249945,0,0);}
.md6_c00293{transform:matrix(0.224700,-0.004719,0.005249,0.249945,0,0);-ms-transform:matrix(0.224700,-0.004719,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224700,-0.004719,0.005249,0.249945,0,0);}
.m40_c00293{transform:matrix(0.225785,-0.004741,0.005249,0.249945,0,0);-ms-transform:matrix(0.225785,-0.004741,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225785,-0.004741,0.005249,0.249945,0,0);}
.mba_c00293{transform:matrix(0.225795,-0.004742,0.005249,0.249945,0,0);-ms-transform:matrix(0.225795,-0.004742,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225795,-0.004742,0.005249,0.249945,0,0);}
.maa_c00293{transform:matrix(0.225830,-0.004742,0.005249,0.249945,0,0);-ms-transform:matrix(0.225830,-0.004742,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225830,-0.004742,0.005249,0.249945,0,0);}
.mca_c00293{transform:matrix(0.225990,-0.004746,0.005249,0.249945,0,0);-ms-transform:matrix(0.225990,-0.004746,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225990,-0.004746,0.005249,0.249945,0,0);}
.m87_c00293{transform:matrix(0.226450,-0.004755,0.005249,0.249945,0,0);-ms-transform:matrix(0.226450,-0.004755,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226450,-0.004755,0.005249,0.249945,0,0);}
.mb9_c00293{transform:matrix(0.226705,-0.004761,0.005249,0.249945,0,0);-ms-transform:matrix(0.226705,-0.004761,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226705,-0.004761,0.005249,0.249945,0,0);}
.m14_c00293{transform:matrix(0.227285,-0.004773,0.005249,0.249945,0,0);-ms-transform:matrix(0.227285,-0.004773,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227285,-0.004773,0.005249,0.249945,0,0);}
.m62_c00293{transform:matrix(0.227695,-0.004782,0.005249,0.249945,0,0);-ms-transform:matrix(0.227695,-0.004782,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227695,-0.004782,0.005249,0.249945,0,0);}
.m3a_c00293{transform:matrix(0.228510,-0.004799,0.005249,0.249945,0,0);-ms-transform:matrix(0.228510,-0.004799,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228510,-0.004799,0.005249,0.249945,0,0);}
.m1_c00293{transform:matrix(0.228740,-0.004804,0.005249,0.249945,0,0);-ms-transform:matrix(0.228740,-0.004804,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228740,-0.004804,0.005249,0.249945,0,0);}
.md9_c00293{transform:matrix(0.228965,-0.004808,0.005249,0.249945,0,0);-ms-transform:matrix(0.228965,-0.004808,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228965,-0.004808,0.005249,0.249945,0,0);}
.m89_c00293{transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);-ms-transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);}
.m83_c00293{transform:matrix(0.231404,-0.004859,0.005249,0.249945,0,0);-ms-transform:matrix(0.231404,-0.004859,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231404,-0.004859,0.005249,0.249945,0,0);}
.m12_c00293{transform:matrix(0.232024,-0.004873,0.005249,0.249945,0,0);-ms-transform:matrix(0.232024,-0.004873,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232024,-0.004873,0.005249,0.249945,0,0);}
.mda_c00293{transform:matrix(0.234138,-0.004917,0.005249,0.249945,0,0);-ms-transform:matrix(0.234138,-0.004917,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234138,-0.004917,0.005249,0.249945,0,0);}
.m9a_c00293{transform:matrix(0.234348,-0.004921,0.005249,0.249945,0,0);-ms-transform:matrix(0.234348,-0.004921,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234348,-0.004921,0.005249,0.249945,0,0);}
.m96_c00293{transform:matrix(0.234543,-0.004925,0.005249,0.249945,0,0);-ms-transform:matrix(0.234543,-0.004925,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234543,-0.004925,0.005249,0.249945,0,0);}
.m13_c00293{transform:matrix(0.236388,-0.004964,0.005249,0.249945,0,0);-ms-transform:matrix(0.236388,-0.004964,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236388,-0.004964,0.005249,0.249945,0,0);}
.m93_c00293{transform:matrix(0.236433,-0.004965,0.005249,0.249945,0,0);-ms-transform:matrix(0.236433,-0.004965,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236433,-0.004965,0.005249,0.249945,0,0);}
.mc8_c00293{transform:matrix(0.237068,-0.004978,0.005249,0.249945,0,0);-ms-transform:matrix(0.237068,-0.004978,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237068,-0.004978,0.005249,0.249945,0,0);}
.mc9_c00293{transform:matrix(0.238617,-0.005011,0.005249,0.249945,0,0);-ms-transform:matrix(0.238617,-0.005011,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238617,-0.005011,0.005249,0.249945,0,0);}
.m55_c00293{transform:matrix(0.238682,-0.005012,0.005249,0.249945,0,0);-ms-transform:matrix(0.238682,-0.005012,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238682,-0.005012,0.005249,0.249945,0,0);}
.m18_c00293{transform:matrix(0.240627,-0.005053,0.005249,0.249945,0,0);-ms-transform:matrix(0.240627,-0.005053,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240627,-0.005053,0.005249,0.249945,0,0);}
.m1f_c00293{transform:matrix(0.241392,-0.005069,0.005249,0.249945,0,0);-ms-transform:matrix(0.241392,-0.005069,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241392,-0.005069,0.005249,0.249945,0,0);}
.m36_c00293{transform:matrix(0.242796,-0.005099,0.005249,0.249945,0,0);-ms-transform:matrix(0.242796,-0.005099,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242796,-0.005099,0.005249,0.249945,0,0);}
.mdc_c00293{transform:matrix(0.243481,-0.005113,0.005249,0.249945,0,0);-ms-transform:matrix(0.243481,-0.005113,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243481,-0.005113,0.005249,0.249945,0,0);}
.mf1_c00293{transform:matrix(0.244181,-0.005128,0.005249,0.249945,0,0);-ms-transform:matrix(0.244181,-0.005128,0.005249,0.249945,0,0);-webkit-transform:matrix(0.244181,-0.005128,0.005249,0.249945,0,0);}
.m76_c00293{transform:matrix(0.244241,-0.005129,0.005249,0.249945,0,0);-ms-transform:matrix(0.244241,-0.005129,0.005249,0.249945,0,0);-webkit-transform:matrix(0.244241,-0.005129,0.005249,0.249945,0,0);}
.m67_c00293{transform:matrix(0.244626,-0.005137,0.005249,0.249945,0,0);-ms-transform:matrix(0.244626,-0.005137,0.005249,0.249945,0,0);-webkit-transform:matrix(0.244626,-0.005137,0.005249,0.249945,0,0);}
.m2b_c00293{transform:matrix(0.247645,-0.005201,0.005249,0.249945,0,0);-ms-transform:matrix(0.247645,-0.005201,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247645,-0.005201,0.005249,0.249945,0,0);}
.m84_c00293{transform:matrix(0.248850,-0.005226,0.005249,0.249945,0,0);-ms-transform:matrix(0.248850,-0.005226,0.005249,0.249945,0,0);-webkit-transform:matrix(0.248850,-0.005226,0.005249,0.249945,0,0);}
.mbe_c00293{transform:matrix(0.249015,-0.005229,0.005249,0.249945,0,0);-ms-transform:matrix(0.249015,-0.005229,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249015,-0.005229,0.005249,0.249945,0,0);}
.md3_c00293{transform:matrix(0.250720,-0.005265,0.005249,0.249945,0,0);-ms-transform:matrix(0.250720,-0.005265,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250720,-0.005265,0.005249,0.249945,0,0);}
.m2c_c00293{transform:matrix(0.254719,-0.005349,0.005249,0.249945,0,0);-ms-transform:matrix(0.254719,-0.005349,0.005249,0.249945,0,0);-webkit-transform:matrix(0.254719,-0.005349,0.005249,0.249945,0,0);}
.m25_c00293{transform:matrix(0.260428,-0.005469,0.005249,0.249945,0,0);-ms-transform:matrix(0.260428,-0.005469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260428,-0.005469,0.005249,0.249945,0,0);}
.m91_c00293{transform:matrix(0.264542,-0.005555,0.005249,0.249945,0,0);-ms-transform:matrix(0.264542,-0.005555,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264542,-0.005555,0.005249,0.249945,0,0);}
.md7_c00293{transform:matrix(0.265791,-0.005582,0.005249,0.249945,0,0);-ms-transform:matrix(0.265791,-0.005582,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265791,-0.005582,0.005249,0.249945,0,0);}
.mc3_c00293{transform:matrix(0.266356,-0.005593,0.005249,0.249945,0,0);-ms-transform:matrix(0.266356,-0.005593,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266356,-0.005593,0.005249,0.249945,0,0);}
.mc2_c00293{transform:matrix(0.270620,-0.005683,0.005249,0.249945,0,0);-ms-transform:matrix(0.270620,-0.005683,0.005249,0.249945,0,0);-webkit-transform:matrix(0.270620,-0.005683,0.005249,0.249945,0,0);}
.md_c00293{transform:matrix(0.272125,-0.005715,0.005249,0.249945,0,0);-ms-transform:matrix(0.272125,-0.005715,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272125,-0.005715,0.005249,0.249945,0,0);}
.md1_c00293{transform:matrix(0.272600,-0.005725,0.005249,0.249945,0,0);-ms-transform:matrix(0.272600,-0.005725,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272600,-0.005725,0.005249,0.249945,0,0);}
.ma5_c00293{transform:matrix(0.274250,-0.005759,0.005249,0.249945,0,0);-ms-transform:matrix(0.274250,-0.005759,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274250,-0.005759,0.005249,0.249945,0,0);}
.m37_c00293{transform:matrix(0.276784,-0.005812,0.005249,0.249945,0,0);-ms-transform:matrix(0.276784,-0.005812,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276784,-0.005812,0.005249,0.249945,0,0);}
.m3e_c00293{transform:matrix(0.282288,-0.005928,0.005249,0.249945,0,0);-ms-transform:matrix(0.282288,-0.005928,0.005249,0.249945,0,0);-webkit-transform:matrix(0.282288,-0.005928,0.005249,0.249945,0,0);}
.mf5_c00293{transform:matrix(0.288531,-0.006059,0.005249,0.249945,0,0);-ms-transform:matrix(0.288531,-0.006059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.288531,-0.006059,0.005249,0.249945,0,0);}
.md2_c00293{transform:matrix(0.297669,-0.006251,0.005249,0.249945,0,0);-ms-transform:matrix(0.297669,-0.006251,0.005249,0.249945,0,0);-webkit-transform:matrix(0.297669,-0.006251,0.005249,0.249945,0,0);}
.m8e_c00293{transform:matrix(0.323294,-0.006789,0.005249,0.249945,0,0);-ms-transform:matrix(0.323294,-0.006789,0.005249,0.249945,0,0);-webkit-transform:matrix(0.323294,-0.006789,0.005249,0.249945,0,0);}
.m24_c00293{transform:matrix(0.328433,-0.006897,0.005249,0.249945,0,0);-ms-transform:matrix(0.328433,-0.006897,0.005249,0.249945,0,0);-webkit-transform:matrix(0.328433,-0.006897,0.005249,0.249945,0,0);}
.m66_c00293{transform:matrix(0.337591,-0.007089,0.005249,0.249945,0,0);-ms-transform:matrix(0.337591,-0.007089,0.005249,0.249945,0,0);-webkit-transform:matrix(0.337591,-0.007089,0.005249,0.249945,0,0);}
.mf2_c00293{transform:matrix(0.347808,-0.007304,0.005249,0.249945,0,0);-ms-transform:matrix(0.347808,-0.007304,0.005249,0.249945,0,0);-webkit-transform:matrix(0.347808,-0.007304,0.005249,0.249945,0,0);}
.m90_c00293{transform:matrix(0.349713,-0.007344,0.005249,0.249945,0,0);-ms-transform:matrix(0.349713,-0.007344,0.005249,0.249945,0,0);-webkit-transform:matrix(0.349713,-0.007344,0.005249,0.249945,0,0);}
.m2_c00293{transform:matrix(0.350208,-0.007354,0.005249,0.249945,0,0);-ms-transform:matrix(0.350208,-0.007354,0.005249,0.249945,0,0);-webkit-transform:matrix(0.350208,-0.007354,0.005249,0.249945,0,0);}
.ma6_c00293{transform:matrix(0.360246,-0.007565,0.005249,0.249945,0,0);-ms-transform:matrix(0.360246,-0.007565,0.005249,0.249945,0,0);-webkit-transform:matrix(0.360246,-0.007565,0.005249,0.249945,0,0);}
.m54_c00293{transform:matrix(0.373043,-0.007834,0.005249,0.249945,0,0);-ms-transform:matrix(0.373043,-0.007834,0.005249,0.249945,0,0);-webkit-transform:matrix(0.373043,-0.007834,0.005249,0.249945,0,0);}
.m86_c00293{transform:matrix(0.382646,-0.008036,0.005249,0.249945,0,0);-ms-transform:matrix(0.382646,-0.008036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.382646,-0.008036,0.005249,0.249945,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
.fc0_c00293{color:transparent;}
.fs0_c00293{font-size:22.050000px;}
.fse_c00293{font-size:59.863195px;}
.fs9_c00293{font-size:60.913427px;}
.fsb_c00293{font-size:61.963658px;}
.fs10_c00293{font-size:63.013890px;}
.fsa_c00293{font-size:64.064121px;}
.fs3_c00293{font-size:65.114353px;}
.fsf_c00293{font-size:66.164584px;}
.fs4_c00293{font-size:67.214816px;}
.fs1_c00293{font-size:68.265047px;}
.fs7_c00293{font-size:69.315279px;}
.fs11_c00293{font-size:70.365510px;}
.fs8_c00293{font-size:71.415742px;}
.fs2_c00293{font-size:72.465973px;}
.fsd_c00293{font-size:74.566436px;}
.fs6_c00293{font-size:78.767362px;}
.fsc_c00293{font-size:85.068751px;}
.fs5_c00293{font-size:123.927317px;}
.y0_c00293{bottom:0.000000px;}
.yf2_c00293{bottom:19.872715px;}
.yf3_c00293{bottom:20.871129px;}
.yf4_c00293{bottom:21.262651px;}
.yf5_c00293{bottom:21.864648px;}
.yf6_c00293{bottom:22.619142px;}
.yf7_c00293{bottom:22.869500px;}
.yf8_c00293{bottom:23.300906px;}
.yf9_c00293{bottom:24.634799px;}
.yfa_c00293{bottom:25.403826px;}
.yea_c00293{bottom:36.360445px;}
.yeb_c00293{bottom:37.037760px;}
.yec_c00293{bottom:39.566951px;}
.yed_c00293{bottom:41.508939px;}
.yee_c00293{bottom:43.118562px;}
.yef_c00293{bottom:45.087828px;}
.yf0_c00293{bottom:45.808173px;}
.yf1_c00293{bottom:47.274011px;}
.ye3_c00293{bottom:53.363178px;}
.ye4_c00293{bottom:54.692538px;}
.ye5_c00293{bottom:55.401699px;}
.ye6_c00293{bottom:57.008510px;}
.ye7_c00293{bottom:58.715831px;}
.ye8_c00293{bottom:59.559769px;}
.ye9_c00293{bottom:59.945341px;}
.yd9_c00293{bottom:67.955559px;}
.yda_c00293{bottom:69.628495px;}
.ydb_c00293{bottom:70.803399px;}
.ydc_c00293{bottom:71.098966px;}
.ydd_c00293{bottom:72.661638px;}
.yde_c00293{bottom:73.274145px;}
.ydf_c00293{bottom:75.242113px;}
.ye0_c00293{bottom:75.607734px;}
.ye1_c00293{bottom:75.987399px;}
.ye2_c00293{bottom:76.686574px;}
.yd0_c00293{bottom:87.655408px;}
.yd1_c00293{bottom:88.118149px;}
.yd2_c00293{bottom:88.605925px;}
.yd3_c00293{bottom:89.218392px;}
.yd4_c00293{bottom:90.673876px;}
.yd5_c00293{bottom:91.448574px;}
.yd6_c00293{bottom:91.757002px;}
.yd7_c00293{bottom:92.536720px;}
.yd8_c00293{bottom:92.946316px;}
.ycb_c00293{bottom:104.402425px;}
.ycc_c00293{bottom:106.374519px;}
.ycd_c00293{bottom:107.104771px;}
.yce_c00293{bottom:108.198559px;}
.ycf_c00293{bottom:110.520120px;}
.yc3_c00293{bottom:121.682047px;}
.yc4_c00293{bottom:122.785141px;}
.yc5_c00293{bottom:123.407275px;}
.yc6_c00293{bottom:123.680047px;}
.yc7_c00293{bottom:124.516039px;}
.yc8_c00293{bottom:124.852210px;}
.yc9_c00293{bottom:125.897166px;}
.yca_c00293{bottom:126.859767px;}
.ybc_c00293{bottom:138.694333px;}
.ybd_c00293{bottom:139.850367px;}
.ybe_c00293{bottom:140.719674px;}
.ybf_c00293{bottom:141.330258px;}
.yc0_c00293{bottom:142.244212px;}
.yc1_c00293{bottom:144.020323px;}
.yc2_c00293{bottom:144.302640px;}
.yb3_c00293{bottom:156.248059px;}
.yb4_c00293{bottom:157.276477px;}
.yb5_c00293{bottom:157.941360px;}
.yb6_c00293{bottom:158.887335px;}
.yb7_c00293{bottom:159.147208px;}
.yb8_c00293{bottom:159.313689px;}
.yb9_c00293{bottom:160.240618px;}
.yba_c00293{bottom:160.776525px;}
.ybb_c00293{bottom:161.892162px;}
.ya9_c00293{bottom:174.608092px;}
.yaa_c00293{bottom:174.954597px;}
.yab_c00293{bottom:175.143028px;}
.yac_c00293{bottom:175.784593px;}
.yad_c00293{bottom:177.123526px;}
.yae_c00293{bottom:177.368296px;}
.yaf_c00293{bottom:178.340635px;}
.yb0_c00293{bottom:179.109978px;}
.yb1_c00293{bottom:179.843721px;}
.yb2_c00293{bottom:180.207763px;}
.ya0_c00293{bottom:188.118462px;}
.ya1_c00293{bottom:189.096654px;}
.ya2_c00293{bottom:191.270728px;}
.ya3_c00293{bottom:193.027915px;}
.ya4_c00293{bottom:193.559347px;}
.ya5_c00293{bottom:194.830897px;}
.ya6_c00293{bottom:195.474744px;}
.ya7_c00293{bottom:196.882734px;}
.ya8_c00293{bottom:197.307850px;}
.y9a_c00293{bottom:209.443096px;}
.y9b_c00293{bottom:210.845977px;}
.y9c_c00293{bottom:211.371922px;}
.y9d_c00293{bottom:212.449561px;}
.y9e_c00293{bottom:212.627677px;}
.y9f_c00293{bottom:213.055072px;}
.y91_c00293{bottom:225.915697px;}
.y92_c00293{bottom:226.090981px;}
.y93_c00293{bottom:226.866750px;}
.y94_c00293{bottom:228.267282px;}
.y95_c00293{bottom:228.801997px;}
.y96_c00293{bottom:229.129873px;}
.y97_c00293{bottom:230.243358px;}
.y98_c00293{bottom:230.606518px;}
.y99_c00293{bottom:231.401967px;}
.y8a_c00293{bottom:241.569961px;}
.y8b_c00293{bottom:242.693724px;}
.y8c_c00293{bottom:243.185344px;}
.y8d_c00293{bottom:244.132990px;}
.y8e_c00293{bottom:245.340543px;}
.y8f_c00293{bottom:245.710069px;}
.y90_c00293{bottom:247.325295px;}
.y84_c00293{bottom:258.324784px;}
.y85_c00293{bottom:259.084413px;}
.y86_c00293{bottom:259.576233px;}
.y87_c00293{bottom:260.540854px;}
.y88_c00293{bottom:261.839904px;}
.y89_c00293{bottom:262.214310px;}
.y7a_c00293{bottom:275.336832px;}
.y7b_c00293{bottom:275.582659px;}
.y7c_c00293{bottom:276.587559px;}
.y7d_c00293{bottom:277.084171px;}
.y7e_c00293{bottom:278.191809px;}
.y7f_c00293{bottom:278.696454px;}
.y80_c00293{bottom:279.190471px;}
.y81_c00293{bottom:279.519652px;}
.y82_c00293{bottom:279.929698px;}
.y83_c00293{bottom:280.280752px;}
.y73_c00293{bottom:292.082413px;}
.y74_c00293{bottom:292.643593px;}
.y75_c00293{bottom:293.056033px;}
.y76_c00293{bottom:293.898711px;}
.y77_c00293{bottom:294.695512px;}
.y78_c00293{bottom:295.410189px;}
.y79_c00293{bottom:297.095670px;}
.y6f_c00293{bottom:308.831394px;}
.y70_c00293{bottom:311.118820px;}
.y71_c00293{bottom:312.775624px;}
.y72_c00293{bottom:314.010831px;}
.y68_c00293{bottom:326.653399px;}
.y69_c00293{bottom:327.507858px;}
.y6a_c00293{bottom:327.884722px;}
.y6b_c00293{bottom:329.004267px;}
.y6c_c00293{bottom:330.564456px;}
.y6d_c00293{bottom:330.933528px;}
.y6e_c00293{bottom:332.001054px;}
.y60_c00293{bottom:343.127731px;}
.y61_c00293{bottom:343.609879px;}
.y62_c00293{bottom:344.444896px;}
.y63_c00293{bottom:344.929785px;}
.y64_c00293{bottom:346.278186px;}
.y65_c00293{bottom:346.842840px;}
.y66_c00293{bottom:348.090130px;}
.y67_c00293{bottom:349.585872px;}
.y59_c00293{bottom:360.951426px;}
.y5a_c00293{bottom:361.233528px;}
.y5b_c00293{bottom:361.993471px;}
.y5c_c00293{bottom:362.362963px;}
.y5d_c00293{bottom:363.198925px;}
.y5e_c00293{bottom:363.737370px;}
.y5f_c00293{bottom:365.035443px;}
.y52_c00293{bottom:374.728432px;}
.y53_c00293{bottom:376.362394px;}
.y54_c00293{bottom:376.832397px;}
.y55_c00293{bottom:377.846682px;}
.y56_c00293{bottom:378.268651px;}
.y57_c00293{bottom:379.871137px;}
.y58_c00293{bottom:380.336257px;}
.y4b_c00293{bottom:392.278763px;}
.y4c_c00293{bottom:393.494141px;}
.y4d_c00293{bottom:394.334322px;}
.y4e_c00293{bottom:395.656881px;}
.y4f_c00293{bottom:395.934232px;}
.y50_c00293{bottom:396.939828px;}
.y51_c00293{bottom:397.338988px;}
.y46_c00293{bottom:411.993383px;}
.y47_c00293{bottom:414.229141px;}
.y48_c00293{bottom:415.253787px;}
.y49_c00293{bottom:416.772855px;}
.y4a_c00293{bottom:416.998065px;}
.y3e_c00293{bottom:429.815391px;}
.y3f_c00293{bottom:430.729551px;}
.y40_c00293{bottom:431.147199px;}
.y41_c00293{bottom:431.900099px;}
.y42_c00293{bottom:432.499321px;}
.y43_c00293{bottom:432.944773px;}
.y44_c00293{bottom:433.864112px;}
.y45_c00293{bottom:434.035067px;}
.y36_c00293{bottom:445.753692px;}
.y37_c00293{bottom:446.303898px;}
.y38_c00293{bottom:447.374039px;}
.y39_c00293{bottom:448.605488px;}
.y3a_c00293{bottom:449.074683px;}
.y3b_c00293{bottom:449.878855px;}
.y3c_c00293{bottom:450.381012px;}
.y3d_c00293{bottom:450.941971px;}
.y2d_c00293{bottom:463.844219px;}
.y2e_c00293{bottom:464.343828px;}
.y2f_c00293{bottom:464.589177px;}
.y30_c00293{bottom:464.808821px;}
.y31_c00293{bottom:465.269403px;}
.y32_c00293{bottom:465.523576px;}
.y33_c00293{bottom:466.509852px;}
.y34_c00293{bottom:467.051197px;}
.y35_c00293{bottom:467.867855px;}
.y24_c00293{bottom:480.320830px;}
.y25_c00293{bottom:480.650607px;}
.y26_c00293{bottom:481.357867px;}
.y27_c00293{bottom:481.705906px;}
.y28_c00293{bottom:482.634692px;}
.y29_c00293{bottom:482.965004px;}
.y2a_c00293{bottom:484.446979px;}
.y2b_c00293{bottom:484.802516px;}
.y2c_c00293{bottom:485.132292px;}
.y1c_c00293{bottom:496.255722px;}
.y1d_c00293{bottom:496.760802px;}
.y1e_c00293{bottom:498.376542px;}
.y1f_c00293{bottom:499.006282px;}
.y20_c00293{bottom:500.390582px;}
.y21_c00293{bottom:501.043620px;}
.y22_c00293{bottom:501.406651px;}
.y23_c00293{bottom:501.959714px;}
.y13_c00293{bottom:513.540755px;}
.y14_c00293{bottom:515.177898px;}
.y15_c00293{bottom:515.490666px;}
.y16_c00293{bottom:516.006528px;}
.y17_c00293{bottom:517.220454px;}
.y18_c00293{bottom:517.751393px;}
.y19_c00293{bottom:518.354134px;}
.y1a_c00293{bottom:518.931071px;}
.y1b_c00293{bottom:519.676191px;}
.yb_c00293{bottom:530.553160px;}
.yc_c00293{bottom:531.376743px;}
.yd_c00293{bottom:531.957230px;}
.ye_c00293{bottom:533.099220px;}
.yf_c00293{bottom:533.566292px;}
.y10_c00293{bottom:534.119857px;}
.y11_c00293{bottom:535.681315px;}
.y12_c00293{bottom:536.144733px;}
.y2_c00293{bottom:548.106000px;}
.y3_c00293{bottom:549.434765px;}
.y4_c00293{bottom:549.631860px;}
.y5_c00293{bottom:550.028319px;}
.y6_c00293{bottom:551.599161px;}
.y7_c00293{bottom:552.013323px;}
.y8_c00293{bottom:552.478389px;}
.y9_c00293{bottom:553.538805px;}
.ya_c00293{bottom:553.924648px;}
.y1_c00293{bottom:583.200000px;}
.h2_c00293{height:22.050000px;}
.h10_c00293{height:59.863195px;}
.hb_c00293{height:60.913427px;}
.hd_c00293{height:61.963658px;}
.h12_c00293{height:63.013890px;}
.hc_c00293{height:64.064121px;}
.h5_c00293{height:65.114353px;}
.h11_c00293{height:66.164584px;}
.h6_c00293{height:67.214816px;}
.h3_c00293{height:68.265047px;}
.h9_c00293{height:69.315279px;}
.h13_c00293{height:70.365510px;}
.ha_c00293{height:71.415742px;}
.h4_c00293{height:72.465973px;}
.hf_c00293{height:74.566436px;}
.h8_c00293{height:78.767362px;}
.he_c00293{height:85.068751px;}
.h7_c00293{height:123.927317px;}
.h1_c00293{height:618.750000px;}
.h0_c00293{height:619.050000px;}
.w0_c00293{width:359.100000px;}
.w1_c00293{width:359.250000px;}
.x0_c00293{left:0.000000px;}
.x79_c00293{left:30.886140px;}
.x56_c00293{left:33.101723px;}
.x50_c00293{left:34.542687px;}
.x5f_c00293{left:35.951273px;}
.x2a_c00293{left:36.986261px;}
.x11_c00293{left:38.376472px;}
.x2_c00293{left:39.687000px;}
.x63_c00293{left:42.399030px;}
.x5a_c00293{left:46.179830px;}
.x47_c00293{left:49.926027px;}
.x6b_c00293{left:52.982586px;}
.x1c_c00293{left:56.377296px;}
.x4c_c00293{left:58.077132px;}
.x18_c00293{left:61.336317px;}
.x67_c00293{left:62.406888px;}
.x2b_c00293{left:64.472828px;}
.x23_c00293{left:73.428103px;}
.xb_c00293{left:77.137668px;}
.x57_c00293{left:81.822762px;}
.x64_c00293{left:83.199231px;}
.x78_c00293{left:85.536309px;}
.x60_c00293{left:89.463773px;}
.x24_c00293{left:90.899655px;}
.x70_c00293{left:92.106696px;}
.x1d_c00293{left:95.630253px;}
.x32_c00293{left:97.607351px;}
.x3_c00293{left:102.961500px;}
.x3c_c00293{left:103.991264px;}
.x7c_c00293{left:105.496342px;}
.x25_c00293{left:106.575454px;}
.x41_c00293{left:108.126695px;}
.x12_c00293{left:109.546980px;}
.x4_c00293{left:112.347000px;}
.x1e_c00293{left:114.990481px;}
.x76_c00293{left:116.205122px;}
.x2c_c00293{left:118.004462px;}
.x5b_c00293{left:121.253405px;}
.x13_c00293{left:123.154413px;}
.x48_c00293{left:124.216646px;}
.x33_c00293{left:125.498879px;}
.x42_c00293{left:128.578344px;}
.x73_c00293{left:129.606879px;}
.x5_c00293{left:131.226000px;}
.x19_c00293{left:134.774774px;}
.x7d_c00293{left:137.164165px;}
.x53_c00293{left:138.315513px;}
.x26_c00293{left:139.512805px;}
.x14_c00293{left:145.575468px;}
.x5d_c00293{left:149.336040px;}
.x3d_c00293{left:150.645693px;}
.x51_c00293{left:152.062644px;}
.xc_c00293{left:155.372998px;}
.x27_c00293{left:157.618952px;}
.x38_c00293{left:160.962134px;}
.x1a_c00293{left:163.404675px;}
.x1f_c00293{left:166.578726px;}
.x49_c00293{left:168.240504px;}
.x1_c00293{left:171.180000px;}
.x43_c00293{left:172.661485px;}
.x6e_c00293{left:173.916209px;}
.xd_c00293{left:176.614058px;}
.x2d_c00293{left:179.574753px;}
.x68_c00293{left:181.508369px;}
.x20_c00293{left:184.951891px;}
.x44_c00293{left:191.040230px;}
.x77_c00293{left:192.802835px;}
.x4a_c00293{left:196.596201px;}
.x15_c00293{left:198.379263px;}
.x58_c00293{left:199.570751px;}
.xe_c00293{left:201.759522px;}
.x2e_c00293{left:203.060757px;}
.x4d_c00293{left:205.024545px;}
.x6_c00293{left:206.028000px;}
.x74_c00293{left:209.846919px;}
.x71_c00293{left:211.744685px;}
.x54_c00293{left:213.637938px;}
.x34_c00293{left:215.682750px;}
.x39_c00293{left:217.901225px;}
.x16_c00293{left:221.446787px;}
.x3e_c00293{left:224.129324px;}
.x7_c00293{left:225.750000px;}
.x28_c00293{left:228.094815px;}
.x52_c00293{left:230.073282px;}
.x6c_c00293{left:231.158552px;}
.x61_c00293{left:233.099273px;}
.x69_c00293{left:236.136603px;}
.x5e_c00293{left:237.385226px;}
.x3f_c00293{left:239.551800px;}
.x2f_c00293{left:243.284108px;}
.x35_c00293{left:245.398499px;}
.x8_c00293{left:247.896000px;}
.x66_c00293{left:250.256999px;}
.x1b_c00293{left:255.990222px;}
.x45_c00293{left:260.703300px;}
.x4e_c00293{left:261.703848px;}
.x5c_c00293{left:263.543397px;}
.x4b_c00293{left:264.912068px;}
.x21_c00293{left:267.313089px;}
.x30_c00293{left:268.411143px;}
.x55_c00293{left:269.813273px;}
.x6d_c00293{left:271.652753px;}
.xf_c00293{left:272.756041px;}
.x7a_c00293{left:278.726819px;}
.x46_c00293{left:280.922449px;}
.x59_c00293{left:283.833515px;}
.x22_c00293{left:287.030317px;}
.x6f_c00293{left:291.126752px;}
.x10_c00293{left:293.823100px;}
.x40_c00293{left:295.440828px;}
.x31_c00293{left:296.481242px;}
.x9_c00293{left:298.392000px;}
.x72_c00293{left:300.537543px;}
.x3a_c00293{left:302.314548px;}
.x17_c00293{left:305.171790px;}
.x36_c00293{left:306.684216px;}
.x62_c00293{left:310.014772px;}
.x6a_c00293{left:311.210703px;}
.x75_c00293{left:312.212383px;}
.x3b_c00293{left:314.825336px;}
.xa_c00293{left:316.765500px;}
.x37_c00293{left:318.040634px;}
.x7b_c00293{left:319.823821px;}
.x65_c00293{left:321.886248px;}
.x7e_c00293{left:323.490009px;}
.x29_c00293{left:325.061553px;}
.x4f_c00293{left:329.713931px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fs0_c00293{font-size:19.600000pt;}
.fse_c00293{font-size:53.211729pt;}
.fs9_c00293{font-size:54.145268pt;}
.fsb_c00293{font-size:55.078808pt;}
.fs10_c00293{font-size:56.012347pt;}
.fsa_c00293{font-size:56.945886pt;}
.fs3_c00293{font-size:57.879425pt;}
.fsf_c00293{font-size:58.812964pt;}
.fs4_c00293{font-size:59.746503pt;}
.fs1_c00293{font-size:60.680042pt;}
.fs7_c00293{font-size:61.613581pt;}
.fs11_c00293{font-size:62.547120pt;}
.fs8_c00293{font-size:63.480660pt;}
.fs2_c00293{font-size:64.414199pt;}
.fsd_c00293{font-size:66.281277pt;}
.fs6_c00293{font-size:70.015433pt;}
.fsc_c00293{font-size:75.616668pt;}
.fs5_c00293{font-size:110.157615pt;}
.y0_c00293{bottom:0.000000pt;}
.yf2_c00293{bottom:17.664636pt;}
.yf3_c00293{bottom:18.552115pt;}
.yf4_c00293{bottom:18.900135pt;}
.yf5_c00293{bottom:19.435243pt;}
.yf6_c00293{bottom:20.105904pt;}
.yf7_c00293{bottom:20.328444pt;}
.yf8_c00293{bottom:20.711916pt;}
.yf9_c00293{bottom:21.897599pt;}
.yfa_c00293{bottom:22.581179pt;}
.yea_c00293{bottom:32.320396pt;}
.yeb_c00293{bottom:32.922453pt;}
.yec_c00293{bottom:35.170623pt;}
.yed_c00293{bottom:36.896835pt;}
.yee_c00293{bottom:38.327611pt;}
.yef_c00293{bottom:40.078069pt;}
.yf0_c00293{bottom:40.718376pt;}
.yf1_c00293{bottom:42.021343pt;}
.ye3_c00293{bottom:47.433936pt;}
.ye4_c00293{bottom:48.615589pt;}
.ye5_c00293{bottom:49.245955pt;}
.ye6_c00293{bottom:50.674231pt;}
.ye7_c00293{bottom:52.191849pt;}
.ye8_c00293{bottom:52.942017pt;}
.ye9_c00293{bottom:53.284748pt;}
.yd9_c00293{bottom:60.404941pt;}
.yda_c00293{bottom:61.891996pt;}
.ydb_c00293{bottom:62.936355pt;}
.ydc_c00293{bottom:63.199081pt;}
.ydd_c00293{bottom:64.588123pt;}
.yde_c00293{bottom:65.132573pt;}
.ydf_c00293{bottom:66.881879pt;}
.ye0_c00293{bottom:67.206875pt;}
.ye1_c00293{bottom:67.544355pt;}
.ye2_c00293{bottom:68.165844pt;}
.yd0_c00293{bottom:77.915919pt;}
.yd1_c00293{bottom:78.327244pt;}
.yd2_c00293{bottom:78.760823pt;}
.yd3_c00293{bottom:79.305237pt;}
.yd4_c00293{bottom:80.599001pt;}
.yd5_c00293{bottom:81.287621pt;}
.yd6_c00293{bottom:81.561780pt;}
.yd7_c00293{bottom:82.254863pt;}
.yd8_c00293{bottom:82.618948pt;}
.ycb_c00293{bottom:92.802156pt;}
.ycc_c00293{bottom:94.555128pt;}
.ycd_c00293{bottom:95.204241pt;}
.yce_c00293{bottom:96.176497pt;}
.ycf_c00293{bottom:98.240107pt;}
.yc3_c00293{bottom:108.161820pt;}
.yc4_c00293{bottom:109.142348pt;}
.yc5_c00293{bottom:109.695356pt;}
.yc6_c00293{bottom:109.937820pt;}
.yc7_c00293{bottom:110.680924pt;}
.yc8_c00293{bottom:110.979743pt;}
.yc9_c00293{bottom:111.908592pt;}
.yca_c00293{bottom:112.764237pt;}
.ybc_c00293{bottom:123.283852pt;}
.ybd_c00293{bottom:124.311437pt;}
.ybe_c00293{bottom:125.084155pt;}
.ybf_c00293{bottom:125.626896pt;}
.yc0_c00293{bottom:126.439300pt;}
.yc1_c00293{bottom:128.018065pt;}
.yc2_c00293{bottom:128.269013pt;}
.yb3_c00293{bottom:138.887164pt;}
.yb4_c00293{bottom:139.801313pt;}
.yb5_c00293{bottom:140.392320pt;}
.yb6_c00293{bottom:141.233187pt;}
.yb7_c00293{bottom:141.464185pt;}
.yb8_c00293{bottom:141.612168pt;}
.yb9_c00293{bottom:142.436105pt;}
.yba_c00293{bottom:142.912467pt;}
.ybb_c00293{bottom:143.904144pt;}
.ya9_c00293{bottom:155.207193pt;}
.yaa_c00293{bottom:155.515197pt;}
.yab_c00293{bottom:155.682692pt;}
.yac_c00293{bottom:156.252972pt;}
.yad_c00293{bottom:157.443135pt;}
.yae_c00293{bottom:157.660708pt;}
.yaf_c00293{bottom:158.525009pt;}
.yb0_c00293{bottom:159.208869pt;}
.yb1_c00293{bottom:159.861085pt;}
.yb2_c00293{bottom:160.184679pt;}
.ya0_c00293{bottom:167.216411pt;}
.ya1_c00293{bottom:168.085915pt;}
.ya2_c00293{bottom:170.018425pt;}
.ya3_c00293{bottom:171.580369pt;}
.ya4_c00293{bottom:172.052753pt;}
.ya5_c00293{bottom:173.183020pt;}
.ya6_c00293{bottom:173.755328pt;}
.ya7_c00293{bottom:175.006875pt;}
.ya8_c00293{bottom:175.384756pt;}
.y9a_c00293{bottom:186.171641pt;}
.y9b_c00293{bottom:187.418647pt;}
.y9c_c00293{bottom:187.886153pt;}
.y9d_c00293{bottom:188.844055pt;}
.y9e_c00293{bottom:189.002380pt;}
.y9f_c00293{bottom:189.382287pt;}
.y91_c00293{bottom:200.813953pt;}
.y92_c00293{bottom:200.969761pt;}
.y93_c00293{bottom:201.659333pt;}
.y94_c00293{bottom:202.904251pt;}
.y95_c00293{bottom:203.379553pt;}
.y96_c00293{bottom:203.670999pt;}
.y97_c00293{bottom:204.660763pt;}
.y98_c00293{bottom:204.983572pt;}
.y99_c00293{bottom:205.690637pt;}
.y8a_c00293{bottom:214.728855pt;}
.y8b_c00293{bottom:215.727755pt;}
.y8c_c00293{bottom:216.164751pt;}
.y8d_c00293{bottom:217.007103pt;}
.y8e_c00293{bottom:218.080483pt;}
.y8f_c00293{bottom:218.408951pt;}
.y90_c00293{bottom:219.844707pt;}
.y84_c00293{bottom:229.622031pt;}
.y85_c00293{bottom:230.297256pt;}
.y86_c00293{bottom:230.734429pt;}
.y87_c00293{bottom:231.591871pt;}
.y88_c00293{bottom:232.746581pt;}
.y89_c00293{bottom:233.079387pt;}
.y7a_c00293{bottom:244.743851pt;}
.y7b_c00293{bottom:244.962364pt;}
.y7c_c00293{bottom:245.855608pt;}
.y7d_c00293{bottom:246.297041pt;}
.y7e_c00293{bottom:247.281608pt;}
.y7f_c00293{bottom:247.730181pt;}
.y80_c00293{bottom:248.169308pt;}
.y81_c00293{bottom:248.461913pt;}
.y82_c00293{bottom:248.826399pt;}
.y83_c00293{bottom:249.138447pt;}
.y73_c00293{bottom:259.628812pt;}
.y74_c00293{bottom:260.127639pt;}
.y75_c00293{bottom:260.494252pt;}
.y76_c00293{bottom:261.243299pt;}
.y77_c00293{bottom:261.951567pt;}
.y78_c00293{bottom:262.586835pt;}
.y79_c00293{bottom:264.085040pt;}
.y6f_c00293{bottom:274.516795pt;}
.y70_c00293{bottom:276.550063pt;}
.y71_c00293{bottom:278.022777pt;}
.y72_c00293{bottom:279.120739pt;}
.y68_c00293{bottom:290.358577pt;}
.y69_c00293{bottom:291.118096pt;}
.y6a_c00293{bottom:291.453087pt;}
.y6b_c00293{bottom:292.448237pt;}
.y6c_c00293{bottom:293.835072pt;}
.y6d_c00293{bottom:294.163136pt;}
.y6e_c00293{bottom:295.112048pt;}
.y60_c00293{bottom:305.002428pt;}
.y61_c00293{bottom:305.431004pt;}
.y62_c00293{bottom:306.173241pt;}
.y63_c00293{bottom:306.604253pt;}
.y64_c00293{bottom:307.802832pt;}
.y65_c00293{bottom:308.304747pt;}
.y66_c00293{bottom:309.413449pt;}
.y67_c00293{bottom:310.742997pt;}
.y59_c00293{bottom:320.845712pt;}
.y5a_c00293{bottom:321.096469pt;}
.y5b_c00293{bottom:321.771975pt;}
.y5c_c00293{bottom:322.100412pt;}
.y5d_c00293{bottom:322.843489pt;}
.y5e_c00293{bottom:323.322107pt;}
.y5f_c00293{bottom:324.475949pt;}
.y52_c00293{bottom:333.091940pt;}
.y53_c00293{bottom:334.544351pt;}
.y54_c00293{bottom:334.962131pt;}
.y55_c00293{bottom:335.863717pt;}
.y56_c00293{bottom:336.238801pt;}
.y57_c00293{bottom:337.663233pt;}
.y58_c00293{bottom:338.076673pt;}
.y4b_c00293{bottom:348.692233pt;}
.y4c_c00293{bottom:349.772569pt;}
.y4d_c00293{bottom:350.519397pt;}
.y4e_c00293{bottom:351.695005pt;}
.y4f_c00293{bottom:351.941540pt;}
.y50_c00293{bottom:352.835403pt;}
.y51_c00293{bottom:353.190212pt;}
.y46_c00293{bottom:366.216340pt;}
.y47_c00293{bottom:368.203681pt;}
.y48_c00293{bottom:369.114477pt;}
.y49_c00293{bottom:370.464760pt;}
.y4a_c00293{bottom:370.664947pt;}
.y3e_c00293{bottom:382.058125pt;}
.y3f_c00293{bottom:382.870712pt;}
.y40_c00293{bottom:383.241955pt;}
.y41_c00293{bottom:383.911199pt;}
.y42_c00293{bottom:384.443841pt;}
.y43_c00293{bottom:384.839799pt;}
.y44_c00293{bottom:385.656988pt;}
.y45_c00293{bottom:385.808948pt;}
.y36_c00293{bottom:396.225504pt;}
.y37_c00293{bottom:396.714576pt;}
.y38_c00293{bottom:397.665812pt;}
.y39_c00293{bottom:398.760433pt;}
.y3a_c00293{bottom:399.177496pt;}
.y3b_c00293{bottom:399.892316pt;}
.y3c_c00293{bottom:400.338677pt;}
.y3d_c00293{bottom:400.837308pt;}
.y2d_c00293{bottom:412.305972pt;}
.y2e_c00293{bottom:412.750069pt;}
.y2f_c00293{bottom:412.968157pt;}
.y30_c00293{bottom:413.163396pt;}
.y31_c00293{bottom:413.572803pt;}
.y32_c00293{bottom:413.798735pt;}
.y33_c00293{bottom:414.675424pt;}
.y34_c00293{bottom:415.156620pt;}
.y35_c00293{bottom:415.882537pt;}
.y24_c00293{bottom:426.951849pt;}
.y25_c00293{bottom:427.244984pt;}
.y26_c00293{bottom:427.873660pt;}
.y27_c00293{bottom:428.183028pt;}
.y28_c00293{bottom:429.008615pt;}
.y29_c00293{bottom:429.302225pt;}
.y2a_c00293{bottom:430.619537pt;}
.y2b_c00293{bottom:430.935569pt;}
.y2c_c00293{bottom:431.228704pt;}
.y1c_c00293{bottom:441.116197pt;}
.y1d_c00293{bottom:441.565157pt;}
.y1e_c00293{bottom:443.001371pt;}
.y1f_c00293{bottom:443.561140pt;}
.y20_c00293{bottom:444.791628pt;}
.y21_c00293{bottom:445.372107pt;}
.y22_c00293{bottom:445.694801pt;}
.y23_c00293{bottom:446.186412pt;}
.y13_c00293{bottom:456.480671pt;}
.y14_c00293{bottom:457.935909pt;}
.y15_c00293{bottom:458.213925pt;}
.y16_c00293{bottom:458.672469pt;}
.y17_c00293{bottom:459.751515pt;}
.y18_c00293{bottom:460.223460pt;}
.y19_c00293{bottom:460.759231pt;}
.y1a_c00293{bottom:461.272063pt;}
.y1b_c00293{bottom:461.934392pt;}
.yb_c00293{bottom:471.602809pt;}
.yc_c00293{bottom:472.334883pt;}
.yd_c00293{bottom:472.850871pt;}
.ye_c00293{bottom:473.865973pt;}
.yf_c00293{bottom:474.281148pt;}
.y10_c00293{bottom:474.773207pt;}
.y11_c00293{bottom:476.161169pt;}
.y12_c00293{bottom:476.573096pt;}
.y2_c00293{bottom:487.205333pt;}
.y3_c00293{bottom:488.386457pt;}
.y4_c00293{bottom:488.561653pt;}
.y5_c00293{bottom:488.914061pt;}
.y6_c00293{bottom:490.310365pt;}
.y7_c00293{bottom:490.678509pt;}
.y8_c00293{bottom:491.091901pt;}
.y9_c00293{bottom:492.034493pt;}
.ya_c00293{bottom:492.377465pt;}
.y1_c00293{bottom:518.400000pt;}
.h2_c00293{height:19.600000pt;}
.h10_c00293{height:53.211729pt;}
.hb_c00293{height:54.145268pt;}
.hd_c00293{height:55.078808pt;}
.h12_c00293{height:56.012347pt;}
.hc_c00293{height:56.945886pt;}
.h5_c00293{height:57.879425pt;}
.h11_c00293{height:58.812964pt;}
.h6_c00293{height:59.746503pt;}
.h3_c00293{height:60.680042pt;}
.h9_c00293{height:61.613581pt;}
.h13_c00293{height:62.547120pt;}
.ha_c00293{height:63.480660pt;}
.h4_c00293{height:64.414199pt;}
.hf_c00293{height:66.281277pt;}
.h8_c00293{height:70.015433pt;}
.he_c00293{height:75.616668pt;}
.h7_c00293{height:110.157615pt;}
.h1_c00293{height:550.000000pt;}
.h0_c00293{height:550.266667pt;}
.w0_c00293{width:319.200000pt;}
.w1_c00293{width:319.333333pt;}
.x0_c00293{left:0.000000pt;}
.x79_c00293{left:27.454347pt;}
.x56_c00293{left:29.423753pt;}
.x50_c00293{left:30.704611pt;}
.x5f_c00293{left:31.956687pt;}
.x2a_c00293{left:32.876676pt;}
.x11_c00293{left:34.112420pt;}
.x2_c00293{left:35.277333pt;}
.x63_c00293{left:37.688027pt;}
.x5a_c00293{left:41.048737pt;}
.x47_c00293{left:44.378691pt;}
.x6b_c00293{left:47.095632pt;}
.x1c_c00293{left:50.113152pt;}
.x4c_c00293{left:51.624117pt;}
.x18_c00293{left:54.521171pt;}
.x67_c00293{left:55.472789pt;}
.x2b_c00293{left:57.309180pt;}
.x23_c00293{left:65.269425pt;}
.xb_c00293{left:68.566816pt;}
.x57_c00293{left:72.731344pt;}
.x64_c00293{left:73.954872pt;}
.x78_c00293{left:76.032275pt;}
.x60_c00293{left:79.523353pt;}
.x24_c00293{left:80.799693pt;}
.x70_c00293{left:81.872619pt;}
.x1d_c00293{left:85.004669pt;}
.x32_c00293{left:86.762089pt;}
.x3_c00293{left:91.521333pt;}
.x3c_c00293{left:92.436679pt;}
.x7c_c00293{left:93.774527pt;}
.x25_c00293{left:94.733737pt;}
.x41_c00293{left:96.112617pt;}
.x12_c00293{left:97.375093pt;}
.x4_c00293{left:99.864000pt;}
.x1e_c00293{left:102.213761pt;}
.x76_c00293{left:103.293441pt;}
.x2c_c00293{left:104.892855pt;}
.x5b_c00293{left:107.780804pt;}
.x13_c00293{left:109.470589pt;}
.x48_c00293{left:110.414796pt;}
.x33_c00293{left:111.554559pt;}
.x42_c00293{left:114.291861pt;}
.x73_c00293{left:115.206115pt;}
.x5_c00293{left:116.645333pt;}
.x19_c00293{left:119.799799pt;}
.x7d_c00293{left:121.923703pt;}
.x53_c00293{left:122.947123pt;}
.x26_c00293{left:124.011383pt;}
.x14_c00293{left:129.400416pt;}
.x5d_c00293{left:132.743147pt;}
.x3d_c00293{left:133.907283pt;}
.x51_c00293{left:135.166795pt;}
.xc_c00293{left:138.109332pt;}
.x27_c00293{left:140.105735pt;}
.x38_c00293{left:143.077452pt;}
.x1a_c00293{left:145.248600pt;}
.x1f_c00293{left:148.069979pt;}
.x49_c00293{left:149.547115pt;}
.x1_c00293{left:152.160000pt;}
.x43_c00293{left:153.476876pt;}
.x6e_c00293{left:154.592185pt;}
.xd_c00293{left:156.990273pt;}
.x2d_c00293{left:159.622003pt;}
.x68_c00293{left:161.340772pt;}
.x20_c00293{left:164.401681pt;}
.x44_c00293{left:169.813537pt;}
.x77_c00293{left:171.380297pt;}
.x4a_c00293{left:174.752179pt;}
.x15_c00293{left:176.337123pt;}
.x58_c00293{left:177.396223pt;}
.xe_c00293{left:179.341797pt;}
.x2e_c00293{left:180.498451pt;}
.x4d_c00293{left:182.244040pt;}
.x6_c00293{left:183.136000pt;}
.x74_c00293{left:186.530595pt;}
.x71_c00293{left:188.217497pt;}
.x54_c00293{left:189.900389pt;}
.x34_c00293{left:191.718000pt;}
.x39_c00293{left:193.689977pt;}
.x16_c00293{left:196.841588pt;}
.x3e_c00293{left:199.226065pt;}
.x7_c00293{left:200.666667pt;}
.x28_c00293{left:202.750947pt;}
.x52_c00293{left:204.509584pt;}
.x6c_c00293{left:205.474268pt;}
.x61_c00293{left:207.199353pt;}
.x69_c00293{left:209.899203pt;}
.x5e_c00293{left:211.009089pt;}
.x3f_c00293{left:212.934933pt;}
.x2f_c00293{left:216.252540pt;}
.x35_c00293{left:218.131999pt;}
.x8_c00293{left:220.352000pt;}
.x66_c00293{left:222.450665pt;}
.x1b_c00293{left:227.546864pt;}
.x45_c00293{left:231.736267pt;}
.x4e_c00293{left:232.625643pt;}
.x5c_c00293{left:234.260797pt;}
.x4b_c00293{left:235.477393pt;}
.x21_c00293{left:237.611635pt;}
.x30_c00293{left:238.587683pt;}
.x55_c00293{left:239.834020pt;}
.x6d_c00293{left:241.469113pt;}
.xf_c00293{left:242.449815pt;}
.x7a_c00293{left:247.757172pt;}
.x46_c00293{left:249.708844pt;}
.x59_c00293{left:252.296457pt;}
.x22_c00293{left:255.138060pt;}
.x6f_c00293{left:258.779335pt;}
.x10_c00293{left:261.176089pt;}
.x40_c00293{left:262.614069pt;}
.x31_c00293{left:263.538881pt;}
.x9_c00293{left:265.237333pt;}
.x72_c00293{left:267.144483pt;}
.x3a_c00293{left:268.724043pt;}
.x17_c00293{left:271.263813pt;}
.x36_c00293{left:272.608192pt;}
.x62_c00293{left:275.568687pt;}
.x6a_c00293{left:276.631736pt;}
.x75_c00293{left:277.522119pt;}
.x3b_c00293{left:279.844743pt;}
.xa_c00293{left:281.569333pt;}
.x37_c00293{left:282.702785pt;}
.x7b_c00293{left:284.287841pt;}
.x65_c00293{left:286.121109pt;}
.x7e_c00293{left:287.546675pt;}
.x29_c00293{left:288.943603pt;}
.x4f_c00293{left:293.079049pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00294 {
    display:none;
  }
  .loading-indicator_c00294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00294 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00294 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00294" -> "#page-container .classname_c00294")
 */
.pf_c00294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00294 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00294 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00294 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00294 {overflow:visible;}
  }
}
.c_c00294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00294 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00294:after { /* webkit #35443 */
  content: '';
}
.t_c00294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00294 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00294 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00294 { /* info for Javascript */
  display:none;
}
.l_c00294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00294:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00294 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00294.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m89_c00294{transform:matrix(0.006060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006060,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.021305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021305,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.132741,0.002788,-0.005249,0.249945,0,0);-ms-transform:matrix(0.132741,0.002788,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.132741,0.002788,-0.005249,0.249945,0,0);}
.ma0_c00294{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m53_c00294{transform:matrix(0.146428,0.003075,-0.005249,0.249945,0,0);-ms-transform:matrix(0.146428,0.003075,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.146428,0.003075,-0.005249,0.249945,0,0);}
.m54_c00294{transform:matrix(0.147393,0.003095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147393,0.003095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147393,0.003095,-0.005249,0.249945,0,0);}
.md5_c00294{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{transform:matrix(0.149482,0.003139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149482,0.003139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149482,0.003139,-0.005249,0.249945,0,0);}
.m77_c00294{transform:matrix(0.152096,0.003194,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152096,0.003194,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152096,0.003194,-0.005249,0.249945,0,0);}
.m7e_c00294{transform:matrix(0.153966,0.003233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153966,0.003233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153966,0.003233,-0.005249,0.249945,0,0);}
.m33_c00294{transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155901,0.003274,-0.005249,0.249945,0,0);}
.me5_c00294{transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{transform:matrix(0.157925,0.003316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157925,0.003316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157925,0.003316,-0.005249,0.249945,0,0);}
.ma6_c00294{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.m78_c00294{transform:matrix(0.159175,0.003343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159175,0.003343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159175,0.003343,-0.005249,0.249945,0,0);}
.mf3_c00294{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.162319,0.003409,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162319,0.003409,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162319,0.003409,-0.005249,0.249945,0,0);}
.m5d_c00294{transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162534,0.003413,-0.005249,0.249945,0,0);}
.m15_c00294{transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);}
.mea_c00294{transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);}
.m76_c00294{transform:matrix(0.163434,0.003432,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163434,0.003432,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163434,0.003432,-0.005249,0.249945,0,0);}
.md_c00294{transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);}
.mb_c00294{transform:matrix(0.164309,0.003450,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164309,0.003450,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164309,0.003450,-0.005249,0.249945,0,0);}
.m55_c00294{transform:matrix(0.164944,0.003464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164944,0.003464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164944,0.003464,-0.005249,0.249945,0,0);}
.m4_c00294{transform:matrix(0.165039,0.003466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165039,0.003466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165039,0.003466,-0.005249,0.249945,0,0);}
.m13_c00294{transform:matrix(0.166403,0.003494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166403,0.003494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166403,0.003494,-0.005249,0.249945,0,0);}
.m8d_c00294{transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);}
.md6_c00294{transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166540,0.000000,0.000000,0.250000,0,0);}
.m7d_c00294{transform:matrix(0.167048,0.003508,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167048,0.003508,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167048,0.003508,-0.005249,0.249945,0,0);}
.m46_c00294{transform:matrix(0.167463,0.003517,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167463,0.003517,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167463,0.003517,-0.005249,0.249945,0,0);}
.m40_c00294{transform:matrix(0.168393,0.003536,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168393,0.003536,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168393,0.003536,-0.005249,0.249945,0,0);}
.m9_c00294{transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);}
.m96_c00294{transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m92_c00294{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00294{transform:matrix(0.170977,0.003591,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170977,0.003591,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170977,0.003591,-0.005249,0.249945,0,0);}
.m42_c00294{transform:matrix(0.171002,0.003591,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171002,0.003591,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171002,0.003591,-0.005249,0.249945,0,0);}
.m1a_c00294{transform:matrix(0.171432,0.003600,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171432,0.003600,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171432,0.003600,-0.005249,0.249945,0,0);}
.m97_c00294{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.ma2_c00294{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.mc8_c00294{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.173427,0.003642,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173427,0.003642,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173427,0.003642,-0.005249,0.249945,0,0);}
.m9f_c00294{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m8e_c00294{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.176421,0.003705,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176421,0.003705,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176421,0.003705,-0.005249,0.249945,0,0);}
.mda_c00294{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00294{transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);}
.m64_c00294{transform:matrix(0.178276,0.003744,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178276,0.003744,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178276,0.003744,-0.005249,0.249945,0,0);}
.m18_c00294{transform:matrix(0.179215,0.003764,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179215,0.003764,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179215,0.003764,-0.005249,0.249945,0,0);}
.m27_c00294{transform:matrix(0.179840,0.003777,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179840,0.003777,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179840,0.003777,-0.005249,0.249945,0,0);}
.m1d_c00294{transform:matrix(0.180775,0.003796,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180775,0.003796,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180775,0.003796,-0.005249,0.249945,0,0);}
.me1_c00294{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m7c_c00294{transform:matrix(0.181625,0.003814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181625,0.003814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181625,0.003814,-0.005249,0.249945,0,0);}
.m9c_c00294{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.182240,0.003827,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182240,0.003827,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182240,0.003827,-0.005249,0.249945,0,0);}
.m3_c00294{transform:matrix(0.182465,0.003832,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182465,0.003832,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182465,0.003832,-0.005249,0.249945,0,0);}
.m3a_c00294{transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182725,0.003837,-0.005249,0.249945,0,0);}
.ma_c00294{transform:matrix(0.183000,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183000,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183000,0.003843,-0.005249,0.249945,0,0);}
.m34_c00294{transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);}
.mf2_c00294{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.mce_c00294{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.mc5_c00294{transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);}
.mf4_c00294{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.m74_c00294{transform:matrix(0.185754,0.003901,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185754,0.003901,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185754,0.003901,-0.005249,0.249945,0,0);}
.m56_c00294{transform:matrix(0.185834,0.003903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185834,0.003903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185834,0.003903,-0.005249,0.249945,0,0);}
.me_c00294{transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);}
.m29_c00294{transform:matrix(0.187149,0.003930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187149,0.003930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187149,0.003930,-0.005249,0.249945,0,0);}
.m22_c00294{transform:matrix(0.187294,0.003933,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187294,0.003933,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187294,0.003933,-0.005249,0.249945,0,0);}
.mab_c00294{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.m58_c00294{transform:matrix(0.188119,0.003950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188119,0.003950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188119,0.003950,-0.005249,0.249945,0,0);}
.m45_c00294{transform:matrix(0.188199,0.003952,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188199,0.003952,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188199,0.003952,-0.005249,0.249945,0,0);}
.mf9_c00294{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);}
.m86_c00294{transform:matrix(0.189107,0.006815,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189107,0.006815,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189107,0.006815,-0.009003,0.249838,0,0);}
.m8_c00294{transform:matrix(0.189168,0.003973,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189168,0.003973,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189168,0.003973,-0.005249,0.249945,0,0);}
.m52_c00294{transform:matrix(0.189418,0.003978,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189418,0.003978,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189418,0.003978,-0.005249,0.249945,0,0);}
.mcf_c00294{transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);}
.m8b_c00294{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.mb7_c00294{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.mac_c00294{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m50_c00294{transform:matrix(0.192428,0.004041,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192428,0.004041,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192428,0.004041,-0.005249,0.249945,0,0);}
.mb4_c00294{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m93_c00294{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m4d_c00294{transform:matrix(0.192982,0.004053,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192982,0.004053,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192982,0.004053,-0.005249,0.249945,0,0);}
.m2d_c00294{transform:matrix(0.193017,0.004053,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193017,0.004053,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193017,0.004053,-0.005249,0.249945,0,0);}
.m79_c00294{transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);}
.m5e_c00294{transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193782,0.004069,-0.005249,0.249945,0,0);}
.m16_c00294{transform:matrix(0.194252,0.004079,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194252,0.004079,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194252,0.004079,-0.005249,0.249945,0,0);}
.mad_c00294{transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194255,0.000000,0.000000,0.250000,0,0);}
.mf6_c00294{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.195297,0.004101,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195297,0.004101,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195297,0.004101,-0.005249,0.249945,0,0);}
.m6_c00294{transform:matrix(0.195552,0.004107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195552,0.004107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195552,0.004107,-0.005249,0.249945,0,0);}
.mcd_c00294{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(0.196012,0.004116,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196012,0.004116,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196012,0.004116,-0.005249,0.249945,0,0);}
.m3d_c00294{transform:matrix(0.196282,0.004122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196282,0.004122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196282,0.004122,-0.005249,0.249945,0,0);}
.m41_c00294{transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);}
.m84_c00294{transform:matrix(0.196862,0.007094,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196862,0.007094,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196862,0.007094,-0.009003,0.249838,0,0);}
.ma8_c00294{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.m85_c00294{transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197767,0.007127,-0.009003,0.249838,0,0);}
.m51_c00294{transform:matrix(0.197841,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197841,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197841,0.004155,-0.005249,0.249945,0,0);}
.m8f_c00294{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00294{transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);}
.md4_c00294{transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);}
.md3_c00294{transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);}
.mc4_c00294{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.me8_c00294{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m39_c00294{transform:matrix(0.200386,0.004208,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200386,0.004208,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200386,0.004208,-0.005249,0.249945,0,0);}
.m5_c00294{transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);}
.m49_c00294{transform:matrix(0.200796,0.004217,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200796,0.004217,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200796,0.004217,-0.005249,0.249945,0,0);}
.m10_c00294{transform:matrix(0.201026,0.004222,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201026,0.004222,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201026,0.004222,-0.005249,0.249945,0,0);}
.m94_c00294{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.md7_c00294{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.m6c_c00294{transform:matrix(0.201556,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201556,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201556,0.004233,-0.005249,0.249945,0,0);}
.mf1_c00294{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.ma1_c00294{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00294{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.md1_c00294{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.m5c_c00294{transform:matrix(0.202260,0.004247,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202260,0.004247,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202260,0.004247,-0.005249,0.249945,0,0);}
.m72_c00294{transform:matrix(0.203545,0.004274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203545,0.004274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203545,0.004274,-0.005249,0.249945,0,0);}
.m69_c00294{transform:matrix(0.203990,0.004284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203990,0.004284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203990,0.004284,-0.005249,0.249945,0,0);}
.m9b_c00294{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.mb3_c00294{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.m68_c00294{transform:matrix(0.204675,0.004298,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204675,0.004298,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204675,0.004298,-0.005249,0.249945,0,0);}
.m38_c00294{transform:matrix(0.204790,0.004301,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204790,0.004301,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204790,0.004301,-0.005249,0.249945,0,0);}
.me3_c00294{transform:matrix(0.205135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205135,0.000000,0.000000,0.250000,0,0);}
.m7f_c00294{transform:matrix(0.205282,0.007398,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205282,0.007398,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205282,0.007398,-0.009003,0.249838,0,0);}
.m65_c00294{transform:matrix(0.205495,0.004315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205495,0.004315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205495,0.004315,-0.005249,0.249945,0,0);}
.mcb_c00294{transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);}
.ma9_c00294{transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);}
.m57_c00294{transform:matrix(0.207039,0.004348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207039,0.004348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207039,0.004348,-0.005249,0.249945,0,0);}
.m6d_c00294{transform:matrix(0.207149,0.004350,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207149,0.004350,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207149,0.004350,-0.005249,0.249945,0,0);}
.m71_c00294{transform:matrix(0.207179,0.004351,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207179,0.004351,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207179,0.004351,-0.005249,0.249945,0,0);}
.m23_c00294{transform:matrix(0.207244,0.004352,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207244,0.004352,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207244,0.004352,-0.005249,0.249945,0,0);}
.mf5_c00294{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.mf7_c00294{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m4c_c00294{transform:matrix(0.209189,0.004393,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209189,0.004393,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209189,0.004393,-0.005249,0.249945,0,0);}
.m37_c00294{transform:matrix(0.209639,0.004402,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209639,0.004402,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209639,0.004402,-0.005249,0.249945,0,0);}
.m63_c00294{transform:matrix(0.210159,0.004413,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210159,0.004413,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210159,0.004413,-0.005249,0.249945,0,0);}
.mf8_c00294{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00294{transform:matrix(0.210669,0.004424,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210669,0.004424,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210669,0.004424,-0.005249,0.249945,0,0);}
.mdc_c00294{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.maf_c00294{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.m98_c00294{transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);}
.m82_c00294{transform:matrix(0.212422,0.007655,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212422,0.007655,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212422,0.007655,-0.009003,0.249838,0,0);}
.mb8_c00294{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m80_c00294{transform:matrix(0.212707,0.007665,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212707,0.007665,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212707,0.007665,-0.009003,0.249838,0,0);}
.mc3_c00294{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m99_c00294{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.m67_c00294{transform:matrix(0.213128,0.004476,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213128,0.004476,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213128,0.004476,-0.005249,0.249945,0,0);}
.mdb_c00294{transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00294{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.mc6_c00294{transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);}
.mcc_c00294{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.md8_c00294{transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.216412,0.004545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216412,0.004545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216412,0.004545,-0.005249,0.249945,0,0);}
.mc7_c00294{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.me6_c00294{transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{transform:matrix(0.217537,0.004568,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217537,0.004568,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217537,0.004568,-0.005249,0.249945,0,0);}
.m2c_c00294{transform:matrix(0.218662,0.004592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218662,0.004592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218662,0.004592,-0.005249,0.249945,0,0);}
.mb6_c00294{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m95_c00294{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.mb0_c00294{transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);}
.m66_c00294{transform:matrix(0.220786,0.004637,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220786,0.004637,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220786,0.004637,-0.005249,0.249945,0,0);}
.m62_c00294{transform:matrix(0.220816,0.004637,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220816,0.004637,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220816,0.004637,-0.005249,0.249945,0,0);}
.mc1_c00294{transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);}
.maa_c00294{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m8c_c00294{transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);}
.m48_c00294{transform:matrix(0.222581,0.004674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222581,0.004674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222581,0.004674,-0.005249,0.249945,0,0);}
.m9d_c00294{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.222851,0.004680,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222851,0.004680,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222851,0.004680,-0.005249,0.249945,0,0);}
.m75_c00294{transform:matrix(0.223201,0.004687,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223201,0.004687,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223201,0.004687,-0.005249,0.249945,0,0);}
.m14_c00294{transform:matrix(0.223281,0.004689,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223281,0.004689,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223281,0.004689,-0.005249,0.249945,0,0);}
.m1e_c00294{transform:matrix(0.223536,0.004694,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223536,0.004694,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223536,0.004694,-0.005249,0.249945,0,0);}
.m7_c00294{transform:matrix(0.223741,0.004699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223741,0.004699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223741,0.004699,-0.005249,0.249945,0,0);}
.m21_c00294{transform:matrix(0.224171,0.004708,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224171,0.004708,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224171,0.004708,-0.005249,0.249945,0,0);}
.m12_c00294{transform:matrix(0.225150,0.004728,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225150,0.004728,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225150,0.004728,-0.005249,0.249945,0,0);}
.mde_c00294{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.225980,0.004746,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225980,0.004746,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225980,0.004746,-0.005249,0.249945,0,0);}
.mdf_c00294{transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00294{transform:matrix(0.227755,0.004783,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227755,0.004783,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227755,0.004783,-0.005249,0.249945,0,0);}
.ma7_c00294{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m73_c00294{transform:matrix(0.228245,0.004793,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228245,0.004793,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228245,0.004793,-0.005249,0.249945,0,0);}
.mfa_c00294{transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);}
.m6b_c00294{transform:matrix(0.228955,0.004808,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228955,0.004808,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228955,0.004808,-0.005249,0.249945,0,0);}
.mb2_c00294{transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);}
.m81_c00294{transform:matrix(0.229666,0.008276,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229666,0.008276,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229666,0.008276,-0.009003,0.249838,0,0);}
.m9e_c00294{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.229979,0.004830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229979,0.004830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229979,0.004830,-0.005249,0.249945,0,0);}
.m2a_c00294{transform:matrix(0.230764,0.004846,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230764,0.004846,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230764,0.004846,-0.005249,0.249945,0,0);}
.m59_c00294{transform:matrix(0.231089,0.004853,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231089,0.004853,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231089,0.004853,-0.005249,0.249945,0,0);}
.m1f_c00294{transform:matrix(0.231734,0.004866,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231734,0.004866,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231734,0.004866,-0.005249,0.249945,0,0);}
.m91_c00294{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.me7_c00294{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.232999,0.004893,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232999,0.004893,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232999,0.004893,-0.005249,0.249945,0,0);}
.m2f_c00294{transform:matrix(0.233504,0.004904,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233504,0.004904,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233504,0.004904,-0.005249,0.249945,0,0);}
.m60_c00294{transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233908,0.004912,-0.005249,0.249945,0,0);}
.m7a_c00294{transform:matrix(0.234638,0.004927,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234638,0.004927,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234638,0.004927,-0.005249,0.249945,0,0);}
.m7b_c00294{transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);}
.me4_c00294{transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.237018,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237018,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237018,0.004977,-0.005249,0.249945,0,0);}
.mbb_c00294{transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);}
.ma4_c00294{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.mae_c00294{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00294{transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);}
.m88_c00294{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.242307,0.005088,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242307,0.005088,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242307,0.005088,-0.005249,0.249945,0,0);}
.m43_c00294{transform:matrix(0.242622,0.005095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242622,0.005095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242622,0.005095,-0.005249,0.249945,0,0);}
.m61_c00294{transform:matrix(0.244931,0.005144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244931,0.005144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244931,0.005144,-0.005249,0.249945,0,0);}
.m20_c00294{transform:matrix(0.247081,0.005189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247081,0.005189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247081,0.005189,-0.005249,0.249945,0,0);}
.mb5_c00294{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.ma3_c00294{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m8a_c00294{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m87_c00294{transform:matrix(0.249853,0.009004,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249853,0.009004,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249853,0.009004,-0.009003,0.249838,0,0);}
.m28_c00294{transform:matrix(0.250800,0.005267,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250800,0.005267,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250800,0.005267,-0.005249,0.249945,0,0);}
.ma5_c00294{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.m44_c00294{transform:matrix(0.252104,0.005294,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252104,0.005294,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252104,0.005294,-0.005249,0.249945,0,0);}
.m2e_c00294{transform:matrix(0.252334,0.005299,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252334,0.005299,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252334,0.005299,-0.005249,0.249945,0,0);}
.mfb_c00294{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.mbe_c00294{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mba_c00294{transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);}
.mdd_c00294{transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);}
.mec_c00294{transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);}
.me0_c00294{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.mee_c00294{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.262817,0.005519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262817,0.005519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262817,0.005519,-0.005249,0.249945,0,0);}
.mef_c00294{transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);}
.md2_c00294{transform:matrix(0.265615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265615,0.000000,0.000000,0.250000,0,0);}
.mc9_c00294{transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);}
.m4f_c00294{transform:matrix(0.270135,0.005673,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270135,0.005673,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270135,0.005673,-0.005249,0.249945,0,0);}
.m83_c00294{transform:matrix(0.270275,0.009740,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270275,0.009740,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270275,0.009740,-0.009003,0.249838,0,0);}
.md0_c00294{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.273690,0.005747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273690,0.005747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273690,0.005747,-0.005249,0.249945,0,0);}
.mb9_c00294{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.mbf_c00294{transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.294680,0.006188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.294680,0.006188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.294680,0.006188,-0.005249,0.249945,0,0);}
.mc2_c00294{transform:matrix(0.297545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297545,0.000000,0.000000,0.250000,0,0);}
.m35_c00294{transform:matrix(0.299624,0.006292,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299624,0.006292,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299624,0.006292,-0.005249,0.249945,0,0);}
.m6a_c00294{transform:matrix(0.305213,0.006409,-0.005249,0.249945,0,0);-ms-transform:matrix(0.305213,0.006409,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.305213,0.006409,-0.005249,0.249945,0,0);}
.med_c00294{transform:matrix(0.306120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306120,0.000000,0.000000,0.250000,0,0);}
.meb_c00294{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.m5f_c00294{transform:matrix(0.316895,0.006655,-0.005249,0.249945,0,0);-ms-transform:matrix(0.316895,0.006655,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.316895,0.006655,-0.005249,0.249945,0,0);}
.mb1_c00294{transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);}
.me2_c00294{transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00294{transform:matrix(0.355007,0.007455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.355007,0.007455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.355007,0.007455,-0.005249,0.249945,0,0);}
.mc0_c00294{transform:matrix(0.360165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360165,0.000000,0.000000,0.250000,0,0);}
.m70_c00294{transform:matrix(0.360680,0.007574,-0.005249,0.249945,0,0);-ms-transform:matrix(0.360680,0.007574,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.360680,0.007574,-0.005249,0.249945,0,0);}
.mf0_c00294{transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);}
.me9_c00294{transform:matrix(0.450570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450570,0.000000,0.000000,0.250000,0,0);}
.md9_c00294{transform:matrix(0.454770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454770,0.000000,0.000000,0.250000,0,0);}
.m6f_c00294{transform:matrix(0.473626,0.009946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.473626,0.009946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.473626,0.009946,-0.005249,0.249945,0,0);}
.m90_c00294{transform:matrix(0.480035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480035,0.000000,0.000000,0.250000,0,0);}
.mca_c00294{transform:matrix(0.688825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688825,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:0.000000px;}
.fc0_c00294{color:transparent;}
.fse_c00294{font-size:23.100000px;}
.fs14_c00294{font-size:50.400000px;}
.fs18_c00294{font-size:55.650000px;}
.fs13_c00294{font-size:57.750000px;}
.fsb_c00294{font-size:57.762732px;}
.fsd_c00294{font-size:58.779328px;}
.fs12_c00294{font-size:58.800000px;}
.fsa_c00294{font-size:58.812964px;}
.fs17_c00294{font-size:59.850000px;}
.fs5_c00294{font-size:59.863195px;}
.fs9_c00294{font-size:60.913427px;}
.fs11_c00294{font-size:61.950000px;}
.fsf_c00294{font-size:63.000000px;}
.fs4_c00294{font-size:63.013890px;}
.fs16_c00294{font-size:64.050000px;}
.fs8_c00294{font-size:65.114353px;}
.fs15_c00294{font-size:66.150000px;}
.fs6_c00294{font-size:66.164584px;}
.fs10_c00294{font-size:67.200000px;}
.fs0_c00294{font-size:68.250000px;}
.fs2_c00294{font-size:68.265047px;}
.fs3_c00294{font-size:69.315279px;}
.fs1_c00294{font-size:70.365510px;}
.fs7_c00294{font-size:72.465973px;}
.fsc_c00294{font-size:74.566436px;}
.y0_c00294{bottom:0.000000px;}
.yfb_c00294{bottom:20.995500px;}
.yfa_c00294{bottom:22.963500px;}
.yf9_c00294{bottom:23.536500px;}
.yf8_c00294{bottom:25.282500px;}
.yf7_c00294{bottom:26.616000px;}
.yf6_c00294{bottom:27.586500px;}
.yf5_c00294{bottom:29.992500px;}
.yf4_c00294{bottom:37.260000px;}
.yf3_c00294{bottom:39.514500px;}
.yf2_c00294{bottom:42.216000px;}
.yf1_c00294{bottom:47.593500px;}
.yf0_c00294{bottom:48.871500px;}
.yef_c00294{bottom:53.488500px;}
.yee_c00294{bottom:55.029000px;}
.yed_c00294{bottom:55.849500px;}
.yec_c00294{bottom:58.963500px;}
.yeb_c00294{bottom:61.560000px;}
.yea_c00294{bottom:61.971000px;}
.ye9_c00294{bottom:63.193500px;}
.ye8_c00294{bottom:71.731500px;}
.ye7_c00294{bottom:72.735000px;}
.ye6_c00294{bottom:74.289000px;}
.ye5_c00294{bottom:75.217500px;}
.ye4_c00294{bottom:76.008000px;}
.ye3_c00294{bottom:78.102000px;}
.ye2_c00294{bottom:78.646500px;}
.ye1_c00294{bottom:79.380000px;}
.ye0_c00294{bottom:87.990000px;}
.ydf_c00294{bottom:90.132000px;}
.yde_c00294{bottom:92.010000px;}
.ydd_c00294{bottom:92.458500px;}
.ydc_c00294{bottom:93.081000px;}
.ydb_c00294{bottom:94.407000px;}
.yda_c00294{bottom:94.930500px;}
.yd9_c00294{bottom:96.130500px;}
.yd8_c00294{bottom:104.076000px;}
.yd7_c00294{bottom:104.487000px;}
.yd6_c00294{bottom:105.148500px;}
.yd5_c00294{bottom:105.415500px;}
.yd4_c00294{bottom:106.930500px;}
.yd3_c00294{bottom:107.653500px;}
.yd2_c00294{bottom:108.004500px;}
.yd1_c00294{bottom:108.993000px;}
.yd0_c00294{bottom:109.353000px;}
.ycf_c00294{bottom:121.093500px;}
.yce_c00294{bottom:122.734500px;}
.ycd_c00294{bottom:123.636000px;}
.ycc_c00294{bottom:125.062500px;}
.ycb_c00294{bottom:128.008500px;}
.yca_c00294{bottom:129.183000px;}
.yc9_c00294{bottom:129.334500px;}
.yc8_c00294{bottom:137.701500px;}
.yc7_c00294{bottom:138.267000px;}
.yc6_c00294{bottom:139.066500px;}
.yc5_c00294{bottom:139.191000px;}
.yc4_c00294{bottom:140.298000px;}
.yc3_c00294{bottom:141.366000px;}
.yc2_c00294{bottom:142.023000px;}
.yc1_c00294{bottom:153.577500px;}
.yc0_c00294{bottom:154.102500px;}
.ybf_c00294{bottom:156.459000px;}
.ybe_c00294{bottom:156.963000px;}
.ybd_c00294{bottom:158.967000px;}
.ybc_c00294{bottom:159.960000px;}
.ybb_c00294{bottom:161.493000px;}
.yba_c00294{bottom:163.359000px;}
.yb9_c00294{bottom:164.722500px;}
.yb8_c00294{bottom:172.426500px;}
.yb7_c00294{bottom:173.370000px;}
.yb6_c00294{bottom:175.059000px;}
.yb5_c00294{bottom:176.383500px;}
.yb4_c00294{bottom:177.684000px;}
.yb3_c00294{bottom:179.031000px;}
.yb2_c00294{bottom:180.135000px;}
.yb1_c00294{bottom:180.643500px;}
.yb0_c00294{bottom:189.147000px;}
.yaf_c00294{bottom:191.869500px;}
.yae_c00294{bottom:192.358500px;}
.yad_c00294{bottom:194.404500px;}
.yac_c00294{bottom:195.763500px;}
.yab_c00294{bottom:197.499000px;}
.yaa_c00294{bottom:198.198000px;}
.ya9_c00294{bottom:206.244000px;}
.ya8_c00294{bottom:206.919000px;}
.ya7_c00294{bottom:208.687500px;}
.ya6_c00294{bottom:209.223000px;}
.ya5_c00294{bottom:210.391500px;}
.ya4_c00294{bottom:210.997500px;}
.ya3_c00294{bottom:212.502000px;}
.ya2_c00294{bottom:221.974500px;}
.ya1_c00294{bottom:222.640500px;}
.ya0_c00294{bottom:223.066500px;}
.y9f_c00294{bottom:223.653000px;}
.y9e_c00294{bottom:224.083500px;}
.y9d_c00294{bottom:225.486000px;}
.y9c_c00294{bottom:226.201500px;}
.y9b_c00294{bottom:229.143000px;}
.y9a_c00294{bottom:229.881000px;}
.y99_c00294{bottom:230.595000px;}
.y98_c00294{bottom:240.337500px;}
.y97_c00294{bottom:241.323000px;}
.y96_c00294{bottom:241.846500px;}
.y95_c00294{bottom:243.195000px;}
.y94_c00294{bottom:243.444000px;}
.y93_c00294{bottom:245.520000px;}
.y92_c00294{bottom:246.190500px;}
.y91_c00294{bottom:246.616500px;}
.y90_c00294{bottom:247.875000px;}
.y8f_c00294{bottom:257.020500px;}
.y8e_c00294{bottom:258.222000px;}
.y8d_c00294{bottom:259.545000px;}
.y8c_c00294{bottom:261.339000px;}
.y8b_c00294{bottom:262.758000px;}
.y8a_c00294{bottom:264.894000px;}
.y89_c00294{bottom:265.138500px;}
.y87_c00294{bottom:274.369170px;}
.y86_c00294{bottom:275.289546px;}
.y88_c00294{bottom:275.940000px;}
.y85_c00294{bottom:276.893724px;}
.y84_c00294{bottom:277.546638px;}
.y83_c00294{bottom:278.055534px;}
.y82_c00294{bottom:280.007364px;}
.y81_c00294{bottom:280.790310px;}
.y80_c00294{bottom:282.015624px;}
.y7f_c00294{bottom:284.326500px;}
.y7e_c00294{bottom:291.162238px;}
.y7d_c00294{bottom:293.398765px;}
.y7c_c00294{bottom:294.649992px;}
.y7b_c00294{bottom:295.198932px;}
.y7a_c00294{bottom:297.085554px;}
.y79_c00294{bottom:297.820126px;}
.y78_c00294{bottom:299.550232px;}
.y77_c00294{bottom:300.131521px;}
.y76_c00294{bottom:301.013562px;}
.y75_c00294{bottom:309.777078px;}
.y74_c00294{bottom:310.567438px;}
.y73_c00294{bottom:312.799185px;}
.y72_c00294{bottom:313.553751px;}
.y71_c00294{bottom:314.689531px;}
.y70_c00294{bottom:315.135417px;}
.y6f_c00294{bottom:316.550655px;}
.y6e_c00294{bottom:317.215221px;}
.y6d_c00294{bottom:326.941372px;}
.y6c_c00294{bottom:327.408225px;}
.y6b_c00294{bottom:328.191907px;}
.y6a_c00294{bottom:328.428840px;}
.y69_c00294{bottom:330.192417px;}
.y68_c00294{bottom:331.408960px;}
.y67_c00294{bottom:332.132397px;}
.y66_c00294{bottom:332.672575px;}
.y65_c00294{bottom:333.853269px;}
.y64_c00294{bottom:334.226041px;}
.y63_c00294{bottom:343.186456px;}
.y62_c00294{bottom:344.490211px;}
.y61_c00294{bottom:345.495378px;}
.y60_c00294{bottom:347.313097px;}
.y5f_c00294{bottom:348.261264px;}
.y5e_c00294{bottom:360.941197px;}
.y5d_c00294{bottom:361.191775px;}
.y5c_c00294{bottom:362.192551px;}
.y5b_c00294{bottom:362.737012px;}
.y5a_c00294{bottom:362.932732px;}
.y59_c00294{bottom:364.060530px;}
.y58_c00294{bottom:364.494909px;}
.y57_c00294{bottom:365.003530px;}
.y56_c00294{bottom:375.690234px;}
.y55_c00294{bottom:376.904947px;}
.y54_c00294{bottom:377.582737px;}
.y53_c00294{bottom:378.080751px;}
.y52_c00294{bottom:379.738893px;}
.y51_c00294{bottom:380.181282px;}
.y50_c00294{bottom:381.479410px;}
.y4f_c00294{bottom:391.739340px;}
.y4e_c00294{bottom:393.389056px;}
.y4d_c00294{bottom:393.895590px;}
.y4c_c00294{bottom:394.834161px;}
.y4b_c00294{bottom:395.190159px;}
.y4a_c00294{bottom:396.731187px;}
.y49_c00294{bottom:397.432485px;}
.y48_c00294{bottom:398.764522px;}
.y47_c00294{bottom:408.606975px;}
.y46_c00294{bottom:409.232004px;}
.y45_c00294{bottom:410.567689px;}
.y44_c00294{bottom:411.048498px;}
.y43_c00294{bottom:412.233757px;}
.y42_c00294{bottom:413.132655px;}
.y41_c00294{bottom:413.588350px;}
.y40_c00294{bottom:414.513211px;}
.y3f_c00294{bottom:415.508907px;}
.y3e_c00294{bottom:426.120228px;}
.y3d_c00294{bottom:427.308532px;}
.y3c_c00294{bottom:428.402946px;}
.y3b_c00294{bottom:429.643256px;}
.y3a_c00294{bottom:430.514919px;}
.y39_c00294{bottom:431.735545px;}
.y38_c00294{bottom:433.335201px;}
.y37_c00294{bottom:443.311731px;}
.y36_c00294{bottom:443.740290px;}
.y35_c00294{bottom:444.604263px;}
.y34_c00294{bottom:446.077896px;}
.y33_c00294{bottom:446.582155px;}
.y32_c00294{bottom:447.183417px;}
.y31_c00294{bottom:448.509070px;}
.y30_c00294{bottom:449.811828px;}
.y2f_c00294{bottom:460.452963px;}
.y2e_c00294{bottom:460.781593px;}
.y2d_c00294{bottom:462.105415px;}
.y2c_c00294{bottom:463.024701px;}
.y2b_c00294{bottom:463.621309px;}
.y2a_c00294{bottom:464.944974px;}
.y29_c00294{bottom:466.281730px;}
.y28_c00294{bottom:476.195278px;}
.y27_c00294{bottom:476.999205px;}
.y26_c00294{bottom:477.625399px;}
.y25_c00294{bottom:478.905567px;}
.y24_c00294{bottom:479.405440px;}
.y23_c00294{bottom:480.545986px;}
.y22_c00294{bottom:480.980034px;}
.y21_c00294{bottom:482.840832px;}
.y20_c00294{bottom:483.288349px;}
.y1f_c00294{bottom:493.188111px;}
.y1e_c00294{bottom:494.872902px;}
.y1d_c00294{bottom:495.390165px;}
.y1c_c00294{bottom:497.587159px;}
.y1b_c00294{bottom:499.294921px;}
.y1a_c00294{bottom:500.307012px;}
.y19_c00294{bottom:511.601248px;}
.y18_c00294{bottom:513.538944px;}
.y17_c00294{bottom:514.147437px;}
.y16_c00294{bottom:515.338219px;}
.y15_c00294{bottom:516.089952px;}
.y14_c00294{bottom:516.726602px;}
.y13_c00294{bottom:518.272815px;}
.y12_c00294{bottom:518.669809px;}
.y11_c00294{bottom:529.711564px;}
.y10_c00294{bottom:531.046965px;}
.yf_c00294{bottom:531.468556px;}
.ye_c00294{bottom:532.344716px;}
.yd_c00294{bottom:532.742127px;}
.yc_c00294{bottom:534.406191px;}
.yb_c00294{bottom:535.411353px;}
.ya_c00294{bottom:546.094851px;}
.y9_c00294{bottom:547.313870px;}
.y8_c00294{bottom:547.841652px;}
.y7_c00294{bottom:548.072893px;}
.y6_c00294{bottom:549.107637px;}
.y5_c00294{bottom:549.561457px;}
.y4_c00294{bottom:550.025453px;}
.y3_c00294{bottom:551.545516px;}
.y2_c00294{bottom:551.886000px;}
.y1_c00294{bottom:566.583000px;}
.h10_c00294{height:23.100000px;}
.h16_c00294{height:50.400000px;}
.h1a_c00294{height:55.650000px;}
.h15_c00294{height:57.750000px;}
.hd_c00294{height:57.762732px;}
.hf_c00294{height:58.779328px;}
.h14_c00294{height:58.800000px;}
.hc_c00294{height:58.812964px;}
.h19_c00294{height:59.850000px;}
.h7_c00294{height:59.863195px;}
.hb_c00294{height:60.913427px;}
.h13_c00294{height:61.950000px;}
.h11_c00294{height:63.000000px;}
.h6_c00294{height:63.013890px;}
.h18_c00294{height:64.050000px;}
.ha_c00294{height:65.114353px;}
.h17_c00294{height:66.150000px;}
.h8_c00294{height:66.164584px;}
.h12_c00294{height:67.200000px;}
.h2_c00294{height:68.250000px;}
.h4_c00294{height:68.265047px;}
.h5_c00294{height:69.315279px;}
.h3_c00294{height:70.365510px;}
.h9_c00294{height:72.465973px;}
.he_c00294{height:74.566436px;}
.h1_c00294{height:618.750000px;}
.h0_c00294{height:619.050000px;}
.w0_c00294{width:359.100000px;}
.w1_c00294{width:359.250000px;}
.x0_c00294{left:0.000000px;}
.x1d_c00294{left:14.743454px;}
.x72_c00294{left:19.122000px;}
.x62_c00294{left:20.553000px;}
.x3_c00294{left:21.846000px;}
.xc_c00294{left:23.507917px;}
.x79_c00294{left:24.733500px;}
.x18_c00294{left:26.693456px;}
.x25_c00294{left:28.231418px;}
.x48_c00294{left:30.306427px;}
.x1e_c00294{left:33.409788px;}
.x4d_c00294{left:34.786035px;}
.x4_c00294{left:38.059500px;}
.x13_c00294{left:39.133055px;}
.x84_c00294{left:40.852500px;}
.x51_c00294{left:43.360620px;}
.x1_c00294{left:45.900000px;}
.x58_c00294{left:47.381242px;}
.x73_c00294{left:54.067500px;}
.x34_c00294{left:55.395732px;}
.x49_c00294{left:57.099061px;}
.x65_c00294{left:61.164000px;}
.x59_c00294{left:64.485580px;}
.xd_c00294{left:67.228090px;}
.x76_c00294{left:68.313000px;}
.x2a_c00294{left:72.337799px;}
.x3c_c00294{left:75.342487px;}
.x42_c00294{left:78.824907px;}
.x4a_c00294{left:79.999038px;}
.x2f_c00294{left:81.514755px;}
.x26_c00294{left:83.954421px;}
.x5d_c00294{left:84.981309px;}
.x6d_c00294{left:87.943500px;}
.x52_c00294{left:90.529705px;}
.x35_c00294{left:93.934306px;}
.x7a_c00294{left:95.292000px;}
.x66_c00294{left:96.532500px;}
.x43_c00294{left:98.033088px;}
.x14_c00294{left:100.971357px;}
.x3d_c00294{left:103.378125px;}
.x53_c00294{left:105.402402px;}
.x5_c00294{left:110.443500px;}
.x36_c00294{left:112.918609px;}
.x85_c00294{left:114.252000px;}
.x5a_c00294{left:115.357689px;}
.x70_c00294{left:117.088500px;}
.x5e_c00294{left:118.983773px;}
.x2b_c00294{left:123.315944px;}
.x4e_c00294{left:125.313132px;}
.x15_c00294{left:126.428715px;}
.x1f_c00294{left:129.039272px;}
.x6_c00294{left:132.538500px;}
.x7d_c00294{left:134.079000px;}
.x19_c00294{left:135.486821px;}
.x5b_c00294{left:136.974298px;}
.xe_c00294{left:139.609066px;}
.x5f_c00294{left:140.710524px;}
.x6b_c00294{left:141.816000px;}
.x54_c00294{left:143.265751px;}
.x2c_c00294{left:146.445018px;}
.x7e_c00294{left:148.113000px;}
.x37_c00294{left:150.363747px;}
.x7b_c00294{left:151.824000px;}
.x7_c00294{left:154.149000px;}
.xf_c00294{left:156.889842px;}
.x30_c00294{left:158.994990px;}
.x2_c00294{left:160.380000px;}
.x69_c00294{left:162.297000px;}
.x27_c00294{left:163.962381px;}
.x2d_c00294{left:165.812471px;}
.x55_c00294{left:168.406995px;}
.x44_c00294{left:170.132064px;}
.x67_c00294{left:171.544500px;}
.x4c_c00294{left:175.063246px;}
.x20_c00294{left:176.562279px;}
.x3e_c00294{left:179.277762px;}
.x86_c00294{left:181.182000px;}
.x6e_c00294{left:182.544000px;}
.x80_c00294{left:183.649500px;}
.x61_c00294{left:186.300000px;}
.x45_c00294{left:191.774650px;}
.x87_c00294{left:193.638000px;}
.x10_c00294{left:194.967235px;}
.x6f_c00294{left:196.131000px;}
.x21_c00294{left:197.364456px;}
.x38_c00294{left:199.730128px;}
.x63_c00294{left:201.004500px;}
.x28_c00294{left:202.235456px;}
.x8_c00294{left:203.422500px;}
.x31_c00294{left:204.908694px;}
.x7f_c00294{left:206.781000px;}
.x5c_c00294{left:208.576737px;}
.x77_c00294{left:211.984500px;}
.x11_c00294{left:213.327979px;}
.x9_c00294{left:214.434000px;}
.x3f_c00294{left:216.825612px;}
.x74_c00294{left:218.046000px;}
.x39_c00294{left:219.767368px;}
.x46_c00294{left:221.263422px;}
.x1a_c00294{left:223.383950px;}
.x60_c00294{left:227.114034px;}
.x16_c00294{left:228.468147px;}
.x4b_c00294{left:230.969869px;}
.x81_c00294{left:233.796000px;}
.x4f_c00294{left:235.709740px;}
.x40_c00294{left:237.087411px;}
.xa_c00294{left:239.566500px;}
.x56_c00294{left:242.809446px;}
.x1b_c00294{left:244.085217px;}
.x32_c00294{left:245.447091px;}
.x71_c00294{left:247.776000px;}
.x22_c00294{left:250.678586px;}
.x6c_c00294{left:252.145500px;}
.x2e_c00294{left:255.689021px;}
.x29_c00294{left:257.413991px;}
.x78_c00294{left:261.987000px;}
.x68_c00294{left:263.752500px;}
.x82_c00294{left:266.148000px;}
.x57_c00294{left:269.154969px;}
.x12_c00294{left:271.416054px;}
.x47_c00294{left:274.104717px;}
.x3a_c00294{left:275.439372px;}
.x23_c00294{left:276.781448px;}
.x7c_c00294{left:280.389000px;}
.x64_c00294{left:282.432000px;}
.x33_c00294{left:289.456047px;}
.x50_c00294{left:290.820310px;}
.x83_c00294{left:295.506000px;}
.xb_c00294{left:297.615000px;}
.x6a_c00294{left:298.657500px;}
.x3b_c00294{left:301.486734px;}
.x41_c00294{left:303.068367px;}
.x75_c00294{left:304.854000px;}
.x17_c00294{left:305.947127px;}
.x24_c00294{left:310.275837px;}
.x1c_c00294{left:311.450547px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fse_c00294{font-size:20.533333pt;}
.fs14_c00294{font-size:44.800000pt;}
.fs18_c00294{font-size:49.466667pt;}
.fs13_c00294{font-size:51.333333pt;}
.fsb_c00294{font-size:51.344651pt;}
.fsd_c00294{font-size:52.248292pt;}
.fs12_c00294{font-size:52.266667pt;}
.fsa_c00294{font-size:52.278190pt;}
.fs17_c00294{font-size:53.200000pt;}
.fs5_c00294{font-size:53.211729pt;}
.fs9_c00294{font-size:54.145268pt;}
.fs11_c00294{font-size:55.066667pt;}
.fsf_c00294{font-size:56.000000pt;}
.fs4_c00294{font-size:56.012347pt;}
.fs16_c00294{font-size:56.933333pt;}
.fs8_c00294{font-size:57.879425pt;}
.fs15_c00294{font-size:58.800000pt;}
.fs6_c00294{font-size:58.812964pt;}
.fs10_c00294{font-size:59.733333pt;}
.fs0_c00294{font-size:60.666667pt;}
.fs2_c00294{font-size:60.680042pt;}
.fs3_c00294{font-size:61.613581pt;}
.fs1_c00294{font-size:62.547120pt;}
.fs7_c00294{font-size:64.414199pt;}
.fsc_c00294{font-size:66.281277pt;}
.y0_c00294{bottom:0.000000pt;}
.yfb_c00294{bottom:18.662667pt;}
.yfa_c00294{bottom:20.412000pt;}
.yf9_c00294{bottom:20.921333pt;}
.yf8_c00294{bottom:22.473333pt;}
.yf7_c00294{bottom:23.658667pt;}
.yf6_c00294{bottom:24.521333pt;}
.yf5_c00294{bottom:26.660000pt;}
.yf4_c00294{bottom:33.120000pt;}
.yf3_c00294{bottom:35.124000pt;}
.yf2_c00294{bottom:37.525333pt;}
.yf1_c00294{bottom:42.305333pt;}
.yf0_c00294{bottom:43.441333pt;}
.yef_c00294{bottom:47.545333pt;}
.yee_c00294{bottom:48.914667pt;}
.yed_c00294{bottom:49.644000pt;}
.yec_c00294{bottom:52.412000pt;}
.yeb_c00294{bottom:54.720000pt;}
.yea_c00294{bottom:55.085333pt;}
.ye9_c00294{bottom:56.172000pt;}
.ye8_c00294{bottom:63.761333pt;}
.ye7_c00294{bottom:64.653333pt;}
.ye6_c00294{bottom:66.034667pt;}
.ye5_c00294{bottom:66.860000pt;}
.ye4_c00294{bottom:67.562667pt;}
.ye3_c00294{bottom:69.424000pt;}
.ye2_c00294{bottom:69.908000pt;}
.ye1_c00294{bottom:70.560000pt;}
.ye0_c00294{bottom:78.213333pt;}
.ydf_c00294{bottom:80.117333pt;}
.yde_c00294{bottom:81.786667pt;}
.ydd_c00294{bottom:82.185333pt;}
.ydc_c00294{bottom:82.738667pt;}
.ydb_c00294{bottom:83.917333pt;}
.yda_c00294{bottom:84.382667pt;}
.yd9_c00294{bottom:85.449333pt;}
.yd8_c00294{bottom:92.512000pt;}
.yd7_c00294{bottom:92.877333pt;}
.yd6_c00294{bottom:93.465333pt;}
.yd5_c00294{bottom:93.702667pt;}
.yd4_c00294{bottom:95.049333pt;}
.yd3_c00294{bottom:95.692000pt;}
.yd2_c00294{bottom:96.004000pt;}
.yd1_c00294{bottom:96.882667pt;}
.yd0_c00294{bottom:97.202667pt;}
.ycf_c00294{bottom:107.638667pt;}
.yce_c00294{bottom:109.097333pt;}
.ycd_c00294{bottom:109.898667pt;}
.ycc_c00294{bottom:111.166667pt;}
.ycb_c00294{bottom:113.785333pt;}
.yca_c00294{bottom:114.829333pt;}
.yc9_c00294{bottom:114.964000pt;}
.yc8_c00294{bottom:122.401333pt;}
.yc7_c00294{bottom:122.904000pt;}
.yc6_c00294{bottom:123.614667pt;}
.yc5_c00294{bottom:123.725333pt;}
.yc4_c00294{bottom:124.709333pt;}
.yc3_c00294{bottom:125.658667pt;}
.yc2_c00294{bottom:126.242667pt;}
.yc1_c00294{bottom:136.513333pt;}
.yc0_c00294{bottom:136.980000pt;}
.ybf_c00294{bottom:139.074667pt;}
.ybe_c00294{bottom:139.522667pt;}
.ybd_c00294{bottom:141.304000pt;}
.ybc_c00294{bottom:142.186667pt;}
.ybb_c00294{bottom:143.549333pt;}
.yba_c00294{bottom:145.208000pt;}
.yb9_c00294{bottom:146.420000pt;}
.yb8_c00294{bottom:153.268000pt;}
.yb7_c00294{bottom:154.106667pt;}
.yb6_c00294{bottom:155.608000pt;}
.yb5_c00294{bottom:156.785333pt;}
.yb4_c00294{bottom:157.941333pt;}
.yb3_c00294{bottom:159.138667pt;}
.yb2_c00294{bottom:160.120000pt;}
.yb1_c00294{bottom:160.572000pt;}
.yb0_c00294{bottom:168.130667pt;}
.yaf_c00294{bottom:170.550667pt;}
.yae_c00294{bottom:170.985333pt;}
.yad_c00294{bottom:172.804000pt;}
.yac_c00294{bottom:174.012000pt;}
.yab_c00294{bottom:175.554667pt;}
.yaa_c00294{bottom:176.176000pt;}
.ya9_c00294{bottom:183.328000pt;}
.ya8_c00294{bottom:183.928000pt;}
.ya7_c00294{bottom:185.500000pt;}
.ya6_c00294{bottom:185.976000pt;}
.ya5_c00294{bottom:187.014667pt;}
.ya4_c00294{bottom:187.553333pt;}
.ya3_c00294{bottom:188.890667pt;}
.ya2_c00294{bottom:197.310667pt;}
.ya1_c00294{bottom:197.902667pt;}
.ya0_c00294{bottom:198.281333pt;}
.y9f_c00294{bottom:198.802667pt;}
.y9e_c00294{bottom:199.185333pt;}
.y9d_c00294{bottom:200.432000pt;}
.y9c_c00294{bottom:201.068000pt;}
.y9b_c00294{bottom:203.682667pt;}
.y9a_c00294{bottom:204.338667pt;}
.y99_c00294{bottom:204.973333pt;}
.y98_c00294{bottom:213.633333pt;}
.y97_c00294{bottom:214.509333pt;}
.y96_c00294{bottom:214.974667pt;}
.y95_c00294{bottom:216.173333pt;}
.y94_c00294{bottom:216.394667pt;}
.y93_c00294{bottom:218.240000pt;}
.y92_c00294{bottom:218.836000pt;}
.y91_c00294{bottom:219.214667pt;}
.y90_c00294{bottom:220.333333pt;}
.y8f_c00294{bottom:228.462667pt;}
.y8e_c00294{bottom:229.530667pt;}
.y8d_c00294{bottom:230.706667pt;}
.y8c_c00294{bottom:232.301333pt;}
.y8b_c00294{bottom:233.562667pt;}
.y8a_c00294{bottom:235.461333pt;}
.y89_c00294{bottom:235.678667pt;}
.y87_c00294{bottom:243.883707pt;}
.y86_c00294{bottom:244.701819pt;}
.y88_c00294{bottom:245.280000pt;}
.y85_c00294{bottom:246.127755pt;}
.y84_c00294{bottom:246.708123pt;}
.y83_c00294{bottom:247.160475pt;}
.y82_c00294{bottom:248.895435pt;}
.y81_c00294{bottom:249.591387pt;}
.y80_c00294{bottom:250.680555pt;}
.y7f_c00294{bottom:252.734667pt;}
.y7e_c00294{bottom:258.810879pt;}
.y7d_c00294{bottom:260.798903pt;}
.y7c_c00294{bottom:261.911104pt;}
.y7b_c00294{bottom:262.399051pt;}
.y7a_c00294{bottom:264.076048pt;}
.y79_c00294{bottom:264.729001pt;}
.y78_c00294{bottom:266.266873pt;}
.y77_c00294{bottom:266.783575pt;}
.y76_c00294{bottom:267.567611pt;}
.y75_c00294{bottom:275.357403pt;}
.y74_c00294{bottom:276.059945pt;}
.y73_c00294{bottom:278.043720pt;}
.y72_c00294{bottom:278.714445pt;}
.y71_c00294{bottom:279.724028pt;}
.y70_c00294{bottom:280.120371pt;}
.y6f_c00294{bottom:281.378360pt;}
.y6e_c00294{bottom:281.969085pt;}
.y6d_c00294{bottom:290.614553pt;}
.y6c_c00294{bottom:291.029533pt;}
.y6b_c00294{bottom:291.726140pt;}
.y6a_c00294{bottom:291.936747pt;}
.y69_c00294{bottom:293.504371pt;}
.y68_c00294{bottom:294.585743pt;}
.y67_c00294{bottom:295.228797pt;}
.y66_c00294{bottom:295.708956pt;}
.y65_c00294{bottom:296.758461pt;}
.y64_c00294{bottom:297.089815pt;}
.y63_c00294{bottom:305.054628pt;}
.y62_c00294{bottom:306.213521pt;}
.y61_c00294{bottom:307.107003pt;}
.y60_c00294{bottom:308.722753pt;}
.y5f_c00294{bottom:309.565568pt;}
.y5e_c00294{bottom:320.836620pt;}
.y5d_c00294{bottom:321.059356pt;}
.y5c_c00294{bottom:321.948935pt;}
.y5b_c00294{bottom:322.432900pt;}
.y5a_c00294{bottom:322.606873pt;}
.y59_c00294{bottom:323.609360pt;}
.y58_c00294{bottom:323.995475pt;}
.y57_c00294{bottom:324.447583pt;}
.y56_c00294{bottom:333.946875pt;}
.y55_c00294{bottom:335.026620pt;}
.y54_c00294{bottom:335.629100pt;}
.y53_c00294{bottom:336.071779pt;}
.y52_c00294{bottom:337.545683pt;}
.y51_c00294{bottom:337.938917pt;}
.y50_c00294{bottom:339.092809pt;}
.y4f_c00294{bottom:348.212747pt;}
.y4e_c00294{bottom:349.679161pt;}
.y4d_c00294{bottom:350.129413pt;}
.y4c_c00294{bottom:350.963699pt;}
.y4b_c00294{bottom:351.280141pt;}
.y4a_c00294{bottom:352.649944pt;}
.y49_c00294{bottom:353.273320pt;}
.y48_c00294{bottom:354.457353pt;}
.y47_c00294{bottom:363.206200pt;}
.y46_c00294{bottom:363.761781pt;}
.y45_c00294{bottom:364.949057pt;}
.y44_c00294{bottom:365.376443pt;}
.y43_c00294{bottom:366.430007pt;}
.y42_c00294{bottom:367.229027pt;}
.y41_c00294{bottom:367.634089pt;}
.y40_c00294{bottom:368.456188pt;}
.y3f_c00294{bottom:369.341251pt;}
.y3e_c00294{bottom:378.773536pt;}
.y3d_c00294{bottom:379.829807pt;}
.y3c_c00294{bottom:380.802619pt;}
.y3b_c00294{bottom:381.905116pt;}
.y3a_c00294{bottom:382.679928pt;}
.y39_c00294{bottom:383.764929pt;}
.y38_c00294{bottom:385.186845pt;}
.y37_c00294{bottom:394.054872pt;}
.y36_c00294{bottom:394.435813pt;}
.y35_c00294{bottom:395.203789pt;}
.y34_c00294{bottom:396.513685pt;}
.y33_c00294{bottom:396.961916pt;}
.y32_c00294{bottom:397.496371pt;}
.y31_c00294{bottom:398.674729pt;}
.y30_c00294{bottom:399.832736pt;}
.y2f_c00294{bottom:409.291523pt;}
.y2e_c00294{bottom:409.583639pt;}
.y2d_c00294{bottom:410.760369pt;}
.y2c_c00294{bottom:411.577512pt;}
.y2b_c00294{bottom:412.107831pt;}
.y2a_c00294{bottom:413.284421pt;}
.y29_c00294{bottom:414.472649pt;}
.y28_c00294{bottom:423.284692pt;}
.y27_c00294{bottom:423.999293pt;}
.y26_c00294{bottom:424.555911pt;}
.y25_c00294{bottom:425.693837pt;}
.y24_c00294{bottom:426.138169pt;}
.y23_c00294{bottom:427.151988pt;}
.y22_c00294{bottom:427.537808pt;}
.y21_c00294{bottom:429.191851pt;}
.y20_c00294{bottom:429.589644pt;}
.y1f_c00294{bottom:438.389432pt;}
.y1e_c00294{bottom:439.887024pt;}
.y1d_c00294{bottom:440.346813pt;}
.y1c_c00294{bottom:442.299697pt;}
.y1b_c00294{bottom:443.817708pt;}
.y1a_c00294{bottom:444.717344pt;}
.y19_c00294{bottom:454.756665pt;}
.y18_c00294{bottom:456.479061pt;}
.y17_c00294{bottom:457.019944pt;}
.y16_c00294{bottom:458.078417pt;}
.y15_c00294{bottom:458.746624pt;}
.y14_c00294{bottom:459.312535pt;}
.y13_c00294{bottom:460.686947pt;}
.y12_c00294{bottom:461.039831pt;}
.y11_c00294{bottom:470.854724pt;}
.y10_c00294{bottom:472.041747pt;}
.yf_c00294{bottom:472.416495pt;}
.ye_c00294{bottom:473.195303pt;}
.yd_c00294{bottom:473.548557pt;}
.yc_c00294{bottom:475.027725pt;}
.yb_c00294{bottom:475.921203pt;}
.ya_c00294{bottom:485.417645pt;}
.y9_c00294{bottom:486.501217pt;}
.y8_c00294{bottom:486.970357pt;}
.y7_c00294{bottom:487.175905pt;}
.y6_c00294{bottom:488.095677pt;}
.y5_c00294{bottom:488.499073pt;}
.y4_c00294{bottom:488.911513pt;}
.y3_c00294{bottom:490.262681pt;}
.y2_c00294{bottom:490.565333pt;}
.y1_c00294{bottom:503.629333pt;}
.h10_c00294{height:20.533333pt;}
.h16_c00294{height:44.800000pt;}
.h1a_c00294{height:49.466667pt;}
.h15_c00294{height:51.333333pt;}
.hd_c00294{height:51.344651pt;}
.hf_c00294{height:52.248292pt;}
.h14_c00294{height:52.266667pt;}
.hc_c00294{height:52.278190pt;}
.h19_c00294{height:53.200000pt;}
.h7_c00294{height:53.211729pt;}
.hb_c00294{height:54.145268pt;}
.h13_c00294{height:55.066667pt;}
.h11_c00294{height:56.000000pt;}
.h6_c00294{height:56.012347pt;}
.h18_c00294{height:56.933333pt;}
.ha_c00294{height:57.879425pt;}
.h17_c00294{height:58.800000pt;}
.h8_c00294{height:58.812964pt;}
.h12_c00294{height:59.733333pt;}
.h2_c00294{height:60.666667pt;}
.h4_c00294{height:60.680042pt;}
.h5_c00294{height:61.613581pt;}
.h3_c00294{height:62.547120pt;}
.h9_c00294{height:64.414199pt;}
.he_c00294{height:66.281277pt;}
.h1_c00294{height:550.000000pt;}
.h0_c00294{height:550.266667pt;}
.w0_c00294{width:319.200000pt;}
.w1_c00294{width:319.333333pt;}
.x0_c00294{left:0.000000pt;}
.x1d_c00294{left:13.105292pt;}
.x72_c00294{left:16.997333pt;}
.x62_c00294{left:18.269333pt;}
.x3_c00294{left:19.418667pt;}
.xc_c00294{left:20.895927pt;}
.x79_c00294{left:21.985333pt;}
.x18_c00294{left:23.727516pt;}
.x25_c00294{left:25.094593pt;}
.x48_c00294{left:26.939047pt;}
.x1e_c00294{left:29.697589pt;}
.x4d_c00294{left:30.920920pt;}
.x4_c00294{left:33.830667pt;}
.x13_c00294{left:34.784937pt;}
.x84_c00294{left:36.313333pt;}
.x51_c00294{left:38.542773pt;}
.x1_c00294{left:40.800000pt;}
.x58_c00294{left:42.116660pt;}
.x73_c00294{left:48.060000pt;}
.x34_c00294{left:49.240651pt;}
.x49_c00294{left:50.754721pt;}
.x65_c00294{left:54.368000pt;}
.x59_c00294{left:57.320516pt;}
.xd_c00294{left:59.758303pt;}
.x76_c00294{left:60.722667pt;}
.x2a_c00294{left:64.300265pt;}
.x3c_c00294{left:66.971100pt;}
.x42_c00294{left:70.066584pt;}
.x4a_c00294{left:71.110256pt;}
.x2f_c00294{left:72.457560pt;}
.x26_c00294{left:74.626152pt;}
.x5d_c00294{left:75.538941pt;}
.x6d_c00294{left:78.172000pt;}
.x52_c00294{left:80.470849pt;}
.x35_c00294{left:83.497161pt;}
.x7a_c00294{left:84.704000pt;}
.x66_c00294{left:85.806667pt;}
.x43_c00294{left:87.140523pt;}
.x14_c00294{left:89.752317pt;}
.x3d_c00294{left:91.891667pt;}
.x53_c00294{left:93.691024pt;}
.x5_c00294{left:98.172000pt;}
.x36_c00294{left:100.372097pt;}
.x85_c00294{left:101.557333pt;}
.x5a_c00294{left:102.540168pt;}
.x70_c00294{left:104.078667pt;}
.x5e_c00294{left:105.763353pt;}
.x2b_c00294{left:109.614172pt;}
.x4e_c00294{left:111.389451pt;}
.x15_c00294{left:112.381080pt;}
.x1f_c00294{left:114.701575pt;}
.x6_c00294{left:117.812000pt;}
.x7d_c00294{left:119.181333pt;}
.x19_c00294{left:120.432729pt;}
.x5b_c00294{left:121.754932pt;}
.xe_c00294{left:124.096948pt;}
.x5f_c00294{left:125.076021pt;}
.x6b_c00294{left:126.058667pt;}
.x54_c00294{left:127.347335pt;}
.x2c_c00294{left:130.173349pt;}
.x7e_c00294{left:131.656000pt;}
.x37_c00294{left:133.656664pt;}
.x7b_c00294{left:134.954667pt;}
.x7_c00294{left:137.021333pt;}
.xf_c00294{left:139.457637pt;}
.x30_c00294{left:141.328880pt;}
.x2_c00294{left:142.560000pt;}
.x69_c00294{left:144.264000pt;}
.x27_c00294{left:145.744339pt;}
.x2d_c00294{left:147.388863pt;}
.x55_c00294{left:149.695107pt;}
.x44_c00294{left:151.228501pt;}
.x67_c00294{left:152.484000pt;}
.x4c_c00294{left:155.611775pt;}
.x20_c00294{left:156.944248pt;}
.x3e_c00294{left:159.358011pt;}
.x86_c00294{left:161.050667pt;}
.x6e_c00294{left:162.261333pt;}
.x80_c00294{left:163.244000pt;}
.x61_c00294{left:165.600000pt;}
.x45_c00294{left:170.466356pt;}
.x87_c00294{left:172.122667pt;}
.x10_c00294{left:173.304209pt;}
.x6f_c00294{left:174.338667pt;}
.x21_c00294{left:175.435072pt;}
.x38_c00294{left:177.537892pt;}
.x63_c00294{left:178.670667pt;}
.x28_c00294{left:179.764849pt;}
.x8_c00294{left:180.820000pt;}
.x31_c00294{left:182.141061pt;}
.x7f_c00294{left:183.805333pt;}
.x5c_c00294{left:185.401544pt;}
.x77_c00294{left:188.430667pt;}
.x11_c00294{left:189.624871pt;}
.x9_c00294{left:190.608000pt;}
.x3f_c00294{left:192.733877pt;}
.x74_c00294{left:193.818667pt;}
.x39_c00294{left:195.348772pt;}
.x46_c00294{left:196.678597pt;}
.x1a_c00294{left:198.563511pt;}
.x60_c00294{left:201.879141pt;}
.x16_c00294{left:203.082797pt;}
.x4b_c00294{left:205.306551pt;}
.x81_c00294{left:207.818667pt;}
.x4f_c00294{left:209.519769pt;}
.x40_c00294{left:210.744365pt;}
.xa_c00294{left:212.948000pt;}
.x56_c00294{left:215.830619pt;}
.x1b_c00294{left:216.964637pt;}
.x32_c00294{left:218.175192pt;}
.x71_c00294{left:220.245333pt;}
.x22_c00294{left:222.825409pt;}
.x6c_c00294{left:224.129333pt;}
.x2e_c00294{left:227.279129pt;}
.x29_c00294{left:228.812436pt;}
.x78_c00294{left:232.877333pt;}
.x68_c00294{left:234.446667pt;}
.x82_c00294{left:236.576000pt;}
.x57_c00294{left:239.248861pt;}
.x12_c00294{left:241.258715pt;}
.x47_c00294{left:243.648637pt;}
.x3a_c00294{left:244.834997pt;}
.x23_c00294{left:246.027953pt;}
.x7c_c00294{left:249.234667pt;}
.x64_c00294{left:251.050667pt;}
.x33_c00294{left:257.294264pt;}
.x50_c00294{left:258.506943pt;}
.x83_c00294{left:262.672000pt;}
.xb_c00294{left:264.546667pt;}
.x6a_c00294{left:265.473333pt;}
.x3b_c00294{left:267.988208pt;}
.x41_c00294{left:269.394104pt;}
.x75_c00294{left:270.981333pt;}
.x17_c00294{left:271.953001pt;}
.x24_c00294{left:275.800744pt;}
.x1c_c00294{left:276.844931pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00295 {
    display:none;
  }
  .loading-indicator_c00295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00295 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00295 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00295" -> "#page-container .classname_c00295")
 */
.pf_c00295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00295 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00295 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00295 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00295 {overflow:visible;}
  }
}
.c_c00295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00295 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00295:after { /* webkit #35443 */
  content: '';
}
.t_c00295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00295 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00295 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00295 { /* info for Javascript */
  display:none;
}
.l_c00295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00295:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00295 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00295.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me3_c00295{transform:matrix(0.078426,-0.002118,0.006748,0.249909,0,0);-ms-transform:matrix(0.078426,-0.002118,0.006748,0.249909,0,0);-webkit-transform:matrix(0.078426,-0.002118,0.006748,0.249909,0,0);}
.mfe_c00295{transform:matrix(0.135732,-0.005163,0.009503,0.249819,0,0);-ms-transform:matrix(0.135732,-0.005163,0.009503,0.249819,0,0);-webkit-transform:matrix(0.135732,-0.005163,0.009503,0.249819,0,0);}
.mfd_c00295{transform:matrix(0.141268,-0.006222,0.011000,0.249758,0,0);-ms-transform:matrix(0.141268,-0.006222,0.011000,0.249758,0,0);-webkit-transform:matrix(0.141268,-0.006222,0.011000,0.249758,0,0);}
.m8a_c00295{transform:matrix(0.141773,-0.004967,0.008753,0.249847,0,0);-ms-transform:matrix(0.141773,-0.004967,0.008753,0.249847,0,0);-webkit-transform:matrix(0.141773,-0.004967,0.008753,0.249847,0,0);}
.mc_c00295{transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);}
.me4_c00295{transform:matrix(0.147726,-0.003989,0.006748,0.249909,0,0);-ms-transform:matrix(0.147726,-0.003989,0.006748,0.249909,0,0);-webkit-transform:matrix(0.147726,-0.003989,0.006748,0.249909,0,0);}
.m104_c00295{transform:matrix(0.148118,-0.005634,0.009503,0.249819,0,0);-ms-transform:matrix(0.148118,-0.005634,0.009503,0.249819,0,0);-webkit-transform:matrix(0.148118,-0.005634,0.009503,0.249819,0,0);}
.mc4_c00295{transform:matrix(0.151480,-0.004090,0.006748,0.249909,0,0);-ms-transform:matrix(0.151480,-0.004090,0.006748,0.249909,0,0);-webkit-transform:matrix(0.151480,-0.004090,0.006748,0.249909,0,0);}
.m1b_c00295{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.me9_c00295{transform:matrix(0.154809,-0.004180,0.006748,0.249909,0,0);-ms-transform:matrix(0.154809,-0.004180,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154809,-0.004180,0.006748,0.249909,0,0);}
.m19_c00295{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m51_c00295{transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);-ms-transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155882,-0.004053,0.006498,0.249916,0,0);}
.m2c_c00295{transform:matrix(0.155984,-0.004368,0.006997,0.249902,0,0);-ms-transform:matrix(0.155984,-0.004368,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155984,-0.004368,0.006997,0.249902,0,0);}
.mcd_c00295{transform:matrix(0.156208,-0.004218,0.006748,0.249909,0,0);-ms-transform:matrix(0.156208,-0.004218,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156208,-0.004218,0.006748,0.249909,0,0);}
.m3a_c00295{transform:matrix(0.156292,-0.004064,0.006498,0.249916,0,0);-ms-transform:matrix(0.156292,-0.004064,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156292,-0.004064,0.006498,0.249916,0,0);}
.md2_c00295{transform:matrix(0.157093,-0.004242,0.006748,0.249909,0,0);-ms-transform:matrix(0.157093,-0.004242,0.006748,0.249909,0,0);-webkit-transform:matrix(0.157093,-0.004242,0.006748,0.249909,0,0);}
.m10_c00295{transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157245,0.000000,0.000000,0.250000,0,0);}
.m2f_c00295{transform:matrix(0.157964,-0.004897,0.007746,0.249880,0,0);-ms-transform:matrix(0.157964,-0.004897,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157964,-0.004897,0.007746,0.249880,0,0);}
.m7b_c00295{transform:matrix(0.159728,-0.005436,0.008504,0.249855,0,0);-ms-transform:matrix(0.159728,-0.005436,0.008504,0.249855,0,0);-webkit-transform:matrix(0.159728,-0.005436,0.008504,0.249855,0,0);}
.m9_c00295{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161195,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.m66_c00295{transform:matrix(0.162952,-0.004889,0.007497,0.249888,0,0);-ms-transform:matrix(0.162952,-0.004889,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162952,-0.004889,0.007497,0.249888,0,0);}
.mee_c00295{transform:matrix(0.163022,-0.007180,0.011000,0.249758,0,0);-ms-transform:matrix(0.163022,-0.007180,0.011000,0.249758,0,0);-webkit-transform:matrix(0.163022,-0.007180,0.011000,0.249758,0,0);}
.m6b_c00295{transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);-ms-transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163646,-0.004909,0.007497,0.249888,0,0);}
.m3b_c00295{transform:matrix(0.164060,-0.004266,0.006498,0.249916,0,0);-ms-transform:matrix(0.164060,-0.004266,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164060,-0.004266,0.006498,0.249916,0,0);}
.mc9_c00295{transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-ms-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);}
.mf1_c00295{transform:matrix(0.164635,-0.007251,0.011000,0.249758,0,0);-ms-transform:matrix(0.164635,-0.007251,0.011000,0.249758,0,0);-webkit-transform:matrix(0.164635,-0.007251,0.011000,0.249758,0,0);}
.md3_c00295{transform:matrix(0.164670,-0.004446,0.006748,0.249909,0,0);-ms-transform:matrix(0.164670,-0.004446,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164670,-0.004446,0.006748,0.249909,0,0);}
.m22_c00295{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.m5a_c00295{transform:matrix(0.165609,-0.004306,0.006498,0.249916,0,0);-ms-transform:matrix(0.165609,-0.004306,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165609,-0.004306,0.006498,0.249916,0,0);}
.ma_c00295{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.mf2_c00295{transform:matrix(0.166319,-0.007325,0.011000,0.249758,0,0);-ms-transform:matrix(0.166319,-0.007325,0.011000,0.249758,0,0);-webkit-transform:matrix(0.166319,-0.007325,0.011000,0.249758,0,0);}
.m50_c00295{transform:matrix(0.167119,-0.004345,0.006498,0.249916,0,0);-ms-transform:matrix(0.167119,-0.004345,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167119,-0.004345,0.006498,0.249916,0,0);}
.m2d_c00295{transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);-ms-transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);}
.m25_c00295{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);}
.mff_c00295{transform:matrix(0.167784,-0.006382,0.009503,0.249819,0,0);-ms-transform:matrix(0.167784,-0.006382,0.009503,0.249819,0,0);-webkit-transform:matrix(0.167784,-0.006382,0.009503,0.249819,0,0);}
.m98_c00295{transform:matrix(0.167944,-0.005206,0.007746,0.249880,0,0);-ms-transform:matrix(0.167944,-0.005206,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167944,-0.005206,0.007746,0.249880,0,0);}
.m6c_c00295{transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);-ms-transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168099,-0.005043,0.007497,0.249888,0,0);}
.mc0_c00295{transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);-ms-transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168174,-0.004541,0.006748,0.249909,0,0);}
.m8e_c00295{transform:matrix(0.168247,-0.005895,0.008753,0.249847,0,0);-ms-transform:matrix(0.168247,-0.005895,0.008753,0.249847,0,0);-webkit-transform:matrix(0.168247,-0.005895,0.008753,0.249847,0,0);}
.m58_c00295{transform:matrix(0.168683,-0.004386,0.006498,0.249916,0,0);-ms-transform:matrix(0.168683,-0.004386,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168683,-0.004386,0.006498,0.249916,0,0);}
.ma3_c00295{transform:matrix(0.168849,-0.005065,0.007497,0.249888,0,0);-ms-transform:matrix(0.168849,-0.005065,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168849,-0.005065,0.007497,0.249888,0,0);}
.m52_c00295{transform:matrix(0.169083,-0.004396,0.006498,0.249916,0,0);-ms-transform:matrix(0.169083,-0.004396,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169083,-0.004396,0.006498,0.249916,0,0);}
.m31_c00295{transform:matrix(0.169943,-0.005268,0.007746,0.249880,0,0);-ms-transform:matrix(0.169943,-0.005268,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169943,-0.005268,0.007746,0.249880,0,0);}
.m43_c00295{transform:matrix(0.170197,-0.004425,0.006498,0.249916,0,0);-ms-transform:matrix(0.170197,-0.004425,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170197,-0.004425,0.006498,0.249916,0,0);}
.m45_c00295{transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);-ms-transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);}
.mb8_c00295{transform:matrix(0.170408,-0.004601,0.006748,0.249909,0,0);-ms-transform:matrix(0.170408,-0.004601,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170408,-0.004601,0.006748,0.249909,0,0);}
.m4e_c00295{transform:matrix(0.170597,-0.004436,0.006498,0.249916,0,0);-ms-transform:matrix(0.170597,-0.004436,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170597,-0.004436,0.006498,0.249916,0,0);}
.mc7_c00295{transform:matrix(0.170663,-0.004608,0.006748,0.249909,0,0);-ms-transform:matrix(0.170663,-0.004608,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170663,-0.004608,0.006748,0.249909,0,0);}
.mb7_c00295{transform:matrix(0.170843,-0.004613,0.006748,0.249909,0,0);-ms-transform:matrix(0.170843,-0.004613,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170843,-0.004613,0.006748,0.249909,0,0);}
.m75_c00295{transform:matrix(0.171283,-0.005138,0.007497,0.249888,0,0);-ms-transform:matrix(0.171283,-0.005138,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171283,-0.005138,0.007497,0.249888,0,0);}
.m1c_c00295{transform:matrix(0.171520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171520,0.000000,0.000000,0.250000,0,0);}
.m68_c00295{transform:matrix(0.172522,-0.005176,0.007497,0.249888,0,0);-ms-transform:matrix(0.172522,-0.005176,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172522,-0.005176,0.007497,0.249888,0,0);}
.m14_c00295{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m95_c00295{transform:matrix(0.174086,-0.005397,0.007746,0.249880,0,0);-ms-transform:matrix(0.174086,-0.005397,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174086,-0.005397,0.007746,0.249880,0,0);}
.m46_c00295{transform:matrix(0.174271,-0.004531,0.006498,0.249916,0,0);-ms-transform:matrix(0.174271,-0.004531,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174271,-0.004531,0.006498,0.249916,0,0);}
.md8_c00295{transform:matrix(0.175021,-0.004726,0.006748,0.249909,0,0);-ms-transform:matrix(0.175021,-0.004726,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175021,-0.004726,0.006748,0.249909,0,0);}
.m63_c00295{transform:matrix(0.175116,-0.005253,0.007497,0.249888,0,0);-ms-transform:matrix(0.175116,-0.005253,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175116,-0.005253,0.007497,0.249888,0,0);}
.m87_c00295{transform:matrix(0.175588,-0.005976,0.008504,0.249855,0,0);-ms-transform:matrix(0.175588,-0.005976,0.008504,0.249855,0,0);-webkit-transform:matrix(0.175588,-0.005976,0.008504,0.249855,0,0);}
.m5f_c00295{transform:matrix(0.175746,-0.005272,0.007497,0.249888,0,0);-ms-transform:matrix(0.175746,-0.005272,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175746,-0.005272,0.007497,0.249888,0,0);}
.m8_c00295{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00295{transform:matrix(0.176031,-0.005281,0.007497,0.249888,0,0);-ms-transform:matrix(0.176031,-0.005281,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176031,-0.005281,0.007497,0.249888,0,0);}
.m30_c00295{transform:matrix(0.176095,-0.005459,0.007746,0.249880,0,0);-ms-transform:matrix(0.176095,-0.005459,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176095,-0.005459,0.007746,0.249880,0,0);}
.m67_c00295{transform:matrix(0.176326,-0.005290,0.007497,0.249888,0,0);-ms-transform:matrix(0.176326,-0.005290,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176326,-0.005290,0.007497,0.249888,0,0);}
.m81_c00295{transform:matrix(0.176348,-0.006002,0.008504,0.249855,0,0);-ms-transform:matrix(0.176348,-0.006002,0.008504,0.249855,0,0);-webkit-transform:matrix(0.176348,-0.006002,0.008504,0.249855,0,0);}
.m6a_c00295{transform:matrix(0.176391,-0.005292,0.007497,0.249888,0,0);-ms-transform:matrix(0.176391,-0.005292,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176391,-0.005292,0.007497,0.249888,0,0);}
.m100_c00295{transform:matrix(0.176857,-0.006727,0.009503,0.249819,0,0);-ms-transform:matrix(0.176857,-0.006727,0.009503,0.249819,0,0);-webkit-transform:matrix(0.176857,-0.006727,0.009503,0.249819,0,0);}
.m42_c00295{transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);-ms-transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177105,-0.004605,0.006498,0.249916,0,0);}
.m79_c00295{transform:matrix(0.177477,-0.006040,0.008504,0.249855,0,0);-ms-transform:matrix(0.177477,-0.006040,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177477,-0.006040,0.008504,0.249855,0,0);}
.m62_c00295{transform:matrix(0.177725,-0.005332,0.007497,0.249888,0,0);-ms-transform:matrix(0.177725,-0.005332,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177725,-0.005332,0.007497,0.249888,0,0);}
.m69_c00295{transform:matrix(0.177885,-0.005337,0.007497,0.249888,0,0);-ms-transform:matrix(0.177885,-0.005337,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177885,-0.005337,0.007497,0.249888,0,0);}
.m6d_c00295{transform:matrix(0.178410,-0.005352,0.007497,0.249888,0,0);-ms-transform:matrix(0.178410,-0.005352,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178410,-0.005352,0.007497,0.249888,0,0);}
.m65_c00295{transform:matrix(0.178595,-0.005358,0.007497,0.249888,0,0);-ms-transform:matrix(0.178595,-0.005358,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178595,-0.005358,0.007497,0.249888,0,0);}
.mf5_c00295{transform:matrix(0.178787,-0.007874,0.011000,0.249758,0,0);-ms-transform:matrix(0.178787,-0.007874,0.011000,0.249758,0,0);-webkit-transform:matrix(0.178787,-0.007874,0.011000,0.249758,0,0);}
.m23_c00295{transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);}
.m35_c00295{transform:matrix(0.179384,-0.004664,0.006498,0.249916,0,0);-ms-transform:matrix(0.179384,-0.004664,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179384,-0.004664,0.006498,0.249916,0,0);}
.m17_c00295{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{transform:matrix(0.180004,-0.004680,0.006498,0.249916,0,0);-ms-transform:matrix(0.180004,-0.004680,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180004,-0.004680,0.006498,0.249916,0,0);}
.m57_c00295{transform:matrix(0.180264,-0.004687,0.006498,0.249916,0,0);-ms-transform:matrix(0.180264,-0.004687,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180264,-0.004687,0.006498,0.249916,0,0);}
.m2e_c00295{transform:matrix(0.180308,-0.005590,0.007746,0.249880,0,0);-ms-transform:matrix(0.180308,-0.005590,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180308,-0.005590,0.007746,0.249880,0,0);}
.m53_c00295{transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);-ms-transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180359,-0.004689,0.006498,0.249916,0,0);}
.mca_c00295{transform:matrix(0.180439,-0.004872,0.006748,0.249909,0,0);-ms-transform:matrix(0.180439,-0.004872,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180439,-0.004872,0.006748,0.249909,0,0);}
.m64_c00295{transform:matrix(0.180509,-0.005415,0.007497,0.249888,0,0);-ms-transform:matrix(0.180509,-0.005415,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180509,-0.005415,0.007497,0.249888,0,0);}
.mb_c00295{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m54_c00295{transform:matrix(0.181214,-0.004712,0.006498,0.249916,0,0);-ms-transform:matrix(0.181214,-0.004712,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181214,-0.004712,0.006498,0.249916,0,0);}
.m36_c00295{transform:matrix(0.181614,-0.004722,0.006498,0.249916,0,0);-ms-transform:matrix(0.181614,-0.004722,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181614,-0.004722,0.006498,0.249916,0,0);}
.m1a_c00295{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181985,0.000000,0.000000,0.250000,0,0);}
.md5_c00295{transform:matrix(0.182114,-0.004917,0.006748,0.249909,0,0);-ms-transform:matrix(0.182114,-0.004917,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182114,-0.004917,0.006748,0.249909,0,0);}
.m38_c00295{transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);-ms-transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182223,-0.004738,0.006498,0.249916,0,0);}
.mbc_c00295{transform:matrix(0.182254,-0.004921,0.006748,0.249909,0,0);-ms-transform:matrix(0.182254,-0.004921,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182254,-0.004921,0.006748,0.249909,0,0);}
.mc6_c00295{transform:matrix(0.182903,-0.004938,0.006748,0.249909,0,0);-ms-transform:matrix(0.182903,-0.004938,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182903,-0.004938,0.006748,0.249909,0,0);}
.m4c_c00295{transform:matrix(0.183018,-0.004758,0.006498,0.249916,0,0);-ms-transform:matrix(0.183018,-0.004758,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183018,-0.004758,0.006498,0.249916,0,0);}
.mcb_c00295{transform:matrix(0.183218,-0.004947,0.006748,0.249909,0,0);-ms-transform:matrix(0.183218,-0.004947,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183218,-0.004947,0.006748,0.249909,0,0);}
.mdb_c00295{transform:matrix(0.183613,-0.004958,0.006748,0.249909,0,0);-ms-transform:matrix(0.183613,-0.004958,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183613,-0.004958,0.006748,0.249909,0,0);}
.mf4_c00295{transform:matrix(0.183787,-0.008095,0.011000,0.249758,0,0);-ms-transform:matrix(0.183787,-0.008095,0.011000,0.249758,0,0);-webkit-transform:matrix(0.183787,-0.008095,0.011000,0.249758,0,0);}
.m7d_c00295{transform:matrix(0.183859,-0.006257,0.008504,0.249855,0,0);-ms-transform:matrix(0.183859,-0.006257,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183859,-0.006257,0.008504,0.249855,0,0);}
.m49_c00295{transform:matrix(0.183888,-0.004781,0.006498,0.249916,0,0);-ms-transform:matrix(0.183888,-0.004781,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183888,-0.004781,0.006498,0.249916,0,0);}
.m84_c00295{transform:matrix(0.183899,-0.006259,0.008504,0.249855,0,0);-ms-transform:matrix(0.183899,-0.006259,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183899,-0.006259,0.008504,0.249855,0,0);}
.m7a_c00295{transform:matrix(0.184148,-0.006267,0.008504,0.249855,0,0);-ms-transform:matrix(0.184148,-0.006267,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184148,-0.006267,0.008504,0.249855,0,0);}
.md0_c00295{transform:matrix(0.184628,-0.004985,0.006748,0.249909,0,0);-ms-transform:matrix(0.184628,-0.004985,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184628,-0.004985,0.006748,0.249909,0,0);}
.md6_c00295{transform:matrix(0.184648,-0.004985,0.006748,0.249909,0,0);-ms-transform:matrix(0.184648,-0.004985,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184648,-0.004985,0.006748,0.249909,0,0);}
.m39_c00295{transform:matrix(0.185012,-0.004810,0.006498,0.249916,0,0);-ms-transform:matrix(0.185012,-0.004810,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185012,-0.004810,0.006498,0.249916,0,0);}
.m7f_c00295{transform:matrix(0.185038,-0.006298,0.008504,0.249855,0,0);-ms-transform:matrix(0.185038,-0.006298,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185038,-0.006298,0.008504,0.249855,0,0);}
.mf6_c00295{transform:matrix(0.185660,-0.008177,0.011000,0.249758,0,0);-ms-transform:matrix(0.185660,-0.008177,0.011000,0.249758,0,0);-webkit-transform:matrix(0.185660,-0.008177,0.011000,0.249758,0,0);}
.mb0_c00295{transform:matrix(0.185902,-0.005019,0.006748,0.249909,0,0);-ms-transform:matrix(0.185902,-0.005019,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185902,-0.005019,0.006748,0.249909,0,0);}
.m29_c00295{transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);-ms-transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);}
.m2_c00295{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m56_c00295{transform:matrix(0.186237,-0.004842,0.006498,0.249916,0,0);-ms-transform:matrix(0.186237,-0.004842,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186237,-0.004842,0.006498,0.249916,0,0);}
.mf8_c00295{transform:matrix(0.187124,-0.008242,0.011000,0.249758,0,0);-ms-transform:matrix(0.187124,-0.008242,0.011000,0.249758,0,0);-webkit-transform:matrix(0.187124,-0.008242,0.011000,0.249758,0,0);}
.m9f_c00295{transform:matrix(0.187250,-0.005805,0.007746,0.249880,0,0);-ms-transform:matrix(0.187250,-0.005805,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187250,-0.005805,0.007746,0.249880,0,0);}
.m6f_c00295{transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-ms-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187516,-0.005625,0.007497,0.249888,0,0);}
.mbe_c00295{transform:matrix(0.187522,-0.005063,0.006748,0.249909,0,0);-ms-transform:matrix(0.187522,-0.005063,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187522,-0.005063,0.006748,0.249909,0,0);}
.m101_c00295{transform:matrix(0.187559,-0.007134,0.009503,0.249819,0,0);-ms-transform:matrix(0.187559,-0.007134,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187559,-0.007134,0.009503,0.249819,0,0);}
.m105_c00295{transform:matrix(0.187659,-0.007138,0.009503,0.249819,0,0);-ms-transform:matrix(0.187659,-0.007138,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187659,-0.007138,0.009503,0.249819,0,0);}
.md9_c00295{transform:matrix(0.187717,-0.005068,0.006748,0.249909,0,0);-ms-transform:matrix(0.187717,-0.005068,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187717,-0.005068,0.006748,0.249909,0,0);}
.med_c00295{transform:matrix(0.188472,-0.008301,0.011000,0.249758,0,0);-ms-transform:matrix(0.188472,-0.008301,0.011000,0.249758,0,0);-webkit-transform:matrix(0.188472,-0.008301,0.011000,0.249758,0,0);}
.m102_c00295{transform:matrix(0.188634,-0.007175,0.009503,0.249819,0,0);-ms-transform:matrix(0.188634,-0.007175,0.009503,0.249819,0,0);-webkit-transform:matrix(0.188634,-0.007175,0.009503,0.249819,0,0);}
.m59_c00295{transform:matrix(0.188681,-0.004906,0.006498,0.249916,0,0);-ms-transform:matrix(0.188681,-0.004906,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188681,-0.004906,0.006498,0.249916,0,0);}
.m3_c00295{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.maa_c00295{transform:matrix(0.189007,-0.006811,0.009003,0.249838,0,0);-ms-transform:matrix(0.189007,-0.006811,0.009003,0.249838,0,0);-webkit-transform:matrix(0.189007,-0.006811,0.009003,0.249838,0,0);}
.mf7_c00295{transform:matrix(0.189616,-0.008351,0.011000,0.249758,0,0);-ms-transform:matrix(0.189616,-0.008351,0.011000,0.249758,0,0);-webkit-transform:matrix(0.189616,-0.008351,0.011000,0.249758,0,0);}
.mb6_c00295{transform:matrix(0.190596,-0.005146,0.006748,0.249909,0,0);-ms-transform:matrix(0.190596,-0.005146,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190596,-0.005146,0.006748,0.249909,0,0);}
.m21_c00295{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m60_c00295{transform:matrix(0.190914,-0.005727,0.007497,0.249888,0,0);-ms-transform:matrix(0.190914,-0.005727,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190914,-0.005727,0.007497,0.249888,0,0);}
.m5b_c00295{transform:matrix(0.190940,-0.004964,0.006498,0.249916,0,0);-ms-transform:matrix(0.190940,-0.004964,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190940,-0.004964,0.006498,0.249916,0,0);}
.m8c_c00295{transform:matrix(0.191338,-0.006704,0.008753,0.249847,0,0);-ms-transform:matrix(0.191338,-0.006704,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191338,-0.006704,0.008753,0.249847,0,0);}
.mce_c00295{transform:matrix(0.191550,-0.005172,0.006748,0.249909,0,0);-ms-transform:matrix(0.191550,-0.005172,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191550,-0.005172,0.006748,0.249909,0,0);}
.m4f_c00295{transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-ms-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);}
.m1f_c00295{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.m99_c00295{transform:matrix(0.192013,-0.005952,0.007746,0.249880,0,0);-ms-transform:matrix(0.192013,-0.005952,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192013,-0.005952,0.007746,0.249880,0,0);}
.ma0_c00295{transform:matrix(0.192528,-0.005968,0.007746,0.249880,0,0);-ms-transform:matrix(0.192528,-0.005968,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192528,-0.005968,0.007746,0.249880,0,0);}
.ma6_c00295{transform:matrix(0.192563,-0.005777,0.007497,0.249888,0,0);-ms-transform:matrix(0.192563,-0.005777,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192563,-0.005777,0.007497,0.249888,0,0);}
.m1d_c00295{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.mf0_c00295{transform:matrix(0.193398,-0.008518,0.011000,0.249758,0,0);-ms-transform:matrix(0.193398,-0.008518,0.011000,0.249758,0,0);-webkit-transform:matrix(0.193398,-0.008518,0.011000,0.249758,0,0);}
.m3e_c00295{transform:matrix(0.193485,-0.005031,0.006498,0.249916,0,0);-ms-transform:matrix(0.193485,-0.005031,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193485,-0.005031,0.006498,0.249916,0,0);}
.m4b_c00295{transform:matrix(0.193924,-0.005042,0.006498,0.249916,0,0);-ms-transform:matrix(0.193924,-0.005042,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193924,-0.005042,0.006498,0.249916,0,0);}
.md1_c00295{transform:matrix(0.194289,-0.005246,0.006748,0.249909,0,0);-ms-transform:matrix(0.194289,-0.005246,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194289,-0.005246,0.006748,0.249909,0,0);}
.mba_c00295{transform:matrix(0.194344,-0.005247,0.006748,0.249909,0,0);-ms-transform:matrix(0.194344,-0.005247,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194344,-0.005247,0.006748,0.249909,0,0);}
.mcf_c00295{transform:matrix(0.194844,-0.005261,0.006748,0.249909,0,0);-ms-transform:matrix(0.194844,-0.005261,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194844,-0.005261,0.006748,0.249909,0,0);}
.m9d_c00295{transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);-ms-transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);}
.m28_c00295{transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);-ms-transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);}
.mef_c00295{transform:matrix(0.195346,-0.008604,0.011000,0.249758,0,0);-ms-transform:matrix(0.195346,-0.008604,0.011000,0.249758,0,0);-webkit-transform:matrix(0.195346,-0.008604,0.011000,0.249758,0,0);}
.m93_c00295{transform:matrix(0.195801,-0.006070,0.007746,0.249880,0,0);-ms-transform:matrix(0.195801,-0.006070,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195801,-0.006070,0.007746,0.249880,0,0);}
.mdf_c00295{transform:matrix(0.196159,-0.005296,0.006748,0.249909,0,0);-ms-transform:matrix(0.196159,-0.005296,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196159,-0.005296,0.006748,0.249909,0,0);}
.mc8_c00295{transform:matrix(0.196603,-0.005308,0.006748,0.249909,0,0);-ms-transform:matrix(0.196603,-0.005308,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196603,-0.005308,0.006748,0.249909,0,0);}
.m6e_c00295{transform:matrix(0.197151,-0.005915,0.007497,0.249888,0,0);-ms-transform:matrix(0.197151,-0.005915,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197151,-0.005915,0.007497,0.249888,0,0);}
.mec_c00295{transform:matrix(0.197174,-0.008684,0.011000,0.249758,0,0);-ms-transform:matrix(0.197174,-0.008684,0.011000,0.249758,0,0);-webkit-transform:matrix(0.197174,-0.008684,0.011000,0.249758,0,0);}
.m90_c00295{transform:matrix(0.197470,-0.006122,0.007746,0.249880,0,0);-ms-transform:matrix(0.197470,-0.006122,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197470,-0.006122,0.007746,0.249880,0,0);}
.mdc_c00295{transform:matrix(0.197798,-0.005341,0.006748,0.249909,0,0);-ms-transform:matrix(0.197798,-0.005341,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197798,-0.005341,0.006748,0.249909,0,0);}
.m103_c00295{transform:matrix(0.197927,-0.007529,0.009503,0.249819,0,0);-ms-transform:matrix(0.197927,-0.007529,0.009503,0.249819,0,0);-webkit-transform:matrix(0.197927,-0.007529,0.009503,0.249819,0,0);}
.m9e_c00295{transform:matrix(0.198849,-0.006164,0.007746,0.249880,0,0);-ms-transform:matrix(0.198849,-0.006164,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198849,-0.006164,0.007746,0.249880,0,0);}
.mb3_c00295{transform:matrix(0.198868,-0.005369,0.006748,0.249909,0,0);-ms-transform:matrix(0.198868,-0.005369,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198868,-0.005369,0.006748,0.249909,0,0);}
.m11_c00295{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.md4_c00295{transform:matrix(0.199467,-0.005386,0.006748,0.249909,0,0);-ms-transform:matrix(0.199467,-0.005386,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199467,-0.005386,0.006748,0.249909,0,0);}
.m85_c00295{transform:matrix(0.199694,-0.006796,0.008504,0.249855,0,0);-ms-transform:matrix(0.199694,-0.006796,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199694,-0.006796,0.008504,0.249855,0,0);}
.ma9_c00295{transform:matrix(0.200075,-0.007210,0.009003,0.249838,0,0);-ms-transform:matrix(0.200075,-0.007210,0.009003,0.249838,0,0);-webkit-transform:matrix(0.200075,-0.007210,0.009003,0.249838,0,0);}
.m48_c00295{transform:matrix(0.200137,-0.005204,0.006498,0.249916,0,0);-ms-transform:matrix(0.200137,-0.005204,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200137,-0.005204,0.006498,0.249916,0,0);}
.m16_c00295{transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);}
.m55_c00295{transform:matrix(0.201377,-0.005236,0.006498,0.249916,0,0);-ms-transform:matrix(0.201377,-0.005236,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201377,-0.005236,0.006498,0.249916,0,0);}
.m20_c00295{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.mc2_c00295{transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);-ms-transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201652,-0.005445,0.006748,0.249909,0,0);}
.m92_c00295{transform:matrix(0.201973,-0.006261,0.007746,0.249880,0,0);-ms-transform:matrix(0.201973,-0.006261,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201973,-0.006261,0.007746,0.249880,0,0);}
.mb5_c00295{transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);-ms-transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);}
.mea_c00295{transform:matrix(0.202606,-0.005470,0.006748,0.249909,0,0);-ms-transform:matrix(0.202606,-0.005470,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202606,-0.005470,0.006748,0.249909,0,0);}
.m74_c00295{transform:matrix(0.202704,-0.006081,0.007497,0.249888,0,0);-ms-transform:matrix(0.202704,-0.006081,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202704,-0.006081,0.007497,0.249888,0,0);}
.me8_c00295{transform:matrix(0.203126,-0.005484,0.006748,0.249909,0,0);-ms-transform:matrix(0.203126,-0.005484,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203126,-0.005484,0.006748,0.249909,0,0);}
.m8d_c00295{transform:matrix(0.203510,-0.007130,0.008753,0.249847,0,0);-ms-transform:matrix(0.203510,-0.007130,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203510,-0.007130,0.008753,0.249847,0,0);}
.m47_c00295{transform:matrix(0.203906,-0.005302,0.006498,0.249916,0,0);-ms-transform:matrix(0.203906,-0.005302,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203906,-0.005302,0.006498,0.249916,0,0);}
.mc3_c00295{transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);-ms-transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);}
.mb1_c00295{transform:matrix(0.204296,-0.005516,0.006748,0.249909,0,0);-ms-transform:matrix(0.204296,-0.005516,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204296,-0.005516,0.006748,0.249909,0,0);}
.m15_c00295{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m5c_c00295{transform:matrix(0.204456,-0.005316,0.006498,0.249916,0,0);-ms-transform:matrix(0.204456,-0.005316,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204456,-0.005316,0.006498,0.249916,0,0);}
.m78_c00295{transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);-ms-transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205226,-0.006985,0.008504,0.249855,0,0);}
.m32_c00295{transform:matrix(0.205261,-0.006363,0.007746,0.249880,0,0);-ms-transform:matrix(0.205261,-0.006363,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205261,-0.006363,0.007746,0.249880,0,0);}
.m3f_c00295{transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);-ms-transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);}
.m76_c00295{transform:matrix(0.205711,-0.007001,0.008504,0.249855,0,0);-ms-transform:matrix(0.205711,-0.007001,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205711,-0.007001,0.008504,0.249855,0,0);}
.mbb_c00295{transform:matrix(0.206495,-0.005575,0.006748,0.249909,0,0);-ms-transform:matrix(0.206495,-0.005575,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206495,-0.005575,0.006748,0.249909,0,0);}
.me_c00295{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m89_c00295{transform:matrix(0.206603,-0.007238,0.008753,0.249847,0,0);-ms-transform:matrix(0.206603,-0.007238,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206603,-0.007238,0.008753,0.249847,0,0);}
.md7_c00295{transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);-ms-transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);}
.m73_c00295{transform:matrix(0.206907,-0.006207,0.007497,0.249888,0,0);-ms-transform:matrix(0.206907,-0.006207,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206907,-0.006207,0.007497,0.249888,0,0);}
.m82_c00295{transform:matrix(0.206990,-0.007045,0.008504,0.249855,0,0);-ms-transform:matrix(0.206990,-0.007045,0.008504,0.249855,0,0);-webkit-transform:matrix(0.206990,-0.007045,0.008504,0.249855,0,0);}
.m94_c00295{transform:matrix(0.207215,-0.006424,0.007746,0.249880,0,0);-ms-transform:matrix(0.207215,-0.006424,0.007746,0.249880,0,0);-webkit-transform:matrix(0.207215,-0.006424,0.007746,0.249880,0,0);}
.mcc_c00295{transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);-ms-transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);}
.mae_c00295{transform:matrix(0.208520,-0.007514,0.009003,0.249838,0,0);-ms-transform:matrix(0.208520,-0.007514,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208520,-0.007514,0.009003,0.249838,0,0);}
.m80_c00295{transform:matrix(0.209659,-0.007136,0.008504,0.249855,0,0);-ms-transform:matrix(0.209659,-0.007136,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209659,-0.007136,0.008504,0.249855,0,0);}
.ma4_c00295{transform:matrix(0.210100,-0.006303,0.007497,0.249888,0,0);-ms-transform:matrix(0.210100,-0.006303,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210100,-0.006303,0.007497,0.249888,0,0);}
.m61_c00295{transform:matrix(0.210930,-0.006328,0.007497,0.249888,0,0);-ms-transform:matrix(0.210930,-0.006328,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210930,-0.006328,0.007497,0.249888,0,0);}
.m5e_c00295{transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-ms-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);}
.m4d_c00295{transform:matrix(0.213848,-0.005560,0.006498,0.249916,0,0);-ms-transform:matrix(0.213848,-0.005560,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213848,-0.005560,0.006498,0.249916,0,0);}
.ma1_c00295{transform:matrix(0.214002,-0.006634,0.007746,0.249880,0,0);-ms-transform:matrix(0.214002,-0.006634,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214002,-0.006634,0.007746,0.249880,0,0);}
.m2a_c00295{transform:matrix(0.214511,-0.006006,0.006997,0.249902,0,0);-ms-transform:matrix(0.214511,-0.006006,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214511,-0.006006,0.006997,0.249902,0,0);}
.mc1_c00295{transform:matrix(0.214757,-0.005798,0.006748,0.249909,0,0);-ms-transform:matrix(0.214757,-0.005798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214757,-0.005798,0.006748,0.249909,0,0);}
.mb9_c00295{transform:matrix(0.215441,-0.005817,0.006748,0.249909,0,0);-ms-transform:matrix(0.215441,-0.005817,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215441,-0.005817,0.006748,0.249909,0,0);}
.m77_c00295{transform:matrix(0.215505,-0.007335,0.008504,0.249855,0,0);-ms-transform:matrix(0.215505,-0.007335,0.008504,0.249855,0,0);-webkit-transform:matrix(0.215505,-0.007335,0.008504,0.249855,0,0);}
.ma8_c00295{transform:matrix(0.215903,-0.006477,0.007497,0.249888,0,0);-ms-transform:matrix(0.215903,-0.006477,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215903,-0.006477,0.007497,0.249888,0,0);}
.mde_c00295{transform:matrix(0.216181,-0.005837,0.006748,0.249909,0,0);-ms-transform:matrix(0.216181,-0.005837,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216181,-0.005837,0.006748,0.249909,0,0);}
.m7e_c00295{transform:matrix(0.216325,-0.007362,0.008504,0.249855,0,0);-ms-transform:matrix(0.216325,-0.007362,0.008504,0.249855,0,0);-webkit-transform:matrix(0.216325,-0.007362,0.008504,0.249855,0,0);}
.m44_c00295{transform:matrix(0.216742,-0.005635,0.006498,0.249916,0,0);-ms-transform:matrix(0.216742,-0.005635,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216742,-0.005635,0.006498,0.249916,0,0);}
.m40_c00295{transform:matrix(0.217372,-0.005652,0.006498,0.249916,0,0);-ms-transform:matrix(0.217372,-0.005652,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217372,-0.005652,0.006498,0.249916,0,0);}
.mad_c00295{transform:matrix(0.217479,-0.007837,0.009003,0.249838,0,0);-ms-transform:matrix(0.217479,-0.007837,0.009003,0.249838,0,0);-webkit-transform:matrix(0.217479,-0.007837,0.009003,0.249838,0,0);}
.m5d_c00295{transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);-ms-transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217632,-0.006529,0.007497,0.249888,0,0);}
.ma5_c00295{transform:matrix(0.217682,-0.006530,0.007497,0.249888,0,0);-ms-transform:matrix(0.217682,-0.006530,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217682,-0.006530,0.007497,0.249888,0,0);}
.mfb_c00295{transform:matrix(0.218423,-0.009620,0.011000,0.249758,0,0);-ms-transform:matrix(0.218423,-0.009620,0.011000,0.249758,0,0);-webkit-transform:matrix(0.218423,-0.009620,0.011000,0.249758,0,0);}
.m3c_c00295{transform:matrix(0.219446,-0.005706,0.006498,0.249916,0,0);-ms-transform:matrix(0.219446,-0.005706,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219446,-0.005706,0.006498,0.249916,0,0);}
.mfc_c00295{transform:matrix(0.220246,-0.009701,0.011000,0.249758,0,0);-ms-transform:matrix(0.220246,-0.009701,0.011000,0.249758,0,0);-webkit-transform:matrix(0.220246,-0.009701,0.011000,0.249758,0,0);}
.m37_c00295{transform:matrix(0.221165,-0.005750,0.006498,0.249916,0,0);-ms-transform:matrix(0.221165,-0.005750,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221165,-0.005750,0.006498,0.249916,0,0);}
.m33_c00295{transform:matrix(0.221349,-0.006862,0.007746,0.249880,0,0);-ms-transform:matrix(0.221349,-0.006862,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221349,-0.006862,0.007746,0.249880,0,0);}
.ma2_c00295{transform:matrix(0.221355,-0.006641,0.007497,0.249888,0,0);-ms-transform:matrix(0.221355,-0.006641,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221355,-0.006641,0.007497,0.249888,0,0);}
.m27_c00295{transform:matrix(0.222218,-0.006222,0.006997,0.249902,0,0);-ms-transform:matrix(0.222218,-0.006222,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222218,-0.006222,0.006997,0.249902,0,0);}
.m8b_c00295{transform:matrix(0.222488,-0.007795,0.008753,0.249847,0,0);-ms-transform:matrix(0.222488,-0.007795,0.008753,0.249847,0,0);-webkit-transform:matrix(0.222488,-0.007795,0.008753,0.249847,0,0);}
.me6_c00295{transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-ms-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);}
.m91_c00295{transform:matrix(0.223408,-0.006926,0.007746,0.249880,0,0);-ms-transform:matrix(0.223408,-0.006926,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223408,-0.006926,0.007746,0.249880,0,0);}
.mab_c00295{transform:matrix(0.224184,-0.008079,0.009003,0.249838,0,0);-ms-transform:matrix(0.224184,-0.008079,0.009003,0.249838,0,0);-webkit-transform:matrix(0.224184,-0.008079,0.009003,0.249838,0,0);}
.mda_c00295{transform:matrix(0.224428,-0.006060,0.006748,0.249909,0,0);-ms-transform:matrix(0.224428,-0.006060,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224428,-0.006060,0.006748,0.249909,0,0);}
.mdd_c00295{transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);-ms-transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225658,-0.006093,0.006748,0.249909,0,0);}
.mb4_c00295{transform:matrix(0.225703,-0.006094,0.006748,0.249909,0,0);-ms-transform:matrix(0.225703,-0.006094,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225703,-0.006094,0.006748,0.249909,0,0);}
.mbf_c00295{transform:matrix(0.225883,-0.006099,0.006748,0.249909,0,0);-ms-transform:matrix(0.225883,-0.006099,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225883,-0.006099,0.006748,0.249909,0,0);}
.m83_c00295{transform:matrix(0.225914,-0.007689,0.008504,0.249855,0,0);-ms-transform:matrix(0.225914,-0.007689,0.008504,0.249855,0,0);-webkit-transform:matrix(0.225914,-0.007689,0.008504,0.249855,0,0);}
.m72_c00295{transform:matrix(0.226673,-0.006800,0.007497,0.249888,0,0);-ms-transform:matrix(0.226673,-0.006800,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226673,-0.006800,0.007497,0.249888,0,0);}
.mc5_c00295{transform:matrix(0.230231,-0.006216,0.006748,0.249909,0,0);-ms-transform:matrix(0.230231,-0.006216,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230231,-0.006216,0.006748,0.249909,0,0);}
.mf9_c00295{transform:matrix(0.231551,-0.010198,0.011000,0.249758,0,0);-ms-transform:matrix(0.231551,-0.010198,0.011000,0.249758,0,0);-webkit-transform:matrix(0.231551,-0.010198,0.011000,0.249758,0,0);}
.m96_c00295{transform:matrix(0.232538,-0.007209,0.007746,0.249880,0,0);-ms-transform:matrix(0.232538,-0.007209,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232538,-0.007209,0.007746,0.249880,0,0);}
.m7c_c00295{transform:matrix(0.234099,-0.007967,0.008504,0.249855,0,0);-ms-transform:matrix(0.234099,-0.007967,0.008504,0.249855,0,0);-webkit-transform:matrix(0.234099,-0.007967,0.008504,0.249855,0,0);}
.maf_c00295{transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);-ms-transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234345,-0.006327,0.006748,0.249909,0,0);}
.m9a_c00295{transform:matrix(0.235562,-0.007302,0.007746,0.249880,0,0);-ms-transform:matrix(0.235562,-0.007302,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235562,-0.007302,0.007746,0.249880,0,0);}
.m4_c00295{transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);}
.mac_c00295{transform:matrix(0.239325,-0.008624,0.009003,0.249838,0,0);-ms-transform:matrix(0.239325,-0.008624,0.009003,0.249838,0,0);-webkit-transform:matrix(0.239325,-0.008624,0.009003,0.249838,0,0);}
.m4a_c00295{transform:matrix(0.241678,-0.006284,0.006498,0.249916,0,0);-ms-transform:matrix(0.241678,-0.006284,0.006498,0.249916,0,0);-webkit-transform:matrix(0.241678,-0.006284,0.006498,0.249916,0,0);}
.me0_c00295{transform:matrix(0.241827,-0.006529,0.006748,0.249909,0,0);-ms-transform:matrix(0.241827,-0.006529,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241827,-0.006529,0.006748,0.249909,0,0);}
.me7_c00295{transform:matrix(0.245266,-0.006622,0.006748,0.249909,0,0);-ms-transform:matrix(0.245266,-0.006622,0.006748,0.249909,0,0);-webkit-transform:matrix(0.245266,-0.006622,0.006748,0.249909,0,0);}
.me5_c00295{transform:matrix(0.248414,-0.006707,0.006748,0.249909,0,0);-ms-transform:matrix(0.248414,-0.006707,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248414,-0.006707,0.006748,0.249909,0,0);}
.m1_c00295{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m41_c00295{transform:matrix(0.252880,-0.006575,0.006498,0.249916,0,0);-ms-transform:matrix(0.252880,-0.006575,0.006498,0.249916,0,0);-webkit-transform:matrix(0.252880,-0.006575,0.006498,0.249916,0,0);}
.m8f_c00295{transform:matrix(0.253568,-0.007861,0.007746,0.249880,0,0);-ms-transform:matrix(0.253568,-0.007861,0.007746,0.249880,0,0);-webkit-transform:matrix(0.253568,-0.007861,0.007746,0.249880,0,0);}
.m7_c00295{transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.256427,-0.007949,0.007746,0.249880,0,0);-ms-transform:matrix(0.256427,-0.007949,0.007746,0.249880,0,0);-webkit-transform:matrix(0.256427,-0.007949,0.007746,0.249880,0,0);}
.m6_c00295{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.mf3_c00295{transform:matrix(0.260747,-0.011484,0.011000,0.249758,0,0);-ms-transform:matrix(0.260747,-0.011484,0.011000,0.249758,0,0);-webkit-transform:matrix(0.260747,-0.011484,0.011000,0.249758,0,0);}
.me2_c00295{transform:matrix(0.262779,-0.007095,0.006748,0.249909,0,0);-ms-transform:matrix(0.262779,-0.007095,0.006748,0.249909,0,0);-webkit-transform:matrix(0.262779,-0.007095,0.006748,0.249909,0,0);}
.m9b_c00295{transform:matrix(0.268331,-0.008318,0.007746,0.249880,0,0);-ms-transform:matrix(0.268331,-0.008318,0.007746,0.249880,0,0);-webkit-transform:matrix(0.268331,-0.008318,0.007746,0.249880,0,0);}
.meb_c00295{transform:matrix(0.273016,-0.007371,0.006748,0.249909,0,0);-ms-transform:matrix(0.273016,-0.007371,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273016,-0.007371,0.006748,0.249909,0,0);}
.mb2_c00295{transform:matrix(0.273760,-0.007392,0.006748,0.249909,0,0);-ms-transform:matrix(0.273760,-0.007392,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273760,-0.007392,0.006748,0.249909,0,0);}
.me1_c00295{transform:matrix(0.276209,-0.007458,0.006748,0.249909,0,0);-ms-transform:matrix(0.276209,-0.007458,0.006748,0.249909,0,0);-webkit-transform:matrix(0.276209,-0.007458,0.006748,0.249909,0,0);}
.m26_c00295{transform:matrix(0.277680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277680,0.000000,0.000000,0.250000,0,0);}
.m71_c00295{transform:matrix(0.278305,-0.008349,0.007497,0.249888,0,0);-ms-transform:matrix(0.278305,-0.008349,0.007497,0.249888,0,0);-webkit-transform:matrix(0.278305,-0.008349,0.007497,0.249888,0,0);}
.mbd_c00295{transform:matrix(0.287325,-0.007758,0.006748,0.249909,0,0);-ms-transform:matrix(0.287325,-0.007758,0.006748,0.249909,0,0);-webkit-transform:matrix(0.287325,-0.007758,0.006748,0.249909,0,0);}
.m97_c00295{transform:matrix(0.287802,-0.008922,0.007746,0.249880,0,0);-ms-transform:matrix(0.287802,-0.008922,0.007746,0.249880,0,0);-webkit-transform:matrix(0.287802,-0.008922,0.007746,0.249880,0,0);}
.m2b_c00295{transform:matrix(0.310718,-0.008700,0.006997,0.249902,0,0);-ms-transform:matrix(0.310718,-0.008700,0.006997,0.249902,0,0);-webkit-transform:matrix(0.310718,-0.008700,0.006997,0.249902,0,0);}
.m70_c00295{transform:matrix(0.323245,-0.009697,0.007497,0.249888,0,0);-ms-transform:matrix(0.323245,-0.009697,0.007497,0.249888,0,0);-webkit-transform:matrix(0.323245,-0.009697,0.007497,0.249888,0,0);}
.mfa_c00295{transform:matrix(0.339111,-0.014936,0.011000,0.249758,0,0);-ms-transform:matrix(0.339111,-0.014936,0.011000,0.249758,0,0);-webkit-transform:matrix(0.339111,-0.014936,0.011000,0.249758,0,0);}
.m86_c00295{transform:matrix(0.341847,-0.011634,0.008504,0.249855,0,0);-ms-transform:matrix(0.341847,-0.011634,0.008504,0.249855,0,0);-webkit-transform:matrix(0.341847,-0.011634,0.008504,0.249855,0,0);}
.m88_c00295{transform:matrix(0.359002,-0.012218,0.008504,0.249855,0,0);-ms-transform:matrix(0.359002,-0.012218,0.008504,0.249855,0,0);-webkit-transform:matrix(0.359002,-0.012218,0.008504,0.249855,0,0);}
.m34_c00295{transform:matrix(0.514726,-0.013383,0.006498,0.249916,0,0);-ms-transform:matrix(0.514726,-0.013383,0.006498,0.249916,0,0);-webkit-transform:matrix(0.514726,-0.013383,0.006498,0.249916,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:0.000000px;}
.fc0_c00295{color:transparent;}
.fs4_c00295{font-size:22.050000px;}
.fs16_c00295{font-size:57.771046px;}
.fs15_c00295{font-size:58.779328px;}
.fs1b_c00295{font-size:59.871811px;}
.fs8_c00295{font-size:60.920581px;}
.fsd_c00295{font-size:60.927399px;}
.fsf_c00295{font-size:61.923883px;}
.fs0_c00295{font-size:61.950000px;}
.fs18_c00295{font-size:61.972577px;}
.fs14_c00295{font-size:61.977871px;}
.fs10_c00295{font-size:62.973440px;}
.fs9_c00295{font-size:63.021290px;}
.fs17_c00295{font-size:63.022959px;}
.fsb_c00295{font-size:63.028344px;}
.fs12_c00295{font-size:63.030264px;}
.fs11_c00295{font-size:64.025208px;}
.fs1c_c00295{font-size:64.047982px;}
.fs1d_c00295{font-size:65.097949px;}
.fs5_c00295{font-size:65.125514px;}
.fs13_c00295{font-size:65.131273px;}
.fs1_c00295{font-size:66.150000px;}
.fs7_c00295{font-size:66.172355px;}
.fs19_c00295{font-size:66.174107px;}
.fse_c00295{font-size:67.171669px;}
.fs3_c00295{font-size:67.200000px;}
.fsa_c00295{font-size:67.222710px;}
.fs1a_c00295{font-size:67.224490px;}
.fs2_c00295{font-size:69.300000px;}
.fsc_c00295{font-size:69.331178px;}
.fs1e_c00295{font-size:71.380184px;}
.fs6_c00295{font-size:73.535308px;}
.y0_c00295{bottom:0.000000px;}
.y100_c00295{bottom:20.268000px;}
.y101_c00295{bottom:21.078711px;}
.y102_c00295{bottom:21.848838px;}
.y103_c00295{bottom:23.444610px;}
.y104_c00295{bottom:25.567689px;}
.y105_c00295{bottom:28.430115px;}
.y106_c00295{bottom:29.221104px;}
.y107_c00295{bottom:29.701443px;}
.yff_c00295{bottom:35.522817px;}
.yf6_c00295{bottom:36.742133px;}
.yf7_c00295{bottom:38.442839px;}
.yf8_c00295{bottom:39.897449px;}
.yf9_c00295{bottom:43.001382px;}
.yfa_c00295{bottom:44.415546px;}
.yfb_c00295{bottom:45.987891px;}
.yfc_c00295{bottom:49.286624px;}
.yfd_c00295{bottom:49.722060px;}
.yfe_c00295{bottom:50.497824px;}
.yee_c00295{bottom:53.482500px;}
.yef_c00295{bottom:55.543614px;}
.yf0_c00295{bottom:57.256842px;}
.yf1_c00295{bottom:58.303338px;}
.yf2_c00295{bottom:60.654324px;}
.yf3_c00295{bottom:61.547964px;}
.yf4_c00295{bottom:62.721510px;}
.yf5_c00295{bottom:64.483776px;}
.ye7_c00295{bottom:70.448565px;}
.ye8_c00295{bottom:72.580128px;}
.ye9_c00295{bottom:73.244532px;}
.yea_c00295{bottom:75.278298px;}
.yeb_c00295{bottom:76.541152px;}
.yec_c00295{bottom:77.384784px;}
.yed_c00295{bottom:79.447314px;}
.ye0_c00295{bottom:87.734485px;}
.ye1_c00295{bottom:90.144319px;}
.ye2_c00295{bottom:90.883684px;}
.ye3_c00295{bottom:93.854311px;}
.ye4_c00295{bottom:97.148823px;}
.ye5_c00295{bottom:98.204376px;}
.ye6_c00295{bottom:98.558847px;}
.yd9_c00295{bottom:105.018776px;}
.yda_c00295{bottom:105.792549px;}
.ydb_c00295{bottom:106.716702px;}
.ydc_c00295{bottom:109.075133px;}
.ydd_c00295{bottom:110.951717px;}
.yde_c00295{bottom:111.702359px;}
.ydf_c00295{bottom:114.409514px;}
.yd0_c00295{bottom:122.032345px;}
.yd1_c00295{bottom:123.047954px;}
.yd2_c00295{bottom:125.296135px;}
.yd3_c00295{bottom:127.061205px;}
.yd4_c00295{bottom:127.424775px;}
.yd5_c00295{bottom:128.060690px;}
.yd6_c00295{bottom:129.721650px;}
.yd7_c00295{bottom:130.758120px;}
.yd8_c00295{bottom:131.401812px;}
.yc8_c00295{bottom:139.858271px;}
.yc9_c00295{bottom:141.590842px;}
.yca_c00295{bottom:143.639319px;}
.ycb_c00295{bottom:145.986807px;}
.ycc_c00295{bottom:146.549220px;}
.ycd_c00295{bottom:148.032447px;}
.yce_c00295{bottom:148.753542px;}
.ycf_c00295{bottom:150.453908px;}
.yc0_c00295{bottom:157.414075px;}
.yc1_c00295{bottom:159.681781px;}
.yc2_c00295{bottom:161.422216px;}
.yc3_c00295{bottom:162.174054px;}
.yc4_c00295{bottom:163.815168px;}
.yc5_c00295{bottom:164.458408px;}
.yc6_c00295{bottom:165.418125px;}
.yc7_c00295{bottom:166.062945px;}
.yb7_c00295{bottom:176.582707px;}
.yb8_c00295{bottom:178.040287px;}
.yb9_c00295{bottom:179.457849px;}
.yba_c00295{bottom:179.990696px;}
.ybb_c00295{bottom:181.300270px;}
.ybc_c00295{bottom:181.952607px;}
.ybd_c00295{bottom:183.275306px;}
.ybe_c00295{bottom:184.105419px;}
.ybf_c00295{bottom:185.128176px;}
.yb1_c00295{bottom:192.249000px;}
.yb2_c00295{bottom:193.825220px;}
.yb3_c00295{bottom:194.322316px;}
.yb4_c00295{bottom:196.232013px;}
.yb5_c00295{bottom:196.829752px;}
.yb6_c00295{bottom:197.998664px;}
.yab_c00295{bottom:209.538000px;}
.yac_c00295{bottom:211.930362px;}
.yad_c00295{bottom:212.961762px;}
.yae_c00295{bottom:216.132912px;}
.yaf_c00295{bottom:216.724482px;}
.yb0_c00295{bottom:219.290994px;}
.ya4_c00295{bottom:227.350500px;}
.ya5_c00295{bottom:229.888050px;}
.ya6_c00295{bottom:230.511975px;}
.ya7_c00295{bottom:231.621900px;}
.ya8_c00295{bottom:232.327725px;}
.ya9_c00295{bottom:234.101535px;}
.yaa_c00295{bottom:234.994785px;}
.y9a_c00295{bottom:243.813084px;}
.y9b_c00295{bottom:244.502732px;}
.y9c_c00295{bottom:246.252570px;}
.y9d_c00295{bottom:246.934080px;}
.y9e_c00295{bottom:248.319222px;}
.y9f_c00295{bottom:248.825801px;}
.ya0_c00295{bottom:249.623711px;}
.ya1_c00295{bottom:250.596180px;}
.ya2_c00295{bottom:251.900390px;}
.ya3_c00295{bottom:252.983970px;}
.y91_c00295{bottom:260.025000px;}
.y92_c00295{bottom:263.222340px;}
.y93_c00295{bottom:264.974786px;}
.y94_c00295{bottom:265.482193px;}
.y95_c00295{bottom:266.097668px;}
.y96_c00295{bottom:267.022088px;}
.y97_c00295{bottom:267.483786px;}
.y98_c00295{bottom:268.062851px;}
.y99_c00295{bottom:269.529228px;}
.y8b_c00295{bottom:275.956500px;}
.y8c_c00295{bottom:278.447153px;}
.y8d_c00295{bottom:279.031163px;}
.y8e_c00295{bottom:281.134890px;}
.y8f_c00295{bottom:283.166063px;}
.y90_c00295{bottom:284.661210px;}
.y81_c00295{bottom:293.230500px;}
.y82_c00295{bottom:294.906207px;}
.y83_c00295{bottom:296.143875px;}
.y84_c00295{bottom:297.351708px;}
.y8a_c00295{bottom:298.624368px;}
.y85_c00295{bottom:300.493971px;}
.y86_c00295{bottom:300.950064px;}
.y87_c00295{bottom:302.171565px;}
.y88_c00295{bottom:302.797947px;}
.y89_c00295{bottom:303.663621px;}
.y78_c00295{bottom:310.243500px;}
.y79_c00295{bottom:310.942047px;}
.y7a_c00295{bottom:312.553698px;}
.y7b_c00295{bottom:312.986484px;}
.y7c_c00295{bottom:314.105067px;}
.y7d_c00295{bottom:316.867278px;}
.y7e_c00295{bottom:317.446230px;}
.y7f_c00295{bottom:319.181505px;}
.y80_c00295{bottom:319.862610px;}
.y6f_c00295{bottom:327.232020px;}
.y70_c00295{bottom:328.265985px;}
.y71_c00295{bottom:329.296620px;}
.y72_c00295{bottom:330.097350px;}
.y73_c00295{bottom:331.615140px;}
.y74_c00295{bottom:332.200020px;}
.y75_c00295{bottom:334.008900px;}
.y76_c00295{bottom:334.624365px;}
.y77_c00295{bottom:336.364530px;}
.y66_c00295{bottom:343.984845px;}
.y67_c00295{bottom:344.683020px;}
.y68_c00295{bottom:346.421010px;}
.y69_c00295{bottom:348.016140px;}
.y6a_c00295{bottom:348.929565px;}
.y6b_c00295{bottom:349.834800px;}
.y6c_c00295{bottom:351.740835px;}
.y6d_c00295{bottom:352.377675px;}
.y6e_c00295{bottom:352.945365px;}
.y5f_c00295{bottom:362.620500px;}
.y60_c00295{bottom:363.466635px;}
.y61_c00295{bottom:366.169380px;}
.y62_c00295{bottom:367.524375px;}
.y63_c00295{bottom:367.992735px;}
.y64_c00295{bottom:368.787885px;}
.y65_c00295{bottom:369.485385px;}
.y57_c00295{bottom:379.603611px;}
.y58_c00295{bottom:380.334294px;}
.y59_c00295{bottom:381.000345px;}
.y5a_c00295{bottom:381.781968px;}
.y5b_c00295{bottom:382.504479px;}
.y5c_c00295{bottom:383.738151px;}
.y5d_c00295{bottom:384.232443px;}
.y5e_c00295{bottom:385.486437px;}
.y4f_c00295{bottom:396.625509px;}
.y50_c00295{bottom:397.944276px;}
.y51_c00295{bottom:398.580615px;}
.y52_c00295{bottom:399.401979px;}
.y53_c00295{bottom:400.741062px;}
.y54_c00295{bottom:401.915007px;}
.y55_c00295{bottom:402.544755px;}
.y56_c00295{bottom:404.505963px;}
.y47_c00295{bottom:413.636232px;}
.y48_c00295{bottom:414.815508px;}
.y49_c00295{bottom:415.567959px;}
.y4a_c00295{bottom:417.419781px;}
.y4b_c00295{bottom:417.836505px;}
.y4c_c00295{bottom:419.454480px;}
.y4d_c00295{bottom:420.006330px;}
.y4e_c00295{bottom:421.071285px;}
.y3f_c00295{bottom:431.460105px;}
.y40_c00295{bottom:432.468783px;}
.y41_c00295{bottom:432.968958px;}
.y42_c00295{bottom:434.563029px;}
.y43_c00295{bottom:436.207452px;}
.y44_c00295{bottom:436.769016px;}
.y45_c00295{bottom:437.581146px;}
.y46_c00295{bottom:438.652071px;}
.y35_c00295{bottom:448.206000px;}
.y36_c00295{bottom:448.924341px;}
.y37_c00295{bottom:449.388246px;}
.y38_c00295{bottom:451.175187px;}
.y39_c00295{bottom:451.555047px;}
.y3a_c00295{bottom:452.281344px;}
.y3b_c00295{bottom:452.786979px;}
.y3c_c00295{bottom:453.376815px;}
.y3d_c00295{bottom:454.717908px;}
.y3e_c00295{bottom:455.425602px;}
.y2f_c00295{bottom:465.222000px;}
.y30_c00295{bottom:465.833754px;}
.y31_c00295{bottom:467.517380px;}
.y32_c00295{bottom:470.019591px;}
.y33_c00295{bottom:470.580381px;}
.y34_c00295{bottom:472.977224px;}
.y28_c00295{bottom:481.690500px;}
.y29_c00295{bottom:483.433626px;}
.y2a_c00295{bottom:484.379088px;}
.y2b_c00295{bottom:485.698896px;}
.y2c_c00295{bottom:487.280658px;}
.y2d_c00295{bottom:487.577430px;}
.y2e_c00295{bottom:488.141322px;}
.y1e_c00295{bottom:493.600500px;}
.y1f_c00295{bottom:495.567000px;}
.y27_c00295{bottom:496.396500px;}
.y20_c00295{bottom:496.480500px;}
.y21_c00295{bottom:497.428500px;}
.y22_c00295{bottom:500.449500px;}
.y23_c00295{bottom:501.778500px;}
.y24_c00295{bottom:503.413500px;}
.y25_c00295{bottom:505.252500px;}
.y26_c00295{bottom:506.452500px;}
.y16_c00295{bottom:514.371000px;}
.y17_c00295{bottom:517.467000px;}
.y18_c00295{bottom:518.124000px;}
.y19_c00295{bottom:518.863500px;}
.y1a_c00295{bottom:520.699500px;}
.y1b_c00295{bottom:521.268000px;}
.y1c_c00295{bottom:523.401000px;}
.y1d_c00295{bottom:523.888500px;}
.ya_c00295{bottom:529.495500px;}
.yb_c00295{bottom:530.211000px;}
.yc_c00295{bottom:531.471000px;}
.yd_c00295{bottom:532.312500px;}
.ye_c00295{bottom:533.103000px;}
.yf_c00295{bottom:534.862500px;}
.y10_c00295{bottom:535.426500px;}
.y11_c00295{bottom:536.073000px;}
.y12_c00295{bottom:537.534000px;}
.y13_c00295{bottom:538.021500px;}
.y14_c00295{bottom:538.686000px;}
.y15_c00295{bottom:540.619500px;}
.y2_c00295{bottom:548.128500px;}
.y3_c00295{bottom:550.780500px;}
.y4_c00295{bottom:552.306000px;}
.y5_c00295{bottom:553.015500px;}
.y6_c00295{bottom:555.415500px;}
.y7_c00295{bottom:556.630500px;}
.y8_c00295{bottom:559.411500px;}
.y9_c00295{bottom:560.443500px;}
.y1_c00295{bottom:570.771000px;}
.h6_c00295{height:22.050000px;}
.h18_c00295{height:57.771046px;}
.h17_c00295{height:58.779328px;}
.h1d_c00295{height:59.871811px;}
.ha_c00295{height:60.920581px;}
.hf_c00295{height:60.927399px;}
.h11_c00295{height:61.923883px;}
.h2_c00295{height:61.950000px;}
.h1a_c00295{height:61.972577px;}
.h16_c00295{height:61.977871px;}
.h12_c00295{height:62.973440px;}
.hb_c00295{height:63.021290px;}
.h19_c00295{height:63.022959px;}
.hd_c00295{height:63.028344px;}
.h14_c00295{height:63.030264px;}
.h13_c00295{height:64.025208px;}
.h1e_c00295{height:64.047982px;}
.h1f_c00295{height:65.097949px;}
.h7_c00295{height:65.125514px;}
.h15_c00295{height:65.131273px;}
.h3_c00295{height:66.150000px;}
.h9_c00295{height:66.172355px;}
.h1b_c00295{height:66.174107px;}
.h10_c00295{height:67.171669px;}
.h5_c00295{height:67.200000px;}
.hc_c00295{height:67.222710px;}
.h1c_c00295{height:67.224490px;}
.h4_c00295{height:69.300000px;}
.he_c00295{height:69.331178px;}
.h20_c00295{height:71.380184px;}
.h8_c00295{height:73.535308px;}
.h1_c00295{height:618.750000px;}
.h0_c00295{height:619.050000px;}
.w0_c00295{width:359.100000px;}
.w1_c00295{width:359.250000px;}
.x0_c00295{left:0.000000px;}
.x68_c00295{left:43.261500px;}
.x7e_c00295{left:44.962278px;}
.x15_c00295{left:46.192500px;}
.x2_c00295{left:47.352000px;}
.x43_c00295{left:55.714500px;}
.x6f_c00295{left:60.227567px;}
.xa_c00295{left:64.074000px;}
.x49_c00295{left:66.395745px;}
.x64_c00295{left:68.697444px;}
.x27_c00295{left:71.959500px;}
.x2b_c00295{left:74.023500px;}
.x73_c00295{left:75.080772px;}
.x4f_c00295{left:76.312230px;}
.x3f_c00295{left:78.248991px;}
.x44_c00295{left:83.919000px;}
.x30_c00295{left:86.726637px;}
.x1c_c00295{left:88.837500px;}
.x28_c00295{left:91.693500px;}
.xb_c00295{left:94.071000px;}
.x79_c00295{left:100.504431px;}
.x6c_c00295{left:104.350500px;}
.x3_c00295{left:106.278000px;}
.x1d_c00295{left:108.289500px;}
.x3a_c00295{left:109.654623px;}
.x53_c00295{left:113.102553px;}
.xc_c00295{left:114.103500px;}
.x35_c00295{left:115.961511px;}
.x71_c00295{left:116.986906px;}
.x4a_c00295{left:119.074020px;}
.x6d_c00295{left:122.761500px;}
.x54_c00295{left:125.818824px;}
.x65_c00295{left:127.032758px;}
.x1e_c00295{left:128.466000px;}
.x50_c00295{left:130.151250px;}
.xd_c00295{left:132.927000px;}
.x16_c00295{left:134.653500px;}
.x3b_c00295{left:136.165191px;}
.x4_c00295{left:140.166000px;}
.x24_c00295{left:142.029000px;}
.x29_c00295{left:146.004000px;}
.x60_c00295{left:148.698000px;}
.x66_c00295{left:149.743455px;}
.x17_c00295{left:153.408000px;}
.x7c_c00295{left:154.784936px;}
.x5_c00295{left:155.934000px;}
.x55_c00295{left:158.685425px;}
.x2c_c00295{left:160.594500px;}
.x7f_c00295{left:162.974938px;}
.x5a_c00295{left:166.492788px;}
.x1_c00295{left:167.940000px;}
.x31_c00295{left:170.449782px;}
.x40_c00295{left:172.628862px;}
.xe_c00295{left:174.802500px;}
.x3c_c00295{left:179.355075px;}
.x36_c00295{left:182.105079px;}
.x69_c00295{left:185.641500px;}
.xf_c00295{left:188.235000px;}
.x74_c00295{left:189.750527px;}
.x1f_c00295{left:192.739500px;}
.x4b_c00295{left:195.085680px;}
.x37_c00295{left:196.978299px;}
.x75_c00295{left:200.158299px;}
.x7a_c00295{left:202.065045px;}
.x10_c00295{left:203.632500px;}
.x61_c00295{left:205.228500px;}
.x7d_c00295{left:208.163004px;}
.x6_c00295{left:209.266500px;}
.x77_c00295{left:210.721236px;}
.x67_c00295{left:212.800908px;}
.x6e_c00295{left:215.629500px;}
.x3d_c00295{left:217.232661px;}
.x45_c00295{left:219.177000px;}
.x20_c00295{left:221.023500px;}
.x2d_c00295{left:222.586500px;}
.x7b_c00295{left:223.692539px;}
.x18_c00295{left:226.984500px;}
.x6b_c00295{left:229.144308px;}
.x70_c00295{left:233.427355px;}
.x46_c00295{left:234.789000px;}
.x7_c00295{left:236.260500px;}
.x11_c00295{left:238.401000px;}
.x56_c00295{left:239.845683px;}
.x62_c00295{left:241.450500px;}
.x19_c00295{left:243.240000px;}
.x25_c00295{left:245.656500px;}
.x41_c00295{left:247.748712px;}
.x12_c00295{left:250.024500px;}
.x5f_c00295{left:251.594512px;}
.x38_c00295{left:254.762796px;}
.x21_c00295{left:255.802500px;}
.x57_c00295{left:256.856655px;}
.x32_c00295{left:258.701583px;}
.x47_c00295{left:261.294000px;}
.x51_c00295{left:263.285775px;}
.x13_c00295{left:265.836000px;}
.x6a_c00295{left:268.296000px;}
.x5b_c00295{left:272.220954px;}
.x39_c00295{left:274.486782px;}
.x26_c00295{left:276.394500px;}
.x4c_c00295{left:280.287030px;}
.x80_c00295{left:281.441380px;}
.x48_c00295{left:284.544000px;}
.x63_c00295{left:286.164000px;}
.x72_c00295{left:287.267298px;}
.x81_c00295{left:289.657419px;}
.x33_c00295{left:291.207441px;}
.x76_c00295{left:293.753136px;}
.x22_c00295{left:294.930000px;}
.x2e_c00295{left:296.853000px;}
.x8_c00295{left:298.062000px;}
.x4d_c00295{left:299.563275px;}
.x3e_c00295{left:300.777780px;}
.x42_c00295{left:302.271963px;}
.x1a_c00295{left:304.195500px;}
.x58_c00295{left:307.843118px;}
.x14_c00295{left:311.881500px;}
.x52_c00295{left:314.485155px;}
.x4e_c00295{left:316.784745px;}
.x1b_c00295{left:318.105000px;}
.x9_c00295{left:321.001500px;}
.x2a_c00295{left:322.128000px;}
.x2f_c00295{left:324.072000px;}
.x5c_c00295{left:326.516104px;}
.x59_c00295{left:327.855585px;}
.x23_c00295{left:332.910000px;}
.x34_c00295{left:334.071072px;}
.x5e_c00295{left:336.568706px;}
.x78_c00295{left:337.873433px;}
.x5d_c00295{left:351.951644px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
.fs4_c00295{font-size:19.600000pt;}
.fs16_c00295{font-size:51.352041pt;}
.fs15_c00295{font-size:52.248292pt;}
.fs1b_c00295{font-size:53.219388pt;}
.fs8_c00295{font-size:54.151627pt;}
.fsd_c00295{font-size:54.157688pt;}
.fsf_c00295{font-size:55.043451pt;}
.fs0_c00295{font-size:55.066667pt;}
.fs18_c00295{font-size:55.086735pt;}
.fs14_c00295{font-size:55.091441pt;}
.fs10_c00295{font-size:55.976391pt;}
.fs9_c00295{font-size:56.018925pt;}
.fs17_c00295{font-size:56.020408pt;}
.fsb_c00295{font-size:56.025194pt;}
.fs12_c00295{font-size:56.026902pt;}
.fs11_c00295{font-size:56.911296pt;}
.fs1c_c00295{font-size:56.931540pt;}
.fs1d_c00295{font-size:57.864844pt;}
.fs5_c00295{font-size:57.889346pt;}
.fs13_c00295{font-size:57.894465pt;}
.fs1_c00295{font-size:58.800000pt;}
.fs7_c00295{font-size:58.819871pt;}
.fs19_c00295{font-size:58.821429pt;}
.fse_c00295{font-size:59.708150pt;}
.fs3_c00295{font-size:59.733333pt;}
.fsa_c00295{font-size:59.753520pt;}
.fs1a_c00295{font-size:59.755102pt;}
.fs2_c00295{font-size:61.600000pt;}
.fsc_c00295{font-size:61.627714pt;}
.fs1e_c00295{font-size:63.449052pt;}
.fs6_c00295{font-size:65.364718pt;}
.y0_c00295{bottom:0.000000pt;}
.y100_c00295{bottom:18.016000pt;}
.y101_c00295{bottom:18.736632pt;}
.y102_c00295{bottom:19.421189pt;}
.y103_c00295{bottom:20.839653pt;}
.y104_c00295{bottom:22.726835pt;}
.y105_c00295{bottom:25.271213pt;}
.y106_c00295{bottom:25.974315pt;}
.y107_c00295{bottom:26.401283pt;}
.yff_c00295{bottom:31.575837pt;}
.yf6_c00295{bottom:32.659673pt;}
.yf7_c00295{bottom:34.171412pt;}
.yf8_c00295{bottom:35.464399pt;}
.yf9_c00295{bottom:38.223451pt;}
.yfa_c00295{bottom:39.480485pt;}
.yfb_c00295{bottom:40.878125pt;}
.yfc_c00295{bottom:43.810332pt;}
.yfd_c00295{bottom:44.197387pt;}
.yfe_c00295{bottom:44.886955pt;}
.yee_c00295{bottom:47.540000pt;}
.yef_c00295{bottom:49.372101pt;}
.yf0_c00295{bottom:50.894971pt;}
.yf1_c00295{bottom:51.825189pt;}
.yf2_c00295{bottom:53.914955pt;}
.yf3_c00295{bottom:54.709301pt;}
.yf4_c00295{bottom:55.752453pt;}
.yf5_c00295{bottom:57.318912pt;}
.ye7_c00295{bottom:62.620947pt;}
.ye8_c00295{bottom:64.515669pt;}
.ye9_c00295{bottom:65.106251pt;}
.yea_c00295{bottom:66.914043pt;}
.yeb_c00295{bottom:68.036580pt;}
.yec_c00295{bottom:68.786475pt;}
.yed_c00295{bottom:70.619835pt;}
.ye0_c00295{bottom:77.986209pt;}
.ye1_c00295{bottom:80.128284pt;}
.ye2_c00295{bottom:80.785497pt;}
.ye3_c00295{bottom:83.426055pt;}
.ye4_c00295{bottom:86.354509pt;}
.ye5_c00295{bottom:87.292779pt;}
.ye6_c00295{bottom:87.607864pt;}
.yd9_c00295{bottom:93.350023pt;}
.yda_c00295{bottom:94.037821pt;}
.ydb_c00295{bottom:94.859291pt;}
.ydc_c00295{bottom:96.955673pt;}
.ydd_c00295{bottom:98.623748pt;}
.yde_c00295{bottom:99.290985pt;}
.ydf_c00295{bottom:101.697345pt;}
.yd0_c00295{bottom:108.473196pt;}
.yd1_c00295{bottom:109.375959pt;}
.yd2_c00295{bottom:111.374343pt;}
.yd3_c00295{bottom:112.943293pt;}
.yd4_c00295{bottom:113.266467pt;}
.yd5_c00295{bottom:113.831724pt;}
.yd6_c00295{bottom:115.308133pt;}
.yd7_c00295{bottom:116.229440pt;}
.yd8_c00295{bottom:116.801611pt;}
.yc8_c00295{bottom:124.318463pt;}
.yc9_c00295{bottom:125.858527pt;}
.yca_c00295{bottom:127.679395pt;}
.ycb_c00295{bottom:129.766051pt;}
.ycc_c00295{bottom:130.265973pt;}
.ycd_c00295{bottom:131.584397pt;}
.yce_c00295{bottom:132.225371pt;}
.ycf_c00295{bottom:133.736807pt;}
.yc0_c00295{bottom:139.923623pt;}
.yc1_c00295{bottom:141.939361pt;}
.yc2_c00295{bottom:143.486415pt;}
.yc3_c00295{bottom:144.154715pt;}
.yc4_c00295{bottom:145.613483pt;}
.yc5_c00295{bottom:146.185252pt;}
.yc6_c00295{bottom:147.038333pt;}
.yc7_c00295{bottom:147.611507pt;}
.yb7_c00295{bottom:156.962407pt;}
.yb8_c00295{bottom:158.258033pt;}
.yb9_c00295{bottom:159.518088pt;}
.yba_c00295{bottom:159.991729pt;}
.ybb_c00295{bottom:161.155796pt;}
.ybc_c00295{bottom:161.735651pt;}
.ybd_c00295{bottom:162.911383pt;}
.ybe_c00295{bottom:163.649261pt;}
.ybf_c00295{bottom:164.558379pt;}
.yb1_c00295{bottom:170.888000pt;}
.yb2_c00295{bottom:172.289084pt;}
.yb3_c00295{bottom:172.730948pt;}
.yb4_c00295{bottom:174.428456pt;}
.yb5_c00295{bottom:174.959780pt;}
.yb6_c00295{bottom:175.998812pt;}
.yab_c00295{bottom:186.256000pt;}
.yac_c00295{bottom:188.382544pt;}
.yad_c00295{bottom:189.299344pt;}
.yae_c00295{bottom:192.118144pt;}
.yaf_c00295{bottom:192.643984pt;}
.yb0_c00295{bottom:194.925328pt;}
.ya4_c00295{bottom:202.089333pt;}
.ya5_c00295{bottom:204.344933pt;}
.ya6_c00295{bottom:204.899533pt;}
.ya7_c00295{bottom:205.886133pt;}
.ya8_c00295{bottom:206.513533pt;}
.ya9_c00295{bottom:208.090253pt;}
.yaa_c00295{bottom:208.884253pt;}
.y9a_c00295{bottom:216.722741pt;}
.y9b_c00295{bottom:217.335761pt;}
.y9c_c00295{bottom:218.891173pt;}
.y9d_c00295{bottom:219.496960pt;}
.y9e_c00295{bottom:220.728197pt;}
.y9f_c00295{bottom:221.178489pt;}
.ya0_c00295{bottom:221.887743pt;}
.ya1_c00295{bottom:222.752160pt;}
.ya2_c00295{bottom:223.911457pt;}
.ya3_c00295{bottom:224.874640pt;}
.y91_c00295{bottom:231.133333pt;}
.y92_c00295{bottom:233.975413pt;}
.y93_c00295{bottom:235.533143pt;}
.y94_c00295{bottom:235.984172pt;}
.y95_c00295{bottom:236.531260pt;}
.y96_c00295{bottom:237.352967pt;}
.y97_c00295{bottom:237.763365pt;}
.y98_c00295{bottom:238.278089pt;}
.y99_c00295{bottom:239.581536pt;}
.y8b_c00295{bottom:245.294667pt;}
.y8c_c00295{bottom:247.508580pt;}
.y8d_c00295{bottom:248.027700pt;}
.y8e_c00295{bottom:249.897680pt;}
.y8f_c00295{bottom:251.703167pt;}
.y90_c00295{bottom:253.032187pt;}
.y81_c00295{bottom:260.649333pt;}
.y82_c00295{bottom:262.138851pt;}
.y83_c00295{bottom:263.239000pt;}
.y84_c00295{bottom:264.312629pt;}
.y8a_c00295{bottom:265.443883pt;}
.y85_c00295{bottom:267.105752pt;}
.y86_c00295{bottom:267.511168pt;}
.y87_c00295{bottom:268.596947pt;}
.y88_c00295{bottom:269.153731pt;}
.y89_c00295{bottom:269.923219pt;}
.y78_c00295{bottom:275.772000pt;}
.y79_c00295{bottom:276.392931pt;}
.y7a_c00295{bottom:277.825509pt;}
.y7b_c00295{bottom:278.210208pt;}
.y7c_c00295{bottom:279.204504pt;}
.y7d_c00295{bottom:281.659803pt;}
.y7e_c00295{bottom:282.174427pt;}
.y7f_c00295{bottom:283.716893pt;}
.y80_c00295{bottom:284.322320pt;}
.y6f_c00295{bottom:290.872907pt;}
.y70_c00295{bottom:291.791987pt;}
.y71_c00295{bottom:292.708107pt;}
.y72_c00295{bottom:293.419867pt;}
.y73_c00295{bottom:294.769013pt;}
.y74_c00295{bottom:295.288907pt;}
.y75_c00295{bottom:296.896800pt;}
.y76_c00295{bottom:297.443880pt;}
.y77_c00295{bottom:298.990693pt;}
.y66_c00295{bottom:305.764307pt;}
.y67_c00295{bottom:306.384907pt;}
.y68_c00295{bottom:307.929787pt;}
.y69_c00295{bottom:309.347680pt;}
.y6a_c00295{bottom:310.159613pt;}
.y6b_c00295{bottom:310.964267pt;}
.y6c_c00295{bottom:312.658520pt;}
.y6d_c00295{bottom:313.224600pt;}
.y6e_c00295{bottom:313.729213pt;}
.y5f_c00295{bottom:322.329333pt;}
.y60_c00295{bottom:323.081453pt;}
.y61_c00295{bottom:325.483893pt;}
.y62_c00295{bottom:326.688333pt;}
.y63_c00295{bottom:327.104653pt;}
.y64_c00295{bottom:327.811453pt;}
.y65_c00295{bottom:328.431453pt;}
.y57_c00295{bottom:337.425432pt;}
.y58_c00295{bottom:338.074928pt;}
.y59_c00295{bottom:338.666973pt;}
.y5a_c00295{bottom:339.361749pt;}
.y5b_c00295{bottom:340.003981pt;}
.y5c_c00295{bottom:341.100579pt;}
.y5d_c00295{bottom:341.539949pt;}
.y5e_c00295{bottom:342.654611pt;}
.y4f_c00295{bottom:352.556008pt;}
.y50_c00295{bottom:353.728245pt;}
.y51_c00295{bottom:354.293880pt;}
.y52_c00295{bottom:355.023981pt;}
.y53_c00295{bottom:356.214277pt;}
.y54_c00295{bottom:357.257784pt;}
.y55_c00295{bottom:357.817560pt;}
.y56_c00295{bottom:359.560856pt;}
.y47_c00295{bottom:367.676651pt;}
.y48_c00295{bottom:368.724896pt;}
.y49_c00295{bottom:369.393741pt;}
.y4a_c00295{bottom:371.039805pt;}
.y4b_c00295{bottom:371.410227pt;}
.y4c_c00295{bottom:372.848427pt;}
.y4d_c00295{bottom:373.338960pt;}
.y4e_c00295{bottom:374.285587pt;}
.y3f_c00295{bottom:383.520093pt;}
.y40_c00295{bottom:384.416696pt;}
.y41_c00295{bottom:384.861296pt;}
.y42_c00295{bottom:386.278248pt;}
.y43_c00295{bottom:387.739957pt;}
.y44_c00295{bottom:388.239125pt;}
.y45_c00295{bottom:388.961019pt;}
.y46_c00295{bottom:389.912952pt;}
.y35_c00295{bottom:398.405333pt;}
.y36_c00295{bottom:399.043859pt;}
.y37_c00295{bottom:399.456219pt;}
.y38_c00295{bottom:401.044611pt;}
.y39_c00295{bottom:401.382264pt;}
.y3a_c00295{bottom:402.027861pt;}
.y3b_c00295{bottom:402.477315pt;}
.y3c_c00295{bottom:403.001613pt;}
.y3d_c00295{bottom:404.193696pt;}
.y3e_c00295{bottom:404.822757pt;}
.y2f_c00295{bottom:413.530667pt;}
.y30_c00295{bottom:414.074448pt;}
.y31_c00295{bottom:415.571004pt;}
.y32_c00295{bottom:417.795192pt;}
.y33_c00295{bottom:418.293672pt;}
.y34_c00295{bottom:420.424199pt;}
.y28_c00295{bottom:428.169333pt;}
.y29_c00295{bottom:429.718779pt;}
.y2a_c00295{bottom:430.559189pt;}
.y2b_c00295{bottom:431.732352pt;}
.y2c_c00295{bottom:433.138363pt;}
.y2d_c00295{bottom:433.402160pt;}
.y2e_c00295{bottom:433.903397pt;}
.y1e_c00295{bottom:438.756000pt;}
.y1f_c00295{bottom:440.504000pt;}
.y27_c00295{bottom:441.241333pt;}
.y20_c00295{bottom:441.316000pt;}
.y21_c00295{bottom:442.158667pt;}
.y22_c00295{bottom:444.844000pt;}
.y23_c00295{bottom:446.025333pt;}
.y24_c00295{bottom:447.478667pt;}
.y25_c00295{bottom:449.113333pt;}
.y26_c00295{bottom:450.180000pt;}
.y16_c00295{bottom:457.218667pt;}
.y17_c00295{bottom:459.970667pt;}
.y18_c00295{bottom:460.554667pt;}
.y19_c00295{bottom:461.212000pt;}
.y1a_c00295{bottom:462.844000pt;}
.y1b_c00295{bottom:463.349333pt;}
.y1c_c00295{bottom:465.245333pt;}
.y1d_c00295{bottom:465.678667pt;}
.ya_c00295{bottom:470.662667pt;}
.yb_c00295{bottom:471.298667pt;}
.yc_c00295{bottom:472.418667pt;}
.yd_c00295{bottom:473.166667pt;}
.ye_c00295{bottom:473.869333pt;}
.yf_c00295{bottom:475.433333pt;}
.y10_c00295{bottom:475.934667pt;}
.y11_c00295{bottom:476.509333pt;}
.y12_c00295{bottom:477.808000pt;}
.y13_c00295{bottom:478.241333pt;}
.y14_c00295{bottom:478.832000pt;}
.y15_c00295{bottom:480.550667pt;}
.y2_c00295{bottom:487.225333pt;}
.y3_c00295{bottom:489.582667pt;}
.y4_c00295{bottom:490.938667pt;}
.y5_c00295{bottom:491.569333pt;}
.y6_c00295{bottom:493.702667pt;}
.y7_c00295{bottom:494.782667pt;}
.y8_c00295{bottom:497.254667pt;}
.y9_c00295{bottom:498.172000pt;}
.y1_c00295{bottom:507.352000pt;}
.h6_c00295{height:19.600000pt;}
.h18_c00295{height:51.352041pt;}
.h17_c00295{height:52.248292pt;}
.h1d_c00295{height:53.219388pt;}
.ha_c00295{height:54.151627pt;}
.hf_c00295{height:54.157688pt;}
.h11_c00295{height:55.043451pt;}
.h2_c00295{height:55.066667pt;}
.h1a_c00295{height:55.086735pt;}
.h16_c00295{height:55.091441pt;}
.h12_c00295{height:55.976391pt;}
.hb_c00295{height:56.018925pt;}
.h19_c00295{height:56.020408pt;}
.hd_c00295{height:56.025194pt;}
.h14_c00295{height:56.026902pt;}
.h13_c00295{height:56.911296pt;}
.h1e_c00295{height:56.931540pt;}
.h1f_c00295{height:57.864844pt;}
.h7_c00295{height:57.889346pt;}
.h15_c00295{height:57.894465pt;}
.h3_c00295{height:58.800000pt;}
.h9_c00295{height:58.819871pt;}
.h1b_c00295{height:58.821429pt;}
.h10_c00295{height:59.708150pt;}
.h5_c00295{height:59.733333pt;}
.hc_c00295{height:59.753520pt;}
.h1c_c00295{height:59.755102pt;}
.h4_c00295{height:61.600000pt;}
.he_c00295{height:61.627714pt;}
.h20_c00295{height:63.449052pt;}
.h8_c00295{height:65.364718pt;}
.h1_c00295{height:550.000000pt;}
.h0_c00295{height:550.266667pt;}
.w0_c00295{width:319.200000pt;}
.w1_c00295{width:319.333333pt;}
.x0_c00295{left:0.000000pt;}
.x68_c00295{left:38.454667pt;}
.x7e_c00295{left:39.966469pt;}
.x15_c00295{left:41.060000pt;}
.x2_c00295{left:42.090667pt;}
.x43_c00295{left:49.524000pt;}
.x6f_c00295{left:53.535615pt;}
.xa_c00295{left:56.954667pt;}
.x49_c00295{left:59.018440pt;}
.x64_c00295{left:61.064395pt;}
.x27_c00295{left:63.964000pt;}
.x2b_c00295{left:65.798667pt;}
.x73_c00295{left:66.738464pt;}
.x4f_c00295{left:67.833093pt;}
.x3f_c00295{left:69.554659pt;}
.x44_c00295{left:74.594667pt;}
.x30_c00295{left:77.090344pt;}
.x1c_c00295{left:78.966667pt;}
.x28_c00295{left:81.505333pt;}
.xb_c00295{left:83.618667pt;}
.x79_c00295{left:89.337272pt;}
.x6c_c00295{left:92.756000pt;}
.x3_c00295{left:94.469333pt;}
.x1d_c00295{left:96.257333pt;}
.x3a_c00295{left:97.470776pt;}
.x53_c00295{left:100.535603pt;}
.xc_c00295{left:101.425333pt;}
.x35_c00295{left:103.076899pt;}
.x71_c00295{left:103.988361pt;}
.x4a_c00295{left:105.843573pt;}
.x6d_c00295{left:109.121333pt;}
.x54_c00295{left:111.838955pt;}
.x65_c00295{left:112.918007pt;}
.x1e_c00295{left:114.192000pt;}
.x50_c00295{left:115.690000pt;}
.xd_c00295{left:118.157333pt;}
.x16_c00295{left:119.692000pt;}
.x3b_c00295{left:121.035725pt;}
.x4_c00295{left:124.592000pt;}
.x24_c00295{left:126.248000pt;}
.x29_c00295{left:129.781333pt;}
.x60_c00295{left:132.176000pt;}
.x66_c00295{left:133.105293pt;}
.x17_c00295{left:136.362667pt;}
.x7c_c00295{left:137.586609pt;}
.x5_c00295{left:138.608000pt;}
.x55_c00295{left:141.053711pt;}
.x2c_c00295{left:142.750667pt;}
.x7f_c00295{left:144.866612pt;}
.x5a_c00295{left:147.993589pt;}
.x1_c00295{left:149.280000pt;}
.x31_c00295{left:151.510917pt;}
.x40_c00295{left:153.447877pt;}
.xe_c00295{left:155.380000pt;}
.x3c_c00295{left:159.426733pt;}
.x36_c00295{left:161.871181pt;}
.x69_c00295{left:165.014667pt;}
.xf_c00295{left:167.320000pt;}
.x74_c00295{left:168.667135pt;}
.x1f_c00295{left:171.324000pt;}
.x4b_c00295{left:173.409493pt;}
.x37_c00295{left:175.091821pt;}
.x75_c00295{left:177.918488pt;}
.x7a_c00295{left:179.613373pt;}
.x10_c00295{left:181.006667pt;}
.x61_c00295{left:182.425333pt;}
.x7d_c00295{left:185.033781pt;}
.x6_c00295{left:186.014667pt;}
.x77_c00295{left:187.307765pt;}
.x67_c00295{left:189.156363pt;}
.x6e_c00295{left:191.670667pt;}
.x3d_c00295{left:193.095699pt;}
.x45_c00295{left:194.824000pt;}
.x20_c00295{left:196.465333pt;}
.x2d_c00295{left:197.854667pt;}
.x7b_c00295{left:198.837812pt;}
.x18_c00295{left:201.764000pt;}
.x6b_c00295{left:203.683829pt;}
.x70_c00295{left:207.490983pt;}
.x46_c00295{left:208.701333pt;}
.x7_c00295{left:210.009333pt;}
.x11_c00295{left:211.912000pt;}
.x56_c00295{left:213.196163pt;}
.x62_c00295{left:214.622667pt;}
.x19_c00295{left:216.213333pt;}
.x25_c00295{left:218.361333pt;}
.x41_c00295{left:220.221077pt;}
.x12_c00295{left:222.244000pt;}
.x5f_c00295{left:223.639567pt;}
.x38_c00295{left:226.455819pt;}
.x21_c00295{left:227.380000pt;}
.x57_c00295{left:228.317027pt;}
.x32_c00295{left:229.956963pt;}
.x47_c00295{left:232.261333pt;}
.x51_c00295{left:234.031800pt;}
.x13_c00295{left:236.298667pt;}
.x6a_c00295{left:238.485333pt;}
.x5b_c00295{left:241.974181pt;}
.x39_c00295{left:243.988251pt;}
.x26_c00295{left:245.684000pt;}
.x4c_c00295{left:249.144027pt;}
.x80_c00295{left:250.170116pt;}
.x48_c00295{left:252.928000pt;}
.x63_c00295{left:254.368000pt;}
.x72_c00295{left:255.348709pt;}
.x81_c00295{left:257.473261pt;}
.x33_c00295{left:258.851059pt;}
.x76_c00295{left:261.113899pt;}
.x22_c00295{left:262.160000pt;}
.x2e_c00295{left:263.869333pt;}
.x8_c00295{left:264.944000pt;}
.x4d_c00295{left:266.278467pt;}
.x3e_c00295{left:267.358027pt;}
.x42_c00295{left:268.686189pt;}
.x1a_c00295{left:270.396000pt;}
.x58_c00295{left:273.638327pt;}
.x14_c00295{left:277.228000pt;}
.x52_c00295{left:279.542360pt;}
.x4e_c00295{left:281.586440pt;}
.x1b_c00295{left:282.760000pt;}
.x9_c00295{left:285.334667pt;}
.x2a_c00295{left:286.336000pt;}
.x2f_c00295{left:288.064000pt;}
.x5c_c00295{left:290.236537pt;}
.x59_c00295{left:291.427187pt;}
.x23_c00295{left:295.920000pt;}
.x34_c00295{left:296.952064pt;}
.x5e_c00295{left:299.172183pt;}
.x78_c00295{left:300.331940pt;}
.x5d_c00295{left:312.845905pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00296 {
    display:none;
  }
  .loading-indicator_c00296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00296 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00296 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00296" -> "#page-container .classname_c00296")
 */
.pf_c00296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00296 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00296 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00296 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00296 {overflow:visible;}
  }
}
.c_c00296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00296 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00296:after { /* webkit #35443 */
  content: '';
}
.t_c00296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00296 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00296 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00296 { /* info for Javascript */
  display:none;
}
.l_c00296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00296:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00296 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00296.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf1_c00296{transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);}
.mef_c00296{transform:matrix(0.028145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028145,0.000000,0.000000,0.250000,0,0);}
.mf0_c00296{transform:matrix(0.032965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032965,0.000000,0.000000,0.250000,0,0);}
.mc3_c00296{transform:matrix(0.047690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047690,0.000000,0.000000,0.250000,0,0);}
.mdb_c00296{transform:matrix(0.076120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076120,0.000000,0.000000,0.250000,0,0);}
.mb3_c00296{transform:matrix(0.078255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078255,0.000000,0.000000,0.250000,0,0);}
.mf2_c00296{transform:matrix(0.084435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084435,0.000000,0.000000,0.250000,0,0);}
.mf3_c00296{transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136345,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.136970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136970,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);}
.me8_c00296{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);}
.me2_c00296{transform:matrix(0.156255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156255,0.000000,0.000000,0.250000,0,0);}
.ma3_c00296{transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.159905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159905,0.000000,0.000000,0.250000,0,0);}
.mb0_c00296{transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162235,0.000000,0.000000,0.250000,0,0);}
.m8a_c00296{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m90_c00296{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00296{transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);}
.ma6_c00296{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);}
.mac_c00296{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.maf_c00296{transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m96_c00296{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m9f_c00296{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m62_c00296{transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m58_c00296{transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.171330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00296{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m85_c00296{transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);}
.m1a_c00296{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.mb9_c00296{transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.md6_c00296{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m9d_c00296{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.mbf_c00296{transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);}
.ma5_c00296{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);}
.m54_c00296{transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180010,0.000000,0.000000,0.250000,0,0);}
.m86_c00296{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.ma2_c00296{transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);}
.m8d_c00296{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m97_c00296{transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181095,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.mbe_c00296{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.ma7_c00296{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00296{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);}
.m91_c00296{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.m94_c00296{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m5e_c00296{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.md5_c00296{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188215,0.000000,0.000000,0.250000,0,0);}
.mdd_c00296{transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);}
.md3_c00296{transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.mb7_c00296{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m37_c00296{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);}
.m75_c00296{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m59_c00296{transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m6d_c00296{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.med_c00296{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m93_c00296{transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);}
.mf5_c00296{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.m56_c00296{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m82_c00296{transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);}
.m9e_c00296{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.md8_c00296{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00296{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.m6e_c00296{transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);}
.m80_c00296{transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.mc5_c00296{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.mc7_c00296{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m53_c00296{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m57_c00296{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.ma9_c00296{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198695,0.000000,0.000000,0.250000,0,0);}
.m81_c00296{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.ma0_c00296{transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);}
.m7d_c00296{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.m9b_c00296{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00296{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.mad_c00296{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m98_c00296{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m84_c00296{transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);}
.mab_c00296{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m89_c00296{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.m71_c00296{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.meb_c00296{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m74_c00296{transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.md4_c00296{transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);}
.m8c_c00296{transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m88_c00296{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m55_c00296{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.mf8_c00296{transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208485,0.000000,0.000000,0.250000,0,0);}
.mea_c00296{transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);}
.mb2_c00296{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m87_c00296{transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);}
.m8f_c00296{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.mf7_c00296{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.mf6_c00296{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.m63_c00296{transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211540,0.000000,0.000000,0.250000,0,0);}
.mdc_c00296{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00296{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.mb4_c00296{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m95_c00296{transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212415,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);}
.m64_c00296{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00296{transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m68_c00296{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00296{transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);}
.m73_c00296{transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);}
.m60_c00296{transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);}
.md0_c00296{transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);}
.m8e_c00296{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00296{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.mec_c00296{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.m61_c00296{transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);}
.m65_c00296{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.me0_c00296{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.ma1_c00296{transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);}
.md7_c00296{transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.me9_c00296{transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);}
.m7c_c00296{transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{transform:matrix(0.225510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225510,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.m8b_c00296{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m72_c00296{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.me7_c00296{transform:matrix(0.228145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00296{transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);}
.mdf_c00296{transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);}
.me3_c00296{transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);}
.m5b_c00296{transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.mc8_c00296{transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m77_c00296{transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);}
.m67_c00296{transform:matrix(0.236320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236320,0.000000,0.000000,0.250000,0,0);}
.m66_c00296{transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00296{transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);}
.mf4_c00296{transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);}
.mbd_c00296{transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);}
.me4_c00296{transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);}
.maa_c00296{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.mb1_c00296{transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);}
.me6_c00296{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m70_c00296{transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242065,0.000000,0.000000,0.250000,0,0);}
.m92_c00296{transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);}
.me5_c00296{transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);}
.mf9_c00296{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m99_c00296{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m79_c00296{transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257145,0.000000,0.000000,0.250000,0,0);}
.m83_c00296{transform:matrix(0.258840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258840,0.000000,0.000000,0.250000,0,0);}
.mee_c00296{transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);}
.m6a_c00296{transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);}
.mca_c00296{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.m78_c00296{transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);}
.mb6_c00296{transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);}
.md1_c00296{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.mc4_c00296{transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);}
.mcb_c00296{transform:matrix(0.308475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308475,0.000000,0.000000,0.250000,0,0);}
.mce_c00296{transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);}
.mc9_c00296{transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);}
.mcc_c00296{transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);}
.md2_c00296{transform:matrix(0.315460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315460,0.000000,0.000000,0.250000,0,0);}
.mc0_c00296{transform:matrix(0.318105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318105,0.000000,0.000000,0.250000,0,0);}
.m4d_c00296{transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);}
.mb5_c00296{transform:matrix(0.327885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327885,0.000000,0.000000,0.250000,0,0);}
.mc2_c00296{transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);}
.mcd_c00296{transform:matrix(0.341970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341970,0.000000,0.000000,0.250000,0,0);}
.mba_c00296{transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354645,0.000000,0.000000,0.250000,0,0);}
.mde_c00296{transform:matrix(0.383925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383925,0.000000,0.000000,0.250000,0,0);}
.mda_c00296{transform:matrix(0.391605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00296{transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412855,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.471015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471015,0.000000,0.000000,0.250000,0,0);}
.md9_c00296{transform:matrix(0.521515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.543605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00296{transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);}
.me1_c00296{transform:matrix(0.556030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556030,0.000000,0.000000,0.250000,0,0);}
.mcf_c00296{transform:matrix(0.583410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583410,0.000000,0.000000,0.250000,0,0);}
.mae_c00296{transform:matrix(0.670705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670705,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(1.229415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.229415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.229415,0.000000,0.000000,0.250000,0,0);}
.mb8_c00296{transform:matrix(1.556360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.556360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.556360,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:0.000000px;}
.fc0_c00296{color:transparent;}
.fs10_c00296{font-size:40.950000px;}
.fsa_c00296{font-size:53.550000px;}
.fs9_c00296{font-size:55.650000px;}
.fs12_c00296{font-size:57.750000px;}
.fs6_c00296{font-size:58.800000px;}
.fs8_c00296{font-size:59.850000px;}
.fs7_c00296{font-size:60.900000px;}
.fs3_c00296{font-size:61.950000px;}
.fse_c00296{font-size:63.000000px;}
.fsb_c00296{font-size:64.050000px;}
.fs5_c00296{font-size:65.100000px;}
.fs2_c00296{font-size:66.150000px;}
.fsc_c00296{font-size:67.200000px;}
.fsd_c00296{font-size:68.250000px;}
.fs4_c00296{font-size:71.400000px;}
.fs1_c00296{font-size:72.450000px;}
.fs0_c00296{font-size:90.300000px;}
.fsf_c00296{font-size:123.900000px;}
.fs11_c00296{font-size:128.100000px;}
.y0_c00296{bottom:0.000000px;}
.y4b_c00296{bottom:24.978000px;}
.y4a_c00296{bottom:38.619000px;}
.y49_c00296{bottom:43.906500px;}
.y48_c00296{bottom:59.847000px;}
.y47_c00296{bottom:69.706500px;}
.y46_c00296{bottom:93.400500px;}
.y45_c00296{bottom:113.970000px;}
.y3d_c00296{bottom:125.821500px;}
.y3e_c00296{bottom:125.949000px;}
.y3f_c00296{bottom:126.478500px;}
.y40_c00296{bottom:126.583500px;}
.y41_c00296{bottom:126.891000px;}
.y42_c00296{bottom:127.212000px;}
.y43_c00296{bottom:128.407500px;}
.y44_c00296{bottom:128.719500px;}
.y3c_c00296{bottom:147.564000px;}
.y3b_c00296{bottom:151.812000px;}
.y3a_c00296{bottom:180.426000px;}
.y39_c00296{bottom:196.561500px;}
.y38_c00296{bottom:213.934500px;}
.y37_c00296{bottom:229.698000px;}
.y36_c00296{bottom:248.500500px;}
.y35_c00296{bottom:265.383000px;}
.y34_c00296{bottom:283.566000px;}
.y33_c00296{bottom:300.268500px;}
.y32_c00296{bottom:318.034500px;}
.y31_c00296{bottom:334.186500px;}
.y30_c00296{bottom:350.299500px;}
.y2a_c00296{bottom:361.540500px;}
.y2b_c00296{bottom:362.512500px;}
.y2c_c00296{bottom:363.774000px;}
.y2d_c00296{bottom:364.363500px;}
.y2e_c00296{bottom:365.919000px;}
.y2f_c00296{bottom:366.591000px;}
.y29_c00296{bottom:384.186000px;}
.y28_c00296{bottom:384.426000px;}
.y27_c00296{bottom:384.840000px;}
.y26_c00296{bottom:385.141500px;}
.y25_c00296{bottom:385.714500px;}
.y24_c00296{bottom:386.541000px;}
.y23_c00296{bottom:387.021000px;}
.y22_c00296{bottom:387.451500px;}
.y1a_c00296{bottom:396.636000px;}
.y1b_c00296{bottom:396.868500px;}
.y1c_c00296{bottom:397.875000px;}
.y1d_c00296{bottom:398.319000px;}
.y1e_c00296{bottom:398.682000px;}
.y1f_c00296{bottom:399.462000px;}
.y20_c00296{bottom:400.029000px;}
.y21_c00296{bottom:400.996500px;}
.y19_c00296{bottom:417.813000px;}
.y18_c00296{bottom:434.094000px;}
.y17_c00296{bottom:450.486000px;}
.y16_c00296{bottom:467.989500px;}
.y15_c00296{bottom:484.740000px;}
.y14_c00296{bottom:502.132500px;}
.yb_c00296{bottom:517.593000px;}
.yc_c00296{bottom:517.732500px;}
.yd_c00296{bottom:518.371500px;}
.ye_c00296{bottom:518.602500px;}
.yf_c00296{bottom:518.784000px;}
.y10_c00296{bottom:519.132000px;}
.y11_c00296{bottom:519.316500px;}
.y12_c00296{bottom:520.393500px;}
.y13_c00296{bottom:520.624500px;}
.y3_c00296{bottom:534.601500px;}
.y4_c00296{bottom:534.967500px;}
.y5_c00296{bottom:535.213500px;}
.y6_c00296{bottom:535.525500px;}
.y7_c00296{bottom:536.206500px;}
.y8_c00296{bottom:536.977500px;}
.y9_c00296{bottom:537.240000px;}
.ya_c00296{bottom:537.544500px;}
.y2_c00296{bottom:552.535500px;}
.y1_c00296{bottom:564.864000px;}
.h12_c00296{height:40.950000px;}
.hc_c00296{height:53.550000px;}
.hb_c00296{height:55.650000px;}
.h14_c00296{height:57.750000px;}
.h8_c00296{height:58.800000px;}
.ha_c00296{height:59.850000px;}
.h9_c00296{height:60.900000px;}
.h5_c00296{height:61.950000px;}
.h10_c00296{height:63.000000px;}
.hd_c00296{height:64.050000px;}
.h7_c00296{height:65.100000px;}
.h4_c00296{height:66.150000px;}
.he_c00296{height:67.200000px;}
.hf_c00296{height:68.250000px;}
.h6_c00296{height:71.400000px;}
.h3_c00296{height:72.450000px;}
.h2_c00296{height:90.300000px;}
.h11_c00296{height:123.900000px;}
.h13_c00296{height:128.100000px;}
.h1_c00296{height:618.750000px;}
.h0_c00296{height:619.050000px;}
.w0_c00296{width:359.100000px;}
.w1_c00296{width:359.250000px;}
.x0_c00296{left:0.000000px;}
.x55_c00296{left:18.904500px;}
.x40_c00296{left:20.145000px;}
.x3_c00296{left:21.330000px;}
.x3a_c00296{left:23.733000px;}
.x22_c00296{left:25.381500px;}
.x45_c00296{left:27.004500px;}
.x13_c00296{left:28.252500px;}
.xc_c00296{left:29.335500px;}
.x27_c00296{left:37.261500px;}
.x3b_c00296{left:38.305500px;}
.x14_c00296{left:40.917000px;}
.x63_c00296{left:42.934500px;}
.x4_c00296{left:44.280000px;}
.x4b_c00296{left:45.364500px;}
.x80_c00296{left:46.710000px;}
.x46_c00296{left:51.844500px;}
.x71_c00296{left:53.194500px;}
.x7e_c00296{left:55.890000px;}
.x1c_c00296{left:56.971500px;}
.xd_c00296{left:59.793000px;}
.x43_c00296{left:62.643000px;}
.x23_c00296{left:64.531500px;}
.x78_c00296{left:66.694500px;}
.x5_c00296{left:69.930000px;}
.x6b_c00296{left:71.014500px;}
.x56_c00296{left:72.364500px;}
.x1_c00296{left:75.600000px;}
.x4c_c00296{left:76.954500px;}
.x34_c00296{left:78.031500px;}
.xe_c00296{left:80.301000px;}
.x7f_c00296{left:81.540000px;}
.x6_c00296{left:83.700000px;}
.x65_c00296{left:85.594500px;}
.x5e_c00296{left:88.024500px;}
.x6d_c00296{left:89.772000px;}
.x81_c00296{left:91.530000px;}
.x7b_c00296{left:94.234500px;}
.x28_c00296{left:96.121500px;}
.x15_c00296{left:98.947500px;}
.x35_c00296{left:100.171500px;}
.x3c_c00296{left:101.238000px;}
.x75_c00296{left:102.874500px;}
.x47_c00296{left:104.224500px;}
.xf_c00296{left:106.246500px;}
.x51_c00296{left:108.004500px;}
.x79_c00296{left:109.894500px;}
.x6e_c00296{left:115.395000px;}
.x29_c00296{left:116.641500px;}
.x57_c00296{left:118.264500px;}
.x16_c00296{left:120.004500px;}
.x66_c00296{left:121.774500px;}
.x48_c00296{left:123.934500px;}
.x4e_c00296{left:127.444500px;}
.x3d_c00296{left:129.015000px;}
.x1d_c00296{left:133.921500px;}
.x30_c00296{left:135.001500px;}
.x17_c00296{left:136.479000px;}
.x36_c00296{left:140.401500px;}
.x6f_c00296{left:142.156500px;}
.x7_c00296{left:143.640000px;}
.x24_c00296{left:148.231500px;}
.x67_c00296{left:150.664500px;}
.x3e_c00296{left:151.675500px;}
.x7c_c00296{left:155.524500px;}
.x2e_c00296{left:156.871500px;}
.x52_c00296{left:159.034500px;}
.x1e_c00296{left:161.731500px;}
.x8_c00296{left:162.810000px;}
.x2a_c00296{left:164.701500px;}
.x64_c00296{left:166.864500px;}
.x18_c00296{left:168.076500px;}
.x31_c00296{left:170.641500px;}
.x4f_c00296{left:172.534500px;}
.x76_c00296{left:173.884500px;}
.x60_c00296{left:175.774500px;}
.x72_c00296{left:179.824500px;}
.x70_c00296{left:181.714500px;}
.x19_c00296{left:184.821000px;}
.x77_c00296{left:189.814500px;}
.x50_c00296{left:191.164500px;}
.x7a_c00296{left:192.784500px;}
.x2b_c00296{left:198.181500px;}
.x32_c00296{left:199.531500px;}
.x53_c00296{left:201.154500px;}
.x73_c00296{left:204.124500px;}
.x1f_c00296{left:207.361500px;}
.x9_c00296{left:210.330000px;}
.x41_c00296{left:212.655000px;}
.x49_c00296{left:216.004500px;}
.x68_c00296{left:221.674500px;}
.x2f_c00296{left:223.831500px;}
.x6c_c00296{left:225.184500px;}
.x10_c00296{left:227.206500px;}
.x2_c00296{left:228.960000px;}
.x7d_c00296{left:230.584500px;}
.x5c_c00296{left:231.664500px;}
.x37_c00296{left:234.091500px;}
.x25_c00296{left:235.171500px;}
.x2c_c00296{left:236.791500px;}
.x44_c00296{left:239.983500px;}
.x59_c00296{left:241.114500px;}
.x58_c00296{left:243.004500px;}
.x5f_c00296{left:246.784500px;}
.x11_c00296{left:249.025500px;}
.xa_c00296{left:251.370000px;}
.x26_c00296{left:252.991500px;}
.x82_c00296{left:254.880000px;}
.x2d_c00296{left:258.661500px;}
.x5a_c00296{left:260.014500px;}
.x38_c00296{left:261.631500px;}
.x4d_c00296{left:263.254500px;}
.x61_c00296{left:267.034500px;}
.x54_c00296{left:270.814500px;}
.x42_c00296{left:272.296500px;}
.x12_c00296{left:274.453500px;}
.x39_c00296{left:278.641500px;}
.x69_c00296{left:280.264500px;}
.x1a_c00296{left:282.774000px;}
.xb_c00296{left:285.390000px;}
.x4a_c00296{left:286.744500px;}
.x62_c00296{left:291.064500px;}
.x20_c00296{left:292.141500px;}
.x33_c00296{left:294.571500px;}
.x3f_c00296{left:296.380500px;}
.x74_c00296{left:297.814500px;}
.x6a_c00296{left:299.164500px;}
.x5b_c00296{left:300.514500px;}
.x5d_c00296{left:302.404500px;}
.x1b_c00296{left:303.837000px;}
.x21_c00296{left:305.641500px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
.fs10_c00296{font-size:36.400000pt;}
.fsa_c00296{font-size:47.600000pt;}
.fs9_c00296{font-size:49.466667pt;}
.fs12_c00296{font-size:51.333333pt;}
.fs6_c00296{font-size:52.266667pt;}
.fs8_c00296{font-size:53.200000pt;}
.fs7_c00296{font-size:54.133333pt;}
.fs3_c00296{font-size:55.066667pt;}
.fse_c00296{font-size:56.000000pt;}
.fsb_c00296{font-size:56.933333pt;}
.fs5_c00296{font-size:57.866667pt;}
.fs2_c00296{font-size:58.800000pt;}
.fsc_c00296{font-size:59.733333pt;}
.fsd_c00296{font-size:60.666667pt;}
.fs4_c00296{font-size:63.466667pt;}
.fs1_c00296{font-size:64.400000pt;}
.fs0_c00296{font-size:80.266667pt;}
.fsf_c00296{font-size:110.133333pt;}
.fs11_c00296{font-size:113.866667pt;}
.y0_c00296{bottom:0.000000pt;}
.y4b_c00296{bottom:22.202667pt;}
.y4a_c00296{bottom:34.328000pt;}
.y49_c00296{bottom:39.028000pt;}
.y48_c00296{bottom:53.197333pt;}
.y47_c00296{bottom:61.961333pt;}
.y46_c00296{bottom:83.022667pt;}
.y45_c00296{bottom:101.306667pt;}
.y3d_c00296{bottom:111.841333pt;}
.y3e_c00296{bottom:111.954667pt;}
.y3f_c00296{bottom:112.425333pt;}
.y40_c00296{bottom:112.518667pt;}
.y41_c00296{bottom:112.792000pt;}
.y42_c00296{bottom:113.077333pt;}
.y43_c00296{bottom:114.140000pt;}
.y44_c00296{bottom:114.417333pt;}
.y3c_c00296{bottom:131.168000pt;}
.y3b_c00296{bottom:134.944000pt;}
.y3a_c00296{bottom:160.378667pt;}
.y39_c00296{bottom:174.721333pt;}
.y38_c00296{bottom:190.164000pt;}
.y37_c00296{bottom:204.176000pt;}
.y36_c00296{bottom:220.889333pt;}
.y35_c00296{bottom:235.896000pt;}
.y34_c00296{bottom:252.058667pt;}
.y33_c00296{bottom:266.905333pt;}
.y32_c00296{bottom:282.697333pt;}
.y31_c00296{bottom:297.054667pt;}
.y30_c00296{bottom:311.377333pt;}
.y2a_c00296{bottom:321.369333pt;}
.y2b_c00296{bottom:322.233333pt;}
.y2c_c00296{bottom:323.354667pt;}
.y2d_c00296{bottom:323.878667pt;}
.y2e_c00296{bottom:325.261333pt;}
.y2f_c00296{bottom:325.858667pt;}
.y29_c00296{bottom:341.498667pt;}
.y28_c00296{bottom:341.712000pt;}
.y27_c00296{bottom:342.080000pt;}
.y26_c00296{bottom:342.348000pt;}
.y25_c00296{bottom:342.857333pt;}
.y24_c00296{bottom:343.592000pt;}
.y23_c00296{bottom:344.018667pt;}
.y22_c00296{bottom:344.401333pt;}
.y1a_c00296{bottom:352.565333pt;}
.y1b_c00296{bottom:352.772000pt;}
.y1c_c00296{bottom:353.666667pt;}
.y1d_c00296{bottom:354.061333pt;}
.y1e_c00296{bottom:354.384000pt;}
.y1f_c00296{bottom:355.077333pt;}
.y20_c00296{bottom:355.581333pt;}
.y21_c00296{bottom:356.441333pt;}
.y19_c00296{bottom:371.389333pt;}
.y18_c00296{bottom:385.861333pt;}
.y17_c00296{bottom:400.432000pt;}
.y16_c00296{bottom:415.990667pt;}
.y15_c00296{bottom:430.880000pt;}
.y14_c00296{bottom:446.340000pt;}
.yb_c00296{bottom:460.082667pt;}
.yc_c00296{bottom:460.206667pt;}
.yd_c00296{bottom:460.774667pt;}
.ye_c00296{bottom:460.980000pt;}
.yf_c00296{bottom:461.141333pt;}
.y10_c00296{bottom:461.450667pt;}
.y11_c00296{bottom:461.614667pt;}
.y12_c00296{bottom:462.572000pt;}
.y13_c00296{bottom:462.777333pt;}
.y3_c00296{bottom:475.201333pt;}
.y4_c00296{bottom:475.526667pt;}
.y5_c00296{bottom:475.745333pt;}
.y6_c00296{bottom:476.022667pt;}
.y7_c00296{bottom:476.628000pt;}
.y8_c00296{bottom:477.313333pt;}
.y9_c00296{bottom:477.546667pt;}
.ya_c00296{bottom:477.817333pt;}
.y2_c00296{bottom:491.142667pt;}
.y1_c00296{bottom:502.101333pt;}
.h12_c00296{height:36.400000pt;}
.hc_c00296{height:47.600000pt;}
.hb_c00296{height:49.466667pt;}
.h14_c00296{height:51.333333pt;}
.h8_c00296{height:52.266667pt;}
.ha_c00296{height:53.200000pt;}
.h9_c00296{height:54.133333pt;}
.h5_c00296{height:55.066667pt;}
.h10_c00296{height:56.000000pt;}
.hd_c00296{height:56.933333pt;}
.h7_c00296{height:57.866667pt;}
.h4_c00296{height:58.800000pt;}
.he_c00296{height:59.733333pt;}
.hf_c00296{height:60.666667pt;}
.h6_c00296{height:63.466667pt;}
.h3_c00296{height:64.400000pt;}
.h2_c00296{height:80.266667pt;}
.h11_c00296{height:110.133333pt;}
.h13_c00296{height:113.866667pt;}
.h1_c00296{height:550.000000pt;}
.h0_c00296{height:550.266667pt;}
.w0_c00296{width:319.200000pt;}
.w1_c00296{width:319.333333pt;}
.x0_c00296{left:0.000000pt;}
.x55_c00296{left:16.804000pt;}
.x40_c00296{left:17.906667pt;}
.x3_c00296{left:18.960000pt;}
.x3a_c00296{left:21.096000pt;}
.x22_c00296{left:22.561333pt;}
.x45_c00296{left:24.004000pt;}
.x13_c00296{left:25.113333pt;}
.xc_c00296{left:26.076000pt;}
.x27_c00296{left:33.121333pt;}
.x3b_c00296{left:34.049333pt;}
.x14_c00296{left:36.370667pt;}
.x63_c00296{left:38.164000pt;}
.x4_c00296{left:39.360000pt;}
.x4b_c00296{left:40.324000pt;}
.x80_c00296{left:41.520000pt;}
.x46_c00296{left:46.084000pt;}
.x71_c00296{left:47.284000pt;}
.x7e_c00296{left:49.680000pt;}
.x1c_c00296{left:50.641333pt;}
.xd_c00296{left:53.149333pt;}
.x43_c00296{left:55.682667pt;}
.x23_c00296{left:57.361333pt;}
.x78_c00296{left:59.284000pt;}
.x5_c00296{left:62.160000pt;}
.x6b_c00296{left:63.124000pt;}
.x56_c00296{left:64.324000pt;}
.x1_c00296{left:67.200000pt;}
.x4c_c00296{left:68.404000pt;}
.x34_c00296{left:69.361333pt;}
.xe_c00296{left:71.378667pt;}
.x7f_c00296{left:72.480000pt;}
.x6_c00296{left:74.400000pt;}
.x65_c00296{left:76.084000pt;}
.x5e_c00296{left:78.244000pt;}
.x6d_c00296{left:79.797333pt;}
.x81_c00296{left:81.360000pt;}
.x7b_c00296{left:83.764000pt;}
.x28_c00296{left:85.441333pt;}
.x15_c00296{left:87.953333pt;}
.x35_c00296{left:89.041333pt;}
.x3c_c00296{left:89.989333pt;}
.x75_c00296{left:91.444000pt;}
.x47_c00296{left:92.644000pt;}
.xf_c00296{left:94.441333pt;}
.x51_c00296{left:96.004000pt;}
.x79_c00296{left:97.684000pt;}
.x6e_c00296{left:102.573333pt;}
.x29_c00296{left:103.681333pt;}
.x57_c00296{left:105.124000pt;}
.x16_c00296{left:106.670667pt;}
.x66_c00296{left:108.244000pt;}
.x48_c00296{left:110.164000pt;}
.x4e_c00296{left:113.284000pt;}
.x3d_c00296{left:114.680000pt;}
.x1d_c00296{left:119.041333pt;}
.x30_c00296{left:120.001333pt;}
.x17_c00296{left:121.314667pt;}
.x36_c00296{left:124.801333pt;}
.x6f_c00296{left:126.361333pt;}
.x7_c00296{left:127.680000pt;}
.x24_c00296{left:131.761333pt;}
.x67_c00296{left:133.924000pt;}
.x3e_c00296{left:134.822667pt;}
.x7c_c00296{left:138.244000pt;}
.x2e_c00296{left:139.441333pt;}
.x52_c00296{left:141.364000pt;}
.x1e_c00296{left:143.761333pt;}
.x8_c00296{left:144.720000pt;}
.x2a_c00296{left:146.401333pt;}
.x64_c00296{left:148.324000pt;}
.x18_c00296{left:149.401333pt;}
.x31_c00296{left:151.681333pt;}
.x4f_c00296{left:153.364000pt;}
.x76_c00296{left:154.564000pt;}
.x60_c00296{left:156.244000pt;}
.x72_c00296{left:159.844000pt;}
.x70_c00296{left:161.524000pt;}
.x19_c00296{left:164.285333pt;}
.x77_c00296{left:168.724000pt;}
.x50_c00296{left:169.924000pt;}
.x7a_c00296{left:171.364000pt;}
.x2b_c00296{left:176.161333pt;}
.x32_c00296{left:177.361333pt;}
.x53_c00296{left:178.804000pt;}
.x73_c00296{left:181.444000pt;}
.x1f_c00296{left:184.321333pt;}
.x9_c00296{left:186.960000pt;}
.x41_c00296{left:189.026667pt;}
.x49_c00296{left:192.004000pt;}
.x68_c00296{left:197.044000pt;}
.x2f_c00296{left:198.961333pt;}
.x6c_c00296{left:200.164000pt;}
.x10_c00296{left:201.961333pt;}
.x2_c00296{left:203.520000pt;}
.x7d_c00296{left:204.964000pt;}
.x5c_c00296{left:205.924000pt;}
.x37_c00296{left:208.081333pt;}
.x25_c00296{left:209.041333pt;}
.x2c_c00296{left:210.481333pt;}
.x44_c00296{left:213.318667pt;}
.x59_c00296{left:214.324000pt;}
.x58_c00296{left:216.004000pt;}
.x5f_c00296{left:219.364000pt;}
.x11_c00296{left:221.356000pt;}
.xa_c00296{left:223.440000pt;}
.x26_c00296{left:224.881333pt;}
.x82_c00296{left:226.560000pt;}
.x2d_c00296{left:229.921333pt;}
.x5a_c00296{left:231.124000pt;}
.x38_c00296{left:232.561333pt;}
.x4d_c00296{left:234.004000pt;}
.x61_c00296{left:237.364000pt;}
.x54_c00296{left:240.724000pt;}
.x42_c00296{left:242.041333pt;}
.x12_c00296{left:243.958667pt;}
.x39_c00296{left:247.681333pt;}
.x69_c00296{left:249.124000pt;}
.x1a_c00296{left:251.354667pt;}
.xb_c00296{left:253.680000pt;}
.x4a_c00296{left:254.884000pt;}
.x62_c00296{left:258.724000pt;}
.x20_c00296{left:259.681333pt;}
.x33_c00296{left:261.841333pt;}
.x3f_c00296{left:263.449333pt;}
.x74_c00296{left:264.724000pt;}
.x6a_c00296{left:265.924000pt;}
.x5b_c00296{left:267.124000pt;}
.x5d_c00296{left:268.804000pt;}
.x1b_c00296{left:270.077333pt;}
.x21_c00296{left:271.681333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00297 {
    display:none;
  }
  .loading-indicator_c00297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00297 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00297 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00297" -> "#page-container .classname_c00297")
 */
.pf_c00297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00297 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00297 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00297 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00297 {overflow:visible;}
  }
}
.c_c00297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00297 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00297:after { /* webkit #35443 */
  content: '';
}
.t_c00297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00297 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00297 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00297 { /* info for Javascript */
  display:none;
}
.l_c00297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00297:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00297 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00297.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00297{transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013330,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.090725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.104540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104540,0.000000,0.000000,0.250000,0,0);}
.m97_c00297{transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);}
.mb8_c00297{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148040,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151710,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.152195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152195,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.mc2_c00297{transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);}
.md5_c00297{transform:matrix(0.155070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155070,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.ma5_c00297{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.ma0_c00297{transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);}
.ma1_c00297{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.mf1_c00297{transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);}
.m69_c00297{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.m9e_c00297{transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.161985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161985,0.000000,0.000000,0.250000,0,0);}
.mb2_c00297{transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162155,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00297{transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165410,0.000000,0.000000,0.250000,0,0);}
.me1_c00297{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00297{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.166640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166640,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167020,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.168180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00297{transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.168885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168885,0.000000,0.000000,0.250000,0,0);}
.mdc_c00297{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.ma2_c00297{transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);}
.m83_c00297{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m95_c00297{transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171460,0.000000,0.000000,0.250000,0,0);}
.mcd_c00297{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.me4_c00297{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m92_c00297{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.me5_c00297{transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00297{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.med_c00297{transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180065,0.000000,0.000000,0.250000,0,0);}
.ma8_c00297{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m3d_c00297{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.mb0_c00297{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m99_c00297{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181280,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.maf_c00297{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181560,0.000000,0.000000,0.250000,0,0);}
.mc6_c00297{transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181855,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);}
.m89_c00297{transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183035,0.000000,0.000000,0.250000,0,0);}
.m9d_c00297{transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.mdd_c00297{transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00297{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m9f_c00297{transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.mde_c00297{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);}
.mba_c00297{transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.me3_c00297{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m8b_c00297{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);}
.md4_c00297{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.mcf_c00297{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.mb1_c00297{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.mad_c00297{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);}
.mbd_c00297{transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.mcc_c00297{transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);}
.m39_c00297{transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);}
.m9a_c00297{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m6b_c00297{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m9c_c00297{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.194855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194855,0.000000,0.000000,0.250000,0,0);}
.me2_c00297{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.m7c_c00297{transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195495,0.000000,0.000000,0.250000,0,0);}
.m8c_c00297{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.ma9_c00297{transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.mbb_c00297{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.ma4_c00297{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.mb6_c00297{transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m98_c00297{transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.mdb_c00297{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.me0_c00297{transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00297{transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.mca_c00297{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.mb4_c00297{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.mdf_c00297{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m94_c00297{transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.mb3_c00297{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);}
.m91_c00297{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m51_c00297{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.mf3_c00297{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.mbc_c00297{transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00297{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00297{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m6e_c00297{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.mf2_c00297{transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);}
.m48_c00297{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.maa_c00297{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.mc4_c00297{transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);}
.ma6_c00297{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.ma3_c00297{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mef_c00297{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.mab_c00297{transform:matrix(0.215215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215215,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.mc7_c00297{transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.ma7_c00297{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.md8_c00297{transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.md9_c00297{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00297{transform:matrix(0.220445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220445,0.000000,0.000000,0.250000,0,0);}
.m93_c00297{transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220545,0.000000,0.000000,0.250000,0,0);}
.mc9_c00297{transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m82_c00297{transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.md2_c00297{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m79_c00297{transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);}
.md7_c00297{transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);}
.mf0_c00297{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.mae_c00297{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);}
.mee_c00297{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.md0_c00297{transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225855,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226360,0.000000,0.000000,0.250000,0,0);}
.mda_c00297{transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);}
.mf4_c00297{transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m90_c00297{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.mce_c00297{transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);}
.md3_c00297{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.mc5_c00297{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.md1_c00297{transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236195,0.000000,0.000000,0.250000,0,0);}
.mc1_c00297{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.meb_c00297{transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);}
.m7a_c00297{transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);}
.mea_c00297{transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239595,0.000000,0.000000,0.250000,0,0);}
.m96_c00297{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.mc8_c00297{transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242480,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);}
.me8_c00297{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00297{transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);}
.m60_c00297{transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);}
.m72_c00297{transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);}
.mec_c00297{transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259260,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.me9_c00297{transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);}
.me7_c00297{transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.275490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275490,0.000000,0.000000,0.250000,0,0);}
.mac_c00297{transform:matrix(0.296410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296410,0.000000,0.000000,0.250000,0,0);}
.mbf_c00297{transform:matrix(0.305410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305410,0.000000,0.000000,0.250000,0,0);}
.me6_c00297{transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.362365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362365,0.000000,0.000000,0.250000,0,0);}
.md6_c00297{transform:matrix(0.370605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.372300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00297{transform:matrix(0.386480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386480,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.401470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401470,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:0.000000px;}
.fc0_c00297{color:transparent;}
.fs0_c00297{font-size:45.150000px;}
.fse_c00297{font-size:52.500000px;}
.fsc_c00297{font-size:55.650000px;}
.fsd_c00297{font-size:58.800000px;}
.fs4_c00297{font-size:59.850000px;}
.fs2_c00297{font-size:60.900000px;}
.fs3_c00297{font-size:61.950000px;}
.fsa_c00297{font-size:63.000000px;}
.fs1_c00297{font-size:64.050000px;}
.fs9_c00297{font-size:65.100000px;}
.fs6_c00297{font-size:66.150000px;}
.fs8_c00297{font-size:67.200000px;}
.fsb_c00297{font-size:68.250000px;}
.fs7_c00297{font-size:69.300000px;}
.fs5_c00297{font-size:70.350000px;}
.y0_c00297{bottom:0.000000px;}
.y29_c00297{bottom:30.111000px;}
.y28_c00297{bottom:47.842500px;}
.y27_c00297{bottom:63.220500px;}
.y26_c00297{bottom:81.096000px;}
.y25_c00297{bottom:98.748000px;}
.y24_c00297{bottom:115.116000px;}
.y23_c00297{bottom:130.654500px;}
.y22_c00297{bottom:149.016000px;}
.y21_c00297{bottom:166.696500px;}
.y20_c00297{bottom:182.296500px;}
.y1f_c00297{bottom:199.432500px;}
.y1e_c00297{bottom:200.412000px;}
.y1d_c00297{bottom:200.610000px;}
.y1c_c00297{bottom:201.487500px;}
.y1b_c00297{bottom:201.936000px;}
.y1a_c00297{bottom:202.143000px;}
.y19_c00297{bottom:202.840500px;}
.y18_c00297{bottom:203.133000px;}
.y17_c00297{bottom:203.578500px;}
.y16_c00297{bottom:218.034000px;}
.y15_c00297{bottom:235.830000px;}
.y14_c00297{bottom:251.835000px;}
.y13_c00297{bottom:268.500000px;}
.y12_c00297{bottom:285.510000px;}
.y11_c00297{bottom:302.467500px;}
.y10_c00297{bottom:320.514000px;}
.yf_c00297{bottom:336.862500px;}
.ye_c00297{bottom:353.641500px;}
.yd_c00297{bottom:370.531500px;}
.yc_c00297{bottom:387.186000px;}
.yb_c00297{bottom:404.188500px;}
.ya_c00297{bottom:422.613000px;}
.y9_c00297{bottom:438.466500px;}
.y8_c00297{bottom:454.896000px;}
.y7_c00297{bottom:472.026000px;}
.y6_c00297{bottom:489.630000px;}
.y5_c00297{bottom:506.370000px;}
.y4_c00297{bottom:523.530000px;}
.y3_c00297{bottom:539.808000px;}
.y2_c00297{bottom:556.806000px;}
.y1_c00297{bottom:573.750000px;}
.h2_c00297{height:45.150000px;}
.h10_c00297{height:52.500000px;}
.he_c00297{height:55.650000px;}
.hf_c00297{height:58.800000px;}
.h6_c00297{height:59.850000px;}
.h4_c00297{height:60.900000px;}
.h5_c00297{height:61.950000px;}
.hc_c00297{height:63.000000px;}
.h3_c00297{height:64.050000px;}
.hb_c00297{height:65.100000px;}
.h8_c00297{height:66.150000px;}
.ha_c00297{height:67.200000px;}
.hd_c00297{height:68.250000px;}
.h9_c00297{height:69.300000px;}
.h7_c00297{height:70.350000px;}
.h1_c00297{height:618.750000px;}
.h0_c00297{height:619.050000px;}
.w0_c00297{width:359.100000px;}
.w1_c00297{width:359.250000px;}
.x0_c00297{left:0.000000px;}
.x7a_c00297{left:42.120000px;}
.x76_c00297{left:43.200000px;}
.x19_c00297{left:44.280000px;}
.x1f_c00297{left:45.360000px;}
.x2_c00297{left:46.440000px;}
.x7d_c00297{left:48.060000px;}
.x4e_c00297{left:58.320000px;}
.x3_c00297{left:60.480000px;}
.x71_c00297{left:62.640000px;}
.x53_c00297{left:63.720000px;}
.x60_c00297{left:67.230000px;}
.x12_c00297{left:68.580000px;}
.x2f_c00297{left:69.660000px;}
.x1a_c00297{left:72.090000px;}
.x20_c00297{left:74.790000px;}
.x6f_c00297{left:76.950000px;}
.x3e_c00297{left:78.570000px;}
.x27_c00297{left:81.270000px;}
.x74_c00297{left:82.350000px;}
.x1b_c00297{left:84.780000px;}
.x2d_c00297{left:86.400000px;}
.x36_c00297{left:88.020000px;}
.x4_c00297{left:89.640000px;}
.x5b_c00297{left:91.260000px;}
.x30_c00297{left:94.230000px;}
.xc_c00297{left:95.850000px;}
.x28_c00297{left:96.930000px;}
.x54_c00297{left:98.010000px;}
.x37_c00297{left:101.250000px;}
.x61_c00297{left:102.870000px;}
.x59_c00297{left:104.760000px;}
.x5_c00297{left:108.810000px;}
.x66_c00297{left:110.428500px;}
.x4f_c00297{left:114.480000px;}
.x13_c00297{left:117.450000px;}
.x55_c00297{left:119.070000px;}
.x7c_c00297{left:121.770000px;}
.x42_c00297{left:122.850000px;}
.x29_c00297{left:123.930000px;}
.x3a_c00297{left:125.280000px;}
.x6a_c00297{left:127.170000px;}
.x45_c00297{left:129.330000px;}
.x6_c00297{left:130.950000px;}
.x77_c00297{left:133.650000px;}
.x50_c00297{left:134.730000px;}
.x43_c00297{left:136.080000px;}
.x3f_c00297{left:137.430000px;}
.x70_c00297{left:139.050000px;}
.x21_c00297{left:143.910000px;}
.x64_c00297{left:147.568500px;}
.x49_c00297{left:148.770000px;}
.x75_c00297{left:150.660000px;}
.x5d_c00297{left:152.280000px;}
.x2a_c00297{left:154.440000px;}
.x14_c00297{left:157.680000px;}
.x5c_c00297{left:163.080000px;}
.x5e_c00297{left:170.100000px;}
.x56_c00297{left:172.530000px;}
.x4a_c00297{left:174.420000px;}
.x65_c00297{left:175.572000px;}
.x15_c00297{left:176.580000px;}
.x1_c00297{left:183.330000px;}
.x31_c00297{left:184.950000px;}
.x46_c00297{left:187.920000px;}
.x1c_c00297{left:189.000000px;}
.x7_c00297{left:192.780000px;}
.x67_c00297{left:194.938500px;}
.x2b_c00297{left:198.180000px;}
.x16_c00297{left:201.150000px;}
.x72_c00297{left:202.500000px;}
.x51_c00297{left:206.010000px;}
.x22_c00297{left:207.090000px;}
.x3d_c00297{left:209.790000px;}
.x44_c00297{left:210.870000px;}
.xd_c00297{left:213.030000px;}
.x6b_c00297{left:214.920000px;}
.x62_c00297{left:216.540000px;}
.x8_c00297{left:219.240000px;}
.x40_c00297{left:221.940000px;}
.x47_c00297{left:228.150000px;}
.x23_c00297{left:230.310000px;}
.x9_c00297{left:234.360000px;}
.xe_c00297{left:237.060000px;}
.x5a_c00297{left:242.190000px;}
.x57_c00297{left:244.620000px;}
.x4b_c00297{left:246.510000px;}
.x32_c00297{left:250.560000px;}
.x78_c00297{left:252.990000px;}
.x3b_c00297{left:256.500000px;}
.x68_c00297{left:258.118500px;}
.x1d_c00297{left:259.740000px;}
.xf_c00297{left:262.980000px;}
.x17_c00297{left:264.060000px;}
.x5f_c00297{left:267.030000px;}
.x24_c00297{left:269.190000px;}
.x6c_c00297{left:270.270000px;}
.x4c_c00297{left:273.780000px;}
.x2c_c00297{left:275.130000px;}
.x33_c00297{left:276.210000px;}
.x1e_c00297{left:279.180000px;}
.x25_c00297{left:281.070000px;}
.x10_c00297{left:283.500000px;}
.xa_c00297{left:285.390000px;}
.x7b_c00297{left:286.470000px;}
.x34_c00297{left:289.170000px;}
.x6d_c00297{left:290.250000px;}
.x38_c00297{left:291.870000px;}
.x73_c00297{left:292.950000px;}
.x18_c00297{left:295.110000px;}
.x58_c00297{left:296.730000px;}
.x4d_c00297{left:299.700000px;}
.x52_c00297{left:301.050000px;}
.x79_c00297{left:302.130000px;}
.xb_c00297{left:303.750000px;}
.x26_c00297{left:305.640000px;}
.x35_c00297{left:308.610000px;}
.x63_c00297{left:313.200000px;}
.x39_c00297{left:314.820000px;}
.x41_c00297{left:322.110000px;}
.x48_c00297{left:326.160000px;}
.x69_c00297{left:327.238500px;}
.x6e_c00297{left:329.670000px;}
.x3c_c00297{left:332.640000px;}
.x2e_c00297{left:334.260000px;}
.x11_c00297{left:336.960000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fs0_c00297{font-size:40.133333pt;}
.fse_c00297{font-size:46.666667pt;}
.fsc_c00297{font-size:49.466667pt;}
.fsd_c00297{font-size:52.266667pt;}
.fs4_c00297{font-size:53.200000pt;}
.fs2_c00297{font-size:54.133333pt;}
.fs3_c00297{font-size:55.066667pt;}
.fsa_c00297{font-size:56.000000pt;}
.fs1_c00297{font-size:56.933333pt;}
.fs9_c00297{font-size:57.866667pt;}
.fs6_c00297{font-size:58.800000pt;}
.fs8_c00297{font-size:59.733333pt;}
.fsb_c00297{font-size:60.666667pt;}
.fs7_c00297{font-size:61.600000pt;}
.fs5_c00297{font-size:62.533333pt;}
.y0_c00297{bottom:0.000000pt;}
.y29_c00297{bottom:26.765333pt;}
.y28_c00297{bottom:42.526667pt;}
.y27_c00297{bottom:56.196000pt;}
.y26_c00297{bottom:72.085333pt;}
.y25_c00297{bottom:87.776000pt;}
.y24_c00297{bottom:102.325333pt;}
.y23_c00297{bottom:116.137333pt;}
.y22_c00297{bottom:132.458667pt;}
.y21_c00297{bottom:148.174667pt;}
.y20_c00297{bottom:162.041333pt;}
.y1f_c00297{bottom:177.273333pt;}
.y1e_c00297{bottom:178.144000pt;}
.y1d_c00297{bottom:178.320000pt;}
.y1c_c00297{bottom:179.100000pt;}
.y1b_c00297{bottom:179.498667pt;}
.y1a_c00297{bottom:179.682667pt;}
.y19_c00297{bottom:180.302667pt;}
.y18_c00297{bottom:180.562667pt;}
.y17_c00297{bottom:180.958667pt;}
.y16_c00297{bottom:193.808000pt;}
.y15_c00297{bottom:209.626667pt;}
.y14_c00297{bottom:223.853333pt;}
.y13_c00297{bottom:238.666667pt;}
.y12_c00297{bottom:253.786667pt;}
.y11_c00297{bottom:268.860000pt;}
.y10_c00297{bottom:284.901333pt;}
.yf_c00297{bottom:299.433333pt;}
.ye_c00297{bottom:314.348000pt;}
.yd_c00297{bottom:329.361333pt;}
.yc_c00297{bottom:344.165333pt;}
.yb_c00297{bottom:359.278667pt;}
.ya_c00297{bottom:375.656000pt;}
.y9_c00297{bottom:389.748000pt;}
.y8_c00297{bottom:404.352000pt;}
.y7_c00297{bottom:419.578667pt;}
.y6_c00297{bottom:435.226667pt;}
.y5_c00297{bottom:450.106667pt;}
.y4_c00297{bottom:465.360000pt;}
.y3_c00297{bottom:479.829333pt;}
.y2_c00297{bottom:494.938667pt;}
.y1_c00297{bottom:510.000000pt;}
.h2_c00297{height:40.133333pt;}
.h10_c00297{height:46.666667pt;}
.he_c00297{height:49.466667pt;}
.hf_c00297{height:52.266667pt;}
.h6_c00297{height:53.200000pt;}
.h4_c00297{height:54.133333pt;}
.h5_c00297{height:55.066667pt;}
.hc_c00297{height:56.000000pt;}
.h3_c00297{height:56.933333pt;}
.hb_c00297{height:57.866667pt;}
.h8_c00297{height:58.800000pt;}
.ha_c00297{height:59.733333pt;}
.hd_c00297{height:60.666667pt;}
.h9_c00297{height:61.600000pt;}
.h7_c00297{height:62.533333pt;}
.h1_c00297{height:550.000000pt;}
.h0_c00297{height:550.266667pt;}
.w0_c00297{width:319.200000pt;}
.w1_c00297{width:319.333333pt;}
.x0_c00297{left:0.000000pt;}
.x7a_c00297{left:37.440000pt;}
.x76_c00297{left:38.400000pt;}
.x19_c00297{left:39.360000pt;}
.x1f_c00297{left:40.320000pt;}
.x2_c00297{left:41.280000pt;}
.x7d_c00297{left:42.720000pt;}
.x4e_c00297{left:51.840000pt;}
.x3_c00297{left:53.760000pt;}
.x71_c00297{left:55.680000pt;}
.x53_c00297{left:56.640000pt;}
.x60_c00297{left:59.760000pt;}
.x12_c00297{left:60.960000pt;}
.x2f_c00297{left:61.920000pt;}
.x1a_c00297{left:64.080000pt;}
.x20_c00297{left:66.480000pt;}
.x6f_c00297{left:68.400000pt;}
.x3e_c00297{left:69.840000pt;}
.x27_c00297{left:72.240000pt;}
.x74_c00297{left:73.200000pt;}
.x1b_c00297{left:75.360000pt;}
.x2d_c00297{left:76.800000pt;}
.x36_c00297{left:78.240000pt;}
.x4_c00297{left:79.680000pt;}
.x5b_c00297{left:81.120000pt;}
.x30_c00297{left:83.760000pt;}
.xc_c00297{left:85.200000pt;}
.x28_c00297{left:86.160000pt;}
.x54_c00297{left:87.120000pt;}
.x37_c00297{left:90.000000pt;}
.x61_c00297{left:91.440000pt;}
.x59_c00297{left:93.120000pt;}
.x5_c00297{left:96.720000pt;}
.x66_c00297{left:98.158667pt;}
.x4f_c00297{left:101.760000pt;}
.x13_c00297{left:104.400000pt;}
.x55_c00297{left:105.840000pt;}
.x7c_c00297{left:108.240000pt;}
.x42_c00297{left:109.200000pt;}
.x29_c00297{left:110.160000pt;}
.x3a_c00297{left:111.360000pt;}
.x6a_c00297{left:113.040000pt;}
.x45_c00297{left:114.960000pt;}
.x6_c00297{left:116.400000pt;}
.x77_c00297{left:118.800000pt;}
.x50_c00297{left:119.760000pt;}
.x43_c00297{left:120.960000pt;}
.x3f_c00297{left:122.160000pt;}
.x70_c00297{left:123.600000pt;}
.x21_c00297{left:127.920000pt;}
.x64_c00297{left:131.172000pt;}
.x49_c00297{left:132.240000pt;}
.x75_c00297{left:133.920000pt;}
.x5d_c00297{left:135.360000pt;}
.x2a_c00297{left:137.280000pt;}
.x14_c00297{left:140.160000pt;}
.x5c_c00297{left:144.960000pt;}
.x5e_c00297{left:151.200000pt;}
.x56_c00297{left:153.360000pt;}
.x4a_c00297{left:155.040000pt;}
.x65_c00297{left:156.064000pt;}
.x15_c00297{left:156.960000pt;}
.x1_c00297{left:162.960000pt;}
.x31_c00297{left:164.400000pt;}
.x46_c00297{left:167.040000pt;}
.x1c_c00297{left:168.000000pt;}
.x7_c00297{left:171.360000pt;}
.x67_c00297{left:173.278667pt;}
.x2b_c00297{left:176.160000pt;}
.x16_c00297{left:178.800000pt;}
.x72_c00297{left:180.000000pt;}
.x51_c00297{left:183.120000pt;}
.x22_c00297{left:184.080000pt;}
.x3d_c00297{left:186.480000pt;}
.x44_c00297{left:187.440000pt;}
.xd_c00297{left:189.360000pt;}
.x6b_c00297{left:191.040000pt;}
.x62_c00297{left:192.480000pt;}
.x8_c00297{left:194.880000pt;}
.x40_c00297{left:197.280000pt;}
.x47_c00297{left:202.800000pt;}
.x23_c00297{left:204.720000pt;}
.x9_c00297{left:208.320000pt;}
.xe_c00297{left:210.720000pt;}
.x5a_c00297{left:215.280000pt;}
.x57_c00297{left:217.440000pt;}
.x4b_c00297{left:219.120000pt;}
.x32_c00297{left:222.720000pt;}
.x78_c00297{left:224.880000pt;}
.x3b_c00297{left:228.000000pt;}
.x68_c00297{left:229.438667pt;}
.x1d_c00297{left:230.880000pt;}
.xf_c00297{left:233.760000pt;}
.x17_c00297{left:234.720000pt;}
.x5f_c00297{left:237.360000pt;}
.x24_c00297{left:239.280000pt;}
.x6c_c00297{left:240.240000pt;}
.x4c_c00297{left:243.360000pt;}
.x2c_c00297{left:244.560000pt;}
.x33_c00297{left:245.520000pt;}
.x1e_c00297{left:248.160000pt;}
.x25_c00297{left:249.840000pt;}
.x10_c00297{left:252.000000pt;}
.xa_c00297{left:253.680000pt;}
.x7b_c00297{left:254.640000pt;}
.x34_c00297{left:257.040000pt;}
.x6d_c00297{left:258.000000pt;}
.x38_c00297{left:259.440000pt;}
.x73_c00297{left:260.400000pt;}
.x18_c00297{left:262.320000pt;}
.x58_c00297{left:263.760000pt;}
.x4d_c00297{left:266.400000pt;}
.x52_c00297{left:267.600000pt;}
.x79_c00297{left:268.560000pt;}
.xb_c00297{left:270.000000pt;}
.x26_c00297{left:271.680000pt;}
.x35_c00297{left:274.320000pt;}
.x63_c00297{left:278.400000pt;}
.x39_c00297{left:279.840000pt;}
.x41_c00297{left:286.320000pt;}
.x48_c00297{left:289.920000pt;}
.x69_c00297{left:290.878667pt;}
.x6e_c00297{left:293.040000pt;}
.x3c_c00297{left:295.680000pt;}
.x2e_c00297{left:297.120000pt;}
.x11_c00297{left:299.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00298 {
    display:none;
  }
  .loading-indicator_c00298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00298 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00298 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00298" -> "#page-container .classname_c00298")
 */
.pf_c00298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00298 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00298 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00298 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00298 {overflow:visible;}
  }
}
.c_c00298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00298 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00298:after { /* webkit #35443 */
  content: '';
}
.t_c00298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00298 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00298 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00298 { /* info for Javascript */
  display:none;
}
.l_c00298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00298:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00298 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00298.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00298{transform:matrix(0.043790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043790,0.000000,0.000000,0.250000,0,0);}
.mda_c00298{transform:matrix(0.119256,-0.001431,0.003000,0.249982,0,0);-ms-transform:matrix(0.119256,-0.001431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.119256,-0.001431,0.003000,0.249982,0,0);}
.mc3_c00298{transform:matrix(0.133455,-0.001601,0.003000,0.249982,0,0);-ms-transform:matrix(0.133455,-0.001601,0.003000,0.249982,0,0);-webkit-transform:matrix(0.133455,-0.001601,0.003000,0.249982,0,0);}
.m37_c00298{transform:matrix(0.137345,-0.001648,0.003000,0.249982,0,0);-ms-transform:matrix(0.137345,-0.001648,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137345,-0.001648,0.003000,0.249982,0,0);}
.m5b_c00298{transform:matrix(0.138930,-0.001667,0.003000,0.249982,0,0);-ms-transform:matrix(0.138930,-0.001667,0.003000,0.249982,0,0);-webkit-transform:matrix(0.138930,-0.001667,0.003000,0.249982,0,0);}
.m4a_c00298{transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);-ms-transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141870,-0.001702,0.003000,0.249982,0,0);}
.m71_c00298{transform:matrix(0.143620,-0.001723,0.003000,0.249982,0,0);-ms-transform:matrix(0.143620,-0.001723,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143620,-0.001723,0.003000,0.249982,0,0);}
.m8a_c00298{transform:matrix(0.143810,-0.001726,0.003000,0.249982,0,0);-ms-transform:matrix(0.143810,-0.001726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143810,-0.001726,0.003000,0.249982,0,0);}
.mf3_c00298{transform:matrix(0.145450,-0.001745,0.003000,0.249982,0,0);-ms-transform:matrix(0.145450,-0.001745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145450,-0.001745,0.003000,0.249982,0,0);}
.m2e_c00298{transform:matrix(0.148344,-0.001780,0.003000,0.249982,0,0);-ms-transform:matrix(0.148344,-0.001780,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148344,-0.001780,0.003000,0.249982,0,0);}
.ma5_c00298{transform:matrix(0.149834,-0.001798,0.003000,0.249982,0,0);-ms-transform:matrix(0.149834,-0.001798,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149834,-0.001798,0.003000,0.249982,0,0);}
.m1e_c00298{transform:matrix(0.154674,-0.001856,0.003000,0.249982,0,0);-ms-transform:matrix(0.154674,-0.001856,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154674,-0.001856,0.003000,0.249982,0,0);}
.m81_c00298{transform:matrix(0.156299,-0.001876,0.003000,0.249982,0,0);-ms-transform:matrix(0.156299,-0.001876,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156299,-0.001876,0.003000,0.249982,0,0);}
.m87_c00298{transform:matrix(0.158044,-0.001897,0.003000,0.249982,0,0);-ms-transform:matrix(0.158044,-0.001897,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158044,-0.001897,0.003000,0.249982,0,0);}
.mdb_c00298{transform:matrix(0.158224,-0.001899,0.003000,0.249982,0,0);-ms-transform:matrix(0.158224,-0.001899,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158224,-0.001899,0.003000,0.249982,0,0);}
.m0_c00298{transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158230,0.000000,0.000000,0.250000,0,0);}
.m8b_c00298{transform:matrix(0.158439,-0.001901,0.003000,0.249982,0,0);-ms-transform:matrix(0.158439,-0.001901,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158439,-0.001901,0.003000,0.249982,0,0);}
.mc0_c00298{transform:matrix(0.160003,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.160003,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160003,-0.001920,0.003000,0.249982,0,0);}
.mab_c00298{transform:matrix(0.160858,-0.001930,0.003000,0.249982,0,0);-ms-transform:matrix(0.160858,-0.001930,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160858,-0.001930,0.003000,0.249982,0,0);}
.m88_c00298{transform:matrix(0.160873,-0.001930,0.003000,0.249982,0,0);-ms-transform:matrix(0.160873,-0.001930,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160873,-0.001930,0.003000,0.249982,0,0);}
.m32_c00298{transform:matrix(0.161603,-0.001939,0.003000,0.249982,0,0);-ms-transform:matrix(0.161603,-0.001939,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161603,-0.001939,0.003000,0.249982,0,0);}
.m2c_c00298{transform:matrix(0.162148,-0.001946,0.003000,0.249982,0,0);-ms-transform:matrix(0.162148,-0.001946,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162148,-0.001946,0.003000,0.249982,0,0);}
.m6c_c00298{transform:matrix(0.162418,-0.001949,0.003000,0.249982,0,0);-ms-transform:matrix(0.162418,-0.001949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162418,-0.001949,0.003000,0.249982,0,0);}
.m75_c00298{transform:matrix(0.162853,-0.001954,0.003000,0.249982,0,0);-ms-transform:matrix(0.162853,-0.001954,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162853,-0.001954,0.003000,0.249982,0,0);}
.m30_c00298{transform:matrix(0.164468,-0.001974,0.003000,0.249982,0,0);-ms-transform:matrix(0.164468,-0.001974,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164468,-0.001974,0.003000,0.249982,0,0);}
.m4d_c00298{transform:matrix(0.164808,-0.001978,0.003000,0.249982,0,0);-ms-transform:matrix(0.164808,-0.001978,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164808,-0.001978,0.003000,0.249982,0,0);}
.m40_c00298{transform:matrix(0.164918,-0.001979,0.003000,0.249982,0,0);-ms-transform:matrix(0.164918,-0.001979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164918,-0.001979,0.003000,0.249982,0,0);}
.ma1_c00298{transform:matrix(0.165148,-0.001982,0.003000,0.249982,0,0);-ms-transform:matrix(0.165148,-0.001982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165148,-0.001982,0.003000,0.249982,0,0);}
.m9d_c00298{transform:matrix(0.165428,-0.001985,0.003000,0.249982,0,0);-ms-transform:matrix(0.165428,-0.001985,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165428,-0.001985,0.003000,0.249982,0,0);}
.m7a_c00298{transform:matrix(0.165593,-0.001987,0.003000,0.249982,0,0);-ms-transform:matrix(0.165593,-0.001987,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165593,-0.001987,0.003000,0.249982,0,0);}
.m59_c00298{transform:matrix(0.166188,-0.001994,0.003000,0.249982,0,0);-ms-transform:matrix(0.166188,-0.001994,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166188,-0.001994,0.003000,0.249982,0,0);}
.m97_c00298{transform:matrix(0.166413,-0.001997,0.003000,0.249982,0,0);-ms-transform:matrix(0.166413,-0.001997,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166413,-0.001997,0.003000,0.249982,0,0);}
.mc5_c00298{transform:matrix(0.169223,-0.002031,0.003000,0.249982,0,0);-ms-transform:matrix(0.169223,-0.002031,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169223,-0.002031,0.003000,0.249982,0,0);}
.m5e_c00298{transform:matrix(0.170188,-0.002042,0.003000,0.249982,0,0);-ms-transform:matrix(0.170188,-0.002042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170188,-0.002042,0.003000,0.249982,0,0);}
.m8d_c00298{transform:matrix(0.170238,-0.002043,0.003000,0.249982,0,0);-ms-transform:matrix(0.170238,-0.002043,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170238,-0.002043,0.003000,0.249982,0,0);}
.ma7_c00298{transform:matrix(0.170903,-0.002051,0.003000,0.249982,0,0);-ms-transform:matrix(0.170903,-0.002051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170903,-0.002051,0.003000,0.249982,0,0);}
.m25_c00298{transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);-ms-transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172318,-0.002068,0.003000,0.249982,0,0);}
.m57_c00298{transform:matrix(0.172368,-0.002068,0.003000,0.249982,0,0);-ms-transform:matrix(0.172368,-0.002068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172368,-0.002068,0.003000,0.249982,0,0);}
.mdd_c00298{transform:matrix(0.172488,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172488,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172488,-0.002070,0.003000,0.249982,0,0);}
.m82_c00298{transform:matrix(0.173138,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173138,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173138,-0.002078,0.003000,0.249982,0,0);}
.m48_c00298{transform:matrix(0.173203,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173203,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173203,-0.002078,0.003000,0.249982,0,0);}
.m90_c00298{transform:matrix(0.173682,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173682,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173682,-0.002084,0.003000,0.249982,0,0);}
.mb7_c00298{transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);-ms-transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173922,-0.002087,0.003000,0.249982,0,0);}
.m23_c00298{transform:matrix(0.175127,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175127,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175127,-0.002102,0.003000,0.249982,0,0);}
.m24_c00298{transform:matrix(0.175707,-0.002108,0.003000,0.249982,0,0);-ms-transform:matrix(0.175707,-0.002108,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175707,-0.002108,0.003000,0.249982,0,0);}
.m94_c00298{transform:matrix(0.175887,-0.002111,0.003000,0.249982,0,0);-ms-transform:matrix(0.175887,-0.002111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175887,-0.002111,0.003000,0.249982,0,0);}
.mc8_c00298{transform:matrix(0.175952,-0.002111,0.003000,0.249982,0,0);-ms-transform:matrix(0.175952,-0.002111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175952,-0.002111,0.003000,0.249982,0,0);}
.m50_c00298{transform:matrix(0.176307,-0.002116,0.003000,0.249982,0,0);-ms-transform:matrix(0.176307,-0.002116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176307,-0.002116,0.003000,0.249982,0,0);}
.m53_c00298{transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);}
.mb5_c00298{transform:matrix(0.177527,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177527,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177527,-0.002130,0.003000,0.249982,0,0);}
.m79_c00298{transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177747,-0.002133,0.003000,0.249982,0,0);}
.mce_c00298{transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179082,-0.002149,0.003000,0.249982,0,0);}
.m17_c00298{transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);-ms-transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);}
.mde_c00298{transform:matrix(0.179642,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179642,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179642,-0.002156,0.003000,0.249982,0,0);}
.ma8_c00298{transform:matrix(0.179677,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179677,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179677,-0.002156,0.003000,0.249982,0,0);}
.m3c_c00298{transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179817,-0.002158,0.003000,0.249982,0,0);}
.m4b_c00298{transform:matrix(0.180732,-0.002169,0.003000,0.249982,0,0);-ms-transform:matrix(0.180732,-0.002169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180732,-0.002169,0.003000,0.249982,0,0);}
.me6_c00298{transform:matrix(0.180972,-0.002172,0.003000,0.249982,0,0);-ms-transform:matrix(0.180972,-0.002172,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180972,-0.002172,0.003000,0.249982,0,0);}
.mc4_c00298{transform:matrix(0.181537,-0.002178,0.003000,0.249982,0,0);-ms-transform:matrix(0.181537,-0.002178,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181537,-0.002178,0.003000,0.249982,0,0);}
.m16_c00298{transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);-ms-transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182047,-0.002185,0.003000,0.249982,0,0);}
.m39_c00298{transform:matrix(0.182217,-0.002187,0.003000,0.249982,0,0);-ms-transform:matrix(0.182217,-0.002187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182217,-0.002187,0.003000,0.249982,0,0);}
.m3e_c00298{transform:matrix(0.182967,-0.002196,0.003000,0.249982,0,0);-ms-transform:matrix(0.182967,-0.002196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182967,-0.002196,0.003000,0.249982,0,0);}
.m15_c00298{transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);-ms-transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183147,-0.002198,0.003000,0.249982,0,0);}
.me9_c00298{transform:matrix(0.183192,-0.002198,0.003000,0.249982,0,0);-ms-transform:matrix(0.183192,-0.002198,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183192,-0.002198,0.003000,0.249982,0,0);}
.mb4_c00298{transform:matrix(0.183497,-0.002202,0.003000,0.249982,0,0);-ms-transform:matrix(0.183497,-0.002202,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183497,-0.002202,0.003000,0.249982,0,0);}
.mba_c00298{transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);-ms-transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);}
.m1c_c00298{transform:matrix(0.183807,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183807,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183807,-0.002206,0.003000,0.249982,0,0);}
.mf_c00298{transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184092,-0.002209,0.003000,0.249982,0,0);}
.m11_c00298{transform:matrix(0.184202,-0.002210,0.003000,0.249982,0,0);-ms-transform:matrix(0.184202,-0.002210,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184202,-0.002210,0.003000,0.249982,0,0);}
.m95_c00298{transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184587,-0.002215,0.003000,0.249982,0,0);}
.m20_c00298{transform:matrix(0.184612,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184612,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184612,-0.002215,0.003000,0.249982,0,0);}
.m52_c00298{transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184797,-0.002218,0.003000,0.249982,0,0);}
.me_c00298{transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185002,-0.002220,0.003000,0.249982,0,0);}
.m93_c00298{transform:matrix(0.185262,-0.002223,0.003000,0.249982,0,0);-ms-transform:matrix(0.185262,-0.002223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185262,-0.002223,0.003000,0.249982,0,0);}
.m10_c00298{transform:matrix(0.185372,-0.002224,0.003000,0.249982,0,0);-ms-transform:matrix(0.185372,-0.002224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185372,-0.002224,0.003000,0.249982,0,0);}
.m2_c00298{transform:matrix(0.186387,-0.002237,0.003000,0.249982,0,0);-ms-transform:matrix(0.186387,-0.002237,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186387,-0.002237,0.003000,0.249982,0,0);}
.m7e_c00298{transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186697,-0.002240,0.003000,0.249982,0,0);}
.m29_c00298{transform:matrix(0.186717,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186717,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186717,-0.002241,0.003000,0.249982,0,0);}
.m9b_c00298{transform:matrix(0.186787,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186787,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186787,-0.002241,0.003000,0.249982,0,0);}
.mc2_c00298{transform:matrix(0.186882,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186882,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186882,-0.002243,0.003000,0.249982,0,0);}
.m35_c00298{transform:matrix(0.187147,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187147,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187147,-0.002246,0.003000,0.249982,0,0);}
.m3d_c00298{transform:matrix(0.187492,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187492,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187492,-0.002250,0.003000,0.249982,0,0);}
.m49_c00298{transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187541,-0.002250,0.003000,0.249982,0,0);}
.m64_c00298{transform:matrix(0.188106,-0.002257,0.003000,0.249982,0,0);-ms-transform:matrix(0.188106,-0.002257,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188106,-0.002257,0.003000,0.249982,0,0);}
.m1f_c00298{transform:matrix(0.188206,-0.002258,0.003000,0.249982,0,0);-ms-transform:matrix(0.188206,-0.002258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188206,-0.002258,0.003000,0.249982,0,0);}
.m5_c00298{transform:matrix(0.188246,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188246,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188246,-0.002259,0.003000,0.249982,0,0);}
.m3_c00298{transform:matrix(0.188571,-0.002263,0.003000,0.249982,0,0);-ms-transform:matrix(0.188571,-0.002263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188571,-0.002263,0.003000,0.249982,0,0);}
.m86_c00298{transform:matrix(0.188796,-0.002266,0.003000,0.249982,0,0);-ms-transform:matrix(0.188796,-0.002266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188796,-0.002266,0.003000,0.249982,0,0);}
.m4_c00298{transform:matrix(0.188846,-0.002266,0.003000,0.249982,0,0);-ms-transform:matrix(0.188846,-0.002266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188846,-0.002266,0.003000,0.249982,0,0);}
.ma4_c00298{transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);-ms-transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189036,-0.002268,0.003000,0.249982,0,0);}
.m2f_c00298{transform:matrix(0.189041,-0.002268,0.003000,0.249982,0,0);-ms-transform:matrix(0.189041,-0.002268,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189041,-0.002268,0.003000,0.249982,0,0);}
.me3_c00298{transform:matrix(0.189186,-0.002270,0.003000,0.249982,0,0);-ms-transform:matrix(0.189186,-0.002270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189186,-0.002270,0.003000,0.249982,0,0);}
.ma3_c00298{transform:matrix(0.189376,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189376,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189376,-0.002273,0.003000,0.249982,0,0);}
.m2d_c00298{transform:matrix(0.189541,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189541,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189541,-0.002274,0.003000,0.249982,0,0);}
.mad_c00298{transform:matrix(0.189561,-0.002275,0.003000,0.249982,0,0);-ms-transform:matrix(0.189561,-0.002275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189561,-0.002275,0.003000,0.249982,0,0);}
.m1d_c00298{transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);}
.m44_c00298{transform:matrix(0.190671,-0.002288,0.003000,0.249982,0,0);-ms-transform:matrix(0.190671,-0.002288,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190671,-0.002288,0.003000,0.249982,0,0);}
.m5a_c00298{transform:matrix(0.190741,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190741,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190741,-0.002289,0.003000,0.249982,0,0);}
.m56_c00298{transform:matrix(0.190846,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190846,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190846,-0.002290,0.003000,0.249982,0,0);}
.m1b_c00298{transform:matrix(0.191251,-0.002295,0.003000,0.249982,0,0);-ms-transform:matrix(0.191251,-0.002295,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191251,-0.002295,0.003000,0.249982,0,0);}
.m73_c00298{transform:matrix(0.191616,-0.002299,0.003000,0.249982,0,0);-ms-transform:matrix(0.191616,-0.002299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191616,-0.002299,0.003000,0.249982,0,0);}
.m21_c00298{transform:matrix(0.191671,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191671,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191671,-0.002300,0.003000,0.249982,0,0);}
.ma2_c00298{transform:matrix(0.191926,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191926,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191926,-0.002303,0.003000,0.249982,0,0);}
.m4c_c00298{transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191946,-0.002303,0.003000,0.249982,0,0);}
.m8e_c00298{transform:matrix(0.192011,-0.002304,0.003000,0.249982,0,0);-ms-transform:matrix(0.192011,-0.002304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192011,-0.002304,0.003000,0.249982,0,0);}
.m8f_c00298{transform:matrix(0.192036,-0.002304,0.003000,0.249982,0,0);-ms-transform:matrix(0.192036,-0.002304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192036,-0.002304,0.003000,0.249982,0,0);}
.mdc_c00298{transform:matrix(0.192356,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192356,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192356,-0.002308,0.003000,0.249982,0,0);}
.m69_c00298{transform:matrix(0.192776,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192776,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192776,-0.002313,0.003000,0.249982,0,0);}
.m2a_c00298{transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192801,-0.002314,0.003000,0.249982,0,0);}
.md_c00298{transform:matrix(0.192861,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192861,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192861,-0.002314,0.003000,0.249982,0,0);}
.m9_c00298{transform:matrix(0.193186,-0.002318,0.003000,0.249982,0,0);-ms-transform:matrix(0.193186,-0.002318,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193186,-0.002318,0.003000,0.249982,0,0);}
.mb2_c00298{transform:matrix(0.193401,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193401,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193401,-0.002321,0.003000,0.249982,0,0);}
.mc_c00298{transform:matrix(0.193491,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193491,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193491,-0.002322,0.003000,0.249982,0,0);}
.mc6_c00298{transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193826,-0.002326,0.003000,0.249982,0,0);}
.m89_c00298{transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);-ms-transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194026,-0.002328,0.003000,0.249982,0,0);}
.maa_c00298{transform:matrix(0.194146,-0.002330,0.003000,0.249982,0,0);-ms-transform:matrix(0.194146,-0.002330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194146,-0.002330,0.003000,0.249982,0,0);}
.m38_c00298{transform:matrix(0.194391,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194391,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194391,-0.002333,0.003000,0.249982,0,0);}
.m9e_c00298{transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195816,-0.002350,0.003000,0.249982,0,0);}
.mac_c00298{transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196366,-0.002356,0.003000,0.249982,0,0);}
.mc9_c00298{transform:matrix(0.196476,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196476,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196476,-0.002358,0.003000,0.249982,0,0);}
.mdf_c00298{transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);-ms-transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196861,-0.002362,0.003000,0.249982,0,0);}
.m8c_c00298{transform:matrix(0.197221,-0.002367,0.003000,0.249982,0,0);-ms-transform:matrix(0.197221,-0.002367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197221,-0.002367,0.003000,0.249982,0,0);}
.me5_c00298{transform:matrix(0.197241,-0.002367,0.003000,0.249982,0,0);-ms-transform:matrix(0.197241,-0.002367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197241,-0.002367,0.003000,0.249982,0,0);}
.m18_c00298{transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197431,-0.002369,0.003000,0.249982,0,0);}
.m8_c00298{transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);-ms-transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197506,-0.002370,0.003000,0.249982,0,0);}
.m31_c00298{transform:matrix(0.197636,-0.002372,0.003000,0.249982,0,0);-ms-transform:matrix(0.197636,-0.002372,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197636,-0.002372,0.003000,0.249982,0,0);}
.ma9_c00298{transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197786,-0.002373,0.003000,0.249982,0,0);}
.m99_c00298{transform:matrix(0.198081,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198081,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198081,-0.002377,0.003000,0.249982,0,0);}
.m9a_c00298{transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198091,-0.002377,0.003000,0.249982,0,0);}
.m72_c00298{transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);-ms-transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198756,-0.002385,0.003000,0.249982,0,0);}
.m80_c00298{transform:matrix(0.199071,-0.002389,0.003000,0.249982,0,0);-ms-transform:matrix(0.199071,-0.002389,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199071,-0.002389,0.003000,0.249982,0,0);}
.mb8_c00298{transform:matrix(0.199361,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199361,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199361,-0.002392,0.003000,0.249982,0,0);}
.m7f_c00298{transform:matrix(0.199581,-0.002395,0.003000,0.249982,0,0);-ms-transform:matrix(0.199581,-0.002395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199581,-0.002395,0.003000,0.249982,0,0);}
.m51_c00298{transform:matrix(0.199731,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199731,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199731,-0.002397,0.003000,0.249982,0,0);}
.m26_c00298{transform:matrix(0.200186,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200186,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200186,-0.002402,0.003000,0.249982,0,0);}
.m9f_c00298{transform:matrix(0.200261,-0.002403,0.003000,0.249982,0,0);-ms-transform:matrix(0.200261,-0.002403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200261,-0.002403,0.003000,0.249982,0,0);}
.m84_c00298{transform:matrix(0.200496,-0.002406,0.003000,0.249982,0,0);-ms-transform:matrix(0.200496,-0.002406,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200496,-0.002406,0.003000,0.249982,0,0);}
.m61_c00298{transform:matrix(0.200851,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200851,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200851,-0.002410,0.003000,0.249982,0,0);}
.m34_c00298{transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);-ms-transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200866,-0.002410,0.003000,0.249982,0,0);}
.mb6_c00298{transform:matrix(0.201026,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.201026,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201026,-0.002412,0.003000,0.249982,0,0);}
.m6_c00298{transform:matrix(0.202065,-0.002425,0.003000,0.249982,0,0);-ms-transform:matrix(0.202065,-0.002425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202065,-0.002425,0.003000,0.249982,0,0);}
.mcd_c00298{transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);-ms-transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);}
.m62_c00298{transform:matrix(0.202260,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202260,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202260,-0.002427,0.003000,0.249982,0,0);}
.m5f_c00298{transform:matrix(0.202325,-0.002428,0.003000,0.249982,0,0);-ms-transform:matrix(0.202325,-0.002428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202325,-0.002428,0.003000,0.249982,0,0);}
.m13_c00298{transform:matrix(0.202415,-0.002429,0.003000,0.249982,0,0);-ms-transform:matrix(0.202415,-0.002429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202415,-0.002429,0.003000,0.249982,0,0);}
.m4e_c00298{transform:matrix(0.202470,-0.002430,0.003000,0.249982,0,0);-ms-transform:matrix(0.202470,-0.002430,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202470,-0.002430,0.003000,0.249982,0,0);}
.m96_c00298{transform:matrix(0.202660,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202660,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202660,-0.002432,0.003000,0.249982,0,0);}
.m2b_c00298{transform:matrix(0.202840,-0.002434,0.003000,0.249982,0,0);-ms-transform:matrix(0.202840,-0.002434,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202840,-0.002434,0.003000,0.249982,0,0);}
.mbf_c00298{transform:matrix(0.202975,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202975,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202975,-0.002436,0.003000,0.249982,0,0);}
.m12_c00298{transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);}
.m55_c00298{transform:matrix(0.203405,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203405,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203405,-0.002441,0.003000,0.249982,0,0);}
.m98_c00298{transform:matrix(0.203980,-0.002448,0.003000,0.249982,0,0);-ms-transform:matrix(0.203980,-0.002448,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203980,-0.002448,0.003000,0.249982,0,0);}
.m83_c00298{transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);-ms-transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);}
.m43_c00298{transform:matrix(0.205725,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205725,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205725,-0.002469,0.003000,0.249982,0,0);}
.m14_c00298{transform:matrix(0.206230,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206230,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206230,-0.002475,0.003000,0.249982,0,0);}
.m47_c00298{transform:matrix(0.206265,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206265,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206265,-0.002475,0.003000,0.249982,0,0);}
.m3f_c00298{transform:matrix(0.206325,-0.002476,0.003000,0.249982,0,0);-ms-transform:matrix(0.206325,-0.002476,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206325,-0.002476,0.003000,0.249982,0,0);}
.mf8_c00298{transform:matrix(0.206555,-0.002479,0.003000,0.249982,0,0);-ms-transform:matrix(0.206555,-0.002479,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206555,-0.002479,0.003000,0.249982,0,0);}
.m45_c00298{transform:matrix(0.206930,-0.002483,0.003000,0.249982,0,0);-ms-transform:matrix(0.206930,-0.002483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206930,-0.002483,0.003000,0.249982,0,0);}
.mb0_c00298{transform:matrix(0.207180,-0.002486,0.003000,0.249982,0,0);-ms-transform:matrix(0.207180,-0.002486,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207180,-0.002486,0.003000,0.249982,0,0);}
.m7b_c00298{transform:matrix(0.207410,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207410,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207410,-0.002489,0.003000,0.249982,0,0);}
.m65_c00298{transform:matrix(0.207490,-0.002490,0.003000,0.249982,0,0);-ms-transform:matrix(0.207490,-0.002490,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207490,-0.002490,0.003000,0.249982,0,0);}
.me7_c00298{transform:matrix(0.208620,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208620,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208620,-0.002503,0.003000,0.249982,0,0);}
.m1a_c00298{transform:matrix(0.208720,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208720,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208720,-0.002505,0.003000,0.249982,0,0);}
.m7d_c00298{transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);-ms-transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209240,-0.002511,0.003000,0.249982,0,0);}
.m19_c00298{transform:matrix(0.209255,-0.002511,0.003000,0.249982,0,0);-ms-transform:matrix(0.209255,-0.002511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209255,-0.002511,0.003000,0.249982,0,0);}
.md7_c00298{transform:matrix(0.209640,-0.002516,0.003000,0.249982,0,0);-ms-transform:matrix(0.209640,-0.002516,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209640,-0.002516,0.003000,0.249982,0,0);}
.me0_c00298{transform:matrix(0.210925,-0.002531,0.003000,0.249982,0,0);-ms-transform:matrix(0.210925,-0.002531,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210925,-0.002531,0.003000,0.249982,0,0);}
.me4_c00298{transform:matrix(0.211645,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211645,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211645,-0.002540,0.003000,0.249982,0,0);}
.m7_c00298{transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);-ms-transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211715,-0.002541,0.003000,0.249982,0,0);}
.m66_c00298{transform:matrix(0.211735,-0.002541,0.003000,0.249982,0,0);-ms-transform:matrix(0.211735,-0.002541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211735,-0.002541,0.003000,0.249982,0,0);}
.mb_c00298{transform:matrix(0.211965,-0.002544,0.003000,0.249982,0,0);-ms-transform:matrix(0.211965,-0.002544,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211965,-0.002544,0.003000,0.249982,0,0);}
.m9c_c00298{transform:matrix(0.212520,-0.002550,0.003000,0.249982,0,0);-ms-transform:matrix(0.212520,-0.002550,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212520,-0.002550,0.003000,0.249982,0,0);}
.mc7_c00298{transform:matrix(0.212805,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212805,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212805,-0.002554,0.003000,0.249982,0,0);}
.m3b_c00298{transform:matrix(0.212875,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212875,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212875,-0.002554,0.003000,0.249982,0,0);}
.m6a_c00298{transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);-ms-transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);}
.m6b_c00298{transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);-ms-transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213155,-0.002558,0.003000,0.249982,0,0);}
.m54_c00298{transform:matrix(0.213185,-0.002558,0.003000,0.249982,0,0);-ms-transform:matrix(0.213185,-0.002558,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213185,-0.002558,0.003000,0.249982,0,0);}
.m74_c00298{transform:matrix(0.214170,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214170,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214170,-0.002570,0.003000,0.249982,0,0);}
.mbd_c00298{transform:matrix(0.214310,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214310,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214310,-0.002572,0.003000,0.249982,0,0);}
.m46_c00298{transform:matrix(0.215954,-0.002591,0.003000,0.249982,0,0);-ms-transform:matrix(0.215954,-0.002591,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215954,-0.002591,0.003000,0.249982,0,0);}
.mb3_c00298{transform:matrix(0.216164,-0.002594,0.003000,0.249982,0,0);-ms-transform:matrix(0.216164,-0.002594,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216164,-0.002594,0.003000,0.249982,0,0);}
.m58_c00298{transform:matrix(0.216194,-0.002594,0.003000,0.249982,0,0);-ms-transform:matrix(0.216194,-0.002594,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216194,-0.002594,0.003000,0.249982,0,0);}
.m92_c00298{transform:matrix(0.217024,-0.002604,0.003000,0.249982,0,0);-ms-transform:matrix(0.217024,-0.002604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217024,-0.002604,0.003000,0.249982,0,0);}
.mca_c00298{transform:matrix(0.217374,-0.002608,0.003000,0.249982,0,0);-ms-transform:matrix(0.217374,-0.002608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217374,-0.002608,0.003000,0.249982,0,0);}
.mb1_c00298{transform:matrix(0.217794,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217794,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217794,-0.002614,0.003000,0.249982,0,0);}
.m4f_c00298{transform:matrix(0.218139,-0.002618,0.003000,0.249982,0,0);-ms-transform:matrix(0.218139,-0.002618,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218139,-0.002618,0.003000,0.249982,0,0);}
.m76_c00298{transform:matrix(0.218344,-0.002620,0.003000,0.249982,0,0);-ms-transform:matrix(0.218344,-0.002620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218344,-0.002620,0.003000,0.249982,0,0);}
.m33_c00298{transform:matrix(0.218464,-0.002622,0.003000,0.249982,0,0);-ms-transform:matrix(0.218464,-0.002622,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218464,-0.002622,0.003000,0.249982,0,0);}
.maf_c00298{transform:matrix(0.218514,-0.002622,0.003000,0.249982,0,0);-ms-transform:matrix(0.218514,-0.002622,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218514,-0.002622,0.003000,0.249982,0,0);}
.mbe_c00298{transform:matrix(0.218989,-0.002628,0.003000,0.249982,0,0);-ms-transform:matrix(0.218989,-0.002628,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218989,-0.002628,0.003000,0.249982,0,0);}
.m3a_c00298{transform:matrix(0.219719,-0.002637,0.003000,0.249982,0,0);-ms-transform:matrix(0.219719,-0.002637,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219719,-0.002637,0.003000,0.249982,0,0);}
.m6d_c00298{transform:matrix(0.220604,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220604,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220604,-0.002647,0.003000,0.249982,0,0);}
.m36_c00298{transform:matrix(0.222469,-0.002670,0.003000,0.249982,0,0);-ms-transform:matrix(0.222469,-0.002670,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222469,-0.002670,0.003000,0.249982,0,0);}
.m42_c00298{transform:matrix(0.222689,-0.002672,0.003000,0.249982,0,0);-ms-transform:matrix(0.222689,-0.002672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222689,-0.002672,0.003000,0.249982,0,0);}
.mc1_c00298{transform:matrix(0.223799,-0.002686,0.003000,0.249982,0,0);-ms-transform:matrix(0.223799,-0.002686,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223799,-0.002686,0.003000,0.249982,0,0);}
.mb9_c00298{transform:matrix(0.224094,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224094,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224094,-0.002689,0.003000,0.249982,0,0);}
.m7c_c00298{transform:matrix(0.224444,-0.002693,0.003000,0.249982,0,0);-ms-transform:matrix(0.224444,-0.002693,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224444,-0.002693,0.003000,0.249982,0,0);}
.me2_c00298{transform:matrix(0.225714,-0.002709,0.003000,0.249982,0,0);-ms-transform:matrix(0.225714,-0.002709,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225714,-0.002709,0.003000,0.249982,0,0);}
.me8_c00298{transform:matrix(0.227289,-0.002727,0.003000,0.249982,0,0);-ms-transform:matrix(0.227289,-0.002727,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227289,-0.002727,0.003000,0.249982,0,0);}
.mf1_c00298{transform:matrix(0.228214,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228214,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228214,-0.002739,0.003000,0.249982,0,0);}
.mef_c00298{transform:matrix(0.230348,-0.002764,0.003000,0.249982,0,0);-ms-transform:matrix(0.230348,-0.002764,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230348,-0.002764,0.003000,0.249982,0,0);}
.m70_c00298{transform:matrix(0.230433,-0.002765,0.003000,0.249982,0,0);-ms-transform:matrix(0.230433,-0.002765,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230433,-0.002765,0.003000,0.249982,0,0);}
.mee_c00298{transform:matrix(0.232583,-0.002791,0.003000,0.249982,0,0);-ms-transform:matrix(0.232583,-0.002791,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232583,-0.002791,0.003000,0.249982,0,0);}
.mf5_c00298{transform:matrix(0.232768,-0.002793,0.003000,0.249982,0,0);-ms-transform:matrix(0.232768,-0.002793,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232768,-0.002793,0.003000,0.249982,0,0);}
.mf4_c00298{transform:matrix(0.233808,-0.002806,0.003000,0.249982,0,0);-ms-transform:matrix(0.233808,-0.002806,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233808,-0.002806,0.003000,0.249982,0,0);}
.mcf_c00298{transform:matrix(0.235143,-0.002822,0.003000,0.249982,0,0);-ms-transform:matrix(0.235143,-0.002822,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235143,-0.002822,0.003000,0.249982,0,0);}
.m77_c00298{transform:matrix(0.235683,-0.002828,0.003000,0.249982,0,0);-ms-transform:matrix(0.235683,-0.002828,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235683,-0.002828,0.003000,0.249982,0,0);}
.mf7_c00298{transform:matrix(0.235823,-0.002830,0.003000,0.249982,0,0);-ms-transform:matrix(0.235823,-0.002830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235823,-0.002830,0.003000,0.249982,0,0);}
.mf6_c00298{transform:matrix(0.237773,-0.002853,0.003000,0.249982,0,0);-ms-transform:matrix(0.237773,-0.002853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237773,-0.002853,0.003000,0.249982,0,0);}
.ma0_c00298{transform:matrix(0.238743,-0.002865,0.003000,0.249982,0,0);-ms-transform:matrix(0.238743,-0.002865,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238743,-0.002865,0.003000,0.249982,0,0);}
.mae_c00298{transform:matrix(0.240463,-0.002886,0.003000,0.249982,0,0);-ms-transform:matrix(0.240463,-0.002886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240463,-0.002886,0.003000,0.249982,0,0);}
.m22_c00298{transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);-ms-transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240578,-0.002887,0.003000,0.249982,0,0);}
.m41_c00298{transform:matrix(0.241053,-0.002893,0.003000,0.249982,0,0);-ms-transform:matrix(0.241053,-0.002893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241053,-0.002893,0.003000,0.249982,0,0);}
.mec_c00298{transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);-ms-transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);}
.med_c00298{transform:matrix(0.242963,-0.002916,0.003000,0.249982,0,0);-ms-transform:matrix(0.242963,-0.002916,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242963,-0.002916,0.003000,0.249982,0,0);}
.mbc_c00298{transform:matrix(0.243672,-0.002924,0.003000,0.249982,0,0);-ms-transform:matrix(0.243672,-0.002924,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243672,-0.002924,0.003000,0.249982,0,0);}
.m85_c00298{transform:matrix(0.247222,-0.002967,0.003000,0.249982,0,0);-ms-transform:matrix(0.247222,-0.002967,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247222,-0.002967,0.003000,0.249982,0,0);}
.md3_c00298{transform:matrix(0.251987,-0.003024,0.003000,0.249982,0,0);-ms-transform:matrix(0.251987,-0.003024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251987,-0.003024,0.003000,0.249982,0,0);}
.m27_c00298{transform:matrix(0.254022,-0.003048,0.003000,0.249982,0,0);-ms-transform:matrix(0.254022,-0.003048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254022,-0.003048,0.003000,0.249982,0,0);}
.ma_c00298{transform:matrix(0.254742,-0.003057,0.003000,0.249982,0,0);-ms-transform:matrix(0.254742,-0.003057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254742,-0.003057,0.003000,0.249982,0,0);}
.md8_c00298{transform:matrix(0.256602,-0.003079,0.003000,0.249982,0,0);-ms-transform:matrix(0.256602,-0.003079,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256602,-0.003079,0.003000,0.249982,0,0);}
.mbb_c00298{transform:matrix(0.256682,-0.003080,0.003000,0.249982,0,0);-ms-transform:matrix(0.256682,-0.003080,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256682,-0.003080,0.003000,0.249982,0,0);}
.ma6_c00298{transform:matrix(0.257826,-0.003094,0.003000,0.249982,0,0);-ms-transform:matrix(0.257826,-0.003094,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257826,-0.003094,0.003000,0.249982,0,0);}
.m5c_c00298{transform:matrix(0.257951,-0.003095,0.003000,0.249982,0,0);-ms-transform:matrix(0.257951,-0.003095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257951,-0.003095,0.003000,0.249982,0,0);}
.m67_c00298{transform:matrix(0.259716,-0.003117,0.003000,0.249982,0,0);-ms-transform:matrix(0.259716,-0.003117,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259716,-0.003117,0.003000,0.249982,0,0);}
.md6_c00298{transform:matrix(0.261001,-0.003132,0.003000,0.249982,0,0);-ms-transform:matrix(0.261001,-0.003132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261001,-0.003132,0.003000,0.249982,0,0);}
.m28_c00298{transform:matrix(0.266236,-0.003195,0.003000,0.249982,0,0);-ms-transform:matrix(0.266236,-0.003195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266236,-0.003195,0.003000,0.249982,0,0);}
.md4_c00298{transform:matrix(0.266341,-0.003196,0.003000,0.249982,0,0);-ms-transform:matrix(0.266341,-0.003196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266341,-0.003196,0.003000,0.249982,0,0);}
.mcc_c00298{transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);-ms-transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);}
.m91_c00298{transform:matrix(0.274065,-0.003289,0.003000,0.249982,0,0);-ms-transform:matrix(0.274065,-0.003289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274065,-0.003289,0.003000,0.249982,0,0);}
.m6f_c00298{transform:matrix(0.275130,-0.003302,0.003000,0.249982,0,0);-ms-transform:matrix(0.275130,-0.003302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275130,-0.003302,0.003000,0.249982,0,0);}
.mf2_c00298{transform:matrix(0.275210,-0.003303,0.003000,0.249982,0,0);-ms-transform:matrix(0.275210,-0.003303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275210,-0.003303,0.003000,0.249982,0,0);}
.mf0_c00298{transform:matrix(0.275985,-0.003312,0.003000,0.249982,0,0);-ms-transform:matrix(0.275985,-0.003312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275985,-0.003312,0.003000,0.249982,0,0);}
.md0_c00298{transform:matrix(0.276445,-0.003317,0.003000,0.249982,0,0);-ms-transform:matrix(0.276445,-0.003317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276445,-0.003317,0.003000,0.249982,0,0);}
.me1_c00298{transform:matrix(0.315132,-0.003782,0.003000,0.249982,0,0);-ms-transform:matrix(0.315132,-0.003782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.315132,-0.003782,0.003000,0.249982,0,0);}
.m6e_c00298{transform:matrix(0.344110,-0.004129,0.003000,0.249982,0,0);-ms-transform:matrix(0.344110,-0.004129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.344110,-0.004129,0.003000,0.249982,0,0);}
.m60_c00298{transform:matrix(0.361279,-0.004335,0.003000,0.249982,0,0);-ms-transform:matrix(0.361279,-0.004335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.361279,-0.004335,0.003000,0.249982,0,0);}
.m5d_c00298{transform:matrix(0.364619,-0.004375,0.003000,0.249982,0,0);-ms-transform:matrix(0.364619,-0.004375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.364619,-0.004375,0.003000,0.249982,0,0);}
.m78_c00298{transform:matrix(0.395477,-0.004746,0.003000,0.249982,0,0);-ms-transform:matrix(0.395477,-0.004746,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395477,-0.004746,0.003000,0.249982,0,0);}
.mcb_c00298{transform:matrix(0.400591,-0.004807,0.003000,0.249982,0,0);-ms-transform:matrix(0.400591,-0.004807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.400591,-0.004807,0.003000,0.249982,0,0);}
.mea_c00298{transform:matrix(0.401191,-0.004814,0.003000,0.249982,0,0);-ms-transform:matrix(0.401191,-0.004814,0.003000,0.249982,0,0);-webkit-transform:matrix(0.401191,-0.004814,0.003000,0.249982,0,0);}
.md1_c00298{transform:matrix(0.423859,-0.005086,0.003000,0.249982,0,0);-ms-transform:matrix(0.423859,-0.005086,0.003000,0.249982,0,0);-webkit-transform:matrix(0.423859,-0.005086,0.003000,0.249982,0,0);}
.meb_c00298{transform:matrix(0.424599,-0.005095,0.003000,0.249982,0,0);-ms-transform:matrix(0.424599,-0.005095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.424599,-0.005095,0.003000,0.249982,0,0);}
.md2_c00298{transform:matrix(0.434494,-0.005214,0.003000,0.249982,0,0);-ms-transform:matrix(0.434494,-0.005214,0.003000,0.249982,0,0);-webkit-transform:matrix(0.434494,-0.005214,0.003000,0.249982,0,0);}
.md9_c00298{transform:matrix(0.452402,-0.005429,0.003000,0.249982,0,0);-ms-transform:matrix(0.452402,-0.005429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.452402,-0.005429,0.003000,0.249982,0,0);}
.md5_c00298{transform:matrix(0.549180,-0.006590,0.003000,0.249982,0,0);-ms-transform:matrix(0.549180,-0.006590,0.003000,0.249982,0,0);-webkit-transform:matrix(0.549180,-0.006590,0.003000,0.249982,0,0);}
.m63_c00298{transform:matrix(0.728138,-0.008738,0.003000,0.249982,0,0);-ms-transform:matrix(0.728138,-0.008738,0.003000,0.249982,0,0);-webkit-transform:matrix(0.728138,-0.008738,0.003000,0.249982,0,0);}
.m68_c00298{transform:matrix(0.938722,-0.011265,0.003000,0.249982,0,0);-ms-transform:matrix(0.938722,-0.011265,0.003000,0.249982,0,0);-webkit-transform:matrix(0.938722,-0.011265,0.003000,0.249982,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:0.000000px;}
.fc0_c00298{color:transparent;}
.fsc_c00298{font-size:51.453704px;}
.fse_c00298{font-size:54.603931px;}
.fsd_c00298{font-size:57.754158px;}
.fs5_c00298{font-size:58.804233px;}
.fs7_c00298{font-size:59.854309px;}
.fsa_c00298{font-size:60.904385px;}
.fsb_c00298{font-size:61.954460px;}
.fs8_c00298{font-size:63.004536px;}
.fs9_c00298{font-size:64.054611px;}
.fs6_c00298{font-size:65.104687px;}
.fs4_c00298{font-size:66.154763px;}
.fs3_c00298{font-size:67.204838px;}
.fs1_c00298{font-size:68.254914px;}
.fs2_c00298{font-size:69.304989px;}
.fs0_c00298{font-size:82.950000px;}
.y0_c00298{bottom:0.000000px;}
.yfb_c00298{bottom:38.594712px;}
.yfa_c00298{bottom:39.076476px;}
.yf9_c00298{bottom:40.036434px;}
.yf8_c00298{bottom:40.707228px;}
.yf7_c00298{bottom:41.465610px;}
.yf6_c00298{bottom:41.841366px;}
.yf5_c00298{bottom:42.367986px;}
.yed_c00298{bottom:55.055886px;}
.yee_c00298{bottom:55.056528px;}
.yef_c00298{bottom:55.056852px;}
.yf0_c00298{bottom:55.057440px;}
.yf3_c00298{bottom:55.057530px;}
.yf1_c00298{bottom:55.057602px;}
.yf4_c00298{bottom:55.057932px;}
.yf2_c00298{bottom:55.058004px;}
.ye4_c00298{bottom:71.220246px;}
.ye5_c00298{bottom:71.220810px;}
.yec_c00298{bottom:71.220852px;}
.ye6_c00298{bottom:71.220972px;}
.ye7_c00298{bottom:71.221554px;}
.yeb_c00298{bottom:71.221590px;}
.yea_c00298{bottom:71.221944px;}
.ye8_c00298{bottom:71.222016px;}
.ye9_c00298{bottom:71.222322px;}
.ye3_c00298{bottom:88.785972px;}
.ye2_c00298{bottom:88.786590px;}
.ye1_c00298{bottom:88.787184px;}
.ye0_c00298{bottom:88.787460px;}
.ydf_c00298{bottom:88.787598px;}
.yde_c00298{bottom:88.787892px;}
.ydd_c00298{bottom:88.788390px;}
.ydc_c00298{bottom:88.788666px;}
.yd4_c00298{bottom:105.011754px;}
.yd5_c00298{bottom:105.232908px;}
.yd6_c00298{bottom:105.407208px;}
.yd7_c00298{bottom:105.693630px;}
.yd8_c00298{bottom:105.871398px;}
.yd9_c00298{bottom:106.664850px;}
.yda_c00298{bottom:107.027352px;}
.ydb_c00298{bottom:107.728644px;}
.ycd_c00298{bottom:116.631780px;}
.yce_c00298{bottom:117.519816px;}
.ycf_c00298{bottom:119.223012px;}
.yd0_c00298{bottom:120.013554px;}
.yd1_c00298{bottom:120.398646px;}
.yd2_c00298{bottom:122.198490px;}
.yd3_c00298{bottom:122.819688px;}
.yc5_c00298{bottom:139.606530px;}
.yc8_c00298{bottom:139.606818px;}
.ycc_c00298{bottom:139.606956px;}
.yca_c00298{bottom:139.606986px;}
.yc6_c00298{bottom:139.606992px;}
.yc9_c00298{bottom:139.607004px;}
.yc7_c00298{bottom:139.607016px;}
.ycb_c00298{bottom:139.607634px;}
.yc4_c00298{bottom:157.515366px;}
.ybf_c00298{bottom:157.515708px;}
.yc3_c00298{bottom:157.515960px;}
.ybe_c00298{bottom:157.515966px;}
.yc0_c00298{bottom:157.516314px;}
.ybd_c00298{bottom:157.516404px;}
.yc2_c00298{bottom:157.516458px;}
.yc1_c00298{bottom:157.516476px;}
.yb6_c00298{bottom:174.999684px;}
.yb7_c00298{bottom:175.000308px;}
.yb8_c00298{bottom:175.000512px;}
.ybc_c00298{bottom:175.000608px;}
.yba_c00298{bottom:175.000800px;}
.yb9_c00298{bottom:175.000854px;}
.ybb_c00298{bottom:175.001022px;}
.yaf_c00298{bottom:188.719038px;}
.yb0_c00298{bottom:188.875182px;}
.yb1_c00298{bottom:189.718716px;}
.yb2_c00298{bottom:190.170624px;}
.yb3_c00298{bottom:190.945674px;}
.yb4_c00298{bottom:191.379750px;}
.yb5_c00298{bottom:191.676516px;}
.ya6_c00298{bottom:207.475104px;}
.ya7_c00298{bottom:207.475188px;}
.ya8_c00298{bottom:207.475770px;}
.ya9_c00298{bottom:207.476352px;}
.yac_c00298{bottom:207.476544px;}
.yab_c00298{bottom:207.476658px;}
.yad_c00298{bottom:207.476766px;}
.yaa_c00298{bottom:207.476976px;}
.yae_c00298{bottom:207.477450px;}
.y9f_c00298{bottom:223.009458px;}
.ya0_c00298{bottom:223.958592px;}
.ya1_c00298{bottom:224.201052px;}
.ya2_c00298{bottom:224.516046px;}
.ya3_c00298{bottom:224.789364px;}
.ya4_c00298{bottom:225.701634px;}
.ya5_c00298{bottom:225.989748px;}
.y98_c00298{bottom:240.291252px;}
.y99_c00298{bottom:241.012554px;}
.y9a_c00298{bottom:241.493502px;}
.y9b_c00298{bottom:242.043834px;}
.y9c_c00298{bottom:242.830344px;}
.y9d_c00298{bottom:242.996352px;}
.y9e_c00298{bottom:243.272802px;}
.y90_c00298{bottom:257.302488px;}
.y91_c00298{bottom:257.856132px;}
.y92_c00298{bottom:258.027456px;}
.y93_c00298{bottom:258.494016px;}
.y94_c00298{bottom:258.757248px;}
.y95_c00298{bottom:259.343652px;}
.y96_c00298{bottom:260.341572px;}
.y97_c00298{bottom:260.581152px;}
.y8b_c00298{bottom:276.941088px;}
.y8c_c00298{bottom:276.941310px;}
.y8a_c00298{bottom:276.941346px;}
.y87_c00298{bottom:276.941418px;}
.y86_c00298{bottom:276.941436px;}
.y89_c00298{bottom:276.941664px;}
.y8f_c00298{bottom:276.941760px;}
.y8e_c00298{bottom:276.941796px;}
.y8d_c00298{bottom:276.941994px;}
.y88_c00298{bottom:276.942000px;}
.y7d_c00298{bottom:294.685230px;}
.y7e_c00298{bottom:294.685572px;}
.y83_c00298{bottom:294.686028px;}
.y7f_c00298{bottom:294.686094px;}
.y82_c00298{bottom:294.686106px;}
.y81_c00298{bottom:294.686244px;}
.y80_c00298{bottom:294.686580px;}
.y84_c00298{bottom:294.686754px;}
.y85_c00298{bottom:294.687276px;}
.y77_c00298{bottom:311.955018px;}
.y78_c00298{bottom:311.955066px;}
.y76_c00298{bottom:311.955096px;}
.y79_c00298{bottom:311.955372px;}
.y75_c00298{bottom:311.955414px;}
.y7a_c00298{bottom:311.955534px;}
.y7b_c00298{bottom:311.955558px;}
.y7c_c00298{bottom:311.955720px;}
.y6e_c00298{bottom:326.965266px;}
.y6f_c00298{bottom:327.322332px;}
.y70_c00298{bottom:327.535614px;}
.y71_c00298{bottom:328.655790px;}
.y72_c00298{bottom:328.873662px;}
.y73_c00298{bottom:329.760936px;}
.y74_c00298{bottom:330.069492px;}
.y67_c00298{bottom:340.207344px;}
.y68_c00298{bottom:340.778826px;}
.y69_c00298{bottom:343.779888px;}
.y6a_c00298{bottom:344.261148px;}
.y6b_c00298{bottom:346.517820px;}
.y6c_c00298{bottom:346.824258px;}
.y6d_c00298{bottom:347.127666px;}
.y61_c00298{bottom:357.748392px;}
.y62_c00298{bottom:358.206126px;}
.y63_c00298{bottom:359.028168px;}
.y64_c00298{bottom:359.971134px;}
.y65_c00298{bottom:360.954498px;}
.y66_c00298{bottom:361.341126px;}
.y59_c00298{bottom:374.218980px;}
.y5a_c00298{bottom:374.526582px;}
.y5b_c00298{bottom:375.731352px;}
.y5c_c00298{bottom:376.022538px;}
.y5d_c00298{bottom:377.404404px;}
.y5e_c00298{bottom:377.688708px;}
.y5f_c00298{bottom:378.019668px;}
.y60_c00298{bottom:378.956628px;}
.y51_c00298{bottom:391.230498px;}
.y52_c00298{bottom:391.760298px;}
.y53_c00298{bottom:392.197866px;}
.y54_c00298{bottom:392.569524px;}
.y55_c00298{bottom:393.777378px;}
.y56_c00298{bottom:394.309812px;}
.y57_c00298{bottom:394.910838px;}
.y58_c00298{bottom:395.443020px;}
.y48_c00298{bottom:408.240408px;}
.y49_c00298{bottom:408.676482px;}
.y4a_c00298{bottom:408.884376px;}
.y4b_c00298{bottom:409.239510px;}
.y4c_c00298{bottom:409.879566px;}
.y4d_c00298{bottom:410.245602px;}
.y4e_c00298{bottom:410.690430px;}
.y4f_c00298{bottom:411.831816px;}
.y50_c00298{bottom:412.574664px;}
.y42_c00298{bottom:425.520108px;}
.y43_c00298{bottom:426.143658px;}
.y44_c00298{bottom:426.403446px;}
.y45_c00298{bottom:426.642930px;}
.y46_c00298{bottom:428.328306px;}
.y47_c00298{bottom:429.400722px;}
.y3b_c00298{bottom:442.530192px;}
.y3c_c00298{bottom:443.119008px;}
.y3d_c00298{bottom:443.523954px;}
.y3e_c00298{bottom:444.018420px;}
.y3f_c00298{bottom:444.657726px;}
.y40_c00298{bottom:445.862118px;}
.y41_c00298{bottom:446.160126px;}
.y34_c00298{bottom:459.811506px;}
.y35_c00298{bottom:460.457916px;}
.y36_c00298{bottom:460.961202px;}
.y37_c00298{bottom:461.401854px;}
.y38_c00298{bottom:461.670738px;}
.y39_c00298{bottom:462.785526px;}
.y3a_c00298{bottom:463.461696px;}
.y2b_c00298{bottom:476.553786px;}
.y2c_c00298{bottom:477.521610px;}
.y2d_c00298{bottom:478.060674px;}
.y2e_c00298{bottom:478.343916px;}
.y2f_c00298{bottom:478.778244px;}
.y30_c00298{bottom:479.706222px;}
.y31_c00298{bottom:480.326424px;}
.y32_c00298{bottom:480.497184px;}
.y33_c00298{bottom:480.849672px;}
.y22_c00298{bottom:494.355354px;}
.y23_c00298{bottom:494.841144px;}
.y24_c00298{bottom:495.279948px;}
.y25_c00298{bottom:495.674790px;}
.y26_c00298{bottom:496.343586px;}
.y27_c00298{bottom:496.575288px;}
.y28_c00298{bottom:497.554038px;}
.y29_c00298{bottom:497.886726px;}
.y2a_c00298{bottom:498.306834px;}
.y1b_c00298{bottom:510.571488px;}
.y1c_c00298{bottom:510.792582px;}
.y1d_c00298{bottom:511.695390px;}
.y1e_c00298{bottom:511.936386px;}
.y1f_c00298{bottom:512.433666px;}
.y20_c00298{bottom:513.214344px;}
.y21_c00298{bottom:514.390272px;}
.y12_c00298{bottom:526.233876px;}
.y13_c00298{bottom:526.815522px;}
.y14_c00298{bottom:527.181282px;}
.y15_c00298{bottom:528.175338px;}
.y16_c00298{bottom:528.983280px;}
.y17_c00298{bottom:529.431342px;}
.y18_c00298{bottom:530.523822px;}
.y19_c00298{bottom:531.565974px;}
.y1a_c00298{bottom:531.812916px;}
.ya_c00298{bottom:545.129676px;}
.yb_c00298{bottom:545.875596px;}
.yc_c00298{bottom:546.099048px;}
.yd_c00298{bottom:546.500754px;}
.ye_c00298{bottom:546.567822px;}
.yf_c00298{bottom:546.833400px;}
.y10_c00298{bottom:547.478922px;}
.y11_c00298{bottom:547.659930px;}
.y2_c00298{bottom:561.601500px;}
.y3_c00298{bottom:562.236810px;}
.y4_c00298{bottom:562.479756px;}
.y5_c00298{bottom:562.661268px;}
.y6_c00298{bottom:563.127990px;}
.y7_c00298{bottom:563.973612px;}
.y8_c00298{bottom:564.200520px;}
.y9_c00298{bottom:564.779976px;}
.y1_c00298{bottom:575.902500px;}
.he_c00298{height:51.453704px;}
.h10_c00298{height:54.603931px;}
.hf_c00298{height:57.754158px;}
.h7_c00298{height:58.804233px;}
.h9_c00298{height:59.854309px;}
.hc_c00298{height:60.904385px;}
.hd_c00298{height:61.954460px;}
.ha_c00298{height:63.004536px;}
.hb_c00298{height:64.054611px;}
.h8_c00298{height:65.104687px;}
.h6_c00298{height:66.154763px;}
.h5_c00298{height:67.204838px;}
.h3_c00298{height:68.254914px;}
.h4_c00298{height:69.304989px;}
.h2_c00298{height:82.950000px;}
.h1_c00298{height:618.750000px;}
.h0_c00298{height:619.050000px;}
.w0_c00298{width:359.100000px;}
.w1_c00298{width:359.250000px;}
.x0_c00298{left:0.000000px;}
.x38_c00298{left:19.350438px;}
.x3_c00298{left:21.459000px;}
.x2e_c00298{left:23.681124px;}
.x26_c00298{left:25.295478px;}
.xa_c00298{left:26.880414px;}
.x4d_c00298{left:28.021830px;}
.x3b_c00298{left:29.084166px;}
.x5b_c00298{left:31.328850px;}
.x48_c00298{left:32.873910px;}
.x19_c00298{left:35.822340px;}
.x58_c00298{left:42.670584px;}
.x51_c00298{left:45.722484px;}
.x1a_c00298{left:47.495868px;}
.x12_c00298{left:48.923826px;}
.x49_c00298{left:51.006330px;}
.x70_c00298{left:52.392282px;}
.x55_c00298{left:55.092168px;}
.x3c_c00298{left:56.297352px;}
.x5c_c00298{left:58.331238px;}
.x1f_c00298{left:61.652796px;}
.x77_c00298{left:62.920410px;}
.x13_c00298{left:65.526828px;}
.x2f_c00298{left:66.797076px;}
.x3d_c00298{left:69.246222px;}
.x4_c00298{left:74.401500px;}
.x67_c00298{left:75.613194px;}
.x56_c00298{left:76.963818px;}
.x39_c00298{left:78.209814px;}
.x5d_c00298{left:82.633230px;}
.x78_c00298{left:86.683110px;}
.x60_c00298{left:88.399002px;}
.x27_c00298{left:89.820156px;}
.x3e_c00298{left:91.464660px;}
.x20_c00298{left:92.969040px;}
.x5_c00298{left:94.647000px;}
.x34_c00298{left:98.716350px;}
.x30_c00298{left:100.361370px;}
.xb_c00298{left:101.417196px;}
.x1b_c00298{left:107.682810px;}
.x6_c00298{left:109.773000px;}
.x6e_c00298{left:110.986434px;}
.x44_c00298{left:112.252164px;}
.x4e_c00298{left:119.417634px;}
.x21_c00298{left:121.121856px;}
.xc_c00298{left:123.788736px;}
.x28_c00298{left:125.740860px;}
.x61_c00298{left:127.279002px;}
.x31_c00298{left:129.706308px;}
.x3f_c00298{left:131.425734px;}
.x1c_c00298{left:133.870614px;}
.x71_c00298{left:135.558252px;}
.x35_c00298{left:136.796400px;}
.x4a_c00298{left:139.039056px;}
.x7b_c00298{left:140.369952px;}
.x64_c00298{left:141.570516px;}
.x29_c00298{left:144.593676px;}
.x5e_c00298{left:146.087874px;}
.x14_c00298{left:147.433500px;}
.x7_c00298{left:148.666500px;}
.x72_c00298{left:150.948966px;}
.x40_c00298{left:154.302636px;}
.x1_c00298{left:158.220000px;}
.x6a_c00298{left:159.987474px;}
.xd_c00298{left:164.015208px;}
.x52_c00298{left:165.792264px;}
.x15_c00298{left:167.769552px;}
.x22_c00298{left:168.853704px;}
.xe_c00298{left:170.729370px;}
.x2a_c00298{left:173.536632px;}
.x1d_c00298{left:174.923658px;}
.x68_c00298{left:177.951918px;}
.x41_c00298{left:182.120304px;}
.x23_c00298{left:185.411808px;}
.x4f_c00298{left:186.746514px;}
.x45_c00298{left:187.778046px;}
.x6f_c00298{left:189.021666px;}
.x73_c00298{left:190.122456px;}
.x75_c00298{left:192.054516px;}
.x65_c00298{left:195.097164px;}
.xf_c00298{left:197.236500px;}
.x79_c00298{left:203.062350px;}
.x3a_c00298{left:206.485188px;}
.x59_c00298{left:208.732488px;}
.x16_c00298{left:217.428594px;}
.x8_c00298{left:219.135000px;}
.x4b_c00298{left:220.314678px;}
.x32_c00298{left:221.883978px;}
.x5f_c00298{left:227.903646px;}
.x6b_c00298{left:230.450820px;}
.x69_c00298{left:233.575428px;}
.x2b_c00298{left:235.365900px;}
.x1e_c00298{left:236.787456px;}
.x9_c00298{left:238.044000px;}
.x57_c00298{left:248.156460px;}
.x42_c00298{left:253.482384px;}
.x24_c00298{left:255.347634px;}
.x4c_c00298{left:256.459500px;}
.x46_c00298{left:258.604644px;}
.x53_c00298{left:259.853010px;}
.x10_c00298{left:261.781548px;}
.x17_c00298{left:264.768906px;}
.x33_c00298{left:266.979858px;}
.x5a_c00298{left:268.676610px;}
.x6c_c00298{left:269.874288px;}
.x63_c00298{left:273.889056px;}
.x18_c00298{left:275.971056px;}
.x36_c00298{left:278.561190px;}
.x11_c00298{left:279.865980px;}
.x62_c00298{left:281.242002px;}
.x7a_c00298{left:282.985302px;}
.x50_c00298{left:284.535156px;}
.x54_c00298{left:285.566010px;}
.x2_c00298{left:286.740000px;}
.x2c_c00298{left:288.027492px;}
.x47_c00298{left:291.826542px;}
.x74_c00298{left:295.362060px;}
.x6d_c00298{left:296.855112px;}
.x76_c00298{left:298.456572px;}
.x43_c00298{left:299.884152px;}
.x37_c00298{left:301.519920px;}
.x66_c00298{left:304.130460px;}
.x25_c00298{left:309.079338px;}
.x2d_c00298{left:311.525646px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.fsc_c00298{font-size:45.736626pt;}
.fse_c00298{font-size:48.536828pt;}
.fsd_c00298{font-size:51.337029pt;}
.fs5_c00298{font-size:52.270430pt;}
.fs7_c00298{font-size:53.203830pt;}
.fsa_c00298{font-size:54.137231pt;}
.fsb_c00298{font-size:55.070631pt;}
.fs8_c00298{font-size:56.004032pt;}
.fs9_c00298{font-size:56.937432pt;}
.fs6_c00298{font-size:57.870833pt;}
.fs4_c00298{font-size:58.804233pt;}
.fs3_c00298{font-size:59.737634pt;}
.fs1_c00298{font-size:60.671035pt;}
.fs2_c00298{font-size:61.604435pt;}
.fs0_c00298{font-size:73.733333pt;}
.y0_c00298{bottom:0.000000pt;}
.yfb_c00298{bottom:34.306411pt;}
.yfa_c00298{bottom:34.734645pt;}
.yf9_c00298{bottom:35.587941pt;}
.yf8_c00298{bottom:36.184203pt;}
.yf7_c00298{bottom:36.858320pt;}
.yf6_c00298{bottom:37.192325pt;}
.yf5_c00298{bottom:37.660432pt;}
.yed_c00298{bottom:48.938565pt;}
.yee_c00298{bottom:48.939136pt;}
.yef_c00298{bottom:48.939424pt;}
.yf0_c00298{bottom:48.939947pt;}
.yf3_c00298{bottom:48.940027pt;}
.yf1_c00298{bottom:48.940091pt;}
.yf4_c00298{bottom:48.940384pt;}
.yf2_c00298{bottom:48.940448pt;}
.ye4_c00298{bottom:63.306885pt;}
.ye5_c00298{bottom:63.307387pt;}
.yec_c00298{bottom:63.307424pt;}
.ye6_c00298{bottom:63.307531pt;}
.ye7_c00298{bottom:63.308048pt;}
.yeb_c00298{bottom:63.308080pt;}
.yea_c00298{bottom:63.308395pt;}
.ye8_c00298{bottom:63.308459pt;}
.ye9_c00298{bottom:63.308731pt;}
.ye3_c00298{bottom:78.920864pt;}
.ye2_c00298{bottom:78.921413pt;}
.ye1_c00298{bottom:78.921941pt;}
.ye0_c00298{bottom:78.922187pt;}
.ydf_c00298{bottom:78.922309pt;}
.yde_c00298{bottom:78.922571pt;}
.ydd_c00298{bottom:78.923013pt;}
.ydc_c00298{bottom:78.923259pt;}
.yd4_c00298{bottom:93.343781pt;}
.yd5_c00298{bottom:93.540363pt;}
.yd6_c00298{bottom:93.695296pt;}
.yd7_c00298{bottom:93.949893pt;}
.yd8_c00298{bottom:94.107909pt;}
.yd9_c00298{bottom:94.813200pt;}
.yda_c00298{bottom:95.135424pt;}
.ydb_c00298{bottom:95.758795pt;}
.ycd_c00298{bottom:103.672693pt;}
.yce_c00298{bottom:104.462059pt;}
.ycf_c00298{bottom:105.976011pt;}
.yd0_c00298{bottom:106.678715pt;}
.yd1_c00298{bottom:107.021019pt;}
.yd2_c00298{bottom:108.620880pt;}
.yd3_c00298{bottom:109.173056pt;}
.yc5_c00298{bottom:124.094693pt;}
.yc8_c00298{bottom:124.094949pt;}
.ycc_c00298{bottom:124.095072pt;}
.yca_c00298{bottom:124.095099pt;}
.yc6_c00298{bottom:124.095104pt;}
.yc9_c00298{bottom:124.095115pt;}
.yc7_c00298{bottom:124.095125pt;}
.ycb_c00298{bottom:124.095675pt;}
.yc4_c00298{bottom:140.013659pt;}
.ybf_c00298{bottom:140.013963pt;}
.yc3_c00298{bottom:140.014187pt;}
.ybe_c00298{bottom:140.014192pt;}
.yc0_c00298{bottom:140.014501pt;}
.ybd_c00298{bottom:140.014581pt;}
.yc2_c00298{bottom:140.014629pt;}
.yc1_c00298{bottom:140.014645pt;}
.yb6_c00298{bottom:155.555275pt;}
.yb7_c00298{bottom:155.555829pt;}
.yb8_c00298{bottom:155.556011pt;}
.ybc_c00298{bottom:155.556096pt;}
.yba_c00298{bottom:155.556267pt;}
.yb9_c00298{bottom:155.556315pt;}
.ybb_c00298{bottom:155.556464pt;}
.yaf_c00298{bottom:167.750256pt;}
.yb0_c00298{bottom:167.889051pt;}
.yb1_c00298{bottom:168.638859pt;}
.yb2_c00298{bottom:169.040555pt;}
.yb3_c00298{bottom:169.729488pt;}
.yb4_c00298{bottom:170.115333pt;}
.yb5_c00298{bottom:170.379125pt;}
.ya6_c00298{bottom:184.422315pt;}
.ya7_c00298{bottom:184.422389pt;}
.ya8_c00298{bottom:184.422907pt;}
.ya9_c00298{bottom:184.423424pt;}
.yac_c00298{bottom:184.423595pt;}
.yab_c00298{bottom:184.423696pt;}
.yad_c00298{bottom:184.423792pt;}
.yaa_c00298{bottom:184.423979pt;}
.yae_c00298{bottom:184.424400pt;}
.y9f_c00298{bottom:198.230629pt;}
.ya0_c00298{bottom:199.074304pt;}
.ya1_c00298{bottom:199.289824pt;}
.ya2_c00298{bottom:199.569819pt;}
.ya3_c00298{bottom:199.812768pt;}
.ya4_c00298{bottom:200.623675pt;}
.ya5_c00298{bottom:200.879776pt;}
.y98_c00298{bottom:213.592224pt;}
.y99_c00298{bottom:214.233381pt;}
.y9a_c00298{bottom:214.660891pt;}
.y9b_c00298{bottom:215.150075pt;}
.y9c_c00298{bottom:215.849195pt;}
.y9d_c00298{bottom:215.996757pt;}
.y9e_c00298{bottom:216.242491pt;}
.y90_c00298{bottom:228.713323pt;}
.y91_c00298{bottom:229.205451pt;}
.y92_c00298{bottom:229.357739pt;}
.y93_c00298{bottom:229.772459pt;}
.y94_c00298{bottom:230.006443pt;}
.y95_c00298{bottom:230.527691pt;}
.y96_c00298{bottom:231.414731pt;}
.y97_c00298{bottom:231.627691pt;}
.y8b_c00298{bottom:246.169856pt;}
.y8c_c00298{bottom:246.170053pt;}
.y8a_c00298{bottom:246.170085pt;}
.y87_c00298{bottom:246.170149pt;}
.y86_c00298{bottom:246.170165pt;}
.y89_c00298{bottom:246.170368pt;}
.y8f_c00298{bottom:246.170453pt;}
.y8e_c00298{bottom:246.170485pt;}
.y8d_c00298{bottom:246.170661pt;}
.y88_c00298{bottom:246.170667pt;}
.y7d_c00298{bottom:261.942427pt;}
.y7e_c00298{bottom:261.942731pt;}
.y83_c00298{bottom:261.943136pt;}
.y7f_c00298{bottom:261.943195pt;}
.y82_c00298{bottom:261.943205pt;}
.y81_c00298{bottom:261.943328pt;}
.y80_c00298{bottom:261.943627pt;}
.y84_c00298{bottom:261.943781pt;}
.y85_c00298{bottom:261.944245pt;}
.y77_c00298{bottom:277.293349pt;}
.y78_c00298{bottom:277.293392pt;}
.y76_c00298{bottom:277.293419pt;}
.y79_c00298{bottom:277.293664pt;}
.y75_c00298{bottom:277.293701pt;}
.y7a_c00298{bottom:277.293808pt;}
.y7b_c00298{bottom:277.293829pt;}
.y7c_c00298{bottom:277.293973pt;}
.y6e_c00298{bottom:290.635792pt;}
.y6f_c00298{bottom:290.953184pt;}
.y70_c00298{bottom:291.142768pt;}
.y71_c00298{bottom:292.138480pt;}
.y72_c00298{bottom:292.332144pt;}
.y73_c00298{bottom:293.120832pt;}
.y74_c00298{bottom:293.395104pt;}
.y67_c00298{bottom:302.406528pt;}
.y68_c00298{bottom:302.914512pt;}
.y69_c00298{bottom:305.582123pt;}
.y6a_c00298{bottom:306.009909pt;}
.y6b_c00298{bottom:308.015840pt;}
.y6c_c00298{bottom:308.288229pt;}
.y6d_c00298{bottom:308.557925pt;}
.y61_c00298{bottom:317.998571pt;}
.y62_c00298{bottom:318.405445pt;}
.y63_c00298{bottom:319.136149pt;}
.y64_c00298{bottom:319.974341pt;}
.y65_c00298{bottom:320.848443pt;}
.y66_c00298{bottom:321.192112pt;}
.y59_c00298{bottom:332.639093pt;}
.y5a_c00298{bottom:332.912517pt;}
.y5b_c00298{bottom:333.983424pt;}
.y5c_c00298{bottom:334.242256pt;}
.y5d_c00298{bottom:335.470581pt;}
.y5e_c00298{bottom:335.723296pt;}
.y5f_c00298{bottom:336.017483pt;}
.y60_c00298{bottom:336.850336pt;}
.y51_c00298{bottom:347.760443pt;}
.y52_c00298{bottom:348.231376pt;}
.y53_c00298{bottom:348.620325pt;}
.y54_c00298{bottom:348.950688pt;}
.y55_c00298{bottom:350.024336pt;}
.y56_c00298{bottom:350.497611pt;}
.y57_c00298{bottom:351.031856pt;}
.y58_c00298{bottom:351.504907pt;}
.y48_c00298{bottom:362.880363pt;}
.y49_c00298{bottom:363.267984pt;}
.y4a_c00298{bottom:363.452779pt;}
.y4b_c00298{bottom:363.768453pt;}
.y4c_c00298{bottom:364.337392pt;}
.y4d_c00298{bottom:364.662757pt;}
.y4e_c00298{bottom:365.058160pt;}
.y4f_c00298{bottom:366.072725pt;}
.y50_c00298{bottom:366.733035pt;}
.y42_c00298{bottom:378.240096pt;}
.y43_c00298{bottom:378.794363pt;}
.y44_c00298{bottom:379.025285pt;}
.y45_c00298{bottom:379.238160pt;}
.y46_c00298{bottom:380.736272pt;}
.y47_c00298{bottom:381.689531pt;}
.y3b_c00298{bottom:393.360171pt;}
.y3c_c00298{bottom:393.883563pt;}
.y3d_c00298{bottom:394.243515pt;}
.y3e_c00298{bottom:394.683040pt;}
.y3f_c00298{bottom:395.251312pt;}
.y40_c00298{bottom:396.321883pt;}
.y41_c00298{bottom:396.586779pt;}
.y34_c00298{bottom:408.721339pt;}
.y35_c00298{bottom:409.295925pt;}
.y36_c00298{bottom:409.743291pt;}
.y37_c00298{bottom:410.134981pt;}
.y38_c00298{bottom:410.373989pt;}
.y39_c00298{bottom:411.364912pt;}
.y3a_c00298{bottom:411.965952pt;}
.y2b_c00298{bottom:423.603365pt;}
.y2c_c00298{bottom:424.463653pt;}
.y2d_c00298{bottom:424.942821pt;}
.y2e_c00298{bottom:425.194592pt;}
.y2f_c00298{bottom:425.580661pt;}
.y30_c00298{bottom:426.405531pt;}
.y31_c00298{bottom:426.956821pt;}
.y32_c00298{bottom:427.108608pt;}
.y33_c00298{bottom:427.421931pt;}
.y22_c00298{bottom:439.426981pt;}
.y23_c00298{bottom:439.858795pt;}
.y24_c00298{bottom:440.248843pt;}
.y25_c00298{bottom:440.599813pt;}
.y26_c00298{bottom:441.194299pt;}
.y27_c00298{bottom:441.400256pt;}
.y28_c00298{bottom:442.270256pt;}
.y29_c00298{bottom:442.565979pt;}
.y2a_c00298{bottom:442.939408pt;}
.y1b_c00298{bottom:453.841323pt;}
.y1c_c00298{bottom:454.037851pt;}
.y1d_c00298{bottom:454.840347pt;}
.y1e_c00298{bottom:455.054565pt;}
.y1f_c00298{bottom:455.496592pt;}
.y20_c00298{bottom:456.190528pt;}
.y21_c00298{bottom:457.235797pt;}
.y12_c00298{bottom:467.763445pt;}
.y13_c00298{bottom:468.280464pt;}
.y14_c00298{bottom:468.605584pt;}
.y15_c00298{bottom:469.489189pt;}
.y16_c00298{bottom:470.207360pt;}
.y17_c00298{bottom:470.605637pt;}
.y18_c00298{bottom:471.576731pt;}
.y19_c00298{bottom:472.503088pt;}
.y1a_c00298{bottom:472.722592pt;}
.ya_c00298{bottom:484.559712pt;}
.yb_c00298{bottom:485.222752pt;}
.yc_c00298{bottom:485.421376pt;}
.yd_c00298{bottom:485.778448pt;}
.ye_c00298{bottom:485.838064pt;}
.yf_c00298{bottom:486.074133pt;}
.y10_c00298{bottom:486.647931pt;}
.y11_c00298{bottom:486.808827pt;}
.y2_c00298{bottom:499.201333pt;}
.y3_c00298{bottom:499.766053pt;}
.y4_c00298{bottom:499.982005pt;}
.y5_c00298{bottom:500.143349pt;}
.y6_c00298{bottom:500.558213pt;}
.y7_c00298{bottom:501.309877pt;}
.y8_c00298{bottom:501.511573pt;}
.y9_c00298{bottom:502.026645pt;}
.y1_c00298{bottom:511.913333pt;}
.he_c00298{height:45.736626pt;}
.h10_c00298{height:48.536828pt;}
.hf_c00298{height:51.337029pt;}
.h7_c00298{height:52.270430pt;}
.h9_c00298{height:53.203830pt;}
.hc_c00298{height:54.137231pt;}
.hd_c00298{height:55.070631pt;}
.ha_c00298{height:56.004032pt;}
.hb_c00298{height:56.937432pt;}
.h8_c00298{height:57.870833pt;}
.h6_c00298{height:58.804233pt;}
.h5_c00298{height:59.737634pt;}
.h3_c00298{height:60.671035pt;}
.h4_c00298{height:61.604435pt;}
.h2_c00298{height:73.733333pt;}
.h1_c00298{height:550.000000pt;}
.h0_c00298{height:550.266667pt;}
.w0_c00298{width:319.200000pt;}
.w1_c00298{width:319.333333pt;}
.x0_c00298{left:0.000000pt;}
.x38_c00298{left:17.200389pt;}
.x3_c00298{left:19.074667pt;}
.x2e_c00298{left:21.049888pt;}
.x26_c00298{left:22.484869pt;}
.xa_c00298{left:23.893701pt;}
.x4d_c00298{left:24.908293pt;}
.x3b_c00298{left:25.852592pt;}
.x5b_c00298{left:27.847867pt;}
.x48_c00298{left:29.221253pt;}
.x19_c00298{left:31.842080pt;}
.x58_c00298{left:37.929408pt;}
.x51_c00298{left:40.642208pt;}
.x1a_c00298{left:42.218549pt;}
.x12_c00298{left:43.487845pt;}
.x49_c00298{left:45.338960pt;}
.x70_c00298{left:46.570917pt;}
.x55_c00298{left:48.970816pt;}
.x3c_c00298{left:50.042091pt;}
.x5c_c00298{left:51.849989pt;}
.x1f_c00298{left:54.802485pt;}
.x77_c00298{left:55.929253pt;}
.x13_c00298{left:58.246069pt;}
.x2f_c00298{left:59.375179pt;}
.x3d_c00298{left:61.552197pt;}
.x4_c00298{left:66.134667pt;}
.x67_c00298{left:67.211728pt;}
.x56_c00298{left:68.412283pt;}
.x39_c00298{left:69.519835pt;}
.x5d_c00298{left:73.451760pt;}
.x78_c00298{left:77.051653pt;}
.x60_c00298{left:78.576891pt;}
.x27_c00298{left:79.840139pt;}
.x3e_c00298{left:81.301920pt;}
.x20_c00298{left:82.639147pt;}
.x5_c00298{left:84.130667pt;}
.x34_c00298{left:87.747867pt;}
.x30_c00298{left:89.210107pt;}
.xb_c00298{left:90.148619pt;}
.x1b_c00298{left:95.718053pt;}
.x6_c00298{left:97.576000pt;}
.x6e_c00298{left:98.654608pt;}
.x44_c00298{left:99.779701pt;}
.x4e_c00298{left:106.149008pt;}
.x21_c00298{left:107.663872pt;}
.xc_c00298{left:110.034432pt;}
.x28_c00298{left:111.769653pt;}
.x61_c00298{left:113.136891pt;}
.x31_c00298{left:115.294496pt;}
.x3f_c00298{left:116.822875pt;}
.x1c_c00298{left:118.996101pt;}
.x71_c00298{left:120.496224pt;}
.x35_c00298{left:121.596800pt;}
.x4a_c00298{left:123.590272pt;}
.x7b_c00298{left:124.773291pt;}
.x64_c00298{left:125.840459pt;}
.x29_c00298{left:128.527712pt;}
.x5e_c00298{left:129.855888pt;}
.x14_c00298{left:131.052000pt;}
.x7_c00298{left:132.148000pt;}
.x72_c00298{left:134.176859pt;}
.x40_c00298{left:137.157899pt;}
.x1_c00298{left:140.640000pt;}
.x6a_c00298{left:142.211088pt;}
.xd_c00298{left:145.791296pt;}
.x52_c00298{left:147.370901pt;}
.x15_c00298{left:149.128491pt;}
.x22_c00298{left:150.092181pt;}
.xe_c00298{left:151.759440pt;}
.x2a_c00298{left:154.254784pt;}
.x1d_c00298{left:155.487696pt;}
.x68_c00298{left:158.179483pt;}
.x41_c00298{left:161.884715pt;}
.x23_c00298{left:164.810496pt;}
.x4f_c00298{left:165.996901pt;}
.x45_c00298{left:166.913819pt;}
.x6f_c00298{left:168.019259pt;}
.x73_c00298{left:168.997739pt;}
.x75_c00298{left:170.715125pt;}
.x65_c00298{left:173.419701pt;}
.xf_c00298{left:175.321333pt;}
.x79_c00298{left:180.499867pt;}
.x3a_c00298{left:183.542389pt;}
.x59_c00298{left:185.539989pt;}
.x16_c00298{left:193.269861pt;}
.x8_c00298{left:194.786667pt;}
.x4b_c00298{left:195.835269pt;}
.x32_c00298{left:197.230203pt;}
.x5f_c00298{left:202.581019pt;}
.x6b_c00298{left:204.845173pt;}
.x69_c00298{left:207.622603pt;}
.x2b_c00298{left:209.214133pt;}
.x1e_c00298{left:210.477739pt;}
.x9_c00298{left:211.594667pt;}
.x57_c00298{left:220.583520pt;}
.x42_c00298{left:225.317675pt;}
.x24_c00298{left:226.975675pt;}
.x4c_c00298{left:227.964000pt;}
.x46_c00298{left:229.870795pt;}
.x53_c00298{left:230.980453pt;}
.x10_c00298{left:232.694709pt;}
.x17_c00298{left:235.350139pt;}
.x33_c00298{left:237.315429pt;}
.x5a_c00298{left:238.823653pt;}
.x6c_c00298{left:239.888256pt;}
.x63_c00298{left:243.456939pt;}
.x18_c00298{left:245.307605pt;}
.x36_c00298{left:247.609947pt;}
.x11_c00298{left:248.769760pt;}
.x62_c00298{left:249.992891pt;}
.x7a_c00298{left:251.542491pt;}
.x50_c00298{left:252.920139pt;}
.x54_c00298{left:253.836453pt;}
.x2_c00298{left:254.880000pt;}
.x2c_c00298{left:256.024437pt;}
.x47_c00298{left:259.401371pt;}
.x74_c00298{left:262.544053pt;}
.x6d_c00298{left:263.871211pt;}
.x76_c00298{left:265.294731pt;}
.x43_c00298{left:266.563691pt;}
.x37_c00298{left:268.017707pt;}
.x66_c00298{left:270.338187pt;}
.x25_c00298{left:274.737189pt;}
.x2d_c00298{left:276.911685pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00299 {
    display:none;
  }
  .loading-indicator_c00299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00299 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00299 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00299" -> "#page-container .classname_c00299")
 */
.pf_c00299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00299 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00299 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00299 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00299 {overflow:visible;}
  }
}
.c_c00299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00299 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00299:after { /* webkit #35443 */
  content: '';
}
.t_c00299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00299 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00299 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00299 { /* info for Javascript */
  display:none;
}
.l_c00299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00299:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00299 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00299.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00299{transform:matrix(0.018630,0.000428,-0.005748,0.249934,0,0);-ms-transform:matrix(0.018630,0.000428,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.018630,0.000428,-0.005748,0.249934,0,0);}
.m4_c00299{transform:matrix(0.084048,0.001933,-0.005748,0.249934,0,0);-ms-transform:matrix(0.084048,0.001933,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.084048,0.001933,-0.005748,0.249934,0,0);}
.m33_c00299{transform:matrix(0.120753,0.002777,-0.005748,0.249934,0,0);-ms-transform:matrix(0.120753,0.002777,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.120753,0.002777,-0.005748,0.249934,0,0);}
.ma8_c00299{transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.129541,0.002979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.129541,0.002979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.129541,0.002979,-0.005748,0.249934,0,0);}
.m23_c00299{transform:matrix(0.146481,0.003369,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146481,0.003369,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146481,0.003369,-0.005748,0.249934,0,0);}
.m34_c00299{transform:matrix(0.147306,0.003388,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147306,0.003388,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147306,0.003388,-0.005748,0.249934,0,0);}
.m25_c00299{transform:matrix(0.147921,0.003402,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147921,0.003402,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147921,0.003402,-0.005748,0.249934,0,0);}
.m27_c00299{transform:matrix(0.148066,0.003406,-0.005748,0.249934,0,0);-ms-transform:matrix(0.148066,0.003406,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.148066,0.003406,-0.005748,0.249934,0,0);}
.mee_c00299{transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);}
.mb1_c00299{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.m76_c00299{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.mf7_c00299{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.155019,0.003565,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155019,0.003565,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155019,0.003565,-0.005748,0.249934,0,0);}
.m86_c00299{transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);}
.m7f_c00299{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00299{transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);}
.mf3_c00299{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{transform:matrix(0.158418,0.003644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158418,0.003644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158418,0.003644,-0.005748,0.249934,0,0);}
.m6d_c00299{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.160068,0.003682,-0.005748,0.249934,0,0);-ms-transform:matrix(0.160068,0.003682,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.160068,0.003682,-0.005748,0.249934,0,0);}
.m9a_c00299{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m80_c00299{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.m79_c00299{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m72_c00299{transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162710,0.000000,0.000000,0.250000,0,0);}
.m8d_c00299{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.mef_c00299{transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);}
.m7c_c00299{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.164771,0.003790,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164771,0.003790,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164771,0.003790,-0.005748,0.249934,0,0);}
.m1e_c00299{transform:matrix(0.166621,0.003832,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166621,0.003832,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166621,0.003832,-0.005748,0.249934,0,0);}
.md_c00299{transform:matrix(0.166776,0.003836,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166776,0.003836,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166776,0.003836,-0.005748,0.249934,0,0);}
.mcb_c00299{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.mad_c00299{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.mdf_c00299{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.meb_c00299{transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);}
.ma7_c00299{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m91_c00299{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.168905,0.003885,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168905,0.003885,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168905,0.003885,-0.005748,0.249934,0,0);}
.m9c_c00299{transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);}
.me1_c00299{transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);}
.mbc_c00299{transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.169365,0.003895,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169365,0.003895,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169365,0.003895,-0.005748,0.249934,0,0);}
.m7d_c00299{transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);}
.m55_c00299{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.171545,0.003946,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171545,0.003946,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171545,0.003946,-0.005748,0.249934,0,0);}
.mb5_c00299{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.172264,0.003962,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172264,0.003962,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172264,0.003962,-0.005748,0.249934,0,0);}
.m2c_c00299{transform:matrix(0.172304,0.003963,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172304,0.003963,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172304,0.003963,-0.005748,0.249934,0,0);}
.mf0_c00299{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.mf1_c00299{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.174399,0.004011,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174399,0.004011,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174399,0.004011,-0.005748,0.249934,0,0);}
.m8c_c00299{transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.175878,0.004045,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175878,0.004045,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175878,0.004045,-0.005748,0.249934,0,0);}
.me4_c00299{transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);}
.mfa_c00299{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.177378,0.004080,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177378,0.004080,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177378,0.004080,-0.005748,0.249934,0,0);}
.m73_c00299{transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);}
.m47_c00299{transform:matrix(0.177628,0.004085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177628,0.004085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177628,0.004085,-0.005748,0.249934,0,0);}
.mf9_c00299{transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);}
.m56_c00299{transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);}
.m7b_c00299{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.mda_c00299{transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.177948,0.004093,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177948,0.004093,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177948,0.004093,-0.005748,0.249934,0,0);}
.mf4_c00299{transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.179058,0.004118,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179058,0.004118,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179058,0.004118,-0.005748,0.249934,0,0);}
.m66_c00299{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m32_c00299{transform:matrix(0.179468,0.004128,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179468,0.004128,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179468,0.004128,-0.005748,0.249934,0,0);}
.m18_c00299{transform:matrix(0.180857,0.004160,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180857,0.004160,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180857,0.004160,-0.005748,0.249934,0,0);}
.m95_c00299{transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181120,0.000000,0.000000,0.250000,0,0);}
.ma9_c00299{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.mc3_c00299{transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);}
.mbb_c00299{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m53_c00299{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m57_c00299{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.mc8_c00299{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.me8_c00299{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.mc0_c00299{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.182397,0.004195,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182397,0.004195,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182397,0.004195,-0.005748,0.249934,0,0);}
.mb6_c00299{transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);}
.maa_c00299{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.mf5_c00299{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.182947,0.004208,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182947,0.004208,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182947,0.004208,-0.005748,0.249934,0,0);}
.m17_c00299{transform:matrix(0.183137,0.004212,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183137,0.004212,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183137,0.004212,-0.005748,0.249934,0,0);}
.m65_c00299{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.mba_c00299{transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);}
.m9e_c00299{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m96_c00299{transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183785,0.000000,0.000000,0.250000,0,0);}
.m5c_c00299{transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.183956,0.004231,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183956,0.004231,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183956,0.004231,-0.005748,0.249934,0,0);}
.m1a_c00299{transform:matrix(0.184056,0.004233,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184056,0.004233,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184056,0.004233,-0.005748,0.249934,0,0);}
.m5a_c00299{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.ma0_c00299{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.m7e_c00299{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m83_c00299{transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);}
.m78_c00299{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.mf2_c00299{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00299{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.186816,0.004297,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186816,0.004297,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186816,0.004297,-0.005748,0.249934,0,0);}
.m5f_c00299{transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m82_c00299{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.187955,0.004323,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187955,0.004323,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187955,0.004323,-0.005748,0.249934,0,0);}
.m36_c00299{transform:matrix(0.188745,0.004341,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188745,0.004341,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188745,0.004341,-0.005748,0.249934,0,0);}
.m89_c00299{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.mc7_c00299{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m8e_c00299{transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.189530,0.004359,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189530,0.004359,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189530,0.004359,-0.005748,0.249934,0,0);}
.m4b_c00299{transform:matrix(0.189640,0.004362,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189640,0.004362,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189640,0.004362,-0.005748,0.249934,0,0);}
.m90_c00299{transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);}
.md8_c00299{transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);}
.m6e_c00299{transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190660,0.000000,0.000000,0.250000,0,0);}
.m6f_c00299{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m87_c00299{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00299{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m77_c00299{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.mf8_c00299{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00299{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.192209,0.004421,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192209,0.004421,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192209,0.004421,-0.005748,0.249934,0,0);}
.m26_c00299{transform:matrix(0.192344,0.004424,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192344,0.004424,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192344,0.004424,-0.005748,0.249934,0,0);}
.m10_c00299{transform:matrix(0.192474,0.004427,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192474,0.004427,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192474,0.004427,-0.005748,0.249934,0,0);}
.m5b_c00299{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.me0_c00299{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m74_c00299{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.194034,0.004463,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194034,0.004463,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194034,0.004463,-0.005748,0.249934,0,0);}
.m40_c00299{transform:matrix(0.194374,0.004471,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194374,0.004471,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194374,0.004471,-0.005748,0.249934,0,0);}
.mbe_c00299{transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194570,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m67_c00299{transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);}
.mbf_c00299{transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195380,0.000000,0.000000,0.250000,0,0);}
.ma2_c00299{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.mc1_c00299{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{transform:matrix(0.195793,0.004503,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195793,0.004503,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195793,0.004503,-0.005748,0.249934,0,0);}
.md2_c00299{transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);}
.m30_c00299{transform:matrix(0.196928,0.004529,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196928,0.004529,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196928,0.004529,-0.005748,0.249934,0,0);}
.mfb_c00299{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m99_c00299{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.mb8_c00299{transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.197198,0.004536,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197198,0.004536,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197198,0.004536,-0.005748,0.249934,0,0);}
.m84_c00299{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m9f_c00299{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m70_c00299{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.m63_c00299{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.mdc_c00299{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00299{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00299{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mc9_c00299{transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);}
.md6_c00299{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.199567,0.004590,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199567,0.004590,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199567,0.004590,-0.005748,0.249934,0,0);}
.mdb_c00299{transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200457,0.004611,-0.005748,0.249934,0,0);}
.mb9_c00299{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.mcf_c00299{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m81_c00299{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m75_c00299{transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);}
.me2_c00299{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m68_c00299{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.201772,0.004641,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201772,0.004641,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201772,0.004641,-0.005748,0.249934,0,0);}
.ma6_c00299{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.mb2_c00299{transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);}
.m71_c00299{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m5e_c00299{transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00299{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.mdd_c00299{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.mab_c00299{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.mc2_c00299{transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);}
.me6_c00299{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.mec_c00299{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.m97_c00299{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mfc_c00299{transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205185,0.000000,0.000000,0.250000,0,0);}
.m69_c00299{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{transform:matrix(0.206150,0.004741,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206150,0.004741,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206150,0.004741,-0.005748,0.249934,0,0);}
.m19_c00299{transform:matrix(0.206300,0.004745,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206300,0.004745,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206300,0.004745,-0.005748,0.249934,0,0);}
.mc6_c00299{transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.206460,0.004749,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206460,0.004749,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206460,0.004749,-0.005748,0.249934,0,0);}
.ma1_c00299{transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);}
.m85_c00299{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.mce_c00299{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00299{transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);}
.mae_c00299{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.207985,0.004784,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207985,0.004784,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207985,0.004784,-0.005748,0.249934,0,0);}
.m6b_c00299{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m58_c00299{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m50_c00299{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.md3_c00299{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00299{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.209565,0.004820,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209565,0.004820,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209565,0.004820,-0.005748,0.249934,0,0);}
.mc5_c00299{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.210814,0.004849,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210814,0.004849,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210814,0.004849,-0.005748,0.249934,0,0);}
.mc4_c00299{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.m92_c00299{transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);}
.m94_c00299{transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.211774,0.004871,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211774,0.004871,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211774,0.004871,-0.005748,0.249934,0,0);}
.md9_c00299{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.m54_c00299{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m88_c00299{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.me9_c00299{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.mb4_c00299{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.mea_c00299{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.mcd_c00299{transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m98_c00299{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.md1_c00299{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.m49_c00299{transform:matrix(0.216088,0.004970,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216088,0.004970,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216088,0.004970,-0.005748,0.249934,0,0);}
.md7_c00299{transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);}
.me5_c00299{transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.217133,0.004994,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217133,0.004994,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217133,0.004994,-0.005748,0.249934,0,0);}
.m8a_c00299{transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);}
.m64_c00299{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.mbd_c00299{transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.219602,0.005051,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219602,0.005051,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219602,0.005051,-0.005748,0.249934,0,0);}
.md4_c00299{transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);}
.md0_c00299{transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);}
.mf6_c00299{transform:matrix(0.223785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223785,0.000000,0.000000,0.250000,0,0);}
.mde_c00299{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.224701,0.005168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224701,0.005168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224701,0.005168,-0.005748,0.249934,0,0);}
.m28_c00299{transform:matrix(0.225025,0.005176,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225025,0.005176,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225025,0.005176,-0.005748,0.249934,0,0);}
.m41_c00299{transform:matrix(0.225230,0.005180,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225230,0.005180,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225230,0.005180,-0.005748,0.249934,0,0);}
.m4c_c00299{transform:matrix(0.226430,0.005208,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226430,0.005208,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226430,0.005208,-0.005748,0.249934,0,0);}
.m7a_c00299{transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226570,0.000000,0.000000,0.250000,0,0);}
.m60_c00299{transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);}
.m5d_c00299{transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);}
.mca_c00299{transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229345,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);}
.med_c00299{transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);}
.m9d_c00299{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m62_c00299{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.me7_c00299{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.232598,0.005350,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232598,0.005350,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232598,0.005350,-0.005748,0.249934,0,0);}
.me3_c00299{transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233015,0.000000,0.000000,0.250000,0,0);}
.m2e_c00299{transform:matrix(0.235753,0.005422,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235753,0.005422,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235753,0.005422,-0.005748,0.249934,0,0);}
.m9_c00299{transform:matrix(0.236293,0.005435,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236293,0.005435,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236293,0.005435,-0.005748,0.249934,0,0);}
.ma3_c00299{transform:matrix(0.236570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236570,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);}
.m3d_c00299{transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);}
.m2b_c00299{transform:matrix(0.242471,0.005577,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242471,0.005577,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242471,0.005577,-0.005748,0.249934,0,0);}
.m44_c00299{transform:matrix(0.246575,0.005671,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246575,0.005671,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246575,0.005671,-0.005748,0.249934,0,0);}
.m1b_c00299{transform:matrix(0.247834,0.005700,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247834,0.005700,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247834,0.005700,-0.005748,0.249934,0,0);}
.maf_c00299{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m51_c00299{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.md5_c00299{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.m93_c00299{transform:matrix(0.255100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255100,0.000000,0.000000,0.250000,0,0);}
.mac_c00299{transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.265765,0.006113,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265765,0.006113,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265765,0.006113,-0.005748,0.249934,0,0);}
.ma4_c00299{transform:matrix(0.266125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266125,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.270643,0.006225,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270643,0.006225,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270643,0.006225,-0.005748,0.249934,0,0);}
.m15_c00299{transform:matrix(0.286119,0.006581,-0.005748,0.249934,0,0);-ms-transform:matrix(0.286119,0.006581,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.286119,0.006581,-0.005748,0.249934,0,0);}
.m3e_c00299{transform:matrix(0.296672,0.006823,-0.005748,0.249934,0,0);-ms-transform:matrix(0.296672,0.006823,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.296672,0.006823,-0.005748,0.249934,0,0);}
.m52_c00299{transform:matrix(0.335435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335435,0.000000,0.000000,0.250000,0,0);}
.mb0_c00299{transform:matrix(0.564210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564210,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.787497,0.018112,-0.005748,0.249934,0,0);-ms-transform:matrix(0.787497,0.018112,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.787497,0.018112,-0.005748,0.249934,0,0);}
.m1_c00299{transform:matrix(0.842912,0.019387,-0.005748,0.249934,0,0);-ms-transform:matrix(0.842912,0.019387,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.842912,0.019387,-0.005748,0.249934,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
.fc0_c00299{color:transparent;}
.fs8_c00299{font-size:58.800000px;}
.fs6_c00299{font-size:58.815551px;}
.fsf_c00299{font-size:59.850000px;}
.fs3_c00299{font-size:59.865828px;}
.fsd_c00299{font-size:60.900000px;}
.fs2_c00299{font-size:60.916106px;}
.fs9_c00299{font-size:61.950000px;}
.fs1_c00299{font-size:61.966384px;}
.fs5_c00299{font-size:63.016661px;}
.fse_c00299{font-size:64.050000px;}
.fs4_c00299{font-size:64.066939px;}
.fsc_c00299{font-size:65.100000px;}
.fsb_c00299{font-size:66.150000px;}
.fs7_c00299{font-size:67.200000px;}
.fsa_c00299{font-size:68.250000px;}
.fs10_c00299{font-size:69.300000px;}
.fs0_c00299{font-size:72.469160px;}
.y0_c00299{bottom:0.000000px;}
.y82_c00299{bottom:28.380000px;}
.y81_c00299{bottom:45.841500px;}
.y79_c00299{bottom:60.211500px;}
.y7a_c00299{bottom:60.729000px;}
.y7b_c00299{bottom:61.248000px;}
.y7c_c00299{bottom:61.407000px;}
.y7d_c00299{bottom:62.059500px;}
.y7e_c00299{bottom:62.340000px;}
.y7f_c00299{bottom:62.518500px;}
.y80_c00299{bottom:63.096000px;}
.y78_c00299{bottom:79.383000px;}
.y72_c00299{bottom:95.311500px;}
.y73_c00299{bottom:96.096000px;}
.y74_c00299{bottom:96.688500px;}
.y75_c00299{bottom:97.672500px;}
.y76_c00299{bottom:98.850000px;}
.y77_c00299{bottom:99.333000px;}
.y6d_c00299{bottom:112.050000px;}
.y6e_c00299{bottom:112.345500px;}
.y6f_c00299{bottom:113.158500px;}
.y70_c00299{bottom:113.865000px;}
.y71_c00299{bottom:114.784500px;}
.y6c_c00299{bottom:130.201500px;}
.y64_c00299{bottom:144.720000px;}
.y65_c00299{bottom:144.990000px;}
.y66_c00299{bottom:145.468500px;}
.y67_c00299{bottom:146.101500px;}
.y68_c00299{bottom:146.296500px;}
.y69_c00299{bottom:146.817000px;}
.y6a_c00299{bottom:147.087000px;}
.y6b_c00299{bottom:147.468000px;}
.y63_c00299{bottom:164.490000px;}
.y62_c00299{bottom:181.890000px;}
.y61_c00299{bottom:199.680000px;}
.y60_c00299{bottom:216.507000px;}
.y5f_c00299{bottom:234.052500px;}
.y5e_c00299{bottom:250.830000px;}
.y5d_c00299{bottom:267.601500px;}
.y55_c00299{bottom:282.421500px;}
.y56_c00299{bottom:283.069500px;}
.y57_c00299{bottom:283.785000px;}
.y58_c00299{bottom:283.920000px;}
.y59_c00299{bottom:284.082000px;}
.y5a_c00299{bottom:284.281500px;}
.y5b_c00299{bottom:284.746500px;}
.y5c_c00299{bottom:284.949000px;}
.y54_c00299{bottom:301.000500px;}
.y53_c00299{bottom:317.730000px;}
.y52_c00299{bottom:335.013000px;}
.y51_c00299{bottom:351.690000px;}
.y50_c00299{bottom:369.277500px;}
.y4f_c00299{bottom:385.780500px;}
.y4e_c00299{bottom:403.225500px;}
.y4c_c00299{bottom:420.706042px;}
.y4d_c00299{bottom:420.706129px;}
.y4b_c00299{bottom:420.706205px;}
.y4a_c00299{bottom:420.706889px;}
.y49_c00299{bottom:420.707113px;}
.y48_c00299{bottom:420.707340px;}
.y47_c00299{bottom:420.707828px;}
.y46_c00299{bottom:420.708083px;}
.y45_c00299{bottom:435.948454px;}
.y44_c00299{bottom:436.518723px;}
.y43_c00299{bottom:436.783206px;}
.y42_c00299{bottom:437.465868px;}
.y41_c00299{bottom:438.033805px;}
.y40_c00299{bottom:438.283532px;}
.y3f_c00299{bottom:438.545840px;}
.y3e_c00299{bottom:438.985212px;}
.y3d_c00299{bottom:451.774826px;}
.y3c_c00299{bottom:452.153550px;}
.y3b_c00299{bottom:453.105192px;}
.y3a_c00299{bottom:454.185089px;}
.y39_c00299{bottom:454.763682px;}
.y38_c00299{bottom:456.003801px;}
.y37_c00299{bottom:471.185376px;}
.y35_c00299{bottom:471.185724px;}
.y33_c00299{bottom:471.185767px;}
.y34_c00299{bottom:471.185886px;}
.y36_c00299{bottom:471.185917px;}
.y31_c00299{bottom:471.185946px;}
.y32_c00299{bottom:471.185994px;}
.y30_c00299{bottom:471.186171px;}
.y28_c00299{bottom:488.047907px;}
.y2a_c00299{bottom:488.048292px;}
.y29_c00299{bottom:488.048585px;}
.y2b_c00299{bottom:488.048751px;}
.y2c_c00299{bottom:488.048963px;}
.y2f_c00299{bottom:488.049601px;}
.y2d_c00299{bottom:488.049654px;}
.y2e_c00299{bottom:488.050058px;}
.y21_c00299{bottom:505.357811px;}
.y20_c00299{bottom:505.358161px;}
.y25_c00299{bottom:505.358241px;}
.y22_c00299{bottom:505.358331px;}
.y26_c00299{bottom:505.358769px;}
.y24_c00299{bottom:505.358801px;}
.y27_c00299{bottom:505.358817px;}
.y1f_c00299{bottom:505.358829px;}
.y23_c00299{bottom:505.359087px;}
.y1e_c00299{bottom:521.477397px;}
.y1d_c00299{bottom:521.881948px;}
.y1c_c00299{bottom:522.219646px;}
.y1b_c00299{bottom:522.359911px;}
.y1a_c00299{bottom:522.708259px;}
.y19_c00299{bottom:522.976084px;}
.y18_c00299{bottom:523.245015px;}
.y17_c00299{bottom:523.925832px;}
.y16_c00299{bottom:524.057829px;}
.y15_c00299{bottom:538.165416px;}
.y14_c00299{bottom:538.165462px;}
.y13_c00299{bottom:538.165563px;}
.y12_c00299{bottom:538.165725px;}
.yf_c00299{bottom:538.165893px;}
.ye_c00299{bottom:538.165938px;}
.y11_c00299{bottom:538.166019px;}
.y10_c00299{bottom:538.166275px;}
.yc_c00299{bottom:557.393943px;}
.yb_c00299{bottom:557.394191px;}
.ya_c00299{bottom:557.394352px;}
.yd_c00299{bottom:557.394426px;}
.y8_c00299{bottom:557.394430px;}
.y9_c00299{bottom:557.394663px;}
.y7_c00299{bottom:557.394802px;}
.y6_c00299{bottom:557.395020px;}
.y5_c00299{bottom:565.224081px;}
.y4_c00299{bottom:566.299550px;}
.y3_c00299{bottom:567.683724px;}
.y2_c00299{bottom:569.526542px;}
.y1_c00299{bottom:571.893000px;}
.ha_c00299{height:58.800000px;}
.h8_c00299{height:58.815551px;}
.h11_c00299{height:59.850000px;}
.h5_c00299{height:59.865828px;}
.hf_c00299{height:60.900000px;}
.h4_c00299{height:60.916106px;}
.hb_c00299{height:61.950000px;}
.h3_c00299{height:61.966384px;}
.h7_c00299{height:63.016661px;}
.h10_c00299{height:64.050000px;}
.h6_c00299{height:64.066939px;}
.he_c00299{height:65.100000px;}
.hd_c00299{height:66.150000px;}
.h9_c00299{height:67.200000px;}
.hc_c00299{height:68.250000px;}
.h12_c00299{height:69.300000px;}
.h2_c00299{height:72.469160px;}
.h1_c00299{height:618.750000px;}
.h0_c00299{height:619.050000px;}
.w0_c00299{width:359.100000px;}
.w1_c00299{width:359.250000px;}
.x0_c00299{left:0.000000px;}
.x7e_c00299{left:26.553000px;}
.x79_c00299{left:28.618500px;}
.x69_c00299{left:29.970000px;}
.x52_c00299{left:31.320000px;}
.x19_c00299{left:32.668769px;}
.x6_c00299{left:33.748539px;}
.x22_c00299{left:37.530898px;}
.x1_c00299{left:38.824500px;}
.x7a_c00299{left:42.658500px;}
.x87_c00299{left:43.738500px;}
.x13_c00299{left:46.341813px;}
.x7f_c00299{left:51.190500px;}
.x4a_c00299{left:52.920000px;}
.x74_c00299{left:54.442500px;}
.x56_c00299{left:55.890000px;}
.x41_c00299{left:56.970000px;}
.x23_c00299{left:58.055766px;}
.x7b_c00299{left:59.398500px;}
.x1a_c00299{left:60.756104px;}
.x7_c00299{left:63.186599px;}
.x6d_c00299{left:64.530000px;}
.x61_c00299{left:65.610000px;}
.x63_c00299{left:70.740000px;}
.x32_c00299{left:72.240305px;}
.x1b_c00299{left:74.800521px;}
.x4e_c00299{left:76.680000px;}
.x84_c00299{left:79.194000px;}
.x80_c00299{left:80.575500px;}
.x42_c00299{left:82.890000px;}
.x8_c00299{left:85.062156px;}
.x64_c00299{left:86.400000px;}
.xe_c00299{left:89.384919px;}
.x29_c00299{left:90.734909px;}
.x4f_c00299{left:93.150000px;}
.x33_c00299{left:96.042860px;}
.x75_c00299{left:97.912500px;}
.x2f_c00299{left:101.330999px;}
.x43_c00299{left:104.490000px;}
.x3c_c00299{left:109.080000px;}
.x2a_c00299{left:112.070190px;}
.x14_c00299{left:114.441168px;}
.x9_c00299{left:115.850940px;}
.x6a_c00299{left:116.910000px;}
.x34_c00299{left:118.711104px;}
.x81_c00299{left:120.063000px;}
.x57_c00299{left:126.630000px;}
.x1c_c00299{left:128.545449px;}
.x3d_c00299{left:129.870000px;}
.x2b_c00299{left:131.786109px;}
.xf_c00299{left:133.946483px;}
.x39_c00299{left:135.025427px;}
.x65_c00299{left:136.620000px;}
.x4b_c00299{left:139.050000px;}
.x2_c00299{left:141.714000px;}
.x5d_c00299{left:143.370000px;}
.x8b_c00299{left:144.448500px;}
.x71_c00299{left:146.610000px;}
.x58_c00299{left:152.010000px;}
.x24_c00299{left:153.120532px;}
.x82_c00299{left:154.167000px;}
.x76_c00299{left:155.400000px;}
.x6e_c00299{left:158.490000px;}
.x53_c00299{left:161.730000px;}
.x47_c00299{left:163.350000px;}
.x72_c00299{left:166.050000px;}
.x15_c00299{left:168.185745px;}
.x35_c00299{left:170.287818px;}
.x1d_c00299{left:172.296599px;}
.x6b_c00299{left:173.610000px;}
.x59_c00299{left:177.930000px;}
.x10_c00299{left:179.048322px;}
.xa_c00299{left:180.398561px;}
.x54_c00299{left:182.250000px;}
.x88_c00299{left:183.598500px;}
.x44_c00299{left:185.490000px;}
.x48_c00299{left:186.840000px;}
.x1e_c00299{left:188.230517px;}
.x25_c00299{left:191.740456px;}
.x30_c00299{left:193.471590px;}
.x7c_c00299{left:195.208500px;}
.x3e_c00299{left:197.370000px;}
.x11_c00299{left:200.653741px;}
.xb_c00299{left:202.003980px;}
.x2c_c00299{left:205.515594px;}
.x89_c00299{left:207.088500px;}
.x7d_c00299{left:208.168500px;}
.x5e_c00299{left:209.250000px;}
.x62_c00299{left:212.490000px;}
.x6f_c00299{left:213.570000px;}
.x16_c00299{left:217.031339px;}
.x77_c00299{left:220.453500px;}
.x3_c00299{left:221.836500px;}
.x66_c00299{left:223.830000px;}
.x5f_c00299{left:225.180000px;}
.x2d_c00299{left:227.121014px;}
.xc_c00299{left:229.551039px;}
.x45_c00299{left:231.120000px;}
.x36_c00299{left:232.398965px;}
.x26_c00299{left:233.602106px;}
.x85_c00299{left:240.376500px;}
.x1f_c00299{left:241.435134px;}
.x55_c00299{left:243.270000px;}
.x49_c00299{left:244.620000px;}
.x2e_c00299{left:246.296657px;}
.x73_c00299{left:249.210000px;}
.x17_c00299{left:250.767413px;}
.x27_c00299{left:252.507611px;}
.x67_c00299{left:253.800000px;}
.x37_c00299{left:256.426589px;}
.x86_c00299{left:258.238500px;}
.x50_c00299{left:260.550000px;}
.x6c_c00299{left:261.630000px;}
.x3a_c00299{left:262.769943px;}
.x5b_c00299{left:263.899500px;}
.x12_c00299{left:264.931224px;}
.x20_c00299{left:266.012140px;}
.x31_c00299{left:267.365577px;}
.x3f_c00299{left:268.650000px;}
.x4c_c00299{left:270.810000px;}
.x8a_c00299{left:273.508500px;}
.x51_c00299{left:275.130000px;}
.x78_c00299{left:279.603000px;}
.x4_c00299{left:282.018000px;}
.x5c_c00299{left:284.152500px;}
.x21_c00299{left:287.347422px;}
.x83_c00299{left:289.977000px;}
.x18_c00299{left:291.260022px;}
.x60_c00299{left:292.950000px;}
.x4d_c00299{left:294.030000px;}
.x3b_c00299{left:295.718366px;}
.x70_c00299{left:303.750000px;}
.x8c_c00299{left:306.988500px;}
.x38_c00299{left:308.300406px;}
.xd_c00299{left:310.572888px;}
.x46_c00299{left:313.470000px;}
.x5a_c00299{left:316.170000px;}
.x28_c00299{left:319.214870px;}
.x68_c00299{left:322.650000px;}
.x40_c00299{left:325.350000px;}
.x5_c00299{left:328.777500px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs8_c00299{font-size:52.266667pt;}
.fs6_c00299{font-size:52.280489pt;}
.fsf_c00299{font-size:53.200000pt;}
.fs3_c00299{font-size:53.214070pt;}
.fsd_c00299{font-size:54.133333pt;}
.fs2_c00299{font-size:54.147650pt;}
.fs9_c00299{font-size:55.066667pt;}
.fs1_c00299{font-size:55.081230pt;}
.fs5_c00299{font-size:56.014810pt;}
.fse_c00299{font-size:56.933333pt;}
.fs4_c00299{font-size:56.948390pt;}
.fsc_c00299{font-size:57.866667pt;}
.fsb_c00299{font-size:58.800000pt;}
.fs7_c00299{font-size:59.733333pt;}
.fsa_c00299{font-size:60.666667pt;}
.fs10_c00299{font-size:61.600000pt;}
.fs0_c00299{font-size:64.417032pt;}
.y0_c00299{bottom:0.000000pt;}
.y82_c00299{bottom:25.226667pt;}
.y81_c00299{bottom:40.748000pt;}
.y79_c00299{bottom:53.521333pt;}
.y7a_c00299{bottom:53.981333pt;}
.y7b_c00299{bottom:54.442667pt;}
.y7c_c00299{bottom:54.584000pt;}
.y7d_c00299{bottom:55.164000pt;}
.y7e_c00299{bottom:55.413333pt;}
.y7f_c00299{bottom:55.572000pt;}
.y80_c00299{bottom:56.085333pt;}
.y78_c00299{bottom:70.562667pt;}
.y72_c00299{bottom:84.721333pt;}
.y73_c00299{bottom:85.418667pt;}
.y74_c00299{bottom:85.945333pt;}
.y75_c00299{bottom:86.820000pt;}
.y76_c00299{bottom:87.866667pt;}
.y77_c00299{bottom:88.296000pt;}
.y6d_c00299{bottom:99.600000pt;}
.y6e_c00299{bottom:99.862667pt;}
.y6f_c00299{bottom:100.585333pt;}
.y70_c00299{bottom:101.213333pt;}
.y71_c00299{bottom:102.030667pt;}
.y6c_c00299{bottom:115.734667pt;}
.y64_c00299{bottom:128.640000pt;}
.y65_c00299{bottom:128.880000pt;}
.y66_c00299{bottom:129.305333pt;}
.y67_c00299{bottom:129.868000pt;}
.y68_c00299{bottom:130.041333pt;}
.y69_c00299{bottom:130.504000pt;}
.y6a_c00299{bottom:130.744000pt;}
.y6b_c00299{bottom:131.082667pt;}
.y63_c00299{bottom:146.213333pt;}
.y62_c00299{bottom:161.680000pt;}
.y61_c00299{bottom:177.493333pt;}
.y60_c00299{bottom:192.450667pt;}
.y5f_c00299{bottom:208.046667pt;}
.y5e_c00299{bottom:222.960000pt;}
.y5d_c00299{bottom:237.868000pt;}
.y55_c00299{bottom:251.041333pt;}
.y56_c00299{bottom:251.617333pt;}
.y57_c00299{bottom:252.253333pt;}
.y58_c00299{bottom:252.373333pt;}
.y59_c00299{bottom:252.517333pt;}
.y5a_c00299{bottom:252.694667pt;}
.y5b_c00299{bottom:253.108000pt;}
.y5c_c00299{bottom:253.288000pt;}
.y54_c00299{bottom:267.556000pt;}
.y53_c00299{bottom:282.426667pt;}
.y52_c00299{bottom:297.789333pt;}
.y51_c00299{bottom:312.613333pt;}
.y50_c00299{bottom:328.246667pt;}
.y4f_c00299{bottom:342.916000pt;}
.y4e_c00299{bottom:358.422667pt;}
.y4c_c00299{bottom:373.960927pt;}
.y4d_c00299{bottom:373.961004pt;}
.y4b_c00299{bottom:373.961071pt;}
.y4a_c00299{bottom:373.961679pt;}
.y49_c00299{bottom:373.961879pt;}
.y48_c00299{bottom:373.962080pt;}
.y47_c00299{bottom:373.962513pt;}
.y46_c00299{bottom:373.962740pt;}
.y45_c00299{bottom:387.509737pt;}
.y44_c00299{bottom:388.016643pt;}
.y43_c00299{bottom:388.251739pt;}
.y42_c00299{bottom:388.858549pt;}
.y41_c00299{bottom:389.363383pt;}
.y40_c00299{bottom:389.585361pt;}
.y3f_c00299{bottom:389.818524pt;}
.y3e_c00299{bottom:390.209077pt;}
.y3d_c00299{bottom:401.577623pt;}
.y3c_c00299{bottom:401.914267pt;}
.y3b_c00299{bottom:402.760171pt;}
.y3a_c00299{bottom:403.720079pt;}
.y39_c00299{bottom:404.234384pt;}
.y38_c00299{bottom:405.336712pt;}
.y37_c00299{bottom:418.831445pt;}
.y35_c00299{bottom:418.831755pt;}
.y33_c00299{bottom:418.831793pt;}
.y34_c00299{bottom:418.831899pt;}
.y36_c00299{bottom:418.831927pt;}
.y31_c00299{bottom:418.831952pt;}
.y32_c00299{bottom:418.831995pt;}
.y30_c00299{bottom:418.832152pt;}
.y28_c00299{bottom:433.820361pt;}
.y2a_c00299{bottom:433.820704pt;}
.y29_c00299{bottom:433.820964pt;}
.y2b_c00299{bottom:433.821112pt;}
.y2c_c00299{bottom:433.821300pt;}
.y2f_c00299{bottom:433.821868pt;}
.y2d_c00299{bottom:433.821915pt;}
.y2e_c00299{bottom:433.822273pt;}
.y21_c00299{bottom:449.206943pt;}
.y20_c00299{bottom:449.207255pt;}
.y25_c00299{bottom:449.207325pt;}
.y22_c00299{bottom:449.207405pt;}
.y26_c00299{bottom:449.207795pt;}
.y24_c00299{bottom:449.207823pt;}
.y27_c00299{bottom:449.207837pt;}
.y1f_c00299{bottom:449.207848pt;}
.y23_c00299{bottom:449.208077pt;}
.y1e_c00299{bottom:463.535464pt;}
.y1d_c00299{bottom:463.895065pt;}
.y1c_c00299{bottom:464.195241pt;}
.y1b_c00299{bottom:464.319921pt;}
.y1a_c00299{bottom:464.629564pt;}
.y19_c00299{bottom:464.867631pt;}
.y18_c00299{bottom:465.106680pt;}
.y17_c00299{bottom:465.711851pt;}
.y16_c00299{bottom:465.829181pt;}
.y15_c00299{bottom:478.369259pt;}
.y14_c00299{bottom:478.369300pt;}
.y13_c00299{bottom:478.369389pt;}
.y12_c00299{bottom:478.369533pt;}
.yf_c00299{bottom:478.369683pt;}
.ye_c00299{bottom:478.369723pt;}
.y11_c00299{bottom:478.369795pt;}
.y10_c00299{bottom:478.370023pt;}
.yc_c00299{bottom:495.461283pt;}
.yb_c00299{bottom:495.461503pt;}
.ya_c00299{bottom:495.461647pt;}
.yd_c00299{bottom:495.461712pt;}
.y8_c00299{bottom:495.461716pt;}
.y9_c00299{bottom:495.461923pt;}
.y7_c00299{bottom:495.462047pt;}
.y6_c00299{bottom:495.462240pt;}
.y5_c00299{bottom:502.421405pt;}
.y4_c00299{bottom:503.377377pt;}
.y3_c00299{bottom:504.607755pt;}
.y2_c00299{bottom:506.245815pt;}
.y1_c00299{bottom:508.349333pt;}
.ha_c00299{height:52.266667pt;}
.h8_c00299{height:52.280489pt;}
.h11_c00299{height:53.200000pt;}
.h5_c00299{height:53.214070pt;}
.hf_c00299{height:54.133333pt;}
.h4_c00299{height:54.147650pt;}
.hb_c00299{height:55.066667pt;}
.h3_c00299{height:55.081230pt;}
.h7_c00299{height:56.014810pt;}
.h10_c00299{height:56.933333pt;}
.h6_c00299{height:56.948390pt;}
.he_c00299{height:57.866667pt;}
.hd_c00299{height:58.800000pt;}
.h9_c00299{height:59.733333pt;}
.hc_c00299{height:60.666667pt;}
.h12_c00299{height:61.600000pt;}
.h2_c00299{height:64.417032pt;}
.h1_c00299{height:550.000000pt;}
.h0_c00299{height:550.266667pt;}
.w0_c00299{width:319.200000pt;}
.w1_c00299{width:319.333333pt;}
.x0_c00299{left:0.000000pt;}
.x7e_c00299{left:23.602667pt;}
.x79_c00299{left:25.438667pt;}
.x69_c00299{left:26.640000pt;}
.x52_c00299{left:27.840000pt;}
.x19_c00299{left:29.038905pt;}
.x6_c00299{left:29.998701pt;}
.x22_c00299{left:33.360799pt;}
.x1_c00299{left:34.510667pt;}
.x7a_c00299{left:37.918667pt;}
.x87_c00299{left:38.878667pt;}
.x13_c00299{left:41.192723pt;}
.x7f_c00299{left:45.502667pt;}
.x4a_c00299{left:47.040000pt;}
.x74_c00299{left:48.393333pt;}
.x56_c00299{left:49.680000pt;}
.x41_c00299{left:50.640000pt;}
.x23_c00299{left:51.605125pt;}
.x7b_c00299{left:52.798667pt;}
.x1a_c00299{left:54.005425pt;}
.x7_c00299{left:56.165865pt;}
.x6d_c00299{left:57.360000pt;}
.x61_c00299{left:58.320000pt;}
.x63_c00299{left:62.880000pt;}
.x32_c00299{left:64.213604pt;}
.x1b_c00299{left:66.489352pt;}
.x4e_c00299{left:68.160000pt;}
.x84_c00299{left:70.394667pt;}
.x80_c00299{left:71.622667pt;}
.x42_c00299{left:73.680000pt;}
.x8_c00299{left:75.610805pt;}
.x64_c00299{left:76.800000pt;}
.xe_c00299{left:79.453261pt;}
.x29_c00299{left:80.653252pt;}
.x4f_c00299{left:82.800000pt;}
.x33_c00299{left:85.371431pt;}
.x75_c00299{left:87.033333pt;}
.x2f_c00299{left:90.071999pt;}
.x43_c00299{left:92.880000pt;}
.x3c_c00299{left:96.960000pt;}
.x2a_c00299{left:99.617947pt;}
.x14_c00299{left:101.725483pt;}
.x9_c00299{left:102.978613pt;}
.x6a_c00299{left:103.920000pt;}
.x34_c00299{left:105.520981pt;}
.x81_c00299{left:106.722667pt;}
.x57_c00299{left:112.560000pt;}
.x1c_c00299{left:114.262621pt;}
.x3d_c00299{left:115.440000pt;}
.x2b_c00299{left:117.143208pt;}
.xf_c00299{left:119.063540pt;}
.x39_c00299{left:120.022601pt;}
.x65_c00299{left:121.440000pt;}
.x4b_c00299{left:123.600000pt;}
.x2_c00299{left:125.968000pt;}
.x5d_c00299{left:127.440000pt;}
.x8b_c00299{left:128.398667pt;}
.x71_c00299{left:130.320000pt;}
.x58_c00299{left:135.120000pt;}
.x24_c00299{left:136.107140pt;}
.x82_c00299{left:137.037333pt;}
.x76_c00299{left:138.133333pt;}
.x6e_c00299{left:140.880000pt;}
.x53_c00299{left:143.760000pt;}
.x47_c00299{left:145.200000pt;}
.x72_c00299{left:147.600000pt;}
.x15_c00299{left:149.498440pt;}
.x35_c00299{left:151.366949pt;}
.x1d_c00299{left:153.152532pt;}
.x6b_c00299{left:154.320000pt;}
.x59_c00299{left:158.160000pt;}
.x10_c00299{left:159.154064pt;}
.xa_c00299{left:160.354276pt;}
.x54_c00299{left:162.000000pt;}
.x88_c00299{left:163.198667pt;}
.x44_c00299{left:164.880000pt;}
.x48_c00299{left:166.080000pt;}
.x1e_c00299{left:167.316015pt;}
.x25_c00299{left:170.435961pt;}
.x30_c00299{left:171.974747pt;}
.x7c_c00299{left:173.518667pt;}
.x3e_c00299{left:175.440000pt;}
.x11_c00299{left:178.358881pt;}
.xb_c00299{left:179.559093pt;}
.x2c_c00299{left:182.680528pt;}
.x89_c00299{left:184.078667pt;}
.x7d_c00299{left:185.038667pt;}
.x5e_c00299{left:186.000000pt;}
.x62_c00299{left:188.880000pt;}
.x6f_c00299{left:189.840000pt;}
.x16_c00299{left:192.916745pt;}
.x77_c00299{left:195.958667pt;}
.x3_c00299{left:197.188000pt;}
.x66_c00299{left:198.960000pt;}
.x5f_c00299{left:200.160000pt;}
.x2d_c00299{left:201.885345pt;}
.xc_c00299{left:204.045368pt;}
.x45_c00299{left:205.440000pt;}
.x36_c00299{left:206.576857pt;}
.x26_c00299{left:207.646316pt;}
.x85_c00299{left:213.668000pt;}
.x1f_c00299{left:214.609008pt;}
.x55_c00299{left:216.240000pt;}
.x49_c00299{left:217.440000pt;}
.x2e_c00299{left:218.930361pt;}
.x73_c00299{left:221.520000pt;}
.x17_c00299{left:222.904367pt;}
.x27_c00299{left:224.451209pt;}
.x67_c00299{left:225.600000pt;}
.x37_c00299{left:227.934745pt;}
.x86_c00299{left:229.545333pt;}
.x50_c00299{left:231.600000pt;}
.x6c_c00299{left:232.560000pt;}
.x3a_c00299{left:233.573283pt;}
.x5b_c00299{left:234.577333pt;}
.x12_c00299{left:235.494421pt;}
.x20_c00299{left:236.455236pt;}
.x31_c00299{left:237.658291pt;}
.x3f_c00299{left:238.800000pt;}
.x4c_c00299{left:240.720000pt;}
.x8a_c00299{left:243.118667pt;}
.x51_c00299{left:244.560000pt;}
.x78_c00299{left:248.536000pt;}
.x4_c00299{left:250.682667pt;}
.x5c_c00299{left:252.580000pt;}
.x21_c00299{left:255.419931pt;}
.x83_c00299{left:257.757333pt;}
.x18_c00299{left:258.897797pt;}
.x60_c00299{left:260.400000pt;}
.x4d_c00299{left:261.360000pt;}
.x3b_c00299{left:262.860769pt;}
.x70_c00299{left:270.000000pt;}
.x8c_c00299{left:272.878667pt;}
.x38_c00299{left:274.044805pt;}
.xd_c00299{left:276.064789pt;}
.x46_c00299{left:278.640000pt;}
.x5a_c00299{left:281.040000pt;}
.x28_c00299{left:283.746551pt;}
.x68_c00299{left:286.800000pt;}
.x40_c00299{left:289.200000pt;}
.x5_c00299{left:292.246667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00300 {
    display:none;
  }
  .loading-indicator_c00300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00300 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00300 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00300" -> "#page-container .classname_c00300")
 */
.pf_c00300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00300 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00300 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00300 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00300 {overflow:visible;}
  }
}
.c_c00300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00300 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00300:after { /* webkit #35443 */
  content: '';
}
.t_c00300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00300 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00300 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00300 { /* info for Javascript */
  display:none;
}
.l_c00300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00300:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00300 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00300.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00300{transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011925,0.000000,0.000000,0.250000,0,0);}
.me6_c00300{transform:matrix(0.076715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076715,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.125405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125405,0.000000,0.000000,0.250000,0,0);}
.mbb_c00300{transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);}
.md9_c00300{transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);}
.md7_c00300{transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);}
.m74_c00300{transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151030,0.000000,0.000000,0.250000,0,0);}
.m8a_c00300{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153780,0.000000,0.000000,0.250000,0,0);}
.m5e_c00300{transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);}
.m79_c00300{transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);}
.m75_c00300{transform:matrix(0.158015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158015,0.000000,0.000000,0.250000,0,0);}
.m70_c00300{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00300{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);}
.me9_c00300{transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);}
.m8e_c00300{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.md4_c00300{transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);}
.mcc_c00300{transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);}
.m97_c00300{transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);}
.m7c_c00300{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);}
.md1_c00300{transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);}
.m87_c00300{transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m38_c00300{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00300{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.mec_c00300{transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.mad_c00300{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);}
.m6b_c00300{transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);}
.m56_c00300{transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);}
.ma8_c00300{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.mdc_c00300{transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174410,0.000000,0.000000,0.250000,0,0);}
.m84_c00300{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m4f_c00300{transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);}
.mb2_c00300{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175635,0.000000,0.000000,0.250000,0,0);}
.m6a_c00300{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00300{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.mdd_c00300{transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);}
.m73_c00300{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m77_c00300{transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);}
.mab_c00300{transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);}
.m50_c00300{transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);}
.ma4_c00300{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178260,0.000000,0.000000,0.250000,0,0);}
.m51_c00300{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.mde_c00300{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.mef_c00300{transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);}
.m76_c00300{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.ma9_c00300{transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.mb5_c00300{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.m4a_c00300{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m71_c00300{transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);}
.m72_c00300{transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md6_c00300{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.ma1_c00300{transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182115,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m68_c00300{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.m47_c00300{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00300{transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);}
.maf_c00300{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.md0_c00300{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.m80_c00300{transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00300{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m41_c00300{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.med_c00300{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00300{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.m89_c00300{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m36_c00300{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m93_c00300{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m42_c00300{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.m61_c00300{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m5b_c00300{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.m8d_c00300{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.m6c_c00300{transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);}
.me2_c00300{transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190505,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.m7a_c00300{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m7d_c00300{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);}
.ma5_c00300{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00300{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m5d_c00300{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00300{transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);}
.mdb_c00300{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mac_c00300{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);}
.md2_c00300{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m53_c00300{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m4e_c00300{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.mda_c00300{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);}
.mb6_c00300{transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m96_c00300{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m88_c00300{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.m78_c00300{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m86_c00300{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.mcb_c00300{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m52_c00300{transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);}
.m62_c00300{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00300{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m9d_c00300{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.ma7_c00300{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.mee_c00300{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.mb0_c00300{transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199805,0.000000,0.000000,0.250000,0,0);}
.mc7_c00300{transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m85_c00300{transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);}
.m99_c00300{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m95_c00300{transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);}
.mc3_c00300{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m9a_c00300{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.mca_c00300{transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202355,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.m91_c00300{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.mea_c00300{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.m63_c00300{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.m5a_c00300{transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);}
.m54_c00300{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.m94_c00300{transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);}
.m57_c00300{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00300{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00300{transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204740,0.000000,0.000000,0.250000,0,0);}
.mc1_c00300{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.maa_c00300{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m9e_c00300{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m4d_c00300{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.meb_c00300{transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);}
.mc9_c00300{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m92_c00300{transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);}
.m59_c00300{transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);}
.ma0_c00300{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.mcd_c00300{transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);}
.mb1_c00300{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m69_c00300{transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);}
.m82_c00300{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.me8_c00300{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m98_c00300{transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m8b_c00300{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m3d_c00300{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m83_c00300{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m9c_c00300{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m7b_c00300{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m67_c00300{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m55_c00300{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.mb4_c00300{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.me0_c00300{transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213390,0.000000,0.000000,0.250000,0,0);}
.m7f_c00300{transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);}
.mb7_c00300{transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);}
.me4_c00300{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me3_c00300{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.md5_c00300{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.mc8_c00300{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);}
.m66_c00300{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.mb8_c00300{transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.md3_c00300{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m58_c00300{transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);}
.m9b_c00300{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.me7_c00300{transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);}
.m90_c00300{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.mae_c00300{transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);}
.mc2_c00300{transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224230,0.000000,0.000000,0.250000,0,0);}
.m81_c00300{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.ma6_c00300{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m64_c00300{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);}
.m3c_c00300{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.ma3_c00300{transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.ma2_c00300{transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);}
.mbd_c00300{transform:matrix(0.230095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230095,0.000000,0.000000,0.250000,0,0);}
.mb9_c00300{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.m65_c00300{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.232045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232045,0.000000,0.000000,0.250000,0,0);}
.mb3_c00300{transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m5c_c00300{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.mc4_c00300{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m60_c00300{transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);}
.md8_c00300{transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);}
.me1_c00300{transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);}
.me5_c00300{transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);}
.mbf_c00300{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);}
.mba_c00300{transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);}
.mc0_c00300{transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357800,0.000000,0.000000,0.250000,0,0);}
.mce_c00300{transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);}
.mbc_c00300{transform:matrix(0.390940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390940,0.000000,0.000000,0.250000,0,0);}
.mdf_c00300{transform:matrix(0.531705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531705,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:0.000000px;}
.fc0_c00300{color:transparent;}
.fsd_c00300{font-size:55.650000px;}
.fs9_c00300{font-size:57.750000px;}
.fs3_c00300{font-size:58.800000px;}
.fs6_c00300{font-size:59.850000px;}
.fsb_c00300{font-size:60.900000px;}
.fsc_c00300{font-size:61.950000px;}
.fs2_c00300{font-size:63.000000px;}
.fs0_c00300{font-size:64.050000px;}
.fs8_c00300{font-size:65.100000px;}
.fs7_c00300{font-size:66.150000px;}
.fs5_c00300{font-size:67.200000px;}
.fs4_c00300{font-size:68.250000px;}
.fsa_c00300{font-size:69.300000px;}
.fs1_c00300{font-size:71.400000px;}
.y0_c00300{bottom:0.000000px;}
.y91_c00300{bottom:29.394000px;}
.y90_c00300{bottom:29.706000px;}
.y8f_c00300{bottom:30.414000px;}
.y8e_c00300{bottom:30.706500px;}
.y8d_c00300{bottom:31.540500px;}
.y8c_c00300{bottom:32.560500px;}
.y8b_c00300{bottom:32.778000px;}
.y8a_c00300{bottom:33.216000px;}
.y89_c00300{bottom:47.166000px;}
.y88_c00300{bottom:63.484500px;}
.y80_c00300{bottom:78.576000px;}
.y81_c00300{bottom:78.762000px;}
.y82_c00300{bottom:79.585500px;}
.y83_c00300{bottom:79.977000px;}
.y84_c00300{bottom:80.239500px;}
.y85_c00300{bottom:80.787000px;}
.y86_c00300{bottom:81.151500px;}
.y87_c00300{bottom:81.300000px;}
.y7f_c00300{bottom:98.779500px;}
.y77_c00300{bottom:109.902000px;}
.y78_c00300{bottom:110.209500px;}
.y79_c00300{bottom:110.887500px;}
.y7a_c00300{bottom:111.220500px;}
.y7b_c00300{bottom:112.533000px;}
.y7c_c00300{bottom:112.833000px;}
.y7d_c00300{bottom:113.083500px;}
.y7e_c00300{bottom:114.580500px;}
.y71_c00300{bottom:129.604500px;}
.y72_c00300{bottom:130.054500px;}
.y73_c00300{bottom:130.831500px;}
.y74_c00300{bottom:131.476500px;}
.y75_c00300{bottom:132.646500px;}
.y76_c00300{bottom:132.912000px;}
.y69_c00300{bottom:145.266000px;}
.y6a_c00300{bottom:145.843500px;}
.y6b_c00300{bottom:146.152500px;}
.y6c_c00300{bottom:146.700000px;}
.y6d_c00300{bottom:147.795000px;}
.y6e_c00300{bottom:148.122000px;}
.y6f_c00300{bottom:148.746000px;}
.y70_c00300{bottom:148.908000px;}
.y68_c00300{bottom:165.559500px;}
.y67_c00300{bottom:183.603000px;}
.y66_c00300{bottom:200.761500px;}
.y65_c00300{bottom:216.729000px;}
.y64_c00300{bottom:234.141000px;}
.y63_c00300{bottom:251.643000px;}
.y62_c00300{bottom:268.923000px;}
.y61_c00300{bottom:286.380000px;}
.y60_c00300{bottom:303.393000px;}
.y5f_c00300{bottom:320.547000px;}
.y57_c00300{bottom:334.804500px;}
.y58_c00300{bottom:335.116500px;}
.y59_c00300{bottom:335.337000px;}
.y5a_c00300{bottom:336.378000px;}
.y5b_c00300{bottom:337.215000px;}
.y5c_c00300{bottom:337.387500px;}
.y5d_c00300{bottom:337.746000px;}
.y5e_c00300{bottom:338.722500px;}
.y4f_c00300{bottom:351.274500px;}
.y50_c00300{bottom:351.732000px;}
.y51_c00300{bottom:352.429500px;}
.y52_c00300{bottom:353.130000px;}
.y53_c00300{bottom:353.728500px;}
.y54_c00300{bottom:354.142500px;}
.y55_c00300{bottom:354.393000px;}
.y56_c00300{bottom:355.263000px;}
.y4e_c00300{bottom:367.945500px;}
.y46_c00300{bottom:383.944500px;}
.y47_c00300{bottom:384.177000px;}
.y48_c00300{bottom:384.393000px;}
.y49_c00300{bottom:384.646500px;}
.y4a_c00300{bottom:385.365000px;}
.y4b_c00300{bottom:386.608500px;}
.y4c_c00300{bottom:386.854500px;}
.y4d_c00300{bottom:387.802500px;}
.y40_c00300{bottom:401.223000px;}
.y41_c00300{bottom:401.491500px;}
.y42_c00300{bottom:402.274500px;}
.y43_c00300{bottom:402.687000px;}
.y44_c00300{bottom:403.653000px;}
.y45_c00300{bottom:404.284500px;}
.y39_c00300{bottom:418.231500px;}
.y3a_c00300{bottom:418.885500px;}
.y3b_c00300{bottom:419.029500px;}
.y3c_c00300{bottom:419.823000px;}
.y3d_c00300{bottom:420.021000px;}
.y3e_c00300{bottom:420.792000px;}
.y3f_c00300{bottom:421.465500px;}
.y31_c00300{bottom:434.161500px;}
.y32_c00300{bottom:435.039000px;}
.y33_c00300{bottom:436.494000px;}
.y34_c00300{bottom:436.788000px;}
.y35_c00300{bottom:437.355000px;}
.y36_c00300{bottom:437.635500px;}
.y37_c00300{bottom:438.343500px;}
.y38_c00300{bottom:438.663000px;}
.y2a_c00300{bottom:452.251500px;}
.y2b_c00300{bottom:452.769000px;}
.y2c_c00300{bottom:453.277500px;}
.y2d_c00300{bottom:453.912000px;}
.y2e_c00300{bottom:454.608000px;}
.y2f_c00300{bottom:454.848000px;}
.y30_c00300{bottom:455.644500px;}
.y21_c00300{bottom:467.376000px;}
.y22_c00300{bottom:467.976000px;}
.y23_c00300{bottom:468.616500px;}
.y24_c00300{bottom:468.853500px;}
.y25_c00300{bottom:470.595000px;}
.y26_c00300{bottom:470.859000px;}
.y27_c00300{bottom:471.187500px;}
.y28_c00300{bottom:472.074000px;}
.y29_c00300{bottom:472.356000px;}
.y1b_c00300{bottom:486.541500px;}
.y1c_c00300{bottom:487.141500px;}
.y1d_c00300{bottom:488.080500px;}
.y1e_c00300{bottom:488.374500px;}
.y1f_c00300{bottom:489.283500px;}
.y20_c00300{bottom:489.556500px;}
.y13_c00300{bottom:502.743000px;}
.y14_c00300{bottom:504.055500px;}
.y15_c00300{bottom:504.292500px;}
.y16_c00300{bottom:505.035000px;}
.y17_c00300{bottom:505.317000px;}
.y18_c00300{bottom:506.041500px;}
.y19_c00300{bottom:506.436000px;}
.y1a_c00300{bottom:506.739000px;}
.y12_c00300{bottom:522.855000px;}
.y8_c00300{bottom:537.571500px;}
.y9_c00300{bottom:538.123500px;}
.ya_c00300{bottom:538.384500px;}
.yb_c00300{bottom:538.903500px;}
.yc_c00300{bottom:539.046000px;}
.yd_c00300{bottom:539.598000px;}
.ye_c00300{bottom:539.856000px;}
.yf_c00300{bottom:540.453000px;}
.y10_c00300{bottom:541.429500px;}
.y11_c00300{bottom:541.735500px;}
.y2_c00300{bottom:554.311500px;}
.y3_c00300{bottom:554.839500px;}
.y4_c00300{bottom:555.327000px;}
.y5_c00300{bottom:556.285500px;}
.y6_c00300{bottom:556.543500px;}
.y7_c00300{bottom:556.867500px;}
.y1_c00300{bottom:573.210000px;}
.hf_c00300{height:55.650000px;}
.hb_c00300{height:57.750000px;}
.h5_c00300{height:58.800000px;}
.h8_c00300{height:59.850000px;}
.hd_c00300{height:60.900000px;}
.he_c00300{height:61.950000px;}
.h4_c00300{height:63.000000px;}
.h2_c00300{height:64.050000px;}
.ha_c00300{height:65.100000px;}
.h9_c00300{height:66.150000px;}
.h7_c00300{height:67.200000px;}
.h6_c00300{height:68.250000px;}
.hc_c00300{height:69.300000px;}
.h3_c00300{height:71.400000px;}
.h1_c00300{height:618.750000px;}
.h0_c00300{height:619.050000px;}
.w0_c00300{width:359.100000px;}
.w1_c00300{width:359.250000px;}
.x0_c00300{left:0.000000px;}
.x4c_c00300{left:21.598500px;}
.x74_c00300{left:24.030000px;}
.x2_c00300{left:25.276500px;}
.x11_c00300{left:26.727000px;}
.x70_c00300{left:28.348500px;}
.x3f_c00300{left:30.102000px;}
.x15_c00300{left:31.807500px;}
.x5f_c00300{left:33.478500px;}
.x6c_c00300{left:35.793000px;}
.x5e_c00300{left:38.338500px;}
.x37_c00300{left:42.514500px;}
.x48_c00300{left:44.008500px;}
.x44_c00300{left:46.630500px;}
.x34_c00300{left:48.190500px;}
.x4d_c00300{left:52.648500px;}
.x38_c00300{left:57.946500px;}
.x20_c00300{left:59.106000px;}
.x40_c00300{left:60.630000px;}
.x51_c00300{left:61.828500px;}
.x8_c00300{left:62.893500px;}
.x75_c00300{left:68.310000px;}
.x27_c00300{left:69.798000px;}
.x12_c00300{left:72.087000px;}
.x3_c00300{left:73.306500px;}
.x39_c00300{left:76.033500px;}
.x64_c00300{left:77.218500px;}
.x9_c00300{left:80.281500px;}
.x1c_c00300{left:81.642000px;}
.x57_c00300{left:85.858500px;}
.x21_c00300{left:92.833500px;}
.x71_c00300{left:93.958500px;}
.x63_c00300{left:95.308500px;}
.x49_c00300{left:99.358500px;}
.x52_c00300{left:101.518500px;}
.x22_c00300{left:105.280500px;}
.x41_c00300{left:107.107500px;}
.x28_c00300{left:112.188000px;}
.x35_c00300{left:113.479500px;}
.xa_c00300{left:114.846000px;}
.x4_c00300{left:117.598500px;}
.x72_c00300{left:119.068500px;}
.x78_c00300{left:120.150000px;}
.x4a_c00300{left:123.118500px;}
.xb_c00300{left:124.378500px;}
.x45_c00300{left:125.442000px;}
.x3a_c00300{left:127.330500px;}
.x16_c00300{left:128.716500px;}
.x59_c00300{left:130.138500px;}
.x67_c00300{left:132.028500px;}
.x76_c00300{left:133.920000px;}
.x13_c00300{left:135.267000px;}
.x6d_c00300{left:138.102000px;}
.x3d_c00300{left:140.398500px;}
.x53_c00300{left:143.908500px;}
.x36_c00300{left:147.832500px;}
.x42_c00300{left:153.786000px;}
.x54_c00300{left:156.598500px;}
.x32_c00300{left:159.171000px;}
.xc_c00300{left:161.151000px;}
.x29_c00300{left:165.117000px;}
.x1_c00300{left:166.860000px;}
.x6f_c00300{left:169.569000px;}
.x2d_c00300{left:172.381500px;}
.x17_c00300{left:175.089000px;}
.xd_c00300{left:178.305000px;}
.x55_c00300{left:180.898500px;}
.x60_c00300{left:181.978500px;}
.x5a_c00300{left:187.108500px;}
.x46_c00300{left:188.614500px;}
.x2e_c00300{left:190.737000px;}
.x18_c00300{left:192.708000px;}
.x1d_c00300{left:193.720500px;}
.x65_c00300{left:195.478500px;}
.x23_c00300{left:196.971000px;}
.x61_c00300{left:201.418500px;}
.x5_c00300{left:204.780000px;}
.x5b_c00300{left:207.088500px;}
.x24_c00300{left:210.828000px;}
.x3b_c00300{left:216.150000px;}
.xe_c00300{left:218.091000px;}
.x6a_c00300{left:219.655500px;}
.x43_c00300{left:221.274000px;}
.x2a_c00300{left:223.155000px;}
.x4e_c00300{left:224.638500px;}
.x2f_c00300{left:226.180500px;}
.x6_c00300{left:228.291000px;}
.x62_c00300{left:230.308500px;}
.x3c_c00300{left:233.712000px;}
.x79_c00300{left:235.170000px;}
.x19_c00300{left:237.982500px;}
.x33_c00300{left:239.898000px;}
.x4b_c00300{left:241.648500px;}
.x2b_c00300{left:243.145500px;}
.x4f_c00300{left:245.158500px;}
.x56_c00300{left:248.938500px;}
.x73_c00300{left:252.448500px;}
.x7_c00300{left:257.737500px;}
.x1a_c00300{left:262.636500px;}
.x68_c00300{left:265.948500px;}
.x5c_c00300{left:269.728500px;}
.x47_c00300{left:272.071500px;}
.x25_c00300{left:274.810500px;}
.x1e_c00300{left:276.342000px;}
.x66_c00300{left:277.558500px;}
.x1b_c00300{left:281.548500px;}
.xf_c00300{left:283.162500px;}
.x5d_c00300{left:286.468500px;}
.x30_c00300{left:288.012000px;}
.x26_c00300{left:289.681500px;}
.x50_c00300{left:292.948500px;}
.x14_c00300{left:296.457000px;}
.x58_c00300{left:298.348500px;}
.x3e_c00300{left:299.428500px;}
.x1f_c00300{left:301.134000px;}
.x10_c00300{left:303.597000px;}
.x6b_c00300{left:305.271000px;}
.x69_c00300{left:306.448500px;}
.x31_c00300{left:307.960500px;}
.x2c_c00300{left:309.520500px;}
.x6e_c00300{left:311.446500px;}
.x77_c00300{left:312.930000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fsd_c00300{font-size:49.466667pt;}
.fs9_c00300{font-size:51.333333pt;}
.fs3_c00300{font-size:52.266667pt;}
.fs6_c00300{font-size:53.200000pt;}
.fsb_c00300{font-size:54.133333pt;}
.fsc_c00300{font-size:55.066667pt;}
.fs2_c00300{font-size:56.000000pt;}
.fs0_c00300{font-size:56.933333pt;}
.fs8_c00300{font-size:57.866667pt;}
.fs7_c00300{font-size:58.800000pt;}
.fs5_c00300{font-size:59.733333pt;}
.fs4_c00300{font-size:60.666667pt;}
.fsa_c00300{font-size:61.600000pt;}
.fs1_c00300{font-size:63.466667pt;}
.y0_c00300{bottom:0.000000pt;}
.y91_c00300{bottom:26.128000pt;}
.y90_c00300{bottom:26.405333pt;}
.y8f_c00300{bottom:27.034667pt;}
.y8e_c00300{bottom:27.294667pt;}
.y8d_c00300{bottom:28.036000pt;}
.y8c_c00300{bottom:28.942667pt;}
.y8b_c00300{bottom:29.136000pt;}
.y8a_c00300{bottom:29.525333pt;}
.y89_c00300{bottom:41.925333pt;}
.y88_c00300{bottom:56.430667pt;}
.y80_c00300{bottom:69.845333pt;}
.y81_c00300{bottom:70.010667pt;}
.y82_c00300{bottom:70.742667pt;}
.y83_c00300{bottom:71.090667pt;}
.y84_c00300{bottom:71.324000pt;}
.y85_c00300{bottom:71.810667pt;}
.y86_c00300{bottom:72.134667pt;}
.y87_c00300{bottom:72.266667pt;}
.y7f_c00300{bottom:87.804000pt;}
.y77_c00300{bottom:97.690667pt;}
.y78_c00300{bottom:97.964000pt;}
.y79_c00300{bottom:98.566667pt;}
.y7a_c00300{bottom:98.862667pt;}
.y7b_c00300{bottom:100.029333pt;}
.y7c_c00300{bottom:100.296000pt;}
.y7d_c00300{bottom:100.518667pt;}
.y7e_c00300{bottom:101.849333pt;}
.y71_c00300{bottom:115.204000pt;}
.y72_c00300{bottom:115.604000pt;}
.y73_c00300{bottom:116.294667pt;}
.y74_c00300{bottom:116.868000pt;}
.y75_c00300{bottom:117.908000pt;}
.y76_c00300{bottom:118.144000pt;}
.y69_c00300{bottom:129.125333pt;}
.y6a_c00300{bottom:129.638667pt;}
.y6b_c00300{bottom:129.913333pt;}
.y6c_c00300{bottom:130.400000pt;}
.y6d_c00300{bottom:131.373333pt;}
.y6e_c00300{bottom:131.664000pt;}
.y6f_c00300{bottom:132.218667pt;}
.y70_c00300{bottom:132.362667pt;}
.y68_c00300{bottom:147.164000pt;}
.y67_c00300{bottom:163.202667pt;}
.y66_c00300{bottom:178.454667pt;}
.y65_c00300{bottom:192.648000pt;}
.y64_c00300{bottom:208.125333pt;}
.y63_c00300{bottom:223.682667pt;}
.y62_c00300{bottom:239.042667pt;}
.y61_c00300{bottom:254.560000pt;}
.y60_c00300{bottom:269.682667pt;}
.y5f_c00300{bottom:284.930667pt;}
.y57_c00300{bottom:297.604000pt;}
.y58_c00300{bottom:297.881333pt;}
.y59_c00300{bottom:298.077333pt;}
.y5a_c00300{bottom:299.002667pt;}
.y5b_c00300{bottom:299.746667pt;}
.y5c_c00300{bottom:299.900000pt;}
.y5d_c00300{bottom:300.218667pt;}
.y5e_c00300{bottom:301.086667pt;}
.y4f_c00300{bottom:312.244000pt;}
.y50_c00300{bottom:312.650667pt;}
.y51_c00300{bottom:313.270667pt;}
.y52_c00300{bottom:313.893333pt;}
.y53_c00300{bottom:314.425333pt;}
.y54_c00300{bottom:314.793333pt;}
.y55_c00300{bottom:315.016000pt;}
.y56_c00300{bottom:315.789333pt;}
.y4e_c00300{bottom:327.062667pt;}
.y46_c00300{bottom:341.284000pt;}
.y47_c00300{bottom:341.490667pt;}
.y48_c00300{bottom:341.682667pt;}
.y49_c00300{bottom:341.908000pt;}
.y4a_c00300{bottom:342.546667pt;}
.y4b_c00300{bottom:343.652000pt;}
.y4c_c00300{bottom:343.870667pt;}
.y4d_c00300{bottom:344.713333pt;}
.y40_c00300{bottom:356.642667pt;}
.y41_c00300{bottom:356.881333pt;}
.y42_c00300{bottom:357.577333pt;}
.y43_c00300{bottom:357.944000pt;}
.y44_c00300{bottom:358.802667pt;}
.y45_c00300{bottom:359.364000pt;}
.y39_c00300{bottom:371.761333pt;}
.y3a_c00300{bottom:372.342667pt;}
.y3b_c00300{bottom:372.470667pt;}
.y3c_c00300{bottom:373.176000pt;}
.y3d_c00300{bottom:373.352000pt;}
.y3e_c00300{bottom:374.037333pt;}
.y3f_c00300{bottom:374.636000pt;}
.y31_c00300{bottom:385.921333pt;}
.y32_c00300{bottom:386.701333pt;}
.y33_c00300{bottom:387.994667pt;}
.y34_c00300{bottom:388.256000pt;}
.y35_c00300{bottom:388.760000pt;}
.y36_c00300{bottom:389.009333pt;}
.y37_c00300{bottom:389.638667pt;}
.y38_c00300{bottom:389.922667pt;}
.y2a_c00300{bottom:402.001333pt;}
.y2b_c00300{bottom:402.461333pt;}
.y2c_c00300{bottom:402.913333pt;}
.y2d_c00300{bottom:403.477333pt;}
.y2e_c00300{bottom:404.096000pt;}
.y2f_c00300{bottom:404.309333pt;}
.y30_c00300{bottom:405.017333pt;}
.y21_c00300{bottom:415.445333pt;}
.y22_c00300{bottom:415.978667pt;}
.y23_c00300{bottom:416.548000pt;}
.y24_c00300{bottom:416.758667pt;}
.y25_c00300{bottom:418.306667pt;}
.y26_c00300{bottom:418.541333pt;}
.y27_c00300{bottom:418.833333pt;}
.y28_c00300{bottom:419.621333pt;}
.y29_c00300{bottom:419.872000pt;}
.y1b_c00300{bottom:432.481333pt;}
.y1c_c00300{bottom:433.014667pt;}
.y1d_c00300{bottom:433.849333pt;}
.y1e_c00300{bottom:434.110667pt;}
.y1f_c00300{bottom:434.918667pt;}
.y20_c00300{bottom:435.161333pt;}
.y13_c00300{bottom:446.882667pt;}
.y14_c00300{bottom:448.049333pt;}
.y15_c00300{bottom:448.260000pt;}
.y16_c00300{bottom:448.920000pt;}
.y17_c00300{bottom:449.170667pt;}
.y18_c00300{bottom:449.814667pt;}
.y19_c00300{bottom:450.165333pt;}
.y1a_c00300{bottom:450.434667pt;}
.y12_c00300{bottom:464.760000pt;}
.y8_c00300{bottom:477.841333pt;}
.y9_c00300{bottom:478.332000pt;}
.ya_c00300{bottom:478.564000pt;}
.yb_c00300{bottom:479.025333pt;}
.yc_c00300{bottom:479.152000pt;}
.yd_c00300{bottom:479.642667pt;}
.ye_c00300{bottom:479.872000pt;}
.yf_c00300{bottom:480.402667pt;}
.y10_c00300{bottom:481.270667pt;}
.y11_c00300{bottom:481.542667pt;}
.y2_c00300{bottom:492.721333pt;}
.y3_c00300{bottom:493.190667pt;}
.y4_c00300{bottom:493.624000pt;}
.y5_c00300{bottom:494.476000pt;}
.y6_c00300{bottom:494.705333pt;}
.y7_c00300{bottom:494.993333pt;}
.y1_c00300{bottom:509.520000pt;}
.hf_c00300{height:49.466667pt;}
.hb_c00300{height:51.333333pt;}
.h5_c00300{height:52.266667pt;}
.h8_c00300{height:53.200000pt;}
.hd_c00300{height:54.133333pt;}
.he_c00300{height:55.066667pt;}
.h4_c00300{height:56.000000pt;}
.h2_c00300{height:56.933333pt;}
.ha_c00300{height:57.866667pt;}
.h9_c00300{height:58.800000pt;}
.h7_c00300{height:59.733333pt;}
.h6_c00300{height:60.666667pt;}
.hc_c00300{height:61.600000pt;}
.h3_c00300{height:63.466667pt;}
.h1_c00300{height:550.000000pt;}
.h0_c00300{height:550.266667pt;}
.w0_c00300{width:319.200000pt;}
.w1_c00300{width:319.333333pt;}
.x0_c00300{left:0.000000pt;}
.x4c_c00300{left:19.198667pt;}
.x74_c00300{left:21.360000pt;}
.x2_c00300{left:22.468000pt;}
.x11_c00300{left:23.757333pt;}
.x70_c00300{left:25.198667pt;}
.x3f_c00300{left:26.757333pt;}
.x15_c00300{left:28.273333pt;}
.x5f_c00300{left:29.758667pt;}
.x6c_c00300{left:31.816000pt;}
.x5e_c00300{left:34.078667pt;}
.x37_c00300{left:37.790667pt;}
.x48_c00300{left:39.118667pt;}
.x44_c00300{left:41.449333pt;}
.x34_c00300{left:42.836000pt;}
.x4d_c00300{left:46.798667pt;}
.x38_c00300{left:51.508000pt;}
.x20_c00300{left:52.538667pt;}
.x40_c00300{left:53.893333pt;}
.x51_c00300{left:54.958667pt;}
.x8_c00300{left:55.905333pt;}
.x75_c00300{left:60.720000pt;}
.x27_c00300{left:62.042667pt;}
.x12_c00300{left:64.077333pt;}
.x3_c00300{left:65.161333pt;}
.x39_c00300{left:67.585333pt;}
.x64_c00300{left:68.638667pt;}
.x9_c00300{left:71.361333pt;}
.x1c_c00300{left:72.570667pt;}
.x57_c00300{left:76.318667pt;}
.x21_c00300{left:82.518667pt;}
.x71_c00300{left:83.518667pt;}
.x63_c00300{left:84.718667pt;}
.x49_c00300{left:88.318667pt;}
.x52_c00300{left:90.238667pt;}
.x22_c00300{left:93.582667pt;}
.x41_c00300{left:95.206667pt;}
.x28_c00300{left:99.722667pt;}
.x35_c00300{left:100.870667pt;}
.xa_c00300{left:102.085333pt;}
.x4_c00300{left:104.532000pt;}
.x72_c00300{left:105.838667pt;}
.x78_c00300{left:106.800000pt;}
.x4a_c00300{left:109.438667pt;}
.xb_c00300{left:110.558667pt;}
.x45_c00300{left:111.504000pt;}
.x3a_c00300{left:113.182667pt;}
.x16_c00300{left:114.414667pt;}
.x59_c00300{left:115.678667pt;}
.x67_c00300{left:117.358667pt;}
.x76_c00300{left:119.040000pt;}
.x13_c00300{left:120.237333pt;}
.x6d_c00300{left:122.757333pt;}
.x3d_c00300{left:124.798667pt;}
.x53_c00300{left:127.918667pt;}
.x36_c00300{left:131.406667pt;}
.x42_c00300{left:136.698667pt;}
.x54_c00300{left:139.198667pt;}
.x32_c00300{left:141.485333pt;}
.xc_c00300{left:143.245333pt;}
.x29_c00300{left:146.770667pt;}
.x1_c00300{left:148.320000pt;}
.x6f_c00300{left:150.728000pt;}
.x2d_c00300{left:153.228000pt;}
.x17_c00300{left:155.634667pt;}
.xd_c00300{left:158.493333pt;}
.x55_c00300{left:160.798667pt;}
.x60_c00300{left:161.758667pt;}
.x5a_c00300{left:166.318667pt;}
.x46_c00300{left:167.657333pt;}
.x2e_c00300{left:169.544000pt;}
.x18_c00300{left:171.296000pt;}
.x1d_c00300{left:172.196000pt;}
.x65_c00300{left:173.758667pt;}
.x23_c00300{left:175.085333pt;}
.x61_c00300{left:179.038667pt;}
.x5_c00300{left:182.026667pt;}
.x5b_c00300{left:184.078667pt;}
.x24_c00300{left:187.402667pt;}
.x3b_c00300{left:192.133333pt;}
.xe_c00300{left:193.858667pt;}
.x6a_c00300{left:195.249333pt;}
.x43_c00300{left:196.688000pt;}
.x2a_c00300{left:198.360000pt;}
.x4e_c00300{left:199.678667pt;}
.x2f_c00300{left:201.049333pt;}
.x6_c00300{left:202.925333pt;}
.x62_c00300{left:204.718667pt;}
.x3c_c00300{left:207.744000pt;}
.x79_c00300{left:209.040000pt;}
.x19_c00300{left:211.540000pt;}
.x33_c00300{left:213.242667pt;}
.x4b_c00300{left:214.798667pt;}
.x2b_c00300{left:216.129333pt;}
.x4f_c00300{left:217.918667pt;}
.x56_c00300{left:221.278667pt;}
.x73_c00300{left:224.398667pt;}
.x7_c00300{left:229.100000pt;}
.x1a_c00300{left:233.454667pt;}
.x68_c00300{left:236.398667pt;}
.x5c_c00300{left:239.758667pt;}
.x47_c00300{left:241.841333pt;}
.x25_c00300{left:244.276000pt;}
.x1e_c00300{left:245.637333pt;}
.x66_c00300{left:246.718667pt;}
.x1b_c00300{left:250.265333pt;}
.xf_c00300{left:251.700000pt;}
.x5d_c00300{left:254.638667pt;}
.x30_c00300{left:256.010667pt;}
.x26_c00300{left:257.494667pt;}
.x50_c00300{left:260.398667pt;}
.x14_c00300{left:263.517333pt;}
.x58_c00300{left:265.198667pt;}
.x3e_c00300{left:266.158667pt;}
.x1f_c00300{left:267.674667pt;}
.x10_c00300{left:269.864000pt;}
.x6b_c00300{left:271.352000pt;}
.x69_c00300{left:272.398667pt;}
.x31_c00300{left:273.742667pt;}
.x2c_c00300{left:275.129333pt;}
.x6e_c00300{left:276.841333pt;}
.x77_c00300{left:278.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00301 {
    display:none;
  }
  .loading-indicator_c00301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00301 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00301 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00301" -> "#page-container .classname_c00301")
 */
.pf_c00301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00301 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00301 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00301 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00301 {overflow:visible;}
  }
}
.c_c00301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00301 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00301:after { /* webkit #35443 */
  content: '';
}
.t_c00301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00301 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00301 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00301 { /* info for Javascript */
  display:none;
}
.l_c00301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00301:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00301 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00301.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.105840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105840,0.000000,0.000000,0.250000,0,0);}
.ma0_c00301{transform:matrix(0.127285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127285,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{transform:matrix(0.130085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00301{transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.153570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153570,0.000000,0.000000,0.250000,0,0);}
.m6b_c00301{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.mc9_c00301{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.ma4_c00301{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.m99_c00301{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.162535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162535,0.000000,0.000000,0.250000,0,0);}
.m96_c00301{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.mc5_c00301{transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164930,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.mbe_c00301{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.md1_c00301{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mae_c00301{transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);}
.m9e_c00301{transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);}
.me7_c00301{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);}
.me2_c00301{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.mb3_c00301{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.m55_c00301{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.mb9_c00301{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.meb_c00301{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.mee_c00301{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.m2f_c00301{transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173070,0.000000,0.000000,0.250000,0,0);}
.m77_c00301{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.mb2_c00301{transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);}
.mdd_c00301{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);}
.ma6_c00301{transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);}
.m98_c00301{transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);}
.me4_c00301{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m9d_c00301{transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m4d_c00301{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);}
.m84_c00301{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m9a_c00301{transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176030,0.000000,0.000000,0.250000,0,0);}
.ma8_c00301{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.md0_c00301{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m70_c00301{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);}
.mb8_c00301{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.md3_c00301{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mc6_c00301{transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);}
.mcf_c00301{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.mc3_c00301{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.m6e_c00301{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.m51_c00301{transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);}
.m87_c00301{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.ma9_c00301{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.mf0_c00301{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.mc1_c00301{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.ma5_c00301{transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00301{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m85_c00301{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.mb1_c00301{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m69_c00301{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00301{transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m83_c00301{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m62_c00301{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.me9_c00301{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.mbd_c00301{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);}
.m8b_c00301{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.m59_c00301{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.mad_c00301{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.m68_c00301{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.mac_c00301{transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);}
.ma7_c00301{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.ma2_c00301{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m53_c00301{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.m89_c00301{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.m79_c00301{transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);}
.m6a_c00301{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.mc2_c00301{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.mdc_c00301{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.mb7_c00301{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.mce_c00301{transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);}
.m31_c00301{transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188330,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m6c_c00301{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.m33_c00301{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m6f_c00301{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.m93_c00301{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mc7_c00301{transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190355,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);}
.m34_c00301{transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00301{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);}
.ma1_c00301{transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00301{transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191740,0.000000,0.000000,0.250000,0,0);}
.me0_c00301{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.m88_c00301{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.192785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192785,0.000000,0.000000,0.250000,0,0);}
.mec_c00301{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.me8_c00301{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.mcd_c00301{transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193440,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.m75_c00301{transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.me1_c00301{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.maf_c00301{transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);}
.m32_c00301{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m9c_c00301{transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.m47_c00301{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.md2_c00301{transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);}
.m54_c00301{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.m73_c00301{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m76_c00301{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.mbf_c00301{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m71_c00301{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md6_c00301{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.mc8_c00301{transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198265,0.000000,0.000000,0.250000,0,0);}
.maa_c00301{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mdb_c00301{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m82_c00301{transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199760,0.000000,0.000000,0.250000,0,0);}
.m7e_c00301{transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);}
.m9f_c00301{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m52_c00301{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.m90_c00301{transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);}
.m60_c00301{transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);}
.m74_c00301{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.me3_c00301{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m63_c00301{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00301{transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203135,0.000000,0.000000,0.250000,0,0);}
.m72_c00301{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.mca_c00301{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m5b_c00301{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m7a_c00301{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m4f_c00301{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.mb0_c00301{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00301{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m65_c00301{transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);}
.m91_c00301{transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);}
.m9b_c00301{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.mb5_c00301{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.mde_c00301{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m86_c00301{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m8f_c00301{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m56_c00301{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m7d_c00301{transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);}
.m64_c00301{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m5f_c00301{transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.214985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214985,0.000000,0.000000,0.250000,0,0);}
.mbb_c00301{transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);}
.mcb_c00301{transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m7b_c00301{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m66_c00301{transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);}
.m95_c00301{transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216390,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);}
.m92_c00301{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.me6_c00301{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.mea_c00301{transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);}
.md5_c00301{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.mcc_c00301{transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);}
.m78_c00301{transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219445,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m94_c00301{transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.med_c00301{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.mda_c00301{transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);}
.me5_c00301{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m67_c00301{transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);}
.mb4_c00301{transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);}
.md4_c00301{transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);}
.m7c_c00301{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);}
.m61_c00301{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m8e_c00301{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m50_c00301{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);}
.m8c_c00301{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.mba_c00301{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);}
.mab_c00301{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.mb6_c00301{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00301{transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237335,0.000000,0.000000,0.250000,0,0);}
.m6d_c00301{transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.mbc_c00301{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.m5d_c00301{transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);}
.md7_c00301{transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);}
.m5c_c00301{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.md8_c00301{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.mf1_c00301{transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m7f_c00301{transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m8d_c00301{transform:matrix(0.258215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00301{transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.292235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292235,0.000000,0.000000,0.250000,0,0);}
.md9_c00301{transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.310290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310290,0.000000,0.000000,0.250000,0,0);}
.m80_c00301{transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311860,0.000000,0.000000,0.250000,0,0);}
.mdf_c00301{transform:matrix(0.404320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404320,0.000000,0.000000,0.250000,0,0);}
.m97_c00301{transform:matrix(0.424860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424860,0.000000,0.000000,0.250000,0,0);}
.mef_c00301{transform:matrix(0.579545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579545,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:0.000000px;}
.fc0_c00301{color:transparent;}
.fs8_c00301{font-size:55.650000px;}
.fs9_c00301{font-size:58.800000px;}
.fs3_c00301{font-size:59.850000px;}
.fsb_c00301{font-size:60.900000px;}
.fs4_c00301{font-size:61.950000px;}
.fs5_c00301{font-size:63.000000px;}
.fsa_c00301{font-size:64.050000px;}
.fs6_c00301{font-size:66.150000px;}
.fs7_c00301{font-size:67.200000px;}
.fs2_c00301{font-size:68.250000px;}
.fsc_c00301{font-size:69.300000px;}
.fs1_c00301{font-size:70.350000px;}
.fs0_c00301{font-size:118.650000px;}
.y0_c00301{bottom:0.000000px;}
.y21_c00301{bottom:31.051500px;}
.y20_c00301{bottom:47.791500px;}
.y1f_c00301{bottom:64.624500px;}
.y1e_c00301{bottom:81.123000px;}
.y1d_c00301{bottom:97.833000px;}
.y1c_c00301{bottom:115.050000px;}
.y1b_c00301{bottom:132.355500px;}
.y1a_c00301{bottom:150.555000px;}
.y19_c00301{bottom:167.260500px;}
.y18_c00301{bottom:185.410500px;}
.y17_c00301{bottom:202.297500px;}
.y16_c00301{bottom:218.769000px;}
.y15_c00301{bottom:236.046000px;}
.y14_c00301{bottom:252.694500px;}
.y13_c00301{bottom:269.608500px;}
.y12_c00301{bottom:285.930000px;}
.y11_c00301{bottom:303.034500px;}
.y10_c00301{bottom:320.340000px;}
.yf_c00301{bottom:337.500000px;}
.ye_c00301{bottom:354.753000px;}
.yd_c00301{bottom:371.911500px;}
.yc_c00301{bottom:388.477500px;}
.yb_c00301{bottom:405.280500px;}
.ya_c00301{bottom:422.253000px;}
.y9_c00301{bottom:439.476000px;}
.y8_c00301{bottom:455.760000px;}
.y7_c00301{bottom:473.376000px;}
.y6_c00301{bottom:490.266000px;}
.y5_c00301{bottom:507.628500px;}
.y4_c00301{bottom:524.368500px;}
.y3_c00301{bottom:541.168500px;}
.y2_c00301{bottom:557.730000px;}
.y1_c00301{bottom:570.105000px;}
.ha_c00301{height:55.650000px;}
.hb_c00301{height:58.800000px;}
.h5_c00301{height:59.850000px;}
.hd_c00301{height:60.900000px;}
.h6_c00301{height:61.950000px;}
.h7_c00301{height:63.000000px;}
.hc_c00301{height:64.050000px;}
.h8_c00301{height:66.150000px;}
.h9_c00301{height:67.200000px;}
.h4_c00301{height:68.250000px;}
.he_c00301{height:69.300000px;}
.h3_c00301{height:70.350000px;}
.h2_c00301{height:118.650000px;}
.h1_c00301{height:618.750000px;}
.h0_c00301{height:619.050000px;}
.w0_c00301{width:359.100000px;}
.w1_c00301{width:359.250000px;}
.x0_c00301{left:0.000000px;}
.x6f_c00301{left:33.210000px;}
.x74_c00301{left:34.830000px;}
.x7_c00301{left:35.910000px;}
.x41_c00301{left:37.530000px;}
.x2_c00301{left:38.610000px;}
.x13_c00301{left:41.040000px;}
.x8_c00301{left:55.080000px;}
.x29_c00301{left:56.430000px;}
.xf_c00301{left:57.780000px;}
.x55_c00301{left:60.210000px;}
.x3a_c00301{left:61.830000px;}
.x22_c00301{left:64.260000px;}
.x1d_c00301{left:69.930000px;}
.x72_c00301{left:71.280000px;}
.x4d_c00301{left:73.980000px;}
.x31_c00301{left:75.330000px;}
.x56_c00301{left:80.190000px;}
.x6c_c00301{left:83.700000px;}
.x2a_c00301{left:86.130000px;}
.x5b_c00301{left:88.290000px;}
.x14_c00301{left:89.910000px;}
.x4e_c00301{left:93.960000px;}
.x3_c00301{left:96.930000px;}
.x5e_c00301{left:98.550000px;}
.x75_c00301{left:100.980000px;}
.x3b_c00301{left:102.330000px;}
.x10_c00301{left:103.680000px;}
.x6d_c00301{left:106.110000px;}
.x1e_c00301{left:108.540000px;}
.x65_c00301{left:110.700000px;}
.x32_c00301{left:111.780000px;}
.x9_c00301{left:113.130000px;}
.x46_c00301{left:115.290000px;}
.x42_c00301{left:117.180000px;}
.x15_c00301{left:121.500000px;}
.x3c_c00301{left:122.850000px;}
.x37_c00301{left:125.550000px;}
.x4f_c00301{left:128.250000px;}
.x1f_c00301{left:129.870000px;}
.xa_c00301{left:130.950000px;}
.x67_c00301{left:132.300000px;}
.x2b_c00301{left:133.650000px;}
.x33_c00301{left:137.160000px;}
.x43_c00301{left:139.590000px;}
.x23_c00301{left:141.750000px;}
.x1a_c00301{left:143.100000px;}
.x57_c00301{left:144.990000px;}
.x5f_c00301{left:146.880000px;}
.x7a_c00301{left:153.090000px;}
.x77_c00301{left:157.680000px;}
.x68_c00301{left:158.760000px;}
.x51_c00301{left:159.840000px;}
.x49_c00301{left:162.270000px;}
.x4_c00301{left:164.970000px;}
.x2c_c00301{left:167.670000px;}
.x1_c00301{left:169.290000px;}
.x16_c00301{left:171.990000px;}
.x78_c00301{left:175.770000px;}
.x6e_c00301{left:179.280000px;}
.x3d_c00301{left:181.710000px;}
.x24_c00301{left:184.680000px;}
.xb_c00301{left:186.300000px;}
.x5_c00301{left:191.430000px;}
.x11_c00301{left:194.400000px;}
.x3e_c00301{left:196.830000px;}
.x70_c00301{left:198.180000px;}
.x38_c00301{left:200.070000px;}
.x25_c00301{left:203.040000px;}
.x47_c00301{left:204.390000px;}
.x69_c00301{left:205.470000px;}
.x2d_c00301{left:207.630000px;}
.x7b_c00301{left:209.790000px;}
.xc_c00301{left:211.950000px;}
.x4a_c00301{left:214.110000px;}
.x3f_c00301{left:215.730000px;}
.x20_c00301{left:217.350000px;}
.x60_c00301{left:219.240000px;}
.x1b_c00301{left:220.590000px;}
.x7c_c00301{left:221.940000px;}
.x58_c00301{left:223.560000px;}
.x50_c00301{left:224.910000px;}
.x76_c00301{left:227.880000px;}
.x44_c00301{left:228.960000px;}
.x52_c00301{left:233.550000px;}
.x5c_c00301{left:234.900000px;}
.x17_c00301{left:239.490000px;}
.x4b_c00301{left:241.650000px;}
.x71_c00301{left:242.730000px;}
.x26_c00301{left:245.430000px;}
.x34_c00301{left:248.130000px;}
.x1c_c00301{left:250.290000px;}
.x62_c00301{left:252.450000px;}
.x2e_c00301{left:253.800000px;}
.x48_c00301{left:256.500000px;}
.x45_c00301{left:257.850000px;}
.x5d_c00301{left:258.930000px;}
.x6a_c00301{left:260.550000px;}
.x12_c00301{left:262.170000px;}
.x27_c00301{left:264.330000px;}
.x63_c00301{left:266.220000px;}
.x53_c00301{left:268.110000px;}
.x59_c00301{left:269.190000px;}
.x61_c00301{left:271.350000px;}
.x6_c00301{left:273.510000px;}
.x35_c00301{left:274.590000px;}
.xd_c00301{left:277.290000px;}
.x2f_c00301{left:278.640000px;}
.x64_c00301{left:285.930000px;}
.x54_c00301{left:287.280000px;}
.xe_c00301{left:288.360000px;}
.x28_c00301{left:292.140000px;}
.x40_c00301{left:293.490000px;}
.x21_c00301{left:297.270000px;}
.x4c_c00301{left:298.620000px;}
.x7d_c00301{left:299.700000px;}
.x18_c00301{left:302.670000px;}
.x30_c00301{left:306.450000px;}
.x73_c00301{left:309.960000px;}
.x79_c00301{left:312.120000px;}
.x36_c00301{left:313.740000px;}
.x66_c00301{left:314.820000px;}
.x7e_c00301{left:316.440000px;}
.x5a_c00301{left:318.870000px;}
.x39_c00301{left:321.570000px;}
.x6b_c00301{left:323.460000px;}
.x19_c00301{left:324.810000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
.fs8_c00301{font-size:49.466667pt;}
.fs9_c00301{font-size:52.266667pt;}
.fs3_c00301{font-size:53.200000pt;}
.fsb_c00301{font-size:54.133333pt;}
.fs4_c00301{font-size:55.066667pt;}
.fs5_c00301{font-size:56.000000pt;}
.fsa_c00301{font-size:56.933333pt;}
.fs6_c00301{font-size:58.800000pt;}
.fs7_c00301{font-size:59.733333pt;}
.fs2_c00301{font-size:60.666667pt;}
.fsc_c00301{font-size:61.600000pt;}
.fs1_c00301{font-size:62.533333pt;}
.fs0_c00301{font-size:105.466667pt;}
.y0_c00301{bottom:0.000000pt;}
.y21_c00301{bottom:27.601333pt;}
.y20_c00301{bottom:42.481333pt;}
.y1f_c00301{bottom:57.444000pt;}
.y1e_c00301{bottom:72.109333pt;}
.y1d_c00301{bottom:86.962667pt;}
.y1c_c00301{bottom:102.266667pt;}
.y1b_c00301{bottom:117.649333pt;}
.y1a_c00301{bottom:133.826667pt;}
.y19_c00301{bottom:148.676000pt;}
.y18_c00301{bottom:164.809333pt;}
.y17_c00301{bottom:179.820000pt;}
.y16_c00301{bottom:194.461333pt;}
.y15_c00301{bottom:209.818667pt;}
.y14_c00301{bottom:224.617333pt;}
.y13_c00301{bottom:239.652000pt;}
.y12_c00301{bottom:254.160000pt;}
.y11_c00301{bottom:269.364000pt;}
.y10_c00301{bottom:284.746667pt;}
.yf_c00301{bottom:300.000000pt;}
.ye_c00301{bottom:315.336000pt;}
.yd_c00301{bottom:330.588000pt;}
.yc_c00301{bottom:345.313333pt;}
.yb_c00301{bottom:360.249333pt;}
.ya_c00301{bottom:375.336000pt;}
.y9_c00301{bottom:390.645333pt;}
.y8_c00301{bottom:405.120000pt;}
.y7_c00301{bottom:420.778667pt;}
.y6_c00301{bottom:435.792000pt;}
.y5_c00301{bottom:451.225333pt;}
.y4_c00301{bottom:466.105333pt;}
.y3_c00301{bottom:481.038667pt;}
.y2_c00301{bottom:495.760000pt;}
.y1_c00301{bottom:506.760000pt;}
.ha_c00301{height:49.466667pt;}
.hb_c00301{height:52.266667pt;}
.h5_c00301{height:53.200000pt;}
.hd_c00301{height:54.133333pt;}
.h6_c00301{height:55.066667pt;}
.h7_c00301{height:56.000000pt;}
.hc_c00301{height:56.933333pt;}
.h8_c00301{height:58.800000pt;}
.h9_c00301{height:59.733333pt;}
.h4_c00301{height:60.666667pt;}
.he_c00301{height:61.600000pt;}
.h3_c00301{height:62.533333pt;}
.h2_c00301{height:105.466667pt;}
.h1_c00301{height:550.000000pt;}
.h0_c00301{height:550.266667pt;}
.w0_c00301{width:319.200000pt;}
.w1_c00301{width:319.333333pt;}
.x0_c00301{left:0.000000pt;}
.x6f_c00301{left:29.520000pt;}
.x74_c00301{left:30.960000pt;}
.x7_c00301{left:31.920000pt;}
.x41_c00301{left:33.360000pt;}
.x2_c00301{left:34.320000pt;}
.x13_c00301{left:36.480000pt;}
.x8_c00301{left:48.960000pt;}
.x29_c00301{left:50.160000pt;}
.xf_c00301{left:51.360000pt;}
.x55_c00301{left:53.520000pt;}
.x3a_c00301{left:54.960000pt;}
.x22_c00301{left:57.120000pt;}
.x1d_c00301{left:62.160000pt;}
.x72_c00301{left:63.360000pt;}
.x4d_c00301{left:65.760000pt;}
.x31_c00301{left:66.960000pt;}
.x56_c00301{left:71.280000pt;}
.x6c_c00301{left:74.400000pt;}
.x2a_c00301{left:76.560000pt;}
.x5b_c00301{left:78.480000pt;}
.x14_c00301{left:79.920000pt;}
.x4e_c00301{left:83.520000pt;}
.x3_c00301{left:86.160000pt;}
.x5e_c00301{left:87.600000pt;}
.x75_c00301{left:89.760000pt;}
.x3b_c00301{left:90.960000pt;}
.x10_c00301{left:92.160000pt;}
.x6d_c00301{left:94.320000pt;}
.x1e_c00301{left:96.480000pt;}
.x65_c00301{left:98.400000pt;}
.x32_c00301{left:99.360000pt;}
.x9_c00301{left:100.560000pt;}
.x46_c00301{left:102.480000pt;}
.x42_c00301{left:104.160000pt;}
.x15_c00301{left:108.000000pt;}
.x3c_c00301{left:109.200000pt;}
.x37_c00301{left:111.600000pt;}
.x4f_c00301{left:114.000000pt;}
.x1f_c00301{left:115.440000pt;}
.xa_c00301{left:116.400000pt;}
.x67_c00301{left:117.600000pt;}
.x2b_c00301{left:118.800000pt;}
.x33_c00301{left:121.920000pt;}
.x43_c00301{left:124.080000pt;}
.x23_c00301{left:126.000000pt;}
.x1a_c00301{left:127.200000pt;}
.x57_c00301{left:128.880000pt;}
.x5f_c00301{left:130.560000pt;}
.x7a_c00301{left:136.080000pt;}
.x77_c00301{left:140.160000pt;}
.x68_c00301{left:141.120000pt;}
.x51_c00301{left:142.080000pt;}
.x49_c00301{left:144.240000pt;}
.x4_c00301{left:146.640000pt;}
.x2c_c00301{left:149.040000pt;}
.x1_c00301{left:150.480000pt;}
.x16_c00301{left:152.880000pt;}
.x78_c00301{left:156.240000pt;}
.x6e_c00301{left:159.360000pt;}
.x3d_c00301{left:161.520000pt;}
.x24_c00301{left:164.160000pt;}
.xb_c00301{left:165.600000pt;}
.x5_c00301{left:170.160000pt;}
.x11_c00301{left:172.800000pt;}
.x3e_c00301{left:174.960000pt;}
.x70_c00301{left:176.160000pt;}
.x38_c00301{left:177.840000pt;}
.x25_c00301{left:180.480000pt;}
.x47_c00301{left:181.680000pt;}
.x69_c00301{left:182.640000pt;}
.x2d_c00301{left:184.560000pt;}
.x7b_c00301{left:186.480000pt;}
.xc_c00301{left:188.400000pt;}
.x4a_c00301{left:190.320000pt;}
.x3f_c00301{left:191.760000pt;}
.x20_c00301{left:193.200000pt;}
.x60_c00301{left:194.880000pt;}
.x1b_c00301{left:196.080000pt;}
.x7c_c00301{left:197.280000pt;}
.x58_c00301{left:198.720000pt;}
.x50_c00301{left:199.920000pt;}
.x76_c00301{left:202.560000pt;}
.x44_c00301{left:203.520000pt;}
.x52_c00301{left:207.600000pt;}
.x5c_c00301{left:208.800000pt;}
.x17_c00301{left:212.880000pt;}
.x4b_c00301{left:214.800000pt;}
.x71_c00301{left:215.760000pt;}
.x26_c00301{left:218.160000pt;}
.x34_c00301{left:220.560000pt;}
.x1c_c00301{left:222.480000pt;}
.x62_c00301{left:224.400000pt;}
.x2e_c00301{left:225.600000pt;}
.x48_c00301{left:228.000000pt;}
.x45_c00301{left:229.200000pt;}
.x5d_c00301{left:230.160000pt;}
.x6a_c00301{left:231.600000pt;}
.x12_c00301{left:233.040000pt;}
.x27_c00301{left:234.960000pt;}
.x63_c00301{left:236.640000pt;}
.x53_c00301{left:238.320000pt;}
.x59_c00301{left:239.280000pt;}
.x61_c00301{left:241.200000pt;}
.x6_c00301{left:243.120000pt;}
.x35_c00301{left:244.080000pt;}
.xd_c00301{left:246.480000pt;}
.x2f_c00301{left:247.680000pt;}
.x64_c00301{left:254.160000pt;}
.x54_c00301{left:255.360000pt;}
.xe_c00301{left:256.320000pt;}
.x28_c00301{left:259.680000pt;}
.x40_c00301{left:260.880000pt;}
.x21_c00301{left:264.240000pt;}
.x4c_c00301{left:265.440000pt;}
.x7d_c00301{left:266.400000pt;}
.x18_c00301{left:269.040000pt;}
.x30_c00301{left:272.400000pt;}
.x73_c00301{left:275.520000pt;}
.x79_c00301{left:277.440000pt;}
.x36_c00301{left:278.880000pt;}
.x66_c00301{left:279.840000pt;}
.x7e_c00301{left:281.280000pt;}
.x5a_c00301{left:283.440000pt;}
.x39_c00301{left:285.840000pt;}
.x6b_c00301{left:287.520000pt;}
.x19_c00301{left:288.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00302 {
    display:none;
  }
  .loading-indicator_c00302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00302 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00302 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00302" -> "#page-container .classname_c00302")
 */
.pf_c00302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00302 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00302 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00302 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00302 {overflow:visible;}
  }
}
.c_c00302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00302 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00302:after { /* webkit #35443 */
  content: '';
}
.t_c00302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00302 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00302 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00302 { /* info for Javascript */
  display:none;
}
.l_c00302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00302:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00302 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00302.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.104490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104490,0.000000,0.000000,0.250000,0,0);}
.mea_c00302{transform:matrix(0.117015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117015,0.000000,0.000000,0.250000,0,0);}
.med_c00302{transform:matrix(0.117355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117355,0.000000,0.000000,0.250000,0,0);}
.mec_c00302{transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.141755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141755,0.000000,0.000000,0.250000,0,0);}
.me4_c00302{transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{transform:matrix(0.152971,-0.001683,0.002750,0.249985,0,0);-ms-transform:matrix(0.152971,-0.001683,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152971,-0.001683,0.002750,0.249985,0,0);}
.m10_c00302{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.me3_c00302{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.156581,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156581,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156581,-0.001722,0.002750,0.249985,0,0);}
.m35_c00302{transform:matrix(0.156656,-0.001723,0.002750,0.249985,0,0);-ms-transform:matrix(0.156656,-0.001723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156656,-0.001723,0.002750,0.249985,0,0);}
.m1c_c00302{transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);}
.me7_c00302{transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);}
.ma1_c00302{transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158745,0.000000,0.000000,0.250000,0,0);}
.me5_c00302{transform:matrix(0.159180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159180,0.000000,0.000000,0.250000,0,0);}
.m9b_c00302{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.mf3_c00302{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.m4d_c00302{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00302{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);}
.ma0_c00302{transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mc9_c00302{transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);}
.m5a_c00302{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00302{transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167515,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);}
.mf7_c00302{transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168820,0.000000,0.000000,0.250000,0,0);}
.mcd_c00302{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.me2_c00302{transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169790,0.000000,0.000000,0.250000,0,0);}
.m81_c00302{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.md5_c00302{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.mf5_c00302{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.md0_c00302{transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);}
.mb7_c00302{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.ma3_c00302{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00302{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m8e_c00302{transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{transform:matrix(0.172400,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172400,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172400,-0.001896,0.002750,0.249985,0,0);}
.m26_c00302{transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{transform:matrix(0.173465,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173465,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173465,-0.001908,0.002750,0.249985,0,0);}
.m40_c00302{transform:matrix(0.173490,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173490,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173490,-0.001908,0.002750,0.249985,0,0);}
.meb_c00302{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.md2_c00302{transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);}
.me6_c00302{transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174880,0.000000,0.000000,0.250000,0,0);}
.mee_c00302{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00302{transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.175844,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175844,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175844,-0.001934,0.002750,0.249985,0,0);}
.m50_c00302{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177145,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);}
.m63_c00302{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.mab_c00302{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.m56_c00302{transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);}
.m9d_c00302{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.me9_c00302{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.mc6_c00302{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00302{transform:matrix(0.181254,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181254,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181254,-0.001994,0.002750,0.249985,0,0);}
.m45_c00302{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.m80_c00302{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m97_c00302{transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);}
.md1_c00302{transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.182399,-0.002006,0.002750,0.249985,0,0);-ms-transform:matrix(0.182399,-0.002006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182399,-0.002006,0.002750,0.249985,0,0);}
.m8c_c00302{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.mca_c00302{transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.m93_c00302{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.m83_c00302{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.185149,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185149,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185149,-0.002037,0.002750,0.249985,0,0);}
.m57_c00302{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.mcf_c00302{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.mb6_c00302{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.md6_c00302{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m37_c00302{transform:matrix(0.186374,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186374,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186374,-0.002050,0.002750,0.249985,0,0);}
.m68_c00302{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(0.186769,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186769,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186769,-0.002054,0.002750,0.249985,0,0);}
.mce_c00302{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m78_c00302{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m84_c00302{transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);}
.m98_c00302{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.mf4_c00302{transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);}
.md3_c00302{transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m49_c00302{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mb1_c00302{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);}
.m4f_c00302{transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.me1_c00302{transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);}
.ma2_c00302{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mb9_c00302{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.mb8_c00302{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.m66_c00302{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);}
.ma8_c00302{transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);}
.mf1_c00302{transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);}
.mf6_c00302{transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);}
.mdf_c00302{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.mc3_c00302{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.m91_c00302{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.m96_c00302{transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198720,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.mde_c00302{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m6a_c00302{transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);}
.maa_c00302{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.mc1_c00302{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.mf2_c00302{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00302{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00302{transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.202153,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202153,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202153,-0.002224,0.002750,0.249985,0,0);}
.m53_c00302{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203585,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.mbe_c00302{transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m87_c00302{transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);}
.m71_c00302{transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);}
.mbf_c00302{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00302{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.mba_c00302{transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);}
.mef_c00302{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.m9c_c00302{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.mc7_c00302{transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.mdb_c00302{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.208092,-0.002289,0.002750,0.249985,0,0);-ms-transform:matrix(0.208092,-0.002289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208092,-0.002289,0.002750,0.249985,0,0);}
.md7_c00302{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.maf_c00302{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.209710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209710,0.000000,0.000000,0.250000,0,0);}
.m9f_c00302{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);}
.mc5_c00302{transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m64_c00302{transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);}
.m67_c00302{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.ma7_c00302{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.ma4_c00302{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mbd_c00302{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m65_c00302{transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);}
.mf0_c00302{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.mda_c00302{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.212057,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212057,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212057,-0.002333,0.002750,0.249985,0,0);}
.mc2_c00302{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.m70_c00302{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00302{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00302{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00302{transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215020,0.000000,0.000000,0.250000,0,0);}
.md8_c00302{transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);}
.m89_c00302{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.mdc_c00302{transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);}
.m6e_c00302{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.mc8_c00302{transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);}
.m7d_c00302{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m7c_c00302{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00302{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.mac_c00302{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.ma5_c00302{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.mb2_c00302{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.md4_c00302{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m75_c00302{transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220835,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220985,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.mae_c00302{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.m48_c00302{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.mc4_c00302{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00302{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{transform:matrix(0.226180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226180,0.000000,0.000000,0.250000,0,0);}
.mb0_c00302{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m5b_c00302{transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);}
.mad_c00302{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m99_c00302{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.mbc_c00302{transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(0.232815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232815,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.me0_c00302{transform:matrix(0.233770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233770,0.000000,0.000000,0.250000,0,0);}
.m5d_c00302{transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.236410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236410,0.000000,0.000000,0.250000,0,0);}
.m73_c00302{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);}
.mcb_c00302{transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);}
.md9_c00302{transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241720,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m5f_c00302{transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);}
.m62_c00302{transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);}
.mb4_c00302{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.m6c_c00302{transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);}
.m60_c00302{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.me8_c00302{transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);}
.m6d_c00302{transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);}
.mb3_c00302{transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.317746,-0.003495,0.002750,0.249985,0,0);-ms-transform:matrix(0.317746,-0.003495,0.002750,0.249985,0,0);-webkit-transform:matrix(0.317746,-0.003495,0.002750,0.249985,0,0);}
.m9a_c00302{transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.334990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334990,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.602030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602030,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:0.000000px;}
.fc0_c00302{color:transparent;}
.fsb_c00302{font-size:54.600000px;}
.fs9_c00302{font-size:55.650000px;}
.fsd_c00302{font-size:57.750000px;}
.fsa_c00302{font-size:58.800000px;}
.fse_c00302{font-size:59.850000px;}
.fs2_c00302{font-size:60.900000px;}
.fs3_c00302{font-size:61.950000px;}
.fs7_c00302{font-size:63.000000px;}
.fs8_c00302{font-size:65.100000px;}
.fsc_c00302{font-size:66.150000px;}
.fs1_c00302{font-size:67.200000px;}
.fs5_c00302{font-size:68.254129px;}
.fs4_c00302{font-size:69.300000px;}
.fs6_c00302{font-size:69.304193px;}
.fs0_c00302{font-size:118.650000px;}
.fsf_c00302{font-size:177.450000px;}
.y0_c00302{bottom:0.000000px;}
.y64_c00302{bottom:28.180500px;}
.y63_c00302{bottom:43.987500px;}
.y62_c00302{bottom:80.640000px;}
.y61_c00302{bottom:97.107000px;}
.y5a_c00302{bottom:109.894500px;}
.y5b_c00302{bottom:110.790000px;}
.y5c_c00302{bottom:111.061500px;}
.y5d_c00302{bottom:111.445500px;}
.y5e_c00302{bottom:112.594500px;}
.y5f_c00302{bottom:113.094000px;}
.y60_c00302{bottom:113.899500px;}
.y59_c00302{bottom:132.901500px;}
.y58_c00302{bottom:145.647000px;}
.y51_c00302{bottom:162.274500px;}
.y52_c00302{bottom:162.718500px;}
.y53_c00302{bottom:162.934500px;}
.y54_c00302{bottom:163.281000px;}
.y55_c00302{bottom:163.773000px;}
.y56_c00302{bottom:164.245500px;}
.y57_c00302{bottom:165.318000px;}
.y50_c00302{bottom:180.474000px;}
.y4f_c00302{bottom:198.900000px;}
.y4e_c00302{bottom:215.824500px;}
.y4d_c00302{bottom:232.231500px;}
.y4c_c00302{bottom:249.687000px;}
.y4b_c00302{bottom:267.331500px;}
.y4a_c00302{bottom:284.881500px;}
.y49_c00302{bottom:301.803000px;}
.y48_c00302{bottom:318.964500px;}
.y47_c00302{bottom:334.618500px;}
.y3f_c00302{bottom:349.381500px;}
.y40_c00302{bottom:350.056500px;}
.y41_c00302{bottom:350.958000px;}
.y42_c00302{bottom:351.244500px;}
.y43_c00302{bottom:352.194000px;}
.y44_c00302{bottom:352.593000px;}
.y45_c00302{bottom:353.319000px;}
.y46_c00302{bottom:353.637000px;}
.y3e_c00302{bottom:366.484500px;}
.y3d_c00302{bottom:382.920000px;}
.y3c_c00302{bottom:401.073000px;}
.y3b_c00302{bottom:418.174500px;}
.y38_c00302{bottom:434.363662px;}
.y3a_c00302{bottom:434.363703px;}
.y39_c00302{bottom:434.363856px;}
.y35_c00302{bottom:434.364091px;}
.y37_c00302{bottom:434.364102px;}
.y33_c00302{bottom:434.364184px;}
.y36_c00302{bottom:434.364208px;}
.y34_c00302{bottom:434.364378px;}
.y2b_c00302{bottom:450.631500px;}
.y2c_c00302{bottom:451.077000px;}
.y2d_c00302{bottom:451.581966px;}
.y2e_c00302{bottom:452.274289px;}
.y2f_c00302{bottom:452.416585px;}
.y30_c00302{bottom:452.653558px;}
.y31_c00302{bottom:453.152584px;}
.y32_c00302{bottom:453.545251px;}
.y23_c00302{bottom:467.107500px;}
.y24_c00302{bottom:467.848500px;}
.y25_c00302{bottom:468.091500px;}
.y26_c00302{bottom:468.301500px;}
.y27_c00302{bottom:468.897000px;}
.y28_c00302{bottom:469.104000px;}
.y29_c00302{bottom:469.809000px;}
.y2a_c00302{bottom:470.205000px;}
.y1c_c00302{bottom:484.119000px;}
.y1d_c00302{bottom:484.386000px;}
.y1e_c00302{bottom:485.110500px;}
.y1f_c00302{bottom:485.704500px;}
.y20_c00302{bottom:486.397500px;}
.y21_c00302{bottom:487.315500px;}
.y22_c00302{bottom:487.551000px;}
.y14_c00302{bottom:501.666000px;}
.y15_c00302{bottom:502.467000px;}
.y16_c00302{bottom:502.777500px;}
.y17_c00302{bottom:503.265000px;}
.y18_c00302{bottom:503.749500px;}
.y19_c00302{bottom:504.328500px;}
.y1a_c00302{bottom:504.918000px;}
.y1b_c00302{bottom:505.621500px;}
.yb_c00302{bottom:518.136000px;}
.yc_c00302{bottom:519.093000px;}
.yd_c00302{bottom:519.492000px;}
.ye_c00302{bottom:520.195500px;}
.yf_c00302{bottom:520.387500px;}
.y10_c00302{bottom:520.780500px;}
.y11_c00302{bottom:521.785500px;}
.y12_c00302{bottom:522.187500px;}
.y13_c00302{bottom:522.498000px;}
.ya_c00302{bottom:536.283000px;}
.y2_c00302{bottom:551.883000px;}
.y3_c00302{bottom:552.090000px;}
.y4_c00302{bottom:552.690000px;}
.y5_c00302{bottom:553.197000px;}
.y6_c00302{bottom:553.897500px;}
.y7_c00302{bottom:554.247000px;}
.y8_c00302{bottom:555.133500px;}
.y9_c00302{bottom:555.733500px;}
.y1_c00302{bottom:566.608500px;}
.hd_c00302{height:54.600000px;}
.hb_c00302{height:55.650000px;}
.hf_c00302{height:57.750000px;}
.hc_c00302{height:58.800000px;}
.h10_c00302{height:59.850000px;}
.h4_c00302{height:60.900000px;}
.h5_c00302{height:61.950000px;}
.h9_c00302{height:63.000000px;}
.ha_c00302{height:65.100000px;}
.he_c00302{height:66.150000px;}
.h3_c00302{height:67.200000px;}
.h7_c00302{height:68.254129px;}
.h6_c00302{height:69.300000px;}
.h8_c00302{height:69.304193px;}
.h2_c00302{height:118.650000px;}
.h11_c00302{height:177.450000px;}
.h1_c00302{height:618.750000px;}
.h0_c00302{height:619.050000px;}
.w0_c00302{width:359.100000px;}
.w1_c00302{width:359.250000px;}
.x0_c00302{left:0.000000px;}
.x2c_c00302{left:26.860500px;}
.x26_c00302{left:30.391500px;}
.x57_c00302{left:32.130000px;}
.x3b_c00302{left:33.210000px;}
.xa_c00302{left:34.290000px;}
.x2_c00302{left:35.859000px;}
.x83_c00302{left:37.800000px;}
.x37_c00302{left:43.200000px;}
.x4a_c00302{left:44.958000px;}
.x3_c00302{left:49.609500px;}
.x6d_c00302{left:52.110000px;}
.x21_c00302{left:53.364000px;}
.x64_c00302{left:56.430000px;}
.x3e_c00302{left:58.050000px;}
.x31_c00302{left:59.941419px;}
.x44_c00302{left:62.100000px;}
.xb_c00302{left:63.180000px;}
.x2d_c00302{left:67.360500px;}
.x4f_c00302{left:68.851500px;}
.x75_c00302{left:69.930000px;}
.x66_c00302{left:71.010000px;}
.x58_c00302{left:72.090000px;}
.x32_c00302{left:75.871849px;}
.x3f_c00302{left:78.300000px;}
.x45_c00302{left:81.810000px;}
.x67_c00302{left:83.160000px;}
.xc_c00302{left:85.860000px;}
.x4b_c00302{left:87.111000px;}
.x4_c00302{left:89.560500px;}
.x1a_c00302{left:91.680000px;}
.x62_c00302{left:92.880000px;}
.x12_c00302{left:94.086000px;}
.x84_c00302{left:99.090000px;}
.xd_c00302{left:100.440000px;}
.x76_c00302{left:101.790000px;}
.x22_c00302{left:105.097500px;}
.x72_c00302{left:106.650000px;}
.x38_c00302{left:109.620000px;}
.x79_c00302{left:111.159000px;}
.x27_c00302{left:112.465500px;}
.x1b_c00302{left:113.830500px;}
.x70_c00302{left:117.853500px;}
.x13_c00302{left:118.998000px;}
.x50_c00302{left:120.961500px;}
.x5_c00302{left:123.310500px;}
.x5b_c00302{left:124.470000px;}
.x5f_c00302{left:126.360000px;}
.x33_c00302{left:128.525218px;}
.x28_c00302{left:130.026000px;}
.x68_c00302{left:137.430000px;}
.x63_c00302{left:141.480000px;}
.x46_c00302{left:143.370000px;}
.x7b_c00302{left:146.340000px;}
.x23_c00302{left:147.544500px;}
.x1c_c00302{left:148.605000px;}
.x7f_c00302{left:150.390000px;}
.x40_c00302{left:153.630000px;}
.xe_c00302{left:155.250000px;}
.x34_c00302{left:156.337084px;}
.x5c_c00302{left:159.300000px;}
.x4c_c00302{left:161.359500px;}
.x14_c00302{left:162.927000px;}
.x41_c00302{left:166.590000px;}
.x1_c00302{left:168.210000px;}
.x6_c00302{left:170.026500px;}
.x51_c00302{left:173.611500px;}
.x15_c00302{left:174.886500px;}
.x2e_c00302{left:176.205000px;}
.x29_c00302{left:179.701500px;}
.x5d_c00302{left:181.440000px;}
.x1d_c00302{left:183.184500px;}
.x69_c00302{left:186.030000px;}
.x39_c00302{left:187.110000px;}
.x2f_c00302{left:189.141000px;}
.x52_c00302{left:190.891500px;}
.x7_c00302{left:193.282500px;}
.x24_c00302{left:196.993500px;}
.x71_c00302{left:198.318000px;}
.x16_c00302{left:199.450500px;}
.x3c_c00302{left:201.150000px;}
.xf_c00302{left:202.500000px;}
.x47_c00302{left:205.200000px;}
.x77_c00302{left:206.550000px;}
.x30_c00302{left:210.684000px;}
.x7a_c00302{left:213.390000px;}
.x4d_c00302{left:220.671000px;}
.x81_c00302{left:223.290000px;}
.x1e_c00302{left:224.524500px;}
.x35_c00302{left:227.351181px;}
.x53_c00302{left:228.421500px;}
.x59_c00302{left:234.090000px;}
.x7c_c00302{left:235.170000px;}
.x65_c00302{left:236.250000px;}
.x54_c00302{left:242.731500px;}
.x78_c00302{left:243.810000px;}
.x48_c00302{left:245.160000px;}
.x6e_c00302{left:247.590000px;}
.x8_c00302{left:252.375000px;}
.x82_c00302{left:254.340000px;}
.x2a_c00302{left:255.775500px;}
.x55_c00302{left:258.391500px;}
.x10_c00302{left:260.280000px;}
.x17_c00302{left:262.270500px;}
.x42_c00302{left:263.790000px;}
.x6a_c00302{left:264.870000px;}
.x1f_c00302{left:266.652000px;}
.x73_c00302{left:268.110000px;}
.x7d_c00302{left:270.270000px;}
.x6f_c00302{left:271.350000px;}
.x80_c00302{left:273.240000px;}
.x5e_c00302{left:275.400000px;}
.x6c_c00302{left:276.480000px;}
.x60_c00302{left:277.560000px;}
.x25_c00302{left:279.361500px;}
.x3d_c00302{left:280.530000px;}
.x56_c00302{left:285.931500px;}
.x18_c00302{left:287.395500px;}
.x2b_c00302{left:288.723000px;}
.x3a_c00302{left:290.790000px;}
.x9_c00302{left:292.333500px;}
.x36_c00302{left:294.044749px;}
.x49_c00302{left:297.000000px;}
.x74_c00302{left:299.970000px;}
.x6b_c00302{left:304.020000px;}
.x7e_c00302{left:305.100000px;}
.x19_c00302{left:306.843000px;}
.x4e_c00302{left:310.888500px;}
.x43_c00302{left:312.930000px;}
.x20_c00302{left:316.881000px;}
.x11_c00302{left:319.410000px;}
.x5a_c00302{left:324.000000px;}
.x61_c00302{left:325.890000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.fsb_c00302{font-size:48.533333pt;}
.fs9_c00302{font-size:49.466667pt;}
.fsd_c00302{font-size:51.333333pt;}
.fsa_c00302{font-size:52.266667pt;}
.fse_c00302{font-size:53.200000pt;}
.fs2_c00302{font-size:54.133333pt;}
.fs3_c00302{font-size:55.066667pt;}
.fs7_c00302{font-size:56.000000pt;}
.fs8_c00302{font-size:57.866667pt;}
.fsc_c00302{font-size:58.800000pt;}
.fs1_c00302{font-size:59.733333pt;}
.fs5_c00302{font-size:60.670337pt;}
.fs4_c00302{font-size:61.600000pt;}
.fs6_c00302{font-size:61.603727pt;}
.fs0_c00302{font-size:105.466667pt;}
.fsf_c00302{font-size:157.733333pt;}
.y0_c00302{bottom:0.000000pt;}
.y64_c00302{bottom:25.049333pt;}
.y63_c00302{bottom:39.100000pt;}
.y62_c00302{bottom:71.680000pt;}
.y61_c00302{bottom:86.317333pt;}
.y5a_c00302{bottom:97.684000pt;}
.y5b_c00302{bottom:98.480000pt;}
.y5c_c00302{bottom:98.721333pt;}
.y5d_c00302{bottom:99.062667pt;}
.y5e_c00302{bottom:100.084000pt;}
.y5f_c00302{bottom:100.528000pt;}
.y60_c00302{bottom:101.244000pt;}
.y59_c00302{bottom:118.134667pt;}
.y58_c00302{bottom:129.464000pt;}
.y51_c00302{bottom:144.244000pt;}
.y52_c00302{bottom:144.638667pt;}
.y53_c00302{bottom:144.830667pt;}
.y54_c00302{bottom:145.138667pt;}
.y55_c00302{bottom:145.576000pt;}
.y56_c00302{bottom:145.996000pt;}
.y57_c00302{bottom:146.949333pt;}
.y50_c00302{bottom:160.421333pt;}
.y4f_c00302{bottom:176.800000pt;}
.y4e_c00302{bottom:191.844000pt;}
.y4d_c00302{bottom:206.428000pt;}
.y4c_c00302{bottom:221.944000pt;}
.y4b_c00302{bottom:237.628000pt;}
.y4a_c00302{bottom:253.228000pt;}
.y49_c00302{bottom:268.269333pt;}
.y48_c00302{bottom:283.524000pt;}
.y47_c00302{bottom:297.438667pt;}
.y3f_c00302{bottom:310.561333pt;}
.y40_c00302{bottom:311.161333pt;}
.y41_c00302{bottom:311.962667pt;}
.y42_c00302{bottom:312.217333pt;}
.y43_c00302{bottom:313.061333pt;}
.y44_c00302{bottom:313.416000pt;}
.y45_c00302{bottom:314.061333pt;}
.y46_c00302{bottom:314.344000pt;}
.y3e_c00302{bottom:325.764000pt;}
.y3d_c00302{bottom:340.373333pt;}
.y3c_c00302{bottom:356.509333pt;}
.y3b_c00302{bottom:371.710667pt;}
.y38_c00302{bottom:386.101033pt;}
.y3a_c00302{bottom:386.101069pt;}
.y39_c00302{bottom:386.101205pt;}
.y35_c00302{bottom:386.101415pt;}
.y37_c00302{bottom:386.101424pt;}
.y33_c00302{bottom:386.101497pt;}
.y36_c00302{bottom:386.101519pt;}
.y34_c00302{bottom:386.101669pt;}
.y2b_c00302{bottom:400.561333pt;}
.y2c_c00302{bottom:400.957333pt;}
.y2d_c00302{bottom:401.406192pt;}
.y2e_c00302{bottom:402.021591pt;}
.y2f_c00302{bottom:402.148076pt;}
.y30_c00302{bottom:402.358719pt;}
.y31_c00302{bottom:402.802297pt;}
.y32_c00302{bottom:403.151335pt;}
.y23_c00302{bottom:415.206667pt;}
.y24_c00302{bottom:415.865333pt;}
.y25_c00302{bottom:416.081333pt;}
.y26_c00302{bottom:416.268000pt;}
.y27_c00302{bottom:416.797333pt;}
.y28_c00302{bottom:416.981333pt;}
.y29_c00302{bottom:417.608000pt;}
.y2a_c00302{bottom:417.960000pt;}
.y1c_c00302{bottom:430.328000pt;}
.y1d_c00302{bottom:430.565333pt;}
.y1e_c00302{bottom:431.209333pt;}
.y1f_c00302{bottom:431.737333pt;}
.y20_c00302{bottom:432.353333pt;}
.y21_c00302{bottom:433.169333pt;}
.y22_c00302{bottom:433.378667pt;}
.y14_c00302{bottom:445.925333pt;}
.y15_c00302{bottom:446.637333pt;}
.y16_c00302{bottom:446.913333pt;}
.y17_c00302{bottom:447.346667pt;}
.y18_c00302{bottom:447.777333pt;}
.y19_c00302{bottom:448.292000pt;}
.y1a_c00302{bottom:448.816000pt;}
.y1b_c00302{bottom:449.441333pt;}
.yb_c00302{bottom:460.565333pt;}
.yc_c00302{bottom:461.416000pt;}
.yd_c00302{bottom:461.770667pt;}
.ye_c00302{bottom:462.396000pt;}
.yf_c00302{bottom:462.566667pt;}
.y10_c00302{bottom:462.916000pt;}
.y11_c00302{bottom:463.809333pt;}
.y12_c00302{bottom:464.166667pt;}
.y13_c00302{bottom:464.442667pt;}
.ya_c00302{bottom:476.696000pt;}
.y2_c00302{bottom:490.562667pt;}
.y3_c00302{bottom:490.746667pt;}
.y4_c00302{bottom:491.280000pt;}
.y5_c00302{bottom:491.730667pt;}
.y6_c00302{bottom:492.353333pt;}
.y7_c00302{bottom:492.664000pt;}
.y8_c00302{bottom:493.452000pt;}
.y9_c00302{bottom:493.985333pt;}
.y1_c00302{bottom:503.652000pt;}
.hd_c00302{height:48.533333pt;}
.hb_c00302{height:49.466667pt;}
.hf_c00302{height:51.333333pt;}
.hc_c00302{height:52.266667pt;}
.h10_c00302{height:53.200000pt;}
.h4_c00302{height:54.133333pt;}
.h5_c00302{height:55.066667pt;}
.h9_c00302{height:56.000000pt;}
.ha_c00302{height:57.866667pt;}
.he_c00302{height:58.800000pt;}
.h3_c00302{height:59.733333pt;}
.h7_c00302{height:60.670337pt;}
.h6_c00302{height:61.600000pt;}
.h8_c00302{height:61.603727pt;}
.h2_c00302{height:105.466667pt;}
.h11_c00302{height:157.733333pt;}
.h1_c00302{height:550.000000pt;}
.h0_c00302{height:550.266667pt;}
.w0_c00302{width:319.200000pt;}
.w1_c00302{width:319.333333pt;}
.x0_c00302{left:0.000000pt;}
.x2c_c00302{left:23.876000pt;}
.x26_c00302{left:27.014667pt;}
.x57_c00302{left:28.560000pt;}
.x3b_c00302{left:29.520000pt;}
.xa_c00302{left:30.480000pt;}
.x2_c00302{left:31.874667pt;}
.x83_c00302{left:33.600000pt;}
.x37_c00302{left:38.400000pt;}
.x4a_c00302{left:39.962667pt;}
.x3_c00302{left:44.097333pt;}
.x6d_c00302{left:46.320000pt;}
.x21_c00302{left:47.434667pt;}
.x64_c00302{left:50.160000pt;}
.x3e_c00302{left:51.600000pt;}
.x31_c00302{left:53.281261pt;}
.x44_c00302{left:55.200000pt;}
.xb_c00302{left:56.160000pt;}
.x2d_c00302{left:59.876000pt;}
.x4f_c00302{left:61.201333pt;}
.x75_c00302{left:62.160000pt;}
.x66_c00302{left:63.120000pt;}
.x58_c00302{left:64.080000pt;}
.x32_c00302{left:67.441644pt;}
.x3f_c00302{left:69.600000pt;}
.x45_c00302{left:72.720000pt;}
.x67_c00302{left:73.920000pt;}
.xc_c00302{left:76.320000pt;}
.x4b_c00302{left:77.432000pt;}
.x4_c00302{left:79.609333pt;}
.x1a_c00302{left:81.493333pt;}
.x62_c00302{left:82.560000pt;}
.x12_c00302{left:83.632000pt;}
.x84_c00302{left:88.080000pt;}
.xd_c00302{left:89.280000pt;}
.x76_c00302{left:90.480000pt;}
.x22_c00302{left:93.420000pt;}
.x72_c00302{left:94.800000pt;}
.x38_c00302{left:97.440000pt;}
.x79_c00302{left:98.808000pt;}
.x27_c00302{left:99.969333pt;}
.x1b_c00302{left:101.182667pt;}
.x70_c00302{left:104.758667pt;}
.x13_c00302{left:105.776000pt;}
.x50_c00302{left:107.521333pt;}
.x5_c00302{left:109.609333pt;}
.x5b_c00302{left:110.640000pt;}
.x5f_c00302{left:112.320000pt;}
.x33_c00302{left:114.244639pt;}
.x28_c00302{left:115.578667pt;}
.x68_c00302{left:122.160000pt;}
.x63_c00302{left:125.760000pt;}
.x46_c00302{left:127.440000pt;}
.x7b_c00302{left:130.080000pt;}
.x23_c00302{left:131.150667pt;}
.x1c_c00302{left:132.093333pt;}
.x7f_c00302{left:133.680000pt;}
.x40_c00302{left:136.560000pt;}
.xe_c00302{left:138.000000pt;}
.x34_c00302{left:138.966297pt;}
.x5c_c00302{left:141.600000pt;}
.x4c_c00302{left:143.430667pt;}
.x14_c00302{left:144.824000pt;}
.x41_c00302{left:148.080000pt;}
.x1_c00302{left:149.520000pt;}
.x6_c00302{left:151.134667pt;}
.x51_c00302{left:154.321333pt;}
.x15_c00302{left:155.454667pt;}
.x2e_c00302{left:156.626667pt;}
.x29_c00302{left:159.734667pt;}
.x5d_c00302{left:161.280000pt;}
.x1d_c00302{left:162.830667pt;}
.x69_c00302{left:165.360000pt;}
.x39_c00302{left:166.320000pt;}
.x2f_c00302{left:168.125333pt;}
.x52_c00302{left:169.681333pt;}
.x7_c00302{left:171.806667pt;}
.x24_c00302{left:175.105333pt;}
.x71_c00302{left:176.282667pt;}
.x16_c00302{left:177.289333pt;}
.x3c_c00302{left:178.800000pt;}
.xf_c00302{left:180.000000pt;}
.x47_c00302{left:182.400000pt;}
.x77_c00302{left:183.600000pt;}
.x30_c00302{left:187.274667pt;}
.x7a_c00302{left:189.680000pt;}
.x4d_c00302{left:196.152000pt;}
.x81_c00302{left:198.480000pt;}
.x1e_c00302{left:199.577333pt;}
.x35_c00302{left:202.089939pt;}
.x53_c00302{left:203.041333pt;}
.x59_c00302{left:208.080000pt;}
.x7c_c00302{left:209.040000pt;}
.x65_c00302{left:210.000000pt;}
.x54_c00302{left:215.761333pt;}
.x78_c00302{left:216.720000pt;}
.x48_c00302{left:217.920000pt;}
.x6e_c00302{left:220.080000pt;}
.x8_c00302{left:224.333333pt;}
.x82_c00302{left:226.080000pt;}
.x2a_c00302{left:227.356000pt;}
.x55_c00302{left:229.681333pt;}
.x10_c00302{left:231.360000pt;}
.x17_c00302{left:233.129333pt;}
.x42_c00302{left:234.480000pt;}
.x6a_c00302{left:235.440000pt;}
.x1f_c00302{left:237.024000pt;}
.x73_c00302{left:238.320000pt;}
.x7d_c00302{left:240.240000pt;}
.x6f_c00302{left:241.200000pt;}
.x80_c00302{left:242.880000pt;}
.x5e_c00302{left:244.800000pt;}
.x6c_c00302{left:245.760000pt;}
.x60_c00302{left:246.720000pt;}
.x25_c00302{left:248.321333pt;}
.x3d_c00302{left:249.360000pt;}
.x56_c00302{left:254.161333pt;}
.x18_c00302{left:255.462667pt;}
.x2b_c00302{left:256.642667pt;}
.x3a_c00302{left:258.480000pt;}
.x9_c00302{left:259.852000pt;}
.x36_c00302{left:261.373111pt;}
.x49_c00302{left:264.000000pt;}
.x74_c00302{left:266.640000pt;}
.x6b_c00302{left:270.240000pt;}
.x7e_c00302{left:271.200000pt;}
.x19_c00302{left:272.749333pt;}
.x4e_c00302{left:276.345333pt;}
.x43_c00302{left:278.160000pt;}
.x20_c00302{left:281.672000pt;}
.x11_c00302{left:283.920000pt;}
.x5a_c00302{left:288.000000pt;}
.x61_c00302{left:289.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00303 {
    display:none;
  }
  .loading-indicator_c00303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00303 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00303 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00303" -> "#page-container .classname_c00303")
 */
.pf_c00303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00303 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00303 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00303 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00303 {overflow:visible;}
  }
}
.c_c00303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00303 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00303:after { /* webkit #35443 */
  content: '';
}
.t_c00303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00303 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00303 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00303 { /* info for Javascript */
  display:none;
}
.l_c00303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00303:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00303 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00303.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00303{transform:matrix(0.024580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024580,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.047775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047775,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.121170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121170,0.000000,0.000000,0.250000,0,0);}
.m39_c00303{transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122080,0.000000,0.000000,0.250000,0,0);}
.med_c00303{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.mc5_c00303{transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134610,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.ma8_c00303{transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146585,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.mce_c00303{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.maa_c00303{transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);}
.m84_c00303{transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00303{transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);}
.maf_c00303{transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154020,0.000000,0.000000,0.250000,0,0);}
.mc3_c00303{transform:matrix(0.155710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155710,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157615,0.000000,0.000000,0.250000,0,0);}
.mad_c00303{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.m98_c00303{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m89_c00303{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.mbf_c00303{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.md6_c00303{transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mb2_c00303{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);}
.m77_c00303{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00303{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m79_c00303{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m57_c00303{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.mec_c00303{transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);}
.m105_c00303{transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00303{transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);}
.mef_c00303{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.mc4_c00303{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.mb6_c00303{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m66_c00303{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m103_c00303{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.m9a_c00303{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.mb7_c00303{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.mcf_c00303{transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.171870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171870,0.000000,0.000000,0.250000,0,0);}
.m7c_c00303{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m63_c00303{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);}
.m93_c00303{transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);}
.mea_c00303{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00303{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.md2_c00303{transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);}
.m91_c00303{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m9c_c00303{transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m9d_c00303{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.mbb_c00303{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.mc2_c00303{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.mc6_c00303{transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);}
.mc0_c00303{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);}
.mde_c00303{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.mab_c00303{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.ma4_c00303{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.mda_c00303{transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);}
.m76_c00303{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m86_c00303{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.md4_c00303{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.m50_c00303{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00303{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m97_c00303{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.m4e_c00303{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.mac_c00303{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.mf9_c00303{transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.mbe_c00303{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m90_c00303{transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);}
.md8_c00303{transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m71_c00303{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.ma0_c00303{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.mdd_c00303{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.mf1_c00303{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m48_c00303{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m5c_c00303{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.mba_c00303{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m65_c00303{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m64_c00303{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.me3_c00303{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00303{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);}
.mcc_c00303{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.189045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189045,0.000000,0.000000,0.250000,0,0);}
.m5b_c00303{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.m53_c00303{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m8a_c00303{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m34_c00303{transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);}
.m30_c00303{transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);}
.ma9_c00303{transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190305,0.000000,0.000000,0.250000,0,0);}
.m9b_c00303{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.mcd_c00303{transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);}
.m99_c00303{transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.mb3_c00303{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mbd_c00303{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.mf7_c00303{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.mdf_c00303{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.m47_c00303{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mf6_c00303{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m6c_c00303{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m7e_c00303{transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193455,0.000000,0.000000,0.250000,0,0);}
.m83_c00303{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00303{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m51_c00303{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.me6_c00303{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.me2_c00303{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m82_c00303{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m58_c00303{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.mf3_c00303{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.me4_c00303{transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195655,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);}
.meb_c00303{transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197430,0.000000,0.000000,0.250000,0,0);}
.mc1_c00303{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.mae_c00303{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m55_c00303{transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);}
.mb9_c00303{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.mf0_c00303{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m68_c00303{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);}
.m72_c00303{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.ma5_c00303{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m78_c00303{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.mfe_c00303{transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);}
.mee_c00303{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.md7_c00303{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mb1_c00303{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m54_c00303{transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202605,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);}
.mdb_c00303{transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);}
.m101_c00303{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m74_c00303{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.md1_c00303{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m56_c00303{transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);}
.mb8_c00303{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.me7_c00303{transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);}
.m102_c00303{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m9f_c00303{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m52_c00303{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.ma1_c00303{transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207740,0.000000,0.000000,0.250000,0,0);}
.mdc_c00303{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.mfc_c00303{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.m5f_c00303{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m81_c00303{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00303{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.me1_c00303{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.md5_c00303{transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);}
.m96_c00303{transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);}
.m85_c00303{transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);}
.ma7_c00303{transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);}
.mfa_c00303{transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);}
.mfd_c00303{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.mf4_c00303{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m92_c00303{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m104_c00303{transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);}
.md3_c00303{transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);}
.mf2_c00303{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.md0_c00303{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m49_c00303{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.m94_c00303{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m8b_c00303{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.m44_c00303{transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m95_c00303{transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.mfb_c00303{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.me5_c00303{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.mca_c00303{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00303{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.mb0_c00303{transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);}
.m6a_c00303{transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);}
.m100_c00303{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m70_c00303{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);}
.mc8_c00303{transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m4c_c00303{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00303{transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);}
.mff_c00303{transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);}
.mf5_c00303{transform:matrix(0.236145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236145,0.000000,0.000000,0.250000,0,0);}
.mf8_c00303{transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);}
.m5a_c00303{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.m80_c00303{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m67_c00303{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.me9_c00303{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.me8_c00303{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{transform:matrix(0.244955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244955,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00303{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m73_c00303{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.me0_c00303{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.mb4_c00303{transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);}
.md9_c00303{transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);}
.m88_c00303{transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);}
.m5e_c00303{transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);}
.mc7_c00303{transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);}
.m5d_c00303{transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{transform:matrix(0.302610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302610,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00303{transform:matrix(0.332025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332025,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);}
.mcb_c00303{transform:matrix(0.339825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339825,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:0.000000px;}
.fc0_c00303{color:transparent;}
.fsd_c00303{font-size:55.650000px;}
.fs7_c00303{font-size:57.750000px;}
.fs8_c00303{font-size:58.800000px;}
.fsa_c00303{font-size:59.850000px;}
.fs6_c00303{font-size:60.900000px;}
.fs3_c00303{font-size:61.950000px;}
.fs4_c00303{font-size:63.000000px;}
.fs0_c00303{font-size:64.050000px;}
.fs2_c00303{font-size:65.100000px;}
.fs9_c00303{font-size:66.150000px;}
.fs5_c00303{font-size:68.250000px;}
.fsb_c00303{font-size:69.300000px;}
.fsc_c00303{font-size:70.350000px;}
.fs1_c00303{font-size:71.400000px;}
.y0_c00303{bottom:0.000000px;}
.y2a_c00303{bottom:23.217000px;}
.y29_c00303{bottom:40.435500px;}
.y28_c00303{bottom:55.737000px;}
.y27_c00303{bottom:73.797000px;}
.y26_c00303{bottom:91.287000px;}
.y25_c00303{bottom:108.148500px;}
.y24_c00303{bottom:124.678500px;}
.y23_c00303{bottom:141.688500px;}
.y22_c00303{bottom:156.570000px;}
.y21_c00303{bottom:157.378500px;}
.y20_c00303{bottom:157.653000px;}
.y1f_c00303{bottom:158.187000px;}
.y1e_c00303{bottom:158.602500px;}
.y1d_c00303{bottom:159.163500px;}
.y1c_c00303{bottom:159.355500px;}
.y1b_c00303{bottom:160.113000px;}
.y1a_c00303{bottom:160.359000px;}
.y19_c00303{bottom:160.653000px;}
.y18_c00303{bottom:176.490000px;}
.y17_c00303{bottom:193.714500px;}
.y16_c00303{bottom:211.408500px;}
.y15_c00303{bottom:228.391500px;}
.y14_c00303{bottom:245.316000px;}
.y13_c00303{bottom:261.687000px;}
.y12_c00303{bottom:277.794000px;}
.y11_c00303{bottom:294.487500px;}
.y10_c00303{bottom:311.641500px;}
.yf_c00303{bottom:328.533000px;}
.ye_c00303{bottom:345.963000px;}
.yd_c00303{bottom:363.994500px;}
.yc_c00303{bottom:380.052000px;}
.yb_c00303{bottom:396.534000px;}
.ya_c00303{bottom:413.944500px;}
.y9_c00303{bottom:429.871500px;}
.y8_c00303{bottom:448.347000px;}
.y7_c00303{bottom:465.096000px;}
.y6_c00303{bottom:482.104500px;}
.y5_c00303{bottom:498.870000px;}
.y4_c00303{bottom:515.764500px;}
.y3_c00303{bottom:532.615500px;}
.y2_c00303{bottom:549.100500px;}
.y1_c00303{bottom:565.806000px;}
.hf_c00303{height:55.650000px;}
.h9_c00303{height:57.750000px;}
.ha_c00303{height:58.800000px;}
.hc_c00303{height:59.850000px;}
.h8_c00303{height:60.900000px;}
.h5_c00303{height:61.950000px;}
.h6_c00303{height:63.000000px;}
.h2_c00303{height:64.050000px;}
.h4_c00303{height:65.100000px;}
.hb_c00303{height:66.150000px;}
.h7_c00303{height:68.250000px;}
.hd_c00303{height:69.300000px;}
.he_c00303{height:70.350000px;}
.h3_c00303{height:71.400000px;}
.h1_c00303{height:618.750000px;}
.h0_c00303{height:619.050000px;}
.w0_c00303{width:359.100000px;}
.w1_c00303{width:359.250000px;}
.x0_c00303{left:0.000000px;}
.x5_c00303{left:27.810000px;}
.x6f_c00303{left:30.780000px;}
.x65_c00303{left:31.860000px;}
.x2f_c00303{left:32.940000px;}
.xc_c00303{left:34.020000px;}
.x7c_c00303{left:43.468500px;}
.x69_c00303{left:48.060000px;}
.x4c_c00303{left:50.220000px;}
.x6_c00303{left:53.190000px;}
.x15_c00303{left:55.080000px;}
.x30_c00303{left:58.590000px;}
.x7e_c00303{left:60.478500px;}
.x2b_c00303{left:61.830000px;}
.x40_c00303{left:64.260000px;}
.x3d_c00303{left:68.310000px;}
.x16_c00303{left:70.470000px;}
.x31_c00303{left:71.550000px;}
.x78_c00303{left:73.438500px;}
.x47_c00303{left:75.060000px;}
.x57_c00303{left:76.410000px;}
.x5c_c00303{left:79.110000px;}
.x37_c00303{left:84.510000px;}
.x60_c00303{left:86.940000px;}
.x25_c00303{left:88.830000px;}
.x62_c00303{left:90.990000px;}
.x1_c00303{left:93.690000px;}
.xd_c00303{left:95.850000px;}
.x1a_c00303{left:98.280000px;}
.x7_c00303{left:99.360000px;}
.x58_c00303{left:104.220000px;}
.x51_c00303{left:105.300000px;}
.x63_c00303{left:106.650000px;}
.x41_c00303{left:110.970000px;}
.xe_c00303{left:113.940000px;}
.x8_c00303{left:115.020000px;}
.x48_c00303{left:117.720000px;}
.x80_c00303{left:119.878500px;}
.x26_c00303{left:121.230000px;}
.x1b_c00303{left:122.310000px;}
.x74_c00303{left:124.095000px;}
.x52_c00303{left:126.090000px;}
.x38_c00303{left:129.060000px;}
.x17_c00303{left:132.840000px;}
.x70_c00303{left:135.000000px;}
.x66_c00303{left:137.160000px;}
.x27_c00303{left:138.780000px;}
.x32_c00303{left:140.670000px;}
.x7f_c00303{left:142.288500px;}
.x39_c00303{left:144.450000px;}
.xf_c00303{left:147.150000px;}
.x5d_c00303{left:149.580000px;}
.x6a_c00303{left:154.440000px;}
.x20_c00303{left:156.600000px;}
.x1c_c00303{left:159.570000px;}
.x64_c00303{left:161.190000px;}
.x49_c00303{left:162.270000px;}
.x71_c00303{left:164.430000px;}
.x2_c00303{left:168.210000px;}
.x44_c00303{left:172.530000px;}
.x4d_c00303{left:174.960000px;}
.x21_c00303{left:176.040000px;}
.x6d_c00303{left:177.660000px;}
.x59_c00303{left:179.280000px;}
.x1d_c00303{left:180.360000px;}
.x67_c00303{left:184.410000px;}
.x77_c00303{left:185.758500px;}
.x3e_c00303{left:187.380000px;}
.x18_c00303{left:190.890000px;}
.x79_c00303{left:192.238500px;}
.x61_c00303{left:194.130000px;}
.x76_c00303{left:195.478500px;}
.x33_c00303{left:196.560000px;}
.x68_c00303{left:202.500000px;}
.x5e_c00303{left:203.580000px;}
.x53_c00303{left:205.200000px;}
.x28_c00303{left:206.820000px;}
.x42_c00303{left:208.980000px;}
.x10_c00303{left:210.870000px;}
.x6b_c00303{left:214.920000px;}
.x2c_c00303{left:216.270000px;}
.x43_c00303{left:219.240000px;}
.x9_c00303{left:220.860000px;}
.x54_c00303{left:222.750000px;}
.x72_c00303{left:225.720000px;}
.x29_c00303{left:227.070000px;}
.x7d_c00303{left:228.688500px;}
.x11_c00303{left:231.120000px;}
.x22_c00303{left:233.010000px;}
.x5a_c00303{left:239.490000px;}
.x4a_c00303{left:240.570000px;}
.x3_c00303{left:244.350000px;}
.x75_c00303{left:245.601000px;}
.x3a_c00303{left:247.320000px;}
.x45_c00303{left:249.480000px;}
.x34_c00303{left:250.560000px;}
.x73_c00303{left:252.990000px;}
.x7a_c00303{left:257.848500px;}
.x3b_c00303{left:260.550000px;}
.x55_c00303{left:262.170000px;}
.x2d_c00303{left:263.520000px;}
.x4e_c00303{left:265.410000px;}
.x12_c00303{left:267.300000px;}
.xa_c00303{left:269.190000px;}
.x35_c00303{left:271.350000px;}
.x7b_c00303{left:272.428500px;}
.x3f_c00303{left:277.290000px;}
.x4b_c00303{left:279.180000px;}
.x5f_c00303{left:280.260000px;}
.x13_c00303{left:281.340000px;}
.x19_c00303{left:282.420000px;}
.x2e_c00303{left:284.040000px;}
.x46_c00303{left:285.930000px;}
.x81_c00303{left:287.008500px;}
.x23_c00303{left:289.170000px;}
.x3c_c00303{left:293.220000px;}
.x1e_c00303{left:295.380000px;}
.x4f_c00303{left:296.730000px;}
.x14_c00303{left:298.080000px;}
.x6c_c00303{left:300.240000px;}
.x56_c00303{left:305.910000px;}
.x4_c00303{left:307.530000px;}
.x24_c00303{left:309.690000px;}
.x2a_c00303{left:311.040000px;}
.x50_c00303{left:312.930000px;}
.x1f_c00303{left:314.820000px;}
.xb_c00303{left:315.900000px;}
.x36_c00303{left:317.790000px;}
.x6e_c00303{left:323.730000px;}
.x5b_c00303{left:328.860000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
.fsd_c00303{font-size:49.466667pt;}
.fs7_c00303{font-size:51.333333pt;}
.fs8_c00303{font-size:52.266667pt;}
.fsa_c00303{font-size:53.200000pt;}
.fs6_c00303{font-size:54.133333pt;}
.fs3_c00303{font-size:55.066667pt;}
.fs4_c00303{font-size:56.000000pt;}
.fs0_c00303{font-size:56.933333pt;}
.fs2_c00303{font-size:57.866667pt;}
.fs9_c00303{font-size:58.800000pt;}
.fs5_c00303{font-size:60.666667pt;}
.fsb_c00303{font-size:61.600000pt;}
.fsc_c00303{font-size:62.533333pt;}
.fs1_c00303{font-size:63.466667pt;}
.y0_c00303{bottom:0.000000pt;}
.y2a_c00303{bottom:20.637333pt;}
.y29_c00303{bottom:35.942667pt;}
.y28_c00303{bottom:49.544000pt;}
.y27_c00303{bottom:65.597333pt;}
.y26_c00303{bottom:81.144000pt;}
.y25_c00303{bottom:96.132000pt;}
.y24_c00303{bottom:110.825333pt;}
.y23_c00303{bottom:125.945333pt;}
.y22_c00303{bottom:139.173333pt;}
.y21_c00303{bottom:139.892000pt;}
.y20_c00303{bottom:140.136000pt;}
.y1f_c00303{bottom:140.610667pt;}
.y1e_c00303{bottom:140.980000pt;}
.y1d_c00303{bottom:141.478667pt;}
.y1c_c00303{bottom:141.649333pt;}
.y1b_c00303{bottom:142.322667pt;}
.y1a_c00303{bottom:142.541333pt;}
.y19_c00303{bottom:142.802667pt;}
.y18_c00303{bottom:156.880000pt;}
.y17_c00303{bottom:172.190667pt;}
.y16_c00303{bottom:187.918667pt;}
.y15_c00303{bottom:203.014667pt;}
.y14_c00303{bottom:218.058667pt;}
.y13_c00303{bottom:232.610667pt;}
.y12_c00303{bottom:246.928000pt;}
.y11_c00303{bottom:261.766667pt;}
.y10_c00303{bottom:277.014667pt;}
.yf_c00303{bottom:292.029333pt;}
.ye_c00303{bottom:307.522667pt;}
.yd_c00303{bottom:323.550667pt;}
.yc_c00303{bottom:337.824000pt;}
.yb_c00303{bottom:352.474667pt;}
.ya_c00303{bottom:367.950667pt;}
.y9_c00303{bottom:382.108000pt;}
.y8_c00303{bottom:398.530667pt;}
.y7_c00303{bottom:413.418667pt;}
.y6_c00303{bottom:428.537333pt;}
.y5_c00303{bottom:443.440000pt;}
.y4_c00303{bottom:458.457333pt;}
.y3_c00303{bottom:473.436000pt;}
.y2_c00303{bottom:488.089333pt;}
.y1_c00303{bottom:502.938667pt;}
.hf_c00303{height:49.466667pt;}
.h9_c00303{height:51.333333pt;}
.ha_c00303{height:52.266667pt;}
.hc_c00303{height:53.200000pt;}
.h8_c00303{height:54.133333pt;}
.h5_c00303{height:55.066667pt;}
.h6_c00303{height:56.000000pt;}
.h2_c00303{height:56.933333pt;}
.h4_c00303{height:57.866667pt;}
.hb_c00303{height:58.800000pt;}
.h7_c00303{height:60.666667pt;}
.hd_c00303{height:61.600000pt;}
.he_c00303{height:62.533333pt;}
.h3_c00303{height:63.466667pt;}
.h1_c00303{height:550.000000pt;}
.h0_c00303{height:550.266667pt;}
.w0_c00303{width:319.200000pt;}
.w1_c00303{width:319.333333pt;}
.x0_c00303{left:0.000000pt;}
.x5_c00303{left:24.720000pt;}
.x6f_c00303{left:27.360000pt;}
.x65_c00303{left:28.320000pt;}
.x2f_c00303{left:29.280000pt;}
.xc_c00303{left:30.240000pt;}
.x7c_c00303{left:38.638667pt;}
.x69_c00303{left:42.720000pt;}
.x4c_c00303{left:44.640000pt;}
.x6_c00303{left:47.280000pt;}
.x15_c00303{left:48.960000pt;}
.x30_c00303{left:52.080000pt;}
.x7e_c00303{left:53.758667pt;}
.x2b_c00303{left:54.960000pt;}
.x40_c00303{left:57.120000pt;}
.x3d_c00303{left:60.720000pt;}
.x16_c00303{left:62.640000pt;}
.x31_c00303{left:63.600000pt;}
.x78_c00303{left:65.278667pt;}
.x47_c00303{left:66.720000pt;}
.x57_c00303{left:67.920000pt;}
.x5c_c00303{left:70.320000pt;}
.x37_c00303{left:75.120000pt;}
.x60_c00303{left:77.280000pt;}
.x25_c00303{left:78.960000pt;}
.x62_c00303{left:80.880000pt;}
.x1_c00303{left:83.280000pt;}
.xd_c00303{left:85.200000pt;}
.x1a_c00303{left:87.360000pt;}
.x7_c00303{left:88.320000pt;}
.x58_c00303{left:92.640000pt;}
.x51_c00303{left:93.600000pt;}
.x63_c00303{left:94.800000pt;}
.x41_c00303{left:98.640000pt;}
.xe_c00303{left:101.280000pt;}
.x8_c00303{left:102.240000pt;}
.x48_c00303{left:104.640000pt;}
.x80_c00303{left:106.558667pt;}
.x26_c00303{left:107.760000pt;}
.x1b_c00303{left:108.720000pt;}
.x74_c00303{left:110.306667pt;}
.x52_c00303{left:112.080000pt;}
.x38_c00303{left:114.720000pt;}
.x17_c00303{left:118.080000pt;}
.x70_c00303{left:120.000000pt;}
.x66_c00303{left:121.920000pt;}
.x27_c00303{left:123.360000pt;}
.x32_c00303{left:125.040000pt;}
.x7f_c00303{left:126.478667pt;}
.x39_c00303{left:128.400000pt;}
.xf_c00303{left:130.800000pt;}
.x5d_c00303{left:132.960000pt;}
.x6a_c00303{left:137.280000pt;}
.x20_c00303{left:139.200000pt;}
.x1c_c00303{left:141.840000pt;}
.x64_c00303{left:143.280000pt;}
.x49_c00303{left:144.240000pt;}
.x71_c00303{left:146.160000pt;}
.x2_c00303{left:149.520000pt;}
.x44_c00303{left:153.360000pt;}
.x4d_c00303{left:155.520000pt;}
.x21_c00303{left:156.480000pt;}
.x6d_c00303{left:157.920000pt;}
.x59_c00303{left:159.360000pt;}
.x1d_c00303{left:160.320000pt;}
.x67_c00303{left:163.920000pt;}
.x77_c00303{left:165.118667pt;}
.x3e_c00303{left:166.560000pt;}
.x18_c00303{left:169.680000pt;}
.x79_c00303{left:170.878667pt;}
.x61_c00303{left:172.560000pt;}
.x76_c00303{left:173.758667pt;}
.x33_c00303{left:174.720000pt;}
.x68_c00303{left:180.000000pt;}
.x5e_c00303{left:180.960000pt;}
.x53_c00303{left:182.400000pt;}
.x28_c00303{left:183.840000pt;}
.x42_c00303{left:185.760000pt;}
.x10_c00303{left:187.440000pt;}
.x6b_c00303{left:191.040000pt;}
.x2c_c00303{left:192.240000pt;}
.x43_c00303{left:194.880000pt;}
.x9_c00303{left:196.320000pt;}
.x54_c00303{left:198.000000pt;}
.x72_c00303{left:200.640000pt;}
.x29_c00303{left:201.840000pt;}
.x7d_c00303{left:203.278667pt;}
.x11_c00303{left:205.440000pt;}
.x22_c00303{left:207.120000pt;}
.x5a_c00303{left:212.880000pt;}
.x4a_c00303{left:213.840000pt;}
.x3_c00303{left:217.200000pt;}
.x75_c00303{left:218.312000pt;}
.x3a_c00303{left:219.840000pt;}
.x45_c00303{left:221.760000pt;}
.x34_c00303{left:222.720000pt;}
.x73_c00303{left:224.880000pt;}
.x7a_c00303{left:229.198667pt;}
.x3b_c00303{left:231.600000pt;}
.x55_c00303{left:233.040000pt;}
.x2d_c00303{left:234.240000pt;}
.x4e_c00303{left:235.920000pt;}
.x12_c00303{left:237.600000pt;}
.xa_c00303{left:239.280000pt;}
.x35_c00303{left:241.200000pt;}
.x7b_c00303{left:242.158667pt;}
.x3f_c00303{left:246.480000pt;}
.x4b_c00303{left:248.160000pt;}
.x5f_c00303{left:249.120000pt;}
.x13_c00303{left:250.080000pt;}
.x19_c00303{left:251.040000pt;}
.x2e_c00303{left:252.480000pt;}
.x46_c00303{left:254.160000pt;}
.x81_c00303{left:255.118667pt;}
.x23_c00303{left:257.040000pt;}
.x3c_c00303{left:260.640000pt;}
.x1e_c00303{left:262.560000pt;}
.x4f_c00303{left:263.760000pt;}
.x14_c00303{left:264.960000pt;}
.x6c_c00303{left:266.880000pt;}
.x56_c00303{left:271.920000pt;}
.x4_c00303{left:273.360000pt;}
.x24_c00303{left:275.280000pt;}
.x2a_c00303{left:276.480000pt;}
.x50_c00303{left:278.160000pt;}
.x1f_c00303{left:279.840000pt;}
.xb_c00303{left:280.800000pt;}
.x36_c00303{left:282.480000pt;}
.x6e_c00303{left:287.760000pt;}
.x5b_c00303{left:292.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00304 {
    display:none;
  }
  .loading-indicator_c00304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00304 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00304 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00304" -> "#page-container .classname_c00304")
 */
.pf_c00304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00304 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00304 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00304 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00304 {overflow:visible;}
  }
}
.c_c00304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00304 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00304:after { /* webkit #35443 */
  content: '';
}
.t_c00304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00304 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00304 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00304 { /* info for Javascript */
  display:none;
}
.l_c00304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00304 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00304.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8d_c00304{transform:matrix(0.015380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015380,0.000000,0.000000,0.250000,0,0);}
.mdf_c00304{transform:matrix(0.071975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071975,0.000000,0.000000,0.250000,0,0);}
.me1_c00304{transform:matrix(0.075800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.089515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089515,0.000000,0.000000,0.250000,0,0);}
.mde_c00304{transform:matrix(0.091515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091515,0.000000,0.000000,0.250000,0,0);}
.me0_c00304{transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);}
.mdb_c00304{transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);}
.mc7_c00304{transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);}
.mee_c00304{transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);}
.me9_c00304{transform:matrix(0.112030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112030,0.000000,0.000000,0.250000,0,0);}
.mdd_c00304{transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);}
.meb_c00304{transform:matrix(0.123740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123740,0.000000,0.000000,0.250000,0,0);}
.md9_c00304{transform:matrix(0.124910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124910,0.000000,0.000000,0.250000,0,0);}
.mdc_c00304{transform:matrix(0.128780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128780,0.000000,0.000000,0.250000,0,0);}
.mea_c00304{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.133920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133920,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.136692,-0.001914,0.003500,0.249976,0,0);-ms-transform:matrix(0.136692,-0.001914,0.003500,0.249976,0,0);-webkit-transform:matrix(0.136692,-0.001914,0.003500,0.249976,0,0);}
.mc_c00304{transform:matrix(0.136897,-0.001917,0.003500,0.249976,0,0);-ms-transform:matrix(0.136897,-0.001917,0.003500,0.249976,0,0);-webkit-transform:matrix(0.136897,-0.001917,0.003500,0.249976,0,0);}
.md8_c00304{transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);}
.me8_c00304{transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140765,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140790,0.000000,0.000000,0.250000,0,0);}
.me2_c00304{transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);}
.mef_c00304{transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145365,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.151540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151540,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.154370,-0.002161,0.003500,0.249976,0,0);-ms-transform:matrix(0.154370,-0.002161,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154370,-0.002161,0.003500,0.249976,0,0);}
.m8e_c00304{transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);}
.med_c00304{transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.157280,-0.002202,0.003500,0.249976,0,0);-ms-transform:matrix(0.157280,-0.002202,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157280,-0.002202,0.003500,0.249976,0,0);}
.md1_c00304{transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157395,0.000000,0.000000,0.250000,0,0);}
.mc4_c00304{transform:matrix(0.158495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158495,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160195,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.161794,-0.002265,0.003500,0.249976,0,0);-ms-transform:matrix(0.161794,-0.002265,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161794,-0.002265,0.003500,0.249976,0,0);}
.m3b_c00304{transform:matrix(0.161879,-0.002266,0.003500,0.249976,0,0);-ms-transform:matrix(0.161879,-0.002266,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161879,-0.002266,0.003500,0.249976,0,0);}
.m9_c00304{transform:matrix(0.162324,-0.002273,0.003500,0.249976,0,0);-ms-transform:matrix(0.162324,-0.002273,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162324,-0.002273,0.003500,0.249976,0,0);}
.m77_c00304{transform:matrix(0.162969,-0.002282,0.003500,0.249976,0,0);-ms-transform:matrix(0.162969,-0.002282,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162969,-0.002282,0.003500,0.249976,0,0);}
.m2_c00304{transform:matrix(0.163419,-0.002288,0.003500,0.249976,0,0);-ms-transform:matrix(0.163419,-0.002288,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163419,-0.002288,0.003500,0.249976,0,0);}
.m36_c00304{transform:matrix(0.164399,-0.002302,0.003500,0.249976,0,0);-ms-transform:matrix(0.164399,-0.002302,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164399,-0.002302,0.003500,0.249976,0,0);}
.mec_c00304{transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164970,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.166284,-0.002328,0.003500,0.249976,0,0);-ms-transform:matrix(0.166284,-0.002328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166284,-0.002328,0.003500,0.249976,0,0);}
.ma0_c00304{transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.166789,-0.002335,0.003500,0.249976,0,0);-ms-transform:matrix(0.166789,-0.002335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166789,-0.002335,0.003500,0.249976,0,0);}
.m4e_c00304{transform:matrix(0.166929,-0.002337,0.003500,0.249976,0,0);-ms-transform:matrix(0.166929,-0.002337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166929,-0.002337,0.003500,0.249976,0,0);}
.m1b_c00304{transform:matrix(0.167399,-0.002344,0.003500,0.249976,0,0);-ms-transform:matrix(0.167399,-0.002344,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167399,-0.002344,0.003500,0.249976,0,0);}
.ma_c00304{transform:matrix(0.167559,-0.002346,0.003500,0.249976,0,0);-ms-transform:matrix(0.167559,-0.002346,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167559,-0.002346,0.003500,0.249976,0,0);}
.m3c_c00304{transform:matrix(0.167734,-0.002348,0.003500,0.249976,0,0);-ms-transform:matrix(0.167734,-0.002348,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167734,-0.002348,0.003500,0.249976,0,0);}
.m71_c00304{transform:matrix(0.167869,-0.002350,0.003500,0.249976,0,0);-ms-transform:matrix(0.167869,-0.002350,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167869,-0.002350,0.003500,0.249976,0,0);}
.m5_c00304{transform:matrix(0.169208,-0.002369,0.003500,0.249976,0,0);-ms-transform:matrix(0.169208,-0.002369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169208,-0.002369,0.003500,0.249976,0,0);}
.m2e_c00304{transform:matrix(0.169393,-0.002372,0.003500,0.249976,0,0);-ms-transform:matrix(0.169393,-0.002372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169393,-0.002372,0.003500,0.249976,0,0);}
.m14_c00304{transform:matrix(0.169403,-0.002372,0.003500,0.249976,0,0);-ms-transform:matrix(0.169403,-0.002372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169403,-0.002372,0.003500,0.249976,0,0);}
.m6f_c00304{transform:matrix(0.169418,-0.002372,0.003500,0.249976,0,0);-ms-transform:matrix(0.169418,-0.002372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169418,-0.002372,0.003500,0.249976,0,0);}
.m4_c00304{transform:matrix(0.171938,-0.002407,0.003500,0.249976,0,0);-ms-transform:matrix(0.171938,-0.002407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171938,-0.002407,0.003500,0.249976,0,0);}
.mad_c00304{transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172030,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.174318,-0.002440,0.003500,0.249976,0,0);-ms-transform:matrix(0.174318,-0.002440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174318,-0.002440,0.003500,0.249976,0,0);}
.mb2_c00304{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.176138,-0.002466,0.003500,0.249976,0,0);-ms-transform:matrix(0.176138,-0.002466,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176138,-0.002466,0.003500,0.249976,0,0);}
.m97_c00304{transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.178218,-0.002495,0.003500,0.249976,0,0);-ms-transform:matrix(0.178218,-0.002495,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178218,-0.002495,0.003500,0.249976,0,0);}
.m1a_c00304{transform:matrix(0.179747,-0.002516,0.003500,0.249976,0,0);-ms-transform:matrix(0.179747,-0.002516,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179747,-0.002516,0.003500,0.249976,0,0);}
.m6c_c00304{transform:matrix(0.180457,-0.002526,0.003500,0.249976,0,0);-ms-transform:matrix(0.180457,-0.002526,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180457,-0.002526,0.003500,0.249976,0,0);}
.m1d_c00304{transform:matrix(0.180652,-0.002529,0.003500,0.249976,0,0);-ms-transform:matrix(0.180652,-0.002529,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180652,-0.002529,0.003500,0.249976,0,0);}
.m51_c00304{transform:matrix(0.180967,-0.002534,0.003500,0.249976,0,0);-ms-transform:matrix(0.180967,-0.002534,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180967,-0.002534,0.003500,0.249976,0,0);}
.m18_c00304{transform:matrix(0.181527,-0.002541,0.003500,0.249976,0,0);-ms-transform:matrix(0.181527,-0.002541,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181527,-0.002541,0.003500,0.249976,0,0);}
.m25_c00304{transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-ms-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);}
.m1_c00304{transform:matrix(0.182692,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182692,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182692,-0.002558,0.003500,0.249976,0,0);}
.mbe_c00304{transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.182862,-0.002560,0.003500,0.249976,0,0);-ms-transform:matrix(0.182862,-0.002560,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182862,-0.002560,0.003500,0.249976,0,0);}
.m57_c00304{transform:matrix(0.183397,-0.002568,0.003500,0.249976,0,0);-ms-transform:matrix(0.183397,-0.002568,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183397,-0.002568,0.003500,0.249976,0,0);}
.m21_c00304{transform:matrix(0.183682,-0.002572,0.003500,0.249976,0,0);-ms-transform:matrix(0.183682,-0.002572,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183682,-0.002572,0.003500,0.249976,0,0);}
.mc8_c00304{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.m7f_c00304{transform:matrix(0.183767,-0.002573,0.003500,0.249976,0,0);-ms-transform:matrix(0.183767,-0.002573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183767,-0.002573,0.003500,0.249976,0,0);}
.md6_c00304{transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.184807,-0.002587,0.003500,0.249976,0,0);-ms-transform:matrix(0.184807,-0.002587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184807,-0.002587,0.003500,0.249976,0,0);}
.mce_c00304{transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.185167,-0.002592,0.003500,0.249976,0,0);-ms-transform:matrix(0.185167,-0.002592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185167,-0.002592,0.003500,0.249976,0,0);}
.mc9_c00304{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-ms-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);}
.m88_c00304{transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);-ms-transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186282,-0.002608,0.003500,0.249976,0,0);}
.m53_c00304{transform:matrix(0.186442,-0.002610,0.003500,0.249976,0,0);-ms-transform:matrix(0.186442,-0.002610,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186442,-0.002610,0.003500,0.249976,0,0);}
.m74_c00304{transform:matrix(0.187832,-0.002630,0.003500,0.249976,0,0);-ms-transform:matrix(0.187832,-0.002630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187832,-0.002630,0.003500,0.249976,0,0);}
.m70_c00304{transform:matrix(0.187847,-0.002630,0.003500,0.249976,0,0);-ms-transform:matrix(0.187847,-0.002630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187847,-0.002630,0.003500,0.249976,0,0);}
.m37_c00304{transform:matrix(0.188072,-0.002633,0.003500,0.249976,0,0);-ms-transform:matrix(0.188072,-0.002633,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188072,-0.002633,0.003500,0.249976,0,0);}
.mcf_c00304{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.188617,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188617,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188617,-0.002641,0.003500,0.249976,0,0);}
.m10_c00304{transform:matrix(0.188976,-0.002646,0.003500,0.249976,0,0);-ms-transform:matrix(0.188976,-0.002646,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188976,-0.002646,0.003500,0.249976,0,0);}
.m9a_c00304{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.189046,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189046,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189046,-0.002647,0.003500,0.249976,0,0);}
.m26_c00304{transform:matrix(0.189231,-0.002649,0.003500,0.249976,0,0);-ms-transform:matrix(0.189231,-0.002649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189231,-0.002649,0.003500,0.249976,0,0);}
.m31_c00304{transform:matrix(0.189391,-0.002651,0.003500,0.249976,0,0);-ms-transform:matrix(0.189391,-0.002651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189391,-0.002651,0.003500,0.249976,0,0);}
.m40_c00304{transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189551,-0.002654,0.003500,0.249976,0,0);}
.ma4_c00304{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.m66_c00304{transform:matrix(0.189836,-0.002658,0.003500,0.249976,0,0);-ms-transform:matrix(0.189836,-0.002658,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189836,-0.002658,0.003500,0.249976,0,0);}
.m49_c00304{transform:matrix(0.190166,-0.002662,0.003500,0.249976,0,0);-ms-transform:matrix(0.190166,-0.002662,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190166,-0.002662,0.003500,0.249976,0,0);}
.ma6_c00304{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.190631,-0.002669,0.003500,0.249976,0,0);-ms-transform:matrix(0.190631,-0.002669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190631,-0.002669,0.003500,0.249976,0,0);}
.m75_c00304{transform:matrix(0.191111,-0.002676,0.003500,0.249976,0,0);-ms-transform:matrix(0.191111,-0.002676,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191111,-0.002676,0.003500,0.249976,0,0);}
.m96_c00304{transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.191826,-0.002686,0.003500,0.249976,0,0);-ms-transform:matrix(0.191826,-0.002686,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191826,-0.002686,0.003500,0.249976,0,0);}
.m44_c00304{transform:matrix(0.191861,-0.002686,0.003500,0.249976,0,0);-ms-transform:matrix(0.191861,-0.002686,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191861,-0.002686,0.003500,0.249976,0,0);}
.m6b_c00304{transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);-ms-transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192041,-0.002689,0.003500,0.249976,0,0);}
.m9c_c00304{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.192261,-0.002692,0.003500,0.249976,0,0);-ms-transform:matrix(0.192261,-0.002692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192261,-0.002692,0.003500,0.249976,0,0);}
.ma3_c00304{transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);}
.md7_c00304{transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.194311,-0.002720,0.003500,0.249976,0,0);-ms-transform:matrix(0.194311,-0.002720,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194311,-0.002720,0.003500,0.249976,0,0);}
.ma7_c00304{transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.194506,-0.002723,0.003500,0.249976,0,0);-ms-transform:matrix(0.194506,-0.002723,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194506,-0.002723,0.003500,0.249976,0,0);}
.m59_c00304{transform:matrix(0.194551,-0.002724,0.003500,0.249976,0,0);-ms-transform:matrix(0.194551,-0.002724,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194551,-0.002724,0.003500,0.249976,0,0);}
.me7_c00304{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.195431,-0.002736,0.003500,0.249976,0,0);-ms-transform:matrix(0.195431,-0.002736,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195431,-0.002736,0.003500,0.249976,0,0);}
.mae_c00304{transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{transform:matrix(0.196031,-0.002744,0.003500,0.249976,0,0);-ms-transform:matrix(0.196031,-0.002744,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196031,-0.002744,0.003500,0.249976,0,0);}
.m5b_c00304{transform:matrix(0.196346,-0.002749,0.003500,0.249976,0,0);-ms-transform:matrix(0.196346,-0.002749,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196346,-0.002749,0.003500,0.249976,0,0);}
.m19_c00304{transform:matrix(0.196411,-0.002750,0.003500,0.249976,0,0);-ms-transform:matrix(0.196411,-0.002750,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196411,-0.002750,0.003500,0.249976,0,0);}
.m69_c00304{transform:matrix(0.197406,-0.002764,0.003500,0.249976,0,0);-ms-transform:matrix(0.197406,-0.002764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197406,-0.002764,0.003500,0.249976,0,0);}
.ma5_c00304{transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.198056,-0.002773,0.003500,0.249976,0,0);-ms-transform:matrix(0.198056,-0.002773,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198056,-0.002773,0.003500,0.249976,0,0);}
.m9e_c00304{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.198446,-0.002778,0.003500,0.249976,0,0);-ms-transform:matrix(0.198446,-0.002778,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198446,-0.002778,0.003500,0.249976,0,0);}
.m45_c00304{transform:matrix(0.198586,-0.002780,0.003500,0.249976,0,0);-ms-transform:matrix(0.198586,-0.002780,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198586,-0.002780,0.003500,0.249976,0,0);}
.m61_c00304{transform:matrix(0.198781,-0.002783,0.003500,0.249976,0,0);-ms-transform:matrix(0.198781,-0.002783,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198781,-0.002783,0.003500,0.249976,0,0);}
.m3d_c00304{transform:matrix(0.198931,-0.002785,0.003500,0.249976,0,0);-ms-transform:matrix(0.198931,-0.002785,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198931,-0.002785,0.003500,0.249976,0,0);}
.mba_c00304{transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200055,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);}
.m52_c00304{transform:matrix(0.200910,-0.002813,0.003500,0.249976,0,0);-ms-transform:matrix(0.200910,-0.002813,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200910,-0.002813,0.003500,0.249976,0,0);}
.md0_c00304{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.203000,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203000,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203000,-0.002842,0.003500,0.249976,0,0);}
.m39_c00304{transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203030,-0.002842,0.003500,0.249976,0,0);}
.md3_c00304{transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203140,0.000000,0.000000,0.250000,0,0);}
.m99_c00304{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.203415,-0.002848,0.003500,0.249976,0,0);-ms-transform:matrix(0.203415,-0.002848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203415,-0.002848,0.003500,0.249976,0,0);}
.m34_c00304{transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);-ms-transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203585,-0.002850,0.003500,0.249976,0,0);}
.m55_c00304{transform:matrix(0.203755,-0.002853,0.003500,0.249976,0,0);-ms-transform:matrix(0.203755,-0.002853,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203755,-0.002853,0.003500,0.249976,0,0);}
.md5_c00304{transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.204430,-0.002862,0.003500,0.249976,0,0);-ms-transform:matrix(0.204430,-0.002862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204430,-0.002862,0.003500,0.249976,0,0);}
.ma9_c00304{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.204515,-0.002863,0.003500,0.249976,0,0);-ms-transform:matrix(0.204515,-0.002863,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204515,-0.002863,0.003500,0.249976,0,0);}
.m35_c00304{transform:matrix(0.204620,-0.002865,0.003500,0.249976,0,0);-ms-transform:matrix(0.204620,-0.002865,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204620,-0.002865,0.003500,0.249976,0,0);}
.m73_c00304{transform:matrix(0.205170,-0.002872,0.003500,0.249976,0,0);-ms-transform:matrix(0.205170,-0.002872,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205170,-0.002872,0.003500,0.249976,0,0);}
.m64_c00304{transform:matrix(0.205200,-0.002873,0.003500,0.249976,0,0);-ms-transform:matrix(0.205200,-0.002873,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205200,-0.002873,0.003500,0.249976,0,0);}
.m7c_c00304{transform:matrix(0.205320,-0.002874,0.003500,0.249976,0,0);-ms-transform:matrix(0.205320,-0.002874,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205320,-0.002874,0.003500,0.249976,0,0);}
.m16_c00304{transform:matrix(0.205335,-0.002875,0.003500,0.249976,0,0);-ms-transform:matrix(0.205335,-0.002875,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205335,-0.002875,0.003500,0.249976,0,0);}
.m17_c00304{transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);-ms-transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205600,-0.002878,0.003500,0.249976,0,0);}
.ma8_c00304{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.206330,-0.002889,0.003500,0.249976,0,0);-ms-transform:matrix(0.206330,-0.002889,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206330,-0.002889,0.003500,0.249976,0,0);}
.m72_c00304{transform:matrix(0.206335,-0.002889,0.003500,0.249976,0,0);-ms-transform:matrix(0.206335,-0.002889,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206335,-0.002889,0.003500,0.249976,0,0);}
.mc2_c00304{transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.206480,-0.002891,0.003500,0.249976,0,0);-ms-transform:matrix(0.206480,-0.002891,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206480,-0.002891,0.003500,0.249976,0,0);}
.mb1_c00304{transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206720,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);}
.md2_c00304{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.208375,-0.002917,0.003500,0.249976,0,0);-ms-transform:matrix(0.208375,-0.002917,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208375,-0.002917,0.003500,0.249976,0,0);}
.mc5_c00304{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.209170,-0.002928,0.003500,0.249976,0,0);-ms-transform:matrix(0.209170,-0.002928,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209170,-0.002928,0.003500,0.249976,0,0);}
.m82_c00304{transform:matrix(0.209299,-0.002930,0.003500,0.249976,0,0);-ms-transform:matrix(0.209299,-0.002930,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209299,-0.002930,0.003500,0.249976,0,0);}
.mda_c00304{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.209364,-0.002931,0.003500,0.249976,0,0);-ms-transform:matrix(0.209364,-0.002931,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209364,-0.002931,0.003500,0.249976,0,0);}
.m60_c00304{transform:matrix(0.210709,-0.002950,0.003500,0.249976,0,0);-ms-transform:matrix(0.210709,-0.002950,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210709,-0.002950,0.003500,0.249976,0,0);}
.ma2_c00304{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.mcc_c00304{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);}
.mbb_c00304{transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{transform:matrix(0.213494,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213494,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213494,-0.002989,0.003500,0.249976,0,0);}
.m89_c00304{transform:matrix(0.214774,-0.003007,0.003500,0.249976,0,0);-ms-transform:matrix(0.214774,-0.003007,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214774,-0.003007,0.003500,0.249976,0,0);}
.m84_c00304{transform:matrix(0.215184,-0.003013,0.003500,0.249976,0,0);-ms-transform:matrix(0.215184,-0.003013,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215184,-0.003013,0.003500,0.249976,0,0);}
.m33_c00304{transform:matrix(0.215329,-0.003015,0.003500,0.249976,0,0);-ms-transform:matrix(0.215329,-0.003015,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215329,-0.003015,0.003500,0.249976,0,0);}
.m7a_c00304{transform:matrix(0.215529,-0.003017,0.003500,0.249976,0,0);-ms-transform:matrix(0.215529,-0.003017,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215529,-0.003017,0.003500,0.249976,0,0);}
.m5e_c00304{transform:matrix(0.215604,-0.003018,0.003500,0.249976,0,0);-ms-transform:matrix(0.215604,-0.003018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215604,-0.003018,0.003500,0.249976,0,0);}
.m3e_c00304{transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);-ms-transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215744,-0.003020,0.003500,0.249976,0,0);}
.m1c_c00304{transform:matrix(0.215929,-0.003023,0.003500,0.249976,0,0);-ms-transform:matrix(0.215929,-0.003023,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215929,-0.003023,0.003500,0.249976,0,0);}
.mb0_c00304{transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{transform:matrix(0.216284,-0.003028,0.003500,0.249976,0,0);-ms-transform:matrix(0.216284,-0.003028,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216284,-0.003028,0.003500,0.249976,0,0);}
.m5a_c00304{transform:matrix(0.216394,-0.003030,0.003500,0.249976,0,0);-ms-transform:matrix(0.216394,-0.003030,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216394,-0.003030,0.003500,0.249976,0,0);}
.mc3_c00304{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.216869,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216869,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216869,-0.003036,0.003500,0.249976,0,0);}
.m38_c00304{transform:matrix(0.217059,-0.003039,0.003500,0.249976,0,0);-ms-transform:matrix(0.217059,-0.003039,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217059,-0.003039,0.003500,0.249976,0,0);}
.me5_c00304{transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.219324,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219324,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219324,-0.003071,0.003500,0.249976,0,0);}
.m2a_c00304{transform:matrix(0.219423,-0.003072,0.003500,0.249976,0,0);-ms-transform:matrix(0.219423,-0.003072,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219423,-0.003072,0.003500,0.249976,0,0);}
.m5f_c00304{transform:matrix(0.219613,-0.003075,0.003500,0.249976,0,0);-ms-transform:matrix(0.219613,-0.003075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219613,-0.003075,0.003500,0.249976,0,0);}
.mbd_c00304{transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);}
.m41_c00304{transform:matrix(0.220603,-0.003088,0.003500,0.249976,0,0);-ms-transform:matrix(0.220603,-0.003088,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220603,-0.003088,0.003500,0.249976,0,0);}
.m87_c00304{transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);-ms-transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);}
.m67_c00304{transform:matrix(0.222123,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222123,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222123,-0.003110,0.003500,0.249976,0,0);}
.m68_c00304{transform:matrix(0.223028,-0.003122,0.003500,0.249976,0,0);-ms-transform:matrix(0.223028,-0.003122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223028,-0.003122,0.003500,0.249976,0,0);}
.m79_c00304{transform:matrix(0.223963,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223963,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223963,-0.003135,0.003500,0.249976,0,0);}
.mbc_c00304{transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.225588,-0.003158,0.003500,0.249976,0,0);-ms-transform:matrix(0.225588,-0.003158,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225588,-0.003158,0.003500,0.249976,0,0);}
.m43_c00304{transform:matrix(0.225698,-0.003160,0.003500,0.249976,0,0);-ms-transform:matrix(0.225698,-0.003160,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225698,-0.003160,0.003500,0.249976,0,0);}
.ma1_c00304{transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);}
.md4_c00304{transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.227093,-0.003179,0.003500,0.249976,0,0);-ms-transform:matrix(0.227093,-0.003179,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227093,-0.003179,0.003500,0.249976,0,0);}
.m7d_c00304{transform:matrix(0.231147,-0.003236,0.003500,0.249976,0,0);-ms-transform:matrix(0.231147,-0.003236,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231147,-0.003236,0.003500,0.249976,0,0);}
.m5c_c00304{transform:matrix(0.231367,-0.003239,0.003500,0.249976,0,0);-ms-transform:matrix(0.231367,-0.003239,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231367,-0.003239,0.003500,0.249976,0,0);}
.m62_c00304{transform:matrix(0.233342,-0.003267,0.003500,0.249976,0,0);-ms-transform:matrix(0.233342,-0.003267,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233342,-0.003267,0.003500,0.249976,0,0);}
.m83_c00304{transform:matrix(0.236377,-0.003309,0.003500,0.249976,0,0);-ms-transform:matrix(0.236377,-0.003309,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236377,-0.003309,0.003500,0.249976,0,0);}
.m28_c00304{transform:matrix(0.237047,-0.003319,0.003500,0.249976,0,0);-ms-transform:matrix(0.237047,-0.003319,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237047,-0.003319,0.003500,0.249976,0,0);}
.mcb_c00304{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.238547,-0.003340,0.003500,0.249976,0,0);-ms-transform:matrix(0.238547,-0.003340,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238547,-0.003340,0.003500,0.249976,0,0);}
.m2b_c00304{transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);-ms-transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);}
.mcd_c00304{transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240910,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.241670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.250640,-0.003509,0.003500,0.249976,0,0);-ms-transform:matrix(0.250640,-0.003509,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250640,-0.003509,0.003500,0.249976,0,0);}
.me6_c00304{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.254765,-0.003567,0.003500,0.249976,0,0);-ms-transform:matrix(0.254765,-0.003567,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254765,-0.003567,0.003500,0.249976,0,0);}
.me4_c00304{transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259930,0.000000,0.000000,0.250000,0,0);}
.mca_c00304{transform:matrix(0.264355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264355,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);-ms-transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);}
.m81_c00304{transform:matrix(0.270688,-0.003790,0.003500,0.249976,0,0);-ms-transform:matrix(0.270688,-0.003790,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270688,-0.003790,0.003500,0.249976,0,0);}
.m91_c00304{transform:matrix(0.273270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273270,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.292941,-0.004101,0.003500,0.249976,0,0);-ms-transform:matrix(0.292941,-0.004101,0.003500,0.249976,0,0);-webkit-transform:matrix(0.292941,-0.004101,0.003500,0.249976,0,0);}
.mc6_c00304{transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.295756,-0.004141,0.003500,0.249976,0,0);-ms-transform:matrix(0.295756,-0.004141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.295756,-0.004141,0.003500,0.249976,0,0);}
.m86_c00304{transform:matrix(0.309965,-0.004340,0.003500,0.249976,0,0);-ms-transform:matrix(0.309965,-0.004340,0.003500,0.249976,0,0);-webkit-transform:matrix(0.309965,-0.004340,0.003500,0.249976,0,0);}
.me3_c00304{transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.342046,-0.004789,0.003500,0.249976,0,0);-ms-transform:matrix(0.342046,-0.004789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.342046,-0.004789,0.003500,0.249976,0,0);}
.m7e_c00304{transform:matrix(0.347016,-0.004858,0.003500,0.249976,0,0);-ms-transform:matrix(0.347016,-0.004858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.347016,-0.004858,0.003500,0.249976,0,0);}
.m48_c00304{transform:matrix(0.353635,-0.004951,0.003500,0.249976,0,0);-ms-transform:matrix(0.353635,-0.004951,0.003500,0.249976,0,0);-webkit-transform:matrix(0.353635,-0.004951,0.003500,0.249976,0,0);}
.mb5_c00304{transform:matrix(0.365330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365330,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.411915,-0.005767,0.003500,0.249976,0,0);-ms-transform:matrix(0.411915,-0.005767,0.003500,0.249976,0,0);-webkit-transform:matrix(0.411915,-0.005767,0.003500,0.249976,0,0);}
.m8f_c00304{transform:matrix(0.445770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445770,0.000000,0.000000,0.250000,0,0);}
.m47_c00304{transform:matrix(0.556775,-0.007795,0.003500,0.249976,0,0);-ms-transform:matrix(0.556775,-0.007795,0.003500,0.249976,0,0);-webkit-transform:matrix(0.556775,-0.007795,0.003500,0.249976,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:0.000000px;}
.fc0_c00304{color:transparent;}
.fs5_c00304{font-size:53.555248px;}
.fsa_c00304{font-size:57.755659px;}
.fs8_c00304{font-size:59.855865px;}
.fsd_c00304{font-size:60.905968px;}
.fs2_c00304{font-size:61.956071px;}
.fs6_c00304{font-size:63.006174px;}
.fs13_c00304{font-size:64.050000px;}
.fsc_c00304{font-size:65.106379px;}
.fs12_c00304{font-size:66.150000px;}
.fs9_c00304{font-size:66.156482px;}
.fs11_c00304{font-size:67.200000px;}
.fs7_c00304{font-size:67.206585px;}
.fse_c00304{font-size:68.250000px;}
.fsb_c00304{font-size:68.256688px;}
.fsf_c00304{font-size:69.300000px;}
.fs4_c00304{font-size:69.306791px;}
.fs10_c00304{font-size:70.350000px;}
.fs3_c00304{font-size:71.406997px;}
.fs15_c00304{font-size:72.450000px;}
.fs1_c00304{font-size:74.557306px;}
.fs14_c00304{font-size:80.850000px;}
.fs0_c00304{font-size:82.950000px;}
.fs16_c00304{font-size:93.450000px;}
.fs18_c00304{font-size:105.000000px;}
.fs17_c00304{font-size:154.350000px;}
.y0_c00304{bottom:0.000000px;}
.yae_c00304{bottom:26.842500px;}
.yad_c00304{bottom:49.233000px;}
.yac_c00304{bottom:60.154500px;}
.yab_c00304{bottom:79.078500px;}
.ya2_c00304{bottom:98.013000px;}
.ya3_c00304{bottom:98.307000px;}
.ya4_c00304{bottom:98.742000px;}
.ya5_c00304{bottom:99.628500px;}
.ya6_c00304{bottom:100.234500px;}
.ya7_c00304{bottom:101.092500px;}
.ya8_c00304{bottom:101.371500px;}
.ya9_c00304{bottom:102.096000px;}
.yaa_c00304{bottom:102.798000px;}
.ya1_c00304{bottom:119.490000px;}
.y99_c00304{bottom:127.713000px;}
.y9a_c00304{bottom:128.362500px;}
.y9b_c00304{bottom:128.646000px;}
.y9c_c00304{bottom:129.861000px;}
.y9d_c00304{bottom:130.131000px;}
.y9e_c00304{bottom:130.401000px;}
.y9f_c00304{bottom:131.260500px;}
.ya0_c00304{bottom:131.544000px;}
.y98_c00304{bottom:151.908000px;}
.y91_c00304{bottom:165.781500px;}
.y92_c00304{bottom:166.270500px;}
.y93_c00304{bottom:166.443000px;}
.y94_c00304{bottom:166.902000px;}
.y95_c00304{bottom:167.286000px;}
.y96_c00304{bottom:167.917500px;}
.y97_c00304{bottom:168.424500px;}
.y90_c00304{bottom:184.656000px;}
.y8f_c00304{bottom:202.884000px;}
.y8e_c00304{bottom:219.300000px;}
.y8d_c00304{bottom:237.208500px;}
.y8c_c00304{bottom:251.224500px;}
.y84_c00304{bottom:273.159816px;}
.y87_c00304{bottom:273.159969px;}
.y89_c00304{bottom:273.160023px;}
.y85_c00304{bottom:273.160032px;}
.y88_c00304{bottom:273.160164px;}
.y8a_c00304{bottom:273.160479px;}
.y86_c00304{bottom:273.160671px;}
.y8b_c00304{bottom:273.160878px;}
.y81_c00304{bottom:288.875928px;}
.y80_c00304{bottom:288.876249px;}
.y7f_c00304{bottom:288.876273px;}
.y7e_c00304{bottom:288.876315px;}
.y7d_c00304{bottom:288.876357px;}
.y7b_c00304{bottom:288.876423px;}
.y82_c00304{bottom:288.876567px;}
.y7c_c00304{bottom:288.876618px;}
.y83_c00304{bottom:288.876984px;}
.y73_c00304{bottom:306.396282px;}
.y72_c00304{bottom:306.396585px;}
.y74_c00304{bottom:306.396720px;}
.y76_c00304{bottom:306.396738px;}
.y77_c00304{bottom:306.397014px;}
.y78_c00304{bottom:306.397053px;}
.y7a_c00304{bottom:306.397248px;}
.y75_c00304{bottom:306.397299px;}
.y79_c00304{bottom:306.397371px;}
.y6d_c00304{bottom:323.769261px;}
.y6b_c00304{bottom:323.769465px;}
.y6c_c00304{bottom:323.769642px;}
.y6a_c00304{bottom:323.769927px;}
.y6e_c00304{bottom:323.769939px;}
.y6f_c00304{bottom:323.770176px;}
.y71_c00304{bottom:323.770530px;}
.y70_c00304{bottom:323.770812px;}
.y69_c00304{bottom:338.351385px;}
.y68_c00304{bottom:338.352069px;}
.y67_c00304{bottom:338.352411px;}
.y65_c00304{bottom:338.352537px;}
.y66_c00304{bottom:338.352654px;}
.y63_c00304{bottom:338.352864px;}
.y64_c00304{bottom:338.353098px;}
.y60_c00304{bottom:356.503779px;}
.y5c_c00304{bottom:356.504172px;}
.y5f_c00304{bottom:356.504301px;}
.y61_c00304{bottom:356.504316px;}
.y5d_c00304{bottom:356.504688px;}
.y5e_c00304{bottom:356.504982px;}
.y62_c00304{bottom:356.505015px;}
.y54_c00304{bottom:370.424547px;}
.y55_c00304{bottom:371.146479px;}
.y56_c00304{bottom:371.260266px;}
.y57_c00304{bottom:372.273633px;}
.y58_c00304{bottom:372.429930px;}
.y59_c00304{bottom:372.698607px;}
.y5a_c00304{bottom:373.557513px;}
.y5b_c00304{bottom:373.765269px;}
.y4d_c00304{bottom:386.626194px;}
.y4e_c00304{bottom:387.329781px;}
.y4f_c00304{bottom:387.492828px;}
.y50_c00304{bottom:387.757353px;}
.y51_c00304{bottom:388.428696px;}
.y52_c00304{bottom:389.427192px;}
.y53_c00304{bottom:389.659347px;}
.y44_c00304{bottom:405.407088px;}
.y45_c00304{bottom:405.407586px;}
.y48_c00304{bottom:405.408078px;}
.y46_c00304{bottom:405.408183px;}
.y4a_c00304{bottom:405.408315px;}
.y47_c00304{bottom:405.408339px;}
.y49_c00304{bottom:405.408396px;}
.y4b_c00304{bottom:405.408912px;}
.y4c_c00304{bottom:405.409611px;}
.y3f_c00304{bottom:423.015387px;}
.y40_c00304{bottom:423.015462px;}
.y43_c00304{bottom:423.015915px;}
.y3e_c00304{bottom:423.015972px;}
.y41_c00304{bottom:423.016101px;}
.y42_c00304{bottom:423.016440px;}
.y3d_c00304{bottom:439.313388px;}
.y3a_c00304{bottom:439.313571px;}
.y3c_c00304{bottom:439.313769px;}
.y37_c00304{bottom:439.313820px;}
.y36_c00304{bottom:439.314105px;}
.y38_c00304{bottom:439.314258px;}
.y3b_c00304{bottom:439.314270px;}
.y39_c00304{bottom:439.314294px;}
.y32_c00304{bottom:456.793560px;}
.y30_c00304{bottom:456.793743px;}
.y33_c00304{bottom:456.794058px;}
.y31_c00304{bottom:456.794121px;}
.y2f_c00304{bottom:456.794205px;}
.y2e_c00304{bottom:456.794268px;}
.y35_c00304{bottom:456.794409px;}
.y34_c00304{bottom:456.794694px;}
.y2c_c00304{bottom:473.559372px;}
.y28_c00304{bottom:473.559384px;}
.y2a_c00304{bottom:473.559417px;}
.y29_c00304{bottom:473.559843px;}
.y2b_c00304{bottom:473.559993px;}
.y2d_c00304{bottom:473.560008px;}
.y21_c00304{bottom:490.960683px;}
.y26_c00304{bottom:490.960992px;}
.y22_c00304{bottom:490.961241px;}
.y20_c00304{bottom:490.961346px;}
.y25_c00304{bottom:490.961355px;}
.y23_c00304{bottom:490.961580px;}
.y24_c00304{bottom:490.961616px;}
.y27_c00304{bottom:490.961631px;}
.y1b_c00304{bottom:505.436775px;}
.y1c_c00304{bottom:506.487678px;}
.y1d_c00304{bottom:507.912801px;}
.y1e_c00304{bottom:508.332234px;}
.y1f_c00304{bottom:509.325429px;}
.y12_c00304{bottom:522.449037px;}
.y13_c00304{bottom:523.237419px;}
.y14_c00304{bottom:523.922121px;}
.y15_c00304{bottom:524.925927px;}
.y16_c00304{bottom:525.205671px;}
.y17_c00304{bottom:525.432393px;}
.y18_c00304{bottom:526.056681px;}
.y19_c00304{bottom:526.361328px;}
.y1a_c00304{bottom:526.607358px;}
.ya_c00304{bottom:540.539682px;}
.yb_c00304{bottom:540.868443px;}
.yc_c00304{bottom:541.076820px;}
.yd_c00304{bottom:541.501818px;}
.ye_c00304{bottom:541.715625px;}
.yf_c00304{bottom:542.374848px;}
.y10_c00304{bottom:543.019713px;}
.y11_c00304{bottom:543.215214px;}
.y2_c00304{bottom:556.743000px;}
.y3_c00304{bottom:557.090361px;}
.y4_c00304{bottom:557.913582px;}
.y5_c00304{bottom:558.277428px;}
.y6_c00304{bottom:558.561117px;}
.y7_c00304{bottom:559.729074px;}
.y8_c00304{bottom:560.084415px;}
.y9_c00304{bottom:560.371716px;}
.y1_c00304{bottom:572.542500px;}
.h7_c00304{height:53.555248px;}
.hc_c00304{height:57.755659px;}
.ha_c00304{height:59.855865px;}
.hf_c00304{height:60.905968px;}
.h4_c00304{height:61.956071px;}
.h8_c00304{height:63.006174px;}
.h15_c00304{height:64.050000px;}
.he_c00304{height:65.106379px;}
.h14_c00304{height:66.150000px;}
.hb_c00304{height:66.156482px;}
.h13_c00304{height:67.200000px;}
.h9_c00304{height:67.206585px;}
.h10_c00304{height:68.250000px;}
.hd_c00304{height:68.256688px;}
.h11_c00304{height:69.300000px;}
.h6_c00304{height:69.306791px;}
.h12_c00304{height:70.350000px;}
.h5_c00304{height:71.406997px;}
.h17_c00304{height:72.450000px;}
.h3_c00304{height:74.557306px;}
.h16_c00304{height:80.850000px;}
.h2_c00304{height:82.950000px;}
.h18_c00304{height:93.450000px;}
.h1a_c00304{height:105.000000px;}
.h19_c00304{height:154.350000px;}
.h1_c00304{height:618.750000px;}
.h0_c00304{height:619.050000px;}
.w0_c00304{width:359.100000px;}
.w1_c00304{width:359.250000px;}
.x0_c00304{left:0.000000px;}
.x2c_c00304{left:26.727948px;}
.x75_c00304{left:27.807000px;}
.x37_c00304{left:30.237741px;}
.x54_c00304{left:31.321563px;}
.x84_c00304{left:33.480000px;}
.x2_c00304{left:35.578500px;}
.x10_c00304{left:36.954291px;}
.x5d_c00304{left:38.880000px;}
.x7c_c00304{left:41.580000px;}
.x60_c00304{left:45.090000px;}
.x22_c00304{left:47.519676px;}
.x68_c00304{left:53.460000px;}
.x79_c00304{left:55.363500px;}
.x5e_c00304{left:57.510000px;}
.x3_c00304{left:60.390000px;}
.x38_c00304{left:62.100978px;}
.x9_c00304{left:66.231207px;}
.x4b_c00304{left:72.094146px;}
.x26_c00304{left:76.142958px;}
.x76_c00304{left:77.766000px;}
.x6a_c00304{left:78.840000px;}
.x7a_c00304{left:80.955000px;}
.xa_c00304{left:85.187505px;}
.x70_c00304{left:86.544000px;}
.x4f_c00304{left:87.755892px;}
.x11_c00304{left:89.516556px;}
.x44_c00304{left:95.936670px;}
.x7d_c00304{left:97.200000px;}
.x27_c00304{left:99.364515px;}
.x55_c00304{left:101.527818px;}
.x6b_c00304{left:103.680000px;}
.x2d_c00304{left:106.116009px;}
.x39_c00304{left:108.545571px;}
.x19_c00304{left:112.524015px;}
.x61_c00304{left:113.670000px;}
.x3f_c00304{left:115.165134px;}
.x1d_c00304{left:117.996915px;}
.x4_c00304{left:119.191500px;}
.x5b_c00304{left:122.040000px;}
.xb_c00304{left:123.796122px;}
.x6c_c00304{left:125.010000px;}
.x82_c00304{left:126.090000px;}
.x2e_c00304{left:130.687818px;}
.x4c_c00304{left:131.769843px;}
.x62_c00304{left:133.380000px;}
.x12_c00304{left:135.208926px;}
.x28_c00304{left:136.898865px;}
.x40_c00304{left:139.203642px;}
.xc_c00304{left:143.247441px;}
.x5_c00304{left:145.180500px;}
.x50_c00304{left:146.621421px;}
.x85_c00304{left:147.960000px;}
.x69_c00304{left:149.580000px;}
.x7e_c00304{left:151.740000px;}
.x63_c00304{left:157.950000px;}
.x29_c00304{left:159.041712px;}
.x5f_c00304{left:161.190000px;}
.x1_c00304{left:166.050000px;}
.x83_c00304{left:167.670000px;}
.x7b_c00304{left:168.721500px;}
.x3a_c00304{left:171.461898px;}
.x56_c00304{left:173.624451px;}
.x77_c00304{left:177.390000px;}
.x80_c00304{left:179.280000px;}
.x46_c00304{left:180.372657px;}
.x34_c00304{left:182.262063px;}
.x2a_c00304{left:184.153626px;}
.x2f_c00304{left:185.772612px;}
.x71_c00304{left:188.061000px;}
.x3b_c00304{left:189.553947px;}
.x7f_c00304{left:191.430000px;}
.x6d_c00304{left:193.860000px;}
.x78_c00304{left:195.210000px;}
.x1e_c00304{left:196.574808px;}
.x41_c00304{left:200.230704px;}
.x13_c00304{left:202.086981px;}
.xd_c00304{left:203.194461px;}
.x23_c00304{left:206.025735px;}
.x1f_c00304{left:207.915534px;}
.x51_c00304{left:210.617958px;}
.x73_c00304{left:211.680000px;}
.x64_c00304{left:212.760000px;}
.x1a_c00304{left:214.318515px;}
.x35_c00304{left:218.446140px;}
.x14_c00304{left:220.782729px;}
.x59_c00304{left:223.310670px;}
.x45_c00304{left:225.342303px;}
.x3c_c00304{left:226.548192px;}
.x24_c00304{left:227.628477px;}
.x49_c00304{left:230.059980px;}
.x52_c00304{left:231.410532px;}
.x30_c00304{left:233.837541px;}
.x15_c00304{left:235.905519px;}
.x47_c00304{left:237.619392px;}
.x3d_c00304{left:239.509233px;}
.x57_c00304{left:241.671786px;}
.x1b_c00304{left:244.278015px;}
.x81_c00304{left:245.430000px;}
.x31_c00304{left:247.068624px;}
.x6_c00304{left:248.869500px;}
.x5c_c00304{left:250.290000px;}
.x20_c00304{left:252.469770px;}
.x4a_c00304{left:254.361747px;}
.x65_c00304{left:255.690000px;}
.x6e_c00304{left:260.010000px;}
.xe_c00304{left:261.794418px;}
.x32_c00304{left:269.751576px;}
.x86_c00304{left:270.810000px;}
.x21_c00304{left:271.912071px;}
.x74_c00304{left:272.970000px;}
.x7_c00304{left:274.251000px;}
.x4d_c00304{left:275.694525px;}
.x16_c00304{left:277.496931px;}
.xf_c00304{left:279.616674px;}
.x25_c00304{left:281.362998px;}
.x66_c00304{left:285.390000px;}
.x33_c00304{left:286.763415px;}
.x36_c00304{left:288.922458px;}
.x42_c00304{left:290.948505px;}
.x8_c00304{left:294.772500px;}
.x17_c00304{left:297.757137px;}
.x4e_c00304{left:300.536397px;}
.x72_c00304{left:302.001000px;}
.x6f_c00304{left:303.210000px;}
.x3e_c00304{left:305.936232px;}
.x67_c00304{left:307.260000px;}
.x53_c00304{left:308.368110px;}
.x48_c00304{left:310.257609px;}
.x43_c00304{left:312.031887px;}
.x18_c00304{left:314.151906px;}
.x1c_c00304{left:315.220515px;}
.x2b_c00304{left:317.276208px;}
.x5a_c00304{left:318.630339px;}
.x58_c00304{left:323.490309px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.fs5_c00304{font-size:47.604665pt;}
.fsa_c00304{font-size:51.338364pt;}
.fs8_c00304{font-size:53.205213pt;}
.fsd_c00304{font-size:54.138638pt;}
.fs2_c00304{font-size:55.072063pt;}
.fs6_c00304{font-size:56.005488pt;}
.fs13_c00304{font-size:56.933333pt;}
.fsc_c00304{font-size:57.872337pt;}
.fs12_c00304{font-size:58.800000pt;}
.fs9_c00304{font-size:58.805762pt;}
.fs11_c00304{font-size:59.733333pt;}
.fs7_c00304{font-size:59.739187pt;}
.fse_c00304{font-size:60.666667pt;}
.fsb_c00304{font-size:60.672612pt;}
.fsf_c00304{font-size:61.600000pt;}
.fs4_c00304{font-size:61.606037pt;}
.fs10_c00304{font-size:62.533333pt;}
.fs3_c00304{font-size:63.472886pt;}
.fs15_c00304{font-size:64.400000pt;}
.fs1_c00304{font-size:66.273160pt;}
.fs14_c00304{font-size:71.866667pt;}
.fs0_c00304{font-size:73.733333pt;}
.fs16_c00304{font-size:83.066667pt;}
.fs18_c00304{font-size:93.333333pt;}
.fs17_c00304{font-size:137.200000pt;}
.y0_c00304{bottom:0.000000pt;}
.yae_c00304{bottom:23.860000pt;}
.yad_c00304{bottom:43.762667pt;}
.yac_c00304{bottom:53.470667pt;}
.yab_c00304{bottom:70.292000pt;}
.ya2_c00304{bottom:87.122667pt;}
.ya3_c00304{bottom:87.384000pt;}
.ya4_c00304{bottom:87.770667pt;}
.ya5_c00304{bottom:88.558667pt;}
.ya6_c00304{bottom:89.097333pt;}
.ya7_c00304{bottom:89.860000pt;}
.ya8_c00304{bottom:90.108000pt;}
.ya9_c00304{bottom:90.752000pt;}
.yaa_c00304{bottom:91.376000pt;}
.ya1_c00304{bottom:106.213333pt;}
.y99_c00304{bottom:113.522667pt;}
.y9a_c00304{bottom:114.100000pt;}
.y9b_c00304{bottom:114.352000pt;}
.y9c_c00304{bottom:115.432000pt;}
.y9d_c00304{bottom:115.672000pt;}
.y9e_c00304{bottom:115.912000pt;}
.y9f_c00304{bottom:116.676000pt;}
.ya0_c00304{bottom:116.928000pt;}
.y98_c00304{bottom:135.029333pt;}
.y91_c00304{bottom:147.361333pt;}
.y92_c00304{bottom:147.796000pt;}
.y93_c00304{bottom:147.949333pt;}
.y94_c00304{bottom:148.357333pt;}
.y95_c00304{bottom:148.698667pt;}
.y96_c00304{bottom:149.260000pt;}
.y97_c00304{bottom:149.710667pt;}
.y90_c00304{bottom:164.138667pt;}
.y8f_c00304{bottom:180.341333pt;}
.y8e_c00304{bottom:194.933333pt;}
.y8d_c00304{bottom:210.852000pt;}
.y8c_c00304{bottom:223.310667pt;}
.y84_c00304{bottom:242.808725pt;}
.y87_c00304{bottom:242.808861pt;}
.y89_c00304{bottom:242.808909pt;}
.y85_c00304{bottom:242.808917pt;}
.y88_c00304{bottom:242.809035pt;}
.y8a_c00304{bottom:242.809315pt;}
.y86_c00304{bottom:242.809485pt;}
.y8b_c00304{bottom:242.809669pt;}
.y81_c00304{bottom:256.778603pt;}
.y80_c00304{bottom:256.778888pt;}
.y7f_c00304{bottom:256.778909pt;}
.y7e_c00304{bottom:256.778947pt;}
.y7d_c00304{bottom:256.778984pt;}
.y7b_c00304{bottom:256.779043pt;}
.y82_c00304{bottom:256.779171pt;}
.y7c_c00304{bottom:256.779216pt;}
.y83_c00304{bottom:256.779541pt;}
.y73_c00304{bottom:272.352251pt;}
.y72_c00304{bottom:272.352520pt;}
.y74_c00304{bottom:272.352640pt;}
.y76_c00304{bottom:272.352656pt;}
.y77_c00304{bottom:272.352901pt;}
.y78_c00304{bottom:272.352936pt;}
.y7a_c00304{bottom:272.353109pt;}
.y75_c00304{bottom:272.353155pt;}
.y79_c00304{bottom:272.353219pt;}
.y6d_c00304{bottom:287.794899pt;}
.y6b_c00304{bottom:287.795080pt;}
.y6c_c00304{bottom:287.795237pt;}
.y6a_c00304{bottom:287.795491pt;}
.y6e_c00304{bottom:287.795501pt;}
.y6f_c00304{bottom:287.795712pt;}
.y71_c00304{bottom:287.796027pt;}
.y70_c00304{bottom:287.796277pt;}
.y69_c00304{bottom:300.756787pt;}
.y68_c00304{bottom:300.757395pt;}
.y67_c00304{bottom:300.757699pt;}
.y65_c00304{bottom:300.757811pt;}
.y66_c00304{bottom:300.757915pt;}
.y63_c00304{bottom:300.758101pt;}
.y64_c00304{bottom:300.758309pt;}
.y60_c00304{bottom:316.892248pt;}
.y5c_c00304{bottom:316.892597pt;}
.y5f_c00304{bottom:316.892712pt;}
.y61_c00304{bottom:316.892725pt;}
.y5d_c00304{bottom:316.893056pt;}
.y5e_c00304{bottom:316.893317pt;}
.y62_c00304{bottom:316.893347pt;}
.y54_c00304{bottom:329.266264pt;}
.y55_c00304{bottom:329.907981pt;}
.y56_c00304{bottom:330.009125pt;}
.y57_c00304{bottom:330.909896pt;}
.y58_c00304{bottom:331.048827pt;}
.y59_c00304{bottom:331.287651pt;}
.y5a_c00304{bottom:332.051123pt;}
.y5b_c00304{bottom:332.235795pt;}
.y4d_c00304{bottom:343.667728pt;}
.y4e_c00304{bottom:344.293139pt;}
.y4f_c00304{bottom:344.438069pt;}
.y50_c00304{bottom:344.673203pt;}
.y51_c00304{bottom:345.269952pt;}
.y52_c00304{bottom:346.157504pt;}
.y53_c00304{bottom:346.363864pt;}
.y44_c00304{bottom:360.361856pt;}
.y45_c00304{bottom:360.362299pt;}
.y48_c00304{bottom:360.362736pt;}
.y46_c00304{bottom:360.362829pt;}
.y4a_c00304{bottom:360.362947pt;}
.y47_c00304{bottom:360.362968pt;}
.y49_c00304{bottom:360.363019pt;}
.y4b_c00304{bottom:360.363477pt;}
.y4c_c00304{bottom:360.364099pt;}
.y3f_c00304{bottom:376.013677pt;}
.y40_c00304{bottom:376.013744pt;}
.y43_c00304{bottom:376.014147pt;}
.y3e_c00304{bottom:376.014197pt;}
.y41_c00304{bottom:376.014312pt;}
.y42_c00304{bottom:376.014613pt;}
.y3d_c00304{bottom:390.500789pt;}
.y3a_c00304{bottom:390.500952pt;}
.y3c_c00304{bottom:390.501128pt;}
.y37_c00304{bottom:390.501173pt;}
.y36_c00304{bottom:390.501427pt;}
.y38_c00304{bottom:390.501563pt;}
.y3b_c00304{bottom:390.501573pt;}
.y39_c00304{bottom:390.501595pt;}
.y32_c00304{bottom:406.038720pt;}
.y30_c00304{bottom:406.038883pt;}
.y33_c00304{bottom:406.039163pt;}
.y31_c00304{bottom:406.039219pt;}
.y2f_c00304{bottom:406.039293pt;}
.y2e_c00304{bottom:406.039349pt;}
.y35_c00304{bottom:406.039475pt;}
.y34_c00304{bottom:406.039728pt;}
.y2c_c00304{bottom:420.941664pt;}
.y28_c00304{bottom:420.941675pt;}
.y2a_c00304{bottom:420.941704pt;}
.y29_c00304{bottom:420.942083pt;}
.y2b_c00304{bottom:420.942216pt;}
.y2d_c00304{bottom:420.942229pt;}
.y21_c00304{bottom:436.409496pt;}
.y26_c00304{bottom:436.409771pt;}
.y22_c00304{bottom:436.409992pt;}
.y20_c00304{bottom:436.410085pt;}
.y25_c00304{bottom:436.410093pt;}
.y23_c00304{bottom:436.410293pt;}
.y24_c00304{bottom:436.410325pt;}
.y27_c00304{bottom:436.410339pt;}
.y1b_c00304{bottom:449.277133pt;}
.y1c_c00304{bottom:450.211269pt;}
.y1d_c00304{bottom:451.478045pt;}
.y1e_c00304{bottom:451.850875pt;}
.y1f_c00304{bottom:452.733715pt;}
.y12_c00304{bottom:464.399144pt;}
.y13_c00304{bottom:465.099928pt;}
.y14_c00304{bottom:465.708552pt;}
.y15_c00304{bottom:466.600824pt;}
.y16_c00304{bottom:466.849485pt;}
.y17_c00304{bottom:467.051016pt;}
.y18_c00304{bottom:467.605939pt;}
.y19_c00304{bottom:467.876736pt;}
.y1a_c00304{bottom:468.095429pt;}
.ya_c00304{bottom:480.479717pt;}
.yb_c00304{bottom:480.771949pt;}
.yc_c00304{bottom:480.957173pt;}
.yd_c00304{bottom:481.334949pt;}
.ye_c00304{bottom:481.525000pt;}
.yf_c00304{bottom:482.110976pt;}
.y10_c00304{bottom:482.684189pt;}
.y11_c00304{bottom:482.857968pt;}
.y2_c00304{bottom:494.882667pt;}
.y3_c00304{bottom:495.191432pt;}
.y4_c00304{bottom:495.923184pt;}
.y5_c00304{bottom:496.246603pt;}
.y6_c00304{bottom:496.498771pt;}
.y7_c00304{bottom:497.536955pt;}
.y8_c00304{bottom:497.852813pt;}
.y9_c00304{bottom:498.108192pt;}
.y1_c00304{bottom:508.926667pt;}
.h7_c00304{height:47.604665pt;}
.hc_c00304{height:51.338364pt;}
.ha_c00304{height:53.205213pt;}
.hf_c00304{height:54.138638pt;}
.h4_c00304{height:55.072063pt;}
.h8_c00304{height:56.005488pt;}
.h15_c00304{height:56.933333pt;}
.he_c00304{height:57.872337pt;}
.h14_c00304{height:58.800000pt;}
.hb_c00304{height:58.805762pt;}
.h13_c00304{height:59.733333pt;}
.h9_c00304{height:59.739187pt;}
.h10_c00304{height:60.666667pt;}
.hd_c00304{height:60.672612pt;}
.h11_c00304{height:61.600000pt;}
.h6_c00304{height:61.606037pt;}
.h12_c00304{height:62.533333pt;}
.h5_c00304{height:63.472886pt;}
.h17_c00304{height:64.400000pt;}
.h3_c00304{height:66.273160pt;}
.h16_c00304{height:71.866667pt;}
.h2_c00304{height:73.733333pt;}
.h18_c00304{height:83.066667pt;}
.h1a_c00304{height:93.333333pt;}
.h19_c00304{height:137.200000pt;}
.h1_c00304{height:550.000000pt;}
.h0_c00304{height:550.266667pt;}
.w0_c00304{width:319.200000pt;}
.w1_c00304{width:319.333333pt;}
.x0_c00304{left:0.000000pt;}
.x2c_c00304{left:23.758176pt;}
.x75_c00304{left:24.717333pt;}
.x37_c00304{left:26.877992pt;}
.x54_c00304{left:27.841389pt;}
.x84_c00304{left:29.760000pt;}
.x2_c00304{left:31.625333pt;}
.x10_c00304{left:32.848259pt;}
.x5d_c00304{left:34.560000pt;}
.x7c_c00304{left:36.960000pt;}
.x60_c00304{left:40.080000pt;}
.x22_c00304{left:42.239712pt;}
.x68_c00304{left:47.520000pt;}
.x79_c00304{left:49.212000pt;}
.x5e_c00304{left:51.120000pt;}
.x3_c00304{left:53.680000pt;}
.x38_c00304{left:55.200869pt;}
.x9_c00304{left:58.872184pt;}
.x4b_c00304{left:64.083685pt;}
.x26_c00304{left:67.682629pt;}
.x76_c00304{left:69.125333pt;}
.x6a_c00304{left:70.080000pt;}
.x7a_c00304{left:71.960000pt;}
.xa_c00304{left:75.722227pt;}
.x70_c00304{left:76.928000pt;}
.x4f_c00304{left:78.005237pt;}
.x11_c00304{left:79.570272pt;}
.x44_c00304{left:85.277040pt;}
.x7d_c00304{left:86.400000pt;}
.x27_c00304{left:88.324013pt;}
.x55_c00304{left:90.246949pt;}
.x6b_c00304{left:92.160000pt;}
.x2d_c00304{left:94.325341pt;}
.x39_c00304{left:96.484952pt;}
.x19_c00304{left:100.021347pt;}
.x61_c00304{left:101.040000pt;}
.x3f_c00304{left:102.369008pt;}
.x1d_c00304{left:104.886147pt;}
.x4_c00304{left:105.948000pt;}
.x5b_c00304{left:108.480000pt;}
.xb_c00304{left:110.040997pt;}
.x6c_c00304{left:111.120000pt;}
.x82_c00304{left:112.080000pt;}
.x2e_c00304{left:116.166949pt;}
.x4c_c00304{left:117.128749pt;}
.x62_c00304{left:118.560000pt;}
.x12_c00304{left:120.185712pt;}
.x28_c00304{left:121.687880pt;}
.x40_c00304{left:123.736571pt;}
.xc_c00304{left:127.331059pt;}
.x5_c00304{left:129.049333pt;}
.x50_c00304{left:130.330152pt;}
.x85_c00304{left:131.520000pt;}
.x69_c00304{left:132.960000pt;}
.x7e_c00304{left:134.880000pt;}
.x63_c00304{left:140.400000pt;}
.x29_c00304{left:141.370411pt;}
.x5f_c00304{left:143.280000pt;}
.x1_c00304{left:147.600000pt;}
.x83_c00304{left:149.040000pt;}
.x7b_c00304{left:149.974667pt;}
.x3a_c00304{left:152.410576pt;}
.x56_c00304{left:154.332845pt;}
.x77_c00304{left:157.680000pt;}
.x80_c00304{left:159.360000pt;}
.x46_c00304{left:160.331251pt;}
.x34_c00304{left:162.010723pt;}
.x2a_c00304{left:163.692112pt;}
.x2f_c00304{left:165.131211pt;}
.x71_c00304{left:167.165333pt;}
.x3b_c00304{left:168.492397pt;}
.x7f_c00304{left:170.160000pt;}
.x6d_c00304{left:172.320000pt;}
.x78_c00304{left:173.520000pt;}
.x1e_c00304{left:174.733163pt;}
.x41_c00304{left:177.982848pt;}
.x13_c00304{left:179.632872pt;}
.xd_c00304{left:180.617299pt;}
.x23_c00304{left:183.133987pt;}
.x1f_c00304{left:184.813808pt;}
.x51_c00304{left:187.215963pt;}
.x73_c00304{left:188.160000pt;}
.x64_c00304{left:189.120000pt;}
.x1a_c00304{left:190.505347pt;}
.x35_c00304{left:194.174347pt;}
.x14_c00304{left:196.251315pt;}
.x59_c00304{left:198.498373pt;}
.x45_c00304{left:200.304269pt;}
.x3c_c00304{left:201.376171pt;}
.x24_c00304{left:202.336424pt;}
.x49_c00304{left:204.497760pt;}
.x52_c00304{left:205.698251pt;}
.x30_c00304{left:207.855592pt;}
.x15_c00304{left:209.693795pt;}
.x47_c00304{left:211.217237pt;}
.x3d_c00304{left:212.897096pt;}
.x57_c00304{left:214.819365pt;}
.x1b_c00304{left:217.136013pt;}
.x81_c00304{left:218.160000pt;}
.x31_c00304{left:219.616555pt;}
.x6_c00304{left:221.217333pt;}
.x5c_c00304{left:222.480000pt;}
.x20_c00304{left:224.417573pt;}
.x4a_c00304{left:226.099331pt;}
.x65_c00304{left:227.280000pt;}
.x6e_c00304{left:231.120000pt;}
.xe_c00304{left:232.706149pt;}
.x32_c00304{left:239.779179pt;}
.x86_c00304{left:240.720000pt;}
.x21_c00304{left:241.699619pt;}
.x74_c00304{left:242.640000pt;}
.x7_c00304{left:243.778667pt;}
.x4d_c00304{left:245.061800pt;}
.x16_c00304{left:246.663939pt;}
.xf_c00304{left:248.548155pt;}
.x25_c00304{left:250.100443pt;}
.x66_c00304{left:253.680000pt;}
.x33_c00304{left:254.900813pt;}
.x36_c00304{left:256.819963pt;}
.x42_c00304{left:258.620893pt;}
.x8_c00304{left:262.020000pt;}
.x17_c00304{left:264.673011pt;}
.x4e_c00304{left:267.143464pt;}
.x72_c00304{left:268.445333pt;}
.x6f_c00304{left:269.520000pt;}
.x3e_c00304{left:271.943317pt;}
.x67_c00304{left:273.120000pt;}
.x53_c00304{left:274.104987pt;}
.x48_c00304{left:275.784541pt;}
.x43_c00304{left:277.361677pt;}
.x18_c00304{left:279.246139pt;}
.x1c_c00304{left:280.196013pt;}
.x2b_c00304{left:282.023296pt;}
.x5a_c00304{left:283.226968pt;}
.x58_c00304{left:287.546941pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00305 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00305 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00305 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00305 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00305.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00305{transform:matrix(0.023915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023915,0.000000,0.000000,0.250000,0,0);}
.m85_c00305{transform:matrix(0.026935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026935,0.000000,0.000000,0.250000,0,0);}
.m84_c00305{transform:matrix(0.040405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040405,0.000000,0.000000,0.250000,0,0);}
.mf5_c00305{transform:matrix(0.044925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044925,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.053220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053220,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.081455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081455,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096855,0.000000,0.000000,0.250000,0,0);}
.m83_c00305{transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);}
.mba_c00305{transform:matrix(0.113195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113195,0.000000,0.000000,0.250000,0,0);}
.m4a_c00305{transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);}
.mfd_c00305{transform:matrix(0.117579,0.002234,-0.004749,0.249955,0,0);-ms-transform:matrix(0.117579,0.002234,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.117579,0.002234,-0.004749,0.249955,0,0);}
.mb6_c00305{transform:matrix(0.119080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119080,0.000000,0.000000,0.250000,0,0);}
.mcd_c00305{transform:matrix(0.123290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123290,0.000000,0.000000,0.250000,0,0);}
.mb7_c00305{transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);}
.mfe_c00305{transform:matrix(0.128732,0.002446,-0.004749,0.249955,0,0);-ms-transform:matrix(0.128732,0.002446,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.128732,0.002446,-0.004749,0.249955,0,0);}
.mb5_c00305{transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);}
.mff_c00305{transform:matrix(0.129672,0.002464,-0.004749,0.249955,0,0);-ms-transform:matrix(0.129672,0.002464,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.129672,0.002464,-0.004749,0.249955,0,0);}
.mfc_c00305{transform:matrix(0.130361,0.002477,-0.004749,0.249955,0,0);-ms-transform:matrix(0.130361,0.002477,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.130361,0.002477,-0.004749,0.249955,0,0);}
.mab_c00305{transform:matrix(0.130886,0.002749,-0.005249,0.249945,0,0);-ms-transform:matrix(0.130886,0.002749,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.130886,0.002749,-0.005249,0.249945,0,0);}
.md0_c00305{transform:matrix(0.132405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132405,0.000000,0.000000,0.250000,0,0);}
.mb2_c00305{transform:matrix(0.135685,0.002849,-0.005249,0.249945,0,0);-ms-transform:matrix(0.135685,0.002849,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.135685,0.002849,-0.005249,0.249945,0,0);}
.m8_c00305{transform:matrix(0.136705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136705,0.000000,0.000000,0.250000,0,0);}
.mce_c00305{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00305{transform:matrix(0.138435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138435,0.000000,0.000000,0.250000,0,0);}
.mbb_c00305{transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);}
.ma0_c00305{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.maa_c00305{transform:matrix(0.142679,0.002996,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142679,0.002996,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142679,0.002996,-0.005249,0.249945,0,0);}
.m29_c00305{transform:matrix(0.143548,0.001435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143548,0.001435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143548,0.001435,-0.002500,0.249988,0,0);}
.maf_c00305{transform:matrix(0.144173,0.003028,-0.005249,0.249945,0,0);-ms-transform:matrix(0.144173,0.003028,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.144173,0.003028,-0.005249,0.249945,0,0);}
.m87_c00305{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.md2_c00305{transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);}
.m9b_c00305{transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149240,0.000000,0.000000,0.250000,0,0);}
.mbc_c00305{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00305{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00305{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m4e_c00305{transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156180,0.000000,0.000000,0.250000,0,0);}
.md1_c00305{transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);}
.mb9_c00305{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.mb8_c00305{transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);}
.m8d_c00305{transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);}
.ma5_c00305{transform:matrix(0.159301,0.010854,-0.016995,0.249422,0,0);-ms-transform:matrix(0.159301,0.010854,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.159301,0.010854,-0.016995,0.249422,0,0);}
.mb4_c00305{transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);}
.mae_c00305{transform:matrix(0.160440,0.003369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160440,0.003369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160440,0.003369,-0.005249,0.249945,0,0);}
.me8_c00305{transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);}
.ma6_c00305{transform:matrix(0.161979,0.011037,-0.016995,0.249422,0,0);-ms-transform:matrix(0.161979,0.011037,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.161979,0.011037,-0.016995,0.249422,0,0);}
.m4f_c00305{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m56_c00305{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.mb3_c00305{transform:matrix(0.163679,0.003437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163679,0.003437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163679,0.003437,-0.005249,0.249945,0,0);}
.m92_c00305{transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164640,0.001811,-0.002750,0.249985,0,0);}
.m41_c00305{transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166530,0.000000,0.000000,0.250000,0,0);}
.m38_c00305{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.m50_c00305{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.mc5_c00305{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.m45_c00305{transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m79_c00305{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.ma7_c00305{transform:matrix(0.172106,0.011727,-0.016995,0.249422,0,0);-ms-transform:matrix(0.172106,0.011727,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.172106,0.011727,-0.016995,0.249422,0,0);}
.m2a_c00305{transform:matrix(0.172481,0.001725,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172481,0.001725,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172481,0.001725,-0.002500,0.249988,0,0);}
.me9_c00305{transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);}
.m9c_c00305{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.md8_c00305{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m47_c00305{transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);}
.m69_c00305{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.176631,0.001766,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176631,0.001766,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176631,0.001766,-0.002500,0.249988,0,0);}
.m34_c00305{transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);}
.m28_c00305{transform:matrix(0.177461,0.001775,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177461,0.001775,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177461,0.001775,-0.002500,0.249988,0,0);}
.ma4_c00305{transform:matrix(0.178017,0.012129,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178017,0.012129,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178017,0.012129,-0.016995,0.249422,0,0);}
.mcf_c00305{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m7a_c00305{transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);}
.ma9_c00305{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m4c_c00305{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.m31_c00305{transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);}
.m57_c00305{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m55_c00305{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m43_c00305{transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);}
.m80_c00305{transform:matrix(0.183286,0.001833,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183286,0.001833,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183286,0.001833,-0.002500,0.249988,0,0);}
.m24_c00305{transform:matrix(0.183441,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183441,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183441,0.001834,-0.002500,0.249988,0,0);}
.m9d_c00305{transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);}
.m100_c00305{transform:matrix(0.184822,0.003512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184822,0.003512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184822,0.003512,-0.004749,0.249955,0,0);}
.m77_c00305{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m97_c00305{transform:matrix(0.185214,0.002037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185214,0.002037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185214,0.002037,-0.002750,0.249985,0,0);}
.m7e_c00305{transform:matrix(0.185291,0.001853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185291,0.001853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185291,0.001853,-0.002500,0.249988,0,0);}
.m82_c00305{transform:matrix(0.186721,0.001867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186721,0.001867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186721,0.001867,-0.002500,0.249988,0,0);}
.m62_c00305{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m65_c00305{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);}
.m99_c00305{transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);}
.m64_c00305{transform:matrix(0.187380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187380,0.000000,0.000000,0.250000,0,0);}
.m75_c00305{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m46_c00305{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m76_c00305{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188090,0.000000,0.000000,0.250000,0,0);}
.md6_c00305{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m32_c00305{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.m63_c00305{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00305{transform:matrix(0.189601,0.001896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189601,0.001896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189601,0.001896,-0.002500,0.249988,0,0);}
.m8b_c00305{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(0.190390,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190390,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190390,0.001904,-0.002500,0.249988,0,0);}
.m2d_c00305{transform:matrix(0.190665,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190665,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190665,0.001907,-0.002500,0.249988,0,0);}
.m36_c00305{transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);}
.m8e_c00305{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m8c_c00305{transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191430,0.000000,0.000000,0.250000,0,0);}
.m54_c00305{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.ma2_c00305{transform:matrix(0.192045,0.013085,-0.016995,0.249422,0,0);-ms-transform:matrix(0.192045,0.013085,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.192045,0.013085,-0.016995,0.249422,0,0);}
.mf4_c00305{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);}
.mee_c00305{transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);}
.m2e_c00305{transform:matrix(0.193485,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193485,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193485,0.001935,-0.002500,0.249988,0,0);}
.m8a_c00305{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.mbd_c00305{transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);}
.mc2_c00305{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.ma8_c00305{transform:matrix(0.194404,0.013246,-0.016995,0.249422,0,0);-ms-transform:matrix(0.194404,0.013246,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.194404,0.013246,-0.016995,0.249422,0,0);}
.mc_c00305{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.mea_c00305{transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);}
.mb1_c00305{transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);}
.m58_c00305{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);}
.m49_c00305{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m21_c00305{transform:matrix(0.198020,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198020,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198020,0.001980,-0.002500,0.249988,0,0);}
.mc7_c00305{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m67_c00305{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m81_c00305{transform:matrix(0.199035,0.001990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199035,0.001990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199035,0.001990,-0.002500,0.249988,0,0);}
.m39_c00305{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m40_c00305{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00305{transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200110,0.000000,0.000000,0.250000,0,0);}
.m5a_c00305{transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m6d_c00305{transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);}
.m9e_c00305{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.md4_c00305{transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201365,0.000000,0.000000,0.250000,0,0);}
.m33_c00305{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.mdc_c00305{transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);}
.m89_c00305{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.m25_c00305{transform:matrix(0.204010,0.002040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204010,0.002040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204010,0.002040,-0.002500,0.249988,0,0);}
.m73_c00305{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.me7_c00305{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.mc9_c00305{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m98_c00305{transform:matrix(0.205193,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205193,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205193,0.002257,-0.002750,0.249985,0,0);}
.m3b_c00305{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.me3_c00305{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m5f_c00305{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{transform:matrix(0.207130,0.002071,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207130,0.002071,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207130,0.002071,-0.002500,0.249988,0,0);}
.m51_c00305{transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);}
.m71_c00305{transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);}
.mfb_c00305{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.208920,0.002089,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208920,0.002089,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208920,0.002089,-0.002500,0.249988,0,0);}
.mc4_c00305{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.mdb_c00305{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.mbf_c00305{transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);}
.me1_c00305{transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);}
.mda_c00305{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.mad_c00305{transform:matrix(0.209864,0.004407,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209864,0.004407,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209864,0.004407,-0.005249,0.249945,0,0);}
.mf0_c00305{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.mf6_c00305{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m6a_c00305{transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212555,0.000000,0.000000,0.250000,0,0);}
.m6c_c00305{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m5e_c00305{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.mdf_c00305{transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);}
.m88_c00305{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.213014,0.002130,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213014,0.002130,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213014,0.002130,-0.002500,0.249988,0,0);}
.m95_c00305{transform:matrix(0.213027,0.002343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213027,0.002343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213027,0.002343,-0.002750,0.249985,0,0);}
.mc6_c00305{transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);}
.m78_c00305{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.213159,0.002132,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213159,0.002132,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213159,0.002132,-0.002500,0.249988,0,0);}
.m7d_c00305{transform:matrix(0.213424,0.002134,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213424,0.002134,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213424,0.002134,-0.002500,0.249988,0,0);}
.m70_c00305{transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);}
.mde_c00305{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);}
.m6f_c00305{transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);}
.m60_c00305{transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);}
.me6_c00305{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216665,0.000000,0.000000,0.250000,0,0);}
.mca_c00305{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.mf1_c00305{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.m66_c00305{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m61_c00305{transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218735,0.000000,0.000000,0.250000,0,0);}
.mfa_c00305{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.m74_c00305{transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);}
.m72_c00305{transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);}
.m53_c00305{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m48_c00305{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.mc8_c00305{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.mc0_c00305{transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);}
.mf9_c00305{transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224710,0.000000,0.000000,0.250000,0,0);}
.m5b_c00305{transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);}
.m4b_c00305{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.md7_c00305{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.md9_c00305{transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);}
.meb_c00305{transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);}
.mef_c00305{transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);}
.m35_c00305{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.me0_c00305{transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);}
.md5_c00305{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.mbe_c00305{transform:matrix(0.231605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231605,0.000000,0.000000,0.250000,0,0);}
.mf8_c00305{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m96_c00305{transform:matrix(0.232856,0.002561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232856,0.002561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232856,0.002561,-0.002750,0.249985,0,0);}
.mb0_c00305{transform:matrix(0.233059,0.004894,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233059,0.004894,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233059,0.004894,-0.005249,0.249945,0,0);}
.mec_c00305{transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m90_c00305{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00305{transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m26_c00305{transform:matrix(0.241913,0.002419,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241913,0.002419,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241913,0.002419,-0.002500,0.249988,0,0);}
.mf7_c00305{transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);}
.me5_c00305{transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);}
.ma3_c00305{transform:matrix(0.245256,0.016711,-0.016995,0.249422,0,0);-ms-transform:matrix(0.245256,0.016711,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.245256,0.016711,-0.016995,0.249422,0,0);}
.m5d_c00305{transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00305{transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.mf3_c00305{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.mf2_c00305{transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);}
.m94_c00305{transform:matrix(0.254380,0.002798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254380,0.002798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254380,0.002798,-0.002750,0.249985,0,0);}
.m86_c00305{transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);}
.me2_c00305{transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);}
.me4_c00305{transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);}
.mcb_c00305{transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263770,0.000000,0.000000,0.250000,0,0);}
.mdd_c00305{transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);}
.m7b_c00305{transform:matrix(0.277810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277810,0.000000,0.000000,0.250000,0,0);}
.m5c_c00305{transform:matrix(0.278695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278695,0.000000,0.000000,0.250000,0,0);}
.m93_c00305{transform:matrix(0.279808,0.003078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279808,0.003078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279808,0.003078,-0.002750,0.249985,0,0);}
.m59_c00305{transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.md3_c00305{transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);}
.m52_c00305{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.mc3_c00305{transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);}
.mac_c00305{transform:matrix(0.310092,0.006512,-0.005249,0.249945,0,0);-ms-transform:matrix(0.310092,0.006512,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.310092,0.006512,-0.005249,0.249945,0,0);}
.m68_c00305{transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327545,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.327690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327690,0.000000,0.000000,0.250000,0,0);}
.med_c00305{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m7c_c00305{transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334865,0.000000,0.000000,0.250000,0,0);}
.m30_c00305{transform:matrix(0.360845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360845,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.373005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373005,0.000000,0.000000,0.250000,0,0);}
.mc1_c00305{transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);}
.m12_c00305{transform:matrix(0.440995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440995,0.000000,0.000000,0.250000,0,0);}
.m91_c00305{transform:matrix(0.470287,0.005173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.470287,0.005173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.470287,0.005173,-0.002750,0.249985,0,0);}
.m44_c00305{transform:matrix(0.535045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535045,0.000000,0.000000,0.250000,0,0);}
.m9a_c00305{transform:matrix(0.661095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661095,0.000000,0.000000,0.250000,0,0);}
.ma1_c00305{transform:matrix(0.717791,0.048908,-0.016995,0.249422,0,0);-ms-transform:matrix(0.717791,0.048908,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.717791,0.048908,-0.016995,0.249422,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls0_c00305{letter-spacing:0.000000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:0.000000px;}
.fc0_c00305{color:transparent;}
.fs12_c00305{font-size:22.050000px;}
.fse_c00305{font-size:28.350000px;}
.fs2_c00305{font-size:35.700000px;}
.fsc_c00305{font-size:60.900000px;}
.fsa_c00305{font-size:61.950000px;}
.fs4_c00305{font-size:63.003150px;}
.fsb_c00305{font-size:64.050000px;}
.fsf_c00305{font-size:65.103938px;}
.fs0_c00305{font-size:66.150000px;}
.fs6_c00305{font-size:67.200000px;}
.fs7_c00305{font-size:68.250000px;}
.fsd_c00305{font-size:68.253412px;}
.fs1_c00305{font-size:69.300000px;}
.fs5_c00305{font-size:69.303465px;}
.fs3_c00305{font-size:70.350000px;}
.fs8_c00305{font-size:72.450000px;}
.fs9_c00305{font-size:74.550000px;}
.fs11_c00305{font-size:75.623735px;}
.fs15_c00305{font-size:92.400000px;}
.fs16_c00305{font-size:95.567245px;}
.fs13_c00305{font-size:97.671529px;}
.fs10_c00305{font-size:103.982635px;}
.fs14_c00305{font-size:105.000000px;}
.y0_c00305{bottom:0.000000px;}
.y7b_c00305{bottom:24.963000px;}
.y7a_c00305{bottom:41.998500px;}
.y71_c00305{bottom:54.543000px;}
.y72_c00305{bottom:55.197000px;}
.y73_c00305{bottom:55.353000px;}
.y74_c00305{bottom:56.292000px;}
.y75_c00305{bottom:56.535000px;}
.y76_c00305{bottom:56.878500px;}
.y77_c00305{bottom:57.153000px;}
.y78_c00305{bottom:57.600000px;}
.y79_c00305{bottom:57.814500px;}
.y70_c00305{bottom:74.874000px;}
.y6f_c00305{bottom:91.449000px;}
.y6e_c00305{bottom:108.897000px;}
.y6d_c00305{bottom:124.960500px;}
.y67_c00305{bottom:143.641500px;}
.y68_c00305{bottom:143.926500px;}
.y69_c00305{bottom:144.360000px;}
.y6a_c00305{bottom:144.435000px;}
.y6b_c00305{bottom:145.605000px;}
.y6c_c00305{bottom:146.836500px;}
.y66_c00305{bottom:153.121500px;}
.y65_c00305{bottom:167.255854px;}
.y64_c00305{bottom:167.654928px;}
.y63_c00305{bottom:169.105881px;}
.y62_c00305{bottom:169.476006px;}
.y61_c00305{bottom:170.125536px;}
.y60_c00305{bottom:170.395743px;}
.y5f_c00305{bottom:171.142640px;}
.y5e_c00305{bottom:171.607485px;}
.y5d_c00305{bottom:172.740761px;}
.y5c_c00305{bottom:173.017457px;}
.y5b_c00305{bottom:173.617500px;}
.y59_c00305{bottom:185.356545px;}
.y58_c00305{bottom:186.564756px;}
.y57_c00305{bottom:187.438209px;}
.y56_c00305{bottom:189.409056px;}
.y55_c00305{bottom:190.514667px;}
.y54_c00305{bottom:191.165298px;}
.y53_c00305{bottom:204.877398px;}
.y5a_c00305{bottom:208.170000px;}
.y80_c00305{bottom:210.599043px;}
.y7f_c00305{bottom:211.424631px;}
.y52_c00305{bottom:211.482000px;}
.y7e_c00305{bottom:212.389584px;}
.y7d_c00305{bottom:212.871320px;}
.y7c_c00305{bottom:213.574500px;}
.y51_c00305{bottom:213.840000px;}
.y50_c00305{bottom:228.919500px;}
.y47_c00305{bottom:244.735500px;}
.y46_c00305{bottom:244.854000px;}
.y45_c00305{bottom:245.368500px;}
.y44_c00305{bottom:245.650500px;}
.y43_c00305{bottom:245.872500px;}
.y42_c00305{bottom:246.615000px;}
.y41_c00305{bottom:246.829500px;}
.y40_c00305{bottom:247.444500px;}
.y3f_c00305{bottom:247.860000px;}
.y3e_c00305{bottom:254.103000px;}
.y3d_c00305{bottom:261.572025px;}
.y3c_c00305{bottom:261.763560px;}
.y3b_c00305{bottom:262.233465px;}
.y3a_c00305{bottom:262.795035px;}
.y39_c00305{bottom:263.356710px;}
.y38_c00305{bottom:264.331500px;}
.y37_c00305{bottom:279.673500px;}
.y36_c00305{bottom:296.340000px;}
.y35_c00305{bottom:313.158000px;}
.y34_c00305{bottom:330.202500px;}
.y33_c00305{bottom:347.877000px;}
.y32_c00305{bottom:364.641000px;}
.y31_c00305{bottom:380.344500px;}
.y30_c00305{bottom:380.658000px;}
.y2f_c00305{bottom:381.105000px;}
.y2e_c00305{bottom:381.853500px;}
.y2d_c00305{bottom:382.470000px;}
.y2c_c00305{bottom:382.965000px;}
.y2b_c00305{bottom:383.400000px;}
.y2a_c00305{bottom:397.273500px;}
.y29_c00305{bottom:397.701000px;}
.y28_c00305{bottom:398.092500px;}
.y27_c00305{bottom:398.877000px;}
.y26_c00305{bottom:399.676500px;}
.y25_c00305{bottom:399.946500px;}
.y24_c00305{bottom:400.410000px;}
.y23_c00305{bottom:414.636000px;}
.y22_c00305{bottom:414.945000px;}
.y21_c00305{bottom:416.458500px;}
.y20_c00305{bottom:417.645000px;}
.y1f_c00305{bottom:418.231500px;}
.y1e_c00305{bottom:431.233500px;}
.y1d_c00305{bottom:431.496000px;}
.y1c_c00305{bottom:432.048000px;}
.y1b_c00305{bottom:432.768000px;}
.y1a_c00305{bottom:433.045500px;}
.y19_c00305{bottom:433.632000px;}
.y18_c00305{bottom:434.001000px;}
.y17_c00305{bottom:434.383500px;}
.y16_c00305{bottom:434.703000px;}
.y4f_c00305{bottom:448.524663px;}
.y4e_c00305{bottom:449.086290px;}
.y4d_c00305{bottom:449.391985px;}
.y4c_c00305{bottom:449.953447px;}
.y4b_c00305{bottom:450.173508px;}
.y4a_c00305{bottom:450.802818px;}
.y49_c00305{bottom:450.918615px;}
.y48_c00305{bottom:451.441500px;}
.y15_c00305{bottom:467.064000px;}
.y10_c00305{bottom:482.886780px;}
.y12_c00305{bottom:482.886825px;}
.y13_c00305{bottom:482.886840px;}
.ye_c00305{bottom:482.887035px;}
.yf_c00305{bottom:482.887065px;}
.y14_c00305{bottom:482.887155px;}
.y11_c00305{bottom:482.887395px;}
.yd_c00305{bottom:499.557930px;}
.yc_c00305{bottom:499.873875px;}
.yb_c00305{bottom:500.130255px;}
.ya_c00305{bottom:500.562525px;}
.y9_c00305{bottom:500.702760px;}
.y8_c00305{bottom:501.458985px;}
.y7_c00305{bottom:501.631800px;}
.y6_c00305{bottom:502.201500px;}
.y5_c00305{bottom:517.263000px;}
.y4_c00305{bottom:526.911000px;}
.y3_c00305{bottom:534.271500px;}
.y2_c00305{bottom:550.494000px;}
.y1_c00305{bottom:567.256500px;}
.h14_c00305{height:22.050000px;}
.h10_c00305{height:28.350000px;}
.h4_c00305{height:35.700000px;}
.he_c00305{height:60.900000px;}
.hc_c00305{height:61.950000px;}
.h6_c00305{height:63.003150px;}
.hd_c00305{height:64.050000px;}
.h11_c00305{height:65.103938px;}
.h2_c00305{height:66.150000px;}
.h8_c00305{height:67.200000px;}
.h9_c00305{height:68.250000px;}
.hf_c00305{height:68.253412px;}
.h3_c00305{height:69.300000px;}
.h7_c00305{height:69.303465px;}
.h5_c00305{height:70.350000px;}
.ha_c00305{height:72.450000px;}
.hb_c00305{height:74.550000px;}
.h13_c00305{height:75.623735px;}
.h17_c00305{height:92.400000px;}
.h18_c00305{height:95.567245px;}
.h15_c00305{height:97.671529px;}
.h12_c00305{height:103.982635px;}
.h16_c00305{height:105.000000px;}
.h1_c00305{height:618.750000px;}
.h0_c00305{height:619.050000px;}
.w0_c00305{width:359.100000px;}
.w1_c00305{width:359.250000px;}
.x0_c00305{left:0.000000px;}
.x7f_c00305{left:28.078500px;}
.x48_c00305{left:29.163000px;}
.x6a_c00305{left:31.924905px;}
.x66_c00305{left:33.480000px;}
.x4d_c00305{left:34.830000px;}
.x32_c00305{left:36.303000px;}
.xf_c00305{left:38.070000px;}
.x3_c00305{left:39.690000px;}
.x63_c00305{left:41.437500px;}
.x80_c00305{left:47.788500px;}
.x4e_c00305{left:55.620000px;}
.x6b_c00305{left:57.829725px;}
.x2b_c00305{left:62.713500px;}
.x10_c00305{left:64.260000px;}
.x15_c00305{left:65.880000px;}
.x42_c00305{left:69.663000px;}
.x4_c00305{left:71.010000px;}
.x3c_c00305{left:74.127000px;}
.x62_c00305{left:75.204000px;}
.x36_c00305{left:78.160500px;}
.x33_c00305{left:81.385500px;}
.x7e_c00305{left:83.644500px;}
.x55_c00305{left:85.320000px;}
.xb_c00305{left:88.560000px;}
.x2c_c00305{left:92.187000px;}
.x1c_c00305{left:94.915500px;}
.x22_c00305{left:97.201800px;}
.x51_c00305{left:99.090000px;}
.x79_c00305{left:100.440000px;}
.x37_c00305{left:102.733500px;}
.x5_c00305{left:104.490000px;}
.x58_c00305{left:106.110000px;}
.x1d_c00305{left:112.197000px;}
.x28_c00305{left:113.670000px;}
.x3d_c00305{left:115.395000px;}
.x43_c00305{left:117.723000px;}
.x2d_c00305{left:120.528000px;}
.x16_c00305{left:122.310000px;}
.x6d_c00305{left:123.390000px;}
.x23_c00305{left:125.283105px;}
.x76_c00305{left:127.980000px;}
.x69_c00305{left:130.161747px;}
.x5c_c00305{left:131.637000px;}
.x52_c00305{left:135.540000px;}
.x44_c00305{left:136.893000px;}
.x81_c00305{left:138.238500px;}
.x49_c00305{left:139.593000px;}
.x7c_c00305{left:143.910000px;}
.x59_c00305{left:148.500000px;}
.xc_c00305{left:150.390000px;}
.x45_c00305{left:152.553000px;}
.x6e_c00305{left:153.690000px;}
.x72_c00305{left:155.790000px;}
.x11_c00305{left:157.140000px;}
.x6_c00305{left:162.270000px;}
.x29_c00305{left:163.350000px;}
.x2e_c00305{left:165.631500px;}
.x3e_c00305{left:166.717500px;}
.x24_c00305{left:169.025985px;}
.x17_c00305{left:170.100000px;}
.x1_c00305{left:171.180000px;}
.x34_c00305{left:172.644000px;}
.x38_c00305{left:175.378500px;}
.x64_c00305{left:176.715000px;}
.x4a_c00305{left:179.013000px;}
.x7_c00305{left:181.170000px;}
.x12_c00305{left:184.680000px;}
.x7a_c00305{left:186.570000px;}
.x1e_c00305{left:187.819500px;}
.x2a_c00305{left:189.540000px;}
.x5f_c00305{left:191.160000px;}
.x5a_c00305{left:193.050000px;}
.x67_c00305{left:196.020000px;}
.x53_c00305{left:198.990000px;}
.x18_c00305{left:201.690000px;}
.x7d_c00305{left:207.630000px;}
.x75_c00305{left:209.902500px;}
.x6c_c00305{left:214.973013px;}
.x54_c00305{left:218.430000px;}
.x73_c00305{left:223.560000px;}
.x2_c00305{left:224.640000px;}
.x25_c00305{left:227.888865px;}
.x3f_c00305{left:229.095000px;}
.x7b_c00305{left:231.930000px;}
.x6f_c00305{left:233.053500px;}
.x8_c00305{left:234.090000px;}
.x4f_c00305{left:235.170000px;}
.xd_c00305{left:239.220000px;}
.x77_c00305{left:240.570000px;}
.x2f_c00305{left:242.292000px;}
.x5d_c00305{left:243.961500px;}
.x1f_c00305{left:245.070000px;}
.x39_c00305{left:246.691500px;}
.x56_c00305{left:249.480000px;}
.x70_c00305{left:250.678500px;}
.xe_c00305{left:252.990000px;}
.x4b_c00305{left:254.073000px;}
.x65_c00305{left:255.547500px;}
.x19_c00305{left:257.850000px;}
.x26_c00305{left:262.990875px;}
.x40_c00305{left:266.395500px;}
.x50_c00305{left:268.110000px;}
.x20_c00305{left:270.708000px;}
.x82_c00305{left:272.698500px;}
.x1a_c00305{left:273.780000px;}
.x27_c00305{left:279.461025px;}
.x60_c00305{left:281.070000px;}
.x3a_c00305{left:282.291000px;}
.x30_c00305{left:284.695500px;}
.x83_c00305{left:286.761000px;}
.x35_c00305{left:289.023000px;}
.x46_c00305{left:290.253000px;}
.x41_c00305{left:292.527000px;}
.x13_c00305{left:294.840000px;}
.x9_c00305{left:298.890000px;}
.x57_c00305{left:301.050000px;}
.x21_c00305{left:302.302500px;}
.x47_c00305{left:303.483000px;}
.x31_c00305{left:304.932000px;}
.x61_c00305{left:306.720000px;}
.x74_c00305{left:308.610000px;}
.x5e_c00305{left:310.105500px;}
.xa_c00305{left:312.120000px;}
.x78_c00305{left:314.010000px;}
.x4c_c00305{left:317.253000px;}
.x14_c00305{left:319.140000px;}
.x3b_c00305{left:321.160500px;}
.x68_c00305{left:322.920000px;}
.x1b_c00305{left:327.510000px;}
.x5b_c00305{left:329.400000px;}
.x71_c00305{left:338.775000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fs12_c00305{font-size:19.600000pt;}
.fse_c00305{font-size:25.200000pt;}
.fs2_c00305{font-size:31.733333pt;}
.fsc_c00305{font-size:54.133333pt;}
.fsa_c00305{font-size:55.066667pt;}
.fs4_c00305{font-size:56.002800pt;}
.fsb_c00305{font-size:56.933333pt;}
.fsf_c00305{font-size:57.870167pt;}
.fs0_c00305{font-size:58.800000pt;}
.fs6_c00305{font-size:59.733333pt;}
.fs7_c00305{font-size:60.666667pt;}
.fsd_c00305{font-size:60.669700pt;}
.fs1_c00305{font-size:61.600000pt;}
.fs5_c00305{font-size:61.603080pt;}
.fs3_c00305{font-size:62.533333pt;}
.fs8_c00305{font-size:64.400000pt;}
.fs9_c00305{font-size:66.266667pt;}
.fs11_c00305{font-size:67.221097pt;}
.fs15_c00305{font-size:82.133333pt;}
.fs16_c00305{font-size:84.948662pt;}
.fs13_c00305{font-size:86.819137pt;}
.fs10_c00305{font-size:92.429009pt;}
.fs14_c00305{font-size:93.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y7b_c00305{bottom:22.189333pt;}
.y7a_c00305{bottom:37.332000pt;}
.y71_c00305{bottom:48.482667pt;}
.y72_c00305{bottom:49.064000pt;}
.y73_c00305{bottom:49.202667pt;}
.y74_c00305{bottom:50.037333pt;}
.y75_c00305{bottom:50.253333pt;}
.y76_c00305{bottom:50.558667pt;}
.y77_c00305{bottom:50.802667pt;}
.y78_c00305{bottom:51.200000pt;}
.y79_c00305{bottom:51.390667pt;}
.y70_c00305{bottom:66.554667pt;}
.y6f_c00305{bottom:81.288000pt;}
.y6e_c00305{bottom:96.797333pt;}
.y6d_c00305{bottom:111.076000pt;}
.y67_c00305{bottom:127.681333pt;}
.y68_c00305{bottom:127.934667pt;}
.y69_c00305{bottom:128.320000pt;}
.y6a_c00305{bottom:128.386667pt;}
.y6b_c00305{bottom:129.426667pt;}
.y6c_c00305{bottom:130.521333pt;}
.y66_c00305{bottom:136.108000pt;}
.y65_c00305{bottom:148.671871pt;}
.y64_c00305{bottom:149.026603pt;}
.y63_c00305{bottom:150.316339pt;}
.y62_c00305{bottom:150.645339pt;}
.y61_c00305{bottom:151.222699pt;}
.y60_c00305{bottom:151.462883pt;}
.y5f_c00305{bottom:152.126791pt;}
.y5e_c00305{bottom:152.539987pt;}
.y5d_c00305{bottom:153.547343pt;}
.y5c_c00305{bottom:153.793295pt;}
.y5b_c00305{bottom:154.326667pt;}
.y59_c00305{bottom:164.761373pt;}
.y58_c00305{bottom:165.835339pt;}
.y57_c00305{bottom:166.611741pt;}
.y56_c00305{bottom:168.363605pt;}
.y55_c00305{bottom:169.346371pt;}
.y54_c00305{bottom:169.924709pt;}
.y53_c00305{bottom:182.113243pt;}
.y5a_c00305{bottom:185.040000pt;}
.y80_c00305{bottom:187.199149pt;}
.y7f_c00305{bottom:187.933005pt;}
.y52_c00305{bottom:187.984000pt;}
.y7e_c00305{bottom:188.790741pt;}
.y7d_c00305{bottom:189.218951pt;}
.y7c_c00305{bottom:189.844000pt;}
.y51_c00305{bottom:190.080000pt;}
.y50_c00305{bottom:203.484000pt;}
.y47_c00305{bottom:217.542667pt;}
.y46_c00305{bottom:217.648000pt;}
.y45_c00305{bottom:218.105333pt;}
.y44_c00305{bottom:218.356000pt;}
.y43_c00305{bottom:218.553333pt;}
.y42_c00305{bottom:219.213333pt;}
.y41_c00305{bottom:219.404000pt;}
.y40_c00305{bottom:219.950667pt;}
.y3f_c00305{bottom:220.320000pt;}
.y3e_c00305{bottom:225.869333pt;}
.y3d_c00305{bottom:232.508467pt;}
.y3c_c00305{bottom:232.678720pt;}
.y3b_c00305{bottom:233.096413pt;}
.y3a_c00305{bottom:233.595587pt;}
.y39_c00305{bottom:234.094853pt;}
.y38_c00305{bottom:234.961333pt;}
.y37_c00305{bottom:248.598667pt;}
.y36_c00305{bottom:263.413333pt;}
.y35_c00305{bottom:278.362667pt;}
.y34_c00305{bottom:293.513333pt;}
.y33_c00305{bottom:309.224000pt;}
.y32_c00305{bottom:324.125333pt;}
.y31_c00305{bottom:338.084000pt;}
.y30_c00305{bottom:338.362667pt;}
.y2f_c00305{bottom:338.760000pt;}
.y2e_c00305{bottom:339.425333pt;}
.y2d_c00305{bottom:339.973333pt;}
.y2c_c00305{bottom:340.413333pt;}
.y2b_c00305{bottom:340.800000pt;}
.y2a_c00305{bottom:353.132000pt;}
.y29_c00305{bottom:353.512000pt;}
.y28_c00305{bottom:353.860000pt;}
.y27_c00305{bottom:354.557333pt;}
.y26_c00305{bottom:355.268000pt;}
.y25_c00305{bottom:355.508000pt;}
.y24_c00305{bottom:355.920000pt;}
.y23_c00305{bottom:368.565333pt;}
.y22_c00305{bottom:368.840000pt;}
.y21_c00305{bottom:370.185333pt;}
.y20_c00305{bottom:371.240000pt;}
.y1f_c00305{bottom:371.761333pt;}
.y1e_c00305{bottom:383.318667pt;}
.y1d_c00305{bottom:383.552000pt;}
.y1c_c00305{bottom:384.042667pt;}
.y1b_c00305{bottom:384.682667pt;}
.y1a_c00305{bottom:384.929333pt;}
.y19_c00305{bottom:385.450667pt;}
.y18_c00305{bottom:385.778667pt;}
.y17_c00305{bottom:386.118667pt;}
.y16_c00305{bottom:386.402667pt;}
.y4f_c00305{bottom:398.688589pt;}
.y4e_c00305{bottom:399.187813pt;}
.y4d_c00305{bottom:399.459543pt;}
.y4c_c00305{bottom:399.958620pt;}
.y4b_c00305{bottom:400.154229pt;}
.y4a_c00305{bottom:400.713616pt;}
.y49_c00305{bottom:400.816547pt;}
.y48_c00305{bottom:401.281333pt;}
.y15_c00305{bottom:415.168000pt;}
.y10_c00305{bottom:429.232693pt;}
.y12_c00305{bottom:429.232733pt;}
.y13_c00305{bottom:429.232747pt;}
.ye_c00305{bottom:429.232920pt;}
.yf_c00305{bottom:429.232947pt;}
.y14_c00305{bottom:429.233027pt;}
.y11_c00305{bottom:429.233240pt;}
.yd_c00305{bottom:444.051493pt;}
.yc_c00305{bottom:444.332333pt;}
.yb_c00305{bottom:444.560227pt;}
.ya_c00305{bottom:444.944467pt;}
.y9_c00305{bottom:445.069120pt;}
.y8_c00305{bottom:445.741320pt;}
.y7_c00305{bottom:445.894933pt;}
.y6_c00305{bottom:446.401333pt;}
.y5_c00305{bottom:459.789333pt;}
.y4_c00305{bottom:468.365333pt;}
.y3_c00305{bottom:474.908000pt;}
.y2_c00305{bottom:489.328000pt;}
.y1_c00305{bottom:504.228000pt;}
.h14_c00305{height:19.600000pt;}
.h10_c00305{height:25.200000pt;}
.h4_c00305{height:31.733333pt;}
.he_c00305{height:54.133333pt;}
.hc_c00305{height:55.066667pt;}
.h6_c00305{height:56.002800pt;}
.hd_c00305{height:56.933333pt;}
.h11_c00305{height:57.870167pt;}
.h2_c00305{height:58.800000pt;}
.h8_c00305{height:59.733333pt;}
.h9_c00305{height:60.666667pt;}
.hf_c00305{height:60.669700pt;}
.h3_c00305{height:61.600000pt;}
.h7_c00305{height:61.603080pt;}
.h5_c00305{height:62.533333pt;}
.ha_c00305{height:64.400000pt;}
.hb_c00305{height:66.266667pt;}
.h13_c00305{height:67.221097pt;}
.h17_c00305{height:82.133333pt;}
.h18_c00305{height:84.948662pt;}
.h15_c00305{height:86.819137pt;}
.h12_c00305{height:92.429009pt;}
.h16_c00305{height:93.333333pt;}
.h1_c00305{height:550.000000pt;}
.h0_c00305{height:550.266667pt;}
.w0_c00305{width:319.200000pt;}
.w1_c00305{width:319.333333pt;}
.x0_c00305{left:0.000000pt;}
.x7f_c00305{left:24.958667pt;}
.x48_c00305{left:25.922667pt;}
.x6a_c00305{left:28.377693pt;}
.x66_c00305{left:29.760000pt;}
.x4d_c00305{left:30.960000pt;}
.x32_c00305{left:32.269333pt;}
.xf_c00305{left:33.840000pt;}
.x3_c00305{left:35.280000pt;}
.x63_c00305{left:36.833333pt;}
.x80_c00305{left:42.478667pt;}
.x4e_c00305{left:49.440000pt;}
.x6b_c00305{left:51.404200pt;}
.x2b_c00305{left:55.745333pt;}
.x10_c00305{left:57.120000pt;}
.x15_c00305{left:58.560000pt;}
.x42_c00305{left:61.922667pt;}
.x4_c00305{left:63.120000pt;}
.x3c_c00305{left:65.890667pt;}
.x62_c00305{left:66.848000pt;}
.x36_c00305{left:69.476000pt;}
.x33_c00305{left:72.342667pt;}
.x7e_c00305{left:74.350667pt;}
.x55_c00305{left:75.840000pt;}
.xb_c00305{left:78.720000pt;}
.x2c_c00305{left:81.944000pt;}
.x1c_c00305{left:84.369333pt;}
.x22_c00305{left:86.401600pt;}
.x51_c00305{left:88.080000pt;}
.x79_c00305{left:89.280000pt;}
.x37_c00305{left:91.318667pt;}
.x5_c00305{left:92.880000pt;}
.x58_c00305{left:94.320000pt;}
.x1d_c00305{left:99.730667pt;}
.x28_c00305{left:101.040000pt;}
.x3d_c00305{left:102.573333pt;}
.x43_c00305{left:104.642667pt;}
.x2d_c00305{left:107.136000pt;}
.x16_c00305{left:108.720000pt;}
.x6d_c00305{left:109.680000pt;}
.x23_c00305{left:111.362760pt;}
.x76_c00305{left:113.760000pt;}
.x69_c00305{left:115.699331pt;}
.x5c_c00305{left:117.010667pt;}
.x52_c00305{left:120.480000pt;}
.x44_c00305{left:121.682667pt;}
.x81_c00305{left:122.878667pt;}
.x49_c00305{left:124.082667pt;}
.x7c_c00305{left:127.920000pt;}
.x59_c00305{left:132.000000pt;}
.xc_c00305{left:133.680000pt;}
.x45_c00305{left:135.602667pt;}
.x6e_c00305{left:136.613333pt;}
.x72_c00305{left:138.480000pt;}
.x11_c00305{left:139.680000pt;}
.x6_c00305{left:144.240000pt;}
.x29_c00305{left:145.200000pt;}
.x2e_c00305{left:147.228000pt;}
.x3e_c00305{left:148.193333pt;}
.x24_c00305{left:150.245320pt;}
.x17_c00305{left:151.200000pt;}
.x1_c00305{left:152.160000pt;}
.x34_c00305{left:153.461333pt;}
.x38_c00305{left:155.892000pt;}
.x64_c00305{left:157.080000pt;}
.x4a_c00305{left:159.122667pt;}
.x7_c00305{left:161.040000pt;}
.x12_c00305{left:164.160000pt;}
.x7a_c00305{left:165.840000pt;}
.x1e_c00305{left:166.950667pt;}
.x2a_c00305{left:168.480000pt;}
.x5f_c00305{left:169.920000pt;}
.x5a_c00305{left:171.600000pt;}
.x67_c00305{left:174.240000pt;}
.x53_c00305{left:176.880000pt;}
.x18_c00305{left:179.280000pt;}
.x7d_c00305{left:184.560000pt;}
.x75_c00305{left:186.580000pt;}
.x6c_c00305{left:191.087123pt;}
.x54_c00305{left:194.160000pt;}
.x73_c00305{left:198.720000pt;}
.x2_c00305{left:199.680000pt;}
.x25_c00305{left:202.567880pt;}
.x3f_c00305{left:203.640000pt;}
.x7b_c00305{left:206.160000pt;}
.x6f_c00305{left:207.158667pt;}
.x8_c00305{left:208.080000pt;}
.x4f_c00305{left:209.040000pt;}
.xd_c00305{left:212.640000pt;}
.x77_c00305{left:213.840000pt;}
.x2f_c00305{left:215.370667pt;}
.x5d_c00305{left:216.854667pt;}
.x1f_c00305{left:217.840000pt;}
.x39_c00305{left:219.281333pt;}
.x56_c00305{left:221.760000pt;}
.x70_c00305{left:222.825333pt;}
.xe_c00305{left:224.880000pt;}
.x4b_c00305{left:225.842667pt;}
.x65_c00305{left:227.153333pt;}
.x19_c00305{left:229.200000pt;}
.x26_c00305{left:233.769667pt;}
.x40_c00305{left:236.796000pt;}
.x50_c00305{left:238.320000pt;}
.x20_c00305{left:240.629333pt;}
.x82_c00305{left:242.398667pt;}
.x1a_c00305{left:243.360000pt;}
.x27_c00305{left:248.409800pt;}
.x60_c00305{left:249.840000pt;}
.x3a_c00305{left:250.925333pt;}
.x30_c00305{left:253.062667pt;}
.x83_c00305{left:254.898667pt;}
.x35_c00305{left:256.909333pt;}
.x46_c00305{left:258.002667pt;}
.x41_c00305{left:260.024000pt;}
.x13_c00305{left:262.080000pt;}
.x9_c00305{left:265.680000pt;}
.x57_c00305{left:267.600000pt;}
.x21_c00305{left:268.713333pt;}
.x47_c00305{left:269.762667pt;}
.x31_c00305{left:271.050667pt;}
.x61_c00305{left:272.640000pt;}
.x74_c00305{left:274.320000pt;}
.x5e_c00305{left:275.649333pt;}
.xa_c00305{left:277.440000pt;}
.x78_c00305{left:279.120000pt;}
.x4c_c00305{left:282.002667pt;}
.x14_c00305{left:283.680000pt;}
.x3b_c00305{left:285.476000pt;}
.x68_c00305{left:287.040000pt;}
.x1b_c00305{left:291.120000pt;}
.x5b_c00305{left:292.800000pt;}
.x71_c00305{left:301.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00306 {
    display:none;
  }
  .loading-indicator_c00306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00306 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00306 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00306" -> "#page-container .classname_c00306")
 */
.pf_c00306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00306 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00306 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00306 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00306 {overflow:visible;}
  }
}
.c_c00306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00306 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00306:after { /* webkit #35443 */
  content: '';
}
.t_c00306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00306 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00306 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00306 { /* info for Javascript */
  display:none;
}
.l_c00306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00306:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00306 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00306.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00306{transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);}
.m4f_c00306{transform:matrix(0.032525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032525,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.116714,-0.001634,0.003500,0.249976,0,0);-ms-transform:matrix(0.116714,-0.001634,0.003500,0.249976,0,0);-webkit-transform:matrix(0.116714,-0.001634,0.003500,0.249976,0,0);}
.m69_c00306{transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.150395,-0.002106,0.003500,0.249976,0,0);-ms-transform:matrix(0.150395,-0.002106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150395,-0.002106,0.003500,0.249976,0,0);}
.m48_c00306{transform:matrix(0.152580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152580,0.000000,0.000000,0.250000,0,0);}
.m65_c00306{transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);}
.m54_c00306{transform:matrix(0.160995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160995,0.000000,0.000000,0.250000,0,0);}
.m3b_c00306{transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161160,0.000000,0.000000,0.250000,0,0);}
.m46_c00306{transform:matrix(0.161580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161580,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.162344,-0.002273,0.003500,0.249976,0,0);-ms-transform:matrix(0.162344,-0.002273,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162344,-0.002273,0.003500,0.249976,0,0);}
.m14_c00306{transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);-ms-transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);}
.m1f_c00306{transform:matrix(0.168129,-0.002354,0.003500,0.249976,0,0);-ms-transform:matrix(0.168129,-0.002354,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168129,-0.002354,0.003500,0.249976,0,0);}
.m2d_c00306{transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);-ms-transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);}
.m5e_c00306{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m31_c00306{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.m35_c00306{transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.m37_c00306{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.175178,-0.002452,0.003500,0.249976,0,0);-ms-transform:matrix(0.175178,-0.002452,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175178,-0.002452,0.003500,0.249976,0,0);}
.m13_c00306{transform:matrix(0.176538,-0.002472,0.003500,0.249976,0,0);-ms-transform:matrix(0.176538,-0.002472,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176538,-0.002472,0.003500,0.249976,0,0);}
.m22_c00306{transform:matrix(0.177638,-0.002487,0.003500,0.249976,0,0);-ms-transform:matrix(0.177638,-0.002487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177638,-0.002487,0.003500,0.249976,0,0);}
.m20_c00306{transform:matrix(0.180217,-0.002523,0.003500,0.249976,0,0);-ms-transform:matrix(0.180217,-0.002523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180217,-0.002523,0.003500,0.249976,0,0);}
.m64_c00306{transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.180907,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180907,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180907,-0.002533,0.003500,0.249976,0,0);}
.m9_c00306{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m57_c00306{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m3d_c00306{transform:matrix(0.184814,-0.003881,0.005249,0.249945,0,0);-ms-transform:matrix(0.184814,-0.003881,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184814,-0.003881,0.005249,0.249945,0,0);}
.m23_c00306{transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);}
.m36_c00306{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.m6d_c00306{transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m43_c00306{transform:matrix(0.190903,-0.004009,0.005249,0.249945,0,0);-ms-transform:matrix(0.190903,-0.004009,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190903,-0.004009,0.005249,0.249945,0,0);}
.m15_c00306{transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);-ms-transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);}
.m5d_c00306{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.m6c_c00306{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.192731,-0.002698,0.003500,0.249976,0,0);-ms-transform:matrix(0.192731,-0.002698,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192731,-0.002698,0.003500,0.249976,0,0);}
.m4_c00306{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.m26_c00306{transform:matrix(0.195761,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195761,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195761,-0.002741,0.003500,0.249976,0,0);}
.m6_c00306{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m3f_c00306{transform:matrix(0.196647,-0.004130,0.005249,0.249945,0,0);-ms-transform:matrix(0.196647,-0.004130,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196647,-0.004130,0.005249,0.249945,0,0);}
.m66_c00306{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m42_c00306{transform:matrix(0.198086,-0.004160,0.005249,0.249945,0,0);-ms-transform:matrix(0.198086,-0.004160,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198086,-0.004160,0.005249,0.249945,0,0);}
.m1c_c00306{transform:matrix(0.199250,-0.002790,0.003500,0.249976,0,0);-ms-transform:matrix(0.199250,-0.002790,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199250,-0.002790,0.003500,0.249976,0,0);}
.m1b_c00306{transform:matrix(0.199535,-0.002793,0.003500,0.249976,0,0);-ms-transform:matrix(0.199535,-0.002793,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199535,-0.002793,0.003500,0.249976,0,0);}
.m47_c00306{transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);}
.m28_c00306{transform:matrix(0.201315,-0.002818,0.003500,0.249976,0,0);-ms-transform:matrix(0.201315,-0.002818,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201315,-0.002818,0.003500,0.249976,0,0);}
.m1_c00306{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.m40_c00306{transform:matrix(0.201556,-0.004233,0.005249,0.249945,0,0);-ms-transform:matrix(0.201556,-0.004233,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201556,-0.004233,0.005249,0.249945,0,0);}
.m67_c00306{transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.203215,-0.002845,0.003500,0.249976,0,0);-ms-transform:matrix(0.203215,-0.002845,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203215,-0.002845,0.003500,0.249976,0,0);}
.m6a_c00306{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m3a_c00306{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.m41_c00306{transform:matrix(0.205375,-0.004313,0.005249,0.249945,0,0);-ms-transform:matrix(0.205375,-0.004313,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205375,-0.004313,0.005249,0.249945,0,0);}
.m2c_c00306{transform:matrix(0.206950,-0.002897,0.003500,0.249976,0,0);-ms-transform:matrix(0.206950,-0.002897,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206950,-0.002897,0.003500,0.249976,0,0);}
.m4b_c00306{transform:matrix(0.208610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208610,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209695,0.000000,0.000000,0.250000,0,0);}
.m6b_c00306{transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);}
.m59_c00306{transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210680,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00306{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.215609,-0.003019,0.003500,0.249976,0,0);-ms-transform:matrix(0.215609,-0.003019,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215609,-0.003019,0.003500,0.249976,0,0);}
.m3e_c00306{transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);-ms-transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216037,-0.004537,0.005249,0.249945,0,0);}
.m17_c00306{transform:matrix(0.216654,-0.003033,0.003500,0.249976,0,0);-ms-transform:matrix(0.216654,-0.003033,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216654,-0.003033,0.003500,0.249976,0,0);}
.m62_c00306{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.218539,-0.003060,0.003500,0.249976,0,0);-ms-transform:matrix(0.218539,-0.003060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218539,-0.003060,0.003500,0.249976,0,0);}
.m2a_c00306{transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219029,-0.003066,0.003500,0.249976,0,0);}
.m21_c00306{transform:matrix(0.221718,-0.003104,0.003500,0.249976,0,0);-ms-transform:matrix(0.221718,-0.003104,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221718,-0.003104,0.003500,0.249976,0,0);}
.m3_c00306{transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);}
.m58_c00306{transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m63_c00306{transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);}
.m5a_c00306{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m27_c00306{transform:matrix(0.231497,-0.003241,0.003500,0.249976,0,0);-ms-transform:matrix(0.231497,-0.003241,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231497,-0.003241,0.003500,0.249976,0,0);}
.m39_c00306{transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00306{transform:matrix(0.240151,-0.003362,0.003500,0.249976,0,0);-ms-transform:matrix(0.240151,-0.003362,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240151,-0.003362,0.003500,0.249976,0,0);}
.m5c_c00306{transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);}
.m61_c00306{transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);}
.m6e_c00306{transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261545,0.000000,0.000000,0.250000,0,0);}
.m68_c00306{transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);}
.m51_c00306{transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);}
.m4d_c00306{transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);}
.m60_c00306{transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.280982,-0.003934,0.003500,0.249976,0,0);-ms-transform:matrix(0.280982,-0.003934,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280982,-0.003934,0.003500,0.249976,0,0);}
.m5f_c00306{transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);}
.m55_c00306{transform:matrix(0.294005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294005,0.000000,0.000000,0.250000,0,0);}
.m4e_c00306{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m24_c00306{transform:matrix(0.300621,-0.004209,0.003500,0.249976,0,0);-ms-transform:matrix(0.300621,-0.004209,0.003500,0.249976,0,0);-webkit-transform:matrix(0.300621,-0.004209,0.003500,0.249976,0,0);}
.m3c_c00306{transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00306{transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{transform:matrix(0.379715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379715,0.000000,0.000000,0.250000,0,0);}
.m50_c00306{transform:matrix(0.386400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386400,0.000000,0.000000,0.250000,0,0);}
.m30_c00306{transform:matrix(0.390070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390070,0.000000,0.000000,0.250000,0,0);}
.m5b_c00306{transform:matrix(0.429975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429975,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.483170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483170,0.000000,0.000000,0.250000,0,0);}
.m33_c00306{transform:matrix(0.543080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543080,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.576745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576745,0.000000,0.000000,0.250000,0,0);}
.m53_c00306{transform:matrix(0.903400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.903400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.903400,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{transform:matrix(1.202245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202245,0.000000,0.000000,0.250000,0,0);}
.m52_c00306{transform:matrix(1.815215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.815215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.815215,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls0_c00306{letter-spacing:0.000000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:0.000000px;}
._0_c00306{width:13.417115px;}
.fc0_c00306{color:transparent;}
.fs7_c00306{font-size:22.050000px;}
.fsb_c00306{font-size:26.250000px;}
.fsa_c00306{font-size:38.850000px;}
.fs5_c00306{font-size:44.100000px;}
.fsd_c00306{font-size:63.000000px;}
.fs1_c00306{font-size:64.050000px;}
.fs0_c00306{font-size:65.100000px;}
.fs4_c00306{font-size:65.106379px;}
.fs8_c00306{font-size:65.114353px;}
.fsc_c00306{font-size:66.150000px;}
.fs6_c00306{font-size:67.200000px;}
.fs3_c00306{font-size:68.256688px;}
.fs9_c00306{font-size:70.350000px;}
.fs2_c00306{font-size:72.457100px;}
.y0_c00306{bottom:0.000000px;}
.y3e_c00306{bottom:61.290000px;}
.y3d_c00306{bottom:77.289000px;}
.y33_c00306{bottom:91.533000px;}
.y34_c00306{bottom:91.822500px;}
.y35_c00306{bottom:91.893000px;}
.y36_c00306{bottom:92.587500px;}
.y37_c00306{bottom:92.784000px;}
.y38_c00306{bottom:93.211500px;}
.y39_c00306{bottom:93.415500px;}
.y3a_c00306{bottom:94.390500px;}
.y3b_c00306{bottom:94.686000px;}
.y3c_c00306{bottom:95.229000px;}
.y32_c00306{bottom:110.497500px;}
.y31_c00306{bottom:169.020000px;}
.y30_c00306{bottom:195.682500px;}
.y29_c00306{bottom:208.987500px;}
.y2a_c00306{bottom:209.470175px;}
.y2b_c00306{bottom:210.116051px;}
.y2c_c00306{bottom:211.028480px;}
.y2d_c00306{bottom:212.495718px;}
.y2e_c00306{bottom:213.267374px;}
.y2f_c00306{bottom:214.407264px;}
.y28_c00306{bottom:294.301500px;}
.y27_c00306{bottom:350.185500px;}
.y26_c00306{bottom:357.819000px;}
.y25_c00306{bottom:467.184120px;}
.y22_c00306{bottom:467.184246px;}
.y21_c00306{bottom:467.184249px;}
.y24_c00306{bottom:467.184321px;}
.y23_c00306{bottom:467.184405px;}
.y20_c00306{bottom:467.184573px;}
.y1f_c00306{bottom:467.185257px;}
.y18_c00306{bottom:484.895922px;}
.y1a_c00306{bottom:484.896117px;}
.y19_c00306{bottom:484.896561px;}
.y1b_c00306{bottom:484.896816px;}
.y1e_c00306{bottom:484.897266px;}
.y1c_c00306{bottom:484.897293px;}
.y1d_c00306{bottom:484.897590px;}
.y14_c00306{bottom:502.807302px;}
.y17_c00306{bottom:502.807653px;}
.y13_c00306{bottom:502.807767px;}
.y15_c00306{bottom:502.807818px;}
.y16_c00306{bottom:502.808316px;}
.y12_c00306{bottom:502.808508px;}
.y11_c00306{bottom:502.808790px;}
.y9_c00306{bottom:516.043500px;}
.ya_c00306{bottom:517.171011px;}
.yb_c00306{bottom:517.439685px;}
.yc_c00306{bottom:517.650756px;}
.yd_c00306{bottom:518.346675px;}
.ye_c00306{bottom:518.702331px;}
.yf_c00306{bottom:519.600984px;}
.y10_c00306{bottom:519.711486px;}
.y2_c00306{bottom:534.061500px;}
.y3_c00306{bottom:534.357000px;}
.y4_c00306{bottom:534.775500px;}
.y5_c00306{bottom:535.432500px;}
.y6_c00306{bottom:535.750500px;}
.y7_c00306{bottom:536.443500px;}
.y8_c00306{bottom:536.751000px;}
.y1_c00306{bottom:553.798500px;}
.h9_c00306{height:22.050000px;}
.hd_c00306{height:26.250000px;}
.hc_c00306{height:38.850000px;}
.h7_c00306{height:44.100000px;}
.hf_c00306{height:63.000000px;}
.h3_c00306{height:64.050000px;}
.h2_c00306{height:65.100000px;}
.h6_c00306{height:65.106379px;}
.ha_c00306{height:65.114353px;}
.he_c00306{height:66.150000px;}
.h8_c00306{height:67.200000px;}
.h5_c00306{height:68.256688px;}
.hb_c00306{height:70.350000px;}
.h4_c00306{height:72.457100px;}
.h1_c00306{height:618.750000px;}
.h0_c00306{height:619.050000px;}
.w0_c00306{width:359.100000px;}
.w1_c00306{width:359.250000px;}
.x0_c00306{left:0.000000px;}
.x3b_c00306{left:25.110000px;}
.x1_c00306{left:26.730000px;}
.x25_c00306{left:29.156139px;}
.x4e_c00306{left:30.240000px;}
.x42_c00306{left:31.860000px;}
.x2b_c00306{left:34.020000px;}
.x1f_c00306{left:39.146187px;}
.x12_c00306{left:40.599000px;}
.x50_c00306{left:42.120000px;}
.x47_c00306{left:45.211500px;}
.x2_c00306{left:48.600000px;}
.x36_c00306{left:49.795500px;}
.xc_c00306{left:51.727500px;}
.x43_c00306{left:57.240000px;}
.x19_c00306{left:58.859832px;}
.x3c_c00306{left:59.940000px;}
.x2c_c00306{left:62.100000px;}
.x31_c00306{left:69.390000px;}
.x3_c00306{left:74.790000px;}
.x1a_c00306{left:79.382364px;}
.x37_c00306{left:80.551500px;}
.xd_c00306{left:86.559000px;}
.x4_c00306{left:95.580000px;}
.x20_c00306{left:96.661464px;}
.x26_c00306{left:98.013642px;}
.x48_c00306{left:99.840000px;}
.x3d_c00306{left:105.570000px;}
.x5_c00306{left:110.700000px;}
.x2d_c00306{left:112.050000px;}
.x49_c00306{left:113.854500px;}
.x21_c00306{left:116.643870px;}
.x13_c00306{left:121.135500px;}
.x38_c00306{left:124.000500px;}
.x3e_c00306{left:125.550000px;}
.x32_c00306{left:128.790000px;}
.x6_c00306{left:130.410000px;}
.x2e_c00306{left:136.620000px;}
.x14_c00306{left:140.326500px;}
.xe_c00306{left:141.351000px;}
.x4a_c00306{left:144.373500px;}
.x1b_c00306{left:150.398787px;}
.x51_c00306{left:151.740000px;}
.x15_c00306{left:155.403000px;}
.x27_c00306{left:156.609129px;}
.x44_c00306{left:159.570000px;}
.x22_c00306{left:162.008253px;}
.x4f_c00306{left:163.080000px;}
.xf_c00306{left:167.823000px;}
.x52_c00306{left:177.660000px;}
.x7_c00306{left:184.140000px;}
.x39_c00306{left:193.869000px;}
.x33_c00306{left:201.960000px;}
.x16_c00306{left:205.111500px;}
.x8_c00306{left:206.280000px;}
.x1c_c00306{left:209.804421px;}
.x23_c00306{left:212.503644px;}
.x28_c00306{left:219.525456px;}
.x3f_c00306{left:220.860000px;}
.x2f_c00306{left:223.560000px;}
.x10_c00306{left:225.588000px;}
.x4b_c00306{left:228.619500px;}
.x17_c00306{left:230.515500px;}
.x1d_c00306{left:234.916335px;}
.x40_c00306{left:244.080000px;}
.x9_c00306{left:248.670000px;}
.x4c_c00306{left:249.675000px;}
.x11_c00306{left:251.247000px;}
.x34_c00306{left:252.450000px;}
.x45_c00306{left:254.880000px;}
.x53_c00306{left:261.900000px;}
.x35_c00306{left:268.110000px;}
.x41_c00306{left:272.970000px;}
.xa_c00306{left:274.590000px;}
.x1e_c00306{left:276.770046px;}
.x24_c00306{left:277.850454px;}
.x29_c00306{left:280.281363px;}
.x3a_c00306{left:284.895000px;}
.x4d_c00306{left:288.498000px;}
.xb_c00306{left:294.570000px;}
.x30_c00306{left:296.730000px;}
.x2a_c00306{left:298.913517px;}
.x18_c00306{left:302.598000px;}
.x46_c00306{left:313.470000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
._0_c00306{width:11.926325pt;}
.fs7_c00306{font-size:19.600000pt;}
.fsb_c00306{font-size:23.333333pt;}
.fsa_c00306{font-size:34.533333pt;}
.fs5_c00306{font-size:39.200000pt;}
.fsd_c00306{font-size:56.000000pt;}
.fs1_c00306{font-size:56.933333pt;}
.fs0_c00306{font-size:57.866667pt;}
.fs4_c00306{font-size:57.872337pt;}
.fs8_c00306{font-size:57.879425pt;}
.fsc_c00306{font-size:58.800000pt;}
.fs6_c00306{font-size:59.733333pt;}
.fs3_c00306{font-size:60.672612pt;}
.fs9_c00306{font-size:62.533333pt;}
.fs2_c00306{font-size:64.406311pt;}
.y0_c00306{bottom:0.000000pt;}
.y3e_c00306{bottom:54.480000pt;}
.y3d_c00306{bottom:68.701333pt;}
.y33_c00306{bottom:81.362667pt;}
.y34_c00306{bottom:81.620000pt;}
.y35_c00306{bottom:81.682667pt;}
.y36_c00306{bottom:82.300000pt;}
.y37_c00306{bottom:82.474667pt;}
.y38_c00306{bottom:82.854667pt;}
.y39_c00306{bottom:83.036000pt;}
.y3a_c00306{bottom:83.902667pt;}
.y3b_c00306{bottom:84.165333pt;}
.y3c_c00306{bottom:84.648000pt;}
.y32_c00306{bottom:98.220000pt;}
.y31_c00306{bottom:150.240000pt;}
.y30_c00306{bottom:173.940000pt;}
.y29_c00306{bottom:185.766667pt;}
.y2a_c00306{bottom:186.195711pt;}
.y2b_c00306{bottom:186.769823pt;}
.y2c_c00306{bottom:187.580871pt;}
.y2d_c00306{bottom:188.885083pt;}
.y2e_c00306{bottom:189.570999pt;}
.y2f_c00306{bottom:190.584235pt;}
.y28_c00306{bottom:261.601333pt;}
.y27_c00306{bottom:311.276000pt;}
.y26_c00306{bottom:318.061333pt;}
.y25_c00306{bottom:415.274773pt;}
.y22_c00306{bottom:415.274885pt;}
.y21_c00306{bottom:415.274888pt;}
.y24_c00306{bottom:415.274952pt;}
.y23_c00306{bottom:415.275027pt;}
.y20_c00306{bottom:415.275176pt;}
.y1f_c00306{bottom:415.275784pt;}
.y18_c00306{bottom:431.018597pt;}
.y1a_c00306{bottom:431.018771pt;}
.y19_c00306{bottom:431.019165pt;}
.y1b_c00306{bottom:431.019392pt;}
.y1e_c00306{bottom:431.019792pt;}
.y1c_c00306{bottom:431.019816pt;}
.y1d_c00306{bottom:431.020080pt;}
.y14_c00306{bottom:446.939824pt;}
.y17_c00306{bottom:446.940136pt;}
.y13_c00306{bottom:446.940237pt;}
.y15_c00306{bottom:446.940283pt;}
.y16_c00306{bottom:446.940725pt;}
.y12_c00306{bottom:446.940896pt;}
.y11_c00306{bottom:446.941147pt;}
.y9_c00306{bottom:458.705333pt;}
.ya_c00306{bottom:459.707565pt;}
.yb_c00306{bottom:459.946387pt;}
.yc_c00306{bottom:460.134005pt;}
.yd_c00306{bottom:460.752600pt;}
.ye_c00306{bottom:461.068739pt;}
.yf_c00306{bottom:461.867541pt;}
.y10_c00306{bottom:461.965765pt;}
.y2_c00306{bottom:474.721333pt;}
.y3_c00306{bottom:474.984000pt;}
.y4_c00306{bottom:475.356000pt;}
.y5_c00306{bottom:475.940000pt;}
.y6_c00306{bottom:476.222667pt;}
.y7_c00306{bottom:476.838667pt;}
.y8_c00306{bottom:477.112000pt;}
.y1_c00306{bottom:492.265333pt;}
.h9_c00306{height:19.600000pt;}
.hd_c00306{height:23.333333pt;}
.hc_c00306{height:34.533333pt;}
.h7_c00306{height:39.200000pt;}
.hf_c00306{height:56.000000pt;}
.h3_c00306{height:56.933333pt;}
.h2_c00306{height:57.866667pt;}
.h6_c00306{height:57.872337pt;}
.ha_c00306{height:57.879425pt;}
.he_c00306{height:58.800000pt;}
.h8_c00306{height:59.733333pt;}
.h5_c00306{height:60.672612pt;}
.hb_c00306{height:62.533333pt;}
.h4_c00306{height:64.406311pt;}
.h1_c00306{height:550.000000pt;}
.h0_c00306{height:550.266667pt;}
.w0_c00306{width:319.200000pt;}
.w1_c00306{width:319.333333pt;}
.x0_c00306{left:0.000000pt;}
.x3b_c00306{left:22.320000pt;}
.x1_c00306{left:23.760000pt;}
.x25_c00306{left:25.916568pt;}
.x4e_c00306{left:26.880000pt;}
.x42_c00306{left:28.320000pt;}
.x2b_c00306{left:30.240000pt;}
.x1f_c00306{left:34.796611pt;}
.x12_c00306{left:36.088000pt;}
.x50_c00306{left:37.440000pt;}
.x47_c00306{left:40.188000pt;}
.x2_c00306{left:43.200000pt;}
.x36_c00306{left:44.262667pt;}
.xc_c00306{left:45.980000pt;}
.x43_c00306{left:50.880000pt;}
.x19_c00306{left:52.319851pt;}
.x3c_c00306{left:53.280000pt;}
.x2c_c00306{left:55.200000pt;}
.x31_c00306{left:61.680000pt;}
.x3_c00306{left:66.480000pt;}
.x1a_c00306{left:70.562101pt;}
.x37_c00306{left:71.601333pt;}
.xd_c00306{left:76.941333pt;}
.x4_c00306{left:84.960000pt;}
.x20_c00306{left:85.921301pt;}
.x26_c00306{left:87.123237pt;}
.x48_c00306{left:88.746667pt;}
.x3d_c00306{left:93.840000pt;}
.x5_c00306{left:98.400000pt;}
.x2d_c00306{left:99.600000pt;}
.x49_c00306{left:101.204000pt;}
.x21_c00306{left:103.683440pt;}
.x13_c00306{left:107.676000pt;}
.x38_c00306{left:110.222667pt;}
.x3e_c00306{left:111.600000pt;}
.x32_c00306{left:114.480000pt;}
.x6_c00306{left:115.920000pt;}
.x2e_c00306{left:121.440000pt;}
.x14_c00306{left:124.734667pt;}
.xe_c00306{left:125.645333pt;}
.x4a_c00306{left:128.332000pt;}
.x1b_c00306{left:133.687811pt;}
.x51_c00306{left:134.880000pt;}
.x15_c00306{left:138.136000pt;}
.x27_c00306{left:139.208115pt;}
.x44_c00306{left:141.840000pt;}
.x22_c00306{left:144.007336pt;}
.x4f_c00306{left:144.960000pt;}
.xf_c00306{left:149.176000pt;}
.x52_c00306{left:157.920000pt;}
.x7_c00306{left:163.680000pt;}
.x39_c00306{left:172.328000pt;}
.x33_c00306{left:179.520000pt;}
.x16_c00306{left:182.321333pt;}
.x8_c00306{left:183.360000pt;}
.x1c_c00306{left:186.492819pt;}
.x23_c00306{left:188.892128pt;}
.x28_c00306{left:195.133739pt;}
.x3f_c00306{left:196.320000pt;}
.x2f_c00306{left:198.720000pt;}
.x10_c00306{left:200.522667pt;}
.x4b_c00306{left:203.217333pt;}
.x17_c00306{left:204.902667pt;}
.x1d_c00306{left:208.814520pt;}
.x40_c00306{left:216.960000pt;}
.x9_c00306{left:221.040000pt;}
.x4c_c00306{left:221.933333pt;}
.x11_c00306{left:223.330667pt;}
.x34_c00306{left:224.400000pt;}
.x45_c00306{left:226.560000pt;}
.x53_c00306{left:232.800000pt;}
.x35_c00306{left:238.320000pt;}
.x41_c00306{left:242.640000pt;}
.xa_c00306{left:244.080000pt;}
.x1e_c00306{left:246.017819pt;}
.x24_c00306{left:246.978181pt;}
.x29_c00306{left:249.138989pt;}
.x3a_c00306{left:253.240000pt;}
.x4d_c00306{left:256.442667pt;}
.xb_c00306{left:261.840000pt;}
.x30_c00306{left:263.760000pt;}
.x2a_c00306{left:265.700904pt;}
.x18_c00306{left:268.976000pt;}
.x46_c00306{left:278.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00307 {
    display:none;
  }
  .loading-indicator_c00307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00307 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00307 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00307" -> "#page-container .classname_c00307")
 */
.pf_c00307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00307 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00307 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00307 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00307 {overflow:visible;}
  }
}
.c_c00307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00307 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00307:after { /* webkit #35443 */
  content: '';
}
.t_c00307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00307 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00307 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00307 { /* info for Javascript */
  display:none;
}
.l_c00307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00307:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00307 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00307.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m68_c00307{transform:matrix(0.012320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012320,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);}
.mc6_c00307{transform:matrix(0.023190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023190,0.000000,0.000000,0.250000,0,0);}
.mb9_c00307{transform:matrix(0.114555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114555,0.000000,0.000000,0.250000,0,0);}
.mc4_c00307{transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);}
.mc8_c00307{transform:matrix(0.129965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129965,0.000000,0.000000,0.250000,0,0);}
.mba_c00307{transform:matrix(0.130630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130630,0.000000,0.000000,0.250000,0,0);}
.mca_c00307{transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139070,0.000000,0.000000,0.250000,0,0);}
.mbe_c00307{transform:matrix(0.140060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140060,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.md4_c00307{transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);}
.mcc_c00307{transform:matrix(0.143295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143295,0.000000,0.000000,0.250000,0,0);}
.md3_c00307{transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);}
.m80_c00307{transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);}
.mc0_c00307{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00307{transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147815,0.000000,0.000000,0.250000,0,0);}
.m53_c00307{transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.mce_c00307{transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);}
.mb8_c00307{transform:matrix(0.152090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152090,0.000000,0.000000,0.250000,0,0);}
.ma5_c00307{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00307{transform:matrix(0.152945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152945,0.000000,0.000000,0.250000,0,0);}
.m62_c00307{transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);}
.m82_c00307{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);}
.mbb_c00307{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m3e_c00307{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160310,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.md9_c00307{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00307{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);}
.ma4_c00307{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.m83_c00307{transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163515,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164070,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.164220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00307{transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165060,0.000000,0.000000,0.250000,0,0);}
.m93_c00307{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.mcd_c00307{transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166440,0.000000,0.000000,0.250000,0,0);}
.m7a_c00307{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m81_c00307{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m86_c00307{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m9b_c00307{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m56_c00307{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.mb1_c00307{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);}
.mda_c00307{transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170960,0.000000,0.000000,0.250000,0,0);}
.m9a_c00307{transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171335,0.000000,0.000000,0.250000,0,0);}
.mc7_c00307{transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);}
.m9c_c00307{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.mc5_c00307{transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);}
.md6_c00307{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m77_c00307{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.m84_c00307{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.ma1_c00307{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176640,0.000000,0.000000,0.250000,0,0);}
.m9e_c00307{transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);}
.m74_c00307{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.mc2_c00307{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.mde_c00307{transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);}
.mcf_c00307{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.md2_c00307{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);}
.md7_c00307{transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);}
.me3_c00307{transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);}
.m9f_c00307{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);}
.m9d_c00307{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00307{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);}
.m6e_c00307{transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);}
.maa_c00307{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.mbc_c00307{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.md5_c00307{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187460,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);}
.maf_c00307{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m6f_c00307{transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);}
.m70_c00307{transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.me0_c00307{transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m79_c00307{transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190280,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m88_c00307{transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190765,0.000000,0.000000,0.250000,0,0);}
.m5a_c00307{transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);}
.ma3_c00307{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.m41_c00307{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00307{transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);}
.m90_c00307{transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.mb3_c00307{transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193430,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m4f_c00307{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.ma8_c00307{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00307{transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);}
.m94_c00307{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.m60_c00307{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m75_c00307{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.mad_c00307{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m89_c00307{transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);}
.md8_c00307{transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);}
.ma7_c00307{transform:matrix(0.201215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201215,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00307{transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);}
.m8a_c00307{transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m3f_c00307{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.mdb_c00307{transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);}
.mac_c00307{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mdf_c00307{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205120,0.000000,0.000000,0.250000,0,0);}
.m78_c00307{transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);}
.m8e_c00307{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.mcb_c00307{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);}
.me2_c00307{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m96_c00307{transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);}
.m59_c00307{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209830,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);}
.m95_c00307{transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.m99_c00307{transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);}
.m57_c00307{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00307{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m5c_c00307{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);}
.mb2_c00307{transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);}
.m44_c00307{transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);}
.m6c_c00307{transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);}
.m97_c00307{transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.m61_c00307{transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);}
.me1_c00307{transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218370,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{transform:matrix(0.219010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219010,0.000000,0.000000,0.250000,0,0);}
.m4a_c00307{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m4d_c00307{transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);}
.m33_c00307{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.mb0_c00307{transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225635,0.000000,0.000000,0.250000,0,0);}
.m76_c00307{transform:matrix(0.229780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229780,0.000000,0.000000,0.250000,0,0);}
.m92_c00307{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.md1_c00307{transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00307{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.mb4_c00307{transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);}
.m7c_c00307{transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00307{transform:matrix(0.244790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244790,0.000000,0.000000,0.250000,0,0);}
.m8b_c00307{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m8c_c00307{transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);}
.me4_c00307{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m5e_c00307{transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00307{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m47_c00307{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m55_c00307{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252015,0.000000,0.000000,0.250000,0,0);}
.m3d_c00307{transform:matrix(0.258220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258220,0.000000,0.000000,0.250000,0,0);}
.mdd_c00307{transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);}
.mb6_c00307{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);}
.m91_c00307{transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);}
.m64_c00307{transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);}
.mc9_c00307{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);}
.md0_c00307{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m7b_c00307{transform:matrix(0.312725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312725,0.000000,0.000000,0.250000,0,0);}
.m71_c00307{transform:matrix(0.324600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);}
.m69_c00307{transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);}
.mdc_c00307{transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);}
.m58_c00307{transform:matrix(0.352115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352115,0.000000,0.000000,0.250000,0,0);}
.m54_c00307{transform:matrix(0.402765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00307{transform:matrix(0.405450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405450,0.000000,0.000000,0.250000,0,0);}
.m67_c00307{transform:matrix(0.457040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457040,0.000000,0.000000,0.250000,0,0);}
.mb7_c00307{transform:matrix(0.468315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468315,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(0.491830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00307{transform:matrix(0.503210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503210,0.000000,0.000000,0.250000,0,0);}
.m87_c00307{transform:matrix(0.683070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683070,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:0.000000px;}
.fc0_c00307{color:transparent;}
.fs9_c00307{font-size:61.950000px;}
.fsc_c00307{font-size:63.000000px;}
.fs7_c00307{font-size:64.050000px;}
.fsa_c00307{font-size:65.100000px;}
.fsd_c00307{font-size:66.150000px;}
.fs2_c00307{font-size:67.200000px;}
.fs3_c00307{font-size:68.250000px;}
.fs4_c00307{font-size:69.300000px;}
.fs5_c00307{font-size:70.350000px;}
.fse_c00307{font-size:71.400000px;}
.fs6_c00307{font-size:72.450000px;}
.fs8_c00307{font-size:73.500000px;}
.fs1_c00307{font-size:74.550000px;}
.fs0_c00307{font-size:81.900000px;}
.fs11_c00307{font-size:82.950000px;}
.fsb_c00307{font-size:84.000000px;}
.fs12_c00307{font-size:85.050000px;}
.fsf_c00307{font-size:86.100000px;}
.fs10_c00307{font-size:95.550000px;}
.y0_c00307{bottom:0.000000px;}
.yc9_c00307{bottom:27.273000px;}
.yca_c00307{bottom:28.075500px;}
.ycb_c00307{bottom:28.362000px;}
.ycc_c00307{bottom:29.292000px;}
.ycd_c00307{bottom:29.479500px;}
.yce_c00307{bottom:29.767500px;}
.ycf_c00307{bottom:30.382500px;}
.yd0_c00307{bottom:31.075500px;}
.yd1_c00307{bottom:31.500000px;}
.ybf_c00307{bottom:42.123000px;}
.yc0_c00307{bottom:42.844500px;}
.yc1_c00307{bottom:43.063500px;}
.yc2_c00307{bottom:43.723500px;}
.yc3_c00307{bottom:44.028000px;}
.yc4_c00307{bottom:44.481000px;}
.yc5_c00307{bottom:44.683500px;}
.yc6_c00307{bottom:45.586500px;}
.yc7_c00307{bottom:45.684000px;}
.yc8_c00307{bottom:46.189500px;}
.yb7_c00307{bottom:58.864500px;}
.yb8_c00307{bottom:59.986500px;}
.yb9_c00307{bottom:60.345000px;}
.yba_c00307{bottom:60.765000px;}
.ybb_c00307{bottom:61.566000px;}
.ybc_c00307{bottom:62.277000px;}
.ybd_c00307{bottom:62.401500px;}
.ybe_c00307{bottom:62.844000px;}
.yb0_c00307{bottom:75.876000px;}
.yb1_c00307{bottom:77.503500px;}
.yb2_c00307{bottom:77.751000px;}
.yb3_c00307{bottom:78.856500px;}
.yb4_c00307{bottom:78.933000px;}
.yb5_c00307{bottom:79.285500px;}
.yb6_c00307{bottom:80.160000px;}
.yad_c00307{bottom:93.424500px;}
.yae_c00307{bottom:94.809000px;}
.yaf_c00307{bottom:96.814500px;}
.yac_c00307{bottom:110.928000px;}
.ya5_c00307{bottom:129.874500px;}
.ya6_c00307{bottom:130.275000px;}
.ya7_c00307{bottom:130.414500px;}
.ya8_c00307{bottom:131.065500px;}
.ya9_c00307{bottom:131.202000px;}
.yaa_c00307{bottom:131.847000px;}
.yab_c00307{bottom:132.208500px;}
.y9d_c00307{bottom:146.883000px;}
.y9e_c00307{bottom:147.498000px;}
.y9f_c00307{bottom:147.726000px;}
.ya0_c00307{bottom:147.930000px;}
.ya1_c00307{bottom:148.591500px;}
.ya2_c00307{bottom:148.834500px;}
.ya3_c00307{bottom:149.725500px;}
.ya4_c00307{bottom:149.959500px;}
.y94_c00307{bottom:164.706000px;}
.y95_c00307{bottom:165.190500px;}
.y96_c00307{bottom:165.630000px;}
.y97_c00307{bottom:166.939500px;}
.y98_c00307{bottom:167.436000px;}
.y99_c00307{bottom:167.701500px;}
.y9a_c00307{bottom:168.015000px;}
.y9b_c00307{bottom:168.982500px;}
.y9c_c00307{bottom:169.438500px;}
.y8e_c00307{bottom:181.716000px;}
.y8f_c00307{bottom:182.616000px;}
.y90_c00307{bottom:183.226500px;}
.y91_c00307{bottom:184.465500px;}
.y92_c00307{bottom:185.034000px;}
.y93_c00307{bottom:185.475000px;}
.y87_c00307{bottom:199.804500px;}
.y88_c00307{bottom:200.188500px;}
.y89_c00307{bottom:200.919000px;}
.y8a_c00307{bottom:201.718500px;}
.y8b_c00307{bottom:203.074500px;}
.y8c_c00307{bottom:203.476500px;}
.y8d_c00307{bottom:204.297000px;}
.y86_c00307{bottom:218.391000px;}
.y85_c00307{bottom:235.684500px;}
.y84_c00307{bottom:247.692000px;}
.y7c_c00307{bottom:267.033000px;}
.y7d_c00307{bottom:268.048500px;}
.y7e_c00307{bottom:268.560000px;}
.y7f_c00307{bottom:268.929000px;}
.y80_c00307{bottom:270.076500px;}
.y81_c00307{bottom:270.319500px;}
.y82_c00307{bottom:270.880500px;}
.y83_c00307{bottom:271.411500px;}
.y73_c00307{bottom:284.052000px;}
.y74_c00307{bottom:285.612000px;}
.y75_c00307{bottom:286.378500px;}
.y76_c00307{bottom:286.806000px;}
.y77_c00307{bottom:287.862000px;}
.y78_c00307{bottom:288.903000px;}
.y79_c00307{bottom:289.474500px;}
.y7a_c00307{bottom:291.328500px;}
.y7b_c00307{bottom:292.087500px;}
.y6d_c00307{bottom:300.781500px;}
.y6e_c00307{bottom:301.572000px;}
.y6f_c00307{bottom:301.938000px;}
.y70_c00307{bottom:302.754000px;}
.y71_c00307{bottom:303.072000px;}
.y72_c00307{bottom:303.502500px;}
.y67_c00307{bottom:317.794500px;}
.y68_c00307{bottom:319.176000px;}
.y69_c00307{bottom:319.528500px;}
.y6a_c00307{bottom:320.317500px;}
.y6b_c00307{bottom:320.532000px;}
.y6c_c00307{bottom:321.601500px;}
.y60_c00307{bottom:334.263000px;}
.y61_c00307{bottom:334.927500px;}
.y62_c00307{bottom:335.158500px;}
.y63_c00307{bottom:335.416500px;}
.y64_c00307{bottom:336.649500px;}
.y65_c00307{bottom:336.982500px;}
.y66_c00307{bottom:338.983500px;}
.y5a_c00307{bottom:351.814500px;}
.y5b_c00307{bottom:353.329500px;}
.y5c_c00307{bottom:353.967000px;}
.y5d_c00307{bottom:354.747000px;}
.y5e_c00307{bottom:355.150500px;}
.y5f_c00307{bottom:355.930500px;}
.y51_c00307{bottom:369.361500px;}
.y52_c00307{bottom:369.583500px;}
.y53_c00307{bottom:370.524000px;}
.y54_c00307{bottom:370.795500px;}
.y55_c00307{bottom:371.020500px;}
.y56_c00307{bottom:371.460000px;}
.y57_c00307{bottom:371.715000px;}
.y58_c00307{bottom:372.028500px;}
.y59_c00307{bottom:373.105500px;}
.y4a_c00307{bottom:386.370000px;}
.y4b_c00307{bottom:387.036000px;}
.y4c_c00307{bottom:387.198000px;}
.y4d_c00307{bottom:387.606000px;}
.y4e_c00307{bottom:388.297500px;}
.y4f_c00307{bottom:389.214000px;}
.y50_c00307{bottom:389.467500px;}
.y41_c00307{bottom:402.571500px;}
.y42_c00307{bottom:403.162500px;}
.y43_c00307{bottom:403.563000px;}
.y44_c00307{bottom:404.179500px;}
.y45_c00307{bottom:404.463000px;}
.y46_c00307{bottom:405.403500px;}
.y47_c00307{bottom:405.660000px;}
.y48_c00307{bottom:406.242000px;}
.y49_c00307{bottom:406.563000px;}
.y3a_c00307{bottom:420.118500px;}
.y3b_c00307{bottom:420.490500px;}
.y3c_c00307{bottom:420.711000px;}
.y3d_c00307{bottom:421.575000px;}
.y3e_c00307{bottom:421.932000px;}
.y3f_c00307{bottom:422.235000px;}
.y40_c00307{bottom:422.662500px;}
.y33_c00307{bottom:436.051500px;}
.y34_c00307{bottom:436.959000px;}
.y35_c00307{bottom:437.554500px;}
.y36_c00307{bottom:438.555000px;}
.y37_c00307{bottom:438.970500px;}
.y38_c00307{bottom:439.885500px;}
.y39_c00307{bottom:440.038500px;}
.y2d_c00307{bottom:454.678500px;}
.y2e_c00307{bottom:455.260500px;}
.y2f_c00307{bottom:456.375000px;}
.y30_c00307{bottom:457.017000px;}
.y31_c00307{bottom:457.693500px;}
.y32_c00307{bottom:457.821000px;}
.y25_c00307{bottom:471.150000px;}
.y26_c00307{bottom:471.600000px;}
.y27_c00307{bottom:472.462500px;}
.y28_c00307{bottom:472.828500px;}
.y29_c00307{bottom:473.154000px;}
.y2a_c00307{bottom:473.766000px;}
.y2b_c00307{bottom:474.309000px;}
.y2c_c00307{bottom:474.688500px;}
.y1f_c00307{bottom:488.160000px;}
.y20_c00307{bottom:488.767500px;}
.y21_c00307{bottom:489.207000px;}
.y22_c00307{bottom:490.344000px;}
.y23_c00307{bottom:490.696500px;}
.y24_c00307{bottom:491.716500px;}
.y17_c00307{bottom:504.900000px;}
.y18_c00307{bottom:505.075500px;}
.y19_c00307{bottom:505.324500px;}
.y1a_c00307{bottom:505.834500px;}
.y1b_c00307{bottom:506.374500px;}
.y1c_c00307{bottom:507.006000px;}
.y1d_c00307{bottom:508.059000px;}
.y1e_c00307{bottom:508.392000px;}
.yf_c00307{bottom:521.373000px;}
.y10_c00307{bottom:521.703000px;}
.y11_c00307{bottom:522.042000px;}
.y12_c00307{bottom:523.078500px;}
.y13_c00307{bottom:523.291500px;}
.y14_c00307{bottom:523.692000px;}
.y15_c00307{bottom:525.046500px;}
.y16_c00307{bottom:526.174500px;}
.y9_c00307{bottom:538.114500px;}
.ya_c00307{bottom:538.717500px;}
.yb_c00307{bottom:539.140500px;}
.yc_c00307{bottom:540.559500px;}
.yd_c00307{bottom:541.944000px;}
.ye_c00307{bottom:542.620500px;}
.y2_c00307{bottom:555.663000px;}
.y3_c00307{bottom:555.888000px;}
.y4_c00307{bottom:556.446000px;}
.y5_c00307{bottom:557.979000px;}
.y6_c00307{bottom:558.964500px;}
.y7_c00307{bottom:559.716000px;}
.y8_c00307{bottom:560.061000px;}
.y1_c00307{bottom:570.622500px;}
.hb_c00307{height:61.950000px;}
.he_c00307{height:63.000000px;}
.h9_c00307{height:64.050000px;}
.hc_c00307{height:65.100000px;}
.hf_c00307{height:66.150000px;}
.h4_c00307{height:67.200000px;}
.h5_c00307{height:68.250000px;}
.h6_c00307{height:69.300000px;}
.h7_c00307{height:70.350000px;}
.h10_c00307{height:71.400000px;}
.h8_c00307{height:72.450000px;}
.ha_c00307{height:73.500000px;}
.h3_c00307{height:74.550000px;}
.h2_c00307{height:81.900000px;}
.h13_c00307{height:82.950000px;}
.hd_c00307{height:84.000000px;}
.h14_c00307{height:85.050000px;}
.h11_c00307{height:86.100000px;}
.h12_c00307{height:95.550000px;}
.h1_c00307{height:618.750000px;}
.h0_c00307{height:619.050000px;}
.w0_c00307{width:359.100000px;}
.w1_c00307{width:359.250000px;}
.x0_c00307{left:0.000000px;}
.x1c_c00307{left:39.054000px;}
.x6f_c00307{left:46.395000px;}
.x42_c00307{left:47.761500px;}
.x3_c00307{left:49.875000px;}
.x15_c00307{left:62.532000px;}
.x4_c00307{left:63.919500px;}
.x1_c00307{left:65.340000px;}
.xf_c00307{left:66.921000px;}
.x58_c00307{left:73.656000px;}
.x5d_c00307{left:76.047000px;}
.x55_c00307{left:79.386000px;}
.x16_c00307{left:81.684000px;}
.xa_c00307{left:83.401500px;}
.x10_c00307{left:84.796500px;}
.x63_c00307{left:86.824500px;}
.x46_c00307{left:88.974000px;}
.x33_c00307{left:92.043000px;}
.x70_c00307{left:94.464000px;}
.x5_c00307{left:98.770500px;}
.x38_c00307{left:100.822500px;}
.x25_c00307{left:101.935500px;}
.x2e_c00307{left:103.023000px;}
.x50_c00307{left:104.146500px;}
.xb_c00307{left:106.912500px;}
.x71_c00307{left:109.077000px;}
.x1d_c00307{left:113.848500px;}
.x4d_c00307{left:116.266500px;}
.x47_c00307{left:117.700500px;}
.x59_c00307{left:119.292000px;}
.x17_c00307{left:120.859500px;}
.x6a_c00307{left:127.141500px;}
.x51_c00307{left:130.584000px;}
.x53_c00307{left:134.733000px;}
.x43_c00307{left:136.867500px;}
.x5c_c00307{left:137.952000px;}
.x11_c00307{left:139.383000px;}
.x4b_c00307{left:141.952500px;}
.x20_c00307{left:143.343000px;}
.x39_c00307{left:144.625500px;}
.x4e_c00307{left:146.788500px;}
.x12_c00307{left:150.627000px;}
.x6b_c00307{left:152.760000px;}
.x54_c00307{left:155.227500px;}
.x67_c00307{left:156.249000px;}
.x64_c00307{left:158.644500px;}
.x3d_c00307{left:159.765000px;}
.x18_c00307{left:162.442500px;}
.x34_c00307{left:164.614500px;}
.x21_c00307{left:169.464000px;}
.x13_c00307{left:171.715500px;}
.x5e_c00307{left:173.220000px;}
.x44_c00307{left:174.400500px;}
.x3e_c00307{left:177.028500px;}
.x2_c00307{left:180.360000px;}
.x2f_c00307{left:181.590000px;}
.x6c_c00307{left:182.754000px;}
.xc_c00307{left:185.742000px;}
.x48_c00307{left:190.236000px;}
.x56_c00307{left:191.436000px;}
.x22_c00307{left:192.694500px;}
.x6_c00307{left:194.617500px;}
.x3a_c00307{left:197.806500px;}
.x5f_c00307{left:200.838000px;}
.x26_c00307{left:203.191500px;}
.x2a_c00307{left:206.142000px;}
.x49_c00307{left:209.781000px;}
.x19_c00307{left:211.035000px;}
.x74_c00307{left:212.997000px;}
.x30_c00307{left:214.024500px;}
.x60_c00307{left:215.595000px;}
.x72_c00307{left:217.060500px;}
.x4c_c00307{left:218.086500px;}
.x1e_c00307{left:220.261500px;}
.x65_c00307{left:222.487500px;}
.x57_c00307{left:225.996000px;}
.x3f_c00307{left:230.479500px;}
.x2b_c00307{left:232.146000px;}
.x23_c00307{left:236.433000px;}
.x6d_c00307{left:240.001500px;}
.x31_c00307{left:241.519500px;}
.x14_c00307{left:242.991000px;}
.x45_c00307{left:244.041000px;}
.x68_c00307{left:246.483000px;}
.x35_c00307{left:252.088500px;}
.x40_c00307{left:254.547000px;}
.x7_c00307{left:256.170000px;}
.x27_c00307{left:261.510000px;}
.xd_c00307{left:262.638000px;}
.x3b_c00307{left:268.261500px;}
.x36_c00307{left:270.453000px;}
.x24_c00307{left:275.233500px;}
.x4f_c00307{left:277.198500px;}
.x5a_c00307{left:279.135000px;}
.x32_c00307{left:280.425000px;}
.x73_c00307{left:283.747500px;}
.x61_c00307{left:286.704000px;}
.x3c_c00307{left:287.740500px;}
.x2c_c00307{left:289.290000px;}
.x6e_c00307{left:290.736000px;}
.x1a_c00307{left:292.039500px;}
.x1f_c00307{left:293.131500px;}
.x2d_c00307{left:298.840500px;}
.xe_c00307{left:300.210000px;}
.x52_c00307{left:301.296000px;}
.x8_c00307{left:303.163500px;}
.x62_c00307{left:306.910500px;}
.x37_c00307{left:312.058500px;}
.x1b_c00307{left:317.692500px;}
.x28_c00307{left:323.056500px;}
.x9_c00307{left:324.715500px;}
.x4a_c00307{left:327.495000px;}
.x66_c00307{left:329.374500px;}
.x5b_c00307{left:330.391500px;}
.x69_c00307{left:333.406500px;}
.x29_c00307{left:334.674000px;}
.x41_c00307{left:337.437000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
.fs9_c00307{font-size:55.066667pt;}
.fsc_c00307{font-size:56.000000pt;}
.fs7_c00307{font-size:56.933333pt;}
.fsa_c00307{font-size:57.866667pt;}
.fsd_c00307{font-size:58.800000pt;}
.fs2_c00307{font-size:59.733333pt;}
.fs3_c00307{font-size:60.666667pt;}
.fs4_c00307{font-size:61.600000pt;}
.fs5_c00307{font-size:62.533333pt;}
.fse_c00307{font-size:63.466667pt;}
.fs6_c00307{font-size:64.400000pt;}
.fs8_c00307{font-size:65.333333pt;}
.fs1_c00307{font-size:66.266667pt;}
.fs0_c00307{font-size:72.800000pt;}
.fs11_c00307{font-size:73.733333pt;}
.fsb_c00307{font-size:74.666667pt;}
.fs12_c00307{font-size:75.600000pt;}
.fsf_c00307{font-size:76.533333pt;}
.fs10_c00307{font-size:84.933333pt;}
.y0_c00307{bottom:0.000000pt;}
.yc9_c00307{bottom:24.242667pt;}
.yca_c00307{bottom:24.956000pt;}
.ycb_c00307{bottom:25.210667pt;}
.ycc_c00307{bottom:26.037333pt;}
.ycd_c00307{bottom:26.204000pt;}
.yce_c00307{bottom:26.460000pt;}
.ycf_c00307{bottom:27.006667pt;}
.yd0_c00307{bottom:27.622667pt;}
.yd1_c00307{bottom:28.000000pt;}
.ybf_c00307{bottom:37.442667pt;}
.yc0_c00307{bottom:38.084000pt;}
.yc1_c00307{bottom:38.278667pt;}
.yc2_c00307{bottom:38.865333pt;}
.yc3_c00307{bottom:39.136000pt;}
.yc4_c00307{bottom:39.538667pt;}
.yc5_c00307{bottom:39.718667pt;}
.yc6_c00307{bottom:40.521333pt;}
.yc7_c00307{bottom:40.608000pt;}
.yc8_c00307{bottom:41.057333pt;}
.yb7_c00307{bottom:52.324000pt;}
.yb8_c00307{bottom:53.321333pt;}
.yb9_c00307{bottom:53.640000pt;}
.yba_c00307{bottom:54.013333pt;}
.ybb_c00307{bottom:54.725333pt;}
.ybc_c00307{bottom:55.357333pt;}
.ybd_c00307{bottom:55.468000pt;}
.ybe_c00307{bottom:55.861333pt;}
.yb0_c00307{bottom:67.445333pt;}
.yb1_c00307{bottom:68.892000pt;}
.yb2_c00307{bottom:69.112000pt;}
.yb3_c00307{bottom:70.094667pt;}
.yb4_c00307{bottom:70.162667pt;}
.yb5_c00307{bottom:70.476000pt;}
.yb6_c00307{bottom:71.253333pt;}
.yad_c00307{bottom:83.044000pt;}
.yae_c00307{bottom:84.274667pt;}
.yaf_c00307{bottom:86.057333pt;}
.yac_c00307{bottom:98.602667pt;}
.ya5_c00307{bottom:115.444000pt;}
.ya6_c00307{bottom:115.800000pt;}
.ya7_c00307{bottom:115.924000pt;}
.ya8_c00307{bottom:116.502667pt;}
.ya9_c00307{bottom:116.624000pt;}
.yaa_c00307{bottom:117.197333pt;}
.yab_c00307{bottom:117.518667pt;}
.y9d_c00307{bottom:130.562667pt;}
.y9e_c00307{bottom:131.109333pt;}
.y9f_c00307{bottom:131.312000pt;}
.ya0_c00307{bottom:131.493333pt;}
.ya1_c00307{bottom:132.081333pt;}
.ya2_c00307{bottom:132.297333pt;}
.ya3_c00307{bottom:133.089333pt;}
.ya4_c00307{bottom:133.297333pt;}
.y94_c00307{bottom:146.405333pt;}
.y95_c00307{bottom:146.836000pt;}
.y96_c00307{bottom:147.226667pt;}
.y97_c00307{bottom:148.390667pt;}
.y98_c00307{bottom:148.832000pt;}
.y99_c00307{bottom:149.068000pt;}
.y9a_c00307{bottom:149.346667pt;}
.y9b_c00307{bottom:150.206667pt;}
.y9c_c00307{bottom:150.612000pt;}
.y8e_c00307{bottom:161.525333pt;}
.y8f_c00307{bottom:162.325333pt;}
.y90_c00307{bottom:162.868000pt;}
.y91_c00307{bottom:163.969333pt;}
.y92_c00307{bottom:164.474667pt;}
.y93_c00307{bottom:164.866667pt;}
.y87_c00307{bottom:177.604000pt;}
.y88_c00307{bottom:177.945333pt;}
.y89_c00307{bottom:178.594667pt;}
.y8a_c00307{bottom:179.305333pt;}
.y8b_c00307{bottom:180.510667pt;}
.y8c_c00307{bottom:180.868000pt;}
.y8d_c00307{bottom:181.597333pt;}
.y86_c00307{bottom:194.125333pt;}
.y85_c00307{bottom:209.497333pt;}
.y84_c00307{bottom:220.170667pt;}
.y7c_c00307{bottom:237.362667pt;}
.y7d_c00307{bottom:238.265333pt;}
.y7e_c00307{bottom:238.720000pt;}
.y7f_c00307{bottom:239.048000pt;}
.y80_c00307{bottom:240.068000pt;}
.y81_c00307{bottom:240.284000pt;}
.y82_c00307{bottom:240.782667pt;}
.y83_c00307{bottom:241.254667pt;}
.y73_c00307{bottom:252.490667pt;}
.y74_c00307{bottom:253.877333pt;}
.y75_c00307{bottom:254.558667pt;}
.y76_c00307{bottom:254.938667pt;}
.y77_c00307{bottom:255.877333pt;}
.y78_c00307{bottom:256.802667pt;}
.y79_c00307{bottom:257.310667pt;}
.y7a_c00307{bottom:258.958667pt;}
.y7b_c00307{bottom:259.633333pt;}
.y6d_c00307{bottom:267.361333pt;}
.y6e_c00307{bottom:268.064000pt;}
.y6f_c00307{bottom:268.389333pt;}
.y70_c00307{bottom:269.114667pt;}
.y71_c00307{bottom:269.397333pt;}
.y72_c00307{bottom:269.780000pt;}
.y67_c00307{bottom:282.484000pt;}
.y68_c00307{bottom:283.712000pt;}
.y69_c00307{bottom:284.025333pt;}
.y6a_c00307{bottom:284.726667pt;}
.y6b_c00307{bottom:284.917333pt;}
.y6c_c00307{bottom:285.868000pt;}
.y60_c00307{bottom:297.122667pt;}
.y61_c00307{bottom:297.713333pt;}
.y62_c00307{bottom:297.918667pt;}
.y63_c00307{bottom:298.148000pt;}
.y64_c00307{bottom:299.244000pt;}
.y65_c00307{bottom:299.540000pt;}
.y66_c00307{bottom:301.318667pt;}
.y5a_c00307{bottom:312.724000pt;}
.y5b_c00307{bottom:314.070667pt;}
.y5c_c00307{bottom:314.637333pt;}
.y5d_c00307{bottom:315.330667pt;}
.y5e_c00307{bottom:315.689333pt;}
.y5f_c00307{bottom:316.382667pt;}
.y51_c00307{bottom:328.321333pt;}
.y52_c00307{bottom:328.518667pt;}
.y53_c00307{bottom:329.354667pt;}
.y54_c00307{bottom:329.596000pt;}
.y55_c00307{bottom:329.796000pt;}
.y56_c00307{bottom:330.186667pt;}
.y57_c00307{bottom:330.413333pt;}
.y58_c00307{bottom:330.692000pt;}
.y59_c00307{bottom:331.649333pt;}
.y4a_c00307{bottom:343.440000pt;}
.y4b_c00307{bottom:344.032000pt;}
.y4c_c00307{bottom:344.176000pt;}
.y4d_c00307{bottom:344.538667pt;}
.y4e_c00307{bottom:345.153333pt;}
.y4f_c00307{bottom:345.968000pt;}
.y50_c00307{bottom:346.193333pt;}
.y41_c00307{bottom:357.841333pt;}
.y42_c00307{bottom:358.366667pt;}
.y43_c00307{bottom:358.722667pt;}
.y44_c00307{bottom:359.270667pt;}
.y45_c00307{bottom:359.522667pt;}
.y46_c00307{bottom:360.358667pt;}
.y47_c00307{bottom:360.586667pt;}
.y48_c00307{bottom:361.104000pt;}
.y49_c00307{bottom:361.389333pt;}
.y3a_c00307{bottom:373.438667pt;}
.y3b_c00307{bottom:373.769333pt;}
.y3c_c00307{bottom:373.965333pt;}
.y3d_c00307{bottom:374.733333pt;}
.y3e_c00307{bottom:375.050667pt;}
.y3f_c00307{bottom:375.320000pt;}
.y40_c00307{bottom:375.700000pt;}
.y33_c00307{bottom:387.601333pt;}
.y34_c00307{bottom:388.408000pt;}
.y35_c00307{bottom:388.937333pt;}
.y36_c00307{bottom:389.826667pt;}
.y37_c00307{bottom:390.196000pt;}
.y38_c00307{bottom:391.009333pt;}
.y39_c00307{bottom:391.145333pt;}
.y2d_c00307{bottom:404.158667pt;}
.y2e_c00307{bottom:404.676000pt;}
.y2f_c00307{bottom:405.666667pt;}
.y30_c00307{bottom:406.237333pt;}
.y31_c00307{bottom:406.838667pt;}
.y32_c00307{bottom:406.952000pt;}
.y25_c00307{bottom:418.800000pt;}
.y26_c00307{bottom:419.200000pt;}
.y27_c00307{bottom:419.966667pt;}
.y28_c00307{bottom:420.292000pt;}
.y29_c00307{bottom:420.581333pt;}
.y2a_c00307{bottom:421.125333pt;}
.y2b_c00307{bottom:421.608000pt;}
.y2c_c00307{bottom:421.945333pt;}
.y1f_c00307{bottom:433.920000pt;}
.y20_c00307{bottom:434.460000pt;}
.y21_c00307{bottom:434.850667pt;}
.y22_c00307{bottom:435.861333pt;}
.y23_c00307{bottom:436.174667pt;}
.y24_c00307{bottom:437.081333pt;}
.y17_c00307{bottom:448.800000pt;}
.y18_c00307{bottom:448.956000pt;}
.y19_c00307{bottom:449.177333pt;}
.y1a_c00307{bottom:449.630667pt;}
.y1b_c00307{bottom:450.110667pt;}
.y1c_c00307{bottom:450.672000pt;}
.y1d_c00307{bottom:451.608000pt;}
.y1e_c00307{bottom:451.904000pt;}
.yf_c00307{bottom:463.442667pt;}
.y10_c00307{bottom:463.736000pt;}
.y11_c00307{bottom:464.037333pt;}
.y12_c00307{bottom:464.958667pt;}
.y13_c00307{bottom:465.148000pt;}
.y14_c00307{bottom:465.504000pt;}
.y15_c00307{bottom:466.708000pt;}
.y16_c00307{bottom:467.710667pt;}
.y9_c00307{bottom:478.324000pt;}
.ya_c00307{bottom:478.860000pt;}
.yb_c00307{bottom:479.236000pt;}
.yc_c00307{bottom:480.497333pt;}
.yd_c00307{bottom:481.728000pt;}
.ye_c00307{bottom:482.329333pt;}
.y2_c00307{bottom:493.922667pt;}
.y3_c00307{bottom:494.122667pt;}
.y4_c00307{bottom:494.618667pt;}
.y5_c00307{bottom:495.981333pt;}
.y6_c00307{bottom:496.857333pt;}
.y7_c00307{bottom:497.525333pt;}
.y8_c00307{bottom:497.832000pt;}
.y1_c00307{bottom:507.220000pt;}
.hb_c00307{height:55.066667pt;}
.he_c00307{height:56.000000pt;}
.h9_c00307{height:56.933333pt;}
.hc_c00307{height:57.866667pt;}
.hf_c00307{height:58.800000pt;}
.h4_c00307{height:59.733333pt;}
.h5_c00307{height:60.666667pt;}
.h6_c00307{height:61.600000pt;}
.h7_c00307{height:62.533333pt;}
.h10_c00307{height:63.466667pt;}
.h8_c00307{height:64.400000pt;}
.ha_c00307{height:65.333333pt;}
.h3_c00307{height:66.266667pt;}
.h2_c00307{height:72.800000pt;}
.h13_c00307{height:73.733333pt;}
.hd_c00307{height:74.666667pt;}
.h14_c00307{height:75.600000pt;}
.h11_c00307{height:76.533333pt;}
.h12_c00307{height:84.933333pt;}
.h1_c00307{height:550.000000pt;}
.h0_c00307{height:550.266667pt;}
.w0_c00307{width:319.200000pt;}
.w1_c00307{width:319.333333pt;}
.x0_c00307{left:0.000000pt;}
.x1c_c00307{left:34.714667pt;}
.x6f_c00307{left:41.240000pt;}
.x42_c00307{left:42.454667pt;}
.x3_c00307{left:44.333333pt;}
.x15_c00307{left:55.584000pt;}
.x4_c00307{left:56.817333pt;}
.x1_c00307{left:58.080000pt;}
.xf_c00307{left:59.485333pt;}
.x58_c00307{left:65.472000pt;}
.x5d_c00307{left:67.597333pt;}
.x55_c00307{left:70.565333pt;}
.x16_c00307{left:72.608000pt;}
.xa_c00307{left:74.134667pt;}
.x10_c00307{left:75.374667pt;}
.x63_c00307{left:77.177333pt;}
.x46_c00307{left:79.088000pt;}
.x33_c00307{left:81.816000pt;}
.x70_c00307{left:83.968000pt;}
.x5_c00307{left:87.796000pt;}
.x38_c00307{left:89.620000pt;}
.x25_c00307{left:90.609333pt;}
.x2e_c00307{left:91.576000pt;}
.x50_c00307{left:92.574667pt;}
.xb_c00307{left:95.033333pt;}
.x71_c00307{left:96.957333pt;}
.x1d_c00307{left:101.198667pt;}
.x4d_c00307{left:103.348000pt;}
.x47_c00307{left:104.622667pt;}
.x59_c00307{left:106.037333pt;}
.x17_c00307{left:107.430667pt;}
.x6a_c00307{left:113.014667pt;}
.x51_c00307{left:116.074667pt;}
.x53_c00307{left:119.762667pt;}
.x43_c00307{left:121.660000pt;}
.x5c_c00307{left:122.624000pt;}
.x11_c00307{left:123.896000pt;}
.x4b_c00307{left:126.180000pt;}
.x20_c00307{left:127.416000pt;}
.x39_c00307{left:128.556000pt;}
.x4e_c00307{left:130.478667pt;}
.x12_c00307{left:133.890667pt;}
.x6b_c00307{left:135.786667pt;}
.x54_c00307{left:137.980000pt;}
.x67_c00307{left:138.888000pt;}
.x64_c00307{left:141.017333pt;}
.x3d_c00307{left:142.013333pt;}
.x18_c00307{left:144.393333pt;}
.x34_c00307{left:146.324000pt;}
.x21_c00307{left:150.634667pt;}
.x13_c00307{left:152.636000pt;}
.x5e_c00307{left:153.973333pt;}
.x44_c00307{left:155.022667pt;}
.x3e_c00307{left:157.358667pt;}
.x2_c00307{left:160.320000pt;}
.x2f_c00307{left:161.413333pt;}
.x6c_c00307{left:162.448000pt;}
.xc_c00307{left:165.104000pt;}
.x48_c00307{left:169.098667pt;}
.x56_c00307{left:170.165333pt;}
.x22_c00307{left:171.284000pt;}
.x6_c00307{left:172.993333pt;}
.x3a_c00307{left:175.828000pt;}
.x5f_c00307{left:178.522667pt;}
.x26_c00307{left:180.614667pt;}
.x2a_c00307{left:183.237333pt;}
.x49_c00307{left:186.472000pt;}
.x19_c00307{left:187.586667pt;}
.x74_c00307{left:189.330667pt;}
.x30_c00307{left:190.244000pt;}
.x60_c00307{left:191.640000pt;}
.x72_c00307{left:192.942667pt;}
.x4c_c00307{left:193.854667pt;}
.x1e_c00307{left:195.788000pt;}
.x65_c00307{left:197.766667pt;}
.x57_c00307{left:200.885333pt;}
.x3f_c00307{left:204.870667pt;}
.x2b_c00307{left:206.352000pt;}
.x23_c00307{left:210.162667pt;}
.x6d_c00307{left:213.334667pt;}
.x31_c00307{left:214.684000pt;}
.x14_c00307{left:215.992000pt;}
.x45_c00307{left:216.925333pt;}
.x68_c00307{left:219.096000pt;}
.x35_c00307{left:224.078667pt;}
.x40_c00307{left:226.264000pt;}
.x7_c00307{left:227.706667pt;}
.x27_c00307{left:232.453333pt;}
.xd_c00307{left:233.456000pt;}
.x3b_c00307{left:238.454667pt;}
.x36_c00307{left:240.402667pt;}
.x24_c00307{left:244.652000pt;}
.x4f_c00307{left:246.398667pt;}
.x5a_c00307{left:248.120000pt;}
.x32_c00307{left:249.266667pt;}
.x73_c00307{left:252.220000pt;}
.x61_c00307{left:254.848000pt;}
.x3c_c00307{left:255.769333pt;}
.x2c_c00307{left:257.146667pt;}
.x6e_c00307{left:258.432000pt;}
.x1a_c00307{left:259.590667pt;}
.x1f_c00307{left:260.561333pt;}
.x2d_c00307{left:265.636000pt;}
.xe_c00307{left:266.853333pt;}
.x52_c00307{left:267.818667pt;}
.x8_c00307{left:269.478667pt;}
.x62_c00307{left:272.809333pt;}
.x37_c00307{left:277.385333pt;}
.x1b_c00307{left:282.393333pt;}
.x28_c00307{left:287.161333pt;}
.x9_c00307{left:288.636000pt;}
.x4a_c00307{left:291.106667pt;}
.x66_c00307{left:292.777333pt;}
.x5b_c00307{left:293.681333pt;}
.x69_c00307{left:296.361333pt;}
.x29_c00307{left:297.488000pt;}
.x41_c00307{left:299.944000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00308 {
    display:none;
  }
  .loading-indicator_c00308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00308 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00308 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00308" -> "#page-container .classname_c00308")
 */
.pf_c00308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00308 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00308 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00308 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00308 {overflow:visible;}
  }
}
.c_c00308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00308 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00308:after { /* webkit #35443 */
  content: '';
}
.t_c00308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00308 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00308 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00308 { /* info for Javascript */
  display:none;
}
.l_c00308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00308:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00308 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00308.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.008060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008060,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.129330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129330,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);}
.m20_c00308{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.167785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167785,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188205,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m4a_c00308{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200920,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202770,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209435,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230580,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.260770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260770,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371810,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.374870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374870,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.389730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389730,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.781085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781085,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:0.000000px;}
.fc0_c00308{color:transparent;}
.fsb_c00308{font-size:22.050000px;}
.fsc_c00308{font-size:46.200000px;}
.fs1_c00308{font-size:60.900000px;}
.fsa_c00308{font-size:63.000000px;}
.fs9_c00308{font-size:64.050000px;}
.fs7_c00308{font-size:66.150000px;}
.fs8_c00308{font-size:67.200000px;}
.fs5_c00308{font-size:68.250000px;}
.fs2_c00308{font-size:69.300000px;}
.fs4_c00308{font-size:71.400000px;}
.fs6_c00308{font-size:73.500000px;}
.fs3_c00308{font-size:76.650000px;}
.fs0_c00308{font-size:120.750000px;}
.y0_c00308{bottom:0.000000px;}
.yf_c00308{bottom:10.261500px;}
.ye_c00308{bottom:331.560000px;}
.yd_c00308{bottom:379.888500px;}
.yc_c00308{bottom:382.320000px;}
.yb_c00308{bottom:399.292500px;}
.ya_c00308{bottom:416.017500px;}
.y9_c00308{bottom:433.416000px;}
.y8_c00308{bottom:450.306000px;}
.y7_c00308{bottom:467.034000px;}
.y6_c00308{bottom:484.084500px;}
.y5_c00308{bottom:499.176000px;}
.y4_c00308{bottom:517.567500px;}
.y3_c00308{bottom:535.500000px;}
.y2_c00308{bottom:552.487500px;}
.y1_c00308{bottom:565.843500px;}
.hd_c00308{height:22.050000px;}
.he_c00308{height:46.200000px;}
.h3_c00308{height:60.900000px;}
.hc_c00308{height:63.000000px;}
.hb_c00308{height:64.050000px;}
.h9_c00308{height:66.150000px;}
.ha_c00308{height:67.200000px;}
.h7_c00308{height:68.250000px;}
.h4_c00308{height:69.300000px;}
.h6_c00308{height:71.400000px;}
.h8_c00308{height:73.500000px;}
.h5_c00308{height:76.650000px;}
.h2_c00308{height:120.750000px;}
.h1_c00308{height:618.750000px;}
.h0_c00308{height:619.050000px;}
.w0_c00308{width:359.100000px;}
.w1_c00308{width:359.250000px;}
.x0_c00308{left:0.000000px;}
.x2c_c00308{left:14.040000px;}
.x27_c00308{left:16.200000px;}
.x3_c00308{left:24.030000px;}
.x36_c00308{left:27.270000px;}
.x1_c00308{left:28.890000px;}
.x16_c00308{left:35.910000px;}
.x1c_c00308{left:39.690000px;}
.x32_c00308{left:48.330000px;}
.x21_c00308{left:49.680000px;}
.x22_c00308{left:63.450000px;}
.x17_c00308{left:70.200000px;}
.x2d_c00308{left:79.110000px;}
.x3b_c00308{left:85.050000px;}
.x4_c00308{left:86.670000px;}
.xa_c00308{left:87.750000px;}
.x33_c00308{left:93.420000px;}
.x37_c00308{left:95.310000px;}
.x28_c00308{left:96.390000px;}
.x23_c00308{left:99.630000px;}
.x1d_c00308{left:100.980000px;}
.x5_c00308{left:102.870000px;}
.xf_c00308{left:113.130000px;}
.xb_c00308{left:117.450000px;}
.x18_c00308{left:118.800000px;}
.x3c_c00308{left:125.550000px;}
.x10_c00308{left:130.680000px;}
.x34_c00308{left:134.730000px;}
.x6_c00308{left:137.160000px;}
.x38_c00308{left:142.290000px;}
.x19_c00308{left:150.930000px;}
.x2_c00308{left:152.280000px;}
.x11_c00308{left:158.220000px;}
.x1a_c00308{left:166.050000px;}
.x1e_c00308{left:168.480000px;}
.x12_c00308{left:176.580000px;}
.x3d_c00308{left:182.520000px;}
.x1f_c00308{left:187.380000px;}
.x2e_c00308{left:188.730000px;}
.x29_c00308{left:190.620000px;}
.x3e_c00308{left:195.750000px;}
.x24_c00308{left:198.180000px;}
.x2f_c00308{left:201.960000px;}
.xc_c00308{left:206.280000px;}
.x2a_c00308{left:208.440000px;}
.x7_c00308{left:213.840000px;}
.x25_c00308{left:218.160000px;}
.x39_c00308{left:233.820000px;}
.x30_c00308{left:236.790000px;}
.x3f_c00308{left:238.410000px;}
.x13_c00308{left:242.190000px;}
.x2b_c00308{left:243.810000px;}
.x1b_c00308{left:244.890000px;}
.xd_c00308{left:245.970000px;}
.x20_c00308{left:250.560000px;}
.x8_c00308{left:259.200000px;}
.x14_c00308{left:261.630000px;}
.x35_c00308{left:262.710000px;}
.xe_c00308{left:264.600000px;}
.x31_c00308{left:279.720000px;}
.x9_c00308{left:287.010000px;}
.x3a_c00308{left:295.380000px;}
.x40_c00308{left:297.000000px;}
.x15_c00308{left:301.320000px;}
.x26_c00308{left:307.530000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
.fsb_c00308{font-size:19.600000pt;}
.fsc_c00308{font-size:41.066667pt;}
.fs1_c00308{font-size:54.133333pt;}
.fsa_c00308{font-size:56.000000pt;}
.fs9_c00308{font-size:56.933333pt;}
.fs7_c00308{font-size:58.800000pt;}
.fs8_c00308{font-size:59.733333pt;}
.fs5_c00308{font-size:60.666667pt;}
.fs2_c00308{font-size:61.600000pt;}
.fs4_c00308{font-size:63.466667pt;}
.fs6_c00308{font-size:65.333333pt;}
.fs3_c00308{font-size:68.133333pt;}
.fs0_c00308{font-size:107.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.yf_c00308{bottom:9.121333pt;}
.ye_c00308{bottom:294.720000pt;}
.yd_c00308{bottom:337.678667pt;}
.yc_c00308{bottom:339.840000pt;}
.yb_c00308{bottom:354.926667pt;}
.ya_c00308{bottom:369.793333pt;}
.y9_c00308{bottom:385.258667pt;}
.y8_c00308{bottom:400.272000pt;}
.y7_c00308{bottom:415.141333pt;}
.y6_c00308{bottom:430.297333pt;}
.y5_c00308{bottom:443.712000pt;}
.y4_c00308{bottom:460.060000pt;}
.y3_c00308{bottom:476.000000pt;}
.y2_c00308{bottom:491.100000pt;}
.y1_c00308{bottom:502.972000pt;}
.hd_c00308{height:19.600000pt;}
.he_c00308{height:41.066667pt;}
.h3_c00308{height:54.133333pt;}
.hc_c00308{height:56.000000pt;}
.hb_c00308{height:56.933333pt;}
.h9_c00308{height:58.800000pt;}
.ha_c00308{height:59.733333pt;}
.h7_c00308{height:60.666667pt;}
.h4_c00308{height:61.600000pt;}
.h6_c00308{height:63.466667pt;}
.h8_c00308{height:65.333333pt;}
.h5_c00308{height:68.133333pt;}
.h2_c00308{height:107.333333pt;}
.h1_c00308{height:550.000000pt;}
.h0_c00308{height:550.266667pt;}
.w0_c00308{width:319.200000pt;}
.w1_c00308{width:319.333333pt;}
.x0_c00308{left:0.000000pt;}
.x2c_c00308{left:12.480000pt;}
.x27_c00308{left:14.400000pt;}
.x3_c00308{left:21.360000pt;}
.x36_c00308{left:24.240000pt;}
.x1_c00308{left:25.680000pt;}
.x16_c00308{left:31.920000pt;}
.x1c_c00308{left:35.280000pt;}
.x32_c00308{left:42.960000pt;}
.x21_c00308{left:44.160000pt;}
.x22_c00308{left:56.400000pt;}
.x17_c00308{left:62.400000pt;}
.x2d_c00308{left:70.320000pt;}
.x3b_c00308{left:75.600000pt;}
.x4_c00308{left:77.040000pt;}
.xa_c00308{left:78.000000pt;}
.x33_c00308{left:83.040000pt;}
.x37_c00308{left:84.720000pt;}
.x28_c00308{left:85.680000pt;}
.x23_c00308{left:88.560000pt;}
.x1d_c00308{left:89.760000pt;}
.x5_c00308{left:91.440000pt;}
.xf_c00308{left:100.560000pt;}
.xb_c00308{left:104.400000pt;}
.x18_c00308{left:105.600000pt;}
.x3c_c00308{left:111.600000pt;}
.x10_c00308{left:116.160000pt;}
.x34_c00308{left:119.760000pt;}
.x6_c00308{left:121.920000pt;}
.x38_c00308{left:126.480000pt;}
.x19_c00308{left:134.160000pt;}
.x2_c00308{left:135.360000pt;}
.x11_c00308{left:140.640000pt;}
.x1a_c00308{left:147.600000pt;}
.x1e_c00308{left:149.760000pt;}
.x12_c00308{left:156.960000pt;}
.x3d_c00308{left:162.240000pt;}
.x1f_c00308{left:166.560000pt;}
.x2e_c00308{left:167.760000pt;}
.x29_c00308{left:169.440000pt;}
.x3e_c00308{left:174.000000pt;}
.x24_c00308{left:176.160000pt;}
.x2f_c00308{left:179.520000pt;}
.xc_c00308{left:183.360000pt;}
.x2a_c00308{left:185.280000pt;}
.x7_c00308{left:190.080000pt;}
.x25_c00308{left:193.920000pt;}
.x39_c00308{left:207.840000pt;}
.x30_c00308{left:210.480000pt;}
.x3f_c00308{left:211.920000pt;}
.x13_c00308{left:215.280000pt;}
.x2b_c00308{left:216.720000pt;}
.x1b_c00308{left:217.680000pt;}
.xd_c00308{left:218.640000pt;}
.x20_c00308{left:222.720000pt;}
.x8_c00308{left:230.400000pt;}
.x14_c00308{left:232.560000pt;}
.x35_c00308{left:233.520000pt;}
.xe_c00308{left:235.200000pt;}
.x31_c00308{left:248.640000pt;}
.x9_c00308{left:255.120000pt;}
.x3a_c00308{left:262.560000pt;}
.x40_c00308{left:264.000000pt;}
.x15_c00308{left:267.840000pt;}
.x26_c00308{left:273.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00309 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00309 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00309 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00309 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00309.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.011020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011020,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.016510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016510,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);}
.md6_c00309{transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);}
.m37_c00309{transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136260,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.142285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142285,0.000000,0.000000,0.250000,0,0);}
.mea_c00309{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);}
.meb_c00309{transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151830,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159310,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.me9_c00309{transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);}
.m96_c00309{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.160745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160745,0.000000,0.000000,0.250000,0,0);}
.mde_c00309{transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162060,0.000000,0.000000,0.250000,0,0);}
.m86_c00309{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.mb5_c00309{transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165580,0.000000,0.000000,0.250000,0,0);}
.ma9_c00309{transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);}
.ma0_c00309{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m87_c00309{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.m78_c00309{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.mc4_c00309{transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);}
.m8d_c00309{transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168660,0.000000,0.000000,0.250000,0,0);}
.me7_c00309{transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);}
.m88_c00309{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m57_c00309{transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);}
.m6a_c00309{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.me5_c00309{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);}
.ma8_c00309{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);}
.me3_c00309{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);}
.ma1_c00309{transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);}
.m46_c00309{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.mdc_c00309{transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.me8_c00309{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00309{transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176060,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.177615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177615,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m92_c00309{transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);}
.m47_c00309{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);}
.m97_c00309{transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);}
.me4_c00309{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.mba_c00309{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.mb7_c00309{transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);}
.me6_c00309{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180915,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.mca_c00309{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.mb2_c00309{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00309{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m58_c00309{transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);}
.m66_c00309{transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);}
.m50_c00309{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.mdf_c00309{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m79_c00309{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m7e_c00309{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m93_c00309{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m84_c00309{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.md7_c00309{transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m55_c00309{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);}
.m77_c00309{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.mc5_c00309{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.ma4_c00309{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.md0_c00309{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m8c_c00309{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.m64_c00309{transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191830,0.000000,0.000000,0.250000,0,0);}
.m63_c00309{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m59_c00309{transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.mbd_c00309{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.m72_c00309{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m54_c00309{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.m83_c00309{transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.mcc_c00309{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.ma7_c00309{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00309{transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);}
.m7f_c00309{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m53_c00309{transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);}
.m98_c00309{transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00309{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.m6b_c00309{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m91_c00309{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.maa_c00309{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.maf_c00309{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m60_c00309{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m8b_c00309{transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);}
.m89_c00309{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.me1_c00309{transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);}
.mbb_c00309{transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198690,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.m8f_c00309{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00309{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m6e_c00309{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.m5a_c00309{transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m62_c00309{transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);}
.m8a_c00309{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.m40_c00309{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m65_c00309{transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);}
.mc1_c00309{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.me2_c00309{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m99_c00309{transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);}
.md9_c00309{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);}
.m8e_c00309{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.m95_c00309{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.ma6_c00309{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.me0_c00309{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.mad_c00309{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00309{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.mac_c00309{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m7c_c00309{transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);}
.m81_c00309{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m71_c00309{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m67_c00309{transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);}
.m68_c00309{transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210970,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211430,0.000000,0.000000,0.250000,0,0);}
.mb0_c00309{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m74_c00309{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.mdd_c00309{transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);}
.md5_c00309{transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213245,0.000000,0.000000,0.250000,0,0);}
.mc3_c00309{transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213790,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.mdb_c00309{transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);}
.m56_c00309{transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214495,0.000000,0.000000,0.250000,0,0);}
.m85_c00309{transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);}
.mb4_c00309{transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214820,0.000000,0.000000,0.250000,0,0);}
.mab_c00309{transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);}
.mc8_c00309{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.mb9_c00309{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.mda_c00309{transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00309{transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);}
.mcf_c00309{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m94_c00309{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m82_c00309{transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);}
.m90_c00309{transform:matrix(0.218230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218230,0.000000,0.000000,0.250000,0,0);}
.mae_c00309{transform:matrix(0.218410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218410,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m6c_c00309{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.mb3_c00309{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.md4_c00309{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00309{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.mc7_c00309{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m69_c00309{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00309{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m73_c00309{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.mc6_c00309{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m5c_c00309{transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m7d_c00309{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.mbc_c00309{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m6f_c00309{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m6d_c00309{transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);}
.m70_c00309{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.mc0_c00309{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m52_c00309{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.md3_c00309{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m9d_c00309{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.md8_c00309{transform:matrix(0.231370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231370,0.000000,0.000000,0.250000,0,0);}
.m9f_c00309{transform:matrix(0.231720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231720,0.000000,0.000000,0.250000,0,0);}
.m61_c00309{transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.mb1_c00309{transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m9e_c00309{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.mcd_c00309{transform:matrix(0.237115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237115,0.000000,0.000000,0.250000,0,0);}
.mc9_c00309{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.md1_c00309{transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237495,0.000000,0.000000,0.250000,0,0);}
.ma2_c00309{transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);}
.mce_c00309{transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);}
.md2_c00309{transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);}
.ma5_c00309{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00309{transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00309{transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);}
.mb6_c00309{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m76_c00309{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m80_c00309{transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.261180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261180,0.000000,0.000000,0.250000,0,0);}
.m9b_c00309{transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);}
.m75_c00309{transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m5b_c00309{transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);}
.m7b_c00309{transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.337460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337460,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.m7a_c00309{transform:matrix(0.491755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491755,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:0.000000px;}
.fc0_c00309{color:transparent;}
.fs8_c00309{font-size:55.650000px;}
.fs6_c00309{font-size:57.750000px;}
.fsa_c00309{font-size:58.800000px;}
.fs5_c00309{font-size:59.850000px;}
.fs7_c00309{font-size:60.900000px;}
.fs2_c00309{font-size:63.000000px;}
.fsb_c00309{font-size:64.050000px;}
.fs3_c00309{font-size:65.100000px;}
.fs9_c00309{font-size:66.150000px;}
.fs0_c00309{font-size:69.300000px;}
.fs4_c00309{font-size:70.350000px;}
.fs1_c00309{font-size:73.500000px;}
.fsc_c00309{font-size:76.650000px;}
.y0_c00309{bottom:0.000000px;}
.ya3_c00309{bottom:20.802000px;}
.ya4_c00309{bottom:24.405000px;}
.ya5_c00309{bottom:24.829500px;}
.ya6_c00309{bottom:26.187000px;}
.ya7_c00309{bottom:27.313500px;}
.ya8_c00309{bottom:27.807000px;}
.y9c_c00309{bottom:37.263000px;}
.y9d_c00309{bottom:37.713000px;}
.y9e_c00309{bottom:38.653500px;}
.y9f_c00309{bottom:39.471000px;}
.ya0_c00309{bottom:39.636000px;}
.ya1_c00309{bottom:39.861000px;}
.ya2_c00309{bottom:40.770000px;}
.y94_c00309{bottom:54.273000px;}
.y95_c00309{bottom:54.901500px;}
.y96_c00309{bottom:55.180500px;}
.y97_c00309{bottom:55.695000px;}
.y98_c00309{bottom:55.974000px;}
.y99_c00309{bottom:56.575500px;}
.y9a_c00309{bottom:56.706000px;}
.y9b_c00309{bottom:57.681000px;}
.y8c_c00309{bottom:71.553000px;}
.y8d_c00309{bottom:72.354000px;}
.y8e_c00309{bottom:72.582000px;}
.y8f_c00309{bottom:73.342500px;}
.y90_c00309{bottom:74.031000px;}
.y91_c00309{bottom:74.196000px;}
.y92_c00309{bottom:74.926500px;}
.y93_c00309{bottom:75.316500px;}
.y8b_c00309{bottom:89.733000px;}
.y84_c00309{bottom:105.034500px;}
.y85_c00309{bottom:105.783000px;}
.y86_c00309{bottom:106.488000px;}
.y87_c00309{bottom:106.677000px;}
.y88_c00309{bottom:107.605500px;}
.y89_c00309{bottom:107.901000px;}
.y8a_c00309{bottom:108.856500px;}
.y7c_c00309{bottom:122.583000px;}
.y7d_c00309{bottom:122.842500px;}
.y7e_c00309{bottom:123.333000px;}
.y7f_c00309{bottom:123.595500px;}
.y80_c00309{bottom:124.102500px;}
.y81_c00309{bottom:124.657500px;}
.y82_c00309{bottom:124.933500px;}
.y83_c00309{bottom:125.266500px;}
.y75_c00309{bottom:139.864500px;}
.y76_c00309{bottom:140.239500px;}
.y77_c00309{bottom:140.458500px;}
.y78_c00309{bottom:141.076500px;}
.y79_c00309{bottom:141.829500px;}
.y7a_c00309{bottom:142.171500px;}
.y7b_c00309{bottom:142.366500px;}
.y6f_c00309{bottom:156.333000px;}
.y70_c00309{bottom:157.377000px;}
.y71_c00309{bottom:158.019000px;}
.y72_c00309{bottom:158.220000px;}
.y73_c00309{bottom:159.279000px;}
.y74_c00309{bottom:159.529500px;}
.y67_c00309{bottom:174.421500px;}
.y68_c00309{bottom:175.083000px;}
.y69_c00309{bottom:175.297500px;}
.y6a_c00309{bottom:175.905000px;}
.y6b_c00309{bottom:176.412000px;}
.y6c_c00309{bottom:176.716500px;}
.y6d_c00309{bottom:176.916000px;}
.y6e_c00309{bottom:177.111000px;}
.y66_c00309{bottom:192.861000px;}
.y65_c00309{bottom:210.175500px;}
.y64_c00309{bottom:227.130000px;}
.y63_c00309{bottom:244.383000px;}
.y62_c00309{bottom:260.278500px;}
.y5a_c00309{bottom:275.673000px;}
.y5b_c00309{bottom:275.950500px;}
.y5c_c00309{bottom:276.325500px;}
.y5d_c00309{bottom:276.957000px;}
.y5e_c00309{bottom:277.629000px;}
.y5f_c00309{bottom:277.837500px;}
.y60_c00309{bottom:277.999500px;}
.y61_c00309{bottom:278.602500px;}
.y55_c00309{bottom:292.413000px;}
.y56_c00309{bottom:292.773000px;}
.y57_c00309{bottom:292.960500px;}
.y58_c00309{bottom:293.896500px;}
.y59_c00309{bottom:294.085500px;}
.y54_c00309{bottom:310.911000px;}
.y4d_c00309{bottom:326.434500px;}
.y4e_c00309{bottom:327.193500px;}
.y4f_c00309{bottom:327.760500px;}
.y50_c00309{bottom:328.572000px;}
.y51_c00309{bottom:329.061000px;}
.y52_c00309{bottom:329.299500px;}
.y53_c00309{bottom:330.202500px;}
.y48_c00309{bottom:343.714500px;}
.y49_c00309{bottom:344.466000px;}
.y4a_c00309{bottom:344.583000px;}
.y4b_c00309{bottom:345.396000px;}
.y4c_c00309{bottom:346.578000px;}
.y42_c00309{bottom:360.996000px;}
.y43_c00309{bottom:361.669500px;}
.y44_c00309{bottom:362.044500px;}
.y45_c00309{bottom:362.985000px;}
.y46_c00309{bottom:363.907500px;}
.y47_c00309{bottom:364.237500px;}
.y41_c00309{bottom:379.459500px;}
.y38_c00309{bottom:395.011500px;}
.y39_c00309{bottom:395.350500px;}
.y3a_c00309{bottom:395.659500px;}
.y3b_c00309{bottom:396.099000px;}
.y3c_c00309{bottom:396.328500px;}
.y3d_c00309{bottom:396.877500px;}
.y3e_c00309{bottom:397.080000px;}
.y3f_c00309{bottom:397.609500px;}
.y40_c00309{bottom:397.852500px;}
.y37_c00309{bottom:413.208000px;}
.y36_c00309{bottom:430.086000px;}
.y2d_c00309{bottom:444.964500px;}
.y2e_c00309{bottom:445.371000px;}
.y2f_c00309{bottom:446.005500px;}
.y30_c00309{bottom:446.338500px;}
.y31_c00309{bottom:446.490000px;}
.y32_c00309{bottom:447.169500px;}
.y33_c00309{bottom:447.433500px;}
.y34_c00309{bottom:448.078500px;}
.y35_c00309{bottom:448.539000px;}
.y2c_c00309{bottom:464.245500px;}
.y24_c00309{bottom:480.063000px;}
.y25_c00309{bottom:480.615000px;}
.y26_c00309{bottom:480.769500px;}
.y27_c00309{bottom:481.135500px;}
.y28_c00309{bottom:481.302000px;}
.y29_c00309{bottom:481.890000px;}
.y2a_c00309{bottom:482.569500px;}
.y2b_c00309{bottom:482.754000px;}
.y1c_c00309{bottom:496.533000px;}
.y1d_c00309{bottom:496.954500px;}
.y1e_c00309{bottom:497.173500px;}
.y1f_c00309{bottom:497.631000px;}
.y20_c00309{bottom:498.130500px;}
.y21_c00309{bottom:498.342000px;}
.y22_c00309{bottom:498.856500px;}
.y23_c00309{bottom:499.557000px;}
.y14_c00309{bottom:513.271500px;}
.y15_c00309{bottom:513.676500px;}
.y16_c00309{bottom:514.171500px;}
.y17_c00309{bottom:514.419000px;}
.y18_c00309{bottom:515.691000px;}
.y19_c00309{bottom:516.775500px;}
.y1a_c00309{bottom:517.189500px;}
.y1b_c00309{bottom:517.437000px;}
.yc_c00309{bottom:529.471500px;}
.yd_c00309{bottom:529.899000px;}
.ye_c00309{bottom:530.020500px;}
.yf_c00309{bottom:530.746500px;}
.y10_c00309{bottom:532.189500px;}
.y11_c00309{bottom:532.953000px;}
.y12_c00309{bottom:533.277000px;}
.y13_c00309{bottom:533.589000px;}
.y2_c00309{bottom:546.484500px;}
.y3_c00309{bottom:546.997500px;}
.y4_c00309{bottom:548.118000px;}
.y5_c00309{bottom:548.697000px;}
.y6_c00309{bottom:549.036000px;}
.y7_c00309{bottom:549.550500px;}
.y8_c00309{bottom:549.805500px;}
.y9_c00309{bottom:551.061000px;}
.ya_c00309{bottom:551.395500px;}
.yb_c00309{bottom:552.099000px;}
.y1_c00309{bottom:565.240500px;}
.ha_c00309{height:55.650000px;}
.h8_c00309{height:57.750000px;}
.hc_c00309{height:58.800000px;}
.h7_c00309{height:59.850000px;}
.h9_c00309{height:60.900000px;}
.h4_c00309{height:63.000000px;}
.hd_c00309{height:64.050000px;}
.h5_c00309{height:65.100000px;}
.hb_c00309{height:66.150000px;}
.h2_c00309{height:69.300000px;}
.h6_c00309{height:70.350000px;}
.h3_c00309{height:73.500000px;}
.he_c00309{height:76.650000px;}
.h1_c00309{height:618.750000px;}
.h0_c00309{height:619.050000px;}
.w0_c00309{width:359.100000px;}
.w1_c00309{width:359.250000px;}
.x0_c00309{left:0.000000px;}
.x51_c00309{left:38.991000px;}
.x69_c00309{left:40.617000px;}
.x60_c00309{left:41.848500px;}
.x59_c00309{left:42.928500px;}
.x3a_c00309{left:44.257500px;}
.x2b_c00309{left:46.338000px;}
.x42_c00309{left:47.421000px;}
.x1b_c00309{left:49.555500px;}
.x3_c00309{left:51.030000px;}
.xd_c00309{left:52.044000px;}
.x52_c00309{left:66.811500px;}
.x7a_c00309{left:73.603500px;}
.x4_c00309{left:76.696500px;}
.xe_c00309{left:78.763500px;}
.x66_c00309{left:79.780500px;}
.x31_c00309{left:82.887000px;}
.x61_c00309{left:84.508500px;}
.xf_c00309{left:86.356500px;}
.x1c_c00309{left:87.933000px;}
.x4b_c00309{left:89.367000px;}
.x78_c00309{left:91.674000px;}
.x4f_c00309{left:95.722500px;}
.x6d_c00309{left:97.113000px;}
.x22_c00309{left:99.790500px;}
.x1_c00309{left:102.330000px;}
.x53_c00309{left:104.335500px;}
.x28_c00309{left:106.110000px;}
.x1d_c00309{left:107.863500px;}
.x3b_c00309{left:108.927000px;}
.x15_c00309{left:111.961500px;}
.x23_c00309{left:113.799000px;}
.x56_c00309{left:115.288500px;}
.x75_c00309{left:119.244000px;}
.x45_c00309{left:123.016500px;}
.x2c_c00309{left:126.517500px;}
.x16_c00309{left:128.436000px;}
.x5a_c00309{left:129.598500px;}
.x10_c00309{left:131.709000px;}
.x5_c00309{left:132.736500px;}
.x35_c00309{left:140.667000px;}
.x6a_c00309{left:141.873000px;}
.x47_c00309{left:143.553000px;}
.x7b_c00309{left:145.972500px;}
.x24_c00309{left:147.007500px;}
.x1e_c00309{left:149.451000px;}
.x5b_c00309{left:150.658500px;}
.x2d_c00309{left:152.155500px;}
.x71_c00309{left:156.324000px;}
.x5d_c00309{left:157.948500px;}
.x32_c00309{left:159.027000px;}
.x6_c00309{left:161.718000px;}
.x2e_c00309{left:163.777500px;}
.x6e_c00309{left:165.937500px;}
.x36_c00309{left:167.127000px;}
.x7c_c00309{left:168.504000px;}
.x4c_c00309{left:170.097000px;}
.x57_c00309{left:173.338500px;}
.x3c_c00309{left:175.837500px;}
.x7_c00309{left:178.651500px;}
.x37_c00309{left:180.897000px;}
.x2_c00309{left:183.600000px;}
.x46_c00309{left:190.783500px;}
.x6b_c00309{left:192.625500px;}
.x1f_c00309{left:194.805000px;}
.x50_c00309{left:198.013500px;}
.x43_c00309{left:200.502000px;}
.x48_c00309{left:201.528000px;}
.x8_c00309{left:204.340500px;}
.x4d_c00309{left:208.977000px;}
.x72_c00309{left:210.324000px;}
.x17_c00309{left:213.217500px;}
.x25_c00309{left:215.595000px;}
.x9_c00309{left:217.057500px;}
.x5e_c00309{left:218.968500px;}
.x40_c00309{left:220.858500px;}
.x11_c00309{left:221.883000px;}
.x29_c00309{left:223.830000px;}
.x73_c00309{left:228.684000px;}
.x3d_c00309{left:230.694000px;}
.x5c_c00309{left:232.198500px;}
.x54_c00309{left:234.700500px;}
.x2f_c00309{left:236.401500px;}
.x6f_c00309{left:237.405000px;}
.x67_c00309{left:238.791000px;}
.x63_c00309{left:241.225500px;}
.x76_c00309{left:243.355500px;}
.x6c_c00309{left:248.188500px;}
.x3e_c00309{left:250.947000px;}
.x49_c00309{left:253.429500px;}
.x55_c00309{left:255.537000px;}
.x4e_c00309{left:257.847000px;}
.x20_c00309{left:260.682000px;}
.x38_c00309{left:262.167000px;}
.x2a_c00309{left:265.680000px;}
.x12_c00309{left:269.587500px;}
.x44_c00309{left:271.440000px;}
.x68_c00309{left:273.037500px;}
.x5f_c00309{left:275.938500px;}
.x26_c00309{left:277.369500px;}
.xa_c00309{left:279.856500px;}
.x18_c00309{left:285.496500px;}
.x13_c00309{left:289.836000px;}
.x64_c00309{left:291.655500px;}
.x27_c00309{left:294.169500px;}
.xb_c00309{left:296.611500px;}
.x77_c00309{left:299.572500px;}
.x33_c00309{left:302.937000px;}
.x74_c00309{left:305.904000px;}
.x65_c00309{left:307.147500px;}
.x14_c00309{left:309.297000px;}
.x58_c00309{left:311.578500px;}
.x19_c00309{left:313.102500px;}
.x62_c00309{left:316.708500px;}
.x4a_c00309{left:317.923500px;}
.x39_c00309{left:320.217000px;}
.x30_c00309{left:321.465000px;}
.x79_c00309{left:323.359500px;}
.x21_c00309{left:324.412500px;}
.x34_c00309{left:325.887000px;}
.x3f_c00309{left:328.149000px;}
.x1a_c00309{left:329.596500px;}
.xc_c00309{left:331.816500px;}
.x70_c00309{left:333.667500px;}
.x41_c00309{left:339.658500px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.fs8_c00309{font-size:49.466667pt;}
.fs6_c00309{font-size:51.333333pt;}
.fsa_c00309{font-size:52.266667pt;}
.fs5_c00309{font-size:53.200000pt;}
.fs7_c00309{font-size:54.133333pt;}
.fs2_c00309{font-size:56.000000pt;}
.fsb_c00309{font-size:56.933333pt;}
.fs3_c00309{font-size:57.866667pt;}
.fs9_c00309{font-size:58.800000pt;}
.fs0_c00309{font-size:61.600000pt;}
.fs4_c00309{font-size:62.533333pt;}
.fs1_c00309{font-size:65.333333pt;}
.fsc_c00309{font-size:68.133333pt;}
.y0_c00309{bottom:0.000000pt;}
.ya3_c00309{bottom:18.490667pt;}
.ya4_c00309{bottom:21.693333pt;}
.ya5_c00309{bottom:22.070667pt;}
.ya6_c00309{bottom:23.277333pt;}
.ya7_c00309{bottom:24.278667pt;}
.ya8_c00309{bottom:24.717333pt;}
.y9c_c00309{bottom:33.122667pt;}
.y9d_c00309{bottom:33.522667pt;}
.y9e_c00309{bottom:34.358667pt;}
.y9f_c00309{bottom:35.085333pt;}
.ya0_c00309{bottom:35.232000pt;}
.ya1_c00309{bottom:35.432000pt;}
.ya2_c00309{bottom:36.240000pt;}
.y94_c00309{bottom:48.242667pt;}
.y95_c00309{bottom:48.801333pt;}
.y96_c00309{bottom:49.049333pt;}
.y97_c00309{bottom:49.506667pt;}
.y98_c00309{bottom:49.754667pt;}
.y99_c00309{bottom:50.289333pt;}
.y9a_c00309{bottom:50.405333pt;}
.y9b_c00309{bottom:51.272000pt;}
.y8c_c00309{bottom:63.602667pt;}
.y8d_c00309{bottom:64.314667pt;}
.y8e_c00309{bottom:64.517333pt;}
.y8f_c00309{bottom:65.193333pt;}
.y90_c00309{bottom:65.805333pt;}
.y91_c00309{bottom:65.952000pt;}
.y92_c00309{bottom:66.601333pt;}
.y93_c00309{bottom:66.948000pt;}
.y8b_c00309{bottom:79.762667pt;}
.y84_c00309{bottom:93.364000pt;}
.y85_c00309{bottom:94.029333pt;}
.y86_c00309{bottom:94.656000pt;}
.y87_c00309{bottom:94.824000pt;}
.y88_c00309{bottom:95.649333pt;}
.y89_c00309{bottom:95.912000pt;}
.y8a_c00309{bottom:96.761333pt;}
.y7c_c00309{bottom:108.962667pt;}
.y7d_c00309{bottom:109.193333pt;}
.y7e_c00309{bottom:109.629333pt;}
.y7f_c00309{bottom:109.862667pt;}
.y80_c00309{bottom:110.313333pt;}
.y81_c00309{bottom:110.806667pt;}
.y82_c00309{bottom:111.052000pt;}
.y83_c00309{bottom:111.348000pt;}
.y75_c00309{bottom:124.324000pt;}
.y76_c00309{bottom:124.657333pt;}
.y77_c00309{bottom:124.852000pt;}
.y78_c00309{bottom:125.401333pt;}
.y79_c00309{bottom:126.070667pt;}
.y7a_c00309{bottom:126.374667pt;}
.y7b_c00309{bottom:126.548000pt;}
.y6f_c00309{bottom:138.962667pt;}
.y70_c00309{bottom:139.890667pt;}
.y71_c00309{bottom:140.461333pt;}
.y72_c00309{bottom:140.640000pt;}
.y73_c00309{bottom:141.581333pt;}
.y74_c00309{bottom:141.804000pt;}
.y67_c00309{bottom:155.041333pt;}
.y68_c00309{bottom:155.629333pt;}
.y69_c00309{bottom:155.820000pt;}
.y6a_c00309{bottom:156.360000pt;}
.y6b_c00309{bottom:156.810667pt;}
.y6c_c00309{bottom:157.081333pt;}
.y6d_c00309{bottom:157.258667pt;}
.y6e_c00309{bottom:157.432000pt;}
.y66_c00309{bottom:171.432000pt;}
.y65_c00309{bottom:186.822667pt;}
.y64_c00309{bottom:201.893333pt;}
.y63_c00309{bottom:217.229333pt;}
.y62_c00309{bottom:231.358667pt;}
.y5a_c00309{bottom:245.042667pt;}
.y5b_c00309{bottom:245.289333pt;}
.y5c_c00309{bottom:245.622667pt;}
.y5d_c00309{bottom:246.184000pt;}
.y5e_c00309{bottom:246.781333pt;}
.y5f_c00309{bottom:246.966667pt;}
.y60_c00309{bottom:247.110667pt;}
.y61_c00309{bottom:247.646667pt;}
.y55_c00309{bottom:259.922667pt;}
.y56_c00309{bottom:260.242667pt;}
.y57_c00309{bottom:260.409333pt;}
.y58_c00309{bottom:261.241333pt;}
.y59_c00309{bottom:261.409333pt;}
.y54_c00309{bottom:276.365333pt;}
.y4d_c00309{bottom:290.164000pt;}
.y4e_c00309{bottom:290.838667pt;}
.y4f_c00309{bottom:291.342667pt;}
.y50_c00309{bottom:292.064000pt;}
.y51_c00309{bottom:292.498667pt;}
.y52_c00309{bottom:292.710667pt;}
.y53_c00309{bottom:293.513333pt;}
.y48_c00309{bottom:305.524000pt;}
.y49_c00309{bottom:306.192000pt;}
.y4a_c00309{bottom:306.296000pt;}
.y4b_c00309{bottom:307.018667pt;}
.y4c_c00309{bottom:308.069333pt;}
.y42_c00309{bottom:320.885333pt;}
.y43_c00309{bottom:321.484000pt;}
.y44_c00309{bottom:321.817333pt;}
.y45_c00309{bottom:322.653333pt;}
.y46_c00309{bottom:323.473333pt;}
.y47_c00309{bottom:323.766667pt;}
.y41_c00309{bottom:337.297333pt;}
.y38_c00309{bottom:351.121333pt;}
.y39_c00309{bottom:351.422667pt;}
.y3a_c00309{bottom:351.697333pt;}
.y3b_c00309{bottom:352.088000pt;}
.y3c_c00309{bottom:352.292000pt;}
.y3d_c00309{bottom:352.780000pt;}
.y3e_c00309{bottom:352.960000pt;}
.y3f_c00309{bottom:353.430667pt;}
.y40_c00309{bottom:353.646667pt;}
.y37_c00309{bottom:367.296000pt;}
.y36_c00309{bottom:382.298667pt;}
.y2d_c00309{bottom:395.524000pt;}
.y2e_c00309{bottom:395.885333pt;}
.y2f_c00309{bottom:396.449333pt;}
.y30_c00309{bottom:396.745333pt;}
.y31_c00309{bottom:396.880000pt;}
.y32_c00309{bottom:397.484000pt;}
.y33_c00309{bottom:397.718667pt;}
.y34_c00309{bottom:398.292000pt;}
.y35_c00309{bottom:398.701333pt;}
.y2c_c00309{bottom:412.662667pt;}
.y24_c00309{bottom:426.722667pt;}
.y25_c00309{bottom:427.213333pt;}
.y26_c00309{bottom:427.350667pt;}
.y27_c00309{bottom:427.676000pt;}
.y28_c00309{bottom:427.824000pt;}
.y29_c00309{bottom:428.346667pt;}
.y2a_c00309{bottom:428.950667pt;}
.y2b_c00309{bottom:429.114667pt;}
.y1c_c00309{bottom:441.362667pt;}
.y1d_c00309{bottom:441.737333pt;}
.y1e_c00309{bottom:441.932000pt;}
.y1f_c00309{bottom:442.338667pt;}
.y20_c00309{bottom:442.782667pt;}
.y21_c00309{bottom:442.970667pt;}
.y22_c00309{bottom:443.428000pt;}
.y23_c00309{bottom:444.050667pt;}
.y14_c00309{bottom:456.241333pt;}
.y15_c00309{bottom:456.601333pt;}
.y16_c00309{bottom:457.041333pt;}
.y17_c00309{bottom:457.261333pt;}
.y18_c00309{bottom:458.392000pt;}
.y19_c00309{bottom:459.356000pt;}
.y1a_c00309{bottom:459.724000pt;}
.y1b_c00309{bottom:459.944000pt;}
.yc_c00309{bottom:470.641333pt;}
.yd_c00309{bottom:471.021333pt;}
.ye_c00309{bottom:471.129333pt;}
.yf_c00309{bottom:471.774667pt;}
.y10_c00309{bottom:473.057333pt;}
.y11_c00309{bottom:473.736000pt;}
.y12_c00309{bottom:474.024000pt;}
.y13_c00309{bottom:474.301333pt;}
.y2_c00309{bottom:485.764000pt;}
.y3_c00309{bottom:486.220000pt;}
.y4_c00309{bottom:487.216000pt;}
.y5_c00309{bottom:487.730667pt;}
.y6_c00309{bottom:488.032000pt;}
.y7_c00309{bottom:488.489333pt;}
.y8_c00309{bottom:488.716000pt;}
.y9_c00309{bottom:489.832000pt;}
.ya_c00309{bottom:490.129333pt;}
.yb_c00309{bottom:490.754667pt;}
.y1_c00309{bottom:502.436000pt;}
.ha_c00309{height:49.466667pt;}
.h8_c00309{height:51.333333pt;}
.hc_c00309{height:52.266667pt;}
.h7_c00309{height:53.200000pt;}
.h9_c00309{height:54.133333pt;}
.h4_c00309{height:56.000000pt;}
.hd_c00309{height:56.933333pt;}
.h5_c00309{height:57.866667pt;}
.hb_c00309{height:58.800000pt;}
.h2_c00309{height:61.600000pt;}
.h6_c00309{height:62.533333pt;}
.h3_c00309{height:65.333333pt;}
.he_c00309{height:68.133333pt;}
.h1_c00309{height:550.000000pt;}
.h0_c00309{height:550.266667pt;}
.w0_c00309{width:319.200000pt;}
.w1_c00309{width:319.333333pt;}
.x0_c00309{left:0.000000pt;}
.x51_c00309{left:34.658667pt;}
.x69_c00309{left:36.104000pt;}
.x60_c00309{left:37.198667pt;}
.x59_c00309{left:38.158667pt;}
.x3a_c00309{left:39.340000pt;}
.x2b_c00309{left:41.189333pt;}
.x42_c00309{left:42.152000pt;}
.x1b_c00309{left:44.049333pt;}
.x3_c00309{left:45.360000pt;}
.xd_c00309{left:46.261333pt;}
.x52_c00309{left:59.388000pt;}
.x7a_c00309{left:65.425333pt;}
.x4_c00309{left:68.174667pt;}
.xe_c00309{left:70.012000pt;}
.x66_c00309{left:70.916000pt;}
.x31_c00309{left:73.677333pt;}
.x61_c00309{left:75.118667pt;}
.xf_c00309{left:76.761333pt;}
.x1c_c00309{left:78.162667pt;}
.x4b_c00309{left:79.437333pt;}
.x78_c00309{left:81.488000pt;}
.x4f_c00309{left:85.086667pt;}
.x6d_c00309{left:86.322667pt;}
.x22_c00309{left:88.702667pt;}
.x1_c00309{left:90.960000pt;}
.x53_c00309{left:92.742667pt;}
.x28_c00309{left:94.320000pt;}
.x1d_c00309{left:95.878667pt;}
.x3b_c00309{left:96.824000pt;}
.x15_c00309{left:99.521333pt;}
.x23_c00309{left:101.154667pt;}
.x56_c00309{left:102.478667pt;}
.x75_c00309{left:105.994667pt;}
.x45_c00309{left:109.348000pt;}
.x2c_c00309{left:112.460000pt;}
.x16_c00309{left:114.165333pt;}
.x5a_c00309{left:115.198667pt;}
.x10_c00309{left:117.074667pt;}
.x5_c00309{left:117.988000pt;}
.x35_c00309{left:125.037333pt;}
.x6a_c00309{left:126.109333pt;}
.x47_c00309{left:127.602667pt;}
.x7b_c00309{left:129.753333pt;}
.x24_c00309{left:130.673333pt;}
.x1e_c00309{left:132.845333pt;}
.x5b_c00309{left:133.918667pt;}
.x2d_c00309{left:135.249333pt;}
.x71_c00309{left:138.954667pt;}
.x5d_c00309{left:140.398667pt;}
.x32_c00309{left:141.357333pt;}
.x6_c00309{left:143.749333pt;}
.x2e_c00309{left:145.580000pt;}
.x6e_c00309{left:147.500000pt;}
.x36_c00309{left:148.557333pt;}
.x7c_c00309{left:149.781333pt;}
.x4c_c00309{left:151.197333pt;}
.x57_c00309{left:154.078667pt;}
.x3c_c00309{left:156.300000pt;}
.x7_c00309{left:158.801333pt;}
.x37_c00309{left:160.797333pt;}
.x2_c00309{left:163.200000pt;}
.x46_c00309{left:169.585333pt;}
.x6b_c00309{left:171.222667pt;}
.x1f_c00309{left:173.160000pt;}
.x50_c00309{left:176.012000pt;}
.x43_c00309{left:178.224000pt;}
.x48_c00309{left:179.136000pt;}
.x8_c00309{left:181.636000pt;}
.x4d_c00309{left:185.757333pt;}
.x72_c00309{left:186.954667pt;}
.x17_c00309{left:189.526667pt;}
.x25_c00309{left:191.640000pt;}
.x9_c00309{left:192.940000pt;}
.x5e_c00309{left:194.638667pt;}
.x40_c00309{left:196.318667pt;}
.x11_c00309{left:197.229333pt;}
.x29_c00309{left:198.960000pt;}
.x73_c00309{left:203.274667pt;}
.x3d_c00309{left:205.061333pt;}
.x5c_c00309{left:206.398667pt;}
.x54_c00309{left:208.622667pt;}
.x2f_c00309{left:210.134667pt;}
.x6f_c00309{left:211.026667pt;}
.x67_c00309{left:212.258667pt;}
.x63_c00309{left:214.422667pt;}
.x76_c00309{left:216.316000pt;}
.x6c_c00309{left:220.612000pt;}
.x3e_c00309{left:223.064000pt;}
.x49_c00309{left:225.270667pt;}
.x55_c00309{left:227.144000pt;}
.x4e_c00309{left:229.197333pt;}
.x20_c00309{left:231.717333pt;}
.x38_c00309{left:233.037333pt;}
.x2a_c00309{left:236.160000pt;}
.x12_c00309{left:239.633333pt;}
.x44_c00309{left:241.280000pt;}
.x68_c00309{left:242.700000pt;}
.x5f_c00309{left:245.278667pt;}
.x26_c00309{left:246.550667pt;}
.xa_c00309{left:248.761333pt;}
.x18_c00309{left:253.774667pt;}
.x13_c00309{left:257.632000pt;}
.x64_c00309{left:259.249333pt;}
.x27_c00309{left:261.484000pt;}
.xb_c00309{left:263.654667pt;}
.x77_c00309{left:266.286667pt;}
.x33_c00309{left:269.277333pt;}
.x74_c00309{left:271.914667pt;}
.x65_c00309{left:273.020000pt;}
.x14_c00309{left:274.930667pt;}
.x58_c00309{left:276.958667pt;}
.x19_c00309{left:278.313333pt;}
.x62_c00309{left:281.518667pt;}
.x4a_c00309{left:282.598667pt;}
.x39_c00309{left:284.637333pt;}
.x30_c00309{left:285.746667pt;}
.x79_c00309{left:287.430667pt;}
.x21_c00309{left:288.366667pt;}
.x34_c00309{left:289.677333pt;}
.x3f_c00309{left:291.688000pt;}
.x1a_c00309{left:292.974667pt;}
.xc_c00309{left:294.948000pt;}
.x70_c00309{left:296.593333pt;}
.x41_c00309{left:301.918667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00310 {
    display:none;
  }
  .loading-indicator_c00310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00310 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00310 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00310" -> "#page-container .classname_c00310")
 */
.pf_c00310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00310 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00310 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00310 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00310 {overflow:visible;}
  }
}
.c_c00310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00310 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00310:after { /* webkit #35443 */
  content: '';
}
.t_c00310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00310 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00310 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00310 { /* info for Javascript */
  display:none;
}
.l_c00310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00310:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00310 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00310.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdb_c00310{transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);}
.md9_c00310{transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.142465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142465,0.000000,0.000000,0.250000,0,0);}
.mc8_c00310{transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);}
.md6_c00310{transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);}
.mcf_c00310{transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145995,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.147120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.148830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00310{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.md3_c00310{transform:matrix(0.150730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150730,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151385,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153205,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);}
.m31_c00310{transform:matrix(0.154780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154780,0.000000,0.000000,0.250000,0,0);}
.mb5_c00310{transform:matrix(0.155455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155455,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m32_c00310{transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00310{transform:matrix(0.158170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158170,0.000000,0.000000,0.250000,0,0);}
.m77_c00310{transform:matrix(0.158180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158180,0.000000,0.000000,0.250000,0,0);}
.m58_c00310{transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);}
.m57_c00310{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m69_c00310{transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);}
.mde_c00310{transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);}
.m37_c00310{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m53_c00310{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m34_c00310{transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167740,0.000000,0.000000,0.250000,0,0);}
.md4_c00310{transform:matrix(0.167995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167995,0.000000,0.000000,0.250000,0,0);}
.m62_c00310{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m7d_c00310{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m8e_c00310{transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);}
.md8_c00310{transform:matrix(0.172455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172455,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);}
.mbf_c00310{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);}
.m73_c00310{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);}
.m94_c00310{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m92_c00310{transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00310{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);}
.md2_c00310{transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);}
.ma0_c00310{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.m9e_c00310{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m70_c00310{transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178715,0.000000,0.000000,0.250000,0,0);}
.m6f_c00310{transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179270,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);}
.mb7_c00310{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.ma4_c00310{transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180560,0.000000,0.000000,0.250000,0,0);}
.m60_c00310{transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);}
.m5a_c00310{transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181910,0.000000,0.000000,0.250000,0,0);}
.m96_c00310{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.me1_c00310{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.mda_c00310{transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182045,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m6e_c00310{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m9a_c00310{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.m38_c00310{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m8f_c00310{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.md7_c00310{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185745,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);}
.m59_c00310{transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);}
.m6b_c00310{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.mc3_c00310{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.m4e_c00310{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m67_c00310{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m74_c00310{transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);}
.ma3_c00310{transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);}
.m51_c00310{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00310{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.mad_c00310{transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);}
.m63_c00310{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00310{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m5c_c00310{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.md0_c00310{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.mc6_c00310{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.mb0_c00310{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m64_c00310{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);}
.m9c_c00310{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.mae_c00310{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m97_c00310{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.mbe_c00310{transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);}
.m9f_c00310{transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);}
.m99_c00310{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m80_c00310{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199885,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.ma9_c00310{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m4f_c00310{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m88_c00310{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.mc0_c00310{transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201330,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00310{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.mbd_c00310{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m65_c00310{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202480,0.000000,0.000000,0.250000,0,0);}
.mc2_c00310{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m55_c00310{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.m87_c00310{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m89_c00310{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.mc9_c00310{transform:matrix(0.204830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204830,0.000000,0.000000,0.250000,0,0);}
.m68_c00310{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.mcc_c00310{transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m61_c00310{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.m95_c00310{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.mdf_c00310{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m66_c00310{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m6a_c00310{transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00310{transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00310{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.m7c_c00310{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.mca_c00310{transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00310{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.mb9_c00310{transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);}
.mbb_c00310{transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.mab_c00310{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m72_c00310{transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.ma8_c00310{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220055,0.000000,0.000000,0.250000,0,0);}
.mb4_c00310{transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);}
.mcd_c00310{transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220565,0.000000,0.000000,0.250000,0,0);}
.mcb_c00310{transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);}
.maf_c00310{transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221285,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);}
.mc5_c00310{transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);}
.m76_c00310{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.mc7_c00310{transform:matrix(0.223080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223080,0.000000,0.000000,0.250000,0,0);}
.md1_c00310{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m52_c00310{transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);}
.m93_c00310{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.mbc_c00310{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.ma6_c00310{transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);}
.m83_c00310{transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);}
.mb8_c00310{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.me0_c00310{transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m71_c00310{transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228490,0.000000,0.000000,0.250000,0,0);}
.m3b_c00310{transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);}
.maa_c00310{transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229385,0.000000,0.000000,0.250000,0,0);}
.m41_c00310{transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.mc4_c00310{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.mb1_c00310{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m7a_c00310{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00310{transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);}
.m90_c00310{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m82_c00310{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mac_c00310{transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238160,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);}
.mdc_c00310{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00310{transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);}
.m8d_c00310{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);}
.m91_c00310{transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);}
.mb6_c00310{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mce_c00310{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00310{transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);}
.mba_c00310{transform:matrix(0.261555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.md5_c00310{transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265970,0.000000,0.000000,0.250000,0,0);}
.m4a_c00310{transform:matrix(0.285340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00310{transform:matrix(0.294180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294180,0.000000,0.000000,0.250000,0,0);}
.mdd_c00310{transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.361230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361230,0.000000,0.000000,0.250000,0,0);}
.ma5_c00310{transform:matrix(0.425070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425070,0.000000,0.000000,0.250000,0,0);}
.mb3_c00310{transform:matrix(0.440015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440015,0.000000,0.000000,0.250000,0,0);}
.mb2_c00310{transform:matrix(0.502605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502605,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:0.000000px;}
.fc0_c00310{color:transparent;}
.fs5_c00310{font-size:57.750000px;}
.fse_c00310{font-size:58.800000px;}
.fsb_c00310{font-size:59.850000px;}
.fs8_c00310{font-size:60.900000px;}
.fsa_c00310{font-size:61.950000px;}
.fs9_c00310{font-size:63.000000px;}
.fs7_c00310{font-size:64.050000px;}
.fs3_c00310{font-size:66.150000px;}
.fsd_c00310{font-size:67.200000px;}
.fs2_c00310{font-size:68.250000px;}
.fs4_c00310{font-size:69.300000px;}
.fsc_c00310{font-size:71.400000px;}
.fs1_c00310{font-size:73.500000px;}
.fs6_c00310{font-size:74.550000px;}
.fs11_c00310{font-size:75.600000px;}
.fsf_c00310{font-size:76.650000px;}
.fs10_c00310{font-size:81.900000px;}
.fs0_c00310{font-size:84.000000px;}
.y0_c00310{bottom:0.000000px;}
.y63_c00310{bottom:23.158500px;}
.y62_c00310{bottom:23.461500px;}
.y61_c00310{bottom:25.111500px;}
.y60_c00310{bottom:25.275000px;}
.y5f_c00310{bottom:25.569000px;}
.y5e_c00310{bottom:27.316500px;}
.y5d_c00310{bottom:27.543000px;}
.y5c_c00310{bottom:39.507000px;}
.y5b_c00310{bottom:57.204000px;}
.y5a_c00310{bottom:57.751500px;}
.y59_c00310{bottom:58.530000px;}
.y58_c00310{bottom:58.693500px;}
.y57_c00310{bottom:59.287500px;}
.y56_c00310{bottom:60.211500px;}
.y55_c00310{bottom:74.301000px;}
.y54_c00310{bottom:92.755500px;}
.y53_c00310{bottom:93.528000px;}
.y52_c00310{bottom:93.643500px;}
.y51_c00310{bottom:93.829500px;}
.y50_c00310{bottom:94.704000px;}
.y4f_c00310{bottom:94.965000px;}
.y4e_c00310{bottom:95.152500px;}
.y4d_c00310{bottom:95.851500px;}
.y4c_c00310{bottom:108.604500px;}
.y4b_c00310{bottom:125.746500px;}
.y4a_c00310{bottom:142.285500px;}
.y49_c00310{bottom:159.592500px;}
.y48_c00310{bottom:159.726000px;}
.y47_c00310{bottom:160.234500px;}
.y46_c00310{bottom:160.528500px;}
.y45_c00310{bottom:161.113500px;}
.y44_c00310{bottom:161.322000px;}
.y43_c00310{bottom:161.556000px;}
.y42_c00310{bottom:162.252000px;}
.y41_c00310{bottom:162.543000px;}
.y40_c00310{bottom:175.797000px;}
.y3f_c00310{bottom:192.192000px;}
.y3e_c00310{bottom:192.471000px;}
.y3d_c00310{bottom:193.065000px;}
.y3c_c00310{bottom:193.258500px;}
.y3b_c00310{bottom:194.289000px;}
.y3a_c00310{bottom:195.213000px;}
.y39_c00310{bottom:209.187000px;}
.y38_c00310{bottom:210.877500px;}
.y37_c00310{bottom:211.581000px;}
.y36_c00310{bottom:213.592500px;}
.y35_c00310{bottom:216.808500px;}
.y34_c00310{bottom:217.357500px;}
.y33_c00310{bottom:228.559500px;}
.y32_c00310{bottom:244.122000px;}
.y31_c00310{bottom:244.932000px;}
.y30_c00310{bottom:245.691000px;}
.y2f_c00310{bottom:245.959500px;}
.y2e_c00310{bottom:247.093500px;}
.y2d_c00310{bottom:247.593000px;}
.y2c_c00310{bottom:262.606500px;}
.y2b_c00310{bottom:280.326000px;}
.y2a_c00310{bottom:298.117500px;}
.y29_c00310{bottom:313.389000px;}
.y28_c00310{bottom:314.125500px;}
.y27_c00310{bottom:314.377500px;}
.y26_c00310{bottom:314.778000px;}
.y25_c00310{bottom:315.438000px;}
.y24_c00310{bottom:315.898500px;}
.y23_c00310{bottom:316.171500px;}
.y22_c00310{bottom:330.670500px;}
.y21_c00310{bottom:346.776000px;}
.y20_c00310{bottom:361.635000px;}
.y1f_c00310{bottom:361.920000px;}
.y1e_c00310{bottom:362.653500px;}
.y1d_c00310{bottom:363.340500px;}
.y1c_c00310{bottom:363.480000px;}
.y1b_c00310{bottom:364.053000px;}
.y1a_c00310{bottom:364.773000px;}
.y19_c00310{bottom:379.177500px;}
.y18_c00310{bottom:395.887500px;}
.y17_c00310{bottom:412.785000px;}
.y16_c00310{bottom:428.394000px;}
.y15_c00310{bottom:445.090500px;}
.y14_c00310{bottom:445.461000px;}
.y13_c00310{bottom:445.942500px;}
.y12_c00310{bottom:446.254500px;}
.y11_c00310{bottom:446.830500px;}
.y10_c00310{bottom:447.003000px;}
.yf_c00310{bottom:447.288000px;}
.ye_c00310{bottom:447.933000px;}
.yd_c00310{bottom:463.401000px;}
.yc_c00310{bottom:479.152500px;}
.yb_c00310{bottom:479.829000px;}
.ya_c00310{bottom:480.081000px;}
.y9_c00310{bottom:480.636000px;}
.y8_c00310{bottom:480.960000px;}
.y7_c00310{bottom:481.548000px;}
.y6_c00310{bottom:482.221500px;}
.y5_c00310{bottom:497.287500px;}
.y4_c00310{bottom:514.326000px;}
.y3_c00310{bottom:531.967500px;}
.y2_c00310{bottom:548.493000px;}
.y1_c00310{bottom:561.193500px;}
.h7_c00310{height:57.750000px;}
.h10_c00310{height:58.800000px;}
.hd_c00310{height:59.850000px;}
.ha_c00310{height:60.900000px;}
.hc_c00310{height:61.950000px;}
.hb_c00310{height:63.000000px;}
.h9_c00310{height:64.050000px;}
.h5_c00310{height:66.150000px;}
.hf_c00310{height:67.200000px;}
.h4_c00310{height:68.250000px;}
.h6_c00310{height:69.300000px;}
.he_c00310{height:71.400000px;}
.h3_c00310{height:73.500000px;}
.h8_c00310{height:74.550000px;}
.h13_c00310{height:75.600000px;}
.h11_c00310{height:76.650000px;}
.h12_c00310{height:81.900000px;}
.h2_c00310{height:84.000000px;}
.h1_c00310{height:618.750000px;}
.h0_c00310{height:619.050000px;}
.w0_c00310{width:359.100000px;}
.w1_c00310{width:359.250000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:23.220000px;}
.x4_c00310{left:25.110000px;}
.x6a_c00310{left:27.273000px;}
.x56_c00310{left:30.346500px;}
.x27_c00310{left:32.788500px;}
.x21_c00310{left:36.990000px;}
.x4f_c00310{left:41.853000px;}
.x41_c00310{left:42.931500px;}
.x74_c00310{left:44.347500px;}
.x62_c00310{left:45.363000px;}
.x2f_c00310{left:48.060000px;}
.x34_c00310{left:50.760000px;}
.x5_c00310{left:52.380000px;}
.x75_c00310{left:56.244000px;}
.xc_c00310{left:58.050000px;}
.x70_c00310{left:59.941500px;}
.x2c_c00310{left:63.180000px;}
.x6_c00310{left:66.690000px;}
.x16_c00310{left:68.580000px;}
.x5a_c00310{left:70.471500px;}
.x35_c00310{left:72.360000px;}
.x11_c00310{left:73.710000px;}
.x4a_c00310{left:79.923000px;}
.x53_c00310{left:81.543000px;}
.x22_c00310{left:83.970000px;}
.x17_c00310{left:85.590000px;}
.x7_c00310{left:88.020000px;}
.x48_c00310{left:90.046500px;}
.x12_c00310{left:91.530000px;}
.x42_c00310{left:94.501500px;}
.x4b_c00310{left:101.253000px;}
.x5b_c00310{left:102.331500px;}
.xd_c00310{left:103.410000px;}
.x30_c00310{left:105.300000px;}
.x60_c00310{left:108.963000px;}
.x65_c00310{left:114.900000px;}
.x28_c00310{left:117.318000px;}
.x3b_c00310{left:119.070000px;}
.x73_c00310{left:120.693000px;}
.x8_c00310{left:126.090000px;}
.x6b_c00310{left:128.253000px;}
.x4c_c00310{left:130.683000px;}
.x29_c00310{left:132.976500px;}
.x63_c00310{left:136.893000px;}
.x1c_c00310{left:138.102000px;}
.x23_c00310{left:142.830000px;}
.x36_c00310{left:144.180000px;}
.x57_c00310{left:146.982000px;}
.x76_c00310{left:148.239000px;}
.x2d_c00310{left:150.660000px;}
.x2_c00310{left:154.980000px;}
.x18_c00310{left:156.870000px;}
.x50_c00310{left:160.113000px;}
.x13_c00310{left:163.080000px;}
.x37_c00310{left:166.320000px;}
.x1d_c00310{left:167.569500px;}
.xe_c00310{left:169.290000px;}
.x77_c00310{left:172.300500px;}
.x45_c00310{left:174.151500px;}
.x19_c00310{left:175.770000px;}
.x3c_c00310{left:177.390000px;}
.x31_c00310{left:178.470000px;}
.x9_c00310{left:184.950000px;}
.x49_c00310{left:186.439500px;}
.x51_c00310{left:187.653000px;}
.x4d_c00310{left:189.543000px;}
.x6c_c00310{left:190.623000px;}
.x38_c00310{left:191.970000px;}
.x54_c00310{left:193.053000px;}
.x71_c00310{left:194.401500px;}
.x3d_c00310{left:197.370000px;}
.x2e_c00310{left:200.610000px;}
.x4e_c00310{left:201.693000px;}
.x66_c00310{left:208.329000px;}
.x24_c00310{left:210.330000px;}
.x14_c00310{left:214.110000px;}
.x5c_c00310{left:216.271500px;}
.x1e_c00310{left:218.011500px;}
.x58_c00310{left:220.374000px;}
.x55_c00310{left:223.293000px;}
.x6e_c00310{left:225.636000px;}
.x25_c00310{left:227.070000px;}
.x64_c00310{left:231.663000px;}
.x46_c00310{left:234.091500px;}
.x6f_c00310{left:236.140500px;}
.x3e_c00310{left:237.870000px;}
.x32_c00310{left:239.760000px;}
.x1f_c00310{left:240.964500px;}
.x39_c00310{left:246.780000px;}
.x5e_c00310{left:248.335500px;}
.x3_c00310{left:249.480000px;}
.xf_c00310{left:251.640000px;}
.x1a_c00310{left:252.990000px;}
.x2a_c00310{left:257.443500px;}
.x78_c00310{left:259.168500px;}
.x3f_c00310{left:262.351500px;}
.x47_c00310{left:266.761500px;}
.x6d_c00310{left:268.383000px;}
.x15_c00310{left:271.620000px;}
.xa_c00310{left:272.970000px;}
.x61_c00310{left:274.206000px;}
.x43_c00310{left:275.401500px;}
.x69_c00310{left:276.483000px;}
.x59_c00310{left:278.206500px;}
.x33_c00310{left:279.990000px;}
.x67_c00310{left:281.280000px;}
.x1b_c00310{left:284.040000px;}
.x40_c00310{left:286.044000px;}
.xb_c00310{left:288.360000px;}
.x26_c00310{left:289.440000px;}
.x2b_c00310{left:291.186000px;}
.x68_c00310{left:293.413500px;}
.x44_c00310{left:296.731500px;}
.x72_c00310{left:298.527000px;}
.x10_c00310{left:299.700000px;}
.x52_c00310{left:301.053000px;}
.x20_c00310{left:302.529000px;}
.x3a_c00310{left:304.020000px;}
.x5f_c00310{left:306.637500px;}
.x5d_c00310{left:313.201500px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.fs5_c00310{font-size:51.333333pt;}
.fse_c00310{font-size:52.266667pt;}
.fsb_c00310{font-size:53.200000pt;}
.fs8_c00310{font-size:54.133333pt;}
.fsa_c00310{font-size:55.066667pt;}
.fs9_c00310{font-size:56.000000pt;}
.fs7_c00310{font-size:56.933333pt;}
.fs3_c00310{font-size:58.800000pt;}
.fsd_c00310{font-size:59.733333pt;}
.fs2_c00310{font-size:60.666667pt;}
.fs4_c00310{font-size:61.600000pt;}
.fsc_c00310{font-size:63.466667pt;}
.fs1_c00310{font-size:65.333333pt;}
.fs6_c00310{font-size:66.266667pt;}
.fs11_c00310{font-size:67.200000pt;}
.fsf_c00310{font-size:68.133333pt;}
.fs10_c00310{font-size:72.800000pt;}
.fs0_c00310{font-size:74.666667pt;}
.y0_c00310{bottom:0.000000pt;}
.y63_c00310{bottom:20.585333pt;}
.y62_c00310{bottom:20.854667pt;}
.y61_c00310{bottom:22.321333pt;}
.y60_c00310{bottom:22.466667pt;}
.y5f_c00310{bottom:22.728000pt;}
.y5e_c00310{bottom:24.281333pt;}
.y5d_c00310{bottom:24.482667pt;}
.y5c_c00310{bottom:35.117333pt;}
.y5b_c00310{bottom:50.848000pt;}
.y5a_c00310{bottom:51.334667pt;}
.y59_c00310{bottom:52.026667pt;}
.y58_c00310{bottom:52.172000pt;}
.y57_c00310{bottom:52.700000pt;}
.y56_c00310{bottom:53.521333pt;}
.y55_c00310{bottom:66.045333pt;}
.y54_c00310{bottom:82.449333pt;}
.y53_c00310{bottom:83.136000pt;}
.y52_c00310{bottom:83.238667pt;}
.y51_c00310{bottom:83.404000pt;}
.y50_c00310{bottom:84.181333pt;}
.y4f_c00310{bottom:84.413333pt;}
.y4e_c00310{bottom:84.580000pt;}
.y4d_c00310{bottom:85.201333pt;}
.y4c_c00310{bottom:96.537333pt;}
.y4b_c00310{bottom:111.774667pt;}
.y4a_c00310{bottom:126.476000pt;}
.y49_c00310{bottom:141.860000pt;}
.y48_c00310{bottom:141.978667pt;}
.y47_c00310{bottom:142.430667pt;}
.y46_c00310{bottom:142.692000pt;}
.y45_c00310{bottom:143.212000pt;}
.y44_c00310{bottom:143.397333pt;}
.y43_c00310{bottom:143.605333pt;}
.y42_c00310{bottom:144.224000pt;}
.y41_c00310{bottom:144.482667pt;}
.y40_c00310{bottom:156.264000pt;}
.y3f_c00310{bottom:170.837333pt;}
.y3e_c00310{bottom:171.085333pt;}
.y3d_c00310{bottom:171.613333pt;}
.y3c_c00310{bottom:171.785333pt;}
.y3b_c00310{bottom:172.701333pt;}
.y3a_c00310{bottom:173.522667pt;}
.y39_c00310{bottom:185.944000pt;}
.y38_c00310{bottom:187.446667pt;}
.y37_c00310{bottom:188.072000pt;}
.y36_c00310{bottom:189.860000pt;}
.y35_c00310{bottom:192.718667pt;}
.y34_c00310{bottom:193.206667pt;}
.y33_c00310{bottom:203.164000pt;}
.y32_c00310{bottom:216.997333pt;}
.y31_c00310{bottom:217.717333pt;}
.y30_c00310{bottom:218.392000pt;}
.y2f_c00310{bottom:218.630667pt;}
.y2e_c00310{bottom:219.638667pt;}
.y2d_c00310{bottom:220.082667pt;}
.y2c_c00310{bottom:233.428000pt;}
.y2b_c00310{bottom:249.178667pt;}
.y2a_c00310{bottom:264.993333pt;}
.y29_c00310{bottom:278.568000pt;}
.y28_c00310{bottom:279.222667pt;}
.y27_c00310{bottom:279.446667pt;}
.y26_c00310{bottom:279.802667pt;}
.y25_c00310{bottom:280.389333pt;}
.y24_c00310{bottom:280.798667pt;}
.y23_c00310{bottom:281.041333pt;}
.y22_c00310{bottom:293.929333pt;}
.y21_c00310{bottom:308.245333pt;}
.y20_c00310{bottom:321.453333pt;}
.y1f_c00310{bottom:321.706667pt;}
.y1e_c00310{bottom:322.358667pt;}
.y1d_c00310{bottom:322.969333pt;}
.y1c_c00310{bottom:323.093333pt;}
.y1b_c00310{bottom:323.602667pt;}
.y1a_c00310{bottom:324.242667pt;}
.y19_c00310{bottom:337.046667pt;}
.y18_c00310{bottom:351.900000pt;}
.y17_c00310{bottom:366.920000pt;}
.y16_c00310{bottom:380.794667pt;}
.y15_c00310{bottom:395.636000pt;}
.y14_c00310{bottom:395.965333pt;}
.y13_c00310{bottom:396.393333pt;}
.y12_c00310{bottom:396.670667pt;}
.y11_c00310{bottom:397.182667pt;}
.y10_c00310{bottom:397.336000pt;}
.yf_c00310{bottom:397.589333pt;}
.ye_c00310{bottom:398.162667pt;}
.yd_c00310{bottom:411.912000pt;}
.yc_c00310{bottom:425.913333pt;}
.yb_c00310{bottom:426.514667pt;}
.ya_c00310{bottom:426.738667pt;}
.y9_c00310{bottom:427.232000pt;}
.y8_c00310{bottom:427.520000pt;}
.y7_c00310{bottom:428.042667pt;}
.y6_c00310{bottom:428.641333pt;}
.y5_c00310{bottom:442.033333pt;}
.y4_c00310{bottom:457.178667pt;}
.y3_c00310{bottom:472.860000pt;}
.y2_c00310{bottom:487.549333pt;}
.y1_c00310{bottom:498.838667pt;}
.h7_c00310{height:51.333333pt;}
.h10_c00310{height:52.266667pt;}
.hd_c00310{height:53.200000pt;}
.ha_c00310{height:54.133333pt;}
.hc_c00310{height:55.066667pt;}
.hb_c00310{height:56.000000pt;}
.h9_c00310{height:56.933333pt;}
.h5_c00310{height:58.800000pt;}
.hf_c00310{height:59.733333pt;}
.h4_c00310{height:60.666667pt;}
.h6_c00310{height:61.600000pt;}
.he_c00310{height:63.466667pt;}
.h3_c00310{height:65.333333pt;}
.h8_c00310{height:66.266667pt;}
.h13_c00310{height:67.200000pt;}
.h11_c00310{height:68.133333pt;}
.h12_c00310{height:72.800000pt;}
.h2_c00310{height:74.666667pt;}
.h1_c00310{height:550.000000pt;}
.h0_c00310{height:550.266667pt;}
.w0_c00310{width:319.200000pt;}
.w1_c00310{width:319.333333pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:20.640000pt;}
.x4_c00310{left:22.320000pt;}
.x6a_c00310{left:24.242667pt;}
.x56_c00310{left:26.974667pt;}
.x27_c00310{left:29.145333pt;}
.x21_c00310{left:32.880000pt;}
.x4f_c00310{left:37.202667pt;}
.x41_c00310{left:38.161333pt;}
.x74_c00310{left:39.420000pt;}
.x62_c00310{left:40.322667pt;}
.x2f_c00310{left:42.720000pt;}
.x34_c00310{left:45.120000pt;}
.x5_c00310{left:46.560000pt;}
.x75_c00310{left:49.994667pt;}
.xc_c00310{left:51.600000pt;}
.x70_c00310{left:53.281333pt;}
.x2c_c00310{left:56.160000pt;}
.x6_c00310{left:59.280000pt;}
.x16_c00310{left:60.960000pt;}
.x5a_c00310{left:62.641333pt;}
.x35_c00310{left:64.320000pt;}
.x11_c00310{left:65.520000pt;}
.x4a_c00310{left:71.042667pt;}
.x53_c00310{left:72.482667pt;}
.x22_c00310{left:74.640000pt;}
.x17_c00310{left:76.080000pt;}
.x7_c00310{left:78.240000pt;}
.x48_c00310{left:80.041333pt;}
.x12_c00310{left:81.360000pt;}
.x42_c00310{left:84.001333pt;}
.x4b_c00310{left:90.002667pt;}
.x5b_c00310{left:90.961333pt;}
.xd_c00310{left:91.920000pt;}
.x30_c00310{left:93.600000pt;}
.x60_c00310{left:96.856000pt;}
.x65_c00310{left:102.133333pt;}
.x28_c00310{left:104.282667pt;}
.x3b_c00310{left:105.840000pt;}
.x73_c00310{left:107.282667pt;}
.x8_c00310{left:112.080000pt;}
.x6b_c00310{left:114.002667pt;}
.x4c_c00310{left:116.162667pt;}
.x29_c00310{left:118.201333pt;}
.x63_c00310{left:121.682667pt;}
.x1c_c00310{left:122.757333pt;}
.x23_c00310{left:126.960000pt;}
.x36_c00310{left:128.160000pt;}
.x57_c00310{left:130.650667pt;}
.x76_c00310{left:131.768000pt;}
.x2d_c00310{left:133.920000pt;}
.x2_c00310{left:137.760000pt;}
.x18_c00310{left:139.440000pt;}
.x50_c00310{left:142.322667pt;}
.x13_c00310{left:144.960000pt;}
.x37_c00310{left:147.840000pt;}
.x1d_c00310{left:148.950667pt;}
.xe_c00310{left:150.480000pt;}
.x77_c00310{left:153.156000pt;}
.x45_c00310{left:154.801333pt;}
.x19_c00310{left:156.240000pt;}
.x3c_c00310{left:157.680000pt;}
.x31_c00310{left:158.640000pt;}
.x9_c00310{left:164.400000pt;}
.x49_c00310{left:165.724000pt;}
.x51_c00310{left:166.802667pt;}
.x4d_c00310{left:168.482667pt;}
.x6c_c00310{left:169.442667pt;}
.x38_c00310{left:170.640000pt;}
.x54_c00310{left:171.602667pt;}
.x71_c00310{left:172.801333pt;}
.x3d_c00310{left:175.440000pt;}
.x2e_c00310{left:178.320000pt;}
.x4e_c00310{left:179.282667pt;}
.x66_c00310{left:185.181333pt;}
.x24_c00310{left:186.960000pt;}
.x14_c00310{left:190.320000pt;}
.x5c_c00310{left:192.241333pt;}
.x1e_c00310{left:193.788000pt;}
.x58_c00310{left:195.888000pt;}
.x55_c00310{left:198.482667pt;}
.x6e_c00310{left:200.565333pt;}
.x25_c00310{left:201.840000pt;}
.x64_c00310{left:205.922667pt;}
.x46_c00310{left:208.081333pt;}
.x6f_c00310{left:209.902667pt;}
.x3e_c00310{left:211.440000pt;}
.x32_c00310{left:213.120000pt;}
.x1f_c00310{left:214.190667pt;}
.x39_c00310{left:219.360000pt;}
.x5e_c00310{left:220.742667pt;}
.x3_c00310{left:221.760000pt;}
.xf_c00310{left:223.680000pt;}
.x1a_c00310{left:224.880000pt;}
.x2a_c00310{left:228.838667pt;}
.x78_c00310{left:230.372000pt;}
.x3f_c00310{left:233.201333pt;}
.x47_c00310{left:237.121333pt;}
.x6d_c00310{left:238.562667pt;}
.x15_c00310{left:241.440000pt;}
.xa_c00310{left:242.640000pt;}
.x61_c00310{left:243.738667pt;}
.x43_c00310{left:244.801333pt;}
.x69_c00310{left:245.762667pt;}
.x59_c00310{left:247.294667pt;}
.x33_c00310{left:248.880000pt;}
.x67_c00310{left:250.026667pt;}
.x1b_c00310{left:252.480000pt;}
.x40_c00310{left:254.261333pt;}
.xb_c00310{left:256.320000pt;}
.x26_c00310{left:257.280000pt;}
.x2b_c00310{left:258.832000pt;}
.x68_c00310{left:260.812000pt;}
.x44_c00310{left:263.761333pt;}
.x72_c00310{left:265.357333pt;}
.x10_c00310{left:266.400000pt;}
.x52_c00310{left:267.602667pt;}
.x20_c00310{left:268.914667pt;}
.x3a_c00310{left:270.240000pt;}
.x5f_c00310{left:272.566667pt;}
.x5d_c00310{left:278.401333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00311 {
    display:none;
  }
  .loading-indicator_c00311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00311 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00311 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00311" -> "#page-container .classname_c00311")
 */
.pf_c00311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00311 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00311 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00311 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00311 {overflow:visible;}
  }
}
.c_c00311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00311 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00311:after { /* webkit #35443 */
  content: '';
}
.t_c00311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00311 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00311 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00311 { /* info for Javascript */
  display:none;
}
.l_c00311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00311:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00311 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00311.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6a_c00311{transform:matrix(0.017044,-0.000222,0.003250,0.249979,0,0);-ms-transform:matrix(0.017044,-0.000222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.017044,-0.000222,0.003250,0.249979,0,0);}
.m8_c00311{transform:matrix(0.042706,-0.000555,0.003250,0.249979,0,0);-ms-transform:matrix(0.042706,-0.000555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.042706,-0.000555,0.003250,0.249979,0,0);}
.m91_c00311{transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);}
.mc0_c00311{transform:matrix(0.102730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.104241,-0.001355,0.003250,0.249979,0,0);-ms-transform:matrix(0.104241,-0.001355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.104241,-0.001355,0.003250,0.249979,0,0);}
.mde_c00311{transform:matrix(0.115420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115420,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.135909,-0.001767,0.003250,0.249979,0,0);-ms-transform:matrix(0.135909,-0.001767,0.003250,0.249979,0,0);-webkit-transform:matrix(0.135909,-0.001767,0.003250,0.249979,0,0);}
.m48_c00311{transform:matrix(0.137293,-0.001785,0.003250,0.249979,0,0);-ms-transform:matrix(0.137293,-0.001785,0.003250,0.249979,0,0);-webkit-transform:matrix(0.137293,-0.001785,0.003250,0.249979,0,0);}
.me7_c00311{transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);}
.me6_c00311{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00311{transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);}
.mbf_c00311{transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);}
.m5d_c00311{transform:matrix(0.145593,-0.001893,0.003250,0.249979,0,0);-ms-transform:matrix(0.145593,-0.001893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145593,-0.001893,0.003250,0.249979,0,0);}
.mb1_c00311{transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147090,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{transform:matrix(0.148942,-0.001936,0.003250,0.249979,0,0);-ms-transform:matrix(0.148942,-0.001936,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148942,-0.001936,0.003250,0.249979,0,0);}
.m54_c00311{transform:matrix(0.149182,-0.001939,0.003250,0.249979,0,0);-ms-transform:matrix(0.149182,-0.001939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149182,-0.001939,0.003250,0.249979,0,0);}
.ma_c00311{transform:matrix(0.150962,-0.001963,0.003250,0.249979,0,0);-ms-transform:matrix(0.150962,-0.001963,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150962,-0.001963,0.003250,0.249979,0,0);}
.m95_c00311{transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);}
.meb_c00311{transform:matrix(0.151755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151755,0.000000,0.000000,0.250000,0,0);}
.md5_c00311{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{transform:matrix(0.153472,-0.001995,0.003250,0.249979,0,0);-ms-transform:matrix(0.153472,-0.001995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153472,-0.001995,0.003250,0.249979,0,0);}
.mc9_c00311{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.154277,-0.002006,0.003250,0.249979,0,0);-ms-transform:matrix(0.154277,-0.002006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154277,-0.002006,0.003250,0.249979,0,0);}
.m5a_c00311{transform:matrix(0.154922,-0.002014,0.003250,0.249979,0,0);-ms-transform:matrix(0.154922,-0.002014,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154922,-0.002014,0.003250,0.249979,0,0);}
.mb6_c00311{transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154955,0.000000,0.000000,0.250000,0,0);}
.mac_c00311{transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.155602,-0.002023,0.003250,0.249979,0,0);-ms-transform:matrix(0.155602,-0.002023,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155602,-0.002023,0.003250,0.249979,0,0);}
.m2d_c00311{transform:matrix(0.155837,-0.002026,0.003250,0.249979,0,0);-ms-transform:matrix(0.155837,-0.002026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155837,-0.002026,0.003250,0.249979,0,0);}
.m9e_c00311{transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);}
.mcc_c00311{transform:matrix(0.156555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156555,0.000000,0.000000,0.250000,0,0);}
.m9d_c00311{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.mec_c00311{transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.158082,-0.002055,0.003250,0.249979,0,0);-ms-transform:matrix(0.158082,-0.002055,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158082,-0.002055,0.003250,0.249979,0,0);}
.m94_c00311{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.ma0_c00311{transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158245,0.000000,0.000000,0.250000,0,0);}
.ma5_c00311{transform:matrix(0.159010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159010,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);}
.m62_c00311{transform:matrix(0.159442,-0.002073,0.003250,0.249979,0,0);-ms-transform:matrix(0.159442,-0.002073,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159442,-0.002073,0.003250,0.249979,0,0);}
.mea_c00311{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.me9_c00311{transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159910,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.160060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160060,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.160996,-0.002093,0.003250,0.249979,0,0);-ms-transform:matrix(0.160996,-0.002093,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160996,-0.002093,0.003250,0.249979,0,0);}
.m38_c00311{transform:matrix(0.161751,-0.002103,0.003250,0.249979,0,0);-ms-transform:matrix(0.161751,-0.002103,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161751,-0.002103,0.003250,0.249979,0,0);}
.m84_c00311{transform:matrix(0.162146,-0.002108,0.003250,0.249979,0,0);-ms-transform:matrix(0.162146,-0.002108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162146,-0.002108,0.003250,0.249979,0,0);}
.m14_c00311{transform:matrix(0.162151,-0.002108,0.003250,0.249979,0,0);-ms-transform:matrix(0.162151,-0.002108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162151,-0.002108,0.003250,0.249979,0,0);}
.ma6_c00311{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.162321,-0.002110,0.003250,0.249979,0,0);-ms-transform:matrix(0.162321,-0.002110,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162321,-0.002110,0.003250,0.249979,0,0);}
.m98_c00311{transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);}
.m5b_c00311{transform:matrix(0.162341,-0.002110,0.003250,0.249979,0,0);-ms-transform:matrix(0.162341,-0.002110,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162341,-0.002110,0.003250,0.249979,0,0);}
.mce_c00311{transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162635,0.000000,0.000000,0.250000,0,0);}
.m7c_c00311{transform:matrix(0.162706,-0.002115,0.003250,0.249979,0,0);-ms-transform:matrix(0.162706,-0.002115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162706,-0.002115,0.003250,0.249979,0,0);}
.mb_c00311{transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);-ms-transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);}
.m1c_c00311{transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);-ms-transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163286,-0.002123,0.003250,0.249979,0,0);}
.mc3_c00311{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{transform:matrix(0.164661,-0.002141,0.003250,0.249979,0,0);-ms-transform:matrix(0.164661,-0.002141,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164661,-0.002141,0.003250,0.249979,0,0);}
.ma1_c00311{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.165121,-0.002147,0.003250,0.249979,0,0);-ms-transform:matrix(0.165121,-0.002147,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165121,-0.002147,0.003250,0.249979,0,0);}
.md_c00311{transform:matrix(0.165741,-0.002155,0.003250,0.249979,0,0);-ms-transform:matrix(0.165741,-0.002155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165741,-0.002155,0.003250,0.249979,0,0);}
.mf_c00311{transform:matrix(0.166241,-0.002161,0.003250,0.249979,0,0);-ms-transform:matrix(0.166241,-0.002161,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166241,-0.002161,0.003250,0.249979,0,0);}
.m9c_c00311{transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166535,0.000000,0.000000,0.250000,0,0);}
.maa_c00311{transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);}
.m82_c00311{transform:matrix(0.167116,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167116,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167116,-0.002173,0.003250,0.249979,0,0);}
.med_c00311{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mbe_c00311{transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167835,0.000000,0.000000,0.250000,0,0);}
.mcd_c00311{transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{transform:matrix(0.167991,-0.002184,0.003250,0.249979,0,0);-ms-transform:matrix(0.167991,-0.002184,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167991,-0.002184,0.003250,0.249979,0,0);}
.m5c_c00311{transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);-ms-transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);}
.mbd_c00311{transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.168641,-0.002192,0.003250,0.249979,0,0);-ms-transform:matrix(0.168641,-0.002192,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168641,-0.002192,0.003250,0.249979,0,0);}
.m13_c00311{transform:matrix(0.169371,-0.002202,0.003250,0.249979,0,0);-ms-transform:matrix(0.169371,-0.002202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169371,-0.002202,0.003250,0.249979,0,0);}
.mad_c00311{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m9b_c00311{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.170691,-0.002219,0.003250,0.249979,0,0);-ms-transform:matrix(0.170691,-0.002219,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170691,-0.002219,0.003250,0.249979,0,0);}
.mb2_c00311{transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);}
.mbc_c00311{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.171880,-0.002234,0.003250,0.249979,0,0);-ms-transform:matrix(0.171880,-0.002234,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171880,-0.002234,0.003250,0.249979,0,0);}
.m8d_c00311{transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);}
.m6d_c00311{transform:matrix(0.172585,-0.002244,0.003250,0.249979,0,0);-ms-transform:matrix(0.172585,-0.002244,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172585,-0.002244,0.003250,0.249979,0,0);}
.me8_c00311{transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);}
.mb9_c00311{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.me4_c00311{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.173440,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173440,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173440,-0.002255,0.003250,0.249979,0,0);}
.m88_c00311{transform:matrix(0.173445,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173445,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173445,-0.002255,0.003250,0.249979,0,0);}
.m21_c00311{transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);}
.mdf_c00311{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m6f_c00311{transform:matrix(0.174060,-0.002263,0.003250,0.249979,0,0);-ms-transform:matrix(0.174060,-0.002263,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174060,-0.002263,0.003250,0.249979,0,0);}
.m72_c00311{transform:matrix(0.174155,-0.002264,0.003250,0.249979,0,0);-ms-transform:matrix(0.174155,-0.002264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174155,-0.002264,0.003250,0.249979,0,0);}
.mab_c00311{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.174350,-0.002267,0.003250,0.249979,0,0);-ms-transform:matrix(0.174350,-0.002267,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174350,-0.002267,0.003250,0.249979,0,0);}
.m24_c00311{transform:matrix(0.175025,-0.002275,0.003250,0.249979,0,0);-ms-transform:matrix(0.175025,-0.002275,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175025,-0.002275,0.003250,0.249979,0,0);}
.m7d_c00311{transform:matrix(0.175585,-0.002283,0.003250,0.249979,0,0);-ms-transform:matrix(0.175585,-0.002283,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175585,-0.002283,0.003250,0.249979,0,0);}
.md0_c00311{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00311{transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);}
.m9f_c00311{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.ma3_c00311{transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);}
.ma2_c00311{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.mc6_c00311{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m86_c00311{transform:matrix(0.177955,-0.002313,0.003250,0.249979,0,0);-ms-transform:matrix(0.177955,-0.002313,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177955,-0.002313,0.003250,0.249979,0,0);}
.m66_c00311{transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);-ms-transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178235,-0.002317,0.003250,0.249979,0,0);}
.mb3_c00311{transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178315,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.178605,-0.002322,0.003250,0.249979,0,0);-ms-transform:matrix(0.178605,-0.002322,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178605,-0.002322,0.003250,0.249979,0,0);}
.m7e_c00311{transform:matrix(0.178885,-0.002326,0.003250,0.249979,0,0);-ms-transform:matrix(0.178885,-0.002326,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178885,-0.002326,0.003250,0.249979,0,0);}
.md1_c00311{transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179280,0.000000,0.000000,0.250000,0,0);}
.mbb_c00311{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.mb4_c00311{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.md7_c00311{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m8e_c00311{transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180305,0.000000,0.000000,0.250000,0,0);}
.mb5_c00311{transform:matrix(0.181015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181015,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.181155,-0.002355,0.003250,0.249979,0,0);-ms-transform:matrix(0.181155,-0.002355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181155,-0.002355,0.003250,0.249979,0,0);}
.m17_c00311{transform:matrix(0.181795,-0.002363,0.003250,0.249979,0,0);-ms-transform:matrix(0.181795,-0.002363,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181795,-0.002363,0.003250,0.249979,0,0);}
.md4_c00311{transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);}
.mc7_c00311{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.183250,-0.002382,0.003250,0.249979,0,0);-ms-transform:matrix(0.183250,-0.002382,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183250,-0.002382,0.003250,0.249979,0,0);}
.m87_c00311{transform:matrix(0.184474,-0.002398,0.003250,0.249979,0,0);-ms-transform:matrix(0.184474,-0.002398,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184474,-0.002398,0.003250,0.249979,0,0);}
.m99_c00311{transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184670,0.000000,0.000000,0.250000,0,0);}
.m65_c00311{transform:matrix(0.184819,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184819,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184819,-0.002403,0.003250,0.249979,0,0);}
.m97_c00311{transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);}
.m93_c00311{transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);}
.m89_c00311{transform:matrix(0.185754,-0.002415,0.003250,0.249979,0,0);-ms-transform:matrix(0.185754,-0.002415,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185754,-0.002415,0.003250,0.249979,0,0);}
.m15_c00311{transform:matrix(0.185859,-0.002416,0.003250,0.249979,0,0);-ms-transform:matrix(0.185859,-0.002416,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185859,-0.002416,0.003250,0.249979,0,0);}
.m3a_c00311{transform:matrix(0.185969,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.185969,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185969,-0.002418,0.003250,0.249979,0,0);}
.m59_c00311{transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186284,-0.002422,0.003250,0.249979,0,0);}
.mae_c00311{transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);}
.m80_c00311{transform:matrix(0.187089,-0.002432,0.003250,0.249979,0,0);-ms-transform:matrix(0.187089,-0.002432,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187089,-0.002432,0.003250,0.249979,0,0);}
.mc_c00311{transform:matrix(0.187099,-0.002432,0.003250,0.249979,0,0);-ms-transform:matrix(0.187099,-0.002432,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187099,-0.002432,0.003250,0.249979,0,0);}
.me2_c00311{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.187754,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187754,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187754,-0.002441,0.003250,0.249979,0,0);}
.m78_c00311{transform:matrix(0.187799,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187799,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187799,-0.002441,0.003250,0.249979,0,0);}
.m51_c00311{transform:matrix(0.188929,-0.002456,0.003250,0.249979,0,0);-ms-transform:matrix(0.188929,-0.002456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188929,-0.002456,0.003250,0.249979,0,0);}
.m9a_c00311{transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);}
.mb7_c00311{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.mc1_c00311{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.mba_c00311{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.190019,-0.002470,0.003250,0.249979,0,0);-ms-transform:matrix(0.190019,-0.002470,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190019,-0.002470,0.003250,0.249979,0,0);}
.md2_c00311{transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);}
.me1_c00311{transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.190379,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190379,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190379,-0.002475,0.003250,0.249979,0,0);}
.m29_c00311{transform:matrix(0.191189,-0.002485,0.003250,0.249979,0,0);-ms-transform:matrix(0.191189,-0.002485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191189,-0.002485,0.003250,0.249979,0,0);}
.md3_c00311{transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192320,0.000000,0.000000,0.250000,0,0);}
.m6e_c00311{transform:matrix(0.192379,-0.002501,0.003250,0.249979,0,0);-ms-transform:matrix(0.192379,-0.002501,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192379,-0.002501,0.003250,0.249979,0,0);}
.m90_c00311{transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00311{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.mdc_c00311{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.194094,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194094,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194094,-0.002523,0.003250,0.249979,0,0);}
.m68_c00311{transform:matrix(0.194454,-0.002528,0.003250,0.249979,0,0);-ms-transform:matrix(0.194454,-0.002528,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194454,-0.002528,0.003250,0.249979,0,0);}
.m8a_c00311{transform:matrix(0.194464,-0.002528,0.003250,0.249979,0,0);-ms-transform:matrix(0.194464,-0.002528,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194464,-0.002528,0.003250,0.249979,0,0);}
.me3_c00311{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.195383,-0.002540,0.003250,0.249979,0,0);-ms-transform:matrix(0.195383,-0.002540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195383,-0.002540,0.003250,0.249979,0,0);}
.m47_c00311{transform:matrix(0.195468,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195468,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195468,-0.002541,0.003250,0.249979,0,0);}
.m46_c00311{transform:matrix(0.195548,-0.002542,0.003250,0.249979,0,0);-ms-transform:matrix(0.195548,-0.002542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195548,-0.002542,0.003250,0.249979,0,0);}
.m43_c00311{transform:matrix(0.195833,-0.002546,0.003250,0.249979,0,0);-ms-transform:matrix(0.195833,-0.002546,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195833,-0.002546,0.003250,0.249979,0,0);}
.m75_c00311{transform:matrix(0.196963,-0.002561,0.003250,0.249979,0,0);-ms-transform:matrix(0.196963,-0.002561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196963,-0.002561,0.003250,0.249979,0,0);}
.me5_c00311{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m56_c00311{transform:matrix(0.197548,-0.002568,0.003250,0.249979,0,0);-ms-transform:matrix(0.197548,-0.002568,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197548,-0.002568,0.003250,0.249979,0,0);}
.m1_c00311{transform:matrix(0.198268,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198268,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198268,-0.002577,0.003250,0.249979,0,0);}
.mc5_c00311{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m96_c00311{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);}
.m58_c00311{transform:matrix(0.199128,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199128,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199128,-0.002589,0.003250,0.249979,0,0);}
.m3e_c00311{transform:matrix(0.199143,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199143,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199143,-0.002589,0.003250,0.249979,0,0);}
.m81_c00311{transform:matrix(0.199408,-0.002592,0.003250,0.249979,0,0);-ms-transform:matrix(0.199408,-0.002592,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199408,-0.002592,0.003250,0.249979,0,0);}
.m73_c00311{transform:matrix(0.199448,-0.002593,0.003250,0.249979,0,0);-ms-transform:matrix(0.199448,-0.002593,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199448,-0.002593,0.003250,0.249979,0,0);}
.m3b_c00311{transform:matrix(0.199558,-0.002594,0.003250,0.249979,0,0);-ms-transform:matrix(0.199558,-0.002594,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199558,-0.002594,0.003250,0.249979,0,0);}
.md6_c00311{transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200005,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.200578,-0.002608,0.003250,0.249979,0,0);-ms-transform:matrix(0.200578,-0.002608,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200578,-0.002608,0.003250,0.249979,0,0);}
.m57_c00311{transform:matrix(0.200663,-0.002609,0.003250,0.249979,0,0);-ms-transform:matrix(0.200663,-0.002609,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200663,-0.002609,0.003250,0.249979,0,0);}
.md8_c00311{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m7b_c00311{transform:matrix(0.200803,-0.002610,0.003250,0.249979,0,0);-ms-transform:matrix(0.200803,-0.002610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200803,-0.002610,0.003250,0.249979,0,0);}
.ma7_c00311{transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201060,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.201488,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201488,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201488,-0.002619,0.003250,0.249979,0,0);}
.m2_c00311{transform:matrix(0.201578,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201578,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201578,-0.002621,0.003250,0.249979,0,0);}
.m76_c00311{transform:matrix(0.201648,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201648,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201648,-0.002621,0.003250,0.249979,0,0);}
.m8c_c00311{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m8b_c00311{transform:matrix(0.202678,-0.002635,0.003250,0.249979,0,0);-ms-transform:matrix(0.202678,-0.002635,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202678,-0.002635,0.003250,0.249979,0,0);}
.m6b_c00311{transform:matrix(0.203388,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203388,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203388,-0.002644,0.003250,0.249979,0,0);}
.ma4_c00311{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.203418,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203418,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203418,-0.002644,0.003250,0.249979,0,0);}
.mc8_c00311{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.203883,-0.002650,0.003250,0.249979,0,0);-ms-transform:matrix(0.203883,-0.002650,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203883,-0.002650,0.003250,0.249979,0,0);}
.m32_c00311{transform:matrix(0.203973,-0.002652,0.003250,0.249979,0,0);-ms-transform:matrix(0.203973,-0.002652,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203973,-0.002652,0.003250,0.249979,0,0);}
.m55_c00311{transform:matrix(0.203988,-0.002652,0.003250,0.249979,0,0);-ms-transform:matrix(0.203988,-0.002652,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203988,-0.002652,0.003250,0.249979,0,0);}
.m1f_c00311{transform:matrix(0.204628,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204628,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204628,-0.002660,0.003250,0.249979,0,0);}
.m7f_c00311{transform:matrix(0.205038,-0.002665,0.003250,0.249979,0,0);-ms-transform:matrix(0.205038,-0.002665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205038,-0.002665,0.003250,0.249979,0,0);}
.m37_c00311{transform:matrix(0.205233,-0.002668,0.003250,0.249979,0,0);-ms-transform:matrix(0.205233,-0.002668,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205233,-0.002668,0.003250,0.249979,0,0);}
.m5e_c00311{transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205808,-0.002675,0.003250,0.249979,0,0);}
.m5_c00311{transform:matrix(0.205868,-0.002676,0.003250,0.249979,0,0);-ms-transform:matrix(0.205868,-0.002676,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205868,-0.002676,0.003250,0.249979,0,0);}
.m85_c00311{transform:matrix(0.205953,-0.002677,0.003250,0.249979,0,0);-ms-transform:matrix(0.205953,-0.002677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205953,-0.002677,0.003250,0.249979,0,0);}
.m70_c00311{transform:matrix(0.206458,-0.002684,0.003250,0.249979,0,0);-ms-transform:matrix(0.206458,-0.002684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206458,-0.002684,0.003250,0.249979,0,0);}
.m4e_c00311{transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);-ms-transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);}
.mdb_c00311{transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.207642,-0.002699,0.003250,0.249979,0,0);-ms-transform:matrix(0.207642,-0.002699,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207642,-0.002699,0.003250,0.249979,0,0);}
.md9_c00311{transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);}
.maf_c00311{transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);}
.me0_c00311{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m79_c00311{transform:matrix(0.209192,-0.002720,0.003250,0.249979,0,0);-ms-transform:matrix(0.209192,-0.002720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209192,-0.002720,0.003250,0.249979,0,0);}
.mda_c00311{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mc4_c00311{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);-ms-transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);}
.mb8_c00311{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);-ms-transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212687,-0.002765,0.003250,0.249979,0,0);}
.m3c_c00311{transform:matrix(0.213027,-0.002769,0.003250,0.249979,0,0);-ms-transform:matrix(0.213027,-0.002769,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213027,-0.002769,0.003250,0.249979,0,0);}
.m20_c00311{transform:matrix(0.214947,-0.002794,0.003250,0.249979,0,0);-ms-transform:matrix(0.214947,-0.002794,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214947,-0.002794,0.003250,0.249979,0,0);}
.mc2_c00311{transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);-ms-transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218132,-0.002836,0.003250,0.249979,0,0);}
.mca_c00311{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);-ms-transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220271,-0.002864,0.003250,0.249979,0,0);}
.m40_c00311{transform:matrix(0.220766,-0.002870,0.003250,0.249979,0,0);-ms-transform:matrix(0.220766,-0.002870,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220766,-0.002870,0.003250,0.249979,0,0);}
.m25_c00311{transform:matrix(0.220846,-0.002871,0.003250,0.249979,0,0);-ms-transform:matrix(0.220846,-0.002871,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220846,-0.002871,0.003250,0.249979,0,0);}
.m12_c00311{transform:matrix(0.220996,-0.002873,0.003250,0.249979,0,0);-ms-transform:matrix(0.220996,-0.002873,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220996,-0.002873,0.003250,0.249979,0,0);}
.m4b_c00311{transform:matrix(0.222621,-0.002894,0.003250,0.249979,0,0);-ms-transform:matrix(0.222621,-0.002894,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222621,-0.002894,0.003250,0.249979,0,0);}
.m83_c00311{transform:matrix(0.223351,-0.002904,0.003250,0.249979,0,0);-ms-transform:matrix(0.223351,-0.002904,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223351,-0.002904,0.003250,0.249979,0,0);}
.m5f_c00311{transform:matrix(0.224451,-0.002918,0.003250,0.249979,0,0);-ms-transform:matrix(0.224451,-0.002918,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224451,-0.002918,0.003250,0.249979,0,0);}
.m64_c00311{transform:matrix(0.225621,-0.002933,0.003250,0.249979,0,0);-ms-transform:matrix(0.225621,-0.002933,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225621,-0.002933,0.003250,0.249979,0,0);}
.m16_c00311{transform:matrix(0.227051,-0.002952,0.003250,0.249979,0,0);-ms-transform:matrix(0.227051,-0.002952,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227051,-0.002952,0.003250,0.249979,0,0);}
.m4c_c00311{transform:matrix(0.228671,-0.002973,0.003250,0.249979,0,0);-ms-transform:matrix(0.228671,-0.002973,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228671,-0.002973,0.003250,0.249979,0,0);}
.m3f_c00311{transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);-ms-transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);}
.m74_c00311{transform:matrix(0.231595,-0.003011,0.003250,0.249979,0,0);-ms-transform:matrix(0.231595,-0.003011,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231595,-0.003011,0.003250,0.249979,0,0);}
.m9_c00311{transform:matrix(0.232695,-0.003025,0.003250,0.249979,0,0);-ms-transform:matrix(0.232695,-0.003025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232695,-0.003025,0.003250,0.249979,0,0);}
.m4a_c00311{transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);-ms-transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);}
.m7_c00311{transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);-ms-transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);}
.m44_c00311{transform:matrix(0.235265,-0.003058,0.003250,0.249979,0,0);-ms-transform:matrix(0.235265,-0.003058,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235265,-0.003058,0.003250,0.249979,0,0);}
.m1e_c00311{transform:matrix(0.236140,-0.003070,0.003250,0.249979,0,0);-ms-transform:matrix(0.236140,-0.003070,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236140,-0.003070,0.003250,0.249979,0,0);}
.m4d_c00311{transform:matrix(0.237180,-0.003083,0.003250,0.249979,0,0);-ms-transform:matrix(0.237180,-0.003083,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237180,-0.003083,0.003250,0.249979,0,0);}
.m2b_c00311{transform:matrix(0.244694,-0.003181,0.003250,0.249979,0,0);-ms-transform:matrix(0.244694,-0.003181,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244694,-0.003181,0.003250,0.249979,0,0);}
.m63_c00311{transform:matrix(0.245454,-0.003191,0.003250,0.249979,0,0);-ms-transform:matrix(0.245454,-0.003191,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245454,-0.003191,0.003250,0.249979,0,0);}
.m77_c00311{transform:matrix(0.247699,-0.003220,0.003250,0.249979,0,0);-ms-transform:matrix(0.247699,-0.003220,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247699,-0.003220,0.003250,0.249979,0,0);}
.m4_c00311{transform:matrix(0.255848,-0.003326,0.003250,0.249979,0,0);-ms-transform:matrix(0.255848,-0.003326,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255848,-0.003326,0.003250,0.249979,0,0);}
.m1a_c00311{transform:matrix(0.263013,-0.003419,0.003250,0.249979,0,0);-ms-transform:matrix(0.263013,-0.003419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263013,-0.003419,0.003250,0.249979,0,0);}
.m3_c00311{transform:matrix(0.266797,-0.003468,0.003250,0.249979,0,0);-ms-transform:matrix(0.266797,-0.003468,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266797,-0.003468,0.003250,0.249979,0,0);}
.mdd_c00311{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.272457,-0.003542,0.003250,0.249979,0,0);-ms-transform:matrix(0.272457,-0.003542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272457,-0.003542,0.003250,0.249979,0,0);}
.m2c_c00311{transform:matrix(0.276342,-0.003592,0.003250,0.249979,0,0);-ms-transform:matrix(0.276342,-0.003592,0.003250,0.249979,0,0);-webkit-transform:matrix(0.276342,-0.003592,0.003250,0.249979,0,0);}
.mb0_c00311{transform:matrix(0.308235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308235,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.319998,-0.004160,0.003250,0.249979,0,0);-ms-transform:matrix(0.319998,-0.004160,0.003250,0.249979,0,0);-webkit-transform:matrix(0.319998,-0.004160,0.003250,0.249979,0,0);}
.m26_c00311{transform:matrix(0.322328,-0.004190,0.003250,0.249979,0,0);-ms-transform:matrix(0.322328,-0.004190,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322328,-0.004190,0.003250,0.249979,0,0);}
.m92_c00311{transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.501723,-0.006522,0.003250,0.249979,0,0);-ms-transform:matrix(0.501723,-0.006522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.501723,-0.006522,0.003250,0.249979,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:0.000000px;}
.fc0_c00311{color:transparent;}
.fs5_c00311{font-size:59.855057px;}
.fs10_c00311{font-size:60.900000px;}
.fs6_c00311{font-size:60.905146px;}
.fs8_c00311{font-size:63.005323px;}
.fsa_c00311{font-size:64.050000px;}
.fs9_c00311{font-size:64.055412px;}
.fs3_c00311{font-size:65.105501px;}
.fs11_c00311{font-size:66.150000px;}
.fs7_c00311{font-size:66.155589px;}
.fsb_c00311{font-size:67.200000px;}
.fs1_c00311{font-size:67.205678px;}
.fs0_c00311{font-size:68.250000px;}
.fs4_c00311{font-size:68.255767px;}
.fse_c00311{font-size:69.300000px;}
.fs2_c00311{font-size:69.305856px;}
.fsc_c00311{font-size:70.350000px;}
.fsf_c00311{font-size:71.400000px;}
.fsd_c00311{font-size:72.450000px;}
.fs12_c00311{font-size:76.650000px;}
.y0_c00311{bottom:0.000000px;}
.yd0_c00311{bottom:19.171500px;}
.yd1_c00311{bottom:19.639500px;}
.yd2_c00311{bottom:20.640000px;}
.yd3_c00311{bottom:20.995500px;}
.yd4_c00311{bottom:21.837000px;}
.yd5_c00311{bottom:22.275000px;}
.yd6_c00311{bottom:23.485500px;}
.yc8_c00311{bottom:38.071500px;}
.yc9_c00311{bottom:38.659500px;}
.yca_c00311{bottom:39.027000px;}
.ycb_c00311{bottom:39.825000px;}
.ycc_c00311{bottom:40.822500px;}
.ycd_c00311{bottom:41.202000px;}
.yce_c00311{bottom:41.539500px;}
.ycf_c00311{bottom:42.711000px;}
.yc2_c00311{bottom:54.006000px;}
.yc3_c00311{bottom:55.413000px;}
.yc4_c00311{bottom:55.906500px;}
.yc5_c00311{bottom:57.592500px;}
.yc6_c00311{bottom:58.851000px;}
.yc7_c00311{bottom:60.414000px;}
.yba_c00311{bottom:71.283000px;}
.ybb_c00311{bottom:71.791500px;}
.ybc_c00311{bottom:72.222000px;}
.ybd_c00311{bottom:73.044000px;}
.ybe_c00311{bottom:73.663500px;}
.ybf_c00311{bottom:73.902000px;}
.yc0_c00311{bottom:74.667000px;}
.yc1_c00311{bottom:74.959500px;}
.yb1_c00311{bottom:88.561500px;}
.yb2_c00311{bottom:89.202000px;}
.yb3_c00311{bottom:89.458500px;}
.yb4_c00311{bottom:89.665500px;}
.yb5_c00311{bottom:90.165000px;}
.yb6_c00311{bottom:90.424500px;}
.yb7_c00311{bottom:90.927000px;}
.yb8_c00311{bottom:91.468500px;}
.yb9_c00311{bottom:91.744500px;}
.yaa_c00311{bottom:105.573000px;}
.yab_c00311{bottom:106.266000px;}
.yac_c00311{bottom:106.438500px;}
.yad_c00311{bottom:106.651500px;}
.yae_c00311{bottom:107.227500px;}
.yaf_c00311{bottom:107.839500px;}
.yb0_c00311{bottom:108.271500px;}
.ya2_c00311{bottom:122.314500px;}
.ya3_c00311{bottom:122.599500px;}
.ya4_c00311{bottom:123.238500px;}
.ya5_c00311{bottom:123.504000px;}
.ya6_c00311{bottom:124.090500px;}
.ya7_c00311{bottom:125.005500px;}
.ya8_c00311{bottom:125.623500px;}
.ya9_c00311{bottom:126.009000px;}
.y9c_c00311{bottom:139.863000px;}
.y9d_c00311{bottom:140.323500px;}
.y9e_c00311{bottom:140.632500px;}
.y9f_c00311{bottom:141.390000px;}
.ya0_c00311{bottom:141.595500px;}
.ya1_c00311{bottom:142.392000px;}
.y92_c00311{bottom:157.141500px;}
.y93_c00311{bottom:157.428000px;}
.y94_c00311{bottom:157.839000px;}
.y95_c00311{bottom:158.283000px;}
.y96_c00311{bottom:158.487000px;}
.y97_c00311{bottom:159.190500px;}
.y98_c00311{bottom:159.427500px;}
.y99_c00311{bottom:159.894000px;}
.y9a_c00311{bottom:160.026000px;}
.y9b_c00311{bottom:160.218000px;}
.y91_c00311{bottom:176.364000px;}
.y90_c00311{bottom:193.893000px;}
.y8f_c00311{bottom:211.332000px;}
.y8e_c00311{bottom:227.979000px;}
.y88_c00311{bottom:244.693888px;}
.y86_c00311{bottom:244.694386px;}
.y8b_c00311{bottom:244.694451px;}
.y87_c00311{bottom:244.694487px;}
.y89_c00311{bottom:244.694638px;}
.y8d_c00311{bottom:244.694653px;}
.y8c_c00311{bottom:244.694761px;}
.y8a_c00311{bottom:244.694949px;}
.y84_c00311{bottom:261.187540px;}
.y85_c00311{bottom:261.187561px;}
.y83_c00311{bottom:261.187809px;}
.y80_c00311{bottom:261.188175px;}
.y82_c00311{bottom:261.188388px;}
.y81_c00311{bottom:261.188646px;}
.y7a_c00311{bottom:276.725062px;}
.y7b_c00311{bottom:277.206721px;}
.y7c_c00311{bottom:278.216497px;}
.y7d_c00311{bottom:278.550358px;}
.y7e_c00311{bottom:279.354549px;}
.y7f_c00311{bottom:279.595339px;}
.y74_c00311{bottom:293.467929px;}
.y75_c00311{bottom:293.690737px;}
.y76_c00311{bottom:294.522096px;}
.y77_c00311{bottom:295.302745px;}
.y78_c00311{bottom:295.965495px;}
.y79_c00311{bottom:296.639031px;}
.y6c_c00311{bottom:309.938845px;}
.y6d_c00311{bottom:310.038354px;}
.y6e_c00311{bottom:310.544028px;}
.y6f_c00311{bottom:310.831692px;}
.y70_c00311{bottom:311.596345px;}
.y71_c00311{bottom:312.007893px;}
.y72_c00311{bottom:312.559002px;}
.y73_c00311{bottom:313.618612px;}
.y65_c00311{bottom:326.954061px;}
.y66_c00311{bottom:327.752410px;}
.y67_c00311{bottom:328.265007px;}
.y68_c00311{bottom:329.169729px;}
.y69_c00311{bottom:329.532097px;}
.y6a_c00311{bottom:330.212160px;}
.y6b_c00311{bottom:330.672984px;}
.y5c_c00311{bottom:344.773174px;}
.y5d_c00311{bottom:345.118999px;}
.y5e_c00311{bottom:345.410856px;}
.y5f_c00311{bottom:345.997591px;}
.y60_c00311{bottom:346.495107px;}
.y61_c00311{bottom:347.511799px;}
.y62_c00311{bottom:347.680920px;}
.y63_c00311{bottom:348.070926px;}
.y64_c00311{bottom:348.871860px;}
.y52_c00311{bottom:363.088884px;}
.y56_c00311{bottom:363.089167px;}
.y54_c00311{bottom:363.089305px;}
.y53_c00311{bottom:363.089355px;}
.y58_c00311{bottom:363.089419px;}
.y55_c00311{bottom:363.089526px;}
.y59_c00311{bottom:363.089580px;}
.y57_c00311{bottom:363.089748px;}
.y5b_c00311{bottom:363.090072px;}
.y5a_c00311{bottom:363.090250px;}
.y51_c00311{bottom:380.417406px;}
.y50_c00311{bottom:380.417695px;}
.y4e_c00311{bottom:380.417812px;}
.y4f_c00311{bottom:380.417964px;}
.y4c_c00311{bottom:380.417991px;}
.y4d_c00311{bottom:380.418042px;}
.y4b_c00311{bottom:380.418700px;}
.y4a_c00311{bottom:396.398499px;}
.y47_c00311{bottom:396.399133px;}
.y49_c00311{bottom:396.399186px;}
.y48_c00311{bottom:396.399504px;}
.y45_c00311{bottom:396.399520px;}
.y46_c00311{bottom:396.399732px;}
.y43_c00311{bottom:414.027261px;}
.y44_c00311{bottom:414.027582px;}
.y42_c00311{bottom:414.028000px;}
.y41_c00311{bottom:414.028149px;}
.y40_c00311{bottom:414.028648px;}
.y3f_c00311{bottom:414.028786px;}
.y3d_c00311{bottom:414.028974px;}
.y3e_c00311{bottom:414.029014px;}
.y37_c00311{bottom:430.544233px;}
.y36_c00311{bottom:430.544302px;}
.y38_c00311{bottom:430.544584px;}
.y3a_c00311{bottom:430.544637px;}
.y39_c00311{bottom:430.544866px;}
.y3b_c00311{bottom:430.545279px;}
.y3c_c00311{bottom:430.545430px;}
.y31_c00311{bottom:447.781980px;}
.y32_c00311{bottom:447.782082px;}
.y2f_c00311{bottom:447.782268px;}
.y33_c00311{bottom:447.782343px;}
.y30_c00311{bottom:447.782529px;}
.y2e_c00311{bottom:447.782727px;}
.y34_c00311{bottom:447.783004px;}
.y35_c00311{bottom:447.783685px;}
.y28_c00311{bottom:463.584885px;}
.y29_c00311{bottom:464.496694px;}
.y2a_c00311{bottom:465.034543px;}
.y2b_c00311{bottom:465.759081px;}
.y2c_c00311{bottom:466.130604px;}
.y2d_c00311{bottom:466.665021px;}
.y21_c00311{bottom:482.179408px;}
.y20_c00311{bottom:482.179548px;}
.y26_c00311{bottom:482.179704px;}
.y22_c00311{bottom:482.179890px;}
.y25_c00311{bottom:482.179903px;}
.y27_c00311{bottom:482.179986px;}
.y24_c00311{bottom:482.180202px;}
.y23_c00311{bottom:482.180551px;}
.y17_c00311{bottom:497.067841px;}
.y18_c00311{bottom:497.720097px;}
.y19_c00311{bottom:498.161401px;}
.y1a_c00311{bottom:498.401329px;}
.y1b_c00311{bottom:498.878826px;}
.y1c_c00311{bottom:499.106781px;}
.y1d_c00311{bottom:499.555027px;}
.y1e_c00311{bottom:499.812057px;}
.y1f_c00311{bottom:500.475564px;}
.y10_c00311{bottom:513.539157px;}
.y11_c00311{bottom:513.968661px;}
.y12_c00311{bottom:514.413528px;}
.y13_c00311{bottom:515.303731px;}
.y14_c00311{bottom:516.642409px;}
.y15_c00311{bottom:517.233265px;}
.y16_c00311{bottom:517.588275px;}
.y9_c00311{bottom:530.550226px;}
.ya_c00311{bottom:530.669764px;}
.yb_c00311{bottom:531.394249px;}
.yc_c00311{bottom:531.900402px;}
.yd_c00311{bottom:532.418682px;}
.ye_c00311{bottom:533.637328px;}
.yf_c00311{bottom:534.742656px;}
.y2_c00311{bottom:547.831500px;}
.y3_c00311{bottom:548.102608px;}
.y4_c00311{bottom:548.674914px;}
.y5_c00311{bottom:549.422836px;}
.y6_c00311{bottom:549.675225px;}
.y7_c00311{bottom:550.489564px;}
.y8_c00311{bottom:551.251722px;}
.y1_c00311{bottom:565.920000px;}
.h7_c00311{height:59.855057px;}
.h12_c00311{height:60.900000px;}
.h8_c00311{height:60.905146px;}
.ha_c00311{height:63.005323px;}
.hc_c00311{height:64.050000px;}
.hb_c00311{height:64.055412px;}
.h5_c00311{height:65.105501px;}
.h13_c00311{height:66.150000px;}
.h9_c00311{height:66.155589px;}
.hd_c00311{height:67.200000px;}
.h3_c00311{height:67.205678px;}
.h2_c00311{height:68.250000px;}
.h6_c00311{height:68.255767px;}
.h10_c00311{height:69.300000px;}
.h4_c00311{height:69.305856px;}
.he_c00311{height:70.350000px;}
.h11_c00311{height:71.400000px;}
.hf_c00311{height:72.450000px;}
.h14_c00311{height:76.650000px;}
.h1_c00311{height:618.750000px;}
.h0_c00311{height:619.050000px;}
.w0_c00311{width:359.100000px;}
.w1_c00311{width:359.250000px;}
.x0_c00311{left:0.000000px;}
.x47_c00311{left:35.962841px;}
.x9_c00311{left:38.432795px;}
.x67_c00311{left:40.500000px;}
.x5d_c00311{left:42.390000px;}
.x15_c00311{left:44.223971px;}
.x2_c00311{left:46.269000px;}
.x64_c00311{left:50.760000px;}
.x3f_c00311{left:53.846093px;}
.x2f_c00311{left:59.126811px;}
.x56_c00311{left:60.210471px;}
.x71_c00311{left:61.996500px;}
.x4d_c00311{left:63.862745px;}
.x3_c00311{left:67.123500px;}
.x1c_c00311{left:68.580603px;}
.x3a_c00311{left:71.009423px;}
.xf_c00311{left:73.110678px;}
.x40_c00311{left:76.870488px;}
.x6e_c00311{left:81.108000px;}
.x48_c00311{left:82.515341px;}
.x2a_c00311{left:84.779484px;}
.x51_c00311{left:87.348969px;}
.x36_c00311{left:91.259610px;}
.x32_c00311{left:92.609111px;}
.xa_c00311{left:94.702332px;}
.x3b_c00311{left:97.202349px;}
.x6b_c00311{left:98.391000px;}
.x10_c00311{left:100.868586px;}
.x60_c00311{left:102.060000px;}
.x49_c00311{left:104.643341px;}
.x43_c00311{left:105.748095px;}
.x25_c00311{left:108.812985px;}
.x4_c00311{left:111.147000px;}
.x57_c00311{left:113.134922px;}
.x3c_c00311{left:117.184223px;}
.x58_c00311{left:119.886053px;}
.x2b_c00311{left:122.312822px;}
.x1d_c00311{left:123.665405px;}
.x77_c00311{left:124.770000px;}
.xb_c00311{left:128.443955px;}
.x68_c00311{left:129.870000px;}
.x72_c00311{left:131.631000px;}
.x37_c00311{left:134.193864px;}
.x26_c00311{left:135.544509px;}
.x4e_c00311{left:139.469214px;}
.x5e_c00311{left:140.670000px;}
.x59_c00311{left:142.298336px;}
.x33_c00311{left:145.533561px;}
.x16_c00311{left:146.799971px;}
.x6c_c00311{left:152.442000px;}
.x38_c00311{left:155.525972px;}
.x11_c00311{left:156.535922px;}
.x65_c00311{left:157.950000px;}
.xc_c00311{left:163.003058px;}
.x5_c00311{left:168.679500px;}
.x1e_c00311{left:170.108744px;}
.x75_c00311{left:172.410000px;}
.x22_c00311{left:176.716721px;}
.x6f_c00311{left:178.069500px;}
.x52_c00311{left:179.103348px;}
.x17_c00311{left:183.530471px;}
.x2c_c00311{left:186.037586px;}
.x6_c00311{left:188.094000px;}
.x1_c00311{left:191.700000px;}
.x3d_c00311{left:192.790995px;}
.x76_c00311{left:194.001000px;}
.x4a_c00311{left:195.120341px;}
.x70_c00311{left:196.699500px;}
.x66_c00311{left:199.800000px;}
.x18_c00311{left:201.065471px;}
.x79_c00311{left:204.247500px;}
.x27_c00311{left:207.910736px;}
.x53_c00311{left:209.401128px;}
.x4f_c00311{left:210.482567px;}
.x5a_c00311{left:211.964114px;}
.x44_c00311{left:214.772595px;}
.x30_c00311{left:216.009831px;}
.x61_c00311{left:218.160000px;}
.x73_c00311{left:228.234000px;}
.x34_c00311{left:230.590433px;}
.x7a_c00311{left:231.592500px;}
.x5b_c00311{left:234.376397px;}
.x19_c00311{left:235.545971px;}
.x4b_c00311{left:237.513341px;}
.x12_c00311{left:240.238665px;}
.x23_c00311{left:242.605937px;}
.xd_c00311{left:244.281452px;}
.x41_c00311{left:247.744562px;}
.x1f_c00311{left:249.226121px;}
.x7_c00311{left:250.735500px;}
.x78_c00311{left:252.625500px;}
.x1a_c00311{left:255.317471px;}
.x3e_c00311{left:257.865993px;}
.x5f_c00311{left:260.010000px;}
.x74_c00311{left:264.226500px;}
.x69_c00311{left:266.490000px;}
.x31_c00311{left:267.584048px;}
.x6d_c00311{left:269.637000px;}
.x20_c00311{left:271.368365px;}
.x42_c00311{left:273.705879px;}
.x13_c00311{left:277.149222px;}
.x2d_c00311{left:280.816095px;}
.x54_c00311{left:282.571539px;}
.x6a_c00311{left:284.580000px;}
.x28_c00311{left:289.457003px;}
.x45_c00311{left:294.959595px;}
.x39_c00311{left:296.749340px;}
.x62_c00311{left:297.810000px;}
.x14_c00311{left:299.379864px;}
.x5c_c00311{left:301.071668px;}
.x55_c00311{left:304.440605px;}
.x1b_c00311{left:306.356471px;}
.x8_c00311{left:309.363000px;}
.x63_c00311{left:316.170000px;}
.xe_c00311{left:317.997041px;}
.x4c_c00311{left:319.021841px;}
.x29_c00311{left:322.399560px;}
.x24_c00311{left:324.988082px;}
.x2e_c00311{left:326.989395px;}
.x46_c00311{left:330.407595px;}
.x50_c00311{left:331.969226px;}
.x21_c00311{left:335.093129px;}
.x35_c00311{left:336.709373px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs5_c00311{font-size:53.204495pt;}
.fs10_c00311{font-size:54.133333pt;}
.fs6_c00311{font-size:54.137907pt;}
.fs8_c00311{font-size:56.004732pt;}
.fsa_c00311{font-size:56.933333pt;}
.fs9_c00311{font-size:56.938144pt;}
.fs3_c00311{font-size:57.871556pt;}
.fs11_c00311{font-size:58.800000pt;}
.fs7_c00311{font-size:58.804968pt;}
.fsb_c00311{font-size:59.733333pt;}
.fs1_c00311{font-size:59.738381pt;}
.fs0_c00311{font-size:60.666667pt;}
.fs4_c00311{font-size:60.671793pt;}
.fse_c00311{font-size:61.600000pt;}
.fs2_c00311{font-size:61.605205pt;}
.fsc_c00311{font-size:62.533333pt;}
.fsf_c00311{font-size:63.466667pt;}
.fsd_c00311{font-size:64.400000pt;}
.fs12_c00311{font-size:68.133333pt;}
.y0_c00311{bottom:0.000000pt;}
.yd0_c00311{bottom:17.041333pt;}
.yd1_c00311{bottom:17.457333pt;}
.yd2_c00311{bottom:18.346667pt;}
.yd3_c00311{bottom:18.662667pt;}
.yd4_c00311{bottom:19.410667pt;}
.yd5_c00311{bottom:19.800000pt;}
.yd6_c00311{bottom:20.876000pt;}
.yc8_c00311{bottom:33.841333pt;}
.yc9_c00311{bottom:34.364000pt;}
.yca_c00311{bottom:34.690667pt;}
.ycb_c00311{bottom:35.400000pt;}
.ycc_c00311{bottom:36.286667pt;}
.ycd_c00311{bottom:36.624000pt;}
.yce_c00311{bottom:36.924000pt;}
.ycf_c00311{bottom:37.965333pt;}
.yc2_c00311{bottom:48.005333pt;}
.yc3_c00311{bottom:49.256000pt;}
.yc4_c00311{bottom:49.694667pt;}
.yc5_c00311{bottom:51.193333pt;}
.yc6_c00311{bottom:52.312000pt;}
.yc7_c00311{bottom:53.701333pt;}
.yba_c00311{bottom:63.362667pt;}
.ybb_c00311{bottom:63.814667pt;}
.ybc_c00311{bottom:64.197333pt;}
.ybd_c00311{bottom:64.928000pt;}
.ybe_c00311{bottom:65.478667pt;}
.ybf_c00311{bottom:65.690667pt;}
.yc0_c00311{bottom:66.370667pt;}
.yc1_c00311{bottom:66.630667pt;}
.yb1_c00311{bottom:78.721333pt;}
.yb2_c00311{bottom:79.290667pt;}
.yb3_c00311{bottom:79.518667pt;}
.yb4_c00311{bottom:79.702667pt;}
.yb5_c00311{bottom:80.146667pt;}
.yb6_c00311{bottom:80.377333pt;}
.yb7_c00311{bottom:80.824000pt;}
.yb8_c00311{bottom:81.305333pt;}
.yb9_c00311{bottom:81.550667pt;}
.yaa_c00311{bottom:93.842667pt;}
.yab_c00311{bottom:94.458667pt;}
.yac_c00311{bottom:94.612000pt;}
.yad_c00311{bottom:94.801333pt;}
.yae_c00311{bottom:95.313333pt;}
.yaf_c00311{bottom:95.857333pt;}
.yb0_c00311{bottom:96.241333pt;}
.ya2_c00311{bottom:108.724000pt;}
.ya3_c00311{bottom:108.977333pt;}
.ya4_c00311{bottom:109.545333pt;}
.ya5_c00311{bottom:109.781333pt;}
.ya6_c00311{bottom:110.302667pt;}
.ya7_c00311{bottom:111.116000pt;}
.ya8_c00311{bottom:111.665333pt;}
.ya9_c00311{bottom:112.008000pt;}
.y9c_c00311{bottom:124.322667pt;}
.y9d_c00311{bottom:124.732000pt;}
.y9e_c00311{bottom:125.006667pt;}
.y9f_c00311{bottom:125.680000pt;}
.ya0_c00311{bottom:125.862667pt;}
.ya1_c00311{bottom:126.570667pt;}
.y92_c00311{bottom:139.681333pt;}
.y93_c00311{bottom:139.936000pt;}
.y94_c00311{bottom:140.301333pt;}
.y95_c00311{bottom:140.696000pt;}
.y96_c00311{bottom:140.877333pt;}
.y97_c00311{bottom:141.502667pt;}
.y98_c00311{bottom:141.713333pt;}
.y99_c00311{bottom:142.128000pt;}
.y9a_c00311{bottom:142.245333pt;}
.y9b_c00311{bottom:142.416000pt;}
.y91_c00311{bottom:156.768000pt;}
.y90_c00311{bottom:172.349333pt;}
.y8f_c00311{bottom:187.850667pt;}
.y8e_c00311{bottom:202.648000pt;}
.y88_c00311{bottom:217.505679pt;}
.y86_c00311{bottom:217.506121pt;}
.y8b_c00311{bottom:217.506179pt;}
.y87_c00311{bottom:217.506211pt;}
.y89_c00311{bottom:217.506345pt;}
.y8d_c00311{bottom:217.506359pt;}
.y8c_c00311{bottom:217.506455pt;}
.y8a_c00311{bottom:217.506621pt;}
.y84_c00311{bottom:232.166703pt;}
.y85_c00311{bottom:232.166721pt;}
.y83_c00311{bottom:232.166941pt;}
.y80_c00311{bottom:232.167267pt;}
.y82_c00311{bottom:232.167456pt;}
.y81_c00311{bottom:232.167685pt;}
.y7a_c00311{bottom:245.977833pt;}
.y7b_c00311{bottom:246.405975pt;}
.y7c_c00311{bottom:247.303553pt;}
.y7d_c00311{bottom:247.600319pt;}
.y7e_c00311{bottom:248.315155pt;}
.y7f_c00311{bottom:248.529191pt;}
.y74_c00311{bottom:260.860381pt;}
.y75_c00311{bottom:261.058433pt;}
.y76_c00311{bottom:261.797419pt;}
.y77_c00311{bottom:262.491329pt;}
.y78_c00311{bottom:263.080440pt;}
.y79_c00311{bottom:263.679139pt;}
.y6c_c00311{bottom:275.501196pt;}
.y6d_c00311{bottom:275.589648pt;}
.y6e_c00311{bottom:276.039136pt;}
.y6f_c00311{bottom:276.294837pt;}
.y70_c00311{bottom:276.974529pt;}
.y71_c00311{bottom:277.340349pt;}
.y72_c00311{bottom:277.830224pt;}
.y73_c00311{bottom:278.772100pt;}
.y65_c00311{bottom:290.625832pt;}
.y66_c00311{bottom:291.335476pt;}
.y67_c00311{bottom:291.791117pt;}
.y68_c00311{bottom:292.595315pt;}
.y69_c00311{bottom:292.917420pt;}
.y6a_c00311{bottom:293.521920pt;}
.y6b_c00311{bottom:293.931541pt;}
.y5c_c00311{bottom:306.465044pt;}
.y5d_c00311{bottom:306.772444pt;}
.y5e_c00311{bottom:307.031872pt;}
.y5f_c00311{bottom:307.553415pt;}
.y60_c00311{bottom:307.995651pt;}
.y61_c00311{bottom:308.899377pt;}
.y62_c00311{bottom:309.049707pt;}
.y63_c00311{bottom:309.396379pt;}
.y64_c00311{bottom:310.108320pt;}
.y52_c00311{bottom:322.745675pt;}
.y56_c00311{bottom:322.745927pt;}
.y54_c00311{bottom:322.746049pt;}
.y53_c00311{bottom:322.746093pt;}
.y58_c00311{bottom:322.746151pt;}
.y55_c00311{bottom:322.746245pt;}
.y59_c00311{bottom:322.746293pt;}
.y57_c00311{bottom:322.746443pt;}
.y5b_c00311{bottom:322.746731pt;}
.y5a_c00311{bottom:322.746889pt;}
.y51_c00311{bottom:338.148805pt;}
.y50_c00311{bottom:338.149063pt;}
.y4e_c00311{bottom:338.149167pt;}
.y4f_c00311{bottom:338.149301pt;}
.y4c_c00311{bottom:338.149325pt;}
.y4d_c00311{bottom:338.149371pt;}
.y4b_c00311{bottom:338.149956pt;}
.y4a_c00311{bottom:352.354221pt;}
.y47_c00311{bottom:352.354785pt;}
.y49_c00311{bottom:352.354832pt;}
.y48_c00311{bottom:352.355115pt;}
.y45_c00311{bottom:352.355129pt;}
.y46_c00311{bottom:352.355317pt;}
.y43_c00311{bottom:368.024232pt;}
.y44_c00311{bottom:368.024517pt;}
.y42_c00311{bottom:368.024889pt;}
.y41_c00311{bottom:368.025021pt;}
.y40_c00311{bottom:368.025465pt;}
.y3f_c00311{bottom:368.025588pt;}
.y3d_c00311{bottom:368.025755pt;}
.y3e_c00311{bottom:368.025791pt;}
.y37_c00311{bottom:382.705985pt;}
.y36_c00311{bottom:382.706047pt;}
.y38_c00311{bottom:382.706297pt;}
.y3a_c00311{bottom:382.706344pt;}
.y39_c00311{bottom:382.706548pt;}
.y3b_c00311{bottom:382.706915pt;}
.y3c_c00311{bottom:382.707049pt;}
.y31_c00311{bottom:398.028427pt;}
.y32_c00311{bottom:398.028517pt;}
.y2f_c00311{bottom:398.028683pt;}
.y33_c00311{bottom:398.028749pt;}
.y30_c00311{bottom:398.028915pt;}
.y2e_c00311{bottom:398.029091pt;}
.y34_c00311{bottom:398.029337pt;}
.y35_c00311{bottom:398.029943pt;}
.y28_c00311{bottom:412.075453pt;}
.y29_c00311{bottom:412.885951pt;}
.y2a_c00311{bottom:413.364039pt;}
.y2b_c00311{bottom:414.008072pt;}
.y2c_c00311{bottom:414.338315pt;}
.y2d_c00311{bottom:414.813352pt;}
.y21_c00311{bottom:428.603919pt;}
.y20_c00311{bottom:428.604043pt;}
.y26_c00311{bottom:428.604181pt;}
.y22_c00311{bottom:428.604347pt;}
.y25_c00311{bottom:428.604359pt;}
.y27_c00311{bottom:428.604432pt;}
.y24_c00311{bottom:428.604624pt;}
.y23_c00311{bottom:428.604935pt;}
.y17_c00311{bottom:441.838081pt;}
.y18_c00311{bottom:442.417864pt;}
.y19_c00311{bottom:442.810135pt;}
.y1a_c00311{bottom:443.023404pt;}
.y1b_c00311{bottom:443.447845pt;}
.y1c_c00311{bottom:443.650472pt;}
.y1d_c00311{bottom:444.048913pt;}
.y1e_c00311{bottom:444.277384pt;}
.y1f_c00311{bottom:444.867168pt;}
.y10_c00311{bottom:456.479251pt;}
.y11_c00311{bottom:456.861032pt;}
.y12_c00311{bottom:457.256469pt;}
.y13_c00311{bottom:458.047761pt;}
.y14_c00311{bottom:459.237697pt;}
.y15_c00311{bottom:459.762903pt;}
.y16_c00311{bottom:460.078467pt;}
.y9_c00311{bottom:471.600201pt;}
.ya_c00311{bottom:471.706457pt;}
.yb_c00311{bottom:472.350444pt;}
.yc_c00311{bottom:472.800357pt;}
.yd_c00311{bottom:473.261051pt;}
.ye_c00311{bottom:474.344292pt;}
.yf_c00311{bottom:475.326805pt;}
.y2_c00311{bottom:486.961333pt;}
.y3_c00311{bottom:487.202319pt;}
.y4_c00311{bottom:487.711035pt;}
.y5_c00311{bottom:488.375855pt;}
.y6_c00311{bottom:488.600200pt;}
.y7_c00311{bottom:489.324057pt;}
.y8_c00311{bottom:490.001531pt;}
.y1_c00311{bottom:503.040000pt;}
.h7_c00311{height:53.204495pt;}
.h12_c00311{height:54.133333pt;}
.h8_c00311{height:54.137907pt;}
.ha_c00311{height:56.004732pt;}
.hc_c00311{height:56.933333pt;}
.hb_c00311{height:56.938144pt;}
.h5_c00311{height:57.871556pt;}
.h13_c00311{height:58.800000pt;}
.h9_c00311{height:58.804968pt;}
.hd_c00311{height:59.733333pt;}
.h3_c00311{height:59.738381pt;}
.h2_c00311{height:60.666667pt;}
.h6_c00311{height:60.671793pt;}
.h10_c00311{height:61.600000pt;}
.h4_c00311{height:61.605205pt;}
.he_c00311{height:62.533333pt;}
.h11_c00311{height:63.466667pt;}
.hf_c00311{height:64.400000pt;}
.h14_c00311{height:68.133333pt;}
.h1_c00311{height:550.000000pt;}
.h0_c00311{height:550.266667pt;}
.w0_c00311{width:319.200000pt;}
.w1_c00311{width:319.333333pt;}
.x0_c00311{left:0.000000pt;}
.x47_c00311{left:31.966969pt;}
.x9_c00311{left:34.162484pt;}
.x67_c00311{left:36.000000pt;}
.x5d_c00311{left:37.680000pt;}
.x15_c00311{left:39.310196pt;}
.x2_c00311{left:41.128000pt;}
.x64_c00311{left:45.120000pt;}
.x3f_c00311{left:47.863193pt;}
.x2f_c00311{left:52.557165pt;}
.x56_c00311{left:53.520419pt;}
.x71_c00311{left:55.108000pt;}
.x4d_c00311{left:56.766884pt;}
.x3_c00311{left:59.665333pt;}
.x1c_c00311{left:60.960536pt;}
.x3a_c00311{left:63.119487pt;}
.xf_c00311{left:64.987269pt;}
.x40_c00311{left:68.329323pt;}
.x6e_c00311{left:72.096000pt;}
.x48_c00311{left:73.346969pt;}
.x2a_c00311{left:75.359541pt;}
.x51_c00311{left:77.643528pt;}
.x36_c00311{left:81.119653pt;}
.x32_c00311{left:82.319209pt;}
.xa_c00311{left:84.179851pt;}
.x3b_c00311{left:86.402088pt;}
.x6b_c00311{left:87.458667pt;}
.x10_c00311{left:89.660965pt;}
.x60_c00311{left:90.720000pt;}
.x49_c00311{left:93.016303pt;}
.x43_c00311{left:93.998307pt;}
.x25_c00311{left:96.722653pt;}
.x4_c00311{left:98.797333pt;}
.x57_c00311{left:100.564375pt;}
.x3c_c00311{left:104.163753pt;}
.x58_c00311{left:106.565380pt;}
.x2b_c00311{left:108.722508pt;}
.x1d_c00311{left:109.924804pt;}
.x77_c00311{left:110.906667pt;}
.xb_c00311{left:114.172404pt;}
.x68_c00311{left:115.440000pt;}
.x72_c00311{left:117.005333pt;}
.x37_c00311{left:119.283435pt;}
.x26_c00311{left:120.484008pt;}
.x4e_c00311{left:123.972635pt;}
.x5e_c00311{left:125.040000pt;}
.x59_c00311{left:126.487409pt;}
.x33_c00311{left:129.363165pt;}
.x16_c00311{left:130.488863pt;}
.x6c_c00311{left:135.504000pt;}
.x38_c00311{left:138.245308pt;}
.x11_c00311{left:139.143041pt;}
.x65_c00311{left:140.400000pt;}
.xc_c00311{left:144.891607pt;}
.x5_c00311{left:149.937333pt;}
.x1e_c00311{left:151.207772pt;}
.x75_c00311{left:153.253333pt;}
.x22_c00311{left:157.081529pt;}
.x6f_c00311{left:158.284000pt;}
.x52_c00311{left:159.202976pt;}
.x17_c00311{left:163.138196pt;}
.x2c_c00311{left:165.366743pt;}
.x6_c00311{left:167.194667pt;}
.x1_c00311{left:170.400000pt;}
.x3d_c00311{left:171.369773pt;}
.x76_c00311{left:172.445333pt;}
.x4a_c00311{left:173.440303pt;}
.x70_c00311{left:174.844000pt;}
.x66_c00311{left:177.600000pt;}
.x18_c00311{left:178.724863pt;}
.x79_c00311{left:181.553333pt;}
.x27_c00311{left:184.809543pt;}
.x53_c00311{left:186.134336pt;}
.x4f_c00311{left:187.095615pt;}
.x5a_c00311{left:188.412545pt;}
.x44_c00311{left:190.908973pt;}
.x30_c00311{left:192.008739pt;}
.x61_c00311{left:193.920000pt;}
.x73_c00311{left:202.874667pt;}
.x34_c00311{left:204.969273pt;}
.x7a_c00311{left:205.860000pt;}
.x5b_c00311{left:208.334575pt;}
.x19_c00311{left:209.374196pt;}
.x4b_c00311{left:211.122969pt;}
.x12_c00311{left:213.545480pt;}
.x23_c00311{left:215.649721pt;}
.xd_c00311{left:217.139068pt;}
.x41_c00311{left:220.217388pt;}
.x1f_c00311{left:221.534329pt;}
.x7_c00311{left:222.876000pt;}
.x78_c00311{left:224.556000pt;}
.x1a_c00311{left:226.948863pt;}
.x3e_c00311{left:229.214216pt;}
.x5f_c00311{left:231.120000pt;}
.x74_c00311{left:234.868000pt;}
.x69_c00311{left:236.880000pt;}
.x31_c00311{left:237.852487pt;}
.x6d_c00311{left:239.677333pt;}
.x20_c00311{left:241.216324pt;}
.x42_c00311{left:243.294115pt;}
.x13_c00311{left:246.354864pt;}
.x2d_c00311{left:249.614307pt;}
.x54_c00311{left:251.174701pt;}
.x6a_c00311{left:252.960000pt;}
.x28_c00311{left:257.295113pt;}
.x45_c00311{left:262.186307pt;}
.x39_c00311{left:263.777191pt;}
.x62_c00311{left:264.720000pt;}
.x14_c00311{left:266.115435pt;}
.x5c_c00311{left:267.619260pt;}
.x55_c00311{left:270.613871pt;}
.x1b_c00311{left:272.316863pt;}
.x8_c00311{left:274.989333pt;}
.x63_c00311{left:281.040000pt;}
.xe_c00311{left:282.664036pt;}
.x4c_c00311{left:283.574969pt;}
.x29_c00311{left:286.577387pt;}
.x24_c00311{left:288.878295pt;}
.x2e_c00311{left:290.657240pt;}
.x46_c00311{left:293.695640pt;}
.x50_c00311{left:295.083756pt;}
.x21_c00311{left:297.860559pt;}
.x35_c00311{left:299.297220pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00312 {
    display:none;
  }
  .loading-indicator_c00312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00312 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00312 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00312" -> "#page-container .classname_c00312")
 */
.pf_c00312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00312 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00312 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00312 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00312 {overflow:visible;}
  }
}
.c_c00312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00312 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00312:after { /* webkit #35443 */
  content: '';
}
.t_c00312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00312 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00312 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00312 { /* info for Javascript */
  display:none;
}
.l_c00312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00312:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00312 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00312.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00312{transform:matrix(0.042331,-0.000550,0.003250,0.249979,0,0);-ms-transform:matrix(0.042331,-0.000550,0.003250,0.249979,0,0);-webkit-transform:matrix(0.042331,-0.000550,0.003250,0.249979,0,0);}
.md8_c00312{transform:matrix(0.135719,-0.001764,0.003250,0.249979,0,0);-ms-transform:matrix(0.135719,-0.001764,0.003250,0.249979,0,0);-webkit-transform:matrix(0.135719,-0.001764,0.003250,0.249979,0,0);}
.m7e_c00312{transform:matrix(0.138968,-0.001807,0.003250,0.249979,0,0);-ms-transform:matrix(0.138968,-0.001807,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138968,-0.001807,0.003250,0.249979,0,0);}
.m6_c00312{transform:matrix(0.139788,-0.001817,0.003250,0.249979,0,0);-ms-transform:matrix(0.139788,-0.001817,0.003250,0.249979,0,0);-webkit-transform:matrix(0.139788,-0.001817,0.003250,0.249979,0,0);}
.m5_c00312{transform:matrix(0.143753,-0.001869,0.003250,0.249979,0,0);-ms-transform:matrix(0.143753,-0.001869,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143753,-0.001869,0.003250,0.249979,0,0);}
.m97_c00312{transform:matrix(0.148992,-0.001937,0.003250,0.249979,0,0);-ms-transform:matrix(0.148992,-0.001937,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148992,-0.001937,0.003250,0.249979,0,0);}
.m7f_c00312{transform:matrix(0.150737,-0.001960,0.003250,0.249979,0,0);-ms-transform:matrix(0.150737,-0.001960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150737,-0.001960,0.003250,0.249979,0,0);}
.m25_c00312{transform:matrix(0.151182,-0.001965,0.003250,0.249979,0,0);-ms-transform:matrix(0.151182,-0.001965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151182,-0.001965,0.003250,0.249979,0,0);}
.m2_c00312{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.155292,-0.002019,0.003250,0.249979,0,0);-ms-transform:matrix(0.155292,-0.002019,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155292,-0.002019,0.003250,0.249979,0,0);}
.m78_c00312{transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);-ms-transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);}
.m7a_c00312{transform:matrix(0.157037,-0.002041,0.003250,0.249979,0,0);-ms-transform:matrix(0.157037,-0.002041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157037,-0.002041,0.003250,0.249979,0,0);}
.mc7_c00312{transform:matrix(0.158832,-0.002065,0.003250,0.249979,0,0);-ms-transform:matrix(0.158832,-0.002065,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158832,-0.002065,0.003250,0.249979,0,0);}
.m43_c00312{transform:matrix(0.160541,-0.002087,0.003250,0.249979,0,0);-ms-transform:matrix(0.160541,-0.002087,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160541,-0.002087,0.003250,0.249979,0,0);}
.me6_c00312{transform:matrix(0.160601,-0.002088,0.003250,0.249979,0,0);-ms-transform:matrix(0.160601,-0.002088,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160601,-0.002088,0.003250,0.249979,0,0);}
.m7b_c00312{transform:matrix(0.162166,-0.002108,0.003250,0.249979,0,0);-ms-transform:matrix(0.162166,-0.002108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162166,-0.002108,0.003250,0.249979,0,0);}
.mac_c00312{transform:matrix(0.163316,-0.002123,0.003250,0.249979,0,0);-ms-transform:matrix(0.163316,-0.002123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163316,-0.002123,0.003250,0.249979,0,0);}
.m24_c00312{transform:matrix(0.163646,-0.002127,0.003250,0.249979,0,0);-ms-transform:matrix(0.163646,-0.002127,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163646,-0.002127,0.003250,0.249979,0,0);}
.m47_c00312{transform:matrix(0.164141,-0.002134,0.003250,0.249979,0,0);-ms-transform:matrix(0.164141,-0.002134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164141,-0.002134,0.003250,0.249979,0,0);}
.mbb_c00312{transform:matrix(0.164161,-0.002134,0.003250,0.249979,0,0);-ms-transform:matrix(0.164161,-0.002134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164161,-0.002134,0.003250,0.249979,0,0);}
.me9_c00312{transform:matrix(0.164986,-0.002145,0.003250,0.249979,0,0);-ms-transform:matrix(0.164986,-0.002145,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164986,-0.002145,0.003250,0.249979,0,0);}
.m2c_c00312{transform:matrix(0.165201,-0.002148,0.003250,0.249979,0,0);-ms-transform:matrix(0.165201,-0.002148,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165201,-0.002148,0.003250,0.249979,0,0);}
.mce_c00312{transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);-ms-transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);}
.m8_c00312{transform:matrix(0.165581,-0.002153,0.003250,0.249979,0,0);-ms-transform:matrix(0.165581,-0.002153,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165581,-0.002153,0.003250,0.249979,0,0);}
.m9b_c00312{transform:matrix(0.166451,-0.002164,0.003250,0.249979,0,0);-ms-transform:matrix(0.166451,-0.002164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166451,-0.002164,0.003250,0.249979,0,0);}
.m92_c00312{transform:matrix(0.167111,-0.002172,0.003250,0.249979,0,0);-ms-transform:matrix(0.167111,-0.002172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167111,-0.002172,0.003250,0.249979,0,0);}
.m12_c00312{transform:matrix(0.167286,-0.002175,0.003250,0.249979,0,0);-ms-transform:matrix(0.167286,-0.002175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167286,-0.002175,0.003250,0.249979,0,0);}
.m8e_c00312{transform:matrix(0.167901,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167901,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167901,-0.002183,0.003250,0.249979,0,0);}
.mcf_c00312{transform:matrix(0.168076,-0.002185,0.003250,0.249979,0,0);-ms-transform:matrix(0.168076,-0.002185,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168076,-0.002185,0.003250,0.249979,0,0);}
.m9_c00312{transform:matrix(0.168561,-0.002191,0.003250,0.249979,0,0);-ms-transform:matrix(0.168561,-0.002191,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168561,-0.002191,0.003250,0.249979,0,0);}
.mdb_c00312{transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);-ms-transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168876,-0.002195,0.003250,0.249979,0,0);}
.m3b_c00312{transform:matrix(0.168931,-0.002196,0.003250,0.249979,0,0);-ms-transform:matrix(0.168931,-0.002196,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168931,-0.002196,0.003250,0.249979,0,0);}
.m67_c00312{transform:matrix(0.169796,-0.002207,0.003250,0.249979,0,0);-ms-transform:matrix(0.169796,-0.002207,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169796,-0.002207,0.003250,0.249979,0,0);}
.m3_c00312{transform:matrix(0.169881,-0.002208,0.003250,0.249979,0,0);-ms-transform:matrix(0.169881,-0.002208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169881,-0.002208,0.003250,0.249979,0,0);}
.m30_c00312{transform:matrix(0.169911,-0.002209,0.003250,0.249979,0,0);-ms-transform:matrix(0.169911,-0.002209,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169911,-0.002209,0.003250,0.249979,0,0);}
.m26_c00312{transform:matrix(0.170196,-0.002213,0.003250,0.249979,0,0);-ms-transform:matrix(0.170196,-0.002213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170196,-0.002213,0.003250,0.249979,0,0);}
.m2f_c00312{transform:matrix(0.170816,-0.002221,0.003250,0.249979,0,0);-ms-transform:matrix(0.170816,-0.002221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170816,-0.002221,0.003250,0.249979,0,0);}
.m20_c00312{transform:matrix(0.170821,-0.002221,0.003250,0.249979,0,0);-ms-transform:matrix(0.170821,-0.002221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170821,-0.002221,0.003250,0.249979,0,0);}
.m52_c00312{transform:matrix(0.172365,-0.002241,0.003250,0.249979,0,0);-ms-transform:matrix(0.172365,-0.002241,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172365,-0.002241,0.003250,0.249979,0,0);}
.mc5_c00312{transform:matrix(0.172500,-0.002243,0.003250,0.249979,0,0);-ms-transform:matrix(0.172500,-0.002243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172500,-0.002243,0.003250,0.249979,0,0);}
.m68_c00312{transform:matrix(0.172560,-0.002243,0.003250,0.249979,0,0);-ms-transform:matrix(0.172560,-0.002243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172560,-0.002243,0.003250,0.249979,0,0);}
.m4d_c00312{transform:matrix(0.172905,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172905,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172905,-0.002248,0.003250,0.249979,0,0);}
.mc6_c00312{transform:matrix(0.173180,-0.002251,0.003250,0.249979,0,0);-ms-transform:matrix(0.173180,-0.002251,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173180,-0.002251,0.003250,0.249979,0,0);}
.mcb_c00312{transform:matrix(0.173345,-0.002253,0.003250,0.249979,0,0);-ms-transform:matrix(0.173345,-0.002253,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173345,-0.002253,0.003250,0.249979,0,0);}
.m1_c00312{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.174070,-0.002263,0.003250,0.249979,0,0);-ms-transform:matrix(0.174070,-0.002263,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174070,-0.002263,0.003250,0.249979,0,0);}
.m11_c00312{transform:matrix(0.174600,-0.002270,0.003250,0.249979,0,0);-ms-transform:matrix(0.174600,-0.002270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174600,-0.002270,0.003250,0.249979,0,0);}
.m18_c00312{transform:matrix(0.174940,-0.002274,0.003250,0.249979,0,0);-ms-transform:matrix(0.174940,-0.002274,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174940,-0.002274,0.003250,0.249979,0,0);}
.m58_c00312{transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);}
.mcd_c00312{transform:matrix(0.175175,-0.002277,0.003250,0.249979,0,0);-ms-transform:matrix(0.175175,-0.002277,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175175,-0.002277,0.003250,0.249979,0,0);}
.m42_c00312{transform:matrix(0.176040,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176040,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176040,-0.002289,0.003250,0.249979,0,0);}
.m37_c00312{transform:matrix(0.176635,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176635,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176635,-0.002296,0.003250,0.249979,0,0);}
.m4_c00312{transform:matrix(0.176870,-0.002299,0.003250,0.249979,0,0);-ms-transform:matrix(0.176870,-0.002299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176870,-0.002299,0.003250,0.249979,0,0);}
.m7_c00312{transform:matrix(0.176890,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176890,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176890,-0.002300,0.003250,0.249979,0,0);}
.m22_c00312{transform:matrix(0.177000,-0.002301,0.003250,0.249979,0,0);-ms-transform:matrix(0.177000,-0.002301,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177000,-0.002301,0.003250,0.249979,0,0);}
.m87_c00312{transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);-ms-transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);}
.ma0_c00312{transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179090,-0.002328,0.003250,0.249979,0,0);}
.mec_c00312{transform:matrix(0.179110,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179110,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179110,-0.002328,0.003250,0.249979,0,0);}
.m7c_c00312{transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);-ms-transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179365,-0.002332,0.003250,0.249979,0,0);}
.m2d_c00312{transform:matrix(0.179710,-0.002336,0.003250,0.249979,0,0);-ms-transform:matrix(0.179710,-0.002336,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179710,-0.002336,0.003250,0.249979,0,0);}
.m2a_c00312{transform:matrix(0.179990,-0.002340,0.003250,0.249979,0,0);-ms-transform:matrix(0.179990,-0.002340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179990,-0.002340,0.003250,0.249979,0,0);}
.m82_c00312{transform:matrix(0.180030,-0.002340,0.003250,0.249979,0,0);-ms-transform:matrix(0.180030,-0.002340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180030,-0.002340,0.003250,0.249979,0,0);}
.m38_c00312{transform:matrix(0.180445,-0.002346,0.003250,0.249979,0,0);-ms-transform:matrix(0.180445,-0.002346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180445,-0.002346,0.003250,0.249979,0,0);}
.m45_c00312{transform:matrix(0.181120,-0.002355,0.003250,0.249979,0,0);-ms-transform:matrix(0.181120,-0.002355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181120,-0.002355,0.003250,0.249979,0,0);}
.m75_c00312{transform:matrix(0.181190,-0.002355,0.003250,0.249979,0,0);-ms-transform:matrix(0.181190,-0.002355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181190,-0.002355,0.003250,0.249979,0,0);}
.m2b_c00312{transform:matrix(0.181850,-0.002364,0.003250,0.249979,0,0);-ms-transform:matrix(0.181850,-0.002364,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181850,-0.002364,0.003250,0.249979,0,0);}
.mca_c00312{transform:matrix(0.181925,-0.002365,0.003250,0.249979,0,0);-ms-transform:matrix(0.181925,-0.002365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181925,-0.002365,0.003250,0.249979,0,0);}
.m5d_c00312{transform:matrix(0.182390,-0.002371,0.003250,0.249979,0,0);-ms-transform:matrix(0.182390,-0.002371,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182390,-0.002371,0.003250,0.249979,0,0);}
.mab_c00312{transform:matrix(0.182680,-0.002375,0.003250,0.249979,0,0);-ms-transform:matrix(0.182680,-0.002375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182680,-0.002375,0.003250,0.249979,0,0);}
.me7_c00312{transform:matrix(0.182765,-0.002376,0.003250,0.249979,0,0);-ms-transform:matrix(0.182765,-0.002376,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182765,-0.002376,0.003250,0.249979,0,0);}
.m23_c00312{transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);-ms-transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);}
.m71_c00312{transform:matrix(0.184294,-0.002396,0.003250,0.249979,0,0);-ms-transform:matrix(0.184294,-0.002396,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184294,-0.002396,0.003250,0.249979,0,0);}
.m10_c00312{transform:matrix(0.185009,-0.002405,0.003250,0.249979,0,0);-ms-transform:matrix(0.185009,-0.002405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185009,-0.002405,0.003250,0.249979,0,0);}
.mcc_c00312{transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185284,-0.002409,0.003250,0.249979,0,0);}
.maf_c00312{transform:matrix(0.185414,-0.002410,0.003250,0.249979,0,0);-ms-transform:matrix(0.185414,-0.002410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185414,-0.002410,0.003250,0.249979,0,0);}
.md9_c00312{transform:matrix(0.185424,-0.002411,0.003250,0.249979,0,0);-ms-transform:matrix(0.185424,-0.002411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185424,-0.002411,0.003250,0.249979,0,0);}
.mad_c00312{transform:matrix(0.185854,-0.002416,0.003250,0.249979,0,0);-ms-transform:matrix(0.185854,-0.002416,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185854,-0.002416,0.003250,0.249979,0,0);}
.ma5_c00312{transform:matrix(0.186059,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186059,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186059,-0.002419,0.003250,0.249979,0,0);}
.m33_c00312{transform:matrix(0.186124,-0.002420,0.003250,0.249979,0,0);-ms-transform:matrix(0.186124,-0.002420,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186124,-0.002420,0.003250,0.249979,0,0);}
.me8_c00312{transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);}
.m3f_c00312{transform:matrix(0.186814,-0.002429,0.003250,0.249979,0,0);-ms-transform:matrix(0.186814,-0.002429,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186814,-0.002429,0.003250,0.249979,0,0);}
.mb8_c00312{transform:matrix(0.186949,-0.002430,0.003250,0.249979,0,0);-ms-transform:matrix(0.186949,-0.002430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186949,-0.002430,0.003250,0.249979,0,0);}
.m8b_c00312{transform:matrix(0.187069,-0.002432,0.003250,0.249979,0,0);-ms-transform:matrix(0.187069,-0.002432,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187069,-0.002432,0.003250,0.249979,0,0);}
.m57_c00312{transform:matrix(0.187214,-0.002434,0.003250,0.249979,0,0);-ms-transform:matrix(0.187214,-0.002434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187214,-0.002434,0.003250,0.249979,0,0);}
.m49_c00312{transform:matrix(0.187404,-0.002436,0.003250,0.249979,0,0);-ms-transform:matrix(0.187404,-0.002436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187404,-0.002436,0.003250,0.249979,0,0);}
.m79_c00312{transform:matrix(0.187554,-0.002438,0.003250,0.249979,0,0);-ms-transform:matrix(0.187554,-0.002438,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187554,-0.002438,0.003250,0.249979,0,0);}
.m5a_c00312{transform:matrix(0.187579,-0.002439,0.003250,0.249979,0,0);-ms-transform:matrix(0.187579,-0.002439,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187579,-0.002439,0.003250,0.249979,0,0);}
.ma3_c00312{transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);}
.m8f_c00312{transform:matrix(0.187914,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187914,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187914,-0.002443,0.003250,0.249979,0,0);}
.m46_c00312{transform:matrix(0.187929,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187929,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187929,-0.002443,0.003250,0.249979,0,0);}
.m48_c00312{transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);-ms-transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);}
.mc8_c00312{transform:matrix(0.189209,-0.002460,0.003250,0.249979,0,0);-ms-transform:matrix(0.189209,-0.002460,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189209,-0.002460,0.003250,0.249979,0,0);}
.m65_c00312{transform:matrix(0.189684,-0.002466,0.003250,0.249979,0,0);-ms-transform:matrix(0.189684,-0.002466,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189684,-0.002466,0.003250,0.249979,0,0);}
.m96_c00312{transform:matrix(0.189839,-0.002468,0.003250,0.249979,0,0);-ms-transform:matrix(0.189839,-0.002468,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189839,-0.002468,0.003250,0.249979,0,0);}
.m84_c00312{transform:matrix(0.190269,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190269,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190269,-0.002473,0.003250,0.249979,0,0);}
.mb2_c00312{transform:matrix(0.190599,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190599,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190599,-0.002478,0.003250,0.249979,0,0);}
.m60_c00312{transform:matrix(0.190909,-0.002482,0.003250,0.249979,0,0);-ms-transform:matrix(0.190909,-0.002482,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190909,-0.002482,0.003250,0.249979,0,0);}
.md1_c00312{transform:matrix(0.191374,-0.002488,0.003250,0.249979,0,0);-ms-transform:matrix(0.191374,-0.002488,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191374,-0.002488,0.003250,0.249979,0,0);}
.meb_c00312{transform:matrix(0.191459,-0.002489,0.003250,0.249979,0,0);-ms-transform:matrix(0.191459,-0.002489,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191459,-0.002489,0.003250,0.249979,0,0);}
.m15_c00312{transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);}
.m9f_c00312{transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);-ms-transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);}
.m3d_c00312{transform:matrix(0.192044,-0.002497,0.003250,0.249979,0,0);-ms-transform:matrix(0.192044,-0.002497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192044,-0.002497,0.003250,0.249979,0,0);}
.m54_c00312{transform:matrix(0.192869,-0.002507,0.003250,0.249979,0,0);-ms-transform:matrix(0.192869,-0.002507,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192869,-0.002507,0.003250,0.249979,0,0);}
.m56_c00312{transform:matrix(0.193044,-0.002510,0.003250,0.249979,0,0);-ms-transform:matrix(0.193044,-0.002510,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193044,-0.002510,0.003250,0.249979,0,0);}
.me3_c00312{transform:matrix(0.193734,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193734,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193734,-0.002519,0.003250,0.249979,0,0);}
.m3a_c00312{transform:matrix(0.193844,-0.002520,0.003250,0.249979,0,0);-ms-transform:matrix(0.193844,-0.002520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193844,-0.002520,0.003250,0.249979,0,0);}
.mba_c00312{transform:matrix(0.194014,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194014,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194014,-0.002522,0.003250,0.249979,0,0);}
.m19_c00312{transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);}
.m36_c00312{transform:matrix(0.194224,-0.002525,0.003250,0.249979,0,0);-ms-transform:matrix(0.194224,-0.002525,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194224,-0.002525,0.003250,0.249979,0,0);}
.m31_c00312{transform:matrix(0.194679,-0.002531,0.003250,0.249979,0,0);-ms-transform:matrix(0.194679,-0.002531,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194679,-0.002531,0.003250,0.249979,0,0);}
.me1_c00312{transform:matrix(0.194809,-0.002533,0.003250,0.249979,0,0);-ms-transform:matrix(0.194809,-0.002533,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194809,-0.002533,0.003250,0.249979,0,0);}
.mc9_c00312{transform:matrix(0.195109,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195109,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195109,-0.002536,0.003250,0.249979,0,0);}
.mdf_c00312{transform:matrix(0.195773,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195773,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195773,-0.002545,0.003250,0.249979,0,0);}
.me4_c00312{transform:matrix(0.195923,-0.002547,0.003250,0.249979,0,0);-ms-transform:matrix(0.195923,-0.002547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195923,-0.002547,0.003250,0.249979,0,0);}
.ma8_c00312{transform:matrix(0.196173,-0.002550,0.003250,0.249979,0,0);-ms-transform:matrix(0.196173,-0.002550,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196173,-0.002550,0.003250,0.249979,0,0);}
.m8c_c00312{transform:matrix(0.196628,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196628,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196628,-0.002556,0.003250,0.249979,0,0);}
.m4e_c00312{transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196838,-0.002559,0.003250,0.249979,0,0);}
.m9a_c00312{transform:matrix(0.196938,-0.002560,0.003250,0.249979,0,0);-ms-transform:matrix(0.196938,-0.002560,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196938,-0.002560,0.003250,0.249979,0,0);}
.m83_c00312{transform:matrix(0.197263,-0.002564,0.003250,0.249979,0,0);-ms-transform:matrix(0.197263,-0.002564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197263,-0.002564,0.003250,0.249979,0,0);}
.m81_c00312{transform:matrix(0.197508,-0.002568,0.003250,0.249979,0,0);-ms-transform:matrix(0.197508,-0.002568,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197508,-0.002568,0.003250,0.249979,0,0);}
.mb_c00312{transform:matrix(0.197588,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197588,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197588,-0.002569,0.003250,0.249979,0,0);}
.m27_c00312{transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);-ms-transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197838,-0.002572,0.003250,0.249979,0,0);}
.m8d_c00312{transform:matrix(0.198238,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198238,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198238,-0.002577,0.003250,0.249979,0,0);}
.mbc_c00312{transform:matrix(0.198728,-0.002583,0.003250,0.249979,0,0);-ms-transform:matrix(0.198728,-0.002583,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198728,-0.002583,0.003250,0.249979,0,0);}
.m4f_c00312{transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199068,-0.002588,0.003250,0.249979,0,0);}
.m8a_c00312{transform:matrix(0.199618,-0.002595,0.003250,0.249979,0,0);-ms-transform:matrix(0.199618,-0.002595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199618,-0.002595,0.003250,0.249979,0,0);}
.m69_c00312{transform:matrix(0.200263,-0.002603,0.003250,0.249979,0,0);-ms-transform:matrix(0.200263,-0.002603,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200263,-0.002603,0.003250,0.249979,0,0);}
.m4a_c00312{transform:matrix(0.200428,-0.002606,0.003250,0.249979,0,0);-ms-transform:matrix(0.200428,-0.002606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200428,-0.002606,0.003250,0.249979,0,0);}
.m7d_c00312{transform:matrix(0.200848,-0.002611,0.003250,0.249979,0,0);-ms-transform:matrix(0.200848,-0.002611,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200848,-0.002611,0.003250,0.249979,0,0);}
.mf_c00312{transform:matrix(0.201463,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201463,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201463,-0.002619,0.003250,0.249979,0,0);}
.ma7_c00312{transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);}
.m1b_c00312{transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);-ms-transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202633,-0.002634,0.003250,0.249979,0,0);}
.m53_c00312{transform:matrix(0.203103,-0.002640,0.003250,0.249979,0,0);-ms-transform:matrix(0.203103,-0.002640,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203103,-0.002640,0.003250,0.249979,0,0);}
.m44_c00312{transform:matrix(0.203783,-0.002649,0.003250,0.249979,0,0);-ms-transform:matrix(0.203783,-0.002649,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203783,-0.002649,0.003250,0.249979,0,0);}
.ma1_c00312{transform:matrix(0.203873,-0.002650,0.003250,0.249979,0,0);-ms-transform:matrix(0.203873,-0.002650,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203873,-0.002650,0.003250,0.249979,0,0);}
.m5b_c00312{transform:matrix(0.204083,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204083,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204083,-0.002653,0.003250,0.249979,0,0);}
.me5_c00312{transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204348,-0.002657,0.003250,0.249979,0,0);}
.m89_c00312{transform:matrix(0.204933,-0.002664,0.003250,0.249979,0,0);-ms-transform:matrix(0.204933,-0.002664,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204933,-0.002664,0.003250,0.249979,0,0);}
.mc_c00312{transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);-ms-transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);}
.mdd_c00312{transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);-ms-transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);}
.m90_c00312{transform:matrix(0.206218,-0.002681,0.003250,0.249979,0,0);-ms-transform:matrix(0.206218,-0.002681,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206218,-0.002681,0.003250,0.249979,0,0);}
.me2_c00312{transform:matrix(0.206393,-0.002683,0.003250,0.249979,0,0);-ms-transform:matrix(0.206393,-0.002683,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206393,-0.002683,0.003250,0.249979,0,0);}
.m91_c00312{transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);-ms-transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206543,-0.002685,0.003250,0.249979,0,0);}
.m29_c00312{transform:matrix(0.206848,-0.002689,0.003250,0.249979,0,0);-ms-transform:matrix(0.206848,-0.002689,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206848,-0.002689,0.003250,0.249979,0,0);}
.ma9_c00312{transform:matrix(0.207992,-0.002704,0.003250,0.249979,0,0);-ms-transform:matrix(0.207992,-0.002704,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207992,-0.002704,0.003250,0.249979,0,0);}
.m6e_c00312{transform:matrix(0.208377,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208377,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208377,-0.002709,0.003250,0.249979,0,0);}
.m59_c00312{transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);-ms-transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208782,-0.002714,0.003250,0.249979,0,0);}
.m6a_c00312{transform:matrix(0.208907,-0.002716,0.003250,0.249979,0,0);-ms-transform:matrix(0.208907,-0.002716,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208907,-0.002716,0.003250,0.249979,0,0);}
.m1f_c00312{transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209402,-0.002722,0.003250,0.249979,0,0);}
.m3e_c00312{transform:matrix(0.209422,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209422,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209422,-0.002722,0.003250,0.249979,0,0);}
.mde_c00312{transform:matrix(0.209452,-0.002723,0.003250,0.249979,0,0);-ms-transform:matrix(0.209452,-0.002723,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209452,-0.002723,0.003250,0.249979,0,0);}
.m72_c00312{transform:matrix(0.209587,-0.002725,0.003250,0.249979,0,0);-ms-transform:matrix(0.209587,-0.002725,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209587,-0.002725,0.003250,0.249979,0,0);}
.m5c_c00312{transform:matrix(0.209722,-0.002726,0.003250,0.249979,0,0);-ms-transform:matrix(0.209722,-0.002726,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209722,-0.002726,0.003250,0.249979,0,0);}
.mbe_c00312{transform:matrix(0.209927,-0.002729,0.003250,0.249979,0,0);-ms-transform:matrix(0.209927,-0.002729,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209927,-0.002729,0.003250,0.249979,0,0);}
.mdc_c00312{transform:matrix(0.209952,-0.002729,0.003250,0.249979,0,0);-ms-transform:matrix(0.209952,-0.002729,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209952,-0.002729,0.003250,0.249979,0,0);}
.m6d_c00312{transform:matrix(0.210852,-0.002741,0.003250,0.249979,0,0);-ms-transform:matrix(0.210852,-0.002741,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210852,-0.002741,0.003250,0.249979,0,0);}
.mbd_c00312{transform:matrix(0.211087,-0.002744,0.003250,0.249979,0,0);-ms-transform:matrix(0.211087,-0.002744,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211087,-0.002744,0.003250,0.249979,0,0);}
.m1c_c00312{transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211162,-0.002745,0.003250,0.249979,0,0);}
.m32_c00312{transform:matrix(0.211502,-0.002750,0.003250,0.249979,0,0);-ms-transform:matrix(0.211502,-0.002750,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211502,-0.002750,0.003250,0.249979,0,0);}
.m94_c00312{transform:matrix(0.211822,-0.002754,0.003250,0.249979,0,0);-ms-transform:matrix(0.211822,-0.002754,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211822,-0.002754,0.003250,0.249979,0,0);}
.m9d_c00312{transform:matrix(0.212092,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212092,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212092,-0.002757,0.003250,0.249979,0,0);}
.m86_c00312{transform:matrix(0.212512,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212512,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212512,-0.002763,0.003250,0.249979,0,0);}
.mc0_c00312{transform:matrix(0.212607,-0.002764,0.003250,0.249979,0,0);-ms-transform:matrix(0.212607,-0.002764,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212607,-0.002764,0.003250,0.249979,0,0);}
.m1d_c00312{transform:matrix(0.212682,-0.002765,0.003250,0.249979,0,0);-ms-transform:matrix(0.212682,-0.002765,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212682,-0.002765,0.003250,0.249979,0,0);}
.m98_c00312{transform:matrix(0.212877,-0.002767,0.003250,0.249979,0,0);-ms-transform:matrix(0.212877,-0.002767,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212877,-0.002767,0.003250,0.249979,0,0);}
.m80_c00312{transform:matrix(0.213022,-0.002769,0.003250,0.249979,0,0);-ms-transform:matrix(0.213022,-0.002769,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213022,-0.002769,0.003250,0.249979,0,0);}
.me_c00312{transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);-ms-transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);}
.mae_c00312{transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);}
.m5e_c00312{transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213422,-0.002774,0.003250,0.249979,0,0);}
.md2_c00312{transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);-ms-transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);}
.m4c_c00312{transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);-ms-transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214447,-0.002788,0.003250,0.249979,0,0);}
.mea_c00312{transform:matrix(0.215677,-0.002804,0.003250,0.249979,0,0);-ms-transform:matrix(0.215677,-0.002804,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215677,-0.002804,0.003250,0.249979,0,0);}
.m39_c00312{transform:matrix(0.215817,-0.002806,0.003250,0.249979,0,0);-ms-transform:matrix(0.215817,-0.002806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215817,-0.002806,0.003250,0.249979,0,0);}
.m9c_c00312{transform:matrix(0.215822,-0.002806,0.003250,0.249979,0,0);-ms-transform:matrix(0.215822,-0.002806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215822,-0.002806,0.003250,0.249979,0,0);}
.m5f_c00312{transform:matrix(0.216647,-0.002816,0.003250,0.249979,0,0);-ms-transform:matrix(0.216647,-0.002816,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216647,-0.002816,0.003250,0.249979,0,0);}
.m28_c00312{transform:matrix(0.218027,-0.002834,0.003250,0.249979,0,0);-ms-transform:matrix(0.218027,-0.002834,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218027,-0.002834,0.003250,0.249979,0,0);}
.m14_c00312{transform:matrix(0.218307,-0.002838,0.003250,0.249979,0,0);-ms-transform:matrix(0.218307,-0.002838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218307,-0.002838,0.003250,0.249979,0,0);}
.m74_c00312{transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);-ms-transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218976,-0.002847,0.003250,0.249979,0,0);}
.m13_c00312{transform:matrix(0.219221,-0.002850,0.003250,0.249979,0,0);-ms-transform:matrix(0.219221,-0.002850,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219221,-0.002850,0.003250,0.249979,0,0);}
.m9e_c00312{transform:matrix(0.219371,-0.002852,0.003250,0.249979,0,0);-ms-transform:matrix(0.219371,-0.002852,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219371,-0.002852,0.003250,0.249979,0,0);}
.me0_c00312{transform:matrix(0.219396,-0.002852,0.003250,0.249979,0,0);-ms-transform:matrix(0.219396,-0.002852,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219396,-0.002852,0.003250,0.249979,0,0);}
.ma2_c00312{transform:matrix(0.219806,-0.002857,0.003250,0.249979,0,0);-ms-transform:matrix(0.219806,-0.002857,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219806,-0.002857,0.003250,0.249979,0,0);}
.m34_c00312{transform:matrix(0.220151,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220151,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220151,-0.002862,0.003250,0.249979,0,0);}
.m17_c00312{transform:matrix(0.220161,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220161,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220161,-0.002862,0.003250,0.249979,0,0);}
.m66_c00312{transform:matrix(0.221091,-0.002874,0.003250,0.249979,0,0);-ms-transform:matrix(0.221091,-0.002874,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221091,-0.002874,0.003250,0.249979,0,0);}
.mda_c00312{transform:matrix(0.221131,-0.002875,0.003250,0.249979,0,0);-ms-transform:matrix(0.221131,-0.002875,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221131,-0.002875,0.003250,0.249979,0,0);}
.mb6_c00312{transform:matrix(0.221191,-0.002875,0.003250,0.249979,0,0);-ms-transform:matrix(0.221191,-0.002875,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221191,-0.002875,0.003250,0.249979,0,0);}
.m2e_c00312{transform:matrix(0.221696,-0.002882,0.003250,0.249979,0,0);-ms-transform:matrix(0.221696,-0.002882,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221696,-0.002882,0.003250,0.249979,0,0);}
.m85_c00312{transform:matrix(0.221781,-0.002883,0.003250,0.249979,0,0);-ms-transform:matrix(0.221781,-0.002883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221781,-0.002883,0.003250,0.249979,0,0);}
.md7_c00312{transform:matrix(0.222466,-0.002892,0.003250,0.249979,0,0);-ms-transform:matrix(0.222466,-0.002892,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222466,-0.002892,0.003250,0.249979,0,0);}
.mc4_c00312{transform:matrix(0.222881,-0.002897,0.003250,0.249979,0,0);-ms-transform:matrix(0.222881,-0.002897,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222881,-0.002897,0.003250,0.249979,0,0);}
.mc1_c00312{transform:matrix(0.223086,-0.002900,0.003250,0.249979,0,0);-ms-transform:matrix(0.223086,-0.002900,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223086,-0.002900,0.003250,0.249979,0,0);}
.md0_c00312{transform:matrix(0.223116,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223116,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223116,-0.002901,0.003250,0.249979,0,0);}
.maa_c00312{transform:matrix(0.224161,-0.002914,0.003250,0.249979,0,0);-ms-transform:matrix(0.224161,-0.002914,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224161,-0.002914,0.003250,0.249979,0,0);}
.mb9_c00312{transform:matrix(0.224346,-0.002916,0.003250,0.249979,0,0);-ms-transform:matrix(0.224346,-0.002916,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224346,-0.002916,0.003250,0.249979,0,0);}
.m73_c00312{transform:matrix(0.224921,-0.002924,0.003250,0.249979,0,0);-ms-transform:matrix(0.224921,-0.002924,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224921,-0.002924,0.003250,0.249979,0,0);}
.ma6_c00312{transform:matrix(0.224946,-0.002924,0.003250,0.249979,0,0);-ms-transform:matrix(0.224946,-0.002924,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224946,-0.002924,0.003250,0.249979,0,0);}
.mb0_c00312{transform:matrix(0.225021,-0.002925,0.003250,0.249979,0,0);-ms-transform:matrix(0.225021,-0.002925,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225021,-0.002925,0.003250,0.249979,0,0);}
.md3_c00312{transform:matrix(0.225581,-0.002933,0.003250,0.249979,0,0);-ms-transform:matrix(0.225581,-0.002933,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225581,-0.002933,0.003250,0.249979,0,0);}
.m6b_c00312{transform:matrix(0.226921,-0.002950,0.003250,0.249979,0,0);-ms-transform:matrix(0.226921,-0.002950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226921,-0.002950,0.003250,0.249979,0,0);}
.m50_c00312{transform:matrix(0.226936,-0.002950,0.003250,0.249979,0,0);-ms-transform:matrix(0.226936,-0.002950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226936,-0.002950,0.003250,0.249979,0,0);}
.m99_c00312{transform:matrix(0.227476,-0.002957,0.003250,0.249979,0,0);-ms-transform:matrix(0.227476,-0.002957,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227476,-0.002957,0.003250,0.249979,0,0);}
.m55_c00312{transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);-ms-transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229036,-0.002977,0.003250,0.249979,0,0);}
.m95_c00312{transform:matrix(0.229471,-0.002983,0.003250,0.249979,0,0);-ms-transform:matrix(0.229471,-0.002983,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229471,-0.002983,0.003250,0.249979,0,0);}
.mc3_c00312{transform:matrix(0.230061,-0.002991,0.003250,0.249979,0,0);-ms-transform:matrix(0.230061,-0.002991,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230061,-0.002991,0.003250,0.249979,0,0);}
.md4_c00312{transform:matrix(0.230526,-0.002997,0.003250,0.249979,0,0);-ms-transform:matrix(0.230526,-0.002997,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230526,-0.002997,0.003250,0.249979,0,0);}
.m35_c00312{transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);-ms-transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);}
.m88_c00312{transform:matrix(0.232355,-0.003021,0.003250,0.249979,0,0);-ms-transform:matrix(0.232355,-0.003021,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232355,-0.003021,0.003250,0.249979,0,0);}
.m6c_c00312{transform:matrix(0.233125,-0.003031,0.003250,0.249979,0,0);-ms-transform:matrix(0.233125,-0.003031,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233125,-0.003031,0.003250,0.249979,0,0);}
.m1e_c00312{transform:matrix(0.233185,-0.003031,0.003250,0.249979,0,0);-ms-transform:matrix(0.233185,-0.003031,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233185,-0.003031,0.003250,0.249979,0,0);}
.m62_c00312{transform:matrix(0.234680,-0.003051,0.003250,0.249979,0,0);-ms-transform:matrix(0.234680,-0.003051,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234680,-0.003051,0.003250,0.249979,0,0);}
.mb7_c00312{transform:matrix(0.237175,-0.003083,0.003250,0.249979,0,0);-ms-transform:matrix(0.237175,-0.003083,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237175,-0.003083,0.003250,0.249979,0,0);}
.m51_c00312{transform:matrix(0.237545,-0.003088,0.003250,0.249979,0,0);-ms-transform:matrix(0.237545,-0.003088,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237545,-0.003088,0.003250,0.249979,0,0);}
.mb3_c00312{transform:matrix(0.238160,-0.003096,0.003250,0.249979,0,0);-ms-transform:matrix(0.238160,-0.003096,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238160,-0.003096,0.003250,0.249979,0,0);}
.mb1_c00312{transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);-ms-transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238925,-0.003106,0.003250,0.249979,0,0);}
.m93_c00312{transform:matrix(0.239765,-0.003117,0.003250,0.249979,0,0);-ms-transform:matrix(0.239765,-0.003117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239765,-0.003117,0.003250,0.249979,0,0);}
.ma4_c00312{transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);-ms-transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);}
.m16_c00312{transform:matrix(0.241190,-0.003135,0.003250,0.249979,0,0);-ms-transform:matrix(0.241190,-0.003135,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241190,-0.003135,0.003250,0.249979,0,0);}
.m61_c00312{transform:matrix(0.242545,-0.003153,0.003250,0.249979,0,0);-ms-transform:matrix(0.242545,-0.003153,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242545,-0.003153,0.003250,0.249979,0,0);}
.mb5_c00312{transform:matrix(0.243209,-0.003162,0.003250,0.249979,0,0);-ms-transform:matrix(0.243209,-0.003162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243209,-0.003162,0.003250,0.249979,0,0);}
.m3c_c00312{transform:matrix(0.243354,-0.003164,0.003250,0.249979,0,0);-ms-transform:matrix(0.243354,-0.003164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243354,-0.003164,0.003250,0.249979,0,0);}
.mbf_c00312{transform:matrix(0.243414,-0.003164,0.003250,0.249979,0,0);-ms-transform:matrix(0.243414,-0.003164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243414,-0.003164,0.003250,0.249979,0,0);}
.md_c00312{transform:matrix(0.244589,-0.003180,0.003250,0.249979,0,0);-ms-transform:matrix(0.244589,-0.003180,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244589,-0.003180,0.003250,0.249979,0,0);}
.m64_c00312{transform:matrix(0.247819,-0.003222,0.003250,0.249979,0,0);-ms-transform:matrix(0.247819,-0.003222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247819,-0.003222,0.003250,0.249979,0,0);}
.m40_c00312{transform:matrix(0.250579,-0.003258,0.003250,0.249979,0,0);-ms-transform:matrix(0.250579,-0.003258,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250579,-0.003258,0.003250,0.249979,0,0);}
.m41_c00312{transform:matrix(0.251754,-0.003273,0.003250,0.249979,0,0);-ms-transform:matrix(0.251754,-0.003273,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251754,-0.003273,0.003250,0.249979,0,0);}
.md6_c00312{transform:matrix(0.252884,-0.003287,0.003250,0.249979,0,0);-ms-transform:matrix(0.252884,-0.003287,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252884,-0.003287,0.003250,0.249979,0,0);}
.md5_c00312{transform:matrix(0.253339,-0.003293,0.003250,0.249979,0,0);-ms-transform:matrix(0.253339,-0.003293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253339,-0.003293,0.003250,0.249979,0,0);}
.m63_c00312{transform:matrix(0.254044,-0.003303,0.003250,0.249979,0,0);-ms-transform:matrix(0.254044,-0.003303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254044,-0.003303,0.003250,0.249979,0,0);}
.mc2_c00312{transform:matrix(0.260898,-0.003392,0.003250,0.249979,0,0);-ms-transform:matrix(0.260898,-0.003392,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260898,-0.003392,0.003250,0.249979,0,0);}
.m6f_c00312{transform:matrix(0.262883,-0.003417,0.003250,0.249979,0,0);-ms-transform:matrix(0.262883,-0.003417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262883,-0.003417,0.003250,0.249979,0,0);}
.m76_c00312{transform:matrix(0.267132,-0.003473,0.003250,0.249979,0,0);-ms-transform:matrix(0.267132,-0.003473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267132,-0.003473,0.003250,0.249979,0,0);}
.m4b_c00312{transform:matrix(0.268047,-0.003485,0.003250,0.249979,0,0);-ms-transform:matrix(0.268047,-0.003485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268047,-0.003485,0.003250,0.249979,0,0);}
.ma_c00312{transform:matrix(0.273937,-0.003561,0.003250,0.249979,0,0);-ms-transform:matrix(0.273937,-0.003561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.273937,-0.003561,0.003250,0.249979,0,0);}
.mb4_c00312{transform:matrix(0.278341,-0.003618,0.003250,0.249979,0,0);-ms-transform:matrix(0.278341,-0.003618,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278341,-0.003618,0.003250,0.249979,0,0);}
.m0_c00312{transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.369719,-0.004806,0.003250,0.249979,0,0);-ms-transform:matrix(0.369719,-0.004806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.369719,-0.004806,0.003250,0.249979,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:0.000000px;}
.fc0_c00312{color:transparent;}
.fsc_c00312{font-size:53.554525px;}
.fsb_c00312{font-size:56.704791px;}
.fs8_c00312{font-size:57.754880px;}
.fs7_c00312{font-size:58.804968px;}
.fsa_c00312{font-size:59.855057px;}
.fs3_c00312{font-size:60.905146px;}
.fse_c00312{font-size:63.005323px;}
.fs2_c00312{font-size:64.055412px;}
.fs6_c00312{font-size:65.105501px;}
.fs0_c00312{font-size:66.150000px;}
.fs5_c00312{font-size:67.205678px;}
.fs9_c00312{font-size:68.255767px;}
.fsd_c00312{font-size:70.355944px;}
.fs4_c00312{font-size:74.556299px;}
.fs1_c00312{font-size:76.656477px;}
.y0_c00312{bottom:0.000000px;}
.yef_c00312{bottom:27.911547px;}
.yee_c00312{bottom:27.911985px;}
.ye9_c00312{bottom:27.912329px;}
.yeb_c00312{bottom:27.912552px;}
.yed_c00312{bottom:27.912654px;}
.yea_c00312{bottom:27.913010px;}
.yec_c00312{bottom:27.913143px;}
.ye8_c00312{bottom:44.985272px;}
.ye7_c00312{bottom:44.985321px;}
.ye6_c00312{bottom:44.985900px;}
.ye4_c00312{bottom:44.986028px;}
.ye5_c00312{bottom:44.986359px;}
.ye3_c00312{bottom:44.986367px;}
.ye2_c00312{bottom:44.986956px;}
.ye1_c00312{bottom:44.987655px;}
.ydd_c00312{bottom:62.926500px;}
.ydb_c00312{bottom:62.926658px;}
.ydc_c00312{bottom:62.926679px;}
.ye0_c00312{bottom:62.926835px;}
.yde_c00312{bottom:62.927022px;}
.ydf_c00312{bottom:62.927483px;}
.yd8_c00312{bottom:78.467267px;}
.yd9_c00312{bottom:78.467907px;}
.yd7_c00312{bottom:78.467915px;}
.yda_c00312{bottom:78.467988px;}
.yd6_c00312{bottom:78.468513px;}
.yd5_c00312{bottom:78.468752px;}
.yd3_c00312{bottom:78.469320px;}
.yd4_c00312{bottom:78.469401px;}
.yd0_c00312{bottom:95.912478px;}
.ycd_c00312{bottom:95.912525px;}
.yd1_c00312{bottom:95.912531px;}
.ycf_c00312{bottom:95.912717px;}
.yce_c00312{bottom:95.912756px;}
.yd2_c00312{bottom:95.913002px;}
.yc7_c00312{bottom:111.746187px;}
.yc8_c00312{bottom:111.998577px;}
.yc9_c00312{bottom:112.694708px;}
.yca_c00312{bottom:113.579360px;}
.ycb_c00312{bottom:114.013836px;}
.ycc_c00312{bottom:115.027998px;}
.yc0_c00312{bottom:133.655591px;}
.yc1_c00312{bottom:133.655952px;}
.yc2_c00312{bottom:133.656173px;}
.yc4_c00312{bottom:133.656755px;}
.yc3_c00312{bottom:133.656813px;}
.yc5_c00312{bottom:133.657386px;}
.yc6_c00312{bottom:133.657707px;}
.yb9_c00312{bottom:147.111333px;}
.yb8_c00312{bottom:147.111353px;}
.ybf_c00312{bottom:147.111720px;}
.ybd_c00312{bottom:147.111888px;}
.ybc_c00312{bottom:147.111938px;}
.ybe_c00312{bottom:147.111950px;}
.yba_c00312{bottom:147.112055px;}
.ybb_c00312{bottom:147.112266px;}
.yb5_c00312{bottom:163.522838px;}
.yb4_c00312{bottom:163.522857px;}
.yb1_c00312{bottom:163.522874px;}
.yb3_c00312{bottom:163.522986px;}
.yb7_c00312{bottom:163.523150px;}
.yb6_c00312{bottom:163.523238px;}
.yb0_c00312{bottom:163.523523px;}
.yb2_c00312{bottom:163.523576px;}
.yaf_c00312{bottom:163.523903px;}
.yab_c00312{bottom:180.827360px;}
.yac_c00312{bottom:180.827380px;}
.yae_c00312{bottom:180.827445px;}
.ya9_c00312{bottom:180.827527px;}
.yad_c00312{bottom:180.827553px;}
.yaa_c00312{bottom:180.827619px;}
.ya8_c00312{bottom:180.828046px;}
.ya6_c00312{bottom:197.645010px;}
.ya7_c00312{bottom:197.645361px;}
.ya5_c00312{bottom:197.645649px;}
.ya3_c00312{bottom:197.646156px;}
.ya4_c00312{bottom:197.646267px;}
.ya1_c00312{bottom:197.646523px;}
.ya2_c00312{bottom:197.646805px;}
.ya0_c00312{bottom:215.434123px;}
.y9d_c00312{bottom:215.434390px;}
.y9e_c00312{bottom:215.434422px;}
.y9b_c00312{bottom:215.434477px;}
.y9f_c00312{bottom:215.434582px;}
.y9c_c00312{bottom:215.435089px;}
.y9a_c00312{bottom:215.435157px;}
.y96_c00312{bottom:231.571960px;}
.y99_c00312{bottom:231.572415px;}
.y98_c00312{bottom:231.572422px;}
.y97_c00312{bottom:231.572502px;}
.y95_c00312{bottom:231.572670px;}
.y94_c00312{bottom:231.572869px;}
.y93_c00312{bottom:231.573068px;}
.y8d_c00312{bottom:249.251191px;}
.y92_c00312{bottom:249.251448px;}
.y8e_c00312{bottom:249.251802px;}
.y91_c00312{bottom:249.252027px;}
.y8f_c00312{bottom:249.252144px;}
.y90_c00312{bottom:249.252575px;}
.y85_c00312{bottom:266.104029px;}
.y86_c00312{bottom:266.104350px;}
.y84_c00312{bottom:266.104398px;}
.y8c_c00312{bottom:266.104836px;}
.y87_c00312{bottom:266.104982px;}
.y89_c00312{bottom:266.105124px;}
.y88_c00312{bottom:266.105352px;}
.y8b_c00312{bottom:266.105365px;}
.y8a_c00312{bottom:266.105855px;}
.y7b_c00312{bottom:283.951902px;}
.y7c_c00312{bottom:283.952363px;}
.y7a_c00312{bottom:283.952391px;}
.y7d_c00312{bottom:283.952973px;}
.y7e_c00312{bottom:283.953144px;}
.y80_c00312{bottom:283.953606px;}
.y7f_c00312{bottom:283.953875px;}
.y81_c00312{bottom:283.954157px;}
.y82_c00312{bottom:283.954887px;}
.y83_c00312{bottom:283.955609px;}
.y76_c00312{bottom:301.526771px;}
.y71_c00312{bottom:301.527276px;}
.y75_c00312{bottom:301.527339px;}
.y79_c00312{bottom:301.527344px;}
.y70_c00312{bottom:301.527365px;}
.y77_c00312{bottom:301.527452px;}
.y72_c00312{bottom:301.527707px;}
.y73_c00312{bottom:301.527837px;}
.y78_c00312{bottom:301.528013px;}
.y74_c00312{bottom:301.528049px;}
.y6c_c00312{bottom:318.632255px;}
.y6b_c00312{bottom:318.632394px;}
.y6d_c00312{bottom:318.632406px;}
.y69_c00312{bottom:318.632521px;}
.y68_c00312{bottom:318.632721px;}
.y6e_c00312{bottom:318.632957px;}
.y6a_c00312{bottom:318.632982px;}
.y6f_c00312{bottom:318.633267px;}
.y64_c00312{bottom:334.760483px;}
.y66_c00312{bottom:334.760588px;}
.y63_c00312{bottom:334.760942px;}
.y65_c00312{bottom:334.761114px;}
.y67_c00312{bottom:334.761258px;}
.y5b_c00312{bottom:348.285660px;}
.y5c_c00312{bottom:348.758678px;}
.y5d_c00312{bottom:349.924581px;}
.y5e_c00312{bottom:350.277429px;}
.y5f_c00312{bottom:350.664023px;}
.y60_c00312{bottom:351.870692px;}
.y61_c00312{bottom:352.255668px;}
.y62_c00312{bottom:352.589079px;}
.y53_c00312{bottom:365.027474px;}
.y54_c00312{bottom:365.587584px;}
.y55_c00312{bottom:366.020501px;}
.y56_c00312{bottom:366.827279px;}
.y57_c00312{bottom:367.044605px;}
.y58_c00312{bottom:368.132227px;}
.y59_c00312{bottom:368.547246px;}
.y5a_c00312{bottom:368.940390px;}
.y4a_c00312{bottom:385.293753px;}
.y4c_c00312{bottom:385.294065px;}
.y4b_c00312{bottom:385.294415px;}
.y4d_c00312{bottom:385.294646px;}
.y4f_c00312{bottom:385.294868px;}
.y4e_c00312{bottom:385.294986px;}
.y52_c00312{bottom:385.295381px;}
.y51_c00312{bottom:385.295430px;}
.y50_c00312{bottom:385.295568px;}
.y42_c00312{bottom:398.777400px;}
.y43_c00312{bottom:399.409023px;}
.y44_c00312{bottom:399.602653px;}
.y45_c00312{bottom:400.108088px;}
.y46_c00312{bottom:400.345407px;}
.y47_c00312{bottom:401.102477px;}
.y48_c00312{bottom:401.296185px;}
.y49_c00312{bottom:401.854104px;}
.y3b_c00312{bottom:414.710893px;}
.y3c_c00312{bottom:415.181112px;}
.y3d_c00312{bottom:416.355110px;}
.y3e_c00312{bottom:416.646966px;}
.y3f_c00312{bottom:417.670443px;}
.y40_c00312{bottom:418.023327px;}
.y41_c00312{bottom:419.017948px;}
.y34_c00312{bottom:432.261513px;}
.y35_c00312{bottom:432.732087px;}
.y36_c00312{bottom:433.427321px;}
.y37_c00312{bottom:434.307434px;}
.y38_c00312{bottom:434.571483px;}
.y39_c00312{bottom:434.869950px;}
.y3a_c00312{bottom:435.680838px;}
.y31_c00312{bottom:450.844175px;}
.y30_c00312{bottom:450.844443px;}
.y2c_c00312{bottom:450.844790px;}
.y33_c00312{bottom:450.844817px;}
.y32_c00312{bottom:450.844866px;}
.y2e_c00312{bottom:450.844911px;}
.y2f_c00312{bottom:450.844992px;}
.y2d_c00312{bottom:450.845231px;}
.y26_c00312{bottom:466.554123px;}
.y27_c00312{bottom:467.370948px;}
.y28_c00312{bottom:467.520739px;}
.y29_c00312{bottom:468.279197px;}
.y2a_c00312{bottom:469.350889px;}
.y2b_c00312{bottom:469.778385px;}
.y1f_c00312{bottom:483.563252px;}
.y20_c00312{bottom:483.680553px;}
.y21_c00312{bottom:484.403147px;}
.y22_c00312{bottom:485.236197px;}
.y23_c00312{bottom:485.378793px;}
.y24_c00312{bottom:485.654624px;}
.y25_c00312{bottom:486.432582px;}
.y18_c00312{bottom:498.957180px;}
.y19_c00312{bottom:499.524902px;}
.y1a_c00312{bottom:499.843892px;}
.y1b_c00312{bottom:500.312619px;}
.y1c_c00312{bottom:500.668064px;}
.y1d_c00312{bottom:501.683771px;}
.y1e_c00312{bottom:502.650819px;}
.y10_c00312{bottom:516.240362px;}
.y11_c00312{bottom:516.729641px;}
.y12_c00312{bottom:517.115137px;}
.y13_c00312{bottom:519.129426px;}
.y14_c00312{bottom:519.365352px;}
.y15_c00312{bottom:519.777321px;}
.y16_c00312{bottom:520.738023px;}
.y17_c00312{bottom:521.729446px;}
.ya_c00312{bottom:534.333289px;}
.yb_c00312{bottom:535.430289px;}
.yc_c00312{bottom:536.435391px;}
.yd_c00312{bottom:537.719733px;}
.ye_c00312{bottom:537.947996px;}
.yf_c00312{bottom:538.705906px;}
.y2_c00312{bottom:551.613000px;}
.y3_c00312{bottom:551.833662px;}
.y4_c00312{bottom:552.332082px;}
.y5_c00312{bottom:552.598920px;}
.y6_c00312{bottom:553.280582px;}
.y7_c00312{bottom:553.918895px;}
.y8_c00312{bottom:554.326211px;}
.y9_c00312{bottom:555.214260px;}
.y1_c00312{bottom:570.006000px;}
.he_c00312{height:53.554525px;}
.hd_c00312{height:56.704791px;}
.ha_c00312{height:57.754880px;}
.h9_c00312{height:58.804968px;}
.hc_c00312{height:59.855057px;}
.h5_c00312{height:60.905146px;}
.h10_c00312{height:63.005323px;}
.h4_c00312{height:64.055412px;}
.h8_c00312{height:65.105501px;}
.h2_c00312{height:66.150000px;}
.h7_c00312{height:67.205678px;}
.hb_c00312{height:68.255767px;}
.hf_c00312{height:70.355944px;}
.h6_c00312{height:74.556299px;}
.h3_c00312{height:76.656477px;}
.h1_c00312{height:618.750000px;}
.h0_c00312{height:619.050000px;}
.w0_c00312{width:359.100000px;}
.w1_c00312{width:359.250000px;}
.x0_c00312{left:0.000000px;}
.x65_c00312{left:11.352250px;}
.x4_c00312{left:20.443500px;}
.x22_c00312{left:22.020345px;}
.x77_c00312{left:23.233800px;}
.x5c_c00312{left:25.119829px;}
.xc_c00312{left:26.460615px;}
.x26_c00312{left:27.545966px;}
.x3f_c00312{left:28.829619px;}
.x1d_c00312{left:30.409156px;}
.x6d_c00312{left:34.844566px;}
.x5_c00312{left:37.417500px;}
.x4e_c00312{left:42.130899px;}
.x12_c00312{left:44.719509px;}
.x6b_c00312{left:47.263342px;}
.x69_c00312{left:48.885202px;}
.x18_c00312{left:51.541286px;}
.x2f_c00312{left:52.846290px;}
.x81_c00312{left:56.988124px;}
.x44_c00312{left:58.254049px;}
.x4b_c00312{left:62.921784px;}
.x13_c00312{left:63.986754px;}
.x27_c00312{left:67.509713px;}
.x19_c00312{left:69.270135px;}
.x6c_c00312{left:70.755820px;}
.x52_c00312{left:73.455022px;}
.x38_c00312{left:74.530915px;}
.x6_c00312{left:75.757500px;}
.x78_c00312{left:76.968387px;}
.x34_c00312{left:78.702661px;}
.x6e_c00312{left:82.908178px;}
.x7d_c00312{left:84.259816px;}
.x28_c00312{left:86.411411px;}
.xd_c00312{left:87.418157px;}
.x58_c00312{left:89.116089px;}
.x1e_c00312{left:90.609436px;}
.x39_c00312{left:92.622477px;}
.x7_c00312{left:96.283500px;}
.x60_c00312{left:98.568019px;}
.x72_c00312{left:101.139609px;}
.x23_c00312{left:102.491878px;}
.x74_c00312{left:105.051399px;}
.x3a_c00312{left:108.823707px;}
.x63_c00312{left:110.719829px;}
.x66_c00312{left:112.071774px;}
.x6a_c00312{left:113.960200px;}
.x1a_c00312{left:115.011152px;}
.x7e_c00312{left:116.662296px;}
.x2d_c00312{left:118.174668px;}
.x5d_c00312{left:120.978514px;}
.x4c_c00312{left:122.057268px;}
.x55_c00312{left:125.028162px;}
.x45_c00312{left:126.819981px;}
.x1_c00312{left:130.680000px;}
.x3b_c00312{left:132.046126px;}
.x5e_c00312{left:133.129062px;}
.x59_c00312{left:134.749291px;}
.x4f_c00312{left:135.829233px;}
.x35_c00312{left:142.170799px;}
.xe_c00312{left:143.268530px;}
.x56_c00312{left:145.280074px;}
.x46_c00312{left:147.614908px;}
.x8_c00312{left:148.719000px;}
.x30_c00312{left:150.601755px;}
.x40_c00312{left:154.911705px;}
.x29_c00312{left:156.887325px;}
.x5a_c00312{left:158.781847px;}
.x1f_c00312{left:159.998834px;}
.x14_c00312{left:164.692089px;}
.x7f_c00312{left:167.696415px;}
.x47_c00312{left:170.313219px;}
.x1b_c00312{left:171.446486px;}
.x53_c00312{left:172.822812px;}
.x73_c00312{left:174.844564px;}
.x15_c00312{left:176.493017px;}
.x79_c00312{left:179.036644px;}
.x3c_c00312{left:184.430479px;}
.x2e_c00312{left:185.875668px;}
.x20_c00312{left:194.839782px;}
.x9_c00312{left:197.820000px;}
.x61_c00312{left:199.287543px;}
.x82_c00312{left:200.638902px;}
.x3d_c00312{left:203.872255px;}
.x2a_c00312{left:205.220996px;}
.x57_c00312{left:207.116026px;}
.x67_c00312{left:209.549251px;}
.x62_c00312{left:211.168051px;}
.xf_c00312{left:214.597889px;}
.x6f_c00312{left:217.110357px;}
.x31_c00312{left:218.828981px;}
.x64_c00312{left:221.699587px;}
.x41_c00312{left:222.880053px;}
.x70_c00312{left:224.132422px;}
.x1c_c00312{left:225.177495px;}
.x10_c00312{left:227.309570px;}
.xa_c00312{left:229.152000px;}
.x2_c00312{left:231.660000px;}
.x50_c00312{left:234.658425px;}
.x83_c00312{left:237.632161px;}
.x75_c00312{left:239.252077px;}
.x48_c00312{left:241.322533px;}
.x32_c00312{left:242.396376px;}
.x16_c00312{left:245.153777px;}
.x4d_c00312{left:246.537808px;}
.x42_c00312{left:248.803539px;}
.x36_c00312{left:250.181107px;}
.x24_c00312{left:255.043868px;}
.x51_c00312{left:257.070708px;}
.x21_c00312{left:259.645120px;}
.x71_c00312{left:260.855623px;}
.x7a_c00312{left:262.473243px;}
.x49_c00312{left:264.011863px;}
.x2b_c00312{left:265.976752px;}
.x5f_c00312{left:268.411435px;}
.x11_c00312{left:269.453840px;}
.x5b_c00312{left:270.840282px;}
.x43_c00312{left:273.390583px;}
.x80_c00312{left:275.977225px;}
.x7c_c00312{left:277.595298px;}
.x2c_c00312{left:278.667397px;}
.x76_c00312{left:280.025961px;}
.x3e_c00312{left:282.448035px;}
.x4a_c00312{left:283.657849px;}
.x68_c00312{left:284.885985px;}
.x3_c00312{left:289.440000px;}
.x25_c00312{left:290.697835px;}
.x17_c00312{left:294.758772px;}
.xb_c00312{left:297.463500px;}
.x37_c00312{left:300.945433px;}
.x7b_c00312{left:306.217633px;}
.x33_c00312{left:308.750160px;}
.x54_c00312{left:326.195227px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
.fsc_c00312{font-size:47.604022pt;}
.fsb_c00312{font-size:50.404259pt;}
.fs8_c00312{font-size:51.337671pt;}
.fs7_c00312{font-size:52.271083pt;}
.fsa_c00312{font-size:53.204495pt;}
.fs3_c00312{font-size:54.137907pt;}
.fse_c00312{font-size:56.004732pt;}
.fs2_c00312{font-size:56.938144pt;}
.fs6_c00312{font-size:57.871556pt;}
.fs0_c00312{font-size:58.800000pt;}
.fs5_c00312{font-size:59.738381pt;}
.fs9_c00312{font-size:60.671793pt;}
.fsd_c00312{font-size:62.538617pt;}
.fs4_c00312{font-size:66.272266pt;}
.fs1_c00312{font-size:68.139090pt;}
.y0_c00312{bottom:0.000000pt;}
.yef_c00312{bottom:24.810264pt;}
.yee_c00312{bottom:24.810653pt;}
.ye9_c00312{bottom:24.810959pt;}
.yeb_c00312{bottom:24.811157pt;}
.yed_c00312{bottom:24.811248pt;}
.yea_c00312{bottom:24.811564pt;}
.yec_c00312{bottom:24.811683pt;}
.ye8_c00312{bottom:39.986908pt;}
.ye7_c00312{bottom:39.986952pt;}
.ye6_c00312{bottom:39.987467pt;}
.ye4_c00312{bottom:39.987580pt;}
.ye5_c00312{bottom:39.987875pt;}
.ye3_c00312{bottom:39.987881pt;}
.ye2_c00312{bottom:39.988405pt;}
.ye1_c00312{bottom:39.989027pt;}
.ydd_c00312{bottom:55.934667pt;}
.ydb_c00312{bottom:55.934807pt;}
.ydc_c00312{bottom:55.934825pt;}
.ye0_c00312{bottom:55.934964pt;}
.yde_c00312{bottom:55.935131pt;}
.ydf_c00312{bottom:55.935540pt;}
.yd8_c00312{bottom:69.748681pt;}
.yd9_c00312{bottom:69.749251pt;}
.yd7_c00312{bottom:69.749257pt;}
.yda_c00312{bottom:69.749323pt;}
.yd6_c00312{bottom:69.749789pt;}
.yd5_c00312{bottom:69.750001pt;}
.yd3_c00312{bottom:69.750507pt;}
.yd4_c00312{bottom:69.750579pt;}
.yd0_c00312{bottom:85.255536pt;}
.ycd_c00312{bottom:85.255577pt;}
.yd1_c00312{bottom:85.255583pt;}
.ycf_c00312{bottom:85.255748pt;}
.yce_c00312{bottom:85.255783pt;}
.yd2_c00312{bottom:85.256001pt;}
.yc7_c00312{bottom:99.329944pt;}
.yc8_c00312{bottom:99.554291pt;}
.yc9_c00312{bottom:100.173073pt;}
.yca_c00312{bottom:100.959431pt;}
.ycb_c00312{bottom:101.345632pt;}
.ycc_c00312{bottom:102.247109pt;}
.yc0_c00312{bottom:118.804969pt;}
.yc1_c00312{bottom:118.805291pt;}
.yc2_c00312{bottom:118.805487pt;}
.yc4_c00312{bottom:118.806004pt;}
.yc3_c00312{bottom:118.806056pt;}
.yc5_c00312{bottom:118.806565pt;}
.yc6_c00312{bottom:118.806851pt;}
.yb9_c00312{bottom:130.765629pt;}
.yb8_c00312{bottom:130.765647pt;}
.ybf_c00312{bottom:130.765973pt;}
.ybd_c00312{bottom:130.766123pt;}
.ybc_c00312{bottom:130.766167pt;}
.ybe_c00312{bottom:130.766177pt;}
.yba_c00312{bottom:130.766271pt;}
.ybb_c00312{bottom:130.766459pt;}
.yb5_c00312{bottom:145.353633pt;}
.yb4_c00312{bottom:145.353651pt;}
.yb1_c00312{bottom:145.353665pt;}
.yb3_c00312{bottom:145.353765pt;}
.yb7_c00312{bottom:145.353911pt;}
.yb6_c00312{bottom:145.353989pt;}
.yb0_c00312{bottom:145.354243pt;}
.yb2_c00312{bottom:145.354289pt;}
.yaf_c00312{bottom:145.354580pt;}
.yab_c00312{bottom:160.735431pt;}
.yac_c00312{bottom:160.735449pt;}
.yae_c00312{bottom:160.735507pt;}
.ya9_c00312{bottom:160.735580pt;}
.yad_c00312{bottom:160.735603pt;}
.yaa_c00312{bottom:160.735661pt;}
.ya8_c00312{bottom:160.736041pt;}
.ya6_c00312{bottom:175.684453pt;}
.ya7_c00312{bottom:175.684765pt;}
.ya5_c00312{bottom:175.685021pt;}
.ya3_c00312{bottom:175.685472pt;}
.ya4_c00312{bottom:175.685571pt;}
.ya1_c00312{bottom:175.685799pt;}
.ya2_c00312{bottom:175.686049pt;}
.ya0_c00312{bottom:191.496999pt;}
.y9d_c00312{bottom:191.497236pt;}
.y9e_c00312{bottom:191.497264pt;}
.y9b_c00312{bottom:191.497313pt;}
.y9f_c00312{bottom:191.497407pt;}
.y9c_c00312{bottom:191.497857pt;}
.y9a_c00312{bottom:191.497917pt;}
.y96_c00312{bottom:205.841743pt;}
.y99_c00312{bottom:205.842147pt;}
.y98_c00312{bottom:205.842153pt;}
.y97_c00312{bottom:205.842224pt;}
.y95_c00312{bottom:205.842373pt;}
.y94_c00312{bottom:205.842551pt;}
.y93_c00312{bottom:205.842727pt;}
.y8d_c00312{bottom:221.556615pt;}
.y92_c00312{bottom:221.556843pt;}
.y8e_c00312{bottom:221.557157pt;}
.y91_c00312{bottom:221.557357pt;}
.y8f_c00312{bottom:221.557461pt;}
.y90_c00312{bottom:221.557844pt;}
.y85_c00312{bottom:236.536915pt;}
.y86_c00312{bottom:236.537200pt;}
.y84_c00312{bottom:236.537243pt;}
.y8c_c00312{bottom:236.537632pt;}
.y87_c00312{bottom:236.537761pt;}
.y89_c00312{bottom:236.537888pt;}
.y88_c00312{bottom:236.538091pt;}
.y8b_c00312{bottom:236.538103pt;}
.y8a_c00312{bottom:236.538537pt;}
.y7b_c00312{bottom:252.401691pt;}
.y7c_c00312{bottom:252.402100pt;}
.y7a_c00312{bottom:252.402125pt;}
.y7d_c00312{bottom:252.402643pt;}
.y7e_c00312{bottom:252.402795pt;}
.y80_c00312{bottom:252.403205pt;}
.y7f_c00312{bottom:252.403444pt;}
.y81_c00312{bottom:252.403695pt;}
.y82_c00312{bottom:252.404344pt;}
.y83_c00312{bottom:252.404985pt;}
.y76_c00312{bottom:268.023796pt;}
.y71_c00312{bottom:268.024245pt;}
.y75_c00312{bottom:268.024301pt;}
.y79_c00312{bottom:268.024305pt;}
.y70_c00312{bottom:268.024324pt;}
.y77_c00312{bottom:268.024401pt;}
.y72_c00312{bottom:268.024628pt;}
.y73_c00312{bottom:268.024744pt;}
.y78_c00312{bottom:268.024900pt;}
.y74_c00312{bottom:268.024932pt;}
.y6c_c00312{bottom:283.228671pt;}
.y6b_c00312{bottom:283.228795pt;}
.y6d_c00312{bottom:283.228805pt;}
.y69_c00312{bottom:283.228908pt;}
.y68_c00312{bottom:283.229085pt;}
.y6e_c00312{bottom:283.229295pt;}
.y6a_c00312{bottom:283.229317pt;}
.y6f_c00312{bottom:283.229571pt;}
.y64_c00312{bottom:297.564873pt;}
.y66_c00312{bottom:297.564967pt;}
.y63_c00312{bottom:297.565281pt;}
.y65_c00312{bottom:297.565435pt;}
.y67_c00312{bottom:297.565563pt;}
.y5b_c00312{bottom:309.587253pt;}
.y5c_c00312{bottom:310.007713pt;}
.y5d_c00312{bottom:311.044072pt;}
.y5e_c00312{bottom:311.357715pt;}
.y5f_c00312{bottom:311.701353pt;}
.y60_c00312{bottom:312.773948pt;}
.y61_c00312{bottom:313.116149pt;}
.y62_c00312{bottom:313.412515pt;}
.y53_c00312{bottom:324.468865pt;}
.y54_c00312{bottom:324.966741pt;}
.y55_c00312{bottom:325.351556pt;}
.y56_c00312{bottom:326.068692pt;}
.y57_c00312{bottom:326.261871pt;}
.y58_c00312{bottom:327.228647pt;}
.y59_c00312{bottom:327.597552pt;}
.y5a_c00312{bottom:327.947013pt;}
.y4a_c00312{bottom:342.483336pt;}
.y4c_c00312{bottom:342.483613pt;}
.y4b_c00312{bottom:342.483924pt;}
.y4d_c00312{bottom:342.484129pt;}
.y4f_c00312{bottom:342.484327pt;}
.y4e_c00312{bottom:342.484432pt;}
.y52_c00312{bottom:342.484783pt;}
.y51_c00312{bottom:342.484827pt;}
.y50_c00312{bottom:342.484949pt;}
.y42_c00312{bottom:354.468800pt;}
.y43_c00312{bottom:355.030243pt;}
.y44_c00312{bottom:355.202359pt;}
.y45_c00312{bottom:355.651633pt;}
.y46_c00312{bottom:355.862584pt;}
.y47_c00312{bottom:356.535535pt;}
.y48_c00312{bottom:356.707720pt;}
.y49_c00312{bottom:357.203648pt;}
.y3b_c00312{bottom:368.631905pt;}
.y3c_c00312{bottom:369.049877pt;}
.y3d_c00312{bottom:370.093431pt;}
.y3e_c00312{bottom:370.352859pt;}
.y3f_c00312{bottom:371.262616pt;}
.y40_c00312{bottom:371.576291pt;}
.y41_c00312{bottom:372.460399pt;}
.y34_c00312{bottom:384.232456pt;}
.y35_c00312{bottom:384.650744pt;}
.y36_c00312{bottom:385.268729pt;}
.y37_c00312{bottom:386.051052pt;}
.y38_c00312{bottom:386.285763pt;}
.y39_c00312{bottom:386.551067pt;}
.y3a_c00312{bottom:387.271856pt;}
.y31_c00312{bottom:400.750377pt;}
.y30_c00312{bottom:400.750616pt;}
.y2c_c00312{bottom:400.750924pt;}
.y33_c00312{bottom:400.750948pt;}
.y32_c00312{bottom:400.750992pt;}
.y2e_c00312{bottom:400.751032pt;}
.y2f_c00312{bottom:400.751104pt;}
.y2d_c00312{bottom:400.751316pt;}
.y26_c00312{bottom:414.714776pt;}
.y27_c00312{bottom:415.440843pt;}
.y28_c00312{bottom:415.573991pt;}
.y29_c00312{bottom:416.248175pt;}
.y2a_c00312{bottom:417.200791pt;}
.y2b_c00312{bottom:417.580787pt;}
.y1f_c00312{bottom:429.834001pt;}
.y20_c00312{bottom:429.938269pt;}
.y21_c00312{bottom:430.580575pt;}
.y22_c00312{bottom:431.321064pt;}
.y23_c00312{bottom:431.447816pt;}
.y24_c00312{bottom:431.692999pt;}
.y25_c00312{bottom:432.384517pt;}
.y18_c00312{bottom:443.517493pt;}
.y19_c00312{bottom:444.022135pt;}
.y1a_c00312{bottom:444.305681pt;}
.y1b_c00312{bottom:444.722328pt;}
.y1c_c00312{bottom:445.038279pt;}
.y1d_c00312{bottom:445.941129pt;}
.y1e_c00312{bottom:446.800728pt;}
.y10_c00312{bottom:458.880321pt;}
.y11_c00312{bottom:459.315236pt;}
.y12_c00312{bottom:459.657900pt;}
.y13_c00312{bottom:461.448379pt;}
.y14_c00312{bottom:461.658091pt;}
.y15_c00312{bottom:462.024285pt;}
.y16_c00312{bottom:462.878243pt;}
.y17_c00312{bottom:463.759508pt;}
.ya_c00312{bottom:474.962924pt;}
.yb_c00312{bottom:475.938035pt;}
.yc_c00312{bottom:476.831459pt;}
.yd_c00312{bottom:477.973096pt;}
.ye_c00312{bottom:478.175996pt;}
.yf_c00312{bottom:478.849695pt;}
.y2_c00312{bottom:490.322667pt;}
.y3_c00312{bottom:490.518811pt;}
.y4_c00312{bottom:490.961851pt;}
.y5_c00312{bottom:491.199040pt;}
.y6_c00312{bottom:491.804961pt;}
.y7_c00312{bottom:492.372351pt;}
.y8_c00312{bottom:492.734409pt;}
.y9_c00312{bottom:493.523787pt;}
.y1_c00312{bottom:506.672000pt;}
.he_c00312{height:47.604022pt;}
.hd_c00312{height:50.404259pt;}
.ha_c00312{height:51.337671pt;}
.h9_c00312{height:52.271083pt;}
.hc_c00312{height:53.204495pt;}
.h5_c00312{height:54.137907pt;}
.h10_c00312{height:56.004732pt;}
.h4_c00312{height:56.938144pt;}
.h8_c00312{height:57.871556pt;}
.h2_c00312{height:58.800000pt;}
.h7_c00312{height:59.738381pt;}
.hb_c00312{height:60.671793pt;}
.hf_c00312{height:62.538617pt;}
.h6_c00312{height:66.272266pt;}
.h3_c00312{height:68.139090pt;}
.h1_c00312{height:550.000000pt;}
.h0_c00312{height:550.266667pt;}
.w0_c00312{width:319.200000pt;}
.w1_c00312{width:319.333333pt;}
.x0_c00312{left:0.000000pt;}
.x65_c00312{left:10.090889pt;}
.x4_c00312{left:18.172000pt;}
.x22_c00312{left:19.573640pt;}
.x77_c00312{left:20.652267pt;}
.x5c_c00312{left:22.328737pt;}
.xc_c00312{left:23.520547pt;}
.x26_c00312{left:24.485303pt;}
.x3f_c00312{left:25.626328pt;}
.x1d_c00312{left:27.030361pt;}
.x6d_c00312{left:30.972948pt;}
.x5_c00312{left:33.260000pt;}
.x4e_c00312{left:37.449688pt;}
.x12_c00312{left:39.750675pt;}
.x6b_c00312{left:42.011860pt;}
.x69_c00312{left:43.453513pt;}
.x18_c00312{left:45.814476pt;}
.x2f_c00312{left:46.974480pt;}
.x81_c00312{left:50.656111pt;}
.x44_c00312{left:51.781377pt;}
.x4b_c00312{left:55.930475pt;}
.x13_c00312{left:56.877115pt;}
.x27_c00312{left:60.008633pt;}
.x19_c00312{left:61.573453pt;}
.x6c_c00312{left:62.894063pt;}
.x52_c00312{left:65.293353pt;}
.x38_c00312{left:66.249703pt;}
.x6_c00312{left:67.340000pt;}
.x78_c00312{left:68.416344pt;}
.x34_c00312{left:69.957921pt;}
.x6e_c00312{left:73.696159pt;}
.x7d_c00312{left:74.897615pt;}
.x28_c00312{left:76.810143pt;}
.xd_c00312{left:77.705028pt;}
.x58_c00312{left:79.214301pt;}
.x1e_c00312{left:80.541721pt;}
.x39_c00312{left:82.331091pt;}
.x7_c00312{left:85.585333pt;}
.x60_c00312{left:87.616017pt;}
.x72_c00312{left:89.901875pt;}
.x23_c00312{left:91.103892pt;}
.x74_c00312{left:93.379021pt;}
.x3a_c00312{left:96.732184pt;}
.x63_c00312{left:98.417625pt;}
.x66_c00312{left:99.619355pt;}
.x6a_c00312{left:101.297956pt;}
.x1a_c00312{left:102.232135pt;}
.x7e_c00312{left:103.699819pt;}
.x2d_c00312{left:105.044149pt;}
.x5d_c00312{left:107.536457pt;}
.x4c_c00312{left:108.495349pt;}
.x55_c00312{left:111.136144pt;}
.x45_c00312{left:112.728872pt;}
.x1_c00312{left:116.160000pt;}
.x3b_c00312{left:117.374335pt;}
.x5e_c00312{left:118.336944pt;}
.x59_c00312{left:119.777148pt;}
.x4f_c00312{left:120.737096pt;}
.x35_c00312{left:126.374044pt;}
.xe_c00312{left:127.349804pt;}
.x56_c00312{left:129.137844pt;}
.x46_c00312{left:131.213252pt;}
.x8_c00312{left:132.194667pt;}
.x30_c00312{left:133.868227pt;}
.x40_c00312{left:137.699293pt;}
.x29_c00312{left:139.455400pt;}
.x5a_c00312{left:141.139420pt;}
.x1f_c00312{left:142.221185pt;}
.x14_c00312{left:146.392968pt;}
.x7f_c00312{left:149.063480pt;}
.x47_c00312{left:151.389528pt;}
.x1b_c00312{left:152.396876pt;}
.x53_c00312{left:153.620277pt;}
.x73_c00312{left:155.417391pt;}
.x15_c00312{left:156.882681pt;}
.x79_c00312{left:159.143684pt;}
.x3c_c00312{left:163.938204pt;}
.x2e_c00312{left:165.222816pt;}
.x20_c00312{left:173.190917pt;}
.x9_c00312{left:175.840000pt;}
.x61_c00312{left:177.144483pt;}
.x82_c00312{left:178.345691pt;}
.x3d_c00312{left:181.219783pt;}
.x2a_c00312{left:182.418663pt;}
.x57_c00312{left:184.103135pt;}
.x67_c00312{left:186.266001pt;}
.x62_c00312{left:187.704935pt;}
.xf_c00312{left:190.753679pt;}
.x6f_c00312{left:192.986984pt;}
.x31_c00312{left:194.514649pt;}
.x64_c00312{left:197.066300pt;}
.x41_c00312{left:198.115603pt;}
.x70_c00312{left:199.228820pt;}
.x1c_c00312{left:200.157773pt;}
.x10_c00312{left:202.052951pt;}
.xa_c00312{left:203.690667pt;}
.x2_c00312{left:205.920000pt;}
.x50_c00312{left:208.585267pt;}
.x83_c00312{left:211.228588pt;}
.x75_c00312{left:212.668513pt;}
.x48_c00312{left:214.508919pt;}
.x32_c00312{left:215.463445pt;}
.x16_c00312{left:217.914468pt;}
.x4d_c00312{left:219.144719pt;}
.x42_c00312{left:221.158701pt;}
.x36_c00312{left:222.383207pt;}
.x24_c00312{left:226.705660pt;}
.x51_c00312{left:228.507296pt;}
.x21_c00312{left:230.795663pt;}
.x71_c00312{left:231.871665pt;}
.x7a_c00312{left:233.309549pt;}
.x49_c00312{left:234.677212pt;}
.x2b_c00312{left:236.423780pt;}
.x5f_c00312{left:238.587943pt;}
.x11_c00312{left:239.514524pt;}
.x5b_c00312{left:240.746917pt;}
.x43_c00312{left:243.013852pt;}
.x80_c00312{left:245.313089pt;}
.x7c_c00312{left:246.751376pt;}
.x2c_c00312{left:247.704353pt;}
.x76_c00312{left:248.911965pt;}
.x3e_c00312{left:251.064920pt;}
.x4a_c00312{left:252.140311pt;}
.x68_c00312{left:253.231987pt;}
.x3_c00312{left:257.280000pt;}
.x25_c00312{left:258.398076pt;}
.x17_c00312{left:262.007797pt;}
.xb_c00312{left:264.412000pt;}
.x37_c00312{left:267.507052pt;}
.x7b_c00312{left:272.193452pt;}
.x33_c00312{left:274.444587pt;}
.x54_c00312{left:289.951313pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00313 {
    display:none;
  }
  .loading-indicator_c00313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00313 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00313 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00313" -> "#page-container .classname_c00313")
 */
.pf_c00313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00313 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00313 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00313 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00313 {overflow:visible;}
  }
}
.c_c00313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00313 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00313:after { /* webkit #35443 */
  content: '';
}
.t_c00313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00313 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00313 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00313 { /* info for Javascript */
  display:none;
}
.l_c00313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00313:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00313 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00313.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00313{transform:matrix(0.127757,0.001405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.127757,0.001405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.127757,0.001405,-0.002750,0.249985,0,0);}
.mbc_c00313{transform:matrix(0.133272,0.001466,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133272,0.001466,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133272,0.001466,-0.002750,0.249985,0,0);}
.m12_c00313{transform:matrix(0.149216,0.001641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149216,0.001641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149216,0.001641,-0.002750,0.249985,0,0);}
.mbf_c00313{transform:matrix(0.150331,0.001654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150331,0.001654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150331,0.001654,-0.002750,0.249985,0,0);}
.mb9_c00313{transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151056,0.001662,-0.002750,0.249985,0,0);}
.m20_c00313{transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152506,0.001678,-0.002750,0.249985,0,0);}
.m8f_c00313{transform:matrix(0.153851,0.001692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153851,0.001692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153851,0.001692,-0.002750,0.249985,0,0);}
.md3_c00313{transform:matrix(0.154741,0.001702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154741,0.001702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154741,0.001702,-0.002750,0.249985,0,0);}
.mcd_c00313{transform:matrix(0.155566,0.001711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155566,0.001711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155566,0.001711,-0.002750,0.249985,0,0);}
.m36_c00313{transform:matrix(0.155976,0.001716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155976,0.001716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155976,0.001716,-0.002750,0.249985,0,0);}
.mb5_c00313{transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);}
.m97_c00313{transform:matrix(0.156841,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156841,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156841,0.001725,-0.002750,0.249985,0,0);}
.mb1_c00313{transform:matrix(0.156921,0.001726,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156921,0.001726,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156921,0.001726,-0.002750,0.249985,0,0);}
.mec_c00313{transform:matrix(0.157225,0.001729,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157225,0.001729,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157225,0.001729,-0.002750,0.249985,0,0);}
.mce_c00313{transform:matrix(0.157775,0.001736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157775,0.001736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157775,0.001736,-0.002750,0.249985,0,0);}
.mea_c00313{transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158895,0.001748,-0.002750,0.249985,0,0);}
.mb8_c00313{transform:matrix(0.159315,0.001752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159315,0.001752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159315,0.001752,-0.002750,0.249985,0,0);}
.mee_c00313{transform:matrix(0.159410,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159410,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159410,0.001754,-0.002750,0.249985,0,0);}
.m40_c00313{transform:matrix(0.160705,0.001768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160705,0.001768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160705,0.001768,-0.002750,0.249985,0,0);}
.mb_c00313{transform:matrix(0.160795,0.001769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160795,0.001769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160795,0.001769,-0.002750,0.249985,0,0);}
.mb6_c00313{transform:matrix(0.161120,0.001772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161120,0.001772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161120,0.001772,-0.002750,0.249985,0,0);}
.md6_c00313{transform:matrix(0.162410,0.001787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162410,0.001787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162410,0.001787,-0.002750,0.249985,0,0);}
.mb4_c00313{transform:matrix(0.162620,0.001789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162620,0.001789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162620,0.001789,-0.002750,0.249985,0,0);}
.m4f_c00313{transform:matrix(0.163795,0.001802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163795,0.001802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163795,0.001802,-0.002750,0.249985,0,0);}
.m91_c00313{transform:matrix(0.164875,0.001814,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164875,0.001814,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164875,0.001814,-0.002750,0.249985,0,0);}
.m10_c00313{transform:matrix(0.165180,0.001817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165180,0.001817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165180,0.001817,-0.002750,0.249985,0,0);}
.m4c_c00313{transform:matrix(0.168225,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168225,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168225,0.001850,-0.002750,0.249985,0,0);}
.m22_c00313{transform:matrix(0.168910,0.001858,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168910,0.001858,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168910,0.001858,-0.002750,0.249985,0,0);}
.m72_c00313{transform:matrix(0.169410,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169410,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169410,0.001864,-0.002750,0.249985,0,0);}
.mba_c00313{transform:matrix(0.169620,0.001866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169620,0.001866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169620,0.001866,-0.002750,0.249985,0,0);}
.me_c00313{transform:matrix(0.170340,0.001874,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170340,0.001874,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170340,0.001874,-0.002750,0.249985,0,0);}
.m16_c00313{transform:matrix(0.171420,0.001886,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171420,0.001886,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171420,0.001886,-0.002750,0.249985,0,0);}
.mb7_c00313{transform:matrix(0.171645,0.001888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171645,0.001888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171645,0.001888,-0.002750,0.249985,0,0);}
.md5_c00313{transform:matrix(0.171955,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171955,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171955,0.001892,-0.002750,0.249985,0,0);}
.mc_c00313{transform:matrix(0.172440,0.001897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172440,0.001897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172440,0.001897,-0.002750,0.249985,0,0);}
.mf_c00313{transform:matrix(0.172455,0.001897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172455,0.001897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172455,0.001897,-0.002750,0.249985,0,0);}
.m8e_c00313{transform:matrix(0.172770,0.001900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172770,0.001900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172770,0.001900,-0.002750,0.249985,0,0);}
.m11_c00313{transform:matrix(0.173135,0.001904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173135,0.001904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173135,0.001904,-0.002750,0.249985,0,0);}
.m9e_c00313{transform:matrix(0.173829,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173829,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173829,0.001912,-0.002750,0.249985,0,0);}
.md0_c00313{transform:matrix(0.174114,0.001915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174114,0.001915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174114,0.001915,-0.002750,0.249985,0,0);}
.m5f_c00313{transform:matrix(0.174474,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174474,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174474,0.001919,-0.002750,0.249985,0,0);}
.m73_c00313{transform:matrix(0.174479,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174479,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174479,0.001919,-0.002750,0.249985,0,0);}
.m75_c00313{transform:matrix(0.174704,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174704,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174704,0.001922,-0.002750,0.249985,0,0);}
.mc1_c00313{transform:matrix(0.175084,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175084,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175084,0.001926,-0.002750,0.249985,0,0);}
.me9_c00313{transform:matrix(0.175144,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175144,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175144,0.001927,-0.002750,0.249985,0,0);}
.me5_c00313{transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175744,0.001933,-0.002750,0.249985,0,0);}
.m3e_c00313{transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176404,0.001940,-0.002750,0.249985,0,0);}
.ma6_c00313{transform:matrix(0.176434,0.001941,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176434,0.001941,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176434,0.001941,-0.002750,0.249985,0,0);}
.mc9_c00313{transform:matrix(0.176614,0.001943,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176614,0.001943,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176614,0.001943,-0.002750,0.249985,0,0);}
.m7d_c00313{transform:matrix(0.176954,0.001946,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176954,0.001946,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176954,0.001946,-0.002750,0.249985,0,0);}
.ma4_c00313{transform:matrix(0.178014,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178014,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178014,0.001958,-0.002750,0.249985,0,0);}
.m1a_c00313{transform:matrix(0.178964,0.001969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178964,0.001969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178964,0.001969,-0.002750,0.249985,0,0);}
.m9c_c00313{transform:matrix(0.179054,0.001970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179054,0.001970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179054,0.001970,-0.002750,0.249985,0,0);}
.mc0_c00313{transform:matrix(0.180599,0.001987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180599,0.001987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180599,0.001987,-0.002750,0.249985,0,0);}
.mb3_c00313{transform:matrix(0.181029,0.001991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181029,0.001991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181029,0.001991,-0.002750,0.249985,0,0);}
.m68_c00313{transform:matrix(0.181274,0.001994,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181274,0.001994,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181274,0.001994,-0.002750,0.249985,0,0);}
.m47_c00313{transform:matrix(0.181334,0.001995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181334,0.001995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181334,0.001995,-0.002750,0.249985,0,0);}
.meb_c00313{transform:matrix(0.181684,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181684,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181684,0.001999,-0.002750,0.249985,0,0);}
.m1c_c00313{transform:matrix(0.181809,0.002000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181809,0.002000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181809,0.002000,-0.002750,0.249985,0,0);}
.mbd_c00313{transform:matrix(0.182049,0.002003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182049,0.002003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182049,0.002003,-0.002750,0.249985,0,0);}
.m57_c00313{transform:matrix(0.182054,0.002003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182054,0.002003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182054,0.002003,-0.002750,0.249985,0,0);}
.med_c00313{transform:matrix(0.182129,0.002003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182129,0.002003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182129,0.002003,-0.002750,0.249985,0,0);}
.m23_c00313{transform:matrix(0.182269,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182269,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182269,0.002005,-0.002750,0.249985,0,0);}
.m62_c00313{transform:matrix(0.182384,0.002006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182384,0.002006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182384,0.002006,-0.002750,0.249985,0,0);}
.mb2_c00313{transform:matrix(0.182859,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182859,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182859,0.002011,-0.002750,0.249985,0,0);}
.m21_c00313{transform:matrix(0.183394,0.002017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183394,0.002017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183394,0.002017,-0.002750,0.249985,0,0);}
.m6a_c00313{transform:matrix(0.183409,0.002017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183409,0.002017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183409,0.002017,-0.002750,0.249985,0,0);}
.m42_c00313{transform:matrix(0.183954,0.002023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183954,0.002023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183954,0.002023,-0.002750,0.249985,0,0);}
.m83_c00313{transform:matrix(0.183994,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183994,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183994,0.002024,-0.002750,0.249985,0,0);}
.m41_c00313{transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184219,0.002026,-0.002750,0.249985,0,0);}
.m45_c00313{transform:matrix(0.184269,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184269,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184269,0.002027,-0.002750,0.249985,0,0);}
.maf_c00313{transform:matrix(0.184594,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184594,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184594,0.002031,-0.002750,0.249985,0,0);}
.m6b_c00313{transform:matrix(0.184779,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184779,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184779,0.002033,-0.002750,0.249985,0,0);}
.m8a_c00313{transform:matrix(0.184799,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184799,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184799,0.002033,-0.002750,0.249985,0,0);}
.m2c_c00313{transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);}
.m63_c00313{transform:matrix(0.185554,0.002041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185554,0.002041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185554,0.002041,-0.002750,0.249985,0,0);}
.mdd_c00313{transform:matrix(0.185834,0.002044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185834,0.002044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185834,0.002044,-0.002750,0.249985,0,0);}
.mda_c00313{transform:matrix(0.186239,0.002049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186239,0.002049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186239,0.002049,-0.002750,0.249985,0,0);}
.m6c_c00313{transform:matrix(0.186969,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186969,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186969,0.002057,-0.002750,0.249985,0,0);}
.m0_c00313{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.me2_c00313{transform:matrix(0.187334,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187334,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187334,0.002061,-0.002750,0.249985,0,0);}
.m38_c00313{transform:matrix(0.187569,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187569,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187569,0.002063,-0.002750,0.249985,0,0);}
.m2e_c00313{transform:matrix(0.187694,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187694,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187694,0.002065,-0.002750,0.249985,0,0);}
.mc3_c00313{transform:matrix(0.187739,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187739,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187739,0.002065,-0.002750,0.249985,0,0);}
.mc5_c00313{transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187814,0.002066,-0.002750,0.249985,0,0);}
.me1_c00313{transform:matrix(0.188539,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188539,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188539,0.002074,-0.002750,0.249985,0,0);}
.m94_c00313{transform:matrix(0.188559,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188559,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188559,0.002074,-0.002750,0.249985,0,0);}
.m6_c00313{transform:matrix(0.188899,0.002078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188899,0.002078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188899,0.002078,-0.002750,0.249985,0,0);}
.m99_c00313{transform:matrix(0.189074,0.002080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189074,0.002080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189074,0.002080,-0.002750,0.249985,0,0);}
.m67_c00313{transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189184,0.002081,-0.002750,0.249985,0,0);}
.m1d_c00313{transform:matrix(0.189224,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189224,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189224,0.002081,-0.002750,0.249985,0,0);}
.m5c_c00313{transform:matrix(0.190143,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190143,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190143,0.002092,-0.002750,0.249985,0,0);}
.m4a_c00313{transform:matrix(0.190263,0.002093,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190263,0.002093,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190263,0.002093,-0.002750,0.249985,0,0);}
.mcc_c00313{transform:matrix(0.190333,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190333,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190333,0.002094,-0.002750,0.249985,0,0);}
.mcf_c00313{transform:matrix(0.190348,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190348,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190348,0.002094,-0.002750,0.249985,0,0);}
.m77_c00313{transform:matrix(0.190508,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190508,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190508,0.002096,-0.002750,0.249985,0,0);}
.m58_c00313{transform:matrix(0.190823,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190823,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190823,0.002099,-0.002750,0.249985,0,0);}
.m7f_c00313{transform:matrix(0.191048,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191048,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191048,0.002102,-0.002750,0.249985,0,0);}
.m7c_c00313{transform:matrix(0.191313,0.002104,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191313,0.002104,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191313,0.002104,-0.002750,0.249985,0,0);}
.md_c00313{transform:matrix(0.191368,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191368,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191368,0.002105,-0.002750,0.249985,0,0);}
.me7_c00313{transform:matrix(0.191468,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191468,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191468,0.002106,-0.002750,0.249985,0,0);}
.m14_c00313{transform:matrix(0.191498,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191498,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191498,0.002106,-0.002750,0.249985,0,0);}
.m31_c00313{transform:matrix(0.191808,0.002110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191808,0.002110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191808,0.002110,-0.002750,0.249985,0,0);}
.m13_c00313{transform:matrix(0.191948,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191948,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191948,0.002111,-0.002750,0.249985,0,0);}
.mcb_c00313{transform:matrix(0.192263,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192263,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192263,0.002115,-0.002750,0.249985,0,0);}
.mdc_c00313{transform:matrix(0.192503,0.002118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192503,0.002118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192503,0.002118,-0.002750,0.249985,0,0);}
.m66_c00313{transform:matrix(0.193433,0.002128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193433,0.002128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193433,0.002128,-0.002750,0.249985,0,0);}
.m46_c00313{transform:matrix(0.193548,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193548,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193548,0.002129,-0.002750,0.249985,0,0);}
.mc2_c00313{transform:matrix(0.193553,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193553,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193553,0.002129,-0.002750,0.249985,0,0);}
.mdb_c00313{transform:matrix(0.193618,0.002130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193618,0.002130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193618,0.002130,-0.002750,0.249985,0,0);}
.m44_c00313{transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194133,0.002135,-0.002750,0.249985,0,0);}
.m60_c00313{transform:matrix(0.194318,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194318,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194318,0.002138,-0.002750,0.249985,0,0);}
.m37_c00313{transform:matrix(0.194483,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194483,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194483,0.002139,-0.002750,0.249985,0,0);}
.m3c_c00313{transform:matrix(0.194678,0.002141,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194678,0.002141,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194678,0.002141,-0.002750,0.249985,0,0);}
.m9b_c00313{transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);}
.mbe_c00313{transform:matrix(0.194848,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194848,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194848,0.002143,-0.002750,0.249985,0,0);}
.m18_c00313{transform:matrix(0.195093,0.002146,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195093,0.002146,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195093,0.002146,-0.002750,0.249985,0,0);}
.mbb_c00313{transform:matrix(0.195148,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195148,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195148,0.002147,-0.002750,0.249985,0,0);}
.me8_c00313{transform:matrix(0.195168,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195168,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195168,0.002147,-0.002750,0.249985,0,0);}
.ma2_c00313{transform:matrix(0.195478,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195478,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195478,0.002150,-0.002750,0.249985,0,0);}
.m50_c00313{transform:matrix(0.195868,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195868,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195868,0.002155,-0.002750,0.249985,0,0);}
.md9_c00313{transform:matrix(0.195918,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195918,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195918,0.002155,-0.002750,0.249985,0,0);}
.m4d_c00313{transform:matrix(0.196173,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196173,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196173,0.002158,-0.002750,0.249985,0,0);}
.m5b_c00313{transform:matrix(0.196253,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196253,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196253,0.002159,-0.002750,0.249985,0,0);}
.m2f_c00313{transform:matrix(0.196988,0.002167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196988,0.002167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196988,0.002167,-0.002750,0.249985,0,0);}
.m93_c00313{transform:matrix(0.197398,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197398,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197398,0.002171,-0.002750,0.249985,0,0);}
.mde_c00313{transform:matrix(0.197683,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197683,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197683,0.002175,-0.002750,0.249985,0,0);}
.m9_c00313{transform:matrix(0.198303,0.002181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198303,0.002181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198303,0.002181,-0.002750,0.249985,0,0);}
.mdf_c00313{transform:matrix(0.198933,0.002188,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198933,0.002188,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198933,0.002188,-0.002750,0.249985,0,0);}
.m1b_c00313{transform:matrix(0.199208,0.002191,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199208,0.002191,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199208,0.002191,-0.002750,0.249985,0,0);}
.m15_c00313{transform:matrix(0.199263,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199263,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199263,0.002192,-0.002750,0.249985,0,0);}
.m6d_c00313{transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);}
.mc7_c00313{transform:matrix(0.199413,0.002194,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199413,0.002194,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199413,0.002194,-0.002750,0.249985,0,0);}
.mc8_c00313{transform:matrix(0.200023,0.002200,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200023,0.002200,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200023,0.002200,-0.002750,0.249985,0,0);}
.m59_c00313{transform:matrix(0.201018,0.002211,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201018,0.002211,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201018,0.002211,-0.002750,0.249985,0,0);}
.m81_c00313{transform:matrix(0.201428,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201428,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201428,0.002216,-0.002750,0.249985,0,0);}
.m84_c00313{transform:matrix(0.201593,0.002218,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201593,0.002218,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201593,0.002218,-0.002750,0.249985,0,0);}
.mb0_c00313{transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);}
.me3_c00313{transform:matrix(0.202503,0.002228,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202503,0.002228,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202503,0.002228,-0.002750,0.249985,0,0);}
.m17_c00313{transform:matrix(0.202613,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202613,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202613,0.002229,-0.002750,0.249985,0,0);}
.ma8_c00313{transform:matrix(0.202648,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202648,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202648,0.002229,-0.002750,0.249985,0,0);}
.md8_c00313{transform:matrix(0.202798,0.002231,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202798,0.002231,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202798,0.002231,-0.002750,0.249985,0,0);}
.m76_c00313{transform:matrix(0.202803,0.002231,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202803,0.002231,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202803,0.002231,-0.002750,0.249985,0,0);}
.m98_c00313{transform:matrix(0.202963,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202963,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202963,0.002233,-0.002750,0.249985,0,0);}
.ma3_c00313{transform:matrix(0.203383,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203383,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203383,0.002237,-0.002750,0.249985,0,0);}
.ma9_c00313{transform:matrix(0.203473,0.002238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203473,0.002238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203473,0.002238,-0.002750,0.249985,0,0);}
.m54_c00313{transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);}
.m71_c00313{transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);}
.m8_c00313{transform:matrix(0.203753,0.002241,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203753,0.002241,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203753,0.002241,-0.002750,0.249985,0,0);}
.m65_c00313{transform:matrix(0.203758,0.002241,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203758,0.002241,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203758,0.002241,-0.002750,0.249985,0,0);}
.m2_c00313{transform:matrix(0.204013,0.002244,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204013,0.002244,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204013,0.002244,-0.002750,0.249985,0,0);}
.m95_c00313{transform:matrix(0.204458,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204458,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204458,0.002249,-0.002750,0.249985,0,0);}
.m55_c00313{transform:matrix(0.204463,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204463,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204463,0.002249,-0.002750,0.249985,0,0);}
.m80_c00313{transform:matrix(0.204678,0.002251,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204678,0.002251,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204678,0.002251,-0.002750,0.249985,0,0);}
.m70_c00313{transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);}
.me4_c00313{transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205188,0.002257,-0.002750,0.249985,0,0);}
.m1f_c00313{transform:matrix(0.205263,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205263,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205263,0.002258,-0.002750,0.249985,0,0);}
.m7b_c00313{transform:matrix(0.206977,0.002277,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206977,0.002277,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206977,0.002277,-0.002750,0.249985,0,0);}
.m2d_c00313{transform:matrix(0.207332,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207332,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207332,0.002281,-0.002750,0.249985,0,0);}
.ma7_c00313{transform:matrix(0.207372,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207372,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207372,0.002281,-0.002750,0.249985,0,0);}
.m24_c00313{transform:matrix(0.207957,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207957,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207957,0.002288,-0.002750,0.249985,0,0);}
.m92_c00313{transform:matrix(0.208142,0.002290,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208142,0.002290,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208142,0.002290,-0.002750,0.249985,0,0);}
.m3f_c00313{transform:matrix(0.208372,0.002292,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208372,0.002292,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208372,0.002292,-0.002750,0.249985,0,0);}
.mc4_c00313{transform:matrix(0.208917,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208917,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208917,0.002298,-0.002750,0.249985,0,0);}
.m52_c00313{transform:matrix(0.209132,0.002300,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209132,0.002300,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209132,0.002300,-0.002750,0.249985,0,0);}
.m43_c00313{transform:matrix(0.209232,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209232,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209232,0.002302,-0.002750,0.249985,0,0);}
.m7_c00313{transform:matrix(0.209487,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209487,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209487,0.002304,-0.002750,0.249985,0,0);}
.maa_c00313{transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);}
.m25_c00313{transform:matrix(0.209992,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209992,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209992,0.002310,-0.002750,0.249985,0,0);}
.m49_c00313{transform:matrix(0.210347,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210347,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210347,0.002314,-0.002750,0.249985,0,0);}
.m39_c00313{transform:matrix(0.210497,0.002315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210497,0.002315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210497,0.002315,-0.002750,0.249985,0,0);}
.m6f_c00313{transform:matrix(0.210592,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210592,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210592,0.002317,-0.002750,0.249985,0,0);}
.mab_c00313{transform:matrix(0.210792,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210792,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210792,0.002319,-0.002750,0.249985,0,0);}
.m4b_c00313{transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);}
.m48_c00313{transform:matrix(0.211167,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211167,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211167,0.002323,-0.002750,0.249985,0,0);}
.m51_c00313{transform:matrix(0.211487,0.002326,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211487,0.002326,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211487,0.002326,-0.002750,0.249985,0,0);}
.m64_c00313{transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);}
.md7_c00313{transform:matrix(0.211717,0.002329,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211717,0.002329,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211717,0.002329,-0.002750,0.249985,0,0);}
.ma5_c00313{transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211862,0.002330,-0.002750,0.249985,0,0);}
.m3a_c00313{transform:matrix(0.213032,0.002343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213032,0.002343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213032,0.002343,-0.002750,0.249985,0,0);}
.m19_c00313{transform:matrix(0.213292,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213292,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213292,0.002346,-0.002750,0.249985,0,0);}
.m86_c00313{transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);}
.m8b_c00313{transform:matrix(0.214587,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214587,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214587,0.002360,-0.002750,0.249985,0,0);}
.m5a_c00313{transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);}
.m79_c00313{transform:matrix(0.215297,0.002368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215297,0.002368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215297,0.002368,-0.002750,0.249985,0,0);}
.m2b_c00313{transform:matrix(0.215422,0.002370,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215422,0.002370,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215422,0.002370,-0.002750,0.249985,0,0);}
.m78_c00313{transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216072,0.002377,-0.002750,0.249985,0,0);}
.mae_c00313{transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);}
.m85_c00313{transform:matrix(0.216582,0.002382,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216582,0.002382,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216582,0.002382,-0.002750,0.249985,0,0);}
.m34_c00313{transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);}
.m27_c00313{transform:matrix(0.217812,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217812,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217812,0.002396,-0.002750,0.249985,0,0);}
.m35_c00313{transform:matrix(0.217917,0.002397,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217917,0.002397,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217917,0.002397,-0.002750,0.249985,0,0);}
.m53_c00313{transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);}
.m56_c00313{transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);}
.m3d_c00313{transform:matrix(0.219477,0.002414,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219477,0.002414,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219477,0.002414,-0.002750,0.249985,0,0);}
.m87_c00313{transform:matrix(0.219592,0.002416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219592,0.002416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219592,0.002416,-0.002750,0.249985,0,0);}
.m9d_c00313{transform:matrix(0.220072,0.002421,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220072,0.002421,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220072,0.002421,-0.002750,0.249985,0,0);}
.m33_c00313{transform:matrix(0.220277,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220277,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220277,0.002423,-0.002750,0.249985,0,0);}
.m26_c00313{transform:matrix(0.220757,0.002428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220757,0.002428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220757,0.002428,-0.002750,0.249985,0,0);}
.ma0_c00313{transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220792,0.002429,-0.002750,0.249985,0,0);}
.md1_c00313{transform:matrix(0.220872,0.002430,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220872,0.002430,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220872,0.002430,-0.002750,0.249985,0,0);}
.mef_c00313{transform:matrix(0.220977,0.002431,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220977,0.002431,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220977,0.002431,-0.002750,0.249985,0,0);}
.m74_c00313{transform:matrix(0.221022,0.002431,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221022,0.002431,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221022,0.002431,-0.002750,0.249985,0,0);}
.ma_c00313{transform:matrix(0.221392,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221392,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221392,0.002435,-0.002750,0.249985,0,0);}
.m3b_c00313{transform:matrix(0.221857,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221857,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221857,0.002440,-0.002750,0.249985,0,0);}
.md2_c00313{transform:matrix(0.222192,0.002444,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222192,0.002444,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222192,0.002444,-0.002750,0.249985,0,0);}
.mc6_c00313{transform:matrix(0.222762,0.002450,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222762,0.002450,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222762,0.002450,-0.002750,0.249985,0,0);}
.m7e_c00313{transform:matrix(0.223132,0.002454,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223132,0.002454,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223132,0.002454,-0.002750,0.249985,0,0);}
.m88_c00313{transform:matrix(0.223901,0.002463,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223901,0.002463,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223901,0.002463,-0.002750,0.249985,0,0);}
.m6e_c00313{transform:matrix(0.224186,0.002466,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224186,0.002466,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224186,0.002466,-0.002750,0.249985,0,0);}
.m3_c00313{transform:matrix(0.224826,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224826,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224826,0.002473,-0.002750,0.249985,0,0);}
.m4e_c00313{transform:matrix(0.225041,0.002475,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225041,0.002475,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225041,0.002475,-0.002750,0.249985,0,0);}
.m61_c00313{transform:matrix(0.225636,0.002482,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225636,0.002482,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225636,0.002482,-0.002750,0.249985,0,0);}
.m1e_c00313{transform:matrix(0.225791,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225791,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225791,0.002484,-0.002750,0.249985,0,0);}
.ma1_c00313{transform:matrix(0.226091,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226091,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226091,0.002487,-0.002750,0.249985,0,0);}
.me0_c00313{transform:matrix(0.226571,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226571,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226571,0.002492,-0.002750,0.249985,0,0);}
.md4_c00313{transform:matrix(0.226741,0.002494,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226741,0.002494,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226741,0.002494,-0.002750,0.249985,0,0);}
.m5d_c00313{transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);}
.m9f_c00313{transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);}
.m82_c00313{transform:matrix(0.232626,0.002559,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232626,0.002559,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232626,0.002559,-0.002750,0.249985,0,0);}
.m29_c00313{transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);}
.mad_c00313{transform:matrix(0.234836,0.002583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234836,0.002583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234836,0.002583,-0.002750,0.249985,0,0);}
.m5e_c00313{transform:matrix(0.234961,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234961,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234961,0.002585,-0.002750,0.249985,0,0);}
.me6_c00313{transform:matrix(0.237676,0.002614,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237676,0.002614,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237676,0.002614,-0.002750,0.249985,0,0);}
.m5_c00313{transform:matrix(0.239636,0.002636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239636,0.002636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239636,0.002636,-0.002750,0.249985,0,0);}
.m9a_c00313{transform:matrix(0.239715,0.002637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239715,0.002637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239715,0.002637,-0.002750,0.249985,0,0);}
.mac_c00313{transform:matrix(0.240735,0.002648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240735,0.002648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240735,0.002648,-0.002750,0.249985,0,0);}
.m89_c00313{transform:matrix(0.241525,0.002657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241525,0.002657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241525,0.002657,-0.002750,0.249985,0,0);}
.m32_c00313{transform:matrix(0.245575,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245575,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245575,0.002701,-0.002750,0.249985,0,0);}
.m90_c00313{transform:matrix(0.254085,0.002795,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254085,0.002795,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254085,0.002795,-0.002750,0.249985,0,0);}
.m30_c00313{transform:matrix(0.256065,0.002817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256065,0.002817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256065,0.002817,-0.002750,0.249985,0,0);}
.m2a_c00313{transform:matrix(0.262259,0.002885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262259,0.002885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262259,0.002885,-0.002750,0.249985,0,0);}
.m8d_c00313{transform:matrix(0.267074,0.002938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267074,0.002938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267074,0.002938,-0.002750,0.249985,0,0);}
.m7a_c00313{transform:matrix(0.270084,0.002971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270084,0.002971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270084,0.002971,-0.002750,0.249985,0,0);}
.m8c_c00313{transform:matrix(0.300132,0.003301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.300132,0.003301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.300132,0.003301,-0.002750,0.249985,0,0);}
.m69_c00313{transform:matrix(0.332505,0.003658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332505,0.003658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332505,0.003658,-0.002750,0.249985,0,0);}
.m1_c00313{transform:matrix(0.347300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347300,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.348079,0.003829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.348079,0.003829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.348079,0.003829,-0.002750,0.249985,0,0);}
.m96_c00313{transform:matrix(0.504599,0.005551,-0.002750,0.249985,0,0);-ms-transform:matrix(0.504599,0.005551,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.504599,0.005551,-0.002750,0.249985,0,0);}
.m4_c00313{transform:matrix(0.568351,0.006252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.568351,0.006252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.568351,0.006252,-0.002750,0.249985,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
.fc0_c00313{color:transparent;}
.fs0_c00313{font-size:46.200000px;}
.fs9_c00313{font-size:57.753494px;}
.fsb_c00313{font-size:58.803557px;}
.fs6_c00313{font-size:59.853621px;}
.fsa_c00313{font-size:60.903684px;}
.fs7_c00313{font-size:61.953748px;}
.fs2_c00313{font-size:64.053875px;}
.fs8_c00313{font-size:65.103938px;}
.fs1_c00313{font-size:66.150000px;}
.fs5_c00313{font-size:66.154002px;}
.fs3_c00313{font-size:67.204065px;}
.fsd_c00313{font-size:69.304193px;}
.fs4_c00313{font-size:71.404320px;}
.fsc_c00313{font-size:73.504447px;}
.y0_c00313{bottom:0.000000px;}
.yf4_c00313{bottom:27.352261px;}
.yf3_c00313{bottom:27.716500px;}
.yf2_c00313{bottom:28.097515px;}
.yf1_c00313{bottom:28.361049px;}
.yf0_c00313{bottom:29.385508px;}
.yef_c00313{bottom:29.649438px;}
.yee_c00313{bottom:30.795898px;}
.yed_c00313{bottom:31.009533px;}
.yec_c00313{bottom:31.554036px;}
.yeb_c00313{bottom:43.930798px;}
.yea_c00313{bottom:44.172333px;}
.ye9_c00313{bottom:44.474700px;}
.ye8_c00313{bottom:45.615912px;}
.ye7_c00313{bottom:46.580102px;}
.ye6_c00313{bottom:47.464919px;}
.ye5_c00313{bottom:47.655434px;}
.ye4_c00313{bottom:48.293867px;}
.ye3_c00313{bottom:60.330122px;}
.ye2_c00313{bottom:61.414014px;}
.ye1_c00313{bottom:62.536832px;}
.ye0_c00313{bottom:63.052916px;}
.ydf_c00313{bottom:64.156139px;}
.yde_c00313{bottom:64.379577px;}
.ydd_c00313{bottom:65.065265px;}
.ydc_c00313{bottom:65.307588px;}
.ydb_c00313{bottom:77.611130px;}
.yda_c00313{bottom:77.948106px;}
.yd9_c00313{bottom:79.317024px;}
.yd8_c00313{bottom:80.078825px;}
.yd7_c00313{bottom:80.405409px;}
.yd6_c00313{bottom:81.175127px;}
.yd5_c00313{bottom:81.651858px;}
.yd4_c00313{bottom:82.318949px;}
.yd3_c00313{bottom:94.845144px;}
.yd2_c00313{bottom:95.385196px;}
.yd1_c00313{bottom:95.848419px;}
.yd0_c00313{bottom:96.772011px;}
.ycf_c00313{bottom:97.078209px;}
.yce_c00313{bottom:98.171823px;}
.ycd_c00313{bottom:98.693781px;}
.ycc_c00313{bottom:99.327421px;}
.ycb_c00313{bottom:111.237156px;}
.yca_c00313{bottom:111.976765px;}
.yc9_c00313{bottom:113.056980px;}
.yc8_c00313{bottom:113.462796px;}
.yc7_c00313{bottom:114.408958px;}
.yc6_c00313{bottom:114.879145px;}
.yc5_c00313{bottom:115.286677px;}
.yc4_c00313{bottom:116.340636px;}
.yc3_c00313{bottom:127.512396px;}
.yc2_c00313{bottom:129.150610px;}
.yc1_c00313{bottom:129.576108px;}
.yc0_c00313{bottom:129.982326px;}
.ybf_c00313{bottom:131.491638px;}
.ybe_c00313{bottom:132.705048px;}
.ybd_c00313{bottom:133.350847px;}
.ybc_c00313{bottom:145.091653px;}
.ybb_c00313{bottom:145.572157px;}
.yba_c00313{bottom:146.618608px;}
.yb9_c00313{bottom:147.047146px;}
.yb8_c00313{bottom:148.062000px;}
.yb7_c00313{bottom:149.037091px;}
.yb6_c00313{bottom:150.027933px;}
.yb5_c00313{bottom:150.631102px;}
.yb4_c00313{bottom:162.254451px;}
.yb3_c00313{bottom:163.063873px;}
.yb2_c00313{bottom:163.566699px;}
.yb1_c00313{bottom:164.699838px;}
.yb0_c00313{bottom:165.467254px;}
.yaf_c00313{bottom:166.970041px;}
.yae_c00313{bottom:167.363983px;}
.yad_c00313{bottom:167.914225px;}
.yac_c00313{bottom:179.394717px;}
.yab_c00313{bottom:180.130249px;}
.yaa_c00313{bottom:181.741032px;}
.ya9_c00313{bottom:182.190762px;}
.ya8_c00313{bottom:183.802386px;}
.ya7_c00313{bottom:184.411921px;}
.ya6_c00313{bottom:185.465200px;}
.ya5_c00313{bottom:197.111436px;}
.ya4_c00313{bottom:197.356542px;}
.ya3_c00313{bottom:198.830775px;}
.ya2_c00313{bottom:199.192860px;}
.ya1_c00313{bottom:201.016149px;}
.ya0_c00313{bottom:201.434373px;}
.y9f_c00313{bottom:202.599427px;}
.y9e_c00313{bottom:203.015970px;}
.y9d_c00313{bottom:215.545122px;}
.y9c_c00313{bottom:215.927887px;}
.y9b_c00313{bottom:217.221802px;}
.y9a_c00313{bottom:218.550514px;}
.y99_c00313{bottom:218.966938px;}
.y98_c00313{bottom:220.493844px;}
.y97_c00313{bottom:221.109352px;}
.y96_c00313{bottom:230.627962px;}
.y95_c00313{bottom:231.080452px;}
.y94_c00313{bottom:232.396317px;}
.y93_c00313{bottom:232.883289px;}
.y92_c00313{bottom:234.536439px;}
.y91_c00313{bottom:235.546135px;}
.y90_c00313{bottom:236.143365px;}
.y8f_c00313{bottom:236.590693px;}
.y8e_c00313{bottom:237.581805px;}
.y8d_c00313{bottom:248.254308px;}
.y8c_c00313{bottom:248.719914px;}
.y8b_c00313{bottom:250.248472px;}
.y8a_c00313{bottom:251.531199px;}
.y89_c00313{bottom:252.130062px;}
.y88_c00313{bottom:253.509894px;}
.y87_c00313{bottom:264.129885px;}
.y86_c00313{bottom:265.694940px;}
.y85_c00313{bottom:266.557562px;}
.y84_c00313{bottom:267.156425px;}
.y83_c00313{bottom:268.262174px;}
.y82_c00313{bottom:269.982337px;}
.y81_c00313{bottom:282.255534px;}
.y80_c00313{bottom:282.647882px;}
.y7f_c00313{bottom:283.580922px;}
.y7e_c00313{bottom:283.900887px;}
.y7d_c00313{bottom:284.455963px;}
.y7c_c00313{bottom:285.421533px;}
.y7b_c00313{bottom:286.181964px;}
.y7a_c00313{bottom:298.703546px;}
.y79_c00313{bottom:299.062842px;}
.y78_c00313{bottom:300.331578px;}
.y77_c00313{bottom:301.527330px;}
.y76_c00313{bottom:302.004489px;}
.y75_c00313{bottom:303.195721px;}
.y74_c00313{bottom:318.282415px;}
.y73_c00313{bottom:318.580920px;}
.y72_c00313{bottom:318.878088px;}
.y71_c00313{bottom:319.627021px;}
.y70_c00313{bottom:320.205472px;}
.y6f_c00313{bottom:332.078483px;}
.y6e_c00313{bottom:333.099380px;}
.y6d_c00313{bottom:333.621735px;}
.y6c_c00313{bottom:334.919931px;}
.y6b_c00313{bottom:335.288547px;}
.y6a_c00313{bottom:335.556033px;}
.y69_c00313{bottom:336.580707px;}
.y68_c00313{bottom:336.961148px;}
.y67_c00313{bottom:337.760802px;}
.y66_c00313{bottom:349.817393px;}
.y65_c00313{bottom:350.217692px;}
.y64_c00313{bottom:351.013260px;}
.y63_c00313{bottom:351.503565px;}
.y62_c00313{bottom:352.413862px;}
.y61_c00313{bottom:352.888680px;}
.y60_c00313{bottom:353.186340px;}
.y5f_c00313{bottom:353.432771px;}
.y5e_c00313{bottom:354.770945px;}
.y5d_c00313{bottom:366.536976px;}
.y5c_c00313{bottom:366.889983px;}
.y5b_c00313{bottom:367.289829px;}
.y5a_c00313{bottom:368.289329px;}
.y59_c00313{bottom:368.919873px;}
.y58_c00313{bottom:369.245865px;}
.y57_c00313{bottom:369.499191px;}
.y56_c00313{bottom:371.049411px;}
.y55_c00313{bottom:371.362687px;}
.y54_c00313{bottom:372.052192px;}
.y53_c00313{bottom:384.470937px;}
.y52_c00313{bottom:385.823592px;}
.y51_c00313{bottom:386.448556px;}
.y50_c00313{bottom:387.179364px;}
.y4f_c00313{bottom:387.616063px;}
.y4e_c00313{bottom:388.522667px;}
.y4d_c00313{bottom:400.501170px;}
.y4c_c00313{bottom:400.772383px;}
.y4b_c00313{bottom:401.582791px;}
.y4a_c00313{bottom:402.773640px;}
.y49_c00313{bottom:403.681021px;}
.y48_c00313{bottom:404.217281px;}
.y47_c00313{bottom:405.483844px;}
.y46_c00313{bottom:406.346416px;}
.y45_c00313{bottom:417.148105px;}
.y44_c00313{bottom:418.144785px;}
.y43_c00313{bottom:418.519527px;}
.y42_c00313{bottom:419.920864px;}
.y41_c00313{bottom:420.397212px;}
.y40_c00313{bottom:420.673581px;}
.y3f_c00313{bottom:422.054172px;}
.y3e_c00313{bottom:423.086853px;}
.y3d_c00313{bottom:434.593390px;}
.y3c_c00313{bottom:435.830928px;}
.y3b_c00313{bottom:436.262214px;}
.y3a_c00313{bottom:437.314479px;}
.y39_c00313{bottom:437.673793px;}
.y38_c00313{bottom:438.348256px;}
.y37_c00313{bottom:438.714250px;}
.y36_c00313{bottom:439.453923px;}
.y35_c00313{bottom:439.919826px;}
.y34_c00313{bottom:440.367390px;}
.y33_c00313{bottom:452.410087px;}
.y32_c00313{bottom:452.739658px;}
.y31_c00313{bottom:453.246838px;}
.y30_c00313{bottom:454.753567px;}
.y2f_c00313{bottom:455.291044px;}
.y2e_c00313{bottom:455.837064px;}
.y2d_c00313{bottom:456.184233px;}
.y2c_c00313{bottom:457.151209px;}
.y2b_c00313{bottom:457.377685px;}
.y2a_c00313{bottom:470.256120px;}
.y29_c00313{bottom:470.495187px;}
.y28_c00313{bottom:471.754650px;}
.y27_c00313{bottom:472.706298px;}
.y26_c00313{bottom:473.717094px;}
.y25_c00313{bottom:474.116500px;}
.y24_c00313{bottom:485.873691px;}
.y23_c00313{bottom:486.258276px;}
.y22_c00313{bottom:487.131748px;}
.y21_c00313{bottom:487.478268px;}
.y20_c00313{bottom:489.116737px;}
.y1f_c00313{bottom:489.725743px;}
.y1e_c00313{bottom:491.128791px;}
.y1d_c00313{bottom:503.291071px;}
.y1c_c00313{bottom:504.401284px;}
.y1b_c00313{bottom:504.819264px;}
.y1a_c00313{bottom:505.640293px;}
.y19_c00313{bottom:505.934179px;}
.y18_c00313{bottom:506.788632px;}
.y17_c00313{bottom:520.145554px;}
.y16_c00313{bottom:520.326643px;}
.y15_c00313{bottom:521.208742px;}
.y14_c00313{bottom:521.943921px;}
.y13_c00313{bottom:522.278413px;}
.y12_c00313{bottom:522.512380px;}
.y11_c00313{bottom:522.822439px;}
.y10_c00313{bottom:523.529142px;}
.yb_c00313{bottom:537.889485px;}
.y9_c00313{bottom:537.889492px;}
.ya_c00313{bottom:537.889919px;}
.yf_c00313{bottom:537.889974px;}
.yc_c00313{bottom:537.890088px;}
.yd_c00313{bottom:537.890524px;}
.ye_c00313{bottom:537.890721px;}
.y8_c00313{bottom:555.290911px;}
.y7_c00313{bottom:555.561165px;}
.y6_c00313{bottom:555.727369px;}
.y5_c00313{bottom:556.596689px;}
.y4_c00313{bottom:557.218161px;}
.y3_c00313{bottom:557.821500px;}
.y2_c00313{bottom:572.277000px;}
.y1_c00313{bottom:599.940000px;}
.h2_c00313{height:46.200000px;}
.hb_c00313{height:57.753494px;}
.hd_c00313{height:58.803557px;}
.h8_c00313{height:59.853621px;}
.hc_c00313{height:60.903684px;}
.h9_c00313{height:61.953748px;}
.h4_c00313{height:64.053875px;}
.ha_c00313{height:65.103938px;}
.h3_c00313{height:66.150000px;}
.h7_c00313{height:66.154002px;}
.h5_c00313{height:67.204065px;}
.hf_c00313{height:69.304193px;}
.h6_c00313{height:71.404320px;}
.he_c00313{height:73.504447px;}
.h1_c00313{height:618.750000px;}
.h0_c00313{height:619.050000px;}
.w0_c00313{width:359.100000px;}
.w1_c00313{width:359.250000px;}
.x0_c00313{left:0.000000px;}
.x50_c00313{left:29.552865px;}
.x72_c00313{left:32.721527px;}
.x6c_c00313{left:34.033379px;}
.x66_c00313{left:36.424446px;}
.x56_c00313{left:37.564485px;}
.x54_c00313{left:38.887320px;}
.x42_c00313{left:41.083148px;}
.x30_c00313{left:42.661223px;}
.x1c_c00313{left:44.051762px;}
.x3_c00313{left:45.766500px;}
.x75_c00313{left:46.777460px;}
.x9_c00313{left:53.730738px;}
.x24_c00313{left:55.095890px;}
.x63_c00313{left:56.958384px;}
.x5f_c00313{left:63.754521px;}
.x28_c00313{left:64.806042px;}
.x20_c00313{left:67.290068px;}
.x79_c00313{left:68.472017px;}
.x6e_c00313{left:71.148777px;}
.x77_c00313{left:72.710112px;}
.x3d_c00313{left:76.156878px;}
.x4a_c00313{left:79.918962px;}
.x7a_c00313{left:82.710890px;}
.x35_c00313{left:84.246144px;}
.x29_c00313{left:86.976600px;}
.x31_c00313{left:89.626547px;}
.x3e_c00313{left:91.816827px;}
.x3a_c00313{left:95.621999px;}
.x4b_c00313{left:98.002466px;}
.x4_c00313{left:100.615500px;}
.x6f_c00313{left:101.824748px;}
.x57_c00313{left:103.269258px;}
.x10_c00313{left:104.394150px;}
.x68_c00313{left:107.951439px;}
.x17_c00313{left:110.869185px;}
.x64_c00313{left:112.411779px;}
.x43_c00313{left:115.411422px;}
.x1d_c00313{left:117.867761px;}
.x5b_c00313{left:118.900248px;}
.x25_c00313{left:120.829889px;}
.x2a_c00313{left:122.170223px;}
.x6a_c00313{left:124.528968px;}
.x21_c00313{left:126.722141px;}
.x44_c00313{left:129.085866px;}
.x11_c00313{left:130.262870px;}
.x58_c00313{left:131.799123px;}
.x18_c00313{left:133.494690px;}
.x2b_c00313{left:139.622309px;}
.x36_c00313{left:144.563511px;}
.x45_c00313{left:145.644596px;}
.x4c_c00313{left:146.831103px;}
.x26_c00313{left:148.101683px;}
.x12_c00313{left:149.759655px;}
.xa_c00313{left:151.476569px;}
.x5_c00313{left:157.113000px;}
.x76_c00313{left:158.527847px;}
.x4d_c00313{left:159.555701px;}
.x32_c00313{left:164.977439px;}
.x70_c00313{left:166.194507px;}
.x4f_c00313{left:168.836279px;}
.x37_c00313{left:170.129706px;}
.x2c_c00313{left:171.751778px;}
.xb_c00313{left:174.427841px;}
.x13_c00313{left:177.576842px;}
.x3f_c00313{left:181.993901px;}
.x2_c00313{left:183.060000px;}
.x71_c00313{left:184.211319px;}
.x67_c00313{left:185.309945px;}
.x33_c00313{left:186.597315px;}
.x2d_c00313{left:188.869397px;}
.x59_c00313{left:192.903908px;}
.x19_c00313{left:196.677804px;}
.x40_c00313{left:198.264284px;}
.x3b_c00313{left:201.021536px;}
.x51_c00313{left:202.867226px;}
.x60_c00313{left:206.012244px;}
.x73_c00313{left:209.339378px;}
.x38_c00313{left:213.341454px;}
.x6b_c00313{left:215.748936px;}
.x69_c00313{left:217.891140px;}
.xc_c00313{left:220.060368px;}
.x46_c00313{left:222.603672px;}
.x5c_c00313{left:225.415347px;}
.x1a_c00313{left:228.811595px;}
.x6_c00313{left:236.142000px;}
.xd_c00313{left:237.340964px;}
.x14_c00313{left:238.819665px;}
.x1_c00313{left:241.380000px;}
.x55_c00313{left:243.037364px;}
.x5d_c00313{left:244.864344px;}
.x47_c00313{left:249.856577px;}
.x7_c00313{left:251.251500px;}
.xe_c00313{left:252.461295px;}
.x1e_c00313{left:254.400749px;}
.x22_c00313{left:256.814561px;}
.x2e_c00313{left:259.502625px;}
.x61_c00313{left:262.269819px;}
.x4e_c00313{left:263.786733px;}
.x52_c00313{left:265.049987px;}
.x34_c00313{left:267.322047px;}
.x23_c00313{left:270.910637px;}
.x8_c00313{left:275.820000px;}
.x62_c00313{left:278.928125px;}
.x3c_c00313{left:280.621289px;}
.x5a_c00313{left:287.862963px;}
.x6d_c00313{left:289.188117px;}
.x53_c00313{left:291.171332px;}
.x27_c00313{left:292.174427px;}
.x48_c00313{left:294.086678px;}
.x5e_c00313{left:297.525743px;}
.xf_c00313{left:299.443971px;}
.x78_c00313{left:305.482308px;}
.x65_c00313{left:306.511412px;}
.x39_c00313{left:308.672477px;}
.x74_c00313{left:309.732261px;}
.x15_c00313{left:312.327857px;}
.x1b_c00313{left:314.192714px;}
.x49_c00313{left:316.293962px;}
.x41_c00313{left:317.379486px;}
.x2f_c00313{left:318.408641px;}
.x1f_c00313{left:320.627424px;}
.x16_c00313{left:327.426692px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
.fs0_c00313{font-size:41.066667pt;}
.fs9_c00313{font-size:51.336439pt;}
.fsb_c00313{font-size:52.269829pt;}
.fs6_c00313{font-size:53.203219pt;}
.fsa_c00313{font-size:54.136608pt;}
.fs7_c00313{font-size:55.069998pt;}
.fs2_c00313{font-size:56.936778pt;}
.fs8_c00313{font-size:57.870167pt;}
.fs1_c00313{font-size:58.800000pt;}
.fs5_c00313{font-size:58.803557pt;}
.fs3_c00313{font-size:59.736947pt;}
.fsd_c00313{font-size:61.603727pt;}
.fs4_c00313{font-size:63.470506pt;}
.fsc_c00313{font-size:65.337286pt;}
.y0_c00313{bottom:0.000000pt;}
.yf4_c00313{bottom:24.313121pt;}
.yf3_c00313{bottom:24.636889pt;}
.yf2_c00313{bottom:24.975569pt;}
.yf1_c00313{bottom:25.209821pt;}
.yf0_c00313{bottom:26.120452pt;}
.yef_c00313{bottom:26.355056pt;}
.yee_c00313{bottom:27.374132pt;}
.yed_c00313{bottom:27.564029pt;}
.yec_c00313{bottom:28.048032pt;}
.yeb_c00313{bottom:39.049599pt;}
.yea_c00313{bottom:39.264296pt;}
.ye9_c00313{bottom:39.533067pt;}
.ye8_c00313{bottom:40.547477pt;}
.ye7_c00313{bottom:41.404535pt;}
.ye6_c00313{bottom:42.191039pt;}
.ye5_c00313{bottom:42.360385pt;}
.ye4_c00313{bottom:42.927881pt;}
.ye3_c00313{bottom:53.626775pt;}
.ye2_c00313{bottom:54.590235pt;}
.ye1_c00313{bottom:55.588295pt;}
.ye0_c00313{bottom:56.047036pt;}
.ydf_c00313{bottom:57.027679pt;}
.yde_c00313{bottom:57.226291pt;}
.ydd_c00313{bottom:57.835791pt;}
.ydc_c00313{bottom:58.051189pt;}
.ydb_c00313{bottom:68.987671pt;}
.yda_c00313{bottom:69.287205pt;}
.yd9_c00313{bottom:70.504021pt;}
.yd8_c00313{bottom:71.181177pt;}
.yd7_c00313{bottom:71.471475pt;}
.yd6_c00313{bottom:72.155668pt;}
.yd5_c00313{bottom:72.579429pt;}
.yd4_c00313{bottom:73.172399pt;}
.yd3_c00313{bottom:84.306795pt;}
.yd2_c00313{bottom:84.786841pt;}
.yd1_c00313{bottom:85.198595pt;}
.yd0_c00313{bottom:86.019565pt;}
.ycf_c00313{bottom:86.291741pt;}
.yce_c00313{bottom:87.263843pt;}
.ycd_c00313{bottom:87.727805pt;}
.ycc_c00313{bottom:88.291041pt;}
.ycb_c00313{bottom:98.877472pt;}
.yca_c00313{bottom:99.534903pt;}
.yc9_c00313{bottom:100.495093pt;}
.yc8_c00313{bottom:100.855819pt;}
.yc7_c00313{bottom:101.696852pt;}
.yc6_c00313{bottom:102.114796pt;}
.yc5_c00313{bottom:102.477047pt;}
.yc4_c00313{bottom:103.413899pt;}
.yc3_c00313{bottom:113.344352pt;}
.yc2_c00313{bottom:114.800543pt;}
.yc1_c00313{bottom:115.178763pt;}
.yc0_c00313{bottom:115.539845pt;}
.ybf_c00313{bottom:116.881456pt;}
.ybe_c00313{bottom:117.960043pt;}
.ybd_c00313{bottom:118.534087pt;}
.ybc_c00313{bottom:128.970359pt;}
.ybb_c00313{bottom:129.397473pt;}
.yba_c00313{bottom:130.327652pt;}
.yb9_c00313{bottom:130.708575pt;}
.yb8_c00313{bottom:131.610667pt;}
.yb7_c00313{bottom:132.477415pt;}
.yb6_c00313{bottom:133.358163pt;}
.yb5_c00313{bottom:133.894313pt;}
.yb4_c00313{bottom:144.226179pt;}
.yb3_c00313{bottom:144.945665pt;}
.yb2_c00313{bottom:145.392621pt;}
.yb1_c00313{bottom:146.399856pt;}
.yb0_c00313{bottom:147.082004pt;}
.yaf_c00313{bottom:148.417815pt;}
.yae_c00313{bottom:148.767985pt;}
.yad_c00313{bottom:149.257089pt;}
.yac_c00313{bottom:159.461971pt;}
.yab_c00313{bottom:160.115777pt;}
.yaa_c00313{bottom:161.547584pt;}
.ya9_c00313{bottom:161.947344pt;}
.ya8_c00313{bottom:163.379899pt;}
.ya7_c00313{bottom:163.921708pt;}
.ya6_c00313{bottom:164.857956pt;}
.ya5_c00313{bottom:175.210165pt;}
.ya4_c00313{bottom:175.428037pt;}
.ya3_c00313{bottom:176.738467pt;}
.ya2_c00313{bottom:177.060320pt;}
.ya1_c00313{bottom:178.681021pt;}
.ya0_c00313{bottom:179.052776pt;}
.y9f_c00313{bottom:180.088380pt;}
.y9e_c00313{bottom:180.458640pt;}
.y9d_c00313{bottom:191.595664pt;}
.y9c_c00313{bottom:191.935900pt;}
.y9b_c00313{bottom:193.086047pt;}
.y9a_c00313{bottom:194.267124pt;}
.y99_c00313{bottom:194.637279pt;}
.y98_c00313{bottom:195.994528pt;}
.y97_c00313{bottom:196.541647pt;}
.y96_c00313{bottom:205.002633pt;}
.y95_c00313{bottom:205.404847pt;}
.y94_c00313{bottom:206.574504pt;}
.y93_c00313{bottom:207.007368pt;}
.y92_c00313{bottom:208.476835pt;}
.y91_c00313{bottom:209.374343pt;}
.y90_c00313{bottom:209.905213pt;}
.y8f_c00313{bottom:210.302839pt;}
.y8e_c00313{bottom:211.183827pt;}
.y8d_c00313{bottom:220.670496pt;}
.y8c_c00313{bottom:221.084368pt;}
.y8b_c00313{bottom:222.443087pt;}
.y8a_c00313{bottom:223.583288pt;}
.y89_c00313{bottom:224.115611pt;}
.y88_c00313{bottom:225.342128pt;}
.y87_c00313{bottom:234.782120pt;}
.y86_c00313{bottom:236.173280pt;}
.y85_c00313{bottom:236.940055pt;}
.y84_c00313{bottom:237.472377pt;}
.y83_c00313{bottom:238.455265pt;}
.y82_c00313{bottom:239.984300pt;}
.y81_c00313{bottom:250.893808pt;}
.y80_c00313{bottom:251.242561pt;}
.y7f_c00313{bottom:252.071931pt;}
.y7e_c00313{bottom:252.356344pt;}
.y7d_c00313{bottom:252.849745pt;}
.y7c_c00313{bottom:253.708029pt;}
.y7b_c00313{bottom:254.383968pt;}
.y7a_c00313{bottom:265.514263pt;}
.y79_c00313{bottom:265.833637pt;}
.y78_c00313{bottom:266.961403pt;}
.y77_c00313{bottom:268.024293pt;}
.y76_c00313{bottom:268.448435pt;}
.y75_c00313{bottom:269.507308pt;}
.y74_c00313{bottom:282.917703pt;}
.y73_c00313{bottom:283.183040pt;}
.y72_c00313{bottom:283.447189pt;}
.y71_c00313{bottom:284.112908pt;}
.y70_c00313{bottom:284.627087pt;}
.y6f_c00313{bottom:295.180873pt;}
.y6e_c00313{bottom:296.088337pt;}
.y6d_c00313{bottom:296.552653pt;}
.y6c_c00313{bottom:297.706605pt;}
.y6b_c00313{bottom:298.034264pt;}
.y6a_c00313{bottom:298.272029pt;}
.y69_c00313{bottom:299.182851pt;}
.y68_c00313{bottom:299.521020pt;}
.y67_c00313{bottom:300.231824pt;}
.y66_c00313{bottom:310.948793pt;}
.y65_c00313{bottom:311.304615pt;}
.y64_c00313{bottom:312.011787pt;}
.y63_c00313{bottom:312.447613pt;}
.y62_c00313{bottom:313.256767pt;}
.y61_c00313{bottom:313.678827pt;}
.y60_c00313{bottom:313.943413pt;}
.y5f_c00313{bottom:314.162463pt;}
.y5e_c00313{bottom:315.351951pt;}
.y5d_c00313{bottom:325.810645pt;}
.y5c_c00313{bottom:326.124429pt;}
.y5b_c00313{bottom:326.479848pt;}
.y5a_c00313{bottom:327.368292pt;}
.y59_c00313{bottom:327.928776pt;}
.y58_c00313{bottom:328.218547pt;}
.y57_c00313{bottom:328.443725pt;}
.y56_c00313{bottom:329.821699pt;}
.y55_c00313{bottom:330.100167pt;}
.y54_c00313{bottom:330.713060pt;}
.y53_c00313{bottom:341.751944pt;}
.y52_c00313{bottom:342.954304pt;}
.y51_c00313{bottom:343.509828pt;}
.y50_c00313{bottom:344.159435pt;}
.y4f_c00313{bottom:344.547612pt;}
.y4e_c00313{bottom:345.353481pt;}
.y4d_c00313{bottom:356.001040pt;}
.y4c_c00313{bottom:356.242119pt;}
.y4b_c00313{bottom:356.962481pt;}
.y4a_c00313{bottom:358.021013pt;}
.y49_c00313{bottom:358.827575pt;}
.y48_c00313{bottom:359.304249pt;}
.y47_c00313{bottom:360.430084pt;}
.y46_c00313{bottom:361.196815pt;}
.y45_c00313{bottom:370.798316pt;}
.y44_c00313{bottom:371.684253pt;}
.y43_c00313{bottom:372.017357pt;}
.y42_c00313{bottom:373.262991pt;}
.y41_c00313{bottom:373.686411pt;}
.y40_c00313{bottom:373.932072pt;}
.y3f_c00313{bottom:375.159264pt;}
.y3e_c00313{bottom:376.077203pt;}
.y3d_c00313{bottom:386.305236pt;}
.y3c_c00313{bottom:387.405269pt;}
.y3b_c00313{bottom:387.788635pt;}
.y3a_c00313{bottom:388.723981pt;}
.y39_c00313{bottom:389.043372pt;}
.y38_c00313{bottom:389.642895pt;}
.y37_c00313{bottom:389.968223pt;}
.y36_c00313{bottom:390.625709pt;}
.y35_c00313{bottom:391.039845pt;}
.y34_c00313{bottom:391.437680pt;}
.y33_c00313{bottom:402.142300pt;}
.y32_c00313{bottom:402.435252pt;}
.y31_c00313{bottom:402.886079pt;}
.y30_c00313{bottom:404.225393pt;}
.y2f_c00313{bottom:404.703151pt;}
.y2e_c00313{bottom:405.188501pt;}
.y2d_c00313{bottom:405.497096pt;}
.y2c_c00313{bottom:406.356631pt;}
.y2b_c00313{bottom:406.557943pt;}
.y2a_c00313{bottom:418.005440pt;}
.y29_c00313{bottom:418.217944pt;}
.y28_c00313{bottom:419.337467pt;}
.y27_c00313{bottom:420.183376pt;}
.y26_c00313{bottom:421.081861pt;}
.y25_c00313{bottom:421.436889pt;}
.y24_c00313{bottom:431.887725pt;}
.y23_c00313{bottom:432.229579pt;}
.y22_c00313{bottom:433.005999pt;}
.y21_c00313{bottom:433.314016pt;}
.y20_c00313{bottom:434.770433pt;}
.y1f_c00313{bottom:435.311772pt;}
.y1e_c00313{bottom:436.558925pt;}
.y1d_c00313{bottom:447.369841pt;}
.y1c_c00313{bottom:448.356697pt;}
.y1b_c00313{bottom:448.728235pt;}
.y1a_c00313{bottom:449.458039pt;}
.y19_c00313{bottom:449.719271pt;}
.y18_c00313{bottom:450.478784pt;}
.y17_c00313{bottom:462.351604pt;}
.y16_c00313{bottom:462.512572pt;}
.y15_c00313{bottom:463.296660pt;}
.y14_c00313{bottom:463.950152pt;}
.y13_c00313{bottom:464.247479pt;}
.y12_c00313{bottom:464.455449pt;}
.y11_c00313{bottom:464.731057pt;}
.y10_c00313{bottom:465.359237pt;}
.yb_c00313{bottom:478.123987pt;}
.y9_c00313{bottom:478.123993pt;}
.ya_c00313{bottom:478.124372pt;}
.yf_c00313{bottom:478.124421pt;}
.yc_c00313{bottom:478.124523pt;}
.yd_c00313{bottom:478.124911pt;}
.ye_c00313{bottom:478.125085pt;}
.y8_c00313{bottom:493.591921pt;}
.y7_c00313{bottom:493.832147pt;}
.y6_c00313{bottom:493.979884pt;}
.y5_c00313{bottom:494.752612pt;}
.y4_c00313{bottom:495.305032pt;}
.y3_c00313{bottom:495.841333pt;}
.y2_c00313{bottom:508.690667pt;}
.y1_c00313{bottom:533.280000pt;}
.h2_c00313{height:41.066667pt;}
.hb_c00313{height:51.336439pt;}
.hd_c00313{height:52.269829pt;}
.h8_c00313{height:53.203219pt;}
.hc_c00313{height:54.136608pt;}
.h9_c00313{height:55.069998pt;}
.h4_c00313{height:56.936778pt;}
.ha_c00313{height:57.870167pt;}
.h3_c00313{height:58.800000pt;}
.h7_c00313{height:58.803557pt;}
.h5_c00313{height:59.736947pt;}
.hf_c00313{height:61.603727pt;}
.h6_c00313{height:63.470506pt;}
.he_c00313{height:65.337286pt;}
.h1_c00313{height:550.000000pt;}
.h0_c00313{height:550.266667pt;}
.w0_c00313{width:319.200000pt;}
.w1_c00313{width:319.333333pt;}
.x0_c00313{left:0.000000pt;}
.x50_c00313{left:26.269213pt;}
.x72_c00313{left:29.085801pt;}
.x6c_c00313{left:30.251892pt;}
.x66_c00313{left:32.377285pt;}
.x56_c00313{left:33.390653pt;}
.x54_c00313{left:34.566507pt;}
.x42_c00313{left:36.518353pt;}
.x30_c00313{left:37.921087pt;}
.x1c_c00313{left:39.157121pt;}
.x3_c00313{left:40.681333pt;}
.x75_c00313{left:41.579964pt;}
.x9_c00313{left:47.760656pt;}
.x24_c00313{left:48.974124pt;}
.x63_c00313{left:50.629675pt;}
.x5f_c00313{left:56.670685pt;}
.x28_c00313{left:57.605371pt;}
.x20_c00313{left:59.813393pt;}
.x79_c00313{left:60.864015pt;}
.x6e_c00313{left:63.243357pt;}
.x77_c00313{left:64.631211pt;}
.x3d_c00313{left:67.695003pt;}
.x4a_c00313{left:71.039077pt;}
.x7a_c00313{left:73.520791pt;}
.x35_c00313{left:74.885461pt;}
.x29_c00313{left:77.312533pt;}
.x31_c00313{left:79.668041pt;}
.x3e_c00313{left:81.614957pt;}
.x3a_c00313{left:84.997332pt;}
.x4b_c00313{left:87.113303pt;}
.x4_c00313{left:89.436000pt;}
.x6f_c00313{left:90.510887pt;}
.x57_c00313{left:91.794896pt;}
.x10_c00313{left:92.794800pt;}
.x68_c00313{left:95.956835pt;}
.x17_c00313{left:98.550387pt;}
.x64_c00313{left:99.921581pt;}
.x43_c00313{left:102.587931pt;}
.x1d_c00313{left:104.771343pt;}
.x5b_c00313{left:105.689109pt;}
.x25_c00313{left:107.404345pt;}
.x2a_c00313{left:108.595753pt;}
.x6a_c00313{left:110.692416pt;}
.x21_c00313{left:112.641903pt;}
.x44_c00313{left:114.742992pt;}
.x11_c00313{left:115.789217pt;}
.x58_c00313{left:117.154776pt;}
.x18_c00313{left:118.661947pt;}
.x2b_c00313{left:124.108719pt;}
.x36_c00313{left:128.500899pt;}
.x45_c00313{left:129.461863pt;}
.x4c_c00313{left:130.516536pt;}
.x26_c00313{left:131.645940pt;}
.x12_c00313{left:133.119693pt;}
.xa_c00313{left:134.645839pt;}
.x5_c00313{left:139.656000pt;}
.x76_c00313{left:140.913641pt;}
.x4d_c00313{left:141.827289pt;}
.x32_c00313{left:146.646612pt;}
.x70_c00313{left:147.728451pt;}
.x4f_c00313{left:150.076692pt;}
.x37_c00313{left:151.226405pt;}
.x2c_c00313{left:152.668247pt;}
.xb_c00313{left:155.046969pt;}
.x13_c00313{left:157.846081pt;}
.x3f_c00313{left:161.772356pt;}
.x2_c00313{left:162.720000pt;}
.x71_c00313{left:163.743395pt;}
.x67_c00313{left:164.719951pt;}
.x33_c00313{left:165.864280pt;}
.x2d_c00313{left:167.883908pt;}
.x59_c00313{left:171.470140pt;}
.x19_c00313{left:174.824715pt;}
.x40_c00313{left:176.234919pt;}
.x3b_c00313{left:178.685809pt;}
.x51_c00313{left:180.326423pt;}
.x60_c00313{left:183.121995pt;}
.x73_c00313{left:186.079447pt;}
.x38_c00313{left:189.636848pt;}
.x6b_c00313{left:191.776832pt;}
.x69_c00313{left:193.681013pt;}
.xc_c00313{left:195.609216pt;}
.x46_c00313{left:197.869931pt;}
.x5c_c00313{left:200.369197pt;}
.x1a_c00313{left:203.388084pt;}
.x6_c00313{left:209.904000pt;}
.xd_c00313{left:210.969745pt;}
.x14_c00313{left:212.284147pt;}
.x1_c00313{left:214.560000pt;}
.x55_c00313{left:216.033212pt;}
.x5d_c00313{left:217.657195pt;}
.x47_c00313{left:222.094735pt;}
.x7_c00313{left:223.334667pt;}
.xe_c00313{left:224.410040pt;}
.x1e_c00313{left:226.133999pt;}
.x22_c00313{left:228.279609pt;}
.x2e_c00313{left:230.669000pt;}
.x61_c00313{left:233.128728pt;}
.x4e_c00313{left:234.477096pt;}
.x52_c00313{left:235.599988pt;}
.x34_c00313{left:237.619597pt;}
.x23_c00313{left:240.809455pt;}
.x8_c00313{left:245.173333pt;}
.x62_c00313{left:247.936111pt;}
.x3c_c00313{left:249.441145pt;}
.x5a_c00313{left:255.878189pt;}
.x6d_c00313{left:257.056104pt;}
.x53_c00313{left:258.818961pt;}
.x27_c00313{left:259.710601pt;}
.x48_c00313{left:261.410380pt;}
.x5e_c00313{left:264.467327pt;}
.xf_c00313{left:266.172419pt;}
.x78_c00313{left:271.539829pt;}
.x65_c00313{left:272.454588pt;}
.x39_c00313{left:274.375535pt;}
.x74_c00313{left:275.317565pt;}
.x15_c00313{left:277.624761pt;}
.x1b_c00313{left:279.282412pt;}
.x49_c00313{left:281.150188pt;}
.x41_c00313{left:282.115099pt;}
.x2f_c00313{left:283.029903pt;}
.x1f_c00313{left:285.002155pt;}
.x16_c00313{left:291.045948pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00314 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00314 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00314 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00314 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00314.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c00314{transform:matrix(0.140585,-0.003374,0.005998,0.249928,0,0);-ms-transform:matrix(0.140585,-0.003374,0.005998,0.249928,0,0);-webkit-transform:matrix(0.140585,-0.003374,0.005998,0.249928,0,0);}
.m8c_c00314{transform:matrix(0.141244,-0.003390,0.005998,0.249928,0,0);-ms-transform:matrix(0.141244,-0.003390,0.005998,0.249928,0,0);-webkit-transform:matrix(0.141244,-0.003390,0.005998,0.249928,0,0);}
.m5_c00314{transform:matrix(0.146393,-0.003513,0.005998,0.249928,0,0);-ms-transform:matrix(0.146393,-0.003513,0.005998,0.249928,0,0);-webkit-transform:matrix(0.146393,-0.003513,0.005998,0.249928,0,0);}
.m59_c00314{transform:matrix(0.148857,-0.003573,0.005998,0.249928,0,0);-ms-transform:matrix(0.148857,-0.003573,0.005998,0.249928,0,0);-webkit-transform:matrix(0.148857,-0.003573,0.005998,0.249928,0,0);}
.m82_c00314{transform:matrix(0.149007,-0.003576,0.005998,0.249928,0,0);-ms-transform:matrix(0.149007,-0.003576,0.005998,0.249928,0,0);-webkit-transform:matrix(0.149007,-0.003576,0.005998,0.249928,0,0);}
.m62_c00314{transform:matrix(0.149572,-0.003590,0.005998,0.249928,0,0);-ms-transform:matrix(0.149572,-0.003590,0.005998,0.249928,0,0);-webkit-transform:matrix(0.149572,-0.003590,0.005998,0.249928,0,0);}
.mad_c00314{transform:matrix(0.150657,-0.003616,0.005998,0.249928,0,0);-ms-transform:matrix(0.150657,-0.003616,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150657,-0.003616,0.005998,0.249928,0,0);}
.mf2_c00314{transform:matrix(0.151316,-0.003632,0.005998,0.249928,0,0);-ms-transform:matrix(0.151316,-0.003632,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151316,-0.003632,0.005998,0.249928,0,0);}
.mab_c00314{transform:matrix(0.152001,-0.003648,0.005998,0.249928,0,0);-ms-transform:matrix(0.152001,-0.003648,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152001,-0.003648,0.005998,0.249928,0,0);}
.m7f_c00314{transform:matrix(0.152801,-0.003667,0.005998,0.249928,0,0);-ms-transform:matrix(0.152801,-0.003667,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152801,-0.003667,0.005998,0.249928,0,0);}
.m1_c00314{transform:matrix(0.152936,-0.003670,0.005998,0.249928,0,0);-ms-transform:matrix(0.152936,-0.003670,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152936,-0.003670,0.005998,0.249928,0,0);}
.md1_c00314{transform:matrix(0.153256,-0.003678,0.005998,0.249928,0,0);-ms-transform:matrix(0.153256,-0.003678,0.005998,0.249928,0,0);-webkit-transform:matrix(0.153256,-0.003678,0.005998,0.249928,0,0);}
.m85_c00314{transform:matrix(0.153991,-0.003696,0.005998,0.249928,0,0);-ms-transform:matrix(0.153991,-0.003696,0.005998,0.249928,0,0);-webkit-transform:matrix(0.153991,-0.003696,0.005998,0.249928,0,0);}
.m8e_c00314{transform:matrix(0.154031,-0.003697,0.005998,0.249928,0,0);-ms-transform:matrix(0.154031,-0.003697,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154031,-0.003697,0.005998,0.249928,0,0);}
.m3_c00314{transform:matrix(0.154431,-0.003706,0.005998,0.249928,0,0);-ms-transform:matrix(0.154431,-0.003706,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154431,-0.003706,0.005998,0.249928,0,0);}
.m60_c00314{transform:matrix(0.154456,-0.003707,0.005998,0.249928,0,0);-ms-transform:matrix(0.154456,-0.003707,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154456,-0.003707,0.005998,0.249928,0,0);}
.m34_c00314{transform:matrix(0.155795,-0.003739,0.005998,0.249928,0,0);-ms-transform:matrix(0.155795,-0.003739,0.005998,0.249928,0,0);-webkit-transform:matrix(0.155795,-0.003739,0.005998,0.249928,0,0);}
.m64_c00314{transform:matrix(0.157010,-0.003768,0.005998,0.249928,0,0);-ms-transform:matrix(0.157010,-0.003768,0.005998,0.249928,0,0);-webkit-transform:matrix(0.157010,-0.003768,0.005998,0.249928,0,0);}
.md_c00314{transform:matrix(0.157795,-0.003787,0.005998,0.249928,0,0);-ms-transform:matrix(0.157795,-0.003787,0.005998,0.249928,0,0);-webkit-transform:matrix(0.157795,-0.003787,0.005998,0.249928,0,0);}
.m32_c00314{transform:matrix(0.158289,-0.003799,0.005998,0.249928,0,0);-ms-transform:matrix(0.158289,-0.003799,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158289,-0.003799,0.005998,0.249928,0,0);}
.mc2_c00314{transform:matrix(0.158724,-0.003809,0.005998,0.249928,0,0);-ms-transform:matrix(0.158724,-0.003809,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158724,-0.003809,0.005998,0.249928,0,0);}
.mf4_c00314{transform:matrix(0.158789,-0.003811,0.005998,0.249928,0,0);-ms-transform:matrix(0.158789,-0.003811,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158789,-0.003811,0.005998,0.249928,0,0);}
.m9_c00314{transform:matrix(0.158974,-0.003815,0.005998,0.249928,0,0);-ms-transform:matrix(0.158974,-0.003815,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158974,-0.003815,0.005998,0.249928,0,0);}
.m15_c00314{transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);-ms-transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159389,-0.003825,0.005998,0.249928,0,0);}
.m96_c00314{transform:matrix(0.159644,-0.003831,0.005998,0.249928,0,0);-ms-transform:matrix(0.159644,-0.003831,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159644,-0.003831,0.005998,0.249928,0,0);}
.m36_c00314{transform:matrix(0.160034,-0.003841,0.005998,0.249928,0,0);-ms-transform:matrix(0.160034,-0.003841,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160034,-0.003841,0.005998,0.249928,0,0);}
.m9d_c00314{transform:matrix(0.160384,-0.003849,0.005998,0.249928,0,0);-ms-transform:matrix(0.160384,-0.003849,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160384,-0.003849,0.005998,0.249928,0,0);}
.mb0_c00314{transform:matrix(0.160539,-0.003853,0.005998,0.249928,0,0);-ms-transform:matrix(0.160539,-0.003853,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160539,-0.003853,0.005998,0.249928,0,0);}
.m3a_c00314{transform:matrix(0.160804,-0.003859,0.005998,0.249928,0,0);-ms-transform:matrix(0.160804,-0.003859,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160804,-0.003859,0.005998,0.249928,0,0);}
.md5_c00314{transform:matrix(0.161034,-0.003865,0.005998,0.249928,0,0);-ms-transform:matrix(0.161034,-0.003865,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161034,-0.003865,0.005998,0.249928,0,0);}
.m91_c00314{transform:matrix(0.161848,-0.003884,0.005998,0.249928,0,0);-ms-transform:matrix(0.161848,-0.003884,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161848,-0.003884,0.005998,0.249928,0,0);}
.m7a_c00314{transform:matrix(0.162413,-0.003898,0.005998,0.249928,0,0);-ms-transform:matrix(0.162413,-0.003898,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162413,-0.003898,0.005998,0.249928,0,0);}
.m77_c00314{transform:matrix(0.162468,-0.003899,0.005998,0.249928,0,0);-ms-transform:matrix(0.162468,-0.003899,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162468,-0.003899,0.005998,0.249928,0,0);}
.m99_c00314{transform:matrix(0.162523,-0.003901,0.005998,0.249928,0,0);-ms-transform:matrix(0.162523,-0.003901,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162523,-0.003901,0.005998,0.249928,0,0);}
.m24_c00314{transform:matrix(0.162793,-0.003907,0.005998,0.249928,0,0);-ms-transform:matrix(0.162793,-0.003907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162793,-0.003907,0.005998,0.249928,0,0);}
.m2f_c00314{transform:matrix(0.162883,-0.003909,0.005998,0.249928,0,0);-ms-transform:matrix(0.162883,-0.003909,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162883,-0.003909,0.005998,0.249928,0,0);}
.m3b_c00314{transform:matrix(0.162968,-0.003911,0.005998,0.249928,0,0);-ms-transform:matrix(0.162968,-0.003911,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162968,-0.003911,0.005998,0.249928,0,0);}
.m1f_c00314{transform:matrix(0.163173,-0.003916,0.005998,0.249928,0,0);-ms-transform:matrix(0.163173,-0.003916,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163173,-0.003916,0.005998,0.249928,0,0);}
.m89_c00314{transform:matrix(0.164028,-0.003937,0.005998,0.249928,0,0);-ms-transform:matrix(0.164028,-0.003937,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164028,-0.003937,0.005998,0.249928,0,0);}
.m7e_c00314{transform:matrix(0.164353,-0.003944,0.005998,0.249928,0,0);-ms-transform:matrix(0.164353,-0.003944,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164353,-0.003944,0.005998,0.249928,0,0);}
.m16_c00314{transform:matrix(0.164638,-0.003951,0.005998,0.249928,0,0);-ms-transform:matrix(0.164638,-0.003951,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164638,-0.003951,0.005998,0.249928,0,0);}
.m20_c00314{transform:matrix(0.165077,-0.003962,0.005998,0.249928,0,0);-ms-transform:matrix(0.165077,-0.003962,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165077,-0.003962,0.005998,0.249928,0,0);}
.ma7_c00314{transform:matrix(0.165267,-0.003966,0.005998,0.249928,0,0);-ms-transform:matrix(0.165267,-0.003966,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165267,-0.003966,0.005998,0.249928,0,0);}
.m80_c00314{transform:matrix(0.165342,-0.003968,0.005998,0.249928,0,0);-ms-transform:matrix(0.165342,-0.003968,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165342,-0.003968,0.005998,0.249928,0,0);}
.mf_c00314{transform:matrix(0.165537,-0.003973,0.005998,0.249928,0,0);-ms-transform:matrix(0.165537,-0.003973,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165537,-0.003973,0.005998,0.249928,0,0);}
.m7d_c00314{transform:matrix(0.165892,-0.003981,0.005998,0.249928,0,0);-ms-transform:matrix(0.165892,-0.003981,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165892,-0.003981,0.005998,0.249928,0,0);}
.m5c_c00314{transform:matrix(0.166242,-0.003990,0.005998,0.249928,0,0);-ms-transform:matrix(0.166242,-0.003990,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166242,-0.003990,0.005998,0.249928,0,0);}
.mf8_c00314{transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);-ms-transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166402,-0.003994,0.005998,0.249928,0,0);}
.m9c_c00314{transform:matrix(0.168242,-0.004038,0.005998,0.249928,0,0);-ms-transform:matrix(0.168242,-0.004038,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168242,-0.004038,0.005998,0.249928,0,0);}
.m43_c00314{transform:matrix(0.168277,-0.004039,0.005998,0.249928,0,0);-ms-transform:matrix(0.168277,-0.004039,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168277,-0.004039,0.005998,0.249928,0,0);}
.m5e_c00314{transform:matrix(0.169161,-0.004060,0.005998,0.249928,0,0);-ms-transform:matrix(0.169161,-0.004060,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169161,-0.004060,0.005998,0.249928,0,0);}
.m71_c00314{transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);-ms-transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169761,-0.004074,0.005998,0.249928,0,0);}
.m6_c00314{transform:matrix(0.170286,-0.004087,0.005998,0.249928,0,0);-ms-transform:matrix(0.170286,-0.004087,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170286,-0.004087,0.005998,0.249928,0,0);}
.mb_c00314{transform:matrix(0.170351,-0.004088,0.005998,0.249928,0,0);-ms-transform:matrix(0.170351,-0.004088,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170351,-0.004088,0.005998,0.249928,0,0);}
.m88_c00314{transform:matrix(0.170471,-0.004091,0.005998,0.249928,0,0);-ms-transform:matrix(0.170471,-0.004091,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170471,-0.004091,0.005998,0.249928,0,0);}
.m35_c00314{transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);-ms-transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170791,-0.004099,0.005998,0.249928,0,0);}
.m57_c00314{transform:matrix(0.170826,-0.004100,0.005998,0.249928,0,0);-ms-transform:matrix(0.170826,-0.004100,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170826,-0.004100,0.005998,0.249928,0,0);}
.mdc_c00314{transform:matrix(0.171086,-0.004106,0.005998,0.249928,0,0);-ms-transform:matrix(0.171086,-0.004106,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171086,-0.004106,0.005998,0.249928,0,0);}
.mb9_c00314{transform:matrix(0.171211,-0.004109,0.005998,0.249928,0,0);-ms-transform:matrix(0.171211,-0.004109,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171211,-0.004109,0.005998,0.249928,0,0);}
.m78_c00314{transform:matrix(0.171791,-0.004123,0.005998,0.249928,0,0);-ms-transform:matrix(0.171791,-0.004123,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171791,-0.004123,0.005998,0.249928,0,0);}
.m56_c00314{transform:matrix(0.172215,-0.004133,0.005998,0.249928,0,0);-ms-transform:matrix(0.172215,-0.004133,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172215,-0.004133,0.005998,0.249928,0,0);}
.mf7_c00314{transform:matrix(0.172305,-0.004135,0.005998,0.249928,0,0);-ms-transform:matrix(0.172305,-0.004135,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172305,-0.004135,0.005998,0.249928,0,0);}
.m8a_c00314{transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);-ms-transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172400,-0.004138,0.005998,0.249928,0,0);}
.m8_c00314{transform:matrix(0.172440,-0.004139,0.005998,0.249928,0,0);-ms-transform:matrix(0.172440,-0.004139,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172440,-0.004139,0.005998,0.249928,0,0);}
.mcd_c00314{transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);-ms-transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172850,-0.004148,0.005998,0.249928,0,0);}
.mde_c00314{transform:matrix(0.172970,-0.004151,0.005998,0.249928,0,0);-ms-transform:matrix(0.172970,-0.004151,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172970,-0.004151,0.005998,0.249928,0,0);}
.ma3_c00314{transform:matrix(0.173395,-0.004161,0.005998,0.249928,0,0);-ms-transform:matrix(0.173395,-0.004161,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173395,-0.004161,0.005998,0.249928,0,0);}
.m12_c00314{transform:matrix(0.173410,-0.004162,0.005998,0.249928,0,0);-ms-transform:matrix(0.173410,-0.004162,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173410,-0.004162,0.005998,0.249928,0,0);}
.ma_c00314{transform:matrix(0.173565,-0.004166,0.005998,0.249928,0,0);-ms-transform:matrix(0.173565,-0.004166,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173565,-0.004166,0.005998,0.249928,0,0);}
.m98_c00314{transform:matrix(0.173650,-0.004168,0.005998,0.249928,0,0);-ms-transform:matrix(0.173650,-0.004168,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173650,-0.004168,0.005998,0.249928,0,0);}
.mbf_c00314{transform:matrix(0.174070,-0.004178,0.005998,0.249928,0,0);-ms-transform:matrix(0.174070,-0.004178,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174070,-0.004178,0.005998,0.249928,0,0);}
.m9f_c00314{transform:matrix(0.174625,-0.004191,0.005998,0.249928,0,0);-ms-transform:matrix(0.174625,-0.004191,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174625,-0.004191,0.005998,0.249928,0,0);}
.mf1_c00314{transform:matrix(0.174900,-0.004198,0.005998,0.249928,0,0);-ms-transform:matrix(0.174900,-0.004198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174900,-0.004198,0.005998,0.249928,0,0);}
.m7b_c00314{transform:matrix(0.176709,-0.004241,0.005998,0.249928,0,0);-ms-transform:matrix(0.176709,-0.004241,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176709,-0.004241,0.005998,0.249928,0,0);}
.m4b_c00314{transform:matrix(0.177084,-0.004250,0.005998,0.249928,0,0);-ms-transform:matrix(0.177084,-0.004250,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177084,-0.004250,0.005998,0.249928,0,0);}
.mb7_c00314{transform:matrix(0.177124,-0.004251,0.005998,0.249928,0,0);-ms-transform:matrix(0.177124,-0.004251,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177124,-0.004251,0.005998,0.249928,0,0);}
.m90_c00314{transform:matrix(0.177529,-0.004261,0.005998,0.249928,0,0);-ms-transform:matrix(0.177529,-0.004261,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177529,-0.004261,0.005998,0.249928,0,0);}
.m65_c00314{transform:matrix(0.177689,-0.004265,0.005998,0.249928,0,0);-ms-transform:matrix(0.177689,-0.004265,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177689,-0.004265,0.005998,0.249928,0,0);}
.mbd_c00314{transform:matrix(0.178339,-0.004280,0.005998,0.249928,0,0);-ms-transform:matrix(0.178339,-0.004280,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178339,-0.004280,0.005998,0.249928,0,0);}
.m61_c00314{transform:matrix(0.178674,-0.004288,0.005998,0.249928,0,0);-ms-transform:matrix(0.178674,-0.004288,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178674,-0.004288,0.005998,0.249928,0,0);}
.me_c00314{transform:matrix(0.178923,-0.004294,0.005998,0.249928,0,0);-ms-transform:matrix(0.178923,-0.004294,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178923,-0.004294,0.005998,0.249928,0,0);}
.m86_c00314{transform:matrix(0.180123,-0.004323,0.005998,0.249928,0,0);-ms-transform:matrix(0.180123,-0.004323,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180123,-0.004323,0.005998,0.249928,0,0);}
.md9_c00314{transform:matrix(0.180243,-0.004326,0.005998,0.249928,0,0);-ms-transform:matrix(0.180243,-0.004326,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180243,-0.004326,0.005998,0.249928,0,0);}
.mba_c00314{transform:matrix(0.180278,-0.004327,0.005998,0.249928,0,0);-ms-transform:matrix(0.180278,-0.004327,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180278,-0.004327,0.005998,0.249928,0,0);}
.m1b_c00314{transform:matrix(0.180293,-0.004327,0.005998,0.249928,0,0);-ms-transform:matrix(0.180293,-0.004327,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180293,-0.004327,0.005998,0.249928,0,0);}
.ma6_c00314{transform:matrix(0.180333,-0.004328,0.005998,0.249928,0,0);-ms-transform:matrix(0.180333,-0.004328,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180333,-0.004328,0.005998,0.249928,0,0);}
.mf5_c00314{transform:matrix(0.180743,-0.004338,0.005998,0.249928,0,0);-ms-transform:matrix(0.180743,-0.004338,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180743,-0.004338,0.005998,0.249928,0,0);}
.ma1_c00314{transform:matrix(0.180998,-0.004344,0.005998,0.249928,0,0);-ms-transform:matrix(0.180998,-0.004344,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180998,-0.004344,0.005998,0.249928,0,0);}
.m44_c00314{transform:matrix(0.181323,-0.004352,0.005998,0.249928,0,0);-ms-transform:matrix(0.181323,-0.004352,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181323,-0.004352,0.005998,0.249928,0,0);}
.m31_c00314{transform:matrix(0.182128,-0.004371,0.005998,0.249928,0,0);-ms-transform:matrix(0.182128,-0.004371,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182128,-0.004371,0.005998,0.249928,0,0);}
.m3d_c00314{transform:matrix(0.182617,-0.004383,0.005998,0.249928,0,0);-ms-transform:matrix(0.182617,-0.004383,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182617,-0.004383,0.005998,0.249928,0,0);}
.m53_c00314{transform:matrix(0.183422,-0.004402,0.005998,0.249928,0,0);-ms-transform:matrix(0.183422,-0.004402,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183422,-0.004402,0.005998,0.249928,0,0);}
.m81_c00314{transform:matrix(0.183967,-0.004415,0.005998,0.249928,0,0);-ms-transform:matrix(0.183967,-0.004415,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183967,-0.004415,0.005998,0.249928,0,0);}
.ma9_c00314{transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184147,-0.004420,0.005998,0.249928,0,0);}
.ma4_c00314{transform:matrix(0.184152,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184152,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184152,-0.004420,0.005998,0.249928,0,0);}
.m25_c00314{transform:matrix(0.184287,-0.004423,0.005998,0.249928,0,0);-ms-transform:matrix(0.184287,-0.004423,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184287,-0.004423,0.005998,0.249928,0,0);}
.m28_c00314{transform:matrix(0.184697,-0.004433,0.005998,0.249928,0,0);-ms-transform:matrix(0.184697,-0.004433,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184697,-0.004433,0.005998,0.249928,0,0);}
.m1a_c00314{transform:matrix(0.184892,-0.004437,0.005998,0.249928,0,0);-ms-transform:matrix(0.184892,-0.004437,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184892,-0.004437,0.005998,0.249928,0,0);}
.me1_c00314{transform:matrix(0.184952,-0.004439,0.005998,0.249928,0,0);-ms-transform:matrix(0.184952,-0.004439,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184952,-0.004439,0.005998,0.249928,0,0);}
.m33_c00314{transform:matrix(0.185057,-0.004441,0.005998,0.249928,0,0);-ms-transform:matrix(0.185057,-0.004441,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185057,-0.004441,0.005998,0.249928,0,0);}
.m30_c00314{transform:matrix(0.185382,-0.004449,0.005998,0.249928,0,0);-ms-transform:matrix(0.185382,-0.004449,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185382,-0.004449,0.005998,0.249928,0,0);}
.m27_c00314{transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);-ms-transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185717,-0.004457,0.005998,0.249928,0,0);}
.m50_c00314{transform:matrix(0.185791,-0.004459,0.005998,0.249928,0,0);-ms-transform:matrix(0.185791,-0.004459,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185791,-0.004459,0.005998,0.249928,0,0);}
.m66_c00314{transform:matrix(0.186756,-0.004482,0.005998,0.249928,0,0);-ms-transform:matrix(0.186756,-0.004482,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186756,-0.004482,0.005998,0.249928,0,0);}
.m93_c00314{transform:matrix(0.186816,-0.004484,0.005998,0.249928,0,0);-ms-transform:matrix(0.186816,-0.004484,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186816,-0.004484,0.005998,0.249928,0,0);}
.m5b_c00314{transform:matrix(0.186881,-0.004485,0.005998,0.249928,0,0);-ms-transform:matrix(0.186881,-0.004485,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186881,-0.004485,0.005998,0.249928,0,0);}
.m8d_c00314{transform:matrix(0.187121,-0.004491,0.005998,0.249928,0,0);-ms-transform:matrix(0.187121,-0.004491,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187121,-0.004491,0.005998,0.249928,0,0);}
.m79_c00314{transform:matrix(0.187416,-0.004498,0.005998,0.249928,0,0);-ms-transform:matrix(0.187416,-0.004498,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187416,-0.004498,0.005998,0.249928,0,0);}
.m3f_c00314{transform:matrix(0.187731,-0.004506,0.005998,0.249928,0,0);-ms-transform:matrix(0.187731,-0.004506,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187731,-0.004506,0.005998,0.249928,0,0);}
.m42_c00314{transform:matrix(0.188006,-0.004512,0.005998,0.249928,0,0);-ms-transform:matrix(0.188006,-0.004512,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188006,-0.004512,0.005998,0.249928,0,0);}
.mbb_c00314{transform:matrix(0.188081,-0.004514,0.005998,0.249928,0,0);-ms-transform:matrix(0.188081,-0.004514,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188081,-0.004514,0.005998,0.249928,0,0);}
.m6c_c00314{transform:matrix(0.188166,-0.004516,0.005998,0.249928,0,0);-ms-transform:matrix(0.188166,-0.004516,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188166,-0.004516,0.005998,0.249928,0,0);}
.mdd_c00314{transform:matrix(0.188526,-0.004525,0.005998,0.249928,0,0);-ms-transform:matrix(0.188526,-0.004525,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188526,-0.004525,0.005998,0.249928,0,0);}
.md2_c00314{transform:matrix(0.188931,-0.004534,0.005998,0.249928,0,0);-ms-transform:matrix(0.188931,-0.004534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188931,-0.004534,0.005998,0.249928,0,0);}
.m22_c00314{transform:matrix(0.189046,-0.004537,0.005998,0.249928,0,0);-ms-transform:matrix(0.189046,-0.004537,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189046,-0.004537,0.005998,0.249928,0,0);}
.m40_c00314{transform:matrix(0.189101,-0.004538,0.005998,0.249928,0,0);-ms-transform:matrix(0.189101,-0.004538,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189101,-0.004538,0.005998,0.249928,0,0);}
.m47_c00314{transform:matrix(0.189111,-0.004539,0.005998,0.249928,0,0);-ms-transform:matrix(0.189111,-0.004539,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189111,-0.004539,0.005998,0.249928,0,0);}
.md4_c00314{transform:matrix(0.189136,-0.004539,0.005998,0.249928,0,0);-ms-transform:matrix(0.189136,-0.004539,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189136,-0.004539,0.005998,0.249928,0,0);}
.m0_c00314{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.mdf_c00314{transform:matrix(0.189425,-0.004546,0.005998,0.249928,0,0);-ms-transform:matrix(0.189425,-0.004546,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189425,-0.004546,0.005998,0.249928,0,0);}
.ma8_c00314{transform:matrix(0.189775,-0.004555,0.005998,0.249928,0,0);-ms-transform:matrix(0.189775,-0.004555,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189775,-0.004555,0.005998,0.249928,0,0);}
.md7_c00314{transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);-ms-transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190085,-0.004562,0.005998,0.249928,0,0);}
.m75_c00314{transform:matrix(0.190135,-0.004563,0.005998,0.249928,0,0);-ms-transform:matrix(0.190135,-0.004563,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190135,-0.004563,0.005998,0.249928,0,0);}
.mec_c00314{transform:matrix(0.190465,-0.004571,0.005998,0.249928,0,0);-ms-transform:matrix(0.190465,-0.004571,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190465,-0.004571,0.005998,0.249928,0,0);}
.me5_c00314{transform:matrix(0.190480,-0.004572,0.005998,0.249928,0,0);-ms-transform:matrix(0.190480,-0.004572,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190480,-0.004572,0.005998,0.249928,0,0);}
.mbe_c00314{transform:matrix(0.190620,-0.004575,0.005998,0.249928,0,0);-ms-transform:matrix(0.190620,-0.004575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190620,-0.004575,0.005998,0.249928,0,0);}
.mb5_c00314{transform:matrix(0.190705,-0.004577,0.005998,0.249928,0,0);-ms-transform:matrix(0.190705,-0.004577,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190705,-0.004577,0.005998,0.249928,0,0);}
.m87_c00314{transform:matrix(0.190710,-0.004577,0.005998,0.249928,0,0);-ms-transform:matrix(0.190710,-0.004577,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190710,-0.004577,0.005998,0.249928,0,0);}
.m2e_c00314{transform:matrix(0.190950,-0.004583,0.005998,0.249928,0,0);-ms-transform:matrix(0.190950,-0.004583,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190950,-0.004583,0.005998,0.249928,0,0);}
.me3_c00314{transform:matrix(0.191640,-0.004599,0.005998,0.249928,0,0);-ms-transform:matrix(0.191640,-0.004599,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191640,-0.004599,0.005998,0.249928,0,0);}
.m2d_c00314{transform:matrix(0.191700,-0.004601,0.005998,0.249928,0,0);-ms-transform:matrix(0.191700,-0.004601,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191700,-0.004601,0.005998,0.249928,0,0);}
.m95_c00314{transform:matrix(0.191710,-0.004601,0.005998,0.249928,0,0);-ms-transform:matrix(0.191710,-0.004601,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191710,-0.004601,0.005998,0.249928,0,0);}
.m17_c00314{transform:matrix(0.191765,-0.004602,0.005998,0.249928,0,0);-ms-transform:matrix(0.191765,-0.004602,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191765,-0.004602,0.005998,0.249928,0,0);}
.m4_c00314{transform:matrix(0.191830,-0.004604,0.005998,0.249928,0,0);-ms-transform:matrix(0.191830,-0.004604,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191830,-0.004604,0.005998,0.249928,0,0);}
.mef_c00314{transform:matrix(0.192145,-0.004611,0.005998,0.249928,0,0);-ms-transform:matrix(0.192145,-0.004611,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192145,-0.004611,0.005998,0.249928,0,0);}
.m8f_c00314{transform:matrix(0.192889,-0.004629,0.005998,0.249928,0,0);-ms-transform:matrix(0.192889,-0.004629,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192889,-0.004629,0.005998,0.249928,0,0);}
.m67_c00314{transform:matrix(0.193084,-0.004634,0.005998,0.249928,0,0);-ms-transform:matrix(0.193084,-0.004634,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193084,-0.004634,0.005998,0.249928,0,0);}
.m5a_c00314{transform:matrix(0.193614,-0.004647,0.005998,0.249928,0,0);-ms-transform:matrix(0.193614,-0.004647,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193614,-0.004647,0.005998,0.249928,0,0);}
.m9b_c00314{transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);-ms-transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193984,-0.004656,0.005998,0.249928,0,0);}
.meb_c00314{transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);-ms-transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);}
.med_c00314{transform:matrix(0.194074,-0.004658,0.005998,0.249928,0,0);-ms-transform:matrix(0.194074,-0.004658,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194074,-0.004658,0.005998,0.249928,0,0);}
.m63_c00314{transform:matrix(0.194094,-0.004658,0.005998,0.249928,0,0);-ms-transform:matrix(0.194094,-0.004658,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194094,-0.004658,0.005998,0.249928,0,0);}
.mf6_c00314{transform:matrix(0.194119,-0.004659,0.005998,0.249928,0,0);-ms-transform:matrix(0.194119,-0.004659,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194119,-0.004659,0.005998,0.249928,0,0);}
.me7_c00314{transform:matrix(0.194179,-0.004660,0.005998,0.249928,0,0);-ms-transform:matrix(0.194179,-0.004660,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194179,-0.004660,0.005998,0.249928,0,0);}
.m26_c00314{transform:matrix(0.194369,-0.004665,0.005998,0.249928,0,0);-ms-transform:matrix(0.194369,-0.004665,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194369,-0.004665,0.005998,0.249928,0,0);}
.m5f_c00314{transform:matrix(0.194474,-0.004667,0.005998,0.249928,0,0);-ms-transform:matrix(0.194474,-0.004667,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194474,-0.004667,0.005998,0.249928,0,0);}
.mc3_c00314{transform:matrix(0.194844,-0.004676,0.005998,0.249928,0,0);-ms-transform:matrix(0.194844,-0.004676,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194844,-0.004676,0.005998,0.249928,0,0);}
.ma2_c00314{transform:matrix(0.194854,-0.004676,0.005998,0.249928,0,0);-ms-transform:matrix(0.194854,-0.004676,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194854,-0.004676,0.005998,0.249928,0,0);}
.mce_c00314{transform:matrix(0.194949,-0.004679,0.005998,0.249928,0,0);-ms-transform:matrix(0.194949,-0.004679,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194949,-0.004679,0.005998,0.249928,0,0);}
.m13_c00314{transform:matrix(0.195064,-0.004682,0.005998,0.249928,0,0);-ms-transform:matrix(0.195064,-0.004682,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195064,-0.004682,0.005998,0.249928,0,0);}
.m4e_c00314{transform:matrix(0.195259,-0.004686,0.005998,0.249928,0,0);-ms-transform:matrix(0.195259,-0.004686,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195259,-0.004686,0.005998,0.249928,0,0);}
.me2_c00314{transform:matrix(0.195569,-0.004694,0.005998,0.249928,0,0);-ms-transform:matrix(0.195569,-0.004694,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195569,-0.004694,0.005998,0.249928,0,0);}
.m8b_c00314{transform:matrix(0.195959,-0.004703,0.005998,0.249928,0,0);-ms-transform:matrix(0.195959,-0.004703,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195959,-0.004703,0.005998,0.249928,0,0);}
.mc0_c00314{transform:matrix(0.196483,-0.004716,0.005998,0.249928,0,0);-ms-transform:matrix(0.196483,-0.004716,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196483,-0.004716,0.005998,0.249928,0,0);}
.m83_c00314{transform:matrix(0.196783,-0.004723,0.005998,0.249928,0,0);-ms-transform:matrix(0.196783,-0.004723,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196783,-0.004723,0.005998,0.249928,0,0);}
.m7_c00314{transform:matrix(0.198718,-0.004769,0.005998,0.249928,0,0);-ms-transform:matrix(0.198718,-0.004769,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198718,-0.004769,0.005998,0.249928,0,0);}
.m97_c00314{transform:matrix(0.198728,-0.004769,0.005998,0.249928,0,0);-ms-transform:matrix(0.198728,-0.004769,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198728,-0.004769,0.005998,0.249928,0,0);}
.mbc_c00314{transform:matrix(0.198953,-0.004775,0.005998,0.249928,0,0);-ms-transform:matrix(0.198953,-0.004775,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198953,-0.004775,0.005998,0.249928,0,0);}
.mee_c00314{transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);-ms-transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199862,-0.004797,0.005998,0.249928,0,0);}
.m92_c00314{transform:matrix(0.200292,-0.004807,0.005998,0.249928,0,0);-ms-transform:matrix(0.200292,-0.004807,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200292,-0.004807,0.005998,0.249928,0,0);}
.mc_c00314{transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);-ms-transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200507,-0.004812,0.005998,0.249928,0,0);}
.m84_c00314{transform:matrix(0.200572,-0.004814,0.005998,0.249928,0,0);-ms-transform:matrix(0.200572,-0.004814,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200572,-0.004814,0.005998,0.249928,0,0);}
.m38_c00314{transform:matrix(0.200647,-0.004816,0.005998,0.249928,0,0);-ms-transform:matrix(0.200647,-0.004816,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200647,-0.004816,0.005998,0.249928,0,0);}
.m9e_c00314{transform:matrix(0.200952,-0.004823,0.005998,0.249928,0,0);-ms-transform:matrix(0.200952,-0.004823,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200952,-0.004823,0.005998,0.249928,0,0);}
.m21_c00314{transform:matrix(0.201357,-0.004833,0.005998,0.249928,0,0);-ms-transform:matrix(0.201357,-0.004833,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201357,-0.004833,0.005998,0.249928,0,0);}
.maf_c00314{transform:matrix(0.201457,-0.004835,0.005998,0.249928,0,0);-ms-transform:matrix(0.201457,-0.004835,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201457,-0.004835,0.005998,0.249928,0,0);}
.m14_c00314{transform:matrix(0.201492,-0.004836,0.005998,0.249928,0,0);-ms-transform:matrix(0.201492,-0.004836,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201492,-0.004836,0.005998,0.249928,0,0);}
.m11_c00314{transform:matrix(0.201527,-0.004837,0.005998,0.249928,0,0);-ms-transform:matrix(0.201527,-0.004837,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201527,-0.004837,0.005998,0.249928,0,0);}
.mb4_c00314{transform:matrix(0.201877,-0.004845,0.005998,0.249928,0,0);-ms-transform:matrix(0.201877,-0.004845,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201877,-0.004845,0.005998,0.249928,0,0);}
.m2c_c00314{transform:matrix(0.202252,-0.004854,0.005998,0.249928,0,0);-ms-transform:matrix(0.202252,-0.004854,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202252,-0.004854,0.005998,0.249928,0,0);}
.m76_c00314{transform:matrix(0.202372,-0.004857,0.005998,0.249928,0,0);-ms-transform:matrix(0.202372,-0.004857,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202372,-0.004857,0.005998,0.249928,0,0);}
.mcf_c00314{transform:matrix(0.202522,-0.004861,0.005998,0.249928,0,0);-ms-transform:matrix(0.202522,-0.004861,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202522,-0.004861,0.005998,0.249928,0,0);}
.mf0_c00314{transform:matrix(0.202632,-0.004863,0.005998,0.249928,0,0);-ms-transform:matrix(0.202632,-0.004863,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202632,-0.004863,0.005998,0.249928,0,0);}
.m19_c00314{transform:matrix(0.203301,-0.004879,0.005998,0.249928,0,0);-ms-transform:matrix(0.203301,-0.004879,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203301,-0.004879,0.005998,0.249928,0,0);}
.mc1_c00314{transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);-ms-transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203786,-0.004891,0.005998,0.249928,0,0);}
.mae_c00314{transform:matrix(0.203956,-0.004895,0.005998,0.249928,0,0);-ms-transform:matrix(0.203956,-0.004895,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203956,-0.004895,0.005998,0.249928,0,0);}
.mc6_c00314{transform:matrix(0.204151,-0.004900,0.005998,0.249928,0,0);-ms-transform:matrix(0.204151,-0.004900,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204151,-0.004900,0.005998,0.249928,0,0);}
.m49_c00314{transform:matrix(0.204276,-0.004903,0.005998,0.249928,0,0);-ms-transform:matrix(0.204276,-0.004903,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204276,-0.004903,0.005998,0.249928,0,0);}
.m3c_c00314{transform:matrix(0.204511,-0.004908,0.005998,0.249928,0,0);-ms-transform:matrix(0.204511,-0.004908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204511,-0.004908,0.005998,0.249928,0,0);}
.m69_c00314{transform:matrix(0.204596,-0.004910,0.005998,0.249928,0,0);-ms-transform:matrix(0.204596,-0.004910,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204596,-0.004910,0.005998,0.249928,0,0);}
.m2_c00314{transform:matrix(0.204711,-0.004913,0.005998,0.249928,0,0);-ms-transform:matrix(0.204711,-0.004913,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204711,-0.004913,0.005998,0.249928,0,0);}
.mda_c00314{transform:matrix(0.204831,-0.004916,0.005998,0.249928,0,0);-ms-transform:matrix(0.204831,-0.004916,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204831,-0.004916,0.005998,0.249928,0,0);}
.mca_c00314{transform:matrix(0.205146,-0.004924,0.005998,0.249928,0,0);-ms-transform:matrix(0.205146,-0.004924,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205146,-0.004924,0.005998,0.249928,0,0);}
.m6a_c00314{transform:matrix(0.205231,-0.004926,0.005998,0.249928,0,0);-ms-transform:matrix(0.205231,-0.004926,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205231,-0.004926,0.005998,0.249928,0,0);}
.ma5_c00314{transform:matrix(0.205286,-0.004927,0.005998,0.249928,0,0);-ms-transform:matrix(0.205286,-0.004927,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205286,-0.004927,0.005998,0.249928,0,0);}
.mc8_c00314{transform:matrix(0.205436,-0.004930,0.005998,0.249928,0,0);-ms-transform:matrix(0.205436,-0.004930,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205436,-0.004930,0.005998,0.249928,0,0);}
.mb8_c00314{transform:matrix(0.205686,-0.004936,0.005998,0.249928,0,0);-ms-transform:matrix(0.205686,-0.004936,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205686,-0.004936,0.005998,0.249928,0,0);}
.md3_c00314{transform:matrix(0.206231,-0.004950,0.005998,0.249928,0,0);-ms-transform:matrix(0.206231,-0.004950,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206231,-0.004950,0.005998,0.249928,0,0);}
.m37_c00314{transform:matrix(0.206411,-0.004954,0.005998,0.249928,0,0);-ms-transform:matrix(0.206411,-0.004954,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206411,-0.004954,0.005998,0.249928,0,0);}
.m72_c00314{transform:matrix(0.206546,-0.004957,0.005998,0.249928,0,0);-ms-transform:matrix(0.206546,-0.004957,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206546,-0.004957,0.005998,0.249928,0,0);}
.m6f_c00314{transform:matrix(0.206950,-0.004967,0.005998,0.249928,0,0);-ms-transform:matrix(0.206950,-0.004967,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206950,-0.004967,0.005998,0.249928,0,0);}
.m2a_c00314{transform:matrix(0.207355,-0.004977,0.005998,0.249928,0,0);-ms-transform:matrix(0.207355,-0.004977,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207355,-0.004977,0.005998,0.249928,0,0);}
.me6_c00314{transform:matrix(0.207595,-0.004982,0.005998,0.249928,0,0);-ms-transform:matrix(0.207595,-0.004982,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207595,-0.004982,0.005998,0.249928,0,0);}
.md6_c00314{transform:matrix(0.208165,-0.004996,0.005998,0.249928,0,0);-ms-transform:matrix(0.208165,-0.004996,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208165,-0.004996,0.005998,0.249928,0,0);}
.m1e_c00314{transform:matrix(0.209020,-0.005016,0.005998,0.249928,0,0);-ms-transform:matrix(0.209020,-0.005016,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209020,-0.005016,0.005998,0.249928,0,0);}
.maa_c00314{transform:matrix(0.209140,-0.005019,0.005998,0.249928,0,0);-ms-transform:matrix(0.209140,-0.005019,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209140,-0.005019,0.005998,0.249928,0,0);}
.m94_c00314{transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);-ms-transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209530,-0.005029,0.005998,0.249928,0,0);}
.m4d_c00314{transform:matrix(0.209630,-0.005031,0.005998,0.249928,0,0);-ms-transform:matrix(0.209630,-0.005031,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209630,-0.005031,0.005998,0.249928,0,0);}
.ma0_c00314{transform:matrix(0.210324,-0.005048,0.005998,0.249928,0,0);-ms-transform:matrix(0.210324,-0.005048,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210324,-0.005048,0.005998,0.249928,0,0);}
.me9_c00314{transform:matrix(0.210454,-0.005051,0.005998,0.249928,0,0);-ms-transform:matrix(0.210454,-0.005051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210454,-0.005051,0.005998,0.249928,0,0);}
.m9a_c00314{transform:matrix(0.210579,-0.005054,0.005998,0.249928,0,0);-ms-transform:matrix(0.210579,-0.005054,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210579,-0.005054,0.005998,0.249928,0,0);}
.md8_c00314{transform:matrix(0.211484,-0.005076,0.005998,0.249928,0,0);-ms-transform:matrix(0.211484,-0.005076,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211484,-0.005076,0.005998,0.249928,0,0);}
.mb1_c00314{transform:matrix(0.213509,-0.005124,0.005998,0.249928,0,0);-ms-transform:matrix(0.213509,-0.005124,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213509,-0.005124,0.005998,0.249928,0,0);}
.m46_c00314{transform:matrix(0.213723,-0.005129,0.005998,0.249928,0,0);-ms-transform:matrix(0.213723,-0.005129,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213723,-0.005129,0.005998,0.249928,0,0);}
.mb3_c00314{transform:matrix(0.214348,-0.005144,0.005998,0.249928,0,0);-ms-transform:matrix(0.214348,-0.005144,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214348,-0.005144,0.005998,0.249928,0,0);}
.mc5_c00314{transform:matrix(0.214548,-0.005149,0.005998,0.249928,0,0);-ms-transform:matrix(0.214548,-0.005149,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214548,-0.005149,0.005998,0.249928,0,0);}
.m68_c00314{transform:matrix(0.214593,-0.005150,0.005998,0.249928,0,0);-ms-transform:matrix(0.214593,-0.005150,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214593,-0.005150,0.005998,0.249928,0,0);}
.m41_c00314{transform:matrix(0.214683,-0.005152,0.005998,0.249928,0,0);-ms-transform:matrix(0.214683,-0.005152,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214683,-0.005152,0.005998,0.249928,0,0);}
.me4_c00314{transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);-ms-transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214768,-0.005154,0.005998,0.249928,0,0);}
.m29_c00314{transform:matrix(0.214853,-0.005156,0.005998,0.249928,0,0);-ms-transform:matrix(0.214853,-0.005156,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214853,-0.005156,0.005998,0.249928,0,0);}
.m45_c00314{transform:matrix(0.215243,-0.005166,0.005998,0.249928,0,0);-ms-transform:matrix(0.215243,-0.005166,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215243,-0.005166,0.005998,0.249928,0,0);}
.mcb_c00314{transform:matrix(0.215318,-0.005168,0.005998,0.249928,0,0);-ms-transform:matrix(0.215318,-0.005168,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215318,-0.005168,0.005998,0.249928,0,0);}
.m55_c00314{transform:matrix(0.216143,-0.005187,0.005998,0.249928,0,0);-ms-transform:matrix(0.216143,-0.005187,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216143,-0.005187,0.005998,0.249928,0,0);}
.m18_c00314{transform:matrix(0.219217,-0.005261,0.005998,0.249928,0,0);-ms-transform:matrix(0.219217,-0.005261,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219217,-0.005261,0.005998,0.249928,0,0);}
.m3e_c00314{transform:matrix(0.219742,-0.005274,0.005998,0.249928,0,0);-ms-transform:matrix(0.219742,-0.005274,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219742,-0.005274,0.005998,0.249928,0,0);}
.mc9_c00314{transform:matrix(0.220172,-0.005284,0.005998,0.249928,0,0);-ms-transform:matrix(0.220172,-0.005284,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220172,-0.005284,0.005998,0.249928,0,0);}
.m4f_c00314{transform:matrix(0.220262,-0.005286,0.005998,0.249928,0,0);-ms-transform:matrix(0.220262,-0.005286,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220262,-0.005286,0.005998,0.249928,0,0);}
.mdb_c00314{transform:matrix(0.221286,-0.005311,0.005998,0.249928,0,0);-ms-transform:matrix(0.221286,-0.005311,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221286,-0.005311,0.005998,0.249928,0,0);}
.m1d_c00314{transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);-ms-transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);}
.m70_c00314{transform:matrix(0.223096,-0.005354,0.005998,0.249928,0,0);-ms-transform:matrix(0.223096,-0.005354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223096,-0.005354,0.005998,0.249928,0,0);}
.m4c_c00314{transform:matrix(0.223201,-0.005357,0.005998,0.249928,0,0);-ms-transform:matrix(0.223201,-0.005357,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223201,-0.005357,0.005998,0.249928,0,0);}
.mc4_c00314{transform:matrix(0.224160,-0.005380,0.005998,0.249928,0,0);-ms-transform:matrix(0.224160,-0.005380,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224160,-0.005380,0.005998,0.249928,0,0);}
.mb2_c00314{transform:matrix(0.225160,-0.005404,0.005998,0.249928,0,0);-ms-transform:matrix(0.225160,-0.005404,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225160,-0.005404,0.005998,0.249928,0,0);}
.m51_c00314{transform:matrix(0.225200,-0.005405,0.005998,0.249928,0,0);-ms-transform:matrix(0.225200,-0.005405,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225200,-0.005405,0.005998,0.249928,0,0);}
.mc7_c00314{transform:matrix(0.225880,-0.005421,0.005998,0.249928,0,0);-ms-transform:matrix(0.225880,-0.005421,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225880,-0.005421,0.005998,0.249928,0,0);}
.mcc_c00314{transform:matrix(0.226625,-0.005439,0.005998,0.249928,0,0);-ms-transform:matrix(0.226625,-0.005439,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226625,-0.005439,0.005998,0.249928,0,0);}
.m54_c00314{transform:matrix(0.226840,-0.005444,0.005998,0.249928,0,0);-ms-transform:matrix(0.226840,-0.005444,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226840,-0.005444,0.005998,0.249928,0,0);}
.m5d_c00314{transform:matrix(0.227549,-0.005461,0.005998,0.249928,0,0);-ms-transform:matrix(0.227549,-0.005461,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227549,-0.005461,0.005998,0.249928,0,0);}
.m1c_c00314{transform:matrix(0.228114,-0.005475,0.005998,0.249928,0,0);-ms-transform:matrix(0.228114,-0.005475,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228114,-0.005475,0.005998,0.249928,0,0);}
.m48_c00314{transform:matrix(0.228179,-0.005476,0.005998,0.249928,0,0);-ms-transform:matrix(0.228179,-0.005476,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228179,-0.005476,0.005998,0.249928,0,0);}
.me8_c00314{transform:matrix(0.228954,-0.005495,0.005998,0.249928,0,0);-ms-transform:matrix(0.228954,-0.005495,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228954,-0.005495,0.005998,0.249928,0,0);}
.mb6_c00314{transform:matrix(0.228979,-0.005495,0.005998,0.249928,0,0);-ms-transform:matrix(0.228979,-0.005495,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228979,-0.005495,0.005998,0.249928,0,0);}
.m73_c00314{transform:matrix(0.229204,-0.005501,0.005998,0.249928,0,0);-ms-transform:matrix(0.229204,-0.005501,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229204,-0.005501,0.005998,0.249928,0,0);}
.m4a_c00314{transform:matrix(0.229869,-0.005517,0.005998,0.249928,0,0);-ms-transform:matrix(0.229869,-0.005517,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229869,-0.005517,0.005998,0.249928,0,0);}
.mf3_c00314{transform:matrix(0.231053,-0.005545,0.005998,0.249928,0,0);-ms-transform:matrix(0.231053,-0.005545,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231053,-0.005545,0.005998,0.249928,0,0);}
.me0_c00314{transform:matrix(0.231303,-0.005551,0.005998,0.249928,0,0);-ms-transform:matrix(0.231303,-0.005551,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231303,-0.005551,0.005998,0.249928,0,0);}
.m58_c00314{transform:matrix(0.231533,-0.005557,0.005998,0.249928,0,0);-ms-transform:matrix(0.231533,-0.005557,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231533,-0.005557,0.005998,0.249928,0,0);}
.m10_c00314{transform:matrix(0.232633,-0.005583,0.005998,0.249928,0,0);-ms-transform:matrix(0.232633,-0.005583,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232633,-0.005583,0.005998,0.249928,0,0);}
.md0_c00314{transform:matrix(0.234427,-0.005626,0.005998,0.249928,0,0);-ms-transform:matrix(0.234427,-0.005626,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234427,-0.005626,0.005998,0.249928,0,0);}
.m52_c00314{transform:matrix(0.234982,-0.005640,0.005998,0.249928,0,0);-ms-transform:matrix(0.234982,-0.005640,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234982,-0.005640,0.005998,0.249928,0,0);}
.mac_c00314{transform:matrix(0.235357,-0.005649,0.005998,0.249928,0,0);-ms-transform:matrix(0.235357,-0.005649,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235357,-0.005649,0.005998,0.249928,0,0);}
.m6e_c00314{transform:matrix(0.238596,-0.005726,0.005998,0.249928,0,0);-ms-transform:matrix(0.238596,-0.005726,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238596,-0.005726,0.005998,0.249928,0,0);}
.m39_c00314{transform:matrix(0.242075,-0.005810,0.005998,0.249928,0,0);-ms-transform:matrix(0.242075,-0.005810,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242075,-0.005810,0.005998,0.249928,0,0);}
.mea_c00314{transform:matrix(0.244380,-0.005865,0.005998,0.249928,0,0);-ms-transform:matrix(0.244380,-0.005865,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244380,-0.005865,0.005998,0.249928,0,0);}
.m6b_c00314{transform:matrix(0.250118,-0.006003,0.005998,0.249928,0,0);-ms-transform:matrix(0.250118,-0.006003,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250118,-0.006003,0.005998,0.249928,0,0);}
.m74_c00314{transform:matrix(0.256326,-0.006152,0.005998,0.249928,0,0);-ms-transform:matrix(0.256326,-0.006152,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256326,-0.006152,0.005998,0.249928,0,0);}
.m7c_c00314{transform:matrix(0.256786,-0.006163,0.005998,0.249928,0,0);-ms-transform:matrix(0.256786,-0.006163,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256786,-0.006163,0.005998,0.249928,0,0);}
.m6d_c00314{transform:matrix(0.258745,-0.006210,0.005998,0.249928,0,0);-ms-transform:matrix(0.258745,-0.006210,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258745,-0.006210,0.005998,0.249928,0,0);}
.m23_c00314{transform:matrix(0.262224,-0.006293,0.005998,0.249928,0,0);-ms-transform:matrix(0.262224,-0.006293,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262224,-0.006293,0.005998,0.249928,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:0.000000px;}
.fc0_c00314{color:transparent;}
.fs9_c00314{font-size:55.666025px;}
.fs4_c00314{font-size:58.816932px;}
.fs8_c00314{font-size:59.867234px;}
.fsc_c00314{font-size:61.967839px;}
.fsd_c00314{font-size:63.018141px;}
.fsa_c00314{font-size:64.068444px;}
.fs7_c00314{font-size:65.118746px;}
.fs0_c00314{font-size:66.150000px;}
.fs6_c00314{font-size:66.169048px;}
.fs5_c00314{font-size:67.219351px;}
.fs3_c00314{font-size:68.269653px;}
.fs2_c00314{font-size:69.319956px;}
.fs1_c00314{font-size:72.470863px;}
.fsb_c00314{font-size:73.521165px;}
.y0_c00314{bottom:0.000000px;}
.yfa_c00314{bottom:36.412452px;}
.yf8_c00314{bottom:36.412656px;}
.yf4_c00314{bottom:36.412860px;}
.yf9_c00314{bottom:36.413004px;}
.yf6_c00314{bottom:36.413232px;}
.yf5_c00314{bottom:36.413292px;}
.yf7_c00314{bottom:36.413400px;}
.yed_c00314{bottom:50.352528px;}
.yee_c00314{bottom:50.926056px;}
.yef_c00314{bottom:51.568356px;}
.yf0_c00314{bottom:52.530648px;}
.yf1_c00314{bottom:52.819188px;}
.yf2_c00314{bottom:53.932452px;}
.yf3_c00314{bottom:55.119276px;}
.ye4_c00314{bottom:67.096692px;}
.ye5_c00314{bottom:67.572564px;}
.ye6_c00314{bottom:68.246040px;}
.ye7_c00314{bottom:68.545596px;}
.ye8_c00314{bottom:68.812812px;}
.ye9_c00314{bottom:69.704196px;}
.yea_c00314{bottom:70.081416px;}
.yeb_c00314{bottom:70.843764px;}
.yec_c00314{bottom:71.167092px;}
.ydb_c00314{bottom:83.301624px;}
.ydc_c00314{bottom:83.608164px;}
.ydd_c00314{bottom:84.018084px;}
.yde_c00314{bottom:85.132404px;}
.ydf_c00314{bottom:85.358712px;}
.ye0_c00314{bottom:85.942080px;}
.ye1_c00314{bottom:86.218440px;}
.ye2_c00314{bottom:86.902992px;}
.ye3_c00314{bottom:87.262056px;}
.yd2_c00314{bottom:100.586388px;}
.yd3_c00314{bottom:100.985256px;}
.yd4_c00314{bottom:101.788860px;}
.yd5_c00314{bottom:102.010080px;}
.yd6_c00314{bottom:102.284652px;}
.yd7_c00314{bottom:103.117332px;}
.yd8_c00314{bottom:103.415568px;}
.yd9_c00314{bottom:104.416140px;}
.yda_c00314{bottom:104.728248px;}
.yc9_c00314{bottom:116.790276px;}
.yca_c00314{bottom:117.219120px;}
.ycb_c00314{bottom:117.815388px;}
.ycc_c00314{bottom:118.275672px;}
.ycd_c00314{bottom:119.106204px;}
.yce_c00314{bottom:119.283252px;}
.ycf_c00314{bottom:119.528700px;}
.yd0_c00314{bottom:119.873004px;}
.yd1_c00314{bottom:120.128904px;}
.yc1_c00314{bottom:136.505508px;}
.yc2_c00314{bottom:137.251296px;}
.yc3_c00314{bottom:137.652948px;}
.yc4_c00314{bottom:137.867532px;}
.yc5_c00314{bottom:138.531324px;}
.yc6_c00314{bottom:138.813156px;}
.yc7_c00314{bottom:139.552920px;}
.yc8_c00314{bottom:139.785804px;}
.yba_c00314{bottom:151.362000px;}
.ybb_c00314{bottom:152.133528px;}
.ybc_c00314{bottom:152.478348px;}
.ybd_c00314{bottom:153.317832px;}
.ybe_c00314{bottom:154.318188px;}
.ybf_c00314{bottom:154.663332px;}
.yc0_c00314{bottom:155.612760px;}
.yb4_c00314{bottom:168.646428px;}
.yb5_c00314{bottom:170.126652px;}
.yb6_c00314{bottom:170.808984px;}
.yb7_c00314{bottom:171.226032px;}
.yb8_c00314{bottom:171.765624px;}
.yb9_c00314{bottom:172.644144px;}
.yac_c00314{bottom:184.580544px;}
.yad_c00314{bottom:185.008800px;}
.yae_c00314{bottom:185.480544px;}
.yaf_c00314{bottom:185.830932px;}
.yb0_c00314{bottom:186.564876px;}
.yb1_c00314{bottom:186.963732px;}
.yb2_c00314{bottom:187.519176px;}
.yb3_c00314{bottom:189.033216px;}
.ya5_c00314{bottom:202.404648px;}
.ya6_c00314{bottom:202.945680px;}
.ya7_c00314{bottom:203.115552px;}
.ya8_c00314{bottom:203.771988px;}
.ya9_c00314{bottom:203.961852px;}
.yaa_c00314{bottom:204.425088px;}
.yab_c00314{bottom:204.647304px;}
.y9e_c00314{bottom:220.228788px;}
.y9f_c00314{bottom:220.906512px;}
.ya0_c00314{bottom:221.153424px;}
.ya1_c00314{bottom:221.491896px;}
.ya2_c00314{bottom:222.180684px;}
.ya3_c00314{bottom:222.638820px;}
.ya4_c00314{bottom:223.361388px;}
.y95_c00314{bottom:236.974404px;}
.y96_c00314{bottom:237.207036px;}
.y97_c00314{bottom:237.476160px;}
.y98_c00314{bottom:237.789936px;}
.y99_c00314{bottom:238.490652px;}
.y9a_c00314{bottom:238.821504px;}
.y9b_c00314{bottom:239.021184px;}
.y9c_c00314{bottom:240.013752px;}
.y9d_c00314{bottom:240.281832px;}
.y8d_c00314{bottom:256.767900px;}
.y8e_c00314{bottom:256.768596px;}
.y90_c00314{bottom:256.768956px;}
.y8f_c00314{bottom:256.769016px;}
.y91_c00314{bottom:256.769136px;}
.y92_c00314{bottom:256.769784px;}
.y94_c00314{bottom:256.770324px;}
.y93_c00314{bottom:256.770456px;}
.y84_c00314{bottom:269.922828px;}
.y85_c00314{bottom:270.344016px;}
.y86_c00314{bottom:270.559248px;}
.y87_c00314{bottom:271.093440px;}
.y88_c00314{bottom:272.072328px;}
.y89_c00314{bottom:273.182580px;}
.y8a_c00314{bottom:273.765396px;}
.y8b_c00314{bottom:274.211436px;}
.y8c_c00314{bottom:274.509672px;}
.y7e_c00314{bottom:288.017748px;}
.y7f_c00314{bottom:289.304964px;}
.y80_c00314{bottom:290.160828px;}
.y81_c00314{bottom:290.571036px;}
.y82_c00314{bottom:291.185160px;}
.y83_c00314{bottom:291.987504px;}
.y76_c00314{bottom:305.841312px;}
.y77_c00314{bottom:307.185132px;}
.y78_c00314{bottom:307.376052px;}
.y79_c00314{bottom:307.719960px;}
.y7a_c00314{bottom:308.514648px;}
.y7b_c00314{bottom:308.809356px;}
.y7c_c00314{bottom:309.195720px;}
.y7d_c00314{bottom:310.014180px;}
.y6d_c00314{bottom:322.586184px;}
.y6e_c00314{bottom:323.084616px;}
.y6f_c00314{bottom:323.302860px;}
.y70_c00314{bottom:324.015660px;}
.y71_c00314{bottom:324.323964px;}
.y72_c00314{bottom:324.979104px;}
.y73_c00314{bottom:325.267188px;}
.y74_c00314{bottom:326.068620px;}
.y75_c00314{bottom:326.280744px;}
.y66_c00314{bottom:336.367248px;}
.y67_c00314{bottom:337.525296px;}
.y68_c00314{bottom:338.258112px;}
.y69_c00314{bottom:339.825984px;}
.y6a_c00314{bottom:340.286568px;}
.y6b_c00314{bottom:341.440296px;}
.y6c_c00314{bottom:342.774312px;}
.y5f_c00314{bottom:352.028748px;}
.y60_c00314{bottom:353.045448px;}
.y61_c00314{bottom:353.442348px;}
.y62_c00314{bottom:354.103968px;}
.y63_c00314{bottom:356.103420px;}
.y64_c00314{bottom:357.110904px;}
.y65_c00314{bottom:358.674276px;}
.y57_c00314{bottom:370.392732px;}
.y58_c00314{bottom:371.375880px;}
.y59_c00314{bottom:372.396744px;}
.y5a_c00314{bottom:372.853848px;}
.y5b_c00314{bottom:373.217484px;}
.y5c_c00314{bottom:374.692356px;}
.y5d_c00314{bottom:375.308436px;}
.y5e_c00314{bottom:375.680736px;}
.y4f_c00314{bottom:386.328912px;}
.y50_c00314{bottom:387.105816px;}
.y51_c00314{bottom:387.598800px;}
.y52_c00314{bottom:388.098264px;}
.y53_c00314{bottom:389.804208px;}
.y54_c00314{bottom:391.092180px;}
.y55_c00314{bottom:391.824732px;}
.y56_c00314{bottom:392.513088px;}
.y46_c00314{bottom:404.154540px;}
.y47_c00314{bottom:404.585328px;}
.y48_c00314{bottom:405.274788px;}
.y49_c00314{bottom:405.768060px;}
.y4a_c00314{bottom:406.815684px;}
.y4b_c00314{bottom:407.209008px;}
.y4c_c00314{bottom:408.218664px;}
.y4d_c00314{bottom:408.552660px;}
.y4e_c00314{bottom:409.184928px;}
.y40_c00314{bottom:420.358476px;}
.y41_c00314{bottom:420.636936px;}
.y42_c00314{bottom:421.775076px;}
.y43_c00314{bottom:422.798424px;}
.y44_c00314{bottom:423.218232px;}
.y45_c00314{bottom:423.581028px;}
.y37_c00314{bottom:437.372784px;}
.y38_c00314{bottom:438.019620px;}
.y39_c00314{bottom:438.728664px;}
.y3a_c00314{bottom:439.447992px;}
.y3b_c00314{bottom:440.279076px;}
.y3c_c00314{bottom:440.696748px;}
.y3d_c00314{bottom:441.483828px;}
.y3e_c00314{bottom:441.752376px;}
.y3f_c00314{bottom:442.516164px;}
.y2f_c00314{bottom:455.196564px;}
.y30_c00314{bottom:456.061896px;}
.y31_c00314{bottom:456.378852px;}
.y32_c00314{bottom:457.603992px;}
.y33_c00314{bottom:457.978596px;}
.y34_c00314{bottom:458.457996px;}
.y35_c00314{bottom:459.814308px;}
.y36_c00314{bottom:460.176060px;}
.y27_c00314{bottom:470.862984px;}
.y28_c00314{bottom:471.944844px;}
.y29_c00314{bottom:472.401984px;}
.y2a_c00314{bottom:473.597148px;}
.y2b_c00314{bottom:474.777432px;}
.y2c_c00314{bottom:475.074504px;}
.y2d_c00314{bottom:475.498752px;}
.y2e_c00314{bottom:477.001728px;}
.y20_c00314{bottom:487.071840px;}
.y21_c00314{bottom:488.017728px;}
.y22_c00314{bottom:488.548884px;}
.y23_c00314{bottom:491.252124px;}
.y24_c00314{bottom:491.787960px;}
.y25_c00314{bottom:492.757848px;}
.y26_c00314{bottom:493.865568px;}
.y18_c00314{bottom:505.430340px;}
.y19_c00314{bottom:506.602584px;}
.y1a_c00314{bottom:507.251688px;}
.y1b_c00314{bottom:508.604640px;}
.y1c_c00314{bottom:509.024052px;}
.y1d_c00314{bottom:509.565456px;}
.y1e_c00314{bottom:510.649032px;}
.y1f_c00314{bottom:511.080300px;}
.y11_c00314{bottom:523.791768px;}
.y12_c00314{bottom:525.112212px;}
.y13_c00314{bottom:525.696372px;}
.y14_c00314{bottom:526.052244px;}
.y15_c00314{bottom:526.819224px;}
.y16_c00314{bottom:527.573796px;}
.y17_c00314{bottom:527.900628px;}
.yb_c00314{bottom:542.428260px;}
.yc_c00314{bottom:543.543180px;}
.yd_c00314{bottom:544.174056px;}
.ye_c00314{bottom:544.341072px;}
.yf_c00314{bottom:544.669620px;}
.y10_c00314{bottom:545.603076px;}
.y2_c00314{bottom:556.207500px;}
.y3_c00314{bottom:556.887864px;}
.y4_c00314{bottom:557.535828px;}
.y5_c00314{bottom:558.754356px;}
.y6_c00314{bottom:559.310376px;}
.y7_c00314{bottom:560.109684px;}
.y8_c00314{bottom:561.545328px;}
.y9_c00314{bottom:561.924156px;}
.ya_c00314{bottom:562.486368px;}
.y1_c00314{bottom:576.990000px;}
.hb_c00314{height:55.666025px;}
.h6_c00314{height:58.816932px;}
.ha_c00314{height:59.867234px;}
.he_c00314{height:61.967839px;}
.hf_c00314{height:63.018141px;}
.hc_c00314{height:64.068444px;}
.h9_c00314{height:65.118746px;}
.h2_c00314{height:66.150000px;}
.h8_c00314{height:66.169048px;}
.h7_c00314{height:67.219351px;}
.h5_c00314{height:68.269653px;}
.h4_c00314{height:69.319956px;}
.h3_c00314{height:72.470863px;}
.hd_c00314{height:73.521165px;}
.h1_c00314{height:618.750000px;}
.h0_c00314{height:619.050000px;}
.w0_c00314{width:359.100000px;}
.w1_c00314{width:359.250000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:20.844000px;}
.x1b_c00314{left:22.037988px;}
.x68_c00314{left:23.200968px;}
.x16_c00314{left:24.786720px;}
.x34_c00314{left:26.417208px;}
.x27_c00314{left:28.294656px;}
.x7c_c00314{left:32.381172px;}
.x64_c00314{left:33.864876px;}
.x35_c00314{left:39.708180px;}
.x5e_c00314{left:42.009288px;}
.x37_c00314{left:43.464192px;}
.x78_c00314{left:45.242400px;}
.x57_c00314{left:46.924788px;}
.x3_c00314{left:49.192500px;}
.x4c_c00314{left:54.439068px;}
.x3b_c00314{left:57.517716px;}
.x2d_c00314{left:58.830744px;}
.x1c_c00314{left:59.886588px;}
.x7d_c00314{left:62.531772px;}
.x38_c00314{left:65.040780px;}
.x45_c00314{left:66.345276px;}
.x4d_c00314{left:69.035736px;}
.x48_c00314{left:70.234284px;}
.x20_c00314{left:71.575344px;}
.x79_c00314{left:72.578304px;}
.x4_c00314{left:76.191000px;}
.x17_c00314{left:80.634252px;}
.x46_c00314{left:83.633208px;}
.x6d_c00314{left:85.734516px;}
.x66_c00314{left:86.817804px;}
.x6b_c00314{left:89.581992px;}
.x58_c00314{left:90.970668px;}
.x21_c00314{left:92.373852px;}
.x28_c00314{left:93.941088px;}
.x75_c00314{left:94.988952px;}
.x7e_c00314{left:96.360840px;}
.x2e_c00314{left:98.254932px;}
.xb_c00314{left:100.326024px;}
.x3c_c00314{left:102.621876px;}
.x61_c00314{left:106.530996px;}
.x76_c00314{left:107.958612px;}
.x10_c00314{left:109.003608px;}
.x18_c00314{left:111.557484px;}
.x4e_c00314{left:116.558496px;}
.x5b_c00314{left:119.914920px;}
.x40_c00314{left:122.029668px;}
.x39_c00314{left:124.201968px;}
.x5_c00314{left:126.963000px;}
.x80_c00314{left:130.725132px;}
.x4f_c00314{left:137.096424px;}
.x2f_c00314{left:138.232692px;}
.x7b_c00314{left:139.803720px;}
.x36_c00314{left:142.590060px;}
.xc_c00314{left:145.435860px;}
.x22_c00314{left:146.674944px;}
.x11_c00314{left:147.914496px;}
.x1_c00314{left:149.040000px;}
.x6_c00314{left:150.130500px;}
.x55_c00314{left:155.775120px;}
.xd_c00314{left:157.335204px;}
.x29_c00314{left:161.998380px;}
.x41_c00314{left:163.043592px;}
.x49_c00314{left:166.096284px;}
.x69_c00314{left:167.338572px;}
.x12_c00314{left:171.622608px;}
.x5c_c00314{left:173.390700px;}
.x19_c00314{left:175.997628px;}
.xe_c00314{left:180.842856px;}
.x7_c00314{left:183.435000px;}
.x4a_c00314{left:185.287284px;}
.x1d_c00314{left:189.274992px;}
.x77_c00314{left:190.596972px;}
.x5f_c00314{left:193.204812px;}
.x1a_c00314{left:195.974568px;}
.x6c_c00314{left:197.885208px;}
.x51_c00314{left:199.227396px;}
.x23_c00314{left:200.293500px;}
.x71_c00314{left:202.378896px;}
.x30_c00314{left:207.649200px;}
.x2a_c00314{left:209.463720px;}
.x1e_c00314{left:210.725988px;}
.x24_c00314{left:213.797148px;}
.x6e_c00314{left:215.911992px;}
.x65_c00314{left:217.544652px;}
.x52_c00314{left:218.886144px;}
.x7f_c00314{left:220.817280px;}
.x13_c00314{left:222.716124px;}
.x5d_c00314{left:224.975364px;}
.x6a_c00314{left:231.087324px;}
.x25_c00314{left:233.100084px;}
.x72_c00314{left:234.803928px;}
.x42_c00314{left:236.816184px;}
.x3d_c00314{left:238.687392px;}
.x62_c00314{left:241.589616px;}
.x8_c00314{left:243.253500px;}
.x53_c00314{left:244.615188px;}
.xf_c00314{left:247.565376px;}
.x1f_c00314{left:249.512052px;}
.x31_c00314{left:251.388000px;}
.x50_c00314{left:253.440552px;}
.x9_c00314{left:259.038000px;}
.x73_c00314{left:261.344448px;}
.x3a_c00314{left:263.490360px;}
.x7a_c00314{left:264.886812px;}
.x32_c00314{left:266.267124px;}
.x43_c00314{left:267.614136px;}
.x56_c00314{left:269.971044px;}
.x3e_c00314{left:271.961976px;}
.x14_c00314{left:272.979960px;}
.x59_c00314{left:274.355448px;}
.x60_c00314{left:275.898108px;}
.x6f_c00314{left:277.503204px;}
.x74_c00314{left:281.074668px;}
.xa_c00314{left:282.463500px;}
.x2b_c00314{left:284.800056px;}
.x44_c00314{left:286.253436px;}
.x4b_c00314{left:288.943284px;}
.x5a_c00314{left:291.909900px;}
.x15_c00314{left:294.790176px;}
.x67_c00314{left:295.880940px;}
.x70_c00314{left:296.962320px;}
.x54_c00314{left:299.166960px;}
.x26_c00314{left:301.414860px;}
.x3f_c00314{left:303.269988px;}
.x2c_c00314{left:304.875936px;}
.x63_c00314{left:307.217064px;}
.x33_c00314{left:308.660208px;}
.x47_c00314{left:311.073144px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fs9_c00314{font-size:49.480911pt;}
.fs4_c00314{font-size:52.281717pt;}
.fs8_c00314{font-size:53.215319pt;}
.fsc_c00314{font-size:55.082524pt;}
.fsd_c00314{font-size:56.016126pt;}
.fsa_c00314{font-size:56.949728pt;}
.fs7_c00314{font-size:57.883330pt;}
.fs0_c00314{font-size:58.800000pt;}
.fs6_c00314{font-size:58.816932pt;}
.fs5_c00314{font-size:59.750534pt;}
.fs3_c00314{font-size:60.684136pt;}
.fs2_c00314{font-size:61.617738pt;}
.fs1_c00314{font-size:64.418545pt;}
.fsb_c00314{font-size:65.352147pt;}
.y0_c00314{bottom:0.000000pt;}
.yfa_c00314{bottom:32.366624pt;}
.yf8_c00314{bottom:32.366805pt;}
.yf4_c00314{bottom:32.366987pt;}
.yf9_c00314{bottom:32.367115pt;}
.yf6_c00314{bottom:32.367317pt;}
.yf5_c00314{bottom:32.367371pt;}
.yf7_c00314{bottom:32.367467pt;}
.yed_c00314{bottom:44.757803pt;}
.yee_c00314{bottom:45.267605pt;}
.yef_c00314{bottom:45.838539pt;}
.yf0_c00314{bottom:46.693909pt;}
.yf1_c00314{bottom:46.950389pt;}
.yf2_c00314{bottom:47.939957pt;}
.yf3_c00314{bottom:48.994912pt;}
.ye4_c00314{bottom:59.641504pt;}
.ye5_c00314{bottom:60.064501pt;}
.ye6_c00314{bottom:60.663147pt;}
.ye7_c00314{bottom:60.929419pt;}
.ye8_c00314{bottom:61.166944pt;}
.ye9_c00314{bottom:61.959285pt;}
.yea_c00314{bottom:62.294592pt;}
.yeb_c00314{bottom:62.972235pt;}
.yec_c00314{bottom:63.259637pt;}
.ydb_c00314{bottom:74.045888pt;}
.ydc_c00314{bottom:74.318368pt;}
.ydd_c00314{bottom:74.682741pt;}
.yde_c00314{bottom:75.673248pt;}
.ydf_c00314{bottom:75.874411pt;}
.ye0_c00314{bottom:76.392960pt;}
.ye1_c00314{bottom:76.638613pt;}
.ye2_c00314{bottom:77.247104pt;}
.ye3_c00314{bottom:77.566272pt;}
.yd2_c00314{bottom:89.410123pt;}
.yd3_c00314{bottom:89.764672pt;}
.yd4_c00314{bottom:90.478987pt;}
.yd5_c00314{bottom:90.675627pt;}
.yd6_c00314{bottom:90.919691pt;}
.yd7_c00314{bottom:91.659851pt;}
.yd8_c00314{bottom:91.924949pt;}
.yd9_c00314{bottom:92.814347pt;}
.yda_c00314{bottom:93.091776pt;}
.yc9_c00314{bottom:103.813579pt;}
.yca_c00314{bottom:104.194773pt;}
.ycb_c00314{bottom:104.724789pt;}
.ycc_c00314{bottom:105.133931pt;}
.ycd_c00314{bottom:105.872181pt;}
.yce_c00314{bottom:106.029557pt;}
.ycf_c00314{bottom:106.247733pt;}
.yd0_c00314{bottom:106.553781pt;}
.yd1_c00314{bottom:106.781248pt;}
.yc1_c00314{bottom:121.338229pt;}
.yc2_c00314{bottom:122.001152pt;}
.yc3_c00314{bottom:122.358176pt;}
.yc4_c00314{bottom:122.548917pt;}
.yc5_c00314{bottom:123.138955pt;}
.yc6_c00314{bottom:123.389472pt;}
.yc7_c00314{bottom:124.047040pt;}
.yc8_c00314{bottom:124.254048pt;}
.yba_c00314{bottom:134.544000pt;}
.ybb_c00314{bottom:135.229803pt;}
.ybc_c00314{bottom:135.536309pt;}
.ybd_c00314{bottom:136.282517pt;}
.ybe_c00314{bottom:137.171723pt;}
.ybf_c00314{bottom:137.478517pt;}
.yc0_c00314{bottom:138.322453pt;}
.yb4_c00314{bottom:149.907936pt;}
.yb5_c00314{bottom:151.223691pt;}
.yb6_c00314{bottom:151.830208pt;}
.yb7_c00314{bottom:152.200917pt;}
.yb8_c00314{bottom:152.680555pt;}
.yb9_c00314{bottom:153.461461pt;}
.yac_c00314{bottom:164.071595pt;}
.yad_c00314{bottom:164.452267pt;}
.yae_c00314{bottom:164.871595pt;}
.yaf_c00314{bottom:165.183051pt;}
.yb0_c00314{bottom:165.835445pt;}
.yb1_c00314{bottom:166.189984pt;}
.yb2_c00314{bottom:166.683712pt;}
.yb3_c00314{bottom:168.029525pt;}
.ya5_c00314{bottom:179.915243pt;}
.ya6_c00314{bottom:180.396160pt;}
.ya7_c00314{bottom:180.547157pt;}
.ya8_c00314{bottom:181.130656pt;}
.ya9_c00314{bottom:181.299424pt;}
.yaa_c00314{bottom:181.711189pt;}
.yab_c00314{bottom:181.908715pt;}
.y9e_c00314{bottom:195.758923pt;}
.y9f_c00314{bottom:196.361344pt;}
.ya0_c00314{bottom:196.580821pt;}
.ya1_c00314{bottom:196.881685pt;}
.ya2_c00314{bottom:197.493941pt;}
.ya3_c00314{bottom:197.901173pt;}
.ya4_c00314{bottom:198.543456pt;}
.y95_c00314{bottom:210.643915pt;}
.y96_c00314{bottom:210.850699pt;}
.y97_c00314{bottom:211.089920pt;}
.y98_c00314{bottom:211.368832pt;}
.y99_c00314{bottom:211.991691pt;}
.y9a_c00314{bottom:212.285781pt;}
.y9b_c00314{bottom:212.463275pt;}
.y9c_c00314{bottom:213.345557pt;}
.y9d_c00314{bottom:213.583851pt;}
.y8d_c00314{bottom:228.238133pt;}
.y8e_c00314{bottom:228.238752pt;}
.y90_c00314{bottom:228.239072pt;}
.y8f_c00314{bottom:228.239125pt;}
.y91_c00314{bottom:228.239232pt;}
.y92_c00314{bottom:228.239808pt;}
.y94_c00314{bottom:228.240288pt;}
.y93_c00314{bottom:228.240405pt;}
.y84_c00314{bottom:239.931403pt;}
.y85_c00314{bottom:240.305792pt;}
.y86_c00314{bottom:240.497109pt;}
.y87_c00314{bottom:240.971947pt;}
.y88_c00314{bottom:241.842069pt;}
.y89_c00314{bottom:242.828960pt;}
.y8a_c00314{bottom:243.347019pt;}
.y8b_c00314{bottom:243.743499pt;}
.y8c_c00314{bottom:244.008597pt;}
.y7e_c00314{bottom:256.015776pt;}
.y7f_c00314{bottom:257.159968pt;}
.y80_c00314{bottom:257.920736pt;}
.y81_c00314{bottom:258.285365pt;}
.y82_c00314{bottom:258.831253pt;}
.y83_c00314{bottom:259.544448pt;}
.y76_c00314{bottom:271.858944pt;}
.y77_c00314{bottom:273.053451pt;}
.y78_c00314{bottom:273.223157pt;}
.y79_c00314{bottom:273.528853pt;}
.y7a_c00314{bottom:274.235243pt;}
.y7b_c00314{bottom:274.497205pt;}
.y7c_c00314{bottom:274.840640pt;}
.y7d_c00314{bottom:275.568160pt;}
.y6d_c00314{bottom:286.743275pt;}
.y6e_c00314{bottom:287.186325pt;}
.y6f_c00314{bottom:287.380320pt;}
.y70_c00314{bottom:288.013920pt;}
.y71_c00314{bottom:288.287968pt;}
.y72_c00314{bottom:288.870315pt;}
.y73_c00314{bottom:289.126389pt;}
.y74_c00314{bottom:289.838773pt;}
.y75_c00314{bottom:290.027328pt;}
.y66_c00314{bottom:298.993109pt;}
.y67_c00314{bottom:300.022485pt;}
.y68_c00314{bottom:300.673877pt;}
.y69_c00314{bottom:302.067541pt;}
.y6a_c00314{bottom:302.476949pt;}
.y6b_c00314{bottom:303.502485pt;}
.y6c_c00314{bottom:304.688277pt;}
.y5f_c00314{bottom:312.914443pt;}
.y60_c00314{bottom:313.818176pt;}
.y61_c00314{bottom:314.170976pt;}
.y62_c00314{bottom:314.759083pt;}
.y63_c00314{bottom:316.536373pt;}
.y64_c00314{bottom:317.431915pt;}
.y65_c00314{bottom:318.821579pt;}
.y57_c00314{bottom:329.237984pt;}
.y58_c00314{bottom:330.111893pt;}
.y59_c00314{bottom:331.019328pt;}
.y5a_c00314{bottom:331.425643pt;}
.y5b_c00314{bottom:331.748875pt;}
.y5c_c00314{bottom:333.059872pt;}
.y5d_c00314{bottom:333.607499pt;}
.y5e_c00314{bottom:333.938432pt;}
.y4f_c00314{bottom:343.403477pt;}
.y50_c00314{bottom:344.094059pt;}
.y51_c00314{bottom:344.532267pt;}
.y52_c00314{bottom:344.976235pt;}
.y53_c00314{bottom:346.492629pt;}
.y54_c00314{bottom:347.637493pt;}
.y55_c00314{bottom:348.288651pt;}
.y56_c00314{bottom:348.900523pt;}
.y46_c00314{bottom:359.248480pt;}
.y47_c00314{bottom:359.631403pt;}
.y48_c00314{bottom:360.244256pt;}
.y49_c00314{bottom:360.682720pt;}
.y4a_c00314{bottom:361.613941pt;}
.y4b_c00314{bottom:361.963563pt;}
.y4c_c00314{bottom:362.861035pt;}
.y4d_c00314{bottom:363.157920pt;}
.y4e_c00314{bottom:363.719936pt;}
.y40_c00314{bottom:373.651979pt;}
.y41_c00314{bottom:373.899499pt;}
.y42_c00314{bottom:374.911179pt;}
.y43_c00314{bottom:375.820821pt;}
.y44_c00314{bottom:376.193984pt;}
.y45_c00314{bottom:376.516469pt;}
.y37_c00314{bottom:388.775808pt;}
.y38_c00314{bottom:389.350773pt;}
.y39_c00314{bottom:389.981035pt;}
.y3a_c00314{bottom:390.620437pt;}
.y3b_c00314{bottom:391.359179pt;}
.y3c_c00314{bottom:391.730443pt;}
.y3d_c00314{bottom:392.430069pt;}
.y3e_c00314{bottom:392.668779pt;}
.y3f_c00314{bottom:393.347701pt;}
.y2f_c00314{bottom:404.619168pt;}
.y30_c00314{bottom:405.388352pt;}
.y31_c00314{bottom:405.670091pt;}
.y32_c00314{bottom:406.759104pt;}
.y33_c00314{bottom:407.092085pt;}
.y34_c00314{bottom:407.518219pt;}
.y35_c00314{bottom:408.723829pt;}
.y36_c00314{bottom:409.045387pt;}
.y27_c00314{bottom:418.544875pt;}
.y28_c00314{bottom:419.506528pt;}
.y29_c00314{bottom:419.912875pt;}
.y2a_c00314{bottom:420.975243pt;}
.y2b_c00314{bottom:422.024384pt;}
.y2c_c00314{bottom:422.288448pt;}
.y2d_c00314{bottom:422.665557pt;}
.y2e_c00314{bottom:424.001536pt;}
.y20_c00314{bottom:432.952747pt;}
.y21_c00314{bottom:433.793536pt;}
.y22_c00314{bottom:434.265675pt;}
.y23_c00314{bottom:436.668555pt;}
.y24_c00314{bottom:437.144853pt;}
.y25_c00314{bottom:438.006976pt;}
.y26_c00314{bottom:438.991616pt;}
.y18_c00314{bottom:449.271413pt;}
.y19_c00314{bottom:450.313408pt;}
.y1a_c00314{bottom:450.890389pt;}
.y1b_c00314{bottom:452.093013pt;}
.y1c_c00314{bottom:452.465824pt;}
.y1d_c00314{bottom:452.947072pt;}
.y1e_c00314{bottom:453.910251pt;}
.y1f_c00314{bottom:454.293600pt;}
.y11_c00314{bottom:465.592683pt;}
.y12_c00314{bottom:466.766411pt;}
.y13_c00314{bottom:467.285664pt;}
.y14_c00314{bottom:467.601995pt;}
.y15_c00314{bottom:468.283755pt;}
.y16_c00314{bottom:468.954485pt;}
.y17_c00314{bottom:469.245003pt;}
.yb_c00314{bottom:482.158453pt;}
.yc_c00314{bottom:483.149493pt;}
.yd_c00314{bottom:483.710272pt;}
.ye_c00314{bottom:483.858731pt;}
.yf_c00314{bottom:484.150773pt;}
.y10_c00314{bottom:484.980512pt;}
.y2_c00314{bottom:494.406667pt;}
.y3_c00314{bottom:495.011435pt;}
.y4_c00314{bottom:495.587403pt;}
.y5_c00314{bottom:496.670539pt;}
.y6_c00314{bottom:497.164779pt;}
.y7_c00314{bottom:497.875275pt;}
.y8_c00314{bottom:499.151403pt;}
.y9_c00314{bottom:499.488139pt;}
.ya_c00314{bottom:499.987883pt;}
.y1_c00314{bottom:512.880000pt;}
.hb_c00314{height:49.480911pt;}
.h6_c00314{height:52.281717pt;}
.ha_c00314{height:53.215319pt;}
.he_c00314{height:55.082524pt;}
.hf_c00314{height:56.016126pt;}
.hc_c00314{height:56.949728pt;}
.h9_c00314{height:57.883330pt;}
.h2_c00314{height:58.800000pt;}
.h8_c00314{height:58.816932pt;}
.h7_c00314{height:59.750534pt;}
.h5_c00314{height:60.684136pt;}
.h4_c00314{height:61.617738pt;}
.h3_c00314{height:64.418545pt;}
.hd_c00314{height:65.352147pt;}
.h1_c00314{height:550.000000pt;}
.h0_c00314{height:550.266667pt;}
.w0_c00314{width:319.200000pt;}
.w1_c00314{width:319.333333pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:18.528000pt;}
.x1b_c00314{left:19.589323pt;}
.x68_c00314{left:20.623083pt;}
.x16_c00314{left:22.032640pt;}
.x34_c00314{left:23.481963pt;}
.x27_c00314{left:25.150805pt;}
.x7c_c00314{left:28.783264pt;}
.x64_c00314{left:30.102112pt;}
.x35_c00314{left:35.296160pt;}
.x5e_c00314{left:37.341589pt;}
.x37_c00314{left:38.634837pt;}
.x78_c00314{left:40.215467pt;}
.x57_c00314{left:41.710923pt;}
.x3_c00314{left:43.726667pt;}
.x4c_c00314{left:48.390283pt;}
.x3b_c00314{left:51.126859pt;}
.x2d_c00314{left:52.293995pt;}
.x1c_c00314{left:53.232523pt;}
.x7d_c00314{left:55.583797pt;}
.x38_c00314{left:57.814027pt;}
.x45_c00314{left:58.973579pt;}
.x4d_c00314{left:61.365099pt;}
.x48_c00314{left:62.430475pt;}
.x20_c00314{left:63.622528pt;}
.x79_c00314{left:64.514048pt;}
.x4_c00314{left:67.725333pt;}
.x17_c00314{left:71.674891pt;}
.x46_c00314{left:74.340629pt;}
.x6d_c00314{left:76.208459pt;}
.x66_c00314{left:77.171381pt;}
.x6b_c00314{left:79.628437pt;}
.x58_c00314{left:80.862816pt;}
.x21_c00314{left:82.110091pt;}
.x28_c00314{left:83.503189pt;}
.x75_c00314{left:84.434624pt;}
.x7e_c00314{left:85.654080pt;}
.x2e_c00314{left:87.337717pt;}
.xb_c00314{left:89.178688pt;}
.x3c_c00314{left:91.219445pt;}
.x61_c00314{left:94.694219pt;}
.x76_c00314{left:95.963211pt;}
.x10_c00314{left:96.892096pt;}
.x18_c00314{left:99.162208pt;}
.x4e_c00314{left:103.607552pt;}
.x5b_c00314{left:106.591040pt;}
.x40_c00314{left:108.470816pt;}
.x39_c00314{left:110.401749pt;}
.x5_c00314{left:112.856000pt;}
.x80_c00314{left:116.200117pt;}
.x4f_c00314{left:121.863488pt;}
.x2f_c00314{left:122.873504pt;}
.x7b_c00314{left:124.269973pt;}
.x36_c00314{left:126.746720pt;}
.xc_c00314{left:129.276320pt;}
.x22_c00314{left:130.377728pt;}
.x11_c00314{left:131.479552pt;}
.x1_c00314{left:132.480000pt;}
.x6_c00314{left:133.449333pt;}
.x55_c00314{left:138.466773pt;}
.xd_c00314{left:139.853515pt;}
.x29_c00314{left:143.998560pt;}
.x41_c00314{left:144.927637pt;}
.x49_c00314{left:147.641141pt;}
.x69_c00314{left:148.745397pt;}
.x12_c00314{left:152.553429pt;}
.x5c_c00314{left:154.125067pt;}
.x19_c00314{left:156.442336pt;}
.xe_c00314{left:160.749205pt;}
.x7_c00314{left:163.053333pt;}
.x4a_c00314{left:164.699808pt;}
.x1d_c00314{left:168.244437pt;}
.x77_c00314{left:169.419531pt;}
.x5f_c00314{left:171.737611pt;}
.x1a_c00314{left:174.199616pt;}
.x6c_c00314{left:175.897963pt;}
.x51_c00314{left:177.091019pt;}
.x23_c00314{left:178.038667pt;}
.x71_c00314{left:179.892352pt;}
.x30_c00314{left:184.577067pt;}
.x2a_c00314{left:186.189973pt;}
.x1e_c00314{left:187.311989pt;}
.x24_c00314{left:190.041909pt;}
.x6e_c00314{left:191.921771pt;}
.x65_c00314{left:193.373024pt;}
.x52_c00314{left:194.565461pt;}
.x7f_c00314{left:196.282027pt;}
.x13_c00314{left:197.969888pt;}
.x5d_c00314{left:199.978101pt;}
.x6a_c00314{left:205.410955pt;}
.x25_c00314{left:207.200075pt;}
.x72_c00314{left:208.714603pt;}
.x42_c00314{left:210.503275pt;}
.x3d_c00314{left:212.166571pt;}
.x62_c00314{left:214.746325pt;}
.x8_c00314{left:216.225333pt;}
.x53_c00314{left:217.435723pt;}
.xf_c00314{left:220.058112pt;}
.x1f_c00314{left:221.788491pt;}
.x31_c00314{left:223.456000pt;}
.x50_c00314{left:225.280491pt;}
.x9_c00314{left:230.256000pt;}
.x73_c00314{left:232.306176pt;}
.x3a_c00314{left:234.213653pt;}
.x7a_c00314{left:235.454944pt;}
.x32_c00314{left:236.681888pt;}
.x43_c00314{left:237.879232pt;}
.x56_c00314{left:239.974261pt;}
.x3e_c00314{left:241.743979pt;}
.x14_c00314{left:242.648853pt;}
.x59_c00314{left:243.871509pt;}
.x60_c00314{left:245.242763pt;}
.x6f_c00314{left:246.669515pt;}
.x74_c00314{left:249.844149pt;}
.xa_c00314{left:251.078667pt;}
.x2b_c00314{left:253.155605pt;}
.x44_c00314{left:254.447499pt;}
.x4b_c00314{left:256.838475pt;}
.x5a_c00314{left:259.475467pt;}
.x15_c00314{left:262.035712pt;}
.x67_c00314{left:263.005280pt;}
.x70_c00314{left:263.966507pt;}
.x54_c00314{left:265.926187pt;}
.x26_c00314{left:267.924320pt;}
.x3f_c00314{left:269.573323pt;}
.x2c_c00314{left:271.000832pt;}
.x63_c00314{left:273.081835pt;}
.x33_c00314{left:274.364629pt;}
.x47_c00314{left:276.509461pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00315 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00315 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00315 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00315 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00315.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me7_c00315{transform:matrix(0.114377,0.001373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.114377,0.001373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.114377,0.001373,-0.003000,0.249982,0,0);}
.mf2_c00315{transform:matrix(0.121876,0.001463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.121876,0.001463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.121876,0.001463,-0.003000,0.249982,0,0);}
.m4e_c00315{transform:matrix(0.133465,0.002002,-0.003750,0.249972,0,0);-ms-transform:matrix(0.133465,0.002002,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.133465,0.002002,-0.003750,0.249972,0,0);}
.me5_c00315{transform:matrix(0.146304,0.001756,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146304,0.001756,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146304,0.001756,-0.003000,0.249982,0,0);}
.mc8_c00315{transform:matrix(0.146534,0.001758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146534,0.001758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146534,0.001758,-0.003000,0.249982,0,0);}
.m14_c00315{transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146983,0.002205,-0.003750,0.249972,0,0);}
.mc4_c00315{transform:matrix(0.147234,0.001767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147234,0.001767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147234,0.001767,-0.003000,0.249982,0,0);}
.m11_c00315{transform:matrix(0.150403,0.002256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150403,0.002256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150403,0.002256,-0.003750,0.249972,0,0);}
.m6c_c00315{transform:matrix(0.150554,0.001807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150554,0.001807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150554,0.001807,-0.003000,0.249982,0,0);}
.m3d_c00315{transform:matrix(0.150683,0.002260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150683,0.002260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150683,0.002260,-0.003750,0.249972,0,0);}
.m65_c00315{transform:matrix(0.150813,0.002262,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150813,0.002262,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150813,0.002262,-0.003750,0.249972,0,0);}
.mc_c00315{transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151438,0.002272,-0.003750,0.249972,0,0);}
.m82_c00315{transform:matrix(0.151524,0.001818,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151524,0.001818,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151524,0.001818,-0.003000,0.249982,0,0);}
.mf0_c00315{transform:matrix(0.152009,0.001824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152009,0.001824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152009,0.001824,-0.003000,0.249982,0,0);}
.me_c00315{transform:matrix(0.152938,0.002294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152938,0.002294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152938,0.002294,-0.003750,0.249972,0,0);}
.m7d_c00315{transform:matrix(0.155714,0.001869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155714,0.001869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155714,0.001869,-0.003000,0.249982,0,0);}
.m8f_c00315{transform:matrix(0.158229,0.001899,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158229,0.001899,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158229,0.001899,-0.003000,0.249982,0,0);}
.md5_c00315{transform:matrix(0.158324,0.001900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158324,0.001900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158324,0.001900,-0.003000,0.249982,0,0);}
.mea_c00315{transform:matrix(0.158834,0.001906,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158834,0.001906,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158834,0.001906,-0.003000,0.249982,0,0);}
.m1c_c00315{transform:matrix(0.159322,0.002390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159322,0.002390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159322,0.002390,-0.003750,0.249972,0,0);}
.md9_c00315{transform:matrix(0.159599,0.001915,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159599,0.001915,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159599,0.001915,-0.003000,0.249982,0,0);}
.m1_c00315{transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159802,0.002397,-0.003750,0.249972,0,0);}
.m63_c00315{transform:matrix(0.160202,0.002403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160202,0.002403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160202,0.002403,-0.003750,0.249972,0,0);}
.m87_c00315{transform:matrix(0.160623,0.001927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160623,0.001927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160623,0.001927,-0.003000,0.249982,0,0);}
.md0_c00315{transform:matrix(0.160738,0.001929,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160738,0.001929,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160738,0.001929,-0.003000,0.249982,0,0);}
.me2_c00315{transform:matrix(0.160838,0.001930,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160838,0.001930,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160838,0.001930,-0.003000,0.249982,0,0);}
.m76_c00315{transform:matrix(0.161038,0.001932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161038,0.001932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161038,0.001932,-0.003000,0.249982,0,0);}
.m9_c00315{transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161597,0.002424,-0.003750,0.249972,0,0);}
.mdb_c00315{transform:matrix(0.161988,0.001944,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161988,0.001944,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161988,0.001944,-0.003000,0.249982,0,0);}
.mc1_c00315{transform:matrix(0.162838,0.001954,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162838,0.001954,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162838,0.001954,-0.003000,0.249982,0,0);}
.mad_c00315{transform:matrix(0.164143,0.001970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164143,0.001970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164143,0.001970,-0.003000,0.249982,0,0);}
.m15_c00315{transform:matrix(0.164152,0.002462,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164152,0.002462,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164152,0.002462,-0.003750,0.249972,0,0);}
.m93_c00315{transform:matrix(0.164453,0.001973,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164453,0.001973,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164453,0.001973,-0.003000,0.249982,0,0);}
.mca_c00315{transform:matrix(0.164638,0.001976,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164638,0.001976,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164638,0.001976,-0.003000,0.249982,0,0);}
.ma9_c00315{transform:matrix(0.165378,0.001985,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165378,0.001985,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165378,0.001985,-0.003000,0.249982,0,0);}
.m33_c00315{transform:matrix(0.166011,0.002490,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166011,0.002490,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166011,0.002490,-0.003750,0.249972,0,0);}
.mb8_c00315{transform:matrix(0.167693,0.002012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167693,0.002012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167693,0.002012,-0.003000,0.249982,0,0);}
.mba_c00315{transform:matrix(0.167803,0.002014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167803,0.002014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167803,0.002014,-0.003000,0.249982,0,0);}
.m30_c00315{transform:matrix(0.168371,0.002526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168371,0.002526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168371,0.002526,-0.003750,0.249972,0,0);}
.mbe_c00315{transform:matrix(0.168528,0.002022,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168528,0.002022,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168528,0.002022,-0.003000,0.249982,0,0);}
.md2_c00315{transform:matrix(0.168538,0.002022,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168538,0.002022,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168538,0.002022,-0.003000,0.249982,0,0);}
.m1b_c00315{transform:matrix(0.168801,0.002532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168801,0.002532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168801,0.002532,-0.003750,0.249972,0,0);}
.m4_c00315{transform:matrix(0.168816,0.002532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168816,0.002532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168816,0.002532,-0.003750,0.249972,0,0);}
.m73_c00315{transform:matrix(0.169473,0.002034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169473,0.002034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169473,0.002034,-0.003000,0.249982,0,0);}
.m12_c00315{transform:matrix(0.169801,0.002547,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169801,0.002547,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169801,0.002547,-0.003750,0.249972,0,0);}
.md4_c00315{transform:matrix(0.170763,0.002049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170763,0.002049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170763,0.002049,-0.003000,0.249982,0,0);}
.m1f_c00315{transform:matrix(0.170906,0.002564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170906,0.002564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170906,0.002564,-0.003750,0.249972,0,0);}
.md6_c00315{transform:matrix(0.170928,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170928,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170928,0.002051,-0.003000,0.249982,0,0);}
.m42_c00315{transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);}
.m7a_c00315{transform:matrix(0.171633,0.002060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171633,0.002060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171633,0.002060,-0.003000,0.249982,0,0);}
.m98_c00315{transform:matrix(0.171728,0.002061,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171728,0.002061,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171728,0.002061,-0.003000,0.249982,0,0);}
.m66_c00315{transform:matrix(0.171841,0.002578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171841,0.002578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171841,0.002578,-0.003750,0.249972,0,0);}
.mab_c00315{transform:matrix(0.171883,0.002063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171883,0.002063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171883,0.002063,-0.003000,0.249982,0,0);}
.m1d_c00315{transform:matrix(0.172086,0.002581,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172086,0.002581,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172086,0.002581,-0.003750,0.249972,0,0);}
.mf3_c00315{transform:matrix(0.174057,0.002089,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174057,0.002089,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174057,0.002089,-0.003000,0.249982,0,0);}
.m69_c00315{transform:matrix(0.174480,0.002617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174480,0.002617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174480,0.002617,-0.003750,0.249972,0,0);}
.m24_c00315{transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);}
.m2e_c00315{transform:matrix(0.175440,0.002632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175440,0.002632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175440,0.002632,-0.003750,0.249972,0,0);}
.md_c00315{transform:matrix(0.175710,0.002636,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175710,0.002636,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175710,0.002636,-0.003750,0.249972,0,0);}
.mda_c00315{transform:matrix(0.175942,0.002111,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175942,0.002111,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175942,0.002111,-0.003000,0.249982,0,0);}
.m59_c00315{transform:matrix(0.176065,0.002641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176065,0.002641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176065,0.002641,-0.003750,0.249972,0,0);}
.mcc_c00315{transform:matrix(0.176122,0.002113,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176122,0.002113,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176122,0.002113,-0.003000,0.249982,0,0);}
.ma6_c00315{transform:matrix(0.176342,0.002116,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176342,0.002116,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176342,0.002116,-0.003000,0.249982,0,0);}
.md8_c00315{transform:matrix(0.177262,0.002127,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177262,0.002127,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177262,0.002127,-0.003000,0.249982,0,0);}
.maa_c00315{transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);}
.m94_c00315{transform:matrix(0.177587,0.002131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177587,0.002131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177587,0.002131,-0.003000,0.249982,0,0);}
.m74_c00315{transform:matrix(0.177967,0.002136,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177967,0.002136,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177967,0.002136,-0.003000,0.249982,0,0);}
.m51_c00315{transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);}
.m13_c00315{transform:matrix(0.178565,0.002678,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178565,0.002678,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178565,0.002678,-0.003750,0.249972,0,0);}
.m67_c00315{transform:matrix(0.179320,0.002690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179320,0.002690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179320,0.002690,-0.003750,0.249972,0,0);}
.ma_c00315{transform:matrix(0.179770,0.002697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179770,0.002697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179770,0.002697,-0.003750,0.249972,0,0);}
.m9a_c00315{transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);}
.mcb_c00315{transform:matrix(0.180307,0.002164,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180307,0.002164,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180307,0.002164,-0.003000,0.249982,0,0);}
.md7_c00315{transform:matrix(0.180317,0.002164,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180317,0.002164,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180317,0.002164,-0.003000,0.249982,0,0);}
.m7c_c00315{transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);}
.m44_c00315{transform:matrix(0.181215,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181215,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181215,0.002718,-0.003750,0.249972,0,0);}
.mb6_c00315{transform:matrix(0.181562,0.002179,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181562,0.002179,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181562,0.002179,-0.003000,0.249982,0,0);}
.meb_c00315{transform:matrix(0.181827,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181827,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181827,0.002182,-0.003000,0.249982,0,0);}
.m10_c00315{transform:matrix(0.182055,0.002731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182055,0.002731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182055,0.002731,-0.003750,0.249972,0,0);}
.me8_c00315{transform:matrix(0.182677,0.002192,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182677,0.002192,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182677,0.002192,-0.003000,0.249982,0,0);}
.m49_c00315{transform:matrix(0.183474,0.002752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183474,0.002752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183474,0.002752,-0.003750,0.249972,0,0);}
.m8d_c00315{transform:matrix(0.183757,0.002205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183757,0.002205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183757,0.002205,-0.003000,0.249982,0,0);}
.mbf_c00315{transform:matrix(0.183867,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183867,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183867,0.002206,-0.003000,0.249982,0,0);}
.m68_c00315{transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);}
.mdc_c00315{transform:matrix(0.185307,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185307,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185307,0.002224,-0.003000,0.249982,0,0);}
.m19_c00315{transform:matrix(0.185459,0.002782,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185459,0.002782,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185459,0.002782,-0.003750,0.249972,0,0);}
.m17_c00315{transform:matrix(0.185979,0.002790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185979,0.002790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185979,0.002790,-0.003750,0.249972,0,0);}
.m5b_c00315{transform:matrix(0.186379,0.002796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186379,0.002796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186379,0.002796,-0.003750,0.249972,0,0);}
.m78_c00315{transform:matrix(0.186627,0.002240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186627,0.002240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186627,0.002240,-0.003000,0.249982,0,0);}
.m5_c00315{transform:matrix(0.187069,0.002806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187069,0.002806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187069,0.002806,-0.003750,0.249972,0,0);}
.me9_c00315{transform:matrix(0.187377,0.002249,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187377,0.002249,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187377,0.002249,-0.003000,0.249982,0,0);}
.mbd_c00315{transform:matrix(0.187981,0.002256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187981,0.002256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187981,0.002256,-0.003000,0.249982,0,0);}
.mc2_c00315{transform:matrix(0.188441,0.002261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188441,0.002261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188441,0.002261,-0.003000,0.249982,0,0);}
.mf1_c00315{transform:matrix(0.188791,0.002265,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188791,0.002265,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188791,0.002265,-0.003000,0.249982,0,0);}
.m1a_c00315{transform:matrix(0.188849,0.002833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188849,0.002833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188849,0.002833,-0.003750,0.249972,0,0);}
.m60_c00315{transform:matrix(0.188914,0.002834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188914,0.002834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188914,0.002834,-0.003750,0.249972,0,0);}
.m9f_c00315{transform:matrix(0.188916,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188916,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188916,0.002267,-0.003000,0.249982,0,0);}
.m31_c00315{transform:matrix(0.189099,0.002836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189099,0.002836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189099,0.002836,-0.003750,0.249972,0,0);}
.m18_c00315{transform:matrix(0.189469,0.002842,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189469,0.002842,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189469,0.002842,-0.003750,0.249972,0,0);}
.md3_c00315{transform:matrix(0.189601,0.002275,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189601,0.002275,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189601,0.002275,-0.003000,0.249982,0,0);}
.m3_c00315{transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);}
.m84_c00315{transform:matrix(0.190186,0.002282,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190186,0.002282,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190186,0.002282,-0.003000,0.249982,0,0);}
.mef_c00315{transform:matrix(0.190646,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190646,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190646,0.002288,-0.003000,0.249982,0,0);}
.mb7_c00315{transform:matrix(0.190806,0.002290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190806,0.002290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190806,0.002290,-0.003000,0.249982,0,0);}
.mb2_c00315{transform:matrix(0.190846,0.002290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190846,0.002290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190846,0.002290,-0.003000,0.249982,0,0);}
.m1e_c00315{transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191044,0.002866,-0.003750,0.249972,0,0);}
.m95_c00315{transform:matrix(0.191281,0.002295,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191281,0.002295,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191281,0.002295,-0.003000,0.249982,0,0);}
.maf_c00315{transform:matrix(0.191411,0.002297,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191411,0.002297,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191411,0.002297,-0.003000,0.249982,0,0);}
.mb4_c00315{transform:matrix(0.191741,0.002301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191741,0.002301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191741,0.002301,-0.003000,0.249982,0,0);}
.mac_c00315{transform:matrix(0.192266,0.002307,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192266,0.002307,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192266,0.002307,-0.003000,0.249982,0,0);}
.m40_c00315{transform:matrix(0.192478,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192478,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192478,0.002887,-0.003750,0.249972,0,0);}
.mb5_c00315{transform:matrix(0.192601,0.002311,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192601,0.002311,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192601,0.002311,-0.003000,0.249982,0,0);}
.m83_c00315{transform:matrix(0.192636,0.002312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192636,0.002312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192636,0.002312,-0.003000,0.249982,0,0);}
.m7b_c00315{transform:matrix(0.192666,0.002312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192666,0.002312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192666,0.002312,-0.003000,0.249982,0,0);}
.md1_c00315{transform:matrix(0.192726,0.002313,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192726,0.002313,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192726,0.002313,-0.003000,0.249982,0,0);}
.m22_c00315{transform:matrix(0.192923,0.002894,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192923,0.002894,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192923,0.002894,-0.003750,0.249972,0,0);}
.m38_c00315{transform:matrix(0.193153,0.002897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193153,0.002897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193153,0.002897,-0.003750,0.249972,0,0);}
.mcd_c00315{transform:matrix(0.193156,0.002318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193156,0.002318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193156,0.002318,-0.003000,0.249982,0,0);}
.m35_c00315{transform:matrix(0.193228,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193228,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193228,0.002898,-0.003750,0.249972,0,0);}
.m8_c00315{transform:matrix(0.193363,0.002900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193363,0.002900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193363,0.002900,-0.003750,0.249972,0,0);}
.m48_c00315{transform:matrix(0.193463,0.002902,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193463,0.002902,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193463,0.002902,-0.003750,0.249972,0,0);}
.m8b_c00315{transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);}
.mb1_c00315{transform:matrix(0.193791,0.002325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193791,0.002325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193791,0.002325,-0.003000,0.249982,0,0);}
.m6_c00315{transform:matrix(0.194558,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194558,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194558,0.002918,-0.003750,0.249972,0,0);}
.me3_c00315{transform:matrix(0.195071,0.002341,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195071,0.002341,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195071,0.002341,-0.003000,0.249982,0,0);}
.m29_c00315{transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);}
.m2c_c00315{transform:matrix(0.195368,0.002931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195368,0.002931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195368,0.002931,-0.003750,0.249972,0,0);}
.m64_c00315{transform:matrix(0.195713,0.002936,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195713,0.002936,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195713,0.002936,-0.003750,0.249972,0,0);}
.m57_c00315{transform:matrix(0.195823,0.002937,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195823,0.002937,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195823,0.002937,-0.003750,0.249972,0,0);}
.m79_c00315{transform:matrix(0.195916,0.002351,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195916,0.002351,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195916,0.002351,-0.003000,0.249982,0,0);}
.mc7_c00315{transform:matrix(0.195986,0.002352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195986,0.002352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195986,0.002352,-0.003000,0.249982,0,0);}
.mb9_c00315{transform:matrix(0.196001,0.002352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196001,0.002352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196001,0.002352,-0.003000,0.249982,0,0);}
.m34_c00315{transform:matrix(0.196118,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196118,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196118,0.002942,-0.003750,0.249972,0,0);}
.mc5_c00315{transform:matrix(0.196306,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196306,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196306,0.002356,-0.003000,0.249982,0,0);}
.mec_c00315{transform:matrix(0.197236,0.002367,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197236,0.002367,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197236,0.002367,-0.003000,0.249982,0,0);}
.ma1_c00315{transform:matrix(0.197246,0.002367,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197246,0.002367,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197246,0.002367,-0.003000,0.249982,0,0);}
.m4b_c00315{transform:matrix(0.197498,0.002962,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197498,0.002962,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197498,0.002962,-0.003750,0.249972,0,0);}
.m7_c00315{transform:matrix(0.197663,0.002965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197663,0.002965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197663,0.002965,-0.003750,0.249972,0,0);}
.mbc_c00315{transform:matrix(0.197736,0.002373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197736,0.002373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197736,0.002373,-0.003000,0.249982,0,0);}
.m3a_c00315{transform:matrix(0.197798,0.002967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197798,0.002967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197798,0.002967,-0.003750,0.249972,0,0);}
.m99_c00315{transform:matrix(0.198221,0.002379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198221,0.002379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198221,0.002379,-0.003000,0.249982,0,0);}
.m8a_c00315{transform:matrix(0.198446,0.002381,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198446,0.002381,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198446,0.002381,-0.003000,0.249982,0,0);}
.mc6_c00315{transform:matrix(0.198591,0.002383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198591,0.002383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198591,0.002383,-0.003000,0.249982,0,0);}
.m4d_c00315{transform:matrix(0.198628,0.002979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198628,0.002979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198628,0.002979,-0.003750,0.249972,0,0);}
.m85_c00315{transform:matrix(0.198856,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198856,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198856,0.002386,-0.003000,0.249982,0,0);}
.mf_c00315{transform:matrix(0.198883,0.002983,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198883,0.002983,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198883,0.002983,-0.003750,0.249972,0,0);}
.mcf_c00315{transform:matrix(0.199066,0.002389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199066,0.002389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199066,0.002389,-0.003000,0.249982,0,0);}
.mee_c00315{transform:matrix(0.199176,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199176,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199176,0.002390,-0.003000,0.249982,0,0);}
.m4c_c00315{transform:matrix(0.199298,0.002989,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199298,0.002989,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199298,0.002989,-0.003750,0.249972,0,0);}
.ma4_c00315{transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);}
.m4f_c00315{transform:matrix(0.199343,0.002990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199343,0.002990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199343,0.002990,-0.003750,0.249972,0,0);}
.mce_c00315{transform:matrix(0.199776,0.002397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199776,0.002397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199776,0.002397,-0.003000,0.249982,0,0);}
.m6e_c00315{transform:matrix(0.200086,0.002401,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200086,0.002401,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200086,0.002401,-0.003000,0.249982,0,0);}
.ma2_c00315{transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);}
.m2b_c00315{transform:matrix(0.200192,0.003003,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200192,0.003003,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200192,0.003003,-0.003750,0.249972,0,0);}
.m6d_c00315{transform:matrix(0.200361,0.002404,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200361,0.002404,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200361,0.002404,-0.003000,0.249982,0,0);}
.mb3_c00315{transform:matrix(0.201131,0.002414,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201131,0.002414,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201131,0.002414,-0.003000,0.249982,0,0);}
.m58_c00315{transform:matrix(0.201562,0.003023,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201562,0.003023,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201562,0.003023,-0.003750,0.249972,0,0);}
.m86_c00315{transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);}
.m37_c00315{transform:matrix(0.201867,0.003028,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201867,0.003028,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201867,0.003028,-0.003750,0.249972,0,0);}
.m71_c00315{transform:matrix(0.201945,0.002423,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201945,0.002423,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201945,0.002423,-0.003000,0.249982,0,0);}
.m3e_c00315{transform:matrix(0.202242,0.003034,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202242,0.003034,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202242,0.003034,-0.003750,0.249972,0,0);}
.mc0_c00315{transform:matrix(0.203020,0.002436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203020,0.002436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203020,0.002436,-0.003000,0.249982,0,0);}
.m6f_c00315{transform:matrix(0.203330,0.002440,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203330,0.002440,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203330,0.002440,-0.003000,0.249982,0,0);}
.mc3_c00315{transform:matrix(0.203435,0.002441,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203435,0.002441,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203435,0.002441,-0.003000,0.249982,0,0);}
.ma0_c00315{transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);}
.mb0_c00315{transform:matrix(0.203590,0.002443,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203590,0.002443,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203590,0.002443,-0.003000,0.249982,0,0);}
.m72_c00315{transform:matrix(0.203685,0.002444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203685,0.002444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203685,0.002444,-0.003000,0.249982,0,0);}
.m9d_c00315{transform:matrix(0.204020,0.002448,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204020,0.002448,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204020,0.002448,-0.003000,0.249982,0,0);}
.m70_c00315{transform:matrix(0.204160,0.002450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204160,0.002450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204160,0.002450,-0.003000,0.249982,0,0);}
.mae_c00315{transform:matrix(0.205430,0.002465,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205430,0.002465,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205430,0.002465,-0.003000,0.249982,0,0);}
.mf4_c00315{transform:matrix(0.205485,0.002466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205485,0.002466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205485,0.002466,-0.003000,0.249982,0,0);}
.m75_c00315{transform:matrix(0.206005,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206005,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206005,0.002472,-0.003000,0.249982,0,0);}
.m7e_c00315{transform:matrix(0.206150,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206150,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206150,0.002474,-0.003000,0.249982,0,0);}
.me6_c00315{transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);}
.m62_c00315{transform:matrix(0.206312,0.003095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206312,0.003095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206312,0.003095,-0.003750,0.249972,0,0);}
.m46_c00315{transform:matrix(0.206352,0.003095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206352,0.003095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206352,0.003095,-0.003750,0.249972,0,0);}
.m92_c00315{transform:matrix(0.207040,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207040,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207040,0.002484,-0.003000,0.249982,0,0);}
.ma8_c00315{transform:matrix(0.207610,0.002491,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207610,0.002491,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207610,0.002491,-0.003000,0.249982,0,0);}
.m3c_c00315{transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207647,0.003115,-0.003750,0.249972,0,0);}
.ma3_c00315{transform:matrix(0.208120,0.002497,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208120,0.002497,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208120,0.002497,-0.003000,0.249982,0,0);}
.m32_c00315{transform:matrix(0.208402,0.003126,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208402,0.003126,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208402,0.003126,-0.003750,0.249972,0,0);}
.m2d_c00315{transform:matrix(0.208512,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208512,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208512,0.003128,-0.003750,0.249972,0,0);}
.mbb_c00315{transform:matrix(0.208555,0.002503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208555,0.002503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208555,0.002503,-0.003000,0.249982,0,0);}
.mde_c00315{transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);}
.m16_c00315{transform:matrix(0.209576,0.003144,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209576,0.003144,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209576,0.003144,-0.003750,0.249972,0,0);}
.m2_c00315{transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);}
.m91_c00315{transform:matrix(0.210320,0.002524,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210320,0.002524,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210320,0.002524,-0.003000,0.249982,0,0);}
.m77_c00315{transform:matrix(0.210440,0.002525,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210440,0.002525,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210440,0.002525,-0.003000,0.249982,0,0);}
.m45_c00315{transform:matrix(0.210461,0.003157,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210461,0.003157,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210461,0.003157,-0.003750,0.249972,0,0);}
.m88_c00315{transform:matrix(0.210775,0.002529,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210775,0.002529,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210775,0.002529,-0.003000,0.249982,0,0);}
.m56_c00315{transform:matrix(0.211376,0.003171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211376,0.003171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211376,0.003171,-0.003750,0.249972,0,0);}
.me1_c00315{transform:matrix(0.211665,0.002540,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211665,0.002540,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211665,0.002540,-0.003000,0.249982,0,0);}
.me0_c00315{transform:matrix(0.211680,0.002540,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211680,0.002540,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211680,0.002540,-0.003000,0.249982,0,0);}
.m2a_c00315{transform:matrix(0.212266,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212266,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212266,0.003184,-0.003750,0.249972,0,0);}
.m23_c00315{transform:matrix(0.212391,0.003186,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212391,0.003186,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212391,0.003186,-0.003750,0.249972,0,0);}
.m39_c00315{transform:matrix(0.212511,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212511,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212511,0.003188,-0.003750,0.249972,0,0);}
.m27_c00315{transform:matrix(0.213306,0.003200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213306,0.003200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213306,0.003200,-0.003750,0.249972,0,0);}
.m21_c00315{transform:matrix(0.213711,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213711,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213711,0.003206,-0.003750,0.249972,0,0);}
.mdf_c00315{transform:matrix(0.213950,0.002567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213950,0.002567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213950,0.002567,-0.003000,0.249982,0,0);}
.m5e_c00315{transform:matrix(0.214146,0.003212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214146,0.003212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214146,0.003212,-0.003750,0.249972,0,0);}
.m9b_c00315{transform:matrix(0.214465,0.002574,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214465,0.002574,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214465,0.002574,-0.003000,0.249982,0,0);}
.mc9_c00315{transform:matrix(0.214770,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214770,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214770,0.002577,-0.003000,0.249982,0,0);}
.m36_c00315{transform:matrix(0.214826,0.003222,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214826,0.003222,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214826,0.003222,-0.003750,0.249972,0,0);}
.m96_c00315{transform:matrix(0.215339,0.002584,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215339,0.002584,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215339,0.002584,-0.003000,0.249982,0,0);}
.m9c_c00315{transform:matrix(0.216059,0.002593,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216059,0.002593,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216059,0.002593,-0.003000,0.249982,0,0);}
.ma5_c00315{transform:matrix(0.217464,0.002610,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217464,0.002610,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217464,0.002610,-0.003000,0.249982,0,0);}
.m61_c00315{transform:matrix(0.217496,0.003262,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217496,0.003262,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217496,0.003262,-0.003750,0.249972,0,0);}
.m50_c00315{transform:matrix(0.217581,0.003264,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217581,0.003264,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217581,0.003264,-0.003750,0.249972,0,0);}
.m26_c00315{transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);}
.m2f_c00315{transform:matrix(0.218055,0.003271,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218055,0.003271,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218055,0.003271,-0.003750,0.249972,0,0);}
.me4_c00315{transform:matrix(0.218494,0.002622,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218494,0.002622,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218494,0.002622,-0.003000,0.249982,0,0);}
.m4a_c00315{transform:matrix(0.219020,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219020,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219020,0.003285,-0.003750,0.249972,0,0);}
.m90_c00315{transform:matrix(0.219269,0.002631,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219269,0.002631,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219269,0.002631,-0.003000,0.249982,0,0);}
.m8e_c00315{transform:matrix(0.221899,0.002663,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221899,0.002663,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221899,0.002663,-0.003000,0.249982,0,0);}
.m5a_c00315{transform:matrix(0.222640,0.003340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222640,0.003340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222640,0.003340,-0.003750,0.249972,0,0);}
.m55_c00315{transform:matrix(0.222905,0.003344,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222905,0.003344,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222905,0.003344,-0.003750,0.249972,0,0);}
.m89_c00315{transform:matrix(0.223294,0.002680,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223294,0.002680,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223294,0.002680,-0.003000,0.249982,0,0);}
.m25_c00315{transform:matrix(0.223450,0.003352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223450,0.003352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223450,0.003352,-0.003750,0.249972,0,0);}
.mb_c00315{transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);}
.m41_c00315{transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224335,0.003365,-0.003750,0.249972,0,0);}
.m43_c00315{transform:matrix(0.224705,0.003371,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224705,0.003371,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224705,0.003371,-0.003750,0.249972,0,0);}
.m5d_c00315{transform:matrix(0.224860,0.003373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224860,0.003373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224860,0.003373,-0.003750,0.249972,0,0);}
.m3b_c00315{transform:matrix(0.226125,0.003392,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226125,0.003392,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226125,0.003392,-0.003750,0.249972,0,0);}
.m97_c00315{transform:matrix(0.226609,0.002719,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226609,0.002719,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226609,0.002719,-0.003000,0.249982,0,0);}
.m81_c00315{transform:matrix(0.227289,0.002727,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227289,0.002727,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227289,0.002727,-0.003000,0.249982,0,0);}
.m80_c00315{transform:matrix(0.227959,0.002736,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227959,0.002736,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227959,0.002736,-0.003000,0.249982,0,0);}
.m5f_c00315{transform:matrix(0.229254,0.003439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229254,0.003439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229254,0.003439,-0.003750,0.249972,0,0);}
.m9e_c00315{transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);}
.m5c_c00315{transform:matrix(0.230474,0.003457,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230474,0.003457,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230474,0.003457,-0.003750,0.249972,0,0);}
.m53_c00315{transform:matrix(0.231224,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231224,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231224,0.003468,-0.003750,0.249972,0,0);}
.m54_c00315{transform:matrix(0.232069,0.003481,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232069,0.003481,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232069,0.003481,-0.003750,0.249972,0,0);}
.mdd_c00315{transform:matrix(0.232383,0.002789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232383,0.002789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232383,0.002789,-0.003000,0.249982,0,0);}
.m6b_c00315{transform:matrix(0.232563,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232563,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232563,0.002791,-0.003000,0.249982,0,0);}
.m28_c00315{transform:matrix(0.233259,0.003499,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233259,0.003499,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233259,0.003499,-0.003750,0.249972,0,0);}
.m8c_c00315{transform:matrix(0.233648,0.002804,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233648,0.002804,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233648,0.002804,-0.003000,0.249982,0,0);}
.med_c00315{transform:matrix(0.235243,0.002823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235243,0.002823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235243,0.002823,-0.003000,0.249982,0,0);}
.m7f_c00315{transform:matrix(0.244777,0.002937,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244777,0.002937,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244777,0.002937,-0.003000,0.249982,0,0);}
.m3f_c00315{transform:matrix(0.250917,0.003764,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250917,0.003764,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250917,0.003764,-0.003750,0.249972,0,0);}
.m47_c00315{transform:matrix(0.254776,0.003822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254776,0.003822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254776,0.003822,-0.003750,0.249972,0,0);}
.m52_c00315{transform:matrix(0.259846,0.003898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259846,0.003898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259846,0.003898,-0.003750,0.249972,0,0);}
.m20_c00315{transform:matrix(0.260921,0.003914,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260921,0.003914,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260921,0.003914,-0.003750,0.249972,0,0);}
.m6a_c00315{transform:matrix(0.261626,0.003140,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261626,0.003140,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261626,0.003140,-0.003000,0.249982,0,0);}
.ma7_c00315{transform:matrix(0.278355,0.003340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278355,0.003340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278355,0.003340,-0.003000,0.249982,0,0);}
.m0_c00315{transform:matrix(0.374190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374190,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:0.000000px;}
.fc0_c00315{color:transparent;}
.fs9_c00315{font-size:55.656260px;}
.fsf_c00315{font-size:58.804233px;}
.fs7_c00315{font-size:58.806615px;}
.fse_c00315{font-size:60.904385px;}
.fsd_c00315{font-size:61.954460px;}
.fs5_c00315{font-size:61.956969px;}
.fsa_c00315{font-size:63.004536px;}
.fs8_c00315{font-size:63.007087px;}
.fsb_c00315{font-size:64.054611px;}
.fs6_c00315{font-size:64.057205px;}
.fs10_c00315{font-size:65.104687px;}
.fs4_c00315{font-size:65.107323px;}
.fs12_c00315{font-size:66.154763px;}
.fsc_c00315{font-size:67.204838px;}
.fs1_c00315{font-size:67.207560px;}
.fs13_c00315{font-size:68.254914px;}
.fs11_c00315{font-size:69.304989px;}
.fs2_c00315{font-size:70.357914px;}
.fs3_c00315{font-size:71.408032px;}
.fs0_c00315{font-size:80.850000px;}
.y0_c00315{bottom:0.000000px;}
.yf8_c00315{bottom:29.229078px;}
.yf7_c00315{bottom:29.864376px;}
.yf6_c00315{bottom:30.164640px;}
.yf5_c00315{bottom:30.512352px;}
.yf4_c00315{bottom:31.217238px;}
.yf3_c00315{bottom:31.974600px;}
.yf2_c00315{bottom:32.400300px;}
.yf1_c00315{bottom:32.627154px;}
.yf0_c00315{bottom:33.184734px;}
.yef_c00315{bottom:48.163758px;}
.yea_c00315{bottom:48.164022px;}
.yee_c00315{bottom:48.164160px;}
.yeb_c00315{bottom:48.164538px;}
.yed_c00315{bottom:48.164748px;}
.yec_c00315{bottom:48.165276px;}
.ye9_c00315{bottom:62.465046px;}
.ye8_c00315{bottom:62.650374px;}
.ye7_c00315{bottom:63.356736px;}
.ye6_c00315{bottom:63.709794px;}
.ye5_c00315{bottom:64.541292px;}
.ye4_c00315{bottom:64.715904px;}
.ye3_c00315{bottom:66.011706px;}
.ye2_c00315{bottom:66.200652px;}
.ye1_c00315{bottom:66.397344px;}
.ye0_c00315{bottom:80.346072px;}
.ydf_c00315{bottom:80.535666px;}
.yde_c00315{bottom:81.182838px;}
.ydd_c00315{bottom:81.479820px;}
.ydc_c00315{bottom:82.048506px;}
.ydb_c00315{bottom:82.268928px;}
.yda_c00315{bottom:82.919988px;}
.yd9_c00315{bottom:83.115738px;}
.yd8_c00315{bottom:83.409516px;}
.yd7_c00315{bottom:97.356594px;}
.yd6_c00315{bottom:97.564146px;}
.yd5_c00315{bottom:98.346558px;}
.yd4_c00315{bottom:98.700942px;}
.yd3_c00315{bottom:98.953020px;}
.yd2_c00315{bottom:99.592578px;}
.yd1_c00315{bottom:100.168758px;}
.yd0_c00315{bottom:100.520496px;}
.ycf_c00315{bottom:100.692864px;}
.yce_c00315{bottom:113.271066px;}
.ycd_c00315{bottom:113.560596px;}
.ycc_c00315{bottom:114.942246px;}
.ycb_c00315{bottom:115.253256px;}
.yca_c00315{bottom:115.726584px;}
.yc9_c00315{bottom:115.971276px;}
.yc8_c00315{bottom:116.690934px;}
.yc7_c00315{bottom:116.997924px;}
.yc6_c00315{bottom:117.976926px;}
.yc5_c00315{bottom:131.215530px;}
.yc4_c00315{bottom:131.465592px;}
.yc3_c00315{bottom:131.939046px;}
.yc2_c00315{bottom:132.605754px;}
.yc1_c00315{bottom:133.036860px;}
.yc0_c00315{bottom:133.482804px;}
.ybf_c00315{bottom:134.449650px;}
.ybe_c00315{bottom:134.716782px;}
.ybd_c00315{bottom:148.616040px;}
.ybc_c00315{bottom:149.368638px;}
.ybb_c00315{bottom:149.670546px;}
.yba_c00315{bottom:150.446772px;}
.yb9_c00315{bottom:151.263720px;}
.yb8_c00315{bottom:151.655604px;}
.yb7_c00315{bottom:152.267394px;}
.yb6_c00315{bottom:165.612564px;}
.yb5_c00315{bottom:166.034004px;}
.yb4_c00315{bottom:167.024652px;}
.yb3_c00315{bottom:167.511444px;}
.yb2_c00315{bottom:168.086868px;}
.yb1_c00315{bottom:168.561408px;}
.yb0_c00315{bottom:169.820256px;}
.yaf_c00315{bottom:182.396778px;}
.yae_c00315{bottom:183.688986px;}
.yad_c00315{bottom:183.999210px;}
.yac_c00315{bottom:184.457910px;}
.yab_c00315{bottom:184.700328px;}
.yaa_c00315{bottom:186.094104px;}
.ya9_c00315{bottom:186.296442px;}
.ya8_c00315{bottom:186.559326px;}
.ya7_c00315{bottom:200.231706px;}
.ya6_c00315{bottom:201.298848px;}
.ya5_c00315{bottom:201.999420px;}
.ya4_c00315{bottom:202.790094px;}
.ya3_c00315{bottom:203.588952px;}
.ya2_c00315{bottom:204.394176px;}
.ya1_c00315{bottom:204.757554px;}
.ya0_c00315{bottom:205.194606px;}
.y9f_c00315{bottom:216.804612px;}
.y9e_c00315{bottom:217.906680px;}
.y9d_c00315{bottom:218.569512px;}
.y9c_c00315{bottom:218.868828px;}
.y9b_c00315{bottom:220.110546px;}
.y9a_c00315{bottom:220.462218px;}
.y99_c00315{bottom:221.704206px;}
.y98_c00315{bottom:221.936364px;}
.y97_c00315{bottom:233.928240px;}
.y96_c00315{bottom:234.729750px;}
.y95_c00315{bottom:235.292496px;}
.y94_c00315{bottom:235.516968px;}
.y93_c00315{bottom:235.749534px;}
.y92_c00315{bottom:237.189798px;}
.y91_c00315{bottom:237.621294px;}
.y90_c00315{bottom:238.677918px;}
.y8f_c00315{bottom:251.079048px;}
.y8e_c00315{bottom:251.452092px;}
.y8d_c00315{bottom:252.075534px;}
.y8c_c00315{bottom:252.966942px;}
.y8b_c00315{bottom:254.177292px;}
.y8a_c00315{bottom:254.876808px;}
.y89_c00315{bottom:267.843648px;}
.y88_c00315{bottom:268.096386px;}
.y87_c00315{bottom:268.688874px;}
.y86_c00315{bottom:269.041818px;}
.y85_c00315{bottom:269.515596px;}
.y84_c00315{bottom:269.728806px;}
.y83_c00315{bottom:269.890788px;}
.y82_c00315{bottom:271.077600px;}
.y81_c00315{bottom:284.784966px;}
.y80_c00315{bottom:284.959392px;}
.y7f_c00315{bottom:285.241818px;}
.y7e_c00315{bottom:285.447972px;}
.y7d_c00315{bottom:285.765558px;}
.y7c_c00315{bottom:286.476012px;}
.y7b_c00315{bottom:286.776414px;}
.y7a_c00315{bottom:287.120160px;}
.y79_c00315{bottom:287.819658px;}
.y78_c00315{bottom:300.998400px;}
.y77_c00315{bottom:301.257336px;}
.y76_c00315{bottom:301.994808px;}
.y75_c00315{bottom:302.440842px;}
.y74_c00315{bottom:302.676696px;}
.y73_c00315{bottom:303.831030px;}
.y72_c00315{bottom:304.560864px;}
.y71_c00315{bottom:318.307650px;}
.y70_c00315{bottom:318.617808px;}
.y6f_c00315{bottom:318.842160px;}
.y6e_c00315{bottom:319.639146px;}
.y6d_c00315{bottom:319.836228px;}
.y6c_c00315{bottom:320.575758px;}
.y6b_c00315{bottom:321.301500px;}
.y6a_c00315{bottom:336.356828px;}
.y69_c00315{bottom:336.794235px;}
.y68_c00315{bottom:337.033958px;}
.y67_c00315{bottom:337.873020px;}
.y66_c00315{bottom:338.154848px;}
.y65_c00315{bottom:338.307630px;}
.y64_c00315{bottom:338.822670px;}
.y63_c00315{bottom:352.594253px;}
.y62_c00315{bottom:353.356530px;}
.y61_c00315{bottom:353.579505px;}
.y60_c00315{bottom:353.987543px;}
.y5f_c00315{bottom:354.789600px;}
.y5e_c00315{bottom:355.094475px;}
.y5d_c00315{bottom:356.017763px;}
.y5c_c00315{bottom:356.240603px;}
.y5b_c00315{bottom:356.645558px;}
.y5a_c00315{bottom:369.499658px;}
.y59_c00315{bottom:370.170383px;}
.y58_c00315{bottom:370.458173px;}
.y57_c00315{bottom:371.259540px;}
.y56_c00315{bottom:371.467125px;}
.y55_c00315{bottom:372.432600px;}
.y54_c00315{bottom:373.117328px;}
.y53_c00315{bottom:386.542410px;}
.y52_c00315{bottom:386.856083px;}
.y51_c00315{bottom:387.112380px;}
.y50_c00315{bottom:388.126748px;}
.y4f_c00315{bottom:388.413975px;}
.y4e_c00315{bottom:388.758660px;}
.y4d_c00315{bottom:390.131400px;}
.y4c_c00315{bottom:403.223205px;}
.y4b_c00315{bottom:403.952295px;}
.y4a_c00315{bottom:404.332298px;}
.y49_c00315{bottom:404.882865px;}
.y48_c00315{bottom:405.456750px;}
.y47_c00315{bottom:406.224653px;}
.y46_c00315{bottom:407.128890px;}
.y45_c00315{bottom:407.412675px;}
.y44_c00315{bottom:421.014008px;}
.y43_c00315{bottom:421.281630px;}
.y42_c00315{bottom:421.496438px;}
.y41_c00315{bottom:422.133435px;}
.y40_c00315{bottom:422.681183px;}
.y3f_c00315{bottom:423.655575px;}
.y3e_c00315{bottom:423.935880px;}
.y3d_c00315{bottom:424.697895px;}
.y3c_c00315{bottom:437.190953px;}
.y3b_c00315{bottom:438.250043px;}
.y3a_c00315{bottom:438.454395px;}
.y39_c00315{bottom:440.019653px;}
.y38_c00315{bottom:441.253965px;}
.y37_c00315{bottom:442.251525px;}
.y30_c00315{bottom:455.886818px;}
.y31_c00315{bottom:455.887103px;}
.y32_c00315{bottom:455.887425px;}
.y33_c00315{bottom:455.887710px;}
.y35_c00315{bottom:455.887823px;}
.y34_c00315{bottom:455.887928px;}
.y36_c00315{bottom:455.888018px;}
.y2f_c00315{bottom:471.494903px;}
.y2e_c00315{bottom:472.151543px;}
.y2d_c00315{bottom:472.459253px;}
.y2c_c00315{bottom:473.163998px;}
.y2b_c00315{bottom:474.342728px;}
.y2a_c00315{bottom:474.622200px;}
.y29_c00315{bottom:475.266555px;}
.y28_c00315{bottom:475.436633px;}
.y27_c00315{bottom:475.732193px;}
.y26_c00315{bottom:488.861483px;}
.y25_c00315{bottom:489.145470px;}
.y24_c00315{bottom:490.191938px;}
.y23_c00315{bottom:491.063393px;}
.y22_c00315{bottom:491.589608px;}
.y21_c00315{bottom:491.972423px;}
.y20_c00315{bottom:492.742800px;}
.y1f_c00315{bottom:504.925883px;}
.y1e_c00315{bottom:505.435935px;}
.y1d_c00315{bottom:505.679880px;}
.y1c_c00315{bottom:505.986915px;}
.y1b_c00315{bottom:506.992103px;}
.y1a_c00315{bottom:507.417128px;}
.y19_c00315{bottom:508.389758px;}
.y18_c00315{bottom:508.770593px;}
.y17_c00315{bottom:508.943685px;}
.y16_c00315{bottom:521.961082px;}
.y15_c00315{bottom:522.326483px;}
.y14_c00315{bottom:522.642758px;}
.y13_c00315{bottom:523.360103px;}
.y12_c00315{bottom:523.637325px;}
.y11_c00315{bottom:524.656328px;}
.y10_c00315{bottom:525.512385px;}
.yf_c00315{bottom:525.958170px;}
.ye_c00315{bottom:541.224675px;}
.yd_c00315{bottom:541.224930px;}
.yb_c00315{bottom:541.225200px;}
.ya_c00315{bottom:541.225455px;}
.yc_c00315{bottom:541.225508px;}
.y9_c00315{bottom:541.225988px;}
.y8_c00315{bottom:555.686198px;}
.y7_c00315{bottom:556.431308px;}
.y6_c00315{bottom:557.817105px;}
.y5_c00315{bottom:558.088725px;}
.y4_c00315{bottom:558.615338px;}
.y3_c00315{bottom:559.510410px;}
.y2_c00315{bottom:559.713000px;}
.y1_c00315{bottom:569.436000px;}
.hb_c00315{height:55.656260px;}
.h11_c00315{height:58.804233px;}
.h9_c00315{height:58.806615px;}
.h10_c00315{height:60.904385px;}
.hf_c00315{height:61.954460px;}
.h7_c00315{height:61.956969px;}
.hc_c00315{height:63.004536px;}
.ha_c00315{height:63.007087px;}
.hd_c00315{height:64.054611px;}
.h8_c00315{height:64.057205px;}
.h12_c00315{height:65.104687px;}
.h6_c00315{height:65.107323px;}
.h14_c00315{height:66.154763px;}
.he_c00315{height:67.204838px;}
.h3_c00315{height:67.207560px;}
.h15_c00315{height:68.254914px;}
.h13_c00315{height:69.304989px;}
.h4_c00315{height:70.357914px;}
.h5_c00315{height:71.408032px;}
.h2_c00315{height:80.850000px;}
.h0_c00315{height:613.170000px;}
.h1_c00315{height:613.500000px;}
.w0_c00315{width:359.100000px;}
.w1_c00315{width:359.250000px;}
.x0_c00315{left:0.000000px;}
.x7b_c00315{left:31.178748px;}
.x6c_c00315{left:33.098700px;}
.x59_c00315{left:34.633698px;}
.x56_c00315{left:35.795724px;}
.x40_c00315{left:37.081703px;}
.x31_c00315{left:38.680118px;}
.x21_c00315{left:40.059270px;}
.x2_c00315{left:41.398500px;}
.x5e_c00315{left:45.657630px;}
.x14_c00315{left:52.197465px;}
.x70_c00315{left:53.824902px;}
.x3_c00315{left:54.904500px;}
.x7c_c00315{left:57.910572px;}
.x22_c00315{left:59.763270px;}
.x41_c00315{left:64.078703px;}
.x80_c00315{left:67.563186px;}
.xd_c00315{left:68.932800px;}
.x23_c00315{left:71.101770px;}
.x78_c00315{left:72.532284px;}
.x7d_c00315{left:75.723288px;}
.x15_c00315{left:77.586465px;}
.x42_c00315{left:78.934703px;}
.x46_c00315{left:80.044860px;}
.x57_c00315{left:82.462050px;}
.x1c_c00315{left:85.931138px;}
.x9_c00315{left:88.834920px;}
.x3d_c00315{left:90.560985px;}
.x47_c00315{left:92.730923px;}
.x2c_c00315{left:94.602983px;}
.x7f_c00315{left:96.660306px;}
.x4d_c00315{left:100.370886px;}
.x32_c00315{left:103.767128px;}
.x6d_c00315{left:104.861490px;}
.x1d_c00315{left:108.451463px;}
.x62_c00315{left:110.179068px;}
.x6a_c00315{left:112.471128px;}
.x4_c00315{left:114.576000px;}
.x48_c00315{left:116.220480px;}
.x5a_c00315{left:117.262740px;}
.xe_c00315{left:122.402490px;}
.x5f_c00315{left:125.329980px;}
.x71_c00315{left:128.144502px;}
.x4e_c00315{left:131.641764px;}
.x24_c00315{left:132.690270px;}
.x28_c00315{left:134.467403px;}
.x38_c00315{left:135.912023px;}
.x1e_c00315{left:139.431540px;}
.x43_c00315{left:140.487203px;}
.x16_c00315{left:142.428465px;}
.x63_c00315{left:148.246464px;}
.x5_c00315{left:149.683500px;}
.x76_c00315{left:150.731646px;}
.x35_c00315{left:153.260340px;}
.x7e_c00315{left:154.847724px;}
.x65_c00315{left:157.761288px;}
.x4f_c00315{left:158.925588px;}
.x39_c00315{left:160.491383px;}
.x81_c00315{left:161.552802px;}
.x2d_c00315{left:163.187400px;}
.x33_c00315{left:164.625705px;}
.x53_c00315{left:166.466178px;}
.x6_c00315{left:167.791500px;}
.x17_c00315{left:170.763465px;}
.x1_c00315{left:172.530000px;}
.x66_c00315{left:173.962212px;}
.x49_c00315{left:177.310500px;}
.x3a_c00315{left:181.040198px;}
.xf_c00315{left:186.135045px;}
.x60_c00315{left:187.425522px;}
.x1f_c00315{left:190.727010px;}
.x4a_c00315{left:193.734000px;}
.x72_c00315{left:195.606192px;}
.x5b_c00315{left:197.278980px;}
.x34_c00315{left:198.841688px;}
.x61_c00315{left:202.367082px;}
.x10_c00315{left:203.416275px;}
.x67_c00315{left:204.561114px;}
.xa_c00315{left:205.757722px;}
.x6b_c00315{left:208.529520px;}
.x5c_c00315{left:210.158544px;}
.x25_c00315{left:211.272270px;}
.x79_c00315{left:212.630592px;}
.x29_c00315{left:214.666448px;}
.x6e_c00315{left:218.623254px;}
.xb_c00315{left:219.799373px;}
.x50_c00315{left:223.505862px;}
.x68_c00315{left:225.287376px;}
.x82_c00315{left:231.766782px;}
.x4c_c00315{left:234.014598px;}
.x54_c00315{left:235.359678px;}
.x18_c00315{left:237.775965px;}
.x6f_c00315{left:240.156732px;}
.x36_c00315{left:241.754685px;}
.xc_c00315{left:245.722200px;}
.x73_c00315{left:246.914580px;}
.x11_c00315{left:248.238600px;}
.x2e_c00315{left:250.133985px;}
.x20_c00315{left:252.289665px;}
.x2a_c00315{left:254.360880px;}
.x44_c00315{left:256.350203px;}
.x19_c00315{left:258.244965px;}
.x7_c00315{left:260.178000px;}
.x2f_c00315{left:261.456968px;}
.x3e_c00315{left:264.480683px;}
.x12_c00315{left:268.023307px;}
.x64_c00315{left:270.057306px;}
.x3b_c00315{left:271.752548px;}
.x7a_c00315{left:272.830872px;}
.x1a_c00315{left:274.507965px;}
.x26_c00315{left:278.769270px;}
.x74_c00315{left:283.368648px;}
.x37_c00315{left:284.659403px;}
.x58_c00315{left:289.016616px;}
.x13_c00315{left:290.882970px;}
.x77_c00315{left:292.488132px;}
.x3c_c00315{left:294.164385px;}
.x51_c00315{left:296.687226px;}
.x5d_c00315{left:298.421190px;}
.x2b_c00315{left:300.265208px;}
.x75_c00315{left:302.581914px;}
.x4b_c00315{left:304.692000px;}
.x55_c00315{left:305.795178px;}
.x45_c00315{left:307.168703px;}
.x1b_c00315{left:308.511465px;}
.x8_c00315{left:309.852000px;}
.x69_c00315{left:311.468280px;}
.x52_c00315{left:312.597924px;}
.x3f_c00315{left:316.097235px;}
.x30_c00315{left:320.260313px;}
.x27_c00315{left:322.545270px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs9_c00315{font-size:49.472231pt;}
.fsf_c00315{font-size:52.270430pt;}
.fs7_c00315{font-size:52.272546pt;}
.fse_c00315{font-size:54.137231pt;}
.fsd_c00315{font-size:55.070631pt;}
.fs5_c00315{font-size:55.072861pt;}
.fsa_c00315{font-size:56.004032pt;}
.fs8_c00315{font-size:56.006300pt;}
.fsb_c00315{font-size:56.937432pt;}
.fs6_c00315{font-size:56.939738pt;}
.fs10_c00315{font-size:57.870833pt;}
.fs4_c00315{font-size:57.873176pt;}
.fs12_c00315{font-size:58.804233pt;}
.fsc_c00315{font-size:59.737634pt;}
.fs1_c00315{font-size:59.740053pt;}
.fs13_c00315{font-size:60.671035pt;}
.fs11_c00315{font-size:61.604435pt;}
.fs2_c00315{font-size:62.540368pt;}
.fs3_c00315{font-size:63.473806pt;}
.fs0_c00315{font-size:71.866667pt;}
.y0_c00315{bottom:0.000000pt;}
.yf8_c00315{bottom:25.981403pt;}
.yf7_c00315{bottom:26.546112pt;}
.yf6_c00315{bottom:26.813013pt;}
.yf5_c00315{bottom:27.122091pt;}
.yf4_c00315{bottom:27.748656pt;}
.yf3_c00315{bottom:28.421867pt;}
.yf2_c00315{bottom:28.800267pt;}
.yf1_c00315{bottom:29.001915pt;}
.yf0_c00315{bottom:29.497541pt;}
.yef_c00315{bottom:42.812229pt;}
.yea_c00315{bottom:42.812464pt;}
.yee_c00315{bottom:42.812587pt;}
.yeb_c00315{bottom:42.812923pt;}
.yed_c00315{bottom:42.813109pt;}
.yec_c00315{bottom:42.813579pt;}
.ye9_c00315{bottom:55.524485pt;}
.ye8_c00315{bottom:55.689221pt;}
.ye7_c00315{bottom:56.317099pt;}
.ye6_c00315{bottom:56.630928pt;}
.ye5_c00315{bottom:57.370037pt;}
.ye4_c00315{bottom:57.525248pt;}
.ye3_c00315{bottom:58.677072pt;}
.ye2_c00315{bottom:58.845024pt;}
.ye1_c00315{bottom:59.019861pt;}
.ye0_c00315{bottom:71.418731pt;}
.ydf_c00315{bottom:71.587259pt;}
.yde_c00315{bottom:72.162523pt;}
.ydd_c00315{bottom:72.426507pt;}
.ydc_c00315{bottom:72.932005pt;}
.ydb_c00315{bottom:73.127936pt;}
.yda_c00315{bottom:73.706656pt;}
.yd9_c00315{bottom:73.880656pt;}
.yd8_c00315{bottom:74.141792pt;}
.yd7_c00315{bottom:86.539195pt;}
.yd6_c00315{bottom:86.723685pt;}
.yd5_c00315{bottom:87.419163pt;}
.yd4_c00315{bottom:87.734171pt;}
.yd3_c00315{bottom:87.958240pt;}
.yd2_c00315{bottom:88.526736pt;}
.yd1_c00315{bottom:89.038896pt;}
.yd0_c00315{bottom:89.351552pt;}
.ycf_c00315{bottom:89.504768pt;}
.yce_c00315{bottom:100.685392pt;}
.ycd_c00315{bottom:100.942752pt;}
.ycc_c00315{bottom:102.170885pt;}
.ycb_c00315{bottom:102.447339pt;}
.yca_c00315{bottom:102.868075pt;}
.yc9_c00315{bottom:103.085579pt;}
.yc8_c00315{bottom:103.725275pt;}
.yc7_c00315{bottom:103.998155pt;}
.yc6_c00315{bottom:104.868379pt;}
.yc5_c00315{bottom:116.636027pt;}
.yc4_c00315{bottom:116.858304pt;}
.yc3_c00315{bottom:117.279152pt;}
.yc2_c00315{bottom:117.871781pt;}
.yc1_c00315{bottom:118.254987pt;}
.yc0_c00315{bottom:118.651381pt;}
.ybf_c00315{bottom:119.510800pt;}
.ybe_c00315{bottom:119.748251pt;}
.ybd_c00315{bottom:132.103147pt;}
.ybc_c00315{bottom:132.772123pt;}
.ybb_c00315{bottom:133.040485pt;}
.yba_c00315{bottom:133.730464pt;}
.yb9_c00315{bottom:134.456640pt;}
.yb8_c00315{bottom:134.804981pt;}
.yb7_c00315{bottom:135.348795pt;}
.yb6_c00315{bottom:147.211168pt;}
.yb5_c00315{bottom:147.585781pt;}
.yb4_c00315{bottom:148.466357pt;}
.yb3_c00315{bottom:148.899061pt;}
.yb2_c00315{bottom:149.410549pt;}
.yb1_c00315{bottom:149.832363pt;}
.yb0_c00315{bottom:150.951339pt;}
.yaf_c00315{bottom:162.130469pt;}
.yae_c00315{bottom:163.279099pt;}
.yad_c00315{bottom:163.554853pt;}
.yac_c00315{bottom:163.962587pt;}
.yab_c00315{bottom:164.178069pt;}
.yaa_c00315{bottom:165.416981pt;}
.ya9_c00315{bottom:165.596837pt;}
.ya8_c00315{bottom:165.830512pt;}
.ya7_c00315{bottom:177.983739pt;}
.ya6_c00315{bottom:178.932309pt;}
.ya5_c00315{bottom:179.555040pt;}
.ya4_c00315{bottom:180.257861pt;}
.ya3_c00315{bottom:180.967957pt;}
.ya2_c00315{bottom:181.683712pt;}
.ya1_c00315{bottom:182.006715pt;}
.ya0_c00315{bottom:182.395205pt;}
.y9f_c00315{bottom:192.715211pt;}
.y9e_c00315{bottom:193.694827pt;}
.y9d_c00315{bottom:194.284011pt;}
.y9c_c00315{bottom:194.550069pt;}
.y9b_c00315{bottom:195.653819pt;}
.y9a_c00315{bottom:195.966416pt;}
.y99_c00315{bottom:197.070405pt;}
.y98_c00315{bottom:197.276768pt;}
.y97_c00315{bottom:207.936213pt;}
.y96_c00315{bottom:208.648667pt;}
.y95_c00315{bottom:209.148885pt;}
.y94_c00315{bottom:209.348416pt;}
.y93_c00315{bottom:209.555141pt;}
.y92_c00315{bottom:210.835376pt;}
.y91_c00315{bottom:211.218928pt;}
.y90_c00315{bottom:212.158149pt;}
.y8f_c00315{bottom:223.181376pt;}
.y8e_c00315{bottom:223.512971pt;}
.y8d_c00315{bottom:224.067141pt;}
.y8c_c00315{bottom:224.859504pt;}
.y8b_c00315{bottom:225.935371pt;}
.y8a_c00315{bottom:226.557163pt;}
.y89_c00315{bottom:238.083243pt;}
.y88_c00315{bottom:238.307899pt;}
.y87_c00315{bottom:238.834555pt;}
.y86_c00315{bottom:239.148283pt;}
.y85_c00315{bottom:239.569419pt;}
.y84_c00315{bottom:239.758939pt;}
.y83_c00315{bottom:239.902923pt;}
.y82_c00315{bottom:240.957867pt;}
.y81_c00315{bottom:253.142192pt;}
.y80_c00315{bottom:253.297237pt;}
.y7f_c00315{bottom:253.548283pt;}
.y7e_c00315{bottom:253.731531pt;}
.y7d_c00315{bottom:254.013829pt;}
.y7c_c00315{bottom:254.645344pt;}
.y7b_c00315{bottom:254.912368pt;}
.y7a_c00315{bottom:255.217920pt;}
.y79_c00315{bottom:255.839696pt;}
.y78_c00315{bottom:267.554133pt;}
.y77_c00315{bottom:267.784299pt;}
.y76_c00315{bottom:268.439829pt;}
.y75_c00315{bottom:268.836304pt;}
.y74_c00315{bottom:269.045952pt;}
.y73_c00315{bottom:270.072027pt;}
.y72_c00315{bottom:270.720768pt;}
.y71_c00315{bottom:282.940133pt;}
.y70_c00315{bottom:283.215829pt;}
.y6f_c00315{bottom:283.415253pt;}
.y6e_c00315{bottom:284.123685pt;}
.y6d_c00315{bottom:284.298869pt;}
.y6c_c00315{bottom:284.956229pt;}
.y6b_c00315{bottom:285.601333pt;}
.y6a_c00315{bottom:298.983847pt;}
.y69_c00315{bottom:299.372653pt;}
.y68_c00315{bottom:299.585740pt;}
.y67_c00315{bottom:300.331573pt;}
.y66_c00315{bottom:300.582087pt;}
.y65_c00315{bottom:300.717893pt;}
.y64_c00315{bottom:301.175707pt;}
.y63_c00315{bottom:313.417113pt;}
.y62_c00315{bottom:314.094693pt;}
.y61_c00315{bottom:314.292893pt;}
.y60_c00315{bottom:314.655593pt;}
.y5f_c00315{bottom:315.368533pt;}
.y5e_c00315{bottom:315.639533pt;}
.y5d_c00315{bottom:316.460233pt;}
.y5c_c00315{bottom:316.658313pt;}
.y5b_c00315{bottom:317.018273pt;}
.y5a_c00315{bottom:328.444140pt;}
.y59_c00315{bottom:329.040340pt;}
.y58_c00315{bottom:329.296153pt;}
.y57_c00315{bottom:330.008480pt;}
.y56_c00315{bottom:330.193000pt;}
.y55_c00315{bottom:331.051200pt;}
.y54_c00315{bottom:331.659847pt;}
.y53_c00315{bottom:343.593253pt;}
.y52_c00315{bottom:343.872073pt;}
.y51_c00315{bottom:344.099893pt;}
.y50_c00315{bottom:345.001553pt;}
.y4f_c00315{bottom:345.256867pt;}
.y4e_c00315{bottom:345.563253pt;}
.y4d_c00315{bottom:346.783467pt;}
.y4c_c00315{bottom:358.420627pt;}
.y4b_c00315{bottom:359.068707pt;}
.y4a_c00315{bottom:359.406487pt;}
.y49_c00315{bottom:359.895880pt;}
.y48_c00315{bottom:360.406000pt;}
.y47_c00315{bottom:361.088580pt;}
.y46_c00315{bottom:361.892347pt;}
.y45_c00315{bottom:362.144600pt;}
.y44_c00315{bottom:374.234673pt;}
.y43_c00315{bottom:374.472560pt;}
.y42_c00315{bottom:374.663500pt;}
.y41_c00315{bottom:375.229720pt;}
.y40_c00315{bottom:375.716607pt;}
.y3f_c00315{bottom:376.582733pt;}
.y3e_c00315{bottom:376.831893pt;}
.y3d_c00315{bottom:377.509240pt;}
.y3c_c00315{bottom:388.614180pt;}
.y3b_c00315{bottom:389.555593pt;}
.y3a_c00315{bottom:389.737240pt;}
.y39_c00315{bottom:391.128580pt;}
.y38_c00315{bottom:392.225747pt;}
.y37_c00315{bottom:393.112467pt;}
.y30_c00315{bottom:405.232727pt;}
.y31_c00315{bottom:405.232980pt;}
.y32_c00315{bottom:405.233267pt;}
.y33_c00315{bottom:405.233520pt;}
.y35_c00315{bottom:405.233620pt;}
.y34_c00315{bottom:405.233713pt;}
.y36_c00315{bottom:405.233793pt;}
.y2f_c00315{bottom:419.106580pt;}
.y2e_c00315{bottom:419.690260pt;}
.y2d_c00315{bottom:419.963780pt;}
.y2c_c00315{bottom:420.590220pt;}
.y2b_c00315{bottom:421.637980pt;}
.y2a_c00315{bottom:421.886400pt;}
.y29_c00315{bottom:422.459160pt;}
.y28_c00315{bottom:422.610340pt;}
.y27_c00315{bottom:422.873060pt;}
.y26_c00315{bottom:434.543540pt;}
.y25_c00315{bottom:434.795973pt;}
.y24_c00315{bottom:435.726167pt;}
.y23_c00315{bottom:436.500793pt;}
.y22_c00315{bottom:436.968540pt;}
.y21_c00315{bottom:437.308820pt;}
.y20_c00315{bottom:437.993600pt;}
.y1f_c00315{bottom:448.823007pt;}
.y1e_c00315{bottom:449.276387pt;}
.y1d_c00315{bottom:449.493227pt;}
.y1c_c00315{bottom:449.766147pt;}
.y1b_c00315{bottom:450.659647pt;}
.y1a_c00315{bottom:451.037447pt;}
.y19_c00315{bottom:451.902007pt;}
.y18_c00315{bottom:452.240527pt;}
.y17_c00315{bottom:452.394387pt;}
.y16_c00315{bottom:463.965407pt;}
.y15_c00315{bottom:464.290207pt;}
.y14_c00315{bottom:464.571340pt;}
.y13_c00315{bottom:465.208980pt;}
.y12_c00315{bottom:465.455400pt;}
.y11_c00315{bottom:466.361180pt;}
.y10_c00315{bottom:467.122120pt;}
.yf_c00315{bottom:467.518373pt;}
.ye_c00315{bottom:481.088600pt;}
.yd_c00315{bottom:481.088827pt;}
.yb_c00315{bottom:481.089067pt;}
.ya_c00315{bottom:481.089293pt;}
.yc_c00315{bottom:481.089340pt;}
.y9_c00315{bottom:481.089767pt;}
.y8_c00315{bottom:493.943287pt;}
.y7_c00315{bottom:494.605607pt;}
.y6_c00315{bottom:495.837427pt;}
.y5_c00315{bottom:496.078867pt;}
.y4_c00315{bottom:496.546967pt;}
.y3_c00315{bottom:497.342587pt;}
.y2_c00315{bottom:497.522667pt;}
.y1_c00315{bottom:506.165333pt;}
.hb_c00315{height:49.472231pt;}
.h11_c00315{height:52.270430pt;}
.h9_c00315{height:52.272546pt;}
.h10_c00315{height:54.137231pt;}
.hf_c00315{height:55.070631pt;}
.h7_c00315{height:55.072861pt;}
.hc_c00315{height:56.004032pt;}
.ha_c00315{height:56.006300pt;}
.hd_c00315{height:56.937432pt;}
.h8_c00315{height:56.939738pt;}
.h12_c00315{height:57.870833pt;}
.h6_c00315{height:57.873176pt;}
.h14_c00315{height:58.804233pt;}
.he_c00315{height:59.737634pt;}
.h3_c00315{height:59.740053pt;}
.h15_c00315{height:60.671035pt;}
.h13_c00315{height:61.604435pt;}
.h4_c00315{height:62.540368pt;}
.h5_c00315{height:63.473806pt;}
.h2_c00315{height:71.866667pt;}
.h0_c00315{height:545.040000pt;}
.h1_c00315{height:545.333333pt;}
.w0_c00315{width:319.200000pt;}
.w1_c00315{width:319.333333pt;}
.x0_c00315{left:0.000000pt;}
.x7b_c00315{left:27.714443pt;}
.x6c_c00315{left:29.421067pt;}
.x59_c00315{left:30.785509pt;}
.x56_c00315{left:31.818421pt;}
.x40_c00315{left:32.961513pt;}
.x31_c00315{left:34.382327pt;}
.x21_c00315{left:35.608240pt;}
.x2_c00315{left:36.798667pt;}
.x5e_c00315{left:40.584560pt;}
.x14_c00315{left:46.397747pt;}
.x70_c00315{left:47.844357pt;}
.x3_c00315{left:48.804000pt;}
.x7c_c00315{left:51.476064pt;}
.x22_c00315{left:53.122907pt;}
.x41_c00315{left:56.958847pt;}
.x80_c00315{left:60.056165pt;}
.xd_c00315{left:61.273600pt;}
.x23_c00315{left:63.201573pt;}
.x78_c00315{left:64.473141pt;}
.x7d_c00315{left:67.309589pt;}
.x15_c00315{left:68.965747pt;}
.x42_c00315{left:70.164180pt;}
.x46_c00315{left:71.150987pt;}
.x57_c00315{left:73.299600pt;}
.x1c_c00315{left:76.383233pt;}
.x9_c00315{left:78.964373pt;}
.x3d_c00315{left:80.498653pt;}
.x47_c00315{left:82.427487pt;}
.x2c_c00315{left:84.091540pt;}
.x7f_c00315{left:85.920272pt;}
.x4d_c00315{left:89.218565pt;}
.x32_c00315{left:92.237447pt;}
.x6d_c00315{left:93.210213pt;}
.x1d_c00315{left:96.401300pt;}
.x62_c00315{left:97.936949pt;}
.x6a_c00315{left:99.974336pt;}
.x4_c00315{left:101.845333pt;}
.x48_c00315{left:103.307093pt;}
.x5a_c00315{left:104.233547pt;}
.xe_c00315{left:108.802213pt;}
.x5f_c00315{left:111.404427pt;}
.x71_c00315{left:113.906224pt;}
.x4e_c00315{left:117.014901pt;}
.x24_c00315{left:117.946907pt;}
.x28_c00315{left:119.526580pt;}
.x38_c00315{left:120.810687pt;}
.x1e_c00315{left:123.939147pt;}
.x43_c00315{left:124.877513pt;}
.x16_c00315{left:126.603080pt;}
.x63_c00315{left:131.774635pt;}
.x5_c00315{left:133.052000pt;}
.x76_c00315{left:133.983685pt;}
.x35_c00315{left:136.231413pt;}
.x7e_c00315{left:137.642421pt;}
.x65_c00315{left:140.232256pt;}
.x4f_c00315{left:141.267189pt;}
.x39_c00315{left:142.659007pt;}
.x81_c00315{left:143.602491pt;}
.x2d_c00315{left:145.055467pt;}
.x33_c00315{left:146.333960pt;}
.x53_c00315{left:147.969936pt;}
.x6_c00315{left:149.148000pt;}
.x17_c00315{left:151.789747pt;}
.x1_c00315{left:153.360000pt;}
.x66_c00315{left:154.633077pt;}
.x49_c00315{left:157.609333pt;}
.x3a_c00315{left:160.924620pt;}
.xf_c00315{left:165.453373pt;}
.x60_c00315{left:166.600464pt;}
.x1f_c00315{left:169.535120pt;}
.x4a_c00315{left:172.208000pt;}
.x72_c00315{left:173.872171pt;}
.x5b_c00315{left:175.359093pt;}
.x34_c00315{left:176.748167pt;}
.x61_c00315{left:179.881851pt;}
.x10_c00315{left:180.814467pt;}
.x67_c00315{left:181.832101pt;}
.xa_c00315{left:182.895753pt;}
.x6b_c00315{left:185.359573pt;}
.x5c_c00315{left:186.807595pt;}
.x25_c00315{left:187.797573pt;}
.x79_c00315{left:189.004971pt;}
.x29_c00315{left:190.814620pt;}
.x6e_c00315{left:194.331781pt;}
.xb_c00315{left:195.377220pt;}
.x50_c00315{left:198.671877pt;}
.x68_c00315{left:200.255445pt;}
.x82_c00315{left:206.014917pt;}
.x4c_c00315{left:208.012976pt;}
.x54_c00315{left:209.208603pt;}
.x18_c00315{left:211.356413pt;}
.x6f_c00315{left:213.472651pt;}
.x36_c00315{left:214.893053pt;}
.xc_c00315{left:218.419733pt;}
.x73_c00315{left:219.479627pt;}
.x11_c00315{left:220.656533pt;}
.x2e_c00315{left:222.341320pt;}
.x20_c00315{left:224.257480pt;}
.x2a_c00315{left:226.098560pt;}
.x44_c00315{left:227.866847pt;}
.x19_c00315{left:229.551080pt;}
.x7_c00315{left:231.269333pt;}
.x2f_c00315{left:232.406193pt;}
.x3e_c00315{left:235.093940pt;}
.x12_c00315{left:238.242940pt;}
.x64_c00315{left:240.050939pt;}
.x3b_c00315{left:241.557820pt;}
.x7a_c00315{left:242.516331pt;}
.x1a_c00315{left:244.007080pt;}
.x26_c00315{left:247.794907pt;}
.x74_c00315{left:251.883243pt;}
.x37_c00315{left:253.030580pt;}
.x58_c00315{left:256.903659pt;}
.x13_c00315{left:258.562640pt;}
.x77_c00315{left:259.989451pt;}
.x3c_c00315{left:261.479453pt;}
.x51_c00315{left:263.721979pt;}
.x5d_c00315{left:265.263280pt;}
.x2b_c00315{left:266.902407pt;}
.x75_c00315{left:268.961701pt;}
.x4b_c00315{left:270.837333pt;}
.x55_c00315{left:271.817936pt;}
.x45_c00315{left:273.038847pt;}
.x1b_c00315{left:274.232413pt;}
.x8_c00315{left:275.424000pt;}
.x69_c00315{left:276.860693pt;}
.x52_c00315{left:277.864821pt;}
.x3f_c00315{left:280.975320pt;}
.x30_c00315{left:284.675833pt;}
.x27_c00315{left:286.706907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00316 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00316 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00316 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00316 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00316.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00316;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00316{transform:matrix(0.089484,-0.001700,0.004749,0.249955,0,0);-ms-transform:matrix(0.089484,-0.001700,0.004749,0.249955,0,0);-webkit-transform:matrix(0.089484,-0.001700,0.004749,0.249955,0,0);}
.m4_c00316{transform:matrix(0.120313,-0.002286,0.004749,0.249955,0,0);-ms-transform:matrix(0.120313,-0.002286,0.004749,0.249955,0,0);-webkit-transform:matrix(0.120313,-0.002286,0.004749,0.249955,0,0);}
.me2_c00316{transform:matrix(0.127152,-0.002416,0.004749,0.249955,0,0);-ms-transform:matrix(0.127152,-0.002416,0.004749,0.249955,0,0);-webkit-transform:matrix(0.127152,-0.002416,0.004749,0.249955,0,0);}
.m7_c00316{transform:matrix(0.135301,-0.002571,0.004749,0.249955,0,0);-ms-transform:matrix(0.135301,-0.002571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.135301,-0.002571,0.004749,0.249955,0,0);}
.m6_c00316{transform:matrix(0.135341,-0.002571,0.004749,0.249955,0,0);-ms-transform:matrix(0.135341,-0.002571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.135341,-0.002571,0.004749,0.249955,0,0);}
.m2_c00316{transform:matrix(0.135760,-0.002579,0.004749,0.249955,0,0);-ms-transform:matrix(0.135760,-0.002579,0.004749,0.249955,0,0);-webkit-transform:matrix(0.135760,-0.002579,0.004749,0.249955,0,0);}
.me9_c00316{transform:matrix(0.137485,-0.002612,0.004749,0.249955,0,0);-ms-transform:matrix(0.137485,-0.002612,0.004749,0.249955,0,0);-webkit-transform:matrix(0.137485,-0.002612,0.004749,0.249955,0,0);}
.me5_c00316{transform:matrix(0.138685,-0.002635,0.004749,0.249955,0,0);-ms-transform:matrix(0.138685,-0.002635,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138685,-0.002635,0.004749,0.249955,0,0);}
.mcf_c00316{transform:matrix(0.139440,-0.002649,0.004749,0.249955,0,0);-ms-transform:matrix(0.139440,-0.002649,0.004749,0.249955,0,0);-webkit-transform:matrix(0.139440,-0.002649,0.004749,0.249955,0,0);}
.m2f_c00316{transform:matrix(0.139530,-0.002651,0.004749,0.249955,0,0);-ms-transform:matrix(0.139530,-0.002651,0.004749,0.249955,0,0);-webkit-transform:matrix(0.139530,-0.002651,0.004749,0.249955,0,0);}
.m5_c00316{transform:matrix(0.140035,-0.002661,0.004749,0.249955,0,0);-ms-transform:matrix(0.140035,-0.002661,0.004749,0.249955,0,0);-webkit-transform:matrix(0.140035,-0.002661,0.004749,0.249955,0,0);}
.m28_c00316{transform:matrix(0.142614,-0.002710,0.004749,0.249955,0,0);-ms-transform:matrix(0.142614,-0.002710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.142614,-0.002710,0.004749,0.249955,0,0);}
.m14_c00316{transform:matrix(0.143099,-0.002719,0.004749,0.249955,0,0);-ms-transform:matrix(0.143099,-0.002719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143099,-0.002719,0.004749,0.249955,0,0);}
.mcb_c00316{transform:matrix(0.143924,-0.002735,0.004749,0.249955,0,0);-ms-transform:matrix(0.143924,-0.002735,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143924,-0.002735,0.004749,0.249955,0,0);}
.mf4_c00316{transform:matrix(0.149658,-0.002844,0.004749,0.249955,0,0);-ms-transform:matrix(0.149658,-0.002844,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149658,-0.002844,0.004749,0.249955,0,0);}
.mcc_c00316{transform:matrix(0.150168,-0.002853,0.004749,0.249955,0,0);-ms-transform:matrix(0.150168,-0.002853,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150168,-0.002853,0.004749,0.249955,0,0);}
.m18_c00316{transform:matrix(0.150838,-0.002866,0.004749,0.249955,0,0);-ms-transform:matrix(0.150838,-0.002866,0.004749,0.249955,0,0);-webkit-transform:matrix(0.150838,-0.002866,0.004749,0.249955,0,0);}
.me4_c00316{transform:matrix(0.153337,-0.002913,0.004749,0.249955,0,0);-ms-transform:matrix(0.153337,-0.002913,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153337,-0.002913,0.004749,0.249955,0,0);}
.m58_c00316{transform:matrix(0.153457,-0.002916,0.004749,0.249955,0,0);-ms-transform:matrix(0.153457,-0.002916,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153457,-0.002916,0.004749,0.249955,0,0);}
.m90_c00316{transform:matrix(0.154707,-0.002939,0.004749,0.249955,0,0);-ms-transform:matrix(0.154707,-0.002939,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154707,-0.002939,0.004749,0.249955,0,0);}
.m1_c00316{transform:matrix(0.154777,-0.002941,0.004749,0.249955,0,0);-ms-transform:matrix(0.154777,-0.002941,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154777,-0.002941,0.004749,0.249955,0,0);}
.mb2_c00316{transform:matrix(0.156862,-0.002980,0.004749,0.249955,0,0);-ms-transform:matrix(0.156862,-0.002980,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156862,-0.002980,0.004749,0.249955,0,0);}
.m79_c00316{transform:matrix(0.158571,-0.003013,0.004749,0.249955,0,0);-ms-transform:matrix(0.158571,-0.003013,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158571,-0.003013,0.004749,0.249955,0,0);}
.m3a_c00316{transform:matrix(0.158931,-0.003020,0.004749,0.249955,0,0);-ms-transform:matrix(0.158931,-0.003020,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158931,-0.003020,0.004749,0.249955,0,0);}
.m40_c00316{transform:matrix(0.159306,-0.003027,0.004749,0.249955,0,0);-ms-transform:matrix(0.159306,-0.003027,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159306,-0.003027,0.004749,0.249955,0,0);}
.mea_c00316{transform:matrix(0.159451,-0.003030,0.004749,0.249955,0,0);-ms-transform:matrix(0.159451,-0.003030,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159451,-0.003030,0.004749,0.249955,0,0);}
.me8_c00316{transform:matrix(0.159951,-0.003039,0.004749,0.249955,0,0);-ms-transform:matrix(0.159951,-0.003039,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159951,-0.003039,0.004749,0.249955,0,0);}
.m72_c00316{transform:matrix(0.160171,-0.003043,0.004749,0.249955,0,0);-ms-transform:matrix(0.160171,-0.003043,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160171,-0.003043,0.004749,0.249955,0,0);}
.m35_c00316{transform:matrix(0.160201,-0.003044,0.004749,0.249955,0,0);-ms-transform:matrix(0.160201,-0.003044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160201,-0.003044,0.004749,0.249955,0,0);}
.m16_c00316{transform:matrix(0.160271,-0.003045,0.004749,0.249955,0,0);-ms-transform:matrix(0.160271,-0.003045,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160271,-0.003045,0.004749,0.249955,0,0);}
.mdf_c00316{transform:matrix(0.160436,-0.003048,0.004749,0.249955,0,0);-ms-transform:matrix(0.160436,-0.003048,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160436,-0.003048,0.004749,0.249955,0,0);}
.m45_c00316{transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);-ms-transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160741,-0.003054,0.004749,0.249955,0,0);}
.m6e_c00316{transform:matrix(0.160846,-0.003056,0.004749,0.249955,0,0);-ms-transform:matrix(0.160846,-0.003056,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160846,-0.003056,0.004749,0.249955,0,0);}
.mb6_c00316{transform:matrix(0.161311,-0.003065,0.004749,0.249955,0,0);-ms-transform:matrix(0.161311,-0.003065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161311,-0.003065,0.004749,0.249955,0,0);}
.maa_c00316{transform:matrix(0.161351,-0.003066,0.004749,0.249955,0,0);-ms-transform:matrix(0.161351,-0.003066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161351,-0.003066,0.004749,0.249955,0,0);}
.m5e_c00316{transform:matrix(0.161601,-0.003070,0.004749,0.249955,0,0);-ms-transform:matrix(0.161601,-0.003070,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161601,-0.003070,0.004749,0.249955,0,0);}
.mb9_c00316{transform:matrix(0.161986,-0.003078,0.004749,0.249955,0,0);-ms-transform:matrix(0.161986,-0.003078,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161986,-0.003078,0.004749,0.249955,0,0);}
.m17_c00316{transform:matrix(0.162006,-0.003078,0.004749,0.249955,0,0);-ms-transform:matrix(0.162006,-0.003078,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162006,-0.003078,0.004749,0.249955,0,0);}
.md7_c00316{transform:matrix(0.162956,-0.003096,0.004749,0.249955,0,0);-ms-transform:matrix(0.162956,-0.003096,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162956,-0.003096,0.004749,0.249955,0,0);}
.mc9_c00316{transform:matrix(0.163585,-0.003108,0.004749,0.249955,0,0);-ms-transform:matrix(0.163585,-0.003108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163585,-0.003108,0.004749,0.249955,0,0);}
.maf_c00316{transform:matrix(0.164215,-0.003120,0.004749,0.249955,0,0);-ms-transform:matrix(0.164215,-0.003120,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164215,-0.003120,0.004749,0.249955,0,0);}
.mc6_c00316{transform:matrix(0.165985,-0.003154,0.004749,0.249955,0,0);-ms-transform:matrix(0.165985,-0.003154,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165985,-0.003154,0.004749,0.249955,0,0);}
.m3f_c00316{transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);-ms-transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166040,-0.003155,0.004749,0.249955,0,0);}
.m1a_c00316{transform:matrix(0.166295,-0.003160,0.004749,0.249955,0,0);-ms-transform:matrix(0.166295,-0.003160,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166295,-0.003160,0.004749,0.249955,0,0);}
.m1f_c00316{transform:matrix(0.166400,-0.003162,0.004749,0.249955,0,0);-ms-transform:matrix(0.166400,-0.003162,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166400,-0.003162,0.004749,0.249955,0,0);}
.mdd_c00316{transform:matrix(0.166570,-0.003165,0.004749,0.249955,0,0);-ms-transform:matrix(0.166570,-0.003165,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166570,-0.003165,0.004749,0.249955,0,0);}
.m59_c00316{transform:matrix(0.167020,-0.003173,0.004749,0.249955,0,0);-ms-transform:matrix(0.167020,-0.003173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167020,-0.003173,0.004749,0.249955,0,0);}
.m7a_c00316{transform:matrix(0.167490,-0.003182,0.004749,0.249955,0,0);-ms-transform:matrix(0.167490,-0.003182,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167490,-0.003182,0.004749,0.249955,0,0);}
.me3_c00316{transform:matrix(0.167865,-0.003189,0.004749,0.249955,0,0);-ms-transform:matrix(0.167865,-0.003189,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167865,-0.003189,0.004749,0.249955,0,0);}
.md6_c00316{transform:matrix(0.168710,-0.003205,0.004749,0.249955,0,0);-ms-transform:matrix(0.168710,-0.003205,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168710,-0.003205,0.004749,0.249955,0,0);}
.m5b_c00316{transform:matrix(0.169159,-0.003214,0.004749,0.249955,0,0);-ms-transform:matrix(0.169159,-0.003214,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169159,-0.003214,0.004749,0.249955,0,0);}
.m5f_c00316{transform:matrix(0.169174,-0.003214,0.004749,0.249955,0,0);-ms-transform:matrix(0.169174,-0.003214,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169174,-0.003214,0.004749,0.249955,0,0);}
.m64_c00316{transform:matrix(0.169454,-0.003220,0.004749,0.249955,0,0);-ms-transform:matrix(0.169454,-0.003220,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169454,-0.003220,0.004749,0.249955,0,0);}
.me_c00316{transform:matrix(0.169754,-0.003225,0.004749,0.249955,0,0);-ms-transform:matrix(0.169754,-0.003225,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169754,-0.003225,0.004749,0.249955,0,0);}
.mbe_c00316{transform:matrix(0.170079,-0.003232,0.004749,0.249955,0,0);-ms-transform:matrix(0.170079,-0.003232,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170079,-0.003232,0.004749,0.249955,0,0);}
.m82_c00316{transform:matrix(0.170109,-0.003232,0.004749,0.249955,0,0);-ms-transform:matrix(0.170109,-0.003232,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170109,-0.003232,0.004749,0.249955,0,0);}
.me6_c00316{transform:matrix(0.170134,-0.003233,0.004749,0.249955,0,0);-ms-transform:matrix(0.170134,-0.003233,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170134,-0.003233,0.004749,0.249955,0,0);}
.mdc_c00316{transform:matrix(0.170459,-0.003239,0.004749,0.249955,0,0);-ms-transform:matrix(0.170459,-0.003239,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170459,-0.003239,0.004749,0.249955,0,0);}
.mb3_c00316{transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);-ms-transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170684,-0.003243,0.004749,0.249955,0,0);}
.mfa_c00316{transform:matrix(0.170749,-0.003244,0.004749,0.249955,0,0);-ms-transform:matrix(0.170749,-0.003244,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170749,-0.003244,0.004749,0.249955,0,0);}
.me0_c00316{transform:matrix(0.171404,-0.003257,0.004749,0.249955,0,0);-ms-transform:matrix(0.171404,-0.003257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171404,-0.003257,0.004749,0.249955,0,0);}
.mda_c00316{transform:matrix(0.171504,-0.003259,0.004749,0.249955,0,0);-ms-transform:matrix(0.171504,-0.003259,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171504,-0.003259,0.004749,0.249955,0,0);}
.m93_c00316{transform:matrix(0.171569,-0.003260,0.004749,0.249955,0,0);-ms-transform:matrix(0.171569,-0.003260,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171569,-0.003260,0.004749,0.249955,0,0);}
.m53_c00316{transform:matrix(0.171994,-0.003268,0.004749,0.249955,0,0);-ms-transform:matrix(0.171994,-0.003268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171994,-0.003268,0.004749,0.249955,0,0);}
.ma_c00316{transform:matrix(0.172139,-0.003271,0.004749,0.249955,0,0);-ms-transform:matrix(0.172139,-0.003271,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172139,-0.003271,0.004749,0.249955,0,0);}
.m7f_c00316{transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);-ms-transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);}
.mb5_c00316{transform:matrix(0.173064,-0.003288,0.004749,0.249955,0,0);-ms-transform:matrix(0.173064,-0.003288,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173064,-0.003288,0.004749,0.249955,0,0);}
.mb1_c00316{transform:matrix(0.173749,-0.003301,0.004749,0.249955,0,0);-ms-transform:matrix(0.173749,-0.003301,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173749,-0.003301,0.004749,0.249955,0,0);}
.m8e_c00316{transform:matrix(0.173769,-0.003302,0.004749,0.249955,0,0);-ms-transform:matrix(0.173769,-0.003302,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173769,-0.003302,0.004749,0.249955,0,0);}
.mbd_c00316{transform:matrix(0.173919,-0.003304,0.004749,0.249955,0,0);-ms-transform:matrix(0.173919,-0.003304,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173919,-0.003304,0.004749,0.249955,0,0);}
.me7_c00316{transform:matrix(0.173954,-0.003305,0.004749,0.249955,0,0);-ms-transform:matrix(0.173954,-0.003305,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173954,-0.003305,0.004749,0.249955,0,0);}
.m32_c00316{transform:matrix(0.174139,-0.003309,0.004749,0.249955,0,0);-ms-transform:matrix(0.174139,-0.003309,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174139,-0.003309,0.004749,0.249955,0,0);}
.m6b_c00316{transform:matrix(0.174169,-0.003309,0.004749,0.249955,0,0);-ms-transform:matrix(0.174169,-0.003309,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174169,-0.003309,0.004749,0.249955,0,0);}
.ma5_c00316{transform:matrix(0.174898,-0.003323,0.004749,0.249955,0,0);-ms-transform:matrix(0.174898,-0.003323,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174898,-0.003323,0.004749,0.249955,0,0);}
.m8c_c00316{transform:matrix(0.175123,-0.003327,0.004749,0.249955,0,0);-ms-transform:matrix(0.175123,-0.003327,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175123,-0.003327,0.004749,0.249955,0,0);}
.m21_c00316{transform:matrix(0.175633,-0.003337,0.004749,0.249955,0,0);-ms-transform:matrix(0.175633,-0.003337,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175633,-0.003337,0.004749,0.249955,0,0);}
.m15_c00316{transform:matrix(0.175823,-0.003341,0.004749,0.249955,0,0);-ms-transform:matrix(0.175823,-0.003341,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175823,-0.003341,0.004749,0.249955,0,0);}
.m98_c00316{transform:matrix(0.176348,-0.003351,0.004749,0.249955,0,0);-ms-transform:matrix(0.176348,-0.003351,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176348,-0.003351,0.004749,0.249955,0,0);}
.m3e_c00316{transform:matrix(0.176498,-0.003353,0.004749,0.249955,0,0);-ms-transform:matrix(0.176498,-0.003353,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176498,-0.003353,0.004749,0.249955,0,0);}
.ma8_c00316{transform:matrix(0.176618,-0.003356,0.004749,0.249955,0,0);-ms-transform:matrix(0.176618,-0.003356,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176618,-0.003356,0.004749,0.249955,0,0);}
.m96_c00316{transform:matrix(0.178573,-0.003393,0.004749,0.249955,0,0);-ms-transform:matrix(0.178573,-0.003393,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178573,-0.003393,0.004749,0.249955,0,0);}
.m76_c00316{transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);-ms-transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178938,-0.003400,0.004749,0.249955,0,0);}
.ma3_c00316{transform:matrix(0.179888,-0.003418,0.004749,0.249955,0,0);-ms-transform:matrix(0.179888,-0.003418,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179888,-0.003418,0.004749,0.249955,0,0);}
.mc4_c00316{transform:matrix(0.180172,-0.003423,0.004749,0.249955,0,0);-ms-transform:matrix(0.180172,-0.003423,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180172,-0.003423,0.004749,0.249955,0,0);}
.m22_c00316{transform:matrix(0.181042,-0.003440,0.004749,0.249955,0,0);-ms-transform:matrix(0.181042,-0.003440,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181042,-0.003440,0.004749,0.249955,0,0);}
.m9c_c00316{transform:matrix(0.181152,-0.003442,0.004749,0.249955,0,0);-ms-transform:matrix(0.181152,-0.003442,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181152,-0.003442,0.004749,0.249955,0,0);}
.m43_c00316{transform:matrix(0.181437,-0.003447,0.004749,0.249955,0,0);-ms-transform:matrix(0.181437,-0.003447,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181437,-0.003447,0.004749,0.249955,0,0);}
.m8a_c00316{transform:matrix(0.181682,-0.003452,0.004749,0.249955,0,0);-ms-transform:matrix(0.181682,-0.003452,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181682,-0.003452,0.004749,0.249955,0,0);}
.m2b_c00316{transform:matrix(0.181727,-0.003453,0.004749,0.249955,0,0);-ms-transform:matrix(0.181727,-0.003453,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181727,-0.003453,0.004749,0.249955,0,0);}
.m3c_c00316{transform:matrix(0.181882,-0.003456,0.004749,0.249955,0,0);-ms-transform:matrix(0.181882,-0.003456,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181882,-0.003456,0.004749,0.249955,0,0);}
.md8_c00316{transform:matrix(0.181907,-0.003456,0.004749,0.249955,0,0);-ms-transform:matrix(0.181907,-0.003456,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181907,-0.003456,0.004749,0.249955,0,0);}
.m19_c00316{transform:matrix(0.182347,-0.003465,0.004749,0.249955,0,0);-ms-transform:matrix(0.182347,-0.003465,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182347,-0.003465,0.004749,0.249955,0,0);}
.m7e_c00316{transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-ms-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183207,-0.003481,0.004749,0.249955,0,0);}
.m5d_c00316{transform:matrix(0.184057,-0.003497,0.004749,0.249955,0,0);-ms-transform:matrix(0.184057,-0.003497,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184057,-0.003497,0.004749,0.249955,0,0);}
.m5c_c00316{transform:matrix(0.184167,-0.003499,0.004749,0.249955,0,0);-ms-transform:matrix(0.184167,-0.003499,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184167,-0.003499,0.004749,0.249955,0,0);}
.m11_c00316{transform:matrix(0.184542,-0.003506,0.004749,0.249955,0,0);-ms-transform:matrix(0.184542,-0.003506,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184542,-0.003506,0.004749,0.249955,0,0);}
.m52_c00316{transform:matrix(0.184717,-0.003510,0.004749,0.249955,0,0);-ms-transform:matrix(0.184717,-0.003510,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184717,-0.003510,0.004749,0.249955,0,0);}
.m25_c00316{transform:matrix(0.185292,-0.003521,0.004749,0.249955,0,0);-ms-transform:matrix(0.185292,-0.003521,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185292,-0.003521,0.004749,0.249955,0,0);}
.m9f_c00316{transform:matrix(0.185876,-0.003532,0.004749,0.249955,0,0);-ms-transform:matrix(0.185876,-0.003532,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185876,-0.003532,0.004749,0.249955,0,0);}
.ma7_c00316{transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);-ms-transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185931,-0.003533,0.004749,0.249955,0,0);}
.m99_c00316{transform:matrix(0.185966,-0.003533,0.004749,0.249955,0,0);-ms-transform:matrix(0.185966,-0.003533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185966,-0.003533,0.004749,0.249955,0,0);}
.m4e_c00316{transform:matrix(0.186016,-0.003534,0.004749,0.249955,0,0);-ms-transform:matrix(0.186016,-0.003534,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186016,-0.003534,0.004749,0.249955,0,0);}
.m4d_c00316{transform:matrix(0.186381,-0.003541,0.004749,0.249955,0,0);-ms-transform:matrix(0.186381,-0.003541,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186381,-0.003541,0.004749,0.249955,0,0);}
.mce_c00316{transform:matrix(0.186421,-0.003542,0.004749,0.249955,0,0);-ms-transform:matrix(0.186421,-0.003542,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186421,-0.003542,0.004749,0.249955,0,0);}
.m1d_c00316{transform:matrix(0.186526,-0.003544,0.004749,0.249955,0,0);-ms-transform:matrix(0.186526,-0.003544,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186526,-0.003544,0.004749,0.249955,0,0);}
.me1_c00316{transform:matrix(0.186606,-0.003546,0.004749,0.249955,0,0);-ms-transform:matrix(0.186606,-0.003546,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186606,-0.003546,0.004749,0.249955,0,0);}
.md2_c00316{transform:matrix(0.186676,-0.003547,0.004749,0.249955,0,0);-ms-transform:matrix(0.186676,-0.003547,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186676,-0.003547,0.004749,0.249955,0,0);}
.m6c_c00316{transform:matrix(0.186746,-0.003548,0.004749,0.249955,0,0);-ms-transform:matrix(0.186746,-0.003548,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186746,-0.003548,0.004749,0.249955,0,0);}
.mdb_c00316{transform:matrix(0.186921,-0.003552,0.004749,0.249955,0,0);-ms-transform:matrix(0.186921,-0.003552,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186921,-0.003552,0.004749,0.249955,0,0);}
.m69_c00316{transform:matrix(0.186941,-0.003552,0.004749,0.249955,0,0);-ms-transform:matrix(0.186941,-0.003552,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186941,-0.003552,0.004749,0.249955,0,0);}
.m51_c00316{transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);-ms-transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187406,-0.003561,0.004749,0.249955,0,0);}
.mb_c00316{transform:matrix(0.187811,-0.003568,0.004749,0.249955,0,0);-ms-transform:matrix(0.187811,-0.003568,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187811,-0.003568,0.004749,0.249955,0,0);}
.m9d_c00316{transform:matrix(0.187881,-0.003570,0.004749,0.249955,0,0);-ms-transform:matrix(0.187881,-0.003570,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187881,-0.003570,0.004749,0.249955,0,0);}
.md5_c00316{transform:matrix(0.188716,-0.003586,0.004749,0.249955,0,0);-ms-transform:matrix(0.188716,-0.003586,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188716,-0.003586,0.004749,0.249955,0,0);}
.mfb_c00316{transform:matrix(0.188971,-0.003590,0.004749,0.249955,0,0);-ms-transform:matrix(0.188971,-0.003590,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188971,-0.003590,0.004749,0.249955,0,0);}
.m4f_c00316{transform:matrix(0.189186,-0.003595,0.004749,0.249955,0,0);-ms-transform:matrix(0.189186,-0.003595,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189186,-0.003595,0.004749,0.249955,0,0);}
.m89_c00316{transform:matrix(0.189306,-0.003597,0.004749,0.249955,0,0);-ms-transform:matrix(0.189306,-0.003597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189306,-0.003597,0.004749,0.249955,0,0);}
.m10_c00316{transform:matrix(0.189381,-0.003598,0.004749,0.249955,0,0);-ms-transform:matrix(0.189381,-0.003598,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189381,-0.003598,0.004749,0.249955,0,0);}
.ma6_c00316{transform:matrix(0.189826,-0.003607,0.004749,0.249955,0,0);-ms-transform:matrix(0.189826,-0.003607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189826,-0.003607,0.004749,0.249955,0,0);}
.mf5_c00316{transform:matrix(0.190166,-0.003613,0.004749,0.249955,0,0);-ms-transform:matrix(0.190166,-0.003613,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190166,-0.003613,0.004749,0.249955,0,0);}
.m31_c00316{transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);-ms-transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190221,-0.003614,0.004749,0.249955,0,0);}
.m87_c00316{transform:matrix(0.190251,-0.003615,0.004749,0.249955,0,0);-ms-transform:matrix(0.190251,-0.003615,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190251,-0.003615,0.004749,0.249955,0,0);}
.m33_c00316{transform:matrix(0.190301,-0.003616,0.004749,0.249955,0,0);-ms-transform:matrix(0.190301,-0.003616,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190301,-0.003616,0.004749,0.249955,0,0);}
.m1e_c00316{transform:matrix(0.190546,-0.003620,0.004749,0.249955,0,0);-ms-transform:matrix(0.190546,-0.003620,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190546,-0.003620,0.004749,0.249955,0,0);}
.ma9_c00316{transform:matrix(0.190566,-0.003621,0.004749,0.249955,0,0);-ms-transform:matrix(0.190566,-0.003621,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190566,-0.003621,0.004749,0.249955,0,0);}
.m74_c00316{transform:matrix(0.191041,-0.003630,0.004749,0.249955,0,0);-ms-transform:matrix(0.191041,-0.003630,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191041,-0.003630,0.004749,0.249955,0,0);}
.m8b_c00316{transform:matrix(0.191210,-0.003633,0.004749,0.249955,0,0);-ms-transform:matrix(0.191210,-0.003633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191210,-0.003633,0.004749,0.249955,0,0);}
.m88_c00316{transform:matrix(0.191260,-0.003634,0.004749,0.249955,0,0);-ms-transform:matrix(0.191260,-0.003634,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191260,-0.003634,0.004749,0.249955,0,0);}
.m44_c00316{transform:matrix(0.191335,-0.003635,0.004749,0.249955,0,0);-ms-transform:matrix(0.191335,-0.003635,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191335,-0.003635,0.004749,0.249955,0,0);}
.ma2_c00316{transform:matrix(0.191415,-0.003637,0.004749,0.249955,0,0);-ms-transform:matrix(0.191415,-0.003637,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191415,-0.003637,0.004749,0.249955,0,0);}
.m7b_c00316{transform:matrix(0.191585,-0.003640,0.004749,0.249955,0,0);-ms-transform:matrix(0.191585,-0.003640,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191585,-0.003640,0.004749,0.249955,0,0);}
.m97_c00316{transform:matrix(0.191730,-0.003643,0.004749,0.249955,0,0);-ms-transform:matrix(0.191730,-0.003643,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191730,-0.003643,0.004749,0.249955,0,0);}
.m12_c00316{transform:matrix(0.191785,-0.003644,0.004749,0.249955,0,0);-ms-transform:matrix(0.191785,-0.003644,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191785,-0.003644,0.004749,0.249955,0,0);}
.md9_c00316{transform:matrix(0.191950,-0.003647,0.004749,0.249955,0,0);-ms-transform:matrix(0.191950,-0.003647,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191950,-0.003647,0.004749,0.249955,0,0);}
.m54_c00316{transform:matrix(0.192550,-0.003658,0.004749,0.249955,0,0);-ms-transform:matrix(0.192550,-0.003658,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192550,-0.003658,0.004749,0.249955,0,0);}
.med_c00316{transform:matrix(0.192990,-0.003667,0.004749,0.249955,0,0);-ms-transform:matrix(0.192990,-0.003667,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192990,-0.003667,0.004749,0.249955,0,0);}
.m77_c00316{transform:matrix(0.193125,-0.003669,0.004749,0.249955,0,0);-ms-transform:matrix(0.193125,-0.003669,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193125,-0.003669,0.004749,0.249955,0,0);}
.m78_c00316{transform:matrix(0.193225,-0.003671,0.004749,0.249955,0,0);-ms-transform:matrix(0.193225,-0.003671,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193225,-0.003671,0.004749,0.249955,0,0);}
.m95_c00316{transform:matrix(0.193395,-0.003675,0.004749,0.249955,0,0);-ms-transform:matrix(0.193395,-0.003675,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193395,-0.003675,0.004749,0.249955,0,0);}
.m94_c00316{transform:matrix(0.193595,-0.003678,0.004749,0.249955,0,0);-ms-transform:matrix(0.193595,-0.003678,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193595,-0.003678,0.004749,0.249955,0,0);}
.m73_c00316{transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);-ms-transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193735,-0.003681,0.004749,0.249955,0,0);}
.mf6_c00316{transform:matrix(0.193855,-0.003683,0.004749,0.249955,0,0);-ms-transform:matrix(0.193855,-0.003683,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193855,-0.003683,0.004749,0.249955,0,0);}
.m5a_c00316{transform:matrix(0.194085,-0.003688,0.004749,0.249955,0,0);-ms-transform:matrix(0.194085,-0.003688,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194085,-0.003688,0.004749,0.249955,0,0);}
.mc_c00316{transform:matrix(0.194800,-0.003701,0.004749,0.249955,0,0);-ms-transform:matrix(0.194800,-0.003701,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194800,-0.003701,0.004749,0.249955,0,0);}
.m75_c00316{transform:matrix(0.194805,-0.003701,0.004749,0.249955,0,0);-ms-transform:matrix(0.194805,-0.003701,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194805,-0.003701,0.004749,0.249955,0,0);}
.mae_c00316{transform:matrix(0.195185,-0.003709,0.004749,0.249955,0,0);-ms-transform:matrix(0.195185,-0.003709,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195185,-0.003709,0.004749,0.249955,0,0);}
.m71_c00316{transform:matrix(0.195270,-0.003710,0.004749,0.249955,0,0);-ms-transform:matrix(0.195270,-0.003710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195270,-0.003710,0.004749,0.249955,0,0);}
.m46_c00316{transform:matrix(0.196000,-0.003724,0.004749,0.249955,0,0);-ms-transform:matrix(0.196000,-0.003724,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196000,-0.003724,0.004749,0.249955,0,0);}
.mcd_c00316{transform:matrix(0.196380,-0.003731,0.004749,0.249955,0,0);-ms-transform:matrix(0.196380,-0.003731,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196380,-0.003731,0.004749,0.249955,0,0);}
.md3_c00316{transform:matrix(0.196445,-0.003732,0.004749,0.249955,0,0);-ms-transform:matrix(0.196445,-0.003732,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196445,-0.003732,0.004749,0.249955,0,0);}
.m41_c00316{transform:matrix(0.196734,-0.003738,0.004749,0.249955,0,0);-ms-transform:matrix(0.196734,-0.003738,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196734,-0.003738,0.004749,0.249955,0,0);}
.mbc_c00316{transform:matrix(0.197039,-0.003744,0.004749,0.249955,0,0);-ms-transform:matrix(0.197039,-0.003744,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197039,-0.003744,0.004749,0.249955,0,0);}
.ma0_c00316{transform:matrix(0.197254,-0.003748,0.004749,0.249955,0,0);-ms-transform:matrix(0.197254,-0.003748,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197254,-0.003748,0.004749,0.249955,0,0);}
.m2a_c00316{transform:matrix(0.197349,-0.003750,0.004749,0.249955,0,0);-ms-transform:matrix(0.197349,-0.003750,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197349,-0.003750,0.004749,0.249955,0,0);}
.mc1_c00316{transform:matrix(0.197474,-0.003752,0.004749,0.249955,0,0);-ms-transform:matrix(0.197474,-0.003752,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197474,-0.003752,0.004749,0.249955,0,0);}
.m65_c00316{transform:matrix(0.197689,-0.003756,0.004749,0.249955,0,0);-ms-transform:matrix(0.197689,-0.003756,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197689,-0.003756,0.004749,0.249955,0,0);}
.m63_c00316{transform:matrix(0.198134,-0.003765,0.004749,0.249955,0,0);-ms-transform:matrix(0.198134,-0.003765,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198134,-0.003765,0.004749,0.249955,0,0);}
.m81_c00316{transform:matrix(0.198324,-0.003768,0.004749,0.249955,0,0);-ms-transform:matrix(0.198324,-0.003768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198324,-0.003768,0.004749,0.249955,0,0);}
.m13_c00316{transform:matrix(0.199429,-0.003789,0.004749,0.249955,0,0);-ms-transform:matrix(0.199429,-0.003789,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199429,-0.003789,0.004749,0.249955,0,0);}
.md4_c00316{transform:matrix(0.199659,-0.003794,0.004749,0.249955,0,0);-ms-transform:matrix(0.199659,-0.003794,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199659,-0.003794,0.004749,0.249955,0,0);}
.m2e_c00316{transform:matrix(0.199834,-0.003797,0.004749,0.249955,0,0);-ms-transform:matrix(0.199834,-0.003797,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199834,-0.003797,0.004749,0.249955,0,0);}
.m9e_c00316{transform:matrix(0.199914,-0.003798,0.004749,0.249955,0,0);-ms-transform:matrix(0.199914,-0.003798,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199914,-0.003798,0.004749,0.249955,0,0);}
.ma1_c00316{transform:matrix(0.200294,-0.003806,0.004749,0.249955,0,0);-ms-transform:matrix(0.200294,-0.003806,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200294,-0.003806,0.004749,0.249955,0,0);}
.m6f_c00316{transform:matrix(0.200304,-0.003806,0.004749,0.249955,0,0);-ms-transform:matrix(0.200304,-0.003806,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200304,-0.003806,0.004749,0.249955,0,0);}
.m38_c00316{transform:matrix(0.200419,-0.003808,0.004749,0.249955,0,0);-ms-transform:matrix(0.200419,-0.003808,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200419,-0.003808,0.004749,0.249955,0,0);}
.mba_c00316{transform:matrix(0.200429,-0.003808,0.004749,0.249955,0,0);-ms-transform:matrix(0.200429,-0.003808,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200429,-0.003808,0.004749,0.249955,0,0);}
.m34_c00316{transform:matrix(0.200474,-0.003809,0.004749,0.249955,0,0);-ms-transform:matrix(0.200474,-0.003809,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200474,-0.003809,0.004749,0.249955,0,0);}
.m7d_c00316{transform:matrix(0.200639,-0.003812,0.004749,0.249955,0,0);-ms-transform:matrix(0.200639,-0.003812,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200639,-0.003812,0.004749,0.249955,0,0);}
.m86_c00316{transform:matrix(0.200684,-0.003813,0.004749,0.249955,0,0);-ms-transform:matrix(0.200684,-0.003813,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200684,-0.003813,0.004749,0.249955,0,0);}
.mf2_c00316{transform:matrix(0.200729,-0.003814,0.004749,0.249955,0,0);-ms-transform:matrix(0.200729,-0.003814,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200729,-0.003814,0.004749,0.249955,0,0);}
.mca_c00316{transform:matrix(0.200929,-0.003818,0.004749,0.249955,0,0);-ms-transform:matrix(0.200929,-0.003818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200929,-0.003818,0.004749,0.249955,0,0);}
.m1b_c00316{transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);-ms-transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);}
.m50_c00316{transform:matrix(0.201439,-0.003827,0.004749,0.249955,0,0);-ms-transform:matrix(0.201439,-0.003827,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201439,-0.003827,0.004749,0.249955,0,0);}
.mde_c00316{transform:matrix(0.201979,-0.003838,0.004749,0.249955,0,0);-ms-transform:matrix(0.201979,-0.003838,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201979,-0.003838,0.004749,0.249955,0,0);}
.m61_c00316{transform:matrix(0.202393,-0.003845,0.004749,0.249955,0,0);-ms-transform:matrix(0.202393,-0.003845,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202393,-0.003845,0.004749,0.249955,0,0);}
.m23_c00316{transform:matrix(0.202818,-0.003854,0.004749,0.249955,0,0);-ms-transform:matrix(0.202818,-0.003854,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202818,-0.003854,0.004749,0.249955,0,0);}
.m60_c00316{transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);-ms-transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);}
.mb0_c00316{transform:matrix(0.203063,-0.003858,0.004749,0.249955,0,0);-ms-transform:matrix(0.203063,-0.003858,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203063,-0.003858,0.004749,0.249955,0,0);}
.m83_c00316{transform:matrix(0.204143,-0.003879,0.004749,0.249955,0,0);-ms-transform:matrix(0.204143,-0.003879,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204143,-0.003879,0.004749,0.249955,0,0);}
.m36_c00316{transform:matrix(0.204333,-0.003882,0.004749,0.249955,0,0);-ms-transform:matrix(0.204333,-0.003882,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204333,-0.003882,0.004749,0.249955,0,0);}
.mc7_c00316{transform:matrix(0.204428,-0.003884,0.004749,0.249955,0,0);-ms-transform:matrix(0.204428,-0.003884,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204428,-0.003884,0.004749,0.249955,0,0);}
.mf9_c00316{transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);-ms-transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204883,-0.003893,0.004749,0.249955,0,0);}
.m37_c00316{transform:matrix(0.205028,-0.003896,0.004749,0.249955,0,0);-ms-transform:matrix(0.205028,-0.003896,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205028,-0.003896,0.004749,0.249955,0,0);}
.m39_c00316{transform:matrix(0.205143,-0.003898,0.004749,0.249955,0,0);-ms-transform:matrix(0.205143,-0.003898,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205143,-0.003898,0.004749,0.249955,0,0);}
.mbf_c00316{transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);-ms-transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205178,-0.003898,0.004749,0.249955,0,0);}
.md1_c00316{transform:matrix(0.205188,-0.003899,0.004749,0.249955,0,0);-ms-transform:matrix(0.205188,-0.003899,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205188,-0.003899,0.004749,0.249955,0,0);}
.m2c_c00316{transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);-ms-transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205528,-0.003905,0.004749,0.249955,0,0);}
.m42_c00316{transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);-ms-transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206388,-0.003921,0.004749,0.249955,0,0);}
.m0_c00316{transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);}
.m8f_c00316{transform:matrix(0.208502,-0.003962,0.004749,0.249955,0,0);-ms-transform:matrix(0.208502,-0.003962,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208502,-0.003962,0.004749,0.249955,0,0);}
.m7c_c00316{transform:matrix(0.208952,-0.003970,0.004749,0.249955,0,0);-ms-transform:matrix(0.208952,-0.003970,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208952,-0.003970,0.004749,0.249955,0,0);}
.m8_c00316{transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);-ms-transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208957,-0.003970,0.004749,0.249955,0,0);}
.mc8_c00316{transform:matrix(0.209207,-0.003975,0.004749,0.249955,0,0);-ms-transform:matrix(0.209207,-0.003975,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209207,-0.003975,0.004749,0.249955,0,0);}
.m8d_c00316{transform:matrix(0.209867,-0.003987,0.004749,0.249955,0,0);-ms-transform:matrix(0.209867,-0.003987,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209867,-0.003987,0.004749,0.249955,0,0);}
.m70_c00316{transform:matrix(0.210442,-0.003998,0.004749,0.249955,0,0);-ms-transform:matrix(0.210442,-0.003998,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210442,-0.003998,0.004749,0.249955,0,0);}
.m3d_c00316{transform:matrix(0.210477,-0.003999,0.004749,0.249955,0,0);-ms-transform:matrix(0.210477,-0.003999,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210477,-0.003999,0.004749,0.249955,0,0);}
.m24_c00316{transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-ms-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210767,-0.004005,0.004749,0.249955,0,0);}
.m6a_c00316{transform:matrix(0.210947,-0.004008,0.004749,0.249955,0,0);-ms-transform:matrix(0.210947,-0.004008,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210947,-0.004008,0.004749,0.249955,0,0);}
.m9a_c00316{transform:matrix(0.211027,-0.004010,0.004749,0.249955,0,0);-ms-transform:matrix(0.211027,-0.004010,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211027,-0.004010,0.004749,0.249955,0,0);}
.m80_c00316{transform:matrix(0.211662,-0.004022,0.004749,0.249955,0,0);-ms-transform:matrix(0.211662,-0.004022,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211662,-0.004022,0.004749,0.249955,0,0);}
.m29_c00316{transform:matrix(0.211817,-0.004025,0.004749,0.249955,0,0);-ms-transform:matrix(0.211817,-0.004025,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211817,-0.004025,0.004749,0.249955,0,0);}
.m30_c00316{transform:matrix(0.212067,-0.004029,0.004749,0.249955,0,0);-ms-transform:matrix(0.212067,-0.004029,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212067,-0.004029,0.004749,0.249955,0,0);}
.md_c00316{transform:matrix(0.212957,-0.004046,0.004749,0.249955,0,0);-ms-transform:matrix(0.212957,-0.004046,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212957,-0.004046,0.004749,0.249955,0,0);}
.mf7_c00316{transform:matrix(0.213292,-0.004053,0.004749,0.249955,0,0);-ms-transform:matrix(0.213292,-0.004053,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213292,-0.004053,0.004749,0.249955,0,0);}
.m27_c00316{transform:matrix(0.213626,-0.004059,0.004749,0.249955,0,0);-ms-transform:matrix(0.213626,-0.004059,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213626,-0.004059,0.004749,0.249955,0,0);}
.mec_c00316{transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);-ms-transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);}
.m85_c00316{transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);-ms-transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216811,-0.004119,0.004749,0.249955,0,0);}
.m20_c00316{transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);-ms-transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216901,-0.004121,0.004749,0.249955,0,0);}
.m66_c00316{transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);-ms-transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);}
.mc5_c00316{transform:matrix(0.217866,-0.004139,0.004749,0.249955,0,0);-ms-transform:matrix(0.217866,-0.004139,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217866,-0.004139,0.004749,0.249955,0,0);}
.m92_c00316{transform:matrix(0.218401,-0.004150,0.004749,0.249955,0,0);-ms-transform:matrix(0.218401,-0.004150,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218401,-0.004150,0.004749,0.249955,0,0);}
.mf0_c00316{transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);-ms-transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218521,-0.004152,0.004749,0.249955,0,0);}
.m4c_c00316{transform:matrix(0.218686,-0.004155,0.004749,0.249955,0,0);-ms-transform:matrix(0.218686,-0.004155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218686,-0.004155,0.004749,0.249955,0,0);}
.mf3_c00316{transform:matrix(0.218880,-0.004159,0.004749,0.249955,0,0);-ms-transform:matrix(0.218880,-0.004159,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218880,-0.004159,0.004749,0.249955,0,0);}
.mac_c00316{transform:matrix(0.218960,-0.004160,0.004749,0.249955,0,0);-ms-transform:matrix(0.218960,-0.004160,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218960,-0.004160,0.004749,0.249955,0,0);}
.m62_c00316{transform:matrix(0.219435,-0.004169,0.004749,0.249955,0,0);-ms-transform:matrix(0.219435,-0.004169,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219435,-0.004169,0.004749,0.249955,0,0);}
.meb_c00316{transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);-ms-transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219610,-0.004173,0.004749,0.249955,0,0);}
.m48_c00316{transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);-ms-transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219630,-0.004173,0.004749,0.249955,0,0);}
.m68_c00316{transform:matrix(0.220140,-0.004183,0.004749,0.249955,0,0);-ms-transform:matrix(0.220140,-0.004183,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220140,-0.004183,0.004749,0.249955,0,0);}
.m2d_c00316{transform:matrix(0.220940,-0.004198,0.004749,0.249955,0,0);-ms-transform:matrix(0.220940,-0.004198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220940,-0.004198,0.004749,0.249955,0,0);}
.m1c_c00316{transform:matrix(0.221530,-0.004209,0.004749,0.249955,0,0);-ms-transform:matrix(0.221530,-0.004209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221530,-0.004209,0.004749,0.249955,0,0);}
.mef_c00316{transform:matrix(0.222350,-0.004225,0.004749,0.249955,0,0);-ms-transform:matrix(0.222350,-0.004225,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222350,-0.004225,0.004749,0.249955,0,0);}
.m6d_c00316{transform:matrix(0.222535,-0.004228,0.004749,0.249955,0,0);-ms-transform:matrix(0.222535,-0.004228,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222535,-0.004228,0.004749,0.249955,0,0);}
.m91_c00316{transform:matrix(0.222665,-0.004231,0.004749,0.249955,0,0);-ms-transform:matrix(0.222665,-0.004231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222665,-0.004231,0.004749,0.249955,0,0);}
.m67_c00316{transform:matrix(0.222965,-0.004236,0.004749,0.249955,0,0);-ms-transform:matrix(0.222965,-0.004236,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222965,-0.004236,0.004749,0.249955,0,0);}
.m84_c00316{transform:matrix(0.223380,-0.004244,0.004749,0.249955,0,0);-ms-transform:matrix(0.223380,-0.004244,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223380,-0.004244,0.004749,0.249955,0,0);}
.mbb_c00316{transform:matrix(0.224230,-0.004260,0.004749,0.249955,0,0);-ms-transform:matrix(0.224230,-0.004260,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224230,-0.004260,0.004749,0.249955,0,0);}
.ma4_c00316{transform:matrix(0.224320,-0.004262,0.004749,0.249955,0,0);-ms-transform:matrix(0.224320,-0.004262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224320,-0.004262,0.004749,0.249955,0,0);}
.mf8_c00316{transform:matrix(0.224464,-0.004265,0.004749,0.249955,0,0);-ms-transform:matrix(0.224464,-0.004265,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224464,-0.004265,0.004749,0.249955,0,0);}
.m49_c00316{transform:matrix(0.224519,-0.004266,0.004749,0.249955,0,0);-ms-transform:matrix(0.224519,-0.004266,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224519,-0.004266,0.004749,0.249955,0,0);}
.mc3_c00316{transform:matrix(0.224774,-0.004271,0.004749,0.249955,0,0);-ms-transform:matrix(0.224774,-0.004271,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224774,-0.004271,0.004749,0.249955,0,0);}
.mf1_c00316{transform:matrix(0.225274,-0.004280,0.004749,0.249955,0,0);-ms-transform:matrix(0.225274,-0.004280,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225274,-0.004280,0.004749,0.249955,0,0);}
.m55_c00316{transform:matrix(0.226429,-0.004302,0.004749,0.249955,0,0);-ms-transform:matrix(0.226429,-0.004302,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226429,-0.004302,0.004749,0.249955,0,0);}
.m3b_c00316{transform:matrix(0.226614,-0.004306,0.004749,0.249955,0,0);-ms-transform:matrix(0.226614,-0.004306,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226614,-0.004306,0.004749,0.249955,0,0);}
.mab_c00316{transform:matrix(0.226954,-0.004312,0.004749,0.249955,0,0);-ms-transform:matrix(0.226954,-0.004312,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226954,-0.004312,0.004749,0.249955,0,0);}
.md0_c00316{transform:matrix(0.228804,-0.004347,0.004749,0.249955,0,0);-ms-transform:matrix(0.228804,-0.004347,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228804,-0.004347,0.004749,0.249955,0,0);}
.mad_c00316{transform:matrix(0.229614,-0.004363,0.004749,0.249955,0,0);-ms-transform:matrix(0.229614,-0.004363,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229614,-0.004363,0.004749,0.249955,0,0);}
.m26_c00316{transform:matrix(0.229659,-0.004364,0.004749,0.249955,0,0);-ms-transform:matrix(0.229659,-0.004364,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229659,-0.004364,0.004749,0.249955,0,0);}
.mee_c00316{transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);-ms-transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);}
.mb4_c00316{transform:matrix(0.231393,-0.004396,0.004749,0.249955,0,0);-ms-transform:matrix(0.231393,-0.004396,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231393,-0.004396,0.004749,0.249955,0,0);}
.m4b_c00316{transform:matrix(0.232453,-0.004417,0.004749,0.249955,0,0);-ms-transform:matrix(0.232453,-0.004417,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232453,-0.004417,0.004749,0.249955,0,0);}
.mf_c00316{transform:matrix(0.236357,-0.004491,0.004749,0.249955,0,0);-ms-transform:matrix(0.236357,-0.004491,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236357,-0.004491,0.004749,0.249955,0,0);}
.mb8_c00316{transform:matrix(0.239197,-0.004545,0.004749,0.249955,0,0);-ms-transform:matrix(0.239197,-0.004545,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239197,-0.004545,0.004749,0.249955,0,0);}
.mc0_c00316{transform:matrix(0.239437,-0.004549,0.004749,0.249955,0,0);-ms-transform:matrix(0.239437,-0.004549,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239437,-0.004549,0.004749,0.249955,0,0);}
.m57_c00316{transform:matrix(0.243131,-0.004619,0.004749,0.249955,0,0);-ms-transform:matrix(0.243131,-0.004619,0.004749,0.249955,0,0);-webkit-transform:matrix(0.243131,-0.004619,0.004749,0.249955,0,0);}
.m47_c00316{transform:matrix(0.245201,-0.004659,0.004749,0.249955,0,0);-ms-transform:matrix(0.245201,-0.004659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245201,-0.004659,0.004749,0.249955,0,0);}
.m4a_c00316{transform:matrix(0.255744,-0.004859,0.004749,0.249955,0,0);-ms-transform:matrix(0.255744,-0.004859,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255744,-0.004859,0.004749,0.249955,0,0);}
.mb7_c00316{transform:matrix(0.272236,-0.005172,0.004749,0.249955,0,0);-ms-transform:matrix(0.272236,-0.005172,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272236,-0.005172,0.004749,0.249955,0,0);}
.m9_c00316{transform:matrix(0.292787,-0.005563,0.004749,0.249955,0,0);-ms-transform:matrix(0.292787,-0.005563,0.004749,0.249955,0,0);-webkit-transform:matrix(0.292787,-0.005563,0.004749,0.249955,0,0);}
.m56_c00316{transform:matrix(0.311699,-0.005922,0.004749,0.249955,0,0);-ms-transform:matrix(0.311699,-0.005922,0.004749,0.249955,0,0);-webkit-transform:matrix(0.311699,-0.005922,0.004749,0.249955,0,0);}
.mc2_c00316{transform:matrix(0.383876,-0.007294,0.004749,0.249955,0,0);-ms-transform:matrix(0.383876,-0.007294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.383876,-0.007294,0.004749,0.249955,0,0);}
.m9b_c00316{transform:matrix(0.486917,-0.009251,0.004749,0.249955,0,0);-ms-transform:matrix(0.486917,-0.009251,0.004749,0.249955,0,0);-webkit-transform:matrix(0.486917,-0.009251,0.004749,0.249955,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:0.000000px;}
.fc0_c00316{color:transparent;}
.fs9_c00316{font-size:55.660044px;}
.fs10_c00316{font-size:57.760423px;}
.fsd_c00316{font-size:58.810612px;}
.fs5_c00316{font-size:59.860802px;}
.fs0_c00316{font-size:60.900000px;}
.fsc_c00316{font-size:60.910991px;}
.fs7_c00316{font-size:61.961181px;}
.fs6_c00316{font-size:63.011370px;}
.fs2_c00316{font-size:64.061560px;}
.fsb_c00316{font-size:65.111749px;}
.fs4_c00316{font-size:66.161939px;}
.fsa_c00316{font-size:67.212129px;}
.fs8_c00316{font-size:68.262318px;}
.fs3_c00316{font-size:70.362697px;}
.fse_c00316{font-size:72.463076px;}
.fsf_c00316{font-size:75.613645px;}
.fs1_c00316{font-size:89.266108px;}
.y0_c00316{bottom:0.000000px;}
.y100_c00316{bottom:29.959071px;}
.yff_c00316{bottom:30.348795px;}
.yfe_c00316{bottom:30.659195px;}
.yfd_c00316{bottom:31.463559px;}
.yfc_c00316{bottom:31.640190px;}
.yfb_c00316{bottom:32.581577px;}
.yfa_c00316{bottom:32.770331px;}
.yf9_c00316{bottom:33.424973px;}
.yf8_c00316{bottom:33.655755px;}
.yf1_c00316{bottom:48.540780px;}
.yf2_c00316{bottom:48.541326px;}
.yf0_c00316{bottom:48.541347px;}
.yf4_c00316{bottom:48.541523px;}
.yf3_c00316{bottom:48.541571px;}
.yf6_c00316{bottom:48.541866px;}
.yef_c00316{bottom:48.541880px;}
.yf5_c00316{bottom:48.541952px;}
.yf7_c00316{bottom:48.542559px;}
.yed_c00316{bottom:62.761115px;}
.yec_c00316{bottom:62.761346px;}
.yee_c00316{bottom:62.761449px;}
.ye6_c00316{bottom:62.761853px;}
.yeb_c00316{bottom:62.761904px;}
.ye9_c00316{bottom:62.762042px;}
.ye8_c00316{bottom:62.762219px;}
.yea_c00316{bottom:62.762285px;}
.ye7_c00316{bottom:62.762394px;}
.ydf_c00316{bottom:80.895648px;}
.ye0_c00316{bottom:80.896077px;}
.yde_c00316{bottom:80.896329px;}
.ye1_c00316{bottom:80.896652px;}
.ye5_c00316{bottom:80.897333px;}
.ye2_c00316{bottom:80.897351px;}
.ye4_c00316{bottom:80.897417px;}
.ye3_c00316{bottom:80.897894px;}
.yda_c00316{bottom:98.598906px;}
.yd9_c00316{bottom:98.599079px;}
.yd8_c00316{bottom:98.599311px;}
.ydb_c00316{bottom:98.599599px;}
.ydd_c00316{bottom:98.599608px;}
.ydc_c00316{bottom:98.599694px;}
.yd7_c00316{bottom:98.599757px;}
.yd6_c00316{bottom:98.600232px;}
.yd4_c00316{bottom:98.600522px;}
.yd5_c00316{bottom:98.600526px;}
.ycc_c00316{bottom:114.546750px;}
.ycd_c00316{bottom:114.546756px;}
.yce_c00316{bottom:114.547389px;}
.ycf_c00316{bottom:114.547464px;}
.yd0_c00316{bottom:114.547469px;}
.yd2_c00316{bottom:114.547481px;}
.yd3_c00316{bottom:114.547730px;}
.yd1_c00316{bottom:114.547866px;}
.yc5_c00316{bottom:130.871285px;}
.yc6_c00316{bottom:131.305280px;}
.yc7_c00316{bottom:131.671325px;}
.yc8_c00316{bottom:132.345250px;}
.yc9_c00316{bottom:132.747257px;}
.yca_c00316{bottom:133.716500px;}
.ycb_c00316{bottom:134.025161px;}
.yc2_c00316{bottom:147.785431px;}
.ybf_c00316{bottom:147.785628px;}
.ybd_c00316{bottom:147.785850px;}
.yc0_c00316{bottom:147.785935px;}
.yc1_c00316{bottom:147.785999px;}
.yc3_c00316{bottom:147.786072px;}
.ybe_c00316{bottom:147.786192px;}
.yc4_c00316{bottom:147.786645px;}
.yb6_c00316{bottom:162.737953px;}
.yb7_c00316{bottom:163.355942px;}
.yb8_c00316{bottom:164.273418px;}
.yb9_c00316{bottom:164.755845px;}
.yba_c00316{bottom:165.083789px;}
.ybb_c00316{bottom:165.877252px;}
.ybc_c00316{bottom:166.135240px;}
.yb2_c00316{bottom:182.236481px;}
.yb1_c00316{bottom:182.236655px;}
.yb3_c00316{bottom:182.236874px;}
.yaf_c00316{bottom:182.236974px;}
.yb4_c00316{bottom:182.237033px;}
.yae_c00316{bottom:182.237051px;}
.yb0_c00316{bottom:182.237276px;}
.yb5_c00316{bottom:182.237516px;}
.yad_c00316{bottom:182.237619px;}
.ya6_c00316{bottom:199.934132px;}
.ya8_c00316{bottom:199.934360px;}
.ya7_c00316{bottom:199.934445px;}
.ya9_c00316{bottom:199.934844px;}
.yab_c00316{bottom:199.935338px;}
.yaa_c00316{bottom:199.935483px;}
.yac_c00316{bottom:199.935680px;}
.ya2_c00316{bottom:217.056365px;}
.y9f_c00316{bottom:217.056585px;}
.ya1_c00316{bottom:217.056597px;}
.ya3_c00316{bottom:217.056609px;}
.ya4_c00316{bottom:217.056764px;}
.ya0_c00316{bottom:217.056834px;}
.y9e_c00316{bottom:217.056966px;}
.ya5_c00316{bottom:217.057496px;}
.y9c_c00316{bottom:233.879447px;}
.y9d_c00316{bottom:233.879511px;}
.y98_c00316{bottom:233.879627px;}
.y99_c00316{bottom:233.879726px;}
.y9a_c00316{bottom:233.879826px;}
.y9b_c00316{bottom:233.880129px;}
.y97_c00316{bottom:251.067071px;}
.y96_c00316{bottom:251.067155px;}
.y95_c00316{bottom:251.067602px;}
.y90_c00316{bottom:251.067831px;}
.y94_c00316{bottom:251.068073px;}
.y91_c00316{bottom:251.068421px;}
.y93_c00316{bottom:251.068550px;}
.y92_c00316{bottom:251.068724px;}
.y8b_c00316{bottom:268.526414px;}
.y89_c00316{bottom:268.526727px;}
.y88_c00316{bottom:268.527021px;}
.y8a_c00316{bottom:268.527126px;}
.y8c_c00316{bottom:268.527140px;}
.y87_c00316{bottom:268.527590px;}
.y8d_c00316{bottom:268.527869px;}
.y8e_c00316{bottom:268.528172px;}
.y8f_c00316{bottom:268.528598px;}
.y84_c00316{bottom:285.929904px;}
.y85_c00316{bottom:285.930329px;}
.y83_c00316{bottom:285.930615px;}
.y86_c00316{bottom:285.930662px;}
.y82_c00316{bottom:285.930702px;}
.y81_c00316{bottom:285.930843px;}
.y80_c00316{bottom:285.931169px;}
.y7f_c00316{bottom:285.931347px;}
.y7e_c00316{bottom:285.931490px;}
.y7b_c00316{bottom:303.459000px;}
.y7a_c00316{bottom:303.459080px;}
.y7d_c00316{bottom:303.459126px;}
.y78_c00316{bottom:303.459515px;}
.y76_c00316{bottom:303.459528px;}
.y79_c00316{bottom:303.459615px;}
.y7c_c00316{bottom:303.459693px;}
.y77_c00316{bottom:303.460229px;}
.y6e_c00316{bottom:320.615900px;}
.y6f_c00316{bottom:320.616625px;}
.y70_c00316{bottom:320.617054px;}
.y72_c00316{bottom:320.617188px;}
.y74_c00316{bottom:320.617620px;}
.y71_c00316{bottom:320.617634px;}
.y73_c00316{bottom:320.617677px;}
.y75_c00316{bottom:320.617779px;}
.y6c_c00316{bottom:336.359766px;}
.y6a_c00316{bottom:336.359981px;}
.y6b_c00316{bottom:336.359991px;}
.y67_c00316{bottom:336.360201px;}
.y69_c00316{bottom:336.360268px;}
.y6d_c00316{bottom:336.360340px;}
.y68_c00316{bottom:336.360835px;}
.y61_c00316{bottom:349.882169px;}
.y62_c00316{bottom:350.092583px;}
.y63_c00316{bottom:351.724577px;}
.y64_c00316{bottom:351.939019px;}
.y65_c00316{bottom:353.219757px;}
.y66_c00316{bottom:353.592319px;}
.y5f_c00316{bottom:368.924262px;}
.y59_c00316{bottom:368.924289px;}
.y60_c00316{bottom:368.924605px;}
.y5a_c00316{bottom:368.924682px;}
.y5b_c00316{bottom:368.924686px;}
.y5c_c00316{bottom:368.924698px;}
.y58_c00316{bottom:368.924764px;}
.y5e_c00316{bottom:368.924947px;}
.y5d_c00316{bottom:368.925423px;}
.y51_c00316{bottom:384.178041px;}
.y52_c00316{bottom:384.942907px;}
.y53_c00316{bottom:385.105078px;}
.y54_c00316{bottom:385.865887px;}
.y55_c00316{bottom:386.410554px;}
.y56_c00316{bottom:386.604325px;}
.y57_c00316{bottom:386.885835px;}
.y50_c00316{bottom:402.641682px;}
.y4c_c00316{bottom:402.641976px;}
.y4b_c00316{bottom:402.642122px;}
.y4f_c00316{bottom:402.642217px;}
.y4a_c00316{bottom:402.642297px;}
.y49_c00316{bottom:402.642474px;}
.y4d_c00316{bottom:402.642678px;}
.y4e_c00316{bottom:402.642927px;}
.y41_c00316{bottom:419.139431px;}
.y45_c00316{bottom:419.139577px;}
.y46_c00316{bottom:419.139648px;}
.y47_c00316{bottom:419.139741px;}
.y44_c00316{bottom:419.139748px;}
.y42_c00316{bottom:419.139858px;}
.y48_c00316{bottom:419.140134px;}
.y43_c00316{bottom:419.140192px;}
.y3a_c00316{bottom:434.677110px;}
.y3b_c00316{bottom:435.401304px;}
.y3c_c00316{bottom:435.730677px;}
.y3d_c00316{bottom:435.933600px;}
.y3e_c00316{bottom:436.853903px;}
.y3f_c00316{bottom:437.112295px;}
.y40_c00316{bottom:437.577851px;}
.y32_c00316{bottom:451.959430px;}
.y33_c00316{bottom:452.587767px;}
.y34_c00316{bottom:453.025317px;}
.y35_c00316{bottom:453.280786px;}
.y36_c00316{bottom:454.016239px;}
.y37_c00316{bottom:454.262479px;}
.y38_c00316{bottom:454.528725px;}
.y39_c00316{bottom:455.151996px;}
.y2a_c00316{bottom:468.971460px;}
.y2b_c00316{bottom:469.085722px;}
.y2c_c00316{bottom:469.872030px;}
.y2d_c00316{bottom:470.197284px;}
.y2e_c00316{bottom:470.871096px;}
.y2f_c00316{bottom:471.016674px;}
.y30_c00316{bottom:472.092720px;}
.y31_c00316{bottom:472.237300px;}
.y21_c00316{bottom:485.445955px;}
.y22_c00316{bottom:485.594468px;}
.y23_c00316{bottom:486.072079px;}
.y24_c00316{bottom:486.469630px;}
.y25_c00316{bottom:486.725662px;}
.y26_c00316{bottom:487.803657px;}
.y27_c00316{bottom:488.107350px;}
.y28_c00316{bottom:488.370186px;}
.y29_c00316{bottom:489.266043px;}
.y1d_c00316{bottom:504.175173px;}
.y1b_c00316{bottom:504.175344px;}
.y20_c00316{bottom:504.175589px;}
.y1e_c00316{bottom:504.175657px;}
.y1a_c00316{bottom:504.175665px;}
.y1c_c00316{bottom:504.175737px;}
.y1f_c00316{bottom:504.175906px;}
.y19_c00316{bottom:504.176292px;}
.y18_c00316{bottom:520.949922px;}
.y17_c00316{bottom:520.950489px;}
.y16_c00316{bottom:520.950868px;}
.y15_c00316{bottom:520.951434px;}
.y11_c00316{bottom:520.951675px;}
.y13_c00316{bottom:520.951986px;}
.y14_c00316{bottom:520.952002px;}
.y12_c00316{bottom:520.952073px;}
.y9_c00316{bottom:535.682904px;}
.ya_c00316{bottom:537.274643px;}
.yb_c00316{bottom:537.599484px;}
.yc_c00316{bottom:538.452281px;}
.yd_c00316{bottom:539.627040px;}
.ye_c00316{bottom:540.174536px;}
.yf_c00316{bottom:540.913278px;}
.y10_c00316{bottom:541.363421px;}
.y2_c00316{bottom:552.426000px;}
.y3_c00316{bottom:552.978672px;}
.y4_c00316{bottom:554.197930px;}
.y5_c00316{bottom:554.604797px;}
.y6_c00316{bottom:554.974584px;}
.y7_c00316{bottom:556.175090px;}
.y8_c00316{bottom:556.914152px;}
.y1_c00316{bottom:572.130000px;}
.hb_c00316{height:55.660044px;}
.h12_c00316{height:57.760423px;}
.hf_c00316{height:58.810612px;}
.h7_c00316{height:59.860802px;}
.h2_c00316{height:60.900000px;}
.he_c00316{height:60.910991px;}
.h9_c00316{height:61.961181px;}
.h8_c00316{height:63.011370px;}
.h4_c00316{height:64.061560px;}
.hd_c00316{height:65.111749px;}
.h6_c00316{height:66.161939px;}
.hc_c00316{height:67.212129px;}
.ha_c00316{height:68.262318px;}
.h5_c00316{height:70.362697px;}
.h10_c00316{height:72.463076px;}
.h11_c00316{height:75.613645px;}
.h3_c00316{height:89.266108px;}
.h0_c00316{height:613.170000px;}
.h1_c00316{height:613.500000px;}
.w0_c00316{width:359.100000px;}
.w1_c00316{width:359.250000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:23.818500px;}
.x30_c00316{left:25.245436px;}
.x62_c00316{left:27.003362px;}
.x1c_c00316{left:29.327150px;}
.x25_c00316{left:32.246606px;}
.x69_c00316{left:33.754126px;}
.x58_c00316{left:35.373804px;}
.x74_c00316{left:37.270185px;}
.x1d_c00316{left:39.275919px;}
.x16_c00316{left:40.776045px;}
.x77_c00316{left:43.751944px;}
.x3b_c00316{left:45.634236px;}
.x46_c00316{left:49.143914px;}
.x71_c00316{left:50.501701px;}
.x3_c00316{left:52.906500px;}
.x50_c00316{left:55.897365px;}
.x6f_c00316{left:58.871853px;}
.x36_c00316{left:62.646034px;}
.x56_c00316{left:64.807863px;}
.xf_c00316{left:66.698763px;}
.x4c_c00316{left:69.400217px;}
.x1e_c00316{left:71.126342px;}
.x60_c00316{left:73.451106px;}
.x3c_c00316{left:74.530167px;}
.x2c_c00316{left:76.826871px;}
.x72_c00316{left:81.286816px;}
.x75_c00316{left:83.988057px;}
.x10_c00316{left:85.332489px;}
.x40_c00316{left:88.965540px;}
.x31_c00316{left:91.081440px;}
.x6e_c00316{left:92.220138px;}
.x17_c00316{left:93.436055px;}
.x7a_c00316{left:96.073969px;}
.x1f_c00316{left:97.657365px;}
.x41_c00316{left:102.476335px;}
.x9_c00316{left:103.642578px;}
.x26_c00316{left:107.286581px;}
.x78_c00316{left:109.375128px;}
.x18_c00316{left:110.989382px;}
.x2d_c00316{left:113.281716px;}
.x20_c00316{left:114.686648px;}
.x4_c00316{left:117.078000px;}
.xa_c00316{left:119.870765px;}
.x32_c00316{left:121.053000px;}
.x6a_c00316{left:122.331103px;}
.x63_c00316{left:126.111129px;}
.x73_c00316{left:128.544888px;}
.x61_c00316{left:130.161069px;}
.x5b_c00316{left:132.050786px;}
.x27_c00316{left:134.356172px;}
.x5_c00316{left:138.492000px;}
.x64_c00316{left:143.394370px;}
.x79_c00316{left:144.751990px;}
.x19_c00316{left:147.446549px;}
.x51_c00316{left:149.062967px;}
.x5c_c00316{left:151.494797px;}
.x1_c00316{left:152.820000px;}
.x66_c00316{left:154.736659px;}
.x6_c00316{left:157.954500px;}
.x59_c00316{left:160.676534px;}
.xb_c00316{left:162.543467px;}
.x42_c00316{left:165.895771px;}
.x37_c00316{left:168.774838px;}
.x52_c00316{left:170.126076px;}
.x1a_c00316{left:171.480713px;}
.x11_c00316{left:177.419220px;}
.x47_c00316{left:182.277936px;}
.x6b_c00316{left:183.362634px;}
.x21_c00316{left:186.507591px;}
.x12_c00316{left:188.761824px;}
.x28_c00316{left:190.511639px;}
.x4d_c00316{left:192.272063px;}
.x6c_c00316{left:193.497807px;}
.x2e_c00316{left:195.920217px;}
.x54_c00316{left:200.641474px;}
.x29_c00316{left:202.675263px;}
.x67_c00316{left:205.235871px;}
.x22_c00316{left:206.756130px;}
.x48_c00316{left:208.472898px;}
.x43_c00316{left:211.305313px;}
.x13_c00316{left:216.847470px;}
.x3d_c00316{left:218.466594px;}
.x7_c00316{left:221.139000px;}
.x33_c00316{left:223.133004px;}
.x23_c00316{left:224.301470px;}
.x44_c00316{left:227.505979px;}
.x68_c00316{left:228.999949px;}
.x38_c00316{left:230.616654px;}
.x53_c00316{left:232.776677px;}
.x65_c00316{left:236.831586px;}
.x2f_c00316{left:238.530360px;}
.x5a_c00316{left:241.150546px;}
.x76_c00316{left:242.506728px;}
.x39_c00316{left:245.469012px;}
.x34_c00316{left:246.683595px;}
.xc_c00316{left:248.686842px;}
.x45_c00316{left:251.009614px;}
.x70_c00316{left:254.928090px;}
.x5d_c00316{left:257.895214px;}
.x57_c00316{left:258.973444px;}
.x8_c00316{left:260.037000px;}
.x55_c00316{left:261.132806px;}
.x3a_c00316{left:263.022339px;}
.x7b_c00316{left:269.127912px;}
.x5e_c00316{left:270.586803px;}
.x14_c00316{left:274.637832px;}
.x4e_c00316{left:276.527472px;}
.x3e_c00316{left:278.687839px;}
.x4a_c00316{left:281.498041px;}
.x24_c00316{left:284.009001px;}
.xd_c00316{left:285.593630px;}
.x6d_c00316{left:286.952733px;}
.x35_c00316{left:289.035036px;}
.x1b_c00316{left:290.572691px;}
.x2a_c00316{left:292.321176px;}
.x15_c00316{left:294.351957px;}
.x7c_c00316{left:296.949354px;}
.x4f_c00316{left:298.670952px;}
.x3f_c00316{left:301.641633px;}
.x49_c00316{left:302.989013px;}
.x2b_c00316{left:304.432300px;}
.x5f_c00316{left:305.963571px;}
.xe_c00316{left:308.100702px;}
.x4b_c00316{left:310.188819px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
.fs9_c00316{font-size:49.475595pt;}
.fs10_c00316{font-size:51.342598pt;}
.fsd_c00316{font-size:52.276100pt;}
.fs5_c00316{font-size:53.209602pt;}
.fs0_c00316{font-size:54.133333pt;}
.fsc_c00316{font-size:54.143104pt;}
.fs7_c00316{font-size:55.076605pt;}
.fs6_c00316{font-size:56.010107pt;}
.fs2_c00316{font-size:56.943609pt;}
.fsb_c00316{font-size:57.877111pt;}
.fs4_c00316{font-size:58.810612pt;}
.fsa_c00316{font-size:59.744114pt;}
.fs8_c00316{font-size:60.677616pt;}
.fs3_c00316{font-size:62.544620pt;}
.fse_c00316{font-size:64.411623pt;}
.fsf_c00316{font-size:67.212129pt;}
.fs1_c00316{font-size:79.347652pt;}
.y0_c00316{bottom:0.000000pt;}
.y100_c00316{bottom:26.630285pt;}
.yff_c00316{bottom:26.976707pt;}
.yfe_c00316{bottom:27.252617pt;}
.yfd_c00316{bottom:27.967608pt;}
.yfc_c00316{bottom:28.124613pt;}
.yfb_c00316{bottom:28.961401pt;}
.yfa_c00316{bottom:29.129183pt;}
.yf9_c00316{bottom:29.711087pt;}
.yf8_c00316{bottom:29.916227pt;}
.yf1_c00316{bottom:43.147360pt;}
.yf2_c00316{bottom:43.147845pt;}
.yf0_c00316{bottom:43.147864pt;}
.yf4_c00316{bottom:43.148020pt;}
.yf3_c00316{bottom:43.148063pt;}
.yf6_c00316{bottom:43.148325pt;}
.yef_c00316{bottom:43.148337pt;}
.yf5_c00316{bottom:43.148401pt;}
.yf7_c00316{bottom:43.148941pt;}
.yed_c00316{bottom:55.787657pt;}
.yec_c00316{bottom:55.787863pt;}
.yee_c00316{bottom:55.787955pt;}
.ye6_c00316{bottom:55.788313pt;}
.yeb_c00316{bottom:55.788359pt;}
.ye9_c00316{bottom:55.788481pt;}
.ye8_c00316{bottom:55.788639pt;}
.yea_c00316{bottom:55.788697pt;}
.ye7_c00316{bottom:55.788795pt;}
.ydf_c00316{bottom:71.907243pt;}
.ye0_c00316{bottom:71.907624pt;}
.yde_c00316{bottom:71.907848pt;}
.ye1_c00316{bottom:71.908135pt;}
.ye5_c00316{bottom:71.908740pt;}
.ye2_c00316{bottom:71.908756pt;}
.ye4_c00316{bottom:71.908815pt;}
.ye3_c00316{bottom:71.909239pt;}
.yda_c00316{bottom:87.643472pt;}
.yd9_c00316{bottom:87.643625pt;}
.yd8_c00316{bottom:87.643832pt;}
.ydb_c00316{bottom:87.644088pt;}
.ydd_c00316{bottom:87.644096pt;}
.ydc_c00316{bottom:87.644172pt;}
.yd7_c00316{bottom:87.644228pt;}
.yd6_c00316{bottom:87.644651pt;}
.yd4_c00316{bottom:87.644908pt;}
.yd5_c00316{bottom:87.644912pt;}
.ycc_c00316{bottom:101.819333pt;}
.ycd_c00316{bottom:101.819339pt;}
.yce_c00316{bottom:101.819901pt;}
.ycf_c00316{bottom:101.819968pt;}
.yd0_c00316{bottom:101.819972pt;}
.yd2_c00316{bottom:101.819983pt;}
.yd3_c00316{bottom:101.820204pt;}
.yd1_c00316{bottom:101.820325pt;}
.yc5_c00316{bottom:116.330031pt;}
.yc6_c00316{bottom:116.715804pt;}
.yc7_c00316{bottom:117.041177pt;}
.yc8_c00316{bottom:117.640223pt;}
.yc9_c00316{bottom:117.997561pt;}
.yca_c00316{bottom:118.859111pt;}
.ycb_c00316{bottom:119.133476pt;}
.yc2_c00316{bottom:131.364828pt;}
.ybf_c00316{bottom:131.365003pt;}
.ybd_c00316{bottom:131.365200pt;}
.yc0_c00316{bottom:131.365276pt;}
.yc1_c00316{bottom:131.365332pt;}
.yc3_c00316{bottom:131.365397pt;}
.ybe_c00316{bottom:131.365504pt;}
.yc4_c00316{bottom:131.365907pt;}
.yb6_c00316{bottom:144.655959pt;}
.yb7_c00316{bottom:145.205281pt;}
.yb8_c00316{bottom:146.020816pt;}
.yb9_c00316{bottom:146.449640pt;}
.yba_c00316{bottom:146.741145pt;}
.ybb_c00316{bottom:147.446447pt;}
.ybc_c00316{bottom:147.675769pt;}
.yb2_c00316{bottom:161.987983pt;}
.yb1_c00316{bottom:161.988137pt;}
.yb3_c00316{bottom:161.988332pt;}
.yaf_c00316{bottom:161.988421pt;}
.yb4_c00316{bottom:161.988473pt;}
.yae_c00316{bottom:161.988489pt;}
.yb0_c00316{bottom:161.988689pt;}
.yb5_c00316{bottom:161.988903pt;}
.yad_c00316{bottom:161.988995pt;}
.ya6_c00316{bottom:177.719228pt;}
.ya8_c00316{bottom:177.719431pt;}
.ya7_c00316{bottom:177.719507pt;}
.ya9_c00316{bottom:177.719861pt;}
.yab_c00316{bottom:177.720300pt;}
.yaa_c00316{bottom:177.720429pt;}
.yac_c00316{bottom:177.720604pt;}
.ya2_c00316{bottom:192.938991pt;}
.y9f_c00316{bottom:192.939187pt;}
.ya1_c00316{bottom:192.939197pt;}
.ya3_c00316{bottom:192.939208pt;}
.ya4_c00316{bottom:192.939345pt;}
.ya0_c00316{bottom:192.939408pt;}
.y9e_c00316{bottom:192.939525pt;}
.ya5_c00316{bottom:192.939996pt;}
.y9c_c00316{bottom:207.892841pt;}
.y9d_c00316{bottom:207.892899pt;}
.y98_c00316{bottom:207.893001pt;}
.y99_c00316{bottom:207.893089pt;}
.y9a_c00316{bottom:207.893179pt;}
.y9b_c00316{bottom:207.893448pt;}
.y97_c00316{bottom:223.170729pt;}
.y96_c00316{bottom:223.170804pt;}
.y95_c00316{bottom:223.171201pt;}
.y90_c00316{bottom:223.171405pt;}
.y94_c00316{bottom:223.171620pt;}
.y91_c00316{bottom:223.171929pt;}
.y93_c00316{bottom:223.172044pt;}
.y92_c00316{bottom:223.172199pt;}
.y8b_c00316{bottom:238.690145pt;}
.y89_c00316{bottom:238.690424pt;}
.y88_c00316{bottom:238.690685pt;}
.y8a_c00316{bottom:238.690779pt;}
.y8c_c00316{bottom:238.690791pt;}
.y87_c00316{bottom:238.691191pt;}
.y8d_c00316{bottom:238.691439pt;}
.y8e_c00316{bottom:238.691708pt;}
.y8f_c00316{bottom:238.692087pt;}
.y84_c00316{bottom:254.159915pt;}
.y85_c00316{bottom:254.160292pt;}
.y83_c00316{bottom:254.160547pt;}
.y86_c00316{bottom:254.160588pt;}
.y82_c00316{bottom:254.160624pt;}
.y81_c00316{bottom:254.160749pt;}
.y80_c00316{bottom:254.161039pt;}
.y7f_c00316{bottom:254.161197pt;}
.y7e_c00316{bottom:254.161324pt;}
.y7b_c00316{bottom:269.741333pt;}
.y7a_c00316{bottom:269.741404pt;}
.y7d_c00316{bottom:269.741445pt;}
.y78_c00316{bottom:269.741791pt;}
.y76_c00316{bottom:269.741803pt;}
.y79_c00316{bottom:269.741880pt;}
.y7c_c00316{bottom:269.741949pt;}
.y77_c00316{bottom:269.742425pt;}
.y6e_c00316{bottom:284.991911pt;}
.y6f_c00316{bottom:284.992556pt;}
.y70_c00316{bottom:284.992937pt;}
.y72_c00316{bottom:284.993056pt;}
.y74_c00316{bottom:284.993440pt;}
.y71_c00316{bottom:284.993452pt;}
.y73_c00316{bottom:284.993491pt;}
.y75_c00316{bottom:284.993581pt;}
.y6c_c00316{bottom:298.986459pt;}
.y6a_c00316{bottom:298.986649pt;}
.y6b_c00316{bottom:298.986659pt;}
.y67_c00316{bottom:298.986845pt;}
.y69_c00316{bottom:298.986905pt;}
.y6d_c00316{bottom:298.986969pt;}
.y68_c00316{bottom:298.987409pt;}
.y61_c00316{bottom:311.006372pt;}
.y62_c00316{bottom:311.193407pt;}
.y63_c00316{bottom:312.644068pt;}
.y64_c00316{bottom:312.834684pt;}
.y65_c00316{bottom:313.973117pt;}
.y66_c00316{bottom:314.304284pt;}
.y5f_c00316{bottom:327.932677pt;}
.y59_c00316{bottom:327.932701pt;}
.y60_c00316{bottom:327.932983pt;}
.y5a_c00316{bottom:327.933051pt;}
.y5b_c00316{bottom:327.933055pt;}
.y5c_c00316{bottom:327.933065pt;}
.y58_c00316{bottom:327.933124pt;}
.y5e_c00316{bottom:327.933287pt;}
.y5d_c00316{bottom:327.933709pt;}
.y51_c00316{bottom:341.491592pt;}
.y52_c00316{bottom:342.171473pt;}
.y53_c00316{bottom:342.315625pt;}
.y54_c00316{bottom:342.991900pt;}
.y55_c00316{bottom:343.476048pt;}
.y56_c00316{bottom:343.648289pt;}
.y57_c00316{bottom:343.898520pt;}
.y50_c00316{bottom:357.903717pt;}
.y4c_c00316{bottom:357.903979pt;}
.y4b_c00316{bottom:357.904108pt;}
.y4f_c00316{bottom:357.904193pt;}
.y4a_c00316{bottom:357.904264pt;}
.y49_c00316{bottom:357.904421pt;}
.y4d_c00316{bottom:357.904603pt;}
.y4e_c00316{bottom:357.904824pt;}
.y41_c00316{bottom:372.568383pt;}
.y45_c00316{bottom:372.568513pt;}
.y46_c00316{bottom:372.568576pt;}
.y47_c00316{bottom:372.568659pt;}
.y44_c00316{bottom:372.568665pt;}
.y42_c00316{bottom:372.568763pt;}
.y48_c00316{bottom:372.569008pt;}
.y43_c00316{bottom:372.569060pt;}
.y3a_c00316{bottom:386.379653pt;}
.y3b_c00316{bottom:387.023381pt;}
.y3c_c00316{bottom:387.316157pt;}
.y3d_c00316{bottom:387.496533pt;}
.y3e_c00316{bottom:388.314580pt;}
.y3f_c00316{bottom:388.544263pt;}
.y40_c00316{bottom:388.958089pt;}
.y32_c00316{bottom:401.741716pt;}
.y33_c00316{bottom:402.300237pt;}
.y34_c00316{bottom:402.689171pt;}
.y35_c00316{bottom:402.916255pt;}
.y36_c00316{bottom:403.569991pt;}
.y37_c00316{bottom:403.788871pt;}
.y38_c00316{bottom:404.025533pt;}
.y39_c00316{bottom:404.579552pt;}
.y2a_c00316{bottom:416.863520pt;}
.y2b_c00316{bottom:416.965087pt;}
.y2c_c00316{bottom:417.664027pt;}
.y2d_c00316{bottom:417.953141pt;}
.y2e_c00316{bottom:418.552085pt;}
.y2f_c00316{bottom:418.681488pt;}
.y30_c00316{bottom:419.637973pt;}
.y31_c00316{bottom:419.766489pt;}
.y21_c00316{bottom:431.507516pt;}
.y22_c00316{bottom:431.639527pt;}
.y23_c00316{bottom:432.064071pt;}
.y24_c00316{bottom:432.417449pt;}
.y25_c00316{bottom:432.645033pt;}
.y26_c00316{bottom:433.603251pt;}
.y27_c00316{bottom:433.873200pt;}
.y28_c00316{bottom:434.106832pt;}
.y29_c00316{bottom:434.903149pt;}
.y1d_c00316{bottom:448.155709pt;}
.y1b_c00316{bottom:448.155861pt;}
.y20_c00316{bottom:448.156079pt;}
.y1e_c00316{bottom:448.156140pt;}
.y1a_c00316{bottom:448.156147pt;}
.y1c_c00316{bottom:448.156211pt;}
.y1f_c00316{bottom:448.156361pt;}
.y19_c00316{bottom:448.156704pt;}
.y18_c00316{bottom:463.066597pt;}
.y17_c00316{bottom:463.067101pt;}
.y16_c00316{bottom:463.067439pt;}
.y15_c00316{bottom:463.067941pt;}
.y11_c00316{bottom:463.068156pt;}
.y13_c00316{bottom:463.068432pt;}
.y14_c00316{bottom:463.068447pt;}
.y12_c00316{bottom:463.068509pt;}
.y9_c00316{bottom:476.162581pt;}
.ya_c00316{bottom:477.577460pt;}
.yb_c00316{bottom:477.866208pt;}
.yc_c00316{bottom:478.624249pt;}
.yd_c00316{bottom:479.668480pt;}
.ye_c00316{bottom:480.155143pt;}
.yf_c00316{bottom:480.811803pt;}
.y10_c00316{bottom:481.211929pt;}
.y2_c00316{bottom:491.045333pt;}
.y3_c00316{bottom:491.536597pt;}
.y4_c00316{bottom:492.620383pt;}
.y5_c00316{bottom:492.982041pt;}
.y6_c00316{bottom:493.310741pt;}
.y7_c00316{bottom:494.377857pt;}
.y8_c00316{bottom:495.034801pt;}
.y1_c00316{bottom:508.560000pt;}
.hb_c00316{height:49.475595pt;}
.h12_c00316{height:51.342598pt;}
.hf_c00316{height:52.276100pt;}
.h7_c00316{height:53.209602pt;}
.h2_c00316{height:54.133333pt;}
.he_c00316{height:54.143104pt;}
.h9_c00316{height:55.076605pt;}
.h8_c00316{height:56.010107pt;}
.h4_c00316{height:56.943609pt;}
.hd_c00316{height:57.877111pt;}
.h6_c00316{height:58.810612pt;}
.hc_c00316{height:59.744114pt;}
.ha_c00316{height:60.677616pt;}
.h5_c00316{height:62.544620pt;}
.h10_c00316{height:64.411623pt;}
.h11_c00316{height:67.212129pt;}
.h3_c00316{height:79.347652pt;}
.h0_c00316{height:545.040000pt;}
.h1_c00316{height:545.333333pt;}
.w0_c00316{width:319.200000pt;}
.w1_c00316{width:319.333333pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:21.172000pt;}
.x30_c00316{left:22.440388pt;}
.x62_c00316{left:24.002988pt;}
.x1c_c00316{left:26.068577pt;}
.x25_c00316{left:28.663649pt;}
.x69_c00316{left:30.003668pt;}
.x58_c00316{left:31.443381pt;}
.x74_c00316{left:33.129053pt;}
.x1d_c00316{left:34.911928pt;}
.x16_c00316{left:36.245373pt;}
.x77_c00316{left:38.890617pt;}
.x3b_c00316{left:40.563765pt;}
.x46_c00316{left:43.683479pt;}
.x71_c00316{left:44.890401pt;}
.x3_c00316{left:47.028000pt;}
.x50_c00316{left:49.686547pt;}
.x6f_c00316{left:52.330536pt;}
.x36_c00316{left:55.685364pt;}
.x56_c00316{left:57.606989pt;}
.xf_c00316{left:59.287789pt;}
.x4c_c00316{left:61.689081pt;}
.x1e_c00316{left:63.223415pt;}
.x60_c00316{left:65.289872pt;}
.x3c_c00316{left:66.249037pt;}
.x2c_c00316{left:68.290552pt;}
.x72_c00316{left:72.254948pt;}
.x75_c00316{left:74.656051pt;}
.x10_c00316{left:75.851101pt;}
.x40_c00316{left:79.080480pt;}
.x31_c00316{left:80.961280pt;}
.x6e_c00316{left:81.973456pt;}
.x17_c00316{left:83.054271pt;}
.x7a_c00316{left:85.399084pt;}
.x1f_c00316{left:86.806547pt;}
.x41_c00316{left:91.090076pt;}
.x9_c00316{left:92.126736pt;}
.x26_c00316{left:95.365849pt;}
.x78_c00316{left:97.222336pt;}
.x18_c00316{left:98.657228pt;}
.x2d_c00316{left:100.694859pt;}
.x20_c00316{left:101.943687pt;}
.x4_c00316{left:104.069333pt;}
.xa_c00316{left:106.551791pt;}
.x32_c00316{left:107.602667pt;}
.x6a_c00316{left:108.738759pt;}
.x63_c00316{left:112.098781pt;}
.x73_c00316{left:114.262123pt;}
.x61_c00316{left:115.698728pt;}
.x5b_c00316{left:117.378476pt;}
.x27_c00316{left:119.427708pt;}
.x5_c00316{left:123.104000pt;}
.x64_c00316{left:127.461663pt;}
.x79_c00316{left:128.668436pt;}
.x19_c00316{left:131.063599pt;}
.x51_c00316{left:132.500415pt;}
.x5c_c00316{left:134.662041pt;}
.x1_c00316{left:135.840000pt;}
.x66_c00316{left:137.543697pt;}
.x6_c00316{left:140.404000pt;}
.x59_c00316{left:142.823585pt;}
.xb_c00316{left:144.483081pt;}
.x42_c00316{left:147.462908pt;}
.x37_c00316{left:150.022079pt;}
.x52_c00316{left:151.223179pt;}
.x1a_c00316{left:152.427300pt;}
.x11_c00316{left:157.705973pt;}
.x47_c00316{left:162.024832pt;}
.x6b_c00316{left:162.989008pt;}
.x21_c00316{left:165.784525pt;}
.x12_c00316{left:167.788288pt;}
.x28_c00316{left:169.343679pt;}
.x4d_c00316{left:170.908500pt;}
.x6c_c00316{left:171.998051pt;}
.x2e_c00316{left:174.151304pt;}
.x54_c00316{left:178.347977pt;}
.x29_c00316{left:180.155789pt;}
.x67_c00316{left:182.431885pt;}
.x22_c00316{left:183.783227pt;}
.x48_c00316{left:185.309243pt;}
.x43_c00316{left:187.826945pt;}
.x13_c00316{left:192.753307pt;}
.x3d_c00316{left:194.192528pt;}
.x7_c00316{left:196.568000pt;}
.x33_c00316{left:198.340448pt;}
.x23_c00316{left:199.379084pt;}
.x44_c00316{left:202.227537pt;}
.x68_c00316{left:203.555511pt;}
.x38_c00316{left:204.992581pt;}
.x53_c00316{left:206.912601pt;}
.x65_c00316{left:210.516965pt;}
.x2f_c00316{left:212.026987pt;}
.x5a_c00316{left:214.356041pt;}
.x76_c00316{left:215.561536pt;}
.x39_c00316{left:218.194677pt;}
.x34_c00316{left:219.274307pt;}
.xc_c00316{left:221.054971pt;}
.x45_c00316{left:223.119657pt;}
.x70_c00316{left:226.602747pt;}
.x5d_c00316{left:229.240191pt;}
.x57_c00316{left:230.198617pt;}
.x8_c00316{left:231.144000pt;}
.x55_c00316{left:232.118049pt;}
.x3a_c00316{left:233.797635pt;}
.x7b_c00316{left:239.224811pt;}
.x5e_c00316{left:240.521603pt;}
.x14_c00316{left:244.122517pt;}
.x4e_c00316{left:245.802197pt;}
.x3e_c00316{left:247.722524pt;}
.x4a_c00316{left:250.220481pt;}
.x24_c00316{left:252.452445pt;}
.xd_c00316{left:253.861004pt;}
.x6d_c00316{left:255.069096pt;}
.x35_c00316{left:256.920032pt;}
.x1b_c00316{left:258.286836pt;}
.x2a_c00316{left:259.841045pt;}
.x15_c00316{left:261.646184pt;}
.x7c_c00316{left:263.954981pt;}
.x4f_c00316{left:265.485291pt;}
.x3f_c00316{left:268.125896pt;}
.x49_c00316{left:269.323567pt;}
.x2b_c00316{left:270.606489pt;}
.x5f_c00316{left:271.967619pt;}
.xe_c00316{left:273.867291pt;}
.x4b_c00316{left:275.723395pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00317 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00317 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00317 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00317 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00317.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00317{transform:matrix(0.046330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046330,0.000000,0.000000,0.250000,0,0);}
.mb0_c00317{transform:matrix(0.128069,0.001665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.128069,0.001665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.128069,0.001665,-0.003250,0.249979,0,0);}
.me6_c00317{transform:matrix(0.130044,0.001691,-0.003250,0.249979,0,0);-ms-transform:matrix(0.130044,0.001691,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.130044,0.001691,-0.003250,0.249979,0,0);}
.mcb_c00317{transform:matrix(0.133269,0.001732,-0.003250,0.249979,0,0);-ms-transform:matrix(0.133269,0.001732,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.133269,0.001732,-0.003250,0.249979,0,0);}
.m4_c00317{transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);}
.mf6_c00317{transform:matrix(0.139318,0.001811,-0.003250,0.249979,0,0);-ms-transform:matrix(0.139318,0.001811,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.139318,0.001811,-0.003250,0.249979,0,0);}
.m0_c00317{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00317{transform:matrix(0.143938,0.001871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143938,0.001871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143938,0.001871,-0.003250,0.249979,0,0);}
.mec_c00317{transform:matrix(0.144208,0.001875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.144208,0.001875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.144208,0.001875,-0.003250,0.249979,0,0);}
.m19_c00317{transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);}
.m5e_c00317{transform:matrix(0.147560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147560,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);}
.mf7_c00317{transform:matrix(0.151837,0.001974,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151837,0.001974,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151837,0.001974,-0.003250,0.249979,0,0);}
.m2b_c00317{transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{transform:matrix(0.153762,0.001999,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153762,0.001999,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153762,0.001999,-0.003250,0.249979,0,0);}
.mee_c00317{transform:matrix(0.154847,0.002013,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154847,0.002013,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154847,0.002013,-0.003250,0.249979,0,0);}
.m22_c00317{transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);}
.mca_c00317{transform:matrix(0.155332,0.002019,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155332,0.002019,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155332,0.002019,-0.003250,0.249979,0,0);}
.m69_c00317{transform:matrix(0.155352,0.002020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155352,0.002020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155352,0.002020,-0.003250,0.249979,0,0);}
.m21_c00317{transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.158112,0.002055,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158112,0.002055,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158112,0.002055,-0.003250,0.249979,0,0);}
.m9a_c00317{transform:matrix(0.158242,0.002057,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158242,0.002057,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158242,0.002057,-0.003250,0.249979,0,0);}
.m6b_c00317{transform:matrix(0.160546,0.002087,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160546,0.002087,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160546,0.002087,-0.003250,0.249979,0,0);}
.m2_c00317{transform:matrix(0.160860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160860,0.000000,0.000000,0.250000,0,0);}
.mda_c00317{transform:matrix(0.161946,0.002105,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161946,0.002105,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161946,0.002105,-0.003250,0.249979,0,0);}
.mf3_c00317{transform:matrix(0.162271,0.002110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162271,0.002110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162271,0.002110,-0.003250,0.249979,0,0);}
.mf1_c00317{transform:matrix(0.162546,0.002113,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162546,0.002113,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162546,0.002113,-0.003250,0.249979,0,0);}
.me8_c00317{transform:matrix(0.162771,0.002116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162771,0.002116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162771,0.002116,-0.003250,0.249979,0,0);}
.m39_c00317{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.mce_c00317{transform:matrix(0.163261,0.002122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163261,0.002122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163261,0.002122,-0.003250,0.249979,0,0);}
.m17_c00317{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);}
.m8c_c00317{transform:matrix(0.165006,0.002145,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165006,0.002145,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165006,0.002145,-0.003250,0.249979,0,0);}
.ma1_c00317{transform:matrix(0.165616,0.002153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165616,0.002153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165616,0.002153,-0.003250,0.249979,0,0);}
.m60_c00317{transform:matrix(0.165741,0.002155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165741,0.002155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165741,0.002155,-0.003250,0.249979,0,0);}
.m8b_c00317{transform:matrix(0.165846,0.002156,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165846,0.002156,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165846,0.002156,-0.003250,0.249979,0,0);}
.m63_c00317{transform:matrix(0.167936,0.002183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167936,0.002183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167936,0.002183,-0.003250,0.249979,0,0);}
.m9d_c00317{transform:matrix(0.168541,0.002191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168541,0.002191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168541,0.002191,-0.003250,0.249979,0,0);}
.mad_c00317{transform:matrix(0.168856,0.002195,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168856,0.002195,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168856,0.002195,-0.003250,0.249979,0,0);}
.ma5_c00317{transform:matrix(0.168926,0.002196,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168926,0.002196,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168926,0.002196,-0.003250,0.249979,0,0);}
.m15_c00317{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.meb_c00317{transform:matrix(0.170881,0.002221,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170881,0.002221,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170881,0.002221,-0.003250,0.249979,0,0);}
.m34_c00317{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);}
.m65_c00317{transform:matrix(0.171805,0.002233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171805,0.002233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171805,0.002233,-0.003250,0.249979,0,0);}
.mdc_c00317{transform:matrix(0.172140,0.002238,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172140,0.002238,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172140,0.002238,-0.003250,0.249979,0,0);}
.m5b_c00317{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.md7_c00317{transform:matrix(0.172780,0.002246,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172780,0.002246,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172780,0.002246,-0.003250,0.249979,0,0);}
.m3c_c00317{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.mae_c00317{transform:matrix(0.173980,0.002262,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173980,0.002262,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173980,0.002262,-0.003250,0.249979,0,0);}
.m43_c00317{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.m62_c00317{transform:matrix(0.174545,0.002269,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174545,0.002269,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174545,0.002269,-0.003250,0.249979,0,0);}
.m56_c00317{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.mbe_c00317{transform:matrix(0.175165,0.002277,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175165,0.002277,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175165,0.002277,-0.003250,0.249979,0,0);}
.m26_c00317{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{transform:matrix(0.176320,0.002292,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176320,0.002292,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176320,0.002292,-0.003250,0.249979,0,0);}
.m53_c00317{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.md6_c00317{transform:matrix(0.176515,0.002295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176515,0.002295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176515,0.002295,-0.003250,0.249979,0,0);}
.m28_c00317{transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176565,0.000000,0.000000,0.250000,0,0);}
.m45_c00317{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.ma6_c00317{transform:matrix(0.177865,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177865,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177865,0.002312,-0.003250,0.249979,0,0);}
.m6f_c00317{transform:matrix(0.178005,0.002314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178005,0.002314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178005,0.002314,-0.003250,0.249979,0,0);}
.mb3_c00317{transform:matrix(0.178040,0.002315,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178040,0.002315,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178040,0.002315,-0.003250,0.249979,0,0);}
.m67_c00317{transform:matrix(0.178225,0.002317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178225,0.002317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178225,0.002317,-0.003250,0.249979,0,0);}
.m46_c00317{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.md0_c00317{transform:matrix(0.179365,0.002332,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179365,0.002332,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179365,0.002332,-0.003250,0.249979,0,0);}
.m66_c00317{transform:matrix(0.180015,0.002340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180015,0.002340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180015,0.002340,-0.003250,0.249979,0,0);}
.m6a_c00317{transform:matrix(0.180065,0.002341,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180065,0.002341,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180065,0.002341,-0.003250,0.249979,0,0);}
.m59_c00317{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);}
.me3_c00317{transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);}
.md_c00317{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.m52_c00317{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.mc4_c00317{transform:matrix(0.182400,0.002371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182400,0.002371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182400,0.002371,-0.003250,0.249979,0,0);}
.mb5_c00317{transform:matrix(0.182680,0.002375,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182680,0.002375,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182680,0.002375,-0.003250,0.249979,0,0);}
.m7_c00317{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m70_c00317{transform:matrix(0.183170,0.002381,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183170,0.002381,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183170,0.002381,-0.003250,0.249979,0,0);}
.m4b_c00317{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.ma7_c00317{transform:matrix(0.183315,0.002383,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183315,0.002383,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183315,0.002383,-0.003250,0.249979,0,0);}
.mb7_c00317{transform:matrix(0.183320,0.002383,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183320,0.002383,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183320,0.002383,-0.003250,0.249979,0,0);}
.m1b_c00317{transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.184539,0.002399,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184539,0.002399,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184539,0.002399,-0.003250,0.249979,0,0);}
.m27_c00317{transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185315,0.000000,0.000000,0.250000,0,0);}
.mef_c00317{transform:matrix(0.185349,0.002410,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185349,0.002410,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185349,0.002410,-0.003250,0.249979,0,0);}
.m83_c00317{transform:matrix(0.186869,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186869,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186869,0.002429,-0.003250,0.249979,0,0);}
.m47_c00317{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.ma3_c00317{transform:matrix(0.187039,0.002432,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187039,0.002432,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187039,0.002432,-0.003250,0.249979,0,0);}
.m2a_c00317{transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);}
.ma8_c00317{transform:matrix(0.187889,0.002443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187889,0.002443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187889,0.002443,-0.003250,0.249979,0,0);}
.m82_c00317{transform:matrix(0.188099,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188099,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188099,0.002445,-0.003250,0.249979,0,0);}
.m77_c00317{transform:matrix(0.188419,0.002449,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188419,0.002449,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188419,0.002449,-0.003250,0.249979,0,0);}
.mcf_c00317{transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);}
.me_c00317{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{transform:matrix(0.189179,0.002459,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189179,0.002459,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189179,0.002459,-0.003250,0.249979,0,0);}
.m61_c00317{transform:matrix(0.189414,0.002462,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189414,0.002462,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189414,0.002462,-0.003250,0.249979,0,0);}
.m84_c00317{transform:matrix(0.189484,0.002463,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189484,0.002463,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189484,0.002463,-0.003250,0.249979,0,0);}
.m4e_c00317{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.me1_c00317{transform:matrix(0.190029,0.002470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190029,0.002470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190029,0.002470,-0.003250,0.249979,0,0);}
.mf4_c00317{transform:matrix(0.190074,0.002471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190074,0.002471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190074,0.002471,-0.003250,0.249979,0,0);}
.mba_c00317{transform:matrix(0.190459,0.002476,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190459,0.002476,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190459,0.002476,-0.003250,0.249979,0,0);}
.me9_c00317{transform:matrix(0.190864,0.002481,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190864,0.002481,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190864,0.002481,-0.003250,0.249979,0,0);}
.m33_c00317{transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);}
.mcd_c00317{transform:matrix(0.191619,0.002491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191619,0.002491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191619,0.002491,-0.003250,0.249979,0,0);}
.mac_c00317{transform:matrix(0.191669,0.002492,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191669,0.002492,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191669,0.002492,-0.003250,0.249979,0,0);}
.m10_c00317{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.mb6_c00317{transform:matrix(0.192364,0.002501,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192364,0.002501,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192364,0.002501,-0.003250,0.249979,0,0);}
.mcc_c00317{transform:matrix(0.193064,0.002510,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193064,0.002510,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193064,0.002510,-0.003250,0.249979,0,0);}
.m4a_c00317{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.mf2_c00317{transform:matrix(0.193664,0.002518,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193664,0.002518,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193664,0.002518,-0.003250,0.249979,0,0);}
.m86_c00317{transform:matrix(0.193894,0.002521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193894,0.002521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193894,0.002521,-0.003250,0.249979,0,0);}
.med_c00317{transform:matrix(0.194354,0.002527,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194354,0.002527,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194354,0.002527,-0.003250,0.249979,0,0);}
.m93_c00317{transform:matrix(0.195144,0.002537,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195144,0.002537,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195144,0.002537,-0.003250,0.249979,0,0);}
.mf5_c00317{transform:matrix(0.195378,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195378,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195378,0.002540,-0.003250,0.249979,0,0);}
.m37_c00317{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7e_c00317{transform:matrix(0.195593,0.002543,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195593,0.002543,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195593,0.002543,-0.003250,0.249979,0,0);}
.mc8_c00317{transform:matrix(0.195958,0.002547,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195958,0.002547,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195958,0.002547,-0.003250,0.249979,0,0);}
.m73_c00317{transform:matrix(0.196213,0.002551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196213,0.002551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196213,0.002551,-0.003250,0.249979,0,0);}
.m18_c00317{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m72_c00317{transform:matrix(0.196363,0.002553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196363,0.002553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196363,0.002553,-0.003250,0.249979,0,0);}
.m8a_c00317{transform:matrix(0.196448,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196448,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196448,0.002554,-0.003250,0.249979,0,0);}
.m13_c00317{transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.maa_c00317{transform:matrix(0.197248,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197248,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197248,0.002564,-0.003250,0.249979,0,0);}
.m7f_c00317{transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197428,0.002567,-0.003250,0.249979,0,0);}
.m1f_c00317{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.me4_c00317{transform:matrix(0.198263,0.002577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198263,0.002577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198263,0.002577,-0.003250,0.249979,0,0);}
.m64_c00317{transform:matrix(0.198443,0.002580,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198443,0.002580,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198443,0.002580,-0.003250,0.249979,0,0);}
.m89_c00317{transform:matrix(0.198563,0.002581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198563,0.002581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198563,0.002581,-0.003250,0.249979,0,0);}
.mf_c00317{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.me5_c00317{transform:matrix(0.198803,0.002584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198803,0.002584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198803,0.002584,-0.003250,0.249979,0,0);}
.ma4_c00317{transform:matrix(0.199463,0.002593,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199463,0.002593,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199463,0.002593,-0.003250,0.249979,0,0);}
.m23_c00317{transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00317{transform:matrix(0.199518,0.002594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199518,0.002594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199518,0.002594,-0.003250,0.249979,0,0);}
.maf_c00317{transform:matrix(0.199538,0.002594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199538,0.002594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199538,0.002594,-0.003250,0.249979,0,0);}
.m92_c00317{transform:matrix(0.199608,0.002595,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199608,0.002595,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199608,0.002595,-0.003250,0.249979,0,0);}
.m35_c00317{transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);}
.mdf_c00317{transform:matrix(0.199958,0.002599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199958,0.002599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199958,0.002599,-0.003250,0.249979,0,0);}
.m29_c00317{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.mbd_c00317{transform:matrix(0.200143,0.002602,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200143,0.002602,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200143,0.002602,-0.003250,0.249979,0,0);}
.md4_c00317{transform:matrix(0.200198,0.002603,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200198,0.002603,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200198,0.002603,-0.003250,0.249979,0,0);}
.mc6_c00317{transform:matrix(0.200943,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200943,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200943,0.002612,-0.003250,0.249979,0,0);}
.m55_c00317{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m80_c00317{transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201448,0.002619,-0.003250,0.249979,0,0);}
.m38_c00317{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00317{transform:matrix(0.202018,0.002626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202018,0.002626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202018,0.002626,-0.003250,0.249979,0,0);}
.me7_c00317{transform:matrix(0.202873,0.002637,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202873,0.002637,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202873,0.002637,-0.003250,0.249979,0,0);}
.ma0_c00317{transform:matrix(0.203063,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203063,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203063,0.002640,-0.003250,0.249979,0,0);}
.m6e_c00317{transform:matrix(0.203328,0.002643,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203328,0.002643,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203328,0.002643,-0.003250,0.249979,0,0);}
.m5c_c00317{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);}
.mbb_c00317{transform:matrix(0.205718,0.002674,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205718,0.002674,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205718,0.002674,-0.003250,0.249979,0,0);}
.m36_c00317{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205905,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.mbc_c00317{transform:matrix(0.206983,0.002691,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206983,0.002691,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206983,0.002691,-0.003250,0.249979,0,0);}
.m6_c00317{transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);}
.me2_c00317{transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207152,0.002693,-0.003250,0.249979,0,0);}
.m5a_c00317{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);}
.mc0_c00317{transform:matrix(0.208832,0.002715,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208832,0.002715,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208832,0.002715,-0.003250,0.249979,0,0);}
.mbf_c00317{transform:matrix(0.208942,0.002716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208942,0.002716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208942,0.002716,-0.003250,0.249979,0,0);}
.m54_c00317{transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);}
.mc9_c00317{transform:matrix(0.209357,0.002722,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209357,0.002722,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209357,0.002722,-0.003250,0.249979,0,0);}
.mea_c00317{transform:matrix(0.209732,0.002727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209732,0.002727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209732,0.002727,-0.003250,0.249979,0,0);}
.md9_c00317{transform:matrix(0.210787,0.002740,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210787,0.002740,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210787,0.002740,-0.003250,0.249979,0,0);}
.m9f_c00317{transform:matrix(0.210982,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210982,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210982,0.002743,-0.003250,0.249979,0,0);}
.m9c_c00317{transform:matrix(0.211047,0.002744,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211047,0.002744,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211047,0.002744,-0.003250,0.249979,0,0);}
.mc1_c00317{transform:matrix(0.211577,0.002751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211577,0.002751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211577,0.002751,-0.003250,0.249979,0,0);}
.m3d_c00317{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.md3_c00317{transform:matrix(0.212062,0.002757,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212062,0.002757,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212062,0.002757,-0.003250,0.249979,0,0);}
.m8f_c00317{transform:matrix(0.212177,0.002758,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212177,0.002758,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212177,0.002758,-0.003250,0.249979,0,0);}
.md8_c00317{transform:matrix(0.212817,0.002767,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212817,0.002767,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212817,0.002767,-0.003250,0.249979,0,0);}
.m42_c00317{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214115,0.000000,0.000000,0.250000,0,0);}
.m75_c00317{transform:matrix(0.214117,0.002784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214117,0.002784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214117,0.002784,-0.003250,0.249979,0,0);}
.m7c_c00317{transform:matrix(0.214542,0.002789,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214542,0.002789,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214542,0.002789,-0.003250,0.249979,0,0);}
.m95_c00317{transform:matrix(0.214687,0.002791,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214687,0.002791,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214687,0.002791,-0.003250,0.249979,0,0);}
.m79_c00317{transform:matrix(0.214812,0.002793,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214812,0.002793,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214812,0.002793,-0.003250,0.249979,0,0);}
.mc5_c00317{transform:matrix(0.214997,0.002795,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214997,0.002795,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214997,0.002795,-0.003250,0.249979,0,0);}
.m78_c00317{transform:matrix(0.215847,0.002806,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215847,0.002806,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215847,0.002806,-0.003250,0.249979,0,0);}
.ma2_c00317{transform:matrix(0.216467,0.002814,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216467,0.002814,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216467,0.002814,-0.003250,0.249979,0,0);}
.m88_c00317{transform:matrix(0.216512,0.002815,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216512,0.002815,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216512,0.002815,-0.003250,0.249979,0,0);}
.m7b_c00317{transform:matrix(0.217522,0.002828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217522,0.002828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217522,0.002828,-0.003250,0.249979,0,0);}
.m2e_c00317{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00317{transform:matrix(0.219451,0.002853,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219451,0.002853,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219451,0.002853,-0.003250,0.249979,0,0);}
.m87_c00317{transform:matrix(0.219856,0.002858,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219856,0.002858,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219856,0.002858,-0.003250,0.249979,0,0);}
.m85_c00317{transform:matrix(0.219931,0.002859,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219931,0.002859,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219931,0.002859,-0.003250,0.249979,0,0);}
.mc7_c00317{transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);}
.m99_c00317{transform:matrix(0.220516,0.002867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220516,0.002867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220516,0.002867,-0.003250,0.249979,0,0);}
.m51_c00317{transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);}
.md1_c00317{transform:matrix(0.221871,0.002884,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221871,0.002884,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221871,0.002884,-0.003250,0.249979,0,0);}
.mdb_c00317{transform:matrix(0.221966,0.002886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221966,0.002886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221966,0.002886,-0.003250,0.249979,0,0);}
.m9e_c00317{transform:matrix(0.222356,0.002891,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222356,0.002891,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222356,0.002891,-0.003250,0.249979,0,0);}
.m8d_c00317{transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);}
.m7a_c00317{transform:matrix(0.223281,0.002903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223281,0.002903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223281,0.002903,-0.003250,0.249979,0,0);}
.m94_c00317{transform:matrix(0.223991,0.002912,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223991,0.002912,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223991,0.002912,-0.003250,0.249979,0,0);}
.md2_c00317{transform:matrix(0.224556,0.002919,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224556,0.002919,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224556,0.002919,-0.003250,0.249979,0,0);}
.m8e_c00317{transform:matrix(0.225236,0.002928,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225236,0.002928,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225236,0.002928,-0.003250,0.249979,0,0);}
.m57_c00317{transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);}
.mdd_c00317{transform:matrix(0.225856,0.002936,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225856,0.002936,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225856,0.002936,-0.003250,0.249979,0,0);}
.m2f_c00317{transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);}
.m98_c00317{transform:matrix(0.226006,0.002938,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226006,0.002938,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226006,0.002938,-0.003250,0.249979,0,0);}
.mb2_c00317{transform:matrix(0.227211,0.002954,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227211,0.002954,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227211,0.002954,-0.003250,0.249979,0,0);}
.m7d_c00317{transform:matrix(0.228756,0.002974,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228756,0.002974,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228756,0.002974,-0.003250,0.249979,0,0);}
.mb4_c00317{transform:matrix(0.229366,0.002982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229366,0.002982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229366,0.002982,-0.003250,0.249979,0,0);}
.m74_c00317{transform:matrix(0.230845,0.003001,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230845,0.003001,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230845,0.003001,-0.003250,0.249979,0,0);}
.mc3_c00317{transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);}
.m90_c00317{transform:matrix(0.232310,0.003020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232310,0.003020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232310,0.003020,-0.003250,0.249979,0,0);}
.m4c_c00317{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00317{transform:matrix(0.234670,0.003051,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234670,0.003051,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234670,0.003051,-0.003250,0.249979,0,0);}
.m58_c00317{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m40_c00317{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.mb8_c00317{transform:matrix(0.235455,0.003061,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235455,0.003061,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235455,0.003061,-0.003250,0.249979,0,0);}
.m91_c00317{transform:matrix(0.236375,0.003073,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236375,0.003073,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236375,0.003073,-0.003250,0.249979,0,0);}
.m30_c00317{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m49_c00317{transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);}
.me0_c00317{transform:matrix(0.238300,0.003098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238300,0.003098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238300,0.003098,-0.003250,0.249979,0,0);}
.m44_c00317{transform:matrix(0.240305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240305,0.000000,0.000000,0.250000,0,0);}
.m50_c00317{transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);}
.m4d_c00317{transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.m6c_c00317{transform:matrix(0.241945,0.003145,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241945,0.003145,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241945,0.003145,-0.003250,0.249979,0,0);}
.m97_c00317{transform:matrix(0.242974,0.003159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242974,0.003159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242974,0.003159,-0.003250,0.249979,0,0);}
.m41_c00317{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);}
.md5_c00317{transform:matrix(0.257848,0.003352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257848,0.003352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257848,0.003352,-0.003250,0.249979,0,0);}
.m76_c00317{transform:matrix(0.268307,0.003488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268307,0.003488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268307,0.003488,-0.003250,0.249979,0,0);}
.mde_c00317{transform:matrix(0.274082,0.003563,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274082,0.003563,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274082,0.003563,-0.003250,0.249979,0,0);}
.m96_c00317{transform:matrix(0.294705,0.003831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294705,0.003831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294705,0.003831,-0.003250,0.249979,0,0);}
.m6d_c00317{transform:matrix(0.336257,0.004371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.336257,0.004371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.336257,0.004371,-0.003250,0.249979,0,0);}
.mb9_c00317{transform:matrix(0.350140,0.004552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.350140,0.004552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.350140,0.004552,-0.003250,0.249979,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:0.000000px;}
.fc0_c00317{color:transparent;}
.fsf_c00317{font-size:55.654702px;}
.fs5_c00317{font-size:57.750000px;}
.fs10_c00317{font-size:57.754880px;}
.fsd_c00317{font-size:58.804968px;}
.fs7_c00317{font-size:59.850000px;}
.fs11_c00317{font-size:59.855057px;}
.fs8_c00317{font-size:60.900000px;}
.fsa_c00317{font-size:60.905146px;}
.fs0_c00317{font-size:61.950000px;}
.fs6_c00317{font-size:63.000000px;}
.fsc_c00317{font-size:63.005323px;}
.fs3_c00317{font-size:64.050000px;}
.fs9_c00317{font-size:65.100000px;}
.fse_c00317{font-size:66.155589px;}
.fs12_c00317{font-size:67.205678px;}
.fs4_c00317{font-size:68.250000px;}
.fs2_c00317{font-size:69.300000px;}
.fsb_c00317{font-size:69.305856px;}
.fs1_c00317{font-size:70.350000px;}
.fs13_c00317{font-size:72.456122px;}
.y0_c00317{bottom:0.000000px;}
.yea_c00317{bottom:28.448595px;}
.ye9_c00317{bottom:28.617028px;}
.ye8_c00317{bottom:28.800985px;}
.ye7_c00317{bottom:29.549571px;}
.ye6_c00317{bottom:29.869624px;}
.ye5_c00317{bottom:30.036828px;}
.ye4_c00317{bottom:30.708607px;}
.ye3_c00317{bottom:30.993729px;}
.ye2_c00317{bottom:31.139362px;}
.ye1_c00317{bottom:31.564383px;}
.ye0_c00317{bottom:45.388935px;}
.ydf_c00317{bottom:45.557428px;}
.yde_c00317{bottom:46.321893px;}
.ydd_c00317{bottom:47.155060px;}
.ydc_c00317{bottom:47.988228px;}
.ydb_c00317{bottom:48.577548px;}
.yda_c00317{bottom:64.258221px;}
.yd9_c00317{bottom:64.258951px;}
.yd8_c00317{bottom:64.259622px;}
.yd7_c00317{bottom:64.259904px;}
.yd6_c00317{bottom:64.260064px;}
.yd3_c00317{bottom:64.260358px;}
.yd5_c00317{bottom:64.260765px;}
.yd2_c00317{bottom:64.260829px;}
.yd4_c00317{bottom:64.260916px;}
.yd1_c00317{bottom:79.775449px;}
.yd0_c00317{bottom:80.168571px;}
.ycf_c00317{bottom:80.403850px;}
.yce_c00317{bottom:80.705704px;}
.ycd_c00317{bottom:80.908408px;}
.ycc_c00317{bottom:81.110919px;}
.ycb_c00317{bottom:81.774937px;}
.yca_c00317{bottom:81.952441px;}
.yc9_c00317{bottom:82.144710px;}
.yc8_c00317{bottom:82.330834px;}
.yc3_c00317{bottom:98.148751px;}
.yc2_c00317{bottom:98.148892px;}
.yc6_c00317{bottom:98.149167px;}
.yc7_c00317{bottom:98.149264px;}
.yc4_c00317{bottom:98.149399px;}
.yc5_c00317{bottom:98.149888px;}
.yc1_c00317{bottom:114.064482px;}
.yc0_c00317{bottom:114.407842px;}
.ybf_c00317{bottom:114.957394px;}
.ybe_c00317{bottom:115.304538px;}
.ybd_c00317{bottom:116.020825px;}
.ybc_c00317{bottom:116.215666px;}
.ybb_c00317{bottom:116.623348px;}
.yb4_c00317{bottom:132.142173px;}
.yb3_c00317{bottom:132.142324px;}
.yb2_c00317{bottom:132.142635px;}
.yb5_c00317{bottom:132.142672px;}
.yb6_c00317{bottom:132.143052px;}
.yb8_c00317{bottom:132.143308px;}
.yb9_c00317{bottom:132.143328px;}
.yb7_c00317{bottom:132.143539px;}
.yba_c00317{bottom:132.143877px;}
.yb1_c00317{bottom:148.340652px;}
.yb0_c00317{bottom:148.849761px;}
.yaf_c00317{bottom:149.131287px;}
.yae_c00317{bottom:149.847114px;}
.yad_c00317{bottom:150.089520px;}
.yac_c00317{bottom:150.963778px;}
.yab_c00317{bottom:151.184400px;}
.yaa_c00317{bottom:164.822761px;}
.ya9_c00317{bottom:165.552451px;}
.ya8_c00317{bottom:165.773562px;}
.ya7_c00317{bottom:166.514328px;}
.ya6_c00317{bottom:166.878607px;}
.ya5_c00317{bottom:167.922091px;}
.ya4_c00317{bottom:168.129337px;}
.ya3_c00317{bottom:168.735885px;}
.ya2_c00317{bottom:182.739388px;}
.ya1_c00317{bottom:183.181558px;}
.ya0_c00317{bottom:183.825480px;}
.y9f_c00317{bottom:184.581460px;}
.y9e_c00317{bottom:184.966636px;}
.y9d_c00317{bottom:185.559902px;}
.y9c_c00317{bottom:185.825179px;}
.y9b_c00317{bottom:186.557723px;}
.y9a_c00317{bottom:200.525745px;}
.y99_c00317{bottom:201.144323px;}
.y98_c00317{bottom:201.717441px;}
.y97_c00317{bottom:202.657383px;}
.y96_c00317{bottom:203.278084px;}
.y95_c00317{bottom:203.976603px;}
.y94_c00317{bottom:204.649917px;}
.y93_c00317{bottom:217.481131px;}
.y92_c00317{bottom:218.363331px;}
.y91_c00317{bottom:218.702352px;}
.y90_c00317{bottom:219.265183px;}
.y8f_c00317{bottom:220.144302px;}
.y8e_c00317{bottom:220.906845px;}
.y8d_c00317{bottom:221.356045px;}
.y8c_c00317{bottom:221.660556px;}
.y8b_c00317{bottom:233.284785px;}
.y8a_c00317{bottom:233.608532px;}
.y89_c00317{bottom:234.279965px;}
.y88_c00317{bottom:235.814988px;}
.y87_c00317{bottom:236.288531px;}
.y86_c00317{bottom:237.449024px;}
.y85_c00317{bottom:237.863322px;}
.y84_c00317{bottom:251.193999px;}
.y83_c00317{bottom:251.527679px;}
.y82_c00317{bottom:251.825110px;}
.y81_c00317{bottom:252.725849px;}
.y80_c00317{bottom:252.907614px;}
.y7f_c00317{bottom:253.542489px;}
.y7e_c00317{bottom:254.381729px;}
.y7d_c00317{bottom:254.872782px;}
.y7c_c00317{bottom:267.516848px;}
.y7b_c00317{bottom:267.818382px;}
.y7a_c00317{bottom:268.426716px;}
.y79_c00317{bottom:268.884594px;}
.y78_c00317{bottom:269.616471px;}
.y77_c00317{bottom:270.196878px;}
.y76_c00317{bottom:270.351683px;}
.y75_c00317{bottom:270.802502px;}
.y74_c00317{bottom:284.096873px;}
.y73_c00317{bottom:284.360064px;}
.y72_c00317{bottom:285.142775px;}
.y71_c00317{bottom:285.689515px;}
.y70_c00317{bottom:286.336253px;}
.y6f_c00317{bottom:286.476496px;}
.y6e_c00317{bottom:287.543673px;}
.y68_c00317{bottom:303.510771px;}
.y6a_c00317{bottom:303.511269px;}
.y6c_c00317{bottom:303.511347px;}
.y6d_c00317{bottom:303.511395px;}
.y67_c00317{bottom:303.511472px;}
.y69_c00317{bottom:303.511520px;}
.y6b_c00317{bottom:303.511687px;}
.y66_c00317{bottom:317.811009px;}
.y65_c00317{bottom:318.372746px;}
.y64_c00317{bottom:318.685116px;}
.y63_c00317{bottom:318.951818px;}
.y62_c00317{bottom:319.748607px;}
.y61_c00317{bottom:319.969854px;}
.y60_c00317{bottom:320.714052px;}
.y5f_c00317{bottom:321.194922px;}
.y5e_c00317{bottom:321.566222px;}
.y5d_c00317{bottom:335.586768px;}
.y5c_c00317{bottom:335.924433px;}
.y5b_c00317{bottom:336.177931px;}
.y5a_c00317{bottom:336.642152px;}
.y59_c00317{bottom:336.825351px;}
.y58_c00317{bottom:336.989941px;}
.y57_c00317{bottom:337.187691px;}
.y56_c00317{bottom:337.851710px;}
.y55_c00317{bottom:338.578497px;}
.y54_c00317{bottom:353.249576px;}
.y53_c00317{bottom:353.684328px;}
.y52_c00317{bottom:353.996465px;}
.y51_c00317{bottom:354.787014px;}
.y50_c00317{bottom:355.077681px;}
.y4f_c00317{bottom:356.131500px;}
.y4e_c00317{bottom:371.985000px;}
.y4d_c00317{bottom:386.782500px;}
.y4c_c00317{bottom:387.042000px;}
.y4b_c00317{bottom:387.291000px;}
.y4a_c00317{bottom:387.490500px;}
.y49_c00317{bottom:388.284000px;}
.y48_c00317{bottom:388.590000px;}
.y47_c00317{bottom:388.875000px;}
.y46_c00317{bottom:389.457000px;}
.y45_c00317{bottom:389.713500px;}
.y44_c00317{bottom:390.106500px;}
.y43_c00317{bottom:390.426000px;}
.y42_c00317{bottom:403.234500px;}
.y41_c00317{bottom:404.004000px;}
.y40_c00317{bottom:404.335500px;}
.y3f_c00317{bottom:406.318500px;}
.y3e_c00317{bottom:406.512000px;}
.y3d_c00317{bottom:407.437500px;}
.y3c_c00317{bottom:420.558000px;}
.y3b_c00317{bottom:421.354500px;}
.y3a_c00317{bottom:421.621500px;}
.y39_c00317{bottom:422.041500px;}
.y38_c00317{bottom:422.731500px;}
.y37_c00317{bottom:423.010500px;}
.y36_c00317{bottom:424.018500px;}
.y35_c00317{bottom:424.410000px;}
.y34_c00317{bottom:424.714500px;}
.y33_c00317{bottom:437.614500px;}
.y32_c00317{bottom:438.003000px;}
.y31_c00317{bottom:439.416000px;}
.y30_c00317{bottom:440.158500px;}
.y2f_c00317{bottom:440.535000px;}
.y2e_c00317{bottom:440.941500px;}
.y2d_c00317{bottom:441.454500px;}
.y2c_c00317{bottom:455.011500px;}
.y2b_c00317{bottom:455.337000px;}
.y2a_c00317{bottom:455.506500px;}
.y29_c00317{bottom:456.457500px;}
.y28_c00317{bottom:457.096500px;}
.y27_c00317{bottom:457.468500px;}
.y26_c00317{bottom:457.693500px;}
.y25_c00317{bottom:458.196000px;}
.y24_c00317{bottom:471.349500px;}
.y23_c00317{bottom:471.948000px;}
.y22_c00317{bottom:472.132500px;}
.y21_c00317{bottom:473.275500px;}
.y20_c00317{bottom:473.452500px;}
.y1f_c00317{bottom:474.216000px;}
.y1e_c00317{bottom:475.206000px;}
.y1d_c00317{bottom:488.305500px;}
.y1c_c00317{bottom:488.824500px;}
.y1b_c00317{bottom:489.132000px;}
.y1a_c00317{bottom:489.598500px;}
.y19_c00317{bottom:490.398000px;}
.y18_c00317{bottom:490.689000px;}
.y17_c00317{bottom:491.320500px;}
.y16_c00317{bottom:491.673000px;}
.y15_c00317{bottom:505.809000px;}
.y14_c00317{bottom:506.071500px;}
.y13_c00317{bottom:506.317500px;}
.y12_c00317{bottom:506.596500px;}
.y11_c00317{bottom:506.748000px;}
.y10_c00317{bottom:507.393000px;}
.yf_c00317{bottom:507.591000px;}
.ye_c00317{bottom:508.245000px;}
.yd_c00317{bottom:508.681500px;}
.yc_c00317{bottom:522.181500px;}
.yb_c00317{bottom:522.414000px;}
.ya_c00317{bottom:522.774000px;}
.y9_c00317{bottom:523.017000px;}
.y8_c00317{bottom:523.807500px;}
.y7_c00317{bottom:524.011500px;}
.y6_c00317{bottom:524.251500px;}
.y5_c00317{bottom:524.905500px;}
.y4_c00317{bottom:525.151500px;}
.y3_c00317{bottom:540.850500px;}
.y2_c00317{bottom:557.290500px;}
.y1_c00317{bottom:572.397000px;}
.h11_c00317{height:55.654702px;}
.h7_c00317{height:57.750000px;}
.h12_c00317{height:57.754880px;}
.hf_c00317{height:58.804968px;}
.h9_c00317{height:59.850000px;}
.h13_c00317{height:59.855057px;}
.ha_c00317{height:60.900000px;}
.hc_c00317{height:60.905146px;}
.h2_c00317{height:61.950000px;}
.h8_c00317{height:63.000000px;}
.he_c00317{height:63.005323px;}
.h5_c00317{height:64.050000px;}
.hb_c00317{height:65.100000px;}
.h10_c00317{height:66.155589px;}
.h14_c00317{height:67.205678px;}
.h6_c00317{height:68.250000px;}
.h4_c00317{height:69.300000px;}
.hd_c00317{height:69.305856px;}
.h3_c00317{height:70.350000px;}
.h15_c00317{height:72.456122px;}
.h0_c00317{height:613.170000px;}
.h1_c00317{height:613.500000px;}
.w0_c00317{width:359.100000px;}
.w1_c00317{width:359.250000px;}
.x0_c00317{left:0.000000px;}
.x80_c00317{left:27.001464px;}
.x7b_c00317{left:29.351732px;}
.x73_c00317{left:31.703574px;}
.x69_c00317{left:33.589827px;}
.x57_c00317{left:34.955495px;}
.x51_c00317{left:36.178748px;}
.x3f_c00317{left:37.429500px;}
.x1f_c00317{left:39.552000px;}
.x3_c00317{left:41.310000px;}
.x7c_c00317{left:47.938953px;}
.x74_c00317{left:50.059308px;}
.x66_c00317{left:54.415989px;}
.x52_c00317{left:55.620524px;}
.x64_c00317{left:57.319653px;}
.x36_c00317{left:59.559000px;}
.x10_c00317{left:61.149000px;}
.x7a_c00317{left:63.454092px;}
.xb_c00317{left:64.530000px;}
.x4c_c00317{left:65.725086px;}
.x6a_c00317{left:67.264766px;}
.x20_c00317{left:68.961000px;}
.x30_c00317{left:70.810500px;}
.x5c_c00317{left:72.506882px;}
.x18_c00317{left:76.803000px;}
.x6e_c00317{left:79.744438px;}
.x4_c00317{left:82.080000px;}
.x67_c00317{left:84.353709px;}
.x37_c00317{left:85.698000px;}
.x40_c00317{left:92.181000px;}
.x2b_c00317{left:94.963500px;}
.x31_c00317{left:96.210000px;}
.x3c_c00317{left:97.626000px;}
.x4d_c00317{left:102.715086px;}
.x53_c00317{left:104.494292px;}
.xc_c00317{left:106.650000px;}
.x27_c00317{left:110.002500px;}
.x41_c00317{left:111.930000px;}
.x76_c00317{left:113.948964px;}
.x11_c00317{left:115.684500px;}
.x58_c00317{left:117.045995px;}
.x32_c00317{left:119.767500px;}
.x21_c00317{left:121.639500px;}
.x2c_c00317{left:123.571500px;}
.x54_c00317{left:125.286302px;}
.x59_c00317{left:127.833995px;}
.x60_c00317{left:129.197478px;}
.x19_c00317{left:131.355000px;}
.x5d_c00317{left:133.793181px;}
.x12_c00317{left:135.664500px;}
.x5_c00317{left:136.890000px;}
.x46_c00317{left:142.735500px;}
.x22_c00317{left:145.948500px;}
.x1a_c00317{left:147.835500px;}
.x78_c00317{left:151.131395px;}
.x13_c00317{left:152.685000px;}
.x6_c00317{left:154.710000px;}
.x42_c00317{left:156.721500px;}
.x4e_c00317{left:159.961086px;}
.xd_c00317{left:164.430000px;}
.x33_c00317{left:166.156500px;}
.x81_c00317{left:168.491871px;}
.x38_c00317{left:171.570000px;}
.x2d_c00317{left:172.668000px;}
.x61_c00317{left:174.571893px;}
.x6f_c00317{left:175.954438px;}
.x28_c00317{left:177.246000px;}
.x43_c00317{left:178.594500px;}
.x7_c00317{left:180.360000px;}
.x84_c00317{left:181.365537px;}
.x55_c00317{left:183.071571px;}
.x1_c00317{left:186.300000px;}
.x62_c00317{left:187.515218px;}
.x45_c00317{left:190.077000px;}
.x7d_c00317{left:191.868069px;}
.x68_c00317{left:193.786362px;}
.x5e_c00317{left:194.822981px;}
.x49_c00317{left:196.450975px;}
.x1b_c00317{left:201.625500px;}
.x75_c00317{left:202.906817px;}
.x70_c00317{left:203.975938px;}
.xe_c00317{left:206.010000px;}
.x6b_c00317{left:208.850376px;}
.x85_c00317{left:210.485798px;}
.x23_c00317{left:212.632500px;}
.x1c_c00317{left:214.269000px;}
.x82_c00317{left:216.410802px;}
.x39_c00317{left:217.536000px;}
.x14_c00317{left:218.617500px;}
.x5a_c00317{left:219.639995px;}
.x7e_c00317{left:222.127259px;}
.x47_c00317{left:225.906000px;}
.x6c_c00317{left:228.001005px;}
.x77_c00317{left:229.247964px;}
.x4a_c00317{left:231.282340px;}
.x79_c00317{left:232.687020px;}
.x3d_c00317{left:233.724000px;}
.xf_c00317{left:236.520000px;}
.x1d_c00317{left:237.522000px;}
.x15_c00317{left:238.867500px;}
.x2e_c00317{left:245.842500px;}
.x48_c00317{left:249.916500px;}
.x24_c00317{left:251.568000px;}
.x34_c00317{left:254.428500px;}
.x1e_c00317{left:257.980500px;}
.x8_c00317{left:259.740000px;}
.x71_c00317{left:260.957939px;}
.x3a_c00317{left:263.356500px;}
.x16_c00317{left:268.827000px;}
.x65_c00317{left:270.689789px;}
.x29_c00317{left:272.001000px;}
.x63_c00317{left:273.104106px;}
.x56_c00317{left:274.609535px;}
.x25_c00317{left:277.156500px;}
.x35_c00317{left:278.718000px;}
.x9_c00317{left:279.720000px;}
.x4f_c00317{left:282.815586px;}
.x2f_c00317{left:283.893000px;}
.x7f_c00317{left:285.006716px;}
.x17_c00317{left:288.205500px;}
.x83_c00317{left:294.177816px;}
.x86_c00317{left:295.260501px;}
.xa_c00317{left:297.540000px;}
.x5b_c00317{left:300.093995px;}
.x3e_c00317{left:302.479500px;}
.x6d_c00317{left:305.545491px;}
.x5f_c00317{left:308.804963px;}
.x87_c00317{left:310.640411px;}
.x2_c00317{left:311.850000px;}
.x2a_c00317{left:314.701500px;}
.x3b_c00317{left:316.506000px;}
.x44_c00317{left:317.634000px;}
.x26_c00317{left:320.376000px;}
.x50_c00317{left:326.026086px;}
.x72_c00317{left:334.096439px;}
.x4b_c00317{left:336.815955px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fsf_c00317{font-size:49.470846pt;}
.fs5_c00317{font-size:51.333333pt;}
.fs10_c00317{font-size:51.337671pt;}
.fsd_c00317{font-size:52.271083pt;}
.fs7_c00317{font-size:53.200000pt;}
.fs11_c00317{font-size:53.204495pt;}
.fs8_c00317{font-size:54.133333pt;}
.fsa_c00317{font-size:54.137907pt;}
.fs0_c00317{font-size:55.066667pt;}
.fs6_c00317{font-size:56.000000pt;}
.fsc_c00317{font-size:56.004732pt;}
.fs3_c00317{font-size:56.933333pt;}
.fs9_c00317{font-size:57.866667pt;}
.fse_c00317{font-size:58.804968pt;}
.fs12_c00317{font-size:59.738381pt;}
.fs4_c00317{font-size:60.666667pt;}
.fs2_c00317{font-size:61.600000pt;}
.fsb_c00317{font-size:61.605205pt;}
.fs1_c00317{font-size:62.533333pt;}
.fs13_c00317{font-size:64.405442pt;}
.y0_c00317{bottom:0.000000pt;}
.yea_c00317{bottom:25.287640pt;}
.ye9_c00317{bottom:25.437359pt;}
.ye8_c00317{bottom:25.600876pt;}
.ye7_c00317{bottom:26.266285pt;}
.ye6_c00317{bottom:26.550777pt;}
.ye5_c00317{bottom:26.699403pt;}
.ye4_c00317{bottom:27.296540pt;}
.ye3_c00317{bottom:27.549981pt;}
.ye2_c00317{bottom:27.679433pt;}
.ye1_c00317{bottom:28.057229pt;}
.ye0_c00317{bottom:40.345720pt;}
.ydf_c00317{bottom:40.495492pt;}
.yde_c00317{bottom:41.175016pt;}
.ydd_c00317{bottom:41.915609pt;}
.ydc_c00317{bottom:42.656203pt;}
.ydb_c00317{bottom:43.180043pt;}
.yda_c00317{bottom:57.118419pt;}
.yd9_c00317{bottom:57.119068pt;}
.yd8_c00317{bottom:57.119664pt;}
.yd7_c00317{bottom:57.119915pt;}
.yd6_c00317{bottom:57.120057pt;}
.yd3_c00317{bottom:57.120319pt;}
.yd5_c00317{bottom:57.120680pt;}
.yd2_c00317{bottom:57.120737pt;}
.yd4_c00317{bottom:57.120815pt;}
.yd1_c00317{bottom:70.911511pt;}
.yd0_c00317{bottom:71.260952pt;}
.ycf_c00317{bottom:71.470089pt;}
.yce_c00317{bottom:71.738404pt;}
.ycd_c00317{bottom:71.918585pt;}
.ycc_c00317{bottom:72.098595pt;}
.ycb_c00317{bottom:72.688833pt;}
.yca_c00317{bottom:72.846615pt;}
.yc9_c00317{bottom:73.017520pt;}
.yc8_c00317{bottom:73.182964pt;}
.yc3_c00317{bottom:87.243335pt;}
.yc2_c00317{bottom:87.243460pt;}
.yc6_c00317{bottom:87.243704pt;}
.yc7_c00317{bottom:87.243791pt;}
.yc4_c00317{bottom:87.243911pt;}
.yc5_c00317{bottom:87.244345pt;}
.yc1_c00317{bottom:101.390651pt;}
.yc0_c00317{bottom:101.695860pt;}
.ybf_c00317{bottom:102.184351pt;}
.ybe_c00317{bottom:102.492923pt;}
.ybd_c00317{bottom:103.129623pt;}
.ybc_c00317{bottom:103.302815pt;}
.ybb_c00317{bottom:103.665199pt;}
.yb4_c00317{bottom:117.459709pt;}
.yb3_c00317{bottom:117.459844pt;}
.yb2_c00317{bottom:117.460120pt;}
.yb5_c00317{bottom:117.460153pt;}
.yb6_c00317{bottom:117.460491pt;}
.yb8_c00317{bottom:117.460719pt;}
.yb9_c00317{bottom:117.460736pt;}
.yb7_c00317{bottom:117.460924pt;}
.yba_c00317{bottom:117.461224pt;}
.yb1_c00317{bottom:131.858357pt;}
.yb0_c00317{bottom:132.310899pt;}
.yaf_c00317{bottom:132.561144pt;}
.yae_c00317{bottom:133.197435pt;}
.yad_c00317{bottom:133.412907pt;}
.yac_c00317{bottom:134.190025pt;}
.yab_c00317{bottom:134.386133pt;}
.yaa_c00317{bottom:146.509121pt;}
.ya9_c00317{bottom:147.157735pt;}
.ya8_c00317{bottom:147.354277pt;}
.ya7_c00317{bottom:148.012736pt;}
.ya6_c00317{bottom:148.336540pt;}
.ya5_c00317{bottom:149.264081pt;}
.ya4_c00317{bottom:149.448300pt;}
.ya3_c00317{bottom:149.987453pt;}
.ya2_c00317{bottom:162.435012pt;}
.ya1_c00317{bottom:162.828052pt;}
.ya0_c00317{bottom:163.400427pt;}
.y9f_c00317{bottom:164.072409pt;}
.y9e_c00317{bottom:164.414788pt;}
.y9d_c00317{bottom:164.942135pt;}
.y9c_c00317{bottom:165.177937pt;}
.y9b_c00317{bottom:165.829087pt;}
.y9a_c00317{bottom:178.245107pt;}
.y99_c00317{bottom:178.794953pt;}
.y98_c00317{bottom:179.304392pt;}
.y97_c00317{bottom:180.139896pt;}
.y96_c00317{bottom:180.691631pt;}
.y95_c00317{bottom:181.312536pt;}
.y94_c00317{bottom:181.911037pt;}
.y93_c00317{bottom:193.316561pt;}
.y92_c00317{bottom:194.100739pt;}
.y91_c00317{bottom:194.402091pt;}
.y90_c00317{bottom:194.902385pt;}
.y8f_c00317{bottom:195.683824pt;}
.y8e_c00317{bottom:196.361640pt;}
.y8d_c00317{bottom:196.760929pt;}
.y8c_c00317{bottom:197.031605pt;}
.y8b_c00317{bottom:207.364253pt;}
.y8a_c00317{bottom:207.652028pt;}
.y89_c00317{bottom:208.248857pt;}
.y88_c00317{bottom:209.613323pt;}
.y87_c00317{bottom:210.034249pt;}
.y86_c00317{bottom:211.065799pt;}
.y85_c00317{bottom:211.434064pt;}
.y84_c00317{bottom:223.283555pt;}
.y83_c00317{bottom:223.580159pt;}
.y82_c00317{bottom:223.844543pt;}
.y81_c00317{bottom:224.645199pt;}
.y80_c00317{bottom:224.806768pt;}
.y7f_c00317{bottom:225.371101pt;}
.y7e_c00317{bottom:226.117092pt;}
.y7d_c00317{bottom:226.553584pt;}
.y7c_c00317{bottom:237.792753pt;}
.y7b_c00317{bottom:238.060784pt;}
.y7a_c00317{bottom:238.601525pt;}
.y79_c00317{bottom:239.008528pt;}
.y78_c00317{bottom:239.659085pt;}
.y77_c00317{bottom:240.175003pt;}
.y76_c00317{bottom:240.312607pt;}
.y75_c00317{bottom:240.713335pt;}
.y74_c00317{bottom:252.530553pt;}
.y73_c00317{bottom:252.764501pt;}
.y72_c00317{bottom:253.460244pt;}
.y71_c00317{bottom:253.946236pt;}
.y70_c00317{bottom:254.521113pt;}
.y6f_c00317{bottom:254.645775pt;}
.y6e_c00317{bottom:255.594376pt;}
.y68_c00317{bottom:269.787352pt;}
.y6a_c00317{bottom:269.787795pt;}
.y6c_c00317{bottom:269.787864pt;}
.y6d_c00317{bottom:269.787907pt;}
.y67_c00317{bottom:269.787975pt;}
.y69_c00317{bottom:269.788017pt;}
.y6b_c00317{bottom:269.788167pt;}
.y66_c00317{bottom:282.498675pt;}
.y65_c00317{bottom:282.997996pt;}
.y64_c00317{bottom:283.275659pt;}
.y63_c00317{bottom:283.512727pt;}
.y62_c00317{bottom:284.220984pt;}
.y61_c00317{bottom:284.417648pt;}
.y60_c00317{bottom:285.079157pt;}
.y5f_c00317{bottom:285.506597pt;}
.y5e_c00317{bottom:285.836641pt;}
.y5d_c00317{bottom:298.299349pt;}
.y5c_c00317{bottom:298.599496pt;}
.y5b_c00317{bottom:298.824828pt;}
.y5a_c00317{bottom:299.237468pt;}
.y59_c00317{bottom:299.400312pt;}
.y58_c00317{bottom:299.546615pt;}
.y57_c00317{bottom:299.722392pt;}
.y56_c00317{bottom:300.312631pt;}
.y55_c00317{bottom:300.958664pt;}
.y54_c00317{bottom:313.999623pt;}
.y53_c00317{bottom:314.386069pt;}
.y52_c00317{bottom:314.663524pt;}
.y51_c00317{bottom:315.366235pt;}
.y50_c00317{bottom:315.624605pt;}
.y4f_c00317{bottom:316.561333pt;}
.y4e_c00317{bottom:330.653333pt;}
.y4d_c00317{bottom:343.806667pt;}
.y4c_c00317{bottom:344.037333pt;}
.y4b_c00317{bottom:344.258667pt;}
.y4a_c00317{bottom:344.436000pt;}
.y49_c00317{bottom:345.141333pt;}
.y48_c00317{bottom:345.413333pt;}
.y47_c00317{bottom:345.666667pt;}
.y46_c00317{bottom:346.184000pt;}
.y45_c00317{bottom:346.412000pt;}
.y44_c00317{bottom:346.761333pt;}
.y43_c00317{bottom:347.045333pt;}
.y42_c00317{bottom:358.430667pt;}
.y41_c00317{bottom:359.114667pt;}
.y40_c00317{bottom:359.409333pt;}
.y3f_c00317{bottom:361.172000pt;}
.y3e_c00317{bottom:361.344000pt;}
.y3d_c00317{bottom:362.166667pt;}
.y3c_c00317{bottom:373.829333pt;}
.y3b_c00317{bottom:374.537333pt;}
.y3a_c00317{bottom:374.774667pt;}
.y39_c00317{bottom:375.148000pt;}
.y38_c00317{bottom:375.761333pt;}
.y37_c00317{bottom:376.009333pt;}
.y36_c00317{bottom:376.905333pt;}
.y35_c00317{bottom:377.253333pt;}
.y34_c00317{bottom:377.524000pt;}
.y33_c00317{bottom:388.990667pt;}
.y32_c00317{bottom:389.336000pt;}
.y31_c00317{bottom:390.592000pt;}
.y30_c00317{bottom:391.252000pt;}
.y2f_c00317{bottom:391.586667pt;}
.y2e_c00317{bottom:391.948000pt;}
.y2d_c00317{bottom:392.404000pt;}
.y2c_c00317{bottom:404.454667pt;}
.y2b_c00317{bottom:404.744000pt;}
.y2a_c00317{bottom:404.894667pt;}
.y29_c00317{bottom:405.740000pt;}
.y28_c00317{bottom:406.308000pt;}
.y27_c00317{bottom:406.638667pt;}
.y26_c00317{bottom:406.838667pt;}
.y25_c00317{bottom:407.285333pt;}
.y24_c00317{bottom:418.977333pt;}
.y23_c00317{bottom:419.509333pt;}
.y22_c00317{bottom:419.673333pt;}
.y21_c00317{bottom:420.689333pt;}
.y20_c00317{bottom:420.846667pt;}
.y1f_c00317{bottom:421.525333pt;}
.y1e_c00317{bottom:422.405333pt;}
.y1d_c00317{bottom:434.049333pt;}
.y1c_c00317{bottom:434.510667pt;}
.y1b_c00317{bottom:434.784000pt;}
.y1a_c00317{bottom:435.198667pt;}
.y19_c00317{bottom:435.909333pt;}
.y18_c00317{bottom:436.168000pt;}
.y17_c00317{bottom:436.729333pt;}
.y16_c00317{bottom:437.042667pt;}
.y15_c00317{bottom:449.608000pt;}
.y14_c00317{bottom:449.841333pt;}
.y13_c00317{bottom:450.060000pt;}
.y12_c00317{bottom:450.308000pt;}
.y11_c00317{bottom:450.442667pt;}
.y10_c00317{bottom:451.016000pt;}
.yf_c00317{bottom:451.192000pt;}
.ye_c00317{bottom:451.773333pt;}
.yd_c00317{bottom:452.161333pt;}
.yc_c00317{bottom:464.161333pt;}
.yb_c00317{bottom:464.368000pt;}
.ya_c00317{bottom:464.688000pt;}
.y9_c00317{bottom:464.904000pt;}
.y8_c00317{bottom:465.606667pt;}
.y7_c00317{bottom:465.788000pt;}
.y6_c00317{bottom:466.001333pt;}
.y5_c00317{bottom:466.582667pt;}
.y4_c00317{bottom:466.801333pt;}
.y3_c00317{bottom:480.756000pt;}
.y2_c00317{bottom:495.369333pt;}
.y1_c00317{bottom:508.797333pt;}
.h11_c00317{height:49.470846pt;}
.h7_c00317{height:51.333333pt;}
.h12_c00317{height:51.337671pt;}
.hf_c00317{height:52.271083pt;}
.h9_c00317{height:53.200000pt;}
.h13_c00317{height:53.204495pt;}
.ha_c00317{height:54.133333pt;}
.hc_c00317{height:54.137907pt;}
.h2_c00317{height:55.066667pt;}
.h8_c00317{height:56.000000pt;}
.he_c00317{height:56.004732pt;}
.h5_c00317{height:56.933333pt;}
.hb_c00317{height:57.866667pt;}
.h10_c00317{height:58.804968pt;}
.h14_c00317{height:59.738381pt;}
.h6_c00317{height:60.666667pt;}
.h4_c00317{height:61.600000pt;}
.hd_c00317{height:61.605205pt;}
.h3_c00317{height:62.533333pt;}
.h15_c00317{height:64.405442pt;}
.h0_c00317{height:545.040000pt;}
.h1_c00317{height:545.333333pt;}
.w0_c00317{width:319.200000pt;}
.w1_c00317{width:319.333333pt;}
.x0_c00317{left:0.000000pt;}
.x80_c00317{left:24.001301pt;}
.x7b_c00317{left:26.090428pt;}
.x73_c00317{left:28.180955pt;}
.x69_c00317{left:29.857624pt;}
.x57_c00317{left:31.071551pt;}
.x51_c00317{left:32.158887pt;}
.x3f_c00317{left:33.270667pt;}
.x1f_c00317{left:35.157333pt;}
.x3_c00317{left:36.720000pt;}
.x7c_c00317{left:42.612403pt;}
.x74_c00317{left:44.497163pt;}
.x66_c00317{left:48.369768pt;}
.x52_c00317{left:49.440465pt;}
.x64_c00317{left:50.950803pt;}
.x36_c00317{left:52.941333pt;}
.x10_c00317{left:54.354667pt;}
.x7a_c00317{left:56.403637pt;}
.xb_c00317{left:57.360000pt;}
.x4c_c00317{left:58.422299pt;}
.x6a_c00317{left:59.790903pt;}
.x20_c00317{left:61.298667pt;}
.x30_c00317{left:62.942667pt;}
.x5c_c00317{left:64.450561pt;}
.x18_c00317{left:68.269333pt;}
.x6e_c00317{left:70.883945pt;}
.x4_c00317{left:72.960000pt;}
.x67_c00317{left:74.981075pt;}
.x37_c00317{left:76.176000pt;}
.x40_c00317{left:81.938667pt;}
.x2b_c00317{left:84.412000pt;}
.x31_c00317{left:85.520000pt;}
.x3c_c00317{left:86.778667pt;}
.x4d_c00317{left:91.302299pt;}
.x53_c00317{left:92.883815pt;}
.xc_c00317{left:94.800000pt;}
.x27_c00317{left:97.780000pt;}
.x41_c00317{left:99.493333pt;}
.x76_c00317{left:101.287968pt;}
.x11_c00317{left:102.830667pt;}
.x58_c00317{left:104.040884pt;}
.x32_c00317{left:106.460000pt;}
.x21_c00317{left:108.124000pt;}
.x2c_c00317{left:109.841333pt;}
.x54_c00317{left:111.365601pt;}
.x59_c00317{left:113.630217pt;}
.x60_c00317{left:114.842203pt;}
.x19_c00317{left:116.760000pt;}
.x5d_c00317{left:118.927272pt;}
.x12_c00317{left:120.590667pt;}
.x5_c00317{left:121.680000pt;}
.x46_c00317{left:126.876000pt;}
.x22_c00317{left:129.732000pt;}
.x1a_c00317{left:131.409333pt;}
.x78_c00317{left:134.339017pt;}
.x13_c00317{left:135.720000pt;}
.x6_c00317{left:137.520000pt;}
.x42_c00317{left:139.308000pt;}
.x4e_c00317{left:142.187632pt;}
.xd_c00317{left:146.160000pt;}
.x33_c00317{left:147.694667pt;}
.x81_c00317{left:149.770552pt;}
.x38_c00317{left:152.506667pt;}
.x2d_c00317{left:153.482667pt;}
.x61_c00317{left:155.175016pt;}
.x6f_c00317{left:156.403945pt;}
.x28_c00317{left:157.552000pt;}
.x43_c00317{left:158.750667pt;}
.x7_c00317{left:160.320000pt;}
.x84_c00317{left:161.213811pt;}
.x55_c00317{left:162.730285pt;}
.x1_c00317{left:165.600000pt;}
.x62_c00317{left:166.680193pt;}
.x45_c00317{left:168.957333pt;}
.x7d_c00317{left:170.549395pt;}
.x68_c00317{left:172.254544pt;}
.x5e_c00317{left:173.175983pt;}
.x49_c00317{left:174.623089pt;}
.x1b_c00317{left:179.222667pt;}
.x75_c00317{left:180.361615pt;}
.x70_c00317{left:181.311945pt;}
.xe_c00317{left:183.120000pt;}
.x6b_c00317{left:185.644779pt;}
.x85_c00317{left:187.098487pt;}
.x23_c00317{left:189.006667pt;}
.x1c_c00317{left:190.461333pt;}
.x82_c00317{left:192.365157pt;}
.x39_c00317{left:193.365333pt;}
.x14_c00317{left:194.326667pt;}
.x5a_c00317{left:195.235551pt;}
.x7e_c00317{left:197.446452pt;}
.x47_c00317{left:200.805333pt;}
.x6c_c00317{left:202.667560pt;}
.x77_c00317{left:203.775968pt;}
.x4a_c00317{left:205.584303pt;}
.x79_c00317{left:206.832907pt;}
.x3d_c00317{left:207.754667pt;}
.xf_c00317{left:210.240000pt;}
.x1d_c00317{left:211.130667pt;}
.x15_c00317{left:212.326667pt;}
.x2e_c00317{left:218.526667pt;}
.x48_c00317{left:222.148000pt;}
.x24_c00317{left:223.616000pt;}
.x34_c00317{left:226.158667pt;}
.x1e_c00317{left:229.316000pt;}
.x8_c00317{left:230.880000pt;}
.x71_c00317{left:231.962612pt;}
.x3a_c00317{left:234.094667pt;}
.x16_c00317{left:238.957333pt;}
.x65_c00317{left:240.613145pt;}
.x29_c00317{left:241.778667pt;}
.x63_c00317{left:242.759205pt;}
.x56_c00317{left:244.097364pt;}
.x25_c00317{left:246.361333pt;}
.x35_c00317{left:247.749333pt;}
.x9_c00317{left:248.640000pt;}
.x4f_c00317{left:251.391632pt;}
.x2f_c00317{left:252.349333pt;}
.x7f_c00317{left:253.339303pt;}
.x17_c00317{left:256.182667pt;}
.x83_c00317{left:261.491392pt;}
.x86_c00317{left:262.453779pt;}
.xa_c00317{left:264.480000pt;}
.x5b_c00317{left:266.750217pt;}
.x3e_c00317{left:268.870667pt;}
.x6d_c00317{left:271.595992pt;}
.x5f_c00317{left:274.493300pt;}
.x87_c00317{left:276.124809pt;}
.x2_c00317{left:277.200000pt;}
.x2a_c00317{left:279.734667pt;}
.x3b_c00317{left:281.338667pt;}
.x44_c00317{left:282.341333pt;}
.x26_c00317{left:284.778667pt;}
.x50_c00317{left:289.800965pt;}
.x72_c00317{left:296.974612pt;}
.x4b_c00317{left:299.391960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00318 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00318 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00318 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00318 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00318.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00318{transform:matrix(0.066420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066420,0.000000,0.000000,0.250000,0,0);}
.md6_c00318{transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136160,0.000000,0.000000,0.250000,0,0);}
.ma5_c00318{transform:matrix(0.139470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139470,0.000000,0.000000,0.250000,0,0);}
.mec_c00318{transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148355,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);-ms-transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148818,-0.002530,0.004249,0.249964,0,0);}
.m30_c00318{transform:matrix(0.154193,-0.002621,0.004249,0.249964,0,0);-ms-transform:matrix(0.154193,-0.002621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154193,-0.002621,0.004249,0.249964,0,0);}
.mc1_c00318{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.156027,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.156027,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156027,-0.002652,0.004249,0.249964,0,0);}
.ma9_c00318{transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{transform:matrix(0.157487,-0.002677,0.004249,0.249964,0,0);-ms-transform:matrix(0.157487,-0.002677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157487,-0.002677,0.004249,0.249964,0,0);}
.m1b_c00318{transform:matrix(0.158312,-0.002691,0.004249,0.249964,0,0);-ms-transform:matrix(0.158312,-0.002691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158312,-0.002691,0.004249,0.249964,0,0);}
.m4_c00318{transform:matrix(0.159302,-0.002708,0.004249,0.249964,0,0);-ms-transform:matrix(0.159302,-0.002708,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159302,-0.002708,0.004249,0.249964,0,0);}
.mb5_c00318{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.162157,-0.002757,0.004249,0.249964,0,0);-ms-transform:matrix(0.162157,-0.002757,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162157,-0.002757,0.004249,0.249964,0,0);}
.m93_c00318{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);-ms-transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);}
.mae_c00318{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.163351,-0.002777,0.004249,0.249964,0,0);-ms-transform:matrix(0.163351,-0.002777,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163351,-0.002777,0.004249,0.249964,0,0);}
.mbc_c00318{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m82_c00318{transform:matrix(0.166471,-0.002830,0.004249,0.249964,0,0);-ms-transform:matrix(0.166471,-0.002830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166471,-0.002830,0.004249,0.249964,0,0);}
.ma4_c00318{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.md4_c00318{transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{transform:matrix(0.167601,-0.002849,0.004249,0.249964,0,0);-ms-transform:matrix(0.167601,-0.002849,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167601,-0.002849,0.004249,0.249964,0,0);}
.m1f_c00318{transform:matrix(0.167626,-0.002850,0.004249,0.249964,0,0);-ms-transform:matrix(0.167626,-0.002850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167626,-0.002850,0.004249,0.249964,0,0);}
.m12_c00318{transform:matrix(0.168091,-0.002858,0.004249,0.249964,0,0);-ms-transform:matrix(0.168091,-0.002858,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168091,-0.002858,0.004249,0.249964,0,0);}
.m35_c00318{transform:matrix(0.169695,-0.002885,0.004249,0.249964,0,0);-ms-transform:matrix(0.169695,-0.002885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169695,-0.002885,0.004249,0.249964,0,0);}
.m5a_c00318{transform:matrix(0.170125,-0.002892,0.004249,0.249964,0,0);-ms-transform:matrix(0.170125,-0.002892,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170125,-0.002892,0.004249,0.249964,0,0);}
.m41_c00318{transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);-ms-transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);}
.mb7_c00318{transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);}
.mb4_c00318{transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);}
.ma8_c00318{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.mf0_c00318{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.172700,-0.002936,0.004249,0.249964,0,0);-ms-transform:matrix(0.172700,-0.002936,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172700,-0.002936,0.004249,0.249964,0,0);}
.m89_c00318{transform:matrix(0.173790,-0.002954,0.004249,0.249964,0,0);-ms-transform:matrix(0.173790,-0.002954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173790,-0.002954,0.004249,0.249964,0,0);}
.m26_c00318{transform:matrix(0.173835,-0.002955,0.004249,0.249964,0,0);-ms-transform:matrix(0.173835,-0.002955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173835,-0.002955,0.004249,0.249964,0,0);}
.mbe_c00318{transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.175545,-0.002984,0.004249,0.249964,0,0);-ms-transform:matrix(0.175545,-0.002984,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175545,-0.002984,0.004249,0.249964,0,0);}
.m3b_c00318{transform:matrix(0.176170,-0.002995,0.004249,0.249964,0,0);-ms-transform:matrix(0.176170,-0.002995,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176170,-0.002995,0.004249,0.249964,0,0);}
.m6d_c00318{transform:matrix(0.176974,-0.003009,0.004249,0.249964,0,0);-ms-transform:matrix(0.176974,-0.003009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176974,-0.003009,0.004249,0.249964,0,0);}
.me8_c00318{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.177094,-0.003011,0.004249,0.249964,0,0);-ms-transform:matrix(0.177094,-0.003011,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177094,-0.003011,0.004249,0.249964,0,0);}
.m81_c00318{transform:matrix(0.177139,-0.003011,0.004249,0.249964,0,0);-ms-transform:matrix(0.177139,-0.003011,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177139,-0.003011,0.004249,0.249964,0,0);}
.m9b_c00318{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.177429,-0.003016,0.004249,0.249964,0,0);-ms-transform:matrix(0.177429,-0.003016,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177429,-0.003016,0.004249,0.249964,0,0);}
.ma3_c00318{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m85_c00318{transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);-ms-transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178224,-0.003030,0.004249,0.249964,0,0);}
.m21_c00318{transform:matrix(0.179039,-0.003044,0.004249,0.249964,0,0);-ms-transform:matrix(0.179039,-0.003044,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179039,-0.003044,0.004249,0.249964,0,0);}
.mb8_c00318{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.179659,-0.003054,0.004249,0.249964,0,0);-ms-transform:matrix(0.179659,-0.003054,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179659,-0.003054,0.004249,0.249964,0,0);}
.mba_c00318{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.me7_c00318{transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.180219,-0.003064,0.004249,0.249964,0,0);-ms-transform:matrix(0.180219,-0.003064,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180219,-0.003064,0.004249,0.249964,0,0);}
.m4b_c00318{transform:matrix(0.180274,-0.003065,0.004249,0.249964,0,0);-ms-transform:matrix(0.180274,-0.003065,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180274,-0.003065,0.004249,0.249964,0,0);}
.m7f_c00318{transform:matrix(0.180784,-0.003073,0.004249,0.249964,0,0);-ms-transform:matrix(0.180784,-0.003073,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180784,-0.003073,0.004249,0.249964,0,0);}
.m42_c00318{transform:matrix(0.181174,-0.003080,0.004249,0.249964,0,0);-ms-transform:matrix(0.181174,-0.003080,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181174,-0.003080,0.004249,0.249964,0,0);}
.med_c00318{transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);}
.mc3_c00318{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.mcf_c00318{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.mb3_c00318{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);-ms-transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);}
.m8c_c00318{transform:matrix(0.182360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182360,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);-ms-transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);}
.mef_c00318{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.183374,-0.003117,0.004249,0.249964,0,0);-ms-transform:matrix(0.183374,-0.003117,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183374,-0.003117,0.004249,0.249964,0,0);}
.ma7_c00318{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m94_c00318{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.mad_c00318{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.184758,-0.003141,0.004249,0.249964,0,0);-ms-transform:matrix(0.184758,-0.003141,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184758,-0.003141,0.004249,0.249964,0,0);}
.md0_c00318{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m84_c00318{transform:matrix(0.185123,-0.003147,0.004249,0.249964,0,0);-ms-transform:matrix(0.185123,-0.003147,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185123,-0.003147,0.004249,0.249964,0,0);}
.m2e_c00318{transform:matrix(0.185228,-0.003149,0.004249,0.249964,0,0);-ms-transform:matrix(0.185228,-0.003149,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185228,-0.003149,0.004249,0.249964,0,0);}
.m91_c00318{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.185588,-0.003155,0.004249,0.249964,0,0);-ms-transform:matrix(0.185588,-0.003155,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185588,-0.003155,0.004249,0.249964,0,0);}
.m47_c00318{transform:matrix(0.186213,-0.003166,0.004249,0.249964,0,0);-ms-transform:matrix(0.186213,-0.003166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186213,-0.003166,0.004249,0.249964,0,0);}
.mab_c00318{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.maf_c00318{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m5b_c00318{transform:matrix(0.187303,-0.003184,0.004249,0.249964,0,0);-ms-transform:matrix(0.187303,-0.003184,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187303,-0.003184,0.004249,0.249964,0,0);}
.m8_c00318{transform:matrix(0.187408,-0.003186,0.004249,0.249964,0,0);-ms-transform:matrix(0.187408,-0.003186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187408,-0.003186,0.004249,0.249964,0,0);}
.mc0_c00318{transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.mc9_c00318{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.188108,-0.003198,0.004249,0.249964,0,0);-ms-transform:matrix(0.188108,-0.003198,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188108,-0.003198,0.004249,0.249964,0,0);}
.m8b_c00318{transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188723,-0.003208,0.004249,0.249964,0,0);}
.m7_c00318{transform:matrix(0.188853,-0.003210,0.004249,0.249964,0,0);-ms-transform:matrix(0.188853,-0.003210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188853,-0.003210,0.004249,0.249964,0,0);}
.mb0_c00318{transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{transform:matrix(0.189418,-0.003220,0.004249,0.249964,0,0);-ms-transform:matrix(0.189418,-0.003220,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189418,-0.003220,0.004249,0.249964,0,0);}
.m86_c00318{transform:matrix(0.189528,-0.003222,0.004249,0.249964,0,0);-ms-transform:matrix(0.189528,-0.003222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189528,-0.003222,0.004249,0.249964,0,0);}
.m4f_c00318{transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);-ms-transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189553,-0.003222,0.004249,0.249964,0,0);}
.m7c_c00318{transform:matrix(0.189718,-0.003225,0.004249,0.249964,0,0);-ms-transform:matrix(0.189718,-0.003225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189718,-0.003225,0.004249,0.249964,0,0);}
.m3d_c00318{transform:matrix(0.189983,-0.003230,0.004249,0.249964,0,0);-ms-transform:matrix(0.189983,-0.003230,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189983,-0.003230,0.004249,0.249964,0,0);}
.m50_c00318{transform:matrix(0.190657,-0.003241,0.004249,0.249964,0,0);-ms-transform:matrix(0.190657,-0.003241,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190657,-0.003241,0.004249,0.249964,0,0);}
.mdb_c00318{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);-ms-transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);}
.m9e_c00318{transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);}
.mb9_c00318{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.mac_c00318{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.md9_c00318{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.mc6_c00318{transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);}
.mb6_c00318{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.md8_c00318{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.193397,-0.003288,0.004249,0.249964,0,0);-ms-transform:matrix(0.193397,-0.003288,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193397,-0.003288,0.004249,0.249964,0,0);}
.md_c00318{transform:matrix(0.193432,-0.003288,0.004249,0.249964,0,0);-ms-transform:matrix(0.193432,-0.003288,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193432,-0.003288,0.004249,0.249964,0,0);}
.m71_c00318{transform:matrix(0.193492,-0.003289,0.004249,0.249964,0,0);-ms-transform:matrix(0.193492,-0.003289,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193492,-0.003289,0.004249,0.249964,0,0);}
.m45_c00318{transform:matrix(0.193937,-0.003297,0.004249,0.249964,0,0);-ms-transform:matrix(0.193937,-0.003297,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193937,-0.003297,0.004249,0.249964,0,0);}
.md1_c00318{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m90_c00318{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.194667,-0.003309,0.004249,0.249964,0,0);-ms-transform:matrix(0.194667,-0.003309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194667,-0.003309,0.004249,0.249964,0,0);}
.m75_c00318{transform:matrix(0.195592,-0.003325,0.004249,0.249964,0,0);-ms-transform:matrix(0.195592,-0.003325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195592,-0.003325,0.004249,0.249964,0,0);}
.md2_c00318{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.196037,-0.003333,0.004249,0.249964,0,0);-ms-transform:matrix(0.196037,-0.003333,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196037,-0.003333,0.004249,0.249964,0,0);}
.m2c_c00318{transform:matrix(0.196397,-0.003339,0.004249,0.249964,0,0);-ms-transform:matrix(0.196397,-0.003339,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196397,-0.003339,0.004249,0.249964,0,0);}
.m3e_c00318{transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);-ms-transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);}
.m9d_c00318{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.197092,-0.003351,0.004249,0.249964,0,0);-ms-transform:matrix(0.197092,-0.003351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197092,-0.003351,0.004249,0.249964,0,0);}
.mee_c00318{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.197261,-0.003353,0.004249,0.249964,0,0);-ms-transform:matrix(0.197261,-0.003353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197261,-0.003353,0.004249,0.249964,0,0);}
.m80_c00318{transform:matrix(0.197586,-0.003359,0.004249,0.249964,0,0);-ms-transform:matrix(0.197586,-0.003359,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197586,-0.003359,0.004249,0.249964,0,0);}
.meb_c00318{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.197656,-0.003360,0.004249,0.249964,0,0);-ms-transform:matrix(0.197656,-0.003360,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197656,-0.003360,0.004249,0.249964,0,0);}
.m9c_c00318{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m77_c00318{transform:matrix(0.198416,-0.003373,0.004249,0.249964,0,0);-ms-transform:matrix(0.198416,-0.003373,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198416,-0.003373,0.004249,0.249964,0,0);}
.m99_c00318{transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);}
.m7a_c00318{transform:matrix(0.198526,-0.003375,0.004249,0.249964,0,0);-ms-transform:matrix(0.198526,-0.003375,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198526,-0.003375,0.004249,0.249964,0,0);}
.mbd_c00318{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00318{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.mda_c00318{transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);}
.mc2_c00318{transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.199781,-0.003396,0.004249,0.249964,0,0);-ms-transform:matrix(0.199781,-0.003396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199781,-0.003396,0.004249,0.249964,0,0);}
.m9_c00318{transform:matrix(0.200016,-0.003400,0.004249,0.249964,0,0);-ms-transform:matrix(0.200016,-0.003400,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200016,-0.003400,0.004249,0.249964,0,0);}
.mea_c00318{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{transform:matrix(0.200441,-0.003407,0.004249,0.249964,0,0);-ms-transform:matrix(0.200441,-0.003407,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200441,-0.003407,0.004249,0.249964,0,0);}
.m58_c00318{transform:matrix(0.200541,-0.003409,0.004249,0.249964,0,0);-ms-transform:matrix(0.200541,-0.003409,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200541,-0.003409,0.004249,0.249964,0,0);}
.m72_c00318{transform:matrix(0.200736,-0.003413,0.004249,0.249964,0,0);-ms-transform:matrix(0.200736,-0.003413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200736,-0.003413,0.004249,0.249964,0,0);}
.ma2_c00318{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.m8f_c00318{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m60_c00318{transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-ms-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);}
.m2d_c00318{transform:matrix(0.202646,-0.003445,0.004249,0.249964,0,0);-ms-transform:matrix(0.202646,-0.003445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202646,-0.003445,0.004249,0.249964,0,0);}
.m23_c00318{transform:matrix(0.202751,-0.003447,0.004249,0.249964,0,0);-ms-transform:matrix(0.202751,-0.003447,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202751,-0.003447,0.004249,0.249964,0,0);}
.me2_c00318{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.me5_c00318{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.m6e_c00318{transform:matrix(0.203511,-0.003460,0.004249,0.249964,0,0);-ms-transform:matrix(0.203511,-0.003460,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203511,-0.003460,0.004249,0.249964,0,0);}
.m40_c00318{transform:matrix(0.203576,-0.003461,0.004249,0.249964,0,0);-ms-transform:matrix(0.203576,-0.003461,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203576,-0.003461,0.004249,0.249964,0,0);}
.md3_c00318{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m78_c00318{transform:matrix(0.204210,-0.003472,0.004249,0.249964,0,0);-ms-transform:matrix(0.204210,-0.003472,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204210,-0.003472,0.004249,0.249964,0,0);}
.m5e_c00318{transform:matrix(0.204685,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204685,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204685,-0.003480,0.004249,0.249964,0,0);}
.m27_c00318{transform:matrix(0.204730,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204730,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204730,-0.003480,0.004249,0.249964,0,0);}
.m88_c00318{transform:matrix(0.204960,-0.003484,0.004249,0.249964,0,0);-ms-transform:matrix(0.204960,-0.003484,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204960,-0.003484,0.004249,0.249964,0,0);}
.m57_c00318{transform:matrix(0.205430,-0.003492,0.004249,0.249964,0,0);-ms-transform:matrix(0.205430,-0.003492,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205430,-0.003492,0.004249,0.249964,0,0);}
.m11_c00318{transform:matrix(0.206155,-0.003505,0.004249,0.249964,0,0);-ms-transform:matrix(0.206155,-0.003505,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206155,-0.003505,0.004249,0.249964,0,0);}
.m52_c00318{transform:matrix(0.206165,-0.003505,0.004249,0.249964,0,0);-ms-transform:matrix(0.206165,-0.003505,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206165,-0.003505,0.004249,0.249964,0,0);}
.me9_c00318{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mcb_c00318{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00318{transform:matrix(0.206755,-0.003515,0.004249,0.249964,0,0);-ms-transform:matrix(0.206755,-0.003515,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206755,-0.003515,0.004249,0.249964,0,0);}
.m9a_c00318{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m87_c00318{transform:matrix(0.206910,-0.003517,0.004249,0.249964,0,0);-ms-transform:matrix(0.206910,-0.003517,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206910,-0.003517,0.004249,0.249964,0,0);}
.m14_c00318{transform:matrix(0.207175,-0.003522,0.004249,0.249964,0,0);-ms-transform:matrix(0.207175,-0.003522,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207175,-0.003522,0.004249,0.249964,0,0);}
.m6_c00318{transform:matrix(0.207385,-0.003526,0.004249,0.249964,0,0);-ms-transform:matrix(0.207385,-0.003526,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207385,-0.003526,0.004249,0.249964,0,0);}
.m10_c00318{transform:matrix(0.207825,-0.003533,0.004249,0.249964,0,0);-ms-transform:matrix(0.207825,-0.003533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207825,-0.003533,0.004249,0.249964,0,0);}
.m66_c00318{transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);-ms-transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208310,-0.003541,0.004249,0.249964,0,0);}
.m59_c00318{transform:matrix(0.208355,-0.003542,0.004249,0.249964,0,0);-ms-transform:matrix(0.208355,-0.003542,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208355,-0.003542,0.004249,0.249964,0,0);}
.m4d_c00318{transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);-ms-transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);}
.ma1_c00318{transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208655,0.000000,0.000000,0.250000,0,0);}
.m73_c00318{transform:matrix(0.209120,-0.003555,0.004249,0.249964,0,0);-ms-transform:matrix(0.209120,-0.003555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209120,-0.003555,0.004249,0.249964,0,0);}
.me0_c00318{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.me3_c00318{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m79_c00318{transform:matrix(0.209690,-0.003565,0.004249,0.249964,0,0);-ms-transform:matrix(0.209690,-0.003565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209690,-0.003565,0.004249,0.249964,0,0);}
.m5f_c00318{transform:matrix(0.209725,-0.003565,0.004249,0.249964,0,0);-ms-transform:matrix(0.209725,-0.003565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209725,-0.003565,0.004249,0.249964,0,0);}
.mcd_c00318{transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);}
.m92_c00318{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.mc4_c00318{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m5c_c00318{transform:matrix(0.210600,-0.003580,0.004249,0.249964,0,0);-ms-transform:matrix(0.210600,-0.003580,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210600,-0.003580,0.004249,0.249964,0,0);}
.m32_c00318{transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);-ms-transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210800,-0.003584,0.004249,0.249964,0,0);}
.mbf_c00318{transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.211015,-0.003587,0.004249,0.249964,0,0);-ms-transform:matrix(0.211015,-0.003587,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211015,-0.003587,0.004249,0.249964,0,0);}
.m25_c00318{transform:matrix(0.211374,-0.003593,0.004249,0.249964,0,0);-ms-transform:matrix(0.211374,-0.003593,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211374,-0.003593,0.004249,0.249964,0,0);}
.mde_c00318{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m7d_c00318{transform:matrix(0.211624,-0.003598,0.004249,0.249964,0,0);-ms-transform:matrix(0.211624,-0.003598,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211624,-0.003598,0.004249,0.249964,0,0);}
.m95_c00318{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m4a_c00318{transform:matrix(0.212279,-0.003609,0.004249,0.249964,0,0);-ms-transform:matrix(0.212279,-0.003609,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212279,-0.003609,0.004249,0.249964,0,0);}
.m39_c00318{transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-ms-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);}
.m38_c00318{transform:matrix(0.212754,-0.003617,0.004249,0.249964,0,0);-ms-transform:matrix(0.212754,-0.003617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212754,-0.003617,0.004249,0.249964,0,0);}
.m2f_c00318{transform:matrix(0.213414,-0.003628,0.004249,0.249964,0,0);-ms-transform:matrix(0.213414,-0.003628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213414,-0.003628,0.004249,0.249964,0,0);}
.ma6_c00318{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m62_c00318{transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);-ms-transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);}
.md5_c00318{transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.217259,-0.003693,0.004249,0.249964,0,0);-ms-transform:matrix(0.217259,-0.003693,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217259,-0.003693,0.004249,0.249964,0,0);}
.m22_c00318{transform:matrix(0.217414,-0.003696,0.004249,0.249964,0,0);-ms-transform:matrix(0.217414,-0.003696,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217414,-0.003696,0.004249,0.249964,0,0);}
.m4e_c00318{transform:matrix(0.217794,-0.003702,0.004249,0.249964,0,0);-ms-transform:matrix(0.217794,-0.003702,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217794,-0.003702,0.004249,0.249964,0,0);}
.maa_c00318{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.mb2_c00318{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{transform:matrix(0.218233,-0.003710,0.004249,0.249964,0,0);-ms-transform:matrix(0.218233,-0.003710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218233,-0.003710,0.004249,0.249964,0,0);}
.m61_c00318{transform:matrix(0.218463,-0.003714,0.004249,0.249964,0,0);-ms-transform:matrix(0.218463,-0.003714,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218463,-0.003714,0.004249,0.249964,0,0);}
.m3f_c00318{transform:matrix(0.218713,-0.003718,0.004249,0.249964,0,0);-ms-transform:matrix(0.218713,-0.003718,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218713,-0.003718,0.004249,0.249964,0,0);}
.me1_c00318{transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.219328,-0.003729,0.004249,0.249964,0,0);-ms-transform:matrix(0.219328,-0.003729,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219328,-0.003729,0.004249,0.249964,0,0);}
.m97_c00318{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00318{transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);-ms-transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);}
.mdd_c00318{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.221233,-0.003761,0.004249,0.249964,0,0);-ms-transform:matrix(0.221233,-0.003761,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221233,-0.003761,0.004249,0.249964,0,0);}
.mca_c00318{transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);}
.m83_c00318{transform:matrix(0.223728,-0.003803,0.004249,0.249964,0,0);-ms-transform:matrix(0.223728,-0.003803,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223728,-0.003803,0.004249,0.249964,0,0);}
.m7e_c00318{transform:matrix(0.223778,-0.003804,0.004249,0.249964,0,0);-ms-transform:matrix(0.223778,-0.003804,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223778,-0.003804,0.004249,0.249964,0,0);}
.m8e_c00318{transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);}
.me4_c00318{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.224698,-0.003820,0.004249,0.249964,0,0);-ms-transform:matrix(0.224698,-0.003820,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224698,-0.003820,0.004249,0.249964,0,0);}
.mdf_c00318{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00318{transform:matrix(0.227072,-0.003860,0.004249,0.249964,0,0);-ms-transform:matrix(0.227072,-0.003860,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227072,-0.003860,0.004249,0.249964,0,0);}
.m8d_c00318{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.md7_c00318{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m74_c00318{transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);-ms-transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);}
.mc8_c00318{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m65_c00318{transform:matrix(0.230067,-0.003911,0.004249,0.249964,0,0);-ms-transform:matrix(0.230067,-0.003911,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230067,-0.003911,0.004249,0.249964,0,0);}
.m56_c00318{transform:matrix(0.230942,-0.003926,0.004249,0.249964,0,0);-ms-transform:matrix(0.230942,-0.003926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230942,-0.003926,0.004249,0.249964,0,0);}
.m70_c00318{transform:matrix(0.230962,-0.003926,0.004249,0.249964,0,0);-ms-transform:matrix(0.230962,-0.003926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230962,-0.003926,0.004249,0.249964,0,0);}
.m96_c00318{transform:matrix(0.231340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231340,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.231467,-0.003935,0.004249,0.249964,0,0);-ms-transform:matrix(0.231467,-0.003935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231467,-0.003935,0.004249,0.249964,0,0);}
.mbb_c00318{transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);}
.mce_c00318{transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.234151,-0.003981,0.004249,0.249964,0,0);-ms-transform:matrix(0.234151,-0.003981,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234151,-0.003981,0.004249,0.249964,0,0);}
.mc5_c00318{transform:matrix(0.234210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00318{transform:matrix(0.234566,-0.003988,0.004249,0.249964,0,0);-ms-transform:matrix(0.234566,-0.003988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234566,-0.003988,0.004249,0.249964,0,0);}
.m24_c00318{transform:matrix(0.236221,-0.004016,0.004249,0.249964,0,0);-ms-transform:matrix(0.236221,-0.004016,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236221,-0.004016,0.004249,0.249964,0,0);}
.m53_c00318{transform:matrix(0.236276,-0.004017,0.004249,0.249964,0,0);-ms-transform:matrix(0.236276,-0.004017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236276,-0.004017,0.004249,0.249964,0,0);}
.m68_c00318{transform:matrix(0.238341,-0.004052,0.004249,0.249964,0,0);-ms-transform:matrix(0.238341,-0.004052,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238341,-0.004052,0.004249,0.249964,0,0);}
.m4c_c00318{transform:matrix(0.239935,-0.004079,0.004249,0.249964,0,0);-ms-transform:matrix(0.239935,-0.004079,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239935,-0.004079,0.004249,0.249964,0,0);}
.mb_c00318{transform:matrix(0.244250,-0.004152,0.004249,0.249964,0,0);-ms-transform:matrix(0.244250,-0.004152,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244250,-0.004152,0.004249,0.249964,0,0);}
.m69_c00318{transform:matrix(0.245320,-0.004170,0.004249,0.249964,0,0);-ms-transform:matrix(0.245320,-0.004170,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245320,-0.004170,0.004249,0.249964,0,0);}
.mcc_c00318{transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);}
.m98_c00318{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.247844,-0.004213,0.004249,0.249964,0,0);-ms-transform:matrix(0.247844,-0.004213,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247844,-0.004213,0.004249,0.249964,0,0);}
.m2_c00318{transform:matrix(0.258498,-0.004394,0.004249,0.249964,0,0);-ms-transform:matrix(0.258498,-0.004394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258498,-0.004394,0.004249,0.249964,0,0);}
.m67_c00318{transform:matrix(0.259183,-0.004406,0.004249,0.249964,0,0);-ms-transform:matrix(0.259183,-0.004406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259183,-0.004406,0.004249,0.249964,0,0);}
.mc7_c00318{transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);}
.m6f_c00318{transform:matrix(0.268271,-0.004561,0.004249,0.249964,0,0);-ms-transform:matrix(0.268271,-0.004561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268271,-0.004561,0.004249,0.249964,0,0);}
.m64_c00318{transform:matrix(0.269676,-0.004584,0.004249,0.249964,0,0);-ms-transform:matrix(0.269676,-0.004584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.269676,-0.004584,0.004249,0.249964,0,0);}
.ma0_c00318{transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);}
.m63_c00318{transform:matrix(0.280604,-0.004770,0.004249,0.249964,0,0);-ms-transform:matrix(0.280604,-0.004770,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280604,-0.004770,0.004249,0.249964,0,0);}
.mdc_c00318{transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);}
.me6_c00318{transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.316949,-0.005388,0.004249,0.249964,0,0);-ms-transform:matrix(0.316949,-0.005388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.316949,-0.005388,0.004249,0.249964,0,0);}
.m2a_c00318{transform:matrix(0.334717,-0.005690,0.004249,0.249964,0,0);-ms-transform:matrix(0.334717,-0.005690,0.004249,0.249964,0,0);-webkit-transform:matrix(0.334717,-0.005690,0.004249,0.249964,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:0.000000px;}
.fc0_c00318{color:transparent;}
.fsf_c00318{font-size:57.750000px;}
.fs8_c00318{font-size:57.758344px;}
.fs3_c00318{font-size:58.808496px;}
.fs9_c00318{font-size:59.850000px;}
.fs4_c00318{font-size:59.858648px;}
.fsb_c00318{font-size:60.900000px;}
.fs5_c00318{font-size:60.908799px;}
.fs2_c00318{font-size:61.958951px;}
.fse_c00318{font-size:63.000000px;}
.fs6_c00318{font-size:63.009103px;}
.fsd_c00318{font-size:64.050000px;}
.fsa_c00318{font-size:65.100000px;}
.fsc_c00318{font-size:67.200000px;}
.fs1_c00318{font-size:67.209710px;}
.fs0_c00318{font-size:68.250000px;}
.fs7_c00318{font-size:68.259861px;}
.fs10_c00318{font-size:70.350000px;}
.y0_c00318{bottom:0.000000px;}
.ya5_c00318{bottom:27.754500px;}
.ya4_c00318{bottom:45.058500px;}
.y9d_c00318{bottom:58.591500px;}
.y9e_c00318{bottom:59.286000px;}
.y9f_c00318{bottom:59.629500px;}
.ya0_c00318{bottom:60.394500px;}
.ya1_c00318{bottom:60.883500px;}
.ya2_c00318{bottom:61.467000px;}
.ya3_c00318{bottom:61.623000px;}
.y9c_c00318{bottom:79.585500px;}
.y9b_c00318{bottom:96.597000px;}
.y9a_c00318{bottom:114.087000px;}
.y99_c00318{bottom:129.367500px;}
.y98_c00318{bottom:145.798500px;}
.y97_c00318{bottom:163.348500px;}
.y96_c00318{bottom:181.198500px;}
.y95_c00318{bottom:197.569500px;}
.y94_c00318{bottom:214.897500px;}
.y93_c00318{bottom:231.894000px;}
.y92_c00318{bottom:249.501000px;}
.y8b_c00318{bottom:266.411106px;}
.y8e_c00318{bottom:266.411203px;}
.y8d_c00318{bottom:266.411322px;}
.y8c_c00318{bottom:266.411445px;}
.y8f_c00318{bottom:266.411482px;}
.y90_c00318{bottom:266.412211px;}
.y91_c00318{bottom:266.412363px;}
.y8a_c00318{bottom:284.443656px;}
.y87_c00318{bottom:284.443696px;}
.y86_c00318{bottom:284.444115px;}
.y89_c00318{bottom:284.444323px;}
.y85_c00318{bottom:284.444367px;}
.y88_c00318{bottom:284.444395px;}
.y84_c00318{bottom:284.444628px;}
.y80_c00318{bottom:301.849062px;}
.y81_c00318{bottom:301.849063px;}
.y83_c00318{bottom:301.849065px;}
.y7f_c00318{bottom:301.849323px;}
.y82_c00318{bottom:301.849402px;}
.y7e_c00318{bottom:301.849587px;}
.y7b_c00318{bottom:319.065379px;}
.y74_c00318{bottom:319.065534px;}
.y75_c00318{bottom:319.065688px;}
.y7c_c00318{bottom:319.065838px;}
.y7a_c00318{bottom:319.065876px;}
.y76_c00318{bottom:319.066113px;}
.y78_c00318{bottom:319.066264px;}
.y77_c00318{bottom:319.066371px;}
.y7d_c00318{bottom:319.066461px;}
.y79_c00318{bottom:319.066543px;}
.y6b_c00318{bottom:333.146338px;}
.y6c_c00318{bottom:333.738499px;}
.y6d_c00318{bottom:333.930768px;}
.y6e_c00318{bottom:334.251867px;}
.y6f_c00318{bottom:335.023711px;}
.y70_c00318{bottom:335.310490px;}
.y71_c00318{bottom:335.628576px;}
.y72_c00318{bottom:336.332545px;}
.y73_c00318{bottom:336.594036px;}
.y64_c00318{bottom:350.427558px;}
.y65_c00318{bottom:351.074767px;}
.y66_c00318{bottom:351.654979px;}
.y67_c00318{bottom:352.397778px;}
.y68_c00318{bottom:352.579129px;}
.y69_c00318{bottom:353.171574px;}
.y6a_c00318{bottom:353.401668px;}
.y5f_c00318{bottom:367.036021px;}
.y60_c00318{bottom:367.036438px;}
.y61_c00318{bottom:367.036548px;}
.y62_c00318{bottom:367.037080px;}
.y63_c00318{bottom:367.037454px;}
.y57_c00318{bottom:380.944248px;}
.y58_c00318{bottom:381.469171px;}
.y59_c00318{bottom:381.824208px;}
.y5a_c00318{bottom:382.492689px;}
.y5b_c00318{bottom:383.485711px;}
.y5c_c00318{bottom:384.006759px;}
.y5d_c00318{bottom:384.435102px;}
.y5e_c00318{bottom:384.756481px;}
.y50_c00318{bottom:401.186401px;}
.y55_c00318{bottom:401.186572px;}
.y4f_c00318{bottom:401.186653px;}
.y56_c00318{bottom:401.186821px;}
.y52_c00318{bottom:401.186827px;}
.y51_c00318{bottom:401.187010px;}
.y54_c00318{bottom:401.187034px;}
.y53_c00318{bottom:401.187235px;}
.y4e_c00318{bottom:401.187304px;}
.y4d_c00318{bottom:401.187415px;}
.y44_c00318{bottom:415.782031px;}
.y45_c00318{bottom:416.083134px;}
.y46_c00318{bottom:416.451696px;}
.y47_c00318{bottom:416.738709px;}
.y48_c00318{bottom:417.310950px;}
.y49_c00318{bottom:417.601945px;}
.y4a_c00318{bottom:418.703185px;}
.y4b_c00318{bottom:419.054134px;}
.y4c_c00318{bottom:419.293035px;}
.y3b_c00318{bottom:433.064055px;}
.y3c_c00318{bottom:433.411488px;}
.y3d_c00318{bottom:434.030544px;}
.y3e_c00318{bottom:434.219773px;}
.y3f_c00318{bottom:434.556360px;}
.y40_c00318{bottom:435.286255px;}
.y41_c00318{bottom:435.581250px;}
.y42_c00318{bottom:436.530585px;}
.y43_c00318{bottom:436.708611px;}
.y31_c00318{bottom:448.730202px;}
.y32_c00318{bottom:449.032639px;}
.y33_c00318{bottom:449.914813px;}
.y34_c00318{bottom:450.167106px;}
.y35_c00318{bottom:450.483334px;}
.y36_c00318{bottom:451.367319px;}
.y37_c00318{bottom:451.654308px;}
.y38_c00318{bottom:452.756479px;}
.y39_c00318{bottom:453.104625px;}
.y3a_c00318{bottom:454.039540px;}
.y2b_c00318{bottom:466.552254px;}
.y2c_c00318{bottom:467.663034px;}
.y2d_c00318{bottom:468.057952px;}
.y2e_c00318{bottom:469.012698px;}
.y2f_c00318{bottom:470.227620px;}
.y30_c00318{bottom:470.674201px;}
.y24_c00318{bottom:483.564349px;}
.y25_c00318{bottom:483.814728px;}
.y26_c00318{bottom:484.647919px;}
.y27_c00318{bottom:484.967008px;}
.y28_c00318{bottom:485.365140px;}
.y29_c00318{bottom:486.311875px;}
.y2a_c00318{bottom:486.592174px;}
.y1b_c00318{bottom:500.844286px;}
.y1c_c00318{bottom:501.253137px;}
.y1d_c00318{bottom:501.630660px;}
.y1e_c00318{bottom:502.715734px;}
.y1f_c00318{bottom:503.141857px;}
.y20_c00318{bottom:503.420353px;}
.y21_c00318{bottom:504.198720px;}
.y22_c00318{bottom:504.515122px;}
.y23_c00318{bottom:505.158463px;}
.y12_c00318{bottom:518.397913px;}
.y13_c00318{bottom:518.785203px;}
.y14_c00318{bottom:519.091542px;}
.y15_c00318{bottom:519.439246px;}
.y16_c00318{bottom:520.298605px;}
.y17_c00318{bottom:520.671100px;}
.y18_c00318{bottom:521.504496px;}
.y19_c00318{bottom:522.601432px;}
.y1a_c00318{bottom:522.807564px;}
.ya_c00318{bottom:535.140249px;}
.yb_c00318{bottom:535.869051px;}
.yc_c00318{bottom:536.570172px;}
.yd_c00318{bottom:537.360681px;}
.ye_c00318{bottom:537.525937px;}
.yf_c00318{bottom:538.214788px;}
.y10_c00318{bottom:538.435912px;}
.y11_c00318{bottom:539.217496px;}
.y2_c00318{bottom:551.884500px;}
.y3_c00318{bottom:552.904729px;}
.y4_c00318{bottom:553.232889px;}
.y5_c00318{bottom:553.682403px;}
.y6_c00318{bottom:554.161344px;}
.y7_c00318{bottom:555.040864px;}
.y8_c00318{bottom:555.295457px;}
.y9_c00318{bottom:556.482915px;}
.y1_c00318{bottom:570.646500px;}
.h11_c00318{height:57.750000px;}
.ha_c00318{height:57.758344px;}
.h5_c00318{height:58.808496px;}
.hb_c00318{height:59.850000px;}
.h6_c00318{height:59.858648px;}
.hd_c00318{height:60.900000px;}
.h7_c00318{height:60.908799px;}
.h4_c00318{height:61.958951px;}
.h10_c00318{height:63.000000px;}
.h8_c00318{height:63.009103px;}
.hf_c00318{height:64.050000px;}
.hc_c00318{height:65.100000px;}
.he_c00318{height:67.200000px;}
.h3_c00318{height:67.209710px;}
.h2_c00318{height:68.250000px;}
.h9_c00318{height:68.259861px;}
.h12_c00318{height:70.350000px;}
.h0_c00318{height:613.170000px;}
.h1_c00318{height:613.500000px;}
.w0_c00318{width:359.100000px;}
.w1_c00318{width:359.250000px;}
.x0_c00318{left:0.000000px;}
.x53_c00318{left:23.217978px;}
.x2_c00318{left:24.259500px;}
.x26_c00318{left:25.872195px;}
.x6c_c00318{left:28.080000px;}
.x62_c00318{left:32.400000px;}
.x54_c00318{left:37.260532px;}
.x21_c00318{left:39.904872px;}
.x3c_c00318{left:41.314039px;}
.x61_c00318{left:43.201613px;}
.x72_c00318{left:44.280000px;}
.x5d_c00318{left:45.361766px;}
.x37_c00318{left:47.376135px;}
.x11_c00318{left:48.988170px;}
.x7e_c00318{left:50.220000px;}
.x19_c00318{left:51.488851px;}
.x78_c00318{left:55.080000px;}
.x3d_c00318{left:57.515731px;}
.x45_c00318{left:61.205898px;}
.x4f_c00318{left:66.302557px;}
.x12_c00318{left:68.155501px;}
.x70_c00318{left:69.930000px;}
.xa_c00318{left:72.548636px;}
.x63_c00318{left:74.790000px;}
.x1a_c00318{left:76.608693px;}
.x4a_c00318{left:77.615194px;}
.x50_c00318{left:80.083771px;}
.x3_c00318{left:84.273000px;}
.x2a_c00318{left:87.176161px;}
.x77_c00318{left:88.830000px;}
.x13_c00318{left:89.844358px;}
.x22_c00318{left:92.005264px;}
.x32_c00318{left:93.314389px;}
.x68_c00318{left:96.390000px;}
.x38_c00318{left:97.854577px;}
.x2b_c00318{left:100.428202px;}
.x3e_c00318{left:102.072609px;}
.x4_c00318{left:103.576500px;}
.x75_c00318{left:105.030000px;}
.x33_c00318{left:106.828578px;}
.x59_c00318{left:108.552223px;}
.x23_c00318{left:111.922596px;}
.x27_c00318{left:114.442695px;}
.x2c_c00318{left:117.088141px;}
.xb_c00318{left:119.263217px;}
.x3f_c00318{left:122.055372px;}
.x7b_c00318{left:124.632000px;}
.x4b_c00318{left:125.955300px;}
.x5_c00318{left:130.018500px;}
.x46_c00318{left:134.387146px;}
.x24_c00318{left:136.842529px;}
.x64_c00318{left:140.400000px;}
.x39_c00318{left:141.930586px;}
.x14_c00318{left:143.572276px;}
.x66_c00318{left:145.260000px;}
.x1b_c00318{left:148.909641px;}
.x1_c00318{left:151.200000px;}
.x55_c00318{left:153.108988px;}
.x71_c00318{left:155.250000px;}
.x6_c00318{left:158.191500px;}
.x5e_c00318{left:161.208747px;}
.x69_c00318{left:162.270000px;}
.x2d_c00318{left:163.615060px;}
.x15_c00318{left:166.807659px;}
.x28_c00318{left:170.604195px;}
.xc_c00318{left:171.942002px;}
.x6e_c00318{left:174.690000px;}
.x6d_c00318{left:175.770000px;}
.x1c_c00318{left:177.329610px;}
.x2e_c00318{left:178.731550px;}
.x5f_c00318{left:181.461587px;}
.xd_c00318{left:182.986884px;}
.x40_c00318{left:184.974553px;}
.x4c_c00318{left:187.831053px;}
.x67_c00318{left:190.890000px;}
.x79_c00318{left:192.240000px;}
.x1d_c00318{left:195.918247px;}
.x49_c00318{left:197.395029px;}
.x5a_c00318{left:198.474708px;}
.x51_c00318{left:201.313942px;}
.x4d_c00318{left:202.911828px;}
.x34_c00318{left:204.038025px;}
.x47_c00318{left:205.333267px;}
.x73_c00318{left:208.170000px;}
.x7_c00318{left:209.928000px;}
.x25_c00318{left:213.522330px;}
.x76_c00318{left:214.920000px;}
.x5b_c00318{left:217.647241px;}
.x16_c00318{left:218.920051px;}
.x41_c00318{left:222.509391px;}
.x6a_c00318{left:223.830000px;}
.x8_c00318{left:224.904000px;}
.x60_c00318{left:226.558617px;}
.xe_c00318{left:228.891439px;}
.x56_c00318{left:235.740882px;}
.x2f_c00318{left:236.769087px;}
.x42_c00318{left:240.061465px;}
.x29_c00318{left:242.070195px;}
.xf_c00318{left:243.663950px;}
.x7f_c00318{left:245.700000px;}
.x1e_c00318{left:247.794507px;}
.x3a_c00318{left:249.069379px;}
.x4e_c00318{left:252.324535px;}
.x30_c00318{left:255.129975px;}
.x57_c00318{left:259.774818px;}
.x65_c00318{left:261.360000px;}
.x5c_c00318{left:266.523868px;}
.x80_c00318{left:267.570000px;}
.x1f_c00318{left:268.877721px;}
.x52_c00318{left:270.197436px;}
.x35_c00318{left:271.796467px;}
.x48_c00318{left:273.183235px;}
.x3b_c00318{left:276.068215px;}
.x7c_c00318{left:277.723500px;}
.x43_c00318{left:279.486864px;}
.x36_c00318{left:284.475105px;}
.x7a_c00318{left:286.470000px;}
.x17_c00318{left:287.505724px;}
.x7d_c00318{left:290.688000px;}
.x9_c00318{left:294.754500px;}
.x10_c00318{left:295.817734px;}
.x44_c00318{left:298.389321px;}
.x18_c00318{left:300.425454px;}
.x6f_c00318{left:302.400000px;}
.x31_c00318{left:304.299792px;}
.x58_c00318{left:307.030960px;}
.x74_c00318{left:308.340000px;}
.x20_c00318{left:311.752174px;}
.x6b_c00318{left:334.530000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.fsf_c00318{font-size:51.333333pt;}
.fs8_c00318{font-size:51.340750pt;}
.fs3_c00318{font-size:52.274219pt;}
.fs9_c00318{font-size:53.200000pt;}
.fs4_c00318{font-size:53.207687pt;}
.fsb_c00318{font-size:54.133333pt;}
.fs5_c00318{font-size:54.141155pt;}
.fs2_c00318{font-size:55.074623pt;}
.fse_c00318{font-size:56.000000pt;}
.fs6_c00318{font-size:56.008091pt;}
.fsd_c00318{font-size:56.933333pt;}
.fsa_c00318{font-size:57.866667pt;}
.fsc_c00318{font-size:59.733333pt;}
.fs1_c00318{font-size:59.741964pt;}
.fs0_c00318{font-size:60.666667pt;}
.fs7_c00318{font-size:60.675432pt;}
.fs10_c00318{font-size:62.533333pt;}
.y0_c00318{bottom:0.000000pt;}
.ya5_c00318{bottom:24.670667pt;}
.ya4_c00318{bottom:40.052000pt;}
.y9d_c00318{bottom:52.081333pt;}
.y9e_c00318{bottom:52.698667pt;}
.y9f_c00318{bottom:53.004000pt;}
.ya0_c00318{bottom:53.684000pt;}
.ya1_c00318{bottom:54.118667pt;}
.ya2_c00318{bottom:54.637333pt;}
.ya3_c00318{bottom:54.776000pt;}
.y9c_c00318{bottom:70.742667pt;}
.y9b_c00318{bottom:85.864000pt;}
.y9a_c00318{bottom:101.410667pt;}
.y99_c00318{bottom:114.993333pt;}
.y98_c00318{bottom:129.598667pt;}
.y97_c00318{bottom:145.198667pt;}
.y96_c00318{bottom:161.065333pt;}
.y95_c00318{bottom:175.617333pt;}
.y94_c00318{bottom:191.020000pt;}
.y93_c00318{bottom:206.128000pt;}
.y92_c00318{bottom:221.778667pt;}
.y8b_c00318{bottom:236.809872pt;}
.y8e_c00318{bottom:236.809959pt;}
.y8d_c00318{bottom:236.810064pt;}
.y8c_c00318{bottom:236.810173pt;}
.y8f_c00318{bottom:236.810207pt;}
.y90_c00318{bottom:236.810855pt;}
.y91_c00318{bottom:236.810989pt;}
.y8a_c00318{bottom:252.838805pt;}
.y87_c00318{bottom:252.838841pt;}
.y86_c00318{bottom:252.839213pt;}
.y89_c00318{bottom:252.839399pt;}
.y85_c00318{bottom:252.839437pt;}
.y88_c00318{bottom:252.839463pt;}
.y84_c00318{bottom:252.839669pt;}
.y80_c00318{bottom:268.310277pt;}
.y81_c00318{bottom:268.310279pt;}
.y83_c00318{bottom:268.310280pt;}
.y7f_c00318{bottom:268.310509pt;}
.y82_c00318{bottom:268.310580pt;}
.y7e_c00318{bottom:268.310744pt;}
.y7b_c00318{bottom:283.613671pt;}
.y74_c00318{bottom:283.613808pt;}
.y75_c00318{bottom:283.613945pt;}
.y7c_c00318{bottom:283.614079pt;}
.y7a_c00318{bottom:283.614112pt;}
.y76_c00318{bottom:283.614323pt;}
.y78_c00318{bottom:283.614457pt;}
.y77_c00318{bottom:283.614552pt;}
.y7d_c00318{bottom:283.614632pt;}
.y79_c00318{bottom:283.614705pt;}
.y6b_c00318{bottom:296.130079pt;}
.y6c_c00318{bottom:296.656444pt;}
.y6d_c00318{bottom:296.827349pt;}
.y6e_c00318{bottom:297.112771pt;}
.y6f_c00318{bottom:297.798855pt;}
.y70_c00318{bottom:298.053769pt;}
.y71_c00318{bottom:298.336512pt;}
.y72_c00318{bottom:298.962263pt;}
.y73_c00318{bottom:299.194699pt;}
.y64_c00318{bottom:311.491163pt;}
.y65_c00318{bottom:312.066460pt;}
.y66_c00318{bottom:312.582204pt;}
.y67_c00318{bottom:313.242469pt;}
.y68_c00318{bottom:313.403671pt;}
.y69_c00318{bottom:313.930288pt;}
.y6a_c00318{bottom:314.134816pt;}
.y5f_c00318{bottom:326.254241pt;}
.y60_c00318{bottom:326.254612pt;}
.y61_c00318{bottom:326.254709pt;}
.y62_c00318{bottom:326.255183pt;}
.y63_c00318{bottom:326.255515pt;}
.y57_c00318{bottom:338.617109pt;}
.y58_c00318{bottom:339.083708pt;}
.y59_c00318{bottom:339.399296pt;}
.y5a_c00318{bottom:339.993501pt;}
.y5b_c00318{bottom:340.876188pt;}
.y5c_c00318{bottom:341.339341pt;}
.y5d_c00318{bottom:341.720091pt;}
.y5e_c00318{bottom:342.005761pt;}
.y50_c00318{bottom:356.610135pt;}
.y55_c00318{bottom:356.610287pt;}
.y4f_c00318{bottom:356.610359pt;}
.y56_c00318{bottom:356.610508pt;}
.y52_c00318{bottom:356.610513pt;}
.y51_c00318{bottom:356.610676pt;}
.y54_c00318{bottom:356.610697pt;}
.y53_c00318{bottom:356.610876pt;}
.y4e_c00318{bottom:356.610937pt;}
.y4d_c00318{bottom:356.611036pt;}
.y44_c00318{bottom:369.584028pt;}
.y45_c00318{bottom:369.851675pt;}
.y46_c00318{bottom:370.179285pt;}
.y47_c00318{bottom:370.434408pt;}
.y48_c00318{bottom:370.943067pt;}
.y49_c00318{bottom:371.201729pt;}
.y4a_c00318{bottom:372.180609pt;}
.y4b_c00318{bottom:372.492564pt;}
.y4c_c00318{bottom:372.704920pt;}
.y3b_c00318{bottom:384.945827pt;}
.y3c_c00318{bottom:385.254656pt;}
.y3d_c00318{bottom:385.804928pt;}
.y3e_c00318{bottom:385.973132pt;}
.y3f_c00318{bottom:386.272320pt;}
.y40_c00318{bottom:386.921116pt;}
.y41_c00318{bottom:387.183333pt;}
.y42_c00318{bottom:388.027187pt;}
.y43_c00318{bottom:388.185432pt;}
.y31_c00318{bottom:398.871291pt;}
.y32_c00318{bottom:399.140124pt;}
.y33_c00318{bottom:399.924279pt;}
.y34_c00318{bottom:400.148539pt;}
.y35_c00318{bottom:400.429631pt;}
.y36_c00318{bottom:401.215395pt;}
.y37_c00318{bottom:401.470496pt;}
.y38_c00318{bottom:402.450204pt;}
.y39_c00318{bottom:402.759667pt;}
.y3a_c00318{bottom:403.590703pt;}
.y2b_c00318{bottom:414.713115pt;}
.y2c_c00318{bottom:415.700475pt;}
.y2d_c00318{bottom:416.051513pt;}
.y2e_c00318{bottom:416.900176pt;}
.y2f_c00318{bottom:417.980107pt;}
.y30_c00318{bottom:418.377068pt;}
.y24_c00318{bottom:429.834977pt;}
.y25_c00318{bottom:430.057536pt;}
.y26_c00318{bottom:430.798151pt;}
.y27_c00318{bottom:431.081785pt;}
.y28_c00318{bottom:431.435680pt;}
.y29_c00318{bottom:432.277223pt;}
.y2a_c00318{bottom:432.526377pt;}
.y1b_c00318{bottom:445.194921pt;}
.y1c_c00318{bottom:445.558344pt;}
.y1d_c00318{bottom:445.893920pt;}
.y1e_c00318{bottom:446.858431pt;}
.y1f_c00318{bottom:447.237207pt;}
.y20_c00318{bottom:447.484759pt;}
.y21_c00318{bottom:448.176640pt;}
.y22_c00318{bottom:448.457887pt;}
.y23_c00318{bottom:449.029745pt;}
.y12_c00318{bottom:460.798145pt;}
.y13_c00318{bottom:461.142403pt;}
.y14_c00318{bottom:461.414704pt;}
.y15_c00318{bottom:461.723775pt;}
.y16_c00318{bottom:462.487649pt;}
.y17_c00318{bottom:462.818756pt;}
.y18_c00318{bottom:463.559552pt;}
.y19_c00318{bottom:464.534607pt;}
.y1a_c00318{bottom:464.717835pt;}
.ya_c00318{bottom:475.680221pt;}
.yb_c00318{bottom:476.328045pt;}
.yc_c00318{bottom:476.951264pt;}
.yd_c00318{bottom:477.653939pt;}
.ye_c00318{bottom:477.800833pt;}
.yf_c00318{bottom:478.413145pt;}
.y10_c00318{bottom:478.609700pt;}
.y11_c00318{bottom:479.304441pt;}
.y2_c00318{bottom:490.564000pt;}
.y3_c00318{bottom:491.470871pt;}
.y4_c00318{bottom:491.762568pt;}
.y5_c00318{bottom:492.162136pt;}
.y6_c00318{bottom:492.587861pt;}
.y7_c00318{bottom:493.369657pt;}
.y8_c00318{bottom:493.595961pt;}
.y9_c00318{bottom:494.651480pt;}
.y1_c00318{bottom:507.241333pt;}
.h11_c00318{height:51.333333pt;}
.ha_c00318{height:51.340750pt;}
.h5_c00318{height:52.274219pt;}
.hb_c00318{height:53.200000pt;}
.h6_c00318{height:53.207687pt;}
.hd_c00318{height:54.133333pt;}
.h7_c00318{height:54.141155pt;}
.h4_c00318{height:55.074623pt;}
.h10_c00318{height:56.000000pt;}
.h8_c00318{height:56.008091pt;}
.hf_c00318{height:56.933333pt;}
.hc_c00318{height:57.866667pt;}
.he_c00318{height:59.733333pt;}
.h3_c00318{height:59.741964pt;}
.h2_c00318{height:60.666667pt;}
.h9_c00318{height:60.675432pt;}
.h12_c00318{height:62.533333pt;}
.h0_c00318{height:545.040000pt;}
.h1_c00318{height:545.333333pt;}
.w0_c00318{width:319.200000pt;}
.w1_c00318{width:319.333333pt;}
.x0_c00318{left:0.000000pt;}
.x53_c00318{left:20.638203pt;}
.x2_c00318{left:21.564000pt;}
.x26_c00318{left:22.997507pt;}
.x6c_c00318{left:24.960000pt;}
.x62_c00318{left:28.800000pt;}
.x54_c00318{left:33.120473pt;}
.x21_c00318{left:35.470997pt;}
.x3c_c00318{left:36.723591pt;}
.x61_c00318{left:38.401433pt;}
.x72_c00318{left:39.360000pt;}
.x5d_c00318{left:40.321569pt;}
.x37_c00318{left:42.112120pt;}
.x11_c00318{left:43.545040pt;}
.x7e_c00318{left:44.640000pt;}
.x19_c00318{left:45.767868pt;}
.x78_c00318{left:48.960000pt;}
.x3d_c00318{left:51.125095pt;}
.x45_c00318{left:54.405243pt;}
.x4f_c00318{left:58.935607pt;}
.x12_c00318{left:60.582668pt;}
.x70_c00318{left:62.160000pt;}
.xa_c00318{left:64.487676pt;}
.x63_c00318{left:66.480000pt;}
.x1a_c00318{left:68.096616pt;}
.x4a_c00318{left:68.991284pt;}
.x50_c00318{left:71.185575pt;}
.x3_c00318{left:74.909333pt;}
.x2a_c00318{left:77.489921pt;}
.x77_c00318{left:78.960000pt;}
.x13_c00318{left:79.861652pt;}
.x22_c00318{left:81.782457pt;}
.x32_c00318{left:82.946124pt;}
.x68_c00318{left:85.680000pt;}
.x38_c00318{left:86.981847pt;}
.x2b_c00318{left:89.269513pt;}
.x3e_c00318{left:90.731208pt;}
.x4_c00318{left:92.068000pt;}
.x75_c00318{left:93.360000pt;}
.x33_c00318{left:94.958736pt;}
.x59_c00318{left:96.490865pt;}
.x23_c00318{left:99.486752pt;}
.x27_c00318{left:101.726840pt;}
.x2c_c00318{left:104.078348pt;}
.xb_c00318{left:106.011748pt;}
.x3f_c00318{left:108.493664pt;}
.x7b_c00318{left:110.784000pt;}
.x4b_c00318{left:111.960267pt;}
.x5_c00318{left:115.572000pt;}
.x46_c00318{left:119.455241pt;}
.x24_c00318{left:121.637804pt;}
.x64_c00318{left:124.800000pt;}
.x39_c00318{left:126.160521pt;}
.x14_c00318{left:127.619801pt;}
.x66_c00318{left:129.120000pt;}
.x1b_c00318{left:132.364125pt;}
.x1_c00318{left:134.400000pt;}
.x55_c00318{left:136.096879pt;}
.x71_c00318{left:138.000000pt;}
.x6_c00318{left:140.614667pt;}
.x5e_c00318{left:143.296664pt;}
.x69_c00318{left:144.240000pt;}
.x2d_c00318{left:145.435609pt;}
.x15_c00318{left:148.273475pt;}
.x28_c00318{left:151.648173pt;}
.xc_c00318{left:152.837335pt;}
.x6e_c00318{left:155.280000pt;}
.x6d_c00318{left:156.240000pt;}
.x1c_c00318{left:157.626320pt;}
.x2e_c00318{left:158.872489pt;}
.x5f_c00318{left:161.299188pt;}
.xd_c00318{left:162.655008pt;}
.x40_c00318{left:164.421825pt;}
.x4c_c00318{left:166.960936pt;}
.x67_c00318{left:169.680000pt;}
.x79_c00318{left:170.880000pt;}
.x1d_c00318{left:174.149553pt;}
.x49_c00318{left:175.462248pt;}
.x5a_c00318{left:176.421963pt;}
.x51_c00318{left:178.945727pt;}
.x4d_c00318{left:180.366069pt;}
.x34_c00318{left:181.367133pt;}
.x47_c00318{left:182.518460pt;}
.x73_c00318{left:185.040000pt;}
.x7_c00318{left:186.602667pt;}
.x25_c00318{left:189.797627pt;}
.x76_c00318{left:191.040000pt;}
.x5b_c00318{left:193.464215pt;}
.x16_c00318{left:194.595601pt;}
.x41_c00318{left:197.786125pt;}
.x6a_c00318{left:198.960000pt;}
.x8_c00318{left:199.914667pt;}
.x60_c00318{left:201.385437pt;}
.xe_c00318{left:203.459057pt;}
.x56_c00318{left:209.547451pt;}
.x2f_c00318{left:210.461411pt;}
.x42_c00318{left:213.387969pt;}
.x29_c00318{left:215.173507pt;}
.xf_c00318{left:216.590177pt;}
.x7f_c00318{left:218.400000pt;}
.x1e_c00318{left:220.261784pt;}
.x3a_c00318{left:221.395004pt;}
.x4e_c00318{left:224.288476pt;}
.x30_c00318{left:226.782200pt;}
.x57_c00318{left:230.910949pt;}
.x65_c00318{left:232.320000pt;}
.x5c_c00318{left:236.910105pt;}
.x80_c00318{left:237.840000pt;}
.x1f_c00318{left:239.002419pt;}
.x52_c00318{left:240.175499pt;}
.x35_c00318{left:241.596860pt;}
.x48_c00318{left:242.829543pt;}
.x3b_c00318{left:245.393969pt;}
.x7c_c00318{left:246.865333pt;}
.x43_c00318{left:248.432768pt;}
.x36_c00318{left:252.866760pt;}
.x7a_c00318{left:254.640000pt;}
.x17_c00318{left:255.560644pt;}
.x7d_c00318{left:258.389333pt;}
.x9_c00318{left:262.004000pt;}
.x10_c00318{left:262.949097pt;}
.x44_c00318{left:265.234952pt;}
.x18_c00318{left:267.044848pt;}
.x6f_c00318{left:268.800000pt;}
.x31_c00318{left:270.488704pt;}
.x58_c00318{left:272.916409pt;}
.x74_c00318{left:274.080000pt;}
.x20_c00318{left:277.113044pt;}
.x6b_c00318{left:297.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00319 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00319 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00319 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00319 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00319.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00319;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00319{transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.015075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015075,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);}
.mc3_c00319{transform:matrix(0.070285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070285,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140320,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);}
.me0_c00319{transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00319{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.mf4_c00319{transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);}
.m20_c00319{transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);}
.m65_c00319{transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);}
.m35_c00319{transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);}
.m8c_c00319{transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);}
.mc0_c00319{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.m8b_c00319{transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163415,0.000000,0.000000,0.250000,0,0);}
.mbe_c00319{transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);}
.me5_c00319{transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);}
.mb7_c00319{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m88_c00319{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m7e_c00319{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m84_c00319{transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);}
.m81_c00319{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);}
.m66_c00319{transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);}
.mc1_c00319{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m75_c00319{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.mc8_c00319{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174395,0.000000,0.000000,0.250000,0,0);}
.m58_c00319{transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);}
.me7_c00319{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.md9_c00319{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.mef_c00319{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.m8e_c00319{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.mc2_c00319{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.md8_c00319{transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176615,0.000000,0.000000,0.250000,0,0);}
.m62_c00319{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m6a_c00319{transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);}
.m63_c00319{transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);}
.mf3_c00319{transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);}
.mf2_c00319{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.mb6_c00319{transform:matrix(0.178990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178990,0.000000,0.000000,0.250000,0,0);}
.m5a_c00319{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);}
.mb2_c00319{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m30_c00319{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00319{transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);}
.m3b_c00319{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.maa_c00319{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m21_c00319{transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m79_c00319{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m4f_c00319{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.mf6_c00319{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.md5_c00319{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m54_c00319{transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00319{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m57_c00319{transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);}
.me9_c00319{transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);}
.md6_c00319{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m72_c00319{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.mf8_c00319{transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187015,0.000000,0.000000,0.250000,0,0);}
.m32_c00319{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.mcd_c00319{transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);}
.m37_c00319{transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);}
.m44_c00319{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);}
.m83_c00319{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.m8d_c00319{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.me2_c00319{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00319{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.mf7_c00319{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.mdd_c00319{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00319{transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);}
.m7b_c00319{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.md1_c00319{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.mc5_c00319{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m9a_c00319{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00319{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.m85_c00319{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m47_c00319{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m4b_c00319{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.mec_c00319{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m6d_c00319{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.me4_c00319{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m82_c00319{transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193830,0.000000,0.000000,0.250000,0,0);}
.m87_c00319{transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193990,0.000000,0.000000,0.250000,0,0);}
.m78_c00319{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.mf5_c00319{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m80_c00319{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.mde_c00319{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.m61_c00319{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.m5d_c00319{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.m39_c00319{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mcb_c00319{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);}
.m9f_c00319{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.mb3_c00319{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m4d_c00319{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m3a_c00319{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00319{transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);}
.mba_c00319{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);}
.m64_c00319{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mbf_c00319{transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);}
.mc9_c00319{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m22_c00319{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m33_c00319{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m60_c00319{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m97_c00319{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m40_c00319{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m73_c00319{transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203595,0.000000,0.000000,0.250000,0,0);}
.md3_c00319{transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203635,0.000000,0.000000,0.250000,0,0);}
.m86_c00319{transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m67_c00319{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.mb8_c00319{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m77_c00319{transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204180,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m6f_c00319{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m89_c00319{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.mcc_c00319{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.ma3_c00319{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00319{transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);}
.m7c_c00319{transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);}
.mb1_c00319{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m6e_c00319{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.md0_c00319{transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00319{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00319{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.mdf_c00319{transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);}
.maf_c00319{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.m4c_c00319{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m68_c00319{transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);}
.m55_c00319{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.m76_c00319{transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);}
.m5b_c00319{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m70_c00319{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m94_c00319{transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212860,0.000000,0.000000,0.250000,0,0);}
.mb5_c00319{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);}
.m6c_c00319{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m92_c00319{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.mab_c00319{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.meb_c00319{transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);}
.med_c00319{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.m74_c00319{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m53_c00319{transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214585,0.000000,0.000000,0.250000,0,0);}
.mcf_c00319{transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);}
.m5e_c00319{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.mbb_c00319{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.ma7_c00319{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.mae_c00319{transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215165,0.000000,0.000000,0.250000,0,0);}
.m51_c00319{transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);}
.md7_c00319{transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.217660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217660,0.000000,0.000000,0.250000,0,0);}
.mf0_c00319{transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);}
.m50_c00319{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.218605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218605,0.000000,0.000000,0.250000,0,0);}
.m71_c00319{transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);}
.m36_c00319{transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);}
.m99_c00319{transform:matrix(0.219190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219190,0.000000,0.000000,0.250000,0,0);}
.m69_c00319{transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);}
.ma9_c00319{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mca_c00319{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00319{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.me3_c00319{transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);}
.md2_c00319{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.me8_c00319{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);}
.m91_c00319{transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);}
.mc6_c00319{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00319{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.mb0_c00319{transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223570,0.000000,0.000000,0.250000,0,0);}
.md4_c00319{transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);}
.mee_c00319{transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);}
.ma4_c00319{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m56_c00319{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.m7a_c00319{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m8f_c00319{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.m59_c00319{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.me6_c00319{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me1_c00319{transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);}
.mdc_c00319{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);}
.m9b_c00319{transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);}
.m7d_c00319{transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m5c_c00319{transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.233165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233165,0.000000,0.000000,0.250000,0,0);}
.m98_c00319{transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233630,0.000000,0.000000,0.250000,0,0);}
.m52_c00319{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.m46_c00319{transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);}
.m4e_c00319{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m93_c00319{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m9d_c00319{transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);}
.m49_c00319{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.mce_c00319{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00319{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.ma1_c00319{transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);}
.m96_c00319{transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);}
.m90_c00319{transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);}
.ma2_c00319{transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247270,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);}
.mbc_c00319{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.mf1_c00319{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.mac_c00319{transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);}
.m6b_c00319{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);}
.ma0_c00319{transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);}
.me_c00319{transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.281100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281100,0.000000,0.000000,0.250000,0,0);}
.m95_c00319{transform:matrix(0.289510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289510,0.000000,0.000000,0.250000,0,0);}
.mea_c00319{transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);}
.mad_c00319{transform:matrix(0.374365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374365,0.000000,0.000000,0.250000,0,0);}
.ma5_c00319{transform:matrix(0.411515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411515,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.561975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00319{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:0.000000px;}
.fc0_c00319{color:transparent;}
.fs7_c00319{font-size:54.600000px;}
.fs9_c00319{font-size:55.650000px;}
.fs3_c00319{font-size:56.700000px;}
.fs8_c00319{font-size:57.750000px;}
.fsb_c00319{font-size:58.800000px;}
.fs5_c00319{font-size:59.850000px;}
.fs2_c00319{font-size:60.900000px;}
.fsa_c00319{font-size:63.000000px;}
.fs1_c00319{font-size:64.050000px;}
.fs6_c00319{font-size:65.100000px;}
.fs4_c00319{font-size:67.200000px;}
.fsc_c00319{font-size:69.300000px;}
.fs0_c00319{font-size:129.150000px;}
.y0_c00319{bottom:0.000000px;}
.y21_c00319{bottom:25.746000px;}
.y20_c00319{bottom:42.997500px;}
.y1f_c00319{bottom:59.586000px;}
.y1e_c00319{bottom:76.543500px;}
.y1d_c00319{bottom:92.341500px;}
.y1c_c00319{bottom:110.611500px;}
.y1b_c00319{bottom:127.648500px;}
.y1a_c00319{bottom:145.021500px;}
.y19_c00319{bottom:161.883000px;}
.y18_c00319{bottom:179.401500px;}
.y17_c00319{bottom:196.204500px;}
.y16_c00319{bottom:213.225000px;}
.y15_c00319{bottom:230.965500px;}
.y14_c00319{bottom:247.788000px;}
.y13_c00319{bottom:263.850000px;}
.y12_c00319{bottom:281.670000px;}
.y11_c00319{bottom:298.108500px;}
.y10_c00319{bottom:314.670000px;}
.yf_c00319{bottom:332.248500px;}
.ye_c00319{bottom:349.287000px;}
.yd_c00319{bottom:366.688500px;}
.yc_c00319{bottom:383.371500px;}
.yb_c00319{bottom:399.963000px;}
.ya_c00319{bottom:417.187500px;}
.y9_c00319{bottom:434.290500px;}
.y8_c00319{bottom:450.564000px;}
.y7_c00319{bottom:468.247500px;}
.y6_c00319{bottom:484.597500px;}
.y5_c00319{bottom:501.783000px;}
.y4_c00319{bottom:519.120000px;}
.y3_c00319{bottom:535.834500px;}
.y2_c00319{bottom:552.594000px;}
.y1_c00319{bottom:565.110000px;}
.h9_c00319{height:54.600000px;}
.hb_c00319{height:55.650000px;}
.h5_c00319{height:56.700000px;}
.ha_c00319{height:57.750000px;}
.hd_c00319{height:58.800000px;}
.h7_c00319{height:59.850000px;}
.h4_c00319{height:60.900000px;}
.hc_c00319{height:63.000000px;}
.h3_c00319{height:64.050000px;}
.h8_c00319{height:65.100000px;}
.h6_c00319{height:67.200000px;}
.he_c00319{height:69.300000px;}
.h2_c00319{height:129.150000px;}
.h0_c00319{height:613.170000px;}
.h1_c00319{height:613.500000px;}
.w0_c00319{width:359.100000px;}
.w1_c00319{width:359.250000px;}
.x0_c00319{left:0.000000px;}
.x64_c00319{left:29.160000px;}
.xa_c00319{left:33.750000px;}
.x74_c00319{left:35.640000px;}
.x67_c00319{left:36.720000px;}
.x61_c00319{left:37.800000px;}
.x55_c00319{left:39.150000px;}
.x48_c00319{left:40.230000px;}
.x34_c00319{left:41.310000px;}
.x24_c00319{left:42.390000px;}
.x3_c00319{left:43.470000px;}
.x17_c00319{left:46.170000px;}
.x3a_c00319{left:56.430000px;}
.x7e_c00319{left:59.400000px;}
.x80_c00319{left:61.290000px;}
.x35_c00319{left:62.640000px;}
.x75_c00319{left:63.720000px;}
.x2d_c00319{left:67.500000px;}
.x69_c00319{left:68.850000px;}
.x1c_c00319{left:69.930000px;}
.x56_c00319{left:71.010000px;}
.xb_c00319{left:73.710000px;}
.x71_c00319{left:75.870000px;}
.x40_c00319{left:77.220000px;}
.x45_c00319{left:81.270000px;}
.x65_c00319{left:83.700000px;}
.x50_c00319{left:84.780000px;}
.x25_c00319{left:87.750000px;}
.x2e_c00319{left:89.640000px;}
.x5f_c00319{left:92.610000px;}
.xc_c00319{left:93.960000px;}
.x68_c00319{left:95.310000px;}
.x76_c00319{left:96.660000px;}
.x3b_c00319{left:98.010000px;}
.x5c_c00319{left:100.440000px;}
.x49_c00319{left:102.600000px;}
.x51_c00319{left:104.760000px;}
.x26_c00319{left:106.650000px;}
.x18_c00319{left:109.620000px;}
.x4_c00319{left:113.400000px;}
.x4d_c00319{left:114.480000px;}
.x7c_c00319{left:118.530000px;}
.x57_c00319{left:119.610000px;}
.x1_c00319{left:120.690000px;}
.x1d_c00319{left:122.040000px;}
.x5_c00319{left:125.280000px;}
.x36_c00319{left:126.630000px;}
.x6d_c00319{left:128.790000px;}
.x41_c00319{left:131.490000px;}
.x21_c00319{left:136.080000px;}
.x58_c00319{left:137.160000px;}
.x27_c00319{left:139.320000px;}
.x60_c00319{left:140.940000px;}
.xd_c00319{left:143.370000px;}
.x37_c00319{left:148.770000px;}
.x12_c00319{left:152.010000px;}
.x22_c00319{left:153.630000px;}
.x6a_c00319{left:155.790000px;}
.x4a_c00319{left:156.870000px;}
.x81_c00319{left:158.490000px;}
.x42_c00319{left:159.840000px;}
.x2f_c00319{left:165.510000px;}
.x85_c00319{left:166.590000px;}
.x78_c00319{left:169.020000px;}
.x46_c00319{left:170.910000px;}
.x52_c00319{left:172.530000px;}
.x38_c00319{left:175.230000px;}
.x1e_c00319{left:179.820000px;}
.x19_c00319{left:181.170000px;}
.x79_c00319{left:182.520000px;}
.x3c_c00319{left:185.760000px;}
.x7f_c00319{left:187.110000px;}
.x53_c00319{left:188.190000px;}
.x72_c00319{left:190.620000px;}
.x30_c00319{left:192.510000px;}
.x28_c00319{left:194.400000px;}
.x59_c00319{left:195.750000px;}
.x5d_c00319{left:198.720000px;}
.x1a_c00319{left:202.500000px;}
.x1f_c00319{left:204.120000px;}
.x6b_c00319{left:206.010000px;}
.x87_c00319{left:208.440000px;}
.x6_c00319{left:210.330000px;}
.x7a_c00319{left:215.460000px;}
.x29_c00319{left:217.080000px;}
.x86_c00319{left:218.430000px;}
.x7d_c00319{left:220.860000px;}
.x13_c00319{left:222.480000px;}
.xe_c00319{left:224.100000px;}
.x82_c00319{left:225.450000px;}
.x39_c00319{left:229.230000px;}
.x4e_c00319{left:230.310000px;}
.x6e_c00319{left:232.200000px;}
.x88_c00319{left:233.280000px;}
.x73_c00319{left:234.630000px;}
.x14_c00319{left:235.980000px;}
.x2a_c00319{left:238.140000px;}
.x6c_c00319{left:243.000000px;}
.xf_c00319{left:244.890000px;}
.x83_c00319{left:247.050000px;}
.x6f_c00319{left:248.940000px;}
.x54_c00319{left:250.560000px;}
.x15_c00319{left:252.990000px;}
.x31_c00319{left:255.690000px;}
.x4b_c00319{left:257.580000px;}
.x3d_c00319{left:260.550000px;}
.x43_c00319{left:263.520000px;}
.x7b_c00319{left:267.570000px;}
.x2b_c00319{left:268.650000px;}
.x7_c00319{left:270.540000px;}
.x5a_c00319{left:272.430000px;}
.x3e_c00319{left:273.780000px;}
.x16_c00319{left:274.860000px;}
.x62_c00319{left:277.830000px;}
.x77_c00319{left:282.150000px;}
.x32_c00319{left:284.310000px;}
.x1b_c00319{left:286.470000px;}
.x2c_c00319{left:288.090000px;}
.x44_c00319{left:291.870000px;}
.x20_c00319{left:294.030000px;}
.x70_c00319{left:295.380000px;}
.x3f_c00319{left:297.000000px;}
.x8_c00319{left:298.350000px;}
.x10_c00319{left:301.050000px;}
.x2_c00319{left:304.830000px;}
.x66_c00319{left:308.340000px;}
.x4c_c00319{left:309.420000px;}
.x4f_c00319{left:311.040000px;}
.x47_c00319{left:313.200000px;}
.x23_c00319{left:314.550000px;}
.x9_c00319{left:317.790000px;}
.x11_c00319{left:319.680000px;}
.x5b_c00319{left:321.570000px;}
.x63_c00319{left:322.920000px;}
.x33_c00319{left:325.080000px;}
.x5e_c00319{left:326.160000px;}
.x84_c00319{left:328.860000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:0.000000pt;}
.fs7_c00319{font-size:48.533333pt;}
.fs9_c00319{font-size:49.466667pt;}
.fs3_c00319{font-size:50.400000pt;}
.fs8_c00319{font-size:51.333333pt;}
.fsb_c00319{font-size:52.266667pt;}
.fs5_c00319{font-size:53.200000pt;}
.fs2_c00319{font-size:54.133333pt;}
.fsa_c00319{font-size:56.000000pt;}
.fs1_c00319{font-size:56.933333pt;}
.fs6_c00319{font-size:57.866667pt;}
.fs4_c00319{font-size:59.733333pt;}
.fsc_c00319{font-size:61.600000pt;}
.fs0_c00319{font-size:114.800000pt;}
.y0_c00319{bottom:0.000000pt;}
.y21_c00319{bottom:22.885333pt;}
.y20_c00319{bottom:38.220000pt;}
.y1f_c00319{bottom:52.965333pt;}
.y1e_c00319{bottom:68.038667pt;}
.y1d_c00319{bottom:82.081333pt;}
.y1c_c00319{bottom:98.321333pt;}
.y1b_c00319{bottom:113.465333pt;}
.y1a_c00319{bottom:128.908000pt;}
.y19_c00319{bottom:143.896000pt;}
.y18_c00319{bottom:159.468000pt;}
.y17_c00319{bottom:174.404000pt;}
.y16_c00319{bottom:189.533333pt;}
.y15_c00319{bottom:205.302667pt;}
.y14_c00319{bottom:220.256000pt;}
.y13_c00319{bottom:234.533333pt;}
.y12_c00319{bottom:250.373333pt;}
.y11_c00319{bottom:264.985333pt;}
.y10_c00319{bottom:279.706667pt;}
.yf_c00319{bottom:295.332000pt;}
.ye_c00319{bottom:310.477333pt;}
.yd_c00319{bottom:325.945333pt;}
.yc_c00319{bottom:340.774667pt;}
.yb_c00319{bottom:355.522667pt;}
.ya_c00319{bottom:370.833333pt;}
.y9_c00319{bottom:386.036000pt;}
.y8_c00319{bottom:400.501333pt;}
.y7_c00319{bottom:416.220000pt;}
.y6_c00319{bottom:430.753333pt;}
.y5_c00319{bottom:446.029333pt;}
.y4_c00319{bottom:461.440000pt;}
.y3_c00319{bottom:476.297333pt;}
.y2_c00319{bottom:491.194667pt;}
.y1_c00319{bottom:502.320000pt;}
.h9_c00319{height:48.533333pt;}
.hb_c00319{height:49.466667pt;}
.h5_c00319{height:50.400000pt;}
.ha_c00319{height:51.333333pt;}
.hd_c00319{height:52.266667pt;}
.h7_c00319{height:53.200000pt;}
.h4_c00319{height:54.133333pt;}
.hc_c00319{height:56.000000pt;}
.h3_c00319{height:56.933333pt;}
.h8_c00319{height:57.866667pt;}
.h6_c00319{height:59.733333pt;}
.he_c00319{height:61.600000pt;}
.h2_c00319{height:114.800000pt;}
.h0_c00319{height:545.040000pt;}
.h1_c00319{height:545.333333pt;}
.w0_c00319{width:319.200000pt;}
.w1_c00319{width:319.333333pt;}
.x0_c00319{left:0.000000pt;}
.x64_c00319{left:25.920000pt;}
.xa_c00319{left:30.000000pt;}
.x74_c00319{left:31.680000pt;}
.x67_c00319{left:32.640000pt;}
.x61_c00319{left:33.600000pt;}
.x55_c00319{left:34.800000pt;}
.x48_c00319{left:35.760000pt;}
.x34_c00319{left:36.720000pt;}
.x24_c00319{left:37.680000pt;}
.x3_c00319{left:38.640000pt;}
.x17_c00319{left:41.040000pt;}
.x3a_c00319{left:50.160000pt;}
.x7e_c00319{left:52.800000pt;}
.x80_c00319{left:54.480000pt;}
.x35_c00319{left:55.680000pt;}
.x75_c00319{left:56.640000pt;}
.x2d_c00319{left:60.000000pt;}
.x69_c00319{left:61.200000pt;}
.x1c_c00319{left:62.160000pt;}
.x56_c00319{left:63.120000pt;}
.xb_c00319{left:65.520000pt;}
.x71_c00319{left:67.440000pt;}
.x40_c00319{left:68.640000pt;}
.x45_c00319{left:72.240000pt;}
.x65_c00319{left:74.400000pt;}
.x50_c00319{left:75.360000pt;}
.x25_c00319{left:78.000000pt;}
.x2e_c00319{left:79.680000pt;}
.x5f_c00319{left:82.320000pt;}
.xc_c00319{left:83.520000pt;}
.x68_c00319{left:84.720000pt;}
.x76_c00319{left:85.920000pt;}
.x3b_c00319{left:87.120000pt;}
.x5c_c00319{left:89.280000pt;}
.x49_c00319{left:91.200000pt;}
.x51_c00319{left:93.120000pt;}
.x26_c00319{left:94.800000pt;}
.x18_c00319{left:97.440000pt;}
.x4_c00319{left:100.800000pt;}
.x4d_c00319{left:101.760000pt;}
.x7c_c00319{left:105.360000pt;}
.x57_c00319{left:106.320000pt;}
.x1_c00319{left:107.280000pt;}
.x1d_c00319{left:108.480000pt;}
.x5_c00319{left:111.360000pt;}
.x36_c00319{left:112.560000pt;}
.x6d_c00319{left:114.480000pt;}
.x41_c00319{left:116.880000pt;}
.x21_c00319{left:120.960000pt;}
.x58_c00319{left:121.920000pt;}
.x27_c00319{left:123.840000pt;}
.x60_c00319{left:125.280000pt;}
.xd_c00319{left:127.440000pt;}
.x37_c00319{left:132.240000pt;}
.x12_c00319{left:135.120000pt;}
.x22_c00319{left:136.560000pt;}
.x6a_c00319{left:138.480000pt;}
.x4a_c00319{left:139.440000pt;}
.x81_c00319{left:140.880000pt;}
.x42_c00319{left:142.080000pt;}
.x2f_c00319{left:147.120000pt;}
.x85_c00319{left:148.080000pt;}
.x78_c00319{left:150.240000pt;}
.x46_c00319{left:151.920000pt;}
.x52_c00319{left:153.360000pt;}
.x38_c00319{left:155.760000pt;}
.x1e_c00319{left:159.840000pt;}
.x19_c00319{left:161.040000pt;}
.x79_c00319{left:162.240000pt;}
.x3c_c00319{left:165.120000pt;}
.x7f_c00319{left:166.320000pt;}
.x53_c00319{left:167.280000pt;}
.x72_c00319{left:169.440000pt;}
.x30_c00319{left:171.120000pt;}
.x28_c00319{left:172.800000pt;}
.x59_c00319{left:174.000000pt;}
.x5d_c00319{left:176.640000pt;}
.x1a_c00319{left:180.000000pt;}
.x1f_c00319{left:181.440000pt;}
.x6b_c00319{left:183.120000pt;}
.x87_c00319{left:185.280000pt;}
.x6_c00319{left:186.960000pt;}
.x7a_c00319{left:191.520000pt;}
.x29_c00319{left:192.960000pt;}
.x86_c00319{left:194.160000pt;}
.x7d_c00319{left:196.320000pt;}
.x13_c00319{left:197.760000pt;}
.xe_c00319{left:199.200000pt;}
.x82_c00319{left:200.400000pt;}
.x39_c00319{left:203.760000pt;}
.x4e_c00319{left:204.720000pt;}
.x6e_c00319{left:206.400000pt;}
.x88_c00319{left:207.360000pt;}
.x73_c00319{left:208.560000pt;}
.x14_c00319{left:209.760000pt;}
.x2a_c00319{left:211.680000pt;}
.x6c_c00319{left:216.000000pt;}
.xf_c00319{left:217.680000pt;}
.x83_c00319{left:219.600000pt;}
.x6f_c00319{left:221.280000pt;}
.x54_c00319{left:222.720000pt;}
.x15_c00319{left:224.880000pt;}
.x31_c00319{left:227.280000pt;}
.x4b_c00319{left:228.960000pt;}
.x3d_c00319{left:231.600000pt;}
.x43_c00319{left:234.240000pt;}
.x7b_c00319{left:237.840000pt;}
.x2b_c00319{left:238.800000pt;}
.x7_c00319{left:240.480000pt;}
.x5a_c00319{left:242.160000pt;}
.x3e_c00319{left:243.360000pt;}
.x16_c00319{left:244.320000pt;}
.x62_c00319{left:246.960000pt;}
.x77_c00319{left:250.800000pt;}
.x32_c00319{left:252.720000pt;}
.x1b_c00319{left:254.640000pt;}
.x2c_c00319{left:256.080000pt;}
.x44_c00319{left:259.440000pt;}
.x20_c00319{left:261.360000pt;}
.x70_c00319{left:262.560000pt;}
.x3f_c00319{left:264.000000pt;}
.x8_c00319{left:265.200000pt;}
.x10_c00319{left:267.600000pt;}
.x2_c00319{left:270.960000pt;}
.x66_c00319{left:274.080000pt;}
.x4c_c00319{left:275.040000pt;}
.x4f_c00319{left:276.480000pt;}
.x47_c00319{left:278.400000pt;}
.x23_c00319{left:279.600000pt;}
.x9_c00319{left:282.480000pt;}
.x11_c00319{left:284.160000pt;}
.x5b_c00319{left:285.840000pt;}
.x63_c00319{left:287.040000pt;}
.x33_c00319{left:288.960000pt;}
.x5e_c00319{left:289.920000pt;}
.x84_c00319{left:292.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00320 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00320 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00320 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00320 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00320.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00320{transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.095380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095380,0.000000,0.000000,0.250000,0,0);}
.me9_c00320{transform:matrix(0.098020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098020,0.000000,0.000000,0.250000,0,0);}
.m6d_c00320{transform:matrix(0.121410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121410,0.000000,0.000000,0.250000,0,0);}
.mea_c00320{transform:matrix(0.133345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133345,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.134240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134240,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135630,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.137570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137570,0.000000,0.000000,0.250000,0,0);}
.mdc_c00320{transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141420,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);}
.mdd_c00320{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.mef_c00320{transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149545,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150830,0.000000,0.000000,0.250000,0,0);}
.m78_c00320{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.mda_c00320{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);}
.m81_c00320{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.mbc_c00320{transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);}
.mc1_c00320{transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159085,0.000000,0.000000,0.250000,0,0);}
.mf4_c00320{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.md1_c00320{transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160685,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.mf0_c00320{transform:matrix(0.161130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161130,0.000000,0.000000,0.250000,0,0);}
.mc5_c00320{transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161380,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m8d_c00320{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.163210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00320{transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);}
.med_c00320{transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);}
.m82_c00320{transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164345,0.000000,0.000000,0.250000,0,0);}
.m63_c00320{transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);}
.m7b_c00320{transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00320{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.me4_c00320{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);}
.me6_c00320{transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);}
.m5e_c00320{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m40_c00320{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m43_c00320{transform:matrix(0.170460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170460,0.000000,0.000000,0.250000,0,0);}
.md3_c00320{transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);}
.m91_c00320{transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171720,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m83_c00320{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.mc9_c00320{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m9a_c00320{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m73_c00320{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m92_c00320{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m87_c00320{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m31_c00320{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m5c_c00320{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m7e_c00320{transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177740,0.000000,0.000000,0.250000,0,0);}
.m96_c00320{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.maf_c00320{transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178380,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);}
.ma2_c00320{transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);}
.m85_c00320{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m6c_c00320{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.m8f_c00320{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);}
.m2e_c00320{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.mf2_c00320{transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);}
.mcd_c00320{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m99_c00320{transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);}
.mf3_c00320{transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180670,0.000000,0.000000,0.250000,0,0);}
.mb9_c00320{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m48_c00320{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.m54_c00320{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.m95_c00320{transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182745,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.mb2_c00320{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.mee_c00320{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.m8b_c00320{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m88_c00320{transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);}
.m4c_c00320{transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183830,0.000000,0.000000,0.250000,0,0);}
.m90_c00320{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.mb7_c00320{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.mdb_c00320{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m80_c00320{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.maa_c00320{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m79_c00320{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.mdf_c00320{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.mbb_c00320{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m57_c00320{transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);}
.m51_c00320{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m7a_c00320{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m7f_c00320{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m41_c00320{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.m77_c00320{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.m5f_c00320{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m9c_c00320{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.ma4_c00320{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.mde_c00320{transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);}
.m47_c00320{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.m2d_c00320{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.mce_c00320{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m58_c00320{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.ma1_c00320{transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);}
.m8a_c00320{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m8c_c00320{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m59_c00320{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.mac_c00320{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m9d_c00320{transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);}
.m86_c00320{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.mc3_c00320{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);}
.mba_c00320{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);}
.me3_c00320{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.m7d_c00320{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.me0_c00320{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m89_c00320{transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);}
.m5a_c00320{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.mc7_c00320{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);}
.m9e_c00320{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m55_c00320{transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);}
.m49_c00320{transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);}
.m6b_c00320{transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00320{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.mb4_c00320{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m42_c00320{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m5b_c00320{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00320{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m72_c00320{transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);}
.m8e_c00320{transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);}
.m5d_c00320{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m70_c00320{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m64_c00320{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.mbd_c00320{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.m4b_c00320{transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);}
.mc6_c00320{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m7c_c00320{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00320{transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m20_c00320{transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);}
.m9b_c00320{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.me5_c00320{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.md8_c00320{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.m6e_c00320{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.mb1_c00320{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m98_c00320{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.ma7_c00320{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.m93_c00320{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);}
.md9_c00320{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);}
.m62_c00320{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mb6_c00320{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);}
.m56_c00320{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.ma6_c00320{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m46_c00320{transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);}
.mf1_c00320{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.md0_c00320{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.mcf_c00320{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m97_c00320{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);}
.m53_c00320{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214940,0.000000,0.000000,0.250000,0,0);}
.me1_c00320{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.216485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216485,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m50_c00320{transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);}
.mcc_c00320{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m76_c00320{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.me7_c00320{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.mb0_c00320{transform:matrix(0.220090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220090,0.000000,0.000000,0.250000,0,0);}
.m71_c00320{transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220410,0.000000,0.000000,0.250000,0,0);}
.me2_c00320{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);}
.md7_c00320{transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);}
.mc8_c00320{transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);}
.m45_c00320{transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m61_c00320{transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);}
.mc0_c00320{transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00320{transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224040,0.000000,0.000000,0.250000,0,0);}
.mb5_c00320{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.m4f_c00320{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m4e_c00320{transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);}
.mab_c00320{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.md5_c00320{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.ma0_c00320{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.mcb_c00320{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00320{transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);}
.m52_c00320{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m60_c00320{transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);}
.mca_c00320{transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);}
.m65_c00320{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m67_c00320{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.md4_c00320{transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);}
.m6a_c00320{transform:matrix(0.235885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235885,0.000000,0.000000,0.250000,0,0);}
.mad_c00320{transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);}
.m84_c00320{transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);}
.m94_c00320{transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00320{transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);}
.m74_c00320{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.md2_c00320{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.md6_c00320{transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.mec_c00320{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.mc4_c00320{transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);}
.m75_c00320{transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);}
.ma3_c00320{transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);}
.m68_c00320{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.m4d_c00320{transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);}
.mbf_c00320{transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);}
.mae_c00320{transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281365,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);}
.mbe_c00320{transform:matrix(0.302535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);}
.me8_c00320{transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);}
.m69_c00320{transform:matrix(0.345095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345095,0.000000,0.000000,0.250000,0,0);}
.meb_c00320{transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.431910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431910,0.000000,0.000000,0.250000,0,0);}
.m66_c00320{transform:matrix(0.448790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448790,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:0.000000px;}
.fc0_c00320{color:transparent;}
.fsf_c00320{font-size:22.050000px;}
.fsd_c00320{font-size:40.950000px;}
.fs3_c00320{font-size:50.400000px;}
.fsc_c00320{font-size:55.650000px;}
.fs8_c00320{font-size:57.750000px;}
.fs7_c00320{font-size:58.800000px;}
.fs4_c00320{font-size:59.850000px;}
.fs6_c00320{font-size:60.900000px;}
.fs9_c00320{font-size:61.950000px;}
.fs0_c00320{font-size:63.000000px;}
.fsb_c00320{font-size:64.050000px;}
.fsa_c00320{font-size:66.150000px;}
.fs5_c00320{font-size:67.200000px;}
.fs1_c00320{font-size:68.250000px;}
.fs2_c00320{font-size:70.350000px;}
.fse_c00320{font-size:72.450000px;}
.y0_c00320{bottom:0.000000px;}
.yeb_c00320{bottom:29.971500px;}
.yec_c00320{bottom:31.734000px;}
.yed_c00320{bottom:32.776500px;}
.yee_c00320{bottom:33.228000px;}
.yef_c00320{bottom:33.937500px;}
.yf0_c00320{bottom:34.732500px;}
.yf1_c00320{bottom:35.019000px;}
.yf2_c00320{bottom:36.160500px;}
.yea_c00320{bottom:51.231000px;}
.yf3_c00320{bottom:54.540000px;}
.ye3_c00320{bottom:62.646000px;}
.ye4_c00320{bottom:64.879500px;}
.ye5_c00320{bottom:66.907500px;}
.ye6_c00320{bottom:67.920000px;}
.ye7_c00320{bottom:68.671500px;}
.ye8_c00320{bottom:70.132500px;}
.ye9_c00320{bottom:70.915500px;}
.ydb_c00320{bottom:82.078500px;}
.ydc_c00320{bottom:83.053500px;}
.ydd_c00320{bottom:83.607000px;}
.yde_c00320{bottom:85.171500px;}
.ydf_c00320{bottom:85.548000px;}
.ye0_c00320{bottom:86.011500px;}
.ye1_c00320{bottom:87.907500px;}
.ye2_c00320{bottom:88.477500px;}
.yd3_c00320{bottom:98.817000px;}
.yd4_c00320{bottom:99.067500px;}
.yd5_c00320{bottom:100.590000px;}
.yd6_c00320{bottom:100.977000px;}
.yd7_c00320{bottom:102.162000px;}
.yd8_c00320{bottom:102.993000px;}
.yd9_c00320{bottom:103.279500px;}
.yda_c00320{bottom:104.260500px;}
.yca_c00320{bottom:116.095500px;}
.ycb_c00320{bottom:117.090000px;}
.ycc_c00320{bottom:117.529500px;}
.ycd_c00320{bottom:118.689000px;}
.yce_c00320{bottom:118.909500px;}
.ycf_c00320{bottom:119.113500px;}
.yd0_c00320{bottom:119.577000px;}
.yd1_c00320{bottom:120.558000px;}
.yd2_c00320{bottom:121.074000px;}
.yc0_c00320{bottom:132.034500px;}
.yc1_c00320{bottom:133.194000px;}
.yc2_c00320{bottom:133.738500px;}
.yc3_c00320{bottom:135.253500px;}
.yc4_c00320{bottom:135.601500px;}
.yc5_c00320{bottom:136.306500px;}
.yc6_c00320{bottom:137.379000px;}
.yc7_c00320{bottom:138.193500px;}
.yc8_c00320{bottom:138.856500px;}
.yc9_c00320{bottom:139.873500px;}
.yb8_c00320{bottom:148.503000px;}
.yb9_c00320{bottom:148.818000px;}
.yba_c00320{bottom:149.883000px;}
.ybb_c00320{bottom:151.042500px;}
.ybc_c00320{bottom:151.705500px;}
.ybd_c00320{bottom:153.838500px;}
.ybe_c00320{bottom:154.818000px;}
.ybf_c00320{bottom:155.392500px;}
.yb0_c00320{bottom:164.976000px;}
.yb1_c00320{bottom:165.469500px;}
.yb2_c00320{bottom:166.261500px;}
.yb3_c00320{bottom:167.170500px;}
.yb4_c00320{bottom:168.952500px;}
.yb5_c00320{bottom:169.633500px;}
.yb6_c00320{bottom:170.946000px;}
.yb7_c00320{bottom:172.236000px;}
.yaa_c00320{bottom:182.791500px;}
.yab_c00320{bottom:183.268500px;}
.yac_c00320{bottom:185.214000px;}
.yad_c00320{bottom:185.784000px;}
.yae_c00320{bottom:188.157000px;}
.yaf_c00320{bottom:190.189500px;}
.ya2_c00320{bottom:199.777500px;}
.ya3_c00320{bottom:200.583000px;}
.ya4_c00320{bottom:201.246000px;}
.ya5_c00320{bottom:202.444500px;}
.ya6_c00320{bottom:203.436000px;}
.ya7_c00320{bottom:204.039000px;}
.ya8_c00320{bottom:205.120500px;}
.ya9_c00320{bottom:205.672500px;}
.y9b_c00320{bottom:216.544500px;}
.y9c_c00320{bottom:218.529000px;}
.y9d_c00320{bottom:220.465500px;}
.y9e_c00320{bottom:221.073000px;}
.y9f_c00320{bottom:222.550500px;}
.ya0_c00320{bottom:223.077000px;}
.ya1_c00320{bottom:224.148000px;}
.y94_c00320{bottom:234.360000px;}
.y95_c00320{bottom:234.919500px;}
.y96_c00320{bottom:235.849500px;}
.y97_c00320{bottom:236.604000px;}
.y98_c00320{bottom:237.799500px;}
.y99_c00320{bottom:238.342500px;}
.y9a_c00320{bottom:239.845500px;}
.y8c_c00320{bottom:251.103000px;}
.y8d_c00320{bottom:252.415500px;}
.y8e_c00320{bottom:252.721500px;}
.y8f_c00320{bottom:253.147500px;}
.y90_c00320{bottom:254.196000px;}
.y91_c00320{bottom:254.902500px;}
.y92_c00320{bottom:255.597000px;}
.y93_c00320{bottom:256.701000px;}
.y87_c00320{bottom:268.651500px;}
.y88_c00320{bottom:269.764500px;}
.y89_c00320{bottom:272.011500px;}
.y8a_c00320{bottom:273.247500px;}
.y8b_c00320{bottom:275.032500px;}
.y7f_c00320{bottom:286.201500px;}
.y80_c00320{bottom:287.655000px;}
.y81_c00320{bottom:288.229500px;}
.y82_c00320{bottom:290.761500px;}
.y83_c00320{bottom:291.174000px;}
.y84_c00320{bottom:291.877500px;}
.y85_c00320{bottom:293.632500px;}
.y86_c00320{bottom:293.971500px;}
.y78_c00320{bottom:303.211500px;}
.y79_c00320{bottom:304.576500px;}
.y7a_c00320{bottom:305.104500px;}
.y7b_c00320{bottom:307.240500px;}
.y7c_c00320{bottom:307.942500px;}
.y7d_c00320{bottom:309.348000px;}
.y7e_c00320{bottom:310.048500px;}
.y70_c00320{bottom:321.030000px;}
.y71_c00320{bottom:321.783000px;}
.y72_c00320{bottom:322.201500px;}
.y73_c00320{bottom:322.942500px;}
.y74_c00320{bottom:324.579000px;}
.y75_c00320{bottom:325.095000px;}
.y76_c00320{bottom:327.129000px;}
.y77_c00320{bottom:327.573000px;}
.y67_c00320{bottom:335.890500px;}
.y68_c00320{bottom:337.273500px;}
.y69_c00320{bottom:338.128500px;}
.y6a_c00320{bottom:338.686500px;}
.y6b_c00320{bottom:340.225500px;}
.y6c_c00320{bottom:340.957500px;}
.y6d_c00320{bottom:342.298500px;}
.y6e_c00320{bottom:344.184000px;}
.y6f_c00320{bottom:344.475000px;}
.y5f_c00320{bottom:353.971500px;}
.y60_c00320{bottom:354.628500px;}
.y61_c00320{bottom:355.606500px;}
.y62_c00320{bottom:356.208000px;}
.y63_c00320{bottom:357.327000px;}
.y64_c00320{bottom:357.709500px;}
.y65_c00320{bottom:358.075500px;}
.y66_c00320{bottom:359.469000px;}
.y57_c00320{bottom:369.637500px;}
.y58_c00320{bottom:371.169000px;}
.y59_c00320{bottom:372.094500px;}
.y5a_c00320{bottom:373.527000px;}
.y5b_c00320{bottom:374.292000px;}
.y5c_c00320{bottom:375.624000px;}
.y5d_c00320{bottom:375.991500px;}
.y5e_c00320{bottom:376.561500px;}
.y4e_c00320{bottom:385.569000px;}
.y4f_c00320{bottom:386.721000px;}
.y50_c00320{bottom:388.437000px;}
.y51_c00320{bottom:388.821000px;}
.y52_c00320{bottom:390.126000px;}
.y53_c00320{bottom:390.786000px;}
.y54_c00320{bottom:391.780500px;}
.y55_c00320{bottom:392.385000px;}
.y56_c00320{bottom:393.061500px;}
.y47_c00320{bottom:402.039000px;}
.y48_c00320{bottom:403.522500px;}
.y49_c00320{bottom:404.341500px;}
.y4a_c00320{bottom:404.839500px;}
.y4b_c00320{bottom:406.425000px;}
.y4c_c00320{bottom:407.748000px;}
.y4d_c00320{bottom:409.573500px;}
.y3e_c00320{bottom:419.319000px;}
.y3f_c00320{bottom:420.613500px;}
.y40_c00320{bottom:421.105500px;}
.y41_c00320{bottom:421.722000px;}
.y42_c00320{bottom:422.164500px;}
.y43_c00320{bottom:423.246000px;}
.y44_c00320{bottom:423.796500px;}
.y45_c00320{bottom:424.537500px;}
.y46_c00320{bottom:426.681000px;}
.y36_c00320{bottom:434.980500px;}
.y37_c00320{bottom:435.673500px;}
.y38_c00320{bottom:436.461000px;}
.y39_c00320{bottom:438.780000px;}
.y3a_c00320{bottom:440.749500px;}
.y3b_c00320{bottom:441.141000px;}
.y3c_c00320{bottom:443.005500px;}
.y3d_c00320{bottom:443.409000px;}
.y2f_c00320{bottom:453.606000px;}
.y30_c00320{bottom:454.201500px;}
.y31_c00320{bottom:455.922000px;}
.y32_c00320{bottom:456.439500px;}
.y33_c00320{bottom:457.140000px;}
.y34_c00320{bottom:459.049500px;}
.y35_c00320{bottom:460.180500px;}
.y26_c00320{bottom:468.997500px;}
.y27_c00320{bottom:469.549500px;}
.y28_c00320{bottom:470.934000px;}
.y29_c00320{bottom:471.807000px;}
.y2a_c00320{bottom:473.185500px;}
.y2b_c00320{bottom:473.613000px;}
.y2c_c00320{bottom:474.165000px;}
.y2d_c00320{bottom:475.729500px;}
.y2e_c00320{bottom:477.837000px;}
.y1f_c00320{bottom:486.010500px;}
.y20_c00320{bottom:487.255500px;}
.y21_c00320{bottom:489.174000px;}
.y22_c00320{bottom:489.697500px;}
.y23_c00320{bottom:491.497500px;}
.y24_c00320{bottom:493.051500px;}
.y25_c00320{bottom:493.882500px;}
.y18_c00320{bottom:504.639000px;}
.y19_c00320{bottom:505.224000px;}
.y1a_c00320{bottom:506.439000px;}
.y1b_c00320{bottom:507.622500px;}
.y1c_c00320{bottom:508.914000px;}
.y1d_c00320{bottom:510.538500px;}
.y1e_c00320{bottom:511.921500px;}
.y10_c00320{bottom:519.231000px;}
.y11_c00320{bottom:520.459500px;}
.y12_c00320{bottom:522.301500px;}
.y13_c00320{bottom:524.256000px;}
.y14_c00320{bottom:526.126500px;}
.y15_c00320{bottom:527.230500px;}
.y16_c00320{bottom:528.040500px;}
.y17_c00320{bottom:529.888500px;}
.y8_c00320{bottom:537.583500px;}
.y9_c00320{bottom:539.053500px;}
.ya_c00320{bottom:539.752500px;}
.yb_c00320{bottom:540.316500px;}
.yc_c00320{bottom:543.228000px;}
.yd_c00320{bottom:543.781500px;}
.ye_c00320{bottom:545.437500px;}
.yf_c00320{bottom:546.238500px;}
.y2_c00320{bottom:554.865000px;}
.y3_c00320{bottom:556.945500px;}
.y4_c00320{bottom:557.749500px;}
.y5_c00320{bottom:558.391500px;}
.y6_c00320{bottom:560.272500px;}
.y7_c00320{bottom:560.829000px;}
.y1_c00320{bottom:575.907000px;}
.h11_c00320{height:22.050000px;}
.hf_c00320{height:40.950000px;}
.h5_c00320{height:50.400000px;}
.he_c00320{height:55.650000px;}
.ha_c00320{height:57.750000px;}
.h9_c00320{height:58.800000px;}
.h6_c00320{height:59.850000px;}
.h8_c00320{height:60.900000px;}
.hb_c00320{height:61.950000px;}
.h2_c00320{height:63.000000px;}
.hd_c00320{height:64.050000px;}
.hc_c00320{height:66.150000px;}
.h7_c00320{height:67.200000px;}
.h3_c00320{height:68.250000px;}
.h4_c00320{height:70.350000px;}
.h10_c00320{height:72.450000px;}
.h0_c00320{height:613.170000px;}
.h1_c00320{height:613.500000px;}
.w0_c00320{width:359.100000px;}
.w1_c00320{width:359.250000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:21.540000px;}
.x1b_c00320{left:23.034000px;}
.x57_c00320{left:25.101000px;}
.x2c_c00320{left:26.413500px;}
.x8_c00320{left:27.628500px;}
.x28_c00320{left:28.758000px;}
.x38_c00320{left:29.800500px;}
.x63_c00320{left:31.945500px;}
.x22_c00320{left:33.547500px;}
.x7a_c00320{left:34.630500px;}
.x61_c00320{left:36.714000px;}
.x78_c00320{left:43.167000px;}
.x6f_c00320{left:45.964500px;}
.x16_c00320{left:47.785500px;}
.x23_c00320{left:50.800500px;}
.x6b_c00320{left:55.893000px;}
.x51_c00320{left:59.409000px;}
.x10_c00320{left:60.679500px;}
.x1c_c00320{left:61.960500px;}
.x48_c00320{left:63.922500px;}
.x3e_c00320{left:66.223500px;}
.x9_c00320{left:69.649500px;}
.x4d_c00320{left:72.873000px;}
.x2d_c00320{left:74.149500px;}
.x7b_c00320{left:75.241500px;}
.x33_c00320{left:77.274000px;}
.x5a_c00320{left:78.651000px;}
.x39_c00320{left:80.947500px;}
.x5d_c00320{left:83.442000px;}
.x3_c00320{left:84.580500px;}
.x70_c00320{left:88.584000px;}
.xa_c00320{left:89.623500px;}
.x67_c00320{left:92.377500px;}
.x24_c00320{left:94.086000px;}
.x34_c00320{left:95.497500px;}
.x58_c00320{left:97.578000px;}
.x4e_c00320{left:99.576000px;}
.x62_c00320{left:101.430000px;}
.xb_c00320{left:105.732000px;}
.x52_c00320{left:107.757000px;}
.x4_c00320{left:108.925500px;}
.x64_c00320{left:111.303000px;}
.x76_c00320{left:113.086500px;}
.x29_c00320{left:114.526500px;}
.x7f_c00320{left:115.837500px;}
.x4f_c00320{left:117.004500px;}
.x35_c00320{left:118.314000px;}
.x1d_c00320{left:121.917000px;}
.x3a_c00320{left:126.348000px;}
.x5_c00320{left:128.371500px;}
.x17_c00320{left:130.507500px;}
.x2a_c00320{left:133.696500px;}
.x71_c00320{left:134.988000px;}
.x1e_c00320{left:138.292500px;}
.x68_c00320{left:142.311000px;}
.x3f_c00320{left:143.985000px;}
.x73_c00320{left:145.182000px;}
.x49_c00320{left:147.099000px;}
.x2e_c00320{left:148.942500px;}
.x6c_c00320{left:152.622000px;}
.x5e_c00320{left:157.624500px;}
.x80_c00320{left:159.049500px;}
.x11_c00320{left:160.605000px;}
.x25_c00320{left:164.440500px;}
.x44_c00320{left:168.654000px;}
.x1_c00320{left:171.450000px;}
.x7e_c00320{left:172.773000px;}
.x18_c00320{left:175.051500px;}
.x5b_c00320{left:176.358000px;}
.x26_c00320{left:177.820500px;}
.x7c_c00320{left:179.164500px;}
.x3b_c00320{left:181.014000px;}
.x6e_c00320{left:182.565000px;}
.x69_c00320{left:183.630000px;}
.x6_c00320{left:185.350500px;}
.x5f_c00320{left:187.057500px;}
.xc_c00320{left:188.913000px;}
.x40_c00320{left:192.309000px;}
.x1f_c00320{left:194.542500px;}
.x45_c00320{left:195.993000px;}
.x53_c00320{left:197.428500px;}
.x7d_c00320{left:198.466500px;}
.x77_c00320{left:201.039000px;}
.x7_c00320{left:202.206000px;}
.xd_c00320{left:204.720000px;}
.x4a_c00320{left:205.959000px;}
.x6a_c00320{left:208.732500px;}
.x12_c00320{left:209.811000px;}
.x2f_c00320{left:212.451000px;}
.x41_c00320{left:216.751500px;}
.x74_c00320{left:218.470500px;}
.x36_c00320{left:222.567000px;}
.x30_c00320{left:225.085500px;}
.x3c_c00320{left:226.614000px;}
.x59_c00320{left:227.848500px;}
.x50_c00320{left:229.912500px;}
.x19_c00320{left:231.078000px;}
.x13_c00320{left:238.875000px;}
.x79_c00320{left:242.068500px;}
.x20_c00320{left:243.127500px;}
.x4b_c00320{left:245.406000px;}
.x72_c00320{left:246.811500px;}
.xe_c00320{left:252.054000px;}
.x42_c00320{left:253.590000px;}
.x46_c00320{left:256.689000px;}
.x14_c00320{left:260.194500px;}
.x60_c00320{left:261.991500px;}
.x21_c00320{left:269.089500px;}
.x2b_c00320{left:272.244000px;}
.xf_c00320{left:274.929000px;}
.x43_c00320{left:276.006000px;}
.x47_c00320{left:277.029000px;}
.x1a_c00320{left:278.754000px;}
.x54_c00320{left:282.192000px;}
.x31_c00320{left:285.213000px;}
.x3d_c00320{left:289.549500px;}
.x65_c00320{left:293.284500px;}
.x32_c00320{left:298.219500px;}
.x55_c00320{left:300.700500px;}
.x37_c00320{left:301.933500px;}
.x75_c00320{left:304.512000px;}
.x81_c00320{left:306.220500px;}
.x5c_c00320{left:307.722000px;}
.x15_c00320{left:308.827500px;}
.x27_c00320{left:309.828000px;}
.x56_c00320{left:313.519500px;}
.x4c_c00320{left:318.783000px;}
.x6d_c00320{left:322.053000px;}
.x82_c00320{left:330.750000px;}
.x66_c00320{left:336.147000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.fsf_c00320{font-size:19.600000pt;}
.fsd_c00320{font-size:36.400000pt;}
.fs3_c00320{font-size:44.800000pt;}
.fsc_c00320{font-size:49.466667pt;}
.fs8_c00320{font-size:51.333333pt;}
.fs7_c00320{font-size:52.266667pt;}
.fs4_c00320{font-size:53.200000pt;}
.fs6_c00320{font-size:54.133333pt;}
.fs9_c00320{font-size:55.066667pt;}
.fs0_c00320{font-size:56.000000pt;}
.fsb_c00320{font-size:56.933333pt;}
.fsa_c00320{font-size:58.800000pt;}
.fs5_c00320{font-size:59.733333pt;}
.fs1_c00320{font-size:60.666667pt;}
.fs2_c00320{font-size:62.533333pt;}
.fse_c00320{font-size:64.400000pt;}
.y0_c00320{bottom:0.000000pt;}
.yeb_c00320{bottom:26.641333pt;}
.yec_c00320{bottom:28.208000pt;}
.yed_c00320{bottom:29.134667pt;}
.yee_c00320{bottom:29.536000pt;}
.yef_c00320{bottom:30.166667pt;}
.yf0_c00320{bottom:30.873333pt;}
.yf1_c00320{bottom:31.128000pt;}
.yf2_c00320{bottom:32.142667pt;}
.yea_c00320{bottom:45.538667pt;}
.yf3_c00320{bottom:48.480000pt;}
.ye3_c00320{bottom:55.685333pt;}
.ye4_c00320{bottom:57.670667pt;}
.ye5_c00320{bottom:59.473333pt;}
.ye6_c00320{bottom:60.373333pt;}
.ye7_c00320{bottom:61.041333pt;}
.ye8_c00320{bottom:62.340000pt;}
.ye9_c00320{bottom:63.036000pt;}
.ydb_c00320{bottom:72.958667pt;}
.ydc_c00320{bottom:73.825333pt;}
.ydd_c00320{bottom:74.317333pt;}
.yde_c00320{bottom:75.708000pt;}
.ydf_c00320{bottom:76.042667pt;}
.ye0_c00320{bottom:76.454667pt;}
.ye1_c00320{bottom:78.140000pt;}
.ye2_c00320{bottom:78.646667pt;}
.yd3_c00320{bottom:87.837333pt;}
.yd4_c00320{bottom:88.060000pt;}
.yd5_c00320{bottom:89.413333pt;}
.yd6_c00320{bottom:89.757333pt;}
.yd7_c00320{bottom:90.810667pt;}
.yd8_c00320{bottom:91.549333pt;}
.yd9_c00320{bottom:91.804000pt;}
.yda_c00320{bottom:92.676000pt;}
.yca_c00320{bottom:103.196000pt;}
.ycb_c00320{bottom:104.080000pt;}
.ycc_c00320{bottom:104.470667pt;}
.ycd_c00320{bottom:105.501333pt;}
.yce_c00320{bottom:105.697333pt;}
.ycf_c00320{bottom:105.878667pt;}
.yd0_c00320{bottom:106.290667pt;}
.yd1_c00320{bottom:107.162667pt;}
.yd2_c00320{bottom:107.621333pt;}
.yc0_c00320{bottom:117.364000pt;}
.yc1_c00320{bottom:118.394667pt;}
.yc2_c00320{bottom:118.878667pt;}
.yc3_c00320{bottom:120.225333pt;}
.yc4_c00320{bottom:120.534667pt;}
.yc5_c00320{bottom:121.161333pt;}
.yc6_c00320{bottom:122.114667pt;}
.yc7_c00320{bottom:122.838667pt;}
.yc8_c00320{bottom:123.428000pt;}
.yc9_c00320{bottom:124.332000pt;}
.yb8_c00320{bottom:132.002667pt;}
.yb9_c00320{bottom:132.282667pt;}
.yba_c00320{bottom:133.229333pt;}
.ybb_c00320{bottom:134.260000pt;}
.ybc_c00320{bottom:134.849333pt;}
.ybd_c00320{bottom:136.745333pt;}
.ybe_c00320{bottom:137.616000pt;}
.ybf_c00320{bottom:138.126667pt;}
.yb0_c00320{bottom:146.645333pt;}
.yb1_c00320{bottom:147.084000pt;}
.yb2_c00320{bottom:147.788000pt;}
.yb3_c00320{bottom:148.596000pt;}
.yb4_c00320{bottom:150.180000pt;}
.yb5_c00320{bottom:150.785333pt;}
.yb6_c00320{bottom:151.952000pt;}
.yb7_c00320{bottom:153.098667pt;}
.yaa_c00320{bottom:162.481333pt;}
.yab_c00320{bottom:162.905333pt;}
.yac_c00320{bottom:164.634667pt;}
.yad_c00320{bottom:165.141333pt;}
.yae_c00320{bottom:167.250667pt;}
.yaf_c00320{bottom:169.057333pt;}
.ya2_c00320{bottom:177.580000pt;}
.ya3_c00320{bottom:178.296000pt;}
.ya4_c00320{bottom:178.885333pt;}
.ya5_c00320{bottom:179.950667pt;}
.ya6_c00320{bottom:180.832000pt;}
.ya7_c00320{bottom:181.368000pt;}
.ya8_c00320{bottom:182.329333pt;}
.ya9_c00320{bottom:182.820000pt;}
.y9b_c00320{bottom:192.484000pt;}
.y9c_c00320{bottom:194.248000pt;}
.y9d_c00320{bottom:195.969333pt;}
.y9e_c00320{bottom:196.509333pt;}
.y9f_c00320{bottom:197.822667pt;}
.ya0_c00320{bottom:198.290667pt;}
.ya1_c00320{bottom:199.242667pt;}
.y94_c00320{bottom:208.320000pt;}
.y95_c00320{bottom:208.817333pt;}
.y96_c00320{bottom:209.644000pt;}
.y97_c00320{bottom:210.314667pt;}
.y98_c00320{bottom:211.377333pt;}
.y99_c00320{bottom:211.860000pt;}
.y9a_c00320{bottom:213.196000pt;}
.y8c_c00320{bottom:223.202667pt;}
.y8d_c00320{bottom:224.369333pt;}
.y8e_c00320{bottom:224.641333pt;}
.y8f_c00320{bottom:225.020000pt;}
.y90_c00320{bottom:225.952000pt;}
.y91_c00320{bottom:226.580000pt;}
.y92_c00320{bottom:227.197333pt;}
.y93_c00320{bottom:228.178667pt;}
.y87_c00320{bottom:238.801333pt;}
.y88_c00320{bottom:239.790667pt;}
.y89_c00320{bottom:241.788000pt;}
.y8a_c00320{bottom:242.886667pt;}
.y8b_c00320{bottom:244.473333pt;}
.y7f_c00320{bottom:254.401333pt;}
.y80_c00320{bottom:255.693333pt;}
.y81_c00320{bottom:256.204000pt;}
.y82_c00320{bottom:258.454667pt;}
.y83_c00320{bottom:258.821333pt;}
.y84_c00320{bottom:259.446667pt;}
.y85_c00320{bottom:261.006667pt;}
.y86_c00320{bottom:261.308000pt;}
.y78_c00320{bottom:269.521333pt;}
.y79_c00320{bottom:270.734667pt;}
.y7a_c00320{bottom:271.204000pt;}
.y7b_c00320{bottom:273.102667pt;}
.y7c_c00320{bottom:273.726667pt;}
.y7d_c00320{bottom:274.976000pt;}
.y7e_c00320{bottom:275.598667pt;}
.y70_c00320{bottom:285.360000pt;}
.y71_c00320{bottom:286.029333pt;}
.y72_c00320{bottom:286.401333pt;}
.y73_c00320{bottom:287.060000pt;}
.y74_c00320{bottom:288.514667pt;}
.y75_c00320{bottom:288.973333pt;}
.y76_c00320{bottom:290.781333pt;}
.y77_c00320{bottom:291.176000pt;}
.y67_c00320{bottom:298.569333pt;}
.y68_c00320{bottom:299.798667pt;}
.y69_c00320{bottom:300.558667pt;}
.y6a_c00320{bottom:301.054667pt;}
.y6b_c00320{bottom:302.422667pt;}
.y6c_c00320{bottom:303.073333pt;}
.y6d_c00320{bottom:304.265333pt;}
.y6e_c00320{bottom:305.941333pt;}
.y6f_c00320{bottom:306.200000pt;}
.y5f_c00320{bottom:314.641333pt;}
.y60_c00320{bottom:315.225333pt;}
.y61_c00320{bottom:316.094667pt;}
.y62_c00320{bottom:316.629333pt;}
.y63_c00320{bottom:317.624000pt;}
.y64_c00320{bottom:317.964000pt;}
.y65_c00320{bottom:318.289333pt;}
.y66_c00320{bottom:319.528000pt;}
.y57_c00320{bottom:328.566667pt;}
.y58_c00320{bottom:329.928000pt;}
.y59_c00320{bottom:330.750667pt;}
.y5a_c00320{bottom:332.024000pt;}
.y5b_c00320{bottom:332.704000pt;}
.y5c_c00320{bottom:333.888000pt;}
.y5d_c00320{bottom:334.214667pt;}
.y5e_c00320{bottom:334.721333pt;}
.y4e_c00320{bottom:342.728000pt;}
.y4f_c00320{bottom:343.752000pt;}
.y50_c00320{bottom:345.277333pt;}
.y51_c00320{bottom:345.618667pt;}
.y52_c00320{bottom:346.778667pt;}
.y53_c00320{bottom:347.365333pt;}
.y54_c00320{bottom:348.249333pt;}
.y55_c00320{bottom:348.786667pt;}
.y56_c00320{bottom:349.388000pt;}
.y47_c00320{bottom:357.368000pt;}
.y48_c00320{bottom:358.686667pt;}
.y49_c00320{bottom:359.414667pt;}
.y4a_c00320{bottom:359.857333pt;}
.y4b_c00320{bottom:361.266667pt;}
.y4c_c00320{bottom:362.442667pt;}
.y4d_c00320{bottom:364.065333pt;}
.y3e_c00320{bottom:372.728000pt;}
.y3f_c00320{bottom:373.878667pt;}
.y40_c00320{bottom:374.316000pt;}
.y41_c00320{bottom:374.864000pt;}
.y42_c00320{bottom:375.257333pt;}
.y43_c00320{bottom:376.218667pt;}
.y44_c00320{bottom:376.708000pt;}
.y45_c00320{bottom:377.366667pt;}
.y46_c00320{bottom:379.272000pt;}
.y36_c00320{bottom:386.649333pt;}
.y37_c00320{bottom:387.265333pt;}
.y38_c00320{bottom:387.965333pt;}
.y39_c00320{bottom:390.026667pt;}
.y3a_c00320{bottom:391.777333pt;}
.y3b_c00320{bottom:392.125333pt;}
.y3c_c00320{bottom:393.782667pt;}
.y3d_c00320{bottom:394.141333pt;}
.y2f_c00320{bottom:403.205333pt;}
.y30_c00320{bottom:403.734667pt;}
.y31_c00320{bottom:405.264000pt;}
.y32_c00320{bottom:405.724000pt;}
.y33_c00320{bottom:406.346667pt;}
.y34_c00320{bottom:408.044000pt;}
.y35_c00320{bottom:409.049333pt;}
.y26_c00320{bottom:416.886667pt;}
.y27_c00320{bottom:417.377333pt;}
.y28_c00320{bottom:418.608000pt;}
.y29_c00320{bottom:419.384000pt;}
.y2a_c00320{bottom:420.609333pt;}
.y2b_c00320{bottom:420.989333pt;}
.y2c_c00320{bottom:421.480000pt;}
.y2d_c00320{bottom:422.870667pt;}
.y2e_c00320{bottom:424.744000pt;}
.y1f_c00320{bottom:432.009333pt;}
.y20_c00320{bottom:433.116000pt;}
.y21_c00320{bottom:434.821333pt;}
.y22_c00320{bottom:435.286667pt;}
.y23_c00320{bottom:436.886667pt;}
.y24_c00320{bottom:438.268000pt;}
.y25_c00320{bottom:439.006667pt;}
.y18_c00320{bottom:448.568000pt;}
.y19_c00320{bottom:449.088000pt;}
.y1a_c00320{bottom:450.168000pt;}
.y1b_c00320{bottom:451.220000pt;}
.y1c_c00320{bottom:452.368000pt;}
.y1d_c00320{bottom:453.812000pt;}
.y1e_c00320{bottom:455.041333pt;}
.y10_c00320{bottom:461.538667pt;}
.y11_c00320{bottom:462.630667pt;}
.y12_c00320{bottom:464.268000pt;}
.y13_c00320{bottom:466.005333pt;}
.y14_c00320{bottom:467.668000pt;}
.y15_c00320{bottom:468.649333pt;}
.y16_c00320{bottom:469.369333pt;}
.y17_c00320{bottom:471.012000pt;}
.y8_c00320{bottom:477.852000pt;}
.y9_c00320{bottom:479.158667pt;}
.ya_c00320{bottom:479.780000pt;}
.yb_c00320{bottom:480.281333pt;}
.yc_c00320{bottom:482.869333pt;}
.yd_c00320{bottom:483.361333pt;}
.ye_c00320{bottom:484.833333pt;}
.yf_c00320{bottom:485.545333pt;}
.y2_c00320{bottom:493.213333pt;}
.y3_c00320{bottom:495.062667pt;}
.y4_c00320{bottom:495.777333pt;}
.y5_c00320{bottom:496.348000pt;}
.y6_c00320{bottom:498.020000pt;}
.y7_c00320{bottom:498.514667pt;}
.y1_c00320{bottom:511.917333pt;}
.h11_c00320{height:19.600000pt;}
.hf_c00320{height:36.400000pt;}
.h5_c00320{height:44.800000pt;}
.he_c00320{height:49.466667pt;}
.ha_c00320{height:51.333333pt;}
.h9_c00320{height:52.266667pt;}
.h6_c00320{height:53.200000pt;}
.h8_c00320{height:54.133333pt;}
.hb_c00320{height:55.066667pt;}
.h2_c00320{height:56.000000pt;}
.hd_c00320{height:56.933333pt;}
.hc_c00320{height:58.800000pt;}
.h7_c00320{height:59.733333pt;}
.h3_c00320{height:60.666667pt;}
.h4_c00320{height:62.533333pt;}
.h10_c00320{height:64.400000pt;}
.h0_c00320{height:545.040000pt;}
.h1_c00320{height:545.333333pt;}
.w0_c00320{width:319.200000pt;}
.w1_c00320{width:319.333333pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:19.146667pt;}
.x1b_c00320{left:20.474667pt;}
.x57_c00320{left:22.312000pt;}
.x2c_c00320{left:23.478667pt;}
.x8_c00320{left:24.558667pt;}
.x28_c00320{left:25.562667pt;}
.x38_c00320{left:26.489333pt;}
.x63_c00320{left:28.396000pt;}
.x22_c00320{left:29.820000pt;}
.x7a_c00320{left:30.782667pt;}
.x61_c00320{left:32.634667pt;}
.x78_c00320{left:38.370667pt;}
.x6f_c00320{left:40.857333pt;}
.x16_c00320{left:42.476000pt;}
.x23_c00320{left:45.156000pt;}
.x6b_c00320{left:49.682667pt;}
.x51_c00320{left:52.808000pt;}
.x10_c00320{left:53.937333pt;}
.x1c_c00320{left:55.076000pt;}
.x48_c00320{left:56.820000pt;}
.x3e_c00320{left:58.865333pt;}
.x9_c00320{left:61.910667pt;}
.x4d_c00320{left:64.776000pt;}
.x2d_c00320{left:65.910667pt;}
.x7b_c00320{left:66.881333pt;}
.x33_c00320{left:68.688000pt;}
.x5a_c00320{left:69.912000pt;}
.x39_c00320{left:71.953333pt;}
.x5d_c00320{left:74.170667pt;}
.x3_c00320{left:75.182667pt;}
.x70_c00320{left:78.741333pt;}
.xa_c00320{left:79.665333pt;}
.x67_c00320{left:82.113333pt;}
.x24_c00320{left:83.632000pt;}
.x34_c00320{left:84.886667pt;}
.x58_c00320{left:86.736000pt;}
.x4e_c00320{left:88.512000pt;}
.x62_c00320{left:90.160000pt;}
.xb_c00320{left:93.984000pt;}
.x52_c00320{left:95.784000pt;}
.x4_c00320{left:96.822667pt;}
.x64_c00320{left:98.936000pt;}
.x76_c00320{left:100.521333pt;}
.x29_c00320{left:101.801333pt;}
.x7f_c00320{left:102.966667pt;}
.x4f_c00320{left:104.004000pt;}
.x35_c00320{left:105.168000pt;}
.x1d_c00320{left:108.370667pt;}
.x3a_c00320{left:112.309333pt;}
.x5_c00320{left:114.108000pt;}
.x17_c00320{left:116.006667pt;}
.x2a_c00320{left:118.841333pt;}
.x71_c00320{left:119.989333pt;}
.x1e_c00320{left:122.926667pt;}
.x68_c00320{left:126.498667pt;}
.x3f_c00320{left:127.986667pt;}
.x73_c00320{left:129.050667pt;}
.x49_c00320{left:130.754667pt;}
.x2e_c00320{left:132.393333pt;}
.x6c_c00320{left:135.664000pt;}
.x5e_c00320{left:140.110667pt;}
.x80_c00320{left:141.377333pt;}
.x11_c00320{left:142.760000pt;}
.x25_c00320{left:146.169333pt;}
.x44_c00320{left:149.914667pt;}
.x1_c00320{left:152.400000pt;}
.x7e_c00320{left:153.576000pt;}
.x18_c00320{left:155.601333pt;}
.x5b_c00320{left:156.762667pt;}
.x26_c00320{left:158.062667pt;}
.x7c_c00320{left:159.257333pt;}
.x3b_c00320{left:160.901333pt;}
.x6e_c00320{left:162.280000pt;}
.x69_c00320{left:163.226667pt;}
.x6_c00320{left:164.756000pt;}
.x5f_c00320{left:166.273333pt;}
.xc_c00320{left:167.922667pt;}
.x40_c00320{left:170.941333pt;}
.x1f_c00320{left:172.926667pt;}
.x45_c00320{left:174.216000pt;}
.x53_c00320{left:175.492000pt;}
.x7d_c00320{left:176.414667pt;}
.x77_c00320{left:178.701333pt;}
.x7_c00320{left:179.738667pt;}
.xd_c00320{left:181.973333pt;}
.x4a_c00320{left:183.074667pt;}
.x6a_c00320{left:185.540000pt;}
.x12_c00320{left:186.498667pt;}
.x2f_c00320{left:188.845333pt;}
.x41_c00320{left:192.668000pt;}
.x74_c00320{left:194.196000pt;}
.x36_c00320{left:197.837333pt;}
.x30_c00320{left:200.076000pt;}
.x3c_c00320{left:201.434667pt;}
.x59_c00320{left:202.532000pt;}
.x50_c00320{left:204.366667pt;}
.x19_c00320{left:205.402667pt;}
.x13_c00320{left:212.333333pt;}
.x79_c00320{left:215.172000pt;}
.x20_c00320{left:216.113333pt;}
.x4b_c00320{left:218.138667pt;}
.x72_c00320{left:219.388000pt;}
.xe_c00320{left:224.048000pt;}
.x42_c00320{left:225.413333pt;}
.x46_c00320{left:228.168000pt;}
.x14_c00320{left:231.284000pt;}
.x60_c00320{left:232.881333pt;}
.x21_c00320{left:239.190667pt;}
.x2b_c00320{left:241.994667pt;}
.xf_c00320{left:244.381333pt;}
.x43_c00320{left:245.338667pt;}
.x47_c00320{left:246.248000pt;}
.x1a_c00320{left:247.781333pt;}
.x54_c00320{left:250.837333pt;}
.x31_c00320{left:253.522667pt;}
.x3d_c00320{left:257.377333pt;}
.x65_c00320{left:260.697333pt;}
.x32_c00320{left:265.084000pt;}
.x55_c00320{left:267.289333pt;}
.x37_c00320{left:268.385333pt;}
.x75_c00320{left:270.677333pt;}
.x81_c00320{left:272.196000pt;}
.x5c_c00320{left:273.530667pt;}
.x15_c00320{left:274.513333pt;}
.x27_c00320{left:275.402667pt;}
.x56_c00320{left:278.684000pt;}
.x4c_c00320{left:283.362667pt;}
.x6d_c00320{left:286.269333pt;}
.x82_c00320{left:294.000000pt;}
.x66_c00320{left:298.797333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00321 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00321 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00321 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00321 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00321.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00321{transform:matrix(0.107305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107305,0.000000,0.000000,0.250000,0,0);}
.mdd_c00321{transform:matrix(0.118544,0.002252,-0.004749,0.249955,0,0);-ms-transform:matrix(0.118544,0.002252,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.118544,0.002252,-0.004749,0.249955,0,0);}
.m3c_c00321{transform:matrix(0.135005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135005,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.mce_c00321{transform:matrix(0.149568,0.002842,-0.004749,0.249955,0,0);-ms-transform:matrix(0.149568,0.002842,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.149568,0.002842,-0.004749,0.249955,0,0);}
.m32_c00321{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(0.152921,0.003211,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152921,0.003211,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152921,0.003211,-0.005249,0.249945,0,0);}
.m1b_c00321{transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.mc2_c00321{transform:matrix(0.158021,0.003002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158021,0.003002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158021,0.003002,-0.004749,0.249955,0,0);}
.m25_c00321{transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159955,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);}
.m96_c00321{transform:matrix(0.162861,0.003094,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162861,0.003094,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162861,0.003094,-0.004749,0.249955,0,0);}
.md2_c00321{transform:matrix(0.163760,0.003111,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163760,0.003111,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163760,0.003111,-0.004749,0.249955,0,0);}
.m44_c00321{transform:matrix(0.165549,0.003477,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165549,0.003477,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165549,0.003477,-0.005249,0.249945,0,0);}
.md8_c00321{transform:matrix(0.165630,0.003147,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165630,0.003147,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165630,0.003147,-0.004749,0.249955,0,0);}
.m9a_c00321{transform:matrix(0.167160,0.003176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167160,0.003176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167160,0.003176,-0.004749,0.249955,0,0);}
.m27_c00321{transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);}
.mc7_c00321{transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167975,0.003192,-0.004749,0.249955,0,0);}
.md1_c00321{transform:matrix(0.169029,0.003212,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169029,0.003212,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169029,0.003212,-0.004749,0.249955,0,0);}
.m86_c00321{transform:matrix(0.169323,0.003556,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169323,0.003556,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169323,0.003556,-0.005249,0.249945,0,0);}
.mde_c00321{transform:matrix(0.169414,0.003219,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169414,0.003219,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169414,0.003219,-0.004749,0.249955,0,0);}
.m0_c00321{transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.170342,0.003577,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170342,0.003577,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170342,0.003577,-0.005249,0.249945,0,0);}
.m36_c00321{transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);}
.m80_c00321{transform:matrix(0.171212,0.003595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171212,0.003595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171212,0.003595,-0.005249,0.249945,0,0);}
.m33_c00321{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);}
.me1_c00321{transform:matrix(0.173049,0.003288,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173049,0.003288,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173049,0.003288,-0.004749,0.249955,0,0);}
.m6_c00321{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m92_c00321{transform:matrix(0.174908,0.003323,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174908,0.003323,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174908,0.003323,-0.004749,0.249955,0,0);}
.m39_c00321{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.m6a_c00321{transform:matrix(0.176196,0.003700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176196,0.003700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176196,0.003700,-0.005249,0.249945,0,0);}
.ma9_c00321{transform:matrix(0.176208,0.003348,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176208,0.003348,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176208,0.003348,-0.004749,0.249955,0,0);}
.mc0_c00321{transform:matrix(0.176223,0.003348,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176223,0.003348,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176223,0.003348,-0.004749,0.249955,0,0);}
.m63_c00321{transform:matrix(0.176561,0.003708,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176561,0.003708,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176561,0.003708,-0.005249,0.249945,0,0);}
.m74_c00321{transform:matrix(0.176791,0.003713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176791,0.003713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176791,0.003713,-0.005249,0.249945,0,0);}
.m6e_c00321{transform:matrix(0.176806,0.003713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176806,0.003713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176806,0.003713,-0.005249,0.249945,0,0);}
.m6b_c00321{transform:matrix(0.177596,0.003730,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177596,0.003730,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177596,0.003730,-0.005249,0.249945,0,0);}
.m28_c00321{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.m94_c00321{transform:matrix(0.178513,0.003392,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178513,0.003392,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178513,0.003392,-0.004749,0.249955,0,0);}
.m6c_c00321{transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);}
.m21_c00321{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m6d_c00321{transform:matrix(0.179455,0.003769,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179455,0.003769,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179455,0.003769,-0.005249,0.249945,0,0);}
.m5c_c00321{transform:matrix(0.179870,0.003777,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179870,0.003777,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179870,0.003777,-0.005249,0.249945,0,0);}
.m22_c00321{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mdc_c00321{transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);}
.m79_c00321{transform:matrix(0.180920,0.003799,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180920,0.003799,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180920,0.003799,-0.005249,0.249945,0,0);}
.m66_c00321{transform:matrix(0.181320,0.003808,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181320,0.003808,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181320,0.003808,-0.005249,0.249945,0,0);}
.m38_c00321{transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.182375,0.003830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182375,0.003830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182375,0.003830,-0.005249,0.249945,0,0);}
.m17_c00321{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);}
.m8_c00321{transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);}
.m9e_c00321{transform:matrix(0.184847,0.003512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184847,0.003512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184847,0.003512,-0.004749,0.249955,0,0);}
.mc8_c00321{transform:matrix(0.185052,0.003516,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185052,0.003516,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185052,0.003516,-0.004749,0.249955,0,0);}
.m19_c00321{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m8a_c00321{transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);}
.mc1_c00321{transform:matrix(0.185756,0.003529,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185756,0.003529,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185756,0.003529,-0.004749,0.249955,0,0);}
.m9c_c00321{transform:matrix(0.186006,0.003534,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186006,0.003534,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186006,0.003534,-0.004749,0.249955,0,0);}
.mcd_c00321{transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);}
.m62_c00321{transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);}
.m37_c00321{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.187854,0.003945,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187854,0.003945,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187854,0.003945,-0.005249,0.249945,0,0);}
.mda_c00321{transform:matrix(0.188446,0.003580,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188446,0.003580,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188446,0.003580,-0.004749,0.249955,0,0);}
.mb9_c00321{transform:matrix(0.188736,0.003586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188736,0.003586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188736,0.003586,-0.004749,0.249955,0,0);}
.ma6_c00321{transform:matrix(0.189261,0.003596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189261,0.003596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189261,0.003596,-0.004749,0.249955,0,0);}
.mcb_c00321{transform:matrix(0.189286,0.003596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189286,0.003596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189286,0.003596,-0.004749,0.249955,0,0);}
.mba_c00321{transform:matrix(0.189421,0.003599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189421,0.003599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189421,0.003599,-0.004749,0.249955,0,0);}
.ma7_c00321{transform:matrix(0.190186,0.003614,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190186,0.003614,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190186,0.003614,-0.004749,0.249955,0,0);}
.m9_c00321{transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190520,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);}
.m6f_c00321{transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190708,0.004005,-0.005249,0.249945,0,0);}
.m4e_c00321{transform:matrix(0.190968,0.004010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190968,0.004010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190968,0.004010,-0.005249,0.249945,0,0);}
.md5_c00321{transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191215,0.003633,-0.004749,0.249955,0,0);}
.m7f_c00321{transform:matrix(0.191228,0.004016,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191228,0.004016,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191228,0.004016,-0.005249,0.249945,0,0);}
.mc3_c00321{transform:matrix(0.192735,0.003662,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192735,0.003662,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192735,0.003662,-0.004749,0.249955,0,0);}
.md0_c00321{transform:matrix(0.192905,0.003665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192905,0.003665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192905,0.003665,-0.004749,0.249955,0,0);}
.m1c_c00321{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.193127,0.004056,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193127,0.004056,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193127,0.004056,-0.005249,0.249945,0,0);}
.m2e_c00321{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mcc_c00321{transform:matrix(0.193570,0.003678,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193570,0.003678,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193570,0.003678,-0.004749,0.249955,0,0);}
.ma1_c00321{transform:matrix(0.193860,0.003683,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193860,0.003683,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193860,0.003683,-0.004749,0.249955,0,0);}
.m2f_c00321{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);}
.mc4_c00321{transform:matrix(0.194250,0.003691,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194250,0.003691,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194250,0.003691,-0.004749,0.249955,0,0);}
.md7_c00321{transform:matrix(0.195390,0.003712,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195390,0.003712,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195390,0.003712,-0.004749,0.249955,0,0);}
.mcf_c00321{transform:matrix(0.195630,0.003717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195630,0.003717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195630,0.003717,-0.004749,0.249955,0,0);}
.m8d_c00321{transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195857,0.004113,-0.005249,0.249945,0,0);}
.mad_c00321{transform:matrix(0.196275,0.003729,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196275,0.003729,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196275,0.003729,-0.004749,0.249955,0,0);}
.m7d_c00321{transform:matrix(0.196352,0.004123,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196352,0.004123,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196352,0.004123,-0.005249,0.249945,0,0);}
.m3_c00321{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);}
.ma5_c00321{transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197189,0.003747,-0.004749,0.249955,0,0);}
.m91_c00321{transform:matrix(0.197884,0.003760,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197884,0.003760,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197884,0.003760,-0.004749,0.249955,0,0);}
.mae_c00321{transform:matrix(0.198219,0.003766,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198219,0.003766,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198219,0.003766,-0.004749,0.249955,0,0);}
.m99_c00321{transform:matrix(0.198329,0.003768,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198329,0.003768,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198329,0.003768,-0.004749,0.249955,0,0);}
.ma4_c00321{transform:matrix(0.198649,0.003774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198649,0.003774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198649,0.003774,-0.004749,0.249955,0,0);}
.m70_c00321{transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);}
.mac_c00321{transform:matrix(0.198939,0.003780,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198939,0.003780,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198939,0.003780,-0.004749,0.249955,0,0);}
.mca_c00321{transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);}
.m5b_c00321{transform:matrix(0.199761,0.004195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199761,0.004195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199761,0.004195,-0.005249,0.249945,0,0);}
.mbc_c00321{transform:matrix(0.199914,0.003798,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199914,0.003798,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199914,0.003798,-0.004749,0.249955,0,0);}
.m42_c00321{transform:matrix(0.200311,0.004207,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200311,0.004207,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200311,0.004207,-0.005249,0.249945,0,0);}
.m53_c00321{transform:matrix(0.200361,0.004208,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200361,0.004208,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200361,0.004208,-0.005249,0.249945,0,0);}
.md3_c00321{transform:matrix(0.200684,0.003813,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200684,0.003813,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200684,0.003813,-0.004749,0.249955,0,0);}
.m72_c00321{transform:matrix(0.200981,0.004221,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200981,0.004221,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200981,0.004221,-0.005249,0.249945,0,0);}
.mb1_c00321{transform:matrix(0.201124,0.003821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201124,0.003821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201124,0.003821,-0.004749,0.249955,0,0);}
.maf_c00321{transform:matrix(0.201359,0.003826,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201359,0.003826,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201359,0.003826,-0.004749,0.249955,0,0);}
.m55_c00321{transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);}
.m9b_c00321{transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201849,0.003835,-0.004749,0.249955,0,0);}
.mbf_c00321{transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);}
.m97_c00321{transform:matrix(0.202214,0.003842,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202214,0.003842,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202214,0.003842,-0.004749,0.249955,0,0);}
.m29_c00321{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.202570,0.004254,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202570,0.004254,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202570,0.004254,-0.005249,0.249945,0,0);}
.m26_c00321{transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);}
.m49_c00321{transform:matrix(0.204010,0.004284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204010,0.004284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204010,0.004284,-0.005249,0.249945,0,0);}
.m16_c00321{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.mb0_c00321{transform:matrix(0.204948,0.003894,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204948,0.003894,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204948,0.003894,-0.004749,0.249955,0,0);}
.m35_c00321{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205780,0.004321,-0.005249,0.249945,0,0);}
.m30_c00321{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.206494,0.004336,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206494,0.004336,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206494,0.004336,-0.005249,0.249945,0,0);}
.md6_c00321{transform:matrix(0.206623,0.003926,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206623,0.003926,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206623,0.003926,-0.004749,0.249955,0,0);}
.mf_c00321{transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(0.207014,0.004347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207014,0.004347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207014,0.004347,-0.005249,0.249945,0,0);}
.m18_c00321{transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.208394,0.004376,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208394,0.004376,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208394,0.004376,-0.005249,0.249945,0,0);}
.m3f_c00321{transform:matrix(0.208549,0.004380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208549,0.004380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208549,0.004380,-0.005249,0.249945,0,0);}
.md4_c00321{transform:matrix(0.208602,0.003963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208602,0.003963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208602,0.003963,-0.004749,0.249955,0,0);}
.m58_c00321{transform:matrix(0.208684,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208684,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208684,0.004382,-0.005249,0.249945,0,0);}
.mb6_c00321{transform:matrix(0.209492,0.003980,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209492,0.003980,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209492,0.003980,-0.004749,0.249955,0,0);}
.m52_c00321{transform:matrix(0.209554,0.004401,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209554,0.004401,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209554,0.004401,-0.005249,0.249945,0,0);}
.m31_c00321{transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);}
.m87_c00321{transform:matrix(0.210988,0.004431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210988,0.004431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210988,0.004431,-0.005249,0.249945,0,0);}
.m90_c00321{transform:matrix(0.211012,0.004009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211012,0.004009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211012,0.004009,-0.004749,0.249955,0,0);}
.mdb_c00321{transform:matrix(0.211432,0.004017,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211432,0.004017,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211432,0.004017,-0.004749,0.249955,0,0);}
.m41_c00321{transform:matrix(0.211478,0.004441,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211478,0.004441,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211478,0.004441,-0.005249,0.249945,0,0);}
.me_c00321{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m7c_c00321{transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);}
.ma8_c00321{transform:matrix(0.212122,0.004030,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212122,0.004030,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212122,0.004030,-0.004749,0.249955,0,0);}
.m45_c00321{transform:matrix(0.212363,0.004460,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212363,0.004460,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212363,0.004460,-0.005249,0.249945,0,0);}
.m8f_c00321{transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212387,0.004035,-0.004749,0.249955,0,0);}
.m82_c00321{transform:matrix(0.212843,0.004470,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212843,0.004470,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212843,0.004470,-0.005249,0.249945,0,0);}
.m9f_c00321{transform:matrix(0.212962,0.004046,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212962,0.004046,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212962,0.004046,-0.004749,0.249955,0,0);}
.mc_c00321{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.mbb_c00321{transform:matrix(0.213307,0.004053,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213307,0.004053,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213307,0.004053,-0.004749,0.249955,0,0);}
.m2d_c00321{transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);}
.m98_c00321{transform:matrix(0.213966,0.004065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213966,0.004065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213966,0.004065,-0.004749,0.249955,0,0);}
.maa_c00321{transform:matrix(0.213986,0.004066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213986,0.004066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213986,0.004066,-0.004749,0.249955,0,0);}
.m93_c00321{transform:matrix(0.214431,0.004074,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214431,0.004074,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214431,0.004074,-0.004749,0.249955,0,0);}
.mb_c00321{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.214963,0.004514,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214963,0.004514,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214963,0.004514,-0.005249,0.249945,0,0);}
.mc6_c00321{transform:matrix(0.215506,0.004095,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215506,0.004095,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215506,0.004095,-0.004749,0.249955,0,0);}
.md9_c00321{transform:matrix(0.216411,0.004112,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216411,0.004112,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216411,0.004112,-0.004749,0.249955,0,0);}
.m95_c00321{transform:matrix(0.217146,0.004126,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217146,0.004126,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217146,0.004126,-0.004749,0.249955,0,0);}
.m2a_c00321{transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219140,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{transform:matrix(0.219757,0.004615,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219757,0.004615,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219757,0.004615,-0.005249,0.249945,0,0);}
.m7a_c00321{transform:matrix(0.221921,0.004660,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221921,0.004660,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221921,0.004660,-0.005249,0.249945,0,0);}
.m8b_c00321{transform:matrix(0.222766,0.004678,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222766,0.004678,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222766,0.004678,-0.005249,0.249945,0,0);}
.md_c00321{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.m4c_c00321{transform:matrix(0.223521,0.004694,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223521,0.004694,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223521,0.004694,-0.005249,0.249945,0,0);}
.m60_c00321{transform:matrix(0.224695,0.004719,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224695,0.004719,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224695,0.004719,-0.005249,0.249945,0,0);}
.mbe_c00321{transform:matrix(0.225054,0.004276,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225054,0.004276,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225054,0.004276,-0.004749,0.249955,0,0);}
.m76_c00321{transform:matrix(0.225765,0.004741,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225765,0.004741,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225765,0.004741,-0.005249,0.249945,0,0);}
.m50_c00321{transform:matrix(0.226680,0.004760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226680,0.004760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226680,0.004760,-0.005249,0.249945,0,0);}
.m3b_c00321{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.228065,0.004789,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228065,0.004789,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228065,0.004789,-0.005249,0.249945,0,0);}
.m8e_c00321{transform:matrix(0.228570,0.004800,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228570,0.004800,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228570,0.004800,-0.005249,0.249945,0,0);}
.m88_c00321{transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);}
.m4d_c00321{transform:matrix(0.230624,0.004843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230624,0.004843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230624,0.004843,-0.005249,0.249945,0,0);}
.m43_c00321{transform:matrix(0.231434,0.004860,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231434,0.004860,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231434,0.004860,-0.005249,0.249945,0,0);}
.m69_c00321{transform:matrix(0.231854,0.004869,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231854,0.004869,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231854,0.004869,-0.005249,0.249945,0,0);}
.m89_c00321{transform:matrix(0.232634,0.004885,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232634,0.004885,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232634,0.004885,-0.005249,0.249945,0,0);}
.m75_c00321{transform:matrix(0.232809,0.004889,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232809,0.004889,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232809,0.004889,-0.005249,0.249945,0,0);}
.m7e_c00321{transform:matrix(0.233154,0.004896,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233154,0.004896,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233154,0.004896,-0.005249,0.249945,0,0);}
.mbd_c00321{transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);}
.mb7_c00321{transform:matrix(0.233753,0.004441,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233753,0.004441,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233753,0.004441,-0.004749,0.249955,0,0);}
.m9d_c00321{transform:matrix(0.233813,0.004442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233813,0.004442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233813,0.004442,-0.004749,0.249955,0,0);}
.ma0_c00321{transform:matrix(0.234613,0.004458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234613,0.004458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234613,0.004458,-0.004749,0.249955,0,0);}
.m10_c00321{transform:matrix(0.235495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235495,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(0.235558,0.004947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235558,0.004947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235558,0.004947,-0.005249,0.249945,0,0);}
.mb8_c00321{transform:matrix(0.235577,0.004476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235577,0.004476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235577,0.004476,-0.004749,0.249955,0,0);}
.m2c_c00321{transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(0.237113,0.004979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237113,0.004979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237113,0.004979,-0.005249,0.249945,0,0);}
.m40_c00321{transform:matrix(0.239437,0.005028,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239437,0.005028,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239437,0.005028,-0.005249,0.249945,0,0);}
.m77_c00321{transform:matrix(0.241352,0.005068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241352,0.005068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241352,0.005068,-0.005249,0.249945,0,0);}
.me0_c00321{transform:matrix(0.241366,0.004586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241366,0.004586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241366,0.004586,-0.004749,0.249955,0,0);}
.m78_c00321{transform:matrix(0.242197,0.005086,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242197,0.005086,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242197,0.005086,-0.005249,0.249945,0,0);}
.m73_c00321{transform:matrix(0.242367,0.005090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242367,0.005090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242367,0.005090,-0.005249,0.249945,0,0);}
.m3a_c00321{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.mb3_c00321{transform:matrix(0.243321,0.004623,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243321,0.004623,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243321,0.004623,-0.004749,0.249955,0,0);}
.m1f_c00321{transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);}
.m71_c00321{transform:matrix(0.247041,0.005188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247041,0.005188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247041,0.005188,-0.005249,0.249945,0,0);}
.m85_c00321{transform:matrix(0.247265,0.005193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247265,0.005193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247265,0.005193,-0.005249,0.249945,0,0);}
.mc9_c00321{transform:matrix(0.247525,0.004703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247525,0.004703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247525,0.004703,-0.004749,0.249955,0,0);}
.m8c_c00321{transform:matrix(0.254729,0.005349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254729,0.005349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254729,0.005349,-0.005249,0.249945,0,0);}
.mb2_c00321{transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);}
.m15_c00321{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);}
.m7b_c00321{transform:matrix(0.262567,0.005514,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262567,0.005514,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262567,0.005514,-0.005249,0.249945,0,0);}
.m84_c00321{transform:matrix(0.265047,0.005566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265047,0.005566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265047,0.005566,-0.005249,0.249945,0,0);}
.mab_c00321{transform:matrix(0.267302,0.005079,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267302,0.005079,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267302,0.005079,-0.004749,0.249955,0,0);}
.m83_c00321{transform:matrix(0.267751,0.005623,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267751,0.005623,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267751,0.005623,-0.005249,0.249945,0,0);}
.me2_c00321{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.mc5_c00321{transform:matrix(0.275790,0.005240,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275790,0.005240,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275790,0.005240,-0.004749,0.249955,0,0);}
.ma3_c00321{transform:matrix(0.281234,0.005343,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281234,0.005343,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281234,0.005343,-0.004749,0.249955,0,0);}
.m1e_c00321{transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);}
.mb5_c00321{transform:matrix(0.295417,0.005613,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295417,0.005613,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295417,0.005613,-0.004749,0.249955,0,0);}
.mdf_c00321{transform:matrix(0.329516,0.006261,-0.004749,0.249955,0,0);-ms-transform:matrix(0.329516,0.006261,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.329516,0.006261,-0.004749,0.249955,0,0);}
.m68_c00321{transform:matrix(0.359296,0.007545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.359296,0.007545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.359296,0.007545,-0.005249,0.249945,0,0);}
.m67_c00321{transform:matrix(0.405326,0.008512,-0.005249,0.249945,0,0);-ms-transform:matrix(0.405326,0.008512,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.405326,0.008512,-0.005249,0.249945,0,0);}
.ma2_c00321{transform:matrix(0.437901,0.008320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.437901,0.008320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.437901,0.008320,-0.004749,0.249955,0,0);}
.m14_c00321{transform:matrix(0.512805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512805,0.000000,0.000000,0.250000,0,0);}
.mb4_c00321{transform:matrix(0.523581,0.009948,-0.004749,0.249955,0,0);-ms-transform:matrix(0.523581,0.009948,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.523581,0.009948,-0.004749,0.249955,0,0);}
.m5_c00321{transform:matrix(0.594710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594710,0.000000,0.000000,0.250000,0,0);}
.me3_c00321{transform:matrix(0.788265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788265,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:0.000000px;}
.fc0_c00321{color:transparent;}
.fs1c_c00321{font-size:21.000000px;}
.fs1d_c00321{font-size:24.150000px;}
.fs8_c00321{font-size:53.550000px;}
.fs14_c00321{font-size:54.609854px;}
.fsb_c00321{font-size:54.612038px;}
.fsf_c00321{font-size:55.662269px;}
.fs11_c00321{font-size:57.762732px;}
.fs17_c00321{font-size:58.810612px;}
.fs3_c00321{font-size:59.850000px;}
.fs18_c00321{font-size:59.860802px;}
.fs9_c00321{font-size:59.863195px;}
.fs10_c00321{font-size:60.913427px;}
.fs12_c00321{font-size:61.961181px;}
.fsa_c00321{font-size:61.963658px;}
.fs6_c00321{font-size:63.000000px;}
.fs19_c00321{font-size:63.011370px;}
.fsc_c00321{font-size:63.013890px;}
.fs15_c00321{font-size:64.061560px;}
.fs13_c00321{font-size:65.111749px;}
.fsd_c00321{font-size:65.114353px;}
.fs2_c00321{font-size:66.150000px;}
.fs16_c00321{font-size:67.212129px;}
.fs4_c00321{font-size:68.250000px;}
.fs1a_c00321{font-size:68.262318px;}
.fs5_c00321{font-size:69.300000px;}
.fs7_c00321{font-size:70.350000px;}
.fse_c00321{font-size:70.365510px;}
.fs1_c00321{font-size:71.400000px;}
.fs1b_c00321{font-size:74.563455px;}
.fs0_c00321{font-size:76.650000px;}
.y0_c00321{bottom:0.000000px;}
.ye5_c00321{bottom:19.980000px;}
.ye4_c00321{bottom:26.441878px;}
.ye3_c00321{bottom:26.665539px;}
.ye2_c00321{bottom:27.158402px;}
.ye1_c00321{bottom:27.445562px;}
.ye0_c00321{bottom:28.904318px;}
.ydf_c00321{bottom:29.261115px;}
.yde_c00321{bottom:30.091478px;}
.ydd_c00321{bottom:30.496420px;}
.yd8_c00321{bottom:46.202255px;}
.yd7_c00321{bottom:46.202408px;}
.ydb_c00321{bottom:46.202705px;}
.yd9_c00321{bottom:46.202783px;}
.ydc_c00321{bottom:46.203032px;}
.yda_c00321{bottom:46.203102px;}
.yd6_c00321{bottom:60.931521px;}
.yd5_c00321{bottom:62.077587px;}
.yd4_c00321{bottom:62.522688px;}
.yd3_c00321{bottom:62.796534px;}
.yd2_c00321{bottom:63.093477px;}
.yd1_c00321{bottom:63.693978px;}
.yd0_c00321{bottom:63.963311px;}
.ycf_c00321{bottom:78.455505px;}
.yce_c00321{bottom:79.310873px;}
.ycd_c00321{bottom:79.776713px;}
.ycc_c00321{bottom:80.038109px;}
.ycb_c00321{bottom:80.566935px;}
.yca_c00321{bottom:80.795303px;}
.yc9_c00321{bottom:80.976261px;}
.yc8_c00321{bottom:93.921218px;}
.yc7_c00321{bottom:94.383266px;}
.yc6_c00321{bottom:94.673162px;}
.yc5_c00321{bottom:95.565018px;}
.yc4_c00321{bottom:95.767091px;}
.yc3_c00321{bottom:96.780674px;}
.yc2_c00321{bottom:97.591329px;}
.yc1_c00321{bottom:97.992956px;}
.yc0_c00321{bottom:112.050123px;}
.ybf_c00321{bottom:113.291970px;}
.ybe_c00321{bottom:114.238329px;}
.ybd_c00321{bottom:114.478278px;}
.ybc_c00321{bottom:115.006085px;}
.ybb_c00321{bottom:129.093018px;}
.yba_c00321{bottom:129.271383px;}
.yb9_c00321{bottom:130.055657px;}
.yb8_c00321{bottom:130.550904px;}
.yb7_c00321{bottom:130.823879px;}
.yb6_c00321{bottom:131.060340px;}
.yb5_c00321{bottom:131.380055px;}
.yb4_c00321{bottom:131.567069px;}
.yb3_c00321{bottom:132.017639px;}
.yb2_c00321{bottom:146.184290px;}
.yb1_c00321{bottom:147.211601px;}
.yb0_c00321{bottom:147.716352px;}
.yaf_c00321{bottom:148.221474px;}
.yae_c00321{bottom:149.299850px;}
.yad_c00321{bottom:161.429013px;}
.yac_c00321{bottom:161.813597px;}
.yab_c00321{bottom:162.536783px;}
.yaa_c00321{bottom:163.313484px;}
.ya9_c00321{bottom:164.067717px;}
.ya8_c00321{bottom:164.591234px;}
.ya7_c00321{bottom:165.399894px;}
.ya6_c00321{bottom:165.803298px;}
.ya5_c00321{bottom:166.585329px;}
.ya4_c00321{bottom:179.548914px;}
.ya3_c00321{bottom:180.580203px;}
.ya2_c00321{bottom:181.617296px;}
.ya1_c00321{bottom:183.649024px;}
.ya0_c00321{bottom:185.175899px;}
.y9f_c00321{bottom:185.702333px;}
.y9e_c00321{bottom:186.303212px;}
.y9d_c00321{bottom:196.825233px;}
.y9c_c00321{bottom:198.506152px;}
.y9b_c00321{bottom:198.934155px;}
.y9a_c00321{bottom:200.882096px;}
.y99_c00321{bottom:201.654281px;}
.y98_c00321{bottom:201.939235px;}
.y97_c00321{bottom:202.501261px;}
.y96_c00321{bottom:214.833792px;}
.y95_c00321{bottom:215.334794px;}
.y94_c00321{bottom:216.778404px;}
.y93_c00321{bottom:217.024587px;}
.y92_c00321{bottom:217.404236px;}
.y91_c00321{bottom:218.583623px;}
.y90_c00321{bottom:218.974500px;}
.y8f_c00321{bottom:230.596538px;}
.y8e_c00321{bottom:231.341192px;}
.y8d_c00321{bottom:232.006374px;}
.y8c_c00321{bottom:234.280106px;}
.y8b_c00321{bottom:234.813435px;}
.y8a_c00321{bottom:235.205178px;}
.y89_c00321{bottom:235.937724px;}
.y88_c00321{bottom:247.043159px;}
.y87_c00321{bottom:247.386545px;}
.y86_c00321{bottom:248.146173px;}
.y85_c00321{bottom:248.414498px;}
.y84_c00321{bottom:249.598130px;}
.y83_c00321{bottom:250.773528px;}
.y82_c00321{bottom:251.137023px;}
.y81_c00321{bottom:251.640309px;}
.y80_c00321{bottom:252.145422px;}
.y7f_c00321{bottom:265.072226px;}
.y7e_c00321{bottom:265.758689px;}
.y7d_c00321{bottom:266.367627px;}
.y7c_c00321{bottom:266.873801px;}
.y7b_c00321{bottom:267.815955px;}
.y7a_c00321{bottom:268.112673px;}
.y79_c00321{bottom:268.311867px;}
.y78_c00321{bottom:268.887773px;}
.y77_c00321{bottom:281.534567px;}
.y76_c00321{bottom:282.808670px;}
.y75_c00321{bottom:283.197896px;}
.y74_c00321{bottom:284.382840px;}
.y73_c00321{bottom:285.632192px;}
.y72_c00321{bottom:297.619931px;}
.y71_c00321{bottom:298.353575px;}
.y70_c00321{bottom:299.317535px;}
.y6f_c00321{bottom:299.925192px;}
.y6e_c00321{bottom:300.385718px;}
.y6d_c00321{bottom:301.606620px;}
.y6c_c00321{bottom:301.950602px;}
.y6b_c00321{bottom:302.375444px;}
.y6a_c00321{bottom:315.552992px;}
.y69_c00321{bottom:315.748727px;}
.y68_c00321{bottom:316.533443px;}
.y67_c00321{bottom:317.104377px;}
.y66_c00321{bottom:318.101111px;}
.y65_c00321{bottom:319.138851px;}
.y64_c00321{bottom:319.661844px;}
.y63_c00321{bottom:333.060723px;}
.y62_c00321{bottom:333.443220px;}
.y61_c00321{bottom:334.166130px;}
.y60_c00321{bottom:334.425014px;}
.y5f_c00321{bottom:334.671465px;}
.y5e_c00321{bottom:335.173721px;}
.y5d_c00321{bottom:335.355056px;}
.y5c_c00321{bottom:335.843757px;}
.y5b_c00321{bottom:336.067164px;}
.y5a_c00321{bottom:336.404844px;}
.y59_c00321{bottom:350.050595px;}
.y58_c00321{bottom:350.563335px;}
.y57_c00321{bottom:351.519333px;}
.y56_c00321{bottom:352.282116px;}
.y55_c00321{bottom:352.781508px;}
.y54_c00321{bottom:353.962805px;}
.y53_c00321{bottom:367.271229px;}
.y52_c00321{bottom:368.401103px;}
.y51_c00321{bottom:370.306979px;}
.y50_c00321{bottom:371.463533px;}
.y4f_c00321{bottom:371.983283px;}
.y4e_c00321{bottom:372.595391px;}
.y4d_c00321{bottom:384.030396px;}
.y4c_c00321{bottom:384.364383px;}
.y4b_c00321{bottom:385.709081px;}
.y4a_c00321{bottom:386.500580px;}
.y49_c00321{bottom:387.614190px;}
.y48_c00321{bottom:388.109853px;}
.y47_c00321{bottom:388.531746px;}
.y46_c00321{bottom:400.668824px;}
.y45_c00321{bottom:401.139087px;}
.y44_c00321{bottom:401.426052px;}
.y43_c00321{bottom:402.914490px;}
.y42_c00321{bottom:403.502627px;}
.y41_c00321{bottom:403.838858px;}
.y40_c00321{bottom:404.449895px;}
.y3f_c00321{bottom:405.546000px;}
.y3e_c00321{bottom:419.653500px;}
.y3d_c00321{bottom:420.351000px;}
.ye6_c00321{bottom:421.060500px;}
.y3c_c00321{bottom:421.248000px;}
.y3b_c00321{bottom:421.474500px;}
.y3a_c00321{bottom:434.157000px;}
.y39_c00321{bottom:434.565000px;}
.y38_c00321{bottom:435.132000px;}
.y37_c00321{bottom:436.506000px;}
.y36_c00321{bottom:436.789500px;}
.y35_c00321{bottom:438.211500px;}
.y34_c00321{bottom:438.708000px;}
.y33_c00321{bottom:439.294500px;}
.y32_c00321{bottom:451.747500px;}
.y31_c00321{bottom:452.860500px;}
.y30_c00321{bottom:455.343000px;}
.y2f_c00321{bottom:456.846000px;}
.y2e_c00321{bottom:468.556500px;}
.y2d_c00321{bottom:470.325000px;}
.y2c_c00321{bottom:470.739000px;}
.y2b_c00321{bottom:472.095000px;}
.y2a_c00321{bottom:472.470000px;}
.y29_c00321{bottom:473.167500px;}
.y28_c00321{bottom:473.854500px;}
.y27_c00321{bottom:485.130000px;}
.y26_c00321{bottom:485.767500px;}
.y25_c00321{bottom:486.406500px;}
.y24_c00321{bottom:487.135500px;}
.y23_c00321{bottom:487.617000px;}
.y22_c00321{bottom:488.215500px;}
.y21_c00321{bottom:488.601000px;}
.y20_c00321{bottom:488.904000px;}
.y1f_c00321{bottom:489.358500px;}
.y1e_c00321{bottom:489.784500px;}
.y1d_c00321{bottom:502.155000px;}
.y1c_c00321{bottom:502.879500px;}
.y1b_c00321{bottom:503.763000px;}
.y1a_c00321{bottom:504.058500px;}
.y19_c00321{bottom:504.909000px;}
.y18_c00321{bottom:505.228500px;}
.y17_c00321{bottom:506.254500px;}
.y16_c00321{bottom:519.810000px;}
.y15_c00321{bottom:520.101000px;}
.y14_c00321{bottom:520.518000px;}
.y13_c00321{bottom:520.768500px;}
.y12_c00321{bottom:521.785500px;}
.y11_c00321{bottom:522.243000px;}
.y10_c00321{bottom:522.433500px;}
.yf_c00321{bottom:522.850500px;}
.ye_c00321{bottom:523.369500px;}
.yd_c00321{bottom:523.774500px;}
.yc_c00321{bottom:524.074500px;}
.yb_c00321{bottom:538.129500px;}
.ya_c00321{bottom:538.552500px;}
.y9_c00321{bottom:539.592000px;}
.y8_c00321{bottom:540.067500px;}
.y7_c00321{bottom:540.813000px;}
.y6_c00321{bottom:553.426500px;}
.y5_c00321{bottom:555.888000px;}
.y4_c00321{bottom:556.735500px;}
.y3_c00321{bottom:557.286000px;}
.y2_c00321{bottom:557.553000px;}
.y1_c00321{bottom:567.663000px;}
.h1e_c00321{height:21.000000px;}
.h1f_c00321{height:24.150000px;}
.ha_c00321{height:53.550000px;}
.h16_c00321{height:54.609854px;}
.hd_c00321{height:54.612038px;}
.h11_c00321{height:55.662269px;}
.h13_c00321{height:57.762732px;}
.h19_c00321{height:58.810612px;}
.h5_c00321{height:59.850000px;}
.h1a_c00321{height:59.860802px;}
.hb_c00321{height:59.863195px;}
.h12_c00321{height:60.913427px;}
.h14_c00321{height:61.961181px;}
.hc_c00321{height:61.963658px;}
.h8_c00321{height:63.000000px;}
.h1b_c00321{height:63.011370px;}
.he_c00321{height:63.013890px;}
.h17_c00321{height:64.061560px;}
.h15_c00321{height:65.111749px;}
.hf_c00321{height:65.114353px;}
.h4_c00321{height:66.150000px;}
.h18_c00321{height:67.212129px;}
.h6_c00321{height:68.250000px;}
.h1c_c00321{height:68.262318px;}
.h7_c00321{height:69.300000px;}
.h9_c00321{height:70.350000px;}
.h10_c00321{height:70.365510px;}
.h3_c00321{height:71.400000px;}
.h1d_c00321{height:74.563455px;}
.h2_c00321{height:76.650000px;}
.h0_c00321{height:613.170000px;}
.h1_c00321{height:613.500000px;}
.w0_c00321{width:359.100000px;}
.w1_c00321{width:359.250000px;}
.x0_c00321{left:0.000000px;}
.x80_c00321{left:34.885083px;}
.x7d_c00321{left:36.711048px;}
.x7b_c00321{left:37.711744px;}
.x65_c00321{left:38.714377px;}
.x54_c00321{left:39.748302px;}
.x4b_c00321{left:40.860600px;}
.x3a_c00321{left:42.144796px;}
.x23_c00321{left:43.840500px;}
.x8_c00321{left:45.189000px;}
.x3_c00321{left:46.266000px;}
.x77_c00321{left:54.669556px;}
.x68_c00321{left:60.294100px;}
.x81_c00321{left:61.884135px;}
.x60_c00321{left:62.944500px;}
.x4_c00321{left:64.081500px;}
.x74_c00321{left:65.148847px;}
.x33_c00321{left:67.239000px;}
.x50_c00321{left:68.393465px;}
.x1c_c00321{left:69.973500px;}
.x3d_c00321{left:71.403830px;}
.x2b_c00321{left:72.636000px;}
.x4c_c00321{left:75.697979px;}
.x66_c00321{left:77.211183px;}
.x5e_c00321{left:78.350318px;}
.x24_c00321{left:79.987500px;}
.x61_c00321{left:83.517000px;}
.x45_c00321{left:87.867992px;}
.x3b_c00321{left:90.482844px;}
.xd_c00321{left:91.876500px;}
.x1d_c00321{left:96.678000px;}
.x9_c00321{left:98.428500px;}
.x5_c00321{left:100.780500px;}
.x73_c00321{left:102.978678px;}
.x69_c00321{left:105.316240px;}
.x58_c00321{left:107.010476px;}
.x55_c00321{left:109.174181px;}
.x41_c00321{left:111.102769px;}
.x16_c00321{left:113.278500px;}
.x1e_c00321{left:114.538500px;}
.x25_c00321{left:116.694000px;}
.x34_c00321{left:119.434500px;}
.x78_c00321{left:123.506016px;}
.xe_c00321{left:126.465000px;}
.x46_c00321{left:128.647209px;}
.xa_c00321{left:132.403500px;}
.x17_c00321{left:134.559000px;}
.x1f_c00321{left:137.235000px;}
.x6f_c00321{left:139.146241px;}
.x42_c00321{left:140.457226px;}
.x47_c00321{left:143.785076px;}
.x31_c00321{left:145.444500px;}
.x79_c00321{left:147.293635px;}
.x35_c00321{left:148.531500px;}
.x3e_c00321{left:151.227830px;}
.xf_c00321{left:154.281000px;}
.x6_c00321{left:157.252500px;}
.x70_c00321{left:161.884762px;}
.x36_c00321{left:164.542500px;}
.x59_c00321{left:165.881150px;}
.x10_c00321{left:167.001000px;}
.x2c_c00321{left:168.615000px;}
.x6c_c00321{left:171.322194px;}
.x20_c00321{left:172.402500px;}
.x5c_c00321{left:173.672955px;}
.x56_c00321{left:175.032839px;}
.x1_c00321{left:176.580000px;}
.x62_c00321{left:178.528500px;}
.x7e_c00321{left:180.647503px;}
.x2d_c00321{left:182.817000px;}
.x43_c00321{left:185.283975px;}
.x75_c00321{left:186.749582px;}
.x7a_c00321{left:189.660077px;}
.x18_c00321{left:191.242500px;}
.x37_c00321{left:192.549000px;}
.x11_c00321{left:197.463000px;}
.x21_c00321{left:200.703000px;}
.x51_c00321{left:203.429975px;}
.xb_c00321{left:206.692500px;}
.x26_c00321{left:207.774000px;}
.x32_c00321{left:208.908000px;}
.x19_c00321{left:210.960000px;}
.x6d_c00321{left:213.446308px;}
.x67_c00321{left:220.315032px;}
.x7f_c00321{left:223.315393px;}
.x48_c00321{left:227.781452px;}
.x27_c00321{left:229.569000px;}
.x29_c00321{left:233.038500px;}
.x5a_c00321{left:235.560458px;}
.xc_c00321{left:236.896500px;}
.x82_c00321{left:238.261530px;}
.x3f_c00321{left:241.983830px;}
.x22_c00321{left:243.597000px;}
.x5f_c00321{left:246.681374px;}
.x4d_c00321{left:249.358340px;}
.x2e_c00321{left:251.482500px;}
.x63_c00321{left:254.508000px;}
.x83_c00321{left:257.402983px;}
.x76_c00321{left:259.646111px;}
.x3c_c00321{left:261.456994px;}
.x38_c00321{left:263.427000px;}
.x12_c00321{left:265.234500px;}
.x57_c00321{left:267.387635px;}
.x71_c00321{left:268.557955px;}
.x1a_c00321{left:269.815500px;}
.x44_c00321{left:271.659720px;}
.x39_c00321{left:277.092000px;}
.x5b_c00321{left:278.467962px;}
.x2f_c00321{left:279.843000px;}
.x64_c00321{left:280.876500px;}
.x13_c00321{left:281.970000px;}
.x72_c00321{left:283.394922px;}
.x2a_c00321{left:286.032000px;}
.x49_c00321{left:288.002823px;}
.x5d_c00321{left:290.062838px;}
.x40_c00321{left:295.787329px;}
.x6e_c00321{left:299.026680px;}
.x30_c00321{left:300.235500px;}
.x4e_c00321{left:301.660923px;}
.x6a_c00321{left:304.572531px;}
.x52_c00321{left:308.210673px;}
.x14_c00321{left:309.741000px;}
.x84_c00321{left:311.850000px;}
.x7c_c00321{left:313.374139px;}
.x4f_c00321{left:314.697561px;}
.x1b_c00321{left:318.135000px;}
.x4a_c00321{left:319.865839px;}
.x7_c00321{left:321.357000px;}
.x28_c00321{left:322.639500px;}
.x6b_c00321{left:325.919430px;}
.x15_c00321{left:329.176500px;}
.x2_c00321{left:336.960000px;}
.x53_c00321{left:357.080815px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fs1c_c00321{font-size:18.666667pt;}
.fs1d_c00321{font-size:21.466667pt;}
.fs8_c00321{font-size:47.600000pt;}
.fs14_c00321{font-size:48.542093pt;}
.fsb_c00321{font-size:48.544034pt;}
.fsf_c00321{font-size:49.477573pt;}
.fs11_c00321{font-size:51.344651pt;}
.fs17_c00321{font-size:52.276100pt;}
.fs3_c00321{font-size:53.200000pt;}
.fs18_c00321{font-size:53.209602pt;}
.fs9_c00321{font-size:53.211729pt;}
.fs10_c00321{font-size:54.145268pt;}
.fs12_c00321{font-size:55.076605pt;}
.fsa_c00321{font-size:55.078808pt;}
.fs6_c00321{font-size:56.000000pt;}
.fs19_c00321{font-size:56.010107pt;}
.fsc_c00321{font-size:56.012347pt;}
.fs15_c00321{font-size:56.943609pt;}
.fs13_c00321{font-size:57.877111pt;}
.fsd_c00321{font-size:57.879425pt;}
.fs2_c00321{font-size:58.800000pt;}
.fs16_c00321{font-size:59.744114pt;}
.fs4_c00321{font-size:60.666667pt;}
.fs1a_c00321{font-size:60.677616pt;}
.fs5_c00321{font-size:61.600000pt;}
.fs7_c00321{font-size:62.533333pt;}
.fse_c00321{font-size:62.547120pt;}
.fs1_c00321{font-size:63.466667pt;}
.fs1b_c00321{font-size:66.278627pt;}
.fs0_c00321{font-size:68.133333pt;}
.y0_c00321{bottom:0.000000pt;}
.ye5_c00321{bottom:17.760000pt;}
.ye4_c00321{bottom:23.503892pt;}
.ye3_c00321{bottom:23.702701pt;}
.ye2_c00321{bottom:24.140801pt;}
.ye1_c00321{bottom:24.396055pt;}
.ye0_c00321{bottom:25.692727pt;}
.ydf_c00321{bottom:26.009880pt;}
.yde_c00321{bottom:26.747980pt;}
.ydd_c00321{bottom:27.107929pt;}
.yd8_c00321{bottom:41.068671pt;}
.yd7_c00321{bottom:41.068807pt;}
.ydb_c00321{bottom:41.069071pt;}
.yd9_c00321{bottom:41.069140pt;}
.ydc_c00321{bottom:41.069361pt;}
.yda_c00321{bottom:41.069424pt;}
.yd6_c00321{bottom:54.161352pt;}
.yd5_c00321{bottom:55.180077pt;}
.yd4_c00321{bottom:55.575723pt;}
.yd3_c00321{bottom:55.819141pt;}
.yd2_c00321{bottom:56.083091pt;}
.yd1_c00321{bottom:56.616869pt;}
.yd0_c00321{bottom:56.856276pt;}
.ycf_c00321{bottom:69.738227pt;}
.yce_c00321{bottom:70.498553pt;}
.ycd_c00321{bottom:70.912633pt;}
.ycc_c00321{bottom:71.144985pt;}
.ycb_c00321{bottom:71.615053pt;}
.yca_c00321{bottom:71.818047pt;}
.yc9_c00321{bottom:71.978899pt;}
.yc8_c00321{bottom:83.485527pt;}
.yc7_c00321{bottom:83.896236pt;}
.yc6_c00321{bottom:84.153921pt;}
.yc5_c00321{bottom:84.946683pt;}
.yc4_c00321{bottom:85.126303pt;}
.yc3_c00321{bottom:86.027265pt;}
.yc2_c00321{bottom:86.747848pt;}
.yc1_c00321{bottom:87.104849pt;}
.yc0_c00321{bottom:99.600109pt;}
.ybf_c00321{bottom:100.703973pt;}
.ybe_c00321{bottom:101.545181pt;}
.ybd_c00321{bottom:101.758469pt;}
.ybc_c00321{bottom:102.227631pt;}
.ybb_c00321{bottom:114.749349pt;}
.yba_c00321{bottom:114.907896pt;}
.yb9_c00321{bottom:115.605028pt;}
.yb8_c00321{bottom:116.045248pt;}
.yb7_c00321{bottom:116.287892pt;}
.yb6_c00321{bottom:116.498080pt;}
.yb5_c00321{bottom:116.782271pt;}
.yb4_c00321{bottom:116.948505pt;}
.yb3_c00321{bottom:117.349012pt;}
.yb2_c00321{bottom:129.941591pt;}
.yb1_c00321{bottom:130.854756pt;}
.yb0_c00321{bottom:131.303424pt;}
.yaf_c00321{bottom:131.752421pt;}
.yae_c00321{bottom:132.710977pt;}
.yad_c00321{bottom:143.492456pt;}
.yac_c00321{bottom:143.834308pt;}
.yab_c00321{bottom:144.477140pt;}
.yaa_c00321{bottom:145.167541pt;}
.ya9_c00321{bottom:145.837971pt;}
.ya8_c00321{bottom:146.303319pt;}
.ya7_c00321{bottom:147.022128pt;}
.ya6_c00321{bottom:147.380709pt;}
.ya5_c00321{bottom:148.075848pt;}
.ya4_c00321{bottom:159.599035pt;}
.ya3_c00321{bottom:160.515736pt;}
.ya2_c00321{bottom:161.437596pt;}
.ya1_c00321{bottom:163.243577pt;}
.ya0_c00321{bottom:164.600799pt;}
.y9f_c00321{bottom:165.068740pt;}
.y9e_c00321{bottom:165.602855pt;}
.y9d_c00321{bottom:174.955763pt;}
.y9c_c00321{bottom:176.449913pt;}
.y9b_c00321{bottom:176.830360pt;}
.y9a_c00321{bottom:178.561863pt;}
.y99_c00321{bottom:179.248249pt;}
.y98_c00321{bottom:179.501543pt;}
.y97_c00321{bottom:180.001121pt;}
.y96_c00321{bottom:190.963371pt;}
.y95_c00321{bottom:191.408705pt;}
.y94_c00321{bottom:192.691915pt;}
.y93_c00321{bottom:192.910744pt;}
.y92_c00321{bottom:193.248209pt;}
.y91_c00321{bottom:194.296553pt;}
.y90_c00321{bottom:194.644000pt;}
.y8f_c00321{bottom:204.974700pt;}
.y8e_c00321{bottom:205.636615pt;}
.y8d_c00321{bottom:206.227888pt;}
.y8c_c00321{bottom:208.248983pt;}
.y8b_c00321{bottom:208.723053pt;}
.y8a_c00321{bottom:209.071269pt;}
.y89_c00321{bottom:209.722421pt;}
.y88_c00321{bottom:219.593919pt;}
.y87_c00321{bottom:219.899151pt;}
.y86_c00321{bottom:220.574376pt;}
.y85_c00321{bottom:220.812887pt;}
.y84_c00321{bottom:221.865004pt;}
.y83_c00321{bottom:222.909803pt;}
.y82_c00321{bottom:223.232909pt;}
.y81_c00321{bottom:223.680275pt;}
.y80_c00321{bottom:224.129264pt;}
.y7f_c00321{bottom:235.619756pt;}
.y7e_c00321{bottom:236.229945pt;}
.y7d_c00321{bottom:236.771224pt;}
.y7c_c00321{bottom:237.221156pt;}
.y7b_c00321{bottom:238.058627pt;}
.y7a_c00321{bottom:238.322376pt;}
.y79_c00321{bottom:238.499437pt;}
.y78_c00321{bottom:239.011353pt;}
.y77_c00321{bottom:250.252948pt;}
.y76_c00321{bottom:251.385484pt;}
.y75_c00321{bottom:251.731463pt;}
.y74_c00321{bottom:252.784747pt;}
.y73_c00321{bottom:253.895281pt;}
.y72_c00321{bottom:264.551049pt;}
.y71_c00321{bottom:265.203177pt;}
.y70_c00321{bottom:266.060031pt;}
.y6f_c00321{bottom:266.600171pt;}
.y6e_c00321{bottom:267.009527pt;}
.y6d_c00321{bottom:268.094773pt;}
.y6c_c00321{bottom:268.400535pt;}
.y6b_c00321{bottom:268.778172pt;}
.y6a_c00321{bottom:280.491548pt;}
.y69_c00321{bottom:280.665535pt;}
.y68_c00321{bottom:281.363060pt;}
.y67_c00321{bottom:281.870557pt;}
.y66_c00321{bottom:282.756543pt;}
.y65_c00321{bottom:283.678979pt;}
.y64_c00321{bottom:284.143861pt;}
.y63_c00321{bottom:296.053976pt;}
.y62_c00321{bottom:296.393973pt;}
.y61_c00321{bottom:297.036560pt;}
.y60_c00321{bottom:297.266679pt;}
.y5f_c00321{bottom:297.485747pt;}
.y5e_c00321{bottom:297.932196pt;}
.y5d_c00321{bottom:298.093383pt;}
.y5c_c00321{bottom:298.527784pt;}
.y5b_c00321{bottom:298.726368pt;}
.y5a_c00321{bottom:299.026528pt;}
.y59_c00321{bottom:311.156084pt;}
.y58_c00321{bottom:311.611853pt;}
.y57_c00321{bottom:312.461629pt;}
.y56_c00321{bottom:313.139659pt;}
.y55_c00321{bottom:313.583563pt;}
.y54_c00321{bottom:314.633604pt;}
.y53_c00321{bottom:326.463315pt;}
.y52_c00321{bottom:327.467647pt;}
.y51_c00321{bottom:329.161759pt;}
.y50_c00321{bottom:330.189807pt;}
.y4f_c00321{bottom:330.651807pt;}
.y4e_c00321{bottom:331.195903pt;}
.y4d_c00321{bottom:341.360352pt;}
.y4c_c00321{bottom:341.657229pt;}
.y4b_c00321{bottom:342.852516pt;}
.y4a_c00321{bottom:343.556071pt;}
.y49_c00321{bottom:344.545947pt;}
.y48_c00321{bottom:344.986536pt;}
.y47_c00321{bottom:345.361552pt;}
.y46_c00321{bottom:356.150065pt;}
.y45_c00321{bottom:356.568077pt;}
.y44_c00321{bottom:356.823157pt;}
.y43_c00321{bottom:358.146213pt;}
.y42_c00321{bottom:358.669001pt;}
.y41_c00321{bottom:358.967873pt;}
.y40_c00321{bottom:359.511017pt;}
.y3f_c00321{bottom:360.485333pt;}
.y3e_c00321{bottom:373.025333pt;}
.y3d_c00321{bottom:373.645333pt;}
.ye6_c00321{bottom:374.276000pt;}
.y3c_c00321{bottom:374.442667pt;}
.y3b_c00321{bottom:374.644000pt;}
.y3a_c00321{bottom:385.917333pt;}
.y39_c00321{bottom:386.280000pt;}
.y38_c00321{bottom:386.784000pt;}
.y37_c00321{bottom:388.005333pt;}
.y36_c00321{bottom:388.257333pt;}
.y35_c00321{bottom:389.521333pt;}
.y34_c00321{bottom:389.962667pt;}
.y33_c00321{bottom:390.484000pt;}
.y32_c00321{bottom:401.553333pt;}
.y31_c00321{bottom:402.542667pt;}
.y30_c00321{bottom:404.749333pt;}
.y2f_c00321{bottom:406.085333pt;}
.y2e_c00321{bottom:416.494667pt;}
.y2d_c00321{bottom:418.066667pt;}
.y2c_c00321{bottom:418.434667pt;}
.y2b_c00321{bottom:419.640000pt;}
.y2a_c00321{bottom:419.973333pt;}
.y29_c00321{bottom:420.593333pt;}
.y28_c00321{bottom:421.204000pt;}
.y27_c00321{bottom:431.226667pt;}
.y26_c00321{bottom:431.793333pt;}
.y25_c00321{bottom:432.361333pt;}
.y24_c00321{bottom:433.009333pt;}
.y23_c00321{bottom:433.437333pt;}
.y22_c00321{bottom:433.969333pt;}
.y21_c00321{bottom:434.312000pt;}
.y20_c00321{bottom:434.581333pt;}
.y1f_c00321{bottom:434.985333pt;}
.y1e_c00321{bottom:435.364000pt;}
.y1d_c00321{bottom:446.360000pt;}
.y1c_c00321{bottom:447.004000pt;}
.y1b_c00321{bottom:447.789333pt;}
.y1a_c00321{bottom:448.052000pt;}
.y19_c00321{bottom:448.808000pt;}
.y18_c00321{bottom:449.092000pt;}
.y17_c00321{bottom:450.004000pt;}
.y16_c00321{bottom:462.053333pt;}
.y15_c00321{bottom:462.312000pt;}
.y14_c00321{bottom:462.682667pt;}
.y13_c00321{bottom:462.905333pt;}
.y12_c00321{bottom:463.809333pt;}
.y11_c00321{bottom:464.216000pt;}
.y10_c00321{bottom:464.385333pt;}
.yf_c00321{bottom:464.756000pt;}
.ye_c00321{bottom:465.217333pt;}
.yd_c00321{bottom:465.577333pt;}
.yc_c00321{bottom:465.844000pt;}
.yb_c00321{bottom:478.337333pt;}
.ya_c00321{bottom:478.713333pt;}
.y9_c00321{bottom:479.637333pt;}
.y8_c00321{bottom:480.060000pt;}
.y7_c00321{bottom:480.722667pt;}
.y6_c00321{bottom:491.934667pt;}
.y5_c00321{bottom:494.122667pt;}
.y4_c00321{bottom:494.876000pt;}
.y3_c00321{bottom:495.365333pt;}
.y2_c00321{bottom:495.602667pt;}
.y1_c00321{bottom:504.589333pt;}
.h1e_c00321{height:18.666667pt;}
.h1f_c00321{height:21.466667pt;}
.ha_c00321{height:47.600000pt;}
.h16_c00321{height:48.542093pt;}
.hd_c00321{height:48.544034pt;}
.h11_c00321{height:49.477573pt;}
.h13_c00321{height:51.344651pt;}
.h19_c00321{height:52.276100pt;}
.h5_c00321{height:53.200000pt;}
.h1a_c00321{height:53.209602pt;}
.hb_c00321{height:53.211729pt;}
.h12_c00321{height:54.145268pt;}
.h14_c00321{height:55.076605pt;}
.hc_c00321{height:55.078808pt;}
.h8_c00321{height:56.000000pt;}
.h1b_c00321{height:56.010107pt;}
.he_c00321{height:56.012347pt;}
.h17_c00321{height:56.943609pt;}
.h15_c00321{height:57.877111pt;}
.hf_c00321{height:57.879425pt;}
.h4_c00321{height:58.800000pt;}
.h18_c00321{height:59.744114pt;}
.h6_c00321{height:60.666667pt;}
.h1c_c00321{height:60.677616pt;}
.h7_c00321{height:61.600000pt;}
.h9_c00321{height:62.533333pt;}
.h10_c00321{height:62.547120pt;}
.h3_c00321{height:63.466667pt;}
.h1d_c00321{height:66.278627pt;}
.h2_c00321{height:68.133333pt;}
.h0_c00321{height:545.040000pt;}
.h1_c00321{height:545.333333pt;}
.w0_c00321{width:319.200000pt;}
.w1_c00321{width:319.333333pt;}
.x0_c00321{left:0.000000pt;}
.x80_c00321{left:31.008963pt;}
.x7d_c00321{left:32.632043pt;}
.x7b_c00321{left:33.521551pt;}
.x65_c00321{left:34.412780pt;}
.x54_c00321{left:35.331824pt;}
.x4b_c00321{left:36.320533pt;}
.x3a_c00321{left:37.462041pt;}
.x23_c00321{left:38.969333pt;}
.x8_c00321{left:40.168000pt;}
.x3_c00321{left:41.125333pt;}
.x77_c00321{left:48.595161pt;}
.x68_c00321{left:53.594756pt;}
.x81_c00321{left:55.008120pt;}
.x60_c00321{left:55.950667pt;}
.x4_c00321{left:56.961333pt;}
.x74_c00321{left:57.910087pt;}
.x33_c00321{left:59.768000pt;}
.x50_c00321{left:60.794191pt;}
.x1c_c00321{left:62.198667pt;}
.x3d_c00321{left:63.470071pt;}
.x2b_c00321{left:64.565333pt;}
.x4c_c00321{left:67.287092pt;}
.x66_c00321{left:68.632163pt;}
.x5e_c00321{left:69.644727pt;}
.x24_c00321{left:71.100000pt;}
.x61_c00321{left:74.237333pt;}
.x45_c00321{left:78.104881pt;}
.x3b_c00321{left:80.429195pt;}
.xd_c00321{left:81.668000pt;}
.x1d_c00321{left:85.936000pt;}
.x9_c00321{left:87.492000pt;}
.x5_c00321{left:89.582667pt;}
.x73_c00321{left:91.536603pt;}
.x69_c00321{left:93.614436pt;}
.x58_c00321{left:95.120423pt;}
.x55_c00321{left:97.043716pt;}
.x41_c00321{left:98.758017pt;}
.x16_c00321{left:100.692000pt;}
.x1e_c00321{left:101.812000pt;}
.x25_c00321{left:103.728000pt;}
.x34_c00321{left:106.164000pt;}
.x78_c00321{left:109.783125pt;}
.xe_c00321{left:112.413333pt;}
.x46_c00321{left:114.353075pt;}
.xa_c00321{left:117.692000pt;}
.x17_c00321{left:119.608000pt;}
.x1f_c00321{left:121.986667pt;}
.x6f_c00321{left:123.685548pt;}
.x42_c00321{left:124.850868pt;}
.x47_c00321{left:127.808956pt;}
.x31_c00321{left:129.284000pt;}
.x79_c00321{left:130.927676pt;}
.x35_c00321{left:132.028000pt;}
.x3e_c00321{left:134.424737pt;}
.xf_c00321{left:137.138667pt;}
.x6_c00321{left:139.780000pt;}
.x70_c00321{left:143.897567pt;}
.x36_c00321{left:146.260000pt;}
.x59_c00321{left:147.449911pt;}
.x10_c00321{left:148.445333pt;}
.x2c_c00321{left:149.880000pt;}
.x6c_c00321{left:152.286395pt;}
.x20_c00321{left:153.246667pt;}
.x5c_c00321{left:154.375960pt;}
.x56_c00321{left:155.584745pt;}
.x1_c00321{left:156.960000pt;}
.x62_c00321{left:158.692000pt;}
.x7e_c00321{left:160.575559pt;}
.x2d_c00321{left:162.504000pt;}
.x43_c00321{left:164.696867pt;}
.x75_c00321{left:165.999628pt;}
.x7a_c00321{left:168.586735pt;}
.x18_c00321{left:169.993333pt;}
.x37_c00321{left:171.154667pt;}
.x11_c00321{left:175.522667pt;}
.x21_c00321{left:178.402667pt;}
.x51_c00321{left:180.826644pt;}
.xb_c00321{left:183.726667pt;}
.x26_c00321{left:184.688000pt;}
.x32_c00321{left:185.696000pt;}
.x19_c00321{left:187.520000pt;}
.x6d_c00321{left:189.730052pt;}
.x67_c00321{left:195.835584pt;}
.x7f_c00321{left:198.502572pt;}
.x48_c00321{left:202.472401pt;}
.x27_c00321{left:204.061333pt;}
.x29_c00321{left:207.145333pt;}
.x5a_c00321{left:209.387073pt;}
.xc_c00321{left:210.574667pt;}
.x82_c00321{left:211.788027pt;}
.x3f_c00321{left:215.096737pt;}
.x22_c00321{left:216.530667pt;}
.x5f_c00321{left:219.272332pt;}
.x4d_c00321{left:221.651857pt;}
.x2e_c00321{left:223.540000pt;}
.x63_c00321{left:226.229333pt;}
.x83_c00321{left:228.802652pt;}
.x76_c00321{left:230.796543pt;}
.x3c_c00321{left:232.406217pt;}
.x38_c00321{left:234.157333pt;}
.x12_c00321{left:235.764000pt;}
.x57_c00321{left:237.677897pt;}
.x71_c00321{left:238.718183pt;}
.x1a_c00321{left:239.836000pt;}
.x44_c00321{left:241.475307pt;}
.x39_c00321{left:246.304000pt;}
.x5b_c00321{left:247.527077pt;}
.x2f_c00321{left:248.749333pt;}
.x64_c00321{left:249.668000pt;}
.x13_c00321{left:250.640000pt;}
.x72_c00321{left:251.906597pt;}
.x2a_c00321{left:254.250667pt;}
.x49_c00321{left:256.002509pt;}
.x5d_c00321{left:257.833633pt;}
.x40_c00321{left:262.922071pt;}
.x6e_c00321{left:265.801493pt;}
.x30_c00321{left:266.876000pt;}
.x4e_c00321{left:268.143043pt;}
.x6a_c00321{left:270.731139pt;}
.x52_c00321{left:273.965043pt;}
.x14_c00321{left:275.325333pt;}
.x84_c00321{left:277.200000pt;}
.x7c_c00321{left:278.554791pt;}
.x4f_c00321{left:279.731165pt;}
.x1b_c00321{left:282.786667pt;}
.x4a_c00321{left:284.325191pt;}
.x7_c00321{left:285.650667pt;}
.x28_c00321{left:286.790667pt;}
.x6b_c00321{left:289.706160pt;}
.x15_c00321{left:292.601333pt;}
.x2_c00321{left:299.520000pt;}
.x53_c00321{left:317.405169pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00322 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00322 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00322 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00322 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00322.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00322{transform:matrix(0.010036,-0.000281,0.006997,0.249902,0,0);-ms-transform:matrix(0.010036,-0.000281,0.006997,0.249902,0,0);-webkit-transform:matrix(0.010036,-0.000281,0.006997,0.249902,0,0);}
.m7b_c00322{transform:matrix(0.137766,-0.003857,0.006997,0.249902,0,0);-ms-transform:matrix(0.137766,-0.003857,0.006997,0.249902,0,0);-webkit-transform:matrix(0.137766,-0.003857,0.006997,0.249902,0,0);}
.m2f_c00322{transform:matrix(0.138906,-0.003889,0.006997,0.249902,0,0);-ms-transform:matrix(0.138906,-0.003889,0.006997,0.249902,0,0);-webkit-transform:matrix(0.138906,-0.003889,0.006997,0.249902,0,0);}
.m7e_c00322{transform:matrix(0.141100,-0.003951,0.006997,0.249902,0,0);-ms-transform:matrix(0.141100,-0.003951,0.006997,0.249902,0,0);-webkit-transform:matrix(0.141100,-0.003951,0.006997,0.249902,0,0);}
.m8e_c00322{transform:matrix(0.146008,-0.004088,0.006997,0.249902,0,0);-ms-transform:matrix(0.146008,-0.004088,0.006997,0.249902,0,0);-webkit-transform:matrix(0.146008,-0.004088,0.006997,0.249902,0,0);}
.m6d_c00322{transform:matrix(0.149182,-0.004177,0.006997,0.249902,0,0);-ms-transform:matrix(0.149182,-0.004177,0.006997,0.249902,0,0);-webkit-transform:matrix(0.149182,-0.004177,0.006997,0.249902,0,0);}
.m96_c00322{transform:matrix(0.150021,-0.004201,0.006997,0.249902,0,0);-ms-transform:matrix(0.150021,-0.004201,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150021,-0.004201,0.006997,0.249902,0,0);}
.me8_c00322{transform:matrix(0.151216,-0.003629,0.005998,0.249928,0,0);-ms-transform:matrix(0.151216,-0.003629,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151216,-0.003629,0.005998,0.249928,0,0);}
.me6_c00322{transform:matrix(0.151761,-0.003642,0.005998,0.249928,0,0);-ms-transform:matrix(0.151761,-0.003642,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151761,-0.003642,0.005998,0.249928,0,0);}
.m89_c00322{transform:matrix(0.153410,-0.004295,0.006997,0.249902,0,0);-ms-transform:matrix(0.153410,-0.004295,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153410,-0.004295,0.006997,0.249902,0,0);}
.me7_c00322{transform:matrix(0.159819,-0.003836,0.005998,0.249928,0,0);-ms-transform:matrix(0.159819,-0.003836,0.005998,0.249928,0,0);-webkit-transform:matrix(0.159819,-0.003836,0.005998,0.249928,0,0);}
.m86_c00322{transform:matrix(0.160462,-0.004493,0.006997,0.249902,0,0);-ms-transform:matrix(0.160462,-0.004493,0.006997,0.249902,0,0);-webkit-transform:matrix(0.160462,-0.004493,0.006997,0.249902,0,0);}
.m2d_c00322{transform:matrix(0.161702,-0.004528,0.006997,0.249902,0,0);-ms-transform:matrix(0.161702,-0.004528,0.006997,0.249902,0,0);-webkit-transform:matrix(0.161702,-0.004528,0.006997,0.249902,0,0);}
.mda_c00322{transform:matrix(0.163208,-0.003917,0.005998,0.249928,0,0);-ms-transform:matrix(0.163208,-0.003917,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163208,-0.003917,0.005998,0.249928,0,0);}
.m58_c00322{transform:matrix(0.165030,-0.004621,0.006997,0.249902,0,0);-ms-transform:matrix(0.165030,-0.004621,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165030,-0.004621,0.006997,0.249902,0,0);}
.m95_c00322{transform:matrix(0.165585,-0.004636,0.006997,0.249902,0,0);-ms-transform:matrix(0.165585,-0.004636,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165585,-0.004636,0.006997,0.249902,0,0);}
.m55_c00322{transform:matrix(0.166410,-0.004659,0.006997,0.249902,0,0);-ms-transform:matrix(0.166410,-0.004659,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166410,-0.004659,0.006997,0.249902,0,0);}
.meb_c00322{transform:matrix(0.167027,-0.004009,0.005998,0.249928,0,0);-ms-transform:matrix(0.167027,-0.004009,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167027,-0.004009,0.005998,0.249928,0,0);}
.m7a_c00322{transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);-ms-transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);}
.m38_c00322{transform:matrix(0.167729,-0.004696,0.006997,0.249902,0,0);-ms-transform:matrix(0.167729,-0.004696,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167729,-0.004696,0.006997,0.249902,0,0);}
.m33_c00322{transform:matrix(0.167924,-0.004702,0.006997,0.249902,0,0);-ms-transform:matrix(0.167924,-0.004702,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167924,-0.004702,0.006997,0.249902,0,0);}
.m84_c00322{transform:matrix(0.167964,-0.004703,0.006997,0.249902,0,0);-ms-transform:matrix(0.167964,-0.004703,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167964,-0.004703,0.006997,0.249902,0,0);}
.m5a_c00322{transform:matrix(0.168209,-0.004710,0.006997,0.249902,0,0);-ms-transform:matrix(0.168209,-0.004710,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168209,-0.004710,0.006997,0.249902,0,0);}
.m0_c00322{transform:matrix(0.168624,-0.004721,0.006997,0.249902,0,0);-ms-transform:matrix(0.168624,-0.004721,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168624,-0.004721,0.006997,0.249902,0,0);}
.m6a_c00322{transform:matrix(0.168909,-0.004729,0.006997,0.249902,0,0);-ms-transform:matrix(0.168909,-0.004729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168909,-0.004729,0.006997,0.249902,0,0);}
.m4c_c00322{transform:matrix(0.168969,-0.004731,0.006997,0.249902,0,0);-ms-transform:matrix(0.168969,-0.004731,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168969,-0.004731,0.006997,0.249902,0,0);}
.m11_c00322{transform:matrix(0.170148,-0.004764,0.006997,0.249902,0,0);-ms-transform:matrix(0.170148,-0.004764,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170148,-0.004764,0.006997,0.249902,0,0);}
.mac_c00322{transform:matrix(0.170208,-0.004766,0.006997,0.249902,0,0);-ms-transform:matrix(0.170208,-0.004766,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170208,-0.004766,0.006997,0.249902,0,0);}
.mb_c00322{transform:matrix(0.170353,-0.004770,0.006997,0.249902,0,0);-ms-transform:matrix(0.170353,-0.004770,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170353,-0.004770,0.006997,0.249902,0,0);}
.m81_c00322{transform:matrix(0.170758,-0.004781,0.006997,0.249902,0,0);-ms-transform:matrix(0.170758,-0.004781,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170758,-0.004781,0.006997,0.249902,0,0);}
.m8f_c00322{transform:matrix(0.171078,-0.004790,0.006997,0.249902,0,0);-ms-transform:matrix(0.171078,-0.004790,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171078,-0.004790,0.006997,0.249902,0,0);}
.md_c00322{transform:matrix(0.171533,-0.004803,0.006997,0.249902,0,0);-ms-transform:matrix(0.171533,-0.004803,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171533,-0.004803,0.006997,0.249902,0,0);}
.m56_c00322{transform:matrix(0.171938,-0.004814,0.006997,0.249902,0,0);-ms-transform:matrix(0.171938,-0.004814,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171938,-0.004814,0.006997,0.249902,0,0);}
.m2a_c00322{transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);-ms-transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);}
.m79_c00322{transform:matrix(0.172937,-0.004842,0.006997,0.249902,0,0);-ms-transform:matrix(0.172937,-0.004842,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172937,-0.004842,0.006997,0.249902,0,0);}
.m99_c00322{transform:matrix(0.174956,-0.004899,0.006997,0.249902,0,0);-ms-transform:matrix(0.174956,-0.004899,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174956,-0.004899,0.006997,0.249902,0,0);}
.m31_c00322{transform:matrix(0.175376,-0.004911,0.006997,0.249902,0,0);-ms-transform:matrix(0.175376,-0.004911,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175376,-0.004911,0.006997,0.249902,0,0);}
.ma0_c00322{transform:matrix(0.175836,-0.004923,0.006997,0.249902,0,0);-ms-transform:matrix(0.175836,-0.004923,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175836,-0.004923,0.006997,0.249902,0,0);}
.m9b_c00322{transform:matrix(0.176121,-0.004931,0.006997,0.249902,0,0);-ms-transform:matrix(0.176121,-0.004931,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176121,-0.004931,0.006997,0.249902,0,0);}
.m8b_c00322{transform:matrix(0.176406,-0.004939,0.006997,0.249902,0,0);-ms-transform:matrix(0.176406,-0.004939,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176406,-0.004939,0.006997,0.249902,0,0);}
.m69_c00322{transform:matrix(0.176476,-0.004941,0.006997,0.249902,0,0);-ms-transform:matrix(0.176476,-0.004941,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176476,-0.004941,0.006997,0.249902,0,0);}
.mea_c00322{transform:matrix(0.176959,-0.004247,0.005998,0.249928,0,0);-ms-transform:matrix(0.176959,-0.004247,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176959,-0.004247,0.005998,0.249928,0,0);}
.m5_c00322{transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);-ms-transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);}
.m71_c00322{transform:matrix(0.177730,-0.004976,0.006997,0.249902,0,0);-ms-transform:matrix(0.177730,-0.004976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177730,-0.004976,0.006997,0.249902,0,0);}
.m92_c00322{transform:matrix(0.177990,-0.004984,0.006997,0.249902,0,0);-ms-transform:matrix(0.177990,-0.004984,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177990,-0.004984,0.006997,0.249902,0,0);}
.m7c_c00322{transform:matrix(0.178615,-0.005001,0.006997,0.249902,0,0);-ms-transform:matrix(0.178615,-0.005001,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178615,-0.005001,0.006997,0.249902,0,0);}
.m26_c00322{transform:matrix(0.179010,-0.005012,0.006997,0.249902,0,0);-ms-transform:matrix(0.179010,-0.005012,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179010,-0.005012,0.006997,0.249902,0,0);}
.m3c_c00322{transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);-ms-transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);}
.mad_c00322{transform:matrix(0.180109,-0.005043,0.006997,0.249902,0,0);-ms-transform:matrix(0.180109,-0.005043,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180109,-0.005043,0.006997,0.249902,0,0);}
.m4e_c00322{transform:matrix(0.180549,-0.005055,0.006997,0.249902,0,0);-ms-transform:matrix(0.180549,-0.005055,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180549,-0.005055,0.006997,0.249902,0,0);}
.mbb_c00322{transform:matrix(0.180918,-0.004342,0.005998,0.249928,0,0);-ms-transform:matrix(0.180918,-0.004342,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180918,-0.004342,0.005998,0.249928,0,0);}
.m8c_c00322{transform:matrix(0.181204,-0.005074,0.006997,0.249902,0,0);-ms-transform:matrix(0.181204,-0.005074,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181204,-0.005074,0.006997,0.249902,0,0);}
.mc7_c00322{transform:matrix(0.181278,-0.004351,0.005998,0.249928,0,0);-ms-transform:matrix(0.181278,-0.004351,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181278,-0.004351,0.005998,0.249928,0,0);}
.m16_c00322{transform:matrix(0.181349,-0.005078,0.006997,0.249902,0,0);-ms-transform:matrix(0.181349,-0.005078,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181349,-0.005078,0.006997,0.249902,0,0);}
.m85_c00322{transform:matrix(0.181579,-0.005084,0.006997,0.249902,0,0);-ms-transform:matrix(0.181579,-0.005084,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181579,-0.005084,0.006997,0.249902,0,0);}
.m4b_c00322{transform:matrix(0.182014,-0.005096,0.006997,0.249902,0,0);-ms-transform:matrix(0.182014,-0.005096,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182014,-0.005096,0.006997,0.249902,0,0);}
.m9c_c00322{transform:matrix(0.182209,-0.005102,0.006997,0.249902,0,0);-ms-transform:matrix(0.182209,-0.005102,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182209,-0.005102,0.006997,0.249902,0,0);}
.me9_c00322{transform:matrix(0.182357,-0.004377,0.005998,0.249928,0,0);-ms-transform:matrix(0.182357,-0.004377,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182357,-0.004377,0.005998,0.249928,0,0);}
.ma8_c00322{transform:matrix(0.182389,-0.005107,0.006997,0.249902,0,0);-ms-transform:matrix(0.182389,-0.005107,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182389,-0.005107,0.006997,0.249902,0,0);}
.m8a_c00322{transform:matrix(0.182578,-0.005112,0.006997,0.249902,0,0);-ms-transform:matrix(0.182578,-0.005112,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182578,-0.005112,0.006997,0.249902,0,0);}
.m7_c00322{transform:matrix(0.183248,-0.005131,0.006997,0.249902,0,0);-ms-transform:matrix(0.183248,-0.005131,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183248,-0.005131,0.006997,0.249902,0,0);}
.m78_c00322{transform:matrix(0.183383,-0.005135,0.006997,0.249902,0,0);-ms-transform:matrix(0.183383,-0.005135,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183383,-0.005135,0.006997,0.249902,0,0);}
.md0_c00322{transform:matrix(0.183732,-0.004410,0.005998,0.249928,0,0);-ms-transform:matrix(0.183732,-0.004410,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183732,-0.004410,0.005998,0.249928,0,0);}
.m32_c00322{transform:matrix(0.183788,-0.005146,0.006997,0.249902,0,0);-ms-transform:matrix(0.183788,-0.005146,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183788,-0.005146,0.006997,0.249902,0,0);}
.mbe_c00322{transform:matrix(0.183947,-0.004415,0.005998,0.249928,0,0);-ms-transform:matrix(0.183947,-0.004415,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183947,-0.004415,0.005998,0.249928,0,0);}
.m6f_c00322{transform:matrix(0.184003,-0.005152,0.006997,0.249902,0,0);-ms-transform:matrix(0.184003,-0.005152,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184003,-0.005152,0.006997,0.249902,0,0);}
.mca_c00322{transform:matrix(0.184257,-0.004422,0.005998,0.249928,0,0);-ms-transform:matrix(0.184257,-0.004422,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184257,-0.004422,0.005998,0.249928,0,0);}
.m3a_c00322{transform:matrix(0.184288,-0.005160,0.006997,0.249902,0,0);-ms-transform:matrix(0.184288,-0.005160,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184288,-0.005160,0.006997,0.249902,0,0);}
.m6c_c00322{transform:matrix(0.184468,-0.005165,0.006997,0.249902,0,0);-ms-transform:matrix(0.184468,-0.005165,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184468,-0.005165,0.006997,0.249902,0,0);}
.m2e_c00322{transform:matrix(0.184568,-0.005168,0.006997,0.249902,0,0);-ms-transform:matrix(0.184568,-0.005168,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184568,-0.005168,0.006997,0.249902,0,0);}
.mdc_c00322{transform:matrix(0.185362,-0.004449,0.005998,0.249928,0,0);-ms-transform:matrix(0.185362,-0.004449,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185362,-0.004449,0.005998,0.249928,0,0);}
.m59_c00322{transform:matrix(0.185792,-0.005202,0.006997,0.249902,0,0);-ms-transform:matrix(0.185792,-0.005202,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185792,-0.005202,0.006997,0.249902,0,0);}
.m2b_c00322{transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);-ms-transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);}
.m14_c00322{transform:matrix(0.186042,-0.005209,0.006997,0.249902,0,0);-ms-transform:matrix(0.186042,-0.005209,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186042,-0.005209,0.006997,0.249902,0,0);}
.m76_c00322{transform:matrix(0.186287,-0.005216,0.006997,0.249902,0,0);-ms-transform:matrix(0.186287,-0.005216,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186287,-0.005216,0.006997,0.249902,0,0);}
.mae_c00322{transform:matrix(0.186476,-0.004475,0.005998,0.249928,0,0);-ms-transform:matrix(0.186476,-0.004475,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186476,-0.004475,0.005998,0.249928,0,0);}
.m1f_c00322{transform:matrix(0.187586,-0.005252,0.006997,0.249902,0,0);-ms-transform:matrix(0.187586,-0.005252,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187586,-0.005252,0.006997,0.249902,0,0);}
.m7f_c00322{transform:matrix(0.187766,-0.005257,0.006997,0.249902,0,0);-ms-transform:matrix(0.187766,-0.005257,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187766,-0.005257,0.006997,0.249902,0,0);}
.mb6_c00322{transform:matrix(0.187961,-0.004511,0.005998,0.249928,0,0);-ms-transform:matrix(0.187961,-0.004511,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187961,-0.004511,0.005998,0.249928,0,0);}
.m57_c00322{transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);-ms-transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);}
.me4_c00322{transform:matrix(0.188021,-0.004513,0.005998,0.249928,0,0);-ms-transform:matrix(0.188021,-0.004513,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188021,-0.004513,0.005998,0.249928,0,0);}
.m9a_c00322{transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);-ms-transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);}
.m5e_c00322{transform:matrix(0.189591,-0.005309,0.006997,0.249902,0,0);-ms-transform:matrix(0.189591,-0.005309,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189591,-0.005309,0.006997,0.249902,0,0);}
.m97_c00322{transform:matrix(0.189611,-0.005309,0.006997,0.249902,0,0);-ms-transform:matrix(0.189611,-0.005309,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189611,-0.005309,0.006997,0.249902,0,0);}
.m93_c00322{transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);-ms-transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190110,-0.005323,0.006997,0.249902,0,0);}
.md1_c00322{transform:matrix(0.190220,-0.004565,0.005998,0.249928,0,0);-ms-transform:matrix(0.190220,-0.004565,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190220,-0.004565,0.005998,0.249928,0,0);}
.me_c00322{transform:matrix(0.191010,-0.005348,0.006997,0.249902,0,0);-ms-transform:matrix(0.191010,-0.005348,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191010,-0.005348,0.006997,0.249902,0,0);}
.m6e_c00322{transform:matrix(0.191135,-0.005352,0.006997,0.249902,0,0);-ms-transform:matrix(0.191135,-0.005352,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191135,-0.005352,0.006997,0.249902,0,0);}
.m82_c00322{transform:matrix(0.191685,-0.005367,0.006997,0.249902,0,0);-ms-transform:matrix(0.191685,-0.005367,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191685,-0.005367,0.006997,0.249902,0,0);}
.m9d_c00322{transform:matrix(0.192924,-0.005402,0.006997,0.249902,0,0);-ms-transform:matrix(0.192924,-0.005402,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192924,-0.005402,0.006997,0.249902,0,0);}
.mb2_c00322{transform:matrix(0.193299,-0.004639,0.005998,0.249928,0,0);-ms-transform:matrix(0.193299,-0.004639,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193299,-0.004639,0.005998,0.249928,0,0);}
.maa_c00322{transform:matrix(0.193319,-0.005413,0.006997,0.249902,0,0);-ms-transform:matrix(0.193319,-0.005413,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193319,-0.005413,0.006997,0.249902,0,0);}
.md5_c00322{transform:matrix(0.193569,-0.004646,0.005998,0.249928,0,0);-ms-transform:matrix(0.193569,-0.004646,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193569,-0.004646,0.005998,0.249928,0,0);}
.m13_c00322{transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);-ms-transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193709,-0.005424,0.006997,0.249902,0,0);}
.m39_c00322{transform:matrix(0.194799,-0.005454,0.006997,0.249902,0,0);-ms-transform:matrix(0.194799,-0.005454,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194799,-0.005454,0.006997,0.249902,0,0);}
.m3d_c00322{transform:matrix(0.194829,-0.005455,0.006997,0.249902,0,0);-ms-transform:matrix(0.194829,-0.005455,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194829,-0.005455,0.006997,0.249902,0,0);}
.mcd_c00322{transform:matrix(0.194879,-0.004677,0.005998,0.249928,0,0);-ms-transform:matrix(0.194879,-0.004677,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194879,-0.004677,0.005998,0.249928,0,0);}
.m94_c00322{transform:matrix(0.194954,-0.005459,0.006997,0.249902,0,0);-ms-transform:matrix(0.194954,-0.005459,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194954,-0.005459,0.006997,0.249902,0,0);}
.mf_c00322{transform:matrix(0.195079,-0.005462,0.006997,0.249902,0,0);-ms-transform:matrix(0.195079,-0.005462,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195079,-0.005462,0.006997,0.249902,0,0);}
.m9_c00322{transform:matrix(0.195238,-0.005467,0.006997,0.249902,0,0);-ms-transform:matrix(0.195238,-0.005467,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195238,-0.005467,0.006997,0.249902,0,0);}
.m75_c00322{transform:matrix(0.195248,-0.005467,0.006997,0.249902,0,0);-ms-transform:matrix(0.195248,-0.005467,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195248,-0.005467,0.006997,0.249902,0,0);}
.mb5_c00322{transform:matrix(0.195674,-0.004696,0.005998,0.249928,0,0);-ms-transform:matrix(0.195674,-0.004696,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195674,-0.004696,0.005998,0.249928,0,0);}
.m10_c00322{transform:matrix(0.195808,-0.005483,0.006997,0.249902,0,0);-ms-transform:matrix(0.195808,-0.005483,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195808,-0.005483,0.006997,0.249902,0,0);}
.m90_c00322{transform:matrix(0.196273,-0.005496,0.006997,0.249902,0,0);-ms-transform:matrix(0.196273,-0.005496,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196273,-0.005496,0.006997,0.249902,0,0);}
.mc6_c00322{transform:matrix(0.197108,-0.004731,0.005998,0.249928,0,0);-ms-transform:matrix(0.197108,-0.004731,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197108,-0.004731,0.005998,0.249928,0,0);}
.m67_c00322{transform:matrix(0.197183,-0.005521,0.006997,0.249902,0,0);-ms-transform:matrix(0.197183,-0.005521,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197183,-0.005521,0.006997,0.249902,0,0);}
.m4_c00322{transform:matrix(0.198422,-0.005556,0.006997,0.249902,0,0);-ms-transform:matrix(0.198422,-0.005556,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198422,-0.005556,0.006997,0.249902,0,0);}
.m70_c00322{transform:matrix(0.198982,-0.005571,0.006997,0.249902,0,0);-ms-transform:matrix(0.198982,-0.005571,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198982,-0.005571,0.006997,0.249902,0,0);}
.m7d_c00322{transform:matrix(0.199022,-0.005573,0.006997,0.249902,0,0);-ms-transform:matrix(0.199022,-0.005573,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199022,-0.005573,0.006997,0.249902,0,0);}
.m5d_c00322{transform:matrix(0.199342,-0.005582,0.006997,0.249902,0,0);-ms-transform:matrix(0.199342,-0.005582,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199342,-0.005582,0.006997,0.249902,0,0);}
.m83_c00322{transform:matrix(0.199477,-0.005585,0.006997,0.249902,0,0);-ms-transform:matrix(0.199477,-0.005585,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199477,-0.005585,0.006997,0.249902,0,0);}
.m9e_c00322{transform:matrix(0.199542,-0.005587,0.006997,0.249902,0,0);-ms-transform:matrix(0.199542,-0.005587,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199542,-0.005587,0.006997,0.249902,0,0);}
.m91_c00322{transform:matrix(0.199842,-0.005596,0.006997,0.249902,0,0);-ms-transform:matrix(0.199842,-0.005596,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199842,-0.005596,0.006997,0.249902,0,0);}
.m37_c00322{transform:matrix(0.200022,-0.005601,0.006997,0.249902,0,0);-ms-transform:matrix(0.200022,-0.005601,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200022,-0.005601,0.006997,0.249902,0,0);}
.m8_c00322{transform:matrix(0.200741,-0.005621,0.006997,0.249902,0,0);-ms-transform:matrix(0.200741,-0.005621,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200741,-0.005621,0.006997,0.249902,0,0);}
.m3b_c00322{transform:matrix(0.201066,-0.005630,0.006997,0.249902,0,0);-ms-transform:matrix(0.201066,-0.005630,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201066,-0.005630,0.006997,0.249902,0,0);}
.ma5_c00322{transform:matrix(0.201351,-0.005638,0.006997,0.249902,0,0);-ms-transform:matrix(0.201351,-0.005638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201351,-0.005638,0.006997,0.249902,0,0);}
.m46_c00322{transform:matrix(0.201356,-0.005638,0.006997,0.249902,0,0);-ms-transform:matrix(0.201356,-0.005638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201356,-0.005638,0.006997,0.249902,0,0);}
.ma_c00322{transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);-ms-transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);}
.mb4_c00322{transform:matrix(0.201982,-0.004848,0.005998,0.249928,0,0);-ms-transform:matrix(0.201982,-0.004848,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201982,-0.004848,0.005998,0.249928,0,0);}
.m60_c00322{transform:matrix(0.202091,-0.005659,0.006997,0.249902,0,0);-ms-transform:matrix(0.202091,-0.005659,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202091,-0.005659,0.006997,0.249902,0,0);}
.m50_c00322{transform:matrix(0.202436,-0.005668,0.006997,0.249902,0,0);-ms-transform:matrix(0.202436,-0.005668,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202436,-0.005668,0.006997,0.249902,0,0);}
.m29_c00322{transform:matrix(0.202716,-0.005676,0.006997,0.249902,0,0);-ms-transform:matrix(0.202716,-0.005676,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202716,-0.005676,0.006997,0.249902,0,0);}
.ma7_c00322{transform:matrix(0.203225,-0.005690,0.006997,0.249902,0,0);-ms-transform:matrix(0.203225,-0.005690,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203225,-0.005690,0.006997,0.249902,0,0);}
.m30_c00322{transform:matrix(0.203315,-0.005693,0.006997,0.249902,0,0);-ms-transform:matrix(0.203315,-0.005693,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203315,-0.005693,0.006997,0.249902,0,0);}
.ma1_c00322{transform:matrix(0.203995,-0.005712,0.006997,0.249902,0,0);-ms-transform:matrix(0.203995,-0.005712,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203995,-0.005712,0.006997,0.249902,0,0);}
.m22_c00322{transform:matrix(0.204410,-0.005723,0.006997,0.249902,0,0);-ms-transform:matrix(0.204410,-0.005723,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204410,-0.005723,0.006997,0.249902,0,0);}
.m9f_c00322{transform:matrix(0.204430,-0.005724,0.006997,0.249902,0,0);-ms-transform:matrix(0.204430,-0.005724,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204430,-0.005724,0.006997,0.249902,0,0);}
.m34_c00322{transform:matrix(0.204700,-0.005732,0.006997,0.249902,0,0);-ms-transform:matrix(0.204700,-0.005732,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204700,-0.005732,0.006997,0.249902,0,0);}
.mab_c00322{transform:matrix(0.205719,-0.005760,0.006997,0.249902,0,0);-ms-transform:matrix(0.205719,-0.005760,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205719,-0.005760,0.006997,0.249902,0,0);}
.mc5_c00322{transform:matrix(0.206041,-0.004945,0.005998,0.249928,0,0);-ms-transform:matrix(0.206041,-0.004945,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206041,-0.004945,0.005998,0.249928,0,0);}
.mdb_c00322{transform:matrix(0.206196,-0.004949,0.005998,0.249928,0,0);-ms-transform:matrix(0.206196,-0.004949,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206196,-0.004949,0.005998,0.249928,0,0);}
.mc8_c00322{transform:matrix(0.206201,-0.004949,0.005998,0.249928,0,0);-ms-transform:matrix(0.206201,-0.004949,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206201,-0.004949,0.005998,0.249928,0,0);}
.m3_c00322{transform:matrix(0.206269,-0.005776,0.006997,0.249902,0,0);-ms-transform:matrix(0.206269,-0.005776,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206269,-0.005776,0.006997,0.249902,0,0);}
.mc1_c00322{transform:matrix(0.206321,-0.004952,0.005998,0.249928,0,0);-ms-transform:matrix(0.206321,-0.004952,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206321,-0.004952,0.005998,0.249928,0,0);}
.mb7_c00322{transform:matrix(0.206501,-0.004956,0.005998,0.249928,0,0);-ms-transform:matrix(0.206501,-0.004956,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206501,-0.004956,0.005998,0.249928,0,0);}
.mc4_c00322{transform:matrix(0.206635,-0.004959,0.005998,0.249928,0,0);-ms-transform:matrix(0.206635,-0.004959,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206635,-0.004959,0.005998,0.249928,0,0);}
.ma9_c00322{transform:matrix(0.206709,-0.005788,0.006997,0.249902,0,0);-ms-transform:matrix(0.206709,-0.005788,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206709,-0.005788,0.006997,0.249902,0,0);}
.m25_c00322{transform:matrix(0.206844,-0.005792,0.006997,0.249902,0,0);-ms-transform:matrix(0.206844,-0.005792,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206844,-0.005792,0.006997,0.249902,0,0);}
.mc3_c00322{transform:matrix(0.207145,-0.004971,0.005998,0.249928,0,0);-ms-transform:matrix(0.207145,-0.004971,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207145,-0.004971,0.005998,0.249928,0,0);}
.mcc_c00322{transform:matrix(0.207260,-0.004974,0.005998,0.249928,0,0);-ms-transform:matrix(0.207260,-0.004974,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207260,-0.004974,0.005998,0.249928,0,0);}
.mbd_c00322{transform:matrix(0.207330,-0.004976,0.005998,0.249928,0,0);-ms-transform:matrix(0.207330,-0.004976,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207330,-0.004976,0.005998,0.249928,0,0);}
.m17_c00322{transform:matrix(0.207879,-0.005821,0.006997,0.249902,0,0);-ms-transform:matrix(0.207879,-0.005821,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207879,-0.005821,0.006997,0.249902,0,0);}
.m54_c00322{transform:matrix(0.208063,-0.005826,0.006997,0.249902,0,0);-ms-transform:matrix(0.208063,-0.005826,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208063,-0.005826,0.006997,0.249902,0,0);}
.m64_c00322{transform:matrix(0.209338,-0.005861,0.006997,0.249902,0,0);-ms-transform:matrix(0.209338,-0.005861,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209338,-0.005861,0.006997,0.249902,0,0);}
.m36_c00322{transform:matrix(0.209393,-0.005863,0.006997,0.249902,0,0);-ms-transform:matrix(0.209393,-0.005863,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209393,-0.005863,0.006997,0.249902,0,0);}
.m8d_c00322{transform:matrix(0.209403,-0.005863,0.006997,0.249902,0,0);-ms-transform:matrix(0.209403,-0.005863,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209403,-0.005863,0.006997,0.249902,0,0);}
.m24_c00322{transform:matrix(0.210433,-0.005892,0.006997,0.249902,0,0);-ms-transform:matrix(0.210433,-0.005892,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210433,-0.005892,0.006997,0.249902,0,0);}
.maf_c00322{transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);-ms-transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);}
.m53_c00322{transform:matrix(0.210787,-0.005902,0.006997,0.249902,0,0);-ms-transform:matrix(0.210787,-0.005902,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210787,-0.005902,0.006997,0.249902,0,0);}
.m6b_c00322{transform:matrix(0.211202,-0.005914,0.006997,0.249902,0,0);-ms-transform:matrix(0.211202,-0.005914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211202,-0.005914,0.006997,0.249902,0,0);}
.mce_c00322{transform:matrix(0.211474,-0.005075,0.005998,0.249928,0,0);-ms-transform:matrix(0.211474,-0.005075,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211474,-0.005075,0.005998,0.249928,0,0);}
.m12_c00322{transform:matrix(0.211602,-0.005925,0.006997,0.249902,0,0);-ms-transform:matrix(0.211602,-0.005925,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211602,-0.005925,0.006997,0.249902,0,0);}
.m15_c00322{transform:matrix(0.211717,-0.005928,0.006997,0.249902,0,0);-ms-transform:matrix(0.211717,-0.005928,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211717,-0.005928,0.006997,0.249902,0,0);}
.m45_c00322{transform:matrix(0.211927,-0.005934,0.006997,0.249902,0,0);-ms-transform:matrix(0.211927,-0.005934,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211927,-0.005934,0.006997,0.249902,0,0);}
.m80_c00322{transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);-ms-transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);}
.md6_c00322{transform:matrix(0.212964,-0.005111,0.005998,0.249928,0,0);-ms-transform:matrix(0.212964,-0.005111,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212964,-0.005111,0.005998,0.249928,0,0);}
.m20_c00322{transform:matrix(0.214216,-0.005998,0.006997,0.249902,0,0);-ms-transform:matrix(0.214216,-0.005998,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214216,-0.005998,0.006997,0.249902,0,0);}
.m21_c00322{transform:matrix(0.214256,-0.005999,0.006997,0.249902,0,0);-ms-transform:matrix(0.214256,-0.005999,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214256,-0.005999,0.006997,0.249902,0,0);}
.m4f_c00322{transform:matrix(0.214531,-0.006007,0.006997,0.249902,0,0);-ms-transform:matrix(0.214531,-0.006007,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214531,-0.006007,0.006997,0.249902,0,0);}
.m87_c00322{transform:matrix(0.214541,-0.006007,0.006997,0.249902,0,0);-ms-transform:matrix(0.214541,-0.006007,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214541,-0.006007,0.006997,0.249902,0,0);}
.m98_c00322{transform:matrix(0.214611,-0.006009,0.006997,0.249902,0,0);-ms-transform:matrix(0.214611,-0.006009,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214611,-0.006009,0.006997,0.249902,0,0);}
.m3e_c00322{transform:matrix(0.214651,-0.006010,0.006997,0.249902,0,0);-ms-transform:matrix(0.214651,-0.006010,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214651,-0.006010,0.006997,0.249902,0,0);}
.m27_c00322{transform:matrix(0.215231,-0.006026,0.006997,0.249902,0,0);-ms-transform:matrix(0.215231,-0.006026,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215231,-0.006026,0.006997,0.249902,0,0);}
.mdd_c00322{transform:matrix(0.215293,-0.005167,0.005998,0.249928,0,0);-ms-transform:matrix(0.215293,-0.005167,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215293,-0.005167,0.005998,0.249928,0,0);}
.mcf_c00322{transform:matrix(0.215463,-0.005171,0.005998,0.249928,0,0);-ms-transform:matrix(0.215463,-0.005171,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215463,-0.005171,0.005998,0.249928,0,0);}
.m88_c00322{transform:matrix(0.215950,-0.006047,0.006997,0.249902,0,0);-ms-transform:matrix(0.215950,-0.006047,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215950,-0.006047,0.006997,0.249902,0,0);}
.m6_c00322{transform:matrix(0.216050,-0.006049,0.006997,0.249902,0,0);-ms-transform:matrix(0.216050,-0.006049,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216050,-0.006049,0.006997,0.249902,0,0);}
.m4d_c00322{transform:matrix(0.216065,-0.006050,0.006997,0.249902,0,0);-ms-transform:matrix(0.216065,-0.006050,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216065,-0.006050,0.006997,0.249902,0,0);}
.m44_c00322{transform:matrix(0.216610,-0.006065,0.006997,0.249902,0,0);-ms-transform:matrix(0.216610,-0.006065,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216610,-0.006065,0.006997,0.249902,0,0);}
.mc0_c00322{transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);-ms-transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216643,-0.005199,0.005998,0.249928,0,0);}
.m4a_c00322{transform:matrix(0.217320,-0.006085,0.006997,0.249902,0,0);-ms-transform:matrix(0.217320,-0.006085,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217320,-0.006085,0.006997,0.249902,0,0);}
.mcb_c00322{transform:matrix(0.217617,-0.005223,0.005998,0.249928,0,0);-ms-transform:matrix(0.217617,-0.005223,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217617,-0.005223,0.005998,0.249928,0,0);}
.mb3_c00322{transform:matrix(0.217687,-0.005224,0.005998,0.249928,0,0);-ms-transform:matrix(0.217687,-0.005224,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217687,-0.005224,0.005998,0.249928,0,0);}
.m72_c00322{transform:matrix(0.218209,-0.006110,0.006997,0.249902,0,0);-ms-transform:matrix(0.218209,-0.006110,0.006997,0.249902,0,0);-webkit-transform:matrix(0.218209,-0.006110,0.006997,0.249902,0,0);}
.m1a_c00322{transform:matrix(0.219029,-0.006133,0.006997,0.249902,0,0);-ms-transform:matrix(0.219029,-0.006133,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219029,-0.006133,0.006997,0.249902,0,0);}
.ma4_c00322{transform:matrix(0.220014,-0.006160,0.006997,0.249902,0,0);-ms-transform:matrix(0.220014,-0.006160,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220014,-0.006160,0.006997,0.249902,0,0);}
.m1d_c00322{transform:matrix(0.220309,-0.006169,0.006997,0.249902,0,0);-ms-transform:matrix(0.220309,-0.006169,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220309,-0.006169,0.006997,0.249902,0,0);}
.md4_c00322{transform:matrix(0.220651,-0.005296,0.005998,0.249928,0,0);-ms-transform:matrix(0.220651,-0.005296,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220651,-0.005296,0.005998,0.249928,0,0);}
.m63_c00322{transform:matrix(0.220674,-0.006179,0.006997,0.249902,0,0);-ms-transform:matrix(0.220674,-0.006179,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220674,-0.006179,0.006997,0.249902,0,0);}
.m1b_c00322{transform:matrix(0.220718,-0.006180,0.006997,0.249902,0,0);-ms-transform:matrix(0.220718,-0.006180,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220718,-0.006180,0.006997,0.249902,0,0);}
.md7_c00322{transform:matrix(0.221086,-0.005306,0.005998,0.249928,0,0);-ms-transform:matrix(0.221086,-0.005306,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221086,-0.005306,0.005998,0.249928,0,0);}
.ma3_c00322{transform:matrix(0.221713,-0.006208,0.006997,0.249902,0,0);-ms-transform:matrix(0.221713,-0.006208,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221713,-0.006208,0.006997,0.249902,0,0);}
.mbc_c00322{transform:matrix(0.221776,-0.005323,0.005998,0.249928,0,0);-ms-transform:matrix(0.221776,-0.005323,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221776,-0.005323,0.005998,0.249928,0,0);}
.m40_c00322{transform:matrix(0.221968,-0.006215,0.006997,0.249902,0,0);-ms-transform:matrix(0.221968,-0.006215,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221968,-0.006215,0.006997,0.249902,0,0);}
.me2_c00322{transform:matrix(0.222251,-0.005334,0.005998,0.249928,0,0);-ms-transform:matrix(0.222251,-0.005334,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222251,-0.005334,0.005998,0.249928,0,0);}
.m5f_c00322{transform:matrix(0.222618,-0.006233,0.006997,0.249902,0,0);-ms-transform:matrix(0.222618,-0.006233,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222618,-0.006233,0.006997,0.249902,0,0);}
.mc_c00322{transform:matrix(0.222658,-0.006234,0.006997,0.249902,0,0);-ms-transform:matrix(0.222658,-0.006234,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222658,-0.006234,0.006997,0.249902,0,0);}
.m5c_c00322{transform:matrix(0.222968,-0.006243,0.006997,0.249902,0,0);-ms-transform:matrix(0.222968,-0.006243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222968,-0.006243,0.006997,0.249902,0,0);}
.md9_c00322{transform:matrix(0.223296,-0.005359,0.005998,0.249928,0,0);-ms-transform:matrix(0.223296,-0.005359,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223296,-0.005359,0.005998,0.249928,0,0);}
.m3f_c00322{transform:matrix(0.223387,-0.006255,0.006997,0.249902,0,0);-ms-transform:matrix(0.223387,-0.006255,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223387,-0.006255,0.006997,0.249902,0,0);}
.m51_c00322{transform:matrix(0.223717,-0.006264,0.006997,0.249902,0,0);-ms-transform:matrix(0.223717,-0.006264,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223717,-0.006264,0.006997,0.249902,0,0);}
.ma2_c00322{transform:matrix(0.223902,-0.006269,0.006997,0.249902,0,0);-ms-transform:matrix(0.223902,-0.006269,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223902,-0.006269,0.006997,0.249902,0,0);}
.m35_c00322{transform:matrix(0.224007,-0.006272,0.006997,0.249902,0,0);-ms-transform:matrix(0.224007,-0.006272,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224007,-0.006272,0.006997,0.249902,0,0);}
.mc9_c00322{transform:matrix(0.224335,-0.005384,0.005998,0.249928,0,0);-ms-transform:matrix(0.224335,-0.005384,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224335,-0.005384,0.005998,0.249928,0,0);}
.m43_c00322{transform:matrix(0.224477,-0.006285,0.006997,0.249902,0,0);-ms-transform:matrix(0.224477,-0.006285,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224477,-0.006285,0.006997,0.249902,0,0);}
.m77_c00322{transform:matrix(0.225886,-0.006325,0.006997,0.249902,0,0);-ms-transform:matrix(0.225886,-0.006325,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225886,-0.006325,0.006997,0.249902,0,0);}
.m1c_c00322{transform:matrix(0.226071,-0.006330,0.006997,0.249902,0,0);-ms-transform:matrix(0.226071,-0.006330,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226071,-0.006330,0.006997,0.249902,0,0);}
.m23_c00322{transform:matrix(0.227556,-0.006372,0.006997,0.249902,0,0);-ms-transform:matrix(0.227556,-0.006372,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227556,-0.006372,0.006997,0.249902,0,0);}
.mb0_c00322{transform:matrix(0.228869,-0.005493,0.005998,0.249928,0,0);-ms-transform:matrix(0.228869,-0.005493,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228869,-0.005493,0.005998,0.249928,0,0);}
.m2c_c00322{transform:matrix(0.228960,-0.006411,0.006997,0.249902,0,0);-ms-transform:matrix(0.228960,-0.006411,0.006997,0.249902,0,0);-webkit-transform:matrix(0.228960,-0.006411,0.006997,0.249902,0,0);}
.m74_c00322{transform:matrix(0.229020,-0.006413,0.006997,0.249902,0,0);-ms-transform:matrix(0.229020,-0.006413,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229020,-0.006413,0.006997,0.249902,0,0);}
.m2_c00322{transform:matrix(0.229200,-0.006418,0.006997,0.249902,0,0);-ms-transform:matrix(0.229200,-0.006418,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229200,-0.006418,0.006997,0.249902,0,0);}
.m47_c00322{transform:matrix(0.229845,-0.006436,0.006997,0.249902,0,0);-ms-transform:matrix(0.229845,-0.006436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229845,-0.006436,0.006997,0.249902,0,0);}
.md8_c00322{transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);-ms-transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);}
.mb1_c00322{transform:matrix(0.230294,-0.005527,0.005998,0.249928,0,0);-ms-transform:matrix(0.230294,-0.005527,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230294,-0.005527,0.005998,0.249928,0,0);}
.m1e_c00322{transform:matrix(0.231109,-0.006471,0.006997,0.249902,0,0);-ms-transform:matrix(0.231109,-0.006471,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231109,-0.006471,0.006997,0.249902,0,0);}
.md2_c00322{transform:matrix(0.231113,-0.005547,0.005998,0.249928,0,0);-ms-transform:matrix(0.231113,-0.005547,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231113,-0.005547,0.005998,0.249928,0,0);}
.m49_c00322{transform:matrix(0.231129,-0.006472,0.006997,0.249902,0,0);-ms-transform:matrix(0.231129,-0.006472,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231129,-0.006472,0.006997,0.249902,0,0);}
.m52_c00322{transform:matrix(0.231759,-0.006489,0.006997,0.249902,0,0);-ms-transform:matrix(0.231759,-0.006489,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231759,-0.006489,0.006997,0.249902,0,0);}
.m28_c00322{transform:matrix(0.232809,-0.006519,0.006997,0.249902,0,0);-ms-transform:matrix(0.232809,-0.006519,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232809,-0.006519,0.006997,0.249902,0,0);}
.mbf_c00322{transform:matrix(0.232888,-0.005589,0.005998,0.249928,0,0);-ms-transform:matrix(0.232888,-0.005589,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232888,-0.005589,0.005998,0.249928,0,0);}
.md3_c00322{transform:matrix(0.232993,-0.005592,0.005998,0.249928,0,0);-ms-transform:matrix(0.232993,-0.005592,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232993,-0.005592,0.005998,0.249928,0,0);}
.m5b_c00322{transform:matrix(0.233019,-0.006525,0.006997,0.249902,0,0);-ms-transform:matrix(0.233019,-0.006525,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233019,-0.006525,0.006997,0.249902,0,0);}
.m42_c00322{transform:matrix(0.238517,-0.006678,0.006997,0.249902,0,0);-ms-transform:matrix(0.238517,-0.006678,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238517,-0.006678,0.006997,0.249902,0,0);}
.me5_c00322{transform:matrix(0.240016,-0.005760,0.005998,0.249928,0,0);-ms-transform:matrix(0.240016,-0.005760,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240016,-0.005760,0.005998,0.249928,0,0);}
.m48_c00322{transform:matrix(0.240311,-0.006729,0.006997,0.249902,0,0);-ms-transform:matrix(0.240311,-0.006729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.240311,-0.006729,0.006997,0.249902,0,0);}
.m73_c00322{transform:matrix(0.244009,-0.006832,0.006997,0.249902,0,0);-ms-transform:matrix(0.244009,-0.006832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.244009,-0.006832,0.006997,0.249902,0,0);}
.me3_c00322{transform:matrix(0.244849,-0.005876,0.005998,0.249928,0,0);-ms-transform:matrix(0.244849,-0.005876,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244849,-0.005876,0.005998,0.249928,0,0);}
.mdf_c00322{transform:matrix(0.257941,-0.006191,0.005998,0.249928,0,0);-ms-transform:matrix(0.257941,-0.006191,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257941,-0.006191,0.005998,0.249928,0,0);}
.m19_c00322{transform:matrix(0.260953,-0.007307,0.006997,0.249902,0,0);-ms-transform:matrix(0.260953,-0.007307,0.006997,0.249902,0,0);-webkit-transform:matrix(0.260953,-0.007307,0.006997,0.249902,0,0);}
.m68_c00322{transform:matrix(0.264796,-0.007414,0.006997,0.249902,0,0);-ms-transform:matrix(0.264796,-0.007414,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264796,-0.007414,0.006997,0.249902,0,0);}
.m65_c00322{transform:matrix(0.265556,-0.007436,0.006997,0.249902,0,0);-ms-transform:matrix(0.265556,-0.007436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265556,-0.007436,0.006997,0.249902,0,0);}
.m41_c00322{transform:matrix(0.265971,-0.007447,0.006997,0.249902,0,0);-ms-transform:matrix(0.265971,-0.007447,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265971,-0.007447,0.006997,0.249902,0,0);}
.mba_c00322{transform:matrix(0.266033,-0.006385,0.005998,0.249928,0,0);-ms-transform:matrix(0.266033,-0.006385,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266033,-0.006385,0.005998,0.249928,0,0);}
.mde_c00322{transform:matrix(0.268703,-0.006449,0.005998,0.249928,0,0);-ms-transform:matrix(0.268703,-0.006449,0.005998,0.249928,0,0);-webkit-transform:matrix(0.268703,-0.006449,0.005998,0.249928,0,0);}
.m62_c00322{transform:matrix(0.275402,-0.007711,0.006997,0.249902,0,0);-ms-transform:matrix(0.275402,-0.007711,0.006997,0.249902,0,0);-webkit-transform:matrix(0.275402,-0.007711,0.006997,0.249902,0,0);}
.m18_c00322{transform:matrix(0.277351,-0.007766,0.006997,0.249902,0,0);-ms-transform:matrix(0.277351,-0.007766,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277351,-0.007766,0.006997,0.249902,0,0);}
.mc2_c00322{transform:matrix(0.280439,-0.006731,0.005998,0.249928,0,0);-ms-transform:matrix(0.280439,-0.006731,0.005998,0.249928,0,0);-webkit-transform:matrix(0.280439,-0.006731,0.005998,0.249928,0,0);}
.me1_c00322{transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);-ms-transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);-webkit-transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);}
.m66_c00322{transform:matrix(0.285693,-0.007999,0.006997,0.249902,0,0);-ms-transform:matrix(0.285693,-0.007999,0.006997,0.249902,0,0);-webkit-transform:matrix(0.285693,-0.007999,0.006997,0.249902,0,0);}
.m61_c00322{transform:matrix(0.312498,-0.008750,0.006997,0.249902,0,0);-ms-transform:matrix(0.312498,-0.008750,0.006997,0.249902,0,0);-webkit-transform:matrix(0.312498,-0.008750,0.006997,0.249902,0,0);}
.me0_c00322{transform:matrix(0.332354,-0.007977,0.005998,0.249928,0,0);-ms-transform:matrix(0.332354,-0.007977,0.005998,0.249928,0,0);-webkit-transform:matrix(0.332354,-0.007977,0.005998,0.249928,0,0);}
.mb9_c00322{transform:matrix(0.357682,-0.008584,0.005998,0.249928,0,0);-ms-transform:matrix(0.357682,-0.008584,0.005998,0.249928,0,0);-webkit-transform:matrix(0.357682,-0.008584,0.005998,0.249928,0,0);}
.mb8_c00322{transform:matrix(0.375902,-0.009022,0.005998,0.249928,0,0);-ms-transform:matrix(0.375902,-0.009022,0.005998,0.249928,0,0);-webkit-transform:matrix(0.375902,-0.009022,0.005998,0.249928,0,0);}
.ma6_c00322{transform:matrix(0.461939,-0.012934,0.006997,0.249902,0,0);-ms-transform:matrix(0.461939,-0.012934,0.006997,0.249902,0,0);-webkit-transform:matrix(0.461939,-0.012934,0.006997,0.249902,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:0.000000px;}
.fc0_c00322{color:transparent;}
.fs8_c00322{font-size:54.621399px;}
.fs10_c00322{font-size:57.766630px;}
.fs4_c00322{font-size:57.772634px;}
.fs12_c00322{font-size:58.816932px;}
.fs5_c00322{font-size:58.823045px;}
.fsf_c00322{font-size:59.867234px;}
.fs1_c00322{font-size:59.873457px;}
.fs11_c00322{font-size:60.917537px;}
.fs3_c00322{font-size:60.923868px;}
.fs13_c00322{font-size:61.967839px;}
.fs2_c00322{font-size:61.974280px;}
.fs14_c00322{font-size:63.018141px;}
.fs7_c00322{font-size:63.024691px;}
.fse_c00322{font-size:65.118746px;}
.fs6_c00322{font-size:65.125514px;}
.fsc_c00322{font-size:66.175926px;}
.fsa_c00322{font-size:67.226337px;}
.fs9_c00322{font-size:68.276749px;}
.fsd_c00322{font-size:69.327160px;}
.fs15_c00322{font-size:71.420560px;}
.fsb_c00322{font-size:71.427983px;}
.fs0_c00322{font-size:85.083333px;}
.y0_c00322{bottom:0.000000px;}
.yeb_c00322{bottom:31.946736px;}
.yed_c00322{bottom:31.946844px;}
.yea_c00322{bottom:31.947120px;}
.yec_c00322{bottom:31.947192px;}
.ye9_c00322{bottom:31.947624px;}
.ye1_c00322{bottom:45.050772px;}
.ye2_c00322{bottom:45.720924px;}
.ye3_c00322{bottom:46.377996px;}
.ye4_c00322{bottom:46.837524px;}
.ye5_c00322{bottom:48.760752px;}
.ye6_c00322{bottom:49.405344px;}
.ye7_c00322{bottom:49.667364px;}
.ye8_c00322{bottom:50.291088px;}
.ydb_c00322{bottom:63.151164px;}
.ydc_c00322{bottom:63.578184px;}
.ydd_c00322{bottom:64.251444px;}
.yde_c00322{bottom:65.207964px;}
.ydf_c00322{bottom:66.729288px;}
.ye0_c00322{bottom:67.766520px;}
.yd3_c00322{bottom:82.057800px;}
.yd4_c00322{bottom:82.319784px;}
.yd5_c00322{bottom:82.422984px;}
.yd6_c00322{bottom:83.049048px;}
.yd7_c00322{bottom:83.428524px;}
.yd8_c00322{bottom:84.048180px;}
.yd9_c00322{bottom:85.257792px;}
.yda_c00322{bottom:85.456884px;}
.ycc_c00322{bottom:98.262360px;}
.ycd_c00322{bottom:99.302796px;}
.yce_c00322{bottom:99.652944px;}
.ycf_c00322{bottom:100.590336px;}
.yd0_c00322{bottom:102.089472px;}
.yd1_c00322{bottom:102.550560px;}
.yd2_c00322{bottom:103.060560px;}
.yc6_c00322{bottom:112.845960px;}
.yc7_c00322{bottom:113.299764px;}
.yc8_c00322{bottom:114.120564px;}
.yc9_c00322{bottom:114.829284px;}
.yca_c00322{bottom:115.884648px;}
.ycb_c00322{bottom:116.712240px;}
.ybf_c00322{bottom:129.598068px;}
.yc0_c00322{bottom:131.510400px;}
.yc1_c00322{bottom:133.222548px;}
.yc2_c00322{bottom:133.815228px;}
.yc3_c00322{bottom:135.266064px;}
.yc4_c00322{bottom:135.834864px;}
.yc5_c00322{bottom:137.422524px;}
.yb6_c00322{bottom:147.147972px;}
.yb7_c00322{bottom:147.505920px;}
.yb8_c00322{bottom:147.821064px;}
.yb9_c00322{bottom:148.853856px;}
.yba_c00322{bottom:149.787216px;}
.ybb_c00322{bottom:150.051576px;}
.ybc_c00322{bottom:151.032216px;}
.ybd_c00322{bottom:151.239720px;}
.ybe_c00322{bottom:151.562208px;}
.yb1_c00322{bottom:163.629000px;}
.yb2_c00322{bottom:164.974572px;}
.yb3_c00322{bottom:166.328820px;}
.yb4_c00322{bottom:168.024240px;}
.yb5_c00322{bottom:168.832512px;}
.ya9_c00322{bottom:180.484956px;}
.yaa_c00322{bottom:181.575870px;}
.yab_c00322{bottom:182.787582px;}
.yac_c00322{bottom:183.240504px;}
.yad_c00322{bottom:184.246560px;}
.yae_c00322{bottom:184.725894px;}
.yaf_c00322{bottom:186.272670px;}
.yb0_c00322{bottom:186.956568px;}
.ya2_c00322{bottom:197.504676px;}
.ya3_c00322{bottom:198.819330px;}
.ya4_c00322{bottom:199.266360px;}
.ya5_c00322{bottom:200.464566px;}
.ya6_c00322{bottom:201.137490px;}
.ya7_c00322{bottom:202.402374px;}
.ya8_c00322{bottom:203.013030px;}
.y9b_c00322{bottom:214.248450px;}
.y9c_c00322{bottom:214.744776px;}
.y9d_c00322{bottom:215.391672px;}
.y9e_c00322{bottom:216.586962px;}
.y9f_c00322{bottom:217.064106px;}
.ya0_c00322{bottom:217.433880px;}
.ya1_c00322{bottom:218.702292px;}
.y94_c00322{bottom:231.538182px;}
.y95_c00322{bottom:232.638444px;}
.y96_c00322{bottom:233.049096px;}
.y97_c00322{bottom:233.887026px;}
.y98_c00322{bottom:234.988056px;}
.y99_c00322{bottom:235.334232px;}
.y9a_c00322{bottom:235.885566px;}
.y8c_c00322{bottom:248.556264px;}
.y8d_c00322{bottom:248.957736px;}
.y8e_c00322{bottom:249.274650px;}
.y8f_c00322{bottom:250.196664px;}
.y90_c00322{bottom:251.848470px;}
.y91_c00322{bottom:252.292164px;}
.y92_c00322{bottom:253.018584px;}
.y93_c00322{bottom:254.055564px;}
.y83_c00322{bottom:267.191070px;}
.y84_c00322{bottom:267.667206px;}
.y85_c00322{bottom:268.091166px;}
.y86_c00322{bottom:269.147256px;}
.y87_c00322{bottom:269.440836px;}
.y88_c00322{bottom:269.931084px;}
.y89_c00322{bottom:270.776892px;}
.y8a_c00322{bottom:271.314492px;}
.y8b_c00322{bottom:271.507848px;}
.y7b_c00322{bottom:283.676190px;}
.y7c_c00322{bottom:285.077346px;}
.y7d_c00322{bottom:285.707094px;}
.y7e_c00322{bottom:286.249998px;}
.y7f_c00322{bottom:286.801506px;}
.y80_c00322{bottom:287.222244px;}
.y81_c00322{bottom:288.570042px;}
.y82_c00322{bottom:288.990150px;}
.y74_c00322{bottom:301.761552px;}
.y75_c00322{bottom:302.311554px;}
.y76_c00322{bottom:303.055776px;}
.y77_c00322{bottom:303.892596px;}
.y78_c00322{bottom:304.786044px;}
.y79_c00322{bottom:305.512164px;}
.y7a_c00322{bottom:305.827674px;}
.y6c_c00322{bottom:318.778746px;}
.y6d_c00322{bottom:319.061532px;}
.y6e_c00322{bottom:319.916874px;}
.y6f_c00322{bottom:320.160210px;}
.y70_c00322{bottom:320.413212px;}
.y71_c00322{bottom:321.890868px;}
.y72_c00322{bottom:322.414962px;}
.y73_c00322{bottom:323.349876px;}
.y63_c00322{bottom:334.444386px;}
.y64_c00322{bottom:335.428956px;}
.y65_c00322{bottom:335.836560px;}
.y66_c00322{bottom:336.848250px;}
.y67_c00322{bottom:337.221894px;}
.y68_c00322{bottom:338.562030px;}
.y69_c00322{bottom:338.887134px;}
.y6a_c00322{bottom:339.642912px;}
.y6b_c00322{bottom:340.008972px;}
.y5e_c00322{bottom:349.844784px;}
.y5f_c00322{bottom:352.853748px;}
.y60_c00322{bottom:354.441768px;}
.y61_c00322{bottom:355.100916px;}
.y62_c00322{bottom:356.757186px;}
.y56_c00322{bottom:366.860718px;}
.y57_c00322{bottom:368.251686px;}
.y58_c00322{bottom:368.672460px;}
.y59_c00322{bottom:369.729786px;}
.y5a_c00322{bottom:370.229238px;}
.y5b_c00322{bottom:370.824288px;}
.y5c_c00322{bottom:371.961522px;}
.y5d_c00322{bottom:372.985548px;}
.y4e_c00322{bottom:384.143586px;}
.y4f_c00322{bottom:384.576678px;}
.y50_c00322{bottom:385.815810px;}
.y51_c00322{bottom:386.756904px;}
.y52_c00322{bottom:387.451164px;}
.y53_c00322{bottom:389.279046px;}
.y54_c00322{bottom:389.779044px;}
.y55_c00322{bottom:390.893532px;}
.y46_c00322{bottom:399.541470px;}
.y47_c00322{bottom:400.604592px;}
.y48_c00322{bottom:401.137980px;}
.y49_c00322{bottom:402.885570px;}
.y4a_c00322{bottom:403.253598px;}
.y4b_c00322{bottom:403.874286px;}
.y4c_c00322{bottom:405.339888px;}
.y4d_c00322{bottom:407.174568px;}
.y40_c00322{bottom:418.442394px;}
.y41_c00322{bottom:419.523234px;}
.y42_c00322{bottom:421.570596px;}
.y43_c00322{bottom:422.071458px;}
.y44_c00322{bottom:423.083316px;}
.y45_c00322{bottom:423.456792px;}
.y39_c00322{bottom:433.302552px;}
.y3a_c00322{bottom:433.786314px;}
.y3b_c00322{bottom:435.356814px;}
.y3c_c00322{bottom:436.097688px;}
.y3d_c00322{bottom:437.193426px;}
.y3e_c00322{bottom:437.719926px;}
.y3f_c00322{bottom:439.138806px;}
.y32_c00322{bottom:451.130010px;}
.y33_c00322{bottom:452.196024px;}
.y34_c00322{bottom:452.689404px;}
.y35_c00322{bottom:453.034560px;}
.y36_c00322{bottom:454.917972px;}
.y37_c00322{bottom:456.813660px;}
.y38_c00322{bottom:457.109250px;}
.y2a_c00322{bottom:468.417228px;}
.y2b_c00322{bottom:469.345284px;}
.y2c_c00322{bottom:470.094054px;}
.y2d_c00322{bottom:471.622482px;}
.y2e_c00322{bottom:471.951204px;}
.y2f_c00322{bottom:472.522014px;}
.y30_c00322{bottom:474.019020px;}
.y31_c00322{bottom:474.625086px;}
.y23_c00322{bottom:486.512358px;}
.y24_c00322{bottom:487.079190px;}
.y25_c00322{bottom:488.242074px;}
.y26_c00322{bottom:488.696172px;}
.y27_c00322{bottom:489.504942px;}
.y28_c00322{bottom:490.056618px;}
.y29_c00322{bottom:491.390520px;}
.y1c_c00322{bottom:503.529996px;}
.y1d_c00322{bottom:505.143546px;}
.y1e_c00322{bottom:505.473696px;}
.y1f_c00322{bottom:506.429982px;}
.y20_c00322{bottom:507.579540px;}
.y21_c00322{bottom:508.000776px;}
.y22_c00322{bottom:509.972274px;}
.y14_c00322{bottom:520.548678px;}
.y15_c00322{bottom:521.175204px;}
.y16_c00322{bottom:521.702094px;}
.y17_c00322{bottom:523.350036px;}
.y18_c00322{bottom:523.978662px;}
.y19_c00322{bottom:525.248736px;}
.y1a_c00322{bottom:526.119438px;}
.y1b_c00322{bottom:526.605846px;}
.ya_c00322{bottom:536.489316px;}
.yb_c00322{bottom:537.191910px;}
.yc_c00322{bottom:537.767784px;}
.yd_c00322{bottom:538.611966px;}
.ye_c00322{bottom:539.003970px;}
.yf_c00322{bottom:539.549268px;}
.y10_c00322{bottom:540.099480px;}
.y11_c00322{bottom:541.989216px;}
.y12_c00322{bottom:542.736990px;}
.y13_c00322{bottom:543.517680px;}
.y3_c00322{bottom:552.696504px;}
.y4_c00322{bottom:554.534616px;}
.y5_c00322{bottom:556.211208px;}
.y6_c00322{bottom:557.539674px;}
.y7_c00322{bottom:558.092136px;}
.y8_c00322{bottom:559.842054px;}
.y9_c00322{bottom:560.579892px;}
.y1_c00322{bottom:569.713500px;}
.y2_c00322{bottom:573.527268px;}
.ha_c00322{height:54.621399px;}
.h12_c00322{height:57.766630px;}
.h6_c00322{height:57.772634px;}
.h14_c00322{height:58.816932px;}
.h7_c00322{height:58.823045px;}
.h11_c00322{height:59.867234px;}
.h3_c00322{height:59.873457px;}
.h13_c00322{height:60.917537px;}
.h5_c00322{height:60.923868px;}
.h15_c00322{height:61.967839px;}
.h4_c00322{height:61.974280px;}
.h16_c00322{height:63.018141px;}
.h9_c00322{height:63.024691px;}
.h10_c00322{height:65.118746px;}
.h8_c00322{height:65.125514px;}
.he_c00322{height:66.175926px;}
.hc_c00322{height:67.226337px;}
.hb_c00322{height:68.276749px;}
.hf_c00322{height:69.327160px;}
.h17_c00322{height:71.420560px;}
.hd_c00322{height:71.427983px;}
.h2_c00322{height:85.083333px;}
.h0_c00322{height:613.170000px;}
.h1_c00322{height:613.500000px;}
.w0_c00322{width:359.100000px;}
.w1_c00322{width:359.250000px;}
.x0_c00322{left:0.000000px;}
.x3_c00322{left:26.067384px;}
.x51_c00322{left:27.494670px;}
.xa_c00322{left:29.802756px;}
.x3a_c00322{left:30.968508px;}
.x5c_c00322{left:32.376582px;}
.x64_c00322{left:34.535598px;}
.x70_c00322{left:36.817200px;}
.x47_c00322{left:44.744670px;}
.x76_c00322{left:46.118364px;}
.x2c_c00322{left:48.619428px;}
.x5d_c00322{left:50.628648px;}
.x1d_c00322{left:52.573494px;}
.xb_c00322{left:54.037584px;}
.x6d_c00322{left:57.184884px;}
.x56_c00322{left:58.413792px;}
.x4c_c00322{left:60.136860px;}
.x77_c00322{left:62.537532px;}
.x73_c00322{left:63.940248px;}
.x5e_c00322{left:65.056584px;}
.x7b_c00322{left:66.402624px;}
.x23_c00322{left:69.818664px;}
.x27_c00322{left:72.880866px;}
.xc_c00322{left:73.907538px;}
.x14_c00322{left:75.565824px;}
.x6e_c00322{left:76.882164px;}
.x43_c00322{left:79.972338px;}
.x68_c00322{left:81.453510px;}
.x32_c00322{left:83.936148px;}
.x4_c00322{left:87.317940px;}
.x37_c00322{left:89.124096px;}
.x28_c00322{left:92.592504px;}
.x52_c00322{left:94.209732px;}
.x7c_c00322{left:97.720392px;}
.x19_c00322{left:99.832110px;}
.x4d_c00322{left:101.459910px;}
.xd_c00322{left:103.038240px;}
.x71_c00322{left:105.116148px;}
.x29_c00322{left:106.420680px;}
.x1e_c00322{left:107.937330px;}
.x2d_c00322{left:108.997788px;}
.x65_c00322{left:111.124308px;}
.x74_c00322{left:112.210848px;}
.x1a_c00322{left:114.196626px;}
.xe_c00322{left:116.555862px;}
.x48_c00322{left:119.825670px;}
.x53_c00322{left:124.206612px;}
.x7d_c00322{left:127.468668px;}
.x1f_c00322{left:129.570072px;}
.x78_c00322{left:131.873352px;}
.x69_c00322{left:134.164902px;}
.xf_c00322{left:135.333816px;}
.x2e_c00322{left:137.494884px;}
.x3b_c00322{left:139.849188px;}
.x15_c00322{left:141.497868px;}
.x5_c00322{left:143.228832px;}
.x57_c00322{left:145.478088px;}
.x4e_c00322{left:147.912888px;}
.x3d_c00322{left:150.115116px;}
.x10_c00322{left:154.287270px;}
.x1_c00322{left:156.550500px;}
.x62_c00322{left:160.825146px;}
.x58_c00322{left:162.718380px;}
.x79_c00322{left:165.202080px;}
.x16_c00322{left:166.629468px;}
.x20_c00322{left:168.105132px;}
.x44_c00322{left:169.525830px;}
.x3e_c00322{left:170.901426px;}
.x54_c00322{left:176.320818px;}
.x2f_c00322{left:179.630736px;}
.x2a_c00322{left:181.781022px;}
.x24_c00322{left:183.099498px;}
.x33_c00322{left:186.275538px;}
.x6_c00322{left:187.510854px;}
.x38_c00322{left:190.441410px;}
.x59_c00322{left:191.593284px;}
.x21_c00322{left:194.402298px;}
.x3f_c00322{left:195.691698px;}
.x4f_c00322{left:197.567790px;}
.x30_c00322{left:199.881870px;}
.x49_c00322{left:201.925644px;}
.x7_c00322{left:205.901304px;}
.x25_c00322{left:207.935484px;}
.x34_c00322{left:211.347666px;}
.x6f_c00322{left:216.284412px;}
.x17_c00322{left:217.404210px;}
.x6a_c00322{left:218.455704px;}
.x11_c00322{left:219.472464px;}
.x60_c00322{left:222.501450px;}
.x1b_c00322{left:224.071998px;}
.x7e_c00322{left:226.857372px;}
.x4a_c00322{left:231.044292px;}
.x75_c00322{left:233.773908px;}
.x5f_c00322{left:235.225644px;}
.x45_c00322{left:236.527824px;}
.x50_c00322{left:237.869046px;}
.x72_c00322{left:239.276796px;}
.x5a_c00322{left:241.369614px;}
.x40_c00322{left:243.062490px;}
.x6c_c00322{left:244.201500px;}
.x12_c00322{left:245.267250px;}
.x66_c00322{left:247.518918px;}
.x61_c00322{left:250.073124px;}
.x18_c00322{left:252.253650px;}
.x31_c00322{left:254.469936px;}
.x22_c00322{left:257.911230px;}
.x55_c00322{left:260.499282px;}
.x35_c00322{left:261.907464px;}
.x8_c00322{left:264.216528px;}
.x3c_c00322{left:265.743258px;}
.x2b_c00322{left:269.476914px;}
.x13_c00322{left:272.183994px;}
.x67_c00322{left:274.099656px;}
.x42_c00322{left:276.877368px;}
.x63_c00322{left:278.405574px;}
.x36_c00322{left:280.553622px;}
.x4b_c00322{left:282.984324px;}
.x5b_c00322{left:284.309802px;}
.x41_c00322{left:285.746778px;}
.x9_c00322{left:288.798642px;}
.x46_c00322{left:290.571420px;}
.x2_c00322{left:292.756500px;}
.x26_c00322{left:299.397294px;}
.x1c_c00322{left:309.762468px;}
.x39_c00322{left:312.651312px;}
.x6b_c00322{left:315.439770px;}
.x7a_c00322{left:325.089252px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
.fs8_c00322{font-size:48.552355pt;}
.fs10_c00322{font-size:51.348115pt;}
.fs4_c00322{font-size:51.353452pt;}
.fs12_c00322{font-size:52.281717pt;}
.fs5_c00322{font-size:52.287151pt;}
.fsf_c00322{font-size:53.215319pt;}
.fs1_c00322{font-size:53.220850pt;}
.fs11_c00322{font-size:54.148921pt;}
.fs3_c00322{font-size:54.154549pt;}
.fs13_c00322{font-size:55.082524pt;}
.fs2_c00322{font-size:55.088249pt;}
.fs14_c00322{font-size:56.016126pt;}
.fs7_c00322{font-size:56.021948pt;}
.fse_c00322{font-size:57.883330pt;}
.fs6_c00322{font-size:57.889346pt;}
.fsc_c00322{font-size:58.823045pt;}
.fsa_c00322{font-size:59.756744pt;}
.fs9_c00322{font-size:60.690443pt;}
.fsd_c00322{font-size:61.624142pt;}
.fs15_c00322{font-size:63.484942pt;}
.fsb_c00322{font-size:63.491541pt;}
.fs0_c00322{font-size:75.629629pt;}
.y0_c00322{bottom:0.000000pt;}
.yeb_c00322{bottom:28.397099pt;}
.yed_c00322{bottom:28.397195pt;}
.yea_c00322{bottom:28.397440pt;}
.yec_c00322{bottom:28.397504pt;}
.ye9_c00322{bottom:28.397888pt;}
.ye1_c00322{bottom:40.045131pt;}
.ye2_c00322{bottom:40.640821pt;}
.ye3_c00322{bottom:41.224885pt;}
.ye4_c00322{bottom:41.633355pt;}
.ye5_c00322{bottom:43.342891pt;}
.ye6_c00322{bottom:43.915861pt;}
.ye7_c00322{bottom:44.148768pt;}
.ye8_c00322{bottom:44.703189pt;}
.ydb_c00322{bottom:56.134368pt;}
.ydc_c00322{bottom:56.513941pt;}
.ydd_c00322{bottom:57.112395pt;}
.yde_c00322{bottom:57.962635pt;}
.ydf_c00322{bottom:59.314923pt;}
.ye0_c00322{bottom:60.236907pt;}
.yd3_c00322{bottom:72.940267pt;}
.yd4_c00322{bottom:73.173141pt;}
.yd5_c00322{bottom:73.264875pt;}
.yd6_c00322{bottom:73.821376pt;}
.yd7_c00322{bottom:74.158688pt;}
.yd8_c00322{bottom:74.709493pt;}
.yd9_c00322{bottom:75.784704pt;}
.yda_c00322{bottom:75.961675pt;}
.ycc_c00322{bottom:87.344320pt;}
.ycd_c00322{bottom:88.269152pt;}
.yce_c00322{bottom:88.580395pt;}
.ycf_c00322{bottom:89.413632pt;}
.yd0_c00322{bottom:90.746197pt;}
.yd1_c00322{bottom:91.156053pt;}
.yd2_c00322{bottom:91.609387pt;}
.yc6_c00322{bottom:100.307520pt;}
.yc7_c00322{bottom:100.710901pt;}
.yc8_c00322{bottom:101.440501pt;}
.yc9_c00322{bottom:102.070475pt;}
.yca_c00322{bottom:103.008576pt;}
.ycb_c00322{bottom:103.744213pt;}
.ybf_c00322{bottom:115.198283pt;}
.yc0_c00322{bottom:116.898133pt;}
.yc1_c00322{bottom:118.420043pt;}
.yc2_c00322{bottom:118.946869pt;}
.yc3_c00322{bottom:120.236501pt;}
.yc4_c00322{bottom:120.742101pt;}
.yc5_c00322{bottom:122.153355pt;}
.yb6_c00322{bottom:130.798197pt;}
.yb7_c00322{bottom:131.116373pt;}
.yb8_c00322{bottom:131.396501pt;}
.yb9_c00322{bottom:132.314539pt;}
.yba_c00322{bottom:133.144192pt;}
.ybb_c00322{bottom:133.379179pt;}
.ybc_c00322{bottom:134.250859pt;}
.ybd_c00322{bottom:134.435307pt;}
.ybe_c00322{bottom:134.721963pt;}
.yb1_c00322{bottom:145.448000pt;}
.yb2_c00322{bottom:146.644064pt;}
.yb3_c00322{bottom:147.847840pt;}
.yb4_c00322{bottom:149.354880pt;}
.yb5_c00322{bottom:150.073344pt;}
.ya9_c00322{bottom:160.431072pt;}
.yaa_c00322{bottom:161.400773pt;}
.yab_c00322{bottom:162.477851pt;}
.yac_c00322{bottom:162.880448pt;}
.yad_c00322{bottom:163.774720pt;}
.yae_c00322{bottom:164.200795pt;}
.yaf_c00322{bottom:165.575707pt;}
.yb0_c00322{bottom:166.183616pt;}
.ya2_c00322{bottom:175.559712pt;}
.ya3_c00322{bottom:176.728293pt;}
.ya4_c00322{bottom:177.125653pt;}
.ya5_c00322{bottom:178.190725pt;}
.ya6_c00322{bottom:178.788880pt;}
.ya7_c00322{bottom:179.913221pt;}
.ya8_c00322{bottom:180.456027pt;}
.y9b_c00322{bottom:190.443067pt;}
.y9c_c00322{bottom:190.884245pt;}
.y9d_c00322{bottom:191.459264pt;}
.y9e_c00322{bottom:192.521744pt;}
.y9f_c00322{bottom:192.945872pt;}
.ya0_c00322{bottom:193.274560pt;}
.ya1_c00322{bottom:194.402037pt;}
.y94_c00322{bottom:205.811717pt;}
.y95_c00322{bottom:206.789728pt;}
.y96_c00322{bottom:207.154752pt;}
.y97_c00322{bottom:207.899579pt;}
.y98_c00322{bottom:208.878272pt;}
.y99_c00322{bottom:209.185984pt;}
.y9a_c00322{bottom:209.676059pt;}
.y8c_c00322{bottom:220.938901pt;}
.y8d_c00322{bottom:221.295765pt;}
.y8e_c00322{bottom:221.577467pt;}
.y8f_c00322{bottom:222.397035pt;}
.y90_c00322{bottom:223.865307pt;}
.y91_c00322{bottom:224.259701pt;}
.y92_c00322{bottom:224.905408pt;}
.y93_c00322{bottom:225.827168pt;}
.y83_c00322{bottom:237.503173pt;}
.y84_c00322{bottom:237.926405pt;}
.y85_c00322{bottom:238.303259pt;}
.y86_c00322{bottom:239.242005pt;}
.y87_c00322{bottom:239.502965pt;}
.y88_c00322{bottom:239.938741pt;}
.y89_c00322{bottom:240.690571pt;}
.y8a_c00322{bottom:241.168437pt;}
.y8b_c00322{bottom:241.340309pt;}
.y7b_c00322{bottom:252.156613pt;}
.y7c_c00322{bottom:253.402085pt;}
.y7d_c00322{bottom:253.961861pt;}
.y7e_c00322{bottom:254.444443pt;}
.y7f_c00322{bottom:254.934672pt;}
.y80_c00322{bottom:255.308661pt;}
.y81_c00322{bottom:256.506704pt;}
.y82_c00322{bottom:256.880133pt;}
.y74_c00322{bottom:268.232491pt;}
.y75_c00322{bottom:268.721381pt;}
.y76_c00322{bottom:269.382912pt;}
.y77_c00322{bottom:270.126752pt;}
.y78_c00322{bottom:270.920928pt;}
.y79_c00322{bottom:271.566368pt;}
.y7a_c00322{bottom:271.846821pt;}
.y6c_c00322{bottom:283.358885pt;}
.y6d_c00322{bottom:283.610251pt;}
.y6e_c00322{bottom:284.370555pt;}
.y6f_c00322{bottom:284.586853pt;}
.y70_c00322{bottom:284.811744pt;}
.y71_c00322{bottom:286.125216pt;}
.y72_c00322{bottom:286.591077pt;}
.y73_c00322{bottom:287.422112pt;}
.y63_c00322{bottom:297.283899pt;}
.y64_c00322{bottom:298.159072pt;}
.y65_c00322{bottom:298.521387pt;}
.y66_c00322{bottom:299.420667pt;}
.y67_c00322{bottom:299.752795pt;}
.y68_c00322{bottom:300.944027pt;}
.y69_c00322{bottom:301.233008pt;}
.y6a_c00322{bottom:301.904811pt;}
.y6b_c00322{bottom:302.230197pt;}
.y5e_c00322{bottom:310.973141pt;}
.y5f_c00322{bottom:313.647776pt;}
.y60_c00322{bottom:315.059349pt;}
.y61_c00322{bottom:315.645259pt;}
.y62_c00322{bottom:317.117499pt;}
.y56_c00322{bottom:326.098416pt;}
.y57_c00322{bottom:327.334832pt;}
.y58_c00322{bottom:327.708853pt;}
.y59_c00322{bottom:328.648699pt;}
.y5a_c00322{bottom:329.092656pt;}
.y5b_c00322{bottom:329.621589pt;}
.y5c_c00322{bottom:330.632464pt;}
.y5d_c00322{bottom:331.542709pt;}
.y4e_c00322{bottom:341.460965pt;}
.y4f_c00322{bottom:341.845936pt;}
.y50_c00322{bottom:342.947387pt;}
.y51_c00322{bottom:343.783915pt;}
.y52_c00322{bottom:344.401035pt;}
.y53_c00322{bottom:346.025819pt;}
.y54_c00322{bottom:346.470261pt;}
.y55_c00322{bottom:347.460917pt;}
.y46_c00322{bottom:355.147973pt;}
.y47_c00322{bottom:356.092971pt;}
.y48_c00322{bottom:356.567093pt;}
.y49_c00322{bottom:358.120507pt;}
.y4a_c00322{bottom:358.447643pt;}
.y4b_c00322{bottom:358.999365pt;}
.y4c_c00322{bottom:360.302123pt;}
.y4d_c00322{bottom:361.932949pt;}
.y40_c00322{bottom:371.948795pt;}
.y41_c00322{bottom:372.909541pt;}
.y42_c00322{bottom:374.729419pt;}
.y43_c00322{bottom:375.174629pt;}
.y44_c00322{bottom:376.074059pt;}
.y45_c00322{bottom:376.406037pt;}
.y39_c00322{bottom:385.157824pt;}
.y3a_c00322{bottom:385.587835pt;}
.y3b_c00322{bottom:386.983835pt;}
.y3c_c00322{bottom:387.642389pt;}
.y3d_c00322{bottom:388.616379pt;}
.y3e_c00322{bottom:389.084379pt;}
.y3f_c00322{bottom:390.345605pt;}
.y32_c00322{bottom:401.004453pt;}
.y33_c00322{bottom:401.952021pt;}
.y34_c00322{bottom:402.390581pt;}
.y35_c00322{bottom:402.697387pt;}
.y36_c00322{bottom:404.371531pt;}
.y37_c00322{bottom:406.056587pt;}
.y38_c00322{bottom:406.319333pt;}
.y2a_c00322{bottom:416.370869pt;}
.y2b_c00322{bottom:417.195808pt;}
.y2c_c00322{bottom:417.861381pt;}
.y2d_c00322{bottom:419.219984pt;}
.y2e_c00322{bottom:419.512181pt;}
.y2f_c00322{bottom:420.019568pt;}
.y30_c00322{bottom:421.350240pt;}
.y31_c00322{bottom:421.888965pt;}
.y23_c00322{bottom:432.455429pt;}
.y24_c00322{bottom:432.959280pt;}
.y25_c00322{bottom:433.992955pt;}
.y26_c00322{bottom:434.396597pt;}
.y27_c00322{bottom:435.115504pt;}
.y28_c00322{bottom:435.605883pt;}
.y29_c00322{bottom:436.791573pt;}
.y1c_c00322{bottom:447.582219pt;}
.y1d_c00322{bottom:449.016485pt;}
.y1e_c00322{bottom:449.309952pt;}
.y1f_c00322{bottom:450.159984pt;}
.y20_c00322{bottom:451.181813pt;}
.y21_c00322{bottom:451.556245pt;}
.y22_c00322{bottom:453.308688pt;}
.y14_c00322{bottom:462.709936pt;}
.y15_c00322{bottom:463.266848pt;}
.y16_c00322{bottom:463.735195pt;}
.y17_c00322{bottom:465.200032pt;}
.y18_c00322{bottom:465.758811pt;}
.y19_c00322{bottom:466.887765pt;}
.y1a_c00322{bottom:467.661723pt;}
.y1b_c00322{bottom:468.094085pt;}
.ya_c00322{bottom:476.879392pt;}
.yb_c00322{bottom:477.503920pt;}
.yc_c00322{bottom:478.015808pt;}
.yd_c00322{bottom:478.766192pt;}
.ye_c00322{bottom:479.114640pt;}
.yf_c00322{bottom:479.599349pt;}
.y10_c00322{bottom:480.088427pt;}
.y11_c00322{bottom:481.768192pt;}
.y12_c00322{bottom:482.432880pt;}
.y13_c00322{bottom:483.126827pt;}
.y3_c00322{bottom:491.285781pt;}
.y4_c00322{bottom:492.919659pt;}
.y5_c00322{bottom:494.409963pt;}
.y6_c00322{bottom:495.590821pt;}
.y7_c00322{bottom:496.081899pt;}
.y8_c00322{bottom:497.637381pt;}
.y9_c00322{bottom:498.293237pt;}
.y1_c00322{bottom:506.412000pt;}
.y2_c00322{bottom:509.802016pt;}
.ha_c00322{height:48.552355pt;}
.h12_c00322{height:51.348115pt;}
.h6_c00322{height:51.353452pt;}
.h14_c00322{height:52.281717pt;}
.h7_c00322{height:52.287151pt;}
.h11_c00322{height:53.215319pt;}
.h3_c00322{height:53.220850pt;}
.h13_c00322{height:54.148921pt;}
.h5_c00322{height:54.154549pt;}
.h15_c00322{height:55.082524pt;}
.h4_c00322{height:55.088249pt;}
.h16_c00322{height:56.016126pt;}
.h9_c00322{height:56.021948pt;}
.h10_c00322{height:57.883330pt;}
.h8_c00322{height:57.889346pt;}
.he_c00322{height:58.823045pt;}
.hc_c00322{height:59.756744pt;}
.hb_c00322{height:60.690443pt;}
.hf_c00322{height:61.624142pt;}
.h17_c00322{height:63.484942pt;}
.hd_c00322{height:63.491541pt;}
.h2_c00322{height:75.629629pt;}
.h0_c00322{height:545.040000pt;}
.h1_c00322{height:545.333333pt;}
.w0_c00322{width:319.200000pt;}
.w1_c00322{width:319.333333pt;}
.x0_c00322{left:0.000000pt;}
.x3_c00322{left:23.171008pt;}
.x51_c00322{left:24.439707pt;}
.xa_c00322{left:26.491339pt;}
.x3a_c00322{left:27.527563pt;}
.x5c_c00322{left:28.779184pt;}
.x64_c00322{left:30.698309pt;}
.x70_c00322{left:32.726400pt;}
.x47_c00322{left:39.773040pt;}
.x76_c00322{left:40.994101pt;}
.x2c_c00322{left:43.217269pt;}
.x5d_c00322{left:45.003243pt;}
.x1d_c00322{left:46.731995pt;}
.xb_c00322{left:48.033408pt;}
.x6d_c00322{left:50.831008pt;}
.x56_c00322{left:51.923371pt;}
.x4c_c00322{left:53.454987pt;}
.x77_c00322{left:55.588917pt;}
.x73_c00322{left:56.835776pt;}
.x5e_c00322{left:57.828075pt;}
.x7b_c00322{left:59.024555pt;}
.x23_c00322{left:62.061035pt;}
.x27_c00322{left:64.782992pt;}
.xc_c00322{left:65.695589pt;}
.x14_c00322{left:67.169621pt;}
.x6e_c00322{left:68.339701pt;}
.x43_c00322{left:71.086523pt;}
.x68_c00322{left:72.403120pt;}
.x32_c00322{left:74.609909pt;}
.x4_c00322{left:77.615947pt;}
.x37_c00322{left:79.221419pt;}
.x28_c00322{left:82.304448pt;}
.x52_c00322{left:83.741984pt;}
.x7c_c00322{left:86.862571pt;}
.x19_c00322{left:88.739653pt;}
.x4d_c00322{left:90.186587pt;}
.xd_c00322{left:91.589547pt;}
.x71_c00322{left:93.436576pt;}
.x29_c00322{left:94.596160pt;}
.x1e_c00322{left:95.944293pt;}
.x2d_c00322{left:96.886923pt;}
.x65_c00322{left:98.777163pt;}
.x74_c00322{left:99.742976pt;}
.x1a_c00322{left:101.508112pt;}
.xe_c00322{left:103.605211pt;}
.x48_c00322{left:106.511707pt;}
.x53_c00322{left:110.405877pt;}
.x7d_c00322{left:113.305483pt;}
.x1f_c00322{left:115.173397pt;}
.x78_c00322{left:117.220757pt;}
.x69_c00322{left:119.257691pt;}
.xf_c00322{left:120.296725pt;}
.x2e_c00322{left:122.217675pt;}
.x3b_c00322{left:124.310389pt;}
.x15_c00322{left:125.775883pt;}
.x5_c00322{left:127.314517pt;}
.x57_c00322{left:129.313856pt;}
.x4e_c00322{left:131.478123pt;}
.x3d_c00322{left:133.435659pt;}
.x10_c00322{left:137.144240pt;}
.x1_c00322{left:139.156000pt;}
.x62_c00322{left:142.955685pt;}
.x58_c00322{left:144.638560pt;}
.x79_c00322{left:146.846293pt;}
.x16_c00322{left:148.115083pt;}
.x20_c00322{left:149.426784pt;}
.x44_c00322{left:150.689627pt;}
.x3e_c00322{left:151.912379pt;}
.x54_c00322{left:156.729616pt;}
.x2f_c00322{left:159.671765pt;}
.x2a_c00322{left:161.583131pt;}
.x24_c00322{left:162.755109pt;}
.x33_c00322{left:165.578256pt;}
.x6_c00322{left:166.676315pt;}
.x38_c00322{left:169.281253pt;}
.x59_c00322{left:170.305141pt;}
.x21_c00322{left:172.802043pt;}
.x3f_c00322{left:173.948176pt;}
.x4f_c00322{left:175.615813pt;}
.x30_c00322{left:177.672773pt;}
.x49_c00322{left:179.489461pt;}
.x7_c00322{left:183.023381pt;}
.x25_c00322{left:184.831541pt;}
.x34_c00322{left:187.864592pt;}
.x6f_c00322{left:192.252811pt;}
.x17_c00322{left:193.248187pt;}
.x6a_c00322{left:194.182848pt;}
.x11_c00322{left:195.086635pt;}
.x60_c00322{left:197.779067pt;}
.x1b_c00322{left:199.175109pt;}
.x7e_c00322{left:201.650997pt;}
.x4a_c00322{left:205.372704pt;}
.x75_c00322{left:207.799029pt;}
.x5f_c00322{left:209.089461pt;}
.x45_c00322{left:210.246955pt;}
.x50_c00322{left:211.439152pt;}
.x72_c00322{left:212.690485pt;}
.x5a_c00322{left:214.550768pt;}
.x40_c00322{left:216.055547pt;}
.x6c_c00322{left:217.068000pt;}
.x12_c00322{left:218.015333pt;}
.x66_c00322{left:220.016816pt;}
.x61_c00322{left:222.287221pt;}
.x18_c00322{left:224.225467pt;}
.x31_c00322{left:226.195499pt;}
.x22_c00322{left:229.254427pt;}
.x55_c00322{left:231.554917pt;}
.x35_c00322{left:232.806635pt;}
.x8_c00322{left:234.859136pt;}
.x3c_c00322{left:236.216229pt;}
.x2b_c00322{left:239.535035pt;}
.x13_c00322{left:241.941328pt;}
.x67_c00322{left:243.644139pt;}
.x42_c00322{left:246.113216pt;}
.x63_c00322{left:247.471621pt;}
.x36_c00322{left:249.380997pt;}
.x4b_c00322{left:251.541621pt;}
.x5b_c00322{left:252.719824pt;}
.x41_c00322{left:253.997136pt;}
.x9_c00322{left:256.709904pt;}
.x46_c00322{left:258.285707pt;}
.x2_c00322{left:260.228000pt;}
.x26_c00322{left:266.130928pt;}
.x1c_c00322{left:275.344416pt;}
.x39_c00322{left:277.912277pt;}
.x6b_c00322{left:280.390907pt;}
.x7a_c00322{left:288.968224pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00323 {
    display:none;
  }
  .loading-indicator_c00323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00323 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00323 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00323" -> "#page-container .classname_c00323")
 */
.pf_c00323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00323 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00323 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00323 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00323 {overflow:visible;}
  }
}
.c_c00323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00323 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00323:after { /* webkit #35443 */
  content: '';
}
.t_c00323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00323 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00323 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00323 { /* info for Javascript */
  display:none;
}
.l_c00323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00323:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00323 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00323.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00323{transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.138440,0.001661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.138440,0.001661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.138440,0.001661,-0.003000,0.249982,0,0);}
.mab_c00323{transform:matrix(0.141868,0.001844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.141868,0.001844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.141868,0.001844,-0.003250,0.249979,0,0);}
.mbe_c00323{transform:matrix(0.148976,0.001639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148976,0.001639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148976,0.001639,-0.002750,0.249985,0,0);}
.m15_c00323{transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);}
.mc3_c00323{transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);}
.m23_c00323{transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);}
.m18_c00323{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.md1_c00323{transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160640,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);}
.m8a_c00323{transform:matrix(0.160976,0.002093,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160976,0.002093,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160976,0.002093,-0.003250,0.249979,0,0);}
.m0_c00323{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m6e_c00323{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.m6d_c00323{transform:matrix(0.163790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163790,0.000000,0.000000,0.250000,0,0);}
.m74_c00323{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m44_c00323{transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165195,0.000000,0.000000,0.250000,0,0);}
.mc5_c00323{transform:matrix(0.165297,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165297,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165297,0.001653,-0.002500,0.249988,0,0);}
.m5a_c00323{transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);}
.m6f_c00323{transform:matrix(0.169040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169040,0.000000,0.000000,0.250000,0,0);}
.m9d_c00323{transform:matrix(0.170556,0.002217,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170556,0.002217,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170556,0.002217,-0.003250,0.249979,0,0);}
.mb1_c00323{transform:matrix(0.170938,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170938,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170938,0.002051,-0.003000,0.249982,0,0);}
.m5_c00323{transform:matrix(0.171158,0.002054,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171158,0.002054,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171158,0.002054,-0.003000,0.249982,0,0);}
.md3_c00323{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m9e_c00323{transform:matrix(0.173185,0.002251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173185,0.002251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173185,0.002251,-0.003250,0.249979,0,0);}
.mc4_c00323{transform:matrix(0.173351,0.001734,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173351,0.001734,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173351,0.001734,-0.002500,0.249988,0,0);}
.m19_c00323{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.173847,0.002086,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173847,0.002086,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173847,0.002086,-0.003000,0.249982,0,0);}
.m1a_c00323{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.m69_c00323{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.m8c_c00323{transform:matrix(0.175330,0.002279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175330,0.002279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175330,0.002279,-0.003250,0.249979,0,0);}
.m61_c00323{transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175880,0.000000,0.000000,0.250000,0,0);}
.md0_c00323{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.me3_c00323{transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);}
.m76_c00323{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m6a_c00323{transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.176657,0.002120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176657,0.002120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176657,0.002120,-0.003000,0.249982,0,0);}
.m5d_c00323{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.m60_c00323{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m6b_c00323{transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);}
.mbf_c00323{transform:matrix(0.177214,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177214,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177214,0.001949,-0.002750,0.249985,0,0);}
.md4_c00323{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m90_c00323{transform:matrix(0.179300,0.002331,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179300,0.002331,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179300,0.002331,-0.003250,0.249979,0,0);}
.m17_c00323{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.md9_c00323{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.md2_c00323{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m37_c00323{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.mdc_c00323{transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180685,0.000000,0.000000,0.250000,0,0);}
.m79_c00323{transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.181167,0.002174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181167,0.002174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181167,0.002174,-0.003000,0.249982,0,0);}
.mdb_c00323{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.m75_c00323{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m8b_c00323{transform:matrix(0.182390,0.002371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182390,0.002371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182390,0.002371,-0.003250,0.249979,0,0);}
.m16_c00323{transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m65_c00323{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m97_c00323{transform:matrix(0.183894,0.002391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183894,0.002391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183894,0.002391,-0.003250,0.249979,0,0);}
.md8_c00323{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.m73_c00323{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.maa_c00323{transform:matrix(0.184854,0.002403,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184854,0.002403,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184854,0.002403,-0.003250,0.249979,0,0);}
.mc9_c00323{transform:matrix(0.185751,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185751,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185751,0.001858,-0.002500,0.249988,0,0);}
.m84_c00323{transform:matrix(0.186029,0.002418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186029,0.002418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186029,0.002418,-0.003250,0.249979,0,0);}
.m89_c00323{transform:matrix(0.186269,0.002422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186269,0.002422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186269,0.002422,-0.003250,0.249979,0,0);}
.m51_c00323{transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00323{transform:matrix(0.186524,0.002425,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186524,0.002425,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186524,0.002425,-0.003250,0.249979,0,0);}
.m34_c00323{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.ma1_c00323{transform:matrix(0.187524,0.002438,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187524,0.002438,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187524,0.002438,-0.003250,0.249979,0,0);}
.m7a_c00323{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.mdf_c00323{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.mc6_c00323{transform:matrix(0.188061,0.001881,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188061,0.001881,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188061,0.001881,-0.002500,0.249988,0,0);}
.m88_c00323{transform:matrix(0.188339,0.002448,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188339,0.002448,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188339,0.002448,-0.003250,0.249979,0,0);}
.m7c_c00323{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m72_c00323{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.m59_c00323{transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188545,0.000000,0.000000,0.250000,0,0);}
.m63_c00323{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m54_c00323{transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189260,0.000000,0.000000,0.250000,0,0);}
.ma0_c00323{transform:matrix(0.189334,0.002461,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189334,0.002461,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189334,0.002461,-0.003250,0.249979,0,0);}
.mae_c00323{transform:matrix(0.189339,0.002461,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189339,0.002461,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189339,0.002461,-0.003250,0.249979,0,0);}
.mc0_c00323{transform:matrix(0.189389,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189389,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189389,0.002083,-0.002750,0.249985,0,0);}
.m4e_c00323{transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189645,0.000000,0.000000,0.250000,0,0);}
.m6c_c00323{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m1f_c00323{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00323{transform:matrix(0.190339,0.002474,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190339,0.002474,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190339,0.002474,-0.003250,0.249979,0,0);}
.m3f_c00323{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m68_c00323{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m9a_c00323{transform:matrix(0.191789,0.002493,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191789,0.002493,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191789,0.002493,-0.003250,0.249979,0,0);}
.m71_c00323{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00323{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.md5_c00323{transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);}
.m9c_c00323{transform:matrix(0.193269,0.002512,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193269,0.002512,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193269,0.002512,-0.003250,0.249979,0,0);}
.mb4_c00323{transform:matrix(0.193698,0.002131,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193698,0.002131,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193698,0.002131,-0.002750,0.249985,0,0);}
.m4b_c00323{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.mba_c00323{transform:matrix(0.195623,0.002152,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195623,0.002152,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195623,0.002152,-0.002750,0.249985,0,0);}
.m8f_c00323{transform:matrix(0.196218,0.002551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196218,0.002551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196218,0.002551,-0.003250,0.249979,0,0);}
.m50_c00323{transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);}
.maf_c00323{transform:matrix(0.196816,0.002362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196816,0.002362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196816,0.002362,-0.003000,0.249982,0,0);}
.m5b_c00323{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.m70_c00323{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);}
.mb2_c00323{transform:matrix(0.199331,0.002392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199331,0.002392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199331,0.002392,-0.003000,0.249982,0,0);}
.m47_c00323{transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199840,0.000000,0.000000,0.250000,0,0);}
.ma7_c00323{transform:matrix(0.200058,0.002601,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200058,0.002601,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200058,0.002601,-0.003250,0.249979,0,0);}
.m7_c00323{transform:matrix(0.200391,0.002405,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200391,0.002405,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200391,0.002405,-0.003000,0.249982,0,0);}
.me4_c00323{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.ma4_c00323{transform:matrix(0.200903,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200903,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200903,0.002612,-0.003250,0.249979,0,0);}
.m5c_c00323{transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);}
.m7d_c00323{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00323{transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.202285,0.002427,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202285,0.002427,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202285,0.002427,-0.003000,0.249982,0,0);}
.me2_c00323{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m41_c00323{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m4f_c00323{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m78_c00323{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m27_c00323{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m77_c00323{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00323{transform:matrix(0.203370,0.002034,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203370,0.002034,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203370,0.002034,-0.002500,0.249988,0,0);}
.m36_c00323{transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);}
.m8d_c00323{transform:matrix(0.204578,0.002660,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204578,0.002660,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204578,0.002660,-0.003250,0.249979,0,0);}
.m52_c00323{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.mbb_c00323{transform:matrix(0.205928,0.002265,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205928,0.002265,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205928,0.002265,-0.002750,0.249985,0,0);}
.m58_c00323{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.mc7_c00323{transform:matrix(0.206240,0.002062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206240,0.002062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206240,0.002062,-0.002500,0.249988,0,0);}
.m10_c00323{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.md6_c00323{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m1c_c00323{transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);}
.m66_c00323{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.m98_c00323{transform:matrix(0.209767,0.002727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209767,0.002727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209767,0.002727,-0.003250,0.249979,0,0);}
.m7f_c00323{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.210360,0.002524,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210360,0.002524,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210360,0.002524,-0.003000,0.249982,0,0);}
.m92_c00323{transform:matrix(0.210852,0.002741,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210852,0.002741,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210852,0.002741,-0.003250,0.249979,0,0);}
.m64_c00323{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00323{transform:matrix(0.212087,0.002757,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212087,0.002757,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212087,0.002757,-0.003250,0.249979,0,0);}
.m3a_c00323{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.213030,0.002556,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213030,0.002556,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213030,0.002556,-0.003000,0.249982,0,0);}
.m26_c00323{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m4a_c00323{transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213685,0.000000,0.000000,0.250000,0,0);}
.m2a_c00323{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);}
.mac_c00323{transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);}
.m35_c00323{transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);}
.m93_c00323{transform:matrix(0.214627,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214627,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214627,0.002790,-0.003250,0.249979,0,0);}
.m45_c00323{transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);}
.m2b_c00323{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.mda_c00323{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{transform:matrix(0.216320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216320,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);}
.m42_c00323{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00323{transform:matrix(0.216762,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216762,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216762,0.002818,-0.003250,0.249979,0,0);}
.me0_c00323{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);}
.mb8_c00323{transform:matrix(0.218882,0.002408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218882,0.002408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218882,0.002408,-0.002750,0.249985,0,0);}
.mcb_c00323{transform:matrix(0.219785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219785,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.m11_c00323{transform:matrix(0.220640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220640,0.000000,0.000000,0.250000,0,0);}
.m62_c00323{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m22_c00323{transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);}
.mca_c00323{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);}
.mb3_c00323{transform:matrix(0.221609,0.002659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221609,0.002659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221609,0.002659,-0.003000,0.249982,0,0);}
.mb9_c00323{transform:matrix(0.222407,0.002446,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222407,0.002446,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222407,0.002446,-0.002750,0.249985,0,0);}
.m7e_c00323{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.mbc_c00323{transform:matrix(0.222942,0.002452,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222942,0.002452,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222942,0.002452,-0.002750,0.249985,0,0);}
.mcd_c00323{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m5f_c00323{transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223820,0.000000,0.000000,0.250000,0,0);}
.mc8_c00323{transform:matrix(0.223949,0.002239,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223949,0.002239,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223949,0.002239,-0.002500,0.249988,0,0);}
.mbd_c00323{transform:matrix(0.224351,0.002468,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224351,0.002468,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224351,0.002468,-0.002750,0.249985,0,0);}
.m85_c00323{transform:matrix(0.224901,0.002924,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224901,0.002924,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224901,0.002924,-0.003250,0.249979,0,0);}
.m81_c00323{transform:matrix(0.225361,0.002930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225361,0.002930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225361,0.002930,-0.003250,0.249979,0,0);}
.m3_c00323{transform:matrix(0.225364,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225364,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225364,0.002704,-0.003000,0.249982,0,0);}
.me1_c00323{transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);}
.m80_c00323{transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);}
.m4d_c00323{transform:matrix(0.227545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227545,0.000000,0.000000,0.250000,0,0);}
.mb0_c00323{transform:matrix(0.228069,0.002737,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228069,0.002737,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228069,0.002737,-0.003000,0.249982,0,0);}
.m2c_c00323{transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228185,0.000000,0.000000,0.250000,0,0);}
.mde_c00323{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);}
.m91_c00323{transform:matrix(0.228901,0.002976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228901,0.002976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228901,0.002976,-0.003250,0.249979,0,0);}
.m53_c00323{transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.229039,0.002748,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229039,0.002748,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229039,0.002748,-0.003000,0.249982,0,0);}
.m49_c00323{transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.mb7_c00323{transform:matrix(0.230476,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230476,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230476,0.002535,-0.002750,0.249985,0,0);}
.m8e_c00323{transform:matrix(0.231340,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231340,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231340,0.003007,-0.003250,0.249979,0,0);}
.m5e_c00323{transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);}
.m96_c00323{transform:matrix(0.232815,0.003027,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232815,0.003027,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232815,0.003027,-0.003250,0.249979,0,0);}
.m12_c00323{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.mce_c00323{transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);}
.m7b_c00323{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.mb5_c00323{transform:matrix(0.234411,0.002579,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234411,0.002579,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234411,0.002579,-0.002750,0.249985,0,0);}
.mc1_c00323{transform:matrix(0.234626,0.002581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234626,0.002581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234626,0.002581,-0.002750,0.249985,0,0);}
.m99_c00323{transform:matrix(0.234725,0.003051,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234725,0.003051,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234725,0.003051,-0.003250,0.249979,0,0);}
.mad_c00323{transform:matrix(0.237220,0.003084,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237220,0.003084,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237220,0.003084,-0.003250,0.249979,0,0);}
.mcc_c00323{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mb6_c00323{transform:matrix(0.238161,0.002620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238161,0.002620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238161,0.002620,-0.002750,0.249985,0,0);}
.m20_c00323{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.ma2_c00323{transform:matrix(0.240470,0.003126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240470,0.003126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240470,0.003126,-0.003250,0.249979,0,0);}
.mb_c00323{transform:matrix(0.240698,0.002888,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240698,0.002888,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240698,0.002888,-0.003000,0.249982,0,0);}
.m2d_c00323{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.m48_c00323{transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);}
.m9b_c00323{transform:matrix(0.246379,0.003203,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246379,0.003203,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246379,0.003203,-0.003250,0.249979,0,0);}
.m13_c00323{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m1d_c00323{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m87_c00323{transform:matrix(0.255088,0.003316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255088,0.003316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255088,0.003316,-0.003250,0.249979,0,0);}
.m2e_c00323{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.me5_c00323{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m95_c00323{transform:matrix(0.257358,0.003346,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257358,0.003346,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257358,0.003346,-0.003250,0.249979,0,0);}
.ma3_c00323{transform:matrix(0.261173,0.003395,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261173,0.003395,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261173,0.003395,-0.003250,0.249979,0,0);}
.md7_c00323{transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);}
.m83_c00323{transform:matrix(0.269587,0.003505,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269587,0.003505,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269587,0.003505,-0.003250,0.249979,0,0);}
.m57_c00323{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.m31_c00323{transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);}
.m56_c00323{transform:matrix(0.283315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283315,0.000000,0.000000,0.250000,0,0);}
.m67_c00323{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.m82_c00323{transform:matrix(0.301425,0.003919,-0.003250,0.249979,0,0);-ms-transform:matrix(0.301425,0.003919,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.301425,0.003919,-0.003250,0.249979,0,0);}
.m94_c00323{transform:matrix(0.302659,0.003935,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302659,0.003935,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302659,0.003935,-0.003250,0.249979,0,0);}
.m86_c00323{transform:matrix(0.329677,0.004286,-0.003250,0.249979,0,0);-ms-transform:matrix(0.329677,0.004286,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.329677,0.004286,-0.003250,0.249979,0,0);}
.mf_c00323{transform:matrix(0.336165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336165,0.000000,0.000000,0.250000,0,0);}
.mcf_c00323{transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00323{transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);}
.m55_c00323{transform:matrix(0.415085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415085,0.000000,0.000000,0.250000,0,0);}
.ma9_c00323{transform:matrix(0.543464,0.007065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.543464,0.007065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.543464,0.007065,-0.003250,0.249979,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
.fc0_c00323{color:transparent;}
.fs7_c00323{font-size:55.650000px;}
.fsb_c00323{font-size:55.654702px;}
.fs5_c00323{font-size:57.750000px;}
.fs6_c00323{font-size:58.800000px;}
.fs12_c00323{font-size:58.803557px;}
.fsd_c00323{font-size:58.804968px;}
.fs8_c00323{font-size:59.850000px;}
.fs2_c00323{font-size:59.854309px;}
.fs3_c00323{font-size:60.900000px;}
.fs13_c00323{font-size:60.903684px;}
.fsf_c00323{font-size:61.955235px;}
.fsa_c00323{font-size:63.000000px;}
.fsc_c00323{font-size:64.055412px;}
.fs10_c00323{font-size:65.105501px;}
.fs4_c00323{font-size:66.150000px;}
.fs11_c00323{font-size:67.204838px;}
.fse_c00323{font-size:67.205678px;}
.fs14_c00323{font-size:68.253412px;}
.fs9_c00323{font-size:69.300000px;}
.fs1_c00323{font-size:71.405141px;}
.fs0_c00323{font-size:77.700000px;}
.y0_c00323{bottom:0.000000px;}
.yaa_c00323{bottom:29.670000px;}
.ya9_c00323{bottom:45.370500px;}
.ya8_c00323{bottom:62.526000px;}
.ya7_c00323{bottom:80.010000px;}
.ya6_c00323{bottom:95.389575px;}
.ya5_c00323{bottom:95.513685px;}
.ya4_c00323{bottom:96.194130px;}
.ya3_c00323{bottom:96.804510px;}
.ya2_c00323{bottom:97.071480px;}
.ya1_c00323{bottom:97.376970px;}
.ya0_c00323{bottom:97.506030px;}
.y9f_c00323{bottom:98.011500px;}
.y9e_c00323{bottom:112.296734px;}
.y9d_c00323{bottom:112.595639px;}
.y9c_c00323{bottom:113.026236px;}
.y9b_c00323{bottom:113.237764px;}
.y9a_c00323{bottom:113.393742px;}
.y99_c00323{bottom:114.336276px;}
.y98_c00323{bottom:115.308391px;}
.y97_c00323{bottom:115.560293px;}
.y96_c00323{bottom:128.957715px;}
.y95_c00323{bottom:129.836455px;}
.y94_c00323{bottom:130.380097px;}
.y93_c00323{bottom:131.194191px;}
.y92_c00323{bottom:131.595157px;}
.y91_c00323{bottom:132.031500px;}
.y90_c00323{bottom:146.347710px;}
.y8f_c00323{bottom:147.218658px;}
.y8e_c00323{bottom:147.584832px;}
.y8d_c00323{bottom:148.343748px;}
.y8c_c00323{bottom:149.581500px;}
.y8b_c00323{bottom:163.053464px;}
.y8a_c00323{bottom:163.333359px;}
.y89_c00323{bottom:163.934033px;}
.y88_c00323{bottom:164.213636px;}
.y87_c00323{bottom:165.225467px;}
.y86_c00323{bottom:166.853120px;}
.y85_c00323{bottom:181.070892px;}
.y84_c00323{bottom:181.775009px;}
.y83_c00323{bottom:181.952024px;}
.y82_c00323{bottom:182.351378px;}
.y81_c00323{bottom:182.642916px;}
.y80_c00323{bottom:182.800661px;}
.y7f_c00323{bottom:183.575439px;}
.y7e_c00323{bottom:184.133358px;}
.y7d_c00323{bottom:198.089345px;}
.y7c_c00323{bottom:198.704975px;}
.y7b_c00323{bottom:199.082156px;}
.y7a_c00323{bottom:199.423050px;}
.y79_c00323{bottom:200.531019px;}
.y78_c00323{bottom:201.415281px;}
.y77_c00323{bottom:215.766873px;}
.y76_c00323{bottom:216.381986px;}
.y75_c00323{bottom:217.355136px;}
.y74_c00323{bottom:218.244908px;}
.y73_c00323{bottom:218.579240px;}
.y72_c00323{bottom:220.048781px;}
.y71_c00323{bottom:231.207780px;}
.y70_c00323{bottom:231.700647px;}
.y6f_c00323{bottom:232.317570px;}
.y6e_c00323{bottom:232.659263px;}
.y6d_c00323{bottom:233.376961px;}
.y6c_c00323{bottom:233.696721px;}
.y6b_c00323{bottom:234.431343px;}
.y6a_c00323{bottom:235.710674px;}
.y69_c00323{bottom:248.747729px;}
.y68_c00323{bottom:249.453317px;}
.y67_c00323{bottom:250.208532px;}
.y66_c00323{bottom:250.447329px;}
.y65_c00323{bottom:251.194355px;}
.y64_c00323{bottom:251.777600px;}
.y63_c00323{bottom:252.451500px;}
.y62_c00323{bottom:264.839133px;}
.y61_c00323{bottom:265.818930px;}
.y60_c00323{bottom:266.334764px;}
.y5f_c00323{bottom:266.602011px;}
.y5e_c00323{bottom:267.861672px;}
.y5d_c00323{bottom:268.651500px;}
.y5c_c00323{bottom:282.387000px;}
.y5b_c00323{bottom:282.678000px;}
.y5a_c00323{bottom:283.215000px;}
.y59_c00323{bottom:283.812000px;}
.y58_c00323{bottom:284.061000px;}
.y57_c00323{bottom:284.496000px;}
.y56_c00323{bottom:284.698500px;}
.y55_c00323{bottom:285.123000px;}
.y54_c00323{bottom:300.639000px;}
.y53_c00323{bottom:317.520000px;}
.y52_c00323{bottom:333.240000px;}
.y51_c00323{bottom:333.769500px;}
.y50_c00323{bottom:334.033500px;}
.y4f_c00323{bottom:334.522500px;}
.y4e_c00323{bottom:334.698000px;}
.y4d_c00323{bottom:335.136000px;}
.y4c_c00323{bottom:335.353500px;}
.y4b_c00323{bottom:335.626500px;}
.y4a_c00323{bottom:336.153000px;}
.y49_c00323{bottom:352.242000px;}
.y48_c00323{bottom:367.435500px;}
.y47_c00323{bottom:367.840500px;}
.y46_c00323{bottom:368.643000px;}
.y45_c00323{bottom:369.880500px;}
.y44_c00323{bottom:370.657500px;}
.y43_c00323{bottom:371.110500px;}
.y42_c00323{bottom:372.162000px;}
.y41_c00323{bottom:372.610500px;}
.y40_c00323{bottom:373.146000px;}
.y3f_c00323{bottom:385.276500px;}
.y3e_c00323{bottom:385.837500px;}
.y3d_c00323{bottom:386.575500px;}
.y3c_c00323{bottom:386.854500px;}
.y3b_c00323{bottom:387.466500px;}
.y3a_c00323{bottom:388.531500px;}
.y39_c00323{bottom:401.901000px;}
.y38_c00323{bottom:402.532500px;}
.y37_c00323{bottom:402.811500px;}
.y36_c00323{bottom:403.324500px;}
.y35_c00323{bottom:403.627500px;}
.y34_c00323{bottom:404.512500px;}
.y33_c00323{bottom:404.808000px;}
.y32_c00323{bottom:405.273000px;}
.y31_c00323{bottom:419.245500px;}
.y30_c00323{bottom:419.509500px;}
.y2f_c00323{bottom:419.922000px;}
.y2e_c00323{bottom:420.919500px;}
.y2d_c00323{bottom:422.122500px;}
.y2c_c00323{bottom:422.409000px;}
.y2b_c00323{bottom:423.094500px;}
.y2a_c00323{bottom:435.334500px;}
.y29_c00323{bottom:435.979500px;}
.y28_c00323{bottom:436.207500px;}
.y27_c00323{bottom:436.810500px;}
.y26_c00323{bottom:437.593500px;}
.y25_c00323{bottom:438.046500px;}
.y24_c00323{bottom:439.023000px;}
.y23_c00323{bottom:451.794000px;}
.y22_c00323{bottom:452.790000px;}
.y21_c00323{bottom:453.397500px;}
.y20_c00323{bottom:453.825000px;}
.y1f_c00323{bottom:454.189500px;}
.y1e_c00323{bottom:454.498500px;}
.y1d_c00323{bottom:455.061000px;}
.y1c_c00323{bottom:455.349000px;}
.y1b_c00323{bottom:456.033000px;}
.y1a_c00323{bottom:469.945500px;}
.y19_c00323{bottom:470.868000px;}
.y18_c00323{bottom:471.139500px;}
.y17_c00323{bottom:471.816000px;}
.y16_c00323{bottom:472.020000px;}
.y15_c00323{bottom:472.957500px;}
.y14_c00323{bottom:473.184000px;}
.y13_c00323{bottom:473.581500px;}
.y12_c00323{bottom:488.322000px;}
.y11_c00323{bottom:505.041000px;}
.y10_c00323{bottom:521.784000px;}
.y8_c00323{bottom:538.606218px;}
.yb_c00323{bottom:538.606608px;}
.ya_c00323{bottom:538.606632px;}
.y9_c00323{bottom:538.606914px;}
.yc_c00323{bottom:538.607346px;}
.yd_c00323{bottom:538.607700px;}
.ye_c00323{bottom:538.608036px;}
.yf_c00323{bottom:538.608774px;}
.y7_c00323{bottom:554.277588px;}
.y6_c00323{bottom:554.491410px;}
.y5_c00323{bottom:555.515286px;}
.y4_c00323{bottom:556.092042px;}
.y3_c00323{bottom:556.756188px;}
.y2_c00323{bottom:557.011500px;}
.y1_c00323{bottom:569.566500px;}
.h9_c00323{height:55.650000px;}
.hd_c00323{height:55.654702px;}
.h7_c00323{height:57.750000px;}
.h8_c00323{height:58.800000px;}
.h14_c00323{height:58.803557px;}
.hf_c00323{height:58.804968px;}
.ha_c00323{height:59.850000px;}
.h4_c00323{height:59.854309px;}
.h5_c00323{height:60.900000px;}
.h15_c00323{height:60.903684px;}
.h11_c00323{height:61.955235px;}
.hc_c00323{height:63.000000px;}
.he_c00323{height:64.055412px;}
.h12_c00323{height:65.105501px;}
.h6_c00323{height:66.150000px;}
.h13_c00323{height:67.204838px;}
.h10_c00323{height:67.205678px;}
.h16_c00323{height:68.253412px;}
.hb_c00323{height:69.300000px;}
.h3_c00323{height:71.405141px;}
.h2_c00323{height:77.700000px;}
.h0_c00323{height:613.170000px;}
.h1_c00323{height:613.500000px;}
.w0_c00323{width:359.100000px;}
.w1_c00323{width:359.250000px;}
.x0_c00323{left:0.000000px;}
.x65_c00323{left:40.805910px;}
.x2c_c00323{left:42.480000px;}
.x3a_c00323{left:44.604000px;}
.x27_c00323{left:46.549500px;}
.x14_c00323{left:47.790000px;}
.x2_c00323{left:49.855500px;}
.x73_c00323{left:62.758450px;}
.x15_c00323{left:68.850000px;}
.x3_c00323{left:71.131500px;}
.x1d_c00323{left:76.576500px;}
.x31_c00323{left:80.548500px;}
.x72_c00323{left:82.734000px;}
.x53_c00323{left:84.696000px;}
.x8_c00323{left:87.480594px;}
.x4b_c00323{left:91.255500px;}
.x1e_c00323{left:92.713500px;}
.x3b_c00323{left:93.816000px;}
.xf_c00323{left:95.040000px;}
.x46_c00323{left:96.567000px;}
.x40_c00323{left:100.437000px;}
.x32_c00323{left:101.608500px;}
.x59_c00323{left:103.258500px;}
.x54_c00323{left:104.901000px;}
.x68_c00323{left:106.198772px;}
.x2d_c00323{left:107.281500px;}
.x22_c00323{left:111.598500px;}
.x9_c00323{left:113.132784px;}
.x50_c00323{left:120.145500px;}
.x28_c00323{left:121.614000px;}
.x47_c00323{left:123.834000px;}
.x4_c00323{left:126.477000px;}
.x60_c00323{left:129.695372px;}
.x77_c00323{left:134.643000px;}
.x36_c00323{left:135.658500px;}
.x41_c00323{left:138.237000px;}
.x5c_c00323{left:140.029500px;}
.x51_c00323{left:143.635500px;}
.x10_c00323{left:145.260000px;}
.x3c_c00323{left:146.364000px;}
.x16_c00323{left:147.690000px;}
.x23_c00323{left:149.128500px;}
.x7d_c00323{left:150.390000px;}
.x42_c00323{left:153.087000px;}
.x7c_c00323{left:154.170000px;}
.x29_c00323{left:156.451500px;}
.xa_c00323{left:158.766354px;}
.x78_c00323{left:161.340000px;}
.x33_c00323{left:164.866500px;}
.x24_c00323{left:169.732500px;}
.xb_c00323{left:171.456690px;}
.x55_c00323{left:173.212500px;}
.x5_c00323{left:174.540000px;}
.x61_c00323{left:175.587578px;}
.x6a_c00323{left:179.409636px;}
.x1_c00323{left:181.440000px;}
.x69_c00323{left:185.310738px;}
.x34_c00323{left:186.469500px;}
.x2e_c00323{left:187.486500px;}
.x48_c00323{left:189.397500px;}
.x66_c00323{left:190.422680px;}
.x4c_c00323{left:192.235500px;}
.x11_c00323{left:194.940000px;}
.x5d_c00323{left:197.493000px;}
.x5a_c00323{left:200.155500px;}
.x43_c00323{left:201.417000px;}
.x6b_c00323{left:205.874819px;}
.x3d_c00323{left:207.927000px;}
.x37_c00323{left:209.920500px;}
.x17_c00323{left:213.030000px;}
.x6e_c00323{left:214.201841px;}
.x2a_c00323{left:216.693000px;}
.x1a_c00323{left:218.160000px;}
.x5b_c00323{left:220.713000px;}
.x1f_c00323{left:222.588000px;}
.xc_c00323{left:226.810164px;}
.x18_c00323{left:231.660000px;}
.x56_c00323{left:232.927500px;}
.x74_c00323{left:235.313553px;}
.x1b_c00323{left:237.600000px;}
.x70_c00323{left:238.875000px;}
.x62_c00323{left:240.389543px;}
.x20_c00323{left:242.023500px;}
.x35_c00323{left:243.102000px;}
.x67_c00323{left:244.507669px;}
.x6f_c00323{left:249.559508px;}
.x75_c00323{left:252.906855px;}
.x2f_c00323{left:253.965000px;}
.x12_c00323{left:255.960000px;}
.x6c_c00323{left:258.289184px;}
.x6_c00323{left:259.863000px;}
.x63_c00323{left:261.711204px;}
.x25_c00323{left:263.046000px;}
.x4d_c00323{left:266.485500px;}
.x13_c00323{left:268.650000px;}
.x3e_c00323{left:269.787000px;}
.x38_c00323{left:271.465500px;}
.x44_c00323{left:272.697000px;}
.x5e_c00323{left:273.955500px;}
.xd_c00323{left:275.414166px;}
.x7_c00323{left:277.681500px;}
.x2b_c00323{left:280.647000px;}
.x49_c00323{left:282.286500px;}
.x57_c00323{left:286.609500px;}
.x19_c00323{left:288.090000px;}
.x79_c00323{left:290.422500px;}
.x1c_c00323{left:293.760000px;}
.xe_c00323{left:294.855474px;}
.x30_c00323{left:299.032500px;}
.x52_c00323{left:300.235500px;}
.x7a_c00323{left:302.833500px;}
.x4e_c00323{left:305.365500px;}
.x21_c00323{left:307.905000px;}
.x3f_c00323{left:309.888000px;}
.x71_c00323{left:311.454000px;}
.x76_c00323{left:313.633679px;}
.x58_c00323{left:315.766500px;}
.x39_c00323{left:318.237000px;}
.x4f_c00323{left:320.755500px;}
.x6d_c00323{left:322.261341px;}
.x45_c00323{left:323.727000px;}
.x5f_c00323{left:328.231500px;}
.x26_c00323{left:329.434500px;}
.x64_c00323{left:331.038494px;}
.x7b_c00323{left:332.640000px;}
.x4a_c00323{left:335.223000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs7_c00323{font-size:49.466667pt;}
.fsb_c00323{font-size:49.470846pt;}
.fs5_c00323{font-size:51.333333pt;}
.fs6_c00323{font-size:52.266667pt;}
.fs12_c00323{font-size:52.269829pt;}
.fsd_c00323{font-size:52.271083pt;}
.fs8_c00323{font-size:53.200000pt;}
.fs2_c00323{font-size:53.203830pt;}
.fs3_c00323{font-size:54.133333pt;}
.fs13_c00323{font-size:54.136608pt;}
.fsf_c00323{font-size:55.071320pt;}
.fsa_c00323{font-size:56.000000pt;}
.fsc_c00323{font-size:56.938144pt;}
.fs10_c00323{font-size:57.871556pt;}
.fs4_c00323{font-size:58.800000pt;}
.fs11_c00323{font-size:59.737634pt;}
.fse_c00323{font-size:59.738381pt;}
.fs14_c00323{font-size:60.669700pt;}
.fs9_c00323{font-size:61.600000pt;}
.fs1_c00323{font-size:63.471236pt;}
.fs0_c00323{font-size:69.066667pt;}
.y0_c00323{bottom:0.000000pt;}
.yaa_c00323{bottom:26.373333pt;}
.ya9_c00323{bottom:40.329333pt;}
.ya8_c00323{bottom:55.578667pt;}
.ya7_c00323{bottom:71.120000pt;}
.ya6_c00323{bottom:84.790733pt;}
.ya5_c00323{bottom:84.901053pt;}
.ya4_c00323{bottom:85.505893pt;}
.ya3_c00323{bottom:86.048453pt;}
.ya2_c00323{bottom:86.285760pt;}
.ya1_c00323{bottom:86.557307pt;}
.ya0_c00323{bottom:86.672027pt;}
.y9f_c00323{bottom:87.121333pt;}
.y9e_c00323{bottom:99.819319pt;}
.y9d_c00323{bottom:100.085012pt;}
.y9c_c00323{bottom:100.467765pt;}
.y9b_c00323{bottom:100.655791pt;}
.y9a_c00323{bottom:100.794437pt;}
.y99_c00323{bottom:101.632245pt;}
.y98_c00323{bottom:102.496348pt;}
.y97_c00323{bottom:102.720260pt;}
.y96_c00323{bottom:114.629080pt;}
.y95_c00323{bottom:115.410183pt;}
.y94_c00323{bottom:115.893420pt;}
.y93_c00323{bottom:116.617059pt;}
.y92_c00323{bottom:116.973473pt;}
.y91_c00323{bottom:117.361333pt;}
.y90_c00323{bottom:130.086853pt;}
.y8f_c00323{bottom:130.861029pt;}
.y8e_c00323{bottom:131.186517pt;}
.y8d_c00323{bottom:131.861109pt;}
.y8c_c00323{bottom:132.961333pt;}
.y8b_c00323{bottom:144.936412pt;}
.y8a_c00323{bottom:145.185208pt;}
.y89_c00323{bottom:145.719140pt;}
.y88_c00323{bottom:145.967676pt;}
.y87_c00323{bottom:146.867081pt;}
.y86_c00323{bottom:148.313884pt;}
.y85_c00323{bottom:160.951904pt;}
.y84_c00323{bottom:161.577785pt;}
.y83_c00323{bottom:161.735132pt;}
.y82_c00323{bottom:162.090113pt;}
.y81_c00323{bottom:162.349259pt;}
.y80_c00323{bottom:162.489476pt;}
.y7f_c00323{bottom:163.178168pt;}
.y7e_c00323{bottom:163.674096pt;}
.y7d_c00323{bottom:176.079417pt;}
.y7c_c00323{bottom:176.626644pt;}
.y7b_c00323{bottom:176.961916pt;}
.y7a_c00323{bottom:177.264933pt;}
.y79_c00323{bottom:178.249795pt;}
.y78_c00323{bottom:179.035805pt;}
.y77_c00323{bottom:191.792776pt;}
.y76_c00323{bottom:192.339543pt;}
.y75_c00323{bottom:193.204565pt;}
.y74_c00323{bottom:193.995473pt;}
.y73_c00323{bottom:194.292657pt;}
.y72_c00323{bottom:195.598916pt;}
.y71_c00323{bottom:205.518027pt;}
.y70_c00323{bottom:205.956131pt;}
.y6f_c00323{bottom:206.504507pt;}
.y6e_c00323{bottom:206.808233pt;}
.y6d_c00323{bottom:207.446188pt;}
.y6c_c00323{bottom:207.730419pt;}
.y6b_c00323{bottom:208.383416pt;}
.y6a_c00323{bottom:209.520599pt;}
.y69_c00323{bottom:221.109092pt;}
.y68_c00323{bottom:221.736281pt;}
.y67_c00323{bottom:222.407584pt;}
.y66_c00323{bottom:222.619848pt;}
.y65_c00323{bottom:223.283871pt;}
.y64_c00323{bottom:223.802311pt;}
.y63_c00323{bottom:224.401333pt;}
.y62_c00323{bottom:235.412563pt;}
.y61_c00323{bottom:236.283493pt;}
.y60_c00323{bottom:236.742012pt;}
.y5f_c00323{bottom:236.979565pt;}
.y5e_c00323{bottom:238.099264pt;}
.y5d_c00323{bottom:238.801333pt;}
.y5c_c00323{bottom:251.010667pt;}
.y5b_c00323{bottom:251.269333pt;}
.y5a_c00323{bottom:251.746667pt;}
.y59_c00323{bottom:252.277333pt;}
.y58_c00323{bottom:252.498667pt;}
.y57_c00323{bottom:252.885333pt;}
.y56_c00323{bottom:253.065333pt;}
.y55_c00323{bottom:253.442667pt;}
.y54_c00323{bottom:267.234667pt;}
.y53_c00323{bottom:282.240000pt;}
.y52_c00323{bottom:296.213333pt;}
.y51_c00323{bottom:296.684000pt;}
.y50_c00323{bottom:296.918667pt;}
.y4f_c00323{bottom:297.353333pt;}
.y4e_c00323{bottom:297.509333pt;}
.y4d_c00323{bottom:297.898667pt;}
.y4c_c00323{bottom:298.092000pt;}
.y4b_c00323{bottom:298.334667pt;}
.y4a_c00323{bottom:298.802667pt;}
.y49_c00323{bottom:313.104000pt;}
.y48_c00323{bottom:326.609333pt;}
.y47_c00323{bottom:326.969333pt;}
.y46_c00323{bottom:327.682667pt;}
.y45_c00323{bottom:328.782667pt;}
.y44_c00323{bottom:329.473333pt;}
.y43_c00323{bottom:329.876000pt;}
.y42_c00323{bottom:330.810667pt;}
.y41_c00323{bottom:331.209333pt;}
.y40_c00323{bottom:331.685333pt;}
.y3f_c00323{bottom:342.468000pt;}
.y3e_c00323{bottom:342.966667pt;}
.y3d_c00323{bottom:343.622667pt;}
.y3c_c00323{bottom:343.870667pt;}
.y3b_c00323{bottom:344.414667pt;}
.y3a_c00323{bottom:345.361333pt;}
.y39_c00323{bottom:357.245333pt;}
.y38_c00323{bottom:357.806667pt;}
.y37_c00323{bottom:358.054667pt;}
.y36_c00323{bottom:358.510667pt;}
.y35_c00323{bottom:358.780000pt;}
.y34_c00323{bottom:359.566667pt;}
.y33_c00323{bottom:359.829333pt;}
.y32_c00323{bottom:360.242667pt;}
.y31_c00323{bottom:372.662667pt;}
.y30_c00323{bottom:372.897333pt;}
.y2f_c00323{bottom:373.264000pt;}
.y2e_c00323{bottom:374.150667pt;}
.y2d_c00323{bottom:375.220000pt;}
.y2c_c00323{bottom:375.474667pt;}
.y2b_c00323{bottom:376.084000pt;}
.y2a_c00323{bottom:386.964000pt;}
.y29_c00323{bottom:387.537333pt;}
.y28_c00323{bottom:387.740000pt;}
.y27_c00323{bottom:388.276000pt;}
.y26_c00323{bottom:388.972000pt;}
.y25_c00323{bottom:389.374667pt;}
.y24_c00323{bottom:390.242667pt;}
.y23_c00323{bottom:401.594667pt;}
.y22_c00323{bottom:402.480000pt;}
.y21_c00323{bottom:403.020000pt;}
.y20_c00323{bottom:403.400000pt;}
.y1f_c00323{bottom:403.724000pt;}
.y1e_c00323{bottom:403.998667pt;}
.y1d_c00323{bottom:404.498667pt;}
.y1c_c00323{bottom:404.754667pt;}
.y1b_c00323{bottom:405.362667pt;}
.y1a_c00323{bottom:417.729333pt;}
.y19_c00323{bottom:418.549333pt;}
.y18_c00323{bottom:418.790667pt;}
.y17_c00323{bottom:419.392000pt;}
.y16_c00323{bottom:419.573333pt;}
.y15_c00323{bottom:420.406667pt;}
.y14_c00323{bottom:420.608000pt;}
.y13_c00323{bottom:420.961333pt;}
.y12_c00323{bottom:434.064000pt;}
.y11_c00323{bottom:448.925333pt;}
.y10_c00323{bottom:463.808000pt;}
.y8_c00323{bottom:478.761083pt;}
.yb_c00323{bottom:478.761429pt;}
.ya_c00323{bottom:478.761451pt;}
.y9_c00323{bottom:478.761701pt;}
.yc_c00323{bottom:478.762085pt;}
.yd_c00323{bottom:478.762400pt;}
.ye_c00323{bottom:478.762699pt;}
.yf_c00323{bottom:478.763355pt;}
.y7_c00323{bottom:492.691189pt;}
.y6_c00323{bottom:492.881253pt;}
.y5_c00323{bottom:493.791365pt;}
.y4_c00323{bottom:494.304037pt;}
.y3_c00323{bottom:494.894389pt;}
.y2_c00323{bottom:495.121333pt;}
.y1_c00323{bottom:506.281333pt;}
.h9_c00323{height:49.466667pt;}
.hd_c00323{height:49.470846pt;}
.h7_c00323{height:51.333333pt;}
.h8_c00323{height:52.266667pt;}
.h14_c00323{height:52.269829pt;}
.hf_c00323{height:52.271083pt;}
.ha_c00323{height:53.200000pt;}
.h4_c00323{height:53.203830pt;}
.h5_c00323{height:54.133333pt;}
.h15_c00323{height:54.136608pt;}
.h11_c00323{height:55.071320pt;}
.hc_c00323{height:56.000000pt;}
.he_c00323{height:56.938144pt;}
.h12_c00323{height:57.871556pt;}
.h6_c00323{height:58.800000pt;}
.h13_c00323{height:59.737634pt;}
.h10_c00323{height:59.738381pt;}
.h16_c00323{height:60.669700pt;}
.hb_c00323{height:61.600000pt;}
.h3_c00323{height:63.471236pt;}
.h2_c00323{height:69.066667pt;}
.h0_c00323{height:545.040000pt;}
.h1_c00323{height:545.333333pt;}
.w0_c00323{width:319.200000pt;}
.w1_c00323{width:319.333333pt;}
.x0_c00323{left:0.000000pt;}
.x65_c00323{left:36.271920pt;}
.x2c_c00323{left:37.760000pt;}
.x3a_c00323{left:39.648000pt;}
.x27_c00323{left:41.377333pt;}
.x14_c00323{left:42.480000pt;}
.x2_c00323{left:44.316000pt;}
.x73_c00323{left:55.785289pt;}
.x15_c00323{left:61.200000pt;}
.x3_c00323{left:63.228000pt;}
.x1d_c00323{left:68.068000pt;}
.x31_c00323{left:71.598667pt;}
.x72_c00323{left:73.541333pt;}
.x53_c00323{left:75.285333pt;}
.x8_c00323{left:77.760528pt;}
.x4b_c00323{left:81.116000pt;}
.x1e_c00323{left:82.412000pt;}
.x3b_c00323{left:83.392000pt;}
.xf_c00323{left:84.480000pt;}
.x46_c00323{left:85.837333pt;}
.x40_c00323{left:89.277333pt;}
.x32_c00323{left:90.318667pt;}
.x59_c00323{left:91.785333pt;}
.x54_c00323{left:93.245333pt;}
.x68_c00323{left:94.398908pt;}
.x2d_c00323{left:95.361333pt;}
.x22_c00323{left:99.198667pt;}
.x9_c00323{left:100.562475pt;}
.x50_c00323{left:106.796000pt;}
.x28_c00323{left:108.101333pt;}
.x47_c00323{left:110.074667pt;}
.x4_c00323{left:112.424000pt;}
.x60_c00323{left:115.284775pt;}
.x77_c00323{left:119.682667pt;}
.x36_c00323{left:120.585333pt;}
.x41_c00323{left:122.877333pt;}
.x5c_c00323{left:124.470667pt;}
.x51_c00323{left:127.676000pt;}
.x10_c00323{left:129.120000pt;}
.x3c_c00323{left:130.101333pt;}
.x16_c00323{left:131.280000pt;}
.x23_c00323{left:132.558667pt;}
.x7d_c00323{left:133.680000pt;}
.x42_c00323{left:136.077333pt;}
.x7c_c00323{left:137.040000pt;}
.x29_c00323{left:139.068000pt;}
.xa_c00323{left:141.125648pt;}
.x78_c00323{left:143.413333pt;}
.x33_c00323{left:146.548000pt;}
.x24_c00323{left:150.873333pt;}
.xb_c00323{left:152.405947pt;}
.x55_c00323{left:153.966667pt;}
.x5_c00323{left:155.146667pt;}
.x61_c00323{left:156.077847pt;}
.x6a_c00323{left:159.475232pt;}
.x1_c00323{left:161.280000pt;}
.x69_c00323{left:164.720656pt;}
.x34_c00323{left:165.750667pt;}
.x2e_c00323{left:166.654667pt;}
.x48_c00323{left:168.353333pt;}
.x66_c00323{left:169.264604pt;}
.x4c_c00323{left:170.876000pt;}
.x11_c00323{left:173.280000pt;}
.x5d_c00323{left:175.549333pt;}
.x5a_c00323{left:177.916000pt;}
.x43_c00323{left:179.037333pt;}
.x6b_c00323{left:182.999839pt;}
.x3d_c00323{left:184.824000pt;}
.x37_c00323{left:186.596000pt;}
.x17_c00323{left:189.360000pt;}
.x6e_c00323{left:190.401636pt;}
.x2a_c00323{left:192.616000pt;}
.x1a_c00323{left:193.920000pt;}
.x5b_c00323{left:196.189333pt;}
.x1f_c00323{left:197.856000pt;}
.xc_c00323{left:201.609035pt;}
.x18_c00323{left:205.920000pt;}
.x56_c00323{left:207.046667pt;}
.x74_c00323{left:209.167603pt;}
.x1b_c00323{left:211.200000pt;}
.x70_c00323{left:212.333333pt;}
.x62_c00323{left:213.679593pt;}
.x20_c00323{left:215.132000pt;}
.x35_c00323{left:216.090667pt;}
.x67_c00323{left:217.340151pt;}
.x6f_c00323{left:221.830673pt;}
.x75_c00323{left:224.806093pt;}
.x2f_c00323{left:225.746667pt;}
.x12_c00323{left:227.520000pt;}
.x6c_c00323{left:229.590385pt;}
.x6_c00323{left:230.989333pt;}
.x63_c00323{left:232.632181pt;}
.x25_c00323{left:233.818667pt;}
.x4d_c00323{left:236.876000pt;}
.x13_c00323{left:238.800000pt;}
.x3e_c00323{left:239.810667pt;}
.x38_c00323{left:241.302667pt;}
.x44_c00323{left:242.397333pt;}
.x5e_c00323{left:243.516000pt;}
.xd_c00323{left:244.812592pt;}
.x7_c00323{left:246.828000pt;}
.x2b_c00323{left:249.464000pt;}
.x49_c00323{left:250.921333pt;}
.x57_c00323{left:254.764000pt;}
.x19_c00323{left:256.080000pt;}
.x79_c00323{left:258.153333pt;}
.x1c_c00323{left:261.120000pt;}
.xe_c00323{left:262.093755pt;}
.x30_c00323{left:265.806667pt;}
.x52_c00323{left:266.876000pt;}
.x7a_c00323{left:269.185333pt;}
.x4e_c00323{left:271.436000pt;}
.x21_c00323{left:273.693333pt;}
.x3f_c00323{left:275.456000pt;}
.x71_c00323{left:276.848000pt;}
.x76_c00323{left:278.785492pt;}
.x58_c00323{left:280.681333pt;}
.x39_c00323{left:282.877333pt;}
.x4f_c00323{left:285.116000pt;}
.x6d_c00323{left:286.454525pt;}
.x45_c00323{left:287.757333pt;}
.x5f_c00323{left:291.761333pt;}
.x26_c00323{left:292.830667pt;}
.x64_c00323{left:294.256439pt;}
.x7b_c00323{left:295.680000pt;}
.x4a_c00323{left:297.976000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00324 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00324 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00324 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00324 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00324.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00324;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00324{transform:matrix(0.059180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059180,0.000000,0.000000,0.250000,0,0);}
.m32_c00324{transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);}
.mf0_c00324{transform:matrix(0.140391,0.004071,-0.007247,0.249895,0,0);-ms-transform:matrix(0.140391,0.004071,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.140391,0.004071,-0.007247,0.249895,0,0);}
.mb0_c00324{transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150160,0.000000,0.000000,0.250000,0,0);}
.m8b_c00324{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.mad_c00324{transform:matrix(0.150845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150845,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.maa_c00324{transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151260,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.m61_c00324{transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);}
.m6f_c00324{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m43_c00324{transform:matrix(0.155595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155595,0.000000,0.000000,0.250000,0,0);}
.m69_c00324{transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);}
.md5_c00324{transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156885,0.000000,0.000000,0.250000,0,0);}
.m67_c00324{transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);}
.m59_c00324{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.m34_c00324{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m75_c00324{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m21_c00324{transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);}
.me5_c00324{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);}
.m85_c00324{transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162320,0.000000,0.000000,0.250000,0,0);}
.md4_c00324{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m7a_c00324{transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163280,0.000000,0.000000,0.250000,0,0);}
.mb4_c00324{transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m52_c00324{transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);}
.m63_c00324{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.md6_c00324{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);}
.m72_c00324{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00324{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.m20_c00324{transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);}
.ma3_c00324{transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00324{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.md7_c00324{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m3f_c00324{transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173140,0.000000,0.000000,0.250000,0,0);}
.mdc_c00324{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m77_c00324{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m87_c00324{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);}
.me8_c00324{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.ma9_c00324{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.m5a_c00324{transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);}
.m5c_c00324{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m89_c00324{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.mc0_c00324{transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);}
.mda_c00324{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.mb3_c00324{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00324{transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);}
.m9d_c00324{transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);}
.m8f_c00324{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m31_c00324{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.m70_c00324{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m46_c00324{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.me9_c00324{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.ma7_c00324{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m64_c00324{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.m92_c00324{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m73_c00324{transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);}
.m41_c00324{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m4b_c00324{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m2f_c00324{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m47_c00324{transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);}
.ma6_c00324{transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);}
.mf1_c00324{transform:matrix(0.182253,0.005285,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182253,0.005285,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182253,0.005285,-0.007247,0.249895,0,0);}
.m5e_c00324{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m76_c00324{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.ma2_c00324{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m74_c00324{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m55_c00324{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.mee_c00324{transform:matrix(0.184912,0.005362,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184912,0.005362,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184912,0.005362,-0.007247,0.249895,0,0);}
.m1b_c00324{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.m65_c00324{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m5b_c00324{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.mab_c00324{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.mbc_c00324{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.mbe_c00324{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.mb6_c00324{transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m36_c00324{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.ma8_c00324{transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);}
.m35_c00324{transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);}
.md8_c00324{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m6b_c00324{transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);}
.m6d_c00324{transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);}
.mc4_c00324{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m7d_c00324{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00324{transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);}
.m57_c00324{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00324{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.ma4_c00324{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.mc6_c00324{transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.mca_c00324{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.mef_c00324{transform:matrix(0.193279,0.005605,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193279,0.005605,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193279,0.005605,-0.007247,0.249895,0,0);}
.m2_c00324{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.mac_c00324{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m18_c00324{transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m62_c00324{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00324{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.m88_c00324{transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);}
.mb5_c00324{transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);}
.m66_c00324{transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m4c_c00324{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mb1_c00324{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m4a_c00324{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.m49_c00324{transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);}
.mba_c00324{transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);}
.m5d_c00324{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m68_c00324{transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);}
.m81_c00324{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m83_c00324{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m37_c00324{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m3e_c00324{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m8c_c00324{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m45_c00324{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m97_c00324{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.m6c_c00324{transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);}
.m9e_c00324{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m53_c00324{transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203990,0.000000,0.000000,0.250000,0,0);}
.mcf_c00324{transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204030,0.000000,0.000000,0.250000,0,0);}
.m6e_c00324{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m58_c00324{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.m95_c00324{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.m38_c00324{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);}
.md9_c00324{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.mcc_c00324{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.me0_c00324{transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);}
.md3_c00324{transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);}
.mc3_c00324{transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);}
.m4d_c00324{transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);}
.m50_c00324{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m9f_c00324{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.mdf_c00324{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m86_c00324{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m8d_c00324{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.mce_c00324{transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);}
.maf_c00324{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m71_c00324{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.md2_c00324{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.m7c_c00324{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m44_c00324{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.med_c00324{transform:matrix(0.213475,0.006191,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213475,0.006191,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213475,0.006191,-0.007247,0.249895,0,0);}
.m8a_c00324{transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);}
.m39_c00324{transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);}
.m9c_c00324{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00324{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00324{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);}
.mbb_c00324{transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);}
.mbf_c00324{transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);}
.mc5_c00324{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m99_c00324{transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);}
.m54_c00324{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.me7_c00324{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.mb8_c00324{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);}
.m4e_c00324{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.m91_c00324{transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);}
.mc2_c00324{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.mdb_c00324{transform:matrix(0.221320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221320,0.000000,0.000000,0.250000,0,0);}
.mcd_c00324{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m98_c00324{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m82_c00324{transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);}
.m80_c00324{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.mc7_c00324{transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223195,0.000000,0.000000,0.250000,0,0);}
.mc1_c00324{transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00324{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.mc9_c00324{transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224140,0.000000,0.000000,0.250000,0,0);}
.m60_c00324{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.md0_c00324{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.225405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225405,0.000000,0.000000,0.250000,0,0);}
.m2d_c00324{transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);}
.mea_c00324{transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);}
.m84_c00324{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m7f_c00324{transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);}
.m5f_c00324{transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);}
.m7b_c00324{transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);}
.md1_c00324{transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);}
.m96_c00324{transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229395,0.000000,0.000000,0.250000,0,0);}
.m79_c00324{transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);}
.m51_c00324{transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);}
.mc8_c00324{transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231610,0.000000,0.000000,0.250000,0,0);}
.mb7_c00324{transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.mbd_c00324{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00324{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.m56_c00324{transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);}
.me4_c00324{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.m8e_c00324{transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.ma1_c00324{transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);}
.m93_c00324{transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239020,0.000000,0.000000,0.250000,0,0);}
.m78_c00324{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m90_c00324{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.meb_c00324{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.me6_c00324{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m48_c00324{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.mde_c00324{transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);}
.mec_c00324{transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);}
.me1_c00324{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m94_c00324{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.me2_c00324{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m4f_c00324{transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);}
.ma0_c00324{transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);}
.me3_c00324{transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);}
.mf3_c00324{transform:matrix(0.271411,0.007871,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271411,0.007871,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271411,0.007871,-0.007247,0.249895,0,0);}
.m1a_c00324{transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273530,0.000000,0.000000,0.250000,0,0);}
.ma5_c00324{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.mf4_c00324{transform:matrix(0.277548,0.008049,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277548,0.008049,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277548,0.008049,-0.007247,0.249895,0,0);}
.mae_c00324{transform:matrix(0.278935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278935,0.000000,0.000000,0.250000,0,0);}
.mf2_c00324{transform:matrix(0.353132,0.010241,-0.007247,0.249895,0,0);-ms-transform:matrix(0.353132,0.010241,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.353132,0.010241,-0.007247,0.249895,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls0_c00324{letter-spacing:0.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:0.000000px;}
.fc0_c00324{color:transparent;}
.fs10_c00324{font-size:37.815892px;}
.fse_c00324{font-size:53.550000px;}
.fs8_c00324{font-size:56.700000px;}
.fsd_c00324{font-size:57.750000px;}
.fsa_c00324{font-size:58.800000px;}
.fs2_c00324{font-size:59.850000px;}
.fsb_c00324{font-size:60.900000px;}
.fs1_c00324{font-size:61.950000px;}
.fs7_c00324{font-size:63.000000px;}
.fs6_c00324{font-size:64.050000px;}
.fs9_c00324{font-size:65.100000px;}
.fs5_c00324{font-size:66.150000px;}
.fs0_c00324{font-size:68.250000px;}
.fsf_c00324{font-size:68.278693px;}
.fs4_c00324{font-size:69.300000px;}
.fsc_c00324{font-size:71.400000px;}
.fs3_c00324{font-size:72.450000px;}
.y0_c00324{bottom:0.000000px;}
.y35_c00324{bottom:17.769849px;}
.y37_c00324{bottom:17.770201px;}
.y36_c00324{bottom:17.770327px;}
.y34_c00324{bottom:30.817763px;}
.y33_c00324{bottom:31.347027px;}
.y32_c00324{bottom:32.184707px;}
.y31_c00324{bottom:35.867329px;}
.y30_c00324{bottom:38.079000px;}
.y2f_c00324{bottom:47.602500px;}
.y2e_c00324{bottom:65.643000px;}
.y2d_c00324{bottom:82.171500px;}
.y2c_c00324{bottom:99.450000px;}
.y2b_c00324{bottom:116.200500px;}
.y2a_c00324{bottom:134.104500px;}
.y29_c00324{bottom:150.258000px;}
.y28_c00324{bottom:166.564500px;}
.y27_c00324{bottom:183.841500px;}
.y26_c00324{bottom:200.673000px;}
.y25_c00324{bottom:217.297500px;}
.y24_c00324{bottom:217.977000px;}
.y23_c00324{bottom:218.308500px;}
.y22_c00324{bottom:219.153000px;}
.y21_c00324{bottom:220.303500px;}
.y20_c00324{bottom:220.848000px;}
.y1f_c00324{bottom:221.590500px;}
.y1e_c00324{bottom:222.015000px;}
.y1d_c00324{bottom:223.024500px;}
.y1c_c00324{bottom:233.275500px;}
.y1b_c00324{bottom:233.478000px;}
.y1a_c00324{bottom:234.193500px;}
.y19_c00324{bottom:234.333000px;}
.y18_c00324{bottom:234.945000px;}
.y17_c00324{bottom:235.081500px;}
.y16_c00324{bottom:235.456500px;}
.y15_c00324{bottom:236.253000px;}
.y14_c00324{bottom:252.606000px;}
.y13_c00324{bottom:269.848500px;}
.y12_c00324{bottom:287.577000px;}
.y11_c00324{bottom:304.984500px;}
.y10_c00324{bottom:321.891000px;}
.yf_c00324{bottom:338.754000px;}
.ye_c00324{bottom:354.808500px;}
.yd_c00324{bottom:370.888500px;}
.yc_c00324{bottom:387.744000px;}
.yb_c00324{bottom:404.044500px;}
.ya_c00324{bottom:421.263000px;}
.y9_c00324{bottom:437.818500px;}
.y8_c00324{bottom:454.558500px;}
.y7_c00324{bottom:472.173000px;}
.y6_c00324{bottom:489.481500px;}
.y5_c00324{bottom:506.812500px;}
.y4_c00324{bottom:523.195500px;}
.y3_c00324{bottom:540.562500px;}
.y2_c00324{bottom:558.117000px;}
.y1_c00324{bottom:574.426500px;}
.h12_c00324{height:37.815892px;}
.h10_c00324{height:53.550000px;}
.ha_c00324{height:56.700000px;}
.hf_c00324{height:57.750000px;}
.hc_c00324{height:58.800000px;}
.h4_c00324{height:59.850000px;}
.hd_c00324{height:60.900000px;}
.h3_c00324{height:61.950000px;}
.h9_c00324{height:63.000000px;}
.h8_c00324{height:64.050000px;}
.hb_c00324{height:65.100000px;}
.h7_c00324{height:66.150000px;}
.h2_c00324{height:68.250000px;}
.h11_c00324{height:68.278693px;}
.h6_c00324{height:69.300000px;}
.he_c00324{height:71.400000px;}
.h5_c00324{height:72.450000px;}
.h0_c00324{height:613.170000px;}
.h1_c00324{height:613.500000px;}
.w0_c00324{width:359.100000px;}
.w1_c00324{width:359.250000px;}
.x0_c00324{left:0.000000px;}
.x5c_c00324{left:13.500000px;}
.x4d_c00324{left:22.680000px;}
.x52_c00324{left:24.570000px;}
.x2_c00324{left:25.650000px;}
.x1b_c00324{left:27.270000px;}
.x6f_c00324{left:28.347000px;}
.x16_c00324{left:29.430000px;}
.x9_c00324{left:31.050000px;}
.x37_c00324{left:32.940000px;}
.x3b_c00324{left:34.020000px;}
.x78_c00324{left:35.907000px;}
.x26_c00324{left:39.690000px;}
.x53_c00324{left:41.310000px;}
.x7d_c00324{left:43.467000px;}
.x49_c00324{left:45.630000px;}
.x11_c00324{left:47.250000px;}
.x71_c00324{left:51.297000px;}
.x82_c00324{left:54.267000px;}
.x27_c00324{left:56.160000px;}
.x4e_c00324{left:58.860000px;}
.xa_c00324{left:61.830000px;}
.x2d_c00324{left:62.910000px;}
.x61_c00324{left:64.530000px;}
.x6b_c00324{left:65.607000px;}
.x45_c00324{left:66.960000px;}
.x41_c00324{left:68.310000px;}
.x72_c00324{left:72.357000px;}
.x12_c00324{left:75.330000px;}
.x58_c00324{left:77.490000px;}
.x2e_c00324{left:79.920000px;}
.x22_c00324{left:82.080000px;}
.x7e_c00324{left:83.157000px;}
.x70_c00324{left:86.127000px;}
.x46_c00324{left:87.480000px;}
.x3_c00324{left:90.450000px;}
.x38_c00324{left:92.070000px;}
.x64_c00324{left:95.929500px;}
.x4a_c00324{left:97.740000px;}
.x28_c00324{left:99.090000px;}
.x17_c00324{left:102.330000px;}
.x87_c00324{left:104.286000px;}
.x6c_c00324{left:107.727000px;}
.x7f_c00324{left:110.427000px;}
.x1c_c00324{left:111.510000px;}
.xb_c00324{left:113.400000px;}
.x4b_c00324{left:115.830000px;}
.x83_c00324{left:118.257000px;}
.x5d_c00324{left:122.310000px;}
.x32_c00324{left:123.660000px;}
.x18_c00324{left:125.010000px;}
.x80_c00324{left:127.977000px;}
.x1d_c00324{left:130.140000px;}
.x65_c00324{left:131.289000px;}
.xc_c00324{left:133.380000px;}
.x84_c00324{left:135.807000px;}
.x33_c00324{left:141.480000px;}
.x4_c00324{left:142.560000px;}
.x59_c00324{left:145.530000px;}
.x47_c00324{left:148.230000px;}
.xd_c00324{left:152.820000px;}
.x7b_c00324{left:154.167000px;}
.x2f_c00324{left:155.250000px;}
.x1_c00324{left:156.330000px;}
.x13_c00324{left:157.950000px;}
.x19_c00324{left:159.030000px;}
.x29_c00324{left:163.890000px;}
.x4f_c00324{left:165.240000px;}
.x86_c00324{left:166.857000px;}
.x4c_c00324{left:169.830000px;}
.x85_c00324{left:172.527000px;}
.x1e_c00324{left:174.690000px;}
.x5e_c00324{left:175.770000px;}
.x54_c00324{left:178.740000px;}
.x30_c00324{left:182.250000px;}
.x1a_c00324{left:183.330000px;}
.x23_c00324{left:185.760000px;}
.x5_c00324{left:188.730000px;}
.x69_c00324{left:190.617000px;}
.x5a_c00324{left:191.970000px;}
.x3c_c00324{left:193.320000px;}
.x76_c00324{left:198.447000px;}
.x42_c00324{left:199.800000px;}
.x73_c00324{left:200.877000px;}
.x6_c00324{left:201.960000px;}
.x39_c00324{left:203.580000px;}
.xe_c00324{left:204.660000px;}
.x34_c00324{left:210.870000px;}
.x66_c00324{left:211.989000px;}
.x6d_c00324{left:213.027000px;}
.x62_c00324{left:214.774500px;}
.x3d_c00324{left:216.810000px;}
.x77_c00324{left:218.697000px;}
.x5f_c00324{left:220.050000px;}
.x48_c00324{left:221.940000px;}
.x24_c00324{left:224.100000px;}
.x81_c00324{left:225.987000px;}
.x79_c00324{left:227.337000px;}
.x14_c00324{left:230.040000px;}
.x88_c00324{left:231.273000px;}
.x35_c00324{left:232.470000px;}
.x1f_c00324{left:233.550000px;}
.x55_c00324{left:237.330000px;}
.x3e_c00324{left:239.760000px;}
.x2a_c00324{left:241.110000px;}
.x15_c00324{left:243.270000px;}
.x31_c00324{left:244.620000px;}
.x7_c00324{left:248.670000px;}
.x67_c00324{left:252.213000px;}
.x6e_c00324{left:253.257000px;}
.x74_c00324{left:255.687000px;}
.x56_c00324{left:257.310000px;}
.x2b_c00324{left:260.280000px;}
.x50_c00324{left:263.250000px;}
.x20_c00324{left:264.330000px;}
.x25_c00324{left:268.110000px;}
.x8_c00324{left:271.890000px;}
.x57_c00324{left:274.860000px;}
.x43_c00324{left:275.940000px;}
.x3a_c00324{left:278.910000px;}
.xf_c00324{left:281.610000px;}
.x3f_c00324{left:283.770000px;}
.x21_c00324{left:287.820000px;}
.x7c_c00324{left:292.677000px;}
.x60_c00324{left:294.300000px;}
.x44_c00324{left:296.190000px;}
.x63_c00324{left:298.257000px;}
.x68_c00324{left:300.313500px;}
.x6a_c00324{left:301.587000px;}
.x2c_c00324{left:304.020000px;}
.x51_c00324{left:305.370000px;}
.x36_c00324{left:306.450000px;}
.x40_c00324{left:307.800000px;}
.x75_c00324{left:310.227000px;}
.x5b_c00324{left:314.010000px;}
.x7a_c00324{left:315.357000px;}
.x10_c00324{left:316.710000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.fs10_c00324{font-size:33.614126pt;}
.fse_c00324{font-size:47.600000pt;}
.fs8_c00324{font-size:50.400000pt;}
.fsd_c00324{font-size:51.333333pt;}
.fsa_c00324{font-size:52.266667pt;}
.fs2_c00324{font-size:53.200000pt;}
.fsb_c00324{font-size:54.133333pt;}
.fs1_c00324{font-size:55.066667pt;}
.fs7_c00324{font-size:56.000000pt;}
.fs6_c00324{font-size:56.933333pt;}
.fs9_c00324{font-size:57.866667pt;}
.fs5_c00324{font-size:58.800000pt;}
.fs0_c00324{font-size:60.666667pt;}
.fsf_c00324{font-size:60.692172pt;}
.fs4_c00324{font-size:61.600000pt;}
.fsc_c00324{font-size:63.466667pt;}
.fs3_c00324{font-size:64.400000pt;}
.y0_c00324{bottom:0.000000pt;}
.y35_c00324{bottom:15.795421pt;}
.y37_c00324{bottom:15.795735pt;}
.y36_c00324{bottom:15.795847pt;}
.y34_c00324{bottom:27.393567pt;}
.y33_c00324{bottom:27.864024pt;}
.y32_c00324{bottom:28.608628pt;}
.y31_c00324{bottom:31.882071pt;}
.y30_c00324{bottom:33.848000pt;}
.y2f_c00324{bottom:42.313333pt;}
.y2e_c00324{bottom:58.349333pt;}
.y2d_c00324{bottom:73.041333pt;}
.y2c_c00324{bottom:88.400000pt;}
.y2b_c00324{bottom:103.289333pt;}
.y2a_c00324{bottom:119.204000pt;}
.y29_c00324{bottom:133.562667pt;}
.y28_c00324{bottom:148.057333pt;}
.y27_c00324{bottom:163.414667pt;}
.y26_c00324{bottom:178.376000pt;}
.y25_c00324{bottom:193.153333pt;}
.y24_c00324{bottom:193.757333pt;}
.y23_c00324{bottom:194.052000pt;}
.y22_c00324{bottom:194.802667pt;}
.y21_c00324{bottom:195.825333pt;}
.y20_c00324{bottom:196.309333pt;}
.y1f_c00324{bottom:196.969333pt;}
.y1e_c00324{bottom:197.346667pt;}
.y1d_c00324{bottom:198.244000pt;}
.y1c_c00324{bottom:207.356000pt;}
.y1b_c00324{bottom:207.536000pt;}
.y1a_c00324{bottom:208.172000pt;}
.y19_c00324{bottom:208.296000pt;}
.y18_c00324{bottom:208.840000pt;}
.y17_c00324{bottom:208.961333pt;}
.y16_c00324{bottom:209.294667pt;}
.y15_c00324{bottom:210.002667pt;}
.y14_c00324{bottom:224.538667pt;}
.y13_c00324{bottom:239.865333pt;}
.y12_c00324{bottom:255.624000pt;}
.y11_c00324{bottom:271.097333pt;}
.y10_c00324{bottom:286.125333pt;}
.yf_c00324{bottom:301.114667pt;}
.ye_c00324{bottom:315.385333pt;}
.yd_c00324{bottom:329.678667pt;}
.yc_c00324{bottom:344.661333pt;}
.yb_c00324{bottom:359.150667pt;}
.ya_c00324{bottom:374.456000pt;}
.y9_c00324{bottom:389.172000pt;}
.y8_c00324{bottom:404.052000pt;}
.y7_c00324{bottom:419.709333pt;}
.y6_c00324{bottom:435.094667pt;}
.y5_c00324{bottom:450.500000pt;}
.y4_c00324{bottom:465.062667pt;}
.y3_c00324{bottom:480.500000pt;}
.y2_c00324{bottom:496.104000pt;}
.y1_c00324{bottom:510.601333pt;}
.h12_c00324{height:33.614126pt;}
.h10_c00324{height:47.600000pt;}
.ha_c00324{height:50.400000pt;}
.hf_c00324{height:51.333333pt;}
.hc_c00324{height:52.266667pt;}
.h4_c00324{height:53.200000pt;}
.hd_c00324{height:54.133333pt;}
.h3_c00324{height:55.066667pt;}
.h9_c00324{height:56.000000pt;}
.h8_c00324{height:56.933333pt;}
.hb_c00324{height:57.866667pt;}
.h7_c00324{height:58.800000pt;}
.h2_c00324{height:60.666667pt;}
.h11_c00324{height:60.692172pt;}
.h6_c00324{height:61.600000pt;}
.he_c00324{height:63.466667pt;}
.h5_c00324{height:64.400000pt;}
.h0_c00324{height:545.040000pt;}
.h1_c00324{height:545.333333pt;}
.w0_c00324{width:319.200000pt;}
.w1_c00324{width:319.333333pt;}
.x0_c00324{left:0.000000pt;}
.x5c_c00324{left:12.000000pt;}
.x4d_c00324{left:20.160000pt;}
.x52_c00324{left:21.840000pt;}
.x2_c00324{left:22.800000pt;}
.x1b_c00324{left:24.240000pt;}
.x6f_c00324{left:25.197333pt;}
.x16_c00324{left:26.160000pt;}
.x9_c00324{left:27.600000pt;}
.x37_c00324{left:29.280000pt;}
.x3b_c00324{left:30.240000pt;}
.x78_c00324{left:31.917333pt;}
.x26_c00324{left:35.280000pt;}
.x53_c00324{left:36.720000pt;}
.x7d_c00324{left:38.637333pt;}
.x49_c00324{left:40.560000pt;}
.x11_c00324{left:42.000000pt;}
.x71_c00324{left:45.597333pt;}
.x82_c00324{left:48.237333pt;}
.x27_c00324{left:49.920000pt;}
.x4e_c00324{left:52.320000pt;}
.xa_c00324{left:54.960000pt;}
.x2d_c00324{left:55.920000pt;}
.x61_c00324{left:57.360000pt;}
.x6b_c00324{left:58.317333pt;}
.x45_c00324{left:59.520000pt;}
.x41_c00324{left:60.720000pt;}
.x72_c00324{left:64.317333pt;}
.x12_c00324{left:66.960000pt;}
.x58_c00324{left:68.880000pt;}
.x2e_c00324{left:71.040000pt;}
.x22_c00324{left:72.960000pt;}
.x7e_c00324{left:73.917333pt;}
.x70_c00324{left:76.557333pt;}
.x46_c00324{left:77.760000pt;}
.x3_c00324{left:80.400000pt;}
.x38_c00324{left:81.840000pt;}
.x64_c00324{left:85.270667pt;}
.x4a_c00324{left:86.880000pt;}
.x28_c00324{left:88.080000pt;}
.x17_c00324{left:90.960000pt;}
.x87_c00324{left:92.698667pt;}
.x6c_c00324{left:95.757333pt;}
.x7f_c00324{left:98.157333pt;}
.x1c_c00324{left:99.120000pt;}
.xb_c00324{left:100.800000pt;}
.x4b_c00324{left:102.960000pt;}
.x83_c00324{left:105.117333pt;}
.x5d_c00324{left:108.720000pt;}
.x32_c00324{left:109.920000pt;}
.x18_c00324{left:111.120000pt;}
.x80_c00324{left:113.757333pt;}
.x1d_c00324{left:115.680000pt;}
.x65_c00324{left:116.701333pt;}
.xc_c00324{left:118.560000pt;}
.x84_c00324{left:120.717333pt;}
.x33_c00324{left:125.760000pt;}
.x4_c00324{left:126.720000pt;}
.x59_c00324{left:129.360000pt;}
.x47_c00324{left:131.760000pt;}
.xd_c00324{left:135.840000pt;}
.x7b_c00324{left:137.037333pt;}
.x2f_c00324{left:138.000000pt;}
.x1_c00324{left:138.960000pt;}
.x13_c00324{left:140.400000pt;}
.x19_c00324{left:141.360000pt;}
.x29_c00324{left:145.680000pt;}
.x4f_c00324{left:146.880000pt;}
.x86_c00324{left:148.317333pt;}
.x4c_c00324{left:150.960000pt;}
.x85_c00324{left:153.357333pt;}
.x1e_c00324{left:155.280000pt;}
.x5e_c00324{left:156.240000pt;}
.x54_c00324{left:158.880000pt;}
.x30_c00324{left:162.000000pt;}
.x1a_c00324{left:162.960000pt;}
.x23_c00324{left:165.120000pt;}
.x5_c00324{left:167.760000pt;}
.x69_c00324{left:169.437333pt;}
.x5a_c00324{left:170.640000pt;}
.x3c_c00324{left:171.840000pt;}
.x76_c00324{left:176.397333pt;}
.x42_c00324{left:177.600000pt;}
.x73_c00324{left:178.557333pt;}
.x6_c00324{left:179.520000pt;}
.x39_c00324{left:180.960000pt;}
.xe_c00324{left:181.920000pt;}
.x34_c00324{left:187.440000pt;}
.x66_c00324{left:188.434667pt;}
.x6d_c00324{left:189.357333pt;}
.x62_c00324{left:190.910667pt;}
.x3d_c00324{left:192.720000pt;}
.x77_c00324{left:194.397333pt;}
.x5f_c00324{left:195.600000pt;}
.x48_c00324{left:197.280000pt;}
.x24_c00324{left:199.200000pt;}
.x81_c00324{left:200.877333pt;}
.x79_c00324{left:202.077333pt;}
.x14_c00324{left:204.480000pt;}
.x88_c00324{left:205.576000pt;}
.x35_c00324{left:206.640000pt;}
.x1f_c00324{left:207.600000pt;}
.x55_c00324{left:210.960000pt;}
.x3e_c00324{left:213.120000pt;}
.x2a_c00324{left:214.320000pt;}
.x15_c00324{left:216.240000pt;}
.x31_c00324{left:217.440000pt;}
.x7_c00324{left:221.040000pt;}
.x67_c00324{left:224.189333pt;}
.x6e_c00324{left:225.117333pt;}
.x74_c00324{left:227.277333pt;}
.x56_c00324{left:228.720000pt;}
.x2b_c00324{left:231.360000pt;}
.x50_c00324{left:234.000000pt;}
.x20_c00324{left:234.960000pt;}
.x25_c00324{left:238.320000pt;}
.x8_c00324{left:241.680000pt;}
.x57_c00324{left:244.320000pt;}
.x43_c00324{left:245.280000pt;}
.x3a_c00324{left:247.920000pt;}
.xf_c00324{left:250.320000pt;}
.x3f_c00324{left:252.240000pt;}
.x21_c00324{left:255.840000pt;}
.x7c_c00324{left:260.157333pt;}
.x60_c00324{left:261.600000pt;}
.x44_c00324{left:263.280000pt;}
.x63_c00324{left:265.117333pt;}
.x68_c00324{left:266.945333pt;}
.x6a_c00324{left:268.077333pt;}
.x2c_c00324{left:270.240000pt;}
.x51_c00324{left:271.440000pt;}
.x36_c00324{left:272.400000pt;}
.x40_c00324{left:273.600000pt;}
.x75_c00324{left:275.757333pt;}
.x5b_c00324{left:279.120000pt;}
.x7a_c00324{left:280.317333pt;}
.x10_c00324{left:281.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00325 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00325 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00325 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00325 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00325.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00325{transform:matrix(0.116880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116880,0.000000,0.000000,0.250000,0,0);}
.mf4_c00325{transform:matrix(0.125986,-0.001890,0.003750,0.249972,0,0);-ms-transform:matrix(0.125986,-0.001890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.125986,-0.001890,0.003750,0.249972,0,0);}
.maf_c00325{transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);-ms-transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);}
.m41_c00325{transform:matrix(0.139224,-0.002924,0.005249,0.249945,0,0);-ms-transform:matrix(0.139224,-0.002924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.139224,-0.002924,0.005249,0.249945,0,0);}
.m27_c00325{transform:matrix(0.140419,-0.002949,0.005249,0.249945,0,0);-ms-transform:matrix(0.140419,-0.002949,0.005249,0.249945,0,0);-webkit-transform:matrix(0.140419,-0.002949,0.005249,0.249945,0,0);}
.mf1_c00325{transform:matrix(0.144839,-0.002173,0.003750,0.249972,0,0);-ms-transform:matrix(0.144839,-0.002173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144839,-0.002173,0.003750,0.249972,0,0);}
.m54_c00325{transform:matrix(0.145048,-0.003046,0.005249,0.249945,0,0);-ms-transform:matrix(0.145048,-0.003046,0.005249,0.249945,0,0);-webkit-transform:matrix(0.145048,-0.003046,0.005249,0.249945,0,0);}
.me2_c00325{transform:matrix(0.146529,-0.002198,0.003750,0.249972,0,0);-ms-transform:matrix(0.146529,-0.002198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146529,-0.002198,0.003750,0.249972,0,0);}
.m6b_c00325{transform:matrix(0.147026,-0.002941,0.004999,0.249950,0,0);-ms-transform:matrix(0.147026,-0.002941,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147026,-0.002941,0.004999,0.249950,0,0);}
.mf_c00325{transform:matrix(0.150822,-0.003167,0.005249,0.249945,0,0);-ms-transform:matrix(0.150822,-0.003167,0.005249,0.249945,0,0);-webkit-transform:matrix(0.150822,-0.003167,0.005249,0.249945,0,0);}
.m7c_c00325{transform:matrix(0.151621,-0.002426,0.003999,0.249968,0,0);-ms-transform:matrix(0.151621,-0.002426,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151621,-0.002426,0.003999,0.249968,0,0);}
.mb4_c00325{transform:matrix(0.152293,-0.002284,0.003750,0.249972,0,0);-ms-transform:matrix(0.152293,-0.002284,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152293,-0.002284,0.003750,0.249972,0,0);}
.m5a_c00325{transform:matrix(0.152656,-0.003206,0.005249,0.249945,0,0);-ms-transform:matrix(0.152656,-0.003206,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152656,-0.003206,0.005249,0.249945,0,0);}
.m6c_c00325{transform:matrix(0.152724,-0.003054,0.004999,0.249950,0,0);-ms-transform:matrix(0.152724,-0.003054,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152724,-0.003054,0.004999,0.249950,0,0);}
.ma4_c00325{transform:matrix(0.152913,-0.002294,0.003750,0.249972,0,0);-ms-transform:matrix(0.152913,-0.002294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152913,-0.002294,0.003750,0.249972,0,0);}
.mb5_c00325{transform:matrix(0.153313,-0.002300,0.003750,0.249972,0,0);-ms-transform:matrix(0.153313,-0.002300,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153313,-0.002300,0.003750,0.249972,0,0);}
.mf5_c00325{transform:matrix(0.153513,-0.002303,0.003750,0.249972,0,0);-ms-transform:matrix(0.153513,-0.002303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153513,-0.002303,0.003750,0.249972,0,0);}
.mf6_c00325{transform:matrix(0.153783,-0.002307,0.003750,0.249972,0,0);-ms-transform:matrix(0.153783,-0.002307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153783,-0.002307,0.003750,0.249972,0,0);}
.mb1_c00325{transform:matrix(0.154478,-0.002317,0.003750,0.249972,0,0);-ms-transform:matrix(0.154478,-0.002317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154478,-0.002317,0.003750,0.249972,0,0);}
.mf7_c00325{transform:matrix(0.154513,-0.002318,0.003750,0.249972,0,0);-ms-transform:matrix(0.154513,-0.002318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154513,-0.002318,0.003750,0.249972,0,0);}
.m16_c00325{transform:matrix(0.157365,-0.003305,0.005249,0.249945,0,0);-ms-transform:matrix(0.157365,-0.003305,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157365,-0.003305,0.005249,0.249945,0,0);}
.m5e_c00325{transform:matrix(0.159140,-0.003342,0.005249,0.249945,0,0);-ms-transform:matrix(0.159140,-0.003342,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159140,-0.003342,0.005249,0.249945,0,0);}
.m76_c00325{transform:matrix(0.159333,-0.003187,0.004999,0.249950,0,0);-ms-transform:matrix(0.159333,-0.003187,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159333,-0.003187,0.004999,0.249950,0,0);}
.mbd_c00325{transform:matrix(0.159497,-0.002392,0.003750,0.249972,0,0);-ms-transform:matrix(0.159497,-0.002392,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159497,-0.002392,0.003750,0.249972,0,0);}
.mb9_c00325{transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);-ms-transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);}
.m21_c00325{transform:matrix(0.160485,-0.003370,0.005249,0.249945,0,0);-ms-transform:matrix(0.160485,-0.003370,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160485,-0.003370,0.005249,0.249945,0,0);}
.mba_c00325{transform:matrix(0.160542,-0.002408,0.003750,0.249972,0,0);-ms-transform:matrix(0.160542,-0.002408,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160542,-0.002408,0.003750,0.249972,0,0);}
.me4_c00325{transform:matrix(0.160852,-0.002413,0.003750,0.249972,0,0);-ms-transform:matrix(0.160852,-0.002413,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160852,-0.002413,0.003750,0.249972,0,0);}
.mec_c00325{transform:matrix(0.161747,-0.002426,0.003750,0.249972,0,0);-ms-transform:matrix(0.161747,-0.002426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161747,-0.002426,0.003750,0.249972,0,0);}
.me_c00325{transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);-ms-transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161964,-0.003401,0.005249,0.249945,0,0);}
.m35_c00325{transform:matrix(0.162204,-0.003406,0.005249,0.249945,0,0);-ms-transform:matrix(0.162204,-0.003406,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162204,-0.003406,0.005249,0.249945,0,0);}
.mf8_c00325{transform:matrix(0.162352,-0.002435,0.003750,0.249972,0,0);-ms-transform:matrix(0.162352,-0.002435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162352,-0.002435,0.003750,0.249972,0,0);}
.m72_c00325{transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);}
.m3b_c00325{transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);-ms-transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164454,-0.003454,0.005249,0.249945,0,0);}
.mc4_c00325{transform:matrix(0.165086,-0.002476,0.003750,0.249972,0,0);-ms-transform:matrix(0.165086,-0.002476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165086,-0.002476,0.003750,0.249972,0,0);}
.m49_c00325{transform:matrix(0.165394,-0.003473,0.005249,0.249945,0,0);-ms-transform:matrix(0.165394,-0.003473,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165394,-0.003473,0.005249,0.249945,0,0);}
.md6_c00325{transform:matrix(0.165546,-0.002483,0.003750,0.249972,0,0);-ms-transform:matrix(0.165546,-0.002483,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165546,-0.002483,0.003750,0.249972,0,0);}
.m62_c00325{transform:matrix(0.166793,-0.003503,0.005249,0.249945,0,0);-ms-transform:matrix(0.166793,-0.003503,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166793,-0.003503,0.005249,0.249945,0,0);}
.m5c_c00325{transform:matrix(0.167588,-0.003519,0.005249,0.249945,0,0);-ms-transform:matrix(0.167588,-0.003519,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167588,-0.003519,0.005249,0.249945,0,0);}
.m33_c00325{transform:matrix(0.168148,-0.003531,0.005249,0.249945,0,0);-ms-transform:matrix(0.168148,-0.003531,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168148,-0.003531,0.005249,0.249945,0,0);}
.m70_c00325{transform:matrix(0.168381,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168381,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168381,-0.003368,0.004999,0.249950,0,0);}
.m4f_c00325{transform:matrix(0.168418,-0.003537,0.005249,0.249945,0,0);-ms-transform:matrix(0.168418,-0.003537,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168418,-0.003537,0.005249,0.249945,0,0);}
.md9_c00325{transform:matrix(0.168656,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168656,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168656,-0.002530,0.003750,0.249972,0,0);}
.mdb_c00325{transform:matrix(0.169341,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169341,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169341,-0.002540,0.003750,0.249972,0,0);}
.m57_c00325{transform:matrix(0.169448,-0.003558,0.005249,0.249945,0,0);-ms-transform:matrix(0.169448,-0.003558,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169448,-0.003558,0.005249,0.249945,0,0);}
.me1_c00325{transform:matrix(0.169531,-0.002543,0.003750,0.249972,0,0);-ms-transform:matrix(0.169531,-0.002543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169531,-0.002543,0.003750,0.249972,0,0);}
.m26_c00325{transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);-ms-transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170003,-0.003570,0.005249,0.249945,0,0);}
.m37_c00325{transform:matrix(0.170162,-0.003573,0.005249,0.249945,0,0);-ms-transform:matrix(0.170162,-0.003573,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170162,-0.003573,0.005249,0.249945,0,0);}
.m25_c00325{transform:matrix(0.170202,-0.003574,0.005249,0.249945,0,0);-ms-transform:matrix(0.170202,-0.003574,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170202,-0.003574,0.005249,0.249945,0,0);}
.mb2_c00325{transform:matrix(0.171046,-0.002566,0.003750,0.249972,0,0);-ms-transform:matrix(0.171046,-0.002566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171046,-0.002566,0.003750,0.249972,0,0);}
.m1a_c00325{transform:matrix(0.171597,-0.003604,0.005249,0.249945,0,0);-ms-transform:matrix(0.171597,-0.003604,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171597,-0.003604,0.005249,0.249945,0,0);}
.m39_c00325{transform:matrix(0.171952,-0.003611,0.005249,0.249945,0,0);-ms-transform:matrix(0.171952,-0.003611,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171952,-0.003611,0.005249,0.249945,0,0);}
.m60_c00325{transform:matrix(0.172447,-0.003621,0.005249,0.249945,0,0);-ms-transform:matrix(0.172447,-0.003621,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172447,-0.003621,0.005249,0.249945,0,0);}
.md3_c00325{transform:matrix(0.173655,-0.002605,0.003750,0.249972,0,0);-ms-transform:matrix(0.173655,-0.002605,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173655,-0.002605,0.003750,0.249972,0,0);}
.m79_c00325{transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);-ms-transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);}
.m65_c00325{transform:matrix(0.174193,-0.003832,0.005499,0.249940,0,0);-ms-transform:matrix(0.174193,-0.003832,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174193,-0.003832,0.005499,0.249940,0,0);}
.m6e_c00325{transform:matrix(0.174890,-0.003498,0.004999,0.249950,0,0);-ms-transform:matrix(0.174890,-0.003498,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174890,-0.003498,0.004999,0.249950,0,0);}
.mee_c00325{transform:matrix(0.175010,-0.002625,0.003750,0.249972,0,0);-ms-transform:matrix(0.175010,-0.002625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175010,-0.002625,0.003750,0.249972,0,0);}
.m50_c00325{transform:matrix(0.175526,-0.003686,0.005249,0.249945,0,0);-ms-transform:matrix(0.175526,-0.003686,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175526,-0.003686,0.005249,0.249945,0,0);}
.m89_c00325{transform:matrix(0.175885,-0.002638,0.003750,0.249972,0,0);-ms-transform:matrix(0.175885,-0.002638,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175885,-0.002638,0.003750,0.249972,0,0);}
.m7f_c00325{transform:matrix(0.175925,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175925,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175925,-0.002639,0.003750,0.249972,0,0);}
.mce_c00325{transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);-ms-transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);}
.mb8_c00325{transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);-ms-transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);}
.m4b_c00325{transform:matrix(0.176506,-0.003707,0.005249,0.249945,0,0);-ms-transform:matrix(0.176506,-0.003707,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176506,-0.003707,0.005249,0.249945,0,0);}
.m2f_c00325{transform:matrix(0.176711,-0.003711,0.005249,0.249945,0,0);-ms-transform:matrix(0.176711,-0.003711,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176711,-0.003711,0.005249,0.249945,0,0);}
.mca_c00325{transform:matrix(0.176925,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176925,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176925,-0.002654,0.003750,0.249972,0,0);}
.ma_c00325{transform:matrix(0.176946,-0.003716,0.005249,0.249945,0,0);-ms-transform:matrix(0.176946,-0.003716,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176946,-0.003716,0.005249,0.249945,0,0);}
.m46_c00325{transform:matrix(0.177661,-0.003731,0.005249,0.249945,0,0);-ms-transform:matrix(0.177661,-0.003731,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177661,-0.003731,0.005249,0.249945,0,0);}
.m58_c00325{transform:matrix(0.177811,-0.003734,0.005249,0.249945,0,0);-ms-transform:matrix(0.177811,-0.003734,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177811,-0.003734,0.005249,0.249945,0,0);}
.m4e_c00325{transform:matrix(0.178921,-0.003757,0.005249,0.249945,0,0);-ms-transform:matrix(0.178921,-0.003757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178921,-0.003757,0.005249,0.249945,0,0);}
.m23_c00325{transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);-ms-transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178996,-0.003759,0.005249,0.249945,0,0);}
.m82_c00325{transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-ms-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);}
.m3c_c00325{transform:matrix(0.179780,-0.003775,0.005249,0.249945,0,0);-ms-transform:matrix(0.179780,-0.003775,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179780,-0.003775,0.005249,0.249945,0,0);}
.mb3_c00325{transform:matrix(0.180570,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180570,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180570,-0.002709,0.003750,0.249972,0,0);}
.md_c00325{transform:matrix(0.181325,-0.003808,0.005249,0.249945,0,0);-ms-transform:matrix(0.181325,-0.003808,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181325,-0.003808,0.005249,0.249945,0,0);}
.m7a_c00325{transform:matrix(0.181347,-0.002902,0.003999,0.249968,0,0);-ms-transform:matrix(0.181347,-0.002902,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181347,-0.002902,0.003999,0.249968,0,0);}
.mac_c00325{transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);-ms-transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181755,-0.002726,0.003750,0.249972,0,0);}
.mb7_c00325{transform:matrix(0.182354,-0.002735,0.003750,0.249972,0,0);-ms-transform:matrix(0.182354,-0.002735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182354,-0.002735,0.003750,0.249972,0,0);}
.me7_c00325{transform:matrix(0.182589,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182589,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182589,-0.002739,0.003750,0.249972,0,0);}
.m6a_c00325{transform:matrix(0.182818,-0.003656,0.004999,0.249950,0,0);-ms-transform:matrix(0.182818,-0.003656,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182818,-0.003656,0.004999,0.249950,0,0);}
.m18_c00325{transform:matrix(0.182825,-0.003839,0.005249,0.249945,0,0);-ms-transform:matrix(0.182825,-0.003839,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182825,-0.003839,0.005249,0.249945,0,0);}
.mf2_c00325{transform:matrix(0.183149,-0.002747,0.003750,0.249972,0,0);-ms-transform:matrix(0.183149,-0.002747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183149,-0.002747,0.003750,0.249972,0,0);}
.m55_c00325{transform:matrix(0.183330,-0.003850,0.005249,0.249945,0,0);-ms-transform:matrix(0.183330,-0.003850,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183330,-0.003850,0.005249,0.249945,0,0);}
.m3a_c00325{transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);-ms-transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);}
.m34_c00325{transform:matrix(0.185399,-0.003893,0.005249,0.249945,0,0);-ms-transform:matrix(0.185399,-0.003893,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185399,-0.003893,0.005249,0.249945,0,0);}
.mc1_c00325{transform:matrix(0.186024,-0.002790,0.003750,0.249972,0,0);-ms-transform:matrix(0.186024,-0.002790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186024,-0.002790,0.003750,0.249972,0,0);}
.mcf_c00325{transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);-ms-transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);}
.m77_c00325{transform:matrix(0.187051,-0.002993,0.003999,0.249968,0,0);-ms-transform:matrix(0.187051,-0.002993,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187051,-0.002993,0.003999,0.249968,0,0);}
.mbe_c00325{transform:matrix(0.187264,-0.002809,0.003750,0.249972,0,0);-ms-transform:matrix(0.187264,-0.002809,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187264,-0.002809,0.003750,0.249972,0,0);}
.m40_c00325{transform:matrix(0.187539,-0.003938,0.005249,0.249945,0,0);-ms-transform:matrix(0.187539,-0.003938,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187539,-0.003938,0.005249,0.249945,0,0);}
.m5f_c00325{transform:matrix(0.187924,-0.003946,0.005249,0.249945,0,0);-ms-transform:matrix(0.187924,-0.003946,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187924,-0.003946,0.005249,0.249945,0,0);}
.ma3_c00325{transform:matrix(0.188014,-0.002820,0.003750,0.249972,0,0);-ms-transform:matrix(0.188014,-0.002820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188014,-0.002820,0.003750,0.249972,0,0);}
.m9d_c00325{transform:matrix(0.188414,-0.002826,0.003750,0.249972,0,0);-ms-transform:matrix(0.188414,-0.002826,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188414,-0.002826,0.003750,0.249972,0,0);}
.m53_c00325{transform:matrix(0.189488,-0.003979,0.005249,0.249945,0,0);-ms-transform:matrix(0.189488,-0.003979,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189488,-0.003979,0.005249,0.249945,0,0);}
.m4a_c00325{transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);-ms-transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189898,-0.003988,0.005249,0.249945,0,0);}
.m99_c00325{transform:matrix(0.190179,-0.002853,0.003750,0.249972,0,0);-ms-transform:matrix(0.190179,-0.002853,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190179,-0.002853,0.003750,0.249972,0,0);}
.ma1_c00325{transform:matrix(0.190264,-0.002854,0.003750,0.249972,0,0);-ms-transform:matrix(0.190264,-0.002854,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190264,-0.002854,0.003750,0.249972,0,0);}
.m2c_c00325{transform:matrix(0.190273,-0.003996,0.005249,0.249945,0,0);-ms-transform:matrix(0.190273,-0.003996,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190273,-0.003996,0.005249,0.249945,0,0);}
.mea_c00325{transform:matrix(0.190554,-0.002858,0.003750,0.249972,0,0);-ms-transform:matrix(0.190554,-0.002858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190554,-0.002858,0.003750,0.249972,0,0);}
.m10_c00325{transform:matrix(0.190668,-0.004004,0.005249,0.249945,0,0);-ms-transform:matrix(0.190668,-0.004004,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190668,-0.004004,0.005249,0.249945,0,0);}
.mbf_c00325{transform:matrix(0.190829,-0.002862,0.003750,0.249972,0,0);-ms-transform:matrix(0.190829,-0.002862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190829,-0.002862,0.003750,0.249972,0,0);}
.m24_c00325{transform:matrix(0.191048,-0.004012,0.005249,0.249945,0,0);-ms-transform:matrix(0.191048,-0.004012,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191048,-0.004012,0.005249,0.249945,0,0);}
.m51_c00325{transform:matrix(0.191098,-0.004013,0.005249,0.249945,0,0);-ms-transform:matrix(0.191098,-0.004013,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191098,-0.004013,0.005249,0.249945,0,0);}
.m32_c00325{transform:matrix(0.191153,-0.004014,0.005249,0.249945,0,0);-ms-transform:matrix(0.191153,-0.004014,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191153,-0.004014,0.005249,0.249945,0,0);}
.m4d_c00325{transform:matrix(0.191388,-0.004019,0.005249,0.249945,0,0);-ms-transform:matrix(0.191388,-0.004019,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191388,-0.004019,0.005249,0.249945,0,0);}
.m61_c00325{transform:matrix(0.191668,-0.004025,0.005249,0.249945,0,0);-ms-transform:matrix(0.191668,-0.004025,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191668,-0.004025,0.005249,0.249945,0,0);}
.m9e_c00325{transform:matrix(0.191818,-0.002877,0.003750,0.249972,0,0);-ms-transform:matrix(0.191818,-0.002877,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191818,-0.002877,0.003750,0.249972,0,0);}
.mb6_c00325{transform:matrix(0.191868,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191868,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191868,-0.002878,0.003750,0.249972,0,0);}
.m5d_c00325{transform:matrix(0.191978,-0.004032,0.005249,0.249945,0,0);-ms-transform:matrix(0.191978,-0.004032,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191978,-0.004032,0.005249,0.249945,0,0);}
.m29_c00325{transform:matrix(0.192098,-0.004034,0.005249,0.249945,0,0);-ms-transform:matrix(0.192098,-0.004034,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192098,-0.004034,0.005249,0.249945,0,0);}
.m1f_c00325{transform:matrix(0.192263,-0.004038,0.005249,0.249945,0,0);-ms-transform:matrix(0.192263,-0.004038,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192263,-0.004038,0.005249,0.249945,0,0);}
.mc_c00325{transform:matrix(0.192383,-0.004040,0.005249,0.249945,0,0);-ms-transform:matrix(0.192383,-0.004040,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192383,-0.004040,0.005249,0.249945,0,0);}
.m47_c00325{transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);-ms-transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193067,-0.004054,0.005249,0.249945,0,0);}
.m38_c00325{transform:matrix(0.193817,-0.004070,0.005249,0.249945,0,0);-ms-transform:matrix(0.193817,-0.004070,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193817,-0.004070,0.005249,0.249945,0,0);}
.me6_c00325{transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);}
.med_c00325{transform:matrix(0.194018,-0.002910,0.003750,0.249972,0,0);-ms-transform:matrix(0.194018,-0.002910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194018,-0.002910,0.003750,0.249972,0,0);}
.m2a_c00325{transform:matrix(0.194032,-0.004075,0.005249,0.249945,0,0);-ms-transform:matrix(0.194032,-0.004075,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194032,-0.004075,0.005249,0.249945,0,0);}
.m0_c00325{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.mdd_c00325{transform:matrix(0.194238,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194238,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194238,-0.002914,0.003750,0.249972,0,0);}
.mc5_c00325{transform:matrix(0.194258,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194258,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194258,-0.002914,0.003750,0.249972,0,0);}
.m36_c00325{transform:matrix(0.194747,-0.004090,0.005249,0.249945,0,0);-ms-transform:matrix(0.194747,-0.004090,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194747,-0.004090,0.005249,0.249945,0,0);}
.mc7_c00325{transform:matrix(0.195138,-0.002927,0.003750,0.249972,0,0);-ms-transform:matrix(0.195138,-0.002927,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195138,-0.002927,0.003750,0.249972,0,0);}
.mb_c00325{transform:matrix(0.195292,-0.004101,0.005249,0.249945,0,0);-ms-transform:matrix(0.195292,-0.004101,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195292,-0.004101,0.005249,0.249945,0,0);}
.m1e_c00325{transform:matrix(0.195347,-0.004102,0.005249,0.249945,0,0);-ms-transform:matrix(0.195347,-0.004102,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195347,-0.004102,0.005249,0.249945,0,0);}
.m2d_c00325{transform:matrix(0.195552,-0.004107,0.005249,0.249945,0,0);-ms-transform:matrix(0.195552,-0.004107,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195552,-0.004107,0.005249,0.249945,0,0);}
.mad_c00325{transform:matrix(0.196228,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196228,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196228,-0.002943,0.003750,0.249972,0,0);}
.me8_c00325{transform:matrix(0.196398,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196398,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196398,-0.002946,0.003750,0.249972,0,0);}
.m22_c00325{transform:matrix(0.196727,-0.004131,0.005249,0.249945,0,0);-ms-transform:matrix(0.196727,-0.004131,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196727,-0.004131,0.005249,0.249945,0,0);}
.m7d_c00325{transform:matrix(0.196998,-0.002955,0.003750,0.249972,0,0);-ms-transform:matrix(0.196998,-0.002955,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196998,-0.002955,0.003750,0.249972,0,0);}
.m2b_c00325{transform:matrix(0.197157,-0.004140,0.005249,0.249945,0,0);-ms-transform:matrix(0.197157,-0.004140,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197157,-0.004140,0.005249,0.249945,0,0);}
.m9a_c00325{transform:matrix(0.197238,-0.002959,0.003750,0.249972,0,0);-ms-transform:matrix(0.197238,-0.002959,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197238,-0.002959,0.003750,0.249972,0,0);}
.mcb_c00325{transform:matrix(0.197303,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197303,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197303,-0.002960,0.003750,0.249972,0,0);}
.m1c_c00325{transform:matrix(0.197501,-0.004148,0.005249,0.249945,0,0);-ms-transform:matrix(0.197501,-0.004148,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197501,-0.004148,0.005249,0.249945,0,0);}
.m59_c00325{transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-ms-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197576,-0.004149,0.005249,0.249945,0,0);}
.m3_c00325{transform:matrix(0.197613,-0.004743,0.005998,0.249928,0,0);-ms-transform:matrix(0.197613,-0.004743,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197613,-0.004743,0.005998,0.249928,0,0);}
.m20_c00325{transform:matrix(0.197896,-0.004156,0.005249,0.249945,0,0);-ms-transform:matrix(0.197896,-0.004156,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197896,-0.004156,0.005249,0.249945,0,0);}
.ma5_c00325{transform:matrix(0.198448,-0.002977,0.003750,0.249972,0,0);-ms-transform:matrix(0.198448,-0.002977,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198448,-0.002977,0.003750,0.249972,0,0);}
.mda_c00325{transform:matrix(0.198998,-0.002985,0.003750,0.249972,0,0);-ms-transform:matrix(0.198998,-0.002985,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198998,-0.002985,0.003750,0.249972,0,0);}
.mdc_c00325{transform:matrix(0.199243,-0.002989,0.003750,0.249972,0,0);-ms-transform:matrix(0.199243,-0.002989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199243,-0.002989,0.003750,0.249972,0,0);}
.m19_c00325{transform:matrix(0.199491,-0.004189,0.005249,0.249945,0,0);-ms-transform:matrix(0.199491,-0.004189,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199491,-0.004189,0.005249,0.249945,0,0);}
.m3e_c00325{transform:matrix(0.199531,-0.004190,0.005249,0.249945,0,0);-ms-transform:matrix(0.199531,-0.004190,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199531,-0.004190,0.005249,0.249945,0,0);}
.m78_c00325{transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);-ms-transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);}
.mc3_c00325{transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);-ms-transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199788,-0.002997,0.003750,0.249972,0,0);}
.m44_c00325{transform:matrix(0.200116,-0.004202,0.005249,0.249945,0,0);-ms-transform:matrix(0.200116,-0.004202,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200116,-0.004202,0.005249,0.249945,0,0);}
.m75_c00325{transform:matrix(0.200195,-0.004004,0.004999,0.249950,0,0);-ms-transform:matrix(0.200195,-0.004004,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200195,-0.004004,0.004999,0.249950,0,0);}
.m52_c00325{transform:matrix(0.200426,-0.004209,0.005249,0.249945,0,0);-ms-transform:matrix(0.200426,-0.004209,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200426,-0.004209,0.005249,0.249945,0,0);}
.m2_c00325{transform:matrix(0.200677,-0.004816,0.005998,0.249928,0,0);-ms-transform:matrix(0.200677,-0.004816,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200677,-0.004816,0.005998,0.249928,0,0);}
.m8_c00325{transform:matrix(0.200907,-0.004822,0.005998,0.249928,0,0);-ms-transform:matrix(0.200907,-0.004822,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200907,-0.004822,0.005998,0.249928,0,0);}
.mb0_c00325{transform:matrix(0.201067,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201067,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201067,-0.003016,0.003750,0.249972,0,0);}
.m1b_c00325{transform:matrix(0.201141,-0.004224,0.005249,0.249945,0,0);-ms-transform:matrix(0.201141,-0.004224,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201141,-0.004224,0.005249,0.249945,0,0);}
.mbb_c00325{transform:matrix(0.201162,-0.003017,0.003750,0.249972,0,0);-ms-transform:matrix(0.201162,-0.003017,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201162,-0.003017,0.003750,0.249972,0,0);}
.m81_c00325{transform:matrix(0.201172,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201172,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201172,-0.003018,0.003750,0.249972,0,0);}
.ma7_c00325{transform:matrix(0.201327,-0.003020,0.003750,0.249972,0,0);-ms-transform:matrix(0.201327,-0.003020,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201327,-0.003020,0.003750,0.249972,0,0);}
.mc0_c00325{transform:matrix(0.201662,-0.003025,0.003750,0.249972,0,0);-ms-transform:matrix(0.201662,-0.003025,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201662,-0.003025,0.003750,0.249972,0,0);}
.mdf_c00325{transform:matrix(0.201752,-0.003026,0.003750,0.249972,0,0);-ms-transform:matrix(0.201752,-0.003026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201752,-0.003026,0.003750,0.249972,0,0);}
.mbc_c00325{transform:matrix(0.202027,-0.003030,0.003750,0.249972,0,0);-ms-transform:matrix(0.202027,-0.003030,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202027,-0.003030,0.003750,0.249972,0,0);}
.ma2_c00325{transform:matrix(0.202122,-0.003032,0.003750,0.249972,0,0);-ms-transform:matrix(0.202122,-0.003032,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202122,-0.003032,0.003750,0.249972,0,0);}
.m2e_c00325{transform:matrix(0.202725,-0.004257,0.005249,0.249945,0,0);-ms-transform:matrix(0.202725,-0.004257,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202725,-0.004257,0.005249,0.249945,0,0);}
.m1d_c00325{transform:matrix(0.203000,-0.004263,0.005249,0.249945,0,0);-ms-transform:matrix(0.203000,-0.004263,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203000,-0.004263,0.005249,0.249945,0,0);}
.m45_c00325{transform:matrix(0.203135,-0.004266,0.005249,0.249945,0,0);-ms-transform:matrix(0.203135,-0.004266,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203135,-0.004266,0.005249,0.249945,0,0);}
.m48_c00325{transform:matrix(0.203300,-0.004269,0.005249,0.249945,0,0);-ms-transform:matrix(0.203300,-0.004269,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203300,-0.004269,0.005249,0.249945,0,0);}
.m31_c00325{transform:matrix(0.203460,-0.004273,0.005249,0.249945,0,0);-ms-transform:matrix(0.203460,-0.004273,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203460,-0.004273,0.005249,0.249945,0,0);}
.md2_c00325{transform:matrix(0.203482,-0.003052,0.003750,0.249972,0,0);-ms-transform:matrix(0.203482,-0.003052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203482,-0.003052,0.003750,0.249972,0,0);}
.mc8_c00325{transform:matrix(0.203822,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203822,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203822,-0.003057,0.003750,0.249972,0,0);}
.md8_c00325{transform:matrix(0.203827,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203827,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203827,-0.003057,0.003750,0.249972,0,0);}
.m6d_c00325{transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);-ms-transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);}
.m7e_c00325{transform:matrix(0.204632,-0.003069,0.003750,0.249972,0,0);-ms-transform:matrix(0.204632,-0.003069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204632,-0.003069,0.003750,0.249972,0,0);}
.m15_c00325{transform:matrix(0.204755,-0.004300,0.005249,0.249945,0,0);-ms-transform:matrix(0.204755,-0.004300,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204755,-0.004300,0.005249,0.249945,0,0);}
.meb_c00325{transform:matrix(0.204847,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204847,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204847,-0.003073,0.003750,0.249972,0,0);}
.m80_c00325{transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);}
.m5b_c00325{transform:matrix(0.205415,-0.004314,0.005249,0.249945,0,0);-ms-transform:matrix(0.205415,-0.004314,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205415,-0.004314,0.005249,0.249945,0,0);}
.mc2_c00325{transform:matrix(0.205732,-0.003086,0.003750,0.249972,0,0);-ms-transform:matrix(0.205732,-0.003086,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205732,-0.003086,0.003750,0.249972,0,0);}
.m28_c00325{transform:matrix(0.205860,-0.004323,0.005249,0.249945,0,0);-ms-transform:matrix(0.205860,-0.004323,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205860,-0.004323,0.005249,0.249945,0,0);}
.mf3_c00325{transform:matrix(0.206272,-0.003094,0.003750,0.249972,0,0);-ms-transform:matrix(0.206272,-0.003094,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206272,-0.003094,0.003750,0.249972,0,0);}
.m3d_c00325{transform:matrix(0.206275,-0.004332,0.005249,0.249945,0,0);-ms-transform:matrix(0.206275,-0.004332,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206275,-0.004332,0.005249,0.249945,0,0);}
.m3f_c00325{transform:matrix(0.206664,-0.004340,0.005249,0.249945,0,0);-ms-transform:matrix(0.206664,-0.004340,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206664,-0.004340,0.005249,0.249945,0,0);}
.m30_c00325{transform:matrix(0.206729,-0.004341,0.005249,0.249945,0,0);-ms-transform:matrix(0.206729,-0.004341,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206729,-0.004341,0.005249,0.249945,0,0);}
.m12_c00325{transform:matrix(0.206874,-0.004344,0.005249,0.249945,0,0);-ms-transform:matrix(0.206874,-0.004344,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206874,-0.004344,0.005249,0.249945,0,0);}
.mde_c00325{transform:matrix(0.206897,-0.003103,0.003750,0.249972,0,0);-ms-transform:matrix(0.206897,-0.003103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206897,-0.003103,0.003750,0.249972,0,0);}
.m64_c00325{transform:matrix(0.207375,-0.004562,0.005499,0.249940,0,0);-ms-transform:matrix(0.207375,-0.004562,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207375,-0.004562,0.005499,0.249940,0,0);}
.m63_c00325{transform:matrix(0.207735,-0.004570,0.005499,0.249940,0,0);-ms-transform:matrix(0.207735,-0.004570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207735,-0.004570,0.005499,0.249940,0,0);}
.me0_c00325{transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);-ms-transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);}
.maa_c00325{transform:matrix(0.207852,-0.003118,0.003750,0.249972,0,0);-ms-transform:matrix(0.207852,-0.003118,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207852,-0.003118,0.003750,0.249972,0,0);}
.m17_c00325{transform:matrix(0.208374,-0.004376,0.005249,0.249945,0,0);-ms-transform:matrix(0.208374,-0.004376,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208374,-0.004376,0.005249,0.249945,0,0);}
.ma8_c00325{transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);-ms-transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);}
.m11_c00325{transform:matrix(0.208994,-0.004389,0.005249,0.249945,0,0);-ms-transform:matrix(0.208994,-0.004389,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208994,-0.004389,0.005249,0.249945,0,0);}
.ma0_c00325{transform:matrix(0.209721,-0.003146,0.003750,0.249972,0,0);-ms-transform:matrix(0.209721,-0.003146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209721,-0.003146,0.003750,0.249972,0,0);}
.mcd_c00325{transform:matrix(0.209881,-0.003148,0.003750,0.249972,0,0);-ms-transform:matrix(0.209881,-0.003148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209881,-0.003148,0.003750,0.249972,0,0);}
.md7_c00325{transform:matrix(0.210476,-0.003157,0.003750,0.249972,0,0);-ms-transform:matrix(0.210476,-0.003157,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210476,-0.003157,0.003750,0.249972,0,0);}
.m8f_c00325{transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);-ms-transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);}
.m87_c00325{transform:matrix(0.210531,-0.003158,0.003750,0.249972,0,0);-ms-transform:matrix(0.210531,-0.003158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210531,-0.003158,0.003750,0.249972,0,0);}
.m9c_c00325{transform:matrix(0.210711,-0.003161,0.003750,0.249972,0,0);-ms-transform:matrix(0.210711,-0.003161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210711,-0.003161,0.003750,0.249972,0,0);}
.m56_c00325{transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);-ms-transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211018,-0.004431,0.005249,0.249945,0,0);}
.m67_c00325{transform:matrix(0.211154,-0.004645,0.005499,0.249940,0,0);-ms-transform:matrix(0.211154,-0.004645,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211154,-0.004645,0.005499,0.249940,0,0);}
.me3_c00325{transform:matrix(0.211976,-0.003180,0.003750,0.249972,0,0);-ms-transform:matrix(0.211976,-0.003180,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211976,-0.003180,0.003750,0.249972,0,0);}
.m71_c00325{transform:matrix(0.212438,-0.004249,0.004999,0.249950,0,0);-ms-transform:matrix(0.212438,-0.004249,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212438,-0.004249,0.004999,0.249950,0,0);}
.m9_c00325{transform:matrix(0.213693,-0.005129,0.005998,0.249928,0,0);-ms-transform:matrix(0.213693,-0.005129,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213693,-0.005129,0.005998,0.249928,0,0);}
.m68_c00325{transform:matrix(0.214093,-0.004710,0.005499,0.249940,0,0);-ms-transform:matrix(0.214093,-0.004710,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214093,-0.004710,0.005499,0.249940,0,0);}
.m88_c00325{transform:matrix(0.214681,-0.003220,0.003750,0.249972,0,0);-ms-transform:matrix(0.214681,-0.003220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214681,-0.003220,0.003750,0.249972,0,0);}
.m4c_c00325{transform:matrix(0.214873,-0.004512,0.005249,0.249945,0,0);-ms-transform:matrix(0.214873,-0.004512,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214873,-0.004512,0.005249,0.249945,0,0);}
.m4_c00325{transform:matrix(0.215613,-0.005175,0.005998,0.249928,0,0);-ms-transform:matrix(0.215613,-0.005175,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215613,-0.005175,0.005998,0.249928,0,0);}
.m42_c00325{transform:matrix(0.215777,-0.004531,0.005249,0.249945,0,0);-ms-transform:matrix(0.215777,-0.004531,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215777,-0.004531,0.005249,0.249945,0,0);}
.mcc_c00325{transform:matrix(0.216741,-0.003251,0.003750,0.249972,0,0);-ms-transform:matrix(0.216741,-0.003251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216741,-0.003251,0.003750,0.249972,0,0);}
.m43_c00325{transform:matrix(0.216837,-0.004554,0.005249,0.249945,0,0);-ms-transform:matrix(0.216837,-0.004554,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216837,-0.004554,0.005249,0.249945,0,0);}
.me5_c00325{transform:matrix(0.217036,-0.003256,0.003750,0.249972,0,0);-ms-transform:matrix(0.217036,-0.003256,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217036,-0.003256,0.003750,0.249972,0,0);}
.m8a_c00325{transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);}
.m86_c00325{transform:matrix(0.219765,-0.003296,0.003750,0.249972,0,0);-ms-transform:matrix(0.219765,-0.003296,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219765,-0.003296,0.003750,0.249972,0,0);}
.m95_c00325{transform:matrix(0.220190,-0.003303,0.003750,0.249972,0,0);-ms-transform:matrix(0.220190,-0.003303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220190,-0.003303,0.003750,0.249972,0,0);}
.mc6_c00325{transform:matrix(0.220285,-0.003304,0.003750,0.249972,0,0);-ms-transform:matrix(0.220285,-0.003304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220285,-0.003304,0.003750,0.249972,0,0);}
.m92_c00325{transform:matrix(0.221900,-0.003329,0.003750,0.249972,0,0);-ms-transform:matrix(0.221900,-0.003329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221900,-0.003329,0.003750,0.249972,0,0);}
.md1_c00325{transform:matrix(0.222100,-0.003332,0.003750,0.249972,0,0);-ms-transform:matrix(0.222100,-0.003332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222100,-0.003332,0.003750,0.249972,0,0);}
.m69_c00325{transform:matrix(0.222111,-0.004886,0.005499,0.249940,0,0);-ms-transform:matrix(0.222111,-0.004886,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222111,-0.004886,0.005499,0.249940,0,0);}
.m9f_c00325{transform:matrix(0.222765,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222765,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222765,-0.003341,0.003750,0.249972,0,0);}
.m6f_c00325{transform:matrix(0.223285,-0.004466,0.004999,0.249950,0,0);-ms-transform:matrix(0.223285,-0.004466,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223285,-0.004466,0.004999,0.249950,0,0);}
.m94_c00325{transform:matrix(0.223590,-0.003354,0.003750,0.249972,0,0);-ms-transform:matrix(0.223590,-0.003354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223590,-0.003354,0.003750,0.249972,0,0);}
.m5_c00325{transform:matrix(0.224095,-0.005378,0.005998,0.249928,0,0);-ms-transform:matrix(0.224095,-0.005378,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224095,-0.005378,0.005998,0.249928,0,0);}
.mab_c00325{transform:matrix(0.224215,-0.003363,0.003750,0.249972,0,0);-ms-transform:matrix(0.224215,-0.003363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224215,-0.003363,0.003750,0.249972,0,0);}
.md5_c00325{transform:matrix(0.224590,-0.003369,0.003750,0.249972,0,0);-ms-transform:matrix(0.224590,-0.003369,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224590,-0.003369,0.003750,0.249972,0,0);}
.m98_c00325{transform:matrix(0.224760,-0.003371,0.003750,0.249972,0,0);-ms-transform:matrix(0.224760,-0.003371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224760,-0.003371,0.003750,0.249972,0,0);}
.m7b_c00325{transform:matrix(0.225561,-0.003609,0.003999,0.249968,0,0);-ms-transform:matrix(0.225561,-0.003609,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225561,-0.003609,0.003999,0.249968,0,0);}
.m66_c00325{transform:matrix(0.225885,-0.004969,0.005499,0.249940,0,0);-ms-transform:matrix(0.225885,-0.004969,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225885,-0.004969,0.005499,0.249940,0,0);}
.m8d_c00325{transform:matrix(0.226135,-0.003392,0.003750,0.249972,0,0);-ms-transform:matrix(0.226135,-0.003392,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226135,-0.003392,0.003750,0.249972,0,0);}
.mae_c00325{transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);-ms-transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226665,-0.003400,0.003750,0.249972,0,0);}
.mef_c00325{transform:matrix(0.226689,-0.003400,0.003750,0.249972,0,0);-ms-transform:matrix(0.226689,-0.003400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226689,-0.003400,0.003750,0.249972,0,0);}
.m7_c00325{transform:matrix(0.227200,-0.005453,0.005998,0.249928,0,0);-ms-transform:matrix(0.227200,-0.005453,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227200,-0.005453,0.005998,0.249928,0,0);}
.md0_c00325{transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);-ms-transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);}
.m6_c00325{transform:matrix(0.229214,-0.005501,0.005998,0.249928,0,0);-ms-transform:matrix(0.229214,-0.005501,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229214,-0.005501,0.005998,0.249928,0,0);}
.ma6_c00325{transform:matrix(0.230104,-0.003452,0.003750,0.249972,0,0);-ms-transform:matrix(0.230104,-0.003452,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230104,-0.003452,0.003750,0.249972,0,0);}
.ma9_c00325{transform:matrix(0.230584,-0.003459,0.003750,0.249972,0,0);-ms-transform:matrix(0.230584,-0.003459,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230584,-0.003459,0.003750,0.249972,0,0);}
.m8e_c00325{transform:matrix(0.231654,-0.003475,0.003750,0.249972,0,0);-ms-transform:matrix(0.231654,-0.003475,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231654,-0.003475,0.003750,0.249972,0,0);}
.m9b_c00325{transform:matrix(0.231759,-0.003476,0.003750,0.249972,0,0);-ms-transform:matrix(0.231759,-0.003476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231759,-0.003476,0.003750,0.249972,0,0);}
.m97_c00325{transform:matrix(0.232419,-0.003486,0.003750,0.249972,0,0);-ms-transform:matrix(0.232419,-0.003486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232419,-0.003486,0.003750,0.249972,0,0);}
.m83_c00325{transform:matrix(0.233529,-0.003503,0.003750,0.249972,0,0);-ms-transform:matrix(0.233529,-0.003503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233529,-0.003503,0.003750,0.249972,0,0);}
.m96_c00325{transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);-ms-transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);}
.m85_c00325{transform:matrix(0.236163,-0.003542,0.003750,0.249972,0,0);-ms-transform:matrix(0.236163,-0.003542,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236163,-0.003542,0.003750,0.249972,0,0);}
.me9_c00325{transform:matrix(0.236213,-0.003543,0.003750,0.249972,0,0);-ms-transform:matrix(0.236213,-0.003543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236213,-0.003543,0.003750,0.249972,0,0);}
.m14_c00325{transform:matrix(0.236423,-0.004965,0.005249,0.249945,0,0);-ms-transform:matrix(0.236423,-0.004965,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236423,-0.004965,0.005249,0.249945,0,0);}
.mc9_c00325{transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-ms-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);}
.md4_c00325{transform:matrix(0.238033,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.238033,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238033,-0.003570,0.003750,0.249972,0,0);}
.m8b_c00325{transform:matrix(0.240218,-0.003603,0.003750,0.249972,0,0);-ms-transform:matrix(0.240218,-0.003603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240218,-0.003603,0.003750,0.249972,0,0);}
.m93_c00325{transform:matrix(0.242223,-0.003633,0.003750,0.249972,0,0);-ms-transform:matrix(0.242223,-0.003633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242223,-0.003633,0.003750,0.249972,0,0);}
.m8c_c00325{transform:matrix(0.242283,-0.003634,0.003750,0.249972,0,0);-ms-transform:matrix(0.242283,-0.003634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242283,-0.003634,0.003750,0.249972,0,0);}
.m91_c00325{transform:matrix(0.248422,-0.003726,0.003750,0.249972,0,0);-ms-transform:matrix(0.248422,-0.003726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248422,-0.003726,0.003750,0.249972,0,0);}
.m74_c00325{transform:matrix(0.252110,-0.005042,0.004999,0.249950,0,0);-ms-transform:matrix(0.252110,-0.005042,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252110,-0.005042,0.004999,0.249950,0,0);}
.m13_c00325{transform:matrix(0.254614,-0.005347,0.005249,0.249945,0,0);-ms-transform:matrix(0.254614,-0.005347,0.005249,0.249945,0,0);-webkit-transform:matrix(0.254614,-0.005347,0.005249,0.249945,0,0);}
.m90_c00325{transform:matrix(0.260661,-0.003910,0.003750,0.249972,0,0);-ms-transform:matrix(0.260661,-0.003910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260661,-0.003910,0.003750,0.249972,0,0);}
.m73_c00325{transform:matrix(0.268781,-0.005376,0.004999,0.249950,0,0);-ms-transform:matrix(0.268781,-0.005376,0.004999,0.249950,0,0);-webkit-transform:matrix(0.268781,-0.005376,0.004999,0.249950,0,0);}
.m84_c00325{transform:matrix(0.269855,-0.004048,0.003750,0.249972,0,0);-ms-transform:matrix(0.269855,-0.004048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269855,-0.004048,0.003750,0.249972,0,0);}
.mf0_c00325{transform:matrix(0.312650,-0.004690,0.003750,0.249972,0,0);-ms-transform:matrix(0.312650,-0.004690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.312650,-0.004690,0.003750,0.249972,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:0.000000px;}
.fc0_c00325{color:transparent;}
.fsf_c00325{font-size:55.656260px;}
.fs14_c00325{font-size:56.706378px;}
.fs1_c00325{font-size:56.716327px;}
.fse_c00325{font-size:57.756497px;}
.fs10_c00325{font-size:58.806615px;}
.fsd_c00325{font-size:59.856733px;}
.fs3_c00325{font-size:60.913427px;}
.fs9_c00325{font-size:60.914736px;}
.fs11_c00325{font-size:61.956969px;}
.fs15_c00325{font-size:63.007087px;}
.fs8_c00325{font-size:63.013890px;}
.fs4_c00325{font-size:64.064121px;}
.fs16_c00325{font-size:65.107323px;}
.fsc_c00325{font-size:65.108332px;}
.fs7_c00325{font-size:65.114353px;}
.fs0_c00325{font-size:66.150000px;}
.fs6_c00325{font-size:66.164584px;}
.fs13_c00325{font-size:67.207560px;}
.fsa_c00325{font-size:68.263649px;}
.fs5_c00325{font-size:68.265047px;}
.fs12_c00325{font-size:69.307796px;}
.fsb_c00325{font-size:69.313859px;}
.fs2_c00325{font-size:69.315279px;}
.fs17_c00325{font-size:70.357914px;}
.y0_c00325{bottom:0.000000px;}
.yf4_c00325{bottom:25.626015px;}
.yf5_c00325{bottom:26.141662px;}
.yf6_c00325{bottom:26.409300px;}
.yf7_c00325{bottom:27.339847px;}
.yf8_c00325{bottom:27.543427px;}
.yf9_c00325{bottom:28.185465px;}
.yfa_c00325{bottom:28.595910px;}
.yfb_c00325{bottom:29.010120px;}
.yea_c00325{bottom:42.366930px;}
.yeb_c00325{bottom:42.712972px;}
.yec_c00325{bottom:43.405410px;}
.yed_c00325{bottom:43.590675px;}
.yee_c00325{bottom:43.916723px;}
.yef_c00325{bottom:44.200995px;}
.yf0_c00325{bottom:44.970413px;}
.yf1_c00325{bottom:45.141675px;}
.yf2_c00325{bottom:45.902670px;}
.yf3_c00325{bottom:46.330500px;}
.ye2_c00325{bottom:59.647365px;}
.ye3_c00325{bottom:60.129270px;}
.ye4_c00325{bottom:60.410137px;}
.ye5_c00325{bottom:61.304242px;}
.ye6_c00325{bottom:61.608982px;}
.ye7_c00325{bottom:62.527207px;}
.ye8_c00325{bottom:63.071010px;}
.ye9_c00325{bottom:63.564997px;}
.yda_c00325{bottom:76.388310px;}
.ydb_c00325{bottom:76.733400px;}
.ydc_c00325{bottom:77.017110px;}
.ydd_c00325{bottom:77.479245px;}
.yde_c00325{bottom:78.456457px;}
.ydf_c00325{bottom:78.955845px;}
.ye0_c00325{bottom:79.292655px;}
.ye1_c00325{bottom:80.076112px;}
.yd3_c00325{bottom:93.130545px;}
.yd4_c00325{bottom:93.842242px;}
.yd5_c00325{bottom:94.159447px;}
.yd6_c00325{bottom:95.184052px;}
.yd7_c00325{bottom:95.770132px;}
.yd8_c00325{bottom:96.095302px;}
.yd9_c00325{bottom:96.945825px;}
.yc9_c00325{bottom:110.142465px;}
.yca_c00325{bottom:110.577322px;}
.ycb_c00325{bottom:111.075247px;}
.ycc_c00325{bottom:111.331920px;}
.ycd_c00325{bottom:112.078777px;}
.yce_c00325{bottom:112.437345px;}
.ycf_c00325{bottom:112.854795px;}
.yd0_c00325{bottom:113.072355px;}
.yd1_c00325{bottom:113.546235px;}
.yd2_c00325{bottom:113.711490px;}
.yc1_c00325{bottom:127.424430px;}
.yc2_c00325{bottom:128.006580px;}
.yc3_c00325{bottom:128.244757px;}
.yc4_c00325{bottom:129.300045px;}
.yc5_c00325{bottom:129.585787px;}
.yc6_c00325{bottom:129.862072px;}
.yc7_c00325{bottom:130.628745px;}
.yc8_c00325{bottom:131.181675px;}
.yb9_c00325{bottom:144.165877px;}
.yba_c00325{bottom:144.541380px;}
.ybb_c00325{bottom:145.262895px;}
.ybc_c00325{bottom:145.550505px;}
.ybd_c00325{bottom:146.148450px;}
.ybe_c00325{bottom:146.480805px;}
.ybf_c00325{bottom:146.832022px;}
.yc0_c00325{bottom:148.040887px;}
.yb1_c00325{bottom:163.471245px;}
.yb2_c00325{bottom:163.471905px;}
.yb3_c00325{bottom:163.472610px;}
.yb4_c00325{bottom:163.473248px;}
.yb8_c00325{bottom:163.473645px;}
.yb5_c00325{bottom:163.473653px;}
.yb7_c00325{bottom:163.473990px;}
.yb6_c00325{bottom:163.474357px;}
.ya8_c00325{bottom:178.999703px;}
.ya9_c00325{bottom:179.560905px;}
.yaa_c00325{bottom:179.820083px;}
.yab_c00325{bottom:180.609923px;}
.yac_c00325{bottom:181.151910px;}
.yad_c00325{bottom:181.779960px;}
.yae_c00325{bottom:182.021257px;}
.yaf_c00325{bottom:182.544293px;}
.yb0_c00325{bottom:182.705070px;}
.ya2_c00325{bottom:196.820295px;}
.ya3_c00325{bottom:197.529458px;}
.ya4_c00325{bottom:198.007230px;}
.ya5_c00325{bottom:199.174118px;}
.ya6_c00325{bottom:199.436145px;}
.ya7_c00325{bottom:200.181870px;}
.y9b_c00325{bottom:214.372763px;}
.y9c_c00325{bottom:214.993313px;}
.y9d_c00325{bottom:215.162775px;}
.y9e_c00325{bottom:215.486490px;}
.y9f_c00325{bottom:215.699663px;}
.ya0_c00325{bottom:216.053108px;}
.ya1_c00325{bottom:217.074083px;}
.y92_c00325{bottom:231.383790px;}
.y93_c00325{bottom:231.843840px;}
.y94_c00325{bottom:232.598910px;}
.y95_c00325{bottom:232.798395px;}
.y96_c00325{bottom:233.198663px;}
.y97_c00325{bottom:233.900550px;}
.y98_c00325{bottom:234.108293px;}
.y99_c00325{bottom:234.599393px;}
.y9a_c00325{bottom:234.965678px;}
.y8c_c00325{bottom:247.587525px;}
.y8d_c00325{bottom:248.640322px;}
.y8e_c00325{bottom:249.096705px;}
.y8f_c00325{bottom:250.633605px;}
.y90_c00325{bottom:250.892895px;}
.y91_c00325{bottom:251.391967px;}
.y84_c00325{bottom:264.060518px;}
.y85_c00325{bottom:264.545273px;}
.y86_c00325{bottom:265.415115px;}
.y87_c00325{bottom:265.615147px;}
.y88_c00325{bottom:266.574802px;}
.y89_c00325{bottom:266.906325px;}
.y8a_c00325{bottom:267.231660px;}
.y8b_c00325{bottom:268.033845px;}
.y7d_c00325{bottom:280.803000px;}
.y7e_c00325{bottom:281.572770px;}
.y7f_c00325{bottom:282.236160px;}
.y80_c00325{bottom:282.820147px;}
.y81_c00325{bottom:283.819597px;}
.y82_c00325{bottom:284.298532px;}
.y83_c00325{bottom:284.578005px;}
.y77_c00325{bottom:297.543000px;}
.y78_c00325{bottom:297.988104px;}
.y79_c00325{bottom:299.011944px;}
.y7a_c00325{bottom:299.473440px;}
.y7b_c00325{bottom:300.256512px;}
.y7c_c00325{bottom:301.858344px;}
.y6f_c00325{bottom:315.091230px;}
.y70_c00325{bottom:315.560790px;}
.y71_c00325{bottom:316.054050px;}
.y72_c00325{bottom:317.059470px;}
.y73_c00325{bottom:317.376300px;}
.y74_c00325{bottom:318.115050px;}
.y75_c00325{bottom:318.459000px;}
.y76_c00325{bottom:319.532940px;}
.y6a_c00325{bottom:331.566000px;}
.y6b_c00325{bottom:332.627970px;}
.y6c_c00325{bottom:332.991870px;}
.y6d_c00325{bottom:333.983340px;}
.y6e_c00325{bottom:334.261170px;}
.y63_c00325{bottom:348.577500px;}
.y64_c00325{bottom:350.074281px;}
.y65_c00325{bottom:350.567433px;}
.y66_c00325{bottom:351.108369px;}
.y67_c00325{bottom:353.002635px;}
.y68_c00325{bottom:354.663327px;}
.y69_c00325{bottom:354.904260px;}
.y5a_c00325{bottom:366.084131px;}
.y5b_c00325{bottom:366.613176px;}
.y5c_c00325{bottom:367.028978px;}
.y5d_c00325{bottom:367.813830px;}
.y5e_c00325{bottom:368.424155px;}
.y5f_c00325{bottom:368.747022px;}
.y60_c00325{bottom:369.957390px;}
.y61_c00325{bottom:370.435421px;}
.y62_c00325{bottom:371.465799px;}
.y52_c00325{bottom:383.366939px;}
.y53_c00325{bottom:384.791934px;}
.y54_c00325{bottom:385.263892px;}
.y55_c00325{bottom:385.536924px;}
.y56_c00325{bottom:385.989312px;}
.y57_c00325{bottom:386.549453px;}
.y58_c00325{bottom:386.797850px;}
.y59_c00325{bottom:387.165155px;}
.y4a_c00325{bottom:400.650838px;}
.y4b_c00325{bottom:401.478505px;}
.y4c_c00325{bottom:401.818990px;}
.y4d_c00325{bottom:402.824773px;}
.y4e_c00325{bottom:403.096702px;}
.y4f_c00325{bottom:403.946598px;}
.y50_c00325{bottom:404.211687px;}
.y51_c00325{bottom:404.658822px;}
.y42_c00325{bottom:417.666443px;}
.y43_c00325{bottom:418.524281px;}
.y44_c00325{bottom:418.731402px;}
.y45_c00325{bottom:419.184546px;}
.y46_c00325{bottom:420.047416px;}
.y47_c00325{bottom:420.425574px;}
.y48_c00325{bottom:421.195431px;}
.y49_c00325{bottom:421.623153px;}
.y39_c00325{bottom:434.408733px;}
.y3a_c00325{bottom:434.944065px;}
.y3b_c00325{bottom:435.272922px;}
.y3c_c00325{bottom:435.548633px;}
.y3d_c00325{bottom:436.110044px;}
.y3e_c00325{bottom:436.356954px;}
.y3f_c00325{bottom:437.235039px;}
.y40_c00325{bottom:438.129760px;}
.y41_c00325{bottom:439.015418px;}
.y31_c00325{bottom:451.692930px;}
.y32_c00325{bottom:451.991206px;}
.y33_c00325{bottom:452.799417px;}
.y34_c00325{bottom:453.072606px;}
.y35_c00325{bottom:453.609215px;}
.y36_c00325{bottom:453.937694px;}
.y37_c00325{bottom:454.977912px;}
.y38_c00325{bottom:455.219638px;}
.y29_c00325{bottom:468.434903px;}
.y2a_c00325{bottom:468.877646px;}
.y2b_c00325{bottom:469.565777px;}
.y2c_c00325{bottom:469.801698px;}
.y2d_c00325{bottom:470.503950px;}
.y2e_c00325{bottom:471.293700px;}
.y2f_c00325{bottom:471.577742px;}
.y30_c00325{bottom:471.908600px;}
.y22_c00325{bottom:485.449525px;}
.y23_c00325{bottom:485.840048px;}
.y24_c00325{bottom:486.391679px;}
.y25_c00325{bottom:487.244874px;}
.y26_c00325{bottom:487.860998px;}
.y27_c00325{bottom:488.793696px;}
.y28_c00325{bottom:489.015009px;}
.y18_c00325{bottom:501.656217px;}
.y19_c00325{bottom:501.953313px;}
.y1a_c00325{bottom:502.399650px;}
.y1b_c00325{bottom:502.671140px;}
.y1c_c00325{bottom:503.029187px;}
.y1d_c00325{bottom:503.348582px;}
.y1e_c00325{bottom:504.450806px;}
.y1f_c00325{bottom:504.791889px;}
.y20_c00325{bottom:505.418043px;}
.y21_c00325{bottom:505.983876px;}
.y10_c00325{bottom:518.402084px;}
.y11_c00325{bottom:519.593351px;}
.y12_c00325{bottom:520.007040px;}
.y13_c00325{bottom:520.863368px;}
.y14_c00325{bottom:521.892819px;}
.y15_c00325{bottom:522.190337px;}
.y16_c00325{bottom:523.520707px;}
.y17_c00325{bottom:523.949423px;}
.ya_c00325{bottom:535.146000px;}
.yb_c00325{bottom:536.536032px;}
.yc_c00325{bottom:537.908361px;}
.yd_c00325{bottom:539.552409px;}
.ye_c00325{bottom:540.567591px;}
.yf_c00325{bottom:540.928833px;}
.y2_c00325{bottom:552.154500px;}
.y3_c00325{bottom:552.770244px;}
.y4_c00325{bottom:553.232844px;}
.y5_c00325{bottom:554.328720px;}
.y6_c00325{bottom:555.456060px;}
.y7_c00325{bottom:556.752312px;}
.y8_c00325{bottom:557.204400px;}
.y9_c00325{bottom:558.241848px;}
.y1_c00325{bottom:573.870000px;}
.h11_c00325{height:55.656260px;}
.h16_c00325{height:56.706378px;}
.h3_c00325{height:56.716327px;}
.h10_c00325{height:57.756497px;}
.h12_c00325{height:58.806615px;}
.hf_c00325{height:59.856733px;}
.h5_c00325{height:60.913427px;}
.hb_c00325{height:60.914736px;}
.h13_c00325{height:61.956969px;}
.h17_c00325{height:63.007087px;}
.ha_c00325{height:63.013890px;}
.h6_c00325{height:64.064121px;}
.h18_c00325{height:65.107323px;}
.he_c00325{height:65.108332px;}
.h9_c00325{height:65.114353px;}
.h2_c00325{height:66.150000px;}
.h8_c00325{height:66.164584px;}
.h15_c00325{height:67.207560px;}
.hc_c00325{height:68.263649px;}
.h7_c00325{height:68.265047px;}
.h14_c00325{height:69.307796px;}
.hd_c00325{height:69.313859px;}
.h4_c00325{height:69.315279px;}
.h19_c00325{height:70.357914px;}
.h0_c00325{height:613.170000px;}
.h1_c00325{height:613.500000px;}
.w0_c00325{width:359.100000px;}
.w1_c00325{width:359.250000px;}
.x0_c00325{left:0.000000px;}
.x79_c00325{left:39.592823px;}
.x73_c00325{left:41.975153px;}
.x3c_c00325{left:43.114965px;}
.x1f_c00325{left:44.119619px;}
.x3_c00325{left:45.297000px;}
.xf_c00325{left:47.527422px;}
.x17_c00325{left:63.319155px;}
.x4b_c00325{left:64.764270px;}
.x29_c00325{left:65.792487px;}
.x67_c00325{left:69.597300px;}
.x4_c00325{left:70.953000px;}
.x20_c00325{left:72.005714px;}
.x41_c00325{left:73.967739px;}
.x6f_c00325{left:76.037595px;}
.x24_c00325{left:78.202499px;}
.x7d_c00325{left:81.961178px;}
.x6b_c00325{left:84.428603px;}
.x5f_c00325{left:86.310885px;}
.x5_c00325{left:90.228000px;}
.x77_c00325{left:93.614888px;}
.x42_c00325{left:95.840152px;}
.x2e_c00325{left:98.763450px;}
.x6c_c00325{left:101.407350px;}
.x37_c00325{left:102.788094px;}
.x10_c00325{left:104.254422px;}
.x60_c00325{left:106.289993px;}
.x18_c00325{left:108.220380px;}
.xb_c00325{left:111.553500px;}
.x7a_c00325{left:113.825948px;}
.x5b_c00325{left:114.841395px;}
.x2f_c00325{left:115.965745px;}
.x4c_c00325{left:118.232400px;}
.x34_c00325{left:120.000030px;}
.x64_c00325{left:121.507073px;}
.x11_c00325{left:123.953922px;}
.x38_c00325{left:127.076653px;}
.x19_c00325{left:130.629743px;}
.x48_c00325{left:133.702500px;}
.x6_c00325{left:135.889500px;}
.x43_c00325{left:137.144385px;}
.x53_c00325{left:139.200000px;}
.x68_c00325{left:141.673380px;}
.x2a_c00325{left:143.013327px;}
.x3d_c00325{left:144.915427px;}
.x25_c00325{left:149.216905px;}
.x1a_c00325{left:150.626853px;}
.x35_c00325{left:152.368786px;}
.x55_c00325{left:154.085107px;}
.x49_c00325{left:158.290500px;}
.x12_c00325{left:164.731422px;}
.x30_c00325{left:166.462537px;}
.x44_c00325{left:169.280239px;}
.x7b_c00325{left:170.565780px;}
.x21_c00325{left:172.416987px;}
.x4d_c00325{left:174.130650px;}
.xc_c00325{left:176.902500px;}
.x1_c00325{left:178.200000px;}
.x72_c00325{left:179.473710px;}
.x2b_c00325{left:181.357465px;}
.x7_c00325{left:182.862000px;}
.x69_c00325{left:184.337010px;}
.x45_c00325{left:186.298464px;}
.x65_c00325{left:187.664445px;}
.x74_c00325{left:189.653858px;}
.x4e_c00325{left:191.697840px;}
.x5c_c00325{left:195.901778px;}
.x6d_c00325{left:197.210790px;}
.x39_c00325{left:198.910206px;}
.x26_c00325{left:203.237977px;}
.x2c_c00325{left:204.859930px;}
.x61_c00325{left:208.681553px;}
.x51_c00325{left:212.727000px;}
.x13_c00325{left:213.752922px;}
.x22_c00325{left:216.476976px;}
.x3a_c00325{left:218.362073px;}
.x1b_c00325{left:219.478067px;}
.x31_c00325{left:221.353302px;}
.x56_c00325{left:222.663142px;}
.x75_c00325{left:225.346898px;}
.x14_c00325{left:227.920422px;}
.x3e_c00325{left:230.445996px;}
.x4f_c00325{left:232.761990px;}
.x78_c00325{left:234.752888px;}
.x8_c00325{left:236.872500px;}
.x7e_c00325{left:239.119380px;}
.x1c_c00325{left:240.793803px;}
.x4a_c00325{left:244.393500px;}
.x57_c00325{left:246.365002px;}
.x46_c00325{left:250.009141px;}
.x50_c00325{left:251.910270px;}
.x9_c00325{left:255.709500px;}
.x62_c00325{left:256.952993px;}
.x5d_c00325{left:262.068360px;}
.x27_c00325{left:263.998183px;}
.x70_c00325{left:267.978855px;}
.x3f_c00325{left:270.482387px;}
.x6e_c00325{left:271.742415px;}
.x47_c00325{left:275.130681px;}
.x32_c00325{left:277.250661px;}
.x66_c00325{left:278.934465px;}
.x1d_c00325{left:279.971930px;}
.x23_c00325{left:283.115273px;}
.x28_c00325{left:285.813338px;}
.x40_c00325{left:288.242001px;}
.x15_c00325{left:291.271422px;}
.x54_c00325{left:295.323000px;}
.x2d_c00325{left:296.418381px;}
.x58_c00325{left:297.454642px;}
.xa_c00325{left:298.936500px;}
.xd_c00325{left:303.532500px;}
.x76_c00325{left:305.332590px;}
.x16_c00325{left:311.686422px;}
.x52_c00325{left:312.841500px;}
.x1e_c00325{left:315.348647px;}
.x71_c00325{left:317.189340px;}
.x5a_c00325{left:318.483727px;}
.x6a_c00325{left:319.601558px;}
.xe_c00325{left:320.734500px;}
.x7c_c00325{left:322.635053px;}
.x5e_c00325{left:324.186150px;}
.x36_c00325{left:326.661428px;}
.x63_c00325{left:328.229153px;}
.x3b_c00325{left:329.907952px;}
.x2_c00325{left:331.290000px;}
.x33_c00325{left:332.573457px;}
.x59_c00325{left:335.827290px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
.fsf_c00325{font-size:49.472231pt;}
.fs14_c00325{font-size:50.405670pt;}
.fs1_c00325{font-size:50.414513pt;}
.fse_c00325{font-size:51.339108pt;}
.fs10_c00325{font-size:52.272546pt;}
.fsd_c00325{font-size:53.205985pt;}
.fs3_c00325{font-size:54.145268pt;}
.fs9_c00325{font-size:54.146432pt;}
.fs11_c00325{font-size:55.072861pt;}
.fs15_c00325{font-size:56.006300pt;}
.fs8_c00325{font-size:56.012347pt;}
.fs4_c00325{font-size:56.945886pt;}
.fs16_c00325{font-size:57.873176pt;}
.fsc_c00325{font-size:57.874073pt;}
.fs7_c00325{font-size:57.879425pt;}
.fs0_c00325{font-size:58.800000pt;}
.fs6_c00325{font-size:58.812964pt;}
.fs13_c00325{font-size:59.740053pt;}
.fsa_c00325{font-size:60.678799pt;}
.fs5_c00325{font-size:60.680042pt;}
.fs12_c00325{font-size:61.606930pt;}
.fsb_c00325{font-size:61.612319pt;}
.fs2_c00325{font-size:61.613581pt;}
.fs17_c00325{font-size:62.540368pt;}
.y0_c00325{bottom:0.000000pt;}
.yf4_c00325{bottom:22.778680pt;}
.yf5_c00325{bottom:23.237033pt;}
.yf6_c00325{bottom:23.474933pt;}
.yf7_c00325{bottom:24.302087pt;}
.yf8_c00325{bottom:24.483047pt;}
.yf9_c00325{bottom:25.053747pt;}
.yfa_c00325{bottom:25.418587pt;}
.yfb_c00325{bottom:25.786773pt;}
.yea_c00325{bottom:37.659493pt;}
.yeb_c00325{bottom:37.967087pt;}
.yec_c00325{bottom:38.582587pt;}
.yed_c00325{bottom:38.747267pt;}
.yee_c00325{bottom:39.037087pt;}
.yef_c00325{bottom:39.289773pt;}
.yf0_c00325{bottom:39.973700pt;}
.yf1_c00325{bottom:40.125933pt;}
.yf2_c00325{bottom:40.802373pt;}
.yf3_c00325{bottom:41.182667pt;}
.ye2_c00325{bottom:53.019880pt;}
.ye3_c00325{bottom:53.448240pt;}
.ye4_c00325{bottom:53.697900pt;}
.ye5_c00325{bottom:54.492660pt;}
.ye6_c00325{bottom:54.763540pt;}
.ye7_c00325{bottom:55.579740pt;}
.ye8_c00325{bottom:56.063120pt;}
.ye9_c00325{bottom:56.502220pt;}
.yda_c00325{bottom:67.900720pt;}
.ydb_c00325{bottom:68.207467pt;}
.ydc_c00325{bottom:68.459653pt;}
.ydd_c00325{bottom:68.870440pt;}
.yde_c00325{bottom:69.739073pt;}
.ydf_c00325{bottom:70.182973pt;}
.ye0_c00325{bottom:70.482360pt;}
.ye1_c00325{bottom:71.178767pt;}
.yd3_c00325{bottom:82.782707pt;}
.yd4_c00325{bottom:83.415327pt;}
.yd5_c00325{bottom:83.697287pt;}
.yd6_c00325{bottom:84.608047pt;}
.yd7_c00325{bottom:85.129007pt;}
.yd8_c00325{bottom:85.418047pt;}
.yd9_c00325{bottom:86.174067pt;}
.yc9_c00325{bottom:97.904413pt;}
.yca_c00325{bottom:98.290953pt;}
.ycb_c00325{bottom:98.733553pt;}
.ycc_c00325{bottom:98.961707pt;}
.ycd_c00325{bottom:99.625580pt;}
.yce_c00325{bottom:99.944307pt;}
.ycf_c00325{bottom:100.315373pt;}
.yd0_c00325{bottom:100.508760pt;}
.yd1_c00325{bottom:100.929987pt;}
.yd2_c00325{bottom:101.076880pt;}
.yc1_c00325{bottom:113.266160pt;}
.yc2_c00325{bottom:113.783627pt;}
.yc3_c00325{bottom:113.995340pt;}
.yc4_c00325{bottom:114.933373pt;}
.yc5_c00325{bottom:115.187367pt;}
.yc6_c00325{bottom:115.432953pt;}
.yc7_c00325{bottom:116.114440pt;}
.yc8_c00325{bottom:116.605933pt;}
.yb9_c00325{bottom:128.147447pt;}
.yba_c00325{bottom:128.481227pt;}
.ybb_c00325{bottom:129.122573pt;}
.ybc_c00325{bottom:129.378227pt;}
.ybd_c00325{bottom:129.909733pt;}
.ybe_c00325{bottom:130.205160pt;}
.ybf_c00325{bottom:130.517353pt;}
.yc0_c00325{bottom:131.591900pt;}
.yb1_c00325{bottom:145.307773pt;}
.yb2_c00325{bottom:145.308360pt;}
.yb3_c00325{bottom:145.308987pt;}
.yb4_c00325{bottom:145.309553pt;}
.yb8_c00325{bottom:145.309907pt;}
.yb5_c00325{bottom:145.309913pt;}
.yb7_c00325{bottom:145.310213pt;}
.yb6_c00325{bottom:145.310540pt;}
.ya8_c00325{bottom:159.110847pt;}
.ya9_c00325{bottom:159.609693pt;}
.yaa_c00325{bottom:159.840073pt;}
.yab_c00325{bottom:160.542153pt;}
.yac_c00325{bottom:161.023920pt;}
.yad_c00325{bottom:161.582187pt;}
.yae_c00325{bottom:161.796673pt;}
.yaf_c00325{bottom:162.261593pt;}
.yb0_c00325{bottom:162.404507pt;}
.ya2_c00325{bottom:174.951373pt;}
.ya3_c00325{bottom:175.581740pt;}
.ya4_c00325{bottom:176.006427pt;}
.ya5_c00325{bottom:177.043660pt;}
.ya6_c00325{bottom:177.276573pt;}
.ya7_c00325{bottom:177.939440pt;}
.y9b_c00325{bottom:190.553567pt;}
.y9c_c00325{bottom:191.105167pt;}
.y9d_c00325{bottom:191.255800pt;}
.y9e_c00325{bottom:191.543547pt;}
.y9f_c00325{bottom:191.733033pt;}
.ya0_c00325{bottom:192.047207pt;}
.ya1_c00325{bottom:192.954740pt;}
.y92_c00325{bottom:205.674480pt;}
.y93_c00325{bottom:206.083413pt;}
.y94_c00325{bottom:206.754587pt;}
.y95_c00325{bottom:206.931907pt;}
.y96_c00325{bottom:207.287700pt;}
.y97_c00325{bottom:207.911600pt;}
.y98_c00325{bottom:208.096260pt;}
.y99_c00325{bottom:208.532793pt;}
.y9a_c00325{bottom:208.858380pt;}
.y8c_c00325{bottom:220.077800pt;}
.y8d_c00325{bottom:221.013620pt;}
.y8e_c00325{bottom:221.419293pt;}
.y8f_c00325{bottom:222.785427pt;}
.y90_c00325{bottom:223.015907pt;}
.y91_c00325{bottom:223.459527pt;}
.y84_c00325{bottom:234.720460pt;}
.y85_c00325{bottom:235.151353pt;}
.y86_c00325{bottom:235.924547pt;}
.y87_c00325{bottom:236.102353pt;}
.y88_c00325{bottom:236.955380pt;}
.y89_c00325{bottom:237.250067pt;}
.y8a_c00325{bottom:237.539253pt;}
.y8b_c00325{bottom:238.252307pt;}
.y7d_c00325{bottom:249.602667pt;}
.y7e_c00325{bottom:250.286907pt;}
.y7f_c00325{bottom:250.876587pt;}
.y80_c00325{bottom:251.395687pt;}
.y81_c00325{bottom:252.284087pt;}
.y82_c00325{bottom:252.709807pt;}
.y83_c00325{bottom:252.958227pt;}
.y77_c00325{bottom:264.482667pt;}
.y78_c00325{bottom:264.878315pt;}
.y79_c00325{bottom:265.788395pt;}
.y7a_c00325{bottom:266.198613pt;}
.y7b_c00325{bottom:266.894677pt;}
.y7c_c00325{bottom:268.318528pt;}
.y6f_c00325{bottom:280.081093pt;}
.y70_c00325{bottom:280.498480pt;}
.y71_c00325{bottom:280.936933pt;}
.y72_c00325{bottom:281.830640pt;}
.y73_c00325{bottom:282.112267pt;}
.y74_c00325{bottom:282.768933pt;}
.y75_c00325{bottom:283.074667pt;}
.y76_c00325{bottom:284.029280pt;}
.y6a_c00325{bottom:294.725333pt;}
.y6b_c00325{bottom:295.669307pt;}
.y6c_c00325{bottom:295.992773pt;}
.y6d_c00325{bottom:296.874080pt;}
.y6e_c00325{bottom:297.121040pt;}
.y63_c00325{bottom:309.846667pt;}
.y64_c00325{bottom:311.177139pt;}
.y65_c00325{bottom:311.615496pt;}
.y66_c00325{bottom:312.096328pt;}
.y67_c00325{bottom:313.780120pt;}
.y68_c00325{bottom:315.256291pt;}
.y69_c00325{bottom:315.470453pt;}
.y5a_c00325{bottom:325.408116pt;}
.y5b_c00325{bottom:325.878379pt;}
.y5c_c00325{bottom:326.247980pt;}
.y5d_c00325{bottom:326.945627pt;}
.y5e_c00325{bottom:327.488137pt;}
.y5f_c00325{bottom:327.775131pt;}
.y60_c00325{bottom:328.851013pt;}
.y61_c00325{bottom:329.275929pt;}
.y62_c00325{bottom:330.191821pt;}
.y52_c00325{bottom:340.770612pt;}
.y53_c00325{bottom:342.037275pt;}
.y54_c00325{bottom:342.456793pt;}
.y55_c00325{bottom:342.699488pt;}
.y56_c00325{bottom:343.101611pt;}
.y57_c00325{bottom:343.599513pt;}
.y58_c00325{bottom:343.820311pt;}
.y59_c00325{bottom:344.146804pt;}
.y4a_c00325{bottom:356.134079pt;}
.y4b_c00325{bottom:356.869783pt;}
.y4c_c00325{bottom:357.172436pt;}
.y4d_c00325{bottom:358.066465pt;}
.y4e_c00325{bottom:358.308180pt;}
.y4f_c00325{bottom:359.063643pt;}
.y50_c00325{bottom:359.299277pt;}
.y51_c00325{bottom:359.696731pt;}
.y42_c00325{bottom:371.259060pt;}
.y43_c00325{bottom:372.021583pt;}
.y44_c00325{bottom:372.205691pt;}
.y45_c00325{bottom:372.608485pt;}
.y46_c00325{bottom:373.375481pt;}
.y47_c00325{bottom:373.711621pt;}
.y48_c00325{bottom:374.395939pt;}
.y49_c00325{bottom:374.776136pt;}
.y39_c00325{bottom:386.141096pt;}
.y3a_c00325{bottom:386.616947pt;}
.y3b_c00325{bottom:386.909264pt;}
.y3c_c00325{bottom:387.154340pt;}
.y3d_c00325{bottom:387.653372pt;}
.y3e_c00325{bottom:387.872848pt;}
.y3f_c00325{bottom:388.653368pt;}
.y40_c00325{bottom:389.448676pt;}
.y41_c00325{bottom:390.235927pt;}
.y31_c00325{bottom:401.504827pt;}
.y32_c00325{bottom:401.769961pt;}
.y33_c00325{bottom:402.488371pt;}
.y34_c00325{bottom:402.731205pt;}
.y35_c00325{bottom:403.208191pt;}
.y36_c00325{bottom:403.500172pt;}
.y37_c00325{bottom:404.424811pt;}
.y38_c00325{bottom:404.639679pt;}
.y29_c00325{bottom:416.386580pt;}
.y2a_c00325{bottom:416.780129pt;}
.y2b_c00325{bottom:417.391801pt;}
.y2c_c00325{bottom:417.601509pt;}
.y2d_c00325{bottom:418.225733pt;}
.y2e_c00325{bottom:418.927733pt;}
.y2f_c00325{bottom:419.180215pt;}
.y30_c00325{bottom:419.474311pt;}
.y22_c00325{bottom:431.510689pt;}
.y23_c00325{bottom:431.857820pt;}
.y24_c00325{bottom:432.348159pt;}
.y25_c00325{bottom:433.106555pt;}
.y26_c00325{bottom:433.654220pt;}
.y27_c00325{bottom:434.483285pt;}
.y28_c00325{bottom:434.680008pt;}
.y18_c00325{bottom:445.916637pt;}
.y19_c00325{bottom:446.180723pt;}
.y1a_c00325{bottom:446.577467pt;}
.y1b_c00325{bottom:446.818791pt;}
.y1c_c00325{bottom:447.137055pt;}
.y1d_c00325{bottom:447.420961pt;}
.y1e_c00325{bottom:448.400716pt;}
.y1f_c00325{bottom:448.703901pt;}
.y20_c00325{bottom:449.260483pt;}
.y21_c00325{bottom:449.763445pt;}
.y10_c00325{bottom:460.801852pt;}
.y11_c00325{bottom:461.860756pt;}
.y12_c00325{bottom:462.228480pt;}
.y13_c00325{bottom:462.989660pt;}
.y14_c00325{bottom:463.904728pt;}
.y15_c00325{bottom:464.169188pt;}
.y16_c00325{bottom:465.351740pt;}
.y17_c00325{bottom:465.732820pt;}
.ya_c00325{bottom:475.685333pt;}
.yb_c00325{bottom:476.920917pt;}
.yc_c00325{bottom:478.140765pt;}
.yd_c00325{bottom:479.602141pt;}
.ye_c00325{bottom:480.504525pt;}
.yf_c00325{bottom:480.825629pt;}
.y2_c00325{bottom:490.804000pt;}
.y3_c00325{bottom:491.351328pt;}
.y4_c00325{bottom:491.762528pt;}
.y5_c00325{bottom:492.736640pt;}
.y6_c00325{bottom:493.738720pt;}
.y7_c00325{bottom:494.890944pt;}
.y8_c00325{bottom:495.292800pt;}
.y9_c00325{bottom:496.214976pt;}
.y1_c00325{bottom:510.106667pt;}
.h11_c00325{height:49.472231pt;}
.h16_c00325{height:50.405670pt;}
.h3_c00325{height:50.414513pt;}
.h10_c00325{height:51.339108pt;}
.h12_c00325{height:52.272546pt;}
.hf_c00325{height:53.205985pt;}
.h5_c00325{height:54.145268pt;}
.hb_c00325{height:54.146432pt;}
.h13_c00325{height:55.072861pt;}
.h17_c00325{height:56.006300pt;}
.ha_c00325{height:56.012347pt;}
.h6_c00325{height:56.945886pt;}
.h18_c00325{height:57.873176pt;}
.he_c00325{height:57.874073pt;}
.h9_c00325{height:57.879425pt;}
.h2_c00325{height:58.800000pt;}
.h8_c00325{height:58.812964pt;}
.h15_c00325{height:59.740053pt;}
.hc_c00325{height:60.678799pt;}
.h7_c00325{height:60.680042pt;}
.h14_c00325{height:61.606930pt;}
.hd_c00325{height:61.612319pt;}
.h4_c00325{height:61.613581pt;}
.h19_c00325{height:62.540368pt;}
.h0_c00325{height:545.040000pt;}
.h1_c00325{height:545.333333pt;}
.w0_c00325{width:319.200000pt;}
.w1_c00325{width:319.333333pt;}
.x0_c00325{left:0.000000pt;}
.x79_c00325{left:35.193620pt;}
.x73_c00325{left:37.311247pt;}
.x3c_c00325{left:38.324413pt;}
.x1f_c00325{left:39.217439pt;}
.x3_c00325{left:40.264000pt;}
.xf_c00325{left:42.246597pt;}
.x17_c00325{left:56.283693pt;}
.x4b_c00325{left:57.568240pt;}
.x29_c00325{left:58.482211pt;}
.x67_c00325{left:61.864267pt;}
.x4_c00325{left:63.069333pt;}
.x20_c00325{left:64.005079pt;}
.x41_c00325{left:65.749101pt;}
.x6f_c00325{left:67.588973pt;}
.x24_c00325{left:69.513332pt;}
.x7d_c00325{left:72.854380pt;}
.x6b_c00325{left:75.047647pt;}
.x5f_c00325{left:76.720787pt;}
.x5_c00325{left:80.202667pt;}
.x77_c00325{left:83.213233pt;}
.x42_c00325{left:85.191247pt;}
.x2e_c00325{left:87.789733pt;}
.x6c_c00325{left:90.139867pt;}
.x37_c00325{left:91.367195pt;}
.x10_c00325{left:92.670597pt;}
.x60_c00325{left:94.479993pt;}
.x18_c00325{left:96.195893pt;}
.xb_c00325{left:99.158667pt;}
.x7a_c00325{left:101.178620pt;}
.x5b_c00325{left:102.081240pt;}
.x2f_c00325{left:103.080663pt;}
.x4c_c00325{left:105.095467pt;}
.x34_c00325{left:106.666693pt;}
.x64_c00325{left:108.006287pt;}
.x11_c00325{left:110.181264pt;}
.x38_c00325{left:112.957025pt;}
.x19_c00325{left:116.115327pt;}
.x48_c00325{left:118.846667pt;}
.x6_c00325{left:120.790667pt;}
.x43_c00325{left:121.906120pt;}
.x53_c00325{left:123.733333pt;}
.x68_c00325{left:125.931893pt;}
.x2a_c00325{left:127.122957pt;}
.x3d_c00325{left:128.813713pt;}
.x25_c00325{left:132.637249pt;}
.x1a_c00325{left:133.890536pt;}
.x35_c00325{left:135.438921pt;}
.x55_c00325{left:136.964540pt;}
.x49_c00325{left:140.702667pt;}
.x12_c00325{left:146.427931pt;}
.x30_c00325{left:147.966700pt;}
.x44_c00325{left:150.471324pt;}
.x7b_c00325{left:151.614027pt;}
.x21_c00325{left:153.259544pt;}
.x4d_c00325{left:154.782800pt;}
.xc_c00325{left:157.246667pt;}
.x1_c00325{left:158.400000pt;}
.x72_c00325{left:159.532187pt;}
.x2b_c00325{left:161.206636pt;}
.x7_c00325{left:162.544000pt;}
.x69_c00325{left:163.855120pt;}
.x45_c00325{left:165.598635pt;}
.x65_c00325{left:166.812840pt;}
.x74_c00325{left:168.581207pt;}
.x4e_c00325{left:170.398080pt;}
.x5c_c00325{left:174.134913pt;}
.x6d_c00325{left:175.298480pt;}
.x39_c00325{left:176.809072pt;}
.x26_c00325{left:180.655980pt;}
.x2c_c00325{left:182.097716pt;}
.x61_c00325{left:185.494713pt;}
.x51_c00325{left:189.090667pt;}
.x13_c00325{left:190.002597pt;}
.x22_c00325{left:192.423979pt;}
.x3a_c00325{left:194.099620pt;}
.x1b_c00325{left:195.091615pt;}
.x31_c00325{left:196.758491pt;}
.x56_c00325{left:197.922793pt;}
.x75_c00325{left:200.308353pt;}
.x14_c00325{left:202.595931pt;}
.x3e_c00325{left:204.840885pt;}
.x4f_c00325{left:206.899547pt;}
.x78_c00325{left:208.669233pt;}
.x8_c00325{left:210.553333pt;}
.x7e_c00325{left:212.550560pt;}
.x1c_c00325{left:214.038936pt;}
.x4a_c00325{left:217.238667pt;}
.x57_c00325{left:218.991113pt;}
.x46_c00325{left:222.230348pt;}
.x50_c00325{left:223.920240pt;}
.x9_c00325{left:227.297333pt;}
.x62_c00325{left:228.402660pt;}
.x5d_c00325{left:232.949653pt;}
.x27_c00325{left:234.665052pt;}
.x70_c00325{left:238.203427pt;}
.x3f_c00325{left:240.428788pt;}
.x6e_c00325{left:241.548813pt;}
.x47_c00325{left:244.560605pt;}
.x32_c00325{left:246.445032pt;}
.x66_c00325{left:247.941747pt;}
.x1d_c00325{left:248.863937pt;}
.x23_c00325{left:251.658020pt;}
.x28_c00325{left:254.056300pt;}
.x40_c00325{left:256.215112pt;}
.x15_c00325{left:258.907931pt;}
.x54_c00325{left:262.509333pt;}
.x2d_c00325{left:263.483005pt;}
.x58_c00325{left:264.404127pt;}
.xa_c00325{left:265.721333pt;}
.xd_c00325{left:269.806667pt;}
.x76_c00325{left:271.406747pt;}
.x16_c00325{left:277.054597pt;}
.x52_c00325{left:278.081333pt;}
.x1e_c00325{left:280.309908pt;}
.x71_c00325{left:281.946080pt;}
.x5a_c00325{left:283.096647pt;}
.x6a_c00325{left:284.090273pt;}
.xe_c00325{left:285.097333pt;}
.x7c_c00325{left:286.786713pt;}
.x5e_c00325{left:288.165467pt;}
.x36_c00325{left:290.365713pt;}
.x63_c00325{left:291.759247pt;}
.x3b_c00325{left:293.251513pt;}
.x2_c00325{left:294.480000pt;}
.x33_c00325{left:295.620851pt;}
.x59_c00325{left:298.513147pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00326 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00326 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00326 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00326 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00326.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00326{transform:matrix(0.096380,0.000964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.096380,0.000964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.096380,0.000964,-0.002500,0.249988,0,0);}
.mbe_c00326{transform:matrix(0.111305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111305,0.000000,0.000000,0.250000,0,0);}
.mb5_c00326{transform:matrix(0.121765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00326{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.140070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140070,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);}
.mdf_c00326{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.me6_c00326{transform:matrix(0.152405,0.002743,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152405,0.002743,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152405,0.002743,-0.004499,0.249960,0,0);}
.m50_c00326{transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.mde_c00326{transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);}
.me9_c00326{transform:matrix(0.156760,0.002822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156760,0.002822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156760,0.002822,-0.004499,0.249960,0,0);}
.mea_c00326{transform:matrix(0.157190,0.002829,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157190,0.002829,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157190,0.002829,-0.004499,0.249960,0,0);}
.m88_c00326{transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.mc9_c00326{transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164840,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.165545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165545,0.000000,0.000000,0.250000,0,0);}
.m85_c00326{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.mac_c00326{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.me0_c00326{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.med_c00326{transform:matrix(0.168348,0.003030,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168348,0.003030,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168348,0.003030,-0.004499,0.249960,0,0);}
.m52_c00326{transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);}
.me7_c00326{transform:matrix(0.169578,0.003052,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169578,0.003052,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169578,0.003052,-0.004499,0.249960,0,0);}
.m93_c00326{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.meb_c00326{transform:matrix(0.170977,0.003078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170977,0.003078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170977,0.003078,-0.004499,0.249960,0,0);}
.md9_c00326{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.me8_c00326{transform:matrix(0.171437,0.003086,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171437,0.003086,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171437,0.003086,-0.004499,0.249960,0,0);}
.mda_c00326{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.mab_c00326{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172410,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.172636,0.001726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172636,0.001726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172636,0.001726,-0.002500,0.249988,0,0);}
.mc_c00326{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m70_c00326{transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.mb3_c00326{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m33_c00326{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.ma3_c00326{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.md7_c00326{transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);}
.m7c_c00326{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00326{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.mcf_c00326{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176405,0.000000,0.000000,0.250000,0,0);}
.mec_c00326{transform:matrix(0.176611,0.003179,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176611,0.003179,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176611,0.003179,-0.004499,0.249960,0,0);}
.m9b_c00326{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mae_c00326{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177445,0.000000,0.000000,0.250000,0,0);}
.m7f_c00326{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);}
.mc3_c00326{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.md0_c00326{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m89_c00326{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00326{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m91_c00326{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183245,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.mcb_c00326{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.me2_c00326{transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184470,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.mcc_c00326{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m76_c00326{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.mc8_c00326{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.mbb_c00326{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m7d_c00326{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m87_c00326{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.maa_c00326{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);}
.m8c_c00326{transform:matrix(0.189586,0.001896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189586,0.001896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189586,0.001896,-0.002500,0.249988,0,0);}
.m95_c00326{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.mce_c00326{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);}
.md1_c00326{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.mb0_c00326{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.191165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191165,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.m6a_c00326{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.mca_c00326{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m86_c00326{transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);}
.m74_c00326{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.mdb_c00326{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mc7_c00326{transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.md5_c00326{transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00326{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00326{transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);}
.m71_c00326{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);}
.mb6_c00326{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.mb1_c00326{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201930,0.000000,0.000000,0.250000,0,0);}
.m96_c00326{transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m9e_c00326{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.m81_c00326{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.ma8_c00326{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.mbd_c00326{transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);}
.mcd_c00326{transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204445,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m62_c00326{transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204660,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);}
.md6_c00326{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00326{transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);}
.mb4_c00326{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m6c_c00326{transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);}
.m92_c00326{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mdc_c00326{transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.m9f_c00326{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.md8_c00326{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.me1_c00326{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);}
.me5_c00326{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m8b_c00326{transform:matrix(0.208045,0.002080,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208045,0.002080,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208045,0.002080,-0.002500,0.249988,0,0);}
.m5b_c00326{transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208085,0.000000,0.000000,0.250000,0,0);}
.mdd_c00326{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.me3_c00326{transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);}
.md4_c00326{transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211055,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);}
.m68_c00326{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m72_c00326{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.maf_c00326{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.ma0_c00326{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m8a_c00326{transform:matrix(0.212659,0.002127,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212659,0.002127,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212659,0.002127,-0.002500,0.249988,0,0);}
.m78_c00326{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m9c_c00326{transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);}
.mc5_c00326{transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);}
.mc0_c00326{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);}
.md2_c00326{transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);}
.mba_c00326{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.mb8_c00326{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);}
.m65_c00326{transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);}
.m49_c00326{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00326{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);}
.md3_c00326{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.218190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218190,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);}
.m32_c00326{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);}
.mad_c00326{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);}
.m69_c00326{transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);}
.m98_c00326{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.m7b_c00326{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m39_c00326{transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.231455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231455,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.me4_c00326{transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);}
.mc2_c00326{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.mbf_c00326{transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00326{transform:matrix(0.240035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240035,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.ma6_c00326{transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241240,0.000000,0.000000,0.250000,0,0);}
.m6b_c00326{transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);}
.m77_c00326{transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);}
.mc6_c00326{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.mc4_c00326{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m6d_c00326{transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);}
.m6e_c00326{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m64_c00326{transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);}
.mb7_c00326{transform:matrix(0.350530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350530,0.000000,0.000000,0.250000,0,0);}
.m8f_c00326{transform:matrix(0.432775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432775,0.000000,0.000000,0.250000,0,0);}
.ma1_c00326{transform:matrix(0.601460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601460,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:0.000000px;}
.fc0_c00326{color:transparent;}
.fsc_c00326{font-size:55.650000px;}
.fsb_c00326{font-size:57.750000px;}
.fse_c00326{font-size:57.752887px;}
.fs7_c00326{font-size:58.800000px;}
.fs6_c00326{font-size:59.850000px;}
.fs3_c00326{font-size:60.900000px;}
.fsd_c00326{font-size:61.950000px;}
.fs4_c00326{font-size:63.000000px;}
.fsf_c00326{font-size:64.050000px;}
.fs0_c00326{font-size:65.100000px;}
.fsa_c00326{font-size:66.150000px;}
.fs9_c00326{font-size:67.200000px;}
.fs8_c00326{font-size:68.250000px;}
.fs1_c00326{font-size:69.300000px;}
.fs5_c00326{font-size:70.350000px;}
.fs10_c00326{font-size:71.411566px;}
.fs2_c00326{font-size:72.450000px;}
.y0_c00326{bottom:0.000000px;}
.y38_c00326{bottom:29.278467px;}
.y37_c00326{bottom:29.874843px;}
.y36_c00326{bottom:30.960297px;}
.y35_c00326{bottom:31.653414px;}
.y34_c00326{bottom:32.636376px;}
.y33_c00326{bottom:32.996124px;}
.y32_c00326{bottom:33.949413px;}
.y31_c00326{bottom:34.294500px;}
.y30_c00326{bottom:46.210500px;}
.y2f_c00326{bottom:47.128500px;}
.y2e_c00326{bottom:47.739000px;}
.y2d_c00326{bottom:48.190500px;}
.y2c_c00326{bottom:49.159500px;}
.y2b_c00326{bottom:49.483500px;}
.y2a_c00326{bottom:49.863000px;}
.y29_c00326{bottom:50.223000px;}
.y28_c00326{bottom:65.040000px;}
.y27_c00326{bottom:82.353000px;}
.y26_c00326{bottom:82.536000px;}
.y25_c00326{bottom:83.569500px;}
.y24_c00326{bottom:83.824500px;}
.y23_c00326{bottom:84.184500px;}
.y22_c00326{bottom:84.781500px;}
.y21_c00326{bottom:98.910000px;}
.y20_c00326{bottom:116.395500px;}
.y1f_c00326{bottom:133.405500px;}
.y1e_c00326{bottom:149.611500px;}
.y1d_c00326{bottom:167.730000px;}
.y1c_c00326{bottom:183.990000px;}
.y1b_c00326{bottom:201.033000px;}
.y1a_c00326{bottom:218.074500px;}
.y19_c00326{bottom:233.482965px;}
.y18_c00326{bottom:235.271565px;}
.y17_c00326{bottom:235.473570px;}
.y16_c00326{bottom:236.178720px;}
.y15_c00326{bottom:236.521500px;}
.y14_c00326{bottom:252.484500px;}
.y13_c00326{bottom:269.998500px;}
.y12_c00326{bottom:287.277000px;}
.y11_c00326{bottom:304.710000px;}
.y10_c00326{bottom:322.168500px;}
.yf_c00326{bottom:338.550000px;}
.ye_c00326{bottom:354.687000px;}
.yd_c00326{bottom:371.100000px;}
.yc_c00326{bottom:387.868500px;}
.yb_c00326{bottom:404.796000px;}
.ya_c00326{bottom:421.560000px;}
.y9_c00326{bottom:438.841500px;}
.y8_c00326{bottom:455.326500px;}
.y7_c00326{bottom:471.723000px;}
.y6_c00326{bottom:489.213000px;}
.y5_c00326{bottom:506.391000px;}
.y4_c00326{bottom:523.962000px;}
.y3_c00326{bottom:540.477000px;}
.y2_c00326{bottom:557.974500px;}
.y1_c00326{bottom:574.830000px;}
.he_c00326{height:55.650000px;}
.hd_c00326{height:57.750000px;}
.h10_c00326{height:57.752887px;}
.h9_c00326{height:58.800000px;}
.h8_c00326{height:59.850000px;}
.h5_c00326{height:60.900000px;}
.hf_c00326{height:61.950000px;}
.h6_c00326{height:63.000000px;}
.h11_c00326{height:64.050000px;}
.h2_c00326{height:65.100000px;}
.hc_c00326{height:66.150000px;}
.hb_c00326{height:67.200000px;}
.ha_c00326{height:68.250000px;}
.h3_c00326{height:69.300000px;}
.h7_c00326{height:70.350000px;}
.h12_c00326{height:71.411566px;}
.h4_c00326{height:72.450000px;}
.h0_c00326{height:613.170000px;}
.h1_c00326{height:613.500000px;}
.w0_c00326{width:359.100000px;}
.w1_c00326{width:359.250000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:18.900000px;}
.xb_c00326{left:29.430000px;}
.x1b_c00326{left:31.050000px;}
.x54_c00326{left:32.130000px;}
.x59_c00326{left:33.480000px;}
.x69_c00326{left:35.910000px;}
.x6e_c00326{left:37.530000px;}
.x27_c00326{left:39.150000px;}
.x51_c00326{left:44.010000px;}
.x3_c00326{left:45.900000px;}
.x6f_c00326{left:50.220000px;}
.xc_c00326{left:52.110000px;}
.x40_c00326{left:54.270000px;}
.x23_c00326{left:56.970000px;}
.x1c_c00326{left:58.320000px;}
.x60_c00326{left:59.400000px;}
.x2f_c00326{left:64.800000px;}
.x57_c00326{left:66.303000px;}
.x6a_c00326{left:68.040000px;}
.x3a_c00326{left:69.120000px;}
.x28_c00326{left:71.550000px;}
.x34_c00326{left:73.710000px;}
.x48_c00326{left:75.870000px;}
.x5a_c00326{left:77.490000px;}
.x45_c00326{left:78.840000px;}
.x74_c00326{left:81.540000px;}
.x3c_c00326{left:82.890000px;}
.x12_c00326{left:85.050000px;}
.x14_c00326{left:87.210000px;}
.x30_c00326{left:92.610000px;}
.x70_c00326{left:96.930000px;}
.x13_c00326{left:98.820000px;}
.x62_c00326{left:100.710000px;}
.x7a_c00326{left:103.680000px;}
.x7e_c00326{left:104.848500px;}
.x4_c00326{left:106.110000px;}
.x15_c00326{left:108.270000px;}
.x52_c00326{left:110.970000px;}
.x35_c00326{left:113.400000px;}
.x1d_c00326{left:115.560000px;}
.x75_c00326{left:116.910000px;}
.x5f_c00326{left:118.530000px;}
.xd_c00326{left:122.310000px;}
.x49_c00326{left:124.200000px;}
.x5_c00326{left:125.550000px;}
.x79_c00326{left:130.833000px;}
.x16_c00326{left:133.110000px;}
.x41_c00326{left:136.350000px;}
.x4b_c00326{left:138.510000px;}
.x36_c00326{left:141.480000px;}
.x17_c00326{left:148.500000px;}
.x6b_c00326{left:150.930000px;}
.x7b_c00326{left:152.550000px;}
.x76_c00326{left:154.980000px;}
.x1e_c00326{left:156.600000px;}
.x5b_c00326{left:160.920000px;}
.x42_c00326{left:163.350000px;}
.x2c_c00326{left:164.700000px;}
.x1_c00326{left:166.860000px;}
.x24_c00326{left:168.480000px;}
.x18_c00326{left:169.830000px;}
.x1f_c00326{left:172.530000px;}
.x4c_c00326{left:173.610000px;}
.x29_c00326{left:174.960000px;}
.x7d_c00326{left:178.077000px;}
.x7f_c00326{left:179.443500px;}
.x3d_c00326{left:182.790000px;}
.x31_c00326{left:183.870000px;}
.x71_c00326{left:184.950000px;}
.x77_c00326{left:186.030000px;}
.x6_c00326{left:189.810000px;}
.x46_c00326{left:193.050000px;}
.x64_c00326{left:195.210000px;}
.x37_c00326{left:197.370000px;}
.xe_c00326{left:200.070000px;}
.x72_c00326{left:202.230000px;}
.x5c_c00326{left:206.550000px;}
.x32_c00326{left:210.600000px;}
.x55_c00326{left:212.490000px;}
.x2d_c00326{left:216.540000px;}
.x38_c00326{left:217.620000px;}
.x65_c00326{left:218.700000px;}
.x20_c00326{left:219.780000px;}
.x19_c00326{left:225.450000px;}
.x43_c00326{left:228.420000px;}
.x7_c00326{left:229.770000px;}
.xf_c00326{left:230.850000px;}
.x4d_c00326{left:232.470000px;}
.x6c_c00326{left:234.630000px;}
.x47_c00326{left:235.710000px;}
.x7c_c00326{left:237.330000px;}
.x21_c00326{left:239.490000px;}
.x2a_c00326{left:240.840000px;}
.x25_c00326{left:243.810000px;}
.x53_c00326{left:244.890000px;}
.x8_c00326{left:247.320000px;}
.x66_c00326{left:256.770000px;}
.x10_c00326{left:258.390000px;}
.x39_c00326{left:260.280000px;}
.x3b_c00326{left:261.360000px;}
.x5d_c00326{left:263.790000px;}
.x56_c00326{left:264.870000px;}
.x50_c00326{left:266.490000px;}
.x4e_c00326{left:269.190000px;}
.x3e_c00326{left:271.080000px;}
.x22_c00326{left:272.970000px;}
.x2e_c00326{left:276.210000px;}
.x80_c00326{left:278.253000px;}
.x26_c00326{left:281.340000px;}
.x61_c00326{left:284.310000px;}
.x9_c00326{left:287.280000px;}
.x67_c00326{left:288.360000px;}
.x5e_c00326{left:289.980000px;}
.x2b_c00326{left:291.600000px;}
.x1a_c00326{left:295.110000px;}
.x6d_c00326{left:296.190000px;}
.x44_c00326{left:297.810000px;}
.x3f_c00326{left:301.590000px;}
.x33_c00326{left:306.450000px;}
.xa_c00326{left:308.070000px;}
.x68_c00326{left:309.960000px;}
.x81_c00326{left:311.385000px;}
.x63_c00326{left:312.390000px;}
.x11_c00326{left:313.470000px;}
.x4a_c00326{left:316.710000px;}
.x78_c00326{left:318.060000px;}
.x4f_c00326{left:319.410000px;}
.x73_c00326{left:325.080000px;}
.x58_c00326{left:335.878500px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.fsc_c00326{font-size:49.466667pt;}
.fsb_c00326{font-size:51.333333pt;}
.fse_c00326{font-size:51.335900pt;}
.fs7_c00326{font-size:52.266667pt;}
.fs6_c00326{font-size:53.200000pt;}
.fs3_c00326{font-size:54.133333pt;}
.fsd_c00326{font-size:55.066667pt;}
.fs4_c00326{font-size:56.000000pt;}
.fsf_c00326{font-size:56.933333pt;}
.fs0_c00326{font-size:57.866667pt;}
.fsa_c00326{font-size:58.800000pt;}
.fs9_c00326{font-size:59.733333pt;}
.fs8_c00326{font-size:60.666667pt;}
.fs1_c00326{font-size:61.600000pt;}
.fs5_c00326{font-size:62.533333pt;}
.fs10_c00326{font-size:63.476947pt;}
.fs2_c00326{font-size:64.400000pt;}
.y0_c00326{bottom:0.000000pt;}
.y38_c00326{bottom:26.025304pt;}
.y37_c00326{bottom:26.555416pt;}
.y36_c00326{bottom:27.520264pt;}
.y35_c00326{bottom:28.136368pt;}
.y34_c00326{bottom:29.010112pt;}
.y33_c00326{bottom:29.329888pt;}
.y32_c00326{bottom:30.177256pt;}
.y31_c00326{bottom:30.484000pt;}
.y30_c00326{bottom:41.076000pt;}
.y2f_c00326{bottom:41.892000pt;}
.y2e_c00326{bottom:42.434667pt;}
.y2d_c00326{bottom:42.836000pt;}
.y2c_c00326{bottom:43.697333pt;}
.y2b_c00326{bottom:43.985333pt;}
.y2a_c00326{bottom:44.322667pt;}
.y29_c00326{bottom:44.642667pt;}
.y28_c00326{bottom:57.813333pt;}
.y27_c00326{bottom:73.202667pt;}
.y26_c00326{bottom:73.365333pt;}
.y25_c00326{bottom:74.284000pt;}
.y24_c00326{bottom:74.510667pt;}
.y23_c00326{bottom:74.830667pt;}
.y22_c00326{bottom:75.361333pt;}
.y21_c00326{bottom:87.920000pt;}
.y20_c00326{bottom:103.462667pt;}
.y1f_c00326{bottom:118.582667pt;}
.y1e_c00326{bottom:132.988000pt;}
.y1d_c00326{bottom:149.093333pt;}
.y1c_c00326{bottom:163.546667pt;}
.y1b_c00326{bottom:178.696000pt;}
.y1a_c00326{bottom:193.844000pt;}
.y19_c00326{bottom:207.540413pt;}
.y18_c00326{bottom:209.130280pt;}
.y17_c00326{bottom:209.309840pt;}
.y16_c00326{bottom:209.936640pt;}
.y15_c00326{bottom:210.241333pt;}
.y14_c00326{bottom:224.430667pt;}
.y13_c00326{bottom:239.998667pt;}
.y12_c00326{bottom:255.357333pt;}
.y11_c00326{bottom:270.853333pt;}
.y10_c00326{bottom:286.372000pt;}
.yf_c00326{bottom:300.933333pt;}
.ye_c00326{bottom:315.277333pt;}
.yd_c00326{bottom:329.866667pt;}
.yc_c00326{bottom:344.772000pt;}
.yb_c00326{bottom:359.818667pt;}
.ya_c00326{bottom:374.720000pt;}
.y9_c00326{bottom:390.081333pt;}
.y8_c00326{bottom:404.734667pt;}
.y7_c00326{bottom:419.309333pt;}
.y6_c00326{bottom:434.856000pt;}
.y5_c00326{bottom:450.125333pt;}
.y4_c00326{bottom:465.744000pt;}
.y3_c00326{bottom:480.424000pt;}
.y2_c00326{bottom:495.977333pt;}
.y1_c00326{bottom:510.960000pt;}
.he_c00326{height:49.466667pt;}
.hd_c00326{height:51.333333pt;}
.h10_c00326{height:51.335900pt;}
.h9_c00326{height:52.266667pt;}
.h8_c00326{height:53.200000pt;}
.h5_c00326{height:54.133333pt;}
.hf_c00326{height:55.066667pt;}
.h6_c00326{height:56.000000pt;}
.h11_c00326{height:56.933333pt;}
.h2_c00326{height:57.866667pt;}
.hc_c00326{height:58.800000pt;}
.hb_c00326{height:59.733333pt;}
.ha_c00326{height:60.666667pt;}
.h3_c00326{height:61.600000pt;}
.h7_c00326{height:62.533333pt;}
.h12_c00326{height:63.476947pt;}
.h4_c00326{height:64.400000pt;}
.h0_c00326{height:545.040000pt;}
.h1_c00326{height:545.333333pt;}
.w0_c00326{width:319.200000pt;}
.w1_c00326{width:319.333333pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:16.800000pt;}
.xb_c00326{left:26.160000pt;}
.x1b_c00326{left:27.600000pt;}
.x54_c00326{left:28.560000pt;}
.x59_c00326{left:29.760000pt;}
.x69_c00326{left:31.920000pt;}
.x6e_c00326{left:33.360000pt;}
.x27_c00326{left:34.800000pt;}
.x51_c00326{left:39.120000pt;}
.x3_c00326{left:40.800000pt;}
.x6f_c00326{left:44.640000pt;}
.xc_c00326{left:46.320000pt;}
.x40_c00326{left:48.240000pt;}
.x23_c00326{left:50.640000pt;}
.x1c_c00326{left:51.840000pt;}
.x60_c00326{left:52.800000pt;}
.x2f_c00326{left:57.600000pt;}
.x57_c00326{left:58.936000pt;}
.x6a_c00326{left:60.480000pt;}
.x3a_c00326{left:61.440000pt;}
.x28_c00326{left:63.600000pt;}
.x34_c00326{left:65.520000pt;}
.x48_c00326{left:67.440000pt;}
.x5a_c00326{left:68.880000pt;}
.x45_c00326{left:70.080000pt;}
.x74_c00326{left:72.480000pt;}
.x3c_c00326{left:73.680000pt;}
.x12_c00326{left:75.600000pt;}
.x14_c00326{left:77.520000pt;}
.x30_c00326{left:82.320000pt;}
.x70_c00326{left:86.160000pt;}
.x13_c00326{left:87.840000pt;}
.x62_c00326{left:89.520000pt;}
.x7a_c00326{left:92.160000pt;}
.x7e_c00326{left:93.198667pt;}
.x4_c00326{left:94.320000pt;}
.x15_c00326{left:96.240000pt;}
.x52_c00326{left:98.640000pt;}
.x35_c00326{left:100.800000pt;}
.x1d_c00326{left:102.720000pt;}
.x75_c00326{left:103.920000pt;}
.x5f_c00326{left:105.360000pt;}
.xd_c00326{left:108.720000pt;}
.x49_c00326{left:110.400000pt;}
.x5_c00326{left:111.600000pt;}
.x79_c00326{left:116.296000pt;}
.x16_c00326{left:118.320000pt;}
.x41_c00326{left:121.200000pt;}
.x4b_c00326{left:123.120000pt;}
.x36_c00326{left:125.760000pt;}
.x17_c00326{left:132.000000pt;}
.x6b_c00326{left:134.160000pt;}
.x7b_c00326{left:135.600000pt;}
.x76_c00326{left:137.760000pt;}
.x1e_c00326{left:139.200000pt;}
.x5b_c00326{left:143.040000pt;}
.x42_c00326{left:145.200000pt;}
.x2c_c00326{left:146.400000pt;}
.x1_c00326{left:148.320000pt;}
.x24_c00326{left:149.760000pt;}
.x18_c00326{left:150.960000pt;}
.x1f_c00326{left:153.360000pt;}
.x4c_c00326{left:154.320000pt;}
.x29_c00326{left:155.520000pt;}
.x7d_c00326{left:158.290667pt;}
.x7f_c00326{left:159.505333pt;}
.x3d_c00326{left:162.480000pt;}
.x31_c00326{left:163.440000pt;}
.x71_c00326{left:164.400000pt;}
.x77_c00326{left:165.360000pt;}
.x6_c00326{left:168.720000pt;}
.x46_c00326{left:171.600000pt;}
.x64_c00326{left:173.520000pt;}
.x37_c00326{left:175.440000pt;}
.xe_c00326{left:177.840000pt;}
.x72_c00326{left:179.760000pt;}
.x5c_c00326{left:183.600000pt;}
.x32_c00326{left:187.200000pt;}
.x55_c00326{left:188.880000pt;}
.x2d_c00326{left:192.480000pt;}
.x38_c00326{left:193.440000pt;}
.x65_c00326{left:194.400000pt;}
.x20_c00326{left:195.360000pt;}
.x19_c00326{left:200.400000pt;}
.x43_c00326{left:203.040000pt;}
.x7_c00326{left:204.240000pt;}
.xf_c00326{left:205.200000pt;}
.x4d_c00326{left:206.640000pt;}
.x6c_c00326{left:208.560000pt;}
.x47_c00326{left:209.520000pt;}
.x7c_c00326{left:210.960000pt;}
.x21_c00326{left:212.880000pt;}
.x2a_c00326{left:214.080000pt;}
.x25_c00326{left:216.720000pt;}
.x53_c00326{left:217.680000pt;}
.x8_c00326{left:219.840000pt;}
.x66_c00326{left:228.240000pt;}
.x10_c00326{left:229.680000pt;}
.x39_c00326{left:231.360000pt;}
.x3b_c00326{left:232.320000pt;}
.x5d_c00326{left:234.480000pt;}
.x56_c00326{left:235.440000pt;}
.x50_c00326{left:236.880000pt;}
.x4e_c00326{left:239.280000pt;}
.x3e_c00326{left:240.960000pt;}
.x22_c00326{left:242.640000pt;}
.x2e_c00326{left:245.520000pt;}
.x80_c00326{left:247.336000pt;}
.x26_c00326{left:250.080000pt;}
.x61_c00326{left:252.720000pt;}
.x9_c00326{left:255.360000pt;}
.x67_c00326{left:256.320000pt;}
.x5e_c00326{left:257.760000pt;}
.x2b_c00326{left:259.200000pt;}
.x1a_c00326{left:262.320000pt;}
.x6d_c00326{left:263.280000pt;}
.x44_c00326{left:264.720000pt;}
.x3f_c00326{left:268.080000pt;}
.x33_c00326{left:272.400000pt;}
.xa_c00326{left:273.840000pt;}
.x68_c00326{left:275.520000pt;}
.x81_c00326{left:276.786667pt;}
.x63_c00326{left:277.680000pt;}
.x11_c00326{left:278.640000pt;}
.x4a_c00326{left:281.520000pt;}
.x78_c00326{left:282.720000pt;}
.x4f_c00326{left:283.920000pt;}
.x73_c00326{left:288.960000pt;}
.x58_c00326{left:298.558667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00327 {
    display:none;
  }
  .loading-indicator_c00327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00327 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00327 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00327" -> "#page-container .classname_c00327")
 */
.pf_c00327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00327 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00327 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00327 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00327 {overflow:visible;}
  }
}
.c_c00327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00327 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00327:after { /* webkit #35443 */
  content: '';
}
.t_c00327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00327 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00327 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00327 { /* info for Javascript */
  display:none;
}
.l_c00327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00327:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00327 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00327.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.100230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100230,0.000000,0.000000,0.250000,0,0);}
.meb_c00327{transform:matrix(0.126595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126595,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.132570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00327{transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);}
.m99_c00327{transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);}
.m95_c00327{transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);}
.m98_c00327{transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150955,0.000000,0.000000,0.250000,0,0);}
.ma9_c00327{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.m53_c00327{transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151690,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);}
.m58_c00327{transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);}
.m49_c00327{transform:matrix(0.155430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155430,0.000000,0.000000,0.250000,0,0);}
.mcf_c00327{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.md5_c00327{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.m5b_c00327{transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158005,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.mec_c00327{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m94_c00327{transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158560,0.000000,0.000000,0.250000,0,0);}
.m75_c00327{transform:matrix(0.159210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00327{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.md4_c00327{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.mcd_c00327{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m97_c00327{transform:matrix(0.162120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162120,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162805,0.000000,0.000000,0.250000,0,0);}
.md7_c00327{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.mac_c00327{transform:matrix(0.163255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163255,0.000000,0.000000,0.250000,0,0);}
.mde_c00327{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.m56_c00327{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.m6e_c00327{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m52_c00327{transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166070,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);}
.mb3_c00327{transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);}
.mca_c00327{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m70_c00327{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m31_c00327{transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);}
.m9b_c00327{transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169020,0.000000,0.000000,0.250000,0,0);}
.mc3_c00327{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.m28_c00327{transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170420,0.000000,0.000000,0.250000,0,0);}
.m8c_c00327{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.me8_c00327{transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);}
.mce_c00327{transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);}
.m89_c00327{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m79_c00327{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m9d_c00327{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00327{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.ma1_c00327{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m61_c00327{transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);}
.m4b_c00327{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.mc8_c00327{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00327{transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);}
.m38_c00327{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00327{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.mae_c00327{transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00327{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mab_c00327{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m9c_c00327{transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);}
.md9_c00327{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.mcb_c00327{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m4f_c00327{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);}
.mdb_c00327{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00327{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00327{transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);}
.m3c_c00327{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.me4_c00327{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.ma0_c00327{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.m87_c00327{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);}
.m85_c00327{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.m6c_c00327{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.m86_c00327{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.ma3_c00327{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.mc9_c00327{transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);}
.mea_c00327{transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);}
.mbd_c00327{transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{transform:matrix(0.185405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185405,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m71_c00327{transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);}
.m62_c00327{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.med_c00327{transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);}
.me9_c00327{transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186730,0.000000,0.000000,0.250000,0,0);}
.m59_c00327{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.me5_c00327{transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);}
.m57_c00327{transform:matrix(0.187240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187240,0.000000,0.000000,0.250000,0,0);}
.m93_c00327{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.mdf_c00327{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m45_c00327{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.md0_c00327{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.m48_c00327{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m77_c00327{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m3d_c00327{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.md2_c00327{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00327{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.m88_c00327{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.me6_c00327{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.maa_c00327{transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190605,0.000000,0.000000,0.250000,0,0);}
.ma6_c00327{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m72_c00327{transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);}
.md8_c00327{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.m60_c00327{transform:matrix(0.191355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191355,0.000000,0.000000,0.250000,0,0);}
.mb5_c00327{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00327{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00327{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.mda_c00327{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m83_c00327{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.ma7_c00327{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.m2e_c00327{transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00327{transform:matrix(0.196345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196345,0.000000,0.000000,0.250000,0,0);}
.md1_c00327{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.me2_c00327{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.mc7_c00327{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.m84_c00327{transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197045,0.000000,0.000000,0.250000,0,0);}
.m8a_c00327{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);}
.m5a_c00327{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m4e_c00327{transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);}
.m43_c00327{transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);}
.me3_c00327{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.m5d_c00327{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);}
.ma5_c00327{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m96_c00327{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.m7b_c00327{transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);}
.m5c_c00327{transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);}
.m8b_c00327{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.mb6_c00327{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m54_c00327{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.mdc_c00327{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.mb1_c00327{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.md3_c00327{transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202260,0.000000,0.000000,0.250000,0,0);}
.m92_c00327{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m4c_c00327{transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);}
.m23_c00327{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m78_c00327{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00327{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.mbe_c00327{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.md6_c00327{transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);}
.m8d_c00327{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.m40_c00327{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mb0_c00327{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m33_c00327{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m9e_c00327{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m51_c00327{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);}
.m7e_c00327{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);}
.me7_c00327{transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);}
.m39_c00327{transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);}
.m7f_c00327{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);}
.m66_c00327{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m6d_c00327{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);}
.m81_c00327{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m73_c00327{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210980,0.000000,0.000000,0.250000,0,0);}
.maf_c00327{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m50_c00327{transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);}
.m4d_c00327{transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212065,0.000000,0.000000,0.250000,0,0);}
.m55_c00327{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m6f_c00327{transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);}
.m69_c00327{transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);}
.mee_c00327{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m90_c00327{transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);}
.m25_c00327{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m63_c00327{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m67_c00327{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m5f_c00327{transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);}
.ma2_c00327{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.mba_c00327{transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);}
.me0_c00327{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m4a_c00327{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.mc5_c00327{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.m46_c00327{transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00327{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.mc1_c00327{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.m82_c00327{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m91_c00327{transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218655,0.000000,0.000000,0.250000,0,0);}
.m3b_c00327{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00327{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m74_c00327{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m8e_c00327{transform:matrix(0.221255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221255,0.000000,0.000000,0.250000,0,0);}
.m68_c00327{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.m5e_c00327{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m42_c00327{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.mbf_c00327{transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);}
.mad_c00327{transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);}
.mb7_c00327{transform:matrix(0.227135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227135,0.000000,0.000000,0.250000,0,0);}
.mbc_c00327{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.mb8_c00327{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m3a_c00327{transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);}
.m44_c00327{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m64_c00327{transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00327{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m76_c00327{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m47_c00327{transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);}
.m37_c00327{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.m7c_c00327{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m65_c00327{transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.234920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234920,0.000000,0.000000,0.250000,0,0);}
.m3e_c00327{transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);}
.mb4_c00327{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m34_c00327{transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);}
.m3f_c00327{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m8f_c00327{transform:matrix(0.240840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240840,0.000000,0.000000,0.250000,0,0);}
.m41_c00327{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.me1_c00327{transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);}
.m36_c00327{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m1f_c00327{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m80_c00327{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.m35_c00327{transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);}
.mc4_c00327{transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);}
.ma4_c00327{transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:0.000000px;}
.fc0_c00327{color:transparent;}
.fs5_c00327{font-size:53.550000px;}
.fs8_c00327{font-size:55.650000px;}
.fsc_c00327{font-size:57.750000px;}
.fs9_c00327{font-size:58.800000px;}
.fs2_c00327{font-size:59.850000px;}
.fs1_c00327{font-size:60.900000px;}
.fsb_c00327{font-size:61.950000px;}
.fse_c00327{font-size:64.050000px;}
.fs6_c00327{font-size:65.100000px;}
.fsf_c00327{font-size:66.150000px;}
.fs7_c00327{font-size:67.200000px;}
.fsa_c00327{font-size:68.250000px;}
.fs3_c00327{font-size:69.300000px;}
.fs4_c00327{font-size:70.350000px;}
.fsd_c00327{font-size:72.450000px;}
.fs10_c00327{font-size:74.550000px;}
.fs0_c00327{font-size:128.100000px;}
.y0_c00327{bottom:0.000000px;}
.y90_c00327{bottom:29.011500px;}
.y8a_c00327{bottom:45.088500px;}
.y8b_c00327{bottom:45.553500px;}
.y8c_c00327{bottom:46.668000px;}
.y8d_c00327{bottom:46.992000px;}
.y8e_c00327{bottom:47.752500px;}
.y8f_c00327{bottom:48.216000px;}
.y81_c00327{bottom:61.558500px;}
.y82_c00327{bottom:62.100000px;}
.y83_c00327{bottom:62.346000px;}
.y84_c00327{bottom:63.042000px;}
.y85_c00327{bottom:63.472500px;}
.y86_c00327{bottom:63.712500px;}
.y87_c00327{bottom:63.997500px;}
.y88_c00327{bottom:64.810500px;}
.y89_c00327{bottom:65.017500px;}
.y7a_c00327{bottom:78.300000px;}
.y7b_c00327{bottom:78.715500px;}
.y7c_c00327{bottom:79.803000px;}
.y7d_c00327{bottom:80.068500px;}
.y7e_c00327{bottom:80.308500px;}
.y7f_c00327{bottom:81.289500px;}
.y80_c00327{bottom:81.493500px;}
.y70_c00327{bottom:95.581500px;}
.y71_c00327{bottom:96.012000px;}
.y72_c00327{bottom:96.367500px;}
.y73_c00327{bottom:96.588000px;}
.y74_c00327{bottom:97.099500px;}
.y75_c00327{bottom:97.471500px;}
.y76_c00327{bottom:97.681500px;}
.y77_c00327{bottom:97.998000px;}
.y78_c00327{bottom:98.212500px;}
.y79_c00327{bottom:98.764500px;}
.y6a_c00327{bottom:112.594500px;}
.y6b_c00327{bottom:113.940000px;}
.y6c_c00327{bottom:114.907500px;}
.y6d_c00327{bottom:115.402500px;}
.y6e_c00327{bottom:116.494500px;}
.y6f_c00327{bottom:117.109500px;}
.y64_c00327{bottom:129.603000px;}
.y65_c00327{bottom:130.900500px;}
.y66_c00327{bottom:131.194500px;}
.y67_c00327{bottom:131.988000px;}
.y68_c00327{bottom:133.057500px;}
.y69_c00327{bottom:133.308000px;}
.y63_c00327{bottom:148.350000px;}
.y62_c00327{bottom:166.047000px;}
.y61_c00327{bottom:183.325500px;}
.y60_c00327{bottom:199.873500px;}
.y5f_c00327{bottom:217.018500px;}
.y5e_c00327{bottom:234.646500px;}
.y5d_c00327{bottom:251.319000px;}
.y5c_c00327{bottom:268.260000px;}
.y5b_c00327{bottom:284.578500px;}
.y54_c00327{bottom:300.243000px;}
.y55_c00327{bottom:300.615000px;}
.y56_c00327{bottom:300.963000px;}
.y57_c00327{bottom:301.747500px;}
.y58_c00327{bottom:302.256000px;}
.y59_c00327{bottom:303.348000px;}
.y5a_c00327{bottom:303.526500px;}
.y4d_c00327{bottom:317.251500px;}
.y4e_c00327{bottom:317.709000px;}
.y4f_c00327{bottom:318.471000px;}
.y50_c00327{bottom:319.323000px;}
.y51_c00327{bottom:319.530000px;}
.y52_c00327{bottom:320.190000px;}
.y53_c00327{bottom:320.625000px;}
.y46_c00327{bottom:333.991500px;}
.y47_c00327{bottom:334.305000px;}
.y48_c00327{bottom:334.554000px;}
.y49_c00327{bottom:335.649000px;}
.y4a_c00327{bottom:336.424500px;}
.y4b_c00327{bottom:337.039500px;}
.y4c_c00327{bottom:337.309500px;}
.y40_c00327{bottom:351.271500px;}
.y41_c00327{bottom:351.619500px;}
.y42_c00327{bottom:352.300500px;}
.y43_c00327{bottom:352.507500px;}
.y44_c00327{bottom:353.589000px;}
.y45_c00327{bottom:354.802500px;}
.y36_c00327{bottom:368.550000px;}
.y37_c00327{bottom:368.788500px;}
.y38_c00327{bottom:369.330000px;}
.y39_c00327{bottom:369.793500px;}
.y3a_c00327{bottom:370.101000px;}
.y3b_c00327{bottom:370.417500px;}
.y3c_c00327{bottom:370.972500px;}
.y3d_c00327{bottom:371.250000px;}
.y3e_c00327{bottom:371.989500px;}
.y3f_c00327{bottom:372.208500px;}
.y30_c00327{bottom:385.830000px;}
.y31_c00327{bottom:386.484000px;}
.y32_c00327{bottom:387.367500px;}
.y33_c00327{bottom:387.925500px;}
.y34_c00327{bottom:388.140000px;}
.y35_c00327{bottom:389.257500px;}
.y2f_c00327{bottom:404.604000px;}
.y27_c00327{bottom:419.580000px;}
.y28_c00327{bottom:419.907000px;}
.y29_c00327{bottom:420.193500px;}
.y2a_c00327{bottom:420.433500px;}
.y2b_c00327{bottom:421.462500px;}
.y2c_c00327{bottom:421.672500px;}
.y2d_c00327{bottom:422.013000px;}
.y2e_c00327{bottom:422.644500px;}
.y26_c00327{bottom:438.628500px;}
.y25_c00327{bottom:455.368500px;}
.y1e_c00327{bottom:470.340000px;}
.y1f_c00327{bottom:470.700000px;}
.y20_c00327{bottom:471.241500px;}
.y21_c00327{bottom:471.736500px;}
.y22_c00327{bottom:472.440000px;}
.y23_c00327{bottom:473.616000px;}
.y24_c00327{bottom:473.752500px;}
.y17_c00327{bottom:487.621500px;}
.y18_c00327{bottom:488.373000px;}
.y19_c00327{bottom:488.485500px;}
.y1a_c00327{bottom:488.761500px;}
.y1b_c00327{bottom:489.289500px;}
.y1c_c00327{bottom:489.687000px;}
.y1d_c00327{bottom:489.913500px;}
.y10_c00327{bottom:503.824500px;}
.y11_c00327{bottom:504.873000px;}
.y12_c00327{bottom:505.633500px;}
.y13_c00327{bottom:505.822500px;}
.y14_c00327{bottom:506.394000px;}
.y15_c00327{bottom:507.715500px;}
.y16_c00327{bottom:508.090500px;}
.yf_c00327{bottom:522.057000px;}
.y9_c00327{bottom:537.306000px;}
.ya_c00327{bottom:538.116000px;}
.yb_c00327{bottom:538.383000px;}
.yc_c00327{bottom:539.076000px;}
.yd_c00327{bottom:541.023000px;}
.ye_c00327{bottom:541.584000px;}
.y2_c00327{bottom:555.123000px;}
.y3_c00327{bottom:555.804000px;}
.y4_c00327{bottom:556.408500px;}
.y5_c00327{bottom:557.157000px;}
.y6_c00327{bottom:557.664000px;}
.y7_c00327{bottom:557.970000px;}
.y8_c00327{bottom:559.144500px;}
.y1_c00327{bottom:569.841000px;}
.h7_c00327{height:53.550000px;}
.ha_c00327{height:55.650000px;}
.he_c00327{height:57.750000px;}
.hb_c00327{height:58.800000px;}
.h4_c00327{height:59.850000px;}
.h3_c00327{height:60.900000px;}
.hd_c00327{height:61.950000px;}
.h10_c00327{height:64.050000px;}
.h8_c00327{height:65.100000px;}
.h11_c00327{height:66.150000px;}
.h9_c00327{height:67.200000px;}
.hc_c00327{height:68.250000px;}
.h5_c00327{height:69.300000px;}
.h6_c00327{height:70.350000px;}
.hf_c00327{height:72.450000px;}
.h12_c00327{height:74.550000px;}
.h2_c00327{height:128.100000px;}
.h0_c00327{height:613.170000px;}
.h1_c00327{height:613.500000px;}
.w0_c00327{width:359.100000px;}
.w1_c00327{width:359.250000px;}
.x0_c00327{left:0.000000px;}
.x77_c00327{left:39.952500px;}
.x67_c00327{left:41.310000px;}
.xd_c00327{left:42.388500px;}
.x2_c00327{left:43.644000px;}
.x68_c00327{left:55.890000px;}
.x3f_c00327{left:61.426500px;}
.x2c_c00327{left:63.721500px;}
.x49_c00327{left:66.588000px;}
.x31_c00327{left:69.760500px;}
.x21_c00327{left:72.460500px;}
.x6f_c00327{left:74.343000px;}
.x72_c00327{left:75.777000px;}
.x63_c00327{left:79.650000px;}
.x4b_c00327{left:81.157500px;}
.x9_c00327{left:85.279500px;}
.x75_c00327{left:86.541000px;}
.x3_c00327{left:92.245500px;}
.x32_c00327{left:93.576000px;}
.x3c_c00327{left:96.544500px;}
.xa_c00327{left:99.340500px;}
.x36_c00327{left:101.523000px;}
.x40_c00327{left:103.045500px;}
.x5c_c00327{left:104.490000px;}
.x27_c00327{left:106.381500px;}
.x15_c00327{left:108.721500px;}
.x64_c00327{left:109.890000px;}
.x1b_c00327{left:111.091500px;}
.x33_c00327{left:113.527500px;}
.xe_c00327{left:116.368500px;}
.x22_c00327{left:117.595500px;}
.x70_c00327{left:118.699500px;}
.x69_c00327{left:119.880000px;}
.x1c_c00327{left:121.359000px;}
.x28_c00327{left:123.661500px;}
.x5d_c00327{left:125.550000px;}
.x53_c00327{left:126.901500px;}
.x60_c00327{left:128.790000px;}
.x37_c00327{left:133.383000px;}
.x4_c00327{left:135.376500px;}
.x46_c00327{left:137.614500px;}
.x41_c00327{left:138.687000px;}
.x56_c00327{left:141.211500px;}
.x4c_c00327{left:144.604500px;}
.x1d_c00327{left:146.439000px;}
.xf_c00327{left:147.688500px;}
.x16_c00327{left:156.234000px;}
.x23_c00327{left:158.902500px;}
.x2d_c00327{left:161.191500px;}
.x42_c00327{left:162.384000px;}
.x57_c00327{left:164.701500px;}
.x65_c00327{left:166.050000px;}
.x17_c00327{left:168.076500px;}
.x3d_c00327{left:170.208000px;}
.x10_c00327{left:172.798500px;}
.x1_c00327{left:175.770000px;}
.x6d_c00327{left:177.313500px;}
.x59_c00327{left:178.740000px;}
.x38_c00327{left:180.633000px;}
.x5e_c00327{left:184.950000px;}
.x43_c00327{left:186.736500px;}
.x5_c00327{left:188.838000px;}
.x52_c00327{left:190.351500px;}
.x6a_c00327{left:193.320000px;}
.x1e_c00327{left:194.478000px;}
.x34_c00327{left:199.336500px;}
.x5f_c00327{left:200.610000px;}
.x18_c00327{left:203.781000px;}
.x29_c00327{left:206.281500px;}
.x73_c00327{left:208.585500px;}
.x50_c00327{left:209.937000px;}
.x6c_c00327{left:212.113500px;}
.x4d_c00327{left:215.611500px;}
.x24_c00327{left:217.497000px;}
.x78_c00327{left:219.232500px;}
.x47_c00327{left:220.767000px;}
.x6_c00327{left:225.075000px;}
.x61_c00327{left:226.530000px;}
.x44_c00327{left:229.389000px;}
.x1f_c00327{left:230.653500px;}
.x39_c00327{left:231.663000px;}
.x4e_c00327{left:232.896000px;}
.x3e_c00327{left:234.513000px;}
.xb_c00327{left:238.273500px;}
.x2e_c00327{left:239.491500px;}
.x11_c00327{left:241.108500px;}
.x71_c00327{left:243.682500px;}
.x35_c00327{left:245.305500px;}
.x7_c00327{left:246.955500px;}
.x58_c00327{left:249.751500px;}
.x20_c00327{left:251.260500px;}
.x2f_c00327{left:260.281500px;}
.x12_c00327{left:262.438500px;}
.x62_c00327{left:264.060000px;}
.x54_c00327{left:266.221500px;}
.xc_c00327{left:267.816000px;}
.x3a_c00327{left:269.193000px;}
.x6e_c00327{left:270.715500px;}
.x2a_c00327{left:272.971500px;}
.x4a_c00327{left:276.921000px;}
.x5a_c00327{left:278.640000px;}
.x13_c00327{left:279.988500px;}
.x19_c00327{left:286.389000px;}
.x4f_c00327{left:287.916000px;}
.x74_c00327{left:290.389500px;}
.x30_c00327{left:297.271500px;}
.x51_c00327{left:300.916500px;}
.x55_c00327{left:304.831500px;}
.x5b_c00327{left:305.910000px;}
.x45_c00327{left:307.618500px;}
.x1a_c00327{left:309.808500px;}
.x66_c00327{left:312.660000px;}
.x48_c00327{left:314.115000px;}
.x25_c00327{left:315.496500px;}
.x6b_c00327{left:317.790000px;}
.x2b_c00327{left:320.221500px;}
.x14_c00327{left:322.108500px;}
.x3b_c00327{left:324.543000px;}
.x26_c00327{left:326.851500px;}
.x76_c00327{left:329.794500px;}
.x8_c00327{left:330.882000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
.fs5_c00327{font-size:47.600000pt;}
.fs8_c00327{font-size:49.466667pt;}
.fsc_c00327{font-size:51.333333pt;}
.fs9_c00327{font-size:52.266667pt;}
.fs2_c00327{font-size:53.200000pt;}
.fs1_c00327{font-size:54.133333pt;}
.fsb_c00327{font-size:55.066667pt;}
.fse_c00327{font-size:56.933333pt;}
.fs6_c00327{font-size:57.866667pt;}
.fsf_c00327{font-size:58.800000pt;}
.fs7_c00327{font-size:59.733333pt;}
.fsa_c00327{font-size:60.666667pt;}
.fs3_c00327{font-size:61.600000pt;}
.fs4_c00327{font-size:62.533333pt;}
.fsd_c00327{font-size:64.400000pt;}
.fs10_c00327{font-size:66.266667pt;}
.fs0_c00327{font-size:113.866667pt;}
.y0_c00327{bottom:0.000000pt;}
.y90_c00327{bottom:25.788000pt;}
.y8a_c00327{bottom:40.078667pt;}
.y8b_c00327{bottom:40.492000pt;}
.y8c_c00327{bottom:41.482667pt;}
.y8d_c00327{bottom:41.770667pt;}
.y8e_c00327{bottom:42.446667pt;}
.y8f_c00327{bottom:42.858667pt;}
.y81_c00327{bottom:54.718667pt;}
.y82_c00327{bottom:55.200000pt;}
.y83_c00327{bottom:55.418667pt;}
.y84_c00327{bottom:56.037333pt;}
.y85_c00327{bottom:56.420000pt;}
.y86_c00327{bottom:56.633333pt;}
.y87_c00327{bottom:56.886667pt;}
.y88_c00327{bottom:57.609333pt;}
.y89_c00327{bottom:57.793333pt;}
.y7a_c00327{bottom:69.600000pt;}
.y7b_c00327{bottom:69.969333pt;}
.y7c_c00327{bottom:70.936000pt;}
.y7d_c00327{bottom:71.172000pt;}
.y7e_c00327{bottom:71.385333pt;}
.y7f_c00327{bottom:72.257333pt;}
.y80_c00327{bottom:72.438667pt;}
.y70_c00327{bottom:84.961333pt;}
.y71_c00327{bottom:85.344000pt;}
.y72_c00327{bottom:85.660000pt;}
.y73_c00327{bottom:85.856000pt;}
.y74_c00327{bottom:86.310667pt;}
.y75_c00327{bottom:86.641333pt;}
.y76_c00327{bottom:86.828000pt;}
.y77_c00327{bottom:87.109333pt;}
.y78_c00327{bottom:87.300000pt;}
.y79_c00327{bottom:87.790667pt;}
.y6a_c00327{bottom:100.084000pt;}
.y6b_c00327{bottom:101.280000pt;}
.y6c_c00327{bottom:102.140000pt;}
.y6d_c00327{bottom:102.580000pt;}
.y6e_c00327{bottom:103.550667pt;}
.y6f_c00327{bottom:104.097333pt;}
.y64_c00327{bottom:115.202667pt;}
.y65_c00327{bottom:116.356000pt;}
.y66_c00327{bottom:116.617333pt;}
.y67_c00327{bottom:117.322667pt;}
.y68_c00327{bottom:118.273333pt;}
.y69_c00327{bottom:118.496000pt;}
.y63_c00327{bottom:131.866667pt;}
.y62_c00327{bottom:147.597333pt;}
.y61_c00327{bottom:162.956000pt;}
.y60_c00327{bottom:177.665333pt;}
.y5f_c00327{bottom:192.905333pt;}
.y5e_c00327{bottom:208.574667pt;}
.y5d_c00327{bottom:223.394667pt;}
.y5c_c00327{bottom:238.453333pt;}
.y5b_c00327{bottom:252.958667pt;}
.y54_c00327{bottom:266.882667pt;}
.y55_c00327{bottom:267.213333pt;}
.y56_c00327{bottom:267.522667pt;}
.y57_c00327{bottom:268.220000pt;}
.y58_c00327{bottom:268.672000pt;}
.y59_c00327{bottom:269.642667pt;}
.y5a_c00327{bottom:269.801333pt;}
.y4d_c00327{bottom:282.001333pt;}
.y4e_c00327{bottom:282.408000pt;}
.y4f_c00327{bottom:283.085333pt;}
.y50_c00327{bottom:283.842667pt;}
.y51_c00327{bottom:284.026667pt;}
.y52_c00327{bottom:284.613333pt;}
.y53_c00327{bottom:285.000000pt;}
.y46_c00327{bottom:296.881333pt;}
.y47_c00327{bottom:297.160000pt;}
.y48_c00327{bottom:297.381333pt;}
.y49_c00327{bottom:298.354667pt;}
.y4a_c00327{bottom:299.044000pt;}
.y4b_c00327{bottom:299.590667pt;}
.y4c_c00327{bottom:299.830667pt;}
.y40_c00327{bottom:312.241333pt;}
.y41_c00327{bottom:312.550667pt;}
.y42_c00327{bottom:313.156000pt;}
.y43_c00327{bottom:313.340000pt;}
.y44_c00327{bottom:314.301333pt;}
.y45_c00327{bottom:315.380000pt;}
.y36_c00327{bottom:327.600000pt;}
.y37_c00327{bottom:327.812000pt;}
.y38_c00327{bottom:328.293333pt;}
.y39_c00327{bottom:328.705333pt;}
.y3a_c00327{bottom:328.978667pt;}
.y3b_c00327{bottom:329.260000pt;}
.y3c_c00327{bottom:329.753333pt;}
.y3d_c00327{bottom:330.000000pt;}
.y3e_c00327{bottom:330.657333pt;}
.y3f_c00327{bottom:330.852000pt;}
.y30_c00327{bottom:342.960000pt;}
.y31_c00327{bottom:343.541333pt;}
.y32_c00327{bottom:344.326667pt;}
.y33_c00327{bottom:344.822667pt;}
.y34_c00327{bottom:345.013333pt;}
.y35_c00327{bottom:346.006667pt;}
.y2f_c00327{bottom:359.648000pt;}
.y27_c00327{bottom:372.960000pt;}
.y28_c00327{bottom:373.250667pt;}
.y29_c00327{bottom:373.505333pt;}
.y2a_c00327{bottom:373.718667pt;}
.y2b_c00327{bottom:374.633333pt;}
.y2c_c00327{bottom:374.820000pt;}
.y2d_c00327{bottom:375.122667pt;}
.y2e_c00327{bottom:375.684000pt;}
.y26_c00327{bottom:389.892000pt;}
.y25_c00327{bottom:404.772000pt;}
.y1e_c00327{bottom:418.080000pt;}
.y1f_c00327{bottom:418.400000pt;}
.y20_c00327{bottom:418.881333pt;}
.y21_c00327{bottom:419.321333pt;}
.y22_c00327{bottom:419.946667pt;}
.y23_c00327{bottom:420.992000pt;}
.y24_c00327{bottom:421.113333pt;}
.y17_c00327{bottom:433.441333pt;}
.y18_c00327{bottom:434.109333pt;}
.y19_c00327{bottom:434.209333pt;}
.y1a_c00327{bottom:434.454667pt;}
.y1b_c00327{bottom:434.924000pt;}
.y1c_c00327{bottom:435.277333pt;}
.y1d_c00327{bottom:435.478667pt;}
.y10_c00327{bottom:447.844000pt;}
.y11_c00327{bottom:448.776000pt;}
.y12_c00327{bottom:449.452000pt;}
.y13_c00327{bottom:449.620000pt;}
.y14_c00327{bottom:450.128000pt;}
.y15_c00327{bottom:451.302667pt;}
.y16_c00327{bottom:451.636000pt;}
.yf_c00327{bottom:464.050667pt;}
.y9_c00327{bottom:477.605333pt;}
.ya_c00327{bottom:478.325333pt;}
.yb_c00327{bottom:478.562667pt;}
.yc_c00327{bottom:479.178667pt;}
.yd_c00327{bottom:480.909333pt;}
.ye_c00327{bottom:481.408000pt;}
.y2_c00327{bottom:493.442667pt;}
.y3_c00327{bottom:494.048000pt;}
.y4_c00327{bottom:494.585333pt;}
.y5_c00327{bottom:495.250667pt;}
.y6_c00327{bottom:495.701333pt;}
.y7_c00327{bottom:495.973333pt;}
.y8_c00327{bottom:497.017333pt;}
.y1_c00327{bottom:506.525333pt;}
.h7_c00327{height:47.600000pt;}
.ha_c00327{height:49.466667pt;}
.he_c00327{height:51.333333pt;}
.hb_c00327{height:52.266667pt;}
.h4_c00327{height:53.200000pt;}
.h3_c00327{height:54.133333pt;}
.hd_c00327{height:55.066667pt;}
.h10_c00327{height:56.933333pt;}
.h8_c00327{height:57.866667pt;}
.h11_c00327{height:58.800000pt;}
.h9_c00327{height:59.733333pt;}
.hc_c00327{height:60.666667pt;}
.h5_c00327{height:61.600000pt;}
.h6_c00327{height:62.533333pt;}
.hf_c00327{height:64.400000pt;}
.h12_c00327{height:66.266667pt;}
.h2_c00327{height:113.866667pt;}
.h0_c00327{height:545.040000pt;}
.h1_c00327{height:545.333333pt;}
.w0_c00327{width:319.200000pt;}
.w1_c00327{width:319.333333pt;}
.x0_c00327{left:0.000000pt;}
.x77_c00327{left:35.513333pt;}
.x67_c00327{left:36.720000pt;}
.xd_c00327{left:37.678667pt;}
.x2_c00327{left:38.794667pt;}
.x68_c00327{left:49.680000pt;}
.x3f_c00327{left:54.601333pt;}
.x2c_c00327{left:56.641333pt;}
.x49_c00327{left:59.189333pt;}
.x31_c00327{left:62.009333pt;}
.x21_c00327{left:64.409333pt;}
.x6f_c00327{left:66.082667pt;}
.x72_c00327{left:67.357333pt;}
.x63_c00327{left:70.800000pt;}
.x4b_c00327{left:72.140000pt;}
.x9_c00327{left:75.804000pt;}
.x75_c00327{left:76.925333pt;}
.x3_c00327{left:81.996000pt;}
.x32_c00327{left:83.178667pt;}
.x3c_c00327{left:85.817333pt;}
.xa_c00327{left:88.302667pt;}
.x36_c00327{left:90.242667pt;}
.x40_c00327{left:91.596000pt;}
.x5c_c00327{left:92.880000pt;}
.x27_c00327{left:94.561333pt;}
.x15_c00327{left:96.641333pt;}
.x64_c00327{left:97.680000pt;}
.x1b_c00327{left:98.748000pt;}
.x33_c00327{left:100.913333pt;}
.xe_c00327{left:103.438667pt;}
.x22_c00327{left:104.529333pt;}
.x70_c00327{left:105.510667pt;}
.x69_c00327{left:106.560000pt;}
.x1c_c00327{left:107.874667pt;}
.x28_c00327{left:109.921333pt;}
.x5d_c00327{left:111.600000pt;}
.x53_c00327{left:112.801333pt;}
.x60_c00327{left:114.480000pt;}
.x37_c00327{left:118.562667pt;}
.x4_c00327{left:120.334667pt;}
.x46_c00327{left:122.324000pt;}
.x41_c00327{left:123.277333pt;}
.x56_c00327{left:125.521333pt;}
.x4c_c00327{left:128.537333pt;}
.x1d_c00327{left:130.168000pt;}
.xf_c00327{left:131.278667pt;}
.x16_c00327{left:138.874667pt;}
.x23_c00327{left:141.246667pt;}
.x2d_c00327{left:143.281333pt;}
.x42_c00327{left:144.341333pt;}
.x57_c00327{left:146.401333pt;}
.x65_c00327{left:147.600000pt;}
.x17_c00327{left:149.401333pt;}
.x3d_c00327{left:151.296000pt;}
.x10_c00327{left:153.598667pt;}
.x1_c00327{left:156.240000pt;}
.x6d_c00327{left:157.612000pt;}
.x59_c00327{left:158.880000pt;}
.x38_c00327{left:160.562667pt;}
.x5e_c00327{left:164.400000pt;}
.x43_c00327{left:165.988000pt;}
.x5_c00327{left:167.856000pt;}
.x52_c00327{left:169.201333pt;}
.x6a_c00327{left:171.840000pt;}
.x1e_c00327{left:172.869333pt;}
.x34_c00327{left:177.188000pt;}
.x5f_c00327{left:178.320000pt;}
.x18_c00327{left:181.138667pt;}
.x29_c00327{left:183.361333pt;}
.x73_c00327{left:185.409333pt;}
.x50_c00327{left:186.610667pt;}
.x6c_c00327{left:188.545333pt;}
.x4d_c00327{left:191.654667pt;}
.x24_c00327{left:193.330667pt;}
.x78_c00327{left:194.873333pt;}
.x47_c00327{left:196.237333pt;}
.x6_c00327{left:200.066667pt;}
.x61_c00327{left:201.360000pt;}
.x44_c00327{left:203.901333pt;}
.x1f_c00327{left:205.025333pt;}
.x39_c00327{left:205.922667pt;}
.x4e_c00327{left:207.018667pt;}
.x3e_c00327{left:208.456000pt;}
.xb_c00327{left:211.798667pt;}
.x2e_c00327{left:212.881333pt;}
.x11_c00327{left:214.318667pt;}
.x71_c00327{left:216.606667pt;}
.x35_c00327{left:218.049333pt;}
.x7_c00327{left:219.516000pt;}
.x58_c00327{left:222.001333pt;}
.x20_c00327{left:223.342667pt;}
.x2f_c00327{left:231.361333pt;}
.x12_c00327{left:233.278667pt;}
.x62_c00327{left:234.720000pt;}
.x54_c00327{left:236.641333pt;}
.xc_c00327{left:238.058667pt;}
.x3a_c00327{left:239.282667pt;}
.x6e_c00327{left:240.636000pt;}
.x2a_c00327{left:242.641333pt;}
.x4a_c00327{left:246.152000pt;}
.x5a_c00327{left:247.680000pt;}
.x13_c00327{left:248.878667pt;}
.x19_c00327{left:254.568000pt;}
.x4f_c00327{left:255.925333pt;}
.x74_c00327{left:258.124000pt;}
.x30_c00327{left:264.241333pt;}
.x51_c00327{left:267.481333pt;}
.x55_c00327{left:270.961333pt;}
.x5b_c00327{left:271.920000pt;}
.x45_c00327{left:273.438667pt;}
.x1a_c00327{left:275.385333pt;}
.x66_c00327{left:277.920000pt;}
.x48_c00327{left:279.213333pt;}
.x25_c00327{left:280.441333pt;}
.x6b_c00327{left:282.480000pt;}
.x2b_c00327{left:284.641333pt;}
.x14_c00327{left:286.318667pt;}
.x3b_c00327{left:288.482667pt;}
.x26_c00327{left:290.534667pt;}
.x76_c00327{left:293.150667pt;}
.x8_c00327{left:294.117333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00328 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00328 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00328 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00328 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00328.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);}
.m37_c00328{transform:matrix(0.083835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083835,0.000000,0.000000,0.250000,0,0);}
.maa_c00328{transform:matrix(0.129320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129320,0.000000,0.000000,0.250000,0,0);}
.mb7_c00328{transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141460,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149070,0.000000,0.000000,0.250000,0,0);}
.mbb_c00328{transform:matrix(0.151715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151715,0.000000,0.000000,0.250000,0,0);}
.m51_c00328{transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154690,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);}
.m55_c00328{transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157430,0.000000,0.000000,0.250000,0,0);}
.ma0_c00328{transform:matrix(0.157890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157890,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.mb2_c00328{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.m57_c00328{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.mc5_c00328{transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);}
.mb9_c00328{transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);}
.mc8_c00328{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);}
.mab_c00328{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m5e_c00328{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);}
.m54_c00328{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.mb0_c00328{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.ma5_c00328{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m53_c00328{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.m93_c00328{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.m2b_c00328{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.mce_c00328{transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);}
.mef_c00328{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m48_c00328{transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00328{transform:matrix(0.167695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167695,0.000000,0.000000,0.250000,0,0);}
.md4_c00328{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.mec_c00328{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.me7_c00328{transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);}
.ma2_c00328{transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);}
.m8a_c00328{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.ma3_c00328{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.ma9_c00328{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m69_c00328{transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170610,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00328{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.mb3_c00328{transform:matrix(0.172835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172835,0.000000,0.000000,0.250000,0,0);}
.m47_c00328{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m81_c00328{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m7c_c00328{transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173690,0.000000,0.000000,0.250000,0,0);}
.mf1_c00328{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.ma7_c00328{transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174735,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.mdd_c00328{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m75_c00328{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.me4_c00328{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m38_c00328{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.mb1_c00328{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m4f_c00328{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.m24_c00328{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m5b_c00328{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.med_c00328{transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);}
.ma6_c00328{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m34_c00328{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m6d_c00328{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m7f_c00328{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m78_c00328{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m50_c00328{transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.me8_c00328{transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);}
.mde_c00328{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md1_c00328{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.mb6_c00328{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m63_c00328{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.m58_c00328{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.md5_c00328{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.mc3_c00328{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.me9_c00328{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.mb5_c00328{transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);}
.ma4_c00328{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.m5d_c00328{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m98_c00328{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m8b_c00328{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.mea_c00328{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.mad_c00328{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00328{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.mda_c00328{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m99_c00328{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.mee_c00328{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m22_c00328{transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);}
.md6_c00328{transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);}
.mca_c00328{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mcf_c00328{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.mbd_c00328{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m85_c00328{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);}
.mcc_c00328{transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.mb8_c00328{transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);}
.m59_c00328{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m56_c00328{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m8c_c00328{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.m71_c00328{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.m90_c00328{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.maf_c00328{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.mf0_c00328{transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195115,0.000000,0.000000,0.250000,0,0);}
.mc9_c00328{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m66_c00328{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m83_c00328{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.m94_c00328{transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);}
.ma8_c00328{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m82_c00328{transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);}
.m7b_c00328{transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198570,0.000000,0.000000,0.250000,0,0);}
.mdc_c00328{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m9b_c00328{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00328{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00328{transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);}
.m31_c00328{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.md0_c00328{transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);}
.m77_c00328{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.m5a_c00328{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m60_c00328{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m7d_c00328{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00328{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);}
.m97_c00328{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.mc7_c00328{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.md8_c00328{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.m68_c00328{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mae_c00328{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m87_c00328{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00328{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m5c_c00328{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00328{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.me2_c00328{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.mc4_c00328{transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);}
.mc2_c00328{transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);}
.m74_c00328{transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);}
.m86_c00328{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00328{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.mba_c00328{transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m2f_c00328{transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);}
.md3_c00328{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m91_c00328{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me5_c00328{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m9e_c00328{transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208440,0.000000,0.000000,0.250000,0,0);}
.m32_c00328{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m39_c00328{transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);}
.m89_c00328{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.md9_c00328{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.m76_c00328{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.m79_c00328{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m9a_c00328{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.m9d_c00328{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m9c_c00328{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);}
.m7a_c00328{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00328{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m67_c00328{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.mc1_c00328{transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);}
.m62_c00328{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);}
.meb_c00328{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.md2_c00328{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.me1_c00328{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214790,0.000000,0.000000,0.250000,0,0);}
.mbe_c00328{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.217080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217080,0.000000,0.000000,0.250000,0,0);}
.md7_c00328{transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);}
.m80_c00328{transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);}
.mdf_c00328{transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.m4c_c00328{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.me3_c00328{transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);}
.m96_c00328{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m72_c00328{transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);}
.m70_c00328{transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);}
.m6e_c00328{transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);}
.mac_c00328{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00328{transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);}
.mc6_c00328{transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);}
.m8f_c00328{transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00328{transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);}
.m4e_c00328{transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);}
.m88_c00328{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m6c_c00328{transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);}
.m6b_c00328{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.mbc_c00328{transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);}
.me6_c00328{transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);}
.m95_c00328{transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);}
.mc0_c00328{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);}
.mdb_c00328{transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);}
.me0_c00328{transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240085,0.000000,0.000000,0.250000,0,0);}
.mbf_c00328{transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00328{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m6f_c00328{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m73_c00328{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m92_c00328{transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);}
.m64_c00328{transform:matrix(0.258280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258280,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m84_c00328{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:0.000000px;}
.fc0_c00328{color:transparent;}
.fs9_c00328{font-size:54.600000px;}
.fs7_c00328{font-size:55.650000px;}
.fs1_c00328{font-size:57.750000px;}
.fs8_c00328{font-size:59.850000px;}
.fs2_c00328{font-size:60.900000px;}
.fs4_c00328{font-size:61.950000px;}
.fs5_c00328{font-size:63.000000px;}
.fsa_c00328{font-size:64.050000px;}
.fs6_c00328{font-size:65.100000px;}
.fsd_c00328{font-size:66.150000px;}
.fsb_c00328{font-size:67.200000px;}
.fsc_c00328{font-size:69.300000px;}
.fs3_c00328{font-size:72.450000px;}
.fs0_c00328{font-size:126.000000px;}
.y0_c00328{bottom:0.000000px;}
.y26_c00328{bottom:26.586000px;}
.y25_c00328{bottom:43.101000px;}
.y24_c00328{bottom:61.425000px;}
.y23_c00328{bottom:78.549000px;}
.y22_c00328{bottom:95.167500px;}
.y21_c00328{bottom:110.976000px;}
.y20_c00328{bottom:128.340000px;}
.y1f_c00328{bottom:145.495500px;}
.y19_c00328{bottom:159.036000px;}
.y1a_c00328{bottom:159.591000px;}
.y1b_c00328{bottom:159.918000px;}
.y1c_c00328{bottom:160.303500px;}
.y1d_c00328{bottom:160.569000px;}
.y1e_c00328{bottom:162.093000px;}
.y18_c00328{bottom:179.311500px;}
.y17_c00328{bottom:195.112500px;}
.y16_c00328{bottom:213.061500px;}
.y15_c00328{bottom:230.283000px;}
.y14_c00328{bottom:247.053000px;}
.y13_c00328{bottom:264.966000px;}
.y12_c00328{bottom:282.124500px;}
.y11_c00328{bottom:299.524500px;}
.y10_c00328{bottom:316.740000px;}
.yf_c00328{bottom:333.778500px;}
.ye_c00328{bottom:349.893000px;}
.yd_c00328{bottom:365.449500px;}
.yc_c00328{bottom:382.828500px;}
.yb_c00328{bottom:399.148500px;}
.ya_c00328{bottom:416.976000px;}
.y9_c00328{bottom:433.012500px;}
.y8_c00328{bottom:449.997000px;}
.y7_c00328{bottom:466.251000px;}
.y6_c00328{bottom:483.517500px;}
.y5_c00328{bottom:500.809500px;}
.y4_c00328{bottom:518.062500px;}
.y3_c00328{bottom:535.734000px;}
.y2_c00328{bottom:552.985500px;}
.y1_c00328{bottom:565.441500px;}
.hb_c00328{height:54.600000px;}
.h9_c00328{height:55.650000px;}
.h3_c00328{height:57.750000px;}
.ha_c00328{height:59.850000px;}
.h4_c00328{height:60.900000px;}
.h6_c00328{height:61.950000px;}
.h7_c00328{height:63.000000px;}
.hc_c00328{height:64.050000px;}
.h8_c00328{height:65.100000px;}
.hf_c00328{height:66.150000px;}
.hd_c00328{height:67.200000px;}
.he_c00328{height:69.300000px;}
.h5_c00328{height:72.450000px;}
.h2_c00328{height:126.000000px;}
.h0_c00328{height:613.170000px;}
.h1_c00328{height:613.500000px;}
.w0_c00328{width:359.100000px;}
.w1_c00328{width:359.250000px;}
.x0_c00328{left:0.000000px;}
.x39_c00328{left:29.700000px;}
.x3_c00328{left:31.320000px;}
.x1_c00328{left:32.670000px;}
.x1e_c00328{left:34.560000px;}
.x65_c00328{left:38.610000px;}
.x5d_c00328{left:40.500000px;}
.xe_c00328{left:43.470000px;}
.x3a_c00328{left:45.900000px;}
.x5a_c00328{left:50.220000px;}
.x5e_c00328{left:51.840000px;}
.x4_c00328{left:53.190000px;}
.x53_c00328{left:55.350000px;}
.x2c_c00328{left:56.970000px;}
.x78_c00328{left:58.051500px;}
.x42_c00328{left:65.340000px;}
.xf_c00328{left:66.420000px;}
.x36_c00328{left:67.770000px;}
.xa_c00328{left:70.470000px;}
.x1f_c00328{left:71.550000px;}
.x6d_c00328{left:74.791500px;}
.x5f_c00328{left:75.870000px;}
.x43_c00328{left:78.570000px;}
.x66_c00328{left:82.890000px;}
.x54_c00328{left:83.970000px;}
.x51_c00328{left:85.860000px;}
.x32_c00328{left:87.210000px;}
.x20_c00328{left:88.290000px;}
.x5_c00328{left:91.260000px;}
.x77_c00328{left:94.771500px;}
.x3b_c00328{left:96.390000px;}
.x4c_c00328{left:99.900000px;}
.x25_c00328{left:104.490000px;}
.x17_c00328{left:110.430000px;}
.x10_c00328{left:113.940000px;}
.x3c_c00328{left:116.100000px;}
.x79_c00328{left:118.261500px;}
.x37_c00328{left:119.340000px;}
.x47_c00328{left:121.230000px;}
.x2d_c00328{left:123.120000px;}
.x35_c00328{left:125.010000px;}
.x6_c00328{left:128.250000px;}
.x6f_c00328{left:130.681500px;}
.x21_c00328{left:132.030000px;}
.x2e_c00328{left:134.190000px;}
.x5b_c00328{left:137.700000px;}
.x48_c00328{left:141.480000px;}
.x26_c00328{left:143.370000px;}
.xb_c00328{left:144.990000px;}
.x44_c00328{left:146.070000px;}
.x7_c00328{left:147.420000px;}
.x6b_c00328{left:149.124000px;}
.x11_c00328{left:150.660000px;}
.x4d_c00328{left:152.550000px;}
.x61_c00328{left:153.630000px;}
.x27_c00328{left:156.060000px;}
.x18_c00328{left:157.410000px;}
.x2_c00328{left:161.460000px;}
.x75_c00328{left:163.351500px;}
.x67_c00328{left:165.240000px;}
.x3d_c00328{left:169.830000px;}
.x4e_c00328{left:170.910000px;}
.x2f_c00328{left:171.990000px;}
.x49_c00328{left:173.880000px;}
.x45_c00328{left:175.770000px;}
.x12_c00328{left:185.490000px;}
.x56_c00328{left:188.190000px;}
.x19_c00328{left:189.270000px;}
.x22_c00328{left:190.620000px;}
.x76_c00328{left:192.511500px;}
.x62_c00328{left:194.130000px;}
.x72_c00328{left:195.211500px;}
.xc_c00328{left:198.180000px;}
.x28_c00328{left:200.610000px;}
.x1a_c00328{left:206.280000px;}
.x33_c00328{left:209.790000px;}
.x13_c00328{left:211.140000px;}
.x3e_c00328{left:213.300000px;}
.x57_c00328{left:214.380000px;}
.x6e_c00328{left:216.271500px;}
.x30_c00328{left:217.620000px;}
.x8_c00328{left:220.050000px;}
.x4a_c00328{left:222.210000px;}
.x50_c00328{left:226.530000px;}
.x68_c00328{left:227.880000px;}
.x23_c00328{left:229.770000px;}
.x14_c00328{left:230.850000px;}
.x34_c00328{left:231.930000px;}
.x6a_c00328{left:233.280000px;}
.x29_c00328{left:235.170000px;}
.x7a_c00328{left:237.331500px;}
.x58_c00328{left:241.110000px;}
.x73_c00328{left:242.461500px;}
.x5c_c00328{left:244.350000px;}
.x38_c00328{left:246.240000px;}
.x2a_c00328{left:250.830000px;}
.x3f_c00328{left:254.610000px;}
.x1b_c00328{left:256.500000px;}
.x60_c00328{left:258.660000px;}
.x46_c00328{left:260.010000px;}
.x7b_c00328{left:261.091500px;}
.x31_c00328{left:263.790000px;}
.x69_c00328{left:268.650000px;}
.x70_c00328{left:271.081500px;}
.xd_c00328{left:275.130000px;}
.x40_c00328{left:276.210000px;}
.x24_c00328{left:278.640000px;}
.x1c_c00328{left:280.260000px;}
.x74_c00328{left:281.341500px;}
.x59_c00328{left:282.420000px;}
.x71_c00328{left:284.311500px;}
.x63_c00328{left:285.660000px;}
.x52_c00328{left:288.900000px;}
.x15_c00328{left:290.520000px;}
.x2b_c00328{left:293.490000px;}
.x9_c00328{left:294.570000px;}
.x7c_c00328{left:299.971500px;}
.x41_c00328{left:301.590000px;}
.x64_c00328{left:302.940000px;}
.x55_c00328{left:304.290000px;}
.x1d_c00328{left:305.370000px;}
.x16_c00328{left:310.230000px;}
.x6c_c00328{left:311.725500px;}
.x4b_c00328{left:313.470000px;}
.x4f_c00328{left:317.790000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.fs9_c00328{font-size:48.533333pt;}
.fs7_c00328{font-size:49.466667pt;}
.fs1_c00328{font-size:51.333333pt;}
.fs8_c00328{font-size:53.200000pt;}
.fs2_c00328{font-size:54.133333pt;}
.fs4_c00328{font-size:55.066667pt;}
.fs5_c00328{font-size:56.000000pt;}
.fsa_c00328{font-size:56.933333pt;}
.fs6_c00328{font-size:57.866667pt;}
.fsd_c00328{font-size:58.800000pt;}
.fsb_c00328{font-size:59.733333pt;}
.fsc_c00328{font-size:61.600000pt;}
.fs3_c00328{font-size:64.400000pt;}
.fs0_c00328{font-size:112.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y26_c00328{bottom:23.632000pt;}
.y25_c00328{bottom:38.312000pt;}
.y24_c00328{bottom:54.600000pt;}
.y23_c00328{bottom:69.821333pt;}
.y22_c00328{bottom:84.593333pt;}
.y21_c00328{bottom:98.645333pt;}
.y20_c00328{bottom:114.080000pt;}
.y1f_c00328{bottom:129.329333pt;}
.y19_c00328{bottom:141.365333pt;}
.y1a_c00328{bottom:141.858667pt;}
.y1b_c00328{bottom:142.149333pt;}
.y1c_c00328{bottom:142.492000pt;}
.y1d_c00328{bottom:142.728000pt;}
.y1e_c00328{bottom:144.082667pt;}
.y18_c00328{bottom:159.388000pt;}
.y17_c00328{bottom:173.433333pt;}
.y16_c00328{bottom:189.388000pt;}
.y15_c00328{bottom:204.696000pt;}
.y14_c00328{bottom:219.602667pt;}
.y13_c00328{bottom:235.525333pt;}
.y12_c00328{bottom:250.777333pt;}
.y11_c00328{bottom:266.244000pt;}
.y10_c00328{bottom:281.546667pt;}
.yf_c00328{bottom:296.692000pt;}
.ye_c00328{bottom:311.016000pt;}
.yd_c00328{bottom:324.844000pt;}
.yc_c00328{bottom:340.292000pt;}
.yb_c00328{bottom:354.798667pt;}
.ya_c00328{bottom:370.645333pt;}
.y9_c00328{bottom:384.900000pt;}
.y8_c00328{bottom:399.997333pt;}
.y7_c00328{bottom:414.445333pt;}
.y6_c00328{bottom:429.793333pt;}
.y5_c00328{bottom:445.164000pt;}
.y4_c00328{bottom:460.500000pt;}
.y3_c00328{bottom:476.208000pt;}
.y2_c00328{bottom:491.542667pt;}
.y1_c00328{bottom:502.614667pt;}
.hb_c00328{height:48.533333pt;}
.h9_c00328{height:49.466667pt;}
.h3_c00328{height:51.333333pt;}
.ha_c00328{height:53.200000pt;}
.h4_c00328{height:54.133333pt;}
.h6_c00328{height:55.066667pt;}
.h7_c00328{height:56.000000pt;}
.hc_c00328{height:56.933333pt;}
.h8_c00328{height:57.866667pt;}
.hf_c00328{height:58.800000pt;}
.hd_c00328{height:59.733333pt;}
.he_c00328{height:61.600000pt;}
.h5_c00328{height:64.400000pt;}
.h2_c00328{height:112.000000pt;}
.h0_c00328{height:545.040000pt;}
.h1_c00328{height:545.333333pt;}
.w0_c00328{width:319.200000pt;}
.w1_c00328{width:319.333333pt;}
.x0_c00328{left:0.000000pt;}
.x39_c00328{left:26.400000pt;}
.x3_c00328{left:27.840000pt;}
.x1_c00328{left:29.040000pt;}
.x1e_c00328{left:30.720000pt;}
.x65_c00328{left:34.320000pt;}
.x5d_c00328{left:36.000000pt;}
.xe_c00328{left:38.640000pt;}
.x3a_c00328{left:40.800000pt;}
.x5a_c00328{left:44.640000pt;}
.x5e_c00328{left:46.080000pt;}
.x4_c00328{left:47.280000pt;}
.x53_c00328{left:49.200000pt;}
.x2c_c00328{left:50.640000pt;}
.x78_c00328{left:51.601333pt;}
.x42_c00328{left:58.080000pt;}
.xf_c00328{left:59.040000pt;}
.x36_c00328{left:60.240000pt;}
.xa_c00328{left:62.640000pt;}
.x1f_c00328{left:63.600000pt;}
.x6d_c00328{left:66.481333pt;}
.x5f_c00328{left:67.440000pt;}
.x43_c00328{left:69.840000pt;}
.x66_c00328{left:73.680000pt;}
.x54_c00328{left:74.640000pt;}
.x51_c00328{left:76.320000pt;}
.x32_c00328{left:77.520000pt;}
.x20_c00328{left:78.480000pt;}
.x5_c00328{left:81.120000pt;}
.x77_c00328{left:84.241333pt;}
.x3b_c00328{left:85.680000pt;}
.x4c_c00328{left:88.800000pt;}
.x25_c00328{left:92.880000pt;}
.x17_c00328{left:98.160000pt;}
.x10_c00328{left:101.280000pt;}
.x3c_c00328{left:103.200000pt;}
.x79_c00328{left:105.121333pt;}
.x37_c00328{left:106.080000pt;}
.x47_c00328{left:107.760000pt;}
.x2d_c00328{left:109.440000pt;}
.x35_c00328{left:111.120000pt;}
.x6_c00328{left:114.000000pt;}
.x6f_c00328{left:116.161333pt;}
.x21_c00328{left:117.360000pt;}
.x2e_c00328{left:119.280000pt;}
.x5b_c00328{left:122.400000pt;}
.x48_c00328{left:125.760000pt;}
.x26_c00328{left:127.440000pt;}
.xb_c00328{left:128.880000pt;}
.x44_c00328{left:129.840000pt;}
.x7_c00328{left:131.040000pt;}
.x6b_c00328{left:132.554667pt;}
.x11_c00328{left:133.920000pt;}
.x4d_c00328{left:135.600000pt;}
.x61_c00328{left:136.560000pt;}
.x27_c00328{left:138.720000pt;}
.x18_c00328{left:139.920000pt;}
.x2_c00328{left:143.520000pt;}
.x75_c00328{left:145.201333pt;}
.x67_c00328{left:146.880000pt;}
.x3d_c00328{left:150.960000pt;}
.x4e_c00328{left:151.920000pt;}
.x2f_c00328{left:152.880000pt;}
.x49_c00328{left:154.560000pt;}
.x45_c00328{left:156.240000pt;}
.x12_c00328{left:164.880000pt;}
.x56_c00328{left:167.280000pt;}
.x19_c00328{left:168.240000pt;}
.x22_c00328{left:169.440000pt;}
.x76_c00328{left:171.121333pt;}
.x62_c00328{left:172.560000pt;}
.x72_c00328{left:173.521333pt;}
.xc_c00328{left:176.160000pt;}
.x28_c00328{left:178.320000pt;}
.x1a_c00328{left:183.360000pt;}
.x33_c00328{left:186.480000pt;}
.x13_c00328{left:187.680000pt;}
.x3e_c00328{left:189.600000pt;}
.x57_c00328{left:190.560000pt;}
.x6e_c00328{left:192.241333pt;}
.x30_c00328{left:193.440000pt;}
.x8_c00328{left:195.600000pt;}
.x4a_c00328{left:197.520000pt;}
.x50_c00328{left:201.360000pt;}
.x68_c00328{left:202.560000pt;}
.x23_c00328{left:204.240000pt;}
.x14_c00328{left:205.200000pt;}
.x34_c00328{left:206.160000pt;}
.x6a_c00328{left:207.360000pt;}
.x29_c00328{left:209.040000pt;}
.x7a_c00328{left:210.961333pt;}
.x58_c00328{left:214.320000pt;}
.x73_c00328{left:215.521333pt;}
.x5c_c00328{left:217.200000pt;}
.x38_c00328{left:218.880000pt;}
.x2a_c00328{left:222.960000pt;}
.x3f_c00328{left:226.320000pt;}
.x1b_c00328{left:228.000000pt;}
.x60_c00328{left:229.920000pt;}
.x46_c00328{left:231.120000pt;}
.x7b_c00328{left:232.081333pt;}
.x31_c00328{left:234.480000pt;}
.x69_c00328{left:238.800000pt;}
.x70_c00328{left:240.961333pt;}
.xd_c00328{left:244.560000pt;}
.x40_c00328{left:245.520000pt;}
.x24_c00328{left:247.680000pt;}
.x1c_c00328{left:249.120000pt;}
.x74_c00328{left:250.081333pt;}
.x59_c00328{left:251.040000pt;}
.x71_c00328{left:252.721333pt;}
.x63_c00328{left:253.920000pt;}
.x52_c00328{left:256.800000pt;}
.x15_c00328{left:258.240000pt;}
.x2b_c00328{left:260.880000pt;}
.x9_c00328{left:261.840000pt;}
.x7c_c00328{left:266.641333pt;}
.x41_c00328{left:268.080000pt;}
.x64_c00328{left:269.280000pt;}
.x55_c00328{left:270.480000pt;}
.x1d_c00328{left:271.440000pt;}
.x16_c00328{left:275.760000pt;}
.x6c_c00328{left:277.089333pt;}
.x4b_c00328{left:278.640000pt;}
.x4f_c00328{left:282.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00329 {
    display:none;
  }
  .loading-indicator_c00329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00329 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00329 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00329" -> "#page-container .classname_c00329")
 */
.pf_c00329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00329 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00329 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00329 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00329 {overflow:visible;}
  }
}
.c_c00329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00329 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00329:after { /* webkit #35443 */
  content: '';
}
.t_c00329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00329 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00329 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00329 { /* info for Javascript */
  display:none;
}
.l_c00329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00329:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00329 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00329.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00329{transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);}
.m63_c00329{transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148580,0.000000,0.000000,0.250000,0,0);}
.m41_c00329{transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);}
.mb6_c00329{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.mab_c00329{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.md9_c00329{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m62_c00329{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.m8f_c00329{transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);}
.m75_c00329{transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155985,0.000000,0.000000,0.250000,0,0);}
.mc8_c00329{transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00329{transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159090,0.000000,0.000000,0.250000,0,0);}
.maf_c00329{transform:matrix(0.161420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161420,0.000000,0.000000,0.250000,0,0);}
.mcb_c00329{transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162240,0.000000,0.000000,0.250000,0,0);}
.m25_c00329{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.mda_c00329{transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);}
.mca_c00329{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00329{transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166635,0.000000,0.000000,0.250000,0,0);}
.m3e_c00329{transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);}
.m90_c00329{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m91_c00329{transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);}
.m52_c00329{transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);}
.mc2_c00329{transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169660,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m6e_c00329{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.mb3_c00329{transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);}
.m33_c00329{transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173110,0.000000,0.000000,0.250000,0,0);}
.mb1_c00329{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00329{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m59_c00329{transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);}
.m77_c00329{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.ma2_c00329{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m93_c00329{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);-ms-transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);}
.m9e_c00329{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.md8_c00329{transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mc4_c00329{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.mbf_c00329{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.mae_c00329{transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);}
.mc1_c00329{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.mdd_c00329{transform:matrix(0.178145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178145,0.000000,0.000000,0.250000,0,0);}
.m21_c00329{transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179435,0.000000,0.000000,0.250000,0,0);}
.me3_c00329{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.maa_c00329{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.mac_c00329{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m3b_c00329{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.mbb_c00329{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m7e_c00329{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.mad_c00329{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m64_c00329{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me8_c00329{transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181620,0.000000,0.000000,0.250000,0,0);}
.m37_c00329{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.mbd_c00329{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.m9a_c00329{transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);}
.m4c_c00329{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.183447,-0.002568,0.003500,0.249976,0,0);-ms-transform:matrix(0.183447,-0.002568,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183447,-0.002568,0.003500,0.249976,0,0);}
.m83_c00329{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184872,-0.002588,0.003500,0.249976,0,0);}
.me_c00329{transform:matrix(0.185072,-0.002591,0.003500,0.249976,0,0);-ms-transform:matrix(0.185072,-0.002591,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185072,-0.002591,0.003500,0.249976,0,0);}
.ma8_c00329{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.mc7_c00329{transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185710,0.000000,0.000000,0.250000,0,0);}
.me7_c00329{transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);}
.m2f_c00329{transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);}
.m36_c00329{transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186365,0.000000,0.000000,0.250000,0,0);}
.m66_c00329{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m4e_c00329{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m60_c00329{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m35_c00329{transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);}
.md7_c00329{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m55_c00329{transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);}
.mb2_c00329{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.mb4_c00329{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m57_c00329{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m7b_c00329{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.md1_c00329{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.m7c_c00329{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.mc9_c00329{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m22_c00329{transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);}
.m86_c00329{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.m3c_c00329{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.me2_c00329{transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);}
.m74_c00329{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.md6_c00329{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m29_c00329{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.m6d_c00329{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.195271,-0.002734,0.003500,0.249976,0,0);-ms-transform:matrix(0.195271,-0.002734,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195271,-0.002734,0.003500,0.249976,0,0);}
.m8d_c00329{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m81_c00329{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00329{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.mbc_c00329{transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);}
.ma0_c00329{transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.196981,-0.002758,0.003500,0.249976,0,0);-ms-transform:matrix(0.196981,-0.002758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196981,-0.002758,0.003500,0.249976,0,0);}
.m2a_c00329{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.m5b_c00329{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00329{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m61_c00329{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m70_c00329{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.ma9_c00329{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.m3d_c00329{transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198015,0.000000,0.000000,0.250000,0,0);}
.m85_c00329{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.mc5_c00329{transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00329{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m51_c00329{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.mc3_c00329{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.m6f_c00329{transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);}
.mcd_c00329{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m94_c00329{transform:matrix(0.200195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200195,0.000000,0.000000,0.250000,0,0);}
.mb0_c00329{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m9f_c00329{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.m4d_c00329{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.201495,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201495,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201495,-0.002821,0.003500,0.249976,0,0);}
.mc6_c00329{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m78_c00329{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.m71_c00329{transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);}
.m50_c00329{transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);}
.m96_c00329{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.m43_c00329{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.m44_c00329{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.m8c_c00329{transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);}
.mba_c00329{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00329{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.mb8_c00329{transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);}
.m42_c00329{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.me6_c00329{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mbe_c00329{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m3a_c00329{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.mb7_c00329{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m38_c00329{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m45_c00329{transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m9b_c00329{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m39_c00329{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.207505,-0.002905,0.003500,0.249976,0,0);-ms-transform:matrix(0.207505,-0.002905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207505,-0.002905,0.003500,0.249976,0,0);}
.mdf_c00329{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m48_c00329{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.ma1_c00329{transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);}
.m32_c00329{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m84_c00329{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.m7a_c00329{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.ma5_c00329{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.mcc_c00329{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m92_c00329{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m79_c00329{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mc0_c00329{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m53_c00329{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m76_c00329{transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209645,0.000000,0.000000,0.250000,0,0);}
.m82_c00329{transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.209864,-0.002938,0.003500,0.249976,0,0);-ms-transform:matrix(0.209864,-0.002938,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209864,-0.002938,0.003500,0.249976,0,0);}
.m69_c00329{transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);}
.m73_c00329{transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.211609,-0.002963,0.003500,0.249976,0,0);-ms-transform:matrix(0.211609,-0.002963,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211609,-0.002963,0.003500,0.249976,0,0);}
.m9c_c00329{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.212474,-0.002975,0.003500,0.249976,0,0);-ms-transform:matrix(0.212474,-0.002975,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212474,-0.002975,0.003500,0.249976,0,0);}
.ma4_c00329{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me0_c00329{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.mdc_c00329{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m72_c00329{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m47_c00329{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.212819,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212819,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212819,-0.002979,0.003500,0.249976,0,0);}
.m4f_c00329{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m99_c00329{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213780,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.214984,-0.003010,0.003500,0.249976,0,0);-ms-transform:matrix(0.214984,-0.003010,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214984,-0.003010,0.003500,0.249976,0,0);}
.m2d_c00329{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.ma6_c00329{transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216070,0.000000,0.000000,0.250000,0,0);}
.m40_c00329{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.me5_c00329{transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);}
.md2_c00329{transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);}
.m49_c00329{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);-ms-transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218104,-0.003053,0.003500,0.249976,0,0);}
.m31_c00329{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.me1_c00329{transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218885,0.000000,0.000000,0.250000,0,0);}
.m3f_c00329{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m68_c00329{transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220690,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.mde_c00329{transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);}
.m80_c00329{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.222253,-0.003112,0.003500,0.249976,0,0);-ms-transform:matrix(0.222253,-0.003112,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222253,-0.003112,0.003500,0.249976,0,0);}
.m1d_c00329{transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);}
.m4a_c00329{transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);}
.md5_c00329{transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);}
.m56_c00329{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m5c_c00329{transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.224343,-0.003141,0.003500,0.249976,0,0);-ms-transform:matrix(0.224343,-0.003141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224343,-0.003141,0.003500,0.249976,0,0);}
.me4_c00329{transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225535,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.226278,-0.003168,0.003500,0.249976,0,0);-ms-transform:matrix(0.226278,-0.003168,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226278,-0.003168,0.003500,0.249976,0,0);}
.m34_c00329{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.mb9_c00329{transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);}
.m88_c00329{transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);}
.m30_c00329{transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);}
.mce_c00329{transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);}
.m7f_c00329{transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);}
.ma3_c00329{transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);}
.m95_c00329{transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);}
.m7d_c00329{transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);}
.m4b_c00329{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.m8b_c00329{transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);}
.m6a_c00329{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m54_c00329{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m58_c00329{transform:matrix(0.231710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231710,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.231972,-0.003248,0.003500,0.249976,0,0);-ms-transform:matrix(0.231972,-0.003248,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231972,-0.003248,0.003500,0.249976,0,0);}
.md0_c00329{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.mcf_c00329{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.ma7_c00329{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.236162,-0.003306,0.003500,0.249976,0,0);-ms-transform:matrix(0.236162,-0.003306,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236162,-0.003306,0.003500,0.249976,0,0);}
.m97_c00329{transform:matrix(0.236170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236170,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.236357,-0.003309,0.003500,0.249976,0,0);-ms-transform:matrix(0.236357,-0.003309,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236357,-0.003309,0.003500,0.249976,0,0);}
.m87_c00329{transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);-ms-transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);}
.m67_c00329{transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);}
.m6b_c00329{transform:matrix(0.238615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238615,0.000000,0.000000,0.250000,0,0);}
.m98_c00329{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00329{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.240431,-0.003366,0.003500,0.249976,0,0);-ms-transform:matrix(0.240431,-0.003366,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240431,-0.003366,0.003500,0.249976,0,0);}
.m6c_c00329{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m46_c00329{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.254425,-0.003562,0.003500,0.249976,0,0);-ms-transform:matrix(0.254425,-0.003562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254425,-0.003562,0.003500,0.249976,0,0);}
.md4_c00329{transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);}
.mdb_c00329{transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);}
.m89_c00329{transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);}
.md3_c00329{transform:matrix(0.264445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264445,0.000000,0.000000,0.250000,0,0);}
.m5a_c00329{transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);}
.m8a_c00329{transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:transparent;}
.fsc_c00329{font-size:56.700000px;}
.fs9_c00329{font-size:57.750000px;}
.fs8_c00329{font-size:58.800000px;}
.fs3_c00329{font-size:58.805762px;}
.fs4_c00329{font-size:59.850000px;}
.fs1_c00329{font-size:59.855865px;}
.fsb_c00329{font-size:60.900000px;}
.fs6_c00329{font-size:61.950000px;}
.fs2_c00329{font-size:61.956071px;}
.fs5_c00329{font-size:63.000000px;}
.fsf_c00329{font-size:65.100000px;}
.fs10_c00329{font-size:66.150000px;}
.fs7_c00329{font-size:67.200000px;}
.fs0_c00329{font-size:68.250000px;}
.fsa_c00329{font-size:70.350000px;}
.fse_c00329{font-size:71.400000px;}
.fsd_c00329{font-size:72.450000px;}
.y0_c00329{bottom:0.000000px;}
.y62_c00329{bottom:23.493000px;}
.y63_c00329{bottom:24.028500px;}
.y64_c00329{bottom:24.373500px;}
.y65_c00329{bottom:25.053000px;}
.y66_c00329{bottom:26.373000px;}
.y67_c00329{bottom:26.883000px;}
.y68_c00329{bottom:27.768000px;}
.y69_c00329{bottom:28.146000px;}
.y5b_c00329{bottom:40.770000px;}
.y5c_c00329{bottom:41.140500px;}
.y5d_c00329{bottom:41.350500px;}
.y5e_c00329{bottom:41.755500px;}
.y5f_c00329{bottom:42.373500px;}
.y60_c00329{bottom:43.176000px;}
.y61_c00329{bottom:43.639500px;}
.y5a_c00329{bottom:58.999500px;}
.y54_c00329{bottom:74.251500px;}
.y55_c00329{bottom:74.847000px;}
.y56_c00329{bottom:75.792000px;}
.y57_c00329{bottom:76.155000px;}
.y58_c00329{bottom:76.831500px;}
.y59_c00329{bottom:77.283000px;}
.y53_c00329{bottom:92.722500px;}
.y52_c00329{bottom:109.881000px;}
.y4c_c00329{bottom:125.281500px;}
.y4d_c00329{bottom:125.866500px;}
.y4e_c00329{bottom:126.879000px;}
.y4f_c00329{bottom:127.540500px;}
.y50_c00329{bottom:127.764000px;}
.y51_c00329{bottom:128.251500px;}
.y4b_c00329{bottom:143.994000px;}
.y4a_c00329{bottom:160.762500px;}
.y49_c00329{bottom:178.188000px;}
.y48_c00329{bottom:195.865500px;}
.y47_c00329{bottom:213.657000px;}
.y46_c00329{bottom:230.398500px;}
.y45_c00329{bottom:247.332000px;}
.y44_c00329{bottom:263.545500px;}
.y43_c00329{bottom:280.615500px;}
.y42_c00329{bottom:298.068000px;}
.y3c_c00329{bottom:313.738500px;}
.y3d_c00329{bottom:313.990500px;}
.y3e_c00329{bottom:314.433000px;}
.y3f_c00329{bottom:315.354000px;}
.y40_c00329{bottom:316.422000px;}
.y41_c00329{bottom:316.722000px;}
.y3b_c00329{bottom:332.242500px;}
.y32_c00329{bottom:347.758500px;}
.y33_c00329{bottom:347.995500px;}
.y34_c00329{bottom:348.895500px;}
.y35_c00329{bottom:349.035000px;}
.y36_c00329{bottom:349.317000px;}
.y37_c00329{bottom:349.993500px;}
.y38_c00329{bottom:350.232000px;}
.y39_c00329{bottom:350.463000px;}
.y3a_c00329{bottom:351.250500px;}
.y31_c00329{bottom:367.314000px;}
.y30_c00329{bottom:383.635500px;}
.y2f_c00329{bottom:401.187000px;}
.y2e_c00329{bottom:417.502500px;}
.y26_c00329{bottom:433.348500px;}
.y27_c00329{bottom:434.007000px;}
.y28_c00329{bottom:434.139000px;}
.y29_c00329{bottom:434.523000px;}
.y2a_c00329{bottom:434.929500px;}
.y2b_c00329{bottom:435.216000px;}
.y2c_c00329{bottom:435.451500px;}
.y2d_c00329{bottom:435.930000px;}
.y25_c00329{bottom:451.377000px;}
.y24_c00329{bottom:468.387000px;}
.y1a_c00329{bottom:484.381500px;}
.y1b_c00329{bottom:484.729500px;}
.y1c_c00329{bottom:484.908000px;}
.y1d_c00329{bottom:485.382000px;}
.y1e_c00329{bottom:485.679000px;}
.y1f_c00329{bottom:486.201000px;}
.y20_c00329{bottom:486.396000px;}
.y21_c00329{bottom:486.711000px;}
.y22_c00329{bottom:487.014000px;}
.y23_c00329{bottom:487.411500px;}
.y19_c00329{bottom:502.701000px;}
.y10_c00329{bottom:517.590009px;}
.y11_c00329{bottom:518.310996px;}
.y12_c00329{bottom:518.625786px;}
.y13_c00329{bottom:519.072552px;}
.y14_c00329{bottom:519.672429px;}
.y15_c00329{bottom:520.501779px;}
.y16_c00329{bottom:520.705455px;}
.y17_c00329{bottom:521.621256px;}
.y18_c00329{bottom:521.802768px;}
.y8_c00329{bottom:534.331164px;}
.y9_c00329{bottom:535.166628px;}
.ya_c00329{bottom:535.442547px;}
.yb_c00329{bottom:536.205981px;}
.yc_c00329{bottom:537.132144px;}
.yd_c00329{bottom:537.377928px;}
.ye_c00329{bottom:538.179267px;}
.yf_c00329{bottom:538.349661px;}
.y2_c00329{bottom:551.883000px;}
.y3_c00329{bottom:553.004757px;}
.y4_c00329{bottom:553.485720px;}
.y5_c00329{bottom:554.434668px;}
.y6_c00329{bottom:555.447771px;}
.y7_c00329{bottom:555.962061px;}
.y1_c00329{bottom:569.970000px;}
.he_c00329{height:56.700000px;}
.hb_c00329{height:57.750000px;}
.ha_c00329{height:58.800000px;}
.h5_c00329{height:58.805762px;}
.h6_c00329{height:59.850000px;}
.h3_c00329{height:59.855865px;}
.hd_c00329{height:60.900000px;}
.h8_c00329{height:61.950000px;}
.h4_c00329{height:61.956071px;}
.h7_c00329{height:63.000000px;}
.h11_c00329{height:65.100000px;}
.h12_c00329{height:66.150000px;}
.h9_c00329{height:67.200000px;}
.h2_c00329{height:68.250000px;}
.hc_c00329{height:70.350000px;}
.h10_c00329{height:71.400000px;}
.hf_c00329{height:72.450000px;}
.h0_c00329{height:613.170000px;}
.h1_c00329{height:613.500000px;}
.w0_c00329{width:359.100000px;}
.w1_c00329{width:359.250000px;}
.x0_c00329{left:0.000000px;}
.xf_c00329{left:35.020140px;}
.x2_c00329{left:36.897000px;}
.x4f_c00329{left:38.607000px;}
.x18_c00329{left:44.010000px;}
.x63_c00329{left:53.730000px;}
.x3f_c00329{left:57.132000px;}
.x45_c00329{left:60.073500px;}
.x3b_c00329{left:61.285500px;}
.x50_c00329{left:62.370000px;}
.x19_c00329{left:67.230000px;}
.x5b_c00329{left:69.120000px;}
.x74_c00329{left:72.489000px;}
.x48_c00329{left:73.977000px;}
.x67_c00329{left:75.330000px;}
.x6f_c00329{left:78.570000px;}
.x3c_c00329{left:80.455500px;}
.x10_c00329{left:83.089968px;}
.x57_c00329{left:86.400000px;}
.x6d_c00329{left:87.613500px;}
.x6a_c00329{left:89.910000px;}
.x5f_c00329{left:91.800000px;}
.x24_c00329{left:93.688500px;}
.x2f_c00329{left:94.765500px;}
.x8_c00329{left:96.044574px;}
.x70_c00329{left:98.010000px;}
.x46_c00329{left:100.302000px;}
.x2b_c00329{left:102.402000px;}
.x11_c00329{left:104.074674px;}
.x5c_c00329{left:106.650000px;}
.x55_c00329{left:111.240000px;}
.x30_c00329{left:112.855500px;}
.x9_c00329{left:115.753074px;}
.x3_c00329{left:117.022500px;}
.x28_c00329{left:119.068500px;}
.x1a_c00329{left:120.690000px;}
.x58_c00329{left:121.770000px;}
.x4a_c00329{left:125.547000px;}
.x1f_c00329{left:126.708000px;}
.x75_c00329{left:128.391000px;}
.x33_c00329{left:129.865500px;}
.x40_c00329{left:132.178500px;}
.x12_c00329{left:133.843254px;}
.x60_c00329{left:139.860000px;}
.x41_c00329{left:143.800500px;}
.x29_c00329{left:147.688500px;}
.x71_c00329{left:150.120000px;}
.x4_c00329{left:151.377000px;}
.x20_c00329{left:153.757500px;}
.x6b_c00329{left:163.080000px;}
.x6e_c00329{left:166.419000px;}
.x1_c00329{left:167.670000px;}
.xa_c00329{left:170.284074px;}
.x64_c00329{left:171.450000px;}
.x13_c00329{left:173.798187px;}
.x31_c00329{left:175.225500px;}
.x2a_c00329{left:177.388500px;}
.x59_c00329{left:182.520000px;}
.x34_c00329{left:183.595500px;}
.x39_c00329{left:186.835500px;}
.x1b_c00329{left:187.920000px;}
.x72_c00329{left:189.000000px;}
.x61_c00329{left:190.350000px;}
.x4b_c00329{left:193.317000px;}
.x2c_c00329{left:194.731500px;}
.x3d_c00329{left:197.635500px;}
.x21_c00329{left:201.277500px;}
.x32_c00329{left:203.305500px;}
.x54_c00329{left:204.390000px;}
.x35_c00329{left:207.355500px;}
.x25_c00329{left:211.408500px;}
.x1c_c00329{left:216.540000px;}
.x5_c00329{left:219.159000px;}
.x49_c00329{left:220.857000px;}
.x4c_c00329{left:221.937000px;}
.x2d_c00329{left:223.351500px;}
.x56_c00329{left:225.720000px;}
.x14_c00329{left:229.072410px;}
.x1d_c00329{left:232.740000px;}
.x73_c00329{left:233.820000px;}
.xb_c00329{left:236.438574px;}
.x51_c00329{left:238.410000px;}
.x3a_c00329{left:239.485500px;}
.x15_c00329{left:242.656221px;}
.x4d_c00329{left:244.617000px;}
.x22_c00329{left:247.665000px;}
.x68_c00329{left:251.100000px;}
.x52_c00329{left:252.720000px;}
.xc_c00329{left:253.994574px;}
.x3e_c00329{left:257.575500px;}
.x42_c00329{left:262.863000px;}
.x66_c00329{left:264.463500px;}
.x62_c00329{left:267.030000px;}
.x43_c00329{left:268.107000px;}
.x6c_c00329{left:270.540000px;}
.x36_c00329{left:272.695500px;}
.x23_c00329{left:275.260500px;}
.x5a_c00329{left:276.480000px;}
.x53_c00329{left:277.560000px;}
.x44_c00329{left:280.527000px;}
.x26_c00329{left:282.418500px;}
.x37_c00329{left:287.005500px;}
.x69_c00329{left:289.980000px;}
.x6_c00329{left:291.523500px;}
.x5d_c00329{left:293.490000px;}
.x2e_c00329{left:294.691500px;}
.x76_c00329{left:299.554500px;}
.x27_c00329{left:302.668500px;}
.x16_c00329{left:303.676860px;}
.x5e_c00329{left:305.640000px;}
.x47_c00329{left:308.440500px;}
.xd_c00329{left:311.233074px;}
.x38_c00329{left:313.735500px;}
.x17_c00329{left:315.784692px;}
.x65_c00329{left:317.250000px;}
.xe_c00329{left:323.404074px;}
.x1e_c00329{left:324.810000px;}
.x4e_c00329{left:326.427000px;}
.x7_c00329{left:328.258500px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fsc_c00329{font-size:50.400000pt;}
.fs9_c00329{font-size:51.333333pt;}
.fs8_c00329{font-size:52.266667pt;}
.fs3_c00329{font-size:52.271789pt;}
.fs4_c00329{font-size:53.200000pt;}
.fs1_c00329{font-size:53.205213pt;}
.fsb_c00329{font-size:54.133333pt;}
.fs6_c00329{font-size:55.066667pt;}
.fs2_c00329{font-size:55.072063pt;}
.fs5_c00329{font-size:56.000000pt;}
.fsf_c00329{font-size:57.866667pt;}
.fs10_c00329{font-size:58.800000pt;}
.fs7_c00329{font-size:59.733333pt;}
.fs0_c00329{font-size:60.666667pt;}
.fsa_c00329{font-size:62.533333pt;}
.fse_c00329{font-size:63.466667pt;}
.fsd_c00329{font-size:64.400000pt;}
.y0_c00329{bottom:0.000000pt;}
.y62_c00329{bottom:20.882667pt;}
.y63_c00329{bottom:21.358667pt;}
.y64_c00329{bottom:21.665333pt;}
.y65_c00329{bottom:22.269333pt;}
.y66_c00329{bottom:23.442667pt;}
.y67_c00329{bottom:23.896000pt;}
.y68_c00329{bottom:24.682667pt;}
.y69_c00329{bottom:25.018667pt;}
.y5b_c00329{bottom:36.240000pt;}
.y5c_c00329{bottom:36.569333pt;}
.y5d_c00329{bottom:36.756000pt;}
.y5e_c00329{bottom:37.116000pt;}
.y5f_c00329{bottom:37.665333pt;}
.y60_c00329{bottom:38.378667pt;}
.y61_c00329{bottom:38.790667pt;}
.y5a_c00329{bottom:52.444000pt;}
.y54_c00329{bottom:66.001333pt;}
.y55_c00329{bottom:66.530667pt;}
.y56_c00329{bottom:67.370667pt;}
.y57_c00329{bottom:67.693333pt;}
.y58_c00329{bottom:68.294667pt;}
.y59_c00329{bottom:68.696000pt;}
.y53_c00329{bottom:82.420000pt;}
.y52_c00329{bottom:97.672000pt;}
.y4c_c00329{bottom:111.361333pt;}
.y4d_c00329{bottom:111.881333pt;}
.y4e_c00329{bottom:112.781333pt;}
.y4f_c00329{bottom:113.369333pt;}
.y50_c00329{bottom:113.568000pt;}
.y51_c00329{bottom:114.001333pt;}
.y4b_c00329{bottom:127.994667pt;}
.y4a_c00329{bottom:142.900000pt;}
.y49_c00329{bottom:158.389333pt;}
.y48_c00329{bottom:174.102667pt;}
.y47_c00329{bottom:189.917333pt;}
.y46_c00329{bottom:204.798667pt;}
.y45_c00329{bottom:219.850667pt;}
.y44_c00329{bottom:234.262667pt;}
.y43_c00329{bottom:249.436000pt;}
.y42_c00329{bottom:264.949333pt;}
.y3c_c00329{bottom:278.878667pt;}
.y3d_c00329{bottom:279.102667pt;}
.y3e_c00329{bottom:279.496000pt;}
.y3f_c00329{bottom:280.314667pt;}
.y40_c00329{bottom:281.264000pt;}
.y41_c00329{bottom:281.530667pt;}
.y3b_c00329{bottom:295.326667pt;}
.y32_c00329{bottom:309.118667pt;}
.y33_c00329{bottom:309.329333pt;}
.y34_c00329{bottom:310.129333pt;}
.y35_c00329{bottom:310.253333pt;}
.y36_c00329{bottom:310.504000pt;}
.y37_c00329{bottom:311.105333pt;}
.y38_c00329{bottom:311.317333pt;}
.y39_c00329{bottom:311.522667pt;}
.y3a_c00329{bottom:312.222667pt;}
.y31_c00329{bottom:326.501333pt;}
.y30_c00329{bottom:341.009333pt;}
.y2f_c00329{bottom:356.610667pt;}
.y2e_c00329{bottom:371.113333pt;}
.y26_c00329{bottom:385.198667pt;}
.y27_c00329{bottom:385.784000pt;}
.y28_c00329{bottom:385.901333pt;}
.y29_c00329{bottom:386.242667pt;}
.y2a_c00329{bottom:386.604000pt;}
.y2b_c00329{bottom:386.858667pt;}
.y2c_c00329{bottom:387.068000pt;}
.y2d_c00329{bottom:387.493333pt;}
.y25_c00329{bottom:401.224000pt;}
.y24_c00329{bottom:416.344000pt;}
.y1a_c00329{bottom:430.561333pt;}
.y1b_c00329{bottom:430.870667pt;}
.y1c_c00329{bottom:431.029333pt;}
.y1d_c00329{bottom:431.450667pt;}
.y1e_c00329{bottom:431.714667pt;}
.y1f_c00329{bottom:432.178667pt;}
.y20_c00329{bottom:432.352000pt;}
.y21_c00329{bottom:432.632000pt;}
.y22_c00329{bottom:432.901333pt;}
.y23_c00329{bottom:433.254667pt;}
.y19_c00329{bottom:446.845333pt;}
.y10_c00329{bottom:460.080008pt;}
.y11_c00329{bottom:460.720885pt;}
.y12_c00329{bottom:461.000699pt;}
.y13_c00329{bottom:461.397824pt;}
.y14_c00329{bottom:461.931048pt;}
.y15_c00329{bottom:462.668248pt;}
.y16_c00329{bottom:462.849293pt;}
.y17_c00329{bottom:463.663339pt;}
.y18_c00329{bottom:463.824683pt;}
.y8_c00329{bottom:474.961035pt;}
.y9_c00329{bottom:475.703669pt;}
.ya_c00329{bottom:475.948931pt;}
.yb_c00329{bottom:476.627539pt;}
.yc_c00329{bottom:477.450795pt;}
.yd_c00329{bottom:477.669269pt;}
.ye_c00329{bottom:478.381571pt;}
.yf_c00329{bottom:478.533032pt;}
.y2_c00329{bottom:490.562667pt;}
.y3_c00329{bottom:491.559784pt;}
.y4_c00329{bottom:491.987307pt;}
.y5_c00329{bottom:492.830816pt;}
.y6_c00329{bottom:493.731352pt;}
.y7_c00329{bottom:494.188499pt;}
.y1_c00329{bottom:506.640000pt;}
.he_c00329{height:50.400000pt;}
.hb_c00329{height:51.333333pt;}
.ha_c00329{height:52.266667pt;}
.h5_c00329{height:52.271789pt;}
.h6_c00329{height:53.200000pt;}
.h3_c00329{height:53.205213pt;}
.hd_c00329{height:54.133333pt;}
.h8_c00329{height:55.066667pt;}
.h4_c00329{height:55.072063pt;}
.h7_c00329{height:56.000000pt;}
.h11_c00329{height:57.866667pt;}
.h12_c00329{height:58.800000pt;}
.h9_c00329{height:59.733333pt;}
.h2_c00329{height:60.666667pt;}
.hc_c00329{height:62.533333pt;}
.h10_c00329{height:63.466667pt;}
.hf_c00329{height:64.400000pt;}
.h0_c00329{height:545.040000pt;}
.h1_c00329{height:545.333333pt;}
.w0_c00329{width:319.200000pt;}
.w1_c00329{width:319.333333pt;}
.x0_c00329{left:0.000000pt;}
.xf_c00329{left:31.129013pt;}
.x2_c00329{left:32.797333pt;}
.x4f_c00329{left:34.317333pt;}
.x18_c00329{left:39.120000pt;}
.x63_c00329{left:47.760000pt;}
.x3f_c00329{left:50.784000pt;}
.x45_c00329{left:53.398667pt;}
.x3b_c00329{left:54.476000pt;}
.x50_c00329{left:55.440000pt;}
.x19_c00329{left:59.760000pt;}
.x5b_c00329{left:61.440000pt;}
.x74_c00329{left:64.434667pt;}
.x48_c00329{left:65.757333pt;}
.x67_c00329{left:66.960000pt;}
.x6f_c00329{left:69.840000pt;}
.x3c_c00329{left:71.516000pt;}
.x10_c00329{left:73.857749pt;}
.x57_c00329{left:76.800000pt;}
.x6d_c00329{left:77.878667pt;}
.x6a_c00329{left:79.920000pt;}
.x5f_c00329{left:81.600000pt;}
.x24_c00329{left:83.278667pt;}
.x2f_c00329{left:84.236000pt;}
.x8_c00329{left:85.372955pt;}
.x70_c00329{left:87.120000pt;}
.x46_c00329{left:89.157333pt;}
.x2b_c00329{left:91.024000pt;}
.x11_c00329{left:92.510821pt;}
.x5c_c00329{left:94.800000pt;}
.x55_c00329{left:98.880000pt;}
.x30_c00329{left:100.316000pt;}
.x9_c00329{left:102.891621pt;}
.x3_c00329{left:104.020000pt;}
.x28_c00329{left:105.838667pt;}
.x1a_c00329{left:107.280000pt;}
.x58_c00329{left:108.240000pt;}
.x4a_c00329{left:111.597333pt;}
.x1f_c00329{left:112.629333pt;}
.x75_c00329{left:114.125333pt;}
.x33_c00329{left:115.436000pt;}
.x40_c00329{left:117.492000pt;}
.x12_c00329{left:118.971781pt;}
.x60_c00329{left:124.320000pt;}
.x41_c00329{left:127.822667pt;}
.x29_c00329{left:131.278667pt;}
.x71_c00329{left:133.440000pt;}
.x4_c00329{left:134.557333pt;}
.x20_c00329{left:136.673333pt;}
.x6b_c00329{left:144.960000pt;}
.x6e_c00329{left:147.928000pt;}
.x1_c00329{left:149.040000pt;}
.xa_c00329{left:151.363621pt;}
.x64_c00329{left:152.400000pt;}
.x13_c00329{left:154.487277pt;}
.x31_c00329{left:155.756000pt;}
.x2a_c00329{left:157.678667pt;}
.x59_c00329{left:162.240000pt;}
.x34_c00329{left:163.196000pt;}
.x39_c00329{left:166.076000pt;}
.x1b_c00329{left:167.040000pt;}
.x72_c00329{left:168.000000pt;}
.x61_c00329{left:169.200000pt;}
.x4b_c00329{left:171.837333pt;}
.x2c_c00329{left:173.094667pt;}
.x3d_c00329{left:175.676000pt;}
.x21_c00329{left:178.913333pt;}
.x32_c00329{left:180.716000pt;}
.x54_c00329{left:181.680000pt;}
.x35_c00329{left:184.316000pt;}
.x25_c00329{left:187.918667pt;}
.x1c_c00329{left:192.480000pt;}
.x5_c00329{left:194.808000pt;}
.x49_c00329{left:196.317333pt;}
.x4c_c00329{left:197.277333pt;}
.x2d_c00329{left:198.534667pt;}
.x56_c00329{left:200.640000pt;}
.x14_c00329{left:203.619920pt;}
.x1d_c00329{left:206.880000pt;}
.x73_c00329{left:207.840000pt;}
.xb_c00329{left:210.167621pt;}
.x51_c00329{left:211.920000pt;}
.x3a_c00329{left:212.876000pt;}
.x15_c00329{left:215.694419pt;}
.x4d_c00329{left:217.437333pt;}
.x22_c00329{left:220.146667pt;}
.x68_c00329{left:223.200000pt;}
.x52_c00329{left:224.640000pt;}
.xc_c00329{left:225.772955pt;}
.x3e_c00329{left:228.956000pt;}
.x42_c00329{left:233.656000pt;}
.x66_c00329{left:235.078667pt;}
.x62_c00329{left:237.360000pt;}
.x43_c00329{left:238.317333pt;}
.x6c_c00329{left:240.480000pt;}
.x36_c00329{left:242.396000pt;}
.x23_c00329{left:244.676000pt;}
.x5a_c00329{left:245.760000pt;}
.x53_c00329{left:246.720000pt;}
.x44_c00329{left:249.357333pt;}
.x26_c00329{left:251.038667pt;}
.x37_c00329{left:255.116000pt;}
.x69_c00329{left:257.760000pt;}
.x6_c00329{left:259.132000pt;}
.x5d_c00329{left:260.880000pt;}
.x2e_c00329{left:261.948000pt;}
.x76_c00329{left:266.270667pt;}
.x27_c00329{left:269.038667pt;}
.x16_c00329{left:269.934987pt;}
.x5e_c00329{left:271.680000pt;}
.x47_c00329{left:274.169333pt;}
.xd_c00329{left:276.651621pt;}
.x38_c00329{left:278.876000pt;}
.x17_c00329{left:280.697504pt;}
.x65_c00329{left:282.000000pt;}
.xe_c00329{left:287.470288pt;}
.x1e_c00329{left:288.720000pt;}
.x4e_c00329{left:290.157333pt;}
.x7_c00329{left:291.785333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00330 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00330 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00330 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00330 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00330.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma3_c00330{transform:matrix(0.077694,-0.001787,0.005748,0.249934,0,0);-ms-transform:matrix(0.077694,-0.001787,0.005748,0.249934,0,0);-webkit-transform:matrix(0.077694,-0.001787,0.005748,0.249934,0,0);}
.mba_c00330{transform:matrix(0.151516,-0.002424,0.003999,0.249968,0,0);-ms-transform:matrix(0.151516,-0.002424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151516,-0.002424,0.003999,0.249968,0,0);}
.ma4_c00330{transform:matrix(0.151685,-0.003489,0.005748,0.249934,0,0);-ms-transform:matrix(0.151685,-0.003489,0.005748,0.249934,0,0);-webkit-transform:matrix(0.151685,-0.003489,0.005748,0.249934,0,0);}
.mab_c00330{transform:matrix(0.152630,-0.002442,0.003999,0.249968,0,0);-ms-transform:matrix(0.152630,-0.002442,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152630,-0.002442,0.003999,0.249968,0,0);}
.m32_c00330{transform:matrix(0.155439,-0.003575,0.005748,0.249934,0,0);-ms-transform:matrix(0.155439,-0.003575,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155439,-0.003575,0.005748,0.249934,0,0);}
.mee_c00330{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.me5_c00330{transform:matrix(0.155735,-0.002492,0.003999,0.249968,0,0);-ms-transform:matrix(0.155735,-0.002492,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155735,-0.002492,0.003999,0.249968,0,0);}
.m9a_c00330{transform:matrix(0.156194,-0.003592,0.005748,0.249934,0,0);-ms-transform:matrix(0.156194,-0.003592,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156194,-0.003592,0.005748,0.249934,0,0);}
.md3_c00330{transform:matrix(0.156355,-0.002502,0.003999,0.249968,0,0);-ms-transform:matrix(0.156355,-0.002502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156355,-0.002502,0.003999,0.249968,0,0);}
.m35_c00330{transform:matrix(0.157013,-0.003611,0.005748,0.249934,0,0);-ms-transform:matrix(0.157013,-0.003611,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157013,-0.003611,0.005748,0.249934,0,0);}
.m7a_c00330{transform:matrix(0.158083,-0.003636,0.005748,0.249934,0,0);-ms-transform:matrix(0.158083,-0.003636,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158083,-0.003636,0.005748,0.249934,0,0);}
.m0_c00330{transform:matrix(0.158415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158415,0.000000,0.000000,0.250000,0,0);}
.m9b_c00330{transform:matrix(0.158553,-0.003647,0.005748,0.249934,0,0);-ms-transform:matrix(0.158553,-0.003647,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158553,-0.003647,0.005748,0.249934,0,0);}
.m4b_c00330{transform:matrix(0.160228,-0.003685,0.005748,0.249934,0,0);-ms-transform:matrix(0.160228,-0.003685,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160228,-0.003685,0.005748,0.249934,0,0);}
.m9c_c00330{transform:matrix(0.160797,-0.003698,0.005748,0.249934,0,0);-ms-transform:matrix(0.160797,-0.003698,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160797,-0.003698,0.005748,0.249934,0,0);}
.m7e_c00330{transform:matrix(0.161782,-0.003721,0.005748,0.249934,0,0);-ms-transform:matrix(0.161782,-0.003721,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161782,-0.003721,0.005748,0.249934,0,0);}
.mc7_c00330{transform:matrix(0.162534,-0.002601,0.003999,0.249968,0,0);-ms-transform:matrix(0.162534,-0.002601,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162534,-0.002601,0.003999,0.249968,0,0);}
.m89_c00330{transform:matrix(0.163382,-0.003758,0.005748,0.249934,0,0);-ms-transform:matrix(0.163382,-0.003758,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163382,-0.003758,0.005748,0.249934,0,0);}
.m19_c00330{transform:matrix(0.164137,-0.003775,0.005748,0.249934,0,0);-ms-transform:matrix(0.164137,-0.003775,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164137,-0.003775,0.005748,0.249934,0,0);}
.m1d_c00330{transform:matrix(0.166196,-0.003823,0.005748,0.249934,0,0);-ms-transform:matrix(0.166196,-0.003823,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166196,-0.003823,0.005748,0.249934,0,0);}
.mcf_c00330{transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);}
.m86_c00330{transform:matrix(0.166486,-0.003829,0.005748,0.249934,0,0);-ms-transform:matrix(0.166486,-0.003829,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166486,-0.003829,0.005748,0.249934,0,0);}
.m17_c00330{transform:matrix(0.167896,-0.003862,0.005748,0.249934,0,0);-ms-transform:matrix(0.167896,-0.003862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167896,-0.003862,0.005748,0.249934,0,0);}
.m91_c00330{transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);-ms-transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);}
.m44_c00330{transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);-ms-transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);}
.m8e_c00330{transform:matrix(0.168675,-0.003880,0.005748,0.249934,0,0);-ms-transform:matrix(0.168675,-0.003880,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168675,-0.003880,0.005748,0.249934,0,0);}
.m27_c00330{transform:matrix(0.170070,-0.003912,0.005748,0.249934,0,0);-ms-transform:matrix(0.170070,-0.003912,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170070,-0.003912,0.005748,0.249934,0,0);}
.mb5_c00330{transform:matrix(0.171503,-0.002744,0.003999,0.249968,0,0);-ms-transform:matrix(0.171503,-0.002744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171503,-0.002744,0.003999,0.249968,0,0);}
.m1c_c00330{transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);-ms-transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);}
.m48_c00330{transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);-ms-transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171555,-0.003946,0.005748,0.249934,0,0);}
.mb6_c00330{transform:matrix(0.171738,-0.002748,0.003999,0.249968,0,0);-ms-transform:matrix(0.171738,-0.002748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171738,-0.002748,0.003999,0.249968,0,0);}
.me3_c00330{transform:matrix(0.171813,-0.002749,0.003999,0.249968,0,0);-ms-transform:matrix(0.171813,-0.002749,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171813,-0.002749,0.003999,0.249968,0,0);}
.m7f_c00330{transform:matrix(0.172404,-0.003965,0.005748,0.249934,0,0);-ms-transform:matrix(0.172404,-0.003965,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172404,-0.003965,0.005748,0.249934,0,0);}
.md0_c00330{transform:matrix(0.172608,-0.002762,0.003999,0.249968,0,0);-ms-transform:matrix(0.172608,-0.002762,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172608,-0.002762,0.003999,0.249968,0,0);}
.mac_c00330{transform:matrix(0.172773,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172773,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172773,-0.002764,0.003999,0.249968,0,0);}
.m57_c00330{transform:matrix(0.172889,-0.003976,0.005748,0.249934,0,0);-ms-transform:matrix(0.172889,-0.003976,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172889,-0.003976,0.005748,0.249934,0,0);}
.m49_c00330{transform:matrix(0.172974,-0.003978,0.005748,0.249934,0,0);-ms-transform:matrix(0.172974,-0.003978,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172974,-0.003978,0.005748,0.249934,0,0);}
.m7b_c00330{transform:matrix(0.173324,-0.003986,0.005748,0.249934,0,0);-ms-transform:matrix(0.173324,-0.003986,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173324,-0.003986,0.005748,0.249934,0,0);}
.m22_c00330{transform:matrix(0.173369,-0.003987,0.005748,0.249934,0,0);-ms-transform:matrix(0.173369,-0.003987,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173369,-0.003987,0.005748,0.249934,0,0);}
.m96_c00330{transform:matrix(0.173754,-0.003996,0.005748,0.249934,0,0);-ms-transform:matrix(0.173754,-0.003996,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173754,-0.003996,0.005748,0.249934,0,0);}
.mb4_c00330{transform:matrix(0.174143,-0.002786,0.003999,0.249968,0,0);-ms-transform:matrix(0.174143,-0.002786,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174143,-0.002786,0.003999,0.249968,0,0);}
.mb_c00330{transform:matrix(0.174869,-0.004022,0.005748,0.249934,0,0);-ms-transform:matrix(0.174869,-0.004022,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174869,-0.004022,0.005748,0.249934,0,0);}
.m1e_c00330{transform:matrix(0.175819,-0.004044,0.005748,0.249934,0,0);-ms-transform:matrix(0.175819,-0.004044,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175819,-0.004044,0.005748,0.249934,0,0);}
.md6_c00330{transform:matrix(0.175982,-0.002816,0.003999,0.249968,0,0);-ms-transform:matrix(0.175982,-0.002816,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175982,-0.002816,0.003999,0.249968,0,0);}
.m2a_c00330{transform:matrix(0.176108,-0.004050,0.005748,0.249934,0,0);-ms-transform:matrix(0.176108,-0.004050,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176108,-0.004050,0.005748,0.249934,0,0);}
.m20_c00330{transform:matrix(0.176398,-0.004057,0.005748,0.249934,0,0);-ms-transform:matrix(0.176398,-0.004057,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176398,-0.004057,0.005748,0.249934,0,0);}
.mf0_c00330{transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176590,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.176603,-0.004062,0.005748,0.249934,0,0);-ms-transform:matrix(0.176603,-0.004062,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176603,-0.004062,0.005748,0.249934,0,0);}
.m34_c00330{transform:matrix(0.176613,-0.004062,0.005748,0.249934,0,0);-ms-transform:matrix(0.176613,-0.004062,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176613,-0.004062,0.005748,0.249934,0,0);}
.m98_c00330{transform:matrix(0.177073,-0.004073,0.005748,0.249934,0,0);-ms-transform:matrix(0.177073,-0.004073,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177073,-0.004073,0.005748,0.249934,0,0);}
.m68_c00330{transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);-ms-transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);}
.mf2_c00330{transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);-ms-transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);}
.m37_c00330{transform:matrix(0.178343,-0.004102,0.005748,0.249934,0,0);-ms-transform:matrix(0.178343,-0.004102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178343,-0.004102,0.005748,0.249934,0,0);}
.m11_c00330{transform:matrix(0.178698,-0.004110,0.005748,0.249934,0,0);-ms-transform:matrix(0.178698,-0.004110,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178698,-0.004110,0.005748,0.249934,0,0);}
.mb1_c00330{transform:matrix(0.179277,-0.002868,0.003999,0.249968,0,0);-ms-transform:matrix(0.179277,-0.002868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179277,-0.002868,0.003999,0.249968,0,0);}
.m9f_c00330{transform:matrix(0.179293,-0.004124,0.005748,0.249934,0,0);-ms-transform:matrix(0.179293,-0.004124,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179293,-0.004124,0.005748,0.249934,0,0);}
.ma0_c00330{transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);-ms-transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);}
.m63_c00330{transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);-ms-transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179603,-0.004131,0.005748,0.249934,0,0);}
.md4_c00330{transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179712,-0.002875,0.003999,0.249968,0,0);}
.m36_c00330{transform:matrix(0.179777,-0.004135,0.005748,0.249934,0,0);-ms-transform:matrix(0.179777,-0.004135,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179777,-0.004135,0.005748,0.249934,0,0);}
.m5_c00330{transform:matrix(0.179942,-0.004139,0.005748,0.249934,0,0);-ms-transform:matrix(0.179942,-0.004139,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179942,-0.004139,0.005748,0.249934,0,0);}
.m3b_c00330{transform:matrix(0.180127,-0.004143,0.005748,0.249934,0,0);-ms-transform:matrix(0.180127,-0.004143,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180127,-0.004143,0.005748,0.249934,0,0);}
.m7d_c00330{transform:matrix(0.180562,-0.004153,0.005748,0.249934,0,0);-ms-transform:matrix(0.180562,-0.004153,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180562,-0.004153,0.005748,0.249934,0,0);}
.maf_c00330{transform:matrix(0.180582,-0.002889,0.003999,0.249968,0,0);-ms-transform:matrix(0.180582,-0.002889,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180582,-0.002889,0.003999,0.249968,0,0);}
.m4a_c00330{transform:matrix(0.181672,-0.004178,0.005748,0.249934,0,0);-ms-transform:matrix(0.181672,-0.004178,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181672,-0.004178,0.005748,0.249934,0,0);}
.m21_c00330{transform:matrix(0.182092,-0.004188,0.005748,0.249934,0,0);-ms-transform:matrix(0.182092,-0.004188,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182092,-0.004188,0.005748,0.249934,0,0);}
.m7_c00330{transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-ms-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);}
.m24_c00330{transform:matrix(0.182822,-0.004205,0.005748,0.249934,0,0);-ms-transform:matrix(0.182822,-0.004205,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182822,-0.004205,0.005748,0.249934,0,0);}
.mcb_c00330{transform:matrix(0.182867,-0.002926,0.003999,0.249968,0,0);-ms-transform:matrix(0.182867,-0.002926,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182867,-0.002926,0.003999,0.249968,0,0);}
.m2b_c00330{transform:matrix(0.183267,-0.004215,0.005748,0.249934,0,0);-ms-transform:matrix(0.183267,-0.004215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183267,-0.004215,0.005748,0.249934,0,0);}
.m61_c00330{transform:matrix(0.183421,-0.004219,0.005748,0.249934,0,0);-ms-transform:matrix(0.183421,-0.004219,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183421,-0.004219,0.005748,0.249934,0,0);}
.md_c00330{transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);-ms-transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);}
.me_c00330{transform:matrix(0.184771,-0.004250,0.005748,0.249934,0,0);-ms-transform:matrix(0.184771,-0.004250,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184771,-0.004250,0.005748,0.249934,0,0);}
.m97_c00330{transform:matrix(0.185506,-0.004267,0.005748,0.249934,0,0);-ms-transform:matrix(0.185506,-0.004267,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185506,-0.004267,0.005748,0.249934,0,0);}
.m18_c00330{transform:matrix(0.185666,-0.004270,0.005748,0.249934,0,0);-ms-transform:matrix(0.185666,-0.004270,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185666,-0.004270,0.005748,0.249934,0,0);}
.md1_c00330{transform:matrix(0.185876,-0.002974,0.003999,0.249968,0,0);-ms-transform:matrix(0.185876,-0.002974,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185876,-0.002974,0.003999,0.249968,0,0);}
.m10_c00330{transform:matrix(0.185961,-0.004277,0.005748,0.249934,0,0);-ms-transform:matrix(0.185961,-0.004277,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185961,-0.004277,0.005748,0.249934,0,0);}
.m8c_c00330{transform:matrix(0.186096,-0.004280,0.005748,0.249934,0,0);-ms-transform:matrix(0.186096,-0.004280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186096,-0.004280,0.005748,0.249934,0,0);}
.mb3_c00330{transform:matrix(0.186121,-0.002978,0.003999,0.249968,0,0);-ms-transform:matrix(0.186121,-0.002978,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186121,-0.002978,0.003999,0.249968,0,0);}
.mdb_c00330{transform:matrix(0.186556,-0.002985,0.003999,0.249968,0,0);-ms-transform:matrix(0.186556,-0.002985,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186556,-0.002985,0.003999,0.249968,0,0);}
.m5a_c00330{transform:matrix(0.187071,-0.004303,0.005748,0.249934,0,0);-ms-transform:matrix(0.187071,-0.004303,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187071,-0.004303,0.005748,0.249934,0,0);}
.m54_c00330{transform:matrix(0.187161,-0.004305,0.005748,0.249934,0,0);-ms-transform:matrix(0.187161,-0.004305,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187161,-0.004305,0.005748,0.249934,0,0);}
.mc8_c00330{transform:matrix(0.187431,-0.002999,0.003999,0.249968,0,0);-ms-transform:matrix(0.187431,-0.002999,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187431,-0.002999,0.003999,0.249968,0,0);}
.m31_c00330{transform:matrix(0.187610,-0.004315,0.005748,0.249934,0,0);-ms-transform:matrix(0.187610,-0.004315,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187610,-0.004315,0.005748,0.249934,0,0);}
.m30_c00330{transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);-ms-transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187700,-0.004317,0.005748,0.249934,0,0);}
.m3a_c00330{transform:matrix(0.188100,-0.004326,0.005748,0.249934,0,0);-ms-transform:matrix(0.188100,-0.004326,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188100,-0.004326,0.005748,0.249934,0,0);}
.m8b_c00330{transform:matrix(0.188535,-0.004336,0.005748,0.249934,0,0);-ms-transform:matrix(0.188535,-0.004336,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188535,-0.004336,0.005748,0.249934,0,0);}
.md2_c00330{transform:matrix(0.188646,-0.003018,0.003999,0.249968,0,0);-ms-transform:matrix(0.188646,-0.003018,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188646,-0.003018,0.003999,0.249968,0,0);}
.m5f_c00330{transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);-ms-transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188700,-0.004340,0.005748,0.249934,0,0);}
.m8d_c00330{transform:matrix(0.188900,-0.004345,0.005748,0.249934,0,0);-ms-transform:matrix(0.188900,-0.004345,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188900,-0.004345,0.005748,0.249934,0,0);}
.ma_c00330{transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-ms-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);}
.maa_c00330{transform:matrix(0.189495,-0.004358,0.005748,0.249934,0,0);-ms-transform:matrix(0.189495,-0.004358,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189495,-0.004358,0.005748,0.249934,0,0);}
.mca_c00330{transform:matrix(0.189571,-0.003033,0.003999,0.249968,0,0);-ms-transform:matrix(0.189571,-0.003033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189571,-0.003033,0.003999,0.249968,0,0);}
.mc2_c00330{transform:matrix(0.190336,-0.003045,0.003999,0.249968,0,0);-ms-transform:matrix(0.190336,-0.003045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190336,-0.003045,0.003999,0.249968,0,0);}
.med_c00330{transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);}
.mf1_c00330{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m72_c00330{transform:matrix(0.191009,-0.004393,0.005748,0.249934,0,0);-ms-transform:matrix(0.191009,-0.004393,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191009,-0.004393,0.005748,0.249934,0,0);}
.m8f_c00330{transform:matrix(0.191084,-0.004395,0.005748,0.249934,0,0);-ms-transform:matrix(0.191084,-0.004395,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191084,-0.004395,0.005748,0.249934,0,0);}
.m1a_c00330{transform:matrix(0.191449,-0.004403,0.005748,0.249934,0,0);-ms-transform:matrix(0.191449,-0.004403,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191449,-0.004403,0.005748,0.249934,0,0);}
.m26_c00330{transform:matrix(0.191634,-0.004408,0.005748,0.249934,0,0);-ms-transform:matrix(0.191634,-0.004408,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191634,-0.004408,0.005748,0.249934,0,0);}
.m39_c00330{transform:matrix(0.192059,-0.004417,0.005748,0.249934,0,0);-ms-transform:matrix(0.192059,-0.004417,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192059,-0.004417,0.005748,0.249934,0,0);}
.m43_c00330{transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);-ms-transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);}
.m71_c00330{transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);-ms-transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192414,-0.004426,0.005748,0.249934,0,0);}
.m33_c00330{transform:matrix(0.193799,-0.004457,0.005748,0.249934,0,0);-ms-transform:matrix(0.193799,-0.004457,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193799,-0.004457,0.005748,0.249934,0,0);}
.mce_c00330{transform:matrix(0.193960,-0.003103,0.003999,0.249968,0,0);-ms-transform:matrix(0.193960,-0.003103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193960,-0.003103,0.003999,0.249968,0,0);}
.m51_c00330{transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);-ms-transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);}
.m6_c00330{transform:matrix(0.194624,-0.004476,0.005748,0.249934,0,0);-ms-transform:matrix(0.194624,-0.004476,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194624,-0.004476,0.005748,0.249934,0,0);}
.me9_c00330{transform:matrix(0.194625,-0.003114,0.003999,0.249968,0,0);-ms-transform:matrix(0.194625,-0.003114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194625,-0.003114,0.003999,0.249968,0,0);}
.m6c_c00330{transform:matrix(0.194753,-0.004479,0.005748,0.249934,0,0);-ms-transform:matrix(0.194753,-0.004479,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194753,-0.004479,0.005748,0.249934,0,0);}
.m50_c00330{transform:matrix(0.194813,-0.004481,0.005748,0.249934,0,0);-ms-transform:matrix(0.194813,-0.004481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194813,-0.004481,0.005748,0.249934,0,0);}
.mb2_c00330{transform:matrix(0.195010,-0.003120,0.003999,0.249968,0,0);-ms-transform:matrix(0.195010,-0.003120,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195010,-0.003120,0.003999,0.249968,0,0);}
.mf_c00330{transform:matrix(0.195383,-0.004494,0.005748,0.249934,0,0);-ms-transform:matrix(0.195383,-0.004494,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195383,-0.004494,0.005748,0.249934,0,0);}
.m79_c00330{transform:matrix(0.196258,-0.004514,0.005748,0.249934,0,0);-ms-transform:matrix(0.196258,-0.004514,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196258,-0.004514,0.005748,0.249934,0,0);}
.m3f_c00330{transform:matrix(0.196383,-0.004517,0.005748,0.249934,0,0);-ms-transform:matrix(0.196383,-0.004517,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196383,-0.004517,0.005748,0.249934,0,0);}
.mef_c00330{transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);}
.md7_c00330{transform:matrix(0.197140,-0.003154,0.003999,0.249968,0,0);-ms-transform:matrix(0.197140,-0.003154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197140,-0.003154,0.003999,0.249968,0,0);}
.m9e_c00330{transform:matrix(0.197168,-0.004535,0.005748,0.249934,0,0);-ms-transform:matrix(0.197168,-0.004535,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197168,-0.004535,0.005748,0.249934,0,0);}
.m82_c00330{transform:matrix(0.197568,-0.004544,0.005748,0.249934,0,0);-ms-transform:matrix(0.197568,-0.004544,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197568,-0.004544,0.005748,0.249934,0,0);}
.m84_c00330{transform:matrix(0.197613,-0.004545,0.005748,0.249934,0,0);-ms-transform:matrix(0.197613,-0.004545,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197613,-0.004545,0.005748,0.249934,0,0);}
.ma1_c00330{transform:matrix(0.197978,-0.004553,0.005748,0.249934,0,0);-ms-transform:matrix(0.197978,-0.004553,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197978,-0.004553,0.005748,0.249934,0,0);}
.me8_c00330{transform:matrix(0.198140,-0.003170,0.003999,0.249968,0,0);-ms-transform:matrix(0.198140,-0.003170,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198140,-0.003170,0.003999,0.249968,0,0);}
.m14_c00330{transform:matrix(0.198323,-0.004561,0.005748,0.249934,0,0);-ms-transform:matrix(0.198323,-0.004561,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198323,-0.004561,0.005748,0.249934,0,0);}
.m1b_c00330{transform:matrix(0.198413,-0.004563,0.005748,0.249934,0,0);-ms-transform:matrix(0.198413,-0.004563,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198413,-0.004563,0.005748,0.249934,0,0);}
.mb0_c00330{transform:matrix(0.198510,-0.003176,0.003999,0.249968,0,0);-ms-transform:matrix(0.198510,-0.003176,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198510,-0.003176,0.003999,0.249968,0,0);}
.mc_c00330{transform:matrix(0.198572,-0.004567,0.005748,0.249934,0,0);-ms-transform:matrix(0.198572,-0.004567,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198572,-0.004567,0.005748,0.249934,0,0);}
.mcc_c00330{transform:matrix(0.199080,-0.003185,0.003999,0.249968,0,0);-ms-transform:matrix(0.199080,-0.003185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199080,-0.003185,0.003999,0.249968,0,0);}
.m83_c00330{transform:matrix(0.199202,-0.004582,0.005748,0.249934,0,0);-ms-transform:matrix(0.199202,-0.004582,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199202,-0.004582,0.005748,0.249934,0,0);}
.m62_c00330{transform:matrix(0.199382,-0.004586,0.005748,0.249934,0,0);-ms-transform:matrix(0.199382,-0.004586,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199382,-0.004586,0.005748,0.249934,0,0);}
.m76_c00330{transform:matrix(0.199387,-0.004586,0.005748,0.249934,0,0);-ms-transform:matrix(0.199387,-0.004586,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199387,-0.004586,0.005748,0.249934,0,0);}
.mb7_c00330{transform:matrix(0.199784,-0.003197,0.003999,0.249968,0,0);-ms-transform:matrix(0.199784,-0.003197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199784,-0.003197,0.003999,0.249968,0,0);}
.m78_c00330{transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);-ms-transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);}
.m90_c00330{transform:matrix(0.200147,-0.004603,0.005748,0.249934,0,0);-ms-transform:matrix(0.200147,-0.004603,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200147,-0.004603,0.005748,0.249934,0,0);}
.m2c_c00330{transform:matrix(0.200842,-0.004619,0.005748,0.249934,0,0);-ms-transform:matrix(0.200842,-0.004619,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200842,-0.004619,0.005748,0.249934,0,0);}
.m67_c00330{transform:matrix(0.201077,-0.004625,0.005748,0.249934,0,0);-ms-transform:matrix(0.201077,-0.004625,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201077,-0.004625,0.005748,0.249934,0,0);}
.m88_c00330{transform:matrix(0.201282,-0.004629,0.005748,0.249934,0,0);-ms-transform:matrix(0.201282,-0.004629,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201282,-0.004629,0.005748,0.249934,0,0);}
.m81_c00330{transform:matrix(0.201392,-0.004632,0.005748,0.249934,0,0);-ms-transform:matrix(0.201392,-0.004632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201392,-0.004632,0.005748,0.249934,0,0);}
.m93_c00330{transform:matrix(0.201672,-0.004638,0.005748,0.249934,0,0);-ms-transform:matrix(0.201672,-0.004638,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201672,-0.004638,0.005748,0.249934,0,0);}
.m47_c00330{transform:matrix(0.201822,-0.004642,0.005748,0.249934,0,0);-ms-transform:matrix(0.201822,-0.004642,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201822,-0.004642,0.005748,0.249934,0,0);}
.m7c_c00330{transform:matrix(0.201857,-0.004643,0.005748,0.249934,0,0);-ms-transform:matrix(0.201857,-0.004643,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201857,-0.004643,0.005748,0.249934,0,0);}
.m38_c00330{transform:matrix(0.202037,-0.004647,0.005748,0.249934,0,0);-ms-transform:matrix(0.202037,-0.004647,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202037,-0.004647,0.005748,0.249934,0,0);}
.mcd_c00330{transform:matrix(0.202159,-0.003235,0.003999,0.249968,0,0);-ms-transform:matrix(0.202159,-0.003235,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202159,-0.003235,0.003999,0.249968,0,0);}
.md8_c00330{transform:matrix(0.202384,-0.003238,0.003999,0.249968,0,0);-ms-transform:matrix(0.202384,-0.003238,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202384,-0.003238,0.003999,0.249968,0,0);}
.mc3_c00330{transform:matrix(0.202399,-0.003238,0.003999,0.249968,0,0);-ms-transform:matrix(0.202399,-0.003238,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202399,-0.003238,0.003999,0.249968,0,0);}
.mad_c00330{transform:matrix(0.202829,-0.003245,0.003999,0.249968,0,0);-ms-transform:matrix(0.202829,-0.003245,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202829,-0.003245,0.003999,0.249968,0,0);}
.m5e_c00330{transform:matrix(0.203086,-0.004671,0.005748,0.249934,0,0);-ms-transform:matrix(0.203086,-0.004671,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203086,-0.004671,0.005748,0.249934,0,0);}
.m3e_c00330{transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);-ms-transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);}
.m6e_c00330{transform:matrix(0.203411,-0.004678,0.005748,0.249934,0,0);-ms-transform:matrix(0.203411,-0.004678,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203411,-0.004678,0.005748,0.249934,0,0);}
.m5b_c00330{transform:matrix(0.203571,-0.004682,0.005748,0.249934,0,0);-ms-transform:matrix(0.203571,-0.004682,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203571,-0.004682,0.005748,0.249934,0,0);}
.m13_c00330{transform:matrix(0.204811,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204811,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204811,-0.004711,0.005748,0.249934,0,0);}
.m80_c00330{transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);}
.m2d_c00330{transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);}
.m28_c00330{transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);-ms-transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);}
.m41_c00330{transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);-ms-transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);}
.m74_c00330{transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);-ms-transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);}
.mbb_c00330{transform:matrix(0.206229,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206229,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206229,-0.003300,0.003999,0.249968,0,0);}
.me0_c00330{transform:matrix(0.206409,-0.003303,0.003999,0.249968,0,0);-ms-transform:matrix(0.206409,-0.003303,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206409,-0.003303,0.003999,0.249968,0,0);}
.m1f_c00330{transform:matrix(0.206960,-0.004760,0.005748,0.249934,0,0);-ms-transform:matrix(0.206960,-0.004760,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206960,-0.004760,0.005748,0.249934,0,0);}
.m64_c00330{transform:matrix(0.207165,-0.004765,0.005748,0.249934,0,0);-ms-transform:matrix(0.207165,-0.004765,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207165,-0.004765,0.005748,0.249934,0,0);}
.m2f_c00330{transform:matrix(0.207515,-0.004773,0.005748,0.249934,0,0);-ms-transform:matrix(0.207515,-0.004773,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207515,-0.004773,0.005748,0.249934,0,0);}
.m94_c00330{transform:matrix(0.207580,-0.004774,0.005748,0.249934,0,0);-ms-transform:matrix(0.207580,-0.004774,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207580,-0.004774,0.005748,0.249934,0,0);}
.m8a_c00330{transform:matrix(0.207745,-0.004778,0.005748,0.249934,0,0);-ms-transform:matrix(0.207745,-0.004778,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207745,-0.004778,0.005748,0.249934,0,0);}
.m55_c00330{transform:matrix(0.207805,-0.004780,0.005748,0.249934,0,0);-ms-transform:matrix(0.207805,-0.004780,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207805,-0.004780,0.005748,0.249934,0,0);}
.m2_c00330{transform:matrix(0.208470,-0.004795,0.005748,0.249934,0,0);-ms-transform:matrix(0.208470,-0.004795,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208470,-0.004795,0.005748,0.249934,0,0);}
.m52_c00330{transform:matrix(0.208665,-0.004799,0.005748,0.249934,0,0);-ms-transform:matrix(0.208665,-0.004799,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208665,-0.004799,0.005748,0.249934,0,0);}
.m6d_c00330{transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);-ms-transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);}
.mbc_c00330{transform:matrix(0.209088,-0.003345,0.003999,0.249968,0,0);-ms-transform:matrix(0.209088,-0.003345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209088,-0.003345,0.003999,0.249968,0,0);}
.m66_c00330{transform:matrix(0.209235,-0.004812,0.005748,0.249934,0,0);-ms-transform:matrix(0.209235,-0.004812,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209235,-0.004812,0.005748,0.249934,0,0);}
.m65_c00330{transform:matrix(0.209300,-0.004814,0.005748,0.249934,0,0);-ms-transform:matrix(0.209300,-0.004814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209300,-0.004814,0.005748,0.249934,0,0);}
.m9d_c00330{transform:matrix(0.209795,-0.004825,0.005748,0.249934,0,0);-ms-transform:matrix(0.209795,-0.004825,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209795,-0.004825,0.005748,0.249934,0,0);}
.m4c_c00330{transform:matrix(0.210189,-0.004834,0.005748,0.249934,0,0);-ms-transform:matrix(0.210189,-0.004834,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210189,-0.004834,0.005748,0.249934,0,0);}
.m60_c00330{transform:matrix(0.210689,-0.004846,0.005748,0.249934,0,0);-ms-transform:matrix(0.210689,-0.004846,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210689,-0.004846,0.005748,0.249934,0,0);}
.m6a_c00330{transform:matrix(0.211154,-0.004857,0.005748,0.249934,0,0);-ms-transform:matrix(0.211154,-0.004857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211154,-0.004857,0.005748,0.249934,0,0);}
.m45_c00330{transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);-ms-transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);}
.mc0_c00330{transform:matrix(0.211303,-0.003381,0.003999,0.249968,0,0);-ms-transform:matrix(0.211303,-0.003381,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211303,-0.003381,0.003999,0.249968,0,0);}
.mda_c00330{transform:matrix(0.211663,-0.003387,0.003999,0.249968,0,0);-ms-transform:matrix(0.211663,-0.003387,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211663,-0.003387,0.003999,0.249968,0,0);}
.ma5_c00330{transform:matrix(0.211914,-0.004874,0.005748,0.249934,0,0);-ms-transform:matrix(0.211914,-0.004874,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211914,-0.004874,0.005748,0.249934,0,0);}
.mc9_c00330{transform:matrix(0.212333,-0.003397,0.003999,0.249968,0,0);-ms-transform:matrix(0.212333,-0.003397,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212333,-0.003397,0.003999,0.249968,0,0);}
.m4f_c00330{transform:matrix(0.212474,-0.004887,0.005748,0.249934,0,0);-ms-transform:matrix(0.212474,-0.004887,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212474,-0.004887,0.005748,0.249934,0,0);}
.m2e_c00330{transform:matrix(0.212634,-0.004891,0.005748,0.249934,0,0);-ms-transform:matrix(0.212634,-0.004891,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212634,-0.004891,0.005748,0.249934,0,0);}
.ma8_c00330{transform:matrix(0.213434,-0.004909,0.005748,0.249934,0,0);-ms-transform:matrix(0.213434,-0.004909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213434,-0.004909,0.005748,0.249934,0,0);}
.md5_c00330{transform:matrix(0.213893,-0.003422,0.003999,0.249968,0,0);-ms-transform:matrix(0.213893,-0.003422,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213893,-0.003422,0.003999,0.249968,0,0);}
.mbd_c00330{transform:matrix(0.214543,-0.003433,0.003999,0.249968,0,0);-ms-transform:matrix(0.214543,-0.003433,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214543,-0.003433,0.003999,0.249968,0,0);}
.me6_c00330{transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);-ms-transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214997,-0.003440,0.003999,0.249968,0,0);}
.m4e_c00330{transform:matrix(0.215018,-0.004945,0.005748,0.249934,0,0);-ms-transform:matrix(0.215018,-0.004945,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215018,-0.004945,0.005748,0.249934,0,0);}
.m3c_c00330{transform:matrix(0.215668,-0.004960,0.005748,0.249934,0,0);-ms-transform:matrix(0.215668,-0.004960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215668,-0.004960,0.005748,0.249934,0,0);}
.m46_c00330{transform:matrix(0.216863,-0.004988,0.005748,0.249934,0,0);-ms-transform:matrix(0.216863,-0.004988,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216863,-0.004988,0.005748,0.249934,0,0);}
.m8_c00330{transform:matrix(0.216913,-0.004989,0.005748,0.249934,0,0);-ms-transform:matrix(0.216913,-0.004989,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216913,-0.004989,0.005748,0.249934,0,0);}
.m42_c00330{transform:matrix(0.217507,-0.005003,0.005748,0.249934,0,0);-ms-transform:matrix(0.217507,-0.005003,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217507,-0.005003,0.005748,0.249934,0,0);}
.m25_c00330{transform:matrix(0.217547,-0.005004,0.005748,0.249934,0,0);-ms-transform:matrix(0.217547,-0.005004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217547,-0.005004,0.005748,0.249934,0,0);}
.m5d_c00330{transform:matrix(0.217592,-0.005005,0.005748,0.249934,0,0);-ms-transform:matrix(0.217592,-0.005005,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217592,-0.005005,0.005748,0.249934,0,0);}
.me7_c00330{transform:matrix(0.217837,-0.003485,0.003999,0.249968,0,0);-ms-transform:matrix(0.217837,-0.003485,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217837,-0.003485,0.003999,0.249968,0,0);}
.mb9_c00330{transform:matrix(0.218652,-0.003498,0.003999,0.249968,0,0);-ms-transform:matrix(0.218652,-0.003498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218652,-0.003498,0.003999,0.249968,0,0);}
.m6b_c00330{transform:matrix(0.219732,-0.005054,0.005748,0.249934,0,0);-ms-transform:matrix(0.219732,-0.005054,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219732,-0.005054,0.005748,0.249934,0,0);}
.m1_c00330{transform:matrix(0.220392,-0.005069,0.005748,0.249934,0,0);-ms-transform:matrix(0.220392,-0.005069,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220392,-0.005069,0.005748,0.249934,0,0);}
.m87_c00330{transform:matrix(0.220492,-0.005071,0.005748,0.249934,0,0);-ms-transform:matrix(0.220492,-0.005071,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220492,-0.005071,0.005748,0.249934,0,0);}
.mc5_c00330{transform:matrix(0.221172,-0.003539,0.003999,0.249968,0,0);-ms-transform:matrix(0.221172,-0.003539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221172,-0.003539,0.003999,0.249968,0,0);}
.mbf_c00330{transform:matrix(0.221467,-0.003543,0.003999,0.249968,0,0);-ms-transform:matrix(0.221467,-0.003543,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221467,-0.003543,0.003999,0.249968,0,0);}
.mc1_c00330{transform:matrix(0.221512,-0.003544,0.003999,0.249968,0,0);-ms-transform:matrix(0.221512,-0.003544,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221512,-0.003544,0.003999,0.249968,0,0);}
.m9_c00330{transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);-ms-transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);}
.m69_c00330{transform:matrix(0.221961,-0.005105,0.005748,0.249934,0,0);-ms-transform:matrix(0.221961,-0.005105,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221961,-0.005105,0.005748,0.249934,0,0);}
.mae_c00330{transform:matrix(0.222612,-0.003562,0.003999,0.249968,0,0);-ms-transform:matrix(0.222612,-0.003562,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222612,-0.003562,0.003999,0.249968,0,0);}
.m59_c00330{transform:matrix(0.222836,-0.005125,0.005748,0.249934,0,0);-ms-transform:matrix(0.222836,-0.005125,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222836,-0.005125,0.005748,0.249934,0,0);}
.mc6_c00330{transform:matrix(0.222946,-0.003567,0.003999,0.249968,0,0);-ms-transform:matrix(0.222946,-0.003567,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222946,-0.003567,0.003999,0.249968,0,0);}
.m16_c00330{transform:matrix(0.223086,-0.005131,0.005748,0.249934,0,0);-ms-transform:matrix(0.223086,-0.005131,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223086,-0.005131,0.005748,0.249934,0,0);}
.me2_c00330{transform:matrix(0.223181,-0.003571,0.003999,0.249968,0,0);-ms-transform:matrix(0.223181,-0.003571,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223181,-0.003571,0.003999,0.249968,0,0);}
.ma6_c00330{transform:matrix(0.223666,-0.005144,0.005748,0.249934,0,0);-ms-transform:matrix(0.223666,-0.005144,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223666,-0.005144,0.005748,0.249934,0,0);}
.mbe_c00330{transform:matrix(0.223716,-0.003579,0.003999,0.249968,0,0);-ms-transform:matrix(0.223716,-0.003579,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223716,-0.003579,0.003999,0.249968,0,0);}
.m70_c00330{transform:matrix(0.223821,-0.005148,0.005748,0.249934,0,0);-ms-transform:matrix(0.223821,-0.005148,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223821,-0.005148,0.005748,0.249934,0,0);}
.ma7_c00330{transform:matrix(0.223886,-0.005149,0.005748,0.249934,0,0);-ms-transform:matrix(0.223886,-0.005149,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223886,-0.005149,0.005748,0.249934,0,0);}
.m23_c00330{transform:matrix(0.223911,-0.005150,0.005748,0.249934,0,0);-ms-transform:matrix(0.223911,-0.005150,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223911,-0.005150,0.005748,0.249934,0,0);}
.m85_c00330{transform:matrix(0.224301,-0.005159,0.005748,0.249934,0,0);-ms-transform:matrix(0.224301,-0.005159,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224301,-0.005159,0.005748,0.249934,0,0);}
.m29_c00330{transform:matrix(0.224851,-0.005172,0.005748,0.249934,0,0);-ms-transform:matrix(0.224851,-0.005172,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224851,-0.005172,0.005748,0.249934,0,0);}
.m40_c00330{transform:matrix(0.225045,-0.005176,0.005748,0.249934,0,0);-ms-transform:matrix(0.225045,-0.005176,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225045,-0.005176,0.005748,0.249934,0,0);}
.md9_c00330{transform:matrix(0.225076,-0.003601,0.003999,0.249968,0,0);-ms-transform:matrix(0.225076,-0.003601,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225076,-0.003601,0.003999,0.249968,0,0);}
.m5c_c00330{transform:matrix(0.225680,-0.005191,0.005748,0.249934,0,0);-ms-transform:matrix(0.225680,-0.005191,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225680,-0.005191,0.005748,0.249934,0,0);}
.mc4_c00330{transform:matrix(0.225691,-0.003611,0.003999,0.249968,0,0);-ms-transform:matrix(0.225691,-0.003611,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225691,-0.003611,0.003999,0.249968,0,0);}
.m4d_c00330{transform:matrix(0.225775,-0.005193,0.005748,0.249934,0,0);-ms-transform:matrix(0.225775,-0.005193,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225775,-0.005193,0.005748,0.249934,0,0);}
.m92_c00330{transform:matrix(0.228565,-0.005257,0.005748,0.249934,0,0);-ms-transform:matrix(0.228565,-0.005257,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228565,-0.005257,0.005748,0.249934,0,0);}
.m95_c00330{transform:matrix(0.229084,-0.005269,0.005748,0.249934,0,0);-ms-transform:matrix(0.229084,-0.005269,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229084,-0.005269,0.005748,0.249934,0,0);}
.m99_c00330{transform:matrix(0.229129,-0.005270,0.005748,0.249934,0,0);-ms-transform:matrix(0.229129,-0.005270,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229129,-0.005270,0.005748,0.249934,0,0);}
.m77_c00330{transform:matrix(0.229529,-0.005279,0.005748,0.249934,0,0);-ms-transform:matrix(0.229529,-0.005279,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229529,-0.005279,0.005748,0.249934,0,0);}
.m73_c00330{transform:matrix(0.231319,-0.005320,0.005748,0.249934,0,0);-ms-transform:matrix(0.231319,-0.005320,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231319,-0.005320,0.005748,0.249934,0,0);}
.m75_c00330{transform:matrix(0.231864,-0.005333,0.005748,0.249934,0,0);-ms-transform:matrix(0.231864,-0.005333,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231864,-0.005333,0.005748,0.249934,0,0);}
.mb8_c00330{transform:matrix(0.234235,-0.003748,0.003999,0.249968,0,0);-ms-transform:matrix(0.234235,-0.003748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234235,-0.003748,0.003999,0.249968,0,0);}
.m6f_c00330{transform:matrix(0.236912,-0.005449,0.005748,0.249934,0,0);-ms-transform:matrix(0.236912,-0.005449,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236912,-0.005449,0.005748,0.249934,0,0);}
.mdc_c00330{transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);-ms-transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);}
.ma9_c00330{transform:matrix(0.239037,-0.005498,0.005748,0.249934,0,0);-ms-transform:matrix(0.239037,-0.005498,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239037,-0.005498,0.005748,0.249934,0,0);}
.mdf_c00330{transform:matrix(0.239059,-0.003825,0.003999,0.249968,0,0);-ms-transform:matrix(0.239059,-0.003825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239059,-0.003825,0.003999,0.249968,0,0);}
.m58_c00330{transform:matrix(0.239342,-0.005505,0.005748,0.249934,0,0);-ms-transform:matrix(0.239342,-0.005505,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239342,-0.005505,0.005748,0.249934,0,0);}
.m53_c00330{transform:matrix(0.241721,-0.005560,0.005748,0.249934,0,0);-ms-transform:matrix(0.241721,-0.005560,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241721,-0.005560,0.005748,0.249934,0,0);}
.m12_c00330{transform:matrix(0.243571,-0.005602,0.005748,0.249934,0,0);-ms-transform:matrix(0.243571,-0.005602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243571,-0.005602,0.005748,0.249934,0,0);}
.ma2_c00330{transform:matrix(0.243666,-0.005604,0.005748,0.249934,0,0);-ms-transform:matrix(0.243666,-0.005604,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243666,-0.005604,0.005748,0.249934,0,0);}
.mde_c00330{transform:matrix(0.247738,-0.003964,0.003999,0.249968,0,0);-ms-transform:matrix(0.247738,-0.003964,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247738,-0.003964,0.003999,0.249968,0,0);}
.me4_c00330{transform:matrix(0.247828,-0.003965,0.003999,0.249968,0,0);-ms-transform:matrix(0.247828,-0.003965,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247828,-0.003965,0.003999,0.249968,0,0);}
.m3_c00330{transform:matrix(0.248014,-0.005704,0.005748,0.249934,0,0);-ms-transform:matrix(0.248014,-0.005704,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248014,-0.005704,0.005748,0.249934,0,0);}
.m56_c00330{transform:matrix(0.248724,-0.005721,0.005748,0.249934,0,0);-ms-transform:matrix(0.248724,-0.005721,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248724,-0.005721,0.005748,0.249934,0,0);}
.me1_c00330{transform:matrix(0.254852,-0.004078,0.003999,0.249968,0,0);-ms-transform:matrix(0.254852,-0.004078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254852,-0.004078,0.003999,0.249968,0,0);}
.mdd_c00330{transform:matrix(0.259112,-0.004146,0.003999,0.249968,0,0);-ms-transform:matrix(0.259112,-0.004146,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259112,-0.004146,0.003999,0.249968,0,0);}
.meb_c00330{transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.329323,-0.007574,0.005748,0.249934,0,0);-ms-transform:matrix(0.329323,-0.007574,0.005748,0.249934,0,0);-webkit-transform:matrix(0.329323,-0.007574,0.005748,0.249934,0,0);}
.mec_c00330{transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);}
.mea_c00330{transform:matrix(0.415405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415405,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:0.000000px;}
.fc0_c00330{color:transparent;}
.fs13_c00330{font-size:34.650000px;}
.fs12_c00330{font-size:50.406451px;}
.fsf_c00330{font-size:57.757392px;}
.fsb_c00330{font-size:57.765273px;}
.fs1_c00330{font-size:58.815551px;}
.fsd_c00330{font-size:59.857660px;}
.fs3_c00330{font-size:59.865828px;}
.fs11_c00330{font-size:60.907795px;}
.fs9_c00330{font-size:60.916106px;}
.fse_c00330{font-size:61.957929px;}
.fsa_c00330{font-size:61.966384px;}
.fs6_c00330{font-size:63.016661px;}
.fs2_c00330{font-size:64.066939px;}
.fs4_c00330{font-size:66.167494px;}
.fs7_c00330{font-size:67.217772px;}
.fs10_c00330{font-size:68.258735px;}
.fs5_c00330{font-size:68.268050px;}
.fs14_c00330{font-size:69.300000px;}
.fs8_c00330{font-size:69.318327px;}
.fsc_c00330{font-size:70.368605px;}
.fs0_c00330{font-size:79.800000px;}
.y0_c00330{bottom:0.000000px;}
.yef_c00330{bottom:35.382000px;}
.yee_c00330{bottom:53.308500px;}
.ye8_c00330{bottom:69.226548px;}
.ye6_c00330{bottom:69.226584px;}
.yeb_c00330{bottom:69.226812px;}
.ye9_c00330{bottom:69.226872px;}
.ye7_c00330{bottom:69.227052px;}
.yea_c00330{bottom:69.227328px;}
.yec_c00330{bottom:69.227508px;}
.yed_c00330{bottom:69.227652px;}
.ye1_c00330{bottom:85.759608px;}
.ye0_c00330{bottom:85.759872px;}
.ye3_c00330{bottom:85.759896px;}
.ye2_c00330{bottom:85.760184px;}
.ye4_c00330{bottom:85.760220px;}
.ye5_c00330{bottom:85.760592px;}
.ydc_c00330{bottom:104.959764px;}
.ydb_c00330{bottom:104.959824px;}
.yda_c00330{bottom:104.959968px;}
.ydd_c00330{bottom:104.959980px;}
.yde_c00330{bottom:104.960256px;}
.yd9_c00330{bottom:104.960448px;}
.ydf_c00330{bottom:104.960952px;}
.yd1_c00330{bottom:116.908428px;}
.yd2_c00330{bottom:117.187056px;}
.yd3_c00330{bottom:117.627696px;}
.yd4_c00330{bottom:118.007412px;}
.yd5_c00330{bottom:119.670084px;}
.yd6_c00330{bottom:121.211292px;}
.yd7_c00330{bottom:121.897560px;}
.yd8_c00330{bottom:122.445840px;}
.yc9_c00330{bottom:134.726316px;}
.yca_c00330{bottom:135.480468px;}
.ycb_c00330{bottom:135.801552px;}
.ycc_c00330{bottom:135.994644px;}
.ycd_c00330{bottom:136.205436px;}
.yce_c00330{bottom:136.992444px;}
.ycf_c00330{bottom:137.218152px;}
.yd0_c00330{bottom:137.470356px;}
.yc0_c00330{bottom:150.933660px;}
.yc1_c00330{bottom:151.752564px;}
.yc2_c00330{bottom:152.366064px;}
.yc3_c00330{bottom:153.324072px;}
.yc4_c00330{bottom:153.828192px;}
.yc5_c00330{bottom:154.311348px;}
.yc6_c00330{bottom:155.371260px;}
.yc7_c00330{bottom:155.717592px;}
.yc8_c00330{bottom:156.427500px;}
.yb7_c00330{bottom:169.021560px;}
.yb8_c00330{bottom:169.547496px;}
.yb9_c00330{bottom:169.859592px;}
.yba_c00330{bottom:170.118816px;}
.ybb_c00330{bottom:170.952480px;}
.ybc_c00330{bottom:171.250800px;}
.ybd_c00330{bottom:172.348080px;}
.ybe_c00330{bottom:173.051184px;}
.ybf_c00330{bottom:173.333544px;}
.yaf_c00330{bottom:185.763000px;}
.yb0_c00330{bottom:185.918232px;}
.yb1_c00330{bottom:186.230064px;}
.yb2_c00330{bottom:187.396392px;}
.yb3_c00330{bottom:187.763616px;}
.yb4_c00330{bottom:188.458488px;}
.yb5_c00330{bottom:189.241344px;}
.yb6_c00330{bottom:189.716904px;}
.ya8_c00330{bottom:202.409047px;}
.ya9_c00330{bottom:202.660498px;}
.yaa_c00330{bottom:203.368627px;}
.yab_c00330{bottom:204.965902px;}
.yac_c00330{bottom:205.597128px;}
.yad_c00330{bottom:206.122237px;}
.yae_c00330{bottom:206.326738px;}
.ya2_c00330{bottom:222.887488px;}
.ya1_c00330{bottom:222.887730px;}
.ya3_c00330{bottom:222.887923px;}
.ya5_c00330{bottom:222.888246px;}
.ya0_c00330{bottom:222.888322px;}
.ya4_c00330{bottom:222.888535px;}
.y9f_c00330{bottom:222.888889px;}
.ya6_c00330{bottom:222.888904px;}
.ya7_c00330{bottom:222.889516px;}
.y9a_c00330{bottom:239.275417px;}
.y98_c00330{bottom:239.275557px;}
.y99_c00330{bottom:239.275860px;}
.y96_c00330{bottom:239.275885px;}
.y97_c00330{bottom:239.275960px;}
.y95_c00330{bottom:239.276049px;}
.y9b_c00330{bottom:239.276124px;}
.y9c_c00330{bottom:239.276487px;}
.y9d_c00330{bottom:239.276533px;}
.y9e_c00330{bottom:239.276548px;}
.y93_c00330{bottom:256.828974px;}
.y94_c00330{bottom:256.829259px;}
.y92_c00330{bottom:256.829395px;}
.y8e_c00330{bottom:256.829851px;}
.y90_c00330{bottom:256.829857px;}
.y8f_c00330{bottom:256.829935px;}
.y91_c00330{bottom:256.830018px;}
.y8d_c00330{bottom:256.830444px;}
.y84_c00330{bottom:274.722442px;}
.y89_c00330{bottom:274.722715px;}
.y85_c00330{bottom:274.722745px;}
.y86_c00330{bottom:274.722762px;}
.y88_c00330{bottom:274.722784px;}
.y87_c00330{bottom:274.722816px;}
.y8c_c00330{bottom:274.723054px;}
.y8a_c00330{bottom:274.723327px;}
.y8b_c00330{bottom:274.723335px;}
.y7b_c00330{bottom:288.831151px;}
.y7c_c00330{bottom:288.994354px;}
.y7d_c00330{bottom:289.783917px;}
.y7e_c00330{bottom:290.041231px;}
.y7f_c00330{bottom:290.592546px;}
.y80_c00330{bottom:291.141255px;}
.y81_c00330{bottom:291.912474px;}
.y82_c00330{bottom:292.196811px;}
.y83_c00330{bottom:292.452366px;}
.y73_c00330{bottom:307.196233px;}
.y74_c00330{bottom:307.627035px;}
.y75_c00330{bottom:307.982862px;}
.y76_c00330{bottom:308.599023px;}
.y77_c00330{bottom:308.878666px;}
.y78_c00330{bottom:309.714076px;}
.y79_c00330{bottom:310.273536px;}
.y7a_c00330{bottom:310.557820px;}
.y6b_c00330{bottom:323.669169px;}
.y6c_c00330{bottom:324.334663px;}
.y6d_c00330{bottom:324.973308px;}
.y6e_c00330{bottom:325.356001px;}
.y6f_c00330{bottom:325.869319px;}
.y70_c00330{bottom:326.403240px;}
.y71_c00330{bottom:327.020884px;}
.y72_c00330{bottom:327.534030px;}
.y62_c00330{bottom:340.144765px;}
.y63_c00330{bottom:340.568242px;}
.y64_c00330{bottom:340.869873px;}
.y65_c00330{bottom:341.466819px;}
.y66_c00330{bottom:342.184524px;}
.y67_c00330{bottom:343.073904px;}
.y68_c00330{bottom:343.580647px;}
.y69_c00330{bottom:344.474514px;}
.y6a_c00330{bottom:344.689168px;}
.y5b_c00330{bottom:357.160402px;}
.y5c_c00330{bottom:357.903129px;}
.y5d_c00330{bottom:358.601221px;}
.y5e_c00330{bottom:359.595894px;}
.y5f_c00330{bottom:359.827671px;}
.y60_c00330{bottom:361.093389px;}
.y61_c00330{bottom:361.558375px;}
.y54_c00330{bottom:373.093978px;}
.y55_c00330{bottom:373.853869px;}
.y56_c00330{bottom:374.281263px;}
.y57_c00330{bottom:375.162499px;}
.y58_c00330{bottom:375.611046px;}
.y59_c00330{bottom:376.114269px;}
.y5a_c00330{bottom:377.475039px;}
.y4c_c00330{bottom:390.108172px;}
.y4d_c00330{bottom:390.531996px;}
.y4e_c00330{bottom:390.812899px;}
.y4f_c00330{bottom:391.585306px;}
.y50_c00330{bottom:392.410122px;}
.y51_c00330{bottom:392.711785px;}
.y52_c00330{bottom:392.988582px;}
.y53_c00330{bottom:393.613893px;}
.y44_c00330{bottom:406.584277px;}
.y45_c00330{bottom:407.130937px;}
.y46_c00330{bottom:407.577141px;}
.y47_c00330{bottom:408.414403px;}
.y48_c00330{bottom:408.998575px;}
.y49_c00330{bottom:410.107460px;}
.y4a_c00330{bottom:410.408190px;}
.y4b_c00330{bottom:410.666181px;}
.y3b_c00330{bottom:423.057802px;}
.y3c_c00330{bottom:423.433882px;}
.y3d_c00330{bottom:423.706647px;}
.y3e_c00330{bottom:424.682676px;}
.y3f_c00330{bottom:425.248962px;}
.y40_c00330{bottom:425.556510px;}
.y41_c00330{bottom:426.470633px;}
.y42_c00330{bottom:426.671328px;}
.y43_c00330{bottom:426.987003px;}
.y33_c00330{bottom:438.724695px;}
.y34_c00330{bottom:439.194090px;}
.y35_c00330{bottom:440.123926px;}
.y36_c00330{bottom:440.510517px;}
.y37_c00330{bottom:441.752731px;}
.y38_c00330{bottom:442.875536px;}
.y39_c00330{bottom:443.262126px;}
.y3a_c00330{bottom:444.484623px;}
.y2c_c00330{bottom:457.354408px;}
.y2d_c00330{bottom:457.864713px;}
.y2e_c00330{bottom:458.246160px;}
.y2f_c00330{bottom:459.153165px;}
.y30_c00330{bottom:459.855789px;}
.y31_c00330{bottom:460.969573px;}
.y32_c00330{bottom:461.268717px;}
.y24_c00330{bottom:473.829582px;}
.y25_c00330{bottom:474.534395px;}
.y26_c00330{bottom:475.314635px;}
.y27_c00330{bottom:475.553649px;}
.y28_c00330{bottom:476.386732px;}
.y29_c00330{bottom:477.125325px;}
.y2a_c00330{bottom:478.372725px;}
.y2b_c00330{bottom:478.618002px;}
.y1d_c00330{bottom:490.037688px;}
.y1e_c00330{bottom:491.192575px;}
.y1f_c00330{bottom:491.628035px;}
.y20_c00330{bottom:493.398264px;}
.y21_c00330{bottom:494.149467px;}
.y22_c00330{bottom:494.863582px;}
.y23_c00330{bottom:496.236613px;}
.y16_c00330{bottom:506.782405px;}
.y17_c00330{bottom:508.105205px;}
.y18_c00330{bottom:508.643059px;}
.y19_c00330{bottom:509.155729px;}
.y1a_c00330{bottom:510.416325px;}
.y1b_c00330{bottom:511.000341px;}
.y1c_c00330{bottom:513.060094px;}
.y14_c00330{bottom:527.284878px;}
.y13_c00330{bottom:527.285197px;}
.y15_c00330{bottom:527.285280px;}
.yb_c00330{bottom:543.238326px;}
.yc_c00330{bottom:544.129026px;}
.yd_c00330{bottom:544.425063px;}
.ye_c00330{bottom:545.028836px;}
.yf_c00330{bottom:546.110371px;}
.y10_c00330{bottom:546.389189px;}
.y11_c00330{bottom:546.996826px;}
.y12_c00330{bottom:547.318314px;}
.y2_c00330{bottom:558.364500px;}
.y3_c00330{bottom:558.961936px;}
.y4_c00330{bottom:559.471881px;}
.y5_c00330{bottom:560.922364px;}
.y6_c00330{bottom:561.403260px;}
.y7_c00330{bottom:561.788763px;}
.y8_c00330{bottom:562.589784px;}
.y9_c00330{bottom:563.044287px;}
.ya_c00330{bottom:564.687073px;}
.y1_c00330{bottom:575.104500px;}
.h15_c00330{height:34.650000px;}
.h14_c00330{height:50.406451px;}
.h11_c00330{height:57.757392px;}
.hd_c00330{height:57.765273px;}
.h3_c00330{height:58.815551px;}
.hf_c00330{height:59.857660px;}
.h5_c00330{height:59.865828px;}
.h13_c00330{height:60.907795px;}
.hb_c00330{height:60.916106px;}
.h10_c00330{height:61.957929px;}
.hc_c00330{height:61.966384px;}
.h8_c00330{height:63.016661px;}
.h4_c00330{height:64.066939px;}
.h6_c00330{height:66.167494px;}
.h9_c00330{height:67.217772px;}
.h12_c00330{height:68.258735px;}
.h7_c00330{height:68.268050px;}
.h16_c00330{height:69.300000px;}
.ha_c00330{height:69.318327px;}
.he_c00330{height:70.368605px;}
.h2_c00330{height:79.800000px;}
.h0_c00330{height:613.170000px;}
.h1_c00330{height:613.500000px;}
.w0_c00330{width:359.100000px;}
.w1_c00330{width:359.250000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:24.253500px;}
.x12_c00330{left:25.651185px;}
.x30_c00330{left:26.682693px;}
.x57_c00330{left:27.815000px;}
.x64_c00330{left:29.071194px;}
.x6f_c00330{left:30.121440px;}
.x7b_c00330{left:31.592544px;}
.x68_c00330{left:37.693500px;}
.x51_c00330{left:38.794926px;}
.x80_c00330{left:40.500000px;}
.x73_c00330{left:43.170336px;}
.x5c_c00330{left:45.638465px;}
.x29_c00330{left:48.335703px;}
.x3_c00330{left:50.229000px;}
.x81_c00330{left:51.570000px;}
.x45_c00330{left:53.373062px;}
.x4c_c00330{left:57.079769px;}
.x23_c00330{left:60.113733px;}
.x38_c00330{left:62.812920px;}
.x1e_c00330{left:65.023629px;}
.x31_c00330{left:67.160679px;}
.x6d_c00330{left:68.749476px;}
.x42_c00330{left:70.108919px;}
.x7c_c00330{left:71.288196px;}
.x4_c00330{left:72.400500px;}
.x40_c00330{left:74.167892px;}
.x19_c00330{left:75.893440px;}
.x3d_c00330{left:80.891595px;}
.x4d_c00330{left:82.534047px;}
.xb_c00330{left:83.874265px;}
.x24_c00330{left:85.507390px;}
.x7d_c00330{left:87.760920px;}
.x13_c00330{left:89.388391px;}
.x60_c00330{left:91.010682px;}
.x2a_c00330{left:92.613238px;}
.x1a_c00330{left:94.826440px;}
.x6e_c00330{left:97.997148px;}
.x58_c00330{left:99.113208px;}
.x41_c00330{left:100.906704px;}
.xc_c00330{left:103.596888px;}
.x15_c00330{left:107.116800px;}
.x14_c00330{left:109.372948px;}
.x2b_c00330{left:110.987566px;}
.x52_c00330{left:113.609417px;}
.x79_c00330{left:115.574568px;}
.x48_c00330{left:119.465000px;}
.x1f_c00330{left:121.671649px;}
.x82_c00330{left:125.280000px;}
.x4e_c00330{left:126.550155px;}
.x32_c00330{left:128.193511px;}
.x16_c00330{left:129.406800px;}
.x61_c00330{left:131.521607px;}
.x5_c00330{left:135.465000px;}
.x7e_c00330{left:136.637424px;}
.x3e_c00330{left:140.314257px;}
.xd_c00330{left:143.811771px;}
.x25_c00330{left:145.953499px;}
.x39_c00330{left:148.370652px;}
.x6a_c00330{left:150.301728px;}
.x53_c00330{left:152.979059px;}
.x1_c00330{left:154.440000px;}
.x6_c00330{left:156.373500px;}
.x83_c00330{left:159.840000px;}
.x33_c00330{left:163.581204px;}
.x20_c00330{left:167.941462px;}
.x6b_c00330{left:168.946728px;}
.x2c_c00330{left:170.151792px;}
.x1b_c00330{left:171.792940px;}
.x7_c00330{left:173.134500px;}
.x34_c00330{left:182.760274px;}
.x17_c00330{left:184.215300px;}
.x3a_c00330{left:187.341828px;}
.x62_c00330{left:190.397726px;}
.x26_c00330{left:192.750090px;}
.x65_c00330{left:199.487520px;}
.x5d_c00330{left:201.470351px;}
.x55_c00330{left:203.360996px;}
.x1c_c00330{left:204.453940px;}
.x4f_c00330{left:206.221146px;}
.x8_c00330{left:207.961500px;}
.x18_c00330{left:209.607300px;}
.x59_c00330{left:211.192479px;}
.xe_c00330{left:215.957053px;}
.x75_c00330{left:217.646076px;}
.x49_c00330{left:221.570114px;}
.x2d_c00330{left:223.602241px;}
.x74_c00330{left:226.136292px;}
.x9_c00330{left:227.722500px;}
.x76_c00330{left:230.877960px;}
.x56_c00330{left:232.528917px;}
.xf_c00330{left:234.539469px;}
.x70_c00330{left:236.083404px;}
.x6c_c00330{left:237.526728px;}
.x35_c00330{left:239.926986px;}
.x2e_c00330{left:241.976569px;}
.x50_c00330{left:246.205926px;}
.x54_c00330{left:247.234551px;}
.x3f_c00330{left:248.307597px;}
.x5a_c00330{left:249.542265px;}
.x5e_c00330{left:250.622829px;}
.x36_c00330{left:252.437487px;}
.x69_c00330{left:255.090000px;}
.x71_c00330{left:256.660560px;}
.x43_c00330{left:257.754794px;}
.x3b_c00330{left:261.263421px;}
.x7a_c00330{left:263.012796px;}
.x4a_c00330{left:265.650722px;}
.x27_c00330{left:267.015252px;}
.x7f_c00330{left:270.305124px;}
.x37_c00330{left:272.165661px;}
.x10_c00330{left:275.052921px;}
.x66_c00330{left:276.646734px;}
.x21_c00330{left:278.301658px;}
.x72_c00330{left:279.643908px;}
.x3c_c00330{left:281.320613px;}
.x44_c00330{left:285.084054px;}
.x28_c00330{left:287.003443px;}
.x67_c00330{left:290.236218px;}
.x22_c00330{left:291.902211px;}
.x1d_c00330{left:295.199440px;}
.x11_c00330{left:296.469354px;}
.x46_c00330{left:297.532857px;}
.xa_c00330{left:299.148000px;}
.x2f_c00330{left:300.218260px;}
.x4b_c00330{left:302.316812px;}
.x5b_c00330{left:304.366245px;}
.x77_c00330{left:306.758376px;}
.x5f_c00330{left:308.958672px;}
.x47_c00330{left:310.976531px;}
.x78_c00330{left:319.180044px;}
.x63_c00330{left:330.562797px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.fs13_c00330{font-size:30.800000pt;}
.fs12_c00330{font-size:44.805734pt;}
.fsf_c00330{font-size:51.339904pt;}
.fsb_c00330{font-size:51.346909pt;}
.fs1_c00330{font-size:52.280489pt;}
.fsd_c00330{font-size:53.206809pt;}
.fs3_c00330{font-size:53.214070pt;}
.fs11_c00330{font-size:54.140262pt;}
.fs9_c00330{font-size:54.147650pt;}
.fse_c00330{font-size:55.073715pt;}
.fsa_c00330{font-size:55.081230pt;}
.fs6_c00330{font-size:56.014810pt;}
.fs2_c00330{font-size:56.948390pt;}
.fs4_c00330{font-size:58.815551pt;}
.fs7_c00330{font-size:59.749131pt;}
.fs10_c00330{font-size:60.674432pt;}
.fs5_c00330{font-size:60.682711pt;}
.fs14_c00330{font-size:61.600000pt;}
.fs8_c00330{font-size:61.616291pt;}
.fsc_c00330{font-size:62.549871pt;}
.fs0_c00330{font-size:70.933333pt;}
.y0_c00330{bottom:0.000000pt;}
.yef_c00330{bottom:31.450667pt;}
.yee_c00330{bottom:47.385333pt;}
.ye8_c00330{bottom:61.534709pt;}
.ye6_c00330{bottom:61.534741pt;}
.yeb_c00330{bottom:61.534944pt;}
.ye9_c00330{bottom:61.534997pt;}
.ye7_c00330{bottom:61.535157pt;}
.yea_c00330{bottom:61.535403pt;}
.yec_c00330{bottom:61.535563pt;}
.yed_c00330{bottom:61.535691pt;}
.ye1_c00330{bottom:76.230763pt;}
.ye0_c00330{bottom:76.230997pt;}
.ye3_c00330{bottom:76.231019pt;}
.ye2_c00330{bottom:76.231275pt;}
.ye4_c00330{bottom:76.231307pt;}
.ye5_c00330{bottom:76.231637pt;}
.ydc_c00330{bottom:93.297568pt;}
.ydb_c00330{bottom:93.297621pt;}
.yda_c00330{bottom:93.297749pt;}
.ydd_c00330{bottom:93.297760pt;}
.yde_c00330{bottom:93.298005pt;}
.yd9_c00330{bottom:93.298176pt;}
.ydf_c00330{bottom:93.298624pt;}
.yd1_c00330{bottom:103.918603pt;}
.yd2_c00330{bottom:104.166272pt;}
.yd3_c00330{bottom:104.557952pt;}
.yd4_c00330{bottom:104.895477pt;}
.yd5_c00330{bottom:106.373408pt;}
.yd6_c00330{bottom:107.743371pt;}
.yd7_c00330{bottom:108.353387pt;}
.yd8_c00330{bottom:108.840747pt;}
.yc9_c00330{bottom:119.756725pt;}
.yca_c00330{bottom:120.427083pt;}
.ycb_c00330{bottom:120.712491pt;}
.ycc_c00330{bottom:120.884128pt;}
.ycd_c00330{bottom:121.071499pt;}
.yce_c00330{bottom:121.771061pt;}
.ycf_c00330{bottom:121.971691pt;}
.yd0_c00330{bottom:122.195872pt;}
.yc0_c00330{bottom:134.163253pt;}
.yc1_c00330{bottom:134.891168pt;}
.yc2_c00330{bottom:135.436501pt;}
.yc3_c00330{bottom:136.288064pt;}
.yc4_c00330{bottom:136.736171pt;}
.yc5_c00330{bottom:137.165643pt;}
.yc6_c00330{bottom:138.107787pt;}
.yc7_c00330{bottom:138.415637pt;}
.yc8_c00330{bottom:139.046667pt;}
.yb7_c00330{bottom:150.241387pt;}
.yb8_c00330{bottom:150.708885pt;}
.yb9_c00330{bottom:150.986304pt;}
.yba_c00330{bottom:151.216725pt;}
.ybb_c00330{bottom:151.957760pt;}
.ybc_c00330{bottom:152.222933pt;}
.ybd_c00330{bottom:153.198293pt;}
.ybe_c00330{bottom:153.823275pt;}
.ybf_c00330{bottom:154.074261pt;}
.yaf_c00330{bottom:165.122667pt;}
.yb0_c00330{bottom:165.260651pt;}
.yb1_c00330{bottom:165.537835pt;}
.yb2_c00330{bottom:166.574571pt;}
.yb3_c00330{bottom:166.900992pt;}
.yb4_c00330{bottom:167.518656pt;}
.yb5_c00330{bottom:168.214528pt;}
.yb6_c00330{bottom:168.637248pt;}
.ya8_c00330{bottom:179.919153pt;}
.ya9_c00330{bottom:180.142665pt;}
.yaa_c00330{bottom:180.772113pt;}
.yab_c00330{bottom:182.191913pt;}
.yac_c00330{bottom:182.753003pt;}
.yad_c00330{bottom:183.219767pt;}
.yae_c00330{bottom:183.401545pt;}
.ya2_c00330{bottom:198.122212pt;}
.ya1_c00330{bottom:198.122427pt;}
.ya3_c00330{bottom:198.122599pt;}
.ya5_c00330{bottom:198.122885pt;}
.ya0_c00330{bottom:198.122953pt;}
.ya4_c00330{bottom:198.123143pt;}
.y9f_c00330{bottom:198.123457pt;}
.ya6_c00330{bottom:198.123471pt;}
.ya7_c00330{bottom:198.124015pt;}
.y9a_c00330{bottom:212.689260pt;}
.y98_c00330{bottom:212.689384pt;}
.y99_c00330{bottom:212.689653pt;}
.y96_c00330{bottom:212.689676pt;}
.y97_c00330{bottom:212.689743pt;}
.y95_c00330{bottom:212.689821pt;}
.y9b_c00330{bottom:212.689888pt;}
.y9c_c00330{bottom:212.690211pt;}
.y9d_c00330{bottom:212.690252pt;}
.y9e_c00330{bottom:212.690265pt;}
.y93_c00330{bottom:228.292421pt;}
.y94_c00330{bottom:228.292675pt;}
.y92_c00330{bottom:228.292796pt;}
.y8e_c00330{bottom:228.293201pt;}
.y90_c00330{bottom:228.293207pt;}
.y8f_c00330{bottom:228.293276pt;}
.y91_c00330{bottom:228.293349pt;}
.y8d_c00330{bottom:228.293728pt;}
.y84_c00330{bottom:244.197727pt;}
.y89_c00330{bottom:244.197969pt;}
.y85_c00330{bottom:244.197996pt;}
.y86_c00330{bottom:244.198011pt;}
.y88_c00330{bottom:244.198031pt;}
.y87_c00330{bottom:244.198059pt;}
.y8c_c00330{bottom:244.198271pt;}
.y8a_c00330{bottom:244.198513pt;}
.y8b_c00330{bottom:244.198520pt;}
.y7b_c00330{bottom:256.738801pt;}
.y7c_c00330{bottom:256.883871pt;}
.y7d_c00330{bottom:257.585704pt;}
.y7e_c00330{bottom:257.814428pt;}
.y7f_c00330{bottom:258.304485pt;}
.y80_c00330{bottom:258.792227pt;}
.y81_c00330{bottom:259.477755pt;}
.y82_c00330{bottom:259.730499pt;}
.y83_c00330{bottom:259.957659pt;}
.y73_c00330{bottom:273.063319pt;}
.y74_c00330{bottom:273.446253pt;}
.y75_c00330{bottom:273.762544pt;}
.y76_c00330{bottom:274.310243pt;}
.y77_c00330{bottom:274.558815pt;}
.y78_c00330{bottom:275.301401pt;}
.y79_c00330{bottom:275.798699pt;}
.y7a_c00330{bottom:276.051396pt;}
.y6b_c00330{bottom:287.705928pt;}
.y6c_c00330{bottom:288.297479pt;}
.y6d_c00330{bottom:288.865163pt;}
.y6e_c00330{bottom:289.205335pt;}
.y6f_c00330{bottom:289.661617pt;}
.y70_c00330{bottom:290.136213pt;}
.y71_c00330{bottom:290.685231pt;}
.y72_c00330{bottom:291.141360pt;}
.y62_c00330{bottom:302.350903pt;}
.y63_c00330{bottom:302.727327pt;}
.y64_c00330{bottom:302.995443pt;}
.y65_c00330{bottom:303.526061pt;}
.y66_c00330{bottom:304.164021pt;}
.y67_c00330{bottom:304.954581pt;}
.y68_c00330{bottom:305.405020pt;}
.y69_c00330{bottom:306.199568pt;}
.y6a_c00330{bottom:306.390372pt;}
.y5b_c00330{bottom:317.475913pt;}
.y5c_c00330{bottom:318.136115pt;}
.y5d_c00330{bottom:318.756641pt;}
.y5e_c00330{bottom:319.640795pt;}
.y5f_c00330{bottom:319.846819pt;}
.y60_c00330{bottom:320.971901pt;}
.y61_c00330{bottom:321.385223pt;}
.y54_c00330{bottom:331.639092pt;}
.y55_c00330{bottom:332.314551pt;}
.y56_c00330{bottom:332.694456pt;}
.y57_c00330{bottom:333.477777pt;}
.y58_c00330{bottom:333.876485pt;}
.y59_c00330{bottom:334.323795pt;}
.y5a_c00330{bottom:335.533368pt;}
.y4c_c00330{bottom:346.762820pt;}
.y4d_c00330{bottom:347.139552pt;}
.y4e_c00330{bottom:347.389244pt;}
.y4f_c00330{bottom:348.075828pt;}
.y50_c00330{bottom:348.808997pt;}
.y51_c00330{bottom:349.077143pt;}
.y52_c00330{bottom:349.323184pt;}
.y53_c00330{bottom:349.879016pt;}
.y44_c00330{bottom:361.408247pt;}
.y45_c00330{bottom:361.894167pt;}
.y46_c00330{bottom:362.290792pt;}
.y47_c00330{bottom:363.035025pt;}
.y48_c00330{bottom:363.554289pt;}
.y49_c00330{bottom:364.539964pt;}
.y4a_c00330{bottom:364.807280pt;}
.y4b_c00330{bottom:365.036605pt;}
.y3b_c00330{bottom:376.051380pt;}
.y3c_c00330{bottom:376.385673pt;}
.y3d_c00330{bottom:376.628131pt;}
.y3e_c00330{bottom:377.495712pt;}
.y3f_c00330{bottom:377.999077pt;}
.y40_c00330{bottom:378.272453pt;}
.y41_c00330{bottom:379.085007pt;}
.y42_c00330{bottom:379.263403pt;}
.y43_c00330{bottom:379.544003pt;}
.y33_c00330{bottom:389.977507pt;}
.y34_c00330{bottom:390.394747pt;}
.y35_c00330{bottom:391.221268pt;}
.y36_c00330{bottom:391.564904pt;}
.y37_c00330{bottom:392.669095pt;}
.y38_c00330{bottom:393.667143pt;}
.y39_c00330{bottom:394.010779pt;}
.y3a_c00330{bottom:395.097443pt;}
.y2c_c00330{bottom:406.537252pt;}
.y2d_c00330{bottom:406.990856pt;}
.y2e_c00330{bottom:407.329920pt;}
.y2f_c00330{bottom:408.136147pt;}
.y30_c00330{bottom:408.760701pt;}
.y31_c00330{bottom:409.750732pt;}
.y32_c00330{bottom:410.016637pt;}
.y24_c00330{bottom:421.181851pt;}
.y25_c00330{bottom:421.808351pt;}
.y26_c00330{bottom:422.501897pt;}
.y27_c00330{bottom:422.714355pt;}
.y28_c00330{bottom:423.454873pt;}
.y29_c00330{bottom:424.111400pt;}
.y2a_c00330{bottom:425.220200pt;}
.y2b_c00330{bottom:425.438224pt;}
.y1d_c00330{bottom:435.589056pt;}
.y1e_c00330{bottom:436.615623pt;}
.y1f_c00330{bottom:437.002697pt;}
.y20_c00330{bottom:438.576235pt;}
.y21_c00330{bottom:439.243971pt;}
.y22_c00330{bottom:439.878740pt;}
.y23_c00330{bottom:441.099212pt;}
.y16_c00330{bottom:450.473249pt;}
.y17_c00330{bottom:451.649071pt;}
.y18_c00330{bottom:452.127164pt;}
.y19_c00330{bottom:452.582871pt;}
.y1a_c00330{bottom:453.703400pt;}
.y1b_c00330{bottom:454.222525pt;}
.y1c_c00330{bottom:456.053417pt;}
.y14_c00330{bottom:468.697669pt;}
.y13_c00330{bottom:468.697953pt;}
.y15_c00330{bottom:468.698027pt;}
.yb_c00330{bottom:482.878512pt;}
.yc_c00330{bottom:483.670245pt;}
.yd_c00330{bottom:483.933389pt;}
.ye_c00330{bottom:484.470076pt;}
.yf_c00330{bottom:485.431441pt;}
.y10_c00330{bottom:485.679279pt;}
.y11_c00330{bottom:486.219401pt;}
.y12_c00330{bottom:486.505168pt;}
.y2_c00330{bottom:496.324000pt;}
.y3_c00330{bottom:496.855055pt;}
.y4_c00330{bottom:497.308339pt;}
.y5_c00330{bottom:498.597657pt;}
.y6_c00330{bottom:499.025120pt;}
.y7_c00330{bottom:499.367789pt;}
.y8_c00330{bottom:500.079808pt;}
.y9_c00330{bottom:500.483811pt;}
.ya_c00330{bottom:501.944065pt;}
.y1_c00330{bottom:511.204000pt;}
.h15_c00330{height:30.800000pt;}
.h14_c00330{height:44.805734pt;}
.h11_c00330{height:51.339904pt;}
.hd_c00330{height:51.346909pt;}
.h3_c00330{height:52.280489pt;}
.hf_c00330{height:53.206809pt;}
.h5_c00330{height:53.214070pt;}
.h13_c00330{height:54.140262pt;}
.hb_c00330{height:54.147650pt;}
.h10_c00330{height:55.073715pt;}
.hc_c00330{height:55.081230pt;}
.h8_c00330{height:56.014810pt;}
.h4_c00330{height:56.948390pt;}
.h6_c00330{height:58.815551pt;}
.h9_c00330{height:59.749131pt;}
.h12_c00330{height:60.674432pt;}
.h7_c00330{height:60.682711pt;}
.h16_c00330{height:61.600000pt;}
.ha_c00330{height:61.616291pt;}
.he_c00330{height:62.549871pt;}
.h2_c00330{height:70.933333pt;}
.h0_c00330{height:545.040000pt;}
.h1_c00330{height:545.333333pt;}
.w0_c00330{width:319.200000pt;}
.w1_c00330{width:319.333333pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:21.558667pt;}
.x12_c00330{left:22.801053pt;}
.x30_c00330{left:23.717949pt;}
.x57_c00330{left:24.724444pt;}
.x64_c00330{left:25.841061pt;}
.x6f_c00330{left:26.774613pt;}
.x7b_c00330{left:28.082261pt;}
.x68_c00330{left:33.505333pt;}
.x51_c00330{left:34.484379pt;}
.x80_c00330{left:36.000000pt;}
.x73_c00330{left:38.373632pt;}
.x5c_c00330{left:40.567524pt;}
.x29_c00330{left:42.965069pt;}
.x3_c00330{left:44.648000pt;}
.x81_c00330{left:45.840000pt;}
.x45_c00330{left:47.442721pt;}
.x4c_c00330{left:50.737572pt;}
.x23_c00330{left:53.434429pt;}
.x38_c00330{left:55.833707pt;}
.x1e_c00330{left:57.798781pt;}
.x31_c00330{left:59.698381pt;}
.x6d_c00330{left:61.110645pt;}
.x42_c00330{left:62.319039pt;}
.x7c_c00330{left:63.367285pt;}
.x4_c00330{left:64.356000pt;}
.x40_c00330{left:65.927015pt;}
.x19_c00330{left:67.460836pt;}
.x3d_c00330{left:71.903640pt;}
.x4d_c00330{left:73.363597pt;}
.xb_c00330{left:74.554903pt;}
.x24_c00330{left:76.006569pt;}
.x7d_c00330{left:78.009707pt;}
.x13_c00330{left:79.456348pt;}
.x60_c00330{left:80.898384pt;}
.x2a_c00330{left:82.322879pt;}
.x1a_c00330{left:84.290169pt;}
.x6e_c00330{left:87.108576pt;}
.x58_c00330{left:88.100629pt;}
.x41_c00330{left:89.694848pt;}
.xc_c00330{left:92.086123pt;}
.x15_c00330{left:95.214933pt;}
.x14_c00330{left:97.220399pt;}
.x2b_c00330{left:98.655615pt;}
.x52_c00330{left:100.986148pt;}
.x79_c00330{left:102.732949pt;}
.x48_c00330{left:106.191111pt;}
.x1f_c00330{left:108.152577pt;}
.x82_c00330{left:111.360000pt;}
.x4e_c00330{left:112.489027pt;}
.x32_c00330{left:113.949788pt;}
.x16_c00330{left:115.028267pt;}
.x61_c00330{left:116.908095pt;}
.x5_c00330{left:120.413333pt;}
.x7e_c00330{left:121.455488pt;}
.x3e_c00330{left:124.723784pt;}
.xd_c00330{left:127.832685pt;}
.x25_c00330{left:129.736444pt;}
.x39_c00330{left:131.885024pt;}
.x6a_c00330{left:133.601536pt;}
.x53_c00330{left:135.981385pt;}
.x1_c00330{left:137.280000pt;}
.x6_c00330{left:138.998667pt;}
.x83_c00330{left:142.080000pt;}
.x33_c00330{left:145.405515pt;}
.x20_c00330{left:149.281300pt;}
.x6b_c00330{left:150.174869pt;}
.x2c_c00330{left:151.246037pt;}
.x1b_c00330{left:152.704836pt;}
.x7_c00330{left:153.897333pt;}
.x34_c00330{left:162.453577pt;}
.x17_c00330{left:163.746933pt;}
.x3a_c00330{left:166.526069pt;}
.x62_c00330{left:169.242423pt;}
.x26_c00330{left:171.333413pt;}
.x65_c00330{left:177.322240pt;}
.x5d_c00330{left:179.084756pt;}
.x55_c00330{left:180.765329pt;}
.x1c_c00330{left:181.736836pt;}
.x4f_c00330{left:183.307685pt;}
.x8_c00330{left:184.854667pt;}
.x18_c00330{left:186.317600pt;}
.x59_c00330{left:187.726648pt;}
.xe_c00330{left:191.961825pt;}
.x75_c00330{left:193.463179pt;}
.x49_c00330{left:196.951212pt;}
.x2d_c00330{left:198.757548pt;}
.x74_c00330{left:201.010037pt;}
.x9_c00330{left:202.420000pt;}
.x76_c00330{left:205.224853pt;}
.x56_c00330{left:206.692371pt;}
.xf_c00330{left:208.479528pt;}
.x70_c00330{left:209.851915pt;}
.x6c_c00330{left:211.134869pt;}
.x35_c00330{left:213.268432pt;}
.x2e_c00330{left:215.090284pt;}
.x50_c00330{left:218.849712pt;}
.x54_c00330{left:219.764045pt;}
.x3f_c00330{left:220.717864pt;}
.x5a_c00330{left:221.815347pt;}
.x5e_c00330{left:222.775848pt;}
.x36_c00330{left:224.388877pt;}
.x69_c00330{left:226.746667pt;}
.x71_c00330{left:228.142720pt;}
.x43_c00330{left:229.115372pt;}
.x3b_c00330{left:232.234152pt;}
.x7a_c00330{left:233.789152pt;}
.x4a_c00330{left:236.133975pt;}
.x27_c00330{left:237.346891pt;}
.x7f_c00330{left:240.271221pt;}
.x37_c00330{left:241.925032pt;}
.x10_c00330{left:244.491485pt;}
.x66_c00330{left:245.908208pt;}
.x21_c00330{left:247.379252pt;}
.x72_c00330{left:248.572363pt;}
.x3c_c00330{left:250.062767pt;}
.x44_c00330{left:253.408048pt;}
.x28_c00330{left:255.114172pt;}
.x67_c00330{left:257.987749pt;}
.x22_c00330{left:259.468632pt;}
.x1d_c00330{left:262.399503pt;}
.x11_c00330{left:263.528315pt;}
.x46_c00330{left:264.473651pt;}
.xa_c00330{left:265.909333pt;}
.x2f_c00330{left:266.860676pt;}
.x4b_c00330{left:268.726055pt;}
.x5b_c00330{left:270.547773pt;}
.x77_c00330{left:272.674112pt;}
.x5f_c00330{left:274.629931pt;}
.x47_c00330{left:276.423583pt;}
.x78_c00330{left:283.715595pt;}
.x63_c00330{left:293.833597pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00331 {
    display:none;
  }
  .loading-indicator_c00331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00331 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00331 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00331" -> "#page-container .classname_c00331")
 */
.pf_c00331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00331 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00331 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00331 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00331 {overflow:visible;}
  }
}
.c_c00331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00331 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00331:after { /* webkit #35443 */
  content: '';
}
.t_c00331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00331 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00331 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00331 { /* info for Javascript */
  display:none;
}
.l_c00331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00331:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00331 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00331.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00331{transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131835,0.000000,0.000000,0.250000,0,0);}
.mdd_c00331{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.mec_c00331{transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);}
.me4_c00331{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.m61_c00331{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{transform:matrix(0.143505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143505,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.mba_c00331{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.m7e_c00331{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m88_c00331{transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);}
.m85_c00331{transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);}
.m8b_c00331{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00331{transform:matrix(0.155920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155920,0.000000,0.000000,0.250000,0,0);}
.meb_c00331{transform:matrix(0.155940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155940,0.000000,0.000000,0.250000,0,0);}
.mea_c00331{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m6a_c00331{transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156890,0.000000,0.000000,0.250000,0,0);}
.md3_c00331{transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157070,0.000000,0.000000,0.250000,0,0);}
.ma0_c00331{transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);}
.m9a_c00331{transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m8e_c00331{transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);}
.mdf_c00331{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mee_c00331{transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);}
.mdc_c00331{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m81_c00331{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m63_c00331{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.mbb_c00331{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m9e_c00331{transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);}
.m67_c00331{transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{transform:matrix(0.163440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163440,0.000000,0.000000,0.250000,0,0);}
.med_c00331{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);}
.mb0_c00331{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.m89_c00331{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.mb3_c00331{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m82_c00331{transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);}
.m32_c00331{transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167660,0.000000,0.000000,0.250000,0,0);}
.m93_c00331{transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);}
.md9_c00331{transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);}
.m5d_c00331{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.mbd_c00331{transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169670,0.000000,0.000000,0.250000,0,0);}
.m71_c00331{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m56_c00331{transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);}
.m7b_c00331{transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m7a_c00331{transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171545,0.000000,0.000000,0.250000,0,0);}
.me1_c00331{transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172290,0.000000,0.000000,0.250000,0,0);}
.m4c_c00331{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00331{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.m8f_c00331{transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);}
.m5a_c00331{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.m35_c00331{transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173590,0.000000,0.000000,0.250000,0,0);}
.m6f_c00331{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m77_c00331{transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173990,0.000000,0.000000,0.250000,0,0);}
.m4a_c00331{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00331{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m45_c00331{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.mc4_c00331{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175385,0.000000,0.000000,0.250000,0,0);}
.mca_c00331{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);}
.me6_c00331{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.mae_c00331{transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177140,0.000000,0.000000,0.250000,0,0);}
.m9b_c00331{transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);}
.mbc_c00331{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.m60_c00331{transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);}
.m7f_c00331{transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m4b_c00331{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);}
.mde_c00331{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.ma8_c00331{transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);}
.ma9_c00331{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m90_c00331{transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00331{transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);}
.mb8_c00331{transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);}
.maf_c00331{transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.mab_c00331{transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181610,0.000000,0.000000,0.250000,0,0);}
.mb9_c00331{transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);}
.mc7_c00331{transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);}
.mcd_c00331{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.m2b_c00331{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.mb7_c00331{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00331{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me3_c00331{transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.m9d_c00331{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m29_c00331{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m5b_c00331{transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);}
.ma6_c00331{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00331{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m5e_c00331{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00331{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.ma1_c00331{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m87_c00331{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m97_c00331{transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);}
.m99_c00331{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m68_c00331{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.m72_c00331{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m15_c00331{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m62_c00331{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m59_c00331{transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);}
.mcc_c00331{transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);}
.m70_c00331{transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);}
.me7_c00331{transform:matrix(0.187445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187445,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m74_c00331{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.mdb_c00331{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.me8_c00331{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.mb6_c00331{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m3a_c00331{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.m17_c00331{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m80_c00331{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mda_c00331{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.me5_c00331{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00331{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.ma5_c00331{transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);}
.mc5_c00331{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.me0_c00331{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.md1_c00331{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00331{transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);}
.me9_c00331{transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192535,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.mb5_c00331{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00331{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m64_c00331{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.md4_c00331{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.m66_c00331{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.m9f_c00331{transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196315,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m91_c00331{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.mc0_c00331{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m52_c00331{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.m9c_c00331{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m53_c00331{transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);}
.mac_c00331{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m76_c00331{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.md6_c00331{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m39_c00331{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.mad_c00331{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);}
.mb1_c00331{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m48_c00331{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m79_c00331{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m54_c00331{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.m73_c00331{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m78_c00331{transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);}
.m58_c00331{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m92_c00331{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m8a_c00331{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m6e_c00331{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.m86_c00331{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.m1c_c00331{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m65_c00331{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.mce_c00331{transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204205,0.000000,0.000000,0.250000,0,0);}
.m55_c00331{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m1b_c00331{transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);}
.m96_c00331{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m98_c00331{transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);}
.mbf_c00331{transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);}
.mc9_c00331{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.mc1_c00331{transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);}
.m6c_c00331{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m57_c00331{transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);}
.m37_c00331{transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);}
.mb4_c00331{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.mc6_c00331{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);}
.m83_c00331{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m4d_c00331{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.md7_c00331{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m4e_c00331{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.maa_c00331{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.m51_c00331{transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212545,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m49_c00331{transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);}
.md5_c00331{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00331{transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);}
.me2_c00331{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m50_c00331{transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);}
.m84_c00331{transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);}
.mc2_c00331{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.m8c_c00331{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.mc8_c00331{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m1d_c00331{transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);}
.m94_c00331{transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);}
.m75_c00331{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.md0_c00331{transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);}
.m6b_c00331{transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);}
.mc3_c00331{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.md2_c00331{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);}
.ma2_c00331{transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);}
.m7d_c00331{transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);}
.m95_c00331{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.mcf_c00331{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.m2f_c00331{transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);}
.m6d_c00331{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);}
.m4f_c00331{transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.md8_c00331{transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294830,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls0_c00331{letter-spacing:0.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:0.000000px;}
.fc0_c00331{color:transparent;}
.fs7_c00331{font-size:58.800000px;}
.fs1_c00331{font-size:59.850000px;}
.fs2_c00331{font-size:60.900000px;}
.fs4_c00331{font-size:61.950000px;}
.fs6_c00331{font-size:63.000000px;}
.fs0_c00331{font-size:64.050000px;}
.fs9_c00331{font-size:65.100000px;}
.fs3_c00331{font-size:66.150000px;}
.fsa_c00331{font-size:67.200000px;}
.fs8_c00331{font-size:68.250000px;}
.fs5_c00331{font-size:69.300000px;}
.y0_c00331{bottom:0.000000px;}
.y21_c00331{bottom:31.108500px;}
.y20_c00331{bottom:47.818500px;}
.y1f_c00331{bottom:64.738500px;}
.y1e_c00331{bottom:81.028500px;}
.y1d_c00331{bottom:98.040000px;}
.y1c_c00331{bottom:114.900000px;}
.y1b_c00331{bottom:132.925500px;}
.y1a_c00331{bottom:149.016000px;}
.y19_c00331{bottom:167.037000px;}
.y18_c00331{bottom:183.933000px;}
.y17_c00331{bottom:200.823000px;}
.y16_c00331{bottom:218.766000px;}
.y15_c00331{bottom:234.966000px;}
.y14_c00331{bottom:252.693000px;}
.y13_c00331{bottom:269.191500px;}
.y12_c00331{bottom:286.080000px;}
.y11_c00331{bottom:302.700000px;}
.y10_c00331{bottom:319.978500px;}
.yf_c00331{bottom:337.287000px;}
.ye_c00331{bottom:354.568500px;}
.yd_c00331{bottom:371.968500px;}
.yc_c00331{bottom:388.234500px;}
.yb_c00331{bottom:405.514500px;}
.ya_c00331{bottom:422.259000px;}
.y9_c00331{bottom:439.504500px;}
.y8_c00331{bottom:456.180000px;}
.y7_c00331{bottom:472.974000px;}
.y6_c00331{bottom:490.200000px;}
.y5_c00331{bottom:506.992500px;}
.y4_c00331{bottom:523.707000px;}
.y3_c00331{bottom:541.195500px;}
.y2_c00331{bottom:558.324000px;}
.y1_c00331{bottom:574.560000px;}
.h9_c00331{height:58.800000px;}
.h3_c00331{height:59.850000px;}
.h4_c00331{height:60.900000px;}
.h6_c00331{height:61.950000px;}
.h8_c00331{height:63.000000px;}
.h2_c00331{height:64.050000px;}
.hb_c00331{height:65.100000px;}
.h5_c00331{height:66.150000px;}
.hc_c00331{height:67.200000px;}
.ha_c00331{height:68.250000px;}
.h7_c00331{height:69.300000px;}
.h0_c00331{height:613.170000px;}
.h1_c00331{height:613.500000px;}
.w0_c00331{width:359.100000px;}
.w1_c00331{width:359.250000px;}
.x0_c00331{left:0.000000px;}
.x6e_c00331{left:39.420000px;}
.x2_c00331{left:40.500000px;}
.x15_c00331{left:41.850000px;}
.x31_c00331{left:45.630000px;}
.x46_c00331{left:62.910000px;}
.x64_c00331{left:64.260000px;}
.x23_c00331{left:66.960000px;}
.x40_c00331{left:71.280000px;}
.xe_c00331{left:72.360000px;}
.x66_c00331{left:75.060000px;}
.x6d_c00331{left:76.950000px;}
.x3_c00331{left:78.570000px;}
.x5c_c00331{left:80.190000px;}
.x16_c00331{left:82.080000px;}
.x59_c00331{left:83.430000px;}
.x74_c00331{left:86.130000px;}
.x1c_c00331{left:87.210000px;}
.x43_c00331{left:88.290000px;}
.x6f_c00331{left:90.180000px;}
.x32_c00331{left:91.260000px;}
.x54_c00331{left:92.880000px;}
.x4_c00331{left:95.580000px;}
.x71_c00331{left:97.470000px;}
.x5d_c00331{left:100.980000px;}
.x51_c00331{left:102.870000px;}
.x69_c00331{left:104.220000px;}
.x2c_c00331{left:105.570000px;}
.xf_c00331{left:107.730000px;}
.x33_c00331{left:110.160000px;}
.x47_c00331{left:111.510000px;}
.x29_c00331{left:112.860000px;}
.x75_c00331{left:115.830000px;}
.x5e_c00331{left:117.180000px;}
.x57_c00331{left:118.800000px;}
.x39_c00331{left:119.880000px;}
.xa_c00331{left:125.550000px;}
.x1d_c00331{left:126.900000px;}
.x55_c00331{left:128.250000px;}
.x6a_c00331{left:129.600000px;}
.x24_c00331{left:134.460000px;}
.x10_c00331{left:137.970000px;}
.x17_c00331{left:139.590000px;}
.x65_c00331{left:143.910000px;}
.x5_c00331{left:147.420000px;}
.x4d_c00331{left:149.850000px;}
.x3e_c00331{left:150.930000px;}
.x1e_c00331{left:156.870000px;}
.x25_c00331{left:157.950000px;}
.x3a_c00331{left:160.380000px;}
.x2d_c00331{left:162.270000px;}
.x70_c00331{left:163.890000px;}
.x6_c00331{left:164.970000px;}
.x34_c00331{left:166.590000px;}
.x76_c00331{left:168.480000px;}
.x4a_c00331{left:171.720000px;}
.xb_c00331{left:173.070000px;}
.x5f_c00331{left:174.150000px;}
.x1_c00331{left:177.660000px;}
.x5a_c00331{left:180.360000px;}
.x52_c00331{left:182.790000px;}
.x61_c00331{left:184.950000px;}
.x35_c00331{left:188.190000px;}
.x1f_c00331{left:192.780000px;}
.x11_c00331{left:193.860000px;}
.x44_c00331{left:195.210000px;}
.x4e_c00331{left:196.560000px;}
.x3b_c00331{left:197.910000px;}
.x2e_c00331{left:200.610000px;}
.x6b_c00331{left:204.120000px;}
.x18_c00331{left:206.010000px;}
.x72_c00331{left:207.360000px;}
.x20_c00331{left:212.490000px;}
.x12_c00331{left:216.540000px;}
.x2f_c00331{left:217.890000px;}
.x67_c00331{left:220.860000px;}
.x19_c00331{left:223.290000px;}
.x26_c00331{left:226.530000px;}
.x7_c00331{left:228.960000px;}
.xc_c00331{left:231.660000px;}
.x48_c00331{left:235.710000px;}
.x53_c00331{left:240.030000px;}
.x45_c00331{left:241.650000px;}
.x36_c00331{left:243.270000px;}
.x56_c00331{left:246.240000px;}
.x73_c00331{left:248.400000px;}
.x41_c00331{left:249.480000px;}
.x4b_c00331{left:252.180000px;}
.x21_c00331{left:253.800000px;}
.x4f_c00331{left:256.500000px;}
.x77_c00331{left:257.580000px;}
.x3c_c00331{left:263.520000px;}
.x4c_c00331{left:265.410000px;}
.x49_c00331{left:266.760000px;}
.x62_c00331{left:269.190000px;}
.x50_c00331{left:272.430000px;}
.xd_c00331{left:273.510000px;}
.x42_c00331{left:279.720000px;}
.x13_c00331{left:282.690000px;}
.x3d_c00331{left:284.580000px;}
.x1a_c00331{left:286.200000px;}
.x63_c00331{left:288.630000px;}
.x2a_c00331{left:290.250000px;}
.x27_c00331{left:292.140000px;}
.x6c_c00331{left:293.760000px;}
.x5b_c00331{left:297.540000px;}
.x8_c00331{left:298.890000px;}
.x22_c00331{left:302.670000px;}
.x58_c00331{left:305.910000px;}
.x1b_c00331{left:307.260000px;}
.x60_c00331{left:308.610000px;}
.x30_c00331{left:310.770000px;}
.x37_c00331{left:313.470000px;}
.x2b_c00331{left:315.360000px;}
.x3f_c00331{left:317.250000px;}
.x9_c00331{left:319.680000px;}
.x28_c00331{left:322.380000px;}
.x14_c00331{left:325.080000px;}
.x38_c00331{left:327.510000px;}
.x68_c00331{left:328.860000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
.fs7_c00331{font-size:52.266667pt;}
.fs1_c00331{font-size:53.200000pt;}
.fs2_c00331{font-size:54.133333pt;}
.fs4_c00331{font-size:55.066667pt;}
.fs6_c00331{font-size:56.000000pt;}
.fs0_c00331{font-size:56.933333pt;}
.fs9_c00331{font-size:57.866667pt;}
.fs3_c00331{font-size:58.800000pt;}
.fsa_c00331{font-size:59.733333pt;}
.fs8_c00331{font-size:60.666667pt;}
.fs5_c00331{font-size:61.600000pt;}
.y0_c00331{bottom:0.000000pt;}
.y21_c00331{bottom:27.652000pt;}
.y20_c00331{bottom:42.505333pt;}
.y1f_c00331{bottom:57.545333pt;}
.y1e_c00331{bottom:72.025333pt;}
.y1d_c00331{bottom:87.146667pt;}
.y1c_c00331{bottom:102.133333pt;}
.y1b_c00331{bottom:118.156000pt;}
.y1a_c00331{bottom:132.458667pt;}
.y19_c00331{bottom:148.477333pt;}
.y18_c00331{bottom:163.496000pt;}
.y17_c00331{bottom:178.509333pt;}
.y16_c00331{bottom:194.458667pt;}
.y15_c00331{bottom:208.858667pt;}
.y14_c00331{bottom:224.616000pt;}
.y13_c00331{bottom:239.281333pt;}
.y12_c00331{bottom:254.293333pt;}
.y11_c00331{bottom:269.066667pt;}
.y10_c00331{bottom:284.425333pt;}
.yf_c00331{bottom:299.810667pt;}
.ye_c00331{bottom:315.172000pt;}
.yd_c00331{bottom:330.638667pt;}
.yc_c00331{bottom:345.097333pt;}
.yb_c00331{bottom:360.457333pt;}
.ya_c00331{bottom:375.341333pt;}
.y9_c00331{bottom:390.670667pt;}
.y8_c00331{bottom:405.493333pt;}
.y7_c00331{bottom:420.421333pt;}
.y6_c00331{bottom:435.733333pt;}
.y5_c00331{bottom:450.660000pt;}
.y4_c00331{bottom:465.517333pt;}
.y3_c00331{bottom:481.062667pt;}
.y2_c00331{bottom:496.288000pt;}
.y1_c00331{bottom:510.720000pt;}
.h9_c00331{height:52.266667pt;}
.h3_c00331{height:53.200000pt;}
.h4_c00331{height:54.133333pt;}
.h6_c00331{height:55.066667pt;}
.h8_c00331{height:56.000000pt;}
.h2_c00331{height:56.933333pt;}
.hb_c00331{height:57.866667pt;}
.h5_c00331{height:58.800000pt;}
.hc_c00331{height:59.733333pt;}
.ha_c00331{height:60.666667pt;}
.h7_c00331{height:61.600000pt;}
.h0_c00331{height:545.040000pt;}
.h1_c00331{height:545.333333pt;}
.w0_c00331{width:319.200000pt;}
.w1_c00331{width:319.333333pt;}
.x0_c00331{left:0.000000pt;}
.x6e_c00331{left:35.040000pt;}
.x2_c00331{left:36.000000pt;}
.x15_c00331{left:37.200000pt;}
.x31_c00331{left:40.560000pt;}
.x46_c00331{left:55.920000pt;}
.x64_c00331{left:57.120000pt;}
.x23_c00331{left:59.520000pt;}
.x40_c00331{left:63.360000pt;}
.xe_c00331{left:64.320000pt;}
.x66_c00331{left:66.720000pt;}
.x6d_c00331{left:68.400000pt;}
.x3_c00331{left:69.840000pt;}
.x5c_c00331{left:71.280000pt;}
.x16_c00331{left:72.960000pt;}
.x59_c00331{left:74.160000pt;}
.x74_c00331{left:76.560000pt;}
.x1c_c00331{left:77.520000pt;}
.x43_c00331{left:78.480000pt;}
.x6f_c00331{left:80.160000pt;}
.x32_c00331{left:81.120000pt;}
.x54_c00331{left:82.560000pt;}
.x4_c00331{left:84.960000pt;}
.x71_c00331{left:86.640000pt;}
.x5d_c00331{left:89.760000pt;}
.x51_c00331{left:91.440000pt;}
.x69_c00331{left:92.640000pt;}
.x2c_c00331{left:93.840000pt;}
.xf_c00331{left:95.760000pt;}
.x33_c00331{left:97.920000pt;}
.x47_c00331{left:99.120000pt;}
.x29_c00331{left:100.320000pt;}
.x75_c00331{left:102.960000pt;}
.x5e_c00331{left:104.160000pt;}
.x57_c00331{left:105.600000pt;}
.x39_c00331{left:106.560000pt;}
.xa_c00331{left:111.600000pt;}
.x1d_c00331{left:112.800000pt;}
.x55_c00331{left:114.000000pt;}
.x6a_c00331{left:115.200000pt;}
.x24_c00331{left:119.520000pt;}
.x10_c00331{left:122.640000pt;}
.x17_c00331{left:124.080000pt;}
.x65_c00331{left:127.920000pt;}
.x5_c00331{left:131.040000pt;}
.x4d_c00331{left:133.200000pt;}
.x3e_c00331{left:134.160000pt;}
.x1e_c00331{left:139.440000pt;}
.x25_c00331{left:140.400000pt;}
.x3a_c00331{left:142.560000pt;}
.x2d_c00331{left:144.240000pt;}
.x70_c00331{left:145.680000pt;}
.x6_c00331{left:146.640000pt;}
.x34_c00331{left:148.080000pt;}
.x76_c00331{left:149.760000pt;}
.x4a_c00331{left:152.640000pt;}
.xb_c00331{left:153.840000pt;}
.x5f_c00331{left:154.800000pt;}
.x1_c00331{left:157.920000pt;}
.x5a_c00331{left:160.320000pt;}
.x52_c00331{left:162.480000pt;}
.x61_c00331{left:164.400000pt;}
.x35_c00331{left:167.280000pt;}
.x1f_c00331{left:171.360000pt;}
.x11_c00331{left:172.320000pt;}
.x44_c00331{left:173.520000pt;}
.x4e_c00331{left:174.720000pt;}
.x3b_c00331{left:175.920000pt;}
.x2e_c00331{left:178.320000pt;}
.x6b_c00331{left:181.440000pt;}
.x18_c00331{left:183.120000pt;}
.x72_c00331{left:184.320000pt;}
.x20_c00331{left:188.880000pt;}
.x12_c00331{left:192.480000pt;}
.x2f_c00331{left:193.680000pt;}
.x67_c00331{left:196.320000pt;}
.x19_c00331{left:198.480000pt;}
.x26_c00331{left:201.360000pt;}
.x7_c00331{left:203.520000pt;}
.xc_c00331{left:205.920000pt;}
.x48_c00331{left:209.520000pt;}
.x53_c00331{left:213.360000pt;}
.x45_c00331{left:214.800000pt;}
.x36_c00331{left:216.240000pt;}
.x56_c00331{left:218.880000pt;}
.x73_c00331{left:220.800000pt;}
.x41_c00331{left:221.760000pt;}
.x4b_c00331{left:224.160000pt;}
.x21_c00331{left:225.600000pt;}
.x4f_c00331{left:228.000000pt;}
.x77_c00331{left:228.960000pt;}
.x3c_c00331{left:234.240000pt;}
.x4c_c00331{left:235.920000pt;}
.x49_c00331{left:237.120000pt;}
.x62_c00331{left:239.280000pt;}
.x50_c00331{left:242.160000pt;}
.xd_c00331{left:243.120000pt;}
.x42_c00331{left:248.640000pt;}
.x13_c00331{left:251.280000pt;}
.x3d_c00331{left:252.960000pt;}
.x1a_c00331{left:254.400000pt;}
.x63_c00331{left:256.560000pt;}
.x2a_c00331{left:258.000000pt;}
.x27_c00331{left:259.680000pt;}
.x6c_c00331{left:261.120000pt;}
.x5b_c00331{left:264.480000pt;}
.x8_c00331{left:265.680000pt;}
.x22_c00331{left:269.040000pt;}
.x58_c00331{left:271.920000pt;}
.x1b_c00331{left:273.120000pt;}
.x60_c00331{left:274.320000pt;}
.x30_c00331{left:276.240000pt;}
.x37_c00331{left:278.640000pt;}
.x2b_c00331{left:280.320000pt;}
.x3f_c00331{left:282.000000pt;}
.x9_c00331{left:284.160000pt;}
.x28_c00331{left:286.560000pt;}
.x14_c00331{left:288.960000pt;}
.x38_c00331{left:291.120000pt;}
.x68_c00331{left:292.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00332 {
    display:none;
  }
  .loading-indicator_c00332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00332 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00332 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00332" -> "#page-container .classname_c00332")
 */
.pf_c00332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00332 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00332 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00332 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00332 {overflow:visible;}
  }
}
.c_c00332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00332 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00332:after { /* webkit #35443 */
  content: '';
}
.t_c00332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00332 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00332 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00332 { /* info for Javascript */
  display:none;
}
.l_c00332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00332:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00332 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00332.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma1_c00332{transform:matrix(0.095491,-0.001337,0.003500,0.249976,0,0);-ms-transform:matrix(0.095491,-0.001337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.095491,-0.001337,0.003500,0.249976,0,0);}
.m3f_c00332{transform:matrix(0.136112,-0.001906,0.003500,0.249976,0,0);-ms-transform:matrix(0.136112,-0.001906,0.003500,0.249976,0,0);-webkit-transform:matrix(0.136112,-0.001906,0.003500,0.249976,0,0);}
.m87_c00332{transform:matrix(0.136772,-0.001915,0.003500,0.249976,0,0);-ms-transform:matrix(0.136772,-0.001915,0.003500,0.249976,0,0);-webkit-transform:matrix(0.136772,-0.001915,0.003500,0.249976,0,0);}
.ma7_c00332{transform:matrix(0.145721,-0.002040,0.003500,0.249976,0,0);-ms-transform:matrix(0.145721,-0.002040,0.003500,0.249976,0,0);-webkit-transform:matrix(0.145721,-0.002040,0.003500,0.249976,0,0);}
.mf0_c00332{transform:matrix(0.146146,-0.002046,0.003500,0.249976,0,0);-ms-transform:matrix(0.146146,-0.002046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146146,-0.002046,0.003500,0.249976,0,0);}
.m48_c00332{transform:matrix(0.146761,-0.002055,0.003500,0.249976,0,0);-ms-transform:matrix(0.146761,-0.002055,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146761,-0.002055,0.003500,0.249976,0,0);}
.m0_c00332{transform:matrix(0.147790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147790,0.000000,0.000000,0.250000,0,0);}
.m6c_c00332{transform:matrix(0.149080,-0.002087,0.003500,0.249976,0,0);-ms-transform:matrix(0.149080,-0.002087,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149080,-0.002087,0.003500,0.249976,0,0);}
.m66_c00332{transform:matrix(0.149345,-0.002091,0.003500,0.249976,0,0);-ms-transform:matrix(0.149345,-0.002091,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149345,-0.002091,0.003500,0.249976,0,0);}
.m10_c00332{transform:matrix(0.150685,-0.002110,0.003500,0.249976,0,0);-ms-transform:matrix(0.150685,-0.002110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150685,-0.002110,0.003500,0.249976,0,0);}
.ma9_c00332{transform:matrix(0.150915,-0.002113,0.003500,0.249976,0,0);-ms-transform:matrix(0.150915,-0.002113,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150915,-0.002113,0.003500,0.249976,0,0);}
.m14_c00332{transform:matrix(0.151935,-0.002127,0.003500,0.249976,0,0);-ms-transform:matrix(0.151935,-0.002127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151935,-0.002127,0.003500,0.249976,0,0);}
.m61_c00332{transform:matrix(0.152130,-0.002130,0.003500,0.249976,0,0);-ms-transform:matrix(0.152130,-0.002130,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152130,-0.002130,0.003500,0.249976,0,0);}
.m4a_c00332{transform:matrix(0.153310,-0.002146,0.003500,0.249976,0,0);-ms-transform:matrix(0.153310,-0.002146,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153310,-0.002146,0.003500,0.249976,0,0);}
.m96_c00332{transform:matrix(0.153720,-0.002152,0.003500,0.249976,0,0);-ms-transform:matrix(0.153720,-0.002152,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153720,-0.002152,0.003500,0.249976,0,0);}
.m77_c00332{transform:matrix(0.154135,-0.002158,0.003500,0.249976,0,0);-ms-transform:matrix(0.154135,-0.002158,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154135,-0.002158,0.003500,0.249976,0,0);}
.mb8_c00332{transform:matrix(0.154210,-0.002159,0.003500,0.249976,0,0);-ms-transform:matrix(0.154210,-0.002159,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154210,-0.002159,0.003500,0.249976,0,0);}
.m4f_c00332{transform:matrix(0.155920,-0.002183,0.003500,0.249976,0,0);-ms-transform:matrix(0.155920,-0.002183,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155920,-0.002183,0.003500,0.249976,0,0);}
.m18_c00332{transform:matrix(0.156245,-0.002187,0.003500,0.249976,0,0);-ms-transform:matrix(0.156245,-0.002187,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156245,-0.002187,0.003500,0.249976,0,0);}
.m47_c00332{transform:matrix(0.159384,-0.002231,0.003500,0.249976,0,0);-ms-transform:matrix(0.159384,-0.002231,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159384,-0.002231,0.003500,0.249976,0,0);}
.mb7_c00332{transform:matrix(0.159464,-0.002233,0.003500,0.249976,0,0);-ms-transform:matrix(0.159464,-0.002233,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159464,-0.002233,0.003500,0.249976,0,0);}
.ma6_c00332{transform:matrix(0.159759,-0.002237,0.003500,0.249976,0,0);-ms-transform:matrix(0.159759,-0.002237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159759,-0.002237,0.003500,0.249976,0,0);}
.ma2_c00332{transform:matrix(0.162464,-0.002274,0.003500,0.249976,0,0);-ms-transform:matrix(0.162464,-0.002274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162464,-0.002274,0.003500,0.249976,0,0);}
.m43_c00332{transform:matrix(0.162499,-0.002275,0.003500,0.249976,0,0);-ms-transform:matrix(0.162499,-0.002275,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162499,-0.002275,0.003500,0.249976,0,0);}
.m15_c00332{transform:matrix(0.163259,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163259,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163259,-0.002286,0.003500,0.249976,0,0);}
.mf5_c00332{transform:matrix(0.164794,-0.002307,0.003500,0.249976,0,0);-ms-transform:matrix(0.164794,-0.002307,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164794,-0.002307,0.003500,0.249976,0,0);}
.m6d_c00332{transform:matrix(0.164829,-0.002308,0.003500,0.249976,0,0);-ms-transform:matrix(0.164829,-0.002308,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164829,-0.002308,0.003500,0.249976,0,0);}
.m45_c00332{transform:matrix(0.165029,-0.002310,0.003500,0.249976,0,0);-ms-transform:matrix(0.165029,-0.002310,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165029,-0.002310,0.003500,0.249976,0,0);}
.mf2_c00332{transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);-ms-transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165269,-0.002314,0.003500,0.249976,0,0);}
.m57_c00332{transform:matrix(0.165344,-0.002315,0.003500,0.249976,0,0);-ms-transform:matrix(0.165344,-0.002315,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165344,-0.002315,0.003500,0.249976,0,0);}
.m60_c00332{transform:matrix(0.167389,-0.002343,0.003500,0.249976,0,0);-ms-transform:matrix(0.167389,-0.002343,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167389,-0.002343,0.003500,0.249976,0,0);}
.m27_c00332{transform:matrix(0.167654,-0.002347,0.003500,0.249976,0,0);-ms-transform:matrix(0.167654,-0.002347,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167654,-0.002347,0.003500,0.249976,0,0);}
.m13_c00332{transform:matrix(0.168199,-0.002355,0.003500,0.249976,0,0);-ms-transform:matrix(0.168199,-0.002355,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168199,-0.002355,0.003500,0.249976,0,0);}
.m2b_c00332{transform:matrix(0.168274,-0.002356,0.003500,0.249976,0,0);-ms-transform:matrix(0.168274,-0.002356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168274,-0.002356,0.003500,0.249976,0,0);}
.m19_c00332{transform:matrix(0.168543,-0.002360,0.003500,0.249976,0,0);-ms-transform:matrix(0.168543,-0.002360,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168543,-0.002360,0.003500,0.249976,0,0);}
.m28_c00332{transform:matrix(0.169703,-0.002376,0.003500,0.249976,0,0);-ms-transform:matrix(0.169703,-0.002376,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169703,-0.002376,0.003500,0.249976,0,0);}
.mc1_c00332{transform:matrix(0.169813,-0.002377,0.003500,0.249976,0,0);-ms-transform:matrix(0.169813,-0.002377,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169813,-0.002377,0.003500,0.249976,0,0);}
.m9_c00332{transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);-ms-transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);}
.mae_c00332{transform:matrix(0.170133,-0.002382,0.003500,0.249976,0,0);-ms-transform:matrix(0.170133,-0.002382,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170133,-0.002382,0.003500,0.249976,0,0);}
.mac_c00332{transform:matrix(0.170328,-0.002385,0.003500,0.249976,0,0);-ms-transform:matrix(0.170328,-0.002385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170328,-0.002385,0.003500,0.249976,0,0);}
.m17_c00332{transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);-ms-transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170988,-0.002394,0.003500,0.249976,0,0);}
.mbb_c00332{transform:matrix(0.171838,-0.002406,0.003500,0.249976,0,0);-ms-transform:matrix(0.171838,-0.002406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171838,-0.002406,0.003500,0.249976,0,0);}
.m12_c00332{transform:matrix(0.171903,-0.002407,0.003500,0.249976,0,0);-ms-transform:matrix(0.171903,-0.002407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171903,-0.002407,0.003500,0.249976,0,0);}
.m79_c00332{transform:matrix(0.172048,-0.002409,0.003500,0.249976,0,0);-ms-transform:matrix(0.172048,-0.002409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172048,-0.002409,0.003500,0.249976,0,0);}
.mab_c00332{transform:matrix(0.172288,-0.002412,0.003500,0.249976,0,0);-ms-transform:matrix(0.172288,-0.002412,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172288,-0.002412,0.003500,0.249976,0,0);}
.m2_c00332{transform:matrix(0.172623,-0.002417,0.003500,0.249976,0,0);-ms-transform:matrix(0.172623,-0.002417,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172623,-0.002417,0.003500,0.249976,0,0);}
.ma5_c00332{transform:matrix(0.172753,-0.002419,0.003500,0.249976,0,0);-ms-transform:matrix(0.172753,-0.002419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172753,-0.002419,0.003500,0.249976,0,0);}
.me9_c00332{transform:matrix(0.172813,-0.002419,0.003500,0.249976,0,0);-ms-transform:matrix(0.172813,-0.002419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172813,-0.002419,0.003500,0.249976,0,0);}
.m5e_c00332{transform:matrix(0.173543,-0.002430,0.003500,0.249976,0,0);-ms-transform:matrix(0.173543,-0.002430,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173543,-0.002430,0.003500,0.249976,0,0);}
.m71_c00332{transform:matrix(0.173978,-0.002436,0.003500,0.249976,0,0);-ms-transform:matrix(0.173978,-0.002436,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173978,-0.002436,0.003500,0.249976,0,0);}
.mb3_c00332{transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);-ms-transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174153,-0.002438,0.003500,0.249976,0,0);}
.m5a_c00332{transform:matrix(0.174218,-0.002439,0.003500,0.249976,0,0);-ms-transform:matrix(0.174218,-0.002439,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174218,-0.002439,0.003500,0.249976,0,0);}
.m64_c00332{transform:matrix(0.174273,-0.002440,0.003500,0.249976,0,0);-ms-transform:matrix(0.174273,-0.002440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174273,-0.002440,0.003500,0.249976,0,0);}
.m1a_c00332{transform:matrix(0.174533,-0.002443,0.003500,0.249976,0,0);-ms-transform:matrix(0.174533,-0.002443,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174533,-0.002443,0.003500,0.249976,0,0);}
.m4c_c00332{transform:matrix(0.174543,-0.002444,0.003500,0.249976,0,0);-ms-transform:matrix(0.174543,-0.002444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174543,-0.002444,0.003500,0.249976,0,0);}
.m88_c00332{transform:matrix(0.175213,-0.002453,0.003500,0.249976,0,0);-ms-transform:matrix(0.175213,-0.002453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175213,-0.002453,0.003500,0.249976,0,0);}
.mec_c00332{transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);-ms-transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175598,-0.002458,0.003500,0.249976,0,0);}
.m8d_c00332{transform:matrix(0.175923,-0.002463,0.003500,0.249976,0,0);-ms-transform:matrix(0.175923,-0.002463,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175923,-0.002463,0.003500,0.249976,0,0);}
.m67_c00332{transform:matrix(0.176013,-0.002464,0.003500,0.249976,0,0);-ms-transform:matrix(0.176013,-0.002464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176013,-0.002464,0.003500,0.249976,0,0);}
.m34_c00332{transform:matrix(0.176258,-0.002468,0.003500,0.249976,0,0);-ms-transform:matrix(0.176258,-0.002468,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176258,-0.002468,0.003500,0.249976,0,0);}
.mf1_c00332{transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);-ms-transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176343,-0.002469,0.003500,0.249976,0,0);}
.m68_c00332{transform:matrix(0.176448,-0.002470,0.003500,0.249976,0,0);-ms-transform:matrix(0.176448,-0.002470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176448,-0.002470,0.003500,0.249976,0,0);}
.m5d_c00332{transform:matrix(0.176988,-0.002478,0.003500,0.249976,0,0);-ms-transform:matrix(0.176988,-0.002478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176988,-0.002478,0.003500,0.249976,0,0);}
.m85_c00332{transform:matrix(0.177008,-0.002478,0.003500,0.249976,0,0);-ms-transform:matrix(0.177008,-0.002478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177008,-0.002478,0.003500,0.249976,0,0);}
.ma4_c00332{transform:matrix(0.177028,-0.002478,0.003500,0.249976,0,0);-ms-transform:matrix(0.177028,-0.002478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177028,-0.002478,0.003500,0.249976,0,0);}
.m9d_c00332{transform:matrix(0.177323,-0.002483,0.003500,0.249976,0,0);-ms-transform:matrix(0.177323,-0.002483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177323,-0.002483,0.003500,0.249976,0,0);}
.m25_c00332{transform:matrix(0.177438,-0.002484,0.003500,0.249976,0,0);-ms-transform:matrix(0.177438,-0.002484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177438,-0.002484,0.003500,0.249976,0,0);}
.m72_c00332{transform:matrix(0.177633,-0.002487,0.003500,0.249976,0,0);-ms-transform:matrix(0.177633,-0.002487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177633,-0.002487,0.003500,0.249976,0,0);}
.m74_c00332{transform:matrix(0.177643,-0.002487,0.003500,0.249976,0,0);-ms-transform:matrix(0.177643,-0.002487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177643,-0.002487,0.003500,0.249976,0,0);}
.mb5_c00332{transform:matrix(0.178418,-0.002498,0.003500,0.249976,0,0);-ms-transform:matrix(0.178418,-0.002498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178418,-0.002498,0.003500,0.249976,0,0);}
.mef_c00332{transform:matrix(0.178657,-0.002501,0.003500,0.249976,0,0);-ms-transform:matrix(0.178657,-0.002501,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178657,-0.002501,0.003500,0.249976,0,0);}
.m65_c00332{transform:matrix(0.179282,-0.002510,0.003500,0.249976,0,0);-ms-transform:matrix(0.179282,-0.002510,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179282,-0.002510,0.003500,0.249976,0,0);}
.mf6_c00332{transform:matrix(0.179492,-0.002513,0.003500,0.249976,0,0);-ms-transform:matrix(0.179492,-0.002513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179492,-0.002513,0.003500,0.249976,0,0);}
.mc8_c00332{transform:matrix(0.179602,-0.002514,0.003500,0.249976,0,0);-ms-transform:matrix(0.179602,-0.002514,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179602,-0.002514,0.003500,0.249976,0,0);}
.m16_c00332{transform:matrix(0.180312,-0.002524,0.003500,0.249976,0,0);-ms-transform:matrix(0.180312,-0.002524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180312,-0.002524,0.003500,0.249976,0,0);}
.ma3_c00332{transform:matrix(0.180327,-0.002525,0.003500,0.249976,0,0);-ms-transform:matrix(0.180327,-0.002525,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180327,-0.002525,0.003500,0.249976,0,0);}
.m78_c00332{transform:matrix(0.180932,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180932,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180932,-0.002533,0.003500,0.249976,0,0);}
.m1f_c00332{transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-ms-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181112,-0.002536,0.003500,0.249976,0,0);}
.m22_c00332{transform:matrix(0.181367,-0.002539,0.003500,0.249976,0,0);-ms-transform:matrix(0.181367,-0.002539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181367,-0.002539,0.003500,0.249976,0,0);}
.m35_c00332{transform:matrix(0.181432,-0.002540,0.003500,0.249976,0,0);-ms-transform:matrix(0.181432,-0.002540,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181432,-0.002540,0.003500,0.249976,0,0);}
.m6_c00332{transform:matrix(0.181822,-0.002546,0.003500,0.249976,0,0);-ms-transform:matrix(0.181822,-0.002546,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181822,-0.002546,0.003500,0.249976,0,0);}
.ma0_c00332{transform:matrix(0.182397,-0.002554,0.003500,0.249976,0,0);-ms-transform:matrix(0.182397,-0.002554,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182397,-0.002554,0.003500,0.249976,0,0);}
.m40_c00332{transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-ms-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182517,-0.002555,0.003500,0.249976,0,0);}
.m63_c00332{transform:matrix(0.182612,-0.002557,0.003500,0.249976,0,0);-ms-transform:matrix(0.182612,-0.002557,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182612,-0.002557,0.003500,0.249976,0,0);}
.m49_c00332{transform:matrix(0.182687,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182687,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182687,-0.002558,0.003500,0.249976,0,0);}
.m82_c00332{transform:matrix(0.183312,-0.002566,0.003500,0.249976,0,0);-ms-transform:matrix(0.183312,-0.002566,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183312,-0.002566,0.003500,0.249976,0,0);}
.m3a_c00332{transform:matrix(0.183512,-0.002569,0.003500,0.249976,0,0);-ms-transform:matrix(0.183512,-0.002569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183512,-0.002569,0.003500,0.249976,0,0);}
.m51_c00332{transform:matrix(0.183532,-0.002569,0.003500,0.249976,0,0);-ms-transform:matrix(0.183532,-0.002569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183532,-0.002569,0.003500,0.249976,0,0);}
.m8f_c00332{transform:matrix(0.183662,-0.002571,0.003500,0.249976,0,0);-ms-transform:matrix(0.183662,-0.002571,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183662,-0.002571,0.003500,0.249976,0,0);}
.mba_c00332{transform:matrix(0.184192,-0.002579,0.003500,0.249976,0,0);-ms-transform:matrix(0.184192,-0.002579,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184192,-0.002579,0.003500,0.249976,0,0);}
.m99_c00332{transform:matrix(0.184232,-0.002579,0.003500,0.249976,0,0);-ms-transform:matrix(0.184232,-0.002579,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184232,-0.002579,0.003500,0.249976,0,0);}
.mf4_c00332{transform:matrix(0.184417,-0.002582,0.003500,0.249976,0,0);-ms-transform:matrix(0.184417,-0.002582,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184417,-0.002582,0.003500,0.249976,0,0);}
.m6e_c00332{transform:matrix(0.184687,-0.002586,0.003500,0.249976,0,0);-ms-transform:matrix(0.184687,-0.002586,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184687,-0.002586,0.003500,0.249976,0,0);}
.mdb_c00332{transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);-ms-transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);}
.m46_c00332{transform:matrix(0.185222,-0.002593,0.003500,0.249976,0,0);-ms-transform:matrix(0.185222,-0.002593,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185222,-0.002593,0.003500,0.249976,0,0);}
.mb1_c00332{transform:matrix(0.185422,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185422,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185422,-0.002596,0.003500,0.249976,0,0);}
.meb_c00332{transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-ms-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);}
.m6b_c00332{transform:matrix(0.186487,-0.002611,0.003500,0.249976,0,0);-ms-transform:matrix(0.186487,-0.002611,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186487,-0.002611,0.003500,0.249976,0,0);}
.m59_c00332{transform:matrix(0.186532,-0.002611,0.003500,0.249976,0,0);-ms-transform:matrix(0.186532,-0.002611,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186532,-0.002611,0.003500,0.249976,0,0);}
.md0_c00332{transform:matrix(0.186577,-0.002612,0.003500,0.249976,0,0);-ms-transform:matrix(0.186577,-0.002612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186577,-0.002612,0.003500,0.249976,0,0);}
.m41_c00332{transform:matrix(0.186817,-0.002615,0.003500,0.249976,0,0);-ms-transform:matrix(0.186817,-0.002615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186817,-0.002615,0.003500,0.249976,0,0);}
.m97_c00332{transform:matrix(0.186942,-0.002617,0.003500,0.249976,0,0);-ms-transform:matrix(0.186942,-0.002617,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186942,-0.002617,0.003500,0.249976,0,0);}
.ma_c00332{transform:matrix(0.187192,-0.002621,0.003500,0.249976,0,0);-ms-transform:matrix(0.187192,-0.002621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187192,-0.002621,0.003500,0.249976,0,0);}
.m84_c00332{transform:matrix(0.187437,-0.002624,0.003500,0.249976,0,0);-ms-transform:matrix(0.187437,-0.002624,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187437,-0.002624,0.003500,0.249976,0,0);}
.m29_c00332{transform:matrix(0.187537,-0.002626,0.003500,0.249976,0,0);-ms-transform:matrix(0.187537,-0.002626,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187537,-0.002626,0.003500,0.249976,0,0);}
.mf3_c00332{transform:matrix(0.187567,-0.002626,0.003500,0.249976,0,0);-ms-transform:matrix(0.187567,-0.002626,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187567,-0.002626,0.003500,0.249976,0,0);}
.m4d_c00332{transform:matrix(0.187807,-0.002629,0.003500,0.249976,0,0);-ms-transform:matrix(0.187807,-0.002629,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187807,-0.002629,0.003500,0.249976,0,0);}
.m5f_c00332{transform:matrix(0.188392,-0.002637,0.003500,0.249976,0,0);-ms-transform:matrix(0.188392,-0.002637,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188392,-0.002637,0.003500,0.249976,0,0);}
.m7d_c00332{transform:matrix(0.188612,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188612,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188612,-0.002641,0.003500,0.249976,0,0);}
.me_c00332{transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188796,-0.002643,0.003500,0.249976,0,0);}
.m9e_c00332{transform:matrix(0.189236,-0.002649,0.003500,0.249976,0,0);-ms-transform:matrix(0.189236,-0.002649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189236,-0.002649,0.003500,0.249976,0,0);}
.m4b_c00332{transform:matrix(0.189311,-0.002650,0.003500,0.249976,0,0);-ms-transform:matrix(0.189311,-0.002650,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189311,-0.002650,0.003500,0.249976,0,0);}
.m2f_c00332{transform:matrix(0.189376,-0.002651,0.003500,0.249976,0,0);-ms-transform:matrix(0.189376,-0.002651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189376,-0.002651,0.003500,0.249976,0,0);}
.m75_c00332{transform:matrix(0.190481,-0.002667,0.003500,0.249976,0,0);-ms-transform:matrix(0.190481,-0.002667,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190481,-0.002667,0.003500,0.249976,0,0);}
.me6_c00332{transform:matrix(0.190666,-0.002669,0.003500,0.249976,0,0);-ms-transform:matrix(0.190666,-0.002669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190666,-0.002669,0.003500,0.249976,0,0);}
.m9c_c00332{transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);-ms-transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190921,-0.002673,0.003500,0.249976,0,0);}
.mc_c00332{transform:matrix(0.190996,-0.002674,0.003500,0.249976,0,0);-ms-transform:matrix(0.190996,-0.002674,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190996,-0.002674,0.003500,0.249976,0,0);}
.m21_c00332{transform:matrix(0.191761,-0.002685,0.003500,0.249976,0,0);-ms-transform:matrix(0.191761,-0.002685,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191761,-0.002685,0.003500,0.249976,0,0);}
.mb4_c00332{transform:matrix(0.192721,-0.002698,0.003500,0.249976,0,0);-ms-transform:matrix(0.192721,-0.002698,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192721,-0.002698,0.003500,0.249976,0,0);}
.m5b_c00332{transform:matrix(0.192836,-0.002700,0.003500,0.249976,0,0);-ms-transform:matrix(0.192836,-0.002700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192836,-0.002700,0.003500,0.249976,0,0);}
.m54_c00332{transform:matrix(0.193141,-0.002704,0.003500,0.249976,0,0);-ms-transform:matrix(0.193141,-0.002704,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193141,-0.002704,0.003500,0.249976,0,0);}
.mda_c00332{transform:matrix(0.193441,-0.002708,0.003500,0.249976,0,0);-ms-transform:matrix(0.193441,-0.002708,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193441,-0.002708,0.003500,0.249976,0,0);}
.m38_c00332{transform:matrix(0.193606,-0.002710,0.003500,0.249976,0,0);-ms-transform:matrix(0.193606,-0.002710,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193606,-0.002710,0.003500,0.249976,0,0);}
.m6f_c00332{transform:matrix(0.194051,-0.002717,0.003500,0.249976,0,0);-ms-transform:matrix(0.194051,-0.002717,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194051,-0.002717,0.003500,0.249976,0,0);}
.mce_c00332{transform:matrix(0.194131,-0.002718,0.003500,0.249976,0,0);-ms-transform:matrix(0.194131,-0.002718,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194131,-0.002718,0.003500,0.249976,0,0);}
.m42_c00332{transform:matrix(0.194796,-0.002727,0.003500,0.249976,0,0);-ms-transform:matrix(0.194796,-0.002727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194796,-0.002727,0.003500,0.249976,0,0);}
.mad_c00332{transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);-ms-transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);}
.m8b_c00332{transform:matrix(0.196691,-0.002754,0.003500,0.249976,0,0);-ms-transform:matrix(0.196691,-0.002754,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196691,-0.002754,0.003500,0.249976,0,0);}
.m11_c00332{transform:matrix(0.196951,-0.002757,0.003500,0.249976,0,0);-ms-transform:matrix(0.196951,-0.002757,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196951,-0.002757,0.003500,0.249976,0,0);}
.mb9_c00332{transform:matrix(0.197351,-0.002763,0.003500,0.249976,0,0);-ms-transform:matrix(0.197351,-0.002763,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197351,-0.002763,0.003500,0.249976,0,0);}
.m37_c00332{transform:matrix(0.197366,-0.002763,0.003500,0.249976,0,0);-ms-transform:matrix(0.197366,-0.002763,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197366,-0.002763,0.003500,0.249976,0,0);}
.ma8_c00332{transform:matrix(0.197371,-0.002763,0.003500,0.249976,0,0);-ms-transform:matrix(0.197371,-0.002763,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197371,-0.002763,0.003500,0.249976,0,0);}
.m50_c00332{transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);-ms-transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);}
.m5c_c00332{transform:matrix(0.199065,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199065,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199065,-0.002787,0.003500,0.249976,0,0);}
.m8e_c00332{transform:matrix(0.199095,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199095,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199095,-0.002787,0.003500,0.249976,0,0);}
.md4_c00332{transform:matrix(0.199385,-0.002791,0.003500,0.249976,0,0);-ms-transform:matrix(0.199385,-0.002791,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199385,-0.002791,0.003500,0.249976,0,0);}
.m93_c00332{transform:matrix(0.200095,-0.002801,0.003500,0.249976,0,0);-ms-transform:matrix(0.200095,-0.002801,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200095,-0.002801,0.003500,0.249976,0,0);}
.m44_c00332{transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);-ms-transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200150,-0.002802,0.003500,0.249976,0,0);}
.mb0_c00332{transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);-ms-transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200655,-0.002809,0.003500,0.249976,0,0);}
.m39_c00332{transform:matrix(0.201020,-0.002814,0.003500,0.249976,0,0);-ms-transform:matrix(0.201020,-0.002814,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201020,-0.002814,0.003500,0.249976,0,0);}
.m2c_c00332{transform:matrix(0.201075,-0.002815,0.003500,0.249976,0,0);-ms-transform:matrix(0.201075,-0.002815,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201075,-0.002815,0.003500,0.249976,0,0);}
.m7_c00332{transform:matrix(0.201205,-0.002817,0.003500,0.249976,0,0);-ms-transform:matrix(0.201205,-0.002817,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201205,-0.002817,0.003500,0.249976,0,0);}
.m5_c00332{transform:matrix(0.201520,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201520,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201520,-0.002821,0.003500,0.249976,0,0);}
.m62_c00332{transform:matrix(0.201805,-0.002825,0.003500,0.249976,0,0);-ms-transform:matrix(0.201805,-0.002825,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201805,-0.002825,0.003500,0.249976,0,0);}
.md9_c00332{transform:matrix(0.201905,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201905,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201905,-0.002827,0.003500,0.249976,0,0);}
.m4e_c00332{transform:matrix(0.202035,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.202035,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202035,-0.002828,0.003500,0.249976,0,0);}
.mc2_c00332{transform:matrix(0.202265,-0.002832,0.003500,0.249976,0,0);-ms-transform:matrix(0.202265,-0.002832,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202265,-0.002832,0.003500,0.249976,0,0);}
.m1d_c00332{transform:matrix(0.202990,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.202990,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202990,-0.002842,0.003500,0.249976,0,0);}
.m3e_c00332{transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);-ms-transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203135,-0.002844,0.003500,0.249976,0,0);}
.m86_c00332{transform:matrix(0.203290,-0.002846,0.003500,0.249976,0,0);-ms-transform:matrix(0.203290,-0.002846,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203290,-0.002846,0.003500,0.249976,0,0);}
.m3c_c00332{transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);-ms-transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);}
.med_c00332{transform:matrix(0.203430,-0.002848,0.003500,0.249976,0,0);-ms-transform:matrix(0.203430,-0.002848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203430,-0.002848,0.003500,0.249976,0,0);}
.mea_c00332{transform:matrix(0.204015,-0.002856,0.003500,0.249976,0,0);-ms-transform:matrix(0.204015,-0.002856,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204015,-0.002856,0.003500,0.249976,0,0);}
.m24_c00332{transform:matrix(0.204055,-0.002857,0.003500,0.249976,0,0);-ms-transform:matrix(0.204055,-0.002857,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204055,-0.002857,0.003500,0.249976,0,0);}
.me4_c00332{transform:matrix(0.204300,-0.002860,0.003500,0.249976,0,0);-ms-transform:matrix(0.204300,-0.002860,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204300,-0.002860,0.003500,0.249976,0,0);}
.md2_c00332{transform:matrix(0.204890,-0.002868,0.003500,0.249976,0,0);-ms-transform:matrix(0.204890,-0.002868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204890,-0.002868,0.003500,0.249976,0,0);}
.m9f_c00332{transform:matrix(0.204970,-0.002870,0.003500,0.249976,0,0);-ms-transform:matrix(0.204970,-0.002870,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204970,-0.002870,0.003500,0.249976,0,0);}
.m92_c00332{transform:matrix(0.205440,-0.002876,0.003500,0.249976,0,0);-ms-transform:matrix(0.205440,-0.002876,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205440,-0.002876,0.003500,0.249976,0,0);}
.m73_c00332{transform:matrix(0.205480,-0.002877,0.003500,0.249976,0,0);-ms-transform:matrix(0.205480,-0.002877,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205480,-0.002877,0.003500,0.249976,0,0);}
.m26_c00332{transform:matrix(0.205755,-0.002881,0.003500,0.249976,0,0);-ms-transform:matrix(0.205755,-0.002881,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205755,-0.002881,0.003500,0.249976,0,0);}
.me2_c00332{transform:matrix(0.206370,-0.002889,0.003500,0.249976,0,0);-ms-transform:matrix(0.206370,-0.002889,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206370,-0.002889,0.003500,0.249976,0,0);}
.maf_c00332{transform:matrix(0.206570,-0.002892,0.003500,0.249976,0,0);-ms-transform:matrix(0.206570,-0.002892,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206570,-0.002892,0.003500,0.249976,0,0);}
.m2a_c00332{transform:matrix(0.206900,-0.002897,0.003500,0.249976,0,0);-ms-transform:matrix(0.206900,-0.002897,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206900,-0.002897,0.003500,0.249976,0,0);}
.m2e_c00332{transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);-ms-transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207150,-0.002900,0.003500,0.249976,0,0);}
.mbc_c00332{transform:matrix(0.207285,-0.002902,0.003500,0.249976,0,0);-ms-transform:matrix(0.207285,-0.002902,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207285,-0.002902,0.003500,0.249976,0,0);}
.m90_c00332{transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);-ms-transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);}
.m7f_c00332{transform:matrix(0.207750,-0.002908,0.003500,0.249976,0,0);-ms-transform:matrix(0.207750,-0.002908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207750,-0.002908,0.003500,0.249976,0,0);}
.m3b_c00332{transform:matrix(0.208605,-0.002920,0.003500,0.249976,0,0);-ms-transform:matrix(0.208605,-0.002920,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208605,-0.002920,0.003500,0.249976,0,0);}
.m1e_c00332{transform:matrix(0.208700,-0.002922,0.003500,0.249976,0,0);-ms-transform:matrix(0.208700,-0.002922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208700,-0.002922,0.003500,0.249976,0,0);}
.md3_c00332{transform:matrix(0.208705,-0.002922,0.003500,0.249976,0,0);-ms-transform:matrix(0.208705,-0.002922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208705,-0.002922,0.003500,0.249976,0,0);}
.m23_c00332{transform:matrix(0.209155,-0.002928,0.003500,0.249976,0,0);-ms-transform:matrix(0.209155,-0.002928,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209155,-0.002928,0.003500,0.249976,0,0);}
.m76_c00332{transform:matrix(0.209494,-0.002933,0.003500,0.249976,0,0);-ms-transform:matrix(0.209494,-0.002933,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209494,-0.002933,0.003500,0.249976,0,0);}
.m6a_c00332{transform:matrix(0.209559,-0.002934,0.003500,0.249976,0,0);-ms-transform:matrix(0.209559,-0.002934,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209559,-0.002934,0.003500,0.249976,0,0);}
.m83_c00332{transform:matrix(0.209704,-0.002936,0.003500,0.249976,0,0);-ms-transform:matrix(0.209704,-0.002936,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209704,-0.002936,0.003500,0.249976,0,0);}
.m69_c00332{transform:matrix(0.209764,-0.002937,0.003500,0.249976,0,0);-ms-transform:matrix(0.209764,-0.002937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209764,-0.002937,0.003500,0.249976,0,0);}
.m3d_c00332{transform:matrix(0.210304,-0.002944,0.003500,0.249976,0,0);-ms-transform:matrix(0.210304,-0.002944,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210304,-0.002944,0.003500,0.249976,0,0);}
.m52_c00332{transform:matrix(0.211059,-0.002955,0.003500,0.249976,0,0);-ms-transform:matrix(0.211059,-0.002955,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211059,-0.002955,0.003500,0.249976,0,0);}
.m98_c00332{transform:matrix(0.211704,-0.002964,0.003500,0.249976,0,0);-ms-transform:matrix(0.211704,-0.002964,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211704,-0.002964,0.003500,0.249976,0,0);}
.m33_c00332{transform:matrix(0.211924,-0.002967,0.003500,0.249976,0,0);-ms-transform:matrix(0.211924,-0.002967,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211924,-0.002967,0.003500,0.249976,0,0);}
.md8_c00332{transform:matrix(0.211974,-0.002968,0.003500,0.249976,0,0);-ms-transform:matrix(0.211974,-0.002968,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211974,-0.002968,0.003500,0.249976,0,0);}
.m70_c00332{transform:matrix(0.212879,-0.002980,0.003500,0.249976,0,0);-ms-transform:matrix(0.212879,-0.002980,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212879,-0.002980,0.003500,0.249976,0,0);}
.mb2_c00332{transform:matrix(0.213149,-0.002984,0.003500,0.249976,0,0);-ms-transform:matrix(0.213149,-0.002984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213149,-0.002984,0.003500,0.249976,0,0);}
.m8a_c00332{transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);-ms-transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213169,-0.002984,0.003500,0.249976,0,0);}
.md6_c00332{transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);-ms-transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);}
.me5_c00332{transform:matrix(0.214274,-0.003000,0.003500,0.249976,0,0);-ms-transform:matrix(0.214274,-0.003000,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214274,-0.003000,0.003500,0.249976,0,0);}
.m8_c00332{transform:matrix(0.214549,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214549,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214549,-0.003004,0.003500,0.249976,0,0);}
.m7e_c00332{transform:matrix(0.215569,-0.003018,0.003500,0.249976,0,0);-ms-transform:matrix(0.215569,-0.003018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215569,-0.003018,0.003500,0.249976,0,0);}
.mb6_c00332{transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);}
.mcc_c00332{transform:matrix(0.216354,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216354,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216354,-0.003029,0.003500,0.249976,0,0);}
.maa_c00332{transform:matrix(0.216864,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216864,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216864,-0.003036,0.003500,0.249976,0,0);}
.m95_c00332{transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);-ms-transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216979,-0.003038,0.003500,0.249976,0,0);}
.m9b_c00332{transform:matrix(0.218079,-0.003053,0.003500,0.249976,0,0);-ms-transform:matrix(0.218079,-0.003053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218079,-0.003053,0.003500,0.249976,0,0);}
.mb_c00332{transform:matrix(0.218284,-0.003056,0.003500,0.249976,0,0);-ms-transform:matrix(0.218284,-0.003056,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218284,-0.003056,0.003500,0.249976,0,0);}
.mf_c00332{transform:matrix(0.218289,-0.003056,0.003500,0.249976,0,0);-ms-transform:matrix(0.218289,-0.003056,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218289,-0.003056,0.003500,0.249976,0,0);}
.mc7_c00332{transform:matrix(0.218799,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218799,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218799,-0.003063,0.003500,0.249976,0,0);}
.mdc_c00332{transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218819,-0.003063,0.003500,0.249976,0,0);}
.m2d_c00332{transform:matrix(0.218979,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.218979,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218979,-0.003066,0.003500,0.249976,0,0);}
.mdf_c00332{transform:matrix(0.219379,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219379,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219379,-0.003071,0.003500,0.249976,0,0);}
.mc3_c00332{transform:matrix(0.219773,-0.003077,0.003500,0.249976,0,0);-ms-transform:matrix(0.219773,-0.003077,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219773,-0.003077,0.003500,0.249976,0,0);}
.m53_c00332{transform:matrix(0.219908,-0.003079,0.003500,0.249976,0,0);-ms-transform:matrix(0.219908,-0.003079,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219908,-0.003079,0.003500,0.249976,0,0);}
.m30_c00332{transform:matrix(0.220113,-0.003082,0.003500,0.249976,0,0);-ms-transform:matrix(0.220113,-0.003082,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220113,-0.003082,0.003500,0.249976,0,0);}
.mc5_c00332{transform:matrix(0.220263,-0.003084,0.003500,0.249976,0,0);-ms-transform:matrix(0.220263,-0.003084,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220263,-0.003084,0.003500,0.249976,0,0);}
.m32_c00332{transform:matrix(0.220373,-0.003085,0.003500,0.249976,0,0);-ms-transform:matrix(0.220373,-0.003085,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220373,-0.003085,0.003500,0.249976,0,0);}
.mcb_c00332{transform:matrix(0.220688,-0.003090,0.003500,0.249976,0,0);-ms-transform:matrix(0.220688,-0.003090,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220688,-0.003090,0.003500,0.249976,0,0);}
.m20_c00332{transform:matrix(0.220768,-0.003091,0.003500,0.249976,0,0);-ms-transform:matrix(0.220768,-0.003091,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220768,-0.003091,0.003500,0.249976,0,0);}
.mcf_c00332{transform:matrix(0.221458,-0.003100,0.003500,0.249976,0,0);-ms-transform:matrix(0.221458,-0.003100,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221458,-0.003100,0.003500,0.249976,0,0);}
.m4_c00332{transform:matrix(0.221668,-0.003103,0.003500,0.249976,0,0);-ms-transform:matrix(0.221668,-0.003103,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221668,-0.003103,0.003500,0.249976,0,0);}
.me0_c00332{transform:matrix(0.221848,-0.003106,0.003500,0.249976,0,0);-ms-transform:matrix(0.221848,-0.003106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221848,-0.003106,0.003500,0.249976,0,0);}
.m91_c00332{transform:matrix(0.221883,-0.003106,0.003500,0.249976,0,0);-ms-transform:matrix(0.221883,-0.003106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221883,-0.003106,0.003500,0.249976,0,0);}
.m7a_c00332{transform:matrix(0.222218,-0.003111,0.003500,0.249976,0,0);-ms-transform:matrix(0.222218,-0.003111,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222218,-0.003111,0.003500,0.249976,0,0);}
.mc4_c00332{transform:matrix(0.222313,-0.003112,0.003500,0.249976,0,0);-ms-transform:matrix(0.222313,-0.003112,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222313,-0.003112,0.003500,0.249976,0,0);}
.m9a_c00332{transform:matrix(0.223263,-0.003126,0.003500,0.249976,0,0);-ms-transform:matrix(0.223263,-0.003126,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223263,-0.003126,0.003500,0.249976,0,0);}
.m56_c00332{transform:matrix(0.224243,-0.003139,0.003500,0.249976,0,0);-ms-transform:matrix(0.224243,-0.003139,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224243,-0.003139,0.003500,0.249976,0,0);}
.md_c00332{transform:matrix(0.224338,-0.003141,0.003500,0.249976,0,0);-ms-transform:matrix(0.224338,-0.003141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224338,-0.003141,0.003500,0.249976,0,0);}
.m58_c00332{transform:matrix(0.224578,-0.003144,0.003500,0.249976,0,0);-ms-transform:matrix(0.224578,-0.003144,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224578,-0.003144,0.003500,0.249976,0,0);}
.m1_c00332{transform:matrix(0.225518,-0.003157,0.003500,0.249976,0,0);-ms-transform:matrix(0.225518,-0.003157,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225518,-0.003157,0.003500,0.249976,0,0);}
.m55_c00332{transform:matrix(0.225823,-0.003162,0.003500,0.249976,0,0);-ms-transform:matrix(0.225823,-0.003162,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225823,-0.003162,0.003500,0.249976,0,0);}
.m1c_c00332{transform:matrix(0.227218,-0.003181,0.003500,0.249976,0,0);-ms-transform:matrix(0.227218,-0.003181,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227218,-0.003181,0.003500,0.249976,0,0);}
.m8c_c00332{transform:matrix(0.228278,-0.003196,0.003500,0.249976,0,0);-ms-transform:matrix(0.228278,-0.003196,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228278,-0.003196,0.003500,0.249976,0,0);}
.m7c_c00332{transform:matrix(0.228373,-0.003197,0.003500,0.249976,0,0);-ms-transform:matrix(0.228373,-0.003197,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228373,-0.003197,0.003500,0.249976,0,0);}
.me3_c00332{transform:matrix(0.228868,-0.003204,0.003500,0.249976,0,0);-ms-transform:matrix(0.228868,-0.003204,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228868,-0.003204,0.003500,0.249976,0,0);}
.m81_c00332{transform:matrix(0.230117,-0.003222,0.003500,0.249976,0,0);-ms-transform:matrix(0.230117,-0.003222,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230117,-0.003222,0.003500,0.249976,0,0);}
.mbd_c00332{transform:matrix(0.230432,-0.003226,0.003500,0.249976,0,0);-ms-transform:matrix(0.230432,-0.003226,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230432,-0.003226,0.003500,0.249976,0,0);}
.mde_c00332{transform:matrix(0.230887,-0.003232,0.003500,0.249976,0,0);-ms-transform:matrix(0.230887,-0.003232,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230887,-0.003232,0.003500,0.249976,0,0);}
.mbf_c00332{transform:matrix(0.231937,-0.003247,0.003500,0.249976,0,0);-ms-transform:matrix(0.231937,-0.003247,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231937,-0.003247,0.003500,0.249976,0,0);}
.m89_c00332{transform:matrix(0.232802,-0.003259,0.003500,0.249976,0,0);-ms-transform:matrix(0.232802,-0.003259,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232802,-0.003259,0.003500,0.249976,0,0);}
.m1b_c00332{transform:matrix(0.233212,-0.003265,0.003500,0.249976,0,0);-ms-transform:matrix(0.233212,-0.003265,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233212,-0.003265,0.003500,0.249976,0,0);}
.md5_c00332{transform:matrix(0.233572,-0.003270,0.003500,0.249976,0,0);-ms-transform:matrix(0.233572,-0.003270,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233572,-0.003270,0.003500,0.249976,0,0);}
.md1_c00332{transform:matrix(0.234492,-0.003283,0.003500,0.249976,0,0);-ms-transform:matrix(0.234492,-0.003283,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234492,-0.003283,0.003500,0.249976,0,0);}
.m94_c00332{transform:matrix(0.235097,-0.003291,0.003500,0.249976,0,0);-ms-transform:matrix(0.235097,-0.003291,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235097,-0.003291,0.003500,0.249976,0,0);}
.m36_c00332{transform:matrix(0.236022,-0.003304,0.003500,0.249976,0,0);-ms-transform:matrix(0.236022,-0.003304,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236022,-0.003304,0.003500,0.249976,0,0);}
.m31_c00332{transform:matrix(0.236452,-0.003310,0.003500,0.249976,0,0);-ms-transform:matrix(0.236452,-0.003310,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236452,-0.003310,0.003500,0.249976,0,0);}
.mc0_c00332{transform:matrix(0.237937,-0.003331,0.003500,0.249976,0,0);-ms-transform:matrix(0.237937,-0.003331,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237937,-0.003331,0.003500,0.249976,0,0);}
.mcd_c00332{transform:matrix(0.239507,-0.003353,0.003500,0.249976,0,0);-ms-transform:matrix(0.239507,-0.003353,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239507,-0.003353,0.003500,0.249976,0,0);}
.mee_c00332{transform:matrix(0.240291,-0.003364,0.003500,0.249976,0,0);-ms-transform:matrix(0.240291,-0.003364,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240291,-0.003364,0.003500,0.249976,0,0);}
.m7b_c00332{transform:matrix(0.240951,-0.003373,0.003500,0.249976,0,0);-ms-transform:matrix(0.240951,-0.003373,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240951,-0.003373,0.003500,0.249976,0,0);}
.mc9_c00332{transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);-ms-transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);}
.md7_c00332{transform:matrix(0.241671,-0.003383,0.003500,0.249976,0,0);-ms-transform:matrix(0.241671,-0.003383,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241671,-0.003383,0.003500,0.249976,0,0);}
.mc6_c00332{transform:matrix(0.241751,-0.003385,0.003500,0.249976,0,0);-ms-transform:matrix(0.241751,-0.003385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241751,-0.003385,0.003500,0.249976,0,0);}
.mbe_c00332{transform:matrix(0.242771,-0.003399,0.003500,0.249976,0,0);-ms-transform:matrix(0.242771,-0.003399,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242771,-0.003399,0.003500,0.249976,0,0);}
.mdd_c00332{transform:matrix(0.244521,-0.003423,0.003500,0.249976,0,0);-ms-transform:matrix(0.244521,-0.003423,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244521,-0.003423,0.003500,0.249976,0,0);}
.m3_c00332{transform:matrix(0.244896,-0.003429,0.003500,0.249976,0,0);-ms-transform:matrix(0.244896,-0.003429,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244896,-0.003429,0.003500,0.249976,0,0);}
.mca_c00332{transform:matrix(0.247531,-0.003465,0.003500,0.249976,0,0);-ms-transform:matrix(0.247531,-0.003465,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247531,-0.003465,0.003500,0.249976,0,0);}
.me7_c00332{transform:matrix(0.253985,-0.003556,0.003500,0.249976,0,0);-ms-transform:matrix(0.253985,-0.003556,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253985,-0.003556,0.003500,0.249976,0,0);}
.me1_c00332{transform:matrix(0.257120,-0.003600,0.003500,0.249976,0,0);-ms-transform:matrix(0.257120,-0.003600,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257120,-0.003600,0.003500,0.249976,0,0);}
.me8_c00332{transform:matrix(0.338692,-0.004742,0.003500,0.249976,0,0);-ms-transform:matrix(0.338692,-0.004742,0.003500,0.249976,0,0);-webkit-transform:matrix(0.338692,-0.004742,0.003500,0.249976,0,0);}
.m80_c00332{transform:matrix(0.385652,-0.005399,0.003500,0.249976,0,0);-ms-transform:matrix(0.385652,-0.005399,0.003500,0.249976,0,0);-webkit-transform:matrix(0.385652,-0.005399,0.003500,0.249976,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:0.000000px;}
.fc0_c00332{color:transparent;}
.fsd_c00332{font-size:55.655453px;}
.fs5_c00332{font-size:57.755659px;}
.fs1_c00332{font-size:58.805762px;}
.fsb_c00332{font-size:59.855865px;}
.fs4_c00332{font-size:60.905968px;}
.fs2_c00332{font-size:61.956071px;}
.fs9_c00332{font-size:63.006174px;}
.fs6_c00332{font-size:64.056277px;}
.fs8_c00332{font-size:67.206585px;}
.fs7_c00332{font-size:68.256688px;}
.fs3_c00332{font-size:69.306791px;}
.fsa_c00332{font-size:70.356894px;}
.fsc_c00332{font-size:71.406997px;}
.fse_c00332{font-size:72.457100px;}
.fs0_c00332{font-size:87.150000px;}
.y0_c00332{bottom:0.000000px;}
.yf9_c00332{bottom:32.625756px;}
.yf8_c00332{bottom:32.625777px;}
.yf6_c00332{bottom:32.625840px;}
.yf7_c00332{bottom:32.626419px;}
.yfa_c00332{bottom:32.626452px;}
.yfb_c00332{bottom:32.626890px;}
.yfc_c00332{bottom:32.627085px;}
.yf5_c00332{bottom:50.504931px;}
.yee_c00332{bottom:50.505129px;}
.yf1_c00332{bottom:50.505201px;}
.yf4_c00332{bottom:50.505333px;}
.yef_c00332{bottom:50.505447px;}
.yf2_c00332{bottom:50.505579px;}
.yf3_c00332{bottom:50.505798px;}
.yf0_c00332{bottom:50.505945px;}
.yed_c00332{bottom:66.876585px;}
.yea_c00332{bottom:66.876795px;}
.yec_c00332{bottom:66.876906px;}
.yeb_c00332{bottom:66.877110px;}
.ye9_c00332{bottom:66.877161px;}
.ye8_c00332{bottom:66.877863px;}
.ye7_c00332{bottom:85.479618px;}
.ye6_c00332{bottom:85.479621px;}
.ye5_c00332{bottom:85.479666px;}
.ye4_c00332{bottom:85.479948px;}
.ye3_c00332{bottom:85.480512px;}
.ye2_c00332{bottom:85.480695px;}
.ye1_c00332{bottom:85.480797px;}
.ydc_c00332{bottom:99.861786px;}
.ydd_c00332{bottom:100.520841px;}
.yde_c00332{bottom:101.404878px;}
.ydf_c00332{bottom:101.737578px;}
.ye0_c00332{bottom:102.482253px;}
.yd6_c00332{bottom:117.273528px;}
.yd4_c00332{bottom:117.273555px;}
.yd5_c00332{bottom:117.273711px;}
.yd7_c00332{bottom:117.274005px;}
.yd8_c00332{bottom:117.274044px;}
.yd9_c00332{bottom:117.274521px;}
.yda_c00332{bottom:117.274638px;}
.ydb_c00332{bottom:117.275016px;}
.ycf_c00332{bottom:135.015135px;}
.yce_c00332{bottom:135.015159px;}
.yd3_c00332{bottom:135.015384px;}
.ycd_c00332{bottom:135.015480px;}
.yd2_c00332{bottom:135.015525px;}
.yd0_c00332{bottom:135.015573px;}
.yd1_c00332{bottom:135.015630px;}
.ycc_c00332{bottom:135.016041px;}
.yca_c00332{bottom:152.321130px;}
.yc8_c00332{bottom:152.321598px;}
.ycb_c00332{bottom:152.321745px;}
.yc9_c00332{bottom:152.321775px;}
.yc7_c00332{bottom:152.322342px;}
.yc6_c00332{bottom:152.322684px;}
.yc5_c00332{bottom:169.337445px;}
.yc4_c00332{bottom:169.337508px;}
.yc3_c00332{bottom:169.338051px;}
.yc2_c00332{bottom:169.338474px;}
.yc1_c00332{bottom:169.339119px;}
.yc0_c00332{bottom:169.339803px;}
.ybc_c00332{bottom:188.597076px;}
.yba_c00332{bottom:188.597199px;}
.ybd_c00332{bottom:188.597334px;}
.ybb_c00332{bottom:188.597538px;}
.yb9_c00332{bottom:188.597583px;}
.ybe_c00332{bottom:188.597670px;}
.ybf_c00332{bottom:188.598366px;}
.yb8_c00332{bottom:202.692297px;}
.yb3_c00332{bottom:202.692567px;}
.yb4_c00332{bottom:202.692663px;}
.yb7_c00332{bottom:202.692798px;}
.yad_c00332{bottom:202.692894px;}
.yae_c00332{bottom:202.692933px;}
.yb0_c00332{bottom:202.692951px;}
.yb6_c00332{bottom:202.692999px;}
.yb2_c00332{bottom:202.693068px;}
.yb1_c00332{bottom:202.693269px;}
.yb5_c00332{bottom:202.693341px;}
.yaf_c00332{bottom:202.693512px;}
.yaa_c00332{bottom:221.979462px;}
.yac_c00332{bottom:221.979498px;}
.ya9_c00332{bottom:221.979606px;}
.yab_c00332{bottom:221.979720px;}
.ya8_c00332{bottom:221.980209px;}
.ya6_c00332{bottom:221.980575px;}
.ya7_c00332{bottom:221.980791px;}
.ya2_c00332{bottom:237.881250px;}
.ya3_c00332{bottom:237.881286px;}
.ya1_c00332{bottom:237.881712px;}
.ya4_c00332{bottom:237.881985px;}
.ya5_c00332{bottom:237.882144px;}
.ya0_c00332{bottom:237.882195px;}
.y9f_c00332{bottom:237.882396px;}
.y9e_c00332{bottom:237.882621px;}
.y9d_c00332{bottom:237.882945px;}
.y9a_c00332{bottom:255.154293px;}
.y99_c00332{bottom:255.154335px;}
.y97_c00332{bottom:255.154500px;}
.y9b_c00332{bottom:255.154572px;}
.y98_c00332{bottom:255.154719px;}
.y9c_c00332{bottom:255.154791px;}
.y96_c00332{bottom:255.154842px;}
.y95_c00332{bottom:255.155085px;}
.y92_c00332{bottom:272.436813px;}
.y93_c00332{bottom:272.436852px;}
.y94_c00332{bottom:272.436888px;}
.y91_c00332{bottom:272.437476px;}
.y8c_c00332{bottom:272.437647px;}
.y90_c00332{bottom:272.438118px;}
.y8d_c00332{bottom:272.438265px;}
.y8f_c00332{bottom:272.438559px;}
.y8e_c00332{bottom:272.438763px;}
.y84_c00332{bottom:289.597926px;}
.y85_c00332{bottom:289.598025px;}
.y86_c00332{bottom:289.598481px;}
.y89_c00332{bottom:289.598736px;}
.y87_c00332{bottom:289.598799px;}
.y8a_c00332{bottom:289.598811px;}
.y88_c00332{bottom:289.598937px;}
.y8b_c00332{bottom:289.599129px;}
.y82_c00332{bottom:307.121832px;}
.y7b_c00332{bottom:307.122009px;}
.y7d_c00332{bottom:307.122084px;}
.y7c_c00332{bottom:307.122105px;}
.y81_c00332{bottom:307.122354px;}
.y83_c00332{bottom:307.122471px;}
.y7e_c00332{bottom:307.122723px;}
.y80_c00332{bottom:307.122738px;}
.y7f_c00332{bottom:307.123422px;}
.y72_c00332{bottom:324.190383px;}
.y71_c00332{bottom:324.190524px;}
.y73_c00332{bottom:324.190542px;}
.y7a_c00332{bottom:324.190650px;}
.y70_c00332{bottom:324.190767px;}
.y74_c00332{bottom:324.190860px;}
.y79_c00332{bottom:324.191151px;}
.y77_c00332{bottom:324.191334px;}
.y78_c00332{bottom:324.191412px;}
.y75_c00332{bottom:324.191559px;}
.y76_c00332{bottom:324.192018px;}
.y68_c00332{bottom:341.105145px;}
.y69_c00332{bottom:341.105742px;}
.y6a_c00332{bottom:341.105778px;}
.y6b_c00332{bottom:341.105817px;}
.y6c_c00332{bottom:341.105952px;}
.y6f_c00332{bottom:341.106147px;}
.y6d_c00332{bottom:341.106390px;}
.y6e_c00332{bottom:341.106669px;}
.y5f_c00332{bottom:357.872400px;}
.y61_c00332{bottom:357.872895px;}
.y60_c00332{bottom:357.872916px;}
.y62_c00332{bottom:357.873513px;}
.y63_c00332{bottom:357.873792px;}
.y65_c00332{bottom:357.874245px;}
.y64_c00332{bottom:357.874329px;}
.y67_c00332{bottom:357.874383px;}
.y66_c00332{bottom:357.874944px;}
.y5e_c00332{bottom:374.069913px;}
.y5d_c00332{bottom:374.069934px;}
.y5a_c00332{bottom:374.070162px;}
.y5c_c00332{bottom:374.070438px;}
.y59_c00332{bottom:374.070504px;}
.y58_c00332{bottom:374.070765px;}
.y5b_c00332{bottom:374.070900px;}
.y57_c00332{bottom:374.071071px;}
.y54_c00332{bottom:390.243255px;}
.y51_c00332{bottom:390.243522px;}
.y53_c00332{bottom:390.243876px;}
.y52_c00332{bottom:390.243921px;}
.y55_c00332{bottom:390.243948px;}
.y56_c00332{bottom:390.244383px;}
.y4c_c00332{bottom:406.837533px;}
.y4a_c00332{bottom:406.837557px;}
.y4b_c00332{bottom:406.837875px;}
.y4d_c00332{bottom:406.838109px;}
.y4e_c00332{bottom:406.838745px;}
.y4f_c00332{bottom:406.839363px;}
.y50_c00332{bottom:406.839459px;}
.y43_c00332{bottom:423.459624px;}
.y42_c00332{bottom:423.459729px;}
.y40_c00332{bottom:423.459792px;}
.y41_c00332{bottom:423.459951px;}
.y44_c00332{bottom:423.460263px;}
.y45_c00332{bottom:423.460662px;}
.y46_c00332{bottom:423.461259px;}
.y49_c00332{bottom:423.461574px;}
.y47_c00332{bottom:423.461697px;}
.y48_c00332{bottom:423.461775px;}
.y3f_c00332{bottom:440.437293px;}
.y39_c00332{bottom:440.437350px;}
.y3d_c00332{bottom:440.437560px;}
.y3e_c00332{bottom:440.437818px;}
.y3a_c00332{bottom:440.437947px;}
.y3b_c00332{bottom:440.437965px;}
.y3c_c00332{bottom:440.438124px;}
.y34_c00332{bottom:457.625151px;}
.y35_c00332{bottom:457.625466px;}
.y33_c00332{bottom:457.625472px;}
.y36_c00332{bottom:457.625862px;}
.y38_c00332{bottom:457.625913px;}
.y37_c00332{bottom:457.626240px;}
.y2b_c00332{bottom:472.765743px;}
.y2c_c00332{bottom:472.972251px;}
.y2d_c00332{bottom:473.210928px;}
.y2e_c00332{bottom:473.780646px;}
.y2f_c00332{bottom:474.224034px;}
.y30_c00332{bottom:474.443733px;}
.y31_c00332{bottom:475.210494px;}
.y32_c00332{bottom:475.925718px;}
.y22_c00332{bottom:490.046019px;}
.y23_c00332{bottom:490.328304px;}
.y24_c00332{bottom:490.592787px;}
.y25_c00332{bottom:491.328534px;}
.y26_c00332{bottom:491.638452px;}
.y27_c00332{bottom:491.817189px;}
.y28_c00332{bottom:492.485391px;}
.y29_c00332{bottom:492.693810px;}
.y2a_c00332{bottom:492.872253px;}
.y1b_c00332{bottom:507.866385px;}
.y1c_c00332{bottom:508.133484px;}
.y1d_c00332{bottom:508.855629px;}
.y1e_c00332{bottom:509.559552px;}
.y1f_c00332{bottom:510.274776px;}
.y20_c00332{bottom:510.630939px;}
.y21_c00332{bottom:510.848484px;}
.y14_c00332{bottom:524.606970px;}
.y15_c00332{bottom:525.269340px;}
.y16_c00332{bottom:525.642528px;}
.y17_c00332{bottom:526.541166px;}
.y18_c00332{bottom:526.805145px;}
.y19_c00332{bottom:527.317983px;}
.y1a_c00332{bottom:527.634057px;}
.yc_c00332{bottom:541.350273px;}
.yd_c00332{bottom:541.651962px;}
.ye_c00332{bottom:542.289372px;}
.yf_c00332{bottom:542.454687px;}
.y10_c00332{bottom:543.283830px;}
.y11_c00332{bottom:543.844143px;}
.y12_c00332{bottom:544.073208px;}
.y13_c00332{bottom:545.009439px;}
.y2_c00332{bottom:558.361500px;}
.y3_c00332{bottom:558.793008px;}
.y4_c00332{bottom:559.332603px;}
.y5_c00332{bottom:559.567950px;}
.y6_c00332{bottom:560.169075px;}
.y7_c00332{bottom:560.717217px;}
.y8_c00332{bottom:561.038496px;}
.y9_c00332{bottom:561.677463px;}
.ya_c00332{bottom:561.960081px;}
.yb_c00332{bottom:562.236945px;}
.y1_c00332{bottom:572.797500px;}
.hf_c00332{height:55.655453px;}
.h7_c00332{height:57.755659px;}
.h3_c00332{height:58.805762px;}
.hd_c00332{height:59.855865px;}
.h6_c00332{height:60.905968px;}
.h4_c00332{height:61.956071px;}
.hb_c00332{height:63.006174px;}
.h8_c00332{height:64.056277px;}
.ha_c00332{height:67.206585px;}
.h9_c00332{height:68.256688px;}
.h5_c00332{height:69.306791px;}
.hc_c00332{height:70.356894px;}
.he_c00332{height:71.406997px;}
.h10_c00332{height:72.457100px;}
.h2_c00332{height:87.150000px;}
.h0_c00332{height:613.170000px;}
.h1_c00332{height:613.500000px;}
.w0_c00332{width:359.100000px;}
.w1_c00332{width:359.250000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:26.862000px;}
.x4d_c00332{left:28.083192px;}
.x55_c00332{left:29.434062px;}
.x32_c00332{left:32.129286px;}
.x62_c00332{left:37.263423px;}
.x71_c00332{left:38.481015px;}
.x29_c00332{left:44.822052px;}
.x23_c00332{left:46.257516px;}
.xc_c00332{left:50.383497px;}
.x16_c00332{left:51.425868px;}
.x1c_c00332{left:53.055411px;}
.x51_c00332{left:54.817119px;}
.x75_c00332{left:56.429328px;}
.x3_c00332{left:57.684000px;}
.x6c_c00332{left:60.755076px;}
.x6e_c00332{left:62.913252px;}
.x38_c00332{left:64.802850px;}
.x7a_c00332{left:66.688896px;}
.x24_c00332{left:67.913919px;}
.x63_c00332{left:70.206870px;}
.x33_c00332{left:72.632724px;}
.x44_c00332{left:73.715166px;}
.x56_c00332{left:75.068508px;}
.x1d_c00332{left:77.090919px;}
.x12_c00332{left:78.395298px;}
.x2c_c00332{left:80.733663px;}
.x4b_c00332{left:82.897143px;}
.x64_c00332{left:85.598394px;}
.x40_c00332{left:86.674011px;}
.x5b_c00332{left:87.761259px;}
.x39_c00332{left:89.104617px;}
.x7b_c00332{left:91.800810px;}
.x67_c00332{left:94.779495px;}
.x4_c00332{left:96.226500px;}
.x72_c00332{left:98.416035px;}
.xd_c00332{left:99.449190px;}
.x76_c00332{left:102.603879px;}
.x13_c00332{left:107.087697px;}
.x2d_c00332{left:108.276060px;}
.x68_c00332{left:111.521271px;}
.x5_c00332{left:113.037000px;}
.x5f_c00332{left:115.031193px;}
.x17_c00332{left:117.046119px;}
.x25_c00332{left:119.753103px;}
.x41_c00332{left:126.367281px;}
.x45_c00332{left:128.799960px;}
.x2e_c00332{left:130.148844px;}
.x3e_c00332{left:131.498073px;}
.x57_c00332{left:135.285810px;}
.x49_c00332{left:136.901310px;}
.x3c_c00332{left:141.220104px;}
.x42_c00332{left:142.568952px;}
.x1e_c00332{left:144.004233px;}
.x4e_c00332{left:145.275645px;}
.x34_c00332{left:146.889777px;}
.x3a_c00332{left:149.050356px;}
.x6_c00332{left:155.974500px;}
.x1_c00332{left:157.680000px;}
.x26_c00332{left:159.996783px;}
.x52_c00332{left:162.827787px;}
.x69_c00332{left:164.445645px;}
.x77_c00332{left:165.790269px;}
.x6b_c00332{left:168.225957px;}
.x3f_c00332{left:169.302486px;}
.x1f_c00332{left:172.142409px;}
.x2a_c00332{left:174.433941px;}
.xe_c00332{left:175.947261px;}
.x7c_c00332{left:177.398589px;}
.x73_c00332{left:178.814916px;}
.x27_c00332{left:179.976123px;}
.x18_c00332{left:181.043307px;}
.x6f_c00332{left:184.962996px;}
.x2f_c00332{left:186.583911px;}
.x20_c00332{left:188.338581px;}
.x7d_c00332{left:189.820782px;}
.x53_c00332{left:191.180352px;}
.x4f_c00332{left:192.530406px;}
.x7_c00332{left:195.127500px;}
.x14_c00332{left:196.454436px;}
.x2b_c00332{left:198.465645px;}
.x58_c00332{left:200.092515px;}
.x74_c00332{left:209.116197px;}
.x65_c00332{left:212.781321px;}
.x79_c00332{left:214.393182px;}
.x30_c00332{left:216.286728px;}
.x8_c00332{left:218.076000px;}
.xf_c00332{left:219.077370px;}
.x7e_c00332{left:221.143914px;}
.x35_c00332{left:223.307229px;}
.x60_c00332{left:224.392134px;}
.x59_c00332{left:227.094807px;}
.x6a_c00332{left:228.982287px;}
.x46_c00332{left:232.761330px;}
.x10_c00332{left:236.725122px;}
.x5c_c00332{left:239.514516px;}
.x3d_c00332{left:243.289596px;}
.x19_c00332{left:246.062037px;}
.x21_c00332{left:249.034122px;}
.x54_c00332{left:253.826637px;}
.x47_c00332{left:257.333139px;}
.x5a_c00332{left:258.958044px;}
.x15_c00332{left:260.163318px;}
.x36_c00332{left:261.381684px;}
.x9_c00332{left:263.716500px;}
.x22_c00332{left:267.993420px;}
.x4a_c00332{left:271.645707px;}
.x48_c00332{left:273.534810px;}
.x50_c00332{left:275.159097px;}
.x66_c00332{left:277.317963px;}
.x1a_c00332{left:278.467902px;}
.x61_c00332{left:279.476928px;}
.x43_c00332{left:282.714399px;}
.xa_c00332{left:283.903500px;}
.x37_c00332{left:289.464186px;}
.x4c_c00332{left:292.168656px;}
.x5d_c00332{left:294.599310px;}
.x1b_c00332{left:298.186221px;}
.x31_c00332{left:300.265692px;}
.x6d_c00332{left:301.616784px;}
.xb_c00332{left:303.679500px;}
.x3b_c00332{left:304.855869px;}
.x11_c00332{left:308.742630px;}
.x70_c00332{left:309.985482px;}
.x28_c00332{left:314.659272px;}
.x78_c00332{left:319.975488px;}
.x5e_c00332{left:329.703177px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.fsd_c00332{font-size:49.471514pt;}
.fs5_c00332{font-size:51.338364pt;}
.fs1_c00332{font-size:52.271789pt;}
.fsb_c00332{font-size:53.205213pt;}
.fs4_c00332{font-size:54.138638pt;}
.fs2_c00332{font-size:55.072063pt;}
.fs9_c00332{font-size:56.005488pt;}
.fs6_c00332{font-size:56.938913pt;}
.fs8_c00332{font-size:59.739187pt;}
.fs7_c00332{font-size:60.672612pt;}
.fs3_c00332{font-size:61.606037pt;}
.fsa_c00332{font-size:62.539461pt;}
.fsc_c00332{font-size:63.472886pt;}
.fse_c00332{font-size:64.406311pt;}
.fs0_c00332{font-size:77.466667pt;}
.y0_c00332{bottom:0.000000pt;}
.yf9_c00332{bottom:29.000672pt;}
.yf8_c00332{bottom:29.000691pt;}
.yf6_c00332{bottom:29.000747pt;}
.yf7_c00332{bottom:29.001261pt;}
.yfa_c00332{bottom:29.001291pt;}
.yfb_c00332{bottom:29.001680pt;}
.yfc_c00332{bottom:29.001853pt;}
.yf5_c00332{bottom:44.893272pt;}
.yee_c00332{bottom:44.893448pt;}
.yf1_c00332{bottom:44.893512pt;}
.yf4_c00332{bottom:44.893629pt;}
.yef_c00332{bottom:44.893731pt;}
.yf2_c00332{bottom:44.893848pt;}
.yf3_c00332{bottom:44.894043pt;}
.yf0_c00332{bottom:44.894173pt;}
.yed_c00332{bottom:59.445853pt;}
.yea_c00332{bottom:59.446040pt;}
.yec_c00332{bottom:59.446139pt;}
.yeb_c00332{bottom:59.446320pt;}
.ye9_c00332{bottom:59.446365pt;}
.ye8_c00332{bottom:59.446989pt;}
.ye7_c00332{bottom:75.981883pt;}
.ye6_c00332{bottom:75.981885pt;}
.ye5_c00332{bottom:75.981925pt;}
.ye4_c00332{bottom:75.982176pt;}
.ye3_c00332{bottom:75.982677pt;}
.ye2_c00332{bottom:75.982840pt;}
.ye1_c00332{bottom:75.982931pt;}
.ydc_c00332{bottom:88.766032pt;}
.ydd_c00332{bottom:89.351859pt;}
.yde_c00332{bottom:90.137669pt;}
.ydf_c00332{bottom:90.433403pt;}
.ye0_c00332{bottom:91.095336pt;}
.yd6_c00332{bottom:104.243136pt;}
.yd4_c00332{bottom:104.243160pt;}
.yd5_c00332{bottom:104.243299pt;}
.yd7_c00332{bottom:104.243560pt;}
.yd8_c00332{bottom:104.243595pt;}
.yd9_c00332{bottom:104.244019pt;}
.yda_c00332{bottom:104.244123pt;}
.ydb_c00332{bottom:104.244459pt;}
.ycf_c00332{bottom:120.013453pt;}
.yce_c00332{bottom:120.013475pt;}
.yd3_c00332{bottom:120.013675pt;}
.ycd_c00332{bottom:120.013760pt;}
.yd2_c00332{bottom:120.013800pt;}
.yd0_c00332{bottom:120.013843pt;}
.yd1_c00332{bottom:120.013893pt;}
.ycc_c00332{bottom:120.014259pt;}
.yca_c00332{bottom:135.396560pt;}
.yc8_c00332{bottom:135.396976pt;}
.ycb_c00332{bottom:135.397107pt;}
.yc9_c00332{bottom:135.397133pt;}
.yc7_c00332{bottom:135.397637pt;}
.yc6_c00332{bottom:135.397941pt;}
.yc5_c00332{bottom:150.522173pt;}
.yc4_c00332{bottom:150.522229pt;}
.yc3_c00332{bottom:150.522712pt;}
.yc2_c00332{bottom:150.523088pt;}
.yc1_c00332{bottom:150.523661pt;}
.yc0_c00332{bottom:150.524269pt;}
.ybc_c00332{bottom:167.641845pt;}
.yba_c00332{bottom:167.641955pt;}
.ybd_c00332{bottom:167.642075pt;}
.ybb_c00332{bottom:167.642256pt;}
.yb9_c00332{bottom:167.642296pt;}
.ybe_c00332{bottom:167.642373pt;}
.ybf_c00332{bottom:167.642992pt;}
.yb8_c00332{bottom:180.170931pt;}
.yb3_c00332{bottom:180.171171pt;}
.yb4_c00332{bottom:180.171256pt;}
.yb7_c00332{bottom:180.171376pt;}
.yad_c00332{bottom:180.171461pt;}
.yae_c00332{bottom:180.171496pt;}
.yb0_c00332{bottom:180.171512pt;}
.yb6_c00332{bottom:180.171555pt;}
.yb2_c00332{bottom:180.171616pt;}
.yb1_c00332{bottom:180.171795pt;}
.yb5_c00332{bottom:180.171859pt;}
.yaf_c00332{bottom:180.172011pt;}
.yaa_c00332{bottom:197.315077pt;}
.yac_c00332{bottom:197.315109pt;}
.ya9_c00332{bottom:197.315205pt;}
.yab_c00332{bottom:197.315307pt;}
.ya8_c00332{bottom:197.315741pt;}
.ya6_c00332{bottom:197.316067pt;}
.ya7_c00332{bottom:197.316259pt;}
.ya2_c00332{bottom:211.450000pt;}
.ya3_c00332{bottom:211.450032pt;}
.ya1_c00332{bottom:211.450411pt;}
.ya4_c00332{bottom:211.450653pt;}
.ya5_c00332{bottom:211.450795pt;}
.ya0_c00332{bottom:211.450840pt;}
.y9f_c00332{bottom:211.451019pt;}
.y9e_c00332{bottom:211.451219pt;}
.y9d_c00332{bottom:211.451507pt;}
.y9a_c00332{bottom:226.803816pt;}
.y99_c00332{bottom:226.803853pt;}
.y97_c00332{bottom:226.804000pt;}
.y9b_c00332{bottom:226.804064pt;}
.y98_c00332{bottom:226.804195pt;}
.y9c_c00332{bottom:226.804259pt;}
.y96_c00332{bottom:226.804304pt;}
.y95_c00332{bottom:226.804520pt;}
.y92_c00332{bottom:242.166056pt;}
.y93_c00332{bottom:242.166091pt;}
.y94_c00332{bottom:242.166123pt;}
.y91_c00332{bottom:242.166645pt;}
.y8c_c00332{bottom:242.166797pt;}
.y90_c00332{bottom:242.167216pt;}
.y8d_c00332{bottom:242.167347pt;}
.y8f_c00332{bottom:242.167608pt;}
.y8e_c00332{bottom:242.167789pt;}
.y84_c00332{bottom:257.420379pt;}
.y85_c00332{bottom:257.420467pt;}
.y86_c00332{bottom:257.420872pt;}
.y89_c00332{bottom:257.421099pt;}
.y87_c00332{bottom:257.421155pt;}
.y8a_c00332{bottom:257.421165pt;}
.y88_c00332{bottom:257.421277pt;}
.y8b_c00332{bottom:257.421448pt;}
.y82_c00332{bottom:272.997184pt;}
.y7b_c00332{bottom:272.997341pt;}
.y7d_c00332{bottom:272.997408pt;}
.y7c_c00332{bottom:272.997427pt;}
.y81_c00332{bottom:272.997648pt;}
.y83_c00332{bottom:272.997752pt;}
.y7e_c00332{bottom:272.997976pt;}
.y80_c00332{bottom:272.997989pt;}
.y7f_c00332{bottom:272.998597pt;}
.y72_c00332{bottom:288.169229pt;}
.y71_c00332{bottom:288.169355pt;}
.y73_c00332{bottom:288.169371pt;}
.y7a_c00332{bottom:288.169467pt;}
.y70_c00332{bottom:288.169571pt;}
.y74_c00332{bottom:288.169653pt;}
.y79_c00332{bottom:288.169912pt;}
.y77_c00332{bottom:288.170075pt;}
.y78_c00332{bottom:288.170144pt;}
.y75_c00332{bottom:288.170275pt;}
.y76_c00332{bottom:288.170683pt;}
.y68_c00332{bottom:303.204573pt;}
.y69_c00332{bottom:303.205104pt;}
.y6a_c00332{bottom:303.205136pt;}
.y6b_c00332{bottom:303.205171pt;}
.y6c_c00332{bottom:303.205291pt;}
.y6f_c00332{bottom:303.205464pt;}
.y6d_c00332{bottom:303.205680pt;}
.y6e_c00332{bottom:303.205928pt;}
.y5f_c00332{bottom:318.108800pt;}
.y61_c00332{bottom:318.109240pt;}
.y60_c00332{bottom:318.109259pt;}
.y62_c00332{bottom:318.109789pt;}
.y63_c00332{bottom:318.110037pt;}
.y65_c00332{bottom:318.110440pt;}
.y64_c00332{bottom:318.110515pt;}
.y67_c00332{bottom:318.110563pt;}
.y66_c00332{bottom:318.111061pt;}
.y5e_c00332{bottom:332.506589pt;}
.y5d_c00332{bottom:332.506608pt;}
.y5a_c00332{bottom:332.506811pt;}
.y5c_c00332{bottom:332.507056pt;}
.y59_c00332{bottom:332.507115pt;}
.y58_c00332{bottom:332.507347pt;}
.y5b_c00332{bottom:332.507467pt;}
.y57_c00332{bottom:332.507619pt;}
.y54_c00332{bottom:346.882893pt;}
.y51_c00332{bottom:346.883131pt;}
.y53_c00332{bottom:346.883445pt;}
.y52_c00332{bottom:346.883485pt;}
.y55_c00332{bottom:346.883509pt;}
.y56_c00332{bottom:346.883896pt;}
.y4c_c00332{bottom:361.633363pt;}
.y4a_c00332{bottom:361.633384pt;}
.y4b_c00332{bottom:361.633667pt;}
.y4d_c00332{bottom:361.633875pt;}
.y4e_c00332{bottom:361.634440pt;}
.y4f_c00332{bottom:361.634989pt;}
.y50_c00332{bottom:361.635075pt;}
.y43_c00332{bottom:376.408555pt;}
.y42_c00332{bottom:376.408648pt;}
.y40_c00332{bottom:376.408704pt;}
.y41_c00332{bottom:376.408845pt;}
.y44_c00332{bottom:376.409123pt;}
.y45_c00332{bottom:376.409477pt;}
.y46_c00332{bottom:376.410008pt;}
.y49_c00332{bottom:376.410288pt;}
.y47_c00332{bottom:376.410397pt;}
.y48_c00332{bottom:376.410467pt;}
.y3f_c00332{bottom:391.499816pt;}
.y39_c00332{bottom:391.499867pt;}
.y3d_c00332{bottom:391.500053pt;}
.y3e_c00332{bottom:391.500283pt;}
.y3a_c00332{bottom:391.500397pt;}
.y3b_c00332{bottom:391.500413pt;}
.y3c_c00332{bottom:391.500555pt;}
.y34_c00332{bottom:406.777912pt;}
.y35_c00332{bottom:406.778192pt;}
.y33_c00332{bottom:406.778197pt;}
.y36_c00332{bottom:406.778544pt;}
.y38_c00332{bottom:406.778589pt;}
.y37_c00332{bottom:406.778880pt;}
.y2b_c00332{bottom:420.236216pt;}
.y2c_c00332{bottom:420.419779pt;}
.y2d_c00332{bottom:420.631936pt;}
.y2e_c00332{bottom:421.138352pt;}
.y2f_c00332{bottom:421.532475pt;}
.y30_c00332{bottom:421.727763pt;}
.y31_c00332{bottom:422.409328pt;}
.y32_c00332{bottom:423.045083pt;}
.y22_c00332{bottom:435.596461pt;}
.y23_c00332{bottom:435.847381pt;}
.y24_c00332{bottom:436.082477pt;}
.y25_c00332{bottom:436.736475pt;}
.y26_c00332{bottom:437.011957pt;}
.y27_c00332{bottom:437.170835pt;}
.y28_c00332{bottom:437.764792pt;}
.y29_c00332{bottom:437.950053pt;}
.y2a_c00332{bottom:438.108669pt;}
.y1b_c00332{bottom:451.436787pt;}
.y1c_c00332{bottom:451.674208pt;}
.y1d_c00332{bottom:452.316115pt;}
.y1e_c00332{bottom:452.941824pt;}
.y1f_c00332{bottom:453.577579pt;}
.y20_c00332{bottom:453.894168pt;}
.y21_c00332{bottom:454.087541pt;}
.y14_c00332{bottom:466.317307pt;}
.y15_c00332{bottom:466.906080pt;}
.y16_c00332{bottom:467.237803pt;}
.y17_c00332{bottom:468.036592pt;}
.y18_c00332{bottom:468.271240pt;}
.y19_c00332{bottom:468.727096pt;}
.y1a_c00332{bottom:469.008051pt;}
.yc_c00332{bottom:481.200243pt;}
.yd_c00332{bottom:481.468411pt;}
.ye_c00332{bottom:482.034997pt;}
.yf_c00332{bottom:482.181944pt;}
.y10_c00332{bottom:482.918960pt;}
.y11_c00332{bottom:483.417016pt;}
.y12_c00332{bottom:483.620629pt;}
.y13_c00332{bottom:484.452835pt;}
.y2_c00332{bottom:496.321333pt;}
.y3_c00332{bottom:496.704896pt;}
.y4_c00332{bottom:497.184536pt;}
.y5_c00332{bottom:497.393733pt;}
.y6_c00332{bottom:497.928067pt;}
.y7_c00332{bottom:498.415304pt;}
.y8_c00332{bottom:498.700885pt;}
.y9_c00332{bottom:499.268856pt;}
.ya_c00332{bottom:499.520072pt;}
.yb_c00332{bottom:499.766173pt;}
.y1_c00332{bottom:509.153333pt;}
.hf_c00332{height:49.471514pt;}
.h7_c00332{height:51.338364pt;}
.h3_c00332{height:52.271789pt;}
.hd_c00332{height:53.205213pt;}
.h6_c00332{height:54.138638pt;}
.h4_c00332{height:55.072063pt;}
.hb_c00332{height:56.005488pt;}
.h8_c00332{height:56.938913pt;}
.ha_c00332{height:59.739187pt;}
.h9_c00332{height:60.672612pt;}
.h5_c00332{height:61.606037pt;}
.hc_c00332{height:62.539461pt;}
.he_c00332{height:63.472886pt;}
.h10_c00332{height:64.406311pt;}
.h2_c00332{height:77.466667pt;}
.h0_c00332{height:545.040000pt;}
.h1_c00332{height:545.333333pt;}
.w0_c00332{width:319.200000pt;}
.w1_c00332{width:319.333333pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:23.877333pt;}
.x4d_c00332{left:24.962837pt;}
.x55_c00332{left:26.163611pt;}
.x32_c00332{left:28.559365pt;}
.x62_c00332{left:33.123043pt;}
.x71_c00332{left:34.205347pt;}
.x29_c00332{left:39.841824pt;}
.x23_c00332{left:41.117792pt;}
.xc_c00332{left:44.785331pt;}
.x16_c00332{left:45.711883pt;}
.x1c_c00332{left:47.160365pt;}
.x51_c00332{left:48.726328pt;}
.x75_c00332{left:50.159403pt;}
.x3_c00332{left:51.274667pt;}
.x6c_c00332{left:54.004512pt;}
.x6e_c00332{left:55.922891pt;}
.x38_c00332{left:57.602533pt;}
.x7a_c00332{left:59.279019pt;}
.x24_c00332{left:60.367928pt;}
.x63_c00332{left:62.406107pt;}
.x33_c00332{left:64.562421pt;}
.x44_c00332{left:65.524592pt;}
.x56_c00332{left:66.727563pt;}
.x1d_c00332{left:68.525261pt;}
.x12_c00332{left:69.684709pt;}
.x2c_c00332{left:71.763256pt;}
.x4b_c00332{left:73.686349pt;}
.x64_c00332{left:76.087461pt;}
.x40_c00332{left:77.043565pt;}
.x5b_c00332{left:78.010008pt;}
.x39_c00332{left:79.204104pt;}
.x7b_c00332{left:81.600720pt;}
.x67_c00332{left:84.248440pt;}
.x4_c00332{left:85.534667pt;}
.x72_c00332{left:87.480920pt;}
.xd_c00332{left:88.399280pt;}
.x76_c00332{left:91.203448pt;}
.x13_c00332{left:95.189064pt;}
.x2d_c00332{left:96.245387pt;}
.x68_c00332{left:99.130019pt;}
.x5_c00332{left:100.477333pt;}
.x5f_c00332{left:102.249949pt;}
.x17_c00332{left:104.040995pt;}
.x25_c00332{left:106.447203pt;}
.x41_c00332{left:112.326472pt;}
.x45_c00332{left:114.488853pt;}
.x2e_c00332{left:115.687861pt;}
.x3e_c00332{left:116.887176pt;}
.x57_c00332{left:120.254053pt;}
.x49_c00332{left:121.690053pt;}
.x3c_c00332{left:125.528981pt;}
.x42_c00332{left:126.727957pt;}
.x1e_c00332{left:128.003763pt;}
.x4e_c00332{left:129.133907pt;}
.x34_c00332{left:130.568691pt;}
.x3a_c00332{left:132.489205pt;}
.x6_c00332{left:138.644000pt;}
.x1_c00332{left:140.160000pt;}
.x26_c00332{left:142.219363pt;}
.x52_c00332{left:144.735811pt;}
.x69_c00332{left:146.173907pt;}
.x77_c00332{left:147.369128pt;}
.x6b_c00332{left:149.534184pt;}
.x3f_c00332{left:150.491099pt;}
.x1f_c00332{left:153.015475pt;}
.x2a_c00332{left:155.052392pt;}
.xe_c00332{left:156.397565pt;}
.x7c_c00332{left:157.687635pt;}
.x73_c00332{left:158.946592pt;}
.x27_c00332{left:159.978776pt;}
.x18_c00332{left:160.927384pt;}
.x6f_c00332{left:164.411552pt;}
.x2f_c00332{left:165.852365pt;}
.x20_c00332{left:167.412072pt;}
.x7d_c00332{left:168.729584pt;}
.x53_c00332{left:169.938091pt;}
.x4f_c00332{left:171.138139pt;}
.x7_c00332{left:173.446667pt;}
.x14_c00332{left:174.626165pt;}
.x2b_c00332{left:176.413907pt;}
.x58_c00332{left:177.860013pt;}
.x74_c00332{left:185.881064pt;}
.x65_c00332{left:189.138952pt;}
.x79_c00332{left:190.571717pt;}
.x30_c00332{left:192.254869pt;}
.x8_c00332{left:193.845333pt;}
.xf_c00332{left:194.735440pt;}
.x7e_c00332{left:196.572368pt;}
.x35_c00332{left:198.495315pt;}
.x60_c00332{left:199.459675pt;}
.x59_c00332{left:201.862051pt;}
.x6a_c00332{left:203.539811pt;}
.x46_c00332{left:206.898960pt;}
.x10_c00332{left:210.422331pt;}
.x5c_c00332{left:212.901792pt;}
.x3d_c00332{left:216.257419pt;}
.x19_c00332{left:218.721811pt;}
.x21_c00332{left:221.363664pt;}
.x54_c00332{left:225.623677pt;}
.x47_c00332{left:228.740568pt;}
.x5a_c00332{left:230.184928pt;}
.x15_c00332{left:231.256283pt;}
.x36_c00332{left:232.339275pt;}
.x9_c00332{left:234.414667pt;}
.x22_c00332{left:238.216373pt;}
.x4a_c00332{left:241.462851pt;}
.x48_c00332{left:243.142053pt;}
.x50_c00332{left:244.585864pt;}
.x66_c00332{left:246.504856pt;}
.x1a_c00332{left:247.527024pt;}
.x61_c00332{left:248.423936pt;}
.x43_c00332{left:251.301688pt;}
.xa_c00332{left:252.358667pt;}
.x37_c00332{left:257.301499pt;}
.x4c_c00332{left:259.705472pt;}
.x5d_c00332{left:261.866053pt;}
.x1b_c00332{left:265.054419pt;}
.x31_c00332{left:266.902837pt;}
.x6d_c00332{left:268.103808pt;}
.xb_c00332{left:269.937333pt;}
.x3b_c00332{left:270.982995pt;}
.x11_c00332{left:274.437893pt;}
.x70_c00332{left:275.542651pt;}
.x28_c00332{left:279.697131pt;}
.x78_c00332{left:284.422656pt;}
.x5e_c00332{left:293.069491pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00333 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00333 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00333 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00333 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00333.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00333{transform:matrix(0.026990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026990,0.000000,0.000000,0.250000,0,0);}
.mcd_c00333{transform:matrix(0.134820,-0.002022,0.003750,0.249972,0,0);-ms-transform:matrix(0.134820,-0.002022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.134820,-0.002022,0.003750,0.249972,0,0);}
.m43_c00333{transform:matrix(0.151183,-0.002268,0.003750,0.249972,0,0);-ms-transform:matrix(0.151183,-0.002268,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151183,-0.002268,0.003750,0.249972,0,0);}
.mc4_c00333{transform:matrix(0.151228,-0.002268,0.003750,0.249972,0,0);-ms-transform:matrix(0.151228,-0.002268,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151228,-0.002268,0.003750,0.249972,0,0);}
.m80_c00333{transform:matrix(0.152723,-0.002291,0.003750,0.249972,0,0);-ms-transform:matrix(0.152723,-0.002291,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152723,-0.002291,0.003750,0.249972,0,0);}
.m14_c00333{transform:matrix(0.153478,-0.002302,0.003750,0.249972,0,0);-ms-transform:matrix(0.153478,-0.002302,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153478,-0.002302,0.003750,0.249972,0,0);}
.m76_c00333{transform:matrix(0.153833,-0.002307,0.003750,0.249972,0,0);-ms-transform:matrix(0.153833,-0.002307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153833,-0.002307,0.003750,0.249972,0,0);}
.ma5_c00333{transform:matrix(0.153958,-0.002309,0.003750,0.249972,0,0);-ms-transform:matrix(0.153958,-0.002309,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153958,-0.002309,0.003750,0.249972,0,0);}
.ma7_c00333{transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);-ms-transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);}
.mb8_c00333{transform:matrix(0.157062,-0.002356,0.003750,0.249972,0,0);-ms-transform:matrix(0.157062,-0.002356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157062,-0.002356,0.003750,0.249972,0,0);}
.m86_c00333{transform:matrix(0.157267,-0.002359,0.003750,0.249972,0,0);-ms-transform:matrix(0.157267,-0.002359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157267,-0.002359,0.003750,0.249972,0,0);}
.m82_c00333{transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);-ms-transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);}
.m4b_c00333{transform:matrix(0.159917,-0.002399,0.003750,0.249972,0,0);-ms-transform:matrix(0.159917,-0.002399,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159917,-0.002399,0.003750,0.249972,0,0);}
.mdc_c00333{transform:matrix(0.160182,-0.002403,0.003750,0.249972,0,0);-ms-transform:matrix(0.160182,-0.002403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160182,-0.002403,0.003750,0.249972,0,0);}
.m36_c00333{transform:matrix(0.160227,-0.002403,0.003750,0.249972,0,0);-ms-transform:matrix(0.160227,-0.002403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160227,-0.002403,0.003750,0.249972,0,0);}
.m8_c00333{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.mc8_c00333{transform:matrix(0.161097,-0.002416,0.003750,0.249972,0,0);-ms-transform:matrix(0.161097,-0.002416,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161097,-0.002416,0.003750,0.249972,0,0);}
.m2_c00333{transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161140,0.000000,0.000000,0.250000,0,0);}
.mc5_c00333{transform:matrix(0.161827,-0.002427,0.003750,0.249972,0,0);-ms-transform:matrix(0.161827,-0.002427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161827,-0.002427,0.003750,0.249972,0,0);}
.m2b_c00333{transform:matrix(0.161992,-0.002430,0.003750,0.249972,0,0);-ms-transform:matrix(0.161992,-0.002430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161992,-0.002430,0.003750,0.249972,0,0);}
.m25_c00333{transform:matrix(0.162227,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162227,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162227,-0.002433,0.003750,0.249972,0,0);}
.m5_c00333{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);-ms-transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163712,-0.002456,0.003750,0.249972,0,0);}
.m16_c00333{transform:matrix(0.164696,-0.002470,0.003750,0.249972,0,0);-ms-transform:matrix(0.164696,-0.002470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164696,-0.002470,0.003750,0.249972,0,0);}
.m7_c00333{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.mbd_c00333{transform:matrix(0.165651,-0.002485,0.003750,0.249972,0,0);-ms-transform:matrix(0.165651,-0.002485,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165651,-0.002485,0.003750,0.249972,0,0);}
.mca_c00333{transform:matrix(0.166201,-0.002493,0.003750,0.249972,0,0);-ms-transform:matrix(0.166201,-0.002493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166201,-0.002493,0.003750,0.249972,0,0);}
.m49_c00333{transform:matrix(0.166231,-0.002493,0.003750,0.249972,0,0);-ms-transform:matrix(0.166231,-0.002493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166231,-0.002493,0.003750,0.249972,0,0);}
.m83_c00333{transform:matrix(0.166731,-0.002501,0.003750,0.249972,0,0);-ms-transform:matrix(0.166731,-0.002501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166731,-0.002501,0.003750,0.249972,0,0);}
.me9_c00333{transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);-ms-transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168271,-0.002524,0.003750,0.249972,0,0);}
.mb3_c00333{transform:matrix(0.168901,-0.002534,0.003750,0.249972,0,0);-ms-transform:matrix(0.168901,-0.002534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168901,-0.002534,0.003750,0.249972,0,0);}
.mc9_c00333{transform:matrix(0.169356,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169356,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169356,-0.002540,0.003750,0.249972,0,0);}
.mc0_c00333{transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);-ms-transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);}
.me6_c00333{transform:matrix(0.169866,-0.002548,0.003750,0.249972,0,0);-ms-transform:matrix(0.169866,-0.002548,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169866,-0.002548,0.003750,0.249972,0,0);}
.m7b_c00333{transform:matrix(0.170091,-0.002551,0.003750,0.249972,0,0);-ms-transform:matrix(0.170091,-0.002551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170091,-0.002551,0.003750,0.249972,0,0);}
.mda_c00333{transform:matrix(0.170181,-0.002553,0.003750,0.249972,0,0);-ms-transform:matrix(0.170181,-0.002553,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170181,-0.002553,0.003750,0.249972,0,0);}
.mc1_c00333{transform:matrix(0.170231,-0.002553,0.003750,0.249972,0,0);-ms-transform:matrix(0.170231,-0.002553,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170231,-0.002553,0.003750,0.249972,0,0);}
.m48_c00333{transform:matrix(0.171036,-0.002566,0.003750,0.249972,0,0);-ms-transform:matrix(0.171036,-0.002566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171036,-0.002566,0.003750,0.249972,0,0);}
.mdb_c00333{transform:matrix(0.171151,-0.002567,0.003750,0.249972,0,0);-ms-transform:matrix(0.171151,-0.002567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171151,-0.002567,0.003750,0.249972,0,0);}
.m84_c00333{transform:matrix(0.171356,-0.002570,0.003750,0.249972,0,0);-ms-transform:matrix(0.171356,-0.002570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171356,-0.002570,0.003750,0.249972,0,0);}
.m94_c00333{transform:matrix(0.171471,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171471,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171471,-0.002572,0.003750,0.249972,0,0);}
.m85_c00333{transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);-ms-transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);}
.md5_c00333{transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);-ms-transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);}
.mbc_c00333{transform:matrix(0.172366,-0.002585,0.003750,0.249972,0,0);-ms-transform:matrix(0.172366,-0.002585,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172366,-0.002585,0.003750,0.249972,0,0);}
.mcb_c00333{transform:matrix(0.172486,-0.002587,0.003750,0.249972,0,0);-ms-transform:matrix(0.172486,-0.002587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172486,-0.002587,0.003750,0.249972,0,0);}
.mba_c00333{transform:matrix(0.174015,-0.002610,0.003750,0.249972,0,0);-ms-transform:matrix(0.174015,-0.002610,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174015,-0.002610,0.003750,0.249972,0,0);}
.mbb_c00333{transform:matrix(0.174020,-0.002610,0.003750,0.249972,0,0);-ms-transform:matrix(0.174020,-0.002610,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174020,-0.002610,0.003750,0.249972,0,0);}
.m15_c00333{transform:matrix(0.174790,-0.002622,0.003750,0.249972,0,0);-ms-transform:matrix(0.174790,-0.002622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174790,-0.002622,0.003750,0.249972,0,0);}
.m69_c00333{transform:matrix(0.175805,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175805,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175805,-0.002637,0.003750,0.249972,0,0);}
.md0_c00333{transform:matrix(0.175960,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175960,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175960,-0.002639,0.003750,0.249972,0,0);}
.m8e_c00333{transform:matrix(0.176455,-0.002647,0.003750,0.249972,0,0);-ms-transform:matrix(0.176455,-0.002647,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176455,-0.002647,0.003750,0.249972,0,0);}
.me0_c00333{transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);}
.mab_c00333{transform:matrix(0.177235,-0.002659,0.003750,0.249972,0,0);-ms-transform:matrix(0.177235,-0.002659,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177235,-0.002659,0.003750,0.249972,0,0);}
.mc7_c00333{transform:matrix(0.177875,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177875,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177875,-0.002668,0.003750,0.249972,0,0);}
.mc6_c00333{transform:matrix(0.178180,-0.002673,0.003750,0.249972,0,0);-ms-transform:matrix(0.178180,-0.002673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178180,-0.002673,0.003750,0.249972,0,0);}
.m72_c00333{transform:matrix(0.179060,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179060,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179060,-0.002686,0.003750,0.249972,0,0);}
.m7d_c00333{transform:matrix(0.179225,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179225,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179225,-0.002688,0.003750,0.249972,0,0);}
.mbe_c00333{transform:matrix(0.179250,-0.002689,0.003750,0.249972,0,0);-ms-transform:matrix(0.179250,-0.002689,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179250,-0.002689,0.003750,0.249972,0,0);}
.ma8_c00333{transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);}
.mea_c00333{transform:matrix(0.179535,-0.002693,0.003750,0.249972,0,0);-ms-transform:matrix(0.179535,-0.002693,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179535,-0.002693,0.003750,0.249972,0,0);}
.ma3_c00333{transform:matrix(0.180575,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180575,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180575,-0.002709,0.003750,0.249972,0,0);}
.m3a_c00333{transform:matrix(0.180715,-0.002711,0.003750,0.249972,0,0);-ms-transform:matrix(0.180715,-0.002711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180715,-0.002711,0.003750,0.249972,0,0);}
.m11_c00333{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.ma9_c00333{transform:matrix(0.181245,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181245,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181245,-0.002719,0.003750,0.249972,0,0);}
.m60_c00333{transform:matrix(0.181555,-0.002723,0.003750,0.249972,0,0);-ms-transform:matrix(0.181555,-0.002723,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181555,-0.002723,0.003750,0.249972,0,0);}
.m2a_c00333{transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-ms-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182040,-0.002731,0.003750,0.249972,0,0);}
.mdf_c00333{transform:matrix(0.182739,-0.002741,0.003750,0.249972,0,0);-ms-transform:matrix(0.182739,-0.002741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182739,-0.002741,0.003750,0.249972,0,0);}
.m7f_c00333{transform:matrix(0.183569,-0.002754,0.003750,0.249972,0,0);-ms-transform:matrix(0.183569,-0.002754,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183569,-0.002754,0.003750,0.249972,0,0);}
.m17_c00333{transform:matrix(0.183689,-0.002755,0.003750,0.249972,0,0);-ms-transform:matrix(0.183689,-0.002755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183689,-0.002755,0.003750,0.249972,0,0);}
.m9d_c00333{transform:matrix(0.183754,-0.002756,0.003750,0.249972,0,0);-ms-transform:matrix(0.183754,-0.002756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183754,-0.002756,0.003750,0.249972,0,0);}
.me8_c00333{transform:matrix(0.184739,-0.002771,0.003750,0.249972,0,0);-ms-transform:matrix(0.184739,-0.002771,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184739,-0.002771,0.003750,0.249972,0,0);}
.m35_c00333{transform:matrix(0.184924,-0.002774,0.003750,0.249972,0,0);-ms-transform:matrix(0.184924,-0.002774,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184924,-0.002774,0.003750,0.249972,0,0);}
.m9b_c00333{transform:matrix(0.185159,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185159,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185159,-0.002777,0.003750,0.249972,0,0);}
.mc2_c00333{transform:matrix(0.185314,-0.002780,0.003750,0.249972,0,0);-ms-transform:matrix(0.185314,-0.002780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185314,-0.002780,0.003750,0.249972,0,0);}
.ma0_c00333{transform:matrix(0.185519,-0.002783,0.003750,0.249972,0,0);-ms-transform:matrix(0.185519,-0.002783,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185519,-0.002783,0.003750,0.249972,0,0);}
.mf_c00333{transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185670,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.185794,-0.002787,0.003750,0.249972,0,0);-ms-transform:matrix(0.185794,-0.002787,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185794,-0.002787,0.003750,0.249972,0,0);}
.mb7_c00333{transform:matrix(0.186094,-0.002791,0.003750,0.249972,0,0);-ms-transform:matrix(0.186094,-0.002791,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186094,-0.002791,0.003750,0.249972,0,0);}
.m6e_c00333{transform:matrix(0.186164,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186164,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186164,-0.002792,0.003750,0.249972,0,0);}
.m70_c00333{transform:matrix(0.186439,-0.002797,0.003750,0.249972,0,0);-ms-transform:matrix(0.186439,-0.002797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186439,-0.002797,0.003750,0.249972,0,0);}
.m29_c00333{transform:matrix(0.186624,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186624,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186624,-0.002799,0.003750,0.249972,0,0);}
.m9c_c00333{transform:matrix(0.186749,-0.002801,0.003750,0.249972,0,0);-ms-transform:matrix(0.186749,-0.002801,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186749,-0.002801,0.003750,0.249972,0,0);}
.m8b_c00333{transform:matrix(0.187684,-0.002815,0.003750,0.249972,0,0);-ms-transform:matrix(0.187684,-0.002815,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187684,-0.002815,0.003750,0.249972,0,0);}
.m58_c00333{transform:matrix(0.188024,-0.002820,0.003750,0.249972,0,0);-ms-transform:matrix(0.188024,-0.002820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188024,-0.002820,0.003750,0.249972,0,0);}
.mc_c00333{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);-ms-transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188649,-0.002830,0.003750,0.249972,0,0);}
.m6c_c00333{transform:matrix(0.188879,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188879,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188879,-0.002833,0.003750,0.249972,0,0);}
.m3_c00333{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);}
.md3_c00333{transform:matrix(0.191533,-0.002873,0.003750,0.249972,0,0);-ms-transform:matrix(0.191533,-0.002873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191533,-0.002873,0.003750,0.249972,0,0);}
.m31_c00333{transform:matrix(0.191748,-0.002876,0.003750,0.249972,0,0);-ms-transform:matrix(0.191748,-0.002876,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191748,-0.002876,0.003750,0.249972,0,0);}
.me4_c00333{transform:matrix(0.192278,-0.002884,0.003750,0.249972,0,0);-ms-transform:matrix(0.192278,-0.002884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192278,-0.002884,0.003750,0.249972,0,0);}
.m1a_c00333{transform:matrix(0.192508,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192508,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192508,-0.002888,0.003750,0.249972,0,0);}
.m3c_c00333{transform:matrix(0.192728,-0.002891,0.003750,0.249972,0,0);-ms-transform:matrix(0.192728,-0.002891,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192728,-0.002891,0.003750,0.249972,0,0);}
.m28_c00333{transform:matrix(0.192748,-0.002891,0.003750,0.249972,0,0);-ms-transform:matrix(0.192748,-0.002891,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192748,-0.002891,0.003750,0.249972,0,0);}
.m90_c00333{transform:matrix(0.193243,-0.002899,0.003750,0.249972,0,0);-ms-transform:matrix(0.193243,-0.002899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193243,-0.002899,0.003750,0.249972,0,0);}
.mce_c00333{transform:matrix(0.193873,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193873,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193873,-0.002908,0.003750,0.249972,0,0);}
.ma2_c00333{transform:matrix(0.194348,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194348,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194348,-0.002915,0.003750,0.249972,0,0);}
.m18_c00333{transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);}
.m10_c00333{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.195043,-0.002926,0.003750,0.249972,0,0);-ms-transform:matrix(0.195043,-0.002926,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195043,-0.002926,0.003750,0.249972,0,0);}
.m62_c00333{transform:matrix(0.195178,-0.002928,0.003750,0.249972,0,0);-ms-transform:matrix(0.195178,-0.002928,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195178,-0.002928,0.003750,0.249972,0,0);}
.m39_c00333{transform:matrix(0.195363,-0.002930,0.003750,0.249972,0,0);-ms-transform:matrix(0.195363,-0.002930,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195363,-0.002930,0.003750,0.249972,0,0);}
.me5_c00333{transform:matrix(0.195803,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195803,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195803,-0.002937,0.003750,0.249972,0,0);}
.m40_c00333{transform:matrix(0.195823,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195823,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195823,-0.002937,0.003750,0.249972,0,0);}
.md9_c00333{transform:matrix(0.196143,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196143,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196143,-0.002942,0.003750,0.249972,0,0);}
.m87_c00333{transform:matrix(0.197098,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197098,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197098,-0.002956,0.003750,0.249972,0,0);}
.m42_c00333{transform:matrix(0.197868,-0.002968,0.003750,0.249972,0,0);-ms-transform:matrix(0.197868,-0.002968,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197868,-0.002968,0.003750,0.249972,0,0);}
.m6_c00333{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.198333,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198333,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198333,-0.002975,0.003750,0.249972,0,0);}
.m6a_c00333{transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);-ms-transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);}
.mcf_c00333{transform:matrix(0.198563,-0.002978,0.003750,0.249972,0,0);-ms-transform:matrix(0.198563,-0.002978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198563,-0.002978,0.003750,0.249972,0,0);}
.md8_c00333{transform:matrix(0.198908,-0.002984,0.003750,0.249972,0,0);-ms-transform:matrix(0.198908,-0.002984,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198908,-0.002984,0.003750,0.249972,0,0);}
.m59_c00333{transform:matrix(0.199078,-0.002986,0.003750,0.249972,0,0);-ms-transform:matrix(0.199078,-0.002986,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199078,-0.002986,0.003750,0.249972,0,0);}
.m89_c00333{transform:matrix(0.199138,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199138,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199138,-0.002987,0.003750,0.249972,0,0);}
.m4_c00333{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.199560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199560,0.000000,0.000000,0.250000,0,0);}
.m46_c00333{transform:matrix(0.199888,-0.002998,0.003750,0.249972,0,0);-ms-transform:matrix(0.199888,-0.002998,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199888,-0.002998,0.003750,0.249972,0,0);}
.maf_c00333{transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);-ms-transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);}
.m0_c00333{transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199910,0.000000,0.000000,0.250000,0,0);}
.m2e_c00333{transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);-ms-transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);}
.md1_c00333{transform:matrix(0.200757,-0.003011,0.003750,0.249972,0,0);-ms-transform:matrix(0.200757,-0.003011,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200757,-0.003011,0.003750,0.249972,0,0);}
.ma6_c00333{transform:matrix(0.200987,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.200987,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200987,-0.003015,0.003750,0.249972,0,0);}
.m54_c00333{transform:matrix(0.201062,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201062,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201062,-0.003016,0.003750,0.249972,0,0);}
.m5a_c00333{transform:matrix(0.201102,-0.003017,0.003750,0.249972,0,0);-ms-transform:matrix(0.201102,-0.003017,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201102,-0.003017,0.003750,0.249972,0,0);}
.m37_c00333{transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);-ms-transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);}
.m93_c00333{transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);}
.mc3_c00333{transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);}
.m5d_c00333{transform:matrix(0.204002,-0.003060,0.003750,0.249972,0,0);-ms-transform:matrix(0.204002,-0.003060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204002,-0.003060,0.003750,0.249972,0,0);}
.ma4_c00333{transform:matrix(0.204202,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204202,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204202,-0.003063,0.003750,0.249972,0,0);}
.m95_c00333{transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);}
.m66_c00333{transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);}
.m64_c00333{transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);-ms-transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);}
.me7_c00333{transform:matrix(0.204837,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204837,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204837,-0.003073,0.003750,0.249972,0,0);}
.m8d_c00333{transform:matrix(0.205052,-0.003076,0.003750,0.249972,0,0);-ms-transform:matrix(0.205052,-0.003076,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205052,-0.003076,0.003750,0.249972,0,0);}
.m3f_c00333{transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);-ms-transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);}
.m63_c00333{transform:matrix(0.205547,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205547,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205547,-0.003083,0.003750,0.249972,0,0);}
.maa_c00333{transform:matrix(0.205592,-0.003084,0.003750,0.249972,0,0);-ms-transform:matrix(0.205592,-0.003084,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205592,-0.003084,0.003750,0.249972,0,0);}
.m8c_c00333{transform:matrix(0.206062,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206062,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206062,-0.003091,0.003750,0.249972,0,0);}
.m2f_c00333{transform:matrix(0.206617,-0.003099,0.003750,0.249972,0,0);-ms-transform:matrix(0.206617,-0.003099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206617,-0.003099,0.003750,0.249972,0,0);}
.m81_c00333{transform:matrix(0.206627,-0.003099,0.003750,0.249972,0,0);-ms-transform:matrix(0.206627,-0.003099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206627,-0.003099,0.003750,0.249972,0,0);}
.m88_c00333{transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207147,-0.003107,0.003750,0.249972,0,0);}
.ma1_c00333{transform:matrix(0.207262,-0.003109,0.003750,0.249972,0,0);-ms-transform:matrix(0.207262,-0.003109,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207262,-0.003109,0.003750,0.249972,0,0);}
.m4e_c00333{transform:matrix(0.207552,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207552,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207552,-0.003113,0.003750,0.249972,0,0);}
.m77_c00333{transform:matrix(0.208187,-0.003123,0.003750,0.249972,0,0);-ms-transform:matrix(0.208187,-0.003123,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208187,-0.003123,0.003750,0.249972,0,0);}
.m78_c00333{transform:matrix(0.208452,-0.003127,0.003750,0.249972,0,0);-ms-transform:matrix(0.208452,-0.003127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208452,-0.003127,0.003750,0.249972,0,0);}
.mdd_c00333{transform:matrix(0.208457,-0.003127,0.003750,0.249972,0,0);-ms-transform:matrix(0.208457,-0.003127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208457,-0.003127,0.003750,0.249972,0,0);}
.mb0_c00333{transform:matrix(0.208672,-0.003130,0.003750,0.249972,0,0);-ms-transform:matrix(0.208672,-0.003130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208672,-0.003130,0.003750,0.249972,0,0);}
.m61_c00333{transform:matrix(0.208762,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208762,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208762,-0.003131,0.003750,0.249972,0,0);}
.mae_c00333{transform:matrix(0.208847,-0.003133,0.003750,0.249972,0,0);-ms-transform:matrix(0.208847,-0.003133,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208847,-0.003133,0.003750,0.249972,0,0);}
.mbf_c00333{transform:matrix(0.209476,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209476,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209476,-0.003142,0.003750,0.249972,0,0);}
.m47_c00333{transform:matrix(0.209736,-0.003146,0.003750,0.249972,0,0);-ms-transform:matrix(0.209736,-0.003146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209736,-0.003146,0.003750,0.249972,0,0);}
.m65_c00333{transform:matrix(0.210076,-0.003151,0.003750,0.249972,0,0);-ms-transform:matrix(0.210076,-0.003151,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210076,-0.003151,0.003750,0.249972,0,0);}
.m92_c00333{transform:matrix(0.211146,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211146,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211146,-0.003167,0.003750,0.249972,0,0);}
.m3b_c00333{transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);}
.m12_c00333{transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);}
.m73_c00333{transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);}
.m19_c00333{transform:matrix(0.211596,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211596,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211596,-0.003174,0.003750,0.249972,0,0);}
.m51_c00333{transform:matrix(0.212171,-0.003183,0.003750,0.249972,0,0);-ms-transform:matrix(0.212171,-0.003183,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212171,-0.003183,0.003750,0.249972,0,0);}
.m45_c00333{transform:matrix(0.212336,-0.003185,0.003750,0.249972,0,0);-ms-transform:matrix(0.212336,-0.003185,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212336,-0.003185,0.003750,0.249972,0,0);}
.m7a_c00333{transform:matrix(0.212506,-0.003188,0.003750,0.249972,0,0);-ms-transform:matrix(0.212506,-0.003188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212506,-0.003188,0.003750,0.249972,0,0);}
.mb4_c00333{transform:matrix(0.212706,-0.003191,0.003750,0.249972,0,0);-ms-transform:matrix(0.212706,-0.003191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212706,-0.003191,0.003750,0.249972,0,0);}
.mb5_c00333{transform:matrix(0.212831,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212831,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212831,-0.003192,0.003750,0.249972,0,0);}
.m75_c00333{transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);-ms-transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);}
.m74_c00333{transform:matrix(0.213436,-0.003202,0.003750,0.249972,0,0);-ms-transform:matrix(0.213436,-0.003202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213436,-0.003202,0.003750,0.249972,0,0);}
.me3_c00333{transform:matrix(0.213976,-0.003210,0.003750,0.249972,0,0);-ms-transform:matrix(0.213976,-0.003210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213976,-0.003210,0.003750,0.249972,0,0);}
.m9a_c00333{transform:matrix(0.214446,-0.003217,0.003750,0.249972,0,0);-ms-transform:matrix(0.214446,-0.003217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214446,-0.003217,0.003750,0.249972,0,0);}
.m5e_c00333{transform:matrix(0.214646,-0.003220,0.003750,0.249972,0,0);-ms-transform:matrix(0.214646,-0.003220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214646,-0.003220,0.003750,0.249972,0,0);}
.mad_c00333{transform:matrix(0.214876,-0.003223,0.003750,0.249972,0,0);-ms-transform:matrix(0.214876,-0.003223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214876,-0.003223,0.003750,0.249972,0,0);}
.m7c_c00333{transform:matrix(0.215206,-0.003228,0.003750,0.249972,0,0);-ms-transform:matrix(0.215206,-0.003228,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215206,-0.003228,0.003750,0.249972,0,0);}
.m9f_c00333{transform:matrix(0.215336,-0.003230,0.003750,0.249972,0,0);-ms-transform:matrix(0.215336,-0.003230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215336,-0.003230,0.003750,0.249972,0,0);}
.m97_c00333{transform:matrix(0.216001,-0.003240,0.003750,0.249972,0,0);-ms-transform:matrix(0.216001,-0.003240,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216001,-0.003240,0.003750,0.249972,0,0);}
.m50_c00333{transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);-ms-transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);}
.ma_c00333{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m2c_c00333{transform:matrix(0.217661,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217661,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217661,-0.003265,0.003750,0.249972,0,0);}
.m33_c00333{transform:matrix(0.217671,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217671,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217671,-0.003265,0.003750,0.249972,0,0);}
.m1f_c00333{transform:matrix(0.218330,-0.003275,0.003750,0.249972,0,0);-ms-transform:matrix(0.218330,-0.003275,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218330,-0.003275,0.003750,0.249972,0,0);}
.m8a_c00333{transform:matrix(0.218440,-0.003277,0.003750,0.249972,0,0);-ms-transform:matrix(0.218440,-0.003277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218440,-0.003277,0.003750,0.249972,0,0);}
.mac_c00333{transform:matrix(0.218620,-0.003279,0.003750,0.249972,0,0);-ms-transform:matrix(0.218620,-0.003279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218620,-0.003279,0.003750,0.249972,0,0);}
.m26_c00333{transform:matrix(0.218655,-0.003280,0.003750,0.249972,0,0);-ms-transform:matrix(0.218655,-0.003280,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218655,-0.003280,0.003750,0.249972,0,0);}
.m9e_c00333{transform:matrix(0.218785,-0.003282,0.003750,0.249972,0,0);-ms-transform:matrix(0.218785,-0.003282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218785,-0.003282,0.003750,0.249972,0,0);}
.m57_c00333{transform:matrix(0.219340,-0.003290,0.003750,0.249972,0,0);-ms-transform:matrix(0.219340,-0.003290,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219340,-0.003290,0.003750,0.249972,0,0);}
.md2_c00333{transform:matrix(0.219390,-0.003291,0.003750,0.249972,0,0);-ms-transform:matrix(0.219390,-0.003291,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219390,-0.003291,0.003750,0.249972,0,0);}
.m96_c00333{transform:matrix(0.219585,-0.003294,0.003750,0.249972,0,0);-ms-transform:matrix(0.219585,-0.003294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219585,-0.003294,0.003750,0.249972,0,0);}
.m34_c00333{transform:matrix(0.220540,-0.003308,0.003750,0.249972,0,0);-ms-transform:matrix(0.220540,-0.003308,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220540,-0.003308,0.003750,0.249972,0,0);}
.m4c_c00333{transform:matrix(0.220710,-0.003311,0.003750,0.249972,0,0);-ms-transform:matrix(0.220710,-0.003311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220710,-0.003311,0.003750,0.249972,0,0);}
.m9_c00333{transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);}
.mb9_c00333{transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);}
.m91_c00333{transform:matrix(0.221440,-0.003322,0.003750,0.249972,0,0);-ms-transform:matrix(0.221440,-0.003322,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221440,-0.003322,0.003750,0.249972,0,0);}
.md4_c00333{transform:matrix(0.221510,-0.003323,0.003750,0.249972,0,0);-ms-transform:matrix(0.221510,-0.003323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221510,-0.003323,0.003750,0.249972,0,0);}
.m1e_c00333{transform:matrix(0.221530,-0.003323,0.003750,0.249972,0,0);-ms-transform:matrix(0.221530,-0.003323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221530,-0.003323,0.003750,0.249972,0,0);}
.m4a_c00333{transform:matrix(0.221805,-0.003327,0.003750,0.249972,0,0);-ms-transform:matrix(0.221805,-0.003327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221805,-0.003327,0.003750,0.249972,0,0);}
.m20_c00333{transform:matrix(0.222795,-0.003342,0.003750,0.249972,0,0);-ms-transform:matrix(0.222795,-0.003342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222795,-0.003342,0.003750,0.249972,0,0);}
.m56_c00333{transform:matrix(0.222990,-0.003345,0.003750,0.249972,0,0);-ms-transform:matrix(0.222990,-0.003345,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222990,-0.003345,0.003750,0.249972,0,0);}
.m79_c00333{transform:matrix(0.223405,-0.003351,0.003750,0.249972,0,0);-ms-transform:matrix(0.223405,-0.003351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223405,-0.003351,0.003750,0.249972,0,0);}
.m5f_c00333{transform:matrix(0.223525,-0.003353,0.003750,0.249972,0,0);-ms-transform:matrix(0.223525,-0.003353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223525,-0.003353,0.003750,0.249972,0,0);}
.m23_c00333{transform:matrix(0.223575,-0.003354,0.003750,0.249972,0,0);-ms-transform:matrix(0.223575,-0.003354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223575,-0.003354,0.003750,0.249972,0,0);}
.m6b_c00333{transform:matrix(0.224210,-0.003363,0.003750,0.249972,0,0);-ms-transform:matrix(0.224210,-0.003363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224210,-0.003363,0.003750,0.249972,0,0);}
.md6_c00333{transform:matrix(0.224455,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224455,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224455,-0.003367,0.003750,0.249972,0,0);}
.mb2_c00333{transform:matrix(0.224495,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224495,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224495,-0.003367,0.003750,0.249972,0,0);}
.me2_c00333{transform:matrix(0.225235,-0.003379,0.003750,0.249972,0,0);-ms-transform:matrix(0.225235,-0.003379,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225235,-0.003379,0.003750,0.249972,0,0);}
.m8f_c00333{transform:matrix(0.225400,-0.003381,0.003750,0.249972,0,0);-ms-transform:matrix(0.225400,-0.003381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225400,-0.003381,0.003750,0.249972,0,0);}
.m67_c00333{transform:matrix(0.225630,-0.003384,0.003750,0.249972,0,0);-ms-transform:matrix(0.225630,-0.003384,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225630,-0.003384,0.003750,0.249972,0,0);}
.m7e_c00333{transform:matrix(0.225920,-0.003389,0.003750,0.249972,0,0);-ms-transform:matrix(0.225920,-0.003389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225920,-0.003389,0.003750,0.249972,0,0);}
.m98_c00333{transform:matrix(0.225980,-0.003390,0.003750,0.249972,0,0);-ms-transform:matrix(0.225980,-0.003390,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225980,-0.003390,0.003750,0.249972,0,0);}
.m6d_c00333{transform:matrix(0.226764,-0.003401,0.003750,0.249972,0,0);-ms-transform:matrix(0.226764,-0.003401,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226764,-0.003401,0.003750,0.249972,0,0);}
.m68_c00333{transform:matrix(0.228494,-0.003427,0.003750,0.249972,0,0);-ms-transform:matrix(0.228494,-0.003427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228494,-0.003427,0.003750,0.249972,0,0);}
.m55_c00333{transform:matrix(0.228999,-0.003435,0.003750,0.249972,0,0);-ms-transform:matrix(0.228999,-0.003435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228999,-0.003435,0.003750,0.249972,0,0);}
.m30_c00333{transform:matrix(0.229154,-0.003437,0.003750,0.249972,0,0);-ms-transform:matrix(0.229154,-0.003437,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229154,-0.003437,0.003750,0.249972,0,0);}
.m1c_c00333{transform:matrix(0.229179,-0.003438,0.003750,0.249972,0,0);-ms-transform:matrix(0.229179,-0.003438,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229179,-0.003438,0.003750,0.249972,0,0);}
.m52_c00333{transform:matrix(0.229184,-0.003438,0.003750,0.249972,0,0);-ms-transform:matrix(0.229184,-0.003438,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229184,-0.003438,0.003750,0.249972,0,0);}
.m71_c00333{transform:matrix(0.229649,-0.003445,0.003750,0.249972,0,0);-ms-transform:matrix(0.229649,-0.003445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229649,-0.003445,0.003750,0.249972,0,0);}
.m22_c00333{transform:matrix(0.229894,-0.003448,0.003750,0.249972,0,0);-ms-transform:matrix(0.229894,-0.003448,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229894,-0.003448,0.003750,0.249972,0,0);}
.m5c_c00333{transform:matrix(0.230114,-0.003452,0.003750,0.249972,0,0);-ms-transform:matrix(0.230114,-0.003452,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230114,-0.003452,0.003750,0.249972,0,0);}
.m53_c00333{transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);-ms-transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);}
.m32_c00333{transform:matrix(0.230369,-0.003456,0.003750,0.249972,0,0);-ms-transform:matrix(0.230369,-0.003456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230369,-0.003456,0.003750,0.249972,0,0);}
.m38_c00333{transform:matrix(0.231219,-0.003468,0.003750,0.249972,0,0);-ms-transform:matrix(0.231219,-0.003468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231219,-0.003468,0.003750,0.249972,0,0);}
.me1_c00333{transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);-ms-transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232064,-0.003481,0.003750,0.249972,0,0);}
.mb1_c00333{transform:matrix(0.233119,-0.003497,0.003750,0.249972,0,0);-ms-transform:matrix(0.233119,-0.003497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233119,-0.003497,0.003750,0.249972,0,0);}
.me_c00333{transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234140,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m41_c00333{transform:matrix(0.235653,-0.003535,0.003750,0.249972,0,0);-ms-transform:matrix(0.235653,-0.003535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235653,-0.003535,0.003750,0.249972,0,0);}
.m4f_c00333{transform:matrix(0.235833,-0.003538,0.003750,0.249972,0,0);-ms-transform:matrix(0.235833,-0.003538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235833,-0.003538,0.003750,0.249972,0,0);}
.m3d_c00333{transform:matrix(0.235963,-0.003539,0.003750,0.249972,0,0);-ms-transform:matrix(0.235963,-0.003539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235963,-0.003539,0.003750,0.249972,0,0);}
.mde_c00333{transform:matrix(0.236463,-0.003547,0.003750,0.249972,0,0);-ms-transform:matrix(0.236463,-0.003547,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236463,-0.003547,0.003750,0.249972,0,0);}
.m6f_c00333{transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-ms-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);}
.mcc_c00333{transform:matrix(0.239233,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239233,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239233,-0.003588,0.003750,0.249972,0,0);}
.m5b_c00333{transform:matrix(0.241203,-0.003618,0.003750,0.249972,0,0);-ms-transform:matrix(0.241203,-0.003618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241203,-0.003618,0.003750,0.249972,0,0);}
.m21_c00333{transform:matrix(0.241328,-0.003620,0.003750,0.249972,0,0);-ms-transform:matrix(0.241328,-0.003620,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241328,-0.003620,0.003750,0.249972,0,0);}
.m4d_c00333{transform:matrix(0.243463,-0.003652,0.003750,0.249972,0,0);-ms-transform:matrix(0.243463,-0.003652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243463,-0.003652,0.003750,0.249972,0,0);}
.m24_c00333{transform:matrix(0.250327,-0.003755,0.003750,0.249972,0,0);-ms-transform:matrix(0.250327,-0.003755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250327,-0.003755,0.003750,0.249972,0,0);}
.m13_c00333{transform:matrix(0.251082,-0.003766,0.003750,0.249972,0,0);-ms-transform:matrix(0.251082,-0.003766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251082,-0.003766,0.003750,0.249972,0,0);}
.mb6_c00333{transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);-ms-transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);}
.md7_c00333{transform:matrix(0.259331,-0.003890,0.003750,0.249972,0,0);-ms-transform:matrix(0.259331,-0.003890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259331,-0.003890,0.003750,0.249972,0,0);}
.m3e_c00333{transform:matrix(0.306820,-0.004602,0.003750,0.249972,0,0);-ms-transform:matrix(0.306820,-0.004602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.306820,-0.004602,0.003750,0.249972,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:0.000000px;}
.fc0_c00333{color:transparent;}
.fsa_c00333{font-size:55.656260px;}
.fs6_c00333{font-size:56.706378px;}
.fs5_c00333{font-size:57.756497px;}
.fs2_c00333{font-size:58.800000px;}
.fs8_c00333{font-size:58.806615px;}
.fs3_c00333{font-size:59.850000px;}
.fsb_c00333{font-size:59.856733px;}
.fsc_c00333{font-size:60.906851px;}
.fs7_c00333{font-size:63.007087px;}
.fs0_c00333{font-size:64.050000px;}
.fse_c00333{font-size:64.057205px;}
.fs10_c00333{font-size:65.107323px;}
.fs4_c00333{font-size:66.157441px;}
.fs1_c00333{font-size:67.200000px;}
.fs9_c00333{font-size:67.207560px;}
.fsd_c00333{font-size:68.257678px;}
.fsf_c00333{font-size:70.357914px;}
.y0_c00333{bottom:0.000000px;}
.ye7_c00333{bottom:23.429955px;}
.ye8_c00333{bottom:24.106110px;}
.ye9_c00333{bottom:25.018942px;}
.yea_c00333{bottom:26.072497px;}
.yeb_c00333{bottom:26.477880px;}
.yec_c00333{bottom:27.617430px;}
.yed_c00333{bottom:28.479960px;}
.yee_c00333{bottom:28.767255px;}
.ye0_c00333{bottom:39.905437px;}
.ye1_c00333{bottom:40.439347px;}
.ye2_c00333{bottom:41.769840px;}
.ye3_c00333{bottom:42.327787px;}
.ye4_c00333{bottom:43.364917px;}
.ye5_c00333{bottom:44.921985px;}
.ye6_c00333{bottom:45.582480px;}
.yd9_c00333{bottom:57.723825px;}
.yda_c00333{bottom:58.278337px;}
.ydb_c00333{bottom:59.012422px;}
.ydc_c00333{bottom:59.241307px;}
.ydd_c00333{bottom:59.850495px;}
.yde_c00333{bottom:60.175035px;}
.ydf_c00333{bottom:61.371720px;}
.yd2_c00333{bottom:73.930005px;}
.yd3_c00333{bottom:74.609692px;}
.yd4_c00333{bottom:75.744323px;}
.yd5_c00333{bottom:76.645290px;}
.yd6_c00333{bottom:77.693400px;}
.yd7_c00333{bottom:78.163087px;}
.yd8_c00333{bottom:79.351785px;}
.ycb_c00333{bottom:91.213627px;}
.ycc_c00333{bottom:91.765845px;}
.ycd_c00333{bottom:92.627887px;}
.yce_c00333{bottom:93.251475px;}
.ycf_c00333{bottom:93.945442px;}
.yd0_c00333{bottom:95.196547px;}
.yd1_c00333{bottom:96.713895px;}
.yc3_c00333{bottom:109.840552px;}
.yc4_c00333{bottom:110.749170px;}
.yc5_c00333{bottom:110.936467px;}
.yc6_c00333{bottom:111.248782px;}
.yc7_c00333{bottom:111.894330px;}
.yc8_c00333{bottom:112.596937px;}
.yc9_c00333{bottom:112.864305px;}
.yca_c00333{bottom:113.085450px;}
.ybc_c00333{bottom:125.504385px;}
.ybd_c00333{bottom:126.196305px;}
.ybe_c00333{bottom:127.055347px;}
.ybf_c00333{bottom:127.445850px;}
.yc0_c00333{bottom:128.097562px;}
.yc1_c00333{bottom:129.478567px;}
.yc2_c00333{bottom:129.934417px;}
.yb5_c00333{bottom:143.055067px;}
.yb6_c00333{bottom:143.575620px;}
.yb7_c00333{bottom:144.798067px;}
.yb8_c00333{bottom:145.406617px;}
.yb9_c00333{bottom:145.997730px;}
.yba_c00333{bottom:146.318325px;}
.ybb_c00333{bottom:147.575370px;}
.yac_c00333{bottom:160.337550px;}
.yad_c00333{bottom:161.172547px;}
.yae_c00333{bottom:161.726295px;}
.yaf_c00333{bottom:162.240712px;}
.yb0_c00333{bottom:162.629400px;}
.yb1_c00333{bottom:162.966675px;}
.yb2_c00333{bottom:163.734870px;}
.yb3_c00333{bottom:163.942792px;}
.yb4_c00333{bottom:164.566425px;}
.ya3_c00333{bottom:177.620280px;}
.ya4_c00333{bottom:178.129680px;}
.ya5_c00333{bottom:178.337490px;}
.ya6_c00333{bottom:179.123167px;}
.ya7_c00333{bottom:179.463457px;}
.ya8_c00333{bottom:179.969595px;}
.ya9_c00333{bottom:180.249135px;}
.yaa_c00333{bottom:181.122990px;}
.yab_c00333{bottom:181.906125px;}
.y9d_c00333{bottom:195.443182px;}
.y9e_c00333{bottom:195.660390px;}
.y9f_c00333{bottom:196.120095px;}
.ya0_c00333{bottom:196.971945px;}
.ya1_c00333{bottom:197.568495px;}
.ya2_c00333{bottom:198.301462px;}
.y96_c00333{bottom:214.752765px;}
.y97_c00333{bottom:214.753252px;}
.y9a_c00333{bottom:214.753327px;}
.y99_c00333{bottom:214.753372px;}
.y98_c00333{bottom:214.753657px;}
.y9c_c00333{bottom:214.753665px;}
.y9b_c00333{bottom:214.754010px;}
.y8d_c00333{bottom:230.007547px;}
.y8e_c00333{bottom:230.390520px;}
.y8f_c00333{bottom:230.698830px;}
.y90_c00333{bottom:231.558517px;}
.y91_c00333{bottom:232.112557px;}
.y92_c00333{bottom:232.278487px;}
.y93_c00333{bottom:233.064277px;}
.y94_c00333{bottom:233.316900px;}
.y95_c00333{bottom:233.612235px;}
.y87_c00333{bottom:246.749917px;}
.y88_c00333{bottom:247.702927px;}
.y89_c00333{bottom:248.035350px;}
.y8a_c00333{bottom:248.969947px;}
.y8b_c00333{bottom:249.864352px;}
.y8c_c00333{bottom:250.285230px;}
.y7f_c00333{bottom:262.954590px;}
.y80_c00333{bottom:263.905477px;}
.y81_c00333{bottom:264.540007px;}
.y82_c00333{bottom:265.364580px;}
.y83_c00333{bottom:265.614525px;}
.y84_c00333{bottom:266.211105px;}
.y85_c00333{bottom:267.099960px;}
.y86_c00333{bottom:267.514912px;}
.y78_c00333{bottom:279.965887px;}
.y79_c00333{bottom:280.816260px;}
.y7a_c00333{bottom:281.822910px;}
.y7b_c00333{bottom:282.180412px;}
.y7c_c00333{bottom:282.532155px;}
.y7d_c00333{bottom:283.659885px;}
.y7e_c00333{bottom:284.355750px;}
.y70_c00333{bottom:296.436622px;}
.y71_c00333{bottom:297.002295px;}
.y72_c00333{bottom:297.794400px;}
.y73_c00333{bottom:298.435635px;}
.y74_c00333{bottom:299.217060px;}
.y75_c00333{bottom:299.796450px;}
.y76_c00333{bottom:301.065045px;}
.y77_c00333{bottom:301.566420px;}
.y67_c00333{bottom:313.721347px;}
.y68_c00333{bottom:313.955078px;}
.y69_c00333{bottom:314.326853px;}
.y6a_c00333{bottom:315.083647px;}
.y6b_c00333{bottom:316.065938px;}
.y6c_c00333{bottom:316.355678px;}
.y6d_c00333{bottom:317.190165px;}
.y6e_c00333{bottom:317.616540px;}
.y6f_c00333{bottom:318.484643px;}
.y5f_c00333{bottom:331.000283px;}
.y60_c00333{bottom:331.358340px;}
.y61_c00333{bottom:332.075490px;}
.y62_c00333{bottom:332.746403px;}
.y63_c00333{bottom:333.444547px;}
.y64_c00333{bottom:333.899587px;}
.y65_c00333{bottom:334.844910px;}
.y66_c00333{bottom:335.162242px;}
.y59_c00333{bottom:348.284115px;}
.y5a_c00333{bottom:349.583512px;}
.y5b_c00333{bottom:350.474033px;}
.y5c_c00333{bottom:350.698560px;}
.y5d_c00333{bottom:351.199748px;}
.y5e_c00333{bottom:352.145137px;}
.y50_c00333{bottom:365.835412px;}
.y51_c00333{bottom:366.547515px;}
.y52_c00333{bottom:367.126530px;}
.y53_c00333{bottom:367.608480px;}
.y54_c00333{bottom:367.961955px;}
.y55_c00333{bottom:368.771010px;}
.y56_c00333{bottom:369.414892px;}
.y57_c00333{bottom:369.857445px;}
.y58_c00333{bottom:370.136985px;}
.y48_c00333{bottom:383.116567px;}
.y49_c00333{bottom:383.374103px;}
.y4a_c00333{bottom:383.770920px;}
.y4b_c00333{bottom:384.025260px;}
.y4c_c00333{bottom:384.708788px;}
.y4d_c00333{bottom:385.690342px;}
.y4e_c00333{bottom:386.268330px;}
.y4f_c00333{bottom:387.093652px;}
.y41_c00333{bottom:400.667790px;}
.y42_c00333{bottom:400.905712px;}
.y43_c00333{bottom:401.403667px;}
.y44_c00333{bottom:401.550450px;}
.y45_c00333{bottom:402.550800px;}
.y46_c00333{bottom:403.035630px;}
.y47_c00333{bottom:403.731487px;}
.y39_c00333{bottom:416.871510px;}
.y3a_c00333{bottom:417.201660px;}
.y3b_c00333{bottom:417.353513px;}
.y3c_c00333{bottom:418.160378px;}
.y3d_c00333{bottom:418.927073px;}
.y3e_c00333{bottom:419.185005px;}
.y3f_c00333{bottom:420.041025px;}
.y40_c00333{bottom:420.329250px;}
.y32_c00333{bottom:433.884465px;}
.y33_c00333{bottom:434.989868px;}
.y34_c00333{bottom:435.876840px;}
.y35_c00333{bottom:436.106632px;}
.y36_c00333{bottom:436.346955px;}
.y37_c00333{bottom:437.261175px;}
.y38_c00333{bottom:437.711895px;}
.y29_c00333{bottom:450.897488px;}
.y2a_c00333{bottom:451.601153px;}
.y2b_c00333{bottom:451.906612px;}
.y2c_c00333{bottom:452.638778px;}
.y2d_c00333{bottom:452.944463px;}
.y2e_c00333{bottom:453.361043px;}
.y2f_c00333{bottom:453.909472px;}
.y30_c00333{bottom:454.278315px;}
.y31_c00333{bottom:454.574610px;}
.y21_c00333{bottom:468.179633px;}
.y22_c00333{bottom:468.489368px;}
.y23_c00333{bottom:469.339290px;}
.y24_c00333{bottom:469.597905px;}
.y25_c00333{bottom:470.433045px;}
.y26_c00333{bottom:470.663685px;}
.y27_c00333{bottom:471.415793px;}
.y28_c00333{bottom:472.140983px;}
.y19_c00333{bottom:484.651470px;}
.y1a_c00333{bottom:484.935060px;}
.y1b_c00333{bottom:485.497943px;}
.y1c_c00333{bottom:485.926230px;}
.y1d_c00333{bottom:486.813562px;}
.y1e_c00333{bottom:487.288200px;}
.y1f_c00333{bottom:488.234820px;}
.y20_c00333{bottom:488.463060px;}
.y11_c00333{bottom:501.933000px;}
.y12_c00333{bottom:502.204508px;}
.y13_c00333{bottom:502.540432px;}
.y14_c00333{bottom:502.998150px;}
.y15_c00333{bottom:503.366295px;}
.y16_c00333{bottom:504.491880px;}
.y17_c00333{bottom:504.910268px;}
.y18_c00333{bottom:505.691108px;}
.y10_c00333{bottom:518.659500px;}
.y9_c00333{bottom:534.874500px;}
.ya_c00333{bottom:535.369500px;}
.yb_c00333{bottom:536.586000px;}
.yc_c00333{bottom:537.687000px;}
.yd_c00333{bottom:537.990000px;}
.ye_c00333{bottom:538.750500px;}
.yf_c00333{bottom:538.963500px;}
.y2_c00333{bottom:552.154500px;}
.y3_c00333{bottom:552.606000px;}
.y4_c00333{bottom:554.020500px;}
.y5_c00333{bottom:554.628000px;}
.y6_c00333{bottom:555.679500px;}
.y7_c00333{bottom:556.372500px;}
.y8_c00333{bottom:556.885500px;}
.y1_c00333{bottom:572.146500px;}
.hc_c00333{height:55.656260px;}
.h8_c00333{height:56.706378px;}
.h7_c00333{height:57.756497px;}
.h4_c00333{height:58.800000px;}
.ha_c00333{height:58.806615px;}
.h5_c00333{height:59.850000px;}
.hd_c00333{height:59.856733px;}
.he_c00333{height:60.906851px;}
.h9_c00333{height:63.007087px;}
.h2_c00333{height:64.050000px;}
.h10_c00333{height:64.057205px;}
.h12_c00333{height:65.107323px;}
.h6_c00333{height:66.157441px;}
.h3_c00333{height:67.200000px;}
.hb_c00333{height:67.207560px;}
.hf_c00333{height:68.257678px;}
.h11_c00333{height:70.357914px;}
.h0_c00333{height:613.170000px;}
.h1_c00333{height:613.500000px;}
.w0_c00333{width:359.100000px;}
.w1_c00333{width:359.250000px;}
.x0_c00333{left:0.000000px;}
.x3_c00333{left:39.391500px;}
.x54_c00333{left:40.422967px;}
.x46_c00333{left:53.393550px;}
.x1a_c00333{left:57.695895px;}
.x5f_c00333{left:59.556457px;}
.x21_c00333{left:61.463873px;}
.x4_c00333{left:63.148500px;}
.x12_c00333{left:64.438500px;}
.x10_c00333{left:66.420000px;}
.xa_c00333{left:68.211000px;}
.x5a_c00333{left:69.279810px;}
.x4d_c00333{left:70.966237px;}
.x69_c00333{left:72.322425px;}
.x63_c00333{left:74.108632px;}
.x47_c00333{left:75.277897px;}
.x32_c00333{left:76.577137px;}
.x6d_c00333{left:80.363865px;}
.x13_c00333{left:82.539000px;}
.x11_c00333{left:84.240000px;}
.x3a_c00333{left:86.243437px;}
.x64_c00333{left:87.962632px;}
.x27_c00333{left:89.542455px;}
.x52_c00333{left:93.345007px;}
.x1b_c00333{left:95.221395px;}
.x55_c00333{left:99.814567px;}
.x60_c00333{left:101.405977px;}
.x43_c00333{left:103.360545px;}
.x14_c00333{left:104.934000px;}
.x36_c00333{left:107.000175px;}
.x6e_c00333{left:109.993185px;}
.x28_c00333{left:111.406792px;}
.x2e_c00333{left:113.577975px;}
.x4e_c00333{left:114.971257px;}
.x42_c00333{left:116.602462px;}
.x37_c00333{left:120.286462px;}
.x22_c00333{left:122.126273px;}
.x1c_c00333{left:123.773895px;}
.x3d_c00333{left:125.675918px;}
.x59_c00333{left:131.651227px;}
.x66_c00333{left:132.708810px;}
.x15_c00333{left:135.448500px;}
.x5_c00333{left:137.580000px;}
.x33_c00333{left:138.670005px;}
.xb_c00333{left:139.804500px;}
.x44_c00333{left:142.786852px;}
.x6a_c00333{left:148.717777px;}
.x4f_c00333{left:150.618660px;}
.x3b_c00333{left:153.268950px;}
.x53_c00333{left:156.254062px;}
.x3e_c00333{left:157.805918px;}
.x16_c00333{left:159.991500px;}
.x29_c00333{left:163.718580px;}
.x67_c00333{left:167.003310px;}
.x6_c00333{left:169.525500px;}
.x1_c00333{left:173.340000px;}
.x72_c00333{left:176.027482px;}
.x48_c00333{left:177.613837px;}
.x61_c00333{left:178.900635px;}
.x76_c00333{left:180.067312px;}
.x3f_c00333{left:181.370917px;}
.x1d_c00333{left:182.929395px;}
.x2a_c00333{left:185.597917px;}
.x6b_c00333{left:186.787215px;}
.x2f_c00333{left:188.028975px;}
.x56_c00333{left:191.086717px;}
.x68_c00333{left:192.915810px;}
.x49_c00333{left:194.629320px;}
.x34_c00333{left:197.684782px;}
.x23_c00333{left:200.244443px;}
.x5b_c00333{left:201.786292px;}
.x75_c00333{left:203.432512px;}
.xc_c00333{left:204.595500px;}
.x57_c00333{left:206.749492px;}
.x38_c00333{left:211.281930px;}
.x1e_c00333{left:214.571895px;}
.x24_c00333{left:216.720690px;}
.xd_c00333{left:222.429000px;}
.x6c_c00333{left:223.694152px;}
.x7_c00333{left:224.860500px;}
.x50_c00333{left:226.236262px;}
.x73_c00333{left:228.397545px;}
.x62_c00333{left:233.173897px;}
.x17_c00333{left:235.030500px;}
.x4a_c00333{left:243.760357px;}
.x5e_c00333{left:249.775417px;}
.x6f_c00333{left:252.081937px;}
.x2b_c00333{left:254.532952px;}
.x8_c00333{left:261.312000px;}
.x18_c00333{left:262.923000px;}
.x30_c00333{left:264.998475px;}
.xe_c00333{left:267.153000px;}
.x4b_c00333{left:268.884615px;}
.x25_c00333{left:270.462000px;}
.x70_c00333{left:272.607045px;}
.x65_c00333{left:273.662632px;}
.x5c_c00333{left:275.036497px;}
.x1f_c00333{left:277.679895px;}
.xf_c00333{left:279.688500px;}
.x2c_c00333{left:280.922857px;}
.x2_c00333{left:282.420000px;}
.x45_c00333{left:284.838577px;}
.x9_c00333{left:288.318000px;}
.x71_c00333{left:289.650562px;}
.x20_c00333{left:292.895895px;}
.x31_c00333{left:295.046475px;}
.x51_c00333{left:296.706090px;}
.x58_c00333{left:299.577097px;}
.x2d_c00333{left:302.076172px;}
.x35_c00333{left:305.566522px;}
.x40_c00333{left:307.736918px;}
.x74_c00333{left:311.350335px;}
.x19_c00333{left:314.979000px;}
.x5d_c00333{left:317.168257px;}
.x39_c00333{left:318.500842px;}
.x4c_c00333{left:319.956585px;}
.x26_c00333{left:322.308788px;}
.x3c_c00333{left:323.662515px;}
.x41_c00333{left:326.372918px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fsa_c00333{font-size:49.472231pt;}
.fs6_c00333{font-size:50.405670pt;}
.fs5_c00333{font-size:51.339108pt;}
.fs2_c00333{font-size:52.266667pt;}
.fs8_c00333{font-size:52.272546pt;}
.fs3_c00333{font-size:53.200000pt;}
.fsb_c00333{font-size:53.205985pt;}
.fsc_c00333{font-size:54.139423pt;}
.fs7_c00333{font-size:56.006300pt;}
.fs0_c00333{font-size:56.933333pt;}
.fse_c00333{font-size:56.939738pt;}
.fs10_c00333{font-size:57.873176pt;}
.fs4_c00333{font-size:58.806615pt;}
.fs1_c00333{font-size:59.733333pt;}
.fs9_c00333{font-size:59.740053pt;}
.fsd_c00333{font-size:60.673491pt;}
.fsf_c00333{font-size:62.540368pt;}
.y0_c00333{bottom:0.000000pt;}
.ye7_c00333{bottom:20.826627pt;}
.ye8_c00333{bottom:21.427653pt;}
.ye9_c00333{bottom:22.239060pt;}
.yea_c00333{bottom:23.175553pt;}
.yeb_c00333{bottom:23.535893pt;}
.yec_c00333{bottom:24.548827pt;}
.yed_c00333{bottom:25.315520pt;}
.yee_c00333{bottom:25.570893pt;}
.ye0_c00333{bottom:35.471500pt;}
.ye1_c00333{bottom:35.946087pt;}
.ye2_c00333{bottom:37.128747pt;}
.ye3_c00333{bottom:37.624700pt;}
.ye4_c00333{bottom:38.546593pt;}
.ye5_c00333{bottom:39.930653pt;}
.ye6_c00333{bottom:40.517760pt;}
.yd9_c00333{bottom:51.310067pt;}
.yda_c00333{bottom:51.802967pt;}
.ydb_c00333{bottom:52.455487pt;}
.ydc_c00333{bottom:52.658940pt;}
.ydd_c00333{bottom:53.200440pt;}
.yde_c00333{bottom:53.488920pt;}
.ydf_c00333{bottom:54.552640pt;}
.yd2_c00333{bottom:65.715560pt;}
.yd3_c00333{bottom:66.319727pt;}
.yd4_c00333{bottom:67.328287pt;}
.yd5_c00333{bottom:68.129147pt;}
.yd6_c00333{bottom:69.060800pt;}
.yd7_c00333{bottom:69.478300pt;}
.yd8_c00333{bottom:70.534920pt;}
.ycb_c00333{bottom:81.078780pt;}
.ycc_c00333{bottom:81.569640pt;}
.ycd_c00333{bottom:82.335900pt;}
.yce_c00333{bottom:82.890200pt;}
.ycf_c00333{bottom:83.507060pt;}
.yd0_c00333{bottom:84.619153pt;}
.yd1_c00333{bottom:85.967907pt;}
.yc3_c00333{bottom:97.636047pt;}
.yc4_c00333{bottom:98.443707pt;}
.yc5_c00333{bottom:98.610193pt;}
.yc6_c00333{bottom:98.887807pt;}
.yc7_c00333{bottom:99.461627pt;}
.yc8_c00333{bottom:100.086167pt;}
.yc9_c00333{bottom:100.323827pt;}
.yca_c00333{bottom:100.520400pt;}
.ybc_c00333{bottom:111.559453pt;}
.ybd_c00333{bottom:112.174493pt;}
.ybe_c00333{bottom:112.938087pt;}
.ybf_c00333{bottom:113.285200pt;}
.yc0_c00333{bottom:113.864500pt;}
.yc1_c00333{bottom:115.092060pt;}
.yc2_c00333{bottom:115.497260pt;}
.yb5_c00333{bottom:127.160060pt;}
.yb6_c00333{bottom:127.622773pt;}
.yb7_c00333{bottom:128.709393pt;}
.yb8_c00333{bottom:129.250327pt;}
.yb9_c00333{bottom:129.775760pt;}
.yba_c00333{bottom:130.060733pt;}
.ybb_c00333{bottom:131.178107pt;}
.yac_c00333{bottom:142.522267pt;}
.yad_c00333{bottom:143.264487pt;}
.yae_c00333{bottom:143.756707pt;}
.yaf_c00333{bottom:144.213967pt;}
.yb0_c00333{bottom:144.559467pt;}
.yb1_c00333{bottom:144.859267pt;}
.yb2_c00333{bottom:145.542107pt;}
.yb3_c00333{bottom:145.726927pt;}
.yb4_c00333{bottom:146.281267pt;}
.ya3_c00333{bottom:157.884693pt;}
.ya4_c00333{bottom:158.337493pt;}
.ya5_c00333{bottom:158.522213pt;}
.ya6_c00333{bottom:159.220593pt;}
.ya7_c00333{bottom:159.523073pt;}
.ya8_c00333{bottom:159.972973pt;}
.ya9_c00333{bottom:160.221453pt;}
.yaa_c00333{bottom:160.998213pt;}
.yab_c00333{bottom:161.694333pt;}
.y9d_c00333{bottom:173.727273pt;}
.y9e_c00333{bottom:173.920347pt;}
.y9f_c00333{bottom:174.328973pt;}
.ya0_c00333{bottom:175.086173pt;}
.ya1_c00333{bottom:175.616440pt;}
.ya2_c00333{bottom:176.267967pt;}
.y96_c00333{bottom:190.891347pt;}
.y97_c00333{bottom:190.891780pt;}
.y9a_c00333{bottom:190.891847pt;}
.y99_c00333{bottom:190.891887pt;}
.y98_c00333{bottom:190.892140pt;}
.y9c_c00333{bottom:190.892147pt;}
.y9b_c00333{bottom:190.892453pt;}
.y8d_c00333{bottom:204.451153pt;}
.y8e_c00333{bottom:204.791573pt;}
.y8f_c00333{bottom:205.065627pt;}
.y90_c00333{bottom:205.829793pt;}
.y91_c00333{bottom:206.322273pt;}
.y92_c00333{bottom:206.469767pt;}
.y93_c00333{bottom:207.168247pt;}
.y94_c00333{bottom:207.392800pt;}
.y95_c00333{bottom:207.655320pt;}
.y87_c00333{bottom:219.333260pt;}
.y88_c00333{bottom:220.180380pt;}
.y89_c00333{bottom:220.475867pt;}
.y8a_c00333{bottom:221.306620pt;}
.y8b_c00333{bottom:222.101647pt;}
.y8c_c00333{bottom:222.475760pt;}
.y7f_c00333{bottom:233.737413pt;}
.y80_c00333{bottom:234.582647pt;}
.y81_c00333{bottom:235.146673pt;}
.y82_c00333{bottom:235.879627pt;}
.y83_c00333{bottom:236.101800pt;}
.y84_c00333{bottom:236.632093pt;}
.y85_c00333{bottom:237.422187pt;}
.y86_c00333{bottom:237.791033pt;}
.y78_c00333{bottom:248.858567pt;}
.y79_c00333{bottom:249.614453pt;}
.y7a_c00333{bottom:250.509253pt;}
.y7b_c00333{bottom:250.827033pt;}
.y7c_c00333{bottom:251.139693pt;}
.y7d_c00333{bottom:252.142120pt;}
.y7e_c00333{bottom:252.760667pt;}
.y70_c00333{bottom:263.499220pt;}
.y71_c00333{bottom:264.002040pt;}
.y72_c00333{bottom:264.706133pt;}
.y73_c00333{bottom:265.276120pt;}
.y74_c00333{bottom:265.970720pt;}
.y75_c00333{bottom:266.485733pt;}
.y76_c00333{bottom:267.613373pt;}
.y77_c00333{bottom:268.059040pt;}
.y67_c00333{bottom:278.863420pt;}
.y68_c00333{bottom:279.071180pt;}
.y69_c00333{bottom:279.401647pt;}
.y6a_c00333{bottom:280.074353pt;}
.y6b_c00333{bottom:280.947500pt;}
.y6c_c00333{bottom:281.205047pt;}
.y6d_c00333{bottom:281.946813pt;}
.y6e_c00333{bottom:282.325813pt;}
.y6f_c00333{bottom:283.097460pt;}
.y5f_c00333{bottom:294.222473pt;}
.y60_c00333{bottom:294.540747pt;}
.y61_c00333{bottom:295.178213pt;}
.y62_c00333{bottom:295.774580pt;}
.y63_c00333{bottom:296.395153pt;}
.y64_c00333{bottom:296.799633pt;}
.y65_c00333{bottom:297.639920pt;}
.y66_c00333{bottom:297.921993pt;}
.y59_c00333{bottom:309.585880pt;}
.y5a_c00333{bottom:310.740900pt;}
.y5b_c00333{bottom:311.532473pt;}
.y5c_c00333{bottom:311.732053pt;}
.y5d_c00333{bottom:312.177553pt;}
.y5e_c00333{bottom:313.017900pt;}
.y50_c00333{bottom:325.187033pt;}
.y51_c00333{bottom:325.820013pt;}
.y52_c00333{bottom:326.334693pt;}
.y53_c00333{bottom:326.763093pt;}
.y54_c00333{bottom:327.077293pt;}
.y55_c00333{bottom:327.796453pt;}
.y56_c00333{bottom:328.368793pt;}
.y57_c00333{bottom:328.762173pt;}
.y58_c00333{bottom:329.010653pt;}
.y48_c00333{bottom:340.548060pt;}
.y49_c00333{bottom:340.776980pt;}
.y4a_c00333{bottom:341.129707pt;}
.y4b_c00333{bottom:341.355787pt;}
.y4c_c00333{bottom:341.963367pt;}
.y4d_c00333{bottom:342.835860pt;}
.y4e_c00333{bottom:343.349627pt;}
.y4f_c00333{bottom:344.083247pt;}
.y41_c00333{bottom:356.149147pt;}
.y42_c00333{bottom:356.360633pt;}
.y43_c00333{bottom:356.803260pt;}
.y44_c00333{bottom:356.933733pt;}
.y45_c00333{bottom:357.822933pt;}
.y46_c00333{bottom:358.253893pt;}
.y47_c00333{bottom:358.872433pt;}
.y39_c00333{bottom:370.552453pt;}
.y3a_c00333{bottom:370.845920pt;}
.y3b_c00333{bottom:370.980900pt;}
.y3c_c00333{bottom:371.698113pt;}
.y3d_c00333{bottom:372.379620pt;}
.y3e_c00333{bottom:372.608893pt;}
.y3f_c00333{bottom:373.369800pt;}
.y40_c00333{bottom:373.626000pt;}
.y32_c00333{bottom:385.675080pt;}
.y33_c00333{bottom:386.657660pt;}
.y34_c00333{bottom:387.446080pt;}
.y35_c00333{bottom:387.650340pt;}
.y36_c00333{bottom:387.863960pt;}
.y37_c00333{bottom:388.676600pt;}
.y38_c00333{bottom:389.077240pt;}
.y29_c00333{bottom:400.797767pt;}
.y2a_c00333{bottom:401.423247pt;}
.y2b_c00333{bottom:401.694767pt;}
.y2c_c00333{bottom:402.345580pt;}
.y2d_c00333{bottom:402.617300pt;}
.y2e_c00333{bottom:402.987593pt;}
.y2f_c00333{bottom:403.475087pt;}
.y30_c00333{bottom:403.802947pt;}
.y31_c00333{bottom:404.066320pt;}
.y21_c00333{bottom:416.159673pt;}
.y22_c00333{bottom:416.434993pt;}
.y23_c00333{bottom:417.190480pt;}
.y24_c00333{bottom:417.420360pt;}
.y25_c00333{bottom:418.162707pt;}
.y26_c00333{bottom:418.367720pt;}
.y27_c00333{bottom:419.036260pt;}
.y28_c00333{bottom:419.680873pt;}
.y19_c00333{bottom:430.801307pt;}
.y1a_c00333{bottom:431.053387pt;}
.y1b_c00333{bottom:431.553727pt;}
.y1c_c00333{bottom:431.934427pt;}
.y1d_c00333{bottom:432.723167pt;}
.y1e_c00333{bottom:433.145067pt;}
.y1f_c00333{bottom:433.986507pt;}
.y20_c00333{bottom:434.189387pt;}
.y11_c00333{bottom:446.162667pt;}
.y12_c00333{bottom:446.404007pt;}
.y13_c00333{bottom:446.702607pt;}
.y14_c00333{bottom:447.109467pt;}
.y15_c00333{bottom:447.436707pt;}
.y16_c00333{bottom:448.437227pt;}
.y17_c00333{bottom:448.809127pt;}
.y18_c00333{bottom:449.503207pt;}
.y10_c00333{bottom:461.030667pt;}
.y9_c00333{bottom:475.444000pt;}
.ya_c00333{bottom:475.884000pt;}
.yb_c00333{bottom:476.965333pt;}
.yc_c00333{bottom:477.944000pt;}
.yd_c00333{bottom:478.213333pt;}
.ye_c00333{bottom:478.889333pt;}
.yf_c00333{bottom:479.078667pt;}
.y2_c00333{bottom:490.804000pt;}
.y3_c00333{bottom:491.205333pt;}
.y4_c00333{bottom:492.462667pt;}
.y5_c00333{bottom:493.002667pt;}
.y6_c00333{bottom:493.937333pt;}
.y7_c00333{bottom:494.553333pt;}
.y8_c00333{bottom:495.009333pt;}
.y1_c00333{bottom:508.574667pt;}
.hc_c00333{height:49.472231pt;}
.h8_c00333{height:50.405670pt;}
.h7_c00333{height:51.339108pt;}
.h4_c00333{height:52.266667pt;}
.ha_c00333{height:52.272546pt;}
.h5_c00333{height:53.200000pt;}
.hd_c00333{height:53.205985pt;}
.he_c00333{height:54.139423pt;}
.h9_c00333{height:56.006300pt;}
.h2_c00333{height:56.933333pt;}
.h10_c00333{height:56.939738pt;}
.h12_c00333{height:57.873176pt;}
.h6_c00333{height:58.806615pt;}
.h3_c00333{height:59.733333pt;}
.hb_c00333{height:59.740053pt;}
.hf_c00333{height:60.673491pt;}
.h11_c00333{height:62.540368pt;}
.h0_c00333{height:545.040000pt;}
.h1_c00333{height:545.333333pt;}
.w0_c00333{width:319.200000pt;}
.w1_c00333{width:319.333333pt;}
.x0_c00333{left:0.000000pt;}
.x3_c00333{left:35.014667pt;}
.x54_c00333{left:35.931527pt;}
.x46_c00333{left:47.460933pt;}
.x1a_c00333{left:51.285240pt;}
.x5f_c00333{left:52.939073pt;}
.x21_c00333{left:54.634553pt;}
.x4_c00333{left:56.132000pt;}
.x12_c00333{left:57.278667pt;}
.x10_c00333{left:59.040000pt;}
.xa_c00333{left:60.632000pt;}
.x5a_c00333{left:61.582053pt;}
.x4d_c00333{left:63.081100pt;}
.x69_c00333{left:64.286600pt;}
.x63_c00333{left:65.874340pt;}
.x47_c00333{left:66.913687pt;}
.x32_c00333{left:68.068567pt;}
.x6d_c00333{left:71.434547pt;}
.x13_c00333{left:73.368000pt;}
.x11_c00333{left:74.880000pt;}
.x3a_c00333{left:76.660833pt;}
.x64_c00333{left:78.189007pt;}
.x27_c00333{left:79.593293pt;}
.x52_c00333{left:82.973340pt;}
.x1b_c00333{left:84.641240pt;}
.x55_c00333{left:88.724060pt;}
.x60_c00333{left:90.138647pt;}
.x43_c00333{left:91.876040pt;}
.x14_c00333{left:93.274667pt;}
.x36_c00333{left:95.111267pt;}
.x6e_c00333{left:97.771720pt;}
.x28_c00333{left:99.028260pt;}
.x2e_c00333{left:100.958200pt;}
.x4e_c00333{left:102.196673pt;}
.x42_c00333{left:103.646633pt;}
.x37_c00333{left:106.921300pt;}
.x22_c00333{left:108.556687pt;}
.x1c_c00333{left:110.021240pt;}
.x3d_c00333{left:111.711927pt;}
.x59_c00333{left:117.023313pt;}
.x66_c00333{left:117.963387pt;}
.x15_c00333{left:120.398667pt;}
.x5_c00333{left:122.293333pt;}
.x33_c00333{left:123.262227pt;}
.xb_c00333{left:124.270667pt;}
.x44_c00333{left:126.921647pt;}
.x6a_c00333{left:132.193580pt;}
.x4f_c00333{left:133.883253pt;}
.x3b_c00333{left:136.239067pt;}
.x53_c00333{left:138.892500pt;}
.x3e_c00333{left:140.271927pt;}
.x16_c00333{left:142.214667pt;}
.x29_c00333{left:145.527627pt;}
.x67_c00333{left:148.447387pt;}
.x6_c00333{left:150.689333pt;}
.x1_c00333{left:154.080000pt;}
.x72_c00333{left:156.468873pt;}
.x48_c00333{left:157.878967pt;}
.x61_c00333{left:159.022787pt;}
.x76_c00333{left:160.059833pt;}
.x3f_c00333{left:161.218593pt;}
.x1d_c00333{left:162.603907pt;}
.x2a_c00333{left:164.975927pt;}
.x6b_c00333{left:166.033080pt;}
.x2f_c00333{left:167.136867pt;}
.x56_c00333{left:169.854860pt;}
.x68_c00333{left:171.480720pt;}
.x49_c00333{left:173.003840pt;}
.x34_c00333{left:175.719807pt;}
.x23_c00333{left:177.995060pt;}
.x5b_c00333{left:179.365593pt;}
.x75_c00333{left:180.828900pt;}
.xc_c00333{left:181.862667pt;}
.x57_c00333{left:183.777327pt;}
.x38_c00333{left:187.806160pt;}
.x1e_c00333{left:190.730573pt;}
.x24_c00333{left:192.640613pt;}
.xd_c00333{left:197.714667pt;}
.x6c_c00333{left:198.839247pt;}
.x7_c00333{left:199.876000pt;}
.x50_c00333{left:201.098900pt;}
.x73_c00333{left:203.020040pt;}
.x62_c00333{left:207.265687pt;}
.x17_c00333{left:208.916000pt;}
.x4a_c00333{left:216.675873pt;}
.x5e_c00333{left:222.022593pt;}
.x6f_c00333{left:224.072833pt;}
.x2b_c00333{left:226.251513pt;}
.x8_c00333{left:232.277333pt;}
.x18_c00333{left:233.709333pt;}
.x30_c00333{left:235.554200pt;}
.xe_c00333{left:237.469333pt;}
.x4b_c00333{left:239.008547pt;}
.x25_c00333{left:240.410667pt;}
.x70_c00333{left:242.317373pt;}
.x65_c00333{left:243.255673pt;}
.x5c_c00333{left:244.476887pt;}
.x1f_c00333{left:246.826573pt;}
.xf_c00333{left:248.612000pt;}
.x2c_c00333{left:249.709207pt;}
.x2_c00333{left:251.040000pt;}
.x45_c00333{left:253.189847pt;}
.x9_c00333{left:256.282667pt;}
.x71_c00333{left:257.467167pt;}
.x20_c00333{left:260.351907pt;}
.x31_c00333{left:262.263533pt;}
.x51_c00333{left:263.738747pt;}
.x58_c00333{left:266.290753pt;}
.x2d_c00333{left:268.512153pt;}
.x35_c00333{left:271.614687pt;}
.x40_c00333{left:273.543927pt;}
.x74_c00333{left:276.755853pt;}
.x19_c00333{left:279.981333pt;}
.x5d_c00333{left:281.927340pt;}
.x39_c00333{left:283.111860pt;}
.x4c_c00333{left:284.405853pt;}
.x26_c00333{left:286.496700pt;}
.x3c_c00333{left:287.700013pt;}
.x41_c00333{left:290.109260pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00334 {
    display:none;
  }
  .loading-indicator_c00334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00334 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00334 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00334" -> "#page-container .classname_c00334")
 */
.pf_c00334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00334 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00334 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00334 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00334 {overflow:visible;}
  }
}
.c_c00334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00334 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00334:after { /* webkit #35443 */
  content: '';
}
.t_c00334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00334 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00334 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00334 { /* info for Javascript */
  display:none;
}
.l_c00334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00334:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00334 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00334.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc9_c00334{transform:matrix(0.052116,-0.001407,0.006748,0.249909,0,0);-ms-transform:matrix(0.052116,-0.001407,0.006748,0.249909,0,0);-webkit-transform:matrix(0.052116,-0.001407,0.006748,0.249909,0,0);}
.mdb_c00334{transform:matrix(0.073733,-0.001991,0.006748,0.249909,0,0);-ms-transform:matrix(0.073733,-0.001991,0.006748,0.249909,0,0);-webkit-transform:matrix(0.073733,-0.001991,0.006748,0.249909,0,0);}
.m1_c00334{transform:matrix(0.100079,-0.002702,0.006748,0.249909,0,0);-ms-transform:matrix(0.100079,-0.002702,0.006748,0.249909,0,0);-webkit-transform:matrix(0.100079,-0.002702,0.006748,0.249909,0,0);}
.mdd_c00334{transform:matrix(0.130792,-0.003531,0.006748,0.249909,0,0);-ms-transform:matrix(0.130792,-0.003531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.130792,-0.003531,0.006748,0.249909,0,0);}
.mee_c00334{transform:matrix(0.131857,-0.003560,0.006748,0.249909,0,0);-ms-transform:matrix(0.131857,-0.003560,0.006748,0.249909,0,0);-webkit-transform:matrix(0.131857,-0.003560,0.006748,0.249909,0,0);}
.mef_c00334{transform:matrix(0.140934,-0.003805,0.006748,0.249909,0,0);-ms-transform:matrix(0.140934,-0.003805,0.006748,0.249909,0,0);-webkit-transform:matrix(0.140934,-0.003805,0.006748,0.249909,0,0);}
.m43_c00334{transform:matrix(0.141828,-0.003829,0.006748,0.249909,0,0);-ms-transform:matrix(0.141828,-0.003829,0.006748,0.249909,0,0);-webkit-transform:matrix(0.141828,-0.003829,0.006748,0.249909,0,0);}
.mf3_c00334{transform:matrix(0.149570,-0.004038,0.006748,0.249909,0,0);-ms-transform:matrix(0.149570,-0.004038,0.006748,0.249909,0,0);-webkit-transform:matrix(0.149570,-0.004038,0.006748,0.249909,0,0);}
.m87_c00334{transform:matrix(0.150055,-0.004051,0.006748,0.249909,0,0);-ms-transform:matrix(0.150055,-0.004051,0.006748,0.249909,0,0);-webkit-transform:matrix(0.150055,-0.004051,0.006748,0.249909,0,0);}
.mf0_c00334{transform:matrix(0.150685,-0.004068,0.006748,0.249909,0,0);-ms-transform:matrix(0.150685,-0.004068,0.006748,0.249909,0,0);-webkit-transform:matrix(0.150685,-0.004068,0.006748,0.249909,0,0);}
.mf2_c00334{transform:matrix(0.155418,-0.004196,0.006748,0.249909,0,0);-ms-transform:matrix(0.155418,-0.004196,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155418,-0.004196,0.006748,0.249909,0,0);}
.m2_c00334{transform:matrix(0.157498,-0.004252,0.006748,0.249909,0,0);-ms-transform:matrix(0.157498,-0.004252,0.006748,0.249909,0,0);-webkit-transform:matrix(0.157498,-0.004252,0.006748,0.249909,0,0);}
.m97_c00334{transform:matrix(0.158367,-0.004276,0.006748,0.249909,0,0);-ms-transform:matrix(0.158367,-0.004276,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158367,-0.004276,0.006748,0.249909,0,0);}
.ma_c00334{transform:matrix(0.158392,-0.004277,0.006748,0.249909,0,0);-ms-transform:matrix(0.158392,-0.004277,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158392,-0.004277,0.006748,0.249909,0,0);}
.m2b_c00334{transform:matrix(0.158712,-0.004285,0.006748,0.249909,0,0);-ms-transform:matrix(0.158712,-0.004285,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158712,-0.004285,0.006748,0.249909,0,0);}
.m60_c00334{transform:matrix(0.161591,-0.004363,0.006748,0.249909,0,0);-ms-transform:matrix(0.161591,-0.004363,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161591,-0.004363,0.006748,0.249909,0,0);}
.ma3_c00334{transform:matrix(0.161641,-0.004364,0.006748,0.249909,0,0);-ms-transform:matrix(0.161641,-0.004364,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161641,-0.004364,0.006748,0.249909,0,0);}
.m6_c00334{transform:matrix(0.163530,-0.004415,0.006748,0.249909,0,0);-ms-transform:matrix(0.163530,-0.004415,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163530,-0.004415,0.006748,0.249909,0,0);}
.m5f_c00334{transform:matrix(0.163595,-0.004417,0.006748,0.249909,0,0);-ms-transform:matrix(0.163595,-0.004417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163595,-0.004417,0.006748,0.249909,0,0);}
.m82_c00334{transform:matrix(0.163825,-0.004423,0.006748,0.249909,0,0);-ms-transform:matrix(0.163825,-0.004423,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163825,-0.004423,0.006748,0.249909,0,0);}
.maf_c00334{transform:matrix(0.163920,-0.004426,0.006748,0.249909,0,0);-ms-transform:matrix(0.163920,-0.004426,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163920,-0.004426,0.006748,0.249909,0,0);}
.m9d_c00334{transform:matrix(0.164185,-0.004433,0.006748,0.249909,0,0);-ms-transform:matrix(0.164185,-0.004433,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164185,-0.004433,0.006748,0.249909,0,0);}
.m25_c00334{transform:matrix(0.165405,-0.004466,0.006748,0.249909,0,0);-ms-transform:matrix(0.165405,-0.004466,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165405,-0.004466,0.006748,0.249909,0,0);}
.m91_c00334{transform:matrix(0.165840,-0.004478,0.006748,0.249909,0,0);-ms-transform:matrix(0.165840,-0.004478,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165840,-0.004478,0.006748,0.249909,0,0);}
.ma7_c00334{transform:matrix(0.167899,-0.004533,0.006748,0.249909,0,0);-ms-transform:matrix(0.167899,-0.004533,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167899,-0.004533,0.006748,0.249909,0,0);}
.m17_c00334{transform:matrix(0.168089,-0.004538,0.006748,0.249909,0,0);-ms-transform:matrix(0.168089,-0.004538,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168089,-0.004538,0.006748,0.249909,0,0);}
.mc0_c00334{transform:matrix(0.168719,-0.004555,0.006748,0.249909,0,0);-ms-transform:matrix(0.168719,-0.004555,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168719,-0.004555,0.006748,0.249909,0,0);}
.m63_c00334{transform:matrix(0.168953,-0.004562,0.006748,0.249909,0,0);-ms-transform:matrix(0.168953,-0.004562,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168953,-0.004562,0.006748,0.249909,0,0);}
.med_c00334{transform:matrix(0.168978,-0.004562,0.006748,0.249909,0,0);-ms-transform:matrix(0.168978,-0.004562,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168978,-0.004562,0.006748,0.249909,0,0);}
.m4d_c00334{transform:matrix(0.169413,-0.004574,0.006748,0.249909,0,0);-ms-transform:matrix(0.169413,-0.004574,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169413,-0.004574,0.006748,0.249909,0,0);}
.mf1_c00334{transform:matrix(0.169758,-0.004583,0.006748,0.249909,0,0);-ms-transform:matrix(0.169758,-0.004583,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169758,-0.004583,0.006748,0.249909,0,0);}
.m5e_c00334{transform:matrix(0.170883,-0.004614,0.006748,0.249909,0,0);-ms-transform:matrix(0.170883,-0.004614,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170883,-0.004614,0.006748,0.249909,0,0);}
.md0_c00334{transform:matrix(0.171178,-0.004622,0.006748,0.249909,0,0);-ms-transform:matrix(0.171178,-0.004622,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171178,-0.004622,0.006748,0.249909,0,0);}
.m4e_c00334{transform:matrix(0.171278,-0.004624,0.006748,0.249909,0,0);-ms-transform:matrix(0.171278,-0.004624,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171278,-0.004624,0.006748,0.249909,0,0);}
.m99_c00334{transform:matrix(0.171552,-0.004632,0.006748,0.249909,0,0);-ms-transform:matrix(0.171552,-0.004632,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171552,-0.004632,0.006748,0.249909,0,0);}
.m92_c00334{transform:matrix(0.172197,-0.004649,0.006748,0.249909,0,0);-ms-transform:matrix(0.172197,-0.004649,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172197,-0.004649,0.006748,0.249909,0,0);}
.m41_c00334{transform:matrix(0.173067,-0.004673,0.006748,0.249909,0,0);-ms-transform:matrix(0.173067,-0.004673,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173067,-0.004673,0.006748,0.249909,0,0);}
.mbd_c00334{transform:matrix(0.173367,-0.004681,0.006748,0.249909,0,0);-ms-transform:matrix(0.173367,-0.004681,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173367,-0.004681,0.006748,0.249909,0,0);}
.mce_c00334{transform:matrix(0.173777,-0.004692,0.006748,0.249909,0,0);-ms-transform:matrix(0.173777,-0.004692,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173777,-0.004692,0.006748,0.249909,0,0);}
.m69_c00334{transform:matrix(0.174966,-0.004724,0.006748,0.249909,0,0);-ms-transform:matrix(0.174966,-0.004724,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174966,-0.004724,0.006748,0.249909,0,0);}
.m65_c00334{transform:matrix(0.175336,-0.004734,0.006748,0.249909,0,0);-ms-transform:matrix(0.175336,-0.004734,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175336,-0.004734,0.006748,0.249909,0,0);}
.m84_c00334{transform:matrix(0.176021,-0.004753,0.006748,0.249909,0,0);-ms-transform:matrix(0.176021,-0.004753,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176021,-0.004753,0.006748,0.249909,0,0);}
.m7a_c00334{transform:matrix(0.176541,-0.004767,0.006748,0.249909,0,0);-ms-transform:matrix(0.176541,-0.004767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176541,-0.004767,0.006748,0.249909,0,0);}
.m50_c00334{transform:matrix(0.176571,-0.004767,0.006748,0.249909,0,0);-ms-transform:matrix(0.176571,-0.004767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176571,-0.004767,0.006748,0.249909,0,0);}
.mf6_c00334{transform:matrix(0.176956,-0.004778,0.006748,0.249909,0,0);-ms-transform:matrix(0.176956,-0.004778,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176956,-0.004778,0.006748,0.249909,0,0);}
.m2e_c00334{transform:matrix(0.177110,-0.004782,0.006748,0.249909,0,0);-ms-transform:matrix(0.177110,-0.004782,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177110,-0.004782,0.006748,0.249909,0,0);}
.m4a_c00334{transform:matrix(0.177180,-0.004784,0.006748,0.249909,0,0);-ms-transform:matrix(0.177180,-0.004784,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177180,-0.004784,0.006748,0.249909,0,0);}
.m4c_c00334{transform:matrix(0.177685,-0.004798,0.006748,0.249909,0,0);-ms-transform:matrix(0.177685,-0.004798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177685,-0.004798,0.006748,0.249909,0,0);}
.mb2_c00334{transform:matrix(0.177965,-0.004805,0.006748,0.249909,0,0);-ms-transform:matrix(0.177965,-0.004805,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177965,-0.004805,0.006748,0.249909,0,0);}
.m44_c00334{transform:matrix(0.178615,-0.004823,0.006748,0.249909,0,0);-ms-transform:matrix(0.178615,-0.004823,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178615,-0.004823,0.006748,0.249909,0,0);}
.m52_c00334{transform:matrix(0.178825,-0.004828,0.006748,0.249909,0,0);-ms-transform:matrix(0.178825,-0.004828,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178825,-0.004828,0.006748,0.249909,0,0);}
.m16_c00334{transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);-ms-transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179000,-0.004833,0.006748,0.249909,0,0);}
.mc_c00334{transform:matrix(0.179070,-0.004835,0.006748,0.249909,0,0);-ms-transform:matrix(0.179070,-0.004835,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179070,-0.004835,0.006748,0.249909,0,0);}
.m94_c00334{transform:matrix(0.179130,-0.004837,0.006748,0.249909,0,0);-ms-transform:matrix(0.179130,-0.004837,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179130,-0.004837,0.006748,0.249909,0,0);}
.m96_c00334{transform:matrix(0.179804,-0.004855,0.006748,0.249909,0,0);-ms-transform:matrix(0.179804,-0.004855,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179804,-0.004855,0.006748,0.249909,0,0);}
.mb0_c00334{transform:matrix(0.179894,-0.004857,0.006748,0.249909,0,0);-ms-transform:matrix(0.179894,-0.004857,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179894,-0.004857,0.006748,0.249909,0,0);}
.me9_c00334{transform:matrix(0.180944,-0.004885,0.006748,0.249909,0,0);-ms-transform:matrix(0.180944,-0.004885,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180944,-0.004885,0.006748,0.249909,0,0);}
.m1c_c00334{transform:matrix(0.181139,-0.004891,0.006748,0.249909,0,0);-ms-transform:matrix(0.181139,-0.004891,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181139,-0.004891,0.006748,0.249909,0,0);}
.m89_c00334{transform:matrix(0.181554,-0.004902,0.006748,0.249909,0,0);-ms-transform:matrix(0.181554,-0.004902,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181554,-0.004902,0.006748,0.249909,0,0);}
.m3d_c00334{transform:matrix(0.182024,-0.004915,0.006748,0.249909,0,0);-ms-transform:matrix(0.182024,-0.004915,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182024,-0.004915,0.006748,0.249909,0,0);}
.md_c00334{transform:matrix(0.182214,-0.004920,0.006748,0.249909,0,0);-ms-transform:matrix(0.182214,-0.004920,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182214,-0.004920,0.006748,0.249909,0,0);}
.me5_c00334{transform:matrix(0.182224,-0.004920,0.006748,0.249909,0,0);-ms-transform:matrix(0.182224,-0.004920,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182224,-0.004920,0.006748,0.249909,0,0);}
.m46_c00334{transform:matrix(0.182239,-0.004920,0.006748,0.249909,0,0);-ms-transform:matrix(0.182239,-0.004920,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182239,-0.004920,0.006748,0.249909,0,0);}
.m35_c00334{transform:matrix(0.182289,-0.004922,0.006748,0.249909,0,0);-ms-transform:matrix(0.182289,-0.004922,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182289,-0.004922,0.006748,0.249909,0,0);}
.m6a_c00334{transform:matrix(0.182389,-0.004924,0.006748,0.249909,0,0);-ms-transform:matrix(0.182389,-0.004924,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182389,-0.004924,0.006748,0.249909,0,0);}
.mc5_c00334{transform:matrix(0.182703,-0.004933,0.006748,0.249909,0,0);-ms-transform:matrix(0.182703,-0.004933,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182703,-0.004933,0.006748,0.249909,0,0);}
.m11_c00334{transform:matrix(0.183268,-0.004948,0.006748,0.249909,0,0);-ms-transform:matrix(0.183268,-0.004948,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183268,-0.004948,0.006748,0.249909,0,0);}
.me4_c00334{transform:matrix(0.183428,-0.004953,0.006748,0.249909,0,0);-ms-transform:matrix(0.183428,-0.004953,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183428,-0.004953,0.006748,0.249909,0,0);}
.m32_c00334{transform:matrix(0.183933,-0.004966,0.006748,0.249909,0,0);-ms-transform:matrix(0.183933,-0.004966,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183933,-0.004966,0.006748,0.249909,0,0);}
.m76_c00334{transform:matrix(0.184268,-0.004975,0.006748,0.249909,0,0);-ms-transform:matrix(0.184268,-0.004975,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184268,-0.004975,0.006748,0.249909,0,0);}
.mcf_c00334{transform:matrix(0.184493,-0.004981,0.006748,0.249909,0,0);-ms-transform:matrix(0.184493,-0.004981,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184493,-0.004981,0.006748,0.249909,0,0);}
.mec_c00334{transform:matrix(0.184863,-0.004991,0.006748,0.249909,0,0);-ms-transform:matrix(0.184863,-0.004991,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184863,-0.004991,0.006748,0.249909,0,0);}
.m30_c00334{transform:matrix(0.185512,-0.005009,0.006748,0.249909,0,0);-ms-transform:matrix(0.185512,-0.005009,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185512,-0.005009,0.006748,0.249909,0,0);}
.m8c_c00334{transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);-ms-transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185547,-0.005010,0.006748,0.249909,0,0);}
.m4b_c00334{transform:matrix(0.185662,-0.005013,0.006748,0.249909,0,0);-ms-transform:matrix(0.185662,-0.005013,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185662,-0.005013,0.006748,0.249909,0,0);}
.m5_c00334{transform:matrix(0.186052,-0.005023,0.006748,0.249909,0,0);-ms-transform:matrix(0.186052,-0.005023,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186052,-0.005023,0.006748,0.249909,0,0);}
.mde_c00334{transform:matrix(0.186302,-0.005030,0.006748,0.249909,0,0);-ms-transform:matrix(0.186302,-0.005030,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186302,-0.005030,0.006748,0.249909,0,0);}
.m9f_c00334{transform:matrix(0.186687,-0.005041,0.006748,0.249909,0,0);-ms-transform:matrix(0.186687,-0.005041,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186687,-0.005041,0.006748,0.249909,0,0);}
.m4_c00334{transform:matrix(0.186787,-0.005043,0.006748,0.249909,0,0);-ms-transform:matrix(0.186787,-0.005043,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186787,-0.005043,0.006748,0.249909,0,0);}
.m13_c00334{transform:matrix(0.187637,-0.005066,0.006748,0.249909,0,0);-ms-transform:matrix(0.187637,-0.005066,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187637,-0.005066,0.006748,0.249909,0,0);}
.md1_c00334{transform:matrix(0.187732,-0.005069,0.006748,0.249909,0,0);-ms-transform:matrix(0.187732,-0.005069,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187732,-0.005069,0.006748,0.249909,0,0);}
.mbe_c00334{transform:matrix(0.187952,-0.005075,0.006748,0.249909,0,0);-ms-transform:matrix(0.187952,-0.005075,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187952,-0.005075,0.006748,0.249909,0,0);}
.mac_c00334{transform:matrix(0.188456,-0.005088,0.006748,0.249909,0,0);-ms-transform:matrix(0.188456,-0.005088,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188456,-0.005088,0.006748,0.249909,0,0);}
.md9_c00334{transform:matrix(0.188531,-0.005090,0.006748,0.249909,0,0);-ms-transform:matrix(0.188531,-0.005090,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188531,-0.005090,0.006748,0.249909,0,0);}
.mad_c00334{transform:matrix(0.188666,-0.005094,0.006748,0.249909,0,0);-ms-transform:matrix(0.188666,-0.005094,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188666,-0.005094,0.006748,0.249909,0,0);}
.m68_c00334{transform:matrix(0.188956,-0.005102,0.006748,0.249909,0,0);-ms-transform:matrix(0.188956,-0.005102,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188956,-0.005102,0.006748,0.249909,0,0);}
.m6e_c00334{transform:matrix(0.188996,-0.005103,0.006748,0.249909,0,0);-ms-transform:matrix(0.188996,-0.005103,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188996,-0.005103,0.006748,0.249909,0,0);}
.m64_c00334{transform:matrix(0.189106,-0.005106,0.006748,0.249909,0,0);-ms-transform:matrix(0.189106,-0.005106,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189106,-0.005106,0.006748,0.249909,0,0);}
.m42_c00334{transform:matrix(0.189671,-0.005121,0.006748,0.249909,0,0);-ms-transform:matrix(0.189671,-0.005121,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189671,-0.005121,0.006748,0.249909,0,0);}
.m9_c00334{transform:matrix(0.189831,-0.005125,0.006748,0.249909,0,0);-ms-transform:matrix(0.189831,-0.005125,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189831,-0.005125,0.006748,0.249909,0,0);}
.mdc_c00334{transform:matrix(0.189941,-0.005128,0.006748,0.249909,0,0);-ms-transform:matrix(0.189941,-0.005128,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189941,-0.005128,0.006748,0.249909,0,0);}
.mca_c00334{transform:matrix(0.189986,-0.005130,0.006748,0.249909,0,0);-ms-transform:matrix(0.189986,-0.005130,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189986,-0.005130,0.006748,0.249909,0,0);}
.me8_c00334{transform:matrix(0.190466,-0.005143,0.006748,0.249909,0,0);-ms-transform:matrix(0.190466,-0.005143,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190466,-0.005143,0.006748,0.249909,0,0);}
.meb_c00334{transform:matrix(0.190835,-0.005153,0.006748,0.249909,0,0);-ms-transform:matrix(0.190835,-0.005153,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190835,-0.005153,0.006748,0.249909,0,0);}
.m39_c00334{transform:matrix(0.190990,-0.005157,0.006748,0.249909,0,0);-ms-transform:matrix(0.190990,-0.005157,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190990,-0.005157,0.006748,0.249909,0,0);}
.ma8_c00334{transform:matrix(0.191615,-0.005174,0.006748,0.249909,0,0);-ms-transform:matrix(0.191615,-0.005174,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191615,-0.005174,0.006748,0.249909,0,0);}
.mb4_c00334{transform:matrix(0.191790,-0.005178,0.006748,0.249909,0,0);-ms-transform:matrix(0.191790,-0.005178,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191790,-0.005178,0.006748,0.249909,0,0);}
.m93_c00334{transform:matrix(0.191890,-0.005181,0.006748,0.249909,0,0);-ms-transform:matrix(0.191890,-0.005181,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191890,-0.005181,0.006748,0.249909,0,0);}
.mb6_c00334{transform:matrix(0.191990,-0.005184,0.006748,0.249909,0,0);-ms-transform:matrix(0.191990,-0.005184,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191990,-0.005184,0.006748,0.249909,0,0);}
.m61_c00334{transform:matrix(0.192010,-0.005184,0.006748,0.249909,0,0);-ms-transform:matrix(0.192010,-0.005184,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192010,-0.005184,0.006748,0.249909,0,0);}
.m62_c00334{transform:matrix(0.192370,-0.005194,0.006748,0.249909,0,0);-ms-transform:matrix(0.192370,-0.005194,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192370,-0.005194,0.006748,0.249909,0,0);}
.mda_c00334{transform:matrix(0.193005,-0.005211,0.006748,0.249909,0,0);-ms-transform:matrix(0.193005,-0.005211,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193005,-0.005211,0.006748,0.249909,0,0);}
.m54_c00334{transform:matrix(0.193494,-0.005224,0.006748,0.249909,0,0);-ms-transform:matrix(0.193494,-0.005224,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193494,-0.005224,0.006748,0.249909,0,0);}
.me3_c00334{transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);-ms-transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);}
.m53_c00334{transform:matrix(0.193729,-0.005231,0.006748,0.249909,0,0);-ms-transform:matrix(0.193729,-0.005231,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193729,-0.005231,0.006748,0.249909,0,0);}
.mf8_c00334{transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);-ms-transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);}
.m3f_c00334{transform:matrix(0.194109,-0.005241,0.006748,0.249909,0,0);-ms-transform:matrix(0.194109,-0.005241,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194109,-0.005241,0.006748,0.249909,0,0);}
.m5d_c00334{transform:matrix(0.194239,-0.005244,0.006748,0.249909,0,0);-ms-transform:matrix(0.194239,-0.005244,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194239,-0.005244,0.006748,0.249909,0,0);}
.mc6_c00334{transform:matrix(0.194329,-0.005247,0.006748,0.249909,0,0);-ms-transform:matrix(0.194329,-0.005247,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194329,-0.005247,0.006748,0.249909,0,0);}
.mbc_c00334{transform:matrix(0.194519,-0.005252,0.006748,0.249909,0,0);-ms-transform:matrix(0.194519,-0.005252,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194519,-0.005252,0.006748,0.249909,0,0);}
.m15_c00334{transform:matrix(0.195129,-0.005268,0.006748,0.249909,0,0);-ms-transform:matrix(0.195129,-0.005268,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195129,-0.005268,0.006748,0.249909,0,0);}
.me2_c00334{transform:matrix(0.195134,-0.005269,0.006748,0.249909,0,0);-ms-transform:matrix(0.195134,-0.005269,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195134,-0.005269,0.006748,0.249909,0,0);}
.m40_c00334{transform:matrix(0.196468,-0.005305,0.006748,0.249909,0,0);-ms-transform:matrix(0.196468,-0.005305,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196468,-0.005305,0.006748,0.249909,0,0);}
.ma1_c00334{transform:matrix(0.196858,-0.005315,0.006748,0.249909,0,0);-ms-transform:matrix(0.196858,-0.005315,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196858,-0.005315,0.006748,0.249909,0,0);}
.mb_c00334{transform:matrix(0.197383,-0.005329,0.006748,0.249909,0,0);-ms-transform:matrix(0.197383,-0.005329,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197383,-0.005329,0.006748,0.249909,0,0);}
.m33_c00334{transform:matrix(0.197418,-0.005330,0.006748,0.249909,0,0);-ms-transform:matrix(0.197418,-0.005330,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197418,-0.005330,0.006748,0.249909,0,0);}
.m26_c00334{transform:matrix(0.198108,-0.005349,0.006748,0.249909,0,0);-ms-transform:matrix(0.198108,-0.005349,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198108,-0.005349,0.006748,0.249909,0,0);}
.m57_c00334{transform:matrix(0.198318,-0.005355,0.006748,0.249909,0,0);-ms-transform:matrix(0.198318,-0.005355,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198318,-0.005355,0.006748,0.249909,0,0);}
.m4f_c00334{transform:matrix(0.198383,-0.005356,0.006748,0.249909,0,0);-ms-transform:matrix(0.198383,-0.005356,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198383,-0.005356,0.006748,0.249909,0,0);}
.me1_c00334{transform:matrix(0.198778,-0.005367,0.006748,0.249909,0,0);-ms-transform:matrix(0.198778,-0.005367,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198778,-0.005367,0.006748,0.249909,0,0);}
.m85_c00334{transform:matrix(0.198803,-0.005368,0.006748,0.249909,0,0);-ms-transform:matrix(0.198803,-0.005368,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198803,-0.005368,0.006748,0.249909,0,0);}
.m3_c00334{transform:matrix(0.198813,-0.005368,0.006748,0.249909,0,0);-ms-transform:matrix(0.198813,-0.005368,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198813,-0.005368,0.006748,0.249909,0,0);}
.m59_c00334{transform:matrix(0.199137,-0.005377,0.006748,0.249909,0,0);-ms-transform:matrix(0.199137,-0.005377,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199137,-0.005377,0.006748,0.249909,0,0);}
.mba_c00334{transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);-ms-transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);}
.mae_c00334{transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);-ms-transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199737,-0.005393,0.006748,0.249909,0,0);}
.m22_c00334{transform:matrix(0.200222,-0.005406,0.006748,0.249909,0,0);-ms-transform:matrix(0.200222,-0.005406,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200222,-0.005406,0.006748,0.249909,0,0);}
.m20_c00334{transform:matrix(0.200622,-0.005417,0.006748,0.249909,0,0);-ms-transform:matrix(0.200622,-0.005417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200622,-0.005417,0.006748,0.249909,0,0);}
.m66_c00334{transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);-ms-transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200692,-0.005419,0.006748,0.249909,0,0);}
.mbb_c00334{transform:matrix(0.200707,-0.005419,0.006748,0.249909,0,0);-ms-transform:matrix(0.200707,-0.005419,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200707,-0.005419,0.006748,0.249909,0,0);}
.m14_c00334{transform:matrix(0.201122,-0.005430,0.006748,0.249909,0,0);-ms-transform:matrix(0.201122,-0.005430,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201122,-0.005430,0.006748,0.249909,0,0);}
.mb1_c00334{transform:matrix(0.201347,-0.005436,0.006748,0.249909,0,0);-ms-transform:matrix(0.201347,-0.005436,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201347,-0.005436,0.006748,0.249909,0,0);}
.m29_c00334{transform:matrix(0.201991,-0.005454,0.006748,0.249909,0,0);-ms-transform:matrix(0.201991,-0.005454,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201991,-0.005454,0.006748,0.249909,0,0);}
.m7_c00334{transform:matrix(0.202151,-0.005458,0.006748,0.249909,0,0);-ms-transform:matrix(0.202151,-0.005458,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202151,-0.005458,0.006748,0.249909,0,0);}
.mf4_c00334{transform:matrix(0.202441,-0.005466,0.006748,0.249909,0,0);-ms-transform:matrix(0.202441,-0.005466,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202441,-0.005466,0.006748,0.249909,0,0);}
.mf5_c00334{transform:matrix(0.202721,-0.005473,0.006748,0.249909,0,0);-ms-transform:matrix(0.202721,-0.005473,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202721,-0.005473,0.006748,0.249909,0,0);}
.ma2_c00334{transform:matrix(0.202921,-0.005479,0.006748,0.249909,0,0);-ms-transform:matrix(0.202921,-0.005479,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202921,-0.005479,0.006748,0.249909,0,0);}
.m7d_c00334{transform:matrix(0.203411,-0.005492,0.006748,0.249909,0,0);-ms-transform:matrix(0.203411,-0.005492,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203411,-0.005492,0.006748,0.249909,0,0);}
.ma4_c00334{transform:matrix(0.203786,-0.005502,0.006748,0.249909,0,0);-ms-transform:matrix(0.203786,-0.005502,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203786,-0.005502,0.006748,0.249909,0,0);}
.mb7_c00334{transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);-ms-transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204001,-0.005508,0.006748,0.249909,0,0);}
.m3b_c00334{transform:matrix(0.204076,-0.005510,0.006748,0.249909,0,0);-ms-transform:matrix(0.204076,-0.005510,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204076,-0.005510,0.006748,0.249909,0,0);}
.m8f_c00334{transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);-ms-transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);}
.m8_c00334{transform:matrix(0.204475,-0.005521,0.006748,0.249909,0,0);-ms-transform:matrix(0.204475,-0.005521,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204475,-0.005521,0.006748,0.249909,0,0);}
.m9c_c00334{transform:matrix(0.204840,-0.005531,0.006748,0.249909,0,0);-ms-transform:matrix(0.204840,-0.005531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204840,-0.005531,0.006748,0.249909,0,0);}
.m81_c00334{transform:matrix(0.205075,-0.005537,0.006748,0.249909,0,0);-ms-transform:matrix(0.205075,-0.005537,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205075,-0.005537,0.006748,0.249909,0,0);}
.ma6_c00334{transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-ms-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);}
.m9e_c00334{transform:matrix(0.205660,-0.005553,0.006748,0.249909,0,0);-ms-transform:matrix(0.205660,-0.005553,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205660,-0.005553,0.006748,0.249909,0,0);}
.mc8_c00334{transform:matrix(0.205850,-0.005558,0.006748,0.249909,0,0);-ms-transform:matrix(0.205850,-0.005558,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205850,-0.005558,0.006748,0.249909,0,0);}
.m10_c00334{transform:matrix(0.206485,-0.005575,0.006748,0.249909,0,0);-ms-transform:matrix(0.206485,-0.005575,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206485,-0.005575,0.006748,0.249909,0,0);}
.maa_c00334{transform:matrix(0.206715,-0.005581,0.006748,0.249909,0,0);-ms-transform:matrix(0.206715,-0.005581,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206715,-0.005581,0.006748,0.249909,0,0);}
.m23_c00334{transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);-ms-transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206745,-0.005582,0.006748,0.249909,0,0);}
.m5b_c00334{transform:matrix(0.207284,-0.005597,0.006748,0.249909,0,0);-ms-transform:matrix(0.207284,-0.005597,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207284,-0.005597,0.006748,0.249909,0,0);}
.m31_c00334{transform:matrix(0.207474,-0.005602,0.006748,0.249909,0,0);-ms-transform:matrix(0.207474,-0.005602,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207474,-0.005602,0.006748,0.249909,0,0);}
.mb5_c00334{transform:matrix(0.207624,-0.005606,0.006748,0.249909,0,0);-ms-transform:matrix(0.207624,-0.005606,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207624,-0.005606,0.006748,0.249909,0,0);}
.m2a_c00334{transform:matrix(0.208134,-0.005620,0.006748,0.249909,0,0);-ms-transform:matrix(0.208134,-0.005620,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208134,-0.005620,0.006748,0.249909,0,0);}
.m88_c00334{transform:matrix(0.208259,-0.005623,0.006748,0.249909,0,0);-ms-transform:matrix(0.208259,-0.005623,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208259,-0.005623,0.006748,0.249909,0,0);}
.m1b_c00334{transform:matrix(0.208339,-0.005625,0.006748,0.249909,0,0);-ms-transform:matrix(0.208339,-0.005625,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208339,-0.005625,0.006748,0.249909,0,0);}
.m95_c00334{transform:matrix(0.208639,-0.005633,0.006748,0.249909,0,0);-ms-transform:matrix(0.208639,-0.005633,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208639,-0.005633,0.006748,0.249909,0,0);}
.ma9_c00334{transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);-ms-transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208659,-0.005634,0.006748,0.249909,0,0);}
.m1f_c00334{transform:matrix(0.208724,-0.005636,0.006748,0.249909,0,0);-ms-transform:matrix(0.208724,-0.005636,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208724,-0.005636,0.006748,0.249909,0,0);}
.mdf_c00334{transform:matrix(0.209469,-0.005656,0.006748,0.249909,0,0);-ms-transform:matrix(0.209469,-0.005656,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209469,-0.005656,0.006748,0.249909,0,0);}
.mcd_c00334{transform:matrix(0.209724,-0.005663,0.006748,0.249909,0,0);-ms-transform:matrix(0.209724,-0.005663,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209724,-0.005663,0.006748,0.249909,0,0);}
.m7e_c00334{transform:matrix(0.209849,-0.005666,0.006748,0.249909,0,0);-ms-transform:matrix(0.209849,-0.005666,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209849,-0.005666,0.006748,0.249909,0,0);}
.m9a_c00334{transform:matrix(0.210283,-0.005678,0.006748,0.249909,0,0);-ms-transform:matrix(0.210283,-0.005678,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210283,-0.005678,0.006748,0.249909,0,0);}
.m67_c00334{transform:matrix(0.210333,-0.005679,0.006748,0.249909,0,0);-ms-transform:matrix(0.210333,-0.005679,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210333,-0.005679,0.006748,0.249909,0,0);}
.mc3_c00334{transform:matrix(0.210398,-0.005681,0.006748,0.249909,0,0);-ms-transform:matrix(0.210398,-0.005681,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210398,-0.005681,0.006748,0.249909,0,0);}
.m6b_c00334{transform:matrix(0.211098,-0.005700,0.006748,0.249909,0,0);-ms-transform:matrix(0.211098,-0.005700,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211098,-0.005700,0.006748,0.249909,0,0);}
.m24_c00334{transform:matrix(0.211158,-0.005701,0.006748,0.249909,0,0);-ms-transform:matrix(0.211158,-0.005701,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211158,-0.005701,0.006748,0.249909,0,0);}
.m5c_c00334{transform:matrix(0.211163,-0.005701,0.006748,0.249909,0,0);-ms-transform:matrix(0.211163,-0.005701,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211163,-0.005701,0.006748,0.249909,0,0);}
.md3_c00334{transform:matrix(0.211293,-0.005705,0.006748,0.249909,0,0);-ms-transform:matrix(0.211293,-0.005705,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211293,-0.005705,0.006748,0.249909,0,0);}
.m7b_c00334{transform:matrix(0.211658,-0.005715,0.006748,0.249909,0,0);-ms-transform:matrix(0.211658,-0.005715,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211658,-0.005715,0.006748,0.249909,0,0);}
.mf7_c00334{transform:matrix(0.211698,-0.005716,0.006748,0.249909,0,0);-ms-transform:matrix(0.211698,-0.005716,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211698,-0.005716,0.006748,0.249909,0,0);}
.m1e_c00334{transform:matrix(0.211913,-0.005722,0.006748,0.249909,0,0);-ms-transform:matrix(0.211913,-0.005722,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211913,-0.005722,0.006748,0.249909,0,0);}
.m6c_c00334{transform:matrix(0.211958,-0.005723,0.006748,0.249909,0,0);-ms-transform:matrix(0.211958,-0.005723,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211958,-0.005723,0.006748,0.249909,0,0);}
.m86_c00334{transform:matrix(0.212073,-0.005726,0.006748,0.249909,0,0);-ms-transform:matrix(0.212073,-0.005726,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212073,-0.005726,0.006748,0.249909,0,0);}
.m28_c00334{transform:matrix(0.212158,-0.005728,0.006748,0.249909,0,0);-ms-transform:matrix(0.212158,-0.005728,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212158,-0.005728,0.006748,0.249909,0,0);}
.m51_c00334{transform:matrix(0.212792,-0.005745,0.006748,0.249909,0,0);-ms-transform:matrix(0.212792,-0.005745,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212792,-0.005745,0.006748,0.249909,0,0);}
.m9b_c00334{transform:matrix(0.213112,-0.005754,0.006748,0.249909,0,0);-ms-transform:matrix(0.213112,-0.005754,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213112,-0.005754,0.006748,0.249909,0,0);}
.m3a_c00334{transform:matrix(0.213837,-0.005774,0.006748,0.249909,0,0);-ms-transform:matrix(0.213837,-0.005774,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213837,-0.005774,0.006748,0.249909,0,0);}
.m38_c00334{transform:matrix(0.214087,-0.005780,0.006748,0.249909,0,0);-ms-transform:matrix(0.214087,-0.005780,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214087,-0.005780,0.006748,0.249909,0,0);}
.m34_c00334{transform:matrix(0.214262,-0.005785,0.006748,0.249909,0,0);-ms-transform:matrix(0.214262,-0.005785,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214262,-0.005785,0.006748,0.249909,0,0);}
.m1d_c00334{transform:matrix(0.214287,-0.005786,0.006748,0.249909,0,0);-ms-transform:matrix(0.214287,-0.005786,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214287,-0.005786,0.006748,0.249909,0,0);}
.me7_c00334{transform:matrix(0.214752,-0.005798,0.006748,0.249909,0,0);-ms-transform:matrix(0.214752,-0.005798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214752,-0.005798,0.006748,0.249909,0,0);}
.mc7_c00334{transform:matrix(0.214867,-0.005801,0.006748,0.249909,0,0);-ms-transform:matrix(0.214867,-0.005801,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214867,-0.005801,0.006748,0.249909,0,0);}
.m8e_c00334{transform:matrix(0.215072,-0.005807,0.006748,0.249909,0,0);-ms-transform:matrix(0.215072,-0.005807,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215072,-0.005807,0.006748,0.249909,0,0);}
.m7c_c00334{transform:matrix(0.215392,-0.005816,0.006748,0.249909,0,0);-ms-transform:matrix(0.215392,-0.005816,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215392,-0.005816,0.006748,0.249909,0,0);}
.mcb_c00334{transform:matrix(0.215691,-0.005824,0.006748,0.249909,0,0);-ms-transform:matrix(0.215691,-0.005824,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215691,-0.005824,0.006748,0.249909,0,0);}
.m7f_c00334{transform:matrix(0.215946,-0.005831,0.006748,0.249909,0,0);-ms-transform:matrix(0.215946,-0.005831,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215946,-0.005831,0.006748,0.249909,0,0);}
.mab_c00334{transform:matrix(0.216366,-0.005842,0.006748,0.249909,0,0);-ms-transform:matrix(0.216366,-0.005842,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216366,-0.005842,0.006748,0.249909,0,0);}
.m98_c00334{transform:matrix(0.217571,-0.005874,0.006748,0.249909,0,0);-ms-transform:matrix(0.217571,-0.005874,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217571,-0.005874,0.006748,0.249909,0,0);}
.m72_c00334{transform:matrix(0.218460,-0.005898,0.006748,0.249909,0,0);-ms-transform:matrix(0.218460,-0.005898,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218460,-0.005898,0.006748,0.249909,0,0);}
.mc2_c00334{transform:matrix(0.218660,-0.005904,0.006748,0.249909,0,0);-ms-transform:matrix(0.218660,-0.005904,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218660,-0.005904,0.006748,0.249909,0,0);}
.m8d_c00334{transform:matrix(0.219655,-0.005931,0.006748,0.249909,0,0);-ms-transform:matrix(0.219655,-0.005931,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219655,-0.005931,0.006748,0.249909,0,0);}
.m49_c00334{transform:matrix(0.220435,-0.005952,0.006748,0.249909,0,0);-ms-transform:matrix(0.220435,-0.005952,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220435,-0.005952,0.006748,0.249909,0,0);}
.m56_c00334{transform:matrix(0.220715,-0.005959,0.006748,0.249909,0,0);-ms-transform:matrix(0.220715,-0.005959,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220715,-0.005959,0.006748,0.249909,0,0);}
.me_c00334{transform:matrix(0.221549,-0.005982,0.006748,0.249909,0,0);-ms-transform:matrix(0.221549,-0.005982,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221549,-0.005982,0.006748,0.249909,0,0);}
.ma0_c00334{transform:matrix(0.221734,-0.005987,0.006748,0.249909,0,0);-ms-transform:matrix(0.221734,-0.005987,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221734,-0.005987,0.006748,0.249909,0,0);}
.m12_c00334{transform:matrix(0.222039,-0.005995,0.006748,0.249909,0,0);-ms-transform:matrix(0.222039,-0.005995,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222039,-0.005995,0.006748,0.249909,0,0);}
.m21_c00334{transform:matrix(0.222074,-0.005996,0.006748,0.249909,0,0);-ms-transform:matrix(0.222074,-0.005996,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222074,-0.005996,0.006748,0.249909,0,0);}
.md8_c00334{transform:matrix(0.222349,-0.006003,0.006748,0.249909,0,0);-ms-transform:matrix(0.222349,-0.006003,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222349,-0.006003,0.006748,0.249909,0,0);}
.mb3_c00334{transform:matrix(0.222459,-0.006006,0.006748,0.249909,0,0);-ms-transform:matrix(0.222459,-0.006006,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222459,-0.006006,0.006748,0.249909,0,0);}
.m37_c00334{transform:matrix(0.222489,-0.006007,0.006748,0.249909,0,0);-ms-transform:matrix(0.222489,-0.006007,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222489,-0.006007,0.006748,0.249909,0,0);}
.m77_c00334{transform:matrix(0.223279,-0.006029,0.006748,0.249909,0,0);-ms-transform:matrix(0.223279,-0.006029,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223279,-0.006029,0.006748,0.249909,0,0);}
.m55_c00334{transform:matrix(0.223474,-0.006034,0.006748,0.249909,0,0);-ms-transform:matrix(0.223474,-0.006034,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223474,-0.006034,0.006748,0.249909,0,0);}
.mf_c00334{transform:matrix(0.223948,-0.006047,0.006748,0.249909,0,0);-ms-transform:matrix(0.223948,-0.006047,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223948,-0.006047,0.006748,0.249909,0,0);}
.ma5_c00334{transform:matrix(0.223973,-0.006047,0.006748,0.249909,0,0);-ms-transform:matrix(0.223973,-0.006047,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223973,-0.006047,0.006748,0.249909,0,0);}
.m74_c00334{transform:matrix(0.224263,-0.006055,0.006748,0.249909,0,0);-ms-transform:matrix(0.224263,-0.006055,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224263,-0.006055,0.006748,0.249909,0,0);}
.mcc_c00334{transform:matrix(0.224308,-0.006056,0.006748,0.249909,0,0);-ms-transform:matrix(0.224308,-0.006056,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224308,-0.006056,0.006748,0.249909,0,0);}
.me0_c00334{transform:matrix(0.224573,-0.006063,0.006748,0.249909,0,0);-ms-transform:matrix(0.224573,-0.006063,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224573,-0.006063,0.006748,0.249909,0,0);}
.md5_c00334{transform:matrix(0.225043,-0.006076,0.006748,0.249909,0,0);-ms-transform:matrix(0.225043,-0.006076,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225043,-0.006076,0.006748,0.249909,0,0);}
.m71_c00334{transform:matrix(0.225938,-0.006100,0.006748,0.249909,0,0);-ms-transform:matrix(0.225938,-0.006100,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225938,-0.006100,0.006748,0.249909,0,0);}
.m27_c00334{transform:matrix(0.226038,-0.006103,0.006748,0.249909,0,0);-ms-transform:matrix(0.226038,-0.006103,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226038,-0.006103,0.006748,0.249909,0,0);}
.m8a_c00334{transform:matrix(0.226417,-0.006113,0.006748,0.249909,0,0);-ms-transform:matrix(0.226417,-0.006113,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226417,-0.006113,0.006748,0.249909,0,0);}
.m83_c00334{transform:matrix(0.226562,-0.006117,0.006748,0.249909,0,0);-ms-transform:matrix(0.226562,-0.006117,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226562,-0.006117,0.006748,0.249909,0,0);}
.m6d_c00334{transform:matrix(0.226732,-0.006122,0.006748,0.249909,0,0);-ms-transform:matrix(0.226732,-0.006122,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226732,-0.006122,0.006748,0.249909,0,0);}
.m2f_c00334{transform:matrix(0.226782,-0.006123,0.006748,0.249909,0,0);-ms-transform:matrix(0.226782,-0.006123,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226782,-0.006123,0.006748,0.249909,0,0);}
.m1a_c00334{transform:matrix(0.227392,-0.006140,0.006748,0.249909,0,0);-ms-transform:matrix(0.227392,-0.006140,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227392,-0.006140,0.006748,0.249909,0,0);}
.md2_c00334{transform:matrix(0.228002,-0.006156,0.006748,0.249909,0,0);-ms-transform:matrix(0.228002,-0.006156,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228002,-0.006156,0.006748,0.249909,0,0);}
.m2d_c00334{transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);-ms-transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);}
.mb8_c00334{transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);-ms-transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228437,-0.006168,0.006748,0.249909,0,0);}
.m45_c00334{transform:matrix(0.229731,-0.006203,0.006748,0.249909,0,0);-ms-transform:matrix(0.229731,-0.006203,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229731,-0.006203,0.006748,0.249909,0,0);}
.md6_c00334{transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);-ms-transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230076,-0.006212,0.006748,0.249909,0,0);}
.m90_c00334{transform:matrix(0.230206,-0.006216,0.006748,0.249909,0,0);-ms-transform:matrix(0.230206,-0.006216,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230206,-0.006216,0.006748,0.249909,0,0);}
.md4_c00334{transform:matrix(0.230411,-0.006221,0.006748,0.249909,0,0);-ms-transform:matrix(0.230411,-0.006221,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230411,-0.006221,0.006748,0.249909,0,0);}
.m8b_c00334{transform:matrix(0.230791,-0.006231,0.006748,0.249909,0,0);-ms-transform:matrix(0.230791,-0.006231,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230791,-0.006231,0.006748,0.249909,0,0);}
.mc1_c00334{transform:matrix(0.230861,-0.006233,0.006748,0.249909,0,0);-ms-transform:matrix(0.230861,-0.006233,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230861,-0.006233,0.006748,0.249909,0,0);}
.m80_c00334{transform:matrix(0.231181,-0.006242,0.006748,0.249909,0,0);-ms-transform:matrix(0.231181,-0.006242,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231181,-0.006242,0.006748,0.249909,0,0);}
.mbf_c00334{transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);-ms-transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231831,-0.006259,0.006748,0.249909,0,0);}
.m58_c00334{transform:matrix(0.232460,-0.006276,0.006748,0.249909,0,0);-ms-transform:matrix(0.232460,-0.006276,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232460,-0.006276,0.006748,0.249909,0,0);}
.m75_c00334{transform:matrix(0.232665,-0.006282,0.006748,0.249909,0,0);-ms-transform:matrix(0.232665,-0.006282,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232665,-0.006282,0.006748,0.249909,0,0);}
.m19_c00334{transform:matrix(0.233060,-0.006293,0.006748,0.249909,0,0);-ms-transform:matrix(0.233060,-0.006293,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233060,-0.006293,0.006748,0.249909,0,0);}
.mc4_c00334{transform:matrix(0.233130,-0.006295,0.006748,0.249909,0,0);-ms-transform:matrix(0.233130,-0.006295,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233130,-0.006295,0.006748,0.249909,0,0);}
.m18_c00334{transform:matrix(0.233415,-0.006302,0.006748,0.249909,0,0);-ms-transform:matrix(0.233415,-0.006302,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233415,-0.006302,0.006748,0.249909,0,0);}
.m47_c00334{transform:matrix(0.236579,-0.006388,0.006748,0.249909,0,0);-ms-transform:matrix(0.236579,-0.006388,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236579,-0.006388,0.006748,0.249909,0,0);}
.m48_c00334{transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);-ms-transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236959,-0.006398,0.006748,0.249909,0,0);}
.m36_c00334{transform:matrix(0.238173,-0.006431,0.006748,0.249909,0,0);-ms-transform:matrix(0.238173,-0.006431,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238173,-0.006431,0.006748,0.249909,0,0);}
.m79_c00334{transform:matrix(0.238603,-0.006442,0.006748,0.249909,0,0);-ms-transform:matrix(0.238603,-0.006442,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238603,-0.006442,0.006748,0.249909,0,0);}
.m2c_c00334{transform:matrix(0.239763,-0.006474,0.006748,0.249909,0,0);-ms-transform:matrix(0.239763,-0.006474,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239763,-0.006474,0.006748,0.249909,0,0);}
.m5a_c00334{transform:matrix(0.241267,-0.006514,0.006748,0.249909,0,0);-ms-transform:matrix(0.241267,-0.006514,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241267,-0.006514,0.006748,0.249909,0,0);}
.md7_c00334{transform:matrix(0.242402,-0.006545,0.006748,0.249909,0,0);-ms-transform:matrix(0.242402,-0.006545,0.006748,0.249909,0,0);-webkit-transform:matrix(0.242402,-0.006545,0.006748,0.249909,0,0);}
.m73_c00334{transform:matrix(0.243281,-0.006569,0.006748,0.249909,0,0);-ms-transform:matrix(0.243281,-0.006569,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243281,-0.006569,0.006748,0.249909,0,0);}
.m70_c00334{transform:matrix(0.243711,-0.006580,0.006748,0.249909,0,0);-ms-transform:matrix(0.243711,-0.006580,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243711,-0.006580,0.006748,0.249909,0,0);}
.m3c_c00334{transform:matrix(0.245371,-0.006625,0.006748,0.249909,0,0);-ms-transform:matrix(0.245371,-0.006625,0.006748,0.249909,0,0);-webkit-transform:matrix(0.245371,-0.006625,0.006748,0.249909,0,0);}
.m78_c00334{transform:matrix(0.245735,-0.006635,0.006748,0.249909,0,0);-ms-transform:matrix(0.245735,-0.006635,0.006748,0.249909,0,0);-webkit-transform:matrix(0.245735,-0.006635,0.006748,0.249909,0,0);}
.m6f_c00334{transform:matrix(0.250739,-0.006770,0.006748,0.249909,0,0);-ms-transform:matrix(0.250739,-0.006770,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250739,-0.006770,0.006748,0.249909,0,0);}
.mb9_c00334{transform:matrix(0.256891,-0.006936,0.006748,0.249909,0,0);-ms-transform:matrix(0.256891,-0.006936,0.006748,0.249909,0,0);-webkit-transform:matrix(0.256891,-0.006936,0.006748,0.249909,0,0);}
.me6_c00334{transform:matrix(0.263974,-0.007127,0.006748,0.249909,0,0);-ms-transform:matrix(0.263974,-0.007127,0.006748,0.249909,0,0);-webkit-transform:matrix(0.263974,-0.007127,0.006748,0.249909,0,0);}
.m0_c00334{transform:matrix(0.328865,-0.008879,0.006748,0.249909,0,0);-ms-transform:matrix(0.328865,-0.008879,0.006748,0.249909,0,0);-webkit-transform:matrix(0.328865,-0.008879,0.006748,0.249909,0,0);}
.mea_c00334{transform:matrix(0.402718,-0.010873,0.006748,0.249909,0,0);-ms-transform:matrix(0.402718,-0.010873,0.006748,0.249909,0,0);-webkit-transform:matrix(0.402718,-0.010873,0.006748,0.249909,0,0);}
.m3e_c00334{transform:matrix(0.563660,-0.015219,0.006748,0.249909,0,0);-ms-transform:matrix(0.563660,-0.015219,0.006748,0.249909,0,0);-webkit-transform:matrix(0.563660,-0.015219,0.006748,0.249909,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls0_c00334{letter-spacing:0.000000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:0.000000px;}
.fc0_c00334{color:transparent;}
.fs8_c00334{font-size:55.670281px;}
.fs9_c00334{font-size:56.720663px;}
.fs5_c00334{font-size:57.771046px;}
.fs4_c00334{font-size:58.821429px;}
.fs3_c00334{font-size:59.871811px;}
.fsa_c00334{font-size:60.922194px;}
.fsb_c00334{font-size:61.972577px;}
.fs7_c00334{font-size:64.073342px;}
.fs2_c00334{font-size:65.123725px;}
.fs6_c00334{font-size:66.174107px;}
.fs1_c00334{font-size:67.224490px;}
.fsd_c00334{font-size:68.274873px;}
.fsc_c00334{font-size:77.728316px;}
.fs0_c00334{font-size:127.096301px;}
.y0_c00334{bottom:0.000000px;}
.yfa_c00334{bottom:32.468372px;}
.yf6_c00334{bottom:32.468540px;}
.yf7_c00334{bottom:32.468687px;}
.yf8_c00334{bottom:32.468849px;}
.yf9_c00334{bottom:32.468874px;}
.yf5_c00334{bottom:32.468895px;}
.yfb_c00334{bottom:32.468925px;}
.yed_c00334{bottom:45.165971px;}
.yee_c00334{bottom:45.662363px;}
.yef_c00334{bottom:46.112103px;}
.yf0_c00334{bottom:46.735224px;}
.yf1_c00334{bottom:47.491226px;}
.yf2_c00334{bottom:47.780493px;}
.yf3_c00334{bottom:48.396452px;}
.yf4_c00334{bottom:48.660671px;}
.ye6_c00334{bottom:62.457620px;}
.ye7_c00334{bottom:63.724868px;}
.ye8_c00334{bottom:64.152426px;}
.ye9_c00334{bottom:64.515527px;}
.yea_c00334{bottom:65.626043px;}
.yeb_c00334{bottom:66.056961px;}
.yec_c00334{bottom:66.427067px;}
.ye5_c00334{bottom:86.582423px;}
.ye4_c00334{bottom:86.582598px;}
.ye3_c00334{bottom:86.583183px;}
.ye2_c00334{bottom:86.583735px;}
.ydf_c00334{bottom:86.583929px;}
.ye1_c00334{bottom:86.584223px;}
.ye0_c00334{bottom:86.584266px;}
.yde_c00334{bottom:86.584520px;}
.ydd_c00334{bottom:86.584875px;}
.yd4_c00334{bottom:96.761670px;}
.yd5_c00334{bottom:97.258194px;}
.yd6_c00334{bottom:97.833456px;}
.yd7_c00334{bottom:98.365887px;}
.yd8_c00334{bottom:98.607408px;}
.yd9_c00334{bottom:99.872784px;}
.yda_c00334{bottom:100.552371px;}
.ydb_c00334{bottom:101.640432px;}
.ydc_c00334{bottom:102.034413px;}
.ycc_c00334{bottom:117.016044px;}
.ycd_c00334{bottom:117.541652px;}
.yce_c00334{bottom:118.393428px;}
.ycf_c00334{bottom:119.164116px;}
.yd0_c00334{bottom:119.307638px;}
.yd1_c00334{bottom:119.856551px;}
.yd2_c00334{bottom:120.065135px;}
.yd3_c00334{bottom:120.786984px;}
.yc3_c00334{bottom:129.448247px;}
.yc4_c00334{bottom:129.910311px;}
.yc5_c00334{bottom:130.209635px;}
.yc6_c00334{bottom:130.654206px;}
.yc7_c00334{bottom:132.134589px;}
.yc8_c00334{bottom:132.784461px;}
.yc9_c00334{bottom:133.332816px;}
.yca_c00334{bottom:133.643721px;}
.ycb_c00334{bottom:134.993231px;}
.ybd_c00334{bottom:147.815814px;}
.ybe_c00334{bottom:149.198042px;}
.ybf_c00334{bottom:149.936471px;}
.yc0_c00334{bottom:150.793869px;}
.yc1_c00334{bottom:151.278651px;}
.yc2_c00334{bottom:151.975940px;}
.yb4_c00334{bottom:165.906828px;}
.yb5_c00334{bottom:166.409495px;}
.yb6_c00334{bottom:166.734852px;}
.yb7_c00334{bottom:167.487900px;}
.yb8_c00334{bottom:167.695472px;}
.yb9_c00334{bottom:168.572252px;}
.yba_c00334{bottom:168.791517px;}
.ybb_c00334{bottom:169.551524px;}
.ybc_c00334{bottom:169.713656px;}
.yab_c00334{bottom:180.225732px;}
.yac_c00334{bottom:181.763370px;}
.yad_c00334{bottom:182.260355px;}
.yae_c00334{bottom:182.916590px;}
.yaf_c00334{bottom:183.996116px;}
.yb0_c00334{bottom:184.514883px;}
.yb1_c00334{bottom:185.091635px;}
.yb2_c00334{bottom:185.552703px;}
.yb3_c00334{bottom:185.988951px;}
.ya2_c00334{bottom:199.669628px;}
.ya3_c00334{bottom:200.197073px;}
.ya4_c00334{bottom:201.160689px;}
.ya5_c00334{bottom:201.905169px;}
.ya6_c00334{bottom:202.207122px;}
.ya7_c00334{bottom:202.502315px;}
.ya8_c00334{bottom:203.928818px;}
.ya9_c00334{bottom:204.123428px;}
.yaa_c00334{bottom:204.438737px;}
.y9a_c00334{bottom:216.145445px;}
.y9b_c00334{bottom:216.478458px;}
.y9c_c00334{bottom:216.772973px;}
.y9d_c00334{bottom:217.828040px;}
.y9e_c00334{bottom:218.384235px;}
.y9f_c00334{bottom:219.469826px;}
.ya0_c00334{bottom:220.018694px;}
.ya1_c00334{bottom:220.421297px;}
.y92_c00334{bottom:233.970914px;}
.y93_c00334{bottom:234.686817px;}
.y94_c00334{bottom:235.762352px;}
.y95_c00334{bottom:236.119878px;}
.y96_c00334{bottom:237.024966px;}
.y97_c00334{bottom:237.332180px;}
.y98_c00334{bottom:237.947459px;}
.y99_c00334{bottom:238.421072px;}
.y8a_c00334{bottom:251.794989px;}
.y8b_c00334{bottom:252.160535px;}
.y8c_c00334{bottom:252.646673px;}
.y8d_c00334{bottom:253.080810px;}
.y8e_c00334{bottom:254.328428px;}
.y8f_c00334{bottom:255.214994px;}
.y90_c00334{bottom:255.514575px;}
.y91_c00334{bottom:255.952355px;}
.y83_c00334{bottom:268.543901px;}
.y84_c00334{bottom:269.290728px;}
.y85_c00334{bottom:269.623241px;}
.y86_c00334{bottom:271.032825px;}
.y87_c00334{bottom:271.260503px;}
.y88_c00334{bottom:271.693112px;}
.y89_c00334{bottom:272.845023px;}
.y7c_c00334{bottom:286.638398px;}
.y7d_c00334{bottom:286.974683px;}
.y7e_c00334{bottom:288.448718px;}
.y7f_c00334{bottom:288.842307px;}
.y80_c00334{bottom:289.204007px;}
.y81_c00334{bottom:290.289836px;}
.y82_c00334{bottom:290.451422px;}
.y74_c00334{bottom:304.466378px;}
.y75_c00334{bottom:305.550870px;}
.y76_c00334{bottom:305.734026px;}
.y77_c00334{bottom:306.831873px;}
.y78_c00334{bottom:307.001918px;}
.y79_c00334{bottom:307.325820px;}
.y7a_c00334{bottom:308.227844px;}
.y7b_c00334{bottom:308.410919px;}
.y6e_c00334{bottom:322.022736px;}
.y6f_c00334{bottom:322.936899px;}
.y70_c00334{bottom:324.120417px;}
.y71_c00334{bottom:324.451482px;}
.y72_c00334{bottom:325.221339px;}
.y73_c00334{bottom:325.400288px;}
.y68_c00334{bottom:337.420178px;}
.y69_c00334{bottom:338.725602px;}
.y6a_c00334{bottom:340.202526px;}
.y6b_c00334{bottom:341.552688px;}
.y6c_c00334{bottom:342.437669px;}
.y6d_c00334{bottom:342.984429px;}
.y5f_c00334{bottom:353.358966px;}
.y60_c00334{bottom:354.828569px;}
.y61_c00334{bottom:355.308029px;}
.y62_c00334{bottom:356.155103px;}
.y63_c00334{bottom:356.764349px;}
.y64_c00334{bottom:357.957330px;}
.y65_c00334{bottom:358.666518px;}
.y66_c00334{bottom:359.102366px;}
.y67_c00334{bottom:360.068778px;}
.y57_c00334{bottom:370.368917px;}
.y58_c00334{bottom:371.112771px;}
.y59_c00334{bottom:371.549480px;}
.y5a_c00334{bottom:372.924912px;}
.y5b_c00334{bottom:373.211693px;}
.y5c_c00334{bottom:374.622473px;}
.y5d_c00334{bottom:374.897228px;}
.y5e_c00334{bottom:375.272961px;}
.y4f_c00334{bottom:386.038390px;}
.y50_c00334{bottom:387.167274px;}
.y51_c00334{bottom:387.606558px;}
.y52_c00334{bottom:388.839907px;}
.y53_c00334{bottom:390.330252px;}
.y54_c00334{bottom:390.681227px;}
.y55_c00334{bottom:391.216313px;}
.y56_c00334{bottom:392.090913px;}
.y47_c00334{bottom:404.131257px;}
.y48_c00334{bottom:404.458102px;}
.y49_c00334{bottom:404.864928px;}
.y4a_c00334{bottom:406.118072px;}
.y4b_c00334{bottom:406.335874px;}
.y4c_c00334{bottom:407.299734px;}
.y4d_c00334{bottom:407.685837px;}
.y4e_c00334{bottom:408.783431px;}
.y40_c00334{bottom:420.338915px;}
.y41_c00334{bottom:421.385439px;}
.y42_c00334{bottom:422.217202px;}
.y43_c00334{bottom:423.433757px;}
.y44_c00334{bottom:423.916638px;}
.y45_c00334{bottom:425.044008px;}
.y46_c00334{bottom:425.388072px;}
.y3a_c00334{bottom:438.435456px;}
.y3b_c00334{bottom:439.265205px;}
.y3c_c00334{bottom:439.674736px;}
.y3d_c00334{bottom:440.404287px;}
.y3e_c00334{bottom:441.445398px;}
.y3f_c00334{bottom:442.594679px;}
.y31_c00334{bottom:454.107246px;}
.y32_c00334{bottom:455.278819px;}
.y33_c00334{bottom:455.739942px;}
.y34_c00334{bottom:456.443307px;}
.y35_c00334{bottom:456.795151px;}
.y36_c00334{bottom:457.837850px;}
.y37_c00334{bottom:458.268930px;}
.y38_c00334{bottom:458.755924px;}
.y39_c00334{bottom:459.735380px;}
.y27_c00334{bottom:470.855509px;}
.y28_c00334{bottom:471.466480px;}
.y29_c00334{bottom:471.699775px;}
.y2a_c00334{bottom:472.436342px;}
.y2b_c00334{bottom:473.389601px;}
.y2c_c00334{bottom:473.797642px;}
.y2d_c00334{bottom:474.526879px;}
.y2e_c00334{bottom:474.897186px;}
.y2f_c00334{bottom:476.301731px;}
.y30_c00334{bottom:476.568387px;}
.y1f_c00334{bottom:490.295548px;}
.y20_c00334{bottom:491.352514px;}
.y21_c00334{bottom:491.616129px;}
.y22_c00334{bottom:492.687174px;}
.y23_c00334{bottom:492.834558px;}
.y24_c00334{bottom:493.337148px;}
.y25_c00334{bottom:493.586239px;}
.y26_c00334{bottom:493.938050px;}
.y18_c00334{bottom:505.153087px;}
.y19_c00334{bottom:505.537609px;}
.y1a_c00334{bottom:506.710690px;}
.y1b_c00334{bottom:507.099058px;}
.y1c_c00334{bottom:508.477519px;}
.y1d_c00334{bottom:509.854605px;}
.y1e_c00334{bottom:510.523954px;}
.yf_c00334{bottom:524.058956px;}
.y10_c00334{bottom:524.840781px;}
.y11_c00334{bottom:525.900461px;}
.y12_c00334{bottom:526.280364px;}
.y13_c00334{bottom:526.580562px;}
.y14_c00334{bottom:527.396917px;}
.y15_c00334{bottom:527.897530px;}
.y16_c00334{bottom:528.424942px;}
.y17_c00334{bottom:529.137912px;}
.y9_c00334{bottom:540.536748px;}
.ya_c00334{bottom:542.736565px;}
.yb_c00334{bottom:543.143353px;}
.yc_c00334{bottom:543.566377px;}
.yd_c00334{bottom:544.750623px;}
.ye_c00334{bottom:546.089818px;}
.y3_c00334{bottom:556.746421px;}
.y4_c00334{bottom:558.040333px;}
.y5_c00334{bottom:559.101066px;}
.y6_c00334{bottom:560.141428px;}
.y7_c00334{bottom:561.788715px;}
.y8_c00334{bottom:562.174081px;}
.y1_c00334{bottom:569.169000px;}
.y2_c00334{bottom:572.549332px;}
.ha_c00334{height:55.670281px;}
.hb_c00334{height:56.720663px;}
.h7_c00334{height:57.771046px;}
.h6_c00334{height:58.821429px;}
.h5_c00334{height:59.871811px;}
.hc_c00334{height:60.922194px;}
.hd_c00334{height:61.972577px;}
.h9_c00334{height:64.073342px;}
.h4_c00334{height:65.123725px;}
.h8_c00334{height:66.174107px;}
.h3_c00334{height:67.224490px;}
.hf_c00334{height:68.274873px;}
.he_c00334{height:77.728316px;}
.h2_c00334{height:127.096301px;}
.h0_c00334{height:613.170000px;}
.h1_c00334{height:613.500000px;}
.w0_c00334{width:359.100000px;}
.w1_c00334{width:359.250000px;}
.x0_c00334{left:0.000000px;}
.x3_c00334{left:24.162195px;}
.x1b_c00334{left:25.256859px;}
.x52_c00334{left:26.339385px;}
.x6f_c00334{left:27.675337px;}
.x1_c00334{left:28.926000px;}
.x39_c00334{left:33.373012px;}
.x63_c00334{left:34.508259px;}
.x77_c00334{left:35.886777px;}
.x15_c00334{left:46.103810px;}
.x71_c00334{left:47.784082px;}
.x53_c00334{left:48.801675px;}
.x5b_c00334{left:51.218733px;}
.x3a_c00334{left:52.594696px;}
.x22_c00334{left:54.802396px;}
.x65_c00334{left:57.719460px;}
.x42_c00334{left:61.266181px;}
.x6c_c00334{left:63.020922px;}
.x23_c00334{left:65.889178px;}
.xe_c00334{left:68.253639px;}
.x57_c00334{left:70.611181px;}
.x74_c00334{left:73.037689px;}
.x7b_c00334{left:74.257812px;}
.x4_c00334{left:75.920990px;}
.x3e_c00334{left:77.233657px;}
.x33_c00334{left:80.707971px;}
.x2a_c00334{left:81.715750px;}
.x5c_c00334{left:83.623222px;}
.x45_c00334{left:87.216939px;}
.x7d_c00334{left:89.009319px;}
.x58_c00334{left:90.153946px;}
.x48_c00334{left:91.414960px;}
.x7f_c00334{left:95.775946px;}
.x16_c00334{left:97.112318px;}
.x4d_c00334{left:98.399114px;}
.x24_c00334{left:100.952848px;}
.x2b_c00334{left:103.686814px;}
.x1c_c00334{left:106.545558px;}
.x30_c00334{left:108.727431px;}
.x4e_c00334{left:110.631083px;}
.x5d_c00334{left:112.545078px;}
.x17_c00334{left:113.998140px;}
.x5_c00334{left:118.320757px;}
.x68_c00334{left:119.814633px;}
.x64_c00334{left:123.012334px;}
.x34_c00334{left:124.467907px;}
.x81_c00334{left:125.576259px;}
.xf_c00334{left:127.126436px;}
.x9_c00334{left:128.788403px;}
.x60_c00334{left:131.991001px;}
.x75_c00334{left:133.828492px;}
.x2c_c00334{left:137.187241px;}
.x6d_c00334{left:140.044435px;}
.x46_c00334{left:142.463394px;}
.x72_c00334{left:144.508531px;}
.x25_c00334{left:146.377219px;}
.xa_c00334{left:148.135521px;}
.x3b_c00334{left:150.268062px;}
.x61_c00334{left:153.016171px;}
.x2_c00334{left:154.123500px;}
.x31_c00334{left:157.374685px;}
.x6_c00334{left:159.910485px;}
.x43_c00334{left:161.186841px;}
.x3c_c00334{left:163.060504px;}
.x10_c00334{left:164.880088px;}
.xb_c00334{left:168.250761px;}
.x73_c00334{left:172.747569px;}
.x18_c00334{left:173.947620px;}
.x66_c00334{left:175.919833px;}
.x70_c00334{left:178.222578px;}
.x7e_c00334{left:179.548980px;}
.x4f_c00334{left:183.815775px;}
.x59_c00334{left:186.485947px;}
.x35_c00334{left:188.483718px;}
.x82_c00334{left:190.129279px;}
.x67_c00334{left:193.302031px;}
.x50_c00334{left:195.172961px;}
.x54_c00334{left:197.361749px;}
.x69_c00334{left:198.668244px;}
.x26_c00334{left:200.563008px;}
.x2d_c00334{left:203.625514px;}
.x62_c00334{left:206.274549px;}
.x1d_c00334{left:209.182817px;}
.x11_c00334{left:210.237605px;}
.x5a_c00334{left:211.959832px;}
.x36_c00334{left:213.873685px;}
.x80_c00334{left:214.887702px;}
.x51_c00334{left:216.787467px;}
.x27_c00334{left:218.225383px;}
.x1e_c00334{left:220.479069px;}
.x6a_c00334{left:222.273943px;}
.xc_c00334{left:224.676414px;}
.x7_c00334{left:225.813549px;}
.x44_c00334{left:228.337695px;}
.x49_c00334{left:232.759650px;}
.x19_c00334{left:233.790560px;}
.x78_c00334{left:235.492909px;}
.x3f_c00334{left:237.012744px;}
.x12_c00334{left:238.063368px;}
.x4b_c00334{left:239.117907px;}
.x8_c00334{left:241.253900px;}
.x3d_c00334{left:242.469429px;}
.x2e_c00334{left:247.357602px;}
.x6b_c00334{left:248.471967px;}
.x83_c00334{left:249.821776px;}
.x4c_c00334{left:251.027255px;}
.x76_c00334{left:253.229869px;}
.x5e_c00334{left:254.801626px;}
.x1f_c00334{left:259.163689px;}
.x40_c00334{left:261.334024px;}
.x1a_c00334{left:262.862178px;}
.x47_c00334{left:265.242317px;}
.x13_c00334{left:267.326456px;}
.x55_c00334{left:269.712157px;}
.x37_c00334{left:273.196483px;}
.x5f_c00334{left:274.792606px;}
.x4a_c00334{left:276.989493px;}
.x20_c00334{left:278.285398px;}
.x56_c00334{left:280.533681px;}
.x28_c00334{left:285.089697px;}
.xd_c00334{left:288.453241px;}
.x38_c00334{left:291.332412px;}
.x79_c00334{left:292.748262px;}
.x2f_c00334{left:294.030175px;}
.x7c_c00334{left:296.008407px;}
.x29_c00334{left:297.801263px;}
.x6e_c00334{left:299.146785px;}
.x41_c00334{left:301.120911px;}
.x32_c00334{left:303.436489px;}
.x21_c00334{left:305.325604px;}
.x14_c00334{left:306.964595px;}
.x7a_c00334{left:313.455717px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.fs8_c00334{font-size:49.484694pt;}
.fs9_c00334{font-size:50.418367pt;}
.fs5_c00334{font-size:51.352041pt;}
.fs4_c00334{font-size:52.285714pt;}
.fs3_c00334{font-size:53.219388pt;}
.fsa_c00334{font-size:54.153061pt;}
.fsb_c00334{font-size:55.086735pt;}
.fs7_c00334{font-size:56.954082pt;}
.fs2_c00334{font-size:57.887755pt;}
.fs6_c00334{font-size:58.821429pt;}
.fs1_c00334{font-size:59.755102pt;}
.fsd_c00334{font-size:60.688776pt;}
.fsc_c00334{font-size:69.091837pt;}
.fs0_c00334{font-size:112.974490pt;}
.y0_c00334{bottom:0.000000pt;}
.yfa_c00334{bottom:28.860775pt;}
.yf6_c00334{bottom:28.860924pt;}
.yf7_c00334{bottom:28.861055pt;}
.yf8_c00334{bottom:28.861199pt;}
.yf9_c00334{bottom:28.861221pt;}
.yf5_c00334{bottom:28.861240pt;}
.yfb_c00334{bottom:28.861267pt;}
.yed_c00334{bottom:40.147529pt;}
.yee_c00334{bottom:40.588767pt;}
.yef_c00334{bottom:40.988536pt;}
.yf0_c00334{bottom:41.542421pt;}
.yf1_c00334{bottom:42.214423pt;}
.yf2_c00334{bottom:42.471549pt;}
.yf3_c00334{bottom:43.019068pt;}
.yf4_c00334{bottom:43.253929pt;}
.ye6_c00334{bottom:55.517884pt;}
.ye7_c00334{bottom:56.644327pt;}
.ye8_c00334{bottom:57.024379pt;}
.ye9_c00334{bottom:57.347135pt;}
.yea_c00334{bottom:58.334260pt;}
.yeb_c00334{bottom:58.717299pt;}
.yec_c00334{bottom:59.046281pt;}
.ye5_c00334{bottom:76.962153pt;}
.ye4_c00334{bottom:76.962309pt;}
.ye3_c00334{bottom:76.962829pt;}
.ye2_c00334{bottom:76.963320pt;}
.ydf_c00334{bottom:76.963492pt;}
.ye1_c00334{bottom:76.963753pt;}
.ye0_c00334{bottom:76.963792pt;}
.yde_c00334{bottom:76.964017pt;}
.ydd_c00334{bottom:76.964333pt;}
.yd4_c00334{bottom:86.010373pt;}
.yd5_c00334{bottom:86.451728pt;}
.yd6_c00334{bottom:86.963072pt;}
.yd7_c00334{bottom:87.436344pt;}
.yd8_c00334{bottom:87.651029pt;}
.yd9_c00334{bottom:88.775808pt;}
.yda_c00334{bottom:89.379885pt;}
.ydb_c00334{bottom:90.347051pt;}
.ydc_c00334{bottom:90.697256pt;}
.ycc_c00334{bottom:104.014261pt;}
.ycd_c00334{bottom:104.481468pt;}
.yce_c00334{bottom:105.238603pt;}
.ycf_c00334{bottom:105.923659pt;}
.yd0_c00334{bottom:106.051233pt;}
.yd1_c00334{bottom:106.539156pt;}
.yd2_c00334{bottom:106.724564pt;}
.yd3_c00334{bottom:107.366208pt;}
.yc3_c00334{bottom:115.065108pt;}
.yc4_c00334{bottom:115.475832pt;}
.yc5_c00334{bottom:115.741897pt;}
.yc6_c00334{bottom:116.137072pt;}
.yc7_c00334{bottom:117.452968pt;}
.yc8_c00334{bottom:118.030632pt;}
.yc9_c00334{bottom:118.518059pt;}
.yca_c00334{bottom:118.794419pt;}
.ycb_c00334{bottom:119.993983pt;}
.ybd_c00334{bottom:131.391835pt;}
.ybe_c00334{bottom:132.620481pt;}
.ybf_c00334{bottom:133.276863pt;}
.yc0_c00334{bottom:134.038995pt;}
.yc1_c00334{bottom:134.469912pt;}
.yc2_c00334{bottom:135.089724pt;}
.yb4_c00334{bottom:147.472736pt;}
.yb5_c00334{bottom:147.919551pt;}
.yb6_c00334{bottom:148.208757pt;}
.yb7_c00334{bottom:148.878133pt;}
.yb8_c00334{bottom:149.062641pt;}
.yb9_c00334{bottom:149.842001pt;}
.yba_c00334{bottom:150.036904pt;}
.ybb_c00334{bottom:150.712465pt;}
.ybc_c00334{bottom:150.856583pt;}
.yab_c00334{bottom:160.200651pt;}
.yac_c00334{bottom:161.567440pt;}
.yad_c00334{bottom:162.009204pt;}
.yae_c00334{bottom:162.592524pt;}
.yaf_c00334{bottom:163.552103pt;}
.yb0_c00334{bottom:164.013229pt;}
.yb1_c00334{bottom:164.525897pt;}
.yb2_c00334{bottom:164.935736pt;}
.yb3_c00334{bottom:165.323512pt;}
.ya2_c00334{bottom:177.484113pt;}
.ya3_c00334{bottom:177.952953pt;}
.ya4_c00334{bottom:178.809501pt;}
.ya5_c00334{bottom:179.471261pt;}
.ya6_c00334{bottom:179.739664pt;}
.ya7_c00334{bottom:180.002057pt;}
.ya8_c00334{bottom:181.270060pt;}
.ya9_c00334{bottom:181.443047pt;}
.yaa_c00334{bottom:181.723321pt;}
.y9a_c00334{bottom:192.129284pt;}
.y9b_c00334{bottom:192.425296pt;}
.y9c_c00334{bottom:192.687087pt;}
.y9d_c00334{bottom:193.624924pt;}
.y9e_c00334{bottom:194.119320pt;}
.y9f_c00334{bottom:195.084289pt;}
.ya0_c00334{bottom:195.572172pt;}
.ya1_c00334{bottom:195.930041pt;}
.y92_c00334{bottom:207.974145pt;}
.y93_c00334{bottom:208.610504pt;}
.y94_c00334{bottom:209.566535pt;}
.y95_c00334{bottom:209.884336pt;}
.y96_c00334{bottom:210.688859pt;}
.y97_c00334{bottom:210.961937pt;}
.y98_c00334{bottom:211.508852pt;}
.y99_c00334{bottom:211.929841pt;}
.y8a_c00334{bottom:223.817768pt;}
.y8b_c00334{bottom:224.142697pt;}
.y8c_c00334{bottom:224.574820pt;}
.y8d_c00334{bottom:224.960720pt;}
.y8e_c00334{bottom:226.069713pt;}
.y8f_c00334{bottom:226.857772pt;}
.y90_c00334{bottom:227.124067pt;}
.y91_c00334{bottom:227.513204pt;}
.y83_c00334{bottom:238.705689pt;}
.y84_c00334{bottom:239.369536pt;}
.y85_c00334{bottom:239.665103pt;}
.y86_c00334{bottom:240.918067pt;}
.y87_c00334{bottom:241.120447pt;}
.y88_c00334{bottom:241.504988pt;}
.y89_c00334{bottom:242.528909pt;}
.y7c_c00334{bottom:254.789687pt;}
.y7d_c00334{bottom:255.088607pt;}
.y7e_c00334{bottom:256.398860pt;}
.y7f_c00334{bottom:256.748717pt;}
.y80_c00334{bottom:257.070228pt;}
.y81_c00334{bottom:258.035409pt;}
.y82_c00334{bottom:258.179041pt;}
.y74_c00334{bottom:270.636780pt;}
.y75_c00334{bottom:271.600773pt;}
.y76_c00334{bottom:271.763579pt;}
.y77_c00334{bottom:272.739443pt;}
.y78_c00334{bottom:272.890593pt;}
.y79_c00334{bottom:273.178507pt;}
.y7a_c00334{bottom:273.980305pt;}
.y7b_c00334{bottom:274.143039pt;}
.y6e_c00334{bottom:286.242432pt;}
.y6f_c00334{bottom:287.055021pt;}
.y70_c00334{bottom:288.107037pt;}
.y71_c00334{bottom:288.401317pt;}
.y72_c00334{bottom:289.085635pt;}
.y73_c00334{bottom:289.244700pt;}
.y68_c00334{bottom:299.929047pt;}
.y69_c00334{bottom:301.089424pt;}
.y6a_c00334{bottom:302.402245pt;}
.y6b_c00334{bottom:303.602389pt;}
.y6c_c00334{bottom:304.389039pt;}
.y6d_c00334{bottom:304.875048pt;}
.y5f_c00334{bottom:314.096859pt;}
.y60_c00334{bottom:315.403172pt;}
.y61_c00334{bottom:315.829359pt;}
.y62_c00334{bottom:316.582313pt;}
.y63_c00334{bottom:317.123865pt;}
.y64_c00334{bottom:318.184293pt;}
.y65_c00334{bottom:318.814683pt;}
.y66_c00334{bottom:319.202103pt;}
.y67_c00334{bottom:320.061136pt;}
.y57_c00334{bottom:329.216815pt;}
.y58_c00334{bottom:329.878019pt;}
.y59_c00334{bottom:330.266204pt;}
.y5a_c00334{bottom:331.488811pt;}
.y5b_c00334{bottom:331.743727pt;}
.y5c_c00334{bottom:332.997753pt;}
.y5d_c00334{bottom:333.241980pt;}
.y5e_c00334{bottom:333.575965pt;}
.y4f_c00334{bottom:343.145236pt;}
.y50_c00334{bottom:344.148688pt;}
.y51_c00334{bottom:344.539163pt;}
.y52_c00334{bottom:345.635473pt;}
.y53_c00334{bottom:346.960224pt;}
.y54_c00334{bottom:347.272201pt;}
.y55_c00334{bottom:347.747833pt;}
.y56_c00334{bottom:348.525256pt;}
.y47_c00334{bottom:359.227784pt;}
.y48_c00334{bottom:359.518313pt;}
.y49_c00334{bottom:359.879936pt;}
.y4a_c00334{bottom:360.993841pt;}
.y4b_c00334{bottom:361.187444pt;}
.y4c_c00334{bottom:362.044208pt;}
.y4d_c00334{bottom:362.387411pt;}
.y4e_c00334{bottom:363.363049pt;}
.y40_c00334{bottom:373.634591pt;}
.y41_c00334{bottom:374.564835pt;}
.y42_c00334{bottom:375.304180pt;}
.y43_c00334{bottom:376.385561pt;}
.y44_c00334{bottom:376.814789pt;}
.y45_c00334{bottom:377.816896pt;}
.y46_c00334{bottom:378.122731pt;}
.y3a_c00334{bottom:389.720405pt;}
.y3b_c00334{bottom:390.457960pt;}
.y3c_c00334{bottom:390.821988pt;}
.y3d_c00334{bottom:391.470477pt;}
.y3e_c00334{bottom:392.395909pt;}
.y3f_c00334{bottom:393.417492pt;}
.y31_c00334{bottom:403.650885pt;}
.y32_c00334{bottom:404.692284pt;}
.y33_c00334{bottom:405.102171pt;}
.y34_c00334{bottom:405.727384pt;}
.y35_c00334{bottom:406.040135pt;}
.y36_c00334{bottom:406.966977pt;}
.y37_c00334{bottom:407.350160pt;}
.y38_c00334{bottom:407.783044pt;}
.y39_c00334{bottom:408.653671pt;}
.y27_c00334{bottom:418.538231pt;}
.y28_c00334{bottom:419.081316pt;}
.y29_c00334{bottom:419.288689pt;}
.y2a_c00334{bottom:419.943415pt;}
.y2b_c00334{bottom:420.790756pt;}
.y2c_c00334{bottom:421.153460pt;}
.y2d_c00334{bottom:421.801671pt;}
.y2e_c00334{bottom:422.130832pt;}
.y2f_c00334{bottom:423.379316pt;}
.y30_c00334{bottom:423.616344pt;}
.y1f_c00334{bottom:435.818265pt;}
.y20_c00334{bottom:436.757791pt;}
.y21_c00334{bottom:436.992115pt;}
.y22_c00334{bottom:437.944155pt;}
.y23_c00334{bottom:438.075163pt;}
.y24_c00334{bottom:438.521909pt;}
.y25_c00334{bottom:438.743324pt;}
.y26_c00334{bottom:439.056044pt;}
.y18_c00334{bottom:449.024967pt;}
.y19_c00334{bottom:449.366764pt;}
.y1a_c00334{bottom:450.409503pt;}
.y1b_c00334{bottom:450.754719pt;}
.y1c_c00334{bottom:451.980017pt;}
.y1d_c00334{bottom:453.204093pt;}
.y1e_c00334{bottom:453.799071pt;}
.yf_c00334{bottom:465.830183pt;}
.y10_c00334{bottom:466.525139pt;}
.y11_c00334{bottom:467.467076pt;}
.y12_c00334{bottom:467.804768pt;}
.y13_c00334{bottom:468.071611pt;}
.y14_c00334{bottom:468.797260pt;}
.y15_c00334{bottom:469.242249pt;}
.y16_c00334{bottom:469.711060pt;}
.y17_c00334{bottom:470.344811pt;}
.y9_c00334{bottom:480.477109pt;}
.ya_c00334{bottom:482.432503pt;}
.yb_c00334{bottom:482.794092pt;}
.yc_c00334{bottom:483.170113pt;}
.yd_c00334{bottom:484.222776pt;}
.ye_c00334{bottom:485.413172pt;}
.y3_c00334{bottom:494.885708pt;}
.y4_c00334{bottom:496.035852pt;}
.y5_c00334{bottom:496.978725pt;}
.y6_c00334{bottom:497.903492pt;}
.y7_c00334{bottom:499.367747pt;}
.y8_c00334{bottom:499.710295pt;}
.y1_c00334{bottom:505.928000pt;}
.y2_c00334{bottom:508.932740pt;}
.ha_c00334{height:49.484694pt;}
.hb_c00334{height:50.418367pt;}
.h7_c00334{height:51.352041pt;}
.h6_c00334{height:52.285714pt;}
.h5_c00334{height:53.219388pt;}
.hc_c00334{height:54.153061pt;}
.hd_c00334{height:55.086735pt;}
.h9_c00334{height:56.954082pt;}
.h4_c00334{height:57.887755pt;}
.h8_c00334{height:58.821429pt;}
.h3_c00334{height:59.755102pt;}
.hf_c00334{height:60.688776pt;}
.he_c00334{height:69.091837pt;}
.h2_c00334{height:112.974490pt;}
.h0_c00334{height:545.040000pt;}
.h1_c00334{height:545.333333pt;}
.w0_c00334{width:319.200000pt;}
.w1_c00334{width:319.333333pt;}
.x0_c00334{left:0.000000pt;}
.x3_c00334{left:21.477507pt;}
.x1b_c00334{left:22.450541pt;}
.x52_c00334{left:23.412787pt;}
.x6f_c00334{left:24.600300pt;}
.x1_c00334{left:25.712000pt;}
.x39_c00334{left:29.664900pt;}
.x63_c00334{left:30.674008pt;}
.x77_c00334{left:31.899357pt;}
.x15_c00334{left:40.981164pt;}
.x71_c00334{left:42.474740pt;}
.x53_c00334{left:43.379267pt;}
.x5b_c00334{left:45.527763pt;}
.x3a_c00334{left:46.750841pt;}
.x22_c00334{left:48.713241pt;}
.x65_c00334{left:51.306187pt;}
.x42_c00334{left:54.458828pt;}
.x6c_c00334{left:56.018597pt;}
.x23_c00334{left:58.568159pt;}
.xe_c00334{left:60.669901pt;}
.x57_c00334{left:62.765495pt;}
.x74_c00334{left:64.922391pt;}
.x7b_c00334{left:66.006944pt;}
.x4_c00334{left:67.485324pt;}
.x3e_c00334{left:68.652140pt;}
.x33_c00334{left:71.740419pt;}
.x2a_c00334{left:72.636223pt;}
.x5c_c00334{left:74.331753pt;}
.x45_c00334{left:77.526168pt;}
.x7d_c00334{left:79.119395pt;}
.x58_c00334{left:80.136841pt;}
.x48_c00334{left:81.257743pt;}
.x7f_c00334{left:85.134175pt;}
.x16_c00334{left:86.322060pt;}
.x4d_c00334{left:87.465879pt;}
.x24_c00334{left:89.735865pt;}
.x2b_c00334{left:92.166057pt;}
.x1c_c00334{left:94.707163pt;}
.x30_c00334{left:96.646605pt;}
.x4e_c00334{left:98.338740pt;}
.x5d_c00334{left:100.040069pt;}
.x17_c00334{left:101.331680pt;}
.x5_c00334{left:105.174007pt;}
.x68_c00334{left:106.501896pt;}
.x64_c00334{left:109.344297pt;}
.x34_c00334{left:110.638140pt;}
.x81_c00334{left:111.623341pt;}
.xf_c00334{left:113.001276pt;}
.x9_c00334{left:114.478580pt;}
.x60_c00334{left:117.325335pt;}
.x75_c00334{left:118.958660pt;}
.x2c_c00334{left:121.944215pt;}
.x6d_c00334{left:124.483943pt;}
.x46_c00334{left:126.634128pt;}
.x72_c00334{left:128.452028pt;}
.x25_c00334{left:130.113084pt;}
.xa_c00334{left:131.676019pt;}
.x3b_c00334{left:133.571611pt;}
.x61_c00334{left:136.014375pt;}
.x2_c00334{left:136.998667pt;}
.x31_c00334{left:139.888609pt;}
.x6_c00334{left:142.142653pt;}
.x43_c00334{left:143.277192pt;}
.x3c_c00334{left:144.942671pt;}
.x10_c00334{left:146.560079pt;}
.xb_c00334{left:149.556232pt;}
.x73_c00334{left:153.553395pt;}
.x18_c00334{left:154.620107pt;}
.x66_c00334{left:156.373185pt;}
.x70_c00334{left:158.420069pt;}
.x7e_c00334{left:159.599093pt;}
.x4f_c00334{left:163.391800pt;}
.x59_c00334{left:165.765287pt;}
.x35_c00334{left:167.541083pt;}
.x82_c00334{left:169.003804pt;}
.x67_c00334{left:171.824028pt;}
.x50_c00334{left:173.487076pt;}
.x54_c00334{left:175.432665pt;}
.x69_c00334{left:176.593995pt;}
.x26_c00334{left:178.278229pt;}
.x2d_c00334{left:181.000457pt;}
.x62_c00334{left:183.355155pt;}
.x1d_c00334{left:185.940281pt;}
.x11_c00334{left:186.877871pt;}
.x5a_c00334{left:188.408740pt;}
.x36_c00334{left:190.109943pt;}
.x80_c00334{left:191.011291pt;}
.x51_c00334{left:192.699971pt;}
.x27_c00334{left:193.978119pt;}
.x1e_c00334{left:195.981395pt;}
.x6a_c00334{left:197.576839pt;}
.xc_c00334{left:199.712368pt;}
.x7_c00334{left:200.723155pt;}
.x44_c00334{left:202.966840pt;}
.x49_c00334{left:206.897467pt;}
.x19_c00334{left:207.813831pt;}
.x78_c00334{left:209.327031pt;}
.x3f_c00334{left:210.677995pt;}
.x12_c00334{left:211.611883pt;}
.x4b_c00334{left:212.549251pt;}
.x8_c00334{left:214.447911pt;}
.x3d_c00334{left:215.528381pt;}
.x2e_c00334{left:219.873424pt;}
.x6b_c00334{left:220.863971pt;}
.x83_c00334{left:222.063801pt;}
.x4c_c00334{left:223.135337pt;}
.x76_c00334{left:225.093217pt;}
.x5e_c00334{left:226.490335pt;}
.x1f_c00334{left:230.367724pt;}
.x40_c00334{left:232.296911pt;}
.x1a_c00334{left:233.655269pt;}
.x47_c00334{left:235.770948pt;}
.x13_c00334{left:237.623516pt;}
.x55_c00334{left:239.744140pt;}
.x37_c00334{left:242.841319pt;}
.x5f_c00334{left:244.260095pt;}
.x4a_c00334{left:246.212883pt;}
.x20_c00334{left:247.364799pt;}
.x56_c00334{left:249.363272pt;}
.x28_c00334{left:253.413064pt;}
.xd_c00334{left:256.402881pt;}
.x38_c00334{left:258.962144pt;}
.x79_c00334{left:260.220677pt;}
.x2f_c00334{left:261.360156pt;}
.x7c_c00334{left:263.118584pt;}
.x29_c00334{left:264.712233pt;}
.x6e_c00334{left:265.908253pt;}
.x41_c00334{left:267.663032pt;}
.x32_c00334{left:269.721324pt;}
.x21_c00334{left:271.400537pt;}
.x14_c00334{left:272.857417pt;}
.x7a_c00334{left:278.627304pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00335 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00335 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00335 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00335 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00335.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00335{transform:matrix(0.126915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126915,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.131235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131235,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);}
.mb2_c00335{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144335,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);}
.mf6_c00335{transform:matrix(0.147641,-0.001624,0.002750,0.249985,0,0);-ms-transform:matrix(0.147641,-0.001624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147641,-0.001624,0.002750,0.249985,0,0);}
.mc7_c00335{transform:matrix(0.147705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147705,0.000000,0.000000,0.250000,0,0);}
.mc2_c00335{transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148240,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149540,0.000000,0.000000,0.250000,0,0);}
.mee_c00335{transform:matrix(0.152801,-0.001681,0.002750,0.249985,0,0);-ms-transform:matrix(0.152801,-0.001681,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152801,-0.001681,0.002750,0.249985,0,0);}
.m3b_c00335{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.mc9_c00335{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.mf4_c00335{transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);}
.mf0_c00335{transform:matrix(0.154371,-0.001698,0.002750,0.249985,0,0);-ms-transform:matrix(0.154371,-0.001698,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154371,-0.001698,0.002750,0.249985,0,0);}
.m41_c00335{transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157160,0.000000,0.000000,0.250000,0,0);}
.m2e_c00335{transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158510,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.md2_c00335{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m27_c00335{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mc5_c00335{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m85_c00335{transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);}
.mbe_c00335{transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164085,0.000000,0.000000,0.250000,0,0);}
.mb7_c00335{transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.mf5_c00335{transform:matrix(0.164800,-0.001813,0.002750,0.249985,0,0);-ms-transform:matrix(0.164800,-0.001813,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164800,-0.001813,0.002750,0.249985,0,0);}
.mcc_c00335{transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);}
.m73_c00335{transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00335{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.mbb_c00335{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m82_c00335{transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.166880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166880,0.000000,0.000000,0.250000,0,0);}
.mac_c00335{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.ma6_c00335{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mc0_c00335{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.mad_c00335{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.md5_c00335{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m6e_c00335{transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);}
.mf1_c00335{transform:matrix(0.171920,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171920,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171920,-0.001891,0.002750,0.249985,0,0);}
.mf_c00335{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.mf3_c00335{transform:matrix(0.172095,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172095,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172095,-0.001893,0.002750,0.249985,0,0);}
.mea_c00335{transform:matrix(0.172910,-0.001902,0.002750,0.249985,0,0);-ms-transform:matrix(0.172910,-0.001902,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172910,-0.001902,0.002750,0.249985,0,0);}
.m39_c00335{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m4b_c00335{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.m61_c00335{transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);}
.m7e_c00335{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00335{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00335{transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);}
.ma3_c00335{transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);}
.me6_c00335{transform:matrix(0.176404,-0.001940,0.002750,0.249985,0,0);-ms-transform:matrix(0.176404,-0.001940,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176404,-0.001940,0.002750,0.249985,0,0);}
.mcd_c00335{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.m5b_c00335{transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177745,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.mb6_c00335{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.mda_c00335{transform:matrix(0.179689,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179689,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179689,-0.001977,0.002750,0.249985,0,0);}
.ma1_c00335{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.mbc_c00335{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m91_c00335{transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.mba_c00335{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m76_c00335{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);}
.m69_c00335{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.mef_c00335{transform:matrix(0.181814,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181814,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181814,-0.002000,0.002750,0.249985,0,0);}
.m36_c00335{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00335{transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182195,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m86_c00335{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00335{transform:matrix(0.184949,-0.002034,0.002750,0.249985,0,0);-ms-transform:matrix(0.184949,-0.002034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184949,-0.002034,0.002750,0.249985,0,0);}
.m46_c00335{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m50_c00335{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m35_c00335{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.m87_c00335{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.mbd_c00335{transform:matrix(0.186355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186355,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186445,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mb0_c00335{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m68_c00335{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.mb5_c00335{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.mc8_c00335{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.m57_c00335{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.md6_c00335{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.md8_c00335{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.mb9_c00335{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.maf_c00335{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m9d_c00335{transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190780,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);}
.mc6_c00335{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.mca_c00335{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);}
.m65_c00335{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00335{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m7b_c00335{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.md4_c00335{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m8a_c00335{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.mcb_c00335{transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193495,0.000000,0.000000,0.250000,0,0);}
.m98_c00335{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.m96_c00335{transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194615,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m33_c00335{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00335{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.ma2_c00335{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);}
.mde_c00335{transform:matrix(0.196328,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196328,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196328,-0.002160,0.002750,0.249985,0,0);}
.m4d_c00335{transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.mae_c00335{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m78_c00335{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.md7_c00335{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.m84_c00335{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.mb1_c00335{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.mb3_c00335{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.m66_c00335{transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);}
.me2_c00335{transform:matrix(0.199118,-0.002190,0.002750,0.249985,0,0);-ms-transform:matrix(0.199118,-0.002190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199118,-0.002190,0.002750,0.249985,0,0);}
.m3c_c00335{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.m55_c00335{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m71_c00335{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m53_c00335{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m8b_c00335{transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);}
.m4c_c00335{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00335{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.m7d_c00335{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);}
.mb8_c00335{transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203490,0.000000,0.000000,0.250000,0,0);}
.m54_c00335{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.m97_c00335{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m9b_c00335{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.mdb_c00335{transform:matrix(0.205753,-0.002263,0.002750,0.249985,0,0);-ms-transform:matrix(0.205753,-0.002263,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205753,-0.002263,0.002750,0.249985,0,0);}
.m74_c00335{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m75_c00335{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.ma5_c00335{transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206760,0.000000,0.000000,0.250000,0,0);}
.m28_c00335{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.md0_c00335{transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);}
.m56_c00335{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m5a_c00335{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00335{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00335{transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);}
.m9a_c00335{transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);}
.m89_c00335{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m80_c00335{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m62_c00335{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.ma9_c00335{transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);}
.m83_c00335{transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);}
.m48_c00335{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.meb_c00335{transform:matrix(0.210297,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210297,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210297,-0.002313,0.002750,0.249985,0,0);}
.m1d_c00335{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m6d_c00335{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.me7_c00335{transform:matrix(0.211147,-0.002323,0.002750,0.249985,0,0);-ms-transform:matrix(0.211147,-0.002323,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211147,-0.002323,0.002750,0.249985,0,0);}
.m11_c00335{transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212440,0.000000,0.000000,0.250000,0,0);}
.med_c00335{transform:matrix(0.212472,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212472,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212472,-0.002337,0.002750,0.249985,0,0);}
.m2d_c00335{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00335{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.mdc_c00335{transform:matrix(0.213347,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213347,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213347,-0.002347,0.002750,0.249985,0,0);}
.m67_c00335{transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);}
.m70_c00335{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m77_c00335{transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);}
.m5d_c00335{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.mdf_c00335{transform:matrix(0.214462,-0.002359,0.002750,0.249985,0,0);-ms-transform:matrix(0.214462,-0.002359,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214462,-0.002359,0.002750,0.249985,0,0);}
.me3_c00335{transform:matrix(0.214557,-0.002360,0.002750,0.249985,0,0);-ms-transform:matrix(0.214557,-0.002360,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214557,-0.002360,0.002750,0.249985,0,0);}
.m5c_c00335{transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);}
.m59_c00335{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m58_c00335{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);}
.m6c_c00335{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m6b_c00335{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);}
.md3_c00335{transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);}
.md1_c00335{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.218285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218285,0.000000,0.000000,0.250000,0,0);}
.m8c_c00335{transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);}
.m7a_c00335{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m81_c00335{transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219735,0.000000,0.000000,0.250000,0,0);}
.mdd_c00335{transform:matrix(0.219827,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219827,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219827,-0.002418,0.002750,0.249985,0,0);}
.m93_c00335{transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.220495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220495,0.000000,0.000000,0.250000,0,0);}
.m79_c00335{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m4f_c00335{transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);}
.m63_c00335{transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);}
.m5e_c00335{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.ma7_c00335{transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222005,0.000000,0.000000,0.250000,0,0);}
.m7c_c00335{transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00335{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.ma4_c00335{transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222770,0.000000,0.000000,0.250000,0,0);}
.m99_c00335{transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);}
.me1_c00335{transform:matrix(0.223716,-0.002461,0.002750,0.249985,0,0);-ms-transform:matrix(0.223716,-0.002461,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223716,-0.002461,0.002750,0.249985,0,0);}
.m17_c00335{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m64_c00335{transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m5f_c00335{transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);}
.m1c_c00335{transform:matrix(0.226265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226265,0.000000,0.000000,0.250000,0,0);}
.me5_c00335{transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);-ms-transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);}
.m9f_c00335{transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);}
.m8f_c00335{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m4e_c00335{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m44_c00335{transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);}
.m90_c00335{transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m52_c00335{transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);}
.m95_c00335{transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231270,0.000000,0.000000,0.250000,0,0);}
.md9_c00335{transform:matrix(0.231581,-0.002547,0.002750,0.249985,0,0);-ms-transform:matrix(0.231581,-0.002547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231581,-0.002547,0.002750,0.249985,0,0);}
.m6a_c00335{transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231970,0.000000,0.000000,0.250000,0,0);}
.me0_c00335{transform:matrix(0.232361,-0.002556,0.002750,0.249985,0,0);-ms-transform:matrix(0.232361,-0.002556,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232361,-0.002556,0.002750,0.249985,0,0);}
.m94_c00335{transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);}
.mec_c00335{transform:matrix(0.232651,-0.002559,0.002750,0.249985,0,0);-ms-transform:matrix(0.232651,-0.002559,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232651,-0.002559,0.002750,0.249985,0,0);}
.m47_c00335{transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00335{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m51_c00335{transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);}
.m9e_c00335{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.mce_c00335{transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);}
.maa_c00335{transform:matrix(0.236395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236395,0.000000,0.000000,0.250000,0,0);}
.ma8_c00335{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m9c_c00335{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);}
.me9_c00335{transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238736,-0.002626,0.002750,0.249985,0,0);}
.m72_c00335{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.me4_c00335{transform:matrix(0.241435,-0.002656,0.002750,0.249985,0,0);-ms-transform:matrix(0.241435,-0.002656,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241435,-0.002656,0.002750,0.249985,0,0);}
.m92_c00335{transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m6f_c00335{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m60_c00335{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.me8_c00335{transform:matrix(0.253535,-0.002789,0.002750,0.249985,0,0);-ms-transform:matrix(0.253535,-0.002789,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253535,-0.002789,0.002750,0.249985,0,0);}
.m1f_c00335{transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:0.000000px;}
.fc0_c00335{color:transparent;}
.fs9_c00335{font-size:54.600000px;}
.fs6_c00335{font-size:56.700000px;}
.fs8_c00335{font-size:57.750000px;}
.fs4_c00335{font-size:58.800000px;}
.fse_c00335{font-size:58.803557px;}
.fs3_c00335{font-size:59.850000px;}
.fsf_c00335{font-size:60.903684px;}
.fs2_c00335{font-size:61.950000px;}
.fsd_c00335{font-size:61.953748px;}
.fsa_c00335{font-size:63.000000px;}
.fs1_c00335{font-size:65.100000px;}
.fs7_c00335{font-size:66.150000px;}
.fs5_c00335{font-size:67.200000px;}
.fsc_c00335{font-size:69.300000px;}
.fs10_c00335{font-size:70.354256px;}
.fsb_c00335{font-size:72.450000px;}
.fs0_c00335{font-size:115.500000px;}
.y0_c00335{bottom:0.000000px;}
.y49_c00335{bottom:22.139946px;}
.y4a_c00335{bottom:22.470027px;}
.y4b_c00335{bottom:22.761520px;}
.y4c_c00335{bottom:23.115540px;}
.y4d_c00335{bottom:23.964252px;}
.y4e_c00335{bottom:24.333696px;}
.y4f_c00335{bottom:25.101982px;}
.y50_c00335{bottom:25.373464px;}
.y51_c00335{bottom:25.819704px;}
.y43_c00335{bottom:40.356072px;}
.y44_c00335{bottom:40.356112px;}
.y45_c00335{bottom:40.356156px;}
.y42_c00335{bottom:40.356392px;}
.y46_c00335{bottom:40.356530px;}
.y48_c00335{bottom:40.356614px;}
.y47_c00335{bottom:40.356840px;}
.y3a_c00335{bottom:55.621025px;}
.y3b_c00335{bottom:56.241889px;}
.y3c_c00335{bottom:56.418412px;}
.y3d_c00335{bottom:57.275142px;}
.y3e_c00335{bottom:58.198571px;}
.y3f_c00335{bottom:58.487672px;}
.y40_c00335{bottom:58.771379px;}
.y41_c00335{bottom:59.437711px;}
.y34_c00335{bottom:72.631500px;}
.y35_c00335{bottom:73.302357px;}
.y36_c00335{bottom:73.724625px;}
.y37_c00335{bottom:74.544263px;}
.y38_c00335{bottom:74.944767px;}
.y39_c00335{bottom:75.295722px;}
.y33_c00335{bottom:90.711000px;}
.y32_c00335{bottom:108.115500px;}
.y2a_c00335{bottom:123.931500px;}
.y2b_c00335{bottom:124.453500px;}
.y2c_c00335{bottom:124.975500px;}
.y2d_c00335{bottom:125.685000px;}
.y2e_c00335{bottom:125.866500px;}
.y2f_c00335{bottom:126.190500px;}
.y30_c00335{bottom:127.009500px;}
.y31_c00335{bottom:127.456500px;}
.y29_c00335{bottom:142.410000px;}
.y28_c00335{bottom:159.987000px;}
.y27_c00335{bottom:177.057000px;}
.y26_c00335{bottom:195.183000px;}
.y25_c00335{bottom:212.157000px;}
.y24_c00335{bottom:229.518000px;}
.y23_c00335{bottom:245.907000px;}
.y22_c00335{bottom:262.525500px;}
.y21_c00335{bottom:279.999000px;}
.y20_c00335{bottom:296.598000px;}
.y1f_c00335{bottom:313.609500px;}
.y1e_c00335{bottom:330.468000px;}
.y1d_c00335{bottom:347.749500px;}
.y1c_c00335{bottom:365.454000px;}
.y1b_c00335{bottom:382.738500px;}
.y1a_c00335{bottom:399.264000px;}
.y19_c00335{bottom:416.272500px;}
.y18_c00335{bottom:433.462500px;}
.y17_c00335{bottom:450.055500px;}
.y16_c00335{bottom:467.574000px;}
.y15_c00335{bottom:484.225500px;}
.y14_c00335{bottom:500.842500px;}
.y13_c00335{bottom:517.947000px;}
.ya_c00335{bottom:533.250000px;}
.yb_c00335{bottom:533.469000px;}
.yc_c00335{bottom:533.800500px;}
.yd_c00335{bottom:534.609000px;}
.ye_c00335{bottom:534.715500px;}
.yf_c00335{bottom:535.101000px;}
.y10_c00335{bottom:535.411500px;}
.y11_c00335{bottom:535.651500px;}
.y12_c00335{bottom:536.254500px;}
.y2_c00335{bottom:550.531500px;}
.y3_c00335{bottom:551.217000px;}
.y4_c00335{bottom:551.484000px;}
.y5_c00335{bottom:552.318000px;}
.y6_c00335{bottom:552.451500px;}
.y7_c00335{bottom:552.630000px;}
.y8_c00335{bottom:553.179000px;}
.y9_c00335{bottom:553.306500px;}
.y1_c00335{bottom:565.371000px;}
.hb_c00335{height:54.600000px;}
.h8_c00335{height:56.700000px;}
.ha_c00335{height:57.750000px;}
.h6_c00335{height:58.800000px;}
.h10_c00335{height:58.803557px;}
.h5_c00335{height:59.850000px;}
.h11_c00335{height:60.903684px;}
.h4_c00335{height:61.950000px;}
.hf_c00335{height:61.953748px;}
.hc_c00335{height:63.000000px;}
.h3_c00335{height:65.100000px;}
.h9_c00335{height:66.150000px;}
.h7_c00335{height:67.200000px;}
.he_c00335{height:69.300000px;}
.h12_c00335{height:70.354256px;}
.hd_c00335{height:72.450000px;}
.h2_c00335{height:115.500000px;}
.h0_c00335{height:613.170000px;}
.h1_c00335{height:613.500000px;}
.w0_c00335{width:359.100000px;}
.w1_c00335{width:359.250000px;}
.x0_c00335{left:0.000000px;}
.x3_c00335{left:41.719500px;}
.xb_c00335{left:43.078500px;}
.x64_c00335{left:44.550000px;}
.x13_c00335{left:52.920000px;}
.xc_c00335{left:61.381500px;}
.x45_c00335{left:62.910000px;}
.x3e_c00335{left:64.260000px;}
.x1f_c00335{left:66.690000px;}
.x14_c00335{left:69.120000px;}
.x73_c00335{left:70.198500px;}
.x60_c00335{left:72.900000px;}
.x56_c00335{left:75.330000px;}
.x32_c00335{left:76.950000px;}
.x4f_c00335{left:78.030000px;}
.x6d_c00335{left:79.650000px;}
.x2d_c00335{left:82.350000px;}
.x65_c00335{left:83.970000px;}
.x20_c00335{left:85.860000px;}
.xd_c00335{left:88.986000px;}
.x5a_c00335{left:90.450000px;}
.x27_c00335{left:91.530000px;}
.x3f_c00335{left:92.880000px;}
.x4a_c00335{left:94.500000px;}
.x2e_c00335{left:97.200000px;}
.x57_c00335{left:99.090000px;}
.x6a_c00335{left:100.440000px;}
.x66_c00335{left:101.790000px;}
.x4_c00335{left:104.040000px;}
.x28_c00335{left:107.190000px;}
.x40_c00335{left:109.350000px;}
.x1b_c00335{left:111.780000px;}
.x33_c00335{left:113.670000px;}
.x1_c00335{left:116.100000px;}
.x36_c00335{left:117.720000px;}
.x70_c00335{left:119.259000px;}
.x46_c00335{left:122.580000px;}
.x15_c00335{left:126.630000px;}
.x5_c00335{left:128.355000px;}
.x74_c00335{left:131.056500px;}
.x5f_c00335{left:136.620000px;}
.x2f_c00335{left:141.210000px;}
.x3a_c00335{left:144.450000px;}
.x21_c00335{left:145.800000px;}
.x6b_c00335{left:147.420000px;}
.x5d_c00335{left:148.500000px;}
.x50_c00335{left:149.580000px;}
.x67_c00335{left:151.200000px;}
.x4b_c00335{left:152.550000px;}
.xe_c00335{left:156.418500px;}
.x22_c00335{left:158.760000px;}
.xf_c00335{left:165.349500px;}
.x6e_c00335{left:169.290000px;}
.x34_c00335{left:170.910000px;}
.x76_c00335{left:172.172753px;}
.x1c_c00335{left:175.770000px;}
.x23_c00335{left:178.470000px;}
.x5e_c00335{left:180.630000px;}
.x6c_c00335{left:183.600000px;}
.x7c_c00335{left:185.050686px;}
.x29_c00335{left:186.840000px;}
.x79_c00335{left:194.677062px;}
.x1d_c00335{left:195.750000px;}
.x10_c00335{left:197.458500px;}
.x58_c00335{left:200.610000px;}
.x5b_c00335{left:201.690000px;}
.x41_c00335{left:203.040000px;}
.x6_c00335{left:204.198000px;}
.x3b_c00335{left:207.090000px;}
.x16_c00335{left:208.710000px;}
.x68_c00335{left:211.950000px;}
.x7d_c00335{left:213.454059px;}
.x7_c00335{left:216.352500px;}
.x37_c00335{left:220.590000px;}
.x52_c00335{left:222.210000px;}
.x11_c00335{left:223.375500px;}
.x59_c00335{left:227.610000px;}
.x61_c00335{left:229.770000px;}
.x7a_c00335{left:231.128467px;}
.x8_c00335{left:232.603500px;}
.x1e_c00335{left:235.710000px;}
.x3c_c00335{left:237.330000px;}
.x30_c00335{left:239.490000px;}
.x53_c00335{left:240.570000px;}
.x47_c00335{left:241.650000px;}
.x12_c00335{left:243.414000px;}
.x17_c00335{left:246.240000px;}
.x24_c00335{left:249.210000px;}
.x71_c00335{left:250.828500px;}
.x42_c00335{left:255.960000px;}
.x69_c00335{left:258.930000px;}
.x62_c00335{left:260.280000px;}
.x2a_c00335{left:261.900000px;}
.x4c_c00335{left:263.790000px;}
.x77_c00335{left:265.355190px;}
.x25_c00335{left:267.570000px;}
.x18_c00335{left:268.920000px;}
.x48_c00335{left:272.700000px;}
.x2b_c00335{left:276.480000px;}
.x2_c00335{left:277.830000px;}
.x43_c00335{left:279.990000px;}
.x9_c00335{left:282.541500px;}
.x4d_c00335{left:284.850000px;}
.x38_c00335{left:287.010000px;}
.x6f_c00335{left:288.630000px;}
.x19_c00335{left:290.520000px;}
.xa_c00335{left:294.171000px;}
.x7b_c00335{left:295.391739px;}
.x3d_c00335{left:297.000000px;}
.x54_c00335{left:298.620000px;}
.x2c_c00335{left:301.860000px;}
.x39_c00335{left:303.210000px;}
.x35_c00335{left:305.910000px;}
.x44_c00335{left:307.530000px;}
.x31_c00335{left:308.880000px;}
.x1a_c00335{left:309.960000px;}
.x75_c00335{left:312.271500px;}
.x63_c00335{left:313.470000px;}
.x55_c00335{left:315.090000px;}
.x72_c00335{left:316.978500px;}
.x49_c00335{left:319.950000px;}
.x4e_c00335{left:322.380000px;}
.x51_c00335{left:323.460000px;}
.x26_c00335{left:327.240000px;}
.x5c_c00335{left:332.640000px;}
.x78_c00335{left:338.493589px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.fs9_c00335{font-size:48.533333pt;}
.fs6_c00335{font-size:50.400000pt;}
.fs8_c00335{font-size:51.333333pt;}
.fs4_c00335{font-size:52.266667pt;}
.fse_c00335{font-size:52.269829pt;}
.fs3_c00335{font-size:53.200000pt;}
.fsf_c00335{font-size:54.136608pt;}
.fs2_c00335{font-size:55.066667pt;}
.fsd_c00335{font-size:55.069998pt;}
.fsa_c00335{font-size:56.000000pt;}
.fs1_c00335{font-size:57.866667pt;}
.fs7_c00335{font-size:58.800000pt;}
.fs5_c00335{font-size:59.733333pt;}
.fsc_c00335{font-size:61.600000pt;}
.fs10_c00335{font-size:62.537116pt;}
.fsb_c00335{font-size:64.400000pt;}
.fs0_c00335{font-size:102.666667pt;}
.y0_c00335{bottom:0.000000pt;}
.y49_c00335{bottom:19.679952pt;}
.y4a_c00335{bottom:19.973357pt;}
.y4b_c00335{bottom:20.232463pt;}
.y4c_c00335{bottom:20.547147pt;}
.y4d_c00335{bottom:21.301557pt;}
.y4e_c00335{bottom:21.629952pt;}
.y4f_c00335{bottom:22.312873pt;}
.y50_c00335{bottom:22.554191pt;}
.y51_c00335{bottom:22.950848pt;}
.y43_c00335{bottom:35.872064pt;}
.y44_c00335{bottom:35.872100pt;}
.y45_c00335{bottom:35.872139pt;}
.y42_c00335{bottom:35.872348pt;}
.y46_c00335{bottom:35.872471pt;}
.y48_c00335{bottom:35.872545pt;}
.y47_c00335{bottom:35.872747pt;}
.y3a_c00335{bottom:49.440911pt;}
.y3b_c00335{bottom:49.992791pt;}
.y3c_c00335{bottom:50.149700pt;}
.y3d_c00335{bottom:50.911237pt;}
.y3e_c00335{bottom:51.732063pt;}
.y3f_c00335{bottom:51.989041pt;}
.y40_c00335{bottom:52.241225pt;}
.y41_c00335{bottom:52.833521pt;}
.y34_c00335{bottom:64.561333pt;}
.y35_c00335{bottom:65.157651pt;}
.y36_c00335{bottom:65.533000pt;}
.y37_c00335{bottom:66.261567pt;}
.y38_c00335{bottom:66.617571pt;}
.y39_c00335{bottom:66.929531pt;}
.y33_c00335{bottom:80.632000pt;}
.y32_c00335{bottom:96.102667pt;}
.y2a_c00335{bottom:110.161333pt;}
.y2b_c00335{bottom:110.625333pt;}
.y2c_c00335{bottom:111.089333pt;}
.y2d_c00335{bottom:111.720000pt;}
.y2e_c00335{bottom:111.881333pt;}
.y2f_c00335{bottom:112.169333pt;}
.y30_c00335{bottom:112.897333pt;}
.y31_c00335{bottom:113.294667pt;}
.y29_c00335{bottom:126.586667pt;}
.y28_c00335{bottom:142.210667pt;}
.y27_c00335{bottom:157.384000pt;}
.y26_c00335{bottom:173.496000pt;}
.y25_c00335{bottom:188.584000pt;}
.y24_c00335{bottom:204.016000pt;}
.y23_c00335{bottom:218.584000pt;}
.y22_c00335{bottom:233.356000pt;}
.y21_c00335{bottom:248.888000pt;}
.y20_c00335{bottom:263.642667pt;}
.y1f_c00335{bottom:278.764000pt;}
.y1e_c00335{bottom:293.749333pt;}
.y1d_c00335{bottom:309.110667pt;}
.y1c_c00335{bottom:324.848000pt;}
.y1b_c00335{bottom:340.212000pt;}
.y1a_c00335{bottom:354.901333pt;}
.y19_c00335{bottom:370.020000pt;}
.y18_c00335{bottom:385.300000pt;}
.y17_c00335{bottom:400.049333pt;}
.y16_c00335{bottom:415.621333pt;}
.y15_c00335{bottom:430.422667pt;}
.y14_c00335{bottom:445.193333pt;}
.y13_c00335{bottom:460.397333pt;}
.ya_c00335{bottom:474.000000pt;}
.yb_c00335{bottom:474.194667pt;}
.yc_c00335{bottom:474.489333pt;}
.yd_c00335{bottom:475.208000pt;}
.ye_c00335{bottom:475.302667pt;}
.yf_c00335{bottom:475.645333pt;}
.y10_c00335{bottom:475.921333pt;}
.y11_c00335{bottom:476.134667pt;}
.y12_c00335{bottom:476.670667pt;}
.y2_c00335{bottom:489.361333pt;}
.y3_c00335{bottom:489.970667pt;}
.y4_c00335{bottom:490.208000pt;}
.y5_c00335{bottom:490.949333pt;}
.y6_c00335{bottom:491.068000pt;}
.y7_c00335{bottom:491.226667pt;}
.y8_c00335{bottom:491.714667pt;}
.y9_c00335{bottom:491.828000pt;}
.y1_c00335{bottom:502.552000pt;}
.hb_c00335{height:48.533333pt;}
.h8_c00335{height:50.400000pt;}
.ha_c00335{height:51.333333pt;}
.h6_c00335{height:52.266667pt;}
.h10_c00335{height:52.269829pt;}
.h5_c00335{height:53.200000pt;}
.h11_c00335{height:54.136608pt;}
.h4_c00335{height:55.066667pt;}
.hf_c00335{height:55.069998pt;}
.hc_c00335{height:56.000000pt;}
.h3_c00335{height:57.866667pt;}
.h9_c00335{height:58.800000pt;}
.h7_c00335{height:59.733333pt;}
.he_c00335{height:61.600000pt;}
.h12_c00335{height:62.537116pt;}
.hd_c00335{height:64.400000pt;}
.h2_c00335{height:102.666667pt;}
.h0_c00335{height:545.040000pt;}
.h1_c00335{height:545.333333pt;}
.w0_c00335{width:319.200000pt;}
.w1_c00335{width:319.333333pt;}
.x0_c00335{left:0.000000pt;}
.x3_c00335{left:37.084000pt;}
.xb_c00335{left:38.292000pt;}
.x64_c00335{left:39.600000pt;}
.x13_c00335{left:47.040000pt;}
.xc_c00335{left:54.561333pt;}
.x45_c00335{left:55.920000pt;}
.x3e_c00335{left:57.120000pt;}
.x1f_c00335{left:59.280000pt;}
.x14_c00335{left:61.440000pt;}
.x73_c00335{left:62.398667pt;}
.x60_c00335{left:64.800000pt;}
.x56_c00335{left:66.960000pt;}
.x32_c00335{left:68.400000pt;}
.x4f_c00335{left:69.360000pt;}
.x6d_c00335{left:70.800000pt;}
.x2d_c00335{left:73.200000pt;}
.x65_c00335{left:74.640000pt;}
.x20_c00335{left:76.320000pt;}
.xd_c00335{left:79.098667pt;}
.x5a_c00335{left:80.400000pt;}
.x27_c00335{left:81.360000pt;}
.x3f_c00335{left:82.560000pt;}
.x4a_c00335{left:84.000000pt;}
.x2e_c00335{left:86.400000pt;}
.x57_c00335{left:88.080000pt;}
.x6a_c00335{left:89.280000pt;}
.x66_c00335{left:90.480000pt;}
.x4_c00335{left:92.480000pt;}
.x28_c00335{left:95.280000pt;}
.x40_c00335{left:97.200000pt;}
.x1b_c00335{left:99.360000pt;}
.x33_c00335{left:101.040000pt;}
.x1_c00335{left:103.200000pt;}
.x36_c00335{left:104.640000pt;}
.x70_c00335{left:106.008000pt;}
.x46_c00335{left:108.960000pt;}
.x15_c00335{left:112.560000pt;}
.x5_c00335{left:114.093333pt;}
.x74_c00335{left:116.494667pt;}
.x5f_c00335{left:121.440000pt;}
.x2f_c00335{left:125.520000pt;}
.x3a_c00335{left:128.400000pt;}
.x21_c00335{left:129.600000pt;}
.x6b_c00335{left:131.040000pt;}
.x5d_c00335{left:132.000000pt;}
.x50_c00335{left:132.960000pt;}
.x67_c00335{left:134.400000pt;}
.x4b_c00335{left:135.600000pt;}
.xe_c00335{left:139.038667pt;}
.x22_c00335{left:141.120000pt;}
.xf_c00335{left:146.977333pt;}
.x6e_c00335{left:150.480000pt;}
.x34_c00335{left:151.920000pt;}
.x76_c00335{left:153.042447pt;}
.x1c_c00335{left:156.240000pt;}
.x23_c00335{left:158.640000pt;}
.x5e_c00335{left:160.560000pt;}
.x6c_c00335{left:163.200000pt;}
.x7c_c00335{left:164.489499pt;}
.x29_c00335{left:166.080000pt;}
.x79_c00335{left:173.046277pt;}
.x1d_c00335{left:174.000000pt;}
.x10_c00335{left:175.518667pt;}
.x58_c00335{left:178.320000pt;}
.x5b_c00335{left:179.280000pt;}
.x41_c00335{left:180.480000pt;}
.x6_c00335{left:181.509333pt;}
.x3b_c00335{left:184.080000pt;}
.x16_c00335{left:185.520000pt;}
.x68_c00335{left:188.400000pt;}
.x7d_c00335{left:189.736941pt;}
.x7_c00335{left:192.313333pt;}
.x37_c00335{left:196.080000pt;}
.x52_c00335{left:197.520000pt;}
.x11_c00335{left:198.556000pt;}
.x59_c00335{left:202.320000pt;}
.x61_c00335{left:204.240000pt;}
.x7a_c00335{left:205.447527pt;}
.x8_c00335{left:206.758667pt;}
.x1e_c00335{left:209.520000pt;}
.x3c_c00335{left:210.960000pt;}
.x30_c00335{left:212.880000pt;}
.x53_c00335{left:213.840000pt;}
.x47_c00335{left:214.800000pt;}
.x12_c00335{left:216.368000pt;}
.x17_c00335{left:218.880000pt;}
.x24_c00335{left:221.520000pt;}
.x71_c00335{left:222.958667pt;}
.x42_c00335{left:227.520000pt;}
.x69_c00335{left:230.160000pt;}
.x62_c00335{left:231.360000pt;}
.x2a_c00335{left:232.800000pt;}
.x4c_c00335{left:234.480000pt;}
.x77_c00335{left:235.871280pt;}
.x25_c00335{left:237.840000pt;}
.x18_c00335{left:239.040000pt;}
.x48_c00335{left:242.400000pt;}
.x2b_c00335{left:245.760000pt;}
.x2_c00335{left:246.960000pt;}
.x43_c00335{left:248.880000pt;}
.x9_c00335{left:251.148000pt;}
.x4d_c00335{left:253.200000pt;}
.x38_c00335{left:255.120000pt;}
.x6f_c00335{left:256.560000pt;}
.x19_c00335{left:258.240000pt;}
.xa_c00335{left:261.485333pt;}
.x7b_c00335{left:262.570435pt;}
.x3d_c00335{left:264.000000pt;}
.x54_c00335{left:265.440000pt;}
.x2c_c00335{left:268.320000pt;}
.x39_c00335{left:269.520000pt;}
.x35_c00335{left:271.920000pt;}
.x44_c00335{left:273.360000pt;}
.x31_c00335{left:274.560000pt;}
.x1a_c00335{left:275.520000pt;}
.x75_c00335{left:277.574667pt;}
.x63_c00335{left:278.640000pt;}
.x55_c00335{left:280.080000pt;}
.x72_c00335{left:281.758667pt;}
.x49_c00335{left:284.400000pt;}
.x4e_c00335{left:286.560000pt;}
.x51_c00335{left:287.520000pt;}
.x26_c00335{left:290.880000pt;}
.x5c_c00335{left:295.680000pt;}
.x78_c00335{left:300.883191pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00336 {
    display:none;
  }
  .loading-indicator_c00336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00336 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00336 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00336" -> "#page-container .classname_c00336")
 */
.pf_c00336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00336 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00336 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00336 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00336 {overflow:visible;}
  }
}
.c_c00336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00336 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00336:after { /* webkit #35443 */
  content: '';
}
.t_c00336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00336 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00336 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00336 { /* info for Javascript */
  display:none;
}
.l_c00336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00336:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00336 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00336.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me8_c00336{transform:matrix(0.056715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056715,0.000000,0.000000,0.250000,0,0);}
.m58_c00336{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.143795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143795,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);}
.m5d_c00336{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.mc9_c00336{transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152810,0.000000,0.000000,0.250000,0,0);}
.m96_c00336{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00336{transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);}
.m60_c00336{transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157115,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);}
.m82_c00336{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.mde_c00336{transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);}
.m55_c00336{transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);}
.m9a_c00336{transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);}
.m98_c00336{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00336{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.me2_c00336{transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);}
.mad_c00336{transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.mba_c00336{transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);}
.ma3_c00336{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m77_c00336{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.m56_c00336{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m2e_c00336{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);}
.mf6_c00336{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.med_c00336{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m71_c00336{transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);}
.m62_c00336{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m66_c00336{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.mb2_c00336{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173495,0.000000,0.000000,0.250000,0,0);}
.mfe_c00336{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.mfc_c00336{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.ma4_c00336{transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);}
.m74_c00336{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00336{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.mf3_c00336{transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00336{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.mdc_c00336{transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);}
.mb7_c00336{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.mea_c00336{transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178470,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.mf9_c00336{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m2d_c00336{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.mc8_c00336{transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180735,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);}
.mf1_c00336{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m90_c00336{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.md5_c00336{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.m7c_c00336{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);}
.mc1_c00336{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.mca_c00336{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m93_c00336{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184170,0.000000,0.000000,0.250000,0,0);}
.m9c_c00336{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00336{transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);}
.m9d_c00336{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);}
.m84_c00336{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.mf2_c00336{transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);}
.m2a_c00336{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m85_c00336{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m65_c00336{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.md2_c00336{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.mb6_c00336{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.m47_c00336{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.mc6_c00336{transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188390,0.000000,0.000000,0.250000,0,0);}
.m6a_c00336{transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);}
.m8d_c00336{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.md1_c00336{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mac_c00336{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00336{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m57_c00336{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.mb4_c00336{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.me1_c00336{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.mdd_c00336{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.mf4_c00336{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);}
.mdf_c00336{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00336{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.ma1_c00336{transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);}
.m34_c00336{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.mbe_c00336{transform:matrix(0.194510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194510,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.m75_c00336{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00336{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);}
.mce_c00336{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.m61_c00336{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.mf7_c00336{transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.mef_c00336{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m8e_c00336{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m4f_c00336{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);}
.mb8_c00336{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m5e_c00336{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);}
.mfb_c00336{transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);}
.mff_c00336{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.mf5_c00336{transform:matrix(0.201640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201640,0.000000,0.000000,0.250000,0,0);}
.m6c_c00336{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.meb_c00336{transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);}
.m7a_c00336{transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);}
.m92_c00336{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.mcb_c00336{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.maf_c00336{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.me9_c00336{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mcf_c00336{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m6f_c00336{transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);}
.m7b_c00336{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.mc2_c00336{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m99_c00336{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00336{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00336{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);}
.ma8_c00336{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m63_c00336{transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);}
.mec_c00336{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);}
.m64_c00336{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m94_c00336{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m45_c00336{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.md9_c00336{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);}
.mf0_c00336{transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);}
.mdb_c00336{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m68_c00336{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m8b_c00336{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mda_c00336{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.me6_c00336{transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);}
.mfa_c00336{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m8c_c00336{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00336{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);}
.mc7_c00336{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.mbf_c00336{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.mcc_c00336{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.mb1_c00336{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214430,0.000000,0.000000,0.250000,0,0);}
.mee_c00336{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.md0_c00336{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.m78_c00336{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00336{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.mae_c00336{transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);}
.mbc_c00336{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m49_c00336{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.md7_c00336{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.md4_c00336{transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);}
.md3_c00336{transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);}
.ma7_c00336{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.m83_c00336{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.mb5_c00336{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.mbb_c00336{transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);}
.ma5_c00336{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00336{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.m8f_c00336{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.me0_c00336{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.mc3_c00336{transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);}
.mb9_c00336{transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);}
.m91_c00336{transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223565,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.md6_c00336{transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);}
.m69_c00336{transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);}
.m87_c00336{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.me7_c00336{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m67_c00336{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m6d_c00336{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.mc0_c00336{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);}
.me3_c00336{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.mf8_c00336{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);}
.mc4_c00336{transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);}
.me4_c00336{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.mb0_c00336{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.m6e_c00336{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.me5_c00336{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.mab_c00336{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.mcd_c00336{transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.mc5_c00336{transform:matrix(0.260260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260260,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);}
.md8_c00336{transform:matrix(0.486435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486435,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:0.000000px;}
.fc0_c00336{color:transparent;}
.fsa_c00336{font-size:55.650000px;}
.fs5_c00336{font-size:57.750000px;}
.fsb_c00336{font-size:58.800000px;}
.fs4_c00336{font-size:59.850000px;}
.fs0_c00336{font-size:60.900000px;}
.fs6_c00336{font-size:61.950000px;}
.fs7_c00336{font-size:63.000000px;}
.fs3_c00336{font-size:64.050000px;}
.fs2_c00336{font-size:65.100000px;}
.fs8_c00336{font-size:66.150000px;}
.fs9_c00336{font-size:67.200000px;}
.fsc_c00336{font-size:68.250000px;}
.fs1_c00336{font-size:72.450000px;}
.y0_c00336{bottom:0.000000px;}
.y34_c00336{bottom:34.245000px;}
.y33_c00336{bottom:53.440500px;}
.y32_c00336{bottom:70.422000px;}
.y31_c00336{bottom:87.097500px;}
.y30_c00336{bottom:104.046000px;}
.y2f_c00336{bottom:119.590500px;}
.y2e_c00336{bottom:136.206000px;}
.y2d_c00336{bottom:154.384500px;}
.y2c_c00336{bottom:171.123000px;}
.y2b_c00336{bottom:188.463000px;}
.y2a_c00336{bottom:204.454500px;}
.y29_c00336{bottom:221.703000px;}
.y28_c00336{bottom:239.493000px;}
.y27_c00336{bottom:257.043000px;}
.y26_c00336{bottom:273.930000px;}
.y25_c00336{bottom:291.333000px;}
.y24_c00336{bottom:308.763000px;}
.y23_c00336{bottom:325.923000px;}
.y22_c00336{bottom:342.823500px;}
.y1c_c00336{bottom:356.404500px;}
.y1d_c00336{bottom:356.964000px;}
.y1e_c00336{bottom:358.339500px;}
.y1f_c00336{bottom:359.145000px;}
.y20_c00336{bottom:360.063000px;}
.y21_c00336{bottom:360.358500px;}
.y1b_c00336{bottom:375.175500px;}
.y1a_c00336{bottom:391.612500px;}
.y19_c00336{bottom:408.313500px;}
.y18_c00336{bottom:425.455500px;}
.y17_c00336{bottom:442.351500px;}
.y16_c00336{bottom:460.122000px;}
.y15_c00336{bottom:476.272500px;}
.y14_c00336{bottom:493.920000px;}
.yc_c00336{bottom:509.223000px;}
.yd_c00336{bottom:509.458500px;}
.ye_c00336{bottom:509.713500px;}
.yf_c00336{bottom:510.210000px;}
.y10_c00336{bottom:510.373500px;}
.y11_c00336{bottom:511.041000px;}
.y12_c00336{bottom:511.747500px;}
.y13_c00336{bottom:512.062500px;}
.y4_c00336{bottom:526.503000px;}
.y5_c00336{bottom:527.244000px;}
.y6_c00336{bottom:527.407500px;}
.y7_c00336{bottom:527.602500px;}
.y8_c00336{bottom:528.535500px;}
.y9_c00336{bottom:528.775500px;}
.ya_c00336{bottom:529.047000px;}
.yb_c00336{bottom:529.669500px;}
.y3_c00336{bottom:545.871000px;}
.y2_c00336{bottom:562.665000px;}
.y1_c00336{bottom:578.746500px;}
.hc_c00336{height:55.650000px;}
.h7_c00336{height:57.750000px;}
.hd_c00336{height:58.800000px;}
.h6_c00336{height:59.850000px;}
.h2_c00336{height:60.900000px;}
.h8_c00336{height:61.950000px;}
.h9_c00336{height:63.000000px;}
.h5_c00336{height:64.050000px;}
.h4_c00336{height:65.100000px;}
.ha_c00336{height:66.150000px;}
.hb_c00336{height:67.200000px;}
.he_c00336{height:68.250000px;}
.h3_c00336{height:72.450000px;}
.h0_c00336{height:613.170000px;}
.h1_c00336{height:613.500000px;}
.w0_c00336{width:359.100000px;}
.w1_c00336{width:359.250000px;}
.x0_c00336{left:0.000000px;}
.x52_c00336{left:23.224500px;}
.x2_c00336{left:24.300000px;}
.x74_c00336{left:26.464500px;}
.x84_c00336{left:28.354500px;}
.x31_c00336{left:29.703000px;}
.x4b_c00336{left:30.784500px;}
.x1a_c00336{left:32.506500px;}
.x7f_c00336{left:36.184500px;}
.x60_c00336{left:38.884500px;}
.x35_c00336{left:40.233000px;}
.x6e_c00336{left:43.474500px;}
.x3c_c00336{left:45.633000px;}
.x75_c00336{left:46.714500px;}
.x22_c00336{left:47.793000px;}
.x68_c00336{left:50.764500px;}
.x40_c00336{left:52.383000px;}
.x1b_c00336{left:53.863500px;}
.x77_c00336{left:60.214500px;}
.xb_c00336{left:61.560000px;}
.x49_c00336{left:63.349500px;}
.x80_c00336{left:65.074500px;}
.x4c_c00336{left:68.854500px;}
.x2b_c00336{left:70.743000px;}
.x53_c00336{left:72.634500px;}
.x1c_c00336{left:77.053500px;}
.x3_c00336{left:78.300000px;}
.x6f_c00336{left:79.924500px;}
.x4d_c00336{left:81.814500px;}
.x2c_c00336{left:84.243000px;}
.x13_c00336{left:86.479500px;}
.x28_c00336{left:88.023000px;}
.x4_c00336{left:90.720000px;}
.x69_c00336{left:96.124500px;}
.x55_c00336{left:97.474500px;}
.x7a_c00336{left:98.554500px;}
.x14_c00336{left:100.045500px;}
.x7c_c00336{left:102.064500px;}
.x2d_c00336{left:103.413000px;}
.x44_c00336{left:106.113000px;}
.x61_c00336{left:108.544500px;}
.xc_c00336{left:110.700000px;}
.x36_c00336{left:112.323000px;}
.x23_c00336{left:113.943000px;}
.x15_c00336{left:116.256000px;}
.x78_c00336{left:117.724500px;}
.x62_c00336{left:120.964500px;}
.x1d_c00336{left:122.161500px;}
.x2e_c00336{left:124.473000px;}
.x24_c00336{left:127.173000px;}
.x45_c00336{left:129.063000px;}
.x76_c00336{left:132.034500px;}
.x3d_c00336{left:133.113000px;}
.x5_c00336{left:134.730000px;}
.x4e_c00336{left:135.814500px;}
.x1e_c00336{left:137.034000px;}
.x65_c00336{left:138.244500px;}
.x73_c00336{left:139.324500px;}
.x32_c00336{left:143.103000px;}
.x56_c00336{left:144.454500px;}
.x37_c00336{left:146.343000px;}
.x25_c00336{left:147.693000px;}
.x1_c00336{left:152.280000px;}
.x71_c00336{left:154.984500px;}
.x41_c00336{left:156.063000px;}
.x4a_c00336{left:161.610000px;}
.xd_c00336{left:163.080000px;}
.x63_c00336{left:167.404500px;}
.x5b_c00336{left:169.564500px;}
.x81_c00336{left:171.454500px;}
.x72_c00336{left:173.074500px;}
.x6_c00336{left:174.150000px;}
.x6a_c00336{left:175.234500px;}
.x42_c00336{left:179.283000px;}
.x79_c00336{left:181.984500px;}
.x54_c00336{left:185.224500px;}
.x7_c00336{left:187.110000px;}
.xe_c00336{left:188.190000px;}
.x46_c00336{left:191.433000px;}
.x50_c00336{left:192.784500px;}
.x16_c00336{left:194.005500px;}
.x1f_c00336{left:197.776500px;}
.x57_c00336{left:200.074500px;}
.x70_c00336{left:202.234500px;}
.x26_c00336{left:206.013000px;}
.x6b_c00336{left:207.094500px;}
.x59_c00336{left:208.714500px;}
.x8_c00336{left:210.330000px;}
.x66_c00336{left:211.414500px;}
.x17_c00336{left:213.976500px;}
.x29_c00336{left:217.353000px;}
.x38_c00336{left:219.513000px;}
.xf_c00336{left:221.400000px;}
.x7b_c00336{left:222.484500px;}
.x33_c00336{left:223.563000px;}
.x83_c00336{left:226.534500px;}
.x5c_c00336{left:232.744500px;}
.x2a_c00336{left:234.363000px;}
.x18_c00336{left:236.653500px;}
.x10_c00336{left:238.950000px;}
.x64_c00336{left:240.574500px;}
.x67_c00336{left:242.464500px;}
.x39_c00336{left:247.053000px;}
.x6c_c00336{left:248.674500px;}
.x5d_c00336{left:251.644500px;}
.x7d_c00336{left:253.264500px;}
.x3e_c00336{left:254.613000px;}
.x9_c00336{left:255.960000px;}
.x47_c00336{left:257.043000px;}
.x34_c00336{left:259.473000px;}
.x20_c00336{left:262.029000px;}
.x82_c00336{left:265.414500px;}
.x6d_c00336{left:266.764500px;}
.x5e_c00336{left:268.114500px;}
.x2f_c00336{left:272.433000px;}
.x3a_c00336{left:274.323000px;}
.x3f_c00336{left:275.673000px;}
.x5a_c00336{left:277.024500px;}
.x51_c00336{left:278.644500px;}
.x43_c00336{left:280.263000px;}
.x11_c00336{left:281.340000px;}
.x30_c00336{left:284.583000px;}
.x48_c00336{left:287.013000px;}
.x19_c00336{left:288.508500px;}
.x21_c00336{left:290.658000px;}
.x4f_c00336{left:291.874500px;}
.xa_c00336{left:295.920000px;}
.x7e_c00336{left:299.434500px;}
.x58_c00336{left:301.864500px;}
.x12_c00336{left:302.940000px;}
.x27_c00336{left:305.103000px;}
.x3b_c00336{left:307.803000px;}
.x5f_c00336{left:315.364500px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fsa_c00336{font-size:49.466667pt;}
.fs5_c00336{font-size:51.333333pt;}
.fsb_c00336{font-size:52.266667pt;}
.fs4_c00336{font-size:53.200000pt;}
.fs0_c00336{font-size:54.133333pt;}
.fs6_c00336{font-size:55.066667pt;}
.fs7_c00336{font-size:56.000000pt;}
.fs3_c00336{font-size:56.933333pt;}
.fs2_c00336{font-size:57.866667pt;}
.fs8_c00336{font-size:58.800000pt;}
.fs9_c00336{font-size:59.733333pt;}
.fsc_c00336{font-size:60.666667pt;}
.fs1_c00336{font-size:64.400000pt;}
.y0_c00336{bottom:0.000000pt;}
.y34_c00336{bottom:30.440000pt;}
.y33_c00336{bottom:47.502667pt;}
.y32_c00336{bottom:62.597333pt;}
.y31_c00336{bottom:77.420000pt;}
.y30_c00336{bottom:92.485333pt;}
.y2f_c00336{bottom:106.302667pt;}
.y2e_c00336{bottom:121.072000pt;}
.y2d_c00336{bottom:137.230667pt;}
.y2c_c00336{bottom:152.109333pt;}
.y2b_c00336{bottom:167.522667pt;}
.y2a_c00336{bottom:181.737333pt;}
.y29_c00336{bottom:197.069333pt;}
.y28_c00336{bottom:212.882667pt;}
.y27_c00336{bottom:228.482667pt;}
.y26_c00336{bottom:243.493333pt;}
.y25_c00336{bottom:258.962667pt;}
.y24_c00336{bottom:274.456000pt;}
.y23_c00336{bottom:289.709333pt;}
.y22_c00336{bottom:304.732000pt;}
.y1c_c00336{bottom:316.804000pt;}
.y1d_c00336{bottom:317.301333pt;}
.y1e_c00336{bottom:318.524000pt;}
.y1f_c00336{bottom:319.240000pt;}
.y20_c00336{bottom:320.056000pt;}
.y21_c00336{bottom:320.318667pt;}
.y1b_c00336{bottom:333.489333pt;}
.y1a_c00336{bottom:348.100000pt;}
.y19_c00336{bottom:362.945333pt;}
.y18_c00336{bottom:378.182667pt;}
.y17_c00336{bottom:393.201333pt;}
.y16_c00336{bottom:408.997333pt;}
.y15_c00336{bottom:423.353333pt;}
.y14_c00336{bottom:439.040000pt;}
.yc_c00336{bottom:452.642667pt;}
.yd_c00336{bottom:452.852000pt;}
.ye_c00336{bottom:453.078667pt;}
.yf_c00336{bottom:453.520000pt;}
.y10_c00336{bottom:453.665333pt;}
.y11_c00336{bottom:454.258667pt;}
.y12_c00336{bottom:454.886667pt;}
.y13_c00336{bottom:455.166667pt;}
.y4_c00336{bottom:468.002667pt;}
.y5_c00336{bottom:468.661333pt;}
.y6_c00336{bottom:468.806667pt;}
.y7_c00336{bottom:468.980000pt;}
.y8_c00336{bottom:469.809333pt;}
.y9_c00336{bottom:470.022667pt;}
.ya_c00336{bottom:470.264000pt;}
.yb_c00336{bottom:470.817333pt;}
.y3_c00336{bottom:485.218667pt;}
.y2_c00336{bottom:500.146667pt;}
.y1_c00336{bottom:514.441333pt;}
.hc_c00336{height:49.466667pt;}
.h7_c00336{height:51.333333pt;}
.hd_c00336{height:52.266667pt;}
.h6_c00336{height:53.200000pt;}
.h2_c00336{height:54.133333pt;}
.h8_c00336{height:55.066667pt;}
.h9_c00336{height:56.000000pt;}
.h5_c00336{height:56.933333pt;}
.h4_c00336{height:57.866667pt;}
.ha_c00336{height:58.800000pt;}
.hb_c00336{height:59.733333pt;}
.he_c00336{height:60.666667pt;}
.h3_c00336{height:64.400000pt;}
.h0_c00336{height:545.040000pt;}
.h1_c00336{height:545.333333pt;}
.w0_c00336{width:319.200000pt;}
.w1_c00336{width:319.333333pt;}
.x0_c00336{left:0.000000pt;}
.x52_c00336{left:20.644000pt;}
.x2_c00336{left:21.600000pt;}
.x74_c00336{left:23.524000pt;}
.x84_c00336{left:25.204000pt;}
.x31_c00336{left:26.402667pt;}
.x4b_c00336{left:27.364000pt;}
.x1a_c00336{left:28.894667pt;}
.x7f_c00336{left:32.164000pt;}
.x60_c00336{left:34.564000pt;}
.x35_c00336{left:35.762667pt;}
.x6e_c00336{left:38.644000pt;}
.x3c_c00336{left:40.562667pt;}
.x75_c00336{left:41.524000pt;}
.x22_c00336{left:42.482667pt;}
.x68_c00336{left:45.124000pt;}
.x40_c00336{left:46.562667pt;}
.x1b_c00336{left:47.878667pt;}
.x77_c00336{left:53.524000pt;}
.xb_c00336{left:54.720000pt;}
.x49_c00336{left:56.310667pt;}
.x80_c00336{left:57.844000pt;}
.x4c_c00336{left:61.204000pt;}
.x2b_c00336{left:62.882667pt;}
.x53_c00336{left:64.564000pt;}
.x1c_c00336{left:68.492000pt;}
.x3_c00336{left:69.600000pt;}
.x6f_c00336{left:71.044000pt;}
.x4d_c00336{left:72.724000pt;}
.x2c_c00336{left:74.882667pt;}
.x13_c00336{left:76.870667pt;}
.x28_c00336{left:78.242667pt;}
.x4_c00336{left:80.640000pt;}
.x69_c00336{left:85.444000pt;}
.x55_c00336{left:86.644000pt;}
.x7a_c00336{left:87.604000pt;}
.x14_c00336{left:88.929333pt;}
.x7c_c00336{left:90.724000pt;}
.x2d_c00336{left:91.922667pt;}
.x44_c00336{left:94.322667pt;}
.x61_c00336{left:96.484000pt;}
.xc_c00336{left:98.400000pt;}
.x36_c00336{left:99.842667pt;}
.x23_c00336{left:101.282667pt;}
.x15_c00336{left:103.338667pt;}
.x78_c00336{left:104.644000pt;}
.x62_c00336{left:107.524000pt;}
.x1d_c00336{left:108.588000pt;}
.x2e_c00336{left:110.642667pt;}
.x24_c00336{left:113.042667pt;}
.x45_c00336{left:114.722667pt;}
.x76_c00336{left:117.364000pt;}
.x3d_c00336{left:118.322667pt;}
.x5_c00336{left:119.760000pt;}
.x4e_c00336{left:120.724000pt;}
.x1e_c00336{left:121.808000pt;}
.x65_c00336{left:122.884000pt;}
.x73_c00336{left:123.844000pt;}
.x32_c00336{left:127.202667pt;}
.x56_c00336{left:128.404000pt;}
.x37_c00336{left:130.082667pt;}
.x25_c00336{left:131.282667pt;}
.x1_c00336{left:135.360000pt;}
.x71_c00336{left:137.764000pt;}
.x41_c00336{left:138.722667pt;}
.x4a_c00336{left:143.653333pt;}
.xd_c00336{left:144.960000pt;}
.x63_c00336{left:148.804000pt;}
.x5b_c00336{left:150.724000pt;}
.x81_c00336{left:152.404000pt;}
.x72_c00336{left:153.844000pt;}
.x6_c00336{left:154.800000pt;}
.x6a_c00336{left:155.764000pt;}
.x42_c00336{left:159.362667pt;}
.x79_c00336{left:161.764000pt;}
.x54_c00336{left:164.644000pt;}
.x7_c00336{left:166.320000pt;}
.xe_c00336{left:167.280000pt;}
.x46_c00336{left:170.162667pt;}
.x50_c00336{left:171.364000pt;}
.x16_c00336{left:172.449333pt;}
.x1f_c00336{left:175.801333pt;}
.x57_c00336{left:177.844000pt;}
.x70_c00336{left:179.764000pt;}
.x26_c00336{left:183.122667pt;}
.x6b_c00336{left:184.084000pt;}
.x59_c00336{left:185.524000pt;}
.x8_c00336{left:186.960000pt;}
.x66_c00336{left:187.924000pt;}
.x17_c00336{left:190.201333pt;}
.x29_c00336{left:193.202667pt;}
.x38_c00336{left:195.122667pt;}
.xf_c00336{left:196.800000pt;}
.x7b_c00336{left:197.764000pt;}
.x33_c00336{left:198.722667pt;}
.x83_c00336{left:201.364000pt;}
.x5c_c00336{left:206.884000pt;}
.x2a_c00336{left:208.322667pt;}
.x18_c00336{left:210.358667pt;}
.x10_c00336{left:212.400000pt;}
.x64_c00336{left:213.844000pt;}
.x67_c00336{left:215.524000pt;}
.x39_c00336{left:219.602667pt;}
.x6c_c00336{left:221.044000pt;}
.x5d_c00336{left:223.684000pt;}
.x7d_c00336{left:225.124000pt;}
.x3e_c00336{left:226.322667pt;}
.x9_c00336{left:227.520000pt;}
.x47_c00336{left:228.482667pt;}
.x34_c00336{left:230.642667pt;}
.x20_c00336{left:232.914667pt;}
.x82_c00336{left:235.924000pt;}
.x6d_c00336{left:237.124000pt;}
.x5e_c00336{left:238.324000pt;}
.x2f_c00336{left:242.162667pt;}
.x3a_c00336{left:243.842667pt;}
.x3f_c00336{left:245.042667pt;}
.x5a_c00336{left:246.244000pt;}
.x51_c00336{left:247.684000pt;}
.x43_c00336{left:249.122667pt;}
.x11_c00336{left:250.080000pt;}
.x30_c00336{left:252.962667pt;}
.x48_c00336{left:255.122667pt;}
.x19_c00336{left:256.452000pt;}
.x21_c00336{left:258.362667pt;}
.x4f_c00336{left:259.444000pt;}
.xa_c00336{left:263.040000pt;}
.x7e_c00336{left:266.164000pt;}
.x58_c00336{left:268.324000pt;}
.x12_c00336{left:269.280000pt;}
.x27_c00336{left:271.202667pt;}
.x3b_c00336{left:273.602667pt;}
.x5f_c00336{left:280.324000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00337 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00337 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00337 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00337 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00337.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb0_c00337{transform:matrix(0.023000,-0.000460,0.004999,0.249950,0,0);-ms-transform:matrix(0.023000,-0.000460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.023000,-0.000460,0.004999,0.249950,0,0);}
.m5b_c00337{transform:matrix(0.134383,-0.002150,0.003999,0.249968,0,0);-ms-transform:matrix(0.134383,-0.002150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.134383,-0.002150,0.003999,0.249968,0,0);}
.m89_c00337{transform:matrix(0.139187,-0.002227,0.003999,0.249968,0,0);-ms-transform:matrix(0.139187,-0.002227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139187,-0.002227,0.003999,0.249968,0,0);}
.m12_c00337{transform:matrix(0.141647,-0.002833,0.004999,0.249950,0,0);-ms-transform:matrix(0.141647,-0.002833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141647,-0.002833,0.004999,0.249950,0,0);}
.mc4_c00337{transform:matrix(0.144836,-0.002897,0.004999,0.249950,0,0);-ms-transform:matrix(0.144836,-0.002897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144836,-0.002897,0.004999,0.249950,0,0);}
.mea_c00337{transform:matrix(0.148065,-0.002961,0.004999,0.249950,0,0);-ms-transform:matrix(0.148065,-0.002961,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148065,-0.002961,0.004999,0.249950,0,0);}
.m6e_c00337{transform:matrix(0.148166,-0.002371,0.003999,0.249968,0,0);-ms-transform:matrix(0.148166,-0.002371,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148166,-0.002371,0.003999,0.249968,0,0);}
.mb9_c00337{transform:matrix(0.150185,-0.003004,0.004999,0.249950,0,0);-ms-transform:matrix(0.150185,-0.003004,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150185,-0.003004,0.004999,0.249950,0,0);}
.md4_c00337{transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);-ms-transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152245,-0.003045,0.004999,0.249950,0,0);}
.m78_c00337{transform:matrix(0.154555,-0.002473,0.003999,0.249968,0,0);-ms-transform:matrix(0.154555,-0.002473,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154555,-0.002473,0.003999,0.249968,0,0);}
.m1b_c00337{transform:matrix(0.158303,-0.003166,0.004999,0.249950,0,0);-ms-transform:matrix(0.158303,-0.003166,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158303,-0.003166,0.004999,0.249950,0,0);}
.m10_c00337{transform:matrix(0.158468,-0.003169,0.004999,0.249950,0,0);-ms-transform:matrix(0.158468,-0.003169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158468,-0.003169,0.004999,0.249950,0,0);}
.ma7_c00337{transform:matrix(0.159718,-0.003194,0.004999,0.249950,0,0);-ms-transform:matrix(0.159718,-0.003194,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159718,-0.003194,0.004999,0.249950,0,0);}
.m13_c00337{transform:matrix(0.160323,-0.003206,0.004999,0.249950,0,0);-ms-transform:matrix(0.160323,-0.003206,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160323,-0.003206,0.004999,0.249950,0,0);}
.md6_c00337{transform:matrix(0.160518,-0.003210,0.004999,0.249950,0,0);-ms-transform:matrix(0.160518,-0.003210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160518,-0.003210,0.004999,0.249950,0,0);}
.m44_c00337{transform:matrix(0.161449,-0.002583,0.003999,0.249968,0,0);-ms-transform:matrix(0.161449,-0.002583,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161449,-0.002583,0.003999,0.249968,0,0);}
.mc3_c00337{transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);-ms-transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);}
.m5c_c00337{transform:matrix(0.161679,-0.002587,0.003999,0.249968,0,0);-ms-transform:matrix(0.161679,-0.002587,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161679,-0.002587,0.003999,0.249968,0,0);}
.me2_c00337{transform:matrix(0.162063,-0.003241,0.004999,0.249950,0,0);-ms-transform:matrix(0.162063,-0.003241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162063,-0.003241,0.004999,0.249950,0,0);}
.m18_c00337{transform:matrix(0.162108,-0.003242,0.004999,0.249950,0,0);-ms-transform:matrix(0.162108,-0.003242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162108,-0.003242,0.004999,0.249950,0,0);}
.m1c_c00337{transform:matrix(0.162522,-0.003250,0.004999,0.249950,0,0);-ms-transform:matrix(0.162522,-0.003250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162522,-0.003250,0.004999,0.249950,0,0);}
.mba_c00337{transform:matrix(0.163257,-0.003265,0.004999,0.249950,0,0);-ms-transform:matrix(0.163257,-0.003265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163257,-0.003265,0.004999,0.249950,0,0);}
.meb_c00337{transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);-ms-transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);}
.mb7_c00337{transform:matrix(0.164447,-0.003289,0.004999,0.249950,0,0);-ms-transform:matrix(0.164447,-0.003289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164447,-0.003289,0.004999,0.249950,0,0);}
.ma4_c00337{transform:matrix(0.166197,-0.003324,0.004999,0.249950,0,0);-ms-transform:matrix(0.166197,-0.003324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166197,-0.003324,0.004999,0.249950,0,0);}
.md1_c00337{transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);-ms-transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);}
.m37_c00337{transform:matrix(0.167267,-0.003345,0.004999,0.249950,0,0);-ms-transform:matrix(0.167267,-0.003345,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167267,-0.003345,0.004999,0.249950,0,0);}
.m9f_c00337{transform:matrix(0.167327,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167327,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167327,-0.003347,0.004999,0.249950,0,0);}
.m0_c00337{transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);}
.md8_c00337{transform:matrix(0.167731,-0.003355,0.004999,0.249950,0,0);-ms-transform:matrix(0.167731,-0.003355,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167731,-0.003355,0.004999,0.249950,0,0);}
.me4_c00337{transform:matrix(0.168246,-0.003365,0.004999,0.249950,0,0);-ms-transform:matrix(0.168246,-0.003365,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168246,-0.003365,0.004999,0.249950,0,0);}
.mbf_c00337{transform:matrix(0.168286,-0.003366,0.004999,0.249950,0,0);-ms-transform:matrix(0.168286,-0.003366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168286,-0.003366,0.004999,0.249950,0,0);}
.m55_c00337{transform:matrix(0.168678,-0.002699,0.003999,0.249968,0,0);-ms-transform:matrix(0.168678,-0.002699,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168678,-0.002699,0.003999,0.249968,0,0);}
.mb3_c00337{transform:matrix(0.169401,-0.003388,0.004999,0.249950,0,0);-ms-transform:matrix(0.169401,-0.003388,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169401,-0.003388,0.004999,0.249950,0,0);}
.md_c00337{transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);-ms-transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170431,-0.003409,0.004999,0.249950,0,0);}
.m5_c00337{transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);-ms-transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170601,-0.003412,0.004999,0.249950,0,0);}
.m36_c00337{transform:matrix(0.171591,-0.003432,0.004999,0.249950,0,0);-ms-transform:matrix(0.171591,-0.003432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171591,-0.003432,0.004999,0.249950,0,0);}
.ma6_c00337{transform:matrix(0.171991,-0.003440,0.004999,0.249950,0,0);-ms-transform:matrix(0.171991,-0.003440,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171991,-0.003440,0.004999,0.249950,0,0);}
.m54_c00337{transform:matrix(0.172243,-0.002756,0.003999,0.249968,0,0);-ms-transform:matrix(0.172243,-0.002756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172243,-0.002756,0.003999,0.249968,0,0);}
.mda_c00337{transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);-ms-transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);}
.me8_c00337{transform:matrix(0.172650,-0.003453,0.004999,0.249950,0,0);-ms-transform:matrix(0.172650,-0.003453,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172650,-0.003453,0.004999,0.249950,0,0);}
.m14_c00337{transform:matrix(0.172815,-0.003456,0.004999,0.249950,0,0);-ms-transform:matrix(0.172815,-0.003456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172815,-0.003456,0.004999,0.249950,0,0);}
.m33_c00337{transform:matrix(0.173255,-0.003465,0.004999,0.249950,0,0);-ms-transform:matrix(0.173255,-0.003465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173255,-0.003465,0.004999,0.249950,0,0);}
.m8f_c00337{transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173330,-0.003467,0.004999,0.249950,0,0);}
.m73_c00337{transform:matrix(0.173903,-0.002782,0.003999,0.249968,0,0);-ms-transform:matrix(0.173903,-0.002782,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173903,-0.002782,0.003999,0.249968,0,0);}
.m47_c00337{transform:matrix(0.173953,-0.002783,0.003999,0.249968,0,0);-ms-transform:matrix(0.173953,-0.002783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173953,-0.002783,0.003999,0.249968,0,0);}
.m27_c00337{transform:matrix(0.174030,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174030,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174030,-0.003481,0.004999,0.249950,0,0);}
.mc7_c00337{transform:matrix(0.174460,-0.003489,0.004999,0.249950,0,0);-ms-transform:matrix(0.174460,-0.003489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174460,-0.003489,0.004999,0.249950,0,0);}
.m59_c00337{transform:matrix(0.174558,-0.002793,0.003999,0.249968,0,0);-ms-transform:matrix(0.174558,-0.002793,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174558,-0.002793,0.003999,0.249968,0,0);}
.m50_c00337{transform:matrix(0.174613,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174613,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174613,-0.002794,0.003999,0.249968,0,0);}
.m34_c00337{transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);-ms-transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175215,-0.003504,0.004999,0.249950,0,0);}
.mae_c00337{transform:matrix(0.175330,-0.003507,0.004999,0.249950,0,0);-ms-transform:matrix(0.175330,-0.003507,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175330,-0.003507,0.004999,0.249950,0,0);}
.maa_c00337{transform:matrix(0.175905,-0.003518,0.004999,0.249950,0,0);-ms-transform:matrix(0.175905,-0.003518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175905,-0.003518,0.004999,0.249950,0,0);}
.m79_c00337{transform:matrix(0.176147,-0.002818,0.003999,0.249968,0,0);-ms-transform:matrix(0.176147,-0.002818,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176147,-0.002818,0.003999,0.249968,0,0);}
.md5_c00337{transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);-ms-transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);}
.m15_c00337{transform:matrix(0.177010,-0.003540,0.004999,0.249950,0,0);-ms-transform:matrix(0.177010,-0.003540,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177010,-0.003540,0.004999,0.249950,0,0);}
.mc9_c00337{transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);-ms-transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);}
.m60_c00337{transform:matrix(0.177272,-0.002836,0.003999,0.249968,0,0);-ms-transform:matrix(0.177272,-0.002836,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177272,-0.002836,0.003999,0.249968,0,0);}
.m81_c00337{transform:matrix(0.177522,-0.002840,0.003999,0.249968,0,0);-ms-transform:matrix(0.177522,-0.002840,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177522,-0.002840,0.003999,0.249968,0,0);}
.m84_c00337{transform:matrix(0.177547,-0.002841,0.003999,0.249968,0,0);-ms-transform:matrix(0.177547,-0.002841,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177547,-0.002841,0.003999,0.249968,0,0);}
.m25_c00337{transform:matrix(0.177814,-0.003556,0.004999,0.249950,0,0);-ms-transform:matrix(0.177814,-0.003556,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177814,-0.003556,0.004999,0.249950,0,0);}
.mb_c00337{transform:matrix(0.177839,-0.003557,0.004999,0.249950,0,0);-ms-transform:matrix(0.177839,-0.003557,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177839,-0.003557,0.004999,0.249950,0,0);}
.m3b_c00337{transform:matrix(0.178604,-0.003572,0.004999,0.249950,0,0);-ms-transform:matrix(0.178604,-0.003572,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178604,-0.003572,0.004999,0.249950,0,0);}
.m4d_c00337{transform:matrix(0.178617,-0.002858,0.003999,0.249968,0,0);-ms-transform:matrix(0.178617,-0.002858,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178617,-0.002858,0.003999,0.249968,0,0);}
.mf_c00337{transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178854,-0.003577,0.004999,0.249950,0,0);}
.me9_c00337{transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);-ms-transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180809,-0.003616,0.004999,0.249950,0,0);}
.m7b_c00337{transform:matrix(0.181357,-0.002902,0.003999,0.249968,0,0);-ms-transform:matrix(0.181357,-0.002902,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181357,-0.002902,0.003999,0.249968,0,0);}
.m86_c00337{transform:matrix(0.181562,-0.002905,0.003999,0.249968,0,0);-ms-transform:matrix(0.181562,-0.002905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181562,-0.002905,0.003999,0.249968,0,0);}
.md2_c00337{transform:matrix(0.181884,-0.003638,0.004999,0.249950,0,0);-ms-transform:matrix(0.181884,-0.003638,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181884,-0.003638,0.004999,0.249950,0,0);}
.mac_c00337{transform:matrix(0.181889,-0.003638,0.004999,0.249950,0,0);-ms-transform:matrix(0.181889,-0.003638,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181889,-0.003638,0.004999,0.249950,0,0);}
.m3c_c00337{transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181944,-0.003639,0.004999,0.249950,0,0);}
.m11_c00337{transform:matrix(0.181954,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181954,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181954,-0.003639,0.004999,0.249950,0,0);}
.m26_c00337{transform:matrix(0.182089,-0.003642,0.004999,0.249950,0,0);-ms-transform:matrix(0.182089,-0.003642,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182089,-0.003642,0.004999,0.249950,0,0);}
.mc6_c00337{transform:matrix(0.182608,-0.003652,0.004999,0.249950,0,0);-ms-transform:matrix(0.182608,-0.003652,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182608,-0.003652,0.004999,0.249950,0,0);}
.mc5_c00337{transform:matrix(0.182643,-0.003653,0.004999,0.249950,0,0);-ms-transform:matrix(0.182643,-0.003653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182643,-0.003653,0.004999,0.249950,0,0);}
.m6a_c00337{transform:matrix(0.182702,-0.002923,0.003999,0.249968,0,0);-ms-transform:matrix(0.182702,-0.002923,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182702,-0.002923,0.003999,0.249968,0,0);}
.m7d_c00337{transform:matrix(0.182737,-0.002924,0.003999,0.249968,0,0);-ms-transform:matrix(0.182737,-0.002924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182737,-0.002924,0.003999,0.249968,0,0);}
.mb6_c00337{transform:matrix(0.183613,-0.003672,0.004999,0.249950,0,0);-ms-transform:matrix(0.183613,-0.003672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183613,-0.003672,0.004999,0.249950,0,0);}
.m29_c00337{transform:matrix(0.183928,-0.003679,0.004999,0.249950,0,0);-ms-transform:matrix(0.183928,-0.003679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183928,-0.003679,0.004999,0.249950,0,0);}
.m5d_c00337{transform:matrix(0.184581,-0.002953,0.003999,0.249968,0,0);-ms-transform:matrix(0.184581,-0.002953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184581,-0.002953,0.003999,0.249968,0,0);}
.m6f_c00337{transform:matrix(0.184826,-0.002957,0.003999,0.249968,0,0);-ms-transform:matrix(0.184826,-0.002957,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184826,-0.002957,0.003999,0.249968,0,0);}
.m58_c00337{transform:matrix(0.185331,-0.002965,0.003999,0.249968,0,0);-ms-transform:matrix(0.185331,-0.002965,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185331,-0.002965,0.003999,0.249968,0,0);}
.mc8_c00337{transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-ms-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186198,-0.003724,0.004999,0.249950,0,0);}
.m92_c00337{transform:matrix(0.186273,-0.003725,0.004999,0.249950,0,0);-ms-transform:matrix(0.186273,-0.003725,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186273,-0.003725,0.004999,0.249950,0,0);}
.me6_c00337{transform:matrix(0.186588,-0.003732,0.004999,0.249950,0,0);-ms-transform:matrix(0.186588,-0.003732,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186588,-0.003732,0.004999,0.249950,0,0);}
.mc0_c00337{transform:matrix(0.186623,-0.003732,0.004999,0.249950,0,0);-ms-transform:matrix(0.186623,-0.003732,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186623,-0.003732,0.004999,0.249950,0,0);}
.med_c00337{transform:matrix(0.186858,-0.003737,0.004999,0.249950,0,0);-ms-transform:matrix(0.186858,-0.003737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186858,-0.003737,0.004999,0.249950,0,0);}
.mf0_c00337{transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);-ms-transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);}
.m1a_c00337{transform:matrix(0.188247,-0.003765,0.004999,0.249950,0,0);-ms-transform:matrix(0.188247,-0.003765,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188247,-0.003765,0.004999,0.249950,0,0);}
.m67_c00337{transform:matrix(0.188926,-0.003023,0.003999,0.249968,0,0);-ms-transform:matrix(0.188926,-0.003023,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188926,-0.003023,0.003999,0.249968,0,0);}
.m8_c00337{transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);}
.m2d_c00337{transform:matrix(0.189392,-0.003788,0.004999,0.249950,0,0);-ms-transform:matrix(0.189392,-0.003788,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189392,-0.003788,0.004999,0.249950,0,0);}
.m6_c00337{transform:matrix(0.189437,-0.003789,0.004999,0.249950,0,0);-ms-transform:matrix(0.189437,-0.003789,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189437,-0.003789,0.004999,0.249950,0,0);}
.m7a_c00337{transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);-ms-transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);}
.ma5_c00337{transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);-ms-transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190117,-0.003802,0.004999,0.249950,0,0);}
.ma_c00337{transform:matrix(0.190337,-0.003807,0.004999,0.249950,0,0);-ms-transform:matrix(0.190337,-0.003807,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190337,-0.003807,0.004999,0.249950,0,0);}
.m75_c00337{transform:matrix(0.190586,-0.003049,0.003999,0.249968,0,0);-ms-transform:matrix(0.190586,-0.003049,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190586,-0.003049,0.003999,0.249968,0,0);}
.m68_c00337{transform:matrix(0.190706,-0.003051,0.003999,0.249968,0,0);-ms-transform:matrix(0.190706,-0.003051,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190706,-0.003051,0.003999,0.249968,0,0);}
.m69_c00337{transform:matrix(0.190786,-0.003053,0.003999,0.249968,0,0);-ms-transform:matrix(0.190786,-0.003053,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190786,-0.003053,0.003999,0.249968,0,0);}
.m4_c00337{transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);-ms-transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);}
.m46_c00337{transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);}
.m3e_c00337{transform:matrix(0.191722,-0.003834,0.004999,0.249950,0,0);-ms-transform:matrix(0.191722,-0.003834,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191722,-0.003834,0.004999,0.249950,0,0);}
.m8e_c00337{transform:matrix(0.192142,-0.003843,0.004999,0.249950,0,0);-ms-transform:matrix(0.192142,-0.003843,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192142,-0.003843,0.004999,0.249950,0,0);}
.m76_c00337{transform:matrix(0.192385,-0.003078,0.003999,0.249968,0,0);-ms-transform:matrix(0.192385,-0.003078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192385,-0.003078,0.003999,0.249968,0,0);}
.m16_c00337{transform:matrix(0.192766,-0.003855,0.004999,0.249950,0,0);-ms-transform:matrix(0.192766,-0.003855,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192766,-0.003855,0.004999,0.249950,0,0);}
.m90_c00337{transform:matrix(0.193121,-0.003862,0.004999,0.249950,0,0);-ms-transform:matrix(0.193121,-0.003862,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193121,-0.003862,0.004999,0.249950,0,0);}
.m2_c00337{transform:matrix(0.193351,-0.003867,0.004999,0.249950,0,0);-ms-transform:matrix(0.193351,-0.003867,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193351,-0.003867,0.004999,0.249950,0,0);}
.m32_c00337{transform:matrix(0.193631,-0.003873,0.004999,0.249950,0,0);-ms-transform:matrix(0.193631,-0.003873,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193631,-0.003873,0.004999,0.249950,0,0);}
.m9a_c00337{transform:matrix(0.193691,-0.003874,0.004999,0.249950,0,0);-ms-transform:matrix(0.193691,-0.003874,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193691,-0.003874,0.004999,0.249950,0,0);}
.mc_c00337{transform:matrix(0.193856,-0.003877,0.004999,0.249950,0,0);-ms-transform:matrix(0.193856,-0.003877,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193856,-0.003877,0.004999,0.249950,0,0);}
.mca_c00337{transform:matrix(0.193961,-0.003879,0.004999,0.249950,0,0);-ms-transform:matrix(0.193961,-0.003879,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193961,-0.003879,0.004999,0.249950,0,0);}
.m3f_c00337{transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194001,-0.003880,0.004999,0.249950,0,0);}
.mdc_c00337{transform:matrix(0.194581,-0.003892,0.004999,0.249950,0,0);-ms-transform:matrix(0.194581,-0.003892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194581,-0.003892,0.004999,0.249950,0,0);}
.m6d_c00337{transform:matrix(0.194780,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194780,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194780,-0.003116,0.003999,0.249968,0,0);}
.mb1_c00337{transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);-ms-transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194961,-0.003899,0.004999,0.249950,0,0);}
.m45_c00337{transform:matrix(0.194990,-0.003120,0.003999,0.249968,0,0);-ms-transform:matrix(0.194990,-0.003120,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194990,-0.003120,0.003999,0.249968,0,0);}
.mf2_c00337{transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);-ms-transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195573,-0.004303,0.005499,0.249940,0,0);}
.m2b_c00337{transform:matrix(0.195601,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195601,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195601,-0.003912,0.004999,0.249950,0,0);}
.m87_c00337{transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);-ms-transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);}
.m1f_c00337{transform:matrix(0.195876,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195876,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195876,-0.003918,0.004999,0.249950,0,0);}
.mf7_c00337{transform:matrix(0.195878,-0.004309,0.005499,0.249940,0,0);-ms-transform:matrix(0.195878,-0.004309,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195878,-0.004309,0.005499,0.249940,0,0);}
.mb8_c00337{transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);}
.m7f_c00337{transform:matrix(0.196080,-0.003137,0.003999,0.249968,0,0);-ms-transform:matrix(0.196080,-0.003137,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196080,-0.003137,0.003999,0.249968,0,0);}
.m19_c00337{transform:matrix(0.196106,-0.003922,0.004999,0.249950,0,0);-ms-transform:matrix(0.196106,-0.003922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196106,-0.003922,0.004999,0.249950,0,0);}
.mcf_c00337{transform:matrix(0.196981,-0.003940,0.004999,0.249950,0,0);-ms-transform:matrix(0.196981,-0.003940,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196981,-0.003940,0.004999,0.249950,0,0);}
.m2c_c00337{transform:matrix(0.197001,-0.003940,0.004999,0.249950,0,0);-ms-transform:matrix(0.197001,-0.003940,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197001,-0.003940,0.004999,0.249950,0,0);}
.m1e_c00337{transform:matrix(0.197291,-0.003946,0.004999,0.249950,0,0);-ms-transform:matrix(0.197291,-0.003946,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197291,-0.003946,0.004999,0.249950,0,0);}
.mbd_c00337{transform:matrix(0.197481,-0.003950,0.004999,0.249950,0,0);-ms-transform:matrix(0.197481,-0.003950,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197481,-0.003950,0.004999,0.249950,0,0);}
.me1_c00337{transform:matrix(0.197605,-0.003952,0.004999,0.249950,0,0);-ms-transform:matrix(0.197605,-0.003952,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197605,-0.003952,0.004999,0.249950,0,0);}
.md7_c00337{transform:matrix(0.197900,-0.003958,0.004999,0.249950,0,0);-ms-transform:matrix(0.197900,-0.003958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197900,-0.003958,0.004999,0.249950,0,0);}
.m4e_c00337{transform:matrix(0.198070,-0.003169,0.003999,0.249968,0,0);-ms-transform:matrix(0.198070,-0.003169,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198070,-0.003169,0.003999,0.249968,0,0);}
.m51_c00337{transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198205,-0.003171,0.003999,0.249968,0,0);}
.m65_c00337{transform:matrix(0.198265,-0.003172,0.003999,0.249968,0,0);-ms-transform:matrix(0.198265,-0.003172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198265,-0.003172,0.003999,0.249968,0,0);}
.m91_c00337{transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);}
.mdd_c00337{transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198430,-0.003969,0.004999,0.249950,0,0);}
.m85_c00337{transform:matrix(0.198895,-0.003182,0.003999,0.249968,0,0);-ms-transform:matrix(0.198895,-0.003182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198895,-0.003182,0.003999,0.249968,0,0);}
.m5e_c00337{transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);-ms-transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);}
.m31_c00337{transform:matrix(0.199260,-0.003985,0.004999,0.249950,0,0);-ms-transform:matrix(0.199260,-0.003985,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199260,-0.003985,0.004999,0.249950,0,0);}
.m38_c00337{transform:matrix(0.199575,-0.003992,0.004999,0.249950,0,0);-ms-transform:matrix(0.199575,-0.003992,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199575,-0.003992,0.004999,0.249950,0,0);}
.mb4_c00337{transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);-ms-transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);}
.m2e_c00337{transform:matrix(0.199820,-0.003996,0.004999,0.249950,0,0);-ms-transform:matrix(0.199820,-0.003996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199820,-0.003996,0.004999,0.249950,0,0);}
.m4a_c00337{transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);}
.ma1_c00337{transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);-ms-transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200795,-0.004016,0.004999,0.249950,0,0);}
.m49_c00337{transform:matrix(0.201014,-0.003216,0.003999,0.249968,0,0);-ms-transform:matrix(0.201014,-0.003216,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201014,-0.003216,0.003999,0.249968,0,0);}
.m6c_c00337{transform:matrix(0.201139,-0.003218,0.003999,0.249968,0,0);-ms-transform:matrix(0.201139,-0.003218,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201139,-0.003218,0.003999,0.249968,0,0);}
.m70_c00337{transform:matrix(0.201889,-0.003230,0.003999,0.249968,0,0);-ms-transform:matrix(0.201889,-0.003230,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201889,-0.003230,0.003999,0.249968,0,0);}
.m22_c00337{transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);-ms-transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);}
.mb5_c00337{transform:matrix(0.202435,-0.004049,0.004999,0.249950,0,0);-ms-transform:matrix(0.202435,-0.004049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202435,-0.004049,0.004999,0.249950,0,0);}
.mde_c00337{transform:matrix(0.202634,-0.004053,0.004999,0.249950,0,0);-ms-transform:matrix(0.202634,-0.004053,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202634,-0.004053,0.004999,0.249950,0,0);}
.mab_c00337{transform:matrix(0.203259,-0.004065,0.004999,0.249950,0,0);-ms-transform:matrix(0.203259,-0.004065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203259,-0.004065,0.004999,0.249950,0,0);}
.m3_c00337{transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);}
.m30_c00337{transform:matrix(0.203829,-0.004077,0.004999,0.249950,0,0);-ms-transform:matrix(0.203829,-0.004077,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203829,-0.004077,0.004999,0.249950,0,0);}
.m9c_c00337{transform:matrix(0.203884,-0.004078,0.004999,0.249950,0,0);-ms-transform:matrix(0.203884,-0.004078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203884,-0.004078,0.004999,0.249950,0,0);}
.m74_c00337{transform:matrix(0.204154,-0.003266,0.003999,0.249968,0,0);-ms-transform:matrix(0.204154,-0.003266,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204154,-0.003266,0.003999,0.249968,0,0);}
.m96_c00337{transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204229,-0.004085,0.004999,0.249950,0,0);}
.m7_c00337{transform:matrix(0.204259,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204259,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204259,-0.004085,0.004999,0.249950,0,0);}
.m94_c00337{transform:matrix(0.204319,-0.004086,0.004999,0.249950,0,0);-ms-transform:matrix(0.204319,-0.004086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204319,-0.004086,0.004999,0.249950,0,0);}
.mdf_c00337{transform:matrix(0.204564,-0.004091,0.004999,0.249950,0,0);-ms-transform:matrix(0.204564,-0.004091,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204564,-0.004091,0.004999,0.249950,0,0);}
.ma0_c00337{transform:matrix(0.204969,-0.004099,0.004999,0.249950,0,0);-ms-transform:matrix(0.204969,-0.004099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204969,-0.004099,0.004999,0.249950,0,0);}
.m8a_c00337{transform:matrix(0.205274,-0.003284,0.003999,0.249968,0,0);-ms-transform:matrix(0.205274,-0.003284,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205274,-0.003284,0.003999,0.249968,0,0);}
.m61_c00337{transform:matrix(0.205894,-0.003294,0.003999,0.249968,0,0);-ms-transform:matrix(0.205894,-0.003294,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205894,-0.003294,0.003999,0.249968,0,0);}
.m72_c00337{transform:matrix(0.206644,-0.003306,0.003999,0.249968,0,0);-ms-transform:matrix(0.206644,-0.003306,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206644,-0.003306,0.003999,0.249968,0,0);}
.ma2_c00337{transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);-ms-transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206754,-0.004135,0.004999,0.249950,0,0);}
.mad_c00337{transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);}
.m77_c00337{transform:matrix(0.207303,-0.003317,0.003999,0.249968,0,0);-ms-transform:matrix(0.207303,-0.003317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207303,-0.003317,0.003999,0.249968,0,0);}
.m1d_c00337{transform:matrix(0.207354,-0.004147,0.004999,0.249950,0,0);-ms-transform:matrix(0.207354,-0.004147,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207354,-0.004147,0.004999,0.249950,0,0);}
.m39_c00337{transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-ms-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207384,-0.004148,0.004999,0.249950,0,0);}
.m5a_c00337{transform:matrix(0.207863,-0.003326,0.003999,0.249968,0,0);-ms-transform:matrix(0.207863,-0.003326,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207863,-0.003326,0.003999,0.249968,0,0);}
.m24_c00337{transform:matrix(0.207888,-0.004158,0.004999,0.249950,0,0);-ms-transform:matrix(0.207888,-0.004158,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207888,-0.004158,0.004999,0.249950,0,0);}
.m23_c00337{transform:matrix(0.208178,-0.004164,0.004999,0.249950,0,0);-ms-transform:matrix(0.208178,-0.004164,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208178,-0.004164,0.004999,0.249950,0,0);}
.m41_c00337{transform:matrix(0.208328,-0.004167,0.004999,0.249950,0,0);-ms-transform:matrix(0.208328,-0.004167,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208328,-0.004167,0.004999,0.249950,0,0);}
.me3_c00337{transform:matrix(0.208338,-0.004167,0.004999,0.249950,0,0);-ms-transform:matrix(0.208338,-0.004167,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208338,-0.004167,0.004999,0.249950,0,0);}
.m48_c00337{transform:matrix(0.208433,-0.003335,0.003999,0.249968,0,0);-ms-transform:matrix(0.208433,-0.003335,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208433,-0.003335,0.003999,0.249968,0,0);}
.ma3_c00337{transform:matrix(0.208623,-0.004172,0.004999,0.249950,0,0);-ms-transform:matrix(0.208623,-0.004172,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208623,-0.004172,0.004999,0.249950,0,0);}
.ma9_c00337{transform:matrix(0.209248,-0.004185,0.004999,0.249950,0,0);-ms-transform:matrix(0.209248,-0.004185,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209248,-0.004185,0.004999,0.249950,0,0);}
.m35_c00337{transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);-ms-transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209623,-0.004192,0.004999,0.249950,0,0);}
.m82_c00337{transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);-ms-transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);}
.mc1_c00337{transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-ms-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);}
.m20_c00337{transform:matrix(0.210058,-0.004201,0.004999,0.249950,0,0);-ms-transform:matrix(0.210058,-0.004201,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210058,-0.004201,0.004999,0.249950,0,0);}
.m4f_c00337{transform:matrix(0.210143,-0.003362,0.003999,0.249968,0,0);-ms-transform:matrix(0.210143,-0.003362,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210143,-0.003362,0.003999,0.249968,0,0);}
.mf9_c00337{transform:matrix(0.210799,-0.004638,0.005499,0.249940,0,0);-ms-transform:matrix(0.210799,-0.004638,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210799,-0.004638,0.005499,0.249940,0,0);}
.me5_c00337{transform:matrix(0.210983,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.210983,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210983,-0.004220,0.004999,0.249950,0,0);}
.m52_c00337{transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);-ms-transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);}
.me7_c00337{transform:matrix(0.212068,-0.004241,0.004999,0.249950,0,0);-ms-transform:matrix(0.212068,-0.004241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212068,-0.004241,0.004999,0.249950,0,0);}
.m93_c00337{transform:matrix(0.212113,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212113,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212113,-0.004242,0.004999,0.249950,0,0);}
.m3a_c00337{transform:matrix(0.212148,-0.004243,0.004999,0.249950,0,0);-ms-transform:matrix(0.212148,-0.004243,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212148,-0.004243,0.004999,0.249950,0,0);}
.mb2_c00337{transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);-ms-transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);}
.m28_c00337{transform:matrix(0.212498,-0.004250,0.004999,0.249950,0,0);-ms-transform:matrix(0.212498,-0.004250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212498,-0.004250,0.004999,0.249950,0,0);}
.m2f_c00337{transform:matrix(0.212797,-0.004256,0.004999,0.249950,0,0);-ms-transform:matrix(0.212797,-0.004256,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212797,-0.004256,0.004999,0.249950,0,0);}
.md3_c00337{transform:matrix(0.213057,-0.004261,0.004999,0.249950,0,0);-ms-transform:matrix(0.213057,-0.004261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213057,-0.004261,0.004999,0.249950,0,0);}
.me_c00337{transform:matrix(0.213107,-0.004262,0.004999,0.249950,0,0);-ms-transform:matrix(0.213107,-0.004262,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213107,-0.004262,0.004999,0.249950,0,0);}
.m66_c00337{transform:matrix(0.213663,-0.003419,0.003999,0.249968,0,0);-ms-transform:matrix(0.213663,-0.003419,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213663,-0.003419,0.003999,0.249968,0,0);}
.m88_c00337{transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);}
.m9_c00337{transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-ms-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);}
.mbc_c00337{transform:matrix(0.214757,-0.004295,0.004999,0.249950,0,0);-ms-transform:matrix(0.214757,-0.004295,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214757,-0.004295,0.004999,0.249950,0,0);}
.mf5_c00337{transform:matrix(0.214813,-0.004726,0.005499,0.249940,0,0);-ms-transform:matrix(0.214813,-0.004726,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214813,-0.004726,0.005499,0.249940,0,0);}
.mf3_c00337{transform:matrix(0.214843,-0.004727,0.005499,0.249940,0,0);-ms-transform:matrix(0.214843,-0.004727,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214843,-0.004727,0.005499,0.249940,0,0);}
.m9d_c00337{transform:matrix(0.215037,-0.004301,0.004999,0.249950,0,0);-ms-transform:matrix(0.215037,-0.004301,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215037,-0.004301,0.004999,0.249950,0,0);}
.m8d_c00337{transform:matrix(0.215207,-0.004304,0.004999,0.249950,0,0);-ms-transform:matrix(0.215207,-0.004304,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215207,-0.004304,0.004999,0.249950,0,0);}
.m17_c00337{transform:matrix(0.215472,-0.004309,0.004999,0.249950,0,0);-ms-transform:matrix(0.215472,-0.004309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215472,-0.004309,0.004999,0.249950,0,0);}
.mec_c00337{transform:matrix(0.215892,-0.004318,0.004999,0.249950,0,0);-ms-transform:matrix(0.215892,-0.004318,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215892,-0.004318,0.004999,0.249950,0,0);}
.m4c_c00337{transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);-ms-transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);}
.m5f_c00337{transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);-ms-transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216607,-0.003466,0.003999,0.249968,0,0);}
.m40_c00337{transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);-ms-transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);}
.m62_c00337{transform:matrix(0.216687,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216687,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216687,-0.003467,0.003999,0.249968,0,0);}
.mf1_c00337{transform:matrix(0.216773,-0.004769,0.005499,0.249940,0,0);-ms-transform:matrix(0.216773,-0.004769,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216773,-0.004769,0.005499,0.249940,0,0);}
.m4b_c00337{transform:matrix(0.216857,-0.003470,0.003999,0.249968,0,0);-ms-transform:matrix(0.216857,-0.003470,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216857,-0.003470,0.003999,0.249968,0,0);}
.m80_c00337{transform:matrix(0.217087,-0.003473,0.003999,0.249968,0,0);-ms-transform:matrix(0.217087,-0.003473,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217087,-0.003473,0.003999,0.249968,0,0);}
.mef_c00337{transform:matrix(0.217442,-0.004349,0.004999,0.249950,0,0);-ms-transform:matrix(0.217442,-0.004349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217442,-0.004349,0.004999,0.249950,0,0);}
.mf4_c00337{transform:matrix(0.217797,-0.004792,0.005499,0.249940,0,0);-ms-transform:matrix(0.217797,-0.004792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217797,-0.004792,0.005499,0.249940,0,0);}
.mf8_c00337{transform:matrix(0.217982,-0.004796,0.005499,0.249940,0,0);-ms-transform:matrix(0.217982,-0.004796,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217982,-0.004796,0.005499,0.249940,0,0);}
.mc2_c00337{transform:matrix(0.218791,-0.004376,0.004999,0.249950,0,0);-ms-transform:matrix(0.218791,-0.004376,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218791,-0.004376,0.004999,0.249950,0,0);}
.m9e_c00337{transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);-ms-transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218951,-0.004379,0.004999,0.249950,0,0);}
.ma8_c00337{transform:matrix(0.219476,-0.004390,0.004999,0.249950,0,0);-ms-transform:matrix(0.219476,-0.004390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219476,-0.004390,0.004999,0.249950,0,0);}
.m21_c00337{transform:matrix(0.219771,-0.004395,0.004999,0.249950,0,0);-ms-transform:matrix(0.219771,-0.004395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219771,-0.004395,0.004999,0.249950,0,0);}
.m7c_c00337{transform:matrix(0.220302,-0.003525,0.003999,0.249968,0,0);-ms-transform:matrix(0.220302,-0.003525,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220302,-0.003525,0.003999,0.249968,0,0);}
.m7e_c00337{transform:matrix(0.220817,-0.003533,0.003999,0.249968,0,0);-ms-transform:matrix(0.220817,-0.003533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220817,-0.003533,0.003999,0.249968,0,0);}
.mcd_c00337{transform:matrix(0.221061,-0.004421,0.004999,0.249950,0,0);-ms-transform:matrix(0.221061,-0.004421,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221061,-0.004421,0.004999,0.249950,0,0);}
.me0_c00337{transform:matrix(0.223245,-0.004465,0.004999,0.249950,0,0);-ms-transform:matrix(0.223245,-0.004465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223245,-0.004465,0.004999,0.249950,0,0);}
.m2a_c00337{transform:matrix(0.223730,-0.004475,0.004999,0.249950,0,0);-ms-transform:matrix(0.223730,-0.004475,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223730,-0.004475,0.004999,0.249950,0,0);}
.m9b_c00337{transform:matrix(0.224080,-0.004482,0.004999,0.249950,0,0);-ms-transform:matrix(0.224080,-0.004482,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224080,-0.004482,0.004999,0.249950,0,0);}
.mbe_c00337{transform:matrix(0.224865,-0.004497,0.004999,0.249950,0,0);-ms-transform:matrix(0.224865,-0.004497,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224865,-0.004497,0.004999,0.249950,0,0);}
.m3d_c00337{transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);-ms-transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224995,-0.004500,0.004999,0.249950,0,0);}
.mf6_c00337{transform:matrix(0.225171,-0.004954,0.005499,0.249940,0,0);-ms-transform:matrix(0.225171,-0.004954,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225171,-0.004954,0.005499,0.249940,0,0);}
.mdb_c00337{transform:matrix(0.226855,-0.004537,0.004999,0.249950,0,0);-ms-transform:matrix(0.226855,-0.004537,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226855,-0.004537,0.004999,0.249950,0,0);}
.m42_c00337{transform:matrix(0.227480,-0.004550,0.004999,0.249950,0,0);-ms-transform:matrix(0.227480,-0.004550,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227480,-0.004550,0.004999,0.249950,0,0);}
.m95_c00337{transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);-ms-transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228474,-0.004569,0.004999,0.249950,0,0);}
.mee_c00337{transform:matrix(0.228884,-0.004578,0.004999,0.249950,0,0);-ms-transform:matrix(0.228884,-0.004578,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228884,-0.004578,0.004999,0.249950,0,0);}
.m64_c00337{transform:matrix(0.230301,-0.003685,0.003999,0.249968,0,0);-ms-transform:matrix(0.230301,-0.003685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230301,-0.003685,0.003999,0.249968,0,0);}
.m63_c00337{transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);-ms-transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);}
.m71_c00337{transform:matrix(0.230765,-0.003692,0.003999,0.249968,0,0);-ms-transform:matrix(0.230765,-0.003692,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230765,-0.003692,0.003999,0.249968,0,0);}
.m6b_c00337{transform:matrix(0.232175,-0.003715,0.003999,0.249968,0,0);-ms-transform:matrix(0.232175,-0.003715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232175,-0.003715,0.003999,0.249968,0,0);}
.md9_c00337{transform:matrix(0.232284,-0.004646,0.004999,0.249950,0,0);-ms-transform:matrix(0.232284,-0.004646,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232284,-0.004646,0.004999,0.249950,0,0);}
.mce_c00337{transform:matrix(0.232693,-0.004654,0.004999,0.249950,0,0);-ms-transform:matrix(0.232693,-0.004654,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232693,-0.004654,0.004999,0.249950,0,0);}
.m99_c00337{transform:matrix(0.232773,-0.004655,0.004999,0.249950,0,0);-ms-transform:matrix(0.232773,-0.004655,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232773,-0.004655,0.004999,0.249950,0,0);}
.m53_c00337{transform:matrix(0.233010,-0.003728,0.003999,0.249968,0,0);-ms-transform:matrix(0.233010,-0.003728,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233010,-0.003728,0.003999,0.249968,0,0);}
.mcc_c00337{transform:matrix(0.233613,-0.004672,0.004999,0.249950,0,0);-ms-transform:matrix(0.233613,-0.004672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233613,-0.004672,0.004999,0.249950,0,0);}
.m8b_c00337{transform:matrix(0.234665,-0.003755,0.003999,0.249968,0,0);-ms-transform:matrix(0.234665,-0.003755,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234665,-0.003755,0.003999,0.249968,0,0);}
.md0_c00337{transform:matrix(0.237627,-0.004753,0.004999,0.249950,0,0);-ms-transform:matrix(0.237627,-0.004753,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237627,-0.004753,0.004999,0.249950,0,0);}
.m83_c00337{transform:matrix(0.238020,-0.003808,0.003999,0.249968,0,0);-ms-transform:matrix(0.238020,-0.003808,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238020,-0.003808,0.003999,0.249968,0,0);}
.m8c_c00337{transform:matrix(0.239822,-0.004796,0.004999,0.249950,0,0);-ms-transform:matrix(0.239822,-0.004796,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239822,-0.004796,0.004999,0.249950,0,0);}
.mcb_c00337{transform:matrix(0.242497,-0.004850,0.004999,0.249950,0,0);-ms-transform:matrix(0.242497,-0.004850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242497,-0.004850,0.004999,0.249950,0,0);}
.mbb_c00337{transform:matrix(0.242541,-0.004851,0.004999,0.249950,0,0);-ms-transform:matrix(0.242541,-0.004851,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242541,-0.004851,0.004999,0.249950,0,0);}
.m97_c00337{transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);-ms-transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247740,-0.004955,0.004999,0.249950,0,0);}
.m43_c00337{transform:matrix(0.253759,-0.005075,0.004999,0.249950,0,0);-ms-transform:matrix(0.253759,-0.005075,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253759,-0.005075,0.004999,0.249950,0,0);}
.maf_c00337{transform:matrix(0.255464,-0.005109,0.004999,0.249950,0,0);-ms-transform:matrix(0.255464,-0.005109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.255464,-0.005109,0.004999,0.249950,0,0);}
.m1_c00337{transform:matrix(0.257993,-0.005160,0.004999,0.249950,0,0);-ms-transform:matrix(0.257993,-0.005160,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257993,-0.005160,0.004999,0.249950,0,0);}
.m56_c00337{transform:matrix(0.282524,-0.004520,0.003999,0.249968,0,0);-ms-transform:matrix(0.282524,-0.004520,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282524,-0.004520,0.003999,0.249968,0,0);}
.m98_c00337{transform:matrix(0.291402,-0.005828,0.004999,0.249950,0,0);-ms-transform:matrix(0.291402,-0.005828,0.004999,0.249950,0,0);-webkit-transform:matrix(0.291402,-0.005828,0.004999,0.249950,0,0);}
.m57_c00337{transform:matrix(0.318769,-0.005100,0.003999,0.249968,0,0);-ms-transform:matrix(0.318769,-0.005100,0.003999,0.249968,0,0);-webkit-transform:matrix(0.318769,-0.005100,0.003999,0.249968,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:0.000000px;}
.fc0_c00337{color:transparent;}
.fs10_c00337{font-size:56.713720px;}
.fsc_c00337{font-size:57.757392px;}
.fs7_c00337{font-size:57.761549px;}
.fs6_c00337{font-size:58.811759px;}
.fs9_c00337{font-size:59.857660px;}
.fsd_c00337{font-size:59.861969px;}
.fs5_c00337{font-size:60.912179px;}
.fs2_c00337{font-size:61.962389px;}
.fsb_c00337{font-size:63.008063px;}
.fs1_c00337{font-size:63.012599px;}
.fs8_c00337{font-size:64.058198px;}
.fsf_c00337{font-size:64.062809px;}
.fse_c00337{font-size:65.113019px;}
.fsa_c00337{font-size:66.158467px;}
.fs4_c00337{font-size:67.213439px;}
.fs3_c00337{font-size:74.564909px;}
.fs0_c00337{font-size:76.650000px;}
.y0_c00337{bottom:0.000000px;}
.yf5_c00337{bottom:21.064500px;}
.yf6_c00337{bottom:21.672327px;}
.yf7_c00337{bottom:22.053048px;}
.yf8_c00337{bottom:22.950021px;}
.yf9_c00337{bottom:23.389086px;}
.yfa_c00337{bottom:24.564150px;}
.yfb_c00337{bottom:25.801980px;}
.yfc_c00337{bottom:26.199993px;}
.yfd_c00337{bottom:26.617773px;}
.yec_c00337{bottom:37.765200px;}
.yed_c00337{bottom:38.794800px;}
.yee_c00337{bottom:39.252780px;}
.yef_c00337{bottom:39.694140px;}
.yf0_c00337{bottom:40.318740px;}
.yf1_c00337{bottom:40.882890px;}
.yf2_c00337{bottom:42.114210px;}
.yf3_c00337{bottom:43.098900px;}
.yf4_c00337{bottom:44.136840px;}
.ye4_c00337{bottom:54.511710px;}
.ye5_c00337{bottom:55.362300px;}
.ye6_c00337{bottom:56.469570px;}
.ye7_c00337{bottom:57.158970px;}
.ye8_c00337{bottom:58.484460px;}
.ye9_c00337{bottom:58.929660px;}
.yea_c00337{bottom:60.786030px;}
.yeb_c00337{bottom:61.527450px;}
.ydc_c00337{bottom:71.793150px;}
.ydd_c00337{bottom:72.643290px;}
.yde_c00337{bottom:74.346090px;}
.ydf_c00337{bottom:74.909280px;}
.ye0_c00337{bottom:76.380960px;}
.ye1_c00337{bottom:76.913310px;}
.ye2_c00337{bottom:78.036900px;}
.ye3_c00337{bottom:79.086270px;}
.yd4_c00337{bottom:88.810080px;}
.yd5_c00337{bottom:89.470980px;}
.yd6_c00337{bottom:89.941260px;}
.yd7_c00337{bottom:90.754440px;}
.yd8_c00337{bottom:93.374970px;}
.yd9_c00337{bottom:93.906390px;}
.yda_c00337{bottom:94.589820px;}
.ydb_c00337{bottom:95.141880px;}
.yce_c00337{bottom:106.092870px;}
.ycf_c00337{bottom:106.477680px;}
.yd0_c00337{bottom:107.798430px;}
.yd1_c00337{bottom:109.603140px;}
.yd2_c00337{bottom:110.655180px;}
.yd3_c00337{bottom:111.910440px;}
.yc7_c00337{bottom:123.375000px;}
.yc8_c00337{bottom:124.254900px;}
.yc9_c00337{bottom:124.704840px;}
.yca_c00337{bottom:126.296670px;}
.ycb_c00337{bottom:126.960780px;}
.ycc_c00337{bottom:128.308920px;}
.ycd_c00337{bottom:128.855040px;}
.ybf_c00337{bottom:140.389230px;}
.yc0_c00337{bottom:141.481620px;}
.yc1_c00337{bottom:141.712230px;}
.yc2_c00337{bottom:143.078160px;}
.yc3_c00337{bottom:143.342940px;}
.yc4_c00337{bottom:143.917080px;}
.yc5_c00337{bottom:145.755060px;}
.yc6_c00337{bottom:146.390310px;}
.yb5_c00337{bottom:157.670130px;}
.yb6_c00337{bottom:158.440920px;}
.yb7_c00337{bottom:158.705070px;}
.yb8_c00337{bottom:159.797190px;}
.yb9_c00337{bottom:160.076910px;}
.yba_c00337{bottom:161.199510px;}
.ybb_c00337{bottom:161.805780px;}
.ybc_c00337{bottom:162.756090px;}
.ybd_c00337{bottom:163.016100px;}
.ybe_c00337{bottom:163.434720px;}
.yac_c00337{bottom:175.760700px;}
.yad_c00337{bottom:176.723340px;}
.yae_c00337{bottom:177.237030px;}
.yaf_c00337{bottom:177.678480px;}
.yb0_c00337{bottom:178.728090px;}
.yb1_c00337{bottom:179.518080px;}
.yb2_c00337{bottom:179.897520px;}
.yb3_c00337{bottom:180.236310px;}
.yb4_c00337{bottom:180.653010px;}
.ya4_c00337{bottom:193.583010px;}
.ya5_c00337{bottom:194.726700px;}
.ya6_c00337{bottom:195.094320px;}
.ya7_c00337{bottom:195.924840px;}
.ya8_c00337{bottom:197.016300px;}
.ya9_c00337{bottom:197.352090px;}
.yaa_c00337{bottom:197.907810px;}
.yab_c00337{bottom:198.175380px;}
.y9d_c00337{bottom:211.134060px;}
.y9e_c00337{bottom:211.810920px;}
.y9f_c00337{bottom:212.231640px;}
.ya0_c00337{bottom:212.812830px;}
.ya1_c00337{bottom:213.772650px;}
.ya2_c00337{bottom:214.823850px;}
.ya3_c00337{bottom:215.299050px;}
.y96_c00337{bottom:227.609430px;}
.y97_c00337{bottom:228.295380px;}
.y98_c00337{bottom:229.694910px;}
.y99_c00337{bottom:230.705430px;}
.y9a_c00337{bottom:230.919660px;}
.y9b_c00337{bottom:232.395840px;}
.y9c_c00337{bottom:232.620840px;}
.y90_c00337{bottom:244.084500px;}
.y91_c00337{bottom:244.732920px;}
.y92_c00337{bottom:246.034380px;}
.y93_c00337{bottom:247.066020px;}
.y94_c00337{bottom:247.362960px;}
.y95_c00337{bottom:248.757180px;}
.y87_c00337{bottom:260.808732px;}
.y88_c00337{bottom:262.019724px;}
.y89_c00337{bottom:262.553400px;}
.y8a_c00337{bottom:263.139564px;}
.y8b_c00337{bottom:263.491428px;}
.y8c_c00337{bottom:264.148692px;}
.y8d_c00337{bottom:264.596472px;}
.y8e_c00337{bottom:264.969204px;}
.y8f_c00337{bottom:265.845096px;}
.y7e_c00337{bottom:277.282908px;}
.y7f_c00337{bottom:277.875516px;}
.y80_c00337{bottom:278.506284px;}
.y81_c00337{bottom:279.748044px;}
.y82_c00337{bottom:280.304640px;}
.y83_c00337{bottom:281.133312px;}
.y84_c00337{bottom:281.900952px;}
.y85_c00337{bottom:282.580680px;}
.y86_c00337{bottom:282.922500px;}
.y76_c00337{bottom:294.562080px;}
.y77_c00337{bottom:295.832052px;}
.y78_c00337{bottom:296.458140px;}
.y79_c00337{bottom:297.572976px;}
.y7a_c00337{bottom:298.166856px;}
.y7b_c00337{bottom:298.644948px;}
.y7c_c00337{bottom:299.892792px;}
.y7d_c00337{bottom:300.755100px;}
.y6d_c00337{bottom:311.572452px;}
.y6e_c00337{bottom:312.071328px;}
.y6f_c00337{bottom:313.519296px;}
.y70_c00337{bottom:314.659260px;}
.y71_c00337{bottom:315.434808px;}
.y72_c00337{bottom:315.918768px;}
.y73_c00337{bottom:316.381344px;}
.y74_c00337{bottom:317.530116px;}
.y75_c00337{bottom:318.323832px;}
.y67_c00337{bottom:328.586292px;}
.y68_c00337{bottom:329.028516px;}
.y69_c00337{bottom:331.542612px;}
.y6a_c00337{bottom:331.809804px;}
.y6b_c00337{bottom:333.331704px;}
.y6c_c00337{bottom:333.774528px;}
.y5f_c00337{bottom:345.867192px;}
.y60_c00337{bottom:346.405848px;}
.y61_c00337{bottom:346.918944px;}
.y62_c00337{bottom:348.399948px;}
.y63_c00337{bottom:349.051272px;}
.y64_c00337{bottom:349.601448px;}
.y65_c00337{bottom:350.833296px;}
.y66_c00337{bottom:352.057920px;}
.y56_c00337{bottom:363.419760px;}
.y57_c00337{bottom:364.277928px;}
.y58_c00337{bottom:364.758576px;}
.y59_c00337{bottom:365.861124px;}
.y5a_c00337{bottom:366.130380px;}
.y5b_c00337{bottom:366.529488px;}
.y5c_c00337{bottom:367.166724px;}
.y5d_c00337{bottom:368.467296px;}
.y5e_c00337{bottom:368.791020px;}
.y4d_c00337{bottom:380.702004px;}
.y4e_c00337{bottom:381.897204px;}
.y4f_c00337{bottom:382.137792px;}
.y50_c00337{bottom:382.464816px;}
.y51_c00337{bottom:383.240928px;}
.y52_c00337{bottom:383.947968px;}
.y53_c00337{bottom:384.384096px;}
.y54_c00337{bottom:385.487136px;}
.y55_c00337{bottom:385.872900px;}
.y46_c00337{bottom:398.793000px;}
.y47_c00337{bottom:399.156240px;}
.y48_c00337{bottom:400.365624px;}
.y49_c00337{bottom:400.684080px;}
.y4a_c00337{bottom:401.125896px;}
.y4b_c00337{bottom:401.967360px;}
.y4c_c00337{bottom:402.470352px;}
.y3e_c00337{bottom:415.508220px;}
.y3f_c00337{bottom:415.840290px;}
.y40_c00337{bottom:416.102910px;}
.y41_c00337{bottom:416.816340px;}
.y42_c00337{bottom:417.156420px;}
.y43_c00337{bottom:417.992220px;}
.y44_c00337{bottom:418.761990px;}
.y45_c00337{bottom:419.110980px;}
.y35_c00337{bottom:432.520290px;}
.y36_c00337{bottom:432.895860px;}
.y37_c00337{bottom:433.229100px;}
.y38_c00337{bottom:433.604880px;}
.y39_c00337{bottom:434.076060px;}
.y3a_c00337{bottom:434.755800px;}
.y3b_c00337{bottom:435.127470px;}
.y3c_c00337{bottom:436.143060px;}
.y3d_c00337{bottom:436.437390px;}
.y2e_c00337{bottom:448.993440px;}
.y2f_c00337{bottom:449.714460px;}
.y30_c00337{bottom:450.870630px;}
.y31_c00337{bottom:451.318050px;}
.y32_c00337{bottom:452.114310px;}
.y33_c00337{bottom:453.101310px;}
.y34_c00337{bottom:453.879420px;}
.y26_c00337{bottom:466.006890px;}
.y27_c00337{bottom:466.452870px;}
.y28_c00337{bottom:466.728900px;}
.y29_c00337{bottom:467.301750px;}
.y2a_c00337{bottom:467.803410px;}
.y2b_c00337{bottom:468.087540px;}
.y2c_c00337{bottom:469.248690px;}
.y2d_c00337{bottom:470.575410px;}
.y20_c00337{bottom:483.020100px;}
.y21_c00337{bottom:484.016400px;}
.y22_c00337{bottom:485.261310px;}
.y23_c00337{bottom:485.959260px;}
.y24_c00337{bottom:486.857400px;}
.y25_c00337{bottom:487.506420px;}
.y19_c00337{bottom:500.034180px;}
.y1a_c00337{bottom:500.408880px;}
.y1b_c00337{bottom:501.658440px;}
.y1c_c00337{bottom:502.022970px;}
.y1d_c00337{bottom:502.434510px;}
.y1e_c00337{bottom:503.295510px;}
.y1f_c00337{bottom:504.618240px;}
.y10_c00337{bottom:517.316310px;}
.y11_c00337{bottom:517.908120px;}
.y12_c00337{bottom:518.875800px;}
.y13_c00337{bottom:519.139500px;}
.y14_c00337{bottom:519.554760px;}
.y15_c00337{bottom:520.591350px;}
.y16_c00337{bottom:520.941960px;}
.y17_c00337{bottom:521.753130px;}
.y18_c00337{bottom:521.957880px;}
.y9_c00337{bottom:533.521140px;}
.ya_c00337{bottom:533.883840px;}
.yb_c00337{bottom:535.167060px;}
.yc_c00337{bottom:535.849590px;}
.yd_c00337{bottom:536.923110px;}
.ye_c00337{bottom:537.894270px;}
.yf_c00337{bottom:538.301340px;}
.y2_c00337{bottom:551.076000px;}
.y3_c00337{bottom:552.447420px;}
.y4_c00337{bottom:553.498470px;}
.y5_c00337{bottom:554.056830px;}
.y6_c00337{bottom:554.807400px;}
.y7_c00337{bottom:555.244920px;}
.y8_c00337{bottom:556.519920px;}
.y1_c00337{bottom:567.411000px;}
.h12_c00337{height:56.713720px;}
.he_c00337{height:57.757392px;}
.h9_c00337{height:57.761549px;}
.h8_c00337{height:58.811759px;}
.hb_c00337{height:59.857660px;}
.hf_c00337{height:59.861969px;}
.h7_c00337{height:60.912179px;}
.h4_c00337{height:61.962389px;}
.hd_c00337{height:63.008063px;}
.h3_c00337{height:63.012599px;}
.ha_c00337{height:64.058198px;}
.h11_c00337{height:64.062809px;}
.h10_c00337{height:65.113019px;}
.hc_c00337{height:66.158467px;}
.h6_c00337{height:67.213439px;}
.h5_c00337{height:74.564909px;}
.h2_c00337{height:76.650000px;}
.h0_c00337{height:613.170000px;}
.h1_c00337{height:613.500000px;}
.w0_c00337{width:359.100000px;}
.w1_c00337{width:359.250000px;}
.x0_c00337{left:0.000000px;}
.x9_c00337{left:41.550120px;}
.x1d_c00337{left:43.133370px;}
.x3b_c00337{left:44.815152px;}
.x57_c00337{left:46.338360px;}
.x74_c00337{left:47.464890px;}
.x7d_c00337{left:48.508500px;}
.x76_c00337{left:49.764300px;}
.x2_c00337{left:52.396500px;}
.x37_c00337{left:57.435000px;}
.xa_c00337{left:59.685120px;}
.x17_c00337{left:63.157740px;}
.x33_c00337{left:65.519880px;}
.x2c_c00337{left:67.158060px;}
.x21_c00337{left:69.063450px;}
.x4b_c00337{left:70.373496px;}
.x71_c00337{left:74.288700px;}
.x7e_c00337{left:76.137000px;}
.xf_c00337{left:79.326360px;}
.x66_c00337{left:80.934510px;}
.x28_c00337{left:82.307880px;}
.x6d_c00337{left:83.367930px;}
.x22_c00337{left:85.265910px;}
.x40_c00337{left:86.677584px;}
.x2d_c00337{left:87.946710px;}
.x5a_c00337{left:91.721850px;}
.x67_c00337{left:92.941530px;}
.x55_c00337{left:95.040000px;}
.x4c_c00337{left:97.793424px;}
.x1e_c00337{left:101.726880px;}
.x49_c00337{left:102.815568px;}
.x6a_c00337{left:104.568900px;}
.x3c_c00337{left:107.699628px;}
.x7a_c00337{left:109.821870px;}
.x2e_c00337{left:111.387570px;}
.x5d_c00337{left:113.636160px;}
.x23_c00337{left:118.935420px;}
.x3_c00337{left:120.967500px;}
.x77_c00337{left:122.297160px;}
.xb_c00337{left:123.846120px;}
.x46_c00337{left:128.273160px;}
.x34_c00337{left:130.603890px;}
.x18_c00337{left:132.538500px;}
.x7f_c00337{left:134.214000px;}
.x5e_c00337{left:135.243450px;}
.x3d_c00337{left:137.642712px;}
.x10_c00337{left:139.790190px;}
.x2f_c00337{left:140.798910px;}
.x68_c00337{left:142.595550px;}
.x29_c00337{left:146.568960px;}
.x24_c00337{left:148.445190px;}
.x43_c00337{left:149.542656px;}
.x4d_c00337{left:151.772376px;}
.x19_c00337{left:152.790810px;}
.x7b_c00337{left:154.266330px;}
.x11_c00337{left:156.276510px;}
.xc_c00337{left:157.972620px;}
.x56_c00337{left:160.113000px;}
.x58_c00337{left:162.242010px;}
.x6b_c00337{left:163.936830px;}
.x25_c00337{left:165.202710px;}
.x61_c00337{left:166.837260px;}
.x6e_c00337{left:168.424620px;}
.x1_c00337{left:171.450000px;}
.x4_c00337{left:173.520000px;}
.x1a_c00337{left:175.693740px;}
.x3e_c00337{left:178.460244px;}
.x12_c00337{left:182.216580px;}
.x30_c00337{left:183.264300px;}
.x6f_c00337{left:196.077900px;}
.x41_c00337{left:199.267884px;}
.x6c_c00337{left:200.405640px;}
.x5_c00337{left:201.438000px;}
.x38_c00337{left:203.241000px;}
.x51_c00337{left:204.388368px;}
.x31_c00337{left:206.499660px;}
.x80_c00337{left:207.583500px;}
.x35_c00337{left:208.905690px;}
.xd_c00337{left:211.648620px;}
.x78_c00337{left:213.413910px;}
.x1f_c00337{left:215.976720px;}
.x59_c00337{left:218.395260px;}
.x5b_c00337{left:222.446400px;}
.x1b_c00337{left:223.545660px;}
.x52_c00337{left:225.716664px;}
.x7c_c00337{left:229.033830px;}
.x42_c00337{left:231.124344px;}
.x62_c00337{left:232.448010px;}
.x26_c00337{left:233.539320px;}
.x72_c00337{left:237.000210px;}
.x6_c00337{left:238.966500px;}
.x53_c00337{left:243.479748px;}
.x4e_c00337{left:245.349888px;}
.x13_c00337{left:247.026270px;}
.x5f_c00337{left:248.299230px;}
.x44_c00337{left:250.895172px;}
.x47_c00337{left:252.762240px;}
.x70_c00337{left:253.846980px;}
.x39_c00337{left:255.832500px;}
.x73_c00337{left:259.144440px;}
.x7_c00337{left:260.842500px;}
.x81_c00337{left:263.848500px;}
.x14_c00337{left:268.908510px;}
.x2a_c00337{left:270.482910px;}
.x4f_c00337{left:274.892076px;}
.x69_c00337{left:277.035150px;}
.x75_c00337{left:278.770050px;}
.xe_c00337{left:280.560120px;}
.x63_c00337{left:281.851470px;}
.x36_c00337{left:283.451130px;}
.x54_c00337{left:285.188412px;}
.x3a_c00337{left:287.269500px;}
.x32_c00337{left:288.352200px;}
.x50_c00337{left:289.785420px;}
.x5c_c00337{left:292.563420px;}
.x1c_c00337{left:297.035100px;}
.x60_c00337{left:300.752880px;}
.x45_c00337{left:301.927644px;}
.x64_c00337{left:305.550360px;}
.x20_c00337{left:306.990180px;}
.x79_c00337{left:309.614940px;}
.x27_c00337{left:311.580000px;}
.x2b_c00337{left:313.740150px;}
.x3f_c00337{left:316.983096px;}
.x15_c00337{left:319.596060px;}
.x8_c00337{left:324.592500px;}
.x4a_c00337{left:326.484564px;}
.x16_c00337{left:332.384580px;}
.x48_c00337{left:337.220784px;}
.x65_c00337{left:352.703610px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.fs10_c00337{font-size:50.412195pt;}
.fsc_c00337{font-size:51.339904pt;}
.fs7_c00337{font-size:51.343599pt;}
.fs6_c00337{font-size:52.277119pt;}
.fs9_c00337{font-size:53.206809pt;}
.fsd_c00337{font-size:53.210639pt;}
.fs5_c00337{font-size:54.144159pt;}
.fs2_c00337{font-size:55.077679pt;}
.fsb_c00337{font-size:56.007168pt;}
.fs1_c00337{font-size:56.011199pt;}
.fs8_c00337{font-size:56.940620pt;}
.fsf_c00337{font-size:56.944719pt;}
.fse_c00337{font-size:57.878239pt;}
.fsa_c00337{font-size:58.807526pt;}
.fs4_c00337{font-size:59.745279pt;}
.fs3_c00337{font-size:66.279919pt;}
.fs0_c00337{font-size:68.133333pt;}
.y0_c00337{bottom:0.000000pt;}
.yf5_c00337{bottom:18.724000pt;}
.yf6_c00337{bottom:19.264291pt;}
.yf7_c00337{bottom:19.602709pt;}
.yf8_c00337{bottom:20.400019pt;}
.yf9_c00337{bottom:20.790299pt;}
.yfa_c00337{bottom:21.834800pt;}
.yfb_c00337{bottom:22.935093pt;}
.yfc_c00337{bottom:23.288883pt;}
.yfd_c00337{bottom:23.660243pt;}
.yec_c00337{bottom:33.569067pt;}
.yed_c00337{bottom:34.484267pt;}
.yee_c00337{bottom:34.891360pt;}
.yef_c00337{bottom:35.283680pt;}
.yf0_c00337{bottom:35.838880pt;}
.yf1_c00337{bottom:36.340347pt;}
.yf2_c00337{bottom:37.434853pt;}
.yf3_c00337{bottom:38.310133pt;}
.yf4_c00337{bottom:39.232747pt;}
.ye4_c00337{bottom:48.454853pt;}
.ye5_c00337{bottom:49.210933pt;}
.ye6_c00337{bottom:50.195173pt;}
.ye7_c00337{bottom:50.807973pt;}
.ye8_c00337{bottom:51.986187pt;}
.ye9_c00337{bottom:52.381920pt;}
.yea_c00337{bottom:54.032027pt;}
.yeb_c00337{bottom:54.691067pt;}
.ydc_c00337{bottom:63.816133pt;}
.ydd_c00337{bottom:64.571813pt;}
.yde_c00337{bottom:66.085413pt;}
.ydf_c00337{bottom:66.586027pt;}
.ye0_c00337{bottom:67.894187pt;}
.ye1_c00337{bottom:68.367387pt;}
.ye2_c00337{bottom:69.366133pt;}
.ye3_c00337{bottom:70.298907pt;}
.yd4_c00337{bottom:78.942293pt;}
.yd5_c00337{bottom:79.529760pt;}
.yd6_c00337{bottom:79.947787pt;}
.yd7_c00337{bottom:80.670613pt;}
.yd8_c00337{bottom:82.999973pt;}
.yd9_c00337{bottom:83.472347pt;}
.yda_c00337{bottom:84.079840pt;}
.ydb_c00337{bottom:84.570560pt;}
.yce_c00337{bottom:94.304773pt;}
.ycf_c00337{bottom:94.646827pt;}
.yd0_c00337{bottom:95.820827pt;}
.yd1_c00337{bottom:97.425013pt;}
.yd2_c00337{bottom:98.360160pt;}
.yd3_c00337{bottom:99.475947pt;}
.yc7_c00337{bottom:109.666667pt;}
.yc8_c00337{bottom:110.448800pt;}
.yc9_c00337{bottom:110.848747pt;}
.yca_c00337{bottom:112.263707pt;}
.ycb_c00337{bottom:112.854027pt;}
.ycc_c00337{bottom:114.052373pt;}
.ycd_c00337{bottom:114.537813pt;}
.ybf_c00337{bottom:124.790427pt;}
.yc0_c00337{bottom:125.761440pt;}
.yc1_c00337{bottom:125.966427pt;}
.yc2_c00337{bottom:127.180587pt;}
.yc3_c00337{bottom:127.415947pt;}
.yc4_c00337{bottom:127.926293pt;}
.yc5_c00337{bottom:129.560053pt;}
.yc6_c00337{bottom:130.124720pt;}
.yb5_c00337{bottom:140.151227pt;}
.yb6_c00337{bottom:140.836373pt;}
.yb7_c00337{bottom:141.071173pt;}
.yb8_c00337{bottom:142.041947pt;}
.yb9_c00337{bottom:142.290587pt;}
.yba_c00337{bottom:143.288453pt;}
.ybb_c00337{bottom:143.827360pt;}
.ybc_c00337{bottom:144.672080pt;}
.ybd_c00337{bottom:144.903200pt;}
.ybe_c00337{bottom:145.275307pt;}
.yac_c00337{bottom:156.231733pt;}
.yad_c00337{bottom:157.087413pt;}
.yae_c00337{bottom:157.544027pt;}
.yaf_c00337{bottom:157.936427pt;}
.yb0_c00337{bottom:158.869413pt;}
.yb1_c00337{bottom:159.571627pt;}
.yb2_c00337{bottom:159.908907pt;}
.yb3_c00337{bottom:160.210053pt;}
.yb4_c00337{bottom:160.580453pt;}
.ya4_c00337{bottom:172.073787pt;}
.ya5_c00337{bottom:173.090400pt;}
.ya6_c00337{bottom:173.417173pt;}
.ya7_c00337{bottom:174.155413pt;}
.ya8_c00337{bottom:175.125600pt;}
.ya9_c00337{bottom:175.424080pt;}
.yaa_c00337{bottom:175.918053pt;}
.yab_c00337{bottom:176.155893pt;}
.y9d_c00337{bottom:187.674720pt;}
.y9e_c00337{bottom:188.276373pt;}
.y9f_c00337{bottom:188.650347pt;}
.ya0_c00337{bottom:189.166960pt;}
.ya1_c00337{bottom:190.020133pt;}
.ya2_c00337{bottom:190.954533pt;}
.ya3_c00337{bottom:191.376933pt;}
.y96_c00337{bottom:202.319493pt;}
.y97_c00337{bottom:202.929227pt;}
.y98_c00337{bottom:204.173253pt;}
.y99_c00337{bottom:205.071493pt;}
.y9a_c00337{bottom:205.261920pt;}
.y9b_c00337{bottom:206.574080pt;}
.y9c_c00337{bottom:206.774080pt;}
.y90_c00337{bottom:216.964000pt;}
.y91_c00337{bottom:217.540373pt;}
.y92_c00337{bottom:218.697227pt;}
.y93_c00337{bottom:219.614240pt;}
.y94_c00337{bottom:219.878187pt;}
.y95_c00337{bottom:221.117493pt;}
.y87_c00337{bottom:231.829984pt;}
.y88_c00337{bottom:232.906421pt;}
.y89_c00337{bottom:233.380800pt;}
.y8a_c00337{bottom:233.901835pt;}
.y8b_c00337{bottom:234.214603pt;}
.y8c_c00337{bottom:234.798837pt;}
.y8d_c00337{bottom:235.196864pt;}
.y8e_c00337{bottom:235.528181pt;}
.y8f_c00337{bottom:236.306752pt;}
.y7e_c00337{bottom:246.473696pt;}
.y7f_c00337{bottom:247.000459pt;}
.y80_c00337{bottom:247.561141pt;}
.y81_c00337{bottom:248.664928pt;}
.y82_c00337{bottom:249.159680pt;}
.y83_c00337{bottom:249.896277pt;}
.y84_c00337{bottom:250.578624pt;}
.y85_c00337{bottom:251.182827pt;}
.y86_c00337{bottom:251.486667pt;}
.y76_c00337{bottom:261.832960pt;}
.y77_c00337{bottom:262.961824pt;}
.y78_c00337{bottom:263.518347pt;}
.y79_c00337{bottom:264.509312pt;}
.y7a_c00337{bottom:265.037205pt;}
.y7b_c00337{bottom:265.462176pt;}
.y7c_c00337{bottom:266.571371pt;}
.y7d_c00337{bottom:267.337867pt;}
.y6d_c00337{bottom:276.953291pt;}
.y6e_c00337{bottom:277.396736pt;}
.y6f_c00337{bottom:278.683819pt;}
.y70_c00337{bottom:279.697120pt;}
.y71_c00337{bottom:280.386496pt;}
.y72_c00337{bottom:280.816683pt;}
.y73_c00337{bottom:281.227861pt;}
.y74_c00337{bottom:282.248992pt;}
.y75_c00337{bottom:282.954517pt;}
.y67_c00337{bottom:292.076704pt;}
.y68_c00337{bottom:292.469792pt;}
.y69_c00337{bottom:294.704544pt;}
.y6a_c00337{bottom:294.942048pt;}
.y6b_c00337{bottom:296.294848pt;}
.y6c_c00337{bottom:296.688469pt;}
.y5f_c00337{bottom:307.437504pt;}
.y60_c00337{bottom:307.916309pt;}
.y61_c00337{bottom:308.372395pt;}
.y62_c00337{bottom:309.688843pt;}
.y63_c00337{bottom:310.267797pt;}
.y64_c00337{bottom:310.756843pt;}
.y65_c00337{bottom:311.851819pt;}
.y66_c00337{bottom:312.940373pt;}
.y56_c00337{bottom:323.039787pt;}
.y57_c00337{bottom:323.802603pt;}
.y58_c00337{bottom:324.229845pt;}
.y59_c00337{bottom:325.209888pt;}
.y5a_c00337{bottom:325.449227pt;}
.y5b_c00337{bottom:325.803989pt;}
.y5c_c00337{bottom:326.370421pt;}
.y5d_c00337{bottom:327.526485pt;}
.y5e_c00337{bottom:327.814240pt;}
.y4d_c00337{bottom:338.401781pt;}
.y4e_c00337{bottom:339.464181pt;}
.y4f_c00337{bottom:339.678037pt;}
.y50_c00337{bottom:339.968725pt;}
.y51_c00337{bottom:340.658603pt;}
.y52_c00337{bottom:341.287083pt;}
.y53_c00337{bottom:341.674752pt;}
.y54_c00337{bottom:342.655232pt;}
.y55_c00337{bottom:342.998133pt;}
.y46_c00337{bottom:354.482667pt;}
.y47_c00337{bottom:354.805547pt;}
.y48_c00337{bottom:355.880555pt;}
.y49_c00337{bottom:356.163627pt;}
.y4a_c00337{bottom:356.556352pt;}
.y4b_c00337{bottom:357.304320pt;}
.y4c_c00337{bottom:357.751424pt;}
.y3e_c00337{bottom:369.340640pt;}
.y3f_c00337{bottom:369.635813pt;}
.y40_c00337{bottom:369.869253pt;}
.y41_c00337{bottom:370.503413pt;}
.y42_c00337{bottom:370.805707pt;}
.y43_c00337{bottom:371.548640pt;}
.y44_c00337{bottom:372.232880pt;}
.y45_c00337{bottom:372.543093pt;}
.y35_c00337{bottom:384.462480pt;}
.y36_c00337{bottom:384.796320pt;}
.y37_c00337{bottom:385.092533pt;}
.y38_c00337{bottom:385.426560pt;}
.y39_c00337{bottom:385.845387pt;}
.y3a_c00337{bottom:386.449600pt;}
.y3b_c00337{bottom:386.779973pt;}
.y3c_c00337{bottom:387.682720pt;}
.y3d_c00337{bottom:387.944347pt;}
.y2e_c00337{bottom:399.105280pt;}
.y2f_c00337{bottom:399.746187pt;}
.y30_c00337{bottom:400.773893pt;}
.y31_c00337{bottom:401.171600pt;}
.y32_c00337{bottom:401.879387pt;}
.y33_c00337{bottom:402.756720pt;}
.y34_c00337{bottom:403.448373pt;}
.y26_c00337{bottom:414.228347pt;}
.y27_c00337{bottom:414.624773pt;}
.y28_c00337{bottom:414.870133pt;}
.y29_c00337{bottom:415.379333pt;}
.y2a_c00337{bottom:415.825253pt;}
.y2b_c00337{bottom:416.077813pt;}
.y2c_c00337{bottom:417.109947pt;}
.y2d_c00337{bottom:418.289253pt;}
.y20_c00337{bottom:429.351200pt;}
.y21_c00337{bottom:430.236800pt;}
.y22_c00337{bottom:431.343387pt;}
.y23_c00337{bottom:431.963787pt;}
.y24_c00337{bottom:432.762133pt;}
.y25_c00337{bottom:433.339040pt;}
.y19_c00337{bottom:444.474827pt;}
.y1a_c00337{bottom:444.807893pt;}
.y1b_c00337{bottom:445.918613pt;}
.y1c_c00337{bottom:446.242640pt;}
.y1d_c00337{bottom:446.608453pt;}
.y1e_c00337{bottom:447.373787pt;}
.y1f_c00337{bottom:448.549547pt;}
.y10_c00337{bottom:459.836720pt;}
.y11_c00337{bottom:460.362773pt;}
.y12_c00337{bottom:461.222933pt;}
.y13_c00337{bottom:461.457333pt;}
.y14_c00337{bottom:461.826453pt;}
.y15_c00337{bottom:462.747867pt;}
.y16_c00337{bottom:463.059520pt;}
.y17_c00337{bottom:463.780560pt;}
.y18_c00337{bottom:463.962560pt;}
.y9_c00337{bottom:474.241013pt;}
.ya_c00337{bottom:474.563413pt;}
.yb_c00337{bottom:475.704053pt;}
.yc_c00337{bottom:476.310747pt;}
.yd_c00337{bottom:477.264987pt;}
.ye_c00337{bottom:478.128240pt;}
.yf_c00337{bottom:478.490080pt;}
.y2_c00337{bottom:489.845333pt;}
.y3_c00337{bottom:491.064373pt;}
.y4_c00337{bottom:491.998640pt;}
.y5_c00337{bottom:492.494960pt;}
.y6_c00337{bottom:493.162133pt;}
.y7_c00337{bottom:493.551040pt;}
.y8_c00337{bottom:494.684373pt;}
.y1_c00337{bottom:504.365333pt;}
.h12_c00337{height:50.412195pt;}
.he_c00337{height:51.339904pt;}
.h9_c00337{height:51.343599pt;}
.h8_c00337{height:52.277119pt;}
.hb_c00337{height:53.206809pt;}
.hf_c00337{height:53.210639pt;}
.h7_c00337{height:54.144159pt;}
.h4_c00337{height:55.077679pt;}
.hd_c00337{height:56.007168pt;}
.h3_c00337{height:56.011199pt;}
.ha_c00337{height:56.940620pt;}
.h11_c00337{height:56.944719pt;}
.h10_c00337{height:57.878239pt;}
.hc_c00337{height:58.807526pt;}
.h6_c00337{height:59.745279pt;}
.h5_c00337{height:66.279919pt;}
.h2_c00337{height:68.133333pt;}
.h0_c00337{height:545.040000pt;}
.h1_c00337{height:545.333333pt;}
.w0_c00337{width:319.200000pt;}
.w1_c00337{width:319.333333pt;}
.x0_c00337{left:0.000000pt;}
.x9_c00337{left:36.933440pt;}
.x1d_c00337{left:38.340773pt;}
.x3b_c00337{left:39.835691pt;}
.x57_c00337{left:41.189653pt;}
.x74_c00337{left:42.191013pt;}
.x7d_c00337{left:43.118667pt;}
.x76_c00337{left:44.234933pt;}
.x2_c00337{left:46.574667pt;}
.x37_c00337{left:51.053333pt;}
.xa_c00337{left:53.053440pt;}
.x17_c00337{left:56.140213pt;}
.x33_c00337{left:58.239893pt;}
.x2c_c00337{left:59.696053pt;}
.x21_c00337{left:61.389733pt;}
.x4b_c00337{left:62.554219pt;}
.x71_c00337{left:66.034400pt;}
.x7e_c00337{left:67.677333pt;}
.xf_c00337{left:70.512320pt;}
.x66_c00337{left:71.941787pt;}
.x28_c00337{left:73.162560pt;}
.x6d_c00337{left:74.104827pt;}
.x22_c00337{left:75.791920pt;}
.x40_c00337{left:77.046741pt;}
.x2d_c00337{left:78.174853pt;}
.x5a_c00337{left:81.530533pt;}
.x67_c00337{left:82.614693pt;}
.x55_c00337{left:84.480000pt;}
.x4c_c00337{left:86.927488pt;}
.x1e_c00337{left:90.423893pt;}
.x49_c00337{left:91.391616pt;}
.x6a_c00337{left:92.950133pt;}
.x3c_c00337{left:95.733003pt;}
.x7a_c00337{left:97.619440pt;}
.x2e_c00337{left:99.011173pt;}
.x5d_c00337{left:101.009920pt;}
.x23_c00337{left:105.720373pt;}
.x3_c00337{left:107.526667pt;}
.x77_c00337{left:108.708587pt;}
.xb_c00337{left:110.085440pt;}
.x46_c00337{left:114.020587pt;}
.x34_c00337{left:116.092347pt;}
.x18_c00337{left:117.812000pt;}
.x7f_c00337{left:119.301333pt;}
.x5e_c00337{left:120.216400pt;}
.x3d_c00337{left:122.349077pt;}
.x10_c00337{left:124.257947pt;}
.x2f_c00337{left:125.154587pt;}
.x68_c00337{left:126.751600pt;}
.x29_c00337{left:130.283520pt;}
.x24_c00337{left:131.951280pt;}
.x43_c00337{left:132.926805pt;}
.x4d_c00337{left:134.908779pt;}
.x19_c00337{left:135.814053pt;}
.x7b_c00337{left:137.125627pt;}
.x11_c00337{left:138.912453pt;}
.xc_c00337{left:140.420107pt;}
.x56_c00337{left:142.322667pt;}
.x58_c00337{left:144.215120pt;}
.x6b_c00337{left:145.721627pt;}
.x25_c00337{left:146.846853pt;}
.x61_c00337{left:148.299787pt;}
.x6e_c00337{left:149.710773pt;}
.x1_c00337{left:152.400000pt;}
.x4_c00337{left:154.240000pt;}
.x1a_c00337{left:156.172213pt;}
.x3e_c00337{left:158.631328pt;}
.x12_c00337{left:161.970293pt;}
.x30_c00337{left:162.901600pt;}
.x6f_c00337{left:174.291467pt;}
.x41_c00337{left:177.127008pt;}
.x6c_c00337{left:178.138347pt;}
.x5_c00337{left:179.056000pt;}
.x38_c00337{left:180.658667pt;}
.x51_c00337{left:181.678549pt;}
.x31_c00337{left:183.555253pt;}
.x80_c00337{left:184.518667pt;}
.x35_c00337{left:185.693947pt;}
.xd_c00337{left:188.132107pt;}
.x78_c00337{left:189.701253pt;}
.x1f_c00337{left:191.979307pt;}
.x59_c00337{left:194.129120pt;}
.x5b_c00337{left:197.730133pt;}
.x1b_c00337{left:198.707253pt;}
.x52_c00337{left:200.637035pt;}
.x7c_c00337{left:203.585627pt;}
.x42_c00337{left:205.443861pt;}
.x62_c00337{left:206.620453pt;}
.x26_c00337{left:207.590507pt;}
.x72_c00337{left:210.666853pt;}
.x6_c00337{left:212.414667pt;}
.x53_c00337{left:216.426443pt;}
.x4e_c00337{left:218.088789pt;}
.x13_c00337{left:219.578907pt;}
.x5f_c00337{left:220.710427pt;}
.x44_c00337{left:223.017931pt;}
.x47_c00337{left:224.677547pt;}
.x70_c00337{left:225.641760pt;}
.x39_c00337{left:227.406667pt;}
.x73_c00337{left:230.350613pt;}
.x7_c00337{left:231.860000pt;}
.x81_c00337{left:234.532000pt;}
.x14_c00337{left:239.029787pt;}
.x2a_c00337{left:240.429253pt;}
.x4f_c00337{left:244.348512pt;}
.x69_c00337{left:246.253467pt;}
.x75_c00337{left:247.795600pt;}
.xe_c00337{left:249.386773pt;}
.x63_c00337{left:250.534640pt;}
.x36_c00337{left:251.956560pt;}
.x54_c00337{left:253.500811pt;}
.x3a_c00337{left:255.350667pt;}
.x32_c00337{left:256.313067pt;}
.x50_c00337{left:257.587040pt;}
.x5c_c00337{left:260.056373pt;}
.x1c_c00337{left:264.031200pt;}
.x60_c00337{left:267.335893pt;}
.x45_c00337{left:268.380128pt;}
.x64_c00337{left:271.600320pt;}
.x20_c00337{left:272.880160pt;}
.x79_c00337{left:275.213280pt;}
.x27_c00337{left:276.960000pt;}
.x2b_c00337{left:278.880133pt;}
.x3f_c00337{left:281.762752pt;}
.x15_c00337{left:284.085387pt;}
.x8_c00337{left:288.526667pt;}
.x4a_c00337{left:290.208501pt;}
.x16_c00337{left:295.452960pt;}
.x48_c00337{left:299.751808pt;}
.x65_c00337{left:313.514320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00338 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00338 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00338 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00338 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00338.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00338{transform:matrix(0.037630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037630,0.000000,0.000000,0.250000,0,0);}
.m55_c00338{transform:matrix(0.054550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054550,0.000000,0.000000,0.250000,0,0);}
.md4_c00338{transform:matrix(0.121290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121290,0.000000,0.000000,0.250000,0,0);}
.m9f_c00338{transform:matrix(0.133585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133585,0.000000,0.000000,0.250000,0,0);}
.md9_c00338{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m77_c00338{transform:matrix(0.140295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140295,0.000000,0.000000,0.250000,0,0);}
.m28_c00338{transform:matrix(0.140860,-0.002395,0.004249,0.249964,0,0);-ms-transform:matrix(0.140860,-0.002395,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140860,-0.002395,0.004249,0.249964,0,0);}
.m7_c00338{transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);-ms-transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);}
.m39_c00338{transform:matrix(0.143859,-0.002446,0.004249,0.249964,0,0);-ms-transform:matrix(0.143859,-0.002446,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143859,-0.002446,0.004249,0.249964,0,0);}
.md7_c00338{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.mfc_c00338{transform:matrix(0.147665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147665,0.000000,0.000000,0.250000,0,0);}
.m58_c00338{transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);}
.m5b_c00338{transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);}
.m27_c00338{transform:matrix(0.152298,-0.002589,0.004249,0.249964,0,0);-ms-transform:matrix(0.152298,-0.002589,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152298,-0.002589,0.004249,0.249964,0,0);}
.m5e_c00338{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m44_c00338{transform:matrix(0.153353,-0.002607,0.004249,0.249964,0,0);-ms-transform:matrix(0.153353,-0.002607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153353,-0.002607,0.004249,0.249964,0,0);}
.m24_c00338{transform:matrix(0.153668,-0.002612,0.004249,0.249964,0,0);-ms-transform:matrix(0.153668,-0.002612,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153668,-0.002612,0.004249,0.249964,0,0);}
.m86_c00338{transform:matrix(0.153930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153930,0.000000,0.000000,0.250000,0,0);}
.m29_c00338{transform:matrix(0.154298,-0.002623,0.004249,0.249964,0,0);-ms-transform:matrix(0.154298,-0.002623,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154298,-0.002623,0.004249,0.249964,0,0);}
.m8a_c00338{transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156665,0.000000,0.000000,0.250000,0,0);}
.mfe_c00338{transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);}
.m61_c00338{transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);}
.m72_c00338{transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);}
.m98_c00338{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m4a_c00338{transform:matrix(0.159912,-0.002719,0.004249,0.249964,0,0);-ms-transform:matrix(0.159912,-0.002719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159912,-0.002719,0.004249,0.249964,0,0);}
.mc8_c00338{transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160985,0.000000,0.000000,0.250000,0,0);}
.ma7_c00338{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.mc3_c00338{transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.163156,-0.002774,0.004249,0.249964,0,0);-ms-transform:matrix(0.163156,-0.002774,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163156,-0.002774,0.004249,0.249964,0,0);}
.mc9_c00338{transform:matrix(0.163230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163230,0.000000,0.000000,0.250000,0,0);}
.m59_c00338{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.mce_c00338{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.m81_c00338{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.m9d_c00338{transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);}
.mf2_c00338{transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);}
.m26_c00338{transform:matrix(0.165556,-0.002814,0.004249,0.249964,0,0);-ms-transform:matrix(0.165556,-0.002814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165556,-0.002814,0.004249,0.249964,0,0);}
.mf8_c00338{transform:matrix(0.165730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165730,0.000000,0.000000,0.250000,0,0);}
.m92_c00338{transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);}
.m35_c00338{transform:matrix(0.166216,-0.002826,0.004249,0.249964,0,0);-ms-transform:matrix(0.166216,-0.002826,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166216,-0.002826,0.004249,0.249964,0,0);}
.m97_c00338{transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);}
.m53_c00338{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.m90_c00338{transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166970,0.000000,0.000000,0.250000,0,0);}
.m67_c00338{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.ma8_c00338{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.mf9_c00338{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.mf7_c00338{transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);}
.m4f_c00338{transform:matrix(0.169226,-0.002877,0.004249,0.249964,0,0);-ms-transform:matrix(0.169226,-0.002877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169226,-0.002877,0.004249,0.249964,0,0);}
.m37_c00338{transform:matrix(0.169296,-0.002878,0.004249,0.249964,0,0);-ms-transform:matrix(0.169296,-0.002878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169296,-0.002878,0.004249,0.249964,0,0);}
.m9e_c00338{transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169630,0.000000,0.000000,0.250000,0,0);}
.m99_c00338{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m87_c00338{transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);}
.mdf_c00338{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.170645,-0.002901,0.004249,0.249964,0,0);-ms-transform:matrix(0.170645,-0.002901,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170645,-0.002901,0.004249,0.249964,0,0);}
.ma2_c00338{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.171525,-0.002916,0.004249,0.249964,0,0);-ms-transform:matrix(0.171525,-0.002916,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171525,-0.002916,0.004249,0.249964,0,0);}
.m60_c00338{transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);}
.mf1_c00338{transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);-ms-transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);}
.m83_c00338{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.me0_c00338{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m88_c00338{transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);}
.m2c_c00338{transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);-ms-transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);}
.m8c_c00338{transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175535,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-ms-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176055,-0.002993,0.004249,0.249964,0,0);}
.mb0_c00338{transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);}
.m5c_c00338{transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.176714,-0.003004,0.004249,0.249964,0,0);-ms-transform:matrix(0.176714,-0.003004,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176714,-0.003004,0.004249,0.249964,0,0);}
.m3f_c00338{transform:matrix(0.176969,-0.003008,0.004249,0.249964,0,0);-ms-transform:matrix(0.176969,-0.003008,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176969,-0.003008,0.004249,0.249964,0,0);}
.m2e_c00338{transform:matrix(0.177369,-0.003015,0.004249,0.249964,0,0);-ms-transform:matrix(0.177369,-0.003015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177369,-0.003015,0.004249,0.249964,0,0);}
.m82_c00338{transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);}
.md2_c00338{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.mb7_c00338{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.me8_c00338{transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);}
.m1c_c00338{transform:matrix(0.178999,-0.003043,0.004249,0.249964,0,0);-ms-transform:matrix(0.178999,-0.003043,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178999,-0.003043,0.004249,0.249964,0,0);}
.mda_c00338{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.ma0_c00338{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.mcf_c00338{transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);}
.m3d_c00338{transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);-ms-transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180724,-0.003072,0.004249,0.249964,0,0);}
.m8b_c00338{transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);}
.m9a_c00338{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.maf_c00338{transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);}
.m33_c00338{transform:matrix(0.181644,-0.003088,0.004249,0.249964,0,0);-ms-transform:matrix(0.181644,-0.003088,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181644,-0.003088,0.004249,0.249964,0,0);}
.mba_c00338{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.mc4_c00338{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m75_c00338{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.183059,-0.003112,0.004249,0.249964,0,0);-ms-transform:matrix(0.183059,-0.003112,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183059,-0.003112,0.004249,0.249964,0,0);}
.m16_c00338{transform:matrix(0.183094,-0.003113,0.004249,0.249964,0,0);-ms-transform:matrix(0.183094,-0.003113,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183094,-0.003113,0.004249,0.249964,0,0);}
.m4b_c00338{transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);-ms-transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183234,-0.003115,0.004249,0.249964,0,0);}
.mbb_c00338{transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183815,0.000000,0.000000,0.250000,0,0);}
.m6d_c00338{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.ma6_c00338{transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);-ms-transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);}
.m89_c00338{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.md3_c00338{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.185368,-0.003151,0.004249,0.249964,0,0);-ms-transform:matrix(0.185368,-0.003151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185368,-0.003151,0.004249,0.249964,0,0);}
.mcc_c00338{transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);}
.m34_c00338{transform:matrix(0.185493,-0.003153,0.004249,0.249964,0,0);-ms-transform:matrix(0.185493,-0.003153,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185493,-0.003153,0.004249,0.249964,0,0);}
.m25_c00338{transform:matrix(0.185523,-0.003154,0.004249,0.249964,0,0);-ms-transform:matrix(0.185523,-0.003154,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185523,-0.003154,0.004249,0.249964,0,0);}
.m8d_c00338{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00338{transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);}
.mb8_c00338{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.ma9_c00338{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00338{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.m52_c00338{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m32_c00338{transform:matrix(0.186883,-0.003177,0.004249,0.249964,0,0);-ms-transform:matrix(0.186883,-0.003177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186883,-0.003177,0.004249,0.249964,0,0);}
.m78_c00338{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m5a_c00338{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m70_c00338{transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);}
.maa_c00338{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.188078,-0.003197,0.004249,0.249964,0,0);-ms-transform:matrix(0.188078,-0.003197,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188078,-0.003197,0.004249,0.249964,0,0);}
.m73_c00338{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m50_c00338{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m91_c00338{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.mb4_c00338{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.mb1_c00338{transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);}
.ma5_c00338{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m62_c00338{transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);}
.m7f_c00338{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.190702,-0.003242,0.004249,0.249964,0,0);-ms-transform:matrix(0.190702,-0.003242,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190702,-0.003242,0.004249,0.249964,0,0);}
.m57_c00338{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.me1_c00338{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.mc0_c00338{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.mbd_c00338{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.191502,-0.003256,0.004249,0.249964,0,0);-ms-transform:matrix(0.191502,-0.003256,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191502,-0.003256,0.004249,0.249964,0,0);}
.m2f_c00338{transform:matrix(0.191772,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191772,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191772,-0.003260,0.004249,0.249964,0,0);}
.m21_c00338{transform:matrix(0.191912,-0.003263,0.004249,0.249964,0,0);-ms-transform:matrix(0.191912,-0.003263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191912,-0.003263,0.004249,0.249964,0,0);}
.m71_c00338{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m7b_c00338{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.mb6_c00338{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.m7d_c00338{transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);}
.m93_c00338{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m41_c00338{transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);-ms-transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194012,-0.003298,0.004249,0.249964,0,0);}
.m9_c00338{transform:matrix(0.194132,-0.003300,0.004249,0.249964,0,0);-ms-transform:matrix(0.194132,-0.003300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194132,-0.003300,0.004249,0.249964,0,0);}
.mc1_c00338{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m48_c00338{transform:matrix(0.194372,-0.003304,0.004249,0.249964,0,0);-ms-transform:matrix(0.194372,-0.003304,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194372,-0.003304,0.004249,0.249964,0,0);}
.m1b_c00338{transform:matrix(0.194477,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194477,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194477,-0.003306,0.004249,0.249964,0,0);}
.m4c_c00338{transform:matrix(0.195332,-0.003321,0.004249,0.249964,0,0);-ms-transform:matrix(0.195332,-0.003321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195332,-0.003321,0.004249,0.249964,0,0);}
.m7c_c00338{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.ma4_c00338{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m84_c00338{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.196762,-0.003345,0.004249,0.249964,0,0);-ms-transform:matrix(0.196762,-0.003345,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196762,-0.003345,0.004249,0.249964,0,0);}
.m19_c00338{transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);-ms-transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197007,-0.003349,0.004249,0.249964,0,0);}
.md6_c00338{transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.198061,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198061,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198061,-0.003367,0.004249,0.249964,0,0);}
.m6f_c00338{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.m42_c00338{transform:matrix(0.198446,-0.003374,0.004249,0.249964,0,0);-ms-transform:matrix(0.198446,-0.003374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198446,-0.003374,0.004249,0.249964,0,0);}
.m1f_c00338{transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);-ms-transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198576,-0.003376,0.004249,0.249964,0,0);}
.m51_c00338{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m9c_c00338{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.199801,-0.003397,0.004249,0.249964,0,0);-ms-transform:matrix(0.199801,-0.003397,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199801,-0.003397,0.004249,0.249964,0,0);}
.m0_c00338{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mfb_c00338{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m38_c00338{transform:matrix(0.200231,-0.003404,0.004249,0.249964,0,0);-ms-transform:matrix(0.200231,-0.003404,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200231,-0.003404,0.004249,0.249964,0,0);}
.m5_c00338{transform:matrix(0.200581,-0.003410,0.004249,0.249964,0,0);-ms-transform:matrix(0.200581,-0.003410,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200581,-0.003410,0.004249,0.249964,0,0);}
.md0_c00338{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m8f_c00338{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m79_c00338{transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);}
.m68_c00338{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m31_c00338{transform:matrix(0.202086,-0.003435,0.004249,0.249964,0,0);-ms-transform:matrix(0.202086,-0.003435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202086,-0.003435,0.004249,0.249964,0,0);}
.mfa_c00338{transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);}
.mb9_c00338{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.202821,-0.003448,0.004249,0.249964,0,0);-ms-transform:matrix(0.202821,-0.003448,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202821,-0.003448,0.004249,0.249964,0,0);}
.m23_c00338{transform:matrix(0.202911,-0.003449,0.004249,0.249964,0,0);-ms-transform:matrix(0.202911,-0.003449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202911,-0.003449,0.004249,0.249964,0,0);}
.mc5_c00338{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.mcd_c00338{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m2d_c00338{transform:matrix(0.203671,-0.003462,0.004249,0.249964,0,0);-ms-transform:matrix(0.203671,-0.003462,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203671,-0.003462,0.004249,0.249964,0,0);}
.m7a_c00338{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.mfd_c00338{transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00338{transform:matrix(0.203931,-0.003467,0.004249,0.249964,0,0);-ms-transform:matrix(0.203931,-0.003467,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203931,-0.003467,0.004249,0.249964,0,0);}
.m8_c00338{transform:matrix(0.203996,-0.003468,0.004249,0.249964,0,0);-ms-transform:matrix(0.203996,-0.003468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203996,-0.003468,0.004249,0.249964,0,0);}
.ma1_c00338{transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);}
.m76_c00338{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.204141,-0.003470,0.004249,0.249964,0,0);-ms-transform:matrix(0.204141,-0.003470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204141,-0.003470,0.004249,0.249964,0,0);}
.m6e_c00338{transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);}
.m94_c00338{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m74_c00338{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.205180,-0.003488,0.004249,0.249964,0,0);-ms-transform:matrix(0.205180,-0.003488,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205180,-0.003488,0.004249,0.249964,0,0);}
.mf6_c00338{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.205275,-0.003490,0.004249,0.249964,0,0);-ms-transform:matrix(0.205275,-0.003490,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205275,-0.003490,0.004249,0.249964,0,0);}
.mab_c00338{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.me6_c00338{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.mbf_c00338{transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);}
.md1_c00338{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.me5_c00338{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.m54_c00338{transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);-ms-transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);}
.mb_c00338{transform:matrix(0.207745,-0.003532,0.004249,0.249964,0,0);-ms-transform:matrix(0.207745,-0.003532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207745,-0.003532,0.004249,0.249964,0,0);}
.mee_c00338{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m96_c00338{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.md5_c00338{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{transform:matrix(0.208820,-0.003550,0.004249,0.249964,0,0);-ms-transform:matrix(0.208820,-0.003550,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208820,-0.003550,0.004249,0.249964,0,0);}
.m69_c00338{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00338{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.209460,-0.003561,0.004249,0.249964,0,0);-ms-transform:matrix(0.209460,-0.003561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209460,-0.003561,0.004249,0.249964,0,0);}
.md8_c00338{transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);}
.m80_c00338{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mb3_c00338{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.mbe_c00338{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00338{transform:matrix(0.211814,-0.003601,0.004249,0.249964,0,0);-ms-transform:matrix(0.211814,-0.003601,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211814,-0.003601,0.004249,0.249964,0,0);}
.m9b_c00338{transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);}
.m3c_c00338{transform:matrix(0.212219,-0.003608,0.004249,0.249964,0,0);-ms-transform:matrix(0.212219,-0.003608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212219,-0.003608,0.004249,0.249964,0,0);}
.m17_c00338{transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-ms-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);}
.m30_c00338{transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);}
.m12_c00338{transform:matrix(0.212814,-0.003618,0.004249,0.249964,0,0);-ms-transform:matrix(0.212814,-0.003618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212814,-0.003618,0.004249,0.249964,0,0);}
.mae_c00338{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.mb2_c00338{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m63_c00338{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00338{transform:matrix(0.213404,-0.003628,0.004249,0.249964,0,0);-ms-transform:matrix(0.213404,-0.003628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213404,-0.003628,0.004249,0.249964,0,0);}
.m66_c00338{transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);}
.mec_c00338{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);}
.mb5_c00338{transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);}
.m20_c00338{transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217584,-0.003699,0.004249,0.249964,0,0);}
.me_c00338{transform:matrix(0.219523,-0.003732,0.004249,0.249964,0,0);-ms-transform:matrix(0.219523,-0.003732,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219523,-0.003732,0.004249,0.249964,0,0);}
.m64_c00338{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{transform:matrix(0.220913,-0.003756,0.004249,0.249964,0,0);-ms-transform:matrix(0.220913,-0.003756,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220913,-0.003756,0.004249,0.249964,0,0);}
.mca_c00338{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.med_c00338{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m7e_c00338{transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222585,0.000000,0.000000,0.250000,0,0);}
.m46_c00338{transform:matrix(0.223383,-0.003798,0.004249,0.249964,0,0);-ms-transform:matrix(0.223383,-0.003798,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223383,-0.003798,0.004249,0.249964,0,0);}
.mc6_c00338{transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00338{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.mf4_c00338{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.mf5_c00338{transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);}
.m85_c00338{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.mf0_c00338{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.mac_c00338{transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);}
.m6c_c00338{transform:matrix(0.231095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231095,0.000000,0.000000,0.250000,0,0);}
.m6a_c00338{transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);}
.ma3_c00338{transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00338{transform:matrix(0.237351,-0.004035,0.004249,0.249964,0,0);-ms-transform:matrix(0.237351,-0.004035,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237351,-0.004035,0.004249,0.249964,0,0);}
.m2a_c00338{transform:matrix(0.237536,-0.004038,0.004249,0.249964,0,0);-ms-transform:matrix(0.237536,-0.004038,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237536,-0.004038,0.004249,0.249964,0,0);}
.m5f_c00338{transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);}
.me9_c00338{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.mef_c00338{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.mea_c00338{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.mdb_c00338{transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);}
.m56_c00338{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.254828,-0.004332,0.004249,0.249964,0,0);-ms-transform:matrix(0.254828,-0.004332,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254828,-0.004332,0.004249,0.249964,0,0);}
.mc7_c00338{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.mdd_c00338{transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);}
.mde_c00338{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m4d_c00338{transform:matrix(0.264587,-0.004498,0.004249,0.249964,0,0);-ms-transform:matrix(0.264587,-0.004498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264587,-0.004498,0.004249,0.249964,0,0);}
.me7_c00338{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.meb_c00338{transform:matrix(0.272185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272185,0.000000,0.000000,0.250000,0,0);}
.m8e_c00338{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.me2_c00338{transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);}
.me4_c00338{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00338{transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);}
.m65_c00338{transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.413380,-0.007027,0.004249,0.249964,0,0);-ms-transform:matrix(0.413380,-0.007027,0.004249,0.249964,0,0);-webkit-transform:matrix(0.413380,-0.007027,0.004249,0.249964,0,0);}
.mbc_c00338{transform:matrix(0.428670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428670,0.000000,0.000000,0.250000,0,0);}
.mad_c00338{transform:matrix(0.436220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436220,0.000000,0.000000,0.250000,0,0);}
.me3_c00338{transform:matrix(0.771020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771020,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls0_c00338{letter-spacing:0.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:0.000000px;}
.fc0_c00338{color:transparent;}
.fs9_c00338{font-size:57.758344px;}
.fsd_c00338{font-size:58.800000px;}
.fs11_c00338{font-size:60.900000px;}
.fs12_c00338{font-size:61.950000px;}
.fs3_c00338{font-size:61.958951px;}
.fsa_c00338{font-size:63.000000px;}
.fs2_c00338{font-size:63.009103px;}
.fs0_c00338{font-size:64.050000px;}
.fs4_c00338{font-size:64.059255px;}
.fsc_c00338{font-size:65.100000px;}
.fs8_c00338{font-size:65.109406px;}
.fse_c00338{font-size:66.150000px;}
.fs6_c00338{font-size:66.159558px;}
.fs10_c00338{font-size:67.200000px;}
.fs1_c00338{font-size:67.209710px;}
.fsf_c00338{font-size:68.250000px;}
.fs7_c00338{font-size:68.259861px;}
.fs13_c00338{font-size:69.300000px;}
.fsb_c00338{font-size:70.350000px;}
.fs5_c00338{font-size:75.610923px;}
.y0_c00338{bottom:0.000000px;}
.y9a_c00338{bottom:32.394000px;}
.y99_c00338{bottom:50.785500px;}
.y98_c00338{bottom:68.848500px;}
.y90_c00338{bottom:83.431500px;}
.y91_c00338{bottom:84.373500px;}
.y92_c00338{bottom:84.603000px;}
.y93_c00338{bottom:85.425000px;}
.y94_c00338{bottom:85.620000px;}
.y95_c00338{bottom:85.870500px;}
.y96_c00338{bottom:86.074500px;}
.y97_c00338{bottom:86.823000px;}
.y8f_c00338{bottom:102.285000px;}
.y86_c00338{bottom:114.757500px;}
.y87_c00338{bottom:115.294500px;}
.y88_c00338{bottom:116.557500px;}
.y89_c00338{bottom:116.812500px;}
.y8a_c00338{bottom:117.288000px;}
.y8b_c00338{bottom:118.680000px;}
.y8c_c00338{bottom:119.253000px;}
.y8d_c00338{bottom:119.736000px;}
.y8e_c00338{bottom:120.310500px;}
.y85_c00338{bottom:134.995500px;}
.y84_c00338{bottom:151.614000px;}
.y83_c00338{bottom:169.020000px;}
.y7c_c00338{bottom:183.061500px;}
.y7d_c00338{bottom:184.039500px;}
.y7e_c00338{bottom:184.254000px;}
.y7f_c00338{bottom:184.942500px;}
.y80_c00338{bottom:185.217000px;}
.y81_c00338{bottom:185.926500px;}
.y82_c00338{bottom:186.822000px;}
.y7b_c00338{bottom:203.661000px;}
.y7a_c00338{bottom:221.281500px;}
.y79_c00338{bottom:238.033500px;}
.y78_c00338{bottom:255.405000px;}
.y77_c00338{bottom:273.144000px;}
.y76_c00338{bottom:290.305500px;}
.y75_c00338{bottom:307.972500px;}
.y6e_c00338{bottom:323.191500px;}
.y6f_c00338{bottom:323.949000px;}
.y70_c00338{bottom:324.130500px;}
.y71_c00338{bottom:324.421500px;}
.y72_c00338{bottom:325.195500px;}
.y73_c00338{bottom:325.365000px;}
.y74_c00338{bottom:326.169000px;}
.y66_c00338{bottom:339.121500px;}
.y67_c00338{bottom:339.874500px;}
.y68_c00338{bottom:340.656000px;}
.y69_c00338{bottom:341.223000px;}
.y6a_c00338{bottom:341.511000px;}
.y6b_c00338{bottom:342.394500px;}
.y6c_c00338{bottom:342.652500px;}
.y6d_c00338{bottom:343.180500px;}
.y5e_c00338{bottom:354.510000px;}
.y5f_c00338{bottom:355.113000px;}
.y60_c00338{bottom:355.419000px;}
.y61_c00338{bottom:356.265000px;}
.y62_c00338{bottom:356.704500px;}
.y63_c00338{bottom:357.568500px;}
.y64_c00338{bottom:357.736500px;}
.y65_c00338{bottom:357.985500px;}
.y54_c00338{bottom:371.523000px;}
.y55_c00338{bottom:372.352500px;}
.y56_c00338{bottom:372.546000px;}
.y57_c00338{bottom:372.846000px;}
.y58_c00338{bottom:373.387500px;}
.y59_c00338{bottom:373.591500px;}
.y5a_c00338{bottom:373.830000px;}
.y5b_c00338{bottom:374.736000px;}
.y5c_c00338{bottom:375.165000px;}
.y5d_c00338{bottom:375.432000px;}
.y53_c00338{bottom:390.043500px;}
.y52_c00338{bottom:407.809176px;}
.y4f_c00338{bottom:407.809191px;}
.y51_c00338{bottom:407.809561px;}
.y50_c00338{bottom:407.809719px;}
.y4e_c00338{bottom:407.809932px;}
.y4d_c00338{bottom:407.810493px;}
.y4c_c00338{bottom:407.810569px;}
.y4b_c00338{bottom:407.811310px;}
.y4a_c00338{bottom:407.812021px;}
.y49_c00338{bottom:407.812045px;}
.y45_c00338{bottom:424.104442px;}
.y47_c00338{bottom:424.104535px;}
.y48_c00338{bottom:424.104784px;}
.y44_c00338{bottom:424.104883px;}
.y46_c00338{bottom:424.104945px;}
.y43_c00338{bottom:424.105507px;}
.y42_c00338{bottom:441.138142px;}
.y41_c00338{bottom:441.138784px;}
.y40_c00338{bottom:441.138810px;}
.y3f_c00338{bottom:441.139311px;}
.y3e_c00338{bottom:441.139773px;}
.y3d_c00338{bottom:441.140256px;}
.y3c_c00338{bottom:441.140898px;}
.y3b_c00338{bottom:441.141339px;}
.y34_c00338{bottom:456.554545px;}
.y35_c00338{bottom:457.373943px;}
.y36_c00338{bottom:457.613965px;}
.y37_c00338{bottom:458.434128px;}
.y38_c00338{bottom:458.648491px;}
.y39_c00338{bottom:459.117771px;}
.y3a_c00338{bottom:459.794163px;}
.y33_c00338{bottom:475.010632px;}
.y32_c00338{bottom:475.010940px;}
.y31_c00338{bottom:475.011187px;}
.y30_c00338{bottom:475.011298px;}
.y2f_c00338{bottom:475.011511px;}
.y2d_c00338{bottom:475.011634px;}
.y2c_c00338{bottom:475.011702px;}
.y2e_c00338{bottom:475.012063px;}
.y26_c00338{bottom:490.852371px;}
.y27_c00338{bottom:491.805459px;}
.y28_c00338{bottom:492.936037px;}
.y29_c00338{bottom:493.873357px;}
.y2a_c00338{bottom:494.522419px;}
.y2b_c00338{bottom:494.829510px;}
.y1c_c00338{bottom:506.786278px;}
.y1d_c00338{bottom:507.431047px;}
.y1e_c00338{bottom:507.956308px;}
.y1f_c00338{bottom:508.289362px;}
.y20_c00338{bottom:509.098654px;}
.y21_c00338{bottom:509.668144px;}
.y22_c00338{bottom:510.344244px;}
.y23_c00338{bottom:510.581011px;}
.y24_c00338{bottom:511.075809px;}
.y25_c00338{bottom:511.476466px;}
.y14_c00338{bottom:524.338977px;}
.y15_c00338{bottom:524.681352px;}
.y16_c00338{bottom:525.344733px;}
.y17_c00338{bottom:525.687771px;}
.y18_c00338{bottom:526.067869px;}
.y19_c00338{bottom:526.754230px;}
.y1a_c00338{bottom:527.103546px;}
.y1b_c00338{bottom:528.364657px;}
.yc_c00338{bottom:542.162170px;}
.yd_c00338{bottom:543.104977px;}
.ye_c00338{bottom:544.352332px;}
.yf_c00338{bottom:544.777243px;}
.y10_c00338{bottom:545.521309px;}
.y11_c00338{bottom:545.954176px;}
.y12_c00338{bottom:546.691260px;}
.y13_c00338{bottom:547.198522px;}
.y2_c00338{bottom:558.634500px;}
.y3_c00338{bottom:559.249075px;}
.y4_c00338{bottom:560.235849px;}
.y5_c00338{bottom:560.574208px;}
.y6_c00338{bottom:561.129445px;}
.y7_c00338{bottom:561.359149px;}
.y8_c00338{bottom:561.717042px;}
.y9_c00338{bottom:562.021410px;}
.ya_c00338{bottom:562.894020px;}
.yb_c00338{bottom:563.259843px;}
.y1_c00338{bottom:576.718500px;}
.hb_c00338{height:57.758344px;}
.hf_c00338{height:58.800000px;}
.h13_c00338{height:60.900000px;}
.h14_c00338{height:61.950000px;}
.h5_c00338{height:61.958951px;}
.hc_c00338{height:63.000000px;}
.h4_c00338{height:63.009103px;}
.h2_c00338{height:64.050000px;}
.h6_c00338{height:64.059255px;}
.he_c00338{height:65.100000px;}
.ha_c00338{height:65.109406px;}
.h10_c00338{height:66.150000px;}
.h8_c00338{height:66.159558px;}
.h12_c00338{height:67.200000px;}
.h3_c00338{height:67.209710px;}
.h11_c00338{height:68.250000px;}
.h9_c00338{height:68.259861px;}
.h15_c00338{height:69.300000px;}
.hd_c00338{height:70.350000px;}
.h7_c00338{height:75.610923px;}
.h0_c00338{height:613.170000px;}
.h1_c00338{height:613.500000px;}
.w0_c00338{width:359.100000px;}
.w1_c00338{width:359.250000px;}
.x0_c00338{left:0.000000px;}
.x24_c00338{left:14.577075px;}
.x4c_c00338{left:19.443000px;}
.x27_c00338{left:20.648010px;}
.x2_c00338{left:21.852000px;}
.x77_c00338{left:23.758500px;}
.x12_c00338{left:25.817001px;}
.x3e_c00338{left:35.842500px;}
.x5d_c00338{left:39.150000px;}
.x67_c00338{left:40.231500px;}
.x2c_c00338{left:41.848592px;}
.x59_c00338{left:43.200000px;}
.x71_c00338{left:45.921000px;}
.x13_c00338{left:47.192358px;}
.x6c_c00338{left:49.411500px;}
.x4f_c00338{left:50.493000px;}
.x7b_c00338{left:53.728500px;}
.x1a_c00338{left:55.499428px;}
.x3_c00338{left:58.003500px;}
.x5e_c00338{left:62.100000px;}
.x25_c00338{left:64.263931px;}
.x46_c00338{left:66.516000px;}
.x78_c00338{left:68.308500px;}
.x49_c00338{left:70.098000px;}
.x68_c00338{left:71.281500px;}
.x39_c00338{left:72.630000px;}
.xc_c00338{left:74.188546px;}
.x4d_c00338{left:75.333000px;}
.x7c_c00338{left:77.488500px;}
.x53_c00338{left:78.573000px;}
.x2d_c00338{left:80.733837px;}
.x1b_c00338{left:83.131485px;}
.x14_c00338{left:88.686072px;}
.x47_c00338{left:90.064500px;}
.x3f_c00338{left:91.156500px;}
.x3a_c00338{left:93.420000px;}
.x65_c00338{left:95.413500px;}
.x75_c00338{left:97.741500px;}
.x1c_c00338{left:100.692898px;}
.x31_c00338{left:105.037877px;}
.x72_c00338{left:106.081500px;}
.x28_c00338{left:108.915507px;}
.x15_c00338{left:110.100429px;}
.x5a_c00338{left:112.050000px;}
.x6a_c00338{left:113.401500px;}
.x4_c00338{left:116.049000px;}
.x76_c00338{left:117.582000px;}
.x6d_c00338{left:118.801500px;}
.x26_c00338{left:122.861863px;}
.x40_c00338{left:124.098000px;}
.x32_c00338{left:126.371048px;}
.x50_c00338{left:129.873000px;}
.x3b_c00338{left:132.840000px;}
.x16_c00338{left:133.871337px;}
.x5_c00338{left:135.952500px;}
.x2e_c00338{left:138.251463px;}
.x55_c00338{left:140.403000px;}
.xd_c00338{left:143.502373px;}
.x5f_c00338{left:144.990000px;}
.x1_c00338{left:150.930000px;}
.x3c_c00338{left:155.790000px;}
.x69_c00338{left:157.681500px;}
.x41_c00338{left:160.197000px;}
.x7d_c00338{left:161.998500px;}
.x35_c00338{left:164.985621px;}
.xe_c00338{left:167.084965px;}
.x6_c00338{left:168.613500px;}
.x20_c00338{left:169.748781px;}
.x5b_c00338{left:171.720000px;}
.x1d_c00338{left:173.236425px;}
.x17_c00338{left:176.805076px;}
.x4a_c00338{left:179.161500px;}
.x7_c00338{left:182.125500px;}
.x4e_c00338{left:186.303000px;}
.x42_c00338{left:189.714000px;}
.x29_c00338{left:195.100825px;}
.x36_c00338{left:197.389005px;}
.x18_c00338{left:198.676959px;}
.x60_c00338{left:199.800000px;}
.x63_c00338{left:201.150000px;}
.x8_c00338{left:203.178000px;}
.x73_c00338{left:207.207000px;}
.xf_c00338{left:208.382251px;}
.x79_c00338{left:213.838500px;}
.x61_c00338{left:215.730000px;}
.x2f_c00338{left:216.833684px;}
.x51_c00338{left:219.513000px;}
.x9_c00338{left:221.082000px;}
.x6e_c00338{left:222.481500px;}
.x7f_c00338{left:224.908500px;}
.x56_c00338{left:228.423000px;}
.x10_c00338{left:232.432843px;}
.x2a_c00338{left:234.267666px;}
.x21_c00338{left:236.712198px;}
.x4b_c00338{left:238.036500px;}
.x37_c00338{left:239.785245px;}
.x52_c00338{left:246.243000px;}
.x1e_c00338{left:247.302400px;}
.x6f_c00338{left:248.671500px;}
.x43_c00338{left:250.135500px;}
.x30_c00338{left:255.718929px;}
.x5c_c00338{left:258.120000px;}
.x6b_c00338{left:261.631500px;}
.x62_c00338{left:263.790000px;}
.x57_c00338{left:265.683000px;}
.x1f_c00338{left:268.399186px;}
.x54_c00338{left:269.733000px;}
.x70_c00338{left:270.811500px;}
.xa_c00338{left:272.412000px;}
.x7a_c00338{left:273.508500px;}
.x33_c00338{left:276.243347px;}
.x19_c00338{left:277.537811px;}
.x44_c00338{left:278.761500px;}
.x64_c00338{left:281.340000px;}
.x22_c00338{left:283.100570px;}
.x74_c00338{left:284.827500px;}
.x48_c00338{left:287.454000px;}
.x38_c00338{left:289.202025px;}
.x2b_c00338{left:290.648460px;}
.xb_c00338{left:293.931000px;}
.x34_c00338{left:295.145804px;}
.x45_c00338{left:296.581500px;}
.x80_c00338{left:299.158500px;}
.x11_c00338{left:301.569671px;}
.x7e_c00338{left:302.938500px;}
.x23_c00338{left:305.048191px;}
.x3d_c00338{left:306.450000px;}
.x66_c00338{left:309.316500px;}
.x58_c00338{left:322.923000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs9_c00338{font-size:51.340750pt;}
.fsd_c00338{font-size:52.266667pt;}
.fs11_c00338{font-size:54.133333pt;}
.fs12_c00338{font-size:55.066667pt;}
.fs3_c00338{font-size:55.074623pt;}
.fsa_c00338{font-size:56.000000pt;}
.fs2_c00338{font-size:56.008091pt;}
.fs0_c00338{font-size:56.933333pt;}
.fs4_c00338{font-size:56.941560pt;}
.fsc_c00338{font-size:57.866667pt;}
.fs8_c00338{font-size:57.875028pt;}
.fse_c00338{font-size:58.800000pt;}
.fs6_c00338{font-size:58.808496pt;}
.fs10_c00338{font-size:59.733333pt;}
.fs1_c00338{font-size:59.741964pt;}
.fsf_c00338{font-size:60.666667pt;}
.fs7_c00338{font-size:60.675432pt;}
.fs13_c00338{font-size:61.600000pt;}
.fsb_c00338{font-size:62.533333pt;}
.fs5_c00338{font-size:67.209710pt;}
.y0_c00338{bottom:0.000000pt;}
.y9a_c00338{bottom:28.794667pt;}
.y99_c00338{bottom:45.142667pt;}
.y98_c00338{bottom:61.198667pt;}
.y90_c00338{bottom:74.161333pt;}
.y91_c00338{bottom:74.998667pt;}
.y92_c00338{bottom:75.202667pt;}
.y93_c00338{bottom:75.933333pt;}
.y94_c00338{bottom:76.106667pt;}
.y95_c00338{bottom:76.329333pt;}
.y96_c00338{bottom:76.510667pt;}
.y97_c00338{bottom:77.176000pt;}
.y8f_c00338{bottom:90.920000pt;}
.y86_c00338{bottom:102.006667pt;}
.y87_c00338{bottom:102.484000pt;}
.y88_c00338{bottom:103.606667pt;}
.y89_c00338{bottom:103.833333pt;}
.y8a_c00338{bottom:104.256000pt;}
.y8b_c00338{bottom:105.493333pt;}
.y8c_c00338{bottom:106.002667pt;}
.y8d_c00338{bottom:106.432000pt;}
.y8e_c00338{bottom:106.942667pt;}
.y85_c00338{bottom:119.996000pt;}
.y84_c00338{bottom:134.768000pt;}
.y83_c00338{bottom:150.240000pt;}
.y7c_c00338{bottom:162.721333pt;}
.y7d_c00338{bottom:163.590667pt;}
.y7e_c00338{bottom:163.781333pt;}
.y7f_c00338{bottom:164.393333pt;}
.y80_c00338{bottom:164.637333pt;}
.y81_c00338{bottom:165.268000pt;}
.y82_c00338{bottom:166.064000pt;}
.y7b_c00338{bottom:181.032000pt;}
.y7a_c00338{bottom:196.694667pt;}
.y79_c00338{bottom:211.585333pt;}
.y78_c00338{bottom:227.026667pt;}
.y77_c00338{bottom:242.794667pt;}
.y76_c00338{bottom:258.049333pt;}
.y75_c00338{bottom:273.753333pt;}
.y6e_c00338{bottom:287.281333pt;}
.y6f_c00338{bottom:287.954667pt;}
.y70_c00338{bottom:288.116000pt;}
.y71_c00338{bottom:288.374667pt;}
.y72_c00338{bottom:289.062667pt;}
.y73_c00338{bottom:289.213333pt;}
.y74_c00338{bottom:289.928000pt;}
.y66_c00338{bottom:301.441333pt;}
.y67_c00338{bottom:302.110667pt;}
.y68_c00338{bottom:302.805333pt;}
.y69_c00338{bottom:303.309333pt;}
.y6a_c00338{bottom:303.565333pt;}
.y6b_c00338{bottom:304.350667pt;}
.y6c_c00338{bottom:304.580000pt;}
.y6d_c00338{bottom:305.049333pt;}
.y5e_c00338{bottom:315.120000pt;}
.y5f_c00338{bottom:315.656000pt;}
.y60_c00338{bottom:315.928000pt;}
.y61_c00338{bottom:316.680000pt;}
.y62_c00338{bottom:317.070667pt;}
.y63_c00338{bottom:317.838667pt;}
.y64_c00338{bottom:317.988000pt;}
.y65_c00338{bottom:318.209333pt;}
.y54_c00338{bottom:330.242667pt;}
.y55_c00338{bottom:330.980000pt;}
.y56_c00338{bottom:331.152000pt;}
.y57_c00338{bottom:331.418667pt;}
.y58_c00338{bottom:331.900000pt;}
.y59_c00338{bottom:332.081333pt;}
.y5a_c00338{bottom:332.293333pt;}
.y5b_c00338{bottom:333.098667pt;}
.y5c_c00338{bottom:333.480000pt;}
.y5d_c00338{bottom:333.717333pt;}
.y53_c00338{bottom:346.705333pt;}
.y52_c00338{bottom:362.497045pt;}
.y4f_c00338{bottom:362.497059pt;}
.y51_c00338{bottom:362.497388pt;}
.y50_c00338{bottom:362.497528pt;}
.y4e_c00338{bottom:362.497717pt;}
.y4d_c00338{bottom:362.498216pt;}
.y4c_c00338{bottom:362.498284pt;}
.y4b_c00338{bottom:362.498943pt;}
.y4a_c00338{bottom:362.499575pt;}
.y49_c00338{bottom:362.499596pt;}
.y45_c00338{bottom:376.981727pt;}
.y47_c00338{bottom:376.981809pt;}
.y48_c00338{bottom:376.982031pt;}
.y44_c00338{bottom:376.982119pt;}
.y46_c00338{bottom:376.982173pt;}
.y43_c00338{bottom:376.982673pt;}
.y42_c00338{bottom:392.122793pt;}
.y41_c00338{bottom:392.123364pt;}
.y40_c00338{bottom:392.123387pt;}
.y3f_c00338{bottom:392.123832pt;}
.y3e_c00338{bottom:392.124243pt;}
.y3d_c00338{bottom:392.124672pt;}
.y3c_c00338{bottom:392.125243pt;}
.y3b_c00338{bottom:392.125635pt;}
.y34_c00338{bottom:405.826263pt;}
.y35_c00338{bottom:406.554616pt;}
.y36_c00338{bottom:406.767969pt;}
.y37_c00338{bottom:407.497003pt;}
.y38_c00338{bottom:407.687548pt;}
.y39_c00338{bottom:408.104685pt;}
.y3a_c00338{bottom:408.705923pt;}
.y33_c00338{bottom:422.231673pt;}
.y32_c00338{bottom:422.231947pt;}
.y31_c00338{bottom:422.232167pt;}
.y30_c00338{bottom:422.232265pt;}
.y2f_c00338{bottom:422.232455pt;}
.y2d_c00338{bottom:422.232564pt;}
.y2c_c00338{bottom:422.232624pt;}
.y2e_c00338{bottom:422.232945pt;}
.y26_c00338{bottom:436.313219pt;}
.y27_c00338{bottom:437.160408pt;}
.y28_c00338{bottom:438.165367pt;}
.y29_c00338{bottom:438.998540pt;}
.y2a_c00338{bottom:439.575484pt;}
.y2b_c00338{bottom:439.848453pt;}
.y1c_c00338{bottom:450.476692pt;}
.y1d_c00338{bottom:451.049820pt;}
.y1e_c00338{bottom:451.516719pt;}
.y1f_c00338{bottom:451.812767pt;}
.y20_c00338{bottom:452.532137pt;}
.y21_c00338{bottom:453.038351pt;}
.y22_c00338{bottom:453.639328pt;}
.y23_c00338{bottom:453.849788pt;}
.y24_c00338{bottom:454.289608pt;}
.y25_c00338{bottom:454.645748pt;}
.y14_c00338{bottom:466.079091pt;}
.y15_c00338{bottom:466.383424pt;}
.y16_c00338{bottom:466.973096pt;}
.y17_c00338{bottom:467.278019pt;}
.y18_c00338{bottom:467.615884pt;}
.y19_c00338{bottom:468.225983pt;}
.y1a_c00338{bottom:468.536485pt;}
.y1b_c00338{bottom:469.657473pt;}
.yc_c00338{bottom:481.921929pt;}
.yd_c00338{bottom:482.759980pt;}
.ye_c00338{bottom:483.868740pt;}
.yf_c00338{bottom:484.246439pt;}
.y10_c00338{bottom:484.907831pt;}
.y11_c00338{bottom:485.292601pt;}
.y12_c00338{bottom:485.947787pt;}
.y13_c00338{bottom:486.398687pt;}
.y2_c00338{bottom:496.564000pt;}
.y3_c00338{bottom:497.110289pt;}
.y4_c00338{bottom:497.987421pt;}
.y5_c00338{bottom:498.288185pt;}
.y6_c00338{bottom:498.781729pt;}
.y7_c00338{bottom:498.985911pt;}
.y8_c00338{bottom:499.304037pt;}
.y9_c00338{bottom:499.574587pt;}
.ya_c00338{bottom:500.350240pt;}
.yb_c00338{bottom:500.675416pt;}
.y1_c00338{bottom:512.638667pt;}
.hb_c00338{height:51.340750pt;}
.hf_c00338{height:52.266667pt;}
.h13_c00338{height:54.133333pt;}
.h14_c00338{height:55.066667pt;}
.h5_c00338{height:55.074623pt;}
.hc_c00338{height:56.000000pt;}
.h4_c00338{height:56.008091pt;}
.h2_c00338{height:56.933333pt;}
.h6_c00338{height:56.941560pt;}
.he_c00338{height:57.866667pt;}
.ha_c00338{height:57.875028pt;}
.h10_c00338{height:58.800000pt;}
.h8_c00338{height:58.808496pt;}
.h12_c00338{height:59.733333pt;}
.h3_c00338{height:59.741964pt;}
.h11_c00338{height:60.666667pt;}
.h9_c00338{height:60.675432pt;}
.h15_c00338{height:61.600000pt;}
.hd_c00338{height:62.533333pt;}
.h7_c00338{height:67.209710pt;}
.h0_c00338{height:545.040000pt;}
.h1_c00338{height:545.333333pt;}
.w0_c00338{width:319.200000pt;}
.w1_c00338{width:319.333333pt;}
.x0_c00338{left:0.000000pt;}
.x24_c00338{left:12.957400pt;}
.x4c_c00338{left:17.282667pt;}
.x27_c00338{left:18.353787pt;}
.x2_c00338{left:19.424000pt;}
.x77_c00338{left:21.118667pt;}
.x12_c00338{left:22.948445pt;}
.x3e_c00338{left:31.860000pt;}
.x5d_c00338{left:34.800000pt;}
.x67_c00338{left:35.761333pt;}
.x2c_c00338{left:37.198748pt;}
.x59_c00338{left:38.400000pt;}
.x71_c00338{left:40.818667pt;}
.x13_c00338{left:41.948763pt;}
.x6c_c00338{left:43.921333pt;}
.x4f_c00338{left:44.882667pt;}
.x7b_c00338{left:47.758667pt;}
.x1a_c00338{left:49.332825pt;}
.x3_c00338{left:51.558667pt;}
.x5e_c00338{left:55.200000pt;}
.x25_c00338{left:57.123495pt;}
.x46_c00338{left:59.125333pt;}
.x78_c00338{left:60.718667pt;}
.x49_c00338{left:62.309333pt;}
.x68_c00338{left:63.361333pt;}
.x39_c00338{left:64.560000pt;}
.xc_c00338{left:65.945375pt;}
.x4d_c00338{left:66.962667pt;}
.x7c_c00338{left:68.878667pt;}
.x53_c00338{left:69.842667pt;}
.x2d_c00338{left:71.763411pt;}
.x1b_c00338{left:73.894653pt;}
.x14_c00338{left:78.832064pt;}
.x47_c00338{left:80.057333pt;}
.x3f_c00338{left:81.028000pt;}
.x3a_c00338{left:83.040000pt;}
.x65_c00338{left:84.812000pt;}
.x75_c00338{left:86.881333pt;}
.x1c_c00338{left:89.504799pt;}
.x31_c00338{left:93.367001pt;}
.x72_c00338{left:94.294667pt;}
.x28_c00338{left:96.813784pt;}
.x15_c00338{left:97.867048pt;}
.x5a_c00338{left:99.600000pt;}
.x6a_c00338{left:100.801333pt;}
.x4_c00338{left:103.154667pt;}
.x76_c00338{left:104.517333pt;}
.x6d_c00338{left:105.601333pt;}
.x26_c00338{left:109.210545pt;}
.x40_c00338{left:110.309333pt;}
.x32_c00338{left:112.329820pt;}
.x50_c00338{left:115.442667pt;}
.x3b_c00338{left:118.080000pt;}
.x16_c00338{left:118.996744pt;}
.x5_c00338{left:120.846667pt;}
.x2e_c00338{left:122.890189pt;}
.x55_c00338{left:124.802667pt;}
.xd_c00338{left:127.557665pt;}
.x5f_c00338{left:128.880000pt;}
.x1_c00338{left:134.160000pt;}
.x3c_c00338{left:138.480000pt;}
.x69_c00338{left:140.161333pt;}
.x41_c00338{left:142.397333pt;}
.x7d_c00338{left:143.998667pt;}
.x35_c00338{left:146.653885pt;}
.xe_c00338{left:148.519969pt;}
.x6_c00338{left:149.878667pt;}
.x20_c00338{left:150.887805pt;}
.x5b_c00338{left:152.640000pt;}
.x1d_c00338{left:153.987933pt;}
.x17_c00338{left:157.160068pt;}
.x4a_c00338{left:159.254667pt;}
.x7_c00338{left:161.889333pt;}
.x4e_c00338{left:165.602667pt;}
.x42_c00338{left:168.634667pt;}
.x29_c00338{left:173.422956pt;}
.x36_c00338{left:175.456893pt;}
.x18_c00338{left:176.601741pt;}
.x60_c00338{left:177.600000pt;}
.x63_c00338{left:178.800000pt;}
.x8_c00338{left:180.602667pt;}
.x73_c00338{left:184.184000pt;}
.xf_c00338{left:185.228668pt;}
.x79_c00338{left:190.078667pt;}
.x61_c00338{left:191.760000pt;}
.x2f_c00338{left:192.741052pt;}
.x51_c00338{left:195.122667pt;}
.x9_c00338{left:196.517333pt;}
.x6e_c00338{left:197.761333pt;}
.x7f_c00338{left:199.918667pt;}
.x56_c00338{left:203.042667pt;}
.x10_c00338{left:206.606972pt;}
.x2a_c00338{left:208.237925pt;}
.x21_c00338{left:210.410843pt;}
.x4b_c00338{left:211.588000pt;}
.x37_c00338{left:213.142440pt;}
.x52_c00338{left:218.882667pt;}
.x1e_c00338{left:219.824356pt;}
.x6f_c00338{left:221.041333pt;}
.x43_c00338{left:222.342667pt;}
.x30_c00338{left:227.305715pt;}
.x5c_c00338{left:229.440000pt;}
.x6b_c00338{left:232.561333pt;}
.x62_c00338{left:234.480000pt;}
.x57_c00338{left:236.162667pt;}
.x1f_c00338{left:238.577055pt;}
.x54_c00338{left:239.762667pt;}
.x70_c00338{left:240.721333pt;}
.xa_c00338{left:242.144000pt;}
.x7a_c00338{left:243.118667pt;}
.x33_c00338{left:245.549641pt;}
.x19_c00338{left:246.700276pt;}
.x44_c00338{left:247.788000pt;}
.x64_c00338{left:250.080000pt;}
.x22_c00338{left:251.644951pt;}
.x74_c00338{left:253.180000pt;}
.x48_c00338{left:255.514667pt;}
.x38_c00338{left:257.068467pt;}
.x2b_c00338{left:258.354187pt;}
.xb_c00338{left:261.272000pt;}
.x34_c00338{left:262.351825pt;}
.x45_c00338{left:263.628000pt;}
.x80_c00338{left:265.918667pt;}
.x11_c00338{left:268.061929pt;}
.x7e_c00338{left:269.278667pt;}
.x23_c00338{left:271.153948pt;}
.x3d_c00338{left:272.400000pt;}
.x66_c00338{left:274.948000pt;}
.x58_c00338{left:287.042667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00339 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00339 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00339 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00339 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00339.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb4_c00339{transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052270,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.104278,-0.001564,0.003750,0.249972,0,0);-ms-transform:matrix(0.104278,-0.001564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.104278,-0.001564,0.003750,0.249972,0,0);}
.md1_c00339{transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135330,0.000000,0.000000,0.250000,0,0);}
.mbf_c00339{transform:matrix(0.137210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137210,0.000000,0.000000,0.250000,0,0);}
.m72_c00339{transform:matrix(0.137355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137355,0.000000,0.000000,0.250000,0,0);}
.ma8_c00339{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{transform:matrix(0.145704,-0.002186,0.003750,0.249972,0,0);-ms-transform:matrix(0.145704,-0.002186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145704,-0.002186,0.003750,0.249972,0,0);}
.m15_c00339{transform:matrix(0.145794,-0.002187,0.003750,0.249972,0,0);-ms-transform:matrix(0.145794,-0.002187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145794,-0.002187,0.003750,0.249972,0,0);}
.m11_c00339{transform:matrix(0.149283,-0.002239,0.003750,0.249972,0,0);-ms-transform:matrix(0.149283,-0.002239,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149283,-0.002239,0.003750,0.249972,0,0);}
.mf1_c00339{transform:matrix(0.151627,-0.003184,0.005249,0.249945,0,0);-ms-transform:matrix(0.151627,-0.003184,0.005249,0.249945,0,0);-webkit-transform:matrix(0.151627,-0.003184,0.005249,0.249945,0,0);}
.m70_c00339{transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.152868,-0.002293,0.003750,0.249972,0,0);-ms-transform:matrix(0.152868,-0.002293,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152868,-0.002293,0.003750,0.249972,0,0);}
.mcf_c00339{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00339{transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);}
.m18_c00339{transform:matrix(0.157262,-0.002359,0.003750,0.249972,0,0);-ms-transform:matrix(0.157262,-0.002359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157262,-0.002359,0.003750,0.249972,0,0);}
.m21_c00339{transform:matrix(0.157937,-0.002369,0.003750,0.249972,0,0);-ms-transform:matrix(0.157937,-0.002369,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157937,-0.002369,0.003750,0.249972,0,0);}
.me5_c00339{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00339{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00339{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.160287,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160287,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160287,-0.002404,0.003750,0.249972,0,0);}
.m6c_c00339{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.161387,-0.002421,0.003750,0.249972,0,0);-ms-transform:matrix(0.161387,-0.002421,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161387,-0.002421,0.003750,0.249972,0,0);}
.m2f_c00339{transform:matrix(0.162197,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162197,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162197,-0.002433,0.003750,0.249972,0,0);}
.m2d_c00339{transform:matrix(0.162872,-0.002443,0.003750,0.249972,0,0);-ms-transform:matrix(0.162872,-0.002443,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162872,-0.002443,0.003750,0.249972,0,0);}
.mdb_c00339{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);-ms-transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);}
.me2_c00339{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.164626,-0.002469,0.003750,0.249972,0,0);-ms-transform:matrix(0.164626,-0.002469,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164626,-0.002469,0.003750,0.249972,0,0);}
.ma5_c00339{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.m48_c00339{transform:matrix(0.166661,-0.002500,0.003750,0.249972,0,0);-ms-transform:matrix(0.166661,-0.002500,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166661,-0.002500,0.003750,0.249972,0,0);}
.m3a_c00339{transform:matrix(0.166766,-0.002501,0.003750,0.249972,0,0);-ms-transform:matrix(0.166766,-0.002501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166766,-0.002501,0.003750,0.249972,0,0);}
.m47_c00339{transform:matrix(0.166806,-0.002502,0.003750,0.249972,0,0);-ms-transform:matrix(0.166806,-0.002502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166806,-0.002502,0.003750,0.249972,0,0);}
.mb6_c00339{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m88_c00339{transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);}
.m5f_c00339{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.mb9_c00339{transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.169091,-0.002536,0.003750,0.249972,0,0);-ms-transform:matrix(0.169091,-0.002536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169091,-0.002536,0.003750,0.249972,0,0);}
.m45_c00339{transform:matrix(0.169276,-0.002539,0.003750,0.249972,0,0);-ms-transform:matrix(0.169276,-0.002539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169276,-0.002539,0.003750,0.249972,0,0);}
.m44_c00339{transform:matrix(0.169791,-0.002547,0.003750,0.249972,0,0);-ms-transform:matrix(0.169791,-0.002547,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169791,-0.002547,0.003750,0.249972,0,0);}
.m5c_c00339{transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);}
.mc7_c00339{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.mdf_c00339{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.171846,-0.002578,0.003750,0.249972,0,0);-ms-transform:matrix(0.171846,-0.002578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171846,-0.002578,0.003750,0.249972,0,0);}
.m67_c00339{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.md0_c00339{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);-ms-transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);}
.m6e_c00339{transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);}
.m84_c00339{transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.173560,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173560,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173560,-0.002603,0.003750,0.249972,0,0);}
.mec_c00339{transform:matrix(0.173812,-0.003650,0.005249,0.249945,0,0);-ms-transform:matrix(0.173812,-0.003650,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173812,-0.003650,0.005249,0.249945,0,0);}
.m4b_c00339{transform:matrix(0.174570,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174570,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174570,-0.002619,0.003750,0.249972,0,0);}
.m3b_c00339{transform:matrix(0.175150,-0.002627,0.003750,0.249972,0,0);-ms-transform:matrix(0.175150,-0.002627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175150,-0.002627,0.003750,0.249972,0,0);}
.me0_c00339{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.175200,-0.002628,0.003750,0.249972,0,0);-ms-transform:matrix(0.175200,-0.002628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175200,-0.002628,0.003750,0.249972,0,0);}
.maa_c00339{transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.176500,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176500,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176500,-0.002648,0.003750,0.249972,0,0);}
.ma0_c00339{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.md2_c00339{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);}
.m96_c00339{transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);}
.mdd_c00339{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.m8b_c00339{transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177905,0.000000,0.000000,0.250000,0,0);}
.m7b_c00339{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{transform:matrix(0.178230,-0.002673,0.003750,0.249972,0,0);-ms-transform:matrix(0.178230,-0.002673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178230,-0.002673,0.003750,0.249972,0,0);}
.mb3_c00339{transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);}
.m93_c00339{transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);}
.mee_c00339{transform:matrix(0.179360,-0.003767,0.005249,0.249945,0,0);-ms-transform:matrix(0.179360,-0.003767,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179360,-0.003767,0.005249,0.249945,0,0);}
.m36_c00339{transform:matrix(0.179630,-0.002694,0.003750,0.249972,0,0);-ms-transform:matrix(0.179630,-0.002694,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179630,-0.002694,0.003750,0.249972,0,0);}
.m23_c00339{transform:matrix(0.179950,-0.002699,0.003750,0.249972,0,0);-ms-transform:matrix(0.179950,-0.002699,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179950,-0.002699,0.003750,0.249972,0,0);}
.mf_c00339{transform:matrix(0.180070,-0.002701,0.003750,0.249972,0,0);-ms-transform:matrix(0.180070,-0.002701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180070,-0.002701,0.003750,0.249972,0,0);}
.m49_c00339{transform:matrix(0.180105,-0.002702,0.003750,0.249972,0,0);-ms-transform:matrix(0.180105,-0.002702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180105,-0.002702,0.003750,0.249972,0,0);}
.mcc_c00339{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m94_c00339{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.ma9_c00339{transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180880,0.000000,0.000000,0.250000,0,0);}
.mbd_c00339{transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);}
.m87_c00339{transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);}
.md8_c00339{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m7d_c00339{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m33_c00339{transform:matrix(0.181820,-0.002727,0.003750,0.249972,0,0);-ms-transform:matrix(0.181820,-0.002727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181820,-0.002727,0.003750,0.249972,0,0);}
.m8c_c00339{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{transform:matrix(0.182020,-0.002730,0.003750,0.249972,0,0);-ms-transform:matrix(0.182020,-0.002730,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182020,-0.002730,0.003750,0.249972,0,0);}
.mc6_c00339{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.mca_c00339{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.m74_c00339{transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182620,0.000000,0.000000,0.250000,0,0);}
.md3_c00339{transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);}
.mae_c00339{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.m95_c00339{transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183195,0.000000,0.000000,0.250000,0,0);}
.mad_c00339{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m37_c00339{transform:matrix(0.183944,-0.002759,0.003750,0.249972,0,0);-ms-transform:matrix(0.183944,-0.002759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183944,-0.002759,0.003750,0.249972,0,0);}
.m1c_c00339{transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);}
.me9_c00339{transform:matrix(0.184159,-0.003867,0.005249,0.249945,0,0);-ms-transform:matrix(0.184159,-0.003867,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184159,-0.003867,0.005249,0.249945,0,0);}
.m5d_c00339{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.184544,-0.002768,0.003750,0.249972,0,0);-ms-transform:matrix(0.184544,-0.002768,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184544,-0.002768,0.003750,0.249972,0,0);}
.m1a_c00339{transform:matrix(0.184749,-0.002771,0.003750,0.249972,0,0);-ms-transform:matrix(0.184749,-0.002771,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184749,-0.002771,0.003750,0.249972,0,0);}
.m24_c00339{transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);-ms-transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);}
.mef_c00339{transform:matrix(0.184889,-0.003883,0.005249,0.249945,0,0);-ms-transform:matrix(0.184889,-0.003883,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184889,-0.003883,0.005249,0.249945,0,0);}
.me4_c00339{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.185734,-0.002786,0.003750,0.249972,0,0);-ms-transform:matrix(0.185734,-0.002786,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185734,-0.002786,0.003750,0.249972,0,0);}
.me7_c00339{transform:matrix(0.186109,-0.003908,0.005249,0.249945,0,0);-ms-transform:matrix(0.186109,-0.003908,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186109,-0.003908,0.005249,0.249945,0,0);}
.m3_c00339{transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);}
.m22_c00339{transform:matrix(0.186944,-0.002804,0.003750,0.249972,0,0);-ms-transform:matrix(0.186944,-0.002804,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186944,-0.002804,0.003750,0.249972,0,0);}
.me1_c00339{transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186970,0.000000,0.000000,0.250000,0,0);}
.md4_c00339{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.me6_c00339{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.mf0_c00339{transform:matrix(0.187669,-0.003941,0.005249,0.249945,0,0);-ms-transform:matrix(0.187669,-0.003941,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187669,-0.003941,0.005249,0.249945,0,0);}
.m8e_c00339{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m92_c00339{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.mea_c00339{transform:matrix(0.189703,-0.003984,0.005249,0.249945,0,0);-ms-transform:matrix(0.189703,-0.003984,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189703,-0.003984,0.005249,0.249945,0,0);}
.mf2_c00339{transform:matrix(0.189813,-0.003986,0.005249,0.249945,0,0);-ms-transform:matrix(0.189813,-0.003986,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189813,-0.003986,0.005249,0.249945,0,0);}
.m2e_c00339{transform:matrix(0.189909,-0.002849,0.003750,0.249972,0,0);-ms-transform:matrix(0.189909,-0.002849,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189909,-0.002849,0.003750,0.249972,0,0);}
.m46_c00339{transform:matrix(0.189999,-0.002850,0.003750,0.249972,0,0);-ms-transform:matrix(0.189999,-0.002850,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189999,-0.002850,0.003750,0.249972,0,0);}
.mb2_c00339{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.m8d_c00339{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.md9_c00339{transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191920,0.000000,0.000000,0.250000,0,0);}
.m8f_c00339{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.mce_c00339{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00339{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.mc0_c00339{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{transform:matrix(0.193863,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193863,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193863,-0.002908,0.003750,0.249972,0,0);}
.m71_c00339{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.me3_c00339{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);}
.m5b_c00339{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.194533,-0.002918,0.003750,0.249972,0,0);-ms-transform:matrix(0.194533,-0.002918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194533,-0.002918,0.003750,0.249972,0,0);}
.me8_c00339{transform:matrix(0.194672,-0.004088,0.005249,0.249945,0,0);-ms-transform:matrix(0.194672,-0.004088,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194672,-0.004088,0.005249,0.249945,0,0);}
.m90_c00339{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);-ms-transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);}
.m1e_c00339{transform:matrix(0.195003,-0.002925,0.003750,0.249972,0,0);-ms-transform:matrix(0.195003,-0.002925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195003,-0.002925,0.003750,0.249972,0,0);}
.m9d_c00339{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m97_c00339{transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);}
.md6_c00339{transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);}
.mda_c00339{transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);}
.mac_c00339{transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.196763,-0.002951,0.003750,0.249972,0,0);-ms-transform:matrix(0.196763,-0.002951,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196763,-0.002951,0.003750,0.249972,0,0);}
.mba_c00339{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.196918,-0.002954,0.003750,0.249972,0,0);-ms-transform:matrix(0.196918,-0.002954,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196918,-0.002954,0.003750,0.249972,0,0);}
.m1b_c00339{transform:matrix(0.197288,-0.002959,0.003750,0.249972,0,0);-ms-transform:matrix(0.197288,-0.002959,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197288,-0.002959,0.003750,0.249972,0,0);}
.mbc_c00339{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.197523,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197523,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197523,-0.002963,0.003750,0.249972,0,0);}
.md7_c00339{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00339{transform:matrix(0.199098,-0.002986,0.003750,0.249972,0,0);-ms-transform:matrix(0.199098,-0.002986,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199098,-0.002986,0.003750,0.249972,0,0);}
.m2b_c00339{transform:matrix(0.199383,-0.002991,0.003750,0.249972,0,0);-ms-transform:matrix(0.199383,-0.002991,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199383,-0.002991,0.003750,0.249972,0,0);}
.m20_c00339{transform:matrix(0.199478,-0.002992,0.003750,0.249972,0,0);-ms-transform:matrix(0.199478,-0.002992,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199478,-0.002992,0.003750,0.249972,0,0);}
.mc8_c00339{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.200172,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200172,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200172,-0.003003,0.003750,0.249972,0,0);}
.m58_c00339{transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);}
.mc1_c00339{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.201282,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201282,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201282,-0.003019,0.003750,0.249972,0,0);}
.mc5_c00339{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.201877,-0.003028,0.003750,0.249972,0,0);-ms-transform:matrix(0.201877,-0.003028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201877,-0.003028,0.003750,0.249972,0,0);}
.mb5_c00339{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00339{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m9a_c00339{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.mcb_c00339{transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204430,0.000000,0.000000,0.250000,0,0);}
.m61_c00339{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.mde_c00339{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.mb1_c00339{transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);}
.m63_c00339{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m57_c00339{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m73_c00339{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.m80_c00339{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m7f_c00339{transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);}
.m89_c00339{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.mb7_c00339{transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);}
.m56_c00339{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m9b_c00339{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.mab_c00339{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m85_c00339{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.m5a_c00339{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.208197,-0.003123,0.003750,0.249972,0,0);-ms-transform:matrix(0.208197,-0.003123,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208197,-0.003123,0.003750,0.249972,0,0);}
.m6d_c00339{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.mc4_c00339{transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209770,0.000000,0.000000,0.250000,0,0);}
.meb_c00339{transform:matrix(0.209959,-0.004409,0.005249,0.249945,0,0);-ms-transform:matrix(0.209959,-0.004409,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209959,-0.004409,0.005249,0.249945,0,0);}
.ma1_c00339{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m86_c00339{transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);}
.mb8_c00339{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m4f_c00339{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00339{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m91_c00339{transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);}
.m78_c00339{transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);}
.m81_c00339{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m7a_c00339{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.211416,-0.003171,0.003750,0.249972,0,0);-ms-transform:matrix(0.211416,-0.003171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211416,-0.003171,0.003750,0.249972,0,0);}
.m50_c00339{transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);}
.ma7_c00339{transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.212821,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212821,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212821,-0.003192,0.003750,0.249972,0,0);}
.m99_c00339{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.mb0_c00339{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m76_c00339{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.mc9_c00339{transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);}
.m98_c00339{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m77_c00339{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.ma2_c00339{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.m66_c00339{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.215426,-0.003231,0.003750,0.249972,0,0);-ms-transform:matrix(0.215426,-0.003231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215426,-0.003231,0.003750,0.249972,0,0);}
.m5e_c00339{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.m9c_c00339{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.m79_c00339{transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);}
.ma6_c00339{transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);}
.m3f_c00339{transform:matrix(0.217221,-0.003258,0.003750,0.249972,0,0);-ms-transform:matrix(0.217221,-0.003258,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217221,-0.003258,0.003750,0.249972,0,0);}
.m26_c00339{transform:matrix(0.217316,-0.003260,0.003750,0.249972,0,0);-ms-transform:matrix(0.217316,-0.003260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217316,-0.003260,0.003750,0.249972,0,0);}
.maf_c00339{transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);}
.ma3_c00339{transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.219045,-0.003286,0.003750,0.249972,0,0);-ms-transform:matrix(0.219045,-0.003286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219045,-0.003286,0.003750,0.249972,0,0);}
.m75_c00339{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m6f_c00339{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m62_c00339{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.m59_c00339{transform:matrix(0.220895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220895,0.000000,0.000000,0.250000,0,0);}
.mc2_c00339{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221295,0.000000,0.000000,0.250000,0,0);}
.m4e_c00339{transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.221925,-0.003329,0.003750,0.249972,0,0);-ms-transform:matrix(0.221925,-0.003329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221925,-0.003329,0.003750,0.249972,0,0);}
.md5_c00339{transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222330,0.000000,0.000000,0.250000,0,0);}
.m7e_c00339{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{transform:matrix(0.223370,-0.003351,0.003750,0.249972,0,0);-ms-transform:matrix(0.223370,-0.003351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223370,-0.003351,0.003750,0.249972,0,0);}
.m9f_c00339{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m4c_c00339{transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.224335,-0.003365,0.003750,0.249972,0,0);-ms-transform:matrix(0.224335,-0.003365,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224335,-0.003365,0.003750,0.249972,0,0);}
.m8a_c00339{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m51_c00339{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m65_c00339{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m9e_c00339{transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);}
.m3c_c00339{transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);-ms-transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);}
.m28_c00339{transform:matrix(0.231484,-0.003472,0.003750,0.249972,0,0);-ms-transform:matrix(0.231484,-0.003472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231484,-0.003472,0.003750,0.249972,0,0);}
.m52_c00339{transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);}
.m83_c00339{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m82_c00339{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.237533,-0.003563,0.003750,0.249972,0,0);-ms-transform:matrix(0.237533,-0.003563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237533,-0.003563,0.003750,0.249972,0,0);}
.mcd_c00339{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.med_c00339{transform:matrix(0.240912,-0.005059,0.005249,0.249945,0,0);-ms-transform:matrix(0.240912,-0.005059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240912,-0.005059,0.005249,0.249945,0,0);}
.m32_c00339{transform:matrix(0.251087,-0.003766,0.003750,0.249972,0,0);-ms-transform:matrix(0.251087,-0.003766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251087,-0.003766,0.003750,0.249972,0,0);}
.mbe_c00339{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.m64_c00339{transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(1.133732,-0.017006,0.003750,0.249972,0,0);-ms-transform:matrix(1.133732,-0.017006,0.003750,0.249972,0,0);-webkit-transform:matrix(1.133732,-0.017006,0.003750,0.249972,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:0.000000px;}
.fc0_c00339{color:transparent;}
.fsa_c00339{font-size:57.750000px;}
.fs6_c00339{font-size:57.756497px;}
.fse_c00339{font-size:58.800000px;}
.fsc_c00339{font-size:59.850000px;}
.fsb_c00339{font-size:60.900000px;}
.fs8_c00339{font-size:60.906851px;}
.fsf_c00339{font-size:61.950000px;}
.fs0_c00339{font-size:63.000000px;}
.fs2_c00339{font-size:63.007087px;}
.fs11_c00339{font-size:64.050000px;}
.fs10_c00339{font-size:65.100000px;}
.fs7_c00339{font-size:65.107323px;}
.fsd_c00339{font-size:66.150000px;}
.fs5_c00339{font-size:66.157441px;}
.fs13_c00339{font-size:67.214816px;}
.fs12_c00339{font-size:68.250000px;}
.fs1_c00339{font-size:69.307796px;}
.fs3_c00339{font-size:70.357914px;}
.fs9_c00339{font-size:71.408032px;}
.fs14_c00339{font-size:71.415742px;}
.fs4_c00339{font-size:73.508268px;}
.y0_c00339{bottom:0.000000px;}
.yd0_c00339{bottom:23.222399px;}
.yd1_c00339{bottom:25.271832px;}
.yd2_c00339{bottom:26.264006px;}
.yd3_c00339{bottom:28.122526px;}
.yd4_c00339{bottom:28.713345px;}
.yc9_c00339{bottom:40.506000px;}
.yca_c00339{bottom:41.651561px;}
.ycb_c00339{bottom:42.820053px;}
.ycc_c00339{bottom:43.245209px;}
.ycd_c00339{bottom:44.135430px;}
.yce_c00339{bottom:45.199973px;}
.ycf_c00339{bottom:45.779856px;}
.yc1_c00339{bottom:57.508500px;}
.yc2_c00339{bottom:58.002000px;}
.yc3_c00339{bottom:58.684500px;}
.yc4_c00339{bottom:59.566500px;}
.yc5_c00339{bottom:59.859000px;}
.yc6_c00339{bottom:61.387500px;}
.yc7_c00339{bottom:61.746000px;}
.yc8_c00339{bottom:62.163000px;}
.yb9_c00339{bottom:74.247000px;}
.yba_c00339{bottom:74.845500px;}
.ybb_c00339{bottom:75.847500px;}
.ybc_c00339{bottom:76.639500px;}
.ybd_c00339{bottom:77.677500px;}
.ybe_c00339{bottom:78.117000px;}
.ybf_c00339{bottom:78.451500px;}
.yc0_c00339{bottom:78.949500px;}
.yb0_c00339{bottom:91.794000px;}
.yb1_c00339{bottom:92.313000px;}
.yb2_c00339{bottom:92.641500px;}
.yb3_c00339{bottom:93.297000px;}
.yb4_c00339{bottom:93.553500px;}
.yb5_c00339{bottom:94.149000px;}
.yb6_c00339{bottom:94.756500px;}
.yb7_c00339{bottom:95.269500px;}
.yb8_c00339{bottom:95.781000px;}
.ya8_c00339{bottom:108.805500px;}
.ya9_c00339{bottom:109.473000px;}
.yaa_c00339{bottom:110.074500px;}
.yab_c00339{bottom:110.407500px;}
.yac_c00339{bottom:111.031500px;}
.yad_c00339{bottom:111.486000px;}
.yae_c00339{bottom:112.411500px;}
.yaf_c00339{bottom:113.065500px;}
.ya7_c00339{bottom:129.726000px;}
.y9d_c00339{bottom:143.095500px;}
.y9e_c00339{bottom:143.293500px;}
.y9f_c00339{bottom:144.213000px;}
.ya0_c00339{bottom:144.522000px;}
.ya1_c00339{bottom:145.041000px;}
.ya2_c00339{bottom:145.279500px;}
.ya3_c00339{bottom:145.869000px;}
.ya4_c00339{bottom:146.539500px;}
.ya5_c00339{bottom:147.262500px;}
.ya6_c00339{bottom:147.492000px;}
.y97_c00339{bottom:160.920000px;}
.y98_c00339{bottom:161.941500px;}
.y99_c00339{bottom:162.216000px;}
.y9a_c00339{bottom:162.418500px;}
.y9b_c00339{bottom:163.563000px;}
.y9c_c00339{bottom:164.470500px;}
.y96_c00339{bottom:180.762000px;}
.y8e_c00339{bottom:196.288500px;}
.y8f_c00339{bottom:196.701000px;}
.y90_c00339{bottom:196.885500px;}
.y91_c00339{bottom:197.416500px;}
.y92_c00339{bottom:197.886000px;}
.y93_c00339{bottom:198.465000px;}
.y94_c00339{bottom:198.708000px;}
.y95_c00339{bottom:198.946500px;}
.y88_c00339{bottom:213.570000px;}
.y89_c00339{bottom:213.964500px;}
.y8a_c00339{bottom:214.261500px;}
.y8b_c00339{bottom:214.561500px;}
.y8c_c00339{bottom:215.107500px;}
.y8d_c00339{bottom:215.671500px;}
.y87_c00339{bottom:232.045500px;}
.y86_c00339{bottom:249.352500px;}
.y7e_c00339{bottom:264.868500px;}
.y7f_c00339{bottom:265.138500px;}
.y80_c00339{bottom:265.945500px;}
.y81_c00339{bottom:266.281500px;}
.y82_c00339{bottom:266.833500px;}
.y83_c00339{bottom:267.072000px;}
.y84_c00339{bottom:267.690000px;}
.y85_c00339{bottom:267.853500px;}
.y77_c00339{bottom:281.610000px;}
.y78_c00339{bottom:282.321000px;}
.y79_c00339{bottom:283.122000px;}
.y7a_c00339{bottom:283.549500px;}
.y7b_c00339{bottom:284.002500px;}
.y7c_c00339{bottom:284.286000px;}
.y7d_c00339{bottom:285.400500px;}
.y6e_c00339{bottom:298.080000px;}
.y6f_c00339{bottom:298.522500px;}
.y70_c00339{bottom:299.398500px;}
.y71_c00339{bottom:299.988000px;}
.y72_c00339{bottom:300.375000px;}
.y73_c00339{bottom:300.927000px;}
.y74_c00339{bottom:301.318500px;}
.y75_c00339{bottom:301.696500px;}
.y76_c00339{bottom:301.977000px;}
.y66_c00339{bottom:315.363000px;}
.y67_c00339{bottom:315.760500px;}
.y68_c00339{bottom:316.464000px;}
.y69_c00339{bottom:317.043000px;}
.y6a_c00339{bottom:317.856000px;}
.y6b_c00339{bottom:318.147000px;}
.y6c_c00339{bottom:318.576000px;}
.y6d_c00339{bottom:318.873000px;}
.y5f_c00339{bottom:332.376000px;}
.y60_c00339{bottom:332.995500px;}
.y61_c00339{bottom:334.573500px;}
.y62_c00339{bottom:334.905000px;}
.y63_c00339{bottom:335.859000px;}
.y64_c00339{bottom:336.699000px;}
.y65_c00339{bottom:337.015500px;}
.y58_c00339{bottom:349.654500px;}
.y59_c00339{bottom:349.986000px;}
.y5a_c00339{bottom:350.298000px;}
.y5b_c00339{bottom:351.226500px;}
.y5c_c00339{bottom:352.612500px;}
.y5d_c00339{bottom:353.223000px;}
.y5e_c00339{bottom:353.880000px;}
.y4e_c00339{bottom:367.203000px;}
.y4f_c00339{bottom:367.441500px;}
.y50_c00339{bottom:367.933500px;}
.y51_c00339{bottom:368.205000px;}
.y52_c00339{bottom:368.496000px;}
.y53_c00339{bottom:369.048000px;}
.y54_c00339{bottom:369.754500px;}
.y55_c00339{bottom:370.027500px;}
.y56_c00339{bottom:370.836000px;}
.y57_c00339{bottom:371.157000px;}
.y4d_c00339{bottom:386.929500px;}
.y44_c00339{bottom:401.745803px;}
.y45_c00339{bottom:402.112020px;}
.y46_c00339{bottom:402.355748px;}
.y47_c00339{bottom:402.976403px;}
.y48_c00339{bottom:403.135830px;}
.y49_c00339{bottom:403.489028px;}
.y4a_c00339{bottom:403.962615px;}
.y4b_c00339{bottom:404.201325px;}
.y4c_c00339{bottom:404.442173px;}
.y3c_c00339{bottom:419.296537px;}
.y3d_c00339{bottom:419.685345px;}
.y3e_c00339{bottom:419.837183px;}
.y3f_c00339{bottom:420.015525px;}
.y40_c00339{bottom:420.458385px;}
.y41_c00339{bottom:421.094108px;}
.y42_c00339{bottom:421.349610px;}
.y43_c00339{bottom:421.973633px;}
.y35_c00339{bottom:437.523518px;}
.y33_c00339{bottom:437.523630px;}
.y36_c00339{bottom:437.523705px;}
.y34_c00339{bottom:437.523840px;}
.y38_c00339{bottom:437.523870px;}
.y37_c00339{bottom:437.523960px;}
.y39_c00339{bottom:437.524148px;}
.y3a_c00339{bottom:437.524403px;}
.y3b_c00339{bottom:437.524808px;}
.y2b_c00339{bottom:453.049950px;}
.y2c_c00339{bottom:453.431160px;}
.y2d_c00339{bottom:454.026675px;}
.y2e_c00339{bottom:454.335443px;}
.y2f_c00339{bottom:454.621553px;}
.y30_c00339{bottom:455.196532px;}
.y31_c00339{bottom:455.417565px;}
.y32_c00339{bottom:455.939955px;}
.y26_c00339{bottom:470.331383px;}
.y27_c00339{bottom:471.024015px;}
.y28_c00339{bottom:471.418935px;}
.y29_c00339{bottom:471.770280px;}
.y2a_c00339{bottom:473.008853px;}
.y1d_c00339{bottom:486.263760px;}
.y1e_c00339{bottom:486.916943px;}
.y1f_c00339{bottom:487.110938px;}
.y20_c00339{bottom:487.897703px;}
.y21_c00339{bottom:488.433578px;}
.y22_c00339{bottom:488.612243px;}
.y23_c00339{bottom:489.035798px;}
.y24_c00339{bottom:489.617835px;}
.y25_c00339{bottom:490.259948px;}
.y16_c00339{bottom:503.275830px;}
.y17_c00339{bottom:503.540273px;}
.y18_c00339{bottom:504.349568px;}
.y19_c00339{bottom:505.504620px;}
.y1a_c00339{bottom:506.055600px;}
.y1b_c00339{bottom:506.364068px;}
.y1c_c00339{bottom:507.034410px;}
.yf_c00339{bottom:519.749138px;}
.y10_c00339{bottom:520.049220px;}
.y11_c00339{bottom:521.349000px;}
.y12_c00339{bottom:521.656823px;}
.y13_c00339{bottom:522.053745px;}
.y14_c00339{bottom:522.956558px;}
.y15_c00339{bottom:524.002245px;}
.ya_c00339{bottom:537.030128px;}
.yb_c00339{bottom:537.472613px;}
.yc_c00339{bottom:538.439370px;}
.yd_c00339{bottom:539.723715px;}
.ye_c00339{bottom:540.133688px;}
.y2_c00339{bottom:554.313000px;}
.y3_c00339{bottom:555.260948px;}
.y4_c00339{bottom:555.672968px;}
.y5_c00339{bottom:556.353233px;}
.y6_c00339{bottom:556.795538px;}
.y7_c00339{bottom:557.649570px;}
.y8_c00339{bottom:557.998860px;}
.y9_c00339{bottom:558.298763px;}
.y1_c00339{bottom:572.806500px;}
.hc_c00339{height:57.750000px;}
.h8_c00339{height:57.756497px;}
.h10_c00339{height:58.800000px;}
.he_c00339{height:59.850000px;}
.hd_c00339{height:60.900000px;}
.ha_c00339{height:60.906851px;}
.h11_c00339{height:61.950000px;}
.h2_c00339{height:63.000000px;}
.h4_c00339{height:63.007087px;}
.h13_c00339{height:64.050000px;}
.h12_c00339{height:65.100000px;}
.h9_c00339{height:65.107323px;}
.hf_c00339{height:66.150000px;}
.h7_c00339{height:66.157441px;}
.h15_c00339{height:67.214816px;}
.h14_c00339{height:68.250000px;}
.h3_c00339{height:69.307796px;}
.h5_c00339{height:70.357914px;}
.hb_c00339{height:71.408032px;}
.h16_c00339{height:71.415742px;}
.h6_c00339{height:73.508268px;}
.h0_c00339{height:613.170000px;}
.h1_c00339{height:613.500000px;}
.w0_c00339{width:359.100000px;}
.w1_c00339{width:359.250000px;}
.x0_c00339{left:0.000000px;}
.x6a_c00339{left:32.133000px;}
.x2_c00339{left:39.336000px;}
.x26_c00339{left:40.584885px;}
.x5d_c00339{left:42.114000px;}
.x76_c00339{left:43.419000px;}
.x42_c00339{left:57.702000px;}
.xe_c00339{left:58.802220px;}
.x14_c00339{left:60.653715px;}
.x3d_c00339{left:65.880000px;}
.x50_c00339{left:67.684500px;}
.xa_c00339{left:69.602857px;}
.x37_c00339{left:70.893600px;}
.x54_c00339{left:72.805500px;}
.x27_c00339{left:75.200955px;}
.x4b_c00339{left:77.133000px;}
.x60_c00339{left:78.441000px;}
.x49_c00339{left:80.683500px;}
.x70_c00339{left:82.297500px;}
.x1a_c00339{left:86.786887px;}
.x2c_c00339{left:90.454943px;}
.x43_c00339{left:92.802000px;}
.x6b_c00339{left:94.210500px;}
.x63_c00339{left:96.804000px;}
.x22_c00339{left:98.099273px;}
.x74_c00339{left:99.573000px;}
.x1b_c00339{left:100.620090px;}
.x3_c00339{left:102.532500px;}
.x3e_c00339{left:103.950000px;}
.x33_c00339{left:105.699938px;}
.x2d_c00339{left:107.737335px;}
.x68_c00339{left:110.640000px;}
.x44_c00339{left:112.237500px;}
.x51_c00339{left:114.618000px;}
.x71_c00339{left:117.694500px;}
.x15_c00339{left:122.908583px;}
.x69_c00339{left:128.979000px;}
.x4_c00339{left:130.000500px;}
.x23_c00339{left:131.028758px;}
.x45_c00339{left:133.012500px;}
.xb_c00339{left:134.053357px;}
.x55_c00339{left:135.376500px;}
.x72_c00339{left:137.307000px;}
.x4a_c00339{left:138.723000px;}
.x6c_c00339{left:140.272500px;}
.x38_c00339{left:142.922340px;}
.xf_c00339{left:145.454220px;}
.x6e_c00339{left:146.874000px;}
.x58_c00339{left:149.131500px;}
.x52_c00339{left:153.264000px;}
.x66_c00339{left:155.245500px;}
.x1c_c00339{left:156.771922px;}
.x24_c00339{left:160.253062px;}
.x10_c00339{left:165.975720px;}
.x78_c00339{left:167.643000px;}
.x2e_c00339{left:168.763560px;}
.x4c_c00339{left:169.959000px;}
.x1_c00339{left:171.720000px;}
.x3f_c00339{left:174.150000px;}
.x5_c00339{left:175.351500px;}
.x56_c00339{left:177.487500px;}
.x59_c00339{left:179.710500px;}
.x61_c00339{left:182.380500px;}
.x28_c00339{left:183.466958px;}
.x39_c00339{left:185.599253px;}
.x64_c00339{left:187.783500px;}
.x4d_c00339{left:189.480000px;}
.x11_c00339{left:192.437220px;}
.x1d_c00339{left:195.097507px;}
.x2f_c00339{left:197.386995px;}
.x7b_c00339{left:199.020000px;}
.x6f_c00339{left:200.604000px;}
.x34_c00339{left:203.711310px;}
.x6_c00339{left:204.838500px;}
.x1e_c00339{left:207.808687px;}
.x16_c00339{left:211.814760px;}
.xc_c00339{left:219.676357px;}
.x46_c00339{left:222.852000px;}
.x3a_c00339{left:225.073530px;}
.x35_c00339{left:226.946205px;}
.x5a_c00339{left:232.365000px;}
.x62_c00339{left:233.677500px;}
.x29_c00339{left:235.802108px;}
.x1f_c00339{left:238.046137px;}
.x65_c00339{left:240.433500px;}
.x47_c00339{left:242.352000px;}
.x3b_c00339{left:244.988430px;}
.x30_c00339{left:245.991930px;}
.xd_c00339{left:247.007857px;}
.x79_c00339{left:248.079000px;}
.x5e_c00339{left:250.824000px;}
.x12_c00339{left:252.624720px;}
.x17_c00339{left:254.248042px;}
.x2a_c00339{left:255.838800px;}
.x77_c00339{left:258.333000px;}
.x7_c00339{left:261.774000px;}
.x25_c00339{left:263.429197px;}
.x3c_c00339{left:265.045830px;}
.x7c_c00339{left:266.525193px;}
.x40_c00339{left:267.840000px;}
.x57_c00339{left:272.532000px;}
.x53_c00339{left:275.337000px;}
.x6d_c00339{left:276.445500px;}
.x18_c00339{left:278.013262px;}
.x20_c00339{left:279.649267px;}
.x67_c00339{left:281.875500px;}
.x36_c00339{left:283.651103px;}
.x8_c00339{left:285.060000px;}
.x7a_c00339{left:288.916500px;}
.x31_c00339{left:292.437870px;}
.x73_c00339{left:293.725500px;}
.x4e_c00339{left:295.042500px;}
.x5c_c00339{left:297.927000px;}
.x48_c00339{left:300.124500px;}
.x2b_c00339{left:303.367658px;}
.x9_c00339{left:305.053500px;}
.x75_c00339{left:308.788500px;}
.x5b_c00339{left:312.015000px;}
.x4f_c00339{left:313.677000px;}
.x32_c00339{left:319.170878px;}
.x13_c00339{left:322.337220px;}
.x21_c00339{left:325.557465px;}
.x5f_c00339{left:326.694000px;}
.x19_c00339{left:329.604315px;}
.x41_c00339{left:331.020000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws0_c00339{word-spacing:0.000000pt;}
.fsa_c00339{font-size:51.333333pt;}
.fs6_c00339{font-size:51.339108pt;}
.fse_c00339{font-size:52.266667pt;}
.fsc_c00339{font-size:53.200000pt;}
.fsb_c00339{font-size:54.133333pt;}
.fs8_c00339{font-size:54.139423pt;}
.fsf_c00339{font-size:55.066667pt;}
.fs0_c00339{font-size:56.000000pt;}
.fs2_c00339{font-size:56.006300pt;}
.fs11_c00339{font-size:56.933333pt;}
.fs10_c00339{font-size:57.866667pt;}
.fs7_c00339{font-size:57.873176pt;}
.fsd_c00339{font-size:58.800000pt;}
.fs5_c00339{font-size:58.806615pt;}
.fs13_c00339{font-size:59.746503pt;}
.fs12_c00339{font-size:60.666667pt;}
.fs1_c00339{font-size:61.606930pt;}
.fs3_c00339{font-size:62.540368pt;}
.fs9_c00339{font-size:63.473806pt;}
.fs14_c00339{font-size:63.480660pt;}
.fs4_c00339{font-size:65.340683pt;}
.y0_c00339{bottom:0.000000pt;}
.yd0_c00339{bottom:20.642132pt;}
.yd1_c00339{bottom:22.463851pt;}
.yd2_c00339{bottom:23.345783pt;}
.yd3_c00339{bottom:24.997801pt;}
.yd4_c00339{bottom:25.522973pt;}
.yc9_c00339{bottom:36.005333pt;}
.yca_c00339{bottom:37.023609pt;}
.ycb_c00339{bottom:38.062269pt;}
.ycc_c00339{bottom:38.440185pt;}
.ycd_c00339{bottom:39.231493pt;}
.yce_c00339{bottom:40.177753pt;}
.ycf_c00339{bottom:40.693205pt;}
.yc1_c00339{bottom:51.118667pt;}
.yc2_c00339{bottom:51.557333pt;}
.yc3_c00339{bottom:52.164000pt;}
.yc4_c00339{bottom:52.948000pt;}
.yc5_c00339{bottom:53.208000pt;}
.yc6_c00339{bottom:54.566667pt;}
.yc7_c00339{bottom:54.885333pt;}
.yc8_c00339{bottom:55.256000pt;}
.yb9_c00339{bottom:65.997333pt;}
.yba_c00339{bottom:66.529333pt;}
.ybb_c00339{bottom:67.420000pt;}
.ybc_c00339{bottom:68.124000pt;}
.ybd_c00339{bottom:69.046667pt;}
.ybe_c00339{bottom:69.437333pt;}
.ybf_c00339{bottom:69.734667pt;}
.yc0_c00339{bottom:70.177333pt;}
.yb0_c00339{bottom:81.594667pt;}
.yb1_c00339{bottom:82.056000pt;}
.yb2_c00339{bottom:82.348000pt;}
.yb3_c00339{bottom:82.930667pt;}
.yb4_c00339{bottom:83.158667pt;}
.yb5_c00339{bottom:83.688000pt;}
.yb6_c00339{bottom:84.228000pt;}
.yb7_c00339{bottom:84.684000pt;}
.yb8_c00339{bottom:85.138667pt;}
.ya8_c00339{bottom:96.716000pt;}
.ya9_c00339{bottom:97.309333pt;}
.yaa_c00339{bottom:97.844000pt;}
.yab_c00339{bottom:98.140000pt;}
.yac_c00339{bottom:98.694667pt;}
.yad_c00339{bottom:99.098667pt;}
.yae_c00339{bottom:99.921333pt;}
.yaf_c00339{bottom:100.502667pt;}
.ya7_c00339{bottom:115.312000pt;}
.y9d_c00339{bottom:127.196000pt;}
.y9e_c00339{bottom:127.372000pt;}
.y9f_c00339{bottom:128.189333pt;}
.ya0_c00339{bottom:128.464000pt;}
.ya1_c00339{bottom:128.925333pt;}
.ya2_c00339{bottom:129.137333pt;}
.ya3_c00339{bottom:129.661333pt;}
.ya4_c00339{bottom:130.257333pt;}
.ya5_c00339{bottom:130.900000pt;}
.ya6_c00339{bottom:131.104000pt;}
.y97_c00339{bottom:143.040000pt;}
.y98_c00339{bottom:143.948000pt;}
.y99_c00339{bottom:144.192000pt;}
.y9a_c00339{bottom:144.372000pt;}
.y9b_c00339{bottom:145.389333pt;}
.y9c_c00339{bottom:146.196000pt;}
.y96_c00339{bottom:160.677333pt;}
.y8e_c00339{bottom:174.478667pt;}
.y8f_c00339{bottom:174.845333pt;}
.y90_c00339{bottom:175.009333pt;}
.y91_c00339{bottom:175.481333pt;}
.y92_c00339{bottom:175.898667pt;}
.y93_c00339{bottom:176.413333pt;}
.y94_c00339{bottom:176.629333pt;}
.y95_c00339{bottom:176.841333pt;}
.y88_c00339{bottom:189.840000pt;}
.y89_c00339{bottom:190.190667pt;}
.y8a_c00339{bottom:190.454667pt;}
.y8b_c00339{bottom:190.721333pt;}
.y8c_c00339{bottom:191.206667pt;}
.y8d_c00339{bottom:191.708000pt;}
.y87_c00339{bottom:206.262667pt;}
.y86_c00339{bottom:221.646667pt;}
.y7e_c00339{bottom:235.438667pt;}
.y7f_c00339{bottom:235.678667pt;}
.y80_c00339{bottom:236.396000pt;}
.y81_c00339{bottom:236.694667pt;}
.y82_c00339{bottom:237.185333pt;}
.y83_c00339{bottom:237.397333pt;}
.y84_c00339{bottom:237.946667pt;}
.y85_c00339{bottom:238.092000pt;}
.y77_c00339{bottom:250.320000pt;}
.y78_c00339{bottom:250.952000pt;}
.y79_c00339{bottom:251.664000pt;}
.y7a_c00339{bottom:252.044000pt;}
.y7b_c00339{bottom:252.446667pt;}
.y7c_c00339{bottom:252.698667pt;}
.y7d_c00339{bottom:253.689333pt;}
.y6e_c00339{bottom:264.960000pt;}
.y6f_c00339{bottom:265.353333pt;}
.y70_c00339{bottom:266.132000pt;}
.y71_c00339{bottom:266.656000pt;}
.y72_c00339{bottom:267.000000pt;}
.y73_c00339{bottom:267.490667pt;}
.y74_c00339{bottom:267.838667pt;}
.y75_c00339{bottom:268.174667pt;}
.y76_c00339{bottom:268.424000pt;}
.y66_c00339{bottom:280.322667pt;}
.y67_c00339{bottom:280.676000pt;}
.y68_c00339{bottom:281.301333pt;}
.y69_c00339{bottom:281.816000pt;}
.y6a_c00339{bottom:282.538667pt;}
.y6b_c00339{bottom:282.797333pt;}
.y6c_c00339{bottom:283.178667pt;}
.y6d_c00339{bottom:283.442667pt;}
.y5f_c00339{bottom:295.445333pt;}
.y60_c00339{bottom:295.996000pt;}
.y61_c00339{bottom:297.398667pt;}
.y62_c00339{bottom:297.693333pt;}
.y63_c00339{bottom:298.541333pt;}
.y64_c00339{bottom:299.288000pt;}
.y65_c00339{bottom:299.569333pt;}
.y58_c00339{bottom:310.804000pt;}
.y59_c00339{bottom:311.098667pt;}
.y5a_c00339{bottom:311.376000pt;}
.y5b_c00339{bottom:312.201333pt;}
.y5c_c00339{bottom:313.433333pt;}
.y5d_c00339{bottom:313.976000pt;}
.y5e_c00339{bottom:314.560000pt;}
.y4e_c00339{bottom:326.402667pt;}
.y4f_c00339{bottom:326.614667pt;}
.y50_c00339{bottom:327.052000pt;}
.y51_c00339{bottom:327.293333pt;}
.y52_c00339{bottom:327.552000pt;}
.y53_c00339{bottom:328.042667pt;}
.y54_c00339{bottom:328.670667pt;}
.y55_c00339{bottom:328.913333pt;}
.y56_c00339{bottom:329.632000pt;}
.y57_c00339{bottom:329.917333pt;}
.y4d_c00339{bottom:343.937333pt;}
.y44_c00339{bottom:357.107380pt;}
.y45_c00339{bottom:357.432907pt;}
.y46_c00339{bottom:357.649553pt;}
.y47_c00339{bottom:358.201247pt;}
.y48_c00339{bottom:358.342960pt;}
.y49_c00339{bottom:358.656913pt;}
.y4a_c00339{bottom:359.077880pt;}
.y4b_c00339{bottom:359.290067pt;}
.y4c_c00339{bottom:359.504153pt;}
.y3c_c00339{bottom:372.708033pt;}
.y3d_c00339{bottom:373.053640pt;}
.y3e_c00339{bottom:373.188607pt;}
.y3f_c00339{bottom:373.347133pt;}
.y40_c00339{bottom:373.740787pt;}
.y41_c00339{bottom:374.305873pt;}
.y42_c00339{bottom:374.532987pt;}
.y43_c00339{bottom:375.087673pt;}
.y35_c00339{bottom:388.909793pt;}
.y33_c00339{bottom:388.909893pt;}
.y36_c00339{bottom:388.909960pt;}
.y34_c00339{bottom:388.910080pt;}
.y38_c00339{bottom:388.910107pt;}
.y37_c00339{bottom:388.910187pt;}
.y39_c00339{bottom:388.910353pt;}
.y3a_c00339{bottom:388.910580pt;}
.y3b_c00339{bottom:388.910940pt;}
.y2b_c00339{bottom:402.711067pt;}
.y2c_c00339{bottom:403.049920pt;}
.y2d_c00339{bottom:403.579267pt;}
.y2e_c00339{bottom:403.853727pt;}
.y2f_c00339{bottom:404.108047pt;}
.y30_c00339{bottom:404.619140pt;}
.y31_c00339{bottom:404.815613pt;}
.y32_c00339{bottom:405.279960pt;}
.y26_c00339{bottom:418.072340pt;}
.y27_c00339{bottom:418.688013pt;}
.y28_c00339{bottom:419.039053pt;}
.y29_c00339{bottom:419.351360pt;}
.y2a_c00339{bottom:420.452313pt;}
.y1d_c00339{bottom:432.234453pt;}
.y1e_c00339{bottom:432.815060pt;}
.y1f_c00339{bottom:432.987500pt;}
.y20_c00339{bottom:433.686847pt;}
.y21_c00339{bottom:434.163180pt;}
.y22_c00339{bottom:434.321993pt;}
.y23_c00339{bottom:434.698487pt;}
.y24_c00339{bottom:435.215853pt;}
.y25_c00339{bottom:435.786620pt;}
.y16_c00339{bottom:447.356293pt;}
.y17_c00339{bottom:447.591353pt;}
.y18_c00339{bottom:448.310727pt;}
.y19_c00339{bottom:449.337440pt;}
.y1a_c00339{bottom:449.827200pt;}
.y1b_c00339{bottom:450.101393pt;}
.y1c_c00339{bottom:450.697253pt;}
.yf_c00339{bottom:461.999233pt;}
.y10_c00339{bottom:462.265973pt;}
.y11_c00339{bottom:463.421333pt;}
.y12_c00339{bottom:463.694953pt;}
.y13_c00339{bottom:464.047773pt;}
.y14_c00339{bottom:464.850273pt;}
.y15_c00339{bottom:465.779773pt;}
.ya_c00339{bottom:477.360113pt;}
.yb_c00339{bottom:477.753433pt;}
.yc_c00339{bottom:478.612773pt;}
.yd_c00339{bottom:479.754413pt;}
.ye_c00339{bottom:480.118833pt;}
.y2_c00339{bottom:492.722667pt;}
.y3_c00339{bottom:493.565287pt;}
.y4_c00339{bottom:493.931527pt;}
.y5_c00339{bottom:494.536207pt;}
.y6_c00339{bottom:494.929367pt;}
.y7_c00339{bottom:495.688507pt;}
.y8_c00339{bottom:495.998987pt;}
.y9_c00339{bottom:496.265567pt;}
.y1_c00339{bottom:509.161333pt;}
.hc_c00339{height:51.333333pt;}
.h8_c00339{height:51.339108pt;}
.h10_c00339{height:52.266667pt;}
.he_c00339{height:53.200000pt;}
.hd_c00339{height:54.133333pt;}
.ha_c00339{height:54.139423pt;}
.h11_c00339{height:55.066667pt;}
.h2_c00339{height:56.000000pt;}
.h4_c00339{height:56.006300pt;}
.h13_c00339{height:56.933333pt;}
.h12_c00339{height:57.866667pt;}
.h9_c00339{height:57.873176pt;}
.hf_c00339{height:58.800000pt;}
.h7_c00339{height:58.806615pt;}
.h15_c00339{height:59.746503pt;}
.h14_c00339{height:60.666667pt;}
.h3_c00339{height:61.606930pt;}
.h5_c00339{height:62.540368pt;}
.hb_c00339{height:63.473806pt;}
.h16_c00339{height:63.480660pt;}
.h6_c00339{height:65.340683pt;}
.h0_c00339{height:545.040000pt;}
.h1_c00339{height:545.333333pt;}
.w0_c00339{width:319.200000pt;}
.w1_c00339{width:319.333333pt;}
.x0_c00339{left:0.000000pt;}
.x6a_c00339{left:28.562667pt;}
.x2_c00339{left:34.965333pt;}
.x26_c00339{left:36.075453pt;}
.x5d_c00339{left:37.434667pt;}
.x76_c00339{left:38.594667pt;}
.x42_c00339{left:51.290667pt;}
.xe_c00339{left:52.268640pt;}
.x14_c00339{left:53.914413pt;}
.x3d_c00339{left:58.560000pt;}
.x50_c00339{left:60.164000pt;}
.xa_c00339{left:61.869207pt;}
.x37_c00339{left:63.016533pt;}
.x54_c00339{left:64.716000pt;}
.x27_c00339{left:66.845293pt;}
.x4b_c00339{left:68.562667pt;}
.x60_c00339{left:69.725333pt;}
.x49_c00339{left:71.718667pt;}
.x70_c00339{left:73.153333pt;}
.x1a_c00339{left:77.143900pt;}
.x2c_c00339{left:80.404393pt;}
.x43_c00339{left:82.490667pt;}
.x6b_c00339{left:83.742667pt;}
.x63_c00339{left:86.048000pt;}
.x22_c00339{left:87.199353pt;}
.x74_c00339{left:88.509333pt;}
.x1b_c00339{left:89.440080pt;}
.x3_c00339{left:91.140000pt;}
.x3e_c00339{left:92.400000pt;}
.x33_c00339{left:93.955500pt;}
.x2d_c00339{left:95.766520pt;}
.x68_c00339{left:98.346667pt;}
.x44_c00339{left:99.766667pt;}
.x51_c00339{left:101.882667pt;}
.x71_c00339{left:104.617333pt;}
.x15_c00339{left:109.252073pt;}
.x69_c00339{left:114.648000pt;}
.x4_c00339{left:115.556000pt;}
.x23_c00339{left:116.470007pt;}
.x45_c00339{left:118.233333pt;}
.xb_c00339{left:119.158540pt;}
.x55_c00339{left:120.334667pt;}
.x72_c00339{left:122.050667pt;}
.x4a_c00339{left:123.309333pt;}
.x6c_c00339{left:124.686667pt;}
.x38_c00339{left:127.042080pt;}
.xf_c00339{left:129.292640pt;}
.x6e_c00339{left:130.554667pt;}
.x58_c00339{left:132.561333pt;}
.x52_c00339{left:136.234667pt;}
.x66_c00339{left:137.996000pt;}
.x1c_c00339{left:139.352820pt;}
.x24_c00339{left:142.447167pt;}
.x10_c00339{left:147.533973pt;}
.x78_c00339{left:149.016000pt;}
.x2e_c00339{left:150.012053pt;}
.x4c_c00339{left:151.074667pt;}
.x1_c00339{left:152.640000pt;}
.x3f_c00339{left:154.800000pt;}
.x5_c00339{left:155.868000pt;}
.x56_c00339{left:157.766667pt;}
.x59_c00339{left:159.742667pt;}
.x61_c00339{left:162.116000pt;}
.x28_c00339{left:163.081740pt;}
.x39_c00339{left:164.977113pt;}
.x64_c00339{left:166.918667pt;}
.x4d_c00339{left:168.426667pt;}
.x11_c00339{left:171.055307pt;}
.x1d_c00339{left:173.420007pt;}
.x2f_c00339{left:175.455107pt;}
.x7b_c00339{left:176.906667pt;}
.x6f_c00339{left:178.314667pt;}
.x34_c00339{left:181.076720pt;}
.x6_c00339{left:182.078667pt;}
.x1e_c00339{left:184.718833pt;}
.x16_c00339{left:188.279787pt;}
.xc_c00339{left:195.267873pt;}
.x46_c00339{left:198.090667pt;}
.x3a_c00339{left:200.065360pt;}
.x35_c00339{left:201.729960pt;}
.x5a_c00339{left:206.546667pt;}
.x62_c00339{left:207.713333pt;}
.x29_c00339{left:209.601873pt;}
.x1f_c00339{left:211.596567pt;}
.x65_c00339{left:213.718667pt;}
.x47_c00339{left:215.424000pt;}
.x3b_c00339{left:217.767493pt;}
.x30_c00339{left:218.659493pt;}
.xd_c00339{left:219.562540pt;}
.x79_c00339{left:220.514667pt;}
.x5e_c00339{left:222.954667pt;}
.x12_c00339{left:224.555307pt;}
.x17_c00339{left:225.998260pt;}
.x2a_c00339{left:227.412267pt;}
.x77_c00339{left:229.629333pt;}
.x7_c00339{left:232.688000pt;}
.x25_c00339{left:234.159287pt;}
.x3c_c00339{left:235.596293pt;}
.x7c_c00339{left:236.911283pt;}
.x40_c00339{left:238.080000pt;}
.x57_c00339{left:242.250667pt;}
.x53_c00339{left:244.744000pt;}
.x6d_c00339{left:245.729333pt;}
.x18_c00339{left:247.122900pt;}
.x20_c00339{left:248.577127pt;}
.x67_c00339{left:250.556000pt;}
.x36_c00339{left:252.134313pt;}
.x8_c00339{left:253.386667pt;}
.x7a_c00339{left:256.814667pt;}
.x31_c00339{left:259.944773pt;}
.x73_c00339{left:261.089333pt;}
.x4e_c00339{left:262.260000pt;}
.x5c_c00339{left:264.824000pt;}
.x48_c00339{left:266.777333pt;}
.x2b_c00339{left:269.660140pt;}
.x9_c00339{left:271.158667pt;}
.x75_c00339{left:274.478667pt;}
.x5b_c00339{left:277.346667pt;}
.x4f_c00339{left:278.824000pt;}
.x32_c00339{left:283.707447pt;}
.x13_c00339{left:286.521973pt;}
.x21_c00339{left:289.384413pt;}
.x5f_c00339{left:290.394667pt;}
.x19_c00339{left:292.981613pt;}
.x41_c00339{left:294.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00340 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00340 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00340 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00340 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00340.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00340{transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014020,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.040155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040155,0.000000,0.000000,0.250000,0,0);}
.m8e_c00340{transform:matrix(0.042560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042560,0.000000,0.000000,0.250000,0,0);}
.m9f_c00340{transform:matrix(0.056905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056905,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.059615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059615,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.083140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083140,0.000000,0.000000,0.250000,0,0);}
.m75_c00340{transform:matrix(0.143270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143270,0.000000,0.000000,0.250000,0,0);}
.mbd_c00340{transform:matrix(0.147957,0.001923,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147957,0.001923,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147957,0.001923,-0.003250,0.249979,0,0);}
.mbb_c00340{transform:matrix(0.149802,0.001947,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149802,0.001947,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149802,0.001947,-0.003250,0.249979,0,0);}
.me4_c00340{transform:matrix(0.152044,0.001825,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152044,0.001825,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152044,0.001825,-0.003000,0.249982,0,0);}
.mb1_c00340{transform:matrix(0.152467,0.001982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.152467,0.001982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.152467,0.001982,-0.003250,0.249979,0,0);}
.mad_c00340{transform:matrix(0.154312,0.002006,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154312,0.002006,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154312,0.002006,-0.003250,0.249979,0,0);}
.m12_c00340{transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154770,0.000000,0.000000,0.250000,0,0);}
.mb2_c00340{transform:matrix(0.155112,0.002016,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155112,0.002016,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155112,0.002016,-0.003250,0.249979,0,0);}
.m55_c00340{transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155470,0.000000,0.000000,0.250000,0,0);}
.m7d_c00340{transform:matrix(0.155605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155605,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156345,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00340{transform:matrix(0.158512,0.002061,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158512,0.002061,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158512,0.002061,-0.003250,0.249979,0,0);}
.mc_c00340{transform:matrix(0.158520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158520,0.000000,0.000000,0.250000,0,0);}
.me7_c00340{transform:matrix(0.160193,0.001922,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160193,0.001922,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160193,0.001922,-0.003000,0.249982,0,0);}
.m78_c00340{transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);}
.ma0_c00340{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m56_c00340{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.ma5_c00340{transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);}
.mfe_c00340{transform:matrix(0.162743,0.001953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162743,0.001953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162743,0.001953,-0.003000,0.249982,0,0);}
.m45_c00340{transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163820,0.000000,0.000000,0.250000,0,0);}
.md9_c00340{transform:matrix(0.164093,0.001969,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164093,0.001969,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164093,0.001969,-0.003000,0.249982,0,0);}
.mca_c00340{transform:matrix(0.164463,0.001974,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164463,0.001974,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164463,0.001974,-0.003000,0.249982,0,0);}
.md5_c00340{transform:matrix(0.164703,0.001976,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164703,0.001976,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164703,0.001976,-0.003000,0.249982,0,0);}
.m33_c00340{transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);}
.m64_c00340{transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.mc5_c00340{transform:matrix(0.167113,0.002005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167113,0.002005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167113,0.002005,-0.003000,0.249982,0,0);}
.ma9_c00340{transform:matrix(0.167816,0.002182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167816,0.002182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167816,0.002182,-0.003250,0.249979,0,0);}
.m84_c00340{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169015,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169795,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169935,0.000000,0.000000,0.250000,0,0);}
.m94_c00340{transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);}
.m66_c00340{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00340{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00340{transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170331,0.002214,-0.003250,0.249979,0,0);}
.me6_c00340{transform:matrix(0.170548,0.002047,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170548,0.002047,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170548,0.002047,-0.003000,0.249982,0,0);}
.m5a_c00340{transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171395,0.000000,0.000000,0.250000,0,0);}
.mac_c00340{transform:matrix(0.171441,0.002229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171441,0.002229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171441,0.002229,-0.003250,0.249979,0,0);}
.mea_c00340{transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);}
.ma6_c00340{transform:matrix(0.172880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172880,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174405,0.000000,0.000000,0.250000,0,0);}
.m7b_c00340{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00340{transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);}
.m60_c00340{transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);}
.m59_c00340{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00340{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.mc1_c00340{transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);}
.m14_c00340{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m69_c00340{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.m62_c00340{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m57_c00340{transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179860,0.000000,0.000000,0.250000,0,0);}
.m5c_c00340{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.maa_c00340{transform:matrix(0.180550,0.002347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180550,0.002347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180550,0.002347,-0.003250,0.249979,0,0);}
.m4e_c00340{transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);}
.mef_c00340{transform:matrix(0.180947,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180947,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180947,0.002171,-0.003000,0.249982,0,0);}
.m2b_c00340{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.mee_c00340{transform:matrix(0.181377,0.002177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181377,0.002177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181377,0.002177,-0.003000,0.249982,0,0);}
.mce_c00340{transform:matrix(0.181572,0.002179,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181572,0.002179,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181572,0.002179,-0.003000,0.249982,0,0);}
.m9d_c00340{transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181695,0.000000,0.000000,0.250000,0,0);}
.m4a_c00340{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m65_c00340{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00340{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.mbe_c00340{transform:matrix(0.182660,0.002375,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182660,0.002375,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182660,0.002375,-0.003250,0.249979,0,0);}
.m48_c00340{transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);}
.mc8_c00340{transform:matrix(0.183322,0.002200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183322,0.002200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183322,0.002200,-0.003000,0.249982,0,0);}
.m79_c00340{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.mff_c00340{transform:matrix(0.183427,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183427,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183427,0.002201,-0.003000,0.249982,0,0);}
.m73_c00340{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.m52_c00340{transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183865,0.000000,0.000000,0.250000,0,0);}
.mbc_c00340{transform:matrix(0.184034,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184034,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184034,0.002392,-0.003250,0.249979,0,0);}
.ma_c00340{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.mb3_c00340{transform:matrix(0.184224,0.002395,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184224,0.002395,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184224,0.002395,-0.003250,0.249979,0,0);}
.md7_c00340{transform:matrix(0.184252,0.002211,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184252,0.002211,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184252,0.002211,-0.003000,0.249982,0,0);}
.m80_c00340{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m27_c00340{transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00340{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m9a_c00340{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m87_c00340{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00340{transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);}
.m81_c00340{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.mc7_c00340{transform:matrix(0.186917,0.002243,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186917,0.002243,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186917,0.002243,-0.003000,0.249982,0,0);}
.mb8_c00340{transform:matrix(0.187109,0.002432,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187109,0.002432,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187109,0.002432,-0.003250,0.249979,0,0);}
.ma7_c00340{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.me8_c00340{transform:matrix(0.187551,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187551,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187551,0.002251,-0.003000,0.249982,0,0);}
.m88_c00340{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.ma1_c00340{transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m97_c00340{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m6f_c00340{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.meb_c00340{transform:matrix(0.190266,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190266,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190266,0.002283,-0.003000,0.249982,0,0);}
.m2f_c00340{transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);}
.m89_c00340{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m67_c00340{transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);}
.m76_c00340{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m58_c00340{transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);}
.mf2_c00340{transform:matrix(0.193531,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193531,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193531,0.002322,-0.003000,0.249982,0,0);}
.ma8_c00340{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.mb4_c00340{transform:matrix(0.193649,0.002517,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193649,0.002517,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193649,0.002517,-0.003250,0.249979,0,0);}
.ma3_c00340{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.mdb_c00340{transform:matrix(0.195606,0.002347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195606,0.002347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195606,0.002347,-0.003000,0.249982,0,0);}
.mf_c00340{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.me9_c00340{transform:matrix(0.196801,0.002362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196801,0.002362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196801,0.002362,-0.003000,0.249982,0,0);}
.mab_c00340{transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);}
.m3d_c00340{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m82_c00340{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.md3_c00340{transform:matrix(0.198541,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198541,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198541,0.002382,-0.003000,0.249982,0,0);}
.mec_c00340{transform:matrix(0.198816,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198816,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198816,0.002386,-0.003000,0.249982,0,0);}
.m63_c00340{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mc0_c00340{transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200948,0.002612,-0.003250,0.249979,0,0);}
.mf4_c00340{transform:matrix(0.201071,0.002413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201071,0.002413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201071,0.002413,-0.003000,0.249982,0,0);}
.m16_c00340{transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201080,0.000000,0.000000,0.250000,0,0);}
.m7f_c00340{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.md8_c00340{transform:matrix(0.201605,0.002419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201605,0.002419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201605,0.002419,-0.003000,0.249982,0,0);}
.mb5_c00340{transform:matrix(0.201718,0.002622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201718,0.002622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201718,0.002622,-0.003250,0.249979,0,0);}
.ma2_c00340{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.mda_c00340{transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);}
.m24_c00340{transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203230,0.000000,0.000000,0.250000,0,0);}
.m92_c00340{transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);}
.me1_c00340{transform:matrix(0.203905,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203905,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203905,0.002447,-0.003000,0.249982,0,0);}
.mc9_c00340{transform:matrix(0.204540,0.002454,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204540,0.002454,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204540,0.002454,-0.003000,0.249982,0,0);}
.maf_c00340{transform:matrix(0.204678,0.002661,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204678,0.002661,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204678,0.002661,-0.003250,0.249979,0,0);}
.m19_c00340{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m99_c00340{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.mcb_c00340{transform:matrix(0.205290,0.002463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205290,0.002463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205290,0.002463,-0.003000,0.249982,0,0);}
.m5e_c00340{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m9e_c00340{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.m68_c00340{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206735,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);}
.m5f_c00340{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m85_c00340{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.mf8_c00340{transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);}
.m49_c00340{transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207285,0.000000,0.000000,0.250000,0,0);}
.mc2_c00340{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m90_c00340{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m8b_c00340{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.me3_c00340{transform:matrix(0.209520,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209520,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209520,0.002514,-0.003000,0.249982,0,0);}
.m17_c00340{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m5b_c00340{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.md0_c00340{transform:matrix(0.209700,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209700,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209700,0.002516,-0.003000,0.249982,0,0);}
.m86_c00340{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.me5_c00340{transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);}
.m6d_c00340{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00340{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211005,0.000000,0.000000,0.250000,0,0);}
.m77_c00340{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.mbf_c00340{transform:matrix(0.211337,0.002747,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211337,0.002747,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211337,0.002747,-0.003250,0.249979,0,0);}
.mae_c00340{transform:matrix(0.212252,0.002759,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212252,0.002759,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212252,0.002759,-0.003250,0.249979,0,0);}
.m7c_c00340{transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);}
.m9c_c00340{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);}
.mfd_c00340{transform:matrix(0.213420,0.002561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213420,0.002561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213420,0.002561,-0.003000,0.249982,0,0);}
.md6_c00340{transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);}
.mcd_c00340{transform:matrix(0.214425,0.002573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214425,0.002573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214425,0.002573,-0.003000,0.249982,0,0);}
.mfc_c00340{transform:matrix(0.214675,0.002576,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214675,0.002576,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214675,0.002576,-0.003000,0.249982,0,0);}
.m34_c00340{transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);}
.m95_c00340{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00340{transform:matrix(0.215222,0.002798,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215222,0.002798,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215222,0.002798,-0.003250,0.249979,0,0);}
.md2_c00340{transform:matrix(0.215419,0.002585,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215419,0.002585,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215419,0.002585,-0.003000,0.249982,0,0);}
.m3e_c00340{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.mc6_c00340{transform:matrix(0.216699,0.002600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216699,0.002600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216699,0.002600,-0.003000,0.249982,0,0);}
.mfb_c00340{transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);}
.m6b_c00340{transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);}
.m5d_c00340{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m53_c00340{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00340{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.mde_c00340{transform:matrix(0.220274,0.002643,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220274,0.002643,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220274,0.002643,-0.003000,0.249982,0,0);}
.mfa_c00340{transform:matrix(0.221094,0.002653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221094,0.002653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221094,0.002653,-0.003000,0.249982,0,0);}
.m98_c00340{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.mf0_c00340{transform:matrix(0.222004,0.002664,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222004,0.002664,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222004,0.002664,-0.003000,0.249982,0,0);}
.me2_c00340{transform:matrix(0.222994,0.002676,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222994,0.002676,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222994,0.002676,-0.003000,0.249982,0,0);}
.mf5_c00340{transform:matrix(0.224039,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224039,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224039,0.002688,-0.003000,0.249982,0,0);}
.m7a_c00340{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.m6e_c00340{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);}
.me0_c00340{transform:matrix(0.228889,0.002747,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228889,0.002747,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228889,0.002747,-0.003000,0.249982,0,0);}
.md1_c00340{transform:matrix(0.230218,0.002763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230218,0.002763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230218,0.002763,-0.003000,0.249982,0,0);}
.m96_c00340{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m44_c00340{transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);}
.m74_c00340{transform:matrix(0.234135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234135,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);}
.m41_c00340{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.mf9_c00340{transform:matrix(0.238378,0.002861,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238378,0.002861,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238378,0.002861,-0.003000,0.249982,0,0);}
.mdf_c00340{transform:matrix(0.239408,0.002873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239408,0.002873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239408,0.002873,-0.003000,0.249982,0,0);}
.m71_c00340{transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);}
.mb0_c00340{transform:matrix(0.240320,0.003124,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240320,0.003124,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240320,0.003124,-0.003250,0.249979,0,0);}
.md4_c00340{transform:matrix(0.244147,0.002930,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244147,0.002930,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244147,0.002930,-0.003000,0.249982,0,0);}
.mc4_c00340{transform:matrix(0.244507,0.002934,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244507,0.002934,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244507,0.002934,-0.003000,0.249982,0,0);}
.mf3_c00340{transform:matrix(0.244812,0.002938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244812,0.002938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244812,0.002938,-0.003000,0.249982,0,0);}
.m72_c00340{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.mf7_c00340{transform:matrix(0.246082,0.002953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246082,0.002953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246082,0.002953,-0.003000,0.249982,0,0);}
.m93_c00340{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.mf6_c00340{transform:matrix(0.246862,0.002962,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246862,0.002962,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246862,0.002962,-0.003000,0.249982,0,0);}
.m6c_c00340{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.mdd_c00340{transform:matrix(0.252982,0.003036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252982,0.003036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252982,0.003036,-0.003000,0.249982,0,0);}
.m70_c00340{transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.255535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255535,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00340{transform:matrix(0.265236,0.003183,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265236,0.003183,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265236,0.003183,-0.003000,0.249982,0,0);}
.m91_c00340{transform:matrix(0.266405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266405,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.mc3_c00340{transform:matrix(0.269036,0.003228,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269036,0.003228,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269036,0.003228,-0.003000,0.249982,0,0);}
.mcc_c00340{transform:matrix(0.271375,0.003257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271375,0.003257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271375,0.003257,-0.003000,0.249982,0,0);}
.m20_c00340{transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279170,0.000000,0.000000,0.250000,0,0);}
.m31_c00340{transform:matrix(0.284890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284890,0.000000,0.000000,0.250000,0,0);}
.mba_c00340{transform:matrix(0.308794,0.004014,-0.003250,0.249979,0,0);-ms-transform:matrix(0.308794,0.004014,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.308794,0.004014,-0.003250,0.249979,0,0);}
.mf1_c00340{transform:matrix(0.371918,0.004463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.371918,0.004463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.371918,0.004463,-0.003000,0.249982,0,0);}
.med_c00340{transform:matrix(0.942932,0.011315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.942932,0.011315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.942932,0.011315,-0.003000,0.249982,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:0.000000px;}
.fc0_c00340{color:transparent;}
.fs14_c00340{font-size:52.503780px;}
.fsa_c00340{font-size:54.600000px;}
.fs7_c00340{font-size:55.650000px;}
.fs12_c00340{font-size:55.654007px;}
.fse_c00340{font-size:57.750000px;}
.fs10_c00340{font-size:57.754158px;}
.fs5_c00340{font-size:59.850000px;}
.fsf_c00340{font-size:59.854309px;}
.fsc_c00340{font-size:59.855057px;}
.fs4_c00340{font-size:60.900000px;}
.fs13_c00340{font-size:60.904385px;}
.fs6_c00340{font-size:61.950000px;}
.fs15_c00340{font-size:61.954460px;}
.fsb_c00340{font-size:63.000000px;}
.fs1_c00340{font-size:64.050000px;}
.fs9_c00340{font-size:65.100000px;}
.fs11_c00340{font-size:66.154763px;}
.fsd_c00340{font-size:66.155589px;}
.fs8_c00340{font-size:67.200000px;}
.fs2_c00340{font-size:69.300000px;}
.fs3_c00340{font-size:70.350000px;}
.fs0_c00340{font-size:85.050000px;}
.y0_c00340{bottom:0.000000px;}
.y75_c00340{bottom:12.857406px;}
.y74_c00340{bottom:12.857622px;}
.y73_c00340{bottom:12.858126px;}
.y72_c00340{bottom:28.434984px;}
.y71_c00340{bottom:28.872498px;}
.y70_c00340{bottom:29.556108px;}
.y6f_c00340{bottom:30.492012px;}
.y6e_c00340{bottom:30.868494px;}
.y6d_c00340{bottom:31.836120px;}
.y6c_c00340{bottom:32.123520px;}
.y6b_c00340{bottom:44.059920px;}
.y6a_c00340{bottom:44.456556px;}
.y69_c00340{bottom:45.333138px;}
.y68_c00340{bottom:45.862776px;}
.y67_c00340{bottom:46.140708px;}
.y66_c00340{bottom:47.217426px;}
.y65_c00340{bottom:47.572410px;}
.y64_c00340{bottom:47.922888px;}
.y63_c00340{bottom:48.868140px;}
.y5a_c00340{bottom:63.955608px;}
.y5b_c00340{bottom:63.955986px;}
.y5d_c00340{bottom:63.956358px;}
.y5c_c00340{bottom:63.956580px;}
.y5e_c00340{bottom:63.956856px;}
.y60_c00340{bottom:63.957468px;}
.y5f_c00340{bottom:63.957492px;}
.y62_c00340{bottom:63.957822px;}
.y61_c00340{bottom:63.957846px;}
.y59_c00340{bottom:79.068402px;}
.y57_c00340{bottom:79.068450px;}
.y56_c00340{bottom:79.068654px;}
.y55_c00340{bottom:79.068978px;}
.y58_c00340{bottom:79.069128px;}
.y52_c00340{bottom:79.069326px;}
.y54_c00340{bottom:79.069524px;}
.y53_c00340{bottom:79.069926px;}
.y51_c00340{bottom:94.292436px;}
.y50_c00340{bottom:94.762020px;}
.y4f_c00340{bottom:95.138940px;}
.y4e_c00340{bottom:95.324466px;}
.y4d_c00340{bottom:96.081348px;}
.y4c_c00340{bottom:96.698004px;}
.y4b_c00340{bottom:97.045638px;}
.y4a_c00340{bottom:98.010036px;}
.y46_c00340{bottom:114.140388px;}
.y45_c00340{bottom:114.140772px;}
.y47_c00340{bottom:114.140844px;}
.y44_c00340{bottom:114.140934px;}
.y42_c00340{bottom:114.141144px;}
.y49_c00340{bottom:114.141318px;}
.y48_c00340{bottom:114.141342px;}
.y43_c00340{bottom:114.141660px;}
.y41_c00340{bottom:130.756338px;}
.y40_c00340{bottom:131.046984px;}
.y3f_c00340{bottom:131.300154px;}
.y3e_c00340{bottom:131.488056px;}
.y3d_c00340{bottom:131.801616px;}
.y3c_c00340{bottom:132.547536px;}
.y3b_c00340{bottom:132.764022px;}
.y3a_c00340{bottom:133.656048px;}
.y39_c00340{bottom:133.920000px;}
.y38_c00340{bottom:149.446500px;}
.y37_c00340{bottom:164.896524px;}
.y36_c00340{bottom:165.272250px;}
.y35_c00340{bottom:166.089651px;}
.y34_c00340{bottom:166.974873px;}
.y33_c00340{bottom:167.251461px;}
.y32_c00340{bottom:167.693818px;}
.y31_c00340{bottom:168.041464px;}
.y30_c00340{bottom:168.491934px;}
.y2f_c00340{bottom:182.582463px;}
.y2d_c00340{bottom:182.582625px;}
.y2e_c00340{bottom:182.583163px;}
.y2b_c00340{bottom:182.583207px;}
.y2a_c00340{bottom:182.583228px;}
.y28_c00340{bottom:182.583229px;}
.y2c_c00340{bottom:182.583236px;}
.y29_c00340{bottom:182.583669px;}
.y27_c00340{bottom:182.583870px;}
.y26_c00340{bottom:198.514641px;}
.y25_c00340{bottom:199.111204px;}
.y24_c00340{bottom:199.939038px;}
.y23_c00340{bottom:200.195014px;}
.y22_c00340{bottom:200.406414px;}
.y21_c00340{bottom:201.238401px;}
.y20_c00340{bottom:201.807021px;}
.y1f_c00340{bottom:201.961500px;}
.y1e_c00340{bottom:216.322500px;}
.y1d_c00340{bottom:231.577500px;}
.y1c_c00340{bottom:232.297500px;}
.y1b_c00340{bottom:232.918500px;}
.y1a_c00340{bottom:233.415000px;}
.y19_c00340{bottom:233.601000px;}
.y18_c00340{bottom:233.995500px;}
.y17_c00340{bottom:234.301500px;}
.y16_c00340{bottom:234.519000px;}
.y15_c00340{bottom:234.901500px;}
.y14_c00340{bottom:250.642500px;}
.y13_c00340{bottom:268.248000px;}
.y12_c00340{bottom:286.000500px;}
.y11_c00340{bottom:302.961000px;}
.y10_c00340{bottom:319.995000px;}
.yf_c00340{bottom:337.522500px;}
.ye_c00340{bottom:353.646000px;}
.yd_c00340{bottom:369.652500px;}
.yc_c00340{bottom:386.206500px;}
.yb_c00340{bottom:403.038000px;}
.ya_c00340{bottom:419.247000px;}
.y9_c00340{bottom:435.754500px;}
.y8_c00340{bottom:452.665500px;}
.y7_c00340{bottom:470.560500px;}
.y6_c00340{bottom:487.201500px;}
.y5_c00340{bottom:504.589500px;}
.y4_c00340{bottom:522.916500px;}
.y3_c00340{bottom:538.894500px;}
.y2_c00340{bottom:556.543500px;}
.y1_c00340{bottom:569.016000px;}
.h16_c00340{height:52.503780px;}
.hc_c00340{height:54.600000px;}
.h9_c00340{height:55.650000px;}
.h14_c00340{height:55.654007px;}
.h10_c00340{height:57.750000px;}
.h12_c00340{height:57.754158px;}
.h7_c00340{height:59.850000px;}
.h11_c00340{height:59.854309px;}
.he_c00340{height:59.855057px;}
.h6_c00340{height:60.900000px;}
.h15_c00340{height:60.904385px;}
.h8_c00340{height:61.950000px;}
.h17_c00340{height:61.954460px;}
.hd_c00340{height:63.000000px;}
.h3_c00340{height:64.050000px;}
.hb_c00340{height:65.100000px;}
.h13_c00340{height:66.154763px;}
.hf_c00340{height:66.155589px;}
.ha_c00340{height:67.200000px;}
.h4_c00340{height:69.300000px;}
.h5_c00340{height:70.350000px;}
.h2_c00340{height:85.050000px;}
.h0_c00340{height:613.170000px;}
.h1_c00340{height:613.500000px;}
.w0_c00340{width:359.100000px;}
.w1_c00340{width:359.250000px;}
.x0_c00340{left:0.000000px;}
.x3_c00340{left:8.640000px;}
.x1a_c00340{left:10.800000px;}
.x37_c00340{left:12.420000px;}
.xd_c00340{left:17.010000px;}
.x22_c00340{left:18.360000px;}
.x4_c00340{left:19.980000px;}
.x5e_c00340{left:21.330000px;}
.x64_c00340{left:22.537500px;}
.x77_c00340{left:24.024000px;}
.x5_c00340{left:25.380000px;}
.x48_c00340{left:27.000000px;}
.x6a_c00340{left:29.157000px;}
.x2e_c00340{left:31.590000px;}
.x23_c00340{left:37.530000px;}
.x85_c00340{left:38.719734px;}
.x7d_c00340{left:41.582922px;}
.x38_c00340{left:43.470000px;}
.x33_c00340{left:45.090000px;}
.x70_c00340{left:46.173433px;}
.x1b_c00340{left:47.790000px;}
.x80_c00340{left:54.273408px;}
.x74_c00340{left:56.891233px;}
.x49_c00340{left:58.050000px;}
.x71_c00340{left:61.834585px;}
.x42_c00340{left:63.180000px;}
.x12_c00340{left:65.070000px;}
.x28_c00340{left:68.040000px;}
.x7e_c00340{left:70.745616px;}
.x59_c00340{left:72.900000px;}
.x5f_c00340{left:74.250000px;}
.x65_c00340{left:77.088000px;}
.x3d_c00340{left:78.570000px;}
.x52_c00340{left:79.650000px;}
.x87_c00340{left:80.736126px;}
.xe_c00340{left:82.350000px;}
.x4a_c00340{left:83.430000px;}
.x39_c00340{left:85.860000px;}
.x29_c00340{left:87.210000px;}
.x4f_c00340{left:88.560000px;}
.x13_c00340{left:90.450000px;}
.x5a_c00340{left:91.800000px;}
.x60_c00340{left:94.230000px;}
.x43_c00340{left:97.470000px;}
.x72_c00340{left:101.798332px;}
.x55_c00340{left:103.950000px;}
.x3a_c00340{left:105.030000px;}
.x34_c00340{left:110.160000px;}
.x44_c00340{left:114.480000px;}
.x14_c00340{left:116.100000px;}
.x6_c00340{left:117.450000px;}
.x6b_c00340{left:119.607000px;}
.x2f_c00340{left:121.230000px;}
.x81_c00340{left:122.858790px;}
.x7b_c00340{left:125.925072px;}
.x56_c00340{left:129.060000px;}
.x73_c00340{left:130.420168px;}
.x79_c00340{left:132.307776px;}
.x1_c00340{left:133.920000px;}
.x7_c00340{left:137.700000px;}
.x30_c00340{left:139.590000px;}
.x66_c00340{left:140.859000px;}
.x82_c00340{left:143.380242px;}
.x24_c00340{left:147.150000px;}
.x45_c00340{left:149.310000px;}
.x4b_c00340{left:152.550000px;}
.x35_c00340{left:154.980000px;}
.x63_c00340{left:157.140000px;}
.x15_c00340{left:160.110000px;}
.x6d_c00340{left:162.477000px;}
.x2a_c00340{left:164.160000px;}
.x1c_c00340{left:165.240000px;}
.x16_c00340{left:167.130000px;}
.x53_c00340{left:168.480000px;}
.x46_c00340{left:170.100000px;}
.x8_c00340{left:176.310000px;}
.x25_c00340{left:179.550000px;}
.x5b_c00340{left:180.630000px;}
.x6e_c00340{left:182.167500px;}
.xf_c00340{left:183.870000px;}
.x1d_c00340{left:185.760000px;}
.x3e_c00340{left:189.810000px;}
.x31_c00340{left:193.590000px;}
.x9_c00340{left:195.750000px;}
.x3b_c00340{left:197.370000px;}
.x17_c00340{left:200.880000px;}
.x67_c00340{left:202.894500px;}
.x75_c00340{left:207.030733px;}
.x86_c00340{left:209.914578px;}
.x57_c00340{left:211.140000px;}
.x10_c00340{left:212.490000px;}
.x7f_c00340{left:213.855708px;}
.x2b_c00340{left:217.890000px;}
.x84_c00340{left:221.978112px;}
.x7c_c00340{left:224.009214px;}
.x1e_c00340{left:226.260000px;}
.x4c_c00340{left:228.150000px;}
.x3c_c00340{left:233.550000px;}
.x50_c00340{left:236.250000px;}
.x2c_c00340{left:237.330000px;}
.x26_c00340{left:238.680000px;}
.x11_c00340{left:240.030000px;}
.x78_c00340{left:242.344500px;}
.x5c_c00340{left:244.620000px;}
.x1f_c00340{left:246.780000px;}
.x36_c00340{left:247.860000px;}
.x4d_c00340{left:249.480000px;}
.x3f_c00340{left:251.370000px;}
.x83_c00340{left:254.897316px;}
.x2d_c00340{left:255.960000px;}
.x61_c00340{left:257.040000px;}
.x27_c00340{left:258.120000px;}
.x68_c00340{left:259.332000px;}
.x7a_c00340{left:261.917442px;}
.x20_c00340{left:263.250000px;}
.x2_c00340{left:264.870000px;}
.x18_c00340{left:267.300000px;}
.x51_c00340{left:268.650000px;}
.x40_c00340{left:270.270000px;}
.xa_c00340{left:271.620000px;}
.x58_c00340{left:275.670000px;}
.x47_c00340{left:277.560000px;}
.x19_c00340{left:283.770000px;}
.x5d_c00340{left:286.200000px;}
.x62_c00340{left:288.630000px;}
.x6f_c00340{left:291.736500px;}
.x41_c00340{left:294.300000px;}
.xb_c00340{left:297.270000px;}
.x76_c00340{left:298.809733px;}
.x32_c00340{left:299.970000px;}
.x54_c00340{left:301.590000px;}
.x6c_c00340{left:303.207000px;}
.x4e_c00340{left:307.800000px;}
.xc_c00340{left:316.710000px;}
.x21_c00340{left:319.410000px;}
.x69_c00340{left:324.768000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.fs14_c00340{font-size:46.670027pt;}
.fsa_c00340{font-size:48.533333pt;}
.fs7_c00340{font-size:49.466667pt;}
.fs12_c00340{font-size:49.470228pt;}
.fse_c00340{font-size:51.333333pt;}
.fs10_c00340{font-size:51.337029pt;}
.fs5_c00340{font-size:53.200000pt;}
.fsf_c00340{font-size:53.203830pt;}
.fsc_c00340{font-size:53.204495pt;}
.fs4_c00340{font-size:54.133333pt;}
.fs13_c00340{font-size:54.137231pt;}
.fs6_c00340{font-size:55.066667pt;}
.fs15_c00340{font-size:55.070631pt;}
.fsb_c00340{font-size:56.000000pt;}
.fs1_c00340{font-size:56.933333pt;}
.fs9_c00340{font-size:57.866667pt;}
.fs11_c00340{font-size:58.804233pt;}
.fsd_c00340{font-size:58.804968pt;}
.fs8_c00340{font-size:59.733333pt;}
.fs2_c00340{font-size:61.600000pt;}
.fs3_c00340{font-size:62.533333pt;}
.fs0_c00340{font-size:75.600000pt;}
.y0_c00340{bottom:0.000000pt;}
.y75_c00340{bottom:11.428805pt;}
.y74_c00340{bottom:11.428997pt;}
.y73_c00340{bottom:11.429445pt;}
.y72_c00340{bottom:25.275541pt;}
.y71_c00340{bottom:25.664443pt;}
.y70_c00340{bottom:26.272096pt;}
.y6f_c00340{bottom:27.104011pt;}
.y6e_c00340{bottom:27.438661pt;}
.y6d_c00340{bottom:28.298773pt;}
.y6c_c00340{bottom:28.554240pt;}
.y6b_c00340{bottom:39.164373pt;}
.y6a_c00340{bottom:39.516939pt;}
.y69_c00340{bottom:40.296123pt;}
.y68_c00340{bottom:40.766912pt;}
.y67_c00340{bottom:41.013963pt;}
.y66_c00340{bottom:41.971045pt;}
.y65_c00340{bottom:42.286587pt;}
.y64_c00340{bottom:42.598123pt;}
.y63_c00340{bottom:43.438347pt;}
.y5a_c00340{bottom:56.849429pt;}
.y5b_c00340{bottom:56.849765pt;}
.y5d_c00340{bottom:56.850096pt;}
.y5c_c00340{bottom:56.850293pt;}
.y5e_c00340{bottom:56.850539pt;}
.y60_c00340{bottom:56.851083pt;}
.y5f_c00340{bottom:56.851104pt;}
.y62_c00340{bottom:56.851397pt;}
.y61_c00340{bottom:56.851419pt;}
.y59_c00340{bottom:70.283024pt;}
.y57_c00340{bottom:70.283067pt;}
.y56_c00340{bottom:70.283248pt;}
.y55_c00340{bottom:70.283536pt;}
.y58_c00340{bottom:70.283669pt;}
.y52_c00340{bottom:70.283845pt;}
.y54_c00340{bottom:70.284021pt;}
.y53_c00340{bottom:70.284379pt;}
.y51_c00340{bottom:83.815499pt;}
.y50_c00340{bottom:84.232907pt;}
.y4f_c00340{bottom:84.567947pt;}
.y4e_c00340{bottom:84.732859pt;}
.y4d_c00340{bottom:85.405643pt;}
.y4c_c00340{bottom:85.953781pt;}
.y4b_c00340{bottom:86.262789pt;}
.y4a_c00340{bottom:87.120032pt;}
.y46_c00340{bottom:101.458123pt;}
.y45_c00340{bottom:101.458464pt;}
.y47_c00340{bottom:101.458528pt;}
.y44_c00340{bottom:101.458608pt;}
.y42_c00340{bottom:101.458795pt;}
.y49_c00340{bottom:101.458949pt;}
.y48_c00340{bottom:101.458971pt;}
.y43_c00340{bottom:101.459253pt;}
.y41_c00340{bottom:116.227856pt;}
.y40_c00340{bottom:116.486208pt;}
.y3f_c00340{bottom:116.711248pt;}
.y3e_c00340{bottom:116.878272pt;}
.y3d_c00340{bottom:117.156992pt;}
.y3c_c00340{bottom:117.820032pt;}
.y3b_c00340{bottom:118.012464pt;}
.y3a_c00340{bottom:118.805376pt;}
.y39_c00340{bottom:119.040000pt;}
.y38_c00340{bottom:132.841333pt;}
.y37_c00340{bottom:146.574688pt;}
.y36_c00340{bottom:146.908667pt;}
.y35_c00340{bottom:147.635245pt;}
.y34_c00340{bottom:148.422109pt;}
.y33_c00340{bottom:148.667965pt;}
.y32_c00340{bottom:149.061172pt;}
.y31_c00340{bottom:149.370191pt;}
.y30_c00340{bottom:149.770608pt;}
.y2f_c00340{bottom:162.295523pt;}
.y2d_c00340{bottom:162.295667pt;}
.y2e_c00340{bottom:162.296145pt;}
.y2b_c00340{bottom:162.296184pt;}
.y2a_c00340{bottom:162.296203pt;}
.y28_c00340{bottom:162.296204pt;}
.y2c_c00340{bottom:162.296209pt;}
.y29_c00340{bottom:162.296595pt;}
.y27_c00340{bottom:162.296773pt;}
.y26_c00340{bottom:176.457459pt;}
.y25_c00340{bottom:176.987737pt;}
.y24_c00340{bottom:177.723589pt;}
.y23_c00340{bottom:177.951124pt;}
.y22_c00340{bottom:178.139035pt;}
.y21_c00340{bottom:178.878579pt;}
.y20_c00340{bottom:179.384019pt;}
.y1f_c00340{bottom:179.521333pt;}
.y1e_c00340{bottom:192.286667pt;}
.y1d_c00340{bottom:205.846667pt;}
.y1c_c00340{bottom:206.486667pt;}
.y1b_c00340{bottom:207.038667pt;}
.y1a_c00340{bottom:207.480000pt;}
.y19_c00340{bottom:207.645333pt;}
.y18_c00340{bottom:207.996000pt;}
.y17_c00340{bottom:208.268000pt;}
.y16_c00340{bottom:208.461333pt;}
.y15_c00340{bottom:208.801333pt;}
.y14_c00340{bottom:222.793333pt;}
.y13_c00340{bottom:238.442667pt;}
.y12_c00340{bottom:254.222667pt;}
.y11_c00340{bottom:269.298667pt;}
.y10_c00340{bottom:284.440000pt;}
.yf_c00340{bottom:300.020000pt;}
.ye_c00340{bottom:314.352000pt;}
.yd_c00340{bottom:328.580000pt;}
.yc_c00340{bottom:343.294667pt;}
.yb_c00340{bottom:358.256000pt;}
.ya_c00340{bottom:372.664000pt;}
.y9_c00340{bottom:387.337333pt;}
.y8_c00340{bottom:402.369333pt;}
.y7_c00340{bottom:418.276000pt;}
.y6_c00340{bottom:433.068000pt;}
.y5_c00340{bottom:448.524000pt;}
.y4_c00340{bottom:464.814667pt;}
.y3_c00340{bottom:479.017333pt;}
.y2_c00340{bottom:494.705333pt;}
.y1_c00340{bottom:505.792000pt;}
.h16_c00340{height:46.670027pt;}
.hc_c00340{height:48.533333pt;}
.h9_c00340{height:49.466667pt;}
.h14_c00340{height:49.470228pt;}
.h10_c00340{height:51.333333pt;}
.h12_c00340{height:51.337029pt;}
.h7_c00340{height:53.200000pt;}
.h11_c00340{height:53.203830pt;}
.he_c00340{height:53.204495pt;}
.h6_c00340{height:54.133333pt;}
.h15_c00340{height:54.137231pt;}
.h8_c00340{height:55.066667pt;}
.h17_c00340{height:55.070631pt;}
.hd_c00340{height:56.000000pt;}
.h3_c00340{height:56.933333pt;}
.hb_c00340{height:57.866667pt;}
.h13_c00340{height:58.804233pt;}
.hf_c00340{height:58.804968pt;}
.ha_c00340{height:59.733333pt;}
.h4_c00340{height:61.600000pt;}
.h5_c00340{height:62.533333pt;}
.h2_c00340{height:75.600000pt;}
.h0_c00340{height:545.040000pt;}
.h1_c00340{height:545.333333pt;}
.w0_c00340{width:319.200000pt;}
.w1_c00340{width:319.333333pt;}
.x0_c00340{left:0.000000pt;}
.x3_c00340{left:7.680000pt;}
.x1a_c00340{left:9.600000pt;}
.x37_c00340{left:11.040000pt;}
.xd_c00340{left:15.120000pt;}
.x22_c00340{left:16.320000pt;}
.x4_c00340{left:17.760000pt;}
.x5e_c00340{left:18.960000pt;}
.x64_c00340{left:20.033333pt;}
.x77_c00340{left:21.354667pt;}
.x5_c00340{left:22.560000pt;}
.x48_c00340{left:24.000000pt;}
.x6a_c00340{left:25.917333pt;}
.x2e_c00340{left:28.080000pt;}
.x23_c00340{left:33.360000pt;}
.x85_c00340{left:34.417541pt;}
.x7d_c00340{left:36.962597pt;}
.x38_c00340{left:38.640000pt;}
.x33_c00340{left:40.080000pt;}
.x70_c00340{left:41.043052pt;}
.x1b_c00340{left:42.480000pt;}
.x80_c00340{left:48.243029pt;}
.x74_c00340{left:50.569985pt;}
.x49_c00340{left:51.600000pt;}
.x71_c00340{left:54.964076pt;}
.x42_c00340{left:56.160000pt;}
.x12_c00340{left:57.840000pt;}
.x28_c00340{left:60.480000pt;}
.x7e_c00340{left:62.884992pt;}
.x59_c00340{left:64.800000pt;}
.x5f_c00340{left:66.000000pt;}
.x65_c00340{left:68.522667pt;}
.x3d_c00340{left:69.840000pt;}
.x52_c00340{left:70.800000pt;}
.x87_c00340{left:71.765445pt;}
.xe_c00340{left:73.200000pt;}
.x4a_c00340{left:74.160000pt;}
.x39_c00340{left:76.320000pt;}
.x29_c00340{left:77.520000pt;}
.x4f_c00340{left:78.720000pt;}
.x13_c00340{left:80.400000pt;}
.x5a_c00340{left:81.600000pt;}
.x60_c00340{left:83.760000pt;}
.x43_c00340{left:86.640000pt;}
.x72_c00340{left:90.487407pt;}
.x55_c00340{left:92.400000pt;}
.x3a_c00340{left:93.360000pt;}
.x34_c00340{left:97.920000pt;}
.x44_c00340{left:101.760000pt;}
.x14_c00340{left:103.200000pt;}
.x6_c00340{left:104.400000pt;}
.x6b_c00340{left:106.317333pt;}
.x2f_c00340{left:107.760000pt;}
.x81_c00340{left:109.207813pt;}
.x7b_c00340{left:111.933397pt;}
.x56_c00340{left:114.720000pt;}
.x73_c00340{left:115.929039pt;}
.x79_c00340{left:117.606912pt;}
.x1_c00340{left:119.040000pt;}
.x7_c00340{left:122.400000pt;}
.x30_c00340{left:124.080000pt;}
.x66_c00340{left:125.208000pt;}
.x82_c00340{left:127.449104pt;}
.x24_c00340{left:130.800000pt;}
.x45_c00340{left:132.720000pt;}
.x4b_c00340{left:135.600000pt;}
.x35_c00340{left:137.760000pt;}
.x63_c00340{left:139.680000pt;}
.x15_c00340{left:142.320000pt;}
.x6d_c00340{left:144.424000pt;}
.x2a_c00340{left:145.920000pt;}
.x1c_c00340{left:146.880000pt;}
.x16_c00340{left:148.560000pt;}
.x53_c00340{left:149.760000pt;}
.x46_c00340{left:151.200000pt;}
.x8_c00340{left:156.720000pt;}
.x25_c00340{left:159.600000pt;}
.x5b_c00340{left:160.560000pt;}
.x6e_c00340{left:161.926667pt;}
.xf_c00340{left:163.440000pt;}
.x1d_c00340{left:165.120000pt;}
.x3e_c00340{left:168.720000pt;}
.x31_c00340{left:172.080000pt;}
.x9_c00340{left:174.000000pt;}
.x3b_c00340{left:175.440000pt;}
.x17_c00340{left:178.560000pt;}
.x67_c00340{left:180.350667pt;}
.x75_c00340{left:184.027319pt;}
.x86_c00340{left:186.590736pt;}
.x57_c00340{left:187.680000pt;}
.x10_c00340{left:188.880000pt;}
.x7f_c00340{left:190.093963pt;}
.x2b_c00340{left:193.680000pt;}
.x84_c00340{left:197.313877pt;}
.x7c_c00340{left:199.119301pt;}
.x1e_c00340{left:201.120000pt;}
.x4c_c00340{left:202.800000pt;}
.x3c_c00340{left:207.600000pt;}
.x50_c00340{left:210.000000pt;}
.x2c_c00340{left:210.960000pt;}
.x26_c00340{left:212.160000pt;}
.x11_c00340{left:213.360000pt;}
.x78_c00340{left:215.417333pt;}
.x5c_c00340{left:217.440000pt;}
.x1f_c00340{left:219.360000pt;}
.x36_c00340{left:220.320000pt;}
.x4d_c00340{left:221.760000pt;}
.x3f_c00340{left:223.440000pt;}
.x83_c00340{left:226.575392pt;}
.x2d_c00340{left:227.520000pt;}
.x61_c00340{left:228.480000pt;}
.x27_c00340{left:229.440000pt;}
.x68_c00340{left:230.517333pt;}
.x7a_c00340{left:232.815504pt;}
.x20_c00340{left:234.000000pt;}
.x2_c00340{left:235.440000pt;}
.x18_c00340{left:237.600000pt;}
.x51_c00340{left:238.800000pt;}
.x40_c00340{left:240.240000pt;}
.xa_c00340{left:241.440000pt;}
.x58_c00340{left:245.040000pt;}
.x47_c00340{left:246.720000pt;}
.x19_c00340{left:252.240000pt;}
.x5d_c00340{left:254.400000pt;}
.x62_c00340{left:256.560000pt;}
.x6f_c00340{left:259.321333pt;}
.x41_c00340{left:261.600000pt;}
.xb_c00340{left:264.240000pt;}
.x76_c00340{left:265.608652pt;}
.x32_c00340{left:266.640000pt;}
.x54_c00340{left:268.080000pt;}
.x6c_c00340{left:269.517333pt;}
.x4e_c00340{left:273.600000pt;}
.xc_c00340{left:281.520000pt;}
.x21_c00340{left:283.920000pt;}
.x69_c00340{left:288.682667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00341 {
    display:none;
  }
  .loading-indicator_c00341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00341 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00341 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00341" -> "#page-container .classname_c00341")
 */
.pf_c00341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00341 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00341 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00341 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00341 {overflow:visible;}
  }
}
.c_c00341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00341 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00341:after { /* webkit #35443 */
  content: '';
}
.t_c00341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00341 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00341 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00341 { /* info for Javascript */
  display:none;
}
.l_c00341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00341:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00341 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00341.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00341{transform:matrix(0.012392,-0.000273,0.005499,0.249940,0,0);-ms-transform:matrix(0.012392,-0.000273,0.005499,0.249940,0,0);-webkit-transform:matrix(0.012392,-0.000273,0.005499,0.249940,0,0);}
.m0_c00341{transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00341{transform:matrix(0.144160,-0.003604,0.006248,0.249922,0,0);-ms-transform:matrix(0.144160,-0.003604,0.006248,0.249922,0,0);-webkit-transform:matrix(0.144160,-0.003604,0.006248,0.249922,0,0);}
.m5c_c00341{transform:matrix(0.147439,-0.003686,0.006248,0.249922,0,0);-ms-transform:matrix(0.147439,-0.003686,0.006248,0.249922,0,0);-webkit-transform:matrix(0.147439,-0.003686,0.006248,0.249922,0,0);}
.m77_c00341{transform:matrix(0.148953,-0.003724,0.006248,0.249922,0,0);-ms-transform:matrix(0.148953,-0.003724,0.006248,0.249922,0,0);-webkit-transform:matrix(0.148953,-0.003724,0.006248,0.249922,0,0);}
.m36_c00341{transform:matrix(0.150618,-0.003765,0.006248,0.249922,0,0);-ms-transform:matrix(0.150618,-0.003765,0.006248,0.249922,0,0);-webkit-transform:matrix(0.150618,-0.003765,0.006248,0.249922,0,0);}
.mac_c00341{transform:matrix(0.153978,-0.002310,0.003750,0.249972,0,0);-ms-transform:matrix(0.153978,-0.002310,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153978,-0.002310,0.003750,0.249972,0,0);}
.m29_c00341{transform:matrix(0.156261,-0.003907,0.006248,0.249922,0,0);-ms-transform:matrix(0.156261,-0.003907,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156261,-0.003907,0.006248,0.249922,0,0);}
.m26_c00341{transform:matrix(0.156396,-0.003910,0.006248,0.249922,0,0);-ms-transform:matrix(0.156396,-0.003910,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156396,-0.003910,0.006248,0.249922,0,0);}
.m6d_c00341{transform:matrix(0.157506,-0.003938,0.006248,0.249922,0,0);-ms-transform:matrix(0.157506,-0.003938,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157506,-0.003938,0.006248,0.249922,0,0);}
.m6a_c00341{transform:matrix(0.158895,-0.003972,0.006248,0.249922,0,0);-ms-transform:matrix(0.158895,-0.003972,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158895,-0.003972,0.006248,0.249922,0,0);}
.md5_c00341{transform:matrix(0.159613,-0.003671,0.005748,0.249934,0,0);-ms-transform:matrix(0.159613,-0.003671,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159613,-0.003671,0.005748,0.249934,0,0);}
.m6f_c00341{transform:matrix(0.160750,-0.004019,0.006248,0.249922,0,0);-ms-transform:matrix(0.160750,-0.004019,0.006248,0.249922,0,0);-webkit-transform:matrix(0.160750,-0.004019,0.006248,0.249922,0,0);}
.m10_c00341{transform:matrix(0.161490,-0.004037,0.006248,0.249922,0,0);-ms-transform:matrix(0.161490,-0.004037,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161490,-0.004037,0.006248,0.249922,0,0);}
.m34_c00341{transform:matrix(0.162289,-0.004057,0.006248,0.249922,0,0);-ms-transform:matrix(0.162289,-0.004057,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162289,-0.004057,0.006248,0.249922,0,0);}
.m55_c00341{transform:matrix(0.165068,-0.004127,0.006248,0.249922,0,0);-ms-transform:matrix(0.165068,-0.004127,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165068,-0.004127,0.006248,0.249922,0,0);}
.m3a_c00341{transform:matrix(0.166438,-0.004161,0.006248,0.249922,0,0);-ms-transform:matrix(0.166438,-0.004161,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166438,-0.004161,0.006248,0.249922,0,0);}
.m7_c00341{transform:matrix(0.167113,-0.004178,0.006248,0.249922,0,0);-ms-transform:matrix(0.167113,-0.004178,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167113,-0.004178,0.006248,0.249922,0,0);}
.m74_c00341{transform:matrix(0.168037,-0.004201,0.006248,0.249922,0,0);-ms-transform:matrix(0.168037,-0.004201,0.006248,0.249922,0,0);-webkit-transform:matrix(0.168037,-0.004201,0.006248,0.249922,0,0);}
.m75_c00341{transform:matrix(0.168237,-0.004206,0.006248,0.249922,0,0);-ms-transform:matrix(0.168237,-0.004206,0.006248,0.249922,0,0);-webkit-transform:matrix(0.168237,-0.004206,0.006248,0.249922,0,0);}
.m24_c00341{transform:matrix(0.168617,-0.004215,0.006248,0.249922,0,0);-ms-transform:matrix(0.168617,-0.004215,0.006248,0.249922,0,0);-webkit-transform:matrix(0.168617,-0.004215,0.006248,0.249922,0,0);}
.m8_c00341{transform:matrix(0.169147,-0.004229,0.006248,0.249922,0,0);-ms-transform:matrix(0.169147,-0.004229,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169147,-0.004229,0.006248,0.249922,0,0);}
.m6e_c00341{transform:matrix(0.169812,-0.004245,0.006248,0.249922,0,0);-ms-transform:matrix(0.169812,-0.004245,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169812,-0.004245,0.006248,0.249922,0,0);}
.m2e_c00341{transform:matrix(0.169922,-0.004248,0.006248,0.249922,0,0);-ms-transform:matrix(0.169922,-0.004248,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169922,-0.004248,0.006248,0.249922,0,0);}
.m4d_c00341{transform:matrix(0.171981,-0.004300,0.006248,0.249922,0,0);-ms-transform:matrix(0.171981,-0.004300,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171981,-0.004300,0.006248,0.249922,0,0);}
.m38_c00341{transform:matrix(0.172241,-0.004306,0.006248,0.249922,0,0);-ms-transform:matrix(0.172241,-0.004306,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172241,-0.004306,0.006248,0.249922,0,0);}
.m46_c00341{transform:matrix(0.172276,-0.004307,0.006248,0.249922,0,0);-ms-transform:matrix(0.172276,-0.004307,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172276,-0.004307,0.006248,0.249922,0,0);}
.md_c00341{transform:matrix(0.172316,-0.004308,0.006248,0.249922,0,0);-ms-transform:matrix(0.172316,-0.004308,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172316,-0.004308,0.006248,0.249922,0,0);}
.m53_c00341{transform:matrix(0.172661,-0.004317,0.006248,0.249922,0,0);-ms-transform:matrix(0.172661,-0.004317,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172661,-0.004317,0.006248,0.249922,0,0);}
.m31_c00341{transform:matrix(0.172726,-0.004318,0.006248,0.249922,0,0);-ms-transform:matrix(0.172726,-0.004318,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172726,-0.004318,0.006248,0.249922,0,0);}
.m5e_c00341{transform:matrix(0.173311,-0.004333,0.006248,0.249922,0,0);-ms-transform:matrix(0.173311,-0.004333,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173311,-0.004333,0.006248,0.249922,0,0);}
.m41_c00341{transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);-ms-transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);}
.m11_c00341{transform:matrix(0.174985,-0.004375,0.006248,0.249922,0,0);-ms-transform:matrix(0.174985,-0.004375,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174985,-0.004375,0.006248,0.249922,0,0);}
.md6_c00341{transform:matrix(0.175609,-0.004039,0.005748,0.249934,0,0);-ms-transform:matrix(0.175609,-0.004039,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175609,-0.004039,0.005748,0.249934,0,0);}
.mc5_c00341{transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);}
.m62_c00341{transform:matrix(0.176685,-0.004417,0.006248,0.249922,0,0);-ms-transform:matrix(0.176685,-0.004417,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176685,-0.004417,0.006248,0.249922,0,0);}
.m97_c00341{transform:matrix(0.177095,-0.002656,0.003750,0.249972,0,0);-ms-transform:matrix(0.177095,-0.002656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177095,-0.002656,0.003750,0.249972,0,0);}
.m90_c00341{transform:matrix(0.177820,-0.002667,0.003750,0.249972,0,0);-ms-transform:matrix(0.177820,-0.002667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177820,-0.002667,0.003750,0.249972,0,0);}
.mb7_c00341{transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);-ms-transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);}
.mc3_c00341{transform:matrix(0.178550,-0.002678,0.003750,0.249972,0,0);-ms-transform:matrix(0.178550,-0.002678,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178550,-0.002678,0.003750,0.249972,0,0);}
.m7b_c00341{transform:matrix(0.178617,-0.003930,0.005499,0.249940,0,0);-ms-transform:matrix(0.178617,-0.003930,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178617,-0.003930,0.005499,0.249940,0,0);}
.mc_c00341{transform:matrix(0.179024,-0.004476,0.006248,0.249922,0,0);-ms-transform:matrix(0.179024,-0.004476,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179024,-0.004476,0.006248,0.249922,0,0);}
.mce_c00341{transform:matrix(0.179578,-0.004130,0.005748,0.249934,0,0);-ms-transform:matrix(0.179578,-0.004130,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179578,-0.004130,0.005748,0.249934,0,0);}
.mb4_c00341{transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);-ms-transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);}
.m2_c00341{transform:matrix(0.180789,-0.004520,0.006248,0.249922,0,0);-ms-transform:matrix(0.180789,-0.004520,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180789,-0.004520,0.006248,0.249922,0,0);}
.ma6_c00341{transform:matrix(0.180965,-0.002714,0.003750,0.249972,0,0);-ms-transform:matrix(0.180965,-0.002714,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180965,-0.002714,0.003750,0.249972,0,0);}
.m5f_c00341{transform:matrix(0.181493,-0.004537,0.006248,0.249922,0,0);-ms-transform:matrix(0.181493,-0.004537,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181493,-0.004537,0.006248,0.249922,0,0);}
.m1f_c00341{transform:matrix(0.181718,-0.004543,0.006248,0.249922,0,0);-ms-transform:matrix(0.181718,-0.004543,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181718,-0.004543,0.006248,0.249922,0,0);}
.m91_c00341{transform:matrix(0.182499,-0.002737,0.003750,0.249972,0,0);-ms-transform:matrix(0.182499,-0.002737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182499,-0.002737,0.003750,0.249972,0,0);}
.md7_c00341{transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-ms-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);}
.m8c_c00341{transform:matrix(0.182782,-0.003473,0.004749,0.249955,0,0);-ms-transform:matrix(0.182782,-0.003473,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182782,-0.003473,0.004749,0.249955,0,0);}
.m1c_c00341{transform:matrix(0.182883,-0.004572,0.006248,0.249922,0,0);-ms-transform:matrix(0.182883,-0.004572,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182883,-0.004572,0.006248,0.249922,0,0);}
.m2b_c00341{transform:matrix(0.183123,-0.004578,0.006248,0.249922,0,0);-ms-transform:matrix(0.183123,-0.004578,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183123,-0.004578,0.006248,0.249922,0,0);}
.m45_c00341{transform:matrix(0.183488,-0.004587,0.006248,0.249922,0,0);-ms-transform:matrix(0.183488,-0.004587,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183488,-0.004587,0.006248,0.249922,0,0);}
.mc4_c00341{transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184004,-0.002760,0.003750,0.249972,0,0);}
.m6_c00341{transform:matrix(0.184322,-0.004608,0.006248,0.249922,0,0);-ms-transform:matrix(0.184322,-0.004608,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184322,-0.004608,0.006248,0.249922,0,0);}
.ma9_c00341{transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);-ms-transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);}
.m35_c00341{transform:matrix(0.185067,-0.004627,0.006248,0.249922,0,0);-ms-transform:matrix(0.185067,-0.004627,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185067,-0.004627,0.006248,0.249922,0,0);}
.mc0_c00341{transform:matrix(0.185129,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185129,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185129,-0.002777,0.003750,0.249972,0,0);}
.m65_c00341{transform:matrix(0.185492,-0.004637,0.006248,0.249922,0,0);-ms-transform:matrix(0.185492,-0.004637,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185492,-0.004637,0.006248,0.249922,0,0);}
.mbd_c00341{transform:matrix(0.185604,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185604,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185604,-0.002784,0.003750,0.249972,0,0);}
.me_c00341{transform:matrix(0.185937,-0.004648,0.006248,0.249922,0,0);-ms-transform:matrix(0.185937,-0.004648,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185937,-0.004648,0.006248,0.249922,0,0);}
.mb9_c00341{transform:matrix(0.186529,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186529,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186529,-0.002798,0.003750,0.249972,0,0);}
.mc9_c00341{transform:matrix(0.186809,-0.002802,0.003750,0.249972,0,0);-ms-transform:matrix(0.186809,-0.002802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186809,-0.002802,0.003750,0.249972,0,0);}
.m6c_c00341{transform:matrix(0.187067,-0.004677,0.006248,0.249922,0,0);-ms-transform:matrix(0.187067,-0.004677,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187067,-0.004677,0.006248,0.249922,0,0);}
.m88_c00341{transform:matrix(0.187316,-0.003559,0.004749,0.249955,0,0);-ms-transform:matrix(0.187316,-0.003559,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187316,-0.003559,0.004749,0.249955,0,0);}
.m78_c00341{transform:matrix(0.187681,-0.004692,0.006248,0.249922,0,0);-ms-transform:matrix(0.187681,-0.004692,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187681,-0.004692,0.006248,0.249922,0,0);}
.m2a_c00341{transform:matrix(0.187751,-0.004694,0.006248,0.249922,0,0);-ms-transform:matrix(0.187751,-0.004694,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187751,-0.004694,0.006248,0.249922,0,0);}
.m98_c00341{transform:matrix(0.188364,-0.002825,0.003750,0.249972,0,0);-ms-transform:matrix(0.188364,-0.002825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188364,-0.002825,0.003750,0.249972,0,0);}
.m3f_c00341{transform:matrix(0.188376,-0.004709,0.006248,0.249922,0,0);-ms-transform:matrix(0.188376,-0.004709,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188376,-0.004709,0.006248,0.249922,0,0);}
.mb_c00341{transform:matrix(0.188526,-0.004713,0.006248,0.249922,0,0);-ms-transform:matrix(0.188526,-0.004713,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188526,-0.004713,0.006248,0.249922,0,0);}
.md3_c00341{transform:matrix(0.188920,-0.004345,0.005748,0.249934,0,0);-ms-transform:matrix(0.188920,-0.004345,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188920,-0.004345,0.005748,0.249934,0,0);}
.m5_c00341{transform:matrix(0.188941,-0.004724,0.006248,0.249922,0,0);-ms-transform:matrix(0.188941,-0.004724,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188941,-0.004724,0.006248,0.249922,0,0);}
.m30_c00341{transform:matrix(0.188961,-0.004724,0.006248,0.249922,0,0);-ms-transform:matrix(0.188961,-0.004724,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188961,-0.004724,0.006248,0.249922,0,0);}
.m5b_c00341{transform:matrix(0.189841,-0.004746,0.006248,0.249922,0,0);-ms-transform:matrix(0.189841,-0.004746,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189841,-0.004746,0.006248,0.249922,0,0);}
.m37_c00341{transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);-ms-transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);}
.mc8_c00341{transform:matrix(0.190469,-0.002857,0.003750,0.249972,0,0);-ms-transform:matrix(0.190469,-0.002857,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190469,-0.002857,0.003750,0.249972,0,0);}
.m63_c00341{transform:matrix(0.190655,-0.004766,0.006248,0.249922,0,0);-ms-transform:matrix(0.190655,-0.004766,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190655,-0.004766,0.006248,0.249922,0,0);}
.m4c_c00341{transform:matrix(0.190765,-0.004769,0.006248,0.249922,0,0);-ms-transform:matrix(0.190765,-0.004769,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190765,-0.004769,0.006248,0.249922,0,0);}
.m4b_c00341{transform:matrix(0.191005,-0.004775,0.006248,0.249922,0,0);-ms-transform:matrix(0.191005,-0.004775,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191005,-0.004775,0.006248,0.249922,0,0);}
.ma2_c00341{transform:matrix(0.191313,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191313,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191313,-0.002870,0.003750,0.249972,0,0);}
.m9f_c00341{transform:matrix(0.191948,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191948,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191948,-0.002879,0.003750,0.249972,0,0);}
.m67_c00341{transform:matrix(0.192080,-0.004802,0.006248,0.249922,0,0);-ms-transform:matrix(0.192080,-0.004802,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192080,-0.004802,0.006248,0.249922,0,0);}
.m76_c00341{transform:matrix(0.192695,-0.004817,0.006248,0.249922,0,0);-ms-transform:matrix(0.192695,-0.004817,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192695,-0.004817,0.006248,0.249922,0,0);}
.mc6_c00341{transform:matrix(0.193598,-0.002904,0.003750,0.249972,0,0);-ms-transform:matrix(0.193598,-0.002904,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193598,-0.002904,0.003750,0.249972,0,0);}
.mcd_c00341{transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);-ms-transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194069,-0.004464,0.005748,0.249934,0,0);}
.m25_c00341{transform:matrix(0.194269,-0.004857,0.006248,0.249922,0,0);-ms-transform:matrix(0.194269,-0.004857,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194269,-0.004857,0.006248,0.249922,0,0);}
.mae_c00341{transform:matrix(0.194293,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194293,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194293,-0.002914,0.003750,0.249972,0,0);}
.m5d_c00341{transform:matrix(0.194494,-0.004862,0.006248,0.249922,0,0);-ms-transform:matrix(0.194494,-0.004862,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194494,-0.004862,0.006248,0.249922,0,0);}
.mba_c00341{transform:matrix(0.194628,-0.002919,0.003750,0.249972,0,0);-ms-transform:matrix(0.194628,-0.002919,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194628,-0.002919,0.003750,0.249972,0,0);}
.m70_c00341{transform:matrix(0.194879,-0.004872,0.006248,0.249922,0,0);-ms-transform:matrix(0.194879,-0.004872,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194879,-0.004872,0.006248,0.249922,0,0);}
.m33_c00341{transform:matrix(0.195134,-0.004878,0.006248,0.249922,0,0);-ms-transform:matrix(0.195134,-0.004878,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195134,-0.004878,0.006248,0.249922,0,0);}
.m54_c00341{transform:matrix(0.195339,-0.004883,0.006248,0.249922,0,0);-ms-transform:matrix(0.195339,-0.004883,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195339,-0.004883,0.006248,0.249922,0,0);}
.mbb_c00341{transform:matrix(0.196403,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196403,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196403,-0.002946,0.003750,0.249972,0,0);}
.m28_c00341{transform:matrix(0.196419,-0.004910,0.006248,0.249922,0,0);-ms-transform:matrix(0.196419,-0.004910,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196419,-0.004910,0.006248,0.249922,0,0);}
.m39_c00341{transform:matrix(0.196709,-0.004918,0.006248,0.249922,0,0);-ms-transform:matrix(0.196709,-0.004918,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196709,-0.004918,0.006248,0.249922,0,0);}
.m72_c00341{transform:matrix(0.197213,-0.004930,0.006248,0.249922,0,0);-ms-transform:matrix(0.197213,-0.004930,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197213,-0.004930,0.006248,0.249922,0,0);}
.m2d_c00341{transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);-ms-transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);}
.m69_c00341{transform:matrix(0.198038,-0.004951,0.006248,0.249922,0,0);-ms-transform:matrix(0.198038,-0.004951,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198038,-0.004951,0.006248,0.249922,0,0);}
.maf_c00341{transform:matrix(0.198173,-0.002973,0.003750,0.249972,0,0);-ms-transform:matrix(0.198173,-0.002973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198173,-0.002973,0.003750,0.249972,0,0);}
.m59_c00341{transform:matrix(0.198573,-0.004964,0.006248,0.249922,0,0);-ms-transform:matrix(0.198573,-0.004964,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198573,-0.004964,0.006248,0.249922,0,0);}
.m3_c00341{transform:matrix(0.199523,-0.004988,0.006248,0.249922,0,0);-ms-transform:matrix(0.199523,-0.004988,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199523,-0.004988,0.006248,0.249922,0,0);}
.md0_c00341{transform:matrix(0.200067,-0.004602,0.005748,0.249934,0,0);-ms-transform:matrix(0.200067,-0.004602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200067,-0.004602,0.005748,0.249934,0,0);}
.m61_c00341{transform:matrix(0.200082,-0.005002,0.006248,0.249922,0,0);-ms-transform:matrix(0.200082,-0.005002,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200082,-0.005002,0.006248,0.249922,0,0);}
.m1e_c00341{transform:matrix(0.200382,-0.005010,0.006248,0.249922,0,0);-ms-transform:matrix(0.200382,-0.005010,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200382,-0.005010,0.006248,0.249922,0,0);}
.mbc_c00341{transform:matrix(0.201007,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.201007,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201007,-0.003015,0.003750,0.249972,0,0);}
.m56_c00341{transform:matrix(0.201167,-0.005029,0.006248,0.249922,0,0);-ms-transform:matrix(0.201167,-0.005029,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201167,-0.005029,0.006248,0.249922,0,0);}
.m80_c00341{transform:matrix(0.201284,-0.003824,0.004749,0.249955,0,0);-ms-transform:matrix(0.201284,-0.003824,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201284,-0.003824,0.004749,0.249955,0,0);}
.m22_c00341{transform:matrix(0.201327,-0.005033,0.006248,0.249922,0,0);-ms-transform:matrix(0.201327,-0.005033,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201327,-0.005033,0.006248,0.249922,0,0);}
.m3b_c00341{transform:matrix(0.201427,-0.005036,0.006248,0.249922,0,0);-ms-transform:matrix(0.201427,-0.005036,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201427,-0.005036,0.006248,0.249922,0,0);}
.mad_c00341{transform:matrix(0.201672,-0.003025,0.003750,0.249972,0,0);-ms-transform:matrix(0.201672,-0.003025,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201672,-0.003025,0.003750,0.249972,0,0);}
.mc1_c00341{transform:matrix(0.202237,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202237,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202237,-0.003034,0.003750,0.249972,0,0);}
.m32_c00341{transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);-ms-transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);}
.m15_c00341{transform:matrix(0.202627,-0.005066,0.006248,0.249922,0,0);-ms-transform:matrix(0.202627,-0.005066,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202627,-0.005066,0.006248,0.249922,0,0);}
.m8f_c00341{transform:matrix(0.203637,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203637,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203637,-0.003055,0.003750,0.249972,0,0);}
.m52_c00341{transform:matrix(0.203941,-0.005099,0.006248,0.249922,0,0);-ms-transform:matrix(0.203941,-0.005099,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203941,-0.005099,0.006248,0.249922,0,0);}
.m1d_c00341{transform:matrix(0.204596,-0.005115,0.006248,0.249922,0,0);-ms-transform:matrix(0.204596,-0.005115,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204596,-0.005115,0.006248,0.249922,0,0);}
.m23_c00341{transform:matrix(0.204631,-0.005116,0.006248,0.249922,0,0);-ms-transform:matrix(0.204631,-0.005116,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204631,-0.005116,0.006248,0.249922,0,0);}
.m8e_c00341{transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204907,-0.003074,0.003750,0.249972,0,0);}
.m47_c00341{transform:matrix(0.205141,-0.005129,0.006248,0.249922,0,0);-ms-transform:matrix(0.205141,-0.005129,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205141,-0.005129,0.006248,0.249922,0,0);}
.md2_c00341{transform:matrix(0.205956,-0.004737,0.005748,0.249934,0,0);-ms-transform:matrix(0.205956,-0.004737,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205956,-0.004737,0.005748,0.249934,0,0);}
.m13_c00341{transform:matrix(0.205976,-0.005149,0.006248,0.249922,0,0);-ms-transform:matrix(0.205976,-0.005149,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205976,-0.005149,0.006248,0.249922,0,0);}
.m94_c00341{transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-ms-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);}
.m92_c00341{transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);-ms-transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);}
.m1_c00341{transform:matrix(0.206371,-0.005159,0.006248,0.249922,0,0);-ms-transform:matrix(0.206371,-0.005159,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206371,-0.005159,0.006248,0.249922,0,0);}
.m96_c00341{transform:matrix(0.206562,-0.003098,0.003750,0.249972,0,0);-ms-transform:matrix(0.206562,-0.003098,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206562,-0.003098,0.003750,0.249972,0,0);}
.m2f_c00341{transform:matrix(0.206630,-0.005166,0.006248,0.249922,0,0);-ms-transform:matrix(0.206630,-0.005166,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206630,-0.005166,0.006248,0.249922,0,0);}
.mcf_c00341{transform:matrix(0.206690,-0.004754,0.005748,0.249934,0,0);-ms-transform:matrix(0.206690,-0.004754,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206690,-0.004754,0.005748,0.249934,0,0);}
.mb3_c00341{transform:matrix(0.207512,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207512,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207512,-0.003113,0.003750,0.249972,0,0);}
.m60_c00341{transform:matrix(0.207675,-0.005192,0.006248,0.249922,0,0);-ms-transform:matrix(0.207675,-0.005192,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207675,-0.005192,0.006248,0.249922,0,0);}
.m4_c00341{transform:matrix(0.207790,-0.005195,0.006248,0.249922,0,0);-ms-transform:matrix(0.207790,-0.005195,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207790,-0.005195,0.006248,0.249922,0,0);}
.ma1_c00341{transform:matrix(0.208317,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208317,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208317,-0.003125,0.003750,0.249972,0,0);}
.ma7_c00341{transform:matrix(0.208677,-0.003130,0.003750,0.249972,0,0);-ms-transform:matrix(0.208677,-0.003130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208677,-0.003130,0.003750,0.249972,0,0);}
.ma3_c00341{transform:matrix(0.209181,-0.003138,0.003750,0.249972,0,0);-ms-transform:matrix(0.209181,-0.003138,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209181,-0.003138,0.003750,0.249972,0,0);}
.m64_c00341{transform:matrix(0.210459,-0.005261,0.006248,0.249922,0,0);-ms-transform:matrix(0.210459,-0.005261,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210459,-0.005261,0.006248,0.249922,0,0);}
.m27_c00341{transform:matrix(0.210484,-0.005262,0.006248,0.249922,0,0);-ms-transform:matrix(0.210484,-0.005262,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210484,-0.005262,0.006248,0.249922,0,0);}
.mb5_c00341{transform:matrix(0.210686,-0.003160,0.003750,0.249972,0,0);-ms-transform:matrix(0.210686,-0.003160,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210686,-0.003160,0.003750,0.249972,0,0);}
.m43_c00341{transform:matrix(0.210804,-0.005270,0.006248,0.249922,0,0);-ms-transform:matrix(0.210804,-0.005270,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210804,-0.005270,0.006248,0.249922,0,0);}
.m7a_c00341{transform:matrix(0.210849,-0.004639,0.005499,0.249940,0,0);-ms-transform:matrix(0.210849,-0.004639,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210849,-0.004639,0.005499,0.249940,0,0);}
.m84_c00341{transform:matrix(0.210897,-0.004007,0.004749,0.249955,0,0);-ms-transform:matrix(0.210897,-0.004007,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210897,-0.004007,0.004749,0.249955,0,0);}
.m66_c00341{transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);-ms-transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211709,-0.005293,0.006248,0.249922,0,0);}
.m9e_c00341{transform:matrix(0.212291,-0.003184,0.003750,0.249972,0,0);-ms-transform:matrix(0.212291,-0.003184,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212291,-0.003184,0.003750,0.249972,0,0);}
.m99_c00341{transform:matrix(0.212601,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212601,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212601,-0.003189,0.003750,0.249972,0,0);}
.m1b_c00341{transform:matrix(0.213123,-0.005328,0.006248,0.249922,0,0);-ms-transform:matrix(0.213123,-0.005328,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213123,-0.005328,0.006248,0.249922,0,0);}
.mbe_c00341{transform:matrix(0.213151,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213151,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213151,-0.003197,0.003750,0.249972,0,0);}
.m21_c00341{transform:matrix(0.213183,-0.005330,0.006248,0.249922,0,0);-ms-transform:matrix(0.213183,-0.005330,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213183,-0.005330,0.006248,0.249922,0,0);}
.m6b_c00341{transform:matrix(0.213213,-0.005330,0.006248,0.249922,0,0);-ms-transform:matrix(0.213213,-0.005330,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213213,-0.005330,0.006248,0.249922,0,0);}
.m9_c00341{transform:matrix(0.213318,-0.005333,0.006248,0.249922,0,0);-ms-transform:matrix(0.213318,-0.005333,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213318,-0.005333,0.006248,0.249922,0,0);}
.m1a_c00341{transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);-ms-transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);}
.mcc_c00341{transform:matrix(0.213454,-0.004909,0.005748,0.249934,0,0);-ms-transform:matrix(0.213454,-0.004909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213454,-0.004909,0.005748,0.249934,0,0);}
.md8_c00341{transform:matrix(0.213514,-0.004911,0.005748,0.249934,0,0);-ms-transform:matrix(0.213514,-0.004911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213514,-0.004911,0.005748,0.249934,0,0);}
.m9a_c00341{transform:matrix(0.214046,-0.003211,0.003750,0.249972,0,0);-ms-transform:matrix(0.214046,-0.003211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214046,-0.003211,0.003750,0.249972,0,0);}
.m48_c00341{transform:matrix(0.214188,-0.005355,0.006248,0.249922,0,0);-ms-transform:matrix(0.214188,-0.005355,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214188,-0.005355,0.006248,0.249922,0,0);}
.m71_c00341{transform:matrix(0.214208,-0.005355,0.006248,0.249922,0,0);-ms-transform:matrix(0.214208,-0.005355,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214208,-0.005355,0.006248,0.249922,0,0);}
.m17_c00341{transform:matrix(0.214903,-0.005373,0.006248,0.249922,0,0);-ms-transform:matrix(0.214903,-0.005373,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214903,-0.005373,0.006248,0.249922,0,0);}
.m40_c00341{transform:matrix(0.215193,-0.005380,0.006248,0.249922,0,0);-ms-transform:matrix(0.215193,-0.005380,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215193,-0.005380,0.006248,0.249922,0,0);}
.ma4_c00341{transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);}
.md4_c00341{transform:matrix(0.216943,-0.004990,0.005748,0.249934,0,0);-ms-transform:matrix(0.216943,-0.004990,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216943,-0.004990,0.005748,0.249934,0,0);}
.m3c_c00341{transform:matrix(0.217047,-0.005426,0.006248,0.249922,0,0);-ms-transform:matrix(0.217047,-0.005426,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217047,-0.005426,0.006248,0.249922,0,0);}
.m82_c00341{transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);-ms-transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217346,-0.004130,0.004749,0.249955,0,0);}
.mca_c00341{transform:matrix(0.217657,-0.005006,0.005748,0.249934,0,0);-ms-transform:matrix(0.217657,-0.005006,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217657,-0.005006,0.005748,0.249934,0,0);}
.mbf_c00341{transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);}
.m51_c00341{transform:matrix(0.217882,-0.005447,0.006248,0.249922,0,0);-ms-transform:matrix(0.217882,-0.005447,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217882,-0.005447,0.006248,0.249922,0,0);}
.m8a_c00341{transform:matrix(0.218256,-0.004147,0.004749,0.249955,0,0);-ms-transform:matrix(0.218256,-0.004147,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218256,-0.004147,0.004749,0.249955,0,0);}
.m4e_c00341{transform:matrix(0.218642,-0.005466,0.006248,0.249922,0,0);-ms-transform:matrix(0.218642,-0.005466,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218642,-0.005466,0.006248,0.249922,0,0);}
.m2c_c00341{transform:matrix(0.218937,-0.005473,0.006248,0.249922,0,0);-ms-transform:matrix(0.218937,-0.005473,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218937,-0.005473,0.006248,0.249922,0,0);}
.mb1_c00341{transform:matrix(0.218965,-0.003284,0.003750,0.249972,0,0);-ms-transform:matrix(0.218965,-0.003284,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218965,-0.003284,0.003750,0.249972,0,0);}
.mc7_c00341{transform:matrix(0.219010,-0.003285,0.003750,0.249972,0,0);-ms-transform:matrix(0.219010,-0.003285,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219010,-0.003285,0.003750,0.249972,0,0);}
.m68_c00341{transform:matrix(0.219261,-0.005482,0.006248,0.249922,0,0);-ms-transform:matrix(0.219261,-0.005482,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219261,-0.005482,0.006248,0.249922,0,0);}
.m50_c00341{transform:matrix(0.219846,-0.005496,0.006248,0.249922,0,0);-ms-transform:matrix(0.219846,-0.005496,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219846,-0.005496,0.006248,0.249922,0,0);}
.mc2_c00341{transform:matrix(0.219885,-0.003298,0.003750,0.249972,0,0);-ms-transform:matrix(0.219885,-0.003298,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219885,-0.003298,0.003750,0.249972,0,0);}
.mcb_c00341{transform:matrix(0.220362,-0.005068,0.005748,0.249934,0,0);-ms-transform:matrix(0.220362,-0.005068,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220362,-0.005068,0.005748,0.249934,0,0);}
.m86_c00341{transform:matrix(0.220935,-0.004198,0.004749,0.249955,0,0);-ms-transform:matrix(0.220935,-0.004198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220935,-0.004198,0.004749,0.249955,0,0);}
.m87_c00341{transform:matrix(0.221240,-0.004204,0.004749,0.249955,0,0);-ms-transform:matrix(0.221240,-0.004204,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221240,-0.004204,0.004749,0.249955,0,0);}
.m58_c00341{transform:matrix(0.221356,-0.005534,0.006248,0.249922,0,0);-ms-transform:matrix(0.221356,-0.005534,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221356,-0.005534,0.006248,0.249922,0,0);}
.m12_c00341{transform:matrix(0.221676,-0.005542,0.006248,0.249922,0,0);-ms-transform:matrix(0.221676,-0.005542,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221676,-0.005542,0.006248,0.249922,0,0);}
.m85_c00341{transform:matrix(0.221940,-0.004217,0.004749,0.249955,0,0);-ms-transform:matrix(0.221940,-0.004217,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221940,-0.004217,0.004749,0.249955,0,0);}
.m18_c00341{transform:matrix(0.221996,-0.005550,0.006248,0.249922,0,0);-ms-transform:matrix(0.221996,-0.005550,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221996,-0.005550,0.006248,0.249922,0,0);}
.m3e_c00341{transform:matrix(0.222056,-0.005551,0.006248,0.249922,0,0);-ms-transform:matrix(0.222056,-0.005551,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222056,-0.005551,0.006248,0.249922,0,0);}
.m16_c00341{transform:matrix(0.222166,-0.005554,0.006248,0.249922,0,0);-ms-transform:matrix(0.222166,-0.005554,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222166,-0.005554,0.006248,0.249922,0,0);}
.mb0_c00341{transform:matrix(0.222250,-0.003334,0.003750,0.249972,0,0);-ms-transform:matrix(0.222250,-0.003334,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222250,-0.003334,0.003750,0.249972,0,0);}
.m81_c00341{transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);-ms-transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);}
.m20_c00341{transform:matrix(0.223235,-0.005581,0.006248,0.249922,0,0);-ms-transform:matrix(0.223235,-0.005581,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223235,-0.005581,0.006248,0.249922,0,0);}
.ma8_c00341{transform:matrix(0.223245,-0.003349,0.003750,0.249972,0,0);-ms-transform:matrix(0.223245,-0.003349,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223245,-0.003349,0.003750,0.249972,0,0);}
.m73_c00341{transform:matrix(0.224200,-0.005605,0.006248,0.249922,0,0);-ms-transform:matrix(0.224200,-0.005605,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224200,-0.005605,0.006248,0.249922,0,0);}
.m89_c00341{transform:matrix(0.224779,-0.004271,0.004749,0.249955,0,0);-ms-transform:matrix(0.224779,-0.004271,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224779,-0.004271,0.004749,0.249955,0,0);}
.mb2_c00341{transform:matrix(0.224925,-0.003374,0.003750,0.249972,0,0);-ms-transform:matrix(0.224925,-0.003374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224925,-0.003374,0.003750,0.249972,0,0);}
.m42_c00341{transform:matrix(0.225015,-0.005625,0.006248,0.249922,0,0);-ms-transform:matrix(0.225015,-0.005625,0.006248,0.249922,0,0);-webkit-transform:matrix(0.225015,-0.005625,0.006248,0.249922,0,0);}
.m9b_c00341{transform:matrix(0.226724,-0.003401,0.003750,0.249972,0,0);-ms-transform:matrix(0.226724,-0.003401,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226724,-0.003401,0.003750,0.249972,0,0);}
.m4a_c00341{transform:matrix(0.228329,-0.005708,0.006248,0.249922,0,0);-ms-transform:matrix(0.228329,-0.005708,0.006248,0.249922,0,0);-webkit-transform:matrix(0.228329,-0.005708,0.006248,0.249922,0,0);}
.m4f_c00341{transform:matrix(0.229983,-0.005750,0.006248,0.249922,0,0);-ms-transform:matrix(0.229983,-0.005750,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229983,-0.005750,0.006248,0.249922,0,0);}
.md9_c00341{transform:matrix(0.230664,-0.005305,0.005748,0.249934,0,0);-ms-transform:matrix(0.230664,-0.005305,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230664,-0.005305,0.005748,0.249934,0,0);}
.m49_c00341{transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);-ms-transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231038,-0.005776,0.006248,0.249922,0,0);}
.m7f_c00341{transform:matrix(0.233203,-0.004431,0.004749,0.249955,0,0);-ms-transform:matrix(0.233203,-0.004431,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233203,-0.004431,0.004749,0.249955,0,0);}
.ma0_c00341{transform:matrix(0.233369,-0.003501,0.003750,0.249972,0,0);-ms-transform:matrix(0.233369,-0.003501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233369,-0.003501,0.003750,0.249972,0,0);}
.m7c_c00341{transform:matrix(0.233663,-0.004440,0.004749,0.249955,0,0);-ms-transform:matrix(0.233663,-0.004440,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233663,-0.004440,0.004749,0.249955,0,0);}
.ma5_c00341{transform:matrix(0.234224,-0.003513,0.003750,0.249972,0,0);-ms-transform:matrix(0.234224,-0.003513,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234224,-0.003513,0.003750,0.249972,0,0);}
.mb8_c00341{transform:matrix(0.236083,-0.003541,0.003750,0.249972,0,0);-ms-transform:matrix(0.236083,-0.003541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236083,-0.003541,0.003750,0.249972,0,0);}
.m95_c00341{transform:matrix(0.236293,-0.003544,0.003750,0.249972,0,0);-ms-transform:matrix(0.236293,-0.003544,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236293,-0.003544,0.003750,0.249972,0,0);}
.m3d_c00341{transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);-ms-transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236971,-0.005924,0.006248,0.249922,0,0);}
.maa_c00341{transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-ms-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237358,-0.003560,0.003750,0.249972,0,0);}
.m7d_c00341{transform:matrix(0.237402,-0.004511,0.004749,0.249955,0,0);-ms-transform:matrix(0.237402,-0.004511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237402,-0.004511,0.004749,0.249955,0,0);}
.mb6_c00341{transform:matrix(0.237938,-0.003569,0.003750,0.249972,0,0);-ms-transform:matrix(0.237938,-0.003569,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237938,-0.003569,0.003750,0.249972,0,0);}
.m8d_c00341{transform:matrix(0.238513,-0.003578,0.003750,0.249972,0,0);-ms-transform:matrix(0.238513,-0.003578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238513,-0.003578,0.003750,0.249972,0,0);}
.m44_c00341{transform:matrix(0.239065,-0.005977,0.006248,0.249922,0,0);-ms-transform:matrix(0.239065,-0.005977,0.006248,0.249922,0,0);-webkit-transform:matrix(0.239065,-0.005977,0.006248,0.249922,0,0);}
.m19_c00341{transform:matrix(0.241435,-0.006036,0.006248,0.249922,0,0);-ms-transform:matrix(0.241435,-0.006036,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241435,-0.006036,0.006248,0.249922,0,0);}
.m8b_c00341{transform:matrix(0.241436,-0.004587,0.004749,0.249955,0,0);-ms-transform:matrix(0.241436,-0.004587,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241436,-0.004587,0.004749,0.249955,0,0);}
.m9d_c00341{transform:matrix(0.247347,-0.003710,0.003750,0.249972,0,0);-ms-transform:matrix(0.247347,-0.003710,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247347,-0.003710,0.003750,0.249972,0,0);}
.m14_c00341{transform:matrix(0.262208,-0.006555,0.006248,0.249922,0,0);-ms-transform:matrix(0.262208,-0.006555,0.006248,0.249922,0,0);-webkit-transform:matrix(0.262208,-0.006555,0.006248,0.249922,0,0);}
.m7e_c00341{transform:matrix(0.266992,-0.005073,0.004749,0.249955,0,0);-ms-transform:matrix(0.266992,-0.005073,0.004749,0.249955,0,0);-webkit-transform:matrix(0.266992,-0.005073,0.004749,0.249955,0,0);}
.m57_c00341{transform:matrix(0.269476,-0.006737,0.006248,0.249922,0,0);-ms-transform:matrix(0.269476,-0.006737,0.006248,0.249922,0,0);-webkit-transform:matrix(0.269476,-0.006737,0.006248,0.249922,0,0);}
.mab_c00341{transform:matrix(0.273634,-0.004105,0.003750,0.249972,0,0);-ms-transform:matrix(0.273634,-0.004105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273634,-0.004105,0.003750,0.249972,0,0);}
.m83_c00341{transform:matrix(0.296641,-0.005636,0.004749,0.249955,0,0);-ms-transform:matrix(0.296641,-0.005636,0.004749,0.249955,0,0);-webkit-transform:matrix(0.296641,-0.005636,0.004749,0.249955,0,0);}
.m93_c00341{transform:matrix(0.328028,-0.004920,0.003750,0.249972,0,0);-ms-transform:matrix(0.328028,-0.004920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.328028,-0.004920,0.003750,0.249972,0,0);}
.mf_c00341{transform:matrix(0.352660,-0.008816,0.006248,0.249922,0,0);-ms-transform:matrix(0.352660,-0.008816,0.006248,0.249922,0,0);-webkit-transform:matrix(0.352660,-0.008816,0.006248,0.249922,0,0);}
.md1_c00341{transform:matrix(0.405853,-0.009335,0.005748,0.249934,0,0);-ms-transform:matrix(0.405853,-0.009335,0.005748,0.249934,0,0);-webkit-transform:matrix(0.405853,-0.009335,0.005748,0.249934,0,0);}
.m9c_c00341{transform:matrix(0.435091,-0.006526,0.003750,0.249972,0,0);-ms-transform:matrix(0.435091,-0.006526,0.003750,0.249972,0,0);-webkit-transform:matrix(0.435091,-0.006526,0.003750,0.249972,0,0);}
.ma_c00341{transform:matrix(0.494710,-0.012368,0.006248,0.249922,0,0);-ms-transform:matrix(0.494710,-0.012368,0.006248,0.249922,0,0);-webkit-transform:matrix(0.494710,-0.012368,0.006248,0.249922,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:0.000000px;}
.fc0_c00341{color:transparent;}
.fsc_c00341{font-size:55.660044px;}
.fs8_c00341{font-size:55.667388px;}
.fsf_c00341{font-size:57.756497px;}
.fsd_c00341{font-size:57.760423px;}
.fs10_c00341{font-size:58.806615px;}
.fs13_c00341{font-size:58.815551px;}
.fs7_c00341{font-size:58.818372px;}
.fs4_c00341{font-size:59.868700px;}
.fs11_c00341{font-size:60.906851px;}
.fse_c00341{font-size:61.956969px;}
.fs3_c00341{font-size:61.969356px;}
.fs12_c00341{font-size:63.007087px;}
.fs5_c00341{font-size:63.019684px;}
.fs1_c00341{font-size:64.070012px;}
.fs9_c00341{font-size:65.120341px;}
.fsa_c00341{font-size:66.170669px;}
.fs2_c00341{font-size:67.220997px;}
.fs6_c00341{font-size:68.271325px;}
.fsb_c00341{font-size:92.422358px;}
.fs0_c00341{font-size:120.750000px;}
.y0_c00341{bottom:0.000000px;}
.yd5_c00341{bottom:24.573658px;}
.yd6_c00341{bottom:26.184503px;}
.yd7_c00341{bottom:26.954495px;}
.yd8_c00341{bottom:27.710256px;}
.yd9_c00341{bottom:28.203517px;}
.yda_c00341{bottom:29.002281px;}
.ydb_c00341{bottom:29.482363px;}
.ydc_c00341{bottom:30.544559px;}
.ycd_c00341{bottom:40.504500px;}
.yce_c00341{bottom:41.169212px;}
.ycf_c00341{bottom:41.873460px;}
.yd0_c00341{bottom:42.692835px;}
.yd1_c00341{bottom:43.601117px;}
.yd2_c00341{bottom:44.128690px;}
.yd3_c00341{bottom:44.762076px;}
.yd4_c00341{bottom:46.284975px;}
.yc5_c00341{bottom:57.498075px;}
.yc6_c00341{bottom:57.873967px;}
.yc7_c00341{bottom:58.713390px;}
.yc8_c00341{bottom:60.014992px;}
.yc9_c00341{bottom:60.459472px;}
.yca_c00341{bottom:61.317877px;}
.ycb_c00341{bottom:61.616340px;}
.ycc_c00341{bottom:62.789265px;}
.ybc_c00341{bottom:74.240497px;}
.ybd_c00341{bottom:74.839462px;}
.ybe_c00341{bottom:75.236865px;}
.ybf_c00341{bottom:76.119937px;}
.yc0_c00341{bottom:76.567830px;}
.yc1_c00341{bottom:77.076727px;}
.yc2_c00341{bottom:78.492127px;}
.yc3_c00341{bottom:79.757017px;}
.yc4_c00341{bottom:80.590635px;}
.yb6_c00341{bottom:91.256070px;}
.yb7_c00341{bottom:92.823952px;}
.yb8_c00341{bottom:93.263220px;}
.yb9_c00341{bottom:94.747905px;}
.yba_c00341{bottom:96.620370px;}
.ybb_c00341{bottom:97.191382px;}
.yb0_c00341{bottom:111.502837px;}
.yb1_c00341{bottom:112.451842px;}
.yb2_c00341{bottom:113.008867px;}
.yb3_c00341{bottom:114.386947px;}
.yb4_c00341{bottom:114.577410px;}
.yb5_c00341{bottom:115.507890px;}
.ya6_c00341{bottom:129.591637px;}
.ya7_c00341{bottom:129.905168px;}
.ya8_c00341{bottom:130.168980px;}
.ya9_c00341{bottom:130.934745px;}
.yaa_c00341{bottom:131.240617px;}
.yab_c00341{bottom:131.857950px;}
.yac_c00341{bottom:132.263100px;}
.yad_c00341{bottom:132.760867px;}
.yae_c00341{bottom:132.923017px;}
.yaf_c00341{bottom:133.326975px;}
.y9f_c00341{bottom:142.563292px;}
.ya0_c00341{bottom:144.251332px;}
.ya1_c00341{bottom:144.709845px;}
.ya2_c00341{bottom:146.342287px;}
.ya3_c00341{bottom:148.305023px;}
.ya4_c00341{bottom:148.804425px;}
.ya5_c00341{bottom:149.243692px;}
.y97_c00341{bottom:160.382250px;}
.y98_c00341{bottom:161.121615px;}
.y99_c00341{bottom:162.373530px;}
.y9a_c00341{bottom:162.744247px;}
.y9b_c00341{bottom:163.059952px;}
.y9c_c00341{bottom:164.007135px;}
.y9d_c00341{bottom:164.357257px;}
.y9e_c00341{bottom:164.968770px;}
.y8e_c00341{bottom:179.283000px;}
.y8f_c00341{bottom:179.664015px;}
.y90_c00341{bottom:180.299910px;}
.y91_c00341{bottom:180.603750px;}
.y92_c00341{bottom:180.959070px;}
.y93_c00341{bottom:181.543305px;}
.y94_c00341{bottom:181.875360px;}
.y95_c00341{bottom:182.738527px;}
.y96_c00341{bottom:182.924557px;}
.y8c_c00341{bottom:212.222459px;}
.y8d_c00341{bottom:218.774548px;}
.y84_c00341{bottom:229.769709px;}
.y85_c00341{bottom:230.112541px;}
.y86_c00341{bottom:230.646512px;}
.y87_c00341{bottom:230.997915px;}
.y88_c00341{bottom:231.723404px;}
.y89_c00341{bottom:232.376808px;}
.y8a_c00341{bottom:232.668574px;}
.y8b_c00341{bottom:233.508375px;}
.y7d_c00341{bottom:245.436000px;}
.y7e_c00341{bottom:246.609288px;}
.y7f_c00341{bottom:247.057564px;}
.y80_c00341{bottom:248.446483px;}
.y81_c00341{bottom:249.251951px;}
.y82_c00341{bottom:249.602671px;}
.y83_c00341{bottom:250.833074px;}
.y7a_c00341{bottom:277.564500px;}
.y7b_c00341{bottom:277.880112px;}
.y7c_c00341{bottom:279.967989px;}
.y70_c00341{bottom:329.069400px;}
.y71_c00341{bottom:330.012375px;}
.y72_c00341{bottom:330.378638px;}
.y73_c00341{bottom:330.668063px;}
.y74_c00341{bottom:331.680788px;}
.y75_c00341{bottom:332.342213px;}
.y76_c00341{bottom:332.913713px;}
.y77_c00341{bottom:333.375000px;}
.y78_c00341{bottom:334.009463px;}
.y79_c00341{bottom:334.795950px;}
.y66_c00341{bottom:346.354163px;}
.y67_c00341{bottom:347.631713px;}
.y68_c00341{bottom:348.111975px;}
.y69_c00341{bottom:349.043700px;}
.y6a_c00341{bottom:349.615575px;}
.y6b_c00341{bottom:350.137688px;}
.y6c_c00341{bottom:350.555400px;}
.y6d_c00341{bottom:351.959963px;}
.y6e_c00341{bottom:352.526963px;}
.y6f_c00341{bottom:353.145075px;}
.y5e_c00341{bottom:364.450725px;}
.y5f_c00341{bottom:365.431575px;}
.y60_c00341{bottom:365.783063px;}
.y61_c00341{bottom:366.661913px;}
.y62_c00341{bottom:368.101650px;}
.y63_c00341{bottom:368.526788px;}
.y64_c00341{bottom:368.912175px;}
.y65_c00341{bottom:370.243838px;}
.y55_c00341{bottom:381.466575px;}
.y56_c00341{bottom:382.135125px;}
.y57_c00341{bottom:382.650225px;}
.y58_c00341{bottom:384.070125px;}
.y59_c00341{bottom:385.393238px;}
.y5a_c00341{bottom:385.915988px;}
.y5b_c00341{bottom:386.335763px;}
.y5c_c00341{bottom:386.672588px;}
.y5d_c00341{bottom:387.071513px;}
.y4f_c00341{bottom:399.021075px;}
.y50_c00341{bottom:400.399538px;}
.y51_c00341{bottom:401.759663px;}
.y52_c00341{bottom:402.909375px;}
.y53_c00341{bottom:403.963238px;}
.y54_c00341{bottom:404.637338px;}
.y47_c00341{bottom:415.765388px;}
.y48_c00341{bottom:416.206688px;}
.y49_c00341{bottom:416.869200px;}
.y4a_c00341{bottom:418.472888px;}
.y4b_c00341{bottom:419.527388px;}
.y4c_c00341{bottom:420.042300px;}
.y4d_c00341{bottom:420.432638px;}
.y4e_c00341{bottom:420.878663px;}
.y3d_c00341{bottom:432.511613px;}
.y3e_c00341{bottom:433.225200px;}
.y3f_c00341{bottom:433.498875px;}
.y40_c00341{bottom:433.770713px;}
.y41_c00341{bottom:434.145750px;}
.y42_c00341{bottom:435.359775px;}
.y43_c00341{bottom:435.847725px;}
.y44_c00341{bottom:436.924575px;}
.y45_c00341{bottom:437.342325px;}
.y46_c00341{bottom:438.329775px;}
.y35_c00341{bottom:449.528250px;}
.y36_c00341{bottom:449.891588px;}
.y37_c00341{bottom:451.303725px;}
.y38_c00341{bottom:452.137463px;}
.y39_c00341{bottom:453.276975px;}
.y3a_c00341{bottom:454.194600px;}
.y3b_c00341{bottom:454.444237px;}
.y3c_c00341{bottom:454.777425px;}
.y2c_c00341{bottom:466.272563px;}
.y2d_c00341{bottom:466.829400px;}
.y2e_c00341{bottom:467.161650px;}
.y2f_c00341{bottom:467.593875px;}
.y30_c00341{bottom:468.154313px;}
.y31_c00341{bottom:469.883250px;}
.y32_c00341{bottom:470.318287px;}
.y33_c00341{bottom:470.678963px;}
.y34_c00341{bottom:472.810200px;}
.y23_c00341{bottom:483.016050px;}
.y24_c00341{bottom:484.052400px;}
.y25_c00341{bottom:484.621800px;}
.y26_c00341{bottom:484.956975px;}
.y27_c00341{bottom:485.340525px;}
.y28_c00341{bottom:485.825475px;}
.y29_c00341{bottom:487.628700px;}
.y2a_c00341{bottom:488.029088px;}
.y2b_c00341{bottom:488.439525px;}
.y1a_c00341{bottom:500.298937px;}
.y1b_c00341{bottom:500.601937px;}
.y1c_c00341{bottom:502.170488px;}
.y1d_c00341{bottom:502.772250px;}
.y1e_c00341{bottom:503.217600px;}
.y1f_c00341{bottom:504.349463px;}
.y20_c00341{bottom:504.777000px;}
.y21_c00341{bottom:505.162538px;}
.y22_c00341{bottom:506.029050px;}
.y13_c00341{bottom:515.970300px;}
.y14_c00341{bottom:517.670925px;}
.y15_c00341{bottom:518.568900px;}
.y16_c00341{bottom:519.190200px;}
.y17_c00341{bottom:520.200713px;}
.y18_c00341{bottom:520.803638px;}
.y19_c00341{bottom:521.708700px;}
.ya_c00341{bottom:532.980375px;}
.yb_c00341{bottom:533.985000px;}
.yc_c00341{bottom:534.767663px;}
.yd_c00341{bottom:536.156663px;}
.ye_c00341{bottom:537.675300px;}
.yf_c00341{bottom:538.131562px;}
.y10_c00341{bottom:539.564662px;}
.y11_c00341{bottom:539.873737px;}
.y12_c00341{bottom:540.302362px;}
.y2_c00341{bottom:550.536000px;}
.y3_c00341{bottom:551.726850px;}
.y4_c00341{bottom:552.031012px;}
.y5_c00341{bottom:553.148812px;}
.y6_c00341{bottom:553.820888px;}
.y7_c00341{bottom:555.656475px;}
.y8_c00341{bottom:556.828763px;}
.y9_c00341{bottom:557.412638px;}
.y1_c00341{bottom:567.673500px;}
.he_c00341{height:55.660044px;}
.ha_c00341{height:55.667388px;}
.h11_c00341{height:57.756497px;}
.hf_c00341{height:57.760423px;}
.h12_c00341{height:58.806615px;}
.h15_c00341{height:58.815551px;}
.h9_c00341{height:58.818372px;}
.h6_c00341{height:59.868700px;}
.h13_c00341{height:60.906851px;}
.h10_c00341{height:61.956969px;}
.h5_c00341{height:61.969356px;}
.h14_c00341{height:63.007087px;}
.h7_c00341{height:63.019684px;}
.h3_c00341{height:64.070012px;}
.hb_c00341{height:65.120341px;}
.hc_c00341{height:66.170669px;}
.h4_c00341{height:67.220997px;}
.h8_c00341{height:68.271325px;}
.hd_c00341{height:92.422358px;}
.h2_c00341{height:120.750000px;}
.h0_c00341{height:613.170000px;}
.h1_c00341{height:613.500000px;}
.w0_c00341{width:359.100000px;}
.w1_c00341{width:359.250000px;}
.x0_c00341{left:0.000000px;}
.x9_c00341{left:40.723425px;}
.x2_c00341{left:44.232000px;}
.x12_c00341{left:45.468375px;}
.x4c_c00341{left:56.514338px;}
.x17_c00341{left:60.767400px;}
.x2b_c00341{left:62.641537px;}
.x53_c00341{left:68.696183px;}
.x25_c00341{left:69.835350px;}
.x61_c00341{left:73.354500px;}
.x39_c00341{left:78.205612px;}
.xa_c00341{left:79.347450px;}
.x26_c00341{left:84.266062px;}
.x48_c00341{left:86.242277px;}
.x54_c00341{left:88.984290px;}
.x3_c00341{left:91.866000px;}
.x1d_c00341{left:94.680562px;}
.x45_c00341{left:97.966500px;}
.x5e_c00341{left:99.652283px;}
.x43_c00341{left:102.464137px;}
.x4_c00341{left:104.032500px;}
.x34_c00341{left:107.178900px;}
.xb_c00341{left:109.453200px;}
.x52_c00341{left:112.401870px;}
.x13_c00341{left:113.493375px;}
.x3f_c00341{left:114.592387px;}
.x1e_c00341{left:121.779262px;}
.x49_c00341{left:124.375896px;}
.x27_c00341{left:127.394700px;}
.x2c_c00341{left:129.873750px;}
.x18_c00341{left:135.456862px;}
.x1f_c00341{left:137.707837px;}
.x62_c00341{left:139.599000px;}
.x5b_c00341{left:144.790680px;}
.x5_c00341{left:148.744500px;}
.x3c_c00341{left:150.729000px;}
.x40_c00341{left:151.861387px;}
.x20_c00341{left:155.991675px;}
.x4d_c00341{left:158.161500px;}
.xc_c00341{left:162.851850px;}
.x19_c00341{left:164.090212px;}
.x5c_c00341{left:166.914525px;}
.x2d_c00341{left:169.587225px;}
.x55_c00341{left:171.329243px;}
.x14_c00341{left:174.264375px;}
.x1_c00341{left:176.580000px;}
.x21_c00341{left:179.051962px;}
.x31_c00341{left:180.385650px;}
.x36_c00341{left:182.001637px;}
.x59_c00341{left:183.931845px;}
.x1a_c00341{left:185.266312px;}
.x64_c00341{left:190.336404px;}
.x46_c00341{left:192.870000px;}
.x35_c00341{left:196.302000px;}
.x44_c00341{left:199.154400px;}
.x4a_c00341{left:201.351221px;}
.x28_c00341{left:202.555950px;}
.x32_c00341{left:203.625975px;}
.x41_c00341{left:212.329387px;}
.x15_c00341{left:214.684875px;}
.x5f_c00341{left:218.072363px;}
.x3d_c00341{left:219.305362px;}
.xd_c00341{left:221.255887px;}
.x65_c00341{left:222.259420px;}
.x2e_c00341{left:223.873162px;}
.x5d_c00341{left:228.467145px;}
.x63_c00341{left:229.566000px;}
.x60_c00341{left:231.668445px;}
.x29_c00341{left:237.146175px;}
.xe_c00341{left:238.785937px;}
.x3a_c00341{left:241.190512px;}
.x4e_c00341{left:242.935500px;}
.x47_c00341{left:246.247500px;}
.x6_c00341{left:249.051000px;}
.x57_c00341{left:250.121715px;}
.x33_c00341{left:254.925112px;}
.x3e_c00341{left:257.910225px;}
.x1b_c00341{left:259.529737px;}
.x58_c00341{left:263.719418px;}
.x22_c00341{left:264.929550px;}
.x51_c00341{left:265.929885px;}
.x2f_c00341{left:267.602550px;}
.x4b_c00341{left:268.866633px;}
.x16_c00341{left:275.004375px;}
.x1c_c00341{left:277.893075px;}
.x30_c00341{left:279.509250px;}
.x5a_c00341{left:281.715698px;}
.x23_c00341{left:284.006962px;}
.x3b_c00341{left:288.317400px;}
.x37_c00341{left:292.178400px;}
.xf_c00341{left:293.888550px;}
.x7_c00341{left:295.942500px;}
.x4f_c00341{left:300.480000px;}
.x24_c00341{left:303.546412px;}
.x10_c00341{left:305.771250px;}
.x50_c00341{left:312.882000px;}
.x42_c00341{left:315.916387px;}
.x8_c00341{left:319.297500px;}
.x11_c00341{left:322.255837px;}
.x38_c00341{left:325.866600px;}
.x2a_c00341{left:329.780287px;}
.x56_c00341{left:331.724535px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.fsc_c00341{font-size:49.475595pt;}
.fs8_c00341{font-size:49.482123pt;}
.fsf_c00341{font-size:51.339108pt;}
.fsd_c00341{font-size:51.342598pt;}
.fs10_c00341{font-size:52.272546pt;}
.fs13_c00341{font-size:52.280489pt;}
.fs7_c00341{font-size:52.282997pt;}
.fs4_c00341{font-size:53.216622pt;}
.fs11_c00341{font-size:54.139423pt;}
.fse_c00341{font-size:55.072861pt;}
.fs3_c00341{font-size:55.083872pt;}
.fs12_c00341{font-size:56.006300pt;}
.fs5_c00341{font-size:56.017497pt;}
.fs1_c00341{font-size:56.951122pt;}
.fs9_c00341{font-size:57.884747pt;}
.fsa_c00341{font-size:58.818372pt;}
.fs2_c00341{font-size:59.751997pt;}
.fs6_c00341{font-size:60.685622pt;}
.fsb_c00341{font-size:82.153207pt;}
.fs0_c00341{font-size:107.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.yd5_c00341{bottom:21.843252pt;}
.yd6_c00341{bottom:23.275113pt;}
.yd7_c00341{bottom:23.959551pt;}
.yd8_c00341{bottom:24.631339pt;}
.yd9_c00341{bottom:25.069793pt;}
.yda_c00341{bottom:25.779805pt;}
.ydb_c00341{bottom:26.206545pt;}
.ydc_c00341{bottom:27.150719pt;}
.ycd_c00341{bottom:36.004000pt;}
.yce_c00341{bottom:36.594855pt;}
.ycf_c00341{bottom:37.220853pt;}
.yd0_c00341{bottom:37.949187pt;}
.yd1_c00341{bottom:38.756548pt;}
.yd2_c00341{bottom:39.225503pt;}
.yd3_c00341{bottom:39.788512pt;}
.yd4_c00341{bottom:41.142200pt;}
.yc5_c00341{bottom:51.109400pt;}
.yc6_c00341{bottom:51.443527pt;}
.yc7_c00341{bottom:52.189680pt;}
.yc8_c00341{bottom:53.346660pt;}
.yc9_c00341{bottom:53.741753pt;}
.yca_c00341{bottom:54.504780pt;}
.ycb_c00341{bottom:54.770080pt;}
.ycc_c00341{bottom:55.812680pt;}
.ybc_c00341{bottom:65.991553pt;}
.ybd_c00341{bottom:66.523967pt;}
.ybe_c00341{bottom:66.877213pt;}
.ybf_c00341{bottom:67.662167pt;}
.yc0_c00341{bottom:68.060293pt;}
.yc1_c00341{bottom:68.512647pt;}
.yc2_c00341{bottom:69.770780pt;}
.yc3_c00341{bottom:70.895127pt;}
.yc4_c00341{bottom:71.636120pt;}
.yb6_c00341{bottom:81.116507pt;}
.yb7_c00341{bottom:82.510180pt;}
.yb8_c00341{bottom:82.900640pt;}
.yb9_c00341{bottom:84.220360pt;}
.yba_c00341{bottom:85.884773pt;}
.ybb_c00341{bottom:86.392340pt;}
.yb0_c00341{bottom:99.113633pt;}
.yb1_c00341{bottom:99.957193pt;}
.yb2_c00341{bottom:100.452327pt;}
.yb3_c00341{bottom:101.677287pt;}
.yb4_c00341{bottom:101.846587pt;}
.yb5_c00341{bottom:102.673680pt;}
.ya6_c00341{bottom:115.192567pt;}
.ya7_c00341{bottom:115.471260pt;}
.ya8_c00341{bottom:115.705760pt;}
.ya9_c00341{bottom:116.386440pt;}
.yaa_c00341{bottom:116.658327pt;}
.yab_c00341{bottom:117.207067pt;}
.yac_c00341{bottom:117.567200pt;}
.yad_c00341{bottom:118.009660pt;}
.yae_c00341{bottom:118.153793pt;}
.yaf_c00341{bottom:118.512867pt;}
.y9f_c00341{bottom:126.722927pt;}
.ya0_c00341{bottom:128.223407pt;}
.ya1_c00341{bottom:128.630973pt;}
.ya2_c00341{bottom:130.082033pt;}
.ya3_c00341{bottom:131.826687pt;}
.ya4_c00341{bottom:132.270600pt;}
.ya5_c00341{bottom:132.661060pt;}
.y97_c00341{bottom:142.562000pt;}
.y98_c00341{bottom:143.219213pt;}
.y99_c00341{bottom:144.332027pt;}
.y9a_c00341{bottom:144.661553pt;}
.y9b_c00341{bottom:144.942180pt;}
.y9c_c00341{bottom:145.784120pt;}
.y9d_c00341{bottom:146.095340pt;}
.y9e_c00341{bottom:146.638907pt;}
.y8e_c00341{bottom:159.362667pt;}
.y8f_c00341{bottom:159.701347pt;}
.y90_c00341{bottom:160.266587pt;}
.y91_c00341{bottom:160.536667pt;}
.y92_c00341{bottom:160.852507pt;}
.y93_c00341{bottom:161.371827pt;}
.y94_c00341{bottom:161.666987pt;}
.y95_c00341{bottom:162.434247pt;}
.y96_c00341{bottom:162.599607pt;}
.y8c_c00341{bottom:188.642185pt;}
.y8d_c00341{bottom:194.466265pt;}
.y84_c00341{bottom:204.239741pt;}
.y85_c00341{bottom:204.544481pt;}
.y86_c00341{bottom:205.019121pt;}
.y87_c00341{bottom:205.331480pt;}
.y88_c00341{bottom:205.976359pt;}
.y89_c00341{bottom:206.557163pt;}
.y8a_c00341{bottom:206.816511pt;}
.y8b_c00341{bottom:207.563000pt;}
.y7d_c00341{bottom:218.165333pt;}
.y7e_c00341{bottom:219.208256pt;}
.y7f_c00341{bottom:219.606724pt;}
.y80_c00341{bottom:220.841319pt;}
.y81_c00341{bottom:221.557289pt;}
.y82_c00341{bottom:221.869041pt;}
.y83_c00341{bottom:222.962732pt;}
.y7a_c00341{bottom:246.724000pt;}
.y7b_c00341{bottom:247.004544pt;}
.y7c_c00341{bottom:248.860435pt;}
.y70_c00341{bottom:292.506133pt;}
.y71_c00341{bottom:293.344333pt;}
.y72_c00341{bottom:293.669900pt;}
.y73_c00341{bottom:293.927167pt;}
.y74_c00341{bottom:294.827367pt;}
.y75_c00341{bottom:295.415300pt;}
.y76_c00341{bottom:295.923300pt;}
.y77_c00341{bottom:296.333333pt;}
.y78_c00341{bottom:296.897300pt;}
.y79_c00341{bottom:297.596400pt;}
.y66_c00341{bottom:307.870367pt;}
.y67_c00341{bottom:309.005967pt;}
.y68_c00341{bottom:309.432867pt;}
.y69_c00341{bottom:310.261067pt;}
.y6a_c00341{bottom:310.769400pt;}
.y6b_c00341{bottom:311.233500pt;}
.y6c_c00341{bottom:311.604800pt;}
.y6d_c00341{bottom:312.853300pt;}
.y6e_c00341{bottom:313.357300pt;}
.y6f_c00341{bottom:313.906733pt;}
.y5e_c00341{bottom:323.956200pt;}
.y5f_c00341{bottom:324.828067pt;}
.y60_c00341{bottom:325.140500pt;}
.y61_c00341{bottom:325.921700pt;}
.y62_c00341{bottom:327.201467pt;}
.y63_c00341{bottom:327.579367pt;}
.y64_c00341{bottom:327.921933pt;}
.y65_c00341{bottom:329.105633pt;}
.y55_c00341{bottom:339.081400pt;}
.y56_c00341{bottom:339.675667pt;}
.y57_c00341{bottom:340.133533pt;}
.y58_c00341{bottom:341.395667pt;}
.y59_c00341{bottom:342.571767pt;}
.y5a_c00341{bottom:343.036433pt;}
.y5b_c00341{bottom:343.409567pt;}
.y5c_c00341{bottom:343.708967pt;}
.y5d_c00341{bottom:344.063567pt;}
.y4f_c00341{bottom:354.685400pt;}
.y50_c00341{bottom:355.910700pt;}
.y51_c00341{bottom:357.119700pt;}
.y52_c00341{bottom:358.141667pt;}
.y53_c00341{bottom:359.078433pt;}
.y54_c00341{bottom:359.677633pt;}
.y47_c00341{bottom:369.569233pt;}
.y48_c00341{bottom:369.961500pt;}
.y49_c00341{bottom:370.550400pt;}
.y4a_c00341{bottom:371.975900pt;}
.y4b_c00341{bottom:372.913233pt;}
.y4c_c00341{bottom:373.370933pt;}
.y4d_c00341{bottom:373.717900pt;}
.y4e_c00341{bottom:374.114367pt;}
.y3d_c00341{bottom:384.454767pt;}
.y3e_c00341{bottom:385.089067pt;}
.y3f_c00341{bottom:385.332333pt;}
.y40_c00341{bottom:385.573967pt;}
.y41_c00341{bottom:385.907333pt;}
.y42_c00341{bottom:386.986467pt;}
.y43_c00341{bottom:387.420200pt;}
.y44_c00341{bottom:388.377400pt;}
.y45_c00341{bottom:388.748733pt;}
.y46_c00341{bottom:389.626467pt;}
.y35_c00341{bottom:399.580667pt;}
.y36_c00341{bottom:399.903633pt;}
.y37_c00341{bottom:401.158867pt;}
.y38_c00341{bottom:401.899967pt;}
.y39_c00341{bottom:402.912867pt;}
.y3a_c00341{bottom:403.728533pt;}
.y3b_c00341{bottom:403.950433pt;}
.y3c_c00341{bottom:404.246600pt;}
.y2c_c00341{bottom:414.464500pt;}
.y2d_c00341{bottom:414.959467pt;}
.y2e_c00341{bottom:415.254800pt;}
.y2f_c00341{bottom:415.639000pt;}
.y30_c00341{bottom:416.137167pt;}
.y31_c00341{bottom:417.674000pt;}
.y32_c00341{bottom:418.060700pt;}
.y33_c00341{bottom:418.381300pt;}
.y34_c00341{bottom:420.275733pt;}
.y23_c00341{bottom:429.347600pt;}
.y24_c00341{bottom:430.268800pt;}
.y25_c00341{bottom:430.774933pt;}
.y26_c00341{bottom:431.072867pt;}
.y27_c00341{bottom:431.413800pt;}
.y28_c00341{bottom:431.844867pt;}
.y29_c00341{bottom:433.447733pt;}
.y2a_c00341{bottom:433.803633pt;}
.y2b_c00341{bottom:434.168467pt;}
.y1a_c00341{bottom:444.710167pt;}
.y1b_c00341{bottom:444.979500pt;}
.y1c_c00341{bottom:446.373767pt;}
.y1d_c00341{bottom:446.908667pt;}
.y1e_c00341{bottom:447.304533pt;}
.y1f_c00341{bottom:448.310633pt;}
.y20_c00341{bottom:448.690667pt;}
.y21_c00341{bottom:449.033367pt;}
.y22_c00341{bottom:449.803600pt;}
.y13_c00341{bottom:458.640267pt;}
.y14_c00341{bottom:460.151933pt;}
.y15_c00341{bottom:460.950133pt;}
.y16_c00341{bottom:461.502400pt;}
.y17_c00341{bottom:462.400633pt;}
.y18_c00341{bottom:462.936567pt;}
.y19_c00341{bottom:463.741067pt;}
.ya_c00341{bottom:473.760333pt;}
.yb_c00341{bottom:474.653333pt;}
.yc_c00341{bottom:475.349033pt;}
.yd_c00341{bottom:476.583700pt;}
.ye_c00341{bottom:477.933600pt;}
.yf_c00341{bottom:478.339167pt;}
.y10_c00341{bottom:479.613033pt;}
.y11_c00341{bottom:479.887767pt;}
.y12_c00341{bottom:480.268767pt;}
.y2_c00341{bottom:489.365333pt;}
.y3_c00341{bottom:490.423867pt;}
.y4_c00341{bottom:490.694233pt;}
.y5_c00341{bottom:491.687833pt;}
.y6_c00341{bottom:492.285233pt;}
.y7_c00341{bottom:493.916867pt;}
.y8_c00341{bottom:494.958900pt;}
.y9_c00341{bottom:495.477900pt;}
.y1_c00341{bottom:504.598667pt;}
.he_c00341{height:49.475595pt;}
.ha_c00341{height:49.482123pt;}
.h11_c00341{height:51.339108pt;}
.hf_c00341{height:51.342598pt;}
.h12_c00341{height:52.272546pt;}
.h15_c00341{height:52.280489pt;}
.h9_c00341{height:52.282997pt;}
.h6_c00341{height:53.216622pt;}
.h13_c00341{height:54.139423pt;}
.h10_c00341{height:55.072861pt;}
.h5_c00341{height:55.083872pt;}
.h14_c00341{height:56.006300pt;}
.h7_c00341{height:56.017497pt;}
.h3_c00341{height:56.951122pt;}
.hb_c00341{height:57.884747pt;}
.hc_c00341{height:58.818372pt;}
.h4_c00341{height:59.751997pt;}
.h8_c00341{height:60.685622pt;}
.hd_c00341{height:82.153207pt;}
.h2_c00341{height:107.333333pt;}
.h0_c00341{height:545.040000pt;}
.h1_c00341{height:545.333333pt;}
.w0_c00341{width:319.200000pt;}
.w1_c00341{width:319.333333pt;}
.x0_c00341{left:0.000000pt;}
.x9_c00341{left:36.198600pt;}
.x2_c00341{left:39.317333pt;}
.x12_c00341{left:40.416333pt;}
.x4c_c00341{left:50.234967pt;}
.x17_c00341{left:54.015467pt;}
.x2b_c00341{left:55.681367pt;}
.x53_c00341{left:61.063273pt;}
.x25_c00341{left:62.075867pt;}
.x61_c00341{left:65.204000pt;}
.x39_c00341{left:69.516100pt;}
.xa_c00341{left:70.531067pt;}
.x26_c00341{left:74.903167pt;}
.x48_c00341{left:76.659801pt;}
.x54_c00341{left:79.097147pt;}
.x3_c00341{left:81.658667pt;}
.x1d_c00341{left:84.160500pt;}
.x45_c00341{left:87.081333pt;}
.x5e_c00341{left:88.579807pt;}
.x43_c00341{left:91.079233pt;}
.x4_c00341{left:92.473333pt;}
.x34_c00341{left:95.270133pt;}
.xb_c00341{left:97.291733pt;}
.x52_c00341{left:99.912773pt;}
.x13_c00341{left:100.883000pt;}
.x3f_c00341{left:101.859900pt;}
.x1e_c00341{left:108.248233pt;}
.x49_c00341{left:110.556352pt;}
.x27_c00341{left:113.239733pt;}
.x2c_c00341{left:115.443333pt;}
.x18_c00341{left:120.406100pt;}
.x1f_c00341{left:122.406967pt;}
.x62_c00341{left:124.088000pt;}
.x5b_c00341{left:128.702827pt;}
.x5_c00341{left:132.217333pt;}
.x3c_c00341{left:133.981333pt;}
.x40_c00341{left:134.987900pt;}
.x20_c00341{left:138.659267pt;}
.x4d_c00341{left:140.588000pt;}
.xc_c00341{left:144.757200pt;}
.x19_c00341{left:145.857967pt;}
.x5c_c00341{left:148.368467pt;}
.x2d_c00341{left:150.744200pt;}
.x55_c00341{left:152.292660pt;}
.x14_c00341{left:154.901667pt;}
.x1_c00341{left:156.960000pt;}
.x21_c00341{left:159.157300pt;}
.x31_c00341{left:160.342800pt;}
.x36_c00341{left:161.779233pt;}
.x59_c00341{left:163.494973pt;}
.x1a_c00341{left:164.681167pt;}
.x64_c00341{left:169.187915pt;}
.x46_c00341{left:171.440000pt;}
.x35_c00341{left:174.490667pt;}
.x44_c00341{left:177.026133pt;}
.x4a_c00341{left:178.978863pt;}
.x28_c00341{left:180.049733pt;}
.x32_c00341{left:181.000867pt;}
.x41_c00341{left:188.737233pt;}
.x15_c00341{left:190.831000pt;}
.x5f_c00341{left:193.842100pt;}
.x3d_c00341{left:194.938100pt;}
.xd_c00341{left:196.671900pt;}
.x65_c00341{left:197.563929pt;}
.x2e_c00341{left:198.998367pt;}
.x5d_c00341{left:203.081907pt;}
.x63_c00341{left:204.058667pt;}
.x60_c00341{left:205.927507pt;}
.x29_c00341{left:210.796600pt;}
.xe_c00341{left:212.254167pt;}
.x3a_c00341{left:214.391567pt;}
.x4e_c00341{left:215.942667pt;}
.x47_c00341{left:218.886667pt;}
.x6_c00341{left:221.378667pt;}
.x57_c00341{left:222.330413pt;}
.x33_c00341{left:226.600100pt;}
.x3e_c00341{left:229.253533pt;}
.x1b_c00341{left:230.693100pt;}
.x58_c00341{left:234.417260pt;}
.x22_c00341{left:235.492933pt;}
.x51_c00341{left:236.382120pt;}
.x2f_c00341{left:237.868933pt;}
.x4b_c00341{left:238.992563pt;}
.x16_c00341{left:244.448333pt;}
.x1c_c00341{left:247.016067pt;}
.x30_c00341{left:248.452667pt;}
.x5a_c00341{left:250.413953pt;}
.x23_c00341{left:252.450633pt;}
.x3b_c00341{left:256.282133pt;}
.x37_c00341{left:259.714133pt;}
.xf_c00341{left:261.234267pt;}
.x7_c00341{left:263.060000pt;}
.x4f_c00341{left:267.093333pt;}
.x24_c00341{left:269.819033pt;}
.x10_c00341{left:271.796667pt;}
.x50_c00341{left:278.117333pt;}
.x42_c00341{left:280.814567pt;}
.x8_c00341{left:283.820000pt;}
.x11_c00341{left:286.449633pt;}
.x38_c00341{left:289.659200pt;}
.x2a_c00341{left:293.138033pt;}
.x56_c00341{left:294.866253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00342 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00342 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00342 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00342 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00342.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00342{transform:matrix(0.025413,-0.000330,0.003250,0.249979,0,0);-ms-transform:matrix(0.025413,-0.000330,0.003250,0.249979,0,0);-webkit-transform:matrix(0.025413,-0.000330,0.003250,0.249979,0,0);}
.mad_c00342{transform:matrix(0.115075,-0.001496,0.003250,0.249979,0,0);-ms-transform:matrix(0.115075,-0.001496,0.003250,0.249979,0,0);-webkit-transform:matrix(0.115075,-0.001496,0.003250,0.249979,0,0);}
.m70_c00342{transform:matrix(0.123645,-0.001607,0.003250,0.249979,0,0);-ms-transform:matrix(0.123645,-0.001607,0.003250,0.249979,0,0);-webkit-transform:matrix(0.123645,-0.001607,0.003250,0.249979,0,0);}
.me0_c00342{transform:matrix(0.138528,-0.001801,0.003250,0.249979,0,0);-ms-transform:matrix(0.138528,-0.001801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138528,-0.001801,0.003250,0.249979,0,0);}
.maf_c00342{transform:matrix(0.148287,-0.001928,0.003250,0.249979,0,0);-ms-transform:matrix(0.148287,-0.001928,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148287,-0.001928,0.003250,0.249979,0,0);}
.m4e_c00342{transform:matrix(0.151307,-0.001967,0.003250,0.249979,0,0);-ms-transform:matrix(0.151307,-0.001967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151307,-0.001967,0.003250,0.249979,0,0);}
.m3_c00342{transform:matrix(0.153432,-0.001995,0.003250,0.249979,0,0);-ms-transform:matrix(0.153432,-0.001995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153432,-0.001995,0.003250,0.249979,0,0);}
.mc_c00342{transform:matrix(0.154462,-0.002008,0.003250,0.249979,0,0);-ms-transform:matrix(0.154462,-0.002008,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154462,-0.002008,0.003250,0.249979,0,0);}
.md_c00342{transform:matrix(0.154812,-0.002013,0.003250,0.249979,0,0);-ms-transform:matrix(0.154812,-0.002013,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154812,-0.002013,0.003250,0.249979,0,0);}
.m23_c00342{transform:matrix(0.156167,-0.002030,0.003250,0.249979,0,0);-ms-transform:matrix(0.156167,-0.002030,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156167,-0.002030,0.003250,0.249979,0,0);}
.m5_c00342{transform:matrix(0.157582,-0.002049,0.003250,0.249979,0,0);-ms-transform:matrix(0.157582,-0.002049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157582,-0.002049,0.003250,0.249979,0,0);}
.m75_c00342{transform:matrix(0.159502,-0.002074,0.003250,0.249979,0,0);-ms-transform:matrix(0.159502,-0.002074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159502,-0.002074,0.003250,0.249979,0,0);}
.mba_c00342{transform:matrix(0.160176,-0.002082,0.003250,0.249979,0,0);-ms-transform:matrix(0.160176,-0.002082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160176,-0.002082,0.003250,0.249979,0,0);}
.mab_c00342{transform:matrix(0.160741,-0.002090,0.003250,0.249979,0,0);-ms-transform:matrix(0.160741,-0.002090,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160741,-0.002090,0.003250,0.249979,0,0);}
.m60_c00342{transform:matrix(0.161581,-0.002101,0.003250,0.249979,0,0);-ms-transform:matrix(0.161581,-0.002101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161581,-0.002101,0.003250,0.249979,0,0);}
.m65_c00342{transform:matrix(0.162216,-0.002109,0.003250,0.249979,0,0);-ms-transform:matrix(0.162216,-0.002109,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162216,-0.002109,0.003250,0.249979,0,0);}
.m69_c00342{transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);-ms-transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);}
.m7_c00342{transform:matrix(0.164226,-0.002135,0.003250,0.249979,0,0);-ms-transform:matrix(0.164226,-0.002135,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164226,-0.002135,0.003250,0.249979,0,0);}
.m66_c00342{transform:matrix(0.164636,-0.002140,0.003250,0.249979,0,0);-ms-transform:matrix(0.164636,-0.002140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164636,-0.002140,0.003250,0.249979,0,0);}
.m2_c00342{transform:matrix(0.166266,-0.002161,0.003250,0.249979,0,0);-ms-transform:matrix(0.166266,-0.002161,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166266,-0.002161,0.003250,0.249979,0,0);}
.m63_c00342{transform:matrix(0.167081,-0.002172,0.003250,0.249979,0,0);-ms-transform:matrix(0.167081,-0.002172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167081,-0.002172,0.003250,0.249979,0,0);}
.ma0_c00342{transform:matrix(0.167441,-0.002177,0.003250,0.249979,0,0);-ms-transform:matrix(0.167441,-0.002177,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167441,-0.002177,0.003250,0.249979,0,0);}
.m78_c00342{transform:matrix(0.167661,-0.002180,0.003250,0.249979,0,0);-ms-transform:matrix(0.167661,-0.002180,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167661,-0.002180,0.003250,0.249979,0,0);}
.m8c_c00342{transform:matrix(0.167876,-0.002182,0.003250,0.249979,0,0);-ms-transform:matrix(0.167876,-0.002182,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167876,-0.002182,0.003250,0.249979,0,0);}
.mb9_c00342{transform:matrix(0.169901,-0.002209,0.003250,0.249979,0,0);-ms-transform:matrix(0.169901,-0.002209,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169901,-0.002209,0.003250,0.249979,0,0);}
.m9d_c00342{transform:matrix(0.171421,-0.002228,0.003250,0.249979,0,0);-ms-transform:matrix(0.171421,-0.002228,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171421,-0.002228,0.003250,0.249979,0,0);}
.mb8_c00342{transform:matrix(0.171970,-0.002236,0.003250,0.249979,0,0);-ms-transform:matrix(0.171970,-0.002236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171970,-0.002236,0.003250,0.249979,0,0);}
.m6e_c00342{transform:matrix(0.172935,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172935,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172935,-0.002248,0.003250,0.249979,0,0);}
.m1_c00342{transform:matrix(0.173230,-0.002252,0.003250,0.249979,0,0);-ms-transform:matrix(0.173230,-0.002252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173230,-0.002252,0.003250,0.249979,0,0);}
.m43_c00342{transform:matrix(0.173535,-0.002256,0.003250,0.249979,0,0);-ms-transform:matrix(0.173535,-0.002256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173535,-0.002256,0.003250,0.249979,0,0);}
.m7b_c00342{transform:matrix(0.173540,-0.002256,0.003250,0.249979,0,0);-ms-transform:matrix(0.173540,-0.002256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173540,-0.002256,0.003250,0.249979,0,0);}
.m44_c00342{transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);}
.m68_c00342{transform:matrix(0.174295,-0.002266,0.003250,0.249979,0,0);-ms-transform:matrix(0.174295,-0.002266,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174295,-0.002266,0.003250,0.249979,0,0);}
.m1b_c00342{transform:matrix(0.174445,-0.002268,0.003250,0.249979,0,0);-ms-transform:matrix(0.174445,-0.002268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174445,-0.002268,0.003250,0.249979,0,0);}
.m54_c00342{transform:matrix(0.174620,-0.002270,0.003250,0.249979,0,0);-ms-transform:matrix(0.174620,-0.002270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174620,-0.002270,0.003250,0.249979,0,0);}
.m0_c00342{transform:matrix(0.174860,-0.002273,0.003250,0.249979,0,0);-ms-transform:matrix(0.174860,-0.002273,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174860,-0.002273,0.003250,0.249979,0,0);}
.m88_c00342{transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175070,-0.002276,0.003250,0.249979,0,0);}
.mac_c00342{transform:matrix(0.175735,-0.002285,0.003250,0.249979,0,0);-ms-transform:matrix(0.175735,-0.002285,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175735,-0.002285,0.003250,0.249979,0,0);}
.m99_c00342{transform:matrix(0.176460,-0.002294,0.003250,0.249979,0,0);-ms-transform:matrix(0.176460,-0.002294,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176460,-0.002294,0.003250,0.249979,0,0);}
.m97_c00342{transform:matrix(0.176885,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176885,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176885,-0.002300,0.003250,0.249979,0,0);}
.md3_c00342{transform:matrix(0.176930,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176930,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176930,-0.002300,0.003250,0.249979,0,0);}
.m7e_c00342{transform:matrix(0.177230,-0.002304,0.003250,0.249979,0,0);-ms-transform:matrix(0.177230,-0.002304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177230,-0.002304,0.003250,0.249979,0,0);}
.m79_c00342{transform:matrix(0.177300,-0.002305,0.003250,0.249979,0,0);-ms-transform:matrix(0.177300,-0.002305,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177300,-0.002305,0.003250,0.249979,0,0);}
.m93_c00342{transform:matrix(0.177765,-0.002311,0.003250,0.249979,0,0);-ms-transform:matrix(0.177765,-0.002311,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177765,-0.002311,0.003250,0.249979,0,0);}
.meb_c00342{transform:matrix(0.178435,-0.002320,0.003250,0.249979,0,0);-ms-transform:matrix(0.178435,-0.002320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178435,-0.002320,0.003250,0.249979,0,0);}
.m67_c00342{transform:matrix(0.178540,-0.002321,0.003250,0.249979,0,0);-ms-transform:matrix(0.178540,-0.002321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178540,-0.002321,0.003250,0.249979,0,0);}
.mb6_c00342{transform:matrix(0.178725,-0.002323,0.003250,0.249979,0,0);-ms-transform:matrix(0.178725,-0.002323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178725,-0.002323,0.003250,0.249979,0,0);}
.maa_c00342{transform:matrix(0.179195,-0.002330,0.003250,0.249979,0,0);-ms-transform:matrix(0.179195,-0.002330,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179195,-0.002330,0.003250,0.249979,0,0);}
.mc0_c00342{transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);-ms-transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179205,-0.002330,0.003250,0.249979,0,0);}
.mbb_c00342{transform:matrix(0.179755,-0.002337,0.003250,0.249979,0,0);-ms-transform:matrix(0.179755,-0.002337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179755,-0.002337,0.003250,0.249979,0,0);}
.m72_c00342{transform:matrix(0.180000,-0.002340,0.003250,0.249979,0,0);-ms-transform:matrix(0.180000,-0.002340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180000,-0.002340,0.003250,0.249979,0,0);}
.m2d_c00342{transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);-ms-transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180285,-0.002344,0.003250,0.249979,0,0);}
.m51_c00342{transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);-ms-transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180890,-0.002352,0.003250,0.249979,0,0);}
.m8e_c00342{transform:matrix(0.180915,-0.002352,0.003250,0.249979,0,0);-ms-transform:matrix(0.180915,-0.002352,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180915,-0.002352,0.003250,0.249979,0,0);}
.m64_c00342{transform:matrix(0.180980,-0.002353,0.003250,0.249979,0,0);-ms-transform:matrix(0.180980,-0.002353,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180980,-0.002353,0.003250,0.249979,0,0);}
.m6f_c00342{transform:matrix(0.181735,-0.002363,0.003250,0.249979,0,0);-ms-transform:matrix(0.181735,-0.002363,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181735,-0.002363,0.003250,0.249979,0,0);}
.m1e_c00342{transform:matrix(0.182025,-0.002366,0.003250,0.249979,0,0);-ms-transform:matrix(0.182025,-0.002366,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182025,-0.002366,0.003250,0.249979,0,0);}
.m2f_c00342{transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-ms-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);}
.m4a_c00342{transform:matrix(0.183075,-0.002380,0.003250,0.249979,0,0);-ms-transform:matrix(0.183075,-0.002380,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183075,-0.002380,0.003250,0.249979,0,0);}
.mbe_c00342{transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);}
.m1d_c00342{transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);}
.m86_c00342{transform:matrix(0.183325,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183325,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183325,-0.002383,0.003250,0.249979,0,0);}
.m5e_c00342{transform:matrix(0.183989,-0.002392,0.003250,0.249979,0,0);-ms-transform:matrix(0.183989,-0.002392,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183989,-0.002392,0.003250,0.249979,0,0);}
.mb4_c00342{transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184089,-0.002393,0.003250,0.249979,0,0);}
.mbf_c00342{transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-ms-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184349,-0.002397,0.003250,0.249979,0,0);}
.m98_c00342{transform:matrix(0.184794,-0.002402,0.003250,0.249979,0,0);-ms-transform:matrix(0.184794,-0.002402,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184794,-0.002402,0.003250,0.249979,0,0);}
.m46_c00342{transform:matrix(0.185309,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185309,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185309,-0.002409,0.003250,0.249979,0,0);}
.mc3_c00342{transform:matrix(0.186189,-0.002420,0.003250,0.249979,0,0);-ms-transform:matrix(0.186189,-0.002420,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186189,-0.002420,0.003250,0.249979,0,0);}
.m52_c00342{transform:matrix(0.187689,-0.002440,0.003250,0.249979,0,0);-ms-transform:matrix(0.187689,-0.002440,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187689,-0.002440,0.003250,0.249979,0,0);}
.me_c00342{transform:matrix(0.188029,-0.002444,0.003250,0.249979,0,0);-ms-transform:matrix(0.188029,-0.002444,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188029,-0.002444,0.003250,0.249979,0,0);}
.m45_c00342{transform:matrix(0.188299,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188299,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188299,-0.002448,0.003250,0.249979,0,0);}
.m8a_c00342{transform:matrix(0.188309,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188309,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188309,-0.002448,0.003250,0.249979,0,0);}
.m77_c00342{transform:matrix(0.188584,-0.002452,0.003250,0.249979,0,0);-ms-transform:matrix(0.188584,-0.002452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188584,-0.002452,0.003250,0.249979,0,0);}
.m61_c00342{transform:matrix(0.188599,-0.002452,0.003250,0.249979,0,0);-ms-transform:matrix(0.188599,-0.002452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188599,-0.002452,0.003250,0.249979,0,0);}
.mc7_c00342{transform:matrix(0.188894,-0.002456,0.003250,0.249979,0,0);-ms-transform:matrix(0.188894,-0.002456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188894,-0.002456,0.003250,0.249979,0,0);}
.m6b_c00342{transform:matrix(0.189164,-0.002459,0.003250,0.249979,0,0);-ms-transform:matrix(0.189164,-0.002459,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189164,-0.002459,0.003250,0.249979,0,0);}
.m91_c00342{transform:matrix(0.189349,-0.002462,0.003250,0.249979,0,0);-ms-transform:matrix(0.189349,-0.002462,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189349,-0.002462,0.003250,0.249979,0,0);}
.m89_c00342{transform:matrix(0.189589,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189589,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189589,-0.002465,0.003250,0.249979,0,0);}
.m80_c00342{transform:matrix(0.189769,-0.002467,0.003250,0.249979,0,0);-ms-transform:matrix(0.189769,-0.002467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189769,-0.002467,0.003250,0.249979,0,0);}
.m87_c00342{transform:matrix(0.189949,-0.002469,0.003250,0.249979,0,0);-ms-transform:matrix(0.189949,-0.002469,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189949,-0.002469,0.003250,0.249979,0,0);}
.m6_c00342{transform:matrix(0.190099,-0.002471,0.003250,0.249979,0,0);-ms-transform:matrix(0.190099,-0.002471,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190099,-0.002471,0.003250,0.249979,0,0);}
.m34_c00342{transform:matrix(0.190254,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190254,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190254,-0.002473,0.003250,0.249979,0,0);}
.ma9_c00342{transform:matrix(0.190419,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190419,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190419,-0.002475,0.003250,0.249979,0,0);}
.m6c_c00342{transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);}
.m71_c00342{transform:matrix(0.190709,-0.002479,0.003250,0.249979,0,0);-ms-transform:matrix(0.190709,-0.002479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190709,-0.002479,0.003250,0.249979,0,0);}
.mc8_c00342{transform:matrix(0.190724,-0.002479,0.003250,0.249979,0,0);-ms-transform:matrix(0.190724,-0.002479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190724,-0.002479,0.003250,0.249979,0,0);}
.mc2_c00342{transform:matrix(0.191044,-0.002484,0.003250,0.249979,0,0);-ms-transform:matrix(0.191044,-0.002484,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191044,-0.002484,0.003250,0.249979,0,0);}
.me7_c00342{transform:matrix(0.191519,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191519,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191519,-0.002490,0.003250,0.249979,0,0);}
.mae_c00342{transform:matrix(0.191704,-0.002492,0.003250,0.249979,0,0);-ms-transform:matrix(0.191704,-0.002492,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191704,-0.002492,0.003250,0.249979,0,0);}
.m53_c00342{transform:matrix(0.191864,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191864,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191864,-0.002494,0.003250,0.249979,0,0);}
.m4f_c00342{transform:matrix(0.191874,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191874,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191874,-0.002494,0.003250,0.249979,0,0);}
.m55_c00342{transform:matrix(0.192599,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192599,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192599,-0.002504,0.003250,0.249979,0,0);}
.mb_c00342{transform:matrix(0.193024,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.193024,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193024,-0.002509,0.003250,0.249979,0,0);}
.mbc_c00342{transform:matrix(0.193649,-0.002517,0.003250,0.249979,0,0);-ms-transform:matrix(0.193649,-0.002517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193649,-0.002517,0.003250,0.249979,0,0);}
.me9_c00342{transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);}
.m4_c00342{transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194029,-0.002522,0.003250,0.249979,0,0);}
.m41_c00342{transform:matrix(0.194459,-0.002528,0.003250,0.249979,0,0);-ms-transform:matrix(0.194459,-0.002528,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194459,-0.002528,0.003250,0.249979,0,0);}
.m9a_c00342{transform:matrix(0.194614,-0.002530,0.003250,0.249979,0,0);-ms-transform:matrix(0.194614,-0.002530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194614,-0.002530,0.003250,0.249979,0,0);}
.m76_c00342{transform:matrix(0.195678,-0.002544,0.003250,0.249979,0,0);-ms-transform:matrix(0.195678,-0.002544,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195678,-0.002544,0.003250,0.249979,0,0);}
.m90_c00342{transform:matrix(0.196123,-0.002550,0.003250,0.249979,0,0);-ms-transform:matrix(0.196123,-0.002550,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196123,-0.002550,0.003250,0.249979,0,0);}
.ma_c00342{transform:matrix(0.196313,-0.002552,0.003250,0.249979,0,0);-ms-transform:matrix(0.196313,-0.002552,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196313,-0.002552,0.003250,0.249979,0,0);}
.m96_c00342{transform:matrix(0.196553,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196553,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196553,-0.002555,0.003250,0.249979,0,0);}
.m9f_c00342{transform:matrix(0.196568,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196568,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196568,-0.002555,0.003250,0.249979,0,0);}
.m50_c00342{transform:matrix(0.197768,-0.002571,0.003250,0.249979,0,0);-ms-transform:matrix(0.197768,-0.002571,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197768,-0.002571,0.003250,0.249979,0,0);}
.mb5_c00342{transform:matrix(0.197903,-0.002573,0.003250,0.249979,0,0);-ms-transform:matrix(0.197903,-0.002573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197903,-0.002573,0.003250,0.249979,0,0);}
.m21_c00342{transform:matrix(0.197988,-0.002574,0.003250,0.249979,0,0);-ms-transform:matrix(0.197988,-0.002574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197988,-0.002574,0.003250,0.249979,0,0);}
.m57_c00342{transform:matrix(0.198048,-0.002575,0.003250,0.249979,0,0);-ms-transform:matrix(0.198048,-0.002575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198048,-0.002575,0.003250,0.249979,0,0);}
.m2e_c00342{transform:matrix(0.198083,-0.002575,0.003250,0.249979,0,0);-ms-transform:matrix(0.198083,-0.002575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198083,-0.002575,0.003250,0.249979,0,0);}
.med_c00342{transform:matrix(0.198453,-0.002580,0.003250,0.249979,0,0);-ms-transform:matrix(0.198453,-0.002580,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198453,-0.002580,0.003250,0.249979,0,0);}
.mea_c00342{transform:matrix(0.198688,-0.002583,0.003250,0.249979,0,0);-ms-transform:matrix(0.198688,-0.002583,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198688,-0.002583,0.003250,0.249979,0,0);}
.m83_c00342{transform:matrix(0.199343,-0.002591,0.003250,0.249979,0,0);-ms-transform:matrix(0.199343,-0.002591,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199343,-0.002591,0.003250,0.249979,0,0);}
.m85_c00342{transform:matrix(0.199363,-0.002592,0.003250,0.249979,0,0);-ms-transform:matrix(0.199363,-0.002592,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199363,-0.002592,0.003250,0.249979,0,0);}
.m3d_c00342{transform:matrix(0.199488,-0.002593,0.003250,0.249979,0,0);-ms-transform:matrix(0.199488,-0.002593,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199488,-0.002593,0.003250,0.249979,0,0);}
.m84_c00342{transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);-ms-transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199578,-0.002595,0.003250,0.249979,0,0);}
.mb0_c00342{transform:matrix(0.199628,-0.002595,0.003250,0.249979,0,0);-ms-transform:matrix(0.199628,-0.002595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199628,-0.002595,0.003250,0.249979,0,0);}
.m26_c00342{transform:matrix(0.199868,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199868,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199868,-0.002598,0.003250,0.249979,0,0);}
.m74_c00342{transform:matrix(0.200363,-0.002605,0.003250,0.249979,0,0);-ms-transform:matrix(0.200363,-0.002605,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200363,-0.002605,0.003250,0.249979,0,0);}
.m24_c00342{transform:matrix(0.200463,-0.002606,0.003250,0.249979,0,0);-ms-transform:matrix(0.200463,-0.002606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200463,-0.002606,0.003250,0.249979,0,0);}
.m6a_c00342{transform:matrix(0.200593,-0.002608,0.003250,0.249979,0,0);-ms-transform:matrix(0.200593,-0.002608,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200593,-0.002608,0.003250,0.249979,0,0);}
.mb2_c00342{transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);-ms-transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);}
.m8f_c00342{transform:matrix(0.201178,-0.002615,0.003250,0.249979,0,0);-ms-transform:matrix(0.201178,-0.002615,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201178,-0.002615,0.003250,0.249979,0,0);}
.ma8_c00342{transform:matrix(0.201458,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201458,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201458,-0.002619,0.003250,0.249979,0,0);}
.m9e_c00342{transform:matrix(0.202178,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202178,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202178,-0.002628,0.003250,0.249979,0,0);}
.m15_c00342{transform:matrix(0.202193,-0.002629,0.003250,0.249979,0,0);-ms-transform:matrix(0.202193,-0.002629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202193,-0.002629,0.003250,0.249979,0,0);}
.mbd_c00342{transform:matrix(0.202438,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202438,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202438,-0.002632,0.003250,0.249979,0,0);}
.m20_c00342{transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);}
.m92_c00342{transform:matrix(0.204093,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204093,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204093,-0.002653,0.003250,0.249979,0,0);}
.ma4_c00342{transform:matrix(0.204248,-0.002655,0.003250,0.249979,0,0);-ms-transform:matrix(0.204248,-0.002655,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204248,-0.002655,0.003250,0.249979,0,0);}
.m7c_c00342{transform:matrix(0.204333,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204333,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204333,-0.002656,0.003250,0.249979,0,0);}
.mec_c00342{transform:matrix(0.204748,-0.002662,0.003250,0.249979,0,0);-ms-transform:matrix(0.204748,-0.002662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204748,-0.002662,0.003250,0.249979,0,0);}
.mc4_c00342{transform:matrix(0.204788,-0.002662,0.003250,0.249979,0,0);-ms-transform:matrix(0.204788,-0.002662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204788,-0.002662,0.003250,0.249979,0,0);}
.m4d_c00342{transform:matrix(0.204848,-0.002663,0.003250,0.249979,0,0);-ms-transform:matrix(0.204848,-0.002663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204848,-0.002663,0.003250,0.249979,0,0);}
.m27_c00342{transform:matrix(0.204973,-0.002665,0.003250,0.249979,0,0);-ms-transform:matrix(0.204973,-0.002665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204973,-0.002665,0.003250,0.249979,0,0);}
.m8b_c00342{transform:matrix(0.205393,-0.002670,0.003250,0.249979,0,0);-ms-transform:matrix(0.205393,-0.002670,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205393,-0.002670,0.003250,0.249979,0,0);}
.me3_c00342{transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);}
.m5d_c00342{transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);-ms-transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205703,-0.002674,0.003250,0.249979,0,0);}
.m28_c00342{transform:matrix(0.205903,-0.002677,0.003250,0.249979,0,0);-ms-transform:matrix(0.205903,-0.002677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205903,-0.002677,0.003250,0.249979,0,0);}
.m7f_c00342{transform:matrix(0.205923,-0.002677,0.003250,0.249979,0,0);-ms-transform:matrix(0.205923,-0.002677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205923,-0.002677,0.003250,0.249979,0,0);}
.mcd_c00342{transform:matrix(0.206003,-0.002678,0.003250,0.249979,0,0);-ms-transform:matrix(0.206003,-0.002678,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206003,-0.002678,0.003250,0.249979,0,0);}
.md1_c00342{transform:matrix(0.206178,-0.002680,0.003250,0.249979,0,0);-ms-transform:matrix(0.206178,-0.002680,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206178,-0.002680,0.003250,0.249979,0,0);}
.m8d_c00342{transform:matrix(0.206623,-0.002686,0.003250,0.249979,0,0);-ms-transform:matrix(0.206623,-0.002686,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206623,-0.002686,0.003250,0.249979,0,0);}
.m1f_c00342{transform:matrix(0.206803,-0.002688,0.003250,0.249979,0,0);-ms-transform:matrix(0.206803,-0.002688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206803,-0.002688,0.003250,0.249979,0,0);}
.m94_c00342{transform:matrix(0.207053,-0.002692,0.003250,0.249979,0,0);-ms-transform:matrix(0.207053,-0.002692,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207053,-0.002692,0.003250,0.249979,0,0);}
.m81_c00342{transform:matrix(0.208117,-0.002706,0.003250,0.249979,0,0);-ms-transform:matrix(0.208117,-0.002706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208117,-0.002706,0.003250,0.249979,0,0);}
.me6_c00342{transform:matrix(0.208837,-0.002715,0.003250,0.249979,0,0);-ms-transform:matrix(0.208837,-0.002715,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208837,-0.002715,0.003250,0.249979,0,0);}
.m16_c00342{transform:matrix(0.209062,-0.002718,0.003250,0.249979,0,0);-ms-transform:matrix(0.209062,-0.002718,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209062,-0.002718,0.003250,0.249979,0,0);}
.m5f_c00342{transform:matrix(0.209397,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209397,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209397,-0.002722,0.003250,0.249979,0,0);}
.m25_c00342{transform:matrix(0.209657,-0.002726,0.003250,0.249979,0,0);-ms-transform:matrix(0.209657,-0.002726,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209657,-0.002726,0.003250,0.249979,0,0);}
.me4_c00342{transform:matrix(0.210397,-0.002735,0.003250,0.249979,0,0);-ms-transform:matrix(0.210397,-0.002735,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210397,-0.002735,0.003250,0.249979,0,0);}
.m2b_c00342{transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);}
.m4c_c00342{transform:matrix(0.211012,-0.002743,0.003250,0.249979,0,0);-ms-transform:matrix(0.211012,-0.002743,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211012,-0.002743,0.003250,0.249979,0,0);}
.m5a_c00342{transform:matrix(0.211257,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211257,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211257,-0.002746,0.003250,0.249979,0,0);}
.md4_c00342{transform:matrix(0.212567,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212567,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212567,-0.002763,0.003250,0.249979,0,0);}
.m3f_c00342{transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);-ms-transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213312,-0.002773,0.003250,0.249979,0,0);}
.m38_c00342{transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);-ms-transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213637,-0.002777,0.003250,0.249979,0,0);}
.m48_c00342{transform:matrix(0.213667,-0.002778,0.003250,0.249979,0,0);-ms-transform:matrix(0.213667,-0.002778,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213667,-0.002778,0.003250,0.249979,0,0);}
.mb3_c00342{transform:matrix(0.213942,-0.002781,0.003250,0.249979,0,0);-ms-transform:matrix(0.213942,-0.002781,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213942,-0.002781,0.003250,0.249979,0,0);}
.m6d_c00342{transform:matrix(0.214142,-0.002784,0.003250,0.249979,0,0);-ms-transform:matrix(0.214142,-0.002784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214142,-0.002784,0.003250,0.249979,0,0);}
.m11_c00342{transform:matrix(0.214207,-0.002785,0.003250,0.249979,0,0);-ms-transform:matrix(0.214207,-0.002785,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214207,-0.002785,0.003250,0.249979,0,0);}
.m7d_c00342{transform:matrix(0.214292,-0.002786,0.003250,0.249979,0,0);-ms-transform:matrix(0.214292,-0.002786,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214292,-0.002786,0.003250,0.249979,0,0);}
.mb1_c00342{transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);}
.m12_c00342{transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);}
.m9c_c00342{transform:matrix(0.214812,-0.002793,0.003250,0.249979,0,0);-ms-transform:matrix(0.214812,-0.002793,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214812,-0.002793,0.003250,0.249979,0,0);}
.md2_c00342{transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);-ms-transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214902,-0.002794,0.003250,0.249979,0,0);}
.m22_c00342{transform:matrix(0.214937,-0.002794,0.003250,0.249979,0,0);-ms-transform:matrix(0.214937,-0.002794,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214937,-0.002794,0.003250,0.249979,0,0);}
.m31_c00342{transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-ms-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);}
.m10_c00342{transform:matrix(0.215277,-0.002799,0.003250,0.249979,0,0);-ms-transform:matrix(0.215277,-0.002799,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215277,-0.002799,0.003250,0.249979,0,0);}
.me1_c00342{transform:matrix(0.215427,-0.002801,0.003250,0.249979,0,0);-ms-transform:matrix(0.215427,-0.002801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215427,-0.002801,0.003250,0.249979,0,0);}
.mcc_c00342{transform:matrix(0.216452,-0.002814,0.003250,0.249979,0,0);-ms-transform:matrix(0.216452,-0.002814,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216452,-0.002814,0.003250,0.249979,0,0);}
.m7a_c00342{transform:matrix(0.217177,-0.002823,0.003250,0.249979,0,0);-ms-transform:matrix(0.217177,-0.002823,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217177,-0.002823,0.003250,0.249979,0,0);}
.me8_c00342{transform:matrix(0.218367,-0.002839,0.003250,0.249979,0,0);-ms-transform:matrix(0.218367,-0.002839,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218367,-0.002839,0.003250,0.249979,0,0);}
.m73_c00342{transform:matrix(0.218717,-0.002843,0.003250,0.249979,0,0);-ms-transform:matrix(0.218717,-0.002843,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218717,-0.002843,0.003250,0.249979,0,0);}
.m4b_c00342{transform:matrix(0.218932,-0.002846,0.003250,0.249979,0,0);-ms-transform:matrix(0.218932,-0.002846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218932,-0.002846,0.003250,0.249979,0,0);}
.m3b_c00342{transform:matrix(0.219076,-0.002848,0.003250,0.249979,0,0);-ms-transform:matrix(0.219076,-0.002848,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219076,-0.002848,0.003250,0.249979,0,0);}
.m14_c00342{transform:matrix(0.219126,-0.002849,0.003250,0.249979,0,0);-ms-transform:matrix(0.219126,-0.002849,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219126,-0.002849,0.003250,0.249979,0,0);}
.mde_c00342{transform:matrix(0.219486,-0.002853,0.003250,0.249979,0,0);-ms-transform:matrix(0.219486,-0.002853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219486,-0.002853,0.003250,0.249979,0,0);}
.ma1_c00342{transform:matrix(0.219566,-0.002854,0.003250,0.249979,0,0);-ms-transform:matrix(0.219566,-0.002854,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219566,-0.002854,0.003250,0.249979,0,0);}
.m47_c00342{transform:matrix(0.220911,-0.002872,0.003250,0.249979,0,0);-ms-transform:matrix(0.220911,-0.002872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220911,-0.002872,0.003250,0.249979,0,0);}
.m58_c00342{transform:matrix(0.221141,-0.002875,0.003250,0.249979,0,0);-ms-transform:matrix(0.221141,-0.002875,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221141,-0.002875,0.003250,0.249979,0,0);}
.m2c_c00342{transform:matrix(0.221816,-0.002884,0.003250,0.249979,0,0);-ms-transform:matrix(0.221816,-0.002884,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221816,-0.002884,0.003250,0.249979,0,0);}
.m36_c00342{transform:matrix(0.222296,-0.002890,0.003250,0.249979,0,0);-ms-transform:matrix(0.222296,-0.002890,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222296,-0.002890,0.003250,0.249979,0,0);}
.me5_c00342{transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);-ms-transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222761,-0.002896,0.003250,0.249979,0,0);}
.mc6_c00342{transform:matrix(0.223251,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223251,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223251,-0.002902,0.003250,0.249979,0,0);}
.mc5_c00342{transform:matrix(0.223901,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223901,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223901,-0.002911,0.003250,0.249979,0,0);}
.m49_c00342{transform:matrix(0.224371,-0.002917,0.003250,0.249979,0,0);-ms-transform:matrix(0.224371,-0.002917,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224371,-0.002917,0.003250,0.249979,0,0);}
.m9b_c00342{transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);-ms-transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224976,-0.002925,0.003250,0.249979,0,0);}
.m9_c00342{transform:matrix(0.226591,-0.002946,0.003250,0.249979,0,0);-ms-transform:matrix(0.226591,-0.002946,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226591,-0.002946,0.003250,0.249979,0,0);}
.m42_c00342{transform:matrix(0.227276,-0.002955,0.003250,0.249979,0,0);-ms-transform:matrix(0.227276,-0.002955,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227276,-0.002955,0.003250,0.249979,0,0);}
.me2_c00342{transform:matrix(0.227396,-0.002956,0.003250,0.249979,0,0);-ms-transform:matrix(0.227396,-0.002956,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227396,-0.002956,0.003250,0.249979,0,0);}
.m29_c00342{transform:matrix(0.227866,-0.002962,0.003250,0.249979,0,0);-ms-transform:matrix(0.227866,-0.002962,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227866,-0.002962,0.003250,0.249979,0,0);}
.m33_c00342{transform:matrix(0.228516,-0.002971,0.003250,0.249979,0,0);-ms-transform:matrix(0.228516,-0.002971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228516,-0.002971,0.003250,0.249979,0,0);}
.m1a_c00342{transform:matrix(0.228761,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228761,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228761,-0.002974,0.003250,0.249979,0,0);}
.m95_c00342{transform:matrix(0.230056,-0.002991,0.003250,0.249979,0,0);-ms-transform:matrix(0.230056,-0.002991,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230056,-0.002991,0.003250,0.249979,0,0);}
.m3c_c00342{transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);-ms-transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);}
.m18_c00342{transform:matrix(0.230661,-0.002999,0.003250,0.249979,0,0);-ms-transform:matrix(0.230661,-0.002999,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230661,-0.002999,0.003250,0.249979,0,0);}
.m2a_c00342{transform:matrix(0.230746,-0.003000,0.003250,0.249979,0,0);-ms-transform:matrix(0.230746,-0.003000,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230746,-0.003000,0.003250,0.249979,0,0);}
.m3e_c00342{transform:matrix(0.231370,-0.003008,0.003250,0.249979,0,0);-ms-transform:matrix(0.231370,-0.003008,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231370,-0.003008,0.003250,0.249979,0,0);}
.ma5_c00342{transform:matrix(0.232755,-0.003026,0.003250,0.249979,0,0);-ms-transform:matrix(0.232755,-0.003026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232755,-0.003026,0.003250,0.249979,0,0);}
.md0_c00342{transform:matrix(0.233825,-0.003040,0.003250,0.249979,0,0);-ms-transform:matrix(0.233825,-0.003040,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233825,-0.003040,0.003250,0.249979,0,0);}
.m56_c00342{transform:matrix(0.234435,-0.003048,0.003250,0.249979,0,0);-ms-transform:matrix(0.234435,-0.003048,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234435,-0.003048,0.003250,0.249979,0,0);}
.mc1_c00342{transform:matrix(0.234975,-0.003055,0.003250,0.249979,0,0);-ms-transform:matrix(0.234975,-0.003055,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234975,-0.003055,0.003250,0.249979,0,0);}
.m35_c00342{transform:matrix(0.235285,-0.003059,0.003250,0.249979,0,0);-ms-transform:matrix(0.235285,-0.003059,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235285,-0.003059,0.003250,0.249979,0,0);}
.ma7_c00342{transform:matrix(0.235890,-0.003067,0.003250,0.249979,0,0);-ms-transform:matrix(0.235890,-0.003067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235890,-0.003067,0.003250,0.249979,0,0);}
.m32_c00342{transform:matrix(0.236685,-0.003077,0.003250,0.249979,0,0);-ms-transform:matrix(0.236685,-0.003077,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236685,-0.003077,0.003250,0.249979,0,0);}
.m1c_c00342{transform:matrix(0.238470,-0.003100,0.003250,0.249979,0,0);-ms-transform:matrix(0.238470,-0.003100,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238470,-0.003100,0.003250,0.249979,0,0);}
.m82_c00342{transform:matrix(0.238760,-0.003104,0.003250,0.249979,0,0);-ms-transform:matrix(0.238760,-0.003104,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238760,-0.003104,0.003250,0.249979,0,0);}
.m30_c00342{transform:matrix(0.239485,-0.003113,0.003250,0.249979,0,0);-ms-transform:matrix(0.239485,-0.003113,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239485,-0.003113,0.003250,0.249979,0,0);}
.m37_c00342{transform:matrix(0.239830,-0.003118,0.003250,0.249979,0,0);-ms-transform:matrix(0.239830,-0.003118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239830,-0.003118,0.003250,0.249979,0,0);}
.m39_c00342{transform:matrix(0.241530,-0.003140,0.003250,0.249979,0,0);-ms-transform:matrix(0.241530,-0.003140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241530,-0.003140,0.003250,0.249979,0,0);}
.m5c_c00342{transform:matrix(0.244824,-0.003183,0.003250,0.249979,0,0);-ms-transform:matrix(0.244824,-0.003183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244824,-0.003183,0.003250,0.249979,0,0);}
.mca_c00342{transform:matrix(0.245279,-0.003189,0.003250,0.249979,0,0);-ms-transform:matrix(0.245279,-0.003189,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245279,-0.003189,0.003250,0.249979,0,0);}
.ma6_c00342{transform:matrix(0.249739,-0.003247,0.003250,0.249979,0,0);-ms-transform:matrix(0.249739,-0.003247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249739,-0.003247,0.003250,0.249979,0,0);}
.mcb_c00342{transform:matrix(0.250124,-0.003252,0.003250,0.249979,0,0);-ms-transform:matrix(0.250124,-0.003252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250124,-0.003252,0.003250,0.249979,0,0);}
.m19_c00342{transform:matrix(0.250699,-0.003259,0.003250,0.249979,0,0);-ms-transform:matrix(0.250699,-0.003259,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250699,-0.003259,0.003250,0.249979,0,0);}
.md5_c00342{transform:matrix(0.250729,-0.003259,0.003250,0.249979,0,0);-ms-transform:matrix(0.250729,-0.003259,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250729,-0.003259,0.003250,0.249979,0,0);}
.m5b_c00342{transform:matrix(0.252639,-0.003284,0.003250,0.249979,0,0);-ms-transform:matrix(0.252639,-0.003284,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252639,-0.003284,0.003250,0.249979,0,0);}
.m62_c00342{transform:matrix(0.259818,-0.003378,0.003250,0.249979,0,0);-ms-transform:matrix(0.259818,-0.003378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259818,-0.003378,0.003250,0.249979,0,0);}
.m17_c00342{transform:matrix(0.259933,-0.003379,0.003250,0.249979,0,0);-ms-transform:matrix(0.259933,-0.003379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259933,-0.003379,0.003250,0.249979,0,0);}
.m8_c00342{transform:matrix(0.262243,-0.003409,0.003250,0.249979,0,0);-ms-transform:matrix(0.262243,-0.003409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262243,-0.003409,0.003250,0.249979,0,0);}
.md8_c00342{transform:matrix(0.262508,-0.003413,0.003250,0.249979,0,0);-ms-transform:matrix(0.262508,-0.003413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262508,-0.003413,0.003250,0.249979,0,0);}
.m59_c00342{transform:matrix(0.266657,-0.003467,0.003250,0.249979,0,0);-ms-transform:matrix(0.266657,-0.003467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266657,-0.003467,0.003250,0.249979,0,0);}
.mc9_c00342{transform:matrix(0.272872,-0.003547,0.003250,0.249979,0,0);-ms-transform:matrix(0.272872,-0.003547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272872,-0.003547,0.003250,0.249979,0,0);}
.ma3_c00342{transform:matrix(0.274512,-0.003569,0.003250,0.249979,0,0);-ms-transform:matrix(0.274512,-0.003569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274512,-0.003569,0.003250,0.249979,0,0);}
.m40_c00342{transform:matrix(0.277757,-0.003611,0.003250,0.249979,0,0);-ms-transform:matrix(0.277757,-0.003611,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277757,-0.003611,0.003250,0.249979,0,0);}
.mda_c00342{transform:matrix(0.282616,-0.003674,0.003250,0.249979,0,0);-ms-transform:matrix(0.282616,-0.003674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282616,-0.003674,0.003250,0.249979,0,0);}
.m13_c00342{transform:matrix(0.300485,-0.003906,0.003250,0.249979,0,0);-ms-transform:matrix(0.300485,-0.003906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.300485,-0.003906,0.003250,0.249979,0,0);}
.mdc_c00342{transform:matrix(0.302624,-0.003934,0.003250,0.249979,0,0);-ms-transform:matrix(0.302624,-0.003934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.302624,-0.003934,0.003250,0.249979,0,0);}
.md9_c00342{transform:matrix(0.326662,-0.004247,0.003250,0.249979,0,0);-ms-transform:matrix(0.326662,-0.004247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.326662,-0.004247,0.003250,0.249979,0,0);}
.mcf_c00342{transform:matrix(0.356390,-0.004633,0.003250,0.249979,0,0);-ms-transform:matrix(0.356390,-0.004633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356390,-0.004633,0.003250,0.249979,0,0);}
.mf_c00342{transform:matrix(0.364994,-0.004745,0.003250,0.249979,0,0);-ms-transform:matrix(0.364994,-0.004745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.364994,-0.004745,0.003250,0.249979,0,0);}
.mdb_c00342{transform:matrix(0.365604,-0.004753,0.003250,0.249979,0,0);-ms-transform:matrix(0.365604,-0.004753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.365604,-0.004753,0.003250,0.249979,0,0);}
.mdf_c00342{transform:matrix(0.381983,-0.004966,0.003250,0.249979,0,0);-ms-transform:matrix(0.381983,-0.004966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.381983,-0.004966,0.003250,0.249979,0,0);}
.ma2_c00342{transform:matrix(0.403591,-0.005247,0.003250,0.249979,0,0);-ms-transform:matrix(0.403591,-0.005247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.403591,-0.005247,0.003250,0.249979,0,0);}
.md7_c00342{transform:matrix(0.442368,-0.005751,0.003250,0.249979,0,0);-ms-transform:matrix(0.442368,-0.005751,0.003250,0.249979,0,0);-webkit-transform:matrix(0.442368,-0.005751,0.003250,0.249979,0,0);}
.mdd_c00342{transform:matrix(0.520616,-0.006768,0.003250,0.249979,0,0);-ms-transform:matrix(0.520616,-0.006768,0.003250,0.249979,0,0);-webkit-transform:matrix(0.520616,-0.006768,0.003250,0.249979,0,0);}
.mce_c00342{transform:matrix(0.628622,-0.008172,0.003250,0.249979,0,0);-ms-transform:matrix(0.628622,-0.008172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.628622,-0.008172,0.003250,0.249979,0,0);}
.m3a_c00342{transform:matrix(0.814296,-0.010586,0.003250,0.249979,0,0);-ms-transform:matrix(0.814296,-0.010586,0.003250,0.249979,0,0);-webkit-transform:matrix(0.814296,-0.010586,0.003250,0.249979,0,0);}
.md6_c00342{transform:matrix(1.248884,-0.016235,0.003250,0.249979,0,0);-ms-transform:matrix(1.248884,-0.016235,0.003250,0.249979,0,0);-webkit-transform:matrix(1.248884,-0.016235,0.003250,0.249979,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:0.000000px;}
.fc0_c00342{color:transparent;}
.fsd_c00342{font-size:36.753105px;}
.fsb_c00342{font-size:55.654702px;}
.fs6_c00342{font-size:57.754880px;}
.fs3_c00342{font-size:58.804968px;}
.fs4_c00342{font-size:59.855057px;}
.fs5_c00342{font-size:60.905146px;}
.fsa_c00342{font-size:61.955235px;}
.fs8_c00342{font-size:63.005323px;}
.fs7_c00342{font-size:65.105501px;}
.fs9_c00342{font-size:66.155589px;}
.fs2_c00342{font-size:67.205678px;}
.fsc_c00342{font-size:68.255767px;}
.fs1_c00342{font-size:70.355944px;}
.fs0_c00342{font-size:73.506210px;}
.y0_c00342{bottom:0.000000px;}
.yef_c00342{bottom:32.440281px;}
.yee_c00342{bottom:32.441030px;}
.yea_c00342{bottom:32.441526px;}
.yed_c00342{bottom:32.441619px;}
.yeb_c00342{bottom:32.442027px;}
.yec_c00342{bottom:32.442188px;}
.ye0_c00342{bottom:45.448130px;}
.ye1_c00342{bottom:45.448830px;}
.ye3_c00342{bottom:45.448952px;}
.ye2_c00342{bottom:45.448971px;}
.ye9_c00342{bottom:45.448977px;}
.ye8_c00342{bottom:45.449046px;}
.ye7_c00342{bottom:45.449305px;}
.ye4_c00342{bottom:45.449482px;}
.ye5_c00342{bottom:45.449523px;}
.ye6_c00342{bottom:45.449624px;}
.yd9_c00342{bottom:64.266300px;}
.yde_c00342{bottom:64.266384px;}
.ydb_c00342{bottom:64.266411px;}
.ydc_c00342{bottom:64.266492px;}
.ydf_c00342{bottom:64.266756px;}
.yda_c00342{bottom:64.266760px;}
.yd8_c00342{bottom:64.266768px;}
.ydd_c00342{bottom:64.267102px;}
.yd2_c00342{bottom:79.832301px;}
.yd1_c00342{bottom:79.832650px;}
.yd7_c00342{bottom:79.832797px;}
.yd3_c00342{bottom:79.833012px;}
.yd6_c00342{bottom:79.833056px;}
.yd4_c00342{bottom:79.833103px;}
.yd5_c00342{bottom:79.833315px;}
.yd0_c00342{bottom:96.641044px;}
.ycf_c00342{bottom:96.641131px;}
.ycb_c00342{bottom:96.641208px;}
.ycd_c00342{bottom:96.641479px;}
.ycc_c00342{bottom:96.641559px;}
.yce_c00342{bottom:96.641700px;}
.yc2_c00342{bottom:114.001653px;}
.yc3_c00342{bottom:114.002244px;}
.yc4_c00342{bottom:114.002575px;}
.yc5_c00342{bottom:114.003036px;}
.yc6_c00342{bottom:114.003106px;}
.yca_c00342{bottom:114.003190px;}
.yc9_c00342{bottom:114.003270px;}
.yc8_c00342{bottom:114.003279px;}
.yc7_c00342{bottom:114.003388px;}
.ybb_c00342{bottom:131.791608px;}
.ybc_c00342{bottom:131.792068px;}
.yba_c00342{bottom:131.792146px;}
.ybe_c00342{bottom:131.792230px;}
.ybd_c00342{bottom:131.792409px;}
.yc0_c00342{bottom:131.792493px;}
.yc1_c00342{bottom:131.792773px;}
.ybf_c00342{bottom:131.792911px;}
.yb2_c00342{bottom:147.490678px;}
.yb3_c00342{bottom:147.490830px;}
.yb1_c00342{bottom:147.491118px;}
.yb7_c00342{bottom:147.491185px;}
.yb9_c00342{bottom:147.491277px;}
.yb4_c00342{bottom:147.491290px;}
.yb5_c00342{bottom:147.491343px;}
.yb6_c00342{bottom:147.491443px;}
.yb8_c00342{bottom:147.491496px;}
.yaf_c00342{bottom:165.345897px;}
.yad_c00342{bottom:165.345954px;}
.yb0_c00342{bottom:165.346177px;}
.yae_c00342{bottom:165.346354px;}
.yac_c00342{bottom:165.346522px;}
.yab_c00342{bottom:165.346791px;}
.ya7_c00342{bottom:182.233792px;}
.ya8_c00342{bottom:182.234295px;}
.ya9_c00342{bottom:182.234365px;}
.ya6_c00342{bottom:182.234421px;}
.ya5_c00342{bottom:182.234710px;}
.yaa_c00342{bottom:182.234826px;}
.ya4_c00342{bottom:182.235000px;}
.ya3_c00342{bottom:182.235648px;}
.ya2_c00342{bottom:198.638925px;}
.ya1_c00342{bottom:198.638964px;}
.ya0_c00342{bottom:198.639483px;}
.y9f_c00342{bottom:198.640122px;}
.y9e_c00342{bottom:198.640350px;}
.y9d_c00342{bottom:198.640879px;}
.y9c_c00342{bottom:198.641397px;}
.y96_c00342{bottom:216.113782px;}
.y94_c00342{bottom:216.113841px;}
.y98_c00342{bottom:216.114214px;}
.y97_c00342{bottom:216.114234px;}
.y95_c00342{bottom:216.114432px;}
.y99_c00342{bottom:216.114736px;}
.y9b_c00342{bottom:216.114879px;}
.y9a_c00342{bottom:216.114888px;}
.y8f_c00342{bottom:233.393356px;}
.y92_c00342{bottom:233.393451px;}
.y91_c00342{bottom:233.393719px;}
.y93_c00342{bottom:233.393833px;}
.y90_c00342{bottom:233.393889px;}
.y8e_c00342{bottom:233.393946px;}
.y8d_c00342{bottom:250.013971px;}
.y8c_c00342{bottom:250.014480px;}
.y8b_c00342{bottom:250.014639px;}
.y87_c00342{bottom:250.015054px;}
.y8a_c00342{bottom:250.015318px;}
.y88_c00342{bottom:250.015566px;}
.y89_c00342{bottom:250.015587px;}
.y86_c00342{bottom:267.471616px;}
.y85_c00342{bottom:267.472056px;}
.y84_c00342{bottom:267.472114px;}
.y83_c00342{bottom:267.472413px;}
.y7f_c00342{bottom:267.472479px;}
.y80_c00342{bottom:267.472669px;}
.y82_c00342{bottom:267.472962px;}
.y81_c00342{bottom:267.473100px;}
.y7b_c00342{bottom:284.482246px;}
.y7a_c00342{bottom:284.482566px;}
.y7e_c00342{bottom:284.482641px;}
.y7c_c00342{bottom:284.482788px;}
.y79_c00342{bottom:284.482825px;}
.y7d_c00342{bottom:284.483020px;}
.y77_c00342{bottom:302.521633px;}
.y76_c00342{bottom:302.521812px;}
.y73_c00342{bottom:302.521867px;}
.y75_c00342{bottom:302.521930px;}
.y74_c00342{bottom:302.522089px;}
.y78_c00342{bottom:302.522094px;}
.y6f_c00342{bottom:319.827737px;}
.y71_c00342{bottom:319.828209px;}
.y70_c00342{bottom:319.828318px;}
.y72_c00342{bottom:319.828390px;}
.y6c_c00342{bottom:319.828404px;}
.y6e_c00342{bottom:319.828476px;}
.y6d_c00342{bottom:319.828534px;}
.y6b_c00342{bottom:319.828723px;}
.y6a_c00342{bottom:319.829272px;}
.y69_c00342{bottom:336.206718px;}
.y68_c00342{bottom:336.207067px;}
.y67_c00342{bottom:336.207117px;}
.y62_c00342{bottom:336.207522px;}
.y66_c00342{bottom:336.207856px;}
.y63_c00342{bottom:336.208203px;}
.y64_c00342{bottom:336.208575px;}
.y65_c00342{bottom:336.208585px;}
.y5b_c00342{bottom:350.171682px;}
.y5c_c00342{bottom:350.427991px;}
.y5d_c00342{bottom:350.703744px;}
.y5e_c00342{bottom:351.442465px;}
.y5f_c00342{bottom:352.352412px;}
.y60_c00342{bottom:352.760269px;}
.y61_c00342{bottom:352.970653px;}
.y54_c00342{bottom:367.723717px;}
.y55_c00342{bottom:368.319921px;}
.y56_c00342{bottom:368.595751px;}
.y57_c00342{bottom:369.412030px;}
.y58_c00342{bottom:369.574771px;}
.y59_c00342{bottom:369.850426px;}
.y5a_c00342{bottom:370.906011px;}
.y4d_c00342{bottom:383.924043px;}
.y4e_c00342{bottom:384.669160px;}
.y4f_c00342{bottom:385.126317px;}
.y50_c00342{bottom:385.486356px;}
.y51_c00342{bottom:386.072322px;}
.y52_c00342{bottom:386.927682px;}
.y53_c00342{bottom:387.256011px;}
.y47_c00342{bottom:402.240988px;}
.y48_c00342{bottom:402.241179px;}
.y4c_c00342{bottom:402.241263px;}
.y46_c00342{bottom:402.241377px;}
.y49_c00342{bottom:402.241510px;}
.y4b_c00342{bottom:402.241672px;}
.y4a_c00342{bottom:402.241722px;}
.y45_c00342{bottom:402.242086px;}
.y44_c00342{bottom:402.242346px;}
.y43_c00342{bottom:402.242895px;}
.y42_c00342{bottom:419.116489px;}
.y41_c00342{bottom:419.116869px;}
.y3b_c00342{bottom:419.116951px;}
.y3c_c00342{bottom:419.117032px;}
.y40_c00342{bottom:419.117167px;}
.y3e_c00342{bottom:419.117535px;}
.y3d_c00342{bottom:419.117733px;}
.y3f_c00342{bottom:419.117826px;}
.y3a_c00342{bottom:435.849177px;}
.y39_c00342{bottom:435.849736px;}
.y38_c00342{bottom:435.850294px;}
.y33_c00342{bottom:435.850378px;}
.y35_c00342{bottom:435.850441px;}
.y37_c00342{bottom:435.850524px;}
.y34_c00342{bottom:435.850551px;}
.y36_c00342{bottom:435.850912px;}
.y32_c00342{bottom:452.887372px;}
.y31_c00342{bottom:452.887470px;}
.y2c_c00342{bottom:452.887566px;}
.y2f_c00342{bottom:452.887738px;}
.y30_c00342{bottom:452.887759px;}
.y2d_c00342{bottom:452.887936px;}
.y2e_c00342{bottom:452.888028px;}
.y2b_c00342{bottom:452.888274px;}
.y25_c00342{bottom:469.878711px;}
.y24_c00342{bottom:469.879300px;}
.y26_c00342{bottom:469.879433px;}
.y27_c00342{bottom:469.880124px;}
.y29_c00342{bottom:469.880266px;}
.y28_c00342{bottom:469.880496px;}
.y2a_c00342{bottom:469.880988px;}
.y1c_c00342{bottom:485.186235px;}
.y1d_c00342{bottom:485.387746px;}
.y1e_c00342{bottom:486.148248px;}
.y1f_c00342{bottom:486.334371px;}
.y20_c00342{bottom:486.691734px;}
.y21_c00342{bottom:486.929014px;}
.y22_c00342{bottom:487.579224px;}
.y23_c00342{bottom:487.983006px;}
.y16_c00342{bottom:501.928452px;}
.y17_c00342{bottom:502.664895px;}
.y18_c00342{bottom:503.043850px;}
.y19_c00342{bottom:503.456694px;}
.y1a_c00342{bottom:504.027009px;}
.y1b_c00342{bottom:504.488482px;}
.ye_c00342{bottom:519.211627px;}
.yf_c00342{bottom:519.377755px;}
.y10_c00342{bottom:520.213680px;}
.y11_c00342{bottom:521.132824px;}
.y12_c00342{bottom:521.468883px;}
.y13_c00342{bottom:521.990763px;}
.y14_c00342{bottom:522.651494px;}
.y15_c00342{bottom:522.870249px;}
.y8_c00342{bottom:538.629222px;}
.y9_c00342{bottom:538.629532px;}
.ya_c00342{bottom:538.629814px;}
.yc_c00342{bottom:538.629927px;}
.yb_c00342{bottom:538.630315px;}
.yd_c00342{bottom:538.630339px;}
.y1_c00342{bottom:553.501500px;}
.y2_c00342{bottom:553.965288px;}
.y3_c00342{bottom:554.849632px;}
.y4_c00342{bottom:555.077860px;}
.y5_c00342{bottom:555.790429px;}
.y6_c00342{bottom:556.580530px;}
.y7_c00342{bottom:556.889254px;}
.hf_c00342{height:36.753105px;}
.hd_c00342{height:55.654702px;}
.h8_c00342{height:57.754880px;}
.h5_c00342{height:58.804968px;}
.h6_c00342{height:59.855057px;}
.h7_c00342{height:60.905146px;}
.hc_c00342{height:61.955235px;}
.ha_c00342{height:63.005323px;}
.h9_c00342{height:65.105501px;}
.hb_c00342{height:66.155589px;}
.h4_c00342{height:67.205678px;}
.he_c00342{height:68.255767px;}
.h3_c00342{height:70.355944px;}
.h2_c00342{height:73.506210px;}
.h0_c00342{height:613.170000px;}
.h1_c00342{height:613.500000px;}
.w0_c00342{width:359.100000px;}
.w1_c00342{width:359.250000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:19.584000px;}
.x8_c00342{left:21.871693px;}
.x1a_c00342{left:23.067537px;}
.x3e_c00342{left:26.100236px;}
.x21_c00342{left:27.810795px;}
.x35_c00342{left:29.966784px;}
.x5d_c00342{left:31.588724px;}
.xe_c00342{left:34.203504px;}
.x69_c00342{left:36.450093px;}
.x22_c00342{left:39.421265px;}
.x1b_c00342{left:41.453525px;}
.x45_c00342{left:43.072979px;}
.x9_c00342{left:44.283976px;}
.x54_c00342{left:46.167147px;}
.x74_c00342{left:48.602472px;}
.x4e_c00342{left:51.836183px;}
.x71_c00342{left:52.923293px;}
.x2_c00342{left:55.260000px;}
.x36_c00342{left:56.698308px;}
.x48_c00342{left:58.045835px;}
.x30_c00342{left:65.340935px;}
.x4f_c00342{left:70.737881px;}
.x6e_c00342{left:72.093398px;}
.x79_c00342{left:73.444730px;}
.x15_c00342{left:75.169157px;}
.x37_c00342{left:77.220279px;}
.x75_c00342{left:80.464854px;}
.x59_c00342{left:82.621302px;}
.x31_c00342{left:84.782711px;}
.x23_c00342{left:87.484877px;}
.x66_c00342{left:89.373455px;}
.x6f_c00342{left:90.455652px;}
.x7a_c00342{left:91.806330px;}
.xf_c00342{left:93.889224px;}
.x40_c00342{left:97.866096px;}
.x38_c00342{left:99.092484px;}
.x16_c00342{left:102.242306px;}
.x6c_c00342{left:109.354965px;}
.x1c_c00342{left:110.570819px;}
.x2d_c00342{left:112.055829px;}
.x63_c00342{left:113.133960px;}
.xa_c00342{left:121.511022px;}
.x3_c00342{left:123.286500px;}
.x5a_c00342{left:124.745420px;}
.x3f_c00342{left:126.199523px;}
.x1d_c00342{left:127.542267px;}
.x73_c00342{left:129.608573px;}
.x17_c00342{left:131.691416px;}
.x64_c00342{left:132.845795px;}
.x76_c00342{left:136.359792px;}
.x49_c00342{left:137.703290px;}
.x4_c00342{left:140.842500px;}
.x50_c00342{left:142.293971px;}
.x39_c00342{left:144.185609px;}
.x7b_c00342{left:145.540917px;}
.x24_c00342{left:148.240634px;}
.xb_c00342{left:149.592760px;}
.x5e_c00342{left:150.668348px;}
.x4a_c00342{left:152.014208px;}
.x28_c00342{left:156.070817px;}
.x10_c00342{left:159.514866px;}
.x60_c00342{left:162.009860px;}
.x3a_c00342{left:163.357346px;}
.x41_c00342{left:165.849974px;}
.x67_c00342{left:167.950734px;}
.x7c_c00342{left:170.653668px;}
.x18_c00342{left:172.445889px;}
.x29_c00342{left:175.782651px;}
.x42_c00342{left:179.407149px;}
.x1e_c00342{left:181.593171px;}
.x11_c00342{left:183.519054px;}
.x32_c00342{left:184.960637px;}
.x4b_c00342{left:187.387194px;}
.x53_c00342{left:190.899132px;}
.x72_c00342{left:192.524868px;}
.x5_c00342{left:195.655500px;}
.x62_c00342{left:200.621009px;}
.x43_c00342{left:202.342442px;}
.x2a_c00342{left:204.404487px;}
.x19_c00342{left:205.404960px;}
.xc_c00342{left:208.188166px;}
.x5b_c00342{left:209.263713px;}
.x55_c00342{left:211.691610px;}
.x6a_c00342{left:213.043428px;}
.x3b_c00342{left:214.391465px;}
.x2e_c00342{left:216.823035px;}
.x7d_c00342{left:219.527436px;}
.x12_c00342{left:220.778567px;}
.x2b_c00342{left:224.116322px;}
.x25_c00342{left:227.898089px;}
.x56_c00342{left:228.973035px;}
.x61_c00342{left:232.215716px;}
.x4c_c00342{left:234.642189px;}
.x33_c00342{left:236.264814px;}
.x46_c00342{left:237.481514px;}
.x1f_c00342{left:240.726212px;}
.x77_c00342{left:242.748771px;}
.x5c_c00342{left:246.527012px;}
.x26_c00342{left:249.230196px;}
.x4d_c00342{left:252.733751px;}
.x47_c00342{left:255.049748px;}
.x6_c00342{left:256.432500px;}
.x51_c00342{left:259.754822px;}
.x78_c00342{left:263.270742px;}
.x13_c00342{left:268.026462px;}
.x70_c00342{left:272.991501px;}
.x68_c00342{left:274.339713px;}
.x3c_c00342{left:275.687319px;}
.x20_c00342{left:277.441167px;}
.x57_c00342{left:278.657531px;}
.x7_c00342{left:280.180500px;}
.x14_c00342{left:283.699767px;}
.x2f_c00342{left:284.868540px;}
.x3d_c00342{left:288.377964px;}
.x44_c00342{left:290.350092px;}
.x5f_c00342{left:292.970391px;}
.x58_c00342{left:294.318683px;}
.x6d_c00342{left:295.671438px;}
.x27_c00342{left:297.293808px;}
.x34_c00342{left:301.069773px;}
.xd_c00342{left:302.966676px;}
.x2c_c00342{left:305.122511px;}
.x52_c00342{left:306.738258px;}
.x65_c00342{left:311.060903px;}
.x6b_c00342{left:333.743325px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.fsd_c00342{font-size:32.669427pt;}
.fsb_c00342{font-size:49.470846pt;}
.fs6_c00342{font-size:51.337671pt;}
.fs3_c00342{font-size:52.271083pt;}
.fs4_c00342{font-size:53.204495pt;}
.fs5_c00342{font-size:54.137907pt;}
.fsa_c00342{font-size:55.071320pt;}
.fs8_c00342{font-size:56.004732pt;}
.fs7_c00342{font-size:57.871556pt;}
.fs9_c00342{font-size:58.804968pt;}
.fs2_c00342{font-size:59.738381pt;}
.fsc_c00342{font-size:60.671793pt;}
.fs1_c00342{font-size:62.538617pt;}
.fs0_c00342{font-size:65.338854pt;}
.y0_c00342{bottom:0.000000pt;}
.yef_c00342{bottom:28.835805pt;}
.yee_c00342{bottom:28.836471pt;}
.yea_c00342{bottom:28.836912pt;}
.yed_c00342{bottom:28.836995pt;}
.yeb_c00342{bottom:28.837357pt;}
.yec_c00342{bottom:28.837500pt;}
.ye0_c00342{bottom:40.398337pt;}
.ye1_c00342{bottom:40.398960pt;}
.ye3_c00342{bottom:40.399068pt;}
.ye2_c00342{bottom:40.399085pt;}
.ye9_c00342{bottom:40.399091pt;}
.ye8_c00342{bottom:40.399152pt;}
.ye7_c00342{bottom:40.399383pt;}
.ye4_c00342{bottom:40.399540pt;}
.ye5_c00342{bottom:40.399576pt;}
.ye6_c00342{bottom:40.399665pt;}
.yd9_c00342{bottom:57.125600pt;}
.yde_c00342{bottom:57.125675pt;}
.ydb_c00342{bottom:57.125699pt;}
.ydc_c00342{bottom:57.125771pt;}
.ydf_c00342{bottom:57.126005pt;}
.yda_c00342{bottom:57.126009pt;}
.yd8_c00342{bottom:57.126016pt;}
.ydd_c00342{bottom:57.126313pt;}
.yd2_c00342{bottom:70.962045pt;}
.yd1_c00342{bottom:70.962356pt;}
.yd7_c00342{bottom:70.962487pt;}
.yd3_c00342{bottom:70.962677pt;}
.yd6_c00342{bottom:70.962716pt;}
.yd4_c00342{bottom:70.962759pt;}
.yd5_c00342{bottom:70.962947pt;}
.yd0_c00342{bottom:85.903151pt;}
.ycf_c00342{bottom:85.903228pt;}
.ycb_c00342{bottom:85.903296pt;}
.ycd_c00342{bottom:85.903537pt;}
.ycc_c00342{bottom:85.903608pt;}
.yce_c00342{bottom:85.903733pt;}
.yc2_c00342{bottom:101.334803pt;}
.yc3_c00342{bottom:101.335328pt;}
.yc4_c00342{bottom:101.335623pt;}
.yc5_c00342{bottom:101.336032pt;}
.yc6_c00342{bottom:101.336095pt;}
.yca_c00342{bottom:101.336169pt;}
.yc9_c00342{bottom:101.336240pt;}
.yc8_c00342{bottom:101.336248pt;}
.yc7_c00342{bottom:101.336345pt;}
.ybb_c00342{bottom:117.148096pt;}
.ybc_c00342{bottom:117.148505pt;}
.yba_c00342{bottom:117.148575pt;}
.ybe_c00342{bottom:117.148649pt;}
.ybd_c00342{bottom:117.148808pt;}
.yc0_c00342{bottom:117.148883pt;}
.yc1_c00342{bottom:117.149132pt;}
.ybf_c00342{bottom:117.149255pt;}
.yb2_c00342{bottom:131.102825pt;}
.yb3_c00342{bottom:131.102960pt;}
.yb1_c00342{bottom:131.103216pt;}
.yb7_c00342{bottom:131.103276pt;}
.yb9_c00342{bottom:131.103357pt;}
.yb4_c00342{bottom:131.103369pt;}
.yb5_c00342{bottom:131.103416pt;}
.yb6_c00342{bottom:131.103505pt;}
.yb8_c00342{bottom:131.103552pt;}
.yaf_c00342{bottom:146.974131pt;}
.yad_c00342{bottom:146.974181pt;}
.yb0_c00342{bottom:146.974380pt;}
.yae_c00342{bottom:146.974537pt;}
.yac_c00342{bottom:146.974687pt;}
.yab_c00342{bottom:146.974925pt;}
.ya7_c00342{bottom:161.985593pt;}
.ya8_c00342{bottom:161.986040pt;}
.ya9_c00342{bottom:161.986103pt;}
.ya6_c00342{bottom:161.986152pt;}
.ya5_c00342{bottom:161.986409pt;}
.yaa_c00342{bottom:161.986512pt;}
.ya4_c00342{bottom:161.986667pt;}
.ya3_c00342{bottom:161.987243pt;}
.ya2_c00342{bottom:176.567933pt;}
.ya1_c00342{bottom:176.567968pt;}
.ya0_c00342{bottom:176.568429pt;}
.y9f_c00342{bottom:176.568997pt;}
.y9e_c00342{bottom:176.569200pt;}
.y9d_c00342{bottom:176.569671pt;}
.y9c_c00342{bottom:176.570131pt;}
.y96_c00342{bottom:192.101140pt;}
.y94_c00342{bottom:192.101192pt;}
.y98_c00342{bottom:192.101524pt;}
.y97_c00342{bottom:192.101541pt;}
.y95_c00342{bottom:192.101717pt;}
.y99_c00342{bottom:192.101988pt;}
.y9b_c00342{bottom:192.102115pt;}
.y9a_c00342{bottom:192.102123pt;}
.y8f_c00342{bottom:207.460761pt;}
.y92_c00342{bottom:207.460845pt;}
.y91_c00342{bottom:207.461084pt;}
.y93_c00342{bottom:207.461185pt;}
.y90_c00342{bottom:207.461235pt;}
.y8e_c00342{bottom:207.461285pt;}
.y8d_c00342{bottom:222.234641pt;}
.y8c_c00342{bottom:222.235093pt;}
.y8b_c00342{bottom:222.235235pt;}
.y87_c00342{bottom:222.235604pt;}
.y8a_c00342{bottom:222.235839pt;}
.y88_c00342{bottom:222.236059pt;}
.y89_c00342{bottom:222.236077pt;}
.y86_c00342{bottom:237.752548pt;}
.y85_c00342{bottom:237.752939pt;}
.y84_c00342{bottom:237.752991pt;}
.y83_c00342{bottom:237.753256pt;}
.y7f_c00342{bottom:237.753315pt;}
.y80_c00342{bottom:237.753484pt;}
.y82_c00342{bottom:237.753744pt;}
.y81_c00342{bottom:237.753867pt;}
.y7b_c00342{bottom:252.873108pt;}
.y7a_c00342{bottom:252.873392pt;}
.y7e_c00342{bottom:252.873459pt;}
.y7c_c00342{bottom:252.873589pt;}
.y79_c00342{bottom:252.873623pt;}
.y7d_c00342{bottom:252.873796pt;}
.y77_c00342{bottom:268.908119pt;}
.y76_c00342{bottom:268.908277pt;}
.y73_c00342{bottom:268.908327pt;}
.y75_c00342{bottom:268.908383pt;}
.y74_c00342{bottom:268.908524pt;}
.y78_c00342{bottom:268.908528pt;}
.y6f_c00342{bottom:284.291321pt;}
.y71_c00342{bottom:284.291741pt;}
.y70_c00342{bottom:284.291839pt;}
.y72_c00342{bottom:284.291903pt;}
.y6c_c00342{bottom:284.291915pt;}
.y6e_c00342{bottom:284.291979pt;}
.y6d_c00342{bottom:284.292031pt;}
.y6b_c00342{bottom:284.292199pt;}
.y6a_c00342{bottom:284.292687pt;}
.y69_c00342{bottom:298.850416pt;}
.y68_c00342{bottom:298.850727pt;}
.y67_c00342{bottom:298.850771pt;}
.y62_c00342{bottom:298.851131pt;}
.y66_c00342{bottom:298.851428pt;}
.y63_c00342{bottom:298.851736pt;}
.y64_c00342{bottom:298.852067pt;}
.y65_c00342{bottom:298.852076pt;}
.y5b_c00342{bottom:311.263717pt;}
.y5c_c00342{bottom:311.491548pt;}
.y5d_c00342{bottom:311.736661pt;}
.y5e_c00342{bottom:312.393303pt;}
.y5f_c00342{bottom:313.202144pt;}
.y60_c00342{bottom:313.564684pt;}
.y61_c00342{bottom:313.751692pt;}
.y54_c00342{bottom:326.865527pt;}
.y55_c00342{bottom:327.395485pt;}
.y56_c00342{bottom:327.640668pt;}
.y57_c00342{bottom:328.366249pt;}
.y58_c00342{bottom:328.510908pt;}
.y59_c00342{bottom:328.755935pt;}
.y5a_c00342{bottom:329.694232pt;}
.y4d_c00342{bottom:341.265816pt;}
.y4e_c00342{bottom:341.928143pt;}
.y4f_c00342{bottom:342.334504pt;}
.y50_c00342{bottom:342.654539pt;}
.y51_c00342{bottom:343.175397pt;}
.y52_c00342{bottom:343.935717pt;}
.y53_c00342{bottom:344.227565pt;}
.y47_c00342{bottom:357.547545pt;}
.y48_c00342{bottom:357.547715pt;}
.y4c_c00342{bottom:357.547789pt;}
.y46_c00342{bottom:357.547891pt;}
.y49_c00342{bottom:357.548009pt;}
.y4b_c00342{bottom:357.548153pt;}
.y4a_c00342{bottom:357.548197pt;}
.y45_c00342{bottom:357.548521pt;}
.y44_c00342{bottom:357.548752pt;}
.y43_c00342{bottom:357.549240pt;}
.y42_c00342{bottom:372.547991pt;}
.y41_c00342{bottom:372.548328pt;}
.y3b_c00342{bottom:372.548401pt;}
.y3c_c00342{bottom:372.548473pt;}
.y40_c00342{bottom:372.548593pt;}
.y3e_c00342{bottom:372.548920pt;}
.y3d_c00342{bottom:372.549096pt;}
.y3f_c00342{bottom:372.549179pt;}
.y3a_c00342{bottom:387.421491pt;}
.y39_c00342{bottom:387.421988pt;}
.y38_c00342{bottom:387.422484pt;}
.y33_c00342{bottom:387.422559pt;}
.y35_c00342{bottom:387.422615pt;}
.y37_c00342{bottom:387.422688pt;}
.y34_c00342{bottom:387.422712pt;}
.y36_c00342{bottom:387.423033pt;}
.y32_c00342{bottom:402.566553pt;}
.y31_c00342{bottom:402.566640pt;}
.y2c_c00342{bottom:402.566725pt;}
.y2f_c00342{bottom:402.566879pt;}
.y30_c00342{bottom:402.566897pt;}
.y2d_c00342{bottom:402.567055pt;}
.y2e_c00342{bottom:402.567136pt;}
.y2b_c00342{bottom:402.567355pt;}
.y25_c00342{bottom:417.669965pt;}
.y24_c00342{bottom:417.670489pt;}
.y26_c00342{bottom:417.670607pt;}
.y27_c00342{bottom:417.671221pt;}
.y29_c00342{bottom:417.671348pt;}
.y28_c00342{bottom:417.671552pt;}
.y2a_c00342{bottom:417.671989pt;}
.y1c_c00342{bottom:431.276653pt;}
.y1d_c00342{bottom:431.455775pt;}
.y1e_c00342{bottom:432.131776pt;}
.y1f_c00342{bottom:432.297219pt;}
.y20_c00342{bottom:432.614875pt;}
.y21_c00342{bottom:432.825791pt;}
.y22_c00342{bottom:433.403755pt;}
.y23_c00342{bottom:433.762672pt;}
.y16_c00342{bottom:446.158624pt;}
.y17_c00342{bottom:446.813240pt;}
.y18_c00342{bottom:447.150089pt;}
.y19_c00342{bottom:447.517061pt;}
.y1a_c00342{bottom:448.024008pt;}
.y1b_c00342{bottom:448.434207pt;}
.ye_c00342{bottom:461.521447pt;}
.yf_c00342{bottom:461.669116pt;}
.y10_c00342{bottom:462.412160pt;}
.y11_c00342{bottom:463.229177pt;}
.y12_c00342{bottom:463.527896pt;}
.y13_c00342{bottom:463.991789pt;}
.y14_c00342{bottom:464.579105pt;}
.y15_c00342{bottom:464.773555pt;}
.y8_c00342{bottom:478.781531pt;}
.y9_c00342{bottom:478.781807pt;}
.ya_c00342{bottom:478.782057pt;}
.yc_c00342{bottom:478.782157pt;}
.yb_c00342{bottom:478.782503pt;}
.yd_c00342{bottom:478.782524pt;}
.y1_c00342{bottom:492.001333pt;}
.y2_c00342{bottom:492.413589pt;}
.y3_c00342{bottom:493.199673pt;}
.y4_c00342{bottom:493.402543pt;}
.y5_c00342{bottom:494.035937pt;}
.y6_c00342{bottom:494.738249pt;}
.y7_c00342{bottom:495.012671pt;}
.hf_c00342{height:32.669427pt;}
.hd_c00342{height:49.470846pt;}
.h8_c00342{height:51.337671pt;}
.h5_c00342{height:52.271083pt;}
.h6_c00342{height:53.204495pt;}
.h7_c00342{height:54.137907pt;}
.hc_c00342{height:55.071320pt;}
.ha_c00342{height:56.004732pt;}
.h9_c00342{height:57.871556pt;}
.hb_c00342{height:58.804968pt;}
.h4_c00342{height:59.738381pt;}
.he_c00342{height:60.671793pt;}
.h3_c00342{height:62.538617pt;}
.h2_c00342{height:65.338854pt;}
.h0_c00342{height:545.040000pt;}
.h1_c00342{height:545.333333pt;}
.w0_c00342{width:319.200000pt;}
.w1_c00342{width:319.333333pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:17.408000pt;}
.x8_c00342{left:19.441505pt;}
.x1a_c00342{left:20.504477pt;}
.x3e_c00342{left:23.200209pt;}
.x21_c00342{left:24.720707pt;}
.x35_c00342{left:26.637141pt;}
.x5d_c00342{left:28.078865pt;}
.xe_c00342{left:30.403115pt;}
.x69_c00342{left:32.400083pt;}
.x22_c00342{left:35.041124pt;}
.x1b_c00342{left:36.847577pt;}
.x45_c00342{left:38.287092pt;}
.x9_c00342{left:39.363535pt;}
.x54_c00342{left:41.037464pt;}
.x74_c00342{left:43.202197pt;}
.x4e_c00342{left:46.076607pt;}
.x71_c00342{left:47.042927pt;}
.x2_c00342{left:49.120000pt;}
.x36_c00342{left:50.398496pt;}
.x48_c00342{left:51.596297pt;}
.x30_c00342{left:58.080831pt;}
.x4f_c00342{left:62.878116pt;}
.x6e_c00342{left:64.083020pt;}
.x79_c00342{left:65.284204pt;}
.x15_c00342{left:66.817028pt;}
.x37_c00342{left:68.640248pt;}
.x75_c00342{left:71.524315pt;}
.x59_c00342{left:73.441157pt;}
.x31_c00342{left:75.362409pt;}
.x23_c00342{left:77.764335pt;}
.x66_c00342{left:79.443071pt;}
.x6f_c00342{left:80.405024pt;}
.x7a_c00342{left:81.605627pt;}
.xf_c00342{left:83.457088pt;}
.x40_c00342{left:86.992085pt;}
.x38_c00342{left:88.082208pt;}
.x16_c00342{left:90.882049pt;}
.x6c_c00342{left:97.204413pt;}
.x1c_c00342{left:98.285172pt;}
.x2d_c00342{left:99.605181pt;}
.x63_c00342{left:100.563520pt;}
.xa_c00342{left:108.009797pt;}
.x3_c00342{left:109.588000pt;}
.x5a_c00342{left:110.884817pt;}
.x3f_c00342{left:112.177353pt;}
.x1d_c00342{left:113.370904pt;}
.x73_c00342{left:115.207620pt;}
.x17_c00342{left:117.059036pt;}
.x64_c00342{left:118.085151pt;}
.x76_c00342{left:121.208704pt;}
.x49_c00342{left:122.402924pt;}
.x4_c00342{left:125.193333pt;}
.x50_c00342{left:126.483529pt;}
.x39_c00342{left:128.164985pt;}
.x7b_c00342{left:129.369704pt;}
.x24_c00342{left:131.769452pt;}
.xb_c00342{left:132.971343pt;}
.x5e_c00342{left:133.927420pt;}
.x4a_c00342{left:135.123740pt;}
.x28_c00342{left:138.729615pt;}
.x10_c00342{left:141.790992pt;}
.x60_c00342{left:144.008764pt;}
.x3a_c00342{left:145.206529pt;}
.x41_c00342{left:147.422199pt;}
.x67_c00342{left:149.289541pt;}
.x7c_c00342{left:151.692149pt;}
.x18_c00342{left:153.285235pt;}
.x29_c00342{left:156.251245pt;}
.x42_c00342{left:159.473021pt;}
.x1e_c00342{left:161.416152pt;}
.x11_c00342{left:163.128048pt;}
.x32_c00342{left:164.409455pt;}
.x4b_c00342{left:166.566395pt;}
.x53_c00342{left:169.688117pt;}
.x72_c00342{left:171.133216pt;}
.x5_c00342{left:173.916000pt;}
.x62_c00342{left:178.329785pt;}
.x43_c00342{left:179.859948pt;}
.x2a_c00342{left:181.692877pt;}
.x19_c00342{left:182.582187pt;}
.xc_c00342{left:185.056148pt;}
.x5b_c00342{left:186.012189pt;}
.x55_c00342{left:188.170320pt;}
.x6a_c00342{left:189.371936pt;}
.x3b_c00342{left:190.570191pt;}
.x2e_c00342{left:192.731587pt;}
.x7d_c00342{left:195.135499pt;}
.x12_c00342{left:196.247615pt;}
.x2b_c00342{left:199.214508pt;}
.x25_c00342{left:202.576079pt;}
.x56_c00342{left:203.531587pt;}
.x61_c00342{left:206.413969pt;}
.x4c_c00342{left:208.570835pt;}
.x33_c00342{left:210.013168pt;}
.x46_c00342{left:211.094679pt;}
.x1f_c00342{left:213.978855pt;}
.x77_c00342{left:215.776685pt;}
.x5c_c00342{left:219.135121pt;}
.x26_c00342{left:221.537952pt;}
.x4d_c00342{left:224.652223pt;}
.x47_c00342{left:226.710887pt;}
.x6_c00342{left:227.940000pt;}
.x51_c00342{left:230.893175pt;}
.x78_c00342{left:234.018437pt;}
.x13_c00342{left:238.245744pt;}
.x70_c00342{left:242.659112pt;}
.x68_c00342{left:243.857523pt;}
.x3c_c00342{left:245.055395pt;}
.x20_c00342{left:246.614371pt;}
.x57_c00342{left:247.695583pt;}
.x7_c00342{left:249.049333pt;}
.x14_c00342{left:252.177571pt;}
.x2f_c00342{left:253.216480pt;}
.x3d_c00342{left:256.335968pt;}
.x44_c00342{left:258.088971pt;}
.x5f_c00342{left:260.418125pt;}
.x58_c00342{left:261.616607pt;}
.x6d_c00342{left:262.819056pt;}
.x27_c00342{left:264.261163pt;}
.x34_c00342{left:267.617576pt;}
.xd_c00342{left:269.303712pt;}
.x2c_c00342{left:271.220009pt;}
.x52_c00342{left:272.656229pt;}
.x65_c00342{left:276.498580pt;}
.x6b_c00342{left:296.660733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00343 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00343 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00343 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00343 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00343.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00343{transform:matrix(0.026555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026555,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.096581,-0.001642,0.004249,0.249964,0,0);-ms-transform:matrix(0.096581,-0.001642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.096581,-0.001642,0.004249,0.249964,0,0);}
.m0_c00343{transform:matrix(0.113245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113245,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.129636,-0.002204,0.004249,0.249964,0,0);-ms-transform:matrix(0.129636,-0.002204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.129636,-0.002204,0.004249,0.249964,0,0);}
.m16_c00343{transform:matrix(0.134040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00343{transform:matrix(0.138231,-0.001935,0.003500,0.249976,0,0);-ms-transform:matrix(0.138231,-0.001935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.138231,-0.001935,0.003500,0.249976,0,0);}
.m1f_c00343{transform:matrix(0.138830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138830,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140895,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.144830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144830,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145295,0.000000,0.000000,0.250000,0,0);}
.md3_c00343{transform:matrix(0.147485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147485,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150690,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156985,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.m94_c00343{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.mdc_c00343{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162310,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.164164,-0.002298,0.003500,0.249976,0,0);-ms-transform:matrix(0.164164,-0.002298,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164164,-0.002298,0.003500,0.249976,0,0);}
.m5_c00343{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.mb0_c00343{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164695,0.000000,0.000000,0.250000,0,0);}
.ma1_c00343{transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165830,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.mb4_c00343{transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00343{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.m90_c00343{transform:matrix(0.167815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167815,0.000000,0.000000,0.250000,0,0);}
.m97_c00343{transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);}
.m7f_c00343{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m82_c00343{transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);}
.mbd_c00343{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.170823,-0.002392,0.003500,0.249976,0,0);-ms-transform:matrix(0.170823,-0.002392,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170823,-0.002392,0.003500,0.249976,0,0);}
.m4b_c00343{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.mbe_c00343{transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171210,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172055,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m9f_c00343{transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.172750,-0.002937,0.004249,0.249964,0,0);-ms-transform:matrix(0.172750,-0.002937,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172750,-0.002937,0.004249,0.249964,0,0);}
.m3f_c00343{transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172940,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.174920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174920,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.mac_c00343{transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);}
.md7_c00343{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.m9b_c00343{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.mc1_c00343{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m80_c00343{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m91_c00343{transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178060,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);}
.mbf_c00343{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.md5_c00343{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.179957,-0.002519,0.003500,0.249976,0,0);-ms-transform:matrix(0.179957,-0.002519,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179957,-0.002519,0.003500,0.249976,0,0);}
.m9a_c00343{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00343{transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);}
.mb6_c00343{transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181340,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.ma0_c00343{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00343{transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184035,0.000000,0.000000,0.250000,0,0);}
.md8_c00343{transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);}
.mb1_c00343{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.ma9_c00343{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.187577,-0.002626,0.003500,0.249976,0,0);-ms-transform:matrix(0.187577,-0.002626,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187577,-0.002626,0.003500,0.249976,0,0);}
.mcc_c00343{transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);}
.m8d_c00343{transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m8e_c00343{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m8c_c00343{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);}
.mcf_c00343{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.md6_c00343{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00343{transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190335,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.190507,-0.003239,0.004249,0.249964,0,0);-ms-transform:matrix(0.190507,-0.003239,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190507,-0.003239,0.004249,0.249964,0,0);}
.m9c_c00343{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.192411,-0.002694,0.003500,0.249976,0,0);-ms-transform:matrix(0.192411,-0.002694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192411,-0.002694,0.003500,0.249976,0,0);}
.m75_c00343{transform:matrix(0.192686,-0.002698,0.003500,0.249976,0,0);-ms-transform:matrix(0.192686,-0.002698,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192686,-0.002698,0.003500,0.249976,0,0);}
.mb_c00343{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.m7d_c00343{transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00343{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.m81_c00343{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194980,0.000000,0.000000,0.250000,0,0);}
.mda_c00343{transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);}
.mc5_c00343{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.ma3_c00343{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m95_c00343{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.m9e_c00343{transform:matrix(0.198970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198970,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.mc2_c00343{transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);}
.mc3_c00343{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.md9_c00343{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201280,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);}
.mb7_c00343{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.mdb_c00343{transform:matrix(0.202710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202710,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.m86_c00343{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.mc0_c00343{transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.mc6_c00343{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.207555,-0.002906,0.003500,0.249976,0,0);-ms-transform:matrix(0.207555,-0.002906,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207555,-0.002906,0.003500,0.249976,0,0);}
.mba_c00343{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);}
.m99_c00343{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);-ms-transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208495,-0.003544,0.004249,0.249964,0,0);}
.m4a_c00343{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.208840,-0.003550,0.004249,0.249964,0,0);-ms-transform:matrix(0.208840,-0.003550,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208840,-0.003550,0.004249,0.249964,0,0);}
.m88_c00343{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m7c_c00343{transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);}
.md0_c00343{transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00343{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00343{transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);}
.mae_c00343{transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.216124,-0.003674,0.004249,0.249964,0,0);-ms-transform:matrix(0.216124,-0.003674,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216124,-0.003674,0.004249,0.249964,0,0);}
.m62_c00343{transform:matrix(0.216449,-0.003680,0.004249,0.249964,0,0);-ms-transform:matrix(0.216449,-0.003680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216449,-0.003680,0.004249,0.249964,0,0);}
.m8a_c00343{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.216884,-0.003036,0.003500,0.249976,0,0);-ms-transform:matrix(0.216884,-0.003036,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216884,-0.003036,0.003500,0.249976,0,0);}
.m3a_c00343{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.217690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217690,0.000000,0.000000,0.250000,0,0);}
.m7e_c00343{transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218035,0.000000,0.000000,0.250000,0,0);}
.mb5_c00343{transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.221368,-0.003763,0.004249,0.249964,0,0);-ms-transform:matrix(0.221368,-0.003763,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221368,-0.003763,0.004249,0.249964,0,0);}
.m63_c00343{transform:matrix(0.221818,-0.003771,0.004249,0.249964,0,0);-ms-transform:matrix(0.221818,-0.003771,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221818,-0.003771,0.004249,0.249964,0,0);}
.mad_c00343{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.ma7_c00343{transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);}
.mce_c00343{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.ma4_c00343{transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);}
.md1_c00343{transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.223455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223455,0.000000,0.000000,0.250000,0,0);}
.ma2_c00343{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);}
.mcd_c00343{transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);}
.m83_c00343{transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);}
.mc4_c00343{transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);}
.m87_c00343{transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);}
.md2_c00343{transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);}
.mc9_c00343{transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229685,0.000000,0.000000,0.250000,0,0);}
.m85_c00343{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.mc7_c00343{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{transform:matrix(0.231052,-0.003235,0.003500,0.249976,0,0);-ms-transform:matrix(0.231052,-0.003235,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231052,-0.003235,0.003500,0.249976,0,0);}
.m20_c00343{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m96_c00343{transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.ma6_c00343{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);}
.mc8_c00343{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.242421,-0.003394,0.003500,0.249976,0,0);-ms-transform:matrix(0.242421,-0.003394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242421,-0.003394,0.003500,0.249976,0,0);}
.m52_c00343{transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.244500,-0.004156,0.004249,0.249964,0,0);-ms-transform:matrix(0.244500,-0.004156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244500,-0.004156,0.004249,0.249964,0,0);}
.m84_c00343{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.mca_c00343{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.246901,-0.003457,0.003500,0.249976,0,0);-ms-transform:matrix(0.246901,-0.003457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246901,-0.003457,0.003500,0.249976,0,0);}
.m2e_c00343{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.mb3_c00343{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.252140,-0.003530,0.003500,0.249976,0,0);-ms-transform:matrix(0.252140,-0.003530,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252140,-0.003530,0.003500,0.249976,0,0);}
.mbb_c00343{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.maf_c00343{transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.264405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264405,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.273535,-0.004650,0.004249,0.249964,0,0);-ms-transform:matrix(0.273535,-0.004650,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273535,-0.004650,0.004249,0.249964,0,0);}
.m58_c00343{transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.306540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306540,0.000000,0.000000,0.250000,0,0);}
.md4_c00343{transform:matrix(0.308950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308950,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.365899,-0.005123,0.003500,0.249976,0,0);-ms-transform:matrix(0.365899,-0.005123,0.003500,0.249976,0,0);-webkit-transform:matrix(0.365899,-0.005123,0.003500,0.249976,0,0);}
.m5b_c00343{transform:matrix(0.368365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368365,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.424823,-0.005948,0.003500,0.249976,0,0);-ms-transform:matrix(0.424823,-0.005948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.424823,-0.005948,0.003500,0.249976,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls0_c00343{letter-spacing:0.000000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:0.000000px;}
.fc0_c00343{color:transparent;}
.fs8_c00343{font-size:22.050000px;}
.fsb_c00343{font-size:54.605351px;}
.fs10_c00343{font-size:55.650000px;}
.fsa_c00343{font-size:58.808496px;}
.fs7_c00343{font-size:59.850000px;}
.fs5_c00343{font-size:60.900000px;}
.fsd_c00343{font-size:61.950000px;}
.fsf_c00343{font-size:63.000000px;}
.fs6_c00343{font-size:64.050000px;}
.fs2_c00343{font-size:65.100000px;}
.fse_c00343{font-size:66.150000px;}
.fsc_c00343{font-size:67.206585px;}
.fs4_c00343{font-size:69.300000px;}
.fs3_c00343{font-size:70.350000px;}
.fs1_c00343{font-size:71.400000px;}
.fs9_c00343{font-size:111.316082px;}
.fs0_c00343{font-size:112.350000px;}
.y0_c00343{bottom:0.000000px;}
.yae_c00343{bottom:23.490000px;}
.yaf_c00343{bottom:23.965500px;}
.yb0_c00343{bottom:24.622500px;}
.yb1_c00343{bottom:24.952500px;}
.yb2_c00343{bottom:25.636500px;}
.yb3_c00343{bottom:26.160000px;}
.yb4_c00343{bottom:26.494500px;}
.yb5_c00343{bottom:27.327000px;}
.yb6_c00343{bottom:28.555500px;}
.yb7_c00343{bottom:29.272500px;}
.ya5_c00343{bottom:41.305500px;}
.ya6_c00343{bottom:41.565000px;}
.ya7_c00343{bottom:42.303000px;}
.ya8_c00343{bottom:42.588000px;}
.ya9_c00343{bottom:43.363500px;}
.yaa_c00343{bottom:43.623000px;}
.yab_c00343{bottom:43.827000px;}
.yac_c00343{bottom:44.571000px;}
.yad_c00343{bottom:44.809500px;}
.y9e_c00343{bottom:57.237000px;}
.y9f_c00343{bottom:57.898500px;}
.ya0_c00343{bottom:59.116500px;}
.ya1_c00343{bottom:59.502000px;}
.ya2_c00343{bottom:60.385500px;}
.ya3_c00343{bottom:61.090500px;}
.ya4_c00343{bottom:62.025000px;}
.y96_c00343{bottom:74.245500px;}
.y97_c00343{bottom:74.877000px;}
.y98_c00343{bottom:75.138000px;}
.y99_c00343{bottom:76.227000px;}
.y9a_c00343{bottom:76.650000px;}
.y9b_c00343{bottom:76.914000px;}
.y9c_c00343{bottom:77.757000px;}
.y9d_c00343{bottom:78.120000px;}
.y8f_c00343{bottom:91.527000px;}
.y90_c00343{bottom:92.085000px;}
.y91_c00343{bottom:92.706000px;}
.y92_c00343{bottom:93.058500px;}
.y93_c00343{bottom:93.343500px;}
.y94_c00343{bottom:93.796500px;}
.y95_c00343{bottom:94.642500px;}
.y86_c00343{bottom:109.348500px;}
.y87_c00343{bottom:109.840500px;}
.y88_c00343{bottom:110.016000px;}
.y89_c00343{bottom:110.577000px;}
.y8a_c00343{bottom:110.796000px;}
.y8b_c00343{bottom:110.983500px;}
.y8c_c00343{bottom:111.490500px;}
.y8d_c00343{bottom:111.775500px;}
.y8e_c00343{bottom:112.023000px;}
.y7e_c00343{bottom:125.821500px;}
.y7f_c00343{bottom:126.291000px;}
.y80_c00343{bottom:127.275000px;}
.y81_c00343{bottom:127.603500px;}
.y82_c00343{bottom:128.494500px;}
.y83_c00343{bottom:128.926500px;}
.y84_c00343{bottom:129.352500px;}
.y85_c00343{bottom:129.688500px;}
.y77_c00343{bottom:142.833000px;}
.y78_c00343{bottom:143.407500px;}
.y79_c00343{bottom:143.733000px;}
.y7a_c00343{bottom:144.586500px;}
.y7b_c00343{bottom:145.168500px;}
.y7c_c00343{bottom:145.984500px;}
.y7d_c00343{bottom:146.233500px;}
.y6f_c00343{bottom:160.116000px;}
.y70_c00343{bottom:161.121000px;}
.y71_c00343{bottom:161.688000px;}
.y72_c00343{bottom:162.843000px;}
.y73_c00343{bottom:164.659500px;}
.y74_c00343{bottom:165.139500px;}
.y75_c00343{bottom:165.519000px;}
.y76_c00343{bottom:166.258500px;}
.y6e_c00343{bottom:180.439500px;}
.y67_c00343{bottom:195.483000px;}
.y68_c00343{bottom:196.188000px;}
.y69_c00343{bottom:196.519500px;}
.y6a_c00343{bottom:197.587500px;}
.y6b_c00343{bottom:198.046500px;}
.y6c_c00343{bottom:198.880500px;}
.y6d_c00343{bottom:199.123500px;}
.y60_c00343{bottom:213.301500px;}
.y61_c00343{bottom:213.943500px;}
.y62_c00343{bottom:214.192500px;}
.y63_c00343{bottom:214.602000px;}
.y64_c00343{bottom:215.184000px;}
.y65_c00343{bottom:215.442000px;}
.y66_c00343{bottom:216.256500px;}
.y5f_c00343{bottom:231.759000px;}
.y57_c00343{bottom:262.170438px;}
.y58_c00343{bottom:263.174370px;}
.y59_c00343{bottom:263.498757px;}
.y5a_c00343{bottom:263.696658px;}
.y5b_c00343{bottom:264.580017px;}
.y5c_c00343{bottom:264.892224px;}
.y5d_c00343{bottom:265.719033px;}
.y5e_c00343{bottom:266.349747px;}
.y50_c00343{bottom:279.991500px;}
.y51_c00343{bottom:280.479603px;}
.y52_c00343{bottom:280.729167px;}
.y53_c00343{bottom:281.583573px;}
.y54_c00343{bottom:282.868815px;}
.y55_c00343{bottom:283.408452px;}
.y56_c00343{bottom:283.942545px;}
.y47_c00343{bottom:296.728654px;}
.y48_c00343{bottom:297.391929px;}
.y49_c00343{bottom:297.639411px;}
.y4a_c00343{bottom:298.559917px;}
.y4b_c00343{bottom:298.831923px;}
.y4c_c00343{bottom:299.065957px;}
.y4d_c00343{bottom:299.558677px;}
.y4e_c00343{bottom:299.846247px;}
.y4f_c00343{bottom:300.500791px;}
.y44_c00343{bottom:331.026000px;}
.y45_c00343{bottom:332.425287px;}
.y46_c00343{bottom:332.912057px;}
.y43_c00343{bottom:349.920000px;}
.y42_c00343{bottom:383.961000px;}
.y41_c00343{bottom:401.364000px;}
.y38_c00343{bottom:416.616000px;}
.y39_c00343{bottom:417.127500px;}
.y3a_c00343{bottom:417.358500px;}
.y3b_c00343{bottom:417.667500px;}
.y3c_c00343{bottom:418.216500px;}
.y3d_c00343{bottom:418.449000px;}
.y3e_c00343{bottom:418.746000px;}
.y3f_c00343{bottom:419.245500px;}
.y40_c00343{bottom:419.448000px;}
.y37_c00343{bottom:434.847000px;}
.y36_c00343{bottom:451.851000px;}
.y2d_c00343{bottom:467.641500px;}
.y2e_c00343{bottom:467.838000px;}
.y2f_c00343{bottom:468.049500px;}
.y30_c00343{bottom:468.655500px;}
.y31_c00343{bottom:468.828000px;}
.y32_c00343{bottom:469.443000px;}
.y33_c00343{bottom:469.663500px;}
.y34_c00343{bottom:470.263500px;}
.y35_c00343{bottom:470.590500px;}
.y24_c00343{bottom:484.111500px;}
.y25_c00343{bottom:484.495500px;}
.y26_c00343{bottom:484.717500px;}
.y27_c00343{bottom:485.026500px;}
.y28_c00343{bottom:485.551500px;}
.y29_c00343{bottom:486.258000px;}
.y2a_c00343{bottom:486.466500px;}
.y2b_c00343{bottom:486.633000px;}
.y2c_c00343{bottom:486.975000px;}
.y1b_c00343{bottom:500.314500px;}
.y1c_c00343{bottom:501.114000px;}
.y1d_c00343{bottom:501.415500px;}
.y1e_c00343{bottom:502.150500px;}
.y1f_c00343{bottom:502.431000px;}
.y20_c00343{bottom:502.737000px;}
.y21_c00343{bottom:503.074500px;}
.y22_c00343{bottom:504.435000px;}
.y23_c00343{bottom:504.732000px;}
.y12_c00343{bottom:517.861500px;}
.y13_c00343{bottom:518.644500px;}
.y14_c00343{bottom:519.249000px;}
.y15_c00343{bottom:519.490500px;}
.y16_c00343{bottom:520.012500px;}
.y17_c00343{bottom:520.273500px;}
.y18_c00343{bottom:520.546500px;}
.y19_c00343{bottom:521.118000px;}
.y1a_c00343{bottom:521.349000px;}
.y9_c00343{bottom:534.333000px;}
.ya_c00343{bottom:535.107000px;}
.yb_c00343{bottom:535.408500px;}
.yc_c00343{bottom:536.178000px;}
.yd_c00343{bottom:536.394000px;}
.ye_c00343{bottom:536.716500px;}
.yf_c00343{bottom:537.274500px;}
.y10_c00343{bottom:537.624000px;}
.y11_c00343{bottom:538.624500px;}
.y2_c00343{bottom:551.883000px;}
.y3_c00343{bottom:552.507000px;}
.y4_c00343{bottom:553.233000px;}
.y5_c00343{bottom:553.519500px;}
.y6_c00343{bottom:553.765500px;}
.y7_c00343{bottom:554.574000px;}
.y8_c00343{bottom:554.838000px;}
.y1_c00343{bottom:567.535500px;}
.ha_c00343{height:22.050000px;}
.hd_c00343{height:54.605351px;}
.h12_c00343{height:55.650000px;}
.hc_c00343{height:58.808496px;}
.h9_c00343{height:59.850000px;}
.h7_c00343{height:60.900000px;}
.hf_c00343{height:61.950000px;}
.h11_c00343{height:63.000000px;}
.h8_c00343{height:64.050000px;}
.h4_c00343{height:65.100000px;}
.h10_c00343{height:66.150000px;}
.he_c00343{height:67.206585px;}
.h6_c00343{height:69.300000px;}
.h5_c00343{height:70.350000px;}
.h3_c00343{height:71.400000px;}
.hb_c00343{height:111.316082px;}
.h2_c00343{height:112.350000px;}
.h0_c00343{height:613.170000px;}
.h1_c00343{height:613.500000px;}
.w0_c00343{width:359.100000px;}
.w1_c00343{width:359.250000px;}
.x0_c00343{left:0.000000px;}
.x70_c00343{left:37.486500px;}
.x59_c00343{left:39.690000px;}
.x30_c00343{left:41.310000px;}
.x2_c00343{left:43.111500px;}
.x4f_c00343{left:48.804282px;}
.x73_c00343{left:58.732500px;}
.x24_c00343{left:61.431000px;}
.x3c_c00343{left:63.718500px;}
.x5a_c00343{left:67.230000px;}
.x68_c00343{left:71.740500px;}
.x71_c00343{left:74.238000px;}
.x1d_c00343{left:77.668500px;}
.x25_c00343{left:80.619000px;}
.x60_c00343{left:83.422500px;}
.x2a_c00343{left:85.050000px;}
.x3_c00343{left:87.664500px;}
.x9_c00343{left:91.761000px;}
.x17_c00343{left:92.890500px;}
.x31_c00343{left:94.230000px;}
.x11_c00343{left:98.728500px;}
.x6a_c00343{left:101.673000px;}
.x64_c00343{left:104.152500px;}
.x2b_c00343{left:106.110000px;}
.x61_c00343{left:108.048000px;}
.x37_c00343{left:109.434000px;}
.xa_c00343{left:110.578500px;}
.x18_c00343{left:111.717000px;}
.x52_c00343{left:113.670000px;}
.x42_c00343{left:116.098500px;}
.x57_c00343{left:122.151000px;}
.x32_c00343{left:124.740000px;}
.x1e_c00343{left:125.958000px;}
.x53_c00343{left:129.330000px;}
.x3d_c00343{left:130.408500px;}
.x5b_c00343{left:134.190000px;}
.x26_c00343{left:135.666000px;}
.x38_c00343{left:137.563500px;}
.x4_c00343{left:139.498500px;}
.x12_c00343{left:141.919500px;}
.x47_c00343{left:143.188500px;}
.x27_c00343{left:151.330500px;}
.x6b_c00343{left:152.703000px;}
.x4d_c00343{left:155.706000px;}
.x19_c00343{left:157.614000px;}
.xb_c00343{left:158.682000px;}
.x5_c00343{left:160.014000px;}
.x72_c00343{left:163.342500px;}
.x65_c00343{left:165.115500px;}
.x6c_c00343{left:166.437000px;}
.x3e_c00343{left:170.098500px;}
.xc_c00343{left:172.200000px;}
.x1f_c00343{left:173.715000px;}
.x1_c00343{left:176.040000px;}
.x6_c00343{left:177.568500px;}
.x2c_c00343{left:180.900000px;}
.x76_c00343{left:181.978500px;}
.x33_c00343{left:183.870000px;}
.x39_c00343{left:187.456500px;}
.x43_c00343{left:189.268500px;}
.x49_c00343{left:191.068475px;}
.xd_c00343{left:192.384000px;}
.x1a_c00343{left:194.329500px;}
.x13_c00343{left:196.464000px;}
.x5c_c00343{left:200.610000px;}
.x2d_c00343{left:203.040000px;}
.x54_c00343{left:204.120000px;}
.x28_c00343{left:207.219000px;}
.x3a_c00343{left:208.570500px;}
.x6d_c00343{left:210.514500px;}
.x58_c00343{left:212.353500px;}
.x14_c00343{left:215.056500px;}
.x74_c00343{left:216.961500px;}
.x69_c00343{left:218.620500px;}
.x77_c00343{left:221.646000px;}
.x55_c00343{left:222.750000px;}
.x48_c00343{left:225.499500px;}
.xe_c00343{left:227.274000px;}
.x34_c00343{left:228.420000px;}
.x50_c00343{left:230.250741px;}
.x75_c00343{left:232.633500px;}
.x7_c00343{left:235.348500px;}
.x20_c00343{left:237.964500px;}
.x3f_c00343{left:239.218500px;}
.x4a_c00343{left:242.909601px;}
.x35_c00343{left:246.780000px;}
.xf_c00343{left:249.147000px;}
.x5d_c00343{left:252.450000px;}
.x8_c00343{left:254.253000px;}
.x21_c00343{left:256.909500px;}
.x62_c00343{left:258.094500px;}
.x40_c00343{left:261.088500px;}
.x4b_c00343{left:263.444146px;}
.x66_c00343{left:265.044000px;}
.x2e_c00343{left:267.030000px;}
.x22_c00343{left:272.034000px;}
.x15_c00343{left:275.304000px;}
.x78_c00343{left:280.170000px;}
.x29_c00343{left:281.691000px;}
.x67_c00343{left:282.861000px;}
.x44_c00343{left:284.038500px;}
.x4e_c00343{left:286.054500px;}
.x5e_c00343{left:288.630000px;}
.x6e_c00343{left:289.642500px;}
.x16_c00343{left:291.781500px;}
.x56_c00343{left:292.950000px;}
.x3b_c00343{left:299.290500px;}
.x1b_c00343{left:300.469500px;}
.x23_c00343{left:303.079500px;}
.x63_c00343{left:306.742500px;}
.x5f_c00343{left:308.340000px;}
.x4c_c00343{left:310.155018px;}
.x10_c00343{left:311.724000px;}
.x79_c00343{left:314.283000px;}
.x6f_c00343{left:315.573000px;}
.x1c_c00343{left:319.077000px;}
.x2f_c00343{left:323.730000px;}
.x36_c00343{left:326.160000px;}
.x51_c00343{left:327.393876px;}
.x41_c00343{left:332.638500px;}
.x45_c00343{left:334.800000px;}
.x46_c00343{left:335.880000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.fs8_c00343{font-size:19.600000pt;}
.fsb_c00343{font-size:48.538089pt;}
.fs10_c00343{font-size:49.466667pt;}
.fsa_c00343{font-size:52.274219pt;}
.fs7_c00343{font-size:53.200000pt;}
.fs5_c00343{font-size:54.133333pt;}
.fsd_c00343{font-size:55.066667pt;}
.fsf_c00343{font-size:56.000000pt;}
.fs6_c00343{font-size:56.933333pt;}
.fs2_c00343{font-size:57.866667pt;}
.fse_c00343{font-size:58.800000pt;}
.fsc_c00343{font-size:59.739187pt;}
.fs4_c00343{font-size:61.600000pt;}
.fs3_c00343{font-size:62.533333pt;}
.fs1_c00343{font-size:63.466667pt;}
.fs9_c00343{font-size:98.947628pt;}
.fs0_c00343{font-size:99.866667pt;}
.y0_c00343{bottom:0.000000pt;}
.yae_c00343{bottom:20.880000pt;}
.yaf_c00343{bottom:21.302667pt;}
.yb0_c00343{bottom:21.886667pt;}
.yb1_c00343{bottom:22.180000pt;}
.yb2_c00343{bottom:22.788000pt;}
.yb3_c00343{bottom:23.253333pt;}
.yb4_c00343{bottom:23.550667pt;}
.yb5_c00343{bottom:24.290667pt;}
.yb6_c00343{bottom:25.382667pt;}
.yb7_c00343{bottom:26.020000pt;}
.ya5_c00343{bottom:36.716000pt;}
.ya6_c00343{bottom:36.946667pt;}
.ya7_c00343{bottom:37.602667pt;}
.ya8_c00343{bottom:37.856000pt;}
.ya9_c00343{bottom:38.545333pt;}
.yaa_c00343{bottom:38.776000pt;}
.yab_c00343{bottom:38.957333pt;}
.yac_c00343{bottom:39.618667pt;}
.yad_c00343{bottom:39.830667pt;}
.y9e_c00343{bottom:50.877333pt;}
.y9f_c00343{bottom:51.465333pt;}
.ya0_c00343{bottom:52.548000pt;}
.ya1_c00343{bottom:52.890667pt;}
.ya2_c00343{bottom:53.676000pt;}
.ya3_c00343{bottom:54.302667pt;}
.ya4_c00343{bottom:55.133333pt;}
.y96_c00343{bottom:65.996000pt;}
.y97_c00343{bottom:66.557333pt;}
.y98_c00343{bottom:66.789333pt;}
.y99_c00343{bottom:67.757333pt;}
.y9a_c00343{bottom:68.133333pt;}
.y9b_c00343{bottom:68.368000pt;}
.y9c_c00343{bottom:69.117333pt;}
.y9d_c00343{bottom:69.440000pt;}
.y8f_c00343{bottom:81.357333pt;}
.y90_c00343{bottom:81.853333pt;}
.y91_c00343{bottom:82.405333pt;}
.y92_c00343{bottom:82.718667pt;}
.y93_c00343{bottom:82.972000pt;}
.y94_c00343{bottom:83.374667pt;}
.y95_c00343{bottom:84.126667pt;}
.y86_c00343{bottom:97.198667pt;}
.y87_c00343{bottom:97.636000pt;}
.y88_c00343{bottom:97.792000pt;}
.y89_c00343{bottom:98.290667pt;}
.y8a_c00343{bottom:98.485333pt;}
.y8b_c00343{bottom:98.652000pt;}
.y8c_c00343{bottom:99.102667pt;}
.y8d_c00343{bottom:99.356000pt;}
.y8e_c00343{bottom:99.576000pt;}
.y7e_c00343{bottom:111.841333pt;}
.y7f_c00343{bottom:112.258667pt;}
.y80_c00343{bottom:113.133333pt;}
.y81_c00343{bottom:113.425333pt;}
.y82_c00343{bottom:114.217333pt;}
.y83_c00343{bottom:114.601333pt;}
.y84_c00343{bottom:114.980000pt;}
.y85_c00343{bottom:115.278667pt;}
.y77_c00343{bottom:126.962667pt;}
.y78_c00343{bottom:127.473333pt;}
.y79_c00343{bottom:127.762667pt;}
.y7a_c00343{bottom:128.521333pt;}
.y7b_c00343{bottom:129.038667pt;}
.y7c_c00343{bottom:129.764000pt;}
.y7d_c00343{bottom:129.985333pt;}
.y6f_c00343{bottom:142.325333pt;}
.y70_c00343{bottom:143.218667pt;}
.y71_c00343{bottom:143.722667pt;}
.y72_c00343{bottom:144.749333pt;}
.y73_c00343{bottom:146.364000pt;}
.y74_c00343{bottom:146.790667pt;}
.y75_c00343{bottom:147.128000pt;}
.y76_c00343{bottom:147.785333pt;}
.y6e_c00343{bottom:160.390667pt;}
.y67_c00343{bottom:173.762667pt;}
.y68_c00343{bottom:174.389333pt;}
.y69_c00343{bottom:174.684000pt;}
.y6a_c00343{bottom:175.633333pt;}
.y6b_c00343{bottom:176.041333pt;}
.y6c_c00343{bottom:176.782667pt;}
.y6d_c00343{bottom:176.998667pt;}
.y60_c00343{bottom:189.601333pt;}
.y61_c00343{bottom:190.172000pt;}
.y62_c00343{bottom:190.393333pt;}
.y63_c00343{bottom:190.757333pt;}
.y64_c00343{bottom:191.274667pt;}
.y65_c00343{bottom:191.504000pt;}
.y66_c00343{bottom:192.228000pt;}
.y5f_c00343{bottom:206.008000pt;}
.y57_c00343{bottom:233.040389pt;}
.y58_c00343{bottom:233.932773pt;}
.y59_c00343{bottom:234.221117pt;}
.y5a_c00343{bottom:234.397029pt;}
.y5b_c00343{bottom:235.182237pt;}
.y5c_c00343{bottom:235.459755pt;}
.y5d_c00343{bottom:236.194696pt;}
.y5e_c00343{bottom:236.755331pt;}
.y50_c00343{bottom:248.881333pt;}
.y51_c00343{bottom:249.315203pt;}
.y52_c00343{bottom:249.537037pt;}
.y53_c00343{bottom:250.296509pt;}
.y54_c00343{bottom:251.438947pt;}
.y55_c00343{bottom:251.918624pt;}
.y56_c00343{bottom:252.393373pt;}
.y47_c00343{bottom:263.758804pt;}
.y48_c00343{bottom:264.348381pt;}
.y49_c00343{bottom:264.568365pt;}
.y4a_c00343{bottom:265.386593pt;}
.y4b_c00343{bottom:265.628376pt;}
.y4c_c00343{bottom:265.836407pt;}
.y4d_c00343{bottom:266.274380pt;}
.y4e_c00343{bottom:266.529997pt;}
.y4f_c00343{bottom:267.111815pt;}
.y44_c00343{bottom:294.245333pt;}
.y45_c00343{bottom:295.489144pt;}
.y46_c00343{bottom:295.921828pt;}
.y43_c00343{bottom:311.040000pt;}
.y42_c00343{bottom:341.298667pt;}
.y41_c00343{bottom:356.768000pt;}
.y38_c00343{bottom:370.325333pt;}
.y39_c00343{bottom:370.780000pt;}
.y3a_c00343{bottom:370.985333pt;}
.y3b_c00343{bottom:371.260000pt;}
.y3c_c00343{bottom:371.748000pt;}
.y3d_c00343{bottom:371.954667pt;}
.y3e_c00343{bottom:372.218667pt;}
.y3f_c00343{bottom:372.662667pt;}
.y40_c00343{bottom:372.842667pt;}
.y37_c00343{bottom:386.530667pt;}
.y36_c00343{bottom:401.645333pt;}
.y2d_c00343{bottom:415.681333pt;}
.y2e_c00343{bottom:415.856000pt;}
.y2f_c00343{bottom:416.044000pt;}
.y30_c00343{bottom:416.582667pt;}
.y31_c00343{bottom:416.736000pt;}
.y32_c00343{bottom:417.282667pt;}
.y33_c00343{bottom:417.478667pt;}
.y34_c00343{bottom:418.012000pt;}
.y35_c00343{bottom:418.302667pt;}
.y24_c00343{bottom:430.321333pt;}
.y25_c00343{bottom:430.662667pt;}
.y26_c00343{bottom:430.860000pt;}
.y27_c00343{bottom:431.134667pt;}
.y28_c00343{bottom:431.601333pt;}
.y29_c00343{bottom:432.229333pt;}
.y2a_c00343{bottom:432.414667pt;}
.y2b_c00343{bottom:432.562667pt;}
.y2c_c00343{bottom:432.866667pt;}
.y1b_c00343{bottom:444.724000pt;}
.y1c_c00343{bottom:445.434667pt;}
.y1d_c00343{bottom:445.702667pt;}
.y1e_c00343{bottom:446.356000pt;}
.y1f_c00343{bottom:446.605333pt;}
.y20_c00343{bottom:446.877333pt;}
.y21_c00343{bottom:447.177333pt;}
.y22_c00343{bottom:448.386667pt;}
.y23_c00343{bottom:448.650667pt;}
.y12_c00343{bottom:460.321333pt;}
.y13_c00343{bottom:461.017333pt;}
.y14_c00343{bottom:461.554667pt;}
.y15_c00343{bottom:461.769333pt;}
.y16_c00343{bottom:462.233333pt;}
.y17_c00343{bottom:462.465333pt;}
.y18_c00343{bottom:462.708000pt;}
.y19_c00343{bottom:463.216000pt;}
.y1a_c00343{bottom:463.421333pt;}
.y9_c00343{bottom:474.962667pt;}
.ya_c00343{bottom:475.650667pt;}
.yb_c00343{bottom:475.918667pt;}
.yc_c00343{bottom:476.602667pt;}
.yd_c00343{bottom:476.794667pt;}
.ye_c00343{bottom:477.081333pt;}
.yf_c00343{bottom:477.577333pt;}
.y10_c00343{bottom:477.888000pt;}
.y11_c00343{bottom:478.777333pt;}
.y2_c00343{bottom:490.562667pt;}
.y3_c00343{bottom:491.117333pt;}
.y4_c00343{bottom:491.762667pt;}
.y5_c00343{bottom:492.017333pt;}
.y6_c00343{bottom:492.236000pt;}
.y7_c00343{bottom:492.954667pt;}
.y8_c00343{bottom:493.189333pt;}
.y1_c00343{bottom:504.476000pt;}
.ha_c00343{height:19.600000pt;}
.hd_c00343{height:48.538089pt;}
.h12_c00343{height:49.466667pt;}
.hc_c00343{height:52.274219pt;}
.h9_c00343{height:53.200000pt;}
.h7_c00343{height:54.133333pt;}
.hf_c00343{height:55.066667pt;}
.h11_c00343{height:56.000000pt;}
.h8_c00343{height:56.933333pt;}
.h4_c00343{height:57.866667pt;}
.h10_c00343{height:58.800000pt;}
.he_c00343{height:59.739187pt;}
.h6_c00343{height:61.600000pt;}
.h5_c00343{height:62.533333pt;}
.h3_c00343{height:63.466667pt;}
.hb_c00343{height:98.947628pt;}
.h2_c00343{height:99.866667pt;}
.h0_c00343{height:545.040000pt;}
.h1_c00343{height:545.333333pt;}
.w0_c00343{width:319.200000pt;}
.w1_c00343{width:319.333333pt;}
.x0_c00343{left:0.000000pt;}
.x70_c00343{left:33.321333pt;}
.x59_c00343{left:35.280000pt;}
.x30_c00343{left:36.720000pt;}
.x2_c00343{left:38.321333pt;}
.x4f_c00343{left:43.381584pt;}
.x73_c00343{left:52.206667pt;}
.x24_c00343{left:54.605333pt;}
.x3c_c00343{left:56.638667pt;}
.x5a_c00343{left:59.760000pt;}
.x68_c00343{left:63.769333pt;}
.x71_c00343{left:65.989333pt;}
.x1d_c00343{left:69.038667pt;}
.x25_c00343{left:71.661333pt;}
.x60_c00343{left:74.153333pt;}
.x2a_c00343{left:75.600000pt;}
.x3_c00343{left:77.924000pt;}
.x9_c00343{left:81.565333pt;}
.x17_c00343{left:82.569333pt;}
.x31_c00343{left:83.760000pt;}
.x11_c00343{left:87.758667pt;}
.x6a_c00343{left:90.376000pt;}
.x64_c00343{left:92.580000pt;}
.x2b_c00343{left:94.320000pt;}
.x61_c00343{left:96.042667pt;}
.x37_c00343{left:97.274667pt;}
.xa_c00343{left:98.292000pt;}
.x18_c00343{left:99.304000pt;}
.x52_c00343{left:101.040000pt;}
.x42_c00343{left:103.198667pt;}
.x57_c00343{left:108.578667pt;}
.x32_c00343{left:110.880000pt;}
.x1e_c00343{left:111.962667pt;}
.x53_c00343{left:114.960000pt;}
.x3d_c00343{left:115.918667pt;}
.x5b_c00343{left:119.280000pt;}
.x26_c00343{left:120.592000pt;}
.x38_c00343{left:122.278667pt;}
.x4_c00343{left:123.998667pt;}
.x12_c00343{left:126.150667pt;}
.x47_c00343{left:127.278667pt;}
.x27_c00343{left:134.516000pt;}
.x6b_c00343{left:135.736000pt;}
.x4d_c00343{left:138.405333pt;}
.x19_c00343{left:140.101333pt;}
.xb_c00343{left:141.050667pt;}
.x5_c00343{left:142.234667pt;}
.x72_c00343{left:145.193333pt;}
.x65_c00343{left:146.769333pt;}
.x6c_c00343{left:147.944000pt;}
.x3e_c00343{left:151.198667pt;}
.xc_c00343{left:153.066667pt;}
.x1f_c00343{left:154.413333pt;}
.x1_c00343{left:156.480000pt;}
.x6_c00343{left:157.838667pt;}
.x2c_c00343{left:160.800000pt;}
.x76_c00343{left:161.758667pt;}
.x33_c00343{left:163.440000pt;}
.x39_c00343{left:166.628000pt;}
.x43_c00343{left:168.238667pt;}
.x49_c00343{left:169.838644pt;}
.xd_c00343{left:171.008000pt;}
.x1a_c00343{left:172.737333pt;}
.x13_c00343{left:174.634667pt;}
.x5c_c00343{left:178.320000pt;}
.x2d_c00343{left:180.480000pt;}
.x54_c00343{left:181.440000pt;}
.x28_c00343{left:184.194667pt;}
.x3a_c00343{left:185.396000pt;}
.x6d_c00343{left:187.124000pt;}
.x58_c00343{left:188.758667pt;}
.x14_c00343{left:191.161333pt;}
.x74_c00343{left:192.854667pt;}
.x69_c00343{left:194.329333pt;}
.x77_c00343{left:197.018667pt;}
.x55_c00343{left:198.000000pt;}
.x48_c00343{left:200.444000pt;}
.xe_c00343{left:202.021333pt;}
.x34_c00343{left:203.040000pt;}
.x50_c00343{left:204.667325pt;}
.x75_c00343{left:206.785333pt;}
.x7_c00343{left:209.198667pt;}
.x20_c00343{left:211.524000pt;}
.x3f_c00343{left:212.638667pt;}
.x4a_c00343{left:215.919645pt;}
.x35_c00343{left:219.360000pt;}
.xf_c00343{left:221.464000pt;}
.x5d_c00343{left:224.400000pt;}
.x8_c00343{left:226.002667pt;}
.x21_c00343{left:228.364000pt;}
.x62_c00343{left:229.417333pt;}
.x40_c00343{left:232.078667pt;}
.x4b_c00343{left:234.172575pt;}
.x66_c00343{left:235.594667pt;}
.x2e_c00343{left:237.360000pt;}
.x22_c00343{left:241.808000pt;}
.x15_c00343{left:244.714667pt;}
.x78_c00343{left:249.040000pt;}
.x29_c00343{left:250.392000pt;}
.x67_c00343{left:251.432000pt;}
.x44_c00343{left:252.478667pt;}
.x4e_c00343{left:254.270667pt;}
.x5e_c00343{left:256.560000pt;}
.x6e_c00343{left:257.460000pt;}
.x16_c00343{left:259.361333pt;}
.x56_c00343{left:260.400000pt;}
.x3b_c00343{left:266.036000pt;}
.x1b_c00343{left:267.084000pt;}
.x23_c00343{left:269.404000pt;}
.x63_c00343{left:272.660000pt;}
.x5f_c00343{left:274.080000pt;}
.x4c_c00343{left:275.693349pt;}
.x10_c00343{left:277.088000pt;}
.x79_c00343{left:279.362667pt;}
.x6f_c00343{left:280.509333pt;}
.x1c_c00343{left:283.624000pt;}
.x2f_c00343{left:287.760000pt;}
.x36_c00343{left:289.920000pt;}
.x51_c00343{left:291.016779pt;}
.x41_c00343{left:295.678667pt;}
.x45_c00343{left:297.600000pt;}
.x46_c00343{left:298.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00344 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00344 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00344 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00344 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00344.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.091446,-0.002103,0.005748,0.249934,0,0);-ms-transform:matrix(0.091446,-0.002103,0.005748,0.249934,0,0);-webkit-transform:matrix(0.091446,-0.002103,0.005748,0.249934,0,0);}
.m2_c00344{transform:matrix(0.094725,-0.002179,0.005748,0.249934,0,0);-ms-transform:matrix(0.094725,-0.002179,0.005748,0.249934,0,0);-webkit-transform:matrix(0.094725,-0.002179,0.005748,0.249934,0,0);}
.mc1_c00344{transform:matrix(0.107293,-0.001931,0.004499,0.249960,0,0);-ms-transform:matrix(0.107293,-0.001931,0.004499,0.249960,0,0);-webkit-transform:matrix(0.107293,-0.001931,0.004499,0.249960,0,0);}
.mca_c00344{transform:matrix(0.115571,-0.002080,0.004499,0.249960,0,0);-ms-transform:matrix(0.115571,-0.002080,0.004499,0.249960,0,0);-webkit-transform:matrix(0.115571,-0.002080,0.004499,0.249960,0,0);}
.m94_c00344{transform:matrix(0.135694,-0.003121,0.005748,0.249934,0,0);-ms-transform:matrix(0.135694,-0.003121,0.005748,0.249934,0,0);-webkit-transform:matrix(0.135694,-0.003121,0.005748,0.249934,0,0);}
.m71_c00344{transform:matrix(0.140833,-0.003239,0.005748,0.249934,0,0);-ms-transform:matrix(0.140833,-0.003239,0.005748,0.249934,0,0);-webkit-transform:matrix(0.140833,-0.003239,0.005748,0.249934,0,0);}
.m9f_c00344{transform:matrix(0.150806,-0.002715,0.004499,0.249960,0,0);-ms-transform:matrix(0.150806,-0.002715,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150806,-0.002715,0.004499,0.249960,0,0);}
.mc8_c00344{transform:matrix(0.154135,-0.002774,0.004499,0.249960,0,0);-ms-transform:matrix(0.154135,-0.002774,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154135,-0.002774,0.004499,0.249960,0,0);}
.m10_c00344{transform:matrix(0.155434,-0.003575,0.005748,0.249934,0,0);-ms-transform:matrix(0.155434,-0.003575,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155434,-0.003575,0.005748,0.249934,0,0);}
.mc7_c00344{transform:matrix(0.155810,-0.002805,0.004499,0.249960,0,0);-ms-transform:matrix(0.155810,-0.002805,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155810,-0.002805,0.004499,0.249960,0,0);}
.mb8_c00344{transform:matrix(0.156420,-0.002816,0.004499,0.249960,0,0);-ms-transform:matrix(0.156420,-0.002816,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156420,-0.002816,0.004499,0.249960,0,0);}
.mae_c00344{transform:matrix(0.156825,-0.002823,0.004499,0.249960,0,0);-ms-transform:matrix(0.156825,-0.002823,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156825,-0.002823,0.004499,0.249960,0,0);}
.m84_c00344{transform:matrix(0.157128,-0.003614,0.005748,0.249934,0,0);-ms-transform:matrix(0.157128,-0.003614,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157128,-0.003614,0.005748,0.249934,0,0);}
.mbf_c00344{transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);-ms-transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157280,-0.002831,0.004499,0.249960,0,0);}
.m3e_c00344{transform:matrix(0.157303,-0.003618,0.005748,0.249934,0,0);-ms-transform:matrix(0.157303,-0.003618,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157303,-0.003618,0.005748,0.249934,0,0);}
.m54_c00344{transform:matrix(0.157448,-0.003621,0.005748,0.249934,0,0);-ms-transform:matrix(0.157448,-0.003621,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157448,-0.003621,0.005748,0.249934,0,0);}
.m73_c00344{transform:matrix(0.158473,-0.003645,0.005748,0.249934,0,0);-ms-transform:matrix(0.158473,-0.003645,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158473,-0.003645,0.005748,0.249934,0,0);}
.mc4_c00344{transform:matrix(0.158484,-0.002853,0.004499,0.249960,0,0);-ms-transform:matrix(0.158484,-0.002853,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158484,-0.002853,0.004499,0.249960,0,0);}
.mc5_c00344{transform:matrix(0.158534,-0.002854,0.004499,0.249960,0,0);-ms-transform:matrix(0.158534,-0.002854,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158534,-0.002854,0.004499,0.249960,0,0);}
.mb2_c00344{transform:matrix(0.158664,-0.002856,0.004499,0.249960,0,0);-ms-transform:matrix(0.158664,-0.002856,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158664,-0.002856,0.004499,0.249960,0,0);}
.mb7_c00344{transform:matrix(0.159149,-0.002865,0.004499,0.249960,0,0);-ms-transform:matrix(0.159149,-0.002865,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159149,-0.002865,0.004499,0.249960,0,0);}
.m22_c00344{transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);-ms-transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);}
.m27_c00344{transform:matrix(0.162192,-0.003730,0.005748,0.249934,0,0);-ms-transform:matrix(0.162192,-0.003730,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162192,-0.003730,0.005748,0.249934,0,0);}
.m2a_c00344{transform:matrix(0.162752,-0.003743,0.005748,0.249934,0,0);-ms-transform:matrix(0.162752,-0.003743,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162752,-0.003743,0.005748,0.249934,0,0);}
.mb4_c00344{transform:matrix(0.164118,-0.002954,0.004499,0.249960,0,0);-ms-transform:matrix(0.164118,-0.002954,0.004499,0.249960,0,0);-webkit-transform:matrix(0.164118,-0.002954,0.004499,0.249960,0,0);}
.m24_c00344{transform:matrix(0.164312,-0.003779,0.005748,0.249934,0,0);-ms-transform:matrix(0.164312,-0.003779,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164312,-0.003779,0.005748,0.249934,0,0);}
.m30_c00344{transform:matrix(0.165176,-0.003799,0.005748,0.249934,0,0);-ms-transform:matrix(0.165176,-0.003799,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165176,-0.003799,0.005748,0.249934,0,0);}
.mec_c00344{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.ma2_c00344{transform:matrix(0.167548,-0.003016,0.004499,0.249960,0,0);-ms-transform:matrix(0.167548,-0.003016,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167548,-0.003016,0.004499,0.249960,0,0);}
.mb6_c00344{transform:matrix(0.167668,-0.003018,0.004499,0.249960,0,0);-ms-transform:matrix(0.167668,-0.003018,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167668,-0.003018,0.004499,0.249960,0,0);}
.m9_c00344{transform:matrix(0.168251,-0.003870,0.005748,0.249934,0,0);-ms-transform:matrix(0.168251,-0.003870,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168251,-0.003870,0.005748,0.249934,0,0);}
.mb5_c00344{transform:matrix(0.169313,-0.003048,0.004499,0.249960,0,0);-ms-transform:matrix(0.169313,-0.003048,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169313,-0.003048,0.004499,0.249960,0,0);}
.m28_c00344{transform:matrix(0.169805,-0.003906,0.005748,0.249934,0,0);-ms-transform:matrix(0.169805,-0.003906,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169805,-0.003906,0.005748,0.249934,0,0);}
.m36_c00344{transform:matrix(0.170450,-0.003920,0.005748,0.249934,0,0);-ms-transform:matrix(0.170450,-0.003920,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170450,-0.003920,0.005748,0.249934,0,0);}
.m26_c00344{transform:matrix(0.170805,-0.003929,0.005748,0.249934,0,0);-ms-transform:matrix(0.170805,-0.003929,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170805,-0.003929,0.005748,0.249934,0,0);}
.mc2_c00344{transform:matrix(0.170917,-0.003077,0.004499,0.249960,0,0);-ms-transform:matrix(0.170917,-0.003077,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170917,-0.003077,0.004499,0.249960,0,0);}
.ma3_c00344{transform:matrix(0.171572,-0.003088,0.004499,0.249960,0,0);-ms-transform:matrix(0.171572,-0.003088,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171572,-0.003088,0.004499,0.249960,0,0);}
.mea_c00344{transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.171890,-0.003953,0.005748,0.249934,0,0);-ms-transform:matrix(0.171890,-0.003953,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171890,-0.003953,0.005748,0.249934,0,0);}
.m72_c00344{transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);-ms-transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);}
.m76_c00344{transform:matrix(0.173354,-0.003987,0.005748,0.249934,0,0);-ms-transform:matrix(0.173354,-0.003987,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173354,-0.003987,0.005748,0.249934,0,0);}
.m1e_c00344{transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);-ms-transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);}
.ma_c00344{transform:matrix(0.173749,-0.003996,0.005748,0.249934,0,0);-ms-transform:matrix(0.173749,-0.003996,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173749,-0.003996,0.005748,0.249934,0,0);}
.m79_c00344{transform:matrix(0.173989,-0.004002,0.005748,0.249934,0,0);-ms-transform:matrix(0.173989,-0.004002,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173989,-0.004002,0.005748,0.249934,0,0);}
.mc6_c00344{transform:matrix(0.174582,-0.003142,0.004499,0.249960,0,0);-ms-transform:matrix(0.174582,-0.003142,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174582,-0.003142,0.004499,0.249960,0,0);}
.me_c00344{transform:matrix(0.175074,-0.004027,0.005748,0.249934,0,0);-ms-transform:matrix(0.175074,-0.004027,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175074,-0.004027,0.005748,0.249934,0,0);}
.mbb_c00344{transform:matrix(0.176541,-0.003178,0.004499,0.249960,0,0);-ms-transform:matrix(0.176541,-0.003178,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176541,-0.003178,0.004499,0.249960,0,0);}
.me1_c00344{transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176560,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.177008,-0.004071,0.005748,0.249934,0,0);-ms-transform:matrix(0.177008,-0.004071,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177008,-0.004071,0.005748,0.249934,0,0);}
.m2f_c00344{transform:matrix(0.177133,-0.004074,0.005748,0.249934,0,0);-ms-transform:matrix(0.177133,-0.004074,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177133,-0.004074,0.005748,0.249934,0,0);}
.m8f_c00344{transform:matrix(0.177223,-0.004076,0.005748,0.249934,0,0);-ms-transform:matrix(0.177223,-0.004076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177223,-0.004076,0.005748,0.249934,0,0);}
.m2b_c00344{transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);-ms-transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);}
.m3_c00344{transform:matrix(0.177658,-0.004086,0.005748,0.249934,0,0);-ms-transform:matrix(0.177658,-0.004086,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177658,-0.004086,0.005748,0.249934,0,0);}
.m88_c00344{transform:matrix(0.177818,-0.004090,0.005748,0.249934,0,0);-ms-transform:matrix(0.177818,-0.004090,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177818,-0.004090,0.005748,0.249934,0,0);}
.m82_c00344{transform:matrix(0.179228,-0.004122,0.005748,0.249934,0,0);-ms-transform:matrix(0.179228,-0.004122,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179228,-0.004122,0.005748,0.249934,0,0);}
.mc_c00344{transform:matrix(0.179687,-0.004133,0.005748,0.249934,0,0);-ms-transform:matrix(0.179687,-0.004133,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179687,-0.004133,0.005748,0.249934,0,0);}
.m5c_c00344{transform:matrix(0.179852,-0.004137,0.005748,0.249934,0,0);-ms-transform:matrix(0.179852,-0.004137,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179852,-0.004137,0.005748,0.249934,0,0);}
.m4b_c00344{transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);-ms-transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);}
.mcb_c00344{transform:matrix(0.180516,-0.003249,0.004499,0.249960,0,0);-ms-transform:matrix(0.180516,-0.003249,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180516,-0.003249,0.004499,0.249960,0,0);}
.mc0_c00344{transform:matrix(0.180556,-0.003250,0.004499,0.249960,0,0);-ms-transform:matrix(0.180556,-0.003250,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180556,-0.003250,0.004499,0.249960,0,0);}
.mc9_c00344{transform:matrix(0.180666,-0.003252,0.004499,0.249960,0,0);-ms-transform:matrix(0.180666,-0.003252,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180666,-0.003252,0.004499,0.249960,0,0);}
.m90_c00344{transform:matrix(0.180977,-0.004162,0.005748,0.249934,0,0);-ms-transform:matrix(0.180977,-0.004162,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180977,-0.004162,0.005748,0.249934,0,0);}
.m16_c00344{transform:matrix(0.181112,-0.004166,0.005748,0.249934,0,0);-ms-transform:matrix(0.181112,-0.004166,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181112,-0.004166,0.005748,0.249934,0,0);}
.ma1_c00344{transform:matrix(0.181401,-0.003265,0.004499,0.249960,0,0);-ms-transform:matrix(0.181401,-0.003265,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181401,-0.003265,0.004499,0.249960,0,0);}
.mf_c00344{transform:matrix(0.182027,-0.004187,0.005748,0.249934,0,0);-ms-transform:matrix(0.182027,-0.004187,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182027,-0.004187,0.005748,0.249934,0,0);}
.mb_c00344{transform:matrix(0.182532,-0.004198,0.005748,0.249934,0,0);-ms-transform:matrix(0.182532,-0.004198,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182532,-0.004198,0.005748,0.249934,0,0);}
.m31_c00344{transform:matrix(0.182752,-0.004203,0.005748,0.249934,0,0);-ms-transform:matrix(0.182752,-0.004203,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182752,-0.004203,0.005748,0.249934,0,0);}
.m74_c00344{transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);-ms-transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);}
.md_c00344{transform:matrix(0.183312,-0.004216,0.005748,0.249934,0,0);-ms-transform:matrix(0.183312,-0.004216,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183312,-0.004216,0.005748,0.249934,0,0);}
.md4_c00344{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.mb0_c00344{transform:matrix(0.183715,-0.003307,0.004499,0.249960,0,0);-ms-transform:matrix(0.183715,-0.003307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183715,-0.003307,0.004499,0.249960,0,0);}
.m8a_c00344{transform:matrix(0.183781,-0.004227,0.005748,0.249934,0,0);-ms-transform:matrix(0.183781,-0.004227,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183781,-0.004227,0.005748,0.249934,0,0);}
.m2c_c00344{transform:matrix(0.184016,-0.004232,0.005748,0.249934,0,0);-ms-transform:matrix(0.184016,-0.004232,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184016,-0.004232,0.005748,0.249934,0,0);}
.m9b_c00344{transform:matrix(0.184526,-0.004244,0.005748,0.249934,0,0);-ms-transform:matrix(0.184526,-0.004244,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184526,-0.004244,0.005748,0.249934,0,0);}
.m29_c00344{transform:matrix(0.184616,-0.004246,0.005748,0.249934,0,0);-ms-transform:matrix(0.184616,-0.004246,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184616,-0.004246,0.005748,0.249934,0,0);}
.m8c_c00344{transform:matrix(0.184746,-0.004249,0.005748,0.249934,0,0);-ms-transform:matrix(0.184746,-0.004249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184746,-0.004249,0.005748,0.249934,0,0);}
.m4e_c00344{transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);-ms-transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);}
.m70_c00344{transform:matrix(0.185576,-0.004268,0.005748,0.249934,0,0);-ms-transform:matrix(0.185576,-0.004268,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185576,-0.004268,0.005748,0.249934,0,0);}
.m4_c00344{transform:matrix(0.185836,-0.004274,0.005748,0.249934,0,0);-ms-transform:matrix(0.185836,-0.004274,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185836,-0.004274,0.005748,0.249934,0,0);}
.m20_c00344{transform:matrix(0.185886,-0.004275,0.005748,0.249934,0,0);-ms-transform:matrix(0.185886,-0.004275,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185886,-0.004275,0.005748,0.249934,0,0);}
.mdd_c00344{transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);}
.m85_c00344{transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);-ms-transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);}
.med_c00344{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00344{transform:matrix(0.188250,-0.004330,0.005748,0.249934,0,0);-ms-transform:matrix(0.188250,-0.004330,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188250,-0.004330,0.005748,0.249934,0,0);}
.m6c_c00344{transform:matrix(0.188355,-0.004332,0.005748,0.249934,0,0);-ms-transform:matrix(0.188355,-0.004332,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188355,-0.004332,0.005748,0.249934,0,0);}
.mba_c00344{transform:matrix(0.189639,-0.003414,0.004499,0.249960,0,0);-ms-transform:matrix(0.189639,-0.003414,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189639,-0.003414,0.004499,0.249960,0,0);}
.m6_c00344{transform:matrix(0.189870,-0.004367,0.005748,0.249934,0,0);-ms-transform:matrix(0.189870,-0.004367,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189870,-0.004367,0.005748,0.249934,0,0);}
.m91_c00344{transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-ms-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);}
.m11_c00344{transform:matrix(0.190010,-0.004370,0.005748,0.249934,0,0);-ms-transform:matrix(0.190010,-0.004370,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190010,-0.004370,0.005748,0.249934,0,0);}
.m56_c00344{transform:matrix(0.190340,-0.004378,0.005748,0.249934,0,0);-ms-transform:matrix(0.190340,-0.004378,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190340,-0.004378,0.005748,0.249934,0,0);}
.m34_c00344{transform:matrix(0.190535,-0.004382,0.005748,0.249934,0,0);-ms-transform:matrix(0.190535,-0.004382,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190535,-0.004382,0.005748,0.249934,0,0);}
.m69_c00344{transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);-ms-transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);}
.m15_c00344{transform:matrix(0.190964,-0.004392,0.005748,0.249934,0,0);-ms-transform:matrix(0.190964,-0.004392,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190964,-0.004392,0.005748,0.249934,0,0);}
.m51_c00344{transform:matrix(0.191004,-0.004393,0.005748,0.249934,0,0);-ms-transform:matrix(0.191004,-0.004393,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191004,-0.004393,0.005748,0.249934,0,0);}
.m41_c00344{transform:matrix(0.191089,-0.004395,0.005748,0.249934,0,0);-ms-transform:matrix(0.191089,-0.004395,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191089,-0.004395,0.005748,0.249934,0,0);}
.m6e_c00344{transform:matrix(0.191379,-0.004402,0.005748,0.249934,0,0);-ms-transform:matrix(0.191379,-0.004402,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191379,-0.004402,0.005748,0.249934,0,0);}
.m40_c00344{transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);-ms-transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191499,-0.004404,0.005748,0.249934,0,0);}
.m46_c00344{transform:matrix(0.191864,-0.004413,0.005748,0.249934,0,0);-ms-transform:matrix(0.191864,-0.004413,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191864,-0.004413,0.005748,0.249934,0,0);}
.md5_c00344{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m98_c00344{transform:matrix(0.193009,-0.004439,0.005748,0.249934,0,0);-ms-transform:matrix(0.193009,-0.004439,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193009,-0.004439,0.005748,0.249934,0,0);}
.md7_c00344{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.ma5_c00344{transform:matrix(0.193879,-0.003490,0.004499,0.249960,0,0);-ms-transform:matrix(0.193879,-0.003490,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193879,-0.003490,0.004499,0.249960,0,0);}
.mbc_c00344{transform:matrix(0.194693,-0.003504,0.004499,0.249960,0,0);-ms-transform:matrix(0.194693,-0.003504,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194693,-0.003504,0.004499,0.249960,0,0);}
.m2d_c00344{transform:matrix(0.194808,-0.004481,0.005748,0.249934,0,0);-ms-transform:matrix(0.194808,-0.004481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194808,-0.004481,0.005748,0.249934,0,0);}
.m77_c00344{transform:matrix(0.194893,-0.004483,0.005748,0.249934,0,0);-ms-transform:matrix(0.194893,-0.004483,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194893,-0.004483,0.005748,0.249934,0,0);}
.m19_c00344{transform:matrix(0.194953,-0.004484,0.005748,0.249934,0,0);-ms-transform:matrix(0.194953,-0.004484,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194953,-0.004484,0.005748,0.249934,0,0);}
.m7_c00344{transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);-ms-transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);}
.m23_c00344{transform:matrix(0.195058,-0.004486,0.005748,0.249934,0,0);-ms-transform:matrix(0.195058,-0.004486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195058,-0.004486,0.005748,0.249934,0,0);}
.m57_c00344{transform:matrix(0.195988,-0.004508,0.005748,0.249934,0,0);-ms-transform:matrix(0.195988,-0.004508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195988,-0.004508,0.005748,0.249934,0,0);}
.m78_c00344{transform:matrix(0.196023,-0.004509,0.005748,0.249934,0,0);-ms-transform:matrix(0.196023,-0.004509,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196023,-0.004509,0.005748,0.249934,0,0);}
.mbd_c00344{transform:matrix(0.196118,-0.003530,0.004499,0.249960,0,0);-ms-transform:matrix(0.196118,-0.003530,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196118,-0.003530,0.004499,0.249960,0,0);}
.mb9_c00344{transform:matrix(0.196128,-0.003530,0.004499,0.249960,0,0);-ms-transform:matrix(0.196128,-0.003530,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196128,-0.003530,0.004499,0.249960,0,0);}
.m5a_c00344{transform:matrix(0.196588,-0.004522,0.005748,0.249934,0,0);-ms-transform:matrix(0.196588,-0.004522,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196588,-0.004522,0.005748,0.249934,0,0);}
.me9_c00344{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m7c_c00344{transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);-ms-transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);}
.m38_c00344{transform:matrix(0.198777,-0.004572,0.005748,0.249934,0,0);-ms-transform:matrix(0.198777,-0.004572,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198777,-0.004572,0.005748,0.249934,0,0);}
.mdc_c00344{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.m6d_c00344{transform:matrix(0.200212,-0.004605,0.005748,0.249934,0,0);-ms-transform:matrix(0.200212,-0.004605,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200212,-0.004605,0.005748,0.249934,0,0);}
.m8b_c00344{transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);-ms-transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);}
.m48_c00344{transform:matrix(0.200457,-0.004611,0.005748,0.249934,0,0);-ms-transform:matrix(0.200457,-0.004611,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200457,-0.004611,0.005748,0.249934,0,0);}
.m1c_c00344{transform:matrix(0.200607,-0.004614,0.005748,0.249934,0,0);-ms-transform:matrix(0.200607,-0.004614,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200607,-0.004614,0.005748,0.249934,0,0);}
.m8d_c00344{transform:matrix(0.200792,-0.004618,0.005748,0.249934,0,0);-ms-transform:matrix(0.200792,-0.004618,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200792,-0.004618,0.005748,0.249934,0,0);}
.m53_c00344{transform:matrix(0.200857,-0.004620,0.005748,0.249934,0,0);-ms-transform:matrix(0.200857,-0.004620,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200857,-0.004620,0.005748,0.249934,0,0);}
.m8_c00344{transform:matrix(0.200942,-0.004622,0.005748,0.249934,0,0);-ms-transform:matrix(0.200942,-0.004622,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200942,-0.004622,0.005748,0.249934,0,0);}
.m4c_c00344{transform:matrix(0.201372,-0.004632,0.005748,0.249934,0,0);-ms-transform:matrix(0.201372,-0.004632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201372,-0.004632,0.005748,0.249934,0,0);}
.mb1_c00344{transform:matrix(0.202187,-0.003639,0.004499,0.249960,0,0);-ms-transform:matrix(0.202187,-0.003639,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202187,-0.003639,0.004499,0.249960,0,0);}
.ma4_c00344{transform:matrix(0.202617,-0.003647,0.004499,0.249960,0,0);-ms-transform:matrix(0.202617,-0.003647,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202617,-0.003647,0.004499,0.249960,0,0);}
.m66_c00344{transform:matrix(0.202906,-0.004667,0.005748,0.249934,0,0);-ms-transform:matrix(0.202906,-0.004667,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202906,-0.004667,0.005748,0.249934,0,0);}
.m65_c00344{transform:matrix(0.203756,-0.004686,0.005748,0.249934,0,0);-ms-transform:matrix(0.203756,-0.004686,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203756,-0.004686,0.005748,0.249934,0,0);}
.m1f_c00344{transform:matrix(0.203761,-0.004687,0.005748,0.249934,0,0);-ms-transform:matrix(0.203761,-0.004687,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203761,-0.004687,0.005748,0.249934,0,0);}
.m5f_c00344{transform:matrix(0.203896,-0.004690,0.005748,0.249934,0,0);-ms-transform:matrix(0.203896,-0.004690,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203896,-0.004690,0.005748,0.249934,0,0);}
.m3d_c00344{transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);-ms-transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);}
.me0_c00344{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.m47_c00344{transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204831,-0.004711,0.005748,0.249934,0,0);}
.m59_c00344{transform:matrix(0.205356,-0.004723,0.005748,0.249934,0,0);-ms-transform:matrix(0.205356,-0.004723,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205356,-0.004723,0.005748,0.249934,0,0);}
.m86_c00344{transform:matrix(0.205446,-0.004725,0.005748,0.249934,0,0);-ms-transform:matrix(0.205446,-0.004725,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205446,-0.004725,0.005748,0.249934,0,0);}
.m7a_c00344{transform:matrix(0.205506,-0.004727,0.005748,0.249934,0,0);-ms-transform:matrix(0.205506,-0.004727,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205506,-0.004727,0.005748,0.249934,0,0);}
.m2e_c00344{transform:matrix(0.205766,-0.004733,0.005748,0.249934,0,0);-ms-transform:matrix(0.205766,-0.004733,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205766,-0.004733,0.005748,0.249934,0,0);}
.m68_c00344{transform:matrix(0.205791,-0.004733,0.005748,0.249934,0,0);-ms-transform:matrix(0.205791,-0.004733,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205791,-0.004733,0.005748,0.249934,0,0);}
.m37_c00344{transform:matrix(0.206945,-0.004760,0.005748,0.249934,0,0);-ms-transform:matrix(0.206945,-0.004760,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206945,-0.004760,0.005748,0.249934,0,0);}
.m4a_c00344{transform:matrix(0.207410,-0.004770,0.005748,0.249934,0,0);-ms-transform:matrix(0.207410,-0.004770,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207410,-0.004770,0.005748,0.249934,0,0);}
.m93_c00344{transform:matrix(0.208855,-0.004804,0.005748,0.249934,0,0);-ms-transform:matrix(0.208855,-0.004804,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208855,-0.004804,0.005748,0.249934,0,0);}
.m21_c00344{transform:matrix(0.208990,-0.004807,0.005748,0.249934,0,0);-ms-transform:matrix(0.208990,-0.004807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208990,-0.004807,0.005748,0.249934,0,0);}
.m45_c00344{transform:matrix(0.209160,-0.004811,0.005748,0.249934,0,0);-ms-transform:matrix(0.209160,-0.004811,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209160,-0.004811,0.005748,0.249934,0,0);}
.mc3_c00344{transform:matrix(0.209536,-0.003772,0.004499,0.249960,0,0);-ms-transform:matrix(0.209536,-0.003772,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209536,-0.003772,0.004499,0.249960,0,0);}
.m55_c00344{transform:matrix(0.209914,-0.004828,0.005748,0.249934,0,0);-ms-transform:matrix(0.209914,-0.004828,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209914,-0.004828,0.005748,0.249934,0,0);}
.m32_c00344{transform:matrix(0.210014,-0.004830,0.005748,0.249934,0,0);-ms-transform:matrix(0.210014,-0.004830,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210014,-0.004830,0.005748,0.249934,0,0);}
.m89_c00344{transform:matrix(0.210234,-0.004835,0.005748,0.249934,0,0);-ms-transform:matrix(0.210234,-0.004835,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210234,-0.004835,0.005748,0.249934,0,0);}
.mac_c00344{transform:matrix(0.210516,-0.003789,0.004499,0.249960,0,0);-ms-transform:matrix(0.210516,-0.003789,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210516,-0.003789,0.004499,0.249960,0,0);}
.m87_c00344{transform:matrix(0.210859,-0.004850,0.005748,0.249934,0,0);-ms-transform:matrix(0.210859,-0.004850,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210859,-0.004850,0.005748,0.249934,0,0);}
.m1a_c00344{transform:matrix(0.211064,-0.004854,0.005748,0.249934,0,0);-ms-transform:matrix(0.211064,-0.004854,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211064,-0.004854,0.005748,0.249934,0,0);}
.meb_c00344{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(0.211764,-0.004871,0.005748,0.249934,0,0);-ms-transform:matrix(0.211764,-0.004871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211764,-0.004871,0.005748,0.249934,0,0);}
.m99_c00344{transform:matrix(0.212309,-0.004883,0.005748,0.249934,0,0);-ms-transform:matrix(0.212309,-0.004883,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212309,-0.004883,0.005748,0.249934,0,0);}
.me2_c00344{transform:matrix(0.212495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212495,0.000000,0.000000,0.250000,0,0);}
.mcd_c00344{transform:matrix(0.212851,-0.003831,0.004499,0.249960,0,0);-ms-transform:matrix(0.212851,-0.003831,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212851,-0.003831,0.004499,0.249960,0,0);}
.m52_c00344{transform:matrix(0.212969,-0.004898,0.005748,0.249934,0,0);-ms-transform:matrix(0.212969,-0.004898,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212969,-0.004898,0.005748,0.249934,0,0);}
.me4_c00344{transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213580,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.213768,-0.004917,0.005748,0.249934,0,0);-ms-transform:matrix(0.213768,-0.004917,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213768,-0.004917,0.005748,0.249934,0,0);}
.m7b_c00344{transform:matrix(0.213938,-0.004921,0.005748,0.249934,0,0);-ms-transform:matrix(0.213938,-0.004921,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213938,-0.004921,0.005748,0.249934,0,0);}
.m5e_c00344{transform:matrix(0.214478,-0.004933,0.005748,0.249934,0,0);-ms-transform:matrix(0.214478,-0.004933,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214478,-0.004933,0.005748,0.249934,0,0);}
.m6f_c00344{transform:matrix(0.214943,-0.004944,0.005748,0.249934,0,0);-ms-transform:matrix(0.214943,-0.004944,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214943,-0.004944,0.005748,0.249934,0,0);}
.m9c_c00344{transform:matrix(0.215133,-0.004948,0.005748,0.249934,0,0);-ms-transform:matrix(0.215133,-0.004948,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215133,-0.004948,0.005748,0.249934,0,0);}
.me5_c00344{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m9d_c00344{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.mde_c00344{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{transform:matrix(0.216413,-0.004977,0.005748,0.249934,0,0);-ms-transform:matrix(0.216413,-0.004977,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216413,-0.004977,0.005748,0.249934,0,0);}
.m3c_c00344{transform:matrix(0.217113,-0.004994,0.005748,0.249934,0,0);-ms-transform:matrix(0.217113,-0.004994,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217113,-0.004994,0.005748,0.249934,0,0);}
.m92_c00344{transform:matrix(0.217228,-0.004996,0.005748,0.249934,0,0);-ms-transform:matrix(0.217228,-0.004996,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217228,-0.004996,0.005748,0.249934,0,0);}
.m8e_c00344{transform:matrix(0.217992,-0.005014,0.005748,0.249934,0,0);-ms-transform:matrix(0.217992,-0.005014,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217992,-0.005014,0.005748,0.249934,0,0);}
.m18_c00344{transform:matrix(0.218137,-0.005017,0.005748,0.249934,0,0);-ms-transform:matrix(0.218137,-0.005017,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218137,-0.005017,0.005748,0.249934,0,0);}
.m5_c00344{transform:matrix(0.218452,-0.005024,0.005748,0.249934,0,0);-ms-transform:matrix(0.218452,-0.005024,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218452,-0.005024,0.005748,0.249934,0,0);}
.m33_c00344{transform:matrix(0.219672,-0.005052,0.005748,0.249934,0,0);-ms-transform:matrix(0.219672,-0.005052,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219672,-0.005052,0.005748,0.249934,0,0);}
.m75_c00344{transform:matrix(0.219737,-0.005054,0.005748,0.249934,0,0);-ms-transform:matrix(0.219737,-0.005054,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219737,-0.005054,0.005748,0.249934,0,0);}
.m1d_c00344{transform:matrix(0.220157,-0.005064,0.005748,0.249934,0,0);-ms-transform:matrix(0.220157,-0.005064,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220157,-0.005064,0.005748,0.249934,0,0);}
.m83_c00344{transform:matrix(0.220707,-0.005076,0.005748,0.249934,0,0);-ms-transform:matrix(0.220707,-0.005076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220707,-0.005076,0.005748,0.249934,0,0);}
.mbe_c00344{transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);-ms-transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221464,-0.003986,0.004499,0.249960,0,0);}
.mab_c00344{transform:matrix(0.223269,-0.004019,0.004499,0.249960,0,0);-ms-transform:matrix(0.223269,-0.004019,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223269,-0.004019,0.004499,0.249960,0,0);}
.mdb_c00344{transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);}
.md6_c00344{transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);}
.m42_c00344{transform:matrix(0.224491,-0.005163,0.005748,0.249934,0,0);-ms-transform:matrix(0.224491,-0.005163,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224491,-0.005163,0.005748,0.249934,0,0);}
.m1b_c00344{transform:matrix(0.224811,-0.005171,0.005748,0.249934,0,0);-ms-transform:matrix(0.224811,-0.005171,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224811,-0.005171,0.005748,0.249934,0,0);}
.md8_c00344{transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);}
.m95_c00344{transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);-ms-transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);}
.me3_c00344{transform:matrix(0.225580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225580,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{transform:matrix(0.225910,-0.005196,0.005748,0.249934,0,0);-ms-transform:matrix(0.225910,-0.005196,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225910,-0.005196,0.005748,0.249934,0,0);}
.me8_c00344{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00344{transform:matrix(0.229634,-0.005282,0.005748,0.249934,0,0);-ms-transform:matrix(0.229634,-0.005282,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229634,-0.005282,0.005748,0.249934,0,0);}
.m44_c00344{transform:matrix(0.229944,-0.005289,0.005748,0.249934,0,0);-ms-transform:matrix(0.229944,-0.005289,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229944,-0.005289,0.005748,0.249934,0,0);}
.me7_c00344{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00344{transform:matrix(0.230738,-0.004153,0.004499,0.249960,0,0);-ms-transform:matrix(0.230738,-0.004153,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230738,-0.004153,0.004499,0.249960,0,0);}
.mcf_c00344{transform:matrix(0.231403,-0.004165,0.004499,0.249960,0,0);-ms-transform:matrix(0.231403,-0.004165,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231403,-0.004165,0.004499,0.249960,0,0);}
.md0_c00344{transform:matrix(0.231827,-0.004173,0.004499,0.249960,0,0);-ms-transform:matrix(0.231827,-0.004173,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231827,-0.004173,0.004499,0.249960,0,0);}
.mda_c00344{transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232145,0.000000,0.000000,0.250000,0,0);}
.mce_c00344{transform:matrix(0.234327,-0.004218,0.004499,0.249960,0,0);-ms-transform:matrix(0.234327,-0.004218,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234327,-0.004218,0.004499,0.249960,0,0);}
.m39_c00344{transform:matrix(0.234358,-0.005390,0.005748,0.249934,0,0);-ms-transform:matrix(0.234358,-0.005390,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234358,-0.005390,0.005748,0.249934,0,0);}
.m81_c00344{transform:matrix(0.235193,-0.005409,0.005748,0.249934,0,0);-ms-transform:matrix(0.235193,-0.005409,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235193,-0.005409,0.005748,0.249934,0,0);}
.mad_c00344{transform:matrix(0.236042,-0.004249,0.004499,0.249960,0,0);-ms-transform:matrix(0.236042,-0.004249,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236042,-0.004249,0.004499,0.249960,0,0);}
.m67_c00344{transform:matrix(0.236492,-0.005439,0.005748,0.249934,0,0);-ms-transform:matrix(0.236492,-0.005439,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236492,-0.005439,0.005748,0.249934,0,0);}
.maa_c00344{transform:matrix(0.237726,-0.004279,0.004499,0.249960,0,0);-ms-transform:matrix(0.237726,-0.004279,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237726,-0.004279,0.004499,0.249960,0,0);}
.m4d_c00344{transform:matrix(0.238877,-0.005494,0.005748,0.249934,0,0);-ms-transform:matrix(0.238877,-0.005494,0.005748,0.249934,0,0);-webkit-transform:matrix(0.238877,-0.005494,0.005748,0.249934,0,0);}
.md3_c00344{transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);}
.ma6_c00344{transform:matrix(0.239581,-0.004312,0.004499,0.249960,0,0);-ms-transform:matrix(0.239581,-0.004312,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239581,-0.004312,0.004499,0.249960,0,0);}
.ma9_c00344{transform:matrix(0.240206,-0.004324,0.004499,0.249960,0,0);-ms-transform:matrix(0.240206,-0.004324,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240206,-0.004324,0.004499,0.249960,0,0);}
.m63_c00344{transform:matrix(0.242481,-0.005577,0.005748,0.249934,0,0);-ms-transform:matrix(0.242481,-0.005577,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242481,-0.005577,0.005748,0.249934,0,0);}
.md9_c00344{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.me6_c00344{transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.243731,-0.005606,0.005748,0.249934,0,0);-ms-transform:matrix(0.243731,-0.005606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243731,-0.005606,0.005748,0.249934,0,0);}
.m64_c00344{transform:matrix(0.244580,-0.005625,0.005748,0.249934,0,0);-ms-transform:matrix(0.244580,-0.005625,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244580,-0.005625,0.005748,0.249934,0,0);}
.maf_c00344{transform:matrix(0.247390,-0.004453,0.004499,0.249960,0,0);-ms-transform:matrix(0.247390,-0.004453,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247390,-0.004453,0.004499,0.249960,0,0);}
.mdf_c00344{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00344{transform:matrix(0.250444,-0.004508,0.004499,0.249960,0,0);-ms-transform:matrix(0.250444,-0.004508,0.004499,0.249960,0,0);-webkit-transform:matrix(0.250444,-0.004508,0.004499,0.249960,0,0);}
.m7e_c00344{transform:matrix(0.256712,-0.005904,0.005748,0.249934,0,0);-ms-transform:matrix(0.256712,-0.005904,0.005748,0.249934,0,0);-webkit-transform:matrix(0.256712,-0.005904,0.005748,0.249934,0,0);}
.m97_c00344{transform:matrix(0.257132,-0.005914,0.005748,0.249934,0,0);-ms-transform:matrix(0.257132,-0.005914,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257132,-0.005914,0.005748,0.249934,0,0);}
.m12_c00344{transform:matrix(0.259126,-0.005960,0.005748,0.249934,0,0);-ms-transform:matrix(0.259126,-0.005960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259126,-0.005960,0.005748,0.249934,0,0);}
.mb3_c00344{transform:matrix(0.260003,-0.004680,0.004499,0.249960,0,0);-ms-transform:matrix(0.260003,-0.004680,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260003,-0.004680,0.004499,0.249960,0,0);}
.m62_c00344{transform:matrix(0.261721,-0.006020,0.005748,0.249934,0,0);-ms-transform:matrix(0.261721,-0.006020,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261721,-0.006020,0.005748,0.249934,0,0);}
.m80_c00344{transform:matrix(0.265075,-0.006097,0.005748,0.249934,0,0);-ms-transform:matrix(0.265075,-0.006097,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265075,-0.006097,0.005748,0.249934,0,0);}
.ma7_c00344{transform:matrix(0.266422,-0.004796,0.004499,0.249960,0,0);-ms-transform:matrix(0.266422,-0.004796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.266422,-0.004796,0.004499,0.249960,0,0);}
.md1_c00344{transform:matrix(0.273181,-0.004917,0.004499,0.249960,0,0);-ms-transform:matrix(0.273181,-0.004917,0.004499,0.249960,0,0);-webkit-transform:matrix(0.273181,-0.004917,0.004499,0.249960,0,0);}
.m60_c00344{transform:matrix(0.284710,-0.006548,0.005748,0.249934,0,0);-ms-transform:matrix(0.284710,-0.006548,0.005748,0.249934,0,0);-webkit-transform:matrix(0.284710,-0.006548,0.005748,0.249934,0,0);}
.m7d_c00344{transform:matrix(0.287374,-0.006610,0.005748,0.249934,0,0);-ms-transform:matrix(0.287374,-0.006610,0.005748,0.249934,0,0);-webkit-transform:matrix(0.287374,-0.006610,0.005748,0.249934,0,0);}
.m6a_c00344{transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);-ms-transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);}
.m50_c00344{transform:matrix(0.296032,-0.006809,0.005748,0.249934,0,0);-ms-transform:matrix(0.296032,-0.006809,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296032,-0.006809,0.005748,0.249934,0,0);}
.m7f_c00344{transform:matrix(0.304514,-0.007004,0.005748,0.249934,0,0);-ms-transform:matrix(0.304514,-0.007004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.304514,-0.007004,0.005748,0.249934,0,0);}
.m3a_c00344{transform:matrix(0.310673,-0.007145,0.005748,0.249934,0,0);-ms-transform:matrix(0.310673,-0.007145,0.005748,0.249934,0,0);-webkit-transform:matrix(0.310673,-0.007145,0.005748,0.249934,0,0);}
.m58_c00344{transform:matrix(0.317211,-0.007296,0.005748,0.249934,0,0);-ms-transform:matrix(0.317211,-0.007296,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317211,-0.007296,0.005748,0.249934,0,0);}
.m5b_c00344{transform:matrix(0.322020,-0.007406,0.005748,0.249934,0,0);-ms-transform:matrix(0.322020,-0.007406,0.005748,0.249934,0,0);-webkit-transform:matrix(0.322020,-0.007406,0.005748,0.249934,0,0);}
.m13_c00344{transform:matrix(0.348983,-0.008027,0.005748,0.249934,0,0);-ms-transform:matrix(0.348983,-0.008027,0.005748,0.249934,0,0);-webkit-transform:matrix(0.348983,-0.008027,0.005748,0.249934,0,0);}
.m9e_c00344{transform:matrix(0.354663,-0.006384,0.004499,0.249960,0,0);-ms-transform:matrix(0.354663,-0.006384,0.004499,0.249960,0,0);-webkit-transform:matrix(0.354663,-0.006384,0.004499,0.249960,0,0);}
.ma0_c00344{transform:matrix(0.355667,-0.006402,0.004499,0.249960,0,0);-ms-transform:matrix(0.355667,-0.006402,0.004499,0.249960,0,0);-webkit-transform:matrix(0.355667,-0.006402,0.004499,0.249960,0,0);}
.m3b_c00344{transform:matrix(0.356906,-0.008209,0.005748,0.249934,0,0);-ms-transform:matrix(0.356906,-0.008209,0.005748,0.249934,0,0);-webkit-transform:matrix(0.356906,-0.008209,0.005748,0.249934,0,0);}
.m9a_c00344{transform:matrix(0.375126,-0.008628,0.005748,0.249934,0,0);-ms-transform:matrix(0.375126,-0.008628,0.005748,0.249934,0,0);-webkit-transform:matrix(0.375126,-0.008628,0.005748,0.249934,0,0);}
.m3f_c00344{transform:matrix(0.385358,-0.008863,0.005748,0.249934,0,0);-ms-transform:matrix(0.385358,-0.008863,0.005748,0.249934,0,0);-webkit-transform:matrix(0.385358,-0.008863,0.005748,0.249934,0,0);}
.md2_c00344{transform:matrix(0.386007,-0.006948,0.004499,0.249960,0,0);-ms-transform:matrix(0.386007,-0.006948,0.004499,0.249960,0,0);-webkit-transform:matrix(0.386007,-0.006948,0.004499,0.249960,0,0);}
.m96_c00344{transform:matrix(0.459209,-0.010562,0.005748,0.249934,0,0);-ms-transform:matrix(0.459209,-0.010562,0.005748,0.249934,0,0);-webkit-transform:matrix(0.459209,-0.010562,0.005748,0.249934,0,0);}
.m1_c00344{transform:matrix(0.477484,-0.010982,0.005748,0.249934,0,0);-ms-transform:matrix(0.477484,-0.010982,0.005748,0.249934,0,0);-webkit-transform:matrix(0.477484,-0.010982,0.005748,0.249934,0,0);}
.m17_c00344{transform:matrix(0.483097,-0.011111,0.005748,0.249934,0,0);-ms-transform:matrix(0.483097,-0.011111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.483097,-0.011111,0.005748,0.249934,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:0.000000px;}
.fc0_c00344{color:transparent;}
.fsc_c00344{font-size:24.150000px;}
.fs14_c00344{font-size:55.650000px;}
.fs12_c00344{font-size:58.809525px;}
.fse_c00344{font-size:59.859695px;}
.fs9_c00344{font-size:59.865828px;}
.fs13_c00344{font-size:60.900000px;}
.fs6_c00344{font-size:60.916106px;}
.fs8_c00344{font-size:61.966384px;}
.fs7_c00344{font-size:63.016661px;}
.fs10_c00344{font-size:64.060375px;}
.fs3_c00344{font-size:64.066939px;}
.fs15_c00344{font-size:65.100000px;}
.fs5_c00344{font-size:65.117217px;}
.fsd_c00344{font-size:66.160715px;}
.fs1_c00344{font-size:66.167494px;}
.fsa_c00344{font-size:67.217772px;}
.fs2_c00344{font-size:68.268050px;}
.fsb_c00344{font-size:69.318327px;}
.fsf_c00344{font-size:72.461736px;}
.fs4_c00344{font-size:72.469160px;}
.fs11_c00344{font-size:77.712586px;}
.fs0_c00344{font-size:89.273604px;}
.y0_c00344{bottom:0.000000px;}
.yde_c00344{bottom:29.431500px;}
.ydf_c00344{bottom:29.619000px;}
.ye0_c00344{bottom:30.831000px;}
.ye1_c00344{bottom:31.074000px;}
.ye2_c00344{bottom:31.512000px;}
.ye3_c00344{bottom:31.888500px;}
.ye4_c00344{bottom:32.067000px;}
.ydd_c00344{bottom:49.699500px;}
.yd5_c00344{bottom:62.643000px;}
.yd6_c00344{bottom:63.388500px;}
.yd7_c00344{bottom:63.765000px;}
.yd8_c00344{bottom:64.249500px;}
.yd9_c00344{bottom:64.516500px;}
.yda_c00344{bottom:65.011500px;}
.ydb_c00344{bottom:65.310000px;}
.ydc_c00344{bottom:66.201000px;}
.yd4_c00344{bottom:82.767000px;}
.yd2_c00344{bottom:99.330573px;}
.yd3_c00344{bottom:99.330744px;}
.yd1_c00344{bottom:99.330834px;}
.yd0_c00344{bottom:99.331170px;}
.ycf_c00344{bottom:99.331284px;}
.yce_c00344{bottom:99.331599px;}
.ycd_c00344{bottom:99.331848px;}
.yc5_c00344{bottom:111.502803px;}
.yc6_c00344{bottom:112.488153px;}
.yc7_c00344{bottom:113.373435px;}
.yc8_c00344{bottom:113.667156px;}
.yc9_c00344{bottom:114.026883px;}
.yca_c00344{bottom:115.215999px;}
.ycb_c00344{bottom:115.684014px;}
.ycc_c00344{bottom:116.024205px;}
.ybc_c00344{bottom:129.052479px;}
.ybd_c00344{bottom:129.808128px;}
.ybe_c00344{bottom:130.474041px;}
.ybf_c00344{bottom:131.390550px;}
.yc0_c00344{bottom:131.739576px;}
.yc1_c00344{bottom:132.064683px;}
.yc2_c00344{bottom:132.641277px;}
.yc3_c00344{bottom:132.816174px;}
.yc4_c00344{bottom:133.119603px;}
.yb4_c00344{bottom:146.606487px;}
.yb5_c00344{bottom:146.794815px;}
.yb6_c00344{bottom:147.345258px;}
.yb7_c00344{bottom:148.409940px;}
.yb8_c00344{bottom:149.204598px;}
.yb9_c00344{bottom:150.112662px;}
.yba_c00344{bottom:150.438762px;}
.ybb_c00344{bottom:151.278102px;}
.yaf_c00344{bottom:165.237429px;}
.yb0_c00344{bottom:165.895782px;}
.yb1_c00344{bottom:167.206041px;}
.yb2_c00344{bottom:167.713629px;}
.yb3_c00344{bottom:167.922504px;}
.ya7_c00344{bottom:178.203216px;}
.ya8_c00344{bottom:178.810641px;}
.ya9_c00344{bottom:179.933313px;}
.yaa_c00344{bottom:181.191585px;}
.yab_c00344{bottom:181.791219px;}
.yac_c00344{bottom:182.819202px;}
.yad_c00344{bottom:183.721995px;}
.yae_c00344{bottom:184.119222px;}
.y9f_c00344{bottom:198.184500px;}
.ya0_c00344{bottom:199.247706px;}
.ya1_c00344{bottom:199.846269px;}
.ya2_c00344{bottom:200.925540px;}
.ya3_c00344{bottom:201.381786px;}
.ya4_c00344{bottom:202.056165px;}
.ya5_c00344{bottom:202.437270px;}
.ya6_c00344{bottom:203.171373px;}
.y97_c00344{bottom:213.213540px;}
.y98_c00344{bottom:214.801657px;}
.y99_c00344{bottom:215.269470px;}
.y9e_c00344{bottom:216.270000px;}
.y9a_c00344{bottom:217.083628px;}
.y9b_c00344{bottom:218.512525px;}
.y9c_c00344{bottom:219.388057px;}
.y9d_c00344{bottom:221.070403px;}
.y8f_c00344{bottom:232.109065px;}
.y90_c00344{bottom:233.187355px;}
.y91_c00344{bottom:234.044598px;}
.y92_c00344{bottom:235.074825px;}
.y93_c00344{bottom:235.234990px;}
.y94_c00344{bottom:236.430369px;}
.y95_c00344{bottom:236.907399px;}
.y96_c00344{bottom:237.395694px;}
.y89_c00344{bottom:250.473780px;}
.y8a_c00344{bottom:251.397823px;}
.y8b_c00344{bottom:252.162528px;}
.y8c_c00344{bottom:252.805680px;}
.y8d_c00344{bottom:253.030428px;}
.y8e_c00344{bottom:253.998640px;}
.y88_c00344{bottom:270.868320px;}
.y86_c00344{bottom:270.868441px;}
.y83_c00344{bottom:270.868543px;}
.y84_c00344{bottom:270.868657px;}
.y85_c00344{bottom:270.868759px;}
.y87_c00344{bottom:270.868936px;}
.y7a_c00344{bottom:284.773434px;}
.y7b_c00344{bottom:285.176793px;}
.y7c_c00344{bottom:285.892966px;}
.y7d_c00344{bottom:286.362456px;}
.y7e_c00344{bottom:287.061169px;}
.y7f_c00344{bottom:288.030411px;}
.y80_c00344{bottom:288.342708px;}
.y81_c00344{bottom:289.081794px;}
.y82_c00344{bottom:289.388001px;}
.y72_c00344{bottom:302.867161px;}
.y73_c00344{bottom:303.132103px;}
.y74_c00344{bottom:303.380463px;}
.y75_c00344{bottom:303.891313px;}
.y76_c00344{bottom:304.179222px;}
.y77_c00344{bottom:304.860004px;}
.y78_c00344{bottom:305.582253px;}
.y79_c00344{bottom:306.867222px;}
.y69_c00344{bottom:319.882477px;}
.y6a_c00344{bottom:320.250333px;}
.y6b_c00344{bottom:320.738230px;}
.y6c_c00344{bottom:321.808741px;}
.y6d_c00344{bottom:322.319239px;}
.y6e_c00344{bottom:323.334681px;}
.y6f_c00344{bottom:323.495025px;}
.y70_c00344{bottom:323.865123px;}
.y71_c00344{bottom:324.391303px;}
.y68_c00344{bottom:337.253991px;}
.y66_c00344{bottom:337.254085px;}
.y67_c00344{bottom:337.254427px;}
.y65_c00344{bottom:337.254481px;}
.y64_c00344{bottom:337.254886px;}
.y63_c00344{bottom:337.255290px;}
.y5b_c00344{bottom:350.946466px;}
.y5c_c00344{bottom:352.791574px;}
.y5d_c00344{bottom:353.154231px;}
.y5e_c00344{bottom:353.723055px;}
.y5f_c00344{bottom:354.231436px;}
.y60_c00344{bottom:355.831893px;}
.y61_c00344{bottom:356.855245px;}
.y62_c00344{bottom:357.239205px;}
.y52_c00344{bottom:365.264781px;}
.y53_c00344{bottom:366.098268px;}
.y54_c00344{bottom:366.399130px;}
.y55_c00344{bottom:368.095600px;}
.y56_c00344{bottom:368.590897px;}
.y57_c00344{bottom:369.796590px;}
.y58_c00344{bottom:370.454047px;}
.y59_c00344{bottom:371.879047px;}
.y5a_c00344{bottom:372.222516px;}
.y4b_c00344{bottom:385.515736px;}
.y4c_c00344{bottom:386.468775px;}
.y4d_c00344{bottom:387.029703px;}
.y4e_c00344{bottom:388.209780px;}
.y4f_c00344{bottom:390.028689px;}
.y50_c00344{bottom:390.535725px;}
.y51_c00344{bottom:390.864577px;}
.y46_c00344{bottom:404.148570px;}
.y47_c00344{bottom:405.811038px;}
.y48_c00344{bottom:406.514581px;}
.y49_c00344{bottom:407.380585px;}
.y4a_c00344{bottom:407.626770px;}
.y40_c00344{bottom:418.736248px;}
.y41_c00344{bottom:419.846770px;}
.y42_c00344{bottom:421.174497px;}
.y43_c00344{bottom:421.566315px;}
.y44_c00344{bottom:423.013210px;}
.y45_c00344{bottom:424.526383px;}
.y38_c00344{bottom:434.673733px;}
.y39_c00344{bottom:435.076003px;}
.y3a_c00344{bottom:435.697555px;}
.y3b_c00344{bottom:437.412343px;}
.y3c_c00344{bottom:438.276879px;}
.y3d_c00344{bottom:438.580375px;}
.y3e_c00344{bottom:440.380792px;}
.y3f_c00344{bottom:441.237531px;}
.y32_c00344{bottom:451.150497px;}
.y33_c00344{bottom:451.691356px;}
.y34_c00344{bottom:453.481837px;}
.y35_c00344{bottom:453.911458px;}
.y36_c00344{bottom:457.399414px;}
.y37_c00344{bottom:457.834141px;}
.y2c_c00344{bottom:468.704449px;}
.y2d_c00344{bottom:469.794054px;}
.y2e_c00344{bottom:470.911947px;}
.y2f_c00344{bottom:472.044123px;}
.y30_c00344{bottom:474.118507px;}
.y31_c00344{bottom:474.725545px;}
.y23_c00344{bottom:484.908951px;}
.y24_c00344{bottom:485.895181px;}
.y25_c00344{bottom:486.176439px;}
.y26_c00344{bottom:486.818557px;}
.y27_c00344{bottom:488.571597px;}
.y28_c00344{bottom:489.075259px;}
.y29_c00344{bottom:489.598033px;}
.y2a_c00344{bottom:491.478937px;}
.y2b_c00344{bottom:492.376819px;}
.y1c_c00344{bottom:503.537548px;}
.y1d_c00344{bottom:504.425961px;}
.y1e_c00344{bottom:505.179942px;}
.y1f_c00344{bottom:505.826095px;}
.y20_c00344{bottom:506.201404px;}
.y21_c00344{bottom:507.315357px;}
.y22_c00344{bottom:508.320033px;}
.y16_c00344{bottom:521.900886px;}
.y17_c00344{bottom:522.880357px;}
.y18_c00344{bottom:523.180896px;}
.y19_c00344{bottom:523.709466px;}
.y1a_c00344{bottom:523.958709px;}
.y1b_c00344{bottom:524.528908px;}
.yd_c00344{bottom:537.299937px;}
.ye_c00344{bottom:538.397469px;}
.yf_c00344{bottom:538.988379px;}
.y10_c00344{bottom:539.380300px;}
.y11_c00344{bottom:540.525462px;}
.y12_c00344{bottom:541.053354px;}
.y13_c00344{bottom:541.780096px;}
.y14_c00344{bottom:542.824012px;}
.y15_c00344{bottom:543.073597px;}
.y4_c00344{bottom:553.501213px;}
.y5_c00344{bottom:554.134762px;}
.y6_c00344{bottom:555.042841px;}
.y7_c00344{bottom:555.360970px;}
.y8_c00344{bottom:556.164979px;}
.y9_c00344{bottom:556.542027px;}
.ya_c00344{bottom:557.290636px;}
.yb_c00344{bottom:557.996010px;}
.yc_c00344{bottom:558.117781px;}
.y1_c00344{bottom:565.381500px;}
.y2_c00344{bottom:568.365025px;}
.y3_c00344{bottom:571.803813px;}
.he_c00344{height:24.150000px;}
.h16_c00344{height:55.650000px;}
.h14_c00344{height:58.809525px;}
.h10_c00344{height:59.859695px;}
.hb_c00344{height:59.865828px;}
.h15_c00344{height:60.900000px;}
.h8_c00344{height:60.916106px;}
.ha_c00344{height:61.966384px;}
.h9_c00344{height:63.016661px;}
.h12_c00344{height:64.060375px;}
.h5_c00344{height:64.066939px;}
.h17_c00344{height:65.100000px;}
.h7_c00344{height:65.117217px;}
.hf_c00344{height:66.160715px;}
.h3_c00344{height:66.167494px;}
.hc_c00344{height:67.217772px;}
.h4_c00344{height:68.268050px;}
.hd_c00344{height:69.318327px;}
.h11_c00344{height:72.461736px;}
.h6_c00344{height:72.469160px;}
.h13_c00344{height:77.712586px;}
.h2_c00344{height:89.273604px;}
.h0_c00344{height:613.170000px;}
.h1_c00344{height:613.500000px;}
.w0_c00344{width:359.100000px;}
.w1_c00344{width:359.250000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:23.829000px;}
.x4f_c00344{left:25.384539px;}
.x52_c00344{left:26.929688px;}
.x64_c00344{left:28.308381px;}
.x74_c00344{left:29.904000px;}
.x71_c00344{left:34.020000px;}
.x76_c00344{left:37.530000px;}
.x65_c00344{left:39.354570px;}
.x29_c00344{left:42.138623px;}
.x40_c00344{left:43.208885px;}
.x26_c00344{left:45.469432px;}
.x4a_c00344{left:48.274226px;}
.x5e_c00344{left:52.189629px;}
.x39_c00344{left:57.744022px;}
.x4_c00344{left:60.444398px;}
.x22_c00344{left:68.247834px;}
.x35_c00344{left:69.891171px;}
.x1b_c00344{left:71.367888px;}
.x16_c00344{left:72.863161px;}
.xc_c00344{left:75.779772px;}
.x2f_c00344{left:77.736531px;}
.x69_c00344{left:80.476209px;}
.x56_c00344{left:83.425436px;}
.x53_c00344{left:84.723503px;}
.x62_c00344{left:87.357912px;}
.x4b_c00344{left:90.374522px;}
.x50_c00344{left:93.712661px;}
.x1c_c00344{left:95.175214px;}
.x36_c00344{left:96.628413px;}
.x46_c00344{left:97.653627px;}
.x5a_c00344{left:99.807491px;}
.x3d_c00344{left:101.238411px;}
.xd_c00344{left:103.951083px;}
.x5f_c00344{left:105.640740px;}
.x72_c00344{left:108.810000px;}
.x5_c00344{left:113.824746px;}
.x3e_c00344{left:116.353566px;}
.x47_c00344{left:118.197371px;}
.xe_c00344{left:122.622445px;}
.x6a_c00344{left:127.074372px;}
.x57_c00344{left:128.527076px;}
.x27_c00344{left:130.837533px;}
.x6_c00344{left:132.550334px;}
.x66_c00344{left:134.418798px;}
.x3a_c00344{left:137.667866px;}
.x12_c00344{left:140.312688px;}
.x31_c00344{left:141.865589px;}
.x2a_c00344{left:143.718623px;}
.x79_c00344{left:146.472000px;}
.x41_c00344{left:149.077878px;}
.x17_c00344{left:150.573562px;}
.x2_c00344{left:153.547500px;}
.x6e_c00344{left:155.543772px;}
.x23_c00344{left:158.246694px;}
.x1d_c00344{left:160.105746px;}
.x3f_c00344{left:161.231031px;}
.x5b_c00344{left:164.589539px;}
.x48_c00344{left:166.784910px;}
.x18_c00344{left:171.458977px;}
.x42_c00344{left:172.844436px;}
.x67_c00344{left:174.382992px;}
.xf_c00344{left:177.175464px;}
.x1e_c00344{left:178.741521px;}
.x7_c00344{left:179.839854px;}
.x2b_c00344{left:181.307122px;}
.x58_c00344{left:182.781078px;}
.x54_c00344{left:186.831459px;}
.x13_c00344{left:188.415971px;}
.x32_c00344{left:192.160508px;}
.x2c_c00344{left:194.502623px;}
.x68_c00344{left:196.190775px;}
.x1f_c00344{left:198.077727px;}
.x8_c00344{left:201.975390px;}
.x5d_c00344{left:203.535000px;}
.x3b_c00344{left:205.751261px;}
.x77_c00344{left:207.360000px;}
.x14_c00344{left:211.063215px;}
.x75_c00344{left:212.095500px;}
.x43_c00344{left:216.241866px;}
.x49_c00344{left:218.415105px;}
.x6b_c00344{left:224.020617px;}
.x44_c00344{left:225.170901px;}
.x30_c00344{left:228.523465px;}
.x3c_c00344{left:232.052553px;}
.x19_c00344{left:233.333584px;}
.x4c_c00344{left:234.404859px;}
.x10_c00344{left:236.879689px;}
.x37_c00344{left:239.416968px;}
.x24_c00344{left:241.194364px;}
.x60_c00344{left:243.043815px;}
.x9_c00344{left:246.007962px;}
.x55_c00344{left:247.328688px;}
.x6c_c00344{left:248.687685px;}
.x63_c00344{left:252.620229px;}
.x33_c00344{left:254.021307px;}
.x6f_c00344{left:255.459645px;}
.x78_c00344{left:256.770000px;}
.x15_c00344{left:262.934032px;}
.x25_c00344{left:265.499260px;}
.x6d_c00344{left:266.586861px;}
.x20_c00344{left:267.719310px;}
.x51_c00344{left:270.069414px;}
.x34_c00344{left:271.576430px;}
.x2d_c00344{left:272.781622px;}
.x45_c00344{left:274.906094px;}
.x4d_c00344{left:277.892862px;}
.x38_c00344{left:279.218297px;}
.x28_c00344{left:281.748149px;}
.x73_c00344{left:283.230000px;}
.x61_c00344{left:286.029993px;}
.xa_c00344{left:287.508189px;}
.x1a_c00344{left:289.152001px;}
.xb_c00344{left:294.629655px;}
.x4e_c00344{left:295.904346px;}
.x11_c00344{left:298.469518px;}
.x21_c00344{left:300.950239px;}
.x3_c00344{left:303.060000px;}
.x59_c00344{left:304.895291px;}
.x5c_c00344{left:306.998186px;}
.x2e_c00344{left:310.031122px;}
.x70_c00344{left:316.488909px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.fsc_c00344{font-size:21.466667pt;}
.fs14_c00344{font-size:49.466667pt;}
.fs12_c00344{font-size:52.275133pt;}
.fse_c00344{font-size:53.208618pt;}
.fs9_c00344{font-size:53.214070pt;}
.fs13_c00344{font-size:54.133333pt;}
.fs6_c00344{font-size:54.147650pt;}
.fs8_c00344{font-size:55.081230pt;}
.fs7_c00344{font-size:56.014810pt;}
.fs10_c00344{font-size:56.942556pt;}
.fs3_c00344{font-size:56.948390pt;}
.fs15_c00344{font-size:57.866667pt;}
.fs5_c00344{font-size:57.881970pt;}
.fsd_c00344{font-size:58.809525pt;}
.fs1_c00344{font-size:58.815551pt;}
.fsa_c00344{font-size:59.749131pt;}
.fs2_c00344{font-size:60.682711pt;}
.fsb_c00344{font-size:61.616291pt;}
.fsf_c00344{font-size:64.410432pt;}
.fs4_c00344{font-size:64.417032pt;}
.fs11_c00344{font-size:69.077855pt;}
.fs0_c00344{font-size:79.354314pt;}
.y0_c00344{bottom:0.000000pt;}
.yde_c00344{bottom:26.161333pt;}
.ydf_c00344{bottom:26.328000pt;}
.ye0_c00344{bottom:27.405333pt;}
.ye1_c00344{bottom:27.621333pt;}
.ye2_c00344{bottom:28.010667pt;}
.ye3_c00344{bottom:28.345333pt;}
.ye4_c00344{bottom:28.504000pt;}
.ydd_c00344{bottom:44.177333pt;}
.yd5_c00344{bottom:55.682667pt;}
.yd6_c00344{bottom:56.345333pt;}
.yd7_c00344{bottom:56.680000pt;}
.yd8_c00344{bottom:57.110667pt;}
.yd9_c00344{bottom:57.348000pt;}
.yda_c00344{bottom:57.788000pt;}
.ydb_c00344{bottom:58.053333pt;}
.ydc_c00344{bottom:58.845333pt;}
.yd4_c00344{bottom:73.570667pt;}
.yd2_c00344{bottom:88.293843pt;}
.yd3_c00344{bottom:88.293995pt;}
.yd1_c00344{bottom:88.294075pt;}
.yd0_c00344{bottom:88.294373pt;}
.ycf_c00344{bottom:88.294475pt;}
.yce_c00344{bottom:88.294755pt;}
.ycd_c00344{bottom:88.294976pt;}
.yc5_c00344{bottom:99.113603pt;}
.yc6_c00344{bottom:99.989469pt;}
.yc7_c00344{bottom:100.776387pt;}
.yc8_c00344{bottom:101.037472pt;}
.yc9_c00344{bottom:101.357229pt;}
.yca_c00344{bottom:102.414221pt;}
.ycb_c00344{bottom:102.830235pt;}
.ycc_c00344{bottom:103.132627pt;}
.ybc_c00344{bottom:114.713315pt;}
.ybd_c00344{bottom:115.385003pt;}
.ybe_c00344{bottom:115.976925pt;}
.ybf_c00344{bottom:116.791600pt;}
.yc0_c00344{bottom:117.101845pt;}
.yc1_c00344{bottom:117.390829pt;}
.yc2_c00344{bottom:117.903357pt;}
.yc3_c00344{bottom:118.058821pt;}
.yc4_c00344{bottom:118.328536pt;}
.yb4_c00344{bottom:130.316877pt;}
.yb5_c00344{bottom:130.484280pt;}
.yb6_c00344{bottom:130.973563pt;}
.yb7_c00344{bottom:131.919947pt;}
.yb8_c00344{bottom:132.626309pt;}
.yb9_c00344{bottom:133.433477pt;}
.yba_c00344{bottom:133.723344pt;}
.ybb_c00344{bottom:134.469424pt;}
.yaf_c00344{bottom:146.877715pt;}
.yb0_c00344{bottom:147.462917pt;}
.yb1_c00344{bottom:148.627592pt;}
.yb2_c00344{bottom:149.078781pt;}
.yb3_c00344{bottom:149.264448pt;}
.ya7_c00344{bottom:158.402859pt;}
.ya8_c00344{bottom:158.942792pt;}
.ya9_c00344{bottom:159.940723pt;}
.yaa_c00344{bottom:161.059187pt;}
.yab_c00344{bottom:161.592195pt;}
.yac_c00344{bottom:162.505957pt;}
.yad_c00344{bottom:163.308440pt;}
.yae_c00344{bottom:163.661531pt;}
.y9f_c00344{bottom:176.164000pt;}
.ya0_c00344{bottom:177.109072pt;}
.ya1_c00344{bottom:177.641128pt;}
.ya2_c00344{bottom:178.600480pt;}
.ya3_c00344{bottom:179.006032pt;}
.ya4_c00344{bottom:179.605480pt;}
.ya5_c00344{bottom:179.944240pt;}
.ya6_c00344{bottom:180.596776pt;}
.y97_c00344{bottom:189.523147pt;}
.y98_c00344{bottom:190.934807pt;}
.y99_c00344{bottom:191.350640pt;}
.y9e_c00344{bottom:192.240000pt;}
.y9a_c00344{bottom:192.963225pt;}
.y9b_c00344{bottom:194.233356pt;}
.y9c_c00344{bottom:195.011607pt;}
.y9d_c00344{bottom:196.507025pt;}
.y8f_c00344{bottom:206.319169pt;}
.y90_c00344{bottom:207.277649pt;}
.y91_c00344{bottom:208.039643pt;}
.y92_c00344{bottom:208.955400pt;}
.y93_c00344{bottom:209.097769pt;}
.y94_c00344{bottom:210.160328pt;}
.y95_c00344{bottom:210.584355pt;}
.y96_c00344{bottom:211.018395pt;}
.y89_c00344{bottom:222.643360pt;}
.y8a_c00344{bottom:223.464732pt;}
.y8b_c00344{bottom:224.144469pt;}
.y8c_c00344{bottom:224.716160pt;}
.y8d_c00344{bottom:224.915936pt;}
.y8e_c00344{bottom:225.776569pt;}
.y88_c00344{bottom:240.771840pt;}
.y86_c00344{bottom:240.771948pt;}
.y83_c00344{bottom:240.772039pt;}
.y84_c00344{bottom:240.772140pt;}
.y85_c00344{bottom:240.772231pt;}
.y87_c00344{bottom:240.772388pt;}
.y7a_c00344{bottom:253.131941pt;}
.y7b_c00344{bottom:253.490483pt;}
.y7c_c00344{bottom:254.127081pt;}
.y7d_c00344{bottom:254.544405pt;}
.y7e_c00344{bottom:255.165484pt;}
.y7f_c00344{bottom:256.027032pt;}
.y80_c00344{bottom:256.304629pt;}
.y81_c00344{bottom:256.961595pt;}
.y82_c00344{bottom:257.233779pt;}
.y72_c00344{bottom:269.215255pt;}
.y73_c00344{bottom:269.450759pt;}
.y74_c00344{bottom:269.671523pt;}
.y75_c00344{bottom:270.125612pt;}
.y76_c00344{bottom:270.381531pt;}
.y77_c00344{bottom:270.986671pt;}
.y78_c00344{bottom:271.628669pt;}
.y79_c00344{bottom:272.770864pt;}
.y69_c00344{bottom:284.339980pt;}
.y6a_c00344{bottom:284.666963pt;}
.y6b_c00344{bottom:285.100649pt;}
.y6c_c00344{bottom:286.052215pt;}
.y6d_c00344{bottom:286.505991pt;}
.y6e_c00344{bottom:287.408605pt;}
.y6f_c00344{bottom:287.551133pt;}
.y70_c00344{bottom:287.880109pt;}
.y71_c00344{bottom:288.347825pt;}
.y68_c00344{bottom:299.781325pt;}
.y66_c00344{bottom:299.781409pt;}
.y67_c00344{bottom:299.781713pt;}
.y65_c00344{bottom:299.781761pt;}
.y64_c00344{bottom:299.782121pt;}
.y63_c00344{bottom:299.782480pt;}
.y5b_c00344{bottom:311.952415pt;}
.y5c_c00344{bottom:313.592511pt;}
.y5d_c00344{bottom:313.914872pt;}
.y5e_c00344{bottom:314.420493pt;}
.y5f_c00344{bottom:314.872388pt;}
.y60_c00344{bottom:316.295016pt;}
.y61_c00344{bottom:317.204663pt;}
.y62_c00344{bottom:317.545960pt;}
.y52_c00344{bottom:324.679805pt;}
.y53_c00344{bottom:325.420683pt;}
.y54_c00344{bottom:325.688116pt;}
.y55_c00344{bottom:327.196089pt;}
.y56_c00344{bottom:327.636353pt;}
.y57_c00344{bottom:328.708080pt;}
.y58_c00344{bottom:329.292487pt;}
.y59_c00344{bottom:330.559153pt;}
.y5a_c00344{bottom:330.864459pt;}
.y4b_c00344{bottom:342.680655pt;}
.y4c_c00344{bottom:343.527800pt;}
.y4d_c00344{bottom:344.026403pt;}
.y4e_c00344{bottom:345.075360pt;}
.y4f_c00344{bottom:346.692168pt;}
.y50_c00344{bottom:347.142867pt;}
.y51_c00344{bottom:347.435180pt;}
.y46_c00344{bottom:359.243173pt;}
.y47_c00344{bottom:360.720923pt;}
.y48_c00344{bottom:361.346295pt;}
.y49_c00344{bottom:362.116076pt;}
.y4a_c00344{bottom:362.334907pt;}
.y40_c00344{bottom:372.209999pt;}
.y41_c00344{bottom:373.197129pt;}
.y42_c00344{bottom:374.377331pt;}
.y43_c00344{bottom:374.725613pt;}
.y44_c00344{bottom:376.011743pt;}
.y45_c00344{bottom:377.356785pt;}
.y38_c00344{bottom:386.376652pt;}
.y39_c00344{bottom:386.734225pt;}
.y3a_c00344{bottom:387.286716pt;}
.y3b_c00344{bottom:388.810972pt;}
.y3c_c00344{bottom:389.579448pt;}
.y3d_c00344{bottom:389.849223pt;}
.y3e_c00344{bottom:391.449593pt;}
.y3f_c00344{bottom:392.211139pt;}
.y32_c00344{bottom:401.022664pt;}
.y33_c00344{bottom:401.503428pt;}
.y34_c00344{bottom:403.094967pt;}
.y35_c00344{bottom:403.476852pt;}
.y36_c00344{bottom:406.577257pt;}
.y37_c00344{bottom:406.963681pt;}
.y2c_c00344{bottom:416.626177pt;}
.y2d_c00344{bottom:417.594715pt;}
.y2e_c00344{bottom:418.588397pt;}
.y2f_c00344{bottom:419.594776pt;}
.y30_c00344{bottom:421.438673pt;}
.y31_c00344{bottom:421.978263pt;}
.y23_c00344{bottom:431.030179pt;}
.y24_c00344{bottom:431.906828pt;}
.y25_c00344{bottom:432.156835pt;}
.y26_c00344{bottom:432.727607pt;}
.y27_c00344{bottom:434.285864pt;}
.y28_c00344{bottom:434.733564pt;}
.y29_c00344{bottom:435.198252pt;}
.y2a_c00344{bottom:436.870167pt;}
.y2b_c00344{bottom:437.668284pt;}
.y1c_c00344{bottom:447.588932pt;}
.y1d_c00344{bottom:448.378632pt;}
.y1e_c00344{bottom:449.048837pt;}
.y1f_c00344{bottom:449.623196pt;}
.y20_c00344{bottom:449.956804pt;}
.y21_c00344{bottom:450.946984pt;}
.y22_c00344{bottom:451.840029pt;}
.y16_c00344{bottom:463.911899pt;}
.y17_c00344{bottom:464.782540pt;}
.y18_c00344{bottom:465.049685pt;}
.y19_c00344{bottom:465.519525pt;}
.y1a_c00344{bottom:465.741075pt;}
.y1b_c00344{bottom:466.247919pt;}
.yd_c00344{bottom:477.599944pt;}
.ye_c00344{bottom:478.575528pt;}
.yf_c00344{bottom:479.100781pt;}
.y10_c00344{bottom:479.449156pt;}
.y11_c00344{bottom:480.467077pt;}
.y12_c00344{bottom:480.936315pt;}
.y13_c00344{bottom:481.582308pt;}
.y14_c00344{bottom:482.510233pt;}
.y15_c00344{bottom:482.732087pt;}
.y4_c00344{bottom:492.001079pt;}
.y5_c00344{bottom:492.564233pt;}
.y6_c00344{bottom:493.371415pt;}
.y7_c00344{bottom:493.654196pt;}
.y8_c00344{bottom:494.368871pt;}
.y9_c00344{bottom:494.704024pt;}
.ya_c00344{bottom:495.369455pt;}
.yb_c00344{bottom:495.996453pt;}
.yc_c00344{bottom:496.104695pt;}
.y1_c00344{bottom:502.561333pt;}
.y2_c00344{bottom:505.213356pt;}
.y3_c00344{bottom:508.270056pt;}
.he_c00344{height:21.466667pt;}
.h16_c00344{height:49.466667pt;}
.h14_c00344{height:52.275133pt;}
.h10_c00344{height:53.208618pt;}
.hb_c00344{height:53.214070pt;}
.h15_c00344{height:54.133333pt;}
.h8_c00344{height:54.147650pt;}
.ha_c00344{height:55.081230pt;}
.h9_c00344{height:56.014810pt;}
.h12_c00344{height:56.942556pt;}
.h5_c00344{height:56.948390pt;}
.h17_c00344{height:57.866667pt;}
.h7_c00344{height:57.881970pt;}
.hf_c00344{height:58.809525pt;}
.h3_c00344{height:58.815551pt;}
.hc_c00344{height:59.749131pt;}
.h4_c00344{height:60.682711pt;}
.hd_c00344{height:61.616291pt;}
.h11_c00344{height:64.410432pt;}
.h6_c00344{height:64.417032pt;}
.h13_c00344{height:69.077855pt;}
.h2_c00344{height:79.354314pt;}
.h0_c00344{height:545.040000pt;}
.h1_c00344{height:545.333333pt;}
.w0_c00344{width:319.200000pt;}
.w1_c00344{width:319.333333pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:21.181333pt;}
.x4f_c00344{left:22.564035pt;}
.x52_c00344{left:23.937500pt;}
.x64_c00344{left:25.163005pt;}
.x74_c00344{left:26.581333pt;}
.x71_c00344{left:30.240000pt;}
.x76_c00344{left:33.360000pt;}
.x65_c00344{left:34.981840pt;}
.x29_c00344{left:37.456553pt;}
.x40_c00344{left:38.407897pt;}
.x26_c00344{left:40.417273pt;}
.x4a_c00344{left:42.910423pt;}
.x5e_c00344{left:46.390781pt;}
.x39_c00344{left:51.328020pt;}
.x4_c00344{left:53.728353pt;}
.x22_c00344{left:60.664741pt;}
.x35_c00344{left:62.125485pt;}
.x1b_c00344{left:63.438123pt;}
.x16_c00344{left:64.767255pt;}
.xc_c00344{left:67.359797pt;}
.x2f_c00344{left:69.099139pt;}
.x69_c00344{left:71.534408pt;}
.x56_c00344{left:74.155943pt;}
.x53_c00344{left:75.309780pt;}
.x62_c00344{left:77.651477pt;}
.x4b_c00344{left:80.332908pt;}
.x50_c00344{left:83.300143pt;}
.x1c_c00344{left:84.600191pt;}
.x36_c00344{left:85.891923pt;}
.x46_c00344{left:86.803224pt;}
.x5a_c00344{left:88.717769pt;}
.x3d_c00344{left:89.989699pt;}
.xd_c00344{left:92.400963pt;}
.x5f_c00344{left:93.902880pt;}
.x72_c00344{left:96.720000pt;}
.x5_c00344{left:101.177552pt;}
.x3e_c00344{left:103.425392pt;}
.x47_c00344{left:105.064329pt;}
.xe_c00344{left:108.997729pt;}
.x6a_c00344{left:112.954997pt;}
.x57_c00344{left:114.246289pt;}
.x27_c00344{left:116.300029pt;}
.x6_c00344{left:117.822519pt;}
.x66_c00344{left:119.483376pt;}
.x3a_c00344{left:122.371436pt;}
.x12_c00344{left:124.722389pt;}
.x31_c00344{left:126.102745pt;}
.x2a_c00344{left:127.749887pt;}
.x79_c00344{left:130.197333pt;}
.x41_c00344{left:132.513669pt;}
.x17_c00344{left:133.843167pt;}
.x2_c00344{left:136.486667pt;}
.x6e_c00344{left:138.261131pt;}
.x23_c00344{left:140.663728pt;}
.x1d_c00344{left:142.316219pt;}
.x3f_c00344{left:143.316472pt;}
.x5b_c00344{left:146.301812pt;}
.x48_c00344{left:148.253253pt;}
.x18_c00344{left:152.407980pt;}
.x42_c00344{left:153.639499pt;}
.x67_c00344{left:155.007104pt;}
.xf_c00344{left:157.489301pt;}
.x1e_c00344{left:158.881352pt;}
.x7_c00344{left:159.857648pt;}
.x2b_c00344{left:161.161887pt;}
.x58_c00344{left:162.472069pt;}
.x54_c00344{left:166.072408pt;}
.x13_c00344{left:167.480863pt;}
.x32_c00344{left:170.809340pt;}
.x2c_c00344{left:172.891220pt;}
.x68_c00344{left:174.391800pt;}
.x1f_c00344{left:176.069091pt;}
.x8_c00344{left:179.533680pt;}
.x5d_c00344{left:180.920000pt;}
.x3b_c00344{left:182.890009pt;}
.x77_c00344{left:184.320000pt;}
.x14_c00344{left:187.611747pt;}
.x75_c00344{left:188.529333pt;}
.x43_c00344{left:192.214992pt;}
.x49_c00344{left:194.146760pt;}
.x6b_c00344{left:199.129437pt;}
.x44_c00344{left:200.151912pt;}
.x30_c00344{left:203.131969pt;}
.x3c_c00344{left:206.268936pt;}
.x19_c00344{left:207.407631pt;}
.x4c_c00344{left:208.359875pt;}
.x10_c00344{left:210.559724pt;}
.x37_c00344{left:212.815083pt;}
.x24_c00344{left:214.394991pt;}
.x60_c00344{left:216.038947pt;}
.x9_c00344{left:218.673744pt;}
.x55_c00344{left:219.847723pt;}
.x6c_c00344{left:221.055720pt;}
.x63_c00344{left:224.551315pt;}
.x33_c00344{left:225.796717pt;}
.x6f_c00344{left:227.075240pt;}
.x78_c00344{left:228.240000pt;}
.x15_c00344{left:233.719140pt;}
.x25_c00344{left:235.999343pt;}
.x6d_c00344{left:236.966099pt;}
.x20_c00344{left:237.972720pt;}
.x51_c00344{left:240.061701pt;}
.x34_c00344{left:241.401271pt;}
.x2d_c00344{left:242.472553pt;}
.x45_c00344{left:244.360972pt;}
.x4d_c00344{left:247.015877pt;}
.x38_c00344{left:248.194041pt;}
.x28_c00344{left:250.442799pt;}
.x73_c00344{left:251.760000pt;}
.x61_c00344{left:254.248883pt;}
.xa_c00344{left:255.562835pt;}
.x1a_c00344{left:257.024001pt;}
.xb_c00344{left:261.893027pt;}
.x4e_c00344{left:263.026085pt;}
.x11_c00344{left:265.306239pt;}
.x21_c00344{left:267.511324pt;}
.x3_c00344{left:269.386667pt;}
.x59_c00344{left:271.018036pt;}
.x5c_c00344{left:272.887276pt;}
.x2e_c00344{left:275.583220pt;}
.x70_c00344{left:281.323475pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00345 {
    display:none;
  }
  .loading-indicator_c00345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00345 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00345 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00345" -> "#page-container .classname_c00345")
 */
.pf_c00345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00345 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00345 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00345 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00345 {overflow:visible;}
  }
}
.c_c00345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00345 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00345:after { /* webkit #35443 */
  content: '';
}
.t_c00345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00345 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00345 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00345 { /* info for Javascript */
  display:none;
}
.l_c00345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00345:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00345 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00345.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me1_c00345{transform:matrix(0.094598,0.002270,-0.005998,0.249928,0,0);-ms-transform:matrix(0.094598,0.002270,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.094598,0.002270,-0.005998,0.249928,0,0);}
.m25_c00345{transform:matrix(0.110120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{transform:matrix(0.123390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123390,0.000000,0.000000,0.250000,0,0);}
.m45_c00345{transform:matrix(0.133866,0.003213,-0.005998,0.249928,0,0);-ms-transform:matrix(0.133866,0.003213,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.133866,0.003213,-0.005998,0.249928,0,0);}
.m4c_c00345{transform:matrix(0.133976,0.003215,-0.005998,0.249928,0,0);-ms-transform:matrix(0.133976,0.003215,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.133976,0.003215,-0.005998,0.249928,0,0);}
.mc9_c00345{transform:matrix(0.141114,0.003387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.141114,0.003387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.141114,0.003387,-0.005998,0.249928,0,0);}
.m1_c00345{transform:matrix(0.145530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145530,0.000000,0.000000,0.250000,0,0);}
.m42_c00345{transform:matrix(0.146448,0.003515,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146448,0.003515,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146448,0.003515,-0.005998,0.249928,0,0);}
.m2a_c00345{transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148185,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00345{transform:matrix(0.154650,0.003712,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154650,0.003712,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154650,0.003712,-0.005998,0.249928,0,0);}
.m96_c00345{transform:matrix(0.155290,0.003727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155290,0.003727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155290,0.003727,-0.005998,0.249928,0,0);}
.m84_c00345{transform:matrix(0.157755,0.003786,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157755,0.003786,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157755,0.003786,-0.005998,0.249928,0,0);}
.m65_c00345{transform:matrix(0.157785,0.003787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157785,0.003787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157785,0.003787,-0.005998,0.249928,0,0);}
.m1f_c00345{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m93_c00345{transform:matrix(0.159009,0.003816,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159009,0.003816,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159009,0.003816,-0.005998,0.249928,0,0);}
.m1e_c00345{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m53_c00345{transform:matrix(0.162608,0.003903,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162608,0.003903,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162608,0.003903,-0.005998,0.249928,0,0);}
.m7c_c00345{transform:matrix(0.163138,0.003915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163138,0.003915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163138,0.003915,-0.005998,0.249928,0,0);}
.m43_c00345{transform:matrix(0.164013,0.003936,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164013,0.003936,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164013,0.003936,-0.005998,0.249928,0,0);}
.m47_c00345{transform:matrix(0.164063,0.003938,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164063,0.003938,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164063,0.003938,-0.005998,0.249928,0,0);}
.m86_c00345{transform:matrix(0.165417,0.003970,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165417,0.003970,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165417,0.003970,-0.005998,0.249928,0,0);}
.m22_c00345{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m28_c00345{transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);}
.mcc_c00345{transform:matrix(0.166497,0.003996,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166497,0.003996,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166497,0.003996,-0.005998,0.249928,0,0);}
.m31_c00345{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m73_c00345{transform:matrix(0.167157,0.004012,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167157,0.004012,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167157,0.004012,-0.005998,0.249928,0,0);}
.m67_c00345{transform:matrix(0.167192,0.004013,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167192,0.004013,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167192,0.004013,-0.005998,0.249928,0,0);}
.m20_c00345{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m6d_c00345{transform:matrix(0.168082,0.004034,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168082,0.004034,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168082,0.004034,-0.005998,0.249928,0,0);}
.m77_c00345{transform:matrix(0.168921,0.004054,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168921,0.004054,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168921,0.004054,-0.005998,0.249928,0,0);}
.m14_c00345{transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);}
.m7d_c00345{transform:matrix(0.169471,0.004067,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169471,0.004067,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169471,0.004067,-0.005998,0.249928,0,0);}
.m62_c00345{transform:matrix(0.169631,0.004071,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169631,0.004071,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169631,0.004071,-0.005998,0.249928,0,0);}
.med_c00345{transform:matrix(0.169651,0.004072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169651,0.004072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169651,0.004072,-0.005998,0.249928,0,0);}
.m91_c00345{transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);}
.me8_c00345{transform:matrix(0.169761,0.004074,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169761,0.004074,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169761,0.004074,-0.005998,0.249928,0,0);}
.m88_c00345{transform:matrix(0.169906,0.004078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169906,0.004078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169906,0.004078,-0.005998,0.249928,0,0);}
.mc1_c00345{transform:matrix(0.169911,0.004078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169911,0.004078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169911,0.004078,-0.005998,0.249928,0,0);}
.ma3_c00345{transform:matrix(0.170011,0.004080,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170011,0.004080,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170011,0.004080,-0.005998,0.249928,0,0);}
.m3e_c00345{transform:matrix(0.170241,0.004086,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170241,0.004086,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170241,0.004086,-0.005998,0.249928,0,0);}
.m24_c00345{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m33_c00345{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00345{transform:matrix(0.174075,0.004178,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174075,0.004178,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174075,0.004178,-0.005998,0.249928,0,0);}
.mc4_c00345{transform:matrix(0.174145,0.004179,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174145,0.004179,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174145,0.004179,-0.005998,0.249928,0,0);}
.m99_c00345{transform:matrix(0.174315,0.004184,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174315,0.004184,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174315,0.004184,-0.005998,0.249928,0,0);}
.m97_c00345{transform:matrix(0.175669,0.004216,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175669,0.004216,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175669,0.004216,-0.005998,0.249928,0,0);}
.mb4_c00345{transform:matrix(0.175839,0.004220,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175839,0.004220,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175839,0.004220,-0.005998,0.249928,0,0);}
.ma1_c00345{transform:matrix(0.176274,0.004231,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176274,0.004231,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176274,0.004231,-0.005998,0.249928,0,0);}
.m44_c00345{transform:matrix(0.176524,0.004237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176524,0.004237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176524,0.004237,-0.005998,0.249928,0,0);}
.m9d_c00345{transform:matrix(0.176559,0.004237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176559,0.004237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176559,0.004237,-0.005998,0.249928,0,0);}
.m8e_c00345{transform:matrix(0.177244,0.004254,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177244,0.004254,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177244,0.004254,-0.005998,0.249928,0,0);}
.m11_c00345{transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177730,0.000000,0.000000,0.250000,0,0);}
.mc3_c00345{transform:matrix(0.177814,0.004268,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177814,0.004268,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177814,0.004268,-0.005998,0.249928,0,0);}
.m4d_c00345{transform:matrix(0.178704,0.004289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178704,0.004289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178704,0.004289,-0.005998,0.249928,0,0);}
.m74_c00345{transform:matrix(0.179288,0.004303,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179288,0.004303,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179288,0.004303,-0.005998,0.249928,0,0);}
.m21_c00345{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.md5_c00345{transform:matrix(0.180293,0.004327,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180293,0.004327,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180293,0.004327,-0.005998,0.249928,0,0);}
.m46_c00345{transform:matrix(0.180423,0.004330,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180423,0.004330,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180423,0.004330,-0.005998,0.249928,0,0);}
.mee_c00345{transform:matrix(0.181118,0.004347,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181118,0.004347,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181118,0.004347,-0.005998,0.249928,0,0);}
.m94_c00345{transform:matrix(0.181378,0.004353,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181378,0.004353,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181378,0.004353,-0.005998,0.249928,0,0);}
.mea_c00345{transform:matrix(0.181488,0.004356,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181488,0.004356,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181488,0.004356,-0.005998,0.249928,0,0);}
.mc0_c00345{transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181823,0.004364,-0.005998,0.249928,0,0);}
.m2f_c00345{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m68_c00345{transform:matrix(0.182402,0.004378,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182402,0.004378,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182402,0.004378,-0.005998,0.249928,0,0);}
.m16_c00345{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m76_c00345{transform:matrix(0.182787,0.004387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182787,0.004387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182787,0.004387,-0.005998,0.249928,0,0);}
.m50_c00345{transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182887,0.004389,-0.005998,0.249928,0,0);}
.mb5_c00345{transform:matrix(0.182927,0.004390,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182927,0.004390,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182927,0.004390,-0.005998,0.249928,0,0);}
.m26_c00345{transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183395,0.000000,0.000000,0.250000,0,0);}
.m92_c00345{transform:matrix(0.183402,0.004402,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183402,0.004402,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183402,0.004402,-0.005998,0.249928,0,0);}
.m3a_c00345{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00345{transform:matrix(0.183682,0.004408,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183682,0.004408,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183682,0.004408,-0.005998,0.249928,0,0);}
.m30_c00345{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m72_c00345{transform:matrix(0.184487,0.004428,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184487,0.004428,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184487,0.004428,-0.005998,0.249928,0,0);}
.m6_c00345{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.m60_c00345{transform:matrix(0.184917,0.004438,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184917,0.004438,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184917,0.004438,-0.005998,0.249928,0,0);}
.m4a_c00345{transform:matrix(0.185057,0.004441,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185057,0.004441,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185057,0.004441,-0.005998,0.249928,0,0);}
.m9a_c00345{transform:matrix(0.185347,0.004448,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185347,0.004448,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185347,0.004448,-0.005998,0.249928,0,0);}
.mb3_c00345{transform:matrix(0.185487,0.004452,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185487,0.004452,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185487,0.004452,-0.005998,0.249928,0,0);}
.meb_c00345{transform:matrix(0.186166,0.004468,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186166,0.004468,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186166,0.004468,-0.005998,0.249928,0,0);}
.mc5_c00345{transform:matrix(0.186171,0.004468,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186171,0.004468,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186171,0.004468,-0.005998,0.249928,0,0);}
.mae_c00345{transform:matrix(0.186526,0.004477,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186526,0.004477,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186526,0.004477,-0.005998,0.249928,0,0);}
.mc6_c00345{transform:matrix(0.187031,0.004489,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187031,0.004489,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187031,0.004489,-0.005998,0.249928,0,0);}
.m29_c00345{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m4b_c00345{transform:matrix(0.187281,0.004495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187281,0.004495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187281,0.004495,-0.005998,0.249928,0,0);}
.m87_c00345{transform:matrix(0.187416,0.004498,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187416,0.004498,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187416,0.004498,-0.005998,0.249928,0,0);}
.me3_c00345{transform:matrix(0.187836,0.004508,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187836,0.004508,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187836,0.004508,-0.005998,0.249928,0,0);}
.mca_c00345{transform:matrix(0.188056,0.004513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188056,0.004513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188056,0.004513,-0.005998,0.249928,0,0);}
.mc2_c00345{transform:matrix(0.188171,0.004516,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188171,0.004516,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188171,0.004516,-0.005998,0.249928,0,0);}
.m95_c00345{transform:matrix(0.188441,0.004523,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188441,0.004523,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188441,0.004523,-0.005998,0.249928,0,0);}
.mec_c00345{transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);}
.m7_c00345{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.mab_c00345{transform:matrix(0.189011,0.004536,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189011,0.004536,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189011,0.004536,-0.005998,0.249928,0,0);}
.m2e_c00345{transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);}
.m7f_c00345{transform:matrix(0.189670,0.004552,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189670,0.004552,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189670,0.004552,-0.005998,0.249928,0,0);}
.m83_c00345{transform:matrix(0.189690,0.004553,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189690,0.004553,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189690,0.004553,-0.005998,0.249928,0,0);}
.ma5_c00345{transform:matrix(0.189765,0.004554,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189765,0.004554,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189765,0.004554,-0.005998,0.249928,0,0);}
.m49_c00345{transform:matrix(0.190095,0.004562,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190095,0.004562,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190095,0.004562,-0.005998,0.249928,0,0);}
.md3_c00345{transform:matrix(0.190260,0.004566,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190260,0.004566,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190260,0.004566,-0.005998,0.249928,0,0);}
.m81_c00345{transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190580,0.004574,-0.005998,0.249928,0,0);}
.me5_c00345{transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191040,0.004585,-0.005998,0.249928,0,0);}
.mdd_c00345{transform:matrix(0.191060,0.004585,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191060,0.004585,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191060,0.004585,-0.005998,0.249928,0,0);}
.mb6_c00345{transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191280,0.004591,-0.005998,0.249928,0,0);}
.maf_c00345{transform:matrix(0.191710,0.004601,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191710,0.004601,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191710,0.004601,-0.005998,0.249928,0,0);}
.me9_c00345{transform:matrix(0.191860,0.004605,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191860,0.004605,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191860,0.004605,-0.005998,0.249928,0,0);}
.m1a_c00345{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.ma0_c00345{transform:matrix(0.192700,0.004625,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192700,0.004625,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192700,0.004625,-0.005998,0.249928,0,0);}
.m19_c00345{transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);}
.m80_c00345{transform:matrix(0.193634,0.004647,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193634,0.004647,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193634,0.004647,-0.005998,0.249928,0,0);}
.m12_c00345{transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);}
.m48_c00345{transform:matrix(0.194259,0.004662,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194259,0.004662,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194259,0.004662,-0.005998,0.249928,0,0);}
.mbf_c00345{transform:matrix(0.194534,0.004669,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194534,0.004669,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194534,0.004669,-0.005998,0.249928,0,0);}
.mba_c00345{transform:matrix(0.194614,0.004671,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194614,0.004671,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194614,0.004671,-0.005998,0.249928,0,0);}
.m75_c00345{transform:matrix(0.195044,0.004681,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195044,0.004681,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195044,0.004681,-0.005998,0.249928,0,0);}
.m7a_c00345{transform:matrix(0.195189,0.004685,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195189,0.004685,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195189,0.004685,-0.005998,0.249928,0,0);}
.m0_c00345{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mad_c00345{transform:matrix(0.195644,0.004695,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195644,0.004695,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195644,0.004695,-0.005998,0.249928,0,0);}
.m64_c00345{transform:matrix(0.195799,0.004699,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195799,0.004699,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195799,0.004699,-0.005998,0.249928,0,0);}
.mac_c00345{transform:matrix(0.196044,0.004705,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196044,0.004705,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196044,0.004705,-0.005998,0.249928,0,0);}
.ma4_c00345{transform:matrix(0.196998,0.004728,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196998,0.004728,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196998,0.004728,-0.005998,0.249928,0,0);}
.md_c00345{transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197280,0.000000,0.000000,0.250000,0,0);}
.m57_c00345{transform:matrix(0.197553,0.004741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197553,0.004741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197553,0.004741,-0.005998,0.249928,0,0);}
.m61_c00345{transform:matrix(0.198073,0.004754,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198073,0.004754,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198073,0.004754,-0.005998,0.249928,0,0);}
.m70_c00345{transform:matrix(0.198503,0.004764,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198503,0.004764,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198503,0.004764,-0.005998,0.249928,0,0);}
.m9b_c00345{transform:matrix(0.199143,0.004779,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199143,0.004779,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199143,0.004779,-0.005998,0.249928,0,0);}
.m41_c00345{transform:matrix(0.199258,0.004782,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199258,0.004782,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199258,0.004782,-0.005998,0.249928,0,0);}
.m2b_c00345{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.mc7_c00345{transform:matrix(0.199702,0.004793,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199702,0.004793,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199702,0.004793,-0.005998,0.249928,0,0);}
.ma_c00345{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.mcb_c00345{transform:matrix(0.200507,0.004812,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200507,0.004812,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200507,0.004812,-0.005998,0.249928,0,0);}
.m66_c00345{transform:matrix(0.201332,0.004832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201332,0.004832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201332,0.004832,-0.005998,0.249928,0,0);}
.m5a_c00345{transform:matrix(0.201422,0.004834,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201422,0.004834,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201422,0.004834,-0.005998,0.249928,0,0);}
.mf_c00345{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m1d_c00345{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m85_c00345{transform:matrix(0.202752,0.004866,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202752,0.004866,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202752,0.004866,-0.005998,0.249928,0,0);}
.mb0_c00345{transform:matrix(0.202937,0.004870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202937,0.004870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202937,0.004870,-0.005998,0.249928,0,0);}
.mcd_c00345{transform:matrix(0.202992,0.004872,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202992,0.004872,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202992,0.004872,-0.005998,0.249928,0,0);}
.mb_c00345{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.mdb_c00345{transform:matrix(0.205661,0.004936,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205661,0.004936,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205661,0.004936,-0.005998,0.249928,0,0);}
.me_c00345{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.mb2_c00345{transform:matrix(0.206106,0.004947,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206106,0.004947,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206106,0.004947,-0.005998,0.249928,0,0);}
.m78_c00345{transform:matrix(0.206451,0.004955,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206451,0.004955,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206451,0.004955,-0.005998,0.249928,0,0);}
.me7_c00345{transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207080,0.004970,-0.005998,0.249928,0,0);}
.m82_c00345{transform:matrix(0.207230,0.004974,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207230,0.004974,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207230,0.004974,-0.005998,0.249928,0,0);}
.mbc_c00345{transform:matrix(0.208115,0.004995,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208115,0.004995,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208115,0.004995,-0.005998,0.249928,0,0);}
.m17_c00345{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.mef_c00345{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.ma9_c00345{transform:matrix(0.208420,0.005002,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208420,0.005002,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208420,0.005002,-0.005998,0.249928,0,0);}
.m4_c00345{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m7e_c00345{transform:matrix(0.208740,0.005010,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208740,0.005010,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208740,0.005010,-0.005998,0.249928,0,0);}
.maa_c00345{transform:matrix(0.209105,0.005019,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209105,0.005019,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209105,0.005019,-0.005998,0.249928,0,0);}
.m5e_c00345{transform:matrix(0.209110,0.005019,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209110,0.005019,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209110,0.005019,-0.005998,0.249928,0,0);}
.me0_c00345{transform:matrix(0.209490,0.005028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209490,0.005028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209490,0.005028,-0.005998,0.249928,0,0);}
.m3_c00345{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.mc8_c00345{transform:matrix(0.209710,0.005033,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209710,0.005033,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209710,0.005033,-0.005998,0.249928,0,0);}
.m34_c00345{transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);}
.m32_c00345{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m38_c00345{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m63_c00345{transform:matrix(0.213214,0.005117,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213214,0.005117,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213214,0.005117,-0.005998,0.249928,0,0);}
.mbd_c00345{transform:matrix(0.214313,0.005144,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214313,0.005144,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214313,0.005144,-0.005998,0.249928,0,0);}
.m27_c00345{transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);}
.m55_c00345{transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);}
.m71_c00345{transform:matrix(0.215028,0.005161,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215028,0.005161,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215028,0.005161,-0.005998,0.249928,0,0);}
.md4_c00345{transform:matrix(0.215318,0.005168,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215318,0.005168,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215318,0.005168,-0.005998,0.249928,0,0);}
.m79_c00345{transform:matrix(0.216118,0.005187,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216118,0.005187,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216118,0.005187,-0.005998,0.249928,0,0);}
.mbb_c00345{transform:matrix(0.216143,0.005187,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216143,0.005187,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216143,0.005187,-0.005998,0.249928,0,0);}
.mb1_c00345{transform:matrix(0.216353,0.005192,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216353,0.005192,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216353,0.005192,-0.005998,0.249928,0,0);}
.ma7_c00345{transform:matrix(0.216733,0.005202,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216733,0.005202,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216733,0.005202,-0.005998,0.249928,0,0);}
.m98_c00345{transform:matrix(0.216783,0.005203,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216783,0.005203,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216783,0.005203,-0.005998,0.249928,0,0);}
.m56_c00345{transform:matrix(0.217462,0.005219,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217462,0.005219,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217462,0.005219,-0.005998,0.249928,0,0);}
.mcf_c00345{transform:matrix(0.218052,0.005233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218052,0.005233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218052,0.005233,-0.005998,0.249928,0,0);}
.m7b_c00345{transform:matrix(0.218162,0.005236,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218162,0.005236,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218162,0.005236,-0.005998,0.249928,0,0);}
.mdc_c00345{transform:matrix(0.218297,0.005239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218297,0.005239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218297,0.005239,-0.005998,0.249928,0,0);}
.m3c_c00345{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.md8_c00345{transform:matrix(0.220781,0.005299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220781,0.005299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220781,0.005299,-0.005998,0.249928,0,0);}
.m58_c00345{transform:matrix(0.221431,0.005314,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221431,0.005314,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221431,0.005314,-0.005998,0.249928,0,0);}
.m35_c00345{transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);}
.md0_c00345{transform:matrix(0.221646,0.005320,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221646,0.005320,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221646,0.005320,-0.005998,0.249928,0,0);}
.me6_c00345{transform:matrix(0.222456,0.005339,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222456,0.005339,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222456,0.005339,-0.005998,0.249928,0,0);}
.m5d_c00345{transform:matrix(0.223201,0.005357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223201,0.005357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223201,0.005357,-0.005998,0.249928,0,0);}
.m5_c00345{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m69_c00345{transform:matrix(0.225020,0.005400,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225020,0.005400,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225020,0.005400,-0.005998,0.249928,0,0);}
.mc_c00345{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);}
.md6_c00345{transform:matrix(0.226270,0.005430,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226270,0.005430,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226270,0.005430,-0.005998,0.249928,0,0);}
.mb9_c00345{transform:matrix(0.226520,0.005436,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226520,0.005436,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226520,0.005436,-0.005998,0.249928,0,0);}
.m8d_c00345{transform:matrix(0.226935,0.005446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226935,0.005446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226935,0.005446,-0.005998,0.249928,0,0);}
.md7_c00345{transform:matrix(0.227090,0.005450,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227090,0.005450,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227090,0.005450,-0.005998,0.249928,0,0);}
.m8b_c00345{transform:matrix(0.228289,0.005479,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228289,0.005479,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228289,0.005479,-0.005998,0.249928,0,0);}
.m5c_c00345{transform:matrix(0.228329,0.005480,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228329,0.005480,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228329,0.005480,-0.005998,0.249928,0,0);}
.m10_c00345{transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);}
.m3b_c00345{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00345{transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235212,0.005645,-0.005998,0.249928,0,0);}
.m5f_c00345{transform:matrix(0.237547,0.005701,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237547,0.005701,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237547,0.005701,-0.005998,0.249928,0,0);}
.ma2_c00345{transform:matrix(0.240101,0.005762,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240101,0.005762,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240101,0.005762,-0.005998,0.249928,0,0);}
.ma8_c00345{transform:matrix(0.240326,0.005768,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240326,0.005768,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240326,0.005768,-0.005998,0.249928,0,0);}
.m59_c00345{transform:matrix(0.240836,0.005780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240836,0.005780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240836,0.005780,-0.005998,0.249928,0,0);}
.m6f_c00345{transform:matrix(0.241111,0.005787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241111,0.005787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241111,0.005787,-0.005998,0.249928,0,0);}
.m39_c00345{transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241210,0.000000,0.000000,0.250000,0,0);}
.ma6_c00345{transform:matrix(0.243060,0.005833,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243060,0.005833,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243060,0.005833,-0.005998,0.249928,0,0);}
.m3f_c00345{transform:matrix(0.244605,0.005871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244605,0.005871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244605,0.005871,-0.005998,0.249928,0,0);}
.me4_c00345{transform:matrix(0.246139,0.005907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246139,0.005907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246139,0.005907,-0.005998,0.249928,0,0);}
.m2c_c00345{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m40_c00345{transform:matrix(0.253607,0.006087,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253607,0.006087,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253607,0.006087,-0.005998,0.249928,0,0);}
.m1b_c00345{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m9f_c00345{transform:matrix(0.255476,0.006131,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255476,0.006131,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255476,0.006131,-0.005998,0.249928,0,0);}
.m89_c00345{transform:matrix(0.256501,0.006156,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256501,0.006156,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256501,0.006156,-0.005998,0.249928,0,0);}
.m6a_c00345{transform:matrix(0.258361,0.006201,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258361,0.006201,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258361,0.006201,-0.005998,0.249928,0,0);}
.me2_c00345{transform:matrix(0.258606,0.006207,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258606,0.006207,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258606,0.006207,-0.005998,0.249928,0,0);}
.md1_c00345{transform:matrix(0.259070,0.006218,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259070,0.006218,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259070,0.006218,-0.005998,0.249928,0,0);}
.mde_c00345{transform:matrix(0.259320,0.006224,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259320,0.006224,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259320,0.006224,-0.005998,0.249928,0,0);}
.md2_c00345{transform:matrix(0.261490,0.006276,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261490,0.006276,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261490,0.006276,-0.005998,0.249928,0,0);}
.m6e_c00345{transform:matrix(0.262604,0.006303,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262604,0.006303,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262604,0.006303,-0.005998,0.249928,0,0);}
.m3d_c00345{transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);}
.m9e_c00345{transform:matrix(0.266793,0.006403,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266793,0.006403,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266793,0.006403,-0.005998,0.249928,0,0);}
.m37_c00345{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{transform:matrix(0.269435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269435,0.000000,0.000000,0.250000,0,0);}
.mb7_c00345{transform:matrix(0.270597,0.006494,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270597,0.006494,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270597,0.006494,-0.005998,0.249928,0,0);}
.mdf_c00345{transform:matrix(0.270637,0.006495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270637,0.006495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270637,0.006495,-0.005998,0.249928,0,0);}
.m4e_c00345{transform:matrix(0.278775,0.006691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278775,0.006691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278775,0.006691,-0.005998,0.249928,0,0);}
.mce_c00345{transform:matrix(0.279070,0.006698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279070,0.006698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279070,0.006698,-0.005998,0.249928,0,0);}
.m90_c00345{transform:matrix(0.281054,0.006745,-0.005998,0.249928,0,0);-ms-transform:matrix(0.281054,0.006745,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.281054,0.006745,-0.005998,0.249928,0,0);}
.m51_c00345{transform:matrix(0.284433,0.006826,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284433,0.006826,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284433,0.006826,-0.005998,0.249928,0,0);}
.m5b_c00345{transform:matrix(0.285388,0.006849,-0.005998,0.249928,0,0);-ms-transform:matrix(0.285388,0.006849,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.285388,0.006849,-0.005998,0.249928,0,0);}
.m8f_c00345{transform:matrix(0.286587,0.006878,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286587,0.006878,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286587,0.006878,-0.005998,0.249928,0,0);}
.m6b_c00345{transform:matrix(0.319143,0.007659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.319143,0.007659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.319143,0.007659,-0.005998,0.249928,0,0);}
.mb8_c00345{transform:matrix(0.327526,0.007861,-0.005998,0.249928,0,0);-ms-transform:matrix(0.327526,0.007861,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.327526,0.007861,-0.005998,0.249928,0,0);}
.mda_c00345{transform:matrix(0.347215,0.008333,-0.005998,0.249928,0,0);-ms-transform:matrix(0.347215,0.008333,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.347215,0.008333,-0.005998,0.249928,0,0);}
.m4f_c00345{transform:matrix(0.357997,0.008592,-0.005998,0.249928,0,0);-ms-transform:matrix(0.357997,0.008592,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.357997,0.008592,-0.005998,0.249928,0,0);}
.m8a_c00345{transform:matrix(0.367999,0.008832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.367999,0.008832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.367999,0.008832,-0.005998,0.249928,0,0);}
.md9_c00345{transform:matrix(0.396221,0.009509,-0.005998,0.249928,0,0);-ms-transform:matrix(0.396221,0.009509,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.396221,0.009509,-0.005998,0.249928,0,0);}
.m54_c00345{transform:matrix(0.400310,0.009607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.400310,0.009607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.400310,0.009607,-0.005998,0.249928,0,0);}
.m52_c00345{transform:matrix(0.410447,0.009851,-0.005998,0.249928,0,0);-ms-transform:matrix(0.410447,0.009851,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.410447,0.009851,-0.005998,0.249928,0,0);}
.m36_c00345{transform:matrix(0.501895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501895,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:0.000000px;}
.fc0_c00345{color:transparent;}
.fs12_c00345{font-size:22.050000px;}
.fsa_c00345{font-size:57.766630px;}
.fsb_c00345{font-size:58.816932px;}
.fs9_c00345{font-size:59.867234px;}
.fs6_c00345{font-size:60.900000px;}
.fs10_c00345{font-size:60.917537px;}
.fs2_c00345{font-size:61.950000px;}
.fsc_c00345{font-size:61.967839px;}
.fs4_c00345{font-size:63.000000px;}
.fs0_c00345{font-size:64.050000px;}
.fs1_c00345{font-size:65.100000px;}
.fsf_c00345{font-size:66.169048px;}
.fsd_c00345{font-size:67.219351px;}
.fse_c00345{font-size:68.269653px;}
.fs3_c00345{font-size:69.300000px;}
.fs8_c00345{font-size:70.370258px;}
.fs5_c00345{font-size:71.400000px;}
.fs11_c00345{font-size:71.420560px;}
.fs7_c00345{font-size:73.521165px;}
.y0_c00345{bottom:0.000000px;}
.ydf_c00345{bottom:30.684516px;}
.yde_c00345{bottom:31.154256px;}
.ydd_c00345{bottom:31.874280px;}
.ydc_c00345{bottom:32.023824px;}
.ydb_c00345{bottom:32.450640px;}
.yda_c00345{bottom:33.161448px;}
.yd9_c00345{bottom:33.920196px;}
.yd5_c00345{bottom:48.868224px;}
.yd4_c00345{bottom:48.868248px;}
.yd6_c00345{bottom:48.868308px;}
.yd3_c00345{bottom:48.868464px;}
.yd7_c00345{bottom:48.868548px;}
.yd8_c00345{bottom:48.869088px;}
.yd2_c00345{bottom:62.012652px;}
.yd1_c00345{bottom:62.787504px;}
.yd0_c00345{bottom:64.321404px;}
.ycf_c00345{bottom:66.871368px;}
.ye0_c00345{bottom:70.200000px;}
.yce_c00345{bottom:79.378644px;}
.ycd_c00345{bottom:80.091456px;}
.ycc_c00345{bottom:80.828388px;}
.ycb_c00345{bottom:80.971368px;}
.yca_c00345{bottom:81.761376px;}
.yc9_c00345{bottom:82.243356px;}
.yc8_c00345{bottom:82.803684px;}
.yc7_c00345{bottom:98.072784px;}
.yc6_c00345{bottom:98.404836px;}
.yc5_c00345{bottom:98.633040px;}
.yc4_c00345{bottom:99.514596px;}
.yc3_c00345{bottom:99.816096px;}
.yc2_c00345{bottom:100.659528px;}
.yc1_c00345{bottom:100.780212px;}
.yc0_c00345{bottom:101.169912px;}
.ybf_c00345{bottom:114.387480px;}
.ybe_c00345{bottom:114.650736px;}
.ybd_c00345{bottom:115.056612px;}
.ybc_c00345{bottom:115.354092px;}
.ybb_c00345{bottom:116.254704px;}
.yba_c00345{bottom:116.837700px;}
.yb9_c00345{bottom:117.074568px;}
.yb8_c00345{bottom:117.914820px;}
.yb7_c00345{bottom:130.662348px;}
.yb6_c00345{bottom:131.327868px;}
.yb5_c00345{bottom:132.248544px;}
.yb4_c00345{bottom:132.814500px;}
.yb3_c00345{bottom:133.383276px;}
.yb2_c00345{bottom:134.374356px;}
.yb1_c00345{bottom:134.667924px;}
.yb0_c00345{bottom:135.199320px;}
.yaf_c00345{bottom:148.218972px;}
.yae_c00345{bottom:148.692576px;}
.yad_c00345{bottom:149.730720px;}
.yac_c00345{bottom:150.335016px;}
.yab_c00345{bottom:151.476756px;}
.yaa_c00345{bottom:151.859928px;}
.ya9_c00345{bottom:152.482080px;}
.ya8_c00345{bottom:164.126136px;}
.ya7_c00345{bottom:164.638188px;}
.ya6_c00345{bottom:166.225704px;}
.ya5_c00345{bottom:166.844712px;}
.ya4_c00345{bottom:167.530932px;}
.ya3_c00345{bottom:168.141276px;}
.ya2_c00345{bottom:168.449064px;}
.ya1_c00345{bottom:170.038776px;}
.ya0_c00345{bottom:180.972840px;}
.y9f_c00345{bottom:182.444844px;}
.y9e_c00345{bottom:182.935944px;}
.y9d_c00345{bottom:184.204596px;}
.y9c_c00345{bottom:185.693580px;}
.y9b_c00345{bottom:187.191192px;}
.y9a_c00345{bottom:187.717872px;}
.y99_c00345{bottom:188.403180px;}
.y98_c00345{bottom:198.377256px;}
.y97_c00345{bottom:200.508096px;}
.y96_c00345{bottom:201.577572px;}
.y95_c00345{bottom:202.158096px;}
.y94_c00345{bottom:203.259096px;}
.y93_c00345{bottom:203.815056px;}
.y92_c00345{bottom:204.607524px;}
.y91_c00345{bottom:215.997924px;}
.y90_c00345{bottom:216.430272px;}
.y8f_c00345{bottom:216.794724px;}
.y8e_c00345{bottom:217.801716px;}
.y8d_c00345{bottom:218.629764px;}
.y8c_c00345{bottom:218.936256px;}
.y8b_c00345{bottom:219.826152px;}
.y8a_c00345{bottom:221.363376px;}
.y89_c00345{bottom:221.889396px;}
.y88_c00345{bottom:233.273340px;}
.y87_c00345{bottom:234.445188px;}
.y86_c00345{bottom:234.792372px;}
.y85_c00345{bottom:235.396392px;}
.y84_c00345{bottom:236.918412px;}
.y83_c00345{bottom:237.225012px;}
.y82_c00345{bottom:238.018824px;}
.y81_c00345{bottom:238.364532px;}
.y80_c00345{bottom:251.377908px;}
.y7f_c00345{bottom:252.320844px;}
.y7e_c00345{bottom:252.664464px;}
.y7d_c00345{bottom:253.450404px;}
.y7c_c00345{bottom:253.651284px;}
.y7b_c00345{bottom:254.640492px;}
.y7a_c00345{bottom:254.806104px;}
.y79_c00345{bottom:255.644388px;}
.y78_c00345{bottom:267.373404px;}
.y77_c00345{bottom:268.043448px;}
.y76_c00345{bottom:268.375788px;}
.y75_c00345{bottom:269.876076px;}
.y74_c00345{bottom:270.286128px;}
.y73_c00345{bottom:270.612036px;}
.y72_c00345{bottom:271.354740px;}
.y71_c00345{bottom:271.850964px;}
.y70_c00345{bottom:284.780976px;}
.y6f_c00345{bottom:285.638868px;}
.y6e_c00345{bottom:285.944856px;}
.y6d_c00345{bottom:286.451820px;}
.y6c_c00345{bottom:286.757628px;}
.y6b_c00345{bottom:286.935864px;}
.y6a_c00345{bottom:287.733468px;}
.y69_c00345{bottom:288.596232px;}
.y68_c00345{bottom:302.027664px;}
.y67_c00345{bottom:302.783940px;}
.y66_c00345{bottom:303.211836px;}
.y65_c00345{bottom:304.021908px;}
.y64_c00345{bottom:304.268316px;}
.y63_c00345{bottom:304.601424px;}
.y62_c00345{bottom:305.340768px;}
.y61_c00345{bottom:318.924924px;}
.y60_c00345{bottom:319.630224px;}
.y5f_c00345{bottom:319.859472px;}
.y5e_c00345{bottom:320.114928px;}
.y5d_c00345{bottom:320.688036px;}
.y5c_c00345{bottom:321.020448px;}
.y5b_c00345{bottom:321.165672px;}
.y5a_c00345{bottom:322.035636px;}
.y59_c00345{bottom:322.289124px;}
.y58_c00345{bottom:322.625340px;}
.y56_c00345{bottom:338.012580px;}
.y55_c00345{bottom:338.013168px;}
.y57_c00345{bottom:338.013240px;}
.y54_c00345{bottom:338.013636px;}
.y52_c00345{bottom:338.014188px;}
.y53_c00345{bottom:338.014224px;}
.y50_c00345{bottom:338.014452px;}
.y51_c00345{bottom:338.014776px;}
.y4f_c00345{bottom:353.196612px;}
.y4e_c00345{bottom:354.270396px;}
.y4d_c00345{bottom:355.080684px;}
.y4c_c00345{bottom:355.274580px;}
.y4b_c00345{bottom:355.464600px;}
.y4a_c00345{bottom:356.141160px;}
.y49_c00345{bottom:357.464976px;}
.y48_c00345{bottom:370.521216px;}
.y47_c00345{bottom:371.642604px;}
.y46_c00345{bottom:372.862692px;}
.y45_c00345{bottom:373.981068px;}
.y44_c00345{bottom:374.743236px;}
.y43_c00345{bottom:387.576960px;}
.y42_c00345{bottom:388.657740px;}
.y41_c00345{bottom:390.223692px;}
.y40_c00345{bottom:390.524652px;}
.y3f_c00345{bottom:390.685044px;}
.y3e_c00345{bottom:391.493688px;}
.y3d_c00345{bottom:403.481556px;}
.y3c_c00345{bottom:403.879668px;}
.y3b_c00345{bottom:404.274780px;}
.y3a_c00345{bottom:404.666280px;}
.y39_c00345{bottom:405.789996px;}
.y38_c00345{bottom:406.331472px;}
.y37_c00345{bottom:407.337288px;}
.y36_c00345{bottom:408.154572px;}
.y35_c00345{bottom:408.508560px;}
.y34_c00345{bottom:419.808756px;}
.y33_c00345{bottom:420.920508px;}
.y32_c00345{bottom:421.331736px;}
.y31_c00345{bottom:423.179724px;}
.y30_c00345{bottom:423.615000px;}
.y2f_c00345{bottom:424.721208px;}
.y2e_c00345{bottom:425.797500px;}
.y2d_c00345{bottom:438.175500px;}
.y2c_c00345{bottom:438.340500px;}
.y2b_c00345{bottom:439.042500px;}
.y2a_c00345{bottom:439.443000px;}
.y29_c00345{bottom:439.629000px;}
.y28_c00345{bottom:440.398500px;}
.y27_c00345{bottom:440.662500px;}
.y26_c00345{bottom:441.456000px;}
.y25_c00345{bottom:441.723000px;}
.y24_c00345{bottom:454.699500px;}
.y23_c00345{bottom:455.535000px;}
.y22_c00345{bottom:455.758500px;}
.y21_c00345{bottom:456.297000px;}
.y20_c00345{bottom:457.114500px;}
.y1f_c00345{bottom:457.660500px;}
.y1e_c00345{bottom:458.049000px;}
.y1d_c00345{bottom:458.733000px;}
.y1c_c00345{bottom:472.069500px;}
.y1b_c00345{bottom:473.238000px;}
.y1a_c00345{bottom:474.075000px;}
.y19_c00345{bottom:474.343500px;}
.y18_c00345{bottom:475.215000px;}
.y17_c00345{bottom:475.573500px;}
.y16_c00345{bottom:476.013000px;}
.y15_c00345{bottom:489.292500px;}
.y14_c00345{bottom:489.373500px;}
.y13_c00345{bottom:489.970500px;}
.y12_c00345{bottom:490.228500px;}
.y11_c00345{bottom:490.900500px;}
.y10_c00345{bottom:491.143500px;}
.yf_c00345{bottom:491.460000px;}
.ye_c00345{bottom:491.661000px;}
.yd_c00345{bottom:491.943000px;}
.yc_c00345{bottom:507.753000px;}
.yb_c00345{bottom:524.526000px;}
.ya_c00345{bottom:539.472000px;}
.y9_c00345{bottom:539.689500px;}
.y8_c00345{bottom:539.841000px;}
.y7_c00345{bottom:540.145500px;}
.y6_c00345{bottom:540.796500px;}
.y5_c00345{bottom:541.785000px;}
.y4_c00345{bottom:542.109000px;}
.y3_c00345{bottom:542.703000px;}
.y2_c00345{bottom:558.220500px;}
.y1_c00345{bottom:571.588500px;}
.h14_c00345{height:22.050000px;}
.hc_c00345{height:57.766630px;}
.hd_c00345{height:58.816932px;}
.hb_c00345{height:59.867234px;}
.h8_c00345{height:60.900000px;}
.h12_c00345{height:60.917537px;}
.h4_c00345{height:61.950000px;}
.he_c00345{height:61.967839px;}
.h6_c00345{height:63.000000px;}
.h2_c00345{height:64.050000px;}
.h3_c00345{height:65.100000px;}
.h11_c00345{height:66.169048px;}
.hf_c00345{height:67.219351px;}
.h10_c00345{height:68.269653px;}
.h5_c00345{height:69.300000px;}
.ha_c00345{height:70.370258px;}
.h7_c00345{height:71.400000px;}
.h13_c00345{height:71.420560px;}
.h9_c00345{height:73.521165px;}
.h0_c00345{height:613.170000px;}
.h1_c00345{height:613.500000px;}
.w0_c00345{width:359.100000px;}
.w1_c00345{width:359.250000px;}
.x0_c00345{left:0.000000px;}
.x62_c00345{left:24.298716px;}
.x74_c00345{left:30.644904px;}
.x6b_c00345{left:31.687068px;}
.x65_c00345{left:33.349308px;}
.x5d_c00345{left:34.668384px;}
.x40_c00345{left:36.001092px;}
.x2b_c00345{left:37.639500px;}
.x16_c00345{left:39.420000px;}
.x2_c00345{left:41.310000px;}
.x5a_c00345{left:51.567996px;}
.x2c_c00345{left:58.149000px;}
.x5e_c00345{left:59.712684px;}
.x4a_c00345{left:61.394976px;}
.x3_c00345{left:63.450000px;}
.x17_c00345{left:66.960000px;}
.x6c_c00345{left:68.211852px;}
.x5f_c00345{left:71.103324px;}
.x21_c00345{left:72.198000px;}
.x6d_c00345{left:78.429000px;}
.x1b_c00345{left:79.546500px;}
.x4b_c00345{left:80.837088px;}
.x31_c00345{left:82.360500px;}
.x27_c00345{left:84.343500px;}
.xf_c00345{left:87.480000px;}
.x8_c00345{left:89.809500px;}
.x3d_c00345{left:91.633776px;}
.x46_c00345{left:93.704760px;}
.x4_c00345{left:96.120000px;}
.x50_c00345{left:97.666596px;}
.x22_c00345{left:99.733500px;}
.x36_c00345{left:103.473180px;}
.x1c_c00345{left:105.957000px;}
.x10_c00345{left:107.190000px;}
.x28_c00345{left:110.278500px;}
.x54_c00345{left:112.959624px;}
.x9_c00345{left:116.796000px;}
.x2d_c00345{left:119.145000px;}
.x41_c00345{left:124.304172px;}
.x1d_c00345{left:126.214500px;}
.x32_c00345{left:128.452500px;}
.x3c_c00345{left:129.456648px;}
.x55_c00345{left:133.293012px;}
.x18_c00345{left:134.460000px;}
.x71_c00345{left:136.104660px;}
.x60_c00345{left:138.268824px;}
.x2e_c00345{left:139.405500px;}
.x11_c00345{left:146.340000px;}
.x4c_c00345{left:147.790764px;}
.x47_c00345{left:149.610444px;}
.x6a_c00345{left:151.334772px;}
.x75_c00345{left:153.036612px;}
.x52_c00345{left:154.590636px;}
.x37_c00345{left:159.327708px;}
.x5_c00345{left:161.460000px;}
.x23_c00345{left:166.783500px;}
.x42_c00345{left:169.441428px;}
.x1_c00345{left:173.610000px;}
.x12_c00345{left:175.770000px;}
.x19_c00345{left:179.550000px;}
.x6f_c00345{left:181.118736px;}
.x1e_c00345{left:182.158500px;}
.x57_c00345{left:183.218928px;}
.x4d_c00345{left:184.514448px;}
.x24_c00345{left:187.468500px;}
.x38_c00345{left:189.393528px;}
.x13_c00345{left:191.160000px;}
.x43_c00345{left:195.068472px;}
.x6e_c00345{left:196.419984px;}
.xa_c00345{left:199.111500px;}
.x29_c00345{left:201.252000px;}
.x1f_c00345{left:203.707500px;}
.x1a_c00345{left:204.930000px;}
.x72_c00345{left:211.457040px;}
.x2f_c00345{left:212.920500px;}
.x63_c00345{left:215.007540px;}
.x68_c00345{left:218.034300px;}
.x5b_c00345{left:221.794272px;}
.x33_c00345{left:223.588500px;}
.x53_c00345{left:225.337092px;}
.x4e_c00345{left:228.593076px;}
.x48_c00345{left:234.415224px;}
.x58_c00345{left:235.602732px;}
.x2a_c00345{left:237.162000px;}
.x34_c00345{left:240.723000px;}
.x30_c00345{left:243.670500px;}
.x3e_c00345{left:247.478400px;}
.x44_c00345{left:249.092136px;}
.x25_c00345{left:251.809500px;}
.xb_c00345{left:253.383000px;}
.x14_c00345{left:254.880000px;}
.x59_c00345{left:258.550200px;}
.x20_c00345{left:260.139000px;}
.x61_c00345{left:263.251848px;}
.x4f_c00345{left:265.861404px;}
.x6_c00345{left:267.570000px;}
.x66_c00345{left:270.228276px;}
.x70_c00345{left:271.358892px;}
.x39_c00345{left:273.602160px;}
.x69_c00345{left:275.594352px;}
.x5c_c00345{left:277.625304px;}
.xc_c00345{left:278.772000px;}
.x49_c00345{left:285.729780px;}
.x35_c00345{left:287.046000px;}
.x73_c00345{left:288.969180px;}
.xd_c00345{left:291.453000px;}
.x64_c00345{left:294.411672px;}
.x3a_c00345{left:295.568328px;}
.x15_c00345{left:296.730000px;}
.x67_c00345{left:299.842464px;}
.x7_c00345{left:308.070000px;}
.xe_c00345{left:309.534000px;}
.x51_c00345{left:312.093300px;}
.x56_c00345{left:315.253896px;}
.x3b_c00345{left:317.722032px;}
.x45_c00345{left:320.723616px;}
.x3f_c00345{left:322.281564px;}
.x76_c00345{left:327.780000px;}
.x26_c00345{left:341.712000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
.fs12_c00345{font-size:19.600000pt;}
.fsa_c00345{font-size:51.348115pt;}
.fsb_c00345{font-size:52.281717pt;}
.fs9_c00345{font-size:53.215319pt;}
.fs6_c00345{font-size:54.133333pt;}
.fs10_c00345{font-size:54.148921pt;}
.fs2_c00345{font-size:55.066667pt;}
.fsc_c00345{font-size:55.082524pt;}
.fs4_c00345{font-size:56.000000pt;}
.fs0_c00345{font-size:56.933333pt;}
.fs1_c00345{font-size:57.866667pt;}
.fsf_c00345{font-size:58.816932pt;}
.fsd_c00345{font-size:59.750534pt;}
.fse_c00345{font-size:60.684136pt;}
.fs3_c00345{font-size:61.600000pt;}
.fs8_c00345{font-size:62.551340pt;}
.fs5_c00345{font-size:63.466667pt;}
.fs11_c00345{font-size:63.484942pt;}
.fs7_c00345{font-size:65.352147pt;}
.y0_c00345{bottom:0.000000pt;}
.ydf_c00345{bottom:27.275125pt;}
.yde_c00345{bottom:27.692672pt;}
.ydd_c00345{bottom:28.332693pt;}
.ydc_c00345{bottom:28.465621pt;}
.ydb_c00345{bottom:28.845013pt;}
.yda_c00345{bottom:29.476843pt;}
.yd9_c00345{bottom:30.151285pt;}
.yd5_c00345{bottom:43.438421pt;}
.yd4_c00345{bottom:43.438443pt;}
.yd6_c00345{bottom:43.438496pt;}
.yd3_c00345{bottom:43.438635pt;}
.yd7_c00345{bottom:43.438709pt;}
.yd8_c00345{bottom:43.439189pt;}
.yd2_c00345{bottom:55.122357pt;}
.yd1_c00345{bottom:55.811115pt;}
.yd0_c00345{bottom:57.174581pt;}
.ycf_c00345{bottom:59.441216pt;}
.ye0_c00345{bottom:62.400000pt;}
.yce_c00345{bottom:70.558795pt;}
.ycd_c00345{bottom:71.192405pt;}
.ycc_c00345{bottom:71.847456pt;}
.ycb_c00345{bottom:71.974549pt;}
.yca_c00345{bottom:72.676779pt;}
.yc9_c00345{bottom:73.105205pt;}
.yc8_c00345{bottom:73.603275pt;}
.yc7_c00345{bottom:87.175808pt;}
.yc6_c00345{bottom:87.470965pt;}
.yc5_c00345{bottom:87.673813pt;}
.yc4_c00345{bottom:88.457419pt;}
.yc3_c00345{bottom:88.725419pt;}
.yc2_c00345{bottom:89.475136pt;}
.yc1_c00345{bottom:89.582411pt;}
.yc0_c00345{bottom:89.928811pt;}
.ybf_c00345{bottom:101.677760pt;}
.ybe_c00345{bottom:101.911765pt;}
.ybd_c00345{bottom:102.272544pt;}
.ybc_c00345{bottom:102.536971pt;}
.ybb_c00345{bottom:103.337515pt;}
.yba_c00345{bottom:103.855733pt;}
.yb9_c00345{bottom:104.066283pt;}
.yb8_c00345{bottom:104.813173pt;}
.yb7_c00345{bottom:116.144309pt;}
.yb6_c00345{bottom:116.735883pt;}
.yb5_c00345{bottom:117.554261pt;}
.yb4_c00345{bottom:118.057333pt;}
.yb3_c00345{bottom:118.562912pt;}
.yb2_c00345{bottom:119.443872pt;}
.yb1_c00345{bottom:119.704821pt;}
.yb0_c00345{bottom:120.177173pt;}
.yaf_c00345{bottom:131.750197pt;}
.yae_c00345{bottom:132.171179pt;}
.yad_c00345{bottom:133.093973pt;}
.yac_c00345{bottom:133.631125pt;}
.yab_c00345{bottom:134.646005pt;}
.yaa_c00345{bottom:134.986603pt;}
.ya9_c00345{bottom:135.539627pt;}
.ya8_c00345{bottom:145.889899pt;}
.ya7_c00345{bottom:146.345056pt;}
.ya6_c00345{bottom:147.756181pt;}
.ya5_c00345{bottom:148.306411pt;}
.ya4_c00345{bottom:148.916384pt;}
.ya3_c00345{bottom:149.458912pt;}
.ya2_c00345{bottom:149.732501pt;}
.ya1_c00345{bottom:151.145579pt;}
.ya0_c00345{bottom:160.864747pt;}
.y9f_c00345{bottom:162.173195pt;}
.y9e_c00345{bottom:162.609728pt;}
.y9d_c00345{bottom:163.737419pt;}
.y9c_c00345{bottom:165.060960pt;}
.y9b_c00345{bottom:166.392171pt;}
.y9a_c00345{bottom:166.860331pt;}
.y99_c00345{bottom:167.469493pt;}
.y98_c00345{bottom:176.335339pt;}
.y97_c00345{bottom:178.229419pt;}
.y96_c00345{bottom:179.180064pt;}
.y95_c00345{bottom:179.696085pt;}
.y94_c00345{bottom:180.674752pt;}
.y93_c00345{bottom:181.168939pt;}
.y92_c00345{bottom:181.873355pt;}
.y91_c00345{bottom:191.998155pt;}
.y90_c00345{bottom:192.382464pt;}
.y8f_c00345{bottom:192.706421pt;}
.y8e_c00345{bottom:193.601525pt;}
.y8d_c00345{bottom:194.337568pt;}
.y8c_c00345{bottom:194.610005pt;}
.y8b_c00345{bottom:195.401024pt;}
.y8a_c00345{bottom:196.767445pt;}
.y89_c00345{bottom:197.235019pt;}
.y88_c00345{bottom:207.354080pt;}
.y87_c00345{bottom:208.395723pt;}
.y86_c00345{bottom:208.704331pt;}
.y85_c00345{bottom:209.241237pt;}
.y84_c00345{bottom:210.594144pt;}
.y83_c00345{bottom:210.866677pt;}
.y82_c00345{bottom:211.572288pt;}
.y81_c00345{bottom:211.879584pt;}
.y80_c00345{bottom:223.447029pt;}
.y7f_c00345{bottom:224.285195pt;}
.y7e_c00345{bottom:224.590635pt;}
.y7d_c00345{bottom:225.289248pt;}
.y7c_c00345{bottom:225.467808pt;}
.y7b_c00345{bottom:226.347104pt;}
.y7a_c00345{bottom:226.494315pt;}
.y79_c00345{bottom:227.239456pt;}
.y78_c00345{bottom:237.665248pt;}
.y77_c00345{bottom:238.260843pt;}
.y76_c00345{bottom:238.556256pt;}
.y75_c00345{bottom:239.889845pt;}
.y74_c00345{bottom:240.254336pt;}
.y73_c00345{bottom:240.544032pt;}
.y72_c00345{bottom:241.204213pt;}
.y71_c00345{bottom:241.645301pt;}
.y70_c00345{bottom:253.138645pt;}
.y6f_c00345{bottom:253.901216pt;}
.y6e_c00345{bottom:254.173205pt;}
.y6d_c00345{bottom:254.623840pt;}
.y6c_c00345{bottom:254.895669pt;}
.y6b_c00345{bottom:255.054101pt;}
.y6a_c00345{bottom:255.763083pt;}
.y69_c00345{bottom:256.529984pt;}
.y68_c00345{bottom:268.469035pt;}
.y67_c00345{bottom:269.141280pt;}
.y66_c00345{bottom:269.521632pt;}
.y65_c00345{bottom:270.241696pt;}
.y64_c00345{bottom:270.460725pt;}
.y63_c00345{bottom:270.756821pt;}
.y62_c00345{bottom:271.414016pt;}
.y61_c00345{bottom:283.488821pt;}
.y60_c00345{bottom:284.115755pt;}
.y5f_c00345{bottom:284.319531pt;}
.y5e_c00345{bottom:284.546603pt;}
.y5d_c00345{bottom:285.056032pt;}
.y5c_c00345{bottom:285.351509pt;}
.y5b_c00345{bottom:285.480597pt;}
.y5a_c00345{bottom:286.253899pt;}
.y59_c00345{bottom:286.479221pt;}
.y58_c00345{bottom:286.778080pt;}
.y56_c00345{bottom:300.455627pt;}
.y55_c00345{bottom:300.456149pt;}
.y57_c00345{bottom:300.456213pt;}
.y54_c00345{bottom:300.456565pt;}
.y52_c00345{bottom:300.457056pt;}
.y53_c00345{bottom:300.457088pt;}
.y50_c00345{bottom:300.457291pt;}
.y51_c00345{bottom:300.457579pt;}
.y4f_c00345{bottom:313.952544pt;}
.y4e_c00345{bottom:314.907019pt;}
.y4d_c00345{bottom:315.627275pt;}
.y4c_c00345{bottom:315.799627pt;}
.y4b_c00345{bottom:315.968533pt;}
.y4a_c00345{bottom:316.569920pt;}
.y49_c00345{bottom:317.746645pt;}
.y48_c00345{bottom:329.352192pt;}
.y47_c00345{bottom:330.348981pt;}
.y46_c00345{bottom:331.433504pt;}
.y45_c00345{bottom:332.427616pt;}
.y44_c00345{bottom:333.105099pt;}
.y43_c00345{bottom:344.512853pt;}
.y42_c00345{bottom:345.473547pt;}
.y41_c00345{bottom:346.865504pt;}
.y40_c00345{bottom:347.133024pt;}
.y3f_c00345{bottom:347.275595pt;}
.y3e_c00345{bottom:347.994389pt;}
.y3d_c00345{bottom:358.650272pt;}
.y3c_c00345{bottom:359.004149pt;}
.y3b_c00345{bottom:359.355360pt;}
.y3a_c00345{bottom:359.703360pt;}
.y39_c00345{bottom:360.702219pt;}
.y38_c00345{bottom:361.183531pt;}
.y37_c00345{bottom:362.077589pt;}
.y36_c00345{bottom:362.804064pt;}
.y35_c00345{bottom:363.118720pt;}
.y34_c00345{bottom:373.163339pt;}
.y33_c00345{bottom:374.151563pt;}
.y32_c00345{bottom:374.517099pt;}
.y31_c00345{bottom:376.159755pt;}
.y30_c00345{bottom:376.546667pt;}
.y2f_c00345{bottom:377.529963pt;}
.y2e_c00345{bottom:378.486667pt;}
.y2d_c00345{bottom:389.489333pt;}
.y2c_c00345{bottom:389.636000pt;}
.y2b_c00345{bottom:390.260000pt;}
.y2a_c00345{bottom:390.616000pt;}
.y29_c00345{bottom:390.781333pt;}
.y28_c00345{bottom:391.465333pt;}
.y27_c00345{bottom:391.700000pt;}
.y26_c00345{bottom:392.405333pt;}
.y25_c00345{bottom:392.642667pt;}
.y24_c00345{bottom:404.177333pt;}
.y23_c00345{bottom:404.920000pt;}
.y22_c00345{bottom:405.118667pt;}
.y21_c00345{bottom:405.597333pt;}
.y20_c00345{bottom:406.324000pt;}
.y1f_c00345{bottom:406.809333pt;}
.y1e_c00345{bottom:407.154667pt;}
.y1d_c00345{bottom:407.762667pt;}
.y1c_c00345{bottom:419.617333pt;}
.y1b_c00345{bottom:420.656000pt;}
.y1a_c00345{bottom:421.400000pt;}
.y19_c00345{bottom:421.638667pt;}
.y18_c00345{bottom:422.413333pt;}
.y17_c00345{bottom:422.732000pt;}
.y16_c00345{bottom:423.122667pt;}
.y15_c00345{bottom:434.926667pt;}
.y14_c00345{bottom:434.998667pt;}
.y13_c00345{bottom:435.529333pt;}
.y12_c00345{bottom:435.758667pt;}
.y11_c00345{bottom:436.356000pt;}
.y10_c00345{bottom:436.572000pt;}
.yf_c00345{bottom:436.853333pt;}
.ye_c00345{bottom:437.032000pt;}
.yd_c00345{bottom:437.282667pt;}
.yc_c00345{bottom:451.336000pt;}
.yb_c00345{bottom:466.245333pt;}
.ya_c00345{bottom:479.530667pt;}
.y9_c00345{bottom:479.724000pt;}
.y8_c00345{bottom:479.858667pt;}
.y7_c00345{bottom:480.129333pt;}
.y6_c00345{bottom:480.708000pt;}
.y5_c00345{bottom:481.586667pt;}
.y4_c00345{bottom:481.874667pt;}
.y3_c00345{bottom:482.402667pt;}
.y2_c00345{bottom:496.196000pt;}
.y1_c00345{bottom:508.078667pt;}
.h14_c00345{height:19.600000pt;}
.hc_c00345{height:51.348115pt;}
.hd_c00345{height:52.281717pt;}
.hb_c00345{height:53.215319pt;}
.h8_c00345{height:54.133333pt;}
.h12_c00345{height:54.148921pt;}
.h4_c00345{height:55.066667pt;}
.he_c00345{height:55.082524pt;}
.h6_c00345{height:56.000000pt;}
.h2_c00345{height:56.933333pt;}
.h3_c00345{height:57.866667pt;}
.h11_c00345{height:58.816932pt;}
.hf_c00345{height:59.750534pt;}
.h10_c00345{height:60.684136pt;}
.h5_c00345{height:61.600000pt;}
.ha_c00345{height:62.551340pt;}
.h7_c00345{height:63.466667pt;}
.h13_c00345{height:63.484942pt;}
.h9_c00345{height:65.352147pt;}
.h0_c00345{height:545.040000pt;}
.h1_c00345{height:545.333333pt;}
.w0_c00345{width:319.200000pt;}
.w1_c00345{width:319.333333pt;}
.x0_c00345{left:0.000000pt;}
.x62_c00345{left:21.598859pt;}
.x74_c00345{left:27.239915pt;}
.x6b_c00345{left:28.166283pt;}
.x65_c00345{left:29.643829pt;}
.x5d_c00345{left:30.816341pt;}
.x40_c00345{left:32.000971pt;}
.x2b_c00345{left:33.457333pt;}
.x16_c00345{left:35.040000pt;}
.x2_c00345{left:36.720000pt;}
.x5a_c00345{left:45.838219pt;}
.x2c_c00345{left:51.688000pt;}
.x5e_c00345{left:53.077941pt;}
.x4a_c00345{left:54.573312pt;}
.x3_c00345{left:56.400000pt;}
.x17_c00345{left:59.520000pt;}
.x6c_c00345{left:60.632757pt;}
.x5f_c00345{left:63.202955pt;}
.x21_c00345{left:64.176000pt;}
.x6d_c00345{left:69.714667pt;}
.x1b_c00345{left:70.708000pt;}
.x4b_c00345{left:71.855189pt;}
.x31_c00345{left:73.209333pt;}
.x27_c00345{left:74.972000pt;}
.xf_c00345{left:77.760000pt;}
.x8_c00345{left:79.830667pt;}
.x3d_c00345{left:81.452245pt;}
.x46_c00345{left:83.293120pt;}
.x4_c00345{left:85.440000pt;}
.x50_c00345{left:86.814752pt;}
.x22_c00345{left:88.652000pt;}
.x36_c00345{left:91.976160pt;}
.x1c_c00345{left:94.184000pt;}
.x10_c00345{left:95.280000pt;}
.x28_c00345{left:98.025333pt;}
.x54_c00345{left:100.408555pt;}
.x9_c00345{left:103.818667pt;}
.x2d_c00345{left:105.906667pt;}
.x41_c00345{left:110.492597pt;}
.x1d_c00345{left:112.190667pt;}
.x32_c00345{left:114.180000pt;}
.x3c_c00345{left:115.072576pt;}
.x55_c00345{left:118.482677pt;}
.x18_c00345{left:119.520000pt;}
.x71_c00345{left:120.981920pt;}
.x60_c00345{left:122.905621pt;}
.x2e_c00345{left:123.916000pt;}
.x11_c00345{left:130.080000pt;}
.x4c_c00345{left:131.369568pt;}
.x47_c00345{left:132.987061pt;}
.x6a_c00345{left:134.519797pt;}
.x75_c00345{left:136.032544pt;}
.x52_c00345{left:137.413899pt;}
.x37_c00345{left:141.624629pt;}
.x5_c00345{left:143.520000pt;}
.x23_c00345{left:148.252000pt;}
.x42_c00345{left:150.614603pt;}
.x1_c00345{left:154.320000pt;}
.x12_c00345{left:156.240000pt;}
.x19_c00345{left:159.600000pt;}
.x6f_c00345{left:160.994432pt;}
.x1e_c00345{left:161.918667pt;}
.x57_c00345{left:162.861269pt;}
.x4d_c00345{left:164.012843pt;}
.x24_c00345{left:166.638667pt;}
.x38_c00345{left:168.349803pt;}
.x13_c00345{left:169.920000pt;}
.x43_c00345{left:173.394197pt;}
.x6e_c00345{left:174.595541pt;}
.xa_c00345{left:176.988000pt;}
.x29_c00345{left:178.890667pt;}
.x1f_c00345{left:181.073333pt;}
.x1a_c00345{left:182.160000pt;}
.x72_c00345{left:187.961813pt;}
.x2f_c00345{left:189.262667pt;}
.x63_c00345{left:191.117813pt;}
.x68_c00345{left:193.808267pt;}
.x5b_c00345{left:197.150464pt;}
.x33_c00345{left:198.745333pt;}
.x53_c00345{left:200.299637pt;}
.x4e_c00345{left:203.193845pt;}
.x48_c00345{left:208.369088pt;}
.x58_c00345{left:209.424651pt;}
.x2a_c00345{left:210.810667pt;}
.x34_c00345{left:213.976000pt;}
.x30_c00345{left:216.596000pt;}
.x3e_c00345{left:219.980800pt;}
.x44_c00345{left:221.415232pt;}
.x25_c00345{left:223.830667pt;}
.xb_c00345{left:225.229333pt;}
.x14_c00345{left:226.560000pt;}
.x59_c00345{left:229.822400pt;}
.x20_c00345{left:231.234667pt;}
.x61_c00345{left:234.001643pt;}
.x4f_c00345{left:236.321248pt;}
.x6_c00345{left:237.840000pt;}
.x66_c00345{left:240.202912pt;}
.x70_c00345{left:241.207904pt;}
.x39_c00345{left:243.201920pt;}
.x69_c00345{left:244.972757pt;}
.x5c_c00345{left:246.778048pt;}
.xc_c00345{left:247.797333pt;}
.x49_c00345{left:253.982027pt;}
.x35_c00345{left:255.152000pt;}
.x73_c00345{left:256.861493pt;}
.xd_c00345{left:259.069333pt;}
.x64_c00345{left:261.699264pt;}
.x3a_c00345{left:262.727403pt;}
.x15_c00345{left:263.760000pt;}
.x67_c00345{left:266.526635pt;}
.x7_c00345{left:273.840000pt;}
.xe_c00345{left:275.141333pt;}
.x51_c00345{left:277.416267pt;}
.x56_c00345{left:280.225685pt;}
.x3b_c00345{left:282.419584pt;}
.x45_c00345{left:285.087659pt;}
.x3f_c00345{left:286.472501pt;}
.x76_c00345{left:291.360000pt;}
.x26_c00345{left:303.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00346 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00346 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00346 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00346 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00346.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00346{transform:matrix(0.071490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071490,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.098930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098930,0.000000,0.000000,0.250000,0,0);}
.mbb_c00346{transform:matrix(0.111130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111130,0.000000,0.000000,0.250000,0,0);}
.maa_c00346{transform:matrix(0.141260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141260,0.000000,0.000000,0.250000,0,0);}
.m68_c00346{transform:matrix(0.147365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147365,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);}
.m84_c00346{transform:matrix(0.147645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.153705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153705,0.000000,0.000000,0.250000,0,0);}
.mc6_c00346{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00346{transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158105,0.000000,0.000000,0.250000,0,0);}
.m6b_c00346{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m9e_c00346{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m28_c00346{transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166590,0.000000,0.000000,0.250000,0,0);}
.m85_c00346{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.m7d_c00346{transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);}
.mc1_c00346{transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168570,0.000000,0.000000,0.250000,0,0);}
.m47_c00346{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.md6_c00346{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.m80_c00346{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mc7_c00346{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00346{transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.mde_c00346{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.172470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172470,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.m91_c00346{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.mc4_c00346{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m83_c00346{transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174365,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.mda_c00346{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);}
.md0_c00346{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m5c_c00346{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.mbf_c00346{transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m58_c00346{transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);}
.mcc_c00346{transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);}
.mdb_c00346{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00346{transform:matrix(0.178810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178810,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179295,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);}
.m98_c00346{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.md5_c00346{transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180020,0.000000,0.000000,0.250000,0,0);}
.m88_c00346{transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);}
.m77_c00346{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);}
.m66_c00346{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m42_c00346{transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);}
.ma6_c00346{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.m75_c00346{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.mce_c00346{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m97_c00346{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00346{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.mac_c00346{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m60_c00346{transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);}
.mc2_c00346{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);}
.m69_c00346{transform:matrix(0.188945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188945,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.md7_c00346{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191935,0.000000,0.000000,0.250000,0,0);}
.ma3_c00346{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.mcd_c00346{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193385,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193795,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mb1_c00346{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.m7e_c00346{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m64_c00346{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195195,0.000000,0.000000,0.250000,0,0);}
.m6d_c00346{transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);}
.m67_c00346{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);}
.m81_c00346{transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196015,0.000000,0.000000,0.250000,0,0);}
.mbc_c00346{transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);}
.m82_c00346{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00346{transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);}
.m5a_c00346{transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);}
.ma8_c00346{transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);}
.m92_c00346{transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);}
.ma9_c00346{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m48_c00346{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00346{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.mb0_c00346{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.mbd_c00346{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.mae_c00346{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.mbe_c00346{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m5f_c00346{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m9f_c00346{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.mc0_c00346{transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);}
.m8e_c00346{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00346{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00346{transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);}
.m4e_c00346{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.m38_c00346{transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205985,0.000000,0.000000,0.250000,0,0);}
.mb4_c00346{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m9c_c00346{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.mc3_c00346{transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207785,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m79_c00346{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.mc5_c00346{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.mb7_c00346{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m9d_c00346{transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);}
.ma2_c00346{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m4d_c00346{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213940,0.000000,0.000000,0.250000,0,0);}
.m4f_c00346{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.md9_c00346{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);}
.ma1_c00346{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.md8_c00346{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.m76_c00346{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.ma0_c00346{transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);}
.m59_c00346{transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216170,0.000000,0.000000,0.250000,0,0);}
.mb6_c00346{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m8b_c00346{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m93_c00346{transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);}
.m55_c00346{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m5e_c00346{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m51_c00346{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.m8c_c00346{transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);}
.m65_c00346{transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);}
.m74_c00346{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.m46_c00346{transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);}
.m62_c00346{transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);}
.m99_c00346{transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222015,0.000000,0.000000,0.250000,0,0);}
.m96_c00346{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);}
.m72_c00346{transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);}
.m53_c00346{transform:matrix(0.224630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224630,0.000000,0.000000,0.250000,0,0);}
.m86_c00346{transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);}
.m71_c00346{transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226935,0.000000,0.000000,0.250000,0,0);}
.m41_c00346{transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);}
.m56_c00346{transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);}
.m95_c00346{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);}
.ma7_c00346{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.md4_c00346{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.ma5_c00346{transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);}
.mcb_c00346{transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);}
.mb9_c00346{transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);}
.m89_c00346{transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);}
.mab_c00346{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m63_c00346{transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232360,0.000000,0.000000,0.250000,0,0);}
.m70_c00346{transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);}
.md1_c00346{transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234745,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);}
.mdf_c00346{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m6e_c00346{transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);}
.mad_c00346{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00346{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m50_c00346{transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);}
.m6f_c00346{transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);}
.m94_c00346{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m87_c00346{transform:matrix(0.242860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242860,0.000000,0.000000,0.250000,0,0);}
.m61_c00346{transform:matrix(0.243335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243335,0.000000,0.000000,0.250000,0,0);}
.m54_c00346{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.mc9_c00346{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m52_c00346{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m7c_c00346{transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);}
.m7b_c00346{transform:matrix(0.258380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258380,0.000000,0.000000,0.250000,0,0);}
.maf_c00346{transform:matrix(0.258520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258520,0.000000,0.000000,0.250000,0,0);}
.mdc_c00346{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.m9a_c00346{transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);}
.m44_c00346{transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);}
.m49_c00346{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m73_c00346{transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);}
.m2f_c00346{transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);}
.mb5_c00346{transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);}
.m57_c00346{transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);}
.m9b_c00346{transform:matrix(0.346730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00346{transform:matrix(0.430320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430320,0.000000,0.000000,0.250000,0,0);}
.mba_c00346{transform:matrix(0.518875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518875,0.000000,0.000000,0.250000,0,0);}
.md3_c00346{transform:matrix(0.539150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539150,0.000000,0.000000,0.250000,0,0);}
.mb2_c00346{transform:matrix(0.950395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950395,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls0_c00346{letter-spacing:0.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00346{word-spacing:0.000000px;}
.fc0_c00346{color:transparent;}
.fsb_c00346{font-size:55.650000px;}
.fs6_c00346{font-size:57.750000px;}
.fs9_c00346{font-size:58.800000px;}
.fsa_c00346{font-size:59.850000px;}
.fs7_c00346{font-size:60.900000px;}
.fs4_c00346{font-size:61.950000px;}
.fs0_c00346{font-size:63.000000px;}
.fs8_c00346{font-size:64.050000px;}
.fs3_c00346{font-size:65.100000px;}
.fs5_c00346{font-size:66.150000px;}
.fs2_c00346{font-size:67.200000px;}
.fs1_c00346{font-size:68.250000px;}
.y0_c00346{bottom:0.000000px;}
.ydd_c00346{bottom:31.074000px;}
.yde_c00346{bottom:31.395000px;}
.ydf_c00346{bottom:33.820500px;}
.ye0_c00346{bottom:34.402500px;}
.ye1_c00346{bottom:34.996500px;}
.yd4_c00346{bottom:50.776500px;}
.yd5_c00346{bottom:51.420000px;}
.yd6_c00346{bottom:52.354500px;}
.yd7_c00346{bottom:52.537500px;}
.yd8_c00346{bottom:52.914000px;}
.yd9_c00346{bottom:53.299500px;}
.yda_c00346{bottom:53.655000px;}
.ydb_c00346{bottom:54.073500px;}
.ydc_c00346{bottom:54.700500px;}
.yca_c00346{bottom:65.365500px;}
.ycb_c00346{bottom:66.583500px;}
.ycc_c00346{bottom:67.225500px;}
.ycd_c00346{bottom:68.124000px;}
.yce_c00346{bottom:68.586000px;}
.ycf_c00346{bottom:69.624000px;}
.yd0_c00346{bottom:71.551500px;}
.yd1_c00346{bottom:73.005000px;}
.yd2_c00346{bottom:73.552500px;}
.yd3_c00346{bottom:74.388000px;}
.yc4_c00346{bottom:81.834000px;}
.yc5_c00346{bottom:83.563500px;}
.yc6_c00346{bottom:86.449500px;}
.yc7_c00346{bottom:87.865500px;}
.yc8_c00346{bottom:88.230000px;}
.yc9_c00346{bottom:88.854000px;}
.ybb_c00346{bottom:99.102000px;}
.ybc_c00346{bottom:100.264500px;}
.ybd_c00346{bottom:100.632000px;}
.ybe_c00346{bottom:101.505000px;}
.ybf_c00346{bottom:102.985500px;}
.yc0_c00346{bottom:104.808000px;}
.yc1_c00346{bottom:105.414000px;}
.yc2_c00346{bottom:107.199000px;}
.yc3_c00346{bottom:107.766000px;}
.yb3_c00346{bottom:115.851000px;}
.yb4_c00346{bottom:117.343500px;}
.yb5_c00346{bottom:117.709500px;}
.yb6_c00346{bottom:119.704500px;}
.yb7_c00346{bottom:120.007500px;}
.yb8_c00346{bottom:120.843000px;}
.yb9_c00346{bottom:121.966500px;}
.yba_c00346{bottom:122.802000px;}
.yab_c00346{bottom:133.935000px;}
.yac_c00346{bottom:134.154000px;}
.yad_c00346{bottom:135.504000px;}
.yae_c00346{bottom:135.859500px;}
.yaf_c00346{bottom:137.349000px;}
.yb0_c00346{bottom:138.030000px;}
.yb1_c00346{bottom:139.290000px;}
.yb2_c00346{bottom:139.794000px;}
.ya6_c00346{bottom:154.453500px;}
.ya7_c00346{bottom:156.693000px;}
.ya8_c00346{bottom:157.008000px;}
.ya9_c00346{bottom:157.423500px;}
.yaa_c00346{bottom:158.038500px;}
.ya0_c00346{bottom:168.228000px;}
.ya1_c00346{bottom:170.487000px;}
.ya2_c00346{bottom:172.395000px;}
.ya3_c00346{bottom:173.290500px;}
.ya4_c00346{bottom:173.784000px;}
.ya5_c00346{bottom:175.327500px;}
.y98_c00346{bottom:186.853500px;}
.y99_c00346{bottom:187.821000px;}
.y9a_c00346{bottom:188.080500px;}
.y9b_c00346{bottom:189.259500px;}
.y9c_c00346{bottom:189.937500px;}
.y9d_c00346{bottom:190.096500px;}
.y9e_c00346{bottom:190.864500px;}
.y9f_c00346{bottom:191.296500px;}
.y90_c00346{bottom:204.130500px;}
.y91_c00346{bottom:204.891000px;}
.y92_c00346{bottom:205.228500px;}
.y93_c00346{bottom:205.782000px;}
.y94_c00346{bottom:207.108000px;}
.y95_c00346{bottom:207.484500px;}
.y96_c00346{bottom:208.537500px;}
.y97_c00346{bottom:208.750500px;}
.y8b_c00346{bottom:218.445000px;}
.y8c_c00346{bottom:220.641000px;}
.y8d_c00346{bottom:221.472000px;}
.y8e_c00346{bottom:223.888500px;}
.y8f_c00346{bottom:225.378000px;}
.y85_c00346{bottom:235.995000px;}
.y86_c00346{bottom:236.466000px;}
.y87_c00346{bottom:237.027000px;}
.y88_c00346{bottom:239.092500px;}
.y89_c00346{bottom:242.098500px;}
.y8a_c00346{bottom:242.787000px;}
.y7e_c00346{bottom:253.006500px;}
.y7f_c00346{bottom:254.469000px;}
.y80_c00346{bottom:255.178500px;}
.y81_c00346{bottom:256.545000px;}
.y82_c00346{bottom:257.337000px;}
.y83_c00346{bottom:259.101000px;}
.y84_c00346{bottom:260.442000px;}
.y74_c00346{bottom:270.822000px;}
.y75_c00346{bottom:271.138500px;}
.y76_c00346{bottom:271.830000px;}
.y77_c00346{bottom:272.332500px;}
.y78_c00346{bottom:273.217500px;}
.y79_c00346{bottom:273.793500px;}
.y7a_c00346{bottom:275.161500px;}
.y7b_c00346{bottom:275.514000px;}
.y7c_c00346{bottom:277.149000px;}
.y7d_c00346{bottom:278.041500px;}
.y6e_c00346{bottom:288.910500px;}
.y6f_c00346{bottom:289.512000px;}
.y70_c00346{bottom:290.572500px;}
.y71_c00346{bottom:291.052500px;}
.y72_c00346{bottom:292.780500px;}
.y73_c00346{bottom:294.813000px;}
.y67_c00346{bottom:305.116500px;}
.y68_c00346{bottom:306.355500px;}
.y69_c00346{bottom:308.379000px;}
.y6a_c00346{bottom:309.012000px;}
.y6b_c00346{bottom:310.984500px;}
.y6c_c00346{bottom:311.628000px;}
.y6d_c00346{bottom:312.204000px;}
.y5f_c00346{bottom:322.122000px;}
.y60_c00346{bottom:322.309500px;}
.y61_c00346{bottom:322.947000px;}
.y62_c00346{bottom:323.844000px;}
.y63_c00346{bottom:324.409500px;}
.y64_c00346{bottom:326.176500px;}
.y65_c00346{bottom:327.403500px;}
.y66_c00346{bottom:328.722000px;}
.y59_c00346{bottom:337.783500px;}
.y5a_c00346{bottom:338.368500px;}
.y5b_c00346{bottom:339.738000px;}
.y5c_c00346{bottom:340.231500px;}
.y5d_c00346{bottom:342.526500px;}
.y5e_c00346{bottom:343.083000px;}
.y54_c00346{bottom:355.600500px;}
.y55_c00346{bottom:357.033000px;}
.y56_c00346{bottom:359.337000px;}
.y57_c00346{bottom:359.791500px;}
.y58_c00346{bottom:361.035000px;}
.y4c_c00346{bottom:371.802000px;}
.y4d_c00346{bottom:373.173000px;}
.y4e_c00346{bottom:373.987500px;}
.y4f_c00346{bottom:375.721500px;}
.y50_c00346{bottom:376.860000px;}
.y51_c00346{bottom:378.105000px;}
.y52_c00346{bottom:378.693000px;}
.y53_c00346{bottom:380.103000px;}
.y44_c00346{bottom:387.462000px;}
.y45_c00346{bottom:387.648000px;}
.y46_c00346{bottom:389.527500px;}
.y47_c00346{bottom:389.907000px;}
.y48_c00346{bottom:391.966500px;}
.y49_c00346{bottom:392.553000px;}
.y4a_c00346{bottom:393.937500px;}
.y4b_c00346{bottom:394.581000px;}
.y3e_c00346{bottom:402.589500px;}
.y3f_c00346{bottom:403.500000px;}
.y40_c00346{bottom:404.224500px;}
.y41_c00346{bottom:406.308000px;}
.y42_c00346{bottom:408.366000px;}
.y43_c00346{bottom:410.100000px;}
.y38_c00346{bottom:420.136500px;}
.y39_c00346{bottom:421.615500px;}
.y3a_c00346{bottom:423.288000px;}
.y3b_c00346{bottom:426.471000px;}
.y3c_c00346{bottom:427.188000px;}
.y3d_c00346{bottom:428.383500px;}
.y33_c00346{bottom:437.689500px;}
.y34_c00346{bottom:439.360500px;}
.y35_c00346{bottom:440.563500px;}
.y36_c00346{bottom:443.724000px;}
.y37_c00346{bottom:445.609500px;}
.y2b_c00346{bottom:455.770500px;}
.y2c_c00346{bottom:456.868500px;}
.y2d_c00346{bottom:458.323500px;}
.y2e_c00346{bottom:459.687000px;}
.y2f_c00346{bottom:460.338000px;}
.y30_c00346{bottom:462.021000px;}
.y31_c00346{bottom:462.859500px;}
.y32_c00346{bottom:463.971000px;}
.y23_c00346{bottom:472.780500px;}
.y24_c00346{bottom:473.514000px;}
.y25_c00346{bottom:474.000000px;}
.y26_c00346{bottom:475.515000px;}
.y27_c00346{bottom:477.171000px;}
.y28_c00346{bottom:477.820500px;}
.y29_c00346{bottom:479.503500px;}
.y2a_c00346{bottom:479.919000px;}
.y1d_c00346{bottom:489.523500px;}
.y1e_c00346{bottom:491.860500px;}
.y1f_c00346{bottom:493.909500px;}
.y20_c00346{bottom:494.638500px;}
.y21_c00346{bottom:496.530000px;}
.y22_c00346{bottom:497.175000px;}
.y16_c00346{bottom:508.420500px;}
.y17_c00346{bottom:509.508000px;}
.y18_c00346{bottom:510.055500px;}
.y19_c00346{bottom:510.810000px;}
.y1a_c00346{bottom:511.426500px;}
.y1b_c00346{bottom:514.422000px;}
.y1c_c00346{bottom:515.856000px;}
.ye_c00346{bottom:524.619000px;}
.yf_c00346{bottom:525.778500px;}
.y10_c00346{bottom:526.233000px;}
.y11_c00346{bottom:527.679000px;}
.y12_c00346{bottom:527.938500px;}
.y13_c00346{bottom:529.474500px;}
.y14_c00346{bottom:530.884500px;}
.y15_c00346{bottom:531.192000px;}
.y7_c00346{bottom:540.280500px;}
.y8_c00346{bottom:540.948000px;}
.y9_c00346{bottom:543.778500px;}
.ya_c00346{bottom:543.993000px;}
.yb_c00346{bottom:545.338500px;}
.yc_c00346{bottom:547.453500px;}
.yd_c00346{bottom:548.235000px;}
.y2_c00346{bottom:556.491000px;}
.y3_c00346{bottom:558.120000px;}
.y4_c00346{bottom:560.455500px;}
.y5_c00346{bottom:563.266500px;}
.y6_c00346{bottom:565.117500px;}
.y1_c00346{bottom:576.858000px;}
.hd_c00346{height:55.650000px;}
.h8_c00346{height:57.750000px;}
.hb_c00346{height:58.800000px;}
.hc_c00346{height:59.850000px;}
.h9_c00346{height:60.900000px;}
.h6_c00346{height:61.950000px;}
.h2_c00346{height:63.000000px;}
.ha_c00346{height:64.050000px;}
.h5_c00346{height:65.100000px;}
.h7_c00346{height:66.150000px;}
.h4_c00346{height:67.200000px;}
.h3_c00346{height:68.250000px;}
.h0_c00346{height:613.170000px;}
.h1_c00346{height:613.500000px;}
.w0_c00346{width:359.100000px;}
.w1_c00346{width:359.250000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:19.192500px;}
.x21_c00346{left:20.286000px;}
.x2b_c00346{left:21.472500px;}
.x2e_c00346{left:22.579500px;}
.x42_c00346{left:23.587500px;}
.x48_c00346{left:24.970500px;}
.x52_c00346{left:26.296500px;}
.x5e_c00346{left:28.026000px;}
.x34_c00346{left:30.321000px;}
.x67_c00346{left:36.136500px;}
.x4e_c00346{left:37.848000px;}
.x7_c00346{left:41.712000px;}
.x57_c00346{left:44.625000px;}
.x68_c00346{left:46.116000px;}
.x1d_c00346{left:47.149500px;}
.x2f_c00346{left:49.342500px;}
.x45_c00346{left:54.580500px;}
.x22_c00346{left:58.132500px;}
.x13_c00346{left:61.266000px;}
.x3_c00346{left:64.446000px;}
.x49_c00346{left:66.292500px;}
.xc_c00346{left:68.296500px;}
.x30_c00346{left:70.657500px;}
.x29_c00346{left:73.017000px;}
.x5b_c00346{left:74.682000px;}
.x6e_c00346{left:75.852000px;}
.x53_c00346{left:80.476500px;}
.x14_c00346{left:82.347000px;}
.x4f_c00346{left:83.739000px;}
.x3f_c00346{left:85.575000px;}
.xd_c00346{left:87.205500px;}
.x5f_c00346{left:88.461000px;}
.x4c_c00346{left:91.807500px;}
.x18_c00346{left:94.348500px;}
.x5c_c00346{left:95.740500px;}
.x3a_c00346{left:98.311500px;}
.x35_c00346{left:99.952500px;}
.x43_c00346{left:101.818500px;}
.x60_c00346{left:104.656500px;}
.x72_c00346{left:105.696000px;}
.x54_c00346{left:106.728000px;}
.x23_c00346{left:108.310500px;}
.x15_c00346{left:111.382500px;}
.x2c_c00346{left:114.159000px;}
.x50_c00346{left:117.757500px;}
.x1e_c00346{left:121.251000px;}
.x69_c00346{left:123.598500px;}
.x4_c00346{left:129.307500px;}
.x5d_c00346{left:130.312500px;}
.x31_c00346{left:131.950500px;}
.x4a_c00346{left:133.732500px;}
.x8_c00346{left:136.038000px;}
.x51_c00346{left:139.924500px;}
.x9_c00346{left:143.205000px;}
.x1_c00346{left:146.340000px;}
.xe_c00346{left:147.463500px;}
.x58_c00346{left:153.175500px;}
.x24_c00346{left:155.305500px;}
.xf_c00346{left:158.253000px;}
.x19_c00346{left:160.459500px;}
.x74_c00346{left:163.972500px;}
.x76_c00346{left:166.203000px;}
.x6b_c00346{left:172.281000px;}
.x46_c00346{left:174.219000px;}
.x25_c00346{left:177.744000px;}
.x4d_c00346{left:180.144000px;}
.x1f_c00346{left:182.577000px;}
.x1a_c00346{left:183.976500px;}
.x40_c00346{left:185.716500px;}
.xa_c00346{left:188.049000px;}
.x36_c00346{left:190.291500px;}
.x6a_c00346{left:191.329500px;}
.x32_c00346{left:192.480000px;}
.x64_c00346{left:194.829000px;}
.x3b_c00346{left:197.380500px;}
.x6f_c00346{left:202.407000px;}
.x41_c00346{left:205.485000px;}
.x5_c00346{left:207.390000px;}
.x2a_c00346{left:209.400000px;}
.x66_c00346{left:210.730500px;}
.x37_c00346{left:212.028000px;}
.x44_c00346{left:213.319500px;}
.x6c_c00346{left:214.435500px;}
.x77_c00346{left:216.999000px;}
.x47_c00346{left:219.640500px;}
.x61_c00346{left:220.791000px;}
.x10_c00346{left:222.271500px;}
.x75_c00346{left:224.190000px;}
.x2d_c00346{left:228.840000px;}
.x62_c00346{left:230.761500px;}
.x26_c00346{left:235.776000px;}
.x3c_c00346{left:240.337500px;}
.x4b_c00346{left:242.019000px;}
.x33_c00346{left:243.487500px;}
.x1b_c00346{left:244.980000px;}
.x16_c00346{left:250.300500px;}
.x55_c00346{left:251.998500px;}
.x59_c00346{left:253.873500px;}
.x6d_c00346{left:256.072500px;}
.x6_c00346{left:258.828000px;}
.x3d_c00346{left:260.617500px;}
.x38_c00346{left:263.313000px;}
.x27_c00346{left:264.705000px;}
.x1c_c00346{left:265.783500px;}
.x20_c00346{left:268.993500px;}
.x70_c00346{left:274.831500px;}
.x63_c00346{left:278.784000px;}
.x11_c00346{left:281.007000px;}
.xb_c00346{left:284.589000px;}
.x39_c00346{left:287.121000px;}
.x73_c00346{left:288.139500px;}
.x71_c00346{left:291.991500px;}
.x12_c00346{left:293.826000px;}
.x56_c00346{left:301.650000px;}
.x28_c00346{left:303.028500px;}
.x17_c00346{left:305.442000px;}
.x3e_c00346{left:309.223500px;}
.x78_c00346{left:310.419000px;}
.x65_c00346{left:312.057000px;}
.x5a_c00346{left:315.925500px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.fsb_c00346{font-size:49.466667pt;}
.fs6_c00346{font-size:51.333333pt;}
.fs9_c00346{font-size:52.266667pt;}
.fsa_c00346{font-size:53.200000pt;}
.fs7_c00346{font-size:54.133333pt;}
.fs4_c00346{font-size:55.066667pt;}
.fs0_c00346{font-size:56.000000pt;}
.fs8_c00346{font-size:56.933333pt;}
.fs3_c00346{font-size:57.866667pt;}
.fs5_c00346{font-size:58.800000pt;}
.fs2_c00346{font-size:59.733333pt;}
.fs1_c00346{font-size:60.666667pt;}
.y0_c00346{bottom:0.000000pt;}
.ydd_c00346{bottom:27.621333pt;}
.yde_c00346{bottom:27.906667pt;}
.ydf_c00346{bottom:30.062667pt;}
.ye0_c00346{bottom:30.580000pt;}
.ye1_c00346{bottom:31.108000pt;}
.yd4_c00346{bottom:45.134667pt;}
.yd5_c00346{bottom:45.706667pt;}
.yd6_c00346{bottom:46.537333pt;}
.yd7_c00346{bottom:46.700000pt;}
.yd8_c00346{bottom:47.034667pt;}
.yd9_c00346{bottom:47.377333pt;}
.yda_c00346{bottom:47.693333pt;}
.ydb_c00346{bottom:48.065333pt;}
.ydc_c00346{bottom:48.622667pt;}
.yca_c00346{bottom:58.102667pt;}
.ycb_c00346{bottom:59.185333pt;}
.ycc_c00346{bottom:59.756000pt;}
.ycd_c00346{bottom:60.554667pt;}
.yce_c00346{bottom:60.965333pt;}
.ycf_c00346{bottom:61.888000pt;}
.yd0_c00346{bottom:63.601333pt;}
.yd1_c00346{bottom:64.893333pt;}
.yd2_c00346{bottom:65.380000pt;}
.yd3_c00346{bottom:66.122667pt;}
.yc4_c00346{bottom:72.741333pt;}
.yc5_c00346{bottom:74.278667pt;}
.yc6_c00346{bottom:76.844000pt;}
.yc7_c00346{bottom:78.102667pt;}
.yc8_c00346{bottom:78.426667pt;}
.yc9_c00346{bottom:78.981333pt;}
.ybb_c00346{bottom:88.090667pt;}
.ybc_c00346{bottom:89.124000pt;}
.ybd_c00346{bottom:89.450667pt;}
.ybe_c00346{bottom:90.226667pt;}
.ybf_c00346{bottom:91.542667pt;}
.yc0_c00346{bottom:93.162667pt;}
.yc1_c00346{bottom:93.701333pt;}
.yc2_c00346{bottom:95.288000pt;}
.yc3_c00346{bottom:95.792000pt;}
.yb3_c00346{bottom:102.978667pt;}
.yb4_c00346{bottom:104.305333pt;}
.yb5_c00346{bottom:104.630667pt;}
.yb6_c00346{bottom:106.404000pt;}
.yb7_c00346{bottom:106.673333pt;}
.yb8_c00346{bottom:107.416000pt;}
.yb9_c00346{bottom:108.414667pt;}
.yba_c00346{bottom:109.157333pt;}
.yab_c00346{bottom:119.053333pt;}
.yac_c00346{bottom:119.248000pt;}
.yad_c00346{bottom:120.448000pt;}
.yae_c00346{bottom:120.764000pt;}
.yaf_c00346{bottom:122.088000pt;}
.yb0_c00346{bottom:122.693333pt;}
.yb1_c00346{bottom:123.813333pt;}
.yb2_c00346{bottom:124.261333pt;}
.ya6_c00346{bottom:137.292000pt;}
.ya7_c00346{bottom:139.282667pt;}
.ya8_c00346{bottom:139.562667pt;}
.ya9_c00346{bottom:139.932000pt;}
.yaa_c00346{bottom:140.478667pt;}
.ya0_c00346{bottom:149.536000pt;}
.ya1_c00346{bottom:151.544000pt;}
.ya2_c00346{bottom:153.240000pt;}
.ya3_c00346{bottom:154.036000pt;}
.ya4_c00346{bottom:154.474667pt;}
.ya5_c00346{bottom:155.846667pt;}
.y98_c00346{bottom:166.092000pt;}
.y99_c00346{bottom:166.952000pt;}
.y9a_c00346{bottom:167.182667pt;}
.y9b_c00346{bottom:168.230667pt;}
.y9c_c00346{bottom:168.833333pt;}
.y9d_c00346{bottom:168.974667pt;}
.y9e_c00346{bottom:169.657333pt;}
.y9f_c00346{bottom:170.041333pt;}
.y90_c00346{bottom:181.449333pt;}
.y91_c00346{bottom:182.125333pt;}
.y92_c00346{bottom:182.425333pt;}
.y93_c00346{bottom:182.917333pt;}
.y94_c00346{bottom:184.096000pt;}
.y95_c00346{bottom:184.430667pt;}
.y96_c00346{bottom:185.366667pt;}
.y97_c00346{bottom:185.556000pt;}
.y8b_c00346{bottom:194.173333pt;}
.y8c_c00346{bottom:196.125333pt;}
.y8d_c00346{bottom:196.864000pt;}
.y8e_c00346{bottom:199.012000pt;}
.y8f_c00346{bottom:200.336000pt;}
.y85_c00346{bottom:209.773333pt;}
.y86_c00346{bottom:210.192000pt;}
.y87_c00346{bottom:210.690667pt;}
.y88_c00346{bottom:212.526667pt;}
.y89_c00346{bottom:215.198667pt;}
.y8a_c00346{bottom:215.810667pt;}
.y7e_c00346{bottom:224.894667pt;}
.y7f_c00346{bottom:226.194667pt;}
.y80_c00346{bottom:226.825333pt;}
.y81_c00346{bottom:228.040000pt;}
.y82_c00346{bottom:228.744000pt;}
.y83_c00346{bottom:230.312000pt;}
.y84_c00346{bottom:231.504000pt;}
.y74_c00346{bottom:240.730667pt;}
.y75_c00346{bottom:241.012000pt;}
.y76_c00346{bottom:241.626667pt;}
.y77_c00346{bottom:242.073333pt;}
.y78_c00346{bottom:242.860000pt;}
.y79_c00346{bottom:243.372000pt;}
.y7a_c00346{bottom:244.588000pt;}
.y7b_c00346{bottom:244.901333pt;}
.y7c_c00346{bottom:246.354667pt;}
.y7d_c00346{bottom:247.148000pt;}
.y6e_c00346{bottom:256.809333pt;}
.y6f_c00346{bottom:257.344000pt;}
.y70_c00346{bottom:258.286667pt;}
.y71_c00346{bottom:258.713333pt;}
.y72_c00346{bottom:260.249333pt;}
.y73_c00346{bottom:262.056000pt;}
.y67_c00346{bottom:271.214667pt;}
.y68_c00346{bottom:272.316000pt;}
.y69_c00346{bottom:274.114667pt;}
.y6a_c00346{bottom:274.677333pt;}
.y6b_c00346{bottom:276.430667pt;}
.y6c_c00346{bottom:277.002667pt;}
.y6d_c00346{bottom:277.514667pt;}
.y5f_c00346{bottom:286.330667pt;}
.y60_c00346{bottom:286.497333pt;}
.y61_c00346{bottom:287.064000pt;}
.y62_c00346{bottom:287.861333pt;}
.y63_c00346{bottom:288.364000pt;}
.y64_c00346{bottom:289.934667pt;}
.y65_c00346{bottom:291.025333pt;}
.y66_c00346{bottom:292.197333pt;}
.y59_c00346{bottom:300.252000pt;}
.y5a_c00346{bottom:300.772000pt;}
.y5b_c00346{bottom:301.989333pt;}
.y5c_c00346{bottom:302.428000pt;}
.y5d_c00346{bottom:304.468000pt;}
.y5e_c00346{bottom:304.962667pt;}
.y54_c00346{bottom:316.089333pt;}
.y55_c00346{bottom:317.362667pt;}
.y56_c00346{bottom:319.410667pt;}
.y57_c00346{bottom:319.814667pt;}
.y58_c00346{bottom:320.920000pt;}
.y4c_c00346{bottom:330.490667pt;}
.y4d_c00346{bottom:331.709333pt;}
.y4e_c00346{bottom:332.433333pt;}
.y4f_c00346{bottom:333.974667pt;}
.y50_c00346{bottom:334.986667pt;}
.y51_c00346{bottom:336.093333pt;}
.y52_c00346{bottom:336.616000pt;}
.y53_c00346{bottom:337.869333pt;}
.y44_c00346{bottom:344.410667pt;}
.y45_c00346{bottom:344.576000pt;}
.y46_c00346{bottom:346.246667pt;}
.y47_c00346{bottom:346.584000pt;}
.y48_c00346{bottom:348.414667pt;}
.y49_c00346{bottom:348.936000pt;}
.y4a_c00346{bottom:350.166667pt;}
.y4b_c00346{bottom:350.738667pt;}
.y3e_c00346{bottom:357.857333pt;}
.y3f_c00346{bottom:358.666667pt;}
.y40_c00346{bottom:359.310667pt;}
.y41_c00346{bottom:361.162667pt;}
.y42_c00346{bottom:362.992000pt;}
.y43_c00346{bottom:364.533333pt;}
.y38_c00346{bottom:373.454667pt;}
.y39_c00346{bottom:374.769333pt;}
.y3a_c00346{bottom:376.256000pt;}
.y3b_c00346{bottom:379.085333pt;}
.y3c_c00346{bottom:379.722667pt;}
.y3d_c00346{bottom:380.785333pt;}
.y33_c00346{bottom:389.057333pt;}
.y34_c00346{bottom:390.542667pt;}
.y35_c00346{bottom:391.612000pt;}
.y36_c00346{bottom:394.421333pt;}
.y37_c00346{bottom:396.097333pt;}
.y2b_c00346{bottom:405.129333pt;}
.y2c_c00346{bottom:406.105333pt;}
.y2d_c00346{bottom:407.398667pt;}
.y2e_c00346{bottom:408.610667pt;}
.y2f_c00346{bottom:409.189333pt;}
.y30_c00346{bottom:410.685333pt;}
.y31_c00346{bottom:411.430667pt;}
.y32_c00346{bottom:412.418667pt;}
.y23_c00346{bottom:420.249333pt;}
.y24_c00346{bottom:420.901333pt;}
.y25_c00346{bottom:421.333333pt;}
.y26_c00346{bottom:422.680000pt;}
.y27_c00346{bottom:424.152000pt;}
.y28_c00346{bottom:424.729333pt;}
.y29_c00346{bottom:426.225333pt;}
.y2a_c00346{bottom:426.594667pt;}
.y1d_c00346{bottom:435.132000pt;}
.y1e_c00346{bottom:437.209333pt;}
.y1f_c00346{bottom:439.030667pt;}
.y20_c00346{bottom:439.678667pt;}
.y21_c00346{bottom:441.360000pt;}
.y22_c00346{bottom:441.933333pt;}
.y16_c00346{bottom:451.929333pt;}
.y17_c00346{bottom:452.896000pt;}
.y18_c00346{bottom:453.382667pt;}
.y19_c00346{bottom:454.053333pt;}
.y1a_c00346{bottom:454.601333pt;}
.y1b_c00346{bottom:457.264000pt;}
.y1c_c00346{bottom:458.538667pt;}
.ye_c00346{bottom:466.328000pt;}
.yf_c00346{bottom:467.358667pt;}
.y10_c00346{bottom:467.762667pt;}
.y11_c00346{bottom:469.048000pt;}
.y12_c00346{bottom:469.278667pt;}
.y13_c00346{bottom:470.644000pt;}
.y14_c00346{bottom:471.897333pt;}
.y15_c00346{bottom:472.170667pt;}
.y7_c00346{bottom:480.249333pt;}
.y8_c00346{bottom:480.842667pt;}
.y9_c00346{bottom:483.358667pt;}
.ya_c00346{bottom:483.549333pt;}
.yb_c00346{bottom:484.745333pt;}
.yc_c00346{bottom:486.625333pt;}
.yd_c00346{bottom:487.320000pt;}
.y2_c00346{bottom:494.658667pt;}
.y3_c00346{bottom:496.106667pt;}
.y4_c00346{bottom:498.182667pt;}
.y5_c00346{bottom:500.681333pt;}
.y6_c00346{bottom:502.326667pt;}
.y1_c00346{bottom:512.762667pt;}
.hd_c00346{height:49.466667pt;}
.h8_c00346{height:51.333333pt;}
.hb_c00346{height:52.266667pt;}
.hc_c00346{height:53.200000pt;}
.h9_c00346{height:54.133333pt;}
.h6_c00346{height:55.066667pt;}
.h2_c00346{height:56.000000pt;}
.ha_c00346{height:56.933333pt;}
.h5_c00346{height:57.866667pt;}
.h7_c00346{height:58.800000pt;}
.h4_c00346{height:59.733333pt;}
.h3_c00346{height:60.666667pt;}
.h0_c00346{height:545.040000pt;}
.h1_c00346{height:545.333333pt;}
.w0_c00346{width:319.200000pt;}
.w1_c00346{width:319.333333pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:17.060000pt;}
.x21_c00346{left:18.032000pt;}
.x2b_c00346{left:19.086667pt;}
.x2e_c00346{left:20.070667pt;}
.x42_c00346{left:20.966667pt;}
.x48_c00346{left:22.196000pt;}
.x52_c00346{left:23.374667pt;}
.x5e_c00346{left:24.912000pt;}
.x34_c00346{left:26.952000pt;}
.x67_c00346{left:32.121333pt;}
.x4e_c00346{left:33.642667pt;}
.x7_c00346{left:37.077333pt;}
.x57_c00346{left:39.666667pt;}
.x68_c00346{left:40.992000pt;}
.x1d_c00346{left:41.910667pt;}
.x2f_c00346{left:43.860000pt;}
.x45_c00346{left:48.516000pt;}
.x22_c00346{left:51.673333pt;}
.x13_c00346{left:54.458667pt;}
.x3_c00346{left:57.285333pt;}
.x49_c00346{left:58.926667pt;}
.xc_c00346{left:60.708000pt;}
.x30_c00346{left:62.806667pt;}
.x29_c00346{left:64.904000pt;}
.x5b_c00346{left:66.384000pt;}
.x6e_c00346{left:67.424000pt;}
.x53_c00346{left:71.534667pt;}
.x14_c00346{left:73.197333pt;}
.x4f_c00346{left:74.434667pt;}
.x3f_c00346{left:76.066667pt;}
.xd_c00346{left:77.516000pt;}
.x5f_c00346{left:78.632000pt;}
.x4c_c00346{left:81.606667pt;}
.x18_c00346{left:83.865333pt;}
.x5c_c00346{left:85.102667pt;}
.x3a_c00346{left:87.388000pt;}
.x35_c00346{left:88.846667pt;}
.x43_c00346{left:90.505333pt;}
.x60_c00346{left:93.028000pt;}
.x72_c00346{left:93.952000pt;}
.x54_c00346{left:94.869333pt;}
.x23_c00346{left:96.276000pt;}
.x15_c00346{left:99.006667pt;}
.x2c_c00346{left:101.474667pt;}
.x50_c00346{left:104.673333pt;}
.x1e_c00346{left:107.778667pt;}
.x69_c00346{left:109.865333pt;}
.x4_c00346{left:114.940000pt;}
.x5d_c00346{left:115.833333pt;}
.x31_c00346{left:117.289333pt;}
.x4a_c00346{left:118.873333pt;}
.x8_c00346{left:120.922667pt;}
.x51_c00346{left:124.377333pt;}
.x9_c00346{left:127.293333pt;}
.x1_c00346{left:130.080000pt;}
.xe_c00346{left:131.078667pt;}
.x58_c00346{left:136.156000pt;}
.x24_c00346{left:138.049333pt;}
.xf_c00346{left:140.669333pt;}
.x19_c00346{left:142.630667pt;}
.x74_c00346{left:145.753333pt;}
.x76_c00346{left:147.736000pt;}
.x6b_c00346{left:153.138667pt;}
.x46_c00346{left:154.861333pt;}
.x25_c00346{left:157.994667pt;}
.x4d_c00346{left:160.128000pt;}
.x1f_c00346{left:162.290667pt;}
.x1a_c00346{left:163.534667pt;}
.x40_c00346{left:165.081333pt;}
.xa_c00346{left:167.154667pt;}
.x36_c00346{left:169.148000pt;}
.x6a_c00346{left:170.070667pt;}
.x32_c00346{left:171.093333pt;}
.x64_c00346{left:173.181333pt;}
.x3b_c00346{left:175.449333pt;}
.x6f_c00346{left:179.917333pt;}
.x41_c00346{left:182.653333pt;}
.x5_c00346{left:184.346667pt;}
.x2a_c00346{left:186.133333pt;}
.x66_c00346{left:187.316000pt;}
.x37_c00346{left:188.469333pt;}
.x44_c00346{left:189.617333pt;}
.x6c_c00346{left:190.609333pt;}
.x77_c00346{left:192.888000pt;}
.x47_c00346{left:195.236000pt;}
.x61_c00346{left:196.258667pt;}
.x10_c00346{left:197.574667pt;}
.x75_c00346{left:199.280000pt;}
.x2d_c00346{left:203.413333pt;}
.x62_c00346{left:205.121333pt;}
.x26_c00346{left:209.578667pt;}
.x3c_c00346{left:213.633333pt;}
.x4b_c00346{left:215.128000pt;}
.x33_c00346{left:216.433333pt;}
.x1b_c00346{left:217.760000pt;}
.x16_c00346{left:222.489333pt;}
.x55_c00346{left:223.998667pt;}
.x59_c00346{left:225.665333pt;}
.x6d_c00346{left:227.620000pt;}
.x6_c00346{left:230.069333pt;}
.x3d_c00346{left:231.660000pt;}
.x38_c00346{left:234.056000pt;}
.x27_c00346{left:235.293333pt;}
.x1c_c00346{left:236.252000pt;}
.x20_c00346{left:239.105333pt;}
.x70_c00346{left:244.294667pt;}
.x63_c00346{left:247.808000pt;}
.x11_c00346{left:249.784000pt;}
.xb_c00346{left:252.968000pt;}
.x39_c00346{left:255.218667pt;}
.x73_c00346{left:256.124000pt;}
.x71_c00346{left:259.548000pt;}
.x12_c00346{left:261.178667pt;}
.x56_c00346{left:268.133333pt;}
.x28_c00346{left:269.358667pt;}
.x17_c00346{left:271.504000pt;}
.x3e_c00346{left:274.865333pt;}
.x78_c00346{left:275.928000pt;}
.x65_c00346{left:277.384000pt;}
.x5a_c00346{left:280.822667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00347 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00347 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00347 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00347 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00347.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m67_c00347{transform:matrix(0.111672,0.002010,-0.004499,0.249960,0,0);-ms-transform:matrix(0.111672,0.002010,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.111672,0.002010,-0.004499,0.249960,0,0);}
.m1_c00347{transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);}
.m39_c00347{transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);}
.md4_c00347{transform:matrix(0.144182,0.002595,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144182,0.002595,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144182,0.002595,-0.004499,0.249960,0,0);}
.m8_c00347{transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.148320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148320,0.000000,0.000000,0.250000,0,0);}
.m4f_c00347{transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);}
.m9b_c00347{transform:matrix(0.153855,0.002769,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153855,0.002769,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153855,0.002769,-0.004499,0.249960,0,0);}
.ma1_c00347{transform:matrix(0.155085,0.002792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155085,0.002792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155085,0.002792,-0.004499,0.249960,0,0);}
.m54_c00347{transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);}
.m1e_c00347{transform:matrix(0.160465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160465,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.161640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161640,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m31_c00347{transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.162715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162715,0.000000,0.000000,0.250000,0,0);}
.mad_c00347{transform:matrix(0.162789,0.002930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162789,0.002930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162789,0.002930,-0.004499,0.249960,0,0);}
.m37_c00347{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.163913,0.002950,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163913,0.002950,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163913,0.002950,-0.004499,0.249960,0,0);}
.m26_c00347{transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);}
.m6a_c00347{transform:matrix(0.164963,0.002969,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164963,0.002969,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164963,0.002969,-0.004499,0.249960,0,0);}
.md8_c00347{transform:matrix(0.166723,0.003001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166723,0.003001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166723,0.003001,-0.004499,0.249960,0,0);}
.m43_c00347{transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);}
.mbe_c00347{transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166893,0.003004,-0.004499,0.249960,0,0);}
.m5b_c00347{transform:matrix(0.166953,0.003005,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166953,0.003005,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166953,0.003005,-0.004499,0.249960,0,0);}
.m9a_c00347{transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167118,0.003008,-0.004499,0.249960,0,0);}
.mce_c00347{transform:matrix(0.167333,0.003012,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167333,0.003012,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167333,0.003012,-0.004499,0.249960,0,0);}
.m3_c00347{transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00347{transform:matrix(0.168263,0.003029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168263,0.003029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168263,0.003029,-0.004499,0.249960,0,0);}
.m5e_c00347{transform:matrix(0.169168,0.003045,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169168,0.003045,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169168,0.003045,-0.004499,0.249960,0,0);}
.m2d_c00347{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00347{transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170170,0.000000,0.000000,0.250000,0,0);}
.m4a_c00347{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00347{transform:matrix(0.172072,0.003097,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172072,0.003097,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172072,0.003097,-0.004499,0.249960,0,0);}
.m32_c00347{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.m5c_c00347{transform:matrix(0.173297,0.003119,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173297,0.003119,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173297,0.003119,-0.004499,0.249960,0,0);}
.m8c_c00347{transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173452,0.003122,-0.004499,0.249960,0,0);}
.m9f_c00347{transform:matrix(0.173787,0.003128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173787,0.003128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173787,0.003128,-0.004499,0.249960,0,0);}
.m4b_c00347{transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);}
.m52_c00347{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m3a_c00347{transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);}
.mbc_c00347{transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176386,0.003175,-0.004499,0.249960,0,0);}
.m90_c00347{transform:matrix(0.176531,0.003178,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176531,0.003178,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176531,0.003178,-0.004499,0.249960,0,0);}
.m55_c00347{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m58_c00347{transform:matrix(0.178121,0.003206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178121,0.003206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178121,0.003206,-0.004499,0.249960,0,0);}
.m78_c00347{transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);}
.m19_c00347{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.m6b_c00347{transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179301,0.003227,-0.004499,0.249960,0,0);}
.m73_c00347{transform:matrix(0.180271,0.003245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180271,0.003245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180271,0.003245,-0.004499,0.249960,0,0);}
.m4_c00347{transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m69_c00347{transform:matrix(0.180616,0.003251,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180616,0.003251,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180616,0.003251,-0.004499,0.249960,0,0);}
.m6c_c00347{transform:matrix(0.181231,0.003262,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181231,0.003262,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181231,0.003262,-0.004499,0.249960,0,0);}
.md_c00347{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.mb2_c00347{transform:matrix(0.181596,0.003269,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181596,0.003269,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181596,0.003269,-0.004499,0.249960,0,0);}
.m49_c00347{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.mcd_c00347{transform:matrix(0.183140,0.003297,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183140,0.003297,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183140,0.003297,-0.004499,0.249960,0,0);}
.m12_c00347{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m60_c00347{transform:matrix(0.183390,0.003301,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183390,0.003301,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183390,0.003301,-0.004499,0.249960,0,0);}
.m5a_c00347{transform:matrix(0.183685,0.003306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183685,0.003306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183685,0.003306,-0.004499,0.249960,0,0);}
.mdd_c00347{transform:matrix(0.184190,0.003315,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184190,0.003315,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184190,0.003315,-0.004499,0.249960,0,0);}
.mca_c00347{transform:matrix(0.184220,0.003316,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184220,0.003316,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184220,0.003316,-0.004499,0.249960,0,0);}
.m8a_c00347{transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184760,0.003326,-0.004499,0.249960,0,0);}
.m33_c00347{transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.md0_c00347{transform:matrix(0.185490,0.003339,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185490,0.003339,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185490,0.003339,-0.004499,0.249960,0,0);}
.m63_c00347{transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185610,0.003341,-0.004499,0.249960,0,0);}
.m8b_c00347{transform:matrix(0.185820,0.003345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185820,0.003345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185820,0.003345,-0.004499,0.249960,0,0);}
.m6f_c00347{transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185925,0.003347,-0.004499,0.249960,0,0);}
.m80_c00347{transform:matrix(0.185935,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185935,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185935,0.003347,-0.004499,0.249960,0,0);}
.mb9_c00347{transform:matrix(0.185945,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185945,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185945,0.003347,-0.004499,0.249960,0,0);}
.m7c_c00347{transform:matrix(0.186035,0.003349,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186035,0.003349,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186035,0.003349,-0.004499,0.249960,0,0);}
.m4e_c00347{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.mdf_c00347{transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186925,0.003365,-0.004499,0.249960,0,0);}
.m53_c00347{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.m92_c00347{transform:matrix(0.187720,0.003379,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187720,0.003379,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187720,0.003379,-0.004499,0.249960,0,0);}
.m42_c00347{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m9d_c00347{transform:matrix(0.189299,0.003407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189299,0.003407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189299,0.003407,-0.004499,0.249960,0,0);}
.m16_c00347{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m59_c00347{transform:matrix(0.190004,0.003420,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190004,0.003420,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190004,0.003420,-0.004499,0.249960,0,0);}
.mcb_c00347{transform:matrix(0.190074,0.003421,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190074,0.003421,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190074,0.003421,-0.004499,0.249960,0,0);}
.mc7_c00347{transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190089,0.003422,-0.004499,0.249960,0,0);}
.m45_c00347{transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190160,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);}
.m95_c00347{transform:matrix(0.191599,0.003449,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191599,0.003449,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191599,0.003449,-0.004499,0.249960,0,0);}
.m5d_c00347{transform:matrix(0.192354,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192354,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192354,0.003462,-0.004499,0.249960,0,0);}
.m7e_c00347{transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192534,0.003466,-0.004499,0.249960,0,0);}
.m84_c00347{transform:matrix(0.192689,0.003468,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192689,0.003468,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192689,0.003468,-0.004499,0.249960,0,0);}
.m7b_c00347{transform:matrix(0.193044,0.003475,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193044,0.003475,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193044,0.003475,-0.004499,0.249960,0,0);}
.me1_c00347{transform:matrix(0.193144,0.003477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193144,0.003477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193144,0.003477,-0.004499,0.249960,0,0);}
.mc8_c00347{transform:matrix(0.193749,0.003487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193749,0.003487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193749,0.003487,-0.004499,0.249960,0,0);}
.m74_c00347{transform:matrix(0.193789,0.003488,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193789,0.003488,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193789,0.003488,-0.004499,0.249960,0,0);}
.mbd_c00347{transform:matrix(0.193919,0.003491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193919,0.003491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193919,0.003491,-0.004499,0.249960,0,0);}
.ma4_c00347{transform:matrix(0.193969,0.003491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193969,0.003491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193969,0.003491,-0.004499,0.249960,0,0);}
.m98_c00347{transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194439,0.003500,-0.004499,0.249960,0,0);}
.m8f_c00347{transform:matrix(0.194488,0.003501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194488,0.003501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194488,0.003501,-0.004499,0.249960,0,0);}
.m68_c00347{transform:matrix(0.194723,0.003505,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194723,0.003505,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194723,0.003505,-0.004499,0.249960,0,0);}
.md3_c00347{transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194943,0.003509,-0.004499,0.249960,0,0);}
.m64_c00347{transform:matrix(0.195443,0.003518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195443,0.003518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195443,0.003518,-0.004499,0.249960,0,0);}
.m93_c00347{transform:matrix(0.195518,0.003519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195518,0.003519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195518,0.003519,-0.004499,0.249960,0,0);}
.mcf_c00347{transform:matrix(0.195523,0.003519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195523,0.003519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195523,0.003519,-0.004499,0.249960,0,0);}
.md1_c00347{transform:matrix(0.197193,0.003549,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197193,0.003549,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197193,0.003549,-0.004499,0.249960,0,0);}
.m6d_c00347{transform:matrix(0.197203,0.003550,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197203,0.003550,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197203,0.003550,-0.004499,0.249960,0,0);}
.mc9_c00347{transform:matrix(0.198253,0.003569,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198253,0.003569,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198253,0.003569,-0.004499,0.249960,0,0);}
.m72_c00347{transform:matrix(0.198338,0.003570,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198338,0.003570,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198338,0.003570,-0.004499,0.249960,0,0);}
.m30_c00347{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m89_c00347{transform:matrix(0.199188,0.003585,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199188,0.003585,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199188,0.003585,-0.004499,0.249960,0,0);}
.mbb_c00347{transform:matrix(0.199288,0.003587,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199288,0.003587,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199288,0.003587,-0.004499,0.249960,0,0);}
.m8e_c00347{transform:matrix(0.199448,0.003590,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199448,0.003590,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199448,0.003590,-0.004499,0.249960,0,0);}
.m44_c00347{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.md5_c00347{transform:matrix(0.200188,0.003603,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200188,0.003603,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200188,0.003603,-0.004499,0.249960,0,0);}
.m3c_c00347{transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.mac_c00347{transform:matrix(0.202527,0.003645,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202527,0.003645,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202527,0.003645,-0.004499,0.249960,0,0);}
.mcc_c00347{transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);}
.mf_c00347{transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);}
.m8d_c00347{transform:matrix(0.204332,0.003678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204332,0.003678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204332,0.003678,-0.004499,0.249960,0,0);}
.m9c_c00347{transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);}
.m2b_c00347{transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);}
.mb5_c00347{transform:matrix(0.204692,0.003684,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204692,0.003684,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204692,0.003684,-0.004499,0.249960,0,0);}
.m1f_c00347{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.md2_c00347{transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205282,0.003695,-0.004499,0.249960,0,0);}
.mc3_c00347{transform:matrix(0.205562,0.003700,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205562,0.003700,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205562,0.003700,-0.004499,0.249960,0,0);}
.m62_c00347{transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);}
.m27_c00347{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.ma0_c00347{transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);}
.ma8_c00347{transform:matrix(0.206242,0.003712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206242,0.003712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206242,0.003712,-0.004499,0.249960,0,0);}
.m61_c00347{transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206447,0.003716,-0.004499,0.249960,0,0);}
.m87_c00347{transform:matrix(0.207036,0.003727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207036,0.003727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207036,0.003727,-0.004499,0.249960,0,0);}
.m65_c00347{transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);}
.m10_c00347{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.mdc_c00347{transform:matrix(0.208001,0.003744,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208001,0.003744,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208001,0.003744,-0.004499,0.249960,0,0);}
.ma2_c00347{transform:matrix(0.208536,0.003754,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208536,0.003754,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208536,0.003754,-0.004499,0.249960,0,0);}
.m20_c00347{transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);}
.m85_c00347{transform:matrix(0.208651,0.003756,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208651,0.003756,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208651,0.003756,-0.004499,0.249960,0,0);}
.m2c_c00347{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00347{transform:matrix(0.209071,0.003763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209071,0.003763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209071,0.003763,-0.004499,0.249960,0,0);}
.m25_c00347{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m7f_c00347{transform:matrix(0.210101,0.003782,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210101,0.003782,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210101,0.003782,-0.004499,0.249960,0,0);}
.m94_c00347{transform:matrix(0.210626,0.003791,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210626,0.003791,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210626,0.003791,-0.004499,0.249960,0,0);}
.ma6_c00347{transform:matrix(0.211356,0.003804,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211356,0.003804,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211356,0.003804,-0.004499,0.249960,0,0);}
.m38_c00347{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m7d_c00347{transform:matrix(0.212001,0.003816,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212001,0.003816,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212001,0.003816,-0.004499,0.249960,0,0);}
.mde_c00347{transform:matrix(0.212506,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212506,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212506,0.003825,-0.004499,0.249960,0,0);}
.mc2_c00347{transform:matrix(0.212671,0.003828,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212671,0.003828,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212671,0.003828,-0.004499,0.249960,0,0);}
.m41_c00347{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m66_c00347{transform:matrix(0.214035,0.003853,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214035,0.003853,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214035,0.003853,-0.004499,0.249960,0,0);}
.m22_c00347{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.ma5_c00347{transform:matrix(0.214535,0.003862,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214535,0.003862,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214535,0.003862,-0.004499,0.249960,0,0);}
.m71_c00347{transform:matrix(0.214610,0.003863,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214610,0.003863,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214610,0.003863,-0.004499,0.249960,0,0);}
.m1d_c00347{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m77_c00347{transform:matrix(0.216560,0.003898,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216560,0.003898,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216560,0.003898,-0.004499,0.249960,0,0);}
.ma9_c00347{transform:matrix(0.216600,0.003899,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216600,0.003899,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216600,0.003899,-0.004499,0.249960,0,0);}
.mb3_c00347{transform:matrix(0.217315,0.003912,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217315,0.003912,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217315,0.003912,-0.004499,0.249960,0,0);}
.m91_c00347{transform:matrix(0.217410,0.003913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217410,0.003913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217410,0.003913,-0.004499,0.249960,0,0);}
.mb6_c00347{transform:matrix(0.217500,0.003915,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217500,0.003915,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217500,0.003915,-0.004499,0.249960,0,0);}
.md6_c00347{transform:matrix(0.218775,0.003938,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218775,0.003938,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218775,0.003938,-0.004499,0.249960,0,0);}
.mb4_c00347{transform:matrix(0.219454,0.003950,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219454,0.003950,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219454,0.003950,-0.004499,0.249960,0,0);}
.md7_c00347{transform:matrix(0.219499,0.003951,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219499,0.003951,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219499,0.003951,-0.004499,0.249960,0,0);}
.m3f_c00347{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);}
.maf_c00347{transform:matrix(0.220769,0.003974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220769,0.003974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220769,0.003974,-0.004499,0.249960,0,0);}
.m5f_c00347{transform:matrix(0.221419,0.003986,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221419,0.003986,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221419,0.003986,-0.004499,0.249960,0,0);}
.m79_c00347{transform:matrix(0.221924,0.003995,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221924,0.003995,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221924,0.003995,-0.004499,0.249960,0,0);}
.m23_c00347{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m86_c00347{transform:matrix(0.223229,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223229,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223229,0.004018,-0.004499,0.249960,0,0);}
.mae_c00347{transform:matrix(0.224444,0.004040,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224444,0.004040,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224444,0.004040,-0.004499,0.249960,0,0);}
.mc4_c00347{transform:matrix(0.225069,0.004051,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225069,0.004051,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225069,0.004051,-0.004499,0.249960,0,0);}
.m1b_c00347{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.m9e_c00347{transform:matrix(0.228238,0.004108,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228238,0.004108,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228238,0.004108,-0.004499,0.249960,0,0);}
.m88_c00347{transform:matrix(0.228423,0.004112,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228423,0.004112,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228423,0.004112,-0.004499,0.249960,0,0);}
.me0_c00347{transform:matrix(0.228538,0.004114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228538,0.004114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228538,0.004114,-0.004499,0.249960,0,0);}
.m83_c00347{transform:matrix(0.229753,0.004136,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229753,0.004136,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229753,0.004136,-0.004499,0.249960,0,0);}
.m40_c00347{transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);}
.mb1_c00347{transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);}
.mdb_c00347{transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);}
.maa_c00347{transform:matrix(0.235217,0.004234,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235217,0.004234,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235217,0.004234,-0.004499,0.249960,0,0);}
.m70_c00347{transform:matrix(0.236807,0.004263,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236807,0.004263,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236807,0.004263,-0.004499,0.249960,0,0);}
.m13_c00347{transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m76_c00347{transform:matrix(0.243980,0.004392,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243980,0.004392,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243980,0.004392,-0.004499,0.249960,0,0);}
.m6e_c00347{transform:matrix(0.245055,0.004411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245055,0.004411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245055,0.004411,-0.004499,0.249960,0,0);}
.mb7_c00347{transform:matrix(0.245170,0.004413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245170,0.004413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245170,0.004413,-0.004499,0.249960,0,0);}
.ma7_c00347{transform:matrix(0.249145,0.004485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249145,0.004485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249145,0.004485,-0.004499,0.249960,0,0);}
.mc_c00347{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00347{transform:matrix(0.249440,0.004490,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249440,0.004490,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249440,0.004490,-0.004499,0.249960,0,0);}
.mc0_c00347{transform:matrix(0.250854,0.004515,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250854,0.004515,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250854,0.004515,-0.004499,0.249960,0,0);}
.ma3_c00347{transform:matrix(0.252264,0.004541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252264,0.004541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252264,0.004541,-0.004499,0.249960,0,0);}
.m47_c00347{transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);}
.m46_c00347{transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);}
.mab_c00347{transform:matrix(0.255864,0.004606,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255864,0.004606,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255864,0.004606,-0.004499,0.249960,0,0);}
.m82_c00347{transform:matrix(0.256278,0.004613,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256278,0.004613,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256278,0.004613,-0.004499,0.249960,0,0);}
.m81_c00347{transform:matrix(0.259743,0.004675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259743,0.004675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259743,0.004675,-0.004499,0.249960,0,0);}
.m97_c00347{transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);}
.mc6_c00347{transform:matrix(0.267602,0.004817,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267602,0.004817,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267602,0.004817,-0.004499,0.249960,0,0);}
.m3d_c00347{transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00347{transform:matrix(0.270976,0.004878,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270976,0.004878,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270976,0.004878,-0.004499,0.249960,0,0);}
.mc5_c00347{transform:matrix(0.276105,0.004970,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276105,0.004970,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276105,0.004970,-0.004499,0.249960,0,0);}
.m3e_c00347{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.md9_c00347{transform:matrix(0.290078,0.005221,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290078,0.005221,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290078,0.005221,-0.004499,0.249960,0,0);}
.m96_c00347{transform:matrix(0.292348,0.005262,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292348,0.005262,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292348,0.005262,-0.004499,0.249960,0,0);}
.m51_c00347{transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);}
.m75_c00347{transform:matrix(0.325447,0.005858,-0.004499,0.249960,0,0);-ms-transform:matrix(0.325447,0.005858,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.325447,0.005858,-0.004499,0.249960,0,0);}
.mda_c00347{transform:matrix(0.355027,0.006390,-0.004499,0.249960,0,0);-ms-transform:matrix(0.355027,0.006390,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.355027,0.006390,-0.004499,0.249960,0,0);}
.m56_c00347{transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);}
.mba_c00347{transform:matrix(0.534953,0.009629,-0.004499,0.249960,0,0);-ms-transform:matrix(0.534953,0.009629,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.534953,0.009629,-0.004499,0.249960,0,0);}
.m57_c00347{transform:matrix(0.652850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652850,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
.fc0_c00347{color:transparent;}
.fs7_c00347{font-size:57.750000px;}
.fs3_c00347{font-size:58.800000px;}
.fsc_c00347{font-size:58.809525px;}
.fse_c00347{font-size:59.859695px;}
.fs4_c00347{font-size:60.900000px;}
.fs11_c00347{font-size:60.909865px;}
.fs2_c00347{font-size:61.950000px;}
.fsb_c00347{font-size:61.960035px;}
.fs0_c00347{font-size:63.000000px;}
.fsf_c00347{font-size:63.010205px;}
.fs13_c00347{font-size:64.060375px;}
.fs14_c00347{font-size:65.110545px;}
.fs5_c00347{font-size:66.150000px;}
.fs9_c00347{font-size:67.200000px;}
.fsd_c00347{font-size:67.210886px;}
.fs12_c00347{font-size:68.261056px;}
.fs6_c00347{font-size:69.300000px;}
.fs10_c00347{font-size:69.311226px;}
.fs8_c00347{font-size:70.350000px;}
.fsa_c00347{font-size:72.461736px;}
.fs1_c00347{font-size:73.500000px;}
.y0_c00347{bottom:0.000000px;}
.ye2_c00347{bottom:29.715261px;}
.ye1_c00347{bottom:29.715447px;}
.ydf_c00347{bottom:29.715603px;}
.ye3_c00347{bottom:29.715810px;}
.ye0_c00347{bottom:29.716005px;}
.yde_c00347{bottom:29.716254px;}
.ydd_c00347{bottom:40.529385px;}
.ydc_c00347{bottom:40.784091px;}
.ydb_c00347{bottom:42.645687px;}
.yda_c00347{bottom:42.998802px;}
.yd9_c00347{bottom:43.500180px;}
.yd8_c00347{bottom:44.800107px;}
.yd7_c00347{bottom:45.930492px;}
.yd6_c00347{bottom:46.331286px;}
.yd5_c00347{bottom:46.939782px;}
.yd4_c00347{bottom:61.046952px;}
.yd3_c00347{bottom:61.306725px;}
.yd2_c00347{bottom:62.165679px;}
.yd1_c00347{bottom:63.079659px;}
.yd0_c00347{bottom:63.381030px;}
.ycf_c00347{bottom:63.950742px;}
.yce_c00347{bottom:79.703187px;}
.ycd_c00347{bottom:80.449962px;}
.ycc_c00347{bottom:80.790261px;}
.ycb_c00347{bottom:81.502314px;}
.yca_c00347{bottom:94.486662px;}
.yc9_c00347{bottom:94.903746px;}
.yc8_c00347{bottom:95.161443px;}
.yc7_c00347{bottom:95.830596px;}
.yc6_c00347{bottom:96.008484px;}
.yc5_c00347{bottom:96.877173px;}
.yc4_c00347{bottom:97.758222px;}
.yc3_c00347{bottom:97.974489px;}
.yba_c00347{bottom:113.668590px;}
.ybb_c00347{bottom:113.668971px;}
.ybc_c00347{bottom:113.669532px;}
.ybd_c00347{bottom:113.669580px;}
.ybe_c00347{bottom:113.669934px;}
.yc1_c00347{bottom:113.670078px;}
.yc2_c00347{bottom:113.670207px;}
.ybf_c00347{bottom:113.670309px;}
.yc0_c00347{bottom:113.670423px;}
.yb9_c00347{bottom:127.668639px;}
.yb8_c00347{bottom:128.486076px;}
.yb7_c00347{bottom:129.339915px;}
.yb6_c00347{bottom:130.591479px;}
.yb5_c00347{bottom:131.007843px;}
.yb4_c00347{bottom:131.458545px;}
.yb3_c00347{bottom:144.198807px;}
.yb2_c00347{bottom:144.589458px;}
.yb1_c00347{bottom:145.989513px;}
.yb0_c00347{bottom:146.595183px;}
.yaf_c00347{bottom:147.764868px;}
.yae_c00347{bottom:148.088847px;}
.yad_c00347{bottom:149.329026px;}
.yac_c00347{bottom:149.822859px;}
.ya5_c00347{bottom:164.519619px;}
.ya6_c00347{bottom:164.520087px;}
.ya7_c00347{bottom:164.520141px;}
.ya8_c00347{bottom:164.520330px;}
.ya9_c00347{bottom:164.520651px;}
.yaa_c00347{bottom:164.520753px;}
.yab_c00347{bottom:164.521167px;}
.ya4_c00347{bottom:178.323195px;}
.ya3_c00347{bottom:180.725247px;}
.ya2_c00347{bottom:181.160109px;}
.ya1_c00347{bottom:182.756607px;}
.ya0_c00347{bottom:183.363858px;}
.y9f_c00347{bottom:183.916878px;}
.y9e_c00347{bottom:184.928514px;}
.y9d_c00347{bottom:196.644780px;}
.y9c_c00347{bottom:197.765328px;}
.y9b_c00347{bottom:198.200418px;}
.y9a_c00347{bottom:198.906834px;}
.y99_c00347{bottom:200.777781px;}
.y98_c00347{bottom:201.276219px;}
.y97_c00347{bottom:202.481316px;}
.y96_c00347{bottom:213.448212px;}
.y95_c00347{bottom:213.752451px;}
.y94_c00347{bottom:215.082378px;}
.y93_c00347{bottom:215.507013px;}
.y92_c00347{bottom:216.514581px;}
.y91_c00347{bottom:217.141206px;}
.y90_c00347{bottom:218.491737px;}
.y8f_c00347{bottom:218.683545px;}
.y8e_c00347{bottom:231.515487px;}
.y8d_c00347{bottom:232.208820px;}
.y8c_c00347{bottom:233.114091px;}
.y8b_c00347{bottom:234.095658px;}
.y8a_c00347{bottom:234.615432px;}
.y89_c00347{bottom:247.866642px;}
.y88_c00347{bottom:248.836644px;}
.y87_c00347{bottom:249.873498px;}
.y86_c00347{bottom:251.190693px;}
.y85_c00347{bottom:251.642862px;}
.y84_c00347{bottom:252.707472px;}
.y83_c00347{bottom:264.100308px;}
.y82_c00347{bottom:265.922607px;}
.y81_c00347{bottom:266.280471px;}
.y80_c00347{bottom:267.303846px;}
.y7f_c00347{bottom:268.025568px;}
.y7e_c00347{bottom:268.217823px;}
.y7d_c00347{bottom:268.910346px;}
.y7c_c00347{bottom:281.455380px;}
.y7b_c00347{bottom:282.383856px;}
.y7a_c00347{bottom:283.664688px;}
.y79_c00347{bottom:283.945107px;}
.y78_c00347{bottom:284.697282px;}
.y77_c00347{bottom:285.840246px;}
.y76_c00347{bottom:286.197138px;}
.y75_c00347{bottom:299.251992px;}
.y74_c00347{bottom:299.527080px;}
.y73_c00347{bottom:300.292728px;}
.y72_c00347{bottom:300.925023px;}
.y71_c00347{bottom:301.612035px;}
.y70_c00347{bottom:301.911702px;}
.y6f_c00347{bottom:302.836686px;}
.y6e_c00347{bottom:303.204312px;}
.y6d_c00347{bottom:316.077198px;}
.y6c_c00347{bottom:316.419246px;}
.y6b_c00347{bottom:316.954467px;}
.y6a_c00347{bottom:318.350355px;}
.y69_c00347{bottom:319.560033px;}
.y68_c00347{bottom:319.947975px;}
.y67_c00347{bottom:334.042731px;}
.y66_c00347{bottom:334.329564px;}
.y65_c00347{bottom:335.070786px;}
.y64_c00347{bottom:335.312988px;}
.y63_c00347{bottom:335.626395px;}
.y62_c00347{bottom:336.884802px;}
.y61_c00347{bottom:337.160244px;}
.y60_c00347{bottom:337.500090px;}
.y5f_c00347{bottom:350.942373px;}
.y5e_c00347{bottom:351.164070px;}
.y5d_c00347{bottom:352.024425px;}
.y5c_c00347{bottom:352.337328px;}
.y5b_c00347{bottom:353.362788px;}
.y5a_c00347{bottom:354.427317px;}
.y59_c00347{bottom:355.054500px;}
.y58_c00347{bottom:368.929500px;}
.y57_c00347{bottom:369.793500px;}
.y56_c00347{bottom:371.799000px;}
.y55_c00347{bottom:372.163500px;}
.y54_c00347{bottom:372.874500px;}
.y53_c00347{bottom:384.882000px;}
.y52_c00347{bottom:385.089000px;}
.y51_c00347{bottom:385.525500px;}
.y50_c00347{bottom:385.971000px;}
.y4f_c00347{bottom:386.911500px;}
.y4e_c00347{bottom:387.486000px;}
.y4d_c00347{bottom:387.789000px;}
.y4c_c00347{bottom:388.263000px;}
.y4b_c00347{bottom:400.906500px;}
.y4a_c00347{bottom:401.808000px;}
.y49_c00347{bottom:402.715500px;}
.y48_c00347{bottom:403.131000px;}
.y47_c00347{bottom:404.302500px;}
.y46_c00347{bottom:405.378000px;}
.y45_c00347{bottom:405.678000px;}
.y44_c00347{bottom:406.354500px;}
.y43_c00347{bottom:417.928500px;}
.y42_c00347{bottom:418.342500px;}
.y41_c00347{bottom:419.209500px;}
.y40_c00347{bottom:419.634000px;}
.y3f_c00347{bottom:419.940000px;}
.y3e_c00347{bottom:420.753000px;}
.y3d_c00347{bottom:421.591500px;}
.y3c_c00347{bottom:422.013000px;}
.y3b_c00347{bottom:434.577000px;}
.y3a_c00347{bottom:434.842500px;}
.y39_c00347{bottom:435.568500px;}
.y38_c00347{bottom:435.783000px;}
.y37_c00347{bottom:436.429500px;}
.y36_c00347{bottom:436.665000px;}
.y35_c00347{bottom:437.691000px;}
.y34_c00347{bottom:438.751500px;}
.y33_c00347{bottom:451.143000px;}
.y32_c00347{bottom:452.784000px;}
.y31_c00347{bottom:453.940500px;}
.y30_c00347{bottom:454.396500px;}
.y2f_c00347{bottom:455.160000px;}
.y2e_c00347{bottom:456.303000px;}
.y2d_c00347{bottom:469.738500px;}
.y2c_c00347{bottom:470.491500px;}
.y2b_c00347{bottom:471.121500px;}
.y2a_c00347{bottom:471.585000px;}
.y29_c00347{bottom:472.848000px;}
.y28_c00347{bottom:474.121500px;}
.y27_c00347{bottom:484.830000px;}
.y26_c00347{bottom:487.359000px;}
.y25_c00347{bottom:489.238500px;}
.y24_c00347{bottom:490.917000px;}
.y23_c00347{bottom:491.671500px;}
.y22_c00347{bottom:502.453500px;}
.y21_c00347{bottom:504.241500px;}
.y20_c00347{bottom:504.907500px;}
.y1f_c00347{bottom:505.179000px;}
.y1e_c00347{bottom:505.357500px;}
.y1d_c00347{bottom:505.981500px;}
.y1c_c00347{bottom:521.065500px;}
.y1b_c00347{bottom:521.215500px;}
.y1a_c00347{bottom:521.412000px;}
.y19_c00347{bottom:521.997000px;}
.y18_c00347{bottom:522.949500px;}
.y17_c00347{bottom:523.317000px;}
.y16_c00347{bottom:524.136000px;}
.y15_c00347{bottom:524.344500px;}
.y14_c00347{bottom:524.610000px;}
.y13_c00347{bottom:537.166500px;}
.y12_c00347{bottom:537.409500px;}
.y11_c00347{bottom:537.817500px;}
.y10_c00347{bottom:538.834500px;}
.yf_c00347{bottom:539.179500px;}
.ye_c00347{bottom:539.592000px;}
.yd_c00347{bottom:540.561000px;}
.yc_c00347{bottom:540.754500px;}
.yb_c00347{bottom:541.350000px;}
.ya_c00347{bottom:554.250000px;}
.y9_c00347{bottom:554.667000px;}
.y8_c00347{bottom:555.070500px;}
.y7_c00347{bottom:555.934500px;}
.y6_c00347{bottom:556.668000px;}
.y5_c00347{bottom:557.109000px;}
.y4_c00347{bottom:557.685000px;}
.y3_c00347{bottom:558.013500px;}
.y2_c00347{bottom:558.360000px;}
.y1_c00347{bottom:568.623000px;}
.h9_c00347{height:57.750000px;}
.h5_c00347{height:58.800000px;}
.he_c00347{height:58.809525px;}
.h10_c00347{height:59.859695px;}
.h6_c00347{height:60.900000px;}
.h13_c00347{height:60.909865px;}
.h4_c00347{height:61.950000px;}
.hd_c00347{height:61.960035px;}
.h2_c00347{height:63.000000px;}
.h11_c00347{height:63.010205px;}
.h15_c00347{height:64.060375px;}
.h16_c00347{height:65.110545px;}
.h7_c00347{height:66.150000px;}
.hb_c00347{height:67.200000px;}
.hf_c00347{height:67.210886px;}
.h14_c00347{height:68.261056px;}
.h8_c00347{height:69.300000px;}
.h12_c00347{height:69.311226px;}
.ha_c00347{height:70.350000px;}
.hc_c00347{height:72.461736px;}
.h3_c00347{height:73.500000px;}
.h0_c00347{height:613.170000px;}
.h1_c00347{height:613.500000px;}
.w0_c00347{width:359.100000px;}
.w1_c00347{width:359.250000px;}
.x0_c00347{left:0.000000px;}
.x79_c00347{left:35.729127px;}
.x71_c00347{left:36.886329px;}
.x61_c00347{left:38.338965px;}
.x51_c00347{left:39.543600px;}
.x3b_c00347{left:40.836000px;}
.x2d_c00347{left:41.967000px;}
.xb_c00347{left:43.083000px;}
.x2_c00347{left:46.411500px;}
.x5a_c00347{left:48.322641px;}
.x72_c00347{left:53.569341px;}
.x14_c00347{left:61.185000px;}
.x6e_c00347{left:63.178254px;}
.x48_c00347{left:64.351674px;}
.x43_c00347{left:65.382000px;}
.x4e_c00347{left:66.515751px;}
.x6b_c00347{left:67.637697px;}
.x3_c00347{left:69.472500px;}
.x65_c00347{left:71.283903px;}
.x3c_c00347{left:72.427500px;}
.x1f_c00347{left:74.497500px;}
.x15_c00347{left:76.029000px;}
.x62_c00347{left:78.785862px;}
.x55_c00347{left:80.250762px;}
.xc_c00347{left:82.776000px;}
.x49_c00347{left:84.072105px;}
.x5e_c00347{left:85.275831px;}
.x1b_c00347{left:87.834000px;}
.x4_c00347{left:91.350000px;}
.x3d_c00347{left:92.677500px;}
.xd_c00347{left:95.688000px;}
.x56_c00347{left:98.622960px;}
.x1c_c00347{left:100.582500px;}
.x41_c00347{left:104.631000px;}
.x28_c00347{left:106.194000px;}
.x76_c00347{left:108.716691px;}
.x23_c00347{left:113.202000px;}
.x75_c00347{left:117.598632px;}
.x1d_c00347{left:119.965500px;}
.x73_c00347{left:121.355943px;}
.x57_c00347{left:123.743460px;}
.x6f_c00347{left:124.747707px;}
.x33_c00347{left:126.177000px;}
.x4f_c00347{left:128.157072px;}
.x5_c00347{left:129.754500px;}
.x3e_c00347{left:131.025000px;}
.x16_c00347{left:134.544000px;}
.x69_c00347{left:136.098900px;}
.x36_c00347{left:139.065000px;}
.x5b_c00347{left:142.409538px;}
.x20_c00347{left:144.439500px;}
.x29_c00347{left:148.642500px;}
.x66_c00347{left:152.296647px;}
.x6_c00347{left:159.129000px;}
.xe_c00347{left:160.272000px;}
.x1e_c00347{left:167.491500px;}
.x52_c00347{left:172.075503px;}
.x2a_c00347{left:173.937000px;}
.x1_c00347{left:175.500000px;}
.x67_c00347{left:176.870112px;}
.x6c_c00347{left:178.889718px;}
.x2e_c00347{left:181.071000px;}
.x24_c00347{left:183.399000px;}
.x77_c00347{left:184.834899px;}
.xf_c00347{left:187.741500px;}
.x63_c00347{left:189.092484px;}
.x5c_c00347{left:190.382946px;}
.x6a_c00347{left:191.828403px;}
.x3f_c00347{left:193.692000px;}
.x37_c00347{left:194.856000px;}
.x2f_c00347{left:196.731000px;}
.x34_c00347{left:200.781000px;}
.x74_c00347{left:201.839679px;}
.x5f_c00347{left:203.553294px;}
.x64_c00347{left:206.499297px;}
.x7_c00347{left:207.991500px;}
.x25_c00347{left:209.137500px;}
.x10_c00347{left:210.694500px;}
.x38_c00347{left:214.677000px;}
.x44_c00347{left:216.336000px;}
.x60_c00347{left:220.305891px;}
.x59_c00347{left:221.488080px;}
.x21_c00347{left:222.733500px;}
.x4c_c00347{left:227.167323px;}
.x17_c00347{left:228.850500px;}
.x7a_c00347{left:230.066631px;}
.x45_c00347{left:233.719500px;}
.x50_c00347{left:236.105904px;}
.x2b_c00347{left:238.215000px;}
.x30_c00347{left:239.856000px;}
.x26_c00347{left:244.138500px;}
.x68_c00347{left:249.781737px;}
.x40_c00347{left:252.522000px;}
.x31_c00347{left:254.167500px;}
.x70_c00347{left:255.178962px;}
.x78_c00347{left:256.395621px;}
.x39_c00347{left:257.880000px;}
.x4d_c00347{left:260.653038px;}
.x53_c00347{left:263.896650px;}
.x8_c00347{left:265.573500px;}
.x4a_c00347{left:266.626254px;}
.x18_c00347{left:270.658500px;}
.x42_c00347{left:273.420000px;}
.x11_c00347{left:278.535000px;}
.x46_c00347{left:281.517000px;}
.x19_c00347{left:284.737500px;}
.x27_c00347{left:286.003500px;}
.x4b_c00347{left:287.146239px;}
.x5d_c00347{left:288.422154px;}
.x6d_c00347{left:290.327739px;}
.x9_c00347{left:292.519500px;}
.x47_c00347{left:293.833500px;}
.x1a_c00347{left:295.486500px;}
.x7b_c00347{left:297.307920px;}
.x3a_c00347{left:300.790500px;}
.x32_c00347{left:302.568000px;}
.x12_c00347{left:305.730000px;}
.x58_c00347{left:308.412960px;}
.x35_c00347{left:314.440500px;}
.x54_c00347{left:318.479622px;}
.xa_c00347{left:320.307000px;}
.x13_c00347{left:321.913500px;}
.x22_c00347{left:328.089000px;}
.x2c_c00347{left:329.416500px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs7_c00347{font-size:51.333333pt;}
.fs3_c00347{font-size:52.266667pt;}
.fsc_c00347{font-size:52.275133pt;}
.fse_c00347{font-size:53.208618pt;}
.fs4_c00347{font-size:54.133333pt;}
.fs11_c00347{font-size:54.142102pt;}
.fs2_c00347{font-size:55.066667pt;}
.fsb_c00347{font-size:55.075587pt;}
.fs0_c00347{font-size:56.000000pt;}
.fsf_c00347{font-size:56.009071pt;}
.fs13_c00347{font-size:56.942556pt;}
.fs14_c00347{font-size:57.876040pt;}
.fs5_c00347{font-size:58.800000pt;}
.fs9_c00347{font-size:59.733333pt;}
.fsd_c00347{font-size:59.743009pt;}
.fs12_c00347{font-size:60.676494pt;}
.fs6_c00347{font-size:61.600000pt;}
.fs10_c00347{font-size:61.609978pt;}
.fs8_c00347{font-size:62.533333pt;}
.fsa_c00347{font-size:64.410432pt;}
.fs1_c00347{font-size:65.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.ye2_c00347{bottom:26.413565pt;}
.ye1_c00347{bottom:26.413731pt;}
.ydf_c00347{bottom:26.413869pt;}
.ye3_c00347{bottom:26.414053pt;}
.ye0_c00347{bottom:26.414227pt;}
.yde_c00347{bottom:26.414448pt;}
.ydd_c00347{bottom:36.026120pt;}
.ydc_c00347{bottom:36.252525pt;}
.ydb_c00347{bottom:37.907277pt;}
.yda_c00347{bottom:38.221157pt;}
.yd9_c00347{bottom:38.666827pt;}
.yd8_c00347{bottom:39.822317pt;}
.yd7_c00347{bottom:40.827104pt;}
.yd6_c00347{bottom:41.183365pt;}
.yd5_c00347{bottom:41.724251pt;}
.yd4_c00347{bottom:54.263957pt;}
.yd3_c00347{bottom:54.494867pt;}
.yd2_c00347{bottom:55.258381pt;}
.yd1_c00347{bottom:56.070808pt;}
.yd0_c00347{bottom:56.338693pt;}
.ycf_c00347{bottom:56.845104pt;}
.yce_c00347{bottom:70.847277pt;}
.ycd_c00347{bottom:71.511077pt;}
.ycc_c00347{bottom:71.813565pt;}
.ycb_c00347{bottom:72.446501pt;}
.yca_c00347{bottom:83.988144pt;}
.yc9_c00347{bottom:84.358885pt;}
.yc8_c00347{bottom:84.587949pt;}
.yc7_c00347{bottom:85.182752pt;}
.yc6_c00347{bottom:85.340875pt;}
.yc5_c00347{bottom:86.113043pt;}
.yc4_c00347{bottom:86.896197pt;}
.yc3_c00347{bottom:87.088435pt;}
.yba_c00347{bottom:101.038747pt;}
.ybb_c00347{bottom:101.039085pt;}
.ybc_c00347{bottom:101.039584pt;}
.ybd_c00347{bottom:101.039627pt;}
.ybe_c00347{bottom:101.039941pt;}
.yc1_c00347{bottom:101.040069pt;}
.yc2_c00347{bottom:101.040184pt;}
.ybf_c00347{bottom:101.040275pt;}
.yc0_c00347{bottom:101.040376pt;}
.yb9_c00347{bottom:113.483235pt;}
.yb8_c00347{bottom:114.209845pt;}
.yb7_c00347{bottom:114.968813pt;}
.yb6_c00347{bottom:116.081315pt;}
.yb5_c00347{bottom:116.451416pt;}
.yb4_c00347{bottom:116.852040pt;}
.yb3_c00347{bottom:128.176717pt;}
.yb2_c00347{bottom:128.523963pt;}
.yb1_c00347{bottom:129.768456pt;}
.yb0_c00347{bottom:130.306829pt;}
.yaf_c00347{bottom:131.346549pt;}
.yae_c00347{bottom:131.634531pt;}
.yad_c00347{bottom:132.736912pt;}
.yac_c00347{bottom:133.175875pt;}
.ya5_c00347{bottom:146.239661pt;}
.ya6_c00347{bottom:146.240077pt;}
.ya7_c00347{bottom:146.240125pt;}
.ya8_c00347{bottom:146.240293pt;}
.ya9_c00347{bottom:146.240579pt;}
.yaa_c00347{bottom:146.240669pt;}
.yab_c00347{bottom:146.241037pt;}
.ya4_c00347{bottom:158.509507pt;}
.ya3_c00347{bottom:160.644664pt;}
.ya2_c00347{bottom:161.031208pt;}
.ya1_c00347{bottom:162.450317pt;}
.ya0_c00347{bottom:162.990096pt;}
.y9f_c00347{bottom:163.481669pt;}
.y9e_c00347{bottom:164.380901pt;}
.y9d_c00347{bottom:174.795360pt;}
.y9c_c00347{bottom:175.791403pt;}
.y9b_c00347{bottom:176.178149pt;}
.y9a_c00347{bottom:176.806075pt;}
.y99_c00347{bottom:178.469139pt;}
.y98_c00347{bottom:178.912195pt;}
.y97_c00347{bottom:179.983392pt;}
.y96_c00347{bottom:189.731744pt;}
.y95_c00347{bottom:190.002179pt;}
.y94_c00347{bottom:191.184336pt;}
.y93_c00347{bottom:191.561789pt;}
.y92_c00347{bottom:192.457405pt;}
.y91_c00347{bottom:193.014405pt;}
.y90_c00347{bottom:194.214877pt;}
.y8f_c00347{bottom:194.385373pt;}
.y8e_c00347{bottom:205.791544pt;}
.y8d_c00347{bottom:206.407840pt;}
.y8c_c00347{bottom:207.212525pt;}
.y8b_c00347{bottom:208.085029pt;}
.y8a_c00347{bottom:208.547051pt;}
.y89_c00347{bottom:220.325904pt;}
.y88_c00347{bottom:221.188128pt;}
.y87_c00347{bottom:222.109776pt;}
.y86_c00347{bottom:223.280616pt;}
.y85_c00347{bottom:223.682544pt;}
.y84_c00347{bottom:224.628864pt;}
.y83_c00347{bottom:234.755829pt;}
.y82_c00347{bottom:236.375651pt;}
.y81_c00347{bottom:236.693752pt;}
.y80_c00347{bottom:237.603419pt;}
.y7f_c00347{bottom:238.244949pt;}
.y7e_c00347{bottom:238.415843pt;}
.y7d_c00347{bottom:239.031419pt;}
.y7c_c00347{bottom:250.182560pt;}
.y7b_c00347{bottom:251.007872pt;}
.y7a_c00347{bottom:252.146389pt;}
.y79_c00347{bottom:252.395651pt;}
.y78_c00347{bottom:253.064251pt;}
.y77_c00347{bottom:254.080219pt;}
.y76_c00347{bottom:254.397456pt;}
.y75_c00347{bottom:266.001771pt;}
.y74_c00347{bottom:266.246293pt;}
.y73_c00347{bottom:266.926869pt;}
.y72_c00347{bottom:267.488909pt;}
.y71_c00347{bottom:268.099587pt;}
.y70_c00347{bottom:268.365957pt;}
.y6f_c00347{bottom:269.188165pt;}
.y6e_c00347{bottom:269.514944pt;}
.y6d_c00347{bottom:280.957509pt;}
.y6c_c00347{bottom:281.261552pt;}
.y6b_c00347{bottom:281.737304pt;}
.y6a_c00347{bottom:282.978093pt;}
.y69_c00347{bottom:284.053363pt;}
.y68_c00347{bottom:284.398200pt;}
.y67_c00347{bottom:296.926872pt;}
.y66_c00347{bottom:297.181835pt;}
.y65_c00347{bottom:297.840699pt;}
.y64_c00347{bottom:298.055989pt;}
.y63_c00347{bottom:298.334573pt;}
.y62_c00347{bottom:299.453157pt;}
.y61_c00347{bottom:299.697995pt;}
.y60_c00347{bottom:300.000080pt;}
.y5f_c00347{bottom:311.948776pt;}
.y5e_c00347{bottom:312.145840pt;}
.y5d_c00347{bottom:312.910600pt;}
.y5c_c00347{bottom:313.188736pt;}
.y5b_c00347{bottom:314.100256pt;}
.y5a_c00347{bottom:315.046504pt;}
.y59_c00347{bottom:315.604000pt;}
.y58_c00347{bottom:327.937333pt;}
.y57_c00347{bottom:328.705333pt;}
.y56_c00347{bottom:330.488000pt;}
.y55_c00347{bottom:330.812000pt;}
.y54_c00347{bottom:331.444000pt;}
.y53_c00347{bottom:342.117333pt;}
.y52_c00347{bottom:342.301333pt;}
.y51_c00347{bottom:342.689333pt;}
.y50_c00347{bottom:343.085333pt;}
.y4f_c00347{bottom:343.921333pt;}
.y4e_c00347{bottom:344.432000pt;}
.y4d_c00347{bottom:344.701333pt;}
.y4c_c00347{bottom:345.122667pt;}
.y4b_c00347{bottom:356.361333pt;}
.y4a_c00347{bottom:357.162667pt;}
.y49_c00347{bottom:357.969333pt;}
.y48_c00347{bottom:358.338667pt;}
.y47_c00347{bottom:359.380000pt;}
.y46_c00347{bottom:360.336000pt;}
.y45_c00347{bottom:360.602667pt;}
.y44_c00347{bottom:361.204000pt;}
.y43_c00347{bottom:371.492000pt;}
.y42_c00347{bottom:371.860000pt;}
.y41_c00347{bottom:372.630667pt;}
.y40_c00347{bottom:373.008000pt;}
.y3f_c00347{bottom:373.280000pt;}
.y3e_c00347{bottom:374.002667pt;}
.y3d_c00347{bottom:374.748000pt;}
.y3c_c00347{bottom:375.122667pt;}
.y3b_c00347{bottom:386.290667pt;}
.y3a_c00347{bottom:386.526667pt;}
.y39_c00347{bottom:387.172000pt;}
.y38_c00347{bottom:387.362667pt;}
.y37_c00347{bottom:387.937333pt;}
.y36_c00347{bottom:388.146667pt;}
.y35_c00347{bottom:389.058667pt;}
.y34_c00347{bottom:390.001333pt;}
.y33_c00347{bottom:401.016000pt;}
.y32_c00347{bottom:402.474667pt;}
.y31_c00347{bottom:403.502667pt;}
.y30_c00347{bottom:403.908000pt;}
.y2f_c00347{bottom:404.586667pt;}
.y2e_c00347{bottom:405.602667pt;}
.y2d_c00347{bottom:417.545333pt;}
.y2c_c00347{bottom:418.214667pt;}
.y2b_c00347{bottom:418.774667pt;}
.y2a_c00347{bottom:419.186667pt;}
.y29_c00347{bottom:420.309333pt;}
.y28_c00347{bottom:421.441333pt;}
.y27_c00347{bottom:430.960000pt;}
.y26_c00347{bottom:433.208000pt;}
.y25_c00347{bottom:434.878667pt;}
.y24_c00347{bottom:436.370667pt;}
.y23_c00347{bottom:437.041333pt;}
.y22_c00347{bottom:446.625333pt;}
.y21_c00347{bottom:448.214667pt;}
.y20_c00347{bottom:448.806667pt;}
.y1f_c00347{bottom:449.048000pt;}
.y1e_c00347{bottom:449.206667pt;}
.y1d_c00347{bottom:449.761333pt;}
.y1c_c00347{bottom:463.169333pt;}
.y1b_c00347{bottom:463.302667pt;}
.y1a_c00347{bottom:463.477333pt;}
.y19_c00347{bottom:463.997333pt;}
.y18_c00347{bottom:464.844000pt;}
.y17_c00347{bottom:465.170667pt;}
.y16_c00347{bottom:465.898667pt;}
.y15_c00347{bottom:466.084000pt;}
.y14_c00347{bottom:466.320000pt;}
.y13_c00347{bottom:477.481333pt;}
.y12_c00347{bottom:477.697333pt;}
.y11_c00347{bottom:478.060000pt;}
.y10_c00347{bottom:478.964000pt;}
.yf_c00347{bottom:479.270667pt;}
.ye_c00347{bottom:479.637333pt;}
.yd_c00347{bottom:480.498667pt;}
.yc_c00347{bottom:480.670667pt;}
.yb_c00347{bottom:481.200000pt;}
.ya_c00347{bottom:492.666667pt;}
.y9_c00347{bottom:493.037333pt;}
.y8_c00347{bottom:493.396000pt;}
.y7_c00347{bottom:494.164000pt;}
.y6_c00347{bottom:494.816000pt;}
.y5_c00347{bottom:495.208000pt;}
.y4_c00347{bottom:495.720000pt;}
.y3_c00347{bottom:496.012000pt;}
.y2_c00347{bottom:496.320000pt;}
.y1_c00347{bottom:505.442667pt;}
.h9_c00347{height:51.333333pt;}
.h5_c00347{height:52.266667pt;}
.he_c00347{height:52.275133pt;}
.h10_c00347{height:53.208618pt;}
.h6_c00347{height:54.133333pt;}
.h13_c00347{height:54.142102pt;}
.h4_c00347{height:55.066667pt;}
.hd_c00347{height:55.075587pt;}
.h2_c00347{height:56.000000pt;}
.h11_c00347{height:56.009071pt;}
.h15_c00347{height:56.942556pt;}
.h16_c00347{height:57.876040pt;}
.h7_c00347{height:58.800000pt;}
.hb_c00347{height:59.733333pt;}
.hf_c00347{height:59.743009pt;}
.h14_c00347{height:60.676494pt;}
.h8_c00347{height:61.600000pt;}
.h12_c00347{height:61.609978pt;}
.ha_c00347{height:62.533333pt;}
.hc_c00347{height:64.410432pt;}
.h3_c00347{height:65.333333pt;}
.h0_c00347{height:545.040000pt;}
.h1_c00347{height:545.333333pt;}
.w0_c00347{width:319.200000pt;}
.w1_c00347{width:319.333333pt;}
.x0_c00347{left:0.000000pt;}
.x79_c00347{left:31.759224pt;}
.x71_c00347{left:32.787848pt;}
.x61_c00347{left:34.079080pt;}
.x51_c00347{left:35.149867pt;}
.x3b_c00347{left:36.298667pt;}
.x2d_c00347{left:37.304000pt;}
.xb_c00347{left:38.296000pt;}
.x2_c00347{left:41.254667pt;}
.x5a_c00347{left:42.953459pt;}
.x72_c00347{left:47.617192pt;}
.x14_c00347{left:54.386667pt;}
.x6e_c00347{left:56.158448pt;}
.x48_c00347{left:57.201488pt;}
.x43_c00347{left:58.117333pt;}
.x4e_c00347{left:59.125112pt;}
.x6b_c00347{left:60.122397pt;}
.x3_c00347{left:61.753333pt;}
.x65_c00347{left:63.363469pt;}
.x3c_c00347{left:64.380000pt;}
.x1f_c00347{left:66.220000pt;}
.x15_c00347{left:67.581333pt;}
.x62_c00347{left:70.031877pt;}
.x55_c00347{left:71.334011pt;}
.xc_c00347{left:73.578667pt;}
.x49_c00347{left:74.730760pt;}
.x5e_c00347{left:75.800739pt;}
.x1b_c00347{left:78.074667pt;}
.x4_c00347{left:81.200000pt;}
.x3d_c00347{left:82.380000pt;}
.xd_c00347{left:85.056000pt;}
.x56_c00347{left:87.664853pt;}
.x1c_c00347{left:89.406667pt;}
.x41_c00347{left:93.005333pt;}
.x28_c00347{left:94.394667pt;}
.x76_c00347{left:96.637059pt;}
.x23_c00347{left:100.624000pt;}
.x75_c00347{left:104.532117pt;}
.x1d_c00347{left:106.636000pt;}
.x73_c00347{left:107.871949pt;}
.x57_c00347{left:109.994187pt;}
.x6f_c00347{left:110.886851pt;}
.x33_c00347{left:112.157333pt;}
.x4f_c00347{left:113.917397pt;}
.x5_c00347{left:115.337333pt;}
.x3e_c00347{left:116.466667pt;}
.x16_c00347{left:119.594667pt;}
.x69_c00347{left:120.976800pt;}
.x36_c00347{left:123.613333pt;}
.x5b_c00347{left:126.586256pt;}
.x20_c00347{left:128.390667pt;}
.x29_c00347{left:132.126667pt;}
.x66_c00347{left:135.374797pt;}
.x6_c00347{left:141.448000pt;}
.xe_c00347{left:142.464000pt;}
.x1e_c00347{left:148.881333pt;}
.x52_c00347{left:152.956003pt;}
.x2a_c00347{left:154.610667pt;}
.x1_c00347{left:156.000000pt;}
.x67_c00347{left:157.217877pt;}
.x6c_c00347{left:159.013083pt;}
.x2e_c00347{left:160.952000pt;}
.x24_c00347{left:163.021333pt;}
.x77_c00347{left:164.297688pt;}
.xf_c00347{left:166.881333pt;}
.x63_c00347{left:168.082208pt;}
.x5c_c00347{left:169.229285pt;}
.x6a_c00347{left:170.514136pt;}
.x3f_c00347{left:172.170667pt;}
.x37_c00347{left:173.205333pt;}
.x2f_c00347{left:174.872000pt;}
.x34_c00347{left:178.472000pt;}
.x74_c00347{left:179.413048pt;}
.x5f_c00347{left:180.936261pt;}
.x64_c00347{left:183.554931pt;}
.x7_c00347{left:184.881333pt;}
.x25_c00347{left:185.900000pt;}
.x10_c00347{left:187.284000pt;}
.x38_c00347{left:190.824000pt;}
.x44_c00347{left:192.298667pt;}
.x60_c00347{left:195.827459pt;}
.x59_c00347{left:196.878293pt;}
.x21_c00347{left:197.985333pt;}
.x4c_c00347{left:201.926509pt;}
.x17_c00347{left:203.422667pt;}
.x7a_c00347{left:204.503672pt;}
.x45_c00347{left:207.750667pt;}
.x50_c00347{left:209.871915pt;}
.x2b_c00347{left:211.746667pt;}
.x30_c00347{left:213.205333pt;}
.x26_c00347{left:217.012000pt;}
.x68_c00347{left:222.028211pt;}
.x40_c00347{left:224.464000pt;}
.x31_c00347{left:225.926667pt;}
.x70_c00347{left:226.825744pt;}
.x78_c00347{left:227.907219pt;}
.x39_c00347{left:229.226667pt;}
.x4d_c00347{left:231.691589pt;}
.x53_c00347{left:234.574800pt;}
.x8_c00347{left:236.065333pt;}
.x4a_c00347{left:237.001115pt;}
.x18_c00347{left:240.585333pt;}
.x42_c00347{left:243.040000pt;}
.x11_c00347{left:247.586667pt;}
.x46_c00347{left:250.237333pt;}
.x19_c00347{left:253.100000pt;}
.x27_c00347{left:254.225333pt;}
.x4b_c00347{left:255.241101pt;}
.x5d_c00347{left:256.375248pt;}
.x6d_c00347{left:258.069101pt;}
.x9_c00347{left:260.017333pt;}
.x47_c00347{left:261.185333pt;}
.x1a_c00347{left:262.654667pt;}
.x7b_c00347{left:264.273707pt;}
.x3a_c00347{left:267.369333pt;}
.x32_c00347{left:268.949333pt;}
.x12_c00347{left:271.760000pt;}
.x58_c00347{left:274.144853pt;}
.x35_c00347{left:279.502667pt;}
.x54_c00347{left:283.092997pt;}
.xa_c00347{left:284.717333pt;}
.x13_c00347{left:286.145333pt;}
.x22_c00347{left:291.634667pt;}
.x2c_c00347{left:292.814667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00348 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00348 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00348 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00348 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00348.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.011358,-0.000409,0.009003,0.249838,0,0);-ms-transform:matrix(0.011358,-0.000409,0.009003,0.249838,0,0);-webkit-transform:matrix(0.011358,-0.000409,0.009003,0.249838,0,0);}
.m5f_c00348{transform:matrix(0.086566,-0.001818,0.005249,0.249945,0,0);-ms-transform:matrix(0.086566,-0.001818,0.005249,0.249945,0,0);-webkit-transform:matrix(0.086566,-0.001818,0.005249,0.249945,0,0);}
.m24_c00348{transform:matrix(0.139709,-0.005035,0.009003,0.249838,0,0);-ms-transform:matrix(0.139709,-0.005035,0.009003,0.249838,0,0);-webkit-transform:matrix(0.139709,-0.005035,0.009003,0.249838,0,0);}
.m21_c00348{transform:matrix(0.142632,-0.005140,0.009003,0.249838,0,0);-ms-transform:matrix(0.142632,-0.005140,0.009003,0.249838,0,0);-webkit-transform:matrix(0.142632,-0.005140,0.009003,0.249838,0,0);}
.mad_c00348{transform:matrix(0.144502,-0.006075,0.010501,0.249779,0,0);-ms-transform:matrix(0.144502,-0.006075,0.010501,0.249779,0,0);-webkit-transform:matrix(0.144502,-0.006075,0.010501,0.249779,0,0);}
.m20_c00348{transform:matrix(0.144841,-0.005219,0.009003,0.249838,0,0);-ms-transform:matrix(0.144841,-0.005219,0.009003,0.249838,0,0);-webkit-transform:matrix(0.144841,-0.005219,0.009003,0.249838,0,0);}
.m48_c00348{transform:matrix(0.147494,-0.005315,0.009003,0.249838,0,0);-ms-transform:matrix(0.147494,-0.005315,0.009003,0.249838,0,0);-webkit-transform:matrix(0.147494,-0.005315,0.009003,0.249838,0,0);}
.m78_c00348{transform:matrix(0.148077,-0.003110,0.005249,0.249945,0,0);-ms-transform:matrix(0.148077,-0.003110,0.005249,0.249945,0,0);-webkit-transform:matrix(0.148077,-0.003110,0.005249,0.249945,0,0);}
.m40_c00348{transform:matrix(0.152721,-0.005503,0.009003,0.249838,0,0);-ms-transform:matrix(0.152721,-0.005503,0.009003,0.249838,0,0);-webkit-transform:matrix(0.152721,-0.005503,0.009003,0.249838,0,0);}
.m26_c00348{transform:matrix(0.153600,-0.005535,0.009003,0.249838,0,0);-ms-transform:matrix(0.153600,-0.005535,0.009003,0.249838,0,0);-webkit-transform:matrix(0.153600,-0.005535,0.009003,0.249838,0,0);}
.mb0_c00348{transform:matrix(0.154224,-0.006484,0.010501,0.249779,0,0);-ms-transform:matrix(0.154224,-0.006484,0.010501,0.249779,0,0);-webkit-transform:matrix(0.154224,-0.006484,0.010501,0.249779,0,0);}
.m9c_c00348{transform:matrix(0.154742,-0.006041,0.009752,0.249810,0,0);-ms-transform:matrix(0.154742,-0.006041,0.009752,0.249810,0,0);-webkit-transform:matrix(0.154742,-0.006041,0.009752,0.249810,0,0);}
.m88_c00348{transform:matrix(0.156520,-0.003287,0.005249,0.249945,0,0);-ms-transform:matrix(0.156520,-0.003287,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156520,-0.003287,0.005249,0.249945,0,0);}
.m1f_c00348{transform:matrix(0.156738,-0.005648,0.009003,0.249838,0,0);-ms-transform:matrix(0.156738,-0.005648,0.009003,0.249838,0,0);-webkit-transform:matrix(0.156738,-0.005648,0.009003,0.249838,0,0);}
.mf4_c00348{transform:matrix(0.159018,-0.004612,0.007247,0.249895,0,0);-ms-transform:matrix(0.159018,-0.004612,0.007247,0.249895,0,0);-webkit-transform:matrix(0.159018,-0.004612,0.007247,0.249895,0,0);}
.mb1_c00348{transform:matrix(0.159279,-0.006696,0.010501,0.249779,0,0);-ms-transform:matrix(0.159279,-0.006696,0.010501,0.249779,0,0);-webkit-transform:matrix(0.159279,-0.006696,0.010501,0.249779,0,0);}
.m17_c00348{transform:matrix(0.159536,-0.005749,0.009003,0.249838,0,0);-ms-transform:matrix(0.159536,-0.005749,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159536,-0.005749,0.009003,0.249838,0,0);}
.m92_c00348{transform:matrix(0.160056,-0.003521,0.005499,0.249940,0,0);-ms-transform:matrix(0.160056,-0.003521,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160056,-0.003521,0.005499,0.249940,0,0);}
.m57_c00348{transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);}
.mcc_c00348{transform:matrix(0.164270,-0.006906,0.010501,0.249779,0,0);-ms-transform:matrix(0.164270,-0.006906,0.010501,0.249779,0,0);-webkit-transform:matrix(0.164270,-0.006906,0.010501,0.249779,0,0);}
.m6c_c00348{transform:matrix(0.164339,-0.003451,0.005249,0.249945,0,0);-ms-transform:matrix(0.164339,-0.003451,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164339,-0.003451,0.005249,0.249945,0,0);}
.mcd_c00348{transform:matrix(0.164520,-0.006917,0.010501,0.249779,0,0);-ms-transform:matrix(0.164520,-0.006917,0.010501,0.249779,0,0);-webkit-transform:matrix(0.164520,-0.006917,0.010501,0.249779,0,0);}
.m9b_c00348{transform:matrix(0.165059,-0.006444,0.009752,0.249810,0,0);-ms-transform:matrix(0.165059,-0.006444,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165059,-0.006444,0.009752,0.249810,0,0);}
.m79_c00348{transform:matrix(0.165633,-0.003478,0.005249,0.249945,0,0);-ms-transform:matrix(0.165633,-0.003478,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165633,-0.003478,0.005249,0.249945,0,0);}
.mb_c00348{transform:matrix(0.166132,-0.005987,0.009003,0.249838,0,0);-ms-transform:matrix(0.166132,-0.005987,0.009003,0.249838,0,0);-webkit-transform:matrix(0.166132,-0.005987,0.009003,0.249838,0,0);}
.mbc_c00348{transform:matrix(0.166573,-0.007003,0.010501,0.249779,0,0);-ms-transform:matrix(0.166573,-0.007003,0.010501,0.249779,0,0);-webkit-transform:matrix(0.166573,-0.007003,0.010501,0.249779,0,0);}
.mf_c00348{transform:matrix(0.167991,-0.006054,0.009003,0.249838,0,0);-ms-transform:matrix(0.167991,-0.006054,0.009003,0.249838,0,0);-webkit-transform:matrix(0.167991,-0.006054,0.009003,0.249838,0,0);}
.m1e_c00348{transform:matrix(0.168181,-0.006061,0.009003,0.249838,0,0);-ms-transform:matrix(0.168181,-0.006061,0.009003,0.249838,0,0);-webkit-transform:matrix(0.168181,-0.006061,0.009003,0.249838,0,0);}
.mce_c00348{transform:matrix(0.168796,-0.007097,0.010501,0.249779,0,0);-ms-transform:matrix(0.168796,-0.007097,0.010501,0.249779,0,0);-webkit-transform:matrix(0.168796,-0.007097,0.010501,0.249779,0,0);}
.m7d_c00348{transform:matrix(0.169958,-0.003569,0.005249,0.249945,0,0);-ms-transform:matrix(0.169958,-0.003569,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169958,-0.003569,0.005249,0.249945,0,0);}
.mea_c00348{transform:matrix(0.171063,-0.004961,0.007247,0.249895,0,0);-ms-transform:matrix(0.171063,-0.004961,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171063,-0.004961,0.007247,0.249895,0,0);}
.m69_c00348{transform:matrix(0.172532,-0.003623,0.005249,0.249945,0,0);-ms-transform:matrix(0.172532,-0.003623,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172532,-0.003623,0.005249,0.249945,0,0);}
.m25_c00348{transform:matrix(0.173667,-0.006258,0.009003,0.249838,0,0);-ms-transform:matrix(0.173667,-0.006258,0.009003,0.249838,0,0);-webkit-transform:matrix(0.173667,-0.006258,0.009003,0.249838,0,0);}
.m2a_c00348{transform:matrix(0.173962,-0.006269,0.009003,0.249838,0,0);-ms-transform:matrix(0.173962,-0.006269,0.009003,0.249838,0,0);-webkit-transform:matrix(0.173962,-0.006269,0.009003,0.249838,0,0);}
.m33_c00348{transform:matrix(0.174107,-0.006274,0.009003,0.249838,0,0);-ms-transform:matrix(0.174107,-0.006274,0.009003,0.249838,0,0);-webkit-transform:matrix(0.174107,-0.006274,0.009003,0.249838,0,0);}
.md3_c00348{transform:matrix(0.174226,-0.007325,0.010501,0.249779,0,0);-ms-transform:matrix(0.174226,-0.007325,0.010501,0.249779,0,0);-webkit-transform:matrix(0.174226,-0.007325,0.010501,0.249779,0,0);}
.m6f_c00348{transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);-ms-transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174447,-0.003663,0.005249,0.249945,0,0);}
.m23_c00348{transform:matrix(0.175081,-0.006309,0.009003,0.249838,0,0);-ms-transform:matrix(0.175081,-0.006309,0.009003,0.249838,0,0);-webkit-transform:matrix(0.175081,-0.006309,0.009003,0.249838,0,0);}
.m77_c00348{transform:matrix(0.175761,-0.003691,0.005249,0.249945,0,0);-ms-transform:matrix(0.175761,-0.003691,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175761,-0.003691,0.005249,0.249945,0,0);}
.m8a_c00348{transform:matrix(0.175772,-0.009149,0.012995,0.249662,0,0);-ms-transform:matrix(0.175772,-0.009149,0.012995,0.249662,0,0);-webkit-transform:matrix(0.175772,-0.009149,0.012995,0.249662,0,0);}
.m41_c00348{transform:matrix(0.176126,-0.006347,0.009003,0.249838,0,0);-ms-transform:matrix(0.176126,-0.006347,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176126,-0.006347,0.009003,0.249838,0,0);}
.m45_c00348{transform:matrix(0.176475,-0.006359,0.009003,0.249838,0,0);-ms-transform:matrix(0.176475,-0.006359,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176475,-0.006359,0.009003,0.249838,0,0);}
.m22_c00348{transform:matrix(0.176685,-0.006367,0.009003,0.249838,0,0);-ms-transform:matrix(0.176685,-0.006367,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176685,-0.006367,0.009003,0.249838,0,0);}
.m4b_c00348{transform:matrix(0.177030,-0.006379,0.009003,0.249838,0,0);-ms-transform:matrix(0.177030,-0.006379,0.009003,0.249838,0,0);-webkit-transform:matrix(0.177030,-0.006379,0.009003,0.249838,0,0);}
.mc7_c00348{transform:matrix(0.177433,-0.007460,0.010501,0.249779,0,0);-ms-transform:matrix(0.177433,-0.007460,0.010501,0.249779,0,0);-webkit-transform:matrix(0.177433,-0.007460,0.010501,0.249779,0,0);}
.mde_c00348{transform:matrix(0.178093,-0.007487,0.010501,0.249779,0,0);-ms-transform:matrix(0.178093,-0.007487,0.010501,0.249779,0,0);-webkit-transform:matrix(0.178093,-0.007487,0.010501,0.249779,0,0);}
.m47_c00348{transform:matrix(0.178299,-0.006425,0.009003,0.249838,0,0);-ms-transform:matrix(0.178299,-0.006425,0.009003,0.249838,0,0);-webkit-transform:matrix(0.178299,-0.006425,0.009003,0.249838,0,0);}
.m9d_c00348{transform:matrix(0.178612,-0.007509,0.010501,0.249779,0,0);-ms-transform:matrix(0.178612,-0.007509,0.010501,0.249779,0,0);-webkit-transform:matrix(0.178612,-0.007509,0.010501,0.249779,0,0);}
.m49_c00348{transform:matrix(0.178804,-0.006443,0.009003,0.249838,0,0);-ms-transform:matrix(0.178804,-0.006443,0.009003,0.249838,0,0);-webkit-transform:matrix(0.178804,-0.006443,0.009003,0.249838,0,0);}
.m52_c00348{transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179370,0.000000,0.000000,0.250000,0,0);}
.m87_c00348{transform:matrix(0.179915,-0.003778,0.005249,0.249945,0,0);-ms-transform:matrix(0.179915,-0.003778,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179915,-0.003778,0.005249,0.249945,0,0);}
.mf1_c00348{transform:matrix(0.179939,-0.005218,0.007247,0.249895,0,0);-ms-transform:matrix(0.179939,-0.005218,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179939,-0.005218,0.007247,0.249895,0,0);}
.m67_c00348{transform:matrix(0.179970,-0.003779,0.005249,0.249945,0,0);-ms-transform:matrix(0.179970,-0.003779,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179970,-0.003779,0.005249,0.249945,0,0);}
.m99_c00348{transform:matrix(0.180068,-0.007030,0.009752,0.249810,0,0);-ms-transform:matrix(0.180068,-0.007030,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180068,-0.007030,0.009752,0.249810,0,0);}
.m6d_c00348{transform:matrix(0.181030,-0.003802,0.005249,0.249945,0,0);-ms-transform:matrix(0.181030,-0.003802,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181030,-0.003802,0.005249,0.249945,0,0);}
.ma8_c00348{transform:matrix(0.181425,-0.007627,0.010501,0.249779,0,0);-ms-transform:matrix(0.181425,-0.007627,0.010501,0.249779,0,0);-webkit-transform:matrix(0.181425,-0.007627,0.010501,0.249779,0,0);}
.m2d_c00348{transform:matrix(0.182202,-0.006566,0.009003,0.249838,0,0);-ms-transform:matrix(0.182202,-0.006566,0.009003,0.249838,0,0);-webkit-transform:matrix(0.182202,-0.006566,0.009003,0.249838,0,0);}
.m46_c00348{transform:matrix(0.182377,-0.006572,0.009003,0.249838,0,0);-ms-transform:matrix(0.182377,-0.006572,0.009003,0.249838,0,0);-webkit-transform:matrix(0.182377,-0.006572,0.009003,0.249838,0,0);}
.m9_c00348{transform:matrix(0.182397,-0.006573,0.009003,0.249838,0,0);-ms-transform:matrix(0.182397,-0.006573,0.009003,0.249838,0,0);-webkit-transform:matrix(0.182397,-0.006573,0.009003,0.249838,0,0);}
.m2b_c00348{transform:matrix(0.182671,-0.006583,0.009003,0.249838,0,0);-ms-transform:matrix(0.182671,-0.006583,0.009003,0.249838,0,0);-webkit-transform:matrix(0.182671,-0.006583,0.009003,0.249838,0,0);}
.m90_c00348{transform:matrix(0.183086,-0.004028,0.005499,0.249940,0,0);-ms-transform:matrix(0.183086,-0.004028,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183086,-0.004028,0.005499,0.249940,0,0);}
.mec_c00348{transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);-ms-transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183358,-0.005317,0.007247,0.249895,0,0);}
.m27_c00348{transform:matrix(0.184275,-0.006641,0.009003,0.249838,0,0);-ms-transform:matrix(0.184275,-0.006641,0.009003,0.249838,0,0);-webkit-transform:matrix(0.184275,-0.006641,0.009003,0.249838,0,0);}
.mc6_c00348{transform:matrix(0.184647,-0.007763,0.010501,0.249779,0,0);-ms-transform:matrix(0.184647,-0.007763,0.010501,0.249779,0,0);-webkit-transform:matrix(0.184647,-0.007763,0.010501,0.249779,0,0);}
.m4_c00348{transform:matrix(0.184700,-0.006656,0.009003,0.249838,0,0);-ms-transform:matrix(0.184700,-0.006656,0.009003,0.249838,0,0);-webkit-transform:matrix(0.184700,-0.006656,0.009003,0.249838,0,0);}
.m13_c00348{transform:matrix(0.184955,-0.006665,0.009003,0.249838,0,0);-ms-transform:matrix(0.184955,-0.006665,0.009003,0.249838,0,0);-webkit-transform:matrix(0.184955,-0.006665,0.009003,0.249838,0,0);}
.ma2_c00348{transform:matrix(0.184967,-0.007776,0.010501,0.249779,0,0);-ms-transform:matrix(0.184967,-0.007776,0.010501,0.249779,0,0);-webkit-transform:matrix(0.184967,-0.007776,0.010501,0.249779,0,0);}
.m73_c00348{transform:matrix(0.184989,-0.003885,0.005249,0.249945,0,0);-ms-transform:matrix(0.184989,-0.003885,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184989,-0.003885,0.005249,0.249945,0,0);}
.mf6_c00348{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m68_c00348{transform:matrix(0.185439,-0.003894,0.005249,0.249945,0,0);-ms-transform:matrix(0.185439,-0.003894,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185439,-0.003894,0.005249,0.249945,0,0);}
.mb6_c00348{transform:matrix(0.185551,-0.007801,0.010501,0.249779,0,0);-ms-transform:matrix(0.185551,-0.007801,0.010501,0.249779,0,0);-webkit-transform:matrix(0.185551,-0.007801,0.010501,0.249779,0,0);}
.m4e_c00348{transform:matrix(0.185794,-0.003902,0.005249,0.249945,0,0);-ms-transform:matrix(0.185794,-0.003902,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185794,-0.003902,0.005249,0.249945,0,0);}
.m2_c00348{transform:matrix(0.185849,-0.006697,0.009003,0.249838,0,0);-ms-transform:matrix(0.185849,-0.006697,0.009003,0.249838,0,0);-webkit-transform:matrix(0.185849,-0.006697,0.009003,0.249838,0,0);}
.ma9_c00348{transform:matrix(0.186146,-0.007826,0.010501,0.249779,0,0);-ms-transform:matrix(0.186146,-0.007826,0.010501,0.249779,0,0);-webkit-transform:matrix(0.186146,-0.007826,0.010501,0.249779,0,0);}
.m96_c00348{transform:matrix(0.186208,-0.007269,0.009752,0.249810,0,0);-ms-transform:matrix(0.186208,-0.007269,0.009752,0.249810,0,0);-webkit-transform:matrix(0.186208,-0.007269,0.009752,0.249810,0,0);}
.mee_c00348{transform:matrix(0.186222,-0.005400,0.007247,0.249895,0,0);-ms-transform:matrix(0.186222,-0.005400,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186222,-0.005400,0.007247,0.249895,0,0);}
.mcb_c00348{transform:matrix(0.186910,-0.007858,0.010501,0.249779,0,0);-ms-transform:matrix(0.186910,-0.007858,0.010501,0.249779,0,0);-webkit-transform:matrix(0.186910,-0.007858,0.010501,0.249779,0,0);}
.m8f_c00348{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.187478,-0.006756,0.009003,0.249838,0,0);-ms-transform:matrix(0.187478,-0.006756,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187478,-0.006756,0.009003,0.249838,0,0);}
.m85_c00348{transform:matrix(0.187514,-0.003938,0.005249,0.249945,0,0);-ms-transform:matrix(0.187514,-0.003938,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187514,-0.003938,0.005249,0.249945,0,0);}
.mbf_c00348{transform:matrix(0.188169,-0.007911,0.010501,0.249779,0,0);-ms-transform:matrix(0.188169,-0.007911,0.010501,0.249779,0,0);-webkit-transform:matrix(0.188169,-0.007911,0.010501,0.249779,0,0);}
.m1b_c00348{transform:matrix(0.188223,-0.006783,0.009003,0.249838,0,0);-ms-transform:matrix(0.188223,-0.006783,0.009003,0.249838,0,0);-webkit-transform:matrix(0.188223,-0.006783,0.009003,0.249838,0,0);}
.ma0_c00348{transform:matrix(0.188798,-0.007937,0.010501,0.249779,0,0);-ms-transform:matrix(0.188798,-0.007937,0.010501,0.249779,0,0);-webkit-transform:matrix(0.188798,-0.007937,0.010501,0.249779,0,0);}
.mb5_c00348{transform:matrix(0.189148,-0.007952,0.010501,0.249779,0,0);-ms-transform:matrix(0.189148,-0.007952,0.010501,0.249779,0,0);-webkit-transform:matrix(0.189148,-0.007952,0.010501,0.249779,0,0);}
.m5c_c00348{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m93_c00348{transform:matrix(0.189714,-0.004174,0.005499,0.249940,0,0);-ms-transform:matrix(0.189714,-0.004174,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189714,-0.004174,0.005499,0.249940,0,0);}
.m18_c00348{transform:matrix(0.190276,-0.006857,0.009003,0.249838,0,0);-ms-transform:matrix(0.190276,-0.006857,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190276,-0.006857,0.009003,0.249838,0,0);}
.m3d_c00348{transform:matrix(0.190321,-0.006858,0.009003,0.249838,0,0);-ms-transform:matrix(0.190321,-0.006858,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190321,-0.006858,0.009003,0.249838,0,0);}
.mbb_c00348{transform:matrix(0.190367,-0.008003,0.010501,0.249779,0,0);-ms-transform:matrix(0.190367,-0.008003,0.010501,0.249779,0,0);-webkit-transform:matrix(0.190367,-0.008003,0.010501,0.249779,0,0);}
.m3b_c00348{transform:matrix(0.190471,-0.006864,0.009003,0.249838,0,0);-ms-transform:matrix(0.190471,-0.006864,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190471,-0.006864,0.009003,0.249838,0,0);}
.ma_c00348{transform:matrix(0.190621,-0.006869,0.009003,0.249838,0,0);-ms-transform:matrix(0.190621,-0.006869,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190621,-0.006869,0.009003,0.249838,0,0);}
.me1_c00348{transform:matrix(0.190891,-0.008025,0.010501,0.249779,0,0);-ms-transform:matrix(0.190891,-0.008025,0.010501,0.249779,0,0);-webkit-transform:matrix(0.190891,-0.008025,0.010501,0.249779,0,0);}
.mc9_c00348{transform:matrix(0.190941,-0.008028,0.010501,0.249779,0,0);-ms-transform:matrix(0.190941,-0.008028,0.010501,0.249779,0,0);-webkit-transform:matrix(0.190941,-0.008028,0.010501,0.249779,0,0);}
.m10_c00348{transform:matrix(0.191246,-0.006892,0.009003,0.249838,0,0);-ms-transform:matrix(0.191246,-0.006892,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191246,-0.006892,0.009003,0.249838,0,0);}
.m29_c00348{transform:matrix(0.191351,-0.006896,0.009003,0.249838,0,0);-ms-transform:matrix(0.191351,-0.006896,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191351,-0.006896,0.009003,0.249838,0,0);}
.ma7_c00348{transform:matrix(0.191361,-0.008045,0.010501,0.249779,0,0);-ms-transform:matrix(0.191361,-0.008045,0.010501,0.249779,0,0);-webkit-transform:matrix(0.191361,-0.008045,0.010501,0.249779,0,0);}
.m1c_c00348{transform:matrix(0.191451,-0.006899,0.009003,0.249838,0,0);-ms-transform:matrix(0.191451,-0.006899,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191451,-0.006899,0.009003,0.249838,0,0);}
.m31_c00348{transform:matrix(0.191880,-0.006915,0.009003,0.249838,0,0);-ms-transform:matrix(0.191880,-0.006915,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191880,-0.006915,0.009003,0.249838,0,0);}
.m7c_c00348{transform:matrix(0.191898,-0.004030,0.005249,0.249945,0,0);-ms-transform:matrix(0.191898,-0.004030,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191898,-0.004030,0.005249,0.249945,0,0);}
.m94_c00348{transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);-ms-transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191914,-0.004222,0.005499,0.249940,0,0);}
.mb8_c00348{transform:matrix(0.192140,-0.008078,0.010501,0.249779,0,0);-ms-transform:matrix(0.192140,-0.008078,0.010501,0.249779,0,0);-webkit-transform:matrix(0.192140,-0.008078,0.010501,0.249779,0,0);}
.m89_c00348{transform:matrix(0.192428,-0.004041,0.005249,0.249945,0,0);-ms-transform:matrix(0.192428,-0.004041,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192428,-0.004041,0.005249,0.249945,0,0);}
.ma1_c00348{transform:matrix(0.193089,-0.008118,0.010501,0.249779,0,0);-ms-transform:matrix(0.193089,-0.008118,0.010501,0.249779,0,0);-webkit-transform:matrix(0.193089,-0.008118,0.010501,0.249779,0,0);}
.m1_c00348{transform:matrix(0.193300,-0.006966,0.009003,0.249838,0,0);-ms-transform:matrix(0.193300,-0.006966,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193300,-0.006966,0.009003,0.249838,0,0);}
.m51_c00348{transform:matrix(0.193417,-0.004062,0.005249,0.249945,0,0);-ms-transform:matrix(0.193417,-0.004062,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193417,-0.004062,0.005249,0.249945,0,0);}
.m3f_c00348{transform:matrix(0.193609,-0.006977,0.009003,0.249838,0,0);-ms-transform:matrix(0.193609,-0.006977,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193609,-0.006977,0.009003,0.249838,0,0);}
.m1d_c00348{transform:matrix(0.193859,-0.006986,0.009003,0.249838,0,0);-ms-transform:matrix(0.193859,-0.006986,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193859,-0.006986,0.009003,0.249838,0,0);}
.m71_c00348{transform:matrix(0.193922,-0.004072,0.005249,0.249945,0,0);-ms-transform:matrix(0.193922,-0.004072,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193922,-0.004072,0.005249,0.249945,0,0);}
.mba_c00348{transform:matrix(0.195128,-0.008204,0.010501,0.249779,0,0);-ms-transform:matrix(0.195128,-0.008204,0.010501,0.249779,0,0);-webkit-transform:matrix(0.195128,-0.008204,0.010501,0.249779,0,0);}
.m14_c00348{transform:matrix(0.195143,-0.007032,0.009003,0.249838,0,0);-ms-transform:matrix(0.195143,-0.007032,0.009003,0.249838,0,0);-webkit-transform:matrix(0.195143,-0.007032,0.009003,0.249838,0,0);}
.m7b_c00348{transform:matrix(0.195617,-0.004108,0.005249,0.249945,0,0);-ms-transform:matrix(0.195617,-0.004108,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195617,-0.004108,0.005249,0.249945,0,0);}
.m81_c00348{transform:matrix(0.195622,-0.004108,0.005249,0.249945,0,0);-ms-transform:matrix(0.195622,-0.004108,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195622,-0.004108,0.005249,0.249945,0,0);}
.m6b_c00348{transform:matrix(0.195627,-0.004108,0.005249,0.249945,0,0);-ms-transform:matrix(0.195627,-0.004108,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195627,-0.004108,0.005249,0.249945,0,0);}
.m42_c00348{transform:matrix(0.195648,-0.007050,0.009003,0.249838,0,0);-ms-transform:matrix(0.195648,-0.007050,0.009003,0.249838,0,0);-webkit-transform:matrix(0.195648,-0.007050,0.009003,0.249838,0,0);}
.meb_c00348{transform:matrix(0.196297,-0.005693,0.007247,0.249895,0,0);-ms-transform:matrix(0.196297,-0.005693,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196297,-0.005693,0.007247,0.249895,0,0);}
.m28_c00348{transform:matrix(0.196353,-0.007076,0.009003,0.249838,0,0);-ms-transform:matrix(0.196353,-0.007076,0.009003,0.249838,0,0);-webkit-transform:matrix(0.196353,-0.007076,0.009003,0.249838,0,0);}
.m34_c00348{transform:matrix(0.196373,-0.007076,0.009003,0.249838,0,0);-ms-transform:matrix(0.196373,-0.007076,0.009003,0.249838,0,0);-webkit-transform:matrix(0.196373,-0.007076,0.009003,0.249838,0,0);}
.m5b_c00348{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m86_c00348{transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);-ms-transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197017,-0.004137,0.005249,0.249945,0,0);}
.m3e_c00348{transform:matrix(0.197022,-0.007100,0.009003,0.249838,0,0);-ms-transform:matrix(0.197022,-0.007100,0.009003,0.249838,0,0);-webkit-transform:matrix(0.197022,-0.007100,0.009003,0.249838,0,0);}
.m6a_c00348{transform:matrix(0.197346,-0.004144,0.005249,0.249945,0,0);-ms-transform:matrix(0.197346,-0.004144,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197346,-0.004144,0.005249,0.249945,0,0);}
.m9e_c00348{transform:matrix(0.198824,-0.008359,0.010501,0.249779,0,0);-ms-transform:matrix(0.198824,-0.008359,0.010501,0.249779,0,0);-webkit-transform:matrix(0.198824,-0.008359,0.010501,0.249779,0,0);}
.mb2_c00348{transform:matrix(0.199324,-0.008380,0.010501,0.249779,0,0);-ms-transform:matrix(0.199324,-0.008380,0.010501,0.249779,0,0);-webkit-transform:matrix(0.199324,-0.008380,0.010501,0.249779,0,0);}
.m7a_c00348{transform:matrix(0.199396,-0.004187,0.005249,0.249945,0,0);-ms-transform:matrix(0.199396,-0.004187,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199396,-0.004187,0.005249,0.249945,0,0);}
.m3c_c00348{transform:matrix(0.199625,-0.007194,0.009003,0.249838,0,0);-ms-transform:matrix(0.199625,-0.007194,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199625,-0.007194,0.009003,0.249838,0,0);}
.m4a_c00348{transform:matrix(0.199790,-0.007200,0.009003,0.249838,0,0);-ms-transform:matrix(0.199790,-0.007200,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199790,-0.007200,0.009003,0.249838,0,0);}
.mc_c00348{transform:matrix(0.201764,-0.007271,0.009003,0.249838,0,0);-ms-transform:matrix(0.201764,-0.007271,0.009003,0.249838,0,0);-webkit-transform:matrix(0.201764,-0.007271,0.009003,0.249838,0,0);}
.m72_c00348{transform:matrix(0.202535,-0.004253,0.005249,0.249945,0,0);-ms-transform:matrix(0.202535,-0.004253,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202535,-0.004253,0.005249,0.249945,0,0);}
.m7_c00348{transform:matrix(0.202718,-0.007305,0.009003,0.249838,0,0);-ms-transform:matrix(0.202718,-0.007305,0.009003,0.249838,0,0);-webkit-transform:matrix(0.202718,-0.007305,0.009003,0.249838,0,0);}
.me3_c00348{transform:matrix(0.203730,-0.008565,0.010501,0.249779,0,0);-ms-transform:matrix(0.203730,-0.008565,0.010501,0.249779,0,0);-webkit-transform:matrix(0.203730,-0.008565,0.010501,0.249779,0,0);}
.me8_c00348{transform:matrix(0.204024,-0.005917,0.007247,0.249895,0,0);-ms-transform:matrix(0.204024,-0.005917,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204024,-0.005917,0.007247,0.249895,0,0);}
.mae_c00348{transform:matrix(0.204195,-0.008585,0.010501,0.249779,0,0);-ms-transform:matrix(0.204195,-0.008585,0.010501,0.249779,0,0);-webkit-transform:matrix(0.204195,-0.008585,0.010501,0.249779,0,0);}
.m76_c00348{transform:matrix(0.204200,-0.004288,0.005249,0.249945,0,0);-ms-transform:matrix(0.204200,-0.004288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204200,-0.004288,0.005249,0.249945,0,0);}
.m6_c00348{transform:matrix(0.204267,-0.007361,0.009003,0.249838,0,0);-ms-transform:matrix(0.204267,-0.007361,0.009003,0.249838,0,0);-webkit-transform:matrix(0.204267,-0.007361,0.009003,0.249838,0,0);}
.m59_c00348{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.204332,-0.007363,0.009003,0.249838,0,0);-ms-transform:matrix(0.204332,-0.007363,0.009003,0.249838,0,0);-webkit-transform:matrix(0.204332,-0.007363,0.009003,0.249838,0,0);}
.me2_c00348{transform:matrix(0.204809,-0.008611,0.010501,0.249779,0,0);-ms-transform:matrix(0.204809,-0.008611,0.010501,0.249779,0,0);-webkit-transform:matrix(0.204809,-0.008611,0.010501,0.249779,0,0);}
.me6_c00348{transform:matrix(0.205513,-0.008640,0.010501,0.249779,0,0);-ms-transform:matrix(0.205513,-0.008640,0.010501,0.249779,0,0);-webkit-transform:matrix(0.205513,-0.008640,0.010501,0.249779,0,0);}
.mc8_c00348{transform:matrix(0.205693,-0.008648,0.010501,0.249779,0,0);-ms-transform:matrix(0.205693,-0.008648,0.010501,0.249779,0,0);-webkit-transform:matrix(0.205693,-0.008648,0.010501,0.249779,0,0);}
.mbe_c00348{transform:matrix(0.206013,-0.008661,0.010501,0.249779,0,0);-ms-transform:matrix(0.206013,-0.008661,0.010501,0.249779,0,0);-webkit-transform:matrix(0.206013,-0.008661,0.010501,0.249779,0,0);}
.m9f_c00348{transform:matrix(0.206123,-0.008666,0.010501,0.249779,0,0);-ms-transform:matrix(0.206123,-0.008666,0.010501,0.249779,0,0);-webkit-transform:matrix(0.206123,-0.008666,0.010501,0.249779,0,0);}
.m39_c00348{transform:matrix(0.206486,-0.007441,0.009003,0.249838,0,0);-ms-transform:matrix(0.206486,-0.007441,0.009003,0.249838,0,0);-webkit-transform:matrix(0.206486,-0.007441,0.009003,0.249838,0,0);}
.m56_c00348{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m54_c00348{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m35_c00348{transform:matrix(0.207225,-0.007468,0.009003,0.249838,0,0);-ms-transform:matrix(0.207225,-0.007468,0.009003,0.249838,0,0);-webkit-transform:matrix(0.207225,-0.007468,0.009003,0.249838,0,0);}
.mca_c00348{transform:matrix(0.207322,-0.008716,0.010501,0.249779,0,0);-ms-transform:matrix(0.207322,-0.008716,0.010501,0.249779,0,0);-webkit-transform:matrix(0.207322,-0.008716,0.010501,0.249779,0,0);}
.m16_c00348{transform:matrix(0.208030,-0.007497,0.009003,0.249838,0,0);-ms-transform:matrix(0.208030,-0.007497,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208030,-0.007497,0.009003,0.249838,0,0);}
.m19_c00348{transform:matrix(0.208130,-0.007500,0.009003,0.249838,0,0);-ms-transform:matrix(0.208130,-0.007500,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208130,-0.007500,0.009003,0.249838,0,0);}
.ma5_c00348{transform:matrix(0.208856,-0.008781,0.010501,0.249779,0,0);-ms-transform:matrix(0.208856,-0.008781,0.010501,0.249779,0,0);-webkit-transform:matrix(0.208856,-0.008781,0.010501,0.249779,0,0);}
.maf_c00348{transform:matrix(0.209380,-0.008803,0.010501,0.249779,0,0);-ms-transform:matrix(0.209380,-0.008803,0.010501,0.249779,0,0);-webkit-transform:matrix(0.209380,-0.008803,0.010501,0.249779,0,0);}
.m75_c00348{transform:matrix(0.209754,-0.004405,0.005249,0.249945,0,0);-ms-transform:matrix(0.209754,-0.004405,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209754,-0.004405,0.005249,0.249945,0,0);}
.ma4_c00348{transform:matrix(0.209905,-0.008825,0.010501,0.249779,0,0);-ms-transform:matrix(0.209905,-0.008825,0.010501,0.249779,0,0);-webkit-transform:matrix(0.209905,-0.008825,0.010501,0.249779,0,0);}
.m38_c00348{transform:matrix(0.209959,-0.007566,0.009003,0.249838,0,0);-ms-transform:matrix(0.209959,-0.007566,0.009003,0.249838,0,0);-webkit-transform:matrix(0.209959,-0.007566,0.009003,0.249838,0,0);}
.m74_c00348{transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);-ms-transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210839,-0.004428,0.005249,0.249945,0,0);}
.mc5_c00348{transform:matrix(0.211873,-0.008908,0.010501,0.249779,0,0);-ms-transform:matrix(0.211873,-0.008908,0.010501,0.249779,0,0);-webkit-transform:matrix(0.211873,-0.008908,0.010501,0.249779,0,0);}
.md_c00348{transform:matrix(0.212242,-0.007648,0.009003,0.249838,0,0);-ms-transform:matrix(0.212242,-0.007648,0.009003,0.249838,0,0);-webkit-transform:matrix(0.212242,-0.007648,0.009003,0.249838,0,0);}
.mbd_c00348{transform:matrix(0.212277,-0.008925,0.010501,0.249779,0,0);-ms-transform:matrix(0.212277,-0.008925,0.010501,0.249779,0,0);-webkit-transform:matrix(0.212277,-0.008925,0.010501,0.249779,0,0);}
.m44_c00348{transform:matrix(0.212867,-0.007671,0.009003,0.249838,0,0);-ms-transform:matrix(0.212867,-0.007671,0.009003,0.249838,0,0);-webkit-transform:matrix(0.212867,-0.007671,0.009003,0.249838,0,0);}
.ma3_c00348{transform:matrix(0.213122,-0.008960,0.010501,0.249779,0,0);-ms-transform:matrix(0.213122,-0.008960,0.010501,0.249779,0,0);-webkit-transform:matrix(0.213122,-0.008960,0.010501,0.249779,0,0);}
.m65_c00348{transform:matrix(0.213288,-0.004479,0.005249,0.249945,0,0);-ms-transform:matrix(0.213288,-0.004479,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213288,-0.004479,0.005249,0.249945,0,0);}
.m83_c00348{transform:matrix(0.215223,-0.004520,0.005249,0.249945,0,0);-ms-transform:matrix(0.215223,-0.004520,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215223,-0.004520,0.005249,0.249945,0,0);}
.m5a_c00348{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.m9a_c00348{transform:matrix(0.215311,-0.008406,0.009752,0.249810,0,0);-ms-transform:matrix(0.215311,-0.008406,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215311,-0.008406,0.009752,0.249810,0,0);}
.m11_c00348{transform:matrix(0.216165,-0.007790,0.009003,0.249838,0,0);-ms-transform:matrix(0.216165,-0.007790,0.009003,0.249838,0,0);-webkit-transform:matrix(0.216165,-0.007790,0.009003,0.249838,0,0);}
.m8_c00348{transform:matrix(0.216499,-0.007802,0.009003,0.249838,0,0);-ms-transform:matrix(0.216499,-0.007802,0.009003,0.249838,0,0);-webkit-transform:matrix(0.216499,-0.007802,0.009003,0.249838,0,0);}
.maa_c00348{transform:matrix(0.216514,-0.009103,0.010501,0.249779,0,0);-ms-transform:matrix(0.216514,-0.009103,0.010501,0.249779,0,0);-webkit-transform:matrix(0.216514,-0.009103,0.010501,0.249779,0,0);}
.m2e_c00348{transform:matrix(0.216744,-0.007811,0.009003,0.249838,0,0);-ms-transform:matrix(0.216744,-0.007811,0.009003,0.249838,0,0);-webkit-transform:matrix(0.216744,-0.007811,0.009003,0.249838,0,0);}
.mc4_c00348{transform:matrix(0.216913,-0.009119,0.010501,0.249779,0,0);-ms-transform:matrix(0.216913,-0.009119,0.010501,0.249779,0,0);-webkit-transform:matrix(0.216913,-0.009119,0.010501,0.249779,0,0);}
.m1a_c00348{transform:matrix(0.217019,-0.007821,0.009003,0.249838,0,0);-ms-transform:matrix(0.217019,-0.007821,0.009003,0.249838,0,0);-webkit-transform:matrix(0.217019,-0.007821,0.009003,0.249838,0,0);}
.m91_c00348{transform:matrix(0.217552,-0.004786,0.005499,0.249940,0,0);-ms-transform:matrix(0.217552,-0.004786,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217552,-0.004786,0.005499,0.249940,0,0);}
.m55_c00348{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m6e_c00348{transform:matrix(0.218512,-0.004589,0.005249,0.249945,0,0);-ms-transform:matrix(0.218512,-0.004589,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218512,-0.004589,0.005249,0.249945,0,0);}
.m36_c00348{transform:matrix(0.218693,-0.007881,0.009003,0.249838,0,0);-ms-transform:matrix(0.218693,-0.007881,0.009003,0.249838,0,0);-webkit-transform:matrix(0.218693,-0.007881,0.009003,0.249838,0,0);}
.md5_c00348{transform:matrix(0.218932,-0.009204,0.010501,0.249779,0,0);-ms-transform:matrix(0.218932,-0.009204,0.010501,0.249779,0,0);-webkit-transform:matrix(0.218932,-0.009204,0.010501,0.249779,0,0);}
.me7_c00348{transform:matrix(0.219086,-0.009211,0.010501,0.249779,0,0);-ms-transform:matrix(0.219086,-0.009211,0.010501,0.249779,0,0);-webkit-transform:matrix(0.219086,-0.009211,0.010501,0.249779,0,0);}
.m53_c00348{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.220257,-0.007937,0.009003,0.249838,0,0);-ms-transform:matrix(0.220257,-0.007937,0.009003,0.249838,0,0);-webkit-transform:matrix(0.220257,-0.007937,0.009003,0.249838,0,0);}
.m12_c00348{transform:matrix(0.221231,-0.007972,0.009003,0.249838,0,0);-ms-transform:matrix(0.221231,-0.007972,0.009003,0.249838,0,0);-webkit-transform:matrix(0.221231,-0.007972,0.009003,0.249838,0,0);}
.me9_c00348{transform:matrix(0.221422,-0.006421,0.007247,0.249895,0,0);-ms-transform:matrix(0.221422,-0.006421,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221422,-0.006421,0.007247,0.249895,0,0);}
.m4d_c00348{transform:matrix(0.221446,-0.004650,0.005249,0.249945,0,0);-ms-transform:matrix(0.221446,-0.004650,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221446,-0.004650,0.005249,0.249945,0,0);}
.m64_c00348{transform:matrix(0.222121,-0.004665,0.005249,0.249945,0,0);-ms-transform:matrix(0.222121,-0.004665,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222121,-0.004665,0.005249,0.249945,0,0);}
.me5_c00348{transform:matrix(0.222583,-0.009358,0.010501,0.249779,0,0);-ms-transform:matrix(0.222583,-0.009358,0.010501,0.249779,0,0);-webkit-transform:matrix(0.222583,-0.009358,0.010501,0.249779,0,0);}
.m32_c00348{transform:matrix(0.222680,-0.008025,0.009003,0.249838,0,0);-ms-transform:matrix(0.222680,-0.008025,0.009003,0.249838,0,0);-webkit-transform:matrix(0.222680,-0.008025,0.009003,0.249838,0,0);}
.m80_c00348{transform:matrix(0.222816,-0.004679,0.005249,0.249945,0,0);-ms-transform:matrix(0.222816,-0.004679,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222816,-0.004679,0.005249,0.249945,0,0);}
.mf0_c00348{transform:matrix(0.222836,-0.006462,0.007247,0.249895,0,0);-ms-transform:matrix(0.222836,-0.006462,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222836,-0.006462,0.007247,0.249895,0,0);}
.m95_c00348{transform:matrix(0.224256,-0.004934,0.005499,0.249940,0,0);-ms-transform:matrix(0.224256,-0.004934,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224256,-0.004934,0.005499,0.249940,0,0);}
.ma6_c00348{transform:matrix(0.224886,-0.009455,0.010501,0.249779,0,0);-ms-transform:matrix(0.224886,-0.009455,0.010501,0.249779,0,0);-webkit-transform:matrix(0.224886,-0.009455,0.010501,0.249779,0,0);}
.mc1_c00348{transform:matrix(0.225731,-0.009490,0.010501,0.249779,0,0);-ms-transform:matrix(0.225731,-0.009490,0.010501,0.249779,0,0);-webkit-transform:matrix(0.225731,-0.009490,0.010501,0.249779,0,0);}
.med_c00348{transform:matrix(0.226490,-0.006568,0.007247,0.249895,0,0);-ms-transform:matrix(0.226490,-0.006568,0.007247,0.249895,0,0);-webkit-transform:matrix(0.226490,-0.006568,0.007247,0.249895,0,0);}
.m82_c00348{transform:matrix(0.226575,-0.004758,0.005249,0.249945,0,0);-ms-transform:matrix(0.226575,-0.004758,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226575,-0.004758,0.005249,0.249945,0,0);}
.m15_c00348{transform:matrix(0.227018,-0.008181,0.009003,0.249838,0,0);-ms-transform:matrix(0.227018,-0.008181,0.009003,0.249838,0,0);-webkit-transform:matrix(0.227018,-0.008181,0.009003,0.249838,0,0);}
.m84_c00348{transform:matrix(0.228035,-0.004789,0.005249,0.249945,0,0);-ms-transform:matrix(0.228035,-0.004789,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228035,-0.004789,0.005249,0.249945,0,0);}
.md1_c00348{transform:matrix(0.228318,-0.009599,0.010501,0.249779,0,0);-ms-transform:matrix(0.228318,-0.009599,0.010501,0.249779,0,0);-webkit-transform:matrix(0.228318,-0.009599,0.010501,0.249779,0,0);}
.m98_c00348{transform:matrix(0.228546,-0.008922,0.009752,0.249810,0,0);-ms-transform:matrix(0.228546,-0.008922,0.009752,0.249810,0,0);-webkit-transform:matrix(0.228546,-0.008922,0.009752,0.249810,0,0);}
.m4c_c00348{transform:matrix(0.230629,-0.004843,0.005249,0.249945,0,0);-ms-transform:matrix(0.230629,-0.004843,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230629,-0.004843,0.005249,0.249945,0,0);}
.mcf_c00348{transform:matrix(0.230636,-0.009696,0.010501,0.249779,0,0);-ms-transform:matrix(0.230636,-0.009696,0.010501,0.249779,0,0);-webkit-transform:matrix(0.230636,-0.009696,0.010501,0.249779,0,0);}
.mc0_c00348{transform:matrix(0.230846,-0.009705,0.010501,0.249779,0,0);-ms-transform:matrix(0.230846,-0.009705,0.010501,0.249779,0,0);-webkit-transform:matrix(0.230846,-0.009705,0.010501,0.249779,0,0);}
.mb9_c00348{transform:matrix(0.231496,-0.009733,0.010501,0.249779,0,0);-ms-transform:matrix(0.231496,-0.009733,0.010501,0.249779,0,0);-webkit-transform:matrix(0.231496,-0.009733,0.010501,0.249779,0,0);}
.m37_c00348{transform:matrix(0.231605,-0.008346,0.009003,0.249838,0,0);-ms-transform:matrix(0.231605,-0.008346,0.009003,0.249838,0,0);-webkit-transform:matrix(0.231605,-0.008346,0.009003,0.249838,0,0);}
.m97_c00348{transform:matrix(0.233003,-0.009096,0.009752,0.249810,0,0);-ms-transform:matrix(0.233003,-0.009096,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233003,-0.009096,0.009752,0.249810,0,0);}
.m30_c00348{transform:matrix(0.233418,-0.008411,0.009003,0.249838,0,0);-ms-transform:matrix(0.233418,-0.008411,0.009003,0.249838,0,0);-webkit-transform:matrix(0.233418,-0.008411,0.009003,0.249838,0,0);}
.m60_c00348{transform:matrix(0.234468,-0.004924,0.005249,0.249945,0,0);-ms-transform:matrix(0.234468,-0.004924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234468,-0.004924,0.005249,0.249945,0,0);}
.mc2_c00348{transform:matrix(0.235267,-0.009891,0.010501,0.249779,0,0);-ms-transform:matrix(0.235267,-0.009891,0.010501,0.249779,0,0);-webkit-transform:matrix(0.235267,-0.009891,0.010501,0.249779,0,0);}
.m5e_c00348{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);}
.md4_c00348{transform:matrix(0.237061,-0.009967,0.010501,0.249779,0,0);-ms-transform:matrix(0.237061,-0.009967,0.010501,0.249779,0,0);-webkit-transform:matrix(0.237061,-0.009967,0.010501,0.249779,0,0);}
.mac_c00348{transform:matrix(0.237280,-0.009976,0.010501,0.249779,0,0);-ms-transform:matrix(0.237280,-0.009976,0.010501,0.249779,0,0);-webkit-transform:matrix(0.237280,-0.009976,0.010501,0.249779,0,0);}
.m8b_c00348{transform:matrix(0.238817,-0.012431,0.012995,0.249662,0,0);-ms-transform:matrix(0.238817,-0.012431,0.012995,0.249662,0,0);-webkit-transform:matrix(0.238817,-0.012431,0.012995,0.249662,0,0);}
.mf5_c00348{transform:matrix(0.238855,-0.006927,0.007247,0.249895,0,0);-ms-transform:matrix(0.238855,-0.006927,0.007247,0.249895,0,0);-webkit-transform:matrix(0.238855,-0.006927,0.007247,0.249895,0,0);}
.m8d_c00348{transform:matrix(0.238976,-0.012439,0.012995,0.249662,0,0);-ms-transform:matrix(0.238976,-0.012439,0.012995,0.249662,0,0);-webkit-transform:matrix(0.238976,-0.012439,0.012995,0.249662,0,0);}
.m2f_c00348{transform:matrix(0.240424,-0.008664,0.009003,0.249838,0,0);-ms-transform:matrix(0.240424,-0.008664,0.009003,0.249838,0,0);-webkit-transform:matrix(0.240424,-0.008664,0.009003,0.249838,0,0);}
.m66_c00348{transform:matrix(0.240932,-0.005060,0.005249,0.249945,0,0);-ms-transform:matrix(0.240932,-0.005060,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240932,-0.005060,0.005249,0.249945,0,0);}
.m4f_c00348{transform:matrix(0.241642,-0.005074,0.005249,0.249945,0,0);-ms-transform:matrix(0.241642,-0.005074,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241642,-0.005074,0.005249,0.249945,0,0);}
.mef_c00348{transform:matrix(0.241898,-0.007015,0.007247,0.249895,0,0);-ms-transform:matrix(0.241898,-0.007015,0.007247,0.249895,0,0);-webkit-transform:matrix(0.241898,-0.007015,0.007247,0.249895,0,0);}
.m43_c00348{transform:matrix(0.242652,-0.008744,0.009003,0.249838,0,0);-ms-transform:matrix(0.242652,-0.008744,0.009003,0.249838,0,0);-webkit-transform:matrix(0.242652,-0.008744,0.009003,0.249838,0,0);}
.mb7_c00348{transform:matrix(0.242885,-0.010211,0.010501,0.249779,0,0);-ms-transform:matrix(0.242885,-0.010211,0.010501,0.249779,0,0);-webkit-transform:matrix(0.242885,-0.010211,0.010501,0.249779,0,0);}
.mb4_c00348{transform:matrix(0.245059,-0.010303,0.010501,0.249779,0,0);-ms-transform:matrix(0.245059,-0.010303,0.010501,0.249779,0,0);-webkit-transform:matrix(0.245059,-0.010303,0.010501,0.249779,0,0);}
.mf3_c00348{transform:matrix(0.246196,-0.007140,0.007247,0.249895,0,0);-ms-transform:matrix(0.246196,-0.007140,0.007247,0.249895,0,0);-webkit-transform:matrix(0.246196,-0.007140,0.007247,0.249895,0,0);}
.md2_c00348{transform:matrix(0.248570,-0.010450,0.010501,0.249779,0,0);-ms-transform:matrix(0.248570,-0.010450,0.010501,0.249779,0,0);-webkit-transform:matrix(0.248570,-0.010450,0.010501,0.249779,0,0);}
.md0_c00348{transform:matrix(0.249025,-0.010470,0.010501,0.249779,0,0);-ms-transform:matrix(0.249025,-0.010470,0.010501,0.249779,0,0);-webkit-transform:matrix(0.249025,-0.010470,0.010501,0.249779,0,0);}
.mab_c00348{transform:matrix(0.250259,-0.010521,0.010501,0.249779,0,0);-ms-transform:matrix(0.250259,-0.010521,0.010501,0.249779,0,0);-webkit-transform:matrix(0.250259,-0.010521,0.010501,0.249779,0,0);}
.m7f_c00348{transform:matrix(0.252294,-0.005298,0.005249,0.249945,0,0);-ms-transform:matrix(0.252294,-0.005298,0.005249,0.249945,0,0);-webkit-transform:matrix(0.252294,-0.005298,0.005249,0.249945,0,0);}
.md8_c00348{transform:matrix(0.253306,-0.010650,0.010501,0.249779,0,0);-ms-transform:matrix(0.253306,-0.010650,0.010501,0.249779,0,0);-webkit-transform:matrix(0.253306,-0.010650,0.010501,0.249779,0,0);}
.mda_c00348{transform:matrix(0.255050,-0.010723,0.010501,0.249779,0,0);-ms-transform:matrix(0.255050,-0.010723,0.010501,0.249779,0,0);-webkit-transform:matrix(0.255050,-0.010723,0.010501,0.249779,0,0);}
.m61_c00348{transform:matrix(0.259143,-0.005442,0.005249,0.249945,0,0);-ms-transform:matrix(0.259143,-0.005442,0.005249,0.249945,0,0);-webkit-transform:matrix(0.259143,-0.005442,0.005249,0.249945,0,0);}
.m58_c00348{transform:matrix(0.260045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260045,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{transform:matrix(0.263039,-0.009479,0.009003,0.249838,0,0);-ms-transform:matrix(0.263039,-0.009479,0.009003,0.249838,0,0);-webkit-transform:matrix(0.263039,-0.009479,0.009003,0.249838,0,0);}
.me0_c00348{transform:matrix(0.264671,-0.011127,0.010501,0.249779,0,0);-ms-transform:matrix(0.264671,-0.011127,0.010501,0.249779,0,0);-webkit-transform:matrix(0.264671,-0.011127,0.010501,0.249779,0,0);}
.m5d_c00348{transform:matrix(0.267975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267975,0.000000,0.000000,0.250000,0,0);}
.m70_c00348{transform:matrix(0.269186,-0.005653,0.005249,0.249945,0,0);-ms-transform:matrix(0.269186,-0.005653,0.005249,0.249945,0,0);-webkit-transform:matrix(0.269186,-0.005653,0.005249,0.249945,0,0);}
.m63_c00348{transform:matrix(0.271890,-0.005710,0.005249,0.249945,0,0);-ms-transform:matrix(0.271890,-0.005710,0.005249,0.249945,0,0);-webkit-transform:matrix(0.271890,-0.005710,0.005249,0.249945,0,0);}
.mdb_c00348{transform:matrix(0.272374,-0.011451,0.010501,0.249779,0,0);-ms-transform:matrix(0.272374,-0.011451,0.010501,0.249779,0,0);-webkit-transform:matrix(0.272374,-0.011451,0.010501,0.249779,0,0);}
.mdc_c00348{transform:matrix(0.274882,-0.011557,0.010501,0.249779,0,0);-ms-transform:matrix(0.274882,-0.011557,0.010501,0.249779,0,0);-webkit-transform:matrix(0.274882,-0.011557,0.010501,0.249779,0,0);}
.md7_c00348{transform:matrix(0.278224,-0.011697,0.010501,0.249779,0,0);-ms-transform:matrix(0.278224,-0.011697,0.010501,0.249779,0,0);-webkit-transform:matrix(0.278224,-0.011697,0.010501,0.249779,0,0);}
.m8e_c00348{transform:matrix(0.280755,-0.014614,0.012995,0.249662,0,0);-ms-transform:matrix(0.280755,-0.014614,0.012995,0.249662,0,0);-webkit-transform:matrix(0.280755,-0.014614,0.012995,0.249662,0,0);}
.md9_c00348{transform:matrix(0.305590,-0.012848,0.010501,0.249779,0,0);-ms-transform:matrix(0.305590,-0.012848,0.010501,0.249779,0,0);-webkit-transform:matrix(0.305590,-0.012848,0.010501,0.249779,0,0);}
.mf2_c00348{transform:matrix(0.309190,-0.008967,0.007247,0.249895,0,0);-ms-transform:matrix(0.309190,-0.008967,0.007247,0.249895,0,0);-webkit-transform:matrix(0.309190,-0.008967,0.007247,0.249895,0,0);}
.m8c_c00348{transform:matrix(0.315393,-0.016417,0.012995,0.249662,0,0);-ms-transform:matrix(0.315393,-0.016417,0.012995,0.249662,0,0);-webkit-transform:matrix(0.315393,-0.016417,0.012995,0.249662,0,0);}
.mc3_c00348{transform:matrix(0.321226,-0.013505,0.010501,0.249779,0,0);-ms-transform:matrix(0.321226,-0.013505,0.010501,0.249779,0,0);-webkit-transform:matrix(0.321226,-0.013505,0.010501,0.249779,0,0);}
.m7e_c00348{transform:matrix(0.340425,-0.007149,0.005249,0.249945,0,0);-ms-transform:matrix(0.340425,-0.007149,0.005249,0.249945,0,0);-webkit-transform:matrix(0.340425,-0.007149,0.005249,0.249945,0,0);}
.me4_c00348{transform:matrix(0.348112,-0.014635,0.010501,0.249779,0,0);-ms-transform:matrix(0.348112,-0.014635,0.010501,0.249779,0,0);-webkit-transform:matrix(0.348112,-0.014635,0.010501,0.249779,0,0);}
.m5_c00348{transform:matrix(0.354510,-0.012775,0.009003,0.249838,0,0);-ms-transform:matrix(0.354510,-0.012775,0.009003,0.249838,0,0);-webkit-transform:matrix(0.354510,-0.012775,0.009003,0.249838,0,0);}
.mdd_c00348{transform:matrix(0.363494,-0.015282,0.010501,0.249779,0,0);-ms-transform:matrix(0.363494,-0.015282,0.010501,0.249779,0,0);-webkit-transform:matrix(0.363494,-0.015282,0.010501,0.249779,0,0);}
.m62_c00348{transform:matrix(0.401676,-0.008435,0.005249,0.249945,0,0);-ms-transform:matrix(0.401676,-0.008435,0.005249,0.249945,0,0);-webkit-transform:matrix(0.401676,-0.008435,0.005249,0.249945,0,0);}
.mdf_c00348{transform:matrix(0.402180,-0.016908,0.010501,0.249779,0,0);-ms-transform:matrix(0.402180,-0.016908,0.010501,0.249779,0,0);-webkit-transform:matrix(0.402180,-0.016908,0.010501,0.249779,0,0);}
.mb3_c00348{transform:matrix(0.410912,-0.017276,0.010501,0.249779,0,0);-ms-transform:matrix(0.410912,-0.017276,0.010501,0.249779,0,0);-webkit-transform:matrix(0.410912,-0.017276,0.010501,0.249779,0,0);}
.m50_c00348{transform:matrix(0.477345,-0.010024,0.005249,0.249945,0,0);-ms-transform:matrix(0.477345,-0.010024,0.005249,0.249945,0,0);-webkit-transform:matrix(0.477345,-0.010024,0.005249,0.249945,0,0);}
.md6_c00348{transform:matrix(0.956475,-0.040212,0.010501,0.249779,0,0);-ms-transform:matrix(0.956475,-0.040212,0.010501,0.249779,0,0);-webkit-transform:matrix(0.956475,-0.040212,0.010501,0.249779,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:0.000000px;}
.fc0_c00348{color:transparent;}
.fs1d_c00348{font-size:30.450000px;}
.fs11_c00348{font-size:42.000000px;}
.fs19_c00348{font-size:46.194571px;}
.fs8_c00348{font-size:55.662269px;}
.fs15_c00348{font-size:57.743214px;}
.fs1c_c00348{font-size:57.774279px;}
.fs6_c00348{font-size:58.779328px;}
.fs17_c00348{font-size:58.793091px;}
.fsb_c00348{font-size:58.812964px;}
.fs9_c00348{font-size:59.850000px;}
.fsd_c00348{font-size:59.863195px;}
.fs10_c00348{font-size:59.871093px;}
.fs1a_c00348{font-size:60.892844px;}
.fs1b_c00348{font-size:60.925603px;}
.fs13_c00348{font-size:61.935192px;}
.fsa_c00348{font-size:61.950000px;}
.fs5_c00348{font-size:62.977852px;}
.fsf_c00348{font-size:63.013890px;}
.fs1_c00348{font-size:64.027482px;}
.fs14_c00348{font-size:64.042474px;}
.fse_c00348{font-size:64.064121px;}
.fs3_c00348{font-size:65.077113px;}
.fs18_c00348{font-size:65.092350px;}
.fsc_c00348{font-size:65.114353px;}
.fs12_c00348{font-size:65.115752px;}
.fs2_c00348{font-size:66.126744px;}
.fs16_c00348{font-size:66.142227px;}
.fs0_c00348{font-size:67.176375px;}
.fs7_c00348{font-size:69.275637px;}
.fs4_c00348{font-size:74.523791px;}
.y0_c00348{bottom:0.000000px;}
.ye5_c00348{bottom:23.763822px;}
.ye6_c00348{bottom:24.898920px;}
.ye7_c00348{bottom:25.628730px;}
.ye8_c00348{bottom:26.202773px;}
.ye9_c00348{bottom:28.013366px;}
.yea_c00348{bottom:28.691471px;}
.yeb_c00348{bottom:29.135261px;}
.yec_c00348{bottom:35.910000px;}
.yde_c00348{bottom:40.515000px;}
.ydf_c00348{bottom:42.587036px;}
.ye0_c00348{bottom:43.846665px;}
.ye1_c00348{bottom:44.494902px;}
.ye2_c00348{bottom:46.142813px;}
.ye3_c00348{bottom:48.025406px;}
.ye4_c00348{bottom:48.413904px;}
.yd4_c00348{bottom:53.490247px;}
.yd5_c00348{bottom:54.139130px;}
.yd6_c00348{bottom:55.801591px;}
.yd7_c00348{bottom:56.625105px;}
.yd8_c00348{bottom:58.387193px;}
.yd9_c00348{bottom:59.301511px;}
.yda_c00348{bottom:61.015292px;}
.ydb_c00348{bottom:61.475002px;}
.ydc_c00348{bottom:62.151857px;}
.ydd_c00348{bottom:63.820304px;}
.ycc_c00348{bottom:80.473458px;}
.ycd_c00348{bottom:81.107679px;}
.yce_c00348{bottom:81.765862px;}
.ycf_c00348{bottom:82.160386px;}
.yd0_c00348{bottom:82.970648px;}
.yd1_c00348{bottom:84.045261px;}
.yd2_c00348{bottom:84.226323px;}
.yd3_c00348{bottom:84.651420px;}
.yc4_c00348{bottom:90.753676px;}
.yc5_c00348{bottom:91.464186px;}
.yc6_c00348{bottom:92.072991px;}
.yc7_c00348{bottom:93.738437px;}
.yc8_c00348{bottom:94.782905px;}
.yc9_c00348{bottom:97.321706px;}
.yca_c00348{bottom:98.063441px;}
.ycb_c00348{bottom:100.380270px;}
.ybd_c00348{bottom:106.413181px;}
.ybe_c00348{bottom:109.024162px;}
.ybf_c00348{bottom:111.425470px;}
.yc0_c00348{bottom:112.844775px;}
.yc1_c00348{bottom:114.968401px;}
.yc2_c00348{bottom:115.912362px;}
.yc3_c00348{bottom:116.441098px;}
.yb6_c00348{bottom:121.009098px;}
.yb7_c00348{bottom:123.440781px;}
.yb8_c00348{bottom:124.791388px;}
.yb9_c00348{bottom:127.769821px;}
.yba_c00348{bottom:128.684581px;}
.ybb_c00348{bottom:131.074081px;}
.ybc_c00348{bottom:133.262503px;}
.yad_c00348{bottom:141.773749px;}
.yae_c00348{bottom:143.415723px;}
.yaf_c00348{bottom:144.373206px;}
.yb0_c00348{bottom:145.829127px;}
.yb1_c00348{bottom:148.106658px;}
.yb2_c00348{bottom:148.743930px;}
.yb3_c00348{bottom:149.615103px;}
.yb4_c00348{bottom:150.754858px;}
.yb5_c00348{bottom:151.444528px;}
.ya3_c00348{bottom:155.288987px;}
.ya4_c00348{bottom:155.848364px;}
.ya5_c00348{bottom:157.597937px;}
.ya6_c00348{bottom:159.329555px;}
.ya7_c00348{bottom:159.988093px;}
.ya8_c00348{bottom:161.708812px;}
.ya9_c00348{bottom:162.279593px;}
.yaa_c00348{bottom:164.309578px;}
.yab_c00348{bottom:165.078115px;}
.yac_c00348{bottom:167.158186px;}
.y9a_c00348{bottom:172.830374px;}
.y9b_c00348{bottom:173.649765px;}
.y9c_c00348{bottom:175.771726px;}
.y9d_c00348{bottom:177.866697px;}
.y9e_c00348{bottom:178.837752px;}
.y9f_c00348{bottom:179.387324px;}
.ya0_c00348{bottom:180.705517px;}
.ya1_c00348{bottom:181.413745px;}
.ya2_c00348{bottom:183.167562px;}
.y93_c00348{bottom:189.574500px;}
.y94_c00348{bottom:191.139861px;}
.y95_c00348{bottom:192.227556px;}
.y96_c00348{bottom:193.006110px;}
.y97_c00348{bottom:194.931705px;}
.y98_c00348{bottom:195.728151px;}
.y99_c00348{bottom:197.534865px;}
.y8c_c00348{bottom:207.393000px;}
.y8d_c00348{bottom:210.113659px;}
.y8e_c00348{bottom:212.347482px;}
.y8f_c00348{bottom:212.961030px;}
.y90_c00348{bottom:214.483200px;}
.y91_c00348{bottom:217.305532px;}
.y92_c00348{bottom:218.116986px;}
.y86_c00348{bottom:229.506000px;}
.y87_c00348{bottom:230.302554px;}
.y88_c00348{bottom:232.672449px;}
.y89_c00348{bottom:233.165865px;}
.y8a_c00348{bottom:234.710430px;}
.y8b_c00348{bottom:235.168206px;}
.y7c_c00348{bottom:249.850750px;}
.y7f_c00348{bottom:249.850897px;}
.y7d_c00348{bottom:249.850978px;}
.y7b_c00348{bottom:249.851220px;}
.y7e_c00348{bottom:249.851566px;}
.y74_c00348{bottom:265.130749px;}
.y75_c00348{bottom:266.093855px;}
.y76_c00348{bottom:266.370481px;}
.y77_c00348{bottom:266.788219px;}
.y78_c00348{bottom:267.906508px;}
.y79_c00348{bottom:268.473445px;}
.y7a_c00348{bottom:269.238750px;}
.y6d_c00348{bottom:282.951644px;}
.y6e_c00348{bottom:283.675735px;}
.y6f_c00348{bottom:284.329388px;}
.y70_c00348{bottom:284.774598px;}
.y71_c00348{bottom:286.226227px;}
.y72_c00348{bottom:287.158143px;}
.y73_c00348{bottom:287.657629px;}
.y65_c00348{bottom:300.777162px;}
.y66_c00348{bottom:301.343328px;}
.y67_c00348{bottom:301.849578px;}
.y68_c00348{bottom:302.792594px;}
.y69_c00348{bottom:303.092205px;}
.y6a_c00348{bottom:303.354684px;}
.y6b_c00348{bottom:303.784747px;}
.y6c_c00348{bottom:304.428655px;}
.y5d_c00348{bottom:316.980982px;}
.y5e_c00348{bottom:318.837829px;}
.y5f_c00348{bottom:319.054068px;}
.y60_c00348{bottom:319.444614px;}
.y61_c00348{bottom:320.599400px;}
.y62_c00348{bottom:320.933607px;}
.y63_c00348{bottom:321.695988px;}
.y64_c00348{bottom:322.184930px;}
.y55_c00348{bottom:333.454500px;}
.y56_c00348{bottom:333.869639px;}
.y57_c00348{bottom:334.260774px;}
.y58_c00348{bottom:335.768647px;}
.y59_c00348{bottom:336.230091px;}
.y5a_c00348{bottom:336.602453px;}
.y5b_c00348{bottom:337.488075px;}
.y5c_c00348{bottom:338.787513px;}
.y54_c00348{bottom:350.077500px;}
.y85_c00348{bottom:356.670000px;}
.y53_c00348{bottom:366.640500px;}
.y80_c00348{bottom:368.034000px;}
.y81_c00348{bottom:368.876010px;}
.y82_c00348{bottom:369.464754px;}
.y83_c00348{bottom:370.142886px;}
.y84_c00348{bottom:371.872614px;}
.y4d_c00348{bottom:383.406000px;}
.y4e_c00348{bottom:385.078052px;}
.y4f_c00348{bottom:385.909557px;}
.y50_c00348{bottom:386.369677px;}
.y51_c00348{bottom:387.579750px;}
.y52_c00348{bottom:388.629172px;}
.y45_c00348{bottom:398.563002px;}
.y46_c00348{bottom:399.121146px;}
.y47_c00348{bottom:400.529088px;}
.y48_c00348{bottom:402.349050px;}
.y49_c00348{bottom:403.122762px;}
.y4a_c00348{bottom:403.986546px;}
.y4b_c00348{bottom:405.098501px;}
.y4c_c00348{bottom:405.562563px;}
.y3e_c00348{bottom:414.247707px;}
.y3f_c00348{bottom:415.344420px;}
.y40_c00348{bottom:416.151761px;}
.y41_c00348{bottom:417.938162px;}
.y42_c00348{bottom:418.493471px;}
.y43_c00348{bottom:419.774877px;}
.y44_c00348{bottom:422.725019px;}
.y38_c00348{bottom:431.524926px;}
.y39_c00348{bottom:432.878652px;}
.y3a_c00348{bottom:435.461472px;}
.y3b_c00348{bottom:438.241338px;}
.y3c_c00348{bottom:439.155126px;}
.y3d_c00348{bottom:440.363106px;}
.y32_c00348{bottom:447.984072px;}
.y33_c00348{bottom:448.431408px;}
.y34_c00348{bottom:450.702284px;}
.y35_c00348{bottom:451.415232px;}
.y36_c00348{bottom:454.624020px;}
.y37_c00348{bottom:455.538389px;}
.y28_c00348{bottom:466.873502px;}
.y29_c00348{bottom:467.824212px;}
.y2a_c00348{bottom:468.398340px;}
.y2b_c00348{bottom:469.554831px;}
.y2c_c00348{bottom:470.430441px;}
.y2d_c00348{bottom:470.981093px;}
.y2e_c00348{bottom:472.001409px;}
.y2f_c00348{bottom:472.883526px;}
.y30_c00348{bottom:473.218137px;}
.y31_c00348{bottom:473.664150px;}
.y21_c00348{bottom:482.534190px;}
.y22_c00348{bottom:483.739119px;}
.y23_c00348{bottom:484.357959px;}
.y24_c00348{bottom:486.609678px;}
.y25_c00348{bottom:487.530000px;}
.y26_c00348{bottom:488.142563px;}
.y27_c00348{bottom:490.554689px;}
.y1a_c00348{bottom:500.081288px;}
.y1b_c00348{bottom:501.909336px;}
.y1c_c00348{bottom:503.359790px;}
.y1d_c00348{bottom:504.016646px;}
.y1e_c00348{bottom:505.726718px;}
.y1f_c00348{bottom:507.408386px;}
.y20_c00348{bottom:508.229793px;}
.y12_c00348{bottom:517.352917px;}
.y13_c00348{bottom:518.340496px;}
.y14_c00348{bottom:520.710206px;}
.y15_c00348{bottom:521.339346px;}
.y16_c00348{bottom:522.796928px;}
.y17_c00348{bottom:524.562431px;}
.y18_c00348{bottom:524.944278px;}
.y19_c00348{bottom:525.526546px;}
.ya_c00348{bottom:533.818868px;}
.yb_c00348{bottom:534.823929px;}
.yc_c00348{bottom:537.166422px;}
.yd_c00348{bottom:538.343663px;}
.ye_c00348{bottom:538.995375px;}
.yf_c00348{bottom:541.213506px;}
.y10_c00348{bottom:542.108529px;}
.y11_c00348{bottom:542.562548px;}
.y3_c00348{bottom:549.745547px;}
.y4_c00348{bottom:551.523875px;}
.y5_c00348{bottom:553.097867px;}
.y6_c00348{bottom:553.739495px;}
.y7_c00348{bottom:555.708173px;}
.y8_c00348{bottom:557.931191px;}
.y9_c00348{bottom:558.557051px;}
.y1_c00348{bottom:566.464500px;}
.y2_c00348{bottom:570.805614px;}
.h1f_c00348{height:30.450000px;}
.h13_c00348{height:42.000000px;}
.h1b_c00348{height:46.194571px;}
.ha_c00348{height:55.662269px;}
.h17_c00348{height:57.743214px;}
.h1e_c00348{height:57.774279px;}
.h8_c00348{height:58.779328px;}
.h19_c00348{height:58.793091px;}
.hd_c00348{height:58.812964px;}
.hb_c00348{height:59.850000px;}
.hf_c00348{height:59.863195px;}
.h12_c00348{height:59.871093px;}
.h1c_c00348{height:60.892844px;}
.h1d_c00348{height:60.925603px;}
.h15_c00348{height:61.935192px;}
.hc_c00348{height:61.950000px;}
.h7_c00348{height:62.977852px;}
.h11_c00348{height:63.013890px;}
.h3_c00348{height:64.027482px;}
.h16_c00348{height:64.042474px;}
.h10_c00348{height:64.064121px;}
.h5_c00348{height:65.077113px;}
.h1a_c00348{height:65.092350px;}
.he_c00348{height:65.114353px;}
.h14_c00348{height:65.115752px;}
.h4_c00348{height:66.126744px;}
.h18_c00348{height:66.142227px;}
.h2_c00348{height:67.176375px;}
.h9_c00348{height:69.275637px;}
.h6_c00348{height:74.523791px;}
.h0_c00348{height:613.170000px;}
.h1_c00348{height:613.500000px;}
.w0_c00348{width:359.100000px;}
.w1_c00348{width:359.250000px;}
.x0_c00348{left:0.000000px;}
.x3_c00348{left:20.799459px;}
.x17_c00348{left:22.395605px;}
.x38_c00348{left:23.751000px;}
.x10_c00348{left:26.351064px;}
.x45_c00348{left:27.732000px;}
.x57_c00348{left:31.857000px;}
.x5b_c00348{left:32.971500px;}
.x1_c00348{left:37.107000px;}
.x29_c00348{left:38.217011px;}
.x3c_c00348{left:39.690000px;}
.x71_c00348{left:41.046511px;}
.x34_c00348{left:47.887803px;}
.xa_c00348{left:51.203552px;}
.x11_c00348{left:58.169943px;}
.x23_c00348{left:60.230421px;}
.x3d_c00348{left:61.290000px;}
.x1d_c00348{left:64.093730px;}
.x46_c00348{left:66.126000px;}
.x58_c00348{left:68.064000px;}
.x4_c00348{left:70.148061px;}
.x76_c00348{left:73.897023px;}
.x42_c00348{left:75.870000px;}
.x51_c00348{left:77.232270px;}
.x3e_c00348{left:79.650000px;}
.x62_c00348{left:81.171423px;}
.x18_c00348{left:83.241833px;}
.x1e_c00348{left:85.430277px;}
.x52_c00348{left:92.620246px;}
.x4e_c00348{left:94.142685px;}
.x5f_c00348{left:95.801832px;}
.x72_c00348{left:97.499272px;}
.x35_c00348{left:99.949055px;}
.x39_c00348{left:103.372500px;}
.x4f_c00348{left:104.434483px;}
.x6e_c00348{left:106.735680px;}
.x6c_c00348{left:110.220880px;}
.x74_c00348{left:111.385500px;}
.x5_c00348{left:113.826339px;}
.x2a_c00348{left:116.431448px;}
.x53_c00348{left:117.466960px;}
.x4a_c00348{left:120.619260px;}
.xb_c00348{left:122.120240px;}
.x77_c00348{left:128.227397px;}
.x24_c00348{left:129.323610px;}
.x6_c00348{left:131.631516px;}
.x12_c00348{left:134.505261px;}
.x47_c00348{left:137.929500px;}
.x6d_c00348{left:139.206181px;}
.x2b_c00348{left:141.004067px;}
.x3a_c00348{left:142.968000px;}
.x31_c00348{left:145.733495px;}
.x3f_c00348{left:149.580000px;}
.x19_c00348{left:153.419774px;}
.x13_c00348{left:154.753614px;}
.x2_c00348{left:157.572913px;}
.x48_c00348{left:159.903000px;}
.x1f_c00348{left:162.988209px;}
.x25_c00348{left:164.280956px;}
.x69_c00348{left:165.933981px;}
.x36_c00348{left:167.274500px;}
.x40_c00348{left:168.480000px;}
.x54_c00348{left:169.858050px;}
.x59_c00348{left:175.786500px;}
.xc_c00348{left:177.453797px;}
.x41_c00348{left:178.470000px;}
.x67_c00348{left:180.641110px;}
.x6f_c00348{left:181.810012px;}
.x60_c00348{left:183.791664px;}
.x7_c00348{left:186.262330px;}
.x63_c00348{left:192.527955px;}
.x20_c00348{left:194.689476px;}
.x37_c00348{left:195.906636px;}
.x73_c00348{left:197.174110px;}
.x5a_c00348{left:198.214500px;}
.x43_c00348{left:199.800000px;}
.x14_c00348{left:201.738569px;}
.x78_c00348{left:203.655315px;}
.x6a_c00348{left:205.298977px;}
.x32_c00348{left:206.903507px;}
.x2e_c00348{left:209.289956px;}
.x1a_c00348{left:210.367593px;}
.x4b_c00348{left:213.293135px;}
.x5c_c00348{left:214.589700px;}
.x21_c00348{left:215.810186px;}
.x49_c00348{left:219.807000px;}
.x3b_c00348{left:222.501000px;}
.x55_c00348{left:224.410084px;}
.x26_c00348{left:227.028510px;}
.x56_c00348{left:228.960000px;}
.x4c_c00348{left:230.851359px;}
.x61_c00348{left:232.895272px;}
.x2f_c00348{left:234.647573px;}
.x64_c00348{left:240.812622px;}
.xd_c00348{left:244.586340px;}
.x8_c00348{left:247.951080px;}
.x79_c00348{left:250.417101px;}
.x2c_c00348{left:251.532819px;}
.x68_c00348{left:255.664705px;}
.x65_c00348{left:257.100898px;}
.x15_c00348{left:258.642378px;}
.x70_c00348{left:260.058636px;}
.x27_c00348{left:262.249700px;}
.x6b_c00348{left:264.201835px;}
.x9_c00348{left:265.318695px;}
.x1b_c00348{left:266.360652px;}
.x30_c00348{left:268.169018px;}
.xe_c00348{left:271.671647px;}
.x28_c00348{left:275.615618px;}
.x44_c00348{left:281.340000px;}
.x2d_c00348{left:283.027239px;}
.xf_c00348{left:285.394869px;}
.x5d_c00348{left:286.884833px;}
.x16_c00348{left:289.726884px;}
.x1c_c00348{left:293.693184px;}
.x4d_c00348{left:296.726631px;}
.x22_c00348{left:298.901984px;}
.x50_c00348{left:300.152895px;}
.x33_c00348{left:305.133422px;}
.x5e_c00348{left:307.670526px;}
.x66_c00348{left:310.862682px;}
.x75_c00348{left:312.312000px;}
.x7a_c00348{left:331.560000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
.fs1d_c00348{font-size:27.066667pt;}
.fs11_c00348{font-size:37.333333pt;}
.fs19_c00348{font-size:41.061841pt;}
.fs8_c00348{font-size:49.477573pt;}
.fs15_c00348{font-size:51.327301pt;}
.fs1c_c00348{font-size:51.354914pt;}
.fs6_c00348{font-size:52.248292pt;}
.fs17_c00348{font-size:52.260525pt;}
.fsb_c00348{font-size:52.278190pt;}
.fs9_c00348{font-size:53.200000pt;}
.fsd_c00348{font-size:53.211729pt;}
.fs10_c00348{font-size:53.218750pt;}
.fs1a_c00348{font-size:54.126972pt;}
.fs1b_c00348{font-size:54.156092pt;}
.fs13_c00348{font-size:55.053504pt;}
.fsa_c00348{font-size:55.066667pt;}
.fs5_c00348{font-size:55.980313pt;}
.fsf_c00348{font-size:56.012347pt;}
.fs1_c00348{font-size:56.913318pt;}
.fs14_c00348{font-size:56.926643pt;}
.fse_c00348{font-size:56.945886pt;}
.fs3_c00348{font-size:57.846323pt;}
.fs18_c00348{font-size:57.859867pt;}
.fsc_c00348{font-size:57.879425pt;}
.fs12_c00348{font-size:57.880669pt;}
.fs2_c00348{font-size:58.779328pt;}
.fs16_c00348{font-size:58.793091pt;}
.fs0_c00348{font-size:59.712333pt;}
.fs7_c00348{font-size:61.578344pt;}
.fs4_c00348{font-size:66.243370pt;}
.y0_c00348{bottom:0.000000pt;}
.ye5_c00348{bottom:21.123397pt;}
.ye6_c00348{bottom:22.132373pt;}
.ye7_c00348{bottom:22.781093pt;}
.ye8_c00348{bottom:23.291353pt;}
.ye9_c00348{bottom:24.900769pt;}
.yea_c00348{bottom:25.503529pt;}
.yeb_c00348{bottom:25.898009pt;}
.yec_c00348{bottom:31.920000pt;}
.yde_c00348{bottom:36.013333pt;}
.ydf_c00348{bottom:37.855143pt;}
.ye0_c00348{bottom:38.974813pt;}
.ye1_c00348{bottom:39.551024pt;}
.ye2_c00348{bottom:41.015833pt;}
.ye3_c00348{bottom:42.689249pt;}
.ye4_c00348{bottom:43.034581pt;}
.yd4_c00348{bottom:47.546887pt;}
.yd5_c00348{bottom:48.123671pt;}
.yd6_c00348{bottom:49.601415pt;}
.yd7_c00348{bottom:50.333427pt;}
.yd8_c00348{bottom:51.899727pt;}
.yd9_c00348{bottom:52.712455pt;}
.yda_c00348{bottom:54.235815pt;}
.ydb_c00348{bottom:54.644447pt;}
.ydc_c00348{bottom:55.246095pt;}
.ydd_c00348{bottom:56.729159pt;}
.ycc_c00348{bottom:71.531963pt;}
.ycd_c00348{bottom:72.095715pt;}
.yce_c00348{bottom:72.680767pt;}
.ycf_c00348{bottom:73.031455pt;}
.yd0_c00348{bottom:73.751687pt;}
.yd1_c00348{bottom:74.706899pt;}
.yd2_c00348{bottom:74.867843pt;}
.yd3_c00348{bottom:75.245707pt;}
.yc4_c00348{bottom:80.669935pt;}
.yc5_c00348{bottom:81.301499pt;}
.yc6_c00348{bottom:81.842659pt;}
.yc7_c00348{bottom:83.323055pt;}
.yc8_c00348{bottom:84.251471pt;}
.yc9_c00348{bottom:86.508183pt;}
.yca_c00348{bottom:87.167503pt;}
.ycb_c00348{bottom:89.226907pt;}
.ybd_c00348{bottom:94.589495pt;}
.ybe_c00348{bottom:96.910367pt;}
.ybf_c00348{bottom:99.044863pt;}
.yc0_c00348{bottom:100.306467pt;}
.yc1_c00348{bottom:102.194135pt;}
.yc2_c00348{bottom:103.033211pt;}
.yc3_c00348{bottom:103.503199pt;}
.yb6_c00348{bottom:107.563643pt;}
.yb7_c00348{bottom:109.725139pt;}
.yb8_c00348{bottom:110.925679pt;}
.yb9_c00348{bottom:113.573175pt;}
.yba_c00348{bottom:114.386295pt;}
.ybb_c00348{bottom:116.510295pt;}
.ybc_c00348{bottom:118.455559pt;}
.yad_c00348{bottom:126.021111pt;}
.yae_c00348{bottom:127.480643pt;}
.yaf_c00348{bottom:128.331739pt;}
.yb0_c00348{bottom:129.625891pt;}
.yb1_c00348{bottom:131.650363pt;}
.yb2_c00348{bottom:132.216827pt;}
.yb3_c00348{bottom:132.991203pt;}
.yb4_c00348{bottom:134.004319pt;}
.yb5_c00348{bottom:134.617359pt;}
.ya3_c00348{bottom:138.034655pt;}
.ya4_c00348{bottom:138.531879pt;}
.ya5_c00348{bottom:140.087055pt;}
.ya6_c00348{bottom:141.626271pt;}
.ya7_c00348{bottom:142.211639pt;}
.ya8_c00348{bottom:143.741167pt;}
.ya9_c00348{bottom:144.248527pt;}
.yaa_c00348{bottom:146.052959pt;}
.yab_c00348{bottom:146.736103pt;}
.yac_c00348{bottom:148.585055pt;}
.y9a_c00348{bottom:153.626999pt;}
.y9b_c00348{bottom:154.355347pt;}
.y9c_c00348{bottom:156.241535pt;}
.y9d_c00348{bottom:158.103731pt;}
.y9e_c00348{bottom:158.966891pt;}
.y9f_c00348{bottom:159.455399pt;}
.ya0_c00348{bottom:160.627127pt;}
.ya1_c00348{bottom:161.256663pt;}
.ya2_c00348{bottom:162.815611pt;}
.y93_c00348{bottom:168.510667pt;}
.y94_c00348{bottom:169.902099pt;}
.y95_c00348{bottom:170.868939pt;}
.y96_c00348{bottom:171.560987pt;}
.y97_c00348{bottom:173.272627pt;}
.y98_c00348{bottom:173.980579pt;}
.y99_c00348{bottom:175.586547pt;}
.y8c_c00348{bottom:184.349333pt;}
.y8d_c00348{bottom:186.767697pt;}
.y8e_c00348{bottom:188.753317pt;}
.y8f_c00348{bottom:189.298693pt;}
.y90_c00348{bottom:190.651733pt;}
.y91_c00348{bottom:193.160473pt;}
.y92_c00348{bottom:193.881765pt;}
.y86_c00348{bottom:204.005333pt;}
.y87_c00348{bottom:204.713381pt;}
.y88_c00348{bottom:206.819955pt;}
.y89_c00348{bottom:207.258547pt;}
.y8a_c00348{bottom:208.631493pt;}
.y8b_c00348{bottom:209.038405pt;}
.y7c_c00348{bottom:222.089556pt;}
.y7f_c00348{bottom:222.089687pt;}
.y7d_c00348{bottom:222.089759pt;}
.y7b_c00348{bottom:222.089973pt;}
.y7e_c00348{bottom:222.090281pt;}
.y74_c00348{bottom:235.671777pt;}
.y75_c00348{bottom:236.527871pt;}
.y76_c00348{bottom:236.773761pt;}
.y77_c00348{bottom:237.145084pt;}
.y78_c00348{bottom:238.139119pt;}
.y79_c00348{bottom:238.643063pt;}
.y7a_c00348{bottom:239.323333pt;}
.y6d_c00348{bottom:251.512572pt;}
.y6e_c00348{bottom:252.156209pt;}
.y6f_c00348{bottom:252.737233pt;}
.y70_c00348{bottom:253.132976pt;}
.y71_c00348{bottom:254.423313pt;}
.y72_c00348{bottom:255.251683pt;}
.y73_c00348{bottom:255.695671pt;}
.y65_c00348{bottom:267.357477pt;}
.y66_c00348{bottom:267.860736pt;}
.y67_c00348{bottom:268.310736pt;}
.y68_c00348{bottom:269.148972pt;}
.y69_c00348{bottom:269.415293pt;}
.y6a_c00348{bottom:269.648608pt;}
.y6b_c00348{bottom:270.030887pt;}
.y6c_c00348{bottom:270.603249pt;}
.y5d_c00348{bottom:281.760873pt;}
.y5e_c00348{bottom:283.411404pt;}
.y5f_c00348{bottom:283.603616pt;}
.y60_c00348{bottom:283.950768pt;}
.y61_c00348{bottom:284.977244pt;}
.y62_c00348{bottom:285.274317pt;}
.y63_c00348{bottom:285.951989pt;}
.y64_c00348{bottom:286.386604pt;}
.y55_c00348{bottom:296.404000pt;}
.y56_c00348{bottom:296.773012pt;}
.y57_c00348{bottom:297.120688pt;}
.y58_c00348{bottom:298.461020pt;}
.y59_c00348{bottom:298.871192pt;}
.y5a_c00348{bottom:299.202180pt;}
.y5b_c00348{bottom:299.989400pt;}
.y5c_c00348{bottom:301.144456pt;}
.y54_c00348{bottom:311.180000pt;}
.y85_c00348{bottom:317.040000pt;}
.y53_c00348{bottom:325.902667pt;}
.y80_c00348{bottom:327.141333pt;}
.y81_c00348{bottom:327.889787pt;}
.y82_c00348{bottom:328.413115pt;}
.y83_c00348{bottom:329.015899pt;}
.y84_c00348{bottom:330.553435pt;}
.y4d_c00348{bottom:340.805333pt;}
.y4e_c00348{bottom:342.291601pt;}
.y4f_c00348{bottom:343.030717pt;}
.y50_c00348{bottom:343.439713pt;}
.y51_c00348{bottom:344.515333pt;}
.y52_c00348{bottom:345.448153pt;}
.y45_c00348{bottom:354.278224pt;}
.y46_c00348{bottom:354.774352pt;}
.y47_c00348{bottom:356.025856pt;}
.y48_c00348{bottom:357.643600pt;}
.y49_c00348{bottom:358.331344pt;}
.y4a_c00348{bottom:359.099152pt;}
.y4b_c00348{bottom:360.087556pt;}
.y4c_c00348{bottom:360.500056pt;}
.y3e_c00348{bottom:368.220184pt;}
.y3f_c00348{bottom:369.195040pt;}
.y40_c00348{bottom:369.912676pt;}
.y41_c00348{bottom:371.500588pt;}
.y42_c00348{bottom:371.994196pt;}
.y43_c00348{bottom:373.133224pt;}
.y44_c00348{bottom:375.755572pt;}
.y38_c00348{bottom:383.577712pt;}
.y39_c00348{bottom:384.781024pt;}
.y3a_c00348{bottom:387.076864pt;}
.y3b_c00348{bottom:389.547856pt;}
.y3c_c00348{bottom:390.360112pt;}
.y3d_c00348{bottom:391.433872pt;}
.y32_c00348{bottom:398.208064pt;}
.y33_c00348{bottom:398.605696pt;}
.y34_c00348{bottom:400.624252pt;}
.y35_c00348{bottom:401.257984pt;}
.y36_c00348{bottom:404.110240pt;}
.y37_c00348{bottom:404.923012pt;}
.y28_c00348{bottom:414.998668pt;}
.y29_c00348{bottom:415.843744pt;}
.y2a_c00348{bottom:416.354080pt;}
.y2b_c00348{bottom:417.382072pt;}
.y2c_c00348{bottom:418.160392pt;}
.y2d_c00348{bottom:418.649860pt;}
.y2e_c00348{bottom:419.556808pt;}
.y2f_c00348{bottom:420.340912pt;}
.y30_c00348{bottom:420.638344pt;}
.y31_c00348{bottom:421.034800pt;}
.y21_c00348{bottom:428.919280pt;}
.y22_c00348{bottom:429.990328pt;}
.y23_c00348{bottom:430.540408pt;}
.y24_c00348{bottom:432.541936pt;}
.y25_c00348{bottom:433.360000pt;}
.y26_c00348{bottom:433.904500pt;}
.y27_c00348{bottom:436.048612pt;}
.y1a_c00348{bottom:444.516700pt;}
.y1b_c00348{bottom:446.141632pt;}
.y1c_c00348{bottom:447.430924pt;}
.y1d_c00348{bottom:448.014796pt;}
.y1e_c00348{bottom:449.534860pt;}
.y1f_c00348{bottom:451.029676pt;}
.y20_c00348{bottom:451.759816pt;}
.y12_c00348{bottom:459.869260pt;}
.y13_c00348{bottom:460.747108pt;}
.y14_c00348{bottom:462.853516pt;}
.y15_c00348{bottom:463.412752pt;}
.y16_c00348{bottom:464.708380pt;}
.y17_c00348{bottom:466.277716pt;}
.y18_c00348{bottom:466.617136pt;}
.y19_c00348{bottom:467.134708pt;}
.ya_c00348{bottom:474.505660pt;}
.yb_c00348{bottom:475.399048pt;}
.yc_c00348{bottom:477.481264pt;}
.yd_c00348{bottom:478.527700pt;}
.ye_c00348{bottom:479.107000pt;}
.yf_c00348{bottom:481.078672pt;}
.y10_c00348{bottom:481.874248pt;}
.y11_c00348{bottom:482.277820pt;}
.y3_c00348{bottom:488.662708pt;}
.y4_c00348{bottom:490.243444pt;}
.y5_c00348{bottom:491.642548pt;}
.y6_c00348{bottom:492.212884pt;}
.y7_c00348{bottom:493.962820pt;}
.y8_c00348{bottom:495.938836pt;}
.y9_c00348{bottom:496.495156pt;}
.y1_c00348{bottom:503.524000pt;}
.y2_c00348{bottom:507.382768pt;}
.h1f_c00348{height:27.066667pt;}
.h13_c00348{height:37.333333pt;}
.h1b_c00348{height:41.061841pt;}
.ha_c00348{height:49.477573pt;}
.h17_c00348{height:51.327301pt;}
.h1e_c00348{height:51.354914pt;}
.h8_c00348{height:52.248292pt;}
.h19_c00348{height:52.260525pt;}
.hd_c00348{height:52.278190pt;}
.hb_c00348{height:53.200000pt;}
.hf_c00348{height:53.211729pt;}
.h12_c00348{height:53.218750pt;}
.h1c_c00348{height:54.126972pt;}
.h1d_c00348{height:54.156092pt;}
.h15_c00348{height:55.053504pt;}
.hc_c00348{height:55.066667pt;}
.h7_c00348{height:55.980313pt;}
.h11_c00348{height:56.012347pt;}
.h3_c00348{height:56.913318pt;}
.h16_c00348{height:56.926643pt;}
.h10_c00348{height:56.945886pt;}
.h5_c00348{height:57.846323pt;}
.h1a_c00348{height:57.859867pt;}
.he_c00348{height:57.879425pt;}
.h14_c00348{height:57.880669pt;}
.h4_c00348{height:58.779328pt;}
.h18_c00348{height:58.793091pt;}
.h2_c00348{height:59.712333pt;}
.h9_c00348{height:61.578344pt;}
.h6_c00348{height:66.243370pt;}
.h0_c00348{height:545.040000pt;}
.h1_c00348{height:545.333333pt;}
.w0_c00348{width:319.200000pt;}
.w1_c00348{width:319.333333pt;}
.x0_c00348{left:0.000000pt;}
.x3_c00348{left:18.488408pt;}
.x17_c00348{left:19.907204pt;}
.x38_c00348{left:21.112000pt;}
.x10_c00348{left:23.423168pt;}
.x45_c00348{left:24.650667pt;}
.x57_c00348{left:28.317333pt;}
.x5b_c00348{left:29.308000pt;}
.x1_c00348{left:32.984000pt;}
.x29_c00348{left:33.970676pt;}
.x3c_c00348{left:35.280000pt;}
.x71_c00348{left:36.485788pt;}
.x34_c00348{left:42.566936pt;}
.xa_c00348{left:45.514268pt;}
.x11_c00348{left:51.706616pt;}
.x23_c00348{left:53.538152pt;}
.x3d_c00348{left:54.480000pt;}
.x1d_c00348{left:56.972204pt;}
.x46_c00348{left:58.778667pt;}
.x58_c00348{left:60.501333pt;}
.x4_c00348{left:62.353832pt;}
.x76_c00348{left:65.686243pt;}
.x42_c00348{left:67.440000pt;}
.x51_c00348{left:68.650907pt;}
.x3e_c00348{left:70.800000pt;}
.x62_c00348{left:72.152376pt;}
.x18_c00348{left:73.992740pt;}
.x1e_c00348{left:75.938024pt;}
.x52_c00348{left:82.329108pt;}
.x4e_c00348{left:83.682387pt;}
.x5f_c00348{left:85.157184pt;}
.x72_c00348{left:86.666020pt;}
.x35_c00348{left:88.843604pt;}
.x39_c00348{left:91.886667pt;}
.x4f_c00348{left:92.830652pt;}
.x6e_c00348{left:94.876160pt;}
.x6c_c00348{left:97.974116pt;}
.x74_c00348{left:99.009333pt;}
.x5_c00348{left:101.178968pt;}
.x2a_c00348{left:103.494620pt;}
.x53_c00348{left:104.415076pt;}
.x4a_c00348{left:107.217120pt;}
.xb_c00348{left:108.551324pt;}
.x77_c00348{left:113.979908pt;}
.x24_c00348{left:114.954320pt;}
.x6_c00348{left:117.005792pt;}
.x12_c00348{left:119.560232pt;}
.x47_c00348{left:122.604000pt;}
.x6d_c00348{left:123.738828pt;}
.x2b_c00348{left:125.336948pt;}
.x3a_c00348{left:127.082667pt;}
.x31_c00348{left:129.540884pt;}
.x3f_c00348{left:132.960000pt;}
.x19_c00348{left:136.373132pt;}
.x13_c00348{left:137.558768pt;}
.x2_c00348{left:140.064812pt;}
.x48_c00348{left:142.136000pt;}
.x1f_c00348{left:144.878408pt;}
.x25_c00348{left:146.027516pt;}
.x69_c00348{left:147.496872pt;}
.x36_c00348{left:148.688444pt;}
.x40_c00348{left:149.760000pt;}
.x54_c00348{left:150.984933pt;}
.x59_c00348{left:156.254667pt;}
.xc_c00348{left:157.736708pt;}
.x41_c00348{left:158.640000pt;}
.x67_c00348{left:160.569876pt;}
.x6f_c00348{left:161.608900pt;}
.x60_c00348{left:163.370368pt;}
.x7_c00348{left:165.566516pt;}
.x63_c00348{left:171.135960pt;}
.x20_c00348{left:173.057312pt;}
.x37_c00348{left:174.139232pt;}
.x73_c00348{left:175.265876pt;}
.x5a_c00348{left:176.190667pt;}
.x43_c00348{left:177.600000pt;}
.x14_c00348{left:179.323172pt;}
.x78_c00348{left:181.026947pt;}
.x6a_c00348{left:182.487980pt;}
.x32_c00348{left:183.914228pt;}
.x2e_c00348{left:186.035516pt;}
.x1a_c00348{left:186.993416pt;}
.x4b_c00348{left:189.593897pt;}
.x5c_c00348{left:190.746400pt;}
.x21_c00348{left:191.831276pt;}
.x49_c00348{left:195.384000pt;}
.x3b_c00348{left:197.778667pt;}
.x55_c00348{left:199.475631pt;}
.x26_c00348{left:201.803120pt;}
.x56_c00348{left:203.520000pt;}
.x4c_c00348{left:205.201208pt;}
.x61_c00348{left:207.018020pt;}
.x2f_c00348{left:208.575620pt;}
.x64_c00348{left:214.055664pt;}
.xd_c00348{left:217.410080pt;}
.x8_c00348{left:220.400960pt;}
.x79_c00348{left:222.592979pt;}
.x2c_c00348{left:223.584728pt;}
.x68_c00348{left:227.257516pt;}
.x65_c00348{left:228.534132pt;}
.x15_c00348{left:229.904336pt;}
.x70_c00348{left:231.163232pt;}
.x27_c00348{left:233.110844pt;}
.x6b_c00348{left:234.846076pt;}
.x9_c00348{left:235.838840pt;}
.x1b_c00348{left:236.765024pt;}
.x30_c00348{left:238.372460pt;}
.xe_c00348{left:241.485908pt;}
.x28_c00348{left:244.991660pt;}
.x44_c00348{left:250.080000pt;}
.x2d_c00348{left:251.579768pt;}
.xf_c00348{left:253.684328pt;}
.x5d_c00348{left:255.008740pt;}
.x16_c00348{left:257.535008pt;}
.x1c_c00348{left:261.060608pt;}
.x4d_c00348{left:263.757005pt;}
.x22_c00348{left:265.690652pt;}
.x50_c00348{left:266.802573pt;}
.x33_c00348{left:271.229708pt;}
.x5e_c00348{left:273.484912pt;}
.x66_c00348{left:276.322384pt;}
.x75_c00348{left:277.610667pt;}
.x7a_c00348{left:294.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00349 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00349 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00349 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00349 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00349.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00349{transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);}
.mc8_c00349{transform:matrix(0.081215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081215,0.000000,0.000000,0.250000,0,0);}
.mab_c00349{transform:matrix(0.081600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081600,0.000000,0.000000,0.250000,0,0);}
.maa_c00349{transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090915,0.000000,0.000000,0.250000,0,0);}
.ma7_c00349{transform:matrix(0.115395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00349{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m29_c00349{transform:matrix(0.136090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136090,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.140405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140405,0.000000,0.000000,0.250000,0,0);}
.m33_c00349{transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147135,0.000000,0.000000,0.250000,0,0);}
.m60_c00349{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.m6e_c00349{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.152660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152660,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);}
.mad_c00349{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m32_c00349{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.mb6_c00349{transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);}
.m61_c00349{transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);}
.m34_c00349{transform:matrix(0.159980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00349{transform:matrix(0.162630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00349{transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162920,0.000000,0.000000,0.250000,0,0);}
.mb7_c00349{transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);}
.m2d_c00349{transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);}
.m6a_c00349{transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);}
.m7f_c00349{transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);}
.m1e_c00349{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m63_c00349{transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168220,0.000000,0.000000,0.250000,0,0);}
.m8a_c00349{transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168255,0.000000,0.000000,0.250000,0,0);}
.mcf_c00349{transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170595,0.000000,0.000000,0.250000,0,0);}
.m62_c00349{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m35_c00349{transform:matrix(0.171095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171095,0.000000,0.000000,0.250000,0,0);}
.m21_c00349{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.m79_c00349{transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);}
.mcc_c00349{transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);}
.m9b_c00349{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m23_c00349{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m73_c00349{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176580,0.000000,0.000000,0.250000,0,0);}
.m5e_c00349{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00349{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m6c_c00349{transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177655,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m59_c00349{transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);}
.m89_c00349{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.mc9_c00349{transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);}
.mcb_c00349{transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179330,0.000000,0.000000,0.250000,0,0);}
.m52_c00349{transform:matrix(0.180830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180830,0.000000,0.000000,0.250000,0,0);}
.mb8_c00349{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m6d_c00349{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m31_c00349{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.mb2_c00349{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m90_c00349{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.maf_c00349{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m88_c00349{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.mcd_c00349{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m84_c00349{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.m96_c00349{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.m93_c00349{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.mc2_c00349{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m15_c00349{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.mca_c00349{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m82_c00349{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.mb3_c00349{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m7b_c00349{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);}
.m72_c00349{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.ma3_c00349{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.mce_c00349{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m99_c00349{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m56_c00349{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.mbf_c00349{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m13_c00349{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m5d_c00349{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m3c_c00349{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m7d_c00349{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m57_c00349{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m58_c00349{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);}
.m16_c00349{transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);}
.m53_c00349{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m9e_c00349{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.mc0_c00349{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.mc4_c00349{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);}
.m4b_c00349{transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);}
.m9c_c00349{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m78_c00349{transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197705,0.000000,0.000000,0.250000,0,0);}
.m8f_c00349{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m22_c00349{transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);}
.m5a_c00349{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m44_c00349{transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);}
.m37_c00349{transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);}
.m50_c00349{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.mc6_c00349{transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);}
.mc3_c00349{transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);}
.m9f_c00349{transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200780,0.000000,0.000000,0.250000,0,0);}
.m7c_c00349{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m76_c00349{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m19_c00349{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m14_c00349{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m71_c00349{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.m97_c00349{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m4f_c00349{transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204295,0.000000,0.000000,0.250000,0,0);}
.mb4_c00349{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m55_c00349{transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);}
.m75_c00349{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.mb1_c00349{transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);}
.m6b_c00349{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m42_c00349{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);}
.ma5_c00349{transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205790,0.000000,0.000000,0.250000,0,0);}
.m5c_c00349{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.m7e_c00349{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m51_c00349{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.mb0_c00349{transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207970,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.m8c_c00349{transform:matrix(0.208790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208790,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);}
.m7a_c00349{transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);}
.mb9_c00349{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m3d_c00349{transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.md4_c00349{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m8e_c00349{transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);}
.m54_c00349{transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);}
.m5b_c00349{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m38_c00349{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.mbc_c00349{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m48_c00349{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.mc1_c00349{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00349{transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);}
.m65_c00349{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.md6_c00349{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.m2c_c00349{transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);}
.m83_c00349{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.m66_c00349{transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);}
.m85_c00349{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00349{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);}
.mc5_c00349{transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);}
.m77_c00349{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00349{transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220860,0.000000,0.000000,0.250000,0,0);}
.m43_c00349{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m8d_c00349{transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00349{transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);}
.m80_c00349{transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223465,0.000000,0.000000,0.250000,0,0);}
.md3_c00349{transform:matrix(0.224505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224505,0.000000,0.000000,0.250000,0,0);}
.ma2_c00349{transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224605,0.000000,0.000000,0.250000,0,0);}
.m92_c00349{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m49_c00349{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);}
.mae_c00349{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.m17_c00349{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.mbd_c00349{transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);}
.m98_c00349{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m68_c00349{transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);}
.m94_c00349{transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);}
.md1_c00349{transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);}
.m9a_c00349{transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);}
.m91_c00349{transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);}
.m41_c00349{transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);}
.md5_c00349{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m87_c00349{transform:matrix(0.238005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238005,0.000000,0.000000,0.250000,0,0);}
.m81_c00349{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.m64_c00349{transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);}
.m2f_c00349{transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);}
.m86_c00349{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m70_c00349{transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);}
.m95_c00349{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m2e_c00349{transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00349{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00349{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m40_c00349{transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m46_c00349{transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00349{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.ma6_c00349{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.md0_c00349{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m47_c00349{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m6f_c00349{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.260140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260140,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);}
.ma1_c00349{transform:matrix(0.271380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271380,0.000000,0.000000,0.250000,0,0);}
.m4d_c00349{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00349{transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);}
.mbb_c00349{transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);}
.md2_c00349{transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);}
.m4c_c00349{transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00349{transform:matrix(0.303485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303485,0.000000,0.000000,0.250000,0,0);}
.m4e_c00349{transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);}
.ma9_c00349{transform:matrix(0.317195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317195,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332240,0.000000,0.000000,0.250000,0,0);}
.mc7_c00349{transform:matrix(0.340200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340200,0.000000,0.000000,0.250000,0,0);}
.mba_c00349{transform:matrix(0.352680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352680,0.000000,0.000000,0.250000,0,0);}
.m67_c00349{transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);}
.m39_c00349{transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369480,0.000000,0.000000,0.250000,0,0);}
.m1f_c00349{transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);}
.ma8_c00349{transform:matrix(0.466725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466725,0.000000,0.000000,0.250000,0,0);}
.mac_c00349{transform:matrix(1.433675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.433675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.433675,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:0.000000px;}
.fc0_c00349{color:transparent;}
.fse_c00349{font-size:22.050000px;}
.fsd_c00349{font-size:25.200000px;}
.fs2_c00349{font-size:50.400000px;}
.fsc_c00349{font-size:55.650000px;}
.fs7_c00349{font-size:56.700000px;}
.fs6_c00349{font-size:57.750000px;}
.fs3_c00349{font-size:59.850000px;}
.fs1_c00349{font-size:60.900000px;}
.fsa_c00349{font-size:63.000000px;}
.fs9_c00349{font-size:65.100000px;}
.fsf_c00349{font-size:67.200000px;}
.fs4_c00349{font-size:68.250000px;}
.fs8_c00349{font-size:69.300000px;}
.fsb_c00349{font-size:72.450000px;}
.fs5_c00349{font-size:73.500000px;}
.fs0_c00349{font-size:90.300000px;}
.y0_c00349{bottom:0.000000px;}
.y47_c00349{bottom:25.923000px;}
.y48_c00349{bottom:26.319000px;}
.y49_c00349{bottom:27.048000px;}
.y4a_c00349{bottom:28.063500px;}
.y4b_c00349{bottom:28.518000px;}
.y4c_c00349{bottom:28.852500px;}
.y4d_c00349{bottom:29.574000px;}
.y46_c00349{bottom:46.545000px;}
.y3f_c00349{bottom:62.103000px;}
.y40_c00349{bottom:62.890500px;}
.y41_c00349{bottom:64.077000px;}
.y42_c00349{bottom:64.431000px;}
.y43_c00349{bottom:65.737500px;}
.y44_c00349{bottom:66.588000px;}
.y45_c00349{bottom:67.345500px;}
.y38_c00349{bottom:72.639000px;}
.y39_c00349{bottom:73.956000px;}
.y3a_c00349{bottom:74.389500px;}
.y3b_c00349{bottom:75.688500px;}
.y3c_c00349{bottom:77.356500px;}
.y3d_c00349{bottom:77.665500px;}
.y3e_c00349{bottom:78.564000px;}
.y32_c00349{bottom:107.463000px;}
.y33_c00349{bottom:108.463500px;}
.y34_c00349{bottom:109.119000px;}
.y35_c00349{bottom:109.480500px;}
.y36_c00349{bottom:110.403000px;}
.y37_c00349{bottom:111.261000px;}
.y31_c00349{bottom:128.335500px;}
.y30_c00349{bottom:136.620000px;}
.y2f_c00349{bottom:147.682500px;}
.y2e_c00349{bottom:165.102000px;}
.y2d_c00349{bottom:198.693000px;}
.y2c_c00349{bottom:212.647500px;}
.y2b_c00349{bottom:213.205500px;}
.y2a_c00349{bottom:213.984000px;}
.y29_c00349{bottom:214.246500px;}
.y28_c00349{bottom:214.711500px;}
.y27_c00349{bottom:214.995000px;}
.y26_c00349{bottom:215.502000px;}
.y25_c00349{bottom:215.740500px;}
.y24_c00349{bottom:216.814500px;}
.y23_c00349{bottom:230.581500px;}
.y22_c00349{bottom:247.105500px;}
.y21_c00349{bottom:247.329000px;}
.y20_c00349{bottom:247.722000px;}
.y1f_c00349{bottom:247.968000px;}
.y1e_c00349{bottom:248.455500px;}
.y1d_c00349{bottom:248.610000px;}
.y1c_c00349{bottom:249.204000px;}
.y1b_c00349{bottom:249.463500px;}
.y1a_c00349{bottom:250.293000px;}
.y19_c00349{bottom:265.723500px;}
.y18_c00349{bottom:282.490500px;}
.y17_c00349{bottom:299.521500px;}
.y16_c00349{bottom:316.746000px;}
.y15_c00349{bottom:333.424500px;}
.y14_c00349{bottom:351.243000px;}
.y13_c00349{bottom:368.142000px;}
.y12_c00349{bottom:385.570500px;}
.y11_c00349{bottom:401.290500px;}
.y10_c00349{bottom:402.126000px;}
.yf_c00349{bottom:402.469500px;}
.ye_c00349{bottom:403.101000px;}
.yd_c00349{bottom:403.362000px;}
.yc_c00349{bottom:404.163000px;}
.yb_c00349{bottom:404.461500px;}
.ya_c00349{bottom:417.661500px;}
.y9_c00349{bottom:435.444000px;}
.y8_c00349{bottom:452.437500px;}
.y7_c00349{bottom:469.111500px;}
.y6_c00349{bottom:486.879000px;}
.y5_c00349{bottom:504.063000px;}
.y4_c00349{bottom:520.896000px;}
.y3_c00349{bottom:537.745500px;}
.y2_c00349{bottom:554.490000px;}
.y1_c00349{bottom:569.308500px;}
.h10_c00349{height:22.050000px;}
.hf_c00349{height:25.200000px;}
.h4_c00349{height:50.400000px;}
.he_c00349{height:55.650000px;}
.h9_c00349{height:56.700000px;}
.h8_c00349{height:57.750000px;}
.h5_c00349{height:59.850000px;}
.h3_c00349{height:60.900000px;}
.hc_c00349{height:63.000000px;}
.hb_c00349{height:65.100000px;}
.h11_c00349{height:67.200000px;}
.h6_c00349{height:68.250000px;}
.ha_c00349{height:69.300000px;}
.hd_c00349{height:72.450000px;}
.h7_c00349{height:73.500000px;}
.h2_c00349{height:90.300000px;}
.h0_c00349{height:613.170000px;}
.h1_c00349{height:613.500000px;}
.w0_c00349{width:359.100000px;}
.w1_c00349{width:359.250000px;}
.x0_c00349{left:0.000000px;}
.x3_c00349{left:42.120000px;}
.x31_c00349{left:43.200000px;}
.x2d_c00349{left:48.600000px;}
.x1d_c00349{left:51.840000px;}
.x4_c00349{left:62.100000px;}
.x38_c00349{left:63.453000px;}
.x22_c00349{left:64.800000px;}
.x27_c00349{left:65.880000px;}
.x6e_c00349{left:70.069500px;}
.x49_c00349{left:72.633000px;}
.x59_c00349{left:76.680000px;}
.x5f_c00349{left:78.030000px;}
.x18_c00349{left:80.460000px;}
.x6c_c00349{left:82.347000px;}
.x44_c00349{left:88.023000px;}
.x45_c00349{left:89.373000px;}
.x3e_c00349{left:91.263000px;}
.x10_c00349{left:94.500000px;}
.xb_c00349{left:96.660000px;}
.x19_c00349{left:100.980000px;}
.x2e_c00349{left:102.870000px;}
.x5_c00349{left:104.220000px;}
.x4d_c00349{left:107.655000px;}
.x11_c00349{left:109.890000px;}
.x23_c00349{left:111.510000px;}
.x28_c00349{left:112.590000px;}
.x32_c00349{left:113.670000px;}
.x53_c00349{left:114.922500px;}
.x1a_c00349{left:118.800000px;}
.x36_c00349{left:121.882500px;}
.x1e_c00349{left:124.470000px;}
.x4e_c00349{left:127.575000px;}
.x54_c00349{left:130.783500px;}
.x12_c00349{left:132.030000px;}
.xc_c00349{left:134.730000px;}
.x37_c00349{left:140.517000px;}
.x60_c00349{left:141.750000px;}
.x51_c00349{left:144.184500px;}
.x3f_c00349{left:146.343000px;}
.x6a_c00349{left:153.270000px;}
.x1f_c00349{left:156.600000px;}
.x6_c00349{left:157.950000px;}
.xd_c00349{left:162.000000px;}
.x33_c00349{left:163.080000px;}
.x3b_c00349{left:165.243000px;}
.x39_c00349{left:172.803000px;}
.x1_c00349{left:175.230000px;}
.x5c_c00349{left:177.660000px;}
.x55_c00349{left:183.433500px;}
.x13_c00349{left:184.680000px;}
.x63_c00349{left:186.030000px;}
.x67_c00349{left:187.120500px;}
.x29_c00349{left:188.190000px;}
.x6d_c00349{left:190.617000px;}
.x24_c00349{left:193.320000px;}
.x40_c00349{left:195.213000px;}
.x65_c00349{left:200.004000px;}
.x2a_c00349{left:201.420000px;}
.x5a_c00349{left:205.740000px;}
.x5d_c00349{left:208.170000px;}
.x14_c00349{left:209.790000px;}
.x25_c00349{left:211.410000px;}
.x46_c00349{left:212.763000px;}
.x56_c00349{left:214.473000px;}
.x6f_c00349{left:216.696000px;}
.x7_c00349{left:219.240000px;}
.x4f_c00349{left:222.666000px;}
.x20_c00349{left:224.100000px;}
.x42_c00349{left:225.723000px;}
.x5e_c00349{left:229.230000px;}
.x57_c00349{left:232.018500px;}
.x4b_c00349{left:233.553000px;}
.x70_c00349{left:239.044500px;}
.x26_c00349{left:240.300000px;}
.x50_c00349{left:241.560000px;}
.x8_c00349{left:243.810000px;}
.x34_c00349{left:245.160000px;}
.x3c_c00349{left:249.483000px;}
.x41_c00349{left:250.833000px;}
.x1b_c00349{left:252.990000px;}
.x4a_c00349{left:254.073000px;}
.x15_c00349{left:255.690000px;}
.x62_c00349{left:257.040000px;}
.x66_c00349{left:261.541500px;}
.x68_c00349{left:262.942500px;}
.x64_c00349{left:264.870000px;}
.x47_c00349{left:267.303000px;}
.x16_c00349{left:269.190000px;}
.xe_c00349{left:271.620000px;}
.x69_c00349{left:276.993000px;}
.x2b_c00349{left:283.500000px;}
.x9_c00349{left:284.580000px;}
.x43_c00349{left:286.473000px;}
.x48_c00349{left:288.903000px;}
.x52_c00349{left:290.254500px;}
.x2f_c00349{left:292.680000px;}
.x17_c00349{left:294.030000px;}
.xa_c00349{left:296.460000px;}
.x21_c00349{left:297.540000px;}
.x1c_c00349{left:302.130000px;}
.x3a_c00349{left:305.103000px;}
.x61_c00349{left:306.450000px;}
.x35_c00349{left:308.070000px;}
.x30_c00349{left:311.580000px;}
.x4c_c00349{left:313.473000px;}
.xf_c00349{left:315.090000px;}
.x5b_c00349{left:317.250000px;}
.x2c_c00349{left:318.870000px;}
.x58_c00349{left:321.061500px;}
.x3d_c00349{left:326.973000px;}
.x6b_c00349{left:334.887000px;}
.x2_c00349{left:343.440000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
.fse_c00349{font-size:19.600000pt;}
.fsd_c00349{font-size:22.400000pt;}
.fs2_c00349{font-size:44.800000pt;}
.fsc_c00349{font-size:49.466667pt;}
.fs7_c00349{font-size:50.400000pt;}
.fs6_c00349{font-size:51.333333pt;}
.fs3_c00349{font-size:53.200000pt;}
.fs1_c00349{font-size:54.133333pt;}
.fsa_c00349{font-size:56.000000pt;}
.fs9_c00349{font-size:57.866667pt;}
.fsf_c00349{font-size:59.733333pt;}
.fs4_c00349{font-size:60.666667pt;}
.fs8_c00349{font-size:61.600000pt;}
.fsb_c00349{font-size:64.400000pt;}
.fs5_c00349{font-size:65.333333pt;}
.fs0_c00349{font-size:80.266667pt;}
.y0_c00349{bottom:0.000000pt;}
.y47_c00349{bottom:23.042667pt;}
.y48_c00349{bottom:23.394667pt;}
.y49_c00349{bottom:24.042667pt;}
.y4a_c00349{bottom:24.945333pt;}
.y4b_c00349{bottom:25.349333pt;}
.y4c_c00349{bottom:25.646667pt;}
.y4d_c00349{bottom:26.288000pt;}
.y46_c00349{bottom:41.373333pt;}
.y3f_c00349{bottom:55.202667pt;}
.y40_c00349{bottom:55.902667pt;}
.y41_c00349{bottom:56.957333pt;}
.y42_c00349{bottom:57.272000pt;}
.y43_c00349{bottom:58.433333pt;}
.y44_c00349{bottom:59.189333pt;}
.y45_c00349{bottom:59.862667pt;}
.y38_c00349{bottom:64.568000pt;}
.y39_c00349{bottom:65.738667pt;}
.y3a_c00349{bottom:66.124000pt;}
.y3b_c00349{bottom:67.278667pt;}
.y3c_c00349{bottom:68.761333pt;}
.y3d_c00349{bottom:69.036000pt;}
.y3e_c00349{bottom:69.834667pt;}
.y32_c00349{bottom:95.522667pt;}
.y33_c00349{bottom:96.412000pt;}
.y34_c00349{bottom:96.994667pt;}
.y35_c00349{bottom:97.316000pt;}
.y36_c00349{bottom:98.136000pt;}
.y37_c00349{bottom:98.898667pt;}
.y31_c00349{bottom:114.076000pt;}
.y30_c00349{bottom:121.440000pt;}
.y2f_c00349{bottom:131.273333pt;}
.y2e_c00349{bottom:146.757333pt;}
.y2d_c00349{bottom:176.616000pt;}
.y2c_c00349{bottom:189.020000pt;}
.y2b_c00349{bottom:189.516000pt;}
.y2a_c00349{bottom:190.208000pt;}
.y29_c00349{bottom:190.441333pt;}
.y28_c00349{bottom:190.854667pt;}
.y27_c00349{bottom:191.106667pt;}
.y26_c00349{bottom:191.557333pt;}
.y25_c00349{bottom:191.769333pt;}
.y24_c00349{bottom:192.724000pt;}
.y23_c00349{bottom:204.961333pt;}
.y22_c00349{bottom:219.649333pt;}
.y21_c00349{bottom:219.848000pt;}
.y20_c00349{bottom:220.197333pt;}
.y1f_c00349{bottom:220.416000pt;}
.y1e_c00349{bottom:220.849333pt;}
.y1d_c00349{bottom:220.986667pt;}
.y1c_c00349{bottom:221.514667pt;}
.y1b_c00349{bottom:221.745333pt;}
.y1a_c00349{bottom:222.482667pt;}
.y19_c00349{bottom:236.198667pt;}
.y18_c00349{bottom:251.102667pt;}
.y17_c00349{bottom:266.241333pt;}
.y16_c00349{bottom:281.552000pt;}
.y15_c00349{bottom:296.377333pt;}
.y14_c00349{bottom:312.216000pt;}
.y13_c00349{bottom:327.237333pt;}
.y12_c00349{bottom:342.729333pt;}
.y11_c00349{bottom:356.702667pt;}
.y10_c00349{bottom:357.445333pt;}
.yf_c00349{bottom:357.750667pt;}
.ye_c00349{bottom:358.312000pt;}
.yd_c00349{bottom:358.544000pt;}
.yc_c00349{bottom:359.256000pt;}
.yb_c00349{bottom:359.521333pt;}
.ya_c00349{bottom:371.254667pt;}
.y9_c00349{bottom:387.061333pt;}
.y8_c00349{bottom:402.166667pt;}
.y7_c00349{bottom:416.988000pt;}
.y6_c00349{bottom:432.781333pt;}
.y5_c00349{bottom:448.056000pt;}
.y4_c00349{bottom:463.018667pt;}
.y3_c00349{bottom:477.996000pt;}
.y2_c00349{bottom:492.880000pt;}
.y1_c00349{bottom:506.052000pt;}
.h10_c00349{height:19.600000pt;}
.hf_c00349{height:22.400000pt;}
.h4_c00349{height:44.800000pt;}
.he_c00349{height:49.466667pt;}
.h9_c00349{height:50.400000pt;}
.h8_c00349{height:51.333333pt;}
.h5_c00349{height:53.200000pt;}
.h3_c00349{height:54.133333pt;}
.hc_c00349{height:56.000000pt;}
.hb_c00349{height:57.866667pt;}
.h11_c00349{height:59.733333pt;}
.h6_c00349{height:60.666667pt;}
.ha_c00349{height:61.600000pt;}
.hd_c00349{height:64.400000pt;}
.h7_c00349{height:65.333333pt;}
.h2_c00349{height:80.266667pt;}
.h0_c00349{height:545.040000pt;}
.h1_c00349{height:545.333333pt;}
.w0_c00349{width:319.200000pt;}
.w1_c00349{width:319.333333pt;}
.x0_c00349{left:0.000000pt;}
.x3_c00349{left:37.440000pt;}
.x31_c00349{left:38.400000pt;}
.x2d_c00349{left:43.200000pt;}
.x1d_c00349{left:46.080000pt;}
.x4_c00349{left:55.200000pt;}
.x38_c00349{left:56.402667pt;}
.x22_c00349{left:57.600000pt;}
.x27_c00349{left:58.560000pt;}
.x6e_c00349{left:62.284000pt;}
.x49_c00349{left:64.562667pt;}
.x59_c00349{left:68.160000pt;}
.x5f_c00349{left:69.360000pt;}
.x18_c00349{left:71.520000pt;}
.x6c_c00349{left:73.197333pt;}
.x44_c00349{left:78.242667pt;}
.x45_c00349{left:79.442667pt;}
.x3e_c00349{left:81.122667pt;}
.x10_c00349{left:84.000000pt;}
.xb_c00349{left:85.920000pt;}
.x19_c00349{left:89.760000pt;}
.x2e_c00349{left:91.440000pt;}
.x5_c00349{left:92.640000pt;}
.x4d_c00349{left:95.693333pt;}
.x11_c00349{left:97.680000pt;}
.x23_c00349{left:99.120000pt;}
.x28_c00349{left:100.080000pt;}
.x32_c00349{left:101.040000pt;}
.x53_c00349{left:102.153333pt;}
.x1a_c00349{left:105.600000pt;}
.x36_c00349{left:108.340000pt;}
.x1e_c00349{left:110.640000pt;}
.x4e_c00349{left:113.400000pt;}
.x54_c00349{left:116.252000pt;}
.x12_c00349{left:117.360000pt;}
.xc_c00349{left:119.760000pt;}
.x37_c00349{left:124.904000pt;}
.x60_c00349{left:126.000000pt;}
.x51_c00349{left:128.164000pt;}
.x3f_c00349{left:130.082667pt;}
.x6a_c00349{left:136.240000pt;}
.x1f_c00349{left:139.200000pt;}
.x6_c00349{left:140.400000pt;}
.xd_c00349{left:144.000000pt;}
.x33_c00349{left:144.960000pt;}
.x3b_c00349{left:146.882667pt;}
.x39_c00349{left:153.602667pt;}
.x1_c00349{left:155.760000pt;}
.x5c_c00349{left:157.920000pt;}
.x55_c00349{left:163.052000pt;}
.x13_c00349{left:164.160000pt;}
.x63_c00349{left:165.360000pt;}
.x67_c00349{left:166.329333pt;}
.x29_c00349{left:167.280000pt;}
.x6d_c00349{left:169.437333pt;}
.x24_c00349{left:171.840000pt;}
.x40_c00349{left:173.522667pt;}
.x65_c00349{left:177.781333pt;}
.x2a_c00349{left:179.040000pt;}
.x5a_c00349{left:182.880000pt;}
.x5d_c00349{left:185.040000pt;}
.x14_c00349{left:186.480000pt;}
.x25_c00349{left:187.920000pt;}
.x46_c00349{left:189.122667pt;}
.x56_c00349{left:190.642667pt;}
.x6f_c00349{left:192.618667pt;}
.x7_c00349{left:194.880000pt;}
.x4f_c00349{left:197.925333pt;}
.x20_c00349{left:199.200000pt;}
.x42_c00349{left:200.642667pt;}
.x5e_c00349{left:203.760000pt;}
.x57_c00349{left:206.238667pt;}
.x4b_c00349{left:207.602667pt;}
.x70_c00349{left:212.484000pt;}
.x26_c00349{left:213.600000pt;}
.x50_c00349{left:214.720000pt;}
.x8_c00349{left:216.720000pt;}
.x34_c00349{left:217.920000pt;}
.x3c_c00349{left:221.762667pt;}
.x41_c00349{left:222.962667pt;}
.x1b_c00349{left:224.880000pt;}
.x4a_c00349{left:225.842667pt;}
.x15_c00349{left:227.280000pt;}
.x62_c00349{left:228.480000pt;}
.x66_c00349{left:232.481333pt;}
.x68_c00349{left:233.726667pt;}
.x64_c00349{left:235.440000pt;}
.x47_c00349{left:237.602667pt;}
.x16_c00349{left:239.280000pt;}
.xe_c00349{left:241.440000pt;}
.x69_c00349{left:246.216000pt;}
.x2b_c00349{left:252.000000pt;}
.x9_c00349{left:252.960000pt;}
.x43_c00349{left:254.642667pt;}
.x48_c00349{left:256.802667pt;}
.x52_c00349{left:258.004000pt;}
.x2f_c00349{left:260.160000pt;}
.x17_c00349{left:261.360000pt;}
.xa_c00349{left:263.520000pt;}
.x21_c00349{left:264.480000pt;}
.x1c_c00349{left:268.560000pt;}
.x3a_c00349{left:271.202667pt;}
.x61_c00349{left:272.400000pt;}
.x35_c00349{left:273.840000pt;}
.x30_c00349{left:276.960000pt;}
.x4c_c00349{left:278.642667pt;}
.xf_c00349{left:280.080000pt;}
.x5b_c00349{left:282.000000pt;}
.x2c_c00349{left:283.440000pt;}
.x58_c00349{left:285.388000pt;}
.x3d_c00349{left:290.642667pt;}
.x6b_c00349{left:297.677333pt;}
.x2_c00349{left:305.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00350 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00350 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00350 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00350 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00350.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m91_c00350{transform:matrix(0.059843,-0.000898,0.003750,0.249972,0,0);-ms-transform:matrix(0.059843,-0.000898,0.003750,0.249972,0,0);-webkit-transform:matrix(0.059843,-0.000898,0.003750,0.249972,0,0);}
.mdc_c00350{transform:matrix(0.074962,-0.001124,0.003750,0.249972,0,0);-ms-transform:matrix(0.074962,-0.001124,0.003750,0.249972,0,0);-webkit-transform:matrix(0.074962,-0.001124,0.003750,0.249972,0,0);}
.m1_c00350{transform:matrix(0.089770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089770,0.000000,0.000000,0.250000,0,0);}
.mea_c00350{transform:matrix(0.096529,-0.001448,0.003750,0.249972,0,0);-ms-transform:matrix(0.096529,-0.001448,0.003750,0.249972,0,0);-webkit-transform:matrix(0.096529,-0.001448,0.003750,0.249972,0,0);}
.m7f_c00350{transform:matrix(0.125766,-0.001886,0.003750,0.249972,0,0);-ms-transform:matrix(0.125766,-0.001886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.125766,-0.001886,0.003750,0.249972,0,0);}
.md0_c00350{transform:matrix(0.145189,-0.002178,0.003750,0.249972,0,0);-ms-transform:matrix(0.145189,-0.002178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145189,-0.002178,0.003750,0.249972,0,0);}
.m22_c00350{transform:matrix(0.146319,-0.002195,0.003750,0.249972,0,0);-ms-transform:matrix(0.146319,-0.002195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146319,-0.002195,0.003750,0.249972,0,0);}
.m12_c00350{transform:matrix(0.149678,-0.002245,0.003750,0.249972,0,0);-ms-transform:matrix(0.149678,-0.002245,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149678,-0.002245,0.003750,0.249972,0,0);}
.ma7_c00350{transform:matrix(0.155742,-0.002336,0.003750,0.249972,0,0);-ms-transform:matrix(0.155742,-0.002336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155742,-0.002336,0.003750,0.249972,0,0);}
.m6_c00350{transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.157137,-0.002357,0.003750,0.249972,0,0);-ms-transform:matrix(0.157137,-0.002357,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157137,-0.002357,0.003750,0.249972,0,0);}
.m8_c00350{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{transform:matrix(0.161602,-0.002424,0.003750,0.249972,0,0);-ms-transform:matrix(0.161602,-0.002424,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161602,-0.002424,0.003750,0.249972,0,0);}
.m46_c00350{transform:matrix(0.162152,-0.002432,0.003750,0.249972,0,0);-ms-transform:matrix(0.162152,-0.002432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162152,-0.002432,0.003750,0.249972,0,0);}
.mae_c00350{transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);-ms-transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);}
.m28_c00350{transform:matrix(0.162762,-0.002441,0.003750,0.249972,0,0);-ms-transform:matrix(0.162762,-0.002441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162762,-0.002441,0.003750,0.249972,0,0);}
.ma8_c00350{transform:matrix(0.164471,-0.002467,0.003750,0.249972,0,0);-ms-transform:matrix(0.164471,-0.002467,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164471,-0.002467,0.003750,0.249972,0,0);}
.ma9_c00350{transform:matrix(0.164816,-0.002472,0.003750,0.249972,0,0);-ms-transform:matrix(0.164816,-0.002472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164816,-0.002472,0.003750,0.249972,0,0);}
.md3_c00350{transform:matrix(0.165121,-0.002477,0.003750,0.249972,0,0);-ms-transform:matrix(0.165121,-0.002477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165121,-0.002477,0.003750,0.249972,0,0);}
.mcb_c00350{transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);-ms-transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165126,-0.002477,0.003750,0.249972,0,0);}
.maa_c00350{transform:matrix(0.166251,-0.002494,0.003750,0.249972,0,0);-ms-transform:matrix(0.166251,-0.002494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166251,-0.002494,0.003750,0.249972,0,0);}
.md2_c00350{transform:matrix(0.166321,-0.002495,0.003750,0.249972,0,0);-ms-transform:matrix(0.166321,-0.002495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166321,-0.002495,0.003750,0.249972,0,0);}
.m98_c00350{transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);}
.m66_c00350{transform:matrix(0.172196,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172196,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172196,-0.002583,0.003750,0.249972,0,0);}
.m9_c00350{transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.m77_c00350{transform:matrix(0.174495,-0.002617,0.003750,0.249972,0,0);-ms-transform:matrix(0.174495,-0.002617,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174495,-0.002617,0.003750,0.249972,0,0);}
.m58_c00350{transform:matrix(0.174530,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174530,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174530,-0.002618,0.003750,0.249972,0,0);}
.m20_c00350{transform:matrix(0.174850,-0.002623,0.003750,0.249972,0,0);-ms-transform:matrix(0.174850,-0.002623,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174850,-0.002623,0.003750,0.249972,0,0);}
.m85_c00350{transform:matrix(0.174965,-0.002624,0.003750,0.249972,0,0);-ms-transform:matrix(0.174965,-0.002624,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174965,-0.002624,0.003750,0.249972,0,0);}
.mc1_c00350{transform:matrix(0.175165,-0.002627,0.003750,0.249972,0,0);-ms-transform:matrix(0.175165,-0.002627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175165,-0.002627,0.003750,0.249972,0,0);}
.m1f_c00350{transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176035,-0.002641,0.003750,0.249972,0,0);}
.m2d_c00350{transform:matrix(0.176320,-0.002645,0.003750,0.249972,0,0);-ms-transform:matrix(0.176320,-0.002645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176320,-0.002645,0.003750,0.249972,0,0);}
.m45_c00350{transform:matrix(0.176590,-0.002649,0.003750,0.249972,0,0);-ms-transform:matrix(0.176590,-0.002649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176590,-0.002649,0.003750,0.249972,0,0);}
.m7a_c00350{transform:matrix(0.176630,-0.002649,0.003750,0.249972,0,0);-ms-transform:matrix(0.176630,-0.002649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176630,-0.002649,0.003750,0.249972,0,0);}
.m74_c00350{transform:matrix(0.177115,-0.002657,0.003750,0.249972,0,0);-ms-transform:matrix(0.177115,-0.002657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177115,-0.002657,0.003750,0.249972,0,0);}
.m90_c00350{transform:matrix(0.177145,-0.002657,0.003750,0.249972,0,0);-ms-transform:matrix(0.177145,-0.002657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177145,-0.002657,0.003750,0.249972,0,0);}
.m33_c00350{transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);}
.m47_c00350{transform:matrix(0.178870,-0.002683,0.003750,0.249972,0,0);-ms-transform:matrix(0.178870,-0.002683,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178870,-0.002683,0.003750,0.249972,0,0);}
.m9a_c00350{transform:matrix(0.178905,-0.002684,0.003750,0.249972,0,0);-ms-transform:matrix(0.178905,-0.002684,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178905,-0.002684,0.003750,0.249972,0,0);}
.m40_c00350{transform:matrix(0.179020,-0.002685,0.003750,0.249972,0,0);-ms-transform:matrix(0.179020,-0.002685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179020,-0.002685,0.003750,0.249972,0,0);}
.mbf_c00350{transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-ms-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);}
.m44_c00350{transform:matrix(0.180065,-0.002701,0.003750,0.249972,0,0);-ms-transform:matrix(0.180065,-0.002701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180065,-0.002701,0.003750,0.249972,0,0);}
.ma_c00350{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m94_c00350{transform:matrix(0.180655,-0.002710,0.003750,0.249972,0,0);-ms-transform:matrix(0.180655,-0.002710,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180655,-0.002710,0.003750,0.249972,0,0);}
.m96_c00350{transform:matrix(0.181205,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181205,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181205,-0.002718,0.003750,0.249972,0,0);}
.m63_c00350{transform:matrix(0.181745,-0.002726,0.003750,0.249972,0,0);-ms-transform:matrix(0.181745,-0.002726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181745,-0.002726,0.003750,0.249972,0,0);}
.m80_c00350{transform:matrix(0.182070,-0.002731,0.003750,0.249972,0,0);-ms-transform:matrix(0.182070,-0.002731,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182070,-0.002731,0.003750,0.249972,0,0);}
.m61_c00350{transform:matrix(0.182834,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182834,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182834,-0.002743,0.003750,0.249972,0,0);}
.m1c_c00350{transform:matrix(0.183099,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183099,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183099,-0.002746,0.003750,0.249972,0,0);}
.m4d_c00350{transform:matrix(0.183559,-0.002753,0.003750,0.249972,0,0);-ms-transform:matrix(0.183559,-0.002753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183559,-0.002753,0.003750,0.249972,0,0);}
.ma6_c00350{transform:matrix(0.183764,-0.002756,0.003750,0.249972,0,0);-ms-transform:matrix(0.183764,-0.002756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183764,-0.002756,0.003750,0.249972,0,0);}
.m31_c00350{transform:matrix(0.183889,-0.002758,0.003750,0.249972,0,0);-ms-transform:matrix(0.183889,-0.002758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183889,-0.002758,0.003750,0.249972,0,0);}
.m84_c00350{transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);}
.m2e_c00350{transform:matrix(0.184529,-0.002768,0.003750,0.249972,0,0);-ms-transform:matrix(0.184529,-0.002768,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184529,-0.002768,0.003750,0.249972,0,0);}
.mcd_c00350{transform:matrix(0.184994,-0.002775,0.003750,0.249972,0,0);-ms-transform:matrix(0.184994,-0.002775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184994,-0.002775,0.003750,0.249972,0,0);}
.m65_c00350{transform:matrix(0.185309,-0.002780,0.003750,0.249972,0,0);-ms-transform:matrix(0.185309,-0.002780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185309,-0.002780,0.003750,0.249972,0,0);}
.m9b_c00350{transform:matrix(0.185494,-0.002782,0.003750,0.249972,0,0);-ms-transform:matrix(0.185494,-0.002782,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185494,-0.002782,0.003750,0.249972,0,0);}
.mb2_c00350{transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185584,-0.002784,0.003750,0.249972,0,0);}
.m7d_c00350{transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);}
.mf_c00350{transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);}
.m3d_c00350{transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);-ms-transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186469,-0.002797,0.003750,0.249972,0,0);}
.m8e_c00350{transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);}
.m3c_c00350{transform:matrix(0.186999,-0.002805,0.003750,0.249972,0,0);-ms-transform:matrix(0.186999,-0.002805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186999,-0.002805,0.003750,0.249972,0,0);}
.m67_c00350{transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);}
.mab_c00350{transform:matrix(0.188054,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188054,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188054,-0.002821,0.003750,0.249972,0,0);}
.m27_c00350{transform:matrix(0.188444,-0.002827,0.003750,0.249972,0,0);-ms-transform:matrix(0.188444,-0.002827,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188444,-0.002827,0.003750,0.249972,0,0);}
.m10_c00350{transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);-ms-transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188589,-0.002829,0.003750,0.249972,0,0);}
.me5_c00350{transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);}
.m32_c00350{transform:matrix(0.191153,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191153,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191153,-0.002867,0.003750,0.249972,0,0);}
.mcf_c00350{transform:matrix(0.191348,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191348,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191348,-0.002870,0.003750,0.249972,0,0);}
.m3a_c00350{transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191433,-0.002872,0.003750,0.249972,0,0);}
.ma3_c00350{transform:matrix(0.191468,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191468,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191468,-0.002872,0.003750,0.249972,0,0);}
.mda_c00350{transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);-ms-transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);}
.m1e_c00350{transform:matrix(0.193838,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193838,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193838,-0.002908,0.003750,0.249972,0,0);}
.mbb_c00350{transform:matrix(0.194128,-0.002912,0.003750,0.249972,0,0);-ms-transform:matrix(0.194128,-0.002912,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194128,-0.002912,0.003750,0.249972,0,0);}
.m15_c00350{transform:matrix(0.194163,-0.002912,0.003750,0.249972,0,0);-ms-transform:matrix(0.194163,-0.002912,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194163,-0.002912,0.003750,0.249972,0,0);}
.m89_c00350{transform:matrix(0.194263,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194263,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194263,-0.002914,0.003750,0.249972,0,0);}
.m24_c00350{transform:matrix(0.194958,-0.002924,0.003750,0.249972,0,0);-ms-transform:matrix(0.194958,-0.002924,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194958,-0.002924,0.003750,0.249972,0,0);}
.m86_c00350{transform:matrix(0.195103,-0.002927,0.003750,0.249972,0,0);-ms-transform:matrix(0.195103,-0.002927,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195103,-0.002927,0.003750,0.249972,0,0);}
.m2b_c00350{transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);}
.m49_c00350{transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);-ms-transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);}
.mcc_c00350{transform:matrix(0.195393,-0.002931,0.003750,0.249972,0,0);-ms-transform:matrix(0.195393,-0.002931,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195393,-0.002931,0.003750,0.249972,0,0);}
.m25_c00350{transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);-ms-transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);}
.md1_c00350{transform:matrix(0.196108,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196108,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196108,-0.002942,0.003750,0.249972,0,0);}
.m4e_c00350{transform:matrix(0.196183,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196183,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196183,-0.002943,0.003750,0.249972,0,0);}
.mb6_c00350{transform:matrix(0.196243,-0.002944,0.003750,0.249972,0,0);-ms-transform:matrix(0.196243,-0.002944,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196243,-0.002944,0.003750,0.249972,0,0);}
.m6f_c00350{transform:matrix(0.197048,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197048,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197048,-0.002956,0.003750,0.249972,0,0);}
.mce_c00350{transform:matrix(0.197078,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197078,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197078,-0.002956,0.003750,0.249972,0,0);}
.m3f_c00350{transform:matrix(0.197143,-0.002957,0.003750,0.249972,0,0);-ms-transform:matrix(0.197143,-0.002957,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197143,-0.002957,0.003750,0.249972,0,0);}
.m9c_c00350{transform:matrix(0.197203,-0.002958,0.003750,0.249972,0,0);-ms-transform:matrix(0.197203,-0.002958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197203,-0.002958,0.003750,0.249972,0,0);}
.mb7_c00350{transform:matrix(0.197993,-0.002970,0.003750,0.249972,0,0);-ms-transform:matrix(0.197993,-0.002970,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197993,-0.002970,0.003750,0.249972,0,0);}
.mb3_c00350{transform:matrix(0.198813,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198813,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198813,-0.002982,0.003750,0.249972,0,0);}
.m97_c00350{transform:matrix(0.198818,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198818,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198818,-0.002982,0.003750,0.249972,0,0);}
.ma0_c00350{transform:matrix(0.198823,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198823,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198823,-0.002982,0.003750,0.249972,0,0);}
.m43_c00350{transform:matrix(0.198958,-0.002984,0.003750,0.249972,0,0);-ms-transform:matrix(0.198958,-0.002984,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198958,-0.002984,0.003750,0.249972,0,0);}
.m9e_c00350{transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);-ms-transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);}
.m17_c00350{transform:matrix(0.199128,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199128,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199128,-0.002987,0.003750,0.249972,0,0);}
.mc4_c00350{transform:matrix(0.199708,-0.002996,0.003750,0.249972,0,0);-ms-transform:matrix(0.199708,-0.002996,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199708,-0.002996,0.003750,0.249972,0,0);}
.m5d_c00350{transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);-ms-transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199898,-0.002998,0.003750,0.249972,0,0);}
.mb_c00350{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00350{transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);-ms-transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);}
.ma2_c00350{transform:matrix(0.200037,-0.003001,0.003750,0.249972,0,0);-ms-transform:matrix(0.200037,-0.003001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200037,-0.003001,0.003750,0.249972,0,0);}
.m38_c00350{transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200177,-0.003003,0.003750,0.249972,0,0);}
.m48_c00350{transform:matrix(0.200217,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200217,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200217,-0.003003,0.003750,0.249972,0,0);}
.m93_c00350{transform:matrix(0.200487,-0.003007,0.003750,0.249972,0,0);-ms-transform:matrix(0.200487,-0.003007,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200487,-0.003007,0.003750,0.249972,0,0);}
.mc_c00350{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.201217,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201217,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201217,-0.003018,0.003750,0.249972,0,0);}
.m35_c00350{transform:matrix(0.201422,-0.003021,0.003750,0.249972,0,0);-ms-transform:matrix(0.201422,-0.003021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201422,-0.003021,0.003750,0.249972,0,0);}
.m69_c00350{transform:matrix(0.201552,-0.003023,0.003750,0.249972,0,0);-ms-transform:matrix(0.201552,-0.003023,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201552,-0.003023,0.003750,0.249972,0,0);}
.m7e_c00350{transform:matrix(0.201657,-0.003025,0.003750,0.249972,0,0);-ms-transform:matrix(0.201657,-0.003025,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201657,-0.003025,0.003750,0.249972,0,0);}
.m4b_c00350{transform:matrix(0.201787,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201787,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201787,-0.003027,0.003750,0.249972,0,0);}
.m92_c00350{transform:matrix(0.201982,-0.003030,0.003750,0.249972,0,0);-ms-transform:matrix(0.201982,-0.003030,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201982,-0.003030,0.003750,0.249972,0,0);}
.m62_c00350{transform:matrix(0.202407,-0.003036,0.003750,0.249972,0,0);-ms-transform:matrix(0.202407,-0.003036,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202407,-0.003036,0.003750,0.249972,0,0);}
.m70_c00350{transform:matrix(0.202502,-0.003038,0.003750,0.249972,0,0);-ms-transform:matrix(0.202502,-0.003038,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202502,-0.003038,0.003750,0.249972,0,0);}
.m1d_c00350{transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);}
.m6a_c00350{transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202912,-0.003044,0.003750,0.249972,0,0);}
.m99_c00350{transform:matrix(0.203322,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203322,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203322,-0.003050,0.003750,0.249972,0,0);}
.m0_c00350{transform:matrix(0.203645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203645,0.000000,0.000000,0.250000,0,0);}
.m82_c00350{transform:matrix(0.203932,-0.003059,0.003750,0.249972,0,0);-ms-transform:matrix(0.203932,-0.003059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203932,-0.003059,0.003750,0.249972,0,0);}
.m73_c00350{transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204232,-0.003063,0.003750,0.249972,0,0);}
.mb5_c00350{transform:matrix(0.204602,-0.003069,0.003750,0.249972,0,0);-ms-transform:matrix(0.204602,-0.003069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204602,-0.003069,0.003750,0.249972,0,0);}
.m56_c00350{transform:matrix(0.204777,-0.003072,0.003750,0.249972,0,0);-ms-transform:matrix(0.204777,-0.003072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204777,-0.003072,0.003750,0.249972,0,0);}
.m83_c00350{transform:matrix(0.205027,-0.003075,0.003750,0.249972,0,0);-ms-transform:matrix(0.205027,-0.003075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205027,-0.003075,0.003750,0.249972,0,0);}
.m72_c00350{transform:matrix(0.205427,-0.003081,0.003750,0.249972,0,0);-ms-transform:matrix(0.205427,-0.003081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205427,-0.003081,0.003750,0.249972,0,0);}
.m6b_c00350{transform:matrix(0.206042,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206042,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206042,-0.003091,0.003750,0.249972,0,0);}
.mca_c00350{transform:matrix(0.206142,-0.003092,0.003750,0.249972,0,0);-ms-transform:matrix(0.206142,-0.003092,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206142,-0.003092,0.003750,0.249972,0,0);}
.m30_c00350{transform:matrix(0.206317,-0.003095,0.003750,0.249972,0,0);-ms-transform:matrix(0.206317,-0.003095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206317,-0.003095,0.003750,0.249972,0,0);}
.m18_c00350{transform:matrix(0.206532,-0.003098,0.003750,0.249972,0,0);-ms-transform:matrix(0.206532,-0.003098,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206532,-0.003098,0.003750,0.249972,0,0);}
.ma4_c00350{transform:matrix(0.208147,-0.003122,0.003750,0.249972,0,0);-ms-transform:matrix(0.208147,-0.003122,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208147,-0.003122,0.003750,0.249972,0,0);}
.m2c_c00350{transform:matrix(0.208477,-0.003127,0.003750,0.249972,0,0);-ms-transform:matrix(0.208477,-0.003127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208477,-0.003127,0.003750,0.249972,0,0);}
.mbe_c00350{transform:matrix(0.209126,-0.003137,0.003750,0.249972,0,0);-ms-transform:matrix(0.209126,-0.003137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209126,-0.003137,0.003750,0.249972,0,0);}
.m87_c00350{transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);}
.mc8_c00350{transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);}
.m51_c00350{transform:matrix(0.209641,-0.003145,0.003750,0.249972,0,0);-ms-transform:matrix(0.209641,-0.003145,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209641,-0.003145,0.003750,0.249972,0,0);}
.md7_c00350{transform:matrix(0.209896,-0.003148,0.003750,0.249972,0,0);-ms-transform:matrix(0.209896,-0.003148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209896,-0.003148,0.003750,0.249972,0,0);}
.md_c00350{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.mac_c00350{transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);-ms-transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);}
.ma5_c00350{transform:matrix(0.211051,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211051,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211051,-0.003166,0.003750,0.249972,0,0);}
.mbc_c00350{transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211156,-0.003167,0.003750,0.249972,0,0);}
.m37_c00350{transform:matrix(0.211461,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211461,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211461,-0.003172,0.003750,0.249972,0,0);}
.mc9_c00350{transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211561,-0.003173,0.003750,0.249972,0,0);}
.m88_c00350{transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);}
.m57_c00350{transform:matrix(0.211576,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211576,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211576,-0.003174,0.003750,0.249972,0,0);}
.m68_c00350{transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);-ms-transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211801,-0.003177,0.003750,0.249972,0,0);}
.m14_c00350{transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);-ms-transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212066,-0.003181,0.003750,0.249972,0,0);}
.m34_c00350{transform:matrix(0.212216,-0.003183,0.003750,0.249972,0,0);-ms-transform:matrix(0.212216,-0.003183,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212216,-0.003183,0.003750,0.249972,0,0);}
.mc5_c00350{transform:matrix(0.212491,-0.003187,0.003750,0.249972,0,0);-ms-transform:matrix(0.212491,-0.003187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212491,-0.003187,0.003750,0.249972,0,0);}
.me9_c00350{transform:matrix(0.212566,-0.003188,0.003750,0.249972,0,0);-ms-transform:matrix(0.212566,-0.003188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212566,-0.003188,0.003750,0.249972,0,0);}
.m4_c00350{transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);}
.me8_c00350{transform:matrix(0.212856,-0.003193,0.003750,0.249972,0,0);-ms-transform:matrix(0.212856,-0.003193,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212856,-0.003193,0.003750,0.249972,0,0);}
.m95_c00350{transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);}
.m50_c00350{transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);-ms-transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);}
.mb8_c00350{transform:matrix(0.214531,-0.003218,0.003750,0.249972,0,0);-ms-transform:matrix(0.214531,-0.003218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214531,-0.003218,0.003750,0.249972,0,0);}
.m60_c00350{transform:matrix(0.215156,-0.003227,0.003750,0.249972,0,0);-ms-transform:matrix(0.215156,-0.003227,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215156,-0.003227,0.003750,0.249972,0,0);}
.m64_c00350{transform:matrix(0.215416,-0.003231,0.003750,0.249972,0,0);-ms-transform:matrix(0.215416,-0.003231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215416,-0.003231,0.003750,0.249972,0,0);}
.mbd_c00350{transform:matrix(0.215701,-0.003236,0.003750,0.249972,0,0);-ms-transform:matrix(0.215701,-0.003236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215701,-0.003236,0.003750,0.249972,0,0);}
.m5a_c00350{transform:matrix(0.216111,-0.003242,0.003750,0.249972,0,0);-ms-transform:matrix(0.216111,-0.003242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216111,-0.003242,0.003750,0.249972,0,0);}
.m4f_c00350{transform:matrix(0.216821,-0.003252,0.003750,0.249972,0,0);-ms-transform:matrix(0.216821,-0.003252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216821,-0.003252,0.003750,0.249972,0,0);}
.m41_c00350{transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);}
.m8d_c00350{transform:matrix(0.217011,-0.003255,0.003750,0.249972,0,0);-ms-transform:matrix(0.217011,-0.003255,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217011,-0.003255,0.003750,0.249972,0,0);}
.m3e_c00350{transform:matrix(0.217431,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217431,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217431,-0.003261,0.003750,0.249972,0,0);}
.m26_c00350{transform:matrix(0.217556,-0.003263,0.003750,0.249972,0,0);-ms-transform:matrix(0.217556,-0.003263,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217556,-0.003263,0.003750,0.249972,0,0);}
.m81_c00350{transform:matrix(0.217706,-0.003266,0.003750,0.249972,0,0);-ms-transform:matrix(0.217706,-0.003266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217706,-0.003266,0.003750,0.249972,0,0);}
.mde_c00350{transform:matrix(0.218170,-0.003273,0.003750,0.249972,0,0);-ms-transform:matrix(0.218170,-0.003273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218170,-0.003273,0.003750,0.249972,0,0);}
.me7_c00350{transform:matrix(0.218360,-0.003275,0.003750,0.249972,0,0);-ms-transform:matrix(0.218360,-0.003275,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218360,-0.003275,0.003750,0.249972,0,0);}
.m5_c00350{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.m5e_c00350{transform:matrix(0.219150,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219150,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219150,-0.003287,0.003750,0.249972,0,0);}
.m13_c00350{transform:matrix(0.219185,-0.003288,0.003750,0.249972,0,0);-ms-transform:matrix(0.219185,-0.003288,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219185,-0.003288,0.003750,0.249972,0,0);}
.m8c_c00350{transform:matrix(0.219410,-0.003291,0.003750,0.249972,0,0);-ms-transform:matrix(0.219410,-0.003291,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219410,-0.003291,0.003750,0.249972,0,0);}
.m9d_c00350{transform:matrix(0.219415,-0.003291,0.003750,0.249972,0,0);-ms-transform:matrix(0.219415,-0.003291,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219415,-0.003291,0.003750,0.249972,0,0);}
.mc3_c00350{transform:matrix(0.219560,-0.003293,0.003750,0.249972,0,0);-ms-transform:matrix(0.219560,-0.003293,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219560,-0.003293,0.003750,0.249972,0,0);}
.mc7_c00350{transform:matrix(0.219615,-0.003294,0.003750,0.249972,0,0);-ms-transform:matrix(0.219615,-0.003294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219615,-0.003294,0.003750,0.249972,0,0);}
.m59_c00350{transform:matrix(0.221150,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221150,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221150,-0.003317,0.003750,0.249972,0,0);}
.m79_c00350{transform:matrix(0.221555,-0.003323,0.003750,0.249972,0,0);-ms-transform:matrix(0.221555,-0.003323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221555,-0.003323,0.003750,0.249972,0,0);}
.m76_c00350{transform:matrix(0.223955,-0.003359,0.003750,0.249972,0,0);-ms-transform:matrix(0.223955,-0.003359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223955,-0.003359,0.003750,0.249972,0,0);}
.m71_c00350{transform:matrix(0.224195,-0.003363,0.003750,0.249972,0,0);-ms-transform:matrix(0.224195,-0.003363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224195,-0.003363,0.003750,0.249972,0,0);}
.mdb_c00350{transform:matrix(0.224450,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224450,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224450,-0.003367,0.003750,0.249972,0,0);}
.mc0_c00350{transform:matrix(0.225415,-0.003381,0.003750,0.249972,0,0);-ms-transform:matrix(0.225415,-0.003381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225415,-0.003381,0.003750,0.249972,0,0);}
.m23_c00350{transform:matrix(0.225905,-0.003389,0.003750,0.249972,0,0);-ms-transform:matrix(0.225905,-0.003389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225905,-0.003389,0.003750,0.249972,0,0);}
.m4c_c00350{transform:matrix(0.225950,-0.003389,0.003750,0.249972,0,0);-ms-transform:matrix(0.225950,-0.003389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225950,-0.003389,0.003750,0.249972,0,0);}
.m42_c00350{transform:matrix(0.227559,-0.003413,0.003750,0.249972,0,0);-ms-transform:matrix(0.227559,-0.003413,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227559,-0.003413,0.003750,0.249972,0,0);}
.m21_c00350{transform:matrix(0.227899,-0.003418,0.003750,0.249972,0,0);-ms-transform:matrix(0.227899,-0.003418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227899,-0.003418,0.003750,0.249972,0,0);}
.m11_c00350{transform:matrix(0.228454,-0.003427,0.003750,0.249972,0,0);-ms-transform:matrix(0.228454,-0.003427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228454,-0.003427,0.003750,0.249972,0,0);}
.m8f_c00350{transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);}
.md8_c00350{transform:matrix(0.229254,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229254,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229254,-0.003439,0.003750,0.249972,0,0);}
.md5_c00350{transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);-ms-transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);}
.m39_c00350{transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);-ms-transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);}
.mba_c00350{transform:matrix(0.232519,-0.003488,0.003750,0.249972,0,0);-ms-transform:matrix(0.232519,-0.003488,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232519,-0.003488,0.003750,0.249972,0,0);}
.mb0_c00350{transform:matrix(0.232659,-0.003490,0.003750,0.249972,0,0);-ms-transform:matrix(0.232659,-0.003490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232659,-0.003490,0.003750,0.249972,0,0);}
.m9f_c00350{transform:matrix(0.232984,-0.003495,0.003750,0.249972,0,0);-ms-transform:matrix(0.232984,-0.003495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232984,-0.003495,0.003750,0.249972,0,0);}
.m7b_c00350{transform:matrix(0.233399,-0.003501,0.003750,0.249972,0,0);-ms-transform:matrix(0.233399,-0.003501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233399,-0.003501,0.003750,0.249972,0,0);}
.m6d_c00350{transform:matrix(0.233419,-0.003501,0.003750,0.249972,0,0);-ms-transform:matrix(0.233419,-0.003501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233419,-0.003501,0.003750,0.249972,0,0);}
.m6e_c00350{transform:matrix(0.234564,-0.003518,0.003750,0.249972,0,0);-ms-transform:matrix(0.234564,-0.003518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234564,-0.003518,0.003750,0.249972,0,0);}
.m3b_c00350{transform:matrix(0.235194,-0.003528,0.003750,0.249972,0,0);-ms-transform:matrix(0.235194,-0.003528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235194,-0.003528,0.003750,0.249972,0,0);}
.m8b_c00350{transform:matrix(0.235284,-0.003529,0.003750,0.249972,0,0);-ms-transform:matrix(0.235284,-0.003529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235284,-0.003529,0.003750,0.249972,0,0);}
.mb1_c00350{transform:matrix(0.236253,-0.003544,0.003750,0.249972,0,0);-ms-transform:matrix(0.236253,-0.003544,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236253,-0.003544,0.003750,0.249972,0,0);}
.m36_c00350{transform:matrix(0.236398,-0.003546,0.003750,0.249972,0,0);-ms-transform:matrix(0.236398,-0.003546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236398,-0.003546,0.003750,0.249972,0,0);}
.mb9_c00350{transform:matrix(0.236693,-0.003550,0.003750,0.249972,0,0);-ms-transform:matrix(0.236693,-0.003550,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236693,-0.003550,0.003750,0.249972,0,0);}
.md6_c00350{transform:matrix(0.236748,-0.003551,0.003750,0.249972,0,0);-ms-transform:matrix(0.236748,-0.003551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236748,-0.003551,0.003750,0.249972,0,0);}
.me_c00350{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.mc6_c00350{transform:matrix(0.239903,-0.003599,0.003750,0.249972,0,0);-ms-transform:matrix(0.239903,-0.003599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239903,-0.003599,0.003750,0.249972,0,0);}
.meb_c00350{transform:matrix(0.240048,-0.003601,0.003750,0.249972,0,0);-ms-transform:matrix(0.240048,-0.003601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240048,-0.003601,0.003750,0.249972,0,0);}
.m78_c00350{transform:matrix(0.240948,-0.003614,0.003750,0.249972,0,0);-ms-transform:matrix(0.240948,-0.003614,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240948,-0.003614,0.003750,0.249972,0,0);}
.md9_c00350{transform:matrix(0.242063,-0.003631,0.003750,0.249972,0,0);-ms-transform:matrix(0.242063,-0.003631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242063,-0.003631,0.003750,0.249972,0,0);}
.m2a_c00350{transform:matrix(0.242408,-0.003636,0.003750,0.249972,0,0);-ms-transform:matrix(0.242408,-0.003636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242408,-0.003636,0.003750,0.249972,0,0);}
.m4a_c00350{transform:matrix(0.243633,-0.003654,0.003750,0.249972,0,0);-ms-transform:matrix(0.243633,-0.003654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243633,-0.003654,0.003750,0.249972,0,0);}
.m5f_c00350{transform:matrix(0.247382,-0.003711,0.003750,0.249972,0,0);-ms-transform:matrix(0.247382,-0.003711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247382,-0.003711,0.003750,0.249972,0,0);}
.m75_c00350{transform:matrix(0.247432,-0.003711,0.003750,0.249972,0,0);-ms-transform:matrix(0.247432,-0.003711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247432,-0.003711,0.003750,0.249972,0,0);}
.m54_c00350{transform:matrix(0.247507,-0.003713,0.003750,0.249972,0,0);-ms-transform:matrix(0.247507,-0.003713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247507,-0.003713,0.003750,0.249972,0,0);}
.m52_c00350{transform:matrix(0.251092,-0.003766,0.003750,0.249972,0,0);-ms-transform:matrix(0.251092,-0.003766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251092,-0.003766,0.003750,0.249972,0,0);}
.me4_c00350{transform:matrix(0.253287,-0.003799,0.003750,0.249972,0,0);-ms-transform:matrix(0.253287,-0.003799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253287,-0.003799,0.003750,0.249972,0,0);}
.m53_c00350{transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);-ms-transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);}
.me2_c00350{transform:matrix(0.261076,-0.003916,0.003750,0.249972,0,0);-ms-transform:matrix(0.261076,-0.003916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261076,-0.003916,0.003750,0.249972,0,0);}
.m5c_c00350{transform:matrix(0.262201,-0.003933,0.003750,0.249972,0,0);-ms-transform:matrix(0.262201,-0.003933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262201,-0.003933,0.003750,0.249972,0,0);}
.mb4_c00350{transform:matrix(0.265530,-0.003983,0.003750,0.249972,0,0);-ms-transform:matrix(0.265530,-0.003983,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265530,-0.003983,0.003750,0.249972,0,0);}
.m1a_c00350{transform:matrix(0.268640,-0.004030,0.003750,0.249972,0,0);-ms-transform:matrix(0.268640,-0.004030,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268640,-0.004030,0.003750,0.249972,0,0);}
.mc2_c00350{transform:matrix(0.275659,-0.004135,0.003750,0.249972,0,0);-ms-transform:matrix(0.275659,-0.004135,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275659,-0.004135,0.003750,0.249972,0,0);}
.m7c_c00350{transform:matrix(0.276209,-0.004143,0.003750,0.249972,0,0);-ms-transform:matrix(0.276209,-0.004143,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276209,-0.004143,0.003750,0.249972,0,0);}
.me6_c00350{transform:matrix(0.280673,-0.004210,0.003750,0.249972,0,0);-ms-transform:matrix(0.280673,-0.004210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280673,-0.004210,0.003750,0.249972,0,0);}
.me3_c00350{transform:matrix(0.288818,-0.004332,0.003750,0.249972,0,0);-ms-transform:matrix(0.288818,-0.004332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288818,-0.004332,0.003750,0.249972,0,0);}
.m55_c00350{transform:matrix(0.333607,-0.005004,0.003750,0.249972,0,0);-ms-transform:matrix(0.333607,-0.005004,0.003750,0.249972,0,0);-webkit-transform:matrix(0.333607,-0.005004,0.003750,0.249972,0,0);}
.md4_c00350{transform:matrix(0.337997,-0.005070,0.003750,0.249972,0,0);-ms-transform:matrix(0.337997,-0.005070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.337997,-0.005070,0.003750,0.249972,0,0);}
.mdd_c00350{transform:matrix(0.339402,-0.005091,0.003750,0.249972,0,0);-ms-transform:matrix(0.339402,-0.005091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.339402,-0.005091,0.003750,0.249972,0,0);}
.mad_c00350{transform:matrix(0.342496,-0.005137,0.003750,0.249972,0,0);-ms-transform:matrix(0.342496,-0.005137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.342496,-0.005137,0.003750,0.249972,0,0);}
.m5b_c00350{transform:matrix(0.350096,-0.005251,0.003750,0.249972,0,0);-ms-transform:matrix(0.350096,-0.005251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.350096,-0.005251,0.003750,0.249972,0,0);}
.ma1_c00350{transform:matrix(0.364544,-0.005468,0.003750,0.249972,0,0);-ms-transform:matrix(0.364544,-0.005468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.364544,-0.005468,0.003750,0.249972,0,0);}
.m19_c00350{transform:matrix(0.368874,-0.005533,0.003750,0.249972,0,0);-ms-transform:matrix(0.368874,-0.005533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.368874,-0.005533,0.003750,0.249972,0,0);}
.me1_c00350{transform:matrix(0.434041,-0.006511,0.003750,0.249972,0,0);-ms-transform:matrix(0.434041,-0.006511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.434041,-0.006511,0.003750,0.249972,0,0);}
.m8a_c00350{transform:matrix(0.571886,-0.008578,0.003750,0.249972,0,0);-ms-transform:matrix(0.571886,-0.008578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.571886,-0.008578,0.003750,0.249972,0,0);}
.maf_c00350{transform:matrix(0.590969,-0.008865,0.003750,0.249972,0,0);-ms-transform:matrix(0.590969,-0.008865,0.003750,0.249972,0,0);-webkit-transform:matrix(0.590969,-0.008865,0.003750,0.249972,0,0);}
.m29_c00350{transform:matrix(0.629774,-0.009447,0.003750,0.249972,0,0);-ms-transform:matrix(0.629774,-0.009447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.629774,-0.009447,0.003750,0.249972,0,0);}
.me0_c00350{transform:matrix(0.839606,-0.012594,0.003750,0.249972,0,0);-ms-transform:matrix(0.839606,-0.012594,0.003750,0.249972,0,0);-webkit-transform:matrix(0.839606,-0.012594,0.003750,0.249972,0,0);}
.mdf_c00350{transform:matrix(0.905908,-0.013589,0.003750,0.249972,0,0);-ms-transform:matrix(0.905908,-0.013589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.905908,-0.013589,0.003750,0.249972,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:0.000000px;}
.fc0_c00350{color:transparent;}
.fsf_c00350{font-size:21.002362px;}
.fs10_c00350{font-size:54.606142px;}
.fse_c00350{font-size:55.656260px;}
.fs6_c00350{font-size:56.706378px;}
.fs9_c00350{font-size:57.756497px;}
.fsa_c00350{font-size:58.806615px;}
.fsb_c00350{font-size:59.856733px;}
.fs0_c00350{font-size:60.900000px;}
.fsd_c00350{font-size:60.906851px;}
.fs7_c00350{font-size:61.956969px;}
.fs2_c00350{font-size:63.007087px;}
.fs8_c00350{font-size:64.057205px;}
.fs4_c00350{font-size:65.107323px;}
.fs1_c00350{font-size:66.150000px;}
.fs3_c00350{font-size:66.157441px;}
.fsc_c00350{font-size:67.207560px;}
.fs5_c00350{font-size:68.257678px;}
.y0_c00350{bottom:0.000000px;}
.yec_c00350{bottom:28.268460px;}
.yed_c00350{bottom:28.268587px;}
.yea_c00350{bottom:28.268662px;}
.yeb_c00350{bottom:28.269172px;}
.ye9_c00350{bottom:28.269352px;}
.ye8_c00350{bottom:28.270020px;}
.ye7_c00350{bottom:45.708007px;}
.ye6_c00350{bottom:45.708292px;}
.ye2_c00350{bottom:45.708435px;}
.ye5_c00350{bottom:45.708937px;}
.ye1_c00350{bottom:45.708952px;}
.ye4_c00350{bottom:45.709027px;}
.ye3_c00350{bottom:45.709095px;}
.yde_c00350{bottom:50.710665px;}
.ydf_c00350{bottom:51.534472px;}
.ye0_c00350{bottom:55.860915px;}
.yd6_c00350{bottom:56.933685px;}
.yd7_c00350{bottom:57.798060px;}
.yd8_c00350{bottom:59.376810px;}
.yd9_c00350{bottom:60.333870px;}
.yda_c00350{bottom:61.004550px;}
.ydb_c00350{bottom:61.741957px;}
.ydc_c00350{bottom:62.390902px;}
.ydd_c00350{bottom:62.854500px;}
.ycd_c00350{bottom:76.635165px;}
.yce_c00350{bottom:77.382420px;}
.ycf_c00350{bottom:77.613067px;}
.yd0_c00350{bottom:78.095385px;}
.yd1_c00350{bottom:79.228740px;}
.yd2_c00350{bottom:79.481670px;}
.yd3_c00350{bottom:79.867860px;}
.yd4_c00350{bottom:80.733960px;}
.yd5_c00350{bottom:81.132832px;}
.yc6_c00350{bottom:93.380595px;}
.yc7_c00350{bottom:94.148392px;}
.yc8_c00350{bottom:94.915200px;}
.yc9_c00350{bottom:96.374422px;}
.yca_c00350{bottom:97.914240px;}
.ycb_c00350{bottom:98.356748px;}
.ycc_c00350{bottom:99.275190px;}
.yc0_c00350{bottom:111.200670px;}
.yc1_c00350{bottom:112.096807px;}
.yc2_c00350{bottom:112.522785px;}
.yc3_c00350{bottom:113.926650px;}
.yc4_c00350{bottom:114.610830px;}
.yc5_c00350{bottom:115.516132px;}
.yb9_c00350{bottom:130.436220px;}
.yb8_c00350{bottom:130.436242px;}
.ybc_c00350{bottom:130.436550px;}
.ybb_c00350{bottom:130.436662px;}
.yba_c00350{bottom:130.436775px;}
.ybd_c00350{bottom:130.436827px;}
.ybe_c00350{bottom:130.436955px;}
.ybf_c00350{bottom:130.436992px;}
.yb1_c00350{bottom:144.680228px;}
.yb2_c00350{bottom:145.280692px;}
.yb3_c00350{bottom:145.554225px;}
.yb4_c00350{bottom:146.442630px;}
.yb5_c00350{bottom:146.662807px;}
.yb6_c00350{bottom:147.265463px;}
.yb7_c00350{bottom:147.618863px;}
.yb0_c00350{bottom:163.921208px;}
.yaf_c00350{bottom:163.921230px;}
.yae_c00350{bottom:163.921965px;}
.yab_c00350{bottom:163.921995px;}
.ya9_c00350{bottom:163.922063px;}
.yac_c00350{bottom:163.922078px;}
.yad_c00350{bottom:163.922333px;}
.yaa_c00350{bottom:163.922468px;}
.ya8_c00350{bottom:163.922558px;}
.ya3_c00350{bottom:176.823263px;}
.ya4_c00350{bottom:177.922028px;}
.ya5_c00350{bottom:179.199990px;}
.ya6_c00350{bottom:180.739868px;}
.ya7_c00350{bottom:182.168340px;}
.y9c_c00350{bottom:196.261170px;}
.y9d_c00350{bottom:196.842570px;}
.y9e_c00350{bottom:197.453287px;}
.y9f_c00350{bottom:197.671365px;}
.ya0_c00350{bottom:198.296310px;}
.ya1_c00350{bottom:198.615338px;}
.ya2_c00350{bottom:199.636185px;}
.y94_c00350{bottom:213.542130px;}
.y95_c00350{bottom:214.430220px;}
.y96_c00350{bottom:214.659592px;}
.y97_c00350{bottom:214.902495px;}
.y98_c00350{bottom:215.226210px;}
.y99_c00350{bottom:215.683500px;}
.y9a_c00350{bottom:216.284122px;}
.y9b_c00350{bottom:216.548595px;}
.y8c_c00350{bottom:231.092767px;}
.y8d_c00350{bottom:231.585615px;}
.y8e_c00350{bottom:231.900150px;}
.y8f_c00350{bottom:232.425750px;}
.y90_c00350{bottom:232.905150px;}
.y91_c00350{bottom:233.695575px;}
.y92_c00350{bottom:234.388830px;}
.y93_c00350{bottom:234.663135px;}
.y84_c00350{bottom:248.103022px;}
.y85_c00350{bottom:248.738617px;}
.y86_c00350{bottom:249.637327px;}
.y87_c00350{bottom:250.044240px;}
.y88_c00350{bottom:250.262362px;}
.y89_c00350{bottom:250.799557px;}
.y8a_c00350{bottom:251.066250px;}
.y8b_c00350{bottom:251.411347px;}
.y7e_c00350{bottom:265.116338px;}
.y7f_c00350{bottom:265.935615px;}
.y80_c00350{bottom:266.214382px;}
.y81_c00350{bottom:266.855963px;}
.y82_c00350{bottom:267.177037px;}
.y83_c00350{bottom:267.723007px;}
.y7c_c00350{bottom:284.306467px;}
.y7a_c00350{bottom:284.306602px;}
.y7b_c00350{bottom:284.307030px;}
.y7d_c00350{bottom:284.307045px;}
.y79_c00350{bottom:284.307120px;}
.y72_c00350{bottom:300.218535px;}
.y73_c00350{bottom:301.000118px;}
.y74_c00350{bottom:301.885410px;}
.y75_c00350{bottom:302.212342px;}
.y76_c00350{bottom:302.512747px;}
.y77_c00350{bottom:302.696370px;}
.y78_c00350{bottom:303.213570px;}
.y6f_c00350{bottom:318.556868px;}
.y6b_c00350{bottom:318.556965px;}
.y6c_c00350{bottom:318.557025px;}
.y6e_c00350{bottom:318.557363px;}
.y70_c00350{bottom:318.557505px;}
.y71_c00350{bottom:318.557565px;}
.y6d_c00350{bottom:318.557603px;}
.y63_c00350{bottom:333.431280px;}
.y64_c00350{bottom:334.012522px;}
.y65_c00350{bottom:334.184850px;}
.y66_c00350{bottom:334.647562px;}
.y67_c00350{bottom:335.869552px;}
.y68_c00350{bottom:336.125595px;}
.y69_c00350{bottom:336.432570px;}
.y6a_c00350{bottom:337.176877px;}
.y5a_c00350{bottom:351.643012px;}
.y5d_c00350{bottom:351.643177px;}
.y5f_c00350{bottom:351.643192px;}
.y5b_c00350{bottom:351.643740px;}
.y5c_c00350{bottom:351.643800px;}
.y5e_c00350{bottom:351.643838px;}
.y62_c00350{bottom:351.643890px;}
.y60_c00350{bottom:351.643897px;}
.y61_c00350{bottom:351.644153px;}
.y54_c00350{bottom:366.629333px;}
.y55_c00350{bottom:366.867218px;}
.y56_c00350{bottom:367.846297px;}
.y57_c00350{bottom:367.947518px;}
.y58_c00350{bottom:369.270765px;}
.y59_c00350{bottom:370.091363px;}
.y4c_c00350{bottom:382.307655px;}
.y4d_c00350{bottom:383.192625px;}
.y4e_c00350{bottom:384.702098px;}
.y4f_c00350{bottom:384.954893px;}
.y50_c00350{bottom:385.565677px;}
.y51_c00350{bottom:386.142443px;}
.y52_c00350{bottom:386.621880px;}
.y53_c00350{bottom:386.887695px;}
.y44_c00350{bottom:399.048548px;}
.y45_c00350{bottom:400.347608px;}
.y46_c00350{bottom:400.750095px;}
.y47_c00350{bottom:401.371890px;}
.y48_c00350{bottom:401.676083px;}
.y49_c00350{bottom:401.943840px;}
.y4a_c00350{bottom:403.010257px;}
.y4b_c00350{bottom:403.343130px;}
.y3e_c00350{bottom:417.138450px;}
.y3f_c00350{bottom:417.904463px;}
.y40_c00350{bottom:418.727205px;}
.y41_c00350{bottom:419.080875px;}
.y42_c00350{bottom:419.294498px;}
.y43_c00350{bottom:420.022545px;}
.y3d_c00350{bottom:435.968258px;}
.y3c_c00350{bottom:435.968430px;}
.y3b_c00350{bottom:435.968775px;}
.y3a_c00350{bottom:435.969338px;}
.y39_c00350{bottom:435.969983px;}
.y38_c00350{bottom:435.970545px;}
.y36_c00350{bottom:435.970958px;}
.y37_c00350{bottom:435.971040px;}
.y2e_c00350{bottom:449.546760px;}
.y2f_c00350{bottom:450.218985px;}
.y30_c00350{bottom:450.764955px;}
.y31_c00350{bottom:451.364618px;}
.y32_c00350{bottom:451.818638px;}
.y33_c00350{bottom:452.544735px;}
.y34_c00350{bottom:453.016118px;}
.y35_c00350{bottom:453.711195px;}
.y26_c00350{bottom:467.636258px;}
.y27_c00350{bottom:468.327428px;}
.y28_c00350{bottom:468.524475px;}
.y29_c00350{bottom:468.977993px;}
.y2a_c00350{bottom:469.725435px;}
.y2b_c00350{bottom:470.164455px;}
.y2c_c00350{bottom:470.416718px;}
.y2d_c00350{bottom:471.167940px;}
.y21_c00350{bottom:484.379603px;}
.y22_c00350{bottom:485.146388px;}
.y23_c00350{bottom:486.238770px;}
.y24_c00350{bottom:486.733545px;}
.y25_c00350{bottom:487.825208px;}
.y18_c00350{bottom:501.662310px;}
.y19_c00350{bottom:502.520010px;}
.y1a_c00350{bottom:502.650428px;}
.y1b_c00350{bottom:503.152448px;}
.y1c_c00350{bottom:503.502232px;}
.y1d_c00350{bottom:503.852940px;}
.y1e_c00350{bottom:504.862673px;}
.y1f_c00350{bottom:505.347308px;}
.y20_c00350{bottom:506.073202px;}
.y11_c00350{bottom:517.863000px;}
.y12_c00350{bottom:518.353050px;}
.y13_c00350{bottom:519.477848px;}
.y14_c00350{bottom:519.790867px;}
.y15_c00350{bottom:520.459230px;}
.y16_c00350{bottom:521.350613px;}
.y17_c00350{bottom:521.954062px;}
.y9_c00350{bottom:537.031500px;}
.ya_c00350{bottom:537.429000px;}
.yb_c00350{bottom:537.720000px;}
.yc_c00350{bottom:538.488000px;}
.yd_c00350{bottom:538.974000px;}
.ye_c00350{bottom:539.376000px;}
.yf_c00350{bottom:539.706000px;}
.y10_c00350{bottom:540.144000px;}
.y2_c00350{bottom:552.964500px;}
.y3_c00350{bottom:553.990500px;}
.y4_c00350{bottom:554.139000px;}
.y5_c00350{bottom:554.991000px;}
.y6_c00350{bottom:556.446000px;}
.y7_c00350{bottom:556.737000px;}
.y8_c00350{bottom:557.749500px;}
.y1_c00350{bottom:568.605000px;}
.h11_c00350{height:21.002362px;}
.h12_c00350{height:54.606142px;}
.h10_c00350{height:55.656260px;}
.h8_c00350{height:56.706378px;}
.hb_c00350{height:57.756497px;}
.hc_c00350{height:58.806615px;}
.hd_c00350{height:59.856733px;}
.h2_c00350{height:60.900000px;}
.hf_c00350{height:60.906851px;}
.h9_c00350{height:61.956969px;}
.h4_c00350{height:63.007087px;}
.ha_c00350{height:64.057205px;}
.h6_c00350{height:65.107323px;}
.h3_c00350{height:66.150000px;}
.h5_c00350{height:66.157441px;}
.he_c00350{height:67.207560px;}
.h7_c00350{height:68.257678px;}
.h0_c00350{height:613.170000px;}
.h1_c00350{height:613.500000px;}
.w0_c00350{width:359.100000px;}
.w1_c00350{width:359.250000px;}
.x0_c00350{left:0.000000px;}
.x3_c00350{left:17.221500px;}
.x35_c00350{left:18.284857px;}
.x54_c00350{left:20.414010px;}
.x51_c00350{left:22.280287px;}
.x20_c00350{left:23.371417px;}
.x10_c00350{left:24.768000px;}
.x6b_c00350{left:26.728035px;}
.x45_c00350{left:28.077472px;}
.x6f_c00350{left:31.546087px;}
.x40_c00350{left:34.449105px;}
.x6c_c00350{left:45.630787px;}
.xa_c00350{left:50.341500px;}
.x73_c00350{left:55.878420px;}
.x11_c00350{left:57.438000px;}
.x26_c00350{left:59.789310px;}
.x48_c00350{left:63.535357px;}
.x62_c00350{left:65.729437px;}
.x59_c00350{left:68.211967px;}
.x55_c00350{left:69.288472px;}
.x17_c00350{left:70.842457px;}
.xb_c00350{left:74.650500px;}
.x21_c00350{left:76.551015px;}
.x4_c00350{left:77.601000px;}
.x18_c00350{left:79.036845px;}
.x5_c00350{left:86.362500px;}
.x31_c00350{left:87.878737px;}
.x2d_c00350{left:89.913765px;}
.x22_c00350{left:91.687965px;}
.x27_c00350{left:93.886792px;}
.x46_c00350{left:95.855227px;}
.x70_c00350{left:97.682137px;}
.x36_c00350{left:99.487642px;}
.x5d_c00350{left:101.383702px;}
.x41_c00350{left:104.422162px;}
.x76_c00350{left:108.911782px;}
.x19_c00350{left:110.404372px;}
.x42_c00350{left:111.670275px;}
.x63_c00350{left:112.745355px;}
.x74_c00350{left:116.618407px;}
.x72_c00350{left:117.942990px;}
.x52_c00350{left:122.189295px;}
.x37_c00350{left:124.619760px;}
.x23_c00350{left:126.523500px;}
.x64_c00350{left:129.484350px;}
.x28_c00350{left:131.363730px;}
.x12_c00350{left:132.424500px;}
.x6d_c00350{left:135.280447px;}
.x6_c00350{left:136.504500px;}
.xc_c00350{left:138.643500px;}
.x5e_c00350{left:144.271267px;}
.x1_c00350{left:147.420000px;}
.x1d_c00350{left:149.488312px;}
.x13_c00350{left:153.292500px;}
.x50_c00350{left:155.803027px;}
.x29_c00350{left:159.731302px;}
.x32_c00350{left:162.632715px;}
.x68_c00350{left:166.063200px;}
.x71_c00350{left:167.867872px;}
.x4e_c00350{left:169.933590px;}
.x3b_c00350{left:174.354322px;}
.x4c_c00350{left:175.515330px;}
.x5a_c00350{left:178.085895px;}
.xd_c00350{left:179.095500px;}
.x2e_c00350{left:181.453875px;}
.x1e_c00350{left:184.873852px;}
.x56_c00350{left:186.474982px;}
.x66_c00350{left:191.985825px;}
.x33_c00350{left:194.812650px;}
.x14_c00350{left:197.850000px;}
.x38_c00350{left:199.201635px;}
.x65_c00350{left:202.118032px;}
.x2a_c00350{left:205.137127px;}
.x43_c00350{left:206.188192px;}
.x75_c00350{left:207.579900px;}
.x47_c00350{left:208.728607px;}
.x3c_c00350{left:210.272242px;}
.xe_c00350{left:212.610000px;}
.x34_c00350{left:214.255320px;}
.x5f_c00350{left:215.342542px;}
.x1a_c00350{left:217.217753px;}
.x7_c00350{left:222.051000px;}
.x49_c00350{left:226.111740px;}
.x57_c00350{left:227.789220px;}
.x6e_c00350{left:232.221750px;}
.x2b_c00350{left:234.562177px;}
.x24_c00350{left:237.241830px;}
.x8_c00350{left:239.170500px;}
.x4d_c00350{left:241.672702px;}
.x3d_c00350{left:244.222230px;}
.x1b_c00350{left:247.526302px;}
.x4a_c00350{left:249.677437px;}
.x2f_c00350{left:251.932237px;}
.x67_c00350{left:254.109877px;}
.x6a_c00350{left:256.075245px;}
.x15_c00350{left:257.275500px;}
.x53_c00350{left:259.372530px;}
.x2_c00350{left:261.090000px;}
.x1f_c00350{left:262.852522px;}
.x44_c00350{left:264.795570px;}
.x39_c00350{left:265.895145px;}
.x60_c00350{left:269.887305px;}
.x3e_c00350{left:272.383875px;}
.x58_c00350{left:274.776615px;}
.xf_c00350{left:276.600000px;}
.x2c_c00350{left:278.000025px;}
.x30_c00350{left:280.015560px;}
.x3a_c00350{left:286.686330px;}
.x3f_c00350{left:288.004402px;}
.x4f_c00350{left:290.684835px;}
.x1c_c00350{left:292.918627px;}
.x61_c00350{left:293.920245px;}
.x25_c00350{left:295.025062px;}
.x16_c00350{left:297.505500px;}
.x9_c00350{left:298.773000px;}
.x5b_c00350{left:301.703452px;}
.x69_c00350{left:304.319317px;}
.x4b_c00350{left:306.899647px;}
.x78_c00350{left:311.613757px;}
.x77_c00350{left:314.922742px;}
.x5c_c00350{left:324.591487px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
.fsf_c00350{font-size:18.668767pt;}
.fs10_c00350{font-size:48.538793pt;}
.fse_c00350{font-size:49.472231pt;}
.fs6_c00350{font-size:50.405670pt;}
.fs9_c00350{font-size:51.339108pt;}
.fsa_c00350{font-size:52.272546pt;}
.fsb_c00350{font-size:53.205985pt;}
.fs0_c00350{font-size:54.133333pt;}
.fsd_c00350{font-size:54.139423pt;}
.fs7_c00350{font-size:55.072861pt;}
.fs2_c00350{font-size:56.006300pt;}
.fs8_c00350{font-size:56.939738pt;}
.fs4_c00350{font-size:57.873176pt;}
.fs1_c00350{font-size:58.800000pt;}
.fs3_c00350{font-size:58.806615pt;}
.fsc_c00350{font-size:59.740053pt;}
.fs5_c00350{font-size:60.673491pt;}
.y0_c00350{bottom:0.000000pt;}
.yec_c00350{bottom:25.127520pt;}
.yed_c00350{bottom:25.127633pt;}
.yea_c00350{bottom:25.127700pt;}
.yeb_c00350{bottom:25.128153pt;}
.ye9_c00350{bottom:25.128313pt;}
.ye8_c00350{bottom:25.128907pt;}
.ye7_c00350{bottom:40.629340pt;}
.ye6_c00350{bottom:40.629593pt;}
.ye2_c00350{bottom:40.629720pt;}
.ye5_c00350{bottom:40.630167pt;}
.ye1_c00350{bottom:40.630180pt;}
.ye4_c00350{bottom:40.630247pt;}
.ye3_c00350{bottom:40.630307pt;}
.yde_c00350{bottom:45.076147pt;}
.ydf_c00350{bottom:45.808420pt;}
.ye0_c00350{bottom:49.654147pt;}
.yd6_c00350{bottom:50.607720pt;}
.yd7_c00350{bottom:51.376053pt;}
.yd8_c00350{bottom:52.779387pt;}
.yd9_c00350{bottom:53.630107pt;}
.yda_c00350{bottom:54.226267pt;}
.ydb_c00350{bottom:54.881740pt;}
.ydc_c00350{bottom:55.458580pt;}
.ydd_c00350{bottom:55.870667pt;}
.ycd_c00350{bottom:68.120147pt;}
.yce_c00350{bottom:68.784373pt;}
.ycf_c00350{bottom:68.989393pt;}
.yd0_c00350{bottom:69.418120pt;}
.yd1_c00350{bottom:70.425547pt;}
.yd2_c00350{bottom:70.650373pt;}
.yd3_c00350{bottom:70.993653pt;}
.yd4_c00350{bottom:71.763520pt;}
.yd5_c00350{bottom:72.118073pt;}
.yc6_c00350{bottom:83.004973pt;}
.yc7_c00350{bottom:83.687460pt;}
.yc8_c00350{bottom:84.369067pt;}
.yc9_c00350{bottom:85.666153pt;}
.yca_c00350{bottom:87.034880pt;}
.ycb_c00350{bottom:87.428220pt;}
.ycc_c00350{bottom:88.244613pt;}
.yc0_c00350{bottom:98.845040pt;}
.yc1_c00350{bottom:99.641607pt;}
.yc2_c00350{bottom:100.020253pt;}
.yc3_c00350{bottom:101.268133pt;}
.yc4_c00350{bottom:101.876293pt;}
.yc5_c00350{bottom:102.681007pt;}
.yb9_c00350{bottom:115.943307pt;}
.yb8_c00350{bottom:115.943327pt;}
.ybc_c00350{bottom:115.943600pt;}
.ybb_c00350{bottom:115.943700pt;}
.yba_c00350{bottom:115.943800pt;}
.ybd_c00350{bottom:115.943847pt;}
.ybe_c00350{bottom:115.943960pt;}
.ybf_c00350{bottom:115.943993pt;}
.yb1_c00350{bottom:128.604647pt;}
.yb2_c00350{bottom:129.138393pt;}
.yb3_c00350{bottom:129.381533pt;}
.yb4_c00350{bottom:130.171227pt;}
.yb5_c00350{bottom:130.366940pt;}
.yb6_c00350{bottom:130.902633pt;}
.yb7_c00350{bottom:131.216767pt;}
.yb0_c00350{bottom:145.707740pt;}
.yaf_c00350{bottom:145.707760pt;}
.yae_c00350{bottom:145.708413pt;}
.yab_c00350{bottom:145.708440pt;}
.ya9_c00350{bottom:145.708500pt;}
.yac_c00350{bottom:145.708513pt;}
.yad_c00350{bottom:145.708740pt;}
.yaa_c00350{bottom:145.708860pt;}
.ya8_c00350{bottom:145.708940pt;}
.ya3_c00350{bottom:157.176233pt;}
.ya4_c00350{bottom:158.152913pt;}
.ya5_c00350{bottom:159.288880pt;}
.ya6_c00350{bottom:160.657660pt;}
.ya7_c00350{bottom:161.927413pt;}
.y9c_c00350{bottom:174.454373pt;}
.y9d_c00350{bottom:174.971173pt;}
.y9e_c00350{bottom:175.514033pt;}
.y9f_c00350{bottom:175.707880pt;}
.ya0_c00350{bottom:176.263387pt;}
.ya1_c00350{bottom:176.546967pt;}
.ya2_c00350{bottom:177.454387pt;}
.y94_c00350{bottom:189.815227pt;}
.y95_c00350{bottom:190.604640pt;}
.y96_c00350{bottom:190.808527pt;}
.y97_c00350{bottom:191.024440pt;}
.y98_c00350{bottom:191.312187pt;}
.y99_c00350{bottom:191.718667pt;}
.y9a_c00350{bottom:192.252553pt;}
.y9b_c00350{bottom:192.487640pt;}
.y8c_c00350{bottom:205.415793pt;}
.y8d_c00350{bottom:205.853880pt;}
.y8e_c00350{bottom:206.133467pt;}
.y8f_c00350{bottom:206.600667pt;}
.y90_c00350{bottom:207.026800pt;}
.y91_c00350{bottom:207.729400pt;}
.y92_c00350{bottom:208.345627pt;}
.y93_c00350{bottom:208.589453pt;}
.y84_c00350{bottom:220.536020pt;}
.y85_c00350{bottom:221.100993pt;}
.y86_c00350{bottom:221.899847pt;}
.y87_c00350{bottom:222.261547pt;}
.y88_c00350{bottom:222.455433pt;}
.y89_c00350{bottom:222.932940pt;}
.y8a_c00350{bottom:223.170000pt;}
.y8b_c00350{bottom:223.476753pt;}
.y7e_c00350{bottom:235.658967pt;}
.y7f_c00350{bottom:236.387213pt;}
.y80_c00350{bottom:236.635007pt;}
.y81_c00350{bottom:237.205300pt;}
.y82_c00350{bottom:237.490700pt;}
.y83_c00350{bottom:237.976007pt;}
.y7c_c00350{bottom:252.716860pt;}
.y7a_c00350{bottom:252.716980pt;}
.y7b_c00350{bottom:252.717360pt;}
.y7d_c00350{bottom:252.717373pt;}
.y79_c00350{bottom:252.717440pt;}
.y72_c00350{bottom:266.860920pt;}
.y73_c00350{bottom:267.555660pt;}
.y74_c00350{bottom:268.342587pt;}
.y75_c00350{bottom:268.633193pt;}
.y76_c00350{bottom:268.900220pt;}
.y77_c00350{bottom:269.063440pt;}
.y78_c00350{bottom:269.523173pt;}
.y6f_c00350{bottom:283.161660pt;}
.y6b_c00350{bottom:283.161747pt;}
.y6c_c00350{bottom:283.161800pt;}
.y6e_c00350{bottom:283.162100pt;}
.y70_c00350{bottom:283.162227pt;}
.y71_c00350{bottom:283.162280pt;}
.y6d_c00350{bottom:283.162313pt;}
.y63_c00350{bottom:296.383360pt;}
.y64_c00350{bottom:296.900020pt;}
.y65_c00350{bottom:297.053200pt;}
.y66_c00350{bottom:297.464500pt;}
.y67_c00350{bottom:298.550713pt;}
.y68_c00350{bottom:298.778307pt;}
.y69_c00350{bottom:299.051173pt;}
.y6a_c00350{bottom:299.712780pt;}
.y5a_c00350{bottom:312.571567pt;}
.y5d_c00350{bottom:312.571713pt;}
.y5f_c00350{bottom:312.571727pt;}
.y5b_c00350{bottom:312.572213pt;}
.y5c_c00350{bottom:312.572267pt;}
.y5e_c00350{bottom:312.572300pt;}
.y62_c00350{bottom:312.572347pt;}
.y60_c00350{bottom:312.572353pt;}
.y61_c00350{bottom:312.572580pt;}
.y54_c00350{bottom:325.892740pt;}
.y55_c00350{bottom:326.104193pt;}
.y56_c00350{bottom:326.974487pt;}
.y57_c00350{bottom:327.064460pt;}
.y58_c00350{bottom:328.240680pt;}
.y59_c00350{bottom:328.970100pt;}
.y4c_c00350{bottom:339.829027pt;}
.y4d_c00350{bottom:340.615667pt;}
.y4e_c00350{bottom:341.957420pt;}
.y4f_c00350{bottom:342.182127pt;}
.y50_c00350{bottom:342.725047pt;}
.y51_c00350{bottom:343.237727pt;}
.y52_c00350{bottom:343.663893pt;}
.y53_c00350{bottom:343.900173pt;}
.y44_c00350{bottom:354.709820pt;}
.y45_c00350{bottom:355.864540pt;}
.y46_c00350{bottom:356.222307pt;}
.y47_c00350{bottom:356.775013pt;}
.y48_c00350{bottom:357.045407pt;}
.y49_c00350{bottom:357.283413pt;}
.y4a_c00350{bottom:358.231340pt;}
.y4b_c00350{bottom:358.527227pt;}
.y3e_c00350{bottom:370.789733pt;}
.y3f_c00350{bottom:371.470633pt;}
.y40_c00350{bottom:372.201960pt;}
.y41_c00350{bottom:372.516333pt;}
.y42_c00350{bottom:372.706220pt;}
.y43_c00350{bottom:373.353373pt;}
.y3d_c00350{bottom:387.527340pt;}
.y3c_c00350{bottom:387.527493pt;}
.y3b_c00350{bottom:387.527800pt;}
.y3a_c00350{bottom:387.528300pt;}
.y39_c00350{bottom:387.528873pt;}
.y38_c00350{bottom:387.529373pt;}
.y36_c00350{bottom:387.529740pt;}
.y37_c00350{bottom:387.529813pt;}
.y2e_c00350{bottom:399.597120pt;}
.y2f_c00350{bottom:400.194653pt;}
.y30_c00350{bottom:400.679960pt;}
.y31_c00350{bottom:401.212993pt;}
.y32_c00350{bottom:401.616567pt;}
.y33_c00350{bottom:402.261987pt;}
.y34_c00350{bottom:402.680993pt;}
.y35_c00350{bottom:403.298840pt;}
.y26_c00350{bottom:415.676673pt;}
.y27_c00350{bottom:416.291047pt;}
.y28_c00350{bottom:416.466200pt;}
.y29_c00350{bottom:416.869327pt;}
.y2a_c00350{bottom:417.533720pt;}
.y2b_c00350{bottom:417.923960pt;}
.y2c_c00350{bottom:418.148193pt;}
.y2d_c00350{bottom:418.815947pt;}
.y21_c00350{bottom:430.559647pt;}
.y22_c00350{bottom:431.241233pt;}
.y23_c00350{bottom:432.212240pt;}
.y24_c00350{bottom:432.652040pt;}
.y25_c00350{bottom:433.622407pt;}
.y18_c00350{bottom:445.922053pt;}
.y19_c00350{bottom:446.684453pt;}
.y1a_c00350{bottom:446.800380pt;}
.y1b_c00350{bottom:447.246620pt;}
.y1c_c00350{bottom:447.557540pt;}
.y1d_c00350{bottom:447.869280pt;}
.y1e_c00350{bottom:448.766820pt;}
.y1f_c00350{bottom:449.197607pt;}
.y20_c00350{bottom:449.842847pt;}
.y11_c00350{bottom:460.322667pt;}
.y12_c00350{bottom:460.758267pt;}
.y13_c00350{bottom:461.758087pt;}
.y14_c00350{bottom:462.036327pt;}
.y15_c00350{bottom:462.630427pt;}
.y16_c00350{bottom:463.422767pt;}
.y17_c00350{bottom:463.959167pt;}
.y9_c00350{bottom:477.361333pt;}
.ya_c00350{bottom:477.714667pt;}
.yb_c00350{bottom:477.973333pt;}
.yc_c00350{bottom:478.656000pt;}
.yd_c00350{bottom:479.088000pt;}
.ye_c00350{bottom:479.445333pt;}
.yf_c00350{bottom:479.738667pt;}
.y10_c00350{bottom:480.128000pt;}
.y2_c00350{bottom:491.524000pt;}
.y3_c00350{bottom:492.436000pt;}
.y4_c00350{bottom:492.568000pt;}
.y5_c00350{bottom:493.325333pt;}
.y6_c00350{bottom:494.618667pt;}
.y7_c00350{bottom:494.877333pt;}
.y8_c00350{bottom:495.777333pt;}
.y1_c00350{bottom:505.426667pt;}
.h11_c00350{height:18.668767pt;}
.h12_c00350{height:48.538793pt;}
.h10_c00350{height:49.472231pt;}
.h8_c00350{height:50.405670pt;}
.hb_c00350{height:51.339108pt;}
.hc_c00350{height:52.272546pt;}
.hd_c00350{height:53.205985pt;}
.h2_c00350{height:54.133333pt;}
.hf_c00350{height:54.139423pt;}
.h9_c00350{height:55.072861pt;}
.h4_c00350{height:56.006300pt;}
.ha_c00350{height:56.939738pt;}
.h6_c00350{height:57.873176pt;}
.h3_c00350{height:58.800000pt;}
.h5_c00350{height:58.806615pt;}
.he_c00350{height:59.740053pt;}
.h7_c00350{height:60.673491pt;}
.h0_c00350{height:545.040000pt;}
.h1_c00350{height:545.333333pt;}
.w0_c00350{width:319.200000pt;}
.w1_c00350{width:319.333333pt;}
.x0_c00350{left:0.000000pt;}
.x3_c00350{left:15.308000pt;}
.x35_c00350{left:16.253207pt;}
.x54_c00350{left:18.145787pt;}
.x51_c00350{left:19.804700pt;}
.x20_c00350{left:20.774593pt;}
.x10_c00350{left:22.016000pt;}
.x6b_c00350{left:23.758253pt;}
.x45_c00350{left:24.957753pt;}
.x6f_c00350{left:28.040967pt;}
.x40_c00350{left:30.621427pt;}
.x6c_c00350{left:40.560700pt;}
.xa_c00350{left:44.748000pt;}
.x73_c00350{left:49.669707pt;}
.x11_c00350{left:51.056000pt;}
.x26_c00350{left:53.146053pt;}
.x48_c00350{left:56.475873pt;}
.x62_c00350{left:58.426167pt;}
.x59_c00350{left:60.632860pt;}
.x55_c00350{left:61.589753pt;}
.x17_c00350{left:62.971073pt;}
.xb_c00350{left:66.356000pt;}
.x21_c00350{left:68.045347pt;}
.x4_c00350{left:68.978667pt;}
.x18_c00350{left:70.254973pt;}
.x5_c00350{left:76.766667pt;}
.x31_c00350{left:78.114433pt;}
.x2d_c00350{left:79.923347pt;}
.x22_c00350{left:81.500413pt;}
.x27_c00350{left:83.454927pt;}
.x46_c00350{left:85.204647pt;}
.x70_c00350{left:86.828567pt;}
.x36_c00350{left:88.433460pt;}
.x5d_c00350{left:90.118847pt;}
.x41_c00350{left:92.819700pt;}
.x76_c00350{left:96.810473pt;}
.x19_c00350{left:98.137220pt;}
.x42_c00350{left:99.262467pt;}
.x63_c00350{left:100.218093pt;}
.x74_c00350{left:103.660807pt;}
.x72_c00350{left:104.838213pt;}
.x52_c00350{left:108.612707pt;}
.x37_c00350{left:110.773120pt;}
.x23_c00350{left:112.465333pt;}
.x64_c00350{left:115.097200pt;}
.x28_c00350{left:116.767760pt;}
.x12_c00350{left:117.710667pt;}
.x6d_c00350{left:120.249287pt;}
.x6_c00350{left:121.337333pt;}
.xc_c00350{left:123.238667pt;}
.x5e_c00350{left:128.241127pt;}
.x1_c00350{left:131.040000pt;}
.x1d_c00350{left:132.878500pt;}
.x13_c00350{left:136.260000pt;}
.x50_c00350{left:138.491580pt;}
.x29_c00350{left:141.983380pt;}
.x32_c00350{left:144.562413pt;}
.x68_c00350{left:147.611733pt;}
.x71_c00350{left:149.215887pt;}
.x4e_c00350{left:151.052080pt;}
.x3b_c00350{left:154.981620pt;}
.x4c_c00350{left:156.013627pt;}
.x5a_c00350{left:158.298573pt;}
.xd_c00350{left:159.196000pt;}
.x2e_c00350{left:161.292333pt;}
.x1e_c00350{left:164.332313pt;}
.x56_c00350{left:165.755540pt;}
.x66_c00350{left:170.654067pt;}
.x33_c00350{left:173.166800pt;}
.x14_c00350{left:175.866667pt;}
.x38_c00350{left:177.068120pt;}
.x65_c00350{left:179.660473pt;}
.x2a_c00350{left:182.344113pt;}
.x43_c00350{left:183.278393pt;}
.x75_c00350{left:184.515467pt;}
.x47_c00350{left:185.536540pt;}
.x3c_c00350{left:186.908660pt;}
.xe_c00350{left:188.986667pt;}
.x34_c00350{left:190.449173pt;}
.x5f_c00350{left:191.415593pt;}
.x1a_c00350{left:193.082447pt;}
.x7_c00350{left:197.378667pt;}
.x49_c00350{left:200.988213pt;}
.x57_c00350{left:202.479307pt;}
.x6e_c00350{left:206.419333pt;}
.x2b_c00350{left:208.499713pt;}
.x24_c00350{left:210.881627pt;}
.x8_c00350{left:212.596000pt;}
.x4d_c00350{left:214.820180pt;}
.x3d_c00350{left:217.086427pt;}
.x1b_c00350{left:220.023380pt;}
.x4a_c00350{left:221.935500pt;}
.x2f_c00350{left:223.939767pt;}
.x67_c00350{left:225.875447pt;}
.x6a_c00350{left:227.622440pt;}
.x15_c00350{left:228.689333pt;}
.x53_c00350{left:230.553360pt;}
.x2_c00350{left:232.080000pt;}
.x1f_c00350{left:233.646687pt;}
.x44_c00350{left:235.373840pt;}
.x39_c00350{left:236.351240pt;}
.x60_c00350{left:239.899827pt;}
.x3e_c00350{left:242.119000pt;}
.x58_c00350{left:244.245880pt;}
.xf_c00350{left:245.866667pt;}
.x2c_c00350{left:247.111133pt;}
.x30_c00350{left:248.902720pt;}
.x3a_c00350{left:254.832293pt;}
.x3f_c00350{left:256.003913pt;}
.x4f_c00350{left:258.386520pt;}
.x1c_c00350{left:260.372113pt;}
.x61_c00350{left:261.262440pt;}
.x25_c00350{left:262.244500pt;}
.x16_c00350{left:264.449333pt;}
.x9_c00350{left:265.576000pt;}
.x5b_c00350{left:268.180847pt;}
.x69_c00350{left:270.506060pt;}
.x4b_c00350{left:272.799687pt;}
.x78_c00350{left:276.990007pt;}
.x77_c00350{left:279.931327pt;}
.x5c_c00350{left:288.525767pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00351 {
    display:none;
  }
  .loading-indicator_c00351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00351 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00351 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00351" -> "#page-container .classname_c00351")
 */
.pf_c00351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00351 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00351 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00351 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00351 {overflow:visible;}
  }
}
.c_c00351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00351 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00351:after { /* webkit #35443 */
  content: '';
}
.t_c00351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00351 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00351 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00351 { /* info for Javascript */
  display:none;
}
.l_c00351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00351:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00351 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00351.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c00351{transform:matrix(0.019960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019960,0.000000,0.000000,0.250000,0,0);}
.m5b_c00351{transform:matrix(0.067530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067530,0.000000,0.000000,0.250000,0,0);}
.m7d_c00351{transform:matrix(0.090960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090960,0.000000,0.000000,0.250000,0,0);}
.md0_c00351{transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);}
.mbd_c00351{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00351{transform:matrix(0.127385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127385,0.000000,0.000000,0.250000,0,0);}
.md9_c00351{transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);}
.m77_c00351{transform:matrix(0.131695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131695,0.000000,0.000000,0.250000,0,0);}
.m4d_c00351{transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);}
.m62_c00351{transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);}
.m7e_c00351{transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);}
.m9e_c00351{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00351{transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);}
.mc0_c00351{transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00351{transform:matrix(0.148655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.154455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154455,0.000000,0.000000,0.250000,0,0);}
.m8f_c00351{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m85_c00351{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.m4f_c00351{transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159005,0.000000,0.000000,0.250000,0,0);}
.m83_c00351{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m40_c00351{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m6f_c00351{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m2b_c00351{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{transform:matrix(0.165380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165380,0.000000,0.000000,0.250000,0,0);}
.mcb_c00351{transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166485,0.000000,0.000000,0.250000,0,0);}
.m50_c00351{transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167160,0.000000,0.000000,0.250000,0,0);}
.m6c_c00351{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m74_c00351{transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);}
.m7b_c00351{transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170915,0.000000,0.000000,0.250000,0,0);}
.mdd_c00351{transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171555,0.000000,0.000000,0.250000,0,0);}
.m5d_c00351{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.172240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172240,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);}
.m5a_c00351{transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172345,0.000000,0.000000,0.250000,0,0);}
.mce_c00351{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m46_c00351{transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m81_c00351{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.me0_c00351{transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174595,0.000000,0.000000,0.250000,0,0);}
.m76_c00351{transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m94_c00351{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.md7_c00351{transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176015,0.000000,0.000000,0.250000,0,0);}
.mad_c00351{transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);}
.m4e_c00351{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m47_c00351{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.mcd_c00351{transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);}
.m51_c00351{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00351{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.me4_c00351{transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);}
.me2_c00351{transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);}
.mb7_c00351{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m21_c00351{transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);}
.mcc_c00351{transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);}
.mbe_c00351{transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);}
.m6b_c00351{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m9d_c00351{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.maa_c00351{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00351{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);}
.mca_c00351{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m9f_c00351{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m93_c00351{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00351{transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);}
.m5e_c00351{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.mc1_c00351{transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);}
.m9a_c00351{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m23_c00351{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.190555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190555,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.mb3_c00351{transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);}
.m78_c00351{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m9b_c00351{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m6d_c00351{transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192010,0.000000,0.000000,0.250000,0,0);}
.m7c_c00351{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m72_c00351{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.mbf_c00351{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.mc7_c00351{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.m90_c00351{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.m61_c00351{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m52_c00351{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m49_c00351{transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);}
.md3_c00351{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.mc6_c00351{transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);}
.m53_c00351{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.m98_c00351{transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195970,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m84_c00351{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m8e_c00351{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.m7a_c00351{transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00351{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.mc4_c00351{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.m6a_c00351{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.me3_c00351{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m79_c00351{transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198060,0.000000,0.000000,0.250000,0,0);}
.m6e_c00351{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);}
.m9c_c00351{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.mda_c00351{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.me5_c00351{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m86_c00351{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.mc5_c00351{transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);}
.m70_c00351{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m8b_c00351{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m20_c00351{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m8d_c00351{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.ma3_c00351{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202930,0.000000,0.000000,0.250000,0,0);}
.m56_c00351{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m8a_c00351{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);}
.m89_c00351{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m27_c00351{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.mb1_c00351{transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205890,0.000000,0.000000,0.250000,0,0);}
.m66_c00351{transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);}
.me1_c00351{transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);}
.md8_c00351{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.ma9_c00351{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.ma1_c00351{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m68_c00351{transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);}
.m65_c00351{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m63_c00351{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m60_c00351{transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);}
.m82_c00351{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);}
.m69_c00351{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.mb0_c00351{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.mb6_c00351{transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);}
.m88_c00351{transform:matrix(0.215410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215410,0.000000,0.000000,0.250000,0,0);}
.md6_c00351{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.ma7_c00351{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.m58_c00351{transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217305,0.000000,0.000000,0.250000,0,0);}
.m75_c00351{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.mac_c00351{transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);}
.ma6_c00351{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.m16_c00351{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00351{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m97_c00351{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m45_c00351{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.md4_c00351{transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);}
.m57_c00351{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00351{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.m2f_c00351{transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);}
.m71_c00351{transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224590,0.000000,0.000000,0.250000,0,0);}
.m39_c00351{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.ma2_c00351{transform:matrix(0.229240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229240,0.000000,0.000000,0.250000,0,0);}
.md1_c00351{transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.230505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230505,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m4b_c00351{transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);}
.m48_c00351{transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);}
.m59_c00351{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.mb9_c00351{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00351{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235540,0.000000,0.000000,0.250000,0,0);}
.m4a_c00351{transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);}
.m91_c00351{transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);}
.md2_c00351{transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);}
.md5_c00351{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00351{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.mc9_c00351{transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239915,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.m67_c00351{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00351{transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);}
.m87_c00351{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m64_c00351{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m92_c00351{transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m54_c00351{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m3e_c00351{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m73_c00351{transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);}
.m55_c00351{transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258515,0.000000,0.000000,0.250000,0,0);}
.m96_c00351{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.maf_c00351{transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);}
.m33_c00351{transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);}
.mdf_c00351{transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);}
.mb5_c00351{transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);}
.mcf_c00351{transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.mbb_c00351{transform:matrix(0.276710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276710,0.000000,0.000000,0.250000,0,0);}
.ma5_c00351{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);}
.mc2_c00351{transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);}
.mba_c00351{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.mb4_c00351{transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);}
.m30_c00351{transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.mc8_c00351{transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);}
.m7f_c00351{transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);}
.m36_c00351{transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);}
.m80_c00351{transform:matrix(0.302760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302760,0.000000,0.000000,0.250000,0,0);}
.m99_c00351{transform:matrix(0.304580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304580,0.000000,0.000000,0.250000,0,0);}
.m32_c00351{transform:matrix(0.305375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305375,0.000000,0.000000,0.250000,0,0);}
.m35_c00351{transform:matrix(0.317120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317120,0.000000,0.000000,0.250000,0,0);}
.mde_c00351{transform:matrix(0.319420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319420,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.430545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430545,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.454925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454925,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.537380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537380,0.000000,0.000000,0.250000,0,0);}
.mae_c00351{transform:matrix(0.538860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538860,0.000000,0.000000,0.250000,0,0);}
.m95_c00351{transform:matrix(0.625155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625155,0.000000,0.000000,0.250000,0,0);}
.mdb_c00351{transform:matrix(0.642090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642090,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.742850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742850,0.000000,0.000000,0.250000,0,0);}
.m37_c00351{transform:matrix(0.788170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788170,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:0.000000px;}
.fc0_c00351{color:transparent;}
.fs6_c00351{font-size:34.650000px;}
.fs5_c00351{font-size:52.500000px;}
.fs10_c00351{font-size:55.650000px;}
.fsd_c00351{font-size:57.750000px;}
.fsa_c00351{font-size:58.800000px;}
.fsf_c00351{font-size:59.850000px;}
.fs1_c00351{font-size:60.900000px;}
.fsc_c00351{font-size:61.950000px;}
.fsb_c00351{font-size:63.000000px;}
.fs2_c00351{font-size:64.050000px;}
.fs4_c00351{font-size:65.100000px;}
.fse_c00351{font-size:66.150000px;}
.fs3_c00351{font-size:67.200000px;}
.fs7_c00351{font-size:68.250000px;}
.fs8_c00351{font-size:69.300000px;}
.fs9_c00351{font-size:71.400000px;}
.fs0_c00351{font-size:115.500000px;}
.y0_c00351{bottom:0.000000px;}
.y21_c00351{bottom:24.514500px;}
.y20_c00351{bottom:42.120000px;}
.y1f_c00351{bottom:59.901000px;}
.y1e_c00351{bottom:75.945000px;}
.y1d_c00351{bottom:93.493500px;}
.y1c_c00351{bottom:110.065500px;}
.y1b_c00351{bottom:127.642500px;}
.y1a_c00351{bottom:143.754000px;}
.y19_c00351{bottom:160.590000px;}
.y18_c00351{bottom:178.395000px;}
.y17_c00351{bottom:195.430500px;}
.y16_c00351{bottom:213.076500px;}
.y15_c00351{bottom:230.353500px;}
.y14_c00351{bottom:246.781500px;}
.y13_c00351{bottom:262.711500px;}
.y12_c00351{bottom:279.966000px;}
.y11_c00351{bottom:296.965500px;}
.y10_c00351{bottom:314.281500px;}
.yf_c00351{bottom:331.980000px;}
.ye_c00351{bottom:349.381500px;}
.yd_c00351{bottom:365.233500px;}
.yc_c00351{bottom:383.142000px;}
.yb_c00351{bottom:399.549000px;}
.ya_c00351{bottom:416.931000px;}
.y9_c00351{bottom:432.271500px;}
.y8_c00351{bottom:449.968500px;}
.y7_c00351{bottom:466.884000px;}
.y6_c00351{bottom:483.604500px;}
.y5_c00351{bottom:499.878000px;}
.y4_c00351{bottom:517.252500px;}
.y3_c00351{bottom:534.561000px;}
.y2_c00351{bottom:552.393000px;}
.y1_c00351{bottom:564.571500px;}
.h8_c00351{height:34.650000px;}
.h7_c00351{height:52.500000px;}
.h12_c00351{height:55.650000px;}
.hf_c00351{height:57.750000px;}
.hc_c00351{height:58.800000px;}
.h11_c00351{height:59.850000px;}
.h3_c00351{height:60.900000px;}
.he_c00351{height:61.950000px;}
.hd_c00351{height:63.000000px;}
.h4_c00351{height:64.050000px;}
.h6_c00351{height:65.100000px;}
.h10_c00351{height:66.150000px;}
.h5_c00351{height:67.200000px;}
.h9_c00351{height:68.250000px;}
.ha_c00351{height:69.300000px;}
.hb_c00351{height:71.400000px;}
.h2_c00351{height:115.500000px;}
.h0_c00351{height:613.170000px;}
.h1_c00351{height:613.500000px;}
.w0_c00351{width:359.100000px;}
.w1_c00351{width:359.250000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:48.060000px;}
.x32_c00351{left:49.950000px;}
.x50_c00351{left:51.300000px;}
.x58_c00351{left:65.340000px;}
.x29_c00351{left:66.420000px;}
.x15_c00351{left:70.200000px;}
.x60_c00351{left:71.550000px;}
.x2e_c00351{left:73.980000px;}
.x22_c00351{left:75.060000px;}
.x62_c00351{left:76.410000px;}
.x4a_c00351{left:77.490000px;}
.x46_c00351{left:78.570000px;}
.x3e_c00351{left:83.970000px;}
.x67_c00351{left:87.480000px;}
.x16_c00351{left:89.910000px;}
.x9_c00351{left:94.230000px;}
.x33_c00351{left:97.740000px;}
.x23_c00351{left:99.630000px;}
.x3_c00351{left:101.520000px;}
.x5a_c00351{left:103.410000px;}
.x2a_c00351{left:105.030000px;}
.x2f_c00351{left:108.540000px;}
.x1c_c00351{left:110.430000px;}
.x40_c00351{left:113.940000px;}
.xa_c00351{left:115.830000px;}
.x39_c00351{left:120.690000px;}
.x70_c00351{left:123.930000px;}
.x6c_c00351{left:125.010000px;}
.x3f_c00351{left:128.520000px;}
.x3a_c00351{left:130.410000px;}
.x51_c00351{left:131.760000px;}
.x4d_c00351{left:132.840000px;}
.x10_c00351{left:137.700000px;}
.x63_c00351{left:140.400000px;}
.x4_c00351{left:141.750000px;}
.x17_c00351{left:143.640000px;}
.x1d_c00351{left:146.610000px;}
.x52_c00351{left:148.230000px;}
.x24_c00351{left:149.850000px;}
.x34_c00351{left:154.440000px;}
.xb_c00351{left:155.790000px;}
.x1_c00351{left:157.410000px;}
.x5b_c00351{left:160.380000px;}
.x2b_c00351{left:163.080000px;}
.x56_c00351{left:164.970000px;}
.x3b_c00351{left:170.100000px;}
.x6b_c00351{left:172.800000px;}
.x6d_c00351{left:175.500000px;}
.x47_c00351{left:178.200000px;}
.x41_c00351{left:180.360000px;}
.x4b_c00351{left:181.440000px;}
.x5_c00351{left:183.600000px;}
.x64_c00351{left:187.650000px;}
.x11_c00351{left:189.000000px;}
.x42_c00351{left:191.970000px;}
.x18_c00351{left:194.940000px;}
.x57_c00351{left:198.180000px;}
.x53_c00351{left:204.120000px;}
.x68_c00351{left:205.470000px;}
.x35_c00351{left:206.550000px;}
.x5e_c00351{left:208.980000px;}
.x30_c00351{left:210.060000px;}
.x1e_c00351{left:212.760000px;}
.x65_c00351{left:217.620000px;}
.x4e_c00351{left:219.510000px;}
.x3c_c00351{left:222.210000px;}
.x25_c00351{left:223.290000px;}
.x19_c00351{left:227.070000px;}
.xc_c00351{left:229.230000px;}
.x59_c00351{left:233.550000px;}
.x54_c00351{left:235.710000px;}
.x66_c00351{left:238.950000px;}
.x6_c00351{left:240.030000px;}
.x2c_c00351{left:241.650000px;}
.x12_c00351{left:244.350000px;}
.x6e_c00351{left:247.860000px;}
.x36_c00351{left:249.480000px;}
.x26_c00351{left:250.560000px;}
.x61_c00351{left:254.070000px;}
.x5f_c00351{left:255.690000px;}
.x31_c00351{left:256.770000px;}
.x5c_c00351{left:260.010000px;}
.x27_c00351{left:267.030000px;}
.x13_c00351{left:268.110000px;}
.x48_c00351{left:270.270000px;}
.x1f_c00351{left:272.430000px;}
.x37_c00351{left:273.510000px;}
.xd_c00351{left:275.130000px;}
.x4c_c00351{left:277.020000px;}
.x20_c00351{left:280.800000px;}
.x4f_c00351{left:283.500000px;}
.x69_c00351{left:285.390000px;}
.x43_c00351{left:288.090000px;}
.x5d_c00351{left:290.520000px;}
.x28_c00351{left:292.410000px;}
.x1a_c00351{left:293.760000px;}
.x38_c00351{left:297.270000px;}
.xe_c00351{left:299.970000px;}
.x7_c00351{left:303.210000px;}
.x1b_c00351{left:306.450000px;}
.x6a_c00351{left:309.150000px;}
.x2d_c00351{left:312.660000px;}
.x44_c00351{left:315.630000px;}
.xf_c00351{left:321.840000px;}
.x49_c00351{left:324.000000px;}
.x3d_c00351{left:325.350000px;}
.x21_c00351{left:326.700000px;}
.x8_c00351{left:329.130000px;}
.x55_c00351{left:331.560000px;}
.x14_c00351{left:333.180000px;}
.x6f_c00351{left:341.550000px;}
.x45_c00351{left:353.970000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.fs6_c00351{font-size:30.800000pt;}
.fs5_c00351{font-size:46.666667pt;}
.fs10_c00351{font-size:49.466667pt;}
.fsd_c00351{font-size:51.333333pt;}
.fsa_c00351{font-size:52.266667pt;}
.fsf_c00351{font-size:53.200000pt;}
.fs1_c00351{font-size:54.133333pt;}
.fsc_c00351{font-size:55.066667pt;}
.fsb_c00351{font-size:56.000000pt;}
.fs2_c00351{font-size:56.933333pt;}
.fs4_c00351{font-size:57.866667pt;}
.fse_c00351{font-size:58.800000pt;}
.fs3_c00351{font-size:59.733333pt;}
.fs7_c00351{font-size:60.666667pt;}
.fs8_c00351{font-size:61.600000pt;}
.fs9_c00351{font-size:63.466667pt;}
.fs0_c00351{font-size:102.666667pt;}
.y0_c00351{bottom:0.000000pt;}
.y21_c00351{bottom:21.790667pt;}
.y20_c00351{bottom:37.440000pt;}
.y1f_c00351{bottom:53.245333pt;}
.y1e_c00351{bottom:67.506667pt;}
.y1d_c00351{bottom:83.105333pt;}
.y1c_c00351{bottom:97.836000pt;}
.y1b_c00351{bottom:113.460000pt;}
.y1a_c00351{bottom:127.781333pt;}
.y19_c00351{bottom:142.746667pt;}
.y18_c00351{bottom:158.573333pt;}
.y17_c00351{bottom:173.716000pt;}
.y16_c00351{bottom:189.401333pt;}
.y15_c00351{bottom:204.758667pt;}
.y14_c00351{bottom:219.361333pt;}
.y13_c00351{bottom:233.521333pt;}
.y12_c00351{bottom:248.858667pt;}
.y11_c00351{bottom:263.969333pt;}
.y10_c00351{bottom:279.361333pt;}
.yf_c00351{bottom:295.093333pt;}
.ye_c00351{bottom:310.561333pt;}
.yd_c00351{bottom:324.652000pt;}
.yc_c00351{bottom:340.570667pt;}
.yb_c00351{bottom:355.154667pt;}
.ya_c00351{bottom:370.605333pt;}
.y9_c00351{bottom:384.241333pt;}
.y8_c00351{bottom:399.972000pt;}
.y7_c00351{bottom:415.008000pt;}
.y6_c00351{bottom:429.870667pt;}
.y5_c00351{bottom:444.336000pt;}
.y4_c00351{bottom:459.780000pt;}
.y3_c00351{bottom:475.165333pt;}
.y2_c00351{bottom:491.016000pt;}
.y1_c00351{bottom:501.841333pt;}
.h8_c00351{height:30.800000pt;}
.h7_c00351{height:46.666667pt;}
.h12_c00351{height:49.466667pt;}
.hf_c00351{height:51.333333pt;}
.hc_c00351{height:52.266667pt;}
.h11_c00351{height:53.200000pt;}
.h3_c00351{height:54.133333pt;}
.he_c00351{height:55.066667pt;}
.hd_c00351{height:56.000000pt;}
.h4_c00351{height:56.933333pt;}
.h6_c00351{height:57.866667pt;}
.h10_c00351{height:58.800000pt;}
.h5_c00351{height:59.733333pt;}
.h9_c00351{height:60.666667pt;}
.ha_c00351{height:61.600000pt;}
.hb_c00351{height:63.466667pt;}
.h2_c00351{height:102.666667pt;}
.h0_c00351{height:545.040000pt;}
.h1_c00351{height:545.333333pt;}
.w0_c00351{width:319.200000pt;}
.w1_c00351{width:319.333333pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:42.720000pt;}
.x32_c00351{left:44.400000pt;}
.x50_c00351{left:45.600000pt;}
.x58_c00351{left:58.080000pt;}
.x29_c00351{left:59.040000pt;}
.x15_c00351{left:62.400000pt;}
.x60_c00351{left:63.600000pt;}
.x2e_c00351{left:65.760000pt;}
.x22_c00351{left:66.720000pt;}
.x62_c00351{left:67.920000pt;}
.x4a_c00351{left:68.880000pt;}
.x46_c00351{left:69.840000pt;}
.x3e_c00351{left:74.640000pt;}
.x67_c00351{left:77.760000pt;}
.x16_c00351{left:79.920000pt;}
.x9_c00351{left:83.760000pt;}
.x33_c00351{left:86.880000pt;}
.x23_c00351{left:88.560000pt;}
.x3_c00351{left:90.240000pt;}
.x5a_c00351{left:91.920000pt;}
.x2a_c00351{left:93.360000pt;}
.x2f_c00351{left:96.480000pt;}
.x1c_c00351{left:98.160000pt;}
.x40_c00351{left:101.280000pt;}
.xa_c00351{left:102.960000pt;}
.x39_c00351{left:107.280000pt;}
.x70_c00351{left:110.160000pt;}
.x6c_c00351{left:111.120000pt;}
.x3f_c00351{left:114.240000pt;}
.x3a_c00351{left:115.920000pt;}
.x51_c00351{left:117.120000pt;}
.x4d_c00351{left:118.080000pt;}
.x10_c00351{left:122.400000pt;}
.x63_c00351{left:124.800000pt;}
.x4_c00351{left:126.000000pt;}
.x17_c00351{left:127.680000pt;}
.x1d_c00351{left:130.320000pt;}
.x52_c00351{left:131.760000pt;}
.x24_c00351{left:133.200000pt;}
.x34_c00351{left:137.280000pt;}
.xb_c00351{left:138.480000pt;}
.x1_c00351{left:139.920000pt;}
.x5b_c00351{left:142.560000pt;}
.x2b_c00351{left:144.960000pt;}
.x56_c00351{left:146.640000pt;}
.x3b_c00351{left:151.200000pt;}
.x6b_c00351{left:153.600000pt;}
.x6d_c00351{left:156.000000pt;}
.x47_c00351{left:158.400000pt;}
.x41_c00351{left:160.320000pt;}
.x4b_c00351{left:161.280000pt;}
.x5_c00351{left:163.200000pt;}
.x64_c00351{left:166.800000pt;}
.x11_c00351{left:168.000000pt;}
.x42_c00351{left:170.640000pt;}
.x18_c00351{left:173.280000pt;}
.x57_c00351{left:176.160000pt;}
.x53_c00351{left:181.440000pt;}
.x68_c00351{left:182.640000pt;}
.x35_c00351{left:183.600000pt;}
.x5e_c00351{left:185.760000pt;}
.x30_c00351{left:186.720000pt;}
.x1e_c00351{left:189.120000pt;}
.x65_c00351{left:193.440000pt;}
.x4e_c00351{left:195.120000pt;}
.x3c_c00351{left:197.520000pt;}
.x25_c00351{left:198.480000pt;}
.x19_c00351{left:201.840000pt;}
.xc_c00351{left:203.760000pt;}
.x59_c00351{left:207.600000pt;}
.x54_c00351{left:209.520000pt;}
.x66_c00351{left:212.400000pt;}
.x6_c00351{left:213.360000pt;}
.x2c_c00351{left:214.800000pt;}
.x12_c00351{left:217.200000pt;}
.x6e_c00351{left:220.320000pt;}
.x36_c00351{left:221.760000pt;}
.x26_c00351{left:222.720000pt;}
.x61_c00351{left:225.840000pt;}
.x5f_c00351{left:227.280000pt;}
.x31_c00351{left:228.240000pt;}
.x5c_c00351{left:231.120000pt;}
.x27_c00351{left:237.360000pt;}
.x13_c00351{left:238.320000pt;}
.x48_c00351{left:240.240000pt;}
.x1f_c00351{left:242.160000pt;}
.x37_c00351{left:243.120000pt;}
.xd_c00351{left:244.560000pt;}
.x4c_c00351{left:246.240000pt;}
.x20_c00351{left:249.600000pt;}
.x4f_c00351{left:252.000000pt;}
.x69_c00351{left:253.680000pt;}
.x43_c00351{left:256.080000pt;}
.x5d_c00351{left:258.240000pt;}
.x28_c00351{left:259.920000pt;}
.x1a_c00351{left:261.120000pt;}
.x38_c00351{left:264.240000pt;}
.xe_c00351{left:266.640000pt;}
.x7_c00351{left:269.520000pt;}
.x1b_c00351{left:272.400000pt;}
.x6a_c00351{left:274.800000pt;}
.x2d_c00351{left:277.920000pt;}
.x44_c00351{left:280.560000pt;}
.xf_c00351{left:286.080000pt;}
.x49_c00351{left:288.000000pt;}
.x3d_c00351{left:289.200000pt;}
.x21_c00351{left:290.400000pt;}
.x8_c00351{left:292.560000pt;}
.x55_c00351{left:294.720000pt;}
.x14_c00351{left:296.160000pt;}
.x6f_c00351{left:303.600000pt;}
.x45_c00351{left:314.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00352 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00352 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00352 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00352 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00352.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00352{transform:matrix(0.007995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007995,0.000000,0.000000,0.250000,0,0);}
.m98_c00352{transform:matrix(0.059116,-0.000650,0.002750,0.249985,0,0);-ms-transform:matrix(0.059116,-0.000650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.059116,-0.000650,0.002750,0.249985,0,0);}
.m6c_c00352{transform:matrix(0.068800,-0.001170,0.004249,0.249964,0,0);-ms-transform:matrix(0.068800,-0.001170,0.004249,0.249964,0,0);-webkit-transform:matrix(0.068800,-0.001170,0.004249,0.249964,0,0);}
.mcf_c00352{transform:matrix(0.078224,-0.002190,0.006997,0.249902,0,0);-ms-transform:matrix(0.078224,-0.002190,0.006997,0.249902,0,0);-webkit-transform:matrix(0.078224,-0.002190,0.006997,0.249902,0,0);}
.m0_c00352{transform:matrix(0.104430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104430,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{transform:matrix(0.133261,-0.002265,0.004249,0.249964,0,0);-ms-transform:matrix(0.133261,-0.002265,0.004249,0.249964,0,0);-webkit-transform:matrix(0.133261,-0.002265,0.004249,0.249964,0,0);}
.m43_c00352{transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);-ms-transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141135,-0.002399,0.004249,0.249964,0,0);}
.m6e_c00352{transform:matrix(0.143249,-0.002435,0.004249,0.249964,0,0);-ms-transform:matrix(0.143249,-0.002435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143249,-0.002435,0.004249,0.249964,0,0);}
.m47_c00352{transform:matrix(0.149423,-0.002540,0.004249,0.249964,0,0);-ms-transform:matrix(0.149423,-0.002540,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149423,-0.002540,0.004249,0.249964,0,0);}
.m4f_c00352{transform:matrix(0.150113,-0.002552,0.004249,0.249964,0,0);-ms-transform:matrix(0.150113,-0.002552,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150113,-0.002552,0.004249,0.249964,0,0);}
.m3c_c00352{transform:matrix(0.154668,-0.002629,0.004249,0.249964,0,0);-ms-transform:matrix(0.154668,-0.002629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154668,-0.002629,0.004249,0.249964,0,0);}
.m2b_c00352{transform:matrix(0.158762,-0.002699,0.004249,0.249964,0,0);-ms-transform:matrix(0.158762,-0.002699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158762,-0.002699,0.004249,0.249964,0,0);}
.m33_c00352{transform:matrix(0.159147,-0.002705,0.004249,0.249964,0,0);-ms-transform:matrix(0.159147,-0.002705,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159147,-0.002705,0.004249,0.249964,0,0);}
.m9d_c00352{transform:matrix(0.159810,-0.001758,0.002750,0.249985,0,0);-ms-transform:matrix(0.159810,-0.001758,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159810,-0.001758,0.002750,0.249985,0,0);}
.m72_c00352{transform:matrix(0.160802,-0.002734,0.004249,0.249964,0,0);-ms-transform:matrix(0.160802,-0.002734,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160802,-0.002734,0.004249,0.249964,0,0);}
.mdb_c00352{transform:matrix(0.161302,-0.004516,0.006997,0.249902,0,0);-ms-transform:matrix(0.161302,-0.004516,0.006997,0.249902,0,0);-webkit-transform:matrix(0.161302,-0.004516,0.006997,0.249902,0,0);}
.m83_c00352{transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);-ms-transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);}
.mdd_c00352{transform:matrix(0.163222,-0.005060,0.007746,0.249880,0,0);-ms-transform:matrix(0.163222,-0.005060,0.007746,0.249880,0,0);-webkit-transform:matrix(0.163222,-0.005060,0.007746,0.249880,0,0);}
.m31_c00352{transform:matrix(0.165206,-0.002809,0.004249,0.249964,0,0);-ms-transform:matrix(0.165206,-0.002809,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165206,-0.002809,0.004249,0.249964,0,0);}
.m54_c00352{transform:matrix(0.167181,-0.002842,0.004249,0.249964,0,0);-ms-transform:matrix(0.167181,-0.002842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167181,-0.002842,0.004249,0.249964,0,0);}
.me_c00352{transform:matrix(0.167186,-0.002842,0.004249,0.249964,0,0);-ms-transform:matrix(0.167186,-0.002842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167186,-0.002842,0.004249,0.249964,0,0);}
.mc9_c00352{transform:matrix(0.168599,-0.004721,0.006997,0.249902,0,0);-ms-transform:matrix(0.168599,-0.004721,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168599,-0.004721,0.006997,0.249902,0,0);}
.m70_c00352{transform:matrix(0.169565,-0.002883,0.004249,0.249964,0,0);-ms-transform:matrix(0.169565,-0.002883,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169565,-0.002883,0.004249,0.249964,0,0);}
.m8d_c00352{transform:matrix(0.169720,-0.001867,0.002750,0.249985,0,0);-ms-transform:matrix(0.169720,-0.001867,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169720,-0.001867,0.002750,0.249985,0,0);}
.mab_c00352{transform:matrix(0.170073,-0.004762,0.006997,0.249902,0,0);-ms-transform:matrix(0.170073,-0.004762,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170073,-0.004762,0.006997,0.249902,0,0);}
.me1_c00352{transform:matrix(0.170293,-0.005279,0.007746,0.249880,0,0);-ms-transform:matrix(0.170293,-0.005279,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170293,-0.005279,0.007746,0.249880,0,0);}
.ma_c00352{transform:matrix(0.172095,-0.002926,0.004249,0.249964,0,0);-ms-transform:matrix(0.172095,-0.002926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172095,-0.002926,0.004249,0.249964,0,0);}
.m99_c00352{transform:matrix(0.172475,-0.001897,0.002750,0.249985,0,0);-ms-transform:matrix(0.172475,-0.001897,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172475,-0.001897,0.002750,0.249985,0,0);}
.me6_c00352{transform:matrix(0.172512,-0.005348,0.007746,0.249880,0,0);-ms-transform:matrix(0.172512,-0.005348,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172512,-0.005348,0.007746,0.249880,0,0);}
.mba_c00352{transform:matrix(0.172577,-0.004832,0.006997,0.249902,0,0);-ms-transform:matrix(0.172577,-0.004832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172577,-0.004832,0.006997,0.249902,0,0);}
.mb3_c00352{transform:matrix(0.172837,-0.004839,0.006997,0.249902,0,0);-ms-transform:matrix(0.172837,-0.004839,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172837,-0.004839,0.006997,0.249902,0,0);}
.m45_c00352{transform:matrix(0.172875,-0.002939,0.004249,0.249964,0,0);-ms-transform:matrix(0.172875,-0.002939,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172875,-0.002939,0.004249,0.249964,0,0);}
.m35_c00352{transform:matrix(0.173035,-0.002942,0.004249,0.249964,0,0);-ms-transform:matrix(0.173035,-0.002942,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173035,-0.002942,0.004249,0.249964,0,0);}
.mdf_c00352{transform:matrix(0.173442,-0.005377,0.007746,0.249880,0,0);-ms-transform:matrix(0.173442,-0.005377,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173442,-0.005377,0.007746,0.249880,0,0);}
.m60_c00352{transform:matrix(0.173585,-0.002951,0.004249,0.249964,0,0);-ms-transform:matrix(0.173585,-0.002951,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173585,-0.002951,0.004249,0.249964,0,0);}
.m5f_c00352{transform:matrix(0.174535,-0.002967,0.004249,0.249964,0,0);-ms-transform:matrix(0.174535,-0.002967,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174535,-0.002967,0.004249,0.249964,0,0);}
.m3d_c00352{transform:matrix(0.174625,-0.002969,0.004249,0.249964,0,0);-ms-transform:matrix(0.174625,-0.002969,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174625,-0.002969,0.004249,0.249964,0,0);}
.m74_c00352{transform:matrix(0.175385,-0.002982,0.004249,0.249964,0,0);-ms-transform:matrix(0.175385,-0.002982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175385,-0.002982,0.004249,0.249964,0,0);}
.mbd_c00352{transform:matrix(0.175916,-0.004926,0.006997,0.249902,0,0);-ms-transform:matrix(0.175916,-0.004926,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175916,-0.004926,0.006997,0.249902,0,0);}
.m2f_c00352{transform:matrix(0.175955,-0.002991,0.004249,0.249964,0,0);-ms-transform:matrix(0.175955,-0.002991,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175955,-0.002991,0.004249,0.249964,0,0);}
.m90_c00352{transform:matrix(0.176059,-0.001937,0.002750,0.249985,0,0);-ms-transform:matrix(0.176059,-0.001937,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176059,-0.001937,0.002750,0.249985,0,0);}
.m53_c00352{transform:matrix(0.176390,-0.002999,0.004249,0.249964,0,0);-ms-transform:matrix(0.176390,-0.002999,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176390,-0.002999,0.004249,0.249964,0,0);}
.m16_c00352{transform:matrix(0.176420,-0.002999,0.004249,0.249964,0,0);-ms-transform:matrix(0.176420,-0.002999,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176420,-0.002999,0.004249,0.249964,0,0);}
.m38_c00352{transform:matrix(0.176744,-0.003005,0.004249,0.249964,0,0);-ms-transform:matrix(0.176744,-0.003005,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176744,-0.003005,0.004249,0.249964,0,0);}
.m86_c00352{transform:matrix(0.176784,-0.001945,0.002750,0.249985,0,0);-ms-transform:matrix(0.176784,-0.001945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176784,-0.001945,0.002750,0.249985,0,0);}
.mc5_c00352{transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);-ms-transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177066,-0.004958,0.006997,0.249902,0,0);}
.m66_c00352{transform:matrix(0.177189,-0.003012,0.004249,0.249964,0,0);-ms-transform:matrix(0.177189,-0.003012,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177189,-0.003012,0.004249,0.249964,0,0);}
.m50_c00352{transform:matrix(0.177864,-0.003024,0.004249,0.249964,0,0);-ms-transform:matrix(0.177864,-0.003024,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177864,-0.003024,0.004249,0.249964,0,0);}
.mc8_c00352{transform:matrix(0.178420,-0.004996,0.006997,0.249902,0,0);-ms-transform:matrix(0.178420,-0.004996,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178420,-0.004996,0.006997,0.249902,0,0);}
.m73_c00352{transform:matrix(0.178604,-0.003036,0.004249,0.249964,0,0);-ms-transform:matrix(0.178604,-0.003036,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178604,-0.003036,0.004249,0.249964,0,0);}
.m75_c00352{transform:matrix(0.179069,-0.003044,0.004249,0.249964,0,0);-ms-transform:matrix(0.179069,-0.003044,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179069,-0.003044,0.004249,0.249964,0,0);}
.m9c_c00352{transform:matrix(0.179634,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179634,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179634,-0.001976,0.002750,0.249985,0,0);}
.m64_c00352{transform:matrix(0.179759,-0.003056,0.004249,0.249964,0,0);-ms-transform:matrix(0.179759,-0.003056,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179759,-0.003056,0.004249,0.249964,0,0);}
.md5_c00352{transform:matrix(0.179934,-0.005038,0.006997,0.249902,0,0);-ms-transform:matrix(0.179934,-0.005038,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179934,-0.005038,0.006997,0.249902,0,0);}
.mde_c00352{transform:matrix(0.179954,-0.005579,0.007746,0.249880,0,0);-ms-transform:matrix(0.179954,-0.005579,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179954,-0.005579,0.007746,0.249880,0,0);}
.m34_c00352{transform:matrix(0.180054,-0.003061,0.004249,0.249964,0,0);-ms-transform:matrix(0.180054,-0.003061,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180054,-0.003061,0.004249,0.249964,0,0);}
.m4e_c00352{transform:matrix(0.180139,-0.003062,0.004249,0.249964,0,0);-ms-transform:matrix(0.180139,-0.003062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180139,-0.003062,0.004249,0.249964,0,0);}
.m97_c00352{transform:matrix(0.180449,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180449,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180449,-0.001985,0.002750,0.249985,0,0);}
.m7e_c00352{transform:matrix(0.180494,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180494,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180494,-0.001985,0.002750,0.249985,0,0);}
.m7d_c00352{transform:matrix(0.180734,-0.001988,0.002750,0.249985,0,0);-ms-transform:matrix(0.180734,-0.001988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180734,-0.001988,0.002750,0.249985,0,0);}
.m2c_c00352{transform:matrix(0.181319,-0.003082,0.004249,0.249964,0,0);-ms-transform:matrix(0.181319,-0.003082,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181319,-0.003082,0.004249,0.249964,0,0);}
.mc3_c00352{transform:matrix(0.181809,-0.005091,0.006997,0.249902,0,0);-ms-transform:matrix(0.181809,-0.005091,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181809,-0.005091,0.006997,0.249902,0,0);}
.mbb_c00352{transform:matrix(0.181919,-0.005094,0.006997,0.249902,0,0);-ms-transform:matrix(0.181919,-0.005094,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181919,-0.005094,0.006997,0.249902,0,0);}
.m81_c00352{transform:matrix(0.182144,-0.002004,0.002750,0.249985,0,0);-ms-transform:matrix(0.182144,-0.002004,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182144,-0.002004,0.002750,0.249985,0,0);}
.m17_c00352{transform:matrix(0.182669,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182669,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182669,-0.003105,0.004249,0.249964,0,0);}
.m85_c00352{transform:matrix(0.183174,-0.002015,0.002750,0.249985,0,0);-ms-transform:matrix(0.183174,-0.002015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183174,-0.002015,0.002750,0.249985,0,0);}
.m4b_c00352{transform:matrix(0.183284,-0.003116,0.004249,0.249964,0,0);-ms-transform:matrix(0.183284,-0.003116,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183284,-0.003116,0.004249,0.249964,0,0);}
.m8c_c00352{transform:matrix(0.183474,-0.002018,0.002750,0.249985,0,0);-ms-transform:matrix(0.183474,-0.002018,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183474,-0.002018,0.002750,0.249985,0,0);}
.mce_c00352{transform:matrix(0.183743,-0.005145,0.006997,0.249902,0,0);-ms-transform:matrix(0.183743,-0.005145,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183743,-0.005145,0.006997,0.249902,0,0);}
.m93_c00352{transform:matrix(0.183764,-0.002021,0.002750,0.249985,0,0);-ms-transform:matrix(0.183764,-0.002021,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183764,-0.002021,0.002750,0.249985,0,0);}
.m9a_c00352{transform:matrix(0.184219,-0.002026,0.002750,0.249985,0,0);-ms-transform:matrix(0.184219,-0.002026,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184219,-0.002026,0.002750,0.249985,0,0);}
.mc_c00352{transform:matrix(0.184313,-0.003133,0.004249,0.249964,0,0);-ms-transform:matrix(0.184313,-0.003133,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184313,-0.003133,0.004249,0.249964,0,0);}
.m7_c00352{transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);-ms-transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);}
.mc7_c00352{transform:matrix(0.185757,-0.005201,0.006997,0.249902,0,0);-ms-transform:matrix(0.185757,-0.005201,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185757,-0.005201,0.006997,0.249902,0,0);}
.mb_c00352{transform:matrix(0.185938,-0.003161,0.004249,0.249964,0,0);-ms-transform:matrix(0.185938,-0.003161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185938,-0.003161,0.004249,0.249964,0,0);}
.m9e_c00352{transform:matrix(0.185939,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185939,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185939,-0.002045,0.002750,0.249985,0,0);}
.m8e_c00352{transform:matrix(0.186114,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186114,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186114,-0.002047,0.002750,0.249985,0,0);}
.m91_c00352{transform:matrix(0.186579,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186579,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186579,-0.002052,0.002750,0.249985,0,0);}
.m40_c00352{transform:matrix(0.186588,-0.003172,0.004249,0.249964,0,0);-ms-transform:matrix(0.186588,-0.003172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186588,-0.003172,0.004249,0.249964,0,0);}
.m8_c00352{transform:matrix(0.186733,-0.003174,0.004249,0.249964,0,0);-ms-transform:matrix(0.186733,-0.003174,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186733,-0.003174,0.004249,0.249964,0,0);}
.m6f_c00352{transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);-ms-transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);}
.m7c_c00352{transform:matrix(0.187074,-0.002058,0.002750,0.249985,0,0);-ms-transform:matrix(0.187074,-0.002058,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187074,-0.002058,0.002750,0.249985,0,0);}
.m1f_c00352{transform:matrix(0.187308,-0.003184,0.004249,0.249964,0,0);-ms-transform:matrix(0.187308,-0.003184,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187308,-0.003184,0.004249,0.249964,0,0);}
.m9_c00352{transform:matrix(0.187433,-0.003186,0.004249,0.249964,0,0);-ms-transform:matrix(0.187433,-0.003186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187433,-0.003186,0.004249,0.249964,0,0);}
.m80_c00352{transform:matrix(0.187659,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187659,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187659,-0.002064,0.002750,0.249985,0,0);}
.me5_c00352{transform:matrix(0.188000,-0.005828,0.007746,0.249880,0,0);-ms-transform:matrix(0.188000,-0.005828,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188000,-0.005828,0.007746,0.249880,0,0);}
.m30_c00352{transform:matrix(0.188258,-0.003200,0.004249,0.249964,0,0);-ms-transform:matrix(0.188258,-0.003200,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188258,-0.003200,0.004249,0.249964,0,0);}
.mb4_c00352{transform:matrix(0.188311,-0.005273,0.006997,0.249902,0,0);-ms-transform:matrix(0.188311,-0.005273,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188311,-0.005273,0.006997,0.249902,0,0);}
.me4_c00352{transform:matrix(0.188325,-0.005838,0.007746,0.249880,0,0);-ms-transform:matrix(0.188325,-0.005838,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188325,-0.005838,0.007746,0.249880,0,0);}
.m4a_c00352{transform:matrix(0.188563,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188563,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188563,-0.003206,0.004249,0.249964,0,0);}
.m56_c00352{transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188603,-0.003206,0.004249,0.249964,0,0);}
.m22_c00352{transform:matrix(0.189033,-0.003214,0.004249,0.249964,0,0);-ms-transform:matrix(0.189033,-0.003214,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189033,-0.003214,0.004249,0.249964,0,0);}
.m3e_c00352{transform:matrix(0.189473,-0.003221,0.004249,0.249964,0,0);-ms-transform:matrix(0.189473,-0.003221,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189473,-0.003221,0.004249,0.249964,0,0);}
.mcb_c00352{transform:matrix(0.189831,-0.005315,0.006997,0.249902,0,0);-ms-transform:matrix(0.189831,-0.005315,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189831,-0.005315,0.006997,0.249902,0,0);}
.m15_c00352{transform:matrix(0.190432,-0.003237,0.004249,0.249964,0,0);-ms-transform:matrix(0.190432,-0.003237,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190432,-0.003237,0.004249,0.249964,0,0);}
.m5c_c00352{transform:matrix(0.190547,-0.003239,0.004249,0.249964,0,0);-ms-transform:matrix(0.190547,-0.003239,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190547,-0.003239,0.004249,0.249964,0,0);}
.m39_c00352{transform:matrix(0.190777,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190777,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190777,-0.003243,0.004249,0.249964,0,0);}
.me9_c00352{transform:matrix(0.190993,-0.005921,0.007746,0.249880,0,0);-ms-transform:matrix(0.190993,-0.005921,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190993,-0.005921,0.007746,0.249880,0,0);}
.m52_c00352{transform:matrix(0.191727,-0.003259,0.004249,0.249964,0,0);-ms-transform:matrix(0.191727,-0.003259,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191727,-0.003259,0.004249,0.249964,0,0);}
.m44_c00352{transform:matrix(0.191757,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191757,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191757,-0.003260,0.004249,0.249964,0,0);}
.m76_c00352{transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);-ms-transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191832,-0.003261,0.004249,0.249964,0,0);}
.mad_c00352{transform:matrix(0.192110,-0.005379,0.006997,0.249902,0,0);-ms-transform:matrix(0.192110,-0.005379,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192110,-0.005379,0.006997,0.249902,0,0);}
.mc6_c00352{transform:matrix(0.192120,-0.005379,0.006997,0.249902,0,0);-ms-transform:matrix(0.192120,-0.005379,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192120,-0.005379,0.006997,0.249902,0,0);}
.ma7_c00352{transform:matrix(0.192385,-0.005387,0.006997,0.249902,0,0);-ms-transform:matrix(0.192385,-0.005387,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192385,-0.005387,0.006997,0.249902,0,0);}
.m51_c00352{transform:matrix(0.192602,-0.003274,0.004249,0.249964,0,0);-ms-transform:matrix(0.192602,-0.003274,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192602,-0.003274,0.004249,0.249964,0,0);}
.m36_c00352{transform:matrix(0.192972,-0.003281,0.004249,0.249964,0,0);-ms-transform:matrix(0.192972,-0.003281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192972,-0.003281,0.004249,0.249964,0,0);}
.m26_c00352{transform:matrix(0.193022,-0.003281,0.004249,0.249964,0,0);-ms-transform:matrix(0.193022,-0.003281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193022,-0.003281,0.004249,0.249964,0,0);}
.m9b_c00352{transform:matrix(0.193293,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193293,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193293,-0.002126,0.002750,0.249985,0,0);}
.ma9_c00352{transform:matrix(0.193829,-0.005427,0.006997,0.249902,0,0);-ms-transform:matrix(0.193829,-0.005427,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193829,-0.005427,0.006997,0.249902,0,0);}
.mc0_c00352{transform:matrix(0.194159,-0.005436,0.006997,0.249902,0,0);-ms-transform:matrix(0.194159,-0.005436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194159,-0.005436,0.006997,0.249902,0,0);}
.m84_c00352{transform:matrix(0.194413,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194413,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194413,-0.002139,0.002750,0.249985,0,0);}
.m5d_c00352{transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);-ms-transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);}
.m3b_c00352{transform:matrix(0.196297,-0.003337,0.004249,0.249964,0,0);-ms-transform:matrix(0.196297,-0.003337,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196297,-0.003337,0.004249,0.249964,0,0);}
.m11_c00352{transform:matrix(0.196302,-0.003337,0.004249,0.249964,0,0);-ms-transform:matrix(0.196302,-0.003337,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196302,-0.003337,0.004249,0.249964,0,0);}
.mca_c00352{transform:matrix(0.196393,-0.005499,0.006997,0.249902,0,0);-ms-transform:matrix(0.196393,-0.005499,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196393,-0.005499,0.006997,0.249902,0,0);}
.m88_c00352{transform:matrix(0.196803,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196803,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196803,-0.002165,0.002750,0.249985,0,0);}
.m29_c00352{transform:matrix(0.197042,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197042,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197042,-0.003350,0.004249,0.249964,0,0);}
.md8_c00352{transform:matrix(0.197278,-0.005524,0.006997,0.249902,0,0);-ms-transform:matrix(0.197278,-0.005524,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197278,-0.005524,0.006997,0.249902,0,0);}
.mbe_c00352{transform:matrix(0.199497,-0.005586,0.006997,0.249902,0,0);-ms-transform:matrix(0.199497,-0.005586,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199497,-0.005586,0.006997,0.249902,0,0);}
.mdc_c00352{transform:matrix(0.199809,-0.006194,0.007746,0.249880,0,0);-ms-transform:matrix(0.199809,-0.006194,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199809,-0.006194,0.007746,0.249880,0,0);}
.mb6_c00352{transform:matrix(0.199977,-0.005599,0.006997,0.249902,0,0);-ms-transform:matrix(0.199977,-0.005599,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199977,-0.005599,0.006997,0.249902,0,0);}
.m41_c00352{transform:matrix(0.200351,-0.003406,0.004249,0.249964,0,0);-ms-transform:matrix(0.200351,-0.003406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200351,-0.003406,0.004249,0.249964,0,0);}
.m4d_c00352{transform:matrix(0.200831,-0.003414,0.004249,0.249964,0,0);-ms-transform:matrix(0.200831,-0.003414,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200831,-0.003414,0.004249,0.249964,0,0);}
.maf_c00352{transform:matrix(0.200951,-0.005627,0.006997,0.249902,0,0);-ms-transform:matrix(0.200951,-0.005627,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200951,-0.005627,0.006997,0.249902,0,0);}
.m27_c00352{transform:matrix(0.201241,-0.003421,0.004249,0.249964,0,0);-ms-transform:matrix(0.201241,-0.003421,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201241,-0.003421,0.004249,0.249964,0,0);}
.m4_c00352{transform:matrix(0.201336,-0.003423,0.004249,0.249964,0,0);-ms-transform:matrix(0.201336,-0.003423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201336,-0.003423,0.004249,0.249964,0,0);}
.me3_c00352{transform:matrix(0.201568,-0.006249,0.007746,0.249880,0,0);-ms-transform:matrix(0.201568,-0.006249,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201568,-0.006249,0.007746,0.249880,0,0);}
.mcd_c00352{transform:matrix(0.201871,-0.005652,0.006997,0.249902,0,0);-ms-transform:matrix(0.201871,-0.005652,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201871,-0.005652,0.006997,0.249902,0,0);}
.m46_c00352{transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);-ms-transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202421,-0.003441,0.004249,0.249964,0,0);}
.maa_c00352{transform:matrix(0.202451,-0.005669,0.006997,0.249902,0,0);-ms-transform:matrix(0.202451,-0.005669,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202451,-0.005669,0.006997,0.249902,0,0);}
.m1c_c00352{transform:matrix(0.203091,-0.003453,0.004249,0.249964,0,0);-ms-transform:matrix(0.203091,-0.003453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203091,-0.003453,0.004249,0.249964,0,0);}
.m55_c00352{transform:matrix(0.203186,-0.003454,0.004249,0.249964,0,0);-ms-transform:matrix(0.203186,-0.003454,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203186,-0.003454,0.004249,0.249964,0,0);}
.m82_c00352{transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203243,-0.002236,0.002750,0.249985,0,0);}
.m61_c00352{transform:matrix(0.203381,-0.003457,0.004249,0.249964,0,0);-ms-transform:matrix(0.203381,-0.003457,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203381,-0.003457,0.004249,0.249964,0,0);}
.m21_c00352{transform:matrix(0.203431,-0.003458,0.004249,0.249964,0,0);-ms-transform:matrix(0.203431,-0.003458,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203431,-0.003458,0.004249,0.249964,0,0);}
.me8_c00352{transform:matrix(0.203642,-0.006313,0.007746,0.249880,0,0);-ms-transform:matrix(0.203642,-0.006313,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203642,-0.006313,0.007746,0.249880,0,0);}
.mb5_c00352{transform:matrix(0.203715,-0.005704,0.006997,0.249902,0,0);-ms-transform:matrix(0.203715,-0.005704,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203715,-0.005704,0.006997,0.249902,0,0);}
.m71_c00352{transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);-ms-transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);}
.m67_c00352{transform:matrix(0.204026,-0.003468,0.004249,0.249964,0,0);-ms-transform:matrix(0.204026,-0.003468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204026,-0.003468,0.004249,0.249964,0,0);}
.mc1_c00352{transform:matrix(0.204610,-0.005729,0.006997,0.249902,0,0);-ms-transform:matrix(0.204610,-0.005729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204610,-0.005729,0.006997,0.249902,0,0);}
.mb9_c00352{transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);-ms-transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204680,-0.005731,0.006997,0.249902,0,0);}
.me2_c00352{transform:matrix(0.204737,-0.006347,0.007746,0.249880,0,0);-ms-transform:matrix(0.204737,-0.006347,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204737,-0.006347,0.007746,0.249880,0,0);}
.m19_c00352{transform:matrix(0.204990,-0.003485,0.004249,0.249964,0,0);-ms-transform:matrix(0.204990,-0.003485,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204990,-0.003485,0.004249,0.249964,0,0);}
.m37_c00352{transform:matrix(0.205370,-0.003491,0.004249,0.249964,0,0);-ms-transform:matrix(0.205370,-0.003491,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205370,-0.003491,0.004249,0.249964,0,0);}
.m89_c00352{transform:matrix(0.206657,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206657,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206657,-0.002273,0.002750,0.249985,0,0);}
.mac_c00352{transform:matrix(0.207309,-0.005805,0.006997,0.249902,0,0);-ms-transform:matrix(0.207309,-0.005805,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207309,-0.005805,0.006997,0.249902,0,0);}
.ma8_c00352{transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);-ms-transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207924,-0.005822,0.006997,0.249902,0,0);}
.mc2_c00352{transform:matrix(0.208443,-0.005836,0.006997,0.249902,0,0);-ms-transform:matrix(0.208443,-0.005836,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208443,-0.005836,0.006997,0.249902,0,0);}
.md3_c00352{transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);-ms-transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208538,-0.005839,0.006997,0.249902,0,0);}
.md6_c00352{transform:matrix(0.208683,-0.005843,0.006997,0.249902,0,0);-ms-transform:matrix(0.208683,-0.005843,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208683,-0.005843,0.006997,0.249902,0,0);}
.m1e_c00352{transform:matrix(0.209075,-0.003554,0.004249,0.249964,0,0);-ms-transform:matrix(0.209075,-0.003554,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209075,-0.003554,0.004249,0.249964,0,0);}
.md7_c00352{transform:matrix(0.209293,-0.005860,0.006997,0.249902,0,0);-ms-transform:matrix(0.209293,-0.005860,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209293,-0.005860,0.006997,0.249902,0,0);}
.md2_c00352{transform:matrix(0.209553,-0.005867,0.006997,0.249902,0,0);-ms-transform:matrix(0.209553,-0.005867,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209553,-0.005867,0.006997,0.249902,0,0);}
.m62_c00352{transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);-ms-transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209635,-0.003564,0.004249,0.249964,0,0);}
.m5b_c00352{transform:matrix(0.210215,-0.003574,0.004249,0.249964,0,0);-ms-transform:matrix(0.210215,-0.003574,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210215,-0.003574,0.004249,0.249964,0,0);}
.m95_c00352{transform:matrix(0.210502,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210502,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210502,-0.002316,0.002750,0.249985,0,0);}
.mea_c00352{transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);-ms-transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);}
.mbf_c00352{transform:matrix(0.212037,-0.005937,0.006997,0.249902,0,0);-ms-transform:matrix(0.212037,-0.005937,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212037,-0.005937,0.006997,0.249902,0,0);}
.mc4_c00352{transform:matrix(0.212152,-0.005940,0.006997,0.249902,0,0);-ms-transform:matrix(0.212152,-0.005940,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212152,-0.005940,0.006997,0.249902,0,0);}
.m23_c00352{transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);-ms-transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);}
.m2a_c00352{transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);}
.m77_c00352{transform:matrix(0.212699,-0.003616,0.004249,0.249964,0,0);-ms-transform:matrix(0.212699,-0.003616,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212699,-0.003616,0.004249,0.249964,0,0);}
.m8b_c00352{transform:matrix(0.213037,-0.002343,0.002750,0.249985,0,0);-ms-transform:matrix(0.213037,-0.002343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213037,-0.002343,0.002750,0.249985,0,0);}
.m94_c00352{transform:matrix(0.213557,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213557,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213557,-0.002349,0.002750,0.249985,0,0);}
.m1a_c00352{transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);}
.m5e_c00352{transform:matrix(0.213789,-0.003634,0.004249,0.249964,0,0);-ms-transform:matrix(0.213789,-0.003634,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213789,-0.003634,0.004249,0.249964,0,0);}
.m59_c00352{transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);}
.m1b_c00352{transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);-ms-transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215349,-0.003661,0.004249,0.249964,0,0);}
.mb7_c00352{transform:matrix(0.215615,-0.006037,0.006997,0.249902,0,0);-ms-transform:matrix(0.215615,-0.006037,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215615,-0.006037,0.006997,0.249902,0,0);}
.mb0_c00352{transform:matrix(0.215820,-0.006043,0.006997,0.249902,0,0);-ms-transform:matrix(0.215820,-0.006043,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215820,-0.006043,0.006997,0.249902,0,0);}
.m69_c00352{transform:matrix(0.215924,-0.003671,0.004249,0.249964,0,0);-ms-transform:matrix(0.215924,-0.003671,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215924,-0.003671,0.004249,0.249964,0,0);}
.mb2_c00352{transform:matrix(0.216115,-0.006051,0.006997,0.249902,0,0);-ms-transform:matrix(0.216115,-0.006051,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216115,-0.006051,0.006997,0.249902,0,0);}
.me7_c00352{transform:matrix(0.216301,-0.006705,0.007746,0.249880,0,0);-ms-transform:matrix(0.216301,-0.006705,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216301,-0.006705,0.007746,0.249880,0,0);}
.m1d_c00352{transform:matrix(0.217249,-0.003693,0.004249,0.249964,0,0);-ms-transform:matrix(0.217249,-0.003693,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217249,-0.003693,0.004249,0.249964,0,0);}
.md0_c00352{transform:matrix(0.217655,-0.006094,0.006997,0.249902,0,0);-ms-transform:matrix(0.217655,-0.006094,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217655,-0.006094,0.006997,0.249902,0,0);}
.m25_c00352{transform:matrix(0.218058,-0.003707,0.004249,0.249964,0,0);-ms-transform:matrix(0.218058,-0.003707,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218058,-0.003707,0.004249,0.249964,0,0);}
.m12_c00352{transform:matrix(0.218393,-0.003713,0.004249,0.249964,0,0);-ms-transform:matrix(0.218393,-0.003713,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218393,-0.003713,0.004249,0.249964,0,0);}
.m42_c00352{transform:matrix(0.219188,-0.003726,0.004249,0.249964,0,0);-ms-transform:matrix(0.219188,-0.003726,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219188,-0.003726,0.004249,0.249964,0,0);}
.md_c00352{transform:matrix(0.219298,-0.003728,0.004249,0.249964,0,0);-ms-transform:matrix(0.219298,-0.003728,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219298,-0.003728,0.004249,0.249964,0,0);}
.mb8_c00352{transform:matrix(0.219334,-0.006141,0.006997,0.249902,0,0);-ms-transform:matrix(0.219334,-0.006141,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219334,-0.006141,0.006997,0.249902,0,0);}
.m13_c00352{transform:matrix(0.219958,-0.003739,0.004249,0.249964,0,0);-ms-transform:matrix(0.219958,-0.003739,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219958,-0.003739,0.004249,0.249964,0,0);}
.m5a_c00352{transform:matrix(0.220103,-0.003742,0.004249,0.249964,0,0);-ms-transform:matrix(0.220103,-0.003742,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220103,-0.003742,0.004249,0.249964,0,0);}
.m6_c00352{transform:matrix(0.220583,-0.003750,0.004249,0.249964,0,0);-ms-transform:matrix(0.220583,-0.003750,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220583,-0.003750,0.004249,0.249964,0,0);}
.me0_c00352{transform:matrix(0.220764,-0.006844,0.007746,0.249880,0,0);-ms-transform:matrix(0.220764,-0.006844,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220764,-0.006844,0.007746,0.249880,0,0);}
.md4_c00352{transform:matrix(0.221238,-0.006195,0.006997,0.249902,0,0);-ms-transform:matrix(0.221238,-0.006195,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221238,-0.006195,0.006997,0.249902,0,0);}
.m24_c00352{transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);-ms-transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);}
.md9_c00352{transform:matrix(0.222503,-0.006230,0.006997,0.249902,0,0);-ms-transform:matrix(0.222503,-0.006230,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222503,-0.006230,0.006997,0.249902,0,0);}
.m14_c00352{transform:matrix(0.222898,-0.003789,0.004249,0.249964,0,0);-ms-transform:matrix(0.222898,-0.003789,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222898,-0.003789,0.004249,0.249964,0,0);}
.mb1_c00352{transform:matrix(0.223417,-0.006256,0.006997,0.249902,0,0);-ms-transform:matrix(0.223417,-0.006256,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223417,-0.006256,0.006997,0.249902,0,0);}
.m2e_c00352{transform:matrix(0.224608,-0.003818,0.004249,0.249964,0,0);-ms-transform:matrix(0.224608,-0.003818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224608,-0.003818,0.004249,0.249964,0,0);}
.md1_c00352{transform:matrix(0.224717,-0.006292,0.006997,0.249902,0,0);-ms-transform:matrix(0.224717,-0.006292,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224717,-0.006292,0.006997,0.249902,0,0);}
.m3a_c00352{transform:matrix(0.224937,-0.003824,0.004249,0.249964,0,0);-ms-transform:matrix(0.224937,-0.003824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224937,-0.003824,0.004249,0.249964,0,0);}
.m18_c00352{transform:matrix(0.225212,-0.003829,0.004249,0.249964,0,0);-ms-transform:matrix(0.225212,-0.003829,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225212,-0.003829,0.004249,0.249964,0,0);}
.m7f_c00352{transform:matrix(0.225731,-0.002483,0.002750,0.249985,0,0);-ms-transform:matrix(0.225731,-0.002483,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225731,-0.002483,0.002750,0.249985,0,0);}
.m28_c00352{transform:matrix(0.225772,-0.003838,0.004249,0.249964,0,0);-ms-transform:matrix(0.225772,-0.003838,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225772,-0.003838,0.004249,0.249964,0,0);}
.meb_c00352{transform:matrix(0.226101,-0.007009,0.007746,0.249880,0,0);-ms-transform:matrix(0.226101,-0.007009,0.007746,0.249880,0,0);-webkit-transform:matrix(0.226101,-0.007009,0.007746,0.249880,0,0);}
.mcc_c00352{transform:matrix(0.227266,-0.006363,0.006997,0.249902,0,0);-ms-transform:matrix(0.227266,-0.006363,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227266,-0.006363,0.006997,0.249902,0,0);}
.m65_c00352{transform:matrix(0.227387,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227387,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227387,-0.003866,0.004249,0.249964,0,0);}
.m49_c00352{transform:matrix(0.228447,-0.003884,0.004249,0.249964,0,0);-ms-transform:matrix(0.228447,-0.003884,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228447,-0.003884,0.004249,0.249964,0,0);}
.m79_c00352{transform:matrix(0.228487,-0.003884,0.004249,0.249964,0,0);-ms-transform:matrix(0.228487,-0.003884,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228487,-0.003884,0.004249,0.249964,0,0);}
.mae_c00352{transform:matrix(0.228805,-0.006407,0.006997,0.249902,0,0);-ms-transform:matrix(0.228805,-0.006407,0.006997,0.249902,0,0);-webkit-transform:matrix(0.228805,-0.006407,0.006997,0.249902,0,0);}
.m92_c00352{transform:matrix(0.229371,-0.002523,0.002750,0.249985,0,0);-ms-transform:matrix(0.229371,-0.002523,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229371,-0.002523,0.002750,0.249985,0,0);}
.ma4_c00352{transform:matrix(0.230017,-0.007368,0.008004,0.249872,0,0);-ms-transform:matrix(0.230017,-0.007368,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230017,-0.007368,0.008004,0.249872,0,0);}
.m87_c00352{transform:matrix(0.230306,-0.002533,0.002750,0.249985,0,0);-ms-transform:matrix(0.230306,-0.002533,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230306,-0.002533,0.002750,0.249985,0,0);}
.ma5_c00352{transform:matrix(0.230317,-0.007378,0.008004,0.249872,0,0);-ms-transform:matrix(0.230317,-0.007378,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230317,-0.007378,0.008004,0.249872,0,0);}
.m68_c00352{transform:matrix(0.230917,-0.003926,0.004249,0.249964,0,0);-ms-transform:matrix(0.230917,-0.003926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230917,-0.003926,0.004249,0.249964,0,0);}
.m57_c00352{transform:matrix(0.232091,-0.003946,0.004249,0.249964,0,0);-ms-transform:matrix(0.232091,-0.003946,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232091,-0.003946,0.004249,0.249964,0,0);}
.mda_c00352{transform:matrix(0.232544,-0.006511,0.006997,0.249902,0,0);-ms-transform:matrix(0.232544,-0.006511,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232544,-0.006511,0.006997,0.249902,0,0);}
.m6d_c00352{transform:matrix(0.232656,-0.003955,0.004249,0.249964,0,0);-ms-transform:matrix(0.232656,-0.003955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232656,-0.003955,0.004249,0.249964,0,0);}
.m4c_c00352{transform:matrix(0.232936,-0.003960,0.004249,0.249964,0,0);-ms-transform:matrix(0.232936,-0.003960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232936,-0.003960,0.004249,0.249964,0,0);}
.m8a_c00352{transform:matrix(0.234206,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234206,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234206,-0.002576,0.002750,0.249985,0,0);}
.m8f_c00352{transform:matrix(0.234441,-0.002579,0.002750,0.249985,0,0);-ms-transform:matrix(0.234441,-0.002579,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234441,-0.002579,0.002750,0.249985,0,0);}
.m6a_c00352{transform:matrix(0.234896,-0.003993,0.004249,0.249964,0,0);-ms-transform:matrix(0.234896,-0.003993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234896,-0.003993,0.004249,0.249964,0,0);}
.m96_c00352{transform:matrix(0.238141,-0.002620,0.002750,0.249985,0,0);-ms-transform:matrix(0.238141,-0.002620,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238141,-0.002620,0.002750,0.249985,0,0);}
.m7a_c00352{transform:matrix(0.238960,-0.004062,0.004249,0.249964,0,0);-ms-transform:matrix(0.238960,-0.004062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238960,-0.004062,0.004249,0.249964,0,0);}
.m7b_c00352{transform:matrix(0.239840,-0.002638,0.002750,0.249985,0,0);-ms-transform:matrix(0.239840,-0.002638,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239840,-0.002638,0.002750,0.249985,0,0);}
.m10_c00352{transform:matrix(0.240695,-0.004092,0.004249,0.249964,0,0);-ms-transform:matrix(0.240695,-0.004092,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240695,-0.004092,0.004249,0.249964,0,0);}
.m3f_c00352{transform:matrix(0.241035,-0.004098,0.004249,0.249964,0,0);-ms-transform:matrix(0.241035,-0.004098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241035,-0.004098,0.004249,0.249964,0,0);}
.m58_c00352{transform:matrix(0.244610,-0.004158,0.004249,0.249964,0,0);-ms-transform:matrix(0.244610,-0.004158,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244610,-0.004158,0.004249,0.249964,0,0);}
.m20_c00352{transform:matrix(0.248949,-0.004232,0.004249,0.249964,0,0);-ms-transform:matrix(0.248949,-0.004232,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248949,-0.004232,0.004249,0.249964,0,0);}
.m78_c00352{transform:matrix(0.251354,-0.004273,0.004249,0.249964,0,0);-ms-transform:matrix(0.251354,-0.004273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251354,-0.004273,0.004249,0.249964,0,0);}
.m2d_c00352{transform:matrix(0.252049,-0.004285,0.004249,0.249964,0,0);-ms-transform:matrix(0.252049,-0.004285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252049,-0.004285,0.004249,0.249964,0,0);}
.m2_c00352{transform:matrix(0.253103,-0.004303,0.004249,0.249964,0,0);-ms-transform:matrix(0.253103,-0.004303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253103,-0.004303,0.004249,0.249964,0,0);}
.ma3_c00352{transform:matrix(0.254305,-0.008146,0.008004,0.249872,0,0);-ms-transform:matrix(0.254305,-0.008146,0.008004,0.249872,0,0);-webkit-transform:matrix(0.254305,-0.008146,0.008004,0.249872,0,0);}
.ma0_c00352{transform:matrix(0.256793,-0.008226,0.008004,0.249872,0,0);-ms-transform:matrix(0.256793,-0.008226,0.008004,0.249872,0,0);-webkit-transform:matrix(0.256793,-0.008226,0.008004,0.249872,0,0);}
.m48_c00352{transform:matrix(0.263147,-0.004473,0.004249,0.249964,0,0);-ms-transform:matrix(0.263147,-0.004473,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263147,-0.004473,0.004249,0.249964,0,0);}
.ma1_c00352{transform:matrix(0.290651,-0.009310,0.008004,0.249872,0,0);-ms-transform:matrix(0.290651,-0.009310,0.008004,0.249872,0,0);-webkit-transform:matrix(0.290651,-0.009310,0.008004,0.249872,0,0);}
.ma2_c00352{transform:matrix(0.305808,-0.009796,0.008004,0.249872,0,0);-ms-transform:matrix(0.305808,-0.009796,0.008004,0.249872,0,0);-webkit-transform:matrix(0.305808,-0.009796,0.008004,0.249872,0,0);}
.ma6_c00352{transform:matrix(0.329071,-0.010541,0.008004,0.249872,0,0);-ms-transform:matrix(0.329071,-0.010541,0.008004,0.249872,0,0);-webkit-transform:matrix(0.329071,-0.010541,0.008004,0.249872,0,0);}
.m6b_c00352{transform:matrix(0.332237,-0.005648,0.004249,0.249964,0,0);-ms-transform:matrix(0.332237,-0.005648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332237,-0.005648,0.004249,0.249964,0,0);}
.m3_c00352{transform:matrix(0.356214,-0.006056,0.004249,0.249964,0,0);-ms-transform:matrix(0.356214,-0.006056,0.004249,0.249964,0,0);-webkit-transform:matrix(0.356214,-0.006056,0.004249,0.249964,0,0);}
.m9f_c00352{transform:matrix(0.365917,-0.011721,0.008004,0.249872,0,0);-ms-transform:matrix(0.365917,-0.011721,0.008004,0.249872,0,0);-webkit-transform:matrix(0.365917,-0.011721,0.008004,0.249872,0,0);}
.mf_c00352{transform:matrix(0.438457,-0.007454,0.004249,0.249964,0,0);-ms-transform:matrix(0.438457,-0.007454,0.004249,0.249964,0,0);-webkit-transform:matrix(0.438457,-0.007454,0.004249,0.249964,0,0);}
.mbc_c00352{transform:matrix(0.481706,-0.013488,0.006997,0.249902,0,0);-ms-transform:matrix(0.481706,-0.013488,0.006997,0.249902,0,0);-webkit-transform:matrix(0.481706,-0.013488,0.006997,0.249902,0,0);}
.m5_c00352{transform:matrix(0.636098,-0.010814,0.004249,0.249964,0,0);-ms-transform:matrix(0.636098,-0.010814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.636098,-0.010814,0.004249,0.249964,0,0);}
.m63_c00352{transform:matrix(0.657210,-0.011173,0.004249,0.249964,0,0);-ms-transform:matrix(0.657210,-0.011173,0.004249,0.249964,0,0);-webkit-transform:matrix(0.657210,-0.011173,0.004249,0.249964,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:0.000000px;}
.fc0_c00352{color:transparent;}
.fs10_c00352{font-size:45.127984px;}
.fs9_c00352{font-size:56.708193px;}
.fsa_c00352{font-size:57.758344px;}
.fse_c00352{font-size:58.803557px;}
.fs4_c00352{font-size:58.808496px;}
.fs13_c00352{font-size:58.823045px;}
.fsd_c00352{font-size:59.853621px;}
.fs3_c00352{font-size:59.858648px;}
.fsc_c00352{font-size:60.903684px;}
.fs5_c00352{font-size:60.908799px;}
.fs12_c00352{font-size:60.923868px;}
.fs1_c00352{font-size:61.958951px;}
.fs16_c00352{font-size:61.974280px;}
.fs18_c00352{font-size:61.979760px;}
.fs11_c00352{font-size:63.024691px;}
.fs15_c00352{font-size:65.125514px;}
.fs17_c00352{font-size:65.131273px;}
.fsf_c00352{font-size:67.204065px;}
.fs2_c00352{font-size:67.209710px;}
.fs14_c00352{font-size:67.226337px;}
.fsb_c00352{font-size:68.254129px;}
.fs7_c00352{font-size:68.259861px;}
.fs6_c00352{font-size:69.310013px;}
.fs8_c00352{font-size:70.360165px;}
.fs0_c00352{font-size:121.800000px;}
.y0_c00352{bottom:0.000000px;}
.ye4_c00352{bottom:28.077531px;}
.ye5_c00352{bottom:28.708412px;}
.ye6_c00352{bottom:29.325485px;}
.ye7_c00352{bottom:29.687879px;}
.ye8_c00352{bottom:30.750167px;}
.ye9_c00352{bottom:31.182492px;}
.yea_c00352{bottom:31.555323px;}
.yeb_c00352{bottom:32.262120px;}
.ydc_c00352{bottom:41.059500px;}
.ydd_c00352{bottom:42.860306px;}
.yde_c00352{bottom:43.858196px;}
.ydf_c00352{bottom:44.469438px;}
.ye0_c00352{bottom:46.657449px;}
.ye1_c00352{bottom:47.089574px;}
.ye2_c00352{bottom:47.567733px;}
.ye3_c00352{bottom:49.629450px;}
.yd8_c00352{bottom:59.387940px;}
.yd9_c00352{bottom:61.853436px;}
.yda_c00352{bottom:66.969468px;}
.ydb_c00352{bottom:70.369842px;}
.yd1_c00352{bottom:74.496054px;}
.yd2_c00352{bottom:75.762006px;}
.yd3_c00352{bottom:76.932516px;}
.yd4_c00352{bottom:78.619692px;}
.yd5_c00352{bottom:80.213484px;}
.yd6_c00352{bottom:80.947692px;}
.yd7_c00352{bottom:82.756548px;}
.ycb_c00352{bottom:94.744938px;}
.ycc_c00352{bottom:97.064472px;}
.ycd_c00352{bottom:97.378332px;}
.yce_c00352{bottom:99.142170px;}
.ycf_c00352{bottom:100.764468px;}
.yd0_c00352{bottom:101.037054px;}
.yc5_c00352{bottom:110.952954px;}
.yc6_c00352{bottom:112.059744px;}
.yc7_c00352{bottom:113.717256px;}
.yc8_c00352{bottom:114.776010px;}
.yc9_c00352{bottom:116.700918px;}
.yca_c00352{bottom:117.246504px;}
.ybc_c00352{bottom:123.933420px;}
.ybd_c00352{bottom:125.442420px;}
.ybe_c00352{bottom:126.103284px;}
.ybf_c00352{bottom:127.722564px;}
.yc0_c00352{bottom:129.485340px;}
.yc1_c00352{bottom:130.250574px;}
.yc2_c00352{bottom:132.045096px;}
.yc3_c00352{bottom:132.744456px;}
.yc4_c00352{bottom:133.344810px;}
.yb5_c00352{bottom:145.254996px;}
.yb6_c00352{bottom:145.510824px;}
.yb7_c00352{bottom:148.141686px;}
.yb8_c00352{bottom:148.943370px;}
.yb9_c00352{bottom:150.084516px;}
.yba_c00352{bottom:151.071648px;}
.ybb_c00352{bottom:151.409946px;}
.yae_c00352{bottom:162.000408px;}
.yaf_c00352{bottom:163.097316px;}
.yb0_c00352{bottom:163.491936px;}
.yb1_c00352{bottom:164.580366px;}
.yb2_c00352{bottom:166.359804px;}
.yb3_c00352{bottom:166.594758px;}
.yb4_c00352{bottom:167.058888px;}
.ya7_c00352{bottom:176.323500px;}
.ya8_c00352{bottom:177.902070px;}
.ya9_c00352{bottom:178.431060px;}
.yaa_c00352{bottom:180.453192px;}
.yab_c00352{bottom:181.265808px;}
.yac_c00352{bottom:181.787658px;}
.yad_c00352{bottom:183.125694px;}
.y9f_c00352{bottom:197.923500px;}
.ya0_c00352{bottom:198.662268px;}
.ya1_c00352{bottom:200.124444px;}
.ya2_c00352{bottom:202.213980px;}
.ya3_c00352{bottom:203.842524px;}
.ya4_c00352{bottom:204.832524px;}
.ya5_c00352{bottom:205.946508px;}
.ya6_c00352{bottom:206.500284px;}
.y99_c00352{bottom:216.615462px;}
.y9b_c00352{bottom:216.615982px;}
.y9a_c00352{bottom:216.616149px;}
.y9e_c00352{bottom:216.616240px;}
.y9c_c00352{bottom:216.616620px;}
.y9d_c00352{bottom:216.616677px;}
.y90_c00352{bottom:231.657997px;}
.y91_c00352{bottom:232.379658px;}
.y92_c00352{bottom:232.661857px;}
.y93_c00352{bottom:233.091963px;}
.y94_c00352{bottom:233.365813px;}
.y95_c00352{bottom:233.832136px;}
.y96_c00352{bottom:234.078663px;}
.y97_c00352{bottom:234.740973px;}
.y98_c00352{bottom:234.998076px;}
.y89_c00352{bottom:250.696797px;}
.y8d_c00352{bottom:250.696828px;}
.y8c_c00352{bottom:250.697055px;}
.y8b_c00352{bottom:250.697088px;}
.y8a_c00352{bottom:250.697137px;}
.y8f_c00352{bottom:250.697259px;}
.y8e_c00352{bottom:250.697352px;}
.y87_c00352{bottom:269.457762px;}
.y88_c00352{bottom:269.457832px;}
.y82_c00352{bottom:269.457921px;}
.y84_c00352{bottom:269.457948px;}
.y81_c00352{bottom:269.457954px;}
.y86_c00352{bottom:269.458078px;}
.y85_c00352{bottom:269.458185px;}
.y83_c00352{bottom:269.458655px;}
.y7b_c00352{bottom:283.498500px;}
.y7c_c00352{bottom:284.487510px;}
.y7d_c00352{bottom:284.763836px;}
.y7e_c00352{bottom:285.574662px;}
.y7f_c00352{bottom:286.040374px;}
.y80_c00352{bottom:286.450201px;}
.y7a_c00352{bottom:302.749693px;}
.y79_c00352{bottom:302.749989px;}
.y78_c00352{bottom:302.750686px;}
.y77_c00352{bottom:302.751084px;}
.y76_c00352{bottom:302.751735px;}
.y6e_c00352{bottom:317.491891px;}
.y6f_c00352{bottom:317.919775px;}
.y70_c00352{bottom:318.369858px;}
.y71_c00352{bottom:318.929178px;}
.y72_c00352{bottom:319.075693px;}
.y73_c00352{bottom:319.428813px;}
.y74_c00352{bottom:320.370799px;}
.y75_c00352{bottom:320.906110px;}
.y66_c00352{bottom:333.965410px;}
.y67_c00352{bottom:334.352642px;}
.y68_c00352{bottom:334.922650px;}
.y69_c00352{bottom:335.705599px;}
.y6a_c00352{bottom:336.827385px;}
.y6b_c00352{bottom:337.353084px;}
.y6c_c00352{bottom:338.328450px;}
.y6d_c00352{bottom:338.559210px;}
.y5e_c00352{bottom:348.284913px;}
.y5f_c00352{bottom:349.139160px;}
.y60_c00352{bottom:349.600116px;}
.y61_c00352{bottom:350.438847px;}
.y62_c00352{bottom:351.739120px;}
.y63_c00352{bottom:352.251690px;}
.y64_c00352{bottom:354.789463px;}
.y65_c00352{bottom:355.221249px;}
.y55_c00352{bottom:367.991215px;}
.y56_c00352{bottom:368.463751px;}
.y57_c00352{bottom:368.754207px;}
.y58_c00352{bottom:369.695046px;}
.y59_c00352{bottom:370.330813px;}
.y5a_c00352{bottom:370.652193px;}
.y5b_c00352{bottom:371.053258px;}
.y5c_c00352{bottom:371.336641px;}
.y5d_c00352{bottom:371.708007px;}
.y4e_c00352{bottom:383.920216px;}
.y4f_c00352{bottom:384.717366px;}
.y50_c00352{bottom:385.061676px;}
.y51_c00352{bottom:385.690551px;}
.y52_c00352{bottom:386.003137px;}
.y53_c00352{bottom:387.000748px;}
.y54_c00352{bottom:387.534087px;}
.y47_c00352{bottom:400.125010px;}
.y48_c00352{bottom:400.400013px;}
.y49_c00352{bottom:400.812769px;}
.y4a_c00352{bottom:402.039249px;}
.y4b_c00352{bottom:402.666699px;}
.y4c_c00352{bottom:403.238281px;}
.y4d_c00352{bottom:403.707798px;}
.y3f_c00352{bottom:416.869260px;}
.y40_c00352{bottom:417.147756px;}
.y41_c00352{bottom:417.940921px;}
.y42_c00352{bottom:418.426252px;}
.y43_c00352{bottom:418.871152px;}
.y44_c00352{bottom:419.107351px;}
.y45_c00352{bottom:420.074418px;}
.y46_c00352{bottom:420.744135px;}
.y38_c00352{bottom:434.420431px;}
.y39_c00352{bottom:435.044995px;}
.y3a_c00352{bottom:435.316632px;}
.y3b_c00352{bottom:435.916833px;}
.y3c_c00352{bottom:436.561998px;}
.y3d_c00352{bottom:437.242143px;}
.y3e_c00352{bottom:437.365767px;}
.y32_c00352{bottom:453.450253px;}
.y37_c00352{bottom:453.450313px;}
.y31_c00352{bottom:453.450570px;}
.y36_c00352{bottom:453.450732px;}
.y33_c00352{bottom:453.450862px;}
.y34_c00352{bottom:453.450910px;}
.y35_c00352{bottom:453.451319px;}
.y29_c00352{bottom:470.460696px;}
.y2b_c00352{bottom:470.460826px;}
.y2c_c00352{bottom:470.461410px;}
.y2a_c00352{bottom:470.461413px;}
.y30_c00352{bottom:470.461687px;}
.y2f_c00352{bottom:470.461768px;}
.y2d_c00352{bottom:470.461848px;}
.y2e_c00352{bottom:470.461896px;}
.y21_c00352{bottom:485.454679px;}
.y22_c00352{bottom:486.050704px;}
.y23_c00352{bottom:486.394330px;}
.y24_c00352{bottom:487.430431px;}
.y25_c00352{bottom:487.792941px;}
.y26_c00352{bottom:488.392311px;}
.y27_c00352{bottom:488.653516px;}
.y28_c00352{bottom:488.972890px;}
.y1b_c00352{bottom:501.928126px;}
.y1c_c00352{bottom:502.922326px;}
.y1d_c00352{bottom:503.376592px;}
.y1e_c00352{bottom:504.918789px;}
.y1f_c00352{bottom:505.298734px;}
.y20_c00352{bottom:505.622443px;}
.y12_c00352{bottom:518.669858px;}
.y13_c00352{bottom:519.086629px;}
.y14_c00352{bottom:519.574572px;}
.y15_c00352{bottom:520.428669px;}
.y16_c00352{bottom:520.946013px;}
.y17_c00352{bottom:521.258719px;}
.y18_c00352{bottom:521.773666px;}
.y19_c00352{bottom:522.600147px;}
.y1a_c00352{bottom:523.357624px;}
.y9_c00352{bottom:536.760583px;}
.ya_c00352{bottom:537.586095px;}
.yb_c00352{bottom:538.165308px;}
.yc_c00352{bottom:538.445760px;}
.yd_c00352{bottom:539.062084px;}
.ye_c00352{bottom:539.241151px;}
.yf_c00352{bottom:539.613774px;}
.y10_c00352{bottom:540.473362px;}
.y11_c00352{bottom:540.793191px;}
.y2_c00352{bottom:552.694500px;}
.y3_c00352{bottom:553.337330px;}
.y4_c00352{bottom:553.497163px;}
.y5_c00352{bottom:554.391627px;}
.y6_c00352{bottom:555.737466px;}
.y7_c00352{bottom:556.137357px;}
.y8_c00352{bottom:557.385582px;}
.y1_c00352{bottom:568.870500px;}
.h12_c00352{height:45.127984px;}
.hb_c00352{height:56.708193px;}
.hc_c00352{height:57.758344px;}
.h10_c00352{height:58.803557px;}
.h6_c00352{height:58.808496px;}
.h15_c00352{height:58.823045px;}
.hf_c00352{height:59.853621px;}
.h5_c00352{height:59.858648px;}
.he_c00352{height:60.903684px;}
.h7_c00352{height:60.908799px;}
.h14_c00352{height:60.923868px;}
.h3_c00352{height:61.958951px;}
.h18_c00352{height:61.974280px;}
.h1a_c00352{height:61.979760px;}
.h13_c00352{height:63.024691px;}
.h17_c00352{height:65.125514px;}
.h19_c00352{height:65.131273px;}
.h11_c00352{height:67.204065px;}
.h4_c00352{height:67.209710px;}
.h16_c00352{height:67.226337px;}
.hd_c00352{height:68.254129px;}
.h9_c00352{height:68.259861px;}
.h8_c00352{height:69.310013px;}
.ha_c00352{height:70.360165px;}
.h2_c00352{height:121.800000px;}
.h0_c00352{height:613.170000px;}
.h1_c00352{height:613.500000px;}
.w0_c00352{width:359.100000px;}
.w1_c00352{width:359.250000px;}
.x0_c00352{left:0.000000px;}
.x3_c00352{left:16.461000px;}
.x11_c00352{left:17.737120px;}
.x2b_c00352{left:18.791251px;}
.x38_c00352{left:20.172621px;}
.x51_c00352{left:21.330105px;}
.x63_c00352{left:22.915500px;}
.x75_c00352{left:24.321036px;}
.x70_c00352{left:26.234010px;}
.x7b_c00352{left:28.302805px;}
.x49_c00352{left:35.366272px;}
.x2e_c00352{left:36.638458px;}
.x41_c00352{left:40.628222px;}
.x12_c00352{left:42.253120px;}
.x29_c00352{left:49.142607px;}
.x45_c00352{left:51.212558px;}
.x4_c00352{left:54.274500px;}
.x5_c00352{left:63.676500px;}
.x6b_c00352{left:66.763404px;}
.xa_c00352{left:68.767881px;}
.x13_c00352{left:70.955620px;}
.x42_c00352{left:72.304686px;}
.x39_c00352{left:74.674901px;}
.x19_c00352{left:79.579618px;}
.x65_c00352{left:81.003048px;}
.x79_c00352{left:82.126536px;}
.x22_c00352{left:83.166831px;}
.x54_c00352{left:84.242560px;}
.x60_c00352{left:85.620220px;}
.x58_c00352{left:86.809839px;}
.x4a_c00352{left:88.564149px;}
.x1d_c00352{left:89.775459px;}
.x2c_c00352{left:93.574126px;}
.x52_c00352{left:95.584581px;}
.x64_c00352{left:98.185500px;}
.x66_c00352{left:101.798298px;}
.xb_c00352{left:104.957493px;}
.x33_c00352{left:105.963794px;}
.x1a_c00352{left:107.978103px;}
.x4d_c00352{left:109.771500px;}
.x5c_c00352{left:111.515708px;}
.x23_c00352{left:113.141001px;}
.x7a_c00352{left:114.676500px;}
.x6_c00352{left:116.292000px;}
.x14_c00352{left:121.196620px;}
.xc_c00352{left:122.513799px;}
.x71_c00352{left:127.088622px;}
.x7c_c00352{left:129.022131px;}
.x6c_c00352{left:131.898636px;}
.x46_c00352{left:133.770765px;}
.x4e_c00352{left:134.892000px;}
.x4b_c00352{left:136.360470px;}
.x6f_c00352{left:138.784872px;}
.x72_c00352{left:140.710512px;}
.x3a_c00352{left:141.845318px;}
.x2a_c00352{left:143.114739px;}
.x1_c00352{left:145.530000px;}
.x24_c00352{left:146.626165px;}
.x4c_c00352{left:149.052642px;}
.x15_c00352{left:151.628620px;}
.x34_c00352{left:154.342083px;}
.x40_c00352{left:157.453490px;}
.x47_c00352{left:158.955540px;}
.xd_c00352{left:161.062962px;}
.x2f_c00352{left:167.354421px;}
.x16_c00352{left:170.023120px;}
.xe_c00352{left:172.214140px;}
.x59_c00352{left:176.460339px;}
.x35_c00352{left:178.378215px;}
.x6d_c00352{left:182.255766px;}
.x3b_c00352{left:187.275138px;}
.x25_c00352{left:188.752329px;}
.x69_c00352{left:190.665456px;}
.x7_c00352{left:195.459000px;}
.x1e_c00352{left:197.289252px;}
.x17_c00352{left:200.314120px;}
.x61_c00352{left:201.694030px;}
.x1b_c00352{left:204.344235px;}
.x55_c00352{left:205.749762px;}
.x43_c00352{left:207.327891px;}
.x4f_c00352{left:208.603500px;}
.x3c_c00352{left:210.239811px;}
.x73_c00352{left:217.429764px;}
.x8_c00352{left:218.982000px;}
.x76_c00352{left:221.437992px;}
.x26_c00352{left:225.206860px;}
.x5d_c00352{left:226.542117px;}
.x1c_c00352{left:228.106143px;}
.x30_c00352{left:231.831114px;}
.x56_c00352{left:234.641760px;}
.x3d_c00352{left:238.862765px;}
.x5a_c00352{left:241.264839px;}
.x1f_c00352{left:243.402388px;}
.x7d_c00352{left:245.735850px;}
.x77_c00352{left:246.748278px;}
.xf_c00352{left:249.198441px;}
.x50_c00352{left:250.941000px;}
.x67_c00352{left:252.742308px;}
.x2d_c00352{left:253.970743px;}
.x36_c00352{left:255.066417px;}
.x32_c00352{left:257.256612px;}
.x3e_c00352{left:259.062785px;}
.x2_c00352{left:260.820000px;}
.x20_c00352{left:263.445240px;}
.x48_c00352{left:264.478420px;}
.x5e_c00352{left:266.233918px;}
.x62_c00352{left:267.377781px;}
.x10_c00352{left:269.159272px;}
.x44_c00352{left:274.304744px;}
.x6e_c00352{left:275.384538px;}
.x31_c00352{left:276.433618px;}
.x27_c00352{left:279.214966px;}
.x5f_c00352{left:283.514514px;}
.x3f_c00352{left:285.585636px;}
.x21_c00352{left:287.968897px;}
.x68_c00352{left:289.504548px;}
.x53_c00352{left:290.806209px;}
.x9_c00352{left:292.407000px;}
.x18_c00352{left:293.488120px;}
.x37_c00352{left:296.059696px;}
.x74_c00352{left:299.794272px;}
.x28_c00352{left:301.628443px;}
.x6a_c00352{left:302.776272px;}
.x78_c00352{left:309.098514px;}
.x57_c00352{left:311.326533px;}
.x5b_c00352{left:324.847839px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.fs10_c00352{font-size:40.113764pt;}
.fs9_c00352{font-size:50.407282pt;}
.fsa_c00352{font-size:51.340750pt;}
.fse_c00352{font-size:52.269829pt;}
.fs4_c00352{font-size:52.274219pt;}
.fs13_c00352{font-size:52.287151pt;}
.fsd_c00352{font-size:53.203219pt;}
.fs3_c00352{font-size:53.207687pt;}
.fsc_c00352{font-size:54.136608pt;}
.fs5_c00352{font-size:54.141155pt;}
.fs12_c00352{font-size:54.154549pt;}
.fs1_c00352{font-size:55.074623pt;}
.fs16_c00352{font-size:55.088249pt;}
.fs18_c00352{font-size:55.093120pt;}
.fs11_c00352{font-size:56.021948pt;}
.fs15_c00352{font-size:57.889346pt;}
.fs17_c00352{font-size:57.894465pt;}
.fsf_c00352{font-size:59.736947pt;}
.fs2_c00352{font-size:59.741964pt;}
.fs14_c00352{font-size:59.756744pt;}
.fsb_c00352{font-size:60.670337pt;}
.fs7_c00352{font-size:60.675432pt;}
.fs6_c00352{font-size:61.608901pt;}
.fs8_c00352{font-size:62.542369pt;}
.fs0_c00352{font-size:108.266667pt;}
.y0_c00352{bottom:0.000000pt;}
.ye4_c00352{bottom:24.957805pt;}
.ye5_c00352{bottom:25.518588pt;}
.ye6_c00352{bottom:26.067097pt;}
.ye7_c00352{bottom:26.389225pt;}
.ye8_c00352{bottom:27.333481pt;}
.ye9_c00352{bottom:27.717771pt;}
.yea_c00352{bottom:28.049176pt;}
.yeb_c00352{bottom:28.677440pt;}
.ydc_c00352{bottom:36.497333pt;}
.ydd_c00352{bottom:38.098049pt;}
.yde_c00352{bottom:38.985063pt;}
.ydf_c00352{bottom:39.528389pt;}
.ye0_c00352{bottom:41.473288pt;}
.ye1_c00352{bottom:41.857399pt;}
.ye2_c00352{bottom:42.282429pt;}
.ye3_c00352{bottom:44.115067pt;}
.yd8_c00352{bottom:52.789280pt;}
.yd9_c00352{bottom:54.980832pt;}
.yda_c00352{bottom:59.528416pt;}
.ydb_c00352{bottom:62.550971pt;}
.yd1_c00352{bottom:66.218715pt;}
.yd2_c00352{bottom:67.344005pt;}
.yd3_c00352{bottom:68.384459pt;}
.yd4_c00352{bottom:69.884171pt;}
.yd5_c00352{bottom:71.300875pt;}
.yd6_c00352{bottom:71.953504pt;}
.yd7_c00352{bottom:73.561376pt;}
.ycb_c00352{bottom:84.217723pt;}
.ycc_c00352{bottom:86.279531pt;}
.ycd_c00352{bottom:86.558517pt;}
.yce_c00352{bottom:88.126373pt;}
.ycf_c00352{bottom:89.568416pt;}
.yd0_c00352{bottom:89.810715pt;}
.yc5_c00352{bottom:98.624848pt;}
.yc6_c00352{bottom:99.608661pt;}
.yc7_c00352{bottom:101.082005pt;}
.yc8_c00352{bottom:102.023120pt;}
.yc9_c00352{bottom:103.734149pt;}
.yca_c00352{bottom:104.219115pt;}
.ybc_c00352{bottom:110.163040pt;}
.ybd_c00352{bottom:111.504373pt;}
.ybe_c00352{bottom:112.091808pt;}
.ybf_c00352{bottom:113.531168pt;}
.yc0_c00352{bottom:115.098080pt;}
.yc1_c00352{bottom:115.778288pt;}
.yc2_c00352{bottom:117.373419pt;}
.yc3_c00352{bottom:117.995072pt;}
.yc4_c00352{bottom:118.528720pt;}
.yb5_c00352{bottom:129.115552pt;}
.yb6_c00352{bottom:129.342955pt;}
.yb7_c00352{bottom:131.681499pt;}
.yb8_c00352{bottom:132.394107pt;}
.yb9_c00352{bottom:133.408459pt;}
.yba_c00352{bottom:134.285909pt;}
.ybb_c00352{bottom:134.586619pt;}
.yae_c00352{bottom:144.000363pt;}
.yaf_c00352{bottom:144.975392pt;}
.yb0_c00352{bottom:145.326165pt;}
.yb1_c00352{bottom:146.293659pt;}
.yb2_c00352{bottom:147.875381pt;}
.yb3_c00352{bottom:148.084229pt;}
.yb4_c00352{bottom:148.496789pt;}
.ya7_c00352{bottom:156.732000pt;}
.ya8_c00352{bottom:158.135173pt;}
.ya9_c00352{bottom:158.605387pt;}
.yaa_c00352{bottom:160.402837pt;}
.yab_c00352{bottom:161.125163pt;}
.yac_c00352{bottom:161.589029pt;}
.yad_c00352{bottom:162.778395pt;}
.y9f_c00352{bottom:175.932000pt;}
.ya0_c00352{bottom:176.588683pt;}
.ya1_c00352{bottom:177.888395pt;}
.ya2_c00352{bottom:179.745760pt;}
.ya3_c00352{bottom:181.193355pt;}
.ya4_c00352{bottom:182.073355pt;}
.ya5_c00352{bottom:183.063563pt;}
.ya6_c00352{bottom:183.555808pt;}
.y99_c00352{bottom:192.547077pt;}
.y9b_c00352{bottom:192.547540pt;}
.y9a_c00352{bottom:192.547688pt;}
.y9e_c00352{bottom:192.547769pt;}
.y9c_c00352{bottom:192.548107pt;}
.y9d_c00352{bottom:192.548157pt;}
.y90_c00352{bottom:205.918220pt;}
.y91_c00352{bottom:206.559696pt;}
.y92_c00352{bottom:206.810540pt;}
.y93_c00352{bottom:207.192856pt;}
.y94_c00352{bottom:207.436279pt;}
.y95_c00352{bottom:207.850788pt;}
.y96_c00352{bottom:208.069923pt;}
.y97_c00352{bottom:208.658643pt;}
.y98_c00352{bottom:208.887179pt;}
.y89_c00352{bottom:222.841597pt;}
.y8d_c00352{bottom:222.841625pt;}
.y8c_c00352{bottom:222.841827pt;}
.y8b_c00352{bottom:222.841856pt;}
.y8a_c00352{bottom:222.841900pt;}
.y8f_c00352{bottom:222.842008pt;}
.y8e_c00352{bottom:222.842091pt;}
.y87_c00352{bottom:239.518011pt;}
.y88_c00352{bottom:239.518073pt;}
.y82_c00352{bottom:239.518152pt;}
.y84_c00352{bottom:239.518176pt;}
.y81_c00352{bottom:239.518181pt;}
.y86_c00352{bottom:239.518292pt;}
.y85_c00352{bottom:239.518387pt;}
.y83_c00352{bottom:239.518804pt;}
.y7b_c00352{bottom:251.998667pt;}
.y7c_c00352{bottom:252.877787pt;}
.y7d_c00352{bottom:253.123409pt;}
.y7e_c00352{bottom:253.844144pt;}
.y7f_c00352{bottom:254.258111pt;}
.y80_c00352{bottom:254.622401pt;}
.y7a_c00352{bottom:269.110839pt;}
.y79_c00352{bottom:269.111101pt;}
.y78_c00352{bottom:269.111721pt;}
.y77_c00352{bottom:269.112075pt;}
.y76_c00352{bottom:269.112653pt;}
.y6e_c00352{bottom:282.215015pt;}
.y6f_c00352{bottom:282.595356pt;}
.y70_c00352{bottom:282.995429pt;}
.y71_c00352{bottom:283.492603pt;}
.y72_c00352{bottom:283.622839pt;}
.y73_c00352{bottom:283.936723pt;}
.y74_c00352{bottom:284.774044pt;}
.y75_c00352{bottom:285.249876pt;}
.y66_c00352{bottom:296.858143pt;}
.y67_c00352{bottom:297.202348pt;}
.y68_c00352{bottom:297.709023pt;}
.y69_c00352{bottom:298.404977pt;}
.y6a_c00352{bottom:299.402120pt;}
.y6b_c00352{bottom:299.869408pt;}
.y6c_c00352{bottom:300.736400pt;}
.y6d_c00352{bottom:300.941520pt;}
.y5e_c00352{bottom:309.586589pt;}
.y5f_c00352{bottom:310.345920pt;}
.y60_c00352{bottom:310.755659pt;}
.y61_c00352{bottom:311.501197pt;}
.y62_c00352{bottom:312.656996pt;}
.y63_c00352{bottom:313.112613pt;}
.y64_c00352{bottom:315.368412pt;}
.y65_c00352{bottom:315.752221pt;}
.y55_c00352{bottom:327.103303pt;}
.y56_c00352{bottom:327.523335pt;}
.y57_c00352{bottom:327.781517pt;}
.y58_c00352{bottom:328.617819pt;}
.y59_c00352{bottom:329.182945pt;}
.y5a_c00352{bottom:329.468616pt;}
.y5b_c00352{bottom:329.825119pt;}
.y5c_c00352{bottom:330.077015pt;}
.y5d_c00352{bottom:330.407117pt;}
.y4e_c00352{bottom:341.262415pt;}
.y4f_c00352{bottom:341.970992pt;}
.y50_c00352{bottom:342.277045pt;}
.y51_c00352{bottom:342.836045pt;}
.y52_c00352{bottom:343.113900pt;}
.y53_c00352{bottom:344.000665pt;}
.y54_c00352{bottom:344.474744pt;}
.y47_c00352{bottom:355.666676pt;}
.y48_c00352{bottom:355.911123pt;}
.y49_c00352{bottom:356.278017pt;}
.y4a_c00352{bottom:357.368221pt;}
.y4b_c00352{bottom:357.925955pt;}
.y4c_c00352{bottom:358.434028pt;}
.y4d_c00352{bottom:358.851376pt;}
.y3f_c00352{bottom:370.550453pt;}
.y40_c00352{bottom:370.798005pt;}
.y41_c00352{bottom:371.503041pt;}
.y42_c00352{bottom:371.934447pt;}
.y43_c00352{bottom:372.329913pt;}
.y44_c00352{bottom:372.539868pt;}
.y45_c00352{bottom:373.399483pt;}
.y46_c00352{bottom:373.994787pt;}
.y38_c00352{bottom:386.151495pt;}
.y39_c00352{bottom:386.706663pt;}
.y3a_c00352{bottom:386.948117pt;}
.y3b_c00352{bottom:387.481629pt;}
.y3c_c00352{bottom:388.055109pt;}
.y3d_c00352{bottom:388.659683pt;}
.y3e_c00352{bottom:388.769571pt;}
.y32_c00352{bottom:403.066892pt;}
.y37_c00352{bottom:403.066945pt;}
.y31_c00352{bottom:403.067173pt;}
.y36_c00352{bottom:403.067317pt;}
.y33_c00352{bottom:403.067433pt;}
.y34_c00352{bottom:403.067476pt;}
.y35_c00352{bottom:403.067839pt;}
.y29_c00352{bottom:418.187285pt;}
.y2b_c00352{bottom:418.187401pt;}
.y2c_c00352{bottom:418.187920pt;}
.y2a_c00352{bottom:418.187923pt;}
.y30_c00352{bottom:418.188167pt;}
.y2f_c00352{bottom:418.188239pt;}
.y2d_c00352{bottom:418.188309pt;}
.y2e_c00352{bottom:418.188352pt;}
.y21_c00352{bottom:431.515271pt;}
.y22_c00352{bottom:432.045071pt;}
.y23_c00352{bottom:432.350516pt;}
.y24_c00352{bottom:433.271495pt;}
.y25_c00352{bottom:433.593725pt;}
.y26_c00352{bottom:434.126499pt;}
.y27_c00352{bottom:434.358681pt;}
.y28_c00352{bottom:434.642569pt;}
.y1b_c00352{bottom:446.158335pt;}
.y1c_c00352{bottom:447.042068pt;}
.y1d_c00352{bottom:447.445860pt;}
.y1e_c00352{bottom:448.816701pt;}
.y1f_c00352{bottom:449.154431pt;}
.y20_c00352{bottom:449.442172pt;}
.y12_c00352{bottom:461.039873pt;}
.y13_c00352{bottom:461.410337pt;}
.y14_c00352{bottom:461.844064pt;}
.y15_c00352{bottom:462.603261pt;}
.y16_c00352{bottom:463.063123pt;}
.y17_c00352{bottom:463.341084pt;}
.y18_c00352{bottom:463.798815pt;}
.y19_c00352{bottom:464.533464pt;}
.y1a_c00352{bottom:465.206777pt;}
.y9_c00352{bottom:477.120519pt;}
.ya_c00352{bottom:477.854307pt;}
.yb_c00352{bottom:478.369163pt;}
.yc_c00352{bottom:478.618453pt;}
.yd_c00352{bottom:479.166297pt;}
.ye_c00352{bottom:479.325468pt;}
.yf_c00352{bottom:479.656688pt;}
.y10_c00352{bottom:480.420767pt;}
.y11_c00352{bottom:480.705059pt;}
.y2_c00352{bottom:491.284000pt;}
.y3_c00352{bottom:491.855404pt;}
.y4_c00352{bottom:491.997479pt;}
.y5_c00352{bottom:492.792557pt;}
.y6_c00352{bottom:493.988859pt;}
.y7_c00352{bottom:494.344317pt;}
.y8_c00352{bottom:495.453851pt;}
.y1_c00352{bottom:505.662667pt;}
.h12_c00352{height:40.113764pt;}
.hb_c00352{height:50.407282pt;}
.hc_c00352{height:51.340750pt;}
.h10_c00352{height:52.269829pt;}
.h6_c00352{height:52.274219pt;}
.h15_c00352{height:52.287151pt;}
.hf_c00352{height:53.203219pt;}
.h5_c00352{height:53.207687pt;}
.he_c00352{height:54.136608pt;}
.h7_c00352{height:54.141155pt;}
.h14_c00352{height:54.154549pt;}
.h3_c00352{height:55.074623pt;}
.h18_c00352{height:55.088249pt;}
.h1a_c00352{height:55.093120pt;}
.h13_c00352{height:56.021948pt;}
.h17_c00352{height:57.889346pt;}
.h19_c00352{height:57.894465pt;}
.h11_c00352{height:59.736947pt;}
.h4_c00352{height:59.741964pt;}
.h16_c00352{height:59.756744pt;}
.hd_c00352{height:60.670337pt;}
.h9_c00352{height:60.675432pt;}
.h8_c00352{height:61.608901pt;}
.ha_c00352{height:62.542369pt;}
.h2_c00352{height:108.266667pt;}
.h0_c00352{height:545.040000pt;}
.h1_c00352{height:545.333333pt;}
.w0_c00352{width:319.200000pt;}
.w1_c00352{width:319.333333pt;}
.x0_c00352{left:0.000000pt;}
.x3_c00352{left:14.632000pt;}
.x11_c00352{left:15.766329pt;}
.x2b_c00352{left:16.703335pt;}
.x38_c00352{left:17.931219pt;}
.x51_c00352{left:18.960093pt;}
.x63_c00352{left:20.369333pt;}
.x75_c00352{left:21.618699pt;}
.x70_c00352{left:23.319120pt;}
.x7b_c00352{left:25.158049pt;}
.x49_c00352{left:31.436687pt;}
.x2e_c00352{left:32.567519pt;}
.x41_c00352{left:36.113975pt;}
.x12_c00352{left:37.558329pt;}
.x29_c00352{left:43.682317pt;}
.x45_c00352{left:45.522273pt;}
.x4_c00352{left:48.244000pt;}
.x5_c00352{left:56.601333pt;}
.x6b_c00352{left:59.345248pt;}
.xa_c00352{left:61.127005pt;}
.x13_c00352{left:63.071663pt;}
.x42_c00352{left:64.270832pt;}
.x39_c00352{left:66.377689pt;}
.x19_c00352{left:70.737439pt;}
.x65_c00352{left:72.002709pt;}
.x79_c00352{left:73.001365pt;}
.x22_c00352{left:73.926072pt;}
.x54_c00352{left:74.882276pt;}
.x60_c00352{left:76.106863pt;}
.x58_c00352{left:77.164301pt;}
.x4a_c00352{left:78.723688pt;}
.x1d_c00352{left:79.800408pt;}
.x2c_c00352{left:83.177001pt;}
.x52_c00352{left:84.964072pt;}
.x64_c00352{left:87.276000pt;}
.x66_c00352{left:90.487376pt;}
.xb_c00352{left:93.295549pt;}
.x33_c00352{left:94.190039pt;}
.x1a_c00352{left:95.980536pt;}
.x4d_c00352{left:97.574667pt;}
.x5c_c00352{left:99.125073pt;}
.x23_c00352{left:100.569779pt;}
.x7a_c00352{left:101.934667pt;}
.x6_c00352{left:103.370667pt;}
.x14_c00352{left:107.730329pt;}
.xc_c00352{left:108.901155pt;}
.x71_c00352{left:112.967664pt;}
.x7c_c00352{left:114.686339pt;}
.x6c_c00352{left:117.243232pt;}
.x46_c00352{left:118.907347pt;}
.x4e_c00352{left:119.904000pt;}
.x4b_c00352{left:121.209307pt;}
.x6f_c00352{left:123.364331pt;}
.x72_c00352{left:125.076011pt;}
.x3a_c00352{left:126.084727pt;}
.x2a_c00352{left:127.213101pt;}
.x1_c00352{left:129.360000pt;}
.x24_c00352{left:130.334369pt;}
.x4c_c00352{left:132.491237pt;}
.x15_c00352{left:134.780996pt;}
.x34_c00352{left:137.192963pt;}
.x40_c00352{left:139.958657pt;}
.x47_c00352{left:141.293813pt;}
.xd_c00352{left:143.167077pt;}
.x2f_c00352{left:148.759485pt;}
.x16_c00352{left:151.131663pt;}
.xe_c00352{left:153.079236pt;}
.x59_c00352{left:156.853635pt;}
.x35_c00352{left:158.558413pt;}
.x6d_c00352{left:162.005125pt;}
.x3b_c00352{left:166.466789pt;}
.x25_c00352{left:167.779848pt;}
.x69_c00352{left:169.480405pt;}
.x7_c00352{left:173.741333pt;}
.x1e_c00352{left:175.368224pt;}
.x17_c00352{left:178.056996pt;}
.x61_c00352{left:179.283583pt;}
.x1b_c00352{left:181.639320pt;}
.x55_c00352{left:182.888677pt;}
.x43_c00352{left:184.291459pt;}
.x4f_c00352{left:185.425333pt;}
.x3c_c00352{left:186.879832pt;}
.x73_c00352{left:193.270901pt;}
.x8_c00352{left:194.650667pt;}
.x76_c00352{left:196.833771pt;}
.x26_c00352{left:200.183876pt;}
.x5d_c00352{left:201.370771pt;}
.x1c_c00352{left:202.761016pt;}
.x30_c00352{left:206.072101pt;}
.x56_c00352{left:208.570453pt;}
.x3d_c00352{left:212.322457pt;}
.x5a_c00352{left:214.457635pt;}
.x1f_c00352{left:216.357679pt;}
.x7d_c00352{left:218.431867pt;}
.x77_c00352{left:219.331803pt;}
.xf_c00352{left:221.509725pt;}
.x50_c00352{left:223.058667pt;}
.x67_c00352{left:224.659829pt;}
.x2d_c00352{left:225.751772pt;}
.x36_c00352{left:226.725704pt;}
.x32_c00352{left:228.672544pt;}
.x3e_c00352{left:230.278031pt;}
.x2_c00352{left:231.840000pt;}
.x20_c00352{left:234.173547pt;}
.x48_c00352{left:235.091929pt;}
.x5e_c00352{left:236.652372pt;}
.x62_c00352{left:237.669139pt;}
.x10_c00352{left:239.252687pt;}
.x44_c00352{left:243.826439pt;}
.x6e_c00352{left:244.786256pt;}
.x31_c00352{left:245.718772pt;}
.x27_c00352{left:248.191081pt;}
.x5f_c00352{left:252.012901pt;}
.x3f_c00352{left:253.853899pt;}
.x21_c00352{left:255.972353pt;}
.x68_c00352{left:257.337376pt;}
.x53_c00352{left:258.494408pt;}
.x9_c00352{left:259.917333pt;}
.x18_c00352{left:260.878329pt;}
.x37_c00352{left:263.164175pt;}
.x74_c00352{left:266.483797pt;}
.x28_c00352{left:268.114172pt;}
.x6a_c00352{left:269.134464pt;}
.x78_c00352{left:274.754235pt;}
.x57_c00352{left:276.734696pt;}
.x5b_c00352{left:288.753635pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00353 {
    display:none;
  }
  .loading-indicator_c00353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00353 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00353 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00353" -> "#page-container .classname_c00353")
 */
.pf_c00353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00353 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00353 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00353 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00353 {overflow:visible;}
  }
}
.c_c00353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00353 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00353:after { /* webkit #35443 */
  content: '';
}
.t_c00353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00353 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00353 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00353 { /* info for Javascript */
  display:none;
}
.l_c00353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00353:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00353 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00353.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00353{transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.108110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108110,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.116820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116820,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136785,0.000000,0.000000,0.250000,0,0);}
.m6b_c00353{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138280,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);}
.mbc_c00353{transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.146070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146070,0.000000,0.000000,0.250000,0,0);}
.m77_c00353{transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);}
.md4_c00353{transform:matrix(0.152380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152380,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);}
.mb2_c00353{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m7c_c00353{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.m6c_c00353{transform:matrix(0.156220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156220,0.000000,0.000000,0.250000,0,0);}
.m89_c00353{transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157290,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{transform:matrix(0.160445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160445,0.000000,0.000000,0.250000,0,0);}
.mb7_c00353{transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161035,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.mba_c00353{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161980,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m85_c00353{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.mc3_c00353{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.md0_c00353{transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);}
.m62_c00353{transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00353{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mb5_c00353{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);}
.m9a_c00353{transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m86_c00353{transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);}
.m5e_c00353{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.mb6_c00353{transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173735,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173905,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m8e_c00353{transform:matrix(0.175480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175480,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.m5c_c00353{transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176520,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);}
.mc8_c00353{transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);}
.mbd_c00353{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mc9_c00353{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m8c_c00353{transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.mca_c00353{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.me0_c00353{transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179680,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179810,0.000000,0.000000,0.250000,0,0);}
.md7_c00353{transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);}
.mb0_c00353{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m95_c00353{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.md1_c00353{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.mde_c00353{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m6e_c00353{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.mb1_c00353{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.m8f_c00353{transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);}
.m96_c00353{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.mae_c00353{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);}
.m80_c00353{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184490,0.000000,0.000000,0.250000,0,0);}
.m82_c00353{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m83_c00353{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.m88_c00353{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);}
.m9d_c00353{transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);}
.m5d_c00353{transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m87_c00353{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.mb8_c00353{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m67_c00353{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);}
.m58_c00353{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.me2_c00353{transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.mb3_c00353{transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);}
.me7_c00353{transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);}
.mdf_c00353{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.mc2_c00353{transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.mc0_c00353{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m7d_c00353{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m7f_c00353{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.mbe_c00353{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m8a_c00353{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.m7e_c00353{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m6a_c00353{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.ma4_c00353{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.mc5_c00353{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m5b_c00353{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00353{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00353{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.mad_c00353{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m79_c00353{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.mb4_c00353{transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207660,0.000000,0.000000,0.250000,0,0);}
.mdb_c00353{transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208010,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208080,0.000000,0.000000,0.250000,0,0);}
.mbf_c00353{transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);}
.m8b_c00353{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);}
.m68_c00353{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m84_c00353{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);}
.md9_c00353{transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.me5_c00353{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.mce_c00353{transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.mda_c00353{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m9f_c00353{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.ma1_c00353{transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.mdd_c00353{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00353{transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218265,0.000000,0.000000,0.250000,0,0);}
.m6d_c00353{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);}
.mcb_c00353{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.me3_c00353{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220415,0.000000,0.000000,0.250000,0,0);}
.m70_c00353{transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);}
.md8_c00353{transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221765,0.000000,0.000000,0.250000,0,0);}
.mbb_c00353{transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);}
.m9b_c00353{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m93_c00353{transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);}
.md2_c00353{transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00353{transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);}
.m71_c00353{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226245,0.000000,0.000000,0.250000,0,0);}
.mc1_c00353{transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);}
.ma9_c00353{transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228285,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.ma8_c00353{transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);}
.m75_c00353{transform:matrix(0.231310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231310,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231930,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m78_c00353{transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);}
.mac_c00353{transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);}
.mcf_c00353{transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.m76_c00353{transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);}
.m60_c00353{transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);}
.me1_c00353{transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237960,0.000000,0.000000,0.250000,0,0);}
.m94_c00353{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m35_c00353{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.mc6_c00353{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.mdc_c00353{transform:matrix(0.242305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242305,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.ma6_c00353{transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00353{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.maa_c00353{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.me6_c00353{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.ma0_c00353{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.m72_c00353{transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);}
.me9_c00353{transform:matrix(0.256135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256135,0.000000,0.000000,0.250000,0,0);}
.md3_c00353{transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257305,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);}
.me8_c00353{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.me4_c00353{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.md6_c00353{transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);}
.mab_c00353{transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);}
.md5_c00353{transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);}
.m91_c00353{transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);}
.mcd_c00353{transform:matrix(0.282695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282695,0.000000,0.000000,0.250000,0,0);}
.m90_c00353{transform:matrix(0.320025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320025,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);}
.m73_c00353{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00353{transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);}
.mea_c00353{transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);}
.mcc_c00353{transform:matrix(0.369690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369690,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.420460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420460,0.000000,0.000000,0.250000,0,0);}
.m9e_c00353{transform:matrix(0.470115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470115,0.000000,0.000000,0.250000,0,0);}
.m92_c00353{transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{transform:matrix(0.520705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520705,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:0.000000px;}
.fc0_c00353{color:transparent;}
.fse_c00353{font-size:54.600000px;}
.fsd_c00353{font-size:55.650000px;}
.fs6_c00353{font-size:57.750000px;}
.fs4_c00353{font-size:58.800000px;}
.fsc_c00353{font-size:59.850000px;}
.fs7_c00353{font-size:60.900000px;}
.fsf_c00353{font-size:61.950000px;}
.fs2_c00353{font-size:63.000000px;}
.fs3_c00353{font-size:64.050000px;}
.fsa_c00353{font-size:65.100000px;}
.fs0_c00353{font-size:66.150000px;}
.fs5_c00353{font-size:67.200000px;}
.fs8_c00353{font-size:68.250000px;}
.fs9_c00353{font-size:69.300000px;}
.fsb_c00353{font-size:70.350000px;}
.fs1_c00353{font-size:71.400000px;}
.y0_c00353{bottom:0.000000px;}
.y36_c00353{bottom:22.680000px;}
.y37_c00353{bottom:23.742000px;}
.y38_c00353{bottom:24.267000px;}
.y39_c00353{bottom:24.843000px;}
.y3a_c00353{bottom:25.258500px;}
.y3b_c00353{bottom:26.130000px;}
.y31_c00353{bottom:39.150000px;}
.y32_c00353{bottom:39.658500px;}
.y33_c00353{bottom:40.771500px;}
.y34_c00353{bottom:41.253000px;}
.y35_c00353{bottom:42.828000px;}
.y2a_c00353{bottom:55.890000px;}
.y2b_c00353{bottom:57.016500px;}
.y2c_c00353{bottom:57.349500px;}
.y2d_c00353{bottom:58.159500px;}
.y2e_c00353{bottom:59.110500px;}
.y2f_c00353{bottom:59.313000px;}
.y30_c00353{bottom:59.677500px;}
.y29_c00353{bottom:74.455500px;}
.y28_c00353{bottom:91.087500px;}
.y27_c00353{bottom:108.096000px;}
.y21_c00353{bottom:124.200000px;}
.y22_c00353{bottom:124.746000px;}
.y23_c00353{bottom:125.004000px;}
.y24_c00353{bottom:125.482500px;}
.y25_c00353{bottom:126.403500px;}
.y26_c00353{bottom:127.083000px;}
.y20_c00353{bottom:141.798000px;}
.y19_c00353{bottom:159.843000px;}
.y1a_c00353{bottom:160.276500px;}
.y1b_c00353{bottom:161.656500px;}
.y1c_c00353{bottom:162.295500px;}
.y1d_c00353{bottom:162.829500px;}
.y1e_c00353{bottom:163.237500px;}
.y1f_c00353{bottom:163.530000px;}
.y18_c00353{bottom:177.390000px;}
.y17_c00353{bottom:194.181000px;}
.y16_c00353{bottom:211.680000px;}
.y15_c00353{bottom:228.723000px;}
.y14_c00353{bottom:245.479500px;}
.y13_c00353{bottom:262.071000px;}
.y12_c00353{bottom:278.839500px;}
.y11_c00353{bottom:295.725000px;}
.y10_c00353{bottom:312.120000px;}
.yf_c00353{bottom:330.016500px;}
.ye_c00353{bottom:347.368500px;}
.yd_c00353{bottom:365.064000px;}
.yc_c00353{bottom:381.361500px;}
.yb_c00353{bottom:398.007000px;}
.ya_c00353{bottom:414.814500px;}
.y9_c00353{bottom:431.703000px;}
.y8_c00353{bottom:449.010000px;}
.y7_c00353{bottom:466.290000px;}
.y6_c00353{bottom:482.964000px;}
.y5_c00353{bottom:500.067000px;}
.y4_c00353{bottom:516.592500px;}
.y3_c00353{bottom:533.601000px;}
.y2_c00353{bottom:551.277000px;}
.y1_c00353{bottom:568.213500px;}
.h10_c00353{height:54.600000px;}
.hf_c00353{height:55.650000px;}
.h8_c00353{height:57.750000px;}
.h6_c00353{height:58.800000px;}
.he_c00353{height:59.850000px;}
.h9_c00353{height:60.900000px;}
.h11_c00353{height:61.950000px;}
.h4_c00353{height:63.000000px;}
.h5_c00353{height:64.050000px;}
.hc_c00353{height:65.100000px;}
.h2_c00353{height:66.150000px;}
.h7_c00353{height:67.200000px;}
.ha_c00353{height:68.250000px;}
.hb_c00353{height:69.300000px;}
.hd_c00353{height:70.350000px;}
.h3_c00353{height:71.400000px;}
.h0_c00353{height:613.170000px;}
.h1_c00353{height:613.500000px;}
.w0_c00353{width:359.100000px;}
.w1_c00353{width:359.250000px;}
.x0_c00353{left:0.000000px;}
.x73_c00353{left:46.321500px;}
.x65_c00353{left:47.964000px;}
.x2_c00353{left:49.410000px;}
.x3b_c00353{left:50.490000px;}
.x46_c00353{left:57.240000px;}
.x5f_c00353{left:59.670000px;}
.x3c_c00353{left:64.530000px;}
.x49_c00353{left:68.310000px;}
.x28_c00353{left:69.930000px;}
.x42_c00353{left:72.090000px;}
.x9_c00353{left:73.980000px;}
.x2c_c00353{left:75.060000px;}
.x34_c00353{left:77.220000px;}
.x60_c00353{left:78.840000px;}
.x12_c00353{left:80.730000px;}
.x3d_c00353{left:82.350000px;}
.x74_c00353{left:85.492500px;}
.x3_c00353{left:87.750000px;}
.x13_c00353{left:89.370000px;}
.x43_c00353{left:92.610000px;}
.x6c_c00353{left:93.690000px;}
.x3e_c00353{left:98.010000px;}
.x6b_c00353{left:99.790500px;}
.x67_c00353{left:101.520000px;}
.x1d_c00353{left:106.920000px;}
.x23_c00353{left:108.270000px;}
.xa_c00353{left:109.890000px;}
.x18_c00353{left:112.860000px;}
.x30_c00353{left:115.290000px;}
.x2d_c00353{left:118.530000px;}
.x4a_c00353{left:119.880000px;}
.xb_c00353{left:123.120000px;}
.x71_c00353{left:124.131000px;}
.x35_c00353{left:127.980000px;}
.x31_c00353{left:129.600000px;}
.x57_c00353{left:131.760000px;}
.x5a_c00353{left:133.650000px;}
.x29_c00353{left:135.000000px;}
.x1e_c00353{left:137.160000px;}
.x4_c00353{left:138.240000px;}
.xc_c00353{left:139.860000px;}
.x52_c00353{left:141.210000px;}
.x72_c00353{left:146.281500px;}
.x58_c00353{left:148.770000px;}
.x36_c00353{left:149.850000px;}
.x6f_c00353{left:152.010000px;}
.x5d_c00353{left:156.060000px;}
.x6e_c00353{left:158.220000px;}
.x47_c00353{left:159.300000px;}
.x1f_c00353{left:162.810000px;}
.x14_c00353{left:166.050000px;}
.x66_c00353{left:168.924000px;}
.x2e_c00353{left:170.100000px;}
.x59_c00353{left:174.690000px;}
.x24_c00353{left:176.850000px;}
.xd_c00353{left:179.010000px;}
.x1_c00353{left:181.170000px;}
.x3f_c00353{left:182.250000px;}
.x25_c00353{left:185.490000px;}
.x19_c00353{left:188.190000px;}
.x32_c00353{left:193.320000px;}
.xe_c00353{left:194.400000px;}
.x44_c00353{left:195.480000px;}
.x4f_c00353{left:197.100000px;}
.x5b_c00353{left:199.530000px;}
.x68_c00353{left:200.610000px;}
.x1a_c00353{left:202.770000px;}
.x55_c00353{left:203.850000px;}
.x37_c00353{left:206.280000px;}
.x75_c00353{left:208.069500px;}
.x45_c00353{left:212.220000px;}
.x5e_c00353{left:219.240000px;}
.x4b_c00353{left:220.590000px;}
.x53_c00353{left:221.940000px;}
.x40_c00353{left:223.020000px;}
.x5_c00353{left:228.960000px;}
.x20_c00353{left:231.120000px;}
.x26_c00353{left:236.520000px;}
.x6d_c00353{left:238.410000px;}
.x61_c00353{left:240.570000px;}
.x15_c00353{left:243.270000px;}
.x6_c00353{left:244.350000px;}
.x4c_c00353{left:245.430000px;}
.x64_c00353{left:247.320000px;}
.x38_c00353{left:250.020000px;}
.x5c_c00353{left:252.720000px;}
.x2a_c00353{left:254.880000px;}
.x70_c00353{left:257.310000px;}
.x62_c00353{left:258.930000px;}
.x56_c00353{left:260.280000px;}
.x16_c00353{left:264.600000px;}
.x7_c00353{left:270.540000px;}
.x48_c00353{left:274.590000px;}
.xf_c00353{left:277.020000px;}
.x33_c00353{left:278.370000px;}
.x1b_c00353{left:286.470000px;}
.x8_c00353{left:288.360000px;}
.x39_c00353{left:289.440000px;}
.x69_c00353{left:290.790000px;}
.x54_c00353{left:292.950000px;}
.x21_c00353{left:294.030000px;}
.x27_c00353{left:298.890000px;}
.x4d_c00353{left:301.320000px;}
.x10_c00353{left:304.020000px;}
.x22_c00353{left:306.450000px;}
.x1c_c00353{left:308.880000px;}
.x63_c00353{left:311.850000px;}
.x17_c00353{left:314.280000px;}
.x3a_c00353{left:316.710000px;}
.x2b_c00353{left:317.790000px;}
.x41_c00353{left:319.680000px;}
.x4e_c00353{left:321.840000px;}
.x6a_c00353{left:323.460000px;}
.x11_c00353{left:327.780000px;}
.x76_c00353{left:329.272500px;}
.x2f_c00353{left:333.990000px;}
.x77_c00353{left:336.853500px;}
.x50_c00353{left:339.120000px;}
.x51_c00353{left:353.970000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
.fse_c00353{font-size:48.533333pt;}
.fsd_c00353{font-size:49.466667pt;}
.fs6_c00353{font-size:51.333333pt;}
.fs4_c00353{font-size:52.266667pt;}
.fsc_c00353{font-size:53.200000pt;}
.fs7_c00353{font-size:54.133333pt;}
.fsf_c00353{font-size:55.066667pt;}
.fs2_c00353{font-size:56.000000pt;}
.fs3_c00353{font-size:56.933333pt;}
.fsa_c00353{font-size:57.866667pt;}
.fs0_c00353{font-size:58.800000pt;}
.fs5_c00353{font-size:59.733333pt;}
.fs8_c00353{font-size:60.666667pt;}
.fs9_c00353{font-size:61.600000pt;}
.fsb_c00353{font-size:62.533333pt;}
.fs1_c00353{font-size:63.466667pt;}
.y0_c00353{bottom:0.000000pt;}
.y36_c00353{bottom:20.160000pt;}
.y37_c00353{bottom:21.104000pt;}
.y38_c00353{bottom:21.570667pt;}
.y39_c00353{bottom:22.082667pt;}
.y3a_c00353{bottom:22.452000pt;}
.y3b_c00353{bottom:23.226667pt;}
.y31_c00353{bottom:34.800000pt;}
.y32_c00353{bottom:35.252000pt;}
.y33_c00353{bottom:36.241333pt;}
.y34_c00353{bottom:36.669333pt;}
.y35_c00353{bottom:38.069333pt;}
.y2a_c00353{bottom:49.680000pt;}
.y2b_c00353{bottom:50.681333pt;}
.y2c_c00353{bottom:50.977333pt;}
.y2d_c00353{bottom:51.697333pt;}
.y2e_c00353{bottom:52.542667pt;}
.y2f_c00353{bottom:52.722667pt;}
.y30_c00353{bottom:53.046667pt;}
.y29_c00353{bottom:66.182667pt;}
.y28_c00353{bottom:80.966667pt;}
.y27_c00353{bottom:96.085333pt;}
.y21_c00353{bottom:110.400000pt;}
.y22_c00353{bottom:110.885333pt;}
.y23_c00353{bottom:111.114667pt;}
.y24_c00353{bottom:111.540000pt;}
.y25_c00353{bottom:112.358667pt;}
.y26_c00353{bottom:112.962667pt;}
.y20_c00353{bottom:126.042667pt;}
.y19_c00353{bottom:142.082667pt;}
.y1a_c00353{bottom:142.468000pt;}
.y1b_c00353{bottom:143.694667pt;}
.y1c_c00353{bottom:144.262667pt;}
.y1d_c00353{bottom:144.737333pt;}
.y1e_c00353{bottom:145.100000pt;}
.y1f_c00353{bottom:145.360000pt;}
.y18_c00353{bottom:157.680000pt;}
.y17_c00353{bottom:172.605333pt;}
.y16_c00353{bottom:188.160000pt;}
.y15_c00353{bottom:203.309333pt;}
.y14_c00353{bottom:218.204000pt;}
.y13_c00353{bottom:232.952000pt;}
.y12_c00353{bottom:247.857333pt;}
.y11_c00353{bottom:262.866667pt;}
.y10_c00353{bottom:277.440000pt;}
.yf_c00353{bottom:293.348000pt;}
.ye_c00353{bottom:308.772000pt;}
.yd_c00353{bottom:324.501333pt;}
.yc_c00353{bottom:338.988000pt;}
.yb_c00353{bottom:353.784000pt;}
.ya_c00353{bottom:368.724000pt;}
.y9_c00353{bottom:383.736000pt;}
.y8_c00353{bottom:399.120000pt;}
.y7_c00353{bottom:414.480000pt;}
.y6_c00353{bottom:429.301333pt;}
.y5_c00353{bottom:444.504000pt;}
.y4_c00353{bottom:459.193333pt;}
.y3_c00353{bottom:474.312000pt;}
.y2_c00353{bottom:490.024000pt;}
.y1_c00353{bottom:505.078667pt;}
.h10_c00353{height:48.533333pt;}
.hf_c00353{height:49.466667pt;}
.h8_c00353{height:51.333333pt;}
.h6_c00353{height:52.266667pt;}
.he_c00353{height:53.200000pt;}
.h9_c00353{height:54.133333pt;}
.h11_c00353{height:55.066667pt;}
.h4_c00353{height:56.000000pt;}
.h5_c00353{height:56.933333pt;}
.hc_c00353{height:57.866667pt;}
.h2_c00353{height:58.800000pt;}
.h7_c00353{height:59.733333pt;}
.ha_c00353{height:60.666667pt;}
.hb_c00353{height:61.600000pt;}
.hd_c00353{height:62.533333pt;}
.h3_c00353{height:63.466667pt;}
.h0_c00353{height:545.040000pt;}
.h1_c00353{height:545.333333pt;}
.w0_c00353{width:319.200000pt;}
.w1_c00353{width:319.333333pt;}
.x0_c00353{left:0.000000pt;}
.x73_c00353{left:41.174667pt;}
.x65_c00353{left:42.634667pt;}
.x2_c00353{left:43.920000pt;}
.x3b_c00353{left:44.880000pt;}
.x46_c00353{left:50.880000pt;}
.x5f_c00353{left:53.040000pt;}
.x3c_c00353{left:57.360000pt;}
.x49_c00353{left:60.720000pt;}
.x28_c00353{left:62.160000pt;}
.x42_c00353{left:64.080000pt;}
.x9_c00353{left:65.760000pt;}
.x2c_c00353{left:66.720000pt;}
.x34_c00353{left:68.640000pt;}
.x60_c00353{left:70.080000pt;}
.x12_c00353{left:71.760000pt;}
.x3d_c00353{left:73.200000pt;}
.x74_c00353{left:75.993333pt;}
.x3_c00353{left:78.000000pt;}
.x13_c00353{left:79.440000pt;}
.x43_c00353{left:82.320000pt;}
.x6c_c00353{left:83.280000pt;}
.x3e_c00353{left:87.120000pt;}
.x6b_c00353{left:88.702667pt;}
.x67_c00353{left:90.240000pt;}
.x1d_c00353{left:95.040000pt;}
.x23_c00353{left:96.240000pt;}
.xa_c00353{left:97.680000pt;}
.x18_c00353{left:100.320000pt;}
.x30_c00353{left:102.480000pt;}
.x2d_c00353{left:105.360000pt;}
.x4a_c00353{left:106.560000pt;}
.xb_c00353{left:109.440000pt;}
.x71_c00353{left:110.338667pt;}
.x35_c00353{left:113.760000pt;}
.x31_c00353{left:115.200000pt;}
.x57_c00353{left:117.120000pt;}
.x5a_c00353{left:118.800000pt;}
.x29_c00353{left:120.000000pt;}
.x1e_c00353{left:121.920000pt;}
.x4_c00353{left:122.880000pt;}
.xc_c00353{left:124.320000pt;}
.x52_c00353{left:125.520000pt;}
.x72_c00353{left:130.028000pt;}
.x58_c00353{left:132.240000pt;}
.x36_c00353{left:133.200000pt;}
.x6f_c00353{left:135.120000pt;}
.x5d_c00353{left:138.720000pt;}
.x6e_c00353{left:140.640000pt;}
.x47_c00353{left:141.600000pt;}
.x1f_c00353{left:144.720000pt;}
.x14_c00353{left:147.600000pt;}
.x66_c00353{left:150.154667pt;}
.x2e_c00353{left:151.200000pt;}
.x59_c00353{left:155.280000pt;}
.x24_c00353{left:157.200000pt;}
.xd_c00353{left:159.120000pt;}
.x1_c00353{left:161.040000pt;}
.x3f_c00353{left:162.000000pt;}
.x25_c00353{left:164.880000pt;}
.x19_c00353{left:167.280000pt;}
.x32_c00353{left:171.840000pt;}
.xe_c00353{left:172.800000pt;}
.x44_c00353{left:173.760000pt;}
.x4f_c00353{left:175.200000pt;}
.x5b_c00353{left:177.360000pt;}
.x68_c00353{left:178.320000pt;}
.x1a_c00353{left:180.240000pt;}
.x55_c00353{left:181.200000pt;}
.x37_c00353{left:183.360000pt;}
.x75_c00353{left:184.950667pt;}
.x45_c00353{left:188.640000pt;}
.x5e_c00353{left:194.880000pt;}
.x4b_c00353{left:196.080000pt;}
.x53_c00353{left:197.280000pt;}
.x40_c00353{left:198.240000pt;}
.x5_c00353{left:203.520000pt;}
.x20_c00353{left:205.440000pt;}
.x26_c00353{left:210.240000pt;}
.x6d_c00353{left:211.920000pt;}
.x61_c00353{left:213.840000pt;}
.x15_c00353{left:216.240000pt;}
.x6_c00353{left:217.200000pt;}
.x4c_c00353{left:218.160000pt;}
.x64_c00353{left:219.840000pt;}
.x38_c00353{left:222.240000pt;}
.x5c_c00353{left:224.640000pt;}
.x2a_c00353{left:226.560000pt;}
.x70_c00353{left:228.720000pt;}
.x62_c00353{left:230.160000pt;}
.x56_c00353{left:231.360000pt;}
.x16_c00353{left:235.200000pt;}
.x7_c00353{left:240.480000pt;}
.x48_c00353{left:244.080000pt;}
.xf_c00353{left:246.240000pt;}
.x33_c00353{left:247.440000pt;}
.x1b_c00353{left:254.640000pt;}
.x8_c00353{left:256.320000pt;}
.x39_c00353{left:257.280000pt;}
.x69_c00353{left:258.480000pt;}
.x54_c00353{left:260.400000pt;}
.x21_c00353{left:261.360000pt;}
.x27_c00353{left:265.680000pt;}
.x4d_c00353{left:267.840000pt;}
.x10_c00353{left:270.240000pt;}
.x22_c00353{left:272.400000pt;}
.x1c_c00353{left:274.560000pt;}
.x63_c00353{left:277.200000pt;}
.x17_c00353{left:279.360000pt;}
.x3a_c00353{left:281.520000pt;}
.x2b_c00353{left:282.480000pt;}
.x41_c00353{left:284.160000pt;}
.x4e_c00353{left:286.080000pt;}
.x6a_c00353{left:287.520000pt;}
.x11_c00353{left:291.360000pt;}
.x76_c00353{left:292.686667pt;}
.x2f_c00353{left:296.880000pt;}
.x77_c00353{left:299.425333pt;}
.x50_c00353{left:301.440000pt;}
.x51_c00353{left:314.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00354 {
    display:none;
  }
  .loading-indicator_c00354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00354 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00354 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00354" -> "#page-container .classname_c00354")
 */
.pf_c00354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00354 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00354 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00354 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00354 {overflow:visible;}
  }
}
.c_c00354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00354 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00354:after { /* webkit #35443 */
  content: '';
}
.t_c00354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00354 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00354 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00354 { /* info for Javascript */
  display:none;
}
.l_c00354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00354:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00354 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00354.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me4_c00354{transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010540,0.000000,0.000000,0.250000,0,0);}
.m77_c00354{transform:matrix(0.044335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044335,0.000000,0.000000,0.250000,0,0);}
.mab_c00354{transform:matrix(0.093970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093970,0.000000,0.000000,0.250000,0,0);}
.m78_c00354{transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.117790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117790,0.000000,0.000000,0.250000,0,0);}
.ma4_c00354{transform:matrix(0.121280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121280,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);}
.me0_c00354{transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);}
.me7_c00354{transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143165,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145845,0.000000,0.000000,0.250000,0,0);}
.mad_c00354{transform:matrix(0.147285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147285,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.148270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148270,0.000000,0.000000,0.250000,0,0);}
.m4f_c00354{transform:matrix(0.151105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151105,0.000000,0.000000,0.250000,0,0);}
.md0_c00354{transform:matrix(0.152310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152310,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.mb4_c00354{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.ma8_c00354{transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);}
.mcf_c00354{transform:matrix(0.155155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155155,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.md3_c00354{transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00354{transform:matrix(0.158705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00354{transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159285,0.000000,0.000000,0.250000,0,0);}
.ma7_c00354{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.mb0_c00354{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m6e_c00354{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mac_c00354{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161405,0.000000,0.000000,0.250000,0,0);}
.me3_c00354{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.m8f_c00354{transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162010,0.000000,0.000000,0.250000,0,0);}
.m88_c00354{transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);}
.m89_c00354{transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);}
.mbf_c00354{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m52_c00354{transform:matrix(0.163335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163335,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);}
.mc5_c00354{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m99_c00354{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.mb5_c00354{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.mc8_c00354{transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167540,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168035,0.000000,0.000000,0.250000,0,0);}
.m59_c00354{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m98_c00354{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.md1_c00354{transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170785,0.000000,0.000000,0.250000,0,0);}
.m7a_c00354{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m8d_c00354{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00354{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m55_c00354{transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);}
.ma2_c00354{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m68_c00354{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.meb_c00354{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m6c_c00354{transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176235,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00354{transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);}
.md2_c00354{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.mba_c00354{transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);}
.mce_c00354{transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);}
.mcc_c00354{transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00354{transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);}
.mb7_c00354{transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00354{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);}
.m5c_c00354{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m51_c00354{transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179645,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m9c_c00354{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m79_c00354{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);}
.m76_c00354{transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182830,0.000000,0.000000,0.250000,0,0);}
.m7e_c00354{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m95_c00354{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mf3_c00354{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.m54_c00354{transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);}
.m71_c00354{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.m4a_c00354{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00354{transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);}
.mc9_c00354{transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);}
.ma6_c00354{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.md5_c00354{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.m80_c00354{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.mec_c00354{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186410,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.mc1_c00354{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.mde_c00354{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m46_c00354{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m2c_c00354{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.med_c00354{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.maf_c00354{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m56_c00354{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00354{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189880,0.000000,0.000000,0.250000,0,0);}
.m4b_c00354{transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190310,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.mbe_c00354{transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);}
.mdf_c00354{transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.me2_c00354{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.md4_c00354{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.m4c_c00354{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.m97_c00354{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m90_c00354{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.ma1_c00354{transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mb8_c00354{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m74_c00354{transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m83_c00354{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m42_c00354{transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);}
.me6_c00354{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);}
.mf2_c00354{transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);}
.m69_c00354{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.m87_c00354{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.m4d_c00354{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.m64_c00354{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.mbb_c00354{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.m31_c00354{transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);}
.m7d_c00354{transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);}
.m5b_c00354{transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);}
.m62_c00354{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.mda_c00354{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.m33_c00354{transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.mea_c00354{transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198010,0.000000,0.000000,0.250000,0,0);}
.m7f_c00354{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m82_c00354{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m84_c00354{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199470,0.000000,0.000000,0.250000,0,0);}
.m48_c00354{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.mb9_c00354{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.mdb_c00354{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.m9d_c00354{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m6a_c00354{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.mf5_c00354{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.mcd_c00354{transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);}
.ma0_c00354{transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);}
.mc7_c00354{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.md6_c00354{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00354{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.m50_c00354{transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.md9_c00354{transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m65_c00354{transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);}
.m9f_c00354{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.m4e_c00354{transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206420,0.000000,0.000000,0.250000,0,0);}
.m96_c00354{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.mf1_c00354{transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);}
.mae_c00354{transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);}
.m7b_c00354{transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);}
.m72_c00354{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.mdc_c00354{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207630,0.000000,0.000000,0.250000,0,0);}
.m6f_c00354{transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.md7_c00354{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m2d_c00354{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m8c_c00354{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.m5a_c00354{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.me9_c00354{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.me1_c00354{transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);}
.m86_c00354{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.mc6_c00354{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m6b_c00354{transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216115,0.000000,0.000000,0.250000,0,0);}
.me8_c00354{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m93_c00354{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.217740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217740,0.000000,0.000000,0.250000,0,0);}
.m57_c00354{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.mc4_c00354{transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218680,0.000000,0.000000,0.250000,0,0);}
.mc0_c00354{transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);}
.m8b_c00354{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);}
.m91_c00354{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.m8e_c00354{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.m9b_c00354{transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);}
.m49_c00354{transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);}
.m94_c00354{transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);}
.mbc_c00354{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.m70_c00354{transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);}
.mef_c00354{transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);}
.maa_c00354{transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);}
.m60_c00354{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m63_c00354{transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);}
.md8_c00354{transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);}
.m61_c00354{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.m9a_c00354{transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);}
.m67_c00354{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.mee_c00354{transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246405,0.000000,0.000000,0.250000,0,0);}
.m3f_c00354{transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);}
.mf0_c00354{transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);}
.mf6_c00354{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.mf4_c00354{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00354{transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);}
.mca_c00354{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m66_c00354{transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);}
.m3e_c00354{transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);}
.me5_c00354{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);}
.mc3_c00354{transform:matrix(0.342010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342010,0.000000,0.000000,0.250000,0,0);}
.m58_c00354{transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);}
.mbd_c00354{transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:0.000000px;}
.fc0_c00354{color:transparent;}
.fsc_c00354{font-size:54.600000px;}
.fs8_c00354{font-size:55.650000px;}
.fs5_c00354{font-size:58.800000px;}
.fs9_c00354{font-size:60.900000px;}
.fs3_c00354{font-size:61.950000px;}
.fs4_c00354{font-size:63.000000px;}
.fsb_c00354{font-size:64.050000px;}
.fs2_c00354{font-size:65.100000px;}
.fs0_c00354{font-size:66.150000px;}
.fs7_c00354{font-size:67.200000px;}
.fs6_c00354{font-size:68.250000px;}
.fsa_c00354{font-size:70.350000px;}
.fs1_c00354{font-size:73.500000px;}
.y0_c00354{bottom:0.000000px;}
.y3e_c00354{bottom:30.175500px;}
.y35_c00354{bottom:44.820000px;}
.y36_c00354{bottom:44.892000px;}
.y37_c00354{bottom:45.316500px;}
.y38_c00354{bottom:45.843000px;}
.y39_c00354{bottom:46.119000px;}
.y3a_c00354{bottom:46.444500px;}
.y3b_c00354{bottom:46.752000px;}
.y3c_c00354{bottom:47.634000px;}
.y3d_c00354{bottom:47.800500px;}
.y34_c00354{bottom:64.735500px;}
.y33_c00354{bottom:81.853500px;}
.y32_c00354{bottom:99.547500px;}
.y3f_c00354{bottom:101.791500px;}
.y31_c00354{bottom:116.532000px;}
.y30_c00354{bottom:131.967000px;}
.y2f_c00354{bottom:149.068500px;}
.y2e_c00354{bottom:166.227000px;}
.y2d_c00354{bottom:183.169500px;}
.y2c_c00354{bottom:199.713000px;}
.y2b_c00354{bottom:216.351000px;}
.y2a_c00354{bottom:233.467500px;}
.y29_c00354{bottom:250.399500px;}
.y28_c00354{bottom:268.305000px;}
.y27_c00354{bottom:285.837000px;}
.y26_c00354{bottom:303.264000px;}
.y25_c00354{bottom:320.509500px;}
.y24_c00354{bottom:337.066500px;}
.y23_c00354{bottom:353.565000px;}
.y1a_c00354{bottom:368.011500px;}
.y1b_c00354{bottom:368.419500px;}
.y1c_c00354{bottom:368.847000px;}
.y1d_c00354{bottom:368.986500px;}
.y1e_c00354{bottom:369.306000px;}
.y1f_c00354{bottom:369.666000px;}
.y20_c00354{bottom:370.521000px;}
.y21_c00354{bottom:370.774500px;}
.y22_c00354{bottom:370.984500px;}
.y19_c00354{bottom:386.844000px;}
.y18_c00354{bottom:402.262500px;}
.y17_c00354{bottom:420.633000px;}
.y16_c00354{bottom:435.766500px;}
.y15_c00354{bottom:454.558500px;}
.yd_c00354{bottom:468.721500px;}
.ye_c00354{bottom:469.132500px;}
.yf_c00354{bottom:469.302000px;}
.y10_c00354{bottom:469.944000px;}
.y11_c00354{bottom:470.214000px;}
.y12_c00354{bottom:470.533500px;}
.y13_c00354{bottom:471.175500px;}
.y14_c00354{bottom:471.337500px;}
.yc_c00354{bottom:487.726500px;}
.yb_c00354{bottom:505.150500px;}
.ya_c00354{bottom:522.286500px;}
.y3_c00354{bottom:537.841500px;}
.y4_c00354{bottom:538.537500px;}
.y5_c00354{bottom:538.827000px;}
.y6_c00354{bottom:539.562000px;}
.y7_c00354{bottom:540.294000px;}
.y8_c00354{bottom:540.657000px;}
.y9_c00354{bottom:540.844500px;}
.y2_c00354{bottom:556.035000px;}
.y1_c00354{bottom:573.337500px;}
.he_c00354{height:54.600000px;}
.ha_c00354{height:55.650000px;}
.h7_c00354{height:58.800000px;}
.hb_c00354{height:60.900000px;}
.h5_c00354{height:61.950000px;}
.h6_c00354{height:63.000000px;}
.hd_c00354{height:64.050000px;}
.h4_c00354{height:65.100000px;}
.h2_c00354{height:66.150000px;}
.h9_c00354{height:67.200000px;}
.h8_c00354{height:68.250000px;}
.hc_c00354{height:70.350000px;}
.h3_c00354{height:73.500000px;}
.h0_c00354{height:613.170000px;}
.h1_c00354{height:613.500000px;}
.w0_c00354{width:359.100000px;}
.w1_c00354{width:359.250000px;}
.x0_c00354{left:0.000000px;}
.x22_c00354{left:8.794500px;}
.x6f_c00354{left:14.307000px;}
.x2_c00354{left:15.930000px;}
.x10_c00354{left:17.278500px;}
.x2f_c00354{left:18.355500px;}
.x46_c00354{left:19.707000px;}
.x51_c00354{left:20.787000px;}
.x63_c00354{left:21.867000px;}
.x4d_c00354{left:23.757000px;}
.x5a_c00354{left:25.107000px;}
.x48_c00354{left:26.457000px;}
.x64_c00354{left:29.427000px;}
.x30_c00354{left:31.045500px;}
.x6a_c00354{left:33.747000px;}
.x65_c00354{left:39.147000px;}
.x35_c00354{left:41.305500px;}
.x52_c00354{left:42.927000px;}
.x3a_c00354{left:44.275500px;}
.x23_c00354{left:49.840500px;}
.x16_c00354{left:53.188500px;}
.x70_c00354{left:54.267000px;}
.x3_c00354{left:56.160000px;}
.x4e_c00354{left:60.207000px;}
.x7b_c00354{left:62.365500px;}
.x1c_c00354{left:64.258500px;}
.x24_c00354{left:66.816000px;}
.x5c_c00354{left:69.117000px;}
.x7a_c00354{left:70.467000px;}
.xa_c00354{left:73.525500px;}
.x57_c00354{left:74.787000px;}
.x3b_c00354{left:78.835500px;}
.x11_c00354{left:80.998500px;}
.x4f_c00354{left:82.887000px;}
.x49_c00354{left:85.587000px;}
.x75_c00354{left:87.207000px;}
.x36_c00354{left:89.905500px;}
.x4_c00354{left:90.990000px;}
.x29_c00354{left:96.385500px;}
.xb_c00354{left:97.620000px;}
.x42_c00354{left:100.573500px;}
.x6b_c00354{left:103.407000px;}
.x71_c00354{left:107.187000px;}
.x17_c00354{left:109.888500px;}
.x3c_c00354{left:113.395500px;}
.x53_c00354{left:116.097000px;}
.x12_c00354{left:117.448500px;}
.x37_c00354{left:121.225500px;}
.x5d_c00354{left:126.087000px;}
.x1d_c00354{left:127.438500px;}
.x2a_c00354{left:128.515500px;}
.x25_c00354{left:131.080500px;}
.x13_c00354{left:133.918500px;}
.x6c_c00354{left:134.997000px;}
.x66_c00354{left:139.317000px;}
.x18_c00354{left:142.018500px;}
.x5f_c00354{left:143.097000px;}
.x1e_c00354{left:144.448500px;}
.x1_c00354{left:146.070000px;}
.x31_c00354{left:147.145500px;}
.x3f_c00354{left:150.385500px;}
.x5_c00354{left:151.470000px;}
.x58_c00354{left:152.547000px;}
.x2b_c00354{left:154.705500px;}
.x43_c00354{left:157.278000px;}
.xc_c00354{left:158.901000px;}
.x76_c00354{left:161.727000px;}
.x6_c00354{left:165.240000px;}
.x60_c00354{left:166.587000px;}
.x3d_c00354{left:169.015500px;}
.x59_c00354{left:171.717000px;}
.x2c_c00354{left:173.605500px;}
.x32_c00354{left:176.305500px;}
.x4a_c00354{left:178.197000px;}
.x78_c00354{left:179.277000px;}
.x50_c00354{left:181.977000px;}
.x26_c00354{left:189.939000px;}
.x54_c00354{left:192.777000px;}
.x68_c00354{left:196.287000px;}
.x38_c00354{left:198.715500px;}
.x40_c00354{left:200.065500px;}
.x1f_c00354{left:201.418500px;}
.x3e_c00354{left:204.115500px;}
.x2d_c00354{left:205.465500px;}
.x72_c00354{left:206.817000px;}
.x4b_c00354{left:211.947000px;}
.x19_c00354{left:216.268500px;}
.xd_c00354{left:219.906000px;}
.x14_c00354{left:221.668500px;}
.x47_c00354{left:222.747000px;}
.x5b_c00354{left:225.717000px;}
.x61_c00354{left:226.797000px;}
.x44_c00354{left:228.496500px;}
.x33_c00354{left:231.385500px;}
.x7_c00354{left:233.010000px;}
.x1a_c00354{left:234.088500px;}
.x15_c00354{left:235.978500px;}
.x2e_c00354{left:237.865500px;}
.x6d_c00354{left:240.837000px;}
.x55_c00354{left:245.427000px;}
.x8_c00354{left:246.780000px;}
.xe_c00354{left:250.128000px;}
.x7c_c00354{left:251.905500px;}
.x27_c00354{left:254.187000px;}
.x34_c00354{left:255.955500px;}
.x20_c00354{left:258.388500px;}
.xf_c00354{left:265.782000px;}
.x45_c00354{left:267.175500px;}
.x28_c00354{left:270.396000px;}
.x73_c00354{left:272.427000px;}
.x67_c00354{left:273.777000px;}
.x69_c00354{left:281.337000px;}
.x39_c00354{left:284.305500px;}
.x7d_c00354{left:285.655500px;}
.x41_c00354{left:288.895500px;}
.x77_c00354{left:291.597000px;}
.x4c_c00354{left:293.487000px;}
.x6e_c00354{left:294.567000px;}
.x21_c00354{left:296.458500px;}
.x1b_c00354{left:298.888500px;}
.x9_c00354{left:299.970000px;}
.x79_c00354{left:302.127000px;}
.x56_c00354{left:304.017000px;}
.x5e_c00354{left:307.527000px;}
.x74_c00354{left:312.387000px;}
.x62_c00354{left:318.867000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.fsc_c00354{font-size:48.533333pt;}
.fs8_c00354{font-size:49.466667pt;}
.fs5_c00354{font-size:52.266667pt;}
.fs9_c00354{font-size:54.133333pt;}
.fs3_c00354{font-size:55.066667pt;}
.fs4_c00354{font-size:56.000000pt;}
.fsb_c00354{font-size:56.933333pt;}
.fs2_c00354{font-size:57.866667pt;}
.fs0_c00354{font-size:58.800000pt;}
.fs7_c00354{font-size:59.733333pt;}
.fs6_c00354{font-size:60.666667pt;}
.fsa_c00354{font-size:62.533333pt;}
.fs1_c00354{font-size:65.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y3e_c00354{bottom:26.822667pt;}
.y35_c00354{bottom:39.840000pt;}
.y36_c00354{bottom:39.904000pt;}
.y37_c00354{bottom:40.281333pt;}
.y38_c00354{bottom:40.749333pt;}
.y39_c00354{bottom:40.994667pt;}
.y3a_c00354{bottom:41.284000pt;}
.y3b_c00354{bottom:41.557333pt;}
.y3c_c00354{bottom:42.341333pt;}
.y3d_c00354{bottom:42.489333pt;}
.y34_c00354{bottom:57.542667pt;}
.y33_c00354{bottom:72.758667pt;}
.y32_c00354{bottom:88.486667pt;}
.y3f_c00354{bottom:90.481333pt;}
.y31_c00354{bottom:103.584000pt;}
.y30_c00354{bottom:117.304000pt;}
.y2f_c00354{bottom:132.505333pt;}
.y2e_c00354{bottom:147.757333pt;}
.y2d_c00354{bottom:162.817333pt;}
.y2c_c00354{bottom:177.522667pt;}
.y2b_c00354{bottom:192.312000pt;}
.y2a_c00354{bottom:207.526667pt;}
.y29_c00354{bottom:222.577333pt;}
.y28_c00354{bottom:238.493333pt;}
.y27_c00354{bottom:254.077333pt;}
.y26_c00354{bottom:269.568000pt;}
.y25_c00354{bottom:284.897333pt;}
.y24_c00354{bottom:299.614667pt;}
.y23_c00354{bottom:314.280000pt;}
.y1a_c00354{bottom:327.121333pt;}
.y1b_c00354{bottom:327.484000pt;}
.y1c_c00354{bottom:327.864000pt;}
.y1d_c00354{bottom:327.988000pt;}
.y1e_c00354{bottom:328.272000pt;}
.y1f_c00354{bottom:328.592000pt;}
.y20_c00354{bottom:329.352000pt;}
.y21_c00354{bottom:329.577333pt;}
.y22_c00354{bottom:329.764000pt;}
.y19_c00354{bottom:343.861333pt;}
.y18_c00354{bottom:357.566667pt;}
.y17_c00354{bottom:373.896000pt;}
.y16_c00354{bottom:387.348000pt;}
.y15_c00354{bottom:404.052000pt;}
.yd_c00354{bottom:416.641333pt;}
.ye_c00354{bottom:417.006667pt;}
.yf_c00354{bottom:417.157333pt;}
.y10_c00354{bottom:417.728000pt;}
.y11_c00354{bottom:417.968000pt;}
.y12_c00354{bottom:418.252000pt;}
.y13_c00354{bottom:418.822667pt;}
.y14_c00354{bottom:418.966667pt;}
.yc_c00354{bottom:433.534667pt;}
.yb_c00354{bottom:449.022667pt;}
.ya_c00354{bottom:464.254667pt;}
.y3_c00354{bottom:478.081333pt;}
.y4_c00354{bottom:478.700000pt;}
.y5_c00354{bottom:478.957333pt;}
.y6_c00354{bottom:479.610667pt;}
.y7_c00354{bottom:480.261333pt;}
.y8_c00354{bottom:480.584000pt;}
.y9_c00354{bottom:480.750667pt;}
.y2_c00354{bottom:494.253333pt;}
.y1_c00354{bottom:509.633333pt;}
.he_c00354{height:48.533333pt;}
.ha_c00354{height:49.466667pt;}
.h7_c00354{height:52.266667pt;}
.hb_c00354{height:54.133333pt;}
.h5_c00354{height:55.066667pt;}
.h6_c00354{height:56.000000pt;}
.hd_c00354{height:56.933333pt;}
.h4_c00354{height:57.866667pt;}
.h2_c00354{height:58.800000pt;}
.h9_c00354{height:59.733333pt;}
.h8_c00354{height:60.666667pt;}
.hc_c00354{height:62.533333pt;}
.h3_c00354{height:65.333333pt;}
.h0_c00354{height:545.040000pt;}
.h1_c00354{height:545.333333pt;}
.w0_c00354{width:319.200000pt;}
.w1_c00354{width:319.333333pt;}
.x0_c00354{left:0.000000pt;}
.x22_c00354{left:7.817333pt;}
.x6f_c00354{left:12.717333pt;}
.x2_c00354{left:14.160000pt;}
.x10_c00354{left:15.358667pt;}
.x2f_c00354{left:16.316000pt;}
.x46_c00354{left:17.517333pt;}
.x51_c00354{left:18.477333pt;}
.x63_c00354{left:19.437333pt;}
.x4d_c00354{left:21.117333pt;}
.x5a_c00354{left:22.317333pt;}
.x48_c00354{left:23.517333pt;}
.x64_c00354{left:26.157333pt;}
.x30_c00354{left:27.596000pt;}
.x6a_c00354{left:29.997333pt;}
.x65_c00354{left:34.797333pt;}
.x35_c00354{left:36.716000pt;}
.x52_c00354{left:38.157333pt;}
.x3a_c00354{left:39.356000pt;}
.x23_c00354{left:44.302667pt;}
.x16_c00354{left:47.278667pt;}
.x70_c00354{left:48.237333pt;}
.x3_c00354{left:49.920000pt;}
.x4e_c00354{left:53.517333pt;}
.x7b_c00354{left:55.436000pt;}
.x1c_c00354{left:57.118667pt;}
.x24_c00354{left:59.392000pt;}
.x5c_c00354{left:61.437333pt;}
.x7a_c00354{left:62.637333pt;}
.xa_c00354{left:65.356000pt;}
.x57_c00354{left:66.477333pt;}
.x3b_c00354{left:70.076000pt;}
.x11_c00354{left:71.998667pt;}
.x4f_c00354{left:73.677333pt;}
.x49_c00354{left:76.077333pt;}
.x75_c00354{left:77.517333pt;}
.x36_c00354{left:79.916000pt;}
.x4_c00354{left:80.880000pt;}
.x29_c00354{left:85.676000pt;}
.xb_c00354{left:86.773333pt;}
.x42_c00354{left:89.398667pt;}
.x6b_c00354{left:91.917333pt;}
.x71_c00354{left:95.277333pt;}
.x17_c00354{left:97.678667pt;}
.x3c_c00354{left:100.796000pt;}
.x53_c00354{left:103.197333pt;}
.x12_c00354{left:104.398667pt;}
.x37_c00354{left:107.756000pt;}
.x5d_c00354{left:112.077333pt;}
.x1d_c00354{left:113.278667pt;}
.x2a_c00354{left:114.236000pt;}
.x25_c00354{left:116.516000pt;}
.x13_c00354{left:119.038667pt;}
.x6c_c00354{left:119.997333pt;}
.x66_c00354{left:123.837333pt;}
.x18_c00354{left:126.238667pt;}
.x5f_c00354{left:127.197333pt;}
.x1e_c00354{left:128.398667pt;}
.x1_c00354{left:129.840000pt;}
.x31_c00354{left:130.796000pt;}
.x3f_c00354{left:133.676000pt;}
.x5_c00354{left:134.640000pt;}
.x58_c00354{left:135.597333pt;}
.x2b_c00354{left:137.516000pt;}
.x43_c00354{left:139.802667pt;}
.xc_c00354{left:141.245333pt;}
.x76_c00354{left:143.757333pt;}
.x6_c00354{left:146.880000pt;}
.x60_c00354{left:148.077333pt;}
.x3d_c00354{left:150.236000pt;}
.x59_c00354{left:152.637333pt;}
.x2c_c00354{left:154.316000pt;}
.x32_c00354{left:156.716000pt;}
.x4a_c00354{left:158.397333pt;}
.x78_c00354{left:159.357333pt;}
.x50_c00354{left:161.757333pt;}
.x26_c00354{left:168.834667pt;}
.x54_c00354{left:171.357333pt;}
.x68_c00354{left:174.477333pt;}
.x38_c00354{left:176.636000pt;}
.x40_c00354{left:177.836000pt;}
.x1f_c00354{left:179.038667pt;}
.x3e_c00354{left:181.436000pt;}
.x2d_c00354{left:182.636000pt;}
.x72_c00354{left:183.837333pt;}
.x4b_c00354{left:188.397333pt;}
.x19_c00354{left:192.238667pt;}
.xd_c00354{left:195.472000pt;}
.x14_c00354{left:197.038667pt;}
.x47_c00354{left:197.997333pt;}
.x5b_c00354{left:200.637333pt;}
.x61_c00354{left:201.597333pt;}
.x44_c00354{left:203.108000pt;}
.x33_c00354{left:205.676000pt;}
.x7_c00354{left:207.120000pt;}
.x1a_c00354{left:208.078667pt;}
.x15_c00354{left:209.758667pt;}
.x2e_c00354{left:211.436000pt;}
.x6d_c00354{left:214.077333pt;}
.x55_c00354{left:218.157333pt;}
.x8_c00354{left:219.360000pt;}
.xe_c00354{left:222.336000pt;}
.x7c_c00354{left:223.916000pt;}
.x27_c00354{left:225.944000pt;}
.x34_c00354{left:227.516000pt;}
.x20_c00354{left:229.678667pt;}
.xf_c00354{left:236.250667pt;}
.x45_c00354{left:237.489333pt;}
.x28_c00354{left:240.352000pt;}
.x73_c00354{left:242.157333pt;}
.x67_c00354{left:243.357333pt;}
.x69_c00354{left:250.077333pt;}
.x39_c00354{left:252.716000pt;}
.x7d_c00354{left:253.916000pt;}
.x41_c00354{left:256.796000pt;}
.x77_c00354{left:259.197333pt;}
.x4c_c00354{left:260.877333pt;}
.x6e_c00354{left:261.837333pt;}
.x21_c00354{left:263.518667pt;}
.x1b_c00354{left:265.678667pt;}
.x9_c00354{left:266.640000pt;}
.x79_c00354{left:268.557333pt;}
.x56_c00354{left:270.237333pt;}
.x5e_c00354{left:273.357333pt;}
.x74_c00354{left:277.677333pt;}
.x62_c00354{left:283.437333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00355 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00355 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00355 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00355 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00355.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00355{transform:matrix(0.031085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031085,0.000000,0.000000,0.250000,0,0);}
.mc9_c00355{transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);}
.m62_c00355{transform:matrix(0.142770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142770,0.000000,0.000000,0.250000,0,0);}
.m24_c00355{transform:matrix(0.144355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144355,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.md7_c00355{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.me0_c00355{transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149040,0.000000,0.000000,0.250000,0,0);}
.me2_c00355{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151605,0.000000,0.000000,0.250000,0,0);}
.m97_c00355{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00355{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.mb4_c00355{transform:matrix(0.154180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154180,0.000000,0.000000,0.250000,0,0);}
.me1_c00355{transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);}
.mce_c00355{transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);}
.m80_c00355{transform:matrix(0.161730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161730,0.000000,0.000000,0.250000,0,0);}
.m3b_c00355{transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);}
.ma5_c00355{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.mb1_c00355{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);}
.mb7_c00355{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m2f_c00355{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);}
.m6f_c00355{transform:matrix(0.168760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168760,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);}
.mde_c00355{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m92_c00355{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m55_c00355{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m33_c00355{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.m53_c00355{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mdf_c00355{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.mb5_c00355{transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);}
.m59_c00355{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);}
.m48_c00355{transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);}
.mb0_c00355{transform:matrix(0.176585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176585,0.000000,0.000000,0.250000,0,0);}
.m47_c00355{transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);}
.m7e_c00355{transform:matrix(0.177460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177460,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);}
.m5c_c00355{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m42_c00355{transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179155,0.000000,0.000000,0.250000,0,0);}
.mb2_c00355{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m88_c00355{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m70_c00355{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00355{transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);}
.m79_c00355{transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);}
.m25_c00355{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m83_c00355{transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183960,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.m76_c00355{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m41_c00355{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m72_c00355{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.maf_c00355{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.m8c_c00355{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.md8_c00355{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.me3_c00355{transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m89_c00355{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m4a_c00355{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m77_c00355{transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);}
.m44_c00355{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m7a_c00355{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.m93_c00355{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);}
.m8a_c00355{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m86_c00355{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.mbe_c00355{transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);}
.m9e_c00355{transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00355{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.m56_c00355{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00355{transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195640,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.mcc_c00355{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m22_c00355{transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);}
.ma3_c00355{transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);}
.m52_c00355{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.m7f_c00355{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m51_c00355{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m3a_c00355{transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199095,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);}
.m54_c00355{transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);}
.ma4_c00355{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00355{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m9b_c00355{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00355{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m90_c00355{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.mdc_c00355{transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);}
.m63_c00355{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m75_c00355{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m82_c00355{transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);}
.m8d_c00355{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m5a_c00355{transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204960,0.000000,0.000000,0.250000,0,0);}
.m8f_c00355{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mb6_c00355{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.mcd_c00355{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m49_c00355{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.m87_c00355{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m5e_c00355{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m35_c00355{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207010,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00355{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.mdd_c00355{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.mad_c00355{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.mae_c00355{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.mba_c00355{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m71_c00355{transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210530,0.000000,0.000000,0.250000,0,0);}
.m32_c00355{transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);}
.m50_c00355{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m39_c00355{transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211190,0.000000,0.000000,0.250000,0,0);}
.mb9_c00355{transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211230,0.000000,0.000000,0.250000,0,0);}
.m6a_c00355{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00355{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m3c_c00355{transform:matrix(0.211705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211705,0.000000,0.000000,0.250000,0,0);}
.m8b_c00355{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m67_c00355{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.mc1_c00355{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.m81_c00355{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.mdb_c00355{transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00355{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);}
.m9f_c00355{transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);}
.m31_c00355{transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);}
.md9_c00355{transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);}
.m4c_c00355{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);}
.m36_c00355{transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);}
.m74_c00355{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.mbb_c00355{transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);}
.m58_c00355{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.mcb_c00355{transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216590,0.000000,0.000000,0.250000,0,0);}
.m69_c00355{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m66_c00355{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m5f_c00355{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.mac_c00355{transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217430,0.000000,0.000000,0.250000,0,0);}
.m78_c00355{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00355{transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);}
.m2e_c00355{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m6b_c00355{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.m2a_c00355{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);}
.m2c_c00355{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.mc4_c00355{transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00355{transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.mb3_c00355{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00355{transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m5d_c00355{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.ma6_c00355{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.md6_c00355{transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);}
.m4b_c00355{transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00355{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m68_c00355{transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);}
.m34_c00355{transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);}
.m30_c00355{transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);}
.m65_c00355{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.mc6_c00355{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m46_c00355{transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225555,0.000000,0.000000,0.250000,0,0);}
.m64_c00355{transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226455,0.000000,0.000000,0.250000,0,0);}
.m40_c00355{transform:matrix(0.227355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227355,0.000000,0.000000,0.250000,0,0);}
.mbf_c00355{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m73_c00355{transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228990,0.000000,0.000000,0.250000,0,0);}
.mca_c00355{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.mc8_c00355{transform:matrix(0.231845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231845,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);}
.mc5_c00355{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m60_c00355{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.m98_c00355{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md3_c00355{transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);}
.md4_c00355{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.m96_c00355{transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);}
.m91_c00355{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.mda_c00355{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00355{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.m61_c00355{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m95_c00355{transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);}
.m8e_c00355{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.m9a_c00355{transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);}
.m6d_c00355{transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);}
.m99_c00355{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m57_c00355{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00355{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m7d_c00355{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.mc3_c00355{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00355{transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);}
.ma1_c00355{transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);}
.mc7_c00355{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.md2_c00355{transform:matrix(0.258155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258155,0.000000,0.000000,0.250000,0,0);}
.mcf_c00355{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.m94_c00355{transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);}
.m85_c00355{transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);}
.m37_c00355{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md0_c00355{transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);}
.m7c_c00355{transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);}
.m84_c00355{transform:matrix(0.268055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268055,0.000000,0.000000,0.250000,0,0);}
.m45_c00355{transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);}
.md5_c00355{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);}
.ma8_c00355{transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);}
.md1_c00355{transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);}
.m7b_c00355{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.ma7_c00355{transform:matrix(0.344980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344980,0.000000,0.000000,0.250000,0,0);}
.mc0_c00355{transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);}
.m38_c00355{transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);}
.mab_c00355{transform:matrix(0.352670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352670,0.000000,0.000000,0.250000,0,0);}
.m6c_c00355{transform:matrix(0.368640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368640,0.000000,0.000000,0.250000,0,0);}
.ma2_c00355{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.446680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446680,0.000000,0.000000,0.250000,0,0);}
.maa_c00355{transform:matrix(0.540860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540860,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:0.000000px;}
.fc0_c00355{color:transparent;}
.fsa_c00355{font-size:47.250000px;}
.fs9_c00355{font-size:55.650000px;}
.fs8_c00355{font-size:57.750000px;}
.fs5_c00355{font-size:58.800000px;}
.fs6_c00355{font-size:59.850000px;}
.fs4_c00355{font-size:60.900000px;}
.fs7_c00355{font-size:63.000000px;}
.fs2_c00355{font-size:64.050000px;}
.fs1_c00355{font-size:65.100000px;}
.fs3_c00355{font-size:66.150000px;}
.fs0_c00355{font-size:67.200000px;}
.fsb_c00355{font-size:70.350000px;}
.y0_c00355{bottom:0.000000px;}
.yd0_c00355{bottom:19.992000px;}
.yd1_c00355{bottom:20.850000px;}
.yd2_c00355{bottom:21.285000px;}
.yd3_c00355{bottom:22.393500px;}
.yd4_c00355{bottom:23.290500px;}
.yd5_c00355{bottom:23.881500px;}
.yd6_c00355{bottom:24.213000px;}
.yd7_c00355{bottom:24.718500px;}
.yca_c00355{bottom:36.463500px;}
.ycb_c00355{bottom:37.492500px;}
.ycc_c00355{bottom:37.884000px;}
.ycd_c00355{bottom:39.072000px;}
.yce_c00355{bottom:40.512000px;}
.ycf_c00355{bottom:41.460000px;}
.yc3_c00355{bottom:55.629000px;}
.yc4_c00355{bottom:56.536500px;}
.yc5_c00355{bottom:57.429000px;}
.yc6_c00355{bottom:58.173000px;}
.yc7_c00355{bottom:58.570500px;}
.yc8_c00355{bottom:58.882500px;}
.yc9_c00355{bottom:59.596500px;}
.ybc_c00355{bottom:69.942000px;}
.ybd_c00355{bottom:71.466000px;}
.ybe_c00355{bottom:71.775000px;}
.ybf_c00355{bottom:73.401000px;}
.yc0_c00355{bottom:73.999500px;}
.yc1_c00355{bottom:74.784000px;}
.yc2_c00355{bottom:75.958500px;}
.yb4_c00355{bottom:88.027500px;}
.yb5_c00355{bottom:88.792500px;}
.yb6_c00355{bottom:89.575500px;}
.yb7_c00355{bottom:89.881500px;}
.yb8_c00355{bottom:91.003500px;}
.yb9_c00355{bottom:91.221000px;}
.yba_c00355{bottom:92.080500px;}
.ybb_c00355{bottom:92.392500px;}
.yac_c00355{bottom:104.227500px;}
.yad_c00355{bottom:104.947500px;}
.yae_c00355{bottom:105.327000px;}
.yaf_c00355{bottom:106.759500px;}
.yb0_c00355{bottom:107.934000px;}
.yb1_c00355{bottom:108.435000px;}
.yb2_c00355{bottom:108.937500px;}
.yb3_c00355{bottom:109.171500px;}
.ya3_c00355{bottom:121.509000px;}
.ya4_c00355{bottom:122.217000px;}
.ya5_c00355{bottom:122.607000px;}
.ya6_c00355{bottom:123.331500px;}
.ya7_c00355{bottom:123.802500px;}
.ya8_c00355{bottom:124.434000px;}
.ya9_c00355{bottom:125.593500px;}
.yaa_c00355{bottom:125.838000px;}
.yab_c00355{bottom:126.154500px;}
.ya2_c00355{bottom:142.429500px;}
.y9b_c00355{bottom:156.336000px;}
.y9c_c00355{bottom:157.122000px;}
.y9d_c00355{bottom:158.142000px;}
.y9e_c00355{bottom:158.442000px;}
.y9f_c00355{bottom:159.342000px;}
.ya0_c00355{bottom:160.128000px;}
.ya1_c00355{bottom:160.428000px;}
.y94_c00355{bottom:173.614500px;}
.y95_c00355{bottom:174.079500px;}
.y96_c00355{bottom:174.913500px;}
.y97_c00355{bottom:175.278000px;}
.y98_c00355{bottom:176.347500px;}
.y99_c00355{bottom:176.991000px;}
.y9a_c00355{bottom:177.657000px;}
.y93_c00355{bottom:193.719000px;}
.y8b_c00355{bottom:209.254500px;}
.y8c_c00355{bottom:209.503500px;}
.y8d_c00355{bottom:209.784000px;}
.y8e_c00355{bottom:210.580500px;}
.y8f_c00355{bottom:211.012500px;}
.y90_c00355{bottom:212.286000px;}
.y91_c00355{bottom:212.595000px;}
.y92_c00355{bottom:213.034500px;}
.y82_c00355{bottom:225.724500px;}
.y83_c00355{bottom:225.939000px;}
.y84_c00355{bottom:226.602000px;}
.y85_c00355{bottom:226.842000px;}
.y86_c00355{bottom:227.358000px;}
.y87_c00355{bottom:227.500500px;}
.y88_c00355{bottom:227.695500px;}
.y89_c00355{bottom:228.252000px;}
.y8a_c00355{bottom:228.498000px;}
.y7a_c00355{bottom:242.193000px;}
.y7b_c00355{bottom:242.910000px;}
.y7c_c00355{bottom:243.111000px;}
.y7d_c00355{bottom:243.331500px;}
.y7e_c00355{bottom:243.814500px;}
.y7f_c00355{bottom:244.515000px;}
.y80_c00355{bottom:245.104500px;}
.y81_c00355{bottom:245.296500px;}
.y72_c00355{bottom:258.394500px;}
.y73_c00355{bottom:258.888000px;}
.y74_c00355{bottom:259.653000px;}
.y75_c00355{bottom:260.451000px;}
.y76_c00355{bottom:261.094500px;}
.y77_c00355{bottom:262.269000px;}
.y78_c00355{bottom:262.471500px;}
.y79_c00355{bottom:262.861500px;}
.y6c_c00355{bottom:275.944500px;}
.y6d_c00355{bottom:277.131000px;}
.y6e_c00355{bottom:277.495500px;}
.y6f_c00355{bottom:278.253000px;}
.y70_c00355{bottom:278.706000px;}
.y71_c00355{bottom:279.658500px;}
.y64_c00355{bottom:292.413000px;}
.y65_c00355{bottom:293.025000px;}
.y66_c00355{bottom:293.847000px;}
.y67_c00355{bottom:294.232500px;}
.y68_c00355{bottom:294.987000px;}
.y69_c00355{bottom:295.282500px;}
.y6a_c00355{bottom:295.990500px;}
.y6b_c00355{bottom:296.800500px;}
.y5e_c00355{bottom:309.423000px;}
.y5f_c00355{bottom:310.240500px;}
.y60_c00355{bottom:311.506500px;}
.y61_c00355{bottom:312.750000px;}
.y62_c00355{bottom:313.441500px;}
.y63_c00355{bottom:313.770000px;}
.y56_c00355{bottom:326.701500px;}
.y57_c00355{bottom:328.215000px;}
.y58_c00355{bottom:328.578000px;}
.y59_c00355{bottom:329.065500px;}
.y5a_c00355{bottom:330.091500px;}
.y5b_c00355{bottom:330.723000px;}
.y5c_c00355{bottom:331.146000px;}
.y5d_c00355{bottom:332.028000px;}
.y4d_c00355{bottom:343.981500px;}
.y4e_c00355{bottom:345.120000px;}
.y4f_c00355{bottom:345.397500px;}
.y50_c00355{bottom:346.153500px;}
.y51_c00355{bottom:346.557000px;}
.y52_c00355{bottom:347.676000px;}
.y53_c00355{bottom:347.989500px;}
.y54_c00355{bottom:348.808500px;}
.y55_c00355{bottom:349.359000px;}
.y47_c00355{bottom:361.800000px;}
.y48_c00355{bottom:362.187000px;}
.y49_c00355{bottom:363.600000px;}
.y4a_c00355{bottom:364.017000px;}
.y4b_c00355{bottom:364.995000px;}
.y4c_c00355{bottom:366.588000px;}
.y42_c00355{bottom:378.810000px;}
.y43_c00355{bottom:379.615500px;}
.y44_c00355{bottom:380.292000px;}
.y45_c00355{bottom:382.035000px;}
.y46_c00355{bottom:382.366500px;}
.y3c_c00355{bottom:395.818500px;}
.y3d_c00355{bottom:396.786000px;}
.y3e_c00355{bottom:396.979500px;}
.y3f_c00355{bottom:397.644000px;}
.y40_c00355{bottom:398.595000px;}
.y41_c00355{bottom:399.076500px;}
.y35_c00355{bottom:410.944500px;}
.y36_c00355{bottom:412.015500px;}
.y37_c00355{bottom:412.357500px;}
.y38_c00355{bottom:414.174000px;}
.y39_c00355{bottom:415.422000px;}
.y3a_c00355{bottom:417.114000px;}
.y3b_c00355{bottom:417.652500px;}
.y2e_c00355{bottom:429.301500px;}
.y2f_c00355{bottom:430.419000px;}
.y30_c00355{bottom:431.119500px;}
.y31_c00355{bottom:432.082500px;}
.y32_c00355{bottom:432.454500px;}
.y33_c00355{bottom:433.189500px;}
.y34_c00355{bottom:433.539000px;}
.y26_c00355{bottom:446.025000px;}
.y27_c00355{bottom:446.575500px;}
.y28_c00355{bottom:446.980500px;}
.y29_c00355{bottom:447.271500px;}
.y2a_c00355{bottom:448.179000px;}
.y2b_c00355{bottom:448.798500px;}
.y2c_c00355{bottom:449.101500px;}
.y2d_c00355{bottom:450.097500px;}
.y1f_c00355{bottom:463.584000px;}
.y20_c00355{bottom:464.178000px;}
.y21_c00355{bottom:464.547000px;}
.y22_c00355{bottom:465.331500px;}
.y23_c00355{bottom:465.739500px;}
.y24_c00355{bottom:466.309500px;}
.y25_c00355{bottom:466.465500px;}
.y1e_c00355{bottom:482.344500px;}
.y16_c00355{bottom:496.531500px;}
.y17_c00355{bottom:496.842000px;}
.y18_c00355{bottom:497.299500px;}
.y19_c00355{bottom:498.376500px;}
.y1a_c00355{bottom:498.879000px;}
.y1b_c00355{bottom:499.768500px;}
.y1c_c00355{bottom:501.045000px;}
.y1d_c00355{bottom:501.279000px;}
.y11_c00355{bottom:513.004500px;}
.y12_c00355{bottom:514.057500px;}
.y13_c00355{bottom:514.506000px;}
.y14_c00355{bottom:515.887500px;}
.y15_c00355{bottom:517.129500px;}
.y9_c00355{bottom:530.553000px;}
.ya_c00355{bottom:531.472500px;}
.yb_c00355{bottom:532.497000px;}
.yc_c00355{bottom:533.181000px;}
.yd_c00355{bottom:533.701500px;}
.ye_c00355{bottom:534.424500px;}
.yf_c00355{bottom:534.877500px;}
.y10_c00355{bottom:535.788000px;}
.y2_c00355{bottom:547.026000px;}
.y3_c00355{bottom:547.933500px;}
.y4_c00355{bottom:549.280500px;}
.y5_c00355{bottom:549.951000px;}
.y6_c00355{bottom:550.932000px;}
.y7_c00355{bottom:552.154500px;}
.y8_c00355{bottom:552.553500px;}
.y1_c00355{bottom:567.819000px;}
.hc_c00355{height:47.250000px;}
.hb_c00355{height:55.650000px;}
.ha_c00355{height:57.750000px;}
.h7_c00355{height:58.800000px;}
.h8_c00355{height:59.850000px;}
.h6_c00355{height:60.900000px;}
.h9_c00355{height:63.000000px;}
.h4_c00355{height:64.050000px;}
.h3_c00355{height:65.100000px;}
.h5_c00355{height:66.150000px;}
.h2_c00355{height:67.200000px;}
.hd_c00355{height:70.350000px;}
.h0_c00355{height:613.170000px;}
.h1_c00355{height:613.500000px;}
.w0_c00355{width:359.100000px;}
.w1_c00355{width:359.250000px;}
.x0_c00355{left:0.000000px;}
.x74_c00355{left:35.880000px;}
.x2_c00355{left:39.439500px;}
.x13_c00355{left:40.447500px;}
.x34_c00355{left:41.490000px;}
.x14_c00355{left:57.736500px;}
.x59_c00355{left:60.888000px;}
.x38_c00355{left:63.406500px;}
.x52_c00355{left:69.867000px;}
.x62_c00355{left:74.985000px;}
.x22_c00355{left:76.042500px;}
.x47_c00355{left:80.341500px;}
.x3_c00355{left:82.642500px;}
.x75_c00355{left:87.354000px;}
.x1c_c00355{left:88.483500px;}
.x9_c00355{left:90.961500px;}
.x42_c00355{left:92.562000px;}
.x63_c00355{left:94.444500px;}
.x35_c00355{left:99.012000px;}
.x23_c00355{left:103.056000px;}
.x2c_c00355{left:104.520000px;}
.x72_c00355{left:107.079000px;}
.x27_c00355{left:109.231500px;}
.x78_c00355{left:110.409000px;}
.x3a_c00355{left:112.321500px;}
.x10_c00355{left:114.222000px;}
.x19_c00355{left:115.828500px;}
.x4e_c00355{left:118.177500px;}
.x1d_c00355{left:119.220000px;}
.x5a_c00355{left:121.135500px;}
.x24_c00355{left:122.503500px;}
.x31_c00355{left:128.623500px;}
.x48_c00355{left:135.118500px;}
.x3d_c00355{left:137.592000px;}
.x65_c00355{left:138.775500px;}
.x5e_c00355{left:140.127000px;}
.x15_c00355{left:142.975500px;}
.x4_c00355{left:146.800500px;}
.xa_c00355{left:147.907500px;}
.x3b_c00355{left:150.123000px;}
.x28_c00355{left:153.012000px;}
.x6f_c00355{left:158.160000px;}
.x49_c00355{left:160.803000px;}
.x3e_c00355{left:163.269000px;}
.x76_c00355{left:166.324500px;}
.x53_c00355{left:167.599500px;}
.x68_c00355{left:169.257000px;}
.x1_c00355{left:170.370000px;}
.x43_c00355{left:171.682500px;}
.x57_c00355{left:175.107000px;}
.x5f_c00355{left:177.387000px;}
.x5_c00355{left:178.749000px;}
.x66_c00355{left:180.625500px;}
.x6b_c00355{left:181.942500px;}
.x11_c00355{left:183.325500px;}
.x1e_c00355{left:184.560000px;}
.xb_c00355{left:185.946000px;}
.x2d_c00355{left:187.117500px;}
.x5b_c00355{left:189.928500px;}
.x4f_c00355{left:192.967500px;}
.x5c_c00355{left:202.902000px;}
.x69_c00355{left:204.345000px;}
.x70_c00355{left:206.815500px;}
.x54_c00355{left:207.837000px;}
.x4a_c00355{left:211.065000px;}
.x29_c00355{left:213.223500px;}
.xc_c00355{left:214.890000px;}
.x79_c00355{left:215.929500px;}
.x3f_c00355{left:217.245000px;}
.x1f_c00355{left:218.533500px;}
.x16_c00355{left:220.287000px;}
.x50_c00355{left:223.140000px;}
.x25_c00355{left:224.290500px;}
.x6_c00355{left:225.460500px;}
.x39_c00355{left:228.621000px;}
.x4b_c00355{left:230.775000px;}
.x1a_c00355{left:234.088500px;}
.x71_c00355{left:235.332000px;}
.x2a_c00355{left:236.442000px;}
.x77_c00355{left:238.299000px;}
.x3c_c00355{left:241.902000px;}
.x2e_c00355{left:243.831000px;}
.x12_c00355{left:245.443500px;}
.x6c_c00355{left:247.174500px;}
.x44_c00355{left:249.361500px;}
.x40_c00355{left:250.443000px;}
.x32_c00355{left:252.837000px;}
.xd_c00355{left:255.028500px;}
.x5d_c00355{left:258.811500px;}
.x7a_c00355{left:264.465000px;}
.x20_c00355{left:266.095500px;}
.x60_c00355{left:268.107000px;}
.x36_c00355{left:271.794000px;}
.x6d_c00355{left:274.980000px;}
.x4c_c00355{left:278.022000px;}
.x21_c00355{left:279.063000px;}
.xe_c00355{left:280.164000px;}
.x55_c00355{left:281.241000px;}
.x2b_c00355{left:282.343500px;}
.x7_c00355{left:283.675500px;}
.x51_c00355{left:286.641000px;}
.x33_c00355{left:289.876500px;}
.x17_c00355{left:291.196500px;}
.x45_c00355{left:292.620000px;}
.x56_c00355{left:293.875500px;}
.x37_c00355{left:295.515000px;}
.x58_c00355{left:298.501500px;}
.x6a_c00355{left:299.938500px;}
.x8_c00355{left:302.709000px;}
.x18_c00355{left:304.195500px;}
.x67_c00355{left:309.145500px;}
.x26_c00355{left:310.893000px;}
.x46_c00355{left:313.147500px;}
.x64_c00355{left:314.760000px;}
.x6e_c00355{left:315.868500px;}
.x41_c00355{left:319.080000px;}
.x2f_c00355{left:320.743500px;}
.x1b_c00355{left:323.188500px;}
.x73_c00355{left:325.525500px;}
.x61_c00355{left:329.127000px;}
.xf_c00355{left:330.715500px;}
.x4d_c00355{left:332.050500px;}
.x30_c00355{left:345.231000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.fsa_c00355{font-size:42.000000pt;}
.fs9_c00355{font-size:49.466667pt;}
.fs8_c00355{font-size:51.333333pt;}
.fs5_c00355{font-size:52.266667pt;}
.fs6_c00355{font-size:53.200000pt;}
.fs4_c00355{font-size:54.133333pt;}
.fs7_c00355{font-size:56.000000pt;}
.fs2_c00355{font-size:56.933333pt;}
.fs1_c00355{font-size:57.866667pt;}
.fs3_c00355{font-size:58.800000pt;}
.fs0_c00355{font-size:59.733333pt;}
.fsb_c00355{font-size:62.533333pt;}
.y0_c00355{bottom:0.000000pt;}
.yd0_c00355{bottom:17.770667pt;}
.yd1_c00355{bottom:18.533333pt;}
.yd2_c00355{bottom:18.920000pt;}
.yd3_c00355{bottom:19.905333pt;}
.yd4_c00355{bottom:20.702667pt;}
.yd5_c00355{bottom:21.228000pt;}
.yd6_c00355{bottom:21.522667pt;}
.yd7_c00355{bottom:21.972000pt;}
.yca_c00355{bottom:32.412000pt;}
.ycb_c00355{bottom:33.326667pt;}
.ycc_c00355{bottom:33.674667pt;}
.ycd_c00355{bottom:34.730667pt;}
.yce_c00355{bottom:36.010667pt;}
.ycf_c00355{bottom:36.853333pt;}
.yc3_c00355{bottom:49.448000pt;}
.yc4_c00355{bottom:50.254667pt;}
.yc5_c00355{bottom:51.048000pt;}
.yc6_c00355{bottom:51.709333pt;}
.yc7_c00355{bottom:52.062667pt;}
.yc8_c00355{bottom:52.340000pt;}
.yc9_c00355{bottom:52.974667pt;}
.ybc_c00355{bottom:62.170667pt;}
.ybd_c00355{bottom:63.525333pt;}
.ybe_c00355{bottom:63.800000pt;}
.ybf_c00355{bottom:65.245333pt;}
.yc0_c00355{bottom:65.777333pt;}
.yc1_c00355{bottom:66.474667pt;}
.yc2_c00355{bottom:67.518667pt;}
.yb4_c00355{bottom:78.246667pt;}
.yb5_c00355{bottom:78.926667pt;}
.yb6_c00355{bottom:79.622667pt;}
.yb7_c00355{bottom:79.894667pt;}
.yb8_c00355{bottom:80.892000pt;}
.yb9_c00355{bottom:81.085333pt;}
.yba_c00355{bottom:81.849333pt;}
.ybb_c00355{bottom:82.126667pt;}
.yac_c00355{bottom:92.646667pt;}
.yad_c00355{bottom:93.286667pt;}
.yae_c00355{bottom:93.624000pt;}
.yaf_c00355{bottom:94.897333pt;}
.yb0_c00355{bottom:95.941333pt;}
.yb1_c00355{bottom:96.386667pt;}
.yb2_c00355{bottom:96.833333pt;}
.yb3_c00355{bottom:97.041333pt;}
.ya3_c00355{bottom:108.008000pt;}
.ya4_c00355{bottom:108.637333pt;}
.ya5_c00355{bottom:108.984000pt;}
.ya6_c00355{bottom:109.628000pt;}
.ya7_c00355{bottom:110.046667pt;}
.ya8_c00355{bottom:110.608000pt;}
.ya9_c00355{bottom:111.638667pt;}
.yaa_c00355{bottom:111.856000pt;}
.yab_c00355{bottom:112.137333pt;}
.ya2_c00355{bottom:126.604000pt;}
.y9b_c00355{bottom:138.965333pt;}
.y9c_c00355{bottom:139.664000pt;}
.y9d_c00355{bottom:140.570667pt;}
.y9e_c00355{bottom:140.837333pt;}
.y9f_c00355{bottom:141.637333pt;}
.ya0_c00355{bottom:142.336000pt;}
.ya1_c00355{bottom:142.602667pt;}
.y94_c00355{bottom:154.324000pt;}
.y95_c00355{bottom:154.737333pt;}
.y96_c00355{bottom:155.478667pt;}
.y97_c00355{bottom:155.802667pt;}
.y98_c00355{bottom:156.753333pt;}
.y99_c00355{bottom:157.325333pt;}
.y9a_c00355{bottom:157.917333pt;}
.y93_c00355{bottom:172.194667pt;}
.y8b_c00355{bottom:186.004000pt;}
.y8c_c00355{bottom:186.225333pt;}
.y8d_c00355{bottom:186.474667pt;}
.y8e_c00355{bottom:187.182667pt;}
.y8f_c00355{bottom:187.566667pt;}
.y90_c00355{bottom:188.698667pt;}
.y91_c00355{bottom:188.973333pt;}
.y92_c00355{bottom:189.364000pt;}
.y82_c00355{bottom:200.644000pt;}
.y83_c00355{bottom:200.834667pt;}
.y84_c00355{bottom:201.424000pt;}
.y85_c00355{bottom:201.637333pt;}
.y86_c00355{bottom:202.096000pt;}
.y87_c00355{bottom:202.222667pt;}
.y88_c00355{bottom:202.396000pt;}
.y89_c00355{bottom:202.890667pt;}
.y8a_c00355{bottom:203.109333pt;}
.y7a_c00355{bottom:215.282667pt;}
.y7b_c00355{bottom:215.920000pt;}
.y7c_c00355{bottom:216.098667pt;}
.y7d_c00355{bottom:216.294667pt;}
.y7e_c00355{bottom:216.724000pt;}
.y7f_c00355{bottom:217.346667pt;}
.y80_c00355{bottom:217.870667pt;}
.y81_c00355{bottom:218.041333pt;}
.y72_c00355{bottom:229.684000pt;}
.y73_c00355{bottom:230.122667pt;}
.y74_c00355{bottom:230.802667pt;}
.y75_c00355{bottom:231.512000pt;}
.y76_c00355{bottom:232.084000pt;}
.y77_c00355{bottom:233.128000pt;}
.y78_c00355{bottom:233.308000pt;}
.y79_c00355{bottom:233.654667pt;}
.y6c_c00355{bottom:245.284000pt;}
.y6d_c00355{bottom:246.338667pt;}
.y6e_c00355{bottom:246.662667pt;}
.y6f_c00355{bottom:247.336000pt;}
.y70_c00355{bottom:247.738667pt;}
.y71_c00355{bottom:248.585333pt;}
.y64_c00355{bottom:259.922667pt;}
.y65_c00355{bottom:260.466667pt;}
.y66_c00355{bottom:261.197333pt;}
.y67_c00355{bottom:261.540000pt;}
.y68_c00355{bottom:262.210667pt;}
.y69_c00355{bottom:262.473333pt;}
.y6a_c00355{bottom:263.102667pt;}
.y6b_c00355{bottom:263.822667pt;}
.y5e_c00355{bottom:275.042667pt;}
.y5f_c00355{bottom:275.769333pt;}
.y60_c00355{bottom:276.894667pt;}
.y61_c00355{bottom:278.000000pt;}
.y62_c00355{bottom:278.614667pt;}
.y63_c00355{bottom:278.906667pt;}
.y56_c00355{bottom:290.401333pt;}
.y57_c00355{bottom:291.746667pt;}
.y58_c00355{bottom:292.069333pt;}
.y59_c00355{bottom:292.502667pt;}
.y5a_c00355{bottom:293.414667pt;}
.y5b_c00355{bottom:293.976000pt;}
.y5c_c00355{bottom:294.352000pt;}
.y5d_c00355{bottom:295.136000pt;}
.y4d_c00355{bottom:305.761333pt;}
.y4e_c00355{bottom:306.773333pt;}
.y4f_c00355{bottom:307.020000pt;}
.y50_c00355{bottom:307.692000pt;}
.y51_c00355{bottom:308.050667pt;}
.y52_c00355{bottom:309.045333pt;}
.y53_c00355{bottom:309.324000pt;}
.y54_c00355{bottom:310.052000pt;}
.y55_c00355{bottom:310.541333pt;}
.y47_c00355{bottom:321.600000pt;}
.y48_c00355{bottom:321.944000pt;}
.y49_c00355{bottom:323.200000pt;}
.y4a_c00355{bottom:323.570667pt;}
.y4b_c00355{bottom:324.440000pt;}
.y4c_c00355{bottom:325.856000pt;}
.y42_c00355{bottom:336.720000pt;}
.y43_c00355{bottom:337.436000pt;}
.y44_c00355{bottom:338.037333pt;}
.y45_c00355{bottom:339.586667pt;}
.y46_c00355{bottom:339.881333pt;}
.y3c_c00355{bottom:351.838667pt;}
.y3d_c00355{bottom:352.698667pt;}
.y3e_c00355{bottom:352.870667pt;}
.y3f_c00355{bottom:353.461333pt;}
.y40_c00355{bottom:354.306667pt;}
.y41_c00355{bottom:354.734667pt;}
.y35_c00355{bottom:365.284000pt;}
.y36_c00355{bottom:366.236000pt;}
.y37_c00355{bottom:366.540000pt;}
.y38_c00355{bottom:368.154667pt;}
.y39_c00355{bottom:369.264000pt;}
.y3a_c00355{bottom:370.768000pt;}
.y3b_c00355{bottom:371.246667pt;}
.y2e_c00355{bottom:381.601333pt;}
.y2f_c00355{bottom:382.594667pt;}
.y30_c00355{bottom:383.217333pt;}
.y31_c00355{bottom:384.073333pt;}
.y32_c00355{bottom:384.404000pt;}
.y33_c00355{bottom:385.057333pt;}
.y34_c00355{bottom:385.368000pt;}
.y26_c00355{bottom:396.466667pt;}
.y27_c00355{bottom:396.956000pt;}
.y28_c00355{bottom:397.316000pt;}
.y29_c00355{bottom:397.574667pt;}
.y2a_c00355{bottom:398.381333pt;}
.y2b_c00355{bottom:398.932000pt;}
.y2c_c00355{bottom:399.201333pt;}
.y2d_c00355{bottom:400.086667pt;}
.y1f_c00355{bottom:412.074667pt;}
.y20_c00355{bottom:412.602667pt;}
.y21_c00355{bottom:412.930667pt;}
.y22_c00355{bottom:413.628000pt;}
.y23_c00355{bottom:413.990667pt;}
.y24_c00355{bottom:414.497333pt;}
.y25_c00355{bottom:414.636000pt;}
.y1e_c00355{bottom:428.750667pt;}
.y16_c00355{bottom:441.361333pt;}
.y17_c00355{bottom:441.637333pt;}
.y18_c00355{bottom:442.044000pt;}
.y19_c00355{bottom:443.001333pt;}
.y1a_c00355{bottom:443.448000pt;}
.y1b_c00355{bottom:444.238667pt;}
.y1c_c00355{bottom:445.373333pt;}
.y1d_c00355{bottom:445.581333pt;}
.y11_c00355{bottom:456.004000pt;}
.y12_c00355{bottom:456.940000pt;}
.y13_c00355{bottom:457.338667pt;}
.y14_c00355{bottom:458.566667pt;}
.y15_c00355{bottom:459.670667pt;}
.y9_c00355{bottom:471.602667pt;}
.ya_c00355{bottom:472.420000pt;}
.yb_c00355{bottom:473.330667pt;}
.yc_c00355{bottom:473.938667pt;}
.yd_c00355{bottom:474.401333pt;}
.ye_c00355{bottom:475.044000pt;}
.yf_c00355{bottom:475.446667pt;}
.y10_c00355{bottom:476.256000pt;}
.y2_c00355{bottom:486.245333pt;}
.y3_c00355{bottom:487.052000pt;}
.y4_c00355{bottom:488.249333pt;}
.y5_c00355{bottom:488.845333pt;}
.y6_c00355{bottom:489.717333pt;}
.y7_c00355{bottom:490.804000pt;}
.y8_c00355{bottom:491.158667pt;}
.y1_c00355{bottom:504.728000pt;}
.hc_c00355{height:42.000000pt;}
.hb_c00355{height:49.466667pt;}
.ha_c00355{height:51.333333pt;}
.h7_c00355{height:52.266667pt;}
.h8_c00355{height:53.200000pt;}
.h6_c00355{height:54.133333pt;}
.h9_c00355{height:56.000000pt;}
.h4_c00355{height:56.933333pt;}
.h3_c00355{height:57.866667pt;}
.h5_c00355{height:58.800000pt;}
.h2_c00355{height:59.733333pt;}
.hd_c00355{height:62.533333pt;}
.h0_c00355{height:545.040000pt;}
.h1_c00355{height:545.333333pt;}
.w0_c00355{width:319.200000pt;}
.w1_c00355{width:319.333333pt;}
.x0_c00355{left:0.000000pt;}
.x74_c00355{left:31.893333pt;}
.x2_c00355{left:35.057333pt;}
.x13_c00355{left:35.953333pt;}
.x34_c00355{left:36.880000pt;}
.x14_c00355{left:51.321333pt;}
.x59_c00355{left:54.122667pt;}
.x38_c00355{left:56.361333pt;}
.x52_c00355{left:62.104000pt;}
.x62_c00355{left:66.653333pt;}
.x22_c00355{left:67.593333pt;}
.x47_c00355{left:71.414667pt;}
.x3_c00355{left:73.460000pt;}
.x75_c00355{left:77.648000pt;}
.x1c_c00355{left:78.652000pt;}
.x9_c00355{left:80.854667pt;}
.x42_c00355{left:82.277333pt;}
.x63_c00355{left:83.950667pt;}
.x35_c00355{left:88.010667pt;}
.x23_c00355{left:91.605333pt;}
.x2c_c00355{left:92.906667pt;}
.x72_c00355{left:95.181333pt;}
.x27_c00355{left:97.094667pt;}
.x78_c00355{left:98.141333pt;}
.x3a_c00355{left:99.841333pt;}
.x10_c00355{left:101.530667pt;}
.x19_c00355{left:102.958667pt;}
.x4e_c00355{left:105.046667pt;}
.x1d_c00355{left:105.973333pt;}
.x5a_c00355{left:107.676000pt;}
.x24_c00355{left:108.892000pt;}
.x31_c00355{left:114.332000pt;}
.x48_c00355{left:120.105333pt;}
.x3d_c00355{left:122.304000pt;}
.x65_c00355{left:123.356000pt;}
.x5e_c00355{left:124.557333pt;}
.x15_c00355{left:127.089333pt;}
.x4_c00355{left:130.489333pt;}
.xa_c00355{left:131.473333pt;}
.x3b_c00355{left:133.442667pt;}
.x28_c00355{left:136.010667pt;}
.x6f_c00355{left:140.586667pt;}
.x49_c00355{left:142.936000pt;}
.x3e_c00355{left:145.128000pt;}
.x76_c00355{left:147.844000pt;}
.x53_c00355{left:148.977333pt;}
.x68_c00355{left:150.450667pt;}
.x1_c00355{left:151.440000pt;}
.x43_c00355{left:152.606667pt;}
.x57_c00355{left:155.650667pt;}
.x5f_c00355{left:157.677333pt;}
.x5_c00355{left:158.888000pt;}
.x66_c00355{left:160.556000pt;}
.x6b_c00355{left:161.726667pt;}
.x11_c00355{left:162.956000pt;}
.x1e_c00355{left:164.053333pt;}
.xb_c00355{left:165.285333pt;}
.x2d_c00355{left:166.326667pt;}
.x5b_c00355{left:168.825333pt;}
.x4f_c00355{left:171.526667pt;}
.x5c_c00355{left:180.357333pt;}
.x69_c00355{left:181.640000pt;}
.x70_c00355{left:183.836000pt;}
.x54_c00355{left:184.744000pt;}
.x4a_c00355{left:187.613333pt;}
.x29_c00355{left:189.532000pt;}
.xc_c00355{left:191.013333pt;}
.x79_c00355{left:191.937333pt;}
.x3f_c00355{left:193.106667pt;}
.x1f_c00355{left:194.252000pt;}
.x16_c00355{left:195.810667pt;}
.x50_c00355{left:198.346667pt;}
.x25_c00355{left:199.369333pt;}
.x6_c00355{left:200.409333pt;}
.x39_c00355{left:203.218667pt;}
.x4b_c00355{left:205.133333pt;}
.x1a_c00355{left:208.078667pt;}
.x71_c00355{left:209.184000pt;}
.x2a_c00355{left:210.170667pt;}
.x77_c00355{left:211.821333pt;}
.x3c_c00355{left:215.024000pt;}
.x2e_c00355{left:216.738667pt;}
.x12_c00355{left:218.172000pt;}
.x6c_c00355{left:219.710667pt;}
.x44_c00355{left:221.654667pt;}
.x40_c00355{left:222.616000pt;}
.x32_c00355{left:224.744000pt;}
.xd_c00355{left:226.692000pt;}
.x5d_c00355{left:230.054667pt;}
.x7a_c00355{left:235.080000pt;}
.x20_c00355{left:236.529333pt;}
.x60_c00355{left:238.317333pt;}
.x36_c00355{left:241.594667pt;}
.x6d_c00355{left:244.426667pt;}
.x4c_c00355{left:247.130667pt;}
.x21_c00355{left:248.056000pt;}
.xe_c00355{left:249.034667pt;}
.x55_c00355{left:249.992000pt;}
.x2b_c00355{left:250.972000pt;}
.x7_c00355{left:252.156000pt;}
.x51_c00355{left:254.792000pt;}
.x33_c00355{left:257.668000pt;}
.x17_c00355{left:258.841333pt;}
.x45_c00355{left:260.106667pt;}
.x56_c00355{left:261.222667pt;}
.x37_c00355{left:262.680000pt;}
.x58_c00355{left:265.334667pt;}
.x6a_c00355{left:266.612000pt;}
.x8_c00355{left:269.074667pt;}
.x18_c00355{left:270.396000pt;}
.x67_c00355{left:274.796000pt;}
.x26_c00355{left:276.349333pt;}
.x46_c00355{left:278.353333pt;}
.x64_c00355{left:279.786667pt;}
.x6e_c00355{left:280.772000pt;}
.x41_c00355{left:283.626667pt;}
.x2f_c00355{left:285.105333pt;}
.x1b_c00355{left:287.278667pt;}
.x73_c00355{left:289.356000pt;}
.x61_c00355{left:292.557333pt;}
.xf_c00355{left:293.969333pt;}
.x4d_c00355{left:295.156000pt;}
.x30_c00355{left:306.872000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00356 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00356.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_c00356{transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);}
.mae_c00356{transform:matrix(0.060485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060485,0.000000,0.000000,0.250000,0,0);}
.mbf_c00356{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00356{transform:matrix(0.072580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072580,0.000000,0.000000,0.250000,0,0);}
.m5a_c00356{transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);}
.m57_c00356{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.mcc_c00356{transform:matrix(0.146280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146280,0.000000,0.000000,0.250000,0,0);}
.mef_c00356{transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.ma2_c00356{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m53_c00356{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.mc2_c00356{transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);}
.m4f_c00356{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00356{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m26_c00356{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m1d_c00356{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m1b_c00356{transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155615,0.000000,0.000000,0.250000,0,0);}
.m3a_c00356{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m5b_c00356{transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156565,0.000000,0.000000,0.250000,0,0);}
.m32_c00356{transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157710,0.000000,0.000000,0.250000,0,0);}
.m1e_c00356{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.mcb_c00356{transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.159995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159995,0.000000,0.000000,0.250000,0,0);}
.m31_c00356{transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160215,0.000000,0.000000,0.250000,0,0);}
.mc9_c00356{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.m3c_c00356{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.mc8_c00356{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.m2a_c00356{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m1f_c00356{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.m63_c00356{transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164245,0.000000,0.000000,0.250000,0,0);}
.m3d_c00356{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00356{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.me5_c00356{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{transform:matrix(0.166020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166020,0.000000,0.000000,0.250000,0,0);}
.md3_c00356{transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166095,0.000000,0.000000,0.250000,0,0);}
.m5c_c00356{transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);}
.mc6_c00356{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.mf5_c00356{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m93_c00356{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m2b_c00356{transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168045,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);}
.m4a_c00356{transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m29_c00356{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.m95_c00356{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);}
.md8_c00356{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.mc5_c00356{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m51_c00356{transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171665,0.000000,0.000000,0.250000,0,0);}
.m48_c00356{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00356{transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);}
.m49_c00356{transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);}
.m24_c00356{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.mf8_c00356{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.ma6_c00356{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.meb_c00356{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.mc7_c00356{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m55_c00356{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m6e_c00356{transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00356{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00356{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.mb9_c00356{transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176455,0.000000,0.000000,0.250000,0,0);}
.m9a_c00356{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.m96_c00356{transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);}
.m8c_c00356{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m28_c00356{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.mb0_c00356{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.mac_c00356{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m88_c00356{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m2f_c00356{transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);}
.m47_c00356{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m79_c00356{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m46_c00356{transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179820,0.000000,0.000000,0.250000,0,0);}
.mf3_c00356{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.mb2_c00356{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m22_c00356{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.med_c00356{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.mbe_c00356{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.m87_c00356{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m37_c00356{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.mec_c00356{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m6c_c00356{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00356{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m8b_c00356{transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);}
.m3b_c00356{transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182805,0.000000,0.000000,0.250000,0,0);}
.m91_c00356{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.me3_c00356{transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);}
.m4e_c00356{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.mce_c00356{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.md1_c00356{transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00356{transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00356{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.md9_c00356{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m75_c00356{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.m39_c00356{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.md5_c00356{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.m44_c00356{transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);}
.mab_c00356{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.m25_c00356{transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187610,0.000000,0.000000,0.250000,0,0);}
.m85_c00356{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m40_c00356{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.m30_c00356{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.m9b_c00356{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m20_c00356{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.m9c_c00356{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.me2_c00356{transform:matrix(0.190170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190170,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me6_c00356{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m97_c00356{transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);}
.m38_c00356{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m66_c00356{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.mca_c00356{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.mcf_c00356{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00356{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.m54_c00356{transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);}
.m8e_c00356{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m82_c00356{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.m27_c00356{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.md0_c00356{transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m68_c00356{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.mad_c00356{transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);}
.mc4_c00356{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.me1_c00356{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mb3_c00356{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.ma7_c00356{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.mdd_c00356{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m59_c00356{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m90_c00356{transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196915,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m8d_c00356{transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);}
.mda_c00356{transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);}
.m98_c00356{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m78_c00356{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.mc3_c00356{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m60_c00356{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.m9f_c00356{transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);}
.m5f_c00356{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.me0_c00356{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m21_c00356{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m9e_c00356{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.md4_c00356{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.mf1_c00356{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.me7_c00356{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.md7_c00356{transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);}
.m50_c00356{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.mb6_c00356{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00356{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);}
.m4b_c00356{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m86_c00356{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.me9_c00356{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.m42_c00356{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m35_c00356{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m77_c00356{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m58_c00356{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.m89_c00356{transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204630,0.000000,0.000000,0.250000,0,0);}
.m6f_c00356{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.ma4_c00356{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m52_c00356{transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00356{transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);}
.m83_c00356{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.maf_c00356{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.mdb_c00356{transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);}
.mb5_c00356{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.md6_c00356{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.mee_c00356{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00356{transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207930,0.000000,0.000000,0.250000,0,0);}
.mbc_c00356{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m9d_c00356{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00356{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.me4_c00356{transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00356{transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);}
.m6d_c00356{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m56_c00356{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.m70_c00356{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m73_c00356{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00356{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.m99_c00356{transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.212155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212155,0.000000,0.000000,0.250000,0,0);}
.m94_c00356{transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);}
.m7b_c00356{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.mf9_c00356{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m80_c00356{transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);}
.mf6_c00356{transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);}
.maa_c00356{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.mbd_c00356{transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);}
.mf7_c00356{transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);}
.mf0_c00356{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.m84_c00356{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.mbb_c00356{transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);}
.ma8_c00356{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m7e_c00356{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.m74_c00356{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.me8_c00356{transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217610,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.mc0_c00356{transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217905,0.000000,0.000000,0.250000,0,0);}
.m8f_c00356{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.mde_c00356{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.mf4_c00356{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.m2d_c00356{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m41_c00356{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m65_c00356{transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218985,0.000000,0.000000,0.250000,0,0);}
.m6b_c00356{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.mea_c00356{transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00356{transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221665,0.000000,0.000000,0.250000,0,0);}
.m69_c00356{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);}
.ma5_c00356{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00356{transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);}
.m71_c00356{transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);}
.m7a_c00356{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m61_c00356{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m92_c00356{transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);}
.m76_c00356{transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);}
.mba_c00356{transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);}
.m81_c00356{transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);}
.m67_c00356{transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);}
.m64_c00356{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m62_c00356{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.m2e_c00356{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m43_c00356{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m72_c00356{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.mdf_c00356{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00356{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.ma3_c00356{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.md2_c00356{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m8a_c00356{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m5d_c00356{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m45_c00356{transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00356{transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.306930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306930,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.491925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491925,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:0.000000px;}
.fc0_c00356{color:transparent;}
.fs7_c00356{font-size:54.600000px;}
.fs5_c00356{font-size:57.750000px;}
.fs8_c00356{font-size:59.850000px;}
.fs2_c00356{font-size:60.900000px;}
.fsd_c00356{font-size:61.950000px;}
.fsa_c00356{font-size:63.000000px;}
.fs9_c00356{font-size:64.050000px;}
.fs0_c00356{font-size:65.100000px;}
.fsc_c00356{font-size:66.150000px;}
.fsb_c00356{font-size:68.250000px;}
.fs4_c00356{font-size:69.300000px;}
.fs6_c00356{font-size:70.350000px;}
.fs1_c00356{font-size:72.450000px;}
.fs3_c00356{font-size:73.500000px;}
.y0_c00356{bottom:0.000000px;}
.y22_c00356{bottom:11.164500px;}
.y21_c00356{bottom:28.207500px;}
.y20_c00356{bottom:44.887500px;}
.y1f_c00356{bottom:61.866000px;}
.y1e_c00356{bottom:79.056000px;}
.y1d_c00356{bottom:95.011500px;}
.y1c_c00356{bottom:112.387500px;}
.y1b_c00356{bottom:129.421500px;}
.y1a_c00356{bottom:146.553000px;}
.y19_c00356{bottom:163.687500px;}
.y18_c00356{bottom:180.415500px;}
.y17_c00356{bottom:197.146500px;}
.y16_c00356{bottom:214.950000px;}
.y15_c00356{bottom:230.835000px;}
.y14_c00356{bottom:249.358500px;}
.y13_c00356{bottom:266.077500px;}
.y12_c00356{bottom:284.319000px;}
.y11_c00356{bottom:300.397500px;}
.y10_c00356{bottom:319.020000px;}
.yf_c00356{bottom:334.084500px;}
.ye_c00356{bottom:350.614500px;}
.yd_c00356{bottom:367.591500px;}
.yc_c00356{bottom:384.354000px;}
.yb_c00356{bottom:400.620000px;}
.ya_c00356{bottom:417.874500px;}
.y9_c00356{bottom:434.586000px;}
.y8_c00356{bottom:450.964500px;}
.y7_c00356{bottom:468.244500px;}
.y6_c00356{bottom:485.646000px;}
.y5_c00356{bottom:502.441500px;}
.y4_c00356{bottom:519.721500px;}
.y3_c00356{bottom:536.610000px;}
.y2_c00356{bottom:553.471500px;}
.y1_c00356{bottom:571.609500px;}
.h9_c00356{height:54.600000px;}
.h7_c00356{height:57.750000px;}
.ha_c00356{height:59.850000px;}
.h4_c00356{height:60.900000px;}
.hf_c00356{height:61.950000px;}
.hc_c00356{height:63.000000px;}
.hb_c00356{height:64.050000px;}
.h2_c00356{height:65.100000px;}
.he_c00356{height:66.150000px;}
.hd_c00356{height:68.250000px;}
.h6_c00356{height:69.300000px;}
.h8_c00356{height:70.350000px;}
.h3_c00356{height:72.450000px;}
.h5_c00356{height:73.500000px;}
.h0_c00356{height:613.170000px;}
.h1_c00356{height:613.500000px;}
.w0_c00356{width:359.100000px;}
.w1_c00356{width:359.250000px;}
.x0_c00356{left:0.000000px;}
.x44_c00356{left:10.530000px;}
.x3_c00356{left:18.630000px;}
.x11_c00356{left:19.710000px;}
.x1f_c00356{left:20.790000px;}
.x48_c00356{left:21.870000px;}
.x5f_c00356{left:22.950000px;}
.x63_c00356{left:24.030000px;}
.x7b_c00356{left:25.650000px;}
.x39_c00356{left:29.430000px;}
.x3e_c00356{left:32.940000px;}
.x12_c00356{left:42.390000px;}
.xa_c00356{left:43.470000px;}
.x4d_c00356{left:44.550000px;}
.x2c_c00356{left:46.710000px;}
.x4_c00356{left:49.140000px;}
.x25_c00356{left:52.920000px;}
.x5a_c00356{left:55.080000px;}
.x6e_c00356{left:58.590000px;}
.x50_c00356{left:60.480000px;}
.x83_c00356{left:64.800000px;}
.xb_c00356{left:65.880000px;}
.x20_c00356{left:67.770000px;}
.x2d_c00356{left:69.390000px;}
.x81_c00356{left:71.010000px;}
.x5_c00356{left:72.090000px;}
.x35_c00356{left:74.250000px;}
.x80_c00356{left:79.650000px;}
.x18_c00356{left:81.810000px;}
.x3f_c00356{left:83.160000px;}
.x75_c00356{left:85.050000px;}
.x55_c00356{left:86.400000px;}
.x6a_c00356{left:87.750000px;}
.x49_c00356{left:89.640000px;}
.x13_c00356{left:92.070000px;}
.x2e_c00356{left:93.150000px;}
.x36_c00356{left:95.040000px;}
.x3a_c00356{left:96.120000px;}
.x4e_c00356{left:99.630000px;}
.x19_c00356{left:102.870000px;}
.x14_c00356{left:105.570000px;}
.x31_c00356{left:108.540000px;}
.x26_c00356{left:109.890000px;}
.x70_c00356{left:110.970000px;}
.x4a_c00356{left:116.370000px;}
.x76_c00356{left:117.450000px;}
.x51_c00356{left:120.150000px;}
.xc_c00356{left:122.310000px;}
.x56_c00356{left:123.660000px;}
.x15_c00356{left:125.010000px;}
.x1a_c00356{left:127.170000px;}
.x64_c00356{left:129.600000px;}
.x32_c00356{left:130.680000px;}
.x6_c00356{left:132.840000px;}
.x5b_c00356{left:134.190000px;}
.x71_c00356{left:139.050000px;}
.x52_c00356{left:140.670000px;}
.x27_c00356{left:142.020000px;}
.x1_c00356{left:150.390000px;}
.x65_c00356{left:152.550000px;}
.x57_c00356{left:153.900000px;}
.x2f_c00356{left:157.410000px;}
.x28_c00356{left:158.490000px;}
.xd_c00356{left:160.380000px;}
.x3b_c00356{left:161.730000px;}
.x6b_c00356{left:165.510000px;}
.x53_c00356{left:166.860000px;}
.x45_c00356{left:168.750000px;}
.x21_c00356{left:171.450000px;}
.x30_c00356{left:175.770000px;}
.x84_c00356{left:180.360000px;}
.x4b_c00356{left:181.980000px;}
.x3c_c00356{left:183.060000px;}
.x37_c00356{left:184.680000px;}
.x66_c00356{left:187.650000px;}
.x46_c00356{left:188.730000px;}
.x4f_c00356{left:190.350000px;}
.x1b_c00356{left:191.700000px;}
.x7c_c00356{left:194.400000px;}
.x77_c00356{left:195.750000px;}
.x7_c00356{left:199.800000px;}
.x16_c00356{left:203.580000px;}
.x29_c00356{left:206.820000px;}
.x33_c00356{left:208.710000px;}
.x1c_c00356{left:210.330000px;}
.x7d_c00356{left:213.840000px;}
.x22_c00356{left:215.190000px;}
.x58_c00356{left:216.810000px;}
.x5c_c00356{left:218.430000px;}
.x78_c00356{left:219.510000px;}
.x60_c00356{left:220.590000px;}
.x2a_c00356{left:224.910000px;}
.x54_c00356{left:226.260000px;}
.x40_c00356{left:230.580000px;}
.x8_c00356{left:232.200000px;}
.x72_c00356{left:233.280000px;}
.x59_c00356{left:234.630000px;}
.xe_c00356{left:237.600000px;}
.x23_c00356{left:240.300000px;}
.x5d_c00356{left:241.920000px;}
.x41_c00356{left:243.810000px;}
.x7f_c00356{left:247.050000px;}
.x4c_c00356{left:249.750000px;}
.x1d_c00356{left:250.830000px;}
.x61_c00356{left:251.910000px;}
.x67_c00356{left:256.230000px;}
.x2_c00356{left:258.390000px;}
.x73_c00356{left:260.550000px;}
.x42_c00356{left:261.900000px;}
.x6c_c00356{left:263.520000px;}
.x3d_c00356{left:265.680000px;}
.xf_c00356{left:267.300000px;}
.x62_c00356{left:268.380000px;}
.x79_c00356{left:269.460000px;}
.x43_c00356{left:271.350000px;}
.x6f_c00356{left:273.510000px;}
.x68_c00356{left:274.590000px;}
.x47_c00356{left:278.370000px;}
.x1e_c00356{left:281.070000px;}
.x9_c00356{left:282.690000px;}
.x34_c00356{left:285.120000px;}
.x10_c00356{left:287.010000px;}
.x82_c00356{left:289.980000px;}
.x17_c00356{left:291.060000px;}
.x7a_c00356{left:294.840000px;}
.x24_c00356{left:297.000000px;}
.x2b_c00356{left:298.890000px;}
.x6d_c00356{left:301.050000px;}
.x74_c00356{left:304.020000px;}
.x69_c00356{left:306.720000px;}
.x7e_c00356{left:308.610000px;}
.x38_c00356{left:311.040000px;}
.x5e_c00356{left:312.930000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.fs7_c00356{font-size:48.533333pt;}
.fs5_c00356{font-size:51.333333pt;}
.fs8_c00356{font-size:53.200000pt;}
.fs2_c00356{font-size:54.133333pt;}
.fsd_c00356{font-size:55.066667pt;}
.fsa_c00356{font-size:56.000000pt;}
.fs9_c00356{font-size:56.933333pt;}
.fs0_c00356{font-size:57.866667pt;}
.fsc_c00356{font-size:58.800000pt;}
.fsb_c00356{font-size:60.666667pt;}
.fs4_c00356{font-size:61.600000pt;}
.fs6_c00356{font-size:62.533333pt;}
.fs1_c00356{font-size:64.400000pt;}
.fs3_c00356{font-size:65.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y22_c00356{bottom:9.924000pt;}
.y21_c00356{bottom:25.073333pt;}
.y20_c00356{bottom:39.900000pt;}
.y1f_c00356{bottom:54.992000pt;}
.y1e_c00356{bottom:70.272000pt;}
.y1d_c00356{bottom:84.454667pt;}
.y1c_c00356{bottom:99.900000pt;}
.y1b_c00356{bottom:115.041333pt;}
.y1a_c00356{bottom:130.269333pt;}
.y19_c00356{bottom:145.500000pt;}
.y18_c00356{bottom:160.369333pt;}
.y17_c00356{bottom:175.241333pt;}
.y16_c00356{bottom:191.066667pt;}
.y15_c00356{bottom:205.186667pt;}
.y14_c00356{bottom:221.652000pt;}
.y13_c00356{bottom:236.513333pt;}
.y12_c00356{bottom:252.728000pt;}
.y11_c00356{bottom:267.020000pt;}
.y10_c00356{bottom:283.573333pt;}
.yf_c00356{bottom:296.964000pt;}
.ye_c00356{bottom:311.657333pt;}
.yd_c00356{bottom:326.748000pt;}
.yc_c00356{bottom:341.648000pt;}
.yb_c00356{bottom:356.106667pt;}
.ya_c00356{bottom:371.444000pt;}
.y9_c00356{bottom:386.298667pt;}
.y8_c00356{bottom:400.857333pt;}
.y7_c00356{bottom:416.217333pt;}
.y6_c00356{bottom:431.685333pt;}
.y5_c00356{bottom:446.614667pt;}
.y4_c00356{bottom:461.974667pt;}
.y3_c00356{bottom:476.986667pt;}
.y2_c00356{bottom:491.974667pt;}
.y1_c00356{bottom:508.097333pt;}
.h9_c00356{height:48.533333pt;}
.h7_c00356{height:51.333333pt;}
.ha_c00356{height:53.200000pt;}
.h4_c00356{height:54.133333pt;}
.hf_c00356{height:55.066667pt;}
.hc_c00356{height:56.000000pt;}
.hb_c00356{height:56.933333pt;}
.h2_c00356{height:57.866667pt;}
.he_c00356{height:58.800000pt;}
.hd_c00356{height:60.666667pt;}
.h6_c00356{height:61.600000pt;}
.h8_c00356{height:62.533333pt;}
.h3_c00356{height:64.400000pt;}
.h5_c00356{height:65.333333pt;}
.h0_c00356{height:545.040000pt;}
.h1_c00356{height:545.333333pt;}
.w0_c00356{width:319.200000pt;}
.w1_c00356{width:319.333333pt;}
.x0_c00356{left:0.000000pt;}
.x44_c00356{left:9.360000pt;}
.x3_c00356{left:16.560000pt;}
.x11_c00356{left:17.520000pt;}
.x1f_c00356{left:18.480000pt;}
.x48_c00356{left:19.440000pt;}
.x5f_c00356{left:20.400000pt;}
.x63_c00356{left:21.360000pt;}
.x7b_c00356{left:22.800000pt;}
.x39_c00356{left:26.160000pt;}
.x3e_c00356{left:29.280000pt;}
.x12_c00356{left:37.680000pt;}
.xa_c00356{left:38.640000pt;}
.x4d_c00356{left:39.600000pt;}
.x2c_c00356{left:41.520000pt;}
.x4_c00356{left:43.680000pt;}
.x25_c00356{left:47.040000pt;}
.x5a_c00356{left:48.960000pt;}
.x6e_c00356{left:52.080000pt;}
.x50_c00356{left:53.760000pt;}
.x83_c00356{left:57.600000pt;}
.xb_c00356{left:58.560000pt;}
.x20_c00356{left:60.240000pt;}
.x2d_c00356{left:61.680000pt;}
.x81_c00356{left:63.120000pt;}
.x5_c00356{left:64.080000pt;}
.x35_c00356{left:66.000000pt;}
.x80_c00356{left:70.800000pt;}
.x18_c00356{left:72.720000pt;}
.x3f_c00356{left:73.920000pt;}
.x75_c00356{left:75.600000pt;}
.x55_c00356{left:76.800000pt;}
.x6a_c00356{left:78.000000pt;}
.x49_c00356{left:79.680000pt;}
.x13_c00356{left:81.840000pt;}
.x2e_c00356{left:82.800000pt;}
.x36_c00356{left:84.480000pt;}
.x3a_c00356{left:85.440000pt;}
.x4e_c00356{left:88.560000pt;}
.x19_c00356{left:91.440000pt;}
.x14_c00356{left:93.840000pt;}
.x31_c00356{left:96.480000pt;}
.x26_c00356{left:97.680000pt;}
.x70_c00356{left:98.640000pt;}
.x4a_c00356{left:103.440000pt;}
.x76_c00356{left:104.400000pt;}
.x51_c00356{left:106.800000pt;}
.xc_c00356{left:108.720000pt;}
.x56_c00356{left:109.920000pt;}
.x15_c00356{left:111.120000pt;}
.x1a_c00356{left:113.040000pt;}
.x64_c00356{left:115.200000pt;}
.x32_c00356{left:116.160000pt;}
.x6_c00356{left:118.080000pt;}
.x5b_c00356{left:119.280000pt;}
.x71_c00356{left:123.600000pt;}
.x52_c00356{left:125.040000pt;}
.x27_c00356{left:126.240000pt;}
.x1_c00356{left:133.680000pt;}
.x65_c00356{left:135.600000pt;}
.x57_c00356{left:136.800000pt;}
.x2f_c00356{left:139.920000pt;}
.x28_c00356{left:140.880000pt;}
.xd_c00356{left:142.560000pt;}
.x3b_c00356{left:143.760000pt;}
.x6b_c00356{left:147.120000pt;}
.x53_c00356{left:148.320000pt;}
.x45_c00356{left:150.000000pt;}
.x21_c00356{left:152.400000pt;}
.x30_c00356{left:156.240000pt;}
.x84_c00356{left:160.320000pt;}
.x4b_c00356{left:161.760000pt;}
.x3c_c00356{left:162.720000pt;}
.x37_c00356{left:164.160000pt;}
.x66_c00356{left:166.800000pt;}
.x46_c00356{left:167.760000pt;}
.x4f_c00356{left:169.200000pt;}
.x1b_c00356{left:170.400000pt;}
.x7c_c00356{left:172.800000pt;}
.x77_c00356{left:174.000000pt;}
.x7_c00356{left:177.600000pt;}
.x16_c00356{left:180.960000pt;}
.x29_c00356{left:183.840000pt;}
.x33_c00356{left:185.520000pt;}
.x1c_c00356{left:186.960000pt;}
.x7d_c00356{left:190.080000pt;}
.x22_c00356{left:191.280000pt;}
.x58_c00356{left:192.720000pt;}
.x5c_c00356{left:194.160000pt;}
.x78_c00356{left:195.120000pt;}
.x60_c00356{left:196.080000pt;}
.x2a_c00356{left:199.920000pt;}
.x54_c00356{left:201.120000pt;}
.x40_c00356{left:204.960000pt;}
.x8_c00356{left:206.400000pt;}
.x72_c00356{left:207.360000pt;}
.x59_c00356{left:208.560000pt;}
.xe_c00356{left:211.200000pt;}
.x23_c00356{left:213.600000pt;}
.x5d_c00356{left:215.040000pt;}
.x41_c00356{left:216.720000pt;}
.x7f_c00356{left:219.600000pt;}
.x4c_c00356{left:222.000000pt;}
.x1d_c00356{left:222.960000pt;}
.x61_c00356{left:223.920000pt;}
.x67_c00356{left:227.760000pt;}
.x2_c00356{left:229.680000pt;}
.x73_c00356{left:231.600000pt;}
.x42_c00356{left:232.800000pt;}
.x6c_c00356{left:234.240000pt;}
.x3d_c00356{left:236.160000pt;}
.xf_c00356{left:237.600000pt;}
.x62_c00356{left:238.560000pt;}
.x79_c00356{left:239.520000pt;}
.x43_c00356{left:241.200000pt;}
.x6f_c00356{left:243.120000pt;}
.x68_c00356{left:244.080000pt;}
.x47_c00356{left:247.440000pt;}
.x1e_c00356{left:249.840000pt;}
.x9_c00356{left:251.280000pt;}
.x34_c00356{left:253.440000pt;}
.x10_c00356{left:255.120000pt;}
.x82_c00356{left:257.760000pt;}
.x17_c00356{left:258.720000pt;}
.x7a_c00356{left:262.080000pt;}
.x24_c00356{left:264.000000pt;}
.x2b_c00356{left:265.680000pt;}
.x6d_c00356{left:267.600000pt;}
.x74_c00356{left:270.240000pt;}
.x69_c00356{left:272.640000pt;}
.x7e_c00356{left:274.320000pt;}
.x38_c00356{left:276.480000pt;}
.x5e_c00356{left:278.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00357 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c00357{transform:matrix(0.017157,-0.000532,0.007746,0.249880,0,0);-ms-transform:matrix(0.017157,-0.000532,0.007746,0.249880,0,0);-webkit-transform:matrix(0.017157,-0.000532,0.007746,0.249880,0,0);}
.m4d_c00357{transform:matrix(0.120917,-0.003748,0.007746,0.249880,0,0);-ms-transform:matrix(0.120917,-0.003748,0.007746,0.249880,0,0);-webkit-transform:matrix(0.120917,-0.003748,0.007746,0.249880,0,0);}
.mcd_c00357{transform:matrix(0.124670,-0.003865,0.007746,0.249880,0,0);-ms-transform:matrix(0.124670,-0.003865,0.007746,0.249880,0,0);-webkit-transform:matrix(0.124670,-0.003865,0.007746,0.249880,0,0);}
.m44_c00357{transform:matrix(0.125245,-0.003883,0.007746,0.249880,0,0);-ms-transform:matrix(0.125245,-0.003883,0.007746,0.249880,0,0);-webkit-transform:matrix(0.125245,-0.003883,0.007746,0.249880,0,0);}
.m7d_c00357{transform:matrix(0.135820,-0.004210,0.007746,0.249880,0,0);-ms-transform:matrix(0.135820,-0.004210,0.007746,0.249880,0,0);-webkit-transform:matrix(0.135820,-0.004210,0.007746,0.249880,0,0);}
.m93_c00357{transform:matrix(0.141372,-0.004383,0.007746,0.249880,0,0);-ms-transform:matrix(0.141372,-0.004383,0.007746,0.249880,0,0);-webkit-transform:matrix(0.141372,-0.004383,0.007746,0.249880,0,0);}
.md4_c00357{transform:matrix(0.143856,-0.004460,0.007746,0.249880,0,0);-ms-transform:matrix(0.143856,-0.004460,0.007746,0.249880,0,0);-webkit-transform:matrix(0.143856,-0.004460,0.007746,0.249880,0,0);}
.m43_c00357{transform:matrix(0.146370,-0.004537,0.007746,0.249880,0,0);-ms-transform:matrix(0.146370,-0.004537,0.007746,0.249880,0,0);-webkit-transform:matrix(0.146370,-0.004537,0.007746,0.249880,0,0);}
.m97_c00357{transform:matrix(0.146700,-0.004548,0.007746,0.249880,0,0);-ms-transform:matrix(0.146700,-0.004548,0.007746,0.249880,0,0);-webkit-transform:matrix(0.146700,-0.004548,0.007746,0.249880,0,0);}
.md6_c00357{transform:matrix(0.147024,-0.004558,0.007746,0.249880,0,0);-ms-transform:matrix(0.147024,-0.004558,0.007746,0.249880,0,0);-webkit-transform:matrix(0.147024,-0.004558,0.007746,0.249880,0,0);}
.mc7_c00357{transform:matrix(0.147259,-0.004565,0.007746,0.249880,0,0);-ms-transform:matrix(0.147259,-0.004565,0.007746,0.249880,0,0);-webkit-transform:matrix(0.147259,-0.004565,0.007746,0.249880,0,0);}
.mc8_c00357{transform:matrix(0.147784,-0.004581,0.007746,0.249880,0,0);-ms-transform:matrix(0.147784,-0.004581,0.007746,0.249880,0,0);-webkit-transform:matrix(0.147784,-0.004581,0.007746,0.249880,0,0);}
.ma_c00357{transform:matrix(0.148114,-0.004592,0.007746,0.249880,0,0);-ms-transform:matrix(0.148114,-0.004592,0.007746,0.249880,0,0);-webkit-transform:matrix(0.148114,-0.004592,0.007746,0.249880,0,0);}
.m26_c00357{transform:matrix(0.149178,-0.004625,0.007746,0.249880,0,0);-ms-transform:matrix(0.149178,-0.004625,0.007746,0.249880,0,0);-webkit-transform:matrix(0.149178,-0.004625,0.007746,0.249880,0,0);}
.m5f_c00357{transform:matrix(0.150453,-0.004664,0.007746,0.249880,0,0);-ms-transform:matrix(0.150453,-0.004664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.150453,-0.004664,0.007746,0.249880,0,0);}
.m6d_c00357{transform:matrix(0.151047,-0.004682,0.007746,0.249880,0,0);-ms-transform:matrix(0.151047,-0.004682,0.007746,0.249880,0,0);-webkit-transform:matrix(0.151047,-0.004682,0.007746,0.249880,0,0);}
.mc5_c00357{transform:matrix(0.151232,-0.004688,0.007746,0.249880,0,0);-ms-transform:matrix(0.151232,-0.004688,0.007746,0.249880,0,0);-webkit-transform:matrix(0.151232,-0.004688,0.007746,0.249880,0,0);}
.m68_c00357{transform:matrix(0.152632,-0.004732,0.007746,0.249880,0,0);-ms-transform:matrix(0.152632,-0.004732,0.007746,0.249880,0,0);-webkit-transform:matrix(0.152632,-0.004732,0.007746,0.249880,0,0);}
.mac_c00357{transform:matrix(0.153576,-0.004761,0.007746,0.249880,0,0);-ms-transform:matrix(0.153576,-0.004761,0.007746,0.249880,0,0);-webkit-transform:matrix(0.153576,-0.004761,0.007746,0.249880,0,0);}
.md7_c00357{transform:matrix(0.154746,-0.004797,0.007746,0.249880,0,0);-ms-transform:matrix(0.154746,-0.004797,0.007746,0.249880,0,0);-webkit-transform:matrix(0.154746,-0.004797,0.007746,0.249880,0,0);}
.m28_c00357{transform:matrix(0.155470,-0.004820,0.007746,0.249880,0,0);-ms-transform:matrix(0.155470,-0.004820,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155470,-0.004820,0.007746,0.249880,0,0);}
.maf_c00357{transform:matrix(0.157030,-0.004868,0.007746,0.249880,0,0);-ms-transform:matrix(0.157030,-0.004868,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157030,-0.004868,0.007746,0.249880,0,0);}
.mde_c00357{transform:matrix(0.159119,-0.004933,0.007746,0.249880,0,0);-ms-transform:matrix(0.159119,-0.004933,0.007746,0.249880,0,0);-webkit-transform:matrix(0.159119,-0.004933,0.007746,0.249880,0,0);}
.m9d_c00357{transform:matrix(0.160023,-0.004961,0.007746,0.249880,0,0);-ms-transform:matrix(0.160023,-0.004961,0.007746,0.249880,0,0);-webkit-transform:matrix(0.160023,-0.004961,0.007746,0.249880,0,0);}
.mcb_c00357{transform:matrix(0.160228,-0.004967,0.007746,0.249880,0,0);-ms-transform:matrix(0.160228,-0.004967,0.007746,0.249880,0,0);-webkit-transform:matrix(0.160228,-0.004967,0.007746,0.249880,0,0);}
.m57_c00357{transform:matrix(0.160333,-0.004970,0.007746,0.249880,0,0);-ms-transform:matrix(0.160333,-0.004970,0.007746,0.249880,0,0);-webkit-transform:matrix(0.160333,-0.004970,0.007746,0.249880,0,0);}
.mda_c00357{transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);-ms-transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);}
.m34_c00357{transform:matrix(0.161288,-0.005000,0.007746,0.249880,0,0);-ms-transform:matrix(0.161288,-0.005000,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161288,-0.005000,0.007746,0.249880,0,0);}
.m47_c00357{transform:matrix(0.163481,-0.005068,0.007746,0.249880,0,0);-ms-transform:matrix(0.163481,-0.005068,0.007746,0.249880,0,0);-webkit-transform:matrix(0.163481,-0.005068,0.007746,0.249880,0,0);}
.maa_c00357{transform:matrix(0.164401,-0.005096,0.007746,0.249880,0,0);-ms-transform:matrix(0.164401,-0.005096,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164401,-0.005096,0.007746,0.249880,0,0);}
.m22_c00357{transform:matrix(0.164421,-0.005097,0.007746,0.249880,0,0);-ms-transform:matrix(0.164421,-0.005097,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164421,-0.005097,0.007746,0.249880,0,0);}
.m5a_c00357{transform:matrix(0.164826,-0.005110,0.007746,0.249880,0,0);-ms-transform:matrix(0.164826,-0.005110,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164826,-0.005110,0.007746,0.249880,0,0);}
.m19_c00357{transform:matrix(0.165935,-0.005144,0.007746,0.249880,0,0);-ms-transform:matrix(0.165935,-0.005144,0.007746,0.249880,0,0);-webkit-transform:matrix(0.165935,-0.005144,0.007746,0.249880,0,0);}
.mc9_c00357{transform:matrix(0.166660,-0.005166,0.007746,0.249880,0,0);-ms-transform:matrix(0.166660,-0.005166,0.007746,0.249880,0,0);-webkit-transform:matrix(0.166660,-0.005166,0.007746,0.249880,0,0);}
.m62_c00357{transform:matrix(0.167565,-0.005194,0.007746,0.249880,0,0);-ms-transform:matrix(0.167565,-0.005194,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167565,-0.005194,0.007746,0.249880,0,0);}
.m5d_c00357{transform:matrix(0.167574,-0.005195,0.007746,0.249880,0,0);-ms-transform:matrix(0.167574,-0.005195,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167574,-0.005195,0.007746,0.249880,0,0);}
.m15_c00357{transform:matrix(0.167729,-0.005200,0.007746,0.249880,0,0);-ms-transform:matrix(0.167729,-0.005200,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167729,-0.005200,0.007746,0.249880,0,0);}
.m31_c00357{transform:matrix(0.167774,-0.005201,0.007746,0.249880,0,0);-ms-transform:matrix(0.167774,-0.005201,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167774,-0.005201,0.007746,0.249880,0,0);}
.m0_c00357{transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);}
.m66_c00357{transform:matrix(0.169678,-0.005260,0.007746,0.249880,0,0);-ms-transform:matrix(0.169678,-0.005260,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169678,-0.005260,0.007746,0.249880,0,0);}
.m9_c00357{transform:matrix(0.170403,-0.005282,0.007746,0.249880,0,0);-ms-transform:matrix(0.170403,-0.005282,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170403,-0.005282,0.007746,0.249880,0,0);}
.m10_c00357{transform:matrix(0.170408,-0.005283,0.007746,0.249880,0,0);-ms-transform:matrix(0.170408,-0.005283,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170408,-0.005283,0.007746,0.249880,0,0);}
.mdf_c00357{transform:matrix(0.171173,-0.005306,0.007746,0.249880,0,0);-ms-transform:matrix(0.171173,-0.005306,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171173,-0.005306,0.007746,0.249880,0,0);}
.mca_c00357{transform:matrix(0.171393,-0.005313,0.007746,0.249880,0,0);-ms-transform:matrix(0.171393,-0.005313,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171393,-0.005313,0.007746,0.249880,0,0);}
.m27_c00357{transform:matrix(0.171987,-0.005332,0.007746,0.249880,0,0);-ms-transform:matrix(0.171987,-0.005332,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171987,-0.005332,0.007746,0.249880,0,0);}
.m69_c00357{transform:matrix(0.172037,-0.005333,0.007746,0.249880,0,0);-ms-transform:matrix(0.172037,-0.005333,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172037,-0.005333,0.007746,0.249880,0,0);}
.m9c_c00357{transform:matrix(0.172602,-0.005351,0.007746,0.249880,0,0);-ms-transform:matrix(0.172602,-0.005351,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172602,-0.005351,0.007746,0.249880,0,0);}
.mbe_c00357{transform:matrix(0.172712,-0.005354,0.007746,0.249880,0,0);-ms-transform:matrix(0.172712,-0.005354,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172712,-0.005354,0.007746,0.249880,0,0);}
.m33_c00357{transform:matrix(0.173252,-0.005371,0.007746,0.249880,0,0);-ms-transform:matrix(0.173252,-0.005371,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173252,-0.005371,0.007746,0.249880,0,0);}
.mc4_c00357{transform:matrix(0.173562,-0.005380,0.007746,0.249880,0,0);-ms-transform:matrix(0.173562,-0.005380,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173562,-0.005380,0.007746,0.249880,0,0);}
.mcc_c00357{transform:matrix(0.173582,-0.005381,0.007746,0.249880,0,0);-ms-transform:matrix(0.173582,-0.005381,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173582,-0.005381,0.007746,0.249880,0,0);}
.m45_c00357{transform:matrix(0.173587,-0.005381,0.007746,0.249880,0,0);-ms-transform:matrix(0.173587,-0.005381,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173587,-0.005381,0.007746,0.249880,0,0);}
.m24_c00357{transform:matrix(0.173627,-0.005382,0.007746,0.249880,0,0);-ms-transform:matrix(0.173627,-0.005382,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173627,-0.005382,0.007746,0.249880,0,0);}
.m56_c00357{transform:matrix(0.173831,-0.005389,0.007746,0.249880,0,0);-ms-transform:matrix(0.173831,-0.005389,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173831,-0.005389,0.007746,0.249880,0,0);}
.me5_c00357{transform:matrix(0.174711,-0.005416,0.007746,0.249880,0,0);-ms-transform:matrix(0.174711,-0.005416,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174711,-0.005416,0.007746,0.249880,0,0);}
.mc3_c00357{transform:matrix(0.174791,-0.005419,0.007746,0.249880,0,0);-ms-transform:matrix(0.174791,-0.005419,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174791,-0.005419,0.007746,0.249880,0,0);}
.mc2_c00357{transform:matrix(0.175671,-0.005446,0.007746,0.249880,0,0);-ms-transform:matrix(0.175671,-0.005446,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175671,-0.005446,0.007746,0.249880,0,0);}
.m35_c00357{transform:matrix(0.175975,-0.005455,0.007746,0.249880,0,0);-ms-transform:matrix(0.175975,-0.005455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175975,-0.005455,0.007746,0.249880,0,0);}
.m78_c00357{transform:matrix(0.176390,-0.005468,0.007746,0.249880,0,0);-ms-transform:matrix(0.176390,-0.005468,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176390,-0.005468,0.007746,0.249880,0,0);}
.md1_c00357{transform:matrix(0.176710,-0.005478,0.007746,0.249880,0,0);-ms-transform:matrix(0.176710,-0.005478,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176710,-0.005478,0.007746,0.249880,0,0);}
.md2_c00357{transform:matrix(0.176795,-0.005481,0.007746,0.249880,0,0);-ms-transform:matrix(0.176795,-0.005481,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176795,-0.005481,0.007746,0.249880,0,0);}
.m23_c00357{transform:matrix(0.176985,-0.005487,0.007746,0.249880,0,0);-ms-transform:matrix(0.176985,-0.005487,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176985,-0.005487,0.007746,0.249880,0,0);}
.mce_c00357{transform:matrix(0.176990,-0.005487,0.007746,0.249880,0,0);-ms-transform:matrix(0.176990,-0.005487,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176990,-0.005487,0.007746,0.249880,0,0);}
.m3b_c00357{transform:matrix(0.177020,-0.005488,0.007746,0.249880,0,0);-ms-transform:matrix(0.177020,-0.005488,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177020,-0.005488,0.007746,0.249880,0,0);}
.m95_c00357{transform:matrix(0.177645,-0.005507,0.007746,0.249880,0,0);-ms-transform:matrix(0.177645,-0.005507,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177645,-0.005507,0.007746,0.249880,0,0);}
.md3_c00357{transform:matrix(0.177810,-0.005512,0.007746,0.249880,0,0);-ms-transform:matrix(0.177810,-0.005512,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177810,-0.005512,0.007746,0.249880,0,0);}
.m58_c00357{transform:matrix(0.177915,-0.005515,0.007746,0.249880,0,0);-ms-transform:matrix(0.177915,-0.005515,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177915,-0.005515,0.007746,0.249880,0,0);}
.m5e_c00357{transform:matrix(0.178434,-0.005531,0.007746,0.249880,0,0);-ms-transform:matrix(0.178434,-0.005531,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178434,-0.005531,0.007746,0.249880,0,0);}
.m67_c00357{transform:matrix(0.179034,-0.005550,0.007746,0.249880,0,0);-ms-transform:matrix(0.179034,-0.005550,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179034,-0.005550,0.007746,0.249880,0,0);}
.m96_c00357{transform:matrix(0.179209,-0.005555,0.007746,0.249880,0,0);-ms-transform:matrix(0.179209,-0.005555,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179209,-0.005555,0.007746,0.249880,0,0);}
.m3_c00357{transform:matrix(0.179824,-0.005575,0.007746,0.249880,0,0);-ms-transform:matrix(0.179824,-0.005575,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179824,-0.005575,0.007746,0.249880,0,0);}
.m5c_c00357{transform:matrix(0.179979,-0.005579,0.007746,0.249880,0,0);-ms-transform:matrix(0.179979,-0.005579,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179979,-0.005579,0.007746,0.249880,0,0);}
.mc6_c00357{transform:matrix(0.180004,-0.005580,0.007746,0.249880,0,0);-ms-transform:matrix(0.180004,-0.005580,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180004,-0.005580,0.007746,0.249880,0,0);}
.md5_c00357{transform:matrix(0.180338,-0.005590,0.007746,0.249880,0,0);-ms-transform:matrix(0.180338,-0.005590,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180338,-0.005590,0.007746,0.249880,0,0);}
.me7_c00357{transform:matrix(0.180628,-0.005599,0.007746,0.249880,0,0);-ms-transform:matrix(0.180628,-0.005599,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180628,-0.005599,0.007746,0.249880,0,0);}
.m77_c00357{transform:matrix(0.180688,-0.005601,0.007746,0.249880,0,0);-ms-transform:matrix(0.180688,-0.005601,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180688,-0.005601,0.007746,0.249880,0,0);}
.m92_c00357{transform:matrix(0.181278,-0.005620,0.007746,0.249880,0,0);-ms-transform:matrix(0.181278,-0.005620,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181278,-0.005620,0.007746,0.249880,0,0);}
.mad_c00357{transform:matrix(0.181283,-0.005620,0.007746,0.249880,0,0);-ms-transform:matrix(0.181283,-0.005620,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181283,-0.005620,0.007746,0.249880,0,0);}
.m6e_c00357{transform:matrix(0.181378,-0.005623,0.007746,0.249880,0,0);-ms-transform:matrix(0.181378,-0.005623,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181378,-0.005623,0.007746,0.249880,0,0);}
.m38_c00357{transform:matrix(0.182712,-0.005664,0.007746,0.249880,0,0);-ms-transform:matrix(0.182712,-0.005664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182712,-0.005664,0.007746,0.249880,0,0);}
.me2_c00357{transform:matrix(0.182872,-0.005669,0.007746,0.249880,0,0);-ms-transform:matrix(0.182872,-0.005669,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182872,-0.005669,0.007746,0.249880,0,0);}
.me0_c00357{transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);-ms-transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);}
.mbb_c00357{transform:matrix(0.183247,-0.005681,0.007746,0.249880,0,0);-ms-transform:matrix(0.183247,-0.005681,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183247,-0.005681,0.007746,0.249880,0,0);}
.mab_c00357{transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);-ms-transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);}
.m98_c00357{transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);-ms-transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);}
.m91_c00357{transform:matrix(0.184162,-0.005709,0.007746,0.249880,0,0);-ms-transform:matrix(0.184162,-0.005709,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184162,-0.005709,0.007746,0.249880,0,0);}
.m80_c00357{transform:matrix(0.184531,-0.005720,0.007746,0.249880,0,0);-ms-transform:matrix(0.184531,-0.005720,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184531,-0.005720,0.007746,0.249880,0,0);}
.mc1_c00357{transform:matrix(0.184731,-0.005727,0.007746,0.249880,0,0);-ms-transform:matrix(0.184731,-0.005727,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184731,-0.005727,0.007746,0.249880,0,0);}
.mb3_c00357{transform:matrix(0.184941,-0.005733,0.007746,0.249880,0,0);-ms-transform:matrix(0.184941,-0.005733,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184941,-0.005733,0.007746,0.249880,0,0);}
.m87_c00357{transform:matrix(0.185366,-0.005746,0.007746,0.249880,0,0);-ms-transform:matrix(0.185366,-0.005746,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185366,-0.005746,0.007746,0.249880,0,0);}
.m81_c00357{transform:matrix(0.185821,-0.005760,0.007746,0.249880,0,0);-ms-transform:matrix(0.185821,-0.005760,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185821,-0.005760,0.007746,0.249880,0,0);}
.me3_c00357{transform:matrix(0.186101,-0.005769,0.007746,0.249880,0,0);-ms-transform:matrix(0.186101,-0.005769,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186101,-0.005769,0.007746,0.249880,0,0);}
.m4a_c00357{transform:matrix(0.186415,-0.005779,0.007746,0.249880,0,0);-ms-transform:matrix(0.186415,-0.005779,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186415,-0.005779,0.007746,0.249880,0,0);}
.m3a_c00357{transform:matrix(0.186445,-0.005780,0.007746,0.249880,0,0);-ms-transform:matrix(0.186445,-0.005780,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186445,-0.005780,0.007746,0.249880,0,0);}
.m64_c00357{transform:matrix(0.186995,-0.005797,0.007746,0.249880,0,0);-ms-transform:matrix(0.186995,-0.005797,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186995,-0.005797,0.007746,0.249880,0,0);}
.m1b_c00357{transform:matrix(0.187140,-0.005801,0.007746,0.249880,0,0);-ms-transform:matrix(0.187140,-0.005801,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187140,-0.005801,0.007746,0.249880,0,0);}
.ma8_c00357{transform:matrix(0.187200,-0.005803,0.007746,0.249880,0,0);-ms-transform:matrix(0.187200,-0.005803,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187200,-0.005803,0.007746,0.249880,0,0);}
.m4b_c00357{transform:matrix(0.187665,-0.005818,0.007746,0.249880,0,0);-ms-transform:matrix(0.187665,-0.005818,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187665,-0.005818,0.007746,0.249880,0,0);}
.me_c00357{transform:matrix(0.187835,-0.005823,0.007746,0.249880,0,0);-ms-transform:matrix(0.187835,-0.005823,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187835,-0.005823,0.007746,0.249880,0,0);}
.ma6_c00357{transform:matrix(0.188090,-0.005831,0.007746,0.249880,0,0);-ms-transform:matrix(0.188090,-0.005831,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188090,-0.005831,0.007746,0.249880,0,0);}
.m65_c00357{transform:matrix(0.189049,-0.005861,0.007746,0.249880,0,0);-ms-transform:matrix(0.189049,-0.005861,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189049,-0.005861,0.007746,0.249880,0,0);}
.me8_c00357{transform:matrix(0.189089,-0.005862,0.007746,0.249880,0,0);-ms-transform:matrix(0.189089,-0.005862,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189089,-0.005862,0.007746,0.249880,0,0);}
.m9b_c00357{transform:matrix(0.189169,-0.005864,0.007746,0.249880,0,0);-ms-transform:matrix(0.189169,-0.005864,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189169,-0.005864,0.007746,0.249880,0,0);}
.m94_c00357{transform:matrix(0.189344,-0.005870,0.007746,0.249880,0,0);-ms-transform:matrix(0.189344,-0.005870,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189344,-0.005870,0.007746,0.249880,0,0);}
.m6b_c00357{transform:matrix(0.189349,-0.005870,0.007746,0.249880,0,0);-ms-transform:matrix(0.189349,-0.005870,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189349,-0.005870,0.007746,0.249880,0,0);}
.m36_c00357{transform:matrix(0.189679,-0.005880,0.007746,0.249880,0,0);-ms-transform:matrix(0.189679,-0.005880,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189679,-0.005880,0.007746,0.249880,0,0);}
.m8a_c00357{transform:matrix(0.189704,-0.005881,0.007746,0.249880,0,0);-ms-transform:matrix(0.189704,-0.005881,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189704,-0.005881,0.007746,0.249880,0,0);}
.m39_c00357{transform:matrix(0.190379,-0.005902,0.007746,0.249880,0,0);-ms-transform:matrix(0.190379,-0.005902,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190379,-0.005902,0.007746,0.249880,0,0);}
.m6a_c00357{transform:matrix(0.191283,-0.005930,0.007746,0.249880,0,0);-ms-transform:matrix(0.191283,-0.005930,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191283,-0.005930,0.007746,0.249880,0,0);}
.mb2_c00357{transform:matrix(0.191678,-0.005942,0.007746,0.249880,0,0);-ms-transform:matrix(0.191678,-0.005942,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191678,-0.005942,0.007746,0.249880,0,0);}
.me1_c00357{transform:matrix(0.191713,-0.005943,0.007746,0.249880,0,0);-ms-transform:matrix(0.191713,-0.005943,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191713,-0.005943,0.007746,0.249880,0,0);}
.mbf_c00357{transform:matrix(0.191838,-0.005947,0.007746,0.249880,0,0);-ms-transform:matrix(0.191838,-0.005947,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191838,-0.005947,0.007746,0.249880,0,0);}
.m17_c00357{transform:matrix(0.192358,-0.005963,0.007746,0.249880,0,0);-ms-transform:matrix(0.192358,-0.005963,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192358,-0.005963,0.007746,0.249880,0,0);}
.m9a_c00357{transform:matrix(0.192523,-0.005968,0.007746,0.249880,0,0);-ms-transform:matrix(0.192523,-0.005968,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192523,-0.005968,0.007746,0.249880,0,0);}
.md8_c00357{transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);-ms-transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192932,-0.005981,0.007746,0.249880,0,0);}
.m12_c00357{transform:matrix(0.193267,-0.005991,0.007746,0.249880,0,0);-ms-transform:matrix(0.193267,-0.005991,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193267,-0.005991,0.007746,0.249880,0,0);}
.mcf_c00357{transform:matrix(0.193752,-0.006006,0.007746,0.249880,0,0);-ms-transform:matrix(0.193752,-0.006006,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193752,-0.006006,0.007746,0.249880,0,0);}
.m70_c00357{transform:matrix(0.193887,-0.006010,0.007746,0.249880,0,0);-ms-transform:matrix(0.193887,-0.006010,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193887,-0.006010,0.007746,0.249880,0,0);}
.m11_c00357{transform:matrix(0.194646,-0.006034,0.007746,0.249880,0,0);-ms-transform:matrix(0.194646,-0.006034,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194646,-0.006034,0.007746,0.249880,0,0);}
.mae_c00357{transform:matrix(0.194721,-0.006036,0.007746,0.249880,0,0);-ms-transform:matrix(0.194721,-0.006036,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194721,-0.006036,0.007746,0.249880,0,0);}
.m7a_c00357{transform:matrix(0.194991,-0.006045,0.007746,0.249880,0,0);-ms-transform:matrix(0.194991,-0.006045,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194991,-0.006045,0.007746,0.249880,0,0);}
.mb4_c00357{transform:matrix(0.195081,-0.006048,0.007746,0.249880,0,0);-ms-transform:matrix(0.195081,-0.006048,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195081,-0.006048,0.007746,0.249880,0,0);}
.m6f_c00357{transform:matrix(0.195106,-0.006048,0.007746,0.249880,0,0);-ms-transform:matrix(0.195106,-0.006048,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195106,-0.006048,0.007746,0.249880,0,0);}
.md0_c00357{transform:matrix(0.195606,-0.006064,0.007746,0.249880,0,0);-ms-transform:matrix(0.195606,-0.006064,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195606,-0.006064,0.007746,0.249880,0,0);}
.m16_c00357{transform:matrix(0.196396,-0.006088,0.007746,0.249880,0,0);-ms-transform:matrix(0.196396,-0.006088,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196396,-0.006088,0.007746,0.249880,0,0);}
.m54_c00357{transform:matrix(0.196501,-0.006092,0.007746,0.249880,0,0);-ms-transform:matrix(0.196501,-0.006092,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196501,-0.006092,0.007746,0.249880,0,0);}
.m3c_c00357{transform:matrix(0.196895,-0.006104,0.007746,0.249880,0,0);-ms-transform:matrix(0.196895,-0.006104,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196895,-0.006104,0.007746,0.249880,0,0);}
.m4c_c00357{transform:matrix(0.196975,-0.006106,0.007746,0.249880,0,0);-ms-transform:matrix(0.196975,-0.006106,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196975,-0.006106,0.007746,0.249880,0,0);}
.mf_c00357{transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);-ms-transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197150,-0.006112,0.007746,0.249880,0,0);}
.mb0_c00357{transform:matrix(0.197615,-0.006126,0.007746,0.249880,0,0);-ms-transform:matrix(0.197615,-0.006126,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197615,-0.006126,0.007746,0.249880,0,0);}
.m82_c00357{transform:matrix(0.197660,-0.006127,0.007746,0.249880,0,0);-ms-transform:matrix(0.197660,-0.006127,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197660,-0.006127,0.007746,0.249880,0,0);}
.ma2_c00357{transform:matrix(0.197730,-0.006130,0.007746,0.249880,0,0);-ms-transform:matrix(0.197730,-0.006130,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197730,-0.006130,0.007746,0.249880,0,0);}
.m48_c00357{transform:matrix(0.198395,-0.006150,0.007746,0.249880,0,0);-ms-transform:matrix(0.198395,-0.006150,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198395,-0.006150,0.007746,0.249880,0,0);}
.m25_c00357{transform:matrix(0.198425,-0.006151,0.007746,0.249880,0,0);-ms-transform:matrix(0.198425,-0.006151,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198425,-0.006151,0.007746,0.249880,0,0);}
.m5b_c00357{transform:matrix(0.198580,-0.006156,0.007746,0.249880,0,0);-ms-transform:matrix(0.198580,-0.006156,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198580,-0.006156,0.007746,0.249880,0,0);}
.m79_c00357{transform:matrix(0.198889,-0.006166,0.007746,0.249880,0,0);-ms-transform:matrix(0.198889,-0.006166,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198889,-0.006166,0.007746,0.249880,0,0);}
.me6_c00357{transform:matrix(0.200444,-0.006214,0.007746,0.249880,0,0);-ms-transform:matrix(0.200444,-0.006214,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200444,-0.006214,0.007746,0.249880,0,0);}
.ma9_c00357{transform:matrix(0.200769,-0.006224,0.007746,0.249880,0,0);-ms-transform:matrix(0.200769,-0.006224,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200769,-0.006224,0.007746,0.249880,0,0);}
.me4_c00357{transform:matrix(0.201628,-0.006250,0.007746,0.249880,0,0);-ms-transform:matrix(0.201628,-0.006250,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201628,-0.006250,0.007746,0.249880,0,0);}
.m6_c00357{transform:matrix(0.202253,-0.006270,0.007746,0.249880,0,0);-ms-transform:matrix(0.202253,-0.006270,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202253,-0.006270,0.007746,0.249880,0,0);}
.mba_c00357{transform:matrix(0.202353,-0.006273,0.007746,0.249880,0,0);-ms-transform:matrix(0.202353,-0.006273,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202353,-0.006273,0.007746,0.249880,0,0);}
.mdd_c00357{transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);-ms-transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);}
.m86_c00357{transform:matrix(0.203207,-0.006299,0.007746,0.249880,0,0);-ms-transform:matrix(0.203207,-0.006299,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203207,-0.006299,0.007746,0.249880,0,0);}
.m29_c00357{transform:matrix(0.203617,-0.006312,0.007746,0.249880,0,0);-ms-transform:matrix(0.203617,-0.006312,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203617,-0.006312,0.007746,0.249880,0,0);}
.mb1_c00357{transform:matrix(0.204042,-0.006325,0.007746,0.249880,0,0);-ms-transform:matrix(0.204042,-0.006325,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204042,-0.006325,0.007746,0.249880,0,0);}
.m32_c00357{transform:matrix(0.204837,-0.006350,0.007746,0.249880,0,0);-ms-transform:matrix(0.204837,-0.006350,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204837,-0.006350,0.007746,0.249880,0,0);}
.m84_c00357{transform:matrix(0.205326,-0.006365,0.007746,0.249880,0,0);-ms-transform:matrix(0.205326,-0.006365,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205326,-0.006365,0.007746,0.249880,0,0);}
.m60_c00357{transform:matrix(0.205411,-0.006368,0.007746,0.249880,0,0);-ms-transform:matrix(0.205411,-0.006368,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205411,-0.006368,0.007746,0.249880,0,0);}
.mbc_c00357{transform:matrix(0.205461,-0.006369,0.007746,0.249880,0,0);-ms-transform:matrix(0.205461,-0.006369,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205461,-0.006369,0.007746,0.249880,0,0);}
.m71_c00357{transform:matrix(0.205796,-0.006380,0.007746,0.249880,0,0);-ms-transform:matrix(0.205796,-0.006380,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205796,-0.006380,0.007746,0.249880,0,0);}
.m40_c00357{transform:matrix(0.206331,-0.006396,0.007746,0.249880,0,0);-ms-transform:matrix(0.206331,-0.006396,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206331,-0.006396,0.007746,0.249880,0,0);}
.m59_c00357{transform:matrix(0.206456,-0.006400,0.007746,0.249880,0,0);-ms-transform:matrix(0.206456,-0.006400,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206456,-0.006400,0.007746,0.249880,0,0);}
.m85_c00357{transform:matrix(0.206701,-0.006408,0.007746,0.249880,0,0);-ms-transform:matrix(0.206701,-0.006408,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206701,-0.006408,0.007746,0.249880,0,0);}
.m72_c00357{transform:matrix(0.206721,-0.006408,0.007746,0.249880,0,0);-ms-transform:matrix(0.206721,-0.006408,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206721,-0.006408,0.007746,0.249880,0,0);}
.m6c_c00357{transform:matrix(0.207061,-0.006419,0.007746,0.249880,0,0);-ms-transform:matrix(0.207061,-0.006419,0.007746,0.249880,0,0);-webkit-transform:matrix(0.207061,-0.006419,0.007746,0.249880,0,0);}
.md_c00357{transform:matrix(0.207405,-0.006430,0.007746,0.249880,0,0);-ms-transform:matrix(0.207405,-0.006430,0.007746,0.249880,0,0);-webkit-transform:matrix(0.207405,-0.006430,0.007746,0.249880,0,0);}
.m7e_c00357{transform:matrix(0.207775,-0.006441,0.007746,0.249880,0,0);-ms-transform:matrix(0.207775,-0.006441,0.007746,0.249880,0,0);-webkit-transform:matrix(0.207775,-0.006441,0.007746,0.249880,0,0);}
.m42_c00357{transform:matrix(0.208160,-0.006453,0.007746,0.249880,0,0);-ms-transform:matrix(0.208160,-0.006453,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208160,-0.006453,0.007746,0.249880,0,0);}
.m18_c00357{transform:matrix(0.208165,-0.006453,0.007746,0.249880,0,0);-ms-transform:matrix(0.208165,-0.006453,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208165,-0.006453,0.007746,0.249880,0,0);}
.m8e_c00357{transform:matrix(0.208220,-0.006455,0.007746,0.249880,0,0);-ms-transform:matrix(0.208220,-0.006455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208220,-0.006455,0.007746,0.249880,0,0);}
.m30_c00357{transform:matrix(0.208515,-0.006464,0.007746,0.249880,0,0);-ms-transform:matrix(0.208515,-0.006464,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208515,-0.006464,0.007746,0.249880,0,0);}
.mbd_c00357{transform:matrix(0.208700,-0.006470,0.007746,0.249880,0,0);-ms-transform:matrix(0.208700,-0.006470,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208700,-0.006470,0.007746,0.249880,0,0);}
.m21_c00357{transform:matrix(0.208895,-0.006476,0.007746,0.249880,0,0);-ms-transform:matrix(0.208895,-0.006476,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208895,-0.006476,0.007746,0.249880,0,0);}
.m1a_c00357{transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);-ms-transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209080,-0.006481,0.007746,0.249880,0,0);}
.m99_c00357{transform:matrix(0.210864,-0.006537,0.007746,0.249880,0,0);-ms-transform:matrix(0.210864,-0.006537,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210864,-0.006537,0.007746,0.249880,0,0);}
.mc_c00357{transform:matrix(0.211109,-0.006544,0.007746,0.249880,0,0);-ms-transform:matrix(0.211109,-0.006544,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211109,-0.006544,0.007746,0.249880,0,0);}
.m7b_c00357{transform:matrix(0.211134,-0.006545,0.007746,0.249880,0,0);-ms-transform:matrix(0.211134,-0.006545,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211134,-0.006545,0.007746,0.249880,0,0);}
.mb_c00357{transform:matrix(0.212498,-0.006587,0.007746,0.249880,0,0);-ms-transform:matrix(0.212498,-0.006587,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212498,-0.006587,0.007746,0.249880,0,0);}
.mdc_c00357{transform:matrix(0.213358,-0.006614,0.007746,0.249880,0,0);-ms-transform:matrix(0.213358,-0.006614,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213358,-0.006614,0.007746,0.249880,0,0);}
.ma4_c00357{transform:matrix(0.213532,-0.006620,0.007746,0.249880,0,0);-ms-transform:matrix(0.213532,-0.006620,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213532,-0.006620,0.007746,0.249880,0,0);}
.m2f_c00357{transform:matrix(0.213942,-0.006632,0.007746,0.249880,0,0);-ms-transform:matrix(0.213942,-0.006632,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213942,-0.006632,0.007746,0.249880,0,0);}
.m4e_c00357{transform:matrix(0.213972,-0.006633,0.007746,0.249880,0,0);-ms-transform:matrix(0.213972,-0.006633,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213972,-0.006633,0.007746,0.249880,0,0);}
.m8d_c00357{transform:matrix(0.215112,-0.006668,0.007746,0.249880,0,0);-ms-transform:matrix(0.215112,-0.006668,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215112,-0.006668,0.007746,0.249880,0,0);}
.ma7_c00357{transform:matrix(0.216136,-0.006700,0.007746,0.249880,0,0);-ms-transform:matrix(0.216136,-0.006700,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216136,-0.006700,0.007746,0.249880,0,0);}
.mdb_c00357{transform:matrix(0.216221,-0.006703,0.007746,0.249880,0,0);-ms-transform:matrix(0.216221,-0.006703,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216221,-0.006703,0.007746,0.249880,0,0);}
.m41_c00357{transform:matrix(0.216231,-0.006703,0.007746,0.249880,0,0);-ms-transform:matrix(0.216231,-0.006703,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216231,-0.006703,0.007746,0.249880,0,0);}
.m76_c00357{transform:matrix(0.217146,-0.006732,0.007746,0.249880,0,0);-ms-transform:matrix(0.217146,-0.006732,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217146,-0.006732,0.007746,0.249880,0,0);}
.m49_c00357{transform:matrix(0.217605,-0.006746,0.007746,0.249880,0,0);-ms-transform:matrix(0.217605,-0.006746,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217605,-0.006746,0.007746,0.249880,0,0);}
.md9_c00357{transform:matrix(0.217910,-0.006755,0.007746,0.249880,0,0);-ms-transform:matrix(0.217910,-0.006755,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217910,-0.006755,0.007746,0.249880,0,0);}
.m74_c00357{transform:matrix(0.218205,-0.006764,0.007746,0.249880,0,0);-ms-transform:matrix(0.218205,-0.006764,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218205,-0.006764,0.007746,0.249880,0,0);}
.m75_c00357{transform:matrix(0.219020,-0.006790,0.007746,0.249880,0,0);-ms-transform:matrix(0.219020,-0.006790,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219020,-0.006790,0.007746,0.249880,0,0);}
.m4_c00357{transform:matrix(0.219110,-0.006792,0.007746,0.249880,0,0);-ms-transform:matrix(0.219110,-0.006792,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219110,-0.006792,0.007746,0.249880,0,0);}
.mb9_c00357{transform:matrix(0.219200,-0.006795,0.007746,0.249880,0,0);-ms-transform:matrix(0.219200,-0.006795,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219200,-0.006795,0.007746,0.249880,0,0);}
.mb6_c00357{transform:matrix(0.219485,-0.006804,0.007746,0.249880,0,0);-ms-transform:matrix(0.219485,-0.006804,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219485,-0.006804,0.007746,0.249880,0,0);}
.m55_c00357{transform:matrix(0.220759,-0.006844,0.007746,0.249880,0,0);-ms-transform:matrix(0.220759,-0.006844,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220759,-0.006844,0.007746,0.249880,0,0);}
.m4f_c00357{transform:matrix(0.220834,-0.006846,0.007746,0.249880,0,0);-ms-transform:matrix(0.220834,-0.006846,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220834,-0.006846,0.007746,0.249880,0,0);}
.m50_c00357{transform:matrix(0.221878,-0.006878,0.007746,0.249880,0,0);-ms-transform:matrix(0.221878,-0.006878,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221878,-0.006878,0.007746,0.249880,0,0);}
.m1d_c00357{transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);-ms-transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);}
.m8b_c00357{transform:matrix(0.222393,-0.006894,0.007746,0.249880,0,0);-ms-transform:matrix(0.222393,-0.006894,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222393,-0.006894,0.007746,0.249880,0,0);}
.m5_c00357{transform:matrix(0.223168,-0.006918,0.007746,0.249880,0,0);-ms-transform:matrix(0.223168,-0.006918,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223168,-0.006918,0.007746,0.249880,0,0);}
.mb7_c00357{transform:matrix(0.223912,-0.006941,0.007746,0.249880,0,0);-ms-transform:matrix(0.223912,-0.006941,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223912,-0.006941,0.007746,0.249880,0,0);}
.m8f_c00357{transform:matrix(0.226251,-0.007014,0.007746,0.249880,0,0);-ms-transform:matrix(0.226251,-0.007014,0.007746,0.249880,0,0);-webkit-transform:matrix(0.226251,-0.007014,0.007746,0.249880,0,0);}
.m2d_c00357{transform:matrix(0.226786,-0.007030,0.007746,0.249880,0,0);-ms-transform:matrix(0.226786,-0.007030,0.007746,0.249880,0,0);-webkit-transform:matrix(0.226786,-0.007030,0.007746,0.249880,0,0);}
.ma3_c00357{transform:matrix(0.228020,-0.007069,0.007746,0.249880,0,0);-ms-transform:matrix(0.228020,-0.007069,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228020,-0.007069,0.007746,0.249880,0,0);}
.m37_c00357{transform:matrix(0.229340,-0.007110,0.007746,0.249880,0,0);-ms-transform:matrix(0.229340,-0.007110,0.007746,0.249880,0,0);-webkit-transform:matrix(0.229340,-0.007110,0.007746,0.249880,0,0);}
.m20_c00357{transform:matrix(0.229935,-0.007128,0.007746,0.249880,0,0);-ms-transform:matrix(0.229935,-0.007128,0.007746,0.249880,0,0);-webkit-transform:matrix(0.229935,-0.007128,0.007746,0.249880,0,0);}
.m1c_c00357{transform:matrix(0.230084,-0.007133,0.007746,0.249880,0,0);-ms-transform:matrix(0.230084,-0.007133,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230084,-0.007133,0.007746,0.249880,0,0);}
.mc0_c00357{transform:matrix(0.230449,-0.007144,0.007746,0.249880,0,0);-ms-transform:matrix(0.230449,-0.007144,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230449,-0.007144,0.007746,0.249880,0,0);}
.mb5_c00357{transform:matrix(0.232049,-0.007194,0.007746,0.249880,0,0);-ms-transform:matrix(0.232049,-0.007194,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232049,-0.007194,0.007746,0.249880,0,0);}
.m73_c00357{transform:matrix(0.232653,-0.007212,0.007746,0.249880,0,0);-ms-transform:matrix(0.232653,-0.007212,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232653,-0.007212,0.007746,0.249880,0,0);}
.m8c_c00357{transform:matrix(0.232873,-0.007219,0.007746,0.249880,0,0);-ms-transform:matrix(0.232873,-0.007219,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232873,-0.007219,0.007746,0.249880,0,0);}
.m2e_c00357{transform:matrix(0.234557,-0.007271,0.007746,0.249880,0,0);-ms-transform:matrix(0.234557,-0.007271,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234557,-0.007271,0.007746,0.249880,0,0);}
.m1e_c00357{transform:matrix(0.235947,-0.007314,0.007746,0.249880,0,0);-ms-transform:matrix(0.235947,-0.007314,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235947,-0.007314,0.007746,0.249880,0,0);}
.m2c_c00357{transform:matrix(0.235997,-0.007316,0.007746,0.249880,0,0);-ms-transform:matrix(0.235997,-0.007316,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235997,-0.007316,0.007746,0.249880,0,0);}
.mb8_c00357{transform:matrix(0.238106,-0.007381,0.007746,0.249880,0,0);-ms-transform:matrix(0.238106,-0.007381,0.007746,0.249880,0,0);-webkit-transform:matrix(0.238106,-0.007381,0.007746,0.249880,0,0);}
.m3f_c00357{transform:matrix(0.239635,-0.007429,0.007746,0.249880,0,0);-ms-transform:matrix(0.239635,-0.007429,0.007746,0.249880,0,0);-webkit-transform:matrix(0.239635,-0.007429,0.007746,0.249880,0,0);}
.ma5_c00357{transform:matrix(0.240674,-0.007461,0.007746,0.249880,0,0);-ms-transform:matrix(0.240674,-0.007461,0.007746,0.249880,0,0);-webkit-transform:matrix(0.240674,-0.007461,0.007746,0.249880,0,0);}
.m1f_c00357{transform:matrix(0.241589,-0.007489,0.007746,0.249880,0,0);-ms-transform:matrix(0.241589,-0.007489,0.007746,0.249880,0,0);-webkit-transform:matrix(0.241589,-0.007489,0.007746,0.249880,0,0);}
.m2a_c00357{transform:matrix(0.241764,-0.007495,0.007746,0.249880,0,0);-ms-transform:matrix(0.241764,-0.007495,0.007746,0.249880,0,0);-webkit-transform:matrix(0.241764,-0.007495,0.007746,0.249880,0,0);}
.m53_c00357{transform:matrix(0.244408,-0.007577,0.007746,0.249880,0,0);-ms-transform:matrix(0.244408,-0.007577,0.007746,0.249880,0,0);-webkit-transform:matrix(0.244408,-0.007577,0.007746,0.249880,0,0);}
.m2b_c00357{transform:matrix(0.247236,-0.007664,0.007746,0.249880,0,0);-ms-transform:matrix(0.247236,-0.007664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.247236,-0.007664,0.007746,0.249880,0,0);}
.m7c_c00357{transform:matrix(0.248136,-0.007692,0.007746,0.249880,0,0);-ms-transform:matrix(0.248136,-0.007692,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248136,-0.007692,0.007746,0.249880,0,0);}
.m90_c00357{transform:matrix(0.248895,-0.007716,0.007746,0.249880,0,0);-ms-transform:matrix(0.248895,-0.007716,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248895,-0.007716,0.007746,0.249880,0,0);}
.m63_c00357{transform:matrix(0.251114,-0.007785,0.007746,0.249880,0,0);-ms-transform:matrix(0.251114,-0.007785,0.007746,0.249880,0,0);-webkit-transform:matrix(0.251114,-0.007785,0.007746,0.249880,0,0);}
.m7f_c00357{transform:matrix(0.253118,-0.007847,0.007746,0.249880,0,0);-ms-transform:matrix(0.253118,-0.007847,0.007746,0.249880,0,0);-webkit-transform:matrix(0.253118,-0.007847,0.007746,0.249880,0,0);}
.ma1_c00357{transform:matrix(0.256997,-0.007967,0.007746,0.249880,0,0);-ms-transform:matrix(0.256997,-0.007967,0.007746,0.249880,0,0);-webkit-transform:matrix(0.256997,-0.007967,0.007746,0.249880,0,0);}
.m52_c00357{transform:matrix(0.265507,-0.008231,0.007746,0.249880,0,0);-ms-transform:matrix(0.265507,-0.008231,0.007746,0.249880,0,0);-webkit-transform:matrix(0.265507,-0.008231,0.007746,0.249880,0,0);}
.m2_c00357{transform:matrix(0.267651,-0.008297,0.007746,0.249880,0,0);-ms-transform:matrix(0.267651,-0.008297,0.007746,0.249880,0,0);-webkit-transform:matrix(0.267651,-0.008297,0.007746,0.249880,0,0);}
.m1_c00357{transform:matrix(0.271475,-0.008416,0.007746,0.249880,0,0);-ms-transform:matrix(0.271475,-0.008416,0.007746,0.249880,0,0);-webkit-transform:matrix(0.271475,-0.008416,0.007746,0.249880,0,0);}
.m14_c00357{transform:matrix(0.272249,-0.008440,0.007746,0.249880,0,0);-ms-transform:matrix(0.272249,-0.008440,0.007746,0.249880,0,0);-webkit-transform:matrix(0.272249,-0.008440,0.007746,0.249880,0,0);}
.m9f_c00357{transform:matrix(0.273094,-0.008466,0.007746,0.249880,0,0);-ms-transform:matrix(0.273094,-0.008466,0.007746,0.249880,0,0);-webkit-transform:matrix(0.273094,-0.008466,0.007746,0.249880,0,0);}
.m3e_c00357{transform:matrix(0.283949,-0.008802,0.007746,0.249880,0,0);-ms-transform:matrix(0.283949,-0.008802,0.007746,0.249880,0,0);-webkit-transform:matrix(0.283949,-0.008802,0.007746,0.249880,0,0);}
.m13_c00357{transform:matrix(0.291135,-0.009025,0.007746,0.249880,0,0);-ms-transform:matrix(0.291135,-0.009025,0.007746,0.249880,0,0);-webkit-transform:matrix(0.291135,-0.009025,0.007746,0.249880,0,0);}
.ma0_c00357{transform:matrix(0.292729,-0.009075,0.007746,0.249880,0,0);-ms-transform:matrix(0.292729,-0.009075,0.007746,0.249880,0,0);-webkit-transform:matrix(0.292729,-0.009075,0.007746,0.249880,0,0);}
.m88_c00357{transform:matrix(0.301230,-0.009338,0.007746,0.249880,0,0);-ms-transform:matrix(0.301230,-0.009338,0.007746,0.249880,0,0);-webkit-transform:matrix(0.301230,-0.009338,0.007746,0.249880,0,0);}
.m3d_c00357{transform:matrix(0.317982,-0.009857,0.007746,0.249880,0,0);-ms-transform:matrix(0.317982,-0.009857,0.007746,0.249880,0,0);-webkit-transform:matrix(0.317982,-0.009857,0.007746,0.249880,0,0);}
.m51_c00357{transform:matrix(0.330376,-0.010242,0.007746,0.249880,0,0);-ms-transform:matrix(0.330376,-0.010242,0.007746,0.249880,0,0);-webkit-transform:matrix(0.330376,-0.010242,0.007746,0.249880,0,0);}
.m9e_c00357{transform:matrix(0.330736,-0.010253,0.007746,0.249880,0,0);-ms-transform:matrix(0.330736,-0.010253,0.007746,0.249880,0,0);-webkit-transform:matrix(0.330736,-0.010253,0.007746,0.249880,0,0);}
.m8_c00357{transform:matrix(0.332500,-0.010308,0.007746,0.249880,0,0);-ms-transform:matrix(0.332500,-0.010308,0.007746,0.249880,0,0);-webkit-transform:matrix(0.332500,-0.010308,0.007746,0.249880,0,0);}
.m89_c00357{transform:matrix(0.355214,-0.011012,0.007746,0.249880,0,0);-ms-transform:matrix(0.355214,-0.011012,0.007746,0.249880,0,0);-webkit-transform:matrix(0.355214,-0.011012,0.007746,0.249880,0,0);}
.m7_c00357{transform:matrix(0.383851,-0.011899,0.007746,0.249880,0,0);-ms-transform:matrix(0.383851,-0.011899,0.007746,0.249880,0,0);-webkit-transform:matrix(0.383851,-0.011899,0.007746,0.249880,0,0);}
.m46_c00357{transform:matrix(0.437075,-0.013549,0.007746,0.249880,0,0);-ms-transform:matrix(0.437075,-0.013549,0.007746,0.249880,0,0);-webkit-transform:matrix(0.437075,-0.013549,0.007746,0.249880,0,0);}
.m83_c00357{transform:matrix(0.563734,-0.017476,0.007746,0.249880,0,0);-ms-transform:matrix(0.563734,-0.017476,0.007746,0.249880,0,0);-webkit-transform:matrix(0.563734,-0.017476,0.007746,0.249880,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:0.000000px;}
.fc0_c00357{color:transparent;}
.fsa_c00357{font-size:55.676733px;}
.fsc_c00357{font-size:57.777742px;}
.fs5_c00357{font-size:58.828247px;}
.fs3_c00357{font-size:59.878751px;}
.fs2_c00357{font-size:61.979760px;}
.fs1_c00357{font-size:63.030264px;}
.fs4_c00357{font-size:66.181777px;}
.fsb_c00357{font-size:67.232282px;}
.fs7_c00357{font-size:68.282786px;}
.fs9_c00357{font-size:69.333291px;}
.fs8_c00357{font-size:70.383795px;}
.fsd_c00357{font-size:73.535308px;}
.fs6_c00357{font-size:74.585813px;}
.fs0_c00357{font-size:77.700000px;}
.y0_c00357{bottom:0.000000px;}
.ye5_c00357{bottom:20.009325px;}
.ye6_c00357{bottom:21.204818px;}
.ye7_c00357{bottom:21.669435px;}
.ye8_c00357{bottom:23.032342px;}
.ye9_c00357{bottom:23.622027px;}
.yea_c00357{bottom:24.274390px;}
.yeb_c00357{bottom:26.066682px;}
.yec_c00357{bottom:26.776575px;}
.ydc_c00357{bottom:37.302238px;}
.ydd_c00357{bottom:38.866684px;}
.yde_c00357{bottom:39.395808px;}
.ydf_c00357{bottom:40.538825px;}
.ye0_c00357{bottom:41.021401px;}
.ye1_c00357{bottom:42.468435px;}
.ye2_c00357{bottom:42.912882px;}
.ye3_c00357{bottom:43.722308px;}
.ye4_c00357{bottom:44.926425px;}
.yd4_c00357{bottom:52.711571px;}
.yd5_c00357{bottom:55.812519px;}
.yd6_c00357{bottom:57.532136px;}
.yd7_c00357{bottom:60.315656px;}
.yd8_c00357{bottom:61.146045px;}
.yd9_c00357{bottom:62.081077px;}
.yda_c00357{bottom:63.251019px;}
.ydb_c00357{bottom:63.904453px;}
.ycd_c00357{bottom:69.449607px;}
.yce_c00357{bottom:70.869850px;}
.ycf_c00357{bottom:72.375598px;}
.yd0_c00357{bottom:73.067178px;}
.yd1_c00357{bottom:75.275386px;}
.yd2_c00357{bottom:75.920604px;}
.yd3_c00357{bottom:77.869568px;}
.yc6_c00357{bottom:86.473809px;}
.yc7_c00357{bottom:88.652190px;}
.yc8_c00357{bottom:90.836302px;}
.yc9_c00357{bottom:93.502026px;}
.yca_c00357{bottom:94.518807px;}
.ycb_c00357{bottom:95.926996px;}
.ycc_c00357{bottom:96.881929px;}
.ybc_c00357{bottom:104.025839px;}
.ybd_c00357{bottom:104.704535px;}
.ybe_c00357{bottom:106.180445px;}
.ybf_c00357{bottom:107.563284px;}
.yc0_c00357{bottom:108.244910px;}
.yc1_c00357{bottom:109.783095px;}
.yc2_c00357{bottom:110.487564px;}
.yc3_c00357{bottom:111.132024px;}
.yc4_c00357{bottom:112.353693px;}
.yc5_c00357{bottom:112.784065px;}
.yb4_c00357{bottom:122.932116px;}
.yb5_c00357{bottom:123.982280px;}
.yb6_c00357{bottom:124.526519px;}
.yb7_c00357{bottom:125.120267px;}
.yb8_c00357{bottom:126.676634px;}
.yb9_c00357{bottom:127.480089px;}
.yba_c00357{bottom:129.251406px;}
.ybb_c00357{bottom:130.115705px;}
.yac_c00357{bottom:138.334569px;}
.yad_c00357{bottom:140.581937px;}
.yae_c00357{bottom:141.007058px;}
.yaf_c00357{bottom:142.018831px;}
.yb0_c00357{bottom:144.921463px;}
.yb1_c00357{bottom:145.458058px;}
.yb2_c00357{bottom:146.963577px;}
.yb3_c00357{bottom:147.393115px;}
.ya4_c00357{bottom:155.623618px;}
.ya5_c00357{bottom:156.781515px;}
.ya6_c00357{bottom:157.272787px;}
.ya7_c00357{bottom:158.905449px;}
.ya8_c00357{bottom:161.048680px;}
.ya9_c00357{bottom:162.269863px;}
.yaa_c00357{bottom:163.161408px;}
.yab_c00357{bottom:163.839006px;}
.y9c_c00357{bottom:173.449020px;}
.y9d_c00357{bottom:173.943318px;}
.y9e_c00357{bottom:175.553143px;}
.y9f_c00357{bottom:176.435280px;}
.ya0_c00357{bottom:177.705103px;}
.ya1_c00357{bottom:179.611105px;}
.ya2_c00357{bottom:180.845926px;}
.ya3_c00357{bottom:181.582357px;}
.y94_c00357{bottom:190.204296px;}
.y95_c00357{bottom:191.657497px;}
.y96_c00357{bottom:193.280766px;}
.y97_c00357{bottom:194.008546px;}
.y98_c00357{bottom:195.149538px;}
.y99_c00357{bottom:196.962276px;}
.y9a_c00357{bottom:198.370603px;}
.y9b_c00357{bottom:199.053522px;}
.y8d_c00357{bottom:208.295176px;}
.y8e_c00357{bottom:209.024970px;}
.y8f_c00357{bottom:211.192948px;}
.y90_c00357{bottom:211.680376px;}
.y91_c00357{bottom:213.399324px;}
.y92_c00357{bottom:214.133430px;}
.y93_c00357{bottom:216.222778px;}
.y85_c00357{bottom:222.363583px;}
.y86_c00357{bottom:223.584780px;}
.y87_c00357{bottom:224.522269px;}
.y88_c00357{bottom:225.969834px;}
.y89_c00357{bottom:229.502295px;}
.y8a_c00357{bottom:231.132642px;}
.y8b_c00357{bottom:233.342424px;}
.y8c_c00357{bottom:235.408021px;}
.y7e_c00357{bottom:241.522221px;}
.y7f_c00357{bottom:242.509648px;}
.y80_c00357{bottom:243.345997px;}
.y81_c00357{bottom:244.611867px;}
.y82_c00357{bottom:248.020456px;}
.y83_c00357{bottom:249.167611px;}
.y84_c00357{bottom:249.909612px;}
.y77_c00357{bottom:257.195548px;}
.y78_c00357{bottom:258.602388px;}
.y79_c00357{bottom:259.207905px;}
.y7a_c00357{bottom:260.031618px;}
.y7b_c00357{bottom:262.542864px;}
.y7c_c00357{bottom:264.947901px;}
.y7d_c00357{bottom:266.845248px;}
.y71_c00357{bottom:274.206499px;}
.y72_c00357{bottom:274.892901px;}
.y73_c00357{bottom:276.774553px;}
.y74_c00357{bottom:277.529032px;}
.y75_c00357{bottom:280.366932px;}
.y76_c00357{bottom:282.413767px;}
.y6b_c00357{bottom:290.696611px;}
.y6c_c00357{bottom:294.245019px;}
.y6d_c00357{bottom:295.232335px;}
.y6e_c00357{bottom:297.193134px;}
.y6f_c00357{bottom:297.961659px;}
.y70_c00357{bottom:300.535654px;}
.y64_c00357{bottom:308.519272px;}
.y65_c00357{bottom:311.062453px;}
.y66_c00357{bottom:311.783026px;}
.y67_c00357{bottom:313.972716px;}
.y68_c00357{bottom:315.434892px;}
.y69_c00357{bottom:316.471023px;}
.y6a_c00357{bottom:317.350351px;}
.y5e_c00357{bottom:324.190941px;}
.y5f_c00357{bottom:325.330243px;}
.y60_c00357{bottom:326.238067px;}
.y61_c00357{bottom:327.143241px;}
.y62_c00357{bottom:330.346062px;}
.y63_c00357{bottom:335.145399px;}
.y55_c00357{bottom:343.895462px;}
.y56_c00357{bottom:344.339039px;}
.y57_c00357{bottom:345.569312px;}
.y58_c00357{bottom:347.318650px;}
.y59_c00357{bottom:347.888190px;}
.y5a_c00357{bottom:349.494804px;}
.y5b_c00357{bottom:349.832808px;}
.y5c_c00357{bottom:350.407230px;}
.y5d_c00357{bottom:351.139454px;}
.y4c_c00357{bottom:359.028680px;}
.y4d_c00357{bottom:361.178302px;}
.y4e_c00357{bottom:362.287635px;}
.y4f_c00357{bottom:362.846887px;}
.y50_c00357{bottom:364.552406px;}
.y51_c00357{bottom:365.590743px;}
.y52_c00357{bottom:366.589067px;}
.y53_c00357{bottom:367.435867px;}
.y54_c00357{bottom:368.024009px;}
.y44_c00357{bottom:377.119202px;}
.y45_c00357{bottom:377.896347px;}
.y46_c00357{bottom:378.566487px;}
.y47_c00357{bottom:379.761401px;}
.y48_c00357{bottom:380.888252px;}
.y49_c00357{bottom:381.705770px;}
.y4a_c00357{bottom:383.179536px;}
.y4b_c00357{bottom:383.619937px;}
.y3e_c00357{bottom:393.876024px;}
.y3f_c00357{bottom:395.225744px;}
.y40_c00357{bottom:395.916018px;}
.y41_c00357{bottom:398.098989px;}
.y42_c00357{bottom:400.030242px;}
.y43_c00357{bottom:401.152470px;}
.y37_c00357{bottom:409.544639px;}
.y38_c00357{bottom:411.579997px;}
.y39_c00357{bottom:412.110303px;}
.y3a_c00357{bottom:412.921055px;}
.y3b_c00357{bottom:414.718737px;}
.y3c_c00357{bottom:415.738044px;}
.y3d_c00357{bottom:417.678169px;}
.y31_c00357{bottom:428.450855px;}
.y32_c00357{bottom:429.626295px;}
.y33_c00357{bottom:431.557173px;}
.y34_c00357{bottom:432.288095px;}
.y35_c00357{bottom:433.917923px;}
.y36_c00357{bottom:435.849684px;}
.y2b_c00357{bottom:443.844527px;}
.y2c_c00357{bottom:445.361123px;}
.y2d_c00357{bottom:446.139759px;}
.y2e_c00357{bottom:447.476327px;}
.y2f_c00357{bottom:449.460397px;}
.y30_c00357{bottom:451.703467px;}
.y23_c00357{bottom:460.866734px;}
.y24_c00357{bottom:461.691714px;}
.y25_c00357{bottom:462.979598px;}
.y26_c00357{bottom:465.492647px;}
.y27_c00357{bottom:467.233703px;}
.y28_c00357{bottom:468.148011px;}
.y29_c00357{bottom:469.048032px;}
.y2a_c00357{bottom:469.698554px;}
.y1e_c00357{bottom:478.967568px;}
.y1f_c00357{bottom:481.837344px;}
.y20_c00357{bottom:483.577622px;}
.y21_c00357{bottom:486.432320px;}
.y22_c00357{bottom:488.385165px;}
.y17_c00357{bottom:492.760506px;}
.y18_c00357{bottom:495.156297px;}
.y19_c00357{bottom:497.672345px;}
.y1a_c00357{bottom:499.420991px;}
.y1b_c00357{bottom:500.436345px;}
.y1c_c00357{bottom:503.026751px;}
.y1d_c00357{bottom:504.682216px;}
.yf_c00357{bottom:512.184455px;}
.y10_c00357{bottom:513.584949px;}
.y11_c00357{bottom:514.942686px;}
.y12_c00357{bottom:515.616207px;}
.y13_c00357{bottom:518.297526px;}
.y14_c00357{bottom:519.217293px;}
.y15_c00357{bottom:521.118023px;}
.y16_c00357{bottom:521.760597px;}
.y8_c00357{bottom:528.403894px;}
.y9_c00357{bottom:530.791138px;}
.ya_c00357{bottom:531.169257px;}
.yb_c00357{bottom:533.011092px;}
.yc_c00357{bottom:533.668385px;}
.yd_c00357{bottom:535.549049px;}
.ye_c00357{bottom:538.663605px;}
.y2_c00357{bottom:546.225000px;}
.y3_c00357{bottom:548.552279px;}
.y4_c00357{bottom:549.279074px;}
.y5_c00357{bottom:549.791736px;}
.y6_c00357{bottom:551.625185px;}
.y7_c00357{bottom:554.063598px;}
.y1_c00357{bottom:564.436500px;}
.hc_c00357{height:55.676733px;}
.he_c00357{height:57.777742px;}
.h7_c00357{height:58.828247px;}
.h5_c00357{height:59.878751px;}
.h4_c00357{height:61.979760px;}
.h3_c00357{height:63.030264px;}
.h6_c00357{height:66.181777px;}
.hd_c00357{height:67.232282px;}
.h9_c00357{height:68.282786px;}
.hb_c00357{height:69.333291px;}
.ha_c00357{height:70.383795px;}
.hf_c00357{height:73.535308px;}
.h8_c00357{height:74.585813px;}
.h2_c00357{height:77.700000px;}
.h0_c00357{height:613.170000px;}
.h1_c00357{height:613.500000px;}
.w0_c00357{width:359.100000px;}
.w1_c00357{width:359.250000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:34.767000px;}
.x1d_c00357{left:35.790048px;}
.x38_c00357{left:36.911073px;}
.x52_c00357{left:38.198011px;}
.x5d_c00357{left:39.236251px;}
.x46_c00357{left:44.485633px;}
.x40_c00357{left:54.071490px;}
.x5e_c00357{left:56.295321px;}
.x4b_c00357{left:57.463009px;}
.x1e_c00357{left:60.804014px;}
.x33_c00357{left:64.245480px;}
.x43_c00357{left:65.726386px;}
.x53_c00357{left:70.050511px;}
.xd_c00357{left:76.897318px;}
.x30_c00357{left:78.574041px;}
.x23_c00357{left:80.632313px;}
.x77_c00357{left:85.117841px;}
.x56_c00357{left:86.514391px;}
.x34_c00357{left:88.187712px;}
.x74_c00357{left:89.732279px;}
.x63_c00357{left:92.280660px;}
.x14_c00357{left:94.092567px;}
.x6d_c00357{left:96.487395px;}
.x2b_c00357{left:97.820024px;}
.x8_c00357{left:99.941063px;}
.x39_c00357{left:102.040028px;}
.x24_c00357{left:103.521674px;}
.x66_c00357{left:106.590318px;}
.x3_c00357{left:109.840500px;}
.x44_c00357{left:111.036238px;}
.x4c_c00357{left:112.785348px;}
.x2c_c00357{left:113.909547px;}
.x71_c00357{left:115.081299px;}
.xe_c00357{left:116.820598px;}
.x50_c00357{left:118.488856px;}
.x1a_c00357{left:119.966900px;}
.x70_c00357{left:122.319786px;}
.x59_c00357{left:126.972291px;}
.x35_c00357{left:130.850165px;}
.x4_c00357{left:133.285500px;}
.x4d_c00357{left:134.992302px;}
.xf_c00357{left:136.609738px;}
.x2d_c00357{left:138.464513px;}
.x25_c00357{left:142.810500px;}
.x64_c00357{left:144.947160px;}
.x5a_c00357{left:147.785233px;}
.x5_c00357{left:149.823000px;}
.x3a_c00357{left:152.571866px;}
.x6e_c00357{left:153.962433px;}
.x15_c00357{left:155.446049px;}
.x72_c00357{left:157.039826px;}
.x9_c00357{left:159.928403px;}
.x1_c00357{left:165.510000px;}
.x31_c00357{left:168.401798px;}
.x1b_c00357{left:171.164657px;}
.x1f_c00357{left:176.004399px;}
.xa_c00357{left:177.692601px;}
.x5b_c00357{left:180.377688px;}
.x28_c00357{left:183.748187px;}
.x5f_c00357{left:185.973819px;}
.x41_c00357{left:190.549101px;}
.x2e_c00357{left:192.918618px;}
.x16_c00357{left:198.098843px;}
.x26_c00357{left:201.146060px;}
.x78_c00357{left:203.219162px;}
.x3b_c00357{left:204.246657px;}
.x75_c00357{left:205.917779px;}
.x69_c00357{left:207.420390px;}
.x6_c00357{left:208.966500px;}
.x49_c00357{left:212.864563px;}
.x65_c00357{left:214.083660px;}
.x10_c00357{left:215.451391px;}
.x4e_c00357{left:218.449036px;}
.x76_c00357{left:220.254779px;}
.x17_c00357{left:222.860670px;}
.x6f_c00357{left:224.115728px;}
.xb_c00357{left:228.527161px;}
.x5c_c00357{left:232.169271px;}
.x4a_c00357{left:233.635704px;}
.x3c_c00357{left:235.707204px;}
.x67_c00357{left:238.099180px;}
.x58_c00357{left:240.279262px;}
.x11_c00357{left:242.505880px;}
.x73_c00357{left:245.187030px;}
.x29_c00357{left:246.445905px;}
.x54_c00357{left:247.818511px;}
.x60_c00357{left:251.719911px;}
.x36_c00357{left:252.881964px;}
.x1c_c00357{left:255.114845px;}
.x20_c00357{left:256.478924px;}
.x51_c00357{left:258.964465px;}
.x6c_c00357{left:261.363483px;}
.x32_c00357{left:263.849868px;}
.x3d_c00357{left:265.973844px;}
.x27_c00357{left:267.109922px;}
.x37_c00357{left:268.589906px;}
.x47_c00357{left:271.642954px;}
.x6a_c00357{left:273.035528px;}
.x4f_c00357{left:278.663956px;}
.x2f_c00357{left:282.620585px;}
.x21_c00357{left:283.768250px;}
.x55_c00357{left:284.823511px;}
.x18_c00357{left:286.031594px;}
.x7_c00357{left:287.625000px;}
.x3e_c00357{left:291.643263px;}
.x61_c00357{left:294.313561px;}
.x48_c00357{left:296.763339px;}
.x12_c00357{left:298.395173px;}
.x68_c00357{left:299.953821px;}
.x22_c00357{left:303.493541px;}
.x6b_c00357{left:305.032980px;}
.x3f_c00357{left:309.453147px;}
.x45_c00357{left:311.098485px;}
.xc_c00357{left:312.723037px;}
.x42_c00357{left:315.576945px;}
.x13_c00357{left:317.282905px;}
.x62_c00357{left:319.716142px;}
.x2a_c00357{left:320.723891px;}
.x19_c00357{left:326.405085px;}
.x57_c00357{left:328.401487px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.fsa_c00357{font-size:49.490430pt;}
.fsc_c00357{font-size:51.357993pt;}
.fs5_c00357{font-size:52.291775pt;}
.fs3_c00357{font-size:53.225556pt;}
.fs2_c00357{font-size:55.093120pt;}
.fs1_c00357{font-size:56.026902pt;}
.fs4_c00357{font-size:58.828247pt;}
.fsb_c00357{font-size:59.762028pt;}
.fs7_c00357{font-size:60.695810pt;}
.fs9_c00357{font-size:61.629592pt;}
.fs8_c00357{font-size:62.563373pt;}
.fsd_c00357{font-size:65.364718pt;}
.fs6_c00357{font-size:66.298500pt;}
.fs0_c00357{font-size:69.066667pt;}
.y0_c00357{bottom:0.000000pt;}
.ye5_c00357{bottom:17.786067pt;}
.ye6_c00357{bottom:18.848727pt;}
.ye7_c00357{bottom:19.261720pt;}
.ye8_c00357{bottom:20.473193pt;}
.ye9_c00357{bottom:20.997357pt;}
.yea_c00357{bottom:21.577236pt;}
.yeb_c00357{bottom:23.170384pt;}
.yec_c00357{bottom:23.801400pt;}
.ydc_c00357{bottom:33.157545pt;}
.ydd_c00357{bottom:34.548164pt;}
.yde_c00357{bottom:35.018496pt;}
.ydf_c00357{bottom:36.034511pt;}
.ye0_c00357{bottom:36.463468pt;}
.ye1_c00357{bottom:37.749720pt;}
.ye2_c00357{bottom:38.144784pt;}
.ye3_c00357{bottom:38.864273pt;}
.ye4_c00357{bottom:39.934600pt;}
.yd4_c00357{bottom:46.854729pt;}
.yd5_c00357{bottom:49.611128pt;}
.yd6_c00357{bottom:51.139676pt;}
.yd7_c00357{bottom:53.613916pt;}
.yd8_c00357{bottom:54.352040pt;}
.yd9_c00357{bottom:55.183180pt;}
.yda_c00357{bottom:56.223128pt;}
.ydb_c00357{bottom:56.803959pt;}
.ycd_c00357{bottom:61.732984pt;}
.yce_c00357{bottom:62.995423pt;}
.ycf_c00357{bottom:64.333865pt;}
.yd0_c00357{bottom:64.948603pt;}
.yd1_c00357{bottom:66.911455pt;}
.yd2_c00357{bottom:67.484981pt;}
.yd3_c00357{bottom:69.217393pt;}
.yc6_c00357{bottom:76.865608pt;}
.yc7_c00357{bottom:78.801947pt;}
.yc8_c00357{bottom:80.743380pt;}
.yc9_c00357{bottom:83.112912pt;}
.yca_c00357{bottom:84.016717pt;}
.ycb_c00357{bottom:85.268441pt;}
.ycc_c00357{bottom:86.117271pt;}
.ybc_c00357{bottom:92.467412pt;}
.ybd_c00357{bottom:93.070697pt;}
.ybe_c00357{bottom:94.382617pt;}
.ybf_c00357{bottom:95.611808pt;}
.yc0_c00357{bottom:96.217697pt;}
.yc1_c00357{bottom:97.584973pt;}
.yc2_c00357{bottom:98.211168pt;}
.yc3_c00357{bottom:98.784021pt;}
.yc4_c00357{bottom:99.869949pt;}
.yc5_c00357{bottom:100.252503pt;}
.yb4_c00357{bottom:109.272992pt;}
.yb5_c00357{bottom:110.206471pt;}
.yb6_c00357{bottom:110.690239pt;}
.yb7_c00357{bottom:111.218015pt;}
.yb8_c00357{bottom:112.601452pt;}
.yb9_c00357{bottom:113.315635pt;}
.yba_c00357{bottom:114.890139pt;}
.ybb_c00357{bottom:115.658404pt;}
.yac_c00357{bottom:122.964061pt;}
.yad_c00357{bottom:124.961721pt;}
.yae_c00357{bottom:125.339607pt;}
.yaf_c00357{bottom:126.238961pt;}
.yb0_c00357{bottom:128.819079pt;}
.yb1_c00357{bottom:129.296052pt;}
.yb2_c00357{bottom:130.634291pt;}
.yb3_c00357{bottom:131.016103pt;}
.ya4_c00357{bottom:138.332105pt;}
.ya5_c00357{bottom:139.361347pt;}
.ya6_c00357{bottom:139.798033pt;}
.ya7_c00357{bottom:141.249288pt;}
.ya8_c00357{bottom:143.154383pt;}
.ya9_c00357{bottom:144.239879pt;}
.yaa_c00357{bottom:145.032363pt;}
.yab_c00357{bottom:145.634672pt;}
.y9c_c00357{bottom:154.176907pt;}
.y9d_c00357{bottom:154.616283pt;}
.y9e_c00357{bottom:156.047239pt;}
.y9f_c00357{bottom:156.831360pt;}
.ya0_c00357{bottom:157.960092pt;}
.ya1_c00357{bottom:159.654316pt;}
.ya2_c00357{bottom:160.751935pt;}
.ya3_c00357{bottom:161.406540pt;}
.y94_c00357{bottom:169.070485pt;}
.y95_c00357{bottom:170.362220pt;}
.y96_c00357{bottom:171.805125pt;}
.y97_c00357{bottom:172.452041pt;}
.y98_c00357{bottom:173.466256pt;}
.y99_c00357{bottom:175.077579pt;}
.y9a_c00357{bottom:176.329425pt;}
.y9b_c00357{bottom:176.936464pt;}
.y8d_c00357{bottom:185.151268pt;}
.y8e_c00357{bottom:185.799973pt;}
.y8f_c00357{bottom:187.727065pt;}
.y90_c00357{bottom:188.160335pt;}
.y91_c00357{bottom:189.688288pt;}
.y92_c00357{bottom:190.340827pt;}
.y93_c00357{bottom:192.198025pt;}
.y85_c00357{bottom:197.656519pt;}
.y86_c00357{bottom:198.742027pt;}
.y87_c00357{bottom:199.575351pt;}
.y88_c00357{bottom:200.862075pt;}
.y89_c00357{bottom:204.002040pt;}
.y8a_c00357{bottom:205.451237pt;}
.y8b_c00357{bottom:207.415488pt;}
.y8c_c00357{bottom:209.251575pt;}
.y7e_c00357{bottom:214.686419pt;}
.y7f_c00357{bottom:215.564132pt;}
.y80_c00357{bottom:216.307553pt;}
.y81_c00357{bottom:217.432771pt;}
.y82_c00357{bottom:220.462628pt;}
.y83_c00357{bottom:221.482321pt;}
.y84_c00357{bottom:222.141877pt;}
.y77_c00357{bottom:228.618265pt;}
.y78_c00357{bottom:229.868789pt;}
.y79_c00357{bottom:230.407027pt;}
.y7a_c00357{bottom:231.139216pt;}
.y7b_c00357{bottom:233.371435pt;}
.y7c_c00357{bottom:235.509245pt;}
.y7d_c00357{bottom:237.195776pt;}
.y71_c00357{bottom:243.739111pt;}
.y72_c00357{bottom:244.349245pt;}
.y73_c00357{bottom:246.021825pt;}
.y74_c00357{bottom:246.692473pt;}
.y75_c00357{bottom:249.215051pt;}
.y76_c00357{bottom:251.034460pt;}
.y6b_c00357{bottom:258.396988pt;}
.y6c_c00357{bottom:261.551128pt;}
.y6d_c00357{bottom:262.428743pt;}
.y6e_c00357{bottom:264.171675pt;}
.y6f_c00357{bottom:264.854808pt;}
.y70_c00357{bottom:267.142804pt;}
.y64_c00357{bottom:274.239353pt;}
.y65_c00357{bottom:276.499959pt;}
.y66_c00357{bottom:277.140468pt;}
.y67_c00357{bottom:279.086859pt;}
.y68_c00357{bottom:280.386571pt;}
.y69_c00357{bottom:281.307576pt;}
.y6a_c00357{bottom:282.089201pt;}
.y5e_c00357{bottom:288.169725pt;}
.y5f_c00357{bottom:289.182439pt;}
.y60_c00357{bottom:289.989393pt;}
.y61_c00357{bottom:290.793992pt;}
.y62_c00357{bottom:293.640944pt;}
.y63_c00357{bottom:297.907021pt;}
.y55_c00357{bottom:305.684855pt;}
.y56_c00357{bottom:306.079145pt;}
.y57_c00357{bottom:307.172721pt;}
.y58_c00357{bottom:308.727689pt;}
.y59_c00357{bottom:309.233947pt;}
.y5a_c00357{bottom:310.662048pt;}
.y5b_c00357{bottom:310.962496pt;}
.y5c_c00357{bottom:311.473093pt;}
.y5d_c00357{bottom:312.123959pt;}
.y4c_c00357{bottom:319.136604pt;}
.y4d_c00357{bottom:321.047380pt;}
.y4e_c00357{bottom:322.033453pt;}
.y4f_c00357{bottom:322.530567pt;}
.y50_c00357{bottom:324.046583pt;}
.y51_c00357{bottom:324.969549pt;}
.y52_c00357{bottom:325.856948pt;}
.y53_c00357{bottom:326.609660pt;}
.y54_c00357{bottom:327.132452pt;}
.y44_c00357{bottom:335.217068pt;}
.y45_c00357{bottom:335.907864pt;}
.y46_c00357{bottom:336.503544pt;}
.y47_c00357{bottom:337.565689pt;}
.y48_c00357{bottom:338.567335pt;}
.y49_c00357{bottom:339.294017pt;}
.y4a_c00357{bottom:340.604032pt;}
.y4b_c00357{bottom:340.995500pt;}
.y3e_c00357{bottom:350.112021pt;}
.y3f_c00357{bottom:351.311772pt;}
.y40_c00357{bottom:351.925349pt;}
.y41_c00357{bottom:353.865768pt;}
.y42_c00357{bottom:355.582437pt;}
.y43_c00357{bottom:356.579973pt;}
.y37_c00357{bottom:364.039679pt;}
.y38_c00357{bottom:365.848887pt;}
.y39_c00357{bottom:366.320269pt;}
.y3a_c00357{bottom:367.040937pt;}
.y3b_c00357{bottom:368.638877pt;}
.y3c_c00357{bottom:369.544928pt;}
.y3d_c00357{bottom:371.269484pt;}
.y31_c00357{bottom:380.845204pt;}
.y32_c00357{bottom:381.890040pt;}
.y33_c00357{bottom:383.606376pt;}
.y34_c00357{bottom:384.256084pt;}
.y35_c00357{bottom:385.704820pt;}
.y36_c00357{bottom:387.421941pt;}
.y2b_c00357{bottom:394.528468pt;}
.y2c_c00357{bottom:395.876553pt;}
.y2d_c00357{bottom:396.568675pt;}
.y2e_c00357{bottom:397.756735pt;}
.y2f_c00357{bottom:399.520353pt;}
.y30_c00357{bottom:401.514193pt;}
.y23_c00357{bottom:409.659319pt;}
.y24_c00357{bottom:410.392635pt;}
.y25_c00357{bottom:411.537420pt;}
.y26_c00357{bottom:413.771241pt;}
.y27_c00357{bottom:415.318847pt;}
.y28_c00357{bottom:416.131565pt;}
.y29_c00357{bottom:416.931584pt;}
.y2a_c00357{bottom:417.509825pt;}
.y1e_c00357{bottom:425.748949pt;}
.y1f_c00357{bottom:428.299861pt;}
.y20_c00357{bottom:429.846775pt;}
.y21_c00357{bottom:432.384284pt;}
.y22_c00357{bottom:434.120147pt;}
.y17_c00357{bottom:438.009339pt;}
.y18_c00357{bottom:440.138931pt;}
.y19_c00357{bottom:442.375417pt;}
.y1a_c00357{bottom:443.929769pt;}
.y1b_c00357{bottom:444.832307pt;}
.y1c_c00357{bottom:447.134889pt;}
.y1d_c00357{bottom:448.606415pt;}
.yf_c00357{bottom:455.275071pt;}
.y10_c00357{bottom:456.519955pt;}
.y11_c00357{bottom:457.726832pt;}
.y12_c00357{bottom:458.325517pt;}
.y13_c00357{bottom:460.708912pt;}
.y14_c00357{bottom:461.526483pt;}
.y15_c00357{bottom:463.216020pt;}
.y16_c00357{bottom:463.787197pt;}
.y8_c00357{bottom:469.692351pt;}
.y9_c00357{bottom:471.814345pt;}
.ya_c00357{bottom:472.150451pt;}
.yb_c00357{bottom:473.787637pt;}
.yc_c00357{bottom:474.371897pt;}
.yd_c00357{bottom:476.043599pt;}
.ye_c00357{bottom:478.812093pt;}
.y2_c00357{bottom:485.533333pt;}
.y3_c00357{bottom:487.602025pt;}
.y4_c00357{bottom:488.248065pt;}
.y5_c00357{bottom:488.703765pt;}
.y6_c00357{bottom:490.333497pt;}
.y7_c00357{bottom:492.500976pt;}
.y1_c00357{bottom:501.721333pt;}
.hc_c00357{height:49.490430pt;}
.he_c00357{height:51.357993pt;}
.h7_c00357{height:52.291775pt;}
.h5_c00357{height:53.225556pt;}
.h4_c00357{height:55.093120pt;}
.h3_c00357{height:56.026902pt;}
.h6_c00357{height:58.828247pt;}
.hd_c00357{height:59.762028pt;}
.h9_c00357{height:60.695810pt;}
.hb_c00357{height:61.629592pt;}
.ha_c00357{height:62.563373pt;}
.hf_c00357{height:65.364718pt;}
.h8_c00357{height:66.298500pt;}
.h2_c00357{height:69.066667pt;}
.h0_c00357{height:545.040000pt;}
.h1_c00357{height:545.333333pt;}
.w0_c00357{width:319.200000pt;}
.w1_c00357{width:319.333333pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:30.904000pt;}
.x1d_c00357{left:31.813376pt;}
.x38_c00357{left:32.809843pt;}
.x52_c00357{left:33.953788pt;}
.x5d_c00357{left:34.876668pt;}
.x46_c00357{left:39.542785pt;}
.x40_c00357{left:48.063547pt;}
.x5e_c00357{left:50.040285pt;}
.x4b_c00357{left:51.078231pt;}
.x1e_c00357{left:54.048012pt;}
.x33_c00357{left:57.107093pt;}
.x43_c00357{left:58.423455pt;}
.x53_c00357{left:62.267121pt;}
.xd_c00357{left:68.353172pt;}
.x30_c00357{left:69.843592pt;}
.x23_c00357{left:71.673167pt;}
.x77_c00357{left:75.660303pt;}
.x56_c00357{left:76.901681pt;}
.x34_c00357{left:78.389077pt;}
.x74_c00357{left:79.762025pt;}
.x63_c00357{left:82.027253pt;}
.x14_c00357{left:83.637837pt;}
.x6d_c00357{left:85.766573pt;}
.x2b_c00357{left:86.951132pt;}
.x8_c00357{left:88.836500pt;}
.x39_c00357{left:90.702247pt;}
.x24_c00357{left:92.019265pt;}
.x66_c00357{left:94.746949pt;}
.x3_c00357{left:97.636000pt;}
.x44_c00357{left:98.698879pt;}
.x4c_c00357{left:100.253643pt;}
.x2c_c00357{left:101.252931pt;}
.x71_c00357{left:102.294488pt;}
.xe_c00357{left:103.840532pt;}
.x50_c00357{left:105.323428pt;}
.x1a_c00357{left:106.637244pt;}
.x70_c00357{left:108.728699pt;}
.x59_c00357{left:112.864259pt;}
.x35_c00357{left:116.311257pt;}
.x4_c00357{left:118.476000pt;}
.x4d_c00357{left:119.993157pt;}
.xf_c00357{left:121.430879pt;}
.x2d_c00357{left:123.079567pt;}
.x25_c00357{left:126.942667pt;}
.x64_c00357{left:128.841920pt;}
.x5a_c00357{left:131.364652pt;}
.x5_c00357{left:133.176000pt;}
.x3a_c00357{left:135.619436pt;}
.x6e_c00357{left:136.855496pt;}
.x15_c00357{left:138.174265pt;}
.x72_c00357{left:139.590956pt;}
.x9_c00357{left:142.158580pt;}
.x1_c00357{left:147.120000pt;}
.x31_c00357{left:149.690487pt;}
.x1b_c00357{left:152.146361pt;}
.x1f_c00357{left:156.448355pt;}
.xa_c00357{left:157.948979pt;}
.x5b_c00357{left:160.335723pt;}
.x28_c00357{left:163.331721pt;}
.x5f_c00357{left:165.310061pt;}
.x41_c00357{left:169.376979pt;}
.x2e_c00357{left:171.483216pt;}
.x16_c00357{left:176.087860pt;}
.x26_c00357{left:178.796497pt;}
.x78_c00357{left:180.639255pt;}
.x3b_c00357{left:181.552584pt;}
.x75_c00357{left:183.038025pt;}
.x69_c00357{left:184.373680pt;}
.x6_c00357{left:185.748000pt;}
.x49_c00357{left:189.212945pt;}
.x65_c00357{left:190.296587pt;}
.x10_c00357{left:191.512348pt;}
.x4e_c00357{left:194.176921pt;}
.x76_c00357{left:195.782025pt;}
.x17_c00357{left:198.098373pt;}
.x6f_c00357{left:199.213980pt;}
.xb_c00357{left:203.135255pt;}
.x5c_c00357{left:206.372685pt;}
.x4a_c00357{left:207.676181pt;}
.x3c_c00357{left:209.517515pt;}
.x67_c00357{left:211.643716pt;}
.x58_c00357{left:213.581567pt;}
.x11_c00357{left:215.560783pt;}
.x73_c00357{left:217.944027pt;}
.x29_c00357{left:219.063027pt;}
.x54_c00357{left:220.283121pt;}
.x60_c00357{left:223.751032pt;}
.x36_c00357{left:224.783968pt;}
.x1c_c00357{left:226.768751pt;}
.x20_c00357{left:227.981265pt;}
.x51_c00357{left:230.190636pt;}
.x6c_c00357{left:232.323096pt;}
.x32_c00357{left:234.533216pt;}
.x3d_c00357{left:236.421195pt;}
.x27_c00357{left:237.431041pt;}
.x37_c00357{left:238.746583pt;}
.x47_c00357{left:241.460404pt;}
.x6a_c00357{left:242.698247pt;}
.x4f_c00357{left:247.701295pt;}
.x2f_c00357{left:251.218297pt;}
.x21_c00357{left:252.238444pt;}
.x55_c00357{left:253.176455pt;}
.x18_c00357{left:254.250305pt;}
.x7_c00357{left:255.666667pt;}
.x3e_c00357{left:259.238456pt;}
.x61_c00357{left:261.612055pt;}
.x48_c00357{left:263.789635pt;}
.x12_c00357{left:265.240153pt;}
.x68_c00357{left:266.625619pt;}
.x22_c00357{left:269.772036pt;}
.x6b_c00357{left:271.140427pt;}
.x3f_c00357{left:275.069464pt;}
.x45_c00357{left:276.531987pt;}
.xc_c00357{left:277.976033pt;}
.x42_c00357{left:280.512840pt;}
.x13_c00357{left:282.029249pt;}
.x62_c00357{left:284.192127pt;}
.x2a_c00357{left:285.087903pt;}
.x19_c00357{left:290.137853pt;}
.x57_c00357{left:291.912433pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00358 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00358.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.019165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.020585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020585,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.030685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030685,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.032530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032530,0.000000,0.000000,0.250000,0,0);}
.mdc_c00358{transform:matrix(0.077385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077385,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.105255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105255,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00358{transform:matrix(0.126220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126220,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130420,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m89_c00358{transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);}
.m6c_c00358{transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147080,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150770,0.000000,0.000000,0.250000,0,0);}
.m9c_c00358{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m92_c00358{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.157595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157595,0.000000,0.000000,0.250000,0,0);}
.me7_c00358{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);}
.ma5_c00358{transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);}
.maf_c00358{transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161480,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.mad_c00358{transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m74_c00358{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.me9_c00358{transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164065,0.000000,0.000000,0.250000,0,0);}
.m6f_c00358{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164310,0.000000,0.000000,0.250000,0,0);}
.m6e_c00358{transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165030,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.mee_c00358{transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);}
.m53_c00358{transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);}
.m8a_c00358{transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);}
.med_c00358{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);}
.mb0_c00358{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.mac_c00358{transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.m88_c00358{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.me1_c00358{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00358{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.mb4_c00358{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176335,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.mc6_c00358{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.ma3_c00358{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178180,0.000000,0.000000,0.250000,0,0);}
.meb_c00358{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);}
.me3_c00358{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m2c_c00358{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mca_c00358{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.mb1_c00358{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.mec_c00358{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);}
.m95_c00358{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m9f_c00358{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.m5a_c00358{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00358{transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183715,0.000000,0.000000,0.250000,0,0);}
.m57_c00358{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184560,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184760,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.mcb_c00358{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.mb6_c00358{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.mc1_c00358{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m62_c00358{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.ma6_c00358{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.mc3_c00358{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188905,0.000000,0.000000,0.250000,0,0);}
.mb9_c00358{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00358{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mc7_c00358{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.ma7_c00358{transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);}
.mb3_c00358{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.m82_c00358{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193695,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m79_c00358{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00358{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.ma0_c00358{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mea_c00358{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mcd_c00358{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.m68_c00358{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m71_c00358{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.mb8_c00358{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00358{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197030,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.mb7_c00358{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199465,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m91_c00358{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.mc0_c00358{transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199895,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.mb5_c00358{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.mdf_c00358{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.md5_c00358{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);}
.mcf_c00358{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.mbe_c00358{transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.202415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202415,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);}
.me5_c00358{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.mde_c00358{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.me0_c00358{transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);}
.md1_c00358{transform:matrix(0.203920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203920,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m36_c00358{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);}
.mc9_c00358{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);}
.m7b_c00358{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);}
.me2_c00358{transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205785,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.206340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206340,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.md3_c00358{transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);}
.mcc_c00358{transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.mbd_c00358{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.m93_c00358{transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);}
.me6_c00358{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209485,0.000000,0.000000,0.250000,0,0);}
.m69_c00358{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212910,0.000000,0.000000,0.250000,0,0);}
.mce_c00358{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m9b_c00358{transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);}
.m75_c00358{transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);}
.m6a_c00358{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.mc5_c00358{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m72_c00358{transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);}
.md0_c00358{transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m84_c00358{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.mc8_c00358{transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);}
.mc2_c00358{transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219120,0.000000,0.000000,0.250000,0,0);}
.m73_c00358{transform:matrix(0.220015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220015,0.000000,0.000000,0.250000,0,0);}
.md6_c00358{transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);}
.mdd_c00358{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.md7_c00358{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.mdb_c00358{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.md9_c00358{transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222890,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.md4_c00358{transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);}
.m86_c00358{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);}
.mb2_c00358{transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225905,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);}
.m94_c00358{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);}
.mbc_c00358{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);}
.m66_c00358{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.232910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232910,0.000000,0.000000,0.250000,0,0);}
.mbf_c00358{transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233040,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00358{transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);}
.m77_c00358{transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.md2_c00358{transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);}
.m8f_c00358{transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00358{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.me4_c00358{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.me8_c00358{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.md8_c00358{transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258050,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.259060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259060,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);}
.m96_c00358{transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);}
.mba_c00358{transform:matrix(0.356940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356940,0.000000,0.000000,0.250000,0,0);}
.mda_c00358{transform:matrix(0.441335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441335,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.869415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869415,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00358{word-spacing:0.000000px;}
.fc0_c00358{color:transparent;}
.fs9_c00358{font-size:55.650000px;}
.fsa_c00358{font-size:57.750000px;}
.fsb_c00358{font-size:58.800000px;}
.fs7_c00358{font-size:59.850000px;}
.fs6_c00358{font-size:60.900000px;}
.fs3_c00358{font-size:61.950000px;}
.fs0_c00358{font-size:63.000000px;}
.fse_c00358{font-size:64.050000px;}
.fsd_c00358{font-size:65.100000px;}
.fs8_c00358{font-size:66.150000px;}
.fs5_c00358{font-size:67.200000px;}
.fsc_c00358{font-size:69.300000px;}
.fs2_c00358{font-size:70.350000px;}
.fs1_c00358{font-size:71.400000px;}
.fs4_c00358{font-size:73.500000px;}
.fsf_c00358{font-size:74.550000px;}
.y0_c00358{bottom:0.000000px;}
.y3b_c00358{bottom:24.622500px;}
.y3a_c00358{bottom:25.143000px;}
.y39_c00358{bottom:26.257500px;}
.y38_c00358{bottom:27.468000px;}
.y37_c00358{bottom:27.831000px;}
.y36_c00358{bottom:28.347000px;}
.y35_c00358{bottom:44.964000px;}
.y34_c00358{bottom:45.141000px;}
.y33_c00358{bottom:45.831000px;}
.y32_c00358{bottom:46.024500px;}
.y31_c00358{bottom:46.830000px;}
.y30_c00358{bottom:47.022000px;}
.y2f_c00358{bottom:47.515500px;}
.y2e_c00358{bottom:61.771500px;}
.y2d_c00358{bottom:79.176000px;}
.y2c_c00358{bottom:96.396000px;}
.y2b_c00358{bottom:113.220000px;}
.y2a_c00358{bottom:129.720000px;}
.y29_c00358{bottom:147.465000px;}
.y28_c00358{bottom:163.683000px;}
.y27_c00358{bottom:180.324000px;}
.y26_c00358{bottom:197.431500px;}
.y25_c00358{bottom:213.105000px;}
.y24_c00358{bottom:213.580500px;}
.y23_c00358{bottom:213.873000px;}
.y22_c00358{bottom:214.212000px;}
.y21_c00358{bottom:214.554000px;}
.y20_c00358{bottom:214.785000px;}
.y1f_c00358{bottom:215.772000px;}
.y1e_c00358{bottom:216.036000px;}
.y1d_c00358{bottom:216.751500px;}
.y1c_c00358{bottom:217.080000px;}
.y1b_c00358{bottom:231.184500px;}
.y1a_c00358{bottom:249.273000px;}
.y19_c00358{bottom:265.051500px;}
.y18_c00358{bottom:265.423500px;}
.y17_c00358{bottom:266.089500px;}
.y16_c00358{bottom:267.052500px;}
.y15_c00358{bottom:267.720000px;}
.y14_c00358{bottom:268.063500px;}
.y13_c00358{bottom:268.920000px;}
.y12_c00358{bottom:284.278500px;}
.y11_c00358{bottom:301.644000px;}
.y10_c00358{bottom:318.357000px;}
.yf_c00358{bottom:334.404000px;}
.ye_c00358{bottom:351.091500px;}
.yd_c00358{bottom:366.790500px;}
.yc_c00358{bottom:383.074500px;}
.yb_c00358{bottom:400.242000px;}
.ya_c00358{bottom:416.551500px;}
.y9_c00358{bottom:433.833000px;}
.y8_c00358{bottom:450.331500px;}
.y7_c00358{bottom:468.259500px;}
.y6_c00358{bottom:485.284500px;}
.y5_c00358{bottom:502.348500px;}
.y4_c00358{bottom:519.628500px;}
.y3_c00358{bottom:536.490000px;}
.y2_c00358{bottom:553.383000px;}
.y1_c00358{bottom:570.810000px;}
.hb_c00358{height:55.650000px;}
.hc_c00358{height:57.750000px;}
.hd_c00358{height:58.800000px;}
.h9_c00358{height:59.850000px;}
.h8_c00358{height:60.900000px;}
.h5_c00358{height:61.950000px;}
.h2_c00358{height:63.000000px;}
.h10_c00358{height:64.050000px;}
.hf_c00358{height:65.100000px;}
.ha_c00358{height:66.150000px;}
.h7_c00358{height:67.200000px;}
.he_c00358{height:69.300000px;}
.h4_c00358{height:70.350000px;}
.h3_c00358{height:71.400000px;}
.h6_c00358{height:73.500000px;}
.h11_c00358{height:74.550000px;}
.h0_c00358{height:613.170000px;}
.h1_c00358{height:613.500000px;}
.w0_c00358{width:359.100000px;}
.w1_c00358{width:359.250000px;}
.x0_c00358{left:0.000000px;}
.x12_c00358{left:19.980000px;}
.x3_c00358{left:21.870000px;}
.x1_c00358{left:22.950000px;}
.x69_c00358{left:24.031500px;}
.x24_c00358{left:26.460000px;}
.x37_c00358{left:28.080000px;}
.x59_c00358{left:29.700000px;}
.x6f_c00358{left:32.131500px;}
.x64_c00358{left:34.831500px;}
.x7f_c00358{left:37.122000px;}
.x1f_c00358{left:40.770000px;}
.x13_c00358{left:42.660000px;}
.x4b_c00358{left:44.550000px;}
.x18_c00358{left:45.630000px;}
.x78_c00358{left:48.871500px;}
.x3d_c00358{left:50.490000px;}
.x73_c00358{left:51.571500px;}
.x20_c00358{left:52.920000px;}
.x54_c00358{left:59.940000px;}
.x25_c00358{left:61.560000px;}
.x6a_c00358{left:66.421500px;}
.xd_c00358{left:68.040000px;}
.x81_c00358{left:71.149500px;}
.x2e_c00358{left:72.360000px;}
.x31_c00358{left:73.710000px;}
.x5a_c00358{left:75.600000px;}
.x4_c00358{left:77.220000px;}
.x3e_c00358{left:79.110000px;}
.x61_c00358{left:80.191500px;}
.x55_c00358{left:81.810000px;}
.x26_c00358{left:83.700000px;}
.x38_c00358{left:93.420000px;}
.xe_c00358{left:95.040000px;}
.x5_c00358{left:97.470000px;}
.x32_c00358{left:99.090000px;}
.x43_c00358{left:101.250000px;}
.x19_c00358{left:103.140000px;}
.x79_c00358{left:104.221500px;}
.x62_c00358{left:105.301500px;}
.x29_c00358{left:106.650000px;}
.x6c_c00358{left:107.731500px;}
.x7d_c00358{left:110.701500px;}
.x65_c00358{left:112.051500px;}
.x14_c00358{left:116.100000px;}
.x4c_c00358{left:117.720000px;}
.x33_c00358{left:118.800000px;}
.x21_c00358{left:122.580000px;}
.x6_c00358{left:126.360000px;}
.x63_c00358{left:130.951500px;}
.x74_c00358{left:132.031500px;}
.x56_c00358{left:134.730000px;}
.x66_c00358{left:136.081500px;}
.x2a_c00358{left:138.240000px;}
.x4e_c00358{left:140.130000px;}
.x22_c00358{left:142.020000px;}
.x52_c00358{left:145.885500px;}
.x44_c00358{left:148.500000px;}
.x2_c00358{left:152.280000px;}
.x6d_c00358{left:153.631500px;}
.x2b_c00358{left:154.710000px;}
.x27_c00358{left:157.410000px;}
.x3f_c00358{left:159.030000px;}
.x1a_c00358{left:160.920000px;}
.x45_c00358{left:163.620000px;}
.x7_c00358{left:166.860000px;}
.x7a_c00358{left:172.261500px;}
.x1b_c00358{left:174.150000px;}
.xf_c00358{left:175.230000px;}
.x2f_c00358{left:177.930000px;}
.x6b_c00358{left:181.441500px;}
.x34_c00358{left:183.330000px;}
.x3b_c00358{left:185.490000px;}
.x49_c00358{left:186.570000px;}
.x15_c00358{left:187.920000px;}
.x8_c00358{left:189.000000px;}
.x80_c00358{left:190.227000px;}
.x39_c00358{left:191.970000px;}
.x75_c00358{left:193.321500px;}
.x10_c00358{left:197.100000px;}
.x4f_c00358{left:199.530000px;}
.x71_c00358{left:200.611500px;}
.x5d_c00358{left:202.599000px;}
.x1c_c00358{left:203.850000px;}
.x3a_c00358{left:206.280000px;}
.x16_c00358{left:207.630000px;}
.x53_c00358{left:210.130500px;}
.x72_c00358{left:214.651500px;}
.x46_c00358{left:222.480000px;}
.x7b_c00358{left:224.101500px;}
.x30_c00358{left:225.450000px;}
.x5e_c00358{left:226.990500px;}
.x9_c00358{left:228.690000px;}
.x40_c00358{left:233.820000px;}
.x2c_c00358{left:236.520000px;}
.x5b_c00358{left:238.140000px;}
.x57_c00358{left:239.490000px;}
.x7c_c00358{left:241.111500px;}
.x3c_c00358{left:244.620000px;}
.x6e_c00358{left:246.241500px;}
.x42_c00358{left:247.860000px;}
.x23_c00358{left:250.560000px;}
.x50_c00358{left:251.910000px;}
.x35_c00358{left:253.530000px;}
.x58_c00358{left:255.420000px;}
.x17_c00358{left:256.500000px;}
.x1d_c00358{left:259.470000px;}
.x76_c00358{left:261.361500px;}
.x28_c00358{left:263.250000px;}
.x4d_c00358{left:268.110000px;}
.x36_c00358{left:270.270000px;}
.x5f_c00358{left:272.055000px;}
.x47_c00358{left:273.240000px;}
.xa_c00358{left:276.210000px;}
.x11_c00358{left:278.370000px;}
.x4a_c00358{left:280.260000px;}
.x77_c00358{left:281.341500px;}
.x41_c00358{left:285.390000px;}
.x67_c00358{left:287.011500px;}
.x48_c00358{left:292.410000px;}
.x51_c00358{left:295.650000px;}
.x1e_c00358{left:297.000000px;}
.xb_c00358{left:299.430000px;}
.x68_c00358{left:300.781500px;}
.x2d_c00358{left:303.210000px;}
.x60_c00358{left:306.012000px;}
.x70_c00358{left:310.231500px;}
.x7e_c00358{left:311.311500px;}
.x5c_c00358{left:312.930000px;}
.xc_c00358{left:326.700000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:0.000000pt;}
.fs9_c00358{font-size:49.466667pt;}
.fsa_c00358{font-size:51.333333pt;}
.fsb_c00358{font-size:52.266667pt;}
.fs7_c00358{font-size:53.200000pt;}
.fs6_c00358{font-size:54.133333pt;}
.fs3_c00358{font-size:55.066667pt;}
.fs0_c00358{font-size:56.000000pt;}
.fse_c00358{font-size:56.933333pt;}
.fsd_c00358{font-size:57.866667pt;}
.fs8_c00358{font-size:58.800000pt;}
.fs5_c00358{font-size:59.733333pt;}
.fsc_c00358{font-size:61.600000pt;}
.fs2_c00358{font-size:62.533333pt;}
.fs1_c00358{font-size:63.466667pt;}
.fs4_c00358{font-size:65.333333pt;}
.fsf_c00358{font-size:66.266667pt;}
.y0_c00358{bottom:0.000000pt;}
.y3b_c00358{bottom:21.886667pt;}
.y3a_c00358{bottom:22.349333pt;}
.y39_c00358{bottom:23.340000pt;}
.y38_c00358{bottom:24.416000pt;}
.y37_c00358{bottom:24.738667pt;}
.y36_c00358{bottom:25.197333pt;}
.y35_c00358{bottom:39.968000pt;}
.y34_c00358{bottom:40.125333pt;}
.y33_c00358{bottom:40.738667pt;}
.y32_c00358{bottom:40.910667pt;}
.y31_c00358{bottom:41.626667pt;}
.y30_c00358{bottom:41.797333pt;}
.y2f_c00358{bottom:42.236000pt;}
.y2e_c00358{bottom:54.908000pt;}
.y2d_c00358{bottom:70.378667pt;}
.y2c_c00358{bottom:85.685333pt;}
.y2b_c00358{bottom:100.640000pt;}
.y2a_c00358{bottom:115.306667pt;}
.y29_c00358{bottom:131.080000pt;}
.y28_c00358{bottom:145.496000pt;}
.y27_c00358{bottom:160.288000pt;}
.y26_c00358{bottom:175.494667pt;}
.y25_c00358{bottom:189.426667pt;}
.y24_c00358{bottom:189.849333pt;}
.y23_c00358{bottom:190.109333pt;}
.y22_c00358{bottom:190.410667pt;}
.y21_c00358{bottom:190.714667pt;}
.y20_c00358{bottom:190.920000pt;}
.y1f_c00358{bottom:191.797333pt;}
.y1e_c00358{bottom:192.032000pt;}
.y1d_c00358{bottom:192.668000pt;}
.y1c_c00358{bottom:192.960000pt;}
.y1b_c00358{bottom:205.497333pt;}
.y1a_c00358{bottom:221.576000pt;}
.y19_c00358{bottom:235.601333pt;}
.y18_c00358{bottom:235.932000pt;}
.y17_c00358{bottom:236.524000pt;}
.y16_c00358{bottom:237.380000pt;}
.y15_c00358{bottom:237.973333pt;}
.y14_c00358{bottom:238.278667pt;}
.y13_c00358{bottom:239.040000pt;}
.y12_c00358{bottom:252.692000pt;}
.y11_c00358{bottom:268.128000pt;}
.y10_c00358{bottom:282.984000pt;}
.yf_c00358{bottom:297.248000pt;}
.ye_c00358{bottom:312.081333pt;}
.yd_c00358{bottom:326.036000pt;}
.yc_c00358{bottom:340.510667pt;}
.yb_c00358{bottom:355.770667pt;}
.ya_c00358{bottom:370.268000pt;}
.y9_c00358{bottom:385.629333pt;}
.y8_c00358{bottom:400.294667pt;}
.y7_c00358{bottom:416.230667pt;}
.y6_c00358{bottom:431.364000pt;}
.y5_c00358{bottom:446.532000pt;}
.y4_c00358{bottom:461.892000pt;}
.y3_c00358{bottom:476.880000pt;}
.y2_c00358{bottom:491.896000pt;}
.y1_c00358{bottom:507.386667pt;}
.hb_c00358{height:49.466667pt;}
.hc_c00358{height:51.333333pt;}
.hd_c00358{height:52.266667pt;}
.h9_c00358{height:53.200000pt;}
.h8_c00358{height:54.133333pt;}
.h5_c00358{height:55.066667pt;}
.h2_c00358{height:56.000000pt;}
.h10_c00358{height:56.933333pt;}
.hf_c00358{height:57.866667pt;}
.ha_c00358{height:58.800000pt;}
.h7_c00358{height:59.733333pt;}
.he_c00358{height:61.600000pt;}
.h4_c00358{height:62.533333pt;}
.h3_c00358{height:63.466667pt;}
.h6_c00358{height:65.333333pt;}
.h11_c00358{height:66.266667pt;}
.h0_c00358{height:545.040000pt;}
.h1_c00358{height:545.333333pt;}
.w0_c00358{width:319.200000pt;}
.w1_c00358{width:319.333333pt;}
.x0_c00358{left:0.000000pt;}
.x12_c00358{left:17.760000pt;}
.x3_c00358{left:19.440000pt;}
.x1_c00358{left:20.400000pt;}
.x69_c00358{left:21.361333pt;}
.x24_c00358{left:23.520000pt;}
.x37_c00358{left:24.960000pt;}
.x59_c00358{left:26.400000pt;}
.x6f_c00358{left:28.561333pt;}
.x64_c00358{left:30.961333pt;}
.x7f_c00358{left:32.997333pt;}
.x1f_c00358{left:36.240000pt;}
.x13_c00358{left:37.920000pt;}
.x4b_c00358{left:39.600000pt;}
.x18_c00358{left:40.560000pt;}
.x78_c00358{left:43.441333pt;}
.x3d_c00358{left:44.880000pt;}
.x73_c00358{left:45.841333pt;}
.x20_c00358{left:47.040000pt;}
.x54_c00358{left:53.280000pt;}
.x25_c00358{left:54.720000pt;}
.x6a_c00358{left:59.041333pt;}
.xd_c00358{left:60.480000pt;}
.x81_c00358{left:63.244000pt;}
.x2e_c00358{left:64.320000pt;}
.x31_c00358{left:65.520000pt;}
.x5a_c00358{left:67.200000pt;}
.x4_c00358{left:68.640000pt;}
.x3e_c00358{left:70.320000pt;}
.x61_c00358{left:71.281333pt;}
.x55_c00358{left:72.720000pt;}
.x26_c00358{left:74.400000pt;}
.x38_c00358{left:83.040000pt;}
.xe_c00358{left:84.480000pt;}
.x5_c00358{left:86.640000pt;}
.x32_c00358{left:88.080000pt;}
.x43_c00358{left:90.000000pt;}
.x19_c00358{left:91.680000pt;}
.x79_c00358{left:92.641333pt;}
.x62_c00358{left:93.601333pt;}
.x29_c00358{left:94.800000pt;}
.x6c_c00358{left:95.761333pt;}
.x7d_c00358{left:98.401333pt;}
.x65_c00358{left:99.601333pt;}
.x14_c00358{left:103.200000pt;}
.x4c_c00358{left:104.640000pt;}
.x33_c00358{left:105.600000pt;}
.x21_c00358{left:108.960000pt;}
.x6_c00358{left:112.320000pt;}
.x63_c00358{left:116.401333pt;}
.x74_c00358{left:117.361333pt;}
.x56_c00358{left:119.760000pt;}
.x66_c00358{left:120.961333pt;}
.x2a_c00358{left:122.880000pt;}
.x4e_c00358{left:124.560000pt;}
.x22_c00358{left:126.240000pt;}
.x52_c00358{left:129.676000pt;}
.x44_c00358{left:132.000000pt;}
.x2_c00358{left:135.360000pt;}
.x6d_c00358{left:136.561333pt;}
.x2b_c00358{left:137.520000pt;}
.x27_c00358{left:139.920000pt;}
.x3f_c00358{left:141.360000pt;}
.x1a_c00358{left:143.040000pt;}
.x45_c00358{left:145.440000pt;}
.x7_c00358{left:148.320000pt;}
.x7a_c00358{left:153.121333pt;}
.x1b_c00358{left:154.800000pt;}
.xf_c00358{left:155.760000pt;}
.x2f_c00358{left:158.160000pt;}
.x6b_c00358{left:161.281333pt;}
.x34_c00358{left:162.960000pt;}
.x3b_c00358{left:164.880000pt;}
.x49_c00358{left:165.840000pt;}
.x15_c00358{left:167.040000pt;}
.x8_c00358{left:168.000000pt;}
.x80_c00358{left:169.090667pt;}
.x39_c00358{left:170.640000pt;}
.x75_c00358{left:171.841333pt;}
.x10_c00358{left:175.200000pt;}
.x4f_c00358{left:177.360000pt;}
.x71_c00358{left:178.321333pt;}
.x5d_c00358{left:180.088000pt;}
.x1c_c00358{left:181.200000pt;}
.x3a_c00358{left:183.360000pt;}
.x16_c00358{left:184.560000pt;}
.x53_c00358{left:186.782667pt;}
.x72_c00358{left:190.801333pt;}
.x46_c00358{left:197.760000pt;}
.x7b_c00358{left:199.201333pt;}
.x30_c00358{left:200.400000pt;}
.x5e_c00358{left:201.769333pt;}
.x9_c00358{left:203.280000pt;}
.x40_c00358{left:207.840000pt;}
.x2c_c00358{left:210.240000pt;}
.x5b_c00358{left:211.680000pt;}
.x57_c00358{left:212.880000pt;}
.x7c_c00358{left:214.321333pt;}
.x3c_c00358{left:217.440000pt;}
.x6e_c00358{left:218.881333pt;}
.x42_c00358{left:220.320000pt;}
.x23_c00358{left:222.720000pt;}
.x50_c00358{left:223.920000pt;}
.x35_c00358{left:225.360000pt;}
.x58_c00358{left:227.040000pt;}
.x17_c00358{left:228.000000pt;}
.x1d_c00358{left:230.640000pt;}
.x76_c00358{left:232.321333pt;}
.x28_c00358{left:234.000000pt;}
.x4d_c00358{left:238.320000pt;}
.x36_c00358{left:240.240000pt;}
.x5f_c00358{left:241.826667pt;}
.x47_c00358{left:242.880000pt;}
.xa_c00358{left:245.520000pt;}
.x11_c00358{left:247.440000pt;}
.x4a_c00358{left:249.120000pt;}
.x77_c00358{left:250.081333pt;}
.x41_c00358{left:253.680000pt;}
.x67_c00358{left:255.121333pt;}
.x48_c00358{left:259.920000pt;}
.x51_c00358{left:262.800000pt;}
.x1e_c00358{left:264.000000pt;}
.xb_c00358{left:266.160000pt;}
.x68_c00358{left:267.361333pt;}
.x2d_c00358{left:269.520000pt;}
.x60_c00358{left:272.010667pt;}
.x70_c00358{left:275.761333pt;}
.x7e_c00358{left:276.721333pt;}
.x5c_c00358{left:278.160000pt;}
.xc_c00358{left:290.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00359 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.109455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109455,0.000000,0.000000,0.250000,0,0);}
.m95_c00359{transform:matrix(0.142307,-0.002277,0.003999,0.249968,0,0);-ms-transform:matrix(0.142307,-0.002277,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142307,-0.002277,0.003999,0.249968,0,0);}
.mad_c00359{transform:matrix(0.148456,-0.002375,0.003999,0.249968,0,0);-ms-transform:matrix(0.148456,-0.002375,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148456,-0.002375,0.003999,0.249968,0,0);}
.mca_c00359{transform:matrix(0.151191,-0.002419,0.003999,0.249968,0,0);-ms-transform:matrix(0.151191,-0.002419,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151191,-0.002419,0.003999,0.249968,0,0);}
.mde_c00359{transform:matrix(0.151826,-0.002429,0.003999,0.249968,0,0);-ms-transform:matrix(0.151826,-0.002429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151826,-0.002429,0.003999,0.249968,0,0);}
.mf_c00359{transform:matrix(0.151933,-0.002279,0.003750,0.249972,0,0);-ms-transform:matrix(0.151933,-0.002279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151933,-0.002279,0.003750,0.249972,0,0);}
.mbe_c00359{transform:matrix(0.154655,-0.002474,0.003999,0.249968,0,0);-ms-transform:matrix(0.154655,-0.002474,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154655,-0.002474,0.003999,0.249968,0,0);}
.m5c_c00359{transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);-ms-transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154683,-0.002320,0.003750,0.249972,0,0);}
.m69_c00359{transform:matrix(0.155570,-0.002489,0.003999,0.249968,0,0);-ms-transform:matrix(0.155570,-0.002489,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155570,-0.002489,0.003999,0.249968,0,0);}
.m8_c00359{transform:matrix(0.155922,-0.002339,0.003750,0.249972,0,0);-ms-transform:matrix(0.155922,-0.002339,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155922,-0.002339,0.003750,0.249972,0,0);}
.mb5_c00359{transform:matrix(0.158300,-0.002533,0.003999,0.249968,0,0);-ms-transform:matrix(0.158300,-0.002533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158300,-0.002533,0.003999,0.249968,0,0);}
.md_c00359{transform:matrix(0.158317,-0.002375,0.003750,0.249972,0,0);-ms-transform:matrix(0.158317,-0.002375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158317,-0.002375,0.003750,0.249972,0,0);}
.me2_c00359{transform:matrix(0.158925,-0.002543,0.003999,0.249968,0,0);-ms-transform:matrix(0.158925,-0.002543,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158925,-0.002543,0.003999,0.249968,0,0);}
.m3_c00359{transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-ms-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160772,-0.002412,0.003750,0.249972,0,0);}
.ma9_c00359{transform:matrix(0.161769,-0.002588,0.003999,0.249968,0,0);-ms-transform:matrix(0.161769,-0.002588,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161769,-0.002588,0.003999,0.249968,0,0);}
.mcc_c00359{transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);-ms-transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162334,-0.002597,0.003999,0.249968,0,0);}
.maa_c00359{transform:matrix(0.163249,-0.002612,0.003999,0.249968,0,0);-ms-transform:matrix(0.163249,-0.002612,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163249,-0.002612,0.003999,0.249968,0,0);}
.m4_c00359{transform:matrix(0.163642,-0.002455,0.003750,0.249972,0,0);-ms-transform:matrix(0.163642,-0.002455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163642,-0.002455,0.003750,0.249972,0,0);}
.mac_c00359{transform:matrix(0.163779,-0.002620,0.003999,0.249968,0,0);-ms-transform:matrix(0.163779,-0.002620,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163779,-0.002620,0.003999,0.249968,0,0);}
.mab_c00359{transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);-ms-transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);}
.m47_c00359{transform:matrix(0.165561,-0.002483,0.003750,0.249972,0,0);-ms-transform:matrix(0.165561,-0.002483,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165561,-0.002483,0.003750,0.249972,0,0);}
.m6d_c00359{transform:matrix(0.165639,-0.002650,0.003999,0.249968,0,0);-ms-transform:matrix(0.165639,-0.002650,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165639,-0.002650,0.003999,0.249968,0,0);}
.md8_c00359{transform:matrix(0.165699,-0.002651,0.003999,0.249968,0,0);-ms-transform:matrix(0.165699,-0.002651,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165699,-0.002651,0.003999,0.249968,0,0);}
.mba_c00359{transform:matrix(0.166164,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166164,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166164,-0.002659,0.003999,0.249968,0,0);}
.m16_c00359{transform:matrix(0.167116,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167116,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167116,-0.002507,0.003750,0.249972,0,0);}
.m5_c00359{transform:matrix(0.167461,-0.002512,0.003750,0.249972,0,0);-ms-transform:matrix(0.167461,-0.002512,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167461,-0.002512,0.003750,0.249972,0,0);}
.mbc_c00359{transform:matrix(0.167474,-0.002680,0.003999,0.249968,0,0);-ms-transform:matrix(0.167474,-0.002680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167474,-0.002680,0.003999,0.249968,0,0);}
.m59_c00359{transform:matrix(0.167491,-0.002512,0.003750,0.249972,0,0);-ms-transform:matrix(0.167491,-0.002512,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167491,-0.002512,0.003750,0.249972,0,0);}
.m9f_c00359{transform:matrix(0.168403,-0.002694,0.003999,0.249968,0,0);-ms-transform:matrix(0.168403,-0.002694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168403,-0.002694,0.003999,0.249968,0,0);}
.ma_c00359{transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);-ms-transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);}
.m8b_c00359{transform:matrix(0.169118,-0.002706,0.003999,0.249968,0,0);-ms-transform:matrix(0.169118,-0.002706,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169118,-0.002706,0.003999,0.249968,0,0);}
.m53_c00359{transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);-ms-transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169696,-0.002545,0.003750,0.249972,0,0);}
.m4d_c00359{transform:matrix(0.170101,-0.002552,0.003750,0.249972,0,0);-ms-transform:matrix(0.170101,-0.002552,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170101,-0.002552,0.003750,0.249972,0,0);}
.m9b_c00359{transform:matrix(0.170818,-0.002733,0.003999,0.249968,0,0);-ms-transform:matrix(0.170818,-0.002733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170818,-0.002733,0.003999,0.249968,0,0);}
.m5b_c00359{transform:matrix(0.171626,-0.002574,0.003750,0.249972,0,0);-ms-transform:matrix(0.171626,-0.002574,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171626,-0.002574,0.003750,0.249972,0,0);}
.m4c_c00359{transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);}
.m5d_c00359{transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);-ms-transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);}
.mb8_c00359{transform:matrix(0.174308,-0.002789,0.003999,0.249968,0,0);-ms-transform:matrix(0.174308,-0.002789,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174308,-0.002789,0.003999,0.249968,0,0);}
.mdf_c00359{transform:matrix(0.174508,-0.002792,0.003999,0.249968,0,0);-ms-transform:matrix(0.174508,-0.002792,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174508,-0.002792,0.003999,0.249968,0,0);}
.m66_c00359{transform:matrix(0.174603,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174603,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174603,-0.002794,0.003999,0.249968,0,0);}
.mb3_c00359{transform:matrix(0.175208,-0.002803,0.003999,0.249968,0,0);-ms-transform:matrix(0.175208,-0.002803,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175208,-0.002803,0.003999,0.249968,0,0);}
.mdb_c00359{transform:matrix(0.175822,-0.002813,0.003999,0.249968,0,0);-ms-transform:matrix(0.175822,-0.002813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175822,-0.002813,0.003999,0.249968,0,0);}
.mb0_c00359{transform:matrix(0.175877,-0.002814,0.003999,0.249968,0,0);-ms-transform:matrix(0.175877,-0.002814,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175877,-0.002814,0.003999,0.249968,0,0);}
.m1f_c00359{transform:matrix(0.176110,-0.002642,0.003750,0.249972,0,0);-ms-transform:matrix(0.176110,-0.002642,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176110,-0.002642,0.003750,0.249972,0,0);}
.m7_c00359{transform:matrix(0.176685,-0.002650,0.003750,0.249972,0,0);-ms-transform:matrix(0.176685,-0.002650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176685,-0.002650,0.003750,0.249972,0,0);}
.m6b_c00359{transform:matrix(0.176897,-0.002830,0.003999,0.249968,0,0);-ms-transform:matrix(0.176897,-0.002830,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176897,-0.002830,0.003999,0.249968,0,0);}
.m6_c00359{transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176900,-0.002654,0.003750,0.249972,0,0);}
.m45_c00359{transform:matrix(0.177370,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177370,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177370,-0.002661,0.003750,0.249972,0,0);}
.m13_c00359{transform:matrix(0.177575,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177575,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177575,-0.002664,0.003750,0.249972,0,0);}
.m1e_c00359{transform:matrix(0.178205,-0.002673,0.003750,0.249972,0,0);-ms-transform:matrix(0.178205,-0.002673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178205,-0.002673,0.003750,0.249972,0,0);}
.m44_c00359{transform:matrix(0.178495,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178495,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178495,-0.002677,0.003750,0.249972,0,0);}
.mc_c00359{transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);-ms-transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);}
.m37_c00359{transform:matrix(0.178660,-0.002680,0.003750,0.249972,0,0);-ms-transform:matrix(0.178660,-0.002680,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178660,-0.002680,0.003750,0.249972,0,0);}
.m11_c00359{transform:matrix(0.179050,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179050,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179050,-0.002686,0.003750,0.249972,0,0);}
.m20_c00359{transform:matrix(0.179750,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179750,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179750,-0.002696,0.003750,0.249972,0,0);}
.m4b_c00359{transform:matrix(0.180135,-0.002702,0.003750,0.249972,0,0);-ms-transform:matrix(0.180135,-0.002702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180135,-0.002702,0.003750,0.249972,0,0);}
.md7_c00359{transform:matrix(0.180677,-0.002891,0.003999,0.249968,0,0);-ms-transform:matrix(0.180677,-0.002891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180677,-0.002891,0.003999,0.249968,0,0);}
.m5e_c00359{transform:matrix(0.181035,-0.002716,0.003750,0.249972,0,0);-ms-transform:matrix(0.181035,-0.002716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181035,-0.002716,0.003750,0.249972,0,0);}
.m6a_c00359{transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);-ms-transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181157,-0.002899,0.003999,0.249968,0,0);}
.m51_c00359{transform:matrix(0.181175,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181175,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181175,-0.002718,0.003750,0.249972,0,0);}
.m3b_c00359{transform:matrix(0.181770,-0.002727,0.003750,0.249972,0,0);-ms-transform:matrix(0.181770,-0.002727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181770,-0.002727,0.003750,0.249972,0,0);}
.m65_c00359{transform:matrix(0.181822,-0.002909,0.003999,0.249968,0,0);-ms-transform:matrix(0.181822,-0.002909,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181822,-0.002909,0.003999,0.249968,0,0);}
.mb6_c00359{transform:matrix(0.181892,-0.002910,0.003999,0.249968,0,0);-ms-transform:matrix(0.181892,-0.002910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181892,-0.002910,0.003999,0.249968,0,0);}
.mb4_c00359{transform:matrix(0.182237,-0.002916,0.003999,0.249968,0,0);-ms-transform:matrix(0.182237,-0.002916,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182237,-0.002916,0.003999,0.249968,0,0);}
.m81_c00359{transform:matrix(0.182312,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182312,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182312,-0.002917,0.003999,0.249968,0,0);}
.me0_c00359{transform:matrix(0.182342,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182342,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182342,-0.002917,0.003999,0.249968,0,0);}
.mc1_c00359{transform:matrix(0.183317,-0.002933,0.003999,0.249968,0,0);-ms-transform:matrix(0.183317,-0.002933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183317,-0.002933,0.003999,0.249968,0,0);}
.m8e_c00359{transform:matrix(0.183726,-0.002940,0.003999,0.249968,0,0);-ms-transform:matrix(0.183726,-0.002940,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183726,-0.002940,0.003999,0.249968,0,0);}
.mc8_c00359{transform:matrix(0.183751,-0.002940,0.003999,0.249968,0,0);-ms-transform:matrix(0.183751,-0.002940,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183751,-0.002940,0.003999,0.249968,0,0);}
.m15_c00359{transform:matrix(0.184124,-0.002762,0.003750,0.249972,0,0);-ms-transform:matrix(0.184124,-0.002762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184124,-0.002762,0.003750,0.249972,0,0);}
.m23_c00359{transform:matrix(0.184229,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184229,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184229,-0.002763,0.003750,0.249972,0,0);}
.m7e_c00359{transform:matrix(0.184431,-0.002951,0.003999,0.249968,0,0);-ms-transform:matrix(0.184431,-0.002951,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184431,-0.002951,0.003999,0.249968,0,0);}
.m6f_c00359{transform:matrix(0.184486,-0.002952,0.003999,0.249968,0,0);-ms-transform:matrix(0.184486,-0.002952,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184486,-0.002952,0.003999,0.249968,0,0);}
.m56_c00359{transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);-ms-transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);}
.ma3_c00359{transform:matrix(0.185556,-0.002969,0.003999,0.249968,0,0);-ms-transform:matrix(0.185556,-0.002969,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185556,-0.002969,0.003999,0.249968,0,0);}
.m98_c00359{transform:matrix(0.185801,-0.002973,0.003999,0.249968,0,0);-ms-transform:matrix(0.185801,-0.002973,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185801,-0.002973,0.003999,0.249968,0,0);}
.m38_c00359{transform:matrix(0.186699,-0.002800,0.003750,0.249972,0,0);-ms-transform:matrix(0.186699,-0.002800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186699,-0.002800,0.003750,0.249972,0,0);}
.m4f_c00359{transform:matrix(0.187739,-0.002816,0.003750,0.249972,0,0);-ms-transform:matrix(0.187739,-0.002816,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187739,-0.002816,0.003750,0.249972,0,0);}
.m25_c00359{transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);-ms-transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);}
.me3_c00359{transform:matrix(0.187966,-0.003007,0.003999,0.249968,0,0);-ms-transform:matrix(0.187966,-0.003007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187966,-0.003007,0.003999,0.249968,0,0);}
.m49_c00359{transform:matrix(0.187999,-0.002820,0.003750,0.249972,0,0);-ms-transform:matrix(0.187999,-0.002820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187999,-0.002820,0.003750,0.249972,0,0);}
.m9_c00359{transform:matrix(0.188179,-0.002823,0.003750,0.249972,0,0);-ms-transform:matrix(0.188179,-0.002823,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188179,-0.002823,0.003750,0.249972,0,0);}
.mb_c00359{transform:matrix(0.188309,-0.002825,0.003750,0.249972,0,0);-ms-transform:matrix(0.188309,-0.002825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188309,-0.002825,0.003750,0.249972,0,0);}
.m57_c00359{transform:matrix(0.188324,-0.002825,0.003750,0.249972,0,0);-ms-transform:matrix(0.188324,-0.002825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188324,-0.002825,0.003750,0.249972,0,0);}
.meb_c00359{transform:matrix(0.188351,-0.004897,0.006498,0.249916,0,0);-ms-transform:matrix(0.188351,-0.004897,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188351,-0.004897,0.006498,0.249916,0,0);}
.m94_c00359{transform:matrix(0.188386,-0.003014,0.003999,0.249968,0,0);-ms-transform:matrix(0.188386,-0.003014,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188386,-0.003014,0.003999,0.249968,0,0);}
.m7c_c00359{transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);-ms-transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);}
.m12_c00359{transform:matrix(0.189149,-0.002837,0.003750,0.249972,0,0);-ms-transform:matrix(0.189149,-0.002837,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189149,-0.002837,0.003750,0.249972,0,0);}
.m4a_c00359{transform:matrix(0.190259,-0.002854,0.003750,0.249972,0,0);-ms-transform:matrix(0.190259,-0.002854,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190259,-0.002854,0.003750,0.249972,0,0);}
.m5a_c00359{transform:matrix(0.190394,-0.002856,0.003750,0.249972,0,0);-ms-transform:matrix(0.190394,-0.002856,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190394,-0.002856,0.003750,0.249972,0,0);}
.m87_c00359{transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);-ms-transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);}
.m72_c00359{transform:matrix(0.190701,-0.003051,0.003999,0.249968,0,0);-ms-transform:matrix(0.190701,-0.003051,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190701,-0.003051,0.003999,0.249968,0,0);}
.m80_c00359{transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-ms-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);}
.mcd_c00359{transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190976,-0.003056,0.003999,0.249968,0,0);}
.mc6_c00359{transform:matrix(0.191780,-0.003068,0.003999,0.249968,0,0);-ms-transform:matrix(0.191780,-0.003068,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191780,-0.003068,0.003999,0.249968,0,0);}
.m52_c00359{transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191858,-0.002878,0.003750,0.249972,0,0);}
.m86_c00359{transform:matrix(0.191935,-0.003071,0.003999,0.249968,0,0);-ms-transform:matrix(0.191935,-0.003071,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191935,-0.003071,0.003999,0.249968,0,0);}
.mc2_c00359{transform:matrix(0.192215,-0.003075,0.003999,0.249968,0,0);-ms-transform:matrix(0.192215,-0.003075,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192215,-0.003075,0.003999,0.249968,0,0);}
.m3a_c00359{transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);}
.m7d_c00359{transform:matrix(0.192730,-0.003084,0.003999,0.249968,0,0);-ms-transform:matrix(0.192730,-0.003084,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192730,-0.003084,0.003999,0.249968,0,0);}
.m8f_c00359{transform:matrix(0.192985,-0.003088,0.003999,0.249968,0,0);-ms-transform:matrix(0.192985,-0.003088,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192985,-0.003088,0.003999,0.249968,0,0);}
.ma2_c00359{transform:matrix(0.193770,-0.003100,0.003999,0.249968,0,0);-ms-transform:matrix(0.193770,-0.003100,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193770,-0.003100,0.003999,0.249968,0,0);}
.mc0_c00359{transform:matrix(0.193860,-0.003102,0.003999,0.249968,0,0);-ms-transform:matrix(0.193860,-0.003102,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193860,-0.003102,0.003999,0.249968,0,0);}
.m70_c00359{transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);-ms-transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);}
.m8c_c00359{transform:matrix(0.194090,-0.003105,0.003999,0.249968,0,0);-ms-transform:matrix(0.194090,-0.003105,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194090,-0.003105,0.003999,0.249968,0,0);}
.m24_c00359{transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194178,-0.002913,0.003750,0.249972,0,0);}
.m85_c00359{transform:matrix(0.194520,-0.003112,0.003999,0.249968,0,0);-ms-transform:matrix(0.194520,-0.003112,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194520,-0.003112,0.003999,0.249968,0,0);}
.m8a_c00359{transform:matrix(0.194565,-0.003113,0.003999,0.249968,0,0);-ms-transform:matrix(0.194565,-0.003113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194565,-0.003113,0.003999,0.249968,0,0);}
.m36_c00359{transform:matrix(0.194588,-0.002919,0.003750,0.249972,0,0);-ms-transform:matrix(0.194588,-0.002919,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194588,-0.002919,0.003750,0.249972,0,0);}
.mdc_c00359{transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);}
.me7_c00359{transform:matrix(0.194804,-0.005065,0.006498,0.249916,0,0);-ms-transform:matrix(0.194804,-0.005065,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194804,-0.005065,0.006498,0.249916,0,0);}
.m10_c00359{transform:matrix(0.195133,-0.002927,0.003750,0.249972,0,0);-ms-transform:matrix(0.195133,-0.002927,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195133,-0.002927,0.003750,0.249972,0,0);}
.mb2_c00359{transform:matrix(0.196975,-0.003152,0.003999,0.249968,0,0);-ms-transform:matrix(0.196975,-0.003152,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196975,-0.003152,0.003999,0.249968,0,0);}
.md5_c00359{transform:matrix(0.197125,-0.003154,0.003999,0.249968,0,0);-ms-transform:matrix(0.197125,-0.003154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197125,-0.003154,0.003999,0.249968,0,0);}
.m89_c00359{transform:matrix(0.198005,-0.003168,0.003999,0.249968,0,0);-ms-transform:matrix(0.198005,-0.003168,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198005,-0.003168,0.003999,0.249968,0,0);}
.m50_c00359{transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);-ms-transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);}
.m1a_c00359{transform:matrix(0.199613,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199613,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199613,-0.002994,0.003750,0.249972,0,0);}
.md3_c00359{transform:matrix(0.199929,-0.003199,0.003999,0.249968,0,0);-ms-transform:matrix(0.199929,-0.003199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199929,-0.003199,0.003999,0.249968,0,0);}
.ma8_c00359{transform:matrix(0.200099,-0.003202,0.003999,0.249968,0,0);-ms-transform:matrix(0.200099,-0.003202,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200099,-0.003202,0.003999,0.249968,0,0);}
.mb9_c00359{transform:matrix(0.200384,-0.003206,0.003999,0.249968,0,0);-ms-transform:matrix(0.200384,-0.003206,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200384,-0.003206,0.003999,0.249968,0,0);}
.me8_c00359{transform:matrix(0.200472,-0.005212,0.006498,0.249916,0,0);-ms-transform:matrix(0.200472,-0.005212,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200472,-0.005212,0.006498,0.249916,0,0);}
.me4_c00359{transform:matrix(0.200969,-0.003216,0.003999,0.249968,0,0);-ms-transform:matrix(0.200969,-0.003216,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200969,-0.003216,0.003999,0.249968,0,0);}
.m82_c00359{transform:matrix(0.201589,-0.003225,0.003999,0.249968,0,0);-ms-transform:matrix(0.201589,-0.003225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201589,-0.003225,0.003999,0.249968,0,0);}
.m6c_c00359{transform:matrix(0.201694,-0.003227,0.003999,0.249968,0,0);-ms-transform:matrix(0.201694,-0.003227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201694,-0.003227,0.003999,0.249968,0,0);}
.m9a_c00359{transform:matrix(0.201699,-0.003227,0.003999,0.249968,0,0);-ms-transform:matrix(0.201699,-0.003227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201699,-0.003227,0.003999,0.249968,0,0);}
.m71_c00359{transform:matrix(0.201884,-0.003230,0.003999,0.249968,0,0);-ms-transform:matrix(0.201884,-0.003230,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201884,-0.003230,0.003999,0.249968,0,0);}
.m7a_c00359{transform:matrix(0.202019,-0.003232,0.003999,0.249968,0,0);-ms-transform:matrix(0.202019,-0.003232,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202019,-0.003232,0.003999,0.249968,0,0);}
.m1c_c00359{transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202277,-0.003034,0.003750,0.249972,0,0);}
.m88_c00359{transform:matrix(0.202499,-0.003240,0.003999,0.249968,0,0);-ms-transform:matrix(0.202499,-0.003240,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202499,-0.003240,0.003999,0.249968,0,0);}
.m48_c00359{transform:matrix(0.202517,-0.003038,0.003750,0.249972,0,0);-ms-transform:matrix(0.202517,-0.003038,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202517,-0.003038,0.003750,0.249972,0,0);}
.m62_c00359{transform:matrix(0.202649,-0.003242,0.003999,0.249968,0,0);-ms-transform:matrix(0.202649,-0.003242,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202649,-0.003242,0.003999,0.249968,0,0);}
.m90_c00359{transform:matrix(0.202679,-0.003243,0.003999,0.249968,0,0);-ms-transform:matrix(0.202679,-0.003243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202679,-0.003243,0.003999,0.249968,0,0);}
.m3c_c00359{transform:matrix(0.202927,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202927,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202927,-0.003044,0.003750,0.249972,0,0);}
.m1b_c00359{transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);}
.m21_c00359{transform:matrix(0.203247,-0.003049,0.003750,0.249972,0,0);-ms-transform:matrix(0.203247,-0.003049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203247,-0.003049,0.003750,0.249972,0,0);}
.m4e_c00359{transform:matrix(0.203772,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203772,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203772,-0.003057,0.003750,0.249972,0,0);}
.m43_c00359{transform:matrix(0.203852,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203852,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203852,-0.003058,0.003750,0.249972,0,0);}
.m93_c00359{transform:matrix(0.203894,-0.003262,0.003999,0.249968,0,0);-ms-transform:matrix(0.203894,-0.003262,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203894,-0.003262,0.003999,0.249968,0,0);}
.m54_c00359{transform:matrix(0.204222,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204222,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204222,-0.003063,0.003750,0.249972,0,0);}
.mdd_c00359{transform:matrix(0.204409,-0.003271,0.003999,0.249968,0,0);-ms-transform:matrix(0.204409,-0.003271,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204409,-0.003271,0.003999,0.249968,0,0);}
.mbd_c00359{transform:matrix(0.204634,-0.003274,0.003999,0.249968,0,0);-ms-transform:matrix(0.204634,-0.003274,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204634,-0.003274,0.003999,0.249968,0,0);}
.m99_c00359{transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);-ms-transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);}
.m30_c00359{transform:matrix(0.205317,-0.003080,0.003750,0.249972,0,0);-ms-transform:matrix(0.205317,-0.003080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205317,-0.003080,0.003750,0.249972,0,0);}
.m2_c00359{transform:matrix(0.205452,-0.003082,0.003750,0.249972,0,0);-ms-transform:matrix(0.205452,-0.003082,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205452,-0.003082,0.003750,0.249972,0,0);}
.m14_c00359{transform:matrix(0.205697,-0.003085,0.003750,0.249972,0,0);-ms-transform:matrix(0.205697,-0.003085,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205697,-0.003085,0.003750,0.249972,0,0);}
.mc9_c00359{transform:matrix(0.206239,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206239,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206239,-0.003300,0.003999,0.249968,0,0);}
.me9_c00359{transform:matrix(0.206305,-0.005364,0.006498,0.249916,0,0);-ms-transform:matrix(0.206305,-0.005364,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206305,-0.005364,0.006498,0.249916,0,0);}
.m22_c00359{transform:matrix(0.206342,-0.003095,0.003750,0.249972,0,0);-ms-transform:matrix(0.206342,-0.003095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206342,-0.003095,0.003750,0.249972,0,0);}
.md9_c00359{transform:matrix(0.206529,-0.003304,0.003999,0.249968,0,0);-ms-transform:matrix(0.206529,-0.003304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206529,-0.003304,0.003999,0.249968,0,0);}
.m2e_c00359{transform:matrix(0.206682,-0.003100,0.003750,0.249972,0,0);-ms-transform:matrix(0.206682,-0.003100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206682,-0.003100,0.003750,0.249972,0,0);}
.me_c00359{transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);-ms-transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207067,-0.003106,0.003750,0.249972,0,0);}
.m27_c00359{transform:matrix(0.207562,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207562,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207562,-0.003113,0.003750,0.249972,0,0);}
.m9e_c00359{transform:matrix(0.209328,-0.003349,0.003999,0.249968,0,0);-ms-transform:matrix(0.209328,-0.003349,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209328,-0.003349,0.003999,0.249968,0,0);}
.md4_c00359{transform:matrix(0.210488,-0.003368,0.003999,0.249968,0,0);-ms-transform:matrix(0.210488,-0.003368,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210488,-0.003368,0.003999,0.249968,0,0);}
.m35_c00359{transform:matrix(0.211021,-0.003165,0.003750,0.249972,0,0);-ms-transform:matrix(0.211021,-0.003165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211021,-0.003165,0.003750,0.249972,0,0);}
.m40_c00359{transform:matrix(0.211086,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211086,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211086,-0.003166,0.003750,0.249972,0,0);}
.m3f_c00359{transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211501,-0.003173,0.003750,0.249972,0,0);}
.m41_c00359{transform:matrix(0.211841,-0.003178,0.003750,0.249972,0,0);-ms-transform:matrix(0.211841,-0.003178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211841,-0.003178,0.003750,0.249972,0,0);}
.m1d_c00359{transform:matrix(0.212461,-0.003187,0.003750,0.249972,0,0);-ms-transform:matrix(0.212461,-0.003187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212461,-0.003187,0.003750,0.249972,0,0);}
.mc7_c00359{transform:matrix(0.212843,-0.003405,0.003999,0.249968,0,0);-ms-transform:matrix(0.212843,-0.003405,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212843,-0.003405,0.003999,0.249968,0,0);}
.mc3_c00359{transform:matrix(0.213098,-0.003410,0.003999,0.249968,0,0);-ms-transform:matrix(0.213098,-0.003410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213098,-0.003410,0.003999,0.249968,0,0);}
.m46_c00359{transform:matrix(0.213541,-0.003203,0.003750,0.249972,0,0);-ms-transform:matrix(0.213541,-0.003203,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213541,-0.003203,0.003750,0.249972,0,0);}
.m58_c00359{transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);-ms-transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213626,-0.003204,0.003750,0.249972,0,0);}
.mec_c00359{transform:matrix(0.214078,-0.005566,0.006498,0.249916,0,0);-ms-transform:matrix(0.214078,-0.005566,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214078,-0.005566,0.006498,0.249916,0,0);}
.m7b_c00359{transform:matrix(0.214173,-0.003427,0.003999,0.249968,0,0);-ms-transform:matrix(0.214173,-0.003427,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214173,-0.003427,0.003999,0.249968,0,0);}
.m55_c00359{transform:matrix(0.215306,-0.003230,0.003750,0.249972,0,0);-ms-transform:matrix(0.215306,-0.003230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215306,-0.003230,0.003750,0.249972,0,0);}
.m6e_c00359{transform:matrix(0.216422,-0.003463,0.003999,0.249968,0,0);-ms-transform:matrix(0.216422,-0.003463,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216422,-0.003463,0.003999,0.249968,0,0);}
.mcb_c00359{transform:matrix(0.216707,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216707,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216707,-0.003467,0.003999,0.249968,0,0);}
.m29_c00359{transform:matrix(0.216936,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216936,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216936,-0.003254,0.003750,0.249972,0,0);}
.m9d_c00359{transform:matrix(0.217007,-0.003472,0.003999,0.249968,0,0);-ms-transform:matrix(0.217007,-0.003472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217007,-0.003472,0.003999,0.249968,0,0);}
.md1_c00359{transform:matrix(0.218052,-0.003489,0.003999,0.249968,0,0);-ms-transform:matrix(0.218052,-0.003489,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218052,-0.003489,0.003999,0.249968,0,0);}
.mbb_c00359{transform:matrix(0.218057,-0.003489,0.003999,0.249968,0,0);-ms-transform:matrix(0.218057,-0.003489,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218057,-0.003489,0.003999,0.249968,0,0);}
.m92_c00359{transform:matrix(0.218062,-0.003489,0.003999,0.249968,0,0);-ms-transform:matrix(0.218062,-0.003489,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218062,-0.003489,0.003999,0.249968,0,0);}
.m7f_c00359{transform:matrix(0.218342,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218342,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218342,-0.003493,0.003999,0.249968,0,0);}
.m78_c00359{transform:matrix(0.218712,-0.003499,0.003999,0.249968,0,0);-ms-transform:matrix(0.218712,-0.003499,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218712,-0.003499,0.003999,0.249968,0,0);}
.ma7_c00359{transform:matrix(0.218787,-0.003501,0.003999,0.249968,0,0);-ms-transform:matrix(0.218787,-0.003501,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218787,-0.003501,0.003999,0.249968,0,0);}
.m96_c00359{transform:matrix(0.219132,-0.003506,0.003999,0.249968,0,0);-ms-transform:matrix(0.219132,-0.003506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219132,-0.003506,0.003999,0.249968,0,0);}
.m32_c00359{transform:matrix(0.220015,-0.003300,0.003750,0.249972,0,0);-ms-transform:matrix(0.220015,-0.003300,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220015,-0.003300,0.003750,0.249972,0,0);}
.m83_c00359{transform:matrix(0.220202,-0.003523,0.003999,0.249968,0,0);-ms-transform:matrix(0.220202,-0.003523,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220202,-0.003523,0.003999,0.249968,0,0);}
.m19_c00359{transform:matrix(0.220410,-0.003306,0.003750,0.249972,0,0);-ms-transform:matrix(0.220410,-0.003306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220410,-0.003306,0.003750,0.249972,0,0);}
.m39_c00359{transform:matrix(0.220920,-0.003314,0.003750,0.249972,0,0);-ms-transform:matrix(0.220920,-0.003314,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220920,-0.003314,0.003750,0.249972,0,0);}
.me1_c00359{transform:matrix(0.221302,-0.003541,0.003999,0.249968,0,0);-ms-transform:matrix(0.221302,-0.003541,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221302,-0.003541,0.003999,0.249968,0,0);}
.m2f_c00359{transform:matrix(0.221340,-0.003320,0.003750,0.249972,0,0);-ms-transform:matrix(0.221340,-0.003320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221340,-0.003320,0.003750,0.249972,0,0);}
.m3e_c00359{transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);-ms-transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);}
.m77_c00359{transform:matrix(0.222746,-0.003564,0.003999,0.249968,0,0);-ms-transform:matrix(0.222746,-0.003564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222746,-0.003564,0.003999,0.249968,0,0);}
.m42_c00359{transform:matrix(0.223140,-0.003347,0.003750,0.249972,0,0);-ms-transform:matrix(0.223140,-0.003347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223140,-0.003347,0.003750,0.249972,0,0);}
.mce_c00359{transform:matrix(0.224491,-0.003592,0.003999,0.249968,0,0);-ms-transform:matrix(0.224491,-0.003592,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224491,-0.003592,0.003999,0.249968,0,0);}
.m33_c00359{transform:matrix(0.226265,-0.003394,0.003750,0.249972,0,0);-ms-transform:matrix(0.226265,-0.003394,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226265,-0.003394,0.003750,0.249972,0,0);}
.m75_c00359{transform:matrix(0.226411,-0.003623,0.003999,0.249968,0,0);-ms-transform:matrix(0.226411,-0.003623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226411,-0.003623,0.003999,0.249968,0,0);}
.ma6_c00359{transform:matrix(0.226481,-0.003624,0.003999,0.249968,0,0);-ms-transform:matrix(0.226481,-0.003624,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226481,-0.003624,0.003999,0.249968,0,0);}
.mcf_c00359{transform:matrix(0.227466,-0.003639,0.003999,0.249968,0,0);-ms-transform:matrix(0.227466,-0.003639,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227466,-0.003639,0.003999,0.249968,0,0);}
.mb1_c00359{transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);-ms-transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230530,-0.003688,0.003999,0.249968,0,0);}
.ma1_c00359{transform:matrix(0.231445,-0.003703,0.003999,0.249968,0,0);-ms-transform:matrix(0.231445,-0.003703,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231445,-0.003703,0.003999,0.249968,0,0);}
.m2a_c00359{transform:matrix(0.231874,-0.003478,0.003750,0.249972,0,0);-ms-transform:matrix(0.231874,-0.003478,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231874,-0.003478,0.003750,0.249972,0,0);}
.m31_c00359{transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);-ms-transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232049,-0.003481,0.003750,0.249972,0,0);}
.ma5_c00359{transform:matrix(0.232095,-0.003714,0.003999,0.249968,0,0);-ms-transform:matrix(0.232095,-0.003714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232095,-0.003714,0.003999,0.249968,0,0);}
.ma4_c00359{transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);-ms-transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);}
.mea_c00359{transform:matrix(0.232711,-0.006050,0.006498,0.249916,0,0);-ms-transform:matrix(0.232711,-0.006050,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232711,-0.006050,0.006498,0.249916,0,0);}
.m76_c00359{transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);-ms-transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);}
.m84_c00359{transform:matrix(0.236920,-0.003791,0.003999,0.249968,0,0);-ms-transform:matrix(0.236920,-0.003791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236920,-0.003791,0.003999,0.249968,0,0);}
.m74_c00359{transform:matrix(0.237010,-0.003792,0.003999,0.249968,0,0);-ms-transform:matrix(0.237010,-0.003792,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237010,-0.003792,0.003999,0.249968,0,0);}
.m28_c00359{transform:matrix(0.237743,-0.003566,0.003750,0.249972,0,0);-ms-transform:matrix(0.237743,-0.003566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237743,-0.003566,0.003750,0.249972,0,0);}
.m63_c00359{transform:matrix(0.238809,-0.003821,0.003999,0.249968,0,0);-ms-transform:matrix(0.238809,-0.003821,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238809,-0.003821,0.003999,0.249968,0,0);}
.md6_c00359{transform:matrix(0.241029,-0.003856,0.003999,0.249968,0,0);-ms-transform:matrix(0.241029,-0.003856,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241029,-0.003856,0.003999,0.249968,0,0);}
.m1_c00359{transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241930,0.000000,0.000000,0.250000,0,0);}
.ma0_c00359{transform:matrix(0.244619,-0.003914,0.003999,0.249968,0,0);-ms-transform:matrix(0.244619,-0.003914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244619,-0.003914,0.003999,0.249968,0,0);}
.mb7_c00359{transform:matrix(0.249518,-0.003992,0.003999,0.249968,0,0);-ms-transform:matrix(0.249518,-0.003992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249518,-0.003992,0.003999,0.249968,0,0);}
.m68_c00359{transform:matrix(0.249868,-0.003998,0.003999,0.249968,0,0);-ms-transform:matrix(0.249868,-0.003998,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249868,-0.003998,0.003999,0.249968,0,0);}
.m97_c00359{transform:matrix(0.250718,-0.004011,0.003999,0.249968,0,0);-ms-transform:matrix(0.250718,-0.004011,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250718,-0.004011,0.003999,0.249968,0,0);}
.m2c_c00359{transform:matrix(0.250762,-0.003761,0.003750,0.249972,0,0);-ms-transform:matrix(0.250762,-0.003761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250762,-0.003761,0.003750,0.249972,0,0);}
.m64_c00359{transform:matrix(0.251273,-0.004020,0.003999,0.249968,0,0);-ms-transform:matrix(0.251273,-0.004020,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251273,-0.004020,0.003999,0.249968,0,0);}
.md2_c00359{transform:matrix(0.251993,-0.004032,0.003999,0.249968,0,0);-ms-transform:matrix(0.251993,-0.004032,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251993,-0.004032,0.003999,0.249968,0,0);}
.mbf_c00359{transform:matrix(0.252918,-0.004047,0.003999,0.249968,0,0);-ms-transform:matrix(0.252918,-0.004047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252918,-0.004047,0.003999,0.249968,0,0);}
.m18_c00359{transform:matrix(0.253556,-0.003803,0.003750,0.249972,0,0);-ms-transform:matrix(0.253556,-0.003803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253556,-0.003803,0.003750,0.249972,0,0);}
.me6_c00359{transform:matrix(0.254494,-0.006617,0.006498,0.249916,0,0);-ms-transform:matrix(0.254494,-0.006617,0.006498,0.249916,0,0);-webkit-transform:matrix(0.254494,-0.006617,0.006498,0.249916,0,0);}
.m73_c00359{transform:matrix(0.254857,-0.004078,0.003999,0.249968,0,0);-ms-transform:matrix(0.254857,-0.004078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254857,-0.004078,0.003999,0.249968,0,0);}
.mae_c00359{transform:matrix(0.256082,-0.004097,0.003999,0.249968,0,0);-ms-transform:matrix(0.256082,-0.004097,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256082,-0.004097,0.003999,0.249968,0,0);}
.m17_c00359{transform:matrix(0.256981,-0.003855,0.003750,0.249972,0,0);-ms-transform:matrix(0.256981,-0.003855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256981,-0.003855,0.003750,0.249972,0,0);}
.m2b_c00359{transform:matrix(0.257031,-0.003855,0.003750,0.249972,0,0);-ms-transform:matrix(0.257031,-0.003855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257031,-0.003855,0.003750,0.249972,0,0);}
.m79_c00359{transform:matrix(0.259682,-0.004155,0.003999,0.249968,0,0);-ms-transform:matrix(0.259682,-0.004155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259682,-0.004155,0.003999,0.249968,0,0);}
.md0_c00359{transform:matrix(0.262946,-0.004207,0.003999,0.249968,0,0);-ms-transform:matrix(0.262946,-0.004207,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262946,-0.004207,0.003999,0.249968,0,0);}
.m91_c00359{transform:matrix(0.263891,-0.004222,0.003999,0.249968,0,0);-ms-transform:matrix(0.263891,-0.004222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263891,-0.004222,0.003999,0.249968,0,0);}
.m61_c00359{transform:matrix(0.263896,-0.004222,0.003999,0.249968,0,0);-ms-transform:matrix(0.263896,-0.004222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263896,-0.004222,0.003999,0.249968,0,0);}
.mda_c00359{transform:matrix(0.265936,-0.004255,0.003999,0.249968,0,0);-ms-transform:matrix(0.265936,-0.004255,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265936,-0.004255,0.003999,0.249968,0,0);}
.m67_c00359{transform:matrix(0.265941,-0.004255,0.003999,0.249968,0,0);-ms-transform:matrix(0.265941,-0.004255,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265941,-0.004255,0.003999,0.249968,0,0);}
.maf_c00359{transform:matrix(0.276330,-0.004421,0.003999,0.249968,0,0);-ms-transform:matrix(0.276330,-0.004421,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276330,-0.004421,0.003999,0.249968,0,0);}
.m60_c00359{transform:matrix(0.279574,-0.004473,0.003999,0.249968,0,0);-ms-transform:matrix(0.279574,-0.004473,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279574,-0.004473,0.003999,0.249968,0,0);}
.m2d_c00359{transform:matrix(0.288443,-0.004327,0.003750,0.249972,0,0);-ms-transform:matrix(0.288443,-0.004327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288443,-0.004327,0.003750,0.249972,0,0);}
.m9c_c00359{transform:matrix(0.295307,-0.004725,0.003999,0.249968,0,0);-ms-transform:matrix(0.295307,-0.004725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.295307,-0.004725,0.003999,0.249968,0,0);}
.m3d_c00359{transform:matrix(0.297846,-0.004468,0.003750,0.249972,0,0);-ms-transform:matrix(0.297846,-0.004468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.297846,-0.004468,0.003750,0.249972,0,0);}
.m34_c00359{transform:matrix(0.304556,-0.004568,0.003750,0.249972,0,0);-ms-transform:matrix(0.304556,-0.004568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.304556,-0.004568,0.003750,0.249972,0,0);}
.mc4_c00359{transform:matrix(0.304791,-0.004877,0.003999,0.249968,0,0);-ms-transform:matrix(0.304791,-0.004877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.304791,-0.004877,0.003999,0.249968,0,0);}
.m8d_c00359{transform:matrix(0.327268,-0.005236,0.003999,0.249968,0,0);-ms-transform:matrix(0.327268,-0.005236,0.003999,0.249968,0,0);-webkit-transform:matrix(0.327268,-0.005236,0.003999,0.249968,0,0);}
.mc5_c00359{transform:matrix(0.432120,-0.006914,0.003999,0.249968,0,0);-ms-transform:matrix(0.432120,-0.006914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.432120,-0.006914,0.003999,0.249968,0,0);}
.m26_c00359{transform:matrix(0.444940,-0.006674,0.003750,0.249972,0,0);-ms-transform:matrix(0.444940,-0.006674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.444940,-0.006674,0.003750,0.249972,0,0);}
.me5_c00359{transform:matrix(0.587735,-0.009404,0.003999,0.249968,0,0);-ms-transform:matrix(0.587735,-0.009404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.587735,-0.009404,0.003999,0.249968,0,0);}
.m5f_c00359{transform:matrix(0.596528,-0.008948,0.003750,0.249972,0,0);-ms-transform:matrix(0.596528,-0.008948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.596528,-0.008948,0.003750,0.249972,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
.fc0_c00359{color:transparent;}
.fs11_c00359{font-size:55.657123px;}
.fse_c00359{font-size:57.757392px;}
.fs15_c00359{font-size:58.807526px;}
.fs7_c00359{font-size:59.856733px;}
.fs3_c00359{font-size:60.906851px;}
.fs12_c00359{font-size:60.907795px;}
.fs4_c00359{font-size:61.956969px;}
.fs14_c00359{font-size:61.957929px;}
.fs16_c00359{font-size:61.970936px;}
.fs5_c00359{font-size:63.007087px;}
.fsb_c00359{font-size:63.008063px;}
.fs6_c00359{font-size:65.107323px;}
.fs10_c00359{font-size:65.108332px;}
.fs9_c00359{font-size:66.157441px;}
.fsf_c00359{font-size:66.158467px;}
.fsa_c00359{font-size:67.207560px;}
.fsd_c00359{font-size:67.208601px;}
.fs2_c00359{font-size:69.307796px;}
.fs13_c00359{font-size:69.308870px;}
.fs8_c00359{font-size:70.357914px;}
.fs1_c00359{font-size:71.408032px;}
.fsc_c00359{font-size:71.409139px;}
.fs0_c00359{font-size:80.850000px;}
.y0_c00359{bottom:0.000000px;}
.ye7_c00359{bottom:16.210500px;}
.ye8_c00359{bottom:16.828065px;}
.ye9_c00359{bottom:18.303396px;}
.yea_c00359{bottom:19.614069px;}
.yeb_c00359{bottom:20.121888px;}
.yec_c00359{bottom:22.033317px;}
.yed_c00359{bottom:22.568124px;}
.ye0_c00359{bottom:34.802628px;}
.ye1_c00359{bottom:35.587860px;}
.ye2_c00359{bottom:36.706524px;}
.ye3_c00359{bottom:37.359372px;}
.ye4_c00359{bottom:37.648836px;}
.ye5_c00359{bottom:38.495244px;}
.ye6_c00359{bottom:38.685924px;}
.yd8_c00359{bottom:51.812208px;}
.yd9_c00359{bottom:52.548924px;}
.yda_c00359{bottom:52.864464px;}
.ydb_c00359{bottom:53.272212px;}
.ydc_c00359{bottom:53.553168px;}
.ydd_c00359{bottom:54.076896px;}
.yde_c00359{bottom:54.403680px;}
.ydf_c00359{bottom:55.343892px;}
.ycf_c00359{bottom:69.092352px;}
.yd0_c00359{bottom:69.724512px;}
.yd1_c00359{bottom:70.157220px;}
.yd2_c00359{bottom:70.667232px;}
.yd3_c00359{bottom:71.482296px;}
.yd4_c00359{bottom:71.786748px;}
.yd5_c00359{bottom:72.532176px;}
.yd6_c00359{bottom:72.832716px;}
.yd7_c00359{bottom:73.247484px;}
.yc6_c00359{bottom:85.833864px;}
.yc7_c00359{bottom:86.406480px;}
.yc8_c00359{bottom:86.558016px;}
.yc9_c00359{bottom:87.017904px;}
.yca_c00359{bottom:87.264528px;}
.ycb_c00359{bottom:87.502920px;}
.ycc_c00359{bottom:88.257216px;}
.ycd_c00359{bottom:88.409472px;}
.yce_c00359{bottom:88.590468px;}
.ybf_c00359{bottom:102.576252px;}
.yc0_c00359{bottom:103.426968px;}
.yc1_c00359{bottom:104.104176px;}
.yc2_c00359{bottom:104.890140px;}
.yc3_c00359{bottom:105.203724px;}
.yc4_c00359{bottom:106.050960px;}
.yc5_c00359{bottom:106.610988px;}
.yb8_c00359{bottom:119.856048px;}
.yb9_c00359{bottom:120.276480px;}
.yba_c00359{bottom:121.221432px;}
.ybb_c00359{bottom:121.479048px;}
.ybc_c00359{bottom:122.499828px;}
.ybd_c00359{bottom:122.797980px;}
.ybe_c00359{bottom:123.374040px;}
.yb0_c00359{bottom:136.869948px;}
.yb1_c00359{bottom:137.484756px;}
.yb2_c00359{bottom:137.980488px;}
.yb3_c00359{bottom:139.182516px;}
.yb4_c00359{bottom:139.466976px;}
.yb5_c00359{bottom:140.504076px;}
.yb6_c00359{bottom:140.796144px;}
.yb7_c00359{bottom:141.142632px;}
.ya8_c00359{bottom:154.152336px;}
.ya9_c00359{bottom:154.913544px;}
.yaa_c00359{bottom:155.200860px;}
.yab_c00359{bottom:155.783940px;}
.yac_c00359{bottom:156.897072px;}
.yad_c00359{bottom:157.225620px;}
.yae_c00359{bottom:157.566552px;}
.yaf_c00359{bottom:158.352300px;}
.y9f_c00359{bottom:171.704892px;}
.ya0_c00359{bottom:171.898428px;}
.ya1_c00359{bottom:172.150200px;}
.ya2_c00359{bottom:172.509204px;}
.ya3_c00359{bottom:173.125944px;}
.ya4_c00359{bottom:173.379588px;}
.ya5_c00359{bottom:174.144204px;}
.ya6_c00359{bottom:174.710064px;}
.ya7_c00359{bottom:175.200576px;}
.y9d_c00359{bottom:190.455240px;}
.y9e_c00359{bottom:190.455648px;}
.y9c_c00359{bottom:190.455744px;}
.y9b_c00359{bottom:190.455936px;}
.y99_c00359{bottom:190.456068px;}
.y9a_c00359{bottom:190.456548px;}
.y92_c00359{bottom:208.008876px;}
.y93_c00359{bottom:208.008900px;}
.y94_c00359{bottom:208.009188px;}
.y98_c00359{bottom:208.009620px;}
.y95_c00359{bottom:208.009656px;}
.y96_c00359{bottom:208.009788px;}
.y97_c00359{bottom:208.010280px;}
.y90_c00359{bottom:224.624532px;}
.y8f_c00359{bottom:224.624844px;}
.y8e_c00359{bottom:224.625180px;}
.y91_c00359{bottom:224.625216px;}
.y8c_c00359{bottom:224.625444px;}
.y8d_c00359{bottom:224.625732px;}
.y86_c00359{bottom:241.614816px;}
.y85_c00359{bottom:241.615380px;}
.y87_c00359{bottom:241.615392px;}
.y84_c00359{bottom:241.615428px;}
.y88_c00359{bottom:241.615464px;}
.y89_c00359{bottom:241.615776px;}
.y8b_c00359{bottom:241.616148px;}
.y8a_c00359{bottom:241.616376px;}
.y7f_c00359{bottom:258.751164px;}
.y7d_c00359{bottom:258.751284px;}
.y80_c00359{bottom:258.751296px;}
.y7e_c00359{bottom:258.751440px;}
.y7c_c00359{bottom:258.751500px;}
.y81_c00359{bottom:258.751536px;}
.y83_c00359{bottom:258.751968px;}
.y82_c00359{bottom:258.752016px;}
.y76_c00359{bottom:273.773760px;}
.y77_c00359{bottom:274.406712px;}
.y78_c00359{bottom:275.142660px;}
.y79_c00359{bottom:275.955552px;}
.y7a_c00359{bottom:276.486984px;}
.y7b_c00359{bottom:276.727668px;}
.y6f_c00359{bottom:290.786028px;}
.y70_c00359{bottom:291.009492px;}
.y71_c00359{bottom:291.265608px;}
.y72_c00359{bottom:291.502272px;}
.y73_c00359{bottom:292.519488px;}
.y74_c00359{bottom:293.021976px;}
.y75_c00359{bottom:293.964624px;}
.y67_c00359{bottom:307.799064px;}
.y68_c00359{bottom:308.143044px;}
.y69_c00359{bottom:308.946684px;}
.y6a_c00359{bottom:309.723432px;}
.y6b_c00359{bottom:309.996792px;}
.y6c_c00359{bottom:310.217256px;}
.y6d_c00359{bottom:310.852776px;}
.y6e_c00359{bottom:311.105628px;}
.y62_c00359{bottom:325.083000px;}
.y63_c00359{bottom:326.297112px;}
.y64_c00359{bottom:326.888880px;}
.y65_c00359{bottom:327.247680px;}
.y66_c00359{bottom:328.782120px;}
.y5d_c00359{bottom:342.065317px;}
.y5e_c00359{bottom:342.606097px;}
.y5f_c00359{bottom:343.053037px;}
.y60_c00359{bottom:343.909252px;}
.y61_c00359{bottom:346.533232px;}
.y57_c00359{bottom:359.886502px;}
.y58_c00359{bottom:360.709725px;}
.y59_c00359{bottom:361.215570px;}
.y5a_c00359{bottom:361.490415px;}
.y5b_c00359{bottom:362.335582px;}
.y5c_c00359{bottom:362.647170px;}
.y4d_c00359{bottom:377.438287px;}
.y4e_c00359{bottom:377.926462px;}
.y4f_c00359{bottom:378.161902px;}
.y50_c00359{bottom:378.946680px;}
.y51_c00359{bottom:379.129702px;}
.y52_c00359{bottom:379.729297px;}
.y53_c00359{bottom:379.958025px;}
.y54_c00359{bottom:380.399880px;}
.y55_c00359{bottom:380.745135px;}
.y56_c00359{bottom:380.949300px;}
.y49_c00359{bottom:395.334195px;}
.y4c_c00359{bottom:395.334292px;}
.y4b_c00359{bottom:395.334555px;}
.y48_c00359{bottom:395.334630px;}
.y46_c00359{bottom:395.334742px;}
.y4a_c00359{bottom:395.334750px;}
.y47_c00359{bottom:395.335125px;}
.y3e_c00359{bottom:411.462300px;}
.y3f_c00359{bottom:412.037280px;}
.y40_c00359{bottom:412.204462px;}
.y41_c00359{bottom:412.682107px;}
.y42_c00359{bottom:413.033048px;}
.y43_c00359{bottom:413.518012px;}
.y44_c00359{bottom:413.958098px;}
.y45_c00359{bottom:414.195165px;}
.y3c_c00359{bottom:429.659032px;}
.y3d_c00359{bottom:429.659160px;}
.y39_c00359{bottom:429.659685px;}
.y3b_c00359{bottom:429.659700px;}
.y38_c00359{bottom:429.660098px;}
.y3a_c00359{bottom:429.660240px;}
.y37_c00359{bottom:429.660360px;}
.y30_c00359{bottom:445.488292px;}
.y31_c00359{bottom:445.734997px;}
.y32_c00359{bottom:446.531438px;}
.y33_c00359{bottom:447.202215px;}
.y34_c00359{bottom:447.499500px;}
.y35_c00359{bottom:448.329322px;}
.y36_c00359{bottom:448.886603px;}
.y29_c00359{bottom:461.960062px;}
.y2a_c00359{bottom:462.313417px;}
.y2b_c00359{bottom:463.029180px;}
.y2c_c00359{bottom:463.703182px;}
.y2d_c00359{bottom:463.893540px;}
.y2e_c00359{bottom:465.060758px;}
.y2f_c00359{bottom:465.323925px;}
.y28_c00359{bottom:480.629040px;}
.y25_c00359{bottom:480.629392px;}
.y27_c00359{bottom:480.629558px;}
.y26_c00359{bottom:480.629797px;}
.y24_c00359{bottom:480.630082px;}
.y22_c00359{bottom:480.630112px;}
.y23_c00359{bottom:480.630217px;}
.y21_c00359{bottom:480.630330px;}
.y1a_c00359{bottom:495.717945px;}
.y1b_c00359{bottom:496.058460px;}
.y1c_c00359{bottom:496.932990px;}
.y1d_c00359{bottom:497.913405px;}
.y1e_c00359{bottom:498.237495px;}
.y1f_c00359{bottom:498.982853px;}
.y20_c00359{bottom:499.817130px;}
.y13_c00359{bottom:512.460570px;}
.y14_c00359{bottom:513.077933px;}
.y15_c00359{bottom:513.807293px;}
.y16_c00359{bottom:514.481340px;}
.y17_c00359{bottom:515.292615px;}
.y18_c00359{bottom:515.721622px;}
.y19_c00359{bottom:516.551678px;}
.yb_c00359{bottom:530.280083px;}
.yc_c00359{bottom:530.999310px;}
.yd_c00359{bottom:531.273187px;}
.ye_c00359{bottom:531.469920px;}
.yf_c00359{bottom:532.178768px;}
.y10_c00359{bottom:532.483808px;}
.y11_c00359{bottom:532.863608px;}
.y12_c00359{bottom:533.860807px;}
.y2_c00359{bottom:546.483000px;}
.y3_c00359{bottom:546.928500px;}
.y4_c00359{bottom:547.204057px;}
.y5_c00359{bottom:548.083110px;}
.y6_c00359{bottom:548.824237px;}
.y7_c00359{bottom:549.103777px;}
.y8_c00359{bottom:549.414615px;}
.y9_c00359{bottom:549.889387px;}
.ya_c00359{bottom:550.173225px;}
.y1_c00359{bottom:562.944000px;}
.h13_c00359{height:55.657123px;}
.h10_c00359{height:57.757392px;}
.h17_c00359{height:58.807526px;}
.h9_c00359{height:59.856733px;}
.h5_c00359{height:60.906851px;}
.h14_c00359{height:60.907795px;}
.h6_c00359{height:61.956969px;}
.h16_c00359{height:61.957929px;}
.h18_c00359{height:61.970936px;}
.h7_c00359{height:63.007087px;}
.hd_c00359{height:63.008063px;}
.h8_c00359{height:65.107323px;}
.h12_c00359{height:65.108332px;}
.hb_c00359{height:66.157441px;}
.h11_c00359{height:66.158467px;}
.hc_c00359{height:67.207560px;}
.hf_c00359{height:67.208601px;}
.h4_c00359{height:69.307796px;}
.h15_c00359{height:69.308870px;}
.ha_c00359{height:70.357914px;}
.h3_c00359{height:71.408032px;}
.he_c00359{height:71.409139px;}
.h2_c00359{height:80.850000px;}
.h0_c00359{height:613.170000px;}
.h1_c00359{height:613.500000px;}
.w0_c00359{width:359.100000px;}
.w1_c00359{width:359.250000px;}
.x0_c00359{left:0.000000px;}
.x69_c00359{left:32.047572px;}
.x74_c00359{left:40.390224px;}
.x6d_c00359{left:41.449788px;}
.x64_c00359{left:43.136904px;}
.x51_c00359{left:44.818176px;}
.x4b_c00359{left:46.026564px;}
.x1e_c00359{left:47.521598px;}
.x3_c00359{left:49.612500px;}
.xc_c00359{left:50.661225px;}
.x61_c00359{left:58.769040px;}
.x48_c00359{left:59.886000px;}
.x4c_c00359{left:64.681764px;}
.x28_c00359{left:69.294308px;}
.x1_c00359{left:72.900000px;}
.x45_c00359{left:75.582307px;}
.x58_c00359{left:77.761980px;}
.x4_c00359{left:79.312500px;}
.x39_c00359{left:83.161755px;}
.x1f_c00359{left:84.515423px;}
.x4d_c00359{left:86.034132px;}
.x14_c00359{left:88.517715px;}
.x6a_c00359{left:92.813016px;}
.x52_c00359{left:94.504896px;}
.x5a_c00359{left:95.855412px;}
.x5_c00359{left:97.683000px;}
.x46_c00359{left:99.076890px;}
.x33_c00359{left:101.092313px;}
.x3d_c00359{left:103.042268px;}
.xd_c00359{left:106.011390px;}
.x53_c00359{left:107.736780px;}
.x20_c00359{left:109.628070px;}
.x71_c00359{left:111.647016px;}
.x3a_c00359{left:113.135505px;}
.x2e_c00359{left:114.485543px;}
.x34_c00359{left:116.238713px;}
.x75_c00359{left:121.347612px;}
.xe_c00359{left:127.070520px;}
.x1a_c00359{left:131.139923px;}
.x15_c00359{left:134.141040px;}
.x29_c00359{left:135.693300px;}
.x5f_c00359{left:140.681160px;}
.xf_c00359{left:142.186470px;}
.x26_c00359{left:145.097505px;}
.x6e_c00359{left:149.210928px;}
.x57_c00359{left:152.831928px;}
.x54_c00359{left:155.262948px;}
.x6_c00359{left:156.286500px;}
.x2_c00359{left:158.220000px;}
.x35_c00359{left:159.684323px;}
.x3e_c00359{left:163.462590px;}
.x5b_c00359{left:168.765060px;}
.x6f_c00359{left:171.564204px;}
.x49_c00359{left:172.753500px;}
.x55_c00359{left:175.245060px;}
.x16_c00359{left:176.276910px;}
.x3f_c00359{left:177.564518px;}
.x65_c00359{left:178.703556px;}
.x43_c00359{left:180.777270px;}
.x2f_c00359{left:183.073478px;}
.x21_c00359{left:185.236080px;}
.x4e_c00359{left:190.470804px;}
.x2a_c00359{left:191.614320px;}
.x70_c00359{left:193.215432px;}
.x3b_c00359{left:195.224978px;}
.x10_c00359{left:196.744613px;}
.x72_c00359{left:199.996932px;}
.x7_c00359{left:205.695000px;}
.x30_c00359{left:210.616665px;}
.x76_c00359{left:214.566576px;}
.x2b_c00359{left:216.434445px;}
.x1b_c00359{left:218.106922px;}
.x11_c00359{left:220.181310px;}
.x3c_c00359{left:222.768165px;}
.x8_c00359{left:224.331000px;}
.x17_c00359{left:226.961145px;}
.x56_c00359{left:228.711240px;}
.x62_c00359{left:231.575844px;}
.x22_c00359{left:233.300903px;}
.x36_c00359{left:235.615868px;}
.x59_c00359{left:240.052524px;}
.x40_c00359{left:241.287930px;}
.x9_c00359{left:245.053500px;}
.x5c_c00359{left:247.074600px;}
.x12_c00359{left:249.402187px;}
.x44_c00359{left:251.224942px;}
.x68_c00359{left:252.576048px;}
.x18_c00359{left:253.761240px;}
.x23_c00359{left:257.333303px;}
.x31_c00359{left:262.192275px;}
.x77_c00359{left:264.294000px;}
.x5d_c00359{left:266.516568px;}
.x1c_c00359{left:267.797422px;}
.x73_c00359{left:269.928036px;}
.x50_c00359{left:271.529004px;}
.x66_c00359{left:273.647544px;}
.x37_c00359{left:275.557253px;}
.xa_c00359{left:276.705000px;}
.x6b_c00359{left:280.256016px;}
.x47_c00359{left:282.278910px;}
.x2c_c00359{left:285.559050px;}
.x60_c00359{left:289.201176px;}
.x4a_c00359{left:291.081000px;}
.x67_c00359{left:293.990208px;}
.xb_c00359{left:295.627500px;}
.x38_c00359{left:297.163058px;}
.x41_c00359{left:301.763730px;}
.x19_c00359{left:305.597453px;}
.x4f_c00359{left:310.987032px;}
.x63_c00359{left:312.884256px;}
.x24_c00359{left:315.930487px;}
.x42_c00359{left:317.475202px;}
.x6c_c00359{left:320.227788px;}
.x1d_c00359{left:323.415922px;}
.x32_c00359{left:324.570315px;}
.x13_c00359{left:326.084483px;}
.x5e_c00359{left:328.084836px;}
.x27_c00359{left:329.847098px;}
.x2d_c00359{left:332.013142px;}
.x25_c00359{left:354.004560px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
.fs11_c00359{font-size:49.472998pt;}
.fse_c00359{font-size:51.339904pt;}
.fs15_c00359{font-size:52.273356pt;}
.fs7_c00359{font-size:53.205985pt;}
.fs3_c00359{font-size:54.139423pt;}
.fs12_c00359{font-size:54.140262pt;}
.fs4_c00359{font-size:55.072861pt;}
.fs14_c00359{font-size:55.073715pt;}
.fs16_c00359{font-size:55.085276pt;}
.fs5_c00359{font-size:56.006300pt;}
.fsb_c00359{font-size:56.007168pt;}
.fs6_c00359{font-size:57.873176pt;}
.fs10_c00359{font-size:57.874073pt;}
.fs9_c00359{font-size:58.806615pt;}
.fsf_c00359{font-size:58.807526pt;}
.fsa_c00359{font-size:59.740053pt;}
.fsd_c00359{font-size:59.740979pt;}
.fs2_c00359{font-size:61.606930pt;}
.fs13_c00359{font-size:61.607884pt;}
.fs8_c00359{font-size:62.540368pt;}
.fs1_c00359{font-size:63.473806pt;}
.fsc_c00359{font-size:63.474790pt;}
.fs0_c00359{font-size:71.866667pt;}
.y0_c00359{bottom:0.000000pt;}
.ye7_c00359{bottom:14.409333pt;}
.ye8_c00359{bottom:14.958280pt;}
.ye9_c00359{bottom:16.269685pt;}
.yea_c00359{bottom:17.434728pt;}
.yeb_c00359{bottom:17.886123pt;}
.yec_c00359{bottom:19.585171pt;}
.yed_c00359{bottom:20.060555pt;}
.ye0_c00359{bottom:30.935669pt;}
.ye1_c00359{bottom:31.633653pt;}
.ye2_c00359{bottom:32.628021pt;}
.ye3_c00359{bottom:33.208331pt;}
.ye4_c00359{bottom:33.465632pt;}
.ye5_c00359{bottom:34.217995pt;}
.ye6_c00359{bottom:34.387488pt;}
.yd8_c00359{bottom:46.055296pt;}
.yd9_c00359{bottom:46.710155pt;}
.yda_c00359{bottom:46.990635pt;}
.ydb_c00359{bottom:47.353077pt;}
.ydc_c00359{bottom:47.602816pt;}
.ydd_c00359{bottom:48.068352pt;}
.yde_c00359{bottom:48.358827pt;}
.ydf_c00359{bottom:49.194571pt;}
.ycf_c00359{bottom:61.415424pt;}
.yd0_c00359{bottom:61.977344pt;}
.yd1_c00359{bottom:62.361973pt;}
.yd2_c00359{bottom:62.815317pt;}
.yd3_c00359{bottom:63.539819pt;}
.yd4_c00359{bottom:63.810443pt;}
.yd5_c00359{bottom:64.473045pt;}
.yd6_c00359{bottom:64.740192pt;}
.yd7_c00359{bottom:65.108875pt;}
.yc6_c00359{bottom:76.296768pt;}
.yc7_c00359{bottom:76.805760pt;}
.yc8_c00359{bottom:76.940459pt;}
.yc9_c00359{bottom:77.349248pt;}
.yca_c00359{bottom:77.568469pt;}
.ycb_c00359{bottom:77.780373pt;}
.ycc_c00359{bottom:78.450859pt;}
.ycd_c00359{bottom:78.586197pt;}
.yce_c00359{bottom:78.747083pt;}
.ybf_c00359{bottom:91.178891pt;}
.yc0_c00359{bottom:91.935083pt;}
.yc1_c00359{bottom:92.537045pt;}
.yc2_c00359{bottom:93.235680pt;}
.yc3_c00359{bottom:93.514421pt;}
.yc4_c00359{bottom:94.267520pt;}
.yc5_c00359{bottom:94.765323pt;}
.yb8_c00359{bottom:106.538709pt;}
.yb9_c00359{bottom:106.912427pt;}
.yba_c00359{bottom:107.752384pt;}
.ybb_c00359{bottom:107.981376pt;}
.ybc_c00359{bottom:108.888736pt;}
.ybd_c00359{bottom:109.153760pt;}
.ybe_c00359{bottom:109.665813pt;}
.yb0_c00359{bottom:121.662176pt;}
.yb1_c00359{bottom:122.208672pt;}
.yb2_c00359{bottom:122.649323pt;}
.yb3_c00359{bottom:123.717792pt;}
.yb4_c00359{bottom:123.970645pt;}
.yb5_c00359{bottom:124.892512pt;}
.yb6_c00359{bottom:125.152128pt;}
.yb7_c00359{bottom:125.460117pt;}
.ya8_c00359{bottom:137.024299pt;}
.ya9_c00359{bottom:137.700928pt;}
.yaa_c00359{bottom:137.956320pt;}
.yab_c00359{bottom:138.474613pt;}
.yac_c00359{bottom:139.464064pt;}
.yad_c00359{bottom:139.756107pt;}
.yae_c00359{bottom:140.059157pt;}
.yaf_c00359{bottom:140.757600pt;}
.y9f_c00359{bottom:152.626571pt;}
.ya0_c00359{bottom:152.798603pt;}
.ya1_c00359{bottom:153.022400pt;}
.ya2_c00359{bottom:153.341515pt;}
.ya3_c00359{bottom:153.889728pt;}
.ya4_c00359{bottom:154.115189pt;}
.ya5_c00359{bottom:154.794848pt;}
.ya6_c00359{bottom:155.297835pt;}
.ya7_c00359{bottom:155.733845pt;}
.y9d_c00359{bottom:169.293547pt;}
.y9e_c00359{bottom:169.293909pt;}
.y9c_c00359{bottom:169.293995pt;}
.y9b_c00359{bottom:169.294165pt;}
.y99_c00359{bottom:169.294283pt;}
.y9a_c00359{bottom:169.294709pt;}
.y92_c00359{bottom:184.896779pt;}
.y93_c00359{bottom:184.896800pt;}
.y94_c00359{bottom:184.897056pt;}
.y98_c00359{bottom:184.897440pt;}
.y95_c00359{bottom:184.897472pt;}
.y96_c00359{bottom:184.897589pt;}
.y97_c00359{bottom:184.898027pt;}
.y90_c00359{bottom:199.666251pt;}
.y8f_c00359{bottom:199.666528pt;}
.y8e_c00359{bottom:199.666827pt;}
.y91_c00359{bottom:199.666859pt;}
.y8c_c00359{bottom:199.667061pt;}
.y8d_c00359{bottom:199.667317pt;}
.y86_c00359{bottom:214.768725pt;}
.y85_c00359{bottom:214.769227pt;}
.y87_c00359{bottom:214.769237pt;}
.y84_c00359{bottom:214.769269pt;}
.y88_c00359{bottom:214.769301pt;}
.y89_c00359{bottom:214.769579pt;}
.y8b_c00359{bottom:214.769909pt;}
.y8a_c00359{bottom:214.770112pt;}
.y7f_c00359{bottom:230.001035pt;}
.y7d_c00359{bottom:230.001141pt;}
.y80_c00359{bottom:230.001152pt;}
.y7e_c00359{bottom:230.001280pt;}
.y7c_c00359{bottom:230.001333pt;}
.y81_c00359{bottom:230.001365pt;}
.y83_c00359{bottom:230.001749pt;}
.y82_c00359{bottom:230.001792pt;}
.y76_c00359{bottom:243.354453pt;}
.y77_c00359{bottom:243.917077pt;}
.y78_c00359{bottom:244.571253pt;}
.y79_c00359{bottom:245.293824pt;}
.y7a_c00359{bottom:245.766208pt;}
.y7b_c00359{bottom:245.980149pt;}
.y6f_c00359{bottom:258.476469pt;}
.y70_c00359{bottom:258.675104pt;}
.y71_c00359{bottom:258.902763pt;}
.y72_c00359{bottom:259.113131pt;}
.y73_c00359{bottom:260.017323pt;}
.y74_c00359{bottom:260.463979pt;}
.y75_c00359{bottom:261.301888pt;}
.y67_c00359{bottom:273.599168pt;}
.y68_c00359{bottom:273.904928pt;}
.y69_c00359{bottom:274.619275pt;}
.y6a_c00359{bottom:275.309717pt;}
.y6b_c00359{bottom:275.552704pt;}
.y6c_c00359{bottom:275.748672pt;}
.y6d_c00359{bottom:276.313579pt;}
.y6e_c00359{bottom:276.538336pt;}
.y62_c00359{bottom:288.962667pt;}
.y63_c00359{bottom:290.041877pt;}
.y64_c00359{bottom:290.567893pt;}
.y65_c00359{bottom:290.886827pt;}
.y66_c00359{bottom:292.250773pt;}
.y5d_c00359{bottom:304.058060pt;}
.y5e_c00359{bottom:304.538753pt;}
.y5f_c00359{bottom:304.936033pt;}
.y60_c00359{bottom:305.697113pt;}
.y61_c00359{bottom:308.029540pt;}
.y57_c00359{bottom:319.899113pt;}
.y58_c00359{bottom:320.630867pt;}
.y59_c00359{bottom:321.080507pt;}
.y5a_c00359{bottom:321.324813pt;}
.y5b_c00359{bottom:322.076073pt;}
.y5c_c00359{bottom:322.353040pt;}
.y4d_c00359{bottom:335.500700pt;}
.y4e_c00359{bottom:335.934633pt;}
.y4f_c00359{bottom:336.143913pt;}
.y50_c00359{bottom:336.841493pt;}
.y51_c00359{bottom:337.004180pt;}
.y52_c00359{bottom:337.537153pt;}
.y53_c00359{bottom:337.740467pt;}
.y54_c00359{bottom:338.133227pt;}
.y55_c00359{bottom:338.440120pt;}
.y56_c00359{bottom:338.621600pt;}
.y49_c00359{bottom:351.408173pt;}
.y4c_c00359{bottom:351.408260pt;}
.y4b_c00359{bottom:351.408493pt;}
.y48_c00359{bottom:351.408560pt;}
.y46_c00359{bottom:351.408660pt;}
.y4a_c00359{bottom:351.408667pt;}
.y47_c00359{bottom:351.409000pt;}
.y3e_c00359{bottom:365.744267pt;}
.y3f_c00359{bottom:366.255360pt;}
.y40_c00359{bottom:366.403967pt;}
.y41_c00359{bottom:366.828540pt;}
.y42_c00359{bottom:367.140487pt;}
.y43_c00359{bottom:367.571567pt;}
.y44_c00359{bottom:367.962753pt;}
.y45_c00359{bottom:368.173480pt;}
.y3c_c00359{bottom:381.919140pt;}
.y3d_c00359{bottom:381.919253pt;}
.y39_c00359{bottom:381.919720pt;}
.y3b_c00359{bottom:381.919733pt;}
.y38_c00359{bottom:381.920087pt;}
.y3a_c00359{bottom:381.920213pt;}
.y37_c00359{bottom:381.920320pt;}
.y30_c00359{bottom:395.989593pt;}
.y31_c00359{bottom:396.208887pt;}
.y32_c00359{bottom:396.916833pt;}
.y33_c00359{bottom:397.513080pt;}
.y34_c00359{bottom:397.777333pt;}
.y35_c00359{bottom:398.514953pt;}
.y36_c00359{bottom:399.010313pt;}
.y29_c00359{bottom:410.631167pt;}
.y2a_c00359{bottom:410.945260pt;}
.y2b_c00359{bottom:411.581493pt;}
.y2c_c00359{bottom:412.180607pt;}
.y2d_c00359{bottom:412.349813pt;}
.y2e_c00359{bottom:413.387340pt;}
.y2f_c00359{bottom:413.621267pt;}
.y28_c00359{bottom:427.225813pt;}
.y25_c00359{bottom:427.226127pt;}
.y27_c00359{bottom:427.226273pt;}
.y26_c00359{bottom:427.226487pt;}
.y24_c00359{bottom:427.226740pt;}
.y22_c00359{bottom:427.226767pt;}
.y23_c00359{bottom:427.226860pt;}
.y21_c00359{bottom:427.226960pt;}
.y1a_c00359{bottom:440.638173pt;}
.y1b_c00359{bottom:440.940853pt;}
.y1c_c00359{bottom:441.718213pt;}
.y1d_c00359{bottom:442.589693pt;}
.y1e_c00359{bottom:442.877773pt;}
.y1f_c00359{bottom:443.540313pt;}
.y20_c00359{bottom:444.281893pt;}
.y13_c00359{bottom:455.520507pt;}
.y14_c00359{bottom:456.069273pt;}
.y15_c00359{bottom:456.717593pt;}
.y16_c00359{bottom:457.316747pt;}
.y17_c00359{bottom:458.037880pt;}
.y18_c00359{bottom:458.419220pt;}
.y19_c00359{bottom:459.157047pt;}
.yb_c00359{bottom:471.360073pt;}
.yc_c00359{bottom:471.999387pt;}
.yd_c00359{bottom:472.242833pt;}
.ye_c00359{bottom:472.417707pt;}
.yf_c00359{bottom:473.047793pt;}
.y10_c00359{bottom:473.318940pt;}
.y11_c00359{bottom:473.656540pt;}
.y12_c00359{bottom:474.542940pt;}
.y2_c00359{bottom:485.762667pt;}
.y3_c00359{bottom:486.158667pt;}
.y4_c00359{bottom:486.403607pt;}
.y5_c00359{bottom:487.184987pt;}
.y6_c00359{bottom:487.843767pt;}
.y7_c00359{bottom:488.092247pt;}
.y8_c00359{bottom:488.368547pt;}
.y9_c00359{bottom:488.790567pt;}
.ya_c00359{bottom:489.042867pt;}
.y1_c00359{bottom:500.394667pt;}
.h13_c00359{height:49.472998pt;}
.h10_c00359{height:51.339904pt;}
.h17_c00359{height:52.273356pt;}
.h9_c00359{height:53.205985pt;}
.h5_c00359{height:54.139423pt;}
.h14_c00359{height:54.140262pt;}
.h6_c00359{height:55.072861pt;}
.h16_c00359{height:55.073715pt;}
.h18_c00359{height:55.085276pt;}
.h7_c00359{height:56.006300pt;}
.hd_c00359{height:56.007168pt;}
.h8_c00359{height:57.873176pt;}
.h12_c00359{height:57.874073pt;}
.hb_c00359{height:58.806615pt;}
.h11_c00359{height:58.807526pt;}
.hc_c00359{height:59.740053pt;}
.hf_c00359{height:59.740979pt;}
.h4_c00359{height:61.606930pt;}
.h15_c00359{height:61.607884pt;}
.ha_c00359{height:62.540368pt;}
.h3_c00359{height:63.473806pt;}
.he_c00359{height:63.474790pt;}
.h2_c00359{height:71.866667pt;}
.h0_c00359{height:545.040000pt;}
.h1_c00359{height:545.333333pt;}
.w0_c00359{width:319.200000pt;}
.w1_c00359{width:319.333333pt;}
.x0_c00359{left:0.000000pt;}
.x69_c00359{left:28.486731pt;}
.x74_c00359{left:35.902421pt;}
.x6d_c00359{left:36.844256pt;}
.x64_c00359{left:38.343915pt;}
.x51_c00359{left:39.838379pt;}
.x4b_c00359{left:40.912501pt;}
.x1e_c00359{left:42.241420pt;}
.x3_c00359{left:44.100000pt;}
.xc_c00359{left:45.032200pt;}
.x61_c00359{left:52.239147pt;}
.x48_c00359{left:53.232000pt;}
.x4c_c00359{left:57.494901pt;}
.x28_c00359{left:61.594940pt;}
.x1_c00359{left:64.800000pt;}
.x45_c00359{left:67.184273pt;}
.x58_c00359{left:69.121760pt;}
.x4_c00359{left:70.500000pt;}
.x39_c00359{left:73.921560pt;}
.x1f_c00359{left:75.124820pt;}
.x4d_c00359{left:76.474784pt;}
.x14_c00359{left:78.682413pt;}
.x6a_c00359{left:82.500459pt;}
.x52_c00359{left:84.004352pt;}
.x5a_c00359{left:85.204811pt;}
.x5_c00359{left:86.829333pt;}
.x46_c00359{left:88.068347pt;}
.x33_c00359{left:89.859833pt;}
.x3d_c00359{left:91.593127pt;}
.xd_c00359{left:94.232347pt;}
.x53_c00359{left:95.766027pt;}
.x20_c00359{left:97.447173pt;}
.x71_c00359{left:99.241792pt;}
.x3a_c00359{left:100.564893pt;}
.x2e_c00359{left:101.764927pt;}
.x34_c00359{left:103.323300pt;}
.x75_c00359{left:107.864544pt;}
.xe_c00359{left:112.951573pt;}
.x1a_c00359{left:116.568820pt;}
.x15_c00359{left:119.236480pt;}
.x29_c00359{left:120.616267pt;}
.x5f_c00359{left:125.049920pt;}
.xf_c00359{left:126.387973pt;}
.x26_c00359{left:128.975560pt;}
.x6e_c00359{left:132.631936pt;}
.x57_c00359{left:135.850603pt;}
.x54_c00359{left:138.011509pt;}
.x6_c00359{left:138.921333pt;}
.x2_c00359{left:140.640000pt;}
.x35_c00359{left:141.941620pt;}
.x3e_c00359{left:145.300080pt;}
.x5b_c00359{left:150.013387pt;}
.x6f_c00359{left:152.501515pt;}
.x49_c00359{left:153.558667pt;}
.x55_c00359{left:155.773387pt;}
.x16_c00359{left:156.690587pt;}
.x3f_c00359{left:157.835127pt;}
.x65_c00359{left:158.847605pt;}
.x43_c00359{left:160.690907pt;}
.x2f_c00359{left:162.731980pt;}
.x21_c00359{left:164.654293pt;}
.x4e_c00359{left:169.307381pt;}
.x2a_c00359{left:170.323840pt;}
.x70_c00359{left:171.747051pt;}
.x3b_c00359{left:173.533313pt;}
.x10_c00359{left:174.884100pt;}
.x72_c00359{left:177.775051pt;}
.x7_c00359{left:182.840000pt;}
.x30_c00359{left:187.214813pt;}
.x76_c00359{left:190.725845pt;}
.x2b_c00359{left:192.386173pt;}
.x1b_c00359{left:193.872820pt;}
.x11_c00359{left:195.716720pt;}
.x3c_c00359{left:198.016147pt;}
.x8_c00359{left:199.405333pt;}
.x17_c00359{left:201.743240pt;}
.x56_c00359{left:203.298880pt;}
.x62_c00359{left:205.845195pt;}
.x22_c00359{left:207.378580pt;}
.x36_c00359{left:209.436327pt;}
.x59_c00359{left:213.380021pt;}
.x40_c00359{left:214.478160pt;}
.x9_c00359{left:217.825333pt;}
.x5c_c00359{left:219.621867pt;}
.x12_c00359{left:221.690833pt;}
.x44_c00359{left:223.311060pt;}
.x68_c00359{left:224.512043pt;}
.x18_c00359{left:225.565547pt;}
.x23_c00359{left:228.740713pt;}
.x31_c00359{left:233.059800pt;}
.x77_c00359{left:234.928000pt;}
.x5d_c00359{left:236.903616pt;}
.x1c_c00359{left:238.042153pt;}
.x73_c00359{left:239.936032pt;}
.x50_c00359{left:241.359115pt;}
.x66_c00359{left:243.242261pt;}
.x37_c00359{left:244.939780pt;}
.xa_c00359{left:245.960000pt;}
.x6b_c00359{left:249.116459pt;}
.x47_c00359{left:250.914587pt;}
.x2c_c00359{left:253.830267pt;}
.x60_c00359{left:257.067712pt;}
.x4a_c00359{left:258.738667pt;}
.x67_c00359{left:261.324629pt;}
.xb_c00359{left:262.780000pt;}
.x38_c00359{left:264.144940pt;}
.x41_c00359{left:268.234427pt;}
.x19_c00359{left:271.642180pt;}
.x4f_c00359{left:276.432917pt;}
.x63_c00359{left:278.119339pt;}
.x24_c00359{left:280.827100pt;}
.x42_c00359{left:282.200180pt;}
.x6c_c00359{left:284.646923pt;}
.x1d_c00359{left:287.480820pt;}
.x32_c00359{left:288.506947pt;}
.x13_c00359{left:289.852873pt;}
.x5e_c00359{left:291.630965pt;}
.x27_c00359{left:293.197420pt;}
.x2d_c00359{left:295.122793pt;}
.x25_c00359{left:314.670720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00360 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00360.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00360{transform:matrix(0.043300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043300,0.000000,0.000000,0.250000,0,0);}
.mca_c00360{transform:matrix(0.065260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065260,0.000000,0.000000,0.250000,0,0);}
.mc8_c00360{transform:matrix(0.086660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086660,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.111595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111595,0.000000,0.000000,0.250000,0,0);}
.md4_c00360{transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00360{transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);}
.me5_c00360{transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146155,0.000000,0.000000,0.250000,0,0);}
.mec_c00360{transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00360{transform:matrix(0.148940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148940,0.000000,0.000000,0.250000,0,0);}
.m66_c00360{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.m28_c00360{transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152010,0.000000,0.000000,0.250000,0,0);}
.m83_c00360{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.m93_c00360{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.mb2_c00360{transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);}
.md3_c00360{transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);}
.m92_c00360{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.md7_c00360{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00360{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);}
.mc7_c00360{transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160005,0.000000,0.000000,0.250000,0,0);}
.m7a_c00360{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.mea_c00360{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.mae_c00360{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00360{transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165360,0.000000,0.000000,0.250000,0,0);}
.me9_c00360{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.ma2_c00360{transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);}
.m35_c00360{transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);}
.m94_c00360{transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);}
.mbe_c00360{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.md9_c00360{transform:matrix(0.166860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166860,0.000000,0.000000,0.250000,0,0);}
.me3_c00360{transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);}
.m6b_c00360{transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);}
.m8e_c00360{transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);}
.mc9_c00360{transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);}
.mee_c00360{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m25_c00360{transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);}
.m9a_c00360{transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);}
.m22_c00360{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.m90_c00360{transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);}
.m89_c00360{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.m5a_c00360{transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);}
.me7_c00360{transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174830,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00360{transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);}
.md6_c00360{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m26_c00360{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);}
.m55_c00360{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mcb_c00360{transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177210,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);}
.md1_c00360{transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.m20_c00360{transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);}
.m6a_c00360{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00360{transform:matrix(0.178765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178765,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m64_c00360{transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178910,0.000000,0.000000,0.250000,0,0);}
.m24_c00360{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m5d_c00360{transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179265,0.000000,0.000000,0.250000,0,0);}
.m4e_c00360{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m42_c00360{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m84_c00360{transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);}
.m54_c00360{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m59_c00360{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.m7f_c00360{transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00360{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m31_c00360{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.m80_c00360{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m5e_c00360{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.m40_c00360{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m37_c00360{transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);}
.md5_c00360{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00360{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.md2_c00360{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.me2_c00360{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m65_c00360{transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);}
.m99_c00360{transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);}
.me4_c00360{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00360{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.m91_c00360{transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187345,0.000000,0.000000,0.250000,0,0);}
.m41_c00360{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.m21_c00360{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m2f_c00360{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.me1_c00360{transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188955,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.meb_c00360{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m6d_c00360{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.med_c00360{transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189535,0.000000,0.000000,0.250000,0,0);}
.m9e_c00360{transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m2a_c00360{transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);}
.mc4_c00360{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.me8_c00360{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m7b_c00360{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.m56_c00360{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.mb4_c00360{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m96_c00360{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.m5b_c00360{transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);}
.m82_c00360{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m8f_c00360{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);}
.m97_c00360{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.me0_c00360{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.mda_c00360{transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);}
.m52_c00360{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.m23_c00360{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);}
.ma7_c00360{transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.mb6_c00360{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m6f_c00360{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.mcd_c00360{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.mb7_c00360{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.maa_c00360{transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197905,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.mbf_c00360{transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);}
.m98_c00360{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.mb0_c00360{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m13_c00360{transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);}
.m68_c00360{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m46_c00360{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.m81_c00360{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m8b_c00360{transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m60_c00360{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.m27_c00360{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m95_c00360{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.ma1_c00360{transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00360{transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);}
.m32_c00360{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.mc5_c00360{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.mde_c00360{transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);}
.m69_c00360{transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);}
.m39_c00360{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m4a_c00360{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.mc6_c00360{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m53_c00360{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m6c_c00360{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00360{transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);}
.m7c_c00360{transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);}
.m9f_c00360{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00360{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.mef_c00360{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00360{transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);}
.m61_c00360{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00360{transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213370,0.000000,0.000000,0.250000,0,0);}
.m9b_c00360{transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);}
.m85_c00360{transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);}
.mad_c00360{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m73_c00360{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.mce_c00360{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m4b_c00360{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.m45_c00360{transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);}
.m62_c00360{transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);}
.mdd_c00360{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m7e_c00360{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m49_c00360{transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);}
.m6e_c00360{transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00360{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m9c_c00360{transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);}
.m9d_c00360{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.maf_c00360{transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);}
.mdc_c00360{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m70_c00360{transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m5f_c00360{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.m5c_c00360{transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);}
.m74_c00360{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.m79_c00360{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m57_c00360{transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221515,0.000000,0.000000,0.250000,0,0);}
.md0_c00360{transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);}
.mc3_c00360{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.mab_c00360{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.m75_c00360{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.me6_c00360{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.mcf_c00360{transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);}
.mb3_c00360{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.mb5_c00360{transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);}
.m8c_c00360{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.mac_c00360{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00360{transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00360{transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);}
.m3e_c00360{transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);}
.m88_c00360{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.m3f_c00360{transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);}
.m2d_c00360{transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.mdb_c00360{transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);}
.m78_c00360{transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);}
.mb9_c00360{transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);}
.m87_c00360{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma8_c00360{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m47_c00360{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m51_c00360{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.m67_c00360{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.ma5_c00360{transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);}
.mdf_c00360{transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);}
.m29_c00360{transform:matrix(0.269085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269085,0.000000,0.000000,0.250000,0,0);}
.m77_c00360{transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279795,0.000000,0.000000,0.250000,0,0);}
.ma6_c00360{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.ma9_c00360{transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);}
.ma4_c00360{transform:matrix(0.287550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287550,0.000000,0.000000,0.250000,0,0);}
.m71_c00360{transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);}
.mbc_c00360{transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);}
.m50_c00360{transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);}
.m86_c00360{transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);}
.md8_c00360{transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);}
.m76_c00360{transform:matrix(0.329455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329455,0.000000,0.000000,0.250000,0,0);}
.m2e_c00360{transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351535,0.000000,0.000000,0.250000,0,0);}
.m72_c00360{transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.370995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370995,0.000000,0.000000,0.250000,0,0);}
.mc2_c00360{transform:matrix(0.383385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383385,0.000000,0.000000,0.250000,0,0);}
.mc0_c00360{transform:matrix(0.447860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447860,0.000000,0.000000,0.250000,0,0);}
.mbb_c00360{transform:matrix(0.457415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457415,0.000000,0.000000,0.250000,0,0);}
.mba_c00360{transform:matrix(0.473025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473025,0.000000,0.000000,0.250000,0,0);}
.mb1_c00360{transform:matrix(0.540485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540485,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:0.000000px;}
.fc0_c00360{color:transparent;}
.fsa_c00360{font-size:53.550000px;}
.fsc_c00360{font-size:57.750000px;}
.fs7_c00360{font-size:58.800000px;}
.fs8_c00360{font-size:59.850000px;}
.fs3_c00360{font-size:60.900000px;}
.fs9_c00360{font-size:63.000000px;}
.fs2_c00360{font-size:64.050000px;}
.fs0_c00360{font-size:65.100000px;}
.fs1_c00360{font-size:66.150000px;}
.fs6_c00360{font-size:67.200000px;}
.fs5_c00360{font-size:68.250000px;}
.fs4_c00360{font-size:69.300000px;}
.fsb_c00360{font-size:74.550000px;}
.y0_c00360{bottom:0.000000px;}
.y31_c00360{bottom:23.632500px;}
.y30_c00360{bottom:23.907000px;}
.y2f_c00360{bottom:24.951000px;}
.y2e_c00360{bottom:25.270500px;}
.y2d_c00360{bottom:26.647500px;}
.y2c_c00360{bottom:26.997000px;}
.y2b_c00360{bottom:27.546000px;}
.y2a_c00360{bottom:40.210500px;}
.y29_c00360{bottom:58.593000px;}
.y28_c00360{bottom:75.406500px;}
.y27_c00360{bottom:93.028500px;}
.y26_c00360{bottom:108.213000px;}
.y25_c00360{bottom:125.116500px;}
.y24_c00360{bottom:143.442000px;}
.y23_c00360{bottom:159.441000px;}
.y22_c00360{bottom:176.854500px;}
.y21_c00360{bottom:192.853500px;}
.y20_c00360{bottom:211.023000px;}
.y1f_c00360{bottom:228.541500px;}
.y1e_c00360{bottom:245.461500px;}
.y1d_c00360{bottom:263.539500px;}
.y1c_c00360{bottom:280.830000px;}
.y1b_c00360{bottom:297.988500px;}
.y1a_c00360{bottom:315.565500px;}
.y19_c00360{bottom:332.206500px;}
.y18_c00360{bottom:347.692500px;}
.y17_c00360{bottom:365.041500px;}
.y16_c00360{bottom:381.138000px;}
.y15_c00360{bottom:398.086500px;}
.y14_c00360{bottom:413.868000px;}
.y13_c00360{bottom:431.271000px;}
.y12_c00360{bottom:447.243000px;}
.yb_c00360{bottom:464.133000px;}
.yc_c00360{bottom:464.839500px;}
.yd_c00360{bottom:465.094500px;}
.ye_c00360{bottom:465.754500px;}
.yf_c00360{bottom:466.522500px;}
.y10_c00360{bottom:466.707000px;}
.y11_c00360{bottom:467.268000px;}
.ya_c00360{bottom:482.052000px;}
.y9_c00360{bottom:498.991500px;}
.y4_c00360{bottom:515.160000px;}
.y5_c00360{bottom:515.910000px;}
.y6_c00360{bottom:516.574500px;}
.y7_c00360{bottom:517.297500px;}
.y8_c00360{bottom:518.670000px;}
.y3_c00360{bottom:533.725500px;}
.y2_c00360{bottom:552.298500px;}
.y1_c00360{bottom:566.730000px;}
.hc_c00360{height:53.550000px;}
.he_c00360{height:57.750000px;}
.h9_c00360{height:58.800000px;}
.ha_c00360{height:59.850000px;}
.h5_c00360{height:60.900000px;}
.hb_c00360{height:63.000000px;}
.h4_c00360{height:64.050000px;}
.h2_c00360{height:65.100000px;}
.h3_c00360{height:66.150000px;}
.h8_c00360{height:67.200000px;}
.h7_c00360{height:68.250000px;}
.h6_c00360{height:69.300000px;}
.hd_c00360{height:74.550000px;}
.h0_c00360{height:613.170000px;}
.h1_c00360{height:613.500000px;}
.w0_c00360{width:359.100000px;}
.w1_c00360{width:359.250000px;}
.x0_c00360{left:0.000000px;}
.x4_c00360{left:14.850000px;}
.x17_c00360{left:16.740000px;}
.x11_c00360{left:19.882500px;}
.x1_c00360{left:21.870000px;}
.x69_c00360{left:22.950000px;}
.x6b_c00360{left:24.570000px;}
.x58_c00360{left:27.270000px;}
.x6c_c00360{left:34.020000px;}
.x18_c00360{left:35.100000px;}
.x43_c00360{left:37.530000px;}
.x50_c00360{left:39.150000px;}
.x2b_c00360{left:44.010000px;}
.x65_c00360{left:45.900000px;}
.x4c_c00360{left:48.600000px;}
.x30_c00360{left:50.220000px;}
.x19_c00360{left:54.540000px;}
.x7a_c00360{left:56.700000px;}
.x3e_c00360{left:59.400000px;}
.x35_c00360{left:60.480000px;}
.x44_c00360{left:62.100000px;}
.x5_c00360{left:64.260000px;}
.x6d_c00360{left:65.880000px;}
.x25_c00360{left:66.960000px;}
.x1a_c00360{left:70.740000px;}
.x77_c00360{left:73.710000px;}
.x31_c00360{left:75.060000px;}
.x12_c00360{left:77.575500px;}
.x1f_c00360{left:80.853000px;}
.x47_c00360{left:82.080000px;}
.x6a_c00360{left:85.590000px;}
.x66_c00360{left:86.940000px;}
.x14_c00360{left:89.910000px;}
.x7b_c00360{left:92.340000px;}
.x6e_c00360{left:94.230000px;}
.x80_c00360{left:95.389500px;}
.x3f_c00360{left:99.360000px;}
.x51_c00360{left:101.790000px;}
.x20_c00360{left:104.079000px;}
.x2c_c00360{left:107.460000px;}
.x48_c00360{left:109.620000px;}
.x61_c00360{left:110.970000px;}
.x52_c00360{left:113.400000px;}
.x6_c00360{left:115.830000px;}
.x59_c00360{left:117.450000px;}
.x36_c00360{left:118.530000px;}
.x7c_c00360{left:119.610000px;}
.x49_c00360{left:122.580000px;}
.x5d_c00360{left:126.630000px;}
.x7_c00360{left:128.250000px;}
.xc_c00360{left:130.140000px;}
.x4d_c00360{left:131.760000px;}
.x1b_c00360{left:133.920000px;}
.x26_c00360{left:136.620000px;}
.x74_c00360{left:137.970000px;}
.x45_c00360{left:139.320000px;}
.x37_c00360{left:141.210000px;}
.x3c_c00360{left:142.830000px;}
.x8_c00360{left:144.180000px;}
.x2_c00360{left:145.260000px;}
.x5e_c00360{left:146.340000px;}
.xd_c00360{left:148.230000px;}
.x7d_c00360{left:149.850000px;}
.x78_c00360{left:152.010000px;}
.x62_c00360{left:153.090000px;}
.x6f_c00360{left:155.250000px;}
.x2d_c00360{left:158.760000px;}
.x32_c00360{left:160.650000px;}
.x38_c00360{left:162.000000px;}
.x21_c00360{left:164.020500px;}
.x75_c00360{left:167.130000px;}
.x15_c00360{left:169.560000px;}
.x5a_c00360{left:171.450000px;}
.x53_c00360{left:175.230000px;}
.x72_c00360{left:180.090000px;}
.x4e_c00360{left:181.170000px;}
.x54_c00360{left:183.330000px;}
.x9_c00360{left:184.410000px;}
.xe_c00360{left:186.030000px;}
.x1c_c00360{left:187.920000px;}
.x81_c00360{left:189.672000px;}
.x4a_c00360{left:190.890000px;}
.x63_c00360{left:193.860000px;}
.x27_c00360{left:196.560000px;}
.x40_c00360{left:200.880000px;}
.x55_c00360{left:203.580000px;}
.x79_c00360{left:206.550000px;}
.x28_c00360{left:208.170000px;}
.x46_c00360{left:210.330000px;}
.x7e_c00360{left:212.220000px;}
.x39_c00360{left:214.920000px;}
.xa_c00360{left:218.430000px;}
.x41_c00360{left:220.590000px;}
.x1d_c00360{left:223.290000px;}
.x2e_c00360{left:225.180000px;}
.x70_c00360{left:228.690000px;}
.x5f_c00360{left:231.660000px;}
.x22_c00360{left:233.895000px;}
.x33_c00360{left:235.440000px;}
.x3a_c00360{left:237.330000px;}
.x7f_c00360{left:239.490000px;}
.x67_c00360{left:242.190000px;}
.x56_c00360{left:246.780000px;}
.xf_c00360{left:247.860000px;}
.x23_c00360{left:250.698000px;}
.xb_c00360{left:253.800000px;}
.x3_c00360{left:257.040000px;}
.x34_c00360{left:258.390000px;}
.x1e_c00360{left:260.550000px;}
.x42_c00360{left:262.440000px;}
.x29_c00360{left:264.870000px;}
.x16_c00360{left:266.220000px;}
.x4f_c00360{left:267.570000px;}
.x3d_c00360{left:268.920000px;}
.x64_c00360{left:270.270000px;}
.x2f_c00360{left:273.240000px;}
.x5b_c00360{left:274.320000px;}
.x10_c00360{left:276.210000px;}
.x4b_c00360{left:277.560000px;}
.x68_c00360{left:281.070000px;}
.x2a_c00360{left:285.120000px;}
.x13_c00360{left:289.836000px;}
.x57_c00360{left:291.060000px;}
.x73_c00360{left:292.410000px;}
.x60_c00360{left:294.840000px;}
.x3b_c00360{left:296.190000px;}
.x71_c00360{left:298.350000px;}
.x5c_c00360{left:299.700000px;}
.x24_c00360{left:301.689000px;}
.x76_c00360{left:303.750000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
.fsa_c00360{font-size:47.600000pt;}
.fsc_c00360{font-size:51.333333pt;}
.fs7_c00360{font-size:52.266667pt;}
.fs8_c00360{font-size:53.200000pt;}
.fs3_c00360{font-size:54.133333pt;}
.fs9_c00360{font-size:56.000000pt;}
.fs2_c00360{font-size:56.933333pt;}
.fs0_c00360{font-size:57.866667pt;}
.fs1_c00360{font-size:58.800000pt;}
.fs6_c00360{font-size:59.733333pt;}
.fs5_c00360{font-size:60.666667pt;}
.fs4_c00360{font-size:61.600000pt;}
.fsb_c00360{font-size:66.266667pt;}
.y0_c00360{bottom:0.000000pt;}
.y31_c00360{bottom:21.006667pt;}
.y30_c00360{bottom:21.250667pt;}
.y2f_c00360{bottom:22.178667pt;}
.y2e_c00360{bottom:22.462667pt;}
.y2d_c00360{bottom:23.686667pt;}
.y2c_c00360{bottom:23.997333pt;}
.y2b_c00360{bottom:24.485333pt;}
.y2a_c00360{bottom:35.742667pt;}
.y29_c00360{bottom:52.082667pt;}
.y28_c00360{bottom:67.028000pt;}
.y27_c00360{bottom:82.692000pt;}
.y26_c00360{bottom:96.189333pt;}
.y25_c00360{bottom:111.214667pt;}
.y24_c00360{bottom:127.504000pt;}
.y23_c00360{bottom:141.725333pt;}
.y22_c00360{bottom:157.204000pt;}
.y21_c00360{bottom:171.425333pt;}
.y20_c00360{bottom:187.576000pt;}
.y1f_c00360{bottom:203.148000pt;}
.y1e_c00360{bottom:218.188000pt;}
.y1d_c00360{bottom:234.257333pt;}
.y1c_c00360{bottom:249.626667pt;}
.y1b_c00360{bottom:264.878667pt;}
.y1a_c00360{bottom:280.502667pt;}
.y19_c00360{bottom:295.294667pt;}
.y18_c00360{bottom:309.060000pt;}
.y17_c00360{bottom:324.481333pt;}
.y16_c00360{bottom:338.789333pt;}
.y15_c00360{bottom:353.854667pt;}
.y14_c00360{bottom:367.882667pt;}
.y13_c00360{bottom:383.352000pt;}
.y12_c00360{bottom:397.549333pt;}
.yb_c00360{bottom:412.562667pt;}
.yc_c00360{bottom:413.190667pt;}
.yd_c00360{bottom:413.417333pt;}
.ye_c00360{bottom:414.004000pt;}
.yf_c00360{bottom:414.686667pt;}
.y10_c00360{bottom:414.850667pt;}
.y11_c00360{bottom:415.349333pt;}
.ya_c00360{bottom:428.490667pt;}
.y9_c00360{bottom:443.548000pt;}
.y4_c00360{bottom:457.920000pt;}
.y5_c00360{bottom:458.586667pt;}
.y6_c00360{bottom:459.177333pt;}
.y7_c00360{bottom:459.820000pt;}
.y8_c00360{bottom:461.040000pt;}
.y3_c00360{bottom:474.422667pt;}
.y2_c00360{bottom:490.932000pt;}
.y1_c00360{bottom:503.760000pt;}
.hc_c00360{height:47.600000pt;}
.he_c00360{height:51.333333pt;}
.h9_c00360{height:52.266667pt;}
.ha_c00360{height:53.200000pt;}
.h5_c00360{height:54.133333pt;}
.hb_c00360{height:56.000000pt;}
.h4_c00360{height:56.933333pt;}
.h2_c00360{height:57.866667pt;}
.h3_c00360{height:58.800000pt;}
.h8_c00360{height:59.733333pt;}
.h7_c00360{height:60.666667pt;}
.h6_c00360{height:61.600000pt;}
.hd_c00360{height:66.266667pt;}
.h0_c00360{height:545.040000pt;}
.h1_c00360{height:545.333333pt;}
.w0_c00360{width:319.200000pt;}
.w1_c00360{width:319.333333pt;}
.x0_c00360{left:0.000000pt;}
.x4_c00360{left:13.200000pt;}
.x17_c00360{left:14.880000pt;}
.x11_c00360{left:17.673333pt;}
.x1_c00360{left:19.440000pt;}
.x69_c00360{left:20.400000pt;}
.x6b_c00360{left:21.840000pt;}
.x58_c00360{left:24.240000pt;}
.x6c_c00360{left:30.240000pt;}
.x18_c00360{left:31.200000pt;}
.x43_c00360{left:33.360000pt;}
.x50_c00360{left:34.800000pt;}
.x2b_c00360{left:39.120000pt;}
.x65_c00360{left:40.800000pt;}
.x4c_c00360{left:43.200000pt;}
.x30_c00360{left:44.640000pt;}
.x19_c00360{left:48.480000pt;}
.x7a_c00360{left:50.400000pt;}
.x3e_c00360{left:52.800000pt;}
.x35_c00360{left:53.760000pt;}
.x44_c00360{left:55.200000pt;}
.x5_c00360{left:57.120000pt;}
.x6d_c00360{left:58.560000pt;}
.x25_c00360{left:59.520000pt;}
.x1a_c00360{left:62.880000pt;}
.x77_c00360{left:65.520000pt;}
.x31_c00360{left:66.720000pt;}
.x12_c00360{left:68.956000pt;}
.x1f_c00360{left:71.869333pt;}
.x47_c00360{left:72.960000pt;}
.x6a_c00360{left:76.080000pt;}
.x66_c00360{left:77.280000pt;}
.x14_c00360{left:79.920000pt;}
.x7b_c00360{left:82.080000pt;}
.x6e_c00360{left:83.760000pt;}
.x80_c00360{left:84.790667pt;}
.x3f_c00360{left:88.320000pt;}
.x51_c00360{left:90.480000pt;}
.x20_c00360{left:92.514667pt;}
.x2c_c00360{left:95.520000pt;}
.x48_c00360{left:97.440000pt;}
.x61_c00360{left:98.640000pt;}
.x52_c00360{left:100.800000pt;}
.x6_c00360{left:102.960000pt;}
.x59_c00360{left:104.400000pt;}
.x36_c00360{left:105.360000pt;}
.x7c_c00360{left:106.320000pt;}
.x49_c00360{left:108.960000pt;}
.x5d_c00360{left:112.560000pt;}
.x7_c00360{left:114.000000pt;}
.xc_c00360{left:115.680000pt;}
.x4d_c00360{left:117.120000pt;}
.x1b_c00360{left:119.040000pt;}
.x26_c00360{left:121.440000pt;}
.x74_c00360{left:122.640000pt;}
.x45_c00360{left:123.840000pt;}
.x37_c00360{left:125.520000pt;}
.x3c_c00360{left:126.960000pt;}
.x8_c00360{left:128.160000pt;}
.x2_c00360{left:129.120000pt;}
.x5e_c00360{left:130.080000pt;}
.xd_c00360{left:131.760000pt;}
.x7d_c00360{left:133.200000pt;}
.x78_c00360{left:135.120000pt;}
.x62_c00360{left:136.080000pt;}
.x6f_c00360{left:138.000000pt;}
.x2d_c00360{left:141.120000pt;}
.x32_c00360{left:142.800000pt;}
.x38_c00360{left:144.000000pt;}
.x21_c00360{left:145.796000pt;}
.x75_c00360{left:148.560000pt;}
.x15_c00360{left:150.720000pt;}
.x5a_c00360{left:152.400000pt;}
.x53_c00360{left:155.760000pt;}
.x72_c00360{left:160.080000pt;}
.x4e_c00360{left:161.040000pt;}
.x54_c00360{left:162.960000pt;}
.x9_c00360{left:163.920000pt;}
.xe_c00360{left:165.360000pt;}
.x1c_c00360{left:167.040000pt;}
.x81_c00360{left:168.597333pt;}
.x4a_c00360{left:169.680000pt;}
.x63_c00360{left:172.320000pt;}
.x27_c00360{left:174.720000pt;}
.x40_c00360{left:178.560000pt;}
.x55_c00360{left:180.960000pt;}
.x79_c00360{left:183.600000pt;}
.x28_c00360{left:185.040000pt;}
.x46_c00360{left:186.960000pt;}
.x7e_c00360{left:188.640000pt;}
.x39_c00360{left:191.040000pt;}
.xa_c00360{left:194.160000pt;}
.x41_c00360{left:196.080000pt;}
.x1d_c00360{left:198.480000pt;}
.x2e_c00360{left:200.160000pt;}
.x70_c00360{left:203.280000pt;}
.x5f_c00360{left:205.920000pt;}
.x22_c00360{left:207.906667pt;}
.x33_c00360{left:209.280000pt;}
.x3a_c00360{left:210.960000pt;}
.x7f_c00360{left:212.880000pt;}
.x67_c00360{left:215.280000pt;}
.x56_c00360{left:219.360000pt;}
.xf_c00360{left:220.320000pt;}
.x23_c00360{left:222.842667pt;}
.xb_c00360{left:225.600000pt;}
.x3_c00360{left:228.480000pt;}
.x34_c00360{left:229.680000pt;}
.x1e_c00360{left:231.600000pt;}
.x42_c00360{left:233.280000pt;}
.x29_c00360{left:235.440000pt;}
.x16_c00360{left:236.640000pt;}
.x4f_c00360{left:237.840000pt;}
.x3d_c00360{left:239.040000pt;}
.x64_c00360{left:240.240000pt;}
.x2f_c00360{left:242.880000pt;}
.x5b_c00360{left:243.840000pt;}
.x10_c00360{left:245.520000pt;}
.x4b_c00360{left:246.720000pt;}
.x68_c00360{left:249.840000pt;}
.x2a_c00360{left:253.440000pt;}
.x13_c00360{left:257.632000pt;}
.x57_c00360{left:258.720000pt;}
.x73_c00360{left:259.920000pt;}
.x60_c00360{left:262.080000pt;}
.x3b_c00360{left:263.280000pt;}
.x71_c00360{left:265.200000pt;}
.x5c_c00360{left:266.400000pt;}
.x24_c00360{left:268.168000pt;}
.x76_c00360{left:270.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00361 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00361 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00361 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00361 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00361.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00361{transform:matrix(0.038630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038630,0.000000,0.000000,0.250000,0,0);}
.m8e_c00361{transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00361{transform:matrix(0.098460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098460,0.000000,0.000000,0.250000,0,0);}
.mc6_c00361{transform:matrix(0.106235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106235,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.141610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141610,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);}
.mb8_c00361{transform:matrix(0.146545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146545,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);}
.mb4_c00361{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155095,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);}
.m51_c00361{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158515,0.000000,0.000000,0.250000,0,0);}
.mdb_c00361{transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158610,0.000000,0.000000,0.250000,0,0);}
.mae_c00361{transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.mc9_c00361{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160085,0.000000,0.000000,0.250000,0,0);}
.m6b_c00361{transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161045,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m45_c00361{transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.me6_c00361{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.162830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162830,0.000000,0.000000,0.250000,0,0);}
.mca_c00361{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.md3_c00361{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);}
.m9a_c00361{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.md9_c00361{transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);}
.mb2_c00361{transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00361{transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166795,0.000000,0.000000,0.250000,0,0);}
.m61_c00361{transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);}
.m5e_c00361{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.ma5_c00361{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167910,0.000000,0.000000,0.250000,0,0);}
.md6_c00361{transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00361{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00361{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);}
.m95_c00361{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00361{transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);}
.m76_c00361{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m59_c00361{transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.mb5_c00361{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.md7_c00361{transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172445,0.000000,0.000000,0.250000,0,0);}
.me8_c00361{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m65_c00361{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m67_c00361{transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172830,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.m5f_c00361{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m81_c00361{transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);}
.m75_c00361{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.maa_c00361{transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);}
.md4_c00361{transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);}
.m27_c00361{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.ma0_c00361{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176890,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177665,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m66_c00361{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.mb1_c00361{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m9b_c00361{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00361{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.m88_c00361{transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);}
.m7d_c00361{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m5c_c00361{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m7a_c00361{transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181185,0.000000,0.000000,0.250000,0,0);}
.me4_c00361{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.md5_c00361{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.mb7_c00361{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m9e_c00361{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.mda_c00361{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00361{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.mbf_c00361{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.m71_c00361{transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184155,0.000000,0.000000,0.250000,0,0);}
.mc2_c00361{transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m89_c00361{transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184965,0.000000,0.000000,0.250000,0,0);}
.mb6_c00361{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.me1_c00361{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m9c_c00361{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mbb_c00361{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.mcb_c00361{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00361{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.mac_c00361{transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188265,0.000000,0.000000,0.250000,0,0);}
.mb0_c00361{transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);}
.m96_c00361{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m9d_c00361{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.mb3_c00361{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m62_c00361{transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);}
.m63_c00361{transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190035,0.000000,0.000000,0.250000,0,0);}
.m6d_c00361{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.m53_c00361{transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191055,0.000000,0.000000,0.250000,0,0);}
.m5a_c00361{transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);}
.mc8_c00361{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m64_c00361{transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);}
.mdf_c00361{transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);}
.mab_c00361{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.mea_c00361{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.me2_c00361{transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192145,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m57_c00361{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m83_c00361{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.mc0_c00361{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.m8b_c00361{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.me5_c00361{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m8a_c00361{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.mc7_c00361{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.m8c_c00361{transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196170,0.000000,0.000000,0.250000,0,0);}
.m56_c00361{transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00361{transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);}
.ma6_c00361{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.mcf_c00361{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m60_c00361{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m74_c00361{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.me7_c00361{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mc3_c00361{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.ma4_c00361{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m5b_c00361{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m7f_c00361{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m79_c00361{transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199930,0.000000,0.000000,0.250000,0,0);}
.m69_c00361{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m98_c00361{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.mad_c00361{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00361{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);}
.m85_c00361{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.md0_c00361{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);}
.m80_c00361{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.m90_c00361{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.me9_c00361{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.m77_c00361{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);}
.m7c_c00361{transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);}
.mc1_c00361{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00361{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.md8_c00361{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m99_c00361{transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);}
.m58_c00361{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.mce_c00361{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);}
.m86_c00361{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);}
.mcd_c00361{transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00361{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);}
.m78_c00361{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.mdc_c00361{transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);}
.m7b_c00361{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.mde_c00361{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.me3_c00361{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216840,0.000000,0.000000,0.250000,0,0);}
.m97_c00361{transform:matrix(0.217065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217065,0.000000,0.000000,0.250000,0,0);}
.ma2_c00361{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.ma7_c00361{transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218990,0.000000,0.000000,0.250000,0,0);}
.m54_c00361{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m68_c00361{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.me0_c00361{transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);}
.m3e_c00361{transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);}
.m91_c00361{transform:matrix(0.223990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223990,0.000000,0.000000,0.250000,0,0);}
.m93_c00361{transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224020,0.000000,0.000000,0.250000,0,0);}
.mc5_c00361{transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);}
.m7e_c00361{transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);}
.m9f_c00361{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);}
.m84_c00361{transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);}
.maf_c00361{transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.235990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235990,0.000000,0.000000,0.250000,0,0);}
.mba_c00361{transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);}
.md1_c00361{transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);}
.mdd_c00361{transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);}
.m73_c00361{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.md2_c00361{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m8f_c00361{transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m94_c00361{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m92_c00361{transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);}
.mcc_c00361{transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.339815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339815,0.000000,0.000000,0.250000,0,0);}
.m3a_c00361{transform:matrix(0.410950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00361{transform:matrix(0.616400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616400,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:0.000000px;}
.fc0_c00361{color:transparent;}
.fs7_c00361{font-size:50.400000px;}
.fs4_c00361{font-size:59.850000px;}
.fsd_c00361{font-size:60.900000px;}
.fsb_c00361{font-size:61.950000px;}
.fs2_c00361{font-size:63.000000px;}
.fs3_c00361{font-size:64.050000px;}
.fs8_c00361{font-size:65.100000px;}
.fs9_c00361{font-size:66.150000px;}
.fsa_c00361{font-size:67.200000px;}
.fs5_c00361{font-size:68.250000px;}
.fsc_c00361{font-size:69.300000px;}
.fs6_c00361{font-size:71.400000px;}
.fs1_c00361{font-size:73.500000px;}
.fs0_c00361{font-size:89.250000px;}
.y0_c00361{bottom:0.000000px;}
.y32_c00361{bottom:24.394500px;}
.y2c_c00361{bottom:39.960000px;}
.y2d_c00361{bottom:41.199000px;}
.y2e_c00361{bottom:41.640000px;}
.y2f_c00361{bottom:42.348000px;}
.y30_c00361{bottom:43.368000px;}
.y31_c00361{bottom:44.271000px;}
.y2b_c00361{bottom:58.444500px;}
.y2a_c00361{bottom:75.054000px;}
.y29_c00361{bottom:91.204500px;}
.y28_c00361{bottom:108.222000px;}
.y27_c00361{bottom:125.437500px;}
.y26_c00361{bottom:142.954500px;}
.y25_c00361{bottom:159.519000px;}
.y24_c00361{bottom:177.460500px;}
.y23_c00361{bottom:193.932000px;}
.y22_c00361{bottom:212.019000px;}
.y21_c00361{bottom:228.564000px;}
.y20_c00361{bottom:245.343000px;}
.y1f_c00361{bottom:262.540500px;}
.y1e_c00361{bottom:278.863500px;}
.y1d_c00361{bottom:296.052000px;}
.y16_c00361{bottom:311.040000px;}
.y17_c00361{bottom:311.776500px;}
.y18_c00361{bottom:312.112500px;}
.y19_c00361{bottom:312.640500px;}
.y1a_c00361{bottom:313.162500px;}
.y1b_c00361{bottom:313.483500px;}
.y1c_c00361{bottom:314.019000px;}
.y15_c00361{bottom:329.923500px;}
.y14_c00361{bottom:347.082000px;}
.y13_c00361{bottom:364.186500px;}
.y12_c00361{bottom:381.465000px;}
.y11_c00361{bottom:398.304000px;}
.y10_c00361{bottom:415.578000px;}
.ye_c00361{bottom:431.731500px;}
.yf_c00361{bottom:435.985500px;}
.yd_c00361{bottom:449.008500px;}
.yc_c00361{bottom:465.706500px;}
.yb_c00361{bottom:482.596500px;}
.ya_c00361{bottom:499.480500px;}
.y4_c00361{bottom:514.891500px;}
.y5_c00361{bottom:515.542500px;}
.y6_c00361{bottom:516.258000px;}
.y7_c00361{bottom:517.003500px;}
.y8_c00361{bottom:517.228500px;}
.y9_c00361{bottom:517.662000px;}
.y3_c00361{bottom:533.379000px;}
.y2_c00361{bottom:550.356000px;}
.y1_c00361{bottom:566.596500px;}
.h9_c00361{height:50.400000px;}
.h6_c00361{height:59.850000px;}
.hf_c00361{height:60.900000px;}
.hd_c00361{height:61.950000px;}
.h4_c00361{height:63.000000px;}
.h5_c00361{height:64.050000px;}
.ha_c00361{height:65.100000px;}
.hb_c00361{height:66.150000px;}
.hc_c00361{height:67.200000px;}
.h7_c00361{height:68.250000px;}
.he_c00361{height:69.300000px;}
.h8_c00361{height:71.400000px;}
.h3_c00361{height:73.500000px;}
.h2_c00361{height:89.250000px;}
.h0_c00361{height:613.170000px;}
.h1_c00361{height:613.500000px;}
.w0_c00361{width:359.100000px;}
.w1_c00361{width:359.250000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:41.040000px;}
.x4e_c00361{left:42.391500px;}
.x2a_c00361{left:44.551500px;}
.x57_c00361{left:46.981500px;}
.x17_c00361{left:54.811500px;}
.xb_c00361{left:56.700000px;}
.x69_c00361{left:60.211500px;}
.x2f_c00361{left:61.831500px;}
.x43_c00361{left:64.531500px;}
.x3_c00361{left:67.770000px;}
.x54_c00361{left:68.851500px;}
.x72_c00361{left:72.361500px;}
.x20_c00361{left:73.711500px;}
.x49_c00361{left:75.061500px;}
.x34_c00361{left:76.681500px;}
.x1b_c00361{left:78.031500px;}
.x3a_c00361{left:80.461500px;}
.x51_c00361{left:82.351500px;}
.x6b_c00361{left:86.401500px;}
.x2b_c00361{left:88.291500px;}
.x5c_c00361{left:90.181500px;}
.x4_c00361{left:95.040000px;}
.x66_c00361{left:96.121500px;}
.x3d_c00361{left:97.471500px;}
.x12_c00361{left:100.323000px;}
.x44_c00361{left:103.411500px;}
.x5a_c00361{left:106.111500px;}
.x46_c00361{left:108.631500px;}
.x25_c00361{left:109.891500px;}
.x6e_c00361{left:111.511500px;}
.x60_c00361{left:112.591500px;}
.x3e_c00361{left:117.991500px;}
.xc_c00361{left:120.690000px;}
.x30_c00361{left:123.391500px;}
.x3b_c00361{left:125.011500px;}
.x55_c00361{left:131.761500px;}
.x5d_c00361{left:132.841500px;}
.x6a_c00361{left:135.541500px;}
.x3f_c00361{left:137.431500px;}
.x47_c00361{left:139.194000px;}
.x4a_c00361{left:140.671500px;}
.x18_c00361{left:145.801500px;}
.x26_c00361{left:146.881500px;}
.x1c_c00361{left:151.471500px;}
.x21_c00361{left:152.551500px;}
.x73_c00361{left:154.360500px;}
.x4b_c00361{left:160.921500px;}
.x5_c00361{left:162.000000px;}
.xd_c00361{left:164.160000px;}
.x13_c00361{left:165.373500px;}
.x1d_c00361{left:169.831500px;}
.x1_c00361{left:171.720000px;}
.x40_c00361{left:173.071500px;}
.x6_c00361{left:175.770000px;}
.x35_c00361{left:179.281500px;}
.x19_c00361{left:181.441500px;}
.x62_c00361{left:182.791500px;}
.x5e_c00361{left:185.491500px;}
.x41_c00361{left:187.381500px;}
.x6f_c00361{left:192.511500px;}
.xe_c00361{left:195.210000px;}
.x7_c00361{left:197.370000px;}
.x22_c00361{left:201.691500px;}
.x63_c00361{left:202.771500px;}
.x36_c00361{left:209.791500px;}
.x3c_c00361{left:211.141500px;}
.x67_c00361{left:212.761500px;}
.xf_c00361{left:214.110000px;}
.x31_c00361{left:219.781500px;}
.x2c_c00361{left:223.291500px;}
.x42_c00361{left:227.881500px;}
.x37_c00361{left:229.501500px;}
.x1e_c00361{left:231.121500px;}
.x14_c00361{left:233.136000px;}
.x48_c00361{left:234.711000px;}
.x4f_c00361{left:235.711500px;}
.x32_c00361{left:236.791500px;}
.x8_c00361{left:237.870000px;}
.x70_c00361{left:239.491500px;}
.x58_c00361{left:241.111500px;}
.x1f_c00361{left:244.351500px;}
.x52_c00361{left:248.131500px;}
.x15_c00361{left:253.627500px;}
.x6c_c00361{left:255.961500px;}
.x4c_c00361{left:257.041500px;}
.x61_c00361{left:258.121500px;}
.x1a_c00361{left:261.361500px;}
.x27_c00361{left:262.981500px;}
.x53_c00361{left:264.601500px;}
.x68_c00361{left:265.951500px;}
.x5b_c00361{left:268.651500px;}
.x2d_c00361{left:270.811500px;}
.x71_c00361{left:272.701500px;}
.x5f_c00361{left:280.531500px;}
.x59_c00361{left:281.611500px;}
.x10_c00361{left:284.850000px;}
.x23_c00361{left:287.281500px;}
.x4d_c00361{left:289.171500px;}
.x9_c00361{left:291.870000px;}
.x16_c00361{left:293.088000px;}
.x64_c00361{left:295.921500px;}
.x45_c00361{left:301.321500px;}
.x38_c00361{left:302.401500px;}
.x33_c00361{left:306.721500px;}
.x11_c00361{left:310.500000px;}
.x2e_c00361{left:312.121500px;}
.x50_c00361{left:314.281500px;}
.x24_c00361{left:315.631500px;}
.x39_c00361{left:316.711500px;}
.x65_c00361{left:317.791500px;}
.x28_c00361{left:324.541500px;}
.xa_c00361{left:328.050000px;}
.x56_c00361{left:330.481500px;}
.x6d_c00361{left:331.561500px;}
.x29_c00361{left:338.067000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.fs7_c00361{font-size:44.800000pt;}
.fs4_c00361{font-size:53.200000pt;}
.fsd_c00361{font-size:54.133333pt;}
.fsb_c00361{font-size:55.066667pt;}
.fs2_c00361{font-size:56.000000pt;}
.fs3_c00361{font-size:56.933333pt;}
.fs8_c00361{font-size:57.866667pt;}
.fs9_c00361{font-size:58.800000pt;}
.fsa_c00361{font-size:59.733333pt;}
.fs5_c00361{font-size:60.666667pt;}
.fsc_c00361{font-size:61.600000pt;}
.fs6_c00361{font-size:63.466667pt;}
.fs1_c00361{font-size:65.333333pt;}
.fs0_c00361{font-size:79.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y32_c00361{bottom:21.684000pt;}
.y2c_c00361{bottom:35.520000pt;}
.y2d_c00361{bottom:36.621333pt;}
.y2e_c00361{bottom:37.013333pt;}
.y2f_c00361{bottom:37.642667pt;}
.y30_c00361{bottom:38.549333pt;}
.y31_c00361{bottom:39.352000pt;}
.y2b_c00361{bottom:51.950667pt;}
.y2a_c00361{bottom:66.714667pt;}
.y29_c00361{bottom:81.070667pt;}
.y28_c00361{bottom:96.197333pt;}
.y27_c00361{bottom:111.500000pt;}
.y26_c00361{bottom:127.070667pt;}
.y25_c00361{bottom:141.794667pt;}
.y24_c00361{bottom:157.742667pt;}
.y23_c00361{bottom:172.384000pt;}
.y22_c00361{bottom:188.461333pt;}
.y21_c00361{bottom:203.168000pt;}
.y20_c00361{bottom:218.082667pt;}
.y1f_c00361{bottom:233.369333pt;}
.y1e_c00361{bottom:247.878667pt;}
.y1d_c00361{bottom:263.157333pt;}
.y16_c00361{bottom:276.480000pt;}
.y17_c00361{bottom:277.134667pt;}
.y18_c00361{bottom:277.433333pt;}
.y19_c00361{bottom:277.902667pt;}
.y1a_c00361{bottom:278.366667pt;}
.y1b_c00361{bottom:278.652000pt;}
.y1c_c00361{bottom:279.128000pt;}
.y15_c00361{bottom:293.265333pt;}
.y14_c00361{bottom:308.517333pt;}
.y13_c00361{bottom:323.721333pt;}
.y12_c00361{bottom:339.080000pt;}
.y11_c00361{bottom:354.048000pt;}
.y10_c00361{bottom:369.402667pt;}
.ye_c00361{bottom:383.761333pt;}
.yf_c00361{bottom:387.542667pt;}
.yd_c00361{bottom:399.118667pt;}
.yc_c00361{bottom:413.961333pt;}
.yb_c00361{bottom:428.974667pt;}
.ya_c00361{bottom:443.982667pt;}
.y4_c00361{bottom:457.681333pt;}
.y5_c00361{bottom:458.260000pt;}
.y6_c00361{bottom:458.896000pt;}
.y7_c00361{bottom:459.558667pt;}
.y8_c00361{bottom:459.758667pt;}
.y9_c00361{bottom:460.144000pt;}
.y3_c00361{bottom:474.114667pt;}
.y2_c00361{bottom:489.205333pt;}
.y1_c00361{bottom:503.641333pt;}
.h9_c00361{height:44.800000pt;}
.h6_c00361{height:53.200000pt;}
.hf_c00361{height:54.133333pt;}
.hd_c00361{height:55.066667pt;}
.h4_c00361{height:56.000000pt;}
.h5_c00361{height:56.933333pt;}
.ha_c00361{height:57.866667pt;}
.hb_c00361{height:58.800000pt;}
.hc_c00361{height:59.733333pt;}
.h7_c00361{height:60.666667pt;}
.he_c00361{height:61.600000pt;}
.h8_c00361{height:63.466667pt;}
.h3_c00361{height:65.333333pt;}
.h2_c00361{height:79.333333pt;}
.h0_c00361{height:545.040000pt;}
.h1_c00361{height:545.333333pt;}
.w0_c00361{width:319.200000pt;}
.w1_c00361{width:319.333333pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:36.480000pt;}
.x4e_c00361{left:37.681333pt;}
.x2a_c00361{left:39.601333pt;}
.x57_c00361{left:41.761333pt;}
.x17_c00361{left:48.721333pt;}
.xb_c00361{left:50.400000pt;}
.x69_c00361{left:53.521333pt;}
.x2f_c00361{left:54.961333pt;}
.x43_c00361{left:57.361333pt;}
.x3_c00361{left:60.240000pt;}
.x54_c00361{left:61.201333pt;}
.x72_c00361{left:64.321333pt;}
.x20_c00361{left:65.521333pt;}
.x49_c00361{left:66.721333pt;}
.x34_c00361{left:68.161333pt;}
.x1b_c00361{left:69.361333pt;}
.x3a_c00361{left:71.521333pt;}
.x51_c00361{left:73.201333pt;}
.x6b_c00361{left:76.801333pt;}
.x2b_c00361{left:78.481333pt;}
.x5c_c00361{left:80.161333pt;}
.x4_c00361{left:84.480000pt;}
.x66_c00361{left:85.441333pt;}
.x3d_c00361{left:86.641333pt;}
.x12_c00361{left:89.176000pt;}
.x44_c00361{left:91.921333pt;}
.x5a_c00361{left:94.321333pt;}
.x46_c00361{left:96.561333pt;}
.x25_c00361{left:97.681333pt;}
.x6e_c00361{left:99.121333pt;}
.x60_c00361{left:100.081333pt;}
.x3e_c00361{left:104.881333pt;}
.xc_c00361{left:107.280000pt;}
.x30_c00361{left:109.681333pt;}
.x3b_c00361{left:111.121333pt;}
.x55_c00361{left:117.121333pt;}
.x5d_c00361{left:118.081333pt;}
.x6a_c00361{left:120.481333pt;}
.x3f_c00361{left:122.161333pt;}
.x47_c00361{left:123.728000pt;}
.x4a_c00361{left:125.041333pt;}
.x18_c00361{left:129.601333pt;}
.x26_c00361{left:130.561333pt;}
.x1c_c00361{left:134.641333pt;}
.x21_c00361{left:135.601333pt;}
.x73_c00361{left:137.209333pt;}
.x4b_c00361{left:143.041333pt;}
.x5_c00361{left:144.000000pt;}
.xd_c00361{left:145.920000pt;}
.x13_c00361{left:146.998667pt;}
.x1d_c00361{left:150.961333pt;}
.x1_c00361{left:152.640000pt;}
.x40_c00361{left:153.841333pt;}
.x6_c00361{left:156.240000pt;}
.x35_c00361{left:159.361333pt;}
.x19_c00361{left:161.281333pt;}
.x62_c00361{left:162.481333pt;}
.x5e_c00361{left:164.881333pt;}
.x41_c00361{left:166.561333pt;}
.x6f_c00361{left:171.121333pt;}
.xe_c00361{left:173.520000pt;}
.x7_c00361{left:175.440000pt;}
.x22_c00361{left:179.281333pt;}
.x63_c00361{left:180.241333pt;}
.x36_c00361{left:186.481333pt;}
.x3c_c00361{left:187.681333pt;}
.x67_c00361{left:189.121333pt;}
.xf_c00361{left:190.320000pt;}
.x31_c00361{left:195.361333pt;}
.x2c_c00361{left:198.481333pt;}
.x42_c00361{left:202.561333pt;}
.x37_c00361{left:204.001333pt;}
.x1e_c00361{left:205.441333pt;}
.x14_c00361{left:207.232000pt;}
.x48_c00361{left:208.632000pt;}
.x4f_c00361{left:209.521333pt;}
.x32_c00361{left:210.481333pt;}
.x8_c00361{left:211.440000pt;}
.x70_c00361{left:212.881333pt;}
.x58_c00361{left:214.321333pt;}
.x1f_c00361{left:217.201333pt;}
.x52_c00361{left:220.561333pt;}
.x15_c00361{left:225.446667pt;}
.x6c_c00361{left:227.521333pt;}
.x4c_c00361{left:228.481333pt;}
.x61_c00361{left:229.441333pt;}
.x1a_c00361{left:232.321333pt;}
.x27_c00361{left:233.761333pt;}
.x53_c00361{left:235.201333pt;}
.x68_c00361{left:236.401333pt;}
.x5b_c00361{left:238.801333pt;}
.x2d_c00361{left:240.721333pt;}
.x71_c00361{left:242.401333pt;}
.x5f_c00361{left:249.361333pt;}
.x59_c00361{left:250.321333pt;}
.x10_c00361{left:253.200000pt;}
.x23_c00361{left:255.361333pt;}
.x4d_c00361{left:257.041333pt;}
.x9_c00361{left:259.440000pt;}
.x16_c00361{left:260.522667pt;}
.x64_c00361{left:263.041333pt;}
.x45_c00361{left:267.841333pt;}
.x38_c00361{left:268.801333pt;}
.x33_c00361{left:272.641333pt;}
.x11_c00361{left:276.000000pt;}
.x2e_c00361{left:277.441333pt;}
.x50_c00361{left:279.361333pt;}
.x24_c00361{left:280.561333pt;}
.x39_c00361{left:281.521333pt;}
.x65_c00361{left:282.481333pt;}
.x28_c00361{left:288.481333pt;}
.xa_c00361{left:291.600000pt;}
.x56_c00361{left:293.761333pt;}
.x6d_c00361{left:294.721333pt;}
.x29_c00361{left:300.504000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00362 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00362 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00362 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00362 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00362.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m72_c00362{transform:matrix(0.035995,-0.000576,0.003999,0.249968,0,0);-ms-transform:matrix(0.035995,-0.000576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.035995,-0.000576,0.003999,0.249968,0,0);}
.m0_c00362{transform:matrix(0.145580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145580,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(0.147006,-0.002352,0.003999,0.249968,0,0);-ms-transform:matrix(0.147006,-0.002352,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147006,-0.002352,0.003999,0.249968,0,0);}
.me3_c00362{transform:matrix(0.148596,-0.002378,0.003999,0.249968,0,0);-ms-transform:matrix(0.148596,-0.002378,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148596,-0.002378,0.003999,0.249968,0,0);}
.mc6_c00362{transform:matrix(0.150756,-0.002412,0.003999,0.249968,0,0);-ms-transform:matrix(0.150756,-0.002412,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150756,-0.002412,0.003999,0.249968,0,0);}
.m78_c00362{transform:matrix(0.154845,-0.002478,0.003999,0.249968,0,0);-ms-transform:matrix(0.154845,-0.002478,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154845,-0.002478,0.003999,0.249968,0,0);}
.m4c_c00362{transform:matrix(0.155925,-0.002495,0.003999,0.249968,0,0);-ms-transform:matrix(0.155925,-0.002495,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155925,-0.002495,0.003999,0.249968,0,0);}
.m53_c00362{transform:matrix(0.156370,-0.002502,0.003999,0.249968,0,0);-ms-transform:matrix(0.156370,-0.002502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156370,-0.002502,0.003999,0.249968,0,0);}
.mf_c00362{transform:matrix(0.162004,-0.002592,0.003999,0.249968,0,0);-ms-transform:matrix(0.162004,-0.002592,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162004,-0.002592,0.003999,0.249968,0,0);}
.mb0_c00362{transform:matrix(0.162359,-0.002598,0.003999,0.249968,0,0);-ms-transform:matrix(0.162359,-0.002598,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162359,-0.002598,0.003999,0.249968,0,0);}
.mad_c00362{transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);-ms-transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);}
.m20_c00362{transform:matrix(0.163029,-0.002608,0.003999,0.249968,0,0);-ms-transform:matrix(0.163029,-0.002608,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163029,-0.002608,0.003999,0.249968,0,0);}
.m65_c00362{transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);-ms-transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);}
.mc8_c00362{transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);}
.m81_c00362{transform:matrix(0.166699,-0.002667,0.003999,0.249968,0,0);-ms-transform:matrix(0.166699,-0.002667,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166699,-0.002667,0.003999,0.249968,0,0);}
.m3d_c00362{transform:matrix(0.167029,-0.002672,0.003999,0.249968,0,0);-ms-transform:matrix(0.167029,-0.002672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167029,-0.002672,0.003999,0.249968,0,0);}
.mcd_c00362{transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);-ms-transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);}
.m1b_c00362{transform:matrix(0.167969,-0.002687,0.003999,0.249968,0,0);-ms-transform:matrix(0.167969,-0.002687,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167969,-0.002687,0.003999,0.249968,0,0);}
.mcf_c00362{transform:matrix(0.168433,-0.002695,0.003999,0.249968,0,0);-ms-transform:matrix(0.168433,-0.002695,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168433,-0.002695,0.003999,0.249968,0,0);}
.m48_c00362{transform:matrix(0.168818,-0.002701,0.003999,0.249968,0,0);-ms-transform:matrix(0.168818,-0.002701,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168818,-0.002701,0.003999,0.249968,0,0);}
.me2_c00362{transform:matrix(0.169473,-0.002712,0.003999,0.249968,0,0);-ms-transform:matrix(0.169473,-0.002712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169473,-0.002712,0.003999,0.249968,0,0);}
.mc9_c00362{transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);-ms-transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);}
.mb1_c00362{transform:matrix(0.170088,-0.002721,0.003999,0.249968,0,0);-ms-transform:matrix(0.170088,-0.002721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170088,-0.002721,0.003999,0.249968,0,0);}
.me7_c00362{transform:matrix(0.170963,-0.002735,0.003999,0.249968,0,0);-ms-transform:matrix(0.170963,-0.002735,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170963,-0.002735,0.003999,0.249968,0,0);}
.m3c_c00362{transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171223,-0.002740,0.003999,0.249968,0,0);}
.m22_c00362{transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);}
.m97_c00362{transform:matrix(0.171263,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171263,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171263,-0.002740,0.003999,0.249968,0,0);}
.m34_c00362{transform:matrix(0.171778,-0.002748,0.003999,0.249968,0,0);-ms-transform:matrix(0.171778,-0.002748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171778,-0.002748,0.003999,0.249968,0,0);}
.me1_c00362{transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);}
.ma2_c00362{transform:matrix(0.172993,-0.002768,0.003999,0.249968,0,0);-ms-transform:matrix(0.172993,-0.002768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172993,-0.002768,0.003999,0.249968,0,0);}
.m8d_c00362{transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);-ms-transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);}
.m41_c00362{transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);-ms-transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173678,-0.002779,0.003999,0.249968,0,0);}
.m6f_c00362{transform:matrix(0.174188,-0.002787,0.003999,0.249968,0,0);-ms-transform:matrix(0.174188,-0.002787,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174188,-0.002787,0.003999,0.249968,0,0);}
.m14_c00362{transform:matrix(0.174463,-0.002791,0.003999,0.249968,0,0);-ms-transform:matrix(0.174463,-0.002791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174463,-0.002791,0.003999,0.249968,0,0);}
.m13_c00362{transform:matrix(0.174593,-0.002793,0.003999,0.249968,0,0);-ms-transform:matrix(0.174593,-0.002793,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174593,-0.002793,0.003999,0.249968,0,0);}
.m28_c00362{transform:matrix(0.175133,-0.002802,0.003999,0.249968,0,0);-ms-transform:matrix(0.175133,-0.002802,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175133,-0.002802,0.003999,0.249968,0,0);}
.m83_c00362{transform:matrix(0.175258,-0.002804,0.003999,0.249968,0,0);-ms-transform:matrix(0.175258,-0.002804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175258,-0.002804,0.003999,0.249968,0,0);}
.m94_c00362{transform:matrix(0.175518,-0.002808,0.003999,0.249968,0,0);-ms-transform:matrix(0.175518,-0.002808,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175518,-0.002808,0.003999,0.249968,0,0);}
.m9e_c00362{transform:matrix(0.175997,-0.002816,0.003999,0.249968,0,0);-ms-transform:matrix(0.175997,-0.002816,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175997,-0.002816,0.003999,0.249968,0,0);}
.mba_c00362{transform:matrix(0.176732,-0.002828,0.003999,0.249968,0,0);-ms-transform:matrix(0.176732,-0.002828,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176732,-0.002828,0.003999,0.249968,0,0);}
.m91_c00362{transform:matrix(0.177347,-0.002838,0.003999,0.249968,0,0);-ms-transform:matrix(0.177347,-0.002838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177347,-0.002838,0.003999,0.249968,0,0);}
.m5f_c00362{transform:matrix(0.177952,-0.002847,0.003999,0.249968,0,0);-ms-transform:matrix(0.177952,-0.002847,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177952,-0.002847,0.003999,0.249968,0,0);}
.mc7_c00362{transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);-ms-transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);}
.m55_c00362{transform:matrix(0.178827,-0.002861,0.003999,0.249968,0,0);-ms-transform:matrix(0.178827,-0.002861,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178827,-0.002861,0.003999,0.249968,0,0);}
.m8f_c00362{transform:matrix(0.178882,-0.002862,0.003999,0.249968,0,0);-ms-transform:matrix(0.178882,-0.002862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178882,-0.002862,0.003999,0.249968,0,0);}
.m9c_c00362{transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);-ms-transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);}
.md1_c00362{transform:matrix(0.179442,-0.002871,0.003999,0.249968,0,0);-ms-transform:matrix(0.179442,-0.002871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179442,-0.002871,0.003999,0.249968,0,0);}
.m85_c00362{transform:matrix(0.179522,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179522,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179522,-0.002872,0.003999,0.249968,0,0);}
.m2b_c00362{transform:matrix(0.180157,-0.002883,0.003999,0.249968,0,0);-ms-transform:matrix(0.180157,-0.002883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180157,-0.002883,0.003999,0.249968,0,0);}
.mcb_c00362{transform:matrix(0.180322,-0.002885,0.003999,0.249968,0,0);-ms-transform:matrix(0.180322,-0.002885,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180322,-0.002885,0.003999,0.249968,0,0);}
.mb6_c00362{transform:matrix(0.180447,-0.002887,0.003999,0.249968,0,0);-ms-transform:matrix(0.180447,-0.002887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180447,-0.002887,0.003999,0.249968,0,0);}
.m7f_c00362{transform:matrix(0.180692,-0.002891,0.003999,0.249968,0,0);-ms-transform:matrix(0.180692,-0.002891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180692,-0.002891,0.003999,0.249968,0,0);}
.m7b_c00362{transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);-ms-transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);}
.m60_c00362{transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);-ms-transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181857,-0.002910,0.003999,0.249968,0,0);}
.m5c_c00362{transform:matrix(0.182527,-0.002920,0.003999,0.249968,0,0);-ms-transform:matrix(0.182527,-0.002920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182527,-0.002920,0.003999,0.249968,0,0);}
.mc0_c00362{transform:matrix(0.183137,-0.002930,0.003999,0.249968,0,0);-ms-transform:matrix(0.183137,-0.002930,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183137,-0.002930,0.003999,0.249968,0,0);}
.mab_c00362{transform:matrix(0.183467,-0.002935,0.003999,0.249968,0,0);-ms-transform:matrix(0.183467,-0.002935,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183467,-0.002935,0.003999,0.249968,0,0);}
.m4_c00362{transform:matrix(0.183507,-0.002936,0.003999,0.249968,0,0);-ms-transform:matrix(0.183507,-0.002936,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183507,-0.002936,0.003999,0.249968,0,0);}
.m8c_c00362{transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);-ms-transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);}
.m2a_c00362{transform:matrix(0.184176,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184176,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184176,-0.002947,0.003999,0.249968,0,0);}
.m23_c00362{transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);-ms-transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);}
.m96_c00362{transform:matrix(0.185386,-0.002966,0.003999,0.249968,0,0);-ms-transform:matrix(0.185386,-0.002966,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185386,-0.002966,0.003999,0.249968,0,0);}
.me_c00362{transform:matrix(0.186291,-0.002981,0.003999,0.249968,0,0);-ms-transform:matrix(0.186291,-0.002981,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186291,-0.002981,0.003999,0.249968,0,0);}
.m5_c00362{transform:matrix(0.186531,-0.002984,0.003999,0.249968,0,0);-ms-transform:matrix(0.186531,-0.002984,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186531,-0.002984,0.003999,0.249968,0,0);}
.m9_c00362{transform:matrix(0.187241,-0.002996,0.003999,0.249968,0,0);-ms-transform:matrix(0.187241,-0.002996,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187241,-0.002996,0.003999,0.249968,0,0);}
.m1c_c00362{transform:matrix(0.187961,-0.003007,0.003999,0.249968,0,0);-ms-transform:matrix(0.187961,-0.003007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187961,-0.003007,0.003999,0.249968,0,0);}
.m29_c00362{transform:matrix(0.188096,-0.003010,0.003999,0.249968,0,0);-ms-transform:matrix(0.188096,-0.003010,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188096,-0.003010,0.003999,0.249968,0,0);}
.me0_c00362{transform:matrix(0.188701,-0.003019,0.003999,0.249968,0,0);-ms-transform:matrix(0.188701,-0.003019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188701,-0.003019,0.003999,0.249968,0,0);}
.m56_c00362{transform:matrix(0.188716,-0.003019,0.003999,0.249968,0,0);-ms-transform:matrix(0.188716,-0.003019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188716,-0.003019,0.003999,0.249968,0,0);}
.m2c_c00362{transform:matrix(0.188861,-0.003022,0.003999,0.249968,0,0);-ms-transform:matrix(0.188861,-0.003022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188861,-0.003022,0.003999,0.249968,0,0);}
.mcc_c00362{transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);-ms-transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189441,-0.003031,0.003999,0.249968,0,0);}
.m92_c00362{transform:matrix(0.189461,-0.003031,0.003999,0.249968,0,0);-ms-transform:matrix(0.189461,-0.003031,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189461,-0.003031,0.003999,0.249968,0,0);}
.md7_c00362{transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);-ms-transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);}
.m19_c00362{transform:matrix(0.190021,-0.003040,0.003999,0.249968,0,0);-ms-transform:matrix(0.190021,-0.003040,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190021,-0.003040,0.003999,0.249968,0,0);}
.mc4_c00362{transform:matrix(0.191131,-0.003058,0.003999,0.249968,0,0);-ms-transform:matrix(0.191131,-0.003058,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191131,-0.003058,0.003999,0.249968,0,0);}
.md3_c00362{transform:matrix(0.191236,-0.003060,0.003999,0.249968,0,0);-ms-transform:matrix(0.191236,-0.003060,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191236,-0.003060,0.003999,0.249968,0,0);}
.m86_c00362{transform:matrix(0.191386,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191386,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191386,-0.003062,0.003999,0.249968,0,0);}
.m57_c00362{transform:matrix(0.191440,-0.003063,0.003999,0.249968,0,0);-ms-transform:matrix(0.191440,-0.003063,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191440,-0.003063,0.003999,0.249968,0,0);}
.m8e_c00362{transform:matrix(0.191585,-0.003065,0.003999,0.249968,0,0);-ms-transform:matrix(0.191585,-0.003065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191585,-0.003065,0.003999,0.249968,0,0);}
.mac_c00362{transform:matrix(0.192535,-0.003081,0.003999,0.249968,0,0);-ms-transform:matrix(0.192535,-0.003081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192535,-0.003081,0.003999,0.249968,0,0);}
.mbd_c00362{transform:matrix(0.192895,-0.003086,0.003999,0.249968,0,0);-ms-transform:matrix(0.192895,-0.003086,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192895,-0.003086,0.003999,0.249968,0,0);}
.mc1_c00362{transform:matrix(0.193215,-0.003091,0.003999,0.249968,0,0);-ms-transform:matrix(0.193215,-0.003091,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193215,-0.003091,0.003999,0.249968,0,0);}
.m3_c00362{transform:matrix(0.193280,-0.003092,0.003999,0.249968,0,0);-ms-transform:matrix(0.193280,-0.003092,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193280,-0.003092,0.003999,0.249968,0,0);}
.maa_c00362{transform:matrix(0.193510,-0.003096,0.003999,0.249968,0,0);-ms-transform:matrix(0.193510,-0.003096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193510,-0.003096,0.003999,0.249968,0,0);}
.m3e_c00362{transform:matrix(0.193655,-0.003098,0.003999,0.249968,0,0);-ms-transform:matrix(0.193655,-0.003098,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193655,-0.003098,0.003999,0.249968,0,0);}
.m50_c00362{transform:matrix(0.194085,-0.003105,0.003999,0.249968,0,0);-ms-transform:matrix(0.194085,-0.003105,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194085,-0.003105,0.003999,0.249968,0,0);}
.ma7_c00362{transform:matrix(0.194170,-0.003107,0.003999,0.249968,0,0);-ms-transform:matrix(0.194170,-0.003107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194170,-0.003107,0.003999,0.249968,0,0);}
.m2d_c00362{transform:matrix(0.194335,-0.003109,0.003999,0.249968,0,0);-ms-transform:matrix(0.194335,-0.003109,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194335,-0.003109,0.003999,0.249968,0,0);}
.md6_c00362{transform:matrix(0.194600,-0.003114,0.003999,0.249968,0,0);-ms-transform:matrix(0.194600,-0.003114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194600,-0.003114,0.003999,0.249968,0,0);}
.md4_c00362{transform:matrix(0.195000,-0.003120,0.003999,0.249968,0,0);-ms-transform:matrix(0.195000,-0.003120,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195000,-0.003120,0.003999,0.249968,0,0);}
.m7_c00362{transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);-ms-transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);}
.mb_c00362{transform:matrix(0.195410,-0.003127,0.003999,0.249968,0,0);-ms-transform:matrix(0.195410,-0.003127,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195410,-0.003127,0.003999,0.249968,0,0);}
.m75_c00362{transform:matrix(0.195435,-0.003127,0.003999,0.249968,0,0);-ms-transform:matrix(0.195435,-0.003127,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195435,-0.003127,0.003999,0.249968,0,0);}
.m39_c00362{transform:matrix(0.195475,-0.003128,0.003999,0.249968,0,0);-ms-transform:matrix(0.195475,-0.003128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195475,-0.003128,0.003999,0.249968,0,0);}
.mca_c00362{transform:matrix(0.195630,-0.003130,0.003999,0.249968,0,0);-ms-transform:matrix(0.195630,-0.003130,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195630,-0.003130,0.003999,0.249968,0,0);}
.m42_c00362{transform:matrix(0.195835,-0.003133,0.003999,0.249968,0,0);-ms-transform:matrix(0.195835,-0.003133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195835,-0.003133,0.003999,0.249968,0,0);}
.m59_c00362{transform:matrix(0.196030,-0.003136,0.003999,0.249968,0,0);-ms-transform:matrix(0.196030,-0.003136,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196030,-0.003136,0.003999,0.249968,0,0);}
.m4f_c00362{transform:matrix(0.196115,-0.003138,0.003999,0.249968,0,0);-ms-transform:matrix(0.196115,-0.003138,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196115,-0.003138,0.003999,0.249968,0,0);}
.m4e_c00362{transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);-ms-transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);}
.m88_c00362{transform:matrix(0.196905,-0.003150,0.003999,0.249968,0,0);-ms-transform:matrix(0.196905,-0.003150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196905,-0.003150,0.003999,0.249968,0,0);}
.mbf_c00362{transform:matrix(0.197110,-0.003154,0.003999,0.249968,0,0);-ms-transform:matrix(0.197110,-0.003154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197110,-0.003154,0.003999,0.249968,0,0);}
.me4_c00362{transform:matrix(0.197255,-0.003156,0.003999,0.249968,0,0);-ms-transform:matrix(0.197255,-0.003156,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197255,-0.003156,0.003999,0.249968,0,0);}
.m95_c00362{transform:matrix(0.197310,-0.003157,0.003999,0.249968,0,0);-ms-transform:matrix(0.197310,-0.003157,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197310,-0.003157,0.003999,0.249968,0,0);}
.m2_c00362{transform:matrix(0.197955,-0.003167,0.003999,0.249968,0,0);-ms-transform:matrix(0.197955,-0.003167,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197955,-0.003167,0.003999,0.249968,0,0);}
.mde_c00362{transform:matrix(0.198075,-0.003169,0.003999,0.249968,0,0);-ms-transform:matrix(0.198075,-0.003169,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198075,-0.003169,0.003999,0.249968,0,0);}
.mbe_c00362{transform:matrix(0.198145,-0.003170,0.003999,0.249968,0,0);-ms-transform:matrix(0.198145,-0.003170,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198145,-0.003170,0.003999,0.249968,0,0);}
.m64_c00362{transform:matrix(0.198685,-0.003179,0.003999,0.249968,0,0);-ms-transform:matrix(0.198685,-0.003179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198685,-0.003179,0.003999,0.249968,0,0);}
.m93_c00362{transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);-ms-transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);}
.m79_c00362{transform:matrix(0.198750,-0.003180,0.003999,0.249968,0,0);-ms-transform:matrix(0.198750,-0.003180,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198750,-0.003180,0.003999,0.249968,0,0);}
.m35_c00362{transform:matrix(0.199220,-0.003188,0.003999,0.249968,0,0);-ms-transform:matrix(0.199220,-0.003188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199220,-0.003188,0.003999,0.249968,0,0);}
.m54_c00362{transform:matrix(0.199529,-0.003192,0.003999,0.249968,0,0);-ms-transform:matrix(0.199529,-0.003192,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199529,-0.003192,0.003999,0.249968,0,0);}
.m66_c00362{transform:matrix(0.199609,-0.003194,0.003999,0.249968,0,0);-ms-transform:matrix(0.199609,-0.003194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199609,-0.003194,0.003999,0.249968,0,0);}
.m4a_c00362{transform:matrix(0.199664,-0.003195,0.003999,0.249968,0,0);-ms-transform:matrix(0.199664,-0.003195,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199664,-0.003195,0.003999,0.249968,0,0);}
.m3f_c00362{transform:matrix(0.199814,-0.003197,0.003999,0.249968,0,0);-ms-transform:matrix(0.199814,-0.003197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199814,-0.003197,0.003999,0.249968,0,0);}
.m6c_c00362{transform:matrix(0.199849,-0.003198,0.003999,0.249968,0,0);-ms-transform:matrix(0.199849,-0.003198,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199849,-0.003198,0.003999,0.249968,0,0);}
.mc2_c00362{transform:matrix(0.199944,-0.003199,0.003999,0.249968,0,0);-ms-transform:matrix(0.199944,-0.003199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199944,-0.003199,0.003999,0.249968,0,0);}
.m5e_c00362{transform:matrix(0.200109,-0.003202,0.003999,0.249968,0,0);-ms-transform:matrix(0.200109,-0.003202,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200109,-0.003202,0.003999,0.249968,0,0);}
.mce_c00362{transform:matrix(0.200439,-0.003207,0.003999,0.249968,0,0);-ms-transform:matrix(0.200439,-0.003207,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200439,-0.003207,0.003999,0.249968,0,0);}
.m63_c00362{transform:matrix(0.202734,-0.003244,0.003999,0.249968,0,0);-ms-transform:matrix(0.202734,-0.003244,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202734,-0.003244,0.003999,0.249968,0,0);}
.m9b_c00362{transform:matrix(0.203744,-0.003260,0.003999,0.249968,0,0);-ms-transform:matrix(0.203744,-0.003260,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203744,-0.003260,0.003999,0.249968,0,0);}
.m9a_c00362{transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);-ms-transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);}
.m45_c00362{transform:matrix(0.204799,-0.003277,0.003999,0.249968,0,0);-ms-transform:matrix(0.204799,-0.003277,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204799,-0.003277,0.003999,0.249968,0,0);}
.m7c_c00362{transform:matrix(0.205004,-0.003280,0.003999,0.249968,0,0);-ms-transform:matrix(0.205004,-0.003280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205004,-0.003280,0.003999,0.249968,0,0);}
.m37_c00362{transform:matrix(0.205284,-0.003285,0.003999,0.249968,0,0);-ms-transform:matrix(0.205284,-0.003285,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205284,-0.003285,0.003999,0.249968,0,0);}
.mb2_c00362{transform:matrix(0.205494,-0.003288,0.003999,0.249968,0,0);-ms-transform:matrix(0.205494,-0.003288,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205494,-0.003288,0.003999,0.249968,0,0);}
.md9_c00362{transform:matrix(0.205529,-0.003288,0.003999,0.249968,0,0);-ms-transform:matrix(0.205529,-0.003288,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205529,-0.003288,0.003999,0.249968,0,0);}
.m74_c00362{transform:matrix(0.206029,-0.003296,0.003999,0.249968,0,0);-ms-transform:matrix(0.206029,-0.003296,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206029,-0.003296,0.003999,0.249968,0,0);}
.m2f_c00362{transform:matrix(0.206074,-0.003297,0.003999,0.249968,0,0);-ms-transform:matrix(0.206074,-0.003297,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206074,-0.003297,0.003999,0.249968,0,0);}
.m21_c00362{transform:matrix(0.206199,-0.003299,0.003999,0.249968,0,0);-ms-transform:matrix(0.206199,-0.003299,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206199,-0.003299,0.003999,0.249968,0,0);}
.mbb_c00362{transform:matrix(0.206279,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206279,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206279,-0.003300,0.003999,0.249968,0,0);}
.m5d_c00362{transform:matrix(0.206724,-0.003308,0.003999,0.249968,0,0);-ms-transform:matrix(0.206724,-0.003308,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206724,-0.003308,0.003999,0.249968,0,0);}
.mc5_c00362{transform:matrix(0.207128,-0.003314,0.003999,0.249968,0,0);-ms-transform:matrix(0.207128,-0.003314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207128,-0.003314,0.003999,0.249968,0,0);}
.m80_c00362{transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-ms-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);}
.m24_c00362{transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);-ms-transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);}
.m9f_c00362{transform:matrix(0.207543,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207543,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207543,-0.003321,0.003999,0.249968,0,0);}
.ma_c00362{transform:matrix(0.207593,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207593,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207593,-0.003321,0.003999,0.249968,0,0);}
.m7d_c00362{transform:matrix(0.207818,-0.003325,0.003999,0.249968,0,0);-ms-transform:matrix(0.207818,-0.003325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207818,-0.003325,0.003999,0.249968,0,0);}
.m6_c00362{transform:matrix(0.207828,-0.003325,0.003999,0.249968,0,0);-ms-transform:matrix(0.207828,-0.003325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207828,-0.003325,0.003999,0.249968,0,0);}
.m82_c00362{transform:matrix(0.208158,-0.003331,0.003999,0.249968,0,0);-ms-transform:matrix(0.208158,-0.003331,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208158,-0.003331,0.003999,0.249968,0,0);}
.mc3_c00362{transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);-ms-transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208383,-0.003334,0.003999,0.249968,0,0);}
.ma8_c00362{transform:matrix(0.208773,-0.003340,0.003999,0.249968,0,0);-ms-transform:matrix(0.208773,-0.003340,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208773,-0.003340,0.003999,0.249968,0,0);}
.ma5_c00362{transform:matrix(0.209078,-0.003345,0.003999,0.249968,0,0);-ms-transform:matrix(0.209078,-0.003345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209078,-0.003345,0.003999,0.249968,0,0);}
.m84_c00362{transform:matrix(0.209548,-0.003353,0.003999,0.249968,0,0);-ms-transform:matrix(0.209548,-0.003353,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209548,-0.003353,0.003999,0.249968,0,0);}
.m99_c00362{transform:matrix(0.209768,-0.003356,0.003999,0.249968,0,0);-ms-transform:matrix(0.209768,-0.003356,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209768,-0.003356,0.003999,0.249968,0,0);}
.mc_c00362{transform:matrix(0.209798,-0.003357,0.003999,0.249968,0,0);-ms-transform:matrix(0.209798,-0.003357,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209798,-0.003357,0.003999,0.249968,0,0);}
.m3a_c00362{transform:matrix(0.210233,-0.003364,0.003999,0.249968,0,0);-ms-transform:matrix(0.210233,-0.003364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210233,-0.003364,0.003999,0.249968,0,0);}
.m6b_c00362{transform:matrix(0.210468,-0.003367,0.003999,0.249968,0,0);-ms-transform:matrix(0.210468,-0.003367,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210468,-0.003367,0.003999,0.249968,0,0);}
.md8_c00362{transform:matrix(0.210698,-0.003371,0.003999,0.249968,0,0);-ms-transform:matrix(0.210698,-0.003371,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210698,-0.003371,0.003999,0.249968,0,0);}
.me6_c00362{transform:matrix(0.210778,-0.003372,0.003999,0.249968,0,0);-ms-transform:matrix(0.210778,-0.003372,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210778,-0.003372,0.003999,0.249968,0,0);}
.m73_c00362{transform:matrix(0.211358,-0.003382,0.003999,0.249968,0,0);-ms-transform:matrix(0.211358,-0.003382,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211358,-0.003382,0.003999,0.249968,0,0);}
.m68_c00362{transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);-ms-transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);}
.m6a_c00362{transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);-ms-transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);}
.m8b_c00362{transform:matrix(0.212238,-0.003396,0.003999,0.249968,0,0);-ms-transform:matrix(0.212238,-0.003396,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212238,-0.003396,0.003999,0.249968,0,0);}
.md2_c00362{transform:matrix(0.212283,-0.003397,0.003999,0.249968,0,0);-ms-transform:matrix(0.212283,-0.003397,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212283,-0.003397,0.003999,0.249968,0,0);}
.m26_c00362{transform:matrix(0.212813,-0.003405,0.003999,0.249968,0,0);-ms-transform:matrix(0.212813,-0.003405,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212813,-0.003405,0.003999,0.249968,0,0);}
.m98_c00362{transform:matrix(0.214278,-0.003428,0.003999,0.249968,0,0);-ms-transform:matrix(0.214278,-0.003428,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214278,-0.003428,0.003999,0.249968,0,0);}
.mb3_c00362{transform:matrix(0.214288,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214288,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214288,-0.003429,0.003999,0.249968,0,0);}
.m89_c00362{transform:matrix(0.214448,-0.003431,0.003999,0.249968,0,0);-ms-transform:matrix(0.214448,-0.003431,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214448,-0.003431,0.003999,0.249968,0,0);}
.m46_c00362{transform:matrix(0.214653,-0.003434,0.003999,0.249968,0,0);-ms-transform:matrix(0.214653,-0.003434,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214653,-0.003434,0.003999,0.249968,0,0);}
.ma0_c00362{transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);}
.m7e_c00362{transform:matrix(0.215037,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215037,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215037,-0.003441,0.003999,0.249968,0,0);}
.m33_c00362{transform:matrix(0.215377,-0.003446,0.003999,0.249968,0,0);-ms-transform:matrix(0.215377,-0.003446,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215377,-0.003446,0.003999,0.249968,0,0);}
.md_c00362{transform:matrix(0.215982,-0.003456,0.003999,0.249968,0,0);-ms-transform:matrix(0.215982,-0.003456,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215982,-0.003456,0.003999,0.249968,0,0);}
.m40_c00362{transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);-ms-transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215997,-0.003456,0.003999,0.249968,0,0);}
.mdb_c00362{transform:matrix(0.216047,-0.003457,0.003999,0.249968,0,0);-ms-transform:matrix(0.216047,-0.003457,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216047,-0.003457,0.003999,0.249968,0,0);}
.m77_c00362{transform:matrix(0.216307,-0.003461,0.003999,0.249968,0,0);-ms-transform:matrix(0.216307,-0.003461,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216307,-0.003461,0.003999,0.249968,0,0);}
.m2e_c00362{transform:matrix(0.217447,-0.003479,0.003999,0.249968,0,0);-ms-transform:matrix(0.217447,-0.003479,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217447,-0.003479,0.003999,0.249968,0,0);}
.maf_c00362{transform:matrix(0.217472,-0.003480,0.003999,0.249968,0,0);-ms-transform:matrix(0.217472,-0.003480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217472,-0.003480,0.003999,0.249968,0,0);}
.me5_c00362{transform:matrix(0.217682,-0.003483,0.003999,0.249968,0,0);-ms-transform:matrix(0.217682,-0.003483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217682,-0.003483,0.003999,0.249968,0,0);}
.ma9_c00362{transform:matrix(0.220652,-0.003530,0.003999,0.249968,0,0);-ms-transform:matrix(0.220652,-0.003530,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220652,-0.003530,0.003999,0.249968,0,0);}
.mdd_c00362{transform:matrix(0.220967,-0.003535,0.003999,0.249968,0,0);-ms-transform:matrix(0.220967,-0.003535,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220967,-0.003535,0.003999,0.249968,0,0);}
.m1f_c00362{transform:matrix(0.221197,-0.003539,0.003999,0.249968,0,0);-ms-transform:matrix(0.221197,-0.003539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221197,-0.003539,0.003999,0.249968,0,0);}
.mae_c00362{transform:matrix(0.221217,-0.003539,0.003999,0.249968,0,0);-ms-transform:matrix(0.221217,-0.003539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221217,-0.003539,0.003999,0.249968,0,0);}
.m27_c00362{transform:matrix(0.221317,-0.003541,0.003999,0.249968,0,0);-ms-transform:matrix(0.221317,-0.003541,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221317,-0.003541,0.003999,0.249968,0,0);}
.m1a_c00362{transform:matrix(0.221597,-0.003546,0.003999,0.249968,0,0);-ms-transform:matrix(0.221597,-0.003546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221597,-0.003546,0.003999,0.249968,0,0);}
.md0_c00362{transform:matrix(0.221707,-0.003547,0.003999,0.249968,0,0);-ms-transform:matrix(0.221707,-0.003547,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221707,-0.003547,0.003999,0.249968,0,0);}
.m31_c00362{transform:matrix(0.222022,-0.003552,0.003999,0.249968,0,0);-ms-transform:matrix(0.222022,-0.003552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222022,-0.003552,0.003999,0.249968,0,0);}
.m11_c00362{transform:matrix(0.222237,-0.003556,0.003999,0.249968,0,0);-ms-transform:matrix(0.222237,-0.003556,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222237,-0.003556,0.003999,0.249968,0,0);}
.m17_c00362{transform:matrix(0.222357,-0.003558,0.003999,0.249968,0,0);-ms-transform:matrix(0.222357,-0.003558,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222357,-0.003558,0.003999,0.249968,0,0);}
.mb7_c00362{transform:matrix(0.222472,-0.003560,0.003999,0.249968,0,0);-ms-transform:matrix(0.222472,-0.003560,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222472,-0.003560,0.003999,0.249968,0,0);}
.mbc_c00362{transform:matrix(0.222667,-0.003563,0.003999,0.249968,0,0);-ms-transform:matrix(0.222667,-0.003563,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222667,-0.003563,0.003999,0.249968,0,0);}
.mb9_c00362{transform:matrix(0.223456,-0.003575,0.003999,0.249968,0,0);-ms-transform:matrix(0.223456,-0.003575,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223456,-0.003575,0.003999,0.249968,0,0);}
.mb8_c00362{transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);-ms-transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);}
.ma3_c00362{transform:matrix(0.224361,-0.003590,0.003999,0.249968,0,0);-ms-transform:matrix(0.224361,-0.003590,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224361,-0.003590,0.003999,0.249968,0,0);}
.md5_c00362{transform:matrix(0.224886,-0.003598,0.003999,0.249968,0,0);-ms-transform:matrix(0.224886,-0.003598,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224886,-0.003598,0.003999,0.249968,0,0);}
.m38_c00362{transform:matrix(0.224966,-0.003599,0.003999,0.249968,0,0);-ms-transform:matrix(0.224966,-0.003599,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224966,-0.003599,0.003999,0.249968,0,0);}
.m4d_c00362{transform:matrix(0.225721,-0.003612,0.003999,0.249968,0,0);-ms-transform:matrix(0.225721,-0.003612,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225721,-0.003612,0.003999,0.249968,0,0);}
.ma1_c00362{transform:matrix(0.225751,-0.003612,0.003999,0.249968,0,0);-ms-transform:matrix(0.225751,-0.003612,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225751,-0.003612,0.003999,0.249968,0,0);}
.m43_c00362{transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);-ms-transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);}
.m47_c00362{transform:matrix(0.226091,-0.003617,0.003999,0.249968,0,0);-ms-transform:matrix(0.226091,-0.003617,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226091,-0.003617,0.003999,0.249968,0,0);}
.m62_c00362{transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);-ms-transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);}
.m8_c00362{transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);-ms-transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);}
.ma4_c00362{transform:matrix(0.228386,-0.003654,0.003999,0.249968,0,0);-ms-transform:matrix(0.228386,-0.003654,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228386,-0.003654,0.003999,0.249968,0,0);}
.mdf_c00362{transform:matrix(0.229356,-0.003670,0.003999,0.249968,0,0);-ms-transform:matrix(0.229356,-0.003670,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229356,-0.003670,0.003999,0.249968,0,0);}
.m51_c00362{transform:matrix(0.229511,-0.003672,0.003999,0.249968,0,0);-ms-transform:matrix(0.229511,-0.003672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229511,-0.003672,0.003999,0.249968,0,0);}
.m9d_c00362{transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);-ms-transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230386,-0.003686,0.003999,0.249968,0,0);}
.m58_c00362{transform:matrix(0.231340,-0.003701,0.003999,0.249968,0,0);-ms-transform:matrix(0.231340,-0.003701,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231340,-0.003701,0.003999,0.249968,0,0);}
.m12_c00362{transform:matrix(0.231405,-0.003702,0.003999,0.249968,0,0);-ms-transform:matrix(0.231405,-0.003702,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231405,-0.003702,0.003999,0.249968,0,0);}
.m30_c00362{transform:matrix(0.232030,-0.003712,0.003999,0.249968,0,0);-ms-transform:matrix(0.232030,-0.003712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232030,-0.003712,0.003999,0.249968,0,0);}
.m61_c00362{transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-ms-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);}
.m1_c00362{transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.232925,-0.003727,0.003999,0.249968,0,0);-ms-transform:matrix(0.232925,-0.003727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232925,-0.003727,0.003999,0.249968,0,0);}
.m3b_c00362{transform:matrix(0.233245,-0.003732,0.003999,0.249968,0,0);-ms-transform:matrix(0.233245,-0.003732,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233245,-0.003732,0.003999,0.249968,0,0);}
.ma6_c00362{transform:matrix(0.233980,-0.003744,0.003999,0.249968,0,0);-ms-transform:matrix(0.233980,-0.003744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233980,-0.003744,0.003999,0.249968,0,0);}
.m49_c00362{transform:matrix(0.235030,-0.003760,0.003999,0.249968,0,0);-ms-transform:matrix(0.235030,-0.003760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235030,-0.003760,0.003999,0.249968,0,0);}
.mdc_c00362{transform:matrix(0.235160,-0.003763,0.003999,0.249968,0,0);-ms-transform:matrix(0.235160,-0.003763,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235160,-0.003763,0.003999,0.249968,0,0);}
.m69_c00362{transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);-ms-transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);}
.mb5_c00362{transform:matrix(0.237890,-0.003806,0.003999,0.249968,0,0);-ms-transform:matrix(0.237890,-0.003806,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237890,-0.003806,0.003999,0.249968,0,0);}
.m18_c00362{transform:matrix(0.241684,-0.003867,0.003999,0.249968,0,0);-ms-transform:matrix(0.241684,-0.003867,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241684,-0.003867,0.003999,0.249968,0,0);}
.m76_c00362{transform:matrix(0.241724,-0.003868,0.003999,0.249968,0,0);-ms-transform:matrix(0.241724,-0.003868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241724,-0.003868,0.003999,0.249968,0,0);}
.m8a_c00362{transform:matrix(0.242544,-0.003881,0.003999,0.249968,0,0);-ms-transform:matrix(0.242544,-0.003881,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242544,-0.003881,0.003999,0.249968,0,0);}
.m44_c00362{transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);-ms-transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);}
.m7a_c00362{transform:matrix(0.244379,-0.003910,0.003999,0.249968,0,0);-ms-transform:matrix(0.244379,-0.003910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244379,-0.003910,0.003999,0.249968,0,0);}
.m90_c00362{transform:matrix(0.246828,-0.003949,0.003999,0.249968,0,0);-ms-transform:matrix(0.246828,-0.003949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246828,-0.003949,0.003999,0.249968,0,0);}
.m4b_c00362{transform:matrix(0.247908,-0.003967,0.003999,0.249968,0,0);-ms-transform:matrix(0.247908,-0.003967,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247908,-0.003967,0.003999,0.249968,0,0);}
.m25_c00362{transform:matrix(0.258617,-0.004138,0.003999,0.249968,0,0);-ms-transform:matrix(0.258617,-0.004138,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258617,-0.004138,0.003999,0.249968,0,0);}
.m67_c00362{transform:matrix(0.262591,-0.004201,0.003999,0.249968,0,0);-ms-transform:matrix(0.262591,-0.004201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262591,-0.004201,0.003999,0.249968,0,0);}
.m1e_c00362{transform:matrix(0.262606,-0.004202,0.003999,0.249968,0,0);-ms-transform:matrix(0.262606,-0.004202,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262606,-0.004202,0.003999,0.249968,0,0);}
.m15_c00362{transform:matrix(0.264036,-0.004225,0.003999,0.249968,0,0);-ms-transform:matrix(0.264036,-0.004225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264036,-0.004225,0.003999,0.249968,0,0);}
.m87_c00362{transform:matrix(0.268051,-0.004289,0.003999,0.249968,0,0);-ms-transform:matrix(0.268051,-0.004289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268051,-0.004289,0.003999,0.249968,0,0);}
.m32_c00362{transform:matrix(0.269051,-0.004305,0.003999,0.249968,0,0);-ms-transform:matrix(0.269051,-0.004305,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269051,-0.004305,0.003999,0.249968,0,0);}
.mb4_c00362{transform:matrix(0.271760,-0.004348,0.003999,0.249968,0,0);-ms-transform:matrix(0.271760,-0.004348,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271760,-0.004348,0.003999,0.249968,0,0);}
.m5b_c00362{transform:matrix(0.273535,-0.004377,0.003999,0.249968,0,0);-ms-transform:matrix(0.273535,-0.004377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273535,-0.004377,0.003999,0.249968,0,0);}
.m16_c00362{transform:matrix(0.276250,-0.004420,0.003999,0.249968,0,0);-ms-transform:matrix(0.276250,-0.004420,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276250,-0.004420,0.003999,0.249968,0,0);}
.m5a_c00362{transform:matrix(0.280444,-0.004487,0.003999,0.249968,0,0);-ms-transform:matrix(0.280444,-0.004487,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280444,-0.004487,0.003999,0.249968,0,0);}
.m1d_c00362{transform:matrix(0.287638,-0.004602,0.003999,0.249968,0,0);-ms-transform:matrix(0.287638,-0.004602,0.003999,0.249968,0,0);-webkit-transform:matrix(0.287638,-0.004602,0.003999,0.249968,0,0);}
.m71_c00362{transform:matrix(0.294422,-0.004711,0.003999,0.249968,0,0);-ms-transform:matrix(0.294422,-0.004711,0.003999,0.249968,0,0);-webkit-transform:matrix(0.294422,-0.004711,0.003999,0.249968,0,0);}
.m6d_c00362{transform:matrix(0.298302,-0.004773,0.003999,0.249968,0,0);-ms-transform:matrix(0.298302,-0.004773,0.003999,0.249968,0,0);-webkit-transform:matrix(0.298302,-0.004773,0.003999,0.249968,0,0);}
.m6e_c00362{transform:matrix(0.323924,-0.005183,0.003999,0.249968,0,0);-ms-transform:matrix(0.323924,-0.005183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.323924,-0.005183,0.003999,0.249968,0,0);}
.me8_c00362{transform:matrix(0.324219,-0.005187,0.003999,0.249968,0,0);-ms-transform:matrix(0.324219,-0.005187,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324219,-0.005187,0.003999,0.249968,0,0);}
.m52_c00362{transform:matrix(0.333822,-0.005341,0.003999,0.249968,0,0);-ms-transform:matrix(0.333822,-0.005341,0.003999,0.249968,0,0);-webkit-transform:matrix(0.333822,-0.005341,0.003999,0.249968,0,0);}
.m36_c00362{transform:matrix(0.348200,-0.005571,0.003999,0.249968,0,0);-ms-transform:matrix(0.348200,-0.005571,0.003999,0.249968,0,0);-webkit-transform:matrix(0.348200,-0.005571,0.003999,0.249968,0,0);}
.mda_c00362{transform:matrix(0.357889,-0.005726,0.003999,0.249968,0,0);-ms-transform:matrix(0.357889,-0.005726,0.003999,0.249968,0,0);-webkit-transform:matrix(0.357889,-0.005726,0.003999,0.249968,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:0.000000px;}
.fc0_c00362{color:transparent;}
.fs9_c00362{font-size:54.606988px;}
.fsa_c00362{font-size:57.757392px;}
.fs4_c00362{font-size:58.807526px;}
.fs7_c00362{font-size:59.857660px;}
.fs2_c00362{font-size:60.907795px;}
.fs6_c00362{font-size:61.957929px;}
.fs3_c00362{font-size:63.008063px;}
.fs1_c00362{font-size:64.058198px;}
.fs8_c00362{font-size:65.108332px;}
.fs5_c00362{font-size:67.208601px;}
.fsc_c00362{font-size:71.409139px;}
.fsb_c00362{font-size:75.609676px;}
.fs0_c00362{font-size:88.200000px;}
.y0_c00362{bottom:0.000000px;}
.yeb_c00362{bottom:26.813376px;}
.yea_c00362{bottom:26.813424px;}
.ye9_c00362{bottom:26.813544px;}
.yec_c00362{bottom:26.813568px;}
.ye5_c00362{bottom:42.944916px;}
.ye6_c00362{bottom:42.945408px;}
.ye7_c00362{bottom:42.946104px;}
.ye8_c00362{bottom:42.946656px;}
.ye4_c00362{bottom:61.329504px;}
.ydf_c00362{bottom:61.329516px;}
.ye2_c00362{bottom:61.329636px;}
.yde_c00362{bottom:61.329660px;}
.ye0_c00362{bottom:61.329912px;}
.ye3_c00362{bottom:61.330164px;}
.ydc_c00362{bottom:61.330236px;}
.ye1_c00362{bottom:61.330284px;}
.ydd_c00362{bottom:61.330368px;}
.yd5_c00362{bottom:77.677068px;}
.yd6_c00362{bottom:77.677716px;}
.yd8_c00362{bottom:77.677764px;}
.yd7_c00362{bottom:77.678088px;}
.yda_c00362{bottom:77.678268px;}
.yd9_c00362{bottom:77.678316px;}
.ydb_c00362{bottom:77.678676px;}
.yce_c00362{bottom:93.635592px;}
.ycf_c00362{bottom:94.510392px;}
.yd0_c00362{bottom:94.707000px;}
.yd1_c00362{bottom:95.552376px;}
.yd2_c00362{bottom:95.801928px;}
.yd3_c00362{bottom:96.447516px;}
.yd4_c00362{bottom:96.758952px;}
.yc8_c00362{bottom:110.378184px;}
.yc9_c00362{bottom:110.995788px;}
.yca_c00362{bottom:111.740412px;}
.ycb_c00362{bottom:112.144104px;}
.ycc_c00362{bottom:112.918668px;}
.ycd_c00362{bottom:113.266992px;}
.yc2_c00362{bottom:125.772672px;}
.yc3_c00362{bottom:126.401484px;}
.yc4_c00362{bottom:127.976172px;}
.yc5_c00362{bottom:129.516156px;}
.yc6_c00362{bottom:129.742920px;}
.yc7_c00362{bottom:130.229196px;}
.ybc_c00362{bottom:144.402852px;}
.ybd_c00362{bottom:144.978360px;}
.ybe_c00362{bottom:145.283748px;}
.ybf_c00362{bottom:146.150736px;}
.yc0_c00362{bottom:146.586864px;}
.yc1_c00362{bottom:146.938968px;}
.yb6_c00362{bottom:162.055224px;}
.yb5_c00362{bottom:162.055452px;}
.yb8_c00362{bottom:162.055872px;}
.yb7_c00362{bottom:162.055896px;}
.yb9_c00362{bottom:162.056424px;}
.ybb_c00362{bottom:162.056676px;}
.yba_c00362{bottom:162.056820px;}
.yac_c00362{bottom:177.888060px;}
.yad_c00362{bottom:178.277268px;}
.yae_c00362{bottom:178.796340px;}
.yaf_c00362{bottom:179.259984px;}
.yb0_c00362{bottom:179.481168px;}
.yb1_c00362{bottom:179.954820px;}
.yb2_c00362{bottom:180.835260px;}
.yb3_c00362{bottom:181.049136px;}
.yb4_c00362{bottom:181.246488px;}
.ya7_c00362{bottom:196.448856px;}
.ya4_c00362{bottom:196.448928px;}
.ya6_c00362{bottom:196.449084px;}
.ya3_c00362{bottom:196.449300px;}
.ya8_c00362{bottom:196.449456px;}
.yab_c00362{bottom:196.449480px;}
.ya5_c00362{bottom:196.449624px;}
.ya9_c00362{bottom:196.449768px;}
.yaa_c00362{bottom:196.450080px;}
.y9f_c00362{bottom:213.787452px;}
.y9d_c00362{bottom:213.787464px;}
.y9a_c00362{bottom:213.787920px;}
.ya2_c00362{bottom:213.787992px;}
.y9e_c00362{bottom:213.788076px;}
.y9c_c00362{bottom:213.788112px;}
.ya0_c00362{bottom:213.788184px;}
.y9b_c00362{bottom:213.788592px;}
.ya1_c00362{bottom:213.788652px;}
.y91_c00362{bottom:231.219384px;}
.y92_c00362{bottom:231.220056px;}
.y95_c00362{bottom:231.220500px;}
.y97_c00362{bottom:231.220572px;}
.y93_c00362{bottom:231.220656px;}
.y98_c00362{bottom:231.220848px;}
.y96_c00362{bottom:231.221076px;}
.y94_c00362{bottom:231.221148px;}
.y99_c00362{bottom:231.221220px;}
.y89_c00362{bottom:248.317728px;}
.y8a_c00362{bottom:248.317800px;}
.y8b_c00362{bottom:248.318544px;}
.y8c_c00362{bottom:248.319132px;}
.y8d_c00362{bottom:248.319768px;}
.y8f_c00362{bottom:248.320224px;}
.y8e_c00362{bottom:248.320332px;}
.y90_c00362{bottom:248.320968px;}
.y87_c00362{bottom:265.845444px;}
.y88_c00362{bottom:265.845576px;}
.y86_c00362{bottom:265.846080px;}
.y85_c00362{bottom:265.846404px;}
.y84_c00362{bottom:265.847064px;}
.y82_c00362{bottom:265.847076px;}
.y83_c00362{bottom:265.847484px;}
.y7c_c00362{bottom:283.303512px;}
.y7d_c00362{bottom:283.303920px;}
.y80_c00362{bottom:283.303980px;}
.y7b_c00362{bottom:283.304064px;}
.y7f_c00362{bottom:283.304112px;}
.y81_c00362{bottom:283.304232px;}
.y7e_c00362{bottom:283.304496px;}
.y7a_c00362{bottom:300.357276px;}
.y79_c00362{bottom:300.357888px;}
.y78_c00362{bottom:300.357960px;}
.y77_c00362{bottom:300.358704px;}
.y75_c00362{bottom:300.358908px;}
.y76_c00362{bottom:300.359088px;}
.y74_c00362{bottom:300.359472px;}
.y73_c00362{bottom:300.359772px;}
.y72_c00362{bottom:300.360084px;}
.y6f_c00362{bottom:322.577388px;}
.y70_c00362{bottom:322.577760px;}
.y6e_c00362{bottom:322.577784px;}
.y6c_c00362{bottom:322.577940px;}
.y71_c00362{bottom:322.578180px;}
.y6d_c00362{bottom:322.578408px;}
.y69_c00362{bottom:333.496332px;}
.y6a_c00362{bottom:333.496656px;}
.y62_c00362{bottom:333.496668px;}
.y68_c00362{bottom:333.496788px;}
.y6b_c00362{bottom:333.497088px;}
.y63_c00362{bottom:333.497304px;}
.y67_c00362{bottom:333.497484px;}
.y66_c00362{bottom:333.497496px;}
.y64_c00362{bottom:333.497856px;}
.y65_c00362{bottom:333.497904px;}
.y5b_c00362{bottom:348.279696px;}
.y5c_c00362{bottom:348.668124px;}
.y5d_c00362{bottom:349.747932px;}
.y5e_c00362{bottom:351.232764px;}
.y5f_c00362{bottom:351.501636px;}
.y60_c00362{bottom:351.851700px;}
.y61_c00362{bottom:352.537680px;}
.y52_c00362{bottom:366.329472px;}
.y53_c00362{bottom:366.329928px;}
.y54_c00362{bottom:366.330300px;}
.y56_c00362{bottom:366.330600px;}
.y55_c00362{bottom:366.330756px;}
.y57_c00362{bottom:366.331296px;}
.y58_c00362{bottom:366.331368px;}
.y5a_c00362{bottom:366.331620px;}
.y59_c00362{bottom:366.332100px;}
.y4b_c00362{bottom:380.950872px;}
.y4c_c00362{bottom:381.132228px;}
.y4d_c00362{bottom:382.217496px;}
.y4e_c00362{bottom:382.844664px;}
.y4f_c00362{bottom:383.105220px;}
.y50_c00362{bottom:383.698560px;}
.y51_c00362{bottom:384.908556px;}
.y48_c00362{bottom:399.806976px;}
.y47_c00362{bottom:399.807024px;}
.y44_c00362{bottom:399.807240px;}
.y46_c00362{bottom:399.807588px;}
.y49_c00362{bottom:399.807696px;}
.y45_c00362{bottom:399.807888px;}
.y4a_c00362{bottom:399.808368px;}
.y3c_c00362{bottom:417.846348px;}
.y3f_c00362{bottom:417.846444px;}
.y3d_c00362{bottom:417.846624px;}
.y3e_c00362{bottom:417.846636px;}
.y40_c00362{bottom:417.846744px;}
.y42_c00362{bottom:417.846792px;}
.y41_c00362{bottom:417.847020px;}
.y43_c00362{bottom:417.847128px;}
.y36_c00362{bottom:431.715192px;}
.y37_c00362{bottom:432.086364px;}
.y38_c00362{bottom:433.046016px;}
.y39_c00362{bottom:433.240584px;}
.y3a_c00362{bottom:434.386164px;}
.y3b_c00362{bottom:435.455964px;}
.y2f_c00362{bottom:449.266404px;}
.y30_c00362{bottom:449.863164px;}
.y31_c00362{bottom:450.238452px;}
.y32_c00362{bottom:451.242216px;}
.y33_c00362{bottom:451.450512px;}
.y34_c00362{bottom:451.974900px;}
.y35_c00362{bottom:452.309028px;}
.y28_c00362{bottom:465.739920px;}
.y29_c00362{bottom:466.306440px;}
.y2a_c00362{bottom:467.474988px;}
.y2b_c00362{bottom:467.788572px;}
.y2c_c00362{bottom:468.113496px;}
.y2d_c00362{bottom:468.797052px;}
.y2e_c00362{bottom:469.194948px;}
.y20_c00362{bottom:482.752992px;}
.y21_c00362{bottom:482.938836px;}
.y22_c00362{bottom:483.559776px;}
.y23_c00362{bottom:483.805944px;}
.y24_c00362{bottom:484.044732px;}
.y25_c00362{bottom:484.778088px;}
.y26_c00362{bottom:485.686920px;}
.y27_c00362{bottom:485.932416px;}
.y19_c00362{bottom:502.194648px;}
.y1a_c00362{bottom:502.890120px;}
.y1b_c00362{bottom:503.700384px;}
.y1c_c00362{bottom:503.899848px;}
.y1d_c00362{bottom:504.393516px;}
.y1e_c00362{bottom:505.028712px;}
.y1f_c00362{bottom:505.221132px;}
.yf_c00362{bottom:517.047408px;}
.y10_c00362{bottom:517.337304px;}
.y11_c00362{bottom:517.726272px;}
.y12_c00362{bottom:518.883672px;}
.y13_c00362{bottom:519.116016px;}
.y14_c00362{bottom:519.557976px;}
.y15_c00362{bottom:519.834696px;}
.y16_c00362{bottom:520.742064px;}
.y17_c00362{bottom:521.030304px;}
.y18_c00362{bottom:521.420496px;}
.y9_c00362{bottom:534.330228px;}
.ya_c00362{bottom:534.921636px;}
.yb_c00362{bottom:535.306404px;}
.yc_c00362{bottom:536.654148px;}
.yd_c00362{bottom:537.725916px;}
.ye_c00362{bottom:538.633140px;}
.y2_c00362{bottom:551.073000px;}
.y3_c00362{bottom:552.260928px;}
.y4_c00362{bottom:553.430256px;}
.y5_c00362{bottom:553.820328px;}
.y6_c00362{bottom:554.290104px;}
.y7_c00362{bottom:554.757984px;}
.y8_c00362{bottom:555.133296px;}
.y1_c00362{bottom:565.650000px;}
.hb_c00362{height:54.606988px;}
.hc_c00362{height:57.757392px;}
.h6_c00362{height:58.807526px;}
.h9_c00362{height:59.857660px;}
.h4_c00362{height:60.907795px;}
.h8_c00362{height:61.957929px;}
.h5_c00362{height:63.008063px;}
.h3_c00362{height:64.058198px;}
.ha_c00362{height:65.108332px;}
.h7_c00362{height:67.208601px;}
.he_c00362{height:71.409139px;}
.hd_c00362{height:75.609676px;}
.h2_c00362{height:88.200000px;}
.h0_c00362{height:613.170000px;}
.h1_c00362{height:613.500000px;}
.w0_c00362{width:359.100000px;}
.w1_c00362{width:359.250000px;}
.x0_c00362{left:0.000000px;}
.x55_c00362{left:18.900444px;}
.x3_c00362{left:19.926000px;}
.x17_c00362{left:20.936112px;}
.x7a_c00362{left:22.409532px;}
.x38_c00362{left:23.702724px;}
.x74_c00362{left:25.647528px;}
.x41_c00362{left:27.527808px;}
.x71_c00362{left:31.456008px;}
.x1d_c00362{left:34.728156px;}
.x31_c00362{left:36.725376px;}
.xf_c00362{left:38.801964px;}
.x3b_c00362{left:40.506900px;}
.x51_c00362{left:41.853492px;}
.x2c_c00362{left:46.077492px;}
.x6e_c00362{left:47.794824px;}
.x42_c00362{left:49.085112px;}
.x6b_c00362{left:50.132436px;}
.x34_c00362{left:51.846792px;}
.x7b_c00362{left:55.083384px;}
.xa_c00362{left:56.889816px;}
.x23_c00362{left:60.382272px;}
.x68_c00362{left:61.835748px;}
.x10_c00362{left:63.112464px;}
.x32_c00362{left:65.889840px;}
.x6f_c00362{left:66.966720px;}
.x29_c00362{left:69.536640px;}
.x7d_c00362{left:72.908448px;}
.x77_c00362{left:77.623200px;}
.x3c_c00362{left:79.662408px;}
.xb_c00362{left:80.937816px;}
.x1e_c00362{left:82.445436px;}
.x18_c00362{left:84.095652px;}
.x5e_c00362{left:87.757692px;}
.x7e_c00362{left:88.841028px;}
.x46_c00362{left:90.730932px;}
.x4_c00362{left:94.171500px;}
.x61_c00362{left:98.290884px;}
.x64_c00362{left:99.911148px;}
.x1f_c00362{left:101.394348px;}
.x81_c00362{left:104.232084px;}
.x35_c00362{left:106.123188px;}
.x56_c00362{left:107.201052px;}
.x43_c00362{left:109.071192px;}
.x4c_c00362{left:110.442144px;}
.x47_c00362{left:111.523260px;}
.x5c_c00362{left:113.141304px;}
.x2d_c00362{left:114.589176px;}
.x62_c00362{left:117.732852px;}
.x20_c00362{left:119.788236px;}
.x69_c00362{left:120.973392px;}
.x5f_c00362{left:125.022720px;}
.x82_c00362{left:126.374748px;}
.x2e_c00362{left:128.437608px;}
.x3d_c00362{left:131.509680px;}
.x11_c00362{left:135.449964px;}
.x57_c00362{left:137.984424px;}
.x52_c00362{left:141.497004px;}
.x6c_c00362{left:142.724376px;}
.x24_c00362{left:143.825436px;}
.x78_c00362{left:145.355124px;}
.x36_c00362{left:147.439272px;}
.x1_c00362{left:149.580000px;}
.x7c_c00362{left:151.486056px;}
.x75_c00362{left:155.207940px;}
.x19_c00362{left:157.805556px;}
.x39_c00362{left:158.944044px;}
.x70_c00362{left:160.398624px;}
.x65_c00362{left:161.479416px;}
.xc_c00362{left:165.171816px;}
.x25_c00362{left:166.237656px;}
.x5_c00362{left:167.254500px;}
.x80_c00362{left:170.661528px;}
.x1a_c00362{left:175.898496px;}
.x12_c00362{left:177.593964px;}
.x6d_c00362{left:179.173128px;}
.x4d_c00362{left:180.921192px;}
.x66_c00362{left:182.811864px;}
.x2a_c00362{left:184.516008px;}
.x26_c00362{left:189.452400px;}
.x72_c00362{left:190.492752px;}
.x6_c00362{left:191.634000px;}
.x48_c00362{left:193.343712px;}
.x13_c00362{left:194.888964px;}
.x2b_c00362{left:201.848112px;}
.x58_c00362{left:204.412416px;}
.x44_c00362{left:206.487072px;}
.x2f_c00362{left:210.257724px;}
.x37_c00362{left:211.438140px;}
.x59_c00362{left:218.454516px;}
.x7_c00362{left:220.995000px;}
.x67_c00362{left:222.507516px;}
.x5d_c00362{left:225.475080px;}
.x3e_c00362{left:226.832064px;}
.x4e_c00362{left:230.877984px;}
.xd_c00362{left:232.157316px;}
.x49_c00362{left:234.388224px;}
.x53_c00362{left:235.739148px;}
.x27_c00362{left:238.269960px;}
.x6a_c00362{left:240.597492px;}
.x63_c00362{left:243.840132px;}
.x7f_c00362{left:244.921464px;}
.x21_c00362{left:246.149808px;}
.x3f_c00362{left:248.164512px;}
.x8_c00362{left:250.237500px;}
.x14_c00362{left:251.599464px;}
.x4f_c00362{left:252.750576px;}
.x5a_c00362{left:256.799832px;}
.x2_c00362{left:258.930000px;}
.x33_c00362{left:260.314092px;}
.x73_c00362{left:262.075464px;}
.x45_c00362{left:264.019224px;}
.x22_c00362{left:265.056720px;}
.x28_c00362{left:266.701872px;}
.x60_c00362{left:268.142820px;}
.x15_c00362{left:269.614464px;}
.x9_c00362{left:273.694500px;}
.x4a_c00362{left:276.513000px;}
.x1b_c00362{left:278.523204px;}
.x5b_c00362{left:281.103048px;}
.x79_c00362{left:284.183736px;}
.x30_c00362{left:286.685172px;}
.x76_c00362{left:287.769828px;}
.xe_c00362{left:288.858816px;}
.x16_c00362{left:294.001464px;}
.x1c_c00362{left:296.082120px;}
.x4b_c00362{left:300.546144px;}
.x40_c00362{left:302.710980px;}
.x54_c00362{left:304.057644px;}
.x3a_c00362{left:306.410772px;}
.x50_c00362{left:312.698412px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.fs9_c00362{font-size:48.539545pt;}
.fsa_c00362{font-size:51.339904pt;}
.fs4_c00362{font-size:52.273356pt;}
.fs7_c00362{font-size:53.206809pt;}
.fs2_c00362{font-size:54.140262pt;}
.fs6_c00362{font-size:55.073715pt;}
.fs3_c00362{font-size:56.007168pt;}
.fs1_c00362{font-size:56.940620pt;}
.fs8_c00362{font-size:57.874073pt;}
.fs5_c00362{font-size:59.740979pt;}
.fsc_c00362{font-size:63.474790pt;}
.fsb_c00362{font-size:67.208601pt;}
.fs0_c00362{font-size:78.400000pt;}
.y0_c00362{bottom:0.000000pt;}
.yeb_c00362{bottom:23.834112pt;}
.yea_c00362{bottom:23.834155pt;}
.ye9_c00362{bottom:23.834261pt;}
.yec_c00362{bottom:23.834283pt;}
.ye5_c00362{bottom:38.173259pt;}
.ye6_c00362{bottom:38.173696pt;}
.ye7_c00362{bottom:38.174315pt;}
.ye8_c00362{bottom:38.174805pt;}
.ye4_c00362{bottom:54.515115pt;}
.ydf_c00362{bottom:54.515125pt;}
.ye2_c00362{bottom:54.515232pt;}
.yde_c00362{bottom:54.515253pt;}
.ye0_c00362{bottom:54.515477pt;}
.ye3_c00362{bottom:54.515701pt;}
.ydc_c00362{bottom:54.515765pt;}
.ye1_c00362{bottom:54.515808pt;}
.ydd_c00362{bottom:54.515883pt;}
.yd5_c00362{bottom:69.046283pt;}
.yd6_c00362{bottom:69.046859pt;}
.yd8_c00362{bottom:69.046901pt;}
.yd7_c00362{bottom:69.047189pt;}
.yda_c00362{bottom:69.047349pt;}
.yd9_c00362{bottom:69.047392pt;}
.ydb_c00362{bottom:69.047712pt;}
.yce_c00362{bottom:83.231637pt;}
.ycf_c00362{bottom:84.009237pt;}
.yd0_c00362{bottom:84.184000pt;}
.yd1_c00362{bottom:84.935445pt;}
.yd2_c00362{bottom:85.157269pt;}
.yd3_c00362{bottom:85.731125pt;}
.yd4_c00362{bottom:86.007957pt;}
.yc8_c00362{bottom:98.113941pt;}
.yc9_c00362{bottom:98.662923pt;}
.yca_c00362{bottom:99.324811pt;}
.ycb_c00362{bottom:99.683648pt;}
.ycc_c00362{bottom:100.372149pt;}
.ycd_c00362{bottom:100.681771pt;}
.yc2_c00362{bottom:111.797931pt;}
.yc3_c00362{bottom:112.356875pt;}
.yc4_c00362{bottom:113.756597pt;}
.yc5_c00362{bottom:115.125472pt;}
.yc6_c00362{bottom:115.327040pt;}
.yc7_c00362{bottom:115.759285pt;}
.ybc_c00362{bottom:128.358091pt;}
.ybd_c00362{bottom:128.869653pt;}
.ybe_c00362{bottom:129.141109pt;}
.ybf_c00362{bottom:129.911765pt;}
.yc0_c00362{bottom:130.299435pt;}
.yc1_c00362{bottom:130.612416pt;}
.yb6_c00362{bottom:144.049088pt;}
.yb5_c00362{bottom:144.049291pt;}
.yb8_c00362{bottom:144.049664pt;}
.yb7_c00362{bottom:144.049685pt;}
.yb9_c00362{bottom:144.050155pt;}
.ybb_c00362{bottom:144.050379pt;}
.yba_c00362{bottom:144.050507pt;}
.yac_c00362{bottom:158.122720pt;}
.yad_c00362{bottom:158.468683pt;}
.yae_c00362{bottom:158.930080pt;}
.yaf_c00362{bottom:159.342208pt;}
.yb0_c00362{bottom:159.538816pt;}
.yb1_c00362{bottom:159.959840pt;}
.yb2_c00362{bottom:160.742453pt;}
.yb3_c00362{bottom:160.932565pt;}
.yb4_c00362{bottom:161.107989pt;}
.ya7_c00362{bottom:174.621205pt;}
.ya4_c00362{bottom:174.621269pt;}
.ya6_c00362{bottom:174.621408pt;}
.ya3_c00362{bottom:174.621600pt;}
.ya8_c00362{bottom:174.621739pt;}
.yab_c00362{bottom:174.621760pt;}
.ya5_c00362{bottom:174.621888pt;}
.ya9_c00362{bottom:174.622016pt;}
.yaa_c00362{bottom:174.622293pt;}
.y9f_c00362{bottom:190.033291pt;}
.y9d_c00362{bottom:190.033301pt;}
.y9a_c00362{bottom:190.033707pt;}
.ya2_c00362{bottom:190.033771pt;}
.y9e_c00362{bottom:190.033845pt;}
.y9c_c00362{bottom:190.033877pt;}
.ya0_c00362{bottom:190.033941pt;}
.y9b_c00362{bottom:190.034304pt;}
.ya1_c00362{bottom:190.034357pt;}
.y91_c00362{bottom:205.528341pt;}
.y92_c00362{bottom:205.528939pt;}
.y95_c00362{bottom:205.529333pt;}
.y97_c00362{bottom:205.529397pt;}
.y93_c00362{bottom:205.529472pt;}
.y98_c00362{bottom:205.529643pt;}
.y96_c00362{bottom:205.529845pt;}
.y94_c00362{bottom:205.529909pt;}
.y99_c00362{bottom:205.529973pt;}
.y89_c00362{bottom:220.726869pt;}
.y8a_c00362{bottom:220.726933pt;}
.y8b_c00362{bottom:220.727595pt;}
.y8c_c00362{bottom:220.728117pt;}
.y8d_c00362{bottom:220.728683pt;}
.y8f_c00362{bottom:220.729088pt;}
.y8e_c00362{bottom:220.729184pt;}
.y90_c00362{bottom:220.729749pt;}
.y87_c00362{bottom:236.307061pt;}
.y88_c00362{bottom:236.307179pt;}
.y86_c00362{bottom:236.307627pt;}
.y85_c00362{bottom:236.307915pt;}
.y84_c00362{bottom:236.308501pt;}
.y82_c00362{bottom:236.308512pt;}
.y83_c00362{bottom:236.308875pt;}
.y7c_c00362{bottom:251.825344pt;}
.y7d_c00362{bottom:251.825707pt;}
.y80_c00362{bottom:251.825760pt;}
.y7b_c00362{bottom:251.825835pt;}
.y7f_c00362{bottom:251.825877pt;}
.y81_c00362{bottom:251.825984pt;}
.y7e_c00362{bottom:251.826219pt;}
.y7a_c00362{bottom:266.984245pt;}
.y79_c00362{bottom:266.984789pt;}
.y78_c00362{bottom:266.984853pt;}
.y77_c00362{bottom:266.985515pt;}
.y75_c00362{bottom:266.985696pt;}
.y76_c00362{bottom:266.985856pt;}
.y74_c00362{bottom:266.986197pt;}
.y73_c00362{bottom:266.986464pt;}
.y72_c00362{bottom:266.986741pt;}
.y6f_c00362{bottom:286.735456pt;}
.y70_c00362{bottom:286.735787pt;}
.y6e_c00362{bottom:286.735808pt;}
.y6c_c00362{bottom:286.735947pt;}
.y71_c00362{bottom:286.736160pt;}
.y6d_c00362{bottom:286.736363pt;}
.y69_c00362{bottom:296.441184pt;}
.y6a_c00362{bottom:296.441472pt;}
.y62_c00362{bottom:296.441483pt;}
.y68_c00362{bottom:296.441589pt;}
.y6b_c00362{bottom:296.441856pt;}
.y63_c00362{bottom:296.442048pt;}
.y67_c00362{bottom:296.442208pt;}
.y66_c00362{bottom:296.442219pt;}
.y64_c00362{bottom:296.442539pt;}
.y65_c00362{bottom:296.442581pt;}
.y5b_c00362{bottom:309.581952pt;}
.y5c_c00362{bottom:309.927221pt;}
.y5d_c00362{bottom:310.887051pt;}
.y5e_c00362{bottom:312.206901pt;}
.y5f_c00362{bottom:312.445899pt;}
.y60_c00362{bottom:312.757067pt;}
.y61_c00362{bottom:313.366827pt;}
.y52_c00362{bottom:325.626197pt;}
.y53_c00362{bottom:325.626603pt;}
.y54_c00362{bottom:325.626933pt;}
.y56_c00362{bottom:325.627200pt;}
.y55_c00362{bottom:325.627339pt;}
.y57_c00362{bottom:325.627819pt;}
.y58_c00362{bottom:325.627883pt;}
.y5a_c00362{bottom:325.628107pt;}
.y59_c00362{bottom:325.628533pt;}
.y4b_c00362{bottom:338.622997pt;}
.y4c_c00362{bottom:338.784203pt;}
.y4d_c00362{bottom:339.748885pt;}
.y4e_c00362{bottom:340.306368pt;}
.y4f_c00362{bottom:340.537973pt;}
.y50_c00362{bottom:341.065387pt;}
.y51_c00362{bottom:342.140939pt;}
.y48_c00362{bottom:355.383979pt;}
.y47_c00362{bottom:355.384021pt;}
.y44_c00362{bottom:355.384213pt;}
.y46_c00362{bottom:355.384523pt;}
.y49_c00362{bottom:355.384619pt;}
.y45_c00362{bottom:355.384789pt;}
.y4a_c00362{bottom:355.385216pt;}
.y3c_c00362{bottom:371.418976pt;}
.y3f_c00362{bottom:371.419061pt;}
.y3d_c00362{bottom:371.419221pt;}
.y3e_c00362{bottom:371.419232pt;}
.y40_c00362{bottom:371.419328pt;}
.y42_c00362{bottom:371.419371pt;}
.y41_c00362{bottom:371.419573pt;}
.y43_c00362{bottom:371.419669pt;}
.y36_c00362{bottom:383.746837pt;}
.y37_c00362{bottom:384.076768pt;}
.y38_c00362{bottom:384.929792pt;}
.y39_c00362{bottom:385.102741pt;}
.y3a_c00362{bottom:386.121035pt;}
.y3b_c00362{bottom:387.071968pt;}
.y2f_c00362{bottom:399.347915pt;}
.y30_c00362{bottom:399.878368pt;}
.y31_c00362{bottom:400.211957pt;}
.y32_c00362{bottom:401.104192pt;}
.y33_c00362{bottom:401.289344pt;}
.y34_c00362{bottom:401.755467pt;}
.y35_c00362{bottom:402.052469pt;}
.y28_c00362{bottom:413.991040pt;}
.y29_c00362{bottom:414.494613pt;}
.y2a_c00362{bottom:415.533323pt;}
.y2b_c00362{bottom:415.812064pt;}
.y2c_c00362{bottom:416.100885pt;}
.y2d_c00362{bottom:416.708491pt;}
.y2e_c00362{bottom:417.062176pt;}
.y20_c00362{bottom:429.113771pt;}
.y21_c00362{bottom:429.278965pt;}
.y22_c00362{bottom:429.830912pt;}
.y23_c00362{bottom:430.049728pt;}
.y24_c00362{bottom:430.261984pt;}
.y25_c00362{bottom:430.913856pt;}
.y26_c00362{bottom:431.721707pt;}
.y27_c00362{bottom:431.939925pt;}
.y19_c00362{bottom:446.395243pt;}
.y1a_c00362{bottom:447.013440pt;}
.y1b_c00362{bottom:447.733675pt;}
.y1c_c00362{bottom:447.910976pt;}
.y1d_c00362{bottom:448.349792pt;}
.y1e_c00362{bottom:448.914411pt;}
.y1f_c00362{bottom:449.085451pt;}
.yf_c00362{bottom:459.597696pt;}
.y10_c00362{bottom:459.855381pt;}
.y11_c00362{bottom:460.201131pt;}
.y12_c00362{bottom:461.229931pt;}
.y13_c00362{bottom:461.436459pt;}
.y14_c00362{bottom:461.829312pt;}
.y15_c00362{bottom:462.075285pt;}
.y16_c00362{bottom:462.881835pt;}
.y17_c00362{bottom:463.138048pt;}
.y18_c00362{bottom:463.484885pt;}
.y9_c00362{bottom:474.960203pt;}
.ya_c00362{bottom:475.485899pt;}
.yb_c00362{bottom:475.827915pt;}
.yc_c00362{bottom:477.025909pt;}
.yd_c00362{bottom:477.978592pt;}
.ye_c00362{bottom:478.785013pt;}
.y2_c00362{bottom:489.842667pt;}
.y3_c00362{bottom:490.898603pt;}
.y4_c00362{bottom:491.938005pt;}
.y5_c00362{bottom:492.284736pt;}
.y6_c00362{bottom:492.702315pt;}
.y7_c00362{bottom:493.118208pt;}
.y8_c00362{bottom:493.451819pt;}
.y1_c00362{bottom:502.800000pt;}
.hb_c00362{height:48.539545pt;}
.hc_c00362{height:51.339904pt;}
.h6_c00362{height:52.273356pt;}
.h9_c00362{height:53.206809pt;}
.h4_c00362{height:54.140262pt;}
.h8_c00362{height:55.073715pt;}
.h5_c00362{height:56.007168pt;}
.h3_c00362{height:56.940620pt;}
.ha_c00362{height:57.874073pt;}
.h7_c00362{height:59.740979pt;}
.he_c00362{height:63.474790pt;}
.hd_c00362{height:67.208601pt;}
.h2_c00362{height:78.400000pt;}
.h0_c00362{height:545.040000pt;}
.h1_c00362{height:545.333333pt;}
.w0_c00362{width:319.200000pt;}
.w1_c00362{width:319.333333pt;}
.x0_c00362{left:0.000000pt;}
.x55_c00362{left:16.800395pt;}
.x3_c00362{left:17.712000pt;}
.x17_c00362{left:18.609877pt;}
.x7a_c00362{left:19.919584pt;}
.x38_c00362{left:21.069088pt;}
.x74_c00362{left:22.797803pt;}
.x41_c00362{left:24.469163pt;}
.x71_c00362{left:27.960896pt;}
.x1d_c00362{left:30.869472pt;}
.x31_c00362{left:32.644779pt;}
.xf_c00362{left:34.490635pt;}
.x3b_c00362{left:36.006133pt;}
.x51_c00362{left:37.203104pt;}
.x2c_c00362{left:40.957771pt;}
.x6e_c00362{left:42.484288pt;}
.x42_c00362{left:43.631211pt;}
.x6b_c00362{left:44.562165pt;}
.x34_c00362{left:46.086037pt;}
.x7b_c00362{left:48.963008pt;}
.xa_c00362{left:50.568725pt;}
.x23_c00362{left:53.673131pt;}
.x68_c00362{left:54.965109pt;}
.x10_c00362{left:56.099968pt;}
.x32_c00362{left:58.568747pt;}
.x6f_c00362{left:59.525973pt;}
.x29_c00362{left:61.810347pt;}
.x7d_c00362{left:64.807509pt;}
.x77_c00362{left:68.998400pt;}
.x3c_c00362{left:70.811029pt;}
.xb_c00362{left:71.944725pt;}
.x1e_c00362{left:73.284832pt;}
.x18_c00362{left:74.751691pt;}
.x5e_c00362{left:78.006837pt;}
.x7e_c00362{left:78.969803pt;}
.x46_c00362{left:80.649717pt;}
.x4_c00362{left:83.708000pt;}
.x61_c00362{left:87.369675pt;}
.x64_c00362{left:88.809909pt;}
.x1f_c00362{left:90.128309pt;}
.x81_c00362{left:92.650741pt;}
.x35_c00362{left:94.331723pt;}
.x56_c00362{left:95.289824pt;}
.x43_c00362{left:96.952171pt;}
.x4c_c00362{left:98.170795pt;}
.x47_c00362{left:99.131787pt;}
.x5c_c00362{left:100.570048pt;}
.x2d_c00362{left:101.857045pt;}
.x62_c00362{left:104.651424pt;}
.x20_c00362{left:106.478432pt;}
.x69_c00362{left:107.531904pt;}
.x5f_c00362{left:111.131307pt;}
.x82_c00362{left:112.333109pt;}
.x2e_c00362{left:114.166763pt;}
.x3d_c00362{left:116.897493pt;}
.x11_c00362{left:120.399968pt;}
.x57_c00362{left:122.652821pt;}
.x52_c00362{left:125.775115pt;}
.x6c_c00362{left:126.866112pt;}
.x24_c00362{left:127.844832pt;}
.x78_c00362{left:129.204555pt;}
.x36_c00362{left:131.057131pt;}
.x1_c00362{left:132.960000pt;}
.x7c_c00362{left:134.654272pt;}
.x75_c00362{left:137.962613pt;}
.x19_c00362{left:140.271605pt;}
.x39_c00362{left:141.283595pt;}
.x70_c00362{left:142.576555pt;}
.x65_c00362{left:143.537259pt;}
.xc_c00362{left:146.819392pt;}
.x25_c00362{left:147.766805pt;}
.x5_c00362{left:148.670667pt;}
.x80_c00362{left:151.699136pt;}
.x1a_c00362{left:156.354219pt;}
.x12_c00362{left:157.861301pt;}
.x6d_c00362{left:159.265003pt;}
.x4d_c00362{left:160.818837pt;}
.x66_c00362{left:162.499435pt;}
.x2a_c00362{left:164.014229pt;}
.x26_c00362{left:168.402133pt;}
.x72_c00362{left:169.326891pt;}
.x6_c00362{left:170.341333pt;}
.x48_c00362{left:171.861077pt;}
.x13_c00362{left:173.234635pt;}
.x2b_c00362{left:179.420544pt;}
.x58_c00362{left:181.699925pt;}
.x44_c00362{left:183.544064pt;}
.x2f_c00362{left:186.895755pt;}
.x37_c00362{left:187.945013pt;}
.x59_c00362{left:194.181792pt;}
.x7_c00362{left:196.440000pt;}
.x67_c00362{left:197.784459pt;}
.x5d_c00362{left:200.422293pt;}
.x3e_c00362{left:201.628501pt;}
.x4e_c00362{left:205.224875pt;}
.xd_c00362{left:206.362059pt;}
.x49_c00362{left:208.345088pt;}
.x53_c00362{left:209.545909pt;}
.x27_c00362{left:211.795520pt;}
.x6a_c00362{left:213.864437pt;}
.x63_c00362{left:216.746784pt;}
.x7f_c00362{left:217.707968pt;}
.x21_c00362{left:218.799829pt;}
.x3f_c00362{left:220.590677pt;}
.x8_c00362{left:222.433333pt;}
.x14_c00362{left:223.643968pt;}
.x4f_c00362{left:224.667179pt;}
.x5a_c00362{left:228.266517pt;}
.x2_c00362{left:230.160000pt;}
.x33_c00362{left:231.390304pt;}
.x73_c00362{left:232.955968pt;}
.x45_c00362{left:234.683755pt;}
.x22_c00362{left:235.605973pt;}
.x28_c00362{left:237.068331pt;}
.x60_c00362{left:238.349173pt;}
.x15_c00362{left:239.657301pt;}
.x9_c00362{left:243.284000pt;}
.x4a_c00362{left:245.789333pt;}
.x1b_c00362{left:247.576181pt;}
.x5b_c00362{left:249.869376pt;}
.x79_c00362{left:252.607765pt;}
.x30_c00362{left:254.831264pt;}
.x76_c00362{left:255.795403pt;}
.xe_c00362{left:256.763392pt;}
.x16_c00362{left:261.334635pt;}
.x1c_c00362{left:263.184107pt;}
.x4b_c00362{left:267.152128pt;}
.x40_c00362{left:269.076427pt;}
.x54_c00362{left:270.273461pt;}
.x3a_c00362{left:272.365131pt;}
.x50_c00362{left:277.954144pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00363 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00363 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00363 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00363 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00363.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb5_c00363{transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);}
.m77_c00363{transform:matrix(0.076115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076115,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.123210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123210,0.000000,0.000000,0.250000,0,0);}
.m45_c00363{transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00363{transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143815,0.000000,0.000000,0.250000,0,0);}
.m5a_c00363{transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);}
.m61_c00363{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m51_c00363{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.146910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146910,0.000000,0.000000,0.250000,0,0);}
.m27_c00363{transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149660,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m43_c00363{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.m9a_c00363{transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);}
.m78_c00363{transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);}
.mca_c00363{transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.ma6_c00363{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.m5f_c00363{transform:matrix(0.162395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162395,0.000000,0.000000,0.250000,0,0);}
.md7_c00363{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.md2_c00363{transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163320,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);}
.mc5_c00363{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m5d_c00363{transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);}
.mba_c00363{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m3e_c00363{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00363{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);}
.m4b_c00363{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.mc6_c00363{transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);}
.m4f_c00363{transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172770,0.000000,0.000000,0.250000,0,0);}
.m8d_c00363{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.mc0_c00363{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.mb4_c00363{transform:matrix(0.173345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173345,0.000000,0.000000,0.250000,0,0);}
.ma3_c00363{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00363{transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174370,0.000000,0.000000,0.250000,0,0);}
.m9b_c00363{transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174460,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m2a_c00363{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m2b_c00363{transform:matrix(0.174995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174995,0.000000,0.000000,0.250000,0,0);}
.m1a_c00363{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.me1_c00363{transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);}
.m60_c00363{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176045,0.000000,0.000000,0.250000,0,0);}
.md5_c00363{transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);}
.mcb_c00363{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.mbc_c00363{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m87_c00363{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m82_c00363{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m95_c00363{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m75_c00363{transform:matrix(0.179180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179180,0.000000,0.000000,0.250000,0,0);}
.m9f_c00363{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00363{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m2d_c00363{transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);}
.m38_c00363{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.mb8_c00363{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m85_c00363{transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);}
.m41_c00363{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.mc9_c00363{transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);}
.m57_c00363{transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);}
.m50_c00363{transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184480,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.me0_c00363{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m91_c00363{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);}
.maf_c00363{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m5c_c00363{transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);}
.ma4_c00363{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00363{transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186085,0.000000,0.000000,0.250000,0,0);}
.m8f_c00363{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m54_c00363{transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);}
.m96_c00363{transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m40_c00363{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187280,0.000000,0.000000,0.250000,0,0);}
.m98_c00363{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.mc4_c00363{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m86_c00363{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.m8c_c00363{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m90_c00363{transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);}
.mb2_c00363{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.ma2_c00363{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00363{transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190005,0.000000,0.000000,0.250000,0,0);}
.mbf_c00363{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.mbe_c00363{transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00363{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);}
.md6_c00363{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m35_c00363{transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00363{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m31_c00363{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m76_c00363{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.mc8_c00363{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.m97_c00363{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mcf_c00363{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m68_c00363{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.md3_c00363{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m7b_c00363{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m33_c00363{transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00363{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m52_c00363{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m59_c00363{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00363{transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);}
.mc2_c00363{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.md9_c00363{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.m65_c00363{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.mc3_c00363{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00363{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.ma5_c00363{transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197585,0.000000,0.000000,0.250000,0,0);}
.m99_c00363{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.mc1_c00363{transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);}
.md1_c00363{transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);}
.ma0_c00363{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199355,0.000000,0.000000,0.250000,0,0);}
.m47_c00363{transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.m6e_c00363{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m7e_c00363{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);}
.m69_c00363{transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);}
.m39_c00363{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m83_c00363{transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);}
.m9c_c00363{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.md0_c00363{transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);}
.m5b_c00363{transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);}
.mbd_c00363{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.mb9_c00363{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.m9e_c00363{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203190,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.m7c_c00363{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.mac_c00363{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m55_c00363{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00363{transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);}
.m58_c00363{transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00363{transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206415,0.000000,0.000000,0.250000,0,0);}
.m66_c00363{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md8_c00363{transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207145,0.000000,0.000000,0.250000,0,0);}
.mad_c00363{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.m56_c00363{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m32_c00363{transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);}
.mdb_c00363{transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);}
.m62_c00363{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.m81_c00363{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m6a_c00363{transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);}
.mcd_c00363{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.m1f_c00363{transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);}
.m6f_c00363{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.mab_c00363{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m84_c00363{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mae_c00363{transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);}
.maa_c00363{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);}
.mbb_c00363{transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);}
.md4_c00363{transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);}
.ma1_c00363{transform:matrix(0.211955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211955,0.000000,0.000000,0.250000,0,0);}
.mcc_c00363{transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212005,0.000000,0.000000,0.250000,0,0);}
.m64_c00363{transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m63_c00363{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.ma8_c00363{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m7d_c00363{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00363{transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.mb7_c00363{transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);}
.m94_c00363{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.m53_c00363{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.m88_c00363{transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);}
.m74_c00363{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m67_c00363{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m92_c00363{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.mce_c00363{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.mdd_c00363{transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226390,0.000000,0.000000,0.250000,0,0);}
.mdc_c00363{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.mda_c00363{transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);}
.m80_c00363{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.m89_c00363{transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);}
.mdf_c00363{transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);}
.mde_c00363{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00363{transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);}
.m49_c00363{transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00363{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.m6d_c00363{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.mb0_c00363{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m73_c00363{transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);}
.m2f_c00363{transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);}
.mb1_c00363{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m46_c00363{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.m93_c00363{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m34_c00363{transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);}
.mb3_c00363{transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);}
.m70_c00363{transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);}
.m72_c00363{transform:matrix(0.285825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285825,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00363{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m7f_c00363{transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);}
.mb6_c00363{transform:matrix(0.347115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347115,0.000000,0.000000,0.250000,0,0);}
.m71_c00363{transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.391365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391365,0.000000,0.000000,0.250000,0,0);}
.m79_c00363{transform:matrix(0.473485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473485,0.000000,0.000000,0.250000,0,0);}
.ma9_c00363{transform:matrix(0.681105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681105,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
.fc0_c00363{color:transparent;}
.fs5_c00363{font-size:58.800000px;}
.fs8_c00363{font-size:59.850000px;}
.fs7_c00363{font-size:60.900000px;}
.fs9_c00363{font-size:61.950000px;}
.fsb_c00363{font-size:63.000000px;}
.fs3_c00363{font-size:64.050000px;}
.fs6_c00363{font-size:65.100000px;}
.fs0_c00363{font-size:66.150000px;}
.fsa_c00363{font-size:67.200000px;}
.fs4_c00363{font-size:68.250000px;}
.fs2_c00363{font-size:70.350000px;}
.fs1_c00363{font-size:71.400000px;}
.y0_c00363{bottom:0.000000px;}
.y21_c00363{bottom:25.962000px;}
.y20_c00363{bottom:41.728500px;}
.y1f_c00363{bottom:58.761000px;}
.y1e_c00363{bottom:75.894000px;}
.y1d_c00363{bottom:92.169000px;}
.y1c_c00363{bottom:109.348500px;}
.y1b_c00363{bottom:126.768000px;}
.y1a_c00363{bottom:143.076000px;}
.y19_c00363{bottom:162.468000px;}
.y18_c00363{bottom:177.439500px;}
.y17_c00363{bottom:195.405000px;}
.y16_c00363{bottom:212.562000px;}
.y15_c00363{bottom:229.405500px;}
.y14_c00363{bottom:246.732000px;}
.y13_c00363{bottom:263.644500px;}
.y12_c00363{bottom:279.516000px;}
.y11_c00363{bottom:296.559000px;}
.y10_c00363{bottom:313.569000px;}
.yf_c00363{bottom:331.414500px;}
.ye_c00363{bottom:348.694500px;}
.yd_c00363{bottom:365.556000px;}
.yc_c00363{bottom:381.973500px;}
.yb_c00363{bottom:399.667500px;}
.ya_c00363{bottom:416.952000px;}
.y9_c00363{bottom:433.930500px;}
.y8_c00363{bottom:449.943000px;}
.y7_c00363{bottom:467.710500px;}
.y6_c00363{bottom:484.231500px;}
.y5_c00363{bottom:501.214500px;}
.y4_c00363{bottom:517.806000px;}
.y3_c00363{bottom:535.383000px;}
.y2_c00363{bottom:551.874000px;}
.y1_c00363{bottom:567.805500px;}
.h7_c00363{height:58.800000px;}
.ha_c00363{height:59.850000px;}
.h9_c00363{height:60.900000px;}
.hb_c00363{height:61.950000px;}
.hd_c00363{height:63.000000px;}
.h5_c00363{height:64.050000px;}
.h8_c00363{height:65.100000px;}
.h2_c00363{height:66.150000px;}
.hc_c00363{height:67.200000px;}
.h6_c00363{height:68.250000px;}
.h4_c00363{height:70.350000px;}
.h3_c00363{height:71.400000px;}
.h0_c00363{height:613.170000px;}
.h1_c00363{height:613.500000px;}
.w0_c00363{width:359.100000px;}
.w1_c00363{width:359.250000px;}
.x0_c00363{left:0.000000px;}
.x4e_c00363{left:36.450000px;}
.x49_c00363{left:38.880000px;}
.xa_c00363{left:39.960000px;}
.x67_c00363{left:61.560000px;}
.x73_c00363{left:62.640000px;}
.x2_c00363{left:63.720000px;}
.x3e_c00363{left:65.340000px;}
.x22_c00363{left:68.850000px;}
.x35_c00363{left:70.740000px;}
.x11_c00363{left:72.090000px;}
.x43_c00363{left:73.440000px;}
.x2c_c00363{left:75.330000px;}
.x1b_c00363{left:76.950000px;}
.x1d_c00363{left:79.380000px;}
.x53_c00363{left:82.890000px;}
.x23_c00363{left:86.940000px;}
.x38_c00363{left:88.560000px;}
.x44_c00363{left:93.420000px;}
.x4a_c00363{left:95.580000px;}
.x36_c00363{left:98.820000px;}
.x16_c00363{left:100.710000px;}
.x5e_c00363{left:102.330000px;}
.x6b_c00363{left:103.410000px;}
.x2d_c00363{left:106.110000px;}
.x50_c00363{left:107.460000px;}
.x68_c00363{left:109.890000px;}
.x6c_c00363{left:113.130000px;}
.xb_c00363{left:114.750000px;}
.x39_c00363{left:116.370000px;}
.x4f_c00363{left:119.610000px;}
.x5f_c00363{left:122.310000px;}
.x3_c00363{left:123.660000px;}
.x58_c00363{left:125.010000px;}
.x74_c00363{left:128.250000px;}
.x54_c00363{left:129.600000px;}
.x5a_c00363{left:131.490000px;}
.xc_c00363{left:134.460000px;}
.x27_c00363{left:136.350000px;}
.x55_c00363{left:138.510000px;}
.x71_c00363{left:140.130000px;}
.x4_c00363{left:143.370000px;}
.x59_c00363{left:144.990000px;}
.x2e_c00363{left:146.880000px;}
.x3f_c00363{left:153.090000px;}
.x12_c00363{left:155.520000px;}
.x60_c00363{left:157.680000px;}
.x3a_c00363{left:159.030000px;}
.x4b_c00363{left:161.190000px;}
.xd_c00363{left:162.270000px;}
.x66_c00363{left:167.670000px;}
.x24_c00363{left:168.750000px;}
.x1_c00363{left:171.720000px;}
.x61_c00363{left:173.880000px;}
.x6f_c00363{left:174.960000px;}
.x17_c00363{left:178.200000px;}
.x3b_c00363{left:179.550000px;}
.x69_c00363{left:181.710000px;}
.x6d_c00363{left:184.410000px;}
.xe_c00363{left:186.030000px;}
.x40_c00363{left:187.380000px;}
.x5_c00363{left:191.160000px;}
.x2f_c00363{left:194.400000px;}
.x25_c00363{left:196.560000px;}
.x64_c00363{left:198.990000px;}
.x18_c00363{left:202.230000px;}
.x4c_c00363{left:203.310000px;}
.x6_c00363{left:205.740000px;}
.x6e_c00363{left:207.630000px;}
.x1e_c00363{left:210.060000px;}
.x45_c00363{left:213.030000px;}
.x33_c00363{left:216.810000px;}
.x75_c00363{left:218.700000px;}
.x3c_c00363{left:221.400000px;}
.x13_c00363{left:226.530000px;}
.x65_c00363{left:228.690000px;}
.x5b_c00363{left:229.770000px;}
.x62_c00363{left:230.850000px;}
.x1c_c00363{left:233.010000px;}
.x1f_c00363{left:234.090000px;}
.x28_c00363{left:235.710000px;}
.x56_c00363{left:237.600000px;}
.x52_c00363{left:239.220000px;}
.x34_c00363{left:240.570000px;}
.x7_c00363{left:242.190000px;}
.x63_c00363{left:244.080000px;}
.x30_c00363{left:245.160000px;}
.x6a_c00363{left:246.510000px;}
.xf_c00363{left:247.860000px;}
.x14_c00363{left:254.880000px;}
.x19_c00363{left:256.230000px;}
.x41_c00363{left:259.740000px;}
.x47_c00363{left:262.980000px;}
.x29_c00363{left:267.840000px;}
.x31_c00363{left:269.460000px;}
.x37_c00363{left:270.540000px;}
.x5c_c00363{left:274.320000px;}
.x26_c00363{left:276.480000px;}
.x3d_c00363{left:280.800000px;}
.x51_c00363{left:282.150000px;}
.x70_c00363{left:284.040000px;}
.x2a_c00363{left:287.010000px;}
.x32_c00363{left:289.980000px;}
.x1a_c00363{left:291.330000px;}
.x5d_c00363{left:294.570000px;}
.x20_c00363{left:298.350000px;}
.x8_c00363{left:301.320000px;}
.x4d_c00363{left:304.560000px;}
.x72_c00363{left:306.450000px;}
.x2b_c00363{left:308.880000px;}
.x10_c00363{left:309.960000px;}
.x57_c00363{left:313.470000px;}
.x9_c00363{left:314.820000px;}
.x21_c00363{left:316.710000px;}
.x42_c00363{left:319.410000px;}
.x46_c00363{left:322.650000px;}
.x15_c00363{left:325.620000px;}
.x48_c00363{left:326.970000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs5_c00363{font-size:52.266667pt;}
.fs8_c00363{font-size:53.200000pt;}
.fs7_c00363{font-size:54.133333pt;}
.fs9_c00363{font-size:55.066667pt;}
.fsb_c00363{font-size:56.000000pt;}
.fs3_c00363{font-size:56.933333pt;}
.fs6_c00363{font-size:57.866667pt;}
.fs0_c00363{font-size:58.800000pt;}
.fsa_c00363{font-size:59.733333pt;}
.fs4_c00363{font-size:60.666667pt;}
.fs2_c00363{font-size:62.533333pt;}
.fs1_c00363{font-size:63.466667pt;}
.y0_c00363{bottom:0.000000pt;}
.y21_c00363{bottom:23.077333pt;}
.y20_c00363{bottom:37.092000pt;}
.y1f_c00363{bottom:52.232000pt;}
.y1e_c00363{bottom:67.461333pt;}
.y1d_c00363{bottom:81.928000pt;}
.y1c_c00363{bottom:97.198667pt;}
.y1b_c00363{bottom:112.682667pt;}
.y1a_c00363{bottom:127.178667pt;}
.y19_c00363{bottom:144.416000pt;}
.y18_c00363{bottom:157.724000pt;}
.y17_c00363{bottom:173.693333pt;}
.y16_c00363{bottom:188.944000pt;}
.y15_c00363{bottom:203.916000pt;}
.y14_c00363{bottom:219.317333pt;}
.y13_c00363{bottom:234.350667pt;}
.y12_c00363{bottom:248.458667pt;}
.y11_c00363{bottom:263.608000pt;}
.y10_c00363{bottom:278.728000pt;}
.yf_c00363{bottom:294.590667pt;}
.ye_c00363{bottom:309.950667pt;}
.yd_c00363{bottom:324.938667pt;}
.yc_c00363{bottom:339.532000pt;}
.yb_c00363{bottom:355.260000pt;}
.ya_c00363{bottom:370.624000pt;}
.y9_c00363{bottom:385.716000pt;}
.y8_c00363{bottom:399.949333pt;}
.y7_c00363{bottom:415.742667pt;}
.y6_c00363{bottom:430.428000pt;}
.y5_c00363{bottom:445.524000pt;}
.y4_c00363{bottom:460.272000pt;}
.y3_c00363{bottom:475.896000pt;}
.y2_c00363{bottom:490.554667pt;}
.y1_c00363{bottom:504.716000pt;}
.h7_c00363{height:52.266667pt;}
.ha_c00363{height:53.200000pt;}
.h9_c00363{height:54.133333pt;}
.hb_c00363{height:55.066667pt;}
.hd_c00363{height:56.000000pt;}
.h5_c00363{height:56.933333pt;}
.h8_c00363{height:57.866667pt;}
.h2_c00363{height:58.800000pt;}
.hc_c00363{height:59.733333pt;}
.h6_c00363{height:60.666667pt;}
.h4_c00363{height:62.533333pt;}
.h3_c00363{height:63.466667pt;}
.h0_c00363{height:545.040000pt;}
.h1_c00363{height:545.333333pt;}
.w0_c00363{width:319.200000pt;}
.w1_c00363{width:319.333333pt;}
.x0_c00363{left:0.000000pt;}
.x4e_c00363{left:32.400000pt;}
.x49_c00363{left:34.560000pt;}
.xa_c00363{left:35.520000pt;}
.x67_c00363{left:54.720000pt;}
.x73_c00363{left:55.680000pt;}
.x2_c00363{left:56.640000pt;}
.x3e_c00363{left:58.080000pt;}
.x22_c00363{left:61.200000pt;}
.x35_c00363{left:62.880000pt;}
.x11_c00363{left:64.080000pt;}
.x43_c00363{left:65.280000pt;}
.x2c_c00363{left:66.960000pt;}
.x1b_c00363{left:68.400000pt;}
.x1d_c00363{left:70.560000pt;}
.x53_c00363{left:73.680000pt;}
.x23_c00363{left:77.280000pt;}
.x38_c00363{left:78.720000pt;}
.x44_c00363{left:83.040000pt;}
.x4a_c00363{left:84.960000pt;}
.x36_c00363{left:87.840000pt;}
.x16_c00363{left:89.520000pt;}
.x5e_c00363{left:90.960000pt;}
.x6b_c00363{left:91.920000pt;}
.x2d_c00363{left:94.320000pt;}
.x50_c00363{left:95.520000pt;}
.x68_c00363{left:97.680000pt;}
.x6c_c00363{left:100.560000pt;}
.xb_c00363{left:102.000000pt;}
.x39_c00363{left:103.440000pt;}
.x4f_c00363{left:106.320000pt;}
.x5f_c00363{left:108.720000pt;}
.x3_c00363{left:109.920000pt;}
.x58_c00363{left:111.120000pt;}
.x74_c00363{left:114.000000pt;}
.x54_c00363{left:115.200000pt;}
.x5a_c00363{left:116.880000pt;}
.xc_c00363{left:119.520000pt;}
.x27_c00363{left:121.200000pt;}
.x55_c00363{left:123.120000pt;}
.x71_c00363{left:124.560000pt;}
.x4_c00363{left:127.440000pt;}
.x59_c00363{left:128.880000pt;}
.x2e_c00363{left:130.560000pt;}
.x3f_c00363{left:136.080000pt;}
.x12_c00363{left:138.240000pt;}
.x60_c00363{left:140.160000pt;}
.x3a_c00363{left:141.360000pt;}
.x4b_c00363{left:143.280000pt;}
.xd_c00363{left:144.240000pt;}
.x66_c00363{left:149.040000pt;}
.x24_c00363{left:150.000000pt;}
.x1_c00363{left:152.640000pt;}
.x61_c00363{left:154.560000pt;}
.x6f_c00363{left:155.520000pt;}
.x17_c00363{left:158.400000pt;}
.x3b_c00363{left:159.600000pt;}
.x69_c00363{left:161.520000pt;}
.x6d_c00363{left:163.920000pt;}
.xe_c00363{left:165.360000pt;}
.x40_c00363{left:166.560000pt;}
.x5_c00363{left:169.920000pt;}
.x2f_c00363{left:172.800000pt;}
.x25_c00363{left:174.720000pt;}
.x64_c00363{left:176.880000pt;}
.x18_c00363{left:179.760000pt;}
.x4c_c00363{left:180.720000pt;}
.x6_c00363{left:182.880000pt;}
.x6e_c00363{left:184.560000pt;}
.x1e_c00363{left:186.720000pt;}
.x45_c00363{left:189.360000pt;}
.x33_c00363{left:192.720000pt;}
.x75_c00363{left:194.400000pt;}
.x3c_c00363{left:196.800000pt;}
.x13_c00363{left:201.360000pt;}
.x65_c00363{left:203.280000pt;}
.x5b_c00363{left:204.240000pt;}
.x62_c00363{left:205.200000pt;}
.x1c_c00363{left:207.120000pt;}
.x1f_c00363{left:208.080000pt;}
.x28_c00363{left:209.520000pt;}
.x56_c00363{left:211.200000pt;}
.x52_c00363{left:212.640000pt;}
.x34_c00363{left:213.840000pt;}
.x7_c00363{left:215.280000pt;}
.x63_c00363{left:216.960000pt;}
.x30_c00363{left:217.920000pt;}
.x6a_c00363{left:219.120000pt;}
.xf_c00363{left:220.320000pt;}
.x14_c00363{left:226.560000pt;}
.x19_c00363{left:227.760000pt;}
.x41_c00363{left:230.880000pt;}
.x47_c00363{left:233.760000pt;}
.x29_c00363{left:238.080000pt;}
.x31_c00363{left:239.520000pt;}
.x37_c00363{left:240.480000pt;}
.x5c_c00363{left:243.840000pt;}
.x26_c00363{left:245.760000pt;}
.x3d_c00363{left:249.600000pt;}
.x51_c00363{left:250.800000pt;}
.x70_c00363{left:252.480000pt;}
.x2a_c00363{left:255.120000pt;}
.x32_c00363{left:257.760000pt;}
.x1a_c00363{left:258.960000pt;}
.x5d_c00363{left:261.840000pt;}
.x20_c00363{left:265.200000pt;}
.x8_c00363{left:267.840000pt;}
.x4d_c00363{left:270.720000pt;}
.x72_c00363{left:272.400000pt;}
.x2b_c00363{left:274.560000pt;}
.x10_c00363{left:275.520000pt;}
.x57_c00363{left:278.640000pt;}
.x9_c00363{left:279.840000pt;}
.x21_c00363{left:281.520000pt;}
.x42_c00363{left:283.920000pt;}
.x46_c00363{left:286.800000pt;}
.x15_c00363{left:289.440000pt;}
.x48_c00363{left:290.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00364 {
    display:none;
  }
  .loading-indicator_c00364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00364 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00364 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00364" -> "#page-container .classname_c00364")
 */
.pf_c00364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00364 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00364 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00364 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00364 {overflow:visible;}
  }
}
.c_c00364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00364 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00364:after { /* webkit #35443 */
  content: '';
}
.t_c00364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00364 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00364 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00364 { /* info for Javascript */
  display:none;
}
.l_c00364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00364:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00364 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00364.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcf_c00364{transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011730,0.000000,0.000000,0.250000,0,0);}
.m57_c00364{transform:matrix(0.040008,-0.000760,0.004749,0.249955,0,0);-ms-transform:matrix(0.040008,-0.000760,0.004749,0.249955,0,0);-webkit-transform:matrix(0.040008,-0.000760,0.004749,0.249955,0,0);}
.m1_c00364{transform:matrix(0.049673,-0.001490,0.007497,0.249888,0,0);-ms-transform:matrix(0.049673,-0.001490,0.007497,0.249888,0,0);-webkit-transform:matrix(0.049673,-0.001490,0.007497,0.249888,0,0);}
.me0_c00364{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.148908,-0.002829,0.004749,0.249955,0,0);-ms-transform:matrix(0.148908,-0.002829,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148908,-0.002829,0.004749,0.249955,0,0);}
.mb2_c00364{transform:matrix(0.148993,-0.002235,0.003750,0.249972,0,0);-ms-transform:matrix(0.148993,-0.002235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148993,-0.002235,0.003750,0.249972,0,0);}
.m2d_c00364{transform:matrix(0.149463,-0.002840,0.004749,0.249955,0,0);-ms-transform:matrix(0.149463,-0.002840,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149463,-0.002840,0.004749,0.249955,0,0);}
.m9_c00364{transform:matrix(0.151183,-0.002872,0.004749,0.249955,0,0);-ms-transform:matrix(0.151183,-0.002872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151183,-0.002872,0.004749,0.249955,0,0);}
.m53_c00364{transform:matrix(0.151538,-0.002879,0.004749,0.249955,0,0);-ms-transform:matrix(0.151538,-0.002879,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151538,-0.002879,0.004749,0.249955,0,0);}
.mc_c00364{transform:matrix(0.154617,-0.002938,0.004749,0.249955,0,0);-ms-transform:matrix(0.154617,-0.002938,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154617,-0.002938,0.004749,0.249955,0,0);}
.m45_c00364{transform:matrix(0.154642,-0.002938,0.004749,0.249955,0,0);-ms-transform:matrix(0.154642,-0.002938,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154642,-0.002938,0.004749,0.249955,0,0);}
.m81_c00364{transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);-ms-transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155737,-0.002336,0.003750,0.249972,0,0);}
.m69_c00364{transform:matrix(0.157207,-0.002358,0.003750,0.249972,0,0);-ms-transform:matrix(0.157207,-0.002358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157207,-0.002358,0.003750,0.249972,0,0);}
.mc6_c00364{transform:matrix(0.158337,-0.002375,0.003750,0.249972,0,0);-ms-transform:matrix(0.158337,-0.002375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158337,-0.002375,0.003750,0.249972,0,0);}
.m4e_c00364{transform:matrix(0.159206,-0.003025,0.004749,0.249955,0,0);-ms-transform:matrix(0.159206,-0.003025,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159206,-0.003025,0.004749,0.249955,0,0);}
.m40_c00364{transform:matrix(0.159226,-0.003025,0.004749,0.249955,0,0);-ms-transform:matrix(0.159226,-0.003025,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159226,-0.003025,0.004749,0.249955,0,0);}
.mdc_c00364{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00364{transform:matrix(0.160107,-0.002402,0.003750,0.249972,0,0);-ms-transform:matrix(0.160107,-0.002402,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160107,-0.002402,0.003750,0.249972,0,0);}
.m8_c00364{transform:matrix(0.160691,-0.003053,0.004749,0.249955,0,0);-ms-transform:matrix(0.160691,-0.003053,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160691,-0.003053,0.004749,0.249955,0,0);}
.m2b_c00364{transform:matrix(0.162436,-0.003086,0.004749,0.249955,0,0);-ms-transform:matrix(0.162436,-0.003086,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162436,-0.003086,0.004749,0.249955,0,0);}
.ma_c00364{transform:matrix(0.162801,-0.003093,0.004749,0.249955,0,0);-ms-transform:matrix(0.162801,-0.003093,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162801,-0.003093,0.004749,0.249955,0,0);}
.m4d_c00364{transform:matrix(0.164595,-0.003127,0.004749,0.249955,0,0);-ms-transform:matrix(0.164595,-0.003127,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164595,-0.003127,0.004749,0.249955,0,0);}
.ma9_c00364{transform:matrix(0.165316,-0.002480,0.003750,0.249972,0,0);-ms-transform:matrix(0.165316,-0.002480,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165316,-0.002480,0.003750,0.249972,0,0);}
.m1f_c00364{transform:matrix(0.165615,-0.003147,0.004749,0.249955,0,0);-ms-transform:matrix(0.165615,-0.003147,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165615,-0.003147,0.004749,0.249955,0,0);}
.m6_c00364{transform:matrix(0.166530,-0.003164,0.004749,0.249955,0,0);-ms-transform:matrix(0.166530,-0.003164,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166530,-0.003164,0.004749,0.249955,0,0);}
.m7_c00364{transform:matrix(0.166830,-0.003170,0.004749,0.249955,0,0);-ms-transform:matrix(0.166830,-0.003170,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166830,-0.003170,0.004749,0.249955,0,0);}
.m97_c00364{transform:matrix(0.167211,-0.002508,0.003750,0.249972,0,0);-ms-transform:matrix(0.167211,-0.002508,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167211,-0.002508,0.003750,0.249972,0,0);}
.md7_c00364{transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);}
.m71_c00364{transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167966,-0.002519,0.003750,0.249972,0,0);}
.m46_c00364{transform:matrix(0.168905,-0.003209,0.004749,0.249955,0,0);-ms-transform:matrix(0.168905,-0.003209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168905,-0.003209,0.004749,0.249955,0,0);}
.m74_c00364{transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);-ms-transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168981,-0.002535,0.003750,0.249972,0,0);}
.m59_c00364{transform:matrix(0.169146,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169146,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169146,-0.002537,0.003750,0.249972,0,0);}
.m10_c00364{transform:matrix(0.169539,-0.003221,0.004749,0.249955,0,0);-ms-transform:matrix(0.169539,-0.003221,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169539,-0.003221,0.004749,0.249955,0,0);}
.mcc_c00364{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.171054,-0.003250,0.004749,0.249955,0,0);-ms-transform:matrix(0.171054,-0.003250,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171054,-0.003250,0.004749,0.249955,0,0);}
.m2a_c00364{transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);-ms-transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);}
.m75_c00364{transform:matrix(0.171701,-0.002576,0.003750,0.249972,0,0);-ms-transform:matrix(0.171701,-0.002576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171701,-0.002576,0.003750,0.249972,0,0);}
.me3_c00364{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.172289,-0.003273,0.004749,0.249955,0,0);-ms-transform:matrix(0.172289,-0.003273,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172289,-0.003273,0.004749,0.249955,0,0);}
.m2_c00364{transform:matrix(0.172414,-0.003276,0.004749,0.249955,0,0);-ms-transform:matrix(0.172414,-0.003276,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172414,-0.003276,0.004749,0.249955,0,0);}
.mcd_c00364{transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);-ms-transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172654,-0.003280,0.004749,0.249955,0,0);}
.m9e_c00364{transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);-ms-transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173410,-0.002601,0.003750,0.249972,0,0);}
.m3d_c00364{transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);-ms-transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173414,-0.003295,0.004749,0.249955,0,0);}
.me4_c00364{transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);}
.m30_c00364{transform:matrix(0.175023,-0.003325,0.004749,0.249955,0,0);-ms-transform:matrix(0.175023,-0.003325,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175023,-0.003325,0.004749,0.249955,0,0);}
.ma2_c00364{transform:matrix(0.175055,-0.002626,0.003750,0.249972,0,0);-ms-transform:matrix(0.175055,-0.002626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175055,-0.002626,0.003750,0.249972,0,0);}
.m82_c00364{transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);-ms-transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);}
.m3e_c00364{transform:matrix(0.175918,-0.003342,0.004749,0.249955,0,0);-ms-transform:matrix(0.175918,-0.003342,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175918,-0.003342,0.004749,0.249955,0,0);}
.m96_c00364{transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);-ms-transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);}
.m31_c00364{transform:matrix(0.176438,-0.003352,0.004749,0.249955,0,0);-ms-transform:matrix(0.176438,-0.003352,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176438,-0.003352,0.004749,0.249955,0,0);}
.mcb_c00364{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m91_c00364{transform:matrix(0.176945,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176945,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176945,-0.002654,0.003750,0.249972,0,0);}
.mf_c00364{transform:matrix(0.177118,-0.003365,0.004749,0.249955,0,0);-ms-transform:matrix(0.177118,-0.003365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177118,-0.003365,0.004749,0.249955,0,0);}
.m29_c00364{transform:matrix(0.177978,-0.003382,0.004749,0.249955,0,0);-ms-transform:matrix(0.177978,-0.003382,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177978,-0.003382,0.004749,0.249955,0,0);}
.m21_c00364{transform:matrix(0.178353,-0.003389,0.004749,0.249955,0,0);-ms-transform:matrix(0.178353,-0.003389,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178353,-0.003389,0.004749,0.249955,0,0);}
.ma0_c00364{transform:matrix(0.179145,-0.002687,0.003750,0.249972,0,0);-ms-transform:matrix(0.179145,-0.002687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179145,-0.002687,0.003750,0.249972,0,0);}
.md_c00364{transform:matrix(0.180097,-0.003422,0.004749,0.249955,0,0);-ms-transform:matrix(0.180097,-0.003422,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180097,-0.003422,0.004749,0.249955,0,0);}
.m6c_c00364{transform:matrix(0.180410,-0.002706,0.003750,0.249972,0,0);-ms-transform:matrix(0.180410,-0.002706,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180410,-0.002706,0.003750,0.249972,0,0);}
.m35_c00364{transform:matrix(0.180832,-0.003436,0.004749,0.249955,0,0);-ms-transform:matrix(0.180832,-0.003436,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180832,-0.003436,0.004749,0.249955,0,0);}
.mb_c00364{transform:matrix(0.181217,-0.003443,0.004749,0.249955,0,0);-ms-transform:matrix(0.181217,-0.003443,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181217,-0.003443,0.004749,0.249955,0,0);}
.m16_c00364{transform:matrix(0.182112,-0.003460,0.004749,0.249955,0,0);-ms-transform:matrix(0.182112,-0.003460,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182112,-0.003460,0.004749,0.249955,0,0);}
.ma6_c00364{transform:matrix(0.183314,-0.002750,0.003750,0.249972,0,0);-ms-transform:matrix(0.183314,-0.002750,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183314,-0.002750,0.003750,0.249972,0,0);}
.mde_c00364{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m62_c00364{transform:matrix(0.184119,-0.002762,0.003750,0.249972,0,0);-ms-transform:matrix(0.184119,-0.002762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184119,-0.002762,0.003750,0.249972,0,0);}
.m34_c00364{transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184787,-0.003511,0.004749,0.249955,0,0);}
.m3c_c00364{transform:matrix(0.184827,-0.003512,0.004749,0.249955,0,0);-ms-transform:matrix(0.184827,-0.003512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184827,-0.003512,0.004749,0.249955,0,0);}
.ma1_c00364{transform:matrix(0.184984,-0.002775,0.003750,0.249972,0,0);-ms-transform:matrix(0.184984,-0.002775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184984,-0.002775,0.003750,0.249972,0,0);}
.m8e_c00364{transform:matrix(0.185069,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185069,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185069,-0.002776,0.003750,0.249972,0,0);}
.me1_c00364{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m6f_c00364{transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);}
.m47_c00364{transform:matrix(0.187006,-0.003553,0.004749,0.249955,0,0);-ms-transform:matrix(0.187006,-0.003553,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187006,-0.003553,0.004749,0.249955,0,0);}
.m6d_c00364{transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);}
.m76_c00364{transform:matrix(0.187689,-0.002815,0.003750,0.249972,0,0);-ms-transform:matrix(0.187689,-0.002815,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187689,-0.002815,0.003750,0.249972,0,0);}
.m32_c00364{transform:matrix(0.188096,-0.003574,0.004749,0.249955,0,0);-ms-transform:matrix(0.188096,-0.003574,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188096,-0.003574,0.004749,0.249955,0,0);}
.mb5_c00364{transform:matrix(0.188814,-0.002832,0.003750,0.249972,0,0);-ms-transform:matrix(0.188814,-0.002832,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188814,-0.002832,0.003750,0.249972,0,0);}
.m87_c00364{transform:matrix(0.189009,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.189009,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189009,-0.002835,0.003750,0.249972,0,0);}
.m77_c00364{transform:matrix(0.189414,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189414,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189414,-0.002841,0.003750,0.249972,0,0);}
.m6e_c00364{transform:matrix(0.189649,-0.002845,0.003750,0.249972,0,0);-ms-transform:matrix(0.189649,-0.002845,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189649,-0.002845,0.003750,0.249972,0,0);}
.mdb_c00364{transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);}
.m43_c00364{transform:matrix(0.190976,-0.003629,0.004749,0.249955,0,0);-ms-transform:matrix(0.190976,-0.003629,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190976,-0.003629,0.004749,0.249955,0,0);}
.m2f_c00364{transform:matrix(0.191021,-0.003629,0.004749,0.249955,0,0);-ms-transform:matrix(0.191021,-0.003629,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191021,-0.003629,0.004749,0.249955,0,0);}
.m78_c00364{transform:matrix(0.191303,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191303,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191303,-0.002870,0.003750,0.249972,0,0);}
.mba_c00364{transform:matrix(0.191783,-0.002877,0.003750,0.249972,0,0);-ms-transform:matrix(0.191783,-0.002877,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191783,-0.002877,0.003750,0.249972,0,0);}
.mce_c00364{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);-ms-transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192805,-0.003663,0.004749,0.249955,0,0);}
.m3b_c00364{transform:matrix(0.192820,-0.003664,0.004749,0.249955,0,0);-ms-transform:matrix(0.192820,-0.003664,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192820,-0.003664,0.004749,0.249955,0,0);}
.m44_c00364{transform:matrix(0.193400,-0.003675,0.004749,0.249955,0,0);-ms-transform:matrix(0.193400,-0.003675,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193400,-0.003675,0.004749,0.249955,0,0);}
.m28_c00364{transform:matrix(0.193725,-0.003681,0.004749,0.249955,0,0);-ms-transform:matrix(0.193725,-0.003681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193725,-0.003681,0.004749,0.249955,0,0);}
.m70_c00364{transform:matrix(0.194398,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194398,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194398,-0.002916,0.003750,0.249972,0,0);}
.m49_c00364{transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);-ms-transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194555,-0.003697,0.004749,0.249955,0,0);}
.m3f_c00364{transform:matrix(0.194745,-0.003700,0.004749,0.249955,0,0);-ms-transform:matrix(0.194745,-0.003700,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194745,-0.003700,0.004749,0.249955,0,0);}
.me_c00364{transform:matrix(0.195330,-0.003711,0.004749,0.249955,0,0);-ms-transform:matrix(0.195330,-0.003711,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195330,-0.003711,0.004749,0.249955,0,0);}
.md3_c00364{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00364{transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);-ms-transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195368,-0.002931,0.003750,0.249972,0,0);}
.m51_c00364{transform:matrix(0.195450,-0.003714,0.004749,0.249955,0,0);-ms-transform:matrix(0.195450,-0.003714,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195450,-0.003714,0.004749,0.249955,0,0);}
.mb1_c00364{transform:matrix(0.195608,-0.002934,0.003750,0.249972,0,0);-ms-transform:matrix(0.195608,-0.002934,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195608,-0.002934,0.003750,0.249972,0,0);}
.m85_c00364{transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);-ms-transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);}
.md9_c00364{transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);}
.ma4_c00364{transform:matrix(0.196193,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196193,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196193,-0.002943,0.003750,0.249972,0,0);}
.maf_c00364{transform:matrix(0.196203,-0.002943,0.003750,0.249972,0,0);-ms-transform:matrix(0.196203,-0.002943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196203,-0.002943,0.003750,0.249972,0,0);}
.mca_c00364{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.m73_c00364{transform:matrix(0.196438,-0.002947,0.003750,0.249972,0,0);-ms-transform:matrix(0.196438,-0.002947,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196438,-0.002947,0.003750,0.249972,0,0);}
.m72_c00364{transform:matrix(0.196508,-0.002948,0.003750,0.249972,0,0);-ms-transform:matrix(0.196508,-0.002948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196508,-0.002948,0.003750,0.249972,0,0);}
.mdf_c00364{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m66_c00364{transform:matrix(0.196983,-0.002955,0.003750,0.249972,0,0);-ms-transform:matrix(0.196983,-0.002955,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196983,-0.002955,0.003750,0.249972,0,0);}
.m68_c00364{transform:matrix(0.197343,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197343,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197343,-0.002960,0.003750,0.249972,0,0);}
.m22_c00364{transform:matrix(0.197629,-0.003755,0.004749,0.249955,0,0);-ms-transform:matrix(0.197629,-0.003755,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197629,-0.003755,0.004749,0.249955,0,0);}
.m54_c00364{transform:matrix(0.198419,-0.003770,0.004749,0.249955,0,0);-ms-transform:matrix(0.198419,-0.003770,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198419,-0.003770,0.004749,0.249955,0,0);}
.m8c_c00364{transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);-ms-transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198468,-0.002977,0.003750,0.249972,0,0);}
.m36_c00364{transform:matrix(0.198624,-0.003774,0.004749,0.249955,0,0);-ms-transform:matrix(0.198624,-0.003774,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198624,-0.003774,0.004749,0.249955,0,0);}
.m41_c00364{transform:matrix(0.198719,-0.003776,0.004749,0.249955,0,0);-ms-transform:matrix(0.198719,-0.003776,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198719,-0.003776,0.004749,0.249955,0,0);}
.m8b_c00364{transform:matrix(0.199558,-0.002993,0.003750,0.249972,0,0);-ms-transform:matrix(0.199558,-0.002993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199558,-0.002993,0.003750,0.249972,0,0);}
.md4_c00364{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.m84_c00364{transform:matrix(0.200982,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.200982,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200982,-0.003015,0.003750,0.249972,0,0);}
.m52_c00364{transform:matrix(0.201069,-0.003820,0.004749,0.249955,0,0);-ms-transform:matrix(0.201069,-0.003820,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201069,-0.003820,0.004749,0.249955,0,0);}
.m1c_c00364{transform:matrix(0.201689,-0.003832,0.004749,0.249955,0,0);-ms-transform:matrix(0.201689,-0.003832,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201689,-0.003832,0.004749,0.249955,0,0);}
.m4c_c00364{transform:matrix(0.201714,-0.003833,0.004749,0.249955,0,0);-ms-transform:matrix(0.201714,-0.003833,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201714,-0.003833,0.004749,0.249955,0,0);}
.m42_c00364{transform:matrix(0.202114,-0.003840,0.004749,0.249955,0,0);-ms-transform:matrix(0.202114,-0.003840,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202114,-0.003840,0.004749,0.249955,0,0);}
.m83_c00364{transform:matrix(0.202252,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202252,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202252,-0.003034,0.003750,0.249972,0,0);}
.m86_c00364{transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);-ms-transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202787,-0.003042,0.003750,0.249972,0,0);}
.m26_c00364{transform:matrix(0.202973,-0.003856,0.004749,0.249955,0,0);-ms-transform:matrix(0.202973,-0.003856,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202973,-0.003856,0.004749,0.249955,0,0);}
.m93_c00364{transform:matrix(0.203047,-0.003046,0.003750,0.249972,0,0);-ms-transform:matrix(0.203047,-0.003046,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203047,-0.003046,0.003750,0.249972,0,0);}
.m92_c00364{transform:matrix(0.203077,-0.003046,0.003750,0.249972,0,0);-ms-transform:matrix(0.203077,-0.003046,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203077,-0.003046,0.003750,0.249972,0,0);}
.mab_c00364{transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);}
.m94_c00364{transform:matrix(0.203857,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203857,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203857,-0.003058,0.003750,0.249972,0,0);}
.me2_c00364{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.204038,-0.003877,0.004749,0.249955,0,0);-ms-transform:matrix(0.204038,-0.003877,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204038,-0.003877,0.004749,0.249955,0,0);}
.m0_c00364{transform:matrix(0.204593,-0.006138,0.007497,0.249888,0,0);-ms-transform:matrix(0.204593,-0.006138,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204593,-0.006138,0.007497,0.249888,0,0);}
.m88_c00364{transform:matrix(0.205287,-0.003079,0.003750,0.249972,0,0);-ms-transform:matrix(0.205287,-0.003079,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205287,-0.003079,0.003750,0.249972,0,0);}
.m48_c00364{transform:matrix(0.205833,-0.003911,0.004749,0.249955,0,0);-ms-transform:matrix(0.205833,-0.003911,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205833,-0.003911,0.004749,0.249955,0,0);}
.m7f_c00364{transform:matrix(0.205952,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205952,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205952,-0.003089,0.003750,0.249972,0,0);}
.ma8_c00364{transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);}
.m20_c00364{transform:matrix(0.206428,-0.003922,0.004749,0.249955,0,0);-ms-transform:matrix(0.206428,-0.003922,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206428,-0.003922,0.004749,0.249955,0,0);}
.m4_c00364{transform:matrix(0.206433,-0.003922,0.004749,0.249955,0,0);-ms-transform:matrix(0.206433,-0.003922,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206433,-0.003922,0.004749,0.249955,0,0);}
.maa_c00364{transform:matrix(0.206652,-0.003100,0.003750,0.249972,0,0);-ms-transform:matrix(0.206652,-0.003100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206652,-0.003100,0.003750,0.249972,0,0);}
.m61_c00364{transform:matrix(0.207107,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207107,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207107,-0.003107,0.003750,0.249972,0,0);}
.mc0_c00364{transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);}
.md5_c00364{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m95_c00364{transform:matrix(0.208697,-0.003130,0.003750,0.249972,0,0);-ms-transform:matrix(0.208697,-0.003130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208697,-0.003130,0.003750,0.249972,0,0);}
.mdd_c00364{transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);}
.m8a_c00364{transform:matrix(0.208921,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208921,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208921,-0.003134,0.003750,0.249972,0,0);}
.mc8_c00364{transform:matrix(0.209076,-0.003136,0.003750,0.249972,0,0);-ms-transform:matrix(0.209076,-0.003136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209076,-0.003136,0.003750,0.249972,0,0);}
.m9c_c00364{transform:matrix(0.209266,-0.003139,0.003750,0.249972,0,0);-ms-transform:matrix(0.209266,-0.003139,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209266,-0.003139,0.003750,0.249972,0,0);}
.mbb_c00364{transform:matrix(0.209336,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209336,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209336,-0.003140,0.003750,0.249972,0,0);}
.mb3_c00364{transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209436,-0.003142,0.003750,0.249972,0,0);}
.m9f_c00364{transform:matrix(0.209756,-0.003146,0.003750,0.249972,0,0);-ms-transform:matrix(0.209756,-0.003146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209756,-0.003146,0.003750,0.249972,0,0);}
.m12_c00364{transform:matrix(0.210262,-0.003995,0.004749,0.249955,0,0);-ms-transform:matrix(0.210262,-0.003995,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210262,-0.003995,0.004749,0.249955,0,0);}
.m1d_c00364{transform:matrix(0.210457,-0.003999,0.004749,0.249955,0,0);-ms-transform:matrix(0.210457,-0.003999,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210457,-0.003999,0.004749,0.249955,0,0);}
.m7b_c00364{transform:matrix(0.210551,-0.003158,0.003750,0.249972,0,0);-ms-transform:matrix(0.210551,-0.003158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210551,-0.003158,0.003750,0.249972,0,0);}
.m99_c00364{transform:matrix(0.210621,-0.003159,0.003750,0.249972,0,0);-ms-transform:matrix(0.210621,-0.003159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210621,-0.003159,0.003750,0.249972,0,0);}
.m1a_c00364{transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);-ms-transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210792,-0.004005,0.004749,0.249955,0,0);}
.mc3_c00364{transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);}
.m98_c00364{transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211571,-0.003174,0.003750,0.249972,0,0);}
.m33_c00364{transform:matrix(0.211902,-0.004026,0.004749,0.249955,0,0);-ms-transform:matrix(0.211902,-0.004026,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211902,-0.004026,0.004749,0.249955,0,0);}
.m60_c00364{transform:matrix(0.211951,-0.003179,0.003750,0.249972,0,0);-ms-transform:matrix(0.211951,-0.003179,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211951,-0.003179,0.003750,0.249972,0,0);}
.m14_c00364{transform:matrix(0.212242,-0.004033,0.004749,0.249955,0,0);-ms-transform:matrix(0.212242,-0.004033,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212242,-0.004033,0.004749,0.249955,0,0);}
.mb0_c00364{transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213146,-0.003197,0.003750,0.249972,0,0);}
.mb4_c00364{transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);-ms-transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213296,-0.003199,0.003750,0.249972,0,0);}
.ma7_c00364{transform:matrix(0.213676,-0.003205,0.003750,0.249972,0,0);-ms-transform:matrix(0.213676,-0.003205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213676,-0.003205,0.003750,0.249972,0,0);}
.mac_c00364{transform:matrix(0.214076,-0.003211,0.003750,0.249972,0,0);-ms-transform:matrix(0.214076,-0.003211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214076,-0.003211,0.003750,0.249972,0,0);}
.mad_c00364{transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);-ms-transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);}
.m1b_c00364{transform:matrix(0.214476,-0.004075,0.004749,0.249955,0,0);-ms-transform:matrix(0.214476,-0.004075,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214476,-0.004075,0.004749,0.249955,0,0);}
.md1_c00364{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m5e_c00364{transform:matrix(0.215246,-0.003229,0.003750,0.249972,0,0);-ms-transform:matrix(0.215246,-0.003229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215246,-0.003229,0.003750,0.249972,0,0);}
.ma5_c00364{transform:matrix(0.215411,-0.003231,0.003750,0.249972,0,0);-ms-transform:matrix(0.215411,-0.003231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215411,-0.003231,0.003750,0.249972,0,0);}
.m5b_c00364{transform:matrix(0.216166,-0.003242,0.003750,0.249972,0,0);-ms-transform:matrix(0.216166,-0.003242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216166,-0.003242,0.003750,0.249972,0,0);}
.m39_c00364{transform:matrix(0.216326,-0.004110,0.004749,0.249955,0,0);-ms-transform:matrix(0.216326,-0.004110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216326,-0.004110,0.004749,0.249955,0,0);}
.m37_c00364{transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);-ms-transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216356,-0.004111,0.004749,0.249955,0,0);}
.m8d_c00364{transform:matrix(0.216756,-0.003251,0.003750,0.249972,0,0);-ms-transform:matrix(0.216756,-0.003251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216756,-0.003251,0.003750,0.249972,0,0);}
.m63_c00364{transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);-ms-transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);}
.m79_c00364{transform:matrix(0.216891,-0.003253,0.003750,0.249972,0,0);-ms-transform:matrix(0.216891,-0.003253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216891,-0.003253,0.003750,0.249972,0,0);}
.m9b_c00364{transform:matrix(0.217296,-0.003259,0.003750,0.249972,0,0);-ms-transform:matrix(0.217296,-0.003259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217296,-0.003259,0.003750,0.249972,0,0);}
.m19_c00364{transform:matrix(0.218196,-0.004146,0.004749,0.249955,0,0);-ms-transform:matrix(0.218196,-0.004146,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218196,-0.004146,0.004749,0.249955,0,0);}
.m7a_c00364{transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);-ms-transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);}
.md6_c00364{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00364{transform:matrix(0.221040,-0.003316,0.003750,0.249972,0,0);-ms-transform:matrix(0.221040,-0.003316,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221040,-0.003316,0.003750,0.249972,0,0);}
.m5a_c00364{transform:matrix(0.221400,-0.003321,0.003750,0.249972,0,0);-ms-transform:matrix(0.221400,-0.003321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221400,-0.003321,0.003750,0.249972,0,0);}
.mbe_c00364{transform:matrix(0.222130,-0.003332,0.003750,0.249972,0,0);-ms-transform:matrix(0.222130,-0.003332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222130,-0.003332,0.003750,0.249972,0,0);}
.m1e_c00364{transform:matrix(0.222705,-0.004231,0.004749,0.249955,0,0);-ms-transform:matrix(0.222705,-0.004231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222705,-0.004231,0.004749,0.249955,0,0);}
.mc4_c00364{transform:matrix(0.223675,-0.003355,0.003750,0.249972,0,0);-ms-transform:matrix(0.223675,-0.003355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223675,-0.003355,0.003750,0.249972,0,0);}
.m11_c00364{transform:matrix(0.226009,-0.004294,0.004749,0.249955,0,0);-ms-transform:matrix(0.226009,-0.004294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226009,-0.004294,0.004749,0.249955,0,0);}
.m18_c00364{transform:matrix(0.226164,-0.004297,0.004749,0.249955,0,0);-ms-transform:matrix(0.226164,-0.004297,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226164,-0.004297,0.004749,0.249955,0,0);}
.m67_c00364{transform:matrix(0.226889,-0.003403,0.003750,0.249972,0,0);-ms-transform:matrix(0.226889,-0.003403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226889,-0.003403,0.003750,0.249972,0,0);}
.mbd_c00364{transform:matrix(0.227294,-0.003409,0.003750,0.249972,0,0);-ms-transform:matrix(0.227294,-0.003409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227294,-0.003409,0.003750,0.249972,0,0);}
.m64_c00364{transform:matrix(0.227929,-0.003419,0.003750,0.249972,0,0);-ms-transform:matrix(0.227929,-0.003419,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227929,-0.003419,0.003750,0.249972,0,0);}
.m3a_c00364{transform:matrix(0.228554,-0.004343,0.004749,0.249955,0,0);-ms-transform:matrix(0.228554,-0.004343,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228554,-0.004343,0.004749,0.249955,0,0);}
.m89_c00364{transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);-ms-transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228694,-0.003430,0.003750,0.249972,0,0);}
.md2_c00364{transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);}
.mb9_c00364{transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);-ms-transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228849,-0.003433,0.003750,0.249972,0,0);}
.m17_c00364{transform:matrix(0.231133,-0.004392,0.004749,0.249955,0,0);-ms-transform:matrix(0.231133,-0.004392,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231133,-0.004392,0.004749,0.249955,0,0);}
.mbc_c00364{transform:matrix(0.232219,-0.003483,0.003750,0.249972,0,0);-ms-transform:matrix(0.232219,-0.003483,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232219,-0.003483,0.003750,0.249972,0,0);}
.mbf_c00364{transform:matrix(0.232284,-0.003484,0.003750,0.249972,0,0);-ms-transform:matrix(0.232284,-0.003484,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232284,-0.003484,0.003750,0.249972,0,0);}
.m27_c00364{transform:matrix(0.232858,-0.004424,0.004749,0.249955,0,0);-ms-transform:matrix(0.232858,-0.004424,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232858,-0.004424,0.004749,0.249955,0,0);}
.mc5_c00364{transform:matrix(0.233474,-0.003502,0.003750,0.249972,0,0);-ms-transform:matrix(0.233474,-0.003502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233474,-0.003502,0.003750,0.249972,0,0);}
.mda_c00364{transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);}
.m80_c00364{transform:matrix(0.234239,-0.003514,0.003750,0.249972,0,0);-ms-transform:matrix(0.234239,-0.003514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234239,-0.003514,0.003750,0.249972,0,0);}
.mc9_c00364{transform:matrix(0.234744,-0.003521,0.003750,0.249972,0,0);-ms-transform:matrix(0.234744,-0.003521,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234744,-0.003521,0.003750,0.249972,0,0);}
.m25_c00364{transform:matrix(0.235722,-0.004479,0.004749,0.249955,0,0);-ms-transform:matrix(0.235722,-0.004479,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235722,-0.004479,0.004749,0.249955,0,0);}
.mb8_c00364{transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);-ms-transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);}
.m7c_c00364{transform:matrix(0.235903,-0.003539,0.003750,0.249972,0,0);-ms-transform:matrix(0.235903,-0.003539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235903,-0.003539,0.003750,0.249972,0,0);}
.m5f_c00364{transform:matrix(0.236023,-0.003540,0.003750,0.249972,0,0);-ms-transform:matrix(0.236023,-0.003540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236023,-0.003540,0.003750,0.249972,0,0);}
.mc7_c00364{transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);-ms-transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);}
.m23_c00364{transform:matrix(0.236237,-0.004489,0.004749,0.249955,0,0);-ms-transform:matrix(0.236237,-0.004489,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236237,-0.004489,0.004749,0.249955,0,0);}
.m6a_c00364{transform:matrix(0.237578,-0.003564,0.003750,0.249972,0,0);-ms-transform:matrix(0.237578,-0.003564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237578,-0.003564,0.003750,0.249972,0,0);}
.md0_c00364{transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00364{transform:matrix(0.238528,-0.003578,0.003750,0.249972,0,0);-ms-transform:matrix(0.238528,-0.003578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238528,-0.003578,0.003750,0.249972,0,0);}
.m38_c00364{transform:matrix(0.238652,-0.004534,0.004749,0.249955,0,0);-ms-transform:matrix(0.238652,-0.004534,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238652,-0.004534,0.004749,0.249955,0,0);}
.m65_c00364{transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);-ms-transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);}
.ma3_c00364{transform:matrix(0.239978,-0.003600,0.003750,0.249972,0,0);-ms-transform:matrix(0.239978,-0.003600,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239978,-0.003600,0.003750,0.249972,0,0);}
.m7d_c00364{transform:matrix(0.242273,-0.003634,0.003750,0.249972,0,0);-ms-transform:matrix(0.242273,-0.003634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242273,-0.003634,0.003750,0.249972,0,0);}
.m55_c00364{transform:matrix(0.242971,-0.004616,0.004749,0.249955,0,0);-ms-transform:matrix(0.242971,-0.004616,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242971,-0.004616,0.004749,0.249955,0,0);}
.m5d_c00364{transform:matrix(0.247097,-0.003706,0.003750,0.249972,0,0);-ms-transform:matrix(0.247097,-0.003706,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247097,-0.003706,0.003750,0.249972,0,0);}
.m4a_c00364{transform:matrix(0.250165,-0.004753,0.004749,0.249955,0,0);-ms-transform:matrix(0.250165,-0.004753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250165,-0.004753,0.004749,0.249955,0,0);}
.mb7_c00364{transform:matrix(0.251562,-0.003773,0.003750,0.249972,0,0);-ms-transform:matrix(0.251562,-0.003773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251562,-0.003773,0.003750,0.249972,0,0);}
.m9a_c00364{transform:matrix(0.259936,-0.003899,0.003750,0.249972,0,0);-ms-transform:matrix(0.259936,-0.003899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259936,-0.003899,0.003750,0.249972,0,0);}
.m90_c00364{transform:matrix(0.264870,-0.003973,0.003750,0.249972,0,0);-ms-transform:matrix(0.264870,-0.003973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264870,-0.003973,0.003750,0.249972,0,0);}
.m24_c00364{transform:matrix(0.265277,-0.005040,0.004749,0.249955,0,0);-ms-transform:matrix(0.265277,-0.005040,0.004749,0.249955,0,0);-webkit-transform:matrix(0.265277,-0.005040,0.004749,0.249955,0,0);}
.m58_c00364{transform:matrix(0.269275,-0.004039,0.003750,0.249972,0,0);-ms-transform:matrix(0.269275,-0.004039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269275,-0.004039,0.003750,0.249972,0,0);}
.m7e_c00364{transform:matrix(0.270730,-0.004061,0.003750,0.249972,0,0);-ms-transform:matrix(0.270730,-0.004061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270730,-0.004061,0.003750,0.249972,0,0);}
.m4b_c00364{transform:matrix(0.275140,-0.005228,0.004749,0.249955,0,0);-ms-transform:matrix(0.275140,-0.005228,0.004749,0.249955,0,0);-webkit-transform:matrix(0.275140,-0.005228,0.004749,0.249955,0,0);}
.m5c_c00364{transform:matrix(0.279084,-0.004186,0.003750,0.249972,0,0);-ms-transform:matrix(0.279084,-0.004186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279084,-0.004186,0.003750,0.249972,0,0);}
.mae_c00364{transform:matrix(0.288997,-0.004335,0.003750,0.249972,0,0);-ms-transform:matrix(0.288997,-0.004335,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288997,-0.004335,0.003750,0.249972,0,0);}
.m8f_c00364{transform:matrix(0.296562,-0.004448,0.003750,0.249972,0,0);-ms-transform:matrix(0.296562,-0.004448,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296562,-0.004448,0.003750,0.249972,0,0);}
.m4f_c00364{transform:matrix(0.308819,-0.005868,0.004749,0.249955,0,0);-ms-transform:matrix(0.308819,-0.005868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.308819,-0.005868,0.004749,0.249955,0,0);}
.m6b_c00364{transform:matrix(0.315899,-0.004738,0.003750,0.249972,0,0);-ms-transform:matrix(0.315899,-0.004738,0.003750,0.249972,0,0);-webkit-transform:matrix(0.315899,-0.004738,0.003750,0.249972,0,0);}
.m56_c00364{transform:matrix(0.343308,-0.006523,0.004749,0.249955,0,0);-ms-transform:matrix(0.343308,-0.006523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.343308,-0.006523,0.004749,0.249955,0,0);}
.md8_c00364{transform:matrix(0.471570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471570,0.000000,0.000000,0.250000,0,0);}
.m50_c00364{transform:matrix(0.749560,-0.014242,0.004749,0.249955,0,0);-ms-transform:matrix(0.749560,-0.014242,0.004749,0.249955,0,0);-webkit-transform:matrix(0.749560,-0.014242,0.004749,0.249955,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:0.000000px;}
.fc0_c00364{color:transparent;}
.fsb_c00364{font-size:54.606142px;}
.fs15_c00364{font-size:55.656260px;}
.fsc_c00364{font-size:57.756497px;}
.fs7_c00364{font-size:57.760423px;}
.fs12_c00364{font-size:58.806615px;}
.fsf_c00364{font-size:59.856733px;}
.fs3_c00364{font-size:59.860802px;}
.fs17_c00364{font-size:60.900000px;}
.fs10_c00364{font-size:60.906851px;}
.fs11_c00364{font-size:61.956969px;}
.fs4_c00364{font-size:61.961181px;}
.fs0_c00364{font-size:61.977871px;}
.fs18_c00364{font-size:63.000000px;}
.fs14_c00364{font-size:63.007087px;}
.fsd_c00364{font-size:64.057205px;}
.fs6_c00364{font-size:64.061560px;}
.fs16_c00364{font-size:65.100000px;}
.fs9_c00364{font-size:65.111749px;}
.fsa_c00364{font-size:66.161939px;}
.fs13_c00364{font-size:67.207560px;}
.fse_c00364{font-size:68.257678px;}
.fs8_c00364{font-size:69.312508px;}
.fs2_c00364{font-size:70.362697px;}
.fs5_c00364{font-size:71.412887px;}
.fs1_c00364{font-size:74.563455px;}
.y0_c00364{bottom:0.000000px;}
.yd0_c00364{bottom:24.303000px;}
.yd1_c00364{bottom:25.009500px;}
.yd2_c00364{bottom:25.161000px;}
.yd3_c00364{bottom:25.524000px;}
.yd4_c00364{bottom:26.181000px;}
.yd5_c00364{bottom:27.966000px;}
.yd6_c00364{bottom:28.348500px;}
.ycf_c00364{bottom:45.559500px;}
.yce_c00364{bottom:61.680000px;}
.ycd_c00364{bottom:78.735000px;}
.yc9_c00364{bottom:96.283155px;}
.ycc_c00364{bottom:96.283208px;}
.yca_c00364{bottom:96.283560px;}
.yc7_c00364{bottom:96.283613px;}
.yc8_c00364{bottom:96.283650px;}
.ycb_c00364{bottom:96.283748px;}
.yc5_c00364{bottom:112.664243px;}
.yc6_c00364{bottom:112.664580px;}
.yc4_c00364{bottom:112.664655px;}
.yc0_c00364{bottom:112.664775px;}
.yc3_c00364{bottom:112.664850px;}
.yc2_c00364{bottom:112.665263px;}
.yc1_c00364{bottom:112.665435px;}
.yb8_c00364{bottom:126.872505px;}
.yb9_c00364{bottom:127.125720px;}
.yba_c00364{bottom:127.472393px;}
.ybb_c00364{bottom:128.239328px;}
.ybc_c00364{bottom:128.452230px;}
.ybd_c00364{bottom:129.427118px;}
.ybe_c00364{bottom:129.717990px;}
.ybf_c00364{bottom:130.047893px;}
.yb7_c00364{bottom:147.948757px;}
.yb6_c00364{bottom:147.948870px;}
.yb5_c00364{bottom:147.949043px;}
.yb4_c00364{bottom:147.949560px;}
.yb3_c00364{bottom:147.950182px;}
.yb2_c00364{bottom:147.950873px;}
.yaa_c00364{bottom:161.441235px;}
.yab_c00364{bottom:161.920073px;}
.yac_c00364{bottom:162.308633px;}
.yad_c00364{bottom:163.193873px;}
.yae_c00364{bottom:163.499625px;}
.yaf_c00364{bottom:164.413905px;}
.yb0_c00364{bottom:164.865893px;}
.yb1_c00364{bottom:164.995830px;}
.ya5_c00364{bottom:178.721700px;}
.ya6_c00364{bottom:179.666168px;}
.ya7_c00364{bottom:180.362355px;}
.ya8_c00364{bottom:181.104458px;}
.ya9_c00364{bottom:181.295768px;}
.y9f_c00364{bottom:196.002128px;}
.ya0_c00364{bottom:196.285125px;}
.ya1_c00364{bottom:196.879125px;}
.ya2_c00364{bottom:197.657348px;}
.ya3_c00364{bottom:197.957752px;}
.ya4_c00364{bottom:198.707100px;}
.y9d_c00364{bottom:214.200735px;}
.y9e_c00364{bottom:214.200817px;}
.y9c_c00364{bottom:214.200952px;}
.y9b_c00364{bottom:214.201665px;}
.y9a_c00364{bottom:214.202310px;}
.y99_c00364{bottom:214.202805px;}
.y97_c00364{bottom:214.202918px;}
.y98_c00364{bottom:214.203278px;}
.y90_c00364{bottom:232.043445px;}
.y91_c00364{bottom:232.043655px;}
.y92_c00364{bottom:232.044083px;}
.y93_c00364{bottom:232.044188px;}
.y96_c00364{bottom:232.044773px;}
.y94_c00364{bottom:232.044848px;}
.y95_c00364{bottom:232.045140px;}
.y88_c00364{bottom:246.500490px;}
.y89_c00364{bottom:247.149285px;}
.y8a_c00364{bottom:247.952700px;}
.y8b_c00364{bottom:248.125298px;}
.y8c_c00364{bottom:249.036465px;}
.y8d_c00364{bottom:249.388478px;}
.y8e_c00364{bottom:250.023690px;}
.y8f_c00364{bottom:250.195343px;}
.y7f_c00364{bottom:264.323048px;}
.y80_c00364{bottom:264.618292px;}
.y81_c00364{bottom:265.528417px;}
.y82_c00364{bottom:265.731008px;}
.y83_c00364{bottom:266.007600px;}
.y84_c00364{bottom:266.642528px;}
.y85_c00364{bottom:267.190380px;}
.y86_c00364{bottom:267.809040px;}
.y87_c00364{bottom:268.251480px;}
.y79_c00364{bottom:281.873783px;}
.y7a_c00364{bottom:282.651585px;}
.y7b_c00364{bottom:283.265048px;}
.y7c_c00364{bottom:283.709010px;}
.y7d_c00364{bottom:284.265323px;}
.y7e_c00364{bottom:284.845403px;}
.y71_c00364{bottom:298.886423px;}
.y72_c00364{bottom:299.271128px;}
.y73_c00364{bottom:299.830140px;}
.y74_c00364{bottom:300.145995px;}
.y75_c00364{bottom:301.020885px;}
.y76_c00364{bottom:301.409753px;}
.y77_c00364{bottom:302.098590px;}
.y78_c00364{bottom:303.224063px;}
.y69_c00364{bottom:316.437705px;}
.y6a_c00364{bottom:317.158830px;}
.y6b_c00364{bottom:317.657047px;}
.y6c_c00364{bottom:318.673732px;}
.y6d_c00364{bottom:318.862957px;}
.y6e_c00364{bottom:319.175145px;}
.y6f_c00364{bottom:319.682542px;}
.y70_c00364{bottom:320.475397px;}
.y61_c00364{bottom:332.370203px;}
.y62_c00364{bottom:333.223920px;}
.y63_c00364{bottom:333.811958px;}
.y64_c00364{bottom:334.148130px;}
.y65_c00364{bottom:334.532947px;}
.y66_c00364{bottom:335.379555px;}
.y67_c00364{bottom:335.554290px;}
.y68_c00364{bottom:336.267067px;}
.y59_c00364{bottom:348.303000px;}
.y5a_c00364{bottom:348.629318px;}
.y5b_c00364{bottom:348.877313px;}
.y5c_c00364{bottom:349.233623px;}
.y5d_c00364{bottom:349.845397px;}
.y5e_c00364{bottom:351.052770px;}
.y5f_c00364{bottom:351.793965px;}
.y60_c00364{bottom:351.996623px;}
.y52_c00364{bottom:365.010774px;}
.y53_c00364{bottom:365.290197px;}
.y54_c00364{bottom:366.013367px;}
.y55_c00364{bottom:366.486617px;}
.y56_c00364{bottom:367.228353px;}
.y57_c00364{bottom:367.572839px;}
.y58_c00364{bottom:368.712977px;}
.y4d_c00364{bottom:381.483120px;}
.y4e_c00364{bottom:382.831833px;}
.y4f_c00364{bottom:383.112350px;}
.y50_c00364{bottom:384.374202px;}
.y51_c00364{bottom:385.021857px;}
.y44_c00364{bottom:397.686273px;}
.y45_c00364{bottom:398.522120px;}
.y46_c00364{bottom:398.746717px;}
.y47_c00364{bottom:399.031037px;}
.y48_c00364{bottom:399.706843px;}
.y49_c00364{bottom:400.315452px;}
.y4a_c00364{bottom:400.508555px;}
.y4b_c00364{bottom:401.263512px;}
.y4c_c00364{bottom:402.447695px;}
.y3c_c00364{bottom:415.240227px;}
.y3d_c00364{bottom:415.445285px;}
.y3e_c00364{bottom:415.886293px;}
.y3f_c00364{bottom:416.917424px;}
.y40_c00364{bottom:417.302687px;}
.y41_c00364{bottom:418.477257px;}
.y42_c00364{bottom:418.759835px;}
.y43_c00364{bottom:420.338507px;}
.y36_c00364{bottom:432.521511px;}
.y37_c00364{bottom:433.169255px;}
.y38_c00364{bottom:434.330454px;}
.y39_c00364{bottom:434.675412px;}
.y3a_c00364{bottom:435.735708px;}
.y3b_c00364{bottom:436.937074px;}
.y2f_c00364{bottom:448.728435px;}
.y30_c00364{bottom:449.193615px;}
.y31_c00364{bottom:450.970109px;}
.y32_c00364{bottom:451.447875px;}
.y33_c00364{bottom:452.261190px;}
.y34_c00364{bottom:453.820548px;}
.y35_c00364{bottom:455.224571px;}
.y29_c00364{bottom:466.282590px;}
.y2a_c00364{bottom:467.767182px;}
.y2b_c00364{bottom:469.482056px;}
.y2c_c00364{bottom:470.180150px;}
.y2d_c00364{bottom:470.552462px;}
.y2e_c00364{bottom:471.582266px;}
.y22_c00364{bottom:483.024407px;}
.y23_c00364{bottom:483.527894px;}
.y24_c00364{bottom:484.017512px;}
.y25_c00364{bottom:485.022718px;}
.y26_c00364{bottom:486.877941px;}
.y27_c00364{bottom:487.381970px;}
.y28_c00364{bottom:488.879018px;}
.y1a_c00364{bottom:499.767510px;}
.y1b_c00364{bottom:501.144116px;}
.y1c_c00364{bottom:501.406394px;}
.y1d_c00364{bottom:502.722839px;}
.y1e_c00364{bottom:503.143187px;}
.y1f_c00364{bottom:504.513038px;}
.y20_c00364{bottom:504.810492px;}
.y21_c00364{bottom:505.131876px;}
.y14_c00364{bottom:517.322559px;}
.y15_c00364{bottom:518.720214px;}
.y16_c00364{bottom:520.309944px;}
.y17_c00364{bottom:521.072220px;}
.y18_c00364{bottom:522.209366px;}
.y19_c00364{bottom:524.305754px;}
.yb_c00364{bottom:533.793189px;}
.yc_c00364{bottom:534.449316px;}
.yd_c00364{bottom:534.875135px;}
.ye_c00364{bottom:535.224288px;}
.yf_c00364{bottom:536.081426px;}
.y10_c00364{bottom:537.107141px;}
.y11_c00364{bottom:537.747992px;}
.y12_c00364{bottom:538.609575px;}
.y13_c00364{bottom:538.912388px;}
.y3_c00364{bottom:551.076000px;}
.y4_c00364{bottom:551.419254px;}
.y5_c00364{bottom:552.547455px;}
.y6_c00364{bottom:552.782609px;}
.y7_c00364{bottom:553.451133px;}
.y8_c00364{bottom:554.333721px;}
.y9_c00364{bottom:555.604964px;}
.ya_c00364{bottom:556.092314px;}
.y1_c00364{bottom:567.015000px;}
.y2_c00364{bottom:570.227865px;}
.hd_c00364{height:54.606142px;}
.h17_c00364{height:55.656260px;}
.he_c00364{height:57.756497px;}
.h9_c00364{height:57.760423px;}
.h14_c00364{height:58.806615px;}
.h11_c00364{height:59.856733px;}
.h5_c00364{height:59.860802px;}
.h19_c00364{height:60.900000px;}
.h12_c00364{height:60.906851px;}
.h13_c00364{height:61.956969px;}
.h6_c00364{height:61.961181px;}
.h2_c00364{height:61.977871px;}
.h1a_c00364{height:63.000000px;}
.h16_c00364{height:63.007087px;}
.hf_c00364{height:64.057205px;}
.h8_c00364{height:64.061560px;}
.h18_c00364{height:65.100000px;}
.hb_c00364{height:65.111749px;}
.hc_c00364{height:66.161939px;}
.h15_c00364{height:67.207560px;}
.h10_c00364{height:68.257678px;}
.ha_c00364{height:69.312508px;}
.h4_c00364{height:70.362697px;}
.h7_c00364{height:71.412887px;}
.h3_c00364{height:74.563455px;}
.h0_c00364{height:613.170000px;}
.h1_c00364{height:613.500000px;}
.w0_c00364{width:359.100000px;}
.w1_c00364{width:359.250000px;}
.x0_c00364{left:0.000000px;}
.x16_c00364{left:12.142995px;}
.x62_c00364{left:17.053072px;}
.x3_c00364{left:21.882000px;}
.x56_c00364{left:23.123985px;}
.x6b_c00364{left:24.519315px;}
.x60_c00364{left:27.537832px;}
.x65_c00364{left:31.784535px;}
.x2f_c00364{left:33.187633px;}
.x4_c00364{left:39.948000px;}
.x27_c00364{left:42.409474px;}
.x3d_c00364{left:43.585500px;}
.x1d_c00364{left:45.509977px;}
.x49_c00364{left:47.980695px;}
.xa_c00364{left:56.674348px;}
.x3e_c00364{left:60.118500px;}
.x3b_c00364{left:65.989573px;}
.x6c_c00364{left:67.412467px;}
.x1e_c00364{left:68.831094px;}
.x33_c00364{left:71.487879px;}
.x57_c00364{left:73.078492px;}
.x12_c00364{left:75.922039px;}
.x17_c00364{left:77.725015px;}
.xb_c00364{left:79.085848px;}
.x61_c00364{left:81.273915px;}
.x34_c00364{left:84.730392px;}
.x4f_c00364{left:86.769158px;}
.x18_c00364{left:90.186531px;}
.x66_c00364{left:93.811980px;}
.x23_c00364{left:95.868996px;}
.xc_c00364{left:97.462348px;}
.x5_c00364{left:99.327000px;}
.x35_c00364{left:101.432019px;}
.x52_c00364{left:102.985095px;}
.x4a_c00364{left:106.305195px;}
.x30_c00364{left:110.668633px;}
.x6_c00364{left:111.703500px;}
.x1f_c00364{left:116.682270px;}
.x41_c00364{left:117.900427px;}
.x28_c00364{left:119.640103px;}
.x2d_c00364{left:122.001495px;}
.x3f_c00364{left:124.657500px;}
.x77_c00364{left:128.178000px;}
.x70_c00364{left:129.611692px;}
.x31_c00364{left:130.945633px;}
.x53_c00364{left:134.930595px;}
.x13_c00364{left:137.083917px;}
.x3a_c00364{left:138.974913px;}
.x29_c00364{left:140.442036px;}
.xd_c00364{left:142.574848px;}
.x69_c00364{left:144.732780px;}
.x7_c00364{left:146.889000px;}
.x58_c00364{left:148.148242px;}
.x1_c00364{left:152.241000px;}
.x63_c00364{left:153.736215px;}
.x67_c00364{left:157.028925px;}
.x6e_c00364{left:159.585765px;}
.x6a_c00364{left:162.825352px;}
.x4b_c00364{left:164.631195px;}
.x14_c00364{left:166.384012px;}
.x45_c00364{left:170.024175px;}
.x19_c00364{left:172.830367px;}
.x5d_c00364{left:174.165247px;}
.x2a_c00364{left:175.824357px;}
.x36_c00364{left:177.009397px;}
.x68_c00364{left:178.912762px;}
.x6f_c00364{left:180.377445px;}
.x24_c00364{left:181.623871px;}
.x46_c00364{left:182.639175px;}
.x74_c00364{left:184.680000px;}
.x72_c00364{left:186.030000px;}
.x37_c00364{left:188.357325px;}
.x4c_c00364{left:190.555695px;}
.x8_c00364{left:193.341000px;}
.xe_c00364{left:196.559848px;}
.x2e_c00364{left:200.068977px;}
.x47_c00364{left:203.451675px;}
.x20_c00364{left:205.006407px;}
.x75_c00364{left:206.010000px;}
.x32_c00364{left:207.637633px;}
.x15_c00364{left:210.122698px;}
.x54_c00364{left:213.782595px;}
.x25_c00364{left:216.549216px;}
.x59_c00364{left:218.294857px;}
.x50_c00364{left:221.257710px;}
.x42_c00364{left:222.406927px;}
.x71_c00364{left:225.472747px;}
.x6d_c00364{left:227.721352px;}
.x21_c00364{left:229.006995px;}
.xf_c00364{left:230.288848px;}
.x64_c00364{left:231.567225px;}
.x38_c00364{left:232.751506px;}
.x43_c00364{left:234.055927px;}
.x26_c00364{left:235.196874px;}
.x4d_c00364{left:236.478195px;}
.x1a_c00364{left:238.056888px;}
.x2b_c00364{left:243.601198px;}
.x5a_c00364{left:245.363167px;}
.x1b_c00364{left:252.211846px;}
.x40_c00364{left:254.562000px;}
.x2_c00364{left:259.336500px;}
.x5e_c00364{left:263.004727px;}
.x1c_c00364{left:267.547276px;}
.x51_c00364{left:269.631892px;}
.x78_c00364{left:271.762500px;}
.x10_c00364{left:275.635348px;}
.x44_c00364{left:281.574428px;}
.x55_c00364{left:284.522595px;}
.x9_c00364{left:285.898500px;}
.x76_c00364{left:288.900000px;}
.x48_c00364{left:290.135175px;}
.x11_c00364{left:291.572848px;}
.x5b_c00364{left:294.212130px;}
.x5f_c00364{left:296.487765px;}
.x22_c00364{left:300.296287px;}
.x39_c00364{left:302.421657px;}
.x2c_c00364{left:304.624053px;}
.x5c_c00364{left:307.456035px;}
.x3c_c00364{left:310.343244px;}
.x4e_c00364{left:311.509695px;}
.x73_c00364{left:313.470000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.fsb_c00364{font-size:48.538793pt;}
.fs15_c00364{font-size:49.472231pt;}
.fsc_c00364{font-size:51.339108pt;}
.fs7_c00364{font-size:51.342598pt;}
.fs12_c00364{font-size:52.272546pt;}
.fsf_c00364{font-size:53.205985pt;}
.fs3_c00364{font-size:53.209602pt;}
.fs17_c00364{font-size:54.133333pt;}
.fs10_c00364{font-size:54.139423pt;}
.fs11_c00364{font-size:55.072861pt;}
.fs4_c00364{font-size:55.076605pt;}
.fs0_c00364{font-size:55.091441pt;}
.fs18_c00364{font-size:56.000000pt;}
.fs14_c00364{font-size:56.006300pt;}
.fsd_c00364{font-size:56.939738pt;}
.fs6_c00364{font-size:56.943609pt;}
.fs16_c00364{font-size:57.866667pt;}
.fs9_c00364{font-size:57.877111pt;}
.fsa_c00364{font-size:58.810612pt;}
.fs13_c00364{font-size:59.740053pt;}
.fse_c00364{font-size:60.673491pt;}
.fs8_c00364{font-size:61.611118pt;}
.fs2_c00364{font-size:62.544620pt;}
.fs5_c00364{font-size:63.478121pt;}
.fs1_c00364{font-size:66.278627pt;}
.y0_c00364{bottom:0.000000pt;}
.yd0_c00364{bottom:21.602667pt;}
.yd1_c00364{bottom:22.230667pt;}
.yd2_c00364{bottom:22.365333pt;}
.yd3_c00364{bottom:22.688000pt;}
.yd4_c00364{bottom:23.272000pt;}
.yd5_c00364{bottom:24.858667pt;}
.yd6_c00364{bottom:25.198667pt;}
.ycf_c00364{bottom:40.497333pt;}
.yce_c00364{bottom:54.826667pt;}
.ycd_c00364{bottom:69.986667pt;}
.yc9_c00364{bottom:85.585027pt;}
.ycc_c00364{bottom:85.585073pt;}
.yca_c00364{bottom:85.585387pt;}
.yc7_c00364{bottom:85.585433pt;}
.yc8_c00364{bottom:85.585467pt;}
.ycb_c00364{bottom:85.585553pt;}
.yc5_c00364{bottom:100.145993pt;}
.yc6_c00364{bottom:100.146293pt;}
.yc4_c00364{bottom:100.146360pt;}
.yc0_c00364{bottom:100.146467pt;}
.yc3_c00364{bottom:100.146533pt;}
.yc2_c00364{bottom:100.146900pt;}
.yc1_c00364{bottom:100.147053pt;}
.yb8_c00364{bottom:112.775560pt;}
.yb9_c00364{bottom:113.000640pt;}
.yba_c00364{bottom:113.308793pt;}
.ybb_c00364{bottom:113.990513pt;}
.ybc_c00364{bottom:114.179760pt;}
.ybd_c00364{bottom:115.046327pt;}
.ybe_c00364{bottom:115.304880pt;}
.ybf_c00364{bottom:115.598127pt;}
.yb7_c00364{bottom:131.510007pt;}
.yb6_c00364{bottom:131.510107pt;}
.yb5_c00364{bottom:131.510260pt;}
.yb4_c00364{bottom:131.510720pt;}
.yb3_c00364{bottom:131.511273pt;}
.yb2_c00364{bottom:131.511887pt;}
.yaa_c00364{bottom:143.503320pt;}
.yab_c00364{bottom:143.928953pt;}
.yac_c00364{bottom:144.274340pt;}
.yad_c00364{bottom:145.061220pt;}
.yae_c00364{bottom:145.333000pt;}
.yaf_c00364{bottom:146.145693pt;}
.yb0_c00364{bottom:146.547460pt;}
.yb1_c00364{bottom:146.662960pt;}
.ya5_c00364{bottom:158.863733pt;}
.ya6_c00364{bottom:159.703260pt;}
.ya7_c00364{bottom:160.322093pt;}
.ya8_c00364{bottom:160.981740pt;}
.ya9_c00364{bottom:161.151793pt;}
.y9f_c00364{bottom:174.224113pt;}
.ya0_c00364{bottom:174.475667pt;}
.ya1_c00364{bottom:175.003667pt;}
.ya2_c00364{bottom:175.695420pt;}
.ya3_c00364{bottom:175.962447pt;}
.ya4_c00364{bottom:176.628533pt;}
.y9d_c00364{bottom:190.400653pt;}
.y9e_c00364{bottom:190.400727pt;}
.y9c_c00364{bottom:190.400847pt;}
.y9b_c00364{bottom:190.401480pt;}
.y9a_c00364{bottom:190.402053pt;}
.y99_c00364{bottom:190.402493pt;}
.y97_c00364{bottom:190.402593pt;}
.y98_c00364{bottom:190.402913pt;}
.y90_c00364{bottom:206.260840pt;}
.y91_c00364{bottom:206.261027pt;}
.y92_c00364{bottom:206.261407pt;}
.y93_c00364{bottom:206.261500pt;}
.y96_c00364{bottom:206.262020pt;}
.y94_c00364{bottom:206.262087pt;}
.y95_c00364{bottom:206.262347pt;}
.y88_c00364{bottom:219.111547pt;}
.y89_c00364{bottom:219.688253pt;}
.y8a_c00364{bottom:220.402400pt;}
.y8b_c00364{bottom:220.555820pt;}
.y8c_c00364{bottom:221.365747pt;}
.y8d_c00364{bottom:221.678647pt;}
.y8e_c00364{bottom:222.243280pt;}
.y8f_c00364{bottom:222.395860pt;}
.y7f_c00364{bottom:234.953820pt;}
.y80_c00364{bottom:235.216260pt;}
.y81_c00364{bottom:236.025260pt;}
.y82_c00364{bottom:236.205340pt;}
.y83_c00364{bottom:236.451200pt;}
.y84_c00364{bottom:237.015580pt;}
.y85_c00364{bottom:237.502560pt;}
.y86_c00364{bottom:238.052480pt;}
.y87_c00364{bottom:238.445760pt;}
.y79_c00364{bottom:250.554473pt;}
.y7a_c00364{bottom:251.245853pt;}
.y7b_c00364{bottom:251.791153pt;}
.y7c_c00364{bottom:252.185787pt;}
.y7d_c00364{bottom:252.680287pt;}
.y7e_c00364{bottom:253.195913pt;}
.y71_c00364{bottom:265.676820pt;}
.y72_c00364{bottom:266.018780pt;}
.y73_c00364{bottom:266.515680pt;}
.y74_c00364{bottom:266.796440pt;}
.y75_c00364{bottom:267.574120pt;}
.y76_c00364{bottom:267.919780pt;}
.y77_c00364{bottom:268.532080pt;}
.y78_c00364{bottom:269.532500pt;}
.y69_c00364{bottom:281.277960pt;}
.y6a_c00364{bottom:281.918960pt;}
.y6b_c00364{bottom:282.361820pt;}
.y6c_c00364{bottom:283.265540pt;}
.y6d_c00364{bottom:283.433740pt;}
.y6e_c00364{bottom:283.711240pt;}
.y6f_c00364{bottom:284.162260pt;}
.y70_c00364{bottom:284.867020pt;}
.y61_c00364{bottom:295.440180pt;}
.y62_c00364{bottom:296.199040pt;}
.y63_c00364{bottom:296.721740pt;}
.y64_c00364{bottom:297.020560pt;}
.y65_c00364{bottom:297.362620pt;}
.y66_c00364{bottom:298.115160pt;}
.y67_c00364{bottom:298.270480pt;}
.y68_c00364{bottom:298.904060pt;}
.y59_c00364{bottom:309.602667pt;}
.y5a_c00364{bottom:309.892727pt;}
.y5b_c00364{bottom:310.113167pt;}
.y5c_c00364{bottom:310.429887pt;}
.y5d_c00364{bottom:310.973687pt;}
.y5e_c00364{bottom:312.046907pt;}
.y5f_c00364{bottom:312.705747pt;}
.y60_c00364{bottom:312.885887pt;}
.y52_c00364{bottom:324.454021pt;}
.y53_c00364{bottom:324.702397pt;}
.y54_c00364{bottom:325.345215pt;}
.y55_c00364{bottom:325.765881pt;}
.y56_c00364{bottom:326.425203pt;}
.y57_c00364{bottom:326.731412pt;}
.y58_c00364{bottom:327.744868pt;}
.y4d_c00364{bottom:339.096107pt;}
.y4e_c00364{bottom:340.294963pt;}
.y4f_c00364{bottom:340.544311pt;}
.y50_c00364{bottom:341.665957pt;}
.y51_c00364{bottom:342.241651pt;}
.y44_c00364{bottom:353.498909pt;}
.y45_c00364{bottom:354.241884pt;}
.y46_c00364{bottom:354.441527pt;}
.y47_c00364{bottom:354.694255pt;}
.y48_c00364{bottom:355.294972pt;}
.y49_c00364{bottom:355.835957pt;}
.y4a_c00364{bottom:356.007604pt;}
.y4b_c00364{bottom:356.678677pt;}
.y4c_c00364{bottom:357.731284pt;}
.y3c_c00364{bottom:369.102424pt;}
.y3d_c00364{bottom:369.284697pt;}
.y3e_c00364{bottom:369.676705pt;}
.y3f_c00364{bottom:370.593265pt;}
.y40_c00364{bottom:370.935721pt;}
.y41_c00364{bottom:371.979784pt;}
.y42_c00364{bottom:372.230964pt;}
.y43_c00364{bottom:373.634228pt;}
.y36_c00364{bottom:384.463565pt;}
.y37_c00364{bottom:385.039337pt;}
.y38_c00364{bottom:386.071515pt;}
.y39_c00364{bottom:386.378144pt;}
.y3a_c00364{bottom:387.320629pt;}
.y3b_c00364{bottom:388.388511pt;}
.y2f_c00364{bottom:398.869720pt;}
.y30_c00364{bottom:399.283213pt;}
.y31_c00364{bottom:400.862319pt;}
.y32_c00364{bottom:401.287000pt;}
.y33_c00364{bottom:402.009947pt;}
.y34_c00364{bottom:403.396043pt;}
.y35_c00364{bottom:404.644063pt;}
.y29_c00364{bottom:414.473413pt;}
.y2a_c00364{bottom:415.793051pt;}
.y2b_c00364{bottom:417.317383pt;}
.y2c_c00364{bottom:417.937911pt;}
.y2d_c00364{bottom:418.268855pt;}
.y2e_c00364{bottom:419.184236pt;}
.y22_c00364{bottom:429.355028pt;}
.y23_c00364{bottom:429.802572pt;}
.y24_c00364{bottom:430.237788pt;}
.y25_c00364{bottom:431.131305pt;}
.y26_c00364{bottom:432.780392pt;}
.y27_c00364{bottom:433.228417pt;}
.y28_c00364{bottom:434.559127pt;}
.y1a_c00364{bottom:444.237787pt;}
.y1b_c00364{bottom:445.461436pt;}
.y1c_c00364{bottom:445.694572pt;}
.y1d_c00364{bottom:446.864745pt;}
.y1e_c00364{bottom:447.238388pt;}
.y1f_c00364{bottom:448.456033pt;}
.y20_c00364{bottom:448.720437pt;}
.y21_c00364{bottom:449.006112pt;}
.y14_c00364{bottom:459.842275pt;}
.y15_c00364{bottom:461.084635pt;}
.y16_c00364{bottom:462.497728pt;}
.y17_c00364{bottom:463.175307pt;}
.y18_c00364{bottom:464.186103pt;}
.y19_c00364{bottom:466.049559pt;}
.yb_c00364{bottom:474.482835pt;}
.yc_c00364{bottom:475.066059pt;}
.yd_c00364{bottom:475.444564pt;}
.ye_c00364{bottom:475.754923pt;}
.yf_c00364{bottom:476.516823pt;}
.y10_c00364{bottom:477.428569pt;}
.y11_c00364{bottom:477.998215pt;}
.y12_c00364{bottom:478.764067pt;}
.y13_c00364{bottom:479.033233pt;}
.y3_c00364{bottom:489.845333pt;}
.y4_c00364{bottom:490.150448pt;}
.y5_c00364{bottom:491.153293pt;}
.y6_c00364{bottom:491.362319pt;}
.y7_c00364{bottom:491.956563pt;}
.y8_c00364{bottom:492.741085pt;}
.y9_c00364{bottom:493.871079pt;}
.ya_c00364{bottom:494.304279pt;}
.y1_c00364{bottom:504.013333pt;}
.y2_c00364{bottom:506.869213pt;}
.hd_c00364{height:48.538793pt;}
.h17_c00364{height:49.472231pt;}
.he_c00364{height:51.339108pt;}
.h9_c00364{height:51.342598pt;}
.h14_c00364{height:52.272546pt;}
.h11_c00364{height:53.205985pt;}
.h5_c00364{height:53.209602pt;}
.h19_c00364{height:54.133333pt;}
.h12_c00364{height:54.139423pt;}
.h13_c00364{height:55.072861pt;}
.h6_c00364{height:55.076605pt;}
.h2_c00364{height:55.091441pt;}
.h1a_c00364{height:56.000000pt;}
.h16_c00364{height:56.006300pt;}
.hf_c00364{height:56.939738pt;}
.h8_c00364{height:56.943609pt;}
.h18_c00364{height:57.866667pt;}
.hb_c00364{height:57.877111pt;}
.hc_c00364{height:58.810612pt;}
.h15_c00364{height:59.740053pt;}
.h10_c00364{height:60.673491pt;}
.ha_c00364{height:61.611118pt;}
.h4_c00364{height:62.544620pt;}
.h7_c00364{height:63.478121pt;}
.h3_c00364{height:66.278627pt;}
.h0_c00364{height:545.040000pt;}
.h1_c00364{height:545.333333pt;}
.w0_c00364{width:319.200000pt;}
.w1_c00364{width:319.333333pt;}
.x0_c00364{left:0.000000pt;}
.x16_c00364{left:10.793773pt;}
.x62_c00364{left:15.158287pt;}
.x3_c00364{left:19.450667pt;}
.x56_c00364{left:20.554653pt;}
.x6b_c00364{left:21.794947pt;}
.x60_c00364{left:24.478073pt;}
.x65_c00364{left:28.252920pt;}
.x2f_c00364{left:29.500119pt;}
.x4_c00364{left:35.509333pt;}
.x27_c00364{left:37.697311pt;}
.x3d_c00364{left:38.742667pt;}
.x1d_c00364{left:40.453313pt;}
.x49_c00364{left:42.649507pt;}
.xa_c00364{left:50.377199pt;}
.x3e_c00364{left:53.438667pt;}
.x3b_c00364{left:58.657399pt;}
.x6c_c00364{left:59.922193pt;}
.x1e_c00364{left:61.183195pt;}
.x33_c00364{left:63.544781pt;}
.x57_c00364{left:64.958660pt;}
.x12_c00364{left:67.486257pt;}
.x17_c00364{left:69.088903pt;}
.xb_c00364{left:70.298532pt;}
.x61_c00364{left:72.243480pt;}
.x34_c00364{left:75.315904pt;}
.x4f_c00364{left:77.128140pt;}
.x18_c00364{left:80.165805pt;}
.x66_c00364{left:83.388427pt;}
.x23_c00364{left:85.216885pt;}
.xc_c00364{left:86.633199pt;}
.x5_c00364{left:88.290667pt;}
.x35_c00364{left:90.161795pt;}
.x52_c00364{left:91.542307pt;}
.x4a_c00364{left:94.493507pt;}
.x30_c00364{left:98.372119pt;}
.x6_c00364{left:99.292000pt;}
.x1f_c00364{left:103.717573pt;}
.x41_c00364{left:104.800380pt;}
.x28_c00364{left:106.346759pt;}
.x2d_c00364{left:108.445773pt;}
.x3f_c00364{left:110.806667pt;}
.x77_c00364{left:113.936000pt;}
.x70_c00364{left:115.210393pt;}
.x31_c00364{left:116.396119pt;}
.x53_c00364{left:119.938307pt;}
.x13_c00364{left:121.852371pt;}
.x3a_c00364{left:123.533256pt;}
.x29_c00364{left:124.837365pt;}
.xd_c00364{left:126.733199pt;}
.x69_c00364{left:128.651360pt;}
.x7_c00364{left:130.568000pt;}
.x58_c00364{left:131.687327pt;}
.x1_c00364{left:135.325333pt;}
.x63_c00364{left:136.654413pt;}
.x67_c00364{left:139.581267pt;}
.x6e_c00364{left:141.854013pt;}
.x6a_c00364{left:144.733647pt;}
.x4b_c00364{left:146.338840pt;}
.x14_c00364{left:147.896900pt;}
.x45_c00364{left:151.132600pt;}
.x19_c00364{left:153.626993pt;}
.x5d_c00364{left:154.813553pt;}
.x2a_c00364{left:156.288317pt;}
.x36_c00364{left:157.341687pt;}
.x68_c00364{left:159.033567pt;}
.x6f_c00364{left:160.335507pt;}
.x24_c00364{left:161.443441pt;}
.x46_c00364{left:162.345933pt;}
.x74_c00364{left:164.160000pt;}
.x72_c00364{left:165.360000pt;}
.x37_c00364{left:167.428733pt;}
.x4c_c00364{left:169.382840pt;}
.x8_c00364{left:171.858667pt;}
.xe_c00364{left:174.719865pt;}
.x2e_c00364{left:177.839091pt;}
.x47_c00364{left:180.845933pt;}
.x20_c00364{left:182.227917pt;}
.x75_c00364{left:183.120000pt;}
.x32_c00364{left:184.566785pt;}
.x15_c00364{left:186.775732pt;}
.x54_c00364{left:190.028973pt;}
.x25_c00364{left:192.488192pt;}
.x59_c00364{left:194.039873pt;}
.x50_c00364{left:196.673520pt;}
.x42_c00364{left:197.695047pt;}
.x71_c00364{left:200.420220pt;}
.x6d_c00364{left:202.418980pt;}
.x21_c00364{left:203.561773pt;}
.xf_c00364{left:204.701199pt;}
.x64_c00364{left:205.837533pt;}
.x38_c00364{left:206.890228pt;}
.x43_c00364{left:208.049713pt;}
.x26_c00364{left:209.063888pt;}
.x4d_c00364{left:210.202840pt;}
.x1a_c00364{left:211.606123pt;}
.x2b_c00364{left:216.534399pt;}
.x5a_c00364{left:218.100593pt;}
.x1b_c00364{left:224.188308pt;}
.x40_c00364{left:226.277333pt;}
.x2_c00364{left:230.521333pt;}
.x5e_c00364{left:233.781980pt;}
.x1c_c00364{left:237.819801pt;}
.x51_c00364{left:239.672793pt;}
.x78_c00364{left:241.566667pt;}
.x10_c00364{left:245.009199pt;}
.x44_c00364{left:250.288380pt;}
.x55_c00364{left:252.908973pt;}
.x9_c00364{left:254.132000pt;}
.x76_c00364{left:256.800000pt;}
.x48_c00364{left:257.897933pt;}
.x11_c00364{left:259.175865pt;}
.x5b_c00364{left:261.521893pt;}
.x5f_c00364{left:263.544680pt;}
.x22_c00364{left:266.930033pt;}
.x39_c00364{left:268.819251pt;}
.x2c_c00364{left:270.776936pt;}
.x5c_c00364{left:273.294253pt;}
.x3c_c00364{left:275.860661pt;}
.x4e_c00364{left:276.897507pt;}
.x73_c00364{left:278.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00365 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00365 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00365 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00365 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00365.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00365{transform:matrix(0.114605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114605,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.m74_c00365{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.152360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152360,0.000000,0.000000,0.250000,0,0);}
.m97_c00365{transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153415,0.000000,0.000000,0.250000,0,0);}
.m9b_c00365{transform:matrix(0.155130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155130,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159545,0.000000,0.000000,0.250000,0,0);}
.mda_c00365{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.159680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159680,0.000000,0.000000,0.250000,0,0);}
.mc9_c00365{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m8b_c00365{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00365{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m89_c00365{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.mc0_c00365{transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);}
.mac_c00365{transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);}
.mb1_c00365{transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.172530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172530,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m44_c00365{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m72_c00365{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.ma4_c00365{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.mbb_c00365{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.ma8_c00365{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.mae_c00365{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.mc8_c00365{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.me3_c00365{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.mc4_c00365{transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.m9d_c00365{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.m76_c00365{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.mf0_c00365{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00365{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m84_c00365{transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m7e_c00365{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.m6d_c00365{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m78_c00365{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00365{transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182785,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.m75_c00365{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.mca_c00365{transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);}
.mcb_c00365{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mba_c00365{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00365{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m66_c00365{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.mdd_c00365{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m52_c00365{transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);}
.m58_c00365{transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m88_c00365{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.med_c00365{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m5e_c00365{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.m60_c00365{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.maa_c00365{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00365{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m7c_c00365{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.m79_c00365{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mc2_c00365{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193530,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193595,0.000000,0.000000,0.250000,0,0);}
.mee_c00365{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.mc1_c00365{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.m9c_c00365{transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);}
.mb4_c00365{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);}
.m5f_c00365{transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);}
.m67_c00365{transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197055,0.000000,0.000000,0.250000,0,0);}
.me7_c00365{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198220,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m96_c00365{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.m9e_c00365{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m8f_c00365{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);}
.me2_c00365{transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mea_c00365{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.m56_c00365{transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);}
.me0_c00365{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.mdc_c00365{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mec_c00365{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202305,0.000000,0.000000,0.250000,0,0);}
.m6a_c00365{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.m70_c00365{transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);}
.m83_c00365{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00365{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m99_c00365{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.mcc_c00365{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.ma1_c00365{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.mb6_c00365{transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);}
.m54_c00365{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m71_c00365{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00365{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.mbe_c00365{transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);}
.ma5_c00365{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.maf_c00365{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.mf1_c00365{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.mb8_c00365{transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);}
.m87_c00365{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.me6_c00365{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m65_c00365{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.me4_c00365{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00365{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.me5_c00365{transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.md6_c00365{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.mde_c00365{transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);}
.m53_c00365{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mab_c00365{transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);}
.m82_c00365{transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);}
.m8c_c00365{transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);}
.md5_c00365{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mdb_c00365{transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);}
.md8_c00365{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215085,0.000000,0.000000,0.250000,0,0);}
.m68_c00365{transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215155,0.000000,0.000000,0.250000,0,0);}
.mc7_c00365{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.mc3_c00365{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.ma7_c00365{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.md7_c00365{transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215965,0.000000,0.000000,0.250000,0,0);}
.mc6_c00365{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.mb5_c00365{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);}
.m7f_c00365{transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);}
.mef_c00365{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00365{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222355,0.000000,0.000000,0.250000,0,0);}
.ma2_c00365{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);}
.md9_c00365{transform:matrix(0.222730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222730,0.000000,0.000000,0.250000,0,0);}
.mad_c00365{transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);}
.md2_c00365{transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);}
.m7a_c00365{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.md4_c00365{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m6b_c00365{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.me9_c00365{transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);}
.m98_c00365{transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00365{transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00365{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.mce_c00365{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.mdf_c00365{transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);}
.mb2_c00365{transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230605,0.000000,0.000000,0.250000,0,0);}
.me1_c00365{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.me8_c00365{transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);}
.mb3_c00365{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.m59_c00365{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.md3_c00365{transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);}
.mb7_c00365{transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);}
.m69_c00365{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m62_c00365{transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235455,0.000000,0.000000,0.250000,0,0);}
.mb0_c00365{transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235590,0.000000,0.000000,0.250000,0,0);}
.m8d_c00365{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m85_c00365{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00365{transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237080,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.ma6_c00365{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.meb_c00365{transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243015,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244055,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00365{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m91_c00365{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m77_c00365{transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255550,0.000000,0.000000,0.250000,0,0);}
.m7d_c00365{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.mb9_c00365{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00365{transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.m2b_c00365{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.mbd_c00365{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.md1_c00365{transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);}
.md0_c00365{transform:matrix(0.290135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290135,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.297665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297665,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00365{transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);}
.m41_c00365{transform:matrix(0.315465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315465,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.322520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322520,0.000000,0.000000,0.250000,0,0);}
.m92_c00365{transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338605,0.000000,0.000000,0.250000,0,0);}
.m42_c00365{transform:matrix(0.361405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361405,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
.fc0_c00365{color:transparent;}
.fsd_c00365{font-size:47.250000px;}
.fs8_c00365{font-size:54.600000px;}
.fsa_c00365{font-size:57.750000px;}
.fs4_c00365{font-size:58.800000px;}
.fs9_c00365{font-size:59.850000px;}
.fs7_c00365{font-size:60.900000px;}
.fs3_c00365{font-size:61.950000px;}
.fs5_c00365{font-size:63.000000px;}
.fsb_c00365{font-size:64.050000px;}
.fsc_c00365{font-size:65.100000px;}
.fs0_c00365{font-size:66.150000px;}
.fs6_c00365{font-size:67.200000px;}
.fs1_c00365{font-size:69.300000px;}
.fs2_c00365{font-size:70.350000px;}
.y0_c00365{bottom:0.000000px;}
.y21_c00365{bottom:24.328500px;}
.y20_c00365{bottom:41.217000px;}
.y1f_c00365{bottom:57.658500px;}
.y1e_c00365{bottom:74.113500px;}
.y1d_c00365{bottom:92.154000px;}
.y1c_c00365{bottom:108.394500px;}
.y1b_c00365{bottom:125.109000px;}
.y1a_c00365{bottom:143.442000px;}
.y19_c00365{bottom:159.816000px;}
.y18_c00365{bottom:177.463500px;}
.y17_c00365{bottom:194.448000px;}
.y16_c00365{bottom:211.750500px;}
.y15_c00365{bottom:229.032000px;}
.y14_c00365{bottom:245.743500px;}
.y13_c00365{bottom:262.023000px;}
.y12_c00365{bottom:279.250500px;}
.y11_c00365{bottom:296.434500px;}
.y10_c00365{bottom:313.336500px;}
.yf_c00365{bottom:330.127500px;}
.ye_c00365{bottom:347.853000px;}
.yd_c00365{bottom:364.567500px;}
.yc_c00365{bottom:381.820500px;}
.yb_c00365{bottom:399.343500px;}
.ya_c00365{bottom:416.233500px;}
.y9_c00365{bottom:433.513500px;}
.y8_c00365{bottom:450.516000px;}
.y7_c00365{bottom:464.872500px;}
.y6_c00365{bottom:483.907500px;}
.y5_c00365{bottom:500.917500px;}
.y4_c00365{bottom:517.293000px;}
.y3_c00365{bottom:534.841500px;}
.y2_c00365{bottom:551.553000px;}
.y1_c00365{bottom:566.730000px;}
.hf_c00365{height:47.250000px;}
.ha_c00365{height:54.600000px;}
.hc_c00365{height:57.750000px;}
.h6_c00365{height:58.800000px;}
.hb_c00365{height:59.850000px;}
.h9_c00365{height:60.900000px;}
.h5_c00365{height:61.950000px;}
.h7_c00365{height:63.000000px;}
.hd_c00365{height:64.050000px;}
.he_c00365{height:65.100000px;}
.h2_c00365{height:66.150000px;}
.h8_c00365{height:67.200000px;}
.h3_c00365{height:69.300000px;}
.h4_c00365{height:70.350000px;}
.h0_c00365{height:613.170000px;}
.h1_c00365{height:613.500000px;}
.w0_c00365{width:359.100000px;}
.w1_c00365{width:359.250000px;}
.x0_c00365{left:0.000000px;}
.x6a_c00365{left:36.450000px;}
.x2_c00365{left:37.530000px;}
.x28_c00365{left:51.030000px;}
.x3_c00365{left:55.350000px;}
.x78_c00365{left:56.700000px;}
.x30_c00365{left:57.780000px;}
.x61_c00365{left:59.670000px;}
.x45_c00365{left:61.290000px;}
.x4a_c00365{left:62.370000px;}
.x5a_c00365{left:64.800000px;}
.x8_c00365{left:67.770000px;}
.x31_c00365{left:74.250000px;}
.x65_c00365{left:76.140000px;}
.x16_c00365{left:77.490000px;}
.x1d_c00365{left:79.380000px;}
.x6b_c00365{left:81.540000px;}
.x48_c00365{left:83.160000px;}
.x9_c00365{left:86.670000px;}
.x75_c00365{left:88.560000px;}
.xe_c00365{left:93.150000px;}
.x70_c00365{left:94.770000px;}
.x17_c00365{left:96.390000px;}
.x6c_c00365{left:97.470000px;}
.x1e_c00365{left:101.250000px;}
.x52_c00365{left:103.410000px;}
.x3b_c00365{left:104.760000px;}
.x62_c00365{left:107.730000px;}
.x54_c00365{left:109.890000px;}
.x1f_c00365{left:112.050000px;}
.x2e_c00365{left:113.940000px;}
.xf_c00365{left:115.830000px;}
.x29_c00365{left:118.530000px;}
.x32_c00365{left:120.150000px;}
.x72_c00365{left:125.550000px;}
.x4f_c00365{left:128.250000px;}
.x56_c00365{left:130.950000px;}
.x2a_c00365{left:134.190000px;}
.x4_c00365{left:137.700000px;}
.x46_c00365{left:139.860000px;}
.x10_c00365{left:140.940000px;}
.x5b_c00365{left:142.830000px;}
.x4b_c00365{left:145.260000px;}
.xa_c00365{left:148.770000px;}
.x67_c00365{left:151.470000px;}
.x18_c00365{left:154.440000px;}
.x20_c00365{left:157.410000px;}
.x40_c00365{left:159.570000px;}
.x50_c00365{left:164.160000px;}
.x4c_c00365{left:167.400000px;}
.x19_c00365{left:168.480000px;}
.x1_c00365{left:170.370000px;}
.x53_c00365{left:173.610000px;}
.x25_c00365{left:177.120000px;}
.x63_c00365{left:178.470000px;}
.x3c_c00365{left:181.170000px;}
.x5d_c00365{left:183.870000px;}
.x41_c00365{left:185.490000px;}
.x33_c00365{left:187.110000px;}
.xb_c00365{left:190.620000px;}
.x4d_c00365{left:192.240000px;}
.x11_c00365{left:194.130000px;}
.x2f_c00365{left:196.830000px;}
.x1a_c00365{left:198.180000px;}
.x79_c00365{left:199.260000px;}
.x71_c00365{left:201.420000px;}
.x6d_c00365{left:203.310000px;}
.x3d_c00365{left:204.930000px;}
.x34_c00365{left:207.090000px;}
.x12_c00365{left:209.790000px;}
.x21_c00365{left:211.410000px;}
.x76_c00365{left:215.460000px;}
.x37_c00365{left:218.160000px;}
.x2b_c00365{left:220.320000px;}
.x64_c00365{left:221.400000px;}
.x35_c00365{left:222.750000px;}
.x22_c00365{left:225.720000px;}
.x13_c00365{left:228.420000px;}
.x5_c00365{left:230.310000px;}
.x26_c00365{left:233.820000px;}
.x2c_c00365{left:235.170000px;}
.x55_c00365{left:236.250000px;}
.xc_c00365{left:240.570000px;}
.x68_c00365{left:243.270000px;}
.x47_c00365{left:244.620000px;}
.x6_c00365{left:246.510000px;}
.x6e_c00365{left:248.670000px;}
.x66_c00365{left:251.910000px;}
.x73_c00365{left:255.420000px;}
.x5f_c00365{left:261.630000px;}
.x1b_c00365{left:263.250000px;}
.x3e_c00365{left:264.600000px;}
.x5e_c00365{left:265.950000px;}
.x42_c00365{left:267.300000px;}
.xd_c00365{left:268.650000px;}
.x4e_c00365{left:269.730000px;}
.x74_c00365{left:273.510000px;}
.x27_c00365{left:275.400000px;}
.x77_c00365{left:278.370000px;}
.x1c_c00365{left:279.720000px;}
.x57_c00365{left:281.070000px;}
.x38_c00365{left:282.960000px;}
.x2d_c00365{left:284.580000px;}
.x60_c00365{left:287.010000px;}
.x23_c00365{left:292.140000px;}
.x7a_c00365{left:293.220000px;}
.x39_c00365{left:294.570000px;}
.x58_c00365{left:296.460000px;}
.x43_c00365{left:298.080000px;}
.x51_c00365{left:301.590000px;}
.x49_c00365{left:302.670000px;}
.x14_c00365{left:303.750000px;}
.x7_c00365{left:306.990000px;}
.x3f_c00365{left:309.150000px;}
.x36_c00365{left:311.850000px;}
.x69_c00365{left:313.470000px;}
.x6f_c00365{left:314.550000px;}
.x3a_c00365{left:315.900000px;}
.x5c_c00365{left:317.250000px;}
.x24_c00365{left:319.950000px;}
.x44_c00365{left:321.300000px;}
.x15_c00365{left:324.540000px;}
.x59_c00365{left:327.240000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
.fsd_c00365{font-size:42.000000pt;}
.fs8_c00365{font-size:48.533333pt;}
.fsa_c00365{font-size:51.333333pt;}
.fs4_c00365{font-size:52.266667pt;}
.fs9_c00365{font-size:53.200000pt;}
.fs7_c00365{font-size:54.133333pt;}
.fs3_c00365{font-size:55.066667pt;}
.fs5_c00365{font-size:56.000000pt;}
.fsb_c00365{font-size:56.933333pt;}
.fsc_c00365{font-size:57.866667pt;}
.fs0_c00365{font-size:58.800000pt;}
.fs6_c00365{font-size:59.733333pt;}
.fs1_c00365{font-size:61.600000pt;}
.fs2_c00365{font-size:62.533333pt;}
.y0_c00365{bottom:0.000000pt;}
.y21_c00365{bottom:21.625333pt;}
.y20_c00365{bottom:36.637333pt;}
.y1f_c00365{bottom:51.252000pt;}
.y1e_c00365{bottom:65.878667pt;}
.y1d_c00365{bottom:81.914667pt;}
.y1c_c00365{bottom:96.350667pt;}
.y1b_c00365{bottom:111.208000pt;}
.y1a_c00365{bottom:127.504000pt;}
.y19_c00365{bottom:142.058667pt;}
.y18_c00365{bottom:157.745333pt;}
.y17_c00365{bottom:172.842667pt;}
.y16_c00365{bottom:188.222667pt;}
.y15_c00365{bottom:203.584000pt;}
.y14_c00365{bottom:218.438667pt;}
.y13_c00365{bottom:232.909333pt;}
.y12_c00365{bottom:248.222667pt;}
.y11_c00365{bottom:263.497333pt;}
.y10_c00365{bottom:278.521333pt;}
.yf_c00365{bottom:293.446667pt;}
.ye_c00365{bottom:309.202667pt;}
.yd_c00365{bottom:324.060000pt;}
.yc_c00365{bottom:339.396000pt;}
.yb_c00365{bottom:354.972000pt;}
.ya_c00365{bottom:369.985333pt;}
.y9_c00365{bottom:385.345333pt;}
.y8_c00365{bottom:400.458667pt;}
.y7_c00365{bottom:413.220000pt;}
.y6_c00365{bottom:430.140000pt;}
.y5_c00365{bottom:445.260000pt;}
.y4_c00365{bottom:459.816000pt;}
.y3_c00365{bottom:475.414667pt;}
.y2_c00365{bottom:490.269333pt;}
.y1_c00365{bottom:503.760000pt;}
.hf_c00365{height:42.000000pt;}
.ha_c00365{height:48.533333pt;}
.hc_c00365{height:51.333333pt;}
.h6_c00365{height:52.266667pt;}
.hb_c00365{height:53.200000pt;}
.h9_c00365{height:54.133333pt;}
.h5_c00365{height:55.066667pt;}
.h7_c00365{height:56.000000pt;}
.hd_c00365{height:56.933333pt;}
.he_c00365{height:57.866667pt;}
.h2_c00365{height:58.800000pt;}
.h8_c00365{height:59.733333pt;}
.h3_c00365{height:61.600000pt;}
.h4_c00365{height:62.533333pt;}
.h0_c00365{height:545.040000pt;}
.h1_c00365{height:545.333333pt;}
.w0_c00365{width:319.200000pt;}
.w1_c00365{width:319.333333pt;}
.x0_c00365{left:0.000000pt;}
.x6a_c00365{left:32.400000pt;}
.x2_c00365{left:33.360000pt;}
.x28_c00365{left:45.360000pt;}
.x3_c00365{left:49.200000pt;}
.x78_c00365{left:50.400000pt;}
.x30_c00365{left:51.360000pt;}
.x61_c00365{left:53.040000pt;}
.x45_c00365{left:54.480000pt;}
.x4a_c00365{left:55.440000pt;}
.x5a_c00365{left:57.600000pt;}
.x8_c00365{left:60.240000pt;}
.x31_c00365{left:66.000000pt;}
.x65_c00365{left:67.680000pt;}
.x16_c00365{left:68.880000pt;}
.x1d_c00365{left:70.560000pt;}
.x6b_c00365{left:72.480000pt;}
.x48_c00365{left:73.920000pt;}
.x9_c00365{left:77.040000pt;}
.x75_c00365{left:78.720000pt;}
.xe_c00365{left:82.800000pt;}
.x70_c00365{left:84.240000pt;}
.x17_c00365{left:85.680000pt;}
.x6c_c00365{left:86.640000pt;}
.x1e_c00365{left:90.000000pt;}
.x52_c00365{left:91.920000pt;}
.x3b_c00365{left:93.120000pt;}
.x62_c00365{left:95.760000pt;}
.x54_c00365{left:97.680000pt;}
.x1f_c00365{left:99.600000pt;}
.x2e_c00365{left:101.280000pt;}
.xf_c00365{left:102.960000pt;}
.x29_c00365{left:105.360000pt;}
.x32_c00365{left:106.800000pt;}
.x72_c00365{left:111.600000pt;}
.x4f_c00365{left:114.000000pt;}
.x56_c00365{left:116.400000pt;}
.x2a_c00365{left:119.280000pt;}
.x4_c00365{left:122.400000pt;}
.x46_c00365{left:124.320000pt;}
.x10_c00365{left:125.280000pt;}
.x5b_c00365{left:126.960000pt;}
.x4b_c00365{left:129.120000pt;}
.xa_c00365{left:132.240000pt;}
.x67_c00365{left:134.640000pt;}
.x18_c00365{left:137.280000pt;}
.x20_c00365{left:139.920000pt;}
.x40_c00365{left:141.840000pt;}
.x50_c00365{left:145.920000pt;}
.x4c_c00365{left:148.800000pt;}
.x19_c00365{left:149.760000pt;}
.x1_c00365{left:151.440000pt;}
.x53_c00365{left:154.320000pt;}
.x25_c00365{left:157.440000pt;}
.x63_c00365{left:158.640000pt;}
.x3c_c00365{left:161.040000pt;}
.x5d_c00365{left:163.440000pt;}
.x41_c00365{left:164.880000pt;}
.x33_c00365{left:166.320000pt;}
.xb_c00365{left:169.440000pt;}
.x4d_c00365{left:170.880000pt;}
.x11_c00365{left:172.560000pt;}
.x2f_c00365{left:174.960000pt;}
.x1a_c00365{left:176.160000pt;}
.x79_c00365{left:177.120000pt;}
.x71_c00365{left:179.040000pt;}
.x6d_c00365{left:180.720000pt;}
.x3d_c00365{left:182.160000pt;}
.x34_c00365{left:184.080000pt;}
.x12_c00365{left:186.480000pt;}
.x21_c00365{left:187.920000pt;}
.x76_c00365{left:191.520000pt;}
.x37_c00365{left:193.920000pt;}
.x2b_c00365{left:195.840000pt;}
.x64_c00365{left:196.800000pt;}
.x35_c00365{left:198.000000pt;}
.x22_c00365{left:200.640000pt;}
.x13_c00365{left:203.040000pt;}
.x5_c00365{left:204.720000pt;}
.x26_c00365{left:207.840000pt;}
.x2c_c00365{left:209.040000pt;}
.x55_c00365{left:210.000000pt;}
.xc_c00365{left:213.840000pt;}
.x68_c00365{left:216.240000pt;}
.x47_c00365{left:217.440000pt;}
.x6_c00365{left:219.120000pt;}
.x6e_c00365{left:221.040000pt;}
.x66_c00365{left:223.920000pt;}
.x73_c00365{left:227.040000pt;}
.x5f_c00365{left:232.560000pt;}
.x1b_c00365{left:234.000000pt;}
.x3e_c00365{left:235.200000pt;}
.x5e_c00365{left:236.400000pt;}
.x42_c00365{left:237.600000pt;}
.xd_c00365{left:238.800000pt;}
.x4e_c00365{left:239.760000pt;}
.x74_c00365{left:243.120000pt;}
.x27_c00365{left:244.800000pt;}
.x77_c00365{left:247.440000pt;}
.x1c_c00365{left:248.640000pt;}
.x57_c00365{left:249.840000pt;}
.x38_c00365{left:251.520000pt;}
.x2d_c00365{left:252.960000pt;}
.x60_c00365{left:255.120000pt;}
.x23_c00365{left:259.680000pt;}
.x7a_c00365{left:260.640000pt;}
.x39_c00365{left:261.840000pt;}
.x58_c00365{left:263.520000pt;}
.x43_c00365{left:264.960000pt;}
.x51_c00365{left:268.080000pt;}
.x49_c00365{left:269.040000pt;}
.x14_c00365{left:270.000000pt;}
.x7_c00365{left:272.880000pt;}
.x3f_c00365{left:274.800000pt;}
.x36_c00365{left:277.200000pt;}
.x69_c00365{left:278.640000pt;}
.x6f_c00365{left:279.600000pt;}
.x3a_c00365{left:280.800000pt;}
.x5c_c00365{left:282.000000pt;}
.x24_c00365{left:284.400000pt;}
.x44_c00365{left:285.600000pt;}
.x15_c00365{left:288.480000pt;}
.x59_c00365{left:290.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00366 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00366 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00366 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00366 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00366.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00366{transform:matrix(0.022550,-0.000451,0.004999,0.249950,0,0);-ms-transform:matrix(0.022550,-0.000451,0.004999,0.249950,0,0);-webkit-transform:matrix(0.022550,-0.000451,0.004999,0.249950,0,0);}
.m3_c00366{transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);}
.m45_c00366{transform:matrix(0.151175,-0.003023,0.004999,0.249950,0,0);-ms-transform:matrix(0.151175,-0.003023,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151175,-0.003023,0.004999,0.249950,0,0);}
.md9_c00366{transform:matrix(0.153304,-0.003066,0.004999,0.249950,0,0);-ms-transform:matrix(0.153304,-0.003066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153304,-0.003066,0.004999,0.249950,0,0);}
.mda_c00366{transform:matrix(0.156459,-0.003129,0.004999,0.249950,0,0);-ms-transform:matrix(0.156459,-0.003129,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156459,-0.003129,0.004999,0.249950,0,0);}
.mdb_c00366{transform:matrix(0.158093,-0.003162,0.004999,0.249950,0,0);-ms-transform:matrix(0.158093,-0.003162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158093,-0.003162,0.004999,0.249950,0,0);}
.mdc_c00366{transform:matrix(0.159678,-0.003194,0.004999,0.249950,0,0);-ms-transform:matrix(0.159678,-0.003194,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159678,-0.003194,0.004999,0.249950,0,0);}
.mf_c00366{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.161288,-0.003226,0.004999,0.249950,0,0);-ms-transform:matrix(0.161288,-0.003226,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161288,-0.003226,0.004999,0.249950,0,0);}
.m5f_c00366{transform:matrix(0.162732,-0.003255,0.004999,0.249950,0,0);-ms-transform:matrix(0.162732,-0.003255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162732,-0.003255,0.004999,0.249950,0,0);}
.m6c_c00366{transform:matrix(0.162987,-0.003260,0.004999,0.249950,0,0);-ms-transform:matrix(0.162987,-0.003260,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162987,-0.003260,0.004999,0.249950,0,0);}
.m99_c00366{transform:matrix(0.163472,-0.003269,0.004999,0.249950,0,0);-ms-transform:matrix(0.163472,-0.003269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163472,-0.003269,0.004999,0.249950,0,0);}
.m43_c00366{transform:matrix(0.164982,-0.003300,0.004999,0.249950,0,0);-ms-transform:matrix(0.164982,-0.003300,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164982,-0.003300,0.004999,0.249950,0,0);}
.m2_c00366{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166065,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.167092,-0.003342,0.004999,0.249950,0,0);-ms-transform:matrix(0.167092,-0.003342,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167092,-0.003342,0.004999,0.249950,0,0);}
.mbd_c00366{transform:matrix(0.167302,-0.003346,0.004999,0.249950,0,0);-ms-transform:matrix(0.167302,-0.003346,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167302,-0.003346,0.004999,0.249950,0,0);}
.ma9_c00366{transform:matrix(0.167946,-0.003359,0.004999,0.249950,0,0);-ms-transform:matrix(0.167946,-0.003359,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167946,-0.003359,0.004999,0.249950,0,0);}
.m40_c00366{transform:matrix(0.168026,-0.003361,0.004999,0.249950,0,0);-ms-transform:matrix(0.168026,-0.003361,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168026,-0.003361,0.004999,0.249950,0,0);}
.mb6_c00366{transform:matrix(0.168981,-0.003380,0.004999,0.249950,0,0);-ms-transform:matrix(0.168981,-0.003380,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168981,-0.003380,0.004999,0.249950,0,0);}
.m88_c00366{transform:matrix(0.169096,-0.003382,0.004999,0.249950,0,0);-ms-transform:matrix(0.169096,-0.003382,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169096,-0.003382,0.004999,0.249950,0,0);}
.m7f_c00366{transform:matrix(0.169566,-0.003391,0.004999,0.249950,0,0);-ms-transform:matrix(0.169566,-0.003391,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169566,-0.003391,0.004999,0.249950,0,0);}
.m9f_c00366{transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);-ms-transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);}
.mc_c00366{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m92_c00366{transform:matrix(0.170631,-0.003413,0.004999,0.249950,0,0);-ms-transform:matrix(0.170631,-0.003413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170631,-0.003413,0.004999,0.249950,0,0);}
.mc5_c00366{transform:matrix(0.171661,-0.003433,0.004999,0.249950,0,0);-ms-transform:matrix(0.171661,-0.003433,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171661,-0.003433,0.004999,0.249950,0,0);}
.m32_c00366{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{transform:matrix(0.172610,-0.003452,0.004999,0.249950,0,0);-ms-transform:matrix(0.172610,-0.003452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172610,-0.003452,0.004999,0.249950,0,0);}
.m8c_c00366{transform:matrix(0.172940,-0.003459,0.004999,0.249950,0,0);-ms-transform:matrix(0.172940,-0.003459,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172940,-0.003459,0.004999,0.249950,0,0);}
.m5_c00366{transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);}
.mbf_c00366{transform:matrix(0.173325,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173325,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173325,-0.003467,0.004999,0.249950,0,0);}
.mb_c00366{transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);}
.m82_c00366{transform:matrix(0.173745,-0.003475,0.004999,0.249950,0,0);-ms-transform:matrix(0.173745,-0.003475,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173745,-0.003475,0.004999,0.249950,0,0);}
.m2f_c00366{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.me2_c00366{transform:matrix(0.174385,-0.003488,0.004999,0.249950,0,0);-ms-transform:matrix(0.174385,-0.003488,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174385,-0.003488,0.004999,0.249950,0,0);}
.m2b_c00366{transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);}
.mf3_c00366{transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);-ms-transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);}
.maf_c00366{transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);-ms-transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175375,-0.003507,0.004999,0.249950,0,0);}
.ma1_c00366{transform:matrix(0.176465,-0.003529,0.004999,0.249950,0,0);-ms-transform:matrix(0.176465,-0.003529,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176465,-0.003529,0.004999,0.249950,0,0);}
.m34_c00366{transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);-ms-transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);}
.m1_c00366{transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177240,0.000000,0.000000,0.250000,0,0);}
.m5c_c00366{transform:matrix(0.177589,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177589,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177589,-0.003552,0.004999,0.249950,0,0);}
.m2a_c00366{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.ma3_c00366{transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);-ms-transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179169,-0.003583,0.004999,0.249950,0,0);}
.mf1_c00366{transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);-ms-transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179409,-0.003588,0.004999,0.249950,0,0);}
.m5e_c00366{transform:matrix(0.179974,-0.003599,0.004999,0.249950,0,0);-ms-transform:matrix(0.179974,-0.003599,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179974,-0.003599,0.004999,0.249950,0,0);}
.mb9_c00366{transform:matrix(0.180049,-0.003601,0.004999,0.249950,0,0);-ms-transform:matrix(0.180049,-0.003601,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180049,-0.003601,0.004999,0.249950,0,0);}
.m8_c00366{transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);}
.mf2_c00366{transform:matrix(0.180494,-0.003610,0.004999,0.249950,0,0);-ms-transform:matrix(0.180494,-0.003610,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180494,-0.003610,0.004999,0.249950,0,0);}
.m9a_c00366{transform:matrix(0.180569,-0.003611,0.004999,0.249950,0,0);-ms-transform:matrix(0.180569,-0.003611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180569,-0.003611,0.004999,0.249950,0,0);}
.m8a_c00366{transform:matrix(0.181019,-0.003620,0.004999,0.249950,0,0);-ms-transform:matrix(0.181019,-0.003620,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181019,-0.003620,0.004999,0.249950,0,0);}
.m9d_c00366{transform:matrix(0.181244,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181244,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181244,-0.003625,0.004999,0.249950,0,0);}
.m13_c00366{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.mf4_c00366{transform:matrix(0.182234,-0.003645,0.004999,0.249950,0,0);-ms-transform:matrix(0.182234,-0.003645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182234,-0.003645,0.004999,0.249950,0,0);}
.mb2_c00366{transform:matrix(0.182788,-0.003656,0.004999,0.249950,0,0);-ms-transform:matrix(0.182788,-0.003656,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182788,-0.003656,0.004999,0.249950,0,0);}
.m29_c00366{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{transform:matrix(0.183963,-0.003679,0.004999,0.249950,0,0);-ms-transform:matrix(0.183963,-0.003679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183963,-0.003679,0.004999,0.249950,0,0);}
.mcf_c00366{transform:matrix(0.184043,-0.003681,0.004999,0.249950,0,0);-ms-transform:matrix(0.184043,-0.003681,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184043,-0.003681,0.004999,0.249950,0,0);}
.m59_c00366{transform:matrix(0.184978,-0.003700,0.004999,0.249950,0,0);-ms-transform:matrix(0.184978,-0.003700,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184978,-0.003700,0.004999,0.249950,0,0);}
.m23_c00366{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m61_c00366{transform:matrix(0.185148,-0.003703,0.004999,0.249950,0,0);-ms-transform:matrix(0.185148,-0.003703,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185148,-0.003703,0.004999,0.249950,0,0);}
.m73_c00366{transform:matrix(0.185308,-0.003706,0.004999,0.249950,0,0);-ms-transform:matrix(0.185308,-0.003706,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185308,-0.003706,0.004999,0.249950,0,0);}
.m8b_c00366{transform:matrix(0.185488,-0.003710,0.004999,0.249950,0,0);-ms-transform:matrix(0.185488,-0.003710,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185488,-0.003710,0.004999,0.249950,0,0);}
.mbe_c00366{transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185963,-0.003719,0.004999,0.249950,0,0);}
.m18_c00366{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m7b_c00366{transform:matrix(0.187622,-0.003752,0.004999,0.249950,0,0);-ms-transform:matrix(0.187622,-0.003752,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187622,-0.003752,0.004999,0.249950,0,0);}
.m35_c00366{transform:matrix(0.187687,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187687,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187687,-0.003754,0.004999,0.249950,0,0);}
.mb7_c00366{transform:matrix(0.187772,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187772,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187772,-0.003755,0.004999,0.249950,0,0);}
.mb5_c00366{transform:matrix(0.187942,-0.003759,0.004999,0.249950,0,0);-ms-transform:matrix(0.187942,-0.003759,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187942,-0.003759,0.004999,0.249950,0,0);}
.m5d_c00366{transform:matrix(0.188497,-0.003770,0.004999,0.249950,0,0);-ms-transform:matrix(0.188497,-0.003770,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188497,-0.003770,0.004999,0.249950,0,0);}
.m4_c00366{transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.md0_c00366{transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);-ms-transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);}
.m98_c00366{transform:matrix(0.190037,-0.003801,0.004999,0.249950,0,0);-ms-transform:matrix(0.190037,-0.003801,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190037,-0.003801,0.004999,0.249950,0,0);}
.m3d_c00366{transform:matrix(0.190167,-0.003803,0.004999,0.249950,0,0);-ms-transform:matrix(0.190167,-0.003803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190167,-0.003803,0.004999,0.249950,0,0);}
.m94_c00366{transform:matrix(0.190632,-0.003813,0.004999,0.249950,0,0);-ms-transform:matrix(0.190632,-0.003813,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190632,-0.003813,0.004999,0.249950,0,0);}
.m3c_c00366{transform:matrix(0.190647,-0.003813,0.004999,0.249950,0,0);-ms-transform:matrix(0.190647,-0.003813,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190647,-0.003813,0.004999,0.249950,0,0);}
.ma4_c00366{transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);-ms-transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);}
.m9e_c00366{transform:matrix(0.191767,-0.003835,0.004999,0.249950,0,0);-ms-transform:matrix(0.191767,-0.003835,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191767,-0.003835,0.004999,0.249950,0,0);}
.m9c_c00366{transform:matrix(0.192052,-0.003841,0.004999,0.249950,0,0);-ms-transform:matrix(0.192052,-0.003841,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192052,-0.003841,0.004999,0.249950,0,0);}
.m12_c00366{transform:matrix(0.192185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192185,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.me5_c00366{transform:matrix(0.192502,-0.003850,0.004999,0.249950,0,0);-ms-transform:matrix(0.192502,-0.003850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192502,-0.003850,0.004999,0.249950,0,0);}
.m39_c00366{transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);}
.mba_c00366{transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192976,-0.003860,0.004999,0.249950,0,0);}
.m7c_c00366{transform:matrix(0.193196,-0.003864,0.004999,0.249950,0,0);-ms-transform:matrix(0.193196,-0.003864,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193196,-0.003864,0.004999,0.249950,0,0);}
.m70_c00366{transform:matrix(0.193426,-0.003869,0.004999,0.249950,0,0);-ms-transform:matrix(0.193426,-0.003869,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193426,-0.003869,0.004999,0.249950,0,0);}
.m76_c00366{transform:matrix(0.193816,-0.003876,0.004999,0.249950,0,0);-ms-transform:matrix(0.193816,-0.003876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193816,-0.003876,0.004999,0.249950,0,0);}
.me6_c00366{transform:matrix(0.194361,-0.003887,0.004999,0.249950,0,0);-ms-transform:matrix(0.194361,-0.003887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194361,-0.003887,0.004999,0.249950,0,0);}
.mc1_c00366{transform:matrix(0.194386,-0.003888,0.004999,0.249950,0,0);-ms-transform:matrix(0.194386,-0.003888,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194386,-0.003888,0.004999,0.249950,0,0);}
.mef_c00366{transform:matrix(0.194526,-0.003891,0.004999,0.249950,0,0);-ms-transform:matrix(0.194526,-0.003891,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194526,-0.003891,0.004999,0.249950,0,0);}
.m26_c00366{transform:matrix(0.194580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194580,0.000000,0.000000,0.250000,0,0);}
.m5a_c00366{transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);}
.m72_c00366{transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);}
.m3b_c00366{transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);}
.m42_c00366{transform:matrix(0.196191,-0.003924,0.004999,0.249950,0,0);-ms-transform:matrix(0.196191,-0.003924,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196191,-0.003924,0.004999,0.249950,0,0);}
.m19_c00366{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m64_c00366{transform:matrix(0.196546,-0.003931,0.004999,0.249950,0,0);-ms-transform:matrix(0.196546,-0.003931,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196546,-0.003931,0.004999,0.249950,0,0);}
.mab_c00366{transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);-ms-transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196696,-0.003934,0.004999,0.249950,0,0);}
.m54_c00366{transform:matrix(0.196866,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196866,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196866,-0.003937,0.004999,0.249950,0,0);}
.m11_c00366{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m97_c00366{transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);-ms-transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);}
.m2e_c00366{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.m6d_c00366{transform:matrix(0.197665,-0.003953,0.004999,0.249950,0,0);-ms-transform:matrix(0.197665,-0.003953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197665,-0.003953,0.004999,0.249950,0,0);}
.m10_c00366{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.198885,-0.003978,0.004999,0.249950,0,0);-ms-transform:matrix(0.198885,-0.003978,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198885,-0.003978,0.004999,0.249950,0,0);}
.mea_c00366{transform:matrix(0.199335,-0.003987,0.004999,0.249950,0,0);-ms-transform:matrix(0.199335,-0.003987,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199335,-0.003987,0.004999,0.249950,0,0);}
.m67_c00366{transform:matrix(0.199350,-0.003987,0.004999,0.249950,0,0);-ms-transform:matrix(0.199350,-0.003987,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199350,-0.003987,0.004999,0.249950,0,0);}
.ma2_c00366{transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-ms-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);}
.mca_c00366{transform:matrix(0.199555,-0.003991,0.004999,0.249950,0,0);-ms-transform:matrix(0.199555,-0.003991,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199555,-0.003991,0.004999,0.249950,0,0);}
.me0_c00366{transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);-ms-transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199805,-0.003996,0.004999,0.249950,0,0);}
.ma8_c00366{transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);-ms-transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);}
.m7e_c00366{transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);-ms-transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200640,-0.004013,0.004999,0.249950,0,0);}
.m81_c00366{transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);}
.m74_c00366{transform:matrix(0.201830,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201830,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201830,-0.004037,0.004999,0.249950,0,0);}
.ma5_c00366{transform:matrix(0.201850,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201850,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201850,-0.004037,0.004999,0.249950,0,0);}
.m46_c00366{transform:matrix(0.202914,-0.004058,0.004999,0.249950,0,0);-ms-transform:matrix(0.202914,-0.004058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202914,-0.004058,0.004999,0.249950,0,0);}
.m48_c00366{transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);-ms-transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203059,-0.004061,0.004999,0.249950,0,0);}
.m1d_c00366{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.mc9_c00366{transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203304,-0.004066,0.004999,0.249950,0,0);}
.m4c_c00366{transform:matrix(0.203444,-0.004069,0.004999,0.249950,0,0);-ms-transform:matrix(0.203444,-0.004069,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203444,-0.004069,0.004999,0.249950,0,0);}
.ma7_c00366{transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);}
.m28_c00366{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m80_c00366{transform:matrix(0.204114,-0.004082,0.004999,0.249950,0,0);-ms-transform:matrix(0.204114,-0.004082,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204114,-0.004082,0.004999,0.249950,0,0);}
.m9b_c00366{transform:matrix(0.204764,-0.004095,0.004999,0.249950,0,0);-ms-transform:matrix(0.204764,-0.004095,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204764,-0.004095,0.004999,0.249950,0,0);}
.maa_c00366{transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);-ms-transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204859,-0.004097,0.004999,0.249950,0,0);}
.m1c_c00366{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.md5_c00366{transform:matrix(0.205719,-0.004114,0.004999,0.249950,0,0);-ms-transform:matrix(0.205719,-0.004114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205719,-0.004114,0.004999,0.249950,0,0);}
.mbb_c00366{transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);-ms-transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206204,-0.004124,0.004999,0.249950,0,0);}
.m1f_c00366{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.mc6_c00366{transform:matrix(0.206364,-0.004127,0.004999,0.249950,0,0);-ms-transform:matrix(0.206364,-0.004127,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206364,-0.004127,0.004999,0.249950,0,0);}
.m6b_c00366{transform:matrix(0.206544,-0.004131,0.004999,0.249950,0,0);-ms-transform:matrix(0.206544,-0.004131,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206544,-0.004131,0.004999,0.249950,0,0);}
.m27_c00366{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.207049,-0.004141,0.004999,0.249950,0,0);-ms-transform:matrix(0.207049,-0.004141,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207049,-0.004141,0.004999,0.249950,0,0);}
.mac_c00366{transform:matrix(0.207274,-0.004145,0.004999,0.249950,0,0);-ms-transform:matrix(0.207274,-0.004145,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207274,-0.004145,0.004999,0.249950,0,0);}
.m41_c00366{transform:matrix(0.207339,-0.004147,0.004999,0.249950,0,0);-ms-transform:matrix(0.207339,-0.004147,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207339,-0.004147,0.004999,0.249950,0,0);}
.mb0_c00366{transform:matrix(0.207568,-0.004151,0.004999,0.249950,0,0);-ms-transform:matrix(0.207568,-0.004151,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207568,-0.004151,0.004999,0.249950,0,0);}
.m33_c00366{transform:matrix(0.207733,-0.004155,0.004999,0.249950,0,0);-ms-transform:matrix(0.207733,-0.004155,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207733,-0.004155,0.004999,0.249950,0,0);}
.m38_c00366{transform:matrix(0.207943,-0.004159,0.004999,0.249950,0,0);-ms-transform:matrix(0.207943,-0.004159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207943,-0.004159,0.004999,0.249950,0,0);}
.m6e_c00366{transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-ms-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208468,-0.004169,0.004999,0.249950,0,0);}
.me_c00366{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.208878,-0.004178,0.004999,0.249950,0,0);-ms-transform:matrix(0.208878,-0.004178,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208878,-0.004178,0.004999,0.249950,0,0);}
.m44_c00366{transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);-ms-transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);}
.m86_c00366{transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-ms-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209333,-0.004187,0.004999,0.249950,0,0);}
.md3_c00366{transform:matrix(0.209718,-0.004194,0.004999,0.249950,0,0);-ms-transform:matrix(0.209718,-0.004194,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209718,-0.004194,0.004999,0.249950,0,0);}
.m0_c00366{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.mcc_c00366{transform:matrix(0.210273,-0.004205,0.004999,0.249950,0,0);-ms-transform:matrix(0.210273,-0.004205,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210273,-0.004205,0.004999,0.249950,0,0);}
.mce_c00366{transform:matrix(0.210278,-0.004206,0.004999,0.249950,0,0);-ms-transform:matrix(0.210278,-0.004206,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210278,-0.004206,0.004999,0.249950,0,0);}
.m16_c00366{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.210853,-0.004217,0.004999,0.249950,0,0);-ms-transform:matrix(0.210853,-0.004217,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210853,-0.004217,0.004999,0.249950,0,0);}
.m3e_c00366{transform:matrix(0.211008,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.211008,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211008,-0.004220,0.004999,0.249950,0,0);}
.mf6_c00366{transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);}
.m31_c00366{transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211120,0.000000,0.000000,0.250000,0,0);}
.mc0_c00366{transform:matrix(0.211248,-0.004225,0.004999,0.249950,0,0);-ms-transform:matrix(0.211248,-0.004225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211248,-0.004225,0.004999,0.249950,0,0);}
.ma_c00366{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m71_c00366{transform:matrix(0.211843,-0.004237,0.004999,0.249950,0,0);-ms-transform:matrix(0.211843,-0.004237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211843,-0.004237,0.004999,0.249950,0,0);}
.m47_c00366{transform:matrix(0.212058,-0.004241,0.004999,0.249950,0,0);-ms-transform:matrix(0.212058,-0.004241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212058,-0.004241,0.004999,0.249950,0,0);}
.ma6_c00366{transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);}
.me8_c00366{transform:matrix(0.212223,-0.004244,0.004999,0.249950,0,0);-ms-transform:matrix(0.212223,-0.004244,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212223,-0.004244,0.004999,0.249950,0,0);}
.mae_c00366{transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-ms-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);}
.mec_c00366{transform:matrix(0.212508,-0.004250,0.004999,0.249950,0,0);-ms-transform:matrix(0.212508,-0.004250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212508,-0.004250,0.004999,0.249950,0,0);}
.m63_c00366{transform:matrix(0.213002,-0.004260,0.004999,0.249950,0,0);-ms-transform:matrix(0.213002,-0.004260,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213002,-0.004260,0.004999,0.249950,0,0);}
.m2c_c00366{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m8d_c00366{transform:matrix(0.213552,-0.004271,0.004999,0.249950,0,0);-ms-transform:matrix(0.213552,-0.004271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213552,-0.004271,0.004999,0.249950,0,0);}
.m66_c00366{transform:matrix(0.213782,-0.004276,0.004999,0.249950,0,0);-ms-transform:matrix(0.213782,-0.004276,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213782,-0.004276,0.004999,0.249950,0,0);}
.mf0_c00366{transform:matrix(0.214007,-0.004280,0.004999,0.249950,0,0);-ms-transform:matrix(0.214007,-0.004280,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214007,-0.004280,0.004999,0.249950,0,0);}
.mc4_c00366{transform:matrix(0.214722,-0.004294,0.004999,0.249950,0,0);-ms-transform:matrix(0.214722,-0.004294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214722,-0.004294,0.004999,0.249950,0,0);}
.mb8_c00366{transform:matrix(0.214917,-0.004298,0.004999,0.249950,0,0);-ms-transform:matrix(0.214917,-0.004298,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214917,-0.004298,0.004999,0.249950,0,0);}
.mb4_c00366{transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);-ms-transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215032,-0.004301,0.004999,0.249950,0,0);}
.m62_c00366{transform:matrix(0.215247,-0.004305,0.004999,0.249950,0,0);-ms-transform:matrix(0.215247,-0.004305,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215247,-0.004305,0.004999,0.249950,0,0);}
.mcd_c00366{transform:matrix(0.215277,-0.004306,0.004999,0.249950,0,0);-ms-transform:matrix(0.215277,-0.004306,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215277,-0.004306,0.004999,0.249950,0,0);}
.m91_c00366{transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);-ms-transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);}
.mc8_c00366{transform:matrix(0.215562,-0.004311,0.004999,0.249950,0,0);-ms-transform:matrix(0.215562,-0.004311,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215562,-0.004311,0.004999,0.249950,0,0);}
.mad_c00366{transform:matrix(0.216362,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216362,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216362,-0.004327,0.004999,0.249950,0,0);}
.m1e_c00366{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.me3_c00366{transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);-ms-transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);}
.m96_c00366{transform:matrix(0.217422,-0.004348,0.004999,0.249950,0,0);-ms-transform:matrix(0.217422,-0.004348,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217422,-0.004348,0.004999,0.249950,0,0);}
.m83_c00366{transform:matrix(0.217517,-0.004350,0.004999,0.249950,0,0);-ms-transform:matrix(0.217517,-0.004350,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217517,-0.004350,0.004999,0.249950,0,0);}
.md2_c00366{transform:matrix(0.217821,-0.004356,0.004999,0.249950,0,0);-ms-transform:matrix(0.217821,-0.004356,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217821,-0.004356,0.004999,0.249950,0,0);}
.m51_c00366{transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);-ms-transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217911,-0.004358,0.004999,0.249950,0,0);}
.meb_c00366{transform:matrix(0.218306,-0.004366,0.004999,0.249950,0,0);-ms-transform:matrix(0.218306,-0.004366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218306,-0.004366,0.004999,0.249950,0,0);}
.m77_c00366{transform:matrix(0.218531,-0.004371,0.004999,0.249950,0,0);-ms-transform:matrix(0.218531,-0.004371,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218531,-0.004371,0.004999,0.249950,0,0);}
.m95_c00366{transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-ms-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);}
.m8f_c00366{transform:matrix(0.218941,-0.004379,0.004999,0.249950,0,0);-ms-transform:matrix(0.218941,-0.004379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218941,-0.004379,0.004999,0.249950,0,0);}
.m69_c00366{transform:matrix(0.219011,-0.004380,0.004999,0.249950,0,0);-ms-transform:matrix(0.219011,-0.004380,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219011,-0.004380,0.004999,0.249950,0,0);}
.md6_c00366{transform:matrix(0.219156,-0.004383,0.004999,0.249950,0,0);-ms-transform:matrix(0.219156,-0.004383,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219156,-0.004383,0.004999,0.249950,0,0);}
.m3f_c00366{transform:matrix(0.220646,-0.004413,0.004999,0.249950,0,0);-ms-transform:matrix(0.220646,-0.004413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220646,-0.004413,0.004999,0.249950,0,0);}
.mde_c00366{transform:matrix(0.220681,-0.004414,0.004999,0.249950,0,0);-ms-transform:matrix(0.220681,-0.004414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220681,-0.004414,0.004999,0.249950,0,0);}
.m25_c00366{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.mb3_c00366{transform:matrix(0.221011,-0.004420,0.004999,0.249950,0,0);-ms-transform:matrix(0.221011,-0.004420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221011,-0.004420,0.004999,0.249950,0,0);}
.m50_c00366{transform:matrix(0.221126,-0.004423,0.004999,0.249950,0,0);-ms-transform:matrix(0.221126,-0.004423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221126,-0.004423,0.004999,0.249950,0,0);}
.m5b_c00366{transform:matrix(0.222021,-0.004440,0.004999,0.249950,0,0);-ms-transform:matrix(0.222021,-0.004440,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222021,-0.004440,0.004999,0.249950,0,0);}
.m90_c00366{transform:matrix(0.222071,-0.004441,0.004999,0.249950,0,0);-ms-transform:matrix(0.222071,-0.004441,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222071,-0.004441,0.004999,0.249950,0,0);}
.m4f_c00366{transform:matrix(0.222521,-0.004450,0.004999,0.249950,0,0);-ms-transform:matrix(0.222521,-0.004450,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222521,-0.004450,0.004999,0.249950,0,0);}
.mdd_c00366{transform:matrix(0.222910,-0.004458,0.004999,0.249950,0,0);-ms-transform:matrix(0.222910,-0.004458,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222910,-0.004458,0.004999,0.249950,0,0);}
.md7_c00366{transform:matrix(0.223820,-0.004476,0.004999,0.249950,0,0);-ms-transform:matrix(0.223820,-0.004476,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223820,-0.004476,0.004999,0.249950,0,0);}
.m4b_c00366{transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);-ms-transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223830,-0.004477,0.004999,0.249950,0,0);}
.m68_c00366{transform:matrix(0.224900,-0.004498,0.004999,0.249950,0,0);-ms-transform:matrix(0.224900,-0.004498,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224900,-0.004498,0.004999,0.249950,0,0);}
.md4_c00366{transform:matrix(0.225225,-0.004504,0.004999,0.249950,0,0);-ms-transform:matrix(0.225225,-0.004504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225225,-0.004504,0.004999,0.249950,0,0);}
.m87_c00366{transform:matrix(0.225280,-0.004506,0.004999,0.249950,0,0);-ms-transform:matrix(0.225280,-0.004506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225280,-0.004506,0.004999,0.249950,0,0);}
.mf5_c00366{transform:matrix(0.225520,-0.004510,0.004999,0.249950,0,0);-ms-transform:matrix(0.225520,-0.004510,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225520,-0.004510,0.004999,0.249950,0,0);}
.m7a_c00366{transform:matrix(0.225780,-0.004516,0.004999,0.249950,0,0);-ms-transform:matrix(0.225780,-0.004516,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225780,-0.004516,0.004999,0.249950,0,0);}
.m7d_c00366{transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);-ms-transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227050,-0.004541,0.004999,0.249950,0,0);}
.ma0_c00366{transform:matrix(0.228119,-0.004562,0.004999,0.249950,0,0);-ms-transform:matrix(0.228119,-0.004562,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228119,-0.004562,0.004999,0.249950,0,0);}
.me9_c00366{transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);-ms-transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);}
.mc7_c00366{transform:matrix(0.229949,-0.004599,0.004999,0.249950,0,0);-ms-transform:matrix(0.229949,-0.004599,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229949,-0.004599,0.004999,0.249950,0,0);}
.m8e_c00366{transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);-ms-transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);}
.m20_c00366{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m56_c00366{transform:matrix(0.231689,-0.004634,0.004999,0.249950,0,0);-ms-transform:matrix(0.231689,-0.004634,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231689,-0.004634,0.004999,0.249950,0,0);}
.m79_c00366{transform:matrix(0.232329,-0.004647,0.004999,0.249950,0,0);-ms-transform:matrix(0.232329,-0.004647,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232329,-0.004647,0.004999,0.249950,0,0);}
.m85_c00366{transform:matrix(0.233953,-0.004679,0.004999,0.249950,0,0);-ms-transform:matrix(0.233953,-0.004679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233953,-0.004679,0.004999,0.249950,0,0);}
.m15_c00366{transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233970,0.000000,0.000000,0.250000,0,0);}
.m78_c00366{transform:matrix(0.234883,-0.004698,0.004999,0.249950,0,0);-ms-transform:matrix(0.234883,-0.004698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234883,-0.004698,0.004999,0.249950,0,0);}
.m65_c00366{transform:matrix(0.234988,-0.004700,0.004999,0.249950,0,0);-ms-transform:matrix(0.234988,-0.004700,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234988,-0.004700,0.004999,0.249950,0,0);}
.m52_c00366{transform:matrix(0.235543,-0.004711,0.004999,0.249950,0,0);-ms-transform:matrix(0.235543,-0.004711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235543,-0.004711,0.004999,0.249950,0,0);}
.mc3_c00366{transform:matrix(0.235873,-0.004717,0.004999,0.249950,0,0);-ms-transform:matrix(0.235873,-0.004717,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235873,-0.004717,0.004999,0.249950,0,0);}
.md_c00366{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m60_c00366{transform:matrix(0.237223,-0.004744,0.004999,0.249950,0,0);-ms-transform:matrix(0.237223,-0.004744,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237223,-0.004744,0.004999,0.249950,0,0);}
.m37_c00366{transform:matrix(0.238372,-0.004767,0.004999,0.249950,0,0);-ms-transform:matrix(0.238372,-0.004767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238372,-0.004767,0.004999,0.249950,0,0);}
.me4_c00366{transform:matrix(0.239077,-0.004782,0.004999,0.249950,0,0);-ms-transform:matrix(0.239077,-0.004782,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239077,-0.004782,0.004999,0.249950,0,0);}
.m4e_c00366{transform:matrix(0.239362,-0.004787,0.004999,0.249950,0,0);-ms-transform:matrix(0.239362,-0.004787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239362,-0.004787,0.004999,0.249950,0,0);}
.m24_c00366{transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);}
.mb1_c00366{transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);-ms-transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240927,-0.004819,0.004999,0.249950,0,0);}
.med_c00366{transform:matrix(0.242492,-0.004850,0.004999,0.249950,0,0);-ms-transform:matrix(0.242492,-0.004850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242492,-0.004850,0.004999,0.249950,0,0);}
.m6f_c00366{transform:matrix(0.245051,-0.004901,0.004999,0.249950,0,0);-ms-transform:matrix(0.245051,-0.004901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245051,-0.004901,0.004999,0.249950,0,0);}
.mcb_c00366{transform:matrix(0.247550,-0.004951,0.004999,0.249950,0,0);-ms-transform:matrix(0.247550,-0.004951,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247550,-0.004951,0.004999,0.249950,0,0);}
.m6a_c00366{transform:matrix(0.248440,-0.004969,0.004999,0.249950,0,0);-ms-transform:matrix(0.248440,-0.004969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.248440,-0.004969,0.004999,0.249950,0,0);}
.m53_c00366{transform:matrix(0.249160,-0.004983,0.004999,0.249950,0,0);-ms-transform:matrix(0.249160,-0.004983,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249160,-0.004983,0.004999,0.249950,0,0);}
.me7_c00366{transform:matrix(0.251290,-0.005026,0.004999,0.249950,0,0);-ms-transform:matrix(0.251290,-0.005026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251290,-0.005026,0.004999,0.249950,0,0);}
.me1_c00366{transform:matrix(0.251365,-0.005027,0.004999,0.249950,0,0);-ms-transform:matrix(0.251365,-0.005027,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251365,-0.005027,0.004999,0.249950,0,0);}
.m17_c00366{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.md8_c00366{transform:matrix(0.254324,-0.005086,0.004999,0.249950,0,0);-ms-transform:matrix(0.254324,-0.005086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254324,-0.005086,0.004999,0.249950,0,0);}
.m57_c00366{transform:matrix(0.256129,-0.005123,0.004999,0.249950,0,0);-ms-transform:matrix(0.256129,-0.005123,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256129,-0.005123,0.004999,0.249950,0,0);}
.mee_c00366{transform:matrix(0.256939,-0.005139,0.004999,0.249950,0,0);-ms-transform:matrix(0.256939,-0.005139,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256939,-0.005139,0.004999,0.249950,0,0);}
.m1b_c00366{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m58_c00366{transform:matrix(0.260663,-0.005213,0.004999,0.249950,0,0);-ms-transform:matrix(0.260663,-0.005213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.260663,-0.005213,0.004999,0.249950,0,0);}
.mdf_c00366{transform:matrix(0.315077,-0.006302,0.004999,0.249950,0,0);-ms-transform:matrix(0.315077,-0.006302,0.004999,0.249950,0,0);-webkit-transform:matrix(0.315077,-0.006302,0.004999,0.249950,0,0);}
.m1a_c00366{transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);}
.m75_c00366{transform:matrix(0.326085,-0.006522,0.004999,0.249950,0,0);-ms-transform:matrix(0.326085,-0.006522,0.004999,0.249950,0,0);-webkit-transform:matrix(0.326085,-0.006522,0.004999,0.249950,0,0);}
.mbc_c00366{transform:matrix(0.337328,-0.006747,0.004999,0.249950,0,0);-ms-transform:matrix(0.337328,-0.006747,0.004999,0.249950,0,0);-webkit-transform:matrix(0.337328,-0.006747,0.004999,0.249950,0,0);}
.mc2_c00366{transform:matrix(0.365137,-0.007303,0.004999,0.249950,0,0);-ms-transform:matrix(0.365137,-0.007303,0.004999,0.249950,0,0);-webkit-transform:matrix(0.365137,-0.007303,0.004999,0.249950,0,0);}
.md1_c00366{transform:matrix(0.876290,-0.017526,0.004999,0.249950,0,0);-ms-transform:matrix(0.876290,-0.017526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.876290,-0.017526,0.004999,0.249950,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:0.000000px;}
.fc0_c00366{color:transparent;}
.fs8_c00366{font-size:55.661129px;}
.fsf_c00366{font-size:56.711339px;}
.fs3_c00366{font-size:57.750000px;}
.fsa_c00366{font-size:57.761549px;}
.fs6_c00366{font-size:58.811759px;}
.fs0_c00366{font-size:59.850000px;}
.fs5_c00366{font-size:59.861969px;}
.fsb_c00366{font-size:60.912179px;}
.fsd_c00366{font-size:61.962389px;}
.fs7_c00366{font-size:63.012599px;}
.fs2_c00366{font-size:64.050000px;}
.fsc_c00366{font-size:64.062809px;}
.fs4_c00366{font-size:65.100000px;}
.fse_c00366{font-size:65.113019px;}
.fs9_c00366{font-size:66.163229px;}
.fs10_c00366{font-size:67.213439px;}
.fs1_c00366{font-size:70.350000px;}
.y0_c00366{bottom:0.000000px;}
.yf2_c00366{bottom:25.034880px;}
.yf3_c00366{bottom:26.130000px;}
.yf4_c00366{bottom:26.737530px;}
.yf5_c00366{bottom:27.143250px;}
.yf6_c00366{bottom:28.204020px;}
.yf7_c00366{bottom:28.657500px;}
.yf8_c00366{bottom:29.037840px;}
.yf9_c00366{bottom:30.099840px;}
.yec_c00366{bottom:42.051060px;}
.yed_c00366{bottom:43.459410px;}
.yee_c00366{bottom:44.988240px;}
.yef_c00366{bottom:45.848760px;}
.yf0_c00366{bottom:47.295090px;}
.yf1_c00366{bottom:47.882550px;}
.ye5_c00366{bottom:62.298600px;}
.ye6_c00366{bottom:63.139470px;}
.ye7_c00366{bottom:63.961110px;}
.ye8_c00366{bottom:64.313820px;}
.ye9_c00366{bottom:64.608900px;}
.yea_c00366{bottom:65.176860px;}
.yeb_c00366{bottom:65.897370px;}
.ydb_c00366{bottom:77.150160px;}
.ydc_c00366{bottom:77.539350px;}
.ydd_c00366{bottom:78.124560px;}
.yde_c00366{bottom:78.545430px;}
.ydf_c00366{bottom:79.413120px;}
.ye0_c00366{bottom:80.184900px;}
.ye1_c00366{bottom:82.452000px;}
.ye2_c00366{bottom:82.729680px;}
.ye3_c00366{bottom:82.993650px;}
.ye4_c00366{bottom:83.509470px;}
.yd3_c00366{bottom:94.978050px;}
.yd4_c00366{bottom:95.991870px;}
.yd5_c00366{bottom:96.434550px;}
.yd6_c00366{bottom:97.641150px;}
.yd7_c00366{bottom:98.389800px;}
.yd8_c00366{bottom:99.082350px;}
.yd9_c00366{bottom:100.601910px;}
.yda_c00366{bottom:100.907100px;}
.ycc_c00366{bottom:111.182430px;}
.ycd_c00366{bottom:112.369110px;}
.yce_c00366{bottom:113.858370px;}
.ycf_c00366{bottom:114.351420px;}
.yd0_c00366{bottom:116.036940px;}
.yd1_c00366{bottom:117.252900px;}
.yd2_c00366{bottom:117.741120px;}
.yc4_c00366{bottom:127.926090px;}
.yc5_c00366{bottom:128.250660px;}
.yc6_c00366{bottom:128.826720px;}
.yc7_c00366{bottom:129.918360px;}
.yc8_c00366{bottom:130.601520px;}
.yc9_c00366{bottom:131.487060px;}
.yca_c00366{bottom:132.842850px;}
.ycb_c00366{bottom:133.128900px;}
.ybd_c00366{bottom:144.396420px;}
.ybe_c00366{bottom:144.881370px;}
.ybf_c00366{bottom:145.596810px;}
.yc0_c00366{bottom:146.127000px;}
.yc1_c00366{bottom:147.296430px;}
.yc2_c00366{bottom:148.246410px;}
.yc3_c00366{bottom:149.324610px;}
.yb5_c00366{bottom:160.879980px;}
.yb6_c00366{bottom:162.277170px;}
.yb7_c00366{bottom:162.974340px;}
.yb8_c00366{bottom:163.416840px;}
.yb9_c00366{bottom:164.912190px;}
.yba_c00366{bottom:166.435140px;}
.ybb_c00366{bottom:167.087580px;}
.ybc_c00366{bottom:167.621970px;}
.yaf_c00366{bottom:181.404030px;}
.yb0_c00366{bottom:181.404540px;}
.yae_c00366{bottom:181.404660px;}
.yb2_c00366{bottom:181.404750px;}
.yb4_c00366{bottom:181.404900px;}
.yb3_c00366{bottom:181.404990px;}
.yb1_c00366{bottom:181.405050px;}
.ya6_c00366{bottom:195.441840px;}
.ya7_c00366{bottom:195.945480px;}
.ya8_c00366{bottom:197.267490px;}
.ya9_c00366{bottom:198.732540px;}
.yaa_c00366{bottom:199.239360px;}
.yab_c00366{bottom:199.862940px;}
.yac_c00366{bottom:201.037140px;}
.yad_c00366{bottom:201.643830px;}
.y9e_c00366{bottom:213.262620px;}
.y9f_c00366{bottom:213.723570px;}
.ya0_c00366{bottom:214.565790px;}
.ya1_c00366{bottom:214.876830px;}
.ya2_c00366{bottom:216.130890px;}
.ya3_c00366{bottom:216.893340px;}
.ya4_c00366{bottom:217.248780px;}
.ya5_c00366{bottom:218.114220px;}
.y97_c00366{bottom:230.548440px;}
.y98_c00366{bottom:231.776430px;}
.y99_c00366{bottom:232.291380px;}
.y9a_c00366{bottom:233.284740px;}
.y9b_c00366{bottom:233.670810px;}
.y9c_c00366{bottom:234.928080px;}
.y9d_c00366{bottom:235.614120px;}
.y8e_c00366{bottom:247.291080px;}
.y8f_c00366{bottom:248.095200px;}
.y90_c00366{bottom:248.382000px;}
.y91_c00366{bottom:249.611340px;}
.y92_c00366{bottom:250.174650px;}
.y93_c00366{bottom:251.010300px;}
.y94_c00366{bottom:251.525250px;}
.y95_c00366{bottom:251.871090px;}
.y96_c00366{bottom:252.918690px;}
.y88_c00366{bottom:266.731230px;}
.y89_c00366{bottom:267.821670px;}
.y8a_c00366{bottom:268.209060px;}
.y8b_c00366{bottom:269.083350px;}
.y8c_c00366{bottom:270.088020px;}
.y8d_c00366{bottom:270.576030px;}
.y7f_c00366{bottom:282.933180px;}
.y80_c00366{bottom:283.238820px;}
.y81_c00366{bottom:283.702080px;}
.y82_c00366{bottom:284.246220px;}
.y83_c00366{bottom:284.579460px;}
.y84_c00366{bottom:284.856690px;}
.y85_c00366{bottom:285.997260px;}
.y86_c00366{bottom:286.269900px;}
.y87_c00366{bottom:287.359350px;}
.y76_c00366{bottom:299.678730px;}
.y77_c00366{bottom:300.234600px;}
.y78_c00366{bottom:300.710040px;}
.y79_c00366{bottom:301.804200px;}
.y7a_c00366{bottom:302.076750px;}
.y7b_c00366{bottom:303.383190px;}
.y7c_c00366{bottom:303.615780px;}
.y7d_c00366{bottom:303.961620px;}
.y7e_c00366{bottom:304.464150px;}
.y6f_c00366{bottom:316.963200px;}
.y70_c00366{bottom:317.848710px;}
.y71_c00366{bottom:318.744900px;}
.y72_c00366{bottom:319.885650px;}
.y73_c00366{bottom:320.923500px;}
.y74_c00366{bottom:321.537450px;}
.y75_c00366{bottom:321.971040px;}
.y68_c00366{bottom:332.898660px;}
.y69_c00366{bottom:333.816480px;}
.y6a_c00366{bottom:334.759710px;}
.y6b_c00366{bottom:336.711510px;}
.y6c_c00366{bottom:338.065350px;}
.y6d_c00366{bottom:338.435400px;}
.y6e_c00366{bottom:338.937810px;}
.y61_c00366{bottom:348.833310px;}
.y62_c00366{bottom:349.877910px;}
.y63_c00366{bottom:350.203170px;}
.y64_c00366{bottom:352.093050px;}
.y65_c00366{bottom:353.315010px;}
.y66_c00366{bottom:353.972880px;}
.y67_c00366{bottom:355.287120px;}
.y5a_c00366{bottom:365.036700px;}
.y5b_c00366{bottom:366.784770px;}
.y5c_c00366{bottom:367.098750px;}
.y5d_c00366{bottom:368.462730px;}
.y5e_c00366{bottom:370.176390px;}
.y5f_c00366{bottom:371.807070px;}
.y60_c00366{bottom:372.517350px;}
.y53_c00366{bottom:384.204300px;}
.y54_c00366{bottom:385.184580px;}
.y55_c00366{bottom:385.896720px;}
.y56_c00366{bottom:386.121060px;}
.y57_c00366{bottom:387.030720px;}
.y58_c00366{bottom:387.717870px;}
.y59_c00366{bottom:387.883110px;}
.y4a_c00366{bottom:398.520870px;}
.y4b_c00366{bottom:399.257640px;}
.y4c_c00366{bottom:400.830300px;}
.y4d_c00366{bottom:401.785860px;}
.y4e_c00366{bottom:402.460680px;}
.y4f_c00366{bottom:403.014870px;}
.y50_c00366{bottom:404.122710px;}
.y51_c00366{bottom:404.962800px;}
.y52_c00366{bottom:405.530790px;}
.y41_c00366{bottom:415.802010px;}
.y42_c00366{bottom:416.205390px;}
.y43_c00366{bottom:417.241620px;}
.y44_c00366{bottom:417.715590px;}
.y45_c00366{bottom:418.265820px;}
.y46_c00366{bottom:418.571190px;}
.y47_c00366{bottom:419.206860px;}
.y48_c00366{bottom:420.941580px;}
.y49_c00366{bottom:421.697040px;}
.y38_c00366{bottom:433.084590px;}
.y39_c00366{bottom:434.057070px;}
.y3a_c00366{bottom:434.537010px;}
.y3b_c00366{bottom:435.614580px;}
.y3c_c00366{bottom:436.070340px;}
.y3d_c00366{bottom:436.705410px;}
.y3e_c00366{bottom:437.150610px;}
.y3f_c00366{bottom:438.477690px;}
.y40_c00366{bottom:439.176030px;}
.y34_c00366{bottom:450.364500px;}
.y35_c00366{bottom:450.849540px;}
.y36_c00366{bottom:451.326810px;}
.y37_c00366{bottom:455.217480px;}
.y2c_c00366{bottom:466.561500px;}
.y2d_c00366{bottom:467.128500px;}
.y2e_c00366{bottom:467.373000px;}
.y2f_c00366{bottom:467.749500px;}
.y30_c00366{bottom:468.861000px;}
.y31_c00366{bottom:469.191000px;}
.y32_c00366{bottom:470.196000px;}
.y33_c00366{bottom:471.082500px;}
.y23_c00366{bottom:483.307500px;}
.y24_c00366{bottom:484.158000px;}
.y25_c00366{bottom:484.594500px;}
.y26_c00366{bottom:485.764500px;}
.y27_c00366{bottom:486.312000px;}
.y28_c00366{bottom:487.762500px;}
.y29_c00366{bottom:488.266500px;}
.y2a_c00366{bottom:489.901500px;}
.y2b_c00366{bottom:490.306500px;}
.y1b_c00366{bottom:500.859000px;}
.y1c_c00366{bottom:501.609000px;}
.y1d_c00366{bottom:502.045500px;}
.y1e_c00366{bottom:503.611500px;}
.y1f_c00366{bottom:504.705000px;}
.y20_c00366{bottom:505.147500px;}
.y21_c00366{bottom:505.860000px;}
.y22_c00366{bottom:507.619500px;}
.y14_c00366{bottom:517.059000px;}
.y15_c00366{bottom:518.157000px;}
.y16_c00366{bottom:518.682000px;}
.y17_c00366{bottom:520.608000px;}
.y18_c00366{bottom:521.125500px;}
.y19_c00366{bottom:523.390500px;}
.y1a_c00366{bottom:524.185500px;}
.ya_c00366{bottom:534.069000px;}
.yb_c00366{bottom:535.131000px;}
.yc_c00366{bottom:535.431000px;}
.yd_c00366{bottom:536.463000px;}
.ye_c00366{bottom:536.889000px;}
.yf_c00366{bottom:538.137000px;}
.y10_c00366{bottom:538.653000px;}
.y11_c00366{bottom:539.140500px;}
.y12_c00366{bottom:540.426000px;}
.y13_c00366{bottom:540.930000px;}
.y2_c00366{bottom:551.619000px;}
.y3_c00366{bottom:552.568500px;}
.y4_c00366{bottom:553.165500px;}
.y5_c00366{bottom:553.813500px;}
.y6_c00366{bottom:555.970500px;}
.y7_c00366{bottom:556.722000px;}
.y8_c00366{bottom:557.229000px;}
.y9_c00366{bottom:559.071000px;}
.y1_c00366{bottom:573.223500px;}
.ha_c00366{height:55.661129px;}
.h11_c00366{height:56.711339px;}
.h5_c00366{height:57.750000px;}
.hc_c00366{height:57.761549px;}
.h8_c00366{height:58.811759px;}
.h2_c00366{height:59.850000px;}
.h7_c00366{height:59.861969px;}
.hd_c00366{height:60.912179px;}
.hf_c00366{height:61.962389px;}
.h9_c00366{height:63.012599px;}
.h4_c00366{height:64.050000px;}
.he_c00366{height:64.062809px;}
.h6_c00366{height:65.100000px;}
.h10_c00366{height:65.113019px;}
.hb_c00366{height:66.163229px;}
.h12_c00366{height:67.213439px;}
.h3_c00366{height:70.350000px;}
.h0_c00366{height:613.170000px;}
.h1_c00366{height:613.500000px;}
.w0_c00366{width:359.100000px;}
.w1_c00366{width:359.250000px;}
.x0_c00366{left:0.000000px;}
.x64_c00366{left:17.003670px;}
.x2_c00366{left:18.931500px;}
.x27_c00366{left:20.445000px;}
.x34_c00366{left:22.137150px;}
.x5b_c00366{left:23.209950px;}
.x67_c00366{left:24.232890px;}
.x53_c00366{left:27.479100px;}
.x6d_c00366{left:29.449290px;}
.x78_c00366{left:31.765530px;}
.x77_c00366{left:33.113280px;}
.x6f_c00366{left:35.903610px;}
.x35_c00366{left:38.929800px;}
.x61_c00366{left:41.613810px;}
.x2b_c00366{left:43.529190px;}
.x28_c00366{left:44.697000px;}
.x54_c00366{left:46.587630px;}
.x17_c00366{left:49.003500px;}
.x3a_c00366{left:50.560770px;}
.x6a_c00366{left:51.733230px;}
.x3_c00366{left:52.864500px;}
.x12_c00366{left:56.526000px;}
.x49_c00366{left:58.914810px;}
.xa_c00366{left:61.479000px;}
.x5c_c00366{left:63.415950px;}
.x18_c00366{left:66.448500px;}
.x29_c00366{left:68.560500px;}
.x1d_c00366{left:70.678500px;}
.x72_c00366{left:72.593970px;}
.x4_c00366{left:74.193000px;}
.x55_c00366{left:75.527940px;}
.x5d_c00366{left:77.755950px;}
.x2c_c00366{left:82.399290px;}
.x70_c00366{left:85.333650px;}
.x46_c00366{left:86.430810px;}
.x5f_c00366{left:87.888480px;}
.x24_c00366{left:89.544000px;}
.x6b_c00366{left:91.481820px;}
.x4b_c00366{left:93.445860px;}
.x41_c00366{left:96.007290px;}
.x5_c00366{left:97.321500px;}
.x62_c00366{left:99.085860px;}
.x59_c00366{left:100.534920px;}
.x2d_c00366{left:101.594370px;}
.x68_c00366{left:104.791230px;}
.x56_c00366{left:109.562670px;}
.x3b_c00366{left:113.437470px;}
.xb_c00366{left:114.796500px;}
.x1e_c00366{left:117.487500px;}
.x69_c00366{left:121.814190px;}
.x75_c00366{left:123.008070px;}
.x36_c00366{left:124.769430px;}
.x19_c00366{left:129.082500px;}
.x57_c00366{left:130.351320px;}
.xc_c00366{left:131.823000px;}
.x37_c00366{left:137.486910px;}
.x1f_c00366{left:139.377000px;}
.x13_c00366{left:141.027000px;}
.x2e_c00366{left:144.668550px;}
.x65_c00366{left:146.900100px;}
.x47_c00366{left:148.570110px;}
.x1_c00366{left:150.660000px;}
.x3c_c00366{left:151.686660px;}
.x25_c00366{left:154.933500px;}
.x76_c00366{left:156.570060px;}
.x14_c00366{left:158.863500px;}
.x2f_c00366{left:162.879720px;}
.x38_c00366{left:163.943280px;}
.x42_c00366{left:168.116400px;}
.x1a_c00366{left:172.828500px;}
.x6_c00366{left:174.360000px;}
.x3d_c00366{left:178.674960px;}
.xd_c00366{left:181.762500px;}
.x79_c00366{left:183.610320px;}
.x63_c00366{left:184.849230px;}
.x6c_c00366{left:185.916600px;}
.x30_c00366{left:188.255670px;}
.x1b_c00366{left:190.516500px;}
.x20_c00366{left:197.391000px;}
.x7_c00366{left:201.205500px;}
.xe_c00366{left:202.417500px;}
.x31_c00366{left:206.088900px;}
.x51_c00366{left:207.092580px;}
.x5e_c00366{left:209.170950px;}
.x48_c00366{left:212.044230px;}
.x21_c00366{left:217.575000px;}
.x8_c00366{left:219.334500px;}
.x4c_c00366{left:220.612620px;}
.xf_c00366{left:221.905500px;}
.x60_c00366{left:224.886300px;}
.x4f_c00366{left:229.526610px;}
.x7a_c00366{left:231.685230px;}
.x26_c00366{left:233.512500px;}
.x4d_c00366{left:234.838410px;}
.x58_c00366{left:235.956750px;}
.x15_c00366{left:236.988000px;}
.x43_c00366{left:238.059180px;}
.x66_c00366{left:240.609570px;}
.x3e_c00366{left:245.119800px;}
.x6e_c00366{left:246.222450px;}
.x50_c00366{left:249.255330px;}
.x4a_c00366{left:252.094410px;}
.x4e_c00366{left:254.181600px;}
.x32_c00366{left:259.162590px;}
.x52_c00366{left:261.140580px;}
.x2a_c00366{left:263.094000px;}
.x16_c00366{left:264.415500px;}
.x39_c00366{left:267.668970px;}
.x10_c00366{left:273.322500px;}
.x3f_c00366{left:278.720940px;}
.x22_c00366{left:282.996000px;}
.x9_c00366{left:285.094500px;}
.x33_c00366{left:287.101800px;}
.x1c_c00366{left:289.410000px;}
.x44_c00366{left:290.949090px;}
.x73_c00366{left:292.141590px;}
.x11_c00366{left:293.458500px;}
.x5a_c00366{left:297.151470px;}
.x23_c00366{left:299.220000px;}
.x40_c00366{left:301.418160px;}
.x45_c00366{left:303.712890px;}
.x74_c00366{left:306.650790px;}
.x71_c00366{left:309.216270px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.fs8_c00366{font-size:49.476559pt;}
.fsf_c00366{font-size:50.410079pt;}
.fs3_c00366{font-size:51.333333pt;}
.fsa_c00366{font-size:51.343599pt;}
.fs6_c00366{font-size:52.277119pt;}
.fs0_c00366{font-size:53.200000pt;}
.fs5_c00366{font-size:53.210639pt;}
.fsb_c00366{font-size:54.144159pt;}
.fsd_c00366{font-size:55.077679pt;}
.fs7_c00366{font-size:56.011199pt;}
.fs2_c00366{font-size:56.933333pt;}
.fsc_c00366{font-size:56.944719pt;}
.fs4_c00366{font-size:57.866667pt;}
.fse_c00366{font-size:57.878239pt;}
.fs9_c00366{font-size:58.811759pt;}
.fs10_c00366{font-size:59.745279pt;}
.fs1_c00366{font-size:62.533333pt;}
.y0_c00366{bottom:0.000000pt;}
.yf2_c00366{bottom:22.253227pt;}
.yf3_c00366{bottom:23.226667pt;}
.yf4_c00366{bottom:23.766693pt;}
.yf5_c00366{bottom:24.127333pt;}
.yf6_c00366{bottom:25.070240pt;}
.yf7_c00366{bottom:25.473333pt;}
.yf8_c00366{bottom:25.811413pt;}
.yf9_c00366{bottom:26.755413pt;}
.yec_c00366{bottom:37.378720pt;}
.yed_c00366{bottom:38.630587pt;}
.yee_c00366{bottom:39.989547pt;}
.yef_c00366{bottom:40.754453pt;}
.yf0_c00366{bottom:42.040080pt;}
.yf1_c00366{bottom:42.562267pt;}
.ye5_c00366{bottom:55.376533pt;}
.ye6_c00366{bottom:56.123973pt;}
.ye7_c00366{bottom:56.854320pt;}
.ye8_c00366{bottom:57.167840pt;}
.ye9_c00366{bottom:57.430133pt;}
.yea_c00366{bottom:57.934987pt;}
.yeb_c00366{bottom:58.575440pt;}
.ydb_c00366{bottom:68.577920pt;}
.ydc_c00366{bottom:68.923867pt;}
.ydd_c00366{bottom:69.444053pt;}
.yde_c00366{bottom:69.818160pt;}
.ydf_c00366{bottom:70.589440pt;}
.ye0_c00366{bottom:71.275467pt;}
.ye1_c00366{bottom:73.290667pt;}
.ye2_c00366{bottom:73.537493pt;}
.ye3_c00366{bottom:73.772133pt;}
.ye4_c00366{bottom:74.230640pt;}
.yd3_c00366{bottom:84.424933pt;}
.yd4_c00366{bottom:85.326107pt;}
.yd5_c00366{bottom:85.719600pt;}
.yd6_c00366{bottom:86.792133pt;}
.yd7_c00366{bottom:87.457600pt;}
.yd8_c00366{bottom:88.073200pt;}
.yd9_c00366{bottom:89.423920pt;}
.yda_c00366{bottom:89.695200pt;}
.ycc_c00366{bottom:98.828827pt;}
.ycd_c00366{bottom:99.883653pt;}
.yce_c00366{bottom:101.207440pt;}
.ycf_c00366{bottom:101.645707pt;}
.yd0_c00366{bottom:103.143947pt;}
.yd1_c00366{bottom:104.224800pt;}
.yd2_c00366{bottom:104.658773pt;}
.yc4_c00366{bottom:113.712080pt;}
.yc5_c00366{bottom:114.000587pt;}
.yc6_c00366{bottom:114.512640pt;}
.yc7_c00366{bottom:115.482987pt;}
.yc8_c00366{bottom:116.090240pt;}
.yc9_c00366{bottom:116.877387pt;}
.yca_c00366{bottom:118.082533pt;}
.ycb_c00366{bottom:118.336800pt;}
.ybd_c00366{bottom:128.352373pt;}
.ybe_c00366{bottom:128.783440pt;}
.ybf_c00366{bottom:129.419387pt;}
.yc0_c00366{bottom:129.890667pt;}
.yc1_c00366{bottom:130.930160pt;}
.yc2_c00366{bottom:131.774587pt;}
.yc3_c00366{bottom:132.732987pt;}
.yb5_c00366{bottom:143.004427pt;}
.yb6_c00366{bottom:144.246373pt;}
.yb7_c00366{bottom:144.866080pt;}
.yb8_c00366{bottom:145.259413pt;}
.yb9_c00366{bottom:146.588613pt;}
.yba_c00366{bottom:147.942347pt;}
.ybb_c00366{bottom:148.522293pt;}
.ybc_c00366{bottom:148.997307pt;}
.yaf_c00366{bottom:161.248027pt;}
.yb0_c00366{bottom:161.248480pt;}
.yae_c00366{bottom:161.248587pt;}
.yb2_c00366{bottom:161.248667pt;}
.yb4_c00366{bottom:161.248800pt;}
.yb3_c00366{bottom:161.248880pt;}
.yb1_c00366{bottom:161.248933pt;}
.ya6_c00366{bottom:173.726080pt;}
.ya7_c00366{bottom:174.173760pt;}
.ya8_c00366{bottom:175.348880pt;}
.ya9_c00366{bottom:176.651147pt;}
.yaa_c00366{bottom:177.101653pt;}
.yab_c00366{bottom:177.655947pt;}
.yac_c00366{bottom:178.699680pt;}
.yad_c00366{bottom:179.238960pt;}
.y9e_c00366{bottom:189.566773pt;}
.y9f_c00366{bottom:189.976507pt;}
.ya0_c00366{bottom:190.725147pt;}
.ya1_c00366{bottom:191.001627pt;}
.ya2_c00366{bottom:192.116347pt;}
.ya3_c00366{bottom:192.794080pt;}
.ya4_c00366{bottom:193.110027pt;}
.ya5_c00366{bottom:193.879307pt;}
.y97_c00366{bottom:204.931947pt;}
.y98_c00366{bottom:206.023493pt;}
.y99_c00366{bottom:206.481227pt;}
.y9a_c00366{bottom:207.364213pt;}
.y9b_c00366{bottom:207.707387pt;}
.y9c_c00366{bottom:208.824960pt;}
.y9d_c00366{bottom:209.434773pt;}
.y8e_c00366{bottom:219.814293pt;}
.y8f_c00366{bottom:220.529067pt;}
.y90_c00366{bottom:220.784000pt;}
.y91_c00366{bottom:221.876747pt;}
.y92_c00366{bottom:222.377467pt;}
.y93_c00366{bottom:223.120267pt;}
.y94_c00366{bottom:223.578000pt;}
.y95_c00366{bottom:223.885413pt;}
.y96_c00366{bottom:224.816613pt;}
.y88_c00366{bottom:237.094427pt;}
.y89_c00366{bottom:238.063707pt;}
.y8a_c00366{bottom:238.408053pt;}
.y8b_c00366{bottom:239.185200pt;}
.y8c_c00366{bottom:240.078240pt;}
.y8d_c00366{bottom:240.512027pt;}
.y7f_c00366{bottom:251.496160pt;}
.y80_c00366{bottom:251.767840pt;}
.y81_c00366{bottom:252.179627pt;}
.y82_c00366{bottom:252.663307pt;}
.y83_c00366{bottom:252.959520pt;}
.y84_c00366{bottom:253.205947pt;}
.y85_c00366{bottom:254.219787pt;}
.y86_c00366{bottom:254.462133pt;}
.y87_c00366{bottom:255.430533pt;}
.y76_c00366{bottom:266.381093pt;}
.y77_c00366{bottom:266.875200pt;}
.y78_c00366{bottom:267.297813pt;}
.y79_c00366{bottom:268.270400pt;}
.y7a_c00366{bottom:268.512667pt;}
.y7b_c00366{bottom:269.673947pt;}
.y7c_c00366{bottom:269.880693pt;}
.y7d_c00366{bottom:270.188107pt;}
.y7e_c00366{bottom:270.634800pt;}
.y6f_c00366{bottom:281.745067pt;}
.y70_c00366{bottom:282.532187pt;}
.y71_c00366{bottom:283.328800pt;}
.y72_c00366{bottom:284.342800pt;}
.y73_c00366{bottom:285.265333pt;}
.y74_c00366{bottom:285.811067pt;}
.y75_c00366{bottom:286.196480pt;}
.y68_c00366{bottom:295.909920pt;}
.y69_c00366{bottom:296.725760pt;}
.y6a_c00366{bottom:297.564187pt;}
.y6b_c00366{bottom:299.299120pt;}
.y6c_c00366{bottom:300.502533pt;}
.y6d_c00366{bottom:300.831467pt;}
.y6e_c00366{bottom:301.278053pt;}
.y61_c00366{bottom:310.074053pt;}
.y62_c00366{bottom:311.002587pt;}
.y63_c00366{bottom:311.291707pt;}
.y64_c00366{bottom:312.971600pt;}
.y65_c00366{bottom:314.057787pt;}
.y66_c00366{bottom:314.642560pt;}
.y67_c00366{bottom:315.810773pt;}
.y5a_c00366{bottom:324.477067pt;}
.y5b_c00366{bottom:326.030907pt;}
.y5c_c00366{bottom:326.310000pt;}
.y5d_c00366{bottom:327.522427pt;}
.y5e_c00366{bottom:329.045680pt;}
.y5f_c00366{bottom:330.495173pt;}
.y60_c00366{bottom:331.126533pt;}
.y53_c00366{bottom:341.514933pt;}
.y54_c00366{bottom:342.386293pt;}
.y55_c00366{bottom:343.019307pt;}
.y56_c00366{bottom:343.218720pt;}
.y57_c00366{bottom:344.027307pt;}
.y58_c00366{bottom:344.638107pt;}
.y59_c00366{bottom:344.784987pt;}
.y4a_c00366{bottom:354.240773pt;}
.y4b_c00366{bottom:354.895680pt;}
.y4c_c00366{bottom:356.293600pt;}
.y4d_c00366{bottom:357.142987pt;}
.y4e_c00366{bottom:357.742827pt;}
.y4f_c00366{bottom:358.235440pt;}
.y50_c00366{bottom:359.220187pt;}
.y51_c00366{bottom:359.966933pt;}
.y52_c00366{bottom:360.471813pt;}
.y41_c00366{bottom:369.601787pt;}
.y42_c00366{bottom:369.960347pt;}
.y43_c00366{bottom:370.881440pt;}
.y44_c00366{bottom:371.302747pt;}
.y45_c00366{bottom:371.791840pt;}
.y46_c00366{bottom:372.063280pt;}
.y47_c00366{bottom:372.628320pt;}
.y48_c00366{bottom:374.170293pt;}
.y49_c00366{bottom:374.841813pt;}
.y38_c00366{bottom:384.964080pt;}
.y39_c00366{bottom:385.828507pt;}
.y3a_c00366{bottom:386.255120pt;}
.y3b_c00366{bottom:387.212960pt;}
.y3c_c00366{bottom:387.618080pt;}
.y3d_c00366{bottom:388.182587pt;}
.y3e_c00366{bottom:388.578320pt;}
.y3f_c00366{bottom:389.757947pt;}
.y40_c00366{bottom:390.378693pt;}
.y34_c00366{bottom:400.324000pt;}
.y35_c00366{bottom:400.755147pt;}
.y36_c00366{bottom:401.179387pt;}
.y37_c00366{bottom:404.637760pt;}
.y2c_c00366{bottom:414.721333pt;}
.y2d_c00366{bottom:415.225333pt;}
.y2e_c00366{bottom:415.442667pt;}
.y2f_c00366{bottom:415.777333pt;}
.y30_c00366{bottom:416.765333pt;}
.y31_c00366{bottom:417.058667pt;}
.y32_c00366{bottom:417.952000pt;}
.y33_c00366{bottom:418.740000pt;}
.y23_c00366{bottom:429.606667pt;}
.y24_c00366{bottom:430.362667pt;}
.y25_c00366{bottom:430.750667pt;}
.y26_c00366{bottom:431.790667pt;}
.y27_c00366{bottom:432.277333pt;}
.y28_c00366{bottom:433.566667pt;}
.y29_c00366{bottom:434.014667pt;}
.y2a_c00366{bottom:435.468000pt;}
.y2b_c00366{bottom:435.828000pt;}
.y1b_c00366{bottom:445.208000pt;}
.y1c_c00366{bottom:445.874667pt;}
.y1d_c00366{bottom:446.262667pt;}
.y1e_c00366{bottom:447.654667pt;}
.y1f_c00366{bottom:448.626667pt;}
.y20_c00366{bottom:449.020000pt;}
.y21_c00366{bottom:449.653333pt;}
.y22_c00366{bottom:451.217333pt;}
.y14_c00366{bottom:459.608000pt;}
.y15_c00366{bottom:460.584000pt;}
.y16_c00366{bottom:461.050667pt;}
.y17_c00366{bottom:462.762667pt;}
.y18_c00366{bottom:463.222667pt;}
.y19_c00366{bottom:465.236000pt;}
.y1a_c00366{bottom:465.942667pt;}
.ya_c00366{bottom:474.728000pt;}
.yb_c00366{bottom:475.672000pt;}
.yc_c00366{bottom:475.938667pt;}
.yd_c00366{bottom:476.856000pt;}
.ye_c00366{bottom:477.234667pt;}
.yf_c00366{bottom:478.344000pt;}
.y10_c00366{bottom:478.802667pt;}
.y11_c00366{bottom:479.236000pt;}
.y12_c00366{bottom:480.378667pt;}
.y13_c00366{bottom:480.826667pt;}
.y2_c00366{bottom:490.328000pt;}
.y3_c00366{bottom:491.172000pt;}
.y4_c00366{bottom:491.702667pt;}
.y5_c00366{bottom:492.278667pt;}
.y6_c00366{bottom:494.196000pt;}
.y7_c00366{bottom:494.864000pt;}
.y8_c00366{bottom:495.314667pt;}
.y9_c00366{bottom:496.952000pt;}
.y1_c00366{bottom:509.532000pt;}
.ha_c00366{height:49.476559pt;}
.h11_c00366{height:50.410079pt;}
.h5_c00366{height:51.333333pt;}
.hc_c00366{height:51.343599pt;}
.h8_c00366{height:52.277119pt;}
.h2_c00366{height:53.200000pt;}
.h7_c00366{height:53.210639pt;}
.hd_c00366{height:54.144159pt;}
.hf_c00366{height:55.077679pt;}
.h9_c00366{height:56.011199pt;}
.h4_c00366{height:56.933333pt;}
.he_c00366{height:56.944719pt;}
.h6_c00366{height:57.866667pt;}
.h10_c00366{height:57.878239pt;}
.hb_c00366{height:58.811759pt;}
.h12_c00366{height:59.745279pt;}
.h3_c00366{height:62.533333pt;}
.h0_c00366{height:545.040000pt;}
.h1_c00366{height:545.333333pt;}
.w0_c00366{width:319.200000pt;}
.w1_c00366{width:319.333333pt;}
.x0_c00366{left:0.000000pt;}
.x64_c00366{left:15.114373pt;}
.x2_c00366{left:16.828000pt;}
.x27_c00366{left:18.173333pt;}
.x34_c00366{left:19.677467pt;}
.x5b_c00366{left:20.631067pt;}
.x67_c00366{left:21.540347pt;}
.x53_c00366{left:24.425867pt;}
.x6d_c00366{left:26.177147pt;}
.x78_c00366{left:28.236027pt;}
.x77_c00366{left:29.434027pt;}
.x6f_c00366{left:31.914320pt;}
.x35_c00366{left:34.604267pt;}
.x61_c00366{left:36.990053pt;}
.x2b_c00366{left:38.692613pt;}
.x28_c00366{left:39.730667pt;}
.x54_c00366{left:41.411227pt;}
.x17_c00366{left:43.558667pt;}
.x3a_c00366{left:44.942907pt;}
.x6a_c00366{left:45.985093pt;}
.x3_c00366{left:46.990667pt;}
.x12_c00366{left:50.245333pt;}
.x49_c00366{left:52.368720pt;}
.xa_c00366{left:54.648000pt;}
.x5c_c00366{left:56.369733pt;}
.x18_c00366{left:59.065333pt;}
.x29_c00366{left:60.942667pt;}
.x1d_c00366{left:62.825333pt;}
.x72_c00366{left:64.527973pt;}
.x4_c00366{left:65.949333pt;}
.x55_c00366{left:67.135947pt;}
.x5d_c00366{left:69.116400pt;}
.x2c_c00366{left:73.243813pt;}
.x70_c00366{left:75.852133pt;}
.x46_c00366{left:76.827387pt;}
.x5f_c00366{left:78.123093pt;}
.x24_c00366{left:79.594667pt;}
.x6b_c00366{left:81.317173pt;}
.x4b_c00366{left:83.062987pt;}
.x41_c00366{left:85.339813pt;}
.x5_c00366{left:86.508000pt;}
.x62_c00366{left:88.076320pt;}
.x59_c00366{left:89.364373pt;}
.x2d_c00366{left:90.306107pt;}
.x68_c00366{left:93.147760pt;}
.x56_c00366{left:97.389040pt;}
.x3b_c00366{left:100.833307pt;}
.xb_c00366{left:102.041333pt;}
.x1e_c00366{left:104.433333pt;}
.x69_c00366{left:108.279280pt;}
.x75_c00366{left:109.340507pt;}
.x36_c00366{left:110.906160pt;}
.x19_c00366{left:114.740000pt;}
.x57_c00366{left:115.867840pt;}
.xc_c00366{left:117.176000pt;}
.x37_c00366{left:122.210587pt;}
.x1f_c00366{left:123.890667pt;}
.x13_c00366{left:125.357333pt;}
.x2e_c00366{left:128.594267pt;}
.x65_c00366{left:130.577867pt;}
.x47_c00366{left:132.062320pt;}
.x1_c00366{left:133.920000pt;}
.x3c_c00366{left:134.832587pt;}
.x25_c00366{left:137.718667pt;}
.x76_c00366{left:139.173387pt;}
.x14_c00366{left:141.212000pt;}
.x2f_c00366{left:144.781973pt;}
.x38_c00366{left:145.727360pt;}
.x42_c00366{left:149.436800pt;}
.x1a_c00366{left:153.625333pt;}
.x6_c00366{left:154.986667pt;}
.x3d_c00366{left:158.822187pt;}
.xd_c00366{left:161.566667pt;}
.x79_c00366{left:163.209173pt;}
.x63_c00366{left:164.310427pt;}
.x6c_c00366{left:165.259200pt;}
.x30_c00366{left:167.338373pt;}
.x1b_c00366{left:169.348000pt;}
.x20_c00366{left:175.458667pt;}
.x7_c00366{left:178.849333pt;}
.xe_c00366{left:179.926667pt;}
.x31_c00366{left:183.190133pt;}
.x51_c00366{left:184.082293pt;}
.x5e_c00366{left:185.929733pt;}
.x48_c00366{left:188.483760pt;}
.x21_c00366{left:193.400000pt;}
.x8_c00366{left:194.964000pt;}
.x4c_c00366{left:196.100107pt;}
.xf_c00366{left:197.249333pt;}
.x60_c00366{left:199.898933pt;}
.x4f_c00366{left:204.023653pt;}
.x7a_c00366{left:205.942427pt;}
.x26_c00366{left:207.566667pt;}
.x4d_c00366{left:208.745253pt;}
.x58_c00366{left:209.739333pt;}
.x15_c00366{left:210.656000pt;}
.x43_c00366{left:211.608160pt;}
.x66_c00366{left:213.875173pt;}
.x3e_c00366{left:217.884267pt;}
.x6e_c00366{left:218.864400pt;}
.x50_c00366{left:221.560293pt;}
.x4a_c00366{left:224.083920pt;}
.x4e_c00366{left:225.939200pt;}
.x32_c00366{left:230.366747pt;}
.x52_c00366{left:232.124960pt;}
.x2a_c00366{left:233.861333pt;}
.x16_c00366{left:235.036000pt;}
.x39_c00366{left:237.927973pt;}
.x10_c00366{left:242.953333pt;}
.x3f_c00366{left:247.751947pt;}
.x22_c00366{left:251.552000pt;}
.x9_c00366{left:253.417333pt;}
.x33_c00366{left:255.201600pt;}
.x1c_c00366{left:257.253333pt;}
.x44_c00366{left:258.621413pt;}
.x73_c00366{left:259.681413pt;}
.x11_c00366{left:260.852000pt;}
.x5a_c00366{left:264.134640pt;}
.x23_c00366{left:265.973333pt;}
.x40_c00366{left:267.927253pt;}
.x45_c00366{left:269.967013pt;}
.x74_c00366{left:272.578480pt;}
.x71_c00366{left:274.858907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00367 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00367 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00367 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00367 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00367.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcd_c00367{transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);}
.m4f_c00367{transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);}
.mce_c00367{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00367{transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);}
.mb6_c00367{transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145185,0.000000,0.000000,0.250000,0,0);}
.m8c_c00367{transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);}
.mcb_c00367{transform:matrix(0.151970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151970,0.000000,0.000000,0.250000,0,0);}
.meb_c00367{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mab_c00367{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.maf_c00367{transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);}
.me3_c00367{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.me1_c00367{transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);}
.m8e_c00367{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.163880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163880,0.000000,0.000000,0.250000,0,0);}
.md5_c00367{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.mbe_c00367{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00367{transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);}
.m9d_c00367{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mda_c00367{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m86_c00367{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.md7_c00367{transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169320,0.000000,0.000000,0.250000,0,0);}
.mca_c00367{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);}
.m81_c00367{transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.md2_c00367{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.m4e_c00367{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.md0_c00367{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00367{transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.mb8_c00367{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me7_c00367{transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177755,0.000000,0.000000,0.250000,0,0);}
.mb9_c00367{transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00367{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m68_c00367{transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00367{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.md9_c00367{transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);}
.mad_c00367{transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);}
.md4_c00367{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m7d_c00367{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.m80_c00367{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.me5_c00367{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m9b_c00367{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.mc9_c00367{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me4_c00367{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m8d_c00367{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.mdb_c00367{transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);}
.m94_c00367{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.me2_c00367{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.ma9_c00367{transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183640,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);}
.mdf_c00367{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.mb3_c00367{transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184085,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);}
.md6_c00367{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m97_c00367{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m9a_c00367{transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);}
.mb4_c00367{transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);}
.m48_c00367{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(0.186520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186520,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.mea_c00367{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00367{transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);}
.mcc_c00367{transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00367{transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);}
.mc2_c00367{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m6d_c00367{transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);}
.m99_c00367{transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.md3_c00367{transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);}
.mac_c00367{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.ma0_c00367{transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);}
.m4c_c00367{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.maa_c00367{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.ma1_c00367{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.m51_c00367{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);}
.m50_c00367{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m8f_c00367{transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193160,0.000000,0.000000,0.250000,0,0);}
.m8b_c00367{transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193285,0.000000,0.000000,0.250000,0,0);}
.ma8_c00367{transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m85_c00367{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.mba_c00367{transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195085,0.000000,0.000000,0.250000,0,0);}
.m60_c00367{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.mee_c00367{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m52_c00367{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.ma5_c00367{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.mbc_c00367{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.mef_c00367{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00367{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.me0_c00367{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.mc1_c00367{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.m93_c00367{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);}
.m89_c00367{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m74_c00367{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m64_c00367{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m96_c00367{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mae_c00367{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.mec_c00367{transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m9c_c00367{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.ma3_c00367{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.mc5_c00367{transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);}
.mc7_c00367{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.mb7_c00367{transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.md1_c00367{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m98_c00367{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m84_c00367{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m5c_c00367{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.mc3_c00367{transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);}
.ma6_c00367{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m72_c00367{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m77_c00367{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);}
.m62_c00367{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m66_c00367{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);}
.m82_c00367{transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);}
.m7f_c00367{transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);}
.m7a_c00367{transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212055,0.000000,0.000000,0.250000,0,0);}
.m5e_c00367{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m87_c00367{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m55_c00367{transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214220,0.000000,0.000000,0.250000,0,0);}
.me9_c00367{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);}
.m58_c00367{transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);}
.m78_c00367{transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);}
.m95_c00367{transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.me8_c00367{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m7b_c00367{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);}
.m65_c00367{transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m57_c00367{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.ma4_c00367{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.mc6_c00367{transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221395,0.000000,0.000000,0.250000,0,0);}
.me6_c00367{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00367{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m88_c00367{transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);}
.m79_c00367{transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00367{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00367{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.m6c_c00367{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m56_c00367{transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);}
.m9f_c00367{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.mcf_c00367{transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);}
.m6f_c00367{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m9e_c00367{transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227490,0.000000,0.000000,0.250000,0,0);}
.m5a_c00367{transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.med_c00367{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m73_c00367{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.mde_c00367{transform:matrix(0.228780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228780,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);}
.m6a_c00367{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);}
.m63_c00367{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00367{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m76_c00367{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);}
.m83_c00367{transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240270,0.000000,0.000000,0.250000,0,0);}
.mc8_c00367{transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);}
.m69_c00367{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);}
.m54_c00367{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00367{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m7c_c00367{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m29_c00367{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00367{transform:matrix(0.257820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257820,0.000000,0.000000,0.250000,0,0);}
.mdd_c00367{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00367{transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{transform:matrix(0.266225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00367{transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);}
.m91_c00367{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.m5b_c00367{transform:matrix(0.278160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278160,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.287945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287945,0.000000,0.000000,0.250000,0,0);}
.m92_c00367{transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.302490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302490,0.000000,0.000000,0.250000,0,0);}
.m53_c00367{transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);}
.mb2_c00367{transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);}
.mc0_c00367{transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);}
.md8_c00367{transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);}
.m90_c00367{transform:matrix(0.383850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383850,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.540635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540635,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:transparent;}
.fs7_c00367{font-size:55.650000px;}
.fs4_c00367{font-size:57.750000px;}
.fs3_c00367{font-size:58.800000px;}
.fsc_c00367{font-size:59.850000px;}
.fs5_c00367{font-size:60.900000px;}
.fs6_c00367{font-size:61.950000px;}
.fsd_c00367{font-size:63.000000px;}
.fs8_c00367{font-size:64.050000px;}
.fs9_c00367{font-size:65.100000px;}
.fsb_c00367{font-size:66.150000px;}
.fsa_c00367{font-size:67.200000px;}
.fs2_c00367{font-size:68.250000px;}
.fs1_c00367{font-size:70.350000px;}
.fs0_c00367{font-size:76.650000px;}
.y0_c00367{bottom:0.000000px;}
.y21_c00367{bottom:24.355500px;}
.y20_c00367{bottom:41.515500px;}
.y1f_c00367{bottom:57.708000px;}
.y1e_c00367{bottom:74.994000px;}
.y1d_c00367{bottom:91.827000px;}
.y1c_c00367{bottom:108.862500px;}
.y1b_c00367{bottom:125.725500px;}
.y1a_c00367{bottom:143.214000px;}
.y19_c00367{bottom:160.015500px;}
.y18_c00367{bottom:177.808500px;}
.y17_c00367{bottom:195.088500px;}
.y16_c00367{bottom:212.442000px;}
.y15_c00367{bottom:229.056000px;}
.y14_c00367{bottom:246.240000px;}
.y13_c00367{bottom:262.374000px;}
.y12_c00367{bottom:279.627000px;}
.y11_c00367{bottom:296.730000px;}
.y10_c00367{bottom:314.065500px;}
.yf_c00367{bottom:331.195500px;}
.ye_c00367{bottom:348.030000px;}
.yd_c00367{bottom:365.458500px;}
.yc_c00367{bottom:381.996000px;}
.yb_c00367{bottom:399.097500px;}
.ya_c00367{bottom:416.314500px;}
.y9_c00367{bottom:433.356000px;}
.y8_c00367{bottom:449.401500px;}
.y7_c00367{bottom:467.044500px;}
.y6_c00367{bottom:484.179000px;}
.y5_c00367{bottom:500.553000px;}
.y4_c00367{bottom:517.834500px;}
.y3_c00367{bottom:534.126000px;}
.y2_c00367{bottom:551.610000px;}
.y1_c00367{bottom:564.570000px;}
.h9_c00367{height:55.650000px;}
.h6_c00367{height:57.750000px;}
.h5_c00367{height:58.800000px;}
.he_c00367{height:59.850000px;}
.h7_c00367{height:60.900000px;}
.h8_c00367{height:61.950000px;}
.hf_c00367{height:63.000000px;}
.ha_c00367{height:64.050000px;}
.hb_c00367{height:65.100000px;}
.hd_c00367{height:66.150000px;}
.hc_c00367{height:67.200000px;}
.h4_c00367{height:68.250000px;}
.h3_c00367{height:70.350000px;}
.h2_c00367{height:76.650000px;}
.h0_c00367{height:613.170000px;}
.h1_c00367{height:613.500000px;}
.w0_c00367{width:359.100000px;}
.w1_c00367{width:359.250000px;}
.x0_c00367{left:0.000000px;}
.x7d_c00367{left:38.070000px;}
.x5a_c00367{left:39.420000px;}
.x1b_c00367{left:40.500000px;}
.x2_c00367{left:42.120000px;}
.x2f_c00367{left:43.740000px;}
.x4b_c00367{left:52.650000px;}
.x6a_c00367{left:58.320000px;}
.x1c_c00367{left:59.670000px;}
.x22_c00367{left:62.100000px;}
.x74_c00367{left:63.450000px;}
.x6e_c00367{left:65.340000px;}
.x58_c00367{left:66.420000px;}
.x47_c00367{left:68.850000px;}
.x4c_c00367{left:71.010000px;}
.x67_c00367{left:74.250000px;}
.x23_c00367{left:75.600000px;}
.x77_c00367{left:78.300000px;}
.x9_c00367{left:79.920000px;}
.x34_c00367{left:81.270000px;}
.x61_c00367{left:83.970000px;}
.x7e_c00367{left:86.940000px;}
.x48_c00367{left:89.100000px;}
.x2a_c00367{left:90.990000px;}
.x5e_c00367{left:92.340000px;}
.x39_c00367{left:94.230000px;}
.x6b_c00367{left:95.310000px;}
.x14_c00367{left:97.470000px;}
.x7f_c00367{left:98.550000px;}
.x42_c00367{left:100.170000px;}
.xa_c00367{left:102.060000px;}
.x3_c00367{left:105.300000px;}
.x60_c00367{left:107.190000px;}
.x15_c00367{left:109.890000px;}
.x80_c00367{left:112.320000px;}
.x24_c00367{left:115.290000px;}
.x5b_c00367{left:117.990000px;}
.x3d_c00367{left:119.880000px;}
.x4f_c00367{left:121.770000px;}
.x1d_c00367{left:125.550000px;}
.x5f_c00367{left:127.170000px;}
.xf_c00367{left:129.060000px;}
.x62_c00367{left:130.950000px;}
.x35_c00367{left:135.000000px;}
.x68_c00367{left:137.160000px;}
.x30_c00367{left:140.130000px;}
.x2b_c00367{left:142.560000px;}
.x43_c00367{left:148.230000px;}
.x78_c00367{left:152.010000px;}
.x1e_c00367{left:153.360000px;}
.x16_c00367{left:154.980000px;}
.x7b_c00367{left:158.490000px;}
.x4_c00367{left:159.570000px;}
.xb_c00367{left:160.650000px;}
.x53_c00367{left:162.270000px;}
.x2c_c00367{left:166.050000px;}
.x6f_c00367{left:167.670000px;}
.x50_c00367{left:170.370000px;}
.x3e_c00367{left:171.720000px;}
.x71_c00367{left:172.800000px;}
.x59_c00367{left:174.150000px;}
.x17_c00367{left:175.230000px;}
.x1_c00367{left:176.580000px;}
.x75_c00367{left:178.470000px;}
.x4d_c00367{left:180.630000px;}
.x36_c00367{left:182.250000px;}
.x5_c00367{left:183.600000px;}
.x1f_c00367{left:188.730000px;}
.xc_c00367{left:191.160000px;}
.x3a_c00367{left:193.320000px;}
.x25_c00367{left:194.670000px;}
.x63_c00367{left:198.720000px;}
.x31_c00367{left:199.800000px;}
.x69_c00367{left:201.150000px;}
.x6c_c00367{left:202.230000px;}
.x37_c00367{left:203.850000px;}
.x20_c00367{left:206.550000px;}
.x26_c00367{left:210.870000px;}
.x6_c00367{left:214.110000px;}
.x10_c00367{left:218.970000px;}
.x41_c00367{left:226.260000px;}
.x79_c00367{left:227.610000px;}
.x49_c00367{left:228.690000px;}
.x3f_c00367{left:230.040000px;}
.x54_c00367{left:232.200000px;}
.xd_c00367{left:233.280000px;}
.x32_c00367{left:234.630000px;}
.x72_c00367{left:236.790000px;}
.x83_c00367{left:238.140000px;}
.x18_c00367{left:239.490000px;}
.x64_c00367{left:243.540000px;}
.x5c_c00367{left:245.430000px;}
.x81_c00367{left:246.780000px;}
.x11_c00367{left:248.400000px;}
.x7_c00367{left:251.370000px;}
.x55_c00367{left:252.450000px;}
.x7a_c00367{left:254.070000px;}
.x3b_c00367{left:255.960000px;}
.x27_c00367{left:259.470000px;}
.x44_c00367{left:261.090000px;}
.x19_c00367{left:264.060000px;}
.x4e_c00367{left:265.680000px;}
.x12_c00367{left:268.380000px;}
.x65_c00367{left:269.460000px;}
.x21_c00367{left:270.540000px;}
.x45_c00367{left:274.860000px;}
.x51_c00367{left:276.750000px;}
.x28_c00367{left:279.180000px;}
.x56_c00367{left:281.070000px;}
.x1a_c00367{left:283.500000px;}
.xe_c00367{left:284.580000px;}
.x4a_c00367{left:285.930000px;}
.x33_c00367{left:287.550000px;}
.x66_c00367{left:289.710000px;}
.x2d_c00367{left:291.060000px;}
.x6d_c00367{left:292.410000px;}
.x82_c00367{left:293.490000px;}
.x46_c00367{left:295.380000px;}
.x52_c00367{left:296.460000px;}
.x3c_c00367{left:301.860000px;}
.x38_c00367{left:303.210000px;}
.x73_c00367{left:304.560000px;}
.x5d_c00367{left:306.450000px;}
.x7c_c00367{left:307.530000px;}
.x57_c00367{left:310.770000px;}
.x76_c00367{left:312.390000px;}
.x8_c00367{left:314.820000px;}
.x13_c00367{left:318.870000px;}
.x29_c00367{left:323.730000px;}
.x2e_c00367{left:326.700000px;}
.x40_c00367{left:328.320000px;}
.x70_c00367{left:330.210000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fs7_c00367{font-size:49.466667pt;}
.fs4_c00367{font-size:51.333333pt;}
.fs3_c00367{font-size:52.266667pt;}
.fsc_c00367{font-size:53.200000pt;}
.fs5_c00367{font-size:54.133333pt;}
.fs6_c00367{font-size:55.066667pt;}
.fsd_c00367{font-size:56.000000pt;}
.fs8_c00367{font-size:56.933333pt;}
.fs9_c00367{font-size:57.866667pt;}
.fsb_c00367{font-size:58.800000pt;}
.fsa_c00367{font-size:59.733333pt;}
.fs2_c00367{font-size:60.666667pt;}
.fs1_c00367{font-size:62.533333pt;}
.fs0_c00367{font-size:68.133333pt;}
.y0_c00367{bottom:0.000000pt;}
.y21_c00367{bottom:21.649333pt;}
.y20_c00367{bottom:36.902667pt;}
.y1f_c00367{bottom:51.296000pt;}
.y1e_c00367{bottom:66.661333pt;}
.y1d_c00367{bottom:81.624000pt;}
.y1c_c00367{bottom:96.766667pt;}
.y1b_c00367{bottom:111.756000pt;}
.y1a_c00367{bottom:127.301333pt;}
.y19_c00367{bottom:142.236000pt;}
.y18_c00367{bottom:158.052000pt;}
.y17_c00367{bottom:173.412000pt;}
.y16_c00367{bottom:188.837333pt;}
.y15_c00367{bottom:203.605333pt;}
.y14_c00367{bottom:218.880000pt;}
.y13_c00367{bottom:233.221333pt;}
.y12_c00367{bottom:248.557333pt;}
.y11_c00367{bottom:263.760000pt;}
.y10_c00367{bottom:279.169333pt;}
.yf_c00367{bottom:294.396000pt;}
.ye_c00367{bottom:309.360000pt;}
.yd_c00367{bottom:324.852000pt;}
.yc_c00367{bottom:339.552000pt;}
.yb_c00367{bottom:354.753333pt;}
.ya_c00367{bottom:370.057333pt;}
.y9_c00367{bottom:385.205333pt;}
.y8_c00367{bottom:399.468000pt;}
.y7_c00367{bottom:415.150667pt;}
.y6_c00367{bottom:430.381333pt;}
.y5_c00367{bottom:444.936000pt;}
.y4_c00367{bottom:460.297333pt;}
.y3_c00367{bottom:474.778667pt;}
.y2_c00367{bottom:490.320000pt;}
.y1_c00367{bottom:501.840000pt;}
.h9_c00367{height:49.466667pt;}
.h6_c00367{height:51.333333pt;}
.h5_c00367{height:52.266667pt;}
.he_c00367{height:53.200000pt;}
.h7_c00367{height:54.133333pt;}
.h8_c00367{height:55.066667pt;}
.hf_c00367{height:56.000000pt;}
.ha_c00367{height:56.933333pt;}
.hb_c00367{height:57.866667pt;}
.hd_c00367{height:58.800000pt;}
.hc_c00367{height:59.733333pt;}
.h4_c00367{height:60.666667pt;}
.h3_c00367{height:62.533333pt;}
.h2_c00367{height:68.133333pt;}
.h0_c00367{height:545.040000pt;}
.h1_c00367{height:545.333333pt;}
.w0_c00367{width:319.200000pt;}
.w1_c00367{width:319.333333pt;}
.x0_c00367{left:0.000000pt;}
.x7d_c00367{left:33.840000pt;}
.x5a_c00367{left:35.040000pt;}
.x1b_c00367{left:36.000000pt;}
.x2_c00367{left:37.440000pt;}
.x2f_c00367{left:38.880000pt;}
.x4b_c00367{left:46.800000pt;}
.x6a_c00367{left:51.840000pt;}
.x1c_c00367{left:53.040000pt;}
.x22_c00367{left:55.200000pt;}
.x74_c00367{left:56.400000pt;}
.x6e_c00367{left:58.080000pt;}
.x58_c00367{left:59.040000pt;}
.x47_c00367{left:61.200000pt;}
.x4c_c00367{left:63.120000pt;}
.x67_c00367{left:66.000000pt;}
.x23_c00367{left:67.200000pt;}
.x77_c00367{left:69.600000pt;}
.x9_c00367{left:71.040000pt;}
.x34_c00367{left:72.240000pt;}
.x61_c00367{left:74.640000pt;}
.x7e_c00367{left:77.280000pt;}
.x48_c00367{left:79.200000pt;}
.x2a_c00367{left:80.880000pt;}
.x5e_c00367{left:82.080000pt;}
.x39_c00367{left:83.760000pt;}
.x6b_c00367{left:84.720000pt;}
.x14_c00367{left:86.640000pt;}
.x7f_c00367{left:87.600000pt;}
.x42_c00367{left:89.040000pt;}
.xa_c00367{left:90.720000pt;}
.x3_c00367{left:93.600000pt;}
.x60_c00367{left:95.280000pt;}
.x15_c00367{left:97.680000pt;}
.x80_c00367{left:99.840000pt;}
.x24_c00367{left:102.480000pt;}
.x5b_c00367{left:104.880000pt;}
.x3d_c00367{left:106.560000pt;}
.x4f_c00367{left:108.240000pt;}
.x1d_c00367{left:111.600000pt;}
.x5f_c00367{left:113.040000pt;}
.xf_c00367{left:114.720000pt;}
.x62_c00367{left:116.400000pt;}
.x35_c00367{left:120.000000pt;}
.x68_c00367{left:121.920000pt;}
.x30_c00367{left:124.560000pt;}
.x2b_c00367{left:126.720000pt;}
.x43_c00367{left:131.760000pt;}
.x78_c00367{left:135.120000pt;}
.x1e_c00367{left:136.320000pt;}
.x16_c00367{left:137.760000pt;}
.x7b_c00367{left:140.880000pt;}
.x4_c00367{left:141.840000pt;}
.xb_c00367{left:142.800000pt;}
.x53_c00367{left:144.240000pt;}
.x2c_c00367{left:147.600000pt;}
.x6f_c00367{left:149.040000pt;}
.x50_c00367{left:151.440000pt;}
.x3e_c00367{left:152.640000pt;}
.x71_c00367{left:153.600000pt;}
.x59_c00367{left:154.800000pt;}
.x17_c00367{left:155.760000pt;}
.x1_c00367{left:156.960000pt;}
.x75_c00367{left:158.640000pt;}
.x4d_c00367{left:160.560000pt;}
.x36_c00367{left:162.000000pt;}
.x5_c00367{left:163.200000pt;}
.x1f_c00367{left:167.760000pt;}
.xc_c00367{left:169.920000pt;}
.x3a_c00367{left:171.840000pt;}
.x25_c00367{left:173.040000pt;}
.x63_c00367{left:176.640000pt;}
.x31_c00367{left:177.600000pt;}
.x69_c00367{left:178.800000pt;}
.x6c_c00367{left:179.760000pt;}
.x37_c00367{left:181.200000pt;}
.x20_c00367{left:183.600000pt;}
.x26_c00367{left:187.440000pt;}
.x6_c00367{left:190.320000pt;}
.x10_c00367{left:194.640000pt;}
.x41_c00367{left:201.120000pt;}
.x79_c00367{left:202.320000pt;}
.x49_c00367{left:203.280000pt;}
.x3f_c00367{left:204.480000pt;}
.x54_c00367{left:206.400000pt;}
.xd_c00367{left:207.360000pt;}
.x32_c00367{left:208.560000pt;}
.x72_c00367{left:210.480000pt;}
.x83_c00367{left:211.680000pt;}
.x18_c00367{left:212.880000pt;}
.x64_c00367{left:216.480000pt;}
.x5c_c00367{left:218.160000pt;}
.x81_c00367{left:219.360000pt;}
.x11_c00367{left:220.800000pt;}
.x7_c00367{left:223.440000pt;}
.x55_c00367{left:224.400000pt;}
.x7a_c00367{left:225.840000pt;}
.x3b_c00367{left:227.520000pt;}
.x27_c00367{left:230.640000pt;}
.x44_c00367{left:232.080000pt;}
.x19_c00367{left:234.720000pt;}
.x4e_c00367{left:236.160000pt;}
.x12_c00367{left:238.560000pt;}
.x65_c00367{left:239.520000pt;}
.x21_c00367{left:240.480000pt;}
.x45_c00367{left:244.320000pt;}
.x51_c00367{left:246.000000pt;}
.x28_c00367{left:248.160000pt;}
.x56_c00367{left:249.840000pt;}
.x1a_c00367{left:252.000000pt;}
.xe_c00367{left:252.960000pt;}
.x4a_c00367{left:254.160000pt;}
.x33_c00367{left:255.600000pt;}
.x66_c00367{left:257.520000pt;}
.x2d_c00367{left:258.720000pt;}
.x6d_c00367{left:259.920000pt;}
.x82_c00367{left:260.880000pt;}
.x46_c00367{left:262.560000pt;}
.x52_c00367{left:263.520000pt;}
.x3c_c00367{left:268.320000pt;}
.x38_c00367{left:269.520000pt;}
.x73_c00367{left:270.720000pt;}
.x5d_c00367{left:272.400000pt;}
.x7c_c00367{left:273.360000pt;}
.x57_c00367{left:276.240000pt;}
.x76_c00367{left:277.680000pt;}
.x8_c00367{left:279.840000pt;}
.x13_c00367{left:283.440000pt;}
.x29_c00367{left:287.760000pt;}
.x2e_c00367{left:290.400000pt;}
.x40_c00367{left:291.840000pt;}
.x70_c00367{left:293.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00368 {
    display:none;
  }
  .loading-indicator_c00368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00368 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00368 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00368" -> "#page-container .classname_c00368")
 */
.pf_c00368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00368 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00368 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00368 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00368 {overflow:visible;}
  }
}
.c_c00368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00368 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00368:after { /* webkit #35443 */
  content: '';
}
.t_c00368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00368 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00368 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00368 { /* info for Javascript */
  display:none;
}
.l_c00368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00368:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00368 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00368.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00368{transform:matrix(0.024640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024640,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.102115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.118710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118710,0.000000,0.000000,0.250000,0,0);}
.m56_c00368{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.m98_c00368{transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133915,0.000000,0.000000,0.250000,0,0);}
.m66_c00368{transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145095,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00368{transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);}
.m67_c00368{transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.mb7_c00368{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mcf_c00368{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00368{transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.m81_c00368{transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.m33_c00368{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.mbc_c00368{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.mcb_c00368{transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);}
.m69_c00368{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.m9a_c00368{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m94_c00368{transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);}
.mf4_c00368{transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00368{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00368{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m7b_c00368{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.mab_c00368{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.mfa_c00368{transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172865,0.000000,0.000000,0.250000,0,0);}
.mad_c00368{transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);}
.ma7_c00368{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00368{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174505,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.mc9_c00368{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175415,0.000000,0.000000,0.250000,0,0);}
.m92_c00368{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.m96_c00368{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.mfb_c00368{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.ma9_c00368{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m9d_c00368{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m97_c00368{transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.mb5_c00368{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.m103_c00368{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.md2_c00368{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00368{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.m99_c00368{transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.m93_c00368{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.m78_c00368{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.mf5_c00368{transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.ma1_c00368{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.ma3_c00368{transform:matrix(0.184320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184320,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);}
.mf3_c00368{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m35_c00368{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.mac_c00368{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.mf8_c00368{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m84_c00368{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.mfd_c00368{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.me4_c00368{transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187315,0.000000,0.000000,0.250000,0,0);}
.m95_c00368{transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187465,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);}
.m100_c00368{transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187915,0.000000,0.000000,0.250000,0,0);}
.mb9_c00368{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m6b_c00368{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m5f_c00368{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.m64_c00368{transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);}
.maa_c00368{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.md6_c00368{transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m7f_c00368{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mf9_c00368{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.mce_c00368{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.me1_c00368{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.md3_c00368{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.md4_c00368{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.m30_c00368{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mff_c00368{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.m36_c00368{transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.mb0_c00368{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.md7_c00368{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.mc8_c00368{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.ma2_c00368{transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);}
.m82_c00368{transform:matrix(0.197780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197780,0.000000,0.000000,0.250000,0,0);}
.m8c_c00368{transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);}
.mb8_c00368{transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);}
.mc7_c00368{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.me5_c00368{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.mbf_c00368{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m62_c00368{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.me8_c00368{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.me9_c00368{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.me6_c00368{transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);}
.m7a_c00368{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m58_c00368{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m6f_c00368{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.mdb_c00368{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201485,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.mc0_c00368{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.mc4_c00368{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.ma6_c00368{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.m90_c00368{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.mae_c00368{transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m59_c00368{transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203360,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.m50_c00368{transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);}
.m79_c00368{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m8f_c00368{transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);}
.m80_c00368{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m71_c00368{transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);}
.mb2_c00368{transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);}
.ma0_c00368{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);}
.m65_c00368{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.m6e_c00368{transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206090,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mb3_c00368{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.mbd_c00368{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00368{transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);}
.me7_c00368{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.mb6_c00368{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.mf7_c00368{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.mba_c00368{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.mbe_c00368{transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);}
.m8a_c00368{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m43_c00368{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m6d_c00368{transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210460,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.mcd_c00368{transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);}
.m45_c00368{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m46_c00368{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.ma5_c00368{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.m49_c00368{transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00368{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m51_c00368{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m102_c00368{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.me2_c00368{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.mdd_c00368{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.m5d_c00368{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.mc5_c00368{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218355,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.md5_c00368{transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);}
.maf_c00368{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m28_c00368{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);}
.mbb_c00368{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.ma8_c00368{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.ma4_c00368{transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);}
.m4e_c00368{transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225220,0.000000,0.000000,0.250000,0,0);}
.m52_c00368{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m89_c00368{transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225595,0.000000,0.000000,0.250000,0,0);}
.mc3_c00368{transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);}
.m9c_c00368{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m32_c00368{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.mfe_c00368{transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.md8_c00368{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.229510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229510,0.000000,0.000000,0.250000,0,0);}
.mda_c00368{transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);}
.mfc_c00368{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.mf1_c00368{transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);}
.m73_c00368{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.mdc_c00368{transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);}
.m38_c00368{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m101_c00368{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00368{transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);}
.m77_c00368{transform:matrix(0.235970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235970,0.000000,0.000000,0.250000,0,0);}
.m6c_c00368{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);}
.mde_c00368{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m76_c00368{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md9_c00368{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.m8b_c00368{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m5c_c00368{transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00368{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m61_c00368{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);}
.me0_c00368{transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);}
.md1_c00368{transform:matrix(0.256905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256905,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.257670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257670,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.m70_c00368{transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);}
.mc2_c00368{transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);}
.mca_c00368{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.mf0_c00368{transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273405,0.000000,0.000000,0.250000,0,0);}
.med_c00368{transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.meb_c00368{transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);}
.m4a_c00368{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.mef_c00368{transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);}
.mec_c00368{transform:matrix(0.283580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283580,0.000000,0.000000,0.250000,0,0);}
.mee_c00368{transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);}
.m75_c00368{transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);}
.md0_c00368{transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00368{transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);}
.mea_c00368{transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00368{transform:matrix(0.378115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378115,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.392090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392090,0.000000,0.000000,0.250000,0,0);}
.me3_c00368{transform:matrix(0.446600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446600,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:0.000000px;}
.fc0_c00368{color:transparent;}
.fse_c00368{font-size:45.150000px;}
.fsd_c00368{font-size:55.650000px;}
.fs7_c00368{font-size:57.750000px;}
.fsa_c00368{font-size:58.800000px;}
.fs9_c00368{font-size:59.850000px;}
.fs5_c00368{font-size:60.900000px;}
.fs8_c00368{font-size:61.950000px;}
.fs2_c00368{font-size:63.000000px;}
.fs4_c00368{font-size:64.050000px;}
.fsb_c00368{font-size:65.100000px;}
.fs6_c00368{font-size:66.150000px;}
.fsf_c00368{font-size:67.200000px;}
.fsc_c00368{font-size:69.300000px;}
.fs3_c00368{font-size:71.400000px;}
.fs1_c00368{font-size:74.550000px;}
.fs0_c00368{font-size:124.950000px;}
.y0_c00368{bottom:0.000000px;}
.y59_c00368{bottom:27.955500px;}
.y58_c00368{bottom:45.876000px;}
.y57_c00368{bottom:62.814000px;}
.y56_c00368{bottom:79.368000px;}
.y55_c00368{bottom:94.759500px;}
.y54_c00368{bottom:115.020000px;}
.y53_c00368{bottom:131.206500px;}
.y52_c00368{bottom:148.257000px;}
.y51_c00368{bottom:163.890000px;}
.y50_c00368{bottom:180.579000px;}
.y4f_c00368{bottom:197.775000px;}
.y4e_c00368{bottom:215.218500px;}
.y4d_c00368{bottom:232.740000px;}
.y4c_c00368{bottom:249.925500px;}
.y4b_c00368{bottom:267.178500px;}
.y4a_c00368{bottom:285.324000px;}
.y49_c00368{bottom:302.187000px;}
.y40_c00368{bottom:318.331500px;}
.y41_c00368{bottom:318.742500px;}
.y42_c00368{bottom:318.826500px;}
.y43_c00368{bottom:319.012500px;}
.y44_c00368{bottom:319.323000px;}
.y45_c00368{bottom:319.552500px;}
.y46_c00368{bottom:320.166000px;}
.y47_c00368{bottom:320.808000px;}
.y48_c00368{bottom:321.108000px;}
.y3f_c00368{bottom:335.635500px;}
.y37_c00368{bottom:350.463000px;}
.y38_c00368{bottom:351.091500px;}
.y39_c00368{bottom:351.706500px;}
.y3a_c00368{bottom:351.907500px;}
.y3b_c00368{bottom:352.176000px;}
.y3c_c00368{bottom:352.681500px;}
.y3d_c00368{bottom:352.872000px;}
.y3e_c00368{bottom:353.235000px;}
.y36_c00368{bottom:369.201000px;}
.y30_c00368{bottom:383.401500px;}
.y31_c00368{bottom:383.853000px;}
.y32_c00368{bottom:384.091500px;}
.y33_c00368{bottom:384.543000px;}
.y34_c00368{bottom:385.122000px;}
.y35_c00368{bottom:385.924500px;}
.y2f_c00368{bottom:401.623500px;}
.y2e_c00368{bottom:418.848000px;}
.y2d_c00368{bottom:435.613500px;}
.y25_c00368{bottom:450.630000px;}
.y26_c00368{bottom:450.841500px;}
.y27_c00368{bottom:451.195500px;}
.y28_c00368{bottom:451.549500px;}
.y29_c00368{bottom:452.241000px;}
.y2a_c00368{bottom:452.380500px;}
.y2b_c00368{bottom:452.908500px;}
.y2c_c00368{bottom:453.129000px;}
.y24_c00368{bottom:469.903500px;}
.y23_c00368{bottom:486.763500px;}
.y1b_c00368{bottom:502.201500px;}
.y1c_c00368{bottom:503.197500px;}
.y1d_c00368{bottom:503.446500px;}
.y1e_c00368{bottom:503.991000px;}
.y1f_c00368{bottom:504.156000px;}
.y20_c00368{bottom:504.654000px;}
.y21_c00368{bottom:505.278000px;}
.y22_c00368{bottom:505.482000px;}
.y12_c00368{bottom:518.941500px;}
.y13_c00368{bottom:519.232500px;}
.y14_c00368{bottom:519.766500px;}
.y15_c00368{bottom:520.204500px;}
.y16_c00368{bottom:520.650000px;}
.y17_c00368{bottom:520.882500px;}
.y18_c00368{bottom:521.503500px;}
.y19_c00368{bottom:522.331500px;}
.y1a_c00368{bottom:522.619500px;}
.y9_c00368{bottom:535.141500px;}
.ya_c00368{bottom:535.986000px;}
.yb_c00368{bottom:536.413500px;}
.yc_c00368{bottom:537.450000px;}
.yd_c00368{bottom:537.804000px;}
.ye_c00368{bottom:538.158000px;}
.yf_c00368{bottom:538.530000px;}
.y10_c00368{bottom:539.118000px;}
.y11_c00368{bottom:539.544000px;}
.y2_c00368{bottom:552.691500px;}
.y3_c00368{bottom:552.993000px;}
.y4_c00368{bottom:553.915500px;}
.y5_c00368{bottom:555.019500px;}
.y6_c00368{bottom:555.412500px;}
.y7_c00368{bottom:556.006500px;}
.y8_c00368{bottom:556.243500px;}
.y1_c00368{bottom:569.271000px;}
.h10_c00368{height:45.150000px;}
.hf_c00368{height:55.650000px;}
.h9_c00368{height:57.750000px;}
.hc_c00368{height:58.800000px;}
.hb_c00368{height:59.850000px;}
.h7_c00368{height:60.900000px;}
.ha_c00368{height:61.950000px;}
.h4_c00368{height:63.000000px;}
.h6_c00368{height:64.050000px;}
.hd_c00368{height:65.100000px;}
.h8_c00368{height:66.150000px;}
.h11_c00368{height:67.200000px;}
.he_c00368{height:69.300000px;}
.h5_c00368{height:71.400000px;}
.h3_c00368{height:74.550000px;}
.h2_c00368{height:124.950000px;}
.h0_c00368{height:613.170000px;}
.h1_c00368{height:613.500000px;}
.w0_c00368{width:359.100000px;}
.w1_c00368{width:359.250000px;}
.x0_c00368{left:0.000000px;}
.x6e_c00368{left:17.010000px;}
.x3_c00368{left:21.796500px;}
.x65_c00368{left:23.220000px;}
.x7e_c00368{left:24.570000px;}
.x25_c00368{left:25.653000px;}
.x3a_c00368{left:29.430000px;}
.x83_c00368{left:31.050000px;}
.x62_c00368{left:35.910000px;}
.x1e_c00368{left:41.313000px;}
.x4_c00368{left:43.381500px;}
.x58_c00368{left:45.090000px;}
.x2d_c00368{left:47.250000px;}
.x74_c00368{left:48.330000px;}
.x1f_c00368{left:52.383000px;}
.x5f_c00368{left:60.210000px;}
.x34_c00368{left:62.370000px;}
.x4b_c00368{left:65.070000px;}
.x7f_c00368{left:67.500000px;}
.x5c_c00368{left:68.850000px;}
.x9_c00368{left:71.167500px;}
.x27_c00368{left:73.026000px;}
.x6f_c00368{left:75.330000px;}
.x41_c00368{left:77.221500px;}
.x20_c00368{left:82.083000px;}
.x3e_c00368{left:84.102000px;}
.x11_c00368{left:85.203000px;}
.x4f_c00368{left:89.244000px;}
.x59_c00368{left:90.990000px;}
.x7a_c00368{left:92.070000px;}
.x3b_c00368{left:93.420000px;}
.x26_c00368{left:94.503000px;}
.xa_c00368{left:96.348000px;}
.x18_c00368{left:97.825500px;}
.x4c_c00368{left:101.250000px;}
.x28_c00368{left:105.169500px;}
.x70_c00368{left:108.000000px;}
.x5_c00368{left:109.272000px;}
.x69_c00368{left:110.970000px;}
.x54_c00368{left:112.050000px;}
.x35_c00368{left:114.210000px;}
.x5a_c00368{left:115.830000px;}
.x19_c00368{left:117.013500px;}
.x12_c00368{left:118.905000px;}
.x50_c00368{left:120.261000px;}
.x71_c00368{left:122.040000px;}
.x3f_c00368{left:125.146500px;}
.x60_c00368{left:127.710000px;}
.x75_c00368{left:130.410000px;}
.x36_c00368{left:131.760000px;}
.x82_c00368{left:132.840000px;}
.x2e_c00368{left:137.430000px;}
.x21_c00368{left:139.053000px;}
.x46_c00368{left:141.879000px;}
.x51_c00368{left:143.217000px;}
.x80_c00368{left:144.720000px;}
.x7b_c00368{left:146.070000px;}
.x84_c00368{left:148.500000px;}
.x42_c00368{left:150.661500px;}
.x1_c00368{left:151.740000px;}
.x13_c00368{left:153.189000px;}
.x22_c00368{left:154.713000px;}
.xb_c00368{left:157.285500px;}
.x1a_c00368{left:158.916000px;}
.x2f_c00368{left:160.650000px;}
.x47_c00368{left:164.289000px;}
.x23_c00368{left:166.323000px;}
.x29_c00368{left:168.075000px;}
.x14_c00368{left:171.076500px;}
.x66_c00368{left:176.850000px;}
.xc_c00368{left:178.147500px;}
.x77_c00368{left:179.550000px;}
.x2a_c00368{left:180.772500px;}
.x30_c00368{left:182.520000px;}
.x6_c00368{left:188.104500px;}
.x43_c00368{left:190.891500px;}
.x81_c00368{left:193.050000px;}
.x63_c00368{left:195.210000px;}
.x6a_c00368{left:196.290000px;}
.x61_c00368{left:197.910000px;}
.xd_c00368{left:198.931500px;}
.x37_c00368{left:200.880000px;}
.x52_c00368{left:204.511500px;}
.x48_c00368{left:206.412000px;}
.x1b_c00368{left:209.947500px;}
.x72_c00368{left:211.680000px;}
.x3c_c00368{left:213.300000px;}
.x64_c00368{left:214.380000px;}
.x7_c00368{left:216.186000px;}
.x15_c00368{left:218.862000px;}
.xe_c00368{left:220.800000px;}
.x49_c00368{left:222.343500px;}
.x67_c00368{left:224.910000px;}
.x55_c00368{left:226.530000px;}
.x2b_c00368{left:228.826500px;}
.x24_c00368{left:231.933000px;}
.x3d_c00368{left:233.550000px;}
.x85_c00368{left:235.170000px;}
.x7c_c00368{left:238.950000px;}
.x31_c00368{left:240.300000px;}
.x5d_c00368{left:244.620000px;}
.x56_c00368{left:247.320000px;}
.x2c_c00368{left:248.806500px;}
.x40_c00368{left:250.696500px;}
.x4a_c00368{left:252.592500px;}
.xf_c00368{left:255.378000px;}
.x1c_c00368{left:257.943000px;}
.x2_c00368{left:259.200000px;}
.x38_c00368{left:260.550000px;}
.x32_c00368{left:262.980000px;}
.x6b_c00368{left:265.410000px;}
.x7d_c00368{left:267.570000px;}
.x4d_c00368{left:268.920000px;}
.x5e_c00368{left:272.430000px;}
.x1d_c00368{left:273.681000px;}
.x8_c00368{left:275.548500px;}
.x39_c00368{left:278.100000px;}
.x6c_c00368{left:279.180000px;}
.x10_c00368{left:280.476000px;}
.x16_c00368{left:282.589500px;}
.x44_c00368{left:284.311500px;}
.x86_c00368{left:286.470000px;}
.x76_c00368{left:287.550000px;}
.x78_c00368{left:288.900000px;}
.x68_c00368{left:290.790000px;}
.x4e_c00368{left:294.570000px;}
.x57_c00368{left:296.460000px;}
.x53_c00368{left:298.732500px;}
.x33_c00368{left:302.130000px;}
.x45_c00368{left:303.481500px;}
.x17_c00368{left:304.726500px;}
.x73_c00368{left:306.450000px;}
.x6d_c00368{left:308.340000px;}
.x79_c00368{left:309.420000px;}
.x5b_c00368{left:311.580000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
.fse_c00368{font-size:40.133333pt;}
.fsd_c00368{font-size:49.466667pt;}
.fs7_c00368{font-size:51.333333pt;}
.fsa_c00368{font-size:52.266667pt;}
.fs9_c00368{font-size:53.200000pt;}
.fs5_c00368{font-size:54.133333pt;}
.fs8_c00368{font-size:55.066667pt;}
.fs2_c00368{font-size:56.000000pt;}
.fs4_c00368{font-size:56.933333pt;}
.fsb_c00368{font-size:57.866667pt;}
.fs6_c00368{font-size:58.800000pt;}
.fsf_c00368{font-size:59.733333pt;}
.fsc_c00368{font-size:61.600000pt;}
.fs3_c00368{font-size:63.466667pt;}
.fs1_c00368{font-size:66.266667pt;}
.fs0_c00368{font-size:111.066667pt;}
.y0_c00368{bottom:0.000000pt;}
.y59_c00368{bottom:24.849333pt;}
.y58_c00368{bottom:40.778667pt;}
.y57_c00368{bottom:55.834667pt;}
.y56_c00368{bottom:70.549333pt;}
.y55_c00368{bottom:84.230667pt;}
.y54_c00368{bottom:102.240000pt;}
.y53_c00368{bottom:116.628000pt;}
.y52_c00368{bottom:131.784000pt;}
.y51_c00368{bottom:145.680000pt;}
.y50_c00368{bottom:160.514667pt;}
.y4f_c00368{bottom:175.800000pt;}
.y4e_c00368{bottom:191.305333pt;}
.y4d_c00368{bottom:206.880000pt;}
.y4c_c00368{bottom:222.156000pt;}
.y4b_c00368{bottom:237.492000pt;}
.y4a_c00368{bottom:253.621333pt;}
.y49_c00368{bottom:268.610667pt;}
.y40_c00368{bottom:282.961333pt;}
.y41_c00368{bottom:283.326667pt;}
.y42_c00368{bottom:283.401333pt;}
.y43_c00368{bottom:283.566667pt;}
.y44_c00368{bottom:283.842667pt;}
.y45_c00368{bottom:284.046667pt;}
.y46_c00368{bottom:284.592000pt;}
.y47_c00368{bottom:285.162667pt;}
.y48_c00368{bottom:285.429333pt;}
.y3f_c00368{bottom:298.342667pt;}
.y37_c00368{bottom:311.522667pt;}
.y38_c00368{bottom:312.081333pt;}
.y39_c00368{bottom:312.628000pt;}
.y3a_c00368{bottom:312.806667pt;}
.y3b_c00368{bottom:313.045333pt;}
.y3c_c00368{bottom:313.494667pt;}
.y3d_c00368{bottom:313.664000pt;}
.y3e_c00368{bottom:313.986667pt;}
.y36_c00368{bottom:328.178667pt;}
.y30_c00368{bottom:340.801333pt;}
.y31_c00368{bottom:341.202667pt;}
.y32_c00368{bottom:341.414667pt;}
.y33_c00368{bottom:341.816000pt;}
.y34_c00368{bottom:342.330667pt;}
.y35_c00368{bottom:343.044000pt;}
.y2f_c00368{bottom:356.998667pt;}
.y2e_c00368{bottom:372.309333pt;}
.y2d_c00368{bottom:387.212000pt;}
.y25_c00368{bottom:400.560000pt;}
.y26_c00368{bottom:400.748000pt;}
.y27_c00368{bottom:401.062667pt;}
.y28_c00368{bottom:401.377333pt;}
.y29_c00368{bottom:401.992000pt;}
.y2a_c00368{bottom:402.116000pt;}
.y2b_c00368{bottom:402.585333pt;}
.y2c_c00368{bottom:402.781333pt;}
.y24_c00368{bottom:417.692000pt;}
.y23_c00368{bottom:432.678667pt;}
.y1b_c00368{bottom:446.401333pt;}
.y1c_c00368{bottom:447.286667pt;}
.y1d_c00368{bottom:447.508000pt;}
.y1e_c00368{bottom:447.992000pt;}
.y1f_c00368{bottom:448.138667pt;}
.y20_c00368{bottom:448.581333pt;}
.y21_c00368{bottom:449.136000pt;}
.y22_c00368{bottom:449.317333pt;}
.y12_c00368{bottom:461.281333pt;}
.y13_c00368{bottom:461.540000pt;}
.y14_c00368{bottom:462.014667pt;}
.y15_c00368{bottom:462.404000pt;}
.y16_c00368{bottom:462.800000pt;}
.y17_c00368{bottom:463.006667pt;}
.y18_c00368{bottom:463.558667pt;}
.y19_c00368{bottom:464.294667pt;}
.y1a_c00368{bottom:464.550667pt;}
.y9_c00368{bottom:475.681333pt;}
.ya_c00368{bottom:476.432000pt;}
.yb_c00368{bottom:476.812000pt;}
.yc_c00368{bottom:477.733333pt;}
.yd_c00368{bottom:478.048000pt;}
.ye_c00368{bottom:478.362667pt;}
.yf_c00368{bottom:478.693333pt;}
.y10_c00368{bottom:479.216000pt;}
.y11_c00368{bottom:479.594667pt;}
.y2_c00368{bottom:491.281333pt;}
.y3_c00368{bottom:491.549333pt;}
.y4_c00368{bottom:492.369333pt;}
.y5_c00368{bottom:493.350667pt;}
.y6_c00368{bottom:493.700000pt;}
.y7_c00368{bottom:494.228000pt;}
.y8_c00368{bottom:494.438667pt;}
.y1_c00368{bottom:506.018667pt;}
.h10_c00368{height:40.133333pt;}
.hf_c00368{height:49.466667pt;}
.h9_c00368{height:51.333333pt;}
.hc_c00368{height:52.266667pt;}
.hb_c00368{height:53.200000pt;}
.h7_c00368{height:54.133333pt;}
.ha_c00368{height:55.066667pt;}
.h4_c00368{height:56.000000pt;}
.h6_c00368{height:56.933333pt;}
.hd_c00368{height:57.866667pt;}
.h8_c00368{height:58.800000pt;}
.h11_c00368{height:59.733333pt;}
.he_c00368{height:61.600000pt;}
.h5_c00368{height:63.466667pt;}
.h3_c00368{height:66.266667pt;}
.h2_c00368{height:111.066667pt;}
.h0_c00368{height:545.040000pt;}
.h1_c00368{height:545.333333pt;}
.w0_c00368{width:319.200000pt;}
.w1_c00368{width:319.333333pt;}
.x0_c00368{left:0.000000pt;}
.x6e_c00368{left:15.120000pt;}
.x3_c00368{left:19.374667pt;}
.x65_c00368{left:20.640000pt;}
.x7e_c00368{left:21.840000pt;}
.x25_c00368{left:22.802667pt;}
.x3a_c00368{left:26.160000pt;}
.x83_c00368{left:27.600000pt;}
.x62_c00368{left:31.920000pt;}
.x1e_c00368{left:36.722667pt;}
.x4_c00368{left:38.561333pt;}
.x58_c00368{left:40.080000pt;}
.x2d_c00368{left:42.000000pt;}
.x74_c00368{left:42.960000pt;}
.x1f_c00368{left:46.562667pt;}
.x5f_c00368{left:53.520000pt;}
.x34_c00368{left:55.440000pt;}
.x4b_c00368{left:57.840000pt;}
.x7f_c00368{left:60.000000pt;}
.x5c_c00368{left:61.200000pt;}
.x9_c00368{left:63.260000pt;}
.x27_c00368{left:64.912000pt;}
.x6f_c00368{left:66.960000pt;}
.x41_c00368{left:68.641333pt;}
.x20_c00368{left:72.962667pt;}
.x3e_c00368{left:74.757333pt;}
.x11_c00368{left:75.736000pt;}
.x4f_c00368{left:79.328000pt;}
.x59_c00368{left:80.880000pt;}
.x7a_c00368{left:81.840000pt;}
.x3b_c00368{left:83.040000pt;}
.x26_c00368{left:84.002667pt;}
.xa_c00368{left:85.642667pt;}
.x18_c00368{left:86.956000pt;}
.x4c_c00368{left:90.000000pt;}
.x28_c00368{left:93.484000pt;}
.x70_c00368{left:96.000000pt;}
.x5_c00368{left:97.130667pt;}
.x69_c00368{left:98.640000pt;}
.x54_c00368{left:99.600000pt;}
.x35_c00368{left:101.520000pt;}
.x5a_c00368{left:102.960000pt;}
.x19_c00368{left:104.012000pt;}
.x12_c00368{left:105.693333pt;}
.x50_c00368{left:106.898667pt;}
.x71_c00368{left:108.480000pt;}
.x3f_c00368{left:111.241333pt;}
.x60_c00368{left:113.520000pt;}
.x75_c00368{left:115.920000pt;}
.x36_c00368{left:117.120000pt;}
.x82_c00368{left:118.080000pt;}
.x2e_c00368{left:122.160000pt;}
.x21_c00368{left:123.602667pt;}
.x46_c00368{left:126.114667pt;}
.x51_c00368{left:127.304000pt;}
.x80_c00368{left:128.640000pt;}
.x7b_c00368{left:129.840000pt;}
.x84_c00368{left:132.000000pt;}
.x42_c00368{left:133.921333pt;}
.x1_c00368{left:134.880000pt;}
.x13_c00368{left:136.168000pt;}
.x22_c00368{left:137.522667pt;}
.xb_c00368{left:139.809333pt;}
.x1a_c00368{left:141.258667pt;}
.x2f_c00368{left:142.800000pt;}
.x47_c00368{left:146.034667pt;}
.x23_c00368{left:147.842667pt;}
.x29_c00368{left:149.400000pt;}
.x14_c00368{left:152.068000pt;}
.x66_c00368{left:157.200000pt;}
.xc_c00368{left:158.353333pt;}
.x77_c00368{left:159.600000pt;}
.x2a_c00368{left:160.686667pt;}
.x30_c00368{left:162.240000pt;}
.x6_c00368{left:167.204000pt;}
.x43_c00368{left:169.681333pt;}
.x81_c00368{left:171.600000pt;}
.x63_c00368{left:173.520000pt;}
.x6a_c00368{left:174.480000pt;}
.x61_c00368{left:175.920000pt;}
.xd_c00368{left:176.828000pt;}
.x37_c00368{left:178.560000pt;}
.x52_c00368{left:181.788000pt;}
.x48_c00368{left:183.477333pt;}
.x1b_c00368{left:186.620000pt;}
.x72_c00368{left:188.160000pt;}
.x3c_c00368{left:189.600000pt;}
.x64_c00368{left:190.560000pt;}
.x7_c00368{left:192.165333pt;}
.x15_c00368{left:194.544000pt;}
.xe_c00368{left:196.266667pt;}
.x49_c00368{left:197.638667pt;}
.x67_c00368{left:199.920000pt;}
.x55_c00368{left:201.360000pt;}
.x2b_c00368{left:203.401333pt;}
.x24_c00368{left:206.162667pt;}
.x3d_c00368{left:207.600000pt;}
.x85_c00368{left:209.040000pt;}
.x7c_c00368{left:212.400000pt;}
.x31_c00368{left:213.600000pt;}
.x5d_c00368{left:217.440000pt;}
.x56_c00368{left:219.840000pt;}
.x2c_c00368{left:221.161333pt;}
.x40_c00368{left:222.841333pt;}
.x4a_c00368{left:224.526667pt;}
.xf_c00368{left:227.002667pt;}
.x1c_c00368{left:229.282667pt;}
.x2_c00368{left:230.400000pt;}
.x38_c00368{left:231.600000pt;}
.x32_c00368{left:233.760000pt;}
.x6b_c00368{left:235.920000pt;}
.x7d_c00368{left:237.840000pt;}
.x4d_c00368{left:239.040000pt;}
.x5e_c00368{left:242.160000pt;}
.x1d_c00368{left:243.272000pt;}
.x8_c00368{left:244.932000pt;}
.x39_c00368{left:247.200000pt;}
.x6c_c00368{left:248.160000pt;}
.x10_c00368{left:249.312000pt;}
.x16_c00368{left:251.190667pt;}
.x44_c00368{left:252.721333pt;}
.x86_c00368{left:254.640000pt;}
.x76_c00368{left:255.600000pt;}
.x78_c00368{left:256.800000pt;}
.x68_c00368{left:258.480000pt;}
.x4e_c00368{left:261.840000pt;}
.x57_c00368{left:263.520000pt;}
.x53_c00368{left:265.540000pt;}
.x33_c00368{left:268.560000pt;}
.x45_c00368{left:269.761333pt;}
.x17_c00368{left:270.868000pt;}
.x73_c00368{left:272.400000pt;}
.x6d_c00368{left:274.080000pt;}
.x79_c00368{left:275.040000pt;}
.x5b_c00368{left:276.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00369 {
    display:none;
  }
  .loading-indicator_c00369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00369 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00369 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00369" -> "#page-container .classname_c00369")
 */
.pf_c00369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00369 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00369 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00369 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00369 {overflow:visible;}
  }
}
.c_c00369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00369 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00369:after { /* webkit #35443 */
  content: '';
}
.t_c00369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00369 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00369 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00369 { /* info for Javascript */
  display:none;
}
.l_c00369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00369:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00369 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00369.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mde_c00369{transform:matrix(0.141884,-0.002980,0.005249,0.249945,0,0);-ms-transform:matrix(0.141884,-0.002980,0.005249,0.249945,0,0);-webkit-transform:matrix(0.141884,-0.002980,0.005249,0.249945,0,0);}
.m9_c00369{transform:matrix(0.142397,-0.002563,0.004499,0.249960,0,0);-ms-transform:matrix(0.142397,-0.002563,0.004499,0.249960,0,0);-webkit-transform:matrix(0.142397,-0.002563,0.004499,0.249960,0,0);}
.m16_c00369{transform:matrix(0.146791,-0.002642,0.004499,0.249960,0,0);-ms-transform:matrix(0.146791,-0.002642,0.004499,0.249960,0,0);-webkit-transform:matrix(0.146791,-0.002642,0.004499,0.249960,0,0);}
.mb3_c00369{transform:matrix(0.151177,-0.003175,0.005249,0.249945,0,0);-ms-transform:matrix(0.151177,-0.003175,0.005249,0.249945,0,0);-webkit-transform:matrix(0.151177,-0.003175,0.005249,0.249945,0,0);}
.m2e_c00369{transform:matrix(0.153460,-0.002762,0.004499,0.249960,0,0);-ms-transform:matrix(0.153460,-0.002762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153460,-0.002762,0.004499,0.249960,0,0);}
.m45_c00369{transform:matrix(0.153980,-0.002772,0.004499,0.249960,0,0);-ms-transform:matrix(0.153980,-0.002772,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153980,-0.002772,0.004499,0.249960,0,0);}
.m2b_c00369{transform:matrix(0.155065,-0.002791,0.004499,0.249960,0,0);-ms-transform:matrix(0.155065,-0.002791,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155065,-0.002791,0.004499,0.249960,0,0);}
.m10_c00369{transform:matrix(0.155070,-0.002791,0.004499,0.249960,0,0);-ms-transform:matrix(0.155070,-0.002791,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155070,-0.002791,0.004499,0.249960,0,0);}
.ma5_c00369{transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);-ms-transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156011,-0.003276,0.005249,0.249945,0,0);}
.m77_c00369{transform:matrix(0.156940,-0.003296,0.005249,0.249945,0,0);-ms-transform:matrix(0.156940,-0.003296,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156940,-0.003296,0.005249,0.249945,0,0);}
.mb6_c00369{transform:matrix(0.157625,-0.003310,0.005249,0.249945,0,0);-ms-transform:matrix(0.157625,-0.003310,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157625,-0.003310,0.005249,0.249945,0,0);}
.mf_c00369{transform:matrix(0.159394,-0.002869,0.004499,0.249960,0,0);-ms-transform:matrix(0.159394,-0.002869,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159394,-0.002869,0.004499,0.249960,0,0);}
.m23_c00369{transform:matrix(0.159989,-0.002880,0.004499,0.249960,0,0);-ms-transform:matrix(0.159989,-0.002880,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159989,-0.002880,0.004499,0.249960,0,0);}
.m11_c00369{transform:matrix(0.160524,-0.002889,0.004499,0.249960,0,0);-ms-transform:matrix(0.160524,-0.002889,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160524,-0.002889,0.004499,0.249960,0,0);}
.m1f_c00369{transform:matrix(0.161069,-0.002899,0.004499,0.249960,0,0);-ms-transform:matrix(0.161069,-0.002899,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161069,-0.002899,0.004499,0.249960,0,0);}
.m8_c00369{transform:matrix(0.161629,-0.002909,0.004499,0.249960,0,0);-ms-transform:matrix(0.161629,-0.002909,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161629,-0.002909,0.004499,0.249960,0,0);}
.m5b_c00369{transform:matrix(0.161999,-0.002916,0.004499,0.249960,0,0);-ms-transform:matrix(0.161999,-0.002916,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161999,-0.002916,0.004499,0.249960,0,0);}
.ma_c00369{transform:matrix(0.162744,-0.002929,0.004499,0.249960,0,0);-ms-transform:matrix(0.162744,-0.002929,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162744,-0.002929,0.004499,0.249960,0,0);}
.mbb_c00369{transform:matrix(0.162864,-0.003420,0.005249,0.249945,0,0);-ms-transform:matrix(0.162864,-0.003420,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162864,-0.003420,0.005249,0.249945,0,0);}
.m15_c00369{transform:matrix(0.163628,-0.002945,0.004499,0.249960,0,0);-ms-transform:matrix(0.163628,-0.002945,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163628,-0.002945,0.004499,0.249960,0,0);}
.ma8_c00369{transform:matrix(0.164429,-0.003453,0.005249,0.249945,0,0);-ms-transform:matrix(0.164429,-0.003453,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164429,-0.003453,0.005249,0.249945,0,0);}
.m34_c00369{transform:matrix(0.164743,-0.002965,0.004499,0.249960,0,0);-ms-transform:matrix(0.164743,-0.002965,0.004499,0.249960,0,0);-webkit-transform:matrix(0.164743,-0.002965,0.004499,0.249960,0,0);}
.ma9_c00369{transform:matrix(0.165553,-0.003477,0.005249,0.249945,0,0);-ms-transform:matrix(0.165553,-0.003477,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165553,-0.003477,0.005249,0.249945,0,0);}
.mdc_c00369{transform:matrix(0.166988,-0.003507,0.005249,0.249945,0,0);-ms-transform:matrix(0.166988,-0.003507,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166988,-0.003507,0.005249,0.249945,0,0);}
.m14_c00369{transform:matrix(0.167263,-0.003011,0.004499,0.249960,0,0);-ms-transform:matrix(0.167263,-0.003011,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167263,-0.003011,0.004499,0.249960,0,0);}
.mda_c00369{transform:matrix(0.168313,-0.003535,0.005249,0.249945,0,0);-ms-transform:matrix(0.168313,-0.003535,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168313,-0.003535,0.005249,0.249945,0,0);}
.m3d_c00369{transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);-ms-transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);}
.m98_c00369{transform:matrix(0.169058,-0.003550,0.005249,0.249945,0,0);-ms-transform:matrix(0.169058,-0.003550,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169058,-0.003550,0.005249,0.249945,0,0);}
.m7f_c00369{transform:matrix(0.169138,-0.003552,0.005249,0.249945,0,0);-ms-transform:matrix(0.169138,-0.003552,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169138,-0.003552,0.005249,0.249945,0,0);}
.md9_c00369{transform:matrix(0.169933,-0.003569,0.005249,0.249945,0,0);-ms-transform:matrix(0.169933,-0.003569,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169933,-0.003569,0.005249,0.249945,0,0);}
.mc9_c00369{transform:matrix(0.169973,-0.003569,0.005249,0.249945,0,0);-ms-transform:matrix(0.169973,-0.003569,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169973,-0.003569,0.005249,0.249945,0,0);}
.m73_c00369{transform:matrix(0.170117,-0.003572,0.005249,0.249945,0,0);-ms-transform:matrix(0.170117,-0.003572,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170117,-0.003572,0.005249,0.249945,0,0);}
.m35_c00369{transform:matrix(0.170192,-0.003063,0.004499,0.249960,0,0);-ms-transform:matrix(0.170192,-0.003063,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170192,-0.003063,0.004499,0.249960,0,0);}
.m13_c00369{transform:matrix(0.170607,-0.003071,0.004499,0.249960,0,0);-ms-transform:matrix(0.170607,-0.003071,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170607,-0.003071,0.004499,0.249960,0,0);}
.m3f_c00369{transform:matrix(0.170972,-0.003078,0.004499,0.249960,0,0);-ms-transform:matrix(0.170972,-0.003078,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170972,-0.003078,0.004499,0.249960,0,0);}
.m74_c00369{transform:matrix(0.171137,-0.003594,0.005249,0.249945,0,0);-ms-transform:matrix(0.171137,-0.003594,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171137,-0.003594,0.005249,0.249945,0,0);}
.m63_c00369{transform:matrix(0.171217,-0.003082,0.004499,0.249960,0,0);-ms-transform:matrix(0.171217,-0.003082,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171217,-0.003082,0.004499,0.249960,0,0);}
.m47_c00369{transform:matrix(0.171657,-0.003090,0.004499,0.249960,0,0);-ms-transform:matrix(0.171657,-0.003090,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171657,-0.003090,0.004499,0.249960,0,0);}
.m1a_c00369{transform:matrix(0.172842,-0.003111,0.004499,0.249960,0,0);-ms-transform:matrix(0.172842,-0.003111,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172842,-0.003111,0.004499,0.249960,0,0);}
.m33_c00369{transform:matrix(0.172967,-0.003113,0.004499,0.249960,0,0);-ms-transform:matrix(0.172967,-0.003113,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172967,-0.003113,0.004499,0.249960,0,0);}
.ma6_c00369{transform:matrix(0.173867,-0.003651,0.005249,0.249945,0,0);-ms-transform:matrix(0.173867,-0.003651,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173867,-0.003651,0.005249,0.249945,0,0);}
.mdf_c00369{transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);-ms-transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175301,-0.003681,0.005249,0.249945,0,0);}
.m26_c00369{transform:matrix(0.175587,-0.003161,0.004499,0.249960,0,0);-ms-transform:matrix(0.175587,-0.003161,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175587,-0.003161,0.004499,0.249960,0,0);}
.m97_c00369{transform:matrix(0.175726,-0.003690,0.005249,0.249945,0,0);-ms-transform:matrix(0.175726,-0.003690,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175726,-0.003690,0.005249,0.249945,0,0);}
.mb8_c00369{transform:matrix(0.176796,-0.003713,0.005249,0.249945,0,0);-ms-transform:matrix(0.176796,-0.003713,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176796,-0.003713,0.005249,0.249945,0,0);}
.m7d_c00369{transform:matrix(0.177051,-0.003718,0.005249,0.249945,0,0);-ms-transform:matrix(0.177051,-0.003718,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177051,-0.003718,0.005249,0.249945,0,0);}
.mc8_c00369{transform:matrix(0.177326,-0.003724,0.005249,0.249945,0,0);-ms-transform:matrix(0.177326,-0.003724,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177326,-0.003724,0.005249,0.249945,0,0);}
.m20_c00369{transform:matrix(0.177426,-0.003194,0.004499,0.249960,0,0);-ms-transform:matrix(0.177426,-0.003194,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177426,-0.003194,0.004499,0.249960,0,0);}
.m12_c00369{transform:matrix(0.177531,-0.003196,0.004499,0.249960,0,0);-ms-transform:matrix(0.177531,-0.003196,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177531,-0.003196,0.004499,0.249960,0,0);}
.m3b_c00369{transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);-ms-transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);}
.me4_c00369{transform:matrix(0.178211,-0.003742,0.005249,0.249945,0,0);-ms-transform:matrix(0.178211,-0.003742,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178211,-0.003742,0.005249,0.249945,0,0);}
.mbd_c00369{transform:matrix(0.178346,-0.003745,0.005249,0.249945,0,0);-ms-transform:matrix(0.178346,-0.003745,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178346,-0.003745,0.005249,0.249945,0,0);}
.m86_c00369{transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);-ms-transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);}
.md1_c00369{transform:matrix(0.179046,-0.003760,0.005249,0.249945,0,0);-ms-transform:matrix(0.179046,-0.003760,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179046,-0.003760,0.005249,0.249945,0,0);}
.m8b_c00369{transform:matrix(0.179690,-0.003773,0.005249,0.249945,0,0);-ms-transform:matrix(0.179690,-0.003773,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179690,-0.003773,0.005249,0.249945,0,0);}
.md5_c00369{transform:matrix(0.179735,-0.003774,0.005249,0.249945,0,0);-ms-transform:matrix(0.179735,-0.003774,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179735,-0.003774,0.005249,0.249945,0,0);}
.me9_c00369{transform:matrix(0.180120,-0.003783,0.005249,0.249945,0,0);-ms-transform:matrix(0.180120,-0.003783,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180120,-0.003783,0.005249,0.249945,0,0);}
.md_c00369{transform:matrix(0.180396,-0.003247,0.004499,0.249960,0,0);-ms-transform:matrix(0.180396,-0.003247,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180396,-0.003247,0.004499,0.249960,0,0);}
.m21_c00369{transform:matrix(0.180591,-0.003251,0.004499,0.249960,0,0);-ms-transform:matrix(0.180591,-0.003251,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180591,-0.003251,0.004499,0.249960,0,0);}
.mbf_c00369{transform:matrix(0.181255,-0.003806,0.005249,0.249945,0,0);-ms-transform:matrix(0.181255,-0.003806,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181255,-0.003806,0.005249,0.249945,0,0);}
.mb_c00369{transform:matrix(0.181366,-0.003265,0.004499,0.249960,0,0);-ms-transform:matrix(0.181366,-0.003265,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181366,-0.003265,0.004499,0.249960,0,0);}
.mcd_c00369{transform:matrix(0.181545,-0.003812,0.005249,0.249945,0,0);-ms-transform:matrix(0.181545,-0.003812,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181545,-0.003812,0.005249,0.249945,0,0);}
.mc0_c00369{transform:matrix(0.181615,-0.003814,0.005249,0.249945,0,0);-ms-transform:matrix(0.181615,-0.003814,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181615,-0.003814,0.005249,0.249945,0,0);}
.m0_c00369{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.182091,-0.003278,0.004499,0.249960,0,0);-ms-transform:matrix(0.182091,-0.003278,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182091,-0.003278,0.004499,0.249960,0,0);}
.m62_c00369{transform:matrix(0.182365,-0.003283,0.004499,0.249960,0,0);-ms-transform:matrix(0.182365,-0.003283,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182365,-0.003283,0.004499,0.249960,0,0);}
.mc_c00369{transform:matrix(0.182485,-0.003285,0.004499,0.249960,0,0);-ms-transform:matrix(0.182485,-0.003285,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182485,-0.003285,0.004499,0.249960,0,0);}
.m6f_c00369{transform:matrix(0.182500,-0.003832,0.005249,0.249945,0,0);-ms-transform:matrix(0.182500,-0.003832,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182500,-0.003832,0.005249,0.249945,0,0);}
.mb7_c00369{transform:matrix(0.183245,-0.003848,0.005249,0.249945,0,0);-ms-transform:matrix(0.183245,-0.003848,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183245,-0.003848,0.005249,0.249945,0,0);}
.mc5_c00369{transform:matrix(0.183620,-0.003856,0.005249,0.249945,0,0);-ms-transform:matrix(0.183620,-0.003856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183620,-0.003856,0.005249,0.249945,0,0);}
.m2_c00369{transform:matrix(0.183705,-0.003307,0.004499,0.249960,0,0);-ms-transform:matrix(0.183705,-0.003307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183705,-0.003307,0.004499,0.249960,0,0);}
.m41_c00369{transform:matrix(0.183730,-0.003307,0.004499,0.249960,0,0);-ms-transform:matrix(0.183730,-0.003307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183730,-0.003307,0.004499,0.249960,0,0);}
.m42_c00369{transform:matrix(0.184170,-0.003315,0.004499,0.249960,0,0);-ms-transform:matrix(0.184170,-0.003315,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184170,-0.003315,0.004499,0.249960,0,0);}
.m49_c00369{transform:matrix(0.184450,-0.003320,0.004499,0.249960,0,0);-ms-transform:matrix(0.184450,-0.003320,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184450,-0.003320,0.004499,0.249960,0,0);}
.me5_c00369{transform:matrix(0.184469,-0.003874,0.005249,0.249945,0,0);-ms-transform:matrix(0.184469,-0.003874,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184469,-0.003874,0.005249,0.249945,0,0);}
.md8_c00369{transform:matrix(0.184824,-0.003881,0.005249,0.249945,0,0);-ms-transform:matrix(0.184824,-0.003881,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184824,-0.003881,0.005249,0.249945,0,0);}
.mea_c00369{transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);-ms-transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);}
.md2_c00369{transform:matrix(0.185179,-0.003889,0.005249,0.249945,0,0);-ms-transform:matrix(0.185179,-0.003889,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185179,-0.003889,0.005249,0.249945,0,0);}
.m5f_c00369{transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);-ms-transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);}
.m96_c00369{transform:matrix(0.185669,-0.003899,0.005249,0.249945,0,0);-ms-transform:matrix(0.185669,-0.003899,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185669,-0.003899,0.005249,0.249945,0,0);}
.mc4_c00369{transform:matrix(0.186549,-0.003918,0.005249,0.249945,0,0);-ms-transform:matrix(0.186549,-0.003918,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186549,-0.003918,0.005249,0.249945,0,0);}
.m80_c00369{transform:matrix(0.186684,-0.003920,0.005249,0.249945,0,0);-ms-transform:matrix(0.186684,-0.003920,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186684,-0.003920,0.005249,0.249945,0,0);}
.m54_c00369{transform:matrix(0.186930,-0.003365,0.004499,0.249960,0,0);-ms-transform:matrix(0.186930,-0.003365,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186930,-0.003365,0.004499,0.249960,0,0);}
.md3_c00369{transform:matrix(0.187399,-0.003935,0.005249,0.249945,0,0);-ms-transform:matrix(0.187399,-0.003935,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187399,-0.003935,0.005249,0.249945,0,0);}
.m4f_c00369{transform:matrix(0.187630,-0.003377,0.004499,0.249960,0,0);-ms-transform:matrix(0.187630,-0.003377,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187630,-0.003377,0.004499,0.249960,0,0);}
.mbc_c00369{transform:matrix(0.188628,-0.003961,0.005249,0.249945,0,0);-ms-transform:matrix(0.188628,-0.003961,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188628,-0.003961,0.005249,0.249945,0,0);}
.m4c_c00369{transform:matrix(0.189379,-0.003409,0.004499,0.249960,0,0);-ms-transform:matrix(0.189379,-0.003409,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189379,-0.003409,0.004499,0.249960,0,0);}
.m4b_c00369{transform:matrix(0.189864,-0.003418,0.004499,0.249960,0,0);-ms-transform:matrix(0.189864,-0.003418,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189864,-0.003418,0.004499,0.249960,0,0);}
.m60_c00369{transform:matrix(0.190069,-0.003421,0.004499,0.249960,0,0);-ms-transform:matrix(0.190069,-0.003421,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190069,-0.003421,0.004499,0.249960,0,0);}
.mb4_c00369{transform:matrix(0.191608,-0.004024,0.005249,0.249945,0,0);-ms-transform:matrix(0.191608,-0.004024,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191608,-0.004024,0.005249,0.249945,0,0);}
.mdb_c00369{transform:matrix(0.192053,-0.004033,0.005249,0.249945,0,0);-ms-transform:matrix(0.192053,-0.004033,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192053,-0.004033,0.005249,0.249945,0,0);}
.ma7_c00369{transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);-ms-transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192188,-0.004036,0.005249,0.249945,0,0);}
.me1_c00369{transform:matrix(0.192243,-0.004037,0.005249,0.249945,0,0);-ms-transform:matrix(0.192243,-0.004037,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192243,-0.004037,0.005249,0.249945,0,0);}
.m59_c00369{transform:matrix(0.192304,-0.003461,0.004499,0.249960,0,0);-ms-transform:matrix(0.192304,-0.003461,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192304,-0.003461,0.004499,0.249960,0,0);}
.md7_c00369{transform:matrix(0.192638,-0.004045,0.005249,0.249945,0,0);-ms-transform:matrix(0.192638,-0.004045,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192638,-0.004045,0.005249,0.249945,0,0);}
.m9c_c00369{transform:matrix(0.193072,-0.004055,0.005249,0.249945,0,0);-ms-transform:matrix(0.193072,-0.004055,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193072,-0.004055,0.005249,0.249945,0,0);}
.m2a_c00369{transform:matrix(0.193179,-0.003477,0.004499,0.249960,0,0);-ms-transform:matrix(0.193179,-0.003477,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193179,-0.003477,0.004499,0.249960,0,0);}
.m25_c00369{transform:matrix(0.193769,-0.003488,0.004499,0.249960,0,0);-ms-transform:matrix(0.193769,-0.003488,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193769,-0.003488,0.004499,0.249960,0,0);}
.m5a_c00369{transform:matrix(0.194039,-0.003493,0.004499,0.249960,0,0);-ms-transform:matrix(0.194039,-0.003493,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194039,-0.003493,0.004499,0.249960,0,0);}
.mb5_c00369{transform:matrix(0.194057,-0.004075,0.005249,0.249945,0,0);-ms-transform:matrix(0.194057,-0.004075,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194057,-0.004075,0.005249,0.249945,0,0);}
.md4_c00369{transform:matrix(0.194082,-0.004076,0.005249,0.249945,0,0);-ms-transform:matrix(0.194082,-0.004076,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194082,-0.004076,0.005249,0.249945,0,0);}
.m3e_c00369{transform:matrix(0.194493,-0.003501,0.004499,0.249960,0,0);-ms-transform:matrix(0.194493,-0.003501,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194493,-0.003501,0.004499,0.249960,0,0);}
.m68_c00369{transform:matrix(0.194508,-0.003501,0.004499,0.249960,0,0);-ms-transform:matrix(0.194508,-0.003501,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194508,-0.003501,0.004499,0.249960,0,0);}
.m78_c00369{transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);-ms-transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194802,-0.004091,0.005249,0.249945,0,0);}
.me2_c00369{transform:matrix(0.195207,-0.004099,0.005249,0.249945,0,0);-ms-transform:matrix(0.195207,-0.004099,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195207,-0.004099,0.005249,0.249945,0,0);}
.m4_c00369{transform:matrix(0.196798,-0.003542,0.004499,0.249960,0,0);-ms-transform:matrix(0.196798,-0.003542,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196798,-0.003542,0.004499,0.249960,0,0);}
.m6c_c00369{transform:matrix(0.197931,-0.004157,0.005249,0.249945,0,0);-ms-transform:matrix(0.197931,-0.004157,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197931,-0.004157,0.005249,0.249945,0,0);}
.m8c_c00369{transform:matrix(0.198786,-0.004175,0.005249,0.249945,0,0);-ms-transform:matrix(0.198786,-0.004175,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198786,-0.004175,0.005249,0.249945,0,0);}
.m39_c00369{transform:matrix(0.198923,-0.003581,0.004499,0.249960,0,0);-ms-transform:matrix(0.198923,-0.003581,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198923,-0.003581,0.004499,0.249960,0,0);}
.mb2_c00369{transform:matrix(0.198996,-0.004179,0.005249,0.249945,0,0);-ms-transform:matrix(0.198996,-0.004179,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198996,-0.004179,0.005249,0.249945,0,0);}
.m7_c00369{transform:matrix(0.199313,-0.003588,0.004499,0.249960,0,0);-ms-transform:matrix(0.199313,-0.003588,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199313,-0.003588,0.004499,0.249960,0,0);}
.m24_c00369{transform:matrix(0.199793,-0.003596,0.004499,0.249960,0,0);-ms-transform:matrix(0.199793,-0.003596,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199793,-0.003596,0.004499,0.249960,0,0);}
.m3_c00369{transform:matrix(0.199823,-0.003597,0.004499,0.249960,0,0);-ms-transform:matrix(0.199823,-0.003597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199823,-0.003597,0.004499,0.249960,0,0);}
.m69_c00369{transform:matrix(0.200018,-0.003600,0.004499,0.249960,0,0);-ms-transform:matrix(0.200018,-0.003600,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200018,-0.003600,0.004499,0.249960,0,0);}
.mdd_c00369{transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);-ms-transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200206,-0.004204,0.005249,0.249945,0,0);}
.m27_c00369{transform:matrix(0.200288,-0.003605,0.004499,0.249960,0,0);-ms-transform:matrix(0.200288,-0.003605,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200288,-0.003605,0.004499,0.249960,0,0);}
.mb9_c00369{transform:matrix(0.200301,-0.004206,0.005249,0.249945,0,0);-ms-transform:matrix(0.200301,-0.004206,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200301,-0.004206,0.005249,0.249945,0,0);}
.m4a_c00369{transform:matrix(0.200692,-0.003612,0.004499,0.249960,0,0);-ms-transform:matrix(0.200692,-0.003612,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200692,-0.003612,0.004499,0.249960,0,0);}
.m31_c00369{transform:matrix(0.200912,-0.003616,0.004499,0.249960,0,0);-ms-transform:matrix(0.200912,-0.003616,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200912,-0.003616,0.004499,0.249960,0,0);}
.m8a_c00369{transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);-ms-transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201121,-0.004224,0.005249,0.249945,0,0);}
.m5_c00369{transform:matrix(0.201207,-0.003622,0.004499,0.249960,0,0);-ms-transform:matrix(0.201207,-0.003622,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201207,-0.003622,0.004499,0.249960,0,0);}
.m93_c00369{transform:matrix(0.201211,-0.004225,0.005249,0.249945,0,0);-ms-transform:matrix(0.201211,-0.004225,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201211,-0.004225,0.005249,0.249945,0,0);}
.m48_c00369{transform:matrix(0.201247,-0.003622,0.004499,0.249960,0,0);-ms-transform:matrix(0.201247,-0.003622,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201247,-0.003622,0.004499,0.249960,0,0);}
.m32_c00369{transform:matrix(0.202107,-0.003638,0.004499,0.249960,0,0);-ms-transform:matrix(0.202107,-0.003638,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202107,-0.003638,0.004499,0.249960,0,0);}
.m79_c00369{transform:matrix(0.202140,-0.004245,0.005249,0.249945,0,0);-ms-transform:matrix(0.202140,-0.004245,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202140,-0.004245,0.005249,0.249945,0,0);}
.m6b_c00369{transform:matrix(0.202385,-0.004250,0.005249,0.249945,0,0);-ms-transform:matrix(0.202385,-0.004250,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202385,-0.004250,0.005249,0.249945,0,0);}
.m2c_c00369{transform:matrix(0.202482,-0.003645,0.004499,0.249960,0,0);-ms-transform:matrix(0.202482,-0.003645,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202482,-0.003645,0.004499,0.249960,0,0);}
.m75_c00369{transform:matrix(0.202760,-0.004258,0.005249,0.249945,0,0);-ms-transform:matrix(0.202760,-0.004258,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202760,-0.004258,0.005249,0.249945,0,0);}
.m53_c00369{transform:matrix(0.202907,-0.003652,0.004499,0.249960,0,0);-ms-transform:matrix(0.202907,-0.003652,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202907,-0.003652,0.004499,0.249960,0,0);}
.m88_c00369{transform:matrix(0.203780,-0.004279,0.005249,0.249945,0,0);-ms-transform:matrix(0.203780,-0.004279,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203780,-0.004279,0.005249,0.249945,0,0);}
.m8d_c00369{transform:matrix(0.204055,-0.004285,0.005249,0.249945,0,0);-ms-transform:matrix(0.204055,-0.004285,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204055,-0.004285,0.005249,0.249945,0,0);}
.m1c_c00369{transform:matrix(0.204962,-0.003689,0.004499,0.249960,0,0);-ms-transform:matrix(0.204962,-0.003689,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204962,-0.003689,0.004499,0.249960,0,0);}
.m2d_c00369{transform:matrix(0.205142,-0.003693,0.004499,0.249960,0,0);-ms-transform:matrix(0.205142,-0.003693,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205142,-0.003693,0.004499,0.249960,0,0);}
.me6_c00369{transform:matrix(0.205155,-0.004308,0.005249,0.249945,0,0);-ms-transform:matrix(0.205155,-0.004308,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205155,-0.004308,0.005249,0.249945,0,0);}
.m46_c00369{transform:matrix(0.205197,-0.003694,0.004499,0.249960,0,0);-ms-transform:matrix(0.205197,-0.003694,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205197,-0.003694,0.004499,0.249960,0,0);}
.m3c_c00369{transform:matrix(0.205482,-0.003699,0.004499,0.249960,0,0);-ms-transform:matrix(0.205482,-0.003699,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205482,-0.003699,0.004499,0.249960,0,0);}
.m83_c00369{transform:matrix(0.205585,-0.004317,0.005249,0.249945,0,0);-ms-transform:matrix(0.205585,-0.004317,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205585,-0.004317,0.005249,0.249945,0,0);}
.m8e_c00369{transform:matrix(0.205805,-0.004322,0.005249,0.249945,0,0);-ms-transform:matrix(0.205805,-0.004322,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205805,-0.004322,0.005249,0.249945,0,0);}
.m67_c00369{transform:matrix(0.207336,-0.003732,0.004499,0.249960,0,0);-ms-transform:matrix(0.207336,-0.003732,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207336,-0.003732,0.004499,0.249960,0,0);}
.me3_c00369{transform:matrix(0.207379,-0.004355,0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,-0.004355,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,-0.004355,0.005249,0.249945,0,0);}
.me_c00369{transform:matrix(0.208056,-0.003745,0.004499,0.249960,0,0);-ms-transform:matrix(0.208056,-0.003745,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208056,-0.003745,0.004499,0.249960,0,0);}
.m89_c00369{transform:matrix(0.208099,-0.004370,0.005249,0.249945,0,0);-ms-transform:matrix(0.208099,-0.004370,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208099,-0.004370,0.005249,0.249945,0,0);}
.m2f_c00369{transform:matrix(0.208171,-0.003747,0.004499,0.249960,0,0);-ms-transform:matrix(0.208171,-0.003747,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208171,-0.003747,0.004499,0.249960,0,0);}
.mb1_c00369{transform:matrix(0.208239,-0.004373,0.005249,0.249945,0,0);-ms-transform:matrix(0.208239,-0.004373,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208239,-0.004373,0.005249,0.249945,0,0);}
.m6e_c00369{transform:matrix(0.208279,-0.004374,0.005249,0.249945,0,0);-ms-transform:matrix(0.208279,-0.004374,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208279,-0.004374,0.005249,0.249945,0,0);}
.mc7_c00369{transform:matrix(0.208864,-0.004386,0.005249,0.249945,0,0);-ms-transform:matrix(0.208864,-0.004386,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208864,-0.004386,0.005249,0.249945,0,0);}
.mc2_c00369{transform:matrix(0.208969,-0.004388,0.005249,0.249945,0,0);-ms-transform:matrix(0.208969,-0.004388,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208969,-0.004388,0.005249,0.249945,0,0);}
.me7_c00369{transform:matrix(0.209649,-0.004403,0.005249,0.249945,0,0);-ms-transform:matrix(0.209649,-0.004403,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209649,-0.004403,0.005249,0.249945,0,0);}
.md0_c00369{transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);-ms-transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);}
.mb0_c00369{transform:matrix(0.210519,-0.004421,0.005249,0.249945,0,0);-ms-transform:matrix(0.210519,-0.004421,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210519,-0.004421,0.005249,0.249945,0,0);}
.me0_c00369{transform:matrix(0.210664,-0.004424,0.005249,0.249945,0,0);-ms-transform:matrix(0.210664,-0.004424,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210664,-0.004424,0.005249,0.249945,0,0);}
.m1d_c00369{transform:matrix(0.210851,-0.003795,0.004499,0.249960,0,0);-ms-transform:matrix(0.210851,-0.003795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210851,-0.003795,0.004499,0.249960,0,0);}
.m7a_c00369{transform:matrix(0.210983,-0.004431,0.005249,0.249945,0,0);-ms-transform:matrix(0.210983,-0.004431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210983,-0.004431,0.005249,0.249945,0,0);}
.m36_c00369{transform:matrix(0.211306,-0.003804,0.004499,0.249960,0,0);-ms-transform:matrix(0.211306,-0.003804,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211306,-0.003804,0.004499,0.249960,0,0);}
.mca_c00369{transform:matrix(0.211638,-0.004444,0.005249,0.249945,0,0);-ms-transform:matrix(0.211638,-0.004444,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211638,-0.004444,0.005249,0.249945,0,0);}
.m5c_c00369{transform:matrix(0.211776,-0.003812,0.004499,0.249960,0,0);-ms-transform:matrix(0.211776,-0.003812,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211776,-0.003812,0.004499,0.249960,0,0);}
.ma4_c00369{transform:matrix(0.211798,-0.004448,0.005249,0.249945,0,0);-ms-transform:matrix(0.211798,-0.004448,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211798,-0.004448,0.005249,0.249945,0,0);}
.mad_c00369{transform:matrix(0.212483,-0.004462,0.005249,0.249945,0,0);-ms-transform:matrix(0.212483,-0.004462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212483,-0.004462,0.005249,0.249945,0,0);}
.m84_c00369{transform:matrix(0.212493,-0.004462,0.005249,0.249945,0,0);-ms-transform:matrix(0.212493,-0.004462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212493,-0.004462,0.005249,0.249945,0,0);}
.m30_c00369{transform:matrix(0.212736,-0.003829,0.004499,0.249960,0,0);-ms-transform:matrix(0.212736,-0.003829,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212736,-0.003829,0.004499,0.249960,0,0);}
.md6_c00369{transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);-ms-transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);}
.m5d_c00369{transform:matrix(0.212866,-0.003832,0.004499,0.249960,0,0);-ms-transform:matrix(0.212866,-0.003832,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212866,-0.003832,0.004499,0.249960,0,0);}
.m19_c00369{transform:matrix(0.213380,-0.003841,0.004499,0.249960,0,0);-ms-transform:matrix(0.213380,-0.003841,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213380,-0.003841,0.004499,0.249960,0,0);}
.mce_c00369{transform:matrix(0.214008,-0.004494,0.005249,0.249945,0,0);-ms-transform:matrix(0.214008,-0.004494,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214008,-0.004494,0.005249,0.249945,0,0);}
.m9b_c00369{transform:matrix(0.214058,-0.004495,0.005249,0.249945,0,0);-ms-transform:matrix(0.214058,-0.004495,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214058,-0.004495,0.005249,0.249945,0,0);}
.m58_c00369{transform:matrix(0.214150,-0.003855,0.004499,0.249960,0,0);-ms-transform:matrix(0.214150,-0.003855,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214150,-0.003855,0.004499,0.249960,0,0);}
.m91_c00369{transform:matrix(0.214293,-0.004500,0.005249,0.249945,0,0);-ms-transform:matrix(0.214293,-0.004500,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214293,-0.004500,0.005249,0.249945,0,0);}
.med_c00369{transform:matrix(0.214861,-0.007313,0.008504,0.249855,0,0);-ms-transform:matrix(0.214861,-0.007313,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214861,-0.007313,0.008504,0.249855,0,0);}
.m6a_c00369{transform:matrix(0.214865,-0.003868,0.004499,0.249960,0,0);-ms-transform:matrix(0.214865,-0.003868,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214865,-0.003868,0.004499,0.249960,0,0);}
.maf_c00369{transform:matrix(0.214963,-0.004514,0.005249,0.249945,0,0);-ms-transform:matrix(0.214963,-0.004514,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214963,-0.004514,0.005249,0.249945,0,0);}
.me8_c00369{transform:matrix(0.215263,-0.004521,0.005249,0.249945,0,0);-ms-transform:matrix(0.215263,-0.004521,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215263,-0.004521,0.005249,0.249945,0,0);}
.m9a_c00369{transform:matrix(0.215373,-0.004523,0.005249,0.249945,0,0);-ms-transform:matrix(0.215373,-0.004523,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215373,-0.004523,0.005249,0.249945,0,0);}
.m1e_c00369{transform:matrix(0.215940,-0.003887,0.004499,0.249960,0,0);-ms-transform:matrix(0.215940,-0.003887,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215940,-0.003887,0.004499,0.249960,0,0);}
.mba_c00369{transform:matrix(0.217152,-0.004560,0.005249,0.249945,0,0);-ms-transform:matrix(0.217152,-0.004560,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217152,-0.004560,0.005249,0.249945,0,0);}
.ma3_c00369{transform:matrix(0.217337,-0.004564,0.005249,0.249945,0,0);-ms-transform:matrix(0.217337,-0.004564,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217337,-0.004564,0.005249,0.249945,0,0);}
.m4d_c00369{transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);-ms-transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);}
.m76_c00369{transform:matrix(0.217757,-0.004573,0.005249,0.249945,0,0);-ms-transform:matrix(0.217757,-0.004573,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217757,-0.004573,0.005249,0.249945,0,0);}
.m18_c00369{transform:matrix(0.217775,-0.003920,0.004499,0.249960,0,0);-ms-transform:matrix(0.217775,-0.003920,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217775,-0.003920,0.004499,0.249960,0,0);}
.m7e_c00369{transform:matrix(0.218177,-0.004582,0.005249,0.249945,0,0);-ms-transform:matrix(0.218177,-0.004582,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218177,-0.004582,0.005249,0.249945,0,0);}
.mcf_c00369{transform:matrix(0.218872,-0.004596,0.005249,0.249945,0,0);-ms-transform:matrix(0.218872,-0.004596,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218872,-0.004596,0.005249,0.249945,0,0);}
.mae_c00369{transform:matrix(0.218977,-0.004599,0.005249,0.249945,0,0);-ms-transform:matrix(0.218977,-0.004599,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218977,-0.004599,0.005249,0.249945,0,0);}
.m6_c00369{transform:matrix(0.219494,-0.003951,0.004499,0.249960,0,0);-ms-transform:matrix(0.219494,-0.003951,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219494,-0.003951,0.004499,0.249960,0,0);}
.m99_c00369{transform:matrix(0.219667,-0.004613,0.005249,0.249945,0,0);-ms-transform:matrix(0.219667,-0.004613,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219667,-0.004613,0.005249,0.249945,0,0);}
.m9f_c00369{transform:matrix(0.220276,-0.004626,0.005249,0.249945,0,0);-ms-transform:matrix(0.220276,-0.004626,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220276,-0.004626,0.005249,0.249945,0,0);}
.mc6_c00369{transform:matrix(0.220456,-0.004630,0.005249,0.249945,0,0);-ms-transform:matrix(0.220456,-0.004630,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220456,-0.004630,0.005249,0.249945,0,0);}
.m65_c00369{transform:matrix(0.220744,-0.003973,0.004499,0.249960,0,0);-ms-transform:matrix(0.220744,-0.003973,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220744,-0.003973,0.004499,0.249960,0,0);}
.m4e_c00369{transform:matrix(0.220759,-0.003974,0.004499,0.249960,0,0);-ms-transform:matrix(0.220759,-0.003974,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220759,-0.003974,0.004499,0.249960,0,0);}
.m50_c00369{transform:matrix(0.220774,-0.003974,0.004499,0.249960,0,0);-ms-transform:matrix(0.220774,-0.003974,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220774,-0.003974,0.004499,0.249960,0,0);}
.m95_c00369{transform:matrix(0.221251,-0.004646,0.005249,0.249945,0,0);-ms-transform:matrix(0.221251,-0.004646,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221251,-0.004646,0.005249,0.249945,0,0);}
.m5e_c00369{transform:matrix(0.221474,-0.003987,0.004499,0.249960,0,0);-ms-transform:matrix(0.221474,-0.003987,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221474,-0.003987,0.004499,0.249960,0,0);}
.mcb_c00369{transform:matrix(0.221621,-0.004654,0.005249,0.249945,0,0);-ms-transform:matrix(0.221621,-0.004654,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221621,-0.004654,0.005249,0.249945,0,0);}
.mc1_c00369{transform:matrix(0.221731,-0.004656,0.005249,0.249945,0,0);-ms-transform:matrix(0.221731,-0.004656,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221731,-0.004656,0.005249,0.249945,0,0);}
.m64_c00369{transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);-ms-transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222119,-0.003998,0.004499,0.249960,0,0);}
.mcc_c00369{transform:matrix(0.222511,-0.004673,0.005249,0.249945,0,0);-ms-transform:matrix(0.222511,-0.004673,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222511,-0.004673,0.005249,0.249945,0,0);}
.mec_c00369{transform:matrix(0.223061,-0.007592,0.008504,0.249855,0,0);-ms-transform:matrix(0.223061,-0.007592,0.008504,0.249855,0,0);-webkit-transform:matrix(0.223061,-0.007592,0.008504,0.249855,0,0);}
.m51_c00369{transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);-ms-transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223589,-0.004025,0.004499,0.249960,0,0);}
.m52_c00369{transform:matrix(0.226583,-0.004078,0.004499,0.249960,0,0);-ms-transform:matrix(0.226583,-0.004078,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226583,-0.004078,0.004499,0.249960,0,0);}
.ma1_c00369{transform:matrix(0.227130,-0.004770,0.005249,0.249945,0,0);-ms-transform:matrix(0.227130,-0.004770,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227130,-0.004770,0.005249,0.249945,0,0);}
.m17_c00369{transform:matrix(0.227718,-0.004099,0.004499,0.249960,0,0);-ms-transform:matrix(0.227718,-0.004099,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227718,-0.004099,0.004499,0.249960,0,0);}
.m22_c00369{transform:matrix(0.228103,-0.004106,0.004499,0.249960,0,0);-ms-transform:matrix(0.228103,-0.004106,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228103,-0.004106,0.004499,0.249960,0,0);}
.ma0_c00369{transform:matrix(0.228230,-0.004793,0.005249,0.249945,0,0);-ms-transform:matrix(0.228230,-0.004793,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228230,-0.004793,0.005249,0.249945,0,0);}
.mc3_c00369{transform:matrix(0.228895,-0.004807,0.005249,0.249945,0,0);-ms-transform:matrix(0.228895,-0.004807,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228895,-0.004807,0.005249,0.249945,0,0);}
.m3a_c00369{transform:matrix(0.229553,-0.004132,0.004499,0.249960,0,0);-ms-transform:matrix(0.229553,-0.004132,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229553,-0.004132,0.004499,0.249960,0,0);}
.m57_c00369{transform:matrix(0.230613,-0.004151,0.004499,0.249960,0,0);-ms-transform:matrix(0.230613,-0.004151,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230613,-0.004151,0.004499,0.249960,0,0);}
.mbe_c00369{transform:matrix(0.230844,-0.004848,0.005249,0.249945,0,0);-ms-transform:matrix(0.230844,-0.004848,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230844,-0.004848,0.005249,0.249945,0,0);}
.m55_c00369{transform:matrix(0.230998,-0.004158,0.004499,0.249960,0,0);-ms-transform:matrix(0.230998,-0.004158,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230998,-0.004158,0.004499,0.249960,0,0);}
.m6d_c00369{transform:matrix(0.232389,-0.004880,0.005249,0.249945,0,0);-ms-transform:matrix(0.232389,-0.004880,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232389,-0.004880,0.005249,0.249945,0,0);}
.m85_c00369{transform:matrix(0.233354,-0.004900,0.005249,0.249945,0,0);-ms-transform:matrix(0.233354,-0.004900,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233354,-0.004900,0.005249,0.249945,0,0);}
.m70_c00369{transform:matrix(0.235123,-0.004938,0.005249,0.249945,0,0);-ms-transform:matrix(0.235123,-0.004938,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235123,-0.004938,0.005249,0.249945,0,0);}
.m87_c00369{transform:matrix(0.235418,-0.004944,0.005249,0.249945,0,0);-ms-transform:matrix(0.235418,-0.004944,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235418,-0.004944,0.005249,0.249945,0,0);}
.m81_c00369{transform:matrix(0.236338,-0.004963,0.005249,0.249945,0,0);-ms-transform:matrix(0.236338,-0.004963,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236338,-0.004963,0.005249,0.249945,0,0);}
.mac_c00369{transform:matrix(0.236503,-0.004967,0.005249,0.249945,0,0);-ms-transform:matrix(0.236503,-0.004967,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236503,-0.004967,0.005249,0.249945,0,0);}
.m61_c00369{transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);-ms-transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236542,-0.004258,0.004499,0.249960,0,0);}
.m66_c00369{transform:matrix(0.236707,-0.004261,0.004499,0.249960,0,0);-ms-transform:matrix(0.236707,-0.004261,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236707,-0.004261,0.004499,0.249960,0,0);}
.m38_c00369{transform:matrix(0.237037,-0.004267,0.004499,0.249960,0,0);-ms-transform:matrix(0.237037,-0.004267,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237037,-0.004267,0.004499,0.249960,0,0);}
.mab_c00369{transform:matrix(0.237168,-0.004981,0.005249,0.249945,0,0);-ms-transform:matrix(0.237168,-0.004981,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237168,-0.004981,0.005249,0.249945,0,0);}
.m90_c00369{transform:matrix(0.237218,-0.004982,0.005249,0.249945,0,0);-ms-transform:matrix(0.237218,-0.004982,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237218,-0.004982,0.005249,0.249945,0,0);}
.m82_c00369{transform:matrix(0.238252,-0.005003,0.005249,0.249945,0,0);-ms-transform:matrix(0.238252,-0.005003,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238252,-0.005003,0.005249,0.249945,0,0);}
.m1b_c00369{transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);-ms-transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);}
.maa_c00369{transform:matrix(0.239282,-0.005025,0.005249,0.249945,0,0);-ms-transform:matrix(0.239282,-0.005025,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239282,-0.005025,0.005249,0.249945,0,0);}
.ma2_c00369{transform:matrix(0.239422,-0.005028,0.005249,0.249945,0,0);-ms-transform:matrix(0.239422,-0.005028,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239422,-0.005028,0.005249,0.249945,0,0);}
.m72_c00369{transform:matrix(0.239957,-0.005039,0.005249,0.249945,0,0);-ms-transform:matrix(0.239957,-0.005039,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239957,-0.005039,0.005249,0.249945,0,0);}
.m37_c00369{transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);-ms-transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);}
.m71_c00369{transform:matrix(0.243071,-0.005104,0.005249,0.249945,0,0);-ms-transform:matrix(0.243071,-0.005104,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243071,-0.005104,0.005249,0.249945,0,0);}
.m40_c00369{transform:matrix(0.252684,-0.004548,0.004499,0.249960,0,0);-ms-transform:matrix(0.252684,-0.004548,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252684,-0.004548,0.004499,0.249960,0,0);}
.m1_c00369{transform:matrix(0.252864,-0.004552,0.004499,0.249960,0,0);-ms-transform:matrix(0.252864,-0.004552,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252864,-0.004552,0.004499,0.249960,0,0);}
.m8f_c00369{transform:matrix(0.254804,-0.005351,0.005249,0.249945,0,0);-ms-transform:matrix(0.254804,-0.005351,0.005249,0.249945,0,0);-webkit-transform:matrix(0.254804,-0.005351,0.005249,0.249945,0,0);}
.m94_c00369{transform:matrix(0.255039,-0.005356,0.005249,0.249945,0,0);-ms-transform:matrix(0.255039,-0.005356,0.005249,0.249945,0,0);-webkit-transform:matrix(0.255039,-0.005356,0.005249,0.249945,0,0);}
.m9e_c00369{transform:matrix(0.257108,-0.005399,0.005249,0.249945,0,0);-ms-transform:matrix(0.257108,-0.005399,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257108,-0.005399,0.005249,0.249945,0,0);}
.m56_c00369{transform:matrix(0.258858,-0.004659,0.004499,0.249960,0,0);-ms-transform:matrix(0.258858,-0.004659,0.004499,0.249960,0,0);-webkit-transform:matrix(0.258858,-0.004659,0.004499,0.249960,0,0);}
.m92_c00369{transform:matrix(0.260678,-0.005474,0.005249,0.249945,0,0);-ms-transform:matrix(0.260678,-0.005474,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260678,-0.005474,0.005249,0.249945,0,0);}
.m43_c00369{transform:matrix(0.267877,-0.004822,0.004499,0.249960,0,0);-ms-transform:matrix(0.267877,-0.004822,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267877,-0.004822,0.004499,0.249960,0,0);}
.m9d_c00369{transform:matrix(0.276114,-0.005798,0.005249,0.249945,0,0);-ms-transform:matrix(0.276114,-0.005798,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276114,-0.005798,0.005249,0.249945,0,0);}
.m7b_c00369{transform:matrix(0.286682,-0.006020,0.005249,0.249945,0,0);-ms-transform:matrix(0.286682,-0.006020,0.005249,0.249945,0,0);-webkit-transform:matrix(0.286682,-0.006020,0.005249,0.249945,0,0);}
.m28_c00369{transform:matrix(0.330376,-0.005947,0.004499,0.249960,0,0);-ms-transform:matrix(0.330376,-0.005947,0.004499,0.249960,0,0);-webkit-transform:matrix(0.330376,-0.005947,0.004499,0.249960,0,0);}
.m44_c00369{transform:matrix(0.343934,-0.006191,0.004499,0.249960,0,0);-ms-transform:matrix(0.343934,-0.006191,0.004499,0.249960,0,0);-webkit-transform:matrix(0.343934,-0.006191,0.004499,0.249960,0,0);}
.m7c_c00369{transform:matrix(0.354452,-0.007443,0.005249,0.249945,0,0);-ms-transform:matrix(0.354452,-0.007443,0.005249,0.249945,0,0);-webkit-transform:matrix(0.354452,-0.007443,0.005249,0.249945,0,0);}
.meb_c00369{transform:matrix(0.372673,-0.007826,0.005249,0.249945,0,0);-ms-transform:matrix(0.372673,-0.007826,0.005249,0.249945,0,0);-webkit-transform:matrix(0.372673,-0.007826,0.005249,0.249945,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:transparent;}
.fs8_c00369{font-size:55.659015px;}
.fsb_c00369{font-size:55.662269px;}
.fs14_c00369{font-size:56.676096px;}
.fs4_c00369{font-size:57.759355px;}
.fsf_c00369{font-size:57.762732px;}
.fs6_c00369{font-size:58.809525px;}
.fs11_c00369{font-size:58.812964px;}
.fsa_c00369{font-size:59.859695px;}
.fsd_c00369{font-size:59.863195px;}
.fs9_c00369{font-size:60.909865px;}
.fse_c00369{font-size:60.913427px;}
.fs1_c00369{font-size:61.960035px;}
.fs10_c00369{font-size:65.114353px;}
.fs12_c00369{font-size:66.164584px;}
.fs5_c00369{font-size:67.210886px;}
.fs13_c00369{font-size:67.214816px;}
.fs2_c00369{font-size:68.261056px;}
.fsc_c00369{font-size:68.265047px;}
.fs7_c00369{font-size:69.311226px;}
.fs3_c00369{font-size:72.461736px;}
.fs0_c00369{font-size:75.600000px;}
.y0_c00369{bottom:0.000000px;}
.yee_c00369{bottom:18.645000px;}
.yef_c00369{bottom:20.522259px;}
.ye4_c00369{bottom:35.850026px;}
.ye5_c00369{bottom:37.256231px;}
.ye6_c00369{bottom:37.761900px;}
.ye7_c00369{bottom:38.174300px;}
.ye8_c00369{bottom:38.967434px;}
.ye9_c00369{bottom:39.531066px;}
.yea_c00369{bottom:40.947528px;}
.yeb_c00369{bottom:41.682006px;}
.yec_c00369{bottom:42.313103px;}
.yed_c00369{bottom:42.701082px;}
.ydd_c00369{bottom:52.326842px;}
.yde_c00369{bottom:54.308831px;}
.ydf_c00369{bottom:55.107524px;}
.ye0_c00369{bottom:56.187830px;}
.ye1_c00369{bottom:56.817798px;}
.ye2_c00369{bottom:58.054221px;}
.ye3_c00369{bottom:58.535873px;}
.yd5_c00369{bottom:69.335703px;}
.yd6_c00369{bottom:69.767600px;}
.yd7_c00369{bottom:70.947180px;}
.yd8_c00369{bottom:71.387802px;}
.yd9_c00369{bottom:71.671365px;}
.yda_c00369{bottom:72.330975px;}
.ydb_c00369{bottom:73.318059px;}
.ydc_c00369{bottom:75.155675px;}
.ycc_c00369{bottom:86.084681px;}
.ycd_c00369{bottom:86.786492px;}
.yce_c00369{bottom:87.089747px;}
.ycf_c00369{bottom:88.536464px;}
.yd0_c00369{bottom:88.928574px;}
.yd1_c00369{bottom:90.795200px;}
.yd2_c00369{bottom:92.030057px;}
.yd3_c00369{bottom:92.521614px;}
.yd4_c00369{bottom:93.063185px;}
.yc3_c00369{bottom:103.370516px;}
.yc4_c00369{bottom:104.269563px;}
.yc5_c00369{bottom:105.765431px;}
.yc6_c00369{bottom:106.909511px;}
.yc7_c00369{bottom:107.534109px;}
.yc8_c00369{bottom:108.589976px;}
.yc9_c00369{bottom:108.880812px;}
.yca_c00369{bottom:109.670597px;}
.ycb_c00369{bottom:110.333408px;}
.ybc_c00369{bottom:120.651782px;}
.ybd_c00369{bottom:122.631198px;}
.ybe_c00369{bottom:123.559071px;}
.ybf_c00369{bottom:123.799136px;}
.yc0_c00369{bottom:124.815762px;}
.yc1_c00369{bottom:125.685905px;}
.yc2_c00369{bottom:126.547460px;}
.yb4_c00369{bottom:137.125533px;}
.yb5_c00369{bottom:137.448169px;}
.yb6_c00369{bottom:137.951886px;}
.yb7_c00369{bottom:139.669016px;}
.yb8_c00369{bottom:141.516889px;}
.yb9_c00369{bottom:142.184996px;}
.yba_c00369{bottom:142.688177px;}
.ybb_c00369{bottom:143.442570px;}
.yad_c00369{bottom:154.681311px;}
.yae_c00369{bottom:155.892354px;}
.yaf_c00369{bottom:157.087986px;}
.yb0_c00369{bottom:157.656372px;}
.yb1_c00369{bottom:159.343567px;}
.yb2_c00369{bottom:160.119765px;}
.yb3_c00369{bottom:161.229432px;}
.ya6_c00369{bottom:172.502551px;}
.ya7_c00369{bottom:174.346981px;}
.ya8_c00369{bottom:174.933207px;}
.ya9_c00369{bottom:176.261994px;}
.yaa_c00369{bottom:177.665080px;}
.yab_c00369{bottom:178.244419px;}
.yac_c00369{bottom:179.417532px;}
.y9e_c00369{bottom:189.513850px;}
.y9f_c00369{bottom:190.101880px;}
.ya0_c00369{bottom:190.849171px;}
.ya1_c00369{bottom:191.825721px;}
.ya2_c00369{bottom:192.333327px;}
.ya3_c00369{bottom:193.254507px;}
.ya4_c00369{bottom:193.909467px;}
.ya5_c00369{bottom:195.174444px;}
.y97_c00369{bottom:208.150842px;}
.y98_c00369{bottom:209.429628px;}
.y99_c00369{bottom:209.715768px;}
.y9a_c00369{bottom:210.315232px;}
.y9b_c00369{bottom:210.817609px;}
.y9c_c00369{bottom:212.329989px;}
.y9d_c00369{bottom:213.562351px;}
.y90_c00369{bottom:224.895792px;}
.y91_c00369{bottom:225.502053px;}
.y92_c00369{bottom:226.567936px;}
.y93_c00369{bottom:227.362944px;}
.y94_c00369{bottom:227.835619px;}
.y95_c00369{bottom:229.726239px;}
.y96_c00369{bottom:230.277327px;}
.y8a_c00369{bottom:241.371664px;}
.y8b_c00369{bottom:241.938735px;}
.y8c_c00369{bottom:243.855868px;}
.y8d_c00369{bottom:244.806261px;}
.y8e_c00369{bottom:245.928073px;}
.y8f_c00369{bottom:246.490954px;}
.y84_c00369{bottom:258.115983px;}
.y85_c00369{bottom:259.517446px;}
.y86_c00369{bottom:260.214471px;}
.y87_c00369{bottom:260.827323px;}
.y88_c00369{bottom:262.354330px;}
.y89_c00369{bottom:262.994473px;}
.y7c_c00369{bottom:274.590417px;}
.y7d_c00369{bottom:276.280077px;}
.y7e_c00369{bottom:277.148815px;}
.y7f_c00369{bottom:277.408848px;}
.y80_c00369{bottom:278.497015px;}
.y81_c00369{bottom:278.803605px;}
.y82_c00369{bottom:279.268671px;}
.y83_c00369{bottom:280.539192px;}
.y75_c00369{bottom:291.331855px;}
.y76_c00369{bottom:292.283472px;}
.y77_c00369{bottom:293.259319px;}
.y78_c00369{bottom:294.167080px;}
.y79_c00369{bottom:295.185083px;}
.y7a_c00369{bottom:296.054449px;}
.y7b_c00369{bottom:297.413293px;}
.y6d_c00369{bottom:309.154500px;}
.y6e_c00369{bottom:310.164138px;}
.y6f_c00369{bottom:311.031207px;}
.y70_c00369{bottom:311.759203px;}
.y71_c00369{bottom:312.749343px;}
.y72_c00369{bottom:313.205337px;}
.y73_c00369{bottom:314.617797px;}
.y74_c00369{bottom:314.849731px;}
.y65_c00369{bottom:325.869840px;}
.y66_c00369{bottom:326.337354px;}
.y67_c00369{bottom:327.422796px;}
.y68_c00369{bottom:328.858029px;}
.y69_c00369{bottom:329.177343px;}
.y6a_c00369{bottom:329.839089px;}
.y6b_c00369{bottom:331.364727px;}
.y6c_c00369{bottom:332.221260px;}
.y5d_c00369{bottom:342.341796px;}
.y5e_c00369{bottom:342.719028px;}
.y5f_c00369{bottom:343.512729px;}
.y60_c00369{bottom:344.137326px;}
.y61_c00369{bottom:345.001605px;}
.y62_c00369{bottom:346.176750px;}
.y63_c00369{bottom:346.764903px;}
.y64_c00369{bottom:348.430971px;}
.y55_c00369{bottom:360.700908px;}
.y56_c00369{bottom:361.476465px;}
.y57_c00369{bottom:361.795749px;}
.y58_c00369{bottom:362.951889px;}
.y59_c00369{bottom:363.595680px;}
.y5a_c00369{bottom:364.738158px;}
.y5b_c00369{bottom:365.063826px;}
.y5c_c00369{bottom:365.329356px;}
.y4e_c00369{bottom:377.713497px;}
.y4f_c00369{bottom:378.105366px;}
.y50_c00369{bottom:379.302975px;}
.y51_c00369{bottom:379.656060px;}
.y52_c00369{bottom:379.949208px;}
.y53_c00369{bottom:381.220239px;}
.y54_c00369{bottom:382.175646px;}
.y47_c00369{bottom:395.262540px;}
.y48_c00369{bottom:395.611878px;}
.y49_c00369{bottom:396.283908px;}
.y4a_c00369{bottom:397.052958px;}
.y4b_c00369{bottom:397.731090px;}
.y4c_c00369{bottom:398.432343px;}
.y4d_c00369{bottom:399.494244px;}
.y3f_c00369{bottom:412.273737px;}
.y40_c00369{bottom:412.776117px;}
.y41_c00369{bottom:413.086164px;}
.y42_c00369{bottom:413.687823px;}
.y43_c00369{bottom:414.183564px;}
.y44_c00369{bottom:415.287819px;}
.y45_c00369{bottom:415.586556px;}
.y46_c00369{bottom:416.316198px;}
.y37_c00369{bottom:429.015138px;}
.y38_c00369{bottom:429.279888px;}
.y39_c00369{bottom:430.065120px;}
.y3a_c00369{bottom:430.351830px;}
.y3b_c00369{bottom:430.936263px;}
.y3c_c00369{bottom:431.988702px;}
.y3d_c00369{bottom:432.739017px;}
.y3e_c00369{bottom:433.066785px;}
.y30_c00369{bottom:445.221171px;}
.y31_c00369{bottom:446.328198px;}
.y32_c00369{bottom:446.839551px;}
.y33_c00369{bottom:448.164711px;}
.y34_c00369{bottom:448.526214px;}
.y35_c00369{bottom:449.506368px;}
.y36_c00369{bottom:449.872569px;}
.y29_c00369{bottom:463.042869px;}
.y2a_c00369{bottom:464.314908px;}
.y2b_c00369{bottom:464.881146px;}
.y2c_c00369{bottom:465.436263px;}
.y2d_c00369{bottom:465.777246px;}
.y2e_c00369{bottom:466.437561px;}
.y2f_c00369{bottom:467.250867px;}
.y20_c00369{bottom:479.246715px;}
.y21_c00369{bottom:479.543823px;}
.y22_c00369{bottom:479.800755px;}
.y23_c00369{bottom:480.452670px;}
.y24_c00369{bottom:480.805911px;}
.y25_c00369{bottom:481.143033px;}
.y26_c00369{bottom:482.120352px;}
.y27_c00369{bottom:482.902596px;}
.y28_c00369{bottom:483.203862px;}
.y18_c00369{bottom:497.335530px;}
.y19_c00369{bottom:498.023820px;}
.y1a_c00369{bottom:498.455466px;}
.y1b_c00369{bottom:499.046634px;}
.y1c_c00369{bottom:499.453206px;}
.y1d_c00369{bottom:499.632984px;}
.y1e_c00369{bottom:500.355969px;}
.y1f_c00369{bottom:500.679696px;}
.y10_c00369{bottom:513.266214px;}
.y11_c00369{bottom:513.737940px;}
.y12_c00369{bottom:514.114503px;}
.y13_c00369{bottom:514.723182px;}
.y14_c00369{bottom:515.471016px;}
.y15_c00369{bottom:515.774148px;}
.y16_c00369{bottom:517.155957px;}
.y17_c00369{bottom:517.688439px;}
.y8_c00369{bottom:528.937059px;}
.y9_c00369{bottom:530.155392px;}
.ya_c00369{bottom:530.542938px;}
.yb_c00369{bottom:531.053730px;}
.yc_c00369{bottom:531.370728px;}
.yd_c00369{bottom:531.916611px;}
.ye_c00369{bottom:534.103437px;}
.yf_c00369{bottom:534.228735px;}
.y2_c00369{bottom:546.754500px;}
.y3_c00369{bottom:548.635104px;}
.y4_c00369{bottom:549.057951px;}
.y5_c00369{bottom:549.738594px;}
.y6_c00369{bottom:550.414107px;}
.y7_c00369{bottom:551.478528px;}
.y1_c00369{bottom:563.577000px;}
.ha_c00369{height:55.659015px;}
.hd_c00369{height:55.662269px;}
.h16_c00369{height:56.676096px;}
.h6_c00369{height:57.759355px;}
.h11_c00369{height:57.762732px;}
.h8_c00369{height:58.809525px;}
.h13_c00369{height:58.812964px;}
.hc_c00369{height:59.859695px;}
.hf_c00369{height:59.863195px;}
.hb_c00369{height:60.909865px;}
.h10_c00369{height:60.913427px;}
.h3_c00369{height:61.960035px;}
.h12_c00369{height:65.114353px;}
.h14_c00369{height:66.164584px;}
.h7_c00369{height:67.210886px;}
.h15_c00369{height:67.214816px;}
.h4_c00369{height:68.261056px;}
.he_c00369{height:68.265047px;}
.h9_c00369{height:69.311226px;}
.h5_c00369{height:72.461736px;}
.h2_c00369{height:75.600000px;}
.h0_c00369{height:613.170000px;}
.h1_c00369{height:613.500000px;}
.w0_c00369{width:359.100000px;}
.w1_c00369{width:359.250000px;}
.x0_c00369{left:0.000000px;}
.x8_c00369{left:42.105681px;}
.x25_c00369{left:43.336791px;}
.x7c_c00369{left:44.701500px;}
.x2_c00369{left:48.061500px;}
.x4b_c00369{left:50.416899px;}
.x51_c00369{left:52.578000px;}
.x6c_c00369{left:54.762707px;}
.x1d_c00369{left:59.097975px;}
.x2e_c00369{left:60.145272px;}
.x3d_c00369{left:64.538538px;}
.x39_c00369{left:65.807934px;}
.x4c_c00369{left:69.887793px;}
.x10_c00369{left:71.493195px;}
.x1e_c00369{left:73.371975px;}
.x60_c00369{left:74.536607px;}
.x35_c00369{left:78.488685px;}
.x71_c00369{left:82.168848px;}
.x53_c00369{left:84.278109px;}
.x42_c00369{left:87.100569px;}
.x6a_c00369{left:88.685003px;}
.x11_c00369{left:94.997532px;}
.x9_c00369{left:100.121049px;}
.x79_c00369{left:102.627909px;}
.x2a_c00369{left:104.147754px;}
.x43_c00369{left:105.838893px;}
.x63_c00369{left:107.963714px;}
.x1f_c00369{left:109.589475px;}
.x3a_c00369{left:110.645364px;}
.x2f_c00369{left:112.522107px;}
.x4d_c00369{left:115.101906px;}
.xa_c00369{left:118.567050px;}
.x66_c00369{left:120.389102px;}
.x64_c00369{left:122.304029px;}
.x47_c00369{left:123.638907px;}
.x54_c00369{left:126.673814px;}
.x17_c00369{left:128.093523px;}
.x20_c00369{left:129.213975px;}
.x30_c00369{left:131.618133px;}
.x12_c00369{left:133.064409px;}
.x3e_c00369{left:134.990307px;}
.x72_c00369{left:137.840021px;}
.x74_c00369{left:141.169952px;}
.xb_c00369{left:142.859727px;}
.x67_c00369{left:144.803058px;}
.x21_c00369{left:147.942975px;}
.x3_c00369{left:152.539500px;}
.x6b_c00369{left:154.034781px;}
.x3f_c00369{left:155.773185px;}
.xc_c00369{left:157.969917px;}
.x6e_c00369{left:160.072170px;}
.x3b_c00369{left:161.873118px;}
.x48_c00369{left:162.901572px;}
.x57_c00369{left:164.504661px;}
.x26_c00369{left:165.969933px;}
.x5d_c00369{left:167.397780px;}
.x31_c00369{left:170.588739px;}
.x1_c00369{left:172.260000px;}
.x18_c00369{left:173.523600px;}
.x4e_c00369{left:174.913953px;}
.x4_c00369{left:176.031000px;}
.x5b_c00369{left:178.210803px;}
.x13_c00369{left:179.779083px;}
.x78_c00369{left:181.984502px;}
.xd_c00369{left:183.962013px;}
.x75_c00369{left:186.082952px;}
.x4f_c00369{left:188.235522px;}
.x61_c00369{left:197.378273px;}
.x14_c00369{left:198.703758px;}
.x68_c00369{left:200.146562px;}
.x22_c00369{left:202.238475px;}
.x6f_c00369{left:203.405648px;}
.x19_c00369{left:204.780408px;}
.x2b_c00369{left:206.176254px;}
.x55_c00369{left:210.373286px;}
.x44_c00369{left:211.670283px;}
.x5_c00369{left:213.844500px;}
.x5e_c00369{left:214.941288px;}
.x49_c00369{left:216.350238px;}
.x1a_c00369{left:218.602650px;}
.x52_c00369{left:223.761000px;}
.x27_c00369{left:225.673146px;}
.x58_c00369{left:228.704661px;}
.x65_c00369{left:230.256149px;}
.x76_c00369{left:233.086952px;}
.x32_c00369{left:240.728019px;}
.x6d_c00369{left:241.902207px;}
.x4a_c00369{left:243.106821px;}
.x23_c00369{left:245.696475px;}
.x40_c00369{left:247.840359px;}
.x6_c00369{left:251.373000px;}
.x3c_c00369{left:253.760559px;}
.x70_c00369{left:255.243230px;}
.x7a_c00369{left:256.465739px;}
.x36_c00369{left:257.790564px;}
.x24_c00369{left:262.433475px;}
.x59_c00369{left:265.450161px;}
.x28_c00369{left:269.693022px;}
.x5f_c00369{left:271.004953px;}
.x73_c00369{left:272.258940px;}
.x1b_c00369{left:274.190145px;}
.x37_c00369{left:279.138603px;}
.x2c_c00369{left:280.712754px;}
.x69_c00369{left:282.756864px;}
.x15_c00369{left:285.057363px;}
.x5c_c00369{left:286.553571px;}
.xe_c00369{left:288.113397px;}
.x33_c00369{left:290.748219px;}
.xf_c00369{left:294.074073px;}
.x62_c00369{left:296.911962px;}
.x45_c00369{left:298.068849px;}
.x1c_c00369{left:299.093886px;}
.x2d_c00369{left:301.057254px;}
.x41_c00369{left:304.002858px;}
.x56_c00369{left:307.260222px;}
.x7_c00369{left:310.507500px;}
.x34_c00369{left:312.625407px;}
.x46_c00369{left:313.654119px;}
.x50_c00369{left:315.078333px;}
.x16_c00369{left:318.307551px;}
.x77_c00369{left:320.592452px;}
.x29_c00369{left:323.962965px;}
.x5a_c00369{left:325.951161px;}
.x7b_c00369{left:329.535140px;}
.x38_c00369{left:331.261356px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fs8_c00369{font-size:49.474680pt;}
.fsb_c00369{font-size:49.477573pt;}
.fs14_c00369{font-size:50.378752pt;}
.fs4_c00369{font-size:51.341649pt;}
.fsf_c00369{font-size:51.344651pt;}
.fs6_c00369{font-size:52.275133pt;}
.fs11_c00369{font-size:52.278190pt;}
.fsa_c00369{font-size:53.208618pt;}
.fsd_c00369{font-size:53.211729pt;}
.fs9_c00369{font-size:54.142102pt;}
.fse_c00369{font-size:54.145268pt;}
.fs1_c00369{font-size:55.075587pt;}
.fs10_c00369{font-size:57.879425pt;}
.fs12_c00369{font-size:58.812964pt;}
.fs5_c00369{font-size:59.743009pt;}
.fs13_c00369{font-size:59.746503pt;}
.fs2_c00369{font-size:60.676494pt;}
.fsc_c00369{font-size:60.680042pt;}
.fs7_c00369{font-size:61.609978pt;}
.fs3_c00369{font-size:64.410432pt;}
.fs0_c00369{font-size:67.200000pt;}
.y0_c00369{bottom:0.000000pt;}
.yee_c00369{bottom:16.573333pt;}
.yef_c00369{bottom:18.242008pt;}
.ye4_c00369{bottom:31.866689pt;}
.ye5_c00369{bottom:33.116649pt;}
.ye6_c00369{bottom:33.566133pt;}
.ye7_c00369{bottom:33.932711pt;}
.ye8_c00369{bottom:34.637719pt;}
.ye9_c00369{bottom:35.138725pt;}
.yea_c00369{bottom:36.397803pt;}
.yeb_c00369{bottom:37.050672pt;}
.yec_c00369{bottom:37.611647pt;}
.yed_c00369{bottom:37.956517pt;}
.ydd_c00369{bottom:46.512748pt;}
.yde_c00369{bottom:48.274516pt;}
.ydf_c00369{bottom:48.984465pt;}
.ye0_c00369{bottom:49.944737pt;}
.ye1_c00369{bottom:50.504709pt;}
.ye2_c00369{bottom:51.603752pt;}
.ye3_c00369{bottom:52.031887pt;}
.yd5_c00369{bottom:61.631736pt;}
.yd6_c00369{bottom:62.015644pt;}
.yd7_c00369{bottom:63.064160pt;}
.yd8_c00369{bottom:63.455824pt;}
.yd9_c00369{bottom:63.707880pt;}
.yda_c00369{bottom:64.294200pt;}
.ydb_c00369{bottom:65.171608pt;}
.ydc_c00369{bottom:66.805044pt;}
.ycc_c00369{bottom:76.519716pt;}
.ycd_c00369{bottom:77.143548pt;}
.yce_c00369{bottom:77.413108pt;}
.ycf_c00369{bottom:78.699079pt;}
.yd0_c00369{bottom:79.047621pt;}
.yd1_c00369{bottom:80.706844pt;}
.yd2_c00369{bottom:81.804495pt;}
.yd3_c00369{bottom:82.241435pt;}
.yd4_c00369{bottom:82.722831pt;}
.yc3_c00369{bottom:91.884903pt;}
.yc4_c00369{bottom:92.684056pt;}
.yc5_c00369{bottom:94.013716pt;}
.yc6_c00369{bottom:95.030676pt;}
.yc7_c00369{bottom:95.585875pt;}
.yc8_c00369{bottom:96.524423pt;}
.yc9_c00369{bottom:96.782944pt;}
.yca_c00369{bottom:97.484975pt;}
.ycb_c00369{bottom:98.074140pt;}
.ybc_c00369{bottom:107.246028pt;}
.ybd_c00369{bottom:109.005509pt;}
.ybe_c00369{bottom:109.830285pt;}
.ybf_c00369{bottom:110.043676pt;}
.yc0_c00369{bottom:110.947344pt;}
.yc1_c00369{bottom:111.720804pt;}
.yc2_c00369{bottom:112.486631pt;}
.yb4_c00369{bottom:121.889363pt;}
.yb5_c00369{bottom:122.176151pt;}
.yb6_c00369{bottom:122.623899pt;}
.yb7_c00369{bottom:124.150236pt;}
.yb8_c00369{bottom:125.792791pt;}
.yb9_c00369{bottom:126.386663pt;}
.yba_c00369{bottom:126.833935pt;}
.ybb_c00369{bottom:127.504507pt;}
.yad_c00369{bottom:137.494499pt;}
.yae_c00369{bottom:138.570981pt;}
.yaf_c00369{bottom:139.633765pt;}
.yb0_c00369{bottom:140.138997pt;}
.yb1_c00369{bottom:141.638727pt;}
.yb2_c00369{bottom:142.328680pt;}
.yb3_c00369{bottom:143.315051pt;}
.ya6_c00369{bottom:153.335601pt;}
.ya7_c00369{bottom:154.975095pt;}
.ya8_c00369{bottom:155.496184pt;}
.ya9_c00369{bottom:156.677328pt;}
.yaa_c00369{bottom:157.924516pt;}
.yab_c00369{bottom:158.439484pt;}
.yac_c00369{bottom:159.482251pt;}
.y9e_c00369{bottom:168.456756pt;}
.y9f_c00369{bottom:168.979449pt;}
.ya0_c00369{bottom:169.643708pt;}
.ya1_c00369{bottom:170.511752pt;}
.ya2_c00369{bottom:170.962957pt;}
.ya3_c00369{bottom:171.781784pt;}
.ya4_c00369{bottom:172.363971pt;}
.ya5_c00369{bottom:173.488395pt;}
.y97_c00369{bottom:185.022971pt;}
.y98_c00369{bottom:186.159669pt;}
.y99_c00369{bottom:186.414016pt;}
.y9a_c00369{bottom:186.946873pt;}
.y9b_c00369{bottom:187.393431pt;}
.y9c_c00369{bottom:188.737768pt;}
.y9d_c00369{bottom:189.833201pt;}
.y90_c00369{bottom:199.907371pt;}
.y91_c00369{bottom:200.446269pt;}
.y92_c00369{bottom:201.393721pt;}
.y93_c00369{bottom:202.100395pt;}
.y94_c00369{bottom:202.520551pt;}
.y95_c00369{bottom:204.201101pt;}
.y96_c00369{bottom:204.690957pt;}
.y8a_c00369{bottom:214.552591pt;}
.y8b_c00369{bottom:215.056653pt;}
.y8c_c00369{bottom:216.760772pt;}
.y8d_c00369{bottom:217.605565pt;}
.y8e_c00369{bottom:218.602732pt;}
.y8f_c00369{bottom:219.103071pt;}
.y84_c00369{bottom:229.436429pt;}
.y85_c00369{bottom:230.682175pt;}
.y86_c00369{bottom:231.301752pt;}
.y87_c00369{bottom:231.846509pt;}
.y88_c00369{bottom:233.203849pt;}
.y89_c00369{bottom:233.772865pt;}
.y7c_c00369{bottom:244.080371pt;}
.y7d_c00369{bottom:245.582291pt;}
.y7e_c00369{bottom:246.354503pt;}
.y7f_c00369{bottom:246.585643pt;}
.y80_c00369{bottom:247.552903pt;}
.y81_c00369{bottom:247.825427pt;}
.y82_c00369{bottom:248.238819pt;}
.y83_c00369{bottom:249.368171pt;}
.y75_c00369{bottom:258.961649pt;}
.y76_c00369{bottom:259.807531pt;}
.y77_c00369{bottom:260.674951pt;}
.y78_c00369{bottom:261.481849pt;}
.y79_c00369{bottom:262.386740pt;}
.y7a_c00369{bottom:263.159511pt;}
.y7b_c00369{bottom:264.367372pt;}
.y6d_c00369{bottom:274.804000pt;}
.y6e_c00369{bottom:275.701456pt;}
.y6f_c00369{bottom:276.472184pt;}
.y70_c00369{bottom:277.119292pt;}
.y71_c00369{bottom:277.999416pt;}
.y72_c00369{bottom:278.404744pt;}
.y73_c00369{bottom:279.660264pt;}
.y74_c00369{bottom:279.866428pt;}
.y65_c00369{bottom:289.662080pt;}
.y66_c00369{bottom:290.077648pt;}
.y67_c00369{bottom:291.042485pt;}
.y68_c00369{bottom:292.318248pt;}
.y69_c00369{bottom:292.602083pt;}
.y6a_c00369{bottom:293.190301pt;}
.y6b_c00369{bottom:294.546424pt;}
.y6c_c00369{bottom:295.307787pt;}
.y5d_c00369{bottom:304.303819pt;}
.y5e_c00369{bottom:304.639136pt;}
.y5f_c00369{bottom:305.344648pt;}
.y60_c00369{bottom:305.899845pt;}
.y61_c00369{bottom:306.668093pt;}
.y62_c00369{bottom:307.712667pt;}
.y63_c00369{bottom:308.235469pt;}
.y64_c00369{bottom:309.716419pt;}
.y55_c00369{bottom:320.623029pt;}
.y56_c00369{bottom:321.312413pt;}
.y57_c00369{bottom:321.596221pt;}
.y58_c00369{bottom:322.623901pt;}
.y59_c00369{bottom:323.196160pt;}
.y5a_c00369{bottom:324.211696pt;}
.y5b_c00369{bottom:324.501179pt;}
.y5c_c00369{bottom:324.737205pt;}
.y4e_c00369{bottom:335.745331pt;}
.y4f_c00369{bottom:336.093659pt;}
.y50_c00369{bottom:337.158200pt;}
.y51_c00369{bottom:337.472053pt;}
.y52_c00369{bottom:337.732629pt;}
.y53_c00369{bottom:338.862435pt;}
.y54_c00369{bottom:339.711685pt;}
.y47_c00369{bottom:351.344480pt;}
.y48_c00369{bottom:351.655003pt;}
.y49_c00369{bottom:352.252363pt;}
.y4a_c00369{bottom:352.935963pt;}
.y4b_c00369{bottom:353.538747pt;}
.y4c_c00369{bottom:354.162083pt;}
.y4d_c00369{bottom:355.105995pt;}
.y3f_c00369{bottom:366.465544pt;}
.y40_c00369{bottom:366.912104pt;}
.y41_c00369{bottom:367.187701pt;}
.y42_c00369{bottom:367.722509pt;}
.y43_c00369{bottom:368.163168pt;}
.y44_c00369{bottom:369.144728pt;}
.y45_c00369{bottom:369.410272pt;}
.y46_c00369{bottom:370.058843pt;}
.y37_c00369{bottom:381.346789pt;}
.y38_c00369{bottom:381.582123pt;}
.y39_c00369{bottom:382.280107pt;}
.y3a_c00369{bottom:382.534960pt;}
.y3b_c00369{bottom:383.054456pt;}
.y3c_c00369{bottom:383.989957pt;}
.y3d_c00369{bottom:384.656904pt;}
.y3e_c00369{bottom:384.948253pt;}
.y30_c00369{bottom:395.752152pt;}
.y31_c00369{bottom:396.736176pt;}
.y32_c00369{bottom:397.190712pt;}
.y33_c00369{bottom:398.368632pt;}
.y34_c00369{bottom:398.689968pt;}
.y35_c00369{bottom:399.561216pt;}
.y36_c00369{bottom:399.886728pt;}
.y29_c00369{bottom:411.593661pt;}
.y2a_c00369{bottom:412.724363pt;}
.y2b_c00369{bottom:413.227685pt;}
.y2c_c00369{bottom:413.721123pt;}
.y2d_c00369{bottom:414.024219pt;}
.y2e_c00369{bottom:414.611165pt;}
.y2f_c00369{bottom:415.334104pt;}
.y20_c00369{bottom:425.997080pt;}
.y21_c00369{bottom:426.261176pt;}
.y22_c00369{bottom:426.489560pt;}
.y23_c00369{bottom:427.069040pt;}
.y24_c00369{bottom:427.383032pt;}
.y25_c00369{bottom:427.682696pt;}
.y26_c00369{bottom:428.551424pt;}
.y27_c00369{bottom:429.246752pt;}
.y28_c00369{bottom:429.514544pt;}
.y18_c00369{bottom:442.076027pt;}
.y19_c00369{bottom:442.687840pt;}
.y1a_c00369{bottom:443.071525pt;}
.y1b_c00369{bottom:443.597008pt;}
.y1c_c00369{bottom:443.958405pt;}
.y1d_c00369{bottom:444.118208pt;}
.y1e_c00369{bottom:444.760861pt;}
.y1f_c00369{bottom:445.048619pt;}
.y10_c00369{bottom:456.236635pt;}
.y11_c00369{bottom:456.655947pt;}
.y12_c00369{bottom:456.990669pt;}
.y13_c00369{bottom:457.531717pt;}
.y14_c00369{bottom:458.196459pt;}
.y15_c00369{bottom:458.465909pt;}
.y16_c00369{bottom:459.694184pt;}
.y17_c00369{bottom:460.167501pt;}
.y8_c00369{bottom:470.166275pt;}
.y9_c00369{bottom:471.249237pt;}
.ya_c00369{bottom:471.593723pt;}
.yb_c00369{bottom:472.047760pt;}
.yc_c00369{bottom:472.329536pt;}
.yd_c00369{bottom:472.814765pt;}
.ye_c00369{bottom:474.758611pt;}
.yf_c00369{bottom:474.869987pt;}
.y2_c00369{bottom:486.004000pt;}
.y3_c00369{bottom:487.675648pt;}
.y4_c00369{bottom:488.051512pt;}
.y5_c00369{bottom:488.656528pt;}
.y6_c00369{bottom:489.256984pt;}
.y7_c00369{bottom:490.203136pt;}
.y1_c00369{bottom:500.957333pt;}
.ha_c00369{height:49.474680pt;}
.hd_c00369{height:49.477573pt;}
.h16_c00369{height:50.378752pt;}
.h6_c00369{height:51.341649pt;}
.h11_c00369{height:51.344651pt;}
.h8_c00369{height:52.275133pt;}
.h13_c00369{height:52.278190pt;}
.hc_c00369{height:53.208618pt;}
.hf_c00369{height:53.211729pt;}
.hb_c00369{height:54.142102pt;}
.h10_c00369{height:54.145268pt;}
.h3_c00369{height:55.075587pt;}
.h12_c00369{height:57.879425pt;}
.h14_c00369{height:58.812964pt;}
.h7_c00369{height:59.743009pt;}
.h15_c00369{height:59.746503pt;}
.h4_c00369{height:60.676494pt;}
.he_c00369{height:60.680042pt;}
.h9_c00369{height:61.609978pt;}
.h5_c00369{height:64.410432pt;}
.h2_c00369{height:67.200000pt;}
.h0_c00369{height:545.040000pt;}
.h1_c00369{height:545.333333pt;}
.w0_c00369{width:319.200000pt;}
.w1_c00369{width:319.333333pt;}
.x0_c00369{left:0.000000pt;}
.x8_c00369{left:37.427272pt;}
.x25_c00369{left:38.521592pt;}
.x7c_c00369{left:39.734667pt;}
.x2_c00369{left:42.721333pt;}
.x4b_c00369{left:44.815021pt;}
.x51_c00369{left:46.736000pt;}
.x6c_c00369{left:48.677961pt;}
.x1d_c00369{left:52.531533pt;}
.x2e_c00369{left:53.462464pt;}
.x3d_c00369{left:57.367589pt;}
.x39_c00369{left:58.495941pt;}
.x4c_c00369{left:62.122483pt;}
.x10_c00369{left:63.549507pt;}
.x1e_c00369{left:65.219533pt;}
.x60_c00369{left:66.254761pt;}
.x35_c00369{left:69.767720pt;}
.x71_c00369{left:73.038976pt;}
.x53_c00369{left:74.913875pt;}
.x42_c00369{left:77.422728pt;}
.x6a_c00369{left:78.831113pt;}
.x11_c00369{left:84.442251pt;}
.x9_c00369{left:88.996488pt;}
.x79_c00369{left:91.224808pt;}
.x2a_c00369{left:92.575781pt;}
.x43_c00369{left:94.079016pt;}
.x63_c00369{left:95.967745pt;}
.x1f_c00369{left:97.412867pt;}
.x3a_c00369{left:98.351435pt;}
.x2f_c00369{left:100.019651pt;}
.x4d_c00369{left:102.312805pt;}
.xa_c00369{left:105.392933pt;}
.x66_c00369{left:107.012535pt;}
.x64_c00369{left:108.714692pt;}
.x47_c00369{left:109.901251pt;}
.x54_c00369{left:112.598945pt;}
.x17_c00369{left:113.860909pt;}
.x20_c00369{left:114.856867pt;}
.x30_c00369{left:116.993896pt;}
.x12_c00369{left:118.279475pt;}
.x3e_c00369{left:119.991384pt;}
.x72_c00369{left:122.524463pt;}
.x74_c00369{left:125.484401pt;}
.xb_c00369{left:126.986424pt;}
.x67_c00369{left:128.713829pt;}
.x21_c00369{left:131.504867pt;}
.x3_c00369{left:135.590667pt;}
.x6b_c00369{left:136.919805pt;}
.x3f_c00369{left:138.465053pt;}
.xc_c00369{left:140.417704pt;}
.x6e_c00369{left:142.286373pt;}
.x3b_c00369{left:143.887216pt;}
.x48_c00369{left:144.801397pt;}
.x57_c00369{left:146.226365pt;}
.x26_c00369{left:147.528829pt;}
.x5d_c00369{left:148.798027pt;}
.x31_c00369{left:151.634435pt;}
.x1_c00369{left:153.120000pt;}
.x18_c00369{left:154.243200pt;}
.x4e_c00369{left:155.479069pt;}
.x4_c00369{left:156.472000pt;}
.x5b_c00369{left:158.409603pt;}
.x13_c00369{left:159.803629pt;}
.x78_c00369{left:161.764001pt;}
.xd_c00369{left:163.521789pt;}
.x75_c00369{left:165.407068pt;}
.x4f_c00369{left:167.320464pt;}
.x61_c00369{left:175.447353pt;}
.x14_c00369{left:176.625563pt;}
.x68_c00369{left:177.908055pt;}
.x22_c00369{left:179.767533pt;}
.x6f_c00369{left:180.805020pt;}
.x19_c00369{left:182.027029pt;}
.x2b_c00369{left:183.267781pt;}
.x55_c00369{left:186.998476pt;}
.x44_c00369{left:188.151363pt;}
.x5_c00369{left:190.084000pt;}
.x5e_c00369{left:191.058923pt;}
.x49_c00369{left:192.311323pt;}
.x1a_c00369{left:194.313467pt;}
.x52_c00369{left:198.898667pt;}
.x27_c00369{left:200.598352pt;}
.x58_c00369{left:203.293032pt;}
.x65_c00369{left:204.672132pt;}
.x76_c00369{left:207.188401pt;}
.x32_c00369{left:213.980461pt;}
.x6d_c00369{left:215.024184pt;}
.x4a_c00369{left:216.094952pt;}
.x23_c00369{left:218.396867pt;}
.x40_c00369{left:220.302541pt;}
.x6_c00369{left:223.442667pt;}
.x3c_c00369{left:225.564941pt;}
.x70_c00369{left:226.882871pt;}
.x7a_c00369{left:227.969545pt;}
.x36_c00369{left:229.147168pt;}
.x24_c00369{left:233.274200pt;}
.x59_c00369{left:235.955699pt;}
.x28_c00369{left:239.727131pt;}
.x5f_c00369{left:240.893292pt;}
.x73_c00369{left:242.007947pt;}
.x1b_c00369{left:243.724573pt;}
.x37_c00369{left:248.123203pt;}
.x2c_c00369{left:249.522448pt;}
.x69_c00369{left:251.339435pt;}
.x15_c00369{left:253.384323pt;}
.x5c_c00369{left:254.714285pt;}
.xe_c00369{left:256.100797pt;}
.x33_c00369{left:258.442861pt;}
.xf_c00369{left:261.399176pt;}
.x62_c00369{left:263.921744pt;}
.x45_c00369{left:264.950088pt;}
.x1c_c00369{left:265.861232pt;}
.x2d_c00369{left:267.606448pt;}
.x41_c00369{left:270.224763pt;}
.x56_c00369{left:273.120197pt;}
.x7_c00369{left:276.006667pt;}
.x34_c00369{left:277.889251pt;}
.x46_c00369{left:278.803661pt;}
.x50_c00369{left:280.069629pt;}
.x16_c00369{left:282.940045pt;}
.x77_c00369{left:284.971068pt;}
.x29_c00369{left:287.967080pt;}
.x5a_c00369{left:289.734365pt;}
.x7b_c00369{left:292.920124pt;}
.x38_c00369{left:294.454539pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00370 {
    display:none;
  }
  .loading-indicator_c00370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00370 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00370 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00370" -> "#page-container .classname_c00370")
 */
.pf_c00370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00370 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00370 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00370 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00370 {overflow:visible;}
  }
}
.c_c00370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00370 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00370:after { /* webkit #35443 */
  content: '';
}
.t_c00370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00370 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00370 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00370 { /* info for Javascript */
  display:none;
}
.l_c00370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00370:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00370 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00370.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c00370{transform:matrix(0.043660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043660,0.000000,0.000000,0.250000,0,0);}
.mbf_c00370{transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085830,0.000000,0.000000,0.250000,0,0);}
.ma8_c00370{transform:matrix(0.089065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089065,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.117390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117390,0.000000,0.000000,0.250000,0,0);}
.md4_c00370{transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.137890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137890,0.000000,0.000000,0.250000,0,0);}
.m4a_c00370{transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.140570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140570,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);}
.m96_c00370{transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);}
.mb7_c00370{transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149870,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);}
.mc6_c00370{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00370{transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.mf1_c00370{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);}
.m87_c00370{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m8c_c00370{transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);}
.me8_c00370{transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00370{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.maf_c00370{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.m35_c00370{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00370{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.md0_c00370{transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162785,0.000000,0.000000,0.250000,0,0);}
.me9_c00370{transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);}
.med_c00370{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m8f_c00370{transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.167505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167505,0.000000,0.000000,0.250000,0,0);}
.m58_c00370{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.mda_c00370{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.ma0_c00370{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m34_c00370{transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170410,0.000000,0.000000,0.250000,0,0);}
.m94_c00370{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);}
.me3_c00370{transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);}
.mcb_c00370{transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);}
.m7a_c00370{transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171370,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.ma1_c00370{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.m84_c00370{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m27_c00370{transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);}
.m46_c00370{transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173995,0.000000,0.000000,0.250000,0,0);}
.m7f_c00370{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m81_c00370{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.mea_c00370{transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.mcf_c00370{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.m71_c00370{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.mca_c00370{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m86_c00370{transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);}
.mc3_c00370{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.m7e_c00370{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m79_c00370{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182220,0.000000,0.000000,0.250000,0,0);}
.mb8_c00370{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.mb1_c00370{transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);}
.mce_c00370{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m55_c00370{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m73_c00370{transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.mef_c00370{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m88_c00370{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.mb6_c00370{transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);}
.ma5_c00370{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00370{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m85_c00370{transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);}
.m9c_c00370{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);}
.ma4_c00370{transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);}
.mb4_c00370{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.mc7_c00370{transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);}
.mba_c00370{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.me5_c00370{transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);}
.md7_c00370{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.m5e_c00370{transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m75_c00370{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m76_c00370{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.meb_c00370{transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191195,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m5f_c00370{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.mcd_c00370{transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);}
.mb2_c00370{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193280,0.000000,0.000000,0.250000,0,0);}
.md5_c00370{transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);}
.m89_c00370{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.mad_c00370{transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194760,0.000000,0.000000,0.250000,0,0);}
.m83_c00370{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.md8_c00370{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00370{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.m8d_c00370{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m8e_c00370{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.me1_c00370{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m92_c00370{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.md3_c00370{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199615,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.mbc_c00370{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00370{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m77_c00370{transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);}
.m7d_c00370{transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);}
.m98_c00370{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.md6_c00370{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.mde_c00370{transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204505,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);}
.m82_c00370{transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);}
.mc4_c00370{transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);}
.m80_c00370{transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m93_c00370{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208130,0.000000,0.000000,0.250000,0,0);}
.ma2_c00370{transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00370{transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00370{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.mec_c00370{transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);}
.m97_c00370{transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211935,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mf0_c00370{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mbb_c00370{transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213470,0.000000,0.000000,0.250000,0,0);}
.m51_c00370{transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);}
.ma7_c00370{transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);}
.m9a_c00370{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);}
.m74_c00370{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.mdb_c00370{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.me2_c00370{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);}
.mdd_c00370{transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);}
.m69_c00370{transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);}
.mb9_c00370{transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);}
.mc1_c00370{transform:matrix(0.219205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219205,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219405,0.000000,0.000000,0.250000,0,0);}
.mc2_c00370{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m61_c00370{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);}
.m67_c00370{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mc0_c00370{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);}
.mee_c00370{transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);}
.mdf_c00370{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.md2_c00370{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.md9_c00370{transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221980,0.000000,0.000000,0.250000,0,0);}
.mcc_c00370{transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222130,0.000000,0.000000,0.250000,0,0);}
.m43_c00370{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00370{transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);}
.m66_c00370{transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);}
.me7_c00370{transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.me0_c00370{transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225480,0.000000,0.000000,0.250000,0,0);}
.m4e_c00370{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m90_c00370{transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m8a_c00370{transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.227845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227845,0.000000,0.000000,0.250000,0,0);}
.mac_c00370{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00370{transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);}
.m9b_c00370{transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.229320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229320,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);}
.maa_c00370{transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.mae_c00370{transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);}
.mb0_c00370{transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234430,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00370{transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);}
.m91_c00370{transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);}
.m7b_c00370{transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.mc5_c00370{transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);}
.me6_c00370{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.mab_c00370{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);}
.mbd_c00370{transform:matrix(0.265685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265685,0.000000,0.000000,0.250000,0,0);}
.m95_c00370{transform:matrix(0.268305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268305,0.000000,0.000000,0.250000,0,0);}
.m9f_c00370{transform:matrix(0.268995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268995,0.000000,0.000000,0.250000,0,0);}
.m9d_c00370{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m63_c00370{transform:matrix(0.289085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289085,0.000000,0.000000,0.250000,0,0);}
.mb5_c00370{transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);}
.me4_c00370{transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);}
.m62_c00370{transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);}
.mdc_c00370{transform:matrix(0.543135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543135,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:0.000000px;}
.fc0_c00370{color:transparent;}
.fsb_c00370{font-size:48.300000px;}
.fs8_c00370{font-size:55.650000px;}
.fs7_c00370{font-size:57.750000px;}
.fs6_c00370{font-size:58.800000px;}
.fsc_c00370{font-size:59.850000px;}
.fs9_c00370{font-size:60.900000px;}
.fsd_c00370{font-size:61.950000px;}
.fs1_c00370{font-size:63.000000px;}
.fsa_c00370{font-size:64.050000px;}
.fs2_c00370{font-size:65.100000px;}
.fs3_c00370{font-size:66.150000px;}
.fs4_c00370{font-size:67.200000px;}
.fs5_c00370{font-size:68.250000px;}
.fs0_c00370{font-size:70.350000px;}
.fse_c00370{font-size:81.900000px;}
.y0_c00370{bottom:0.000000px;}
.y2b_c00370{bottom:31.330500px;}
.y2a_c00370{bottom:31.767000px;}
.y29_c00370{bottom:32.418000px;}
.y28_c00370{bottom:32.968500px;}
.y27_c00370{bottom:33.316500px;}
.y26_c00370{bottom:34.167000px;}
.y25_c00370{bottom:34.833000px;}
.y24_c00370{bottom:49.455000px;}
.y23_c00370{bottom:65.947500px;}
.y22_c00370{bottom:84.025500px;}
.y21_c00370{bottom:98.830500px;}
.y20_c00370{bottom:99.693000px;}
.y1f_c00370{bottom:100.447500px;}
.y1e_c00370{bottom:100.752000px;}
.y1d_c00370{bottom:101.232000px;}
.y1c_c00370{bottom:102.061500px;}
.y1b_c00370{bottom:118.341000px;}
.y1a_c00370{bottom:133.945500px;}
.y19_c00370{bottom:152.347500px;}
.y18_c00370{bottom:168.567000px;}
.y17_c00370{bottom:184.800000px;}
.y16_c00370{bottom:200.683500px;}
.y15_c00370{bottom:218.598000px;}
.y14_c00370{bottom:234.868500px;}
.y13_c00370{bottom:253.192500px;}
.y12_c00370{bottom:269.581500px;}
.y11_c00370{bottom:287.614500px;}
.y10_c00370{bottom:304.921500px;}
.yf_c00370{bottom:321.990000px;}
.ye_c00370{bottom:338.488500px;}
.yd_c00370{bottom:353.647500px;}
.yc_c00370{bottom:371.728500px;}
.yb_c00370{bottom:387.918000px;}
.ya_c00370{bottom:403.977000px;}
.y9_c00370{bottom:421.228500px;}
.y8_c00370{bottom:438.210000px;}
.y7_c00370{bottom:455.247000px;}
.y6_c00370{bottom:472.125000px;}
.y5_c00370{bottom:489.537000px;}
.y4_c00370{bottom:506.841000px;}
.y3_c00370{bottom:523.971000px;}
.y2_c00370{bottom:540.099000px;}
.y1_c00370{bottom:557.205000px;}
.y2c_c00370{bottom:571.186500px;}
.hd_c00370{height:48.300000px;}
.ha_c00370{height:55.650000px;}
.h9_c00370{height:57.750000px;}
.h8_c00370{height:58.800000px;}
.he_c00370{height:59.850000px;}
.hb_c00370{height:60.900000px;}
.hf_c00370{height:61.950000px;}
.h3_c00370{height:63.000000px;}
.hc_c00370{height:64.050000px;}
.h4_c00370{height:65.100000px;}
.h5_c00370{height:66.150000px;}
.h6_c00370{height:67.200000px;}
.h7_c00370{height:68.250000px;}
.h2_c00370{height:70.350000px;}
.h10_c00370{height:81.900000px;}
.h0_c00370{height:613.170000px;}
.h1_c00370{height:613.500000px;}
.w0_c00370{width:359.100000px;}
.w1_c00370{width:359.250000px;}
.x0_c00370{left:0.000000px;}
.x65_c00370{left:17.010000px;}
.x44_c00370{left:19.980000px;}
.x1_c00370{left:21.330000px;}
.x6f_c00370{left:22.410000px;}
.x3f_c00370{left:23.760000px;}
.x32_c00370{left:24.840000px;}
.x22_c00370{left:27.000000px;}
.x16_c00370{left:28.620000px;}
.x6a_c00370{left:29.970000px;}
.x64_c00370{left:32.670000px;}
.x70_c00370{left:33.750000px;}
.x40_c00370{left:35.910000px;}
.x7a_c00370{left:41.040000px;}
.x50_c00370{left:43.740000px;}
.x2_c00370{left:44.820000px;}
.x7c_c00370{left:47.250000px;}
.x57_c00370{left:49.680000px;}
.x49_c00370{left:55.350000px;}
.x29_c00370{left:58.860000px;}
.xe_c00370{left:61.020000px;}
.x41_c00370{left:65.610000px;}
.x2e_c00370{left:67.230000px;}
.x33_c00370{left:68.310000px;}
.x66_c00370{left:69.930000px;}
.x56_c00370{left:71.280000px;}
.x4a_c00370{left:73.440000px;}
.x17_c00370{left:74.790000px;}
.x1e_c00370{left:75.870000px;}
.x9_c00370{left:78.030000px;}
.xf_c00370{left:79.650000px;}
.x45_c00370{left:82.350000px;}
.x23_c00370{left:83.970000px;}
.x3a_c00370{left:85.590000px;}
.x34_c00370{left:89.910000px;}
.x51_c00370{left:93.690000px;}
.x2a_c00370{left:95.580000px;}
.x1f_c00370{left:98.820000px;}
.x18_c00370{left:100.170000px;}
.x5e_c00370{left:109.080000px;}
.x35_c00370{left:110.430000px;}
.x72_c00370{left:111.510000px;}
.x24_c00370{left:113.940000px;}
.x75_c00370{left:116.910000px;}
.x19_c00370{left:118.530000px;}
.x3_c00370{left:121.770000px;}
.x7d_c00370{left:123.930000px;}
.x67_c00370{left:126.090000px;}
.x4d_c00370{left:127.710000px;}
.x58_c00370{left:131.220000px;}
.x10_c00370{left:132.840000px;}
.xa_c00370{left:135.000000px;}
.x3b_c00370{left:136.890000px;}
.x61_c00370{left:139.590000px;}
.x2f_c00370{left:140.940000px;}
.x4_c00370{left:142.290000px;}
.x52_c00370{left:143.910000px;}
.x59_c00370{left:147.960000px;}
.x46_c00370{left:150.120000px;}
.xb_c00370{left:151.200000px;}
.x36_c00370{left:153.630000px;}
.x6b_c00370{left:156.330000px;}
.x5c_c00370{left:157.680000px;}
.x68_c00370{left:160.380000px;}
.x20_c00370{left:165.780000px;}
.x11_c00370{left:172.260000px;}
.x7b_c00370{left:173.610000px;}
.x4e_c00370{left:174.690000px;}
.x2b_c00370{left:176.040000px;}
.x4b_c00370{left:177.930000px;}
.x5_c00370{left:180.090000px;}
.x1a_c00370{left:181.980000px;}
.x3c_c00370{left:184.950000px;}
.x25_c00370{left:186.570000px;}
.x73_c00370{left:187.650000px;}
.x37_c00370{left:188.730000px;}
.x7f_c00370{left:192.331500px;}
.x62_c00370{left:195.750000px;}
.x2c_c00370{left:197.640000px;}
.x6_c00370{left:199.800000px;}
.x12_c00370{left:201.420000px;}
.x6c_c00370{left:203.040000px;}
.x5f_c00370{left:206.010000px;}
.x30_c00370{left:207.090000px;}
.x38_c00370{left:209.520000px;}
.x7e_c00370{left:213.840000px;}
.x3d_c00370{left:215.190000px;}
.x53_c00370{left:217.620000px;}
.x76_c00370{left:218.970000px;}
.x5a_c00370{left:221.130000px;}
.x71_c00370{left:222.210000px;}
.x6d_c00370{left:223.560000px;}
.xc_c00370{left:228.150000px;}
.x80_c00370{left:230.637000px;}
.x4f_c00370{left:233.550000px;}
.x21_c00370{left:235.170000px;}
.x2d_c00370{left:237.330000px;}
.x42_c00370{left:238.950000px;}
.x77_c00370{left:240.030000px;}
.x60_c00370{left:241.650000px;}
.x26_c00370{left:242.730000px;}
.x13_c00370{left:248.130000px;}
.x6e_c00370{left:249.210000px;}
.x63_c00370{left:253.800000px;}
.x69_c00370{left:255.420000px;}
.x7_c00370{left:256.500000px;}
.x1b_c00370{left:258.120000px;}
.x14_c00370{left:260.820000px;}
.x27_c00370{left:265.140000px;}
.x5b_c00370{left:266.490000px;}
.x47_c00370{left:268.650000px;}
.x1c_c00370{left:274.590000px;}
.x8_c00370{left:275.670000px;}
.x31_c00370{left:277.560000px;}
.x54_c00370{left:280.260000px;}
.x28_c00370{left:282.690000px;}
.x3e_c00370{left:285.120000px;}
.x78_c00370{left:287.010000px;}
.x15_c00370{left:290.250000px;}
.x48_c00370{left:293.760000px;}
.x39_c00370{left:296.460000px;}
.x55_c00370{left:298.350000px;}
.x79_c00370{left:299.590500px;}
.x4c_c00370{left:301.050000px;}
.xd_c00370{left:302.670000px;}
.x5d_c00370{left:304.020000px;}
.x1d_c00370{left:305.370000px;}
.x43_c00370{left:306.720000px;}
.x74_c00370{left:308.880000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fsb_c00370{font-size:42.933333pt;}
.fs8_c00370{font-size:49.466667pt;}
.fs7_c00370{font-size:51.333333pt;}
.fs6_c00370{font-size:52.266667pt;}
.fsc_c00370{font-size:53.200000pt;}
.fs9_c00370{font-size:54.133333pt;}
.fsd_c00370{font-size:55.066667pt;}
.fs1_c00370{font-size:56.000000pt;}
.fsa_c00370{font-size:56.933333pt;}
.fs2_c00370{font-size:57.866667pt;}
.fs3_c00370{font-size:58.800000pt;}
.fs4_c00370{font-size:59.733333pt;}
.fs5_c00370{font-size:60.666667pt;}
.fs0_c00370{font-size:62.533333pt;}
.fse_c00370{font-size:72.800000pt;}
.y0_c00370{bottom:0.000000pt;}
.y2b_c00370{bottom:27.849333pt;}
.y2a_c00370{bottom:28.237333pt;}
.y29_c00370{bottom:28.816000pt;}
.y28_c00370{bottom:29.305333pt;}
.y27_c00370{bottom:29.614667pt;}
.y26_c00370{bottom:30.370667pt;}
.y25_c00370{bottom:30.962667pt;}
.y24_c00370{bottom:43.960000pt;}
.y23_c00370{bottom:58.620000pt;}
.y22_c00370{bottom:74.689333pt;}
.y21_c00370{bottom:87.849333pt;}
.y20_c00370{bottom:88.616000pt;}
.y1f_c00370{bottom:89.286667pt;}
.y1e_c00370{bottom:89.557333pt;}
.y1d_c00370{bottom:89.984000pt;}
.y1c_c00370{bottom:90.721333pt;}
.y1b_c00370{bottom:105.192000pt;}
.y1a_c00370{bottom:119.062667pt;}
.y19_c00370{bottom:135.420000pt;}
.y18_c00370{bottom:149.837333pt;}
.y17_c00370{bottom:164.266667pt;}
.y16_c00370{bottom:178.385333pt;}
.y15_c00370{bottom:194.309333pt;}
.y14_c00370{bottom:208.772000pt;}
.y13_c00370{bottom:225.060000pt;}
.y12_c00370{bottom:239.628000pt;}
.y11_c00370{bottom:255.657333pt;}
.y10_c00370{bottom:271.041333pt;}
.yf_c00370{bottom:286.213333pt;}
.ye_c00370{bottom:300.878667pt;}
.yd_c00370{bottom:314.353333pt;}
.yc_c00370{bottom:330.425333pt;}
.yb_c00370{bottom:344.816000pt;}
.ya_c00370{bottom:359.090667pt;}
.y9_c00370{bottom:374.425333pt;}
.y8_c00370{bottom:389.520000pt;}
.y7_c00370{bottom:404.664000pt;}
.y6_c00370{bottom:419.666667pt;}
.y5_c00370{bottom:435.144000pt;}
.y4_c00370{bottom:450.525333pt;}
.y3_c00370{bottom:465.752000pt;}
.y2_c00370{bottom:480.088000pt;}
.y1_c00370{bottom:495.293333pt;}
.y2c_c00370{bottom:507.721333pt;}
.hd_c00370{height:42.933333pt;}
.ha_c00370{height:49.466667pt;}
.h9_c00370{height:51.333333pt;}
.h8_c00370{height:52.266667pt;}
.he_c00370{height:53.200000pt;}
.hb_c00370{height:54.133333pt;}
.hf_c00370{height:55.066667pt;}
.h3_c00370{height:56.000000pt;}
.hc_c00370{height:56.933333pt;}
.h4_c00370{height:57.866667pt;}
.h5_c00370{height:58.800000pt;}
.h6_c00370{height:59.733333pt;}
.h7_c00370{height:60.666667pt;}
.h2_c00370{height:62.533333pt;}
.h10_c00370{height:72.800000pt;}
.h0_c00370{height:545.040000pt;}
.h1_c00370{height:545.333333pt;}
.w0_c00370{width:319.200000pt;}
.w1_c00370{width:319.333333pt;}
.x0_c00370{left:0.000000pt;}
.x65_c00370{left:15.120000pt;}
.x44_c00370{left:17.760000pt;}
.x1_c00370{left:18.960000pt;}
.x6f_c00370{left:19.920000pt;}
.x3f_c00370{left:21.120000pt;}
.x32_c00370{left:22.080000pt;}
.x22_c00370{left:24.000000pt;}
.x16_c00370{left:25.440000pt;}
.x6a_c00370{left:26.640000pt;}
.x64_c00370{left:29.040000pt;}
.x70_c00370{left:30.000000pt;}
.x40_c00370{left:31.920000pt;}
.x7a_c00370{left:36.480000pt;}
.x50_c00370{left:38.880000pt;}
.x2_c00370{left:39.840000pt;}
.x7c_c00370{left:42.000000pt;}
.x57_c00370{left:44.160000pt;}
.x49_c00370{left:49.200000pt;}
.x29_c00370{left:52.320000pt;}
.xe_c00370{left:54.240000pt;}
.x41_c00370{left:58.320000pt;}
.x2e_c00370{left:59.760000pt;}
.x33_c00370{left:60.720000pt;}
.x66_c00370{left:62.160000pt;}
.x56_c00370{left:63.360000pt;}
.x4a_c00370{left:65.280000pt;}
.x17_c00370{left:66.480000pt;}
.x1e_c00370{left:67.440000pt;}
.x9_c00370{left:69.360000pt;}
.xf_c00370{left:70.800000pt;}
.x45_c00370{left:73.200000pt;}
.x23_c00370{left:74.640000pt;}
.x3a_c00370{left:76.080000pt;}
.x34_c00370{left:79.920000pt;}
.x51_c00370{left:83.280000pt;}
.x2a_c00370{left:84.960000pt;}
.x1f_c00370{left:87.840000pt;}
.x18_c00370{left:89.040000pt;}
.x5e_c00370{left:96.960000pt;}
.x35_c00370{left:98.160000pt;}
.x72_c00370{left:99.120000pt;}
.x24_c00370{left:101.280000pt;}
.x75_c00370{left:103.920000pt;}
.x19_c00370{left:105.360000pt;}
.x3_c00370{left:108.240000pt;}
.x7d_c00370{left:110.160000pt;}
.x67_c00370{left:112.080000pt;}
.x4d_c00370{left:113.520000pt;}
.x58_c00370{left:116.640000pt;}
.x10_c00370{left:118.080000pt;}
.xa_c00370{left:120.000000pt;}
.x3b_c00370{left:121.680000pt;}
.x61_c00370{left:124.080000pt;}
.x2f_c00370{left:125.280000pt;}
.x4_c00370{left:126.480000pt;}
.x52_c00370{left:127.920000pt;}
.x59_c00370{left:131.520000pt;}
.x46_c00370{left:133.440000pt;}
.xb_c00370{left:134.400000pt;}
.x36_c00370{left:136.560000pt;}
.x6b_c00370{left:138.960000pt;}
.x5c_c00370{left:140.160000pt;}
.x68_c00370{left:142.560000pt;}
.x20_c00370{left:147.360000pt;}
.x11_c00370{left:153.120000pt;}
.x7b_c00370{left:154.320000pt;}
.x4e_c00370{left:155.280000pt;}
.x2b_c00370{left:156.480000pt;}
.x4b_c00370{left:158.160000pt;}
.x5_c00370{left:160.080000pt;}
.x1a_c00370{left:161.760000pt;}
.x3c_c00370{left:164.400000pt;}
.x25_c00370{left:165.840000pt;}
.x73_c00370{left:166.800000pt;}
.x37_c00370{left:167.760000pt;}
.x7f_c00370{left:170.961333pt;}
.x62_c00370{left:174.000000pt;}
.x2c_c00370{left:175.680000pt;}
.x6_c00370{left:177.600000pt;}
.x12_c00370{left:179.040000pt;}
.x6c_c00370{left:180.480000pt;}
.x5f_c00370{left:183.120000pt;}
.x30_c00370{left:184.080000pt;}
.x38_c00370{left:186.240000pt;}
.x7e_c00370{left:190.080000pt;}
.x3d_c00370{left:191.280000pt;}
.x53_c00370{left:193.440000pt;}
.x76_c00370{left:194.640000pt;}
.x5a_c00370{left:196.560000pt;}
.x71_c00370{left:197.520000pt;}
.x6d_c00370{left:198.720000pt;}
.xc_c00370{left:202.800000pt;}
.x80_c00370{left:205.010667pt;}
.x4f_c00370{left:207.600000pt;}
.x21_c00370{left:209.040000pt;}
.x2d_c00370{left:210.960000pt;}
.x42_c00370{left:212.400000pt;}
.x77_c00370{left:213.360000pt;}
.x60_c00370{left:214.800000pt;}
.x26_c00370{left:215.760000pt;}
.x13_c00370{left:220.560000pt;}
.x6e_c00370{left:221.520000pt;}
.x63_c00370{left:225.600000pt;}
.x69_c00370{left:227.040000pt;}
.x7_c00370{left:228.000000pt;}
.x1b_c00370{left:229.440000pt;}
.x14_c00370{left:231.840000pt;}
.x27_c00370{left:235.680000pt;}
.x5b_c00370{left:236.880000pt;}
.x47_c00370{left:238.800000pt;}
.x1c_c00370{left:244.080000pt;}
.x8_c00370{left:245.040000pt;}
.x31_c00370{left:246.720000pt;}
.x54_c00370{left:249.120000pt;}
.x28_c00370{left:251.280000pt;}
.x3e_c00370{left:253.440000pt;}
.x78_c00370{left:255.120000pt;}
.x15_c00370{left:258.000000pt;}
.x48_c00370{left:261.120000pt;}
.x39_c00370{left:263.520000pt;}
.x55_c00370{left:265.200000pt;}
.x79_c00370{left:266.302667pt;}
.x4c_c00370{left:267.600000pt;}
.xd_c00370{left:269.040000pt;}
.x5d_c00370{left:270.240000pt;}
.x1d_c00370{left:271.440000pt;}
.x43_c00370{left:272.640000pt;}
.x74_c00370{left:274.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00371 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00371 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00371 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00371 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00371.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mec_c00371{transform:matrix(0.012758,-0.000217,0.004249,0.249964,0,0);-ms-transform:matrix(0.012758,-0.000217,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012758,-0.000217,0.004249,0.249964,0,0);}
.m90_c00371{transform:matrix(0.013113,-0.000223,0.004249,0.249964,0,0);-ms-transform:matrix(0.013113,-0.000223,0.004249,0.249964,0,0);-webkit-transform:matrix(0.013113,-0.000223,0.004249,0.249964,0,0);}
.m0_c00371{transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);}
.mbb_c00371{transform:matrix(0.017422,-0.000296,0.004249,0.249964,0,0);-ms-transform:matrix(0.017422,-0.000296,0.004249,0.249964,0,0);-webkit-transform:matrix(0.017422,-0.000296,0.004249,0.249964,0,0);}
.m26_c00371{transform:matrix(0.017590,-0.000422,0.005998,0.249928,0,0);-ms-transform:matrix(0.017590,-0.000422,0.005998,0.249928,0,0);-webkit-transform:matrix(0.017590,-0.000422,0.005998,0.249928,0,0);}
.m27_c00371{transform:matrix(0.021144,-0.000507,0.005998,0.249928,0,0);-ms-transform:matrix(0.021144,-0.000507,0.005998,0.249928,0,0);-webkit-transform:matrix(0.021144,-0.000507,0.005998,0.249928,0,0);}
.mcc_c00371{transform:matrix(0.107294,-0.001824,0.004249,0.249964,0,0);-ms-transform:matrix(0.107294,-0.001824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.107294,-0.001824,0.004249,0.249964,0,0);}
.m1_c00371{transform:matrix(0.112520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112520,0.000000,0.000000,0.250000,0,0);}
.mc3_c00371{transform:matrix(0.133416,-0.002268,0.004249,0.249964,0,0);-ms-transform:matrix(0.133416,-0.002268,0.004249,0.249964,0,0);-webkit-transform:matrix(0.133416,-0.002268,0.004249,0.249964,0,0);}
.md2_c00371{transform:matrix(0.138595,-0.002356,0.004249,0.249964,0,0);-ms-transform:matrix(0.138595,-0.002356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.138595,-0.002356,0.004249,0.249964,0,0);}
.m84_c00371{transform:matrix(0.139605,-0.002373,0.004249,0.249964,0,0);-ms-transform:matrix(0.139605,-0.002373,0.004249,0.249964,0,0);-webkit-transform:matrix(0.139605,-0.002373,0.004249,0.249964,0,0);}
.m12_c00371{transform:matrix(0.143354,-0.003440,0.005998,0.249928,0,0);-ms-transform:matrix(0.143354,-0.003440,0.005998,0.249928,0,0);-webkit-transform:matrix(0.143354,-0.003440,0.005998,0.249928,0,0);}
.m64_c00371{transform:matrix(0.145894,-0.002480,0.004249,0.249964,0,0);-ms-transform:matrix(0.145894,-0.002480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145894,-0.002480,0.004249,0.249964,0,0);}
.m93_c00371{transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);-ms-transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149833,-0.002547,0.004249,0.249964,0,0);}
.m7f_c00371{transform:matrix(0.151438,-0.002574,0.004249,0.249964,0,0);-ms-transform:matrix(0.151438,-0.002574,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151438,-0.002574,0.004249,0.249964,0,0);}
.m42_c00371{transform:matrix(0.156595,-0.002819,0.004499,0.249960,0,0);-ms-transform:matrix(0.156595,-0.002819,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156595,-0.002819,0.004499,0.249960,0,0);}
.m89_c00371{transform:matrix(0.159317,-0.002708,0.004249,0.249964,0,0);-ms-transform:matrix(0.159317,-0.002708,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159317,-0.002708,0.004249,0.249964,0,0);}
.mb1_c00371{transform:matrix(0.159512,-0.002712,0.004249,0.249964,0,0);-ms-transform:matrix(0.159512,-0.002712,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159512,-0.002712,0.004249,0.249964,0,0);}
.m2e_c00371{transform:matrix(0.159614,-0.002873,0.004499,0.249960,0,0);-ms-transform:matrix(0.159614,-0.002873,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159614,-0.002873,0.004499,0.249960,0,0);}
.m98_c00371{transform:matrix(0.160387,-0.002727,0.004249,0.249964,0,0);-ms-transform:matrix(0.160387,-0.002727,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160387,-0.002727,0.004249,0.249964,0,0);}
.md8_c00371{transform:matrix(0.161447,-0.002745,0.004249,0.249964,0,0);-ms-transform:matrix(0.161447,-0.002745,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161447,-0.002745,0.004249,0.249964,0,0);}
.m3a_c00371{transform:matrix(0.162214,-0.002920,0.004499,0.249960,0,0);-ms-transform:matrix(0.162214,-0.002920,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162214,-0.002920,0.004499,0.249960,0,0);}
.m15_c00371{transform:matrix(0.163218,-0.003917,0.005998,0.249928,0,0);-ms-transform:matrix(0.163218,-0.003917,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163218,-0.003917,0.005998,0.249928,0,0);}
.mef_c00371{transform:matrix(0.163446,-0.002779,0.004249,0.249964,0,0);-ms-transform:matrix(0.163446,-0.002779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163446,-0.002779,0.004249,0.249964,0,0);}
.m6a_c00371{transform:matrix(0.163606,-0.002781,0.004249,0.249964,0,0);-ms-transform:matrix(0.163606,-0.002781,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163606,-0.002781,0.004249,0.249964,0,0);}
.m67_c00371{transform:matrix(0.163921,-0.002787,0.004249,0.249964,0,0);-ms-transform:matrix(0.163921,-0.002787,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163921,-0.002787,0.004249,0.249964,0,0);}
.mc_c00371{transform:matrix(0.164058,-0.003937,0.005998,0.249928,0,0);-ms-transform:matrix(0.164058,-0.003937,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164058,-0.003937,0.005998,0.249928,0,0);}
.md1_c00371{transform:matrix(0.164626,-0.002799,0.004249,0.249964,0,0);-ms-transform:matrix(0.164626,-0.002799,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164626,-0.002799,0.004249,0.249964,0,0);}
.m6d_c00371{transform:matrix(0.164951,-0.002804,0.004249,0.249964,0,0);-ms-transform:matrix(0.164951,-0.002804,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164951,-0.002804,0.004249,0.249964,0,0);}
.m80_c00371{transform:matrix(0.165626,-0.002816,0.004249,0.249964,0,0);-ms-transform:matrix(0.165626,-0.002816,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165626,-0.002816,0.004249,0.249964,0,0);}
.m48_c00371{transform:matrix(0.166196,-0.002825,0.004249,0.249964,0,0);-ms-transform:matrix(0.166196,-0.002825,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166196,-0.002825,0.004249,0.249964,0,0);}
.mc0_c00371{transform:matrix(0.166726,-0.002834,0.004249,0.249964,0,0);-ms-transform:matrix(0.166726,-0.002834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166726,-0.002834,0.004249,0.249964,0,0);}
.m5e_c00371{transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);-ms-transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167016,-0.002839,0.004249,0.249964,0,0);}
.m1c_c00371{transform:matrix(0.167577,-0.004022,0.005998,0.249928,0,0);-ms-transform:matrix(0.167577,-0.004022,0.005998,0.249928,0,0);-webkit-transform:matrix(0.167577,-0.004022,0.005998,0.249928,0,0);}
.mbc_c00371{transform:matrix(0.167756,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167756,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167756,-0.002852,0.004249,0.249964,0,0);}
.m25_c00371{transform:matrix(0.168107,-0.004035,0.005998,0.249928,0,0);-ms-transform:matrix(0.168107,-0.004035,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168107,-0.004035,0.005998,0.249928,0,0);}
.m5d_c00371{transform:matrix(0.169251,-0.002877,0.004249,0.249964,0,0);-ms-transform:matrix(0.169251,-0.002877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169251,-0.002877,0.004249,0.249964,0,0);}
.ma4_c00371{transform:matrix(0.169760,-0.002886,0.004249,0.249964,0,0);-ms-transform:matrix(0.169760,-0.002886,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169760,-0.002886,0.004249,0.249964,0,0);}
.m94_c00371{transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169830,-0.002887,0.004249,0.249964,0,0);}
.m79_c00371{transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);-ms-transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170115,-0.002892,0.004249,0.249964,0,0);}
.m86_c00371{transform:matrix(0.170150,-0.002893,0.004249,0.249964,0,0);-ms-transform:matrix(0.170150,-0.002893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170150,-0.002893,0.004249,0.249964,0,0);}
.m43_c00371{transform:matrix(0.170527,-0.003069,0.004499,0.249960,0,0);-ms-transform:matrix(0.170527,-0.003069,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170527,-0.003069,0.004499,0.249960,0,0);}
.m9_c00371{transform:matrix(0.170756,-0.004098,0.005998,0.249928,0,0);-ms-transform:matrix(0.170756,-0.004098,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170756,-0.004098,0.005998,0.249928,0,0);}
.m8b_c00371{transform:matrix(0.172100,-0.002926,0.004249,0.249964,0,0);-ms-transform:matrix(0.172100,-0.002926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172100,-0.002926,0.004249,0.249964,0,0);}
.m7_c00371{transform:matrix(0.172255,-0.004134,0.005998,0.249928,0,0);-ms-transform:matrix(0.172255,-0.004134,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172255,-0.004134,0.005998,0.249928,0,0);}
.mac_c00371{transform:matrix(0.172350,-0.002930,0.004249,0.249964,0,0);-ms-transform:matrix(0.172350,-0.002930,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172350,-0.002930,0.004249,0.249964,0,0);}
.md6_c00371{transform:matrix(0.172405,-0.002931,0.004249,0.249964,0,0);-ms-transform:matrix(0.172405,-0.002931,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172405,-0.002931,0.004249,0.249964,0,0);}
.mb7_c00371{transform:matrix(0.172620,-0.002935,0.004249,0.249964,0,0);-ms-transform:matrix(0.172620,-0.002935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172620,-0.002935,0.004249,0.249964,0,0);}
.mcb_c00371{transform:matrix(0.172900,-0.002939,0.004249,0.249964,0,0);-ms-transform:matrix(0.172900,-0.002939,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172900,-0.002939,0.004249,0.249964,0,0);}
.m47_c00371{transform:matrix(0.172920,-0.002940,0.004249,0.249964,0,0);-ms-transform:matrix(0.172920,-0.002940,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172920,-0.002940,0.004249,0.249964,0,0);}
.m5a_c00371{transform:matrix(0.172995,-0.002941,0.004249,0.249964,0,0);-ms-transform:matrix(0.172995,-0.002941,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172995,-0.002941,0.004249,0.249964,0,0);}
.mbf_c00371{transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);-ms-transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173420,-0.002948,0.004249,0.249964,0,0);}
.m7b_c00371{transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174125,-0.002960,0.004249,0.249964,0,0);}
.m30_c00371{transform:matrix(0.174762,-0.003146,0.004499,0.249960,0,0);-ms-transform:matrix(0.174762,-0.003146,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174762,-0.003146,0.004499,0.249960,0,0);}
.m2f_c00371{transform:matrix(0.175472,-0.003158,0.004499,0.249960,0,0);-ms-transform:matrix(0.175472,-0.003158,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175472,-0.003158,0.004499,0.249960,0,0);}
.mbe_c00371{transform:matrix(0.175565,-0.002985,0.004249,0.249964,0,0);-ms-transform:matrix(0.175565,-0.002985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175565,-0.002985,0.004249,0.249964,0,0);}
.m3b_c00371{transform:matrix(0.175572,-0.003160,0.004499,0.249960,0,0);-ms-transform:matrix(0.175572,-0.003160,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175572,-0.003160,0.004499,0.249960,0,0);}
.mb6_c00371{transform:matrix(0.175765,-0.002988,0.004249,0.249964,0,0);-ms-transform:matrix(0.175765,-0.002988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175765,-0.002988,0.004249,0.249964,0,0);}
.m39_c00371{transform:matrix(0.175956,-0.003167,0.004499,0.249960,0,0);-ms-transform:matrix(0.175956,-0.003167,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175956,-0.003167,0.004499,0.249960,0,0);}
.mcd_c00371{transform:matrix(0.177224,-0.003013,0.004249,0.249964,0,0);-ms-transform:matrix(0.177224,-0.003013,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177224,-0.003013,0.004249,0.249964,0,0);}
.mab_c00371{transform:matrix(0.177594,-0.003019,0.004249,0.249964,0,0);-ms-transform:matrix(0.177594,-0.003019,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177594,-0.003019,0.004249,0.249964,0,0);}
.m75_c00371{transform:matrix(0.177624,-0.003020,0.004249,0.249964,0,0);-ms-transform:matrix(0.177624,-0.003020,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177624,-0.003020,0.004249,0.249964,0,0);}
.mc2_c00371{transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);-ms-transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178084,-0.003027,0.004249,0.249964,0,0);}
.m29_c00371{transform:matrix(0.178311,-0.003210,0.004499,0.249960,0,0);-ms-transform:matrix(0.178311,-0.003210,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178311,-0.003210,0.004499,0.249960,0,0);}
.m10_c00371{transform:matrix(0.179148,-0.004300,0.005998,0.249928,0,0);-ms-transform:matrix(0.179148,-0.004300,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179148,-0.004300,0.005998,0.249928,0,0);}
.mb4_c00371{transform:matrix(0.179529,-0.003052,0.004249,0.249964,0,0);-ms-transform:matrix(0.179529,-0.003052,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179529,-0.003052,0.004249,0.249964,0,0);}
.me_c00371{transform:matrix(0.179543,-0.004309,0.005998,0.249928,0,0);-ms-transform:matrix(0.179543,-0.004309,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179543,-0.004309,0.005998,0.249928,0,0);}
.m14_c00371{transform:matrix(0.179573,-0.004310,0.005998,0.249928,0,0);-ms-transform:matrix(0.179573,-0.004310,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179573,-0.004310,0.005998,0.249928,0,0);}
.m4a_c00371{transform:matrix(0.179579,-0.003053,0.004249,0.249964,0,0);-ms-transform:matrix(0.179579,-0.003053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179579,-0.003053,0.004249,0.249964,0,0);}
.m13_c00371{transform:matrix(0.179658,-0.004312,0.005998,0.249928,0,0);-ms-transform:matrix(0.179658,-0.004312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179658,-0.004312,0.005998,0.249928,0,0);}
.m21_c00371{transform:matrix(0.179833,-0.004316,0.005998,0.249928,0,0);-ms-transform:matrix(0.179833,-0.004316,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179833,-0.004316,0.005998,0.249928,0,0);}
.m20_c00371{transform:matrix(0.179998,-0.004320,0.005998,0.249928,0,0);-ms-transform:matrix(0.179998,-0.004320,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179998,-0.004320,0.005998,0.249928,0,0);}
.m49_c00371{transform:matrix(0.180179,-0.003063,0.004249,0.249964,0,0);-ms-transform:matrix(0.180179,-0.003063,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180179,-0.003063,0.004249,0.249964,0,0);}
.m66_c00371{transform:matrix(0.180529,-0.003069,0.004249,0.249964,0,0);-ms-transform:matrix(0.180529,-0.003069,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180529,-0.003069,0.004249,0.249964,0,0);}
.m2a_c00371{transform:matrix(0.180896,-0.003256,0.004499,0.249960,0,0);-ms-transform:matrix(0.180896,-0.003256,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180896,-0.003256,0.004499,0.249960,0,0);}
.mc8_c00371{transform:matrix(0.180974,-0.003077,0.004249,0.249964,0,0);-ms-transform:matrix(0.180974,-0.003077,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180974,-0.003077,0.004249,0.249964,0,0);}
.m97_c00371{transform:matrix(0.181229,-0.003081,0.004249,0.249964,0,0);-ms-transform:matrix(0.181229,-0.003081,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181229,-0.003081,0.004249,0.249964,0,0);}
.m16_c00371{transform:matrix(0.182063,-0.004370,0.005998,0.249928,0,0);-ms-transform:matrix(0.182063,-0.004370,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182063,-0.004370,0.005998,0.249928,0,0);}
.m40_c00371{transform:matrix(0.182120,-0.003278,0.004499,0.249960,0,0);-ms-transform:matrix(0.182120,-0.003278,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182120,-0.003278,0.004499,0.249960,0,0);}
.m99_c00371{transform:matrix(0.182219,-0.003098,0.004249,0.249964,0,0);-ms-transform:matrix(0.182219,-0.003098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182219,-0.003098,0.004249,0.249964,0,0);}
.m95_c00371{transform:matrix(0.182279,-0.003099,0.004249,0.249964,0,0);-ms-transform:matrix(0.182279,-0.003099,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182279,-0.003099,0.004249,0.249964,0,0);}
.mce_c00371{transform:matrix(0.182369,-0.003100,0.004249,0.249964,0,0);-ms-transform:matrix(0.182369,-0.003100,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182369,-0.003100,0.004249,0.249964,0,0);}
.m41_c00371{transform:matrix(0.182540,-0.003286,0.004499,0.249960,0,0);-ms-transform:matrix(0.182540,-0.003286,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182540,-0.003286,0.004499,0.249960,0,0);}
.m9a_c00371{transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);-ms-transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184233,-0.003132,0.004249,0.249964,0,0);}
.m38_c00371{transform:matrix(0.184300,-0.003317,0.004499,0.249960,0,0);-ms-transform:matrix(0.184300,-0.003317,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184300,-0.003317,0.004499,0.249960,0,0);}
.md_c00371{transform:matrix(0.184382,-0.004425,0.005998,0.249928,0,0);-ms-transform:matrix(0.184382,-0.004425,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184382,-0.004425,0.005998,0.249928,0,0);}
.ma3_c00371{transform:matrix(0.184468,-0.003136,0.004249,0.249964,0,0);-ms-transform:matrix(0.184468,-0.003136,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184468,-0.003136,0.004249,0.249964,0,0);}
.me8_c00371{transform:matrix(0.185298,-0.003150,0.004249,0.249964,0,0);-ms-transform:matrix(0.185298,-0.003150,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185298,-0.003150,0.004249,0.249964,0,0);}
.m96_c00371{transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);-ms-transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185363,-0.003151,0.004249,0.249964,0,0);}
.m3f_c00371{transform:matrix(0.185725,-0.003343,0.004499,0.249960,0,0);-ms-transform:matrix(0.185725,-0.003343,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185725,-0.003343,0.004499,0.249960,0,0);}
.m65_c00371{transform:matrix(0.185823,-0.003159,0.004249,0.249964,0,0);-ms-transform:matrix(0.185823,-0.003159,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185823,-0.003159,0.004249,0.249964,0,0);}
.m51_c00371{transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);}
.m52_c00371{transform:matrix(0.186178,-0.003165,0.004249,0.249964,0,0);-ms-transform:matrix(0.186178,-0.003165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186178,-0.003165,0.004249,0.249964,0,0);}
.m37_c00371{transform:matrix(0.186905,-0.003364,0.004499,0.249960,0,0);-ms-transform:matrix(0.186905,-0.003364,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186905,-0.003364,0.004499,0.249960,0,0);}
.m6f_c00371{transform:matrix(0.186998,-0.003179,0.004249,0.249964,0,0);-ms-transform:matrix(0.186998,-0.003179,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186998,-0.003179,0.004249,0.249964,0,0);}
.md0_c00371{transform:matrix(0.187493,-0.003187,0.004249,0.249964,0,0);-ms-transform:matrix(0.187493,-0.003187,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187493,-0.003187,0.004249,0.249964,0,0);}
.m88_c00371{transform:matrix(0.187713,-0.003191,0.004249,0.249964,0,0);-ms-transform:matrix(0.187713,-0.003191,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187713,-0.003191,0.004249,0.249964,0,0);}
.mc1_c00371{transform:matrix(0.187813,-0.003193,0.004249,0.249964,0,0);-ms-transform:matrix(0.187813,-0.003193,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187813,-0.003193,0.004249,0.249964,0,0);}
.mb_c00371{transform:matrix(0.187816,-0.004508,0.005998,0.249928,0,0);-ms-transform:matrix(0.187816,-0.004508,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187816,-0.004508,0.005998,0.249928,0,0);}
.m31_c00371{transform:matrix(0.188275,-0.003389,0.004499,0.249960,0,0);-ms-transform:matrix(0.188275,-0.003389,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188275,-0.003389,0.004499,0.249960,0,0);}
.m57_c00371{transform:matrix(0.188733,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188733,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188733,-0.003208,0.004249,0.249964,0,0);}
.mf7_c00371{transform:matrix(0.188888,-0.006050,0.008004,0.249872,0,0);-ms-transform:matrix(0.188888,-0.006050,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188888,-0.006050,0.008004,0.249872,0,0);}
.mba_c00371{transform:matrix(0.189023,-0.003213,0.004249,0.249964,0,0);-ms-transform:matrix(0.189023,-0.003213,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189023,-0.003213,0.004249,0.249964,0,0);}
.mb0_c00371{transform:matrix(0.189443,-0.003221,0.004249,0.249964,0,0);-ms-transform:matrix(0.189443,-0.003221,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189443,-0.003221,0.004249,0.249964,0,0);}
.m1e_c00371{transform:matrix(0.189550,-0.004549,0.005998,0.249928,0,0);-ms-transform:matrix(0.189550,-0.004549,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189550,-0.004549,0.005998,0.249928,0,0);}
.m5b_c00371{transform:matrix(0.189853,-0.003227,0.004249,0.249964,0,0);-ms-transform:matrix(0.189853,-0.003227,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189853,-0.003227,0.004249,0.249964,0,0);}
.ma8_c00371{transform:matrix(0.189943,-0.003229,0.004249,0.249964,0,0);-ms-transform:matrix(0.189943,-0.003229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189943,-0.003229,0.004249,0.249964,0,0);}
.m35_c00371{transform:matrix(0.190109,-0.003422,0.004499,0.249960,0,0);-ms-transform:matrix(0.190109,-0.003422,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190109,-0.003422,0.004499,0.249960,0,0);}
.m3_c00371{transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);-ms-transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190110,-0.004563,0.005998,0.249928,0,0);}
.m11_c00371{transform:matrix(0.190415,-0.004570,0.005998,0.249928,0,0);-ms-transform:matrix(0.190415,-0.004570,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190415,-0.004570,0.005998,0.249928,0,0);}
.m68_c00371{transform:matrix(0.190737,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190737,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190737,-0.003243,0.004249,0.249964,0,0);}
.mf_c00371{transform:matrix(0.191415,-0.004594,0.005998,0.249928,0,0);-ms-transform:matrix(0.191415,-0.004594,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191415,-0.004594,0.005998,0.249928,0,0);}
.m22_c00371{transform:matrix(0.192635,-0.004623,0.005998,0.249928,0,0);-ms-transform:matrix(0.192635,-0.004623,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192635,-0.004623,0.005998,0.249928,0,0);}
.mca_c00371{transform:matrix(0.193232,-0.003285,0.004249,0.249964,0,0);-ms-transform:matrix(0.193232,-0.003285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193232,-0.003285,0.004249,0.249964,0,0);}
.mae_c00371{transform:matrix(0.193382,-0.003287,0.004249,0.249964,0,0);-ms-transform:matrix(0.193382,-0.003287,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193382,-0.003287,0.004249,0.249964,0,0);}
.mc4_c00371{transform:matrix(0.193537,-0.003290,0.004249,0.249964,0,0);-ms-transform:matrix(0.193537,-0.003290,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193537,-0.003290,0.004249,0.249964,0,0);}
.m74_c00371{transform:matrix(0.193957,-0.003297,0.004249,0.249964,0,0);-ms-transform:matrix(0.193957,-0.003297,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193957,-0.003297,0.004249,0.249964,0,0);}
.m23_c00371{transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);-ms-transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194019,-0.004656,0.005998,0.249928,0,0);}
.ma9_c00371{transform:matrix(0.194107,-0.003300,0.004249,0.249964,0,0);-ms-transform:matrix(0.194107,-0.003300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194107,-0.003300,0.004249,0.249964,0,0);}
.m6b_c00371{transform:matrix(0.194172,-0.003301,0.004249,0.249964,0,0);-ms-transform:matrix(0.194172,-0.003301,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194172,-0.003301,0.004249,0.249964,0,0);}
.m4_c00371{transform:matrix(0.194274,-0.004663,0.005998,0.249928,0,0);-ms-transform:matrix(0.194274,-0.004663,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194274,-0.004663,0.005998,0.249928,0,0);}
.m70_c00371{transform:matrix(0.194302,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194302,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194302,-0.003303,0.004249,0.249964,0,0);}
.m58_c00371{transform:matrix(0.194757,-0.003311,0.004249,0.249964,0,0);-ms-transform:matrix(0.194757,-0.003311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194757,-0.003311,0.004249,0.249964,0,0);}
.mf2_c00371{transform:matrix(0.194905,-0.006243,0.008004,0.249872,0,0);-ms-transform:matrix(0.194905,-0.006243,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194905,-0.006243,0.008004,0.249872,0,0);}
.m60_c00371{transform:matrix(0.195137,-0.003317,0.004249,0.249964,0,0);-ms-transform:matrix(0.195137,-0.003317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195137,-0.003317,0.004249,0.249964,0,0);}
.m83_c00371{transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);-ms-transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);}
.mb9_c00371{transform:matrix(0.195747,-0.003328,0.004249,0.249964,0,0);-ms-transform:matrix(0.195747,-0.003328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195747,-0.003328,0.004249,0.249964,0,0);}
.m72_c00371{transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);-ms-transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196452,-0.003340,0.004249,0.249964,0,0);}
.m9b_c00371{transform:matrix(0.196612,-0.003342,0.004249,0.249964,0,0);-ms-transform:matrix(0.196612,-0.003342,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196612,-0.003342,0.004249,0.249964,0,0);}
.mbd_c00371{transform:matrix(0.196887,-0.003347,0.004249,0.249964,0,0);-ms-transform:matrix(0.196887,-0.003347,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196887,-0.003347,0.004249,0.249964,0,0);}
.mc6_c00371{transform:matrix(0.197197,-0.003352,0.004249,0.249964,0,0);-ms-transform:matrix(0.197197,-0.003352,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197197,-0.003352,0.004249,0.249964,0,0);}
.md7_c00371{transform:matrix(0.197861,-0.003364,0.004249,0.249964,0,0);-ms-transform:matrix(0.197861,-0.003364,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197861,-0.003364,0.004249,0.249964,0,0);}
.maf_c00371{transform:matrix(0.198066,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198066,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198066,-0.003367,0.004249,0.249964,0,0);}
.m3d_c00371{transform:matrix(0.198303,-0.003569,0.004499,0.249960,0,0);-ms-transform:matrix(0.198303,-0.003569,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198303,-0.003569,0.004499,0.249960,0,0);}
.m6e_c00371{transform:matrix(0.198471,-0.003374,0.004249,0.249964,0,0);-ms-transform:matrix(0.198471,-0.003374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198471,-0.003374,0.004249,0.249964,0,0);}
.ma_c00371{transform:matrix(0.198733,-0.004770,0.005998,0.249928,0,0);-ms-transform:matrix(0.198733,-0.004770,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198733,-0.004770,0.005998,0.249928,0,0);}
.m3e_c00371{transform:matrix(0.198743,-0.003577,0.004499,0.249960,0,0);-ms-transform:matrix(0.198743,-0.003577,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198743,-0.003577,0.004499,0.249960,0,0);}
.m8f_c00371{transform:matrix(0.199131,-0.003385,0.004249,0.249964,0,0);-ms-transform:matrix(0.199131,-0.003385,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199131,-0.003385,0.004249,0.249964,0,0);}
.m53_c00371{transform:matrix(0.199711,-0.003395,0.004249,0.249964,0,0);-ms-transform:matrix(0.199711,-0.003395,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199711,-0.003395,0.004249,0.249964,0,0);}
.me0_c00371{transform:matrix(0.200086,-0.003401,0.004249,0.249964,0,0);-ms-transform:matrix(0.200086,-0.003401,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200086,-0.003401,0.004249,0.249964,0,0);}
.m8_c00371{transform:matrix(0.200727,-0.004817,0.005998,0.249928,0,0);-ms-transform:matrix(0.200727,-0.004817,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200727,-0.004817,0.005998,0.249928,0,0);}
.m32_c00371{transform:matrix(0.201167,-0.003621,0.004499,0.249960,0,0);-ms-transform:matrix(0.201167,-0.003621,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201167,-0.003621,0.004499,0.249960,0,0);}
.m6c_c00371{transform:matrix(0.201326,-0.003423,0.004249,0.249964,0,0);-ms-transform:matrix(0.201326,-0.003423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201326,-0.003423,0.004249,0.249964,0,0);}
.m4c_c00371{transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);-ms-transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201386,-0.003424,0.004249,0.249964,0,0);}
.m73_c00371{transform:matrix(0.201486,-0.003425,0.004249,0.249964,0,0);-ms-transform:matrix(0.201486,-0.003425,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201486,-0.003425,0.004249,0.249964,0,0);}
.m7a_c00371{transform:matrix(0.201621,-0.003428,0.004249,0.249964,0,0);-ms-transform:matrix(0.201621,-0.003428,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201621,-0.003428,0.004249,0.249964,0,0);}
.mb3_c00371{transform:matrix(0.202041,-0.003435,0.004249,0.249964,0,0);-ms-transform:matrix(0.202041,-0.003435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202041,-0.003435,0.004249,0.249964,0,0);}
.m4f_c00371{transform:matrix(0.202191,-0.003437,0.004249,0.249964,0,0);-ms-transform:matrix(0.202191,-0.003437,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202191,-0.003437,0.004249,0.249964,0,0);}
.m77_c00371{transform:matrix(0.202286,-0.003439,0.004249,0.249964,0,0);-ms-transform:matrix(0.202286,-0.003439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202286,-0.003439,0.004249,0.249964,0,0);}
.m5f_c00371{transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-ms-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202401,-0.003441,0.004249,0.249964,0,0);}
.m85_c00371{transform:matrix(0.202731,-0.003446,0.004249,0.249964,0,0);-ms-transform:matrix(0.202731,-0.003446,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202731,-0.003446,0.004249,0.249964,0,0);}
.mc9_c00371{transform:matrix(0.203276,-0.003456,0.004249,0.249964,0,0);-ms-transform:matrix(0.203276,-0.003456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203276,-0.003456,0.004249,0.249964,0,0);}
.m82_c00371{transform:matrix(0.203621,-0.003462,0.004249,0.249964,0,0);-ms-transform:matrix(0.203621,-0.003462,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203621,-0.003462,0.004249,0.249964,0,0);}
.me7_c00371{transform:matrix(0.204835,-0.003482,0.004249,0.249964,0,0);-ms-transform:matrix(0.204835,-0.003482,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204835,-0.003482,0.004249,0.249964,0,0);}
.m7c_c00371{transform:matrix(0.205520,-0.003494,0.004249,0.249964,0,0);-ms-transform:matrix(0.205520,-0.003494,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205520,-0.003494,0.004249,0.249964,0,0);}
.m2b_c00371{transform:matrix(0.205547,-0.003700,0.004499,0.249960,0,0);-ms-transform:matrix(0.205547,-0.003700,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205547,-0.003700,0.004499,0.249960,0,0);}
.m76_c00371{transform:matrix(0.205550,-0.003494,0.004249,0.249964,0,0);-ms-transform:matrix(0.205550,-0.003494,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205550,-0.003494,0.004249,0.249964,0,0);}
.m78_c00371{transform:matrix(0.205690,-0.003497,0.004249,0.249964,0,0);-ms-transform:matrix(0.205690,-0.003497,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205690,-0.003497,0.004249,0.249964,0,0);}
.mf0_c00371{transform:matrix(0.206050,-0.003503,0.004249,0.249964,0,0);-ms-transform:matrix(0.206050,-0.003503,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206050,-0.003503,0.004249,0.249964,0,0);}
.m5_c00371{transform:matrix(0.206456,-0.004955,0.005998,0.249928,0,0);-ms-transform:matrix(0.206456,-0.004955,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206456,-0.004955,0.005998,0.249928,0,0);}
.m9f_c00371{transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);-ms-transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206980,-0.003519,0.004249,0.249964,0,0);}
.m33_c00371{transform:matrix(0.207306,-0.003732,0.004499,0.249960,0,0);-ms-transform:matrix(0.207306,-0.003732,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207306,-0.003732,0.004499,0.249960,0,0);}
.ma7_c00371{transform:matrix(0.208500,-0.003544,0.004249,0.249964,0,0);-ms-transform:matrix(0.208500,-0.003544,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208500,-0.003544,0.004249,0.249964,0,0);}
.m1f_c00371{transform:matrix(0.208975,-0.005015,0.005998,0.249928,0,0);-ms-transform:matrix(0.208975,-0.005015,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208975,-0.005015,0.005998,0.249928,0,0);}
.mdd_c00371{transform:matrix(0.209260,-0.003557,0.004249,0.249964,0,0);-ms-transform:matrix(0.209260,-0.003557,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209260,-0.003557,0.004249,0.249964,0,0);}
.mf3_c00371{transform:matrix(0.209388,-0.006707,0.008004,0.249872,0,0);-ms-transform:matrix(0.209388,-0.006707,0.008004,0.249872,0,0);-webkit-transform:matrix(0.209388,-0.006707,0.008004,0.249872,0,0);}
.m71_c00371{transform:matrix(0.209400,-0.003560,0.004249,0.249964,0,0);-ms-transform:matrix(0.209400,-0.003560,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209400,-0.003560,0.004249,0.249964,0,0);}
.m6_c00371{transform:matrix(0.209415,-0.005026,0.005998,0.249928,0,0);-ms-transform:matrix(0.209415,-0.005026,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209415,-0.005026,0.005998,0.249928,0,0);}
.mcf_c00371{transform:matrix(0.209705,-0.003565,0.004249,0.249964,0,0);-ms-transform:matrix(0.209705,-0.003565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209705,-0.003565,0.004249,0.249964,0,0);}
.m2d_c00371{transform:matrix(0.209916,-0.003778,0.004499,0.249960,0,0);-ms-transform:matrix(0.209916,-0.003778,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209916,-0.003778,0.004499,0.249960,0,0);}
.m8a_c00371{transform:matrix(0.210355,-0.003576,0.004249,0.249964,0,0);-ms-transform:matrix(0.210355,-0.003576,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210355,-0.003576,0.004249,0.249964,0,0);}
.me1_c00371{transform:matrix(0.210485,-0.003578,0.004249,0.249964,0,0);-ms-transform:matrix(0.210485,-0.003578,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210485,-0.003578,0.004249,0.249964,0,0);}
.m9c_c00371{transform:matrix(0.211279,-0.003592,0.004249,0.249964,0,0);-ms-transform:matrix(0.211279,-0.003592,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211279,-0.003592,0.004249,0.249964,0,0);}
.m69_c00371{transform:matrix(0.211449,-0.003595,0.004249,0.249964,0,0);-ms-transform:matrix(0.211449,-0.003595,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211449,-0.003595,0.004249,0.249964,0,0);}
.m1b_c00371{transform:matrix(0.211934,-0.005086,0.005998,0.249928,0,0);-ms-transform:matrix(0.211934,-0.005086,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211934,-0.005086,0.005998,0.249928,0,0);}
.me9_c00371{transform:matrix(0.212364,-0.003610,0.004249,0.249964,0,0);-ms-transform:matrix(0.212364,-0.003610,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212364,-0.003610,0.004249,0.249964,0,0);}
.mf6_c00371{transform:matrix(0.212376,-0.006803,0.008004,0.249872,0,0);-ms-transform:matrix(0.212376,-0.006803,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212376,-0.006803,0.008004,0.249872,0,0);}
.ma5_c00371{transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212509,-0.003613,0.004249,0.249964,0,0);}
.m63_c00371{transform:matrix(0.212939,-0.003620,0.004249,0.249964,0,0);-ms-transform:matrix(0.212939,-0.003620,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212939,-0.003620,0.004249,0.249964,0,0);}
.m17_c00371{transform:matrix(0.212944,-0.005111,0.005998,0.249928,0,0);-ms-transform:matrix(0.212944,-0.005111,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212944,-0.005111,0.005998,0.249928,0,0);}
.m5c_c00371{transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);-ms-transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212994,-0.003621,0.004249,0.249964,0,0);}
.mb8_c00371{transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);-ms-transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);}
.m34_c00371{transform:matrix(0.213170,-0.003837,0.004499,0.249960,0,0);-ms-transform:matrix(0.213170,-0.003837,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213170,-0.003837,0.004499,0.249960,0,0);}
.m61_c00371{transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);-ms-transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213999,-0.003638,0.004249,0.249964,0,0);}
.mc7_c00371{transform:matrix(0.214219,-0.003642,0.004249,0.249964,0,0);-ms-transform:matrix(0.214219,-0.003642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214219,-0.003642,0.004249,0.249964,0,0);}
.m46_c00371{transform:matrix(0.214594,-0.003648,0.004249,0.249964,0,0);-ms-transform:matrix(0.214594,-0.003648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214594,-0.003648,0.004249,0.249964,0,0);}
.m4b_c00371{transform:matrix(0.214649,-0.003649,0.004249,0.249964,0,0);-ms-transform:matrix(0.214649,-0.003649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214649,-0.003649,0.004249,0.249964,0,0);}
.m4d_c00371{transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);-ms-transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);}
.m2_c00371{transform:matrix(0.218652,-0.005248,0.005998,0.249928,0,0);-ms-transform:matrix(0.218652,-0.005248,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218652,-0.005248,0.005998,0.249928,0,0);}
.m81_c00371{transform:matrix(0.219183,-0.003726,0.004249,0.249964,0,0);-ms-transform:matrix(0.219183,-0.003726,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219183,-0.003726,0.004249,0.249964,0,0);}
.ma6_c00371{transform:matrix(0.219598,-0.003733,0.004249,0.249964,0,0);-ms-transform:matrix(0.219598,-0.003733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219598,-0.003733,0.004249,0.249964,0,0);}
.m7d_c00371{transform:matrix(0.220588,-0.003750,0.004249,0.249964,0,0);-ms-transform:matrix(0.220588,-0.003750,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220588,-0.003750,0.004249,0.249964,0,0);}
.m8d_c00371{transform:matrix(0.220698,-0.003752,0.004249,0.249964,0,0);-ms-transform:matrix(0.220698,-0.003752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220698,-0.003752,0.004249,0.249964,0,0);}
.m4e_c00371{transform:matrix(0.221258,-0.003761,0.004249,0.249964,0,0);-ms-transform:matrix(0.221258,-0.003761,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221258,-0.003761,0.004249,0.249964,0,0);}
.m3c_c00371{transform:matrix(0.221939,-0.003995,0.004499,0.249960,0,0);-ms-transform:matrix(0.221939,-0.003995,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221939,-0.003995,0.004499,0.249960,0,0);}
.m24_c00371{transform:matrix(0.222176,-0.005332,0.005998,0.249928,0,0);-ms-transform:matrix(0.222176,-0.005332,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222176,-0.005332,0.005998,0.249928,0,0);}
.m18_c00371{transform:matrix(0.222671,-0.005344,0.005998,0.249928,0,0);-ms-transform:matrix(0.222671,-0.005344,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222671,-0.005344,0.005998,0.249928,0,0);}
.mad_c00371{transform:matrix(0.222738,-0.003787,0.004249,0.249964,0,0);-ms-transform:matrix(0.222738,-0.003787,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222738,-0.003787,0.004249,0.249964,0,0);}
.m55_c00371{transform:matrix(0.223018,-0.003791,0.004249,0.249964,0,0);-ms-transform:matrix(0.223018,-0.003791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223018,-0.003791,0.004249,0.249964,0,0);}
.mf5_c00371{transform:matrix(0.223041,-0.007144,0.008004,0.249872,0,0);-ms-transform:matrix(0.223041,-0.007144,0.008004,0.249872,0,0);-webkit-transform:matrix(0.223041,-0.007144,0.008004,0.249872,0,0);}
.m36_c00371{transform:matrix(0.223564,-0.004024,0.004499,0.249960,0,0);-ms-transform:matrix(0.223564,-0.004024,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223564,-0.004024,0.004499,0.249960,0,0);}
.mde_c00371{transform:matrix(0.223568,-0.003801,0.004249,0.249964,0,0);-ms-transform:matrix(0.223568,-0.003801,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223568,-0.003801,0.004249,0.249964,0,0);}
.mc5_c00371{transform:matrix(0.224083,-0.003809,0.004249,0.249964,0,0);-ms-transform:matrix(0.224083,-0.003809,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224083,-0.003809,0.004249,0.249964,0,0);}
.md5_c00371{transform:matrix(0.224623,-0.003819,0.004249,0.249964,0,0);-ms-transform:matrix(0.224623,-0.003819,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224623,-0.003819,0.004249,0.249964,0,0);}
.mf4_c00371{transform:matrix(0.225999,-0.007239,0.008004,0.249872,0,0);-ms-transform:matrix(0.225999,-0.007239,0.008004,0.249872,0,0);-webkit-transform:matrix(0.225999,-0.007239,0.008004,0.249872,0,0);}
.m8e_c00371{transform:matrix(0.226377,-0.003848,0.004249,0.249964,0,0);-ms-transform:matrix(0.226377,-0.003848,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226377,-0.003848,0.004249,0.249964,0,0);}
.mdf_c00371{transform:matrix(0.226907,-0.003857,0.004249,0.249964,0,0);-ms-transform:matrix(0.226907,-0.003857,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226907,-0.003857,0.004249,0.249964,0,0);}
.m59_c00371{transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-ms-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);}
.m1d_c00371{transform:matrix(0.227624,-0.005463,0.005998,0.249928,0,0);-ms-transform:matrix(0.227624,-0.005463,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227624,-0.005463,0.005998,0.249928,0,0);}
.ma2_c00371{transform:matrix(0.228997,-0.003893,0.004249,0.249964,0,0);-ms-transform:matrix(0.228997,-0.003893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228997,-0.003893,0.004249,0.249964,0,0);}
.m2c_c00371{transform:matrix(0.229998,-0.004140,0.004499,0.249960,0,0);-ms-transform:matrix(0.229998,-0.004140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229998,-0.004140,0.004499,0.249960,0,0);}
.maa_c00371{transform:matrix(0.232856,-0.003959,0.004249,0.249964,0,0);-ms-transform:matrix(0.232856,-0.003959,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232856,-0.003959,0.004249,0.249964,0,0);}
.m45_c00371{transform:matrix(0.232866,-0.003959,0.004249,0.249964,0,0);-ms-transform:matrix(0.232866,-0.003959,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232866,-0.003959,0.004249,0.249964,0,0);}
.m62_c00371{transform:matrix(0.233881,-0.003976,0.004249,0.249964,0,0);-ms-transform:matrix(0.233881,-0.003976,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233881,-0.003976,0.004249,0.249964,0,0);}
.m54_c00371{transform:matrix(0.236711,-0.004024,0.004249,0.249964,0,0);-ms-transform:matrix(0.236711,-0.004024,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236711,-0.004024,0.004249,0.249964,0,0);}
.m50_c00371{transform:matrix(0.240720,-0.004092,0.004249,0.249964,0,0);-ms-transform:matrix(0.240720,-0.004092,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240720,-0.004092,0.004249,0.249964,0,0);}
.md3_c00371{transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);-ms-transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242435,-0.004121,0.004249,0.249964,0,0);}
.m7e_c00371{transform:matrix(0.244485,-0.004156,0.004249,0.249964,0,0);-ms-transform:matrix(0.244485,-0.004156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244485,-0.004156,0.004249,0.249964,0,0);}
.m56_c00371{transform:matrix(0.247944,-0.004215,0.004249,0.249964,0,0);-ms-transform:matrix(0.247944,-0.004215,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247944,-0.004215,0.004249,0.249964,0,0);}
.md9_c00371{transform:matrix(0.253623,-0.004312,0.004249,0.249964,0,0);-ms-transform:matrix(0.253623,-0.004312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253623,-0.004312,0.004249,0.249964,0,0);}
.m91_c00371{transform:matrix(0.256638,-0.004363,0.004249,0.249964,0,0);-ms-transform:matrix(0.256638,-0.004363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256638,-0.004363,0.004249,0.249964,0,0);}
.me2_c00371{transform:matrix(0.258723,-0.004398,0.004249,0.249964,0,0);-ms-transform:matrix(0.258723,-0.004398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258723,-0.004398,0.004249,0.249964,0,0);}
.m44_c00371{transform:matrix(0.260853,-0.004695,0.004499,0.249960,0,0);-ms-transform:matrix(0.260853,-0.004695,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260853,-0.004695,0.004499,0.249960,0,0);}
.mf8_c00371{transform:matrix(0.266268,-0.008529,0.008004,0.249872,0,0);-ms-transform:matrix(0.266268,-0.008529,0.008004,0.249872,0,0);-webkit-transform:matrix(0.266268,-0.008529,0.008004,0.249872,0,0);}
.mb5_c00371{transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);-ms-transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);}
.meb_c00371{transform:matrix(0.268556,-0.004565,0.004249,0.249964,0,0);-ms-transform:matrix(0.268556,-0.004565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268556,-0.004565,0.004249,0.249964,0,0);}
.m8c_c00371{transform:matrix(0.268906,-0.004571,0.004249,0.249964,0,0);-ms-transform:matrix(0.268906,-0.004571,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268906,-0.004571,0.004249,0.249964,0,0);}
.me6_c00371{transform:matrix(0.273266,-0.004646,0.004249,0.249964,0,0);-ms-transform:matrix(0.273266,-0.004646,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273266,-0.004646,0.004249,0.249964,0,0);}
.m9d_c00371{transform:matrix(0.274350,-0.004664,0.004249,0.249964,0,0);-ms-transform:matrix(0.274350,-0.004664,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274350,-0.004664,0.004249,0.249964,0,0);}
.mf1_c00371{transform:matrix(0.275669,-0.008830,0.008004,0.249872,0,0);-ms-transform:matrix(0.275669,-0.008830,0.008004,0.249872,0,0);-webkit-transform:matrix(0.275669,-0.008830,0.008004,0.249872,0,0);}
.me5_c00371{transform:matrix(0.276435,-0.004699,0.004249,0.249964,0,0);-ms-transform:matrix(0.276435,-0.004699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276435,-0.004699,0.004249,0.249964,0,0);}
.m28_c00371{transform:matrix(0.278765,-0.005018,0.004499,0.249960,0,0);-ms-transform:matrix(0.278765,-0.005018,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278765,-0.005018,0.004499,0.249960,0,0);}
.m19_c00371{transform:matrix(0.280474,-0.006731,0.005998,0.249928,0,0);-ms-transform:matrix(0.280474,-0.006731,0.005998,0.249928,0,0);-webkit-transform:matrix(0.280474,-0.006731,0.005998,0.249928,0,0);}
.ma1_c00371{transform:matrix(0.281004,-0.004777,0.004249,0.249964,0,0);-ms-transform:matrix(0.281004,-0.004777,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281004,-0.004777,0.004249,0.249964,0,0);}
.med_c00371{transform:matrix(0.287368,-0.004885,0.004249,0.249964,0,0);-ms-transform:matrix(0.287368,-0.004885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.287368,-0.004885,0.004249,0.249964,0,0);}
.me3_c00371{transform:matrix(0.296487,-0.005040,0.004249,0.249964,0,0);-ms-transform:matrix(0.296487,-0.005040,0.004249,0.249964,0,0);-webkit-transform:matrix(0.296487,-0.005040,0.004249,0.249964,0,0);}
.m87_c00371{transform:matrix(0.303416,-0.005158,0.004249,0.249964,0,0);-ms-transform:matrix(0.303416,-0.005158,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303416,-0.005158,0.004249,0.249964,0,0);}
.mea_c00371{transform:matrix(0.321634,-0.005468,0.004249,0.249964,0,0);-ms-transform:matrix(0.321634,-0.005468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.321634,-0.005468,0.004249,0.249964,0,0);}
.mdb_c00371{transform:matrix(0.322048,-0.005475,0.004249,0.249964,0,0);-ms-transform:matrix(0.322048,-0.005475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.322048,-0.005475,0.004249,0.249964,0,0);}
.m9e_c00371{transform:matrix(0.329542,-0.005602,0.004249,0.249964,0,0);-ms-transform:matrix(0.329542,-0.005602,0.004249,0.249964,0,0);-webkit-transform:matrix(0.329542,-0.005602,0.004249,0.249964,0,0);}
.mda_c00371{transform:matrix(0.331232,-0.005631,0.004249,0.249964,0,0);-ms-transform:matrix(0.331232,-0.005631,0.004249,0.249964,0,0);-webkit-transform:matrix(0.331232,-0.005631,0.004249,0.249964,0,0);}
.m92_c00371{transform:matrix(0.335387,-0.005702,0.004249,0.249964,0,0);-ms-transform:matrix(0.335387,-0.005702,0.004249,0.249964,0,0);-webkit-transform:matrix(0.335387,-0.005702,0.004249,0.249964,0,0);}
.m1a_c00371{transform:matrix(0.338717,-0.008129,0.005998,0.249928,0,0);-ms-transform:matrix(0.338717,-0.008129,0.005998,0.249928,0,0);-webkit-transform:matrix(0.338717,-0.008129,0.005998,0.249928,0,0);}
.ma0_c00371{transform:matrix(0.340656,-0.005791,0.004249,0.249964,0,0);-ms-transform:matrix(0.340656,-0.005791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340656,-0.005791,0.004249,0.249964,0,0);}
.mee_c00371{transform:matrix(0.348985,-0.005933,0.004249,0.249964,0,0);-ms-transform:matrix(0.348985,-0.005933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.348985,-0.005933,0.004249,0.249964,0,0);}
.mb2_c00371{transform:matrix(0.356074,-0.006053,0.004249,0.249964,0,0);-ms-transform:matrix(0.356074,-0.006053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.356074,-0.006053,0.004249,0.249964,0,0);}
.me4_c00371{transform:matrix(0.375746,-0.006388,0.004249,0.249964,0,0);-ms-transform:matrix(0.375746,-0.006388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.375746,-0.006388,0.004249,0.249964,0,0);}
.md4_c00371{transform:matrix(0.401412,-0.006824,0.004249,0.249964,0,0);-ms-transform:matrix(0.401412,-0.006824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.401412,-0.006824,0.004249,0.249964,0,0);}
.mdc_c00371{transform:matrix(0.548676,-0.009327,0.004249,0.249964,0,0);-ms-transform:matrix(0.548676,-0.009327,0.004249,0.249964,0,0);-webkit-transform:matrix(0.548676,-0.009327,0.004249,0.249964,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:0.000000px;}
.fc0_c00371{color:transparent;}
.fsa_c00371{font-size:58.808496px;}
.fs12_c00371{font-size:59.820816px;}
.fs10_c00371{font-size:59.858648px;}
.fs9_c00371{font-size:61.958951px;}
.fsc_c00371{font-size:63.009103px;}
.fs1_c00371{font-size:63.018141px;}
.fsf_c00371{font-size:64.059255px;}
.fsb_c00371{font-size:65.109406px;}
.fs7_c00371{font-size:65.110545px;}
.fs4_c00371{font-size:65.118746px;}
.fsd_c00371{font-size:66.159558px;}
.fs6_c00371{font-size:66.160715px;}
.fs2_c00371{font-size:66.169048px;}
.fse_c00371{font-size:67.209710px;}
.fs3_c00371{font-size:68.269653px;}
.fs11_c00371{font-size:69.310013px;}
.fs5_c00371{font-size:69.311226px;}
.fs8_c00371{font-size:72.461736px;}
.fs0_c00371{font-size:112.350000px;}
.y0_c00371{bottom:0.000000px;}
.yf4_c00371{bottom:21.342000px;}
.yf5_c00371{bottom:22.219248px;}
.yf6_c00371{bottom:23.157696px;}
.yf7_c00371{bottom:23.878848px;}
.yf8_c00371{bottom:26.063088px;}
.yf9_c00371{bottom:27.236688px;}
.yfa_c00371{bottom:28.180992px;}
.yfb_c00371{bottom:29.388864px;}
.ye9_c00371{bottom:43.690754px;}
.yea_c00371{bottom:44.177931px;}
.yeb_c00371{bottom:44.508666px;}
.yec_c00371{bottom:44.798499px;}
.yed_c00371{bottom:45.744447px;}
.yee_c00371{bottom:46.561671px;}
.yef_c00371{bottom:47.053566px;}
.yf0_c00371{bottom:47.177114px;}
.yf1_c00371{bottom:47.874998px;}
.yf2_c00371{bottom:48.075224px;}
.yf3_c00371{bottom:48.362175px;}
.ye2_c00371{bottom:54.772232px;}
.ye3_c00371{bottom:56.865993px;}
.ye4_c00371{bottom:57.962630px;}
.ye5_c00371{bottom:58.629891px;}
.ye6_c00371{bottom:60.276680px;}
.ye7_c00371{bottom:61.902606px;}
.ye8_c00371{bottom:62.426219px;}
.yd9_c00371{bottom:72.322001px;}
.yda_c00371{bottom:73.346328px;}
.ydb_c00371{bottom:75.077372px;}
.ydc_c00371{bottom:75.711881px;}
.ydd_c00371{bottom:77.079798px;}
.yde_c00371{bottom:77.523792px;}
.ydf_c00371{bottom:78.470103px;}
.ye0_c00371{bottom:79.497945px;}
.ye1_c00371{bottom:79.818306px;}
.yd1_c00371{bottom:88.801431px;}
.yd2_c00371{bottom:91.178997px;}
.yd3_c00371{bottom:93.073533px;}
.yd4_c00371{bottom:94.020317px;}
.yd5_c00371{bottom:94.602759px;}
.yd6_c00371{bottom:95.877141px;}
.yd7_c00371{bottom:96.693294px;}
.yd8_c00371{bottom:97.113123px;}
.yc8_c00371{bottom:105.810119px;}
.yc9_c00371{bottom:106.341066px;}
.yca_c00371{bottom:108.185526px;}
.ycb_c00371{bottom:109.503981px;}
.ycc_c00371{bottom:110.127003px;}
.ycd_c00371{bottom:111.540333px;}
.yce_c00371{bottom:112.105283px;}
.ycf_c00371{bottom:113.079357px;}
.yd0_c00371{bottom:113.431353px;}
.ybf_c00371{bottom:123.899418px;}
.yc0_c00371{bottom:124.437614px;}
.yc1_c00371{bottom:124.994993px;}
.yc2_c00371{bottom:126.508341px;}
.yc3_c00371{bottom:126.959769px;}
.yc4_c00371{bottom:127.789865px;}
.yc5_c00371{bottom:129.111842px;}
.yc6_c00371{bottom:129.436962px;}
.yc7_c00371{bottom:130.828359px;}
.yb7_c00371{bottom:139.837483px;}
.yb8_c00371{bottom:141.178190px;}
.yb9_c00371{bottom:141.726755px;}
.yba_c00371{bottom:144.225663px;}
.ybb_c00371{bottom:144.664484px;}
.ybc_c00371{bottom:145.618301px;}
.ybd_c00371{bottom:145.952574px;}
.ybe_c00371{bottom:147.276065px;}
.yaf_c00371{bottom:157.387600px;}
.yb0_c00371{bottom:158.807501px;}
.yb1_c00371{bottom:159.612377px;}
.yb2_c00371{bottom:161.284328px;}
.yb3_c00371{bottom:162.426377px;}
.yb4_c00371{bottom:162.651990px;}
.yb5_c00371{bottom:164.383161px;}
.yb6_c00371{bottom:165.162365px;}
.ya8_c00371{bottom:175.482435px;}
.ya9_c00371{bottom:177.799447px;}
.yaa_c00371{bottom:179.067926px;}
.yab_c00371{bottom:181.090752px;}
.yac_c00371{bottom:181.497457px;}
.yad_c00371{bottom:182.120694px;}
.yae_c00371{bottom:182.966602px;}
.ya0_c00371{bottom:193.836957px;}
.ya1_c00371{bottom:194.324745px;}
.ya2_c00371{bottom:194.937601px;}
.ya3_c00371{bottom:195.412317px;}
.ya4_c00371{bottom:196.723932px;}
.ya5_c00371{bottom:197.536701px;}
.ya6_c00371{bottom:198.062431px;}
.ya7_c00371{bottom:199.268956px;}
.y9b_c00371{bottom:211.118923px;}
.y9c_c00371{bottom:212.205748px;}
.y9d_c00371{bottom:212.452231px;}
.y9e_c00371{bottom:214.822908px;}
.y9f_c00371{bottom:215.889006px;}
.y92_c00371{bottom:227.324692px;}
.y93_c00371{bottom:228.114970px;}
.y94_c00371{bottom:228.363162px;}
.y95_c00371{bottom:228.723288px;}
.y96_c00371{bottom:229.267185px;}
.y97_c00371{bottom:230.138755px;}
.y98_c00371{bottom:230.354877px;}
.y99_c00371{bottom:231.769120px;}
.y9a_c00371{bottom:232.344322px;}
.y89_c00371{bottom:243.256345px;}
.y8a_c00371{bottom:244.301409px;}
.y8b_c00371{bottom:244.656600px;}
.y8c_c00371{bottom:246.438879px;}
.y8d_c00371{bottom:247.711074px;}
.y8e_c00371{bottom:247.911576px;}
.y8f_c00371{bottom:249.137856px;}
.y90_c00371{bottom:249.458190px;}
.y91_c00371{bottom:250.418151px;}
.y81_c00371{bottom:260.269353px;}
.y82_c00371{bottom:260.678716px;}
.y83_c00371{bottom:261.759580px;}
.y84_c00371{bottom:262.962240px;}
.y85_c00371{bottom:263.694309px;}
.y86_c00371{bottom:264.095517px;}
.y87_c00371{bottom:266.223178px;}
.y88_c00371{bottom:266.884080px;}
.y78_c00371{bottom:277.011005px;}
.y79_c00371{bottom:277.698953px;}
.y7a_c00371{bottom:278.917424px;}
.y7b_c00371{bottom:279.385066px;}
.y7c_c00371{bottom:281.322874px;}
.y7d_c00371{bottom:281.931538px;}
.y7e_c00371{bottom:283.354773px;}
.y7f_c00371{bottom:283.728912px;}
.y80_c00371{bottom:284.404123px;}
.y70_c00371{bottom:293.756512px;}
.y71_c00371{bottom:294.949491px;}
.y72_c00371{bottom:295.469967px;}
.y73_c00371{bottom:297.672921px;}
.y74_c00371{bottom:298.206490px;}
.y75_c00371{bottom:299.376286px;}
.y76_c00371{bottom:300.295347px;}
.y77_c00371{bottom:300.836991px;}
.y68_c00371{bottom:310.767771px;}
.y69_c00371{bottom:311.306776px;}
.y6a_c00371{bottom:312.881121px;}
.y6b_c00371{bottom:313.360842px;}
.y6c_c00371{bottom:314.472435px;}
.y6d_c00371{bottom:315.162142px;}
.y6e_c00371{bottom:316.374421px;}
.y6f_c00371{bottom:316.709428px;}
.y60_c00371{bottom:327.509551px;}
.y61_c00371{bottom:328.775588px;}
.y62_c00371{bottom:330.439367px;}
.y63_c00371{bottom:331.021438px;}
.y64_c00371{bottom:332.278099px;}
.y65_c00371{bottom:333.517540px;}
.y66_c00371{bottom:333.984393px;}
.y67_c00371{bottom:334.699308px;}
.y56_c00371{bottom:344.793726px;}
.y57_c00371{bottom:345.791934px;}
.y58_c00371{bottom:346.913355px;}
.y59_c00371{bottom:348.144084px;}
.y5a_c00371{bottom:349.185597px;}
.y5b_c00371{bottom:349.596612px;}
.y5c_c00371{bottom:350.116272px;}
.y5d_c00371{bottom:351.357269px;}
.y5e_c00371{bottom:351.772206px;}
.y5f_c00371{bottom:352.228184px;}
.y4d_c00371{bottom:362.346387px;}
.y4e_c00371{bottom:362.891591px;}
.y4f_c00371{bottom:363.477146px;}
.y50_c00371{bottom:364.228522px;}
.y51_c00371{bottom:365.700015px;}
.y52_c00371{bottom:366.145583px;}
.y53_c00371{bottom:367.246227px;}
.y54_c00371{bottom:367.758567px;}
.y55_c00371{bottom:369.352011px;}
.y46_c00371{bottom:380.163000px;}
.y47_c00371{bottom:381.048896px;}
.y48_c00371{bottom:381.260393px;}
.y49_c00371{bottom:382.283886px;}
.y4a_c00371{bottom:382.664805px;}
.y4b_c00371{bottom:383.702375px;}
.y4c_c00371{bottom:384.152373px;}
.y3e_c00371{bottom:397.168254px;}
.y3f_c00371{bottom:398.090061px;}
.y40_c00371{bottom:398.316159px;}
.y41_c00371{bottom:399.273684px;}
.y42_c00371{bottom:399.761667px;}
.y43_c00371{bottom:400.964811px;}
.y44_c00371{bottom:401.404305px;}
.y45_c00371{bottom:402.084894px;}
.y35_c00371{bottom:414.718992px;}
.y36_c00371{bottom:415.385148px;}
.y37_c00371{bottom:415.709256px;}
.y38_c00371{bottom:416.604060px;}
.y39_c00371{bottom:417.121761px;}
.y3a_c00371{bottom:417.751956px;}
.y3b_c00371{bottom:418.224519px;}
.y3c_c00371{bottom:418.642278px;}
.y3d_c00371{bottom:419.244519px;}
.y2e_c00371{bottom:430.652019px;}
.y2f_c00371{bottom:431.502699px;}
.y30_c00371{bottom:431.857362px;}
.y31_c00371{bottom:432.826929px;}
.y32_c00371{bottom:433.786587px;}
.y33_c00371{bottom:434.187153px;}
.y34_c00371{bottom:435.429624px;}
.y28_c00371{bottom:447.667500px;}
.y29_c00371{bottom:449.169348px;}
.y2a_c00371{bottom:450.530094px;}
.y2b_c00371{bottom:450.933663px;}
.y2c_c00371{bottom:451.657857px;}
.y2d_c00371{bottom:452.042607px;}
.y24_c00371{bottom:464.919960px;}
.y25_c00371{bottom:466.048692px;}
.y26_c00371{bottom:467.997648px;}
.y27_c00371{bottom:471.260748px;}
.y1e_c00371{bottom:481.393764px;}
.y1f_c00371{bottom:482.551476px;}
.y20_c00371{bottom:482.840016px;}
.y21_c00371{bottom:484.369056px;}
.y22_c00371{bottom:485.512944px;}
.y23_c00371{bottom:486.083916px;}
.y17_c00371{bottom:498.407040px;}
.y18_c00371{bottom:499.498800px;}
.y19_c00371{bottom:499.808868px;}
.y1a_c00371{bottom:500.825520px;}
.y1b_c00371{bottom:501.107844px;}
.y1c_c00371{bottom:502.430136px;}
.y1d_c00371{bottom:502.848000px;}
.y10_c00371{bottom:515.154384px;}
.y11_c00371{bottom:515.552388px;}
.y12_c00371{bottom:516.854412px;}
.y13_c00371{bottom:517.304316px;}
.y14_c00371{bottom:518.464956px;}
.y15_c00371{bottom:519.481284px;}
.y16_c00371{bottom:519.889632px;}
.y9_c00371{bottom:531.091920px;}
.ya_c00371{bottom:532.105752px;}
.yb_c00371{bottom:533.382876px;}
.yc_c00371{bottom:534.702468px;}
.yd_c00371{bottom:535.380672px;}
.ye_c00371{bottom:536.385108px;}
.yf_c00371{bottom:537.405708px;}
.y2_c00371{bottom:548.377500px;}
.y3_c00371{bottom:549.415416px;}
.y4_c00371{bottom:550.620336px;}
.y5_c00371{bottom:551.022600px;}
.y6_c00371{bottom:552.556056px;}
.y7_c00371{bottom:553.277784px;}
.y8_c00371{bottom:553.718928px;}
.y1_c00371{bottom:565.525500px;}
.hc_c00371{height:58.808496px;}
.h14_c00371{height:59.820816px;}
.h12_c00371{height:59.858648px;}
.hb_c00371{height:61.958951px;}
.he_c00371{height:63.009103px;}
.h3_c00371{height:63.018141px;}
.h11_c00371{height:64.059255px;}
.hd_c00371{height:65.109406px;}
.h9_c00371{height:65.110545px;}
.h6_c00371{height:65.118746px;}
.hf_c00371{height:66.159558px;}
.h8_c00371{height:66.160715px;}
.h4_c00371{height:66.169048px;}
.h10_c00371{height:67.209710px;}
.h5_c00371{height:68.269653px;}
.h13_c00371{height:69.310013px;}
.h7_c00371{height:69.311226px;}
.ha_c00371{height:72.461736px;}
.h2_c00371{height:112.350000px;}
.h0_c00371{height:613.170000px;}
.h1_c00371{height:613.500000px;}
.w0_c00371{width:359.100000px;}
.w1_c00371{width:359.250000px;}
.x0_c00371{left:0.000000px;}
.x1d_c00371{left:43.187532px;}
.x3_c00371{left:44.320500px;}
.x22_c00371{left:45.362928px;}
.x6a_c00371{left:46.803597px;}
.xa_c00371{left:52.382256px;}
.x61_c00371{left:59.913216px;}
.x11_c00371{left:63.468372px;}
.x71_c00371{left:65.498039px;}
.x3d_c00371{left:67.286956px;}
.x66_c00371{left:71.035638px;}
.x53_c00371{left:74.022759px;}
.x76_c00371{left:80.048991px;}
.x44_c00371{left:83.837849px;}
.x4_c00371{left:87.567000px;}
.x2a_c00371{left:88.733370px;}
.x3e_c00371{left:90.698769px;}
.xb_c00371{left:92.936784px;}
.x39_c00371{left:97.152000px;}
.x23_c00371{left:99.084780px;}
.x5d_c00371{left:100.322324px;}
.x17_c00371{left:102.226248px;}
.x1e_c00371{left:104.120340px;}
.x57_c00371{left:106.161102px;}
.x2b_c00371{left:107.436546px;}
.x3a_c00371{left:109.593000px;}
.x50_c00371{left:111.350024px;}
.x34_c00371{left:112.558251px;}
.x1_c00371{left:115.020000px;}
.x62_c00371{left:117.136278px;}
.x18_c00371{left:118.522692px;}
.x3f_c00371{left:120.775689px;}
.x12_c00371{left:125.473836px;}
.x26_c00371{left:127.408500px;}
.x63_c00371{left:130.134845px;}
.x72_c00371{left:131.365722px;}
.x4d_c00371{left:133.422497px;}
.x5_c00371{left:137.772000px;}
.x67_c00371{left:142.609544px;}
.xc_c00371{left:144.024060px;}
.x13_c00371{left:146.908884px;}
.x5e_c00371{left:147.939717px;}
.x70_c00371{left:150.754926px;}
.x4e_c00371{left:153.433125px;}
.x6_c00371{left:154.533000px;}
.x79_c00371{left:156.762102px;}
.x2c_c00371{left:158.467128px;}
.x30_c00371{left:162.739929px;}
.x77_c00371{left:164.565707px;}
.x35_c00371{left:168.921777px;}
.x19_c00371{left:172.014600px;}
.x45_c00371{left:174.274002px;}
.x2_c00371{left:176.310000px;}
.x73_c00371{left:178.471925px;}
.x40_c00371{left:179.620182px;}
.x58_c00371{left:183.640197px;}
.x1a_c00371{left:186.842364px;}
.x24_c00371{left:191.860440px;}
.x5f_c00371{left:193.824662px;}
.x31_c00371{left:195.085590px;}
.xd_c00371{left:196.818300px;}
.x1f_c00371{left:199.801824px;}
.x14_c00371{left:202.210380px;}
.x60_c00371{left:205.213779px;}
.x2d_c00371{left:208.947210px;}
.x56_c00371{left:212.562477px;}
.x46_c00371{left:214.356882px;}
.x51_c00371{left:216.629433px;}
.x7_c00371{left:218.427000px;}
.xe_c00371{left:223.951152px;}
.x27_c00371{left:225.426000px;}
.x6b_c00371{left:226.697937px;}
.x4a_c00371{left:228.530822px;}
.x2e_c00371{left:230.033832px;}
.x7c_c00371{left:231.105291px;}
.x32_c00371{left:234.514521px;}
.x59_c00371{left:238.969561px;}
.x41_c00371{left:241.447767px;}
.x6e_c00371{left:245.661071px;}
.x8_c00371{left:248.499000px;}
.x15_c00371{left:250.623372px;}
.x3b_c00371{left:253.239000px;}
.x64_c00371{left:254.935112px;}
.x1b_c00371{left:256.446216px;}
.x20_c00371{left:259.971024px;}
.x42_c00371{left:261.964988px;}
.x68_c00371{left:263.017793px;}
.xf_c00371{left:264.114180px;}
.x28_c00371{left:265.659000px;}
.x9_c00371{left:266.880000px;}
.x36_c00371{left:268.375059px;}
.x16_c00371{left:270.076776px;}
.x74_c00371{left:271.384059px;}
.x69_c00371{left:274.954673px;}
.x4b_c00371{left:276.196529px;}
.x1c_c00371{left:278.422344px;}
.x3c_c00371{left:279.709500px;}
.x29_c00371{left:287.034000px;}
.x7b_c00371{left:288.875712px;}
.x21_c00371{left:290.015124px;}
.x4f_c00371{left:292.951025px;}
.x37_c00371{left:294.208518px;}
.x2f_c00371{left:295.392144px;}
.x6c_c00371{left:296.613381px;}
.x47_c00371{left:297.883606px;}
.x78_c00371{left:299.808936px;}
.x5a_c00371{left:301.009238px;}
.x6f_c00371{left:302.841417px;}
.x10_c00371{left:304.950708px;}
.x75_c00371{left:306.176057px;}
.x54_c00371{left:309.631209px;}
.x65_c00371{left:311.027199px;}
.x48_c00371{left:313.818659px;}
.x5b_c00371{left:314.909810px;}
.x7a_c00371{left:316.149293px;}
.x52_c00371{left:317.790455px;}
.x4c_c00371{left:321.617067px;}
.x6d_c00371{left:324.443679px;}
.x43_c00371{left:325.688318px;}
.x33_c00371{left:327.771369px;}
.x49_c00371{left:331.373481px;}
.x38_c00371{left:334.269747px;}
.x25_c00371{left:347.271636px;}
.x55_c00371{left:353.352507px;}
.x5c_c00371{left:356.638551px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.fsa_c00371{font-size:52.274219pt;}
.fs12_c00371{font-size:53.174059pt;}
.fs10_c00371{font-size:53.207687pt;}
.fs9_c00371{font-size:55.074623pt;}
.fsc_c00371{font-size:56.008091pt;}
.fs1_c00371{font-size:56.016126pt;}
.fsf_c00371{font-size:56.941560pt;}
.fsb_c00371{font-size:57.875028pt;}
.fs7_c00371{font-size:57.876040pt;}
.fs4_c00371{font-size:57.883330pt;}
.fsd_c00371{font-size:58.808496pt;}
.fs6_c00371{font-size:58.809525pt;}
.fs2_c00371{font-size:58.816932pt;}
.fse_c00371{font-size:59.741964pt;}
.fs3_c00371{font-size:60.684136pt;}
.fs11_c00371{font-size:61.608901pt;}
.fs5_c00371{font-size:61.609978pt;}
.fs8_c00371{font-size:64.410432pt;}
.fs0_c00371{font-size:99.866667pt;}
.y0_c00371{bottom:0.000000pt;}
.yf4_c00371{bottom:18.970667pt;}
.yf5_c00371{bottom:19.750443pt;}
.yf6_c00371{bottom:20.584619pt;}
.yf7_c00371{bottom:21.225643pt;}
.yf8_c00371{bottom:23.167189pt;}
.yf9_c00371{bottom:24.210389pt;}
.yfa_c00371{bottom:25.049771pt;}
.yfb_c00371{bottom:26.123435pt;}
.ye9_c00371{bottom:38.836225pt;}
.yea_c00371{bottom:39.269272pt;}
.yeb_c00371{bottom:39.563259pt;}
.yec_c00371{bottom:39.820888pt;}
.yed_c00371{bottom:40.661731pt;}
.yee_c00371{bottom:41.388152pt;}
.yef_c00371{bottom:41.825392pt;}
.yf0_c00371{bottom:41.935212pt;}
.yf1_c00371{bottom:42.555553pt;}
.yf2_c00371{bottom:42.733532pt;}
.yf3_c00371{bottom:42.988600pt;}
.ye2_c00371{bottom:48.686428pt;}
.ye3_c00371{bottom:50.547549pt;}
.ye4_c00371{bottom:51.522337pt;}
.ye5_c00371{bottom:52.115459pt;}
.ye6_c00371{bottom:53.579271pt;}
.ye7_c00371{bottom:55.024539pt;}
.ye8_c00371{bottom:55.489972pt;}
.yd9_c00371{bottom:64.286223pt;}
.yda_c00371{bottom:65.196736pt;}
.ydb_c00371{bottom:66.735441pt;}
.ydc_c00371{bottom:67.299449pt;}
.ydd_c00371{bottom:68.515376pt;}
.yde_c00371{bottom:68.910037pt;}
.ydf_c00371{bottom:69.751203pt;}
.ye0_c00371{bottom:70.664840pt;}
.ye1_c00371{bottom:70.949605pt;}
.yd1_c00371{bottom:78.934605pt;}
.yd2_c00371{bottom:81.047997pt;}
.yd3_c00371{bottom:82.732029pt;}
.yd4_c00371{bottom:83.573615pt;}
.yd5_c00371{bottom:84.091341pt;}
.yd6_c00371{bottom:85.224125pt;}
.yd7_c00371{bottom:85.949595pt;}
.yd8_c00371{bottom:86.322776pt;}
.yc8_c00371{bottom:94.053439pt;}
.yc9_c00371{bottom:94.525392pt;}
.yca_c00371{bottom:96.164912pt;}
.ycb_c00371{bottom:97.336872pt;}
.ycc_c00371{bottom:97.890669pt;}
.ycd_c00371{bottom:99.146963pt;}
.yce_c00371{bottom:99.649140pt;}
.ycf_c00371{bottom:100.514984pt;}
.yd0_c00371{bottom:100.827869pt;}
.ybf_c00371{bottom:110.132816pt;}
.yc0_c00371{bottom:110.611212pt;}
.yc1_c00371{bottom:111.106660pt;}
.yc2_c00371{bottom:112.451859pt;}
.yc3_c00371{bottom:112.853128pt;}
.yc4_c00371{bottom:113.590991pt;}
.yc5_c00371{bottom:114.766081pt;}
.yc6_c00371{bottom:115.055077pt;}
.yc7_c00371{bottom:116.291875pt;}
.yb7_c00371{bottom:124.299985pt;}
.yb8_c00371{bottom:125.491724pt;}
.yb9_c00371{bottom:125.979337pt;}
.yba_c00371{bottom:128.200589pt;}
.ybb_c00371{bottom:128.590652pt;}
.ybc_c00371{bottom:129.438489pt;}
.ybd_c00371{bottom:129.735621pt;}
.ybe_c00371{bottom:130.912057pt;}
.yaf_c00371{bottom:139.900089pt;}
.yb0_c00371{bottom:141.162223pt;}
.yb1_c00371{bottom:141.877668pt;}
.yb2_c00371{bottom:143.363847pt;}
.yb3_c00371{bottom:144.379001pt;}
.yb4_c00371{bottom:144.579547pt;}
.yb5_c00371{bottom:146.118365pt;}
.yb6_c00371{bottom:146.810991pt;}
.ya8_c00371{bottom:155.984387pt;}
.ya9_c00371{bottom:158.043953pt;}
.yaa_c00371{bottom:159.171489pt;}
.yab_c00371{bottom:160.969557pt;}
.yac_c00371{bottom:161.331073pt;}
.yad_c00371{bottom:161.885061pt;}
.yae_c00371{bottom:162.636980pt;}
.ya0_c00371{bottom:172.299517pt;}
.ya1_c00371{bottom:172.733107pt;}
.ya2_c00371{bottom:173.277868pt;}
.ya3_c00371{bottom:173.699837pt;}
.ya4_c00371{bottom:174.865717pt;}
.ya5_c00371{bottom:175.588179pt;}
.ya6_c00371{bottom:176.055495pt;}
.ya7_c00371{bottom:177.127961pt;}
.y9b_c00371{bottom:187.661265pt;}
.y9c_c00371{bottom:188.627332pt;}
.y9d_c00371{bottom:188.846428pt;}
.y9e_c00371{bottom:190.953696pt;}
.y9f_c00371{bottom:191.901339pt;}
.y92_c00371{bottom:202.066393pt;}
.y93_c00371{bottom:202.768863pt;}
.y94_c00371{bottom:202.989477pt;}
.y95_c00371{bottom:203.309589pt;}
.y96_c00371{bottom:203.793053pt;}
.y97_c00371{bottom:204.567783pt;}
.y98_c00371{bottom:204.759891pt;}
.y99_c00371{bottom:206.016996pt;}
.y9a_c00371{bottom:206.528287pt;}
.y89_c00371{bottom:216.227863pt;}
.y8a_c00371{bottom:217.156808pt;}
.y8b_c00371{bottom:217.472533pt;}
.y8c_c00371{bottom:219.056781pt;}
.y8d_c00371{bottom:220.187621pt;}
.y8e_c00371{bottom:220.365845pt;}
.y8f_c00371{bottom:221.455872pt;}
.y90_c00371{bottom:221.740613pt;}
.y91_c00371{bottom:222.593912pt;}
.y81_c00371{bottom:231.350536pt;}
.y82_c00371{bottom:231.714415pt;}
.y83_c00371{bottom:232.675183pt;}
.y84_c00371{bottom:233.744213pt;}
.y85_c00371{bottom:234.394941pt;}
.y86_c00371{bottom:234.751571pt;}
.y87_c00371{bottom:236.642825pt;}
.y88_c00371{bottom:237.230293pt;}
.y78_c00371{bottom:246.232004pt;}
.y79_c00371{bottom:246.843513pt;}
.y7a_c00371{bottom:247.926599pt;}
.y7b_c00371{bottom:248.342281pt;}
.y7c_c00371{bottom:250.064777pt;}
.y7d_c00371{bottom:250.605812pt;}
.y7e_c00371{bottom:251.870909pt;}
.y7f_c00371{bottom:252.203477pt;}
.y80_c00371{bottom:252.803665pt;}
.y70_c00371{bottom:261.116900pt;}
.y71_c00371{bottom:262.177325pt;}
.y72_c00371{bottom:262.639971pt;}
.y73_c00371{bottom:264.598152pt;}
.y74_c00371{bottom:265.072436pt;}
.y75_c00371{bottom:266.112255pt;}
.y76_c00371{bottom:266.929197pt;}
.y77_c00371{bottom:267.410659pt;}
.y68_c00371{bottom:276.238019pt;}
.y69_c00371{bottom:276.717135pt;}
.y6a_c00371{bottom:278.116552pt;}
.y6b_c00371{bottom:278.542971pt;}
.y6c_c00371{bottom:279.531053pt;}
.y6d_c00371{bottom:280.144127pt;}
.y6e_c00371{bottom:281.221708pt;}
.y6f_c00371{bottom:281.519492pt;}
.y60_c00371{bottom:291.119601pt;}
.y61_c00371{bottom:292.244967pt;}
.y62_c00371{bottom:293.723881pt;}
.y63_c00371{bottom:294.241279pt;}
.y64_c00371{bottom:295.358311pt;}
.y65_c00371{bottom:296.460036pt;}
.y66_c00371{bottom:296.875016pt;}
.y67_c00371{bottom:297.510496pt;}
.y56_c00371{bottom:306.483312pt;}
.y57_c00371{bottom:307.370608pt;}
.y58_c00371{bottom:308.367427pt;}
.y59_c00371{bottom:309.461408pt;}
.y5a_c00371{bottom:310.387197pt;}
.y5b_c00371{bottom:310.752544pt;}
.y5c_c00371{bottom:311.214464pt;}
.y5d_c00371{bottom:312.317572pt;}
.y5e_c00371{bottom:312.686405pt;}
.y5f_c00371{bottom:313.091719pt;}
.y4d_c00371{bottom:322.085677pt;}
.y4e_c00371{bottom:322.570303pt;}
.y4f_c00371{bottom:323.090796pt;}
.y50_c00371{bottom:323.758687pt;}
.y51_c00371{bottom:325.066680pt;}
.y52_c00371{bottom:325.462740pt;}
.y53_c00371{bottom:326.441091pt;}
.y54_c00371{bottom:326.896504pt;}
.y55_c00371{bottom:328.312899pt;}
.y46_c00371{bottom:337.922667pt;}
.y47_c00371{bottom:338.710129pt;}
.y48_c00371{bottom:338.898127pt;}
.y49_c00371{bottom:339.807899pt;}
.y4a_c00371{bottom:340.146493pt;}
.y4b_c00371{bottom:341.068777pt;}
.y4c_c00371{bottom:341.468776pt;}
.y3e_c00371{bottom:353.038448pt;}
.y3f_c00371{bottom:353.857832pt;}
.y40_c00371{bottom:354.058808pt;}
.y41_c00371{bottom:354.909941pt;}
.y42_c00371{bottom:355.343704pt;}
.y43_c00371{bottom:356.413165pt;}
.y44_c00371{bottom:356.803827pt;}
.y45_c00371{bottom:357.408795pt;}
.y35_c00371{bottom:368.639104pt;}
.y36_c00371{bottom:369.231243pt;}
.y37_c00371{bottom:369.519339pt;}
.y38_c00371{bottom:370.314720pt;}
.y39_c00371{bottom:370.774899pt;}
.y3a_c00371{bottom:371.335072pt;}
.y3b_c00371{bottom:371.755128pt;}
.y3c_c00371{bottom:372.126469pt;}
.y3d_c00371{bottom:372.661795pt;}
.y2e_c00371{bottom:382.801795pt;}
.y2f_c00371{bottom:383.557955pt;}
.y30_c00371{bottom:383.873211pt;}
.y31_c00371{bottom:384.735048pt;}
.y32_c00371{bottom:385.588077pt;}
.y33_c00371{bottom:385.944136pt;}
.y34_c00371{bottom:387.048555pt;}
.y28_c00371{bottom:397.926667pt;}
.y29_c00371{bottom:399.261643pt;}
.y2a_c00371{bottom:400.471195pt;}
.y2b_c00371{bottom:400.829923pt;}
.y2c_c00371{bottom:401.473651pt;}
.y2d_c00371{bottom:401.815651pt;}
.y24_c00371{bottom:413.262187pt;}
.y25_c00371{bottom:414.265504pt;}
.y26_c00371{bottom:415.997909pt;}
.y27_c00371{bottom:418.898443pt;}
.y1e_c00371{bottom:427.905568pt;}
.y1f_c00371{bottom:428.934645pt;}
.y20_c00371{bottom:429.191125pt;}
.y21_c00371{bottom:430.550272pt;}
.y22_c00371{bottom:431.567061pt;}
.y23_c00371{bottom:432.074592pt;}
.y17_c00371{bottom:443.028480pt;}
.y18_c00371{bottom:443.998933pt;}
.y19_c00371{bottom:444.274549pt;}
.y1a_c00371{bottom:445.178240pt;}
.y1b_c00371{bottom:445.429195pt;}
.y1c_c00371{bottom:446.604565pt;}
.y1d_c00371{bottom:446.976000pt;}
.y10_c00371{bottom:457.915008pt;}
.y11_c00371{bottom:458.268789pt;}
.y12_c00371{bottom:459.426144pt;}
.y13_c00371{bottom:459.826059pt;}
.y14_c00371{bottom:460.857739pt;}
.y15_c00371{bottom:461.761141pt;}
.y16_c00371{bottom:462.124117pt;}
.y9_c00371{bottom:472.081707pt;}
.ya_c00371{bottom:472.982891pt;}
.yb_c00371{bottom:474.118112pt;}
.yc_c00371{bottom:475.291083pt;}
.yd_c00371{bottom:475.893931pt;}
.ye_c00371{bottom:476.786763pt;}
.yf_c00371{bottom:477.693963pt;}
.y2_c00371{bottom:487.446667pt;}
.y3_c00371{bottom:488.369259pt;}
.y4_c00371{bottom:489.440299pt;}
.y5_c00371{bottom:489.797867pt;}
.y6_c00371{bottom:491.160939pt;}
.y7_c00371{bottom:491.802475pt;}
.y8_c00371{bottom:492.194603pt;}
.y1_c00371{bottom:502.689333pt;}
.hc_c00371{height:52.274219pt;}
.h14_c00371{height:53.174059pt;}
.h12_c00371{height:53.207687pt;}
.hb_c00371{height:55.074623pt;}
.he_c00371{height:56.008091pt;}
.h3_c00371{height:56.016126pt;}
.h11_c00371{height:56.941560pt;}
.hd_c00371{height:57.875028pt;}
.h9_c00371{height:57.876040pt;}
.h6_c00371{height:57.883330pt;}
.hf_c00371{height:58.808496pt;}
.h8_c00371{height:58.809525pt;}
.h4_c00371{height:58.816932pt;}
.h10_c00371{height:59.741964pt;}
.h5_c00371{height:60.684136pt;}
.h13_c00371{height:61.608901pt;}
.h7_c00371{height:61.609978pt;}
.ha_c00371{height:64.410432pt;}
.h2_c00371{height:99.866667pt;}
.h0_c00371{height:545.040000pt;}
.h1_c00371{height:545.333333pt;}
.w0_c00371{width:319.200000pt;}
.w1_c00371{width:319.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1d_c00371{left:38.388917pt;}
.x3_c00371{left:39.396000pt;}
.x22_c00371{left:40.322603pt;}
.x6a_c00371{left:41.603197pt;}
.xa_c00371{left:46.562005pt;}
.x61_c00371{left:53.256192pt;}
.x11_c00371{left:56.416331pt;}
.x71_c00371{left:58.220479pt;}
.x3d_c00371{left:59.810628pt;}
.x66_c00371{left:63.142789pt;}
.x53_c00371{left:65.798008pt;}
.x76_c00371{left:71.154659pt;}
.x44_c00371{left:74.522532pt;}
.x4_c00371{left:77.837333pt;}
.x2a_c00371{left:78.874107pt;}
.x3e_c00371{left:80.621128pt;}
.xb_c00371{left:82.610475pt;}
.x39_c00371{left:86.357333pt;}
.x23_c00371{left:88.075360pt;}
.x5d_c00371{left:89.175399pt;}
.x17_c00371{left:90.867776pt;}
.x1e_c00371{left:92.551413pt;}
.x57_c00371{left:94.365424pt;}
.x2b_c00371{left:95.499152pt;}
.x3a_c00371{left:97.416000pt;}
.x50_c00371{left:98.977799pt;}
.x34_c00371{left:100.051779pt;}
.x1_c00371{left:102.240000pt;}
.x62_c00371{left:104.121136pt;}
.x18_c00371{left:105.353504pt;}
.x3f_c00371{left:107.356168pt;}
.x12_c00371{left:111.532299pt;}
.x26_c00371{left:113.252000pt;}
.x63_c00371{left:115.675417pt;}
.x72_c00371{left:116.769531pt;}
.x4d_c00371{left:118.597775pt;}
.x5_c00371{left:122.464000pt;}
.x67_c00371{left:126.764039pt;}
.xc_c00371{left:128.021387pt;}
.x13_c00371{left:130.585675pt;}
.x5e_c00371{left:131.501971pt;}
.x70_c00371{left:134.004379pt;}
.x4e_c00371{left:136.385000pt;}
.x6_c00371{left:137.362667pt;}
.x79_c00371{left:139.344091pt;}
.x2c_c00371{left:140.859669pt;}
.x30_c00371{left:144.657715pt;}
.x77_c00371{left:146.280628pt;}
.x35_c00371{left:150.152691pt;}
.x19_c00371{left:152.901867pt;}
.x45_c00371{left:154.910224pt;}
.x2_c00371{left:156.720000pt;}
.x73_c00371{left:158.641711pt;}
.x40_c00371{left:159.662384pt;}
.x58_c00371{left:163.235731pt;}
.x1a_c00371{left:166.082101pt;}
.x24_c00371{left:170.542613pt;}
.x5f_c00371{left:172.288588pt;}
.x31_c00371{left:173.409413pt;}
.xd_c00371{left:174.949600pt;}
.x1f_c00371{left:177.601621pt;}
.x14_c00371{left:179.742560pt;}
.x60_c00371{left:182.412248pt;}
.x2d_c00371{left:185.730853pt;}
.x56_c00371{left:188.944424pt;}
.x46_c00371{left:190.539451pt;}
.x51_c00371{left:192.559496pt;}
.x7_c00371{left:194.157333pt;}
.xe_c00371{left:199.067691pt;}
.x27_c00371{left:200.378667pt;}
.x6b_c00371{left:201.509277pt;}
.x4a_c00371{left:203.138508pt;}
.x2e_c00371{left:204.474517pt;}
.x7c_c00371{left:205.426925pt;}
.x32_c00371{left:208.457352pt;}
.x59_c00371{left:212.417388pt;}
.x41_c00371{left:214.620237pt;}
.x6e_c00371{left:218.365396pt;}
.x8_c00371{left:220.888000pt;}
.x15_c00371{left:222.776331pt;}
.x3b_c00371{left:225.101333pt;}
.x64_c00371{left:226.608988pt;}
.x1b_c00371{left:227.952192pt;}
.x20_c00371{left:231.085355pt;}
.x42_c00371{left:232.857767pt;}
.x68_c00371{left:233.793593pt;}
.xf_c00371{left:234.768160pt;}
.x28_c00371{left:236.141333pt;}
.x9_c00371{left:237.226667pt;}
.x36_c00371{left:238.555608pt;}
.x16_c00371{left:240.068245pt;}
.x74_c00371{left:241.230275pt;}
.x69_c00371{left:244.404153pt;}
.x4b_c00371{left:245.508025pt;}
.x1c_c00371{left:247.486528pt;}
.x3c_c00371{left:248.630667pt;}
.x29_c00371{left:255.141333pt;}
.x7b_c00371{left:256.778411pt;}
.x21_c00371{left:257.791221pt;}
.x4f_c00371{left:260.400911pt;}
.x37_c00371{left:261.518683pt;}
.x2f_c00371{left:262.570795pt;}
.x6c_c00371{left:263.656339pt;}
.x47_c00371{left:264.785428pt;}
.x78_c00371{left:266.496832pt;}
.x5a_c00371{left:267.563767pt;}
.x6f_c00371{left:269.192371pt;}
.x10_c00371{left:271.067296pt;}
.x75_c00371{left:272.156495pt;}
.x54_c00371{left:275.227741pt;}
.x65_c00371{left:276.468621pt;}
.x48_c00371{left:278.949919pt;}
.x5b_c00371{left:279.919831pt;}
.x7a_c00371{left:281.021593pt;}
.x52_c00371{left:282.480404pt;}
.x4c_c00371{left:285.881837pt;}
.x6d_c00371{left:288.394381pt;}
.x43_c00371{left:289.500727pt;}
.x33_c00371{left:291.352328pt;}
.x49_c00371{left:294.554205pt;}
.x38_c00371{left:297.128664pt;}
.x25_c00371{left:308.685899pt;}
.x55_c00371{left:314.091117pt;}
.x5c_c00371{left:317.012045pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00372 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00372 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00372 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00372 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00372.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00372{transform:matrix(0.040793,-0.000734,0.004499,0.249960,0,0);-ms-transform:matrix(0.040793,-0.000734,0.004499,0.249960,0,0);-webkit-transform:matrix(0.040793,-0.000734,0.004499,0.249960,0,0);}
.m6b_c00372{transform:matrix(0.047674,-0.000763,0.003999,0.249968,0,0);-ms-transform:matrix(0.047674,-0.000763,0.003999,0.249968,0,0);-webkit-transform:matrix(0.047674,-0.000763,0.003999,0.249968,0,0);}
.m9f_c00372{transform:matrix(0.059875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059875,0.000000,0.000000,0.250000,0,0);}
.meb_c00372{transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080865,0.000000,0.000000,0.250000,0,0);}
.mea_c00372{transform:matrix(0.081315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081315,0.000000,0.000000,0.250000,0,0);}
.m28_c00372{transform:matrix(0.118870,-0.001902,0.003999,0.249968,0,0);-ms-transform:matrix(0.118870,-0.001902,0.003999,0.249968,0,0);-webkit-transform:matrix(0.118870,-0.001902,0.003999,0.249968,0,0);}
.mb2_c00372{transform:matrix(0.135320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135320,0.000000,0.000000,0.250000,0,0);}
.m7f_c00372{transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);-ms-transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136015,-0.002040,0.003750,0.249972,0,0);}
.m5_c00372{transform:matrix(0.136238,-0.002452,0.004499,0.249960,0,0);-ms-transform:matrix(0.136238,-0.002452,0.004499,0.249960,0,0);-webkit-transform:matrix(0.136238,-0.002452,0.004499,0.249960,0,0);}
.ma9_c00372{transform:matrix(0.143890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143890,0.000000,0.000000,0.250000,0,0);}
.mb1_c00372{transform:matrix(0.146760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146760,0.000000,0.000000,0.250000,0,0);}
.m93_c00372{transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151110,0.000000,0.000000,0.250000,0,0);}
.md2_c00372{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.154480,-0.002472,0.003999,0.249968,0,0);-ms-transform:matrix(0.154480,-0.002472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154480,-0.002472,0.003999,0.249968,0,0);}
.m9a_c00372{transform:matrix(0.154655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154655,0.000000,0.000000,0.250000,0,0);}
.m72_c00372{transform:matrix(0.155880,-0.002494,0.003999,0.249968,0,0);-ms-transform:matrix(0.155880,-0.002494,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155880,-0.002494,0.003999,0.249968,0,0);}
.mbb_c00372{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.mba_c00372{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.158335,-0.002533,0.003999,0.249968,0,0);-ms-transform:matrix(0.158335,-0.002533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158335,-0.002533,0.003999,0.249968,0,0);}
.m19_c00372{transform:matrix(0.158655,-0.002538,0.003999,0.249968,0,0);-ms-transform:matrix(0.158655,-0.002538,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158655,-0.002538,0.003999,0.249968,0,0);}
.mf_c00372{transform:matrix(0.158850,-0.002542,0.003999,0.249968,0,0);-ms-transform:matrix(0.158850,-0.002542,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158850,-0.002542,0.003999,0.249968,0,0);}
.m5b_c00372{transform:matrix(0.159785,-0.002557,0.003999,0.249968,0,0);-ms-transform:matrix(0.159785,-0.002557,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159785,-0.002557,0.003999,0.249968,0,0);}
.m24_c00372{transform:matrix(0.160294,-0.002565,0.003999,0.249968,0,0);-ms-transform:matrix(0.160294,-0.002565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160294,-0.002565,0.003999,0.249968,0,0);}
.m1b_c00372{transform:matrix(0.160534,-0.002569,0.003999,0.249968,0,0);-ms-transform:matrix(0.160534,-0.002569,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160534,-0.002569,0.003999,0.249968,0,0);}
.mbe_c00372{transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00372{transform:matrix(0.161834,-0.002589,0.003999,0.249968,0,0);-ms-transform:matrix(0.161834,-0.002589,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161834,-0.002589,0.003999,0.249968,0,0);}
.mc6_c00372{transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);}
.m6e_c00372{transform:matrix(0.162234,-0.002596,0.003999,0.249968,0,0);-ms-transform:matrix(0.162234,-0.002596,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162234,-0.002596,0.003999,0.249968,0,0);}
.me_c00372{transform:matrix(0.164089,-0.002625,0.003999,0.249968,0,0);-ms-transform:matrix(0.164089,-0.002625,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164089,-0.002625,0.003999,0.249968,0,0);}
.mb_c00372{transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);-ms-transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);}
.m91_c00372{transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00372{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m77_c00372{transform:matrix(0.167469,-0.002679,0.003999,0.249968,0,0);-ms-transform:matrix(0.167469,-0.002679,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167469,-0.002679,0.003999,0.249968,0,0);}
.m0_c00372{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m42_c00372{transform:matrix(0.168643,-0.002698,0.003999,0.249968,0,0);-ms-transform:matrix(0.168643,-0.002698,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168643,-0.002698,0.003999,0.249968,0,0);}
.mdf_c00372{transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168865,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.169877,-0.003058,0.004499,0.249960,0,0);-ms-transform:matrix(0.169877,-0.003058,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169877,-0.003058,0.004499,0.249960,0,0);}
.m79_c00372{transform:matrix(0.170443,-0.002727,0.003999,0.249968,0,0);-ms-transform:matrix(0.170443,-0.002727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170443,-0.002727,0.003999,0.249968,0,0);}
.m58_c00372{transform:matrix(0.171158,-0.002739,0.003999,0.249968,0,0);-ms-transform:matrix(0.171158,-0.002739,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171158,-0.002739,0.003999,0.249968,0,0);}
.m10_c00372{transform:matrix(0.171288,-0.002741,0.003999,0.249968,0,0);-ms-transform:matrix(0.171288,-0.002741,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171288,-0.002741,0.003999,0.249968,0,0);}
.m7c_c00372{transform:matrix(0.171436,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171436,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171436,-0.002572,0.003750,0.249972,0,0);}
.mc2_c00372{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m56_c00372{transform:matrix(0.171853,-0.002750,0.003999,0.249968,0,0);-ms-transform:matrix(0.171853,-0.002750,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171853,-0.002750,0.003999,0.249968,0,0);}
.m1c_c00372{transform:matrix(0.171883,-0.002750,0.003999,0.249968,0,0);-ms-transform:matrix(0.171883,-0.002750,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171883,-0.002750,0.003999,0.249968,0,0);}
.m3_c00372{transform:matrix(0.171932,-0.003095,0.004499,0.249960,0,0);-ms-transform:matrix(0.171932,-0.003095,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171932,-0.003095,0.004499,0.249960,0,0);}
.m6d_c00372{transform:matrix(0.172558,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172558,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172558,-0.002761,0.003999,0.249968,0,0);}
.m7a_c00372{transform:matrix(0.172651,-0.002590,0.003750,0.249972,0,0);-ms-transform:matrix(0.172651,-0.002590,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172651,-0.002590,0.003750,0.249972,0,0);}
.m67_c00372{transform:matrix(0.172923,-0.002767,0.003999,0.249968,0,0);-ms-transform:matrix(0.172923,-0.002767,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172923,-0.002767,0.003999,0.249968,0,0);}
.mc3_c00372{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00372{transform:matrix(0.174373,-0.002790,0.003999,0.249968,0,0);-ms-transform:matrix(0.174373,-0.002790,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174373,-0.002790,0.003999,0.249968,0,0);}
.m6a_c00372{transform:matrix(0.174443,-0.002791,0.003999,0.249968,0,0);-ms-transform:matrix(0.174443,-0.002791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174443,-0.002791,0.003999,0.249968,0,0);}
.mcd_c00372{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.md8_c00372{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m1f_c00372{transform:matrix(0.175618,-0.002810,0.003999,0.249968,0,0);-ms-transform:matrix(0.175618,-0.002810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175618,-0.002810,0.003999,0.249968,0,0);}
.mb6_c00372{transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);}
.m46_c00372{transform:matrix(0.176452,-0.002823,0.003999,0.249968,0,0);-ms-transform:matrix(0.176452,-0.002823,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176452,-0.002823,0.003999,0.249968,0,0);}
.m57_c00372{transform:matrix(0.176532,-0.002825,0.003999,0.249968,0,0);-ms-transform:matrix(0.176532,-0.002825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176532,-0.002825,0.003999,0.249968,0,0);}
.me4_c00372{transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00372{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m20_c00372{transform:matrix(0.177622,-0.002842,0.003999,0.249968,0,0);-ms-transform:matrix(0.177622,-0.002842,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177622,-0.002842,0.003999,0.249968,0,0);}
.m73_c00372{transform:matrix(0.178357,-0.002854,0.003999,0.249968,0,0);-ms-transform:matrix(0.178357,-0.002854,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178357,-0.002854,0.003999,0.249968,0,0);}
.m70_c00372{transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);-ms-transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);}
.m3e_c00372{transform:matrix(0.178592,-0.002857,0.003999,0.249968,0,0);-ms-transform:matrix(0.178592,-0.002857,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178592,-0.002857,0.003999,0.249968,0,0);}
.m69_c00372{transform:matrix(0.179842,-0.002877,0.003999,0.249968,0,0);-ms-transform:matrix(0.179842,-0.002877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179842,-0.002877,0.003999,0.249968,0,0);}
.m8_c00372{transform:matrix(0.179886,-0.003238,0.004499,0.249960,0,0);-ms-transform:matrix(0.179886,-0.003238,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179886,-0.003238,0.004499,0.249960,0,0);}
.m38_c00372{transform:matrix(0.180187,-0.002883,0.003999,0.249968,0,0);-ms-transform:matrix(0.180187,-0.002883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180187,-0.002883,0.003999,0.249968,0,0);}
.m95_c00372{transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);}
.mae_c00372{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m6c_c00372{transform:matrix(0.180987,-0.002896,0.003999,0.249968,0,0);-ms-transform:matrix(0.180987,-0.002896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180987,-0.002896,0.003999,0.249968,0,0);}
.m1a_c00372{transform:matrix(0.181112,-0.002898,0.003999,0.249968,0,0);-ms-transform:matrix(0.181112,-0.002898,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181112,-0.002898,0.003999,0.249968,0,0);}
.m5e_c00372{transform:matrix(0.181172,-0.002899,0.003999,0.249968,0,0);-ms-transform:matrix(0.181172,-0.002899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181172,-0.002899,0.003999,0.249968,0,0);}
.md_c00372{transform:matrix(0.181342,-0.002901,0.003999,0.249968,0,0);-ms-transform:matrix(0.181342,-0.002901,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181342,-0.002901,0.003999,0.249968,0,0);}
.m7d_c00372{transform:matrix(0.181355,-0.002720,0.003750,0.249972,0,0);-ms-transform:matrix(0.181355,-0.002720,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181355,-0.002720,0.003750,0.249972,0,0);}
.mad_c00372{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{transform:matrix(0.182802,-0.002925,0.003999,0.249968,0,0);-ms-transform:matrix(0.182802,-0.002925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182802,-0.002925,0.003999,0.249968,0,0);}
.m75_c00372{transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);-ms-transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);}
.ma5_c00372{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.md4_c00372{transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);}
.mde_c00372{transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);}
.m59_c00372{transform:matrix(0.183721,-0.002940,0.003999,0.249968,0,0);-ms-transform:matrix(0.183721,-0.002940,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183721,-0.002940,0.003999,0.249968,0,0);}
.m96_c00372{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m85_c00372{transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.184921,-0.002959,0.003999,0.249968,0,0);-ms-transform:matrix(0.184921,-0.002959,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184921,-0.002959,0.003999,0.249968,0,0);}
.m2e_c00372{transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);-ms-transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);}
.mc0_c00372{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m74_c00372{transform:matrix(0.186361,-0.002982,0.003999,0.249968,0,0);-ms-transform:matrix(0.186361,-0.002982,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186361,-0.002982,0.003999,0.249968,0,0);}
.mb4_c00372{transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00372{transform:matrix(0.186781,-0.002988,0.003999,0.249968,0,0);-ms-transform:matrix(0.186781,-0.002988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186781,-0.002988,0.003999,0.249968,0,0);}
.m45_c00372{transform:matrix(0.186906,-0.002990,0.003999,0.249968,0,0);-ms-transform:matrix(0.186906,-0.002990,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186906,-0.002990,0.003999,0.249968,0,0);}
.m87_c00372{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.m65_c00372{transform:matrix(0.187531,-0.003000,0.003999,0.249968,0,0);-ms-transform:matrix(0.187531,-0.003000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187531,-0.003000,0.003999,0.249968,0,0);}
.md1_c00372{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{transform:matrix(0.189326,-0.003029,0.003999,0.249968,0,0);-ms-transform:matrix(0.189326,-0.003029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189326,-0.003029,0.003999,0.249968,0,0);}
.m63_c00372{transform:matrix(0.189661,-0.003035,0.003999,0.249968,0,0);-ms-transform:matrix(0.189661,-0.003035,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189661,-0.003035,0.003999,0.249968,0,0);}
.m13_c00372{transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189761,-0.003036,0.003999,0.249968,0,0);}
.m6_c00372{transform:matrix(0.189999,-0.003420,0.004499,0.249960,0,0);-ms-transform:matrix(0.189999,-0.003420,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189999,-0.003420,0.004499,0.249960,0,0);}
.mca_c00372{transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190165,0.000000,0.000000,0.250000,0,0);}
.m54_c00372{transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);-ms-transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190441,-0.003047,0.003999,0.249968,0,0);}
.m8d_c00372{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.md5_c00372{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{transform:matrix(0.191346,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191346,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191346,-0.003062,0.003999,0.249968,0,0);}
.mc9_c00372{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m26_c00372{transform:matrix(0.191915,-0.003071,0.003999,0.249968,0,0);-ms-transform:matrix(0.191915,-0.003071,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191915,-0.003071,0.003999,0.249968,0,0);}
.m94_c00372{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.m5a_c00372{transform:matrix(0.192655,-0.003082,0.003999,0.249968,0,0);-ms-transform:matrix(0.192655,-0.003082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192655,-0.003082,0.003999,0.249968,0,0);}
.m76_c00372{transform:matrix(0.192830,-0.003085,0.003999,0.249968,0,0);-ms-transform:matrix(0.192830,-0.003085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192830,-0.003085,0.003999,0.249968,0,0);}
.mcc_c00372{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.193014,-0.003474,0.004499,0.249960,0,0);-ms-transform:matrix(0.193014,-0.003474,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193014,-0.003474,0.004499,0.249960,0,0);}
.m21_c00372{transform:matrix(0.193730,-0.003100,0.003999,0.249968,0,0);-ms-transform:matrix(0.193730,-0.003100,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193730,-0.003100,0.003999,0.249968,0,0);}
.m80_c00372{transform:matrix(0.193743,-0.002906,0.003750,0.249972,0,0);-ms-transform:matrix(0.193743,-0.002906,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193743,-0.002906,0.003750,0.249972,0,0);}
.m30_c00372{transform:matrix(0.193920,-0.003103,0.003999,0.249968,0,0);-ms-transform:matrix(0.193920,-0.003103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193920,-0.003103,0.003999,0.249968,0,0);}
.mbf_c00372{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m90_c00372{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m6f_c00372{transform:matrix(0.195160,-0.003123,0.003999,0.249968,0,0);-ms-transform:matrix(0.195160,-0.003123,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195160,-0.003123,0.003999,0.249968,0,0);}
.m9b_c00372{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m97_c00372{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m8f_c00372{transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195705,0.000000,0.000000,0.250000,0,0);}
.ma8_c00372{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.md0_c00372{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(0.196005,-0.003136,0.003999,0.249968,0,0);-ms-transform:matrix(0.196005,-0.003136,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196005,-0.003136,0.003999,0.249968,0,0);}
.ma7_c00372{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.md9_c00372{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m84_c00372{transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);}
.m92_c00372{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00372{transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);}
.m71_c00372{transform:matrix(0.198180,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198180,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198180,-0.003171,0.003999,0.249968,0,0);}
.m50_c00372{transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);-ms-transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);}
.mab_c00372{transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);}
.m32_c00372{transform:matrix(0.198755,-0.003180,0.003999,0.249968,0,0);-ms-transform:matrix(0.198755,-0.003180,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198755,-0.003180,0.003999,0.249968,0,0);}
.m8e_c00372{transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);}
.m68_c00372{transform:matrix(0.198880,-0.003182,0.003999,0.249968,0,0);-ms-transform:matrix(0.198880,-0.003182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198880,-0.003182,0.003999,0.249968,0,0);}
.mdd_c00372{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m48_c00372{transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);-ms-transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199135,-0.003186,0.003999,0.249968,0,0);}
.m51_c00372{transform:matrix(0.199774,-0.003196,0.003999,0.249968,0,0);-ms-transform:matrix(0.199774,-0.003196,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199774,-0.003196,0.003999,0.249968,0,0);}
.me7_c00372{transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00372{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.m34_c00372{transform:matrix(0.200799,-0.003213,0.003999,0.249968,0,0);-ms-transform:matrix(0.200799,-0.003213,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200799,-0.003213,0.003999,0.249968,0,0);}
.mc_c00372{transform:matrix(0.201704,-0.003227,0.003999,0.249968,0,0);-ms-transform:matrix(0.201704,-0.003227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201704,-0.003227,0.003999,0.249968,0,0);}
.m60_c00372{transform:matrix(0.201809,-0.003229,0.003999,0.249968,0,0);-ms-transform:matrix(0.201809,-0.003229,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201809,-0.003229,0.003999,0.249968,0,0);}
.m7e_c00372{transform:matrix(0.201862,-0.003028,0.003750,0.249972,0,0);-ms-transform:matrix(0.201862,-0.003028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201862,-0.003028,0.003750,0.249972,0,0);}
.me5_c00372{transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202790,0.000000,0.000000,0.250000,0,0);}
.me3_c00372{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m27_c00372{transform:matrix(0.203344,-0.003254,0.003999,0.249968,0,0);-ms-transform:matrix(0.203344,-0.003254,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203344,-0.003254,0.003999,0.249968,0,0);}
.m99_c00372{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m4d_c00372{transform:matrix(0.203864,-0.003262,0.003999,0.249968,0,0);-ms-transform:matrix(0.203864,-0.003262,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203864,-0.003262,0.003999,0.249968,0,0);}
.m86_c00372{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m7b_c00372{transform:matrix(0.204242,-0.003064,0.003750,0.249972,0,0);-ms-transform:matrix(0.204242,-0.003064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204242,-0.003064,0.003750,0.249972,0,0);}
.m47_c00372{transform:matrix(0.204604,-0.003274,0.003999,0.249968,0,0);-ms-transform:matrix(0.204604,-0.003274,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204604,-0.003274,0.003999,0.249968,0,0);}
.mb7_c00372{transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);}
.mdb_c00372{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.mdc_c00372{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m23_c00372{transform:matrix(0.206679,-0.003307,0.003999,0.249968,0,0);-ms-transform:matrix(0.206679,-0.003307,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206679,-0.003307,0.003999,0.249968,0,0);}
.md3_c00372{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m83_c00372{transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);}
.mc8_c00372{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.maf_c00372{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m3a_c00372{transform:matrix(0.207893,-0.003326,0.003999,0.249968,0,0);-ms-transform:matrix(0.207893,-0.003326,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207893,-0.003326,0.003999,0.249968,0,0);}
.m9e_c00372{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.me0_c00372{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m66_c00372{transform:matrix(0.208313,-0.003333,0.003999,0.249968,0,0);-ms-transform:matrix(0.208313,-0.003333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208313,-0.003333,0.003999,0.249968,0,0);}
.ma2_c00372{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.mac_c00372{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m4e_c00372{transform:matrix(0.209323,-0.003349,0.003999,0.249968,0,0);-ms-transform:matrix(0.209323,-0.003349,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209323,-0.003349,0.003999,0.249968,0,0);}
.m78_c00372{transform:matrix(0.209618,-0.003354,0.003999,0.249968,0,0);-ms-transform:matrix(0.209618,-0.003354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209618,-0.003354,0.003999,0.249968,0,0);}
.m9d_c00372{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.mb8_c00372{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.210043,-0.003361,0.003999,0.249968,0,0);-ms-transform:matrix(0.210043,-0.003361,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210043,-0.003361,0.003999,0.249968,0,0);}
.m4b_c00372{transform:matrix(0.210478,-0.003368,0.003999,0.249968,0,0);-ms-transform:matrix(0.210478,-0.003368,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210478,-0.003368,0.003999,0.249968,0,0);}
.mce_c00372{transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);-ms-transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211038,-0.003377,0.003999,0.249968,0,0);}
.m64_c00372{transform:matrix(0.211333,-0.003381,0.003999,0.249968,0,0);-ms-transform:matrix(0.211333,-0.003381,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211333,-0.003381,0.003999,0.249968,0,0);}
.mcb_c00372{transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);}
.mda_c00372{transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);}
.mcf_c00372{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.m3d_c00372{transform:matrix(0.211968,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211968,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211968,-0.003391,0.003999,0.249968,0,0);}
.m37_c00372{transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);-ms-transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212133,-0.003394,0.003999,0.249968,0,0);}
.ma6_c00372{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m81_c00372{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.ma1_c00372{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m52_c00372{transform:matrix(0.212793,-0.003405,0.003999,0.249968,0,0);-ms-transform:matrix(0.212793,-0.003405,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212793,-0.003405,0.003999,0.249968,0,0);}
.me6_c00372{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m8a_c00372{transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);}
.m41_c00372{transform:matrix(0.213673,-0.003419,0.003999,0.249968,0,0);-ms-transform:matrix(0.213673,-0.003419,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213673,-0.003419,0.003999,0.249968,0,0);}
.m62_c00372{transform:matrix(0.213723,-0.003420,0.003999,0.249968,0,0);-ms-transform:matrix(0.213723,-0.003420,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213723,-0.003420,0.003999,0.249968,0,0);}
.m22_c00372{transform:matrix(0.213788,-0.003421,0.003999,0.249968,0,0);-ms-transform:matrix(0.213788,-0.003421,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213788,-0.003421,0.003999,0.249968,0,0);}
.m4_c00372{transform:matrix(0.213935,-0.003851,0.004499,0.249960,0,0);-ms-transform:matrix(0.213935,-0.003851,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213935,-0.003851,0.004499,0.249960,0,0);}
.m25_c00372{transform:matrix(0.214178,-0.003427,0.003999,0.249968,0,0);-ms-transform:matrix(0.214178,-0.003427,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214178,-0.003427,0.003999,0.249968,0,0);}
.m43_c00372{transform:matrix(0.214418,-0.003431,0.003999,0.249968,0,0);-ms-transform:matrix(0.214418,-0.003431,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214418,-0.003431,0.003999,0.249968,0,0);}
.m49_c00372{transform:matrix(0.215362,-0.003446,0.003999,0.249968,0,0);-ms-transform:matrix(0.215362,-0.003446,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215362,-0.003446,0.003999,0.249968,0,0);}
.ma3_c00372{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m33_c00372{transform:matrix(0.216142,-0.003458,0.003999,0.249968,0,0);-ms-transform:matrix(0.216142,-0.003458,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216142,-0.003458,0.003999,0.249968,0,0);}
.m53_c00372{transform:matrix(0.216632,-0.003466,0.003999,0.249968,0,0);-ms-transform:matrix(0.216632,-0.003466,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216632,-0.003466,0.003999,0.249968,0,0);}
.m39_c00372{transform:matrix(0.217677,-0.003483,0.003999,0.249968,0,0);-ms-transform:matrix(0.217677,-0.003483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217677,-0.003483,0.003999,0.249968,0,0);}
.mc5_c00372{transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);}
.ma4_c00372{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m8b_c00372{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{transform:matrix(0.219407,-0.003511,0.003999,0.249968,0,0);-ms-transform:matrix(0.219407,-0.003511,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219407,-0.003511,0.003999,0.249968,0,0);}
.maa_c00372{transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);}
.m3c_c00372{transform:matrix(0.220277,-0.003524,0.003999,0.249968,0,0);-ms-transform:matrix(0.220277,-0.003524,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220277,-0.003524,0.003999,0.249968,0,0);}
.m2a_c00372{transform:matrix(0.220472,-0.003528,0.003999,0.249968,0,0);-ms-transform:matrix(0.220472,-0.003528,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220472,-0.003528,0.003999,0.249968,0,0);}
.m89_c00372{transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.221442,-0.003543,0.003999,0.249968,0,0);-ms-transform:matrix(0.221442,-0.003543,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221442,-0.003543,0.003999,0.249968,0,0);}
.m29_c00372{transform:matrix(0.221657,-0.003547,0.003999,0.249968,0,0);-ms-transform:matrix(0.221657,-0.003547,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221657,-0.003547,0.003999,0.249968,0,0);}
.m14_c00372{transform:matrix(0.221757,-0.003548,0.003999,0.249968,0,0);-ms-transform:matrix(0.221757,-0.003548,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221757,-0.003548,0.003999,0.249968,0,0);}
.m16_c00372{transform:matrix(0.222686,-0.003563,0.003999,0.249968,0,0);-ms-transform:matrix(0.222686,-0.003563,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222686,-0.003563,0.003999,0.249968,0,0);}
.m82_c00372{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m5c_c00372{transform:matrix(0.224711,-0.003595,0.003999,0.249968,0,0);-ms-transform:matrix(0.224711,-0.003595,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224711,-0.003595,0.003999,0.249968,0,0);}
.me2_c00372{transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);}
.md6_c00372{transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);}
.m55_c00372{transform:matrix(0.227116,-0.003634,0.003999,0.249968,0,0);-ms-transform:matrix(0.227116,-0.003634,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227116,-0.003634,0.003999,0.249968,0,0);}
.mb3_c00372{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m35_c00372{transform:matrix(0.228366,-0.003654,0.003999,0.249968,0,0);-ms-transform:matrix(0.228366,-0.003654,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228366,-0.003654,0.003999,0.249968,0,0);}
.m2b_c00372{transform:matrix(0.228511,-0.003656,0.003999,0.249968,0,0);-ms-transform:matrix(0.228511,-0.003656,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228511,-0.003656,0.003999,0.249968,0,0);}
.m31_c00372{transform:matrix(0.229416,-0.003671,0.003999,0.249968,0,0);-ms-transform:matrix(0.229416,-0.003671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229416,-0.003671,0.003999,0.249968,0,0);}
.m4f_c00372{transform:matrix(0.230915,-0.003695,0.003999,0.249968,0,0);-ms-transform:matrix(0.230915,-0.003695,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230915,-0.003695,0.003999,0.249968,0,0);}
.m8c_c00372{transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);}
.m3b_c00372{transform:matrix(0.231910,-0.003711,0.003999,0.249968,0,0);-ms-transform:matrix(0.231910,-0.003711,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231910,-0.003711,0.003999,0.249968,0,0);}
.mb0_c00372{transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);}
.m3f_c00372{transform:matrix(0.245094,-0.003921,0.003999,0.249968,0,0);-ms-transform:matrix(0.245094,-0.003921,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245094,-0.003921,0.003999,0.249968,0,0);}
.m2d_c00372{transform:matrix(0.245684,-0.003931,0.003999,0.249968,0,0);-ms-transform:matrix(0.245684,-0.003931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245684,-0.003931,0.003999,0.249968,0,0);}
.m4c_c00372{transform:matrix(0.248423,-0.003975,0.003999,0.249968,0,0);-ms-transform:matrix(0.248423,-0.003975,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248423,-0.003975,0.003999,0.249968,0,0);}
.mc4_c00372{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m4a_c00372{transform:matrix(0.253443,-0.004055,0.003999,0.249968,0,0);-ms-transform:matrix(0.253443,-0.004055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253443,-0.004055,0.003999,0.249968,0,0);}
.mbd_c00372{transform:matrix(0.260055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260055,0.000000,0.000000,0.250000,0,0);}
.ma0_c00372{transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);}
.m61_c00372{transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);-ms-transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);}
.m88_c00372{transform:matrix(0.272915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272915,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.mb9_c00372{transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288690,0.000000,0.000000,0.250000,0,0);}
.mbc_c00372{transform:matrix(0.299130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299130,0.000000,0.000000,0.250000,0,0);}
.me1_c00372{transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);}
.m40_c00372{transform:matrix(0.341511,-0.005464,0.003999,0.249968,0,0);-ms-transform:matrix(0.341511,-0.005464,0.003999,0.249968,0,0);-webkit-transform:matrix(0.341511,-0.005464,0.003999,0.249968,0,0);}
.md7_c00372{transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);}
.me9_c00372{transform:matrix(0.345685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345685,0.000000,0.000000,0.250000,0,0);}
.m98_c00372{transform:matrix(0.380200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380200,0.000000,0.000000,0.250000,0,0);}
.mec_c00372{transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);}
.me8_c00372{transform:matrix(0.410985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410985,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:0.000000px;}
.fc0_c00372{color:transparent;}
.fs15_c00372{font-size:31.500000px;}
.fs6_c00372{font-size:54.606988px;}
.fsf_c00372{font-size:57.750000px;}
.fs8_c00372{font-size:57.757392px;}
.fs2_c00372{font-size:58.800000px;}
.fs4_c00372{font-size:58.807526px;}
.fsb_c00372{font-size:59.856733px;}
.fs7_c00372{font-size:59.857660px;}
.fs10_c00372{font-size:61.950000px;}
.fs5_c00372{font-size:63.008063px;}
.fsc_c00372{font-size:64.050000px;}
.fs13_c00372{font-size:65.100000px;}
.fs9_c00372{font-size:65.108332px;}
.fsa_c00372{font-size:66.158467px;}
.fs12_c00372{font-size:67.200000px;}
.fse_c00372{font-size:68.250000px;}
.fs3_c00372{font-size:68.258735px;}
.fs14_c00372{font-size:69.300000px;}
.fsd_c00372{font-size:70.350000px;}
.fs1_c00372{font-size:70.361396px;}
.fs11_c00372{font-size:73.500000px;}
.fs0_c00372{font-size:75.600000px;}
.y0_c00372{bottom:0.000000px;}
.yd8_c00372{bottom:18.903000px;}
.yd9_c00372{bottom:19.675500px;}
.yda_c00372{bottom:20.538000px;}
.ydb_c00372{bottom:21.028500px;}
.ydc_c00372{bottom:22.885500px;}
.yd7_c00372{bottom:31.629000px;}
.yd0_c00372{bottom:43.485000px;}
.yd1_c00372{bottom:45.097500px;}
.yd2_c00372{bottom:45.714000px;}
.yd3_c00372{bottom:46.693500px;}
.yd4_c00372{bottom:48.459000px;}
.yd5_c00372{bottom:49.816500px;}
.yd6_c00372{bottom:50.305500px;}
.yc7_c00372{bottom:60.498000px;}
.yc8_c00372{bottom:61.779000px;}
.yc9_c00372{bottom:62.491500px;}
.yca_c00372{bottom:63.175500px;}
.ycb_c00372{bottom:64.317000px;}
.ycc_c00372{bottom:64.846500px;}
.ycd_c00372{bottom:66.298500px;}
.yce_c00372{bottom:66.667500px;}
.ycf_c00372{bottom:67.191000px;}
.yc1_c00372{bottom:75.622500px;}
.yc2_c00372{bottom:76.447500px;}
.yc3_c00372{bottom:79.591500px;}
.yc4_c00372{bottom:81.829500px;}
.yc5_c00372{bottom:82.857000px;}
.yc6_c00372{bottom:83.880000px;}
.yba_c00372{bottom:94.242000px;}
.ybb_c00372{bottom:96.147000px;}
.ybc_c00372{bottom:96.810000px;}
.ybd_c00372{bottom:98.308500px;}
.ybe_c00372{bottom:98.881500px;}
.ybf_c00372{bottom:100.698000px;}
.yc0_c00372{bottom:100.986000px;}
.yb3_c00372{bottom:112.060500px;}
.yb4_c00372{bottom:114.417000px;}
.yb5_c00372{bottom:114.805500px;}
.yb6_c00372{bottom:116.956500px;}
.yb7_c00372{bottom:117.411000px;}
.yb8_c00372{bottom:118.218000px;}
.yb9_c00372{bottom:118.855500px;}
.yad_c00372{bottom:128.259000px;}
.yae_c00372{bottom:129.090000px;}
.yaf_c00372{bottom:130.321500px;}
.yb0_c00372{bottom:130.573500px;}
.yb1_c00372{bottom:130.972500px;}
.yb2_c00372{bottom:132.327000px;}
.yac_c00372{bottom:150.910500px;}
.ya5_c00372{bottom:160.396500px;}
.ya6_c00372{bottom:160.836000px;}
.ya7_c00372{bottom:162.607500px;}
.ya8_c00372{bottom:164.319000px;}
.ya9_c00372{bottom:164.847000px;}
.yaa_c00372{bottom:166.395000px;}
.yab_c00372{bottom:166.999500px;}
.y9b_c00372{bottom:181.170000px;}
.y9c_c00372{bottom:181.401000px;}
.y9d_c00372{bottom:181.749000px;}
.y9e_c00372{bottom:182.074500px;}
.y9f_c00372{bottom:182.547000px;}
.ya0_c00372{bottom:183.121500px;}
.ya_c00372{bottom:183.475500px;}
.ya1_c00372{bottom:183.594000px;}
.ya2_c00372{bottom:184.425000px;}
.ya3_c00372{bottom:184.765500px;}
.ya4_c00372{bottom:185.073000px;}
.y92_c00372{bottom:196.566000px;}
.y93_c00372{bottom:197.101500px;}
.y94_c00372{bottom:197.484000px;}
.y95_c00372{bottom:198.418500px;}
.y96_c00372{bottom:199.221000px;}
.y97_c00372{bottom:199.809000px;}
.y98_c00372{bottom:200.508000px;}
.y99_c00372{bottom:201.705000px;}
.y9a_c00372{bottom:201.976500px;}
.y8b_c00372{bottom:212.499000px;}
.y8c_c00372{bottom:213.325500px;}
.y8d_c00372{bottom:214.609500px;}
.y8e_c00372{bottom:215.800500px;}
.y8f_c00372{bottom:216.571500px;}
.y90_c00372{bottom:216.988500px;}
.y91_c00372{bottom:217.855500px;}
.y83_c00372{bottom:229.777500px;}
.y84_c00372{bottom:230.809500px;}
.y85_c00372{bottom:231.396000px;}
.y86_c00372{bottom:232.378500px;}
.y87_c00372{bottom:233.133000px;}
.y88_c00372{bottom:233.707500px;}
.y89_c00372{bottom:234.642000px;}
.y8a_c00372{bottom:234.997500px;}
.y82_c00372{bottom:251.716500px;}
.y7b_c00372{bottom:265.681500px;}
.y7c_c00372{bottom:266.224087px;}
.y7d_c00372{bottom:267.038228px;}
.y7e_c00372{bottom:267.525330px;}
.y7f_c00372{bottom:267.825300px;}
.y80_c00372{bottom:269.028082px;}
.y81_c00372{bottom:269.360093px;}
.y79_c00372{bottom:285.749316px;}
.y73_c00372{bottom:285.749532px;}
.y78_c00372{bottom:285.749544px;}
.y75_c00372{bottom:285.749844px;}
.y7a_c00372{bottom:285.749904px;}
.y77_c00372{bottom:285.750144px;}
.y76_c00372{bottom:285.750192px;}
.y74_c00372{bottom:285.750264px;}
.y6d_c00372{bottom:301.017648px;}
.y6e_c00372{bottom:302.101740px;}
.y6f_c00372{bottom:302.337372px;}
.y70_c00372{bottom:302.594760px;}
.y71_c00372{bottom:303.868728px;}
.y72_c00372{bottom:304.191192px;}
.y66_c00372{bottom:318.840840px;}
.y67_c00372{bottom:319.412040px;}
.y68_c00372{bottom:319.683624px;}
.y69_c00372{bottom:320.091204px;}
.y6a_c00372{bottom:320.464956px;}
.y6b_c00372{bottom:320.745312px;}
.y6c_c00372{bottom:322.156872px;}
.y60_c00372{bottom:333.965808px;}
.y61_c00372{bottom:335.375592px;}
.y62_c00372{bottom:335.915268px;}
.y63_c00372{bottom:337.105152px;}
.y64_c00372{bottom:337.591404px;}
.y65_c00372{bottom:338.870688px;}
.y57_c00372{bottom:349.631508px;}
.y58_c00372{bottom:350.243916px;}
.y59_c00372{bottom:350.725656px;}
.y5a_c00372{bottom:351.413244px;}
.y5b_c00372{bottom:352.498824px;}
.y5c_c00372{bottom:353.188068px;}
.y5d_c00372{bottom:353.590056px;}
.y5e_c00372{bottom:355.641720px;}
.y5f_c00372{bottom:356.135976px;}
.y51_c00372{bottom:367.450788px;}
.y52_c00372{bottom:368.830068px;}
.y53_c00372{bottom:370.262004px;}
.y54_c00372{bottom:370.506612px;}
.y55_c00372{bottom:371.231412px;}
.y56_c00372{bottom:371.640012px;}
.y4a_c00372{bottom:385.542192px;}
.y4b_c00372{bottom:386.089224px;}
.y4c_c00372{bottom:386.910972px;}
.y4d_c00372{bottom:387.223152px;}
.y4e_c00372{bottom:387.679536px;}
.y4f_c00372{bottom:388.418376px;}
.y50_c00372{bottom:388.721904px;}
.y43_c00372{bottom:400.663188px;}
.y44_c00372{bottom:400.909824px;}
.y45_c00372{bottom:401.953884px;}
.y46_c00372{bottom:403.040820px;}
.y47_c00372{bottom:403.424244px;}
.y48_c00372{bottom:403.748688px;}
.y49_c00372{bottom:404.426136px;}
.y3a_c00372{bottom:417.945096px;}
.y3b_c00372{bottom:418.621992px;}
.y3c_c00372{bottom:418.885092px;}
.y3d_c00372{bottom:419.524212px;}
.y3e_c00372{bottom:420.149100px;}
.y3f_c00372{bottom:420.390696px;}
.y40_c00372{bottom:420.627288px;}
.y41_c00372{bottom:421.377912px;}
.y42_c00372{bottom:421.520952px;}
.y32_c00372{bottom:437.584992px;}
.y34_c00372{bottom:437.585592px;}
.y33_c00372{bottom:437.585676px;}
.y38_c00372{bottom:437.585736px;}
.y36_c00372{bottom:437.586048px;}
.y39_c00372{bottom:437.586156px;}
.y35_c00372{bottom:437.586324px;}
.y37_c00372{bottom:437.586444px;}
.y2a_c00372{bottom:450.620940px;}
.y2b_c00372{bottom:451.668924px;}
.y2c_c00372{bottom:451.923444px;}
.y2d_c00372{bottom:452.679888px;}
.y2e_c00372{bottom:453.079092px;}
.y2f_c00372{bottom:454.196736px;}
.y30_c00372{bottom:454.569936px;}
.y31_c00372{bottom:455.682096px;}
.y28_c00372{bottom:468.173160px;}
.y29_c00372{bottom:472.361088px;}
.y23_c00372{bottom:487.472988px;}
.y25_c00372{bottom:487.473324px;}
.y22_c00372{bottom:487.473480px;}
.y26_c00372{bottom:487.473696px;}
.y24_c00372{bottom:487.473732px;}
.y27_c00372{bottom:487.474020px;}
.y19_c00372{bottom:502.197048px;}
.y1a_c00372{bottom:502.523724px;}
.y1b_c00372{bottom:503.269272px;}
.y1c_c00372{bottom:503.593896px;}
.y1d_c00372{bottom:503.852088px;}
.y1e_c00372{bottom:504.471816px;}
.y1f_c00372{bottom:505.143528px;}
.y20_c00372{bottom:505.379328px;}
.y21_c00372{bottom:506.023140px;}
.y13_c00372{bottom:518.941596px;}
.y14_c00372{bottom:519.829788px;}
.y15_c00372{bottom:520.303272px;}
.y16_c00372{bottom:522.171960px;}
.y17_c00372{bottom:522.577320px;}
.y18_c00372{bottom:523.986072px;}
.yb_c00372{bottom:536.493000px;}
.yc_c00372{bottom:537.231408px;}
.yd_c00372{bottom:537.559968px;}
.ye_c00372{bottom:538.497504px;}
.yf_c00372{bottom:538.817208px;}
.y10_c00372{bottom:539.098248px;}
.y11_c00372{bottom:539.936232px;}
.y12_c00372{bottom:540.437712px;}
.y2_c00372{bottom:552.964500px;}
.y3_c00372{bottom:553.163031px;}
.y4_c00372{bottom:553.974165px;}
.y5_c00372{bottom:554.270490px;}
.y6_c00372{bottom:554.847777px;}
.y7_c00372{bottom:555.175017px;}
.y8_c00372{bottom:556.084485px;}
.y9_c00372{bottom:557.509464px;}
.y1_c00372{bottom:568.488000px;}
.h17_c00372{height:31.500000px;}
.h8_c00372{height:54.606988px;}
.h11_c00372{height:57.750000px;}
.ha_c00372{height:57.757392px;}
.h4_c00372{height:58.800000px;}
.h6_c00372{height:58.807526px;}
.hd_c00372{height:59.856733px;}
.h9_c00372{height:59.857660px;}
.h12_c00372{height:61.950000px;}
.h7_c00372{height:63.008063px;}
.he_c00372{height:64.050000px;}
.h15_c00372{height:65.100000px;}
.hb_c00372{height:65.108332px;}
.hc_c00372{height:66.158467px;}
.h14_c00372{height:67.200000px;}
.h10_c00372{height:68.250000px;}
.h5_c00372{height:68.258735px;}
.h16_c00372{height:69.300000px;}
.hf_c00372{height:70.350000px;}
.h3_c00372{height:70.361396px;}
.h13_c00372{height:73.500000px;}
.h2_c00372{height:75.600000px;}
.h0_c00372{height:613.170000px;}
.h1_c00372{height:613.500000px;}
.w0_c00372{width:359.100000px;}
.w1_c00372{width:359.250000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:7.036500px;}
.xa_c00372{left:17.010000px;}
.x3_c00372{left:18.066000px;}
.x17_c00372{left:19.118736px;}
.x42_c00372{left:20.482596px;}
.x57_c00372{left:23.760000px;}
.x6d_c00372{left:25.650000px;}
.x71_c00372{left:26.823000px;}
.x69_c00372{left:33.375000px;}
.x7b_c00372{left:35.310000px;}
.x34_c00372{left:37.167036px;}
.x18_c00372{left:40.942596px;}
.x23_c00372{left:42.911832px;}
.x3c_c00372{left:45.266556px;}
.x6a_c00372{left:47.551500px;}
.x7d_c00372{left:49.684500px;}
.x60_c00372{left:51.045000px;}
.x54_c00372{left:54.678000px;}
.x64_c00372{left:59.631000px;}
.x29_c00372{left:61.296048px;}
.x4_c00372{left:63.129000px;}
.xb_c00372{left:64.717500px;}
.x12_c00372{left:68.176740px;}
.x61_c00372{left:70.164000px;}
.x2d_c00372{left:71.965620px;}
.x65_c00372{left:73.183500px;}
.x5a_c00372{left:75.456000px;}
.x5_c00372{left:79.591500px;}
.xc_c00372{left:85.252500px;}
.x19_c00372{left:90.633888px;}
.x2e_c00372{left:92.254104px;}
.x13_c00372{left:94.487400px;}
.x38_c00372{left:96.054252px;}
.x7a_c00372{left:98.215500px;}
.x75_c00372{left:100.108500px;}
.x58_c00372{left:101.250000px;}
.x6e_c00372{left:103.140000px;}
.x5b_c00372{left:104.803500px;}
.x4f_c00372{left:106.121772px;}
.x24_c00372{left:108.001656px;}
.x1e_c00372{left:109.092288px;}
.x6_c00372{left:111.663000px;}
.x66_c00372{left:112.798500px;}
.x62_c00372{left:116.860500px;}
.x4a_c00372{left:120.044772px;}
.x43_c00372{left:123.100176px;}
.x72_c00372{left:125.014500px;}
.x7_c00372{left:129.843000px;}
.x2a_c00372{left:130.964880px;}
.x37_c00372{left:133.456104px;}
.x47_c00372{left:136.456236px;}
.x4b_c00372{left:138.147636px;}
.x3d_c00372{left:139.217532px;}
.x2f_c00372{left:141.388956px;}
.xd_c00372{left:143.848500px;}
.x25_c00372{left:145.808232px;}
.x1_c00372{left:148.770000px;}
.x6f_c00372{left:151.470000px;}
.x5c_c00372{left:153.913500px;}
.x48_c00372{left:156.510384px;}
.x4c_c00372{left:157.891572px;}
.x1f_c00372{left:159.589200px;}
.x50_c00372{left:161.748504px;}
.xe_c00372{left:163.830000px;}
.x26_c00372{left:165.788460px;}
.x3e_c00372{left:167.947860px;}
.x1a_c00372{left:170.856684px;}
.x67_c00372{left:174.336000px;}
.x39_c00372{left:175.610208px;}
.x6b_c00372{left:176.943000px;}
.x8_c00372{left:180.369000px;}
.xf_c00372{left:181.395000px;}
.x76_c00372{left:183.216000px;}
.x3f_c00372{left:184.726224px;}
.x44_c00372{left:185.746176px;}
.x30_c00372{left:189.446760px;}
.x5d_c00372{left:191.611500px;}
.x14_c00372{left:198.339588px;}
.x20_c00372{left:202.254120px;}
.x77_c00372{left:205.275000px;}
.x2b_c00372{left:206.575224px;}
.x31_c00372{left:208.016148px;}
.x79_c00372{left:209.088000px;}
.x45_c00372{left:211.354452px;}
.x1b_c00372{left:215.651904px;}
.x35_c00372{left:216.730272px;}
.x51_c00372{left:218.725596px;}
.x15_c00372{left:220.861368px;}
.x32_c00372{left:226.179012px;}
.x22_c00372{left:228.277020px;}
.x3a_c00372{left:229.446480px;}
.x1c_c00372{left:231.327144px;}
.x10_c00372{left:233.769000px;}
.x52_c00372{left:239.247852px;}
.x27_c00372{left:240.305184px;}
.x55_c00372{left:241.611000px;}
.x70_c00372{left:243.000000px;}
.x2c_c00372{left:245.190612px;}
.x6c_c00372{left:246.384000px;}
.x5f_c00372{left:248.389500px;}
.x73_c00372{left:249.772500px;}
.x68_c00372{left:251.013000px;}
.x3b_c00372{left:252.170760px;}
.x7c_c00372{left:253.620000px;}
.x4d_c00372{left:255.894276px;}
.x49_c00372{left:257.298600px;}
.x9_c00372{left:259.534500px;}
.x59_c00372{left:261.630000px;}
.x56_c00372{left:263.745000px;}
.x11_c00372{left:265.111500px;}
.x5e_c00372{left:267.013500px;}
.x40_c00372{left:270.194280px;}
.x1d_c00372{left:274.284840px;}
.x53_c00372{left:276.512880px;}
.x46_c00372{left:278.650212px;}
.x4e_c00372{left:280.736976px;}
.x33_c00372{left:283.970796px;}
.x78_c00372{left:286.255500px;}
.x36_c00372{left:288.257052px;}
.x41_c00372{left:290.770140px;}
.x63_c00372{left:294.789000px;}
.x28_c00372{left:295.936632px;}
.x16_c00372{left:299.155872px;}
.x21_c00372{left:302.706324px;}
.x74_c00372{left:309.975000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.fs15_c00372{font-size:28.000000pt;}
.fs6_c00372{font-size:48.539545pt;}
.fsf_c00372{font-size:51.333333pt;}
.fs8_c00372{font-size:51.339904pt;}
.fs2_c00372{font-size:52.266667pt;}
.fs4_c00372{font-size:52.273356pt;}
.fsb_c00372{font-size:53.205985pt;}
.fs7_c00372{font-size:53.206809pt;}
.fs10_c00372{font-size:55.066667pt;}
.fs5_c00372{font-size:56.007168pt;}
.fsc_c00372{font-size:56.933333pt;}
.fs13_c00372{font-size:57.866667pt;}
.fs9_c00372{font-size:57.874073pt;}
.fsa_c00372{font-size:58.807526pt;}
.fs12_c00372{font-size:59.733333pt;}
.fse_c00372{font-size:60.666667pt;}
.fs3_c00372{font-size:60.674432pt;}
.fs14_c00372{font-size:61.600000pt;}
.fsd_c00372{font-size:62.533333pt;}
.fs1_c00372{font-size:62.543463pt;}
.fs11_c00372{font-size:65.333333pt;}
.fs0_c00372{font-size:67.200000pt;}
.y0_c00372{bottom:0.000000pt;}
.yd8_c00372{bottom:16.802667pt;}
.yd9_c00372{bottom:17.489333pt;}
.yda_c00372{bottom:18.256000pt;}
.ydb_c00372{bottom:18.692000pt;}
.ydc_c00372{bottom:20.342667pt;}
.yd7_c00372{bottom:28.114667pt;}
.yd0_c00372{bottom:38.653333pt;}
.yd1_c00372{bottom:40.086667pt;}
.yd2_c00372{bottom:40.634667pt;}
.yd3_c00372{bottom:41.505333pt;}
.yd4_c00372{bottom:43.074667pt;}
.yd5_c00372{bottom:44.281333pt;}
.yd6_c00372{bottom:44.716000pt;}
.yc7_c00372{bottom:53.776000pt;}
.yc8_c00372{bottom:54.914667pt;}
.yc9_c00372{bottom:55.548000pt;}
.yca_c00372{bottom:56.156000pt;}
.ycb_c00372{bottom:57.170667pt;}
.ycc_c00372{bottom:57.641333pt;}
.ycd_c00372{bottom:58.932000pt;}
.yce_c00372{bottom:59.260000pt;}
.ycf_c00372{bottom:59.725333pt;}
.yc1_c00372{bottom:67.220000pt;}
.yc2_c00372{bottom:67.953333pt;}
.yc3_c00372{bottom:70.748000pt;}
.yc4_c00372{bottom:72.737333pt;}
.yc5_c00372{bottom:73.650667pt;}
.yc6_c00372{bottom:74.560000pt;}
.yba_c00372{bottom:83.770667pt;}
.ybb_c00372{bottom:85.464000pt;}
.ybc_c00372{bottom:86.053333pt;}
.ybd_c00372{bottom:87.385333pt;}
.ybe_c00372{bottom:87.894667pt;}
.ybf_c00372{bottom:89.509333pt;}
.yc0_c00372{bottom:89.765333pt;}
.yb3_c00372{bottom:99.609333pt;}
.yb4_c00372{bottom:101.704000pt;}
.yb5_c00372{bottom:102.049333pt;}
.yb6_c00372{bottom:103.961333pt;}
.yb7_c00372{bottom:104.365333pt;}
.yb8_c00372{bottom:105.082667pt;}
.yb9_c00372{bottom:105.649333pt;}
.yad_c00372{bottom:114.008000pt;}
.yae_c00372{bottom:114.746667pt;}
.yaf_c00372{bottom:115.841333pt;}
.yb0_c00372{bottom:116.065333pt;}
.yb1_c00372{bottom:116.420000pt;}
.yb2_c00372{bottom:117.624000pt;}
.yac_c00372{bottom:134.142667pt;}
.ya5_c00372{bottom:142.574667pt;}
.ya6_c00372{bottom:142.965333pt;}
.ya7_c00372{bottom:144.540000pt;}
.ya8_c00372{bottom:146.061333pt;}
.ya9_c00372{bottom:146.530667pt;}
.yaa_c00372{bottom:147.906667pt;}
.yab_c00372{bottom:148.444000pt;}
.y9b_c00372{bottom:161.040000pt;}
.y9c_c00372{bottom:161.245333pt;}
.y9d_c00372{bottom:161.554667pt;}
.y9e_c00372{bottom:161.844000pt;}
.y9f_c00372{bottom:162.264000pt;}
.ya0_c00372{bottom:162.774667pt;}
.ya_c00372{bottom:163.089333pt;}
.ya1_c00372{bottom:163.194667pt;}
.ya2_c00372{bottom:163.933333pt;}
.ya3_c00372{bottom:164.236000pt;}
.ya4_c00372{bottom:164.509333pt;}
.y92_c00372{bottom:174.725333pt;}
.y93_c00372{bottom:175.201333pt;}
.y94_c00372{bottom:175.541333pt;}
.y95_c00372{bottom:176.372000pt;}
.y96_c00372{bottom:177.085333pt;}
.y97_c00372{bottom:177.608000pt;}
.y98_c00372{bottom:178.229333pt;}
.y99_c00372{bottom:179.293333pt;}
.y9a_c00372{bottom:179.534667pt;}
.y8b_c00372{bottom:188.888000pt;}
.y8c_c00372{bottom:189.622667pt;}
.y8d_c00372{bottom:190.764000pt;}
.y8e_c00372{bottom:191.822667pt;}
.y8f_c00372{bottom:192.508000pt;}
.y90_c00372{bottom:192.878667pt;}
.y91_c00372{bottom:193.649333pt;}
.y83_c00372{bottom:204.246667pt;}
.y84_c00372{bottom:205.164000pt;}
.y85_c00372{bottom:205.685333pt;}
.y86_c00372{bottom:206.558667pt;}
.y87_c00372{bottom:207.229333pt;}
.y88_c00372{bottom:207.740000pt;}
.y89_c00372{bottom:208.570667pt;}
.y8a_c00372{bottom:208.886667pt;}
.y82_c00372{bottom:223.748000pt;}
.y7b_c00372{bottom:236.161333pt;}
.y7c_c00372{bottom:236.643633pt;}
.y7d_c00372{bottom:237.367313pt;}
.y7e_c00372{bottom:237.800293pt;}
.y7f_c00372{bottom:238.066933pt;}
.y80_c00372{bottom:239.136073pt;}
.y81_c00372{bottom:239.431193pt;}
.y79_c00372{bottom:253.999392pt;}
.y73_c00372{bottom:253.999584pt;}
.y78_c00372{bottom:253.999595pt;}
.y75_c00372{bottom:253.999861pt;}
.y7a_c00372{bottom:253.999915pt;}
.y77_c00372{bottom:254.000128pt;}
.y76_c00372{bottom:254.000171pt;}
.y74_c00372{bottom:254.000235pt;}
.y6d_c00372{bottom:267.571243pt;}
.y6e_c00372{bottom:268.534880pt;}
.y6f_c00372{bottom:268.744331pt;}
.y70_c00372{bottom:268.973120pt;}
.y71_c00372{bottom:270.105536pt;}
.y72_c00372{bottom:270.392171pt;}
.y66_c00372{bottom:283.414080pt;}
.y67_c00372{bottom:283.921813pt;}
.y68_c00372{bottom:284.163221pt;}
.y69_c00372{bottom:284.525515pt;}
.y6a_c00372{bottom:284.857739pt;}
.y6b_c00372{bottom:285.106944pt;}
.y6c_c00372{bottom:286.361664pt;}
.y60_c00372{bottom:296.858496pt;}
.y61_c00372{bottom:298.111637pt;}
.y62_c00372{bottom:298.591349pt;}
.y63_c00372{bottom:299.649024pt;}
.y64_c00372{bottom:300.081248pt;}
.y65_c00372{bottom:301.218389pt;}
.y57_c00372{bottom:310.783563pt;}
.y58_c00372{bottom:311.327925pt;}
.y59_c00372{bottom:311.756139pt;}
.y5a_c00372{bottom:312.367328pt;}
.y5b_c00372{bottom:313.332288pt;}
.y5c_c00372{bottom:313.944949pt;}
.y5d_c00372{bottom:314.302272pt;}
.y5e_c00372{bottom:316.125973pt;}
.y5f_c00372{bottom:316.565312pt;}
.y51_c00372{bottom:326.622923pt;}
.y52_c00372{bottom:327.848949pt;}
.y53_c00372{bottom:329.121781pt;}
.y54_c00372{bottom:329.339211pt;}
.y55_c00372{bottom:329.983477pt;}
.y56_c00372{bottom:330.346677pt;}
.y4a_c00372{bottom:342.704171pt;}
.y4b_c00372{bottom:343.190421pt;}
.y4c_c00372{bottom:343.920864pt;}
.y4d_c00372{bottom:344.198357pt;}
.y4e_c00372{bottom:344.604032pt;}
.y4f_c00372{bottom:345.260779pt;}
.y50_c00372{bottom:345.530581pt;}
.y43_c00372{bottom:356.145056pt;}
.y44_c00372{bottom:356.364288pt;}
.y45_c00372{bottom:357.292341pt;}
.y46_c00372{bottom:358.258507pt;}
.y47_c00372{bottom:358.599328pt;}
.y48_c00372{bottom:358.887723pt;}
.y49_c00372{bottom:359.489899pt;}
.y3a_c00372{bottom:371.506752pt;}
.y3b_c00372{bottom:372.108437pt;}
.y3c_c00372{bottom:372.342304pt;}
.y3d_c00372{bottom:372.910411pt;}
.y3e_c00372{bottom:373.465867pt;}
.y3f_c00372{bottom:373.680619pt;}
.y40_c00372{bottom:373.890923pt;}
.y41_c00372{bottom:374.558144pt;}
.y42_c00372{bottom:374.685291pt;}
.y32_c00372{bottom:388.964437pt;}
.y34_c00372{bottom:388.964971pt;}
.y33_c00372{bottom:388.965045pt;}
.y38_c00372{bottom:388.965099pt;}
.y36_c00372{bottom:388.965376pt;}
.y39_c00372{bottom:388.965472pt;}
.y35_c00372{bottom:388.965621pt;}
.y37_c00372{bottom:388.965728pt;}
.y2a_c00372{bottom:400.551947pt;}
.y2b_c00372{bottom:401.483488pt;}
.y2c_c00372{bottom:401.709728pt;}
.y2d_c00372{bottom:402.382123pt;}
.y2e_c00372{bottom:402.736971pt;}
.y2f_c00372{bottom:403.730432pt;}
.y30_c00372{bottom:404.062165pt;}
.y31_c00372{bottom:405.050752pt;}
.y28_c00372{bottom:416.153920pt;}
.y29_c00372{bottom:419.876523pt;}
.y23_c00372{bottom:433.309323pt;}
.y25_c00372{bottom:433.309621pt;}
.y22_c00372{bottom:433.309760pt;}
.y26_c00372{bottom:433.309952pt;}
.y24_c00372{bottom:433.309984pt;}
.y27_c00372{bottom:433.310240pt;}
.y19_c00372{bottom:446.397376pt;}
.y1a_c00372{bottom:446.687755pt;}
.y1b_c00372{bottom:447.350464pt;}
.y1c_c00372{bottom:447.639019pt;}
.y1d_c00372{bottom:447.868523pt;}
.y1e_c00372{bottom:448.419392pt;}
.y1f_c00372{bottom:449.016469pt;}
.y20_c00372{bottom:449.226069pt;}
.y21_c00372{bottom:449.798347pt;}
.y13_c00372{bottom:461.281419pt;}
.y14_c00372{bottom:462.070923pt;}
.y15_c00372{bottom:462.491797pt;}
.y16_c00372{bottom:464.152853pt;}
.y17_c00372{bottom:464.513173pt;}
.y18_c00372{bottom:465.765397pt;}
.yb_c00372{bottom:476.882667pt;}
.yc_c00372{bottom:477.539029pt;}
.yd_c00372{bottom:477.831083pt;}
.ye_c00372{bottom:478.664448pt;}
.yf_c00372{bottom:478.948629pt;}
.y10_c00372{bottom:479.198443pt;}
.y11_c00372{bottom:479.943317pt;}
.y12_c00372{bottom:480.389077pt;}
.y2_c00372{bottom:491.524000pt;}
.y3_c00372{bottom:491.700472pt;}
.y4_c00372{bottom:492.421480pt;}
.y5_c00372{bottom:492.684880pt;}
.y6_c00372{bottom:493.198024pt;}
.y7_c00372{bottom:493.488904pt;}
.y8_c00372{bottom:494.297320pt;}
.y9_c00372{bottom:495.563968pt;}
.y1_c00372{bottom:505.322667pt;}
.h17_c00372{height:28.000000pt;}
.h8_c00372{height:48.539545pt;}
.h11_c00372{height:51.333333pt;}
.ha_c00372{height:51.339904pt;}
.h4_c00372{height:52.266667pt;}
.h6_c00372{height:52.273356pt;}
.hd_c00372{height:53.205985pt;}
.h9_c00372{height:53.206809pt;}
.h12_c00372{height:55.066667pt;}
.h7_c00372{height:56.007168pt;}
.he_c00372{height:56.933333pt;}
.h15_c00372{height:57.866667pt;}
.hb_c00372{height:57.874073pt;}
.hc_c00372{height:58.807526pt;}
.h14_c00372{height:59.733333pt;}
.h10_c00372{height:60.666667pt;}
.h5_c00372{height:60.674432pt;}
.h16_c00372{height:61.600000pt;}
.hf_c00372{height:62.533333pt;}
.h3_c00372{height:62.543463pt;}
.h13_c00372{height:65.333333pt;}
.h2_c00372{height:67.200000pt;}
.h0_c00372{height:545.040000pt;}
.h1_c00372{height:545.333333pt;}
.w0_c00372{width:319.200000pt;}
.w1_c00372{width:319.333333pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:6.254667pt;}
.xa_c00372{left:15.120000pt;}
.x3_c00372{left:16.058667pt;}
.x17_c00372{left:16.994432pt;}
.x42_c00372{left:18.206752pt;}
.x57_c00372{left:21.120000pt;}
.x6d_c00372{left:22.800000pt;}
.x71_c00372{left:23.842667pt;}
.x69_c00372{left:29.666667pt;}
.x7b_c00372{left:31.386667pt;}
.x34_c00372{left:33.037365pt;}
.x18_c00372{left:36.393419pt;}
.x23_c00372{left:38.143851pt;}
.x3c_c00372{left:40.236939pt;}
.x6a_c00372{left:42.268000pt;}
.x7d_c00372{left:44.164000pt;}
.x60_c00372{left:45.373333pt;}
.x54_c00372{left:48.602667pt;}
.x64_c00372{left:53.005333pt;}
.x29_c00372{left:54.485376pt;}
.x4_c00372{left:56.114667pt;}
.xb_c00372{left:57.526667pt;}
.x12_c00372{left:60.601547pt;}
.x61_c00372{left:62.368000pt;}
.x2d_c00372{left:63.969440pt;}
.x65_c00372{left:65.052000pt;}
.x5a_c00372{left:67.072000pt;}
.x5_c00372{left:70.748000pt;}
.xc_c00372{left:75.780000pt;}
.x19_c00372{left:80.563456pt;}
.x2e_c00372{left:82.003648pt;}
.x13_c00372{left:83.988800pt;}
.x38_c00372{left:85.381557pt;}
.x7a_c00372{left:87.302667pt;}
.x75_c00372{left:88.985333pt;}
.x58_c00372{left:90.000000pt;}
.x6e_c00372{left:91.680000pt;}
.x5b_c00372{left:93.158667pt;}
.x4f_c00372{left:94.330464pt;}
.x24_c00372{left:96.001472pt;}
.x1e_c00372{left:96.970923pt;}
.x6_c00372{left:99.256000pt;}
.x66_c00372{left:100.265333pt;}
.x62_c00372{left:103.876000pt;}
.x4a_c00372{left:106.706464pt;}
.x43_c00372{left:109.422379pt;}
.x72_c00372{left:111.124000pt;}
.x7_c00372{left:115.416000pt;}
.x2a_c00372{left:116.413227pt;}
.x37_c00372{left:118.627648pt;}
.x47_c00372{left:121.294432pt;}
.x4b_c00372{left:122.797899pt;}
.x3d_c00372{left:123.748917pt;}
.x2f_c00372{left:125.679072pt;}
.xd_c00372{left:127.865333pt;}
.x25_c00372{left:129.607317pt;}
.x1_c00372{left:132.240000pt;}
.x6f_c00372{left:134.640000pt;}
.x5c_c00372{left:136.812000pt;}
.x48_c00372{left:139.120341pt;}
.x4c_c00372{left:140.348064pt;}
.x1f_c00372{left:141.857067pt;}
.x50_c00372{left:143.776448pt;}
.xe_c00372{left:145.626667pt;}
.x26_c00372{left:147.367520pt;}
.x3e_c00372{left:149.286987pt;}
.x1a_c00372{left:151.872608pt;}
.x67_c00372{left:154.965333pt;}
.x39_c00372{left:156.097963pt;}
.x6b_c00372{left:157.282667pt;}
.x8_c00372{left:160.328000pt;}
.xf_c00372{left:161.240000pt;}
.x76_c00372{left:162.858667pt;}
.x3f_c00372{left:164.201088pt;}
.x44_c00372{left:165.107712pt;}
.x30_c00372{left:168.397120pt;}
.x5d_c00372{left:170.321333pt;}
.x14_c00372{left:176.301856pt;}
.x20_c00372{left:179.781440pt;}
.x77_c00372{left:182.466667pt;}
.x2b_c00372{left:183.622421pt;}
.x31_c00372{left:184.903243pt;}
.x79_c00372{left:185.856000pt;}
.x45_c00372{left:187.870624pt;}
.x1b_c00372{left:191.690581pt;}
.x35_c00372{left:192.649131pt;}
.x51_c00372{left:194.422752pt;}
.x15_c00372{left:196.321216pt;}
.x32_c00372{left:201.048011pt;}
.x22_c00372{left:202.912907pt;}
.x3a_c00372{left:203.952427pt;}
.x1c_c00372{left:205.624128pt;}
.x10_c00372{left:207.794667pt;}
.x52_c00372{left:212.664757pt;}
.x27_c00372{left:213.604608pt;}
.x55_c00372{left:214.765333pt;}
.x70_c00372{left:216.000000pt;}
.x2c_c00372{left:217.947211pt;}
.x6c_c00372{left:219.008000pt;}
.x5f_c00372{left:220.790667pt;}
.x73_c00372{left:222.020000pt;}
.x68_c00372{left:223.122667pt;}
.x3b_c00372{left:224.151787pt;}
.x7c_c00372{left:225.440000pt;}
.x4d_c00372{left:227.461579pt;}
.x49_c00372{left:228.709867pt;}
.x9_c00372{left:230.697333pt;}
.x59_c00372{left:232.560000pt;}
.x56_c00372{left:234.440000pt;}
.x11_c00372{left:235.654667pt;}
.x5e_c00372{left:237.345333pt;}
.x40_c00372{left:240.172693pt;}
.x1d_c00372{left:243.808747pt;}
.x53_c00372{left:245.789227pt;}
.x46_c00372{left:247.689077pt;}
.x4e_c00372{left:249.543979pt;}
.x33_c00372{left:252.418485pt;}
.x78_c00372{left:254.449333pt;}
.x36_c00372{left:256.228491pt;}
.x41_c00372{left:258.462347pt;}
.x63_c00372{left:262.034667pt;}
.x28_c00372{left:263.054784pt;}
.x16_c00372{left:265.916331pt;}
.x21_c00372{left:269.072288pt;}
.x74_c00372{left:275.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00373 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00373 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00373 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00373 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00373.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00373{transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.039945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039945,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.125815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125815,0.000000,0.000000,0.250000,0,0);}
.mca_c00373{transform:matrix(0.140290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140290,0.000000,0.000000,0.250000,0,0);}
.mb0_c00373{transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146260,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147930,0.000000,0.000000,0.250000,0,0);}
.mc9_c00373{transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147995,0.000000,0.000000,0.250000,0,0);}
.mcc_c00373{transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148030,0.000000,0.000000,0.250000,0,0);}
.mbe_c00373{transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150965,0.000000,0.000000,0.250000,0,0);}
.m43_c00373{transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152190,0.000000,0.000000,0.250000,0,0);}
.mf6_c00373{transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);}
.m63_c00373{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00373{transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153995,0.000000,0.000000,0.250000,0,0);}
.mb9_c00373{transform:matrix(0.154885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154885,0.000000,0.000000,0.250000,0,0);}
.mb4_c00373{transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);}
.m9c_c00373{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m47_c00373{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.mc8_c00373{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.mf1_c00373{transform:matrix(0.156820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156820,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156835,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.mbb_c00373{transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.mf2_c00373{transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);}
.m37_c00373{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m99_c00373{transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);}
.mcb_c00373{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.mbc_c00373{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.md1_c00373{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00373{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.mf7_c00373{transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);}
.mc7_c00373{transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);}
.m48_c00373{transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163740,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00373{transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);}
.md6_c00373{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.mae_c00373{transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165840,0.000000,0.000000,0.250000,0,0);}
.mb1_c00373{transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);}
.m96_c00373{transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);}
.mb7_c00373{transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);}
.m34_c00373{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m38_c00373{transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);}
.m61_c00373{transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168260,0.000000,0.000000,0.250000,0,0);}
.mb2_c00373{transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);}
.mb5_c00373{transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.mc1_c00373{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171290,0.000000,0.000000,0.250000,0,0);}
.md5_c00373{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m5d_c00373{transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172720,0.000000,0.000000,0.250000,0,0);}
.mea_c00373{transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.md3_c00373{transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);}
.md2_c00373{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m72_c00373{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m65_c00373{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m5a_c00373{transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177715,0.000000,0.000000,0.250000,0,0);}
.md0_c00373{transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177920,0.000000,0.000000,0.250000,0,0);}
.m7d_c00373{transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.mf4_c00373{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);}
.ma5_c00373{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.maa_c00373{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.mc3_c00373{transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180805,0.000000,0.000000,0.250000,0,0);}
.m6a_c00373{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181545,0.000000,0.000000,0.250000,0,0);}
.med_c00373{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.mf0_c00373{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.mb3_c00373{transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182310,0.000000,0.000000,0.250000,0,0);}
.m4c_c00373{transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);}
.mdd_c00373{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);}
.m83_c00373{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m57_c00373{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m84_c00373{transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);}
.md9_c00373{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m97_c00373{transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m98_c00373{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00373{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.me4_c00373{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.mbd_c00373{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.me2_c00373{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.mc5_c00373{transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m7a_c00373{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m66_c00373{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188505,0.000000,0.000000,0.250000,0,0);}
.m95_c00373{transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);}
.mc0_c00373{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.m5c_c00373{transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);}
.m73_c00373{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m9a_c00373{transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);}
.m89_c00373{transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);}
.m2d_c00373{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00373{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);}
.mcf_c00373{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);}
.m9d_c00373{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m69_c00373{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m91_c00373{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m9b_c00373{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.mc6_c00373{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.m86_c00373{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m36_c00373{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.md4_c00373{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00373{transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192805,0.000000,0.000000,0.250000,0,0);}
.mdc_c00373{transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193715,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.md8_c00373{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);}
.mbf_c00373{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m67_c00373{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.md7_c00373{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.ma7_c00373{transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);}
.m9e_c00373{transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);}
.me0_c00373{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m92_c00373{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.mce_c00373{transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.mba_c00373{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.mee_c00373{transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);}
.m76_c00373{transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);}
.ma6_c00373{transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);}
.m5b_c00373{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.mf3_c00373{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.m80_c00373{transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);}
.m59_c00373{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.m8f_c00373{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.m78_c00373{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.mec_c00373{transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);}
.me8_c00373{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.me9_c00373{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m82_c00373{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);}
.mb8_c00373{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.ma8_c00373{transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205695,0.000000,0.000000,0.250000,0,0);}
.m8e_c00373{transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);}
.m8d_c00373{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.me1_c00373{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mad_c00373{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00373{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.mc2_c00373{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m68_c00373{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00373{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m58_c00373{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.mac_c00373{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.mde_c00373{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.m3d_c00373{transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);}
.m77_c00373{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m8b_c00373{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m5f_c00373{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.me7_c00373{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m6c_c00373{transform:matrix(0.214485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00373{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m81_c00373{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.maf_c00373{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.m8a_c00373{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.m94_c00373{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.ma3_c00373{transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216615,0.000000,0.000000,0.250000,0,0);}
.m79_c00373{transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);}
.me6_c00373{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00373{transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);}
.m9f_c00373{transform:matrix(0.219095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219095,0.000000,0.000000,0.250000,0,0);}
.m87_c00373{transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);}
.m90_c00373{transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);}
.m88_c00373{transform:matrix(0.220035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220035,0.000000,0.000000,0.250000,0,0);}
.m93_c00373{transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);}
.m8c_c00373{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.ma9_c00373{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.220855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220855,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221330,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);}
.mef_c00373{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00373{transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.mab_c00373{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.meb_c00373{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.me3_c00373{transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.mcd_c00373{transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);}
.me5_c00373{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m85_c00373{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.m7f_c00373{transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);}
.m60_c00373{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m64_c00373{transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.237370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237370,0.000000,0.000000,0.250000,0,0);}
.mdf_c00373{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.m7b_c00373{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);}
.ma2_c00373{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.mda_c00373{transform:matrix(0.294695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294695,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);}
.mdb_c00373{transform:matrix(0.337595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337595,0.000000,0.000000,0.250000,0,0);}
.ma0_c00373{transform:matrix(0.462315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462315,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.523135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523135,0.000000,0.000000,0.250000,0,0);}
.ma1_c00373{transform:matrix(0.552210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552210,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:0.000000px;}
.fc0_c00373{color:transparent;}
.fs8_c00373{font-size:55.650000px;}
.fs6_c00373{font-size:56.700000px;}
.fs2_c00373{font-size:57.750000px;}
.fsa_c00373{font-size:58.800000px;}
.fs4_c00373{font-size:59.850000px;}
.fs3_c00373{font-size:60.900000px;}
.fs1_c00373{font-size:61.950000px;}
.fs9_c00373{font-size:63.000000px;}
.fsf_c00373{font-size:64.050000px;}
.fsb_c00373{font-size:66.150000px;}
.fs5_c00373{font-size:67.200000px;}
.fs7_c00373{font-size:68.250000px;}
.fse_c00373{font-size:69.300000px;}
.fsc_c00373{font-size:72.450000px;}
.fsd_c00373{font-size:74.550000px;}
.fs0_c00373{font-size:80.850000px;}
.y0_c00373{bottom:0.000000px;}
.y38_c00373{bottom:25.600500px;}
.y37_c00373{bottom:41.946000px;}
.y2f_c00373{bottom:57.777000px;}
.y30_c00373{bottom:58.231500px;}
.y31_c00373{bottom:58.471500px;}
.y32_c00373{bottom:59.563500px;}
.y33_c00373{bottom:60.889500px;}
.y34_c00373{bottom:61.582500px;}
.y35_c00373{bottom:61.894500px;}
.y36_c00373{bottom:62.469000px;}
.y2e_c00373{bottom:75.375000px;}
.y2d_c00373{bottom:91.978500px;}
.y2c_c00373{bottom:109.101000px;}
.y2b_c00373{bottom:126.406500px;}
.y2a_c00373{bottom:143.292000px;}
.y29_c00373{bottom:159.861000px;}
.y28_c00373{bottom:177.240000px;}
.y27_c00373{bottom:195.402000px;}
.y26_c00373{bottom:212.194500px;}
.y25_c00373{bottom:229.255500px;}
.y24_c00373{bottom:246.165000px;}
.y23_c00373{bottom:262.462500px;}
.y22_c00373{bottom:279.657000px;}
.y21_c00373{bottom:296.535000px;}
.y20_c00373{bottom:313.668000px;}
.y1f_c00373{bottom:330.405000px;}
.y1e_c00373{bottom:348.076500px;}
.y1d_c00373{bottom:364.864500px;}
.y1c_c00373{bottom:381.924000px;}
.y1b_c00373{bottom:398.403000px;}
.y1a_c00373{bottom:415.374000px;}
.y19_c00373{bottom:433.254000px;}
.y18_c00373{bottom:449.574000px;}
.y17_c00373{bottom:466.623000px;}
.y16_c00373{bottom:483.546000px;}
.y15_c00373{bottom:500.436000px;}
.yc_c00373{bottom:515.431500px;}
.yd_c00373{bottom:515.689500px;}
.ye_c00373{bottom:515.865000px;}
.yf_c00373{bottom:516.772500px;}
.y10_c00373{bottom:517.069500px;}
.y11_c00373{bottom:517.330500px;}
.y12_c00373{bottom:517.681500px;}
.y13_c00373{bottom:518.245500px;}
.y14_c00373{bottom:518.560500px;}
.y3_c00373{bottom:532.173000px;}
.y4_c00373{bottom:532.818000px;}
.y5_c00373{bottom:533.074500px;}
.y6_c00373{bottom:533.256000px;}
.y7_c00373{bottom:533.701500px;}
.y8_c00373{bottom:534.132000px;}
.y9_c00373{bottom:534.351000px;}
.ya_c00373{bottom:534.645000px;}
.yb_c00373{bottom:535.168500px;}
.y2_c00373{bottom:551.419500px;}
.y1_c00373{bottom:564.711000px;}
.ha_c00373{height:55.650000px;}
.h8_c00373{height:56.700000px;}
.h4_c00373{height:57.750000px;}
.hc_c00373{height:58.800000px;}
.h6_c00373{height:59.850000px;}
.h5_c00373{height:60.900000px;}
.h3_c00373{height:61.950000px;}
.hb_c00373{height:63.000000px;}
.h11_c00373{height:64.050000px;}
.hd_c00373{height:66.150000px;}
.h7_c00373{height:67.200000px;}
.h9_c00373{height:68.250000px;}
.h10_c00373{height:69.300000px;}
.he_c00373{height:72.450000px;}
.hf_c00373{height:74.550000px;}
.h2_c00373{height:80.850000px;}
.h0_c00373{height:613.170000px;}
.h1_c00373{height:613.500000px;}
.w0_c00373{width:359.100000px;}
.w1_c00373{width:359.250000px;}
.x0_c00373{left:0.000000px;}
.xb_c00373{left:42.123000px;}
.x60_c00373{left:43.468500px;}
.x2_c00373{left:50.760000px;}
.x47_c00373{left:60.208500px;}
.x1f_c00373{left:62.638500px;}
.x61_c00373{left:63.718500px;}
.x13_c00373{left:64.890000px;}
.x38_c00373{left:67.768500px;}
.x3_c00373{left:69.930000px;}
.x62_c00373{left:75.328500px;}
.x4d_c00373{left:76.408500px;}
.x14_c00373{left:80.880000px;}
.x50_c00373{left:83.158500px;}
.x27_c00373{left:84.508500px;}
.x4_c00373{left:85.590000px;}
.x6e_c00373{left:90.448500px;}
.x1a_c00373{left:91.798500px;}
.x39_c00373{left:93.958500px;}
.x5a_c00373{left:95.848500px;}
.x48_c00373{left:98.548500px;}
.xc_c00373{left:100.812000px;}
.x36_c00373{left:109.348500px;}
.x54_c00373{left:110.428500px;}
.x2e_c00373{left:112.588500px;}
.x63_c00373{left:113.668500px;}
.x5b_c00373{left:115.558500px;}
.x23_c00373{left:117.178500px;}
.x41_c00373{left:118.258500px;}
.x3a_c00373{left:119.878500px;}
.x51_c00373{left:121.228500px;}
.x6c_c00373{left:122.308500px;}
.xd_c00373{left:124.080000px;}
.x46_c00373{left:126.088500px;}
.x68_c00373{left:128.248500px;}
.x42_c00373{left:131.758500px;}
.x30_c00373{left:135.538500px;}
.x28_c00373{left:137.698500px;}
.x20_c00373{left:139.048500px;}
.xe_c00373{left:140.518500px;}
.x3e_c00373{left:142.558500px;}
.x6f_c00373{left:147.418500px;}
.x64_c00373{left:150.928500px;}
.x3b_c00373{left:152.278500px;}
.x1b_c00373{left:154.168500px;}
.x29_c00373{left:155.518500px;}
.x57_c00373{left:157.408500px;}
.x5_c00373{left:163.890000px;}
.x6a_c00373{left:165.508500px;}
.x70_c00373{left:167.398500px;}
.x5c_c00373{left:169.558500px;}
.x31_c00373{left:171.718500px;}
.x1_c00373{left:174.150000px;}
.x49_c00373{left:175.768500px;}
.x2a_c00373{left:179.008500px;}
.x6_c00373{left:181.710000px;}
.x1c_c00373{left:183.058500px;}
.x43_c00373{left:184.678500px;}
.x2f_c00373{left:186.028500px;}
.x21_c00373{left:187.378500px;}
.x15_c00373{left:190.492500px;}
.x4a_c00373{left:192.778500px;}
.x24_c00373{left:195.208500px;}
.x74_c00373{left:197.100000px;}
.x3f_c00373{left:199.798500px;}
.x52_c00373{left:201.418500px;}
.x69_c00373{left:202.498500px;}
.x44_c00373{left:204.118500px;}
.x4e_c00373{left:209.518500px;}
.x5d_c00373{left:210.598500px;}
.x16_c00373{left:214.246500px;}
.x67_c00373{left:216.538500px;}
.xf_c00373{left:220.192500px;}
.x55_c00373{left:222.208500px;}
.x32_c00373{left:223.558500px;}
.x71_c00373{left:225.063000px;}
.x7_c00373{left:226.260000px;}
.x2b_c00373{left:229.228500px;}
.x5e_c00373{left:230.308500px;}
.x4f_c00373{left:232.468500px;}
.x33_c00373{left:237.058500px;}
.x10_c00373{left:240.117000px;}
.x8_c00373{left:244.350000px;}
.x17_c00373{left:246.105000px;}
.x22_c00373{left:254.068500px;}
.x40_c00373{left:255.958500px;}
.x34_c00373{left:257.848500px;}
.x53_c00373{left:260.278500px;}
.x6b_c00373{left:261.628500px;}
.x3c_c00373{left:262.708500px;}
.x72_c00373{left:265.825500px;}
.x11_c00373{left:266.896500px;}
.x5f_c00373{left:271.618500px;}
.x58_c00373{left:274.048500px;}
.x45_c00373{left:275.398500px;}
.x1d_c00373{left:279.178500px;}
.x2c_c00373{left:280.528500px;}
.x73_c00373{left:284.152500px;}
.x4b_c00373{left:285.388500px;}
.x25_c00373{left:287.278500px;}
.x65_c00373{left:288.898500px;}
.x1e_c00373{left:294.028500px;}
.x18_c00373{left:297.348000px;}
.x9_c00373{left:298.620000px;}
.x59_c00373{left:301.318500px;}
.x66_c00373{left:308.608500px;}
.x56_c00373{left:310.498500px;}
.x4c_c00373{left:312.118500px;}
.x12_c00373{left:314.431500px;}
.x35_c00373{left:317.248500px;}
.x6d_c00373{left:320.488500px;}
.xa_c00373{left:322.920000px;}
.x2d_c00373{left:324.808500px;}
.x19_c00373{left:326.032500px;}
.x37_c00373{left:342.358500px;}
.x26_c00373{left:343.438500px;}
.x3d_c00373{left:345.058500px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fs8_c00373{font-size:49.466667pt;}
.fs6_c00373{font-size:50.400000pt;}
.fs2_c00373{font-size:51.333333pt;}
.fsa_c00373{font-size:52.266667pt;}
.fs4_c00373{font-size:53.200000pt;}
.fs3_c00373{font-size:54.133333pt;}
.fs1_c00373{font-size:55.066667pt;}
.fs9_c00373{font-size:56.000000pt;}
.fsf_c00373{font-size:56.933333pt;}
.fsb_c00373{font-size:58.800000pt;}
.fs5_c00373{font-size:59.733333pt;}
.fs7_c00373{font-size:60.666667pt;}
.fse_c00373{font-size:61.600000pt;}
.fsc_c00373{font-size:64.400000pt;}
.fsd_c00373{font-size:66.266667pt;}
.fs0_c00373{font-size:71.866667pt;}
.y0_c00373{bottom:0.000000pt;}
.y38_c00373{bottom:22.756000pt;}
.y37_c00373{bottom:37.285333pt;}
.y2f_c00373{bottom:51.357333pt;}
.y30_c00373{bottom:51.761333pt;}
.y31_c00373{bottom:51.974667pt;}
.y32_c00373{bottom:52.945333pt;}
.y33_c00373{bottom:54.124000pt;}
.y34_c00373{bottom:54.740000pt;}
.y35_c00373{bottom:55.017333pt;}
.y36_c00373{bottom:55.528000pt;}
.y2e_c00373{bottom:67.000000pt;}
.y2d_c00373{bottom:81.758667pt;}
.y2c_c00373{bottom:96.978667pt;}
.y2b_c00373{bottom:112.361333pt;}
.y2a_c00373{bottom:127.370667pt;}
.y29_c00373{bottom:142.098667pt;}
.y28_c00373{bottom:157.546667pt;}
.y27_c00373{bottom:173.690667pt;}
.y26_c00373{bottom:188.617333pt;}
.y25_c00373{bottom:203.782667pt;}
.y24_c00373{bottom:218.813333pt;}
.y23_c00373{bottom:233.300000pt;}
.y22_c00373{bottom:248.584000pt;}
.y21_c00373{bottom:263.586667pt;}
.y20_c00373{bottom:278.816000pt;}
.y1f_c00373{bottom:293.693333pt;}
.y1e_c00373{bottom:309.401333pt;}
.y1d_c00373{bottom:324.324000pt;}
.y1c_c00373{bottom:339.488000pt;}
.y1b_c00373{bottom:354.136000pt;}
.y1a_c00373{bottom:369.221333pt;}
.y19_c00373{bottom:385.114667pt;}
.y18_c00373{bottom:399.621333pt;}
.y17_c00373{bottom:414.776000pt;}
.y16_c00373{bottom:429.818667pt;}
.y15_c00373{bottom:444.832000pt;}
.yc_c00373{bottom:458.161333pt;}
.yd_c00373{bottom:458.390667pt;}
.ye_c00373{bottom:458.546667pt;}
.yf_c00373{bottom:459.353333pt;}
.y10_c00373{bottom:459.617333pt;}
.y11_c00373{bottom:459.849333pt;}
.y12_c00373{bottom:460.161333pt;}
.y13_c00373{bottom:460.662667pt;}
.y14_c00373{bottom:460.942667pt;}
.y3_c00373{bottom:473.042667pt;}
.y4_c00373{bottom:473.616000pt;}
.y5_c00373{bottom:473.844000pt;}
.y6_c00373{bottom:474.005333pt;}
.y7_c00373{bottom:474.401333pt;}
.y8_c00373{bottom:474.784000pt;}
.y9_c00373{bottom:474.978667pt;}
.ya_c00373{bottom:475.240000pt;}
.yb_c00373{bottom:475.705333pt;}
.y2_c00373{bottom:490.150667pt;}
.y1_c00373{bottom:501.965333pt;}
.ha_c00373{height:49.466667pt;}
.h8_c00373{height:50.400000pt;}
.h4_c00373{height:51.333333pt;}
.hc_c00373{height:52.266667pt;}
.h6_c00373{height:53.200000pt;}
.h5_c00373{height:54.133333pt;}
.h3_c00373{height:55.066667pt;}
.hb_c00373{height:56.000000pt;}
.h11_c00373{height:56.933333pt;}
.hd_c00373{height:58.800000pt;}
.h7_c00373{height:59.733333pt;}
.h9_c00373{height:60.666667pt;}
.h10_c00373{height:61.600000pt;}
.he_c00373{height:64.400000pt;}
.hf_c00373{height:66.266667pt;}
.h2_c00373{height:71.866667pt;}
.h0_c00373{height:545.040000pt;}
.h1_c00373{height:545.333333pt;}
.w0_c00373{width:319.200000pt;}
.w1_c00373{width:319.333333pt;}
.x0_c00373{left:0.000000pt;}
.xb_c00373{left:37.442667pt;}
.x60_c00373{left:38.638667pt;}
.x2_c00373{left:45.120000pt;}
.x47_c00373{left:53.518667pt;}
.x1f_c00373{left:55.678667pt;}
.x61_c00373{left:56.638667pt;}
.x13_c00373{left:57.680000pt;}
.x38_c00373{left:60.238667pt;}
.x3_c00373{left:62.160000pt;}
.x62_c00373{left:66.958667pt;}
.x4d_c00373{left:67.918667pt;}
.x14_c00373{left:71.893333pt;}
.x50_c00373{left:73.918667pt;}
.x27_c00373{left:75.118667pt;}
.x4_c00373{left:76.080000pt;}
.x6e_c00373{left:80.398667pt;}
.x1a_c00373{left:81.598667pt;}
.x39_c00373{left:83.518667pt;}
.x5a_c00373{left:85.198667pt;}
.x48_c00373{left:87.598667pt;}
.xc_c00373{left:89.610667pt;}
.x36_c00373{left:97.198667pt;}
.x54_c00373{left:98.158667pt;}
.x2e_c00373{left:100.078667pt;}
.x63_c00373{left:101.038667pt;}
.x5b_c00373{left:102.718667pt;}
.x23_c00373{left:104.158667pt;}
.x41_c00373{left:105.118667pt;}
.x3a_c00373{left:106.558667pt;}
.x51_c00373{left:107.758667pt;}
.x6c_c00373{left:108.718667pt;}
.xd_c00373{left:110.293333pt;}
.x46_c00373{left:112.078667pt;}
.x68_c00373{left:113.998667pt;}
.x42_c00373{left:117.118667pt;}
.x30_c00373{left:120.478667pt;}
.x28_c00373{left:122.398667pt;}
.x20_c00373{left:123.598667pt;}
.xe_c00373{left:124.905333pt;}
.x3e_c00373{left:126.718667pt;}
.x6f_c00373{left:131.038667pt;}
.x64_c00373{left:134.158667pt;}
.x3b_c00373{left:135.358667pt;}
.x1b_c00373{left:137.038667pt;}
.x29_c00373{left:138.238667pt;}
.x57_c00373{left:139.918667pt;}
.x5_c00373{left:145.680000pt;}
.x6a_c00373{left:147.118667pt;}
.x70_c00373{left:148.798667pt;}
.x5c_c00373{left:150.718667pt;}
.x31_c00373{left:152.638667pt;}
.x1_c00373{left:154.800000pt;}
.x49_c00373{left:156.238667pt;}
.x2a_c00373{left:159.118667pt;}
.x6_c00373{left:161.520000pt;}
.x1c_c00373{left:162.718667pt;}
.x43_c00373{left:164.158667pt;}
.x2f_c00373{left:165.358667pt;}
.x21_c00373{left:166.558667pt;}
.x15_c00373{left:169.326667pt;}
.x4a_c00373{left:171.358667pt;}
.x24_c00373{left:173.518667pt;}
.x74_c00373{left:175.200000pt;}
.x3f_c00373{left:177.598667pt;}
.x52_c00373{left:179.038667pt;}
.x69_c00373{left:179.998667pt;}
.x44_c00373{left:181.438667pt;}
.x4e_c00373{left:186.238667pt;}
.x5d_c00373{left:187.198667pt;}
.x16_c00373{left:190.441333pt;}
.x67_c00373{left:192.478667pt;}
.xf_c00373{left:195.726667pt;}
.x55_c00373{left:197.518667pt;}
.x32_c00373{left:198.718667pt;}
.x71_c00373{left:200.056000pt;}
.x7_c00373{left:201.120000pt;}
.x2b_c00373{left:203.758667pt;}
.x5e_c00373{left:204.718667pt;}
.x4f_c00373{left:206.638667pt;}
.x33_c00373{left:210.718667pt;}
.x10_c00373{left:213.437333pt;}
.x8_c00373{left:217.200000pt;}
.x17_c00373{left:218.760000pt;}
.x22_c00373{left:225.838667pt;}
.x40_c00373{left:227.518667pt;}
.x34_c00373{left:229.198667pt;}
.x53_c00373{left:231.358667pt;}
.x6b_c00373{left:232.558667pt;}
.x3c_c00373{left:233.518667pt;}
.x72_c00373{left:236.289333pt;}
.x11_c00373{left:237.241333pt;}
.x5f_c00373{left:241.438667pt;}
.x58_c00373{left:243.598667pt;}
.x45_c00373{left:244.798667pt;}
.x1d_c00373{left:248.158667pt;}
.x2c_c00373{left:249.358667pt;}
.x73_c00373{left:252.580000pt;}
.x4b_c00373{left:253.678667pt;}
.x25_c00373{left:255.358667pt;}
.x65_c00373{left:256.798667pt;}
.x1e_c00373{left:261.358667pt;}
.x18_c00373{left:264.309333pt;}
.x9_c00373{left:265.440000pt;}
.x59_c00373{left:267.838667pt;}
.x66_c00373{left:274.318667pt;}
.x56_c00373{left:275.998667pt;}
.x4c_c00373{left:277.438667pt;}
.x12_c00373{left:279.494667pt;}
.x35_c00373{left:281.998667pt;}
.x6d_c00373{left:284.878667pt;}
.xa_c00373{left:287.040000pt;}
.x2d_c00373{left:288.718667pt;}
.x19_c00373{left:289.806667pt;}
.x37_c00373{left:304.318667pt;}
.x26_c00373{left:305.278667pt;}
.x3d_c00373{left:306.718667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00374 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00374 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00374 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00374 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00374.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00374{transform:matrix(0.047094,-0.000754,0.003999,0.249968,0,0);-ms-transform:matrix(0.047094,-0.000754,0.003999,0.249968,0,0);-webkit-transform:matrix(0.047094,-0.000754,0.003999,0.249968,0,0);}
.m1_c00374{transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);}
.ma8_c00374{transform:matrix(0.125309,-0.002005,0.003999,0.249968,0,0);-ms-transform:matrix(0.125309,-0.002005,0.003999,0.249968,0,0);-webkit-transform:matrix(0.125309,-0.002005,0.003999,0.249968,0,0);}
.m0_c00374{transform:matrix(0.125765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125765,0.000000,0.000000,0.250000,0,0);}
.mf0_c00374{transform:matrix(0.140687,-0.002251,0.003999,0.249968,0,0);-ms-transform:matrix(0.140687,-0.002251,0.003999,0.249968,0,0);-webkit-transform:matrix(0.140687,-0.002251,0.003999,0.249968,0,0);}
.mf2_c00374{transform:matrix(0.146101,-0.002338,0.003999,0.249968,0,0);-ms-transform:matrix(0.146101,-0.002338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146101,-0.002338,0.003999,0.249968,0,0);}
.med_c00374{transform:matrix(0.149201,-0.002387,0.003999,0.249968,0,0);-ms-transform:matrix(0.149201,-0.002387,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149201,-0.002387,0.003999,0.249968,0,0);}
.m90_c00374{transform:matrix(0.150536,-0.002409,0.003999,0.249968,0,0);-ms-transform:matrix(0.150536,-0.002409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150536,-0.002409,0.003999,0.249968,0,0);}
.m6_c00374{transform:matrix(0.150811,-0.002413,0.003999,0.249968,0,0);-ms-transform:matrix(0.150811,-0.002413,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150811,-0.002413,0.003999,0.249968,0,0);}
.m34_c00374{transform:matrix(0.152510,-0.002440,0.003999,0.249968,0,0);-ms-transform:matrix(0.152510,-0.002440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152510,-0.002440,0.003999,0.249968,0,0);}
.mcd_c00374{transform:matrix(0.154975,-0.002480,0.003999,0.249968,0,0);-ms-transform:matrix(0.154975,-0.002480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154975,-0.002480,0.003999,0.249968,0,0);}
.mc9_c00374{transform:matrix(0.156310,-0.002501,0.003999,0.249968,0,0);-ms-transform:matrix(0.156310,-0.002501,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156310,-0.002501,0.003999,0.249968,0,0);}
.ma7_c00374{transform:matrix(0.157235,-0.002516,0.003999,0.249968,0,0);-ms-transform:matrix(0.157235,-0.002516,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157235,-0.002516,0.003999,0.249968,0,0);}
.mcc_c00374{transform:matrix(0.157490,-0.002520,0.003999,0.249968,0,0);-ms-transform:matrix(0.157490,-0.002520,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157490,-0.002520,0.003999,0.249968,0,0);}
.m48_c00374{transform:matrix(0.158390,-0.002534,0.003999,0.249968,0,0);-ms-transform:matrix(0.158390,-0.002534,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158390,-0.002534,0.003999,0.249968,0,0);}
.m7_c00374{transform:matrix(0.159175,-0.002547,0.003999,0.249968,0,0);-ms-transform:matrix(0.159175,-0.002547,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159175,-0.002547,0.003999,0.249968,0,0);}
.md1_c00374{transform:matrix(0.159800,-0.002557,0.003999,0.249968,0,0);-ms-transform:matrix(0.159800,-0.002557,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159800,-0.002557,0.003999,0.249968,0,0);}
.mc4_c00374{transform:matrix(0.162104,-0.002594,0.003999,0.249968,0,0);-ms-transform:matrix(0.162104,-0.002594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162104,-0.002594,0.003999,0.249968,0,0);}
.m8e_c00374{transform:matrix(0.162419,-0.002599,0.003999,0.249968,0,0);-ms-transform:matrix(0.162419,-0.002599,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162419,-0.002599,0.003999,0.249968,0,0);}
.m2d_c00374{transform:matrix(0.162474,-0.002600,0.003999,0.249968,0,0);-ms-transform:matrix(0.162474,-0.002600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162474,-0.002600,0.003999,0.249968,0,0);}
.mcf_c00374{transform:matrix(0.162654,-0.002602,0.003999,0.249968,0,0);-ms-transform:matrix(0.162654,-0.002602,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162654,-0.002602,0.003999,0.249968,0,0);}
.m49_c00374{transform:matrix(0.163709,-0.002619,0.003999,0.249968,0,0);-ms-transform:matrix(0.163709,-0.002619,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163709,-0.002619,0.003999,0.249968,0,0);}
.m95_c00374{transform:matrix(0.163844,-0.002622,0.003999,0.249968,0,0);-ms-transform:matrix(0.163844,-0.002622,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163844,-0.002622,0.003999,0.249968,0,0);}
.m18_c00374{transform:matrix(0.164374,-0.002630,0.003999,0.249968,0,0);-ms-transform:matrix(0.164374,-0.002630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164374,-0.002630,0.003999,0.249968,0,0);}
.m3d_c00374{transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);-ms-transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164469,-0.002632,0.003999,0.249968,0,0);}
.mba_c00374{transform:matrix(0.164854,-0.002638,0.003999,0.249968,0,0);-ms-transform:matrix(0.164854,-0.002638,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164854,-0.002638,0.003999,0.249968,0,0);}
.ma3_c00374{transform:matrix(0.165119,-0.002642,0.003999,0.249968,0,0);-ms-transform:matrix(0.165119,-0.002642,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165119,-0.002642,0.003999,0.249968,0,0);}
.mda_c00374{transform:matrix(0.165124,-0.002642,0.003999,0.249968,0,0);-ms-transform:matrix(0.165124,-0.002642,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165124,-0.002642,0.003999,0.249968,0,0);}
.mc_c00374{transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166219,-0.002659,0.003999,0.249968,0,0);}
.m93_c00374{transform:matrix(0.166934,-0.002671,0.003999,0.249968,0,0);-ms-transform:matrix(0.166934,-0.002671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166934,-0.002671,0.003999,0.249968,0,0);}
.m86_c00374{transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);-ms-transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167329,-0.002677,0.003999,0.249968,0,0);}
.m4c_c00374{transform:matrix(0.168258,-0.002692,0.003999,0.249968,0,0);-ms-transform:matrix(0.168258,-0.002692,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168258,-0.002692,0.003999,0.249968,0,0);}
.mc6_c00374{transform:matrix(0.169913,-0.002719,0.003999,0.249968,0,0);-ms-transform:matrix(0.169913,-0.002719,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169913,-0.002719,0.003999,0.249968,0,0);}
.me_c00374{transform:matrix(0.170053,-0.002721,0.003999,0.249968,0,0);-ms-transform:matrix(0.170053,-0.002721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170053,-0.002721,0.003999,0.249968,0,0);}
.m2e_c00374{transform:matrix(0.170178,-0.002723,0.003999,0.249968,0,0);-ms-transform:matrix(0.170178,-0.002723,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170178,-0.002723,0.003999,0.249968,0,0);}
.m50_c00374{transform:matrix(0.170453,-0.002727,0.003999,0.249968,0,0);-ms-transform:matrix(0.170453,-0.002727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170453,-0.002727,0.003999,0.249968,0,0);}
.ma4_c00374{transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);-ms-transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);}
.m78_c00374{transform:matrix(0.171033,-0.002737,0.003999,0.249968,0,0);-ms-transform:matrix(0.171033,-0.002737,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171033,-0.002737,0.003999,0.249968,0,0);}
.md_c00374{transform:matrix(0.171193,-0.002739,0.003999,0.249968,0,0);-ms-transform:matrix(0.171193,-0.002739,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171193,-0.002739,0.003999,0.249968,0,0);}
.me5_c00374{transform:matrix(0.171578,-0.002745,0.003999,0.249968,0,0);-ms-transform:matrix(0.171578,-0.002745,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171578,-0.002745,0.003999,0.249968,0,0);}
.mc7_c00374{transform:matrix(0.171963,-0.002751,0.003999,0.249968,0,0);-ms-transform:matrix(0.171963,-0.002751,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171963,-0.002751,0.003999,0.249968,0,0);}
.mf5_c00374{transform:matrix(0.171983,-0.002752,0.003999,0.249968,0,0);-ms-transform:matrix(0.171983,-0.002752,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171983,-0.002752,0.003999,0.249968,0,0);}
.me1_c00374{transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172593,-0.002761,0.003999,0.249968,0,0);}
.md0_c00374{transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172778,-0.002764,0.003999,0.249968,0,0);}
.m6f_c00374{transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);-ms-transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);}
.me6_c00374{transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);-ms-transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172998,-0.002768,0.003999,0.249968,0,0);}
.m31_c00374{transform:matrix(0.173093,-0.002769,0.003999,0.249968,0,0);-ms-transform:matrix(0.173093,-0.002769,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173093,-0.002769,0.003999,0.249968,0,0);}
.mf1_c00374{transform:matrix(0.173383,-0.002774,0.003999,0.249968,0,0);-ms-transform:matrix(0.173383,-0.002774,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173383,-0.002774,0.003999,0.249968,0,0);}
.m71_c00374{transform:matrix(0.173528,-0.002776,0.003999,0.249968,0,0);-ms-transform:matrix(0.173528,-0.002776,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173528,-0.002776,0.003999,0.249968,0,0);}
.mee_c00374{transform:matrix(0.173643,-0.002778,0.003999,0.249968,0,0);-ms-transform:matrix(0.173643,-0.002778,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173643,-0.002778,0.003999,0.249968,0,0);}
.m65_c00374{transform:matrix(0.174233,-0.002788,0.003999,0.249968,0,0);-ms-transform:matrix(0.174233,-0.002788,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174233,-0.002788,0.003999,0.249968,0,0);}
.m6b_c00374{transform:matrix(0.174628,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174628,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174628,-0.002794,0.003999,0.249968,0,0);}
.m36_c00374{transform:matrix(0.174723,-0.002796,0.003999,0.249968,0,0);-ms-transform:matrix(0.174723,-0.002796,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174723,-0.002796,0.003999,0.249968,0,0);}
.mef_c00374{transform:matrix(0.174958,-0.002799,0.003999,0.249968,0,0);-ms-transform:matrix(0.174958,-0.002799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174958,-0.002799,0.003999,0.249968,0,0);}
.mca_c00374{transform:matrix(0.174968,-0.002799,0.003999,0.249968,0,0);-ms-transform:matrix(0.174968,-0.002799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174968,-0.002799,0.003999,0.249968,0,0);}
.ma1_c00374{transform:matrix(0.175118,-0.002802,0.003999,0.249968,0,0);-ms-transform:matrix(0.175118,-0.002802,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175118,-0.002802,0.003999,0.249968,0,0);}
.md8_c00374{transform:matrix(0.176032,-0.002817,0.003999,0.249968,0,0);-ms-transform:matrix(0.176032,-0.002817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176032,-0.002817,0.003999,0.249968,0,0);}
.m9_c00374{transform:matrix(0.176257,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176257,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176257,-0.002820,0.003999,0.249968,0,0);}
.m33_c00374{transform:matrix(0.176437,-0.002823,0.003999,0.249968,0,0);-ms-transform:matrix(0.176437,-0.002823,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176437,-0.002823,0.003999,0.249968,0,0);}
.m51_c00374{transform:matrix(0.176502,-0.002824,0.003999,0.249968,0,0);-ms-transform:matrix(0.176502,-0.002824,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176502,-0.002824,0.003999,0.249968,0,0);}
.me9_c00374{transform:matrix(0.176777,-0.002828,0.003999,0.249968,0,0);-ms-transform:matrix(0.176777,-0.002828,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176777,-0.002828,0.003999,0.249968,0,0);}
.m8c_c00374{transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-ms-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);}
.m32_c00374{transform:matrix(0.177362,-0.002838,0.003999,0.249968,0,0);-ms-transform:matrix(0.177362,-0.002838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177362,-0.002838,0.003999,0.249968,0,0);}
.m94_c00374{transform:matrix(0.177412,-0.002839,0.003999,0.249968,0,0);-ms-transform:matrix(0.177412,-0.002839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177412,-0.002839,0.003999,0.249968,0,0);}
.m4_c00374{transform:matrix(0.177692,-0.002843,0.003999,0.249968,0,0);-ms-transform:matrix(0.177692,-0.002843,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177692,-0.002843,0.003999,0.249968,0,0);}
.mf4_c00374{transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);-ms-transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178417,-0.002855,0.003999,0.249968,0,0);}
.m15_c00374{transform:matrix(0.178972,-0.002864,0.003999,0.249968,0,0);-ms-transform:matrix(0.178972,-0.002864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178972,-0.002864,0.003999,0.249968,0,0);}
.m38_c00374{transform:matrix(0.179492,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179492,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179492,-0.002872,0.003999,0.249968,0,0);}
.mc8_c00374{transform:matrix(0.179517,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179517,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179517,-0.002872,0.003999,0.249968,0,0);}
.m4b_c00374{transform:matrix(0.179582,-0.002873,0.003999,0.249968,0,0);-ms-transform:matrix(0.179582,-0.002873,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179582,-0.002873,0.003999,0.249968,0,0);}
.m2f_c00374{transform:matrix(0.179812,-0.002877,0.003999,0.249968,0,0);-ms-transform:matrix(0.179812,-0.002877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179812,-0.002877,0.003999,0.249968,0,0);}
.mb6_c00374{transform:matrix(0.179907,-0.002879,0.003999,0.249968,0,0);-ms-transform:matrix(0.179907,-0.002879,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179907,-0.002879,0.003999,0.249968,0,0);}
.m3e_c00374{transform:matrix(0.180182,-0.002883,0.003999,0.249968,0,0);-ms-transform:matrix(0.180182,-0.002883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180182,-0.002883,0.003999,0.249968,0,0);}
.m5_c00374{transform:matrix(0.180432,-0.002887,0.003999,0.249968,0,0);-ms-transform:matrix(0.180432,-0.002887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180432,-0.002887,0.003999,0.249968,0,0);}
.mad_c00374{transform:matrix(0.180652,-0.002890,0.003999,0.249968,0,0);-ms-transform:matrix(0.180652,-0.002890,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180652,-0.002890,0.003999,0.249968,0,0);}
.m74_c00374{transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);-ms-transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181052,-0.002897,0.003999,0.249968,0,0);}
.m67_c00374{transform:matrix(0.181442,-0.002903,0.003999,0.249968,0,0);-ms-transform:matrix(0.181442,-0.002903,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181442,-0.002903,0.003999,0.249968,0,0);}
.m3_c00374{transform:matrix(0.181582,-0.002905,0.003999,0.249968,0,0);-ms-transform:matrix(0.181582,-0.002905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181582,-0.002905,0.003999,0.249968,0,0);}
.mbe_c00374{transform:matrix(0.182197,-0.002915,0.003999,0.249968,0,0);-ms-transform:matrix(0.182197,-0.002915,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182197,-0.002915,0.003999,0.249968,0,0);}
.m29_c00374{transform:matrix(0.182392,-0.002918,0.003999,0.249968,0,0);-ms-transform:matrix(0.182392,-0.002918,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182392,-0.002918,0.003999,0.249968,0,0);}
.m6a_c00374{transform:matrix(0.182727,-0.002924,0.003999,0.249968,0,0);-ms-transform:matrix(0.182727,-0.002924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182727,-0.002924,0.003999,0.249968,0,0);}
.m9d_c00374{transform:matrix(0.182892,-0.002926,0.003999,0.249968,0,0);-ms-transform:matrix(0.182892,-0.002926,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182892,-0.002926,0.003999,0.249968,0,0);}
.m55_c00374{transform:matrix(0.183287,-0.002933,0.003999,0.249968,0,0);-ms-transform:matrix(0.183287,-0.002933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183287,-0.002933,0.003999,0.249968,0,0);}
.m45_c00374{transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);-ms-transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183701,-0.002939,0.003999,0.249968,0,0);}
.me7_c00374{transform:matrix(0.183981,-0.002944,0.003999,0.249968,0,0);-ms-transform:matrix(0.183981,-0.002944,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183981,-0.002944,0.003999,0.249968,0,0);}
.m7e_c00374{transform:matrix(0.184136,-0.002946,0.003999,0.249968,0,0);-ms-transform:matrix(0.184136,-0.002946,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184136,-0.002946,0.003999,0.249968,0,0);}
.mb2_c00374{transform:matrix(0.184171,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184171,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184171,-0.002947,0.003999,0.249968,0,0);}
.m20_c00374{transform:matrix(0.184236,-0.002948,0.003999,0.249968,0,0);-ms-transform:matrix(0.184236,-0.002948,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184236,-0.002948,0.003999,0.249968,0,0);}
.m99_c00374{transform:matrix(0.184536,-0.002953,0.003999,0.249968,0,0);-ms-transform:matrix(0.184536,-0.002953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184536,-0.002953,0.003999,0.249968,0,0);}
.ma5_c00374{transform:matrix(0.185061,-0.002961,0.003999,0.249968,0,0);-ms-transform:matrix(0.185061,-0.002961,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185061,-0.002961,0.003999,0.249968,0,0);}
.maa_c00374{transform:matrix(0.185131,-0.002962,0.003999,0.249968,0,0);-ms-transform:matrix(0.185131,-0.002962,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185131,-0.002962,0.003999,0.249968,0,0);}
.m59_c00374{transform:matrix(0.185301,-0.002965,0.003999,0.249968,0,0);-ms-transform:matrix(0.185301,-0.002965,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185301,-0.002965,0.003999,0.249968,0,0);}
.m5d_c00374{transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);-ms-transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185591,-0.002969,0.003999,0.249968,0,0);}
.m39_c00374{transform:matrix(0.186166,-0.002979,0.003999,0.249968,0,0);-ms-transform:matrix(0.186166,-0.002979,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186166,-0.002979,0.003999,0.249968,0,0);}
.meb_c00374{transform:matrix(0.186681,-0.002987,0.003999,0.249968,0,0);-ms-transform:matrix(0.186681,-0.002987,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186681,-0.002987,0.003999,0.249968,0,0);}
.mf3_c00374{transform:matrix(0.187326,-0.002997,0.003999,0.249968,0,0);-ms-transform:matrix(0.187326,-0.002997,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187326,-0.002997,0.003999,0.249968,0,0);}
.mae_c00374{transform:matrix(0.187446,-0.002999,0.003999,0.249968,0,0);-ms-transform:matrix(0.187446,-0.002999,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187446,-0.002999,0.003999,0.249968,0,0);}
.m24_c00374{transform:matrix(0.187601,-0.003002,0.003999,0.249968,0,0);-ms-transform:matrix(0.187601,-0.003002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187601,-0.003002,0.003999,0.249968,0,0);}
.mb5_c00374{transform:matrix(0.188031,-0.003008,0.003999,0.249968,0,0);-ms-transform:matrix(0.188031,-0.003008,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188031,-0.003008,0.003999,0.249968,0,0);}
.ma0_c00374{transform:matrix(0.188041,-0.003009,0.003999,0.249968,0,0);-ms-transform:matrix(0.188041,-0.003009,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188041,-0.003009,0.003999,0.249968,0,0);}
.m8f_c00374{transform:matrix(0.188056,-0.003009,0.003999,0.249968,0,0);-ms-transform:matrix(0.188056,-0.003009,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188056,-0.003009,0.003999,0.249968,0,0);}
.m21_c00374{transform:matrix(0.188136,-0.003010,0.003999,0.249968,0,0);-ms-transform:matrix(0.188136,-0.003010,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188136,-0.003010,0.003999,0.249968,0,0);}
.mc1_c00374{transform:matrix(0.188866,-0.003022,0.003999,0.249968,0,0);-ms-transform:matrix(0.188866,-0.003022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188866,-0.003022,0.003999,0.249968,0,0);}
.mb0_c00374{transform:matrix(0.189001,-0.003024,0.003999,0.249968,0,0);-ms-transform:matrix(0.189001,-0.003024,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189001,-0.003024,0.003999,0.249968,0,0);}
.m11_c00374{transform:matrix(0.189076,-0.003025,0.003999,0.249968,0,0);-ms-transform:matrix(0.189076,-0.003025,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189076,-0.003025,0.003999,0.249968,0,0);}
.mdb_c00374{transform:matrix(0.189211,-0.003027,0.003999,0.249968,0,0);-ms-transform:matrix(0.189211,-0.003027,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189211,-0.003027,0.003999,0.249968,0,0);}
.m76_c00374{transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);-ms-transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189546,-0.003033,0.003999,0.249968,0,0);}
.m57_c00374{transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);-ms-transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189666,-0.003035,0.003999,0.249968,0,0);}
.mb_c00374{transform:matrix(0.189751,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189751,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189751,-0.003036,0.003999,0.249968,0,0);}
.m37_c00374{transform:matrix(0.189766,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189766,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189766,-0.003036,0.003999,0.249968,0,0);}
.m91_c00374{transform:matrix(0.189871,-0.003038,0.003999,0.249968,0,0);-ms-transform:matrix(0.189871,-0.003038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189871,-0.003038,0.003999,0.249968,0,0);}
.m26_c00374{transform:matrix(0.190121,-0.003042,0.003999,0.249968,0,0);-ms-transform:matrix(0.190121,-0.003042,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190121,-0.003042,0.003999,0.249968,0,0);}
.m62_c00374{transform:matrix(0.190766,-0.003052,0.003999,0.249968,0,0);-ms-transform:matrix(0.190766,-0.003052,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190766,-0.003052,0.003999,0.249968,0,0);}
.m79_c00374{transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-ms-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);}
.mce_c00374{transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);}
.m9e_c00374{transform:matrix(0.191116,-0.003058,0.003999,0.249968,0,0);-ms-transform:matrix(0.191116,-0.003058,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191116,-0.003058,0.003999,0.249968,0,0);}
.m53_c00374{transform:matrix(0.191166,-0.003059,0.003999,0.249968,0,0);-ms-transform:matrix(0.191166,-0.003059,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191166,-0.003059,0.003999,0.249968,0,0);}
.m2a_c00374{transform:matrix(0.192345,-0.003078,0.003999,0.249968,0,0);-ms-transform:matrix(0.192345,-0.003078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192345,-0.003078,0.003999,0.249968,0,0);}
.m22_c00374{transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);-ms-transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);}
.m1e_c00374{transform:matrix(0.193010,-0.003088,0.003999,0.249968,0,0);-ms-transform:matrix(0.193010,-0.003088,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193010,-0.003088,0.003999,0.249968,0,0);}
.m27_c00374{transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);-ms-transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193500,-0.003096,0.003999,0.249968,0,0);}
.mbc_c00374{transform:matrix(0.193560,-0.003097,0.003999,0.249968,0,0);-ms-transform:matrix(0.193560,-0.003097,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193560,-0.003097,0.003999,0.249968,0,0);}
.m12_c00374{transform:matrix(0.193815,-0.003101,0.003999,0.249968,0,0);-ms-transform:matrix(0.193815,-0.003101,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193815,-0.003101,0.003999,0.249968,0,0);}
.md6_c00374{transform:matrix(0.193990,-0.003104,0.003999,0.249968,0,0);-ms-transform:matrix(0.193990,-0.003104,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193990,-0.003104,0.003999,0.249968,0,0);}
.m1d_c00374{transform:matrix(0.194175,-0.003107,0.003999,0.249968,0,0);-ms-transform:matrix(0.194175,-0.003107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194175,-0.003107,0.003999,0.249968,0,0);}
.mde_c00374{transform:matrix(0.194305,-0.003109,0.003999,0.249968,0,0);-ms-transform:matrix(0.194305,-0.003109,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194305,-0.003109,0.003999,0.249968,0,0);}
.m25_c00374{transform:matrix(0.194585,-0.003113,0.003999,0.249968,0,0);-ms-transform:matrix(0.194585,-0.003113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194585,-0.003113,0.003999,0.249968,0,0);}
.m9a_c00374{transform:matrix(0.194645,-0.003114,0.003999,0.249968,0,0);-ms-transform:matrix(0.194645,-0.003114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194645,-0.003114,0.003999,0.249968,0,0);}
.m30_c00374{transform:matrix(0.194720,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194720,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194720,-0.003116,0.003999,0.249968,0,0);}
.m1b_c00374{transform:matrix(0.194725,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194725,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194725,-0.003116,0.003999,0.249968,0,0);}
.m8d_c00374{transform:matrix(0.195085,-0.003121,0.003999,0.249968,0,0);-ms-transform:matrix(0.195085,-0.003121,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195085,-0.003121,0.003999,0.249968,0,0);}
.m14_c00374{transform:matrix(0.195275,-0.003124,0.003999,0.249968,0,0);-ms-transform:matrix(0.195275,-0.003124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195275,-0.003124,0.003999,0.249968,0,0);}
.m87_c00374{transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);-ms-transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195365,-0.003126,0.003999,0.249968,0,0);}
.m13_c00374{transform:matrix(0.195425,-0.003127,0.003999,0.249968,0,0);-ms-transform:matrix(0.195425,-0.003127,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195425,-0.003127,0.003999,0.249968,0,0);}
.ma_c00374{transform:matrix(0.195535,-0.003129,0.003999,0.249968,0,0);-ms-transform:matrix(0.195535,-0.003129,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195535,-0.003129,0.003999,0.249968,0,0);}
.m6d_c00374{transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);-ms-transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195685,-0.003131,0.003999,0.249968,0,0);}
.m92_c00374{transform:matrix(0.196810,-0.003149,0.003999,0.249968,0,0);-ms-transform:matrix(0.196810,-0.003149,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196810,-0.003149,0.003999,0.249968,0,0);}
.mb4_c00374{transform:matrix(0.197040,-0.003153,0.003999,0.249968,0,0);-ms-transform:matrix(0.197040,-0.003153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197040,-0.003153,0.003999,0.249968,0,0);}
.m3f_c00374{transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);-ms-transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);}
.m16_c00374{transform:matrix(0.197460,-0.003159,0.003999,0.249968,0,0);-ms-transform:matrix(0.197460,-0.003159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197460,-0.003159,0.003999,0.249968,0,0);}
.m7c_c00374{transform:matrix(0.197465,-0.003159,0.003999,0.249968,0,0);-ms-transform:matrix(0.197465,-0.003159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197465,-0.003159,0.003999,0.249968,0,0);}
.m17_c00374{transform:matrix(0.198160,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198160,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198160,-0.003171,0.003999,0.249968,0,0);}
.mdc_c00374{transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);-ms-transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198260,-0.003172,0.003999,0.249968,0,0);}
.me2_c00374{transform:matrix(0.198625,-0.003178,0.003999,0.249968,0,0);-ms-transform:matrix(0.198625,-0.003178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198625,-0.003178,0.003999,0.249968,0,0);}
.m85_c00374{transform:matrix(0.198875,-0.003182,0.003999,0.249968,0,0);-ms-transform:matrix(0.198875,-0.003182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198875,-0.003182,0.003999,0.249968,0,0);}
.m75_c00374{transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);-ms-transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);}
.ma9_c00374{transform:matrix(0.199125,-0.003186,0.003999,0.249968,0,0);-ms-transform:matrix(0.199125,-0.003186,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199125,-0.003186,0.003999,0.249968,0,0);}
.m61_c00374{transform:matrix(0.199200,-0.003187,0.003999,0.249968,0,0);-ms-transform:matrix(0.199200,-0.003187,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199200,-0.003187,0.003999,0.249968,0,0);}
.m3b_c00374{transform:matrix(0.199279,-0.003188,0.003999,0.249968,0,0);-ms-transform:matrix(0.199279,-0.003188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199279,-0.003188,0.003999,0.249968,0,0);}
.m2_c00374{transform:matrix(0.199439,-0.003191,0.003999,0.249968,0,0);-ms-transform:matrix(0.199439,-0.003191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199439,-0.003191,0.003999,0.249968,0,0);}
.m8a_c00374{transform:matrix(0.199509,-0.003192,0.003999,0.249968,0,0);-ms-transform:matrix(0.199509,-0.003192,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199509,-0.003192,0.003999,0.249968,0,0);}
.m9b_c00374{transform:matrix(0.199834,-0.003197,0.003999,0.249968,0,0);-ms-transform:matrix(0.199834,-0.003197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199834,-0.003197,0.003999,0.249968,0,0);}
.m77_c00374{transform:matrix(0.199924,-0.003199,0.003999,0.249968,0,0);-ms-transform:matrix(0.199924,-0.003199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199924,-0.003199,0.003999,0.249968,0,0);}
.maf_c00374{transform:matrix(0.199949,-0.003199,0.003999,0.249968,0,0);-ms-transform:matrix(0.199949,-0.003199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199949,-0.003199,0.003999,0.249968,0,0);}
.mcb_c00374{transform:matrix(0.200174,-0.003203,0.003999,0.249968,0,0);-ms-transform:matrix(0.200174,-0.003203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200174,-0.003203,0.003999,0.249968,0,0);}
.ma2_c00374{transform:matrix(0.200449,-0.003207,0.003999,0.249968,0,0);-ms-transform:matrix(0.200449,-0.003207,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200449,-0.003207,0.003999,0.249968,0,0);}
.m4e_c00374{transform:matrix(0.200544,-0.003209,0.003999,0.249968,0,0);-ms-transform:matrix(0.200544,-0.003209,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200544,-0.003209,0.003999,0.249968,0,0);}
.m41_c00374{transform:matrix(0.201909,-0.003231,0.003999,0.249968,0,0);-ms-transform:matrix(0.201909,-0.003231,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201909,-0.003231,0.003999,0.249968,0,0);}
.m66_c00374{transform:matrix(0.202089,-0.003233,0.003999,0.249968,0,0);-ms-transform:matrix(0.202089,-0.003233,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202089,-0.003233,0.003999,0.249968,0,0);}
.mb1_c00374{transform:matrix(0.202129,-0.003234,0.003999,0.249968,0,0);-ms-transform:matrix(0.202129,-0.003234,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202129,-0.003234,0.003999,0.249968,0,0);}
.mac_c00374{transform:matrix(0.202409,-0.003239,0.003999,0.249968,0,0);-ms-transform:matrix(0.202409,-0.003239,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202409,-0.003239,0.003999,0.249968,0,0);}
.m64_c00374{transform:matrix(0.202854,-0.003246,0.003999,0.249968,0,0);-ms-transform:matrix(0.202854,-0.003246,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202854,-0.003246,0.003999,0.249968,0,0);}
.m7d_c00374{transform:matrix(0.203284,-0.003253,0.003999,0.249968,0,0);-ms-transform:matrix(0.203284,-0.003253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203284,-0.003253,0.003999,0.249968,0,0);}
.m3a_c00374{transform:matrix(0.203634,-0.003258,0.003999,0.249968,0,0);-ms-transform:matrix(0.203634,-0.003258,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203634,-0.003258,0.003999,0.249968,0,0);}
.m42_c00374{transform:matrix(0.203884,-0.003262,0.003999,0.249968,0,0);-ms-transform:matrix(0.203884,-0.003262,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203884,-0.003262,0.003999,0.249968,0,0);}
.m10_c00374{transform:matrix(0.204514,-0.003272,0.003999,0.249968,0,0);-ms-transform:matrix(0.204514,-0.003272,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204514,-0.003272,0.003999,0.249968,0,0);}
.mb3_c00374{transform:matrix(0.204884,-0.003278,0.003999,0.249968,0,0);-ms-transform:matrix(0.204884,-0.003278,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204884,-0.003278,0.003999,0.249968,0,0);}
.md9_c00374{transform:matrix(0.205019,-0.003280,0.003999,0.249968,0,0);-ms-transform:matrix(0.205019,-0.003280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205019,-0.003280,0.003999,0.249968,0,0);}
.mc2_c00374{transform:matrix(0.205079,-0.003281,0.003999,0.249968,0,0);-ms-transform:matrix(0.205079,-0.003281,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205079,-0.003281,0.003999,0.249968,0,0);}
.m98_c00374{transform:matrix(0.205224,-0.003284,0.003999,0.249968,0,0);-ms-transform:matrix(0.205224,-0.003284,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205224,-0.003284,0.003999,0.249968,0,0);}
.m1a_c00374{transform:matrix(0.205449,-0.003287,0.003999,0.249968,0,0);-ms-transform:matrix(0.205449,-0.003287,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205449,-0.003287,0.003999,0.249968,0,0);}
.ma6_c00374{transform:matrix(0.205559,-0.003289,0.003999,0.249968,0,0);-ms-transform:matrix(0.205559,-0.003289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205559,-0.003289,0.003999,0.249968,0,0);}
.m60_c00374{transform:matrix(0.205719,-0.003291,0.003999,0.249968,0,0);-ms-transform:matrix(0.205719,-0.003291,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205719,-0.003291,0.003999,0.249968,0,0);}
.mec_c00374{transform:matrix(0.206084,-0.003297,0.003999,0.249968,0,0);-ms-transform:matrix(0.206084,-0.003297,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206084,-0.003297,0.003999,0.249968,0,0);}
.m46_c00374{transform:matrix(0.206109,-0.003298,0.003999,0.249968,0,0);-ms-transform:matrix(0.206109,-0.003298,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206109,-0.003298,0.003999,0.249968,0,0);}
.m5b_c00374{transform:matrix(0.206299,-0.003301,0.003999,0.249968,0,0);-ms-transform:matrix(0.206299,-0.003301,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206299,-0.003301,0.003999,0.249968,0,0);}
.m7a_c00374{transform:matrix(0.207573,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207573,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207573,-0.003321,0.003999,0.249968,0,0);}
.mb8_c00374{transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);}
.mea_c00374{transform:matrix(0.208138,-0.003330,0.003999,0.249968,0,0);-ms-transform:matrix(0.208138,-0.003330,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208138,-0.003330,0.003999,0.249968,0,0);}
.m81_c00374{transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);-ms-transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);}
.m43_c00374{transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);-ms-transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);}
.m19_c00374{transform:matrix(0.208663,-0.003339,0.003999,0.249968,0,0);-ms-transform:matrix(0.208663,-0.003339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208663,-0.003339,0.003999,0.249968,0,0);}
.me3_c00374{transform:matrix(0.208693,-0.003339,0.003999,0.249968,0,0);-ms-transform:matrix(0.208693,-0.003339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208693,-0.003339,0.003999,0.249968,0,0);}
.m1c_c00374{transform:matrix(0.208978,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.208978,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208978,-0.003344,0.003999,0.249968,0,0);}
.m6c_c00374{transform:matrix(0.209053,-0.003345,0.003999,0.249968,0,0);-ms-transform:matrix(0.209053,-0.003345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209053,-0.003345,0.003999,0.249968,0,0);}
.md7_c00374{transform:matrix(0.209448,-0.003351,0.003999,0.249968,0,0);-ms-transform:matrix(0.209448,-0.003351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209448,-0.003351,0.003999,0.249968,0,0);}
.m8b_c00374{transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);-ms-transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209648,-0.003354,0.003999,0.249968,0,0);}
.m3c_c00374{transform:matrix(0.209728,-0.003356,0.003999,0.249968,0,0);-ms-transform:matrix(0.209728,-0.003356,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209728,-0.003356,0.003999,0.249968,0,0);}
.m56_c00374{transform:matrix(0.209853,-0.003358,0.003999,0.249968,0,0);-ms-transform:matrix(0.209853,-0.003358,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209853,-0.003358,0.003999,0.249968,0,0);}
.m5a_c00374{transform:matrix(0.210958,-0.003375,0.003999,0.249968,0,0);-ms-transform:matrix(0.210958,-0.003375,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210958,-0.003375,0.003999,0.249968,0,0);}
.md2_c00374{transform:matrix(0.211023,-0.003376,0.003999,0.249968,0,0);-ms-transform:matrix(0.211023,-0.003376,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211023,-0.003376,0.003999,0.249968,0,0);}
.m52_c00374{transform:matrix(0.211143,-0.003378,0.003999,0.249968,0,0);-ms-transform:matrix(0.211143,-0.003378,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211143,-0.003378,0.003999,0.249968,0,0);}
.m9c_c00374{transform:matrix(0.211253,-0.003380,0.003999,0.249968,0,0);-ms-transform:matrix(0.211253,-0.003380,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211253,-0.003380,0.003999,0.249968,0,0);}
.m28_c00374{transform:matrix(0.211413,-0.003383,0.003999,0.249968,0,0);-ms-transform:matrix(0.211413,-0.003383,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211413,-0.003383,0.003999,0.249968,0,0);}
.m68_c00374{transform:matrix(0.211503,-0.003384,0.003999,0.249968,0,0);-ms-transform:matrix(0.211503,-0.003384,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211503,-0.003384,0.003999,0.249968,0,0);}
.m47_c00374{transform:matrix(0.211673,-0.003387,0.003999,0.249968,0,0);-ms-transform:matrix(0.211673,-0.003387,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211673,-0.003387,0.003999,0.249968,0,0);}
.mb9_c00374{transform:matrix(0.211798,-0.003389,0.003999,0.249968,0,0);-ms-transform:matrix(0.211798,-0.003389,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211798,-0.003389,0.003999,0.249968,0,0);}
.mab_c00374{transform:matrix(0.211868,-0.003390,0.003999,0.249968,0,0);-ms-transform:matrix(0.211868,-0.003390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211868,-0.003390,0.003999,0.249968,0,0);}
.m63_c00374{transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);-ms-transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);}
.mbb_c00374{transform:matrix(0.212088,-0.003393,0.003999,0.249968,0,0);-ms-transform:matrix(0.212088,-0.003393,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212088,-0.003393,0.003999,0.249968,0,0);}
.m4d_c00374{transform:matrix(0.212753,-0.003404,0.003999,0.249968,0,0);-ms-transform:matrix(0.212753,-0.003404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212753,-0.003404,0.003999,0.249968,0,0);}
.m58_c00374{transform:matrix(0.212893,-0.003406,0.003999,0.249968,0,0);-ms-transform:matrix(0.212893,-0.003406,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212893,-0.003406,0.003999,0.249968,0,0);}
.m23_c00374{transform:matrix(0.212898,-0.003406,0.003999,0.249968,0,0);-ms-transform:matrix(0.212898,-0.003406,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212898,-0.003406,0.003999,0.249968,0,0);}
.m82_c00374{transform:matrix(0.213053,-0.003409,0.003999,0.249968,0,0);-ms-transform:matrix(0.213053,-0.003409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213053,-0.003409,0.003999,0.249968,0,0);}
.m7b_c00374{transform:matrix(0.213128,-0.003410,0.003999,0.249968,0,0);-ms-transform:matrix(0.213128,-0.003410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213128,-0.003410,0.003999,0.249968,0,0);}
.mc3_c00374{transform:matrix(0.213243,-0.003412,0.003999,0.249968,0,0);-ms-transform:matrix(0.213243,-0.003412,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213243,-0.003412,0.003999,0.249968,0,0);}
.m40_c00374{transform:matrix(0.214598,-0.003434,0.003999,0.249968,0,0);-ms-transform:matrix(0.214598,-0.003434,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214598,-0.003434,0.003999,0.249968,0,0);}
.m69_c00374{transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);-ms-transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214992,-0.003440,0.003999,0.249968,0,0);}
.m6e_c00374{transform:matrix(0.215017,-0.003440,0.003999,0.249968,0,0);-ms-transform:matrix(0.215017,-0.003440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215017,-0.003440,0.003999,0.249968,0,0);}
.m5c_c00374{transform:matrix(0.215192,-0.003443,0.003999,0.249968,0,0);-ms-transform:matrix(0.215192,-0.003443,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215192,-0.003443,0.003999,0.249968,0,0);}
.md3_c00374{transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215327,-0.003445,0.003999,0.249968,0,0);}
.m2c_c00374{transform:matrix(0.216347,-0.003462,0.003999,0.249968,0,0);-ms-transform:matrix(0.216347,-0.003462,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216347,-0.003462,0.003999,0.249968,0,0);}
.m88_c00374{transform:matrix(0.216672,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216672,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216672,-0.003467,0.003999,0.249968,0,0);}
.m54_c00374{transform:matrix(0.217577,-0.003481,0.003999,0.249968,0,0);-ms-transform:matrix(0.217577,-0.003481,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217577,-0.003481,0.003999,0.249968,0,0);}
.m4a_c00374{transform:matrix(0.217757,-0.003484,0.003999,0.249968,0,0);-ms-transform:matrix(0.217757,-0.003484,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217757,-0.003484,0.003999,0.249968,0,0);}
.m5e_c00374{transform:matrix(0.218247,-0.003492,0.003999,0.249968,0,0);-ms-transform:matrix(0.218247,-0.003492,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218247,-0.003492,0.003999,0.249968,0,0);}
.mb7_c00374{transform:matrix(0.218827,-0.003501,0.003999,0.249968,0,0);-ms-transform:matrix(0.218827,-0.003501,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218827,-0.003501,0.003999,0.249968,0,0);}
.mdd_c00374{transform:matrix(0.218887,-0.003502,0.003999,0.249968,0,0);-ms-transform:matrix(0.218887,-0.003502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218887,-0.003502,0.003999,0.249968,0,0);}
.me8_c00374{transform:matrix(0.221262,-0.003540,0.003999,0.249968,0,0);-ms-transform:matrix(0.221262,-0.003540,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221262,-0.003540,0.003999,0.249968,0,0);}
.m2b_c00374{transform:matrix(0.221357,-0.003542,0.003999,0.249968,0,0);-ms-transform:matrix(0.221357,-0.003542,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221357,-0.003542,0.003999,0.249968,0,0);}
.m44_c00374{transform:matrix(0.223611,-0.003578,0.003999,0.249968,0,0);-ms-transform:matrix(0.223611,-0.003578,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223611,-0.003578,0.003999,0.249968,0,0);}
.m72_c00374{transform:matrix(0.223671,-0.003579,0.003999,0.249968,0,0);-ms-transform:matrix(0.223671,-0.003579,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223671,-0.003579,0.003999,0.249968,0,0);}
.mbd_c00374{transform:matrix(0.224641,-0.003594,0.003999,0.249968,0,0);-ms-transform:matrix(0.224641,-0.003594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224641,-0.003594,0.003999,0.249968,0,0);}
.mc0_c00374{transform:matrix(0.224741,-0.003596,0.003999,0.249968,0,0);-ms-transform:matrix(0.224741,-0.003596,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224741,-0.003596,0.003999,0.249968,0,0);}
.md4_c00374{transform:matrix(0.225991,-0.003616,0.003999,0.249968,0,0);-ms-transform:matrix(0.225991,-0.003616,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225991,-0.003616,0.003999,0.249968,0,0);}
.m70_c00374{transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);-ms-transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226076,-0.003617,0.003999,0.249968,0,0);}
.m83_c00374{transform:matrix(0.226511,-0.003624,0.003999,0.249968,0,0);-ms-transform:matrix(0.226511,-0.003624,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226511,-0.003624,0.003999,0.249968,0,0);}
.m35_c00374{transform:matrix(0.226781,-0.003628,0.003999,0.249968,0,0);-ms-transform:matrix(0.226781,-0.003628,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226781,-0.003628,0.003999,0.249968,0,0);}
.m4f_c00374{transform:matrix(0.226861,-0.003630,0.003999,0.249968,0,0);-ms-transform:matrix(0.226861,-0.003630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226861,-0.003630,0.003999,0.249968,0,0);}
.mf_c00374{transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);-ms-transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);}
.m84_c00374{transform:matrix(0.232220,-0.003716,0.003999,0.249968,0,0);-ms-transform:matrix(0.232220,-0.003716,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232220,-0.003716,0.003999,0.249968,0,0);}
.m73_c00374{transform:matrix(0.232860,-0.003726,0.003999,0.249968,0,0);-ms-transform:matrix(0.232860,-0.003726,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232860,-0.003726,0.003999,0.249968,0,0);}
.m89_c00374{transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-ms-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);}
.me0_c00374{transform:matrix(0.234535,-0.003753,0.003999,0.249968,0,0);-ms-transform:matrix(0.234535,-0.003753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234535,-0.003753,0.003999,0.249968,0,0);}
.mdf_c00374{transform:matrix(0.235900,-0.003774,0.003999,0.249968,0,0);-ms-transform:matrix(0.235900,-0.003774,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235900,-0.003774,0.003999,0.249968,0,0);}
.m9f_c00374{transform:matrix(0.237760,-0.003804,0.003999,0.249968,0,0);-ms-transform:matrix(0.237760,-0.003804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237760,-0.003804,0.003999,0.249968,0,0);}
.md5_c00374{transform:matrix(0.238125,-0.003810,0.003999,0.249968,0,0);-ms-transform:matrix(0.238125,-0.003810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238125,-0.003810,0.003999,0.249968,0,0);}
.m80_c00374{transform:matrix(0.238614,-0.003818,0.003999,0.249968,0,0);-ms-transform:matrix(0.238614,-0.003818,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238614,-0.003818,0.003999,0.249968,0,0);}
.m7f_c00374{transform:matrix(0.238974,-0.003824,0.003999,0.249968,0,0);-ms-transform:matrix(0.238974,-0.003824,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238974,-0.003824,0.003999,0.249968,0,0);}
.m8_c00374{transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);-ms-transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);}
.m1f_c00374{transform:matrix(0.241034,-0.003857,0.003999,0.249968,0,0);-ms-transform:matrix(0.241034,-0.003857,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241034,-0.003857,0.003999,0.249968,0,0);}
.m97_c00374{transform:matrix(0.256112,-0.004098,0.003999,0.249968,0,0);-ms-transform:matrix(0.256112,-0.004098,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256112,-0.004098,0.003999,0.249968,0,0);}
.mbf_c00374{transform:matrix(0.263221,-0.004212,0.003999,0.249968,0,0);-ms-transform:matrix(0.263221,-0.004212,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263221,-0.004212,0.003999,0.249968,0,0);}
.me4_c00374{transform:matrix(0.266171,-0.004259,0.003999,0.249968,0,0);-ms-transform:matrix(0.266171,-0.004259,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266171,-0.004259,0.003999,0.249968,0,0);}
.m96_c00374{transform:matrix(0.297957,-0.004767,0.003999,0.249968,0,0);-ms-transform:matrix(0.297957,-0.004767,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297957,-0.004767,0.003999,0.249968,0,0);}
.mc5_c00374{transform:matrix(0.486803,-0.007789,0.003999,0.249968,0,0);-ms-transform:matrix(0.486803,-0.007789,0.003999,0.249968,0,0);-webkit-transform:matrix(0.486803,-0.007789,0.003999,0.249968,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:0.000000px;}
.fc0_c00374{color:transparent;}
.fsc_c00374{font-size:57.757392px;}
.fs9_c00374{font-size:58.807526px;}
.fs8_c00374{font-size:59.857660px;}
.fs5_c00374{font-size:60.907795px;}
.fs6_c00374{font-size:61.957929px;}
.fs7_c00374{font-size:63.008063px;}
.fsa_c00374{font-size:64.058198px;}
.fs4_c00374{font-size:65.108332px;}
.fs3_c00374{font-size:66.158467px;}
.fsd_c00374{font-size:67.208601px;}
.fs2_c00374{font-size:68.258735px;}
.fsb_c00374{font-size:69.308870px;}
.fs1_c00374{font-size:70.359004px;}
.fse_c00374{font-size:73.509407px;}
.fs0_c00374{font-size:85.050000px;}
.y0_c00374{bottom:0.000000px;}
.yef_c00374{bottom:28.556556px;}
.yf0_c00374{bottom:29.084712px;}
.yf1_c00374{bottom:29.887164px;}
.yf2_c00374{bottom:30.224832px;}
.yf3_c00374{bottom:30.524976px;}
.yf4_c00374{bottom:31.451784px;}
.yf5_c00374{bottom:31.728108px;}
.yf6_c00374{bottom:32.738364px;}
.yf7_c00374{bottom:33.081672px;}
.yee_c00374{bottom:49.813740px;}
.yed_c00374{bottom:49.814052px;}
.yec_c00374{bottom:49.814604px;}
.yeb_c00374{bottom:49.814820px;}
.yea_c00374{bottom:49.815288px;}
.ye9_c00374{bottom:49.815492px;}
.ye5_c00374{bottom:49.815696px;}
.ye8_c00374{bottom:49.815864px;}
.ye7_c00374{bottom:49.816188px;}
.ye6_c00374{bottom:49.816236px;}
.ydf_c00374{bottom:65.677596px;}
.yde_c00374{bottom:65.677776px;}
.ye0_c00374{bottom:65.677908px;}
.ye2_c00374{bottom:65.678124px;}
.ye4_c00374{bottom:65.678184px;}
.ye3_c00374{bottom:65.678292px;}
.ye1_c00374{bottom:65.678652px;}
.yd3_c00374{bottom:80.402196px;}
.yd4_c00374{bottom:80.623608px;}
.yd5_c00374{bottom:80.948676px;}
.yd6_c00374{bottom:81.476088px;}
.yd7_c00374{bottom:82.266540px;}
.yd8_c00374{bottom:82.487592px;}
.yd9_c00374{bottom:82.776060px;}
.yda_c00374{bottom:83.753244px;}
.ydb_c00374{bottom:83.977656px;}
.ydc_c00374{bottom:84.324216px;}
.ydd_c00374{bottom:84.856980px;}
.yce_c00374{bottom:97.415400px;}
.ycf_c00374{bottom:98.087856px;}
.yd0_c00374{bottom:99.323352px;}
.yd1_c00374{bottom:100.128108px;}
.yd2_c00374{bottom:100.384992px;}
.yc5_c00374{bottom:113.081232px;}
.yc6_c00374{bottom:113.782272px;}
.yc7_c00374{bottom:114.299940px;}
.yc8_c00374{bottom:115.369932px;}
.yc9_c00374{bottom:117.065664px;}
.yca_c00374{bottom:117.803976px;}
.ycb_c00374{bottom:118.771812px;}
.ycc_c00374{bottom:119.083128px;}
.ycd_c00374{bottom:119.640624px;}
.ybe_c00374{bottom:130.900680px;}
.ybf_c00374{bottom:131.807364px;}
.yc0_c00374{bottom:132.682824px;}
.yc1_c00374{bottom:134.064600px;}
.yc2_c00374{bottom:134.566692px;}
.yc3_c00374{bottom:135.307344px;}
.yc4_c00374{bottom:136.487940px;}
.yb7_c00374{bottom:147.641100px;}
.yb8_c00374{bottom:149.077212px;}
.yb9_c00374{bottom:150.205788px;}
.yba_c00374{bottom:150.452940px;}
.ybb_c00374{bottom:150.799284px;}
.ybc_c00374{bottom:151.694280px;}
.ybd_c00374{bottom:152.033628px;}
.yaf_c00374{bottom:164.382096px;}
.yb0_c00374{bottom:164.808888px;}
.yb1_c00374{bottom:165.160008px;}
.yb2_c00374{bottom:166.114464px;}
.yb3_c00374{bottom:166.779936px;}
.yb4_c00374{bottom:167.406456px;}
.yb5_c00374{bottom:168.438456px;}
.yb6_c00374{bottom:168.944808px;}
.ya8_c00374{bottom:183.553308px;}
.ya9_c00374{bottom:183.692976px;}
.yaa_c00374{bottom:184.271820px;}
.yab_c00374{bottom:184.602348px;}
.yac_c00374{bottom:185.574444px;}
.yad_c00374{bottom:186.242508px;}
.yae_c00374{bottom:186.541236px;}
.ya1_c00374{bottom:203.169792px;}
.ya0_c00374{bottom:203.170128px;}
.ya4_c00374{bottom:203.170272px;}
.ya2_c00374{bottom:203.170380px;}
.ya3_c00374{bottom:203.170560px;}
.ya7_c00374{bottom:203.170596px;}
.ya5_c00374{bottom:203.170944px;}
.ya6_c00374{bottom:203.171076px;}
.y98_c00374{bottom:216.766596px;}
.y99_c00374{bottom:217.232712px;}
.y9a_c00374{bottom:217.607124px;}
.y9b_c00374{bottom:218.228412px;}
.y9c_c00374{bottom:218.385540px;}
.y9d_c00374{bottom:218.816940px;}
.y9e_c00374{bottom:219.251112px;}
.y9f_c00374{bottom:219.467544px;}
.y8f_c00374{bottom:233.781624px;}
.y90_c00374{bottom:234.111744px;}
.y91_c00374{bottom:234.370464px;}
.y92_c00374{bottom:235.051188px;}
.y93_c00374{bottom:235.354404px;}
.y94_c00374{bottom:235.707792px;}
.y95_c00374{bottom:236.502168px;}
.y96_c00374{bottom:236.819196px;}
.y97_c00374{bottom:237.015660px;}
.y8a_c00374{bottom:253.596024px;}
.y8b_c00374{bottom:253.596360px;}
.y89_c00374{bottom:253.596756px;}
.y8d_c00374{bottom:253.596804px;}
.y85_c00374{bottom:253.596936px;}
.y8c_c00374{bottom:253.597032px;}
.y8e_c00374{bottom:253.597116px;}
.y84_c00374{bottom:253.597128px;}
.y88_c00374{bottom:253.597212px;}
.y87_c00374{bottom:253.597344px;}
.y86_c00374{bottom:253.597392px;}
.y82_c00374{bottom:271.007460px;}
.y81_c00374{bottom:271.007472px;}
.y83_c00374{bottom:271.007508px;}
.y7f_c00374{bottom:271.007604px;}
.y80_c00374{bottom:271.007616px;}
.y7e_c00374{bottom:271.008312px;}
.y78_c00374{bottom:285.629856px;}
.y79_c00374{bottom:286.485960px;}
.y7a_c00374{bottom:286.745712px;}
.y7b_c00374{bottom:287.609124px;}
.y7c_c00374{bottom:288.030024px;}
.y7d_c00374{bottom:288.763596px;}
.y70_c00374{bottom:304.940244px;}
.y71_c00374{bottom:304.940556px;}
.y75_c00374{bottom:304.940652px;}
.y77_c00374{bottom:304.941012px;}
.y72_c00374{bottom:304.941204px;}
.y74_c00374{bottom:304.941300px;}
.y76_c00374{bottom:304.941420px;}
.y73_c00374{bottom:304.941516px;}
.y68_c00374{bottom:320.462268px;}
.y69_c00374{bottom:321.170544px;}
.y6a_c00374{bottom:321.465480px;}
.y6b_c00374{bottom:322.255956px;}
.y6c_c00374{bottom:322.622568px;}
.y6d_c00374{bottom:322.852704px;}
.y6e_c00374{bottom:323.544840px;}
.y6f_c00374{bottom:323.805636px;}
.y61_c00374{bottom:335.856624px;}
.y62_c00374{bottom:336.989748px;}
.y63_c00374{bottom:337.491456px;}
.y64_c00374{bottom:338.523372px;}
.y65_c00374{bottom:339.124608px;}
.y66_c00374{bottom:340.370100px;}
.y67_c00374{bottom:340.852776px;}
.y58_c00374{bottom:352.060824px;}
.y59_c00374{bottom:352.864092px;}
.y5a_c00374{bottom:353.997768px;}
.y5b_c00374{bottom:354.401328px;}
.y5c_c00374{bottom:355.002744px;}
.y5d_c00374{bottom:356.449596px;}
.y5e_c00374{bottom:356.794164px;}
.y5f_c00374{bottom:357.276468px;}
.y60_c00374{bottom:358.213344px;}
.y50_c00374{bottom:368.799420px;}
.y51_c00374{bottom:369.610740px;}
.y52_c00374{bottom:369.917280px;}
.y53_c00374{bottom:370.389372px;}
.y54_c00374{bottom:371.410500px;}
.y55_c00374{bottom:372.749736px;}
.y56_c00374{bottom:373.003548px;}
.y57_c00374{bottom:373.719384px;}
.y47_c00374{bottom:384.191856px;}
.y48_c00374{bottom:385.195872px;}
.y49_c00374{bottom:385.490796px;}
.y4a_c00374{bottom:386.036688px;}
.y4b_c00374{bottom:386.476764px;}
.y4c_c00374{bottom:387.841116px;}
.y4d_c00374{bottom:388.420392px;}
.y4e_c00374{bottom:388.796520px;}
.y4f_c00374{bottom:389.741976px;}
.y3e_c00374{bottom:401.472852px;}
.y3f_c00374{bottom:401.784420px;}
.y40_c00374{bottom:402.432120px;}
.y41_c00374{bottom:403.419132px;}
.y42_c00374{bottom:403.630116px;}
.y43_c00374{bottom:404.415312px;}
.y44_c00374{bottom:404.750124px;}
.y45_c00374{bottom:405.740352px;}
.y46_c00374{bottom:405.975828px;}
.y36_c00374{bottom:419.565072px;}
.y37_c00374{bottom:420.313092px;}
.y38_c00374{bottom:420.499968px;}
.y39_c00374{bottom:421.052988px;}
.y3a_c00374{bottom:421.316580px;}
.y3b_c00374{bottom:421.598844px;}
.y3c_c00374{bottom:421.815180px;}
.y3d_c00374{bottom:422.595192px;}
.y2d_c00374{bottom:436.036980px;}
.y2e_c00374{bottom:436.462104px;}
.y2f_c00374{bottom:436.714212px;}
.y30_c00374{bottom:437.251464px;}
.y31_c00374{bottom:437.752716px;}
.y32_c00374{bottom:438.026700px;}
.y33_c00374{bottom:438.287364px;}
.y34_c00374{bottom:439.322376px;}
.y35_c00374{bottom:439.681548px;}
.y2a_c00374{bottom:455.188212px;}
.y28_c00374{bottom:455.188248px;}
.y2c_c00374{bottom:455.188476px;}
.y2b_c00374{bottom:455.188572px;}
.y27_c00374{bottom:455.188584px;}
.y29_c00374{bottom:455.188800px;}
.y20_c00374{bottom:468.983328px;}
.y21_c00374{bottom:469.794336px;}
.y22_c00374{bottom:470.205864px;}
.y23_c00374{bottom:470.511864px;}
.y24_c00374{bottom:471.489312px;}
.y25_c00374{bottom:472.495824px;}
.y26_c00374{bottom:473.138520px;}
.y1a_c00374{bottom:485.723712px;}
.y1b_c00374{bottom:486.411468px;}
.y1c_c00374{bottom:486.752184px;}
.y1d_c00374{bottom:487.566672px;}
.y1e_c00374{bottom:488.320476px;}
.y1f_c00374{bottom:488.661144px;}
.y14_c00374{bottom:503.277132px;}
.y15_c00374{bottom:503.924676px;}
.y16_c00374{bottom:504.837612px;}
.y17_c00374{bottom:505.368624px;}
.y18_c00374{bottom:507.072288px;}
.y19_c00374{bottom:507.439068px;}
.yf_c00374{bottom:520.560324px;}
.y10_c00374{bottom:522.370788px;}
.y11_c00374{bottom:522.684588px;}
.y12_c00374{bottom:522.988188px;}
.y13_c00374{bottom:524.392908px;}
.y8_c00374{bottom:537.031800px;}
.y9_c00374{bottom:537.220212px;}
.ya_c00374{bottom:538.290132px;}
.yb_c00374{bottom:539.562036px;}
.yc_c00374{bottom:540.717936px;}
.yd_c00374{bottom:541.002468px;}
.ye_c00374{bottom:541.733040px;}
.y2_c00374{bottom:554.313000px;}
.y3_c00374{bottom:554.478048px;}
.y4_c00374{bottom:555.634824px;}
.y5_c00374{bottom:556.586616px;}
.y6_c00374{bottom:557.843712px;}
.y7_c00374{bottom:558.172200px;}
.y1_c00374{bottom:569.700000px;}
.he_c00374{height:57.757392px;}
.hb_c00374{height:58.807526px;}
.ha_c00374{height:59.857660px;}
.h7_c00374{height:60.907795px;}
.h8_c00374{height:61.957929px;}
.h9_c00374{height:63.008063px;}
.hc_c00374{height:64.058198px;}
.h6_c00374{height:65.108332px;}
.h5_c00374{height:66.158467px;}
.hf_c00374{height:67.208601px;}
.h4_c00374{height:68.258735px;}
.hd_c00374{height:69.308870px;}
.h3_c00374{height:70.359004px;}
.h10_c00374{height:73.509407px;}
.h2_c00374{height:85.050000px;}
.h0_c00374{height:613.170000px;}
.h1_c00374{height:613.500000px;}
.w0_c00374{width:359.100000px;}
.w1_c00374{width:359.250000px;}
.x0_c00374{left:0.000000px;}
.x38_c00374{left:13.499700px;}
.x11_c00374{left:20.145024px;}
.x3_c00374{left:21.477000px;}
.x1d_c00374{left:22.612716px;}
.x46_c00374{left:24.261120px;}
.x52_c00374{left:25.654284px;}
.x58_c00374{left:26.734068px;}
.x6c_c00374{left:28.284540px;}
.x75_c00374{left:29.665728px;}
.x4_c00374{left:31.792500px;}
.x68_c00374{left:36.024360px;}
.x17_c00374{left:37.185168px;}
.x7d_c00374{left:38.582328px;}
.x32_c00374{left:41.479452px;}
.x76_c00374{left:42.660012px;}
.x4b_c00374{left:44.287776px;}
.x69_c00374{left:47.660604px;}
.x53_c00374{left:49.147308px;}
.x5d_c00374{left:54.966480px;}
.x12_c00374{left:56.115372px;}
.x72_c00374{left:57.862500px;}
.x77_c00374{left:61.757700px;}
.x39_c00374{left:63.684984px;}
.x23_c00374{left:67.777440px;}
.x60_c00374{left:69.800772px;}
.x1e_c00374{left:73.300716px;}
.x26_c00374{left:74.916276px;}
.x4c_c00374{left:76.961628px;}
.x3a_c00374{left:78.460548px;}
.x33_c00374{left:79.616352px;}
.x18_c00374{left:83.076912px;}
.x3e_c00374{left:85.522968px;}
.x7b_c00374{left:87.484776px;}
.x2c_c00374{left:89.237292px;}
.x4f_c00374{left:90.901404px;}
.x59_c00374{left:93.702204px;}
.x9_c00374{left:95.541756px;}
.x1f_c00374{left:99.021216px;}
.x5_c00374{left:104.091000px;}
.x19_c00374{left:105.778272px;}
.x13_c00374{left:106.797240px;}
.x7a_c00374{left:108.278376px;}
.x47_c00374{left:110.308992px;}
.x3f_c00374{left:111.746628px;}
.x27_c00374{left:116.277768px;}
.x20_c00374{left:118.146216px;}
.x42_c00374{left:120.379536px;}
.x6a_c00374{left:123.532476px;}
.x3b_c00374{left:127.705380px;}
.x54_c00374{left:129.887472px;}
.x5a_c00374{left:132.047520px;}
.xd_c00374{left:134.159784px;}
.x14_c00374{left:136.328304px;}
.x34_c00374{left:137.647416px;}
.x78_c00374{left:139.247952px;}
.x43_c00374{left:140.538240px;}
.x55_c00374{left:145.820052px;}
.x1_c00374{left:150.930000px;}
.x49_c00374{left:152.188416px;}
.xe_c00374{left:153.772284px;}
.x28_c00374{left:154.826616px;}
.x2d_c00374{left:156.486168px;}
.x5e_c00374{left:158.608128px;}
.x1a_c00374{left:160.059636px;}
.x64_c00374{left:161.477172px;}
.x6_c00374{left:163.578000px;}
.x48_c00374{left:164.582376px;}
.x56_c00374{left:165.802164px;}
.x40_c00374{left:168.440304px;}
.xa_c00374{left:170.347056px;}
.xf_c00374{left:172.747284px;}
.x24_c00374{left:174.981372px;}
.x50_c00374{left:177.322056px;}
.x21_c00374{left:179.236716px;}
.x2e_c00374{left:180.462588px;}
.x65_c00374{left:186.590604px;}
.x5f_c00374{left:188.103024px;}
.x6f_c00374{left:191.570640px;}
.x4d_c00374{left:193.616484px;}
.x4a_c00374{left:194.830284px;}
.x29_c00374{left:195.931584px;}
.x5b_c00374{left:203.335284px;}
.x6b_c00374{left:204.543660px;}
.x2f_c00374{left:206.168652px;}
.x7e_c00374{left:208.937616px;}
.x1b_c00374{left:210.266928px;}
.x66_c00374{left:212.514228px;}
.x61_c00374{left:213.732768px;}
.x35_c00374{left:215.958168px;}
.x6d_c00374{left:217.307040px;}
.x30_c00374{left:225.878736px;}
.x15_c00374{left:230.991780px;}
.x1c_c00374{left:232.965288px;}
.x5c_c00374{left:235.468992px;}
.xb_c00374{left:238.370976px;}
.x79_c00374{left:239.909844px;}
.x7_c00374{left:242.146500px;}
.x3c_c00374{left:243.713964px;}
.x70_c00374{left:249.196656px;}
.x16_c00374{left:251.383632px;}
.x62_c00374{left:253.152912px;}
.x2_c00374{left:255.150000px;}
.x41_c00374{left:256.940472px;}
.x10_c00374{left:260.542284px;}
.x8_c00374{left:262.677000px;}
.x57_c00374{left:264.633960px;}
.x51_c00374{left:266.168328px;}
.x4e_c00374{left:267.336348px;}
.x63_c00374{left:272.868996px;}
.x36_c00374{left:274.190232px;}
.x2a_c00374{left:275.529900px;}
.x73_c00374{left:278.700228px;}
.x25_c00374{left:280.564896px;}
.x22_c00374{left:282.312216px;}
.x44_c00374{left:284.319048px;}
.x37_c00374{left:288.063516px;}
.x3d_c00374{left:290.989440px;}
.x67_c00374{left:293.794536px;}
.x31_c00374{left:296.853924px;}
.xc_c00374{left:298.064016px;}
.x74_c00374{left:301.915752px;}
.x2b_c00374{left:303.135720px;}
.x7f_c00374{left:304.804080px;}
.x71_c00374{left:308.261388px;}
.x7c_c00374{left:311.073540px;}
.x6e_c00374{left:313.454040px;}
.x45_c00374{left:331.152048px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fsc_c00374{font-size:51.339904pt;}
.fs9_c00374{font-size:52.273356pt;}
.fs8_c00374{font-size:53.206809pt;}
.fs5_c00374{font-size:54.140262pt;}
.fs6_c00374{font-size:55.073715pt;}
.fs7_c00374{font-size:56.007168pt;}
.fsa_c00374{font-size:56.940620pt;}
.fs4_c00374{font-size:57.874073pt;}
.fs3_c00374{font-size:58.807526pt;}
.fsd_c00374{font-size:59.740979pt;}
.fs2_c00374{font-size:60.674432pt;}
.fsb_c00374{font-size:61.607884pt;}
.fs1_c00374{font-size:62.541337pt;}
.fse_c00374{font-size:65.341695pt;}
.fs0_c00374{font-size:75.600000pt;}
.y0_c00374{bottom:0.000000pt;}
.yef_c00374{bottom:25.383605pt;}
.yf0_c00374{bottom:25.853077pt;}
.yf1_c00374{bottom:26.566368pt;}
.yf2_c00374{bottom:26.866517pt;}
.yf3_c00374{bottom:27.133312pt;}
.yf4_c00374{bottom:27.957141pt;}
.yf5_c00374{bottom:28.202763pt;}
.yf6_c00374{bottom:29.100768pt;}
.yf7_c00374{bottom:29.405931pt;}
.yee_c00374{bottom:44.278880pt;}
.yed_c00374{bottom:44.279157pt;}
.yec_c00374{bottom:44.279648pt;}
.yeb_c00374{bottom:44.279840pt;}
.yea_c00374{bottom:44.280256pt;}
.ye9_c00374{bottom:44.280437pt;}
.ye5_c00374{bottom:44.280619pt;}
.ye8_c00374{bottom:44.280768pt;}
.ye7_c00374{bottom:44.281056pt;}
.ye6_c00374{bottom:44.281099pt;}
.ydf_c00374{bottom:58.380085pt;}
.yde_c00374{bottom:58.380245pt;}
.ye0_c00374{bottom:58.380363pt;}
.ye2_c00374{bottom:58.380555pt;}
.ye4_c00374{bottom:58.380608pt;}
.ye3_c00374{bottom:58.380704pt;}
.ye1_c00374{bottom:58.381024pt;}
.yd3_c00374{bottom:71.468619pt;}
.yd4_c00374{bottom:71.665429pt;}
.yd5_c00374{bottom:71.954379pt;}
.yd6_c00374{bottom:72.423189pt;}
.yd7_c00374{bottom:73.125813pt;}
.yd8_c00374{bottom:73.322304pt;}
.yd9_c00374{bottom:73.578720pt;}
.yda_c00374{bottom:74.447328pt;}
.ydb_c00374{bottom:74.646805pt;}
.ydc_c00374{bottom:74.954859pt;}
.ydd_c00374{bottom:75.428427pt;}
.yce_c00374{bottom:86.591467pt;}
.ycf_c00374{bottom:87.189205pt;}
.yd0_c00374{bottom:88.287424pt;}
.yd1_c00374{bottom:89.002763pt;}
.yd2_c00374{bottom:89.231104pt;}
.yc5_c00374{bottom:100.516651pt;}
.yc6_c00374{bottom:101.139797pt;}
.yc7_c00374{bottom:101.599947pt;}
.yc8_c00374{bottom:102.551051pt;}
.yc9_c00374{bottom:104.058368pt;}
.yca_c00374{bottom:104.714645pt;}
.ycb_c00374{bottom:105.574944pt;}
.ycc_c00374{bottom:105.851669pt;}
.ycd_c00374{bottom:106.347221pt;}
.ybe_c00374{bottom:116.356160pt;}
.ybf_c00374{bottom:117.162101pt;}
.yc0_c00374{bottom:117.940288pt;}
.yc1_c00374{bottom:119.168533pt;}
.yc2_c00374{bottom:119.614837pt;}
.yc3_c00374{bottom:120.273195pt;}
.yc4_c00374{bottom:121.322613pt;}
.yb7_c00374{bottom:131.236533pt;}
.yb8_c00374{bottom:132.513077pt;}
.yb9_c00374{bottom:133.516256pt;}
.yba_c00374{bottom:133.735947pt;}
.ybb_c00374{bottom:134.043808pt;}
.ybc_c00374{bottom:134.839360pt;}
.ybd_c00374{bottom:135.141003pt;}
.yaf_c00374{bottom:146.117419pt;}
.yb0_c00374{bottom:146.496789pt;}
.yb1_c00374{bottom:146.808896pt;}
.yb2_c00374{bottom:147.657301pt;}
.yb3_c00374{bottom:148.248832pt;}
.yb4_c00374{bottom:148.805739pt;}
.yb5_c00374{bottom:149.723072pt;}
.yb6_c00374{bottom:150.173163pt;}
.ya8_c00374{bottom:163.158496pt;}
.ya9_c00374{bottom:163.282645pt;}
.yaa_c00374{bottom:163.797173pt;}
.yab_c00374{bottom:164.090976pt;}
.yac_c00374{bottom:164.955061pt;}
.yad_c00374{bottom:165.548896pt;}
.yae_c00374{bottom:165.814432pt;}
.ya1_c00374{bottom:180.595371pt;}
.ya0_c00374{bottom:180.595669pt;}
.ya4_c00374{bottom:180.595797pt;}
.ya2_c00374{bottom:180.595893pt;}
.ya3_c00374{bottom:180.596053pt;}
.ya7_c00374{bottom:180.596085pt;}
.ya5_c00374{bottom:180.596395pt;}
.ya6_c00374{bottom:180.596512pt;}
.y98_c00374{bottom:192.681419pt;}
.y99_c00374{bottom:193.095744pt;}
.y9a_c00374{bottom:193.428555pt;}
.y9b_c00374{bottom:193.980811pt;}
.y9c_c00374{bottom:194.120480pt;}
.y9d_c00374{bottom:194.503947pt;}
.y9e_c00374{bottom:194.889877pt;}
.y9f_c00374{bottom:195.082261pt;}
.y8f_c00374{bottom:207.805888pt;}
.y90_c00374{bottom:208.099328pt;}
.y91_c00374{bottom:208.329301pt;}
.y92_c00374{bottom:208.934389pt;}
.y93_c00374{bottom:209.203915pt;}
.y94_c00374{bottom:209.518037pt;}
.y95_c00374{bottom:210.224149pt;}
.y96_c00374{bottom:210.505952pt;}
.y97_c00374{bottom:210.680587pt;}
.y8a_c00374{bottom:225.418688pt;}
.y8b_c00374{bottom:225.418987pt;}
.y89_c00374{bottom:225.419339pt;}
.y8d_c00374{bottom:225.419381pt;}
.y85_c00374{bottom:225.419499pt;}
.y8c_c00374{bottom:225.419584pt;}
.y8e_c00374{bottom:225.419659pt;}
.y84_c00374{bottom:225.419669pt;}
.y88_c00374{bottom:225.419744pt;}
.y87_c00374{bottom:225.419861pt;}
.y86_c00374{bottom:225.419904pt;}
.y82_c00374{bottom:240.895520pt;}
.y81_c00374{bottom:240.895531pt;}
.y83_c00374{bottom:240.895563pt;}
.y7f_c00374{bottom:240.895648pt;}
.y80_c00374{bottom:240.895659pt;}
.y7e_c00374{bottom:240.896277pt;}
.y78_c00374{bottom:253.893205pt;}
.y79_c00374{bottom:254.654187pt;}
.y7a_c00374{bottom:254.885077pt;}
.y7b_c00374{bottom:255.652555pt;}
.y7c_c00374{bottom:256.026688pt;}
.y7d_c00374{bottom:256.678752pt;}
.y70_c00374{bottom:271.057995pt;}
.y71_c00374{bottom:271.058272pt;}
.y75_c00374{bottom:271.058357pt;}
.y77_c00374{bottom:271.058677pt;}
.y72_c00374{bottom:271.058848pt;}
.y74_c00374{bottom:271.058933pt;}
.y76_c00374{bottom:271.059040pt;}
.y73_c00374{bottom:271.059125pt;}
.y68_c00374{bottom:284.855349pt;}
.y69_c00374{bottom:285.484928pt;}
.y6a_c00374{bottom:285.747093pt;}
.y6b_c00374{bottom:286.449739pt;}
.y6c_c00374{bottom:286.775616pt;}
.y6d_c00374{bottom:286.980181pt;}
.y6e_c00374{bottom:287.595413pt;}
.y6f_c00374{bottom:287.827232pt;}
.y61_c00374{bottom:298.539221pt;}
.y62_c00374{bottom:299.546443pt;}
.y63_c00374{bottom:299.992405pt;}
.y64_c00374{bottom:300.909664pt;}
.y65_c00374{bottom:301.444096pt;}
.y66_c00374{bottom:302.551200pt;}
.y67_c00374{bottom:302.980245pt;}
.y58_c00374{bottom:312.942955pt;}
.y59_c00374{bottom:313.656971pt;}
.y5a_c00374{bottom:314.664683pt;}
.y5b_c00374{bottom:315.023403pt;}
.y5c_c00374{bottom:315.557995pt;}
.y5d_c00374{bottom:316.844085pt;}
.y5e_c00374{bottom:317.150368pt;}
.y5f_c00374{bottom:317.579083pt;}
.y60_c00374{bottom:318.411861pt;}
.y50_c00374{bottom:327.821707pt;}
.y51_c00374{bottom:328.542880pt;}
.y52_c00374{bottom:328.815360pt;}
.y53_c00374{bottom:329.234997pt;}
.y54_c00374{bottom:330.142667pt;}
.y55_c00374{bottom:331.333099pt;}
.y56_c00374{bottom:331.558709pt;}
.y57_c00374{bottom:332.195008pt;}
.y47_c00374{bottom:341.503872pt;}
.y48_c00374{bottom:342.396331pt;}
.y49_c00374{bottom:342.658485pt;}
.y4a_c00374{bottom:343.143723pt;}
.y4b_c00374{bottom:343.534901pt;}
.y4c_c00374{bottom:344.747659pt;}
.y4d_c00374{bottom:345.262571pt;}
.y4e_c00374{bottom:345.596907pt;}
.y4f_c00374{bottom:346.437312pt;}
.y3e_c00374{bottom:356.864757pt;}
.y3f_c00374{bottom:357.141707pt;}
.y40_c00374{bottom:357.717440pt;}
.y41_c00374{bottom:358.594784pt;}
.y42_c00374{bottom:358.782325pt;}
.y43_c00374{bottom:359.480277pt;}
.y44_c00374{bottom:359.777888pt;}
.y45_c00374{bottom:360.658091pt;}
.y46_c00374{bottom:360.867403pt;}
.y36_c00374{bottom:372.946731pt;}
.y37_c00374{bottom:373.611637pt;}
.y38_c00374{bottom:373.777749pt;}
.y39_c00374{bottom:374.269323pt;}
.y3a_c00374{bottom:374.503627pt;}
.y3b_c00374{bottom:374.754528pt;}
.y3c_c00374{bottom:374.946827pt;}
.y3d_c00374{bottom:375.640171pt;}
.y2d_c00374{bottom:387.588427pt;}
.y2e_c00374{bottom:387.966315pt;}
.y2f_c00374{bottom:388.190411pt;}
.y30_c00374{bottom:388.667968pt;}
.y31_c00374{bottom:389.113525pt;}
.y32_c00374{bottom:389.357067pt;}
.y33_c00374{bottom:389.588768pt;}
.y34_c00374{bottom:390.508779pt;}
.y35_c00374{bottom:390.828043pt;}
.y2a_c00374{bottom:404.611744pt;}
.y28_c00374{bottom:404.611776pt;}
.y2c_c00374{bottom:404.611979pt;}
.y2b_c00374{bottom:404.612064pt;}
.y27_c00374{bottom:404.612075pt;}
.y29_c00374{bottom:404.612267pt;}
.y20_c00374{bottom:416.874069pt;}
.y21_c00374{bottom:417.594965pt;}
.y22_c00374{bottom:417.960768pt;}
.y23_c00374{bottom:418.232768pt;}
.y24_c00374{bottom:419.101611pt;}
.y25_c00374{bottom:419.996288pt;}
.y26_c00374{bottom:420.567573pt;}
.y1a_c00374{bottom:431.754411pt;}
.y1b_c00374{bottom:432.365749pt;}
.y1c_c00374{bottom:432.668608pt;}
.y1d_c00374{bottom:433.392597pt;}
.y1e_c00374{bottom:434.062645pt;}
.y1f_c00374{bottom:434.365461pt;}
.y14_c00374{bottom:447.357451pt;}
.y15_c00374{bottom:447.933045pt;}
.y16_c00374{bottom:448.744544pt;}
.y17_c00374{bottom:449.216555pt;}
.y18_c00374{bottom:450.730923pt;}
.y19_c00374{bottom:451.056949pt;}
.yf_c00374{bottom:462.720288pt;}
.y10_c00374{bottom:464.329589pt;}
.y11_c00374{bottom:464.608523pt;}
.y12_c00374{bottom:464.878389pt;}
.y13_c00374{bottom:466.127029pt;}
.y8_c00374{bottom:477.361600pt;}
.y9_c00374{bottom:477.529077pt;}
.ya_c00374{bottom:478.480117pt;}
.yb_c00374{bottom:479.610699pt;}
.yc_c00374{bottom:480.638165pt;}
.yd_c00374{bottom:480.891083pt;}
.ye_c00374{bottom:481.540480pt;}
.y2_c00374{bottom:492.722667pt;}
.y3_c00374{bottom:492.869376pt;}
.y4_c00374{bottom:493.897621pt;}
.y5_c00374{bottom:494.743659pt;}
.y6_c00374{bottom:495.861077pt;}
.y7_c00374{bottom:496.153067pt;}
.y1_c00374{bottom:506.400000pt;}
.he_c00374{height:51.339904pt;}
.hb_c00374{height:52.273356pt;}
.ha_c00374{height:53.206809pt;}
.h7_c00374{height:54.140262pt;}
.h8_c00374{height:55.073715pt;}
.h9_c00374{height:56.007168pt;}
.hc_c00374{height:56.940620pt;}
.h6_c00374{height:57.874073pt;}
.h5_c00374{height:58.807526pt;}
.hf_c00374{height:59.740979pt;}
.h4_c00374{height:60.674432pt;}
.hd_c00374{height:61.607884pt;}
.h3_c00374{height:62.541337pt;}
.h10_c00374{height:65.341695pt;}
.h2_c00374{height:75.600000pt;}
.h0_c00374{height:545.040000pt;}
.h1_c00374{height:545.333333pt;}
.w0_c00374{width:319.200000pt;}
.w1_c00374{width:319.333333pt;}
.x0_c00374{left:0.000000pt;}
.x38_c00374{left:11.999733pt;}
.x11_c00374{left:17.906688pt;}
.x3_c00374{left:19.090667pt;}
.x1d_c00374{left:20.100192pt;}
.x46_c00374{left:21.565440pt;}
.x52_c00374{left:22.803808pt;}
.x58_c00374{left:23.763616pt;}
.x6c_c00374{left:25.141813pt;}
.x75_c00374{left:26.369536pt;}
.x4_c00374{left:28.260000pt;}
.x68_c00374{left:32.021653pt;}
.x17_c00374{left:33.053483pt;}
.x7d_c00374{left:34.295403pt;}
.x32_c00374{left:36.870624pt;}
.x76_c00374{left:37.920011pt;}
.x4b_c00374{left:39.366912pt;}
.x69_c00374{left:42.364981pt;}
.x53_c00374{left:43.686496pt;}
.x5d_c00374{left:48.859093pt;}
.x12_c00374{left:49.880331pt;}
.x72_c00374{left:51.433333pt;}
.x77_c00374{left:54.895733pt;}
.x39_c00374{left:56.608875pt;}
.x23_c00374{left:60.246613pt;}
.x60_c00374{left:62.045131pt;}
.x1e_c00374{left:65.156192pt;}
.x26_c00374{left:66.592245pt;}
.x4c_c00374{left:68.410336pt;}
.x3a_c00374{left:69.742709pt;}
.x33_c00374{left:70.770091pt;}
.x18_c00374{left:73.846144pt;}
.x3e_c00374{left:76.020416pt;}
.x7b_c00374{left:77.764245pt;}
.x2c_c00374{left:79.322037pt;}
.x4f_c00374{left:80.801248pt;}
.x59_c00374{left:83.290848pt;}
.x9_c00374{left:84.926005pt;}
.x1f_c00374{left:88.018859pt;}
.x5_c00374{left:92.525333pt;}
.x19_c00374{left:94.025131pt;}
.x13_c00374{left:94.930880pt;}
.x7a_c00374{left:96.247445pt;}
.x47_c00374{left:98.052437pt;}
.x3f_c00374{left:99.330336pt;}
.x27_c00374{left:103.358016pt;}
.x20_c00374{left:105.018859pt;}
.x42_c00374{left:107.004032pt;}
.x6a_c00374{left:109.806645pt;}
.x3b_c00374{left:113.515893pt;}
.x54_c00374{left:115.455531pt;}
.x5a_c00374{left:117.375573pt;}
.xd_c00374{left:119.253141pt;}
.x14_c00374{left:121.180715pt;}
.x34_c00374{left:122.353259pt;}
.x78_c00374{left:123.775957pt;}
.x43_c00374{left:124.922880pt;}
.x55_c00374{left:129.617824pt;}
.x1_c00374{left:134.160000pt;}
.x49_c00374{left:135.278592pt;}
.xe_c00374{left:136.686475pt;}
.x28_c00374{left:137.623659pt;}
.x2d_c00374{left:139.098816pt;}
.x5e_c00374{left:140.985003pt;}
.x1a_c00374{left:142.275232pt;}
.x64_c00374{left:143.535264pt;}
.x6_c00374{left:145.402667pt;}
.x48_c00374{left:146.295445pt;}
.x56_c00374{left:147.379701pt;}
.x40_c00374{left:149.724715pt;}
.xa_c00374{left:151.419605pt;}
.xf_c00374{left:153.553141pt;}
.x24_c00374{left:155.538997pt;}
.x50_c00374{left:157.619605pt;}
.x21_c00374{left:159.321525pt;}
.x2e_c00374{left:160.411189pt;}
.x65_c00374{left:165.858315pt;}
.x5f_c00374{left:167.202688pt;}
.x6f_c00374{left:170.285013pt;}
.x4d_c00374{left:172.103541pt;}
.x4a_c00374{left:173.182475pt;}
.x29_c00374{left:174.161408pt;}
.x5b_c00374{left:180.742475pt;}
.x6b_c00374{left:181.816587pt;}
.x2f_c00374{left:183.261024pt;}
.x7e_c00374{left:185.722325pt;}
.x1b_c00374{left:186.903936pt;}
.x66_c00374{left:188.901536pt;}
.x61_c00374{left:189.984683pt;}
.x35_c00374{left:191.962816pt;}
.x6d_c00374{left:193.161813pt;}
.x30_c00374{left:200.781099pt;}
.x15_c00374{left:205.326027pt;}
.x1c_c00374{left:207.080256pt;}
.x5c_c00374{left:209.305771pt;}
.xb_c00374{left:211.885312pt;}
.x79_c00374{left:213.253195pt;}
.x7_c00374{left:215.241333pt;}
.x3c_c00374{left:216.634635pt;}
.x70_c00374{left:221.508139pt;}
.x16_c00374{left:223.452117pt;}
.x62_c00374{left:225.024811pt;}
.x2_c00374{left:226.800000pt;}
.x41_c00374{left:228.391531pt;}
.x10_c00374{left:231.593141pt;}
.x8_c00374{left:233.490667pt;}
.x57_c00374{left:235.230187pt;}
.x51_c00374{left:236.594069pt;}
.x4e_c00374{left:237.632309pt;}
.x63_c00374{left:242.550219pt;}
.x36_c00374{left:243.724651pt;}
.x2a_c00374{left:244.915467pt;}
.x73_c00374{left:247.733536pt;}
.x25_c00374{left:249.391019pt;}
.x22_c00374{left:250.944192pt;}
.x44_c00374{left:252.728043pt;}
.x37_c00374{left:256.056459pt;}
.x3d_c00374{left:258.657280pt;}
.x67_c00374{left:261.150699pt;}
.x31_c00374{left:263.870155pt;}
.xc_c00374{left:264.945792pt;}
.x74_c00374{left:268.369557pt;}
.x2b_c00374{left:269.453973pt;}
.x7f_c00374{left:270.936960pt;}
.x71_c00374{left:274.010123pt;}
.x7c_c00374{left:276.509813pt;}
.x6e_c00374{left:278.625813pt;}
.x45_c00374{left:294.357376pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00375 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00375 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00375 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00375 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00375{transform:matrix(0.010840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010840,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141760,0.000000,0.000000,0.250000,0,0);}
.md6_c00375{transform:matrix(0.144760,-0.001737,0.003000,0.249982,0,0);-ms-transform:matrix(0.144760,-0.001737,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144760,-0.001737,0.003000,0.249982,0,0);}
.m0_c00375{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.mb8_c00375{transform:matrix(0.148374,-0.001780,0.003000,0.249982,0,0);-ms-transform:matrix(0.148374,-0.001780,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148374,-0.001780,0.003000,0.249982,0,0);}
.md1_c00375{transform:matrix(0.149454,-0.001793,0.003000,0.249982,0,0);-ms-transform:matrix(0.149454,-0.001793,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149454,-0.001793,0.003000,0.249982,0,0);}
.m85_c00375{transform:matrix(0.154735,-0.002476,0.003999,0.249968,0,0);-ms-transform:matrix(0.154735,-0.002476,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154735,-0.002476,0.003999,0.249968,0,0);}
.md3_c00375{transform:matrix(0.154829,-0.001858,0.003000,0.249982,0,0);-ms-transform:matrix(0.154829,-0.001858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154829,-0.001858,0.003000,0.249982,0,0);}
.mc3_c00375{transform:matrix(0.156279,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156279,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156279,-0.001875,0.003000,0.249982,0,0);}
.m18_c00375{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.mab_c00375{transform:matrix(0.163333,-0.001960,0.003000,0.249982,0,0);-ms-transform:matrix(0.163333,-0.001960,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163333,-0.001960,0.003000,0.249982,0,0);}
.m46_c00375{transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);-ms-transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164144,-0.002626,0.003999,0.249968,0,0);}
.m10_c00375{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.md0_c00375{transform:matrix(0.165848,-0.001990,0.003000,0.249982,0,0);-ms-transform:matrix(0.165848,-0.001990,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165848,-0.001990,0.003000,0.249982,0,0);}
.mef_c00375{transform:matrix(0.166227,-0.003325,0.004999,0.249950,0,0);-ms-transform:matrix(0.166227,-0.003325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166227,-0.003325,0.004999,0.249950,0,0);}
.m40_c00375{transform:matrix(0.166579,-0.002665,0.003999,0.249968,0,0);-ms-transform:matrix(0.166579,-0.002665,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166579,-0.002665,0.003999,0.249968,0,0);}
.m1b_c00375{transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{transform:matrix(0.168103,-0.002690,0.003999,0.249968,0,0);-ms-transform:matrix(0.168103,-0.002690,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168103,-0.002690,0.003999,0.249968,0,0);}
.m55_c00375{transform:matrix(0.168513,-0.002696,0.003999,0.249968,0,0);-ms-transform:matrix(0.168513,-0.002696,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168513,-0.002696,0.003999,0.249968,0,0);}
.m68_c00375{transform:matrix(0.168718,-0.002699,0.003999,0.249968,0,0);-ms-transform:matrix(0.168718,-0.002699,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168718,-0.002699,0.003999,0.249968,0,0);}
.ma9_c00375{transform:matrix(0.168988,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.168988,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168988,-0.002028,0.003000,0.249982,0,0);}
.m50_c00375{transform:matrix(0.169653,-0.002714,0.003999,0.249968,0,0);-ms-transform:matrix(0.169653,-0.002714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169653,-0.002714,0.003999,0.249968,0,0);}
.m3b_c00375{transform:matrix(0.169833,-0.002717,0.003999,0.249968,0,0);-ms-transform:matrix(0.169833,-0.002717,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169833,-0.002717,0.003999,0.249968,0,0);}
.mb7_c00375{transform:matrix(0.170318,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170318,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170318,-0.002044,0.003000,0.249982,0,0);}
.mc2_c00375{transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);-ms-transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170418,-0.002045,0.003000,0.249982,0,0);}
.md2_c00375{transform:matrix(0.170523,-0.002046,0.003000,0.249982,0,0);-ms-transform:matrix(0.170523,-0.002046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170523,-0.002046,0.003000,0.249982,0,0);}
.m49_c00375{transform:matrix(0.170758,-0.002732,0.003999,0.249968,0,0);-ms-transform:matrix(0.170758,-0.002732,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170758,-0.002732,0.003999,0.249968,0,0);}
.mcb_c00375{transform:matrix(0.171123,-0.002053,0.003000,0.249982,0,0);-ms-transform:matrix(0.171123,-0.002053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171123,-0.002053,0.003000,0.249982,0,0);}
.mf0_c00375{transform:matrix(0.171131,-0.003423,0.004999,0.249950,0,0);-ms-transform:matrix(0.171131,-0.003423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171131,-0.003423,0.004999,0.249950,0,0);}
.m63_c00375{transform:matrix(0.171153,-0.002738,0.003999,0.249968,0,0);-ms-transform:matrix(0.171153,-0.002738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171153,-0.002738,0.003999,0.249968,0,0);}
.m76_c00375{transform:matrix(0.171498,-0.002744,0.003999,0.249968,0,0);-ms-transform:matrix(0.171498,-0.002744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171498,-0.002744,0.003999,0.249968,0,0);}
.mc6_c00375{transform:matrix(0.171873,-0.002062,0.003000,0.249982,0,0);-ms-transform:matrix(0.171873,-0.002062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171873,-0.002062,0.003000,0.249982,0,0);}
.m23_c00375{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m86_c00375{transform:matrix(0.171888,-0.002750,0.003999,0.249968,0,0);-ms-transform:matrix(0.171888,-0.002750,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171888,-0.002750,0.003999,0.249968,0,0);}
.md5_c00375{transform:matrix(0.172193,-0.002066,0.003000,0.249982,0,0);-ms-transform:matrix(0.172193,-0.002066,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172193,-0.002066,0.003000,0.249982,0,0);}
.m12_c00375{transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172510,0.000000,0.000000,0.250000,0,0);}
.m41_c00375{transform:matrix(0.172663,-0.002763,0.003999,0.249968,0,0);-ms-transform:matrix(0.172663,-0.002763,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172663,-0.002763,0.003999,0.249968,0,0);}
.m81_c00375{transform:matrix(0.173023,-0.002768,0.003999,0.249968,0,0);-ms-transform:matrix(0.173023,-0.002768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173023,-0.002768,0.003999,0.249968,0,0);}
.mc0_c00375{transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173598,-0.002083,0.003000,0.249982,0,0);}
.ma5_c00375{transform:matrix(0.173702,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173702,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173702,-0.002084,0.003000,0.249982,0,0);}
.mdf_c00375{transform:matrix(0.173782,-0.002085,0.003000,0.249982,0,0);-ms-transform:matrix(0.173782,-0.002085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173782,-0.002085,0.003000,0.249982,0,0);}
.mee_c00375{transform:matrix(0.174720,-0.003494,0.004999,0.249950,0,0);-ms-transform:matrix(0.174720,-0.003494,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174720,-0.003494,0.004999,0.249950,0,0);}
.m35_c00375{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m8f_c00375{transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);-ms-transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175218,-0.002803,0.003999,0.249968,0,0);}
.m5_c00375{transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);}
.m20_c00375{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m28_c00375{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.mcf_c00375{transform:matrix(0.176652,-0.002120,0.003000,0.249982,0,0);-ms-transform:matrix(0.176652,-0.002120,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176652,-0.002120,0.003000,0.249982,0,0);}
.m56_c00375{transform:matrix(0.176867,-0.002830,0.003999,0.249968,0,0);-ms-transform:matrix(0.176867,-0.002830,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176867,-0.002830,0.003999,0.249968,0,0);}
.m47_c00375{transform:matrix(0.177452,-0.002839,0.003999,0.249968,0,0);-ms-transform:matrix(0.177452,-0.002839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177452,-0.002839,0.003999,0.249968,0,0);}
.mc_c00375{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.mc4_c00375{transform:matrix(0.178692,-0.002144,0.003000,0.249982,0,0);-ms-transform:matrix(0.178692,-0.002144,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178692,-0.002144,0.003000,0.249982,0,0);}
.m9e_c00375{transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);-ms-transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178817,-0.002861,0.003999,0.249968,0,0);}
.me4_c00375{transform:matrix(0.178907,-0.002147,0.003000,0.249982,0,0);-ms-transform:matrix(0.178907,-0.002147,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178907,-0.002147,0.003000,0.249982,0,0);}
.m7b_c00375{transform:matrix(0.179222,-0.002868,0.003999,0.249968,0,0);-ms-transform:matrix(0.179222,-0.002868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179222,-0.002868,0.003999,0.249968,0,0);}
.mca_c00375{transform:matrix(0.179347,-0.002152,0.003000,0.249982,0,0);-ms-transform:matrix(0.179347,-0.002152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179347,-0.002152,0.003000,0.249982,0,0);}
.m82_c00375{transform:matrix(0.179627,-0.002874,0.003999,0.249968,0,0);-ms-transform:matrix(0.179627,-0.002874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179627,-0.002874,0.003999,0.249968,0,0);}
.m1f_c00375{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m7a_c00375{transform:matrix(0.180277,-0.002884,0.003999,0.249968,0,0);-ms-transform:matrix(0.180277,-0.002884,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180277,-0.002884,0.003999,0.249968,0,0);}
.m1e_c00375{transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);}
.ma2_c00375{transform:matrix(0.181352,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181352,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181352,-0.002176,0.003000,0.249982,0,0);}
.mb_c00375{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.m64_c00375{transform:matrix(0.181677,-0.002907,0.003999,0.249968,0,0);-ms-transform:matrix(0.181677,-0.002907,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181677,-0.002907,0.003999,0.249968,0,0);}
.me7_c00375{transform:matrix(0.181897,-0.002183,0.003000,0.249982,0,0);-ms-transform:matrix(0.181897,-0.002183,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181897,-0.002183,0.003000,0.249982,0,0);}
.m31_c00375{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00375{transform:matrix(0.182332,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182332,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182332,-0.002917,0.003999,0.249968,0,0);}
.mad_c00375{transform:matrix(0.182387,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182387,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182387,-0.002189,0.003000,0.249982,0,0);}
.m2a_c00375{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.mf1_c00375{transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);-ms-transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183063,-0.003661,0.004999,0.249950,0,0);}
.m52_c00375{transform:matrix(0.183262,-0.002932,0.003999,0.249968,0,0);-ms-transform:matrix(0.183262,-0.002932,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183262,-0.002932,0.003999,0.249968,0,0);}
.ma7_c00375{transform:matrix(0.183357,-0.002200,0.003000,0.249982,0,0);-ms-transform:matrix(0.183357,-0.002200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183357,-0.002200,0.003000,0.249982,0,0);}
.m11_c00375{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{transform:matrix(0.183651,-0.002938,0.003999,0.249968,0,0);-ms-transform:matrix(0.183651,-0.002938,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183651,-0.002938,0.003999,0.249968,0,0);}
.mcd_c00375{transform:matrix(0.183932,-0.002207,0.003000,0.249982,0,0);-ms-transform:matrix(0.183932,-0.002207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183932,-0.002207,0.003000,0.249982,0,0);}
.m21_c00375{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m9f_c00375{transform:matrix(0.184866,-0.002958,0.003999,0.249968,0,0);-ms-transform:matrix(0.184866,-0.002958,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184866,-0.002958,0.003999,0.249968,0,0);}
.ma_c00375{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.me1_c00375{transform:matrix(0.185202,-0.002222,0.003000,0.249982,0,0);-ms-transform:matrix(0.185202,-0.002222,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185202,-0.002222,0.003000,0.249982,0,0);}
.m77_c00375{transform:matrix(0.185276,-0.002964,0.003999,0.249968,0,0);-ms-transform:matrix(0.185276,-0.002964,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185276,-0.002964,0.003999,0.249968,0,0);}
.m45_c00375{transform:matrix(0.185296,-0.002965,0.003999,0.249968,0,0);-ms-transform:matrix(0.185296,-0.002965,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185296,-0.002965,0.003999,0.249968,0,0);}
.ma1_c00375{transform:matrix(0.186647,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186647,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186647,-0.002240,0.003000,0.249982,0,0);}
.m4a_c00375{transform:matrix(0.187001,-0.002992,0.003999,0.249968,0,0);-ms-transform:matrix(0.187001,-0.002992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187001,-0.002992,0.003999,0.249968,0,0);}
.m7f_c00375{transform:matrix(0.187316,-0.002997,0.003999,0.249968,0,0);-ms-transform:matrix(0.187316,-0.002997,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187316,-0.002997,0.003999,0.249968,0,0);}
.m5a_c00375{transform:matrix(0.187566,-0.003001,0.003999,0.249968,0,0);-ms-transform:matrix(0.187566,-0.003001,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187566,-0.003001,0.003999,0.249968,0,0);}
.m66_c00375{transform:matrix(0.188256,-0.003012,0.003999,0.249968,0,0);-ms-transform:matrix(0.188256,-0.003012,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188256,-0.003012,0.003999,0.249968,0,0);}
.mf_c00375{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.m9a_c00375{transform:matrix(0.189141,-0.003026,0.003999,0.249968,0,0);-ms-transform:matrix(0.189141,-0.003026,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189141,-0.003026,0.003999,0.249968,0,0);}
.m8e_c00375{transform:matrix(0.189226,-0.003028,0.003999,0.249968,0,0);-ms-transform:matrix(0.189226,-0.003028,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189226,-0.003028,0.003999,0.249968,0,0);}
.m2d_c00375{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m61_c00375{transform:matrix(0.189396,-0.003030,0.003999,0.249968,0,0);-ms-transform:matrix(0.189396,-0.003030,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189396,-0.003030,0.003999,0.249968,0,0);}
.ma8_c00375{transform:matrix(0.189486,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189486,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189486,-0.002274,0.003000,0.249982,0,0);}
.mb5_c00375{transform:matrix(0.190616,-0.002287,0.003000,0.249982,0,0);-ms-transform:matrix(0.190616,-0.002287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190616,-0.002287,0.003000,0.249982,0,0);}
.m25_c00375{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.mdd_c00375{transform:matrix(0.190966,-0.002292,0.003000,0.249982,0,0);-ms-transform:matrix(0.190966,-0.002292,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190966,-0.002292,0.003000,0.249982,0,0);}
.med_c00375{transform:matrix(0.191042,-0.003821,0.004999,0.249950,0,0);-ms-transform:matrix(0.191042,-0.003821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191042,-0.003821,0.004999,0.249950,0,0);}
.m14_c00375{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00375{transform:matrix(0.191211,-0.003059,0.003999,0.249968,0,0);-ms-transform:matrix(0.191211,-0.003059,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191211,-0.003059,0.003999,0.249968,0,0);}
.maa_c00375{transform:matrix(0.191396,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191396,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191396,-0.002297,0.003000,0.249982,0,0);}
.m6a_c00375{transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191406,-0.003062,0.003999,0.249968,0,0);}
.mdb_c00375{transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191416,-0.002297,0.003000,0.249982,0,0);}
.m83_c00375{transform:matrix(0.191435,-0.003063,0.003999,0.249968,0,0);-ms-transform:matrix(0.191435,-0.003063,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191435,-0.003063,0.003999,0.249968,0,0);}
.m87_c00375{transform:matrix(0.191540,-0.003065,0.003999,0.249968,0,0);-ms-transform:matrix(0.191540,-0.003065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191540,-0.003065,0.003999,0.249968,0,0);}
.m53_c00375{transform:matrix(0.191865,-0.003070,0.003999,0.249968,0,0);-ms-transform:matrix(0.191865,-0.003070,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191865,-0.003070,0.003999,0.249968,0,0);}
.maf_c00375{transform:matrix(0.192311,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192311,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192311,-0.002308,0.003000,0.249982,0,0);}
.m43_c00375{transform:matrix(0.192425,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192425,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192425,-0.003079,0.003999,0.249968,0,0);}
.m97_c00375{transform:matrix(0.192520,-0.003080,0.003999,0.249968,0,0);-ms-transform:matrix(0.192520,-0.003080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192520,-0.003080,0.003999,0.249968,0,0);}
.m19_c00375{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.mae_c00375{transform:matrix(0.192676,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192676,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192676,-0.002312,0.003000,0.249982,0,0);}
.m84_c00375{transform:matrix(0.193335,-0.003093,0.003999,0.249968,0,0);-ms-transform:matrix(0.193335,-0.003093,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193335,-0.003093,0.003999,0.249968,0,0);}
.ma6_c00375{transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193651,-0.002324,0.003000,0.249982,0,0);}
.m8_c00375{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.mbf_c00375{transform:matrix(0.193931,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193931,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193931,-0.002327,0.003000,0.249982,0,0);}
.m58_c00375{transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);-ms-transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193945,-0.003103,0.003999,0.249968,0,0);}
.me8_c00375{transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);}
.m29_c00375{transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194795,0.000000,0.000000,0.250000,0,0);}
.m9d_c00375{transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);-ms-transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195040,-0.003121,0.003999,0.249968,0,0);}
.m4c_c00375{transform:matrix(0.195130,-0.003122,0.003999,0.249968,0,0);-ms-transform:matrix(0.195130,-0.003122,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195130,-0.003122,0.003999,0.249968,0,0);}
.mea_c00375{transform:matrix(0.195146,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195146,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195146,-0.002342,0.003000,0.249982,0,0);}
.m5e_c00375{transform:matrix(0.195345,-0.003126,0.003999,0.249968,0,0);-ms-transform:matrix(0.195345,-0.003126,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195345,-0.003126,0.003999,0.249968,0,0);}
.m2e_c00375{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.mc8_c00375{transform:matrix(0.195726,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195726,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195726,-0.002349,0.003000,0.249982,0,0);}
.m33_c00375{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m71_c00375{transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);-ms-transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);}
.mac_c00375{transform:matrix(0.196756,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196756,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196756,-0.002361,0.003000,0.249982,0,0);}
.m8d_c00375{transform:matrix(0.196850,-0.003150,0.003999,0.249968,0,0);-ms-transform:matrix(0.196850,-0.003150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196850,-0.003150,0.003999,0.249968,0,0);}
.m67_c00375{transform:matrix(0.197385,-0.003158,0.003999,0.249968,0,0);-ms-transform:matrix(0.197385,-0.003158,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197385,-0.003158,0.003999,0.249968,0,0);}
.m89_c00375{transform:matrix(0.197510,-0.003160,0.003999,0.249968,0,0);-ms-transform:matrix(0.197510,-0.003160,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197510,-0.003160,0.003999,0.249968,0,0);}
.m27_c00375{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.me5_c00375{transform:matrix(0.197936,-0.002375,0.003000,0.249982,0,0);-ms-transform:matrix(0.197936,-0.002375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197936,-0.002375,0.003000,0.249982,0,0);}
.m8c_c00375{transform:matrix(0.198460,-0.003175,0.003999,0.249968,0,0);-ms-transform:matrix(0.198460,-0.003175,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198460,-0.003175,0.003999,0.249968,0,0);}
.mc5_c00375{transform:matrix(0.198936,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198936,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198936,-0.002387,0.003000,0.249982,0,0);}
.m6d_c00375{transform:matrix(0.199085,-0.003185,0.003999,0.249968,0,0);-ms-transform:matrix(0.199085,-0.003185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199085,-0.003185,0.003999,0.249968,0,0);}
.m62_c00375{transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);-ms-transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);}
.m51_c00375{transform:matrix(0.199259,-0.003188,0.003999,0.249968,0,0);-ms-transform:matrix(0.199259,-0.003188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199259,-0.003188,0.003999,0.249968,0,0);}
.ma3_c00375{transform:matrix(0.199661,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199661,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199661,-0.002396,0.003000,0.249982,0,0);}
.m5f_c00375{transform:matrix(0.200289,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200289,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200289,-0.003205,0.003999,0.249968,0,0);}
.mc9_c00375{transform:matrix(0.200356,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200356,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200356,-0.002404,0.003000,0.249982,0,0);}
.mdc_c00375{transform:matrix(0.200876,-0.002411,0.003000,0.249982,0,0);-ms-transform:matrix(0.200876,-0.002411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200876,-0.002411,0.003000,0.249982,0,0);}
.me2_c00375{transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);}
.m17_c00375{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m70_c00375{transform:matrix(0.201629,-0.003226,0.003999,0.249968,0,0);-ms-transform:matrix(0.201629,-0.003226,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201629,-0.003226,0.003999,0.249968,0,0);}
.m34_c00375{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00375{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.m57_c00375{transform:matrix(0.203084,-0.003249,0.003999,0.249968,0,0);-ms-transform:matrix(0.203084,-0.003249,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203084,-0.003249,0.003999,0.249968,0,0);}
.mb0_c00375{transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);-ms-transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203240,-0.002439,0.003000,0.249982,0,0);}
.mcc_c00375{transform:matrix(0.203355,-0.002440,0.003000,0.249982,0,0);-ms-transform:matrix(0.203355,-0.002440,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203355,-0.002440,0.003000,0.249982,0,0);}
.me3_c00375{transform:matrix(0.203385,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203385,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203385,-0.002441,0.003000,0.249982,0,0);}
.m1c_c00375{transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);}
.mbc_c00375{transform:matrix(0.203445,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203445,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203445,-0.002441,0.003000,0.249982,0,0);}
.m59_c00375{transform:matrix(0.203994,-0.003264,0.003999,0.249968,0,0);-ms-transform:matrix(0.203994,-0.003264,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203994,-0.003264,0.003999,0.249968,0,0);}
.mc7_c00375{transform:matrix(0.204095,-0.002449,0.003000,0.249982,0,0);-ms-transform:matrix(0.204095,-0.002449,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204095,-0.002449,0.003000,0.249982,0,0);}
.m93_c00375{transform:matrix(0.204194,-0.003267,0.003999,0.249968,0,0);-ms-transform:matrix(0.204194,-0.003267,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204194,-0.003267,0.003999,0.249968,0,0);}
.mb9_c00375{transform:matrix(0.204430,-0.002453,0.003000,0.249982,0,0);-ms-transform:matrix(0.204430,-0.002453,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204430,-0.002453,0.003000,0.249982,0,0);}
.m2f_c00375{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.meb_c00375{transform:matrix(0.205939,-0.004119,0.004999,0.249950,0,0);-ms-transform:matrix(0.205939,-0.004119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205939,-0.004119,0.004999,0.249950,0,0);}
.m42_c00375{transform:matrix(0.206259,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206259,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206259,-0.003300,0.003999,0.249968,0,0);}
.mec_c00375{transform:matrix(0.206264,-0.004125,0.004999,0.249950,0,0);-ms-transform:matrix(0.206264,-0.004125,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206264,-0.004125,0.004999,0.249950,0,0);}
.m9b_c00375{transform:matrix(0.206469,-0.003303,0.003999,0.249968,0,0);-ms-transform:matrix(0.206469,-0.003303,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206469,-0.003303,0.003999,0.249968,0,0);}
.m4b_c00375{transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);}
.m4e_c00375{transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207768,-0.003324,0.003999,0.249968,0,0);}
.me0_c00375{transform:matrix(0.207920,-0.002495,0.003000,0.249982,0,0);-ms-transform:matrix(0.207920,-0.002495,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207920,-0.002495,0.003000,0.249982,0,0);}
.mf3_c00375{transform:matrix(0.208083,-0.004162,0.004999,0.249950,0,0);-ms-transform:matrix(0.208083,-0.004162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208083,-0.004162,0.004999,0.249950,0,0);}
.m7c_c00375{transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);-ms-transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208183,-0.003331,0.003999,0.249968,0,0);}
.mbd_c00375{transform:matrix(0.208785,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208785,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208785,-0.002505,0.003000,0.249982,0,0);}
.m37_c00375{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.mf2_c00375{transform:matrix(0.209173,-0.004183,0.004999,0.249950,0,0);-ms-transform:matrix(0.209173,-0.004183,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209173,-0.004183,0.004999,0.249950,0,0);}
.m88_c00375{transform:matrix(0.209978,-0.003360,0.003999,0.249968,0,0);-ms-transform:matrix(0.209978,-0.003360,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209978,-0.003360,0.003999,0.249968,0,0);}
.m6e_c00375{transform:matrix(0.210508,-0.003368,0.003999,0.249968,0,0);-ms-transform:matrix(0.210508,-0.003368,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210508,-0.003368,0.003999,0.249968,0,0);}
.md_c00375{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.md9_c00375{transform:matrix(0.210840,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210840,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210840,-0.002530,0.003000,0.249982,0,0);}
.m2b_c00375{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m32_c00375{transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211395,0.000000,0.000000,0.250000,0,0);}
.mbb_c00375{transform:matrix(0.212065,-0.002545,0.003000,0.249982,0,0);-ms-transform:matrix(0.212065,-0.002545,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212065,-0.002545,0.003000,0.249982,0,0);}
.mb3_c00375{transform:matrix(0.212215,-0.002547,0.003000,0.249982,0,0);-ms-transform:matrix(0.212215,-0.002547,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212215,-0.002547,0.003000,0.249982,0,0);}
.mb4_c00375{transform:matrix(0.212285,-0.002547,0.003000,0.249982,0,0);-ms-transform:matrix(0.212285,-0.002547,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212285,-0.002547,0.003000,0.249982,0,0);}
.m8a_c00375{transform:matrix(0.212398,-0.003398,0.003999,0.249968,0,0);-ms-transform:matrix(0.212398,-0.003398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212398,-0.003398,0.003999,0.249968,0,0);}
.mde_c00375{transform:matrix(0.212500,-0.002550,0.003000,0.249982,0,0);-ms-transform:matrix(0.212500,-0.002550,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212500,-0.002550,0.003000,0.249982,0,0);}
.me9_c00375{transform:matrix(0.212675,-0.002552,0.003000,0.249982,0,0);-ms-transform:matrix(0.212675,-0.002552,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212675,-0.002552,0.003000,0.249982,0,0);}
.m92_c00375{transform:matrix(0.212698,-0.003403,0.003999,0.249968,0,0);-ms-transform:matrix(0.212698,-0.003403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212698,-0.003403,0.003999,0.249968,0,0);}
.m72_c00375{transform:matrix(0.212883,-0.003406,0.003999,0.249968,0,0);-ms-transform:matrix(0.212883,-0.003406,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212883,-0.003406,0.003999,0.249968,0,0);}
.ma4_c00375{transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);-ms-transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213090,-0.002557,0.003000,0.249982,0,0);}
.m24_c00375{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.mc1_c00375{transform:matrix(0.214285,-0.002571,0.003000,0.249982,0,0);-ms-transform:matrix(0.214285,-0.002571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214285,-0.002571,0.003000,0.249982,0,0);}
.m74_c00375{transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214313,-0.003429,0.003999,0.249968,0,0);}
.m13_c00375{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m75_c00375{transform:matrix(0.215112,-0.003442,0.003999,0.249968,0,0);-ms-transform:matrix(0.215112,-0.003442,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215112,-0.003442,0.003999,0.249968,0,0);}
.m90_c00375{transform:matrix(0.215287,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215287,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215287,-0.003445,0.003999,0.249968,0,0);}
.mba_c00375{transform:matrix(0.217064,-0.002605,0.003000,0.249982,0,0);-ms-transform:matrix(0.217064,-0.002605,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217064,-0.002605,0.003000,0.249982,0,0);}
.m26_c00375{transform:matrix(0.217635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217635,0.000000,0.000000,0.250000,0,0);}
.m91_c00375{transform:matrix(0.217772,-0.003484,0.003999,0.249968,0,0);-ms-transform:matrix(0.217772,-0.003484,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217772,-0.003484,0.003999,0.249968,0,0);}
.m60_c00375{transform:matrix(0.218412,-0.003495,0.003999,0.249968,0,0);-ms-transform:matrix(0.218412,-0.003495,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218412,-0.003495,0.003999,0.249968,0,0);}
.m9_c00375{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.m94_c00375{transform:matrix(0.219762,-0.003516,0.003999,0.249968,0,0);-ms-transform:matrix(0.219762,-0.003516,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219762,-0.003516,0.003999,0.249968,0,0);}
.md8_c00375{transform:matrix(0.219834,-0.002638,0.003000,0.249982,0,0);-ms-transform:matrix(0.219834,-0.002638,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219834,-0.002638,0.003000,0.249982,0,0);}
.m95_c00375{transform:matrix(0.220257,-0.003524,0.003999,0.249968,0,0);-ms-transform:matrix(0.220257,-0.003524,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220257,-0.003524,0.003999,0.249968,0,0);}
.ma0_c00375{transform:matrix(0.220469,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220469,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220469,-0.002646,0.003000,0.249982,0,0);}
.m4d_c00375{transform:matrix(0.221102,-0.003538,0.003999,0.249968,0,0);-ms-transform:matrix(0.221102,-0.003538,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221102,-0.003538,0.003999,0.249968,0,0);}
.m65_c00375{transform:matrix(0.222716,-0.003563,0.003999,0.249968,0,0);-ms-transform:matrix(0.222716,-0.003563,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222716,-0.003563,0.003999,0.249968,0,0);}
.m44_c00375{transform:matrix(0.222991,-0.003568,0.003999,0.249968,0,0);-ms-transform:matrix(0.222991,-0.003568,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222991,-0.003568,0.003999,0.249968,0,0);}
.mce_c00375{transform:matrix(0.224344,-0.002692,0.003000,0.249982,0,0);-ms-transform:matrix(0.224344,-0.002692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224344,-0.002692,0.003000,0.249982,0,0);}
.m78_c00375{transform:matrix(0.225961,-0.003615,0.003999,0.249968,0,0);-ms-transform:matrix(0.225961,-0.003615,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225961,-0.003615,0.003999,0.249968,0,0);}
.mb6_c00375{transform:matrix(0.226049,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226049,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226049,-0.002713,0.003000,0.249982,0,0);}
.m3c_c00375{transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);-ms-transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);}
.m4f_c00375{transform:matrix(0.226391,-0.003622,0.003999,0.249968,0,0);-ms-transform:matrix(0.226391,-0.003622,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226391,-0.003622,0.003999,0.249968,0,0);}
.m3d_c00375{transform:matrix(0.226791,-0.003629,0.003999,0.249968,0,0);-ms-transform:matrix(0.226791,-0.003629,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226791,-0.003629,0.003999,0.249968,0,0);}
.m1d_c00375{transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);}
.md4_c00375{transform:matrix(0.228014,-0.002736,0.003000,0.249982,0,0);-ms-transform:matrix(0.228014,-0.002736,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228014,-0.002736,0.003000,0.249982,0,0);}
.m69_c00375{transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);-ms-transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);}
.m79_c00375{transform:matrix(0.228921,-0.003663,0.003999,0.249968,0,0);-ms-transform:matrix(0.228921,-0.003663,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228921,-0.003663,0.003999,0.249968,0,0);}
.m3e_c00375{transform:matrix(0.228976,-0.003664,0.003999,0.249968,0,0);-ms-transform:matrix(0.228976,-0.003664,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228976,-0.003664,0.003999,0.249968,0,0);}
.mb1_c00375{transform:matrix(0.229548,-0.002755,0.003000,0.249982,0,0);-ms-transform:matrix(0.229548,-0.002755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229548,-0.002755,0.003000,0.249982,0,0);}
.md7_c00375{transform:matrix(0.229828,-0.002758,0.003000,0.249982,0,0);-ms-transform:matrix(0.229828,-0.002758,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229828,-0.002758,0.003000,0.249982,0,0);}
.m8b_c00375{transform:matrix(0.230416,-0.003687,0.003999,0.249968,0,0);-ms-transform:matrix(0.230416,-0.003687,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230416,-0.003687,0.003999,0.249968,0,0);}
.m5c_c00375{transform:matrix(0.230540,-0.003689,0.003999,0.249968,0,0);-ms-transform:matrix(0.230540,-0.003689,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230540,-0.003689,0.003999,0.249968,0,0);}
.m7e_c00375{transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);-ms-transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230705,-0.003691,0.003999,0.249968,0,0);}
.m9c_c00375{transform:matrix(0.232200,-0.003715,0.003999,0.249968,0,0);-ms-transform:matrix(0.232200,-0.003715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232200,-0.003715,0.003999,0.249968,0,0);}
.m6c_c00375{transform:matrix(0.234995,-0.003760,0.003999,0.249968,0,0);-ms-transform:matrix(0.234995,-0.003760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234995,-0.003760,0.003999,0.249968,0,0);}
.m6f_c00375{transform:matrix(0.236210,-0.003779,0.003999,0.249968,0,0);-ms-transform:matrix(0.236210,-0.003779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236210,-0.003779,0.003999,0.249968,0,0);}
.m48_c00375{transform:matrix(0.236620,-0.003786,0.003999,0.249968,0,0);-ms-transform:matrix(0.236620,-0.003786,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236620,-0.003786,0.003999,0.249968,0,0);}
.m3f_c00375{transform:matrix(0.236915,-0.003791,0.003999,0.249968,0,0);-ms-transform:matrix(0.236915,-0.003791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236915,-0.003791,0.003999,0.249968,0,0);}
.mda_c00375{transform:matrix(0.238218,-0.002859,0.003000,0.249982,0,0);-ms-transform:matrix(0.238218,-0.002859,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238218,-0.002859,0.003000,0.249982,0,0);}
.m6_c00375{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m30_c00375{transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);}
.m73_c00375{transform:matrix(0.242669,-0.003883,0.003999,0.249968,0,0);-ms-transform:matrix(0.242669,-0.003883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242669,-0.003883,0.003999,0.249968,0,0);}
.m98_c00375{transform:matrix(0.242909,-0.003887,0.003999,0.249968,0,0);-ms-transform:matrix(0.242909,-0.003887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242909,-0.003887,0.003999,0.249968,0,0);}
.m2_c00375{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.mbe_c00375{transform:matrix(0.254522,-0.003054,0.003000,0.249982,0,0);-ms-transform:matrix(0.254522,-0.003054,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254522,-0.003054,0.003000,0.249982,0,0);}
.m80_c00375{transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);-ms-transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);}
.m5b_c00375{transform:matrix(0.257057,-0.004113,0.003999,0.249968,0,0);-ms-transform:matrix(0.257057,-0.004113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257057,-0.004113,0.003999,0.249968,0,0);}
.me6_c00375{transform:matrix(0.257271,-0.003087,0.003000,0.249982,0,0);-ms-transform:matrix(0.257271,-0.003087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257271,-0.003087,0.003000,0.249982,0,0);}
.m6b_c00375{transform:matrix(0.258482,-0.004136,0.003999,0.249968,0,0);-ms-transform:matrix(0.258482,-0.004136,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258482,-0.004136,0.003999,0.249968,0,0);}
.mb2_c00375{transform:matrix(0.261876,-0.003143,0.003000,0.249982,0,0);-ms-transform:matrix(0.261876,-0.003143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261876,-0.003143,0.003000,0.249982,0,0);}
.m3a_c00375{transform:matrix(0.265746,-0.004252,0.003999,0.249968,0,0);-ms-transform:matrix(0.265746,-0.004252,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265746,-0.004252,0.003999,0.249968,0,0);}
.m96_c00375{transform:matrix(0.286193,-0.004579,0.003999,0.249968,0,0);-ms-transform:matrix(0.286193,-0.004579,0.003999,0.249968,0,0);-webkit-transform:matrix(0.286193,-0.004579,0.003999,0.249968,0,0);}
.m1a_c00375{transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
.fc0_c00375{color:transparent;}
.fs0_c00375{font-size:22.050000px;}
.fs1_c00375{font-size:33.600000px;}
.fsf_c00375{font-size:57.757392px;}
.fs8_c00375{font-size:58.807526px;}
.fs7_c00375{font-size:59.850000px;}
.fs14_c00375{font-size:59.854309px;}
.fs11_c00375{font-size:59.857660px;}
.fs6_c00375{font-size:60.900000px;}
.fs13_c00375{font-size:60.904385px;}
.fse_c00375{font-size:60.907795px;}
.fs3_c00375{font-size:61.950000px;}
.fs16_c00375{font-size:61.954460px;}
.fsd_c00375{font-size:61.957929px;}
.fs19_c00375{font-size:63.004536px;}
.fs9_c00375{font-size:63.008063px;}
.fs18_c00375{font-size:64.054611px;}
.fsa_c00375{font-size:64.058198px;}
.fsc_c00375{font-size:65.108332px;}
.fs5_c00375{font-size:66.150000px;}
.fs17_c00375{font-size:66.154763px;}
.fsb_c00375{font-size:66.158467px;}
.fs12_c00375{font-size:68.254914px;}
.fs10_c00375{font-size:68.258735px;}
.fs1b_c00375{font-size:68.263649px;}
.fs4_c00375{font-size:69.300000px;}
.fs1a_c00375{font-size:69.304989px;}
.fs15_c00375{font-size:71.405141px;}
.fs2_c00375{font-size:78.750000px;}
.y0_c00375{bottom:0.000000px;}
.ye8_c00375{bottom:21.334500px;}
.ye9_c00375{bottom:22.355100px;}
.yea_c00375{bottom:23.526570px;}
.yeb_c00375{bottom:23.727090px;}
.yec_c00375{bottom:24.294180px;}
.yed_c00375{bottom:24.767340px;}
.yee_c00375{bottom:25.244280px;}
.yef_c00375{bottom:25.609680px;}
.yf0_c00375{bottom:26.797440px;}
.ye1_c00375{bottom:38.865930px;}
.ye2_c00375{bottom:39.148638px;}
.ye3_c00375{bottom:40.010970px;}
.ye4_c00375{bottom:40.245282px;}
.ye5_c00375{bottom:40.884378px;}
.ye6_c00375{bottom:41.201412px;}
.ye7_c00375{bottom:42.569400px;}
.yda_c00375{bottom:54.800112px;}
.ydb_c00375{bottom:55.594398px;}
.ydc_c00375{bottom:56.651514px;}
.ydd_c00375{bottom:56.989134px;}
.yde_c00375{bottom:57.783204px;}
.ydf_c00375{bottom:58.797636px;}
.ye0_c00375{bottom:59.230482px;}
.yd3_c00375{bottom:71.811642px;}
.yd4_c00375{bottom:73.098036px;}
.yd5_c00375{bottom:73.344138px;}
.yd6_c00375{bottom:74.490972px;}
.yd7_c00375{bottom:75.369930px;}
.yd8_c00375{bottom:75.744450px;}
.yd9_c00375{bottom:76.847646px;}
.ycc_c00375{bottom:88.822314px;}
.ycd_c00375{bottom:89.258712px;}
.yce_c00375{bottom:89.852676px;}
.ycf_c00375{bottom:91.019046px;}
.yd0_c00375{bottom:92.579694px;}
.yd1_c00375{bottom:93.438756px;}
.yd2_c00375{bottom:94.056762px;}
.yc4_c00375{bottom:105.832974px;}
.yc5_c00375{bottom:106.583532px;}
.yc6_c00375{bottom:107.129298px;}
.yc7_c00375{bottom:107.621604px;}
.yc8_c00375{bottom:107.880432px;}
.yc9_c00375{bottom:109.158954px;}
.yca_c00375{bottom:109.841910px;}
.ycb_c00375{bottom:110.005872px;}
.ybd_c00375{bottom:122.575518px;}
.ybe_c00375{bottom:123.214920px;}
.ybf_c00375{bottom:123.546906px;}
.yc0_c00375{bottom:124.432602px;}
.yc1_c00375{bottom:124.838340px;}
.yc2_c00375{bottom:125.927598px;}
.yc3_c00375{bottom:126.417390px;}
.yb5_c00375{bottom:139.587426px;}
.yb6_c00375{bottom:139.960914px;}
.yb7_c00375{bottom:141.001836px;}
.yb8_c00375{bottom:141.190320px;}
.yb9_c00375{bottom:141.984750px;}
.yba_c00375{bottom:142.310862px;}
.ybb_c00375{bottom:143.898438px;}
.ybc_c00375{bottom:144.301734px;}
.yab_c00375{bottom:157.139424px;}
.yac_c00375{bottom:157.438002px;}
.yad_c00375{bottom:157.739928px;}
.yae_c00375{bottom:158.353098px;}
.yaf_c00375{bottom:159.043980px;}
.yb0_c00375{bottom:160.028448px;}
.yb1_c00375{bottom:160.206432px;}
.yb2_c00375{bottom:161.006034px;}
.yb3_c00375{bottom:161.307276px;}
.yb4_c00375{bottom:161.545080px;}
.ya2_c00375{bottom:174.689832px;}
.ya3_c00375{bottom:175.107882px;}
.ya4_c00375{bottom:175.321776px;}
.ya5_c00375{bottom:175.989198px;}
.ya6_c00375{bottom:176.289906px;}
.ya7_c00375{bottom:176.653416px;}
.ya8_c00375{bottom:177.151602px;}
.ya9_c00375{bottom:177.275568px;}
.yaa_c00375{bottom:177.981762px;}
.y9c_c00375{bottom:193.051500px;}
.y9d_c00375{bottom:193.388514px;}
.y9e_c00375{bottom:194.399358px;}
.y9f_c00375{bottom:194.658612px;}
.ya0_c00375{bottom:195.481590px;}
.ya1_c00375{bottom:195.811962px;}
.y93_c00375{bottom:209.495148px;}
.y94_c00375{bottom:210.261552px;}
.y95_c00375{bottom:210.447000px;}
.y96_c00375{bottom:210.673296px;}
.y97_c00375{bottom:211.044060px;}
.y98_c00375{bottom:211.587420px;}
.y99_c00375{bottom:211.750260px;}
.y9a_c00375{bottom:212.476176px;}
.y9b_c00375{bottom:212.736900px;}
.y8a_c00375{bottom:226.234812px;}
.y8b_c00375{bottom:226.546560px;}
.y8c_c00375{bottom:226.724700px;}
.y8d_c00375{bottom:227.013252px;}
.y8e_c00375{bottom:227.596668px;}
.y8f_c00375{bottom:227.836296px;}
.y90_c00375{bottom:228.455796px;}
.y91_c00375{bottom:228.813432px;}
.y92_c00375{bottom:229.639296px;}
.y84_c00375{bottom:242.168616px;}
.y85_c00375{bottom:243.305808px;}
.y86_c00375{bottom:244.623648px;}
.y87_c00375{bottom:244.998552px;}
.y88_c00375{bottom:246.320544px;}
.y89_c00375{bottom:247.019736px;}
.y7d_c00375{bottom:259.450128px;}
.y7e_c00375{bottom:260.414784px;}
.y7f_c00375{bottom:260.749884px;}
.y80_c00375{bottom:262.103592px;}
.y81_c00375{bottom:262.379556px;}
.y82_c00375{bottom:262.796772px;}
.y83_c00375{bottom:263.679768px;}
.y72_c00375{bottom:275.653920px;}
.y73_c00375{bottom:276.111864px;}
.y74_c00375{bottom:276.532980px;}
.y75_c00375{bottom:277.452636px;}
.y76_c00375{bottom:278.128332px;}
.y77_c00375{bottom:278.435112px;}
.y78_c00375{bottom:279.149700px;}
.y79_c00375{bottom:279.473844px;}
.y7a_c00375{bottom:280.027824px;}
.y7b_c00375{bottom:280.260804px;}
.y7c_c00375{bottom:280.806660px;}
.y6b_c00375{bottom:292.128468px;}
.y6c_c00375{bottom:293.880396px;}
.y6d_c00375{bottom:294.950148px;}
.y6e_c00375{bottom:295.415580px;}
.y6f_c00375{bottom:296.153904px;}
.y70_c00375{bottom:297.288432px;}
.y71_c00375{bottom:297.752400px;}
.y66_c00375{bottom:309.410688px;}
.y67_c00375{bottom:311.010000px;}
.y68_c00375{bottom:311.616504px;}
.y69_c00375{bottom:312.858396px;}
.y6a_c00375{bottom:314.547996px;}
.y5d_c00375{bottom:326.153556px;}
.y5e_c00375{bottom:326.764152px;}
.y5f_c00375{bottom:327.350316px;}
.y60_c00375{bottom:328.431876px;}
.y61_c00375{bottom:328.711140px;}
.y62_c00375{bottom:329.018328px;}
.y63_c00375{bottom:330.095628px;}
.y64_c00375{bottom:330.520224px;}
.y65_c00375{bottom:331.359204px;}
.y56_c00375{bottom:343.705188px;}
.y57_c00375{bottom:344.223840px;}
.y58_c00375{bottom:345.308796px;}
.y59_c00375{bottom:346.206900px;}
.y5a_c00375{bottom:347.152260px;}
.y5b_c00375{bottom:348.720984px;}
.y5c_c00375{bottom:348.970980px;}
.y50_c00375{bottom:360.714696px;}
.y51_c00375{bottom:361.167192px;}
.y52_c00375{bottom:362.153208px;}
.y53_c00375{bottom:363.777492px;}
.y54_c00375{bottom:364.317984px;}
.y55_c00375{bottom:365.257548px;}
.y4b_c00375{bottom:377.729688px;}
.y4c_c00375{bottom:379.236828px;}
.y4d_c00375{bottom:381.277356px;}
.y4e_c00375{bottom:381.654780px;}
.y4f_c00375{bottom:382.475472px;}
.y44_c00375{bottom:394.738884px;}
.y45_c00375{bottom:395.206344px;}
.y46_c00375{bottom:396.057036px;}
.y47_c00375{bottom:397.183368px;}
.y48_c00375{bottom:397.679580px;}
.y49_c00375{bottom:398.729940px;}
.y4a_c00375{bottom:399.929616px;}
.y3b_c00375{bottom:411.749604px;}
.y3c_c00375{bottom:412.120008px;}
.y3d_c00375{bottom:412.431108px;}
.y3e_c00375{bottom:413.291556px;}
.y3f_c00375{bottom:413.641476px;}
.y40_c00375{bottom:414.855756px;}
.y41_c00375{bottom:415.697004px;}
.y42_c00375{bottom:416.104980px;}
.y43_c00375{bottom:416.965956px;}
.y35_c00375{bottom:429.843000px;}
.y36_c00375{bottom:430.261224px;}
.y37_c00375{bottom:430.724088px;}
.y38_c00375{bottom:431.518872px;}
.y39_c00375{bottom:432.167208px;}
.y3a_c00375{bottom:432.966792px;}
.y34_c00375{bottom:446.760000px;}
.y2c_c00375{bottom:462.517500px;}
.y2d_c00375{bottom:462.798000px;}
.y2e_c00375{bottom:463.623000px;}
.y2f_c00375{bottom:463.969500px;}
.y30_c00375{bottom:464.980500px;}
.y31_c00375{bottom:465.408000px;}
.y32_c00375{bottom:466.078500px;}
.y33_c00375{bottom:467.032500px;}
.y24_c00375{bottom:478.989000px;}
.y25_c00375{bottom:479.935500px;}
.y26_c00375{bottom:480.643500px;}
.y27_c00375{bottom:481.168500px;}
.y28_c00375{bottom:481.492500px;}
.y29_c00375{bottom:483.055500px;}
.y2a_c00375{bottom:483.583500px;}
.y2b_c00375{bottom:484.123500px;}
.y1d_c00375{bottom:495.727500px;}
.y1e_c00375{bottom:496.626000px;}
.y1f_c00375{bottom:498.225000px;}
.y20_c00375{bottom:499.014000px;}
.y21_c00375{bottom:499.573500px;}
.y22_c00375{bottom:499.996500px;}
.y23_c00375{bottom:501.205500px;}
.y15_c00375{bottom:512.466000px;}
.y16_c00375{bottom:513.298500px;}
.y17_c00375{bottom:513.763500px;}
.y18_c00375{bottom:514.366500px;}
.y19_c00375{bottom:515.637000px;}
.y1a_c00375{bottom:516.102000px;}
.y1b_c00375{bottom:516.636000px;}
.y1c_c00375{bottom:517.674000px;}
.ye_c00375{bottom:529.204500px;}
.yf_c00375{bottom:530.236500px;}
.y10_c00375{bottom:530.916000px;}
.y11_c00375{bottom:531.490500px;}
.y12_c00375{bottom:532.288500px;}
.y13_c00375{bottom:533.005500px;}
.y14_c00375{bottom:534.444000px;}
.y4_c00375{bottom:546.216000px;}
.y5_c00375{bottom:546.855000px;}
.y6_c00375{bottom:547.143000px;}
.y7_c00375{bottom:547.582500px;}
.y8_c00375{bottom:548.835000px;}
.y9_c00375{bottom:549.096000px;}
.ya_c00375{bottom:549.528000px;}
.yb_c00375{bottom:550.260000px;}
.yc_c00375{bottom:551.103000px;}
.yd_c00375{bottom:551.548500px;}
.y3_c00375{bottom:563.431500px;}
.y2_c00375{bottom:593.190000px;}
.y1_c00375{bottom:599.670000px;}
.h2_c00375{height:22.050000px;}
.h3_c00375{height:33.600000px;}
.h11_c00375{height:57.757392px;}
.ha_c00375{height:58.807526px;}
.h9_c00375{height:59.850000px;}
.h16_c00375{height:59.854309px;}
.h13_c00375{height:59.857660px;}
.h8_c00375{height:60.900000px;}
.h15_c00375{height:60.904385px;}
.h10_c00375{height:60.907795px;}
.h5_c00375{height:61.950000px;}
.h18_c00375{height:61.954460px;}
.hf_c00375{height:61.957929px;}
.h1b_c00375{height:63.004536px;}
.hb_c00375{height:63.008063px;}
.h1a_c00375{height:64.054611px;}
.hc_c00375{height:64.058198px;}
.he_c00375{height:65.108332px;}
.h7_c00375{height:66.150000px;}
.h19_c00375{height:66.154763px;}
.hd_c00375{height:66.158467px;}
.h14_c00375{height:68.254914px;}
.h12_c00375{height:68.258735px;}
.h1d_c00375{height:68.263649px;}
.h6_c00375{height:69.300000px;}
.h1c_c00375{height:69.304989px;}
.h17_c00375{height:71.405141px;}
.h4_c00375{height:78.750000px;}
.h0_c00375{height:613.170000px;}
.h1_c00375{height:613.500000px;}
.w0_c00375{width:359.100000px;}
.w1_c00375{width:359.250000px;}
.x0_c00375{left:0.000000px;}
.x6_c00375{left:37.809000px;}
.x36_c00375{left:38.836740px;}
.x5e_c00375{left:40.129212px;}
.x25_c00375{left:55.015500px;}
.x30_c00375{left:58.290192px;}
.x6d_c00375{left:61.014390px;}
.x2b_c00375{left:63.382500px;}
.x37_c00375{left:64.770900px;}
.x7_c00375{left:66.865500px;}
.x43_c00375{left:68.479644px;}
.x29_c00375{left:70.198500px;}
.x65_c00375{left:74.133576px;}
.x31_c00375{left:75.577140px;}
.x6a_c00375{left:76.887858px;}
.x16_c00375{left:78.237000px;}
.x8_c00375{left:79.932000px;}
.x71_c00375{left:81.718794px;}
.x1c_c00375{left:85.023000px;}
.x10_c00375{left:87.223500px;}
.x76_c00375{left:88.487598px;}
.x2c_c00375{left:89.521500px;}
.x66_c00375{left:91.958076px;}
.x62_c00375{left:93.303000px;}
.x55_c00375{left:94.962240px;}
.x44_c00375{left:96.393912px;}
.x9_c00375{left:99.931500px;}
.x57_c00375{left:102.551856px;}
.x72_c00375{left:103.883502px;}
.x26_c00375{left:106.563000px;}
.x5f_c00375{left:108.153396px;}
.x75_c00375{left:110.542260px;}
.x38_c00375{left:112.031388px;}
.x3a_c00375{left:114.225504px;}
.x49_c00375{left:115.546692px;}
.x2d_c00375{left:118.450500px;}
.x11_c00375{left:119.553000px;}
.x79_c00375{left:120.560190px;}
.x4c_c00375{left:122.315928px;}
.x20_c00375{left:124.332000px;}
.x17_c00375{left:129.064500px;}
.x6e_c00375{left:133.335552px;}
.x7a_c00375{left:137.335794px;}
.x50_c00375{left:138.722904px;}
.x32_c00375{left:142.785480px;}
.x3_c00375{left:144.720000px;}
.x12_c00375{left:146.878500px;}
.x60_c00375{left:150.814764px;}
.x21_c00375{left:151.965000px;}
.x77_c00375{left:154.577430px;}
.xa_c00375{left:156.874500px;}
.x6b_c00375{left:158.429952px;}
.x45_c00375{left:161.190228px;}
.x40_c00375{left:163.896060px;}
.x73_c00375{left:166.791030px;}
.xb_c00375{left:168.754500px;}
.x5a_c00375{left:172.097604px;}
.x4d_c00375{left:173.233848px;}
.x39_c00375{left:174.643896px;}
.x46_c00375{left:175.794552px;}
.x63_c00375{left:177.540000px;}
.x6f_c00375{left:180.035244px;}
.x2a_c00375{left:183.058500px;}
.x13_c00375{left:184.846500px;}
.xc_c00375{left:188.383500px;}
.x18_c00375{left:189.529500px;}
.x27_c00375{left:191.347500px;}
.x51_c00375{left:193.282152px;}
.x56_c00375{left:194.323656px;}
.x4e_c00375{left:195.384072px;}
.x58_c00375{left:196.532832px;}
.x1_c00375{left:200.070000px;}
.x2_c00375{left:202.230000px;}
.x4a_c00375{left:203.595660px;}
.x7b_c00375{left:205.636656px;}
.x2e_c00375{left:208.645500px;}
.x33_c00375{left:210.238320px;}
.x19_c00375{left:211.636500px;}
.x3b_c00375{left:216.251976px;}
.x14_c00375{left:218.992500px;}
.xd_c00375{left:221.689500px;}
.x5b_c00375{left:223.663392px;}
.x78_c00375{left:225.381546px;}
.x47_c00375{left:227.090448px;}
.x3e_c00375{left:228.409368px;}
.x4f_c00375{left:230.557764px;}
.x52_c00375{left:232.973880px;}
.x3c_c00375{left:235.152276px;}
.x1a_c00375{left:237.051000px;}
.x1d_c00375{left:240.171000px;}
.x67_c00375{left:244.443576px;}
.x48_c00375{left:247.344840px;}
.x22_c00375{left:251.242500px;}
.x5c_c00375{left:253.423788px;}
.x68_c00375{left:254.774076px;}
.x34_c00375{left:257.002332px;}
.x2f_c00375{left:258.619500px;}
.xe_c00375{left:260.017500px;}
.x1e_c00375{left:262.416000px;}
.x64_c00375{left:267.726000px;}
.x4_c00375{left:269.460000px;}
.x61_c00375{left:271.808652px;}
.x3d_c00375{left:276.224160px;}
.x3f_c00375{left:277.848492px;}
.x23_c00375{left:279.067500px;}
.xf_c00375{left:280.263000px;}
.x53_c00375{left:281.761320px;}
.x4b_c00375{left:284.064228px;}
.x1b_c00375{left:286.462500px;}
.x15_c00375{left:287.463000px;}
.x41_c00375{left:289.612020px;}
.x70_c00375{left:292.627494px;}
.x54_c00375{left:294.728412px;}
.x6c_c00375{left:299.906166px;}
.x42_c00375{left:302.142228px;}
.x7c_c00375{left:303.383316px;}
.x24_c00375{left:307.494000px;}
.x59_c00375{left:308.790732px;}
.x7d_c00375{left:310.380000px;}
.x69_c00375{left:313.623576px;}
.x5_c00375{left:315.630000px;}
.x28_c00375{left:319.603500px;}
.x5d_c00375{left:322.294704px;}
.x1f_c00375{left:326.041500px;}
.x35_c00375{left:327.497076px;}
.x74_c00375{left:329.632836px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs0_c00375{font-size:19.600000pt;}
.fs1_c00375{font-size:29.866667pt;}
.fsf_c00375{font-size:51.339904pt;}
.fs8_c00375{font-size:52.273356pt;}
.fs7_c00375{font-size:53.200000pt;}
.fs14_c00375{font-size:53.203830pt;}
.fs11_c00375{font-size:53.206809pt;}
.fs6_c00375{font-size:54.133333pt;}
.fs13_c00375{font-size:54.137231pt;}
.fse_c00375{font-size:54.140262pt;}
.fs3_c00375{font-size:55.066667pt;}
.fs16_c00375{font-size:55.070631pt;}
.fsd_c00375{font-size:55.073715pt;}
.fs19_c00375{font-size:56.004032pt;}
.fs9_c00375{font-size:56.007168pt;}
.fs18_c00375{font-size:56.937432pt;}
.fsa_c00375{font-size:56.940620pt;}
.fsc_c00375{font-size:57.874073pt;}
.fs5_c00375{font-size:58.800000pt;}
.fs17_c00375{font-size:58.804233pt;}
.fsb_c00375{font-size:58.807526pt;}
.fs12_c00375{font-size:60.671035pt;}
.fs10_c00375{font-size:60.674432pt;}
.fs1b_c00375{font-size:60.678799pt;}
.fs4_c00375{font-size:61.600000pt;}
.fs1a_c00375{font-size:61.604435pt;}
.fs15_c00375{font-size:63.471236pt;}
.fs2_c00375{font-size:70.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.ye8_c00375{bottom:18.964000pt;}
.ye9_c00375{bottom:19.871200pt;}
.yea_c00375{bottom:20.912507pt;}
.yeb_c00375{bottom:21.090747pt;}
.yec_c00375{bottom:21.594827pt;}
.yed_c00375{bottom:22.015413pt;}
.yee_c00375{bottom:22.439360pt;}
.yef_c00375{bottom:22.764160pt;}
.yf0_c00375{bottom:23.819947pt;}
.ye1_c00375{bottom:34.547493pt;}
.ye2_c00375{bottom:34.798789pt;}
.ye3_c00375{bottom:35.565307pt;}
.ye4_c00375{bottom:35.773584pt;}
.ye5_c00375{bottom:36.341669pt;}
.ye6_c00375{bottom:36.623477pt;}
.ye7_c00375{bottom:37.839467pt;}
.yda_c00375{bottom:48.711211pt;}
.ydb_c00375{bottom:49.417243pt;}
.ydc_c00375{bottom:50.356901pt;}
.ydd_c00375{bottom:50.657008pt;}
.yde_c00375{bottom:51.362848pt;}
.ydf_c00375{bottom:52.264565pt;}
.ye0_c00375{bottom:52.649317pt;}
.yd3_c00375{bottom:63.832571pt;}
.yd4_c00375{bottom:64.976032pt;}
.yd5_c00375{bottom:65.194789pt;}
.yd6_c00375{bottom:66.214197pt;}
.yd7_c00375{bottom:66.995493pt;}
.yd8_c00375{bottom:67.328400pt;}
.yd9_c00375{bottom:68.309019pt;}
.ycc_c00375{bottom:78.953168pt;}
.ycd_c00375{bottom:79.341077pt;}
.yce_c00375{bottom:79.869045pt;}
.ycf_c00375{bottom:80.905819pt;}
.yd0_c00375{bottom:82.293061pt;}
.yd1_c00375{bottom:83.056672pt;}
.yd2_c00375{bottom:83.606011pt;}
.yc4_c00375{bottom:94.073755pt;}
.yc5_c00375{bottom:94.740917pt;}
.yc6_c00375{bottom:95.226043pt;}
.yc7_c00375{bottom:95.663648pt;}
.yc8_c00375{bottom:95.893717pt;}
.yc9_c00375{bottom:97.030181pt;}
.yca_c00375{bottom:97.637253pt;}
.ycb_c00375{bottom:97.782997pt;}
.ybd_c00375{bottom:108.956016pt;}
.ybe_c00375{bottom:109.524373pt;}
.ybf_c00375{bottom:109.819472pt;}
.yc0_c00375{bottom:110.606757pt;}
.yc1_c00375{bottom:110.967413pt;}
.yc2_c00375{bottom:111.935643pt;}
.yc3_c00375{bottom:112.371013pt;}
.yb5_c00375{bottom:124.077712pt;}
.yb6_c00375{bottom:124.409701pt;}
.yb7_c00375{bottom:125.334965pt;}
.yb8_c00375{bottom:125.502507pt;}
.yb9_c00375{bottom:126.208667pt;}
.yba_c00375{bottom:126.498544pt;}
.ybb_c00375{bottom:127.909723pt;}
.ybc_c00375{bottom:128.268208pt;}
.yab_c00375{bottom:139.679488pt;}
.yac_c00375{bottom:139.944891pt;}
.yad_c00375{bottom:140.213269pt;}
.yae_c00375{bottom:140.758309pt;}
.yaf_c00375{bottom:141.372427pt;}
.yb0_c00375{bottom:142.247509pt;}
.yb1_c00375{bottom:142.405717pt;}
.yb2_c00375{bottom:143.116475pt;}
.yb3_c00375{bottom:143.384245pt;}
.yb4_c00375{bottom:143.595627pt;}
.ya2_c00375{bottom:155.279851pt;}
.ya3_c00375{bottom:155.651451pt;}
.ya4_c00375{bottom:155.841579pt;}
.ya5_c00375{bottom:156.434843pt;}
.ya6_c00375{bottom:156.702139pt;}
.ya7_c00375{bottom:157.025259pt;}
.ya8_c00375{bottom:157.468091pt;}
.ya9_c00375{bottom:157.578283pt;}
.yaa_c00375{bottom:158.206011pt;}
.y9c_c00375{bottom:171.601333pt;}
.y9d_c00375{bottom:171.900901pt;}
.y9e_c00375{bottom:172.799429pt;}
.y9f_c00375{bottom:173.029877pt;}
.ya0_c00375{bottom:173.761413pt;}
.ya1_c00375{bottom:174.055077pt;}
.y93_c00375{bottom:186.217909pt;}
.y94_c00375{bottom:186.899157pt;}
.y95_c00375{bottom:187.064000pt;}
.y96_c00375{bottom:187.265152pt;}
.y97_c00375{bottom:187.594720pt;}
.y98_c00375{bottom:188.077707pt;}
.y99_c00375{bottom:188.222453pt;}
.y9a_c00375{bottom:188.867712pt;}
.y9b_c00375{bottom:189.099467pt;}
.y8a_c00375{bottom:201.097611pt;}
.y8b_c00375{bottom:201.374720pt;}
.y8c_c00375{bottom:201.533067pt;}
.y8d_c00375{bottom:201.789557pt;}
.y8e_c00375{bottom:202.308149pt;}
.y8f_c00375{bottom:202.521152pt;}
.y90_c00375{bottom:203.071819pt;}
.y91_c00375{bottom:203.389717pt;}
.y92_c00375{bottom:204.123819pt;}
.y84_c00375{bottom:215.260992pt;}
.y85_c00375{bottom:216.271829pt;}
.y86_c00375{bottom:217.443243pt;}
.y87_c00375{bottom:217.776491pt;}
.y88_c00375{bottom:218.951595pt;}
.y89_c00375{bottom:219.573099pt;}
.y7d_c00375{bottom:230.622336pt;}
.y7e_c00375{bottom:231.479808pt;}
.y7f_c00375{bottom:231.777675pt;}
.y80_c00375{bottom:232.980971pt;}
.y81_c00375{bottom:233.226272pt;}
.y82_c00375{bottom:233.597131pt;}
.y83_c00375{bottom:234.382016pt;}
.y72_c00375{bottom:245.025707pt;}
.y73_c00375{bottom:245.432768pt;}
.y74_c00375{bottom:245.807093pt;}
.y75_c00375{bottom:246.624565pt;}
.y76_c00375{bottom:247.225184pt;}
.y77_c00375{bottom:247.497877pt;}
.y78_c00375{bottom:248.133067pt;}
.y79_c00375{bottom:248.421195pt;}
.y7a_c00375{bottom:248.913621pt;}
.y7b_c00375{bottom:249.120715pt;}
.y7c_c00375{bottom:249.605920pt;}
.y6b_c00375{bottom:259.669749pt;}
.y6c_c00375{bottom:261.227019pt;}
.y6d_c00375{bottom:262.177909pt;}
.y6e_c00375{bottom:262.591627pt;}
.y6f_c00375{bottom:263.247915pt;}
.y70_c00375{bottom:264.256384pt;}
.y71_c00375{bottom:264.668800pt;}
.y66_c00375{bottom:275.031723pt;}
.y67_c00375{bottom:276.453333pt;}
.y68_c00375{bottom:276.992448pt;}
.y69_c00375{bottom:278.096352pt;}
.y6a_c00375{bottom:279.598219pt;}
.y5d_c00375{bottom:289.914272pt;}
.y5e_c00375{bottom:290.457024pt;}
.y5f_c00375{bottom:290.978059pt;}
.y60_c00375{bottom:291.939445pt;}
.y61_c00375{bottom:292.187680pt;}
.y62_c00375{bottom:292.460736pt;}
.y63_c00375{bottom:293.418336pt;}
.y64_c00375{bottom:293.795755pt;}
.y65_c00375{bottom:294.541515pt;}
.y56_c00375{bottom:305.515723pt;}
.y57_c00375{bottom:305.976747pt;}
.y58_c00375{bottom:306.941152pt;}
.y59_c00375{bottom:307.739467pt;}
.y5a_c00375{bottom:308.579787pt;}
.y5b_c00375{bottom:309.974208pt;}
.y5c_c00375{bottom:310.196427pt;}
.y50_c00375{bottom:320.635285pt;}
.y51_c00375{bottom:321.037504pt;}
.y52_c00375{bottom:321.913963pt;}
.y53_c00375{bottom:323.357771pt;}
.y54_c00375{bottom:323.838208pt;}
.y55_c00375{bottom:324.673376pt;}
.y4b_c00375{bottom:335.759723pt;}
.y4c_c00375{bottom:337.099403pt;}
.y4d_c00375{bottom:338.913205pt;}
.y4e_c00375{bottom:339.248693pt;}
.y4f_c00375{bottom:339.978197pt;}
.y44_c00375{bottom:350.879008pt;}
.y45_c00375{bottom:351.294528pt;}
.y46_c00375{bottom:352.050699pt;}
.y47_c00375{bottom:353.051883pt;}
.y48_c00375{bottom:353.492960pt;}
.y49_c00375{bottom:354.426613pt;}
.y4a_c00375{bottom:355.492992pt;}
.y3b_c00375{bottom:365.999648pt;}
.y3c_c00375{bottom:366.328896pt;}
.y3d_c00375{bottom:366.605429pt;}
.y3e_c00375{bottom:367.370272pt;}
.y3f_c00375{bottom:367.681312pt;}
.y40_c00375{bottom:368.760672pt;}
.y41_c00375{bottom:369.508448pt;}
.y42_c00375{bottom:369.871093pt;}
.y43_c00375{bottom:370.636405pt;}
.y35_c00375{bottom:382.082667pt;}
.y36_c00375{bottom:382.454421pt;}
.y37_c00375{bottom:382.865856pt;}
.y38_c00375{bottom:383.572331pt;}
.y39_c00375{bottom:384.148629pt;}
.y3a_c00375{bottom:384.859371pt;}
.y34_c00375{bottom:397.120000pt;}
.y2c_c00375{bottom:411.126667pt;}
.y2d_c00375{bottom:411.376000pt;}
.y2e_c00375{bottom:412.109333pt;}
.y2f_c00375{bottom:412.417333pt;}
.y30_c00375{bottom:413.316000pt;}
.y31_c00375{bottom:413.696000pt;}
.y32_c00375{bottom:414.292000pt;}
.y33_c00375{bottom:415.140000pt;}
.y24_c00375{bottom:425.768000pt;}
.y25_c00375{bottom:426.609333pt;}
.y26_c00375{bottom:427.238667pt;}
.y27_c00375{bottom:427.705333pt;}
.y28_c00375{bottom:427.993333pt;}
.y29_c00375{bottom:429.382667pt;}
.y2a_c00375{bottom:429.852000pt;}
.y2b_c00375{bottom:430.332000pt;}
.y1d_c00375{bottom:440.646667pt;}
.y1e_c00375{bottom:441.445333pt;}
.y1f_c00375{bottom:442.866667pt;}
.y20_c00375{bottom:443.568000pt;}
.y21_c00375{bottom:444.065333pt;}
.y22_c00375{bottom:444.441333pt;}
.y23_c00375{bottom:445.516000pt;}
.y15_c00375{bottom:455.525333pt;}
.y16_c00375{bottom:456.265333pt;}
.y17_c00375{bottom:456.678667pt;}
.y18_c00375{bottom:457.214667pt;}
.y19_c00375{bottom:458.344000pt;}
.y1a_c00375{bottom:458.757333pt;}
.y1b_c00375{bottom:459.232000pt;}
.y1c_c00375{bottom:460.154667pt;}
.ye_c00375{bottom:470.404000pt;}
.yf_c00375{bottom:471.321333pt;}
.y10_c00375{bottom:471.925333pt;}
.y11_c00375{bottom:472.436000pt;}
.y12_c00375{bottom:473.145333pt;}
.y13_c00375{bottom:473.782667pt;}
.y14_c00375{bottom:475.061333pt;}
.y4_c00375{bottom:485.525333pt;}
.y5_c00375{bottom:486.093333pt;}
.y6_c00375{bottom:486.349333pt;}
.y7_c00375{bottom:486.740000pt;}
.y8_c00375{bottom:487.853333pt;}
.y9_c00375{bottom:488.085333pt;}
.ya_c00375{bottom:488.469333pt;}
.yb_c00375{bottom:489.120000pt;}
.yc_c00375{bottom:489.869333pt;}
.yd_c00375{bottom:490.265333pt;}
.y3_c00375{bottom:500.828000pt;}
.y2_c00375{bottom:527.280000pt;}
.y1_c00375{bottom:533.040000pt;}
.h2_c00375{height:19.600000pt;}
.h3_c00375{height:29.866667pt;}
.h11_c00375{height:51.339904pt;}
.ha_c00375{height:52.273356pt;}
.h9_c00375{height:53.200000pt;}
.h16_c00375{height:53.203830pt;}
.h13_c00375{height:53.206809pt;}
.h8_c00375{height:54.133333pt;}
.h15_c00375{height:54.137231pt;}
.h10_c00375{height:54.140262pt;}
.h5_c00375{height:55.066667pt;}
.h18_c00375{height:55.070631pt;}
.hf_c00375{height:55.073715pt;}
.h1b_c00375{height:56.004032pt;}
.hb_c00375{height:56.007168pt;}
.h1a_c00375{height:56.937432pt;}
.hc_c00375{height:56.940620pt;}
.he_c00375{height:57.874073pt;}
.h7_c00375{height:58.800000pt;}
.h19_c00375{height:58.804233pt;}
.hd_c00375{height:58.807526pt;}
.h14_c00375{height:60.671035pt;}
.h12_c00375{height:60.674432pt;}
.h1d_c00375{height:60.678799pt;}
.h6_c00375{height:61.600000pt;}
.h1c_c00375{height:61.604435pt;}
.h17_c00375{height:63.471236pt;}
.h4_c00375{height:70.000000pt;}
.h0_c00375{height:545.040000pt;}
.h1_c00375{height:545.333333pt;}
.w0_c00375{width:319.200000pt;}
.w1_c00375{width:319.333333pt;}
.x0_c00375{left:0.000000pt;}
.x6_c00375{left:33.608000pt;}
.x36_c00375{left:34.521547pt;}
.x5e_c00375{left:35.670411pt;}
.x25_c00375{left:48.902667pt;}
.x30_c00375{left:51.813504pt;}
.x6d_c00375{left:54.235013pt;}
.x2b_c00375{left:56.340000pt;}
.x37_c00375{left:57.574133pt;}
.x7_c00375{left:59.436000pt;}
.x43_c00375{left:60.870795pt;}
.x29_c00375{left:62.398667pt;}
.x65_c00375{left:65.896512pt;}
.x31_c00375{left:67.179680pt;}
.x6a_c00375{left:68.344763pt;}
.x16_c00375{left:69.544000pt;}
.x8_c00375{left:71.050667pt;}
.x71_c00375{left:72.638928pt;}
.x1c_c00375{left:75.576000pt;}
.x10_c00375{left:77.532000pt;}
.x76_c00375{left:78.655643pt;}
.x2c_c00375{left:79.574667pt;}
.x66_c00375{left:81.740512pt;}
.x62_c00375{left:82.936000pt;}
.x55_c00375{left:84.410880pt;}
.x44_c00375{left:85.683477pt;}
.x9_c00375{left:88.828000pt;}
.x57_c00375{left:91.157205pt;}
.x72_c00375{left:92.340891pt;}
.x26_c00375{left:94.722667pt;}
.x5f_c00375{left:96.136352pt;}
.x75_c00375{left:98.259787pt;}
.x38_c00375{left:99.583456pt;}
.x3a_c00375{left:101.533781pt;}
.x49_c00375{left:102.708171pt;}
.x2d_c00375{left:105.289333pt;}
.x11_c00375{left:106.269333pt;}
.x79_c00375{left:107.164613pt;}
.x4c_c00375{left:108.725269pt;}
.x20_c00375{left:110.517333pt;}
.x17_c00375{left:114.724000pt;}
.x6e_c00375{left:118.520491pt;}
.x7a_c00375{left:122.076261pt;}
.x50_c00375{left:123.309248pt;}
.x32_c00375{left:126.920427pt;}
.x3_c00375{left:128.640000pt;}
.x12_c00375{left:130.558667pt;}
.x60_c00375{left:134.057568pt;}
.x21_c00375{left:135.080000pt;}
.x77_c00375{left:137.402160pt;}
.xa_c00375{left:139.444000pt;}
.x6b_c00375{left:140.826624pt;}
.x45_c00375{left:143.280203pt;}
.x40_c00375{left:145.685387pt;}
.x73_c00375{left:148.258693pt;}
.xb_c00375{left:150.004000pt;}
.x5a_c00375{left:152.975648pt;}
.x4d_c00375{left:153.985643pt;}
.x39_c00375{left:155.239019pt;}
.x46_c00375{left:156.261824pt;}
.x63_c00375{left:157.813333pt;}
.x6f_c00375{left:160.031328pt;}
.x2a_c00375{left:162.718667pt;}
.x13_c00375{left:164.308000pt;}
.xc_c00375{left:167.452000pt;}
.x18_c00375{left:168.470667pt;}
.x27_c00375{left:170.086667pt;}
.x51_c00375{left:171.806357pt;}
.x56_c00375{left:172.732139pt;}
.x4e_c00375{left:173.674731pt;}
.x58_c00375{left:174.695851pt;}
.x1_c00375{left:177.840000pt;}
.x2_c00375{left:179.760000pt;}
.x4a_c00375{left:180.973920pt;}
.x7b_c00375{left:182.788139pt;}
.x2e_c00375{left:185.462667pt;}
.x33_c00375{left:186.878507pt;}
.x19_c00375{left:188.121333pt;}
.x3b_c00375{left:192.223979pt;}
.x14_c00375{left:194.660000pt;}
.xd_c00375{left:197.057333pt;}
.x5b_c00375{left:198.811904pt;}
.x78_c00375{left:200.339152pt;}
.x47_c00375{left:201.858176pt;}
.x3e_c00375{left:203.030549pt;}
.x4f_c00375{left:204.940235pt;}
.x52_c00375{left:207.087893pt;}
.x3c_c00375{left:209.024245pt;}
.x1a_c00375{left:210.712000pt;}
.x1d_c00375{left:213.485333pt;}
.x67_c00375{left:217.283179pt;}
.x48_c00375{left:219.862080pt;}
.x22_c00375{left:223.326667pt;}
.x5c_c00375{left:225.265589pt;}
.x68_c00375{left:226.465845pt;}
.x34_c00375{left:228.446517pt;}
.x2f_c00375{left:229.884000pt;}
.xe_c00375{left:231.126667pt;}
.x1e_c00375{left:233.258667pt;}
.x64_c00375{left:237.978667pt;}
.x4_c00375{left:239.520000pt;}
.x61_c00375{left:241.607691pt;}
.x3d_c00375{left:245.532587pt;}
.x3f_c00375{left:246.976437pt;}
.x23_c00375{left:248.060000pt;}
.xf_c00375{left:249.122667pt;}
.x53_c00375{left:250.454507pt;}
.x4b_c00375{left:252.501536pt;}
.x1b_c00375{left:254.633333pt;}
.x15_c00375{left:255.522667pt;}
.x41_c00375{left:257.432907pt;}
.x70_c00375{left:260.113328pt;}
.x54_c00375{left:261.980811pt;}
.x6c_c00375{left:266.583259pt;}
.x42_c00375{left:268.570869pt;}
.x7c_c00375{left:269.674059pt;}
.x24_c00375{left:273.328000pt;}
.x59_c00375{left:274.480651pt;}
.x7d_c00375{left:275.893333pt;}
.x69_c00375{left:278.776512pt;}
.x5_c00375{left:280.560000pt;}
.x28_c00375{left:284.092000pt;}
.x5d_c00375{left:286.484181pt;}
.x1f_c00375{left:289.814667pt;}
.x35_c00375{left:291.108512pt;}
.x74_c00375{left:293.006965pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00376 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00376 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00376 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00376 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00376.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00376{transform:matrix(0.026364,-0.000924,0.008753,0.249847,0,0);-ms-transform:matrix(0.026364,-0.000924,0.008753,0.249847,0,0);-webkit-transform:matrix(0.026364,-0.000924,0.008753,0.249847,0,0);}
.m3d_c00376{transform:matrix(0.051009,-0.001787,0.008753,0.249847,0,0);-ms-transform:matrix(0.051009,-0.001787,0.008753,0.249847,0,0);-webkit-transform:matrix(0.051009,-0.001787,0.008753,0.249847,0,0);}
.m40_c00376{transform:matrix(0.127802,-0.004478,0.008753,0.249847,0,0);-ms-transform:matrix(0.127802,-0.004478,0.008753,0.249847,0,0);-webkit-transform:matrix(0.127802,-0.004478,0.008753,0.249847,0,0);}
.mac_c00376{transform:matrix(0.128612,-0.003858,0.007497,0.249888,0,0);-ms-transform:matrix(0.128612,-0.003858,0.007497,0.249888,0,0);-webkit-transform:matrix(0.128612,-0.003858,0.007497,0.249888,0,0);}
.mc7_c00376{transform:matrix(0.131191,-0.003936,0.007497,0.249888,0,0);-ms-transform:matrix(0.131191,-0.003936,0.007497,0.249888,0,0);-webkit-transform:matrix(0.131191,-0.003936,0.007497,0.249888,0,0);}
.mf5_c00376{transform:matrix(0.144585,-0.004338,0.007497,0.249888,0,0);-ms-transform:matrix(0.144585,-0.004338,0.007497,0.249888,0,0);-webkit-transform:matrix(0.144585,-0.004338,0.007497,0.249888,0,0);}
.m6e_c00376{transform:matrix(0.148209,-0.005193,0.008753,0.249847,0,0);-ms-transform:matrix(0.148209,-0.005193,0.008753,0.249847,0,0);-webkit-transform:matrix(0.148209,-0.005193,0.008753,0.249847,0,0);}
.mba_c00376{transform:matrix(0.148978,-0.004469,0.007497,0.249888,0,0);-ms-transform:matrix(0.148978,-0.004469,0.007497,0.249888,0,0);-webkit-transform:matrix(0.148978,-0.004469,0.007497,0.249888,0,0);}
.mf3_c00376{transform:matrix(0.153121,-0.004594,0.007497,0.249888,0,0);-ms-transform:matrix(0.153121,-0.004594,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153121,-0.004594,0.007497,0.249888,0,0);}
.mbb_c00376{transform:matrix(0.153631,-0.004609,0.007497,0.249888,0,0);-ms-transform:matrix(0.153631,-0.004609,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153631,-0.004609,0.007497,0.249888,0,0);}
.mc6_c00376{transform:matrix(0.153806,-0.004614,0.007497,0.249888,0,0);-ms-transform:matrix(0.153806,-0.004614,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153806,-0.004614,0.007497,0.249888,0,0);}
.m73_c00376{transform:matrix(0.154265,-0.005405,0.008753,0.249847,0,0);-ms-transform:matrix(0.154265,-0.005405,0.008753,0.249847,0,0);-webkit-transform:matrix(0.154265,-0.005405,0.008753,0.249847,0,0);}
.m1c_c00376{transform:matrix(0.157094,-0.005504,0.008753,0.249847,0,0);-ms-transform:matrix(0.157094,-0.005504,0.008753,0.249847,0,0);-webkit-transform:matrix(0.157094,-0.005504,0.008753,0.249847,0,0);}
.m83_c00376{transform:matrix(0.157373,-0.005514,0.008753,0.249847,0,0);-ms-transform:matrix(0.157373,-0.005514,0.008753,0.249847,0,0);-webkit-transform:matrix(0.157373,-0.005514,0.008753,0.249847,0,0);}
.m76_c00376{transform:matrix(0.157648,-0.005523,0.008753,0.249847,0,0);-ms-transform:matrix(0.157648,-0.005523,0.008753,0.249847,0,0);-webkit-transform:matrix(0.157648,-0.005523,0.008753,0.249847,0,0);}
.mc3_c00376{transform:matrix(0.159648,-0.004789,0.007497,0.249888,0,0);-ms-transform:matrix(0.159648,-0.004789,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159648,-0.004789,0.007497,0.249888,0,0);}
.md3_c00376{transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);-ms-transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);}
.m75_c00376{transform:matrix(0.161441,-0.005656,0.008753,0.249847,0,0);-ms-transform:matrix(0.161441,-0.005656,0.008753,0.249847,0,0);-webkit-transform:matrix(0.161441,-0.005656,0.008753,0.249847,0,0);}
.mbf_c00376{transform:matrix(0.161487,-0.004845,0.007497,0.249888,0,0);-ms-transform:matrix(0.161487,-0.004845,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161487,-0.004845,0.007497,0.249888,0,0);}
.m4f_c00376{transform:matrix(0.163335,-0.005722,0.008753,0.249847,0,0);-ms-transform:matrix(0.163335,-0.005722,0.008753,0.249847,0,0);-webkit-transform:matrix(0.163335,-0.005722,0.008753,0.249847,0,0);}
.mf0_c00376{transform:matrix(0.163906,-0.004917,0.007497,0.249888,0,0);-ms-transform:matrix(0.163906,-0.004917,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163906,-0.004917,0.007497,0.249888,0,0);}
.mad_c00376{transform:matrix(0.163961,-0.004919,0.007497,0.249888,0,0);-ms-transform:matrix(0.163961,-0.004919,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163961,-0.004919,0.007497,0.249888,0,0);}
.mf1_c00376{transform:matrix(0.164311,-0.004929,0.007497,0.249888,0,0);-ms-transform:matrix(0.164311,-0.004929,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164311,-0.004929,0.007497,0.249888,0,0);}
.mbc_c00376{transform:matrix(0.165191,-0.004956,0.007497,0.249888,0,0);-ms-transform:matrix(0.165191,-0.004956,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165191,-0.004956,0.007497,0.249888,0,0);}
.m1_c00376{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.167107,-0.005855,0.008753,0.249847,0,0);-ms-transform:matrix(0.167107,-0.005855,0.008753,0.249847,0,0);-webkit-transform:matrix(0.167107,-0.005855,0.008753,0.249847,0,0);}
.ma4_c00376{transform:matrix(0.167295,-0.005019,0.007497,0.249888,0,0);-ms-transform:matrix(0.167295,-0.005019,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167295,-0.005019,0.007497,0.249888,0,0);}
.mc0_c00376{transform:matrix(0.168124,-0.005044,0.007497,0.249888,0,0);-ms-transform:matrix(0.168124,-0.005044,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168124,-0.005044,0.007497,0.249888,0,0);}
.mb0_c00376{transform:matrix(0.168454,-0.005054,0.007497,0.249888,0,0);-ms-transform:matrix(0.168454,-0.005054,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168454,-0.005054,0.007497,0.249888,0,0);}
.mc4_c00376{transform:matrix(0.168904,-0.005067,0.007497,0.249888,0,0);-ms-transform:matrix(0.168904,-0.005067,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168904,-0.005067,0.007497,0.249888,0,0);}
.mb9_c00376{transform:matrix(0.169759,-0.005093,0.007497,0.249888,0,0);-ms-transform:matrix(0.169759,-0.005093,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169759,-0.005093,0.007497,0.249888,0,0);}
.mf2_c00376{transform:matrix(0.170183,-0.005106,0.007497,0.249888,0,0);-ms-transform:matrix(0.170183,-0.005106,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170183,-0.005106,0.007497,0.249888,0,0);}
.mde_c00376{transform:matrix(0.170543,-0.005116,0.007497,0.249888,0,0);-ms-transform:matrix(0.170543,-0.005116,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170543,-0.005116,0.007497,0.249888,0,0);}
.m9b_c00376{transform:matrix(0.171180,-0.005997,0.008753,0.249847,0,0);-ms-transform:matrix(0.171180,-0.005997,0.008753,0.249847,0,0);-webkit-transform:matrix(0.171180,-0.005997,0.008753,0.249847,0,0);}
.m13_c00376{transform:matrix(0.172384,-0.006039,0.008753,0.249847,0,0);-ms-transform:matrix(0.172384,-0.006039,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172384,-0.006039,0.008753,0.249847,0,0);}
.m1a_c00376{transform:matrix(0.172389,-0.006040,0.008753,0.249847,0,0);-ms-transform:matrix(0.172389,-0.006040,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172389,-0.006040,0.008753,0.249847,0,0);}
.m98_c00376{transform:matrix(0.172409,-0.006040,0.008753,0.249847,0,0);-ms-transform:matrix(0.172409,-0.006040,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172409,-0.006040,0.008753,0.249847,0,0);}
.med_c00376{transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);-ms-transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172567,-0.005177,0.007497,0.249888,0,0);}
.mf4_c00376{transform:matrix(0.172572,-0.005177,0.007497,0.249888,0,0);-ms-transform:matrix(0.172572,-0.005177,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172572,-0.005177,0.007497,0.249888,0,0);}
.mef_c00376{transform:matrix(0.172712,-0.005181,0.007497,0.249888,0,0);-ms-transform:matrix(0.172712,-0.005181,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172712,-0.005181,0.007497,0.249888,0,0);}
.m60_c00376{transform:matrix(0.173983,-0.006096,0.008753,0.249847,0,0);-ms-transform:matrix(0.173983,-0.006096,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173983,-0.006096,0.008753,0.249847,0,0);}
.m9f_c00376{transform:matrix(0.174323,-0.006107,0.008753,0.249847,0,0);-ms-transform:matrix(0.174323,-0.006107,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174323,-0.006107,0.008753,0.249847,0,0);}
.mae_c00376{transform:matrix(0.174327,-0.005230,0.007497,0.249888,0,0);-ms-transform:matrix(0.174327,-0.005230,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174327,-0.005230,0.007497,0.249888,0,0);}
.m86_c00376{transform:matrix(0.175148,-0.006136,0.008753,0.249847,0,0);-ms-transform:matrix(0.175148,-0.006136,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175148,-0.006136,0.008753,0.249847,0,0);}
.mc1_c00376{transform:matrix(0.175181,-0.005255,0.007497,0.249888,0,0);-ms-transform:matrix(0.175181,-0.005255,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175181,-0.005255,0.007497,0.249888,0,0);}
.mb_c00376{transform:matrix(0.176242,-0.006175,0.008753,0.249847,0,0);-ms-transform:matrix(0.176242,-0.006175,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176242,-0.006175,0.008753,0.249847,0,0);}
.m85_c00376{transform:matrix(0.176337,-0.006178,0.008753,0.249847,0,0);-ms-transform:matrix(0.176337,-0.006178,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176337,-0.006178,0.008753,0.249847,0,0);}
.mbe_c00376{transform:matrix(0.176710,-0.005301,0.007497,0.249888,0,0);-ms-transform:matrix(0.176710,-0.005301,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176710,-0.005301,0.007497,0.249888,0,0);}
.m49_c00376{transform:matrix(0.177131,-0.006206,0.008753,0.249847,0,0);-ms-transform:matrix(0.177131,-0.006206,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177131,-0.006206,0.008753,0.249847,0,0);}
.m78_c00376{transform:matrix(0.177761,-0.006228,0.008753,0.249847,0,0);-ms-transform:matrix(0.177761,-0.006228,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177761,-0.006228,0.008753,0.249847,0,0);}
.m8_c00376{transform:matrix(0.178530,-0.006255,0.008753,0.249847,0,0);-ms-transform:matrix(0.178530,-0.006255,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178530,-0.006255,0.008753,0.249847,0,0);}
.me9_c00376{transform:matrix(0.178770,-0.005363,0.007497,0.249888,0,0);-ms-transform:matrix(0.178770,-0.005363,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178770,-0.005363,0.007497,0.249888,0,0);}
.m26_c00376{transform:matrix(0.178785,-0.006264,0.008753,0.249847,0,0);-ms-transform:matrix(0.178785,-0.006264,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178785,-0.006264,0.008753,0.249847,0,0);}
.m87_c00376{transform:matrix(0.179045,-0.006273,0.008753,0.249847,0,0);-ms-transform:matrix(0.179045,-0.006273,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179045,-0.006273,0.008753,0.249847,0,0);}
.mf6_c00376{transform:matrix(0.179249,-0.005377,0.007497,0.249888,0,0);-ms-transform:matrix(0.179249,-0.005377,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179249,-0.005377,0.007497,0.249888,0,0);}
.mdb_c00376{transform:matrix(0.179259,-0.005378,0.007497,0.249888,0,0);-ms-transform:matrix(0.179259,-0.005378,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179259,-0.005378,0.007497,0.249888,0,0);}
.m6a_c00376{transform:matrix(0.179875,-0.006302,0.008753,0.249847,0,0);-ms-transform:matrix(0.179875,-0.006302,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179875,-0.006302,0.008753,0.249847,0,0);}
.mc2_c00376{transform:matrix(0.180194,-0.005406,0.007497,0.249888,0,0);-ms-transform:matrix(0.180194,-0.005406,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180194,-0.005406,0.007497,0.249888,0,0);}
.ma9_c00376{transform:matrix(0.180324,-0.005410,0.007497,0.249888,0,0);-ms-transform:matrix(0.180324,-0.005410,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180324,-0.005410,0.007497,0.249888,0,0);}
.mdd_c00376{transform:matrix(0.180764,-0.005423,0.007497,0.249888,0,0);-ms-transform:matrix(0.180764,-0.005423,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180764,-0.005423,0.007497,0.249888,0,0);}
.m96_c00376{transform:matrix(0.181589,-0.006362,0.008753,0.249847,0,0);-ms-transform:matrix(0.181589,-0.006362,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181589,-0.006362,0.008753,0.249847,0,0);}
.md2_c00376{transform:matrix(0.182808,-0.005484,0.007497,0.249888,0,0);-ms-transform:matrix(0.182808,-0.005484,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182808,-0.005484,0.007497,0.249888,0,0);}
.m57_c00376{transform:matrix(0.182828,-0.006405,0.008753,0.249847,0,0);-ms-transform:matrix(0.182828,-0.006405,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182828,-0.006405,0.008753,0.249847,0,0);}
.me0_c00376{transform:matrix(0.183228,-0.005497,0.007497,0.249888,0,0);-ms-transform:matrix(0.183228,-0.005497,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183228,-0.005497,0.007497,0.249888,0,0);}
.mbd_c00376{transform:matrix(0.183807,-0.005514,0.007497,0.249888,0,0);-ms-transform:matrix(0.183807,-0.005514,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183807,-0.005514,0.007497,0.249888,0,0);}
.maa_c00376{transform:matrix(0.184182,-0.005525,0.007497,0.249888,0,0);-ms-transform:matrix(0.184182,-0.005525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184182,-0.005525,0.007497,0.249888,0,0);}
.m53_c00376{transform:matrix(0.184747,-0.006473,0.008753,0.249847,0,0);-ms-transform:matrix(0.184747,-0.006473,0.008753,0.249847,0,0);-webkit-transform:matrix(0.184747,-0.006473,0.008753,0.249847,0,0);}
.m2d_c00376{transform:matrix(0.185101,-0.006485,0.008753,0.249847,0,0);-ms-transform:matrix(0.185101,-0.006485,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185101,-0.006485,0.008753,0.249847,0,0);}
.m7_c00376{transform:matrix(0.185151,-0.006487,0.008753,0.249847,0,0);-ms-transform:matrix(0.185151,-0.006487,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185151,-0.006487,0.008753,0.249847,0,0);}
.m24_c00376{transform:matrix(0.185491,-0.006499,0.008753,0.249847,0,0);-ms-transform:matrix(0.185491,-0.006499,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185491,-0.006499,0.008753,0.249847,0,0);}
.mc5_c00376{transform:matrix(0.185497,-0.005565,0.007497,0.249888,0,0);-ms-transform:matrix(0.185497,-0.005565,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185497,-0.005565,0.007497,0.249888,0,0);}
.m9a_c00376{transform:matrix(0.186601,-0.006538,0.008753,0.249847,0,0);-ms-transform:matrix(0.186601,-0.006538,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186601,-0.006538,0.008753,0.249847,0,0);}
.mb6_c00376{transform:matrix(0.186831,-0.005605,0.007497,0.249888,0,0);-ms-transform:matrix(0.186831,-0.005605,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186831,-0.005605,0.007497,0.249888,0,0);}
.m31_c00376{transform:matrix(0.186940,-0.006549,0.008753,0.249847,0,0);-ms-transform:matrix(0.186940,-0.006549,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186940,-0.006549,0.008753,0.249847,0,0);}
.mf_c00376{transform:matrix(0.187275,-0.006561,0.008753,0.249847,0,0);-ms-transform:matrix(0.187275,-0.006561,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187275,-0.006561,0.008753,0.249847,0,0);}
.m72_c00376{transform:matrix(0.187310,-0.006562,0.008753,0.249847,0,0);-ms-transform:matrix(0.187310,-0.006562,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187310,-0.006562,0.008753,0.249847,0,0);}
.ma8_c00376{transform:matrix(0.187326,-0.005620,0.007497,0.249888,0,0);-ms-transform:matrix(0.187326,-0.005620,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187326,-0.005620,0.007497,0.249888,0,0);}
.m2c_c00376{transform:matrix(0.187590,-0.006572,0.008753,0.249847,0,0);-ms-transform:matrix(0.187590,-0.006572,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187590,-0.006572,0.008753,0.249847,0,0);}
.m4a_c00376{transform:matrix(0.188304,-0.006597,0.008753,0.249847,0,0);-ms-transform:matrix(0.188304,-0.006597,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188304,-0.006597,0.008753,0.249847,0,0);}
.m32_c00376{transform:matrix(0.188569,-0.006607,0.008753,0.249847,0,0);-ms-transform:matrix(0.188569,-0.006607,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188569,-0.006607,0.008753,0.249847,0,0);}
.m4d_c00376{transform:matrix(0.189019,-0.006622,0.008753,0.249847,0,0);-ms-transform:matrix(0.189019,-0.006622,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189019,-0.006622,0.008753,0.249847,0,0);}
.m6c_c00376{transform:matrix(0.189309,-0.006632,0.008753,0.249847,0,0);-ms-transform:matrix(0.189309,-0.006632,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189309,-0.006632,0.008753,0.249847,0,0);}
.mcf_c00376{transform:matrix(0.189700,-0.005691,0.007497,0.249888,0,0);-ms-transform:matrix(0.189700,-0.005691,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189700,-0.005691,0.007497,0.249888,0,0);}
.m1b_c00376{transform:matrix(0.189719,-0.006647,0.008753,0.249847,0,0);-ms-transform:matrix(0.189719,-0.006647,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189719,-0.006647,0.008753,0.249847,0,0);}
.m2e_c00376{transform:matrix(0.189814,-0.006650,0.008753,0.249847,0,0);-ms-transform:matrix(0.189814,-0.006650,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189814,-0.006650,0.008753,0.249847,0,0);}
.mcc_c00376{transform:matrix(0.189995,-0.005700,0.007497,0.249888,0,0);-ms-transform:matrix(0.189995,-0.005700,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189995,-0.005700,0.007497,0.249888,0,0);}
.mec_c00376{transform:matrix(0.190924,-0.005728,0.007497,0.249888,0,0);-ms-transform:matrix(0.190924,-0.005728,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190924,-0.005728,0.007497,0.249888,0,0);}
.m33_c00376{transform:matrix(0.191328,-0.006703,0.008753,0.249847,0,0);-ms-transform:matrix(0.191328,-0.006703,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191328,-0.006703,0.008753,0.249847,0,0);}
.me8_c00376{transform:matrix(0.191624,-0.005749,0.007497,0.249888,0,0);-ms-transform:matrix(0.191624,-0.005749,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191624,-0.005749,0.007497,0.249888,0,0);}
.m3_c00376{transform:matrix(0.191997,-0.006727,0.008753,0.249847,0,0);-ms-transform:matrix(0.191997,-0.006727,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191997,-0.006727,0.008753,0.249847,0,0);}
.m11_c00376{transform:matrix(0.192357,-0.006739,0.008753,0.249847,0,0);-ms-transform:matrix(0.192357,-0.006739,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192357,-0.006739,0.008753,0.249847,0,0);}
.me6_c00376{transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);-ms-transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192398,-0.005772,0.007497,0.249888,0,0);}
.m91_c00376{transform:matrix(0.192712,-0.006752,0.008753,0.249847,0,0);-ms-transform:matrix(0.192712,-0.006752,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192712,-0.006752,0.008753,0.249847,0,0);}
.mca_c00376{transform:matrix(0.192753,-0.005783,0.007497,0.249888,0,0);-ms-transform:matrix(0.192753,-0.005783,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192753,-0.005783,0.007497,0.249888,0,0);}
.mea_c00376{transform:matrix(0.193388,-0.005802,0.007497,0.249888,0,0);-ms-transform:matrix(0.193388,-0.005802,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193388,-0.005802,0.007497,0.249888,0,0);}
.m74_c00376{transform:matrix(0.194056,-0.006799,0.008753,0.249847,0,0);-ms-transform:matrix(0.194056,-0.006799,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194056,-0.006799,0.008753,0.249847,0,0);}
.mc8_c00376{transform:matrix(0.194313,-0.005829,0.007497,0.249888,0,0);-ms-transform:matrix(0.194313,-0.005829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194313,-0.005829,0.007497,0.249888,0,0);}
.me4_c00376{transform:matrix(0.194383,-0.005831,0.007497,0.249888,0,0);-ms-transform:matrix(0.194383,-0.005831,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194383,-0.005831,0.007497,0.249888,0,0);}
.m6f_c00376{transform:matrix(0.194456,-0.006813,0.008753,0.249847,0,0);-ms-transform:matrix(0.194456,-0.006813,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194456,-0.006813,0.008753,0.249847,0,0);}
.mb7_c00376{transform:matrix(0.194687,-0.005841,0.007497,0.249888,0,0);-ms-transform:matrix(0.194687,-0.005841,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194687,-0.005841,0.007497,0.249888,0,0);}
.m39_c00376{transform:matrix(0.194885,-0.006828,0.008753,0.249847,0,0);-ms-transform:matrix(0.194885,-0.006828,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194885,-0.006828,0.008753,0.249847,0,0);}
.mdc_c00376{transform:matrix(0.194932,-0.005848,0.007497,0.249888,0,0);-ms-transform:matrix(0.194932,-0.005848,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194932,-0.005848,0.007497,0.249888,0,0);}
.meb_c00376{transform:matrix(0.195567,-0.005867,0.007497,0.249888,0,0);-ms-transform:matrix(0.195567,-0.005867,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195567,-0.005867,0.007497,0.249888,0,0);}
.m8a_c00376{transform:matrix(0.195585,-0.006852,0.008753,0.249847,0,0);-ms-transform:matrix(0.195585,-0.006852,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195585,-0.006852,0.008753,0.249847,0,0);}
.m93_c00376{transform:matrix(0.195985,-0.006866,0.008753,0.249847,0,0);-ms-transform:matrix(0.195985,-0.006866,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195985,-0.006866,0.008753,0.249847,0,0);}
.m4c_c00376{transform:matrix(0.196110,-0.006871,0.008753,0.249847,0,0);-ms-transform:matrix(0.196110,-0.006871,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196110,-0.006871,0.008753,0.249847,0,0);}
.m71_c00376{transform:matrix(0.196240,-0.006875,0.008753,0.249847,0,0);-ms-transform:matrix(0.196240,-0.006875,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196240,-0.006875,0.008753,0.249847,0,0);}
.m7f_c00376{transform:matrix(0.196375,-0.006880,0.008753,0.249847,0,0);-ms-transform:matrix(0.196375,-0.006880,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196375,-0.006880,0.008753,0.249847,0,0);}
.m90_c00376{transform:matrix(0.196574,-0.006887,0.008753,0.249847,0,0);-ms-transform:matrix(0.196574,-0.006887,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196574,-0.006887,0.008753,0.249847,0,0);}
.m10_c00376{transform:matrix(0.196669,-0.006890,0.008753,0.249847,0,0);-ms-transform:matrix(0.196669,-0.006890,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196669,-0.006890,0.008753,0.249847,0,0);}
.m21_c00376{transform:matrix(0.196964,-0.006901,0.008753,0.249847,0,0);-ms-transform:matrix(0.196964,-0.006901,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196964,-0.006901,0.008753,0.249847,0,0);}
.m43_c00376{transform:matrix(0.197504,-0.006920,0.008753,0.249847,0,0);-ms-transform:matrix(0.197504,-0.006920,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197504,-0.006920,0.008753,0.249847,0,0);}
.m47_c00376{transform:matrix(0.197744,-0.006928,0.008753,0.249847,0,0);-ms-transform:matrix(0.197744,-0.006928,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197744,-0.006928,0.008753,0.249847,0,0);}
.m27_c00376{transform:matrix(0.197899,-0.006933,0.008753,0.249847,0,0);-ms-transform:matrix(0.197899,-0.006933,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197899,-0.006933,0.008753,0.249847,0,0);}
.mcb_c00376{transform:matrix(0.198271,-0.005948,0.007497,0.249888,0,0);-ms-transform:matrix(0.198271,-0.005948,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198271,-0.005948,0.007497,0.249888,0,0);}
.m54_c00376{transform:matrix(0.198293,-0.006947,0.008753,0.249847,0,0);-ms-transform:matrix(0.198293,-0.006947,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198293,-0.006947,0.008753,0.249847,0,0);}
.m70_c00376{transform:matrix(0.198853,-0.006967,0.008753,0.249847,0,0);-ms-transform:matrix(0.198853,-0.006967,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198853,-0.006967,0.008753,0.249847,0,0);}
.m12_c00376{transform:matrix(0.198998,-0.006972,0.008753,0.249847,0,0);-ms-transform:matrix(0.198998,-0.006972,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198998,-0.006972,0.008753,0.249847,0,0);}
.m4b_c00376{transform:matrix(0.199293,-0.006982,0.008753,0.249847,0,0);-ms-transform:matrix(0.199293,-0.006982,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199293,-0.006982,0.008753,0.249847,0,0);}
.m77_c00376{transform:matrix(0.199792,-0.007000,0.008753,0.249847,0,0);-ms-transform:matrix(0.199792,-0.007000,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199792,-0.007000,0.008753,0.249847,0,0);}
.m16_c00376{transform:matrix(0.199997,-0.007007,0.008753,0.249847,0,0);-ms-transform:matrix(0.199997,-0.007007,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199997,-0.007007,0.008753,0.249847,0,0);}
.m6b_c00376{transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);-ms-transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);}
.m7d_c00376{transform:matrix(0.200377,-0.007020,0.008753,0.249847,0,0);-ms-transform:matrix(0.200377,-0.007020,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200377,-0.007020,0.008753,0.249847,0,0);}
.m5d_c00376{transform:matrix(0.200672,-0.007031,0.008753,0.249847,0,0);-ms-transform:matrix(0.200672,-0.007031,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200672,-0.007031,0.008753,0.249847,0,0);}
.m55_c00376{transform:matrix(0.200677,-0.007031,0.008753,0.249847,0,0);-ms-transform:matrix(0.200677,-0.007031,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200677,-0.007031,0.008753,0.249847,0,0);}
.m9c_c00376{transform:matrix(0.200717,-0.007032,0.008753,0.249847,0,0);-ms-transform:matrix(0.200717,-0.007032,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200717,-0.007032,0.008753,0.249847,0,0);}
.m84_c00376{transform:matrix(0.200887,-0.007038,0.008753,0.249847,0,0);-ms-transform:matrix(0.200887,-0.007038,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200887,-0.007038,0.008753,0.249847,0,0);}
.m99_c00376{transform:matrix(0.201147,-0.007047,0.008753,0.249847,0,0);-ms-transform:matrix(0.201147,-0.007047,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201147,-0.007047,0.008753,0.249847,0,0);}
.m9d_c00376{transform:matrix(0.201601,-0.007063,0.008753,0.249847,0,0);-ms-transform:matrix(0.201601,-0.007063,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201601,-0.007063,0.008753,0.249847,0,0);}
.mab_c00376{transform:matrix(0.201609,-0.006048,0.007497,0.249888,0,0);-ms-transform:matrix(0.201609,-0.006048,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201609,-0.006048,0.007497,0.249888,0,0);}
.m2f_c00376{transform:matrix(0.202006,-0.007077,0.008753,0.249847,0,0);-ms-transform:matrix(0.202006,-0.007077,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202006,-0.007077,0.008753,0.249847,0,0);}
.m88_c00376{transform:matrix(0.202151,-0.007082,0.008753,0.249847,0,0);-ms-transform:matrix(0.202151,-0.007082,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202151,-0.007082,0.008753,0.249847,0,0);}
.md7_c00376{transform:matrix(0.202254,-0.006068,0.007497,0.249888,0,0);-ms-transform:matrix(0.202254,-0.006068,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202254,-0.006068,0.007497,0.249888,0,0);}
.ma1_c00376{transform:matrix(0.202379,-0.006071,0.007497,0.249888,0,0);-ms-transform:matrix(0.202379,-0.006071,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202379,-0.006071,0.007497,0.249888,0,0);}
.m7e_c00376{transform:matrix(0.202436,-0.007092,0.008753,0.249847,0,0);-ms-transform:matrix(0.202436,-0.007092,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202436,-0.007092,0.008753,0.249847,0,0);}
.m2a_c00376{transform:matrix(0.202456,-0.007093,0.008753,0.249847,0,0);-ms-transform:matrix(0.202456,-0.007093,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202456,-0.007093,0.008753,0.249847,0,0);}
.mda_c00376{transform:matrix(0.202884,-0.006087,0.007497,0.249888,0,0);-ms-transform:matrix(0.202884,-0.006087,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202884,-0.006087,0.007497,0.249888,0,0);}
.m35_c00376{transform:matrix(0.203050,-0.007114,0.008753,0.249847,0,0);-ms-transform:matrix(0.203050,-0.007114,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203050,-0.007114,0.008753,0.249847,0,0);}
.m46_c00376{transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);-ms-transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);}
.m2b_c00376{transform:matrix(0.203500,-0.007130,0.008753,0.249847,0,0);-ms-transform:matrix(0.203500,-0.007130,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203500,-0.007130,0.008753,0.249847,0,0);}
.m7c_c00376{transform:matrix(0.203615,-0.007134,0.008753,0.249847,0,0);-ms-transform:matrix(0.203615,-0.007134,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203615,-0.007134,0.008753,0.249847,0,0);}
.m3c_c00376{transform:matrix(0.203875,-0.007143,0.008753,0.249847,0,0);-ms-transform:matrix(0.203875,-0.007143,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203875,-0.007143,0.008753,0.249847,0,0);}
.m79_c00376{transform:matrix(0.204939,-0.007180,0.008753,0.249847,0,0);-ms-transform:matrix(0.204939,-0.007180,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204939,-0.007180,0.008753,0.249847,0,0);}
.m44_c00376{transform:matrix(0.205014,-0.007183,0.008753,0.249847,0,0);-ms-transform:matrix(0.205014,-0.007183,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205014,-0.007183,0.008753,0.249847,0,0);}
.ma5_c00376{transform:matrix(0.205088,-0.006153,0.007497,0.249888,0,0);-ms-transform:matrix(0.205088,-0.006153,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205088,-0.006153,0.007497,0.249888,0,0);}
.m17_c00376{transform:matrix(0.205209,-0.007190,0.008753,0.249847,0,0);-ms-transform:matrix(0.205209,-0.007190,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205209,-0.007190,0.008753,0.249847,0,0);}
.me1_c00376{transform:matrix(0.206652,-0.006200,0.007497,0.249888,0,0);-ms-transform:matrix(0.206652,-0.006200,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206652,-0.006200,0.007497,0.249888,0,0);}
.m48_c00376{transform:matrix(0.206663,-0.007240,0.008753,0.249847,0,0);-ms-transform:matrix(0.206663,-0.007240,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206663,-0.007240,0.008753,0.249847,0,0);}
.mdf_c00376{transform:matrix(0.206697,-0.006201,0.007497,0.249888,0,0);-ms-transform:matrix(0.206697,-0.006201,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206697,-0.006201,0.007497,0.249888,0,0);}
.me3_c00376{transform:matrix(0.207032,-0.006211,0.007497,0.249888,0,0);-ms-transform:matrix(0.207032,-0.006211,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207032,-0.006211,0.007497,0.249888,0,0);}
.mc_c00376{transform:matrix(0.207173,-0.007258,0.008753,0.249847,0,0);-ms-transform:matrix(0.207173,-0.007258,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207173,-0.007258,0.008753,0.249847,0,0);}
.m89_c00376{transform:matrix(0.207463,-0.007268,0.008753,0.249847,0,0);-ms-transform:matrix(0.207463,-0.007268,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207463,-0.007268,0.008753,0.249847,0,0);}
.m1d_c00376{transform:matrix(0.207783,-0.007280,0.008753,0.249847,0,0);-ms-transform:matrix(0.207783,-0.007280,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207783,-0.007280,0.008753,0.249847,0,0);}
.m5c_c00376{transform:matrix(0.208052,-0.007289,0.008753,0.249847,0,0);-ms-transform:matrix(0.208052,-0.007289,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208052,-0.007289,0.008753,0.249847,0,0);}
.m18_c00376{transform:matrix(0.208137,-0.007292,0.008753,0.249847,0,0);-ms-transform:matrix(0.208137,-0.007292,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208137,-0.007292,0.008753,0.249847,0,0);}
.m3a_c00376{transform:matrix(0.208332,-0.007299,0.008753,0.249847,0,0);-ms-transform:matrix(0.208332,-0.007299,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208332,-0.007299,0.008753,0.249847,0,0);}
.m3b_c00376{transform:matrix(0.208457,-0.007303,0.008753,0.249847,0,0);-ms-transform:matrix(0.208457,-0.007303,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208457,-0.007303,0.008753,0.249847,0,0);}
.mcd_c00376{transform:matrix(0.208476,-0.006254,0.007497,0.249888,0,0);-ms-transform:matrix(0.208476,-0.006254,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208476,-0.006254,0.007497,0.249888,0,0);}
.m97_c00376{transform:matrix(0.208607,-0.007309,0.008753,0.249847,0,0);-ms-transform:matrix(0.208607,-0.007309,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208607,-0.007309,0.008753,0.249847,0,0);}
.mf7_c00376{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.m95_c00376{transform:matrix(0.208982,-0.007322,0.008753,0.249847,0,0);-ms-transform:matrix(0.208982,-0.007322,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208982,-0.007322,0.008753,0.249847,0,0);}
.m15_c00376{transform:matrix(0.209142,-0.007327,0.008753,0.249847,0,0);-ms-transform:matrix(0.209142,-0.007327,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209142,-0.007327,0.008753,0.249847,0,0);}
.m1f_c00376{transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);-ms-transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);}
.m6_c00376{transform:matrix(0.210636,-0.007380,0.008753,0.249847,0,0);-ms-transform:matrix(0.210636,-0.007380,0.008753,0.249847,0,0);-webkit-transform:matrix(0.210636,-0.007380,0.008753,0.249847,0,0);}
.m94_c00376{transform:matrix(0.211085,-0.007395,0.008753,0.249847,0,0);-ms-transform:matrix(0.211085,-0.007395,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211085,-0.007395,0.008753,0.249847,0,0);}
.m38_c00376{transform:matrix(0.211260,-0.007402,0.008753,0.249847,0,0);-ms-transform:matrix(0.211260,-0.007402,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211260,-0.007402,0.008753,0.249847,0,0);}
.md_c00376{transform:matrix(0.211465,-0.007409,0.008753,0.249847,0,0);-ms-transform:matrix(0.211465,-0.007409,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211465,-0.007409,0.008753,0.249847,0,0);}
.m9_c00376{transform:matrix(0.212050,-0.007429,0.008753,0.249847,0,0);-ms-transform:matrix(0.212050,-0.007429,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212050,-0.007429,0.008753,0.249847,0,0);}
.ma6_c00376{transform:matrix(0.212140,-0.006364,0.007497,0.249888,0,0);-ms-transform:matrix(0.212140,-0.006364,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212140,-0.006364,0.007497,0.249888,0,0);}
.m34_c00376{transform:matrix(0.212205,-0.007435,0.008753,0.249847,0,0);-ms-transform:matrix(0.212205,-0.007435,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212205,-0.007435,0.008753,0.249847,0,0);}
.m25_c00376{transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-ms-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);}
.md5_c00376{transform:matrix(0.214244,-0.006427,0.007497,0.249888,0,0);-ms-transform:matrix(0.214244,-0.006427,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214244,-0.006427,0.007497,0.249888,0,0);}
.ma3_c00376{transform:matrix(0.214528,-0.006436,0.007497,0.249888,0,0);-ms-transform:matrix(0.214528,-0.006436,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214528,-0.006436,0.007497,0.249888,0,0);}
.m14_c00376{transform:matrix(0.215103,-0.007536,0.008753,0.249847,0,0);-ms-transform:matrix(0.215103,-0.007536,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215103,-0.007536,0.008753,0.249847,0,0);}
.m4e_c00376{transform:matrix(0.215223,-0.007540,0.008753,0.249847,0,0);-ms-transform:matrix(0.215223,-0.007540,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215223,-0.007540,0.008753,0.249847,0,0);}
.me_c00376{transform:matrix(0.215268,-0.007542,0.008753,0.249847,0,0);-ms-transform:matrix(0.215268,-0.007542,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215268,-0.007542,0.008753,0.249847,0,0);}
.m30_c00376{transform:matrix(0.215423,-0.007547,0.008753,0.249847,0,0);-ms-transform:matrix(0.215423,-0.007547,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215423,-0.007547,0.008753,0.249847,0,0);}
.me7_c00376{transform:matrix(0.215683,-0.006470,0.007497,0.249888,0,0);-ms-transform:matrix(0.215683,-0.006470,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215683,-0.006470,0.007497,0.249888,0,0);}
.ma7_c00376{transform:matrix(0.216178,-0.006485,0.007497,0.249888,0,0);-ms-transform:matrix(0.216178,-0.006485,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216178,-0.006485,0.007497,0.249888,0,0);}
.m8f_c00376{transform:matrix(0.216477,-0.007584,0.008753,0.249847,0,0);-ms-transform:matrix(0.216477,-0.007584,0.008753,0.249847,0,0);-webkit-transform:matrix(0.216477,-0.007584,0.008753,0.249847,0,0);}
.m66_c00376{transform:matrix(0.217022,-0.007603,0.008753,0.249847,0,0);-ms-transform:matrix(0.217022,-0.007603,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217022,-0.007603,0.008753,0.249847,0,0);}
.ma_c00376{transform:matrix(0.217072,-0.007605,0.008753,0.249847,0,0);-ms-transform:matrix(0.217072,-0.007605,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217072,-0.007605,0.008753,0.249847,0,0);}
.mce_c00376{transform:matrix(0.217507,-0.006525,0.007497,0.249888,0,0);-ms-transform:matrix(0.217507,-0.006525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217507,-0.006525,0.007497,0.249888,0,0);}
.mc9_c00376{transform:matrix(0.218482,-0.006554,0.007497,0.249888,0,0);-ms-transform:matrix(0.218482,-0.006554,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218482,-0.006554,0.007497,0.249888,0,0);}
.m45_c00376{transform:matrix(0.218811,-0.007666,0.008753,0.249847,0,0);-ms-transform:matrix(0.218811,-0.007666,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218811,-0.007666,0.008753,0.249847,0,0);}
.mb5_c00376{transform:matrix(0.219116,-0.006573,0.007497,0.249888,0,0);-ms-transform:matrix(0.219116,-0.006573,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219116,-0.006573,0.007497,0.249888,0,0);}
.m9e_c00376{transform:matrix(0.219560,-0.007692,0.008753,0.249847,0,0);-ms-transform:matrix(0.219560,-0.007692,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219560,-0.007692,0.008753,0.249847,0,0);}
.md4_c00376{transform:matrix(0.219561,-0.006587,0.007497,0.249888,0,0);-ms-transform:matrix(0.219561,-0.006587,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219561,-0.006587,0.007497,0.249888,0,0);}
.m22_c00376{transform:matrix(0.219760,-0.007699,0.008753,0.249847,0,0);-ms-transform:matrix(0.219760,-0.007699,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219760,-0.007699,0.008753,0.249847,0,0);}
.m92_c00376{transform:matrix(0.219810,-0.007701,0.008753,0.249847,0,0);-ms-transform:matrix(0.219810,-0.007701,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219810,-0.007701,0.008753,0.249847,0,0);}
.ma0_c00376{transform:matrix(0.220206,-0.006606,0.007497,0.249888,0,0);-ms-transform:matrix(0.220206,-0.006606,0.007497,0.249888,0,0);-webkit-transform:matrix(0.220206,-0.006606,0.007497,0.249888,0,0);}
.m5f_c00376{transform:matrix(0.220440,-0.007723,0.008753,0.249847,0,0);-ms-transform:matrix(0.220440,-0.007723,0.008753,0.249847,0,0);-webkit-transform:matrix(0.220440,-0.007723,0.008753,0.249847,0,0);}
.m5e_c00376{transform:matrix(0.220999,-0.007743,0.008753,0.249847,0,0);-ms-transform:matrix(0.220999,-0.007743,0.008753,0.249847,0,0);-webkit-transform:matrix(0.220999,-0.007743,0.008753,0.249847,0,0);}
.m56_c00376{transform:matrix(0.221414,-0.007757,0.008753,0.249847,0,0);-ms-transform:matrix(0.221414,-0.007757,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221414,-0.007757,0.008753,0.249847,0,0);}
.m23_c00376{transform:matrix(0.221979,-0.007777,0.008753,0.249847,0,0);-ms-transform:matrix(0.221979,-0.007777,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221979,-0.007777,0.008753,0.249847,0,0);}
.m63_c00376{transform:matrix(0.222179,-0.007784,0.008753,0.249847,0,0);-ms-transform:matrix(0.222179,-0.007784,0.008753,0.249847,0,0);-webkit-transform:matrix(0.222179,-0.007784,0.008753,0.249847,0,0);}
.m52_c00376{transform:matrix(0.222813,-0.007806,0.008753,0.249847,0,0);-ms-transform:matrix(0.222813,-0.007806,0.008753,0.249847,0,0);-webkit-transform:matrix(0.222813,-0.007806,0.008753,0.249847,0,0);}
.m6d_c00376{transform:matrix(0.223163,-0.007819,0.008753,0.249847,0,0);-ms-transform:matrix(0.223163,-0.007819,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223163,-0.007819,0.008753,0.249847,0,0);}
.m62_c00376{transform:matrix(0.223428,-0.007828,0.008753,0.249847,0,0);-ms-transform:matrix(0.223428,-0.007828,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223428,-0.007828,0.008753,0.249847,0,0);}
.m29_c00376{transform:matrix(0.224043,-0.007849,0.008753,0.249847,0,0);-ms-transform:matrix(0.224043,-0.007849,0.008753,0.249847,0,0);-webkit-transform:matrix(0.224043,-0.007849,0.008753,0.249847,0,0);}
.m19_c00376{transform:matrix(0.224417,-0.007862,0.008753,0.249847,0,0);-ms-transform:matrix(0.224417,-0.007862,0.008753,0.249847,0,0);-webkit-transform:matrix(0.224417,-0.007862,0.008753,0.249847,0,0);}
.ma2_c00376{transform:matrix(0.224894,-0.006747,0.007497,0.249888,0,0);-ms-transform:matrix(0.224894,-0.006747,0.007497,0.249888,0,0);-webkit-transform:matrix(0.224894,-0.006747,0.007497,0.249888,0,0);}
.m5_c00376{transform:matrix(0.225242,-0.007891,0.008753,0.249847,0,0);-ms-transform:matrix(0.225242,-0.007891,0.008753,0.249847,0,0);-webkit-transform:matrix(0.225242,-0.007891,0.008753,0.249847,0,0);}
.m42_c00376{transform:matrix(0.226006,-0.007918,0.008753,0.249847,0,0);-ms-transform:matrix(0.226006,-0.007918,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226006,-0.007918,0.008753,0.249847,0,0);}
.m8d_c00376{transform:matrix(0.226446,-0.007934,0.008753,0.249847,0,0);-ms-transform:matrix(0.226446,-0.007934,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226446,-0.007934,0.008753,0.249847,0,0);}
.maf_c00376{transform:matrix(0.226818,-0.006805,0.007497,0.249888,0,0);-ms-transform:matrix(0.226818,-0.006805,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226818,-0.006805,0.007497,0.249888,0,0);}
.m2_c00376{transform:matrix(0.227006,-0.007953,0.008753,0.249847,0,0);-ms-transform:matrix(0.227006,-0.007953,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227006,-0.007953,0.008753,0.249847,0,0);}
.m37_c00376{transform:matrix(0.227630,-0.007975,0.008753,0.249847,0,0);-ms-transform:matrix(0.227630,-0.007975,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227630,-0.007975,0.008753,0.249847,0,0);}
.m8b_c00376{transform:matrix(0.229889,-0.008054,0.008753,0.249847,0,0);-ms-transform:matrix(0.229889,-0.008054,0.008753,0.249847,0,0);-webkit-transform:matrix(0.229889,-0.008054,0.008753,0.249847,0,0);}
.md6_c00376{transform:matrix(0.230052,-0.006902,0.007497,0.249888,0,0);-ms-transform:matrix(0.230052,-0.006902,0.007497,0.249888,0,0);-webkit-transform:matrix(0.230052,-0.006902,0.007497,0.249888,0,0);}
.m51_c00376{transform:matrix(0.232063,-0.008130,0.008753,0.249847,0,0);-ms-transform:matrix(0.232063,-0.008130,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232063,-0.008130,0.008753,0.249847,0,0);}
.me5_c00376{transform:matrix(0.232116,-0.006963,0.007497,0.249888,0,0);-ms-transform:matrix(0.232116,-0.006963,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232116,-0.006963,0.007497,0.249888,0,0);}
.m8e_c00376{transform:matrix(0.232123,-0.008132,0.008753,0.249847,0,0);-ms-transform:matrix(0.232123,-0.008132,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232123,-0.008132,0.008753,0.249847,0,0);}
.m5a_c00376{transform:matrix(0.233827,-0.008192,0.008753,0.249847,0,0);-ms-transform:matrix(0.233827,-0.008192,0.008753,0.249847,0,0);-webkit-transform:matrix(0.233827,-0.008192,0.008753,0.249847,0,0);}
.m7a_c00376{transform:matrix(0.235690,-0.008257,0.008753,0.249847,0,0);-ms-transform:matrix(0.235690,-0.008257,0.008753,0.249847,0,0);-webkit-transform:matrix(0.235690,-0.008257,0.008753,0.249847,0,0);}
.m68_c00376{transform:matrix(0.238014,-0.008339,0.008753,0.249847,0,0);-ms-transform:matrix(0.238014,-0.008339,0.008753,0.249847,0,0);-webkit-transform:matrix(0.238014,-0.008339,0.008753,0.249847,0,0);}
.m69_c00376{transform:matrix(0.238129,-0.008343,0.008753,0.249847,0,0);-ms-transform:matrix(0.238129,-0.008343,0.008753,0.249847,0,0);-webkit-transform:matrix(0.238129,-0.008343,0.008753,0.249847,0,0);}
.m61_c00376{transform:matrix(0.238389,-0.008352,0.008753,0.249847,0,0);-ms-transform:matrix(0.238389,-0.008352,0.008753,0.249847,0,0);-webkit-transform:matrix(0.238389,-0.008352,0.008753,0.249847,0,0);}
.m4_c00376{transform:matrix(0.239863,-0.008404,0.008753,0.249847,0,0);-ms-transform:matrix(0.239863,-0.008404,0.008753,0.249847,0,0);-webkit-transform:matrix(0.239863,-0.008404,0.008753,0.249847,0,0);}
.m3f_c00376{transform:matrix(0.240622,-0.008430,0.008753,0.249847,0,0);-ms-transform:matrix(0.240622,-0.008430,0.008753,0.249847,0,0);-webkit-transform:matrix(0.240622,-0.008430,0.008753,0.249847,0,0);}
.m8c_c00376{transform:matrix(0.241052,-0.008445,0.008753,0.249847,0,0);-ms-transform:matrix(0.241052,-0.008445,0.008753,0.249847,0,0);-webkit-transform:matrix(0.241052,-0.008445,0.008753,0.249847,0,0);}
.m58_c00376{transform:matrix(0.241372,-0.008456,0.008753,0.249847,0,0);-ms-transform:matrix(0.241372,-0.008456,0.008753,0.249847,0,0);-webkit-transform:matrix(0.241372,-0.008456,0.008753,0.249847,0,0);}
.m20_c00376{transform:matrix(0.242061,-0.008481,0.008753,0.249847,0,0);-ms-transform:matrix(0.242061,-0.008481,0.008753,0.249847,0,0);-webkit-transform:matrix(0.242061,-0.008481,0.008753,0.249847,0,0);}
.m36_c00376{transform:matrix(0.242371,-0.008491,0.008753,0.249847,0,0);-ms-transform:matrix(0.242371,-0.008491,0.008753,0.249847,0,0);-webkit-transform:matrix(0.242371,-0.008491,0.008753,0.249847,0,0);}
.mee_c00376{transform:matrix(0.242971,-0.007289,0.007497,0.249888,0,0);-ms-transform:matrix(0.242971,-0.007289,0.007497,0.249888,0,0);-webkit-transform:matrix(0.242971,-0.007289,0.007497,0.249888,0,0);}
.m59_c00376{transform:matrix(0.243591,-0.008534,0.008753,0.249847,0,0);-ms-transform:matrix(0.243591,-0.008534,0.008753,0.249847,0,0);-webkit-transform:matrix(0.243591,-0.008534,0.008753,0.249847,0,0);}
.m7b_c00376{transform:matrix(0.243915,-0.008546,0.008753,0.249847,0,0);-ms-transform:matrix(0.243915,-0.008546,0.008753,0.249847,0,0);-webkit-transform:matrix(0.243915,-0.008546,0.008753,0.249847,0,0);}
.mb8_c00376{transform:matrix(0.244325,-0.007330,0.007497,0.249888,0,0);-ms-transform:matrix(0.244325,-0.007330,0.007497,0.249888,0,0);-webkit-transform:matrix(0.244325,-0.007330,0.007497,0.249888,0,0);}
.m67_c00376{transform:matrix(0.245984,-0.008618,0.008753,0.249847,0,0);-ms-transform:matrix(0.245984,-0.008618,0.008753,0.249847,0,0);-webkit-transform:matrix(0.245984,-0.008618,0.008753,0.249847,0,0);}
.m65_c00376{transform:matrix(0.251741,-0.008820,0.008753,0.249847,0,0);-ms-transform:matrix(0.251741,-0.008820,0.008753,0.249847,0,0);-webkit-transform:matrix(0.251741,-0.008820,0.008753,0.249847,0,0);}
.md8_c00376{transform:matrix(0.255370,-0.007661,0.007497,0.249888,0,0);-ms-transform:matrix(0.255370,-0.007661,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255370,-0.007661,0.007497,0.249888,0,0);}
.md0_c00376{transform:matrix(0.258749,-0.007762,0.007497,0.249888,0,0);-ms-transform:matrix(0.258749,-0.007762,0.007497,0.249888,0,0);-webkit-transform:matrix(0.258749,-0.007762,0.007497,0.249888,0,0);}
.m81_c00376{transform:matrix(0.263533,-0.009233,0.008753,0.249847,0,0);-ms-transform:matrix(0.263533,-0.009233,0.008753,0.249847,0,0);-webkit-transform:matrix(0.263533,-0.009233,0.008753,0.249847,0,0);}
.m5b_c00376{transform:matrix(0.264773,-0.009276,0.008753,0.249847,0,0);-ms-transform:matrix(0.264773,-0.009276,0.008753,0.249847,0,0);-webkit-transform:matrix(0.264773,-0.009276,0.008753,0.249847,0,0);}
.mb4_c00376{transform:matrix(0.277705,-0.008331,0.007497,0.249888,0,0);-ms-transform:matrix(0.277705,-0.008331,0.007497,0.249888,0,0);-webkit-transform:matrix(0.277705,-0.008331,0.007497,0.249888,0,0);}
.m0_c00376{transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);}
.md1_c00376{transform:matrix(0.289990,-0.008700,0.007497,0.249888,0,0);-ms-transform:matrix(0.289990,-0.008700,0.007497,0.249888,0,0);-webkit-transform:matrix(0.289990,-0.008700,0.007497,0.249888,0,0);}
.m64_c00376{transform:matrix(0.291601,-0.010216,0.008753,0.249847,0,0);-ms-transform:matrix(0.291601,-0.010216,0.008753,0.249847,0,0);-webkit-transform:matrix(0.291601,-0.010216,0.008753,0.249847,0,0);}
.mb3_c00376{transform:matrix(0.307262,-0.009218,0.007497,0.249888,0,0);-ms-transform:matrix(0.307262,-0.009218,0.007497,0.249888,0,0);-webkit-transform:matrix(0.307262,-0.009218,0.007497,0.249888,0,0);}
.m28_c00376{transform:matrix(0.307276,-0.010765,0.008753,0.249847,0,0);-ms-transform:matrix(0.307276,-0.010765,0.008753,0.249847,0,0);-webkit-transform:matrix(0.307276,-0.010765,0.008753,0.249847,0,0);}
.me2_c00376{transform:matrix(0.315463,-0.009464,0.007497,0.249888,0,0);-ms-transform:matrix(0.315463,-0.009464,0.007497,0.249888,0,0);-webkit-transform:matrix(0.315463,-0.009464,0.007497,0.249888,0,0);}
.m82_c00376{transform:matrix(0.319509,-0.011194,0.008753,0.249847,0,0);-ms-transform:matrix(0.319509,-0.011194,0.008753,0.249847,0,0);-webkit-transform:matrix(0.319509,-0.011194,0.008753,0.249847,0,0);}
.m3e_c00376{transform:matrix(0.332966,-0.011665,0.008753,0.249847,0,0);-ms-transform:matrix(0.332966,-0.011665,0.008753,0.249847,0,0);-webkit-transform:matrix(0.332966,-0.011665,0.008753,0.249847,0,0);}
.m80_c00376{transform:matrix(0.342645,-0.012005,0.008753,0.249847,0,0);-ms-transform:matrix(0.342645,-0.012005,0.008753,0.249847,0,0);-webkit-transform:matrix(0.342645,-0.012005,0.008753,0.249847,0,0);}
.m50_c00376{transform:matrix(0.359454,-0.012593,0.008753,0.249847,0,0);-ms-transform:matrix(0.359454,-0.012593,0.008753,0.249847,0,0);-webkit-transform:matrix(0.359454,-0.012593,0.008753,0.249847,0,0);}
.md9_c00376{transform:matrix(0.364536,-0.010936,0.007497,0.249888,0,0);-ms-transform:matrix(0.364536,-0.010936,0.007497,0.249888,0,0);-webkit-transform:matrix(0.364536,-0.010936,0.007497,0.249888,0,0);}
.mb2_c00376{transform:matrix(0.372847,-0.011185,0.007497,0.249888,0,0);-ms-transform:matrix(0.372847,-0.011185,0.007497,0.249888,0,0);-webkit-transform:matrix(0.372847,-0.011185,0.007497,0.249888,0,0);}
.mb1_c00376{transform:matrix(0.515048,-0.015451,0.007497,0.249888,0,0);-ms-transform:matrix(0.515048,-0.015451,0.007497,0.249888,0,0);-webkit-transform:matrix(0.515048,-0.015451,0.007497,0.249888,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls0_c00376{letter-spacing:0.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:0.000000px;}
.fc0_c00376{color:transparent;}
.fs14_c00376{font-size:16.800000px;}
.fs0_c00376{font-size:39.900000px;}
.fsd_c00376{font-size:44.119841px;}
.fs5_c00376{font-size:57.727646px;}
.fs11_c00376{font-size:57.775982px;}
.fs7_c00376{font-size:58.777240px;}
.fs6_c00376{font-size:59.826834px;}
.fs3_c00376{font-size:60.876427px;}
.fs12_c00376{font-size:60.927399px;}
.fs9_c00376{font-size:61.926021px;}
.fsb_c00376{font-size:61.977871px;}
.fs2_c00376{font-size:62.975614px;}
.fs10_c00376{font-size:63.028344px;}
.fs8_c00376{font-size:67.173989px;}
.fsa_c00376{font-size:68.223582px;}
.fs4_c00376{font-size:69.273176px;}
.fs13_c00376{font-size:69.331178px;}
.fsc_c00376{font-size:71.432123px;}
.fse_c00376{font-size:74.583540px;}
.fs1_c00376{font-size:76.650000px;}
.fsf_c00376{font-size:76.684485px;}
.y0_c00376{bottom:0.000000px;}
.yf3_c00376{bottom:26.665365px;}
.yf4_c00376{bottom:27.776400px;}
.yf5_c00376{bottom:28.523070px;}
.yf6_c00376{bottom:30.195885px;}
.yf7_c00376{bottom:30.996720px;}
.yf8_c00376{bottom:32.316135px;}
.yf9_c00376{bottom:32.867175px;}
.yfa_c00376{bottom:33.344685px;}
.yec_c00376{bottom:41.258490px;}
.yed_c00376{bottom:42.264165px;}
.yee_c00376{bottom:43.021140px;}
.yef_c00376{bottom:45.663090px;}
.yf0_c00376{bottom:48.366855px;}
.yf1_c00376{bottom:49.872030px;}
.yf2_c00376{bottom:50.404830px;}
.ye6_c00376{bottom:59.310675px;}
.ye7_c00376{bottom:60.350520px;}
.ye8_c00376{bottom:62.035200px;}
.ye9_c00376{bottom:62.672805px;}
.yea_c00376{bottom:65.421060px;}
.yeb_c00376{bottom:65.864850px;}
.ydc_c00376{bottom:77.450670px;}
.ydd_c00376{bottom:79.224150px;}
.yde_c00376{bottom:79.535925px;}
.ydf_c00376{bottom:80.290140px;}
.ye0_c00376{bottom:81.048240px;}
.ye1_c00376{bottom:81.847215px;}
.ye2_c00376{bottom:82.473825px;}
.ye3_c00376{bottom:83.627760px;}
.ye4_c00376{bottom:84.502290px;}
.ye5_c00376{bottom:85.634655px;}
.yd5_c00376{bottom:93.123360px;}
.yd6_c00376{bottom:95.026260px;}
.yd7_c00376{bottom:95.741490px;}
.yd8_c00376{bottom:96.496650px;}
.yd9_c00376{bottom:98.097000px;}
.yda_c00376{bottom:98.836725px;}
.ydb_c00376{bottom:101.203185px;}
.ycc_c00376{bottom:114.182955px;}
.ycd_c00376{bottom:115.837560px;}
.yce_c00376{bottom:116.626350px;}
.ycf_c00376{bottom:117.930435px;}
.yd0_c00376{bottom:118.520085px;}
.yd1_c00376{bottom:118.978530px;}
.yd2_c00376{bottom:119.718630px;}
.yd3_c00376{bottom:120.824400px;}
.yd4_c00376{bottom:121.855785px;}
.yc3_c00376{bottom:128.502975px;}
.yc4_c00376{bottom:129.427425px;}
.yc5_c00376{bottom:130.796385px;}
.yc6_c00376{bottom:131.316510px;}
.yc7_c00376{bottom:132.320760px;}
.yc8_c00376{bottom:132.826590px;}
.yc9_c00376{bottom:134.393100px;}
.yca_c00376{bottom:135.012615px;}
.ycb_c00376{bottom:135.687075px;}
.yba_c00376{bottom:143.361240px;}
.ybb_c00376{bottom:144.173595px;}
.ybc_c00376{bottom:146.231880px;}
.ybd_c00376{bottom:146.686845px;}
.ybe_c00376{bottom:148.287960px;}
.ybf_c00376{bottom:149.298000px;}
.yc0_c00376{bottom:150.100365px;}
.yc1_c00376{bottom:151.388805px;}
.yc2_c00376{bottom:151.832955px;}
.yb5_c00376{bottom:160.648425px;}
.yb6_c00376{bottom:162.146040px;}
.yb7_c00376{bottom:162.612570px;}
.yb8_c00376{bottom:166.763490px;}
.yb9_c00376{bottom:169.863750px;}
.yfb_c00376{bottom:175.230000px;}
.yac_c00376{bottom:179.014665px;}
.yad_c00376{bottom:181.124895px;}
.yae_c00376{bottom:181.897680px;}
.yaf_c00376{bottom:183.189450px;}
.yb0_c00376{bottom:183.603090px;}
.yb1_c00376{bottom:184.143270px;}
.yb2_c00376{bottom:185.481120px;}
.yb3_c00376{bottom:187.149720px;}
.yb4_c00376{bottom:187.521195px;}
.ya4_c00376{bottom:196.299000px;}
.ya5_c00376{bottom:197.909910px;}
.ya6_c00376{bottom:199.383435px;}
.ya7_c00376{bottom:199.776420px;}
.ya8_c00376{bottom:200.163600px;}
.ya9_c00376{bottom:201.083580px;}
.yaa_c00376{bottom:203.283360px;}
.yab_c00376{bottom:204.356925px;}
.y9c_c00376{bottom:212.631674px;}
.y9d_c00376{bottom:214.051224px;}
.y9e_c00376{bottom:215.265413px;}
.y9f_c00376{bottom:217.149047px;}
.ya0_c00376{bottom:217.907891px;}
.ya1_c00376{bottom:219.885701px;}
.ya2_c00376{bottom:220.510316px;}
.ya3_c00376{bottom:222.030552px;}
.y93_c00376{bottom:230.708594px;}
.y94_c00376{bottom:232.532304px;}
.y95_c00376{bottom:233.311053px;}
.y96_c00376{bottom:234.655479px;}
.y97_c00376{bottom:234.997221px;}
.y98_c00376{bottom:236.023130px;}
.y99_c00376{bottom:236.975924px;}
.y9a_c00376{bottom:238.778061px;}
.y9b_c00376{bottom:239.358725px;}
.y8b_c00376{bottom:247.440743px;}
.y8c_c00376{bottom:248.635133px;}
.y8d_c00376{bottom:250.001018px;}
.y8e_c00376{bottom:251.937812px;}
.y8f_c00376{bottom:253.087347px;}
.y90_c00376{bottom:253.495925px;}
.y91_c00376{bottom:255.292695px;}
.y92_c00376{bottom:255.683871px;}
.y82_c00376{bottom:264.717176px;}
.y83_c00376{bottom:265.363151px;}
.y84_c00376{bottom:265.902722px;}
.y85_c00376{bottom:267.469994px;}
.y86_c00376{bottom:268.201793px;}
.y87_c00376{bottom:269.947304px;}
.y88_c00376{bottom:270.760230px;}
.y89_c00376{bottom:271.737354px;}
.y8a_c00376{bottom:273.422394px;}
.y7b_c00376{bottom:281.993007px;}
.y7c_c00376{bottom:283.383615px;}
.y7d_c00376{bottom:284.526984px;}
.y7e_c00376{bottom:284.914538px;}
.y7f_c00376{bottom:285.997197px;}
.y80_c00376{bottom:288.425295px;}
.y81_c00376{bottom:290.023695px;}
.y72_c00376{bottom:299.539073px;}
.y73_c00376{bottom:299.993187px;}
.y74_c00376{bottom:301.959009px;}
.y75_c00376{bottom:302.810939px;}
.y76_c00376{bottom:303.243662px;}
.y77_c00376{bottom:305.015366px;}
.y78_c00376{bottom:305.423051px;}
.y79_c00376{bottom:306.487392px;}
.y7a_c00376{bottom:307.826111px;}
.y6a_c00376{bottom:317.343944px;}
.y6b_c00376{bottom:318.074786px;}
.y6c_c00376{bottom:319.200141px;}
.y6d_c00376{bottom:319.557990px;}
.y6e_c00376{bottom:322.204346px;}
.y6f_c00376{bottom:323.487566px;}
.y70_c00376{bottom:325.115538px;}
.y71_c00376{bottom:325.613378px;}
.y63_c00376{bottom:332.736678px;}
.y64_c00376{bottom:335.022818px;}
.y65_c00376{bottom:335.812586px;}
.y66_c00376{bottom:338.170001px;}
.y67_c00376{bottom:339.159917px;}
.y68_c00376{bottom:339.832443px;}
.y69_c00376{bottom:342.099000px;}
.y5d_c00376{bottom:348.925912px;}
.y5e_c00376{bottom:351.080099px;}
.y5f_c00376{bottom:352.494705px;}
.y60_c00376{bottom:355.355724px;}
.y61_c00376{bottom:355.965387px;}
.y62_c00376{bottom:356.815830px;}
.y55_c00376{bottom:363.783480px;}
.y56_c00376{bottom:365.324433px;}
.y57_c00376{bottom:368.131242px;}
.y58_c00376{bottom:369.851752px;}
.y59_c00376{bottom:370.582611px;}
.y5a_c00376{bottom:371.764344px;}
.y5b_c00376{bottom:374.248926px;}
.y5c_c00376{bottom:374.940902px;}
.y4a_c00376{bottom:382.930291px;}
.y4b_c00376{bottom:384.220141px;}
.y4c_c00376{bottom:384.694583px;}
.y4d_c00376{bottom:385.913722px;}
.y4e_c00376{bottom:386.381186px;}
.y4f_c00376{bottom:387.748413px;}
.y50_c00376{bottom:388.120839px;}
.y51_c00376{bottom:388.533567px;}
.y52_c00376{bottom:389.519395px;}
.y53_c00376{bottom:390.008427px;}
.y54_c00376{bottom:390.430892px;}
.y41_c00376{bottom:397.506879px;}
.y42_c00376{bottom:398.014070px;}
.y43_c00376{bottom:398.292762px;}
.y44_c00376{bottom:400.621431px;}
.y45_c00376{bottom:401.875258px;}
.y46_c00376{bottom:403.519402px;}
.y47_c00376{bottom:405.287852px;}
.y48_c00376{bottom:405.850171px;}
.y49_c00376{bottom:408.001139px;}
.y3c_c00376{bottom:415.054509px;}
.y3d_c00376{bottom:415.531458px;}
.y3e_c00376{bottom:418.052046px;}
.y3f_c00376{bottom:420.510960px;}
.y40_c00376{bottom:423.885218px;}
.y36_c00376{bottom:432.054340px;}
.y37_c00376{bottom:432.693273px;}
.y38_c00376{bottom:434.178028px;}
.y39_c00376{bottom:435.769126px;}
.y3a_c00376{bottom:438.598986px;}
.y3b_c00376{bottom:439.245293px;}
.y2f_c00376{bottom:450.139197px;}
.y30_c00376{bottom:450.865624px;}
.y31_c00376{bottom:451.571767px;}
.y32_c00376{bottom:453.273081px;}
.y33_c00376{bottom:454.025435px;}
.y34_c00376{bottom:455.568877px;}
.y35_c00376{bottom:456.206239px;}
.y27_c00376{bottom:467.137716px;}
.y28_c00376{bottom:467.872494px;}
.y29_c00376{bottom:469.516440px;}
.y2a_c00376{bottom:469.895112px;}
.y2b_c00376{bottom:470.954638px;}
.y2c_c00376{bottom:471.504474px;}
.y2d_c00376{bottom:473.788261px;}
.y2e_c00376{bottom:474.608974px;}
.y20_c00376{bottom:482.796361px;}
.y21_c00376{bottom:483.424759px;}
.y22_c00376{bottom:485.867949px;}
.y23_c00376{bottom:487.054423px;}
.y24_c00376{bottom:489.500028px;}
.y25_c00376{bottom:490.459869px;}
.y26_c00376{bottom:491.017893px;}
.y18_c00376{bottom:501.151426px;}
.y19_c00376{bottom:501.683361px;}
.y1a_c00376{bottom:503.062920px;}
.y1b_c00376{bottom:505.442856px;}
.y1c_c00376{bottom:506.112924px;}
.y1d_c00376{bottom:507.370806px;}
.y1e_c00376{bottom:508.181843px;}
.y1f_c00376{bottom:510.199869px;}
.y11_c00376{bottom:516.806836px;}
.y12_c00376{bottom:518.074107px;}
.y13_c00376{bottom:520.380397px;}
.y14_c00376{bottom:520.856041px;}
.y15_c00376{bottom:522.522172px;}
.y16_c00376{bottom:526.266496px;}
.y17_c00376{bottom:526.718329px;}
.y8_c00376{bottom:533.810047px;}
.y9_c00376{bottom:534.553849px;}
.ya_c00376{bottom:535.144233px;}
.yb_c00376{bottom:537.449353px;}
.yc_c00376{bottom:539.281647px;}
.yd_c00376{bottom:539.882296px;}
.ye_c00376{bottom:541.829731px;}
.yf_c00376{bottom:542.590333px;}
.y10_c00376{bottom:543.973716px;}
.y3_c00376{bottom:551.356500px;}
.y4_c00376{bottom:554.796195px;}
.y5_c00376{bottom:556.200412px;}
.y6_c00376{bottom:557.335357px;}
.y7_c00376{bottom:558.762255px;}
.y2_c00376{bottom:569.025000px;}
.y1_c00376{bottom:598.590000px;}
.h16_c00376{height:16.800000px;}
.h2_c00376{height:39.900000px;}
.hf_c00376{height:44.119841px;}
.h7_c00376{height:57.727646px;}
.h13_c00376{height:57.775982px;}
.h9_c00376{height:58.777240px;}
.h8_c00376{height:59.826834px;}
.h5_c00376{height:60.876427px;}
.h14_c00376{height:60.927399px;}
.hb_c00376{height:61.926021px;}
.hd_c00376{height:61.977871px;}
.h4_c00376{height:62.975614px;}
.h12_c00376{height:63.028344px;}
.ha_c00376{height:67.173989px;}
.hc_c00376{height:68.223582px;}
.h6_c00376{height:69.273176px;}
.h15_c00376{height:69.331178px;}
.he_c00376{height:71.432123px;}
.h10_c00376{height:74.583540px;}
.h3_c00376{height:76.650000px;}
.h11_c00376{height:76.684485px;}
.h0_c00376{height:613.170000px;}
.h1_c00376{height:613.500000px;}
.w0_c00376{width:359.100000px;}
.w1_c00376{width:359.250000px;}
.x0_c00376{left:0.000000px;}
.x3_c00376{left:24.772500px;}
.x13_c00376{left:25.779767px;}
.x25_c00376{left:27.130383px;}
.x35_c00376{left:28.937425px;}
.x4b_c00376{left:30.540241px;}
.x57_c00376{left:32.494538px;}
.x6c_c00376{left:33.650820px;}
.x6e_c00376{left:34.971855px;}
.x76_c00376{left:36.610020px;}
.x31_c00376{left:40.738753px;}
.x14_c00376{left:42.375888px;}
.x8_c00376{left:45.275186px;}
.x2a_c00376{left:47.086977px;}
.x32_c00376{left:48.265194px;}
.x46_c00376{left:50.296958px;}
.x20_c00376{left:52.076379px;}
.x6d_c00376{left:58.277115px;}
.xf_c00376{left:59.877726px;}
.x9_c00376{left:61.227114px;}
.x3d_c00376{left:66.683145px;}
.x58_c00376{left:69.797639px;}
.x4e_c00376{left:73.027230px;}
.x5e_c00376{left:74.520081px;}
.x26_c00376{left:76.456360px;}
.x6b_c00376{left:78.187830px;}
.x7a_c00376{left:81.457890px;}
.x15_c00376{left:85.435305px;}
.x47_c00376{left:86.571744px;}
.x43_c00376{left:89.229622px;}
.x5b_c00376{left:91.347048px;}
.x2b_c00376{left:94.904785px;}
.x73_c00376{left:95.989620px;}
.x48_c00376{left:98.113320px;}
.x77_c00376{left:101.764605px;}
.x66_c00376{left:102.869670px;}
.x41_c00376{left:106.420570px;}
.x4f_c00376{left:108.702750px;}
.x21_c00376{left:110.733063px;}
.x59_c00376{left:112.423937px;}
.x1b_c00376{left:116.494620px;}
.x74_c00376{left:119.079945px;}
.x50_c00376{left:120.792409px;}
.x4_c00376{left:122.951223px;}
.x22_c00376{left:124.239354px;}
.x78_c00376{left:125.353710px;}
.x67_c00376{left:128.629170px;}
.x4c_c00376{left:132.664735px;}
.x27_c00376{left:135.037518px;}
.x10_c00376{left:137.055239px;}
.x36_c00376{left:139.316389px;}
.x7b_c00376{left:141.617490px;}
.x6f_c00376{left:143.169315px;}
.x33_c00376{left:144.995587px;}
.x2c_c00376{left:146.186152px;}
.x1_c00376{left:148.500000px;}
.x1c_c00376{left:151.344943px;}
.x2_c00376{left:153.360000px;}
.x51_c00376{left:154.606635px;}
.x37_c00376{left:156.598924px;}
.x63_c00376{left:157.777500px;}
.x16_c00376{left:159.746250px;}
.x28_c00376{left:160.965529px;}
.x23_c00376{left:162.018286px;}
.x5_c00376{left:163.031603px;}
.x7c_c00376{left:164.372340px;}
.x7e_c00376{left:166.793850px;}
.x5f_c00376{left:168.293783px;}
.x64_c00376{left:170.683500px;}
.x68_c00376{left:171.688170px;}
.xa_c00376{left:172.939959px;}
.x44_c00376{left:174.220108px;}
.x17_c00376{left:180.670512px;}
.x70_c00376{left:181.798950px;}
.x11_c00376{left:183.283835px;}
.x69_c00376{left:185.476170px;}
.xb_c00376{left:189.142085px;}
.x60_c00376{left:191.280902px;}
.x53_c00376{left:192.869471px;}
.x6_c00376{left:195.426175px;}
.x3e_c00376{left:198.009669px;}
.x45_c00376{left:200.933476px;}
.x2f_c00376{left:203.535573px;}
.x38_c00376{left:207.185976px;}
.x5a_c00376{left:208.781625px;}
.x72_c00376{left:211.934955px;}
.x29_c00376{left:214.098484px;}
.x54_c00376{left:218.256738px;}
.x18_c00376{left:219.914328px;}
.x39_c00376{left:220.985052px;}
.x1d_c00376{left:223.205034px;}
.x49_c00376{left:224.706310px;}
.x3f_c00376{left:227.542956px;}
.x52_c00376{left:230.420733px;}
.x7_c00376{left:236.153907px;}
.x2d_c00376{left:237.364653px;}
.x5c_c00376{left:239.292862px;}
.xc_c00376{left:241.729766px;}
.x19_c00376{left:245.247650px;}
.x7f_c00376{left:246.309810px;}
.x4d_c00376{left:247.407912px;}
.x55_c00376{left:248.758911px;}
.x1e_c00376{left:251.415294px;}
.x80_c00376{left:252.622575px;}
.x79_c00376{left:257.000835px;}
.x2e_c00376{left:258.210229px;}
.xd_c00376{left:262.283273px;}
.x1f_c00376{left:267.813957px;}
.x61_c00376{left:270.058064px;}
.x3a_c00376{left:272.723266px;}
.x65_c00376{left:274.675500px;}
.x4a_c00376{left:277.168653px;}
.x7d_c00376{left:278.380680px;}
.x42_c00376{left:280.719375px;}
.x71_c00376{left:285.339870px;}
.x12_c00376{left:287.202686px;}
.x40_c00376{left:289.595463px;}
.x3b_c00376{left:290.792724px;}
.x24_c00376{left:292.403275px;}
.x75_c00376{left:295.281180px;}
.xe_c00376{left:299.627763px;}
.x56_c00376{left:301.351284px;}
.x6a_c00376{left:303.697170px;}
.x3c_c00376{left:306.405457px;}
.x1a_c00376{left:308.243712px;}
.x34_c00376{left:310.424431px;}
.x30_c00376{left:312.265474px;}
.x62_c00376{left:316.062219px;}
.x5d_c00376{left:318.610340px;}
.x81_c00376{left:324.270000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fs14_c00376{font-size:14.933333pt;}
.fs0_c00376{font-size:35.466667pt;}
.fsd_c00376{font-size:39.217636pt;}
.fs5_c00376{font-size:51.313463pt;}
.fs11_c00376{font-size:51.356428pt;}
.fs7_c00376{font-size:52.246436pt;}
.fs6_c00376{font-size:53.179408pt;}
.fs3_c00376{font-size:54.112380pt;}
.fs12_c00376{font-size:54.157688pt;}
.fs9_c00376{font-size:55.045352pt;}
.fsb_c00376{font-size:55.091441pt;}
.fs2_c00376{font-size:55.978324pt;}
.fs10_c00376{font-size:56.025194pt;}
.fs8_c00376{font-size:59.710212pt;}
.fsa_c00376{font-size:60.643184pt;}
.fs4_c00376{font-size:61.576156pt;}
.fs13_c00376{font-size:61.627714pt;}
.fsc_c00376{font-size:63.495220pt;}
.fse_c00376{font-size:66.296480pt;}
.fs1_c00376{font-size:68.133333pt;}
.fsf_c00376{font-size:68.163986pt;}
.y0_c00376{bottom:0.000000pt;}
.yf3_c00376{bottom:23.702547pt;}
.yf4_c00376{bottom:24.690133pt;}
.yf5_c00376{bottom:25.353840pt;}
.yf6_c00376{bottom:26.840787pt;}
.yf7_c00376{bottom:27.552640pt;}
.yf8_c00376{bottom:28.725453pt;}
.yf9_c00376{bottom:29.215267pt;}
.yfa_c00376{bottom:29.639720pt;}
.yec_c00376{bottom:36.674213pt;}
.yed_c00376{bottom:37.568147pt;}
.yee_c00376{bottom:38.241013pt;}
.yef_c00376{bottom:40.589413pt;}
.yf0_c00376{bottom:42.992760pt;}
.yf1_c00376{bottom:44.330693pt;}
.yf2_c00376{bottom:44.804293pt;}
.ye6_c00376{bottom:52.720600pt;}
.ye7_c00376{bottom:53.644907pt;}
.ye8_c00376{bottom:55.142400pt;}
.ye9_c00376{bottom:55.709160pt;}
.yea_c00376{bottom:58.152053pt;}
.yeb_c00376{bottom:58.546533pt;}
.ydc_c00376{bottom:68.845040pt;}
.ydd_c00376{bottom:70.421467pt;}
.yde_c00376{bottom:70.698600pt;}
.ydf_c00376{bottom:71.369013pt;}
.ye0_c00376{bottom:72.042880pt;}
.ye1_c00376{bottom:72.753080pt;}
.ye2_c00376{bottom:73.310067pt;}
.ye3_c00376{bottom:74.335787pt;}
.ye4_c00376{bottom:75.113147pt;}
.ye5_c00376{bottom:76.119693pt;}
.yd5_c00376{bottom:82.776320pt;}
.yd6_c00376{bottom:84.467787pt;}
.yd7_c00376{bottom:85.103547pt;}
.yd8_c00376{bottom:85.774800pt;}
.yd9_c00376{bottom:87.197333pt;}
.yda_c00376{bottom:87.854867pt;}
.ydb_c00376{bottom:89.958387pt;}
.ycc_c00376{bottom:101.495960pt;}
.ycd_c00376{bottom:102.966720pt;}
.yce_c00376{bottom:103.667867pt;}
.ycf_c00376{bottom:104.827053pt;}
.yd0_c00376{bottom:105.351187pt;}
.yd1_c00376{bottom:105.758693pt;}
.yd2_c00376{bottom:106.416560pt;}
.yd3_c00376{bottom:107.399467pt;}
.yd4_c00376{bottom:108.316253pt;}
.yc3_c00376{bottom:114.224867pt;}
.yc4_c00376{bottom:115.046600pt;}
.yc5_c00376{bottom:116.263453pt;}
.yc6_c00376{bottom:116.725787pt;}
.yc7_c00376{bottom:117.618453pt;}
.yc8_c00376{bottom:118.068080pt;}
.yc9_c00376{bottom:119.460533pt;}
.yca_c00376{bottom:120.011213pt;}
.ycb_c00376{bottom:120.610733pt;}
.yba_c00376{bottom:127.432213pt;}
.ybb_c00376{bottom:128.154307pt;}
.ybc_c00376{bottom:129.983893pt;}
.ybd_c00376{bottom:130.388307pt;}
.ybe_c00376{bottom:131.811520pt;}
.ybf_c00376{bottom:132.709333pt;}
.yc0_c00376{bottom:133.422547pt;}
.yc1_c00376{bottom:134.567827pt;}
.yc2_c00376{bottom:134.962627pt;}
.yb5_c00376{bottom:142.798600pt;}
.yb6_c00376{bottom:144.129813pt;}
.yb7_c00376{bottom:144.544507pt;}
.yb8_c00376{bottom:148.234213pt;}
.yb9_c00376{bottom:150.990000pt;}
.yfb_c00376{bottom:155.760000pt;}
.yac_c00376{bottom:159.124147pt;}
.yad_c00376{bottom:160.999907pt;}
.yae_c00376{bottom:161.686827pt;}
.yaf_c00376{bottom:162.835067pt;}
.yb0_c00376{bottom:163.202747pt;}
.yb1_c00376{bottom:163.682907pt;}
.yb2_c00376{bottom:164.872107pt;}
.yb3_c00376{bottom:166.355307pt;}
.yb4_c00376{bottom:166.685507pt;}
.ya4_c00376{bottom:174.488000pt;}
.ya5_c00376{bottom:175.919920pt;}
.ya6_c00376{bottom:177.229720pt;}
.ya7_c00376{bottom:177.579040pt;}
.ya8_c00376{bottom:177.923200pt;}
.ya9_c00376{bottom:178.740960pt;}
.yaa_c00376{bottom:180.696320pt;}
.yab_c00376{bottom:181.650600pt;}
.y9c_c00376{bottom:189.005932pt;}
.y9d_c00376{bottom:190.267755pt;}
.y9e_c00376{bottom:191.347033pt;}
.y9f_c00376{bottom:193.021375pt;}
.ya0_c00376{bottom:193.695903pt;}
.ya1_c00376{bottom:195.453956pt;}
.ya2_c00376{bottom:196.009169pt;}
.ya3_c00376{bottom:197.360491pt;}
.y93_c00376{bottom:205.074305pt;}
.y94_c00376{bottom:206.695381pt;}
.y95_c00376{bottom:207.387603pt;}
.y96_c00376{bottom:208.582648pt;}
.y97_c00376{bottom:208.886419pt;}
.y98_c00376{bottom:209.798337pt;}
.y99_c00376{bottom:210.645265pt;}
.y9a_c00376{bottom:212.247165pt;}
.y9b_c00376{bottom:212.763311pt;}
.y8b_c00376{bottom:219.947327pt;}
.y8c_c00376{bottom:221.009007pt;}
.y8d_c00376{bottom:222.223127pt;}
.y8e_c00376{bottom:223.944721pt;}
.y8f_c00376{bottom:224.966531pt;}
.y90_c00376{bottom:225.329711pt;}
.y91_c00376{bottom:226.926840pt;}
.y92_c00376{bottom:227.274552pt;}
.y82_c00376{bottom:235.304156pt;}
.y83_c00376{bottom:235.878356pt;}
.y84_c00376{bottom:236.357975pt;}
.y85_c00376{bottom:237.751105pt;}
.y86_c00376{bottom:238.401593pt;}
.y87_c00376{bottom:239.953159pt;}
.y88_c00376{bottom:240.675760pt;}
.y89_c00376{bottom:241.544315pt;}
.y8a_c00376{bottom:243.042128pt;}
.y7b_c00376{bottom:250.660451pt;}
.y7c_c00376{bottom:251.896547pt;}
.y7d_c00376{bottom:252.912875pt;}
.y7e_c00376{bottom:253.257367pt;}
.y7f_c00376{bottom:254.219731pt;}
.y80_c00376{bottom:256.378040pt;}
.y81_c00376{bottom:257.798840pt;}
.y72_c00376{bottom:266.256953pt;}
.y73_c00376{bottom:266.660611pt;}
.y74_c00376{bottom:268.408008pt;}
.y75_c00376{bottom:269.165279pt;}
.y76_c00376{bottom:269.549921pt;}
.y77_c00376{bottom:271.124769pt;}
.y78_c00376{bottom:271.487156pt;}
.y79_c00376{bottom:272.433237pt;}
.y7a_c00376{bottom:273.623209pt;}
.y6a_c00376{bottom:282.083505pt;}
.y6b_c00376{bottom:282.733143pt;}
.y6c_c00376{bottom:283.733459pt;}
.y6d_c00376{bottom:284.051547pt;}
.y6e_c00376{bottom:286.403863pt;}
.y6f_c00376{bottom:287.544503pt;}
.y70_c00376{bottom:288.991589pt;}
.y71_c00376{bottom:289.434113pt;}
.y63_c00376{bottom:295.765936pt;}
.y64_c00376{bottom:297.798060pt;}
.y65_c00376{bottom:298.500076pt;}
.y66_c00376{bottom:300.595556pt;}
.y67_c00376{bottom:301.475481pt;}
.y68_c00376{bottom:302.073283pt;}
.y69_c00376{bottom:304.088000pt;}
.y5d_c00376{bottom:310.156367pt;}
.y5e_c00376{bottom:312.071199pt;}
.y5f_c00376{bottom:313.328627pt;}
.y60_c00376{bottom:315.871755pt;}
.y61_c00376{bottom:316.413677pt;}
.y62_c00376{bottom:317.169627pt;}
.y55_c00376{bottom:323.363093pt;}
.y56_c00376{bottom:324.732829pt;}
.y57_c00376{bottom:327.227771pt;}
.y58_c00376{bottom:328.757113pt;}
.y59_c00376{bottom:329.406765pt;}
.y5a_c00376{bottom:330.457195pt;}
.y5b_c00376{bottom:332.665712pt;}
.y5c_c00376{bottom:333.280801pt;}
.y4a_c00376{bottom:340.382481pt;}
.y4b_c00376{bottom:341.529015pt;}
.y4c_c00376{bottom:341.950740pt;}
.y4d_c00376{bottom:343.034420pt;}
.y4e_c00376{bottom:343.449943pt;}
.y4f_c00376{bottom:344.665256pt;}
.y50_c00376{bottom:344.996301pt;}
.y51_c00376{bottom:345.363171pt;}
.y52_c00376{bottom:346.239463pt;}
.y53_c00376{bottom:346.674157pt;}
.y54_c00376{bottom:347.049681pt;}
.y41_c00376{bottom:353.339448pt;}
.y42_c00376{bottom:353.790284pt;}
.y43_c00376{bottom:354.038011pt;}
.y44_c00376{bottom:356.107939pt;}
.y45_c00376{bottom:357.222452pt;}
.y46_c00376{bottom:358.683913pt;}
.y47_c00376{bottom:360.255868pt;}
.y48_c00376{bottom:360.755708pt;}
.y49_c00376{bottom:362.667679pt;}
.y3c_c00376{bottom:368.937341pt;}
.y3d_c00376{bottom:369.361296pt;}
.y3e_c00376{bottom:371.601819pt;}
.y3f_c00376{bottom:373.787520pt;}
.y40_c00376{bottom:376.786860pt;}
.y36_c00376{bottom:384.048303pt;}
.y37_c00376{bottom:384.616243pt;}
.y38_c00376{bottom:385.936025pt;}
.y39_c00376{bottom:387.350335pt;}
.y3a_c00376{bottom:389.865765pt;}
.y3b_c00376{bottom:390.440260pt;}
.y2f_c00376{bottom:400.123731pt;}
.y30_c00376{bottom:400.769444pt;}
.y31_c00376{bottom:401.397127pt;}
.y32_c00376{bottom:402.909405pt;}
.y33_c00376{bottom:403.578164pt;}
.y34_c00376{bottom:404.950113pt;}
.y35_c00376{bottom:405.516657pt;}
.y27_c00376{bottom:415.233525pt;}
.y28_c00376{bottom:415.886661pt;}
.y29_c00376{bottom:417.347947pt;}
.y2a_c00376{bottom:417.684544pt;}
.y2b_c00376{bottom:418.626345pt;}
.y2c_c00376{bottom:419.115088pt;}
.y2d_c00376{bottom:421.145121pt;}
.y2e_c00376{bottom:421.874644pt;}
.y20_c00376{bottom:429.152321pt;}
.y21_c00376{bottom:429.710897pt;}
.y22_c00376{bottom:431.882621pt;}
.y23_c00376{bottom:432.937265pt;}
.y24_c00376{bottom:435.111136pt;}
.y25_c00376{bottom:435.964328pt;}
.y26_c00376{bottom:436.460349pt;}
.y18_c00376{bottom:445.467935pt;}
.y19_c00376{bottom:445.940765pt;}
.y1a_c00376{bottom:447.167040pt;}
.y1b_c00376{bottom:449.282539pt;}
.y1c_c00376{bottom:449.878155pt;}
.y1d_c00376{bottom:450.996272pt;}
.y1e_c00376{bottom:451.717193pt;}
.y1f_c00376{bottom:453.510995pt;}
.y11_c00376{bottom:459.383855pt;}
.y12_c00376{bottom:460.510317pt;}
.y13_c00376{bottom:462.560353pt;}
.y14_c00376{bottom:462.983148pt;}
.y15_c00376{bottom:464.464153pt;}
.y16_c00376{bottom:467.792441pt;}
.y17_c00376{bottom:468.194071pt;}
.y8_c00376{bottom:474.497820pt;}
.y9_c00376{bottom:475.158977pt;}
.ya_c00376{bottom:475.683763pt;}
.yb_c00376{bottom:477.732759pt;}
.yc_c00376{bottom:479.361464pt;}
.yd_c00376{bottom:479.895375pt;}
.ye_c00376{bottom:481.626428pt;}
.yf_c00376{bottom:482.302519pt;}
.y10_c00376{bottom:483.532192pt;}
.y3_c00376{bottom:490.094667pt;}
.y4_c00376{bottom:493.152173pt;}
.y5_c00376{bottom:494.400367pt;}
.y6_c00376{bottom:495.409207pt;}
.y7_c00376{bottom:496.677560pt;}
.y2_c00376{bottom:505.800000pt;}
.y1_c00376{bottom:532.080000pt;}
.h16_c00376{height:14.933333pt;}
.h2_c00376{height:35.466667pt;}
.hf_c00376{height:39.217636pt;}
.h7_c00376{height:51.313463pt;}
.h13_c00376{height:51.356428pt;}
.h9_c00376{height:52.246436pt;}
.h8_c00376{height:53.179408pt;}
.h5_c00376{height:54.112380pt;}
.h14_c00376{height:54.157688pt;}
.hb_c00376{height:55.045352pt;}
.hd_c00376{height:55.091441pt;}
.h4_c00376{height:55.978324pt;}
.h12_c00376{height:56.025194pt;}
.ha_c00376{height:59.710212pt;}
.hc_c00376{height:60.643184pt;}
.h6_c00376{height:61.576156pt;}
.h15_c00376{height:61.627714pt;}
.he_c00376{height:63.495220pt;}
.h10_c00376{height:66.296480pt;}
.h3_c00376{height:68.133333pt;}
.h11_c00376{height:68.163986pt;}
.h0_c00376{height:545.040000pt;}
.h1_c00376{height:545.333333pt;}
.w0_c00376{width:319.200000pt;}
.w1_c00376{width:319.333333pt;}
.x0_c00376{left:0.000000pt;}
.x3_c00376{left:22.020000pt;}
.x13_c00376{left:22.915348pt;}
.x25_c00376{left:24.115896pt;}
.x35_c00376{left:25.722156pt;}
.x4b_c00376{left:27.146881pt;}
.x57_c00376{left:28.884033pt;}
.x6c_c00376{left:29.911840pt;}
.x6e_c00376{left:31.086093pt;}
.x76_c00376{left:32.542240pt;}
.x31_c00376{left:36.212225pt;}
.x14_c00376{left:37.667456pt;}
.x8_c00376{left:40.244609pt;}
.x2a_c00376{left:41.855091pt;}
.x32_c00376{left:42.902395pt;}
.x46_c00376{left:44.708407pt;}
.x20_c00376{left:46.290115pt;}
.x6d_c00376{left:51.801880pt;}
.xf_c00376{left:53.224645pt;}
.x9_c00376{left:54.424101pt;}
.x3d_c00376{left:59.273907pt;}
.x58_c00376{left:62.042345pt;}
.x4e_c00376{left:64.913093pt;}
.x5e_c00376{left:66.240072pt;}
.x26_c00376{left:67.961209pt;}
.x6b_c00376{left:69.500293pt;}
.x7a_c00376{left:72.407013pt;}
.x15_c00376{left:75.942493pt;}
.x47_c00376{left:76.952661pt;}
.x43_c00376{left:79.315220pt;}
.x5b_c00376{left:81.197376pt;}
.x2b_c00376{left:84.359809pt;}
.x73_c00376{left:85.324107pt;}
.x48_c00376{left:87.211840pt;}
.x77_c00376{left:90.457427pt;}
.x66_c00376{left:91.439707pt;}
.x41_c00376{left:94.596063pt;}
.x4f_c00376{left:96.624667pt;}
.x21_c00376{left:98.429389pt;}
.x59_c00376{left:99.932388pt;}
.x1b_c00376{left:103.550773pt;}
.x74_c00376{left:105.848840pt;}
.x50_c00376{left:107.371031pt;}
.x4_c00376{left:109.289976pt;}
.x22_c00376{left:110.434981pt;}
.x78_c00376{left:111.425520pt;}
.x67_c00376{left:114.337040pt;}
.x4c_c00376{left:117.924209pt;}
.x27_c00376{left:120.033349pt;}
.x10_c00376{left:121.826879pt;}
.x36_c00376{left:123.836791pt;}
.x7b_c00376{left:125.882213pt;}
.x6f_c00376{left:127.261613pt;}
.x33_c00376{left:128.884967pt;}
.x2c_c00376{left:129.943247pt;}
.x1_c00376{left:132.000000pt;}
.x1c_c00376{left:134.528839pt;}
.x2_c00376{left:136.320000pt;}
.x51_c00376{left:137.428120pt;}
.x37_c00376{left:139.199044pt;}
.x63_c00376{left:140.246667pt;}
.x16_c00376{left:141.996667pt;}
.x28_c00376{left:143.080471pt;}
.x23_c00376{left:144.016255pt;}
.x5_c00376{left:144.916980pt;}
.x7c_c00376{left:146.108747pt;}
.x7e_c00376{left:148.261200pt;}
.x5f_c00376{left:149.594473pt;}
.x64_c00376{left:151.718667pt;}
.x68_c00376{left:152.611707pt;}
.xa_c00376{left:153.724408pt;}
.x44_c00376{left:154.862319pt;}
.x17_c00376{left:160.596011pt;}
.x70_c00376{left:161.599067pt;}
.x11_c00376{left:162.918964pt;}
.x69_c00376{left:164.867707pt;}
.xb_c00376{left:168.126297pt;}
.x60_c00376{left:170.027468pt;}
.x53_c00376{left:171.439529pt;}
.x6_c00376{left:173.712156pt;}
.x3e_c00376{left:176.008595pt;}
.x45_c00376{left:178.607535pt;}
.x2f_c00376{left:180.920509pt;}
.x38_c00376{left:184.165312pt;}
.x5a_c00376{left:185.583667pt;}
.x72_c00376{left:188.386627pt;}
.x29_c00376{left:190.309764pt;}
.x54_c00376{left:194.005989pt;}
.x18_c00376{left:195.479403pt;}
.x39_c00376{left:196.431157pt;}
.x1d_c00376{left:198.404475pt;}
.x49_c00376{left:199.738943pt;}
.x3f_c00376{left:202.260405pt;}
.x52_c00376{left:204.818429pt;}
.x7_c00376{left:209.914584pt;}
.x2d_c00376{left:210.990803pt;}
.x5c_c00376{left:212.704767pt;}
.xc_c00376{left:214.870903pt;}
.x19_c00376{left:217.997911pt;}
.x7f_c00376{left:218.942053pt;}
.x4d_c00376{left:219.918144pt;}
.x55_c00376{left:221.119032pt;}
.x1e_c00376{left:223.480261pt;}
.x80_c00376{left:224.553400pt;}
.x79_c00376{left:228.445187pt;}
.x2e_c00376{left:229.520204pt;}
.xd_c00376{left:233.140687pt;}
.x1f_c00376{left:238.056851pt;}
.x61_c00376{left:240.051612pt;}
.x3a_c00376{left:242.420681pt;}
.x65_c00376{left:244.156000pt;}
.x4a_c00376{left:246.372136pt;}
.x7d_c00376{left:247.449493pt;}
.x42_c00376{left:249.528333pt;}
.x71_c00376{left:253.635440pt;}
.x12_c00376{left:255.291276pt;}
.x40_c00376{left:257.418189pt;}
.x3b_c00376{left:258.482421pt;}
.x24_c00376{left:259.914023pt;}
.x75_c00376{left:262.472160pt;}
.xe_c00376{left:266.335789pt;}
.x56_c00376{left:267.867808pt;}
.x6a_c00376{left:269.953040pt;}
.x3c_c00376{left:272.360407pt;}
.x1a_c00376{left:273.994411pt;}
.x34_c00376{left:275.932828pt;}
.x30_c00376{left:277.569311pt;}
.x62_c00376{left:280.944195pt;}
.x5d_c00376{left:283.209191pt;}
.x81_c00376{left:288.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00377 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00377 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00377 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00377 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me0_c00377{transform:matrix(0.026135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026135,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.143790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143790,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148840,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);}
.mad_c00377{transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);}
.ma8_c00377{transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);}
.mcc_c00377{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.mde_c00377{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m96_c00377{transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158845,0.000000,0.000000,0.250000,0,0);}
.m5b_c00377{transform:matrix(0.158915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158915,0.000000,0.000000,0.250000,0,0);}
.m63_c00377{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.mab_c00377{transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m9b_c00377{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.maf_c00377{transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.m47_c00377{transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163270,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.mb1_c00377{transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.164470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164470,0.000000,0.000000,0.250000,0,0);}
.m68_c00377{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m82_c00377{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m85_c00377{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m58_c00377{transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);}
.mc8_c00377{transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);}
.mc6_c00377{transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00377{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.mac_c00377{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m49_c00377{transform:matrix(0.169560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169560,0.000000,0.000000,0.250000,0,0);}
.m86_c00377{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.m1d_c00377{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.m90_c00377{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.md1_c00377{transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171695,0.000000,0.000000,0.250000,0,0);}
.m6b_c00377{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m9d_c00377{transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173390,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.mdf_c00377{transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);}
.mae_c00377{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m34_c00377{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m48_c00377{transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.m62_c00377{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.mc4_c00377{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.m52_c00377{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m5c_c00377{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00377{transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178505,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.m7e_c00377{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m50_c00377{transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);}
.m8e_c00377{transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);}
.mb5_c00377{transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);}
.m74_c00377{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m8f_c00377{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.mb8_c00377{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m7f_c00377{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.mb2_c00377{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.mb0_c00377{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.m93_c00377{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.m78_c00377{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.mc0_c00377{transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);}
.m4e_c00377{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m84_c00377{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.mcb_c00377{transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183980,0.000000,0.000000,0.250000,0,0);}
.md0_c00377{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m7c_c00377{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m7b_c00377{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.mcd_c00377{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m9c_c00377{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m4a_c00377{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);}
.mdd_c00377{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m6d_c00377{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m94_c00377{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m87_c00377{transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);}
.m79_c00377{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.mc3_c00377{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m76_c00377{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00377{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m56_c00377{transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);}
.m6f_c00377{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.m81_c00377{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m53_c00377{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.m4b_c00377{transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);}
.m45_c00377{transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189140,0.000000,0.000000,0.250000,0,0);}
.m38_c00377{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.m97_c00377{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m59_c00377{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.ma1_c00377{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.mdb_c00377{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m9a_c00377{transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);}
.md5_c00377{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m60_c00377{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00377{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m98_c00377{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m55_c00377{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m57_c00377{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m91_c00377{transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);}
.mb4_c00377{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.md3_c00377{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00377{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m4f_c00377{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m5a_c00377{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00377{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m88_c00377{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.mbd_c00377{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m4d_c00377{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m7d_c00377{transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);}
.m8b_c00377{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00377{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.m5d_c00377{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m61_c00377{transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.mb7_c00377{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m83_c00377{transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);}
.mba_c00377{transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);}
.m75_c00377{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201180,0.000000,0.000000,0.250000,0,0);}
.mbb_c00377{transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201655,0.000000,0.000000,0.250000,0,0);}
.m6c_c00377{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.mcf_c00377{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.m92_c00377{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00377{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.m6a_c00377{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m73_c00377{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203590,0.000000,0.000000,0.250000,0,0);}
.ma7_c00377{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m95_c00377{transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204055,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.ma6_c00377{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m66_c00377{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.md6_c00377{transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207165,0.000000,0.000000,0.250000,0,0);}
.m64_c00377{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m70_c00377{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m89_c00377{transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);}
.m8a_c00377{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.mc1_c00377{transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209045,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);}
.mce_c00377{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);}
.mc7_c00377{transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212635,0.000000,0.000000,0.250000,0,0);}
.mc5_c00377{transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00377{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.md7_c00377{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.md4_c00377{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00377{transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.m65_c00377{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.md9_c00377{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m72_c00377{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.md8_c00377{transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);}
.m23_c00377{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.ma2_c00377{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00377{transform:matrix(0.220715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220715,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);}
.md2_c00377{transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);}
.mc9_c00377{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.mca_c00377{transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);}
.m1f_c00377{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m4c_c00377{transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00377{transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00377{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.mb6_c00377{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.mb3_c00377{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.mc2_c00377{transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);}
.m99_c00377{transform:matrix(0.235410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00377{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);}
.m7a_c00377{transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.242185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242185,0.000000,0.000000,0.250000,0,0);}
.m9f_c00377{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m32_c00377{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.ma0_c00377{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.ma9_c00377{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.mda_c00377{transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m77_c00377{transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);}
.m5f_c00377{transform:matrix(0.283245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283245,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.297435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297435,0.000000,0.000000,0.250000,0,0);}
.m9e_c00377{transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.632265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632265,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:0.000000px;}
.fc0_c00377{color:transparent;}
.fs0_c00377{font-size:22.050000px;}
.fsa_c00377{font-size:57.750000px;}
.fsc_c00377{font-size:58.800000px;}
.fs6_c00377{font-size:60.900000px;}
.fs7_c00377{font-size:63.000000px;}
.fs4_c00377{font-size:64.050000px;}
.fs2_c00377{font-size:65.100000px;}
.fs9_c00377{font-size:66.150000px;}
.fs8_c00377{font-size:67.200000px;}
.fs3_c00377{font-size:68.250000px;}
.fsb_c00377{font-size:71.400000px;}
.fs5_c00377{font-size:72.450000px;}
.fs1_c00377{font-size:80.850000px;}
.y0_c00377{bottom:0.000000px;}
.y22_c00377{bottom:21.492000px;}
.y21_c00377{bottom:39.628500px;}
.y20_c00377{bottom:55.650000px;}
.y1f_c00377{bottom:72.240000px;}
.y1e_c00377{bottom:89.400000px;}
.y1d_c00377{bottom:105.691500px;}
.y1c_c00377{bottom:123.150000px;}
.y1b_c00377{bottom:139.839000px;}
.y1a_c00377{bottom:157.288500px;}
.y19_c00377{bottom:174.456000px;}
.y18_c00377{bottom:191.973000px;}
.y17_c00377{bottom:208.941000px;}
.y16_c00377{bottom:225.516000px;}
.y15_c00377{bottom:242.821500px;}
.y14_c00377{bottom:259.738500px;}
.y13_c00377{bottom:276.357000px;}
.y12_c00377{bottom:293.245500px;}
.y11_c00377{bottom:309.658500px;}
.y10_c00377{bottom:327.670500px;}
.yf_c00377{bottom:344.737500px;}
.ye_c00377{bottom:361.234500px;}
.yd_c00377{bottom:378.118500px;}
.yc_c00377{bottom:394.950000px;}
.yb_c00377{bottom:412.680000px;}
.y1_c00377{bottom:413.640000px;}
.ya_c00377{bottom:429.420000px;}
.y9_c00377{bottom:445.564500px;}
.y8_c00377{bottom:462.873000px;}
.y7_c00377{bottom:480.297000px;}
.y6_c00377{bottom:496.437000px;}
.y5_c00377{bottom:513.960000px;}
.y4_c00377{bottom:530.755500px;}
.y3_c00377{bottom:547.495500px;}
.y2_c00377{bottom:561.879000px;}
.h2_c00377{height:22.050000px;}
.hc_c00377{height:57.750000px;}
.he_c00377{height:58.800000px;}
.h8_c00377{height:60.900000px;}
.h9_c00377{height:63.000000px;}
.h6_c00377{height:64.050000px;}
.h4_c00377{height:65.100000px;}
.hb_c00377{height:66.150000px;}
.ha_c00377{height:67.200000px;}
.h5_c00377{height:68.250000px;}
.hd_c00377{height:71.400000px;}
.h7_c00377{height:72.450000px;}
.h3_c00377{height:80.850000px;}
.h0_c00377{height:613.170000px;}
.h1_c00377{height:613.500000px;}
.w0_c00377{width:359.100000px;}
.w1_c00377{width:359.250000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:27.000000px;}
.x1c_c00377{left:32.400000px;}
.x7a_c00377{left:33.750000px;}
.x71_c00377{left:35.100000px;}
.x5c_c00377{left:36.990000px;}
.x3_c00377{left:38.070000px;}
.x6d_c00377{left:43.740000px;}
.x65_c00377{left:45.900000px;}
.x4b_c00377{left:48.330000px;}
.x77_c00377{left:55.620000px;}
.x7d_c00377{left:60.750000px;}
.x78_c00377{left:62.370000px;}
.xb_c00377{left:66.690000px;}
.x1d_c00377{left:67.770000px;}
.x52_c00377{left:68.850000px;}
.x60_c00377{left:70.200000px;}
.x43_c00377{left:72.360000px;}
.x35_c00377{left:74.250000px;}
.x59_c00377{left:75.330000px;}
.x48_c00377{left:77.220000px;}
.x2f_c00377{left:82.350000px;}
.x7b_c00377{left:85.050000px;}
.x16_c00377{left:86.400000px;}
.x11_c00377{left:88.830000px;}
.x6e_c00377{left:92.610000px;}
.x36_c00377{left:94.770000px;}
.x40_c00377{left:96.930000px;}
.x17_c00377{left:99.360000px;}
.x4f_c00377{left:101.790000px;}
.x44_c00377{left:105.030000px;}
.x30_c00377{left:106.650000px;}
.x4_c00377{left:108.000000px;}
.x67_c00377{left:109.620000px;}
.x49_c00377{left:111.510000px;}
.x3b_c00377{left:113.130000px;}
.x28_c00377{left:116.100000px;}
.x72_c00377{left:117.450000px;}
.x4c_c00377{left:118.530000px;}
.x80_c00377{left:120.690000px;}
.x1e_c00377{left:123.120000px;}
.x5d_c00377{left:124.740000px;}
.x5_c00377{left:129.330000px;}
.x12_c00377{left:131.220000px;}
.x37_c00377{left:132.300000px;}
.xc_c00377{left:135.000000px;}
.x53_c00377{left:136.890000px;}
.x1f_c00377{left:139.320000px;}
.x45_c00377{left:142.560000px;}
.x18_c00377{left:144.180000px;}
.x23_c00377{left:145.260000px;}
.x31_c00377{left:146.610000px;}
.x3c_c00377{left:152.280000px;}
.x13_c00377{left:154.440000px;}
.x19_c00377{left:156.600000px;}
.x20_c00377{left:159.840000px;}
.x56_c00377{left:160.920000px;}
.x61_c00377{left:162.270000px;}
.x6a_c00377{left:164.700000px;}
.x38_c00377{left:167.130000px;}
.x24_c00377{left:168.750000px;}
.x7e_c00377{left:170.100000px;}
.x2_c00377{left:171.180000px;}
.x29_c00377{left:172.530000px;}
.xd_c00377{left:174.420000px;}
.x4a_c00377{left:180.360000px;}
.x6_c00377{left:181.980000px;}
.x57_c00377{left:184.680000px;}
.x25_c00377{left:187.110000px;}
.x50_c00377{left:190.350000px;}
.x54_c00377{left:191.430000px;}
.x7_c00377{left:194.400000px;}
.xe_c00377{left:196.020000px;}
.x4d_c00377{left:200.340000px;}
.x2a_c00377{left:202.230000px;}
.x1a_c00377{left:204.660000px;}
.x6f_c00377{left:209.520000px;}
.x14_c00377{left:210.870000px;}
.x3d_c00377{left:212.490000px;}
.x79_c00377{left:215.460000px;}
.x4e_c00377{left:216.810000px;}
.x62_c00377{left:219.510000px;}
.x1b_c00377{left:220.860000px;}
.x32_c00377{left:222.750000px;}
.x46_c00377{left:223.830000px;}
.x21_c00377{left:225.450000px;}
.x6b_c00377{left:229.770000px;}
.x39_c00377{left:233.280000px;}
.x74_c00377{left:237.330000px;}
.x58_c00377{left:241.110000px;}
.x5a_c00377{left:243.000000px;}
.x5e_c00377{left:244.620000px;}
.x47_c00377{left:245.970000px;}
.x73_c00377{left:247.860000px;}
.xf_c00377{left:250.290000px;}
.x2b_c00377{left:251.370000px;}
.x3e_c00377{left:253.800000px;}
.x75_c00377{left:257.580000px;}
.x55_c00377{left:258.930000px;}
.x41_c00377{left:260.820000px;}
.x5f_c00377{left:263.790000px;}
.x2c_c00377{left:265.410000px;}
.x8_c00377{left:267.300000px;}
.x68_c00377{left:270.810000px;}
.x63_c00377{left:271.890000px;}
.x26_c00377{left:273.510000px;}
.x76_c00377{left:275.130000px;}
.x5b_c00377{left:280.530000px;}
.x6c_c00377{left:282.960000px;}
.x22_c00377{left:284.040000px;}
.x33_c00377{left:285.120000px;}
.x9_c00377{left:289.440000px;}
.x64_c00377{left:290.520000px;}
.x42_c00377{left:291.870000px;}
.x15_c00377{left:293.490000px;}
.x27_c00377{left:295.650000px;}
.x2d_c00377{left:299.970000px;}
.x51_c00377{left:302.940000px;}
.x34_c00377{left:305.640000px;}
.xa_c00377{left:307.260000px;}
.x7f_c00377{left:309.150000px;}
.x7c_c00377{left:311.040000px;}
.x81_c00377{left:313.740000px;}
.x70_c00377{left:314.820000px;}
.x2e_c00377{left:316.440000px;}
.x10_c00377{left:318.600000px;}
.x69_c00377{left:321.570000px;}
.x66_c00377{left:322.650000px;}
.x3a_c00377{left:325.890000px;}
.x3f_c00377{left:328.860000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs0_c00377{font-size:19.600000pt;}
.fsa_c00377{font-size:51.333333pt;}
.fsc_c00377{font-size:52.266667pt;}
.fs6_c00377{font-size:54.133333pt;}
.fs7_c00377{font-size:56.000000pt;}
.fs4_c00377{font-size:56.933333pt;}
.fs2_c00377{font-size:57.866667pt;}
.fs9_c00377{font-size:58.800000pt;}
.fs8_c00377{font-size:59.733333pt;}
.fs3_c00377{font-size:60.666667pt;}
.fsb_c00377{font-size:63.466667pt;}
.fs5_c00377{font-size:64.400000pt;}
.fs1_c00377{font-size:71.866667pt;}
.y0_c00377{bottom:0.000000pt;}
.y22_c00377{bottom:19.104000pt;}
.y21_c00377{bottom:35.225333pt;}
.y20_c00377{bottom:49.466667pt;}
.y1f_c00377{bottom:64.213333pt;}
.y1e_c00377{bottom:79.466667pt;}
.y1d_c00377{bottom:93.948000pt;}
.y1c_c00377{bottom:109.466667pt;}
.y1b_c00377{bottom:124.301333pt;}
.y1a_c00377{bottom:139.812000pt;}
.y19_c00377{bottom:155.072000pt;}
.y18_c00377{bottom:170.642667pt;}
.y17_c00377{bottom:185.725333pt;}
.y16_c00377{bottom:200.458667pt;}
.y15_c00377{bottom:215.841333pt;}
.y14_c00377{bottom:230.878667pt;}
.y13_c00377{bottom:245.650667pt;}
.y12_c00377{bottom:260.662667pt;}
.y11_c00377{bottom:275.252000pt;}
.y10_c00377{bottom:291.262667pt;}
.yf_c00377{bottom:306.433333pt;}
.ye_c00377{bottom:321.097333pt;}
.yd_c00377{bottom:336.105333pt;}
.yc_c00377{bottom:351.066667pt;}
.yb_c00377{bottom:366.826667pt;}
.y1_c00377{bottom:367.680000pt;}
.ya_c00377{bottom:381.706667pt;}
.y9_c00377{bottom:396.057333pt;}
.y8_c00377{bottom:411.442667pt;}
.y7_c00377{bottom:426.930667pt;}
.y6_c00377{bottom:441.277333pt;}
.y5_c00377{bottom:456.853333pt;}
.y4_c00377{bottom:471.782667pt;}
.y3_c00377{bottom:486.662667pt;}
.y2_c00377{bottom:499.448000pt;}
.h2_c00377{height:19.600000pt;}
.hc_c00377{height:51.333333pt;}
.he_c00377{height:52.266667pt;}
.h8_c00377{height:54.133333pt;}
.h9_c00377{height:56.000000pt;}
.h6_c00377{height:56.933333pt;}
.h4_c00377{height:57.866667pt;}
.hb_c00377{height:58.800000pt;}
.ha_c00377{height:59.733333pt;}
.h5_c00377{height:60.666667pt;}
.hd_c00377{height:63.466667pt;}
.h7_c00377{height:64.400000pt;}
.h3_c00377{height:71.866667pt;}
.h0_c00377{height:545.040000pt;}
.h1_c00377{height:545.333333pt;}
.w0_c00377{width:319.200000pt;}
.w1_c00377{width:319.333333pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:24.000000pt;}
.x1c_c00377{left:28.800000pt;}
.x7a_c00377{left:30.000000pt;}
.x71_c00377{left:31.200000pt;}
.x5c_c00377{left:32.880000pt;}
.x3_c00377{left:33.840000pt;}
.x6d_c00377{left:38.880000pt;}
.x65_c00377{left:40.800000pt;}
.x4b_c00377{left:42.960000pt;}
.x77_c00377{left:49.440000pt;}
.x7d_c00377{left:54.000000pt;}
.x78_c00377{left:55.440000pt;}
.xb_c00377{left:59.280000pt;}
.x1d_c00377{left:60.240000pt;}
.x52_c00377{left:61.200000pt;}
.x60_c00377{left:62.400000pt;}
.x43_c00377{left:64.320000pt;}
.x35_c00377{left:66.000000pt;}
.x59_c00377{left:66.960000pt;}
.x48_c00377{left:68.640000pt;}
.x2f_c00377{left:73.200000pt;}
.x7b_c00377{left:75.600000pt;}
.x16_c00377{left:76.800000pt;}
.x11_c00377{left:78.960000pt;}
.x6e_c00377{left:82.320000pt;}
.x36_c00377{left:84.240000pt;}
.x40_c00377{left:86.160000pt;}
.x17_c00377{left:88.320000pt;}
.x4f_c00377{left:90.480000pt;}
.x44_c00377{left:93.360000pt;}
.x30_c00377{left:94.800000pt;}
.x4_c00377{left:96.000000pt;}
.x67_c00377{left:97.440000pt;}
.x49_c00377{left:99.120000pt;}
.x3b_c00377{left:100.560000pt;}
.x28_c00377{left:103.200000pt;}
.x72_c00377{left:104.400000pt;}
.x4c_c00377{left:105.360000pt;}
.x80_c00377{left:107.280000pt;}
.x1e_c00377{left:109.440000pt;}
.x5d_c00377{left:110.880000pt;}
.x5_c00377{left:114.960000pt;}
.x12_c00377{left:116.640000pt;}
.x37_c00377{left:117.600000pt;}
.xc_c00377{left:120.000000pt;}
.x53_c00377{left:121.680000pt;}
.x1f_c00377{left:123.840000pt;}
.x45_c00377{left:126.720000pt;}
.x18_c00377{left:128.160000pt;}
.x23_c00377{left:129.120000pt;}
.x31_c00377{left:130.320000pt;}
.x3c_c00377{left:135.360000pt;}
.x13_c00377{left:137.280000pt;}
.x19_c00377{left:139.200000pt;}
.x20_c00377{left:142.080000pt;}
.x56_c00377{left:143.040000pt;}
.x61_c00377{left:144.240000pt;}
.x6a_c00377{left:146.400000pt;}
.x38_c00377{left:148.560000pt;}
.x24_c00377{left:150.000000pt;}
.x7e_c00377{left:151.200000pt;}
.x2_c00377{left:152.160000pt;}
.x29_c00377{left:153.360000pt;}
.xd_c00377{left:155.040000pt;}
.x4a_c00377{left:160.320000pt;}
.x6_c00377{left:161.760000pt;}
.x57_c00377{left:164.160000pt;}
.x25_c00377{left:166.320000pt;}
.x50_c00377{left:169.200000pt;}
.x54_c00377{left:170.160000pt;}
.x7_c00377{left:172.800000pt;}
.xe_c00377{left:174.240000pt;}
.x4d_c00377{left:178.080000pt;}
.x2a_c00377{left:179.760000pt;}
.x1a_c00377{left:181.920000pt;}
.x6f_c00377{left:186.240000pt;}
.x14_c00377{left:187.440000pt;}
.x3d_c00377{left:188.880000pt;}
.x79_c00377{left:191.520000pt;}
.x4e_c00377{left:192.720000pt;}
.x62_c00377{left:195.120000pt;}
.x1b_c00377{left:196.320000pt;}
.x32_c00377{left:198.000000pt;}
.x46_c00377{left:198.960000pt;}
.x21_c00377{left:200.400000pt;}
.x6b_c00377{left:204.240000pt;}
.x39_c00377{left:207.360000pt;}
.x74_c00377{left:210.960000pt;}
.x58_c00377{left:214.320000pt;}
.x5a_c00377{left:216.000000pt;}
.x5e_c00377{left:217.440000pt;}
.x47_c00377{left:218.640000pt;}
.x73_c00377{left:220.320000pt;}
.xf_c00377{left:222.480000pt;}
.x2b_c00377{left:223.440000pt;}
.x3e_c00377{left:225.600000pt;}
.x75_c00377{left:228.960000pt;}
.x55_c00377{left:230.160000pt;}
.x41_c00377{left:231.840000pt;}
.x5f_c00377{left:234.480000pt;}
.x2c_c00377{left:235.920000pt;}
.x8_c00377{left:237.600000pt;}
.x68_c00377{left:240.720000pt;}
.x63_c00377{left:241.680000pt;}
.x26_c00377{left:243.120000pt;}
.x76_c00377{left:244.560000pt;}
.x5b_c00377{left:249.360000pt;}
.x6c_c00377{left:251.520000pt;}
.x22_c00377{left:252.480000pt;}
.x33_c00377{left:253.440000pt;}
.x9_c00377{left:257.280000pt;}
.x64_c00377{left:258.240000pt;}
.x42_c00377{left:259.440000pt;}
.x15_c00377{left:260.880000pt;}
.x27_c00377{left:262.800000pt;}
.x2d_c00377{left:266.640000pt;}
.x51_c00377{left:269.280000pt;}
.x34_c00377{left:271.680000pt;}
.xa_c00377{left:273.120000pt;}
.x7f_c00377{left:274.800000pt;}
.x7c_c00377{left:276.480000pt;}
.x81_c00377{left:278.880000pt;}
.x70_c00377{left:279.840000pt;}
.x2e_c00377{left:281.280000pt;}
.x10_c00377{left:283.200000pt;}
.x69_c00377{left:285.840000pt;}
.x66_c00377{left:286.800000pt;}
.x3a_c00377{left:289.680000pt;}
.x3f_c00377{left:292.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00378 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00378 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00378 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00378 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00378.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00378{transform:matrix(0.076431,-0.001911,0.006248,0.249922,0,0);-ms-transform:matrix(0.076431,-0.001911,0.006248,0.249922,0,0);-webkit-transform:matrix(0.076431,-0.001911,0.006248,0.249922,0,0);}
.mae_c00378{transform:matrix(0.143055,-0.003576,0.006248,0.249922,0,0);-ms-transform:matrix(0.143055,-0.003576,0.006248,0.249922,0,0);-webkit-transform:matrix(0.143055,-0.003576,0.006248,0.249922,0,0);}
.m85_c00378{transform:matrix(0.149128,-0.004474,0.007497,0.249888,0,0);-ms-transform:matrix(0.149128,-0.004474,0.007497,0.249888,0,0);-webkit-transform:matrix(0.149128,-0.004474,0.007497,0.249888,0,0);}
.m9d_c00378{transform:matrix(0.153981,-0.004619,0.007497,0.249888,0,0);-ms-transform:matrix(0.153981,-0.004619,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153981,-0.004619,0.007497,0.249888,0,0);}
.m3d_c00378{transform:matrix(0.155055,-0.004652,0.007497,0.249888,0,0);-ms-transform:matrix(0.155055,-0.004652,0.007497,0.249888,0,0);-webkit-transform:matrix(0.155055,-0.004652,0.007497,0.249888,0,0);}
.m34_c00378{transform:matrix(0.155190,-0.004656,0.007497,0.249888,0,0);-ms-transform:matrix(0.155190,-0.004656,0.007497,0.249888,0,0);-webkit-transform:matrix(0.155190,-0.004656,0.007497,0.249888,0,0);}
.maa_c00378{transform:matrix(0.155505,-0.004665,0.007497,0.249888,0,0);-ms-transform:matrix(0.155505,-0.004665,0.007497,0.249888,0,0);-webkit-transform:matrix(0.155505,-0.004665,0.007497,0.249888,0,0);}
.m9a_c00378{transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);-ms-transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157584,-0.004728,0.007497,0.249888,0,0);}
.ma1_c00378{transform:matrix(0.157839,-0.004735,0.007497,0.249888,0,0);-ms-transform:matrix(0.157839,-0.004735,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157839,-0.004735,0.007497,0.249888,0,0);}
.ma6_c00378{transform:matrix(0.158299,-0.004749,0.007497,0.249888,0,0);-ms-transform:matrix(0.158299,-0.004749,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158299,-0.004749,0.007497,0.249888,0,0);}
.ma7_c00378{transform:matrix(0.158869,-0.004766,0.007497,0.249888,0,0);-ms-transform:matrix(0.158869,-0.004766,0.007497,0.249888,0,0);-webkit-transform:matrix(0.158869,-0.004766,0.007497,0.249888,0,0);}
.ma3_c00378{transform:matrix(0.159568,-0.004787,0.007497,0.249888,0,0);-ms-transform:matrix(0.159568,-0.004787,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159568,-0.004787,0.007497,0.249888,0,0);}
.m94_c00378{transform:matrix(0.160523,-0.004816,0.007497,0.249888,0,0);-ms-transform:matrix(0.160523,-0.004816,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160523,-0.004816,0.007497,0.249888,0,0);}
.m0_c00378{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m6a_c00378{transform:matrix(0.163476,-0.004904,0.007497,0.249888,0,0);-ms-transform:matrix(0.163476,-0.004904,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163476,-0.004904,0.007497,0.249888,0,0);}
.mcf_c00378{transform:matrix(0.163549,-0.004089,0.006248,0.249922,0,0);-ms-transform:matrix(0.163549,-0.004089,0.006248,0.249922,0,0);-webkit-transform:matrix(0.163549,-0.004089,0.006248,0.249922,0,0);}
.m7f_c00378{transform:matrix(0.163576,-0.004907,0.007497,0.249888,0,0);-ms-transform:matrix(0.163576,-0.004907,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163576,-0.004907,0.007497,0.249888,0,0);}
.m9f_c00378{transform:matrix(0.165106,-0.004953,0.007497,0.249888,0,0);-ms-transform:matrix(0.165106,-0.004953,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165106,-0.004953,0.007497,0.249888,0,0);}
.m39_c00378{transform:matrix(0.166145,-0.004984,0.007497,0.249888,0,0);-ms-transform:matrix(0.166145,-0.004984,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166145,-0.004984,0.007497,0.249888,0,0);}
.mf1_c00378{transform:matrix(0.166288,-0.002993,0.004499,0.249960,0,0);-ms-transform:matrix(0.166288,-0.002993,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166288,-0.002993,0.004499,0.249960,0,0);}
.ma9_c00378{transform:matrix(0.166970,-0.005009,0.007497,0.249888,0,0);-ms-transform:matrix(0.166970,-0.005009,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166970,-0.005009,0.007497,0.249888,0,0);}
.ma0_c00378{transform:matrix(0.168384,-0.005052,0.007497,0.249888,0,0);-ms-transform:matrix(0.168384,-0.005052,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168384,-0.005052,0.007497,0.249888,0,0);}
.mef_c00378{transform:matrix(0.168768,-0.003038,0.004499,0.249960,0,0);-ms-transform:matrix(0.168768,-0.003038,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168768,-0.003038,0.004499,0.249960,0,0);}
.mc4_c00378{transform:matrix(0.169352,-0.004234,0.006248,0.249922,0,0);-ms-transform:matrix(0.169352,-0.004234,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169352,-0.004234,0.006248,0.249922,0,0);}
.m7_c00378{transform:matrix(0.169479,-0.005084,0.007497,0.249888,0,0);-ms-transform:matrix(0.169479,-0.005084,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169479,-0.005084,0.007497,0.249888,0,0);}
.m72_c00378{transform:matrix(0.169649,-0.005089,0.007497,0.249888,0,0);-ms-transform:matrix(0.169649,-0.005089,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169649,-0.005089,0.007497,0.249888,0,0);}
.meb_c00378{transform:matrix(0.170097,-0.003062,0.004499,0.249960,0,0);-ms-transform:matrix(0.170097,-0.003062,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170097,-0.003062,0.004499,0.249960,0,0);}
.m75_c00378{transform:matrix(0.170968,-0.005129,0.007497,0.249888,0,0);-ms-transform:matrix(0.170968,-0.005129,0.007497,0.249888,0,0);-webkit-transform:matrix(0.170968,-0.005129,0.007497,0.249888,0,0);}
.mb2_c00378{transform:matrix(0.171082,-0.004277,0.006248,0.249922,0,0);-ms-transform:matrix(0.171082,-0.004277,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171082,-0.004277,0.006248,0.249922,0,0);}
.m1d_c00378{transform:matrix(0.171523,-0.005146,0.007497,0.249888,0,0);-ms-transform:matrix(0.171523,-0.005146,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171523,-0.005146,0.007497,0.249888,0,0);}
.ma8_c00378{transform:matrix(0.172153,-0.005165,0.007497,0.249888,0,0);-ms-transform:matrix(0.172153,-0.005165,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172153,-0.005165,0.007497,0.249888,0,0);}
.m26_c00378{transform:matrix(0.172178,-0.005165,0.007497,0.249888,0,0);-ms-transform:matrix(0.172178,-0.005165,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172178,-0.005165,0.007497,0.249888,0,0);}
.md8_c00378{transform:matrix(0.172436,-0.004311,0.006248,0.249922,0,0);-ms-transform:matrix(0.172436,-0.004311,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172436,-0.004311,0.006248,0.249922,0,0);}
.m8b_c00378{transform:matrix(0.172557,-0.005177,0.007497,0.249888,0,0);-ms-transform:matrix(0.172557,-0.005177,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172557,-0.005177,0.007497,0.249888,0,0);}
.m19_c00378{transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);-ms-transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172647,-0.005179,0.007497,0.249888,0,0);}
.ma_c00378{transform:matrix(0.172917,-0.005188,0.007497,0.249888,0,0);-ms-transform:matrix(0.172917,-0.005188,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172917,-0.005188,0.007497,0.249888,0,0);}
.mf_c00378{transform:matrix(0.173727,-0.005212,0.007497,0.249888,0,0);-ms-transform:matrix(0.173727,-0.005212,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173727,-0.005212,0.007497,0.249888,0,0);}
.m9c_c00378{transform:matrix(0.173797,-0.005214,0.007497,0.249888,0,0);-ms-transform:matrix(0.173797,-0.005214,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173797,-0.005214,0.007497,0.249888,0,0);}
.mf2_c00378{transform:matrix(0.173972,-0.003131,0.004499,0.249960,0,0);-ms-transform:matrix(0.173972,-0.003131,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173972,-0.003131,0.004499,0.249960,0,0);}
.mb7_c00378{transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);-ms-transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173981,-0.004350,0.006248,0.249922,0,0);}
.m40_c00378{transform:matrix(0.174157,-0.005225,0.007497,0.249888,0,0);-ms-transform:matrix(0.174157,-0.005225,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174157,-0.005225,0.007497,0.249888,0,0);}
.m88_c00378{transform:matrix(0.174482,-0.005234,0.007497,0.249888,0,0);-ms-transform:matrix(0.174482,-0.005234,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174482,-0.005234,0.007497,0.249888,0,0);}
.m2f_c00378{transform:matrix(0.174551,-0.005237,0.007497,0.249888,0,0);-ms-transform:matrix(0.174551,-0.005237,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174551,-0.005237,0.007497,0.249888,0,0);}
.mcb_c00378{transform:matrix(0.174595,-0.004365,0.006248,0.249922,0,0);-ms-transform:matrix(0.174595,-0.004365,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174595,-0.004365,0.006248,0.249922,0,0);}
.mca_c00378{transform:matrix(0.174765,-0.004369,0.006248,0.249922,0,0);-ms-transform:matrix(0.174765,-0.004369,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174765,-0.004369,0.006248,0.249922,0,0);}
.m86_c00378{transform:matrix(0.175926,-0.005278,0.007497,0.249888,0,0);-ms-transform:matrix(0.175926,-0.005278,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175926,-0.005278,0.007497,0.249888,0,0);}
.m41_c00378{transform:matrix(0.176466,-0.005294,0.007497,0.249888,0,0);-ms-transform:matrix(0.176466,-0.005294,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176466,-0.005294,0.007497,0.249888,0,0);}
.m6d_c00378{transform:matrix(0.176536,-0.005296,0.007497,0.249888,0,0);-ms-transform:matrix(0.176536,-0.005296,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176536,-0.005296,0.007497,0.249888,0,0);}
.m1e_c00378{transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-ms-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176800,-0.005304,0.007497,0.249888,0,0);}
.mc7_c00378{transform:matrix(0.177704,-0.004443,0.006248,0.249922,0,0);-ms-transform:matrix(0.177704,-0.004443,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177704,-0.004443,0.006248,0.249922,0,0);}
.m3a_c00378{transform:matrix(0.177720,-0.005332,0.007497,0.249888,0,0);-ms-transform:matrix(0.177720,-0.005332,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177720,-0.005332,0.007497,0.249888,0,0);}
.me0_c00378{transform:matrix(0.177754,-0.004444,0.006248,0.249922,0,0);-ms-transform:matrix(0.177754,-0.004444,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177754,-0.004444,0.006248,0.249922,0,0);}
.me3_c00378{transform:matrix(0.178564,-0.004464,0.006248,0.249922,0,0);-ms-transform:matrix(0.178564,-0.004464,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178564,-0.004464,0.006248,0.249922,0,0);}
.m9e_c00378{transform:matrix(0.179629,-0.005389,0.007497,0.249888,0,0);-ms-transform:matrix(0.179629,-0.005389,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179629,-0.005389,0.007497,0.249888,0,0);}
.m7e_c00378{transform:matrix(0.179829,-0.005395,0.007497,0.249888,0,0);-ms-transform:matrix(0.179829,-0.005395,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179829,-0.005395,0.007497,0.249888,0,0);}
.m7b_c00378{transform:matrix(0.180084,-0.005403,0.007497,0.249888,0,0);-ms-transform:matrix(0.180084,-0.005403,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180084,-0.005403,0.007497,0.249888,0,0);}
.mf0_c00378{transform:matrix(0.180381,-0.003247,0.004499,0.249960,0,0);-ms-transform:matrix(0.180381,-0.003247,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180381,-0.003247,0.004499,0.249960,0,0);}
.m3e_c00378{transform:matrix(0.180649,-0.005419,0.007497,0.249888,0,0);-ms-transform:matrix(0.180649,-0.005419,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180649,-0.005419,0.007497,0.249888,0,0);}
.mb3_c00378{transform:matrix(0.181363,-0.004534,0.006248,0.249922,0,0);-ms-transform:matrix(0.181363,-0.004534,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181363,-0.004534,0.006248,0.249922,0,0);}
.m71_c00378{transform:matrix(0.181543,-0.005446,0.007497,0.249888,0,0);-ms-transform:matrix(0.181543,-0.005446,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181543,-0.005446,0.007497,0.249888,0,0);}
.m7c_c00378{transform:matrix(0.181923,-0.005458,0.007497,0.249888,0,0);-ms-transform:matrix(0.181923,-0.005458,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181923,-0.005458,0.007497,0.249888,0,0);}
.mdf_c00378{transform:matrix(0.182298,-0.004557,0.006248,0.249922,0,0);-ms-transform:matrix(0.182298,-0.004557,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182298,-0.004557,0.006248,0.249922,0,0);}
.me5_c00378{transform:matrix(0.182808,-0.004570,0.006248,0.249922,0,0);-ms-transform:matrix(0.182808,-0.004570,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182808,-0.004570,0.006248,0.249922,0,0);}
.m45_c00378{transform:matrix(0.182858,-0.005486,0.007497,0.249888,0,0);-ms-transform:matrix(0.182858,-0.005486,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182858,-0.005486,0.007497,0.249888,0,0);}
.mcd_c00378{transform:matrix(0.183343,-0.004584,0.006248,0.249922,0,0);-ms-transform:matrix(0.183343,-0.004584,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183343,-0.004584,0.006248,0.249922,0,0);}
.mac_c00378{transform:matrix(0.184177,-0.005525,0.007497,0.249888,0,0);-ms-transform:matrix(0.184177,-0.005525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184177,-0.005525,0.007497,0.249888,0,0);}
.m4_c00378{transform:matrix(0.184262,-0.005528,0.007497,0.249888,0,0);-ms-transform:matrix(0.184262,-0.005528,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184262,-0.005528,0.007497,0.249888,0,0);}
.m92_c00378{transform:matrix(0.184687,-0.005541,0.007497,0.249888,0,0);-ms-transform:matrix(0.184687,-0.005541,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184687,-0.005541,0.007497,0.249888,0,0);}
.m2_c00378{transform:matrix(0.185282,-0.005558,0.007497,0.249888,0,0);-ms-transform:matrix(0.185282,-0.005558,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185282,-0.005558,0.007497,0.249888,0,0);}
.m29_c00378{transform:matrix(0.185781,-0.005573,0.007497,0.249888,0,0);-ms-transform:matrix(0.185781,-0.005573,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185781,-0.005573,0.007497,0.249888,0,0);}
.mc2_c00378{transform:matrix(0.185962,-0.004649,0.006248,0.249922,0,0);-ms-transform:matrix(0.185962,-0.004649,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185962,-0.004649,0.006248,0.249922,0,0);}
.mad_c00378{transform:matrix(0.185991,-0.005580,0.007497,0.249888,0,0);-ms-transform:matrix(0.185991,-0.005580,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185991,-0.005580,0.007497,0.249888,0,0);}
.m17_c00378{transform:matrix(0.186156,-0.005585,0.007497,0.249888,0,0);-ms-transform:matrix(0.186156,-0.005585,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186156,-0.005585,0.007497,0.249888,0,0);}
.m96_c00378{transform:matrix(0.186371,-0.005591,0.007497,0.249888,0,0);-ms-transform:matrix(0.186371,-0.005591,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186371,-0.005591,0.007497,0.249888,0,0);}
.m33_c00378{transform:matrix(0.186446,-0.005593,0.007497,0.249888,0,0);-ms-transform:matrix(0.186446,-0.005593,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186446,-0.005593,0.007497,0.249888,0,0);}
.m7a_c00378{transform:matrix(0.187166,-0.005615,0.007497,0.249888,0,0);-ms-transform:matrix(0.187166,-0.005615,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187166,-0.005615,0.007497,0.249888,0,0);}
.m95_c00378{transform:matrix(0.187985,-0.005640,0.007497,0.249888,0,0);-ms-transform:matrix(0.187985,-0.005640,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187985,-0.005640,0.007497,0.249888,0,0);}
.m89_c00378{transform:matrix(0.188175,-0.005645,0.007497,0.249888,0,0);-ms-transform:matrix(0.188175,-0.005645,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188175,-0.005645,0.007497,0.249888,0,0);}
.m58_c00378{transform:matrix(0.189065,-0.005672,0.007497,0.249888,0,0);-ms-transform:matrix(0.189065,-0.005672,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189065,-0.005672,0.007497,0.249888,0,0);}
.m5b_c00378{transform:matrix(0.189665,-0.005690,0.007497,0.249888,0,0);-ms-transform:matrix(0.189665,-0.005690,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189665,-0.005690,0.007497,0.249888,0,0);}
.m4d_c00378{transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);-ms-transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189735,-0.005692,0.007497,0.249888,0,0);}
.m11_c00378{transform:matrix(0.189935,-0.005698,0.007497,0.249888,0,0);-ms-transform:matrix(0.189935,-0.005698,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189935,-0.005698,0.007497,0.249888,0,0);}
.m25_c00378{transform:matrix(0.190000,-0.005700,0.007497,0.249888,0,0);-ms-transform:matrix(0.190000,-0.005700,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190000,-0.005700,0.007497,0.249888,0,0);}
.m24_c00378{transform:matrix(0.190389,-0.005712,0.007497,0.249888,0,0);-ms-transform:matrix(0.190389,-0.005712,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190389,-0.005712,0.007497,0.249888,0,0);}
.mc8_c00378{transform:matrix(0.190396,-0.004760,0.006248,0.249922,0,0);-ms-transform:matrix(0.190396,-0.004760,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190396,-0.004760,0.006248,0.249922,0,0);}
.me8_c00378{transform:matrix(0.190495,-0.004762,0.006248,0.249922,0,0);-ms-transform:matrix(0.190495,-0.004762,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190495,-0.004762,0.006248,0.249922,0,0);}
.m3c_c00378{transform:matrix(0.191304,-0.005739,0.007497,0.249888,0,0);-ms-transform:matrix(0.191304,-0.005739,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191304,-0.005739,0.007497,0.249888,0,0);}
.mee_c00378{transform:matrix(0.191634,-0.003449,0.004499,0.249960,0,0);-ms-transform:matrix(0.191634,-0.003449,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191634,-0.003449,0.004499,0.249960,0,0);}
.ma2_c00378{transform:matrix(0.191789,-0.005754,0.007497,0.249888,0,0);-ms-transform:matrix(0.191789,-0.005754,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191789,-0.005754,0.007497,0.249888,0,0);}
.m9_c00378{transform:matrix(0.192204,-0.005766,0.007497,0.249888,0,0);-ms-transform:matrix(0.192204,-0.005766,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192204,-0.005766,0.007497,0.249888,0,0);}
.mc5_c00378{transform:matrix(0.192265,-0.004807,0.006248,0.249922,0,0);-ms-transform:matrix(0.192265,-0.004807,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192265,-0.004807,0.006248,0.249922,0,0);}
.mc6_c00378{transform:matrix(0.192400,-0.004810,0.006248,0.249922,0,0);-ms-transform:matrix(0.192400,-0.004810,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192400,-0.004810,0.006248,0.249922,0,0);}
.md_c00378{transform:matrix(0.192623,-0.005779,0.007497,0.249888,0,0);-ms-transform:matrix(0.192623,-0.005779,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192623,-0.005779,0.007497,0.249888,0,0);}
.m8d_c00378{transform:matrix(0.193088,-0.005793,0.007497,0.249888,0,0);-ms-transform:matrix(0.193088,-0.005793,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193088,-0.005793,0.007497,0.249888,0,0);}
.m28_c00378{transform:matrix(0.193203,-0.005796,0.007497,0.249888,0,0);-ms-transform:matrix(0.193203,-0.005796,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193203,-0.005796,0.007497,0.249888,0,0);}
.m4f_c00378{transform:matrix(0.193228,-0.005797,0.007497,0.249888,0,0);-ms-transform:matrix(0.193228,-0.005797,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193228,-0.005797,0.007497,0.249888,0,0);}
.m22_c00378{transform:matrix(0.193318,-0.005800,0.007497,0.249888,0,0);-ms-transform:matrix(0.193318,-0.005800,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193318,-0.005800,0.007497,0.249888,0,0);}
.mc0_c00378{transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);-ms-transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);}
.m87_c00378{transform:matrix(0.193453,-0.005804,0.007497,0.249888,0,0);-ms-transform:matrix(0.193453,-0.005804,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193453,-0.005804,0.007497,0.249888,0,0);}
.me6_c00378{transform:matrix(0.193600,-0.004840,0.006248,0.249922,0,0);-ms-transform:matrix(0.193600,-0.004840,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193600,-0.004840,0.006248,0.249922,0,0);}
.mb0_c00378{transform:matrix(0.194069,-0.004852,0.006248,0.249922,0,0);-ms-transform:matrix(0.194069,-0.004852,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194069,-0.004852,0.006248,0.249922,0,0);}
.m99_c00378{transform:matrix(0.196222,-0.005887,0.007497,0.249888,0,0);-ms-transform:matrix(0.196222,-0.005887,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196222,-0.005887,0.007497,0.249888,0,0);}
.m3_c00378{transform:matrix(0.196437,-0.005893,0.007497,0.249888,0,0);-ms-transform:matrix(0.196437,-0.005893,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196437,-0.005893,0.007497,0.249888,0,0);}
.m81_c00378{transform:matrix(0.197296,-0.005919,0.007497,0.249888,0,0);-ms-transform:matrix(0.197296,-0.005919,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197296,-0.005919,0.007497,0.249888,0,0);}
.m27_c00378{transform:matrix(0.197526,-0.005926,0.007497,0.249888,0,0);-ms-transform:matrix(0.197526,-0.005926,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197526,-0.005926,0.007497,0.249888,0,0);}
.m7d_c00378{transform:matrix(0.198066,-0.005942,0.007497,0.249888,0,0);-ms-transform:matrix(0.198066,-0.005942,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198066,-0.005942,0.007497,0.249888,0,0);}
.mc1_c00378{transform:matrix(0.198068,-0.004952,0.006248,0.249922,0,0);-ms-transform:matrix(0.198068,-0.004952,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198068,-0.004952,0.006248,0.249922,0,0);}
.m64_c00378{transform:matrix(0.198236,-0.005947,0.007497,0.249888,0,0);-ms-transform:matrix(0.198236,-0.005947,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198236,-0.005947,0.007497,0.249888,0,0);}
.md9_c00378{transform:matrix(0.199188,-0.004980,0.006248,0.249922,0,0);-ms-transform:matrix(0.199188,-0.004980,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199188,-0.004980,0.006248,0.249922,0,0);}
.mea_c00378{transform:matrix(0.199338,-0.004983,0.006248,0.249922,0,0);-ms-transform:matrix(0.199338,-0.004983,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199338,-0.004983,0.006248,0.249922,0,0);}
.m20_c00378{transform:matrix(0.199720,-0.005992,0.007497,0.249888,0,0);-ms-transform:matrix(0.199720,-0.005992,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199720,-0.005992,0.007497,0.249888,0,0);}
.m8c_c00378{transform:matrix(0.199795,-0.005994,0.007497,0.249888,0,0);-ms-transform:matrix(0.199795,-0.005994,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199795,-0.005994,0.007497,0.249888,0,0);}
.m23_c00378{transform:matrix(0.199835,-0.005995,0.007497,0.249888,0,0);-ms-transform:matrix(0.199835,-0.005995,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199835,-0.005995,0.007497,0.249888,0,0);}
.m91_c00378{transform:matrix(0.199885,-0.005997,0.007497,0.249888,0,0);-ms-transform:matrix(0.199885,-0.005997,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199885,-0.005997,0.007497,0.249888,0,0);}
.mec_c00378{transform:matrix(0.200168,-0.003603,0.004499,0.249960,0,0);-ms-transform:matrix(0.200168,-0.003603,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200168,-0.003603,0.004499,0.249960,0,0);}
.mb6_c00378{transform:matrix(0.200407,-0.005010,0.006248,0.249922,0,0);-ms-transform:matrix(0.200407,-0.005010,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200407,-0.005010,0.006248,0.249922,0,0);}
.m6c_c00378{transform:matrix(0.200880,-0.006026,0.007497,0.249888,0,0);-ms-transform:matrix(0.200880,-0.006026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200880,-0.006026,0.007497,0.249888,0,0);}
.mb_c00378{transform:matrix(0.201404,-0.006042,0.007497,0.249888,0,0);-ms-transform:matrix(0.201404,-0.006042,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201404,-0.006042,0.007497,0.249888,0,0);}
.m3b_c00378{transform:matrix(0.201529,-0.006046,0.007497,0.249888,0,0);-ms-transform:matrix(0.201529,-0.006046,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201529,-0.006046,0.007497,0.249888,0,0);}
.me4_c00378{transform:matrix(0.201857,-0.005046,0.006248,0.249922,0,0);-ms-transform:matrix(0.201857,-0.005046,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201857,-0.005046,0.006248,0.249922,0,0);}
.mab_c00378{transform:matrix(0.201884,-0.006057,0.007497,0.249888,0,0);-ms-transform:matrix(0.201884,-0.006057,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201884,-0.006057,0.007497,0.249888,0,0);}
.me9_c00378{transform:matrix(0.201952,-0.005049,0.006248,0.249922,0,0);-ms-transform:matrix(0.201952,-0.005049,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201952,-0.005049,0.006248,0.249922,0,0);}
.m69_c00378{transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);-ms-transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202529,-0.006076,0.007497,0.249888,0,0);}
.m10_c00378{transform:matrix(0.202599,-0.006078,0.007497,0.249888,0,0);-ms-transform:matrix(0.202599,-0.006078,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202599,-0.006078,0.007497,0.249888,0,0);}
.me_c00378{transform:matrix(0.203159,-0.006095,0.007497,0.249888,0,0);-ms-transform:matrix(0.203159,-0.006095,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203159,-0.006095,0.007497,0.249888,0,0);}
.md2_c00378{transform:matrix(0.203172,-0.005079,0.006248,0.249922,0,0);-ms-transform:matrix(0.203172,-0.005079,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203172,-0.005079,0.006248,0.249922,0,0);}
.mb9_c00378{transform:matrix(0.203306,-0.005083,0.006248,0.249922,0,0);-ms-transform:matrix(0.203306,-0.005083,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203306,-0.005083,0.006248,0.249922,0,0);}
.m42_c00378{transform:matrix(0.203393,-0.006102,0.007497,0.249888,0,0);-ms-transform:matrix(0.203393,-0.006102,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203393,-0.006102,0.007497,0.249888,0,0);}
.m1f_c00378{transform:matrix(0.203493,-0.006105,0.007497,0.249888,0,0);-ms-transform:matrix(0.203493,-0.006105,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203493,-0.006105,0.007497,0.249888,0,0);}
.m6b_c00378{transform:matrix(0.203523,-0.006106,0.007497,0.249888,0,0);-ms-transform:matrix(0.203523,-0.006106,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203523,-0.006106,0.007497,0.249888,0,0);}
.m6e_c00378{transform:matrix(0.203568,-0.006107,0.007497,0.249888,0,0);-ms-transform:matrix(0.203568,-0.006107,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203568,-0.006107,0.007497,0.249888,0,0);}
.med_c00378{transform:matrix(0.203572,-0.003664,0.004499,0.249960,0,0);-ms-transform:matrix(0.203572,-0.003664,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203572,-0.003664,0.004499,0.249960,0,0);}
.mda_c00378{transform:matrix(0.203841,-0.005096,0.006248,0.249922,0,0);-ms-transform:matrix(0.203841,-0.005096,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203841,-0.005096,0.006248,0.249922,0,0);}
.m12_c00378{transform:matrix(0.204218,-0.006127,0.007497,0.249888,0,0);-ms-transform:matrix(0.204218,-0.006127,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204218,-0.006127,0.007497,0.249888,0,0);}
.m5a_c00378{transform:matrix(0.204943,-0.006148,0.007497,0.249888,0,0);-ms-transform:matrix(0.204943,-0.006148,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204943,-0.006148,0.007497,0.249888,0,0);}
.m57_c00378{transform:matrix(0.205468,-0.006164,0.007497,0.249888,0,0);-ms-transform:matrix(0.205468,-0.006164,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205468,-0.006164,0.007497,0.249888,0,0);}
.m59_c00378{transform:matrix(0.205737,-0.006172,0.007497,0.249888,0,0);-ms-transform:matrix(0.205737,-0.006172,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205737,-0.006172,0.007497,0.249888,0,0);}
.m93_c00378{transform:matrix(0.205867,-0.006176,0.007497,0.249888,0,0);-ms-transform:matrix(0.205867,-0.006176,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205867,-0.006176,0.007497,0.249888,0,0);}
.m47_c00378{transform:matrix(0.206112,-0.006183,0.007497,0.249888,0,0);-ms-transform:matrix(0.206112,-0.006183,0.007497,0.249888,0,0);-webkit-transform:matrix(0.206112,-0.006183,0.007497,0.249888,0,0);}
.me1_c00378{transform:matrix(0.206600,-0.005165,0.006248,0.249922,0,0);-ms-transform:matrix(0.206600,-0.005165,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206600,-0.005165,0.006248,0.249922,0,0);}
.m2c_c00378{transform:matrix(0.207052,-0.006212,0.007497,0.249888,0,0);-ms-transform:matrix(0.207052,-0.006212,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207052,-0.006212,0.007497,0.249888,0,0);}
.m13_c00378{transform:matrix(0.207137,-0.006214,0.007497,0.249888,0,0);-ms-transform:matrix(0.207137,-0.006214,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207137,-0.006214,0.007497,0.249888,0,0);}
.m1c_c00378{transform:matrix(0.207502,-0.006225,0.007497,0.249888,0,0);-ms-transform:matrix(0.207502,-0.006225,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207502,-0.006225,0.007497,0.249888,0,0);}
.m15_c00378{transform:matrix(0.207602,-0.006228,0.007497,0.249888,0,0);-ms-transform:matrix(0.207602,-0.006228,0.007497,0.249888,0,0);-webkit-transform:matrix(0.207602,-0.006228,0.007497,0.249888,0,0);}
.mce_c00378{transform:matrix(0.208100,-0.005202,0.006248,0.249922,0,0);-ms-transform:matrix(0.208100,-0.005202,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208100,-0.005202,0.006248,0.249922,0,0);}
.m4a_c00378{transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);-ms-transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);}
.m46_c00378{transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);-ms-transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209906,-0.006297,0.007497,0.249888,0,0);}
.m2b_c00378{transform:matrix(0.209946,-0.006298,0.007497,0.249888,0,0);-ms-transform:matrix(0.209946,-0.006298,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209946,-0.006298,0.007497,0.249888,0,0);}
.m6_c00378{transform:matrix(0.210021,-0.006301,0.007497,0.249888,0,0);-ms-transform:matrix(0.210021,-0.006301,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210021,-0.006301,0.007497,0.249888,0,0);}
.m4b_c00378{transform:matrix(0.210775,-0.006323,0.007497,0.249888,0,0);-ms-transform:matrix(0.210775,-0.006323,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210775,-0.006323,0.007497,0.249888,0,0);}
.m36_c00378{transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-ms-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210970,-0.006329,0.007497,0.249888,0,0);}
.ma4_c00378{transform:matrix(0.211400,-0.006342,0.007497,0.249888,0,0);-ms-transform:matrix(0.211400,-0.006342,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211400,-0.006342,0.007497,0.249888,0,0);}
.m3f_c00378{transform:matrix(0.211705,-0.006351,0.007497,0.249888,0,0);-ms-transform:matrix(0.211705,-0.006351,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211705,-0.006351,0.007497,0.249888,0,0);}
.m2d_c00378{transform:matrix(0.211825,-0.006355,0.007497,0.249888,0,0);-ms-transform:matrix(0.211825,-0.006355,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211825,-0.006355,0.007497,0.249888,0,0);}
.m43_c00378{transform:matrix(0.212185,-0.006366,0.007497,0.249888,0,0);-ms-transform:matrix(0.212185,-0.006366,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212185,-0.006366,0.007497,0.249888,0,0);}
.me7_c00378{transform:matrix(0.212469,-0.005312,0.006248,0.249922,0,0);-ms-transform:matrix(0.212469,-0.005312,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212469,-0.005312,0.006248,0.249922,0,0);}
.m35_c00378{transform:matrix(0.212594,-0.006378,0.007497,0.249888,0,0);-ms-transform:matrix(0.212594,-0.006378,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212594,-0.006378,0.007497,0.249888,0,0);}
.m37_c00378{transform:matrix(0.212799,-0.006384,0.007497,0.249888,0,0);-ms-transform:matrix(0.212799,-0.006384,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212799,-0.006384,0.007497,0.249888,0,0);}
.m6f_c00378{transform:matrix(0.212949,-0.006388,0.007497,0.249888,0,0);-ms-transform:matrix(0.212949,-0.006388,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212949,-0.006388,0.007497,0.249888,0,0);}
.m67_c00378{transform:matrix(0.213254,-0.006398,0.007497,0.249888,0,0);-ms-transform:matrix(0.213254,-0.006398,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213254,-0.006398,0.007497,0.249888,0,0);}
.m21_c00378{transform:matrix(0.213664,-0.006410,0.007497,0.249888,0,0);-ms-transform:matrix(0.213664,-0.006410,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213664,-0.006410,0.007497,0.249888,0,0);}
.m97_c00378{transform:matrix(0.213899,-0.006417,0.007497,0.249888,0,0);-ms-transform:matrix(0.213899,-0.006417,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213899,-0.006417,0.007497,0.249888,0,0);}
.m48_c00378{transform:matrix(0.214733,-0.006442,0.007497,0.249888,0,0);-ms-transform:matrix(0.214733,-0.006442,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214733,-0.006442,0.007497,0.249888,0,0);}
.m51_c00378{transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);-ms-transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215313,-0.006459,0.007497,0.249888,0,0);}
.m9b_c00378{transform:matrix(0.215758,-0.006473,0.007497,0.249888,0,0);-ms-transform:matrix(0.215758,-0.006473,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215758,-0.006473,0.007497,0.249888,0,0);}
.m2a_c00378{transform:matrix(0.215893,-0.006477,0.007497,0.249888,0,0);-ms-transform:matrix(0.215893,-0.006477,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215893,-0.006477,0.007497,0.249888,0,0);}
.m50_c00378{transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);-ms-transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216328,-0.006490,0.007497,0.249888,0,0);}
.m66_c00378{transform:matrix(0.216498,-0.006495,0.007497,0.249888,0,0);-ms-transform:matrix(0.216498,-0.006495,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216498,-0.006495,0.007497,0.249888,0,0);}
.m49_c00378{transform:matrix(0.216633,-0.006499,0.007497,0.249888,0,0);-ms-transform:matrix(0.216633,-0.006499,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216633,-0.006499,0.007497,0.249888,0,0);}
.m8a_c00378{transform:matrix(0.216717,-0.006502,0.007497,0.249888,0,0);-ms-transform:matrix(0.216717,-0.006502,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216717,-0.006502,0.007497,0.249888,0,0);}
.m2e_c00378{transform:matrix(0.216907,-0.006507,0.007497,0.249888,0,0);-ms-transform:matrix(0.216907,-0.006507,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216907,-0.006507,0.007497,0.249888,0,0);}
.md3_c00378{transform:matrix(0.217187,-0.005430,0.006248,0.249922,0,0);-ms-transform:matrix(0.217187,-0.005430,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217187,-0.005430,0.006248,0.249922,0,0);}
.m79_c00378{transform:matrix(0.217377,-0.006521,0.007497,0.249888,0,0);-ms-transform:matrix(0.217377,-0.006521,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217377,-0.006521,0.007497,0.249888,0,0);}
.m1b_c00378{transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);-ms-transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);}
.m32_c00378{transform:matrix(0.217812,-0.006534,0.007497,0.249888,0,0);-ms-transform:matrix(0.217812,-0.006534,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217812,-0.006534,0.007497,0.249888,0,0);}
.m80_c00378{transform:matrix(0.219336,-0.006580,0.007497,0.249888,0,0);-ms-transform:matrix(0.219336,-0.006580,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219336,-0.006580,0.007497,0.249888,0,0);}
.mde_c00378{transform:matrix(0.219471,-0.005487,0.006248,0.249922,0,0);-ms-transform:matrix(0.219471,-0.005487,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219471,-0.005487,0.006248,0.249922,0,0);}
.mb1_c00378{transform:matrix(0.219951,-0.005499,0.006248,0.249922,0,0);-ms-transform:matrix(0.219951,-0.005499,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219951,-0.005499,0.006248,0.249922,0,0);}
.m4c_c00378{transform:matrix(0.220036,-0.006601,0.007497,0.249888,0,0);-ms-transform:matrix(0.220036,-0.006601,0.007497,0.249888,0,0);-webkit-transform:matrix(0.220036,-0.006601,0.007497,0.249888,0,0);}
.mc9_c00378{transform:matrix(0.220071,-0.005502,0.006248,0.249922,0,0);-ms-transform:matrix(0.220071,-0.005502,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220071,-0.005502,0.006248,0.249922,0,0);}
.mcc_c00378{transform:matrix(0.220186,-0.005505,0.006248,0.249922,0,0);-ms-transform:matrix(0.220186,-0.005505,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220186,-0.005505,0.006248,0.249922,0,0);}
.m30_c00378{transform:matrix(0.221161,-0.006635,0.007497,0.249888,0,0);-ms-transform:matrix(0.221161,-0.006635,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221161,-0.006635,0.007497,0.249888,0,0);}
.maf_c00378{transform:matrix(0.222316,-0.005558,0.006248,0.249922,0,0);-ms-transform:matrix(0.222316,-0.005558,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222316,-0.005558,0.006248,0.249922,0,0);}
.me2_c00378{transform:matrix(0.222665,-0.005567,0.006248,0.249922,0,0);-ms-transform:matrix(0.222665,-0.005567,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222665,-0.005567,0.006248,0.249922,0,0);}
.m44_c00378{transform:matrix(0.223105,-0.006693,0.007497,0.249888,0,0);-ms-transform:matrix(0.223105,-0.006693,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223105,-0.006693,0.007497,0.249888,0,0);}
.m8_c00378{transform:matrix(0.223135,-0.006694,0.007497,0.249888,0,0);-ms-transform:matrix(0.223135,-0.006694,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223135,-0.006694,0.007497,0.249888,0,0);}
.m55_c00378{transform:matrix(0.223170,-0.006695,0.007497,0.249888,0,0);-ms-transform:matrix(0.223170,-0.006695,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223170,-0.006695,0.007497,0.249888,0,0);}
.md6_c00378{transform:matrix(0.223225,-0.005581,0.006248,0.249922,0,0);-ms-transform:matrix(0.223225,-0.005581,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223225,-0.005581,0.006248,0.249922,0,0);}
.mb4_c00378{transform:matrix(0.223510,-0.005588,0.006248,0.249922,0,0);-ms-transform:matrix(0.223510,-0.005588,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223510,-0.005588,0.006248,0.249922,0,0);}
.m73_c00378{transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);-ms-transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223559,-0.006707,0.007497,0.249888,0,0);}
.m53_c00378{transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);-ms-transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223879,-0.006716,0.007497,0.249888,0,0);}
.md5_c00378{transform:matrix(0.225050,-0.005626,0.006248,0.249922,0,0);-ms-transform:matrix(0.225050,-0.005626,0.006248,0.249922,0,0);-webkit-transform:matrix(0.225050,-0.005626,0.006248,0.249922,0,0);}
.m5_c00378{transform:matrix(0.225074,-0.006752,0.007497,0.249888,0,0);-ms-transform:matrix(0.225074,-0.006752,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225074,-0.006752,0.007497,0.249888,0,0);}
.m1a_c00378{transform:matrix(0.225234,-0.006757,0.007497,0.249888,0,0);-ms-transform:matrix(0.225234,-0.006757,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225234,-0.006757,0.007497,0.249888,0,0);}
.m68_c00378{transform:matrix(0.225489,-0.006765,0.007497,0.249888,0,0);-ms-transform:matrix(0.225489,-0.006765,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225489,-0.006765,0.007497,0.249888,0,0);}
.m4e_c00378{transform:matrix(0.225843,-0.006775,0.007497,0.249888,0,0);-ms-transform:matrix(0.225843,-0.006775,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225843,-0.006775,0.007497,0.249888,0,0);}
.m31_c00378{transform:matrix(0.225928,-0.006778,0.007497,0.249888,0,0);-ms-transform:matrix(0.225928,-0.006778,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225928,-0.006778,0.007497,0.249888,0,0);}
.mc3_c00378{transform:matrix(0.226129,-0.005653,0.006248,0.249922,0,0);-ms-transform:matrix(0.226129,-0.005653,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226129,-0.005653,0.006248,0.249922,0,0);}
.mbc_c00378{transform:matrix(0.226169,-0.005654,0.006248,0.249922,0,0);-ms-transform:matrix(0.226169,-0.005654,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226169,-0.005654,0.006248,0.249922,0,0);}
.mb5_c00378{transform:matrix(0.227444,-0.005686,0.006248,0.249922,0,0);-ms-transform:matrix(0.227444,-0.005686,0.006248,0.249922,0,0);-webkit-transform:matrix(0.227444,-0.005686,0.006248,0.249922,0,0);}
.m18_c00378{transform:matrix(0.227862,-0.006836,0.007497,0.249888,0,0);-ms-transform:matrix(0.227862,-0.006836,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227862,-0.006836,0.007497,0.249888,0,0);}
.m70_c00378{transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);-ms-transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227932,-0.006838,0.007497,0.249888,0,0);}
.m74_c00378{transform:matrix(0.228077,-0.006842,0.007497,0.249888,0,0);-ms-transform:matrix(0.228077,-0.006842,0.007497,0.249888,0,0);-webkit-transform:matrix(0.228077,-0.006842,0.007497,0.249888,0,0);}
.mdb_c00378{transform:matrix(0.229818,-0.005745,0.006248,0.249922,0,0);-ms-transform:matrix(0.229818,-0.005745,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229818,-0.005745,0.006248,0.249922,0,0);}
.mc_c00378{transform:matrix(0.230191,-0.006906,0.007497,0.249888,0,0);-ms-transform:matrix(0.230191,-0.006906,0.007497,0.249888,0,0);-webkit-transform:matrix(0.230191,-0.006906,0.007497,0.249888,0,0);}
.mdc_c00378{transform:matrix(0.230388,-0.005760,0.006248,0.249922,0,0);-ms-transform:matrix(0.230388,-0.005760,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230388,-0.005760,0.006248,0.249922,0,0);}
.m84_c00378{transform:matrix(0.231016,-0.006930,0.007497,0.249888,0,0);-ms-transform:matrix(0.231016,-0.006930,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231016,-0.006930,0.007497,0.249888,0,0);}
.m62_c00378{transform:matrix(0.231251,-0.006938,0.007497,0.249888,0,0);-ms-transform:matrix(0.231251,-0.006938,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231251,-0.006938,0.007497,0.249888,0,0);}
.m98_c00378{transform:matrix(0.231286,-0.006939,0.007497,0.249888,0,0);-ms-transform:matrix(0.231286,-0.006939,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231286,-0.006939,0.007497,0.249888,0,0);}
.m56_c00378{transform:matrix(0.231496,-0.006945,0.007497,0.249888,0,0);-ms-transform:matrix(0.231496,-0.006945,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231496,-0.006945,0.007497,0.249888,0,0);}
.mdd_c00378{transform:matrix(0.233557,-0.005839,0.006248,0.249922,0,0);-ms-transform:matrix(0.233557,-0.005839,0.006248,0.249922,0,0);-webkit-transform:matrix(0.233557,-0.005839,0.006248,0.249922,0,0);}
.m90_c00378{transform:matrix(0.233680,-0.007010,0.007497,0.249888,0,0);-ms-transform:matrix(0.233680,-0.007010,0.007497,0.249888,0,0);-webkit-transform:matrix(0.233680,-0.007010,0.007497,0.249888,0,0);}
.m54_c00378{transform:matrix(0.233685,-0.007011,0.007497,0.249888,0,0);-ms-transform:matrix(0.233685,-0.007011,0.007497,0.249888,0,0);-webkit-transform:matrix(0.233685,-0.007011,0.007497,0.249888,0,0);}
.md7_c00378{transform:matrix(0.234857,-0.005871,0.006248,0.249922,0,0);-ms-transform:matrix(0.234857,-0.005871,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234857,-0.005871,0.006248,0.249922,0,0);}
.m65_c00378{transform:matrix(0.236634,-0.007099,0.007497,0.249888,0,0);-ms-transform:matrix(0.236634,-0.007099,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236634,-0.007099,0.007497,0.249888,0,0);}
.m60_c00378{transform:matrix(0.236893,-0.007107,0.007497,0.249888,0,0);-ms-transform:matrix(0.236893,-0.007107,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236893,-0.007107,0.007497,0.249888,0,0);}
.m8e_c00378{transform:matrix(0.237093,-0.007113,0.007497,0.249888,0,0);-ms-transform:matrix(0.237093,-0.007113,0.007497,0.249888,0,0);-webkit-transform:matrix(0.237093,-0.007113,0.007497,0.249888,0,0);}
.md4_c00378{transform:matrix(0.243794,-0.006095,0.006248,0.249922,0,0);-ms-transform:matrix(0.243794,-0.006095,0.006248,0.249922,0,0);-webkit-transform:matrix(0.243794,-0.006095,0.006248,0.249922,0,0);}
.m61_c00378{transform:matrix(0.245580,-0.007367,0.007497,0.249888,0,0);-ms-transform:matrix(0.245580,-0.007367,0.007497,0.249888,0,0);-webkit-transform:matrix(0.245580,-0.007367,0.007497,0.249888,0,0);}
.mb8_c00378{transform:matrix(0.246273,-0.006157,0.006248,0.249922,0,0);-ms-transform:matrix(0.246273,-0.006157,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246273,-0.006157,0.006248,0.249922,0,0);}
.mbf_c00378{transform:matrix(0.246668,-0.006167,0.006248,0.249922,0,0);-ms-transform:matrix(0.246668,-0.006167,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246668,-0.006167,0.006248,0.249922,0,0);}
.m52_c00378{transform:matrix(0.251607,-0.007548,0.007497,0.249888,0,0);-ms-transform:matrix(0.251607,-0.007548,0.007497,0.249888,0,0);-webkit-transform:matrix(0.251607,-0.007548,0.007497,0.249888,0,0);}
.mbd_c00378{transform:matrix(0.251736,-0.006293,0.006248,0.249922,0,0);-ms-transform:matrix(0.251736,-0.006293,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251736,-0.006293,0.006248,0.249922,0,0);}
.m38_c00378{transform:matrix(0.255800,-0.007674,0.007497,0.249888,0,0);-ms-transform:matrix(0.255800,-0.007674,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255800,-0.007674,0.007497,0.249888,0,0);}
.m14_c00378{transform:matrix(0.256370,-0.007691,0.007497,0.249888,0,0);-ms-transform:matrix(0.256370,-0.007691,0.007497,0.249888,0,0);-webkit-transform:matrix(0.256370,-0.007691,0.007497,0.249888,0,0);}
.m8f_c00378{transform:matrix(0.262177,-0.007865,0.007497,0.249888,0,0);-ms-transform:matrix(0.262177,-0.007865,0.007497,0.249888,0,0);-webkit-transform:matrix(0.262177,-0.007865,0.007497,0.249888,0,0);}
.mbe_c00378{transform:matrix(0.262398,-0.006560,0.006248,0.249922,0,0);-ms-transform:matrix(0.262398,-0.006560,0.006248,0.249922,0,0);-webkit-transform:matrix(0.262398,-0.006560,0.006248,0.249922,0,0);}
.m5c_c00378{transform:matrix(0.268814,-0.008064,0.007497,0.249888,0,0);-ms-transform:matrix(0.268814,-0.008064,0.007497,0.249888,0,0);-webkit-transform:matrix(0.268814,-0.008064,0.007497,0.249888,0,0);}
.m1_c00378{transform:matrix(0.268819,-0.008065,0.007497,0.249888,0,0);-ms-transform:matrix(0.268819,-0.008065,0.007497,0.249888,0,0);-webkit-transform:matrix(0.268819,-0.008065,0.007497,0.249888,0,0);}
.md1_c00378{transform:matrix(0.273625,-0.006841,0.006248,0.249922,0,0);-ms-transform:matrix(0.273625,-0.006841,0.006248,0.249922,0,0);-webkit-transform:matrix(0.273625,-0.006841,0.006248,0.249922,0,0);}
.ma5_c00378{transform:matrix(0.281808,-0.008454,0.007497,0.249888,0,0);-ms-transform:matrix(0.281808,-0.008454,0.007497,0.249888,0,0);-webkit-transform:matrix(0.281808,-0.008454,0.007497,0.249888,0,0);}
.mbb_c00378{transform:matrix(0.282422,-0.007061,0.006248,0.249922,0,0);-ms-transform:matrix(0.282422,-0.007061,0.006248,0.249922,0,0);-webkit-transform:matrix(0.282422,-0.007061,0.006248,0.249922,0,0);}
.m16_c00378{transform:matrix(0.284632,-0.008539,0.007497,0.249888,0,0);-ms-transform:matrix(0.284632,-0.008539,0.007497,0.249888,0,0);-webkit-transform:matrix(0.284632,-0.008539,0.007497,0.249888,0,0);}
.m83_c00378{transform:matrix(0.285587,-0.008568,0.007497,0.249888,0,0);-ms-transform:matrix(0.285587,-0.008568,0.007497,0.249888,0,0);-webkit-transform:matrix(0.285587,-0.008568,0.007497,0.249888,0,0);}
.m78_c00378{transform:matrix(0.288110,-0.008643,0.007497,0.249888,0,0);-ms-transform:matrix(0.288110,-0.008643,0.007497,0.249888,0,0);-webkit-transform:matrix(0.288110,-0.008643,0.007497,0.249888,0,0);}
.m5f_c00378{transform:matrix(0.293943,-0.008818,0.007497,0.249888,0,0);-ms-transform:matrix(0.293943,-0.008818,0.007497,0.249888,0,0);-webkit-transform:matrix(0.293943,-0.008818,0.007497,0.249888,0,0);}
.m63_c00378{transform:matrix(0.297976,-0.008939,0.007497,0.249888,0,0);-ms-transform:matrix(0.297976,-0.008939,0.007497,0.249888,0,0);-webkit-transform:matrix(0.297976,-0.008939,0.007497,0.249888,0,0);}
.md0_c00378{transform:matrix(0.314407,-0.007860,0.006248,0.249922,0,0);-ms-transform:matrix(0.314407,-0.007860,0.006248,0.249922,0,0);-webkit-transform:matrix(0.314407,-0.007860,0.006248,0.249922,0,0);}
.m82_c00378{transform:matrix(0.316847,-0.009505,0.007497,0.249888,0,0);-ms-transform:matrix(0.316847,-0.009505,0.007497,0.249888,0,0);-webkit-transform:matrix(0.316847,-0.009505,0.007497,0.249888,0,0);}
.m77_c00378{transform:matrix(0.356105,-0.010683,0.007497,0.249888,0,0);-ms-transform:matrix(0.356105,-0.010683,0.007497,0.249888,0,0);-webkit-transform:matrix(0.356105,-0.010683,0.007497,0.249888,0,0);}
.m5e_c00378{transform:matrix(0.356210,-0.010686,0.007497,0.249888,0,0);-ms-transform:matrix(0.356210,-0.010686,0.007497,0.249888,0,0);-webkit-transform:matrix(0.356210,-0.010686,0.007497,0.249888,0,0);}
.m76_c00378{transform:matrix(0.370518,-0.011116,0.007497,0.249888,0,0);-ms-transform:matrix(0.370518,-0.011116,0.007497,0.249888,0,0);-webkit-transform:matrix(0.370518,-0.011116,0.007497,0.249888,0,0);}
.m5d_c00378{transform:matrix(0.372063,-0.011162,0.007497,0.249888,0,0);-ms-transform:matrix(0.372063,-0.011162,0.007497,0.249888,0,0);-webkit-transform:matrix(0.372063,-0.011162,0.007497,0.249888,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:0.000000px;}
.fc0_c00378{color:transparent;}
.fs10_c00378{font-size:52.516404px;}
.fs4_c00378{font-size:54.624564px;}
.fs12_c00378{font-size:57.768044px;}
.fsf_c00378{font-size:58.818372px;}
.fs7_c00378{font-size:58.826454px;}
.fs1_c00378{font-size:59.876926px;}
.fse_c00378{font-size:60.919028px;}
.fsa_c00378{font-size:60.927399px;}
.fs11_c00378{font-size:61.969356px;}
.fs2_c00378{font-size:61.977871px;}
.fs9_c00378{font-size:63.028344px;}
.fs5_c00378{font-size:64.078816px;}
.fsd_c00378{font-size:65.129288px;}
.fs6_c00378{font-size:66.179761px;}
.fs8_c00378{font-size:67.230233px;}
.fsb_c00378{font-size:68.280706px;}
.fs13_c00378{font-size:69.311226px;}
.fsc_c00378{font-size:70.381650px;}
.fs3_c00378{font-size:71.432123px;}
.fs0_c00378{font-size:76.650000px;}
.y0_c00378{bottom:0.000000px;}
.yeb_c00378{bottom:31.324500px;}
.yec_c00378{bottom:31.912722px;}
.yed_c00378{bottom:32.685327px;}
.yee_c00378{bottom:33.890067px;}
.yef_c00378{bottom:34.124697px;}
.yf0_c00378{bottom:35.057412px;}
.yf1_c00378{bottom:35.607375px;}
.yf2_c00378{bottom:35.893980px;}
.ye6_c00378{bottom:52.766363px;}
.ye4_c00378{bottom:52.766513px;}
.ye7_c00378{bottom:52.766850px;}
.yea_c00378{bottom:52.766925px;}
.ye5_c00378{bottom:52.767000px;}
.ye9_c00378{bottom:52.767113px;}
.ye8_c00378{bottom:52.767525px;}
.ydb_c00378{bottom:63.159900px;}
.ydc_c00378{bottom:64.474125px;}
.ydd_c00378{bottom:65.035125px;}
.yde_c00378{bottom:66.348113px;}
.ydf_c00378{bottom:67.477650px;}
.ye0_c00378{bottom:67.766213px;}
.ye1_c00378{bottom:68.360850px;}
.ye2_c00378{bottom:69.094463px;}
.ye3_c00378{bottom:70.183238px;}
.yd3_c00378{bottom:84.218700px;}
.yd4_c00378{bottom:84.712950px;}
.yd5_c00378{bottom:85.441950px;}
.yd6_c00378{bottom:86.255775px;}
.yd7_c00378{bottom:87.114338px;}
.yd8_c00378{bottom:87.572775px;}
.yd9_c00378{bottom:87.776250px;}
.yda_c00378{bottom:88.254225px;}
.yca_c00378{bottom:98.538375px;}
.ycb_c00378{bottom:99.175725px;}
.ycc_c00378{bottom:100.009163px;}
.ycd_c00378{bottom:100.461113px;}
.yce_c00378{bottom:101.475750px;}
.ycf_c00378{bottom:102.372525px;}
.yd0_c00378{bottom:103.010850px;}
.yd1_c00378{bottom:103.452150px;}
.yd2_c00378{bottom:104.806875px;}
.yc1_c00378{bottom:117.979163px;}
.yc2_c00378{bottom:118.708500px;}
.yc3_c00378{bottom:119.628938px;}
.yc4_c00378{bottom:119.948663px;}
.yc5_c00378{bottom:120.763463px;}
.yc6_c00378{bottom:121.244625px;}
.yc7_c00378{bottom:121.552163px;}
.yc8_c00378{bottom:121.959000px;}
.yc9_c00378{bottom:122.240625px;}
.ybb_c00378{bottom:132.829612px;}
.ybc_c00378{bottom:133.151700px;}
.ybd_c00378{bottom:134.378737px;}
.ybe_c00378{bottom:134.955000px;}
.ybf_c00378{bottom:136.532775px;}
.yc0_c00378{bottom:137.080238px;}
.yb6_c00378{bottom:149.846775px;}
.yb7_c00378{bottom:150.569100px;}
.yb8_c00378{bottom:151.098637px;}
.yb9_c00378{bottom:151.314375px;}
.yba_c00378{bottom:152.362125px;}
.yaf_c00378{bottom:166.596000px;}
.yb0_c00378{bottom:166.979625px;}
.yb1_c00378{bottom:167.974762px;}
.yb2_c00378{bottom:169.277438px;}
.yb3_c00378{bottom:170.499638px;}
.yb4_c00378{bottom:171.026325px;}
.yb5_c00378{bottom:171.500550px;}
.ya5_c00378{bottom:183.710520px;}
.ya6_c00378{bottom:185.065200px;}
.ya7_c00378{bottom:185.349615px;}
.ya8_c00378{bottom:186.050805px;}
.ya9_c00378{bottom:186.861075px;}
.yaa_c00378{bottom:187.228035px;}
.yab_c00378{bottom:187.695810px;}
.yac_c00378{bottom:188.384745px;}
.yad_c00378{bottom:189.711090px;}
.yae_c00378{bottom:190.193595px;}
.y9d_c00378{bottom:199.648470px;}
.y9e_c00378{bottom:200.205165px;}
.y9f_c00378{bottom:200.623020px;}
.ya0_c00378{bottom:201.319320px;}
.ya1_c00378{bottom:202.980045px;}
.ya2_c00378{bottom:204.146775px;}
.ya3_c00378{bottom:204.561495px;}
.ya4_c00378{bottom:205.774680px;}
.y95_c00378{bottom:217.474320px;}
.y96_c00378{bottom:217.926795px;}
.y97_c00378{bottom:218.852655px;}
.y98_c00378{bottom:219.369750px;}
.y99_c00378{bottom:220.651575px;}
.y9a_c00378{bottom:221.559255px;}
.y9b_c00378{bottom:222.410115px;}
.y9c_c00378{bottom:222.986880px;}
.y8e_c00378{bottom:235.032825px;}
.y8f_c00378{bottom:235.346475px;}
.y90_c00378{bottom:235.789305px;}
.y91_c00378{bottom:237.279495px;}
.y92_c00378{bottom:237.846945px;}
.y93_c00378{bottom:238.845900px;}
.y94_c00378{bottom:239.651610px;}
.y85_c00378{bottom:252.591660px;}
.y86_c00378{bottom:253.738920px;}
.y87_c00378{bottom:254.069610px;}
.y88_c00378{bottom:254.342220px;}
.y89_c00378{bottom:255.295485px;}
.y8a_c00378{bottom:255.662010px;}
.y8b_c00378{bottom:256.342560px;}
.y8c_c00378{bottom:257.292015px;}
.y8d_c00378{bottom:257.755125px;}
.y7c_c00378{bottom:269.070165px;}
.y7d_c00378{bottom:269.801295px;}
.y7e_c00378{bottom:270.244455px;}
.y7f_c00378{bottom:271.128210px;}
.y80_c00378{bottom:271.617165px;}
.y81_c00378{bottom:272.315580px;}
.y82_c00378{bottom:273.402990px;}
.y83_c00378{bottom:273.909765px;}
.y84_c00378{bottom:275.015535px;}
.y74_c00378{bottom:286.893690px;}
.y75_c00378{bottom:287.874450px;}
.y76_c00378{bottom:288.154815px;}
.y77_c00378{bottom:288.767565px;}
.y78_c00378{bottom:289.596525px;}
.y79_c00378{bottom:289.858035px;}
.y7a_c00378{bottom:290.290485px;}
.y7b_c00378{bottom:292.359195px;}
.y6c_c00378{bottom:303.915015px;}
.y6d_c00378{bottom:305.345955px;}
.y6e_c00378{bottom:306.119520px;}
.y6f_c00378{bottom:307.182375px;}
.y70_c00378{bottom:307.610475px;}
.y71_c00378{bottom:308.760990px;}
.y72_c00378{bottom:309.422340px;}
.y73_c00378{bottom:310.103235px;}
.y65_c00378{bottom:320.931375px;}
.y66_c00378{bottom:322.303935px;}
.y67_c00378{bottom:323.454285px;}
.y68_c00378{bottom:323.761080px;}
.y69_c00378{bottom:325.367145px;}
.y6a_c00378{bottom:326.273445px;}
.y6b_c00378{bottom:326.779905px;}
.y5d_c00378{bottom:336.600240px;}
.y5e_c00378{bottom:338.146725px;}
.y5f_c00378{bottom:338.398380px;}
.y60_c00378{bottom:339.768195px;}
.y61_c00378{bottom:340.239975px;}
.y62_c00378{bottom:342.093915px;}
.y63_c00378{bottom:343.519890px;}
.y64_c00378{bottom:343.982940px;}
.y58_c00378{bottom:353.880345px;}
.y59_c00378{bottom:355.200270px;}
.y5a_c00378{bottom:355.874925px;}
.y5b_c00378{bottom:356.170950px;}
.y5c_c00378{bottom:357.140775px;}
.y52_c00378{bottom:369.013785px;}
.y53_c00378{bottom:371.059770px;}
.y54_c00378{bottom:373.432485px;}
.y55_c00378{bottom:373.919850px;}
.y56_c00378{bottom:375.909735px;}
.y57_c00378{bottom:377.201595px;}
.y4a_c00378{bottom:386.028000px;}
.y4b_c00378{bottom:387.427185px;}
.y4c_c00378{bottom:388.083150px;}
.y4d_c00378{bottom:389.153310px;}
.y4e_c00378{bottom:389.979840px;}
.y4f_c00378{bottom:390.520245px;}
.y50_c00378{bottom:391.236885px;}
.y51_c00378{bottom:392.601165px;}
.y43_c00378{bottom:402.775920px;}
.y44_c00378{bottom:403.527360px;}
.y45_c00378{bottom:405.134745px;}
.y46_c00378{bottom:406.653840px;}
.y47_c00378{bottom:407.139945px;}
.y48_c00378{bottom:408.480195px;}
.y49_c00378{bottom:409.297875px;}
.y3b_c00378{bottom:420.063810px;}
.y3c_c00378{bottom:421.038345px;}
.y3d_c00378{bottom:421.275720px;}
.y3e_c00378{bottom:422.617365px;}
.y3f_c00378{bottom:422.946030px;}
.y40_c00378{bottom:424.094805px;}
.y41_c00378{bottom:425.399490px;}
.y42_c00378{bottom:425.806005px;}
.y33_c00378{bottom:437.349285px;}
.y34_c00378{bottom:437.970555px;}
.y35_c00378{bottom:439.144110px;}
.y36_c00378{bottom:439.541370px;}
.y37_c00378{bottom:440.901825px;}
.y38_c00378{bottom:441.341085px;}
.y39_c00378{bottom:442.320960px;}
.y3a_c00378{bottom:442.620180px;}
.y2c_c00378{bottom:454.097925px;}
.y2d_c00378{bottom:454.752555px;}
.y2e_c00378{bottom:456.133995px;}
.y2f_c00378{bottom:456.724230px;}
.y30_c00378{bottom:457.573110px;}
.y31_c00378{bottom:458.820075px;}
.y32_c00378{bottom:459.452175px;}
.y25_c00378{bottom:471.387600px;}
.y26_c00378{bottom:472.361055px;}
.y27_c00378{bottom:473.075880px;}
.y28_c00378{bottom:473.515995px;}
.y29_c00378{bottom:474.641925px;}
.y2a_c00378{bottom:475.282995px;}
.y2b_c00378{bottom:476.385585px;}
.y1d_c00378{bottom:488.137695px;}
.y1e_c00378{bottom:488.855205px;}
.y1f_c00378{bottom:489.299385px;}
.y20_c00378{bottom:489.638400px;}
.y21_c00378{bottom:490.694835px;}
.y22_c00378{bottom:491.188530px;}
.y23_c00378{bottom:492.617865px;}
.y24_c00378{bottom:493.229940px;}
.y15_c00378{bottom:503.812905px;}
.y16_c00378{bottom:504.353895px;}
.y17_c00378{bottom:506.441040px;}
.y18_c00378{bottom:507.714360px;}
.y19_c00378{bottom:508.592175px;}
.y1a_c00378{bottom:510.295425px;}
.y1b_c00378{bottom:510.576270px;}
.y1c_c00378{bottom:511.845450px;}
.yf_c00378{bottom:521.096070px;}
.y10_c00378{bottom:523.863690px;}
.y11_c00378{bottom:524.568240px;}
.y12_c00378{bottom:526.652535px;}
.y13_c00378{bottom:526.990110px;}
.y14_c00378{bottom:528.623235px;}
.y8_c00378{bottom:539.190300px;}
.y9_c00378{bottom:540.035010px;}
.ya_c00378{bottom:541.310415px;}
.yb_c00378{bottom:542.834895px;}
.yc_c00378{bottom:543.263790px;}
.yd_c00378{bottom:544.881420px;}
.ye_c00378{bottom:545.162790px;}
.y2_c00378{bottom:555.132000px;}
.y3_c00378{bottom:556.250520px;}
.y4_c00378{bottom:558.090840px;}
.y5_c00378{bottom:559.949610px;}
.y6_c00378{bottom:560.675775px;}
.y7_c00378{bottom:562.818630px;}
.y1_c00378{bottom:573.075000px;}
.h12_c00378{height:52.516404px;}
.h6_c00378{height:54.624564px;}
.h14_c00378{height:57.768044px;}
.h11_c00378{height:58.818372px;}
.h9_c00378{height:58.826454px;}
.h3_c00378{height:59.876926px;}
.h10_c00378{height:60.919028px;}
.hc_c00378{height:60.927399px;}
.h13_c00378{height:61.969356px;}
.h4_c00378{height:61.977871px;}
.hb_c00378{height:63.028344px;}
.h7_c00378{height:64.078816px;}
.hf_c00378{height:65.129288px;}
.h8_c00378{height:66.179761px;}
.ha_c00378{height:67.230233px;}
.hd_c00378{height:68.280706px;}
.h15_c00378{height:69.311226px;}
.he_c00378{height:70.381650px;}
.h5_c00378{height:71.432123px;}
.h2_c00378{height:76.650000px;}
.h0_c00378{height:613.170000px;}
.h1_c00378{height:613.500000px;}
.w0_c00378{width:359.100000px;}
.w1_c00378{width:359.250000px;}
.x0_c00378{left:0.000000px;}
.x8_c00378{left:19.683645px;}
.x14_c00378{left:20.698425px;}
.x29_c00378{left:22.037745px;}
.x35_c00378{left:23.467785px;}
.x42_c00378{left:24.608310px;}
.x4d_c00378{left:25.814250px;}
.x59_c00378{left:27.542940px;}
.x62_c00378{left:29.118930px;}
.x6b_c00378{left:30.522195px;}
.x72_c00378{left:32.572575px;}
.x79_c00378{left:33.812475px;}
.x2_c00378{left:36.561000px;}
.x15_c00378{left:38.731425px;}
.x77_c00378{left:41.763300px;}
.x5e_c00378{left:43.985115px;}
.x63_c00378{left:50.657235px;}
.x9_c00378{left:53.495730px;}
.x1c_c00378{left:54.687315px;}
.x54_c00378{left:61.562205px;}
.x2f_c00378{left:64.516830px;}
.x5f_c00378{left:66.152775px;}
.x22_c00378{left:67.388115px;}
.x7a_c00378{left:68.858025px;}
.x66_c00378{left:70.401135px;}
.x4e_c00378{left:72.518850px;}
.x3_c00378{left:73.845000px;}
.x1d_c00378{left:75.849030px;}
.x73_c00378{left:78.196350px;}
.x36_c00378{left:79.415655px;}
.x55_c00378{left:82.639875px;}
.x43_c00378{left:84.064920px;}
.x4f_c00378{left:85.867950px;}
.x5a_c00378{left:87.904830px;}
.x47_c00378{left:90.452520px;}
.x1e_c00378{left:92.003895px;}
.x3b_c00378{left:94.339155px;}
.x67_c00378{left:99.416355px;}
.x23_c00378{left:101.424795px;}
.xa_c00378{left:104.516880px;}
.x37_c00378{left:105.635070px;}
.x16_c00378{left:108.302925px;}
.x7e_c00378{left:111.735000px;}
.x50_c00378{left:115.050825px;}
.x2a_c00378{left:116.546430px;}
.x5b_c00378{left:119.625270px;}
.xf_c00378{left:122.298300px;}
.x26_c00378{left:123.322785px;}
.x56_c00378{left:124.709715px;}
.x3f_c00378{left:125.742750px;}
.x6c_c00378{left:127.999200px;}
.x7b_c00378{left:132.058013px;}
.x30_c00378{left:133.165230px;}
.x4_c00378{left:135.189000px;}
.x2b_c00378{left:137.445315px;}
.x60_c00378{left:140.698140px;}
.x1f_c00378{left:142.331985px;}
.x48_c00378{left:145.262325px;}
.x44_c00378{left:146.421390px;}
.x10_c00378{left:148.385640px;}
.x1_c00378{left:149.580000px;}
.x17_c00378{left:150.746925px;}
.x27_c00378{left:152.856150px;}
.x51_c00378{left:154.493445px;}
.x74_c00378{left:155.720287px;}
.x49_c00378{left:159.892785px;}
.x6d_c00378{left:161.764275px;}
.xb_c00378{left:165.492015px;}
.x52_c00378{left:166.913775px;}
.x68_c00378{left:168.586275px;}
.x5c_c00378{left:169.767285px;}
.x4c_c00378{left:173.678595px;}
.x24_c00378{left:175.996410px;}
.x33_c00378{left:178.016535px;}
.x18_c00378{left:180.007425px;}
.x38_c00378{left:181.519455px;}
.xc_c00378{left:182.641080px;}
.x53_c00378{left:187.484310px;}
.x5d_c00378{left:189.041130px;}
.x7f_c00378{left:191.700000px;}
.x3c_c00378{left:192.928080px;}
.x28_c00378{left:195.264840px;}
.x5_c00378{left:197.148000px;}
.x40_c00378{left:200.336730px;}
.x39_c00378{left:203.136195px;}
.x25_c00378{left:206.523645px;}
.x2c_c00378{left:209.017395px;}
.x71_c00378{left:210.563213px;}
.x69_c00378{left:217.186005px;}
.x61_c00378{left:219.035130px;}
.x6_c00378{left:221.353500px;}
.x64_c00378{left:223.635900px;}
.x11_c00378{left:225.569070px;}
.x2d_c00378{left:232.167045px;}
.x20_c00378{left:233.907690px;}
.x70_c00378{left:235.297500px;}
.x19_c00378{left:236.782425px;}
.x12_c00378{left:238.072695px;}
.x80_c00378{left:243.517500px;}
.x1a_c00378{left:246.143925px;}
.xd_c00378{left:247.321755px;}
.x7c_c00378{left:248.734875px;}
.x34_c00378{left:251.106015px;}
.x31_c00378{left:254.128110px;}
.x75_c00378{left:255.942825px;}
.x57_c00378{left:257.163945px;}
.xe_c00378{left:258.552420px;}
.x3d_c00378{left:261.559650px;}
.x21_c00378{left:263.068065px;}
.x65_c00378{left:264.158835px;}
.x78_c00378{left:265.322137px;}
.x32_c00378{left:271.782300px;}
.x7d_c00378{left:273.042562px;}
.x41_c00378{left:274.902210px;}
.x4a_c00378{left:279.470505px;}
.x6e_c00378{left:280.536150px;}
.x2e_c00378{left:283.746555px;}
.x6a_c00378{left:285.011700px;}
.x3a_c00378{left:286.362660px;}
.x1b_c00378{left:288.449925px;}
.x45_c00378{left:290.695170px;}
.x7_c00378{left:292.782000px;}
.x13_c00378{left:298.565640px;}
.x6f_c00378{left:300.623250px;}
.x4b_c00378{left:303.609030px;}
.x3e_c00378{left:306.123000px;}
.x46_c00378{left:308.532330px;}
.x58_c00378{left:309.837165px;}
.x76_c00378{left:317.388075px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs10_c00378{font-size:46.681248pt;}
.fs4_c00378{font-size:48.555168pt;}
.fs12_c00378{font-size:51.349372pt;}
.fsf_c00378{font-size:52.282997pt;}
.fs7_c00378{font-size:52.290181pt;}
.fs1_c00378{font-size:53.223935pt;}
.fse_c00378{font-size:54.150247pt;}
.fsa_c00378{font-size:54.157688pt;}
.fs11_c00378{font-size:55.083872pt;}
.fs2_c00378{font-size:55.091441pt;}
.fs9_c00378{font-size:56.025194pt;}
.fs5_c00378{font-size:56.958948pt;}
.fsd_c00378{font-size:57.892701pt;}
.fs6_c00378{font-size:58.826454pt;}
.fs8_c00378{font-size:59.760207pt;}
.fsb_c00378{font-size:60.693961pt;}
.fs13_c00378{font-size:61.609978pt;}
.fsc_c00378{font-size:62.561467pt;}
.fs3_c00378{font-size:63.495220pt;}
.fs0_c00378{font-size:68.133333pt;}
.y0_c00378{bottom:0.000000pt;}
.yeb_c00378{bottom:27.844000pt;}
.yec_c00378{bottom:28.366864pt;}
.yed_c00378{bottom:29.053624pt;}
.yee_c00378{bottom:30.124504pt;}
.yef_c00378{bottom:30.333064pt;}
.yf0_c00378{bottom:31.162144pt;}
.yf1_c00378{bottom:31.651000pt;}
.yf2_c00378{bottom:31.905760pt;}
.ye6_c00378{bottom:46.903433pt;}
.ye4_c00378{bottom:46.903567pt;}
.ye7_c00378{bottom:46.903867pt;}
.yea_c00378{bottom:46.903933pt;}
.ye5_c00378{bottom:46.904000pt;}
.ye9_c00378{bottom:46.904100pt;}
.ye8_c00378{bottom:46.904467pt;}
.ydb_c00378{bottom:56.142133pt;}
.ydc_c00378{bottom:57.310333pt;}
.ydd_c00378{bottom:57.809000pt;}
.yde_c00378{bottom:58.976100pt;}
.ydf_c00378{bottom:59.980133pt;}
.ye0_c00378{bottom:60.236633pt;}
.ye1_c00378{bottom:60.765200pt;}
.ye2_c00378{bottom:61.417300pt;}
.ye3_c00378{bottom:62.385100pt;}
.yd3_c00378{bottom:74.861067pt;}
.yd4_c00378{bottom:75.300400pt;}
.yd5_c00378{bottom:75.948400pt;}
.yd6_c00378{bottom:76.671800pt;}
.yd7_c00378{bottom:77.434967pt;}
.yd8_c00378{bottom:77.842467pt;}
.yd9_c00378{bottom:78.023333pt;}
.yda_c00378{bottom:78.448200pt;}
.yca_c00378{bottom:87.589667pt;}
.ycb_c00378{bottom:88.156200pt;}
.ycc_c00378{bottom:88.897033pt;}
.ycd_c00378{bottom:89.298767pt;}
.yce_c00378{bottom:90.200667pt;}
.ycf_c00378{bottom:90.997800pt;}
.yd0_c00378{bottom:91.565200pt;}
.yd1_c00378{bottom:91.957467pt;}
.yd2_c00378{bottom:93.161667pt;}
.yc1_c00378{bottom:104.870367pt;}
.yc2_c00378{bottom:105.518667pt;}
.yc3_c00378{bottom:106.336833pt;}
.yc4_c00378{bottom:106.621033pt;}
.yc5_c00378{bottom:107.345300pt;}
.yc6_c00378{bottom:107.773000pt;}
.yc7_c00378{bottom:108.046367pt;}
.yc8_c00378{bottom:108.408000pt;}
.yc9_c00378{bottom:108.658333pt;}
.ybb_c00378{bottom:118.070767pt;}
.ybc_c00378{bottom:118.357067pt;}
.ybd_c00378{bottom:119.447767pt;}
.ybe_c00378{bottom:119.960000pt;}
.ybf_c00378{bottom:121.362467pt;}
.yc0_c00378{bottom:121.849100pt;}
.yb6_c00378{bottom:133.197133pt;}
.yb7_c00378{bottom:133.839200pt;}
.yb8_c00378{bottom:134.309900pt;}
.yb9_c00378{bottom:134.501667pt;}
.yba_c00378{bottom:135.433000pt;}
.yaf_c00378{bottom:148.085333pt;}
.yb0_c00378{bottom:148.426333pt;}
.yb1_c00378{bottom:149.310900pt;}
.yb2_c00378{bottom:150.468833pt;}
.yb3_c00378{bottom:151.555233pt;}
.yb4_c00378{bottom:152.023400pt;}
.yb5_c00378{bottom:152.444933pt;}
.ya5_c00378{bottom:163.298240pt;}
.ya6_c00378{bottom:164.502400pt;}
.ya7_c00378{bottom:164.755213pt;}
.ya8_c00378{bottom:165.378493pt;}
.ya9_c00378{bottom:166.098733pt;}
.yaa_c00378{bottom:166.424920pt;}
.yab_c00378{bottom:166.840720pt;}
.yac_c00378{bottom:167.453107pt;}
.yad_c00378{bottom:168.632080pt;}
.yae_c00378{bottom:169.060973pt;}
.y9d_c00378{bottom:177.465307pt;}
.y9e_c00378{bottom:177.960147pt;}
.y9f_c00378{bottom:178.331573pt;}
.ya0_c00378{bottom:178.950507pt;}
.ya1_c00378{bottom:180.426707pt;}
.ya2_c00378{bottom:181.463800pt;}
.ya3_c00378{bottom:181.832440pt;}
.ya4_c00378{bottom:182.910827pt;}
.y95_c00378{bottom:193.310507pt;}
.y96_c00378{bottom:193.712707pt;}
.y97_c00378{bottom:194.535693pt;}
.y98_c00378{bottom:194.995333pt;}
.y99_c00378{bottom:196.134733pt;}
.y9a_c00378{bottom:196.941560pt;}
.y9b_c00378{bottom:197.697880pt;}
.y9c_c00378{bottom:198.210560pt;}
.y8e_c00378{bottom:208.918067pt;}
.y8f_c00378{bottom:209.196867pt;}
.y90_c00378{bottom:209.590493pt;}
.y91_c00378{bottom:210.915107pt;}
.y92_c00378{bottom:211.419507pt;}
.y93_c00378{bottom:212.307467pt;}
.y94_c00378{bottom:213.023653pt;}
.y85_c00378{bottom:224.525920pt;}
.y86_c00378{bottom:225.545707pt;}
.y87_c00378{bottom:225.839653pt;}
.y88_c00378{bottom:226.081973pt;}
.y89_c00378{bottom:226.929320pt;}
.y8a_c00378{bottom:227.255120pt;}
.y8b_c00378{bottom:227.860053pt;}
.y8c_c00378{bottom:228.704013pt;}
.y8d_c00378{bottom:229.115667pt;}
.y7c_c00378{bottom:239.173480pt;}
.y7d_c00378{bottom:239.823373pt;}
.y7e_c00378{bottom:240.217293pt;}
.y7f_c00378{bottom:241.002853pt;}
.y80_c00378{bottom:241.437480pt;}
.y81_c00378{bottom:242.058293pt;}
.y82_c00378{bottom:243.024880pt;}
.y83_c00378{bottom:243.475347pt;}
.y84_c00378{bottom:244.458253pt;}
.y74_c00378{bottom:255.016613pt;}
.y75_c00378{bottom:255.888400pt;}
.y76_c00378{bottom:256.137613pt;}
.y77_c00378{bottom:256.682280pt;}
.y78_c00378{bottom:257.419133pt;}
.y79_c00378{bottom:257.651587pt;}
.y7a_c00378{bottom:258.035987pt;}
.y7b_c00378{bottom:259.874840pt;}
.y6c_c00378{bottom:270.146680pt;}
.y6d_c00378{bottom:271.418627pt;}
.y6e_c00378{bottom:272.106240pt;}
.y6f_c00378{bottom:273.051000pt;}
.y70_c00378{bottom:273.431533pt;}
.y71_c00378{bottom:274.454213pt;}
.y72_c00378{bottom:275.042080pt;}
.y73_c00378{bottom:275.647320pt;}
.y65_c00378{bottom:285.272333pt;}
.y66_c00378{bottom:286.492387pt;}
.y67_c00378{bottom:287.514920pt;}
.y68_c00378{bottom:287.787627pt;}
.y69_c00378{bottom:289.215240pt;}
.y6a_c00378{bottom:290.020840pt;}
.y6b_c00378{bottom:290.471027pt;}
.y5d_c00378{bottom:299.200213pt;}
.y5e_c00378{bottom:300.574867pt;}
.y5f_c00378{bottom:300.798560pt;}
.y60_c00378{bottom:302.016173pt;}
.y61_c00378{bottom:302.435533pt;}
.y62_c00378{bottom:304.083480pt;}
.y63_c00378{bottom:305.351013pt;}
.y64_c00378{bottom:305.762613pt;}
.y58_c00378{bottom:314.560307pt;}
.y59_c00378{bottom:315.733573pt;}
.y5a_c00378{bottom:316.333267pt;}
.y5b_c00378{bottom:316.596400pt;}
.y5c_c00378{bottom:317.458467pt;}
.y52_c00378{bottom:328.012253pt;}
.y53_c00378{bottom:329.830907pt;}
.y54_c00378{bottom:331.939987pt;}
.y55_c00378{bottom:332.373200pt;}
.y56_c00378{bottom:334.141987pt;}
.y57_c00378{bottom:335.290307pt;}
.y4a_c00378{bottom:343.136000pt;}
.y4b_c00378{bottom:344.379720pt;}
.y4c_c00378{bottom:344.962800pt;}
.y4d_c00378{bottom:345.914053pt;}
.y4e_c00378{bottom:346.648747pt;}
.y4f_c00378{bottom:347.129107pt;}
.y50_c00378{bottom:347.766120pt;}
.y51_c00378{bottom:348.978813pt;}
.y43_c00378{bottom:358.023040pt;}
.y44_c00378{bottom:358.690987pt;}
.y45_c00378{bottom:360.119773pt;}
.y46_c00378{bottom:361.470080pt;}
.y47_c00378{bottom:361.902173pt;}
.y48_c00378{bottom:363.093507pt;}
.y49_c00378{bottom:363.820333pt;}
.y3b_c00378{bottom:373.390053pt;}
.y3c_c00378{bottom:374.256307pt;}
.y3d_c00378{bottom:374.467307pt;}
.y3e_c00378{bottom:375.659880pt;}
.y3f_c00378{bottom:375.952027pt;}
.y40_c00378{bottom:376.973160pt;}
.y41_c00378{bottom:378.132880pt;}
.y42_c00378{bottom:378.494227pt;}
.y33_c00378{bottom:388.754920pt;}
.y34_c00378{bottom:389.307160pt;}
.y35_c00378{bottom:390.350320pt;}
.y36_c00378{bottom:390.703440pt;}
.y37_c00378{bottom:391.912733pt;}
.y38_c00378{bottom:392.303187pt;}
.y39_c00378{bottom:393.174187pt;}
.y3a_c00378{bottom:393.440160pt;}
.y2c_c00378{bottom:403.642600pt;}
.y2d_c00378{bottom:404.224493pt;}
.y2e_c00378{bottom:405.452440pt;}
.y2f_c00378{bottom:405.977093pt;}
.y30_c00378{bottom:406.731653pt;}
.y31_c00378{bottom:407.840067pt;}
.y32_c00378{bottom:408.401933pt;}
.y25_c00378{bottom:419.011200pt;}
.y26_c00378{bottom:419.876493pt;}
.y27_c00378{bottom:420.511893pt;}
.y28_c00378{bottom:420.903107pt;}
.y29_c00378{bottom:421.903933pt;}
.y2a_c00378{bottom:422.473773pt;}
.y2b_c00378{bottom:423.453853pt;}
.y1d_c00378{bottom:433.900173pt;}
.y1e_c00378{bottom:434.537960pt;}
.y1f_c00378{bottom:434.932787pt;}
.y20_c00378{bottom:435.234133pt;}
.y21_c00378{bottom:436.173187pt;}
.y22_c00378{bottom:436.612027pt;}
.y23_c00378{bottom:437.882547pt;}
.y24_c00378{bottom:438.426613pt;}
.y15_c00378{bottom:447.833693pt;}
.y16_c00378{bottom:448.314573pt;}
.y17_c00378{bottom:450.169813pt;}
.y18_c00378{bottom:451.301653pt;}
.y19_c00378{bottom:452.081933pt;}
.y1a_c00378{bottom:453.595933pt;}
.y1b_c00378{bottom:453.845573pt;}
.y1c_c00378{bottom:454.973733pt;}
.yf_c00378{bottom:463.196507pt;}
.y10_c00378{bottom:465.656613pt;}
.y11_c00378{bottom:466.282880pt;}
.y12_c00378{bottom:468.135587pt;}
.y13_c00378{bottom:468.435653pt;}
.y14_c00378{bottom:469.887320pt;}
.y8_c00378{bottom:479.280267pt;}
.y9_c00378{bottom:480.031120pt;}
.ya_c00378{bottom:481.164813pt;}
.yb_c00378{bottom:482.519907pt;}
.yc_c00378{bottom:482.901147pt;}
.yd_c00378{bottom:484.339040pt;}
.ye_c00378{bottom:484.589147pt;}
.y2_c00378{bottom:493.450667pt;}
.y3_c00378{bottom:494.444907pt;}
.y4_c00378{bottom:496.080747pt;}
.y5_c00378{bottom:497.732987pt;}
.y6_c00378{bottom:498.378467pt;}
.y7_c00378{bottom:500.283227pt;}
.y1_c00378{bottom:509.400000pt;}
.h12_c00378{height:46.681248pt;}
.h6_c00378{height:48.555168pt;}
.h14_c00378{height:51.349372pt;}
.h11_c00378{height:52.282997pt;}
.h9_c00378{height:52.290181pt;}
.h3_c00378{height:53.223935pt;}
.h10_c00378{height:54.150247pt;}
.hc_c00378{height:54.157688pt;}
.h13_c00378{height:55.083872pt;}
.h4_c00378{height:55.091441pt;}
.hb_c00378{height:56.025194pt;}
.h7_c00378{height:56.958948pt;}
.hf_c00378{height:57.892701pt;}
.h8_c00378{height:58.826454pt;}
.ha_c00378{height:59.760207pt;}
.hd_c00378{height:60.693961pt;}
.h15_c00378{height:61.609978pt;}
.he_c00378{height:62.561467pt;}
.h5_c00378{height:63.495220pt;}
.h2_c00378{height:68.133333pt;}
.h0_c00378{height:545.040000pt;}
.h1_c00378{height:545.333333pt;}
.w0_c00378{width:319.200000pt;}
.w1_c00378{width:319.333333pt;}
.x0_c00378{left:0.000000pt;}
.x8_c00378{left:17.496573pt;}
.x14_c00378{left:18.398600pt;}
.x29_c00378{left:19.589107pt;}
.x35_c00378{left:20.860253pt;}
.x42_c00378{left:21.874053pt;}
.x4d_c00378{left:22.946000pt;}
.x59_c00378{left:24.482613pt;}
.x62_c00378{left:25.883493pt;}
.x6b_c00378{left:27.130840pt;}
.x72_c00378{left:28.953400pt;}
.x79_c00378{left:30.055533pt;}
.x2_c00378{left:32.498667pt;}
.x15_c00378{left:34.427933pt;}
.x77_c00378{left:37.122933pt;}
.x5e_c00378{left:39.097880pt;}
.x63_c00378{left:45.028653pt;}
.x9_c00378{left:47.551760pt;}
.x1c_c00378{left:48.610947pt;}
.x54_c00378{left:54.721960pt;}
.x2f_c00378{left:57.348293pt;}
.x5f_c00378{left:58.802467pt;}
.x22_c00378{left:59.900547pt;}
.x7a_c00378{left:61.207133pt;}
.x66_c00378{left:62.578787pt;}
.x4e_c00378{left:64.461200pt;}
.x3_c00378{left:65.640000pt;}
.x1d_c00378{left:67.421360pt;}
.x73_c00378{left:69.507867pt;}
.x36_c00378{left:70.591693pt;}
.x55_c00378{left:73.457667pt;}
.x43_c00378{left:74.724373pt;}
.x4f_c00378{left:76.327067pt;}
.x5a_c00378{left:78.137627pt;}
.x47_c00378{left:80.402240pt;}
.x1e_c00378{left:81.781240pt;}
.x3b_c00378{left:83.857027pt;}
.x67_c00378{left:88.370093pt;}
.x23_c00378{left:90.155373pt;}
.xa_c00378{left:92.903893pt;}
.x37_c00378{left:93.897840pt;}
.x16_c00378{left:96.269267pt;}
.x7e_c00378{left:99.320000pt;}
.x50_c00378{left:102.267400pt;}
.x2a_c00378{left:103.596827pt;}
.x5b_c00378{left:106.333573pt;}
.xf_c00378{left:108.709600pt;}
.x26_c00378{left:109.620253pt;}
.x56_c00378{left:110.853080pt;}
.x3f_c00378{left:111.771333pt;}
.x6c_c00378{left:113.777067pt;}
.x7b_c00378{left:117.384900pt;}
.x30_c00378{left:118.369093pt;}
.x4_c00378{left:120.168000pt;}
.x2b_c00378{left:122.173613pt;}
.x60_c00378{left:125.065013pt;}
.x1f_c00378{left:126.517320pt;}
.x48_c00378{left:129.122067pt;}
.x44_c00378{left:130.152347pt;}
.x10_c00378{left:131.898347pt;}
.x1_c00378{left:132.960000pt;}
.x17_c00378{left:133.997267pt;}
.x27_c00378{left:135.872133pt;}
.x51_c00378{left:137.327507pt;}
.x74_c00378{left:138.418033pt;}
.x49_c00378{left:142.126920pt;}
.x6d_c00378{left:143.790467pt;}
.xb_c00378{left:147.104013pt;}
.x52_c00378{left:148.367800pt;}
.x68_c00378{left:149.854467pt;}
.x5c_c00378{left:150.904253pt;}
.x4c_c00378{left:154.380973pt;}
.x24_c00378{left:156.441253pt;}
.x33_c00378{left:158.236920pt;}
.x18_c00378{left:160.006600pt;}
.x38_c00378{left:161.350627pt;}
.xc_c00378{left:162.347627pt;}
.x53_c00378{left:166.652720pt;}
.x5d_c00378{left:168.036560pt;}
.x7f_c00378{left:170.400000pt;}
.x3c_c00378{left:171.491627pt;}
.x28_c00378{left:173.568747pt;}
.x5_c00378{left:175.242667pt;}
.x40_c00378{left:178.077093pt;}
.x39_c00378{left:180.565507pt;}
.x25_c00378{left:183.576573pt;}
.x2c_c00378{left:185.793240pt;}
.x71_c00378{left:187.167300pt;}
.x69_c00378{left:193.054227pt;}
.x61_c00378{left:194.697893pt;}
.x6_c00378{left:196.758667pt;}
.x64_c00378{left:198.787467pt;}
.x11_c00378{left:200.505840pt;}
.x2d_c00378{left:206.370707pt;}
.x20_c00378{left:207.917947pt;}
.x70_c00378{left:209.153333pt;}
.x19_c00378{left:210.473267pt;}
.x12_c00378{left:211.620173pt;}
.x80_c00378{left:216.460000pt;}
.x1a_c00378{left:218.794600pt;}
.xd_c00378{left:219.841560pt;}
.x7c_c00378{left:221.097667pt;}
.x34_c00378{left:223.205347pt;}
.x31_c00378{left:225.891653pt;}
.x75_c00378{left:227.504733pt;}
.x57_c00378{left:228.590173pt;}
.xe_c00378{left:229.824373pt;}
.x3d_c00378{left:232.497467pt;}
.x21_c00378{left:233.838280pt;}
.x65_c00378{left:234.807853pt;}
.x78_c00378{left:235.841900pt;}
.x32_c00378{left:241.584267pt;}
.x7d_c00378{left:242.704500pt;}
.x41_c00378{left:244.357520pt;}
.x4a_c00378{left:248.418227pt;}
.x6e_c00378{left:249.365467pt;}
.x2e_c00378{left:252.219160pt;}
.x6a_c00378{left:253.343733pt;}
.x3a_c00378{left:254.544587pt;}
.x1b_c00378{left:256.399933pt;}
.x45_c00378{left:258.395707pt;}
.x7_c00378{left:260.250667pt;}
.x13_c00378{left:265.391680pt;}
.x6f_c00378{left:267.220667pt;}
.x4b_c00378{left:269.874693pt;}
.x3e_c00378{left:272.109333pt;}
.x46_c00378{left:274.250960pt;}
.x58_c00378{left:275.410813pt;}
.x76_c00378{left:282.122733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00379 {
    display:none;
  }
  .loading-indicator_c00379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00379 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00379 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00379" -> "#page-container .classname_c00379")
 */
.pf_c00379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00379 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00379 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00379 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00379 {overflow:visible;}
  }
}
.c_c00379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00379 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00379:after { /* webkit #35443 */
  content: '';
}
.t_c00379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00379 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00379 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00379 { /* info for Javascript */
  display:none;
}
.l_c00379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00379:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00379 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00379.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc6_c00379{transform:matrix(0.026275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026275,0.000000,0.000000,0.250000,0,0);}
.mba_c00379{transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077010,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);}
.md7_c00379{transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.mc4_c00379{transform:matrix(0.117295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117295,0.000000,0.000000,0.250000,0,0);}
.md4_c00379{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.138615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138615,0.000000,0.000000,0.250000,0,0);}
.mb8_c00379{transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144245,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m98_c00379{transform:matrix(0.144780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144780,0.000000,0.000000,0.250000,0,0);}
.mdb_c00379{transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);}
.mb0_c00379{transform:matrix(0.147915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147915,0.000000,0.000000,0.250000,0,0);}
.m5e_c00379{transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151115,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);}
.md2_c00379{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.m9c_c00379{transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155635,0.000000,0.000000,0.250000,0,0);}
.m62_c00379{transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00379{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.ma2_c00379{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.m85_c00379{transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157995,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.159360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159360,0.000000,0.000000,0.250000,0,0);}
.mcb_c00379{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m83_c00379{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.m89_c00379{transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00379{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.md5_c00379{transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166320,0.000000,0.000000,0.250000,0,0);}
.md9_c00379{transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00379{transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167430,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.mb4_c00379{transform:matrix(0.169170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169170,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169585,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00379{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.ma4_c00379{transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00379{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m8a_c00379{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.md3_c00379{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.ma1_c00379{transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172705,0.000000,0.000000,0.250000,0,0);}
.m38_c00379{transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);}
.m9d_c00379{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m65_c00379{transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173355,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00379{transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174885,0.000000,0.000000,0.250000,0,0);}
.m95_c00379{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.ma5_c00379{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00379{transform:matrix(0.177370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177370,0.000000,0.000000,0.250000,0,0);}
.m77_c00379{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m87_c00379{transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);}
.m94_c00379{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.mda_c00379{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.m82_c00379{transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);}
.m84_c00379{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00379{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.m9b_c00379{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.m7b_c00379{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.m93_c00379{transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m76_c00379{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.mc8_c00379{transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182985,0.000000,0.000000,0.250000,0,0);}
.m9f_c00379{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.m66_c00379{transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);}
.m7a_c00379{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.md1_c00379{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);}
.md8_c00379{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);}
.m37_c00379{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);}
.md0_c00379{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.m81_c00379{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.m96_c00379{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.m73_c00379{transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189960,0.000000,0.000000,0.250000,0,0);}
.m86_c00379{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.ma6_c00379{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00379{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m42_c00379{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);}
.mc3_c00379{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.m8d_c00379{transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);}
.mae_c00379{transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);}
.mb2_c00379{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m88_c00379{transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);}
.m59_c00379{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.mdc_c00379{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m63_c00379{transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194830,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194880,0.000000,0.000000,0.250000,0,0);}
.mbf_c00379{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m60_c00379{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.ma3_c00379{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.m79_c00379{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.m74_c00379{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m39_c00379{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.m7e_c00379{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00379{transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.mb9_c00379{transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);}
.m69_c00379{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.m5d_c00379{transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198670,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.mb7_c00379{transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200115,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m7d_c00379{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.ma0_c00379{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.mbe_c00379{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m25_c00379{transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202330,0.000000,0.000000,0.250000,0,0);}
.m99_c00379{transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202680,0.000000,0.000000,0.250000,0,0);}
.mcf_c00379{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.mbc_c00379{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);}
.m9e_c00379{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.m91_c00379{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);}
.m6d_c00379{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m57_c00379{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.maa_c00379{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.mab_c00379{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m6b_c00379{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.mc0_c00379{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m36_c00379{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m5f_c00379{transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);}
.m6e_c00379{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);}
.md6_c00379{transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m90_c00379{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00379{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214030,0.000000,0.000000,0.250000,0,0);}
.mb1_c00379{transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);}
.m75_c00379{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);}
.m6c_c00379{transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);}
.m6f_c00379{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m78_c00379{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);}
.m80_c00379{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.m61_c00379{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220685,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);}
.m97_c00379{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.mac_c00379{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);}
.mc5_c00379{transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);}
.mad_c00379{transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);}
.m92_c00379{transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226155,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.mcc_c00379{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m68_c00379{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m72_c00379{transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);}
.ma9_c00379{transform:matrix(0.232295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232295,0.000000,0.000000,0.250000,0,0);}
.mce_c00379{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m67_c00379{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.mb3_c00379{transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);}
.m7f_c00379{transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235620,0.000000,0.000000,0.250000,0,0);}
.mc2_c00379{transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.m64_c00379{transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);}
.mca_c00379{transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);}
.mc9_c00379{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);}
.m70_c00379{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m3b_c00379{transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272180,0.000000,0.000000,0.250000,0,0);}
.mbb_c00379{transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);}
.m3f_c00379{transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);}
.maf_c00379{transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);}
.mc7_c00379{transform:matrix(0.297610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297610,0.000000,0.000000,0.250000,0,0);}
.m46_c00379{transform:matrix(0.299420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00379{transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);}
.m7c_c00379{transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);}
.m8c_c00379{transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);}
.mb6_c00379{transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);}
.m8b_c00379{transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00379{transform:matrix(0.353300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353300,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355600,0.000000,0.000000,0.250000,0,0);}
.m71_c00379{transform:matrix(0.363015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363015,0.000000,0.000000,0.250000,0,0);}
.mb5_c00379{transform:matrix(0.368090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368090,0.000000,0.000000,0.250000,0,0);}
.ma8_c00379{transform:matrix(0.370205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370205,0.000000,0.000000,0.250000,0,0);}
.m3e_c00379{transform:matrix(0.406330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406330,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.426075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426075,0.000000,0.000000,0.250000,0,0);}
.m6a_c00379{transform:matrix(0.505355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505355,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.752510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752510,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:0.000000px;}
.fc0_c00379{color:transparent;}
.fs6_c00379{font-size:44.100000px;}
.fs5_c00379{font-size:57.750000px;}
.fsb_c00379{font-size:58.800000px;}
.fsc_c00379{font-size:59.850000px;}
.fsa_c00379{font-size:60.900000px;}
.fs2_c00379{font-size:61.950000px;}
.fs8_c00379{font-size:63.000000px;}
.fs3_c00379{font-size:64.050000px;}
.fs4_c00379{font-size:65.100000px;}
.fse_c00379{font-size:66.150000px;}
.fsd_c00379{font-size:67.200000px;}
.fs0_c00379{font-size:68.250000px;}
.fs7_c00379{font-size:69.300000px;}
.fsf_c00379{font-size:70.350000px;}
.fs9_c00379{font-size:71.400000px;}
.fs1_c00379{font-size:74.550000px;}
.y0_c00379{bottom:0.000000px;}
.y2b_c00379{bottom:28.020000px;}
.y2a_c00379{bottom:45.360000px;}
.y29_c00379{bottom:62.940000px;}
.y28_c00379{bottom:78.933000px;}
.y27_c00379{bottom:96.213000px;}
.y26_c00379{bottom:112.651500px;}
.y25_c00379{bottom:129.691500px;}
.y24_c00379{bottom:146.677500px;}
.y23_c00379{bottom:164.887500px;}
.y22_c00379{bottom:181.206000px;}
.y21_c00379{bottom:196.837500px;}
.y20_c00379{bottom:198.168000px;}
.y1f_c00379{bottom:198.772500px;}
.y1e_c00379{bottom:199.576500px;}
.y1d_c00379{bottom:199.837500px;}
.y1c_c00379{bottom:200.860500px;}
.y1b_c00379{bottom:201.691500px;}
.y1a_c00379{bottom:216.006000px;}
.y19_c00379{bottom:232.627500px;}
.y18_c00379{bottom:248.965500px;}
.y17_c00379{bottom:266.610000px;}
.y16_c00379{bottom:283.108500px;}
.y15_c00379{bottom:300.331500px;}
.y14_c00379{bottom:316.978500px;}
.y13_c00379{bottom:333.570000px;}
.y12_c00379{bottom:351.091500px;}
.y11_c00379{bottom:367.942500px;}
.y10_c00379{bottom:385.233000px;}
.yf_c00379{bottom:402.154500px;}
.ye_c00379{bottom:417.351000px;}
.yd_c00379{bottom:418.521000px;}
.yc_c00379{bottom:419.751000px;}
.yb_c00379{bottom:420.016500px;}
.ya_c00379{bottom:420.661500px;}
.y9_c00379{bottom:435.120000px;}
.y8_c00379{bottom:453.490500px;}
.y7_c00379{bottom:469.083000px;}
.y6_c00379{bottom:487.536000px;}
.y5_c00379{bottom:503.791500px;}
.y4_c00379{bottom:520.830000px;}
.y3_c00379{bottom:537.720000px;}
.y2_c00379{bottom:554.701500px;}
.y1_c00379{bottom:570.402000px;}
.h8_c00379{height:44.100000px;}
.h7_c00379{height:57.750000px;}
.hd_c00379{height:58.800000px;}
.he_c00379{height:59.850000px;}
.hc_c00379{height:60.900000px;}
.h4_c00379{height:61.950000px;}
.ha_c00379{height:63.000000px;}
.h5_c00379{height:64.050000px;}
.h6_c00379{height:65.100000px;}
.h10_c00379{height:66.150000px;}
.hf_c00379{height:67.200000px;}
.h2_c00379{height:68.250000px;}
.h9_c00379{height:69.300000px;}
.h11_c00379{height:70.350000px;}
.hb_c00379{height:71.400000px;}
.h3_c00379{height:74.550000px;}
.h0_c00379{height:613.170000px;}
.h1_c00379{height:613.500000px;}
.w0_c00379{width:359.100000px;}
.w1_c00379{width:359.250000px;}
.x0_c00379{left:0.000000px;}
.x79_c00379{left:33.208500px;}
.x74_c00379{left:34.288500px;}
.x3c_c00379{left:35.370000px;}
.x4f_c00379{left:36.720000px;}
.x46_c00379{left:38.340000px;}
.x31_c00379{left:40.135500px;}
.x16_c00379{left:41.310000px;}
.x3_c00379{left:42.390000px;}
.x75_c00379{left:52.108500px;}
.x6d_c00379{left:55.078500px;}
.x63_c00379{left:60.208500px;}
.x67_c00379{left:61.828500px;}
.x1_c00379{left:63.720000px;}
.x21_c00379{left:66.150000px;}
.x42_c00379{left:67.500000px;}
.x60_c00379{left:71.818500px;}
.x6f_c00379{left:73.438500px;}
.x17_c00379{left:76.680000px;}
.x68_c00379{left:78.298500px;}
.x5e_c00379{left:85.407000px;}
.x4_c00379{left:87.750000px;}
.x35_c00379{left:91.530000px;}
.x32_c00379{left:93.903000px;}
.x39_c00379{left:95.850000px;}
.xa_c00379{left:97.470000px;}
.x28_c00379{left:102.330000px;}
.x4a_c00379{left:103.410000px;}
.x3d_c00379{left:105.300000px;}
.x10_c00379{left:107.460000px;}
.x52_c00379{left:109.080000px;}
.x33_c00379{left:116.043000px;}
.x43_c00379{left:117.180000px;}
.x2c_c00379{left:119.880000px;}
.x36_c00379{left:121.230000px;}
.x64_c00379{left:125.008500px;}
.x5_c00379{left:126.630000px;}
.x50_c00379{left:127.710000px;}
.x61_c00379{left:132.298500px;}
.x1b_c00379{left:133.380000px;}
.x2d_c00379{left:135.270000px;}
.x22_c00379{left:136.890000px;}
.x72_c00379{left:137.968500px;}
.x76_c00379{left:139.048500px;}
.x53_c00379{left:141.210000px;}
.x18_c00379{left:142.560000px;}
.x3e_c00379{left:144.450000px;}
.x5f_c00379{left:145.603500px;}
.x69_c00379{left:150.928500px;}
.x3a_c00379{left:152.550000px;}
.x11_c00379{left:155.250000px;}
.x58_c00379{left:157.680000px;}
.x5b_c00379{left:161.730000px;}
.x23_c00379{left:163.350000px;}
.x3f_c00379{left:167.400000px;}
.xb_c00379{left:168.750000px;}
.x37_c00379{left:171.720000px;}
.x2e_c00379{left:173.070000px;}
.x2_c00379{left:174.150000px;}
.x7c_c00379{left:175.498500px;}
.x12_c00379{left:176.580000px;}
.x24_c00379{left:179.280000px;}
.x4b_c00379{left:180.900000px;}
.x1c_c00379{left:184.140000px;}
.x6a_c00379{left:186.028500px;}
.x73_c00379{left:188.728500px;}
.x44_c00379{left:192.510000px;}
.x13_c00379{left:193.860000px;}
.x77_c00379{left:196.018500px;}
.xc_c00379{left:198.450000px;}
.x47_c00379{left:200.340000px;}
.x7a_c00379{left:201.418500px;}
.x4d_c00379{left:202.500000px;}
.x1d_c00379{left:204.660000px;}
.x54_c00379{left:207.360000px;}
.x59_c00379{left:208.440000px;}
.x29_c00379{left:213.300000px;}
.x19_c00379{left:217.080000px;}
.x5c_c00379{left:218.430000px;}
.x25_c00379{left:219.510000px;}
.x6_c00379{left:220.590000px;}
.xd_c00379{left:221.940000px;}
.x2f_c00379{left:230.580000px;}
.x40_c00379{left:232.200000px;}
.x4c_c00379{left:234.360000px;}
.x70_c00379{left:238.678500px;}
.x1e_c00379{left:243.000000px;}
.x1a_c00379{left:244.350000px;}
.x51_c00379{left:245.970000px;}
.x3b_c00379{left:247.050000px;}
.x14_c00379{left:248.670000px;}
.x7_c00379{left:250.020000px;}
.x41_c00379{left:253.260000px;}
.x6e_c00379{left:254.608500px;}
.x1f_c00379{left:257.040000px;}
.x78_c00379{left:258.118500px;}
.x55_c00379{left:259.470000px;}
.x62_c00379{left:263.518500px;}
.x6b_c00379{left:264.598500px;}
.x26_c00379{left:267.570000px;}
.x2a_c00379{left:269.460000px;}
.x65_c00379{left:272.428500px;}
.x8_c00379{left:273.780000px;}
.x7d_c00379{left:275.128500px;}
.x48_c00379{left:277.830000px;}
.x5d_c00379{left:278.910000px;}
.x7b_c00379{left:280.258500px;}
.x20_c00379{left:281.880000px;}
.x66_c00379{left:288.358500px;}
.xe_c00379{left:289.710000px;}
.x56_c00379{left:292.410000px;}
.x45_c00379{left:294.300000px;}
.x5a_c00379{left:300.240000px;}
.x49_c00379{left:302.940000px;}
.x57_c00379{left:306.450000px;}
.x4e_c00379{left:308.070000px;}
.xf_c00379{left:309.960000px;}
.x30_c00379{left:311.580000px;}
.x6c_c00379{left:312.928500px;}
.x34_c00379{left:316.084500px;}
.x9_c00379{left:321.570000px;}
.x2b_c00379{left:322.650000px;}
.x15_c00379{left:325.620000px;}
.x71_c00379{left:326.698500px;}
.x38_c00379{left:329.400000px;}
.x27_c00379{left:331.290000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:0.000000pt;}
.fs6_c00379{font-size:39.200000pt;}
.fs5_c00379{font-size:51.333333pt;}
.fsb_c00379{font-size:52.266667pt;}
.fsc_c00379{font-size:53.200000pt;}
.fsa_c00379{font-size:54.133333pt;}
.fs2_c00379{font-size:55.066667pt;}
.fs8_c00379{font-size:56.000000pt;}
.fs3_c00379{font-size:56.933333pt;}
.fs4_c00379{font-size:57.866667pt;}
.fse_c00379{font-size:58.800000pt;}
.fsd_c00379{font-size:59.733333pt;}
.fs0_c00379{font-size:60.666667pt;}
.fs7_c00379{font-size:61.600000pt;}
.fsf_c00379{font-size:62.533333pt;}
.fs9_c00379{font-size:63.466667pt;}
.fs1_c00379{font-size:66.266667pt;}
.y0_c00379{bottom:0.000000pt;}
.y2b_c00379{bottom:24.906667pt;}
.y2a_c00379{bottom:40.320000pt;}
.y29_c00379{bottom:55.946667pt;}
.y28_c00379{bottom:70.162667pt;}
.y27_c00379{bottom:85.522667pt;}
.y26_c00379{bottom:100.134667pt;}
.y25_c00379{bottom:115.281333pt;}
.y24_c00379{bottom:130.380000pt;}
.y23_c00379{bottom:146.566667pt;}
.y22_c00379{bottom:161.072000pt;}
.y21_c00379{bottom:174.966667pt;}
.y20_c00379{bottom:176.149333pt;}
.y1f_c00379{bottom:176.686667pt;}
.y1e_c00379{bottom:177.401333pt;}
.y1d_c00379{bottom:177.633333pt;}
.y1c_c00379{bottom:178.542667pt;}
.y1b_c00379{bottom:179.281333pt;}
.y1a_c00379{bottom:192.005333pt;}
.y19_c00379{bottom:206.780000pt;}
.y18_c00379{bottom:221.302667pt;}
.y17_c00379{bottom:236.986667pt;}
.y16_c00379{bottom:251.652000pt;}
.y15_c00379{bottom:266.961333pt;}
.y14_c00379{bottom:281.758667pt;}
.y13_c00379{bottom:296.506667pt;}
.y12_c00379{bottom:312.081333pt;}
.y11_c00379{bottom:327.060000pt;}
.y10_c00379{bottom:342.429333pt;}
.yf_c00379{bottom:357.470667pt;}
.ye_c00379{bottom:370.978667pt;}
.yd_c00379{bottom:372.018667pt;}
.yc_c00379{bottom:373.112000pt;}
.yb_c00379{bottom:373.348000pt;}
.ya_c00379{bottom:373.921333pt;}
.y9_c00379{bottom:386.773333pt;}
.y8_c00379{bottom:403.102667pt;}
.y7_c00379{bottom:416.962667pt;}
.y6_c00379{bottom:433.365333pt;}
.y5_c00379{bottom:447.814667pt;}
.y4_c00379{bottom:462.960000pt;}
.y3_c00379{bottom:477.973333pt;}
.y2_c00379{bottom:493.068000pt;}
.y1_c00379{bottom:507.024000pt;}
.h8_c00379{height:39.200000pt;}
.h7_c00379{height:51.333333pt;}
.hd_c00379{height:52.266667pt;}
.he_c00379{height:53.200000pt;}
.hc_c00379{height:54.133333pt;}
.h4_c00379{height:55.066667pt;}
.ha_c00379{height:56.000000pt;}
.h5_c00379{height:56.933333pt;}
.h6_c00379{height:57.866667pt;}
.h10_c00379{height:58.800000pt;}
.hf_c00379{height:59.733333pt;}
.h2_c00379{height:60.666667pt;}
.h9_c00379{height:61.600000pt;}
.h11_c00379{height:62.533333pt;}
.hb_c00379{height:63.466667pt;}
.h3_c00379{height:66.266667pt;}
.h0_c00379{height:545.040000pt;}
.h1_c00379{height:545.333333pt;}
.w0_c00379{width:319.200000pt;}
.w1_c00379{width:319.333333pt;}
.x0_c00379{left:0.000000pt;}
.x79_c00379{left:29.518667pt;}
.x74_c00379{left:30.478667pt;}
.x3c_c00379{left:31.440000pt;}
.x4f_c00379{left:32.640000pt;}
.x46_c00379{left:34.080000pt;}
.x31_c00379{left:35.676000pt;}
.x16_c00379{left:36.720000pt;}
.x3_c00379{left:37.680000pt;}
.x75_c00379{left:46.318667pt;}
.x6d_c00379{left:48.958667pt;}
.x63_c00379{left:53.518667pt;}
.x67_c00379{left:54.958667pt;}
.x1_c00379{left:56.640000pt;}
.x21_c00379{left:58.800000pt;}
.x42_c00379{left:60.000000pt;}
.x60_c00379{left:63.838667pt;}
.x6f_c00379{left:65.278667pt;}
.x17_c00379{left:68.160000pt;}
.x68_c00379{left:69.598667pt;}
.x5e_c00379{left:75.917333pt;}
.x4_c00379{left:78.000000pt;}
.x35_c00379{left:81.360000pt;}
.x32_c00379{left:83.469333pt;}
.x39_c00379{left:85.200000pt;}
.xa_c00379{left:86.640000pt;}
.x28_c00379{left:90.960000pt;}
.x4a_c00379{left:91.920000pt;}
.x3d_c00379{left:93.600000pt;}
.x10_c00379{left:95.520000pt;}
.x52_c00379{left:96.960000pt;}
.x33_c00379{left:103.149333pt;}
.x43_c00379{left:104.160000pt;}
.x2c_c00379{left:106.560000pt;}
.x36_c00379{left:107.760000pt;}
.x64_c00379{left:111.118667pt;}
.x5_c00379{left:112.560000pt;}
.x50_c00379{left:113.520000pt;}
.x61_c00379{left:117.598667pt;}
.x1b_c00379{left:118.560000pt;}
.x2d_c00379{left:120.240000pt;}
.x22_c00379{left:121.680000pt;}
.x72_c00379{left:122.638667pt;}
.x76_c00379{left:123.598667pt;}
.x53_c00379{left:125.520000pt;}
.x18_c00379{left:126.720000pt;}
.x3e_c00379{left:128.400000pt;}
.x5f_c00379{left:129.425333pt;}
.x69_c00379{left:134.158667pt;}
.x3a_c00379{left:135.600000pt;}
.x11_c00379{left:138.000000pt;}
.x58_c00379{left:140.160000pt;}
.x5b_c00379{left:143.760000pt;}
.x23_c00379{left:145.200000pt;}
.x3f_c00379{left:148.800000pt;}
.xb_c00379{left:150.000000pt;}
.x37_c00379{left:152.640000pt;}
.x2e_c00379{left:153.840000pt;}
.x2_c00379{left:154.800000pt;}
.x7c_c00379{left:155.998667pt;}
.x12_c00379{left:156.960000pt;}
.x24_c00379{left:159.360000pt;}
.x4b_c00379{left:160.800000pt;}
.x1c_c00379{left:163.680000pt;}
.x6a_c00379{left:165.358667pt;}
.x73_c00379{left:167.758667pt;}
.x44_c00379{left:171.120000pt;}
.x13_c00379{left:172.320000pt;}
.x77_c00379{left:174.238667pt;}
.xc_c00379{left:176.400000pt;}
.x47_c00379{left:178.080000pt;}
.x7a_c00379{left:179.038667pt;}
.x4d_c00379{left:180.000000pt;}
.x1d_c00379{left:181.920000pt;}
.x54_c00379{left:184.320000pt;}
.x59_c00379{left:185.280000pt;}
.x29_c00379{left:189.600000pt;}
.x19_c00379{left:192.960000pt;}
.x5c_c00379{left:194.160000pt;}
.x25_c00379{left:195.120000pt;}
.x6_c00379{left:196.080000pt;}
.xd_c00379{left:197.280000pt;}
.x2f_c00379{left:204.960000pt;}
.x40_c00379{left:206.400000pt;}
.x4c_c00379{left:208.320000pt;}
.x70_c00379{left:212.158667pt;}
.x1e_c00379{left:216.000000pt;}
.x1a_c00379{left:217.200000pt;}
.x51_c00379{left:218.640000pt;}
.x3b_c00379{left:219.600000pt;}
.x14_c00379{left:221.040000pt;}
.x7_c00379{left:222.240000pt;}
.x41_c00379{left:225.120000pt;}
.x6e_c00379{left:226.318667pt;}
.x1f_c00379{left:228.480000pt;}
.x78_c00379{left:229.438667pt;}
.x55_c00379{left:230.640000pt;}
.x62_c00379{left:234.238667pt;}
.x6b_c00379{left:235.198667pt;}
.x26_c00379{left:237.840000pt;}
.x2a_c00379{left:239.520000pt;}
.x65_c00379{left:242.158667pt;}
.x8_c00379{left:243.360000pt;}
.x7d_c00379{left:244.558667pt;}
.x48_c00379{left:246.960000pt;}
.x5d_c00379{left:247.920000pt;}
.x7b_c00379{left:249.118667pt;}
.x20_c00379{left:250.560000pt;}
.x66_c00379{left:256.318667pt;}
.xe_c00379{left:257.520000pt;}
.x56_c00379{left:259.920000pt;}
.x45_c00379{left:261.600000pt;}
.x5a_c00379{left:266.880000pt;}
.x49_c00379{left:269.280000pt;}
.x57_c00379{left:272.400000pt;}
.x4e_c00379{left:273.840000pt;}
.xf_c00379{left:275.520000pt;}
.x30_c00379{left:276.960000pt;}
.x6c_c00379{left:278.158667pt;}
.x34_c00379{left:280.964000pt;}
.x9_c00379{left:285.840000pt;}
.x2b_c00379{left:286.800000pt;}
.x15_c00379{left:289.440000pt;}
.x71_c00379{left:290.398667pt;}
.x38_c00379{left:292.800000pt;}
.x27_c00379{left:294.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00380 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00380 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00380 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00380 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00380.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00380{transform:matrix(0.025745,-0.000721,0.006997,0.249902,0,0);-ms-transform:matrix(0.025745,-0.000721,0.006997,0.249902,0,0);-webkit-transform:matrix(0.025745,-0.000721,0.006997,0.249902,0,0);}
.m8d_c00380{transform:matrix(0.035701,-0.001000,0.006997,0.249902,0,0);-ms-transform:matrix(0.035701,-0.001000,0.006997,0.249902,0,0);-webkit-transform:matrix(0.035701,-0.001000,0.006997,0.249902,0,0);}
.m8e_c00380{transform:matrix(0.090879,-0.002545,0.006997,0.249902,0,0);-ms-transform:matrix(0.090879,-0.002545,0.006997,0.249902,0,0);-webkit-transform:matrix(0.090879,-0.002545,0.006997,0.249902,0,0);}
.mde_c00380{transform:matrix(0.120765,-0.002174,0.004499,0.249960,0,0);-ms-transform:matrix(0.120765,-0.002174,0.004499,0.249960,0,0);-webkit-transform:matrix(0.120765,-0.002174,0.004499,0.249960,0,0);}
.mc6_c00380{transform:matrix(0.131269,-0.002363,0.004499,0.249960,0,0);-ms-transform:matrix(0.131269,-0.002363,0.004499,0.249960,0,0);-webkit-transform:matrix(0.131269,-0.002363,0.004499,0.249960,0,0);}
.mec_c00380{transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);}
.m88_c00380{transform:matrix(0.134817,-0.007018,0.012995,0.249662,0,0);-ms-transform:matrix(0.134817,-0.007018,0.012995,0.249662,0,0);-webkit-transform:matrix(0.134817,-0.007018,0.012995,0.249662,0,0);}
.m2_c00380{transform:matrix(0.139931,-0.007284,0.012995,0.249662,0,0);-ms-transform:matrix(0.139931,-0.007284,0.012995,0.249662,0,0);-webkit-transform:matrix(0.139931,-0.007284,0.012995,0.249662,0,0);}
.me1_c00380{transform:matrix(0.146831,-0.002643,0.004499,0.249960,0,0);-ms-transform:matrix(0.146831,-0.002643,0.004499,0.249960,0,0);-webkit-transform:matrix(0.146831,-0.002643,0.004499,0.249960,0,0);}
.m97_c00380{transform:matrix(0.147842,-0.004140,0.006997,0.249902,0,0);-ms-transform:matrix(0.147842,-0.004140,0.006997,0.249902,0,0);-webkit-transform:matrix(0.147842,-0.004140,0.006997,0.249902,0,0);}
.mb7_c00380{transform:matrix(0.153850,-0.002769,0.004499,0.249960,0,0);-ms-transform:matrix(0.153850,-0.002769,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153850,-0.002769,0.004499,0.249960,0,0);}
.ma3_c00380{transform:matrix(0.154625,-0.002783,0.004499,0.249960,0,0);-ms-transform:matrix(0.154625,-0.002783,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154625,-0.002783,0.004499,0.249960,0,0);}
.m8b_c00380{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.mbb_c00380{transform:matrix(0.158569,-0.002854,0.004499,0.249960,0,0);-ms-transform:matrix(0.158569,-0.002854,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158569,-0.002854,0.004499,0.249960,0,0);}
.me4_c00380{transform:matrix(0.159447,-0.004305,0.006748,0.249909,0,0);-ms-transform:matrix(0.159447,-0.004305,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159447,-0.004305,0.006748,0.249909,0,0);}
.ma4_c00380{transform:matrix(0.160314,-0.002886,0.004499,0.249960,0,0);-ms-transform:matrix(0.160314,-0.002886,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160314,-0.002886,0.004499,0.249960,0,0);}
.m30_c00380{transform:matrix(0.162215,-0.008444,0.012995,0.249662,0,0);-ms-transform:matrix(0.162215,-0.008444,0.012995,0.249662,0,0);-webkit-transform:matrix(0.162215,-0.008444,0.012995,0.249662,0,0);}
.mb_c00380{transform:matrix(0.163404,-0.008506,0.012995,0.249662,0,0);-ms-transform:matrix(0.163404,-0.008506,0.012995,0.249662,0,0);-webkit-transform:matrix(0.163404,-0.008506,0.012995,0.249662,0,0);}
.md0_c00380{transform:matrix(0.163778,-0.002948,0.004499,0.249960,0,0);-ms-transform:matrix(0.163778,-0.002948,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163778,-0.002948,0.004499,0.249960,0,0);}
.m32_c00380{transform:matrix(0.164442,-0.008560,0.012995,0.249662,0,0);-ms-transform:matrix(0.164442,-0.008560,0.012995,0.249662,0,0);-webkit-transform:matrix(0.164442,-0.008560,0.012995,0.249662,0,0);}
.m5_c00380{transform:matrix(0.164612,-0.008568,0.012995,0.249662,0,0);-ms-transform:matrix(0.164612,-0.008568,0.012995,0.249662,0,0);-webkit-transform:matrix(0.164612,-0.008568,0.012995,0.249662,0,0);}
.md1_c00380{transform:matrix(0.165043,-0.002971,0.004499,0.249960,0,0);-ms-transform:matrix(0.165043,-0.002971,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165043,-0.002971,0.004499,0.249960,0,0);}
.mbf_c00380{transform:matrix(0.165088,-0.002972,0.004499,0.249960,0,0);-ms-transform:matrix(0.165088,-0.002972,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165088,-0.002972,0.004499,0.249960,0,0);}
.m29_c00380{transform:matrix(0.166030,-0.008642,0.012995,0.249662,0,0);-ms-transform:matrix(0.166030,-0.008642,0.012995,0.249662,0,0);-webkit-transform:matrix(0.166030,-0.008642,0.012995,0.249662,0,0);}
.m85_c00380{transform:matrix(0.166525,-0.008668,0.012995,0.249662,0,0);-ms-transform:matrix(0.166525,-0.008668,0.012995,0.249662,0,0);-webkit-transform:matrix(0.166525,-0.008668,0.012995,0.249662,0,0);}
.m6_c00380{transform:matrix(0.167114,-0.008699,0.012995,0.249662,0,0);-ms-transform:matrix(0.167114,-0.008699,0.012995,0.249662,0,0);-webkit-transform:matrix(0.167114,-0.008699,0.012995,0.249662,0,0);}
.m54_c00380{transform:matrix(0.167393,-0.008713,0.012995,0.249662,0,0);-ms-transform:matrix(0.167393,-0.008713,0.012995,0.249662,0,0);-webkit-transform:matrix(0.167393,-0.008713,0.012995,0.249662,0,0);}
.m4f_c00380{transform:matrix(0.167613,-0.008725,0.012995,0.249662,0,0);-ms-transform:matrix(0.167613,-0.008725,0.012995,0.249662,0,0);-webkit-transform:matrix(0.167613,-0.008725,0.012995,0.249662,0,0);}
.m46_c00380{transform:matrix(0.167763,-0.008732,0.012995,0.249662,0,0);-ms-transform:matrix(0.167763,-0.008732,0.012995,0.249662,0,0);-webkit-transform:matrix(0.167763,-0.008732,0.012995,0.249662,0,0);}
.m9_c00380{transform:matrix(0.167898,-0.008739,0.012995,0.249662,0,0);-ms-transform:matrix(0.167898,-0.008739,0.012995,0.249662,0,0);-webkit-transform:matrix(0.167898,-0.008739,0.012995,0.249662,0,0);}
.mb9_c00380{transform:matrix(0.168093,-0.003026,0.004499,0.249960,0,0);-ms-transform:matrix(0.168093,-0.003026,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168093,-0.003026,0.004499,0.249960,0,0);}
.m56_c00380{transform:matrix(0.169046,-0.008799,0.012995,0.249662,0,0);-ms-transform:matrix(0.169046,-0.008799,0.012995,0.249662,0,0);-webkit-transform:matrix(0.169046,-0.008799,0.012995,0.249662,0,0);}
.m7d_c00380{transform:matrix(0.169461,-0.008821,0.012995,0.249662,0,0);-ms-transform:matrix(0.169461,-0.008821,0.012995,0.249662,0,0);-webkit-transform:matrix(0.169461,-0.008821,0.012995,0.249662,0,0);}
.ma5_c00380{transform:matrix(0.171632,-0.003089,0.004499,0.249960,0,0);-ms-transform:matrix(0.171632,-0.003089,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171632,-0.003089,0.004499,0.249960,0,0);}
.m11_c00380{transform:matrix(0.172117,-0.008959,0.012995,0.249662,0,0);-ms-transform:matrix(0.172117,-0.008959,0.012995,0.249662,0,0);-webkit-transform:matrix(0.172117,-0.008959,0.012995,0.249662,0,0);}
.m1e_c00380{transform:matrix(0.172337,-0.008970,0.012995,0.249662,0,0);-ms-transform:matrix(0.172337,-0.008970,0.012995,0.249662,0,0);-webkit-transform:matrix(0.172337,-0.008970,0.012995,0.249662,0,0);}
.mb4_c00380{transform:matrix(0.172737,-0.003109,0.004499,0.249960,0,0);-ms-transform:matrix(0.172737,-0.003109,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172737,-0.003109,0.004499,0.249960,0,0);}
.mbd_c00380{transform:matrix(0.172807,-0.003111,0.004499,0.249960,0,0);-ms-transform:matrix(0.172807,-0.003111,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172807,-0.003111,0.004499,0.249960,0,0);}
.me3_c00380{transform:matrix(0.173222,-0.003118,0.004499,0.249960,0,0);-ms-transform:matrix(0.173222,-0.003118,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173222,-0.003118,0.004499,0.249960,0,0);}
.ma7_c00380{transform:matrix(0.173637,-0.003125,0.004499,0.249960,0,0);-ms-transform:matrix(0.173637,-0.003125,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173637,-0.003125,0.004499,0.249960,0,0);}
.m91_c00380{transform:matrix(0.174162,-0.004877,0.006997,0.249902,0,0);-ms-transform:matrix(0.174162,-0.004877,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174162,-0.004877,0.006997,0.249902,0,0);}
.m44_c00380{transform:matrix(0.174194,-0.009067,0.012995,0.249662,0,0);-ms-transform:matrix(0.174194,-0.009067,0.012995,0.249662,0,0);-webkit-transform:matrix(0.174194,-0.009067,0.012995,0.249662,0,0);}
.m5d_c00380{transform:matrix(0.175637,-0.009142,0.012995,0.249662,0,0);-ms-transform:matrix(0.175637,-0.009142,0.012995,0.249662,0,0);-webkit-transform:matrix(0.175637,-0.009142,0.012995,0.249662,0,0);}
.m1f_c00380{transform:matrix(0.176636,-0.009194,0.012995,0.249662,0,0);-ms-transform:matrix(0.176636,-0.009194,0.012995,0.249662,0,0);-webkit-transform:matrix(0.176636,-0.009194,0.012995,0.249662,0,0);}
.m4c_c00380{transform:matrix(0.177520,-0.009240,0.012995,0.249662,0,0);-ms-transform:matrix(0.177520,-0.009240,0.012995,0.249662,0,0);-webkit-transform:matrix(0.177520,-0.009240,0.012995,0.249662,0,0);}
.mbe_c00380{transform:matrix(0.177831,-0.003201,0.004499,0.249960,0,0);-ms-transform:matrix(0.177831,-0.003201,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177831,-0.003201,0.004499,0.249960,0,0);}
.m17_c00380{transform:matrix(0.178558,-0.009294,0.012995,0.249662,0,0);-ms-transform:matrix(0.178558,-0.009294,0.012995,0.249662,0,0);-webkit-transform:matrix(0.178558,-0.009294,0.012995,0.249662,0,0);}
.mdd_c00380{transform:matrix(0.178706,-0.003217,0.004499,0.249960,0,0);-ms-transform:matrix(0.178706,-0.003217,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178706,-0.003217,0.004499,0.249960,0,0);}
.m9a_c00380{transform:matrix(0.179126,-0.003224,0.004499,0.249960,0,0);-ms-transform:matrix(0.179126,-0.003224,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179126,-0.003224,0.004499,0.249960,0,0);}
.m1b_c00380{transform:matrix(0.179217,-0.009329,0.012995,0.249662,0,0);-ms-transform:matrix(0.179217,-0.009329,0.012995,0.249662,0,0);-webkit-transform:matrix(0.179217,-0.009329,0.012995,0.249662,0,0);}
.m1_c00380{transform:matrix(0.179857,-0.009362,0.012995,0.249662,0,0);-ms-transform:matrix(0.179857,-0.009362,0.012995,0.249662,0,0);-webkit-transform:matrix(0.179857,-0.009362,0.012995,0.249662,0,0);}
.m16_c00380{transform:matrix(0.180830,-0.009413,0.012995,0.249662,0,0);-ms-transform:matrix(0.180830,-0.009413,0.012995,0.249662,0,0);-webkit-transform:matrix(0.180830,-0.009413,0.012995,0.249662,0,0);}
.m79_c00380{transform:matrix(0.181090,-0.009426,0.012995,0.249662,0,0);-ms-transform:matrix(0.181090,-0.009426,0.012995,0.249662,0,0);-webkit-transform:matrix(0.181090,-0.009426,0.012995,0.249662,0,0);}
.m1c_c00380{transform:matrix(0.181150,-0.009429,0.012995,0.249662,0,0);-ms-transform:matrix(0.181150,-0.009429,0.012995,0.249662,0,0);-webkit-transform:matrix(0.181150,-0.009429,0.012995,0.249662,0,0);}
.m98_c00380{transform:matrix(0.181944,-0.005094,0.006997,0.249902,0,0);-ms-transform:matrix(0.181944,-0.005094,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181944,-0.005094,0.006997,0.249902,0,0);}
.m9c_c00380{transform:matrix(0.182275,-0.003281,0.004499,0.249960,0,0);-ms-transform:matrix(0.182275,-0.003281,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182275,-0.003281,0.004499,0.249960,0,0);}
.m4d_c00380{transform:matrix(0.182588,-0.009504,0.012995,0.249662,0,0);-ms-transform:matrix(0.182588,-0.009504,0.012995,0.249662,0,0);-webkit-transform:matrix(0.182588,-0.009504,0.012995,0.249662,0,0);}
.m9b_c00380{transform:matrix(0.183360,-0.003300,0.004499,0.249960,0,0);-ms-transform:matrix(0.183360,-0.003300,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183360,-0.003300,0.004499,0.249960,0,0);}
.mb8_c00380{transform:matrix(0.183670,-0.003306,0.004499,0.249960,0,0);-ms-transform:matrix(0.183670,-0.003306,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183670,-0.003306,0.004499,0.249960,0,0);}
.m8a_c00380{transform:matrix(0.183696,-0.009562,0.012995,0.249662,0,0);-ms-transform:matrix(0.183696,-0.009562,0.012995,0.249662,0,0);-webkit-transform:matrix(0.183696,-0.009562,0.012995,0.249662,0,0);}
.m1a_c00380{transform:matrix(0.183906,-0.009573,0.012995,0.249662,0,0);-ms-transform:matrix(0.183906,-0.009573,0.012995,0.249662,0,0);-webkit-transform:matrix(0.183906,-0.009573,0.012995,0.249662,0,0);}
.ma1_c00380{transform:matrix(0.184095,-0.003314,0.004499,0.249960,0,0);-ms-transform:matrix(0.184095,-0.003314,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184095,-0.003314,0.004499,0.249960,0,0);}
.ma2_c00380{transform:matrix(0.184500,-0.003321,0.004499,0.249960,0,0);-ms-transform:matrix(0.184500,-0.003321,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184500,-0.003321,0.004499,0.249960,0,0);}
.ma6_c00380{transform:matrix(0.185235,-0.003334,0.004499,0.249960,0,0);-ms-transform:matrix(0.185235,-0.003334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185235,-0.003334,0.004499,0.249960,0,0);}
.m72_c00380{transform:matrix(0.185539,-0.009658,0.012995,0.249662,0,0);-ms-transform:matrix(0.185539,-0.009658,0.012995,0.249662,0,0);-webkit-transform:matrix(0.185539,-0.009658,0.012995,0.249662,0,0);}
.m70_c00380{transform:matrix(0.185798,-0.009671,0.012995,0.249662,0,0);-ms-transform:matrix(0.185798,-0.009671,0.012995,0.249662,0,0);-webkit-transform:matrix(0.185798,-0.009671,0.012995,0.249662,0,0);}
.m20_c00380{transform:matrix(0.186368,-0.009701,0.012995,0.249662,0,0);-ms-transform:matrix(0.186368,-0.009701,0.012995,0.249662,0,0);-webkit-transform:matrix(0.186368,-0.009701,0.012995,0.249662,0,0);}
.m27_c00380{transform:matrix(0.186398,-0.009702,0.012995,0.249662,0,0);-ms-transform:matrix(0.186398,-0.009702,0.012995,0.249662,0,0);-webkit-transform:matrix(0.186398,-0.009702,0.012995,0.249662,0,0);}
.m12_c00380{transform:matrix(0.186707,-0.009718,0.012995,0.249662,0,0);-ms-transform:matrix(0.186707,-0.009718,0.012995,0.249662,0,0);-webkit-transform:matrix(0.186707,-0.009718,0.012995,0.249662,0,0);}
.m39_c00380{transform:matrix(0.186892,-0.009728,0.012995,0.249662,0,0);-ms-transform:matrix(0.186892,-0.009728,0.012995,0.249662,0,0);-webkit-transform:matrix(0.186892,-0.009728,0.012995,0.249662,0,0);}
.m4a_c00380{transform:matrix(0.186942,-0.009731,0.012995,0.249662,0,0);-ms-transform:matrix(0.186942,-0.009731,0.012995,0.249662,0,0);-webkit-transform:matrix(0.186942,-0.009731,0.012995,0.249662,0,0);}
.m7c_c00380{transform:matrix(0.187102,-0.009739,0.012995,0.249662,0,0);-ms-transform:matrix(0.187102,-0.009739,0.012995,0.249662,0,0);-webkit-transform:matrix(0.187102,-0.009739,0.012995,0.249662,0,0);}
.me_c00380{transform:matrix(0.187451,-0.009757,0.012995,0.249662,0,0);-ms-transform:matrix(0.187451,-0.009757,0.012995,0.249662,0,0);-webkit-transform:matrix(0.187451,-0.009757,0.012995,0.249662,0,0);}
.m5e_c00380{transform:matrix(0.187641,-0.009767,0.012995,0.249662,0,0);-ms-transform:matrix(0.187641,-0.009767,0.012995,0.249662,0,0);-webkit-transform:matrix(0.187641,-0.009767,0.012995,0.249662,0,0);}
.ma_c00380{transform:matrix(0.187856,-0.009778,0.012995,0.249662,0,0);-ms-transform:matrix(0.187856,-0.009778,0.012995,0.249662,0,0);-webkit-transform:matrix(0.187856,-0.009778,0.012995,0.249662,0,0);}
.ma8_c00380{transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);-ms-transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188439,-0.003392,0.004499,0.249960,0,0);}
.m45_c00380{transform:matrix(0.189134,-0.009845,0.012995,0.249662,0,0);-ms-transform:matrix(0.189134,-0.009845,0.012995,0.249662,0,0);-webkit-transform:matrix(0.189134,-0.009845,0.012995,0.249662,0,0);}
.mc0_c00380{transform:matrix(0.190219,-0.003424,0.004499,0.249960,0,0);-ms-transform:matrix(0.190219,-0.003424,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190219,-0.003424,0.004499,0.249960,0,0);}
.me6_c00380{transform:matrix(0.190890,-0.005154,0.006748,0.249909,0,0);-ms-transform:matrix(0.190890,-0.005154,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190890,-0.005154,0.006748,0.249909,0,0);}
.m83_c00380{transform:matrix(0.191406,-0.009963,0.012995,0.249662,0,0);-ms-transform:matrix(0.191406,-0.009963,0.012995,0.249662,0,0);-webkit-transform:matrix(0.191406,-0.009963,0.012995,0.249662,0,0);}
.m93_c00380{transform:matrix(0.192090,-0.005379,0.006997,0.249902,0,0);-ms-transform:matrix(0.192090,-0.005379,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192090,-0.005379,0.006997,0.249902,0,0);}
.me7_c00380{transform:matrix(0.192495,-0.005197,0.006748,0.249909,0,0);-ms-transform:matrix(0.192495,-0.005197,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192495,-0.005197,0.006748,0.249909,0,0);}
.m2f_c00380{transform:matrix(0.192659,-0.010028,0.012995,0.249662,0,0);-ms-transform:matrix(0.192659,-0.010028,0.012995,0.249662,0,0);-webkit-transform:matrix(0.192659,-0.010028,0.012995,0.249662,0,0);}
.me2_c00380{transform:matrix(0.193244,-0.003478,0.004499,0.249960,0,0);-ms-transform:matrix(0.193244,-0.003478,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193244,-0.003478,0.004499,0.249960,0,0);}
.m2c_c00380{transform:matrix(0.193263,-0.010060,0.012995,0.249662,0,0);-ms-transform:matrix(0.193263,-0.010060,0.012995,0.249662,0,0);-webkit-transform:matrix(0.193263,-0.010060,0.012995,0.249662,0,0);}
.m4b_c00380{transform:matrix(0.193488,-0.010071,0.012995,0.249662,0,0);-ms-transform:matrix(0.193488,-0.010071,0.012995,0.249662,0,0);-webkit-transform:matrix(0.193488,-0.010071,0.012995,0.249662,0,0);}
.m15_c00380{transform:matrix(0.193603,-0.010077,0.012995,0.249662,0,0);-ms-transform:matrix(0.193603,-0.010077,0.012995,0.249662,0,0);-webkit-transform:matrix(0.193603,-0.010077,0.012995,0.249662,0,0);}
.mda_c00380{transform:matrix(0.193694,-0.003486,0.004499,0.249960,0,0);-ms-transform:matrix(0.193694,-0.003486,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193694,-0.003486,0.004499,0.249960,0,0);}
.m96_c00380{transform:matrix(0.193724,-0.005424,0.006997,0.249902,0,0);-ms-transform:matrix(0.193724,-0.005424,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193724,-0.005424,0.006997,0.249902,0,0);}
.mdf_c00380{transform:matrix(0.193794,-0.003488,0.004499,0.249960,0,0);-ms-transform:matrix(0.193794,-0.003488,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193794,-0.003488,0.004499,0.249960,0,0);}
.m4_c00380{transform:matrix(0.193888,-0.010092,0.012995,0.249662,0,0);-ms-transform:matrix(0.193888,-0.010092,0.012995,0.249662,0,0);-webkit-transform:matrix(0.193888,-0.010092,0.012995,0.249662,0,0);}
.mdc_c00380{transform:matrix(0.194259,-0.003497,0.004499,0.249960,0,0);-ms-transform:matrix(0.194259,-0.003497,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194259,-0.003497,0.004499,0.249960,0,0);}
.mad_c00380{transform:matrix(0.194713,-0.003505,0.004499,0.249960,0,0);-ms-transform:matrix(0.194713,-0.003505,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194713,-0.003505,0.004499,0.249960,0,0);}
.m84_c00380{transform:matrix(0.194736,-0.010136,0.012995,0.249662,0,0);-ms-transform:matrix(0.194736,-0.010136,0.012995,0.249662,0,0);-webkit-transform:matrix(0.194736,-0.010136,0.012995,0.249662,0,0);}
.me8_c00380{transform:matrix(0.194829,-0.005260,0.006748,0.249909,0,0);-ms-transform:matrix(0.194829,-0.005260,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194829,-0.005260,0.006748,0.249909,0,0);}
.m94_c00380{transform:matrix(0.194874,-0.005456,0.006997,0.249902,0,0);-ms-transform:matrix(0.194874,-0.005456,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194874,-0.005456,0.006997,0.249902,0,0);}
.mea_c00380{transform:matrix(0.194974,-0.005264,0.006748,0.249909,0,0);-ms-transform:matrix(0.194974,-0.005264,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194974,-0.005264,0.006748,0.249909,0,0);}
.mcf_c00380{transform:matrix(0.195028,-0.003511,0.004499,0.249960,0,0);-ms-transform:matrix(0.195028,-0.003511,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195028,-0.003511,0.004499,0.249960,0,0);}
.m1d_c00380{transform:matrix(0.195356,-0.010169,0.012995,0.249662,0,0);-ms-transform:matrix(0.195356,-0.010169,0.012995,0.249662,0,0);-webkit-transform:matrix(0.195356,-0.010169,0.012995,0.249662,0,0);}
.m47_c00380{transform:matrix(0.195470,-0.010175,0.012995,0.249662,0,0);-ms-transform:matrix(0.195470,-0.010175,0.012995,0.249662,0,0);-webkit-transform:matrix(0.195470,-0.010175,0.012995,0.249662,0,0);}
.mc9_c00380{transform:matrix(0.195618,-0.003521,0.004499,0.249960,0,0);-ms-transform:matrix(0.195618,-0.003521,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195618,-0.003521,0.004499,0.249960,0,0);}
.m52_c00380{transform:matrix(0.196504,-0.010228,0.012995,0.249662,0,0);-ms-transform:matrix(0.196504,-0.010228,0.012995,0.249662,0,0);-webkit-transform:matrix(0.196504,-0.010228,0.012995,0.249662,0,0);}
.m53_c00380{transform:matrix(0.196863,-0.010247,0.012995,0.249662,0,0);-ms-transform:matrix(0.196863,-0.010247,0.012995,0.249662,0,0);-webkit-transform:matrix(0.196863,-0.010247,0.012995,0.249662,0,0);}
.m7_c00380{transform:matrix(0.197333,-0.010272,0.012995,0.249662,0,0);-ms-transform:matrix(0.197333,-0.010272,0.012995,0.249662,0,0);-webkit-transform:matrix(0.197333,-0.010272,0.012995,0.249662,0,0);}
.m8_c00380{transform:matrix(0.197413,-0.010276,0.012995,0.249662,0,0);-ms-transform:matrix(0.197413,-0.010276,0.012995,0.249662,0,0);-webkit-transform:matrix(0.197413,-0.010276,0.012995,0.249662,0,0);}
.me5_c00380{transform:matrix(0.197753,-0.005339,0.006748,0.249909,0,0);-ms-transform:matrix(0.197753,-0.005339,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197753,-0.005339,0.006748,0.249909,0,0);}
.m10_c00380{transform:matrix(0.198067,-0.010310,0.012995,0.249662,0,0);-ms-transform:matrix(0.198067,-0.010310,0.012995,0.249662,0,0);-webkit-transform:matrix(0.198067,-0.010310,0.012995,0.249662,0,0);}
.m92_c00380{transform:matrix(0.198652,-0.005562,0.006997,0.249902,0,0);-ms-transform:matrix(0.198652,-0.005562,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198652,-0.005562,0.006997,0.249902,0,0);}
.m78_c00380{transform:matrix(0.198771,-0.010346,0.012995,0.249662,0,0);-ms-transform:matrix(0.198771,-0.010346,0.012995,0.249662,0,0);-webkit-transform:matrix(0.198771,-0.010346,0.012995,0.249662,0,0);}
.mbc_c00380{transform:matrix(0.198868,-0.003580,0.004499,0.249960,0,0);-ms-transform:matrix(0.198868,-0.003580,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198868,-0.003580,0.004499,0.249960,0,0);}
.m76_c00380{transform:matrix(0.199740,-0.010397,0.012995,0.249662,0,0);-ms-transform:matrix(0.199740,-0.010397,0.012995,0.249662,0,0);-webkit-transform:matrix(0.199740,-0.010397,0.012995,0.249662,0,0);}
.m5f_c00380{transform:matrix(0.200479,-0.010435,0.012995,0.249662,0,0);-ms-transform:matrix(0.200479,-0.010435,0.012995,0.249662,0,0);-webkit-transform:matrix(0.200479,-0.010435,0.012995,0.249662,0,0);}
.mc_c00380{transform:matrix(0.200923,-0.010458,0.012995,0.249662,0,0);-ms-transform:matrix(0.200923,-0.010458,0.012995,0.249662,0,0);-webkit-transform:matrix(0.200923,-0.010458,0.012995,0.249662,0,0);}
.m19_c00380{transform:matrix(0.201023,-0.010464,0.012995,0.249662,0,0);-ms-transform:matrix(0.201023,-0.010464,0.012995,0.249662,0,0);-webkit-transform:matrix(0.201023,-0.010464,0.012995,0.249662,0,0);}
.m89_c00380{transform:matrix(0.201917,-0.010510,0.012995,0.249662,0,0);-ms-transform:matrix(0.201917,-0.010510,0.012995,0.249662,0,0);-webkit-transform:matrix(0.201917,-0.010510,0.012995,0.249662,0,0);}
.m40_c00380{transform:matrix(0.202017,-0.010515,0.012995,0.249662,0,0);-ms-transform:matrix(0.202017,-0.010515,0.012995,0.249662,0,0);-webkit-transform:matrix(0.202017,-0.010515,0.012995,0.249662,0,0);}
.m5a_c00380{transform:matrix(0.202126,-0.010521,0.012995,0.249662,0,0);-ms-transform:matrix(0.202126,-0.010521,0.012995,0.249662,0,0);-webkit-transform:matrix(0.202126,-0.010521,0.012995,0.249662,0,0);}
.m73_c00380{transform:matrix(0.202171,-0.010523,0.012995,0.249662,0,0);-ms-transform:matrix(0.202171,-0.010523,0.012995,0.249662,0,0);-webkit-transform:matrix(0.202171,-0.010523,0.012995,0.249662,0,0);}
.m77_c00380{transform:matrix(0.202905,-0.010562,0.012995,0.249662,0,0);-ms-transform:matrix(0.202905,-0.010562,0.012995,0.249662,0,0);-webkit-transform:matrix(0.202905,-0.010562,0.012995,0.249662,0,0);}
.m31_c00380{transform:matrix(0.203175,-0.010576,0.012995,0.249662,0,0);-ms-transform:matrix(0.203175,-0.010576,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203175,-0.010576,0.012995,0.249662,0,0);}
.m48_c00380{transform:matrix(0.203465,-0.010591,0.012995,0.249662,0,0);-ms-transform:matrix(0.203465,-0.010591,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203465,-0.010591,0.012995,0.249662,0,0);}
.m49_c00380{transform:matrix(0.203514,-0.010593,0.012995,0.249662,0,0);-ms-transform:matrix(0.203514,-0.010593,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203514,-0.010593,0.012995,0.249662,0,0);}
.m25_c00380{transform:matrix(0.203679,-0.010602,0.012995,0.249662,0,0);-ms-transform:matrix(0.203679,-0.010602,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203679,-0.010602,0.012995,0.249662,0,0);}
.m3a_c00380{transform:matrix(0.204184,-0.010628,0.012995,0.249662,0,0);-ms-transform:matrix(0.204184,-0.010628,0.012995,0.249662,0,0);-webkit-transform:matrix(0.204184,-0.010628,0.012995,0.249662,0,0);}
.md6_c00380{transform:matrix(0.204302,-0.003677,0.004499,0.249960,0,0);-ms-transform:matrix(0.204302,-0.003677,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204302,-0.003677,0.004499,0.249960,0,0);}
.m50_c00380{transform:matrix(0.204803,-0.010660,0.012995,0.249662,0,0);-ms-transform:matrix(0.204803,-0.010660,0.012995,0.249662,0,0);-webkit-transform:matrix(0.204803,-0.010660,0.012995,0.249662,0,0);}
.m28_c00380{transform:matrix(0.204823,-0.010661,0.012995,0.249662,0,0);-ms-transform:matrix(0.204823,-0.010661,0.012995,0.249662,0,0);-webkit-transform:matrix(0.204823,-0.010661,0.012995,0.249662,0,0);}
.m62_c00380{transform:matrix(0.205257,-0.010684,0.012995,0.249662,0,0);-ms-transform:matrix(0.205257,-0.010684,0.012995,0.249662,0,0);-webkit-transform:matrix(0.205257,-0.010684,0.012995,0.249662,0,0);}
.m95_c00380{transform:matrix(0.205644,-0.005758,0.006997,0.249902,0,0);-ms-transform:matrix(0.205644,-0.005758,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205644,-0.005758,0.006997,0.249902,0,0);}
.m3_c00380{transform:matrix(0.205836,-0.010714,0.012995,0.249662,0,0);-ms-transform:matrix(0.205836,-0.010714,0.012995,0.249662,0,0);-webkit-transform:matrix(0.205836,-0.010714,0.012995,0.249662,0,0);}
.m3b_c00380{transform:matrix(0.206530,-0.010750,0.012995,0.249662,0,0);-ms-transform:matrix(0.206530,-0.010750,0.012995,0.249662,0,0);-webkit-transform:matrix(0.206530,-0.010750,0.012995,0.249662,0,0);}
.mf_c00380{transform:matrix(0.206605,-0.010754,0.012995,0.249662,0,0);-ms-transform:matrix(0.206605,-0.010754,0.012995,0.249662,0,0);-webkit-transform:matrix(0.206605,-0.010754,0.012995,0.249662,0,0);}
.m23_c00380{transform:matrix(0.206765,-0.010763,0.012995,0.249662,0,0);-ms-transform:matrix(0.206765,-0.010763,0.012995,0.249662,0,0);-webkit-transform:matrix(0.206765,-0.010763,0.012995,0.249662,0,0);}
.m69_c00380{transform:matrix(0.207509,-0.010801,0.012995,0.249662,0,0);-ms-transform:matrix(0.207509,-0.010801,0.012995,0.249662,0,0);-webkit-transform:matrix(0.207509,-0.010801,0.012995,0.249662,0,0);}
.md7_c00380{transform:matrix(0.207611,-0.003737,0.004499,0.249960,0,0);-ms-transform:matrix(0.207611,-0.003737,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207611,-0.003737,0.004499,0.249960,0,0);}
.m26_c00380{transform:matrix(0.207809,-0.010817,0.012995,0.249662,0,0);-ms-transform:matrix(0.207809,-0.010817,0.012995,0.249662,0,0);-webkit-transform:matrix(0.207809,-0.010817,0.012995,0.249662,0,0);}
.m67_c00380{transform:matrix(0.208163,-0.010835,0.012995,0.249662,0,0);-ms-transform:matrix(0.208163,-0.010835,0.012995,0.249662,0,0);-webkit-transform:matrix(0.208163,-0.010835,0.012995,0.249662,0,0);}
.mb3_c00380{transform:matrix(0.208246,-0.003748,0.004499,0.249960,0,0);-ms-transform:matrix(0.208246,-0.003748,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208246,-0.003748,0.004499,0.249960,0,0);}
.m59_c00380{transform:matrix(0.208947,-0.010876,0.012995,0.249662,0,0);-ms-transform:matrix(0.208947,-0.010876,0.012995,0.249662,0,0);-webkit-transform:matrix(0.208947,-0.010876,0.012995,0.249662,0,0);}
.mca_c00380{transform:matrix(0.209111,-0.003764,0.004499,0.249960,0,0);-ms-transform:matrix(0.209111,-0.003764,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209111,-0.003764,0.004499,0.249960,0,0);}
.md9_c00380{transform:matrix(0.209891,-0.003778,0.004499,0.249960,0,0);-ms-transform:matrix(0.209891,-0.003778,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209891,-0.003778,0.004499,0.249960,0,0);}
.m9e_c00380{transform:matrix(0.210206,-0.003784,0.004499,0.249960,0,0);-ms-transform:matrix(0.210206,-0.003784,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210206,-0.003784,0.004499,0.249960,0,0);}
.m2b_c00380{transform:matrix(0.210580,-0.010961,0.012995,0.249662,0,0);-ms-transform:matrix(0.210580,-0.010961,0.012995,0.249662,0,0);-webkit-transform:matrix(0.210580,-0.010961,0.012995,0.249662,0,0);}
.m5c_c00380{transform:matrix(0.210715,-0.010968,0.012995,0.249662,0,0);-ms-transform:matrix(0.210715,-0.010968,0.012995,0.249662,0,0);-webkit-transform:matrix(0.210715,-0.010968,0.012995,0.249662,0,0);}
.m81_c00380{transform:matrix(0.210889,-0.010977,0.012995,0.249662,0,0);-ms-transform:matrix(0.210889,-0.010977,0.012995,0.249662,0,0);-webkit-transform:matrix(0.210889,-0.010977,0.012995,0.249662,0,0);}
.m57_c00380{transform:matrix(0.211409,-0.011004,0.012995,0.249662,0,0);-ms-transform:matrix(0.211409,-0.011004,0.012995,0.249662,0,0);-webkit-transform:matrix(0.211409,-0.011004,0.012995,0.249662,0,0);}
.m42_c00380{transform:matrix(0.211938,-0.011032,0.012995,0.249662,0,0);-ms-transform:matrix(0.211938,-0.011032,0.012995,0.249662,0,0);-webkit-transform:matrix(0.211938,-0.011032,0.012995,0.249662,0,0);}
.mc7_c00380{transform:matrix(0.212481,-0.003825,0.004499,0.249960,0,0);-ms-transform:matrix(0.212481,-0.003825,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212481,-0.003825,0.004499,0.249960,0,0);}
.m9f_c00380{transform:matrix(0.212496,-0.003825,0.004499,0.249960,0,0);-ms-transform:matrix(0.212496,-0.003825,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212496,-0.003825,0.004499,0.249960,0,0);}
.m6a_c00380{transform:matrix(0.212527,-0.011062,0.012995,0.249662,0,0);-ms-transform:matrix(0.212527,-0.011062,0.012995,0.249662,0,0);-webkit-transform:matrix(0.212527,-0.011062,0.012995,0.249662,0,0);}
.m58_c00380{transform:matrix(0.212657,-0.011069,0.012995,0.249662,0,0);-ms-transform:matrix(0.212657,-0.011069,0.012995,0.249662,0,0);-webkit-transform:matrix(0.212657,-0.011069,0.012995,0.249662,0,0);}
.maf_c00380{transform:matrix(0.212681,-0.003828,0.004499,0.249960,0,0);-ms-transform:matrix(0.212681,-0.003828,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212681,-0.003828,0.004499,0.249960,0,0);}
.me0_c00380{transform:matrix(0.214000,-0.003852,0.004499,0.249960,0,0);-ms-transform:matrix(0.214000,-0.003852,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214000,-0.003852,0.004499,0.249960,0,0);}
.m63_c00380{transform:matrix(0.214330,-0.011156,0.012995,0.249662,0,0);-ms-transform:matrix(0.214330,-0.011156,0.012995,0.249662,0,0);-webkit-transform:matrix(0.214330,-0.011156,0.012995,0.249662,0,0);}
.m3d_c00380{transform:matrix(0.214604,-0.011171,0.012995,0.249662,0,0);-ms-transform:matrix(0.214604,-0.011171,0.012995,0.249662,0,0);-webkit-transform:matrix(0.214604,-0.011171,0.012995,0.249662,0,0);}
.m37_c00380{transform:matrix(0.214614,-0.011171,0.012995,0.249662,0,0);-ms-transform:matrix(0.214614,-0.011171,0.012995,0.249662,0,0);-webkit-transform:matrix(0.214614,-0.011171,0.012995,0.249662,0,0);}
.m35_c00380{transform:matrix(0.215913,-0.011239,0.012995,0.249662,0,0);-ms-transform:matrix(0.215913,-0.011239,0.012995,0.249662,0,0);-webkit-transform:matrix(0.215913,-0.011239,0.012995,0.249662,0,0);}
.m3e_c00380{transform:matrix(0.216147,-0.011251,0.012995,0.249662,0,0);-ms-transform:matrix(0.216147,-0.011251,0.012995,0.249662,0,0);-webkit-transform:matrix(0.216147,-0.011251,0.012995,0.249662,0,0);}
.mc1_c00380{transform:matrix(0.216245,-0.003892,0.004499,0.249960,0,0);-ms-transform:matrix(0.216245,-0.003892,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216245,-0.003892,0.004499,0.249960,0,0);}
.meb_c00380{transform:matrix(0.216291,-0.005840,0.006748,0.249909,0,0);-ms-transform:matrix(0.216291,-0.005840,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216291,-0.005840,0.006748,0.249909,0,0);}
.m2e_c00380{transform:matrix(0.216592,-0.011274,0.012995,0.249662,0,0);-ms-transform:matrix(0.216592,-0.011274,0.012995,0.249662,0,0);-webkit-transform:matrix(0.216592,-0.011274,0.012995,0.249662,0,0);}
.m38_c00380{transform:matrix(0.217056,-0.011298,0.012995,0.249662,0,0);-ms-transform:matrix(0.217056,-0.011298,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217056,-0.011298,0.012995,0.249662,0,0);}
.m5b_c00380{transform:matrix(0.217206,-0.011306,0.012995,0.249662,0,0);-ms-transform:matrix(0.217206,-0.011306,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217206,-0.011306,0.012995,0.249662,0,0);}
.m22_c00380{transform:matrix(0.217461,-0.011319,0.012995,0.249662,0,0);-ms-transform:matrix(0.217461,-0.011319,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217461,-0.011319,0.012995,0.249662,0,0);}
.m80_c00380{transform:matrix(0.217600,-0.011327,0.012995,0.249662,0,0);-ms-transform:matrix(0.217600,-0.011327,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217600,-0.011327,0.012995,0.249662,0,0);}
.m6e_c00380{transform:matrix(0.217765,-0.011335,0.012995,0.249662,0,0);-ms-transform:matrix(0.217765,-0.011335,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217765,-0.011335,0.012995,0.249662,0,0);}
.m55_c00380{transform:matrix(0.217825,-0.011338,0.012995,0.249662,0,0);-ms-transform:matrix(0.217825,-0.011338,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217825,-0.011338,0.012995,0.249662,0,0);}
.m6f_c00380{transform:matrix(0.217955,-0.011345,0.012995,0.249662,0,0);-ms-transform:matrix(0.217955,-0.011345,0.012995,0.249662,0,0);-webkit-transform:matrix(0.217955,-0.011345,0.012995,0.249662,0,0);}
.m34_c00380{transform:matrix(0.218559,-0.011376,0.012995,0.249662,0,0);-ms-transform:matrix(0.218559,-0.011376,0.012995,0.249662,0,0);-webkit-transform:matrix(0.218559,-0.011376,0.012995,0.249662,0,0);}
.md3_c00380{transform:matrix(0.218990,-0.003942,0.004499,0.249960,0,0);-ms-transform:matrix(0.218990,-0.003942,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218990,-0.003942,0.004499,0.249960,0,0);}
.m75_c00380{transform:matrix(0.219288,-0.011414,0.012995,0.249662,0,0);-ms-transform:matrix(0.219288,-0.011414,0.012995,0.249662,0,0);-webkit-transform:matrix(0.219288,-0.011414,0.012995,0.249662,0,0);}
.m51_c00380{transform:matrix(0.219378,-0.011419,0.012995,0.249662,0,0);-ms-transform:matrix(0.219378,-0.011419,0.012995,0.249662,0,0);-webkit-transform:matrix(0.219378,-0.011419,0.012995,0.249662,0,0);}
.m2d_c00380{transform:matrix(0.219483,-0.011425,0.012995,0.249662,0,0);-ms-transform:matrix(0.219483,-0.011425,0.012995,0.249662,0,0);-webkit-transform:matrix(0.219483,-0.011425,0.012995,0.249662,0,0);}
.mdb_c00380{transform:matrix(0.221599,-0.003989,0.004499,0.249960,0,0);-ms-transform:matrix(0.221599,-0.003989,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221599,-0.003989,0.004499,0.249960,0,0);}
.mb5_c00380{transform:matrix(0.221609,-0.003989,0.004499,0.249960,0,0);-ms-transform:matrix(0.221609,-0.003989,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221609,-0.003989,0.004499,0.249960,0,0);}
.md4_c00380{transform:matrix(0.221674,-0.003990,0.004499,0.249960,0,0);-ms-transform:matrix(0.221674,-0.003990,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221674,-0.003990,0.004499,0.249960,0,0);}
.m3f_c00380{transform:matrix(0.222004,-0.011556,0.012995,0.249662,0,0);-ms-transform:matrix(0.222004,-0.011556,0.012995,0.249662,0,0);-webkit-transform:matrix(0.222004,-0.011556,0.012995,0.249662,0,0);}
.m7f_c00380{transform:matrix(0.222034,-0.011557,0.012995,0.249662,0,0);-ms-transform:matrix(0.222034,-0.011557,0.012995,0.249662,0,0);-webkit-transform:matrix(0.222034,-0.011557,0.012995,0.249662,0,0);}
.m82_c00380{transform:matrix(0.223857,-0.011652,0.012995,0.249662,0,0);-ms-transform:matrix(0.223857,-0.011652,0.012995,0.249662,0,0);-webkit-transform:matrix(0.223857,-0.011652,0.012995,0.249662,0,0);}
.mce_c00380{transform:matrix(0.223929,-0.004031,0.004499,0.249960,0,0);-ms-transform:matrix(0.223929,-0.004031,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223929,-0.004031,0.004499,0.249960,0,0);}
.mab_c00380{transform:matrix(0.224049,-0.004033,0.004499,0.249960,0,0);-ms-transform:matrix(0.224049,-0.004033,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224049,-0.004033,0.004499,0.249960,0,0);}
.ma9_c00380{transform:matrix(0.224434,-0.004040,0.004499,0.249960,0,0);-ms-transform:matrix(0.224434,-0.004040,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224434,-0.004040,0.004499,0.249960,0,0);}
.md8_c00380{transform:matrix(0.225189,-0.004053,0.004499,0.249960,0,0);-ms-transform:matrix(0.225189,-0.004053,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225189,-0.004053,0.004499,0.249960,0,0);}
.m64_c00380{transform:matrix(0.225205,-0.011722,0.012995,0.249662,0,0);-ms-transform:matrix(0.225205,-0.011722,0.012995,0.249662,0,0);-webkit-transform:matrix(0.225205,-0.011722,0.012995,0.249662,0,0);}
.mb0_c00380{transform:matrix(0.225923,-0.004067,0.004499,0.249960,0,0);-ms-transform:matrix(0.225923,-0.004067,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225923,-0.004067,0.004499,0.249960,0,0);}
.m36_c00380{transform:matrix(0.226458,-0.011788,0.012995,0.249662,0,0);-ms-transform:matrix(0.226458,-0.011788,0.012995,0.249662,0,0);-webkit-transform:matrix(0.226458,-0.011788,0.012995,0.249662,0,0);}
.m21_c00380{transform:matrix(0.226638,-0.011797,0.012995,0.249662,0,0);-ms-transform:matrix(0.226638,-0.011797,0.012995,0.249662,0,0);-webkit-transform:matrix(0.226638,-0.011797,0.012995,0.249662,0,0);}
.md5_c00380{transform:matrix(0.226888,-0.004084,0.004499,0.249960,0,0);-ms-transform:matrix(0.226888,-0.004084,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226888,-0.004084,0.004499,0.249960,0,0);}
.m3c_c00380{transform:matrix(0.227287,-0.011831,0.012995,0.249662,0,0);-ms-transform:matrix(0.227287,-0.011831,0.012995,0.249662,0,0);-webkit-transform:matrix(0.227287,-0.011831,0.012995,0.249662,0,0);}
.mcc_c00380{transform:matrix(0.227728,-0.004099,0.004499,0.249960,0,0);-ms-transform:matrix(0.227728,-0.004099,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227728,-0.004099,0.004499,0.249960,0,0);}
.mc8_c00380{transform:matrix(0.227953,-0.004103,0.004499,0.249960,0,0);-ms-transform:matrix(0.227953,-0.004103,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227953,-0.004103,0.004499,0.249960,0,0);}
.m86_c00380{transform:matrix(0.229065,-0.011923,0.012995,0.249662,0,0);-ms-transform:matrix(0.229065,-0.011923,0.012995,0.249662,0,0);-webkit-transform:matrix(0.229065,-0.011923,0.012995,0.249662,0,0);}
.md2_c00380{transform:matrix(0.229233,-0.004126,0.004499,0.249960,0,0);-ms-transform:matrix(0.229233,-0.004126,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229233,-0.004126,0.004499,0.249960,0,0);}
.md_c00380{transform:matrix(0.229335,-0.011937,0.012995,0.249662,0,0);-ms-transform:matrix(0.229335,-0.011937,0.012995,0.249662,0,0);-webkit-transform:matrix(0.229335,-0.011937,0.012995,0.249662,0,0);}
.m9d_c00380{transform:matrix(0.229518,-0.004131,0.004499,0.249960,0,0);-ms-transform:matrix(0.229518,-0.004131,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229518,-0.004131,0.004499,0.249960,0,0);}
.m43_c00380{transform:matrix(0.230363,-0.011991,0.012995,0.249662,0,0);-ms-transform:matrix(0.230363,-0.011991,0.012995,0.249662,0,0);-webkit-transform:matrix(0.230363,-0.011991,0.012995,0.249662,0,0);}
.m4e_c00380{transform:matrix(0.230573,-0.012002,0.012995,0.249662,0,0);-ms-transform:matrix(0.230573,-0.012002,0.012995,0.249662,0,0);-webkit-transform:matrix(0.230573,-0.012002,0.012995,0.249662,0,0);}
.m18_c00380{transform:matrix(0.231671,-0.012059,0.012995,0.249662,0,0);-ms-transform:matrix(0.231671,-0.012059,0.012995,0.249662,0,0);-webkit-transform:matrix(0.231671,-0.012059,0.012995,0.249662,0,0);}
.m74_c00380{transform:matrix(0.232845,-0.012120,0.012995,0.249662,0,0);-ms-transform:matrix(0.232845,-0.012120,0.012995,0.249662,0,0);-webkit-transform:matrix(0.232845,-0.012120,0.012995,0.249662,0,0);}
.m65_c00380{transform:matrix(0.234587,-0.012211,0.012995,0.249662,0,0);-ms-transform:matrix(0.234587,-0.012211,0.012995,0.249662,0,0);-webkit-transform:matrix(0.234587,-0.012211,0.012995,0.249662,0,0);}
.mac_c00380{transform:matrix(0.234787,-0.004226,0.004499,0.249960,0,0);-ms-transform:matrix(0.234787,-0.004226,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234787,-0.004226,0.004499,0.249960,0,0);}
.mcb_c00380{transform:matrix(0.236217,-0.004252,0.004499,0.249960,0,0);-ms-transform:matrix(0.236217,-0.004252,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236217,-0.004252,0.004499,0.249960,0,0);}
.mae_c00380{transform:matrix(0.237527,-0.004275,0.004499,0.249960,0,0);-ms-transform:matrix(0.237527,-0.004275,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237527,-0.004275,0.004499,0.249960,0,0);}
.ma0_c00380{transform:matrix(0.239006,-0.004302,0.004499,0.249960,0,0);-ms-transform:matrix(0.239006,-0.004302,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239006,-0.004302,0.004499,0.249960,0,0);}
.m6b_c00380{transform:matrix(0.239471,-0.012465,0.012995,0.249662,0,0);-ms-transform:matrix(0.239471,-0.012465,0.012995,0.249662,0,0);-webkit-transform:matrix(0.239471,-0.012465,0.012995,0.249662,0,0);}
.m6d_c00380{transform:matrix(0.239835,-0.012484,0.012995,0.249662,0,0);-ms-transform:matrix(0.239835,-0.012484,0.012995,0.249662,0,0);-webkit-transform:matrix(0.239835,-0.012484,0.012995,0.249662,0,0);}
.maa_c00380{transform:matrix(0.240456,-0.004328,0.004499,0.249960,0,0);-ms-transform:matrix(0.240456,-0.004328,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240456,-0.004328,0.004499,0.249960,0,0);}
.mc4_c00380{transform:matrix(0.240641,-0.004332,0.004499,0.249960,0,0);-ms-transform:matrix(0.240641,-0.004332,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240641,-0.004332,0.004499,0.249960,0,0);}
.m60_c00380{transform:matrix(0.240719,-0.012530,0.012995,0.249662,0,0);-ms-transform:matrix(0.240719,-0.012530,0.012995,0.249662,0,0);-webkit-transform:matrix(0.240719,-0.012530,0.012995,0.249662,0,0);}
.mc3_c00380{transform:matrix(0.240766,-0.004334,0.004499,0.249960,0,0);-ms-transform:matrix(0.240766,-0.004334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240766,-0.004334,0.004499,0.249960,0,0);}
.mba_c00380{transform:matrix(0.240921,-0.004337,0.004499,0.249960,0,0);-ms-transform:matrix(0.240921,-0.004337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240921,-0.004337,0.004499,0.249960,0,0);}
.m2a_c00380{transform:matrix(0.241428,-0.012567,0.012995,0.249662,0,0);-ms-transform:matrix(0.241428,-0.012567,0.012995,0.249662,0,0);-webkit-transform:matrix(0.241428,-0.012567,0.012995,0.249662,0,0);}
.m7b_c00380{transform:matrix(0.242277,-0.012611,0.012995,0.249662,0,0);-ms-transform:matrix(0.242277,-0.012611,0.012995,0.249662,0,0);-webkit-transform:matrix(0.242277,-0.012611,0.012995,0.249662,0,0);}
.mb6_c00380{transform:matrix(0.242441,-0.004364,0.004499,0.249960,0,0);-ms-transform:matrix(0.242441,-0.004364,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242441,-0.004364,0.004499,0.249960,0,0);}
.m71_c00380{transform:matrix(0.244434,-0.012723,0.012995,0.249662,0,0);-ms-transform:matrix(0.244434,-0.012723,0.012995,0.249662,0,0);-webkit-transform:matrix(0.244434,-0.012723,0.012995,0.249662,0,0);}
.m87_c00380{transform:matrix(0.245892,-0.012799,0.012995,0.249662,0,0);-ms-transform:matrix(0.245892,-0.012799,0.012995,0.249662,0,0);-webkit-transform:matrix(0.245892,-0.012799,0.012995,0.249662,0,0);}
.m14_c00380{transform:matrix(0.246506,-0.012831,0.012995,0.249662,0,0);-ms-transform:matrix(0.246506,-0.012831,0.012995,0.249662,0,0);-webkit-transform:matrix(0.246506,-0.012831,0.012995,0.249662,0,0);}
.m7e_c00380{transform:matrix(0.246766,-0.012845,0.012995,0.249662,0,0);-ms-transform:matrix(0.246766,-0.012845,0.012995,0.249662,0,0);-webkit-transform:matrix(0.246766,-0.012845,0.012995,0.249662,0,0);}
.m13_c00380{transform:matrix(0.248114,-0.012915,0.012995,0.249662,0,0);-ms-transform:matrix(0.248114,-0.012915,0.012995,0.249662,0,0);-webkit-transform:matrix(0.248114,-0.012915,0.012995,0.249662,0,0);}
.m33_c00380{transform:matrix(0.250960,-0.013063,0.012995,0.249662,0,0);-ms-transform:matrix(0.250960,-0.013063,0.012995,0.249662,0,0);-webkit-transform:matrix(0.250960,-0.013063,0.012995,0.249662,0,0);}
.m99_c00380{transform:matrix(0.251134,-0.004520,0.004499,0.249960,0,0);-ms-transform:matrix(0.251134,-0.004520,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251134,-0.004520,0.004499,0.249960,0,0);}
.mcd_c00380{transform:matrix(0.253969,-0.004571,0.004499,0.249960,0,0);-ms-transform:matrix(0.253969,-0.004571,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253969,-0.004571,0.004499,0.249960,0,0);}
.m61_c00380{transform:matrix(0.260133,-0.013540,0.012995,0.249662,0,0);-ms-transform:matrix(0.260133,-0.013540,0.012995,0.249662,0,0);-webkit-transform:matrix(0.260133,-0.013540,0.012995,0.249662,0,0);}
.mc2_c00380{transform:matrix(0.262353,-0.004722,0.004499,0.249960,0,0);-ms-transform:matrix(0.262353,-0.004722,0.004499,0.249960,0,0);-webkit-transform:matrix(0.262353,-0.004722,0.004499,0.249960,0,0);}
.m90_c00380{transform:matrix(0.262537,-0.007351,0.006997,0.249902,0,0);-ms-transform:matrix(0.262537,-0.007351,0.006997,0.249902,0,0);-webkit-transform:matrix(0.262537,-0.007351,0.006997,0.249902,0,0);}
.m6c_c00380{transform:matrix(0.263393,-0.013710,0.012995,0.249662,0,0);-ms-transform:matrix(0.263393,-0.013710,0.012995,0.249662,0,0);-webkit-transform:matrix(0.263393,-0.013710,0.012995,0.249662,0,0);}
.m41_c00380{transform:matrix(0.267478,-0.013923,0.012995,0.249662,0,0);-ms-transform:matrix(0.267478,-0.013923,0.012995,0.249662,0,0);-webkit-transform:matrix(0.267478,-0.013923,0.012995,0.249662,0,0);}
.m68_c00380{transform:matrix(0.268876,-0.013996,0.012995,0.249662,0,0);-ms-transform:matrix(0.268876,-0.013996,0.012995,0.249662,0,0);-webkit-transform:matrix(0.268876,-0.013996,0.012995,0.249662,0,0);}
.m7a_c00380{transform:matrix(0.273445,-0.014233,0.012995,0.249662,0,0);-ms-transform:matrix(0.273445,-0.014233,0.012995,0.249662,0,0);-webkit-transform:matrix(0.273445,-0.014233,0.012995,0.249662,0,0);}
.m8c_c00380{transform:matrix(0.282914,-0.007922,0.006997,0.249902,0,0);-ms-transform:matrix(0.282914,-0.007922,0.006997,0.249902,0,0);-webkit-transform:matrix(0.282914,-0.007922,0.006997,0.249902,0,0);}
.mb1_c00380{transform:matrix(0.286479,-0.005157,0.004499,0.249960,0,0);-ms-transform:matrix(0.286479,-0.005157,0.004499,0.249960,0,0);-webkit-transform:matrix(0.286479,-0.005157,0.004499,0.249960,0,0);}
.m66_c00380{transform:matrix(0.294322,-0.015320,0.012995,0.249662,0,0);-ms-transform:matrix(0.294322,-0.015320,0.012995,0.249662,0,0);-webkit-transform:matrix(0.294322,-0.015320,0.012995,0.249662,0,0);}
.mc5_c00380{transform:matrix(0.332206,-0.005980,0.004499,0.249960,0,0);-ms-transform:matrix(0.332206,-0.005980,0.004499,0.249960,0,0);-webkit-transform:matrix(0.332206,-0.005980,0.004499,0.249960,0,0);}
.mb2_c00380{transform:matrix(0.336960,-0.006065,0.004499,0.249960,0,0);-ms-transform:matrix(0.336960,-0.006065,0.004499,0.249960,0,0);-webkit-transform:matrix(0.336960,-0.006065,0.004499,0.249960,0,0);}
.me9_c00380{transform:matrix(0.347758,-0.009389,0.006748,0.249909,0,0);-ms-transform:matrix(0.347758,-0.009389,0.006748,0.249909,0,0);-webkit-transform:matrix(0.347758,-0.009389,0.006748,0.249909,0,0);}
.m24_c00380{transform:matrix(0.373434,-0.019438,0.012995,0.249662,0,0);-ms-transform:matrix(0.373434,-0.019438,0.012995,0.249662,0,0);-webkit-transform:matrix(0.373434,-0.019438,0.012995,0.249662,0,0);}
.m0_c00380{transform:matrix(0.617958,-0.032166,0.012995,0.249662,0,0);-ms-transform:matrix(0.617958,-0.032166,0.012995,0.249662,0,0);-webkit-transform:matrix(0.617958,-0.032166,0.012995,0.249662,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:0.000000px;}
.fc0_c00380{color:transparent;}
.fsd_c00380{font-size:22.050000px;}
.fse_c00380{font-size:37.814815px;}
.fs13_c00380{font-size:54.608844px;}
.fs12_c00380{font-size:55.659015px;}
.fsb_c00380{font-size:55.669613px;}
.fs5_c00380{font-size:57.770353px;}
.fs10_c00380{font-size:58.809525px;}
.fsc_c00380{font-size:58.820723px;}
.fs14_c00380{font-size:59.859695px;}
.fs2_c00380{font-size:59.871093px;}
.fs3_c00380{font-size:60.921463px;}
.fs9_c00380{font-size:61.971834px;}
.fs7_c00380{font-size:63.022204px;}
.fs15_c00380{font-size:64.060375px;}
.fs8_c00380{font-size:64.072574px;}
.fs4_c00380{font-size:65.122944px;}
.fs6_c00380{font-size:66.173314px;}
.fsf_c00380{font-size:66.175926px;}
.fsa_c00380{font-size:67.223684px;}
.fs16_c00380{font-size:67.224490px;}
.fs1_c00380{font-size:68.274054px;}
.fs11_c00380{font-size:69.311226px;}
.fs0_c00380{font-size:79.828125px;}
.y0_c00380{bottom:0.000000px;}
.ye7_c00380{bottom:30.790500px;}
.ye8_c00380{bottom:31.375239px;}
.ye9_c00380{bottom:32.038184px;}
.yea_c00380{bottom:33.845658px;}
.yeb_c00380{bottom:35.502837px;}
.yec_c00380{bottom:36.496464px;}
.yed_c00380{bottom:36.845453px;}
.yee_c00380{bottom:38.408510px;}
.ydf_c00380{bottom:52.365597px;}
.ye0_c00380{bottom:53.759982px;}
.ye1_c00380{bottom:54.826419px;}
.ye2_c00380{bottom:55.377753px;}
.ye3_c00380{bottom:56.236401px;}
.ye4_c00380{bottom:56.646711px;}
.ye5_c00380{bottom:57.335706px;}
.ye6_c00380{bottom:58.973436px;}
.yd8_c00380{bottom:67.216752px;}
.yd9_c00380{bottom:67.777581px;}
.yda_c00380{bottom:68.185812px;}
.ydb_c00380{bottom:69.473694px;}
.ydc_c00380{bottom:70.242669px;}
.ydd_c00380{bottom:71.247510px;}
.yde_c00380{bottom:71.953782px;}
.yd0_c00380{bottom:83.438802px;}
.yd1_c00380{bottom:84.110772px;}
.yd2_c00380{bottom:86.966097px;}
.yd3_c00380{bottom:88.798434px;}
.yd4_c00380{bottom:89.960679px;}
.yd5_c00380{bottom:90.899343px;}
.yd6_c00380{bottom:91.293192px;}
.yd7_c00380{bottom:93.572109px;}
.yca_c00380{bottom:99.626595px;}
.ycb_c00380{bottom:100.286778px;}
.ycc_c00380{bottom:102.462027px;}
.ycd_c00380{bottom:102.916167px;}
.yce_c00380{bottom:104.215209px;}
.ycf_c00380{bottom:105.256134px;}
.yc4_c00380{bottom:119.061714px;}
.yc5_c00380{bottom:119.426760px;}
.yc6_c00380{bottom:120.626622px;}
.yc7_c00380{bottom:121.299444px;}
.yc8_c00380{bottom:121.685430px;}
.yc9_c00380{bottom:124.444206px;}
.yba_c00380{bottom:133.923804px;}
.ybb_c00380{bottom:134.794842px;}
.ybc_c00380{bottom:135.473739px;}
.ybd_c00380{bottom:137.322624px;}
.ybe_c00380{bottom:138.562575px;}
.ybf_c00380{bottom:139.391973px;}
.yc0_c00380{bottom:140.128488px;}
.yc1_c00380{bottom:142.092285px;}
.yc2_c00380{bottom:142.499637px;}
.yc3_c00380{bottom:143.455698px;}
.yb2_c00380{bottom:151.472034px;}
.yb3_c00380{bottom:151.846104px;}
.yb4_c00380{bottom:153.088980px;}
.yb5_c00380{bottom:154.865769px;}
.yb6_c00380{bottom:155.417022px;}
.yb7_c00380{bottom:157.522221px;}
.yb8_c00380{bottom:158.010798px;}
.yb9_c00380{bottom:159.320442px;}
.yac_c00380{bottom:167.950950px;}
.yad_c00380{bottom:168.900060px;}
.yae_c00380{bottom:170.598735px;}
.yaf_c00380{bottom:173.589186px;}
.yb0_c00380{bottom:175.522116px;}
.yb1_c00380{bottom:175.963143px;}
.ya4_c00380{bottom:184.425456px;}
.ya5_c00380{bottom:185.862642px;}
.ya6_c00380{bottom:187.371900px;}
.ya7_c00380{bottom:188.158776px;}
.ya8_c00380{bottom:189.212343px;}
.ya9_c00380{bottom:190.205724px;}
.yaa_c00380{bottom:192.744264px;}
.yab_c00380{bottom:194.862771px;}
.y9c_c00380{bottom:202.774500px;}
.y9d_c00380{bottom:203.418666px;}
.y9e_c00380{bottom:203.765238px;}
.y9f_c00380{bottom:204.538302px;}
.ya0_c00380{bottom:204.990390px;}
.ya1_c00380{bottom:206.172234px;}
.ya2_c00380{bottom:207.173745px;}
.ya3_c00380{bottom:207.543321px;}
.y94_c00380{bottom:220.054914px;}
.y95_c00380{bottom:221.396274px;}
.y96_c00380{bottom:223.280424px;}
.y97_c00380{bottom:224.878164px;}
.y98_c00380{bottom:225.723438px;}
.y99_c00380{bottom:226.335420px;}
.y9a_c00380{bottom:227.431110px;}
.y9b_c00380{bottom:227.862624px;}
.y8f_c00380{bottom:229.233000px;}
.y90_c00380{bottom:230.997756px;}
.y91_c00380{bottom:232.846554px;}
.y92_c00380{bottom:233.805036px;}
.y87_c00380{bottom:235.872923px;}
.y8e_c00380{bottom:236.790000px;}
.y93_c00380{bottom:237.021438px;}
.y88_c00380{bottom:237.261497px;}
.y89_c00380{bottom:238.462301px;}
.yef_c00380{bottom:238.680000px;}
.y8a_c00380{bottom:240.136007px;}
.y8b_c00380{bottom:240.908388px;}
.y8c_c00380{bottom:241.572693px;}
.y8d_c00380{bottom:243.939087px;}
.y81_c00380{bottom:253.429938px;}
.y82_c00380{bottom:255.443363px;}
.y83_c00380{bottom:258.146156px;}
.y84_c00380{bottom:259.126121px;}
.y85_c00380{bottom:260.850570px;}
.y86_c00380{bottom:263.567867px;}
.y7a_c00380{bottom:270.983609px;}
.y7b_c00380{bottom:272.586098px;}
.y7c_c00380{bottom:273.312708px;}
.y7d_c00380{bottom:275.342291px;}
.y7e_c00380{bottom:275.827431px;}
.y7f_c00380{bottom:278.202648px;}
.y80_c00380{bottom:280.662629px;}
.y74_c00380{bottom:288.000942px;}
.y75_c00380{bottom:289.156520px;}
.y76_c00380{bottom:290.688011px;}
.y77_c00380{bottom:291.591129px;}
.y78_c00380{bottom:294.290222px;}
.y79_c00380{bottom:296.296860px;}
.y6d_c00380{bottom:306.096138px;}
.y6e_c00380{bottom:308.005451px;}
.y6f_c00380{bottom:311.049071px;}
.y70_c00380{bottom:311.704653px;}
.y71_c00380{bottom:312.717399px;}
.y72_c00380{bottom:313.481349px;}
.y73_c00380{bottom:314.378696px;}
.y66_c00380{bottom:321.768890px;}
.y67_c00380{bottom:325.594134px;}
.y68_c00380{bottom:327.183458px;}
.y69_c00380{bottom:328.546154px;}
.y6a_c00380{bottom:329.369312px;}
.y6b_c00380{bottom:331.422855px;}
.y6c_c00380{bottom:333.113483px;}
.y5f_c00380{bottom:339.317212px;}
.y60_c00380{bottom:340.776267px;}
.y61_c00380{bottom:342.957831px;}
.y62_c00380{bottom:343.398882px;}
.y63_c00380{bottom:346.094142px;}
.y64_c00380{bottom:346.651086px;}
.y65_c00380{bottom:348.779936px;}
.y58_c00380{bottom:353.646105px;}
.y59_c00380{bottom:354.240889px;}
.y5a_c00380{bottom:355.430693px;}
.y5b_c00380{bottom:357.222456px;}
.y5c_c00380{bottom:360.384336px;}
.y5d_c00380{bottom:362.840607px;}
.y5e_c00380{bottom:364.476561px;}
.y52_c00380{bottom:371.153300px;}
.y53_c00380{bottom:374.500879px;}
.y54_c00380{bottom:375.345577px;}
.y55_c00380{bottom:378.021855px;}
.y56_c00380{bottom:380.555464px;}
.y57_c00380{bottom:381.276148px;}
.y4b_c00380{bottom:389.550741px;}
.y4c_c00380{bottom:390.984938px;}
.y4d_c00380{bottom:391.403205px;}
.y4e_c00380{bottom:393.315378px;}
.y4f_c00380{bottom:394.014075px;}
.y50_c00380{bottom:395.700724px;}
.y51_c00380{bottom:398.460331px;}
.y43_c00380{bottom:404.377791px;}
.y44_c00380{bottom:405.020542px;}
.y45_c00380{bottom:406.560669px;}
.y46_c00380{bottom:407.042358px;}
.y47_c00380{bottom:407.744281px;}
.y48_c00380{bottom:410.084556px;}
.y49_c00380{bottom:410.666107px;}
.y4a_c00380{bottom:413.049179px;}
.y3d_c00380{bottom:420.886704px;}
.y3e_c00380{bottom:421.844427px;}
.y3f_c00380{bottom:423.924478px;}
.y40_c00380{bottom:427.068668px;}
.y41_c00380{bottom:429.942740px;}
.y42_c00380{bottom:430.887859px;}
.y36_c00380{bottom:437.903635px;}
.y37_c00380{bottom:439.006468px;}
.y38_c00380{bottom:441.356386px;}
.y39_c00380{bottom:442.355892px;}
.y3a_c00380{bottom:443.928493px;}
.y3b_c00380{bottom:446.517382px;}
.y3c_c00380{bottom:448.365294px;}
.y2e_c00380{bottom:455.422650px;}
.y2f_c00380{bottom:456.999999px;}
.y30_c00380{bottom:457.400532px;}
.y31_c00380{bottom:460.600568px;}
.y32_c00380{bottom:461.068708px;}
.y33_c00380{bottom:461.809761px;}
.y34_c00380{bottom:464.222549px;}
.y35_c00380{bottom:465.042392px;}
.y27_c00380{bottom:473.827587px;}
.y28_c00380{bottom:476.328241px;}
.y29_c00380{bottom:478.872439px;}
.y2a_c00380{bottom:479.317530px;}
.y2b_c00380{bottom:480.664185px;}
.y2c_c00380{bottom:482.854201px;}
.y2d_c00380{bottom:483.620316px;}
.y22_c00380{bottom:489.231418px;}
.y23_c00380{bottom:494.176101px;}
.y24_c00380{bottom:495.258837px;}
.y25_c00380{bottom:496.723245px;}
.y26_c00380{bottom:497.537481px;}
.y1a_c00380{bottom:505.431469px;}
.y1b_c00380{bottom:507.224481px;}
.y1c_c00380{bottom:508.073982px;}
.y1d_c00380{bottom:510.199044px;}
.y1e_c00380{bottom:510.914152px;}
.y1f_c00380{bottom:513.445060px;}
.y20_c00380{bottom:514.537594px;}
.y21_c00380{bottom:516.367245px;}
.y13_c00380{bottom:524.065597px;}
.y14_c00380{bottom:525.983445px;}
.y15_c00380{bottom:526.846699px;}
.y16_c00380{bottom:528.576000px;}
.y17_c00380{bottom:530.436108px;}
.y18_c00380{bottom:532.071625px;}
.y19_c00380{bottom:534.271240px;}
.ya_c00380{bottom:540.001364px;}
.yb_c00380{bottom:540.687619px;}
.yc_c00380{bottom:543.287364px;}
.yd_c00380{bottom:543.907953px;}
.ye_c00380{bottom:544.430588px;}
.yf_c00380{bottom:547.316301px;}
.y10_c00380{bottom:548.387495px;}
.y11_c00380{bottom:550.759527px;}
.y12_c00380{bottom:551.773054px;}
.y2_c00380{bottom:557.016892px;}
.y3_c00380{bottom:558.064502px;}
.y4_c00380{bottom:558.882604px;}
.y5_c00380{bottom:561.331564px;}
.y6_c00380{bottom:563.025905px;}
.y7_c00380{bottom:564.558339px;}
.y8_c00380{bottom:565.562696px;}
.y9_c00380{bottom:568.764888px;}
.y1_c00380{bottom:574.876500px;}
.hf_c00380{height:22.050000px;}
.h10_c00380{height:37.814815px;}
.h15_c00380{height:54.608844px;}
.h14_c00380{height:55.659015px;}
.hd_c00380{height:55.669613px;}
.h7_c00380{height:57.770353px;}
.h12_c00380{height:58.809525px;}
.he_c00380{height:58.820723px;}
.h16_c00380{height:59.859695px;}
.h4_c00380{height:59.871093px;}
.h5_c00380{height:60.921463px;}
.hb_c00380{height:61.971834px;}
.h9_c00380{height:63.022204px;}
.h17_c00380{height:64.060375px;}
.ha_c00380{height:64.072574px;}
.h6_c00380{height:65.122944px;}
.h8_c00380{height:66.173314px;}
.h11_c00380{height:66.175926px;}
.hc_c00380{height:67.223684px;}
.h18_c00380{height:67.224490px;}
.h3_c00380{height:68.274054px;}
.h13_c00380{height:69.311226px;}
.h2_c00380{height:79.828125px;}
.h0_c00380{height:613.170000px;}
.h1_c00380{height:613.500000px;}
.w0_c00380{width:359.100000px;}
.w1_c00380{width:359.250000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:17.158102px;}
.x12_c00380{left:18.309825px;}
.x3d_c00380{left:19.499697px;}
.x4c_c00380{left:20.697106px;}
.x56_c00380{left:21.799732px;}
.x62_c00380{left:22.924845px;}
.x68_c00380{left:24.304737px;}
.x76_c00380{left:25.737141px;}
.x7d_c00380{left:32.779500px;}
.xa_c00380{left:34.315359px;}
.x39_c00380{left:36.029497px;}
.x6b_c00380{left:37.801902px;}
.x3_c00380{left:42.076121px;}
.x34_c00380{left:44.453124px;}
.x2f_c00380{left:47.999869px;}
.x77_c00380{left:49.326402px;}
.x6f_c00380{left:50.403807px;}
.x79_c00380{left:51.845694px;}
.x4d_c00380{left:53.664729px;}
.x69_c00380{left:54.942582px;}
.x60_c00380{left:58.189500px;}
.x19_c00380{left:59.898305px;}
.x4_c00380{left:61.545782px;}
.x63_c00380{left:62.838912px;}
.x3e_c00380{left:64.228380px;}
.x50_c00380{left:65.323147px;}
.x13_c00380{left:68.693010px;}
.x70_c00380{left:70.364556px;}
.x29_c00380{left:72.329004px;}
.x3a_c00380{left:77.597290px;}
.x1a_c00380{left:79.624772px;}
.x6c_c00380{left:82.175910px;}
.x51_c00380{left:85.488748px;}
.x23_c00380{left:87.858416px;}
.x14_c00380{left:91.368286px;}
.xb_c00380{left:96.124578px;}
.x4e_c00380{left:97.347073px;}
.x35_c00380{left:99.107157px;}
.x40_c00380{left:102.486631px;}
.x64_c00380{left:104.756331px;}
.x73_c00380{left:107.137128px;}
.x30_c00380{left:109.772508px;}
.xc_c00380{left:110.875963px;}
.x46_c00380{left:115.478125px;}
.x5_c00380{left:119.794269px;}
.x43_c00380{left:121.080394px;}
.xd_c00380{left:123.312495px;}
.x71_c00380{left:124.731396px;}
.x65_c00380{left:126.631257px;}
.x1b_c00380{left:128.994963px;}
.x44_c00380{left:133.306306px;}
.x15_c00380{left:136.801335px;}
.x52_c00380{left:141.771178px;}
.x57_c00380{left:143.420425px;}
.x1c_c00380{left:145.591080px;}
.x1_c00380{left:148.302000px;}
.x5b_c00380{left:150.784500px;}
.x53_c00380{left:152.320221px;}
.x47_c00380{left:155.162152px;}
.x24_c00380{left:158.443974px;}
.x6_c00380{left:160.081367px;}
.x2a_c00380{left:161.085442px;}
.x74_c00380{left:162.792102px;}
.x58_c00380{left:165.446818px;}
.x49_c00380{left:169.712841px;}
.x25_c00380{left:170.776358px;}
.x20_c00380{left:172.491917px;}
.x2b_c00380{left:174.062727px;}
.x7b_c00380{left:175.333365px;}
.x31_c00380{left:177.372529px;}
.x54_c00380{left:179.518138px;}
.x36_c00380{left:181.739062px;}
.x59_c00380{left:184.386568px;}
.x16_c00380{left:185.699991px;}
.x3b_c00380{left:188.424285px;}
.x41_c00380{left:190.365397px;}
.xe_c00380{left:191.943477px;}
.x2c_c00380{left:194.621247px;}
.x7_c00380{left:196.536348px;}
.x4f_c00380{left:200.093950px;}
.x78_c00380{left:202.056180px;}
.x1d_c00380{left:204.374721px;}
.x6a_c00380{left:206.164185px;}
.x26_c00380{left:208.136535px;}
.x21_c00380{left:209.978190px;}
.x3f_c00380{left:211.346491px;}
.xf_c00380{left:217.401189px;}
.x8_c00380{left:220.421353px;}
.x45_c00380{left:223.497979px;}
.x55_c00380{left:227.340510px;}
.x17_c00380{left:228.696261px;}
.x1e_c00380{left:229.751687px;}
.x22_c00380{left:230.816885px;}
.x42_c00380{left:233.907954px;}
.x5d_c00380{left:238.745076px;}
.x6d_c00380{left:240.521925px;}
.x4a_c00380{left:243.315355px;}
.x32_c00380{left:245.410425px;}
.x7a_c00380{left:250.679448px;}
.x3c_c00380{left:252.739032px;}
.x66_c00380{left:254.006001px;}
.x37_c00380{left:257.276416px;}
.x2d_c00380{left:261.556415px;}
.x72_c00380{left:265.005504px;}
.x61_c00380{left:266.805000px;}
.x27_c00380{left:268.886741px;}
.x4b_c00380{left:270.455968px;}
.x1f_c00380{left:272.263043px;}
.x10_c00380{left:273.796516px;}
.x5e_c00380{left:276.536526px;}
.x5a_c00380{left:279.450000px;}
.x7c_c00380{left:280.625718px;}
.x38_c00380{left:282.130651px;}
.x2e_c00380{left:284.292551px;}
.x18_c00380{left:286.484421px;}
.x28_c00380{left:290.157672px;}
.x5f_c00380{left:291.411606px;}
.x33_c00380{left:293.988168px;}
.x9_c00380{left:296.575709px;}
.x11_c00380{left:297.915444px;}
.x5c_c00380{left:299.887500px;}
.x48_c00380{left:303.207247px;}
.x6e_c00380{left:304.744869px;}
.x75_c00380{left:307.971483px;}
.x67_c00380{left:312.848439px;}
.x7e_c00380{left:314.928000px;}
.x7f_c00380{left:340.200000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fsd_c00380{font-size:19.600000pt;}
.fse_c00380{font-size:33.613169pt;}
.fs13_c00380{font-size:48.541195pt;}
.fs12_c00380{font-size:49.474680pt;}
.fsb_c00380{font-size:49.484101pt;}
.fs5_c00380{font-size:51.351425pt;}
.fs10_c00380{font-size:52.275133pt;}
.fsc_c00380{font-size:52.285087pt;}
.fs14_c00380{font-size:53.208618pt;}
.fs2_c00380{font-size:53.218750pt;}
.fs3_c00380{font-size:54.152412pt;}
.fs9_c00380{font-size:55.086074pt;}
.fs7_c00380{font-size:56.019737pt;}
.fs15_c00380{font-size:56.942556pt;}
.fs8_c00380{font-size:56.953399pt;}
.fs4_c00380{font-size:57.887061pt;}
.fs6_c00380{font-size:58.820723pt;}
.fsf_c00380{font-size:58.823045pt;}
.fsa_c00380{font-size:59.754386pt;}
.fs16_c00380{font-size:59.755102pt;}
.fs1_c00380{font-size:60.688048pt;}
.fs11_c00380{font-size:61.609978pt;}
.fs0_c00380{font-size:70.958333pt;}
.y0_c00380{bottom:0.000000pt;}
.ye7_c00380{bottom:27.369333pt;}
.ye8_c00380{bottom:27.889101pt;}
.ye9_c00380{bottom:28.478385pt;}
.yea_c00380{bottom:30.085029pt;}
.yeb_c00380{bottom:31.558077pt;}
.yec_c00380{bottom:32.441301pt;}
.yed_c00380{bottom:32.751513pt;}
.yee_c00380{bottom:34.140897pt;}
.ydf_c00380{bottom:46.547197pt;}
.ye0_c00380{bottom:47.786651pt;}
.ye1_c00380{bottom:48.734595pt;}
.ye2_c00380{bottom:49.224669pt;}
.ye3_c00380{bottom:49.987912pt;}
.ye4_c00380{bottom:50.352632pt;}
.ye5_c00380{bottom:50.965072pt;}
.ye6_c00380{bottom:52.420832pt;}
.yd8_c00380{bottom:59.748224pt;}
.yd9_c00380{bottom:60.246739pt;}
.yda_c00380{bottom:60.609611pt;}
.ydb_c00380{bottom:61.754395pt;}
.ydc_c00380{bottom:62.437928pt;}
.ydd_c00380{bottom:63.331120pt;}
.yde_c00380{bottom:63.958917pt;}
.yd0_c00380{bottom:74.167824pt;}
.yd1_c00380{bottom:74.765131pt;}
.yd2_c00380{bottom:77.303197pt;}
.yd3_c00380{bottom:78.931941pt;}
.yd4_c00380{bottom:79.965048pt;}
.yd5_c00380{bottom:80.799416pt;}
.yd6_c00380{bottom:81.149504pt;}
.yd7_c00380{bottom:83.175208pt;}
.yca_c00380{bottom:88.556973pt;}
.ycb_c00380{bottom:89.143803pt;}
.ycc_c00380{bottom:91.077357pt;}
.ycd_c00380{bottom:91.481037pt;}
.yce_c00380{bottom:92.635741pt;}
.ycf_c00380{bottom:93.561008pt;}
.yc4_c00380{bottom:105.832635pt;}
.yc5_c00380{bottom:106.157120pt;}
.yc6_c00380{bottom:107.223664pt;}
.yc7_c00380{bottom:107.821728pt;}
.yc8_c00380{bottom:108.164827pt;}
.yc9_c00380{bottom:110.617072pt;}
.yba_c00380{bottom:119.043381pt;}
.ybb_c00380{bottom:119.817637pt;}
.ybc_c00380{bottom:120.421101pt;}
.ybd_c00380{bottom:122.064555pt;}
.ybe_c00380{bottom:123.166733pt;}
.ybf_c00380{bottom:123.903976pt;}
.yc0_c00380{bottom:124.558656pt;}
.yc1_c00380{bottom:126.304253pt;}
.yc2_c00380{bottom:126.666344pt;}
.yc3_c00380{bottom:127.516176pt;}
.yb2_c00380{bottom:134.641808pt;}
.yb3_c00380{bottom:134.974315pt;}
.yb4_c00380{bottom:136.079093pt;}
.yb5_c00380{bottom:137.658461pt;}
.yb6_c00380{bottom:138.148464pt;}
.yb7_c00380{bottom:140.019752pt;}
.yb8_c00380{bottom:140.454043pt;}
.yb9_c00380{bottom:141.618171pt;}
.yac_c00380{bottom:149.289733pt;}
.yad_c00380{bottom:150.133387pt;}
.yae_c00380{bottom:151.643320pt;}
.yaf_c00380{bottom:154.301499pt;}
.yb0_c00380{bottom:156.019659pt;}
.yb1_c00380{bottom:156.411683pt;}
.ya4_c00380{bottom:163.933739pt;}
.ya5_c00380{bottom:165.211237pt;}
.ya6_c00380{bottom:166.552800pt;}
.ya7_c00380{bottom:167.252245pt;}
.ya8_c00380{bottom:168.188749pt;}
.ya9_c00380{bottom:169.071755pt;}
.yaa_c00380{bottom:171.328235pt;}
.yab_c00380{bottom:173.211352pt;}
.y9c_c00380{bottom:180.244000pt;}
.y9d_c00380{bottom:180.816592pt;}
.y9e_c00380{bottom:181.124656pt;}
.y9f_c00380{bottom:181.811824pt;}
.ya0_c00380{bottom:182.213680pt;}
.ya1_c00380{bottom:183.264208pt;}
.ya2_c00380{bottom:184.154440pt;}
.ya3_c00380{bottom:184.482952pt;}
.y94_c00380{bottom:195.604368pt;}
.y95_c00380{bottom:196.796688pt;}
.y96_c00380{bottom:198.471488pt;}
.y97_c00380{bottom:199.891701pt;}
.y98_c00380{bottom:200.643056pt;}
.y99_c00380{bottom:201.187040pt;}
.y9a_c00380{bottom:202.160987pt;}
.y9b_c00380{bottom:202.544555pt;}
.y8f_c00380{bottom:203.762667pt;}
.y90_c00380{bottom:205.331339pt;}
.y91_c00380{bottom:206.974715pt;}
.y92_c00380{bottom:207.826699pt;}
.y87_c00380{bottom:209.664820pt;}
.y8e_c00380{bottom:210.480000pt;}
.y93_c00380{bottom:210.685723pt;}
.y88_c00380{bottom:210.899108pt;}
.y89_c00380{bottom:211.966489pt;}
.yef_c00380{bottom:212.160000pt;}
.y8a_c00380{bottom:213.454228pt;}
.y8b_c00380{bottom:214.140789pt;}
.y8c_c00380{bottom:214.731283pt;}
.y8d_c00380{bottom:216.834744pt;}
.y81_c00380{bottom:225.271056pt;}
.y82_c00380{bottom:227.060767pt;}
.y83_c00380{bottom:229.463249pt;}
.y84_c00380{bottom:230.334329pt;}
.y85_c00380{bottom:231.867173pt;}
.y86_c00380{bottom:234.282548pt;}
.y7a_c00380{bottom:240.874319pt;}
.y7b_c00380{bottom:242.298753pt;}
.y7c_c00380{bottom:242.944629pt;}
.y7d_c00380{bottom:244.748703pt;}
.y7e_c00380{bottom:245.179939pt;}
.y7f_c00380{bottom:247.291243pt;}
.y80_c00380{bottom:249.477892pt;}
.y74_c00380{bottom:256.000837pt;}
.y75_c00380{bottom:257.028017pt;}
.y76_c00380{bottom:258.389343pt;}
.y77_c00380{bottom:259.192115pt;}
.y78_c00380{bottom:261.591308pt;}
.y79_c00380{bottom:263.374987pt;}
.y6d_c00380{bottom:272.085456pt;}
.y6e_c00380{bottom:273.782623pt;}
.y6f_c00380{bottom:276.488063pt;}
.y70_c00380{bottom:277.070803pt;}
.y71_c00380{bottom:277.971021pt;}
.y72_c00380{bottom:278.650088pt;}
.y73_c00380{bottom:279.447729pt;}
.y66_c00380{bottom:286.016791pt;}
.y67_c00380{bottom:289.417008pt;}
.y68_c00380{bottom:290.829740pt;}
.y69_c00380{bottom:292.041025pt;}
.y6a_c00380{bottom:292.772721pt;}
.y6b_c00380{bottom:294.598093pt;}
.y6c_c00380{bottom:296.100873pt;}
.y5f_c00380{bottom:301.615300pt;}
.y60_c00380{bottom:302.912237pt;}
.y61_c00380{bottom:304.851405pt;}
.y62_c00380{bottom:305.243451pt;}
.y63_c00380{bottom:307.639237pt;}
.y64_c00380{bottom:308.134299pt;}
.y65_c00380{bottom:310.026609pt;}
.y58_c00380{bottom:314.352093pt;}
.y59_c00380{bottom:314.880791pt;}
.y5a_c00380{bottom:315.938393pt;}
.y5b_c00380{bottom:317.531072pt;}
.y5c_c00380{bottom:320.341632pt;}
.y5d_c00380{bottom:322.524984pt;}
.y5e_c00380{bottom:323.979165pt;}
.y52_c00380{bottom:329.914044pt;}
.y53_c00380{bottom:332.889671pt;}
.y54_c00380{bottom:333.640513pt;}
.y55_c00380{bottom:336.019427pt;}
.y56_c00380{bottom:338.271524pt;}
.y57_c00380{bottom:338.912132pt;}
.y4b_c00380{bottom:346.267325pt;}
.y4c_c00380{bottom:347.542167pt;}
.y4d_c00380{bottom:347.913960pt;}
.y4e_c00380{bottom:349.613669pt;}
.y4f_c00380{bottom:350.234733pt;}
.y50_c00380{bottom:351.733977pt;}
.y51_c00380{bottom:354.186961pt;}
.y43_c00380{bottom:359.446925pt;}
.y44_c00380{bottom:360.018260pt;}
.y45_c00380{bottom:361.387261pt;}
.y46_c00380{bottom:361.815429pt;}
.y47_c00380{bottom:362.439361pt;}
.y48_c00380{bottom:364.519605pt;}
.y49_c00380{bottom:365.036540pt;}
.y4a_c00380{bottom:367.154825pt;}
.y3d_c00380{bottom:374.121515pt;}
.y3e_c00380{bottom:374.972824pt;}
.y3f_c00380{bottom:376.821759pt;}
.y40_c00380{bottom:379.616593pt;}
.y41_c00380{bottom:382.171324pt;}
.y42_c00380{bottom:383.011431pt;}
.y36_c00380{bottom:389.247676pt;}
.y37_c00380{bottom:390.227972pt;}
.y38_c00380{bottom:392.316788pt;}
.y39_c00380{bottom:393.205237pt;}
.y3a_c00380{bottom:394.603105pt;}
.y3b_c00380{bottom:396.904340pt;}
.y3c_c00380{bottom:398.546928pt;}
.y2e_c00380{bottom:404.820133pt;}
.y2f_c00380{bottom:406.222221pt;}
.y30_c00380{bottom:406.578251pt;}
.y31_c00380{bottom:409.422727pt;}
.y32_c00380{bottom:409.838852pt;}
.y33_c00380{bottom:410.497565pt;}
.y34_c00380{bottom:412.642265pt;}
.y35_c00380{bottom:413.371015pt;}
.y27_c00380{bottom:421.180077pt;}
.y28_c00380{bottom:423.402881pt;}
.y29_c00380{bottom:425.664391pt;}
.y2a_c00380{bottom:426.060027pt;}
.y2b_c00380{bottom:427.257053pt;}
.y2c_c00380{bottom:429.203735pt;}
.y2d_c00380{bottom:429.884725pt;}
.y22_c00380{bottom:434.872372pt;}
.y23_c00380{bottom:439.267645pt;}
.y24_c00380{bottom:440.230077pt;}
.y25_c00380{bottom:441.531773pt;}
.y26_c00380{bottom:442.255539pt;}
.y1a_c00380{bottom:449.272417pt;}
.y1b_c00380{bottom:450.866205pt;}
.y1c_c00380{bottom:451.621317pt;}
.y1d_c00380{bottom:453.510261pt;}
.y1e_c00380{bottom:454.145913pt;}
.y1f_c00380{bottom:456.395609pt;}
.y20_c00380{bottom:457.366751pt;}
.y21_c00380{bottom:458.993107pt;}
.y13_c00380{bottom:465.836087pt;}
.y14_c00380{bottom:467.540840pt;}
.y15_c00380{bottom:468.308177pt;}
.y16_c00380{bottom:469.845333pt;}
.y17_c00380{bottom:471.498763pt;}
.y18_c00380{bottom:472.952556pt;}
.y19_c00380{bottom:474.907769pt;}
.ya_c00380{bottom:480.001212pt;}
.yb_c00380{bottom:480.611217pt;}
.yc_c00380{bottom:482.922101pt;}
.yd_c00380{bottom:483.473736pt;}
.ye_c00380{bottom:483.938300pt;}
.yf_c00380{bottom:486.503379pt;}
.y10_c00380{bottom:487.455551pt;}
.y11_c00380{bottom:489.564024pt;}
.y12_c00380{bottom:490.464937pt;}
.y2_c00380{bottom:495.126127pt;}
.y3_c00380{bottom:496.057335pt;}
.y4_c00380{bottom:496.784537pt;}
.y5_c00380{bottom:498.961391pt;}
.y6_c00380{bottom:500.467471pt;}
.y7_c00380{bottom:501.829635pt;}
.y8_c00380{bottom:502.722396pt;}
.y9_c00380{bottom:505.568789pt;}
.y1_c00380{bottom:511.001333pt;}
.hf_c00380{height:19.600000pt;}
.h10_c00380{height:33.613169pt;}
.h15_c00380{height:48.541195pt;}
.h14_c00380{height:49.474680pt;}
.hd_c00380{height:49.484101pt;}
.h7_c00380{height:51.351425pt;}
.h12_c00380{height:52.275133pt;}
.he_c00380{height:52.285087pt;}
.h16_c00380{height:53.208618pt;}
.h4_c00380{height:53.218750pt;}
.h5_c00380{height:54.152412pt;}
.hb_c00380{height:55.086074pt;}
.h9_c00380{height:56.019737pt;}
.h17_c00380{height:56.942556pt;}
.ha_c00380{height:56.953399pt;}
.h6_c00380{height:57.887061pt;}
.h8_c00380{height:58.820723pt;}
.h11_c00380{height:58.823045pt;}
.hc_c00380{height:59.754386pt;}
.h18_c00380{height:59.755102pt;}
.h3_c00380{height:60.688048pt;}
.h13_c00380{height:61.609978pt;}
.h2_c00380{height:70.958333pt;}
.h0_c00380{height:545.040000pt;}
.h1_c00380{height:545.333333pt;}
.w0_c00380{width:319.200000pt;}
.w1_c00380{width:319.333333pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:15.251647pt;}
.x12_c00380{left:16.275400pt;}
.x3d_c00380{left:17.333064pt;}
.x4c_c00380{left:18.397428pt;}
.x56_c00380{left:19.377540pt;}
.x62_c00380{left:20.377640pt;}
.x68_c00380{left:21.604211pt;}
.x76_c00380{left:22.877459pt;}
.x7d_c00380{left:29.137333pt;}
.xa_c00380{left:30.502541pt;}
.x39_c00380{left:32.026220pt;}
.x6b_c00380{left:33.601691pt;}
.x3_c00380{left:37.400996pt;}
.x34_c00380{left:39.513888pt;}
.x2f_c00380{left:42.666551pt;}
.x77_c00380{left:43.845691pt;}
.x6f_c00380{left:44.803384pt;}
.x79_c00380{left:46.085061pt;}
.x4d_c00380{left:47.701981pt;}
.x69_c00380{left:48.837851pt;}
.x60_c00380{left:51.724000pt;}
.x19_c00380{left:53.242937pt;}
.x4_c00380{left:54.707361pt;}
.x63_c00380{left:55.856811pt;}
.x3e_c00380{left:57.091893pt;}
.x50_c00380{left:58.065020pt;}
.x13_c00380{left:61.060453pt;}
.x70_c00380{left:62.546272pt;}
.x29_c00380{left:64.292448pt;}
.x3a_c00380{left:68.975369pt;}
.x1a_c00380{left:70.777575pt;}
.x6c_c00380{left:73.045253pt;}
.x51_c00380{left:75.989999pt;}
.x23_c00380{left:78.096369pt;}
.x14_c00380{left:81.216255pt;}
.xb_c00380{left:85.444069pt;}
.x4e_c00380{left:86.530732pt;}
.x35_c00380{left:88.095251pt;}
.x40_c00380{left:91.099228pt;}
.x64_c00380{left:93.116739pt;}
.x73_c00380{left:95.233003pt;}
.x30_c00380{left:97.575563pt;}
.xc_c00380{left:98.556412pt;}
.x46_c00380{left:102.647223pt;}
.x5_c00380{left:106.483795pt;}
.x43_c00380{left:107.627017pt;}
.xd_c00380{left:109.611107pt;}
.x71_c00380{left:110.872352pt;}
.x65_c00380{left:112.561117pt;}
.x1b_c00380{left:114.662189pt;}
.x44_c00380{left:118.494495pt;}
.x15_c00380{left:121.601187pt;}
.x52_c00380{left:126.018825pt;}
.x57_c00380{left:127.484823pt;}
.x1c_c00380{left:129.414293pt;}
.x1_c00380{left:131.824000pt;}
.x5b_c00380{left:134.030667pt;}
.x53_c00380{left:135.395752pt;}
.x47_c00380{left:137.921913pt;}
.x24_c00380{left:140.839088pt;}
.x6_c00380{left:142.294548pt;}
.x2a_c00380{left:143.187060pt;}
.x74_c00380{left:144.704091pt;}
.x58_c00380{left:147.063839pt;}
.x49_c00380{left:150.855859pt;}
.x25_c00380{left:151.801207pt;}
.x20_c00380{left:153.326148pt;}
.x2b_c00380{left:154.722424pt;}
.x7b_c00380{left:155.851880pt;}
.x31_c00380{left:157.664471pt;}
.x54_c00380{left:159.571679pt;}
.x36_c00380{left:161.545833pt;}
.x59_c00380{left:163.899172pt;}
.x16_c00380{left:165.066659pt;}
.x3b_c00380{left:167.488253pt;}
.x41_c00380{left:169.213687pt;}
.xe_c00380{left:170.616424pt;}
.x2c_c00380{left:172.996664pt;}
.x7_c00380{left:174.698976pt;}
.x4f_c00380{left:177.861289pt;}
.x78_c00380{left:179.605493pt;}
.x1d_c00380{left:181.666419pt;}
.x6a_c00380{left:183.257053pt;}
.x26_c00380{left:185.010253pt;}
.x21_c00380{left:186.647280pt;}
.x3f_c00380{left:187.863548pt;}
.xf_c00380{left:193.245501pt;}
.x8_c00380{left:195.930092pt;}
.x45_c00380{left:198.664871pt;}
.x55_c00380{left:202.080453pt;}
.x17_c00380{left:203.285565pt;}
.x1e_c00380{left:204.223721pt;}
.x22_c00380{left:205.170564pt;}
.x42_c00380{left:207.918181pt;}
.x5d_c00380{left:212.217845pt;}
.x6d_c00380{left:213.797267pt;}
.x4a_c00380{left:216.280316pt;}
.x32_c00380{left:218.142600pt;}
.x7a_c00380{left:222.826176pt;}
.x3c_c00380{left:224.656917pt;}
.x66_c00380{left:225.783112pt;}
.x37_c00380{left:228.690148pt;}
.x2d_c00380{left:232.494591pt;}
.x72_c00380{left:235.560448pt;}
.x61_c00380{left:237.160000pt;}
.x27_c00380{left:239.010436pt;}
.x4b_c00380{left:240.405305pt;}
.x1f_c00380{left:242.011593pt;}
.x10_c00380{left:243.374681pt;}
.x5e_c00380{left:245.810245pt;}
.x5a_c00380{left:248.400000pt;}
.x7c_c00380{left:249.445083pt;}
.x38_c00380{left:250.782801pt;}
.x2e_c00380{left:252.704489pt;}
.x18_c00380{left:254.652819pt;}
.x28_c00380{left:257.917931pt;}
.x5f_c00380{left:259.032539pt;}
.x33_c00380{left:261.322816pt;}
.x9_c00380{left:263.622852pt;}
.x11_c00380{left:264.813728pt;}
.x5c_c00380{left:266.566667pt;}
.x48_c00380{left:269.517553pt;}
.x6e_c00380{left:270.884328pt;}
.x75_c00380{left:273.752429pt;}
.x67_c00380{left:278.087501pt;}
.x7e_c00380{left:279.936000pt;}
.x7f_c00380{left:302.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00381 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00381 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00381 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00381 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00381.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00381{transform:matrix(0.015298,0.000245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.015298,0.000245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.015298,0.000245,-0.003999,0.249968,0,0);}
.m4e_c00381{transform:matrix(0.114213,0.001942,-0.004249,0.249964,0,0);-ms-transform:matrix(0.114213,0.001942,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.114213,0.001942,-0.004249,0.249964,0,0);}
.m52_c00381{transform:matrix(0.119868,0.002038,-0.004249,0.249964,0,0);-ms-transform:matrix(0.119868,0.002038,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.119868,0.002038,-0.004249,0.249964,0,0);}
.m4d_c00381{transform:matrix(0.121332,0.002063,-0.004249,0.249964,0,0);-ms-transform:matrix(0.121332,0.002063,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.121332,0.002063,-0.004249,0.249964,0,0);}
.m50_c00381{transform:matrix(0.122272,0.002079,-0.004249,0.249964,0,0);-ms-transform:matrix(0.122272,0.002079,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.122272,0.002079,-0.004249,0.249964,0,0);}
.m4b_c00381{transform:matrix(0.130921,0.002226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.130921,0.002226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.130921,0.002226,-0.004249,0.249964,0,0);}
.m1_c00381{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m53_c00381{transform:matrix(0.138200,0.002349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.138200,0.002349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.138200,0.002349,-0.004249,0.249964,0,0);}
.m4f_c00381{transform:matrix(0.141810,0.002411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141810,0.002411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141810,0.002411,-0.004249,0.249964,0,0);}
.m4c_c00381{transform:matrix(0.144619,0.002459,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144619,0.002459,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144619,0.002459,-0.004249,0.249964,0,0);}
.me9_c00381{transform:matrix(0.146649,0.002786,-0.004749,0.249955,0,0);-ms-transform:matrix(0.146649,0.002786,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.146649,0.002786,-0.004749,0.249955,0,0);}
.me7_c00381{transform:matrix(0.147588,0.002804,-0.004749,0.249955,0,0);-ms-transform:matrix(0.147588,0.002804,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.147588,0.002804,-0.004749,0.249955,0,0);}
.m5a_c00381{transform:matrix(0.148189,0.002519,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148189,0.002519,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148189,0.002519,-0.004249,0.249964,0,0);}
.m51_c00381{transform:matrix(0.149208,0.002537,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149208,0.002537,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149208,0.002537,-0.004249,0.249964,0,0);}
.m5d_c00381{transform:matrix(0.154548,0.002627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154548,0.002627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154548,0.002627,-0.004249,0.249964,0,0);}
.m68_c00381{transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157907,0.002684,-0.004249,0.249964,0,0);}
.ma1_c00381{transform:matrix(0.157964,0.004581,-0.007247,0.249895,0,0);-ms-transform:matrix(0.157964,0.004581,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.157964,0.004581,-0.007247,0.249895,0,0);}
.m45_c00381{transform:matrix(0.158412,0.002693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158412,0.002693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158412,0.002693,-0.004249,0.249964,0,0);}
.m3f_c00381{transform:matrix(0.159747,0.002716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159747,0.002716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159747,0.002716,-0.004249,0.249964,0,0);}
.mce_c00381{transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161291,0.003065,-0.004749,0.249955,0,0);}
.m3_c00381{transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161615,0.000000,0.000000,0.250000,0,0);}
.m59_c00381{transform:matrix(0.162711,0.002766,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162711,0.002766,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162711,0.002766,-0.004249,0.249964,0,0);}
.mba_c00381{transform:matrix(0.162921,0.003095,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162921,0.003095,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162921,0.003095,-0.004749,0.249955,0,0);}
.mdb_c00381{transform:matrix(0.162946,0.003096,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162946,0.003096,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162946,0.003096,-0.004749,0.249955,0,0);}
.mbc_c00381{transform:matrix(0.163386,0.003104,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163386,0.003104,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163386,0.003104,-0.004749,0.249955,0,0);}
.m77_c00381{transform:matrix(0.163481,0.002779,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163481,0.002779,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163481,0.002779,-0.004249,0.249964,0,0);}
.m16_c00381{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.med_c00381{transform:matrix(0.164945,0.003134,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164945,0.003134,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164945,0.003134,-0.004749,0.249955,0,0);}
.m5f_c00381{transform:matrix(0.165291,0.002810,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165291,0.002810,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165291,0.002810,-0.004249,0.249964,0,0);}
.m38_c00381{transform:matrix(0.165606,0.002815,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165606,0.002815,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165606,0.002815,-0.004249,0.249964,0,0);}
.m7e_c00381{transform:matrix(0.165776,0.002818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165776,0.002818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165776,0.002818,-0.004249,0.249964,0,0);}
.m26_c00381{transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165955,0.000000,0.000000,0.250000,0,0);}
.m5b_c00381{transform:matrix(0.166386,0.002829,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166386,0.002829,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166386,0.002829,-0.004249,0.249964,0,0);}
.mc6_c00381{transform:matrix(0.166420,0.003162,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166420,0.003162,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166420,0.003162,-0.004749,0.249955,0,0);}
.m0_c00381{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.mad_c00381{transform:matrix(0.167665,0.003186,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167665,0.003186,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167665,0.003186,-0.004749,0.249955,0,0);}
.m8b_c00381{transform:matrix(0.167699,0.002683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167699,0.002683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167699,0.002683,-0.003999,0.249968,0,0);}
.m61_c00381{transform:matrix(0.167791,0.002852,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167791,0.002852,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167791,0.002852,-0.004249,0.249964,0,0);}
.m66_c00381{transform:matrix(0.168731,0.002868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168731,0.002868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168731,0.002868,-0.004249,0.249964,0,0);}
.m2a_c00381{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.m3c_c00381{transform:matrix(0.169645,0.002884,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169645,0.002884,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169645,0.002884,-0.004249,0.249964,0,0);}
.m2_c00381{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.me3_c00381{transform:matrix(0.170979,0.003249,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170979,0.003249,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170979,0.003249,-0.004749,0.249955,0,0);}
.m6e_c00381{transform:matrix(0.171290,0.002912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171290,0.002912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171290,0.002912,-0.004249,0.249964,0,0);}
.m42_c00381{transform:matrix(0.172305,0.002929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172305,0.002929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172305,0.002929,-0.004249,0.249964,0,0);}
.m40_c00381{transform:matrix(0.172415,0.002931,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172415,0.002931,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172415,0.002931,-0.004249,0.249964,0,0);}
.m56_c00381{transform:matrix(0.173655,0.002952,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173655,0.002952,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173655,0.002952,-0.004249,0.249964,0,0);}
.m1e_c00381{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.mb7_c00381{transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);}
.mea_c00381{transform:matrix(0.174354,0.003313,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174354,0.003313,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174354,0.003313,-0.004749,0.249955,0,0);}
.mde_c00381{transform:matrix(0.175793,0.003340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175793,0.003340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175793,0.003340,-0.004749,0.249955,0,0);}
.me5_c00381{transform:matrix(0.175898,0.003342,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175898,0.003342,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175898,0.003342,-0.004749,0.249955,0,0);}
.m74_c00381{transform:matrix(0.175975,0.002992,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175975,0.002992,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175975,0.002992,-0.004249,0.249964,0,0);}
.m49_c00381{transform:matrix(0.176045,0.002993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176045,0.002993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176045,0.002993,-0.004249,0.249964,0,0);}
.m58_c00381{transform:matrix(0.176200,0.002995,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176200,0.002995,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176200,0.002995,-0.004249,0.249964,0,0);}
.m8e_c00381{transform:matrix(0.176327,0.002821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176327,0.002821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176327,0.002821,-0.003999,0.249968,0,0);}
.m1a_c00381{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.me8_c00381{transform:matrix(0.177533,0.003373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177533,0.003373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177533,0.003373,-0.004749,0.249955,0,0);}
.me0_c00381{transform:matrix(0.178418,0.003390,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178418,0.003390,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178418,0.003390,-0.004749,0.249955,0,0);}
.m93_c00381{transform:matrix(0.178577,0.002857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178577,0.002857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178577,0.002857,-0.003999,0.249968,0,0);}
.mef_c00381{transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178753,0.003396,-0.004749,0.249955,0,0);}
.mc9_c00381{transform:matrix(0.178783,0.003397,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178783,0.003397,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178783,0.003397,-0.004749,0.249955,0,0);}
.m78_c00381{transform:matrix(0.179689,0.003055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179689,0.003055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179689,0.003055,-0.004249,0.249964,0,0);}
.m89_c00381{transform:matrix(0.179992,0.002880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179992,0.002880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179992,0.002880,-0.003999,0.249968,0,0);}
.maa_c00381{transform:matrix(0.179998,0.003420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179998,0.003420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179998,0.003420,-0.004749,0.249955,0,0);}
.m75_c00381{transform:matrix(0.180059,0.003061,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180059,0.003061,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180059,0.003061,-0.004249,0.249964,0,0);}
.m1f_c00381{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.mdc_c00381{transform:matrix(0.180622,0.003432,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180622,0.003432,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180622,0.003432,-0.004749,0.249955,0,0);}
.mb4_c00381{transform:matrix(0.180717,0.003434,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180717,0.003434,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180717,0.003434,-0.004749,0.249955,0,0);}
.m9f_c00381{transform:matrix(0.180719,0.005241,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180719,0.005241,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180719,0.005241,-0.007247,0.249895,0,0);}
.m79_c00381{transform:matrix(0.181344,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181344,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181344,0.003083,-0.004249,0.249964,0,0);}
.m4_c00381{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.m97_c00381{transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182332,0.002917,-0.003999,0.249968,0,0);}
.ma3_c00381{transform:matrix(0.182573,0.005295,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182573,0.005295,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182573,0.005295,-0.007247,0.249895,0,0);}
.mcc_c00381{transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);}
.m47_c00381{transform:matrix(0.183134,0.003113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183134,0.003113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183134,0.003113,-0.004249,0.249964,0,0);}
.m29_c00381{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);}
.mcd_c00381{transform:matrix(0.184802,0.003511,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184802,0.003511,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184802,0.003511,-0.004749,0.249955,0,0);}
.mc0_c00381{transform:matrix(0.184997,0.003515,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184997,0.003515,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184997,0.003515,-0.004749,0.249955,0,0);}
.m63_c00381{transform:matrix(0.185428,0.003152,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185428,0.003152,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185428,0.003152,-0.004249,0.249964,0,0);}
.m91_c00381{transform:matrix(0.185766,0.002972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185766,0.002972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185766,0.002972,-0.003999,0.249968,0,0);}
.me6_c00381{transform:matrix(0.185806,0.003530,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185806,0.003530,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185806,0.003530,-0.004749,0.249955,0,0);}
.m65_c00381{transform:matrix(0.185813,0.003159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185813,0.003159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185813,0.003159,-0.004249,0.249964,0,0);}
.mf1_c00381{transform:matrix(0.185996,0.003534,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185996,0.003534,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185996,0.003534,-0.004749,0.249955,0,0);}
.m54_c00381{transform:matrix(0.186473,0.003170,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186473,0.003170,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186473,0.003170,-0.004249,0.249964,0,0);}
.mb3_c00381{transform:matrix(0.186546,0.003544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186546,0.003544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186546,0.003544,-0.004749,0.249955,0,0);}
.m83_c00381{transform:matrix(0.186583,0.003172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186583,0.003172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186583,0.003172,-0.004249,0.249964,0,0);}
.m28_c00381{transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);}
.m8d_c00381{transform:matrix(0.187401,0.002998,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187401,0.002998,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187401,0.002998,-0.003999,0.249968,0,0);}
.m67_c00381{transform:matrix(0.189378,0.003219,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189378,0.003219,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189378,0.003219,-0.004249,0.249964,0,0);}
.mb9_c00381{transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189841,0.003607,-0.004749,0.249955,0,0);}
.m5_c00381{transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md8_c00381{transform:matrix(0.190106,0.003612,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190106,0.003612,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190106,0.003612,-0.004749,0.249955,0,0);}
.m37_c00381{transform:matrix(0.190183,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190183,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190183,0.003233,-0.004249,0.249964,0,0);}
.md9_c00381{transform:matrix(0.190571,0.003621,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190571,0.003621,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190571,0.003621,-0.004749,0.249955,0,0);}
.m55_c00381{transform:matrix(0.190702,0.003242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190702,0.003242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190702,0.003242,-0.004249,0.249964,0,0);}
.mc3_c00381{transform:matrix(0.190706,0.003623,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190706,0.003623,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190706,0.003623,-0.004749,0.249955,0,0);}
.m14_c00381{transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190860,0.000000,0.000000,0.250000,0,0);}
.mcf_c00381{transform:matrix(0.191740,0.003643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191740,0.003643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191740,0.003643,-0.004749,0.249955,0,0);}
.mf_c00381{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m8a_c00381{transform:matrix(0.191865,0.003070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191865,0.003070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191865,0.003070,-0.003999,0.249968,0,0);}
.m9b_c00381{transform:matrix(0.191898,0.004030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191898,0.004030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191898,0.004030,-0.005249,0.249945,0,0);}
.m46_c00381{transform:matrix(0.191907,0.003262,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191907,0.003262,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191907,0.003262,-0.004249,0.249964,0,0);}
.m64_c00381{transform:matrix(0.192017,0.003264,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192017,0.003264,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192017,0.003264,-0.004249,0.249964,0,0);}
.mee_c00381{transform:matrix(0.193160,0.003670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193160,0.003670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193160,0.003670,-0.004749,0.249955,0,0);}
.m3d_c00381{transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193527,0.003290,-0.004249,0.249964,0,0);}
.m6c_c00381{transform:matrix(0.193582,0.003291,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193582,0.003291,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193582,0.003291,-0.004249,0.249964,0,0);}
.mb6_c00381{transform:matrix(0.194295,0.003692,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194295,0.003692,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194295,0.003692,-0.004749,0.249955,0,0);}
.md7_c00381{transform:matrix(0.194380,0.003693,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194380,0.003693,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194380,0.003693,-0.004749,0.249955,0,0);}
.mc_c00381{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m87_c00381{transform:matrix(0.194837,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194837,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194837,0.003312,-0.004249,0.249964,0,0);}
.m33_c00381{transform:matrix(0.195712,0.003327,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195712,0.003327,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195712,0.003327,-0.004249,0.249964,0,0);}
.m82_c00381{transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);}
.m9_c00381{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.ma5_c00381{transform:matrix(0.197327,0.005722,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197327,0.005722,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197327,0.005722,-0.007247,0.249895,0,0);}
.m7f_c00381{transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197526,0.003358,-0.004249,0.249964,0,0);}
.m5c_c00381{transform:matrix(0.197841,0.003363,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197841,0.003363,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197841,0.003363,-0.004249,0.249964,0,0);}
.m17_c00381{transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);}
.mb8_c00381{transform:matrix(0.198409,0.003770,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198409,0.003770,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198409,0.003770,-0.004749,0.249955,0,0);}
.m25_c00381{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00381{transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198959,0.003780,-0.004749,0.249955,0,0);}
.m1b_c00381{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m69_c00381{transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);}
.m44_c00381{transform:matrix(0.199431,0.003390,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199431,0.003390,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199431,0.003390,-0.004249,0.249964,0,0);}
.m6a_c00381{transform:matrix(0.199701,0.003395,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199701,0.003395,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199701,0.003395,-0.004249,0.249964,0,0);}
.mda_c00381{transform:matrix(0.200319,0.003806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200319,0.003806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200319,0.003806,-0.004749,0.249955,0,0);}
.m76_c00381{transform:matrix(0.200646,0.003411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200646,0.003411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200646,0.003411,-0.004249,0.249964,0,0);}
.m3a_c00381{transform:matrix(0.200826,0.003414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200826,0.003414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200826,0.003414,-0.004249,0.249964,0,0);}
.m99_c00381{transform:matrix(0.201126,0.004224,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201126,0.004224,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201126,0.004224,-0.005249,0.249945,0,0);}
.m2b_c00381{transform:matrix(0.201300,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201300,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201300,0.002818,-0.003500,0.249976,0,0);}
.m36_c00381{transform:matrix(0.201321,0.003422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201321,0.003422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201321,0.003422,-0.004249,0.249964,0,0);}
.mb_c00381{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.201711,0.003429,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201711,0.003429,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201711,0.003429,-0.004249,0.249964,0,0);}
.me1_c00381{transform:matrix(0.201944,0.003837,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201944,0.003837,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201944,0.003837,-0.004749,0.249955,0,0);}
.m11_c00381{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202366,0.003440,-0.004249,0.249964,0,0);}
.m57_c00381{transform:matrix(0.203111,0.003453,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203111,0.003453,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203111,0.003453,-0.004249,0.249964,0,0);}
.m7c_c00381{transform:matrix(0.203686,0.003463,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203686,0.003463,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203686,0.003463,-0.004249,0.249964,0,0);}
.m3b_c00381{transform:matrix(0.203886,0.003466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203886,0.003466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203886,0.003466,-0.004249,0.249964,0,0);}
.mc1_c00381{transform:matrix(0.204503,0.003886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204503,0.003886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204503,0.003886,-0.004749,0.249955,0,0);}
.m95_c00381{transform:matrix(0.204859,0.003278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204859,0.003278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204859,0.003278,-0.003999,0.249968,0,0);}
.m7b_c00381{transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205590,0.003495,-0.004249,0.249964,0,0);}
.m2d_c00381{transform:matrix(0.206315,0.002888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206315,0.002888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206315,0.002888,-0.003500,0.249976,0,0);}
.m86_c00381{transform:matrix(0.206345,0.003508,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206345,0.003508,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206345,0.003508,-0.004249,0.249964,0,0);}
.m13_c00381{transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00381{transform:matrix(0.206558,0.003925,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206558,0.003925,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206558,0.003925,-0.004749,0.249955,0,0);}
.m20_c00381{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.mbd_c00381{transform:matrix(0.206943,0.003932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206943,0.003932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206943,0.003932,-0.004749,0.249955,0,0);}
.md_c00381{transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);}
.me2_c00381{transform:matrix(0.207927,0.003951,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207927,0.003951,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207927,0.003951,-0.004749,0.249955,0,0);}
.mcb_c00381{transform:matrix(0.208172,0.003955,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208172,0.003955,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208172,0.003955,-0.004749,0.249955,0,0);}
.ma9_c00381{transform:matrix(0.208762,0.003966,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208762,0.003966,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208762,0.003966,-0.004749,0.249955,0,0);}
.m3e_c00381{transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208955,0.003552,-0.004249,0.249964,0,0);}
.m34_c00381{transform:matrix(0.208980,0.003553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208980,0.003553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208980,0.003553,-0.004249,0.249964,0,0);}
.ma2_c00381{transform:matrix(0.209032,0.006062,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209032,0.006062,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209032,0.006062,-0.007247,0.249895,0,0);}
.mae_c00381{transform:matrix(0.210567,0.004001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210567,0.004001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210567,0.004001,-0.004749,0.249955,0,0);}
.m6b_c00381{transform:matrix(0.210880,0.003585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210880,0.003585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210880,0.003585,-0.004249,0.249964,0,0);}
.m85_c00381{transform:matrix(0.210935,0.003586,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210935,0.003586,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210935,0.003586,-0.004249,0.249964,0,0);}
.m60_c00381{transform:matrix(0.210990,0.003587,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210990,0.003587,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210990,0.003587,-0.004249,0.249964,0,0);}
.m7a_c00381{transform:matrix(0.211124,0.003589,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211124,0.003589,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211124,0.003589,-0.004249,0.249964,0,0);}
.mb5_c00381{transform:matrix(0.211457,0.004018,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211457,0.004018,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211457,0.004018,-0.004749,0.249955,0,0);}
.m8_c00381{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m48_c00381{transform:matrix(0.212159,0.003607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212159,0.003607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212159,0.003607,-0.004249,0.249964,0,0);}
.m62_c00381{transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212234,0.003608,-0.004249,0.249964,0,0);}
.mc4_c00381{transform:matrix(0.212432,0.004036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212432,0.004036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212432,0.004036,-0.004749,0.249955,0,0);}
.m32_c00381{transform:matrix(0.212609,0.002977,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212609,0.002977,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212609,0.002977,-0.003500,0.249976,0,0);}
.ma0_c00381{transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);}
.mac_c00381{transform:matrix(0.213007,0.004047,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213007,0.004047,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213007,0.004047,-0.004749,0.249955,0,0);}
.ma_c00381{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m84_c00381{transform:matrix(0.213819,0.003635,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213819,0.003635,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213819,0.003635,-0.004249,0.249964,0,0);}
.m1d_c00381{transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);}
.m39_c00381{transform:matrix(0.214399,0.003645,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214399,0.003645,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214399,0.003645,-0.004249,0.249964,0,0);}
.mc7_c00381{transform:matrix(0.214486,0.004075,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214486,0.004075,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214486,0.004075,-0.004749,0.249955,0,0);}
.m80_c00381{transform:matrix(0.214689,0.003650,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214689,0.003650,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214689,0.003650,-0.004249,0.249964,0,0);}
.mb1_c00381{transform:matrix(0.214781,0.004081,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214781,0.004081,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214781,0.004081,-0.004749,0.249955,0,0);}
.m2e_c00381{transform:matrix(0.214914,0.003009,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214914,0.003009,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214914,0.003009,-0.003500,0.249976,0,0);}
.mc8_c00381{transform:matrix(0.214971,0.004084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214971,0.004084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214971,0.004084,-0.004749,0.249955,0,0);}
.m94_c00381{transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);}
.m6f_c00381{transform:matrix(0.215574,0.003665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215574,0.003665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215574,0.003665,-0.004249,0.249964,0,0);}
.m9a_c00381{transform:matrix(0.216532,0.004547,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216532,0.004547,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216532,0.004547,-0.005249,0.249945,0,0);}
.m7d_c00381{transform:matrix(0.217299,0.003694,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217299,0.003694,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217299,0.003694,-0.004249,0.249964,0,0);}
.m10_c00381{transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217340,0.000000,0.000000,0.250000,0,0);}
.m9d_c00381{transform:matrix(0.217442,0.004566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217442,0.004566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217442,0.004566,-0.005249,0.249945,0,0);}
.m88_c00381{transform:matrix(0.218023,0.003706,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218023,0.003706,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218023,0.003706,-0.004249,0.249964,0,0);}
.m19_c00381{transform:matrix(0.218785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218785,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{transform:matrix(0.218789,0.003063,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218789,0.003063,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218789,0.003063,-0.003500,0.249976,0,0);}
.mb0_c00381{transform:matrix(0.219030,0.004162,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219030,0.004162,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219030,0.004162,-0.004749,0.249955,0,0);}
.ma4_c00381{transform:matrix(0.219173,0.006356,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219173,0.006356,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219173,0.006356,-0.007247,0.249895,0,0);}
.m9e_c00381{transform:matrix(0.219292,0.004605,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219292,0.004605,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219292,0.004605,-0.005249,0.249945,0,0);}
.mf0_c00381{transform:matrix(0.219375,0.004168,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219375,0.004168,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219375,0.004168,-0.004749,0.249955,0,0);}
.m8c_c00381{transform:matrix(0.219992,0.003520,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219992,0.003520,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219992,0.003520,-0.003999,0.249968,0,0);}
.m98_c00381{transform:matrix(0.220442,0.003527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220442,0.003527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220442,0.003527,-0.003999,0.249968,0,0);}
.mb2_c00381{transform:matrix(0.220480,0.004189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220480,0.004189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220480,0.004189,-0.004749,0.249955,0,0);}
.me_c00381{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.mbe_c00381{transform:matrix(0.221665,0.004212,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221665,0.004212,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221665,0.004212,-0.004749,0.249955,0,0);}
.m81_c00381{transform:matrix(0.221818,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221818,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221818,0.003771,-0.004249,0.249964,0,0);}
.m31_c00381{transform:matrix(0.222243,0.003111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222243,0.003111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222243,0.003111,-0.003500,0.249976,0,0);}
.md6_c00381{transform:matrix(0.223120,0.004239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223120,0.004239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223120,0.004239,-0.004749,0.249955,0,0);}
.m43_c00381{transform:matrix(0.223348,0.003797,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223348,0.003797,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223348,0.003797,-0.004249,0.249964,0,0);}
.m6d_c00381{transform:matrix(0.223408,0.003798,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223408,0.003798,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223408,0.003798,-0.004249,0.249964,0,0);}
.mab_c00381{transform:matrix(0.223665,0.004250,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223665,0.004250,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223665,0.004250,-0.004749,0.249955,0,0);}
.m7_c00381{transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223715,0.000000,0.000000,0.250000,0,0);}
.mbb_c00381{transform:matrix(0.223745,0.004251,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223745,0.004251,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223745,0.004251,-0.004749,0.249955,0,0);}
.meb_c00381{transform:matrix(0.224779,0.004271,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224779,0.004271,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224779,0.004271,-0.004749,0.249955,0,0);}
.me4_c00381{transform:matrix(0.225779,0.004290,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225779,0.004290,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225779,0.004290,-0.004749,0.249955,0,0);}
.m92_c00381{transform:matrix(0.225796,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225796,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225796,0.003613,-0.003999,0.249968,0,0);}
.mca_c00381{transform:matrix(0.226439,0.004302,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226439,0.004302,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226439,0.004302,-0.004749,0.249955,0,0);}
.m71_c00381{transform:matrix(0.226977,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226977,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226977,0.003859,-0.004249,0.249964,0,0);}
.m96_c00381{transform:matrix(0.232660,0.003723,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232660,0.003723,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232660,0.003723,-0.003999,0.249968,0,0);}
.m2f_c00381{transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);}
.m4a_c00381{transform:matrix(0.233671,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233671,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233671,0.003972,-0.004249,0.249964,0,0);}
.m21_c00381{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m5e_c00381{transform:matrix(0.236296,0.004017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236296,0.004017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236296,0.004017,-0.004249,0.249964,0,0);}
.m2c_c00381{transform:matrix(0.237727,0.003328,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237727,0.003328,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237727,0.003328,-0.003500,0.249976,0,0);}
.mbf_c00381{transform:matrix(0.248830,0.004728,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248830,0.004728,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248830,0.004728,-0.004749,0.249955,0,0);}
.m12_c00381{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.ma8_c00381{transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);}
.m24_c00381{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00381{transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);}
.m73_c00381{transform:matrix(0.258753,0.004399,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258753,0.004399,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258753,0.004399,-0.004249,0.249964,0,0);}
.m9c_c00381{transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);}
.m70_c00381{transform:matrix(0.262982,0.004471,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262982,0.004471,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262982,0.004471,-0.004249,0.249964,0,0);}
.mc2_c00381{transform:matrix(0.264807,0.005031,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264807,0.005031,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264807,0.005031,-0.004749,0.249955,0,0);}
.m72_c00381{transform:matrix(0.269361,0.004579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269361,0.004579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269361,0.004579,-0.004249,0.249964,0,0);}
.ma6_c00381{transform:matrix(0.272196,0.007894,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272196,0.007894,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272196,0.007894,-0.007247,0.249895,0,0);}
.m8f_c00381{transform:matrix(0.275135,0.004402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275135,0.004402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275135,0.004402,-0.003999,0.249968,0,0);}
.mc5_c00381{transform:matrix(0.278520,0.005292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278520,0.005292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278520,0.005292,-0.004749,0.249955,0,0);}
.md2_c00381{transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);}
.m22_c00381{transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);}
.md5_c00381{transform:matrix(0.291962,0.005547,-0.004749,0.249955,0,0);-ms-transform:matrix(0.291962,0.005547,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.291962,0.005547,-0.004749,0.249955,0,0);}
.maf_c00381{transform:matrix(0.302740,0.005752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.302740,0.005752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.302740,0.005752,-0.004749,0.249955,0,0);}
.m15_c00381{transform:matrix(0.320395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320395,0.000000,0.000000,0.250000,0,0);}
.md0_c00381{transform:matrix(0.334415,0.006354,-0.004749,0.249955,0,0);-ms-transform:matrix(0.334415,0.006354,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.334415,0.006354,-0.004749,0.249955,0,0);}
.mec_c00381{transform:matrix(0.334770,0.006361,-0.004749,0.249955,0,0);-ms-transform:matrix(0.334770,0.006361,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.334770,0.006361,-0.004749,0.249955,0,0);}
.md1_c00381{transform:matrix(0.335624,0.006377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.335624,0.006377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.335624,0.006377,-0.004749,0.249955,0,0);}
.md3_c00381{transform:matrix(0.345198,0.006559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.345198,0.006559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.345198,0.006559,-0.004749,0.249955,0,0);}
.md4_c00381{transform:matrix(0.352076,0.006689,-0.004749,0.249955,0,0);-ms-transform:matrix(0.352076,0.006689,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.352076,0.006689,-0.004749,0.249955,0,0);}
.m23_c00381{transform:matrix(0.357785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357785,0.000000,0.000000,0.250000,0,0);}
.ma7_c00381{transform:matrix(0.430179,0.012475,-0.007247,0.249895,0,0);-ms-transform:matrix(0.430179,0.012475,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.430179,0.012475,-0.007247,0.249895,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:0.000000px;}
.fc0_c00381{color:transparent;}
.fs17_c00381{font-size:38.857012px;}
.fs5_c00381{font-size:55.655453px;}
.fs10_c00381{font-size:55.662269px;}
.fs2_c00381{font-size:57.750000px;}
.fsf_c00381{font-size:57.757392px;}
.fsd_c00381{font-size:58.808496px;}
.fs16_c00381{font-size:58.810612px;}
.fs11_c00381{font-size:58.824720px;}
.fs3_c00381{font-size:59.850000px;}
.fs6_c00381{font-size:59.858648px;}
.fs12_c00381{font-size:59.860802px;}
.fs13_c00381{font-size:60.910991px;}
.fsc_c00381{font-size:61.958951px;}
.fs15_c00381{font-size:63.011370px;}
.fs7_c00381{font-size:64.059255px;}
.fs4_c00381{font-size:65.100000px;}
.fs8_c00381{font-size:65.109406px;}
.fs18_c00381{font-size:65.111749px;}
.fsa_c00381{font-size:66.159558px;}
.fs1_c00381{font-size:67.200000px;}
.fse_c00381{font-size:67.208601px;}
.fsb_c00381{font-size:67.209710px;}
.fs14_c00381{font-size:67.212129px;}
.fs19_c00381{font-size:71.412887px;}
.fs0_c00381{font-size:74.550000px;}
.fs9_c00381{font-size:90.313047px;}
.y0_c00381{bottom:0.000000px;}
.yf3_c00381{bottom:30.399345px;}
.yf2_c00381{bottom:31.245113px;}
.yf1_c00381{bottom:31.633826px;}
.yf0_c00381{bottom:33.206975px;}
.yef_c00381{bottom:33.453426px;}
.yee_c00381{bottom:46.656288px;}
.yed_c00381{bottom:47.348220px;}
.yec_c00381{bottom:48.129155px;}
.yeb_c00381{bottom:48.431622px;}
.yea_c00381{bottom:48.751563px;}
.ye9_c00381{bottom:49.348212px;}
.ye8_c00381{bottom:50.526886px;}
.ye7_c00381{bottom:51.004727px;}
.ye0_c00381{bottom:63.816434px;}
.ye2_c00381{bottom:63.816504px;}
.ye4_c00381{bottom:63.816579px;}
.ye6_c00381{bottom:63.816986px;}
.ye1_c00381{bottom:63.816993px;}
.ye5_c00381{bottom:63.817053px;}
.ye3_c00381{bottom:63.817220px;}
.ydf_c00381{bottom:83.544789px;}
.ydd_c00381{bottom:83.544951px;}
.ydc_c00381{bottom:83.545257px;}
.yde_c00381{bottom:83.545274px;}
.ydb_c00381{bottom:83.545446px;}
.yda_c00381{bottom:83.546020px;}
.yd8_c00381{bottom:83.546188px;}
.yd9_c00381{bottom:83.546754px;}
.yd6_c00381{bottom:100.985124px;}
.yd4_c00381{bottom:100.985142px;}
.yd7_c00381{bottom:100.985505px;}
.yd5_c00381{bottom:100.985761px;}
.yd3_c00381{bottom:100.985834px;}
.yd2_c00381{bottom:100.985995px;}
.yd1_c00381{bottom:114.639964px;}
.yd0_c00381{bottom:114.915261px;}
.ycf_c00381{bottom:115.727898px;}
.yce_c00381{bottom:116.000202px;}
.ycd_c00381{bottom:116.324810px;}
.ycc_c00381{bottom:117.556145px;}
.ycb_c00381{bottom:117.832649px;}
.yca_c00381{bottom:118.280544px;}
.yc9_c00381{bottom:119.058900px;}
.yc4_c00381{bottom:132.332600px;}
.yc5_c00381{bottom:132.333036px;}
.yc3_c00381{bottom:132.333083px;}
.yc6_c00381{bottom:132.333567px;}
.yc2_c00381{bottom:132.333725px;}
.yc7_c00381{bottom:132.333764px;}
.yc8_c00381{bottom:132.334211px;}
.ybf_c00381{bottom:149.300950px;}
.yc0_c00381{bottom:149.301003px;}
.yc1_c00381{bottom:149.301381px;}
.ybe_c00381{bottom:149.301585px;}
.ybd_c00381{bottom:149.301888px;}
.ybc_c00381{bottom:149.302433px;}
.ybb_c00381{bottom:149.302827px;}
.yba_c00381{bottom:149.302991px;}
.yb9_c00381{bottom:166.847971px;}
.yb8_c00381{bottom:167.781660px;}
.yb7_c00381{bottom:168.992596px;}
.yb6_c00381{bottom:169.652600px;}
.yb5_c00381{bottom:170.044646px;}
.yb4_c00381{bottom:170.331869px;}
.yb3_c00381{bottom:171.158710px;}
.yb2_c00381{bottom:172.261661px;}
.yb1_c00381{bottom:181.911207px;}
.yb0_c00381{bottom:183.213600px;}
.yaf_c00381{bottom:183.591596px;}
.yae_c00381{bottom:184.003876px;}
.yad_c00381{bottom:185.291963px;}
.yac_c00381{bottom:185.815707px;}
.yab_c00381{bottom:186.277720px;}
.yaa_c00381{bottom:187.386000px;}
.ya9_c00381{bottom:199.515285px;}
.ya8_c00381{bottom:200.898585px;}
.ya7_c00381{bottom:201.658704px;}
.ya6_c00381{bottom:203.333845px;}
.ya5_c00381{bottom:203.921530px;}
.ya4_c00381{bottom:205.519546px;}
.ya3_c00381{bottom:206.080783px;}
.ya2_c00381{bottom:207.315009px;}
.ya1_c00381{bottom:207.906000px;}
.ya0_c00381{bottom:218.542628px;}
.y9f_c00381{bottom:219.522592px;}
.y9e_c00381{bottom:220.735941px;}
.y9d_c00381{bottom:222.494429px;}
.y9c_c00381{bottom:223.526841px;}
.y9b_c00381{bottom:224.106000px;}
.y9a_c00381{bottom:235.798968px;}
.y99_c00381{bottom:236.105100px;}
.y98_c00381{bottom:237.103032px;}
.y97_c00381{bottom:237.764748px;}
.y96_c00381{bottom:238.137660px;}
.y95_c00381{bottom:238.456764px;}
.y94_c00381{bottom:238.641420px;}
.y93_c00381{bottom:239.220528px;}
.y92_c00381{bottom:250.838736px;}
.y91_c00381{bottom:251.964912px;}
.y90_c00381{bottom:252.604200px;}
.y8f_c00381{bottom:253.104072px;}
.y8e_c00381{bottom:253.887624px;}
.y8d_c00381{bottom:254.332728px;}
.y8c_c00381{bottom:255.097752px;}
.y8b_c00381{bottom:255.693000px;}
.y8a_c00381{bottom:269.133402px;}
.y89_c00381{bottom:269.341186px;}
.y88_c00381{bottom:269.716893px;}
.y87_c00381{bottom:270.411136px;}
.y86_c00381{bottom:271.193462px;}
.y85_c00381{bottom:271.421592px;}
.y84_c00381{bottom:272.140823px;}
.y83_c00381{bottom:272.411957px;}
.y82_c00381{bottom:286.763382px;}
.y81_c00381{bottom:287.687091px;}
.y80_c00381{bottom:288.214071px;}
.y7f_c00381{bottom:288.813459px;}
.y7e_c00381{bottom:290.094409px;}
.y7d_c00381{bottom:290.393374px;}
.y7c_c00381{bottom:291.046092px;}
.y7b_c00381{bottom:303.479602px;}
.y7a_c00381{bottom:304.078558px;}
.y79_c00381{bottom:304.285849px;}
.y78_c00381{bottom:304.720455px;}
.y77_c00381{bottom:305.179572px;}
.y76_c00381{bottom:305.384109px;}
.y75_c00381{bottom:305.656562px;}
.y74_c00381{bottom:306.291564px;}
.y73_c00381{bottom:306.485122px;}
.y72_c00381{bottom:306.975309px;}
.y71_c00381{bottom:320.827927px;}
.y70_c00381{bottom:321.155881px;}
.y6f_c00381{bottom:322.653406px;}
.y6e_c00381{bottom:323.454262px;}
.y6d_c00381{bottom:324.449569px;}
.y6c_c00381{bottom:325.608919px;}
.y6b_c00381{bottom:337.591678px;}
.y6a_c00381{bottom:338.060739px;}
.y69_c00381{bottom:339.093478px;}
.y68_c00381{bottom:339.401526px;}
.y67_c00381{bottom:340.481679px;}
.y66_c00381{bottom:341.540382px;}
.y65_c00381{bottom:354.412200px;}
.y64_c00381{bottom:354.728041px;}
.y63_c00381{bottom:355.391536px;}
.y62_c00381{bottom:356.083274px;}
.y61_c00381{bottom:356.376232px;}
.y60_c00381{bottom:357.181948px;}
.y5f_c00381{bottom:357.516771px;}
.y5e_c00381{bottom:358.550394px;}
.y5d_c00381{bottom:371.618029px;}
.y5c_c00381{bottom:372.085755px;}
.y5b_c00381{bottom:373.100896px;}
.y5a_c00381{bottom:374.081265px;}
.y59_c00381{bottom:374.816298px;}
.y58_c00381{bottom:375.775765px;}
.y57_c00381{bottom:376.217107px;}
.y56_c00381{bottom:376.914210px;}
.y55_c00381{bottom:388.989598px;}
.y54_c00381{bottom:388.989667px;}
.y52_c00381{bottom:388.989687px;}
.y53_c00381{bottom:388.990295px;}
.y51_c00381{bottom:388.990356px;}
.y4d_c00381{bottom:388.990530px;}
.y4e_c00381{bottom:388.990713px;}
.y4f_c00381{bottom:388.990828px;}
.y50_c00381{bottom:388.991029px;}
.y46_c00381{bottom:405.701761px;}
.y48_c00381{bottom:405.702373px;}
.y47_c00381{bottom:405.702382px;}
.y45_c00381{bottom:405.702439px;}
.y4a_c00381{bottom:405.702873px;}
.y49_c00381{bottom:405.702976px;}
.y4b_c00381{bottom:405.703296px;}
.y4c_c00381{bottom:405.703643px;}
.y44_c00381{bottom:423.125554px;}
.y43_c00381{bottom:423.843004px;}
.y42_c00381{bottom:424.717470px;}
.y41_c00381{bottom:424.956882px;}
.y40_c00381{bottom:425.514333px;}
.y3f_c00381{bottom:426.179944px;}
.y3e_c00381{bottom:426.495378px;}
.y3d_c00381{bottom:426.699025px;}
.y3c_c00381{bottom:427.141116px;}
.y3b_c00381{bottom:438.581266px;}
.y3a_c00381{bottom:438.882370px;}
.y39_c00381{bottom:440.095354px;}
.y38_c00381{bottom:440.775133px;}
.y37_c00381{bottom:441.366147px;}
.y36_c00381{bottom:441.830068px;}
.y35_c00381{bottom:442.804500px;}
.y34_c00381{bottom:458.971710px;}
.y33_c00381{bottom:459.439905px;}
.y32_c00381{bottom:460.109427px;}
.y31_c00381{bottom:460.543392px;}
.y30_c00381{bottom:461.270139px;}
.y2f_c00381{bottom:462.128640px;}
.y2e_c00381{bottom:462.522096px;}
.y2d_c00381{bottom:462.783000px;}
.y2c_c00381{bottom:472.888500px;}
.y2b_c00381{bottom:473.529000px;}
.y2a_c00381{bottom:475.279500px;}
.y29_c00381{bottom:476.484000px;}
.y28_c00381{bottom:477.007500px;}
.y27_c00381{bottom:478.242000px;}
.y26_c00381{bottom:478.614000px;}
.y25_c00381{bottom:479.796000px;}
.y24_c00381{bottom:489.081000px;}
.y23_c00381{bottom:489.925500px;}
.y22_c00381{bottom:491.973000px;}
.y21_c00381{bottom:492.519000px;}
.y20_c00381{bottom:493.546500px;}
.y1f_c00381{bottom:494.232000px;}
.y1e_c00381{bottom:496.266000px;}
.y1d_c00381{bottom:504.456000px;}
.y1c_c00381{bottom:508.005000px;}
.y1b_c00381{bottom:508.842000px;}
.y1a_c00381{bottom:510.150000px;}
.y19_c00381{bottom:510.675000px;}
.y18_c00381{bottom:512.467500px;}
.y17_c00381{bottom:522.273000px;}
.y16_c00381{bottom:522.748500px;}
.y15_c00381{bottom:524.527500px;}
.y14_c00381{bottom:525.555000px;}
.y13_c00381{bottom:527.881500px;}
.y12_c00381{bottom:528.463500px;}
.y11_c00381{bottom:529.746000px;}
.y10_c00381{bottom:540.259500px;}
.yf_c00381{bottom:540.769500px;}
.ye_c00381{bottom:542.082000px;}
.yd_c00381{bottom:542.557500px;}
.yc_c00381{bottom:543.643500px;}
.yb_c00381{bottom:544.744500px;}
.ya_c00381{bottom:545.308500px;}
.y9_c00381{bottom:546.484500px;}
.y8_c00381{bottom:557.611500px;}
.y7_c00381{bottom:558.658500px;}
.y6_c00381{bottom:559.720500px;}
.y5_c00381{bottom:560.895000px;}
.y4_c00381{bottom:561.484500px;}
.y3_c00381{bottom:562.867500px;}
.y2_c00381{bottom:563.223000px;}
.y1_c00381{bottom:572.806500px;}
.h19_c00381{height:38.857012px;}
.h7_c00381{height:55.655453px;}
.h12_c00381{height:55.662269px;}
.h4_c00381{height:57.750000px;}
.h11_c00381{height:57.757392px;}
.hf_c00381{height:58.808496px;}
.h18_c00381{height:58.810612px;}
.h13_c00381{height:58.824720px;}
.h5_c00381{height:59.850000px;}
.h8_c00381{height:59.858648px;}
.h14_c00381{height:59.860802px;}
.h15_c00381{height:60.910991px;}
.he_c00381{height:61.958951px;}
.h17_c00381{height:63.011370px;}
.h9_c00381{height:64.059255px;}
.h6_c00381{height:65.100000px;}
.ha_c00381{height:65.109406px;}
.h1a_c00381{height:65.111749px;}
.hc_c00381{height:66.159558px;}
.h3_c00381{height:67.200000px;}
.h10_c00381{height:67.208601px;}
.hd_c00381{height:67.209710px;}
.h16_c00381{height:67.212129px;}
.h1b_c00381{height:71.412887px;}
.h2_c00381{height:74.550000px;}
.hb_c00381{height:90.313047px;}
.h0_c00381{height:613.170000px;}
.h1_c00381{height:613.500000px;}
.w0_c00381{width:359.100000px;}
.w1_c00381{width:359.250000px;}
.x0_c00381{left:0.000000px;}
.x4a_c00381{left:37.636859px;}
.x76_c00381{left:43.468173px;}
.x5e_c00381{left:44.884788px;}
.x43_c00381{left:45.957699px;}
.x10_c00381{left:47.478000px;}
.x2_c00381{left:48.723000px;}
.x7f_c00381{left:58.423470px;}
.x3_c00381{left:65.635500px;}
.x56_c00381{left:66.787766px;}
.x19_c00381{left:68.013000px;}
.x77_c00381{left:71.553819px;}
.x61_c00381{left:72.948000px;}
.x7e_c00381{left:75.210487px;}
.x29_c00381{left:76.758377px;}
.x4b_c00381{left:78.474827px;}
.x3b_c00381{left:83.456367px;}
.x2f_c00381{left:85.596080px;}
.x52_c00381{left:86.747736px;}
.x2a_c00381{left:90.326336px;}
.x70_c00381{left:93.311374px;}
.x11_c00381{left:94.971000px;}
.x5f_c00381{left:99.465540px;}
.x9_c00381{left:101.527500px;}
.x68_c00381{left:102.915663px;}
.x25_c00381{left:104.344500px;}
.x30_c00381{left:106.389098px;}
.x63_c00381{left:108.373500px;}
.x17_c00381{left:109.797000px;}
.x2b_c00381{left:111.352550px;}
.x72_c00381{left:112.869451px;}
.x3f_c00381{left:115.432292px;}
.x12_c00381{left:116.541000px;}
.x57_c00381{left:122.158040px;}
.x35_c00381{left:123.672077px;}
.x73_c00381{left:124.752226px;}
.xa_c00381{left:127.177500px;}
.x31_c00381{left:129.072651px;}
.x4_c00381{left:131.497500px;}
.x40_c00381{left:137.775557px;}
.x58_c00381{left:139.725738px;}
.x36_c00381{left:141.224151px;}
.x1a_c00381{left:143.346000px;}
.x78_c00381{left:145.276909px;}
.x69_c00381{left:146.433663px;}
.x4c_c00381{left:147.513692px;}
.x60_c00381{left:148.905624px;}
.x7d_c00381{left:154.458997px;}
.x21_c00381{left:155.685000px;}
.x3c_c00381{left:157.207368px;}
.x5c_c00381{left:158.580000px;}
.x5_c00381{left:159.582000px;}
.x6a_c00381{left:161.550663px;}
.x26_c00381{left:166.399500px;}
.x79_c00381{left:167.420389px;}
.x1b_c00381{left:168.751500px;}
.x4d_c00381{left:170.248130px;}
.x18_c00381{left:173.010000px;}
.x37_c00381{left:174.979392px;}
.xb_c00381{left:177.198000px;}
.x44_c00381{left:179.627969px;}
.x1_c00381{left:180.630000px;}
.x64_c00381{left:182.830500px;}
.x53_c00381{left:185.420894px;}
.x4e_c00381{left:187.310583px;}
.x38_c00381{left:190.640906px;}
.x2c_c00381{left:192.917829px;}
.x32_c00381{left:195.232776px;}
.x45_c00381{left:198.895800px;}
.x59_c00381{left:199.954844px;}
.x48_c00381{left:201.533162px;}
.x13_c00381{left:202.710000px;}
.x1c_c00381{left:206.808000px;}
.x2d_c00381{left:208.854365px;}
.x41_c00381{left:211.053056px;}
.x7a_c00381{left:213.868147px;}
.x6_c00381{left:215.487000px;}
.x6b_c00381{left:216.921663px;}
.x6c_c00381{left:220.082798px;}
.x33_c00381{left:222.776232px;}
.x74_c00381{left:225.210479px;}
.xc_c00381{left:226.536000px;}
.x1f_c00381{left:228.159000px;}
.x80_c00381{left:233.913974px;}
.x71_c00381{left:235.837497px;}
.x22_c00381{left:238.593000px;}
.x14_c00381{left:240.781500px;}
.x66_c00381{left:244.788000px;}
.x6e_c00381{left:246.816681px;}
.xd_c00381{left:248.137500px;}
.x7b_c00381{left:250.055200px;}
.x5a_c00381{left:253.413990px;}
.x54_c00381{left:255.826092px;}
.x42_c00381{left:257.215637px;}
.x6d_c00381{left:258.699234px;}
.x65_c00381{left:260.859000px;}
.x4f_c00381{left:261.859433px;}
.x46_c00381{left:263.440397px;}
.x67_c00381{left:264.682500px;}
.x7_c00381{left:266.034000px;}
.x2e_c00381{left:267.177854px;}
.x75_c00381{left:274.629319px;}
.x27_c00381{left:277.738500px;}
.x50_c00381{left:279.083886px;}
.x49_c00381{left:280.355484px;}
.x5b_c00381{left:282.310454px;}
.x23_c00381{left:286.416000px;}
.x34_c00381{left:289.476510px;}
.x47_c00381{left:292.797407px;}
.x7c_c00381{left:294.343689px;}
.x28_c00381{left:295.450500px;}
.x20_c00381{left:298.180500px;}
.x3d_c00381{left:300.881472px;}
.x1d_c00381{left:302.880000px;}
.x39_c00381{left:304.057173px;}
.x15_c00381{left:306.657000px;}
.xe_c00381{left:307.779000px;}
.x62_c00381{left:310.291500px;}
.x55_c00381{left:313.604087px;}
.x8_c00381{left:315.877500px;}
.x6f_c00381{left:317.568717px;}
.x24_c00381{left:319.858500px;}
.x3a_c00381{left:322.419477px;}
.x16_c00381{left:324.259500px;}
.x3e_c00381{left:325.482131px;}
.x51_c00381{left:329.056145px;}
.xf_c00381{left:330.976500px;}
.x1e_c00381{left:334.134000px;}
.x5d_c00381{left:349.135500px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs17_c00381{font-size:34.539566pt;}
.fs5_c00381{font-size:49.471514pt;}
.fs10_c00381{font-size:49.477573pt;}
.fs2_c00381{font-size:51.333333pt;}
.fsf_c00381{font-size:51.339904pt;}
.fsd_c00381{font-size:52.274219pt;}
.fs16_c00381{font-size:52.276100pt;}
.fs11_c00381{font-size:52.288640pt;}
.fs3_c00381{font-size:53.200000pt;}
.fs6_c00381{font-size:53.207687pt;}
.fs12_c00381{font-size:53.209602pt;}
.fs13_c00381{font-size:54.143104pt;}
.fsc_c00381{font-size:55.074623pt;}
.fs15_c00381{font-size:56.010107pt;}
.fs7_c00381{font-size:56.941560pt;}
.fs4_c00381{font-size:57.866667pt;}
.fs8_c00381{font-size:57.875028pt;}
.fs18_c00381{font-size:57.877111pt;}
.fsa_c00381{font-size:58.808496pt;}
.fs1_c00381{font-size:59.733333pt;}
.fse_c00381{font-size:59.740979pt;}
.fsb_c00381{font-size:59.741964pt;}
.fs14_c00381{font-size:59.744114pt;}
.fs19_c00381{font-size:63.478121pt;}
.fs0_c00381{font-size:66.266667pt;}
.fs9_c00381{font-size:80.278264pt;}
.y0_c00381{bottom:0.000000pt;}
.yf3_c00381{bottom:27.021640pt;}
.yf2_c00381{bottom:27.773433pt;}
.yf1_c00381{bottom:28.118956pt;}
.yf0_c00381{bottom:29.517311pt;}
.yef_c00381{bottom:29.736379pt;}
.yee_c00381{bottom:41.472256pt;}
.yed_c00381{bottom:42.087307pt;}
.yec_c00381{bottom:42.781471pt;}
.yeb_c00381{bottom:43.050331pt;}
.yea_c00381{bottom:43.334723pt;}
.ye9_c00381{bottom:43.865077pt;}
.ye8_c00381{bottom:44.912788pt;}
.ye7_c00381{bottom:45.337535pt;}
.ye0_c00381{bottom:56.725719pt;}
.ye2_c00381{bottom:56.725781pt;}
.ye4_c00381{bottom:56.725848pt;}
.ye6_c00381{bottom:56.726209pt;}
.ye1_c00381{bottom:56.726216pt;}
.ye5_c00381{bottom:56.726269pt;}
.ye3_c00381{bottom:56.726417pt;}
.ydf_c00381{bottom:74.262035pt;}
.ydd_c00381{bottom:74.262179pt;}
.ydc_c00381{bottom:74.262451pt;}
.yde_c00381{bottom:74.262465pt;}
.ydb_c00381{bottom:74.262619pt;}
.yda_c00381{bottom:74.263129pt;}
.yd8_c00381{bottom:74.263279pt;}
.yd9_c00381{bottom:74.263781pt;}
.yd6_c00381{bottom:89.764555pt;}
.yd4_c00381{bottom:89.764571pt;}
.yd7_c00381{bottom:89.764893pt;}
.yd5_c00381{bottom:89.765121pt;}
.yd3_c00381{bottom:89.765185pt;}
.yd2_c00381{bottom:89.765329pt;}
.yd1_c00381{bottom:101.902191pt;}
.yd0_c00381{bottom:102.146899pt;}
.ycf_c00381{bottom:102.869243pt;}
.yce_c00381{bottom:103.111291pt;}
.ycd_c00381{bottom:103.399831pt;}
.ycc_c00381{bottom:104.494351pt;}
.ycb_c00381{bottom:104.740132pt;}
.yca_c00381{bottom:105.138261pt;}
.yc9_c00381{bottom:105.830133pt;}
.yc4_c00381{bottom:117.628977pt;}
.yc5_c00381{bottom:117.629365pt;}
.yc3_c00381{bottom:117.629407pt;}
.yc6_c00381{bottom:117.629837pt;}
.yc2_c00381{bottom:117.629977pt;}
.yc7_c00381{bottom:117.630012pt;}
.yc8_c00381{bottom:117.630409pt;}
.ybf_c00381{bottom:132.711956pt;}
.yc0_c00381{bottom:132.712003pt;}
.yc1_c00381{bottom:132.712339pt;}
.ybe_c00381{bottom:132.712520pt;}
.ybd_c00381{bottom:132.712789pt;}
.ybc_c00381{bottom:132.713273pt;}
.ybb_c00381{bottom:132.713624pt;}
.yba_c00381{bottom:132.713769pt;}
.yb9_c00381{bottom:148.309308pt;}
.yb8_c00381{bottom:149.139253pt;}
.yb7_c00381{bottom:150.215641pt;}
.yb6_c00381{bottom:150.802311pt;}
.yb5_c00381{bottom:151.150796pt;}
.yb4_c00381{bottom:151.406105pt;}
.yb3_c00381{bottom:152.141076pt;}
.yb2_c00381{bottom:153.121476pt;}
.yb1_c00381{bottom:161.698851pt;}
.yb0_c00381{bottom:162.856533pt;}
.yaf_c00381{bottom:163.192529pt;}
.yae_c00381{bottom:163.559001pt;}
.yad_c00381{bottom:164.703967pt;}
.yac_c00381{bottom:165.169517pt;}
.yab_c00381{bottom:165.580196pt;}
.yaa_c00381{bottom:166.565333pt;}
.ya9_c00381{bottom:177.346920pt;}
.ya8_c00381{bottom:178.576520pt;}
.ya7_c00381{bottom:179.252181pt;}
.ya6_c00381{bottom:180.741196pt;}
.ya5_c00381{bottom:181.263583pt;}
.ya4_c00381{bottom:182.684041pt;}
.ya3_c00381{bottom:183.182919pt;}
.ya2_c00381{bottom:184.280008pt;}
.ya1_c00381{bottom:184.805333pt;}
.ya0_c00381{bottom:194.260113pt;}
.y9f_c00381{bottom:195.131193pt;}
.y9e_c00381{bottom:196.209725pt;}
.y9d_c00381{bottom:197.772825pt;}
.y9c_c00381{bottom:198.690525pt;}
.y9b_c00381{bottom:199.205333pt;}
.y9a_c00381{bottom:209.599083pt;}
.y99_c00381{bottom:209.871200pt;}
.y98_c00381{bottom:210.758251pt;}
.y97_c00381{bottom:211.346443pt;}
.y96_c00381{bottom:211.677920pt;}
.y95_c00381{bottom:211.961568pt;}
.y94_c00381{bottom:212.125707pt;}
.y93_c00381{bottom:212.640469pt;}
.y92_c00381{bottom:222.967765pt;}
.y91_c00381{bottom:223.968811pt;}
.y90_c00381{bottom:224.537067pt;}
.y8f_c00381{bottom:224.981397pt;}
.y8e_c00381{bottom:225.677888pt;}
.y8d_c00381{bottom:226.073536pt;}
.y8c_c00381{bottom:226.753557pt;}
.y8b_c00381{bottom:227.282667pt;}
.y8a_c00381{bottom:239.229691pt;}
.y89_c00381{bottom:239.414388pt;}
.y88_c00381{bottom:239.748349pt;}
.y87_c00381{bottom:240.365455pt;}
.y86_c00381{bottom:241.060855pt;}
.y85_c00381{bottom:241.263637pt;}
.y84_c00381{bottom:241.902953pt;}
.y83_c00381{bottom:242.143961pt;}
.y82_c00381{bottom:254.900784pt;}
.y81_c00381{bottom:255.721859pt;}
.y80_c00381{bottom:256.190285pt;}
.y7f_c00381{bottom:256.723075pt;}
.y7e_c00381{bottom:257.861697pt;}
.y7d_c00381{bottom:258.127444pt;}
.y7c_c00381{bottom:258.707637pt;}
.y7b_c00381{bottom:269.759647pt;}
.y7a_c00381{bottom:270.292052pt;}
.y79_c00381{bottom:270.476311pt;}
.y78_c00381{bottom:270.862627pt;}
.y77_c00381{bottom:271.270731pt;}
.y76_c00381{bottom:271.452541pt;}
.y75_c00381{bottom:271.694721pt;}
.y74_c00381{bottom:272.259168pt;}
.y73_c00381{bottom:272.431220pt;}
.y72_c00381{bottom:272.866941pt;}
.y71_c00381{bottom:285.180380pt;}
.y70_c00381{bottom:285.471895pt;}
.y6f_c00381{bottom:286.803028pt;}
.y6e_c00381{bottom:287.514900pt;}
.y6d_c00381{bottom:288.399617pt;}
.y6c_c00381{bottom:289.430151pt;}
.y6b_c00381{bottom:300.081492pt;}
.y6a_c00381{bottom:300.498435pt;}
.y69_c00381{bottom:301.416425pt;}
.y68_c00381{bottom:301.690245pt;}
.y67_c00381{bottom:302.650381pt;}
.y66_c00381{bottom:303.591451pt;}
.y65_c00381{bottom:315.033067pt;}
.y64_c00381{bottom:315.313815pt;}
.y63_c00381{bottom:315.903588pt;}
.y62_c00381{bottom:316.518465pt;}
.y61_c00381{bottom:316.778873pt;}
.y60_c00381{bottom:317.495065pt;}
.y5f_c00381{bottom:317.792685pt;}
.y5e_c00381{bottom:318.711461pt;}
.y5d_c00381{bottom:330.327137pt;}
.y5c_c00381{bottom:330.742893pt;}
.y5b_c00381{bottom:331.645241pt;}
.y5a_c00381{bottom:332.516680pt;}
.y59_c00381{bottom:333.170043pt;}
.y58_c00381{bottom:334.022903pt;}
.y57_c00381{bottom:334.415207pt;}
.y56_c00381{bottom:335.034853pt;}
.y55_c00381{bottom:345.768532pt;}
.y54_c00381{bottom:345.768593pt;}
.y52_c00381{bottom:345.768611pt;}
.y53_c00381{bottom:345.769151pt;}
.y51_c00381{bottom:345.769205pt;}
.y4d_c00381{bottom:345.769360pt;}
.y4e_c00381{bottom:345.769523pt;}
.y4f_c00381{bottom:345.769625pt;}
.y50_c00381{bottom:345.769804pt;}
.y46_c00381{bottom:360.623788pt;}
.y48_c00381{bottom:360.624332pt;}
.y47_c00381{bottom:360.624340pt;}
.y45_c00381{bottom:360.624391pt;}
.y4a_c00381{bottom:360.624776pt;}
.y49_c00381{bottom:360.624868pt;}
.y4b_c00381{bottom:360.625152pt;}
.y4c_c00381{bottom:360.625460pt;}
.y44_c00381{bottom:376.111604pt;}
.y43_c00381{bottom:376.749337pt;}
.y42_c00381{bottom:377.526640pt;}
.y41_c00381{bottom:377.739451pt;}
.y40_c00381{bottom:378.234963pt;}
.y3f_c00381{bottom:378.826617pt;}
.y3e_c00381{bottom:379.107003pt;}
.y3d_c00381{bottom:379.288023pt;}
.y3c_c00381{bottom:379.680992pt;}
.y3b_c00381{bottom:389.850015pt;}
.y3a_c00381{bottom:390.117663pt;}
.y39_c00381{bottom:391.195871pt;}
.y38_c00381{bottom:391.800119pt;}
.y37_c00381{bottom:392.325464pt;}
.y36_c00381{bottom:392.737839pt;}
.y35_c00381{bottom:393.604000pt;}
.y34_c00381{bottom:407.974853pt;}
.y33_c00381{bottom:408.391027pt;}
.y32_c00381{bottom:408.986157pt;}
.y31_c00381{bottom:409.371904pt;}
.y30_c00381{bottom:410.017901pt;}
.y2f_c00381{bottom:410.781013pt;}
.y2e_c00381{bottom:411.130752pt;}
.y2d_c00381{bottom:411.362667pt;}
.y2c_c00381{bottom:420.345333pt;}
.y2b_c00381{bottom:420.914667pt;}
.y2a_c00381{bottom:422.470667pt;}
.y29_c00381{bottom:423.541333pt;}
.y28_c00381{bottom:424.006667pt;}
.y27_c00381{bottom:425.104000pt;}
.y26_c00381{bottom:425.434667pt;}
.y25_c00381{bottom:426.485333pt;}
.y24_c00381{bottom:434.738667pt;}
.y23_c00381{bottom:435.489333pt;}
.y22_c00381{bottom:437.309333pt;}
.y21_c00381{bottom:437.794667pt;}
.y20_c00381{bottom:438.708000pt;}
.y1f_c00381{bottom:439.317333pt;}
.y1e_c00381{bottom:441.125333pt;}
.y1d_c00381{bottom:448.405333pt;}
.y1c_c00381{bottom:451.560000pt;}
.y1b_c00381{bottom:452.304000pt;}
.y1a_c00381{bottom:453.466667pt;}
.y19_c00381{bottom:453.933333pt;}
.y18_c00381{bottom:455.526667pt;}
.y17_c00381{bottom:464.242667pt;}
.y16_c00381{bottom:464.665333pt;}
.y15_c00381{bottom:466.246667pt;}
.y14_c00381{bottom:467.160000pt;}
.y13_c00381{bottom:469.228000pt;}
.y12_c00381{bottom:469.745333pt;}
.y11_c00381{bottom:470.885333pt;}
.y10_c00381{bottom:480.230667pt;}
.yf_c00381{bottom:480.684000pt;}
.ye_c00381{bottom:481.850667pt;}
.yd_c00381{bottom:482.273333pt;}
.yc_c00381{bottom:483.238667pt;}
.yb_c00381{bottom:484.217333pt;}
.ya_c00381{bottom:484.718667pt;}
.y9_c00381{bottom:485.764000pt;}
.y8_c00381{bottom:495.654667pt;}
.y7_c00381{bottom:496.585333pt;}
.y6_c00381{bottom:497.529333pt;}
.y5_c00381{bottom:498.573333pt;}
.y4_c00381{bottom:499.097333pt;}
.y3_c00381{bottom:500.326667pt;}
.y2_c00381{bottom:500.642667pt;}
.y1_c00381{bottom:509.161333pt;}
.h19_c00381{height:34.539566pt;}
.h7_c00381{height:49.471514pt;}
.h12_c00381{height:49.477573pt;}
.h4_c00381{height:51.333333pt;}
.h11_c00381{height:51.339904pt;}
.hf_c00381{height:52.274219pt;}
.h18_c00381{height:52.276100pt;}
.h13_c00381{height:52.288640pt;}
.h5_c00381{height:53.200000pt;}
.h8_c00381{height:53.207687pt;}
.h14_c00381{height:53.209602pt;}
.h15_c00381{height:54.143104pt;}
.he_c00381{height:55.074623pt;}
.h17_c00381{height:56.010107pt;}
.h9_c00381{height:56.941560pt;}
.h6_c00381{height:57.866667pt;}
.ha_c00381{height:57.875028pt;}
.h1a_c00381{height:57.877111pt;}
.hc_c00381{height:58.808496pt;}
.h3_c00381{height:59.733333pt;}
.h10_c00381{height:59.740979pt;}
.hd_c00381{height:59.741964pt;}
.h16_c00381{height:59.744114pt;}
.h1b_c00381{height:63.478121pt;}
.h2_c00381{height:66.266667pt;}
.hb_c00381{height:80.278264pt;}
.h0_c00381{height:545.040000pt;}
.h1_c00381{height:545.333333pt;}
.w0_c00381{width:319.200000pt;}
.w1_c00381{width:319.333333pt;}
.x0_c00381{left:0.000000pt;}
.x4a_c00381{left:33.454985pt;}
.x76_c00381{left:38.638376pt;}
.x5e_c00381{left:39.897589pt;}
.x43_c00381{left:40.851288pt;}
.x10_c00381{left:42.202667pt;}
.x2_c00381{left:43.309333pt;}
.x7f_c00381{left:51.931973pt;}
.x3_c00381{left:58.342667pt;}
.x56_c00381{left:59.366903pt;}
.x19_c00381{left:60.456000pt;}
.x77_c00381{left:63.603395pt;}
.x61_c00381{left:64.842667pt;}
.x7e_c00381{left:66.853767pt;}
.x29_c00381{left:68.229668pt;}
.x4b_c00381{left:69.755401pt;}
.x3b_c00381{left:74.183437pt;}
.x2f_c00381{left:76.085404pt;}
.x52_c00381{left:77.109099pt;}
.x2a_c00381{left:80.290076pt;}
.x70_c00381{left:82.943444pt;}
.x11_c00381{left:84.418667pt;}
.x5f_c00381{left:88.413813pt;}
.x9_c00381{left:90.246667pt;}
.x68_c00381{left:91.480589pt;}
.x25_c00381{left:92.750667pt;}
.x30_c00381{left:94.568087pt;}
.x63_c00381{left:96.332000pt;}
.x17_c00381{left:97.597333pt;}
.x2b_c00381{left:98.980044pt;}
.x72_c00381{left:100.328401pt;}
.x3f_c00381{left:102.606481pt;}
.x12_c00381{left:103.592000pt;}
.x57_c00381{left:108.584924pt;}
.x35_c00381{left:109.930735pt;}
.x73_c00381{left:110.890868pt;}
.xa_c00381{left:113.046667pt;}
.x31_c00381{left:114.731245pt;}
.x4_c00381{left:116.886667pt;}
.x40_c00381{left:122.467161pt;}
.x58_c00381{left:124.200656pt;}
.x36_c00381{left:125.532579pt;}
.x1a_c00381{left:127.418667pt;}
.x78_c00381{left:129.135031pt;}
.x69_c00381{left:130.163256pt;}
.x4c_c00381{left:131.123281pt;}
.x60_c00381{left:132.360555pt;}
.x7d_c00381{left:137.296887pt;}
.x21_c00381{left:138.386667pt;}
.x3c_c00381{left:139.739883pt;}
.x5c_c00381{left:140.960000pt;}
.x5_c00381{left:141.850667pt;}
.x6a_c00381{left:143.600589pt;}
.x26_c00381{left:147.910667pt;}
.x79_c00381{left:148.818124pt;}
.x1b_c00381{left:150.001333pt;}
.x4d_c00381{left:151.331671pt;}
.x18_c00381{left:153.786667pt;}
.x37_c00381{left:155.537237pt;}
.xb_c00381{left:157.509333pt;}
.x44_c00381{left:159.669305pt;}
.x1_c00381{left:160.560000pt;}
.x64_c00381{left:162.516000pt;}
.x53_c00381{left:164.818572pt;}
.x4e_c00381{left:166.498296pt;}
.x38_c00381{left:169.458583pt;}
.x2c_c00381{left:171.482515pt;}
.x32_c00381{left:173.540245pt;}
.x45_c00381{left:176.796267pt;}
.x59_c00381{left:177.737639pt;}
.x48_c00381{left:179.140588pt;}
.x13_c00381{left:180.186667pt;}
.x1c_c00381{left:183.829333pt;}
.x2d_c00381{left:185.648324pt;}
.x41_c00381{left:187.602716pt;}
.x7a_c00381{left:190.105020pt;}
.x6_c00381{left:191.544000pt;}
.x6b_c00381{left:192.819256pt;}
.x6c_c00381{left:195.629153pt;}
.x33_c00381{left:198.023317pt;}
.x74_c00381{left:200.187092pt;}
.xc_c00381{left:201.365333pt;}
.x1f_c00381{left:202.808000pt;}
.x80_c00381{left:207.923532pt;}
.x71_c00381{left:209.633331pt;}
.x22_c00381{left:212.082667pt;}
.x14_c00381{left:214.028000pt;}
.x66_c00381{left:217.589333pt;}
.x6e_c00381{left:219.392605pt;}
.xd_c00381{left:220.566667pt;}
.x7b_c00381{left:222.271289pt;}
.x5a_c00381{left:225.256880pt;}
.x54_c00381{left:227.400971pt;}
.x42_c00381{left:228.636121pt;}
.x6d_c00381{left:229.954875pt;}
.x65_c00381{left:231.874667pt;}
.x4f_c00381{left:232.763940pt;}
.x46_c00381{left:234.169241pt;}
.x67_c00381{left:235.273333pt;}
.x7_c00381{left:236.474667pt;}
.x2e_c00381{left:237.491425pt;}
.x75_c00381{left:244.114951pt;}
.x27_c00381{left:246.878667pt;}
.x50_c00381{left:248.074565pt;}
.x49_c00381{left:249.204875pt;}
.x5b_c00381{left:250.942625pt;}
.x23_c00381{left:254.592000pt;}
.x34_c00381{left:257.312453pt;}
.x47_c00381{left:260.264361pt;}
.x7c_c00381{left:261.638835pt;}
.x28_c00381{left:262.622667pt;}
.x20_c00381{left:265.049333pt;}
.x3d_c00381{left:267.450197pt;}
.x1d_c00381{left:269.226667pt;}
.x39_c00381{left:270.273043pt;}
.x15_c00381{left:272.584000pt;}
.xe_c00381{left:273.581333pt;}
.x62_c00381{left:275.814667pt;}
.x55_c00381{left:278.759188pt;}
.x8_c00381{left:280.780000pt;}
.x6f_c00381{left:282.283304pt;}
.x24_c00381{left:284.318667pt;}
.x3a_c00381{left:286.595091pt;}
.x16_c00381{left:288.230667pt;}
.x3e_c00381{left:289.317449pt;}
.x51_c00381{left:292.494351pt;}
.xf_c00381{left:294.201333pt;}
.x1e_c00381{left:297.008000pt;}
.x5d_c00381{left:310.342667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00382 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00382 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00382 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00382 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00382.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00382;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00382{transform:matrix(0.012033,-0.000422,0.008753,0.249847,0,0);-ms-transform:matrix(0.012033,-0.000422,0.008753,0.249847,0,0);-webkit-transform:matrix(0.012033,-0.000422,0.008753,0.249847,0,0);}
.mbc_c00382{transform:matrix(0.012117,-0.000267,0.005499,0.249940,0,0);-ms-transform:matrix(0.012117,-0.000267,0.005499,0.249940,0,0);-webkit-transform:matrix(0.012117,-0.000267,0.005499,0.249940,0,0);}
.m0_c00382{transform:matrix(0.017974,-0.000630,0.008753,0.249847,0,0);-ms-transform:matrix(0.017974,-0.000630,0.008753,0.249847,0,0);-webkit-transform:matrix(0.017974,-0.000630,0.008753,0.249847,0,0);}
.mdd_c00382{transform:matrix(0.126564,-0.002784,0.005499,0.249940,0,0);-ms-transform:matrix(0.126564,-0.002784,0.005499,0.249940,0,0);-webkit-transform:matrix(0.126564,-0.002784,0.005499,0.249940,0,0);}
.mde_c00382{transform:matrix(0.134268,-0.002954,0.005499,0.249940,0,0);-ms-transform:matrix(0.134268,-0.002954,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134268,-0.002954,0.005499,0.249940,0,0);}
.m80_c00382{transform:matrix(0.135569,-0.004067,0.007497,0.249888,0,0);-ms-transform:matrix(0.135569,-0.004067,0.007497,0.249888,0,0);-webkit-transform:matrix(0.135569,-0.004067,0.007497,0.249888,0,0);}
.md9_c00382{transform:matrix(0.141331,-0.003109,0.005499,0.249940,0,0);-ms-transform:matrix(0.141331,-0.003109,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141331,-0.003109,0.005499,0.249940,0,0);}
.m56_c00382{transform:matrix(0.142133,-0.004980,0.008753,0.249847,0,0);-ms-transform:matrix(0.142133,-0.004980,0.008753,0.249847,0,0);-webkit-transform:matrix(0.142133,-0.004980,0.008753,0.249847,0,0);}
.mda_c00382{transform:matrix(0.144140,-0.003171,0.005499,0.249940,0,0);-ms-transform:matrix(0.144140,-0.003171,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144140,-0.003171,0.005499,0.249940,0,0);}
.mbd_c00382{transform:matrix(0.144645,-0.003182,0.005499,0.249940,0,0);-ms-transform:matrix(0.144645,-0.003182,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144645,-0.003182,0.005499,0.249940,0,0);}
.me1_c00382{transform:matrix(0.146665,-0.003227,0.005499,0.249940,0,0);-ms-transform:matrix(0.146665,-0.003227,0.005499,0.249940,0,0);-webkit-transform:matrix(0.146665,-0.003227,0.005499,0.249940,0,0);}
.m32_c00382{transform:matrix(0.147015,-0.005151,0.008753,0.249847,0,0);-ms-transform:matrix(0.147015,-0.005151,0.008753,0.249847,0,0);-webkit-transform:matrix(0.147015,-0.005151,0.008753,0.249847,0,0);}
.m13_c00382{transform:matrix(0.148519,-0.005203,0.008753,0.249847,0,0);-ms-transform:matrix(0.148519,-0.005203,0.008753,0.249847,0,0);-webkit-transform:matrix(0.148519,-0.005203,0.008753,0.249847,0,0);}
.m17_c00382{transform:matrix(0.148599,-0.005206,0.008753,0.249847,0,0);-ms-transform:matrix(0.148599,-0.005206,0.008753,0.249847,0,0);-webkit-transform:matrix(0.148599,-0.005206,0.008753,0.249847,0,0);}
.ma2_c00382{transform:matrix(0.148613,-0.004458,0.007497,0.249888,0,0);-ms-transform:matrix(0.148613,-0.004458,0.007497,0.249888,0,0);-webkit-transform:matrix(0.148613,-0.004458,0.007497,0.249888,0,0);}
.m58_c00382{transform:matrix(0.149298,-0.005231,0.008753,0.249847,0,0);-ms-transform:matrix(0.149298,-0.005231,0.008753,0.249847,0,0);-webkit-transform:matrix(0.149298,-0.005231,0.008753,0.249847,0,0);}
.m51_c00382{transform:matrix(0.150728,-0.005281,0.008753,0.249847,0,0);-ms-transform:matrix(0.150728,-0.005281,0.008753,0.249847,0,0);-webkit-transform:matrix(0.150728,-0.005281,0.008753,0.249847,0,0);}
.mcf_c00382{transform:matrix(0.151088,-0.003324,0.005499,0.249940,0,0);-ms-transform:matrix(0.151088,-0.003324,0.005499,0.249940,0,0);-webkit-transform:matrix(0.151088,-0.003324,0.005499,0.249940,0,0);}
.m76_c00382{transform:matrix(0.153326,-0.005372,0.008753,0.249847,0,0);-ms-transform:matrix(0.153326,-0.005372,0.008753,0.249847,0,0);-webkit-transform:matrix(0.153326,-0.005372,0.008753,0.249847,0,0);}
.m89_c00382{transform:matrix(0.153926,-0.004618,0.007497,0.249888,0,0);-ms-transform:matrix(0.153926,-0.004618,0.007497,0.249888,0,0);-webkit-transform:matrix(0.153926,-0.004618,0.007497,0.249888,0,0);}
.m2_c00382{transform:matrix(0.155255,-0.005439,0.008753,0.249847,0,0);-ms-transform:matrix(0.155255,-0.005439,0.008753,0.249847,0,0);-webkit-transform:matrix(0.155255,-0.005439,0.008753,0.249847,0,0);}
.me4_c00382{transform:matrix(0.155622,-0.003424,0.005499,0.249940,0,0);-ms-transform:matrix(0.155622,-0.003424,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155622,-0.003424,0.005499,0.249940,0,0);}
.m1b_c00382{transform:matrix(0.155744,-0.005457,0.008753,0.249847,0,0);-ms-transform:matrix(0.155744,-0.005457,0.008753,0.249847,0,0);-webkit-transform:matrix(0.155744,-0.005457,0.008753,0.249847,0,0);}
.m19_c00382{transform:matrix(0.158113,-0.005539,0.008753,0.249847,0,0);-ms-transform:matrix(0.158113,-0.005539,0.008753,0.249847,0,0);-webkit-transform:matrix(0.158113,-0.005539,0.008753,0.249847,0,0);}
.m11_c00382{transform:matrix(0.158213,-0.005543,0.008753,0.249847,0,0);-ms-transform:matrix(0.158213,-0.005543,0.008753,0.249847,0,0);-webkit-transform:matrix(0.158213,-0.005543,0.008753,0.249847,0,0);}
.m2b_c00382{transform:matrix(0.158623,-0.005557,0.008753,0.249847,0,0);-ms-transform:matrix(0.158623,-0.005557,0.008753,0.249847,0,0);-webkit-transform:matrix(0.158623,-0.005557,0.008753,0.249847,0,0);}
.m38_c00382{transform:matrix(0.159132,-0.005575,0.008753,0.249847,0,0);-ms-transform:matrix(0.159132,-0.005575,0.008753,0.249847,0,0);-webkit-transform:matrix(0.159132,-0.005575,0.008753,0.249847,0,0);}
.m82_c00382{transform:matrix(0.159303,-0.004779,0.007497,0.249888,0,0);-ms-transform:matrix(0.159303,-0.004779,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159303,-0.004779,0.007497,0.249888,0,0);}
.m9c_c00382{transform:matrix(0.160248,-0.004807,0.007497,0.249888,0,0);-ms-transform:matrix(0.160248,-0.004807,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160248,-0.004807,0.007497,0.249888,0,0);}
.m18_c00382{transform:matrix(0.160422,-0.005620,0.008753,0.249847,0,0);-ms-transform:matrix(0.160422,-0.005620,0.008753,0.249847,0,0);-webkit-transform:matrix(0.160422,-0.005620,0.008753,0.249847,0,0);}
.ma1_c00382{transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);-ms-transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160953,-0.004829,0.007497,0.249888,0,0);}
.m39_c00382{transform:matrix(0.161546,-0.005660,0.008753,0.249847,0,0);-ms-transform:matrix(0.161546,-0.005660,0.008753,0.249847,0,0);-webkit-transform:matrix(0.161546,-0.005660,0.008753,0.249847,0,0);}
.m9d_c00382{transform:matrix(0.161777,-0.004853,0.007497,0.249888,0,0);-ms-transform:matrix(0.161777,-0.004853,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161777,-0.004853,0.007497,0.249888,0,0);}
.m9f_c00382{transform:matrix(0.161927,-0.004858,0.007497,0.249888,0,0);-ms-transform:matrix(0.161927,-0.004858,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161927,-0.004858,0.007497,0.249888,0,0);}
.m6c_c00382{transform:matrix(0.162041,-0.005677,0.008753,0.249847,0,0);-ms-transform:matrix(0.162041,-0.005677,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162041,-0.005677,0.008753,0.249847,0,0);}
.m30_c00382{transform:matrix(0.162141,-0.005681,0.008753,0.249847,0,0);-ms-transform:matrix(0.162141,-0.005681,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162141,-0.005681,0.008753,0.249847,0,0);}
.m15_c00382{transform:matrix(0.162310,-0.005687,0.008753,0.249847,0,0);-ms-transform:matrix(0.162310,-0.005687,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162310,-0.005687,0.008753,0.249847,0,0);}
.m37_c00382{transform:matrix(0.162620,-0.005697,0.008753,0.249847,0,0);-ms-transform:matrix(0.162620,-0.005697,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162620,-0.005697,0.008753,0.249847,0,0);}
.m2c_c00382{transform:matrix(0.163125,-0.005715,0.008753,0.249847,0,0);-ms-transform:matrix(0.163125,-0.005715,0.008753,0.249847,0,0);-webkit-transform:matrix(0.163125,-0.005715,0.008753,0.249847,0,0);}
.m40_c00382{transform:matrix(0.163879,-0.005742,0.008753,0.249847,0,0);-ms-transform:matrix(0.163879,-0.005742,0.008753,0.249847,0,0);-webkit-transform:matrix(0.163879,-0.005742,0.008753,0.249847,0,0);}
.m81_c00382{transform:matrix(0.164026,-0.004921,0.007497,0.249888,0,0);-ms-transform:matrix(0.164026,-0.004921,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164026,-0.004921,0.007497,0.249888,0,0);}
.m3a_c00382{transform:matrix(0.164294,-0.005756,0.008753,0.249847,0,0);-ms-transform:matrix(0.164294,-0.005756,0.008753,0.249847,0,0);-webkit-transform:matrix(0.164294,-0.005756,0.008753,0.249847,0,0);}
.m8a_c00382{transform:matrix(0.165031,-0.004951,0.007497,0.249888,0,0);-ms-transform:matrix(0.165031,-0.004951,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165031,-0.004951,0.007497,0.249888,0,0);}
.mc2_c00382{transform:matrix(0.165090,-0.003632,0.005499,0.249940,0,0);-ms-transform:matrix(0.165090,-0.003632,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165090,-0.003632,0.005499,0.249940,0,0);}
.md8_c00382{transform:matrix(0.165350,-0.003638,0.005499,0.249940,0,0);-ms-transform:matrix(0.165350,-0.003638,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165350,-0.003638,0.005499,0.249940,0,0);}
.m1c_c00382{transform:matrix(0.165958,-0.005814,0.008753,0.249847,0,0);-ms-transform:matrix(0.165958,-0.005814,0.008753,0.249847,0,0);-webkit-transform:matrix(0.165958,-0.005814,0.008753,0.249847,0,0);}
.m7a_c00382{transform:matrix(0.166028,-0.005817,0.008753,0.249847,0,0);-ms-transform:matrix(0.166028,-0.005817,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166028,-0.005817,0.008753,0.249847,0,0);}
.m67_c00382{transform:matrix(0.166118,-0.005820,0.008753,0.249847,0,0);-ms-transform:matrix(0.166118,-0.005820,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166118,-0.005820,0.008753,0.249847,0,0);}
.m1e_c00382{transform:matrix(0.166168,-0.005822,0.008753,0.249847,0,0);-ms-transform:matrix(0.166168,-0.005822,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166168,-0.005822,0.008753,0.249847,0,0);}
.m52_c00382{transform:matrix(0.166723,-0.005841,0.008753,0.249847,0,0);-ms-transform:matrix(0.166723,-0.005841,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166723,-0.005841,0.008753,0.249847,0,0);}
.ma_c00382{transform:matrix(0.166923,-0.005848,0.008753,0.249847,0,0);-ms-transform:matrix(0.166923,-0.005848,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166923,-0.005848,0.008753,0.249847,0,0);}
.m12_c00382{transform:matrix(0.167028,-0.005852,0.008753,0.249847,0,0);-ms-transform:matrix(0.167028,-0.005852,0.008753,0.249847,0,0);-webkit-transform:matrix(0.167028,-0.005852,0.008753,0.249847,0,0);}
.mc7_c00382{transform:matrix(0.167115,-0.003677,0.005499,0.249940,0,0);-ms-transform:matrix(0.167115,-0.003677,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167115,-0.003677,0.005499,0.249940,0,0);}
.m78_c00382{transform:matrix(0.167182,-0.005857,0.008753,0.249847,0,0);-ms-transform:matrix(0.167182,-0.005857,0.008753,0.249847,0,0);-webkit-transform:matrix(0.167182,-0.005857,0.008753,0.249847,0,0);}
.m5a_c00382{transform:matrix(0.170370,-0.005969,0.008753,0.249847,0,0);-ms-transform:matrix(0.170370,-0.005969,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170370,-0.005969,0.008753,0.249847,0,0);}
.m3c_c00382{transform:matrix(0.170375,-0.005969,0.008753,0.249847,0,0);-ms-transform:matrix(0.170375,-0.005969,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170375,-0.005969,0.008753,0.249847,0,0);}
.me_c00382{transform:matrix(0.170645,-0.005979,0.008753,0.249847,0,0);-ms-transform:matrix(0.170645,-0.005979,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170645,-0.005979,0.008753,0.249847,0,0);}
.m44_c00382{transform:matrix(0.170760,-0.005983,0.008753,0.249847,0,0);-ms-transform:matrix(0.170760,-0.005983,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170760,-0.005983,0.008753,0.249847,0,0);}
.mb8_c00382{transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);-ms-transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);}
.m83_c00382{transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);-ms-transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171563,-0.005147,0.007497,0.249888,0,0);}
.m9b_c00382{transform:matrix(0.172123,-0.005164,0.007497,0.249888,0,0);-ms-transform:matrix(0.172123,-0.005164,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172123,-0.005164,0.007497,0.249888,0,0);}
.m54_c00382{transform:matrix(0.172214,-0.006034,0.008753,0.249847,0,0);-ms-transform:matrix(0.172214,-0.006034,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172214,-0.006034,0.008753,0.249847,0,0);}
.m5c_c00382{transform:matrix(0.172844,-0.006056,0.008753,0.249847,0,0);-ms-transform:matrix(0.172844,-0.006056,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172844,-0.006056,0.008753,0.249847,0,0);}
.mc6_c00382{transform:matrix(0.173453,-0.003816,0.005499,0.249940,0,0);-ms-transform:matrix(0.173453,-0.003816,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173453,-0.003816,0.005499,0.249940,0,0);}
.m1a_c00382{transform:matrix(0.173519,-0.006079,0.008753,0.249847,0,0);-ms-transform:matrix(0.173519,-0.006079,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173519,-0.006079,0.008753,0.249847,0,0);}
.m42_c00382{transform:matrix(0.173928,-0.006094,0.008753,0.249847,0,0);-ms-transform:matrix(0.173928,-0.006094,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173928,-0.006094,0.008753,0.249847,0,0);}
.m14_c00382{transform:matrix(0.174078,-0.006099,0.008753,0.249847,0,0);-ms-transform:matrix(0.174078,-0.006099,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174078,-0.006099,0.008753,0.249847,0,0);}
.m4f_c00382{transform:matrix(0.175078,-0.006134,0.008753,0.249847,0,0);-ms-transform:matrix(0.175078,-0.006134,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175078,-0.006134,0.008753,0.249847,0,0);}
.m57_c00382{transform:matrix(0.175312,-0.006142,0.008753,0.249847,0,0);-ms-transform:matrix(0.175312,-0.006142,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175312,-0.006142,0.008753,0.249847,0,0);}
.mb7_c00382{transform:matrix(0.175573,-0.003863,0.005499,0.249940,0,0);-ms-transform:matrix(0.175573,-0.003863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175573,-0.003863,0.005499,0.249940,0,0);}
.me0_c00382{transform:matrix(0.175797,-0.003868,0.005499,0.249940,0,0);-ms-transform:matrix(0.175797,-0.003868,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175797,-0.003868,0.005499,0.249940,0,0);}
.m84_c00382{transform:matrix(0.176321,-0.005290,0.007497,0.249888,0,0);-ms-transform:matrix(0.176321,-0.005290,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176321,-0.005290,0.007497,0.249888,0,0);}
.mbb_c00382{transform:matrix(0.177067,-0.003895,0.005499,0.249940,0,0);-ms-transform:matrix(0.177067,-0.003895,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177067,-0.003895,0.005499,0.249940,0,0);}
.md7_c00382{transform:matrix(0.177597,-0.003907,0.005499,0.249940,0,0);-ms-transform:matrix(0.177597,-0.003907,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177597,-0.003907,0.005499,0.249940,0,0);}
.ma8_c00382{transform:matrix(0.177695,-0.005509,0.007746,0.249880,0,0);-ms-transform:matrix(0.177695,-0.005509,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177695,-0.005509,0.007746,0.249880,0,0);}
.m16_c00382{transform:matrix(0.177886,-0.006232,0.008753,0.249847,0,0);-ms-transform:matrix(0.177886,-0.006232,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177886,-0.006232,0.008753,0.249847,0,0);}
.m87_c00382{transform:matrix(0.178265,-0.005348,0.007497,0.249888,0,0);-ms-transform:matrix(0.178265,-0.005348,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178265,-0.005348,0.007497,0.249888,0,0);}
.m2d_c00382{transform:matrix(0.178306,-0.006247,0.008753,0.249847,0,0);-ms-transform:matrix(0.178306,-0.006247,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178306,-0.006247,0.008753,0.249847,0,0);}
.m59_c00382{transform:matrix(0.178346,-0.006248,0.008753,0.249847,0,0);-ms-transform:matrix(0.178346,-0.006248,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178346,-0.006248,0.008753,0.249847,0,0);}
.m1d_c00382{transform:matrix(0.178356,-0.006249,0.008753,0.249847,0,0);-ms-transform:matrix(0.178356,-0.006249,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178356,-0.006249,0.008753,0.249847,0,0);}
.md1_c00382{transform:matrix(0.178477,-0.003926,0.005499,0.249940,0,0);-ms-transform:matrix(0.178477,-0.003926,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178477,-0.003926,0.005499,0.249940,0,0);}
.mb_c00382{transform:matrix(0.178705,-0.006261,0.008753,0.249847,0,0);-ms-transform:matrix(0.178705,-0.006261,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178705,-0.006261,0.008753,0.249847,0,0);}
.m3b_c00382{transform:matrix(0.179215,-0.006279,0.008753,0.249847,0,0);-ms-transform:matrix(0.179215,-0.006279,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179215,-0.006279,0.008753,0.249847,0,0);}
.mc_c00382{transform:matrix(0.181064,-0.006344,0.008753,0.249847,0,0);-ms-transform:matrix(0.181064,-0.006344,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181064,-0.006344,0.008753,0.249847,0,0);}
.m7f_c00382{transform:matrix(0.181288,-0.005439,0.007497,0.249888,0,0);-ms-transform:matrix(0.181288,-0.005439,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181288,-0.005439,0.007497,0.249888,0,0);}
.m1f_c00382{transform:matrix(0.181873,-0.006372,0.008753,0.249847,0,0);-ms-transform:matrix(0.181873,-0.006372,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181873,-0.006372,0.008753,0.249847,0,0);}
.m91_c00382{transform:matrix(0.181903,-0.005457,0.007497,0.249888,0,0);-ms-transform:matrix(0.181903,-0.005457,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181903,-0.005457,0.007497,0.249888,0,0);}
.mcd_c00382{transform:matrix(0.182231,-0.004009,0.005499,0.249940,0,0);-ms-transform:matrix(0.182231,-0.004009,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182231,-0.004009,0.005499,0.249940,0,0);}
.m43_c00382{transform:matrix(0.182933,-0.006409,0.008753,0.249847,0,0);-ms-transform:matrix(0.182933,-0.006409,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182933,-0.006409,0.008753,0.249847,0,0);}
.mce_c00382{transform:matrix(0.183411,-0.004035,0.005499,0.249940,0,0);-ms-transform:matrix(0.183411,-0.004035,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183411,-0.004035,0.005499,0.249940,0,0);}
.maf_c00382{transform:matrix(0.183751,-0.004043,0.005499,0.249940,0,0);-ms-transform:matrix(0.183751,-0.004043,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183751,-0.004043,0.005499,0.249940,0,0);}
.m47_c00382{transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);-ms-transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);}
.mcc_c00382{transform:matrix(0.184040,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184040,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184040,-0.004049,0.005499,0.249940,0,0);}
.mb4_c00382{transform:matrix(0.184380,-0.004056,0.005499,0.249940,0,0);-ms-transform:matrix(0.184380,-0.004056,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184380,-0.004056,0.005499,0.249940,0,0);}
.m50_c00382{transform:matrix(0.184996,-0.006481,0.008753,0.249847,0,0);-ms-transform:matrix(0.184996,-0.006481,0.008753,0.249847,0,0);-webkit-transform:matrix(0.184996,-0.006481,0.008753,0.249847,0,0);}
.mdf_c00382{transform:matrix(0.185075,-0.004072,0.005499,0.249940,0,0);-ms-transform:matrix(0.185075,-0.004072,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185075,-0.004072,0.005499,0.249940,0,0);}
.m70_c00382{transform:matrix(0.185186,-0.006488,0.008753,0.249847,0,0);-ms-transform:matrix(0.185186,-0.006488,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185186,-0.006488,0.008753,0.249847,0,0);}
.m97_c00382{transform:matrix(0.185746,-0.005572,0.007497,0.249888,0,0);-ms-transform:matrix(0.185746,-0.005572,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185746,-0.005572,0.007497,0.249888,0,0);}
.m77_c00382{transform:matrix(0.185851,-0.006511,0.008753,0.249847,0,0);-ms-transform:matrix(0.185851,-0.006511,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185851,-0.006511,0.008753,0.249847,0,0);}
.m8e_c00382{transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);-ms-transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185881,-0.005576,0.007497,0.249888,0,0);}
.mbf_c00382{transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);-ms-transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186030,-0.004093,0.005499,0.249940,0,0);}
.m41_c00382{transform:matrix(0.186276,-0.006526,0.008753,0.249847,0,0);-ms-transform:matrix(0.186276,-0.006526,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186276,-0.006526,0.008753,0.249847,0,0);}
.me5_c00382{transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);-ms-transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186410,-0.004101,0.005499,0.249940,0,0);}
.m74_c00382{transform:matrix(0.186416,-0.006531,0.008753,0.249847,0,0);-ms-transform:matrix(0.186416,-0.006531,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186416,-0.006531,0.008753,0.249847,0,0);}
.md0_c00382{transform:matrix(0.186865,-0.004111,0.005499,0.249940,0,0);-ms-transform:matrix(0.186865,-0.004111,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186865,-0.004111,0.005499,0.249940,0,0);}
.m4b_c00382{transform:matrix(0.187220,-0.006559,0.008753,0.249847,0,0);-ms-transform:matrix(0.187220,-0.006559,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187220,-0.006559,0.008753,0.249847,0,0);}
.m99_c00382{transform:matrix(0.187671,-0.005630,0.007497,0.249888,0,0);-ms-transform:matrix(0.187671,-0.005630,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187671,-0.005630,0.007497,0.249888,0,0);}
.m5e_c00382{transform:matrix(0.187850,-0.006581,0.008753,0.249847,0,0);-ms-transform:matrix(0.187850,-0.006581,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187850,-0.006581,0.008753,0.249847,0,0);}
.m68_c00382{transform:matrix(0.187865,-0.006582,0.008753,0.249847,0,0);-ms-transform:matrix(0.187865,-0.006582,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187865,-0.006582,0.008753,0.249847,0,0);}
.m85_c00382{transform:matrix(0.188130,-0.005644,0.007497,0.249888,0,0);-ms-transform:matrix(0.188130,-0.005644,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188130,-0.005644,0.007497,0.249888,0,0);}
.md_c00382{transform:matrix(0.188539,-0.006605,0.008753,0.249847,0,0);-ms-transform:matrix(0.188539,-0.006605,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188539,-0.006605,0.008753,0.249847,0,0);}
.m6e_c00382{transform:matrix(0.188544,-0.006606,0.008753,0.249847,0,0);-ms-transform:matrix(0.188544,-0.006606,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188544,-0.006606,0.008753,0.249847,0,0);}
.m75_c00382{transform:matrix(0.189044,-0.006623,0.008753,0.249847,0,0);-ms-transform:matrix(0.189044,-0.006623,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189044,-0.006623,0.008753,0.249847,0,0);}
.m46_c00382{transform:matrix(0.189074,-0.006624,0.008753,0.249847,0,0);-ms-transform:matrix(0.189074,-0.006624,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189074,-0.006624,0.008753,0.249847,0,0);}
.m8_c00382{transform:matrix(0.189354,-0.006634,0.008753,0.249847,0,0);-ms-transform:matrix(0.189354,-0.006634,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189354,-0.006634,0.008753,0.249847,0,0);}
.m2a_c00382{transform:matrix(0.189804,-0.006650,0.008753,0.249847,0,0);-ms-transform:matrix(0.189804,-0.006650,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189804,-0.006650,0.008753,0.249847,0,0);}
.mc8_c00382{transform:matrix(0.189994,-0.004180,0.005499,0.249940,0,0);-ms-transform:matrix(0.189994,-0.004180,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189994,-0.004180,0.005499,0.249940,0,0);}
.m2e_c00382{transform:matrix(0.190023,-0.006657,0.008753,0.249847,0,0);-ms-transform:matrix(0.190023,-0.006657,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190023,-0.006657,0.008753,0.249847,0,0);}
.m55_c00382{transform:matrix(0.190313,-0.006668,0.008753,0.249847,0,0);-ms-transform:matrix(0.190313,-0.006668,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190313,-0.006668,0.008753,0.249847,0,0);}
.m33_c00382{transform:matrix(0.190333,-0.006668,0.008753,0.249847,0,0);-ms-transform:matrix(0.190333,-0.006668,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190333,-0.006668,0.008753,0.249847,0,0);}
.m5_c00382{transform:matrix(0.190688,-0.006681,0.008753,0.249847,0,0);-ms-transform:matrix(0.190688,-0.006681,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190688,-0.006681,0.008753,0.249847,0,0);}
.mb2_c00382{transform:matrix(0.190764,-0.004197,0.005499,0.249940,0,0);-ms-transform:matrix(0.190764,-0.004197,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190764,-0.004197,0.005499,0.249940,0,0);}
.m5f_c00382{transform:matrix(0.190863,-0.006687,0.008753,0.249847,0,0);-ms-transform:matrix(0.190863,-0.006687,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190863,-0.006687,0.008753,0.249847,0,0);}
.m36_c00382{transform:matrix(0.191023,-0.006692,0.008753,0.249847,0,0);-ms-transform:matrix(0.191023,-0.006692,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191023,-0.006692,0.008753,0.249847,0,0);}
.mb9_c00382{transform:matrix(0.191309,-0.004209,0.005499,0.249940,0,0);-ms-transform:matrix(0.191309,-0.004209,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191309,-0.004209,0.005499,0.249940,0,0);}
.m31_c00382{transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);-ms-transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);}
.mc3_c00382{transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);-ms-transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);}
.m79_c00382{transform:matrix(0.192167,-0.006733,0.008753,0.249847,0,0);-ms-transform:matrix(0.192167,-0.006733,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192167,-0.006733,0.008753,0.249847,0,0);}
.m6b_c00382{transform:matrix(0.192287,-0.006737,0.008753,0.249847,0,0);-ms-transform:matrix(0.192287,-0.006737,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192287,-0.006737,0.008753,0.249847,0,0);}
.mad_c00382{transform:matrix(0.194283,-0.004274,0.005499,0.249940,0,0);-ms-transform:matrix(0.194283,-0.004274,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194283,-0.004274,0.005499,0.249940,0,0);}
.m96_c00382{transform:matrix(0.194567,-0.005837,0.007497,0.249888,0,0);-ms-transform:matrix(0.194567,-0.005837,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194567,-0.005837,0.007497,0.249888,0,0);}
.ma9_c00382{transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);-ms-transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194676,-0.006035,0.007746,0.249880,0,0);}
.mc0_c00382{transform:matrix(0.194953,-0.004289,0.005499,0.249940,0,0);-ms-transform:matrix(0.194953,-0.004289,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194953,-0.004289,0.005499,0.249940,0,0);}
.m25_c00382{transform:matrix(0.195295,-0.006842,0.008753,0.249847,0,0);-ms-transform:matrix(0.195295,-0.006842,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195295,-0.006842,0.008753,0.249847,0,0);}
.m95_c00382{transform:matrix(0.195547,-0.005866,0.007497,0.249888,0,0);-ms-transform:matrix(0.195547,-0.005866,0.007497,0.249888,0,0);-webkit-transform:matrix(0.195547,-0.005866,0.007497,0.249888,0,0);}
.m62_c00382{transform:matrix(0.195700,-0.006856,0.008753,0.249847,0,0);-ms-transform:matrix(0.195700,-0.006856,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195700,-0.006856,0.008753,0.249847,0,0);}
.m2f_c00382{transform:matrix(0.195780,-0.006859,0.008753,0.249847,0,0);-ms-transform:matrix(0.195780,-0.006859,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195780,-0.006859,0.008753,0.249847,0,0);}
.m7_c00382{transform:matrix(0.196969,-0.006901,0.008753,0.249847,0,0);-ms-transform:matrix(0.196969,-0.006901,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196969,-0.006901,0.008753,0.249847,0,0);}
.m65_c00382{transform:matrix(0.197044,-0.006903,0.008753,0.249847,0,0);-ms-transform:matrix(0.197044,-0.006903,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197044,-0.006903,0.008753,0.249847,0,0);}
.m9e_c00382{transform:matrix(0.197076,-0.005912,0.007497,0.249888,0,0);-ms-transform:matrix(0.197076,-0.005912,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197076,-0.005912,0.007497,0.249888,0,0);}
.ma4_c00382{transform:matrix(0.197695,-0.006129,0.007746,0.249880,0,0);-ms-transform:matrix(0.197695,-0.006129,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197695,-0.006129,0.007746,0.249880,0,0);}
.m4a_c00382{transform:matrix(0.197974,-0.006936,0.008753,0.249847,0,0);-ms-transform:matrix(0.197974,-0.006936,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197974,-0.006936,0.008753,0.249847,0,0);}
.mb3_c00382{transform:matrix(0.198132,-0.004359,0.005499,0.249940,0,0);-ms-transform:matrix(0.198132,-0.004359,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198132,-0.004359,0.005499,0.249940,0,0);}
.mc9_c00382{transform:matrix(0.198217,-0.004361,0.005499,0.249940,0,0);-ms-transform:matrix(0.198217,-0.004361,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198217,-0.004361,0.005499,0.249940,0,0);}
.m45_c00382{transform:matrix(0.198538,-0.006956,0.008753,0.249847,0,0);-ms-transform:matrix(0.198538,-0.006956,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198538,-0.006956,0.008753,0.249847,0,0);}
.md6_c00382{transform:matrix(0.198742,-0.004372,0.005499,0.249940,0,0);-ms-transform:matrix(0.198742,-0.004372,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198742,-0.004372,0.005499,0.249940,0,0);}
.m6d_c00382{transform:matrix(0.198843,-0.006966,0.008753,0.249847,0,0);-ms-transform:matrix(0.198843,-0.006966,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198843,-0.006966,0.008753,0.249847,0,0);}
.me2_c00382{transform:matrix(0.198897,-0.004376,0.005499,0.249940,0,0);-ms-transform:matrix(0.198897,-0.004376,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198897,-0.004376,0.005499,0.249940,0,0);}
.m86_c00382{transform:matrix(0.199210,-0.005976,0.007497,0.249888,0,0);-ms-transform:matrix(0.199210,-0.005976,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199210,-0.005976,0.007497,0.249888,0,0);}
.m63_c00382{transform:matrix(0.199368,-0.006985,0.008753,0.249847,0,0);-ms-transform:matrix(0.199368,-0.006985,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199368,-0.006985,0.008753,0.249847,0,0);}
.m4e_c00382{transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);-ms-transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200172,-0.007013,0.008753,0.249847,0,0);}
.m98_c00382{transform:matrix(0.200875,-0.006026,0.007497,0.249888,0,0);-ms-transform:matrix(0.200875,-0.006026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200875,-0.006026,0.007497,0.249888,0,0);}
.m5d_c00382{transform:matrix(0.201476,-0.007059,0.008753,0.249847,0,0);-ms-transform:matrix(0.201476,-0.007059,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201476,-0.007059,0.008753,0.249847,0,0);}
.m92_c00382{transform:matrix(0.201504,-0.006045,0.007497,0.249888,0,0);-ms-transform:matrix(0.201504,-0.006045,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201504,-0.006045,0.007497,0.249888,0,0);}
.md5_c00382{transform:matrix(0.201731,-0.004438,0.005499,0.249940,0,0);-ms-transform:matrix(0.201731,-0.004438,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201731,-0.004438,0.005499,0.249940,0,0);}
.m90_c00382{transform:matrix(0.201804,-0.006054,0.007497,0.249888,0,0);-ms-transform:matrix(0.201804,-0.006054,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201804,-0.006054,0.007497,0.249888,0,0);}
.m9_c00382{transform:matrix(0.202541,-0.007096,0.008753,0.249847,0,0);-ms-transform:matrix(0.202541,-0.007096,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202541,-0.007096,0.008753,0.249847,0,0);}
.m7b_c00382{transform:matrix(0.204510,-0.007165,0.008753,0.249847,0,0);-ms-transform:matrix(0.204510,-0.007165,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204510,-0.007165,0.008753,0.249847,0,0);}
.mf_c00382{transform:matrix(0.205079,-0.007185,0.008753,0.249847,0,0);-ms-transform:matrix(0.205079,-0.007185,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205079,-0.007185,0.008753,0.249847,0,0);}
.m6a_c00382{transform:matrix(0.205279,-0.007192,0.008753,0.249847,0,0);-ms-transform:matrix(0.205279,-0.007192,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205279,-0.007192,0.008753,0.249847,0,0);}
.me3_c00382{transform:matrix(0.205385,-0.004518,0.005499,0.249940,0,0);-ms-transform:matrix(0.205385,-0.004518,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205385,-0.004518,0.005499,0.249940,0,0);}
.mdb_c00382{transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);-ms-transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);}
.m3d_c00382{transform:matrix(0.206848,-0.007247,0.008753,0.249847,0,0);-ms-transform:matrix(0.206848,-0.007247,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206848,-0.007247,0.008753,0.249847,0,0);}
.mb1_c00382{transform:matrix(0.207295,-0.004560,0.005499,0.249940,0,0);-ms-transform:matrix(0.207295,-0.004560,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207295,-0.004560,0.005499,0.249940,0,0);}
.mae_c00382{transform:matrix(0.207440,-0.004564,0.005499,0.249940,0,0);-ms-transform:matrix(0.207440,-0.004564,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207440,-0.004564,0.005499,0.249940,0,0);}
.m10_c00382{transform:matrix(0.207803,-0.007280,0.008753,0.249847,0,0);-ms-transform:matrix(0.207803,-0.007280,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207803,-0.007280,0.008753,0.249847,0,0);}
.mdc_c00382{transform:matrix(0.208035,-0.004577,0.005499,0.249940,0,0);-ms-transform:matrix(0.208035,-0.004577,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208035,-0.004577,0.005499,0.249940,0,0);}
.m66_c00382{transform:matrix(0.208212,-0.007295,0.008753,0.249847,0,0);-ms-transform:matrix(0.208212,-0.007295,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208212,-0.007295,0.008753,0.249847,0,0);}
.m8d_c00382{transform:matrix(0.208506,-0.006255,0.007497,0.249888,0,0);-ms-transform:matrix(0.208506,-0.006255,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208506,-0.006255,0.007497,0.249888,0,0);}
.mca_c00382{transform:matrix(0.209094,-0.004600,0.005499,0.249940,0,0);-ms-transform:matrix(0.209094,-0.004600,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209094,-0.004600,0.005499,0.249940,0,0);}
.m26_c00382{transform:matrix(0.209222,-0.007330,0.008753,0.249847,0,0);-ms-transform:matrix(0.209222,-0.007330,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209222,-0.007330,0.008753,0.249847,0,0);}
.m35_c00382{transform:matrix(0.209506,-0.007340,0.008753,0.249847,0,0);-ms-transform:matrix(0.209506,-0.007340,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209506,-0.007340,0.008753,0.249847,0,0);}
.mba_c00382{transform:matrix(0.209519,-0.004609,0.005499,0.249940,0,0);-ms-transform:matrix(0.209519,-0.004609,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209519,-0.004609,0.005499,0.249940,0,0);}
.m28_c00382{transform:matrix(0.209971,-0.007356,0.008753,0.249847,0,0);-ms-transform:matrix(0.209971,-0.007356,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209971,-0.007356,0.008753,0.249847,0,0);}
.m7e_c00382{transform:matrix(0.210430,-0.006313,0.007497,0.249888,0,0);-ms-transform:matrix(0.210430,-0.006313,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210430,-0.006313,0.007497,0.249888,0,0);}
.mb0_c00382{transform:matrix(0.210574,-0.004633,0.005499,0.249940,0,0);-ms-transform:matrix(0.210574,-0.004633,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210574,-0.004633,0.005499,0.249940,0,0);}
.m4d_c00382{transform:matrix(0.210936,-0.007390,0.008753,0.249847,0,0);-ms-transform:matrix(0.210936,-0.007390,0.008753,0.249847,0,0);-webkit-transform:matrix(0.210936,-0.007390,0.008753,0.249847,0,0);}
.m53_c00382{transform:matrix(0.211051,-0.007394,0.008753,0.249847,0,0);-ms-transform:matrix(0.211051,-0.007394,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211051,-0.007394,0.008753,0.249847,0,0);}
.m8c_c00382{transform:matrix(0.211105,-0.006333,0.007497,0.249888,0,0);-ms-transform:matrix(0.211105,-0.006333,0.007497,0.249888,0,0);-webkit-transform:matrix(0.211105,-0.006333,0.007497,0.249888,0,0);}
.mc1_c00382{transform:matrix(0.211469,-0.004652,0.005499,0.249940,0,0);-ms-transform:matrix(0.211469,-0.004652,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211469,-0.004652,0.005499,0.249940,0,0);}
.ma0_c00382{transform:matrix(0.212045,-0.006361,0.007497,0.249888,0,0);-ms-transform:matrix(0.212045,-0.006361,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212045,-0.006361,0.007497,0.249888,0,0);}
.m21_c00382{transform:matrix(0.212170,-0.007433,0.008753,0.249847,0,0);-ms-transform:matrix(0.212170,-0.007433,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212170,-0.007433,0.008753,0.249847,0,0);}
.m3e_c00382{transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-ms-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);}
.mab_c00382{transform:matrix(0.212704,-0.004679,0.005499,0.249940,0,0);-ms-transform:matrix(0.212704,-0.004679,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212704,-0.004679,0.005499,0.249940,0,0);}
.m60_c00382{transform:matrix(0.212809,-0.007456,0.008753,0.249847,0,0);-ms-transform:matrix(0.212809,-0.007456,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212809,-0.007456,0.008753,0.249847,0,0);}
.m64_c00382{transform:matrix(0.213134,-0.007467,0.008753,0.249847,0,0);-ms-transform:matrix(0.213134,-0.007467,0.008753,0.249847,0,0);-webkit-transform:matrix(0.213134,-0.007467,0.008753,0.249847,0,0);}
.m49_c00382{transform:matrix(0.214314,-0.007508,0.008753,0.249847,0,0);-ms-transform:matrix(0.214314,-0.007508,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214314,-0.007508,0.008753,0.249847,0,0);}
.m71_c00382{transform:matrix(0.214503,-0.007515,0.008753,0.249847,0,0);-ms-transform:matrix(0.214503,-0.007515,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214503,-0.007515,0.008753,0.249847,0,0);}
.ma7_c00382{transform:matrix(0.215047,-0.006666,0.007746,0.249880,0,0);-ms-transform:matrix(0.215047,-0.006666,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215047,-0.006666,0.007746,0.249880,0,0);}
.m29_c00382{transform:matrix(0.215638,-0.007555,0.008753,0.249847,0,0);-ms-transform:matrix(0.215638,-0.007555,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215638,-0.007555,0.008753,0.249847,0,0);}
.m34_c00382{transform:matrix(0.217482,-0.007619,0.008753,0.249847,0,0);-ms-transform:matrix(0.217482,-0.007619,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217482,-0.007619,0.008753,0.249847,0,0);}
.ma3_c00382{transform:matrix(0.220054,-0.006822,0.007746,0.249880,0,0);-ms-transform:matrix(0.220054,-0.006822,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220054,-0.006822,0.007746,0.249880,0,0);}
.m24_c00382{transform:matrix(0.221174,-0.007749,0.008753,0.249847,0,0);-ms-transform:matrix(0.221174,-0.007749,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221174,-0.007749,0.008753,0.249847,0,0);}
.m61_c00382{transform:matrix(0.221409,-0.007757,0.008753,0.249847,0,0);-ms-transform:matrix(0.221409,-0.007757,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221409,-0.007757,0.008753,0.249847,0,0);}
.m3_c00382{transform:matrix(0.222543,-0.007797,0.008753,0.249847,0,0);-ms-transform:matrix(0.222543,-0.007797,0.008753,0.249847,0,0);-webkit-transform:matrix(0.222543,-0.007797,0.008753,0.249847,0,0);}
.mbe_c00382{transform:matrix(0.222681,-0.004899,0.005499,0.249940,0,0);-ms-transform:matrix(0.222681,-0.004899,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222681,-0.004899,0.005499,0.249940,0,0);}
.m9a_c00382{transform:matrix(0.222770,-0.006683,0.007497,0.249888,0,0);-ms-transform:matrix(0.222770,-0.006683,0.007497,0.249888,0,0);-webkit-transform:matrix(0.222770,-0.006683,0.007497,0.249888,0,0);}
.m88_c00382{transform:matrix(0.223345,-0.006700,0.007497,0.249888,0,0);-ms-transform:matrix(0.223345,-0.006700,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223345,-0.006700,0.007497,0.249888,0,0);}
.maa_c00382{transform:matrix(0.223671,-0.004921,0.005499,0.249940,0,0);-ms-transform:matrix(0.223671,-0.004921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223671,-0.004921,0.005499,0.249940,0,0);}
.mac_c00382{transform:matrix(0.223816,-0.004924,0.005499,0.249940,0,0);-ms-transform:matrix(0.223816,-0.004924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223816,-0.004924,0.005499,0.249940,0,0);}
.m20_c00382{transform:matrix(0.224132,-0.007852,0.008753,0.249847,0,0);-ms-transform:matrix(0.224132,-0.007852,0.008753,0.249847,0,0);-webkit-transform:matrix(0.224132,-0.007852,0.008753,0.249847,0,0);}
.ma5_c00382{transform:matrix(0.224617,-0.006963,0.007746,0.249880,0,0);-ms-transform:matrix(0.224617,-0.006963,0.007746,0.249880,0,0);-webkit-transform:matrix(0.224617,-0.006963,0.007746,0.249880,0,0);}
.m5b_c00382{transform:matrix(0.225332,-0.007895,0.008753,0.249847,0,0);-ms-transform:matrix(0.225332,-0.007895,0.008753,0.249847,0,0);-webkit-transform:matrix(0.225332,-0.007895,0.008753,0.249847,0,0);}
.m72_c00382{transform:matrix(0.227860,-0.007983,0.008753,0.249847,0,0);-ms-transform:matrix(0.227860,-0.007983,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227860,-0.007983,0.008753,0.249847,0,0);}
.ma6_c00382{transform:matrix(0.228870,-0.007095,0.007746,0.249880,0,0);-ms-transform:matrix(0.228870,-0.007095,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228870,-0.007095,0.007746,0.249880,0,0);}
.mc5_c00382{transform:matrix(0.229799,-0.005056,0.005499,0.249940,0,0);-ms-transform:matrix(0.229799,-0.005056,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229799,-0.005056,0.005499,0.249940,0,0);}
.m8f_c00382{transform:matrix(0.230126,-0.006904,0.007497,0.249888,0,0);-ms-transform:matrix(0.230126,-0.006904,0.007497,0.249888,0,0);-webkit-transform:matrix(0.230126,-0.006904,0.007497,0.249888,0,0);}
.m4c_c00382{transform:matrix(0.232173,-0.008134,0.008753,0.249847,0,0);-ms-transform:matrix(0.232173,-0.008134,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232173,-0.008134,0.008753,0.249847,0,0);}
.m8b_c00382{transform:matrix(0.232485,-0.006975,0.007497,0.249888,0,0);-ms-transform:matrix(0.232485,-0.006975,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232485,-0.006975,0.007497,0.249888,0,0);}
.mb5_c00382{transform:matrix(0.233299,-0.005133,0.005499,0.249940,0,0);-ms-transform:matrix(0.233299,-0.005133,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233299,-0.005133,0.005499,0.249940,0,0);}
.m6_c00382{transform:matrix(0.234066,-0.008201,0.008753,0.249847,0,0);-ms-transform:matrix(0.234066,-0.008201,0.008753,0.249847,0,0);-webkit-transform:matrix(0.234066,-0.008201,0.008753,0.249847,0,0);}
.md2_c00382{transform:matrix(0.234153,-0.005151,0.005499,0.249940,0,0);-ms-transform:matrix(0.234153,-0.005151,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234153,-0.005151,0.005499,0.249940,0,0);}
.mb6_c00382{transform:matrix(0.234408,-0.005157,0.005499,0.249940,0,0);-ms-transform:matrix(0.234408,-0.005157,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234408,-0.005157,0.005499,0.249940,0,0);}
.m23_c00382{transform:matrix(0.244035,-0.008550,0.008753,0.249847,0,0);-ms-transform:matrix(0.244035,-0.008550,0.008753,0.249847,0,0);-webkit-transform:matrix(0.244035,-0.008550,0.008753,0.249847,0,0);}
.m73_c00382{transform:matrix(0.245674,-0.008607,0.008753,0.249847,0,0);-ms-transform:matrix(0.245674,-0.008607,0.008753,0.249847,0,0);-webkit-transform:matrix(0.245674,-0.008607,0.008753,0.249847,0,0);}
.m93_c00382{transform:matrix(0.247239,-0.007417,0.007497,0.249888,0,0);-ms-transform:matrix(0.247239,-0.007417,0.007497,0.249888,0,0);-webkit-transform:matrix(0.247239,-0.007417,0.007497,0.249888,0,0);}
.m6f_c00382{transform:matrix(0.247798,-0.008682,0.008753,0.249847,0,0);-ms-transform:matrix(0.247798,-0.008682,0.008753,0.249847,0,0);-webkit-transform:matrix(0.247798,-0.008682,0.008753,0.249847,0,0);}
.m69_c00382{transform:matrix(0.251351,-0.008806,0.008753,0.249847,0,0);-ms-transform:matrix(0.251351,-0.008806,0.008753,0.249847,0,0);-webkit-transform:matrix(0.251351,-0.008806,0.008753,0.249847,0,0);}
.md4_c00382{transform:matrix(0.256683,-0.005647,0.005499,0.249940,0,0);-ms-transform:matrix(0.256683,-0.005647,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256683,-0.005647,0.005499,0.249940,0,0);}
.m27_c00382{transform:matrix(0.258217,-0.009047,0.008753,0.249847,0,0);-ms-transform:matrix(0.258217,-0.009047,0.008753,0.249847,0,0);-webkit-transform:matrix(0.258217,-0.009047,0.008753,0.249847,0,0);}
.md3_c00382{transform:matrix(0.259852,-0.005717,0.005499,0.249940,0,0);-ms-transform:matrix(0.259852,-0.005717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259852,-0.005717,0.005499,0.249940,0,0);}
.m48_c00382{transform:matrix(0.272348,-0.009542,0.008753,0.249847,0,0);-ms-transform:matrix(0.272348,-0.009542,0.008753,0.249847,0,0);-webkit-transform:matrix(0.272348,-0.009542,0.008753,0.249847,0,0);}
.m3f_c00382{transform:matrix(0.272353,-0.009542,0.008753,0.249847,0,0);-ms-transform:matrix(0.272353,-0.009542,0.008753,0.249847,0,0);-webkit-transform:matrix(0.272353,-0.009542,0.008753,0.249847,0,0);}
.mc4_c00382{transform:matrix(0.274354,-0.006036,0.005499,0.249940,0,0);-ms-transform:matrix(0.274354,-0.006036,0.005499,0.249940,0,0);-webkit-transform:matrix(0.274354,-0.006036,0.005499,0.249940,0,0);}
.m4_c00382{transform:matrix(0.284930,-0.009983,0.008753,0.249847,0,0);-ms-transform:matrix(0.284930,-0.009983,0.008753,0.249847,0,0);-webkit-transform:matrix(0.284930,-0.009983,0.008753,0.249847,0,0);}
.m22_c00382{transform:matrix(0.290747,-0.010186,0.008753,0.249847,0,0);-ms-transform:matrix(0.290747,-0.010186,0.008753,0.249847,0,0);-webkit-transform:matrix(0.290747,-0.010186,0.008753,0.249847,0,0);}
.mcb_c00382{transform:matrix(0.302902,-0.006664,0.005499,0.249940,0,0);-ms-transform:matrix(0.302902,-0.006664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.302902,-0.006664,0.005499,0.249940,0,0);}
.m7d_c00382{transform:matrix(0.308641,-0.009259,0.007497,0.249888,0,0);-ms-transform:matrix(0.308641,-0.009259,0.007497,0.249888,0,0);-webkit-transform:matrix(0.308641,-0.009259,0.007497,0.249888,0,0);}
.m94_c00382{transform:matrix(0.350028,-0.010501,0.007497,0.249888,0,0);-ms-transform:matrix(0.350028,-0.010501,0.007497,0.249888,0,0);-webkit-transform:matrix(0.350028,-0.010501,0.007497,0.249888,0,0);}
.m7c_c00382{transform:matrix(0.501642,-0.017575,0.008753,0.249847,0,0);-ms-transform:matrix(0.501642,-0.017575,0.008753,0.249847,0,0);-webkit-transform:matrix(0.501642,-0.017575,0.008753,0.249847,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:0.000000px;}
.fc0_c00382{color:transparent;}
.fs5_c00382{font-size:55.628459px;}
.fsd_c00382{font-size:58.777240px;}
.fs9_c00382{font-size:59.826834px;}
.fs13_c00382{font-size:59.878751px;}
.fsc_c00382{font-size:60.876427px;}
.fs14_c00382{font-size:60.914736px;}
.fs8_c00382{font-size:61.926021px;}
.fsf_c00382{font-size:61.977871px;}
.fsb_c00382{font-size:62.975614px;}
.fs15_c00382{font-size:63.015244px;}
.fs7_c00382{font-size:64.025208px;}
.fs6_c00382{font-size:65.074801px;}
.fs16_c00382{font-size:65.115752px;}
.fs11_c00382{font-size:65.129288px;}
.fs2_c00382{font-size:66.124395px;}
.fs1a_c00382{font-size:66.166006px;}
.fs4_c00382{font-size:67.173989px;}
.fs10_c00382{font-size:67.230233px;}
.fs1_c00382{font-size:68.223582px;}
.fs18_c00382{font-size:68.266515px;}
.fsa_c00382{font-size:69.273176px;}
.fs12_c00382{font-size:69.331178px;}
.fse_c00382{font-size:70.381650px;}
.fs3_c00382{font-size:72.421956px;}
.fs17_c00382{font-size:72.467531px;}
.fs0_c00382{font-size:80.818705px;}
.fs19_c00382{font-size:89.271596px;}
.y0_c00382{bottom:0.000000px;}
.ye3_c00382{bottom:26.423667px;}
.ye4_c00382{bottom:27.104961px;}
.ye5_c00382{bottom:27.603573px;}
.ye6_c00382{bottom:28.025142px;}
.ye7_c00382{bottom:28.496361px;}
.ye8_c00382{bottom:29.174253px;}
.ye9_c00382{bottom:29.556972px;}
.ydb_c00382{bottom:40.481823px;}
.ydc_c00382{bottom:41.800896px;}
.ydd_c00382{bottom:42.494091px;}
.yde_c00382{bottom:44.225907px;}
.ydf_c00382{bottom:44.829615px;}
.ye0_c00382{bottom:46.723101px;}
.ye1_c00382{bottom:47.626593px;}
.ye2_c00382{bottom:48.851511px;}
.yd3_c00382{bottom:58.029360px;}
.yd4_c00382{bottom:58.696551px;}
.yd5_c00382{bottom:60.278889px;}
.yd6_c00382{bottom:60.718101px;}
.yd7_c00382{bottom:62.360193px;}
.yd8_c00382{bottom:62.887782px;}
.yd9_c00382{bottom:64.480200px;}
.yda_c00382{bottom:64.867560px;}
.ycd_c00382{bottom:76.127019px;}
.yce_c00382{bottom:77.797899px;}
.ycf_c00382{bottom:78.118461px;}
.yd0_c00382{bottom:79.719540px;}
.yd1_c00382{bottom:82.070874px;}
.yd2_c00382{bottom:82.501392px;}
.yc6_c00382{bottom:92.867763px;}
.yc7_c00382{bottom:93.126429px;}
.yc8_c00382{bottom:93.573954px;}
.yc9_c00382{bottom:94.869756px;}
.yca_c00382{bottom:95.452620px;}
.ycb_c00382{bottom:96.147228px;}
.ycc_c00382{bottom:97.929459px;}
.ybf_c00382{bottom:108.797748px;}
.yc0_c00382{bottom:109.731393px;}
.yc1_c00382{bottom:110.860560px;}
.yc2_c00382{bottom:112.595544px;}
.yc3_c00382{bottom:113.965170px;}
.yc4_c00382{bottom:114.359793px;}
.yc5_c00382{bottom:115.010334px;}
.ybb_c00382{bottom:127.973967px;}
.ybc_c00382{bottom:129.132477px;}
.ybd_c00382{bottom:129.682266px;}
.ybe_c00382{bottom:131.044053px;}
.yb4_c00382{bottom:142.561266px;}
.yb5_c00382{bottom:143.203956px;}
.yb6_c00382{bottom:144.374715px;}
.yb7_c00382{bottom:145.315953px;}
.yb8_c00382{bottom:147.068544px;}
.yb9_c00382{bottom:147.367785px;}
.yba_c00382{bottom:148.135425px;}
.yac_c00382{bottom:161.466000px;}
.yad_c00382{bottom:162.582192px;}
.yae_c00382{bottom:163.788243px;}
.yaf_c00382{bottom:164.231664px;}
.yb0_c00382{bottom:164.873415px;}
.yb1_c00382{bottom:165.654492px;}
.yb2_c00382{bottom:166.876284px;}
.yb3_c00382{bottom:167.502459px;}
.ya5_c00382{bottom:175.515000px;}
.ya6_c00382{bottom:177.673158px;}
.ya7_c00382{bottom:178.192377px;}
.ya8_c00382{bottom:180.528816px;}
.ya9_c00382{bottom:182.432898px;}
.yaa_c00382{bottom:183.366711px;}
.yab_c00382{bottom:184.147353px;}
.y9d_c00382{bottom:193.566015px;}
.y9e_c00382{bottom:194.413365px;}
.y9f_c00382{bottom:195.081435px;}
.ya0_c00382{bottom:196.484895px;}
.ya1_c00382{bottom:196.907070px;}
.ya2_c00382{bottom:197.351400px;}
.ya3_c00382{bottom:199.211715px;}
.ya4_c00382{bottom:200.781240px;}
.y95_c00382{bottom:209.236395px;}
.y96_c00382{bottom:210.664515px;}
.y97_c00382{bottom:211.092645px;}
.y98_c00382{bottom:212.348775px;}
.y99_c00382{bottom:213.676815px;}
.y9a_c00382{bottom:214.188825px;}
.y9b_c00382{bottom:216.157215px;}
.y9c_c00382{bottom:217.615530px;}
.y8e_c00382{bottom:227.336820px;}
.y8f_c00382{bottom:229.730220px;}
.y90_c00382{bottom:230.944350px;}
.y91_c00382{bottom:231.462390px;}
.y92_c00382{bottom:234.050580px;}
.y93_c00382{bottom:234.454950px;}
.y94_c00382{bottom:235.002225px;}
.y88_c00382{bottom:245.700510px;}
.y89_c00382{bottom:246.904380px;}
.y8a_c00382{bottom:247.451295px;}
.y8b_c00382{bottom:249.452055px;}
.y8c_c00382{bottom:250.420095px;}
.y8d_c00382{bottom:250.981545px;}
.y7f_c00382{bottom:261.912000px;}
.y80_c00382{bottom:263.685585px;}
.y81_c00382{bottom:265.185120px;}
.y82_c00382{bottom:266.088270px;}
.y83_c00382{bottom:266.684880px;}
.y84_c00382{bottom:267.632625px;}
.y85_c00382{bottom:268.171455px;}
.y86_c00382{bottom:269.191830px;}
.y87_c00382{bottom:270.066495px;}
.y7c_c00382{bottom:280.372974px;}
.y7d_c00382{bottom:281.044056px;}
.y7e_c00382{bottom:283.979899px;}
.y76_c00382{bottom:296.844553px;}
.y77_c00382{bottom:297.465330px;}
.y78_c00382{bottom:299.122767px;}
.y79_c00382{bottom:300.477502px;}
.y7a_c00382{bottom:301.112397px;}
.y7b_c00382{bottom:302.703678px;}
.y70_c00382{bottom:314.117784px;}
.y71_c00382{bottom:315.914817px;}
.y72_c00382{bottom:318.274860px;}
.y73_c00382{bottom:319.153140px;}
.y74_c00382{bottom:320.810045px;}
.y75_c00382{bottom:323.352971px;}
.y68_c00382{bottom:330.311976px;}
.y69_c00382{bottom:331.475665px;}
.y6a_c00382{bottom:332.267358px;}
.y6b_c00382{bottom:334.715535px;}
.y6c_c00382{bottom:335.143129px;}
.y6d_c00382{bottom:338.080741px;}
.y6e_c00382{bottom:338.862669px;}
.y6f_c00382{bottom:339.615301px;}
.y62_c00382{bottom:346.238134px;}
.y63_c00382{bottom:348.616437px;}
.y64_c00382{bottom:350.190964px;}
.y65_c00382{bottom:352.277262px;}
.y66_c00382{bottom:353.930014px;}
.y67_c00382{bottom:355.353762px;}
.y5b_c00382{bottom:362.428192px;}
.y5c_c00382{bottom:363.948112px;}
.y5d_c00382{bottom:364.638202px;}
.y5e_c00382{bottom:367.824765px;}
.y5f_c00382{bottom:368.787300px;}
.y60_c00382{bottom:370.825593px;}
.y61_c00382{bottom:372.823957px;}
.y52_c00382{bottom:380.238138px;}
.y53_c00382{bottom:382.076019px;}
.y54_c00382{bottom:382.741395px;}
.y55_c00382{bottom:384.940701px;}
.y56_c00382{bottom:385.351491px;}
.y57_c00382{bottom:386.339608px;}
.y58_c00382{bottom:386.749005px;}
.y59_c00382{bottom:387.510667px;}
.y5a_c00382{bottom:388.331169px;}
.y4a_c00382{bottom:396.969796px;}
.y4b_c00382{bottom:397.323615px;}
.y4c_c00382{bottom:399.518643px;}
.y4d_c00382{bottom:400.888704px;}
.y4e_c00382{bottom:401.442198px;}
.y4f_c00382{bottom:403.067566px;}
.y50_c00382{bottom:403.733164px;}
.y51_c00382{bottom:404.908642px;}
.y43_c00382{bottom:413.976133px;}
.y44_c00382{bottom:415.360810px;}
.y45_c00382{bottom:416.987089px;}
.y46_c00382{bottom:417.461005px;}
.y47_c00382{bottom:419.096758px;}
.y48_c00382{bottom:420.793437px;}
.y49_c00382{bottom:421.332870px;}
.y3c_c00382{bottom:430.977603px;}
.y3d_c00382{bottom:431.878078px;}
.y3e_c00382{bottom:432.392062px;}
.y3f_c00382{bottom:433.100340px;}
.y40_c00382{bottom:434.925742px;}
.y41_c00382{bottom:437.223252px;}
.y42_c00382{bottom:438.569383px;}
.y35_c00382{bottom:447.440872px;}
.y36_c00382{bottom:449.501697px;}
.y37_c00382{bottom:449.931958px;}
.y38_c00382{bottom:452.684553px;}
.y39_c00382{bottom:453.259369px;}
.y3a_c00382{bottom:453.924793px;}
.y3b_c00382{bottom:454.893975px;}
.y2d_c00382{bottom:463.097617px;}
.y2e_c00382{bottom:463.810824px;}
.y2f_c00382{bottom:464.293677px;}
.y30_c00382{bottom:466.105101px;}
.y31_c00382{bottom:466.784425px;}
.y32_c00382{bottom:468.759670px;}
.y33_c00382{bottom:469.573630px;}
.y34_c00382{bottom:471.652306px;}
.y24_c00382{bottom:480.375271px;}
.y25_c00382{bottom:480.907938px;}
.y26_c00382{bottom:482.240050px;}
.y27_c00382{bottom:484.462497px;}
.y28_c00382{bottom:485.154445px;}
.y29_c00382{bottom:486.343131px;}
.y2a_c00382{bottom:487.114365px;}
.y2b_c00382{bottom:488.101830px;}
.y2c_c00382{bottom:488.718455px;}
.y1c_c00382{bottom:497.914927px;}
.y1d_c00382{bottom:500.057182px;}
.y1e_c00382{bottom:500.642062px;}
.y1f_c00382{bottom:501.308185px;}
.y20_c00382{bottom:502.092292px;}
.y21_c00382{bottom:503.352898px;}
.y22_c00382{bottom:503.941582px;}
.y23_c00382{bottom:506.225280px;}
.y13_c00382{bottom:514.115125px;}
.y14_c00382{bottom:514.826920px;}
.y15_c00382{bottom:515.825155px;}
.y16_c00382{bottom:516.459880px;}
.y17_c00382{bottom:518.019183px;}
.y18_c00382{bottom:519.479733px;}
.y19_c00382{bottom:520.532988px;}
.y1a_c00382{bottom:521.688513px;}
.y1b_c00382{bottom:523.692333px;}
.yd_c00382{bottom:531.117595px;}
.ye_c00382{bottom:531.979330px;}
.yf_c00382{bottom:534.077598px;}
.y10_c00382{bottom:535.420968px;}
.y11_c00382{bottom:537.264243px;}
.y12_c00382{bottom:539.620128px;}
.y5_c00382{bottom:548.122510px;}
.y6_c00382{bottom:550.708191px;}
.y7_c00382{bottom:551.426656px;}
.y8_c00382{bottom:554.212423px;}
.y9_c00382{bottom:554.685652px;}
.ya_c00382{bottom:555.367893px;}
.yb_c00382{bottom:557.011263px;}
.yc_c00382{bottom:558.157464px;}
.y1_c00382{bottom:561.871500px;}
.y2_c00382{bottom:564.637462px;}
.y3_c00382{bottom:566.116177px;}
.y4_c00382{bottom:569.392493px;}
.h7_c00382{height:55.628459px;}
.hf_c00382{height:58.777240px;}
.hb_c00382{height:59.826834px;}
.h15_c00382{height:59.878751px;}
.he_c00382{height:60.876427px;}
.h16_c00382{height:60.914736px;}
.ha_c00382{height:61.926021px;}
.h11_c00382{height:61.977871px;}
.hd_c00382{height:62.975614px;}
.h17_c00382{height:63.015244px;}
.h9_c00382{height:64.025208px;}
.h8_c00382{height:65.074801px;}
.h18_c00382{height:65.115752px;}
.h13_c00382{height:65.129288px;}
.h4_c00382{height:66.124395px;}
.h1c_c00382{height:66.166006px;}
.h6_c00382{height:67.173989px;}
.h12_c00382{height:67.230233px;}
.h3_c00382{height:68.223582px;}
.h1a_c00382{height:68.266515px;}
.hc_c00382{height:69.273176px;}
.h14_c00382{height:69.331178px;}
.h10_c00382{height:70.381650px;}
.h5_c00382{height:72.421956px;}
.h19_c00382{height:72.467531px;}
.h2_c00382{height:80.818705px;}
.h1b_c00382{height:89.271596px;}
.h0_c00382{height:613.170000px;}
.h1_c00382{height:613.500000px;}
.w0_c00382{width:359.100000px;}
.w1_c00382{width:359.250000px;}
.x0_c00382{left:0.000000px;}
.x5_c00382{left:13.725406px;}
.x19_c00382{left:14.960812px;}
.x2f_c00382{left:16.554294px;}
.x3f_c00382{left:17.682306px;}
.x1_c00382{left:18.946500px;}
.x59_c00382{left:20.066085px;}
.x3a_c00382{left:21.361577px;}
.x71_c00382{left:22.596324px;}
.x7b_c00382{left:30.019452px;}
.x73_c00382{left:31.340517px;}
.x21_c00382{left:32.800053px;}
.x11_c00382{left:34.835929px;}
.xd_c00382{left:37.720282px;}
.x28_c00382{left:38.731257px;}
.x74_c00382{left:42.143055px;}
.x54_c00382{left:47.769093px;}
.x30_c00382{left:49.836281px;}
.x4c_c00382{left:52.756748px;}
.x29_c00382{left:54.311868px;}
.x7c_c00382{left:55.707708px;}
.x44_c00382{left:59.026250px;}
.x75_c00382{left:60.779730px;}
.x12_c00382{left:63.328408px;}
.x7f_c00382{left:65.781606px;}
.x31_c00382{left:68.832074px;}
.x6d_c00382{left:72.597000px;}
.x4e_c00382{left:74.359185px;}
.x22_c00382{left:75.747106px;}
.x45_c00382{left:77.652791px;}
.x40_c00382{left:78.876771px;}
.x13_c00382{left:81.445273px;}
.x61_c00382{left:82.514040px;}
.x6_c00382{left:85.472565px;}
.x69_c00382{left:87.088500px;}
.x1a_c00382{left:88.739962px;}
.x32_c00382{left:95.043693px;}
.x51_c00382{left:96.748926px;}
.x2_c00382{left:97.894973px;}
.x5a_c00382{left:99.694710px;}
.x41_c00382{left:101.037477px;}
.x5d_c00382{left:104.077305px;}
.x7_c00382{left:105.422911px;}
.x1b_c00382{left:108.860026px;}
.x2a_c00382{left:112.695624px;}
.x76_c00382{left:114.768354px;}
.x7d_c00382{left:116.581362px;}
.x62_c00382{left:124.385040px;}
.x14_c00382{left:125.952222px;}
.x6e_c00382{left:127.417500px;}
.x35_c00382{left:128.800229px;}
.x1c_c00382{left:131.812885px;}
.x66_c00382{left:133.172430px;}
.x2b_c00382{left:134.569277px;}
.xe_c00382{left:135.954450px;}
.x77_c00382{left:139.079298px;}
.x3_c00382{left:140.101723px;}
.x52_c00382{left:143.425031px;}
.x36_c00382{left:146.352599px;}
.x23_c00382{left:147.361458px;}
.x67_c00382{left:149.396865px;}
.x3b_c00382{left:156.343338px;}
.x81_c00382{left:157.571931px;}
.x1d_c00382{left:158.818528px;}
.x4d_c00382{left:160.477151px;}
.x79_c00382{left:161.546127px;}
.x33_c00382{left:162.562526px;}
.x46_c00382{left:163.681632px;}
.x53_c00382{left:165.315243px;}
.x68_c00382{left:166.459890px;}
.x15_c00382{left:167.640492px;}
.x24_c00382{left:169.638259px;}
.x42_c00382{left:174.261003px;}
.x3c_c00382{left:175.396260px;}
.x6f_c00382{left:176.743500px;}
.x55_c00382{left:178.408500px;}
.x8_c00382{left:182.709814px;}
.x63_c00382{left:185.720040px;}
.xf_c00382{left:188.566785px;}
.x47_c00382{left:189.656292px;}
.x5b_c00382{left:190.658535px;}
.x82_c00382{left:193.793592px;}
.x9_c00382{left:195.831706px;}
.x16_c00382{left:197.703399px;}
.x1e_c00382{left:202.251196px;}
.x37_c00382{left:206.830982px;}
.x25_c00382{left:207.934785px;}
.x56_c00382{left:210.000000px;}
.x70_c00382{left:212.247000px;}
.xa_c00382{left:214.748088px;}
.x7e_c00382{left:216.954051px;}
.x43_c00382{left:220.827536px;}
.x1f_c00382{left:222.522661px;}
.x2c_c00382{left:224.458910px;}
.x4f_c00382{left:227.144276px;}
.x72_c00382{left:229.578822px;}
.x17_c00382{left:230.685384px;}
.x4_c00382{left:233.617115px;}
.x5c_c00382{left:234.637065px;}
.x4a_c00382{left:237.635552px;}
.x6a_c00382{left:240.628500px;}
.x78_c00382{left:242.249244px;}
.x48_c00382{left:244.708848px;}
.x83_c00382{left:245.889888px;}
.x2d_c00382{left:247.018646px;}
.x64_c00382{left:251.333040px;}
.x5e_c00382{left:253.043760px;}
.x3d_c00382{left:254.319365px;}
.x10_c00382{left:255.810474px;}
.xb_c00382{left:260.369844px;}
.x57_c00382{left:261.973500px;}
.x26_c00382{left:264.599499px;}
.x5f_c00382{left:266.973165px;}
.x7a_c00382{left:268.552722px;}
.x38_c00382{left:269.562240px;}
.x6b_c00382{left:270.751500px;}
.x84_c00382{left:275.360229px;}
.x4b_c00382{left:278.273373px;}
.x2e_c00382{left:281.576514px;}
.x27_c00382{left:284.469395px;}
.x60_c00382{left:285.866250px;}
.x18_c00382{left:287.880132px;}
.x39_c00382{left:289.541364px;}
.x58_c00382{left:291.129000px;}
.xc_c00382{left:292.186392px;}
.x80_c00382{left:293.219094px;}
.x3e_c00382{left:294.808349px;}
.x6c_c00382{left:295.933500px;}
.x34_c00382{left:297.352886px;}
.x49_c00382{left:298.664555px;}
.x65_c00382{left:299.943540px;}
.x20_c00382{left:301.195464px;}
.x50_c00382{left:306.535661px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.fs5_c00382{font-size:49.447519pt;}
.fsd_c00382{font-size:52.246436pt;}
.fs9_c00382{font-size:53.179408pt;}
.fs13_c00382{font-size:53.225556pt;}
.fsc_c00382{font-size:54.112380pt;}
.fs14_c00382{font-size:54.146432pt;}
.fs8_c00382{font-size:55.045352pt;}
.fsf_c00382{font-size:55.091441pt;}
.fsb_c00382{font-size:55.978324pt;}
.fs15_c00382{font-size:56.013550pt;}
.fs7_c00382{font-size:56.911296pt;}
.fs6_c00382{font-size:57.844268pt;}
.fs16_c00382{font-size:57.880669pt;}
.fs11_c00382{font-size:57.892701pt;}
.fs2_c00382{font-size:58.777240pt;}
.fs1a_c00382{font-size:58.814228pt;}
.fs4_c00382{font-size:59.710212pt;}
.fs10_c00382{font-size:59.760207pt;}
.fs1_c00382{font-size:60.643184pt;}
.fs18_c00382{font-size:60.681346pt;}
.fsa_c00382{font-size:61.576156pt;}
.fs12_c00382{font-size:61.627714pt;}
.fse_c00382{font-size:62.561467pt;}
.fs3_c00382{font-size:64.375072pt;}
.fs17_c00382{font-size:64.415583pt;}
.fs0_c00382{font-size:71.838849pt;}
.fs19_c00382{font-size:79.352530pt;}
.y0_c00382{bottom:0.000000pt;}
.ye3_c00382{bottom:23.487704pt;}
.ye4_c00382{bottom:24.093299pt;}
.ye5_c00382{bottom:24.536509pt;}
.ye6_c00382{bottom:24.911237pt;}
.ye7_c00382{bottom:25.330099pt;}
.ye8_c00382{bottom:25.932669pt;}
.ye9_c00382{bottom:26.272864pt;}
.ydb_c00382{bottom:35.983843pt;}
.ydc_c00382{bottom:37.156352pt;}
.ydd_c00382{bottom:37.772525pt;}
.yde_c00382{bottom:39.311917pt;}
.ydf_c00382{bottom:39.848547pt;}
.ye0_c00382{bottom:41.531645pt;}
.ye1_c00382{bottom:42.334749pt;}
.ye2_c00382{bottom:43.423565pt;}
.yd3_c00382{bottom:51.581653pt;}
.yd4_c00382{bottom:52.174712pt;}
.yd5_c00382{bottom:53.581235pt;}
.yd6_c00382{bottom:53.971645pt;}
.yd7_c00382{bottom:55.431283pt;}
.yd8_c00382{bottom:55.900251pt;}
.yd9_c00382{bottom:57.315733pt;}
.yda_c00382{bottom:57.660053pt;}
.ycd_c00382{bottom:67.668461pt;}
.yce_c00382{bottom:69.153688pt;}
.ycf_c00382{bottom:69.438632pt;}
.yd0_c00382{bottom:70.861813pt;}
.yd1_c00382{bottom:72.951888pt;}
.yd2_c00382{bottom:73.334571pt;}
.yc6_c00382{bottom:82.549123pt;}
.yc7_c00382{bottom:82.779048pt;}
.yc8_c00382{bottom:83.176848pt;}
.yc9_c00382{bottom:84.328672pt;}
.yca_c00382{bottom:84.846773pt;}
.ycb_c00382{bottom:85.464203pt;}
.ycc_c00382{bottom:87.048408pt;}
.ybf_c00382{bottom:96.709109pt;}
.yc0_c00382{bottom:97.539016pt;}
.yc1_c00382{bottom:98.542720pt;}
.yc2_c00382{bottom:100.084928pt;}
.yc3_c00382{bottom:101.302373pt;}
.yc4_c00382{bottom:101.653149pt;}
.yc5_c00382{bottom:102.231408pt;}
.ybb_c00382{bottom:113.754637pt;}
.ybc_c00382{bottom:114.784424pt;}
.ybd_c00382{bottom:115.273125pt;}
.ybe_c00382{bottom:116.483603pt;}
.yb4_c00382{bottom:126.721125pt;}
.yb5_c00382{bottom:127.292405pt;}
.yb6_c00382{bottom:128.333080pt;}
.yb7_c00382{bottom:129.169736pt;}
.yb8_c00382{bottom:130.727595pt;}
.yb9_c00382{bottom:130.993587pt;}
.yba_c00382{bottom:131.675933pt;}
.yac_c00382{bottom:143.525333pt;}
.yad_c00382{bottom:144.517504pt;}
.yae_c00382{bottom:145.589549pt;}
.yaf_c00382{bottom:145.983701pt;}
.yb0_c00382{bottom:146.554147pt;}
.yb1_c00382{bottom:147.248437pt;}
.yb2_c00382{bottom:148.334475pt;}
.yb3_c00382{bottom:148.891075pt;}
.ya5_c00382{bottom:156.013333pt;}
.ya6_c00382{bottom:157.931696pt;}
.ya7_c00382{bottom:158.393224pt;}
.ya8_c00382{bottom:160.470059pt;}
.ya9_c00382{bottom:162.162576pt;}
.yaa_c00382{bottom:162.992632pt;}
.yab_c00382{bottom:163.686536pt;}
.y9d_c00382{bottom:172.058680pt;}
.y9e_c00382{bottom:172.811880pt;}
.y9f_c00382{bottom:173.405720pt;}
.ya0_c00382{bottom:174.653240pt;}
.ya1_c00382{bottom:175.028507pt;}
.ya2_c00382{bottom:175.423467pt;}
.ya3_c00382{bottom:177.077080pt;}
.ya4_c00382{bottom:178.472213pt;}
.y95_c00382{bottom:185.987907pt;}
.y96_c00382{bottom:187.257347pt;}
.y97_c00382{bottom:187.637907pt;}
.y98_c00382{bottom:188.754467pt;}
.y99_c00382{bottom:189.934947pt;}
.y9a_c00382{bottom:190.390067pt;}
.y9b_c00382{bottom:192.139747pt;}
.y9c_c00382{bottom:193.436027pt;}
.y8e_c00382{bottom:202.077173pt;}
.y8f_c00382{bottom:204.204640pt;}
.y90_c00382{bottom:205.283867pt;}
.y91_c00382{bottom:205.744347pt;}
.y92_c00382{bottom:208.044960pt;}
.y93_c00382{bottom:208.404400pt;}
.y94_c00382{bottom:208.890867pt;}
.y88_c00382{bottom:218.400453pt;}
.y89_c00382{bottom:219.470560pt;}
.y8a_c00382{bottom:219.956707pt;}
.y8b_c00382{bottom:221.735160pt;}
.y8c_c00382{bottom:222.595640pt;}
.y8d_c00382{bottom:223.094707pt;}
.y7f_c00382{bottom:232.810667pt;}
.y80_c00382{bottom:234.387187pt;}
.y81_c00382{bottom:235.720107pt;}
.y82_c00382{bottom:236.522907pt;}
.y83_c00382{bottom:237.053227pt;}
.y84_c00382{bottom:237.895667pt;}
.y85_c00382{bottom:238.374627pt;}
.y86_c00382{bottom:239.281627pt;}
.y87_c00382{bottom:240.059107pt;}
.y7c_c00382{bottom:249.220421pt;}
.y7d_c00382{bottom:249.816939pt;}
.y7e_c00382{bottom:252.426577pt;}
.y76_c00382{bottom:263.861825pt;}
.y77_c00382{bottom:264.413627pt;}
.y78_c00382{bottom:265.886904pt;}
.y79_c00382{bottom:267.091113pt;}
.y7a_c00382{bottom:267.655464pt;}
.y7b_c00382{bottom:269.069936pt;}
.y70_c00382{bottom:279.215808pt;}
.y71_c00382{bottom:280.813171pt;}
.y72_c00382{bottom:282.910987pt;}
.y73_c00382{bottom:283.691680pt;}
.y74_c00382{bottom:285.164484pt;}
.y75_c00382{bottom:287.424863pt;}
.y68_c00382{bottom:293.610645pt;}
.y69_c00382{bottom:294.645036pt;}
.y6a_c00382{bottom:295.348763pt;}
.y6b_c00382{bottom:297.524920pt;}
.y6c_c00382{bottom:297.905004pt;}
.y6d_c00382{bottom:300.516215pt;}
.y6e_c00382{bottom:301.211261pt;}
.y6f_c00382{bottom:301.880268pt;}
.y62_c00382{bottom:307.767231pt;}
.y63_c00382{bottom:309.881277pt;}
.y64_c00382{bottom:311.280857pt;}
.y65_c00382{bottom:313.135344pt;}
.y66_c00382{bottom:314.604457pt;}
.y67_c00382{bottom:315.870011pt;}
.y5b_c00382{bottom:322.158393pt;}
.y5c_c00382{bottom:323.509433pt;}
.y5d_c00382{bottom:324.122847pt;}
.y5e_c00382{bottom:326.955347pt;}
.y5f_c00382{bottom:327.810933pt;}
.y60_c00382{bottom:329.622749pt;}
.y61_c00382{bottom:331.399073pt;}
.y52_c00382{bottom:337.989456pt;}
.y53_c00382{bottom:339.623128pt;}
.y54_c00382{bottom:340.214573pt;}
.y55_c00382{bottom:342.169512pt;}
.y56_c00382{bottom:342.534659pt;}
.y57_c00382{bottom:343.412985pt;}
.y58_c00382{bottom:343.776893pt;}
.y59_c00382{bottom:344.453927pt;}
.y5a_c00382{bottom:345.183261pt;}
.y4a_c00382{bottom:352.862041pt;}
.y4b_c00382{bottom:353.176547pt;}
.y4c_c00382{bottom:355.127683pt;}
.y4d_c00382{bottom:356.345515pt;}
.y4e_c00382{bottom:356.837509pt;}
.y4f_c00382{bottom:358.282281pt;}
.y50_c00382{bottom:358.873924pt;}
.y51_c00382{bottom:359.918793pt;}
.y43_c00382{bottom:367.978785pt;}
.y44_c00382{bottom:369.209609pt;}
.y45_c00382{bottom:370.655191pt;}
.y46_c00382{bottom:371.076449pt;}
.y47_c00382{bottom:372.530452pt;}
.y48_c00382{bottom:374.038611pt;}
.y49_c00382{bottom:374.518107pt;}
.y3c_c00382{bottom:383.091203pt;}
.y3d_c00382{bottom:383.891625pt;}
.y3e_c00382{bottom:384.348500pt;}
.y3f_c00382{bottom:384.978080pt;}
.y40_c00382{bottom:386.600660pt;}
.y41_c00382{bottom:388.642891pt;}
.y42_c00382{bottom:389.839452pt;}
.y35_c00382{bottom:397.725220pt;}
.y36_c00382{bottom:399.557064pt;}
.y37_c00382{bottom:399.939519pt;}
.y38_c00382{bottom:402.386269pt;}
.y39_c00382{bottom:402.897217pt;}
.y3a_c00382{bottom:403.488705pt;}
.y3b_c00382{bottom:404.350200pt;}
.y2d_c00382{bottom:411.642327pt;}
.y2e_c00382{bottom:412.276288pt;}
.y2f_c00382{bottom:412.705491pt;}
.y30_c00382{bottom:414.315645pt;}
.y31_c00382{bottom:414.919489pt;}
.y32_c00382{bottom:416.675263pt;}
.y33_c00382{bottom:417.398783pt;}
.y34_c00382{bottom:419.246495pt;}
.y24_c00382{bottom:427.000241pt;}
.y25_c00382{bottom:427.473723pt;}
.y26_c00382{bottom:428.657823pt;}
.y27_c00382{bottom:430.633331pt;}
.y28_c00382{bottom:431.248396pt;}
.y29_c00382{bottom:432.305005pt;}
.y2a_c00382{bottom:432.990547pt;}
.y2b_c00382{bottom:433.868293pt;}
.y2c_c00382{bottom:434.416404pt;}
.y1c_c00382{bottom:442.591047pt;}
.y1d_c00382{bottom:444.495273pt;}
.y1e_c00382{bottom:445.015167pt;}
.y1f_c00382{bottom:445.607276pt;}
.y20_c00382{bottom:446.304260pt;}
.y21_c00382{bottom:447.424799pt;}
.y22_c00382{bottom:447.948073pt;}
.y23_c00382{bottom:449.978027pt;}
.y13_c00382{bottom:456.991223pt;}
.y14_c00382{bottom:457.623929pt;}
.y15_c00382{bottom:458.511249pt;}
.y16_c00382{bottom:459.075449pt;}
.y17_c00382{bottom:460.461496pt;}
.y18_c00382{bottom:461.759763pt;}
.y19_c00382{bottom:462.695989pt;}
.y1a_c00382{bottom:463.723123pt;}
.y1b_c00382{bottom:465.504296pt;}
.yd_c00382{bottom:472.104529pt;}
.ye_c00382{bottom:472.870516pt;}
.yf_c00382{bottom:474.735643pt;}
.y10_c00382{bottom:475.929749pt;}
.y11_c00382{bottom:477.568216pt;}
.y12_c00382{bottom:479.662336pt;}
.y5_c00382{bottom:487.220009pt;}
.y6_c00382{bottom:489.518392pt;}
.y7_c00382{bottom:490.157028pt;}
.y8_c00382{bottom:492.633265pt;}
.y9_c00382{bottom:493.053913pt;}
.ya_c00382{bottom:493.660349pt;}
.yb_c00382{bottom:495.121123pt;}
.yc_c00382{bottom:496.139968pt;}
.y1_c00382{bottom:499.441333pt;}
.y2_c00382{bottom:501.899967pt;}
.y3_c00382{bottom:503.214380pt;}
.y4_c00382{bottom:506.126660pt;}
.h7_c00382{height:49.447519pt;}
.hf_c00382{height:52.246436pt;}
.hb_c00382{height:53.179408pt;}
.h15_c00382{height:53.225556pt;}
.he_c00382{height:54.112380pt;}
.h16_c00382{height:54.146432pt;}
.ha_c00382{height:55.045352pt;}
.h11_c00382{height:55.091441pt;}
.hd_c00382{height:55.978324pt;}
.h17_c00382{height:56.013550pt;}
.h9_c00382{height:56.911296pt;}
.h8_c00382{height:57.844268pt;}
.h18_c00382{height:57.880669pt;}
.h13_c00382{height:57.892701pt;}
.h4_c00382{height:58.777240pt;}
.h1c_c00382{height:58.814228pt;}
.h6_c00382{height:59.710212pt;}
.h12_c00382{height:59.760207pt;}
.h3_c00382{height:60.643184pt;}
.h1a_c00382{height:60.681346pt;}
.hc_c00382{height:61.576156pt;}
.h14_c00382{height:61.627714pt;}
.h10_c00382{height:62.561467pt;}
.h5_c00382{height:64.375072pt;}
.h19_c00382{height:64.415583pt;}
.h2_c00382{height:71.838849pt;}
.h1b_c00382{height:79.352530pt;}
.h0_c00382{height:545.040000pt;}
.h1_c00382{height:545.333333pt;}
.w0_c00382{width:319.200000pt;}
.w1_c00382{width:319.333333pt;}
.x0_c00382{left:0.000000pt;}
.x5_c00382{left:12.200361pt;}
.x19_c00382{left:13.298500pt;}
.x2f_c00382{left:14.714928pt;}
.x3f_c00382{left:15.717605pt;}
.x1_c00382{left:16.841333pt;}
.x59_c00382{left:17.836520pt;}
.x3a_c00382{left:18.988068pt;}
.x71_c00382{left:20.085621pt;}
.x7b_c00382{left:26.683957pt;}
.x73_c00382{left:27.858237pt;}
.x21_c00382{left:29.155603pt;}
.x11_c00382{left:30.965271pt;}
.xd_c00382{left:33.529140pt;}
.x28_c00382{left:34.427784pt;}
.x74_c00382{left:37.460493pt;}
.x54_c00382{left:42.461416pt;}
.x30_c00382{left:44.298916pt;}
.x4c_c00382{left:46.894887pt;}
.x29_c00382{left:48.277216pt;}
.x7c_c00382{left:49.517963pt;}
.x44_c00382{left:52.467777pt;}
.x75_c00382{left:54.026427pt;}
.x12_c00382{left:56.291919pt;}
.x7f_c00382{left:58.472539pt;}
.x31_c00382{left:61.184065pt;}
.x6d_c00382{left:64.530667pt;}
.x4e_c00382{left:66.097053pt;}
.x22_c00382{left:67.330761pt;}
.x45_c00382{left:69.024703pt;}
.x40_c00382{left:70.112685pt;}
.x13_c00382{left:72.395799pt;}
.x61_c00382{left:73.345813pt;}
.x6_c00382{left:75.975613pt;}
.x69_c00382{left:77.412000pt;}
.x1a_c00382{left:78.879967pt;}
.x32_c00382{left:84.483283pt;}
.x51_c00382{left:85.999045pt;}
.x2_c00382{left:87.017753pt;}
.x5a_c00382{left:88.617520pt;}
.x41_c00382{left:89.811091pt;}
.x5d_c00382{left:92.513160pt;}
.x7_c00382{left:93.709255pt;}
.x1b_c00382{left:96.764468pt;}
.x2a_c00382{left:100.173888pt;}
.x76_c00382{left:102.016315pt;}
.x7d_c00382{left:103.627877pt;}
.x62_c00382{left:110.564480pt;}
.x14_c00382{left:111.957531pt;}
.x6e_c00382{left:113.260000pt;}
.x35_c00382{left:114.489092pt;}
.x1c_c00382{left:117.167009pt;}
.x66_c00382{left:118.375493pt;}
.x2b_c00382{left:119.617135pt;}
.xe_c00382{left:120.848400pt;}
.x77_c00382{left:123.626043pt;}
.x3_c00382{left:124.534865pt;}
.x52_c00382{left:127.488916pt;}
.x36_c00382{left:130.091199pt;}
.x23_c00382{left:130.987963pt;}
.x67_c00382{left:132.797213pt;}
.x3b_c00382{left:138.971856pt;}
.x81_c00382{left:140.063939pt;}
.x1d_c00382{left:141.172025pt;}
.x4d_c00382{left:142.646356pt;}
.x79_c00382{left:143.596557pt;}
.x33_c00382{left:144.500023pt;}
.x46_c00382{left:145.494784pt;}
.x53_c00382{left:146.946883pt;}
.x68_c00382{left:147.964347pt;}
.x15_c00382{left:149.013771pt;}
.x24_c00382{left:150.789564pt;}
.x42_c00382{left:154.898669pt;}
.x3c_c00382{left:155.907787pt;}
.x6f_c00382{left:157.105333pt;}
.x55_c00382{left:158.585333pt;}
.x8_c00382{left:162.408724pt;}
.x63_c00382{left:165.084480pt;}
.xf_c00382{left:167.614920pt;}
.x47_c00382{left:168.583371pt;}
.x5b_c00382{left:169.474253pt;}
.x82_c00382{left:172.260971pt;}
.x9_c00382{left:174.072628pt;}
.x16_c00382{left:175.736355pt;}
.x1e_c00382{left:179.778841pt;}
.x37_c00382{left:183.849761pt;}
.x25_c00382{left:184.830920pt;}
.x56_c00382{left:186.666667pt;}
.x70_c00382{left:188.664000pt;}
.xa_c00382{left:190.887189pt;}
.x7e_c00382{left:192.848045pt;}
.x43_c00382{left:196.291143pt;}
.x1f_c00382{left:197.797921pt;}
.x2c_c00382{left:199.519031pt;}
.x4f_c00382{left:201.906023pt;}
.x72_c00382{left:204.070064pt;}
.x17_c00382{left:205.053675pt;}
.x4_c00382{left:207.659657pt;}
.x5c_c00382{left:208.566280pt;}
.x4a_c00382{left:211.231601pt;}
.x6a_c00382{left:213.892000pt;}
.x78_c00382{left:215.332661pt;}
.x48_c00382{left:217.518976pt;}
.x83_c00382{left:218.568789pt;}
.x2d_c00382{left:219.572129pt;}
.x64_c00382{left:223.407147pt;}
.x5e_c00382{left:224.927787pt;}
.x3d_c00382{left:226.061657pt;}
.x10_c00382{left:227.387088pt;}
.xb_c00382{left:231.439861pt;}
.x57_c00382{left:232.865333pt;}
.x26_c00382{left:235.199555pt;}
.x5f_c00382{left:237.309480pt;}
.x7a_c00382{left:238.713531pt;}
.x38_c00382{left:239.610880pt;}
.x6b_c00382{left:240.668000pt;}
.x84_c00382{left:244.764648pt;}
.x4b_c00382{left:247.354109pt;}
.x2e_c00382{left:250.290235pt;}
.x27_c00382{left:252.861684pt;}
.x60_c00382{left:254.103333pt;}
.x18_c00382{left:255.893451pt;}
.x39_c00382{left:257.370101pt;}
.x58_c00382{left:258.781333pt;}
.xc_c00382{left:259.721237pt;}
.x80_c00382{left:260.639195pt;}
.x3e_c00382{left:262.051865pt;}
.x6c_c00382{left:263.052000pt;}
.x34_c00382{left:264.313676pt;}
.x49_c00382{left:265.479604pt;}
.x65_c00382{left:266.616480pt;}
.x20_c00382{left:267.729301pt;}
.x50_c00382{left:272.476143pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00383 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00383 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00383 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00383 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00383.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00383{transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013555,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{transform:matrix(0.085489,0.001368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.085489,0.001368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.085489,0.001368,-0.003999,0.249968,0,0);}
.mc2_c00383{transform:matrix(0.109420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109420,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);}
.me9_c00383{transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156510,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.md7_c00383{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m19_c00383{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.163045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163045,0.000000,0.000000,0.250000,0,0);}
.mc4_c00383{transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);}
.mba_c00383{transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);}
.mb1_c00383{transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.mc9_c00383{transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167665,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170910,0.000000,0.000000,0.250000,0,0);}
.ma0_c00383{transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);}
.mc7_c00383{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.ma4_c00383{transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.md8_c00383{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.mb6_c00383{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.mdc_c00383{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.me3_c00383{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m18_c00383{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m63_c00383{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m5f_c00383{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.180940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.m23_c00383{transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);}
.m66_c00383{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.m62_c00383{transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00383{transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);}
.md1_c00383{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00383{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.m9d_c00383{transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.mb2_c00383{transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188785,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.mde_c00383{transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189770,0.000000,0.000000,0.250000,0,0);}
.m46_c00383{transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.190531,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190531,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190531,0.003048,-0.003999,0.249968,0,0);}
.m47_c00383{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m8f_c00383{transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);}
.m2d_c00383{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.maa_c00383{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m60_c00383{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.194135,0.003106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194135,0.003106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194135,0.003106,-0.003999,0.249968,0,0);}
.m68_c00383{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.md9_c00383{transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);}
.m8a_c00383{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);}
.mab_c00383{transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.ma8_c00383{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.mb4_c00383{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.m29_c00383{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.mda_c00383{transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mac_c00383{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m5a_c00383{transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200045,0.000000,0.000000,0.250000,0,0);}
.m69_c00383{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.m55_c00383{transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.ma6_c00383{transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201770,0.000000,0.000000,0.250000,0,0);}
.m87_c00383{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.me5_c00383{transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.ma2_c00383{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.mdb_c00383{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m5e_c00383{transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204135,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.m6c_c00383{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206615,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.206719,0.003307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206719,0.003307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206719,0.003307,-0.003999,0.249968,0,0);}
.m81_c00383{transform:matrix(0.206765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206765,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.mae_c00383{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.md5_c00383{transform:matrix(0.209160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209160,0.000000,0.000000,0.250000,0,0);}
.ma5_c00383{transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.mca_c00383{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m7e_c00383{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.md4_c00383{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.mb7_c00383{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m76_c00383{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.md3_c00383{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.me4_c00383{transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);}
.m97_c00383{transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);}
.mdf_c00383{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m61_c00383{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.m7a_c00383{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m9e_c00383{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.ma7_c00383{transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);}
.ma1_c00383{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.ma3_c00383{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.mb0_c00383{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.m7b_c00383{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.md0_c00383{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.maf_c00383{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.me2_c00383{transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221185,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221770,0.000000,0.000000,0.250000,0,0);}
.ma9_c00383{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.md2_c00383{transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);}
.me6_c00383{transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);}
.m5b_c00383{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222965,0.000000,0.000000,0.250000,0,0);}
.mbe_c00383{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m84_c00383{transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);}
.mc5_c00383{transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224255,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{transform:matrix(0.225016,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225016,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225016,0.003600,-0.003999,0.249968,0,0);}
.mcf_c00383{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00383{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.mce_c00383{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.mb3_c00383{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m72_c00383{transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.me0_c00383{transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);}
.m6e_c00383{transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230695,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00383{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);}
.mea_c00383{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.mcb_c00383{transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00383{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.mb8_c00383{transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.me8_c00383{transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);}
.m9f_c00383{transform:matrix(0.237210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237210,0.000000,0.000000,0.250000,0,0);}
.md6_c00383{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.m86_c00383{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);}
.mbf_c00383{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00383{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m96_c00383{transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244440,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);}
.m5c_c00383{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.mbb_c00383{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.me1_c00383{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.me7_c00383{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.mbc_c00383{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);}
.mdd_c00383{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);}
.m59_c00383{transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);}
.m71_c00383{transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270520,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);}
.m73_c00383{transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);}
.mad_c00383{transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);}
.mb5_c00383{transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);}
.m43_c00383{transform:matrix(0.305361,0.004886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305361,0.004886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305361,0.004886,-0.003999,0.249968,0,0);}
.mc6_c00383{transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);}
.mcc_c00383{transform:matrix(0.309990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309990,0.000000,0.000000,0.250000,0,0);}
.m90_c00383{transform:matrix(0.312550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312550,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.317400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.319370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319370,0.000000,0.000000,0.250000,0,0);}
.mc1_c00383{transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);}
.m70_c00383{transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);}
.m3d_c00383{transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);}
.m5d_c00383{transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.350170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350170,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.359159,0.005747,-0.003999,0.249968,0,0);-ms-transform:matrix(0.359159,0.005747,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.359159,0.005747,-0.003999,0.249968,0,0);}
.mbd_c00383{transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361515,0.000000,0.000000,0.250000,0,0);}
.m8c_c00383{transform:matrix(0.381585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381585,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.731945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731945,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:0.000000px;}
.fc0_c00383{color:transparent;}
.fs9_c00383{font-size:53.550000px;}
.fs8_c00383{font-size:55.650000px;}
.fsa_c00383{font-size:57.750000px;}
.fs2_c00383{font-size:58.800000px;}
.fs6_c00383{font-size:59.850000px;}
.fs5_c00383{font-size:60.900000px;}
.fs1_c00383{font-size:61.950000px;}
.fs3_c00383{font-size:63.000000px;}
.fs7_c00383{font-size:65.108332px;}
.fs4_c00383{font-size:66.150000px;}
.fs0_c00383{font-size:78.750000px;}
.y0_c00383{bottom:0.000000px;}
.y34_c00383{bottom:29.521500px;}
.y33_c00383{bottom:43.303500px;}
.y32_c00383{bottom:43.615500px;}
.y31_c00383{bottom:43.899000px;}
.y30_c00383{bottom:44.944500px;}
.y2f_c00383{bottom:45.696000px;}
.y2e_c00383{bottom:45.877500px;}
.y2d_c00383{bottom:46.443000px;}
.y2c_c00383{bottom:63.264000px;}
.y2b_c00383{bottom:80.367000px;}
.y2a_c00383{bottom:95.916000px;}
.y29_c00383{bottom:114.844500px;}
.y28_c00383{bottom:132.526500px;}
.y27_c00383{bottom:147.552000px;}
.y26_c00383{bottom:164.430000px;}
.y25_c00383{bottom:182.101500px;}
.y24_c00383{bottom:199.869000px;}
.y23_c00383{bottom:217.270500px;}
.y22_c00383{bottom:232.210500px;}
.y21_c00383{bottom:232.483500px;}
.y20_c00383{bottom:232.686000px;}
.y1f_c00383{bottom:233.161500px;}
.y1e_c00383{bottom:234.301500px;}
.y1d_c00383{bottom:234.687000px;}
.y1c_c00383{bottom:234.900000px;}
.y1b_c00383{bottom:251.247000px;}
.y1a_c00383{bottom:267.594000px;}
.y19_c00383{bottom:284.409000px;}
.y18_c00383{bottom:300.754500px;}
.y17_c00383{bottom:318.628500px;}
.y16_c00383{bottom:336.001500px;}
.y15_c00383{bottom:353.430000px;}
.y14_c00383{bottom:369.873000px;}
.y13_c00383{bottom:385.879500px;}
.y12_c00383{bottom:401.999664px;}
.y11_c00383{bottom:402.293040px;}
.y10_c00383{bottom:402.664584px;}
.yf_c00383{bottom:403.442424px;}
.ye_c00383{bottom:403.770768px;}
.yd_c00383{bottom:404.919264px;}
.yc_c00383{bottom:405.920472px;}
.yb_c00383{bottom:406.350000px;}
.ya_c00383{bottom:422.047500px;}
.y9_c00383{bottom:437.325000px;}
.y8_c00383{bottom:456.006000px;}
.y7_c00383{bottom:472.426500px;}
.y6_c00383{bottom:488.910000px;}
.y5_c00383{bottom:505.731000px;}
.y4_c00383{bottom:521.712000px;}
.y3_c00383{bottom:539.485500px;}
.y2_c00383{bottom:556.914000px;}
.y1_c00383{bottom:569.155500px;}
.hb_c00383{height:53.550000px;}
.ha_c00383{height:55.650000px;}
.hc_c00383{height:57.750000px;}
.h4_c00383{height:58.800000px;}
.h8_c00383{height:59.850000px;}
.h7_c00383{height:60.900000px;}
.h3_c00383{height:61.950000px;}
.h5_c00383{height:63.000000px;}
.h9_c00383{height:65.108332px;}
.h6_c00383{height:66.150000px;}
.h2_c00383{height:78.750000px;}
.h0_c00383{height:613.170000px;}
.h1_c00383{height:613.500000px;}
.w0_c00383{width:359.100000px;}
.w1_c00383{width:359.250000px;}
.x0_c00383{left:0.000000px;}
.x74_c00383{left:44.284500px;}
.x69_c00383{left:46.173000px;}
.x57_c00383{left:48.063000px;}
.x45_c00383{left:49.410000px;}
.x2e_c00383{left:50.469000px;}
.x3f_c00383{left:51.570000px;}
.x2_c00383{left:53.190000px;}
.x58_c00383{left:62.103000px;}
.x6a_c00383{left:66.693000px;}
.x40_c00383{left:68.310000px;}
.x75_c00383{left:69.934500px;}
.x3_c00383{left:75.870000px;}
.x2f_c00383{left:77.314500px;}
.x48_c00383{left:79.380000px;}
.x5f_c00383{left:81.003000px;}
.x53_c00383{left:83.970000px;}
.x6e_c00383{left:86.943000px;}
.x71_c00383{left:88.833000px;}
.x72_c00383{left:90.052500px;}
.x4b_c00383{left:92.340000px;}
.x1e_c00383{left:94.770000px;}
.xa_c00383{left:97.470000px;}
.x49_c00383{left:102.330000px;}
.x39_c00383{left:104.220000px;}
.x11_c00383{left:106.110000px;}
.x41_c00383{left:107.190000px;}
.x65_c00383{left:108.543000px;}
.x24_c00383{left:109.620000px;}
.x15_c00383{left:115.560000px;}
.x63_c00383{left:120.153000px;}
.xb_c00383{left:121.230000px;}
.x29_c00383{left:127.440000px;}
.x4c_c00383{left:130.680000px;}
.x1f_c00383{left:132.300000px;}
.x6d_c00383{left:134.193000px;}
.x36_c00383{left:136.350000px;}
.x3a_c00383{left:138.510000px;}
.x30_c00383{left:139.890000px;}
.x4d_c00383{left:140.940000px;}
.x4f_c00383{left:143.640000px;}
.x16_c00383{left:145.530000px;}
.x4_c00383{left:146.880000px;}
.x59_c00383{left:149.043000px;}
.x4e_c00383{left:152.550000px;}
.x5c_c00383{left:155.793000px;}
.x3b_c00383{left:157.140000px;}
.x2a_c00383{left:159.030000px;}
.x46_c00383{left:161.190000px;}
.x25_c00383{left:163.620000px;}
.x42_c00383{left:170.370000px;}
.x5_c00383{left:171.720000px;}
.x1a_c00383{left:173.610000px;}
.x5a_c00383{left:176.583000px;}
.x20_c00383{left:180.090000px;}
.x3c_c00383{left:185.760000px;}
.x1_c00383{left:186.840000px;}
.xc_c00383{left:187.920000px;}
.x64_c00383{left:189.273000px;}
.x26_c00383{left:190.350000px;}
.x37_c00383{left:191.700000px;}
.x62_c00383{left:197.643000px;}
.x6_c00383{left:201.150000px;}
.x12_c00383{left:202.230000px;}
.x76_c00383{left:204.664500px;}
.x21_c00383{left:206.010000px;}
.x55_c00383{left:207.769500px;}
.x43_c00383{left:209.790000px;}
.x31_c00383{left:211.671000px;}
.x38_c00383{left:213.840000px;}
.x66_c00383{left:215.463000px;}
.xd_c00383{left:216.540000px;}
.x1b_c00383{left:219.780000px;}
.x6b_c00383{left:220.863000px;}
.x50_c00383{left:222.480000px;}
.x5d_c00383{left:223.563000px;}
.x17_c00383{left:227.340000px;}
.x32_c00383{left:232.192500px;}
.x60_c00383{left:233.553000px;}
.x67_c00383{left:236.253000px;}
.x2c_c00383{left:237.600000px;}
.x47_c00383{left:238.950000px;}
.x27_c00383{left:240.840000px;}
.x51_c00383{left:241.920000px;}
.x7_c00383{left:245.160000px;}
.x18_c00383{left:249.750000px;}
.x56_c00383{left:250.941000px;}
.x2b_c00383{left:253.530000px;}
.xe_c00383{left:255.960000px;}
.x52_c00383{left:257.850000px;}
.x3d_c00383{left:259.200000px;}
.x6f_c00383{left:260.283000px;}
.x73_c00383{left:264.156000px;}
.x1c_c00383{left:265.950000px;}
.xf_c00383{left:269.190000px;}
.x4a_c00383{left:270.270000px;}
.x54_c00383{left:271.890000px;}
.x44_c00383{left:273.780000px;}
.x13_c00383{left:279.180000px;}
.x33_c00383{left:280.807500px;}
.x22_c00383{left:281.880000px;}
.x6c_c00383{left:285.123000px;}
.x1d_c00383{left:287.280000px;}
.x5e_c00383{left:289.983000px;}
.x3e_c00383{left:292.140000px;}
.x8_c00383{left:293.490000px;}
.x61_c00383{left:295.113000px;}
.x5b_c00383{left:299.433000px;}
.x28_c00383{left:300.510000px;}
.x34_c00383{left:304.029000px;}
.x14_c00383{left:306.450000px;}
.x68_c00383{left:308.073000px;}
.x9_c00383{left:311.850000px;}
.x2d_c00383{left:313.200000px;}
.x23_c00383{left:319.950000px;}
.x35_c00383{left:322.365000px;}
.x70_c00383{left:326.163000px;}
.x19_c00383{left:331.830000px;}
.x10_c00383{left:333.990000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs9_c00383{font-size:47.600000pt;}
.fs8_c00383{font-size:49.466667pt;}
.fsa_c00383{font-size:51.333333pt;}
.fs2_c00383{font-size:52.266667pt;}
.fs6_c00383{font-size:53.200000pt;}
.fs5_c00383{font-size:54.133333pt;}
.fs1_c00383{font-size:55.066667pt;}
.fs3_c00383{font-size:56.000000pt;}
.fs7_c00383{font-size:57.874073pt;}
.fs4_c00383{font-size:58.800000pt;}
.fs0_c00383{font-size:70.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y34_c00383{bottom:26.241333pt;}
.y33_c00383{bottom:38.492000pt;}
.y32_c00383{bottom:38.769333pt;}
.y31_c00383{bottom:39.021333pt;}
.y30_c00383{bottom:39.950667pt;}
.y2f_c00383{bottom:40.618667pt;}
.y2e_c00383{bottom:40.780000pt;}
.y2d_c00383{bottom:41.282667pt;}
.y2c_c00383{bottom:56.234667pt;}
.y2b_c00383{bottom:71.437333pt;}
.y2a_c00383{bottom:85.258667pt;}
.y29_c00383{bottom:102.084000pt;}
.y28_c00383{bottom:117.801333pt;}
.y27_c00383{bottom:131.157333pt;}
.y26_c00383{bottom:146.160000pt;}
.y25_c00383{bottom:161.868000pt;}
.y24_c00383{bottom:177.661333pt;}
.y23_c00383{bottom:193.129333pt;}
.y22_c00383{bottom:206.409333pt;}
.y21_c00383{bottom:206.652000pt;}
.y20_c00383{bottom:206.832000pt;}
.y1f_c00383{bottom:207.254667pt;}
.y1e_c00383{bottom:208.268000pt;}
.y1d_c00383{bottom:208.610667pt;}
.y1c_c00383{bottom:208.800000pt;}
.y1b_c00383{bottom:223.330667pt;}
.y1a_c00383{bottom:237.861333pt;}
.y19_c00383{bottom:252.808000pt;}
.y18_c00383{bottom:267.337333pt;}
.y17_c00383{bottom:283.225333pt;}
.y16_c00383{bottom:298.668000pt;}
.y15_c00383{bottom:314.160000pt;}
.y14_c00383{bottom:328.776000pt;}
.y13_c00383{bottom:343.004000pt;}
.y12_c00383{bottom:357.333035pt;}
.y11_c00383{bottom:357.593813pt;}
.y10_c00383{bottom:357.924075pt;}
.yf_c00383{bottom:358.615488pt;}
.ye_c00383{bottom:358.907349pt;}
.yd_c00383{bottom:359.928235pt;}
.yc_c00383{bottom:360.818197pt;}
.yb_c00383{bottom:361.200000pt;}
.ya_c00383{bottom:375.153333pt;}
.y9_c00383{bottom:388.733333pt;}
.y8_c00383{bottom:405.338667pt;}
.y7_c00383{bottom:419.934667pt;}
.y6_c00383{bottom:434.586667pt;}
.y5_c00383{bottom:449.538667pt;}
.y4_c00383{bottom:463.744000pt;}
.y3_c00383{bottom:479.542667pt;}
.y2_c00383{bottom:495.034667pt;}
.y1_c00383{bottom:505.916000pt;}
.hb_c00383{height:47.600000pt;}
.ha_c00383{height:49.466667pt;}
.hc_c00383{height:51.333333pt;}
.h4_c00383{height:52.266667pt;}
.h8_c00383{height:53.200000pt;}
.h7_c00383{height:54.133333pt;}
.h3_c00383{height:55.066667pt;}
.h5_c00383{height:56.000000pt;}
.h9_c00383{height:57.874073pt;}
.h6_c00383{height:58.800000pt;}
.h2_c00383{height:70.000000pt;}
.h0_c00383{height:545.040000pt;}
.h1_c00383{height:545.333333pt;}
.w0_c00383{width:319.200000pt;}
.w1_c00383{width:319.333333pt;}
.x0_c00383{left:0.000000pt;}
.x74_c00383{left:39.364000pt;}
.x69_c00383{left:41.042667pt;}
.x57_c00383{left:42.722667pt;}
.x45_c00383{left:43.920000pt;}
.x2e_c00383{left:44.861333pt;}
.x3f_c00383{left:45.840000pt;}
.x2_c00383{left:47.280000pt;}
.x58_c00383{left:55.202667pt;}
.x6a_c00383{left:59.282667pt;}
.x40_c00383{left:60.720000pt;}
.x75_c00383{left:62.164000pt;}
.x3_c00383{left:67.440000pt;}
.x2f_c00383{left:68.724000pt;}
.x48_c00383{left:70.560000pt;}
.x5f_c00383{left:72.002667pt;}
.x53_c00383{left:74.640000pt;}
.x6e_c00383{left:77.282667pt;}
.x71_c00383{left:78.962667pt;}
.x72_c00383{left:80.046667pt;}
.x4b_c00383{left:82.080000pt;}
.x1e_c00383{left:84.240000pt;}
.xa_c00383{left:86.640000pt;}
.x49_c00383{left:90.960000pt;}
.x39_c00383{left:92.640000pt;}
.x11_c00383{left:94.320000pt;}
.x41_c00383{left:95.280000pt;}
.x65_c00383{left:96.482667pt;}
.x24_c00383{left:97.440000pt;}
.x15_c00383{left:102.720000pt;}
.x63_c00383{left:106.802667pt;}
.xb_c00383{left:107.760000pt;}
.x29_c00383{left:113.280000pt;}
.x4c_c00383{left:116.160000pt;}
.x1f_c00383{left:117.600000pt;}
.x6d_c00383{left:119.282667pt;}
.x36_c00383{left:121.200000pt;}
.x3a_c00383{left:123.120000pt;}
.x30_c00383{left:124.346667pt;}
.x4d_c00383{left:125.280000pt;}
.x4f_c00383{left:127.680000pt;}
.x16_c00383{left:129.360000pt;}
.x4_c00383{left:130.560000pt;}
.x59_c00383{left:132.482667pt;}
.x4e_c00383{left:135.600000pt;}
.x5c_c00383{left:138.482667pt;}
.x3b_c00383{left:139.680000pt;}
.x2a_c00383{left:141.360000pt;}
.x46_c00383{left:143.280000pt;}
.x25_c00383{left:145.440000pt;}
.x42_c00383{left:151.440000pt;}
.x5_c00383{left:152.640000pt;}
.x1a_c00383{left:154.320000pt;}
.x5a_c00383{left:156.962667pt;}
.x20_c00383{left:160.080000pt;}
.x3c_c00383{left:165.120000pt;}
.x1_c00383{left:166.080000pt;}
.xc_c00383{left:167.040000pt;}
.x64_c00383{left:168.242667pt;}
.x26_c00383{left:169.200000pt;}
.x37_c00383{left:170.400000pt;}
.x62_c00383{left:175.682667pt;}
.x6_c00383{left:178.800000pt;}
.x12_c00383{left:179.760000pt;}
.x76_c00383{left:181.924000pt;}
.x21_c00383{left:183.120000pt;}
.x55_c00383{left:184.684000pt;}
.x43_c00383{left:186.480000pt;}
.x31_c00383{left:188.152000pt;}
.x38_c00383{left:190.080000pt;}
.x66_c00383{left:191.522667pt;}
.xd_c00383{left:192.480000pt;}
.x1b_c00383{left:195.360000pt;}
.x6b_c00383{left:196.322667pt;}
.x50_c00383{left:197.760000pt;}
.x5d_c00383{left:198.722667pt;}
.x17_c00383{left:202.080000pt;}
.x32_c00383{left:206.393333pt;}
.x60_c00383{left:207.602667pt;}
.x67_c00383{left:210.002667pt;}
.x2c_c00383{left:211.200000pt;}
.x47_c00383{left:212.400000pt;}
.x27_c00383{left:214.080000pt;}
.x51_c00383{left:215.040000pt;}
.x7_c00383{left:217.920000pt;}
.x18_c00383{left:222.000000pt;}
.x56_c00383{left:223.058667pt;}
.x2b_c00383{left:225.360000pt;}
.xe_c00383{left:227.520000pt;}
.x52_c00383{left:229.200000pt;}
.x3d_c00383{left:230.400000pt;}
.x6f_c00383{left:231.362667pt;}
.x73_c00383{left:234.805333pt;}
.x1c_c00383{left:236.400000pt;}
.xf_c00383{left:239.280000pt;}
.x4a_c00383{left:240.240000pt;}
.x54_c00383{left:241.680000pt;}
.x44_c00383{left:243.360000pt;}
.x13_c00383{left:248.160000pt;}
.x33_c00383{left:249.606667pt;}
.x22_c00383{left:250.560000pt;}
.x6c_c00383{left:253.442667pt;}
.x1d_c00383{left:255.360000pt;}
.x5e_c00383{left:257.762667pt;}
.x3e_c00383{left:259.680000pt;}
.x8_c00383{left:260.880000pt;}
.x61_c00383{left:262.322667pt;}
.x5b_c00383{left:266.162667pt;}
.x28_c00383{left:267.120000pt;}
.x34_c00383{left:270.248000pt;}
.x14_c00383{left:272.400000pt;}
.x68_c00383{left:273.842667pt;}
.x9_c00383{left:277.200000pt;}
.x2d_c00383{left:278.400000pt;}
.x23_c00383{left:284.400000pt;}
.x35_c00383{left:286.546667pt;}
.x70_c00383{left:289.922667pt;}
.x19_c00383{left:294.960000pt;}
.x10_c00383{left:296.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00384 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00384 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00384 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00384 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00384.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.028953,-0.001130,0.009752,0.249810,0,0);-ms-transform:matrix(0.028953,-0.001130,0.009752,0.249810,0,0);-webkit-transform:matrix(0.028953,-0.001130,0.009752,0.249810,0,0);}
.m9c_c00384{transform:matrix(0.038935,-0.001520,0.009752,0.249810,0,0);-ms-transform:matrix(0.038935,-0.001520,0.009752,0.249810,0,0);-webkit-transform:matrix(0.038935,-0.001520,0.009752,0.249810,0,0);}
.m12_c00384{transform:matrix(0.102542,-0.004003,0.009752,0.249810,0,0);-ms-transform:matrix(0.102542,-0.004003,0.009752,0.249810,0,0);-webkit-transform:matrix(0.102542,-0.004003,0.009752,0.249810,0,0);}
.meb_c00384{transform:matrix(0.135102,-0.005274,0.009752,0.249810,0,0);-ms-transform:matrix(0.135102,-0.005274,0.009752,0.249810,0,0);-webkit-transform:matrix(0.135102,-0.005274,0.009752,0.249810,0,0);}
.m58_c00384{transform:matrix(0.137250,-0.005358,0.009752,0.249810,0,0);-ms-transform:matrix(0.137250,-0.005358,0.009752,0.249810,0,0);-webkit-transform:matrix(0.137250,-0.005358,0.009752,0.249810,0,0);}
.m32_c00384{transform:matrix(0.149746,-0.005846,0.009752,0.249810,0,0);-ms-transform:matrix(0.149746,-0.005846,0.009752,0.249810,0,0);-webkit-transform:matrix(0.149746,-0.005846,0.009752,0.249810,0,0);}
.mee_c00384{transform:matrix(0.154188,-0.006019,0.009752,0.249810,0,0);-ms-transform:matrix(0.154188,-0.006019,0.009752,0.249810,0,0);-webkit-transform:matrix(0.154188,-0.006019,0.009752,0.249810,0,0);}
.me9_c00384{transform:matrix(0.155277,-0.006062,0.009752,0.249810,0,0);-ms-transform:matrix(0.155277,-0.006062,0.009752,0.249810,0,0);-webkit-transform:matrix(0.155277,-0.006062,0.009752,0.249810,0,0);}
.ma4_c00384{transform:matrix(0.159973,-0.006245,0.009752,0.249810,0,0);-ms-transform:matrix(0.159973,-0.006245,0.009752,0.249810,0,0);-webkit-transform:matrix(0.159973,-0.006245,0.009752,0.249810,0,0);}
.mc3_c00384{transform:matrix(0.160743,-0.006275,0.009752,0.249810,0,0);-ms-transform:matrix(0.160743,-0.006275,0.009752,0.249810,0,0);-webkit-transform:matrix(0.160743,-0.006275,0.009752,0.249810,0,0);}
.me6_c00384{transform:matrix(0.161012,-0.006286,0.009752,0.249810,0,0);-ms-transform:matrix(0.161012,-0.006286,0.009752,0.249810,0,0);-webkit-transform:matrix(0.161012,-0.006286,0.009752,0.249810,0,0);}
.m90_c00384{transform:matrix(0.162726,-0.006353,0.009752,0.249810,0,0);-ms-transform:matrix(0.162726,-0.006353,0.009752,0.249810,0,0);-webkit-transform:matrix(0.162726,-0.006353,0.009752,0.249810,0,0);}
.m55_c00384{transform:matrix(0.162966,-0.006362,0.009752,0.249810,0,0);-ms-transform:matrix(0.162966,-0.006362,0.009752,0.249810,0,0);-webkit-transform:matrix(0.162966,-0.006362,0.009752,0.249810,0,0);}
.m77_c00384{transform:matrix(0.163146,-0.006369,0.009752,0.249810,0,0);-ms-transform:matrix(0.163146,-0.006369,0.009752,0.249810,0,0);-webkit-transform:matrix(0.163146,-0.006369,0.009752,0.249810,0,0);}
.med_c00384{transform:matrix(0.164515,-0.006422,0.009752,0.249810,0,0);-ms-transform:matrix(0.164515,-0.006422,0.009752,0.249810,0,0);-webkit-transform:matrix(0.164515,-0.006422,0.009752,0.249810,0,0);}
.m52_c00384{transform:matrix(0.165304,-0.006453,0.009752,0.249810,0,0);-ms-transform:matrix(0.165304,-0.006453,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165304,-0.006453,0.009752,0.249810,0,0);}
.m65_c00384{transform:matrix(0.165734,-0.006470,0.009752,0.249810,0,0);-ms-transform:matrix(0.165734,-0.006470,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165734,-0.006470,0.009752,0.249810,0,0);}
.m30_c00384{transform:matrix(0.166403,-0.006496,0.009752,0.249810,0,0);-ms-transform:matrix(0.166403,-0.006496,0.009752,0.249810,0,0);-webkit-transform:matrix(0.166403,-0.006496,0.009752,0.249810,0,0);}
.mb4_c00384{transform:matrix(0.167612,-0.006543,0.009752,0.249810,0,0);-ms-transform:matrix(0.167612,-0.006543,0.009752,0.249810,0,0);-webkit-transform:matrix(0.167612,-0.006543,0.009752,0.249810,0,0);}
.m7_c00384{transform:matrix(0.167657,-0.006545,0.009752,0.249810,0,0);-ms-transform:matrix(0.167657,-0.006545,0.009752,0.249810,0,0);-webkit-transform:matrix(0.167657,-0.006545,0.009752,0.249810,0,0);}
.mc6_c00384{transform:matrix(0.168242,-0.006568,0.009752,0.249810,0,0);-ms-transform:matrix(0.168242,-0.006568,0.009752,0.249810,0,0);-webkit-transform:matrix(0.168242,-0.006568,0.009752,0.249810,0,0);}
.ma3_c00384{transform:matrix(0.168422,-0.006575,0.009752,0.249810,0,0);-ms-transform:matrix(0.168422,-0.006575,0.009752,0.249810,0,0);-webkit-transform:matrix(0.168422,-0.006575,0.009752,0.249810,0,0);}
.m84_c00384{transform:matrix(0.169426,-0.006614,0.009752,0.249810,0,0);-ms-transform:matrix(0.169426,-0.006614,0.009752,0.249810,0,0);-webkit-transform:matrix(0.169426,-0.006614,0.009752,0.249810,0,0);}
.m2e_c00384{transform:matrix(0.169811,-0.006629,0.009752,0.249810,0,0);-ms-transform:matrix(0.169811,-0.006629,0.009752,0.249810,0,0);-webkit-transform:matrix(0.169811,-0.006629,0.009752,0.249810,0,0);}
.m34_c00384{transform:matrix(0.171384,-0.006691,0.009752,0.249810,0,0);-ms-transform:matrix(0.171384,-0.006691,0.009752,0.249810,0,0);-webkit-transform:matrix(0.171384,-0.006691,0.009752,0.249810,0,0);}
.m63_c00384{transform:matrix(0.172364,-0.006729,0.009752,0.249810,0,0);-ms-transform:matrix(0.172364,-0.006729,0.009752,0.249810,0,0);-webkit-transform:matrix(0.172364,-0.006729,0.009752,0.249810,0,0);}
.m59_c00384{transform:matrix(0.173668,-0.006780,0.009752,0.249810,0,0);-ms-transform:matrix(0.173668,-0.006780,0.009752,0.249810,0,0);-webkit-transform:matrix(0.173668,-0.006780,0.009752,0.249810,0,0);}
.m41_c00384{transform:matrix(0.173903,-0.006789,0.009752,0.249810,0,0);-ms-transform:matrix(0.173903,-0.006789,0.009752,0.249810,0,0);-webkit-transform:matrix(0.173903,-0.006789,0.009752,0.249810,0,0);}
.m2_c00384{transform:matrix(0.174277,-0.006804,0.009752,0.249810,0,0);-ms-transform:matrix(0.174277,-0.006804,0.009752,0.249810,0,0);-webkit-transform:matrix(0.174277,-0.006804,0.009752,0.249810,0,0);}
.m83_c00384{transform:matrix(0.174847,-0.006826,0.009752,0.249810,0,0);-ms-transform:matrix(0.174847,-0.006826,0.009752,0.249810,0,0);-webkit-transform:matrix(0.174847,-0.006826,0.009752,0.249810,0,0);}
.m7e_c00384{transform:matrix(0.175137,-0.006837,0.009752,0.249810,0,0);-ms-transform:matrix(0.175137,-0.006837,0.009752,0.249810,0,0);-webkit-transform:matrix(0.175137,-0.006837,0.009752,0.249810,0,0);}
.m8e_c00384{transform:matrix(0.175936,-0.006868,0.009752,0.249810,0,0);-ms-transform:matrix(0.175936,-0.006868,0.009752,0.249810,0,0);-webkit-transform:matrix(0.175936,-0.006868,0.009752,0.249810,0,0);}
.m53_c00384{transform:matrix(0.176161,-0.006877,0.009752,0.249810,0,0);-ms-transform:matrix(0.176161,-0.006877,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176161,-0.006877,0.009752,0.249810,0,0);}
.mdf_c00384{transform:matrix(0.176201,-0.006879,0.009752,0.249810,0,0);-ms-transform:matrix(0.176201,-0.006879,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176201,-0.006879,0.009752,0.249810,0,0);}
.ma9_c00384{transform:matrix(0.176391,-0.006886,0.009752,0.249810,0,0);-ms-transform:matrix(0.176391,-0.006886,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176391,-0.006886,0.009752,0.249810,0,0);}
.m99_c00384{transform:matrix(0.176810,-0.006903,0.009752,0.249810,0,0);-ms-transform:matrix(0.176810,-0.006903,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176810,-0.006903,0.009752,0.249810,0,0);}
.m3f_c00384{transform:matrix(0.177969,-0.006948,0.009752,0.249810,0,0);-ms-transform:matrix(0.177969,-0.006948,0.009752,0.249810,0,0);-webkit-transform:matrix(0.177969,-0.006948,0.009752,0.249810,0,0);}
.m87_c00384{transform:matrix(0.178294,-0.006960,0.009752,0.249810,0,0);-ms-transform:matrix(0.178294,-0.006960,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178294,-0.006960,0.009752,0.249810,0,0);}
.me3_c00384{transform:matrix(0.178309,-0.006961,0.009752,0.249810,0,0);-ms-transform:matrix(0.178309,-0.006961,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178309,-0.006961,0.009752,0.249810,0,0);}
.m4d_c00384{transform:matrix(0.178334,-0.006962,0.009752,0.249810,0,0);-ms-transform:matrix(0.178334,-0.006962,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178334,-0.006962,0.009752,0.249810,0,0);}
.m7b_c00384{transform:matrix(0.178759,-0.006979,0.009752,0.249810,0,0);-ms-transform:matrix(0.178759,-0.006979,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178759,-0.006979,0.009752,0.249810,0,0);}
.mc5_c00384{transform:matrix(0.179453,-0.007006,0.009752,0.249810,0,0);-ms-transform:matrix(0.179453,-0.007006,0.009752,0.249810,0,0);-webkit-transform:matrix(0.179453,-0.007006,0.009752,0.249810,0,0);}
.mf1_c00384{transform:matrix(0.179488,-0.007007,0.009752,0.249810,0,0);-ms-transform:matrix(0.179488,-0.007007,0.009752,0.249810,0,0);-webkit-transform:matrix(0.179488,-0.007007,0.009752,0.249810,0,0);}
.md1_c00384{transform:matrix(0.180023,-0.007028,0.009752,0.249810,0,0);-ms-transform:matrix(0.180023,-0.007028,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180023,-0.007028,0.009752,0.249810,0,0);}
.m7f_c00384{transform:matrix(0.180138,-0.007032,0.009752,0.249810,0,0);-ms-transform:matrix(0.180138,-0.007032,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180138,-0.007032,0.009752,0.249810,0,0);}
.m43_c00384{transform:matrix(0.180163,-0.007033,0.009752,0.249810,0,0);-ms-transform:matrix(0.180163,-0.007033,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180163,-0.007033,0.009752,0.249810,0,0);}
.m8b_c00384{transform:matrix(0.180527,-0.007048,0.009752,0.249810,0,0);-ms-transform:matrix(0.180527,-0.007048,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180527,-0.007048,0.009752,0.249810,0,0);}
.m88_c00384{transform:matrix(0.180892,-0.007062,0.009752,0.249810,0,0);-ms-transform:matrix(0.180892,-0.007062,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180892,-0.007062,0.009752,0.249810,0,0);}
.m4c_c00384{transform:matrix(0.181207,-0.007074,0.009752,0.249810,0,0);-ms-transform:matrix(0.181207,-0.007074,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181207,-0.007074,0.009752,0.249810,0,0);}
.m98_c00384{transform:matrix(0.181242,-0.007076,0.009752,0.249810,0,0);-ms-transform:matrix(0.181242,-0.007076,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181242,-0.007076,0.009752,0.249810,0,0);}
.m85_c00384{transform:matrix(0.181672,-0.007092,0.009752,0.249810,0,0);-ms-transform:matrix(0.181672,-0.007092,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181672,-0.007092,0.009752,0.249810,0,0);}
.m3d_c00384{transform:matrix(0.181896,-0.007101,0.009752,0.249810,0,0);-ms-transform:matrix(0.181896,-0.007101,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181896,-0.007101,0.009752,0.249810,0,0);}
.me8_c00384{transform:matrix(0.182201,-0.007113,0.009752,0.249810,0,0);-ms-transform:matrix(0.182201,-0.007113,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182201,-0.007113,0.009752,0.249810,0,0);}
.m1d_c00384{transform:matrix(0.182511,-0.007125,0.009752,0.249810,0,0);-ms-transform:matrix(0.182511,-0.007125,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182511,-0.007125,0.009752,0.249810,0,0);}
.m1_c00384{transform:matrix(0.182636,-0.007130,0.009752,0.249810,0,0);-ms-transform:matrix(0.182636,-0.007130,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182636,-0.007130,0.009752,0.249810,0,0);}
.m9f_c00384{transform:matrix(0.182656,-0.007131,0.009752,0.249810,0,0);-ms-transform:matrix(0.182656,-0.007131,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182656,-0.007131,0.009752,0.249810,0,0);}
.m37_c00384{transform:matrix(0.182906,-0.007140,0.009752,0.249810,0,0);-ms-transform:matrix(0.182906,-0.007140,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182906,-0.007140,0.009752,0.249810,0,0);}
.m3a_c00384{transform:matrix(0.183145,-0.007150,0.009752,0.249810,0,0);-ms-transform:matrix(0.183145,-0.007150,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183145,-0.007150,0.009752,0.249810,0,0);}
.m5c_c00384{transform:matrix(0.183215,-0.007153,0.009752,0.249810,0,0);-ms-transform:matrix(0.183215,-0.007153,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183215,-0.007153,0.009752,0.249810,0,0);}
.m91_c00384{transform:matrix(0.183465,-0.007162,0.009752,0.249810,0,0);-ms-transform:matrix(0.183465,-0.007162,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183465,-0.007162,0.009752,0.249810,0,0);}
.m8c_c00384{transform:matrix(0.183610,-0.007168,0.009752,0.249810,0,0);-ms-transform:matrix(0.183610,-0.007168,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183610,-0.007168,0.009752,0.249810,0,0);}
.m79_c00384{transform:matrix(0.183660,-0.007170,0.009752,0.249810,0,0);-ms-transform:matrix(0.183660,-0.007170,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183660,-0.007170,0.009752,0.249810,0,0);}
.m56_c00384{transform:matrix(0.183765,-0.007174,0.009752,0.249810,0,0);-ms-transform:matrix(0.183765,-0.007174,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183765,-0.007174,0.009752,0.249810,0,0);}
.ma2_c00384{transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);-ms-transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);}
.m62_c00384{transform:matrix(0.184035,-0.007185,0.009752,0.249810,0,0);-ms-transform:matrix(0.184035,-0.007185,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184035,-0.007185,0.009752,0.249810,0,0);}
.ma0_c00384{transform:matrix(0.184140,-0.007189,0.009752,0.249810,0,0);-ms-transform:matrix(0.184140,-0.007189,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184140,-0.007189,0.009752,0.249810,0,0);}
.m67_c00384{transform:matrix(0.184220,-0.007192,0.009752,0.249810,0,0);-ms-transform:matrix(0.184220,-0.007192,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184220,-0.007192,0.009752,0.249810,0,0);}
.m8d_c00384{transform:matrix(0.184484,-0.007202,0.009752,0.249810,0,0);-ms-transform:matrix(0.184484,-0.007202,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184484,-0.007202,0.009752,0.249810,0,0);}
.m89_c00384{transform:matrix(0.184594,-0.007206,0.009752,0.249810,0,0);-ms-transform:matrix(0.184594,-0.007206,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184594,-0.007206,0.009752,0.249810,0,0);}
.mcd_c00384{transform:matrix(0.184669,-0.007209,0.009752,0.249810,0,0);-ms-transform:matrix(0.184669,-0.007209,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184669,-0.007209,0.009752,0.249810,0,0);}
.mcf_c00384{transform:matrix(0.184784,-0.007214,0.009752,0.249810,0,0);-ms-transform:matrix(0.184784,-0.007214,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184784,-0.007214,0.009752,0.249810,0,0);}
.m5_c00384{transform:matrix(0.184984,-0.007222,0.009752,0.249810,0,0);-ms-transform:matrix(0.184984,-0.007222,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184984,-0.007222,0.009752,0.249810,0,0);}
.m61_c00384{transform:matrix(0.185044,-0.007224,0.009752,0.249810,0,0);-ms-transform:matrix(0.185044,-0.007224,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185044,-0.007224,0.009752,0.249810,0,0);}
.m96_c00384{transform:matrix(0.185384,-0.007237,0.009752,0.249810,0,0);-ms-transform:matrix(0.185384,-0.007237,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185384,-0.007237,0.009752,0.249810,0,0);}
.m5b_c00384{transform:matrix(0.185709,-0.007250,0.009752,0.249810,0,0);-ms-transform:matrix(0.185709,-0.007250,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185709,-0.007250,0.009752,0.249810,0,0);}
.m73_c00384{transform:matrix(0.185768,-0.007252,0.009752,0.249810,0,0);-ms-transform:matrix(0.185768,-0.007252,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185768,-0.007252,0.009752,0.249810,0,0);}
.m2f_c00384{transform:matrix(0.186868,-0.007295,0.009752,0.249810,0,0);-ms-transform:matrix(0.186868,-0.007295,0.009752,0.249810,0,0);-webkit-transform:matrix(0.186868,-0.007295,0.009752,0.249810,0,0);}
.md3_c00384{transform:matrix(0.187003,-0.007300,0.009752,0.249810,0,0);-ms-transform:matrix(0.187003,-0.007300,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187003,-0.007300,0.009752,0.249810,0,0);}
.m23_c00384{transform:matrix(0.187137,-0.007306,0.009752,0.249810,0,0);-ms-transform:matrix(0.187137,-0.007306,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187137,-0.007306,0.009752,0.249810,0,0);}
.m4_c00384{transform:matrix(0.187237,-0.007310,0.009752,0.249810,0,0);-ms-transform:matrix(0.187237,-0.007310,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187237,-0.007310,0.009752,0.249810,0,0);}
.md8_c00384{transform:matrix(0.187312,-0.007312,0.009752,0.249810,0,0);-ms-transform:matrix(0.187312,-0.007312,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187312,-0.007312,0.009752,0.249810,0,0);}
.me5_c00384{transform:matrix(0.187917,-0.007336,0.009752,0.249810,0,0);-ms-transform:matrix(0.187917,-0.007336,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187917,-0.007336,0.009752,0.249810,0,0);}
.mb3_c00384{transform:matrix(0.188556,-0.007361,0.009752,0.249810,0,0);-ms-transform:matrix(0.188556,-0.007361,0.009752,0.249810,0,0);-webkit-transform:matrix(0.188556,-0.007361,0.009752,0.249810,0,0);}
.m6d_c00384{transform:matrix(0.189396,-0.007394,0.009752,0.249810,0,0);-ms-transform:matrix(0.189396,-0.007394,0.009752,0.249810,0,0);-webkit-transform:matrix(0.189396,-0.007394,0.009752,0.249810,0,0);}
.m31_c00384{transform:matrix(0.189770,-0.007408,0.009752,0.249810,0,0);-ms-transform:matrix(0.189770,-0.007408,0.009752,0.249810,0,0);-webkit-transform:matrix(0.189770,-0.007408,0.009752,0.249810,0,0);}
.ma8_c00384{transform:matrix(0.189970,-0.007416,0.009752,0.249810,0,0);-ms-transform:matrix(0.189970,-0.007416,0.009752,0.249810,0,0);-webkit-transform:matrix(0.189970,-0.007416,0.009752,0.249810,0,0);}
.m51_c00384{transform:matrix(0.190450,-0.007435,0.009752,0.249810,0,0);-ms-transform:matrix(0.190450,-0.007435,0.009752,0.249810,0,0);-webkit-transform:matrix(0.190450,-0.007435,0.009752,0.249810,0,0);}
.m68_c00384{transform:matrix(0.191544,-0.007478,0.009752,0.249810,0,0);-ms-transform:matrix(0.191544,-0.007478,0.009752,0.249810,0,0);-webkit-transform:matrix(0.191544,-0.007478,0.009752,0.249810,0,0);}
.m8a_c00384{transform:matrix(0.191734,-0.007485,0.009752,0.249810,0,0);-ms-transform:matrix(0.191734,-0.007485,0.009752,0.249810,0,0);-webkit-transform:matrix(0.191734,-0.007485,0.009752,0.249810,0,0);}
.mf0_c00384{transform:matrix(0.193138,-0.007540,0.009752,0.249810,0,0);-ms-transform:matrix(0.193138,-0.007540,0.009752,0.249810,0,0);-webkit-transform:matrix(0.193138,-0.007540,0.009752,0.249810,0,0);}
.m8_c00384{transform:matrix(0.193822,-0.007567,0.009752,0.249810,0,0);-ms-transform:matrix(0.193822,-0.007567,0.009752,0.249810,0,0);-webkit-transform:matrix(0.193822,-0.007567,0.009752,0.249810,0,0);}
.m17_c00384{transform:matrix(0.194457,-0.007591,0.009752,0.249810,0,0);-ms-transform:matrix(0.194457,-0.007591,0.009752,0.249810,0,0);-webkit-transform:matrix(0.194457,-0.007591,0.009752,0.249810,0,0);}
.me4_c00384{transform:matrix(0.195821,-0.007645,0.009752,0.249810,0,0);-ms-transform:matrix(0.195821,-0.007645,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195821,-0.007645,0.009752,0.249810,0,0);}
.mb5_c00384{transform:matrix(0.195876,-0.007647,0.009752,0.249810,0,0);-ms-transform:matrix(0.195876,-0.007647,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195876,-0.007647,0.009752,0.249810,0,0);}
.m5d_c00384{transform:matrix(0.195896,-0.007648,0.009752,0.249810,0,0);-ms-transform:matrix(0.195896,-0.007648,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195896,-0.007648,0.009752,0.249810,0,0);}
.mb6_c00384{transform:matrix(0.196016,-0.007652,0.009752,0.249810,0,0);-ms-transform:matrix(0.196016,-0.007652,0.009752,0.249810,0,0);-webkit-transform:matrix(0.196016,-0.007652,0.009752,0.249810,0,0);}
.m42_c00384{transform:matrix(0.196325,-0.007664,0.009752,0.249810,0,0);-ms-transform:matrix(0.196325,-0.007664,0.009752,0.249810,0,0);-webkit-transform:matrix(0.196325,-0.007664,0.009752,0.249810,0,0);}
.m7d_c00384{transform:matrix(0.197115,-0.007695,0.009752,0.249810,0,0);-ms-transform:matrix(0.197115,-0.007695,0.009752,0.249810,0,0);-webkit-transform:matrix(0.197115,-0.007695,0.009752,0.249810,0,0);}
.m2d_c00384{transform:matrix(0.197694,-0.007718,0.009752,0.249810,0,0);-ms-transform:matrix(0.197694,-0.007718,0.009752,0.249810,0,0);-webkit-transform:matrix(0.197694,-0.007718,0.009752,0.249810,0,0);}
.m1c_c00384{transform:matrix(0.197744,-0.007720,0.009752,0.249810,0,0);-ms-transform:matrix(0.197744,-0.007720,0.009752,0.249810,0,0);-webkit-transform:matrix(0.197744,-0.007720,0.009752,0.249810,0,0);}
.m47_c00384{transform:matrix(0.198459,-0.007748,0.009752,0.249810,0,0);-ms-transform:matrix(0.198459,-0.007748,0.009752,0.249810,0,0);-webkit-transform:matrix(0.198459,-0.007748,0.009752,0.249810,0,0);}
.me7_c00384{transform:matrix(0.198759,-0.007759,0.009752,0.249810,0,0);-ms-transform:matrix(0.198759,-0.007759,0.009752,0.249810,0,0);-webkit-transform:matrix(0.198759,-0.007759,0.009752,0.249810,0,0);}
.m8f_c00384{transform:matrix(0.198933,-0.007766,0.009752,0.249810,0,0);-ms-transform:matrix(0.198933,-0.007766,0.009752,0.249810,0,0);-webkit-transform:matrix(0.198933,-0.007766,0.009752,0.249810,0,0);}
.m60_c00384{transform:matrix(0.199073,-0.007772,0.009752,0.249810,0,0);-ms-transform:matrix(0.199073,-0.007772,0.009752,0.249810,0,0);-webkit-transform:matrix(0.199073,-0.007772,0.009752,0.249810,0,0);}
.m3c_c00384{transform:matrix(0.199413,-0.007785,0.009752,0.249810,0,0);-ms-transform:matrix(0.199413,-0.007785,0.009752,0.249810,0,0);-webkit-transform:matrix(0.199413,-0.007785,0.009752,0.249810,0,0);}
.mec_c00384{transform:matrix(0.199978,-0.007807,0.009752,0.249810,0,0);-ms-transform:matrix(0.199978,-0.007807,0.009752,0.249810,0,0);-webkit-transform:matrix(0.199978,-0.007807,0.009752,0.249810,0,0);}
.me2_c00384{transform:matrix(0.200302,-0.007820,0.009752,0.249810,0,0);-ms-transform:matrix(0.200302,-0.007820,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200302,-0.007820,0.009752,0.249810,0,0);}
.m9e_c00384{transform:matrix(0.200597,-0.007831,0.009752,0.249810,0,0);-ms-transform:matrix(0.200597,-0.007831,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200597,-0.007831,0.009752,0.249810,0,0);}
.me0_c00384{transform:matrix(0.200807,-0.007839,0.009752,0.249810,0,0);-ms-transform:matrix(0.200807,-0.007839,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200807,-0.007839,0.009752,0.249810,0,0);}
.m19_c00384{transform:matrix(0.201137,-0.007852,0.009752,0.249810,0,0);-ms-transform:matrix(0.201137,-0.007852,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201137,-0.007852,0.009752,0.249810,0,0);}
.m7a_c00384{transform:matrix(0.201322,-0.007859,0.009752,0.249810,0,0);-ms-transform:matrix(0.201322,-0.007859,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201322,-0.007859,0.009752,0.249810,0,0);}
.m39_c00384{transform:matrix(0.201467,-0.007865,0.009752,0.249810,0,0);-ms-transform:matrix(0.201467,-0.007865,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201467,-0.007865,0.009752,0.249810,0,0);}
.m3e_c00384{transform:matrix(0.201721,-0.007875,0.009752,0.249810,0,0);-ms-transform:matrix(0.201721,-0.007875,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201721,-0.007875,0.009752,0.249810,0,0);}
.md4_c00384{transform:matrix(0.201776,-0.007877,0.009752,0.249810,0,0);-ms-transform:matrix(0.201776,-0.007877,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201776,-0.007877,0.009752,0.249810,0,0);}
.m94_c00384{transform:matrix(0.201801,-0.007878,0.009752,0.249810,0,0);-ms-transform:matrix(0.201801,-0.007878,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201801,-0.007878,0.009752,0.249810,0,0);}
.mc8_c00384{transform:matrix(0.201881,-0.007881,0.009752,0.249810,0,0);-ms-transform:matrix(0.201881,-0.007881,0.009752,0.249810,0,0);-webkit-transform:matrix(0.201881,-0.007881,0.009752,0.249810,0,0);}
.m26_c00384{transform:matrix(0.202196,-0.007894,0.009752,0.249810,0,0);-ms-transform:matrix(0.202196,-0.007894,0.009752,0.249810,0,0);-webkit-transform:matrix(0.202196,-0.007894,0.009752,0.249810,0,0);}
.mea_c00384{transform:matrix(0.202391,-0.007901,0.009752,0.249810,0,0);-ms-transform:matrix(0.202391,-0.007901,0.009752,0.249810,0,0);-webkit-transform:matrix(0.202391,-0.007901,0.009752,0.249810,0,0);}
.m9d_c00384{transform:matrix(0.203065,-0.007927,0.009752,0.249810,0,0);-ms-transform:matrix(0.203065,-0.007927,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203065,-0.007927,0.009752,0.249810,0,0);}
.m9a_c00384{transform:matrix(0.203070,-0.007928,0.009752,0.249810,0,0);-ms-transform:matrix(0.203070,-0.007928,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203070,-0.007928,0.009752,0.249810,0,0);}
.mc1_c00384{transform:matrix(0.203615,-0.007949,0.009752,0.249810,0,0);-ms-transform:matrix(0.203615,-0.007949,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203615,-0.007949,0.009752,0.249810,0,0);}
.m4e_c00384{transform:matrix(0.203885,-0.007959,0.009752,0.249810,0,0);-ms-transform:matrix(0.203885,-0.007959,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203885,-0.007959,0.009752,0.249810,0,0);}
.mdc_c00384{transform:matrix(0.204214,-0.007972,0.009752,0.249810,0,0);-ms-transform:matrix(0.204214,-0.007972,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204214,-0.007972,0.009752,0.249810,0,0);}
.m1f_c00384{transform:matrix(0.204369,-0.007978,0.009752,0.249810,0,0);-ms-transform:matrix(0.204369,-0.007978,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204369,-0.007978,0.009752,0.249810,0,0);}
.m7c_c00384{transform:matrix(0.204399,-0.007980,0.009752,0.249810,0,0);-ms-transform:matrix(0.204399,-0.007980,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204399,-0.007980,0.009752,0.249810,0,0);}
.md5_c00384{transform:matrix(0.204524,-0.007984,0.009752,0.249810,0,0);-ms-transform:matrix(0.204524,-0.007984,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204524,-0.007984,0.009752,0.249810,0,0);}
.m9_c00384{transform:matrix(0.204919,-0.008000,0.009752,0.249810,0,0);-ms-transform:matrix(0.204919,-0.008000,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204919,-0.008000,0.009752,0.249810,0,0);}
.mef_c00384{transform:matrix(0.205139,-0.008008,0.009752,0.249810,0,0);-ms-transform:matrix(0.205139,-0.008008,0.009752,0.249810,0,0);-webkit-transform:matrix(0.205139,-0.008008,0.009752,0.249810,0,0);}
.m24_c00384{transform:matrix(0.205978,-0.008041,0.009752,0.249810,0,0);-ms-transform:matrix(0.205978,-0.008041,0.009752,0.249810,0,0);-webkit-transform:matrix(0.205978,-0.008041,0.009752,0.249810,0,0);}
.mdd_c00384{transform:matrix(0.206763,-0.008072,0.009752,0.249810,0,0);-ms-transform:matrix(0.206763,-0.008072,0.009752,0.249810,0,0);-webkit-transform:matrix(0.206763,-0.008072,0.009752,0.249810,0,0);}
.m18_c00384{transform:matrix(0.206767,-0.008072,0.009752,0.249810,0,0);-ms-transform:matrix(0.206767,-0.008072,0.009752,0.249810,0,0);-webkit-transform:matrix(0.206767,-0.008072,0.009752,0.249810,0,0);}
.m29_c00384{transform:matrix(0.207012,-0.008082,0.009752,0.249810,0,0);-ms-transform:matrix(0.207012,-0.008082,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207012,-0.008082,0.009752,0.249810,0,0);}
.mcc_c00384{transform:matrix(0.207662,-0.008107,0.009752,0.249810,0,0);-ms-transform:matrix(0.207662,-0.008107,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207662,-0.008107,0.009752,0.249810,0,0);}
.mce_c00384{transform:matrix(0.207762,-0.008111,0.009752,0.249810,0,0);-ms-transform:matrix(0.207762,-0.008111,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207762,-0.008111,0.009752,0.249810,0,0);}
.mc0_c00384{transform:matrix(0.207977,-0.008119,0.009752,0.249810,0,0);-ms-transform:matrix(0.207977,-0.008119,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207977,-0.008119,0.009752,0.249810,0,0);}
.m50_c00384{transform:matrix(0.208296,-0.008132,0.009752,0.249810,0,0);-ms-transform:matrix(0.208296,-0.008132,0.009752,0.249810,0,0);-webkit-transform:matrix(0.208296,-0.008132,0.009752,0.249810,0,0);}
.m4a_c00384{transform:matrix(0.208561,-0.008142,0.009752,0.249810,0,0);-ms-transform:matrix(0.208561,-0.008142,0.009752,0.249810,0,0);-webkit-transform:matrix(0.208561,-0.008142,0.009752,0.249810,0,0);}
.mb7_c00384{transform:matrix(0.209096,-0.008163,0.009752,0.249810,0,0);-ms-transform:matrix(0.209096,-0.008163,0.009752,0.249810,0,0);-webkit-transform:matrix(0.209096,-0.008163,0.009752,0.249810,0,0);}
.ma6_c00384{transform:matrix(0.209266,-0.008170,0.009752,0.249810,0,0);-ms-transform:matrix(0.209266,-0.008170,0.009752,0.249810,0,0);-webkit-transform:matrix(0.209266,-0.008170,0.009752,0.249810,0,0);}
.m49_c00384{transform:matrix(0.209785,-0.008190,0.009752,0.249810,0,0);-ms-transform:matrix(0.209785,-0.008190,0.009752,0.249810,0,0);-webkit-transform:matrix(0.209785,-0.008190,0.009752,0.249810,0,0);}
.mc7_c00384{transform:matrix(0.210110,-0.008202,0.009752,0.249810,0,0);-ms-transform:matrix(0.210110,-0.008202,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210110,-0.008202,0.009752,0.249810,0,0);}
.m72_c00384{transform:matrix(0.210660,-0.008224,0.009752,0.249810,0,0);-ms-transform:matrix(0.210660,-0.008224,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210660,-0.008224,0.009752,0.249810,0,0);}
.m36_c00384{transform:matrix(0.210829,-0.008231,0.009752,0.249810,0,0);-ms-transform:matrix(0.210829,-0.008231,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210829,-0.008231,0.009752,0.249810,0,0);}
.m46_c00384{transform:matrix(0.211604,-0.008261,0.009752,0.249810,0,0);-ms-transform:matrix(0.211604,-0.008261,0.009752,0.249810,0,0);-webkit-transform:matrix(0.211604,-0.008261,0.009752,0.249810,0,0);}
.m71_c00384{transform:matrix(0.212758,-0.008306,0.009752,0.249810,0,0);-ms-transform:matrix(0.212758,-0.008306,0.009752,0.249810,0,0);-webkit-transform:matrix(0.212758,-0.008306,0.009752,0.249810,0,0);}
.m69_c00384{transform:matrix(0.213382,-0.008330,0.009752,0.249810,0,0);-ms-transform:matrix(0.213382,-0.008330,0.009752,0.249810,0,0);-webkit-transform:matrix(0.213382,-0.008330,0.009752,0.249810,0,0);}
.m40_c00384{transform:matrix(0.213702,-0.008343,0.009752,0.249810,0,0);-ms-transform:matrix(0.213702,-0.008343,0.009752,0.249810,0,0);-webkit-transform:matrix(0.213702,-0.008343,0.009752,0.249810,0,0);}
.m35_c00384{transform:matrix(0.213712,-0.008343,0.009752,0.249810,0,0);-ms-transform:matrix(0.213712,-0.008343,0.009752,0.249810,0,0);-webkit-transform:matrix(0.213712,-0.008343,0.009752,0.249810,0,0);}
.mac_c00384{transform:matrix(0.214082,-0.008358,0.009752,0.249810,0,0);-ms-transform:matrix(0.214082,-0.008358,0.009752,0.249810,0,0);-webkit-transform:matrix(0.214082,-0.008358,0.009752,0.249810,0,0);}
.m64_c00384{transform:matrix(0.214122,-0.008359,0.009752,0.249810,0,0);-ms-transform:matrix(0.214122,-0.008359,0.009752,0.249810,0,0);-webkit-transform:matrix(0.214122,-0.008359,0.009752,0.249810,0,0);}
.m33_c00384{transform:matrix(0.214237,-0.008364,0.009752,0.249810,0,0);-ms-transform:matrix(0.214237,-0.008364,0.009752,0.249810,0,0);-webkit-transform:matrix(0.214237,-0.008364,0.009752,0.249810,0,0);}
.mdb_c00384{transform:matrix(0.214332,-0.008367,0.009752,0.249810,0,0);-ms-transform:matrix(0.214332,-0.008367,0.009752,0.249810,0,0);-webkit-transform:matrix(0.214332,-0.008367,0.009752,0.249810,0,0);}
.m5a_c00384{transform:matrix(0.215011,-0.008394,0.009752,0.249810,0,0);-ms-transform:matrix(0.215011,-0.008394,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215011,-0.008394,0.009752,0.249810,0,0);}
.m27_c00384{transform:matrix(0.215106,-0.008398,0.009752,0.249810,0,0);-ms-transform:matrix(0.215106,-0.008398,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215106,-0.008398,0.009752,0.249810,0,0);}
.m97_c00384{transform:matrix(0.215226,-0.008402,0.009752,0.249810,0,0);-ms-transform:matrix(0.215226,-0.008402,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215226,-0.008402,0.009752,0.249810,0,0);}
.m57_c00384{transform:matrix(0.215686,-0.008420,0.009752,0.249810,0,0);-ms-transform:matrix(0.215686,-0.008420,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215686,-0.008420,0.009752,0.249810,0,0);}
.m81_c00384{transform:matrix(0.215970,-0.008431,0.009752,0.249810,0,0);-ms-transform:matrix(0.215970,-0.008431,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215970,-0.008431,0.009752,0.249810,0,0);}
.m70_c00384{transform:matrix(0.216230,-0.008441,0.009752,0.249810,0,0);-ms-transform:matrix(0.216230,-0.008441,0.009752,0.249810,0,0);-webkit-transform:matrix(0.216230,-0.008441,0.009752,0.249810,0,0);}
.m80_c00384{transform:matrix(0.216595,-0.008456,0.009752,0.249810,0,0);-ms-transform:matrix(0.216595,-0.008456,0.009752,0.249810,0,0);-webkit-transform:matrix(0.216595,-0.008456,0.009752,0.249810,0,0);}
.m6e_c00384{transform:matrix(0.216720,-0.008461,0.009752,0.249810,0,0);-ms-transform:matrix(0.216720,-0.008461,0.009752,0.249810,0,0);-webkit-transform:matrix(0.216720,-0.008461,0.009752,0.249810,0,0);}
.me1_c00384{transform:matrix(0.217250,-0.008481,0.009752,0.249810,0,0);-ms-transform:matrix(0.217250,-0.008481,0.009752,0.249810,0,0);-webkit-transform:matrix(0.217250,-0.008481,0.009752,0.249810,0,0);}
.m1b_c00384{transform:matrix(0.217255,-0.008481,0.009752,0.249810,0,0);-ms-transform:matrix(0.217255,-0.008481,0.009752,0.249810,0,0);-webkit-transform:matrix(0.217255,-0.008481,0.009752,0.249810,0,0);}
.m95_c00384{transform:matrix(0.218469,-0.008529,0.009752,0.249810,0,0);-ms-transform:matrix(0.218469,-0.008529,0.009752,0.249810,0,0);-webkit-transform:matrix(0.218469,-0.008529,0.009752,0.249810,0,0);}
.mde_c00384{transform:matrix(0.218544,-0.008532,0.009752,0.249810,0,0);-ms-transform:matrix(0.218544,-0.008532,0.009752,0.249810,0,0);-webkit-transform:matrix(0.218544,-0.008532,0.009752,0.249810,0,0);}
.m9b_c00384{transform:matrix(0.218828,-0.008543,0.009752,0.249810,0,0);-ms-transform:matrix(0.218828,-0.008543,0.009752,0.249810,0,0);-webkit-transform:matrix(0.218828,-0.008543,0.009752,0.249810,0,0);}
.m48_c00384{transform:matrix(0.219388,-0.008565,0.009752,0.249810,0,0);-ms-transform:matrix(0.219388,-0.008565,0.009752,0.249810,0,0);-webkit-transform:matrix(0.219388,-0.008565,0.009752,0.249810,0,0);}
.ma1_c00384{transform:matrix(0.219628,-0.008574,0.009752,0.249810,0,0);-ms-transform:matrix(0.219628,-0.008574,0.009752,0.249810,0,0);-webkit-transform:matrix(0.219628,-0.008574,0.009752,0.249810,0,0);}
.m6b_c00384{transform:matrix(0.219848,-0.008583,0.009752,0.249810,0,0);-ms-transform:matrix(0.219848,-0.008583,0.009752,0.249810,0,0);-webkit-transform:matrix(0.219848,-0.008583,0.009752,0.249810,0,0);}
.m4b_c00384{transform:matrix(0.219947,-0.008587,0.009752,0.249810,0,0);-ms-transform:matrix(0.219947,-0.008587,0.009752,0.249810,0,0);-webkit-transform:matrix(0.219947,-0.008587,0.009752,0.249810,0,0);}
.mb_c00384{transform:matrix(0.220127,-0.008594,0.009752,0.249810,0,0);-ms-transform:matrix(0.220127,-0.008594,0.009752,0.249810,0,0);-webkit-transform:matrix(0.220127,-0.008594,0.009752,0.249810,0,0);}
.m86_c00384{transform:matrix(0.220332,-0.008602,0.009752,0.249810,0,0);-ms-transform:matrix(0.220332,-0.008602,0.009752,0.249810,0,0);-webkit-transform:matrix(0.220332,-0.008602,0.009752,0.249810,0,0);}
.m93_c00384{transform:matrix(0.221956,-0.008665,0.009752,0.249810,0,0);-ms-transform:matrix(0.221956,-0.008665,0.009752,0.249810,0,0);-webkit-transform:matrix(0.221956,-0.008665,0.009752,0.249810,0,0);}
.m6f_c00384{transform:matrix(0.221986,-0.008666,0.009752,0.249810,0,0);-ms-transform:matrix(0.221986,-0.008666,0.009752,0.249810,0,0);-webkit-transform:matrix(0.221986,-0.008666,0.009752,0.249810,0,0);}
.m3b_c00384{transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);-ms-transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);}
.m66_c00384{transform:matrix(0.222101,-0.008671,0.009752,0.249810,0,0);-ms-transform:matrix(0.222101,-0.008671,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222101,-0.008671,0.009752,0.249810,0,0);}
.m6a_c00384{transform:matrix(0.222286,-0.008678,0.009752,0.249810,0,0);-ms-transform:matrix(0.222286,-0.008678,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222286,-0.008678,0.009752,0.249810,0,0);}
.mca_c00384{transform:matrix(0.222376,-0.008681,0.009752,0.249810,0,0);-ms-transform:matrix(0.222376,-0.008681,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222376,-0.008681,0.009752,0.249810,0,0);}
.mc_c00384{transform:matrix(0.222381,-0.008682,0.009752,0.249810,0,0);-ms-transform:matrix(0.222381,-0.008682,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222381,-0.008682,0.009752,0.249810,0,0);}
.mbc_c00384{transform:matrix(0.222446,-0.008684,0.009752,0.249810,0,0);-ms-transform:matrix(0.222446,-0.008684,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222446,-0.008684,0.009752,0.249810,0,0);}
.m78_c00384{transform:matrix(0.222501,-0.008686,0.009752,0.249810,0,0);-ms-transform:matrix(0.222501,-0.008686,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222501,-0.008686,0.009752,0.249810,0,0);}
.m28_c00384{transform:matrix(0.222560,-0.008689,0.009752,0.249810,0,0);-ms-transform:matrix(0.222560,-0.008689,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222560,-0.008689,0.009752,0.249810,0,0);}
.m54_c00384{transform:matrix(0.222795,-0.008698,0.009752,0.249810,0,0);-ms-transform:matrix(0.222795,-0.008698,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222795,-0.008698,0.009752,0.249810,0,0);}
.m45_c00384{transform:matrix(0.223280,-0.008717,0.009752,0.249810,0,0);-ms-transform:matrix(0.223280,-0.008717,0.009752,0.249810,0,0);-webkit-transform:matrix(0.223280,-0.008717,0.009752,0.249810,0,0);}
.m2b_c00384{transform:matrix(0.223750,-0.008735,0.009752,0.249810,0,0);-ms-transform:matrix(0.223750,-0.008735,0.009752,0.249810,0,0);-webkit-transform:matrix(0.223750,-0.008735,0.009752,0.249810,0,0);}
.m44_c00384{transform:matrix(0.223949,-0.008743,0.009752,0.249810,0,0);-ms-transform:matrix(0.223949,-0.008743,0.009752,0.249810,0,0);-webkit-transform:matrix(0.223949,-0.008743,0.009752,0.249810,0,0);}
.m4f_c00384{transform:matrix(0.224019,-0.008746,0.009752,0.249810,0,0);-ms-transform:matrix(0.224019,-0.008746,0.009752,0.249810,0,0);-webkit-transform:matrix(0.224019,-0.008746,0.009752,0.249810,0,0);}
.m2c_c00384{transform:matrix(0.224029,-0.008746,0.009752,0.249810,0,0);-ms-transform:matrix(0.224029,-0.008746,0.009752,0.249810,0,0);-webkit-transform:matrix(0.224029,-0.008746,0.009752,0.249810,0,0);}
.m82_c00384{transform:matrix(0.224219,-0.008753,0.009752,0.249810,0,0);-ms-transform:matrix(0.224219,-0.008753,0.009752,0.249810,0,0);-webkit-transform:matrix(0.224219,-0.008753,0.009752,0.249810,0,0);}
.m22_c00384{transform:matrix(0.224354,-0.008759,0.009752,0.249810,0,0);-ms-transform:matrix(0.224354,-0.008759,0.009752,0.249810,0,0);-webkit-transform:matrix(0.224354,-0.008759,0.009752,0.249810,0,0);}
.m75_c00384{transform:matrix(0.224719,-0.008773,0.009752,0.249810,0,0);-ms-transform:matrix(0.224719,-0.008773,0.009752,0.249810,0,0);-webkit-transform:matrix(0.224719,-0.008773,0.009752,0.249810,0,0);}
.mcb_c00384{transform:matrix(0.226293,-0.008834,0.009752,0.249810,0,0);-ms-transform:matrix(0.226293,-0.008834,0.009752,0.249810,0,0);-webkit-transform:matrix(0.226293,-0.008834,0.009752,0.249810,0,0);}
.md2_c00384{transform:matrix(0.227522,-0.008882,0.009752,0.249810,0,0);-ms-transform:matrix(0.227522,-0.008882,0.009752,0.249810,0,0);-webkit-transform:matrix(0.227522,-0.008882,0.009752,0.249810,0,0);}
.mbf_c00384{transform:matrix(0.227781,-0.008892,0.009752,0.249810,0,0);-ms-transform:matrix(0.227781,-0.008892,0.009752,0.249810,0,0);-webkit-transform:matrix(0.227781,-0.008892,0.009752,0.249810,0,0);}
.m5e_c00384{transform:matrix(0.227986,-0.008900,0.009752,0.249810,0,0);-ms-transform:matrix(0.227986,-0.008900,0.009752,0.249810,0,0);-webkit-transform:matrix(0.227986,-0.008900,0.009752,0.249810,0,0);}
.md6_c00384{transform:matrix(0.228636,-0.008926,0.009752,0.249810,0,0);-ms-transform:matrix(0.228636,-0.008926,0.009752,0.249810,0,0);-webkit-transform:matrix(0.228636,-0.008926,0.009752,0.249810,0,0);}
.mae_c00384{transform:matrix(0.230489,-0.008998,0.009752,0.249810,0,0);-ms-transform:matrix(0.230489,-0.008998,0.009752,0.249810,0,0);-webkit-transform:matrix(0.230489,-0.008998,0.009752,0.249810,0,0);}
.mb8_c00384{transform:matrix(0.230504,-0.008999,0.009752,0.249810,0,0);-ms-transform:matrix(0.230504,-0.008999,0.009752,0.249810,0,0);-webkit-transform:matrix(0.230504,-0.008999,0.009752,0.249810,0,0);}
.mc4_c00384{transform:matrix(0.231224,-0.009027,0.009752,0.249810,0,0);-ms-transform:matrix(0.231224,-0.009027,0.009752,0.249810,0,0);-webkit-transform:matrix(0.231224,-0.009027,0.009752,0.249810,0,0);}
.m16_c00384{transform:matrix(0.231718,-0.009046,0.009752,0.249810,0,0);-ms-transform:matrix(0.231718,-0.009046,0.009752,0.249810,0,0);-webkit-transform:matrix(0.231718,-0.009046,0.009752,0.249810,0,0);}
.m15_c00384{transform:matrix(0.231828,-0.009050,0.009752,0.249810,0,0);-ms-transform:matrix(0.231828,-0.009050,0.009752,0.249810,0,0);-webkit-transform:matrix(0.231828,-0.009050,0.009752,0.249810,0,0);}
.mbe_c00384{transform:matrix(0.232968,-0.009095,0.009752,0.249810,0,0);-ms-transform:matrix(0.232968,-0.009095,0.009752,0.249810,0,0);-webkit-transform:matrix(0.232968,-0.009095,0.009752,0.249810,0,0);}
.m1a_c00384{transform:matrix(0.233102,-0.009100,0.009752,0.249810,0,0);-ms-transform:matrix(0.233102,-0.009100,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233102,-0.009100,0.009752,0.249810,0,0);}
.mb2_c00384{transform:matrix(0.233177,-0.009103,0.009752,0.249810,0,0);-ms-transform:matrix(0.233177,-0.009103,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233177,-0.009103,0.009752,0.249810,0,0);}
.mb0_c00384{transform:matrix(0.233952,-0.009133,0.009752,0.249810,0,0);-ms-transform:matrix(0.233952,-0.009133,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233952,-0.009133,0.009752,0.249810,0,0);}
.md_c00384{transform:matrix(0.233982,-0.009134,0.009752,0.249810,0,0);-ms-transform:matrix(0.233982,-0.009134,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233982,-0.009134,0.009752,0.249810,0,0);}
.m6c_c00384{transform:matrix(0.234751,-0.009164,0.009752,0.249810,0,0);-ms-transform:matrix(0.234751,-0.009164,0.009752,0.249810,0,0);-webkit-transform:matrix(0.234751,-0.009164,0.009752,0.249810,0,0);}
.mc9_c00384{transform:matrix(0.235521,-0.009194,0.009752,0.249810,0,0);-ms-transform:matrix(0.235521,-0.009194,0.009752,0.249810,0,0);-webkit-transform:matrix(0.235521,-0.009194,0.009752,0.249810,0,0);}
.m92_c00384{transform:matrix(0.235900,-0.009209,0.009752,0.249810,0,0);-ms-transform:matrix(0.235900,-0.009209,0.009752,0.249810,0,0);-webkit-transform:matrix(0.235900,-0.009209,0.009752,0.249810,0,0);}
.md9_c00384{transform:matrix(0.236090,-0.009217,0.009752,0.249810,0,0);-ms-transform:matrix(0.236090,-0.009217,0.009752,0.249810,0,0);-webkit-transform:matrix(0.236090,-0.009217,0.009752,0.249810,0,0);}
.mbd_c00384{transform:matrix(0.239168,-0.009337,0.009752,0.249810,0,0);-ms-transform:matrix(0.239168,-0.009337,0.009752,0.249810,0,0);-webkit-transform:matrix(0.239168,-0.009337,0.009752,0.249810,0,0);}
.m1e_c00384{transform:matrix(0.239423,-0.009347,0.009752,0.249810,0,0);-ms-transform:matrix(0.239423,-0.009347,0.009752,0.249810,0,0);-webkit-transform:matrix(0.239423,-0.009347,0.009752,0.249810,0,0);}
.m2a_c00384{transform:matrix(0.239942,-0.009367,0.009752,0.249810,0,0);-ms-transform:matrix(0.239942,-0.009367,0.009752,0.249810,0,0);-webkit-transform:matrix(0.239942,-0.009367,0.009752,0.249810,0,0);}
.md0_c00384{transform:matrix(0.240777,-0.009400,0.009752,0.249810,0,0);-ms-transform:matrix(0.240777,-0.009400,0.009752,0.249810,0,0);-webkit-transform:matrix(0.240777,-0.009400,0.009752,0.249810,0,0);}
.m20_c00384{transform:matrix(0.241141,-0.009414,0.009752,0.249810,0,0);-ms-transform:matrix(0.241141,-0.009414,0.009752,0.249810,0,0);-webkit-transform:matrix(0.241141,-0.009414,0.009752,0.249810,0,0);}
.m13_c00384{transform:matrix(0.241886,-0.009443,0.009752,0.249810,0,0);-ms-transform:matrix(0.241886,-0.009443,0.009752,0.249810,0,0);-webkit-transform:matrix(0.241886,-0.009443,0.009752,0.249810,0,0);}
.mc2_c00384{transform:matrix(0.242560,-0.009469,0.009752,0.249810,0,0);-ms-transform:matrix(0.242560,-0.009469,0.009752,0.249810,0,0);-webkit-transform:matrix(0.242560,-0.009469,0.009752,0.249810,0,0);}
.mb1_c00384{transform:matrix(0.242965,-0.009485,0.009752,0.249810,0,0);-ms-transform:matrix(0.242965,-0.009485,0.009752,0.249810,0,0);-webkit-transform:matrix(0.242965,-0.009485,0.009752,0.249810,0,0);}
.mda_c00384{transform:matrix(0.244674,-0.009552,0.009752,0.249810,0,0);-ms-transform:matrix(0.244674,-0.009552,0.009752,0.249810,0,0);-webkit-transform:matrix(0.244674,-0.009552,0.009752,0.249810,0,0);}
.m6_c00384{transform:matrix(0.244888,-0.009560,0.009752,0.249810,0,0);-ms-transform:matrix(0.244888,-0.009560,0.009752,0.249810,0,0);-webkit-transform:matrix(0.244888,-0.009560,0.009752,0.249810,0,0);}
.mbb_c00384{transform:matrix(0.245053,-0.009567,0.009752,0.249810,0,0);-ms-transform:matrix(0.245053,-0.009567,0.009752,0.249810,0,0);-webkit-transform:matrix(0.245053,-0.009567,0.009752,0.249810,0,0);}
.m21_c00384{transform:matrix(0.245893,-0.009599,0.009752,0.249810,0,0);-ms-transform:matrix(0.245893,-0.009599,0.009752,0.249810,0,0);-webkit-transform:matrix(0.245893,-0.009599,0.009752,0.249810,0,0);}
.m38_c00384{transform:matrix(0.245923,-0.009601,0.009752,0.249810,0,0);-ms-transform:matrix(0.245923,-0.009601,0.009752,0.249810,0,0);-webkit-transform:matrix(0.245923,-0.009601,0.009752,0.249810,0,0);}
.ma5_c00384{transform:matrix(0.246177,-0.009611,0.009752,0.249810,0,0);-ms-transform:matrix(0.246177,-0.009611,0.009752,0.249810,0,0);-webkit-transform:matrix(0.246177,-0.009611,0.009752,0.249810,0,0);}
.m5f_c00384{transform:matrix(0.247561,-0.009665,0.009752,0.249810,0,0);-ms-transform:matrix(0.247561,-0.009665,0.009752,0.249810,0,0);-webkit-transform:matrix(0.247561,-0.009665,0.009752,0.249810,0,0);}
.maa_c00384{transform:matrix(0.248031,-0.009683,0.009752,0.249810,0,0);-ms-transform:matrix(0.248031,-0.009683,0.009752,0.249810,0,0);-webkit-transform:matrix(0.248031,-0.009683,0.009752,0.249810,0,0);}
.m14_c00384{transform:matrix(0.248251,-0.009691,0.009752,0.249810,0,0);-ms-transform:matrix(0.248251,-0.009691,0.009752,0.249810,0,0);-webkit-transform:matrix(0.248251,-0.009691,0.009752,0.249810,0,0);}
.ma_c00384{transform:matrix(0.249135,-0.009726,0.009752,0.249810,0,0);-ms-transform:matrix(0.249135,-0.009726,0.009752,0.249810,0,0);-webkit-transform:matrix(0.249135,-0.009726,0.009752,0.249810,0,0);}
.m3_c00384{transform:matrix(0.251868,-0.009833,0.009752,0.249810,0,0);-ms-transform:matrix(0.251868,-0.009833,0.009752,0.249810,0,0);-webkit-transform:matrix(0.251868,-0.009833,0.009752,0.249810,0,0);}
.mab_c00384{transform:matrix(0.254071,-0.009919,0.009752,0.249810,0,0);-ms-transform:matrix(0.254071,-0.009919,0.009752,0.249810,0,0);-webkit-transform:matrix(0.254071,-0.009919,0.009752,0.249810,0,0);}
.mb9_c00384{transform:matrix(0.258408,-0.010088,0.009752,0.249810,0,0);-ms-transform:matrix(0.258408,-0.010088,0.009752,0.249810,0,0);-webkit-transform:matrix(0.258408,-0.010088,0.009752,0.249810,0,0);}
.m76_c00384{transform:matrix(0.259143,-0.010117,0.009752,0.249810,0,0);-ms-transform:matrix(0.259143,-0.010117,0.009752,0.249810,0,0);-webkit-transform:matrix(0.259143,-0.010117,0.009752,0.249810,0,0);}
.m11_c00384{transform:matrix(0.262185,-0.010235,0.009752,0.249810,0,0);-ms-transform:matrix(0.262185,-0.010235,0.009752,0.249810,0,0);-webkit-transform:matrix(0.262185,-0.010235,0.009752,0.249810,0,0);}
.mf_c00384{transform:matrix(0.264374,-0.010321,0.009752,0.249810,0,0);-ms-transform:matrix(0.264374,-0.010321,0.009752,0.249810,0,0);-webkit-transform:matrix(0.264374,-0.010321,0.009752,0.249810,0,0);}
.m25_c00384{transform:matrix(0.268560,-0.010484,0.009752,0.249810,0,0);-ms-transform:matrix(0.268560,-0.010484,0.009752,0.249810,0,0);-webkit-transform:matrix(0.268560,-0.010484,0.009752,0.249810,0,0);}
.me_c00384{transform:matrix(0.269789,-0.010532,0.009752,0.249810,0,0);-ms-transform:matrix(0.269789,-0.010532,0.009752,0.249810,0,0);-webkit-transform:matrix(0.269789,-0.010532,0.009752,0.249810,0,0);}
.md7_c00384{transform:matrix(0.270459,-0.010558,0.009752,0.249810,0,0);-ms-transform:matrix(0.270459,-0.010558,0.009752,0.249810,0,0);-webkit-transform:matrix(0.270459,-0.010558,0.009752,0.249810,0,0);}
.maf_c00384{transform:matrix(0.276065,-0.010777,0.009752,0.249810,0,0);-ms-transform:matrix(0.276065,-0.010777,0.009752,0.249810,0,0);-webkit-transform:matrix(0.276065,-0.010777,0.009752,0.249810,0,0);}
.mba_c00384{transform:matrix(0.276654,-0.010800,0.009752,0.249810,0,0);-ms-transform:matrix(0.276654,-0.010800,0.009752,0.249810,0,0);-webkit-transform:matrix(0.276654,-0.010800,0.009752,0.249810,0,0);}
.m74_c00384{transform:matrix(0.284214,-0.011095,0.009752,0.249810,0,0);-ms-transform:matrix(0.284214,-0.011095,0.009752,0.249810,0,0);-webkit-transform:matrix(0.284214,-0.011095,0.009752,0.249810,0,0);}
.m10_c00384{transform:matrix(0.290414,-0.011337,0.009752,0.249810,0,0);-ms-transform:matrix(0.290414,-0.011337,0.009752,0.249810,0,0);-webkit-transform:matrix(0.290414,-0.011337,0.009752,0.249810,0,0);}
.ma7_c00384{transform:matrix(0.308415,-0.012040,0.009752,0.249810,0,0);-ms-transform:matrix(0.308415,-0.012040,0.009752,0.249810,0,0);-webkit-transform:matrix(0.308415,-0.012040,0.009752,0.249810,0,0);}
.mad_c00384{transform:matrix(0.470037,-0.018350,0.009752,0.249810,0,0);-ms-transform:matrix(0.470037,-0.018350,0.009752,0.249810,0,0);-webkit-transform:matrix(0.470037,-0.018350,0.009752,0.249810,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:0.000000px;}
.fc0_c00384{color:transparent;}
.fs3_c00384{font-size:48.288455px;}
.fsb_c00384{font-size:53.537200px;}
.fs5_c00384{font-size:55.636698px;}
.fs7_c00384{font-size:57.736196px;}
.fs4_c00384{font-size:58.785945px;}
.fs2_c00384{font-size:59.835694px;}
.fs8_c00384{font-size:62.984941px;}
.fs1_c00384{font-size:64.034690px;}
.fs9_c00384{font-size:65.084439px;}
.fs6_c00384{font-size:66.134188px;}
.fs0_c00384{font-size:67.183937px;}
.fsc_c00384{font-size:70.333184px;}
.fsa_c00384{font-size:72.432682px;}
.y0_c00384{bottom:0.000000px;}
.yf1_c00384{bottom:29.301085px;}
.yf2_c00384{bottom:29.680773px;}
.yf3_c00384{bottom:32.956210px;}
.yf4_c00384{bottom:34.363522px;}
.yf5_c00384{bottom:35.009119px;}
.yf6_c00384{bottom:38.020497px;}
.yf7_c00384{bottom:39.128217px;}
.ye8_c00384{bottom:52.497667px;}
.ye9_c00384{bottom:53.081970px;}
.yea_c00384{bottom:53.488851px;}
.yeb_c00384{bottom:54.910315px;}
.yec_c00384{bottom:55.302661px;}
.yed_c00384{bottom:55.923450px;}
.yee_c00384{bottom:57.031129px;}
.yef_c00384{bottom:57.445494px;}
.yf0_c00384{bottom:58.161061px;}
.ye0_c00384{bottom:66.554385px;}
.ye1_c00384{bottom:67.952256px;}
.ye2_c00384{bottom:68.680288px;}
.ye3_c00384{bottom:70.503931px;}
.ye4_c00384{bottom:71.812756px;}
.ye5_c00384{bottom:73.245070px;}
.ye6_c00384{bottom:74.065681px;}
.ye7_c00384{bottom:76.279893px;}
.yd9_c00384{bottom:81.131392px;}
.yda_c00384{bottom:81.987378px;}
.ydb_c00384{bottom:83.699934px;}
.ydc_c00384{bottom:85.714323px;}
.ydd_c00384{bottom:86.460360px;}
.yde_c00384{bottom:91.085563px;}
.ydf_c00384{bottom:91.785466px;}
.yd0_c00384{bottom:97.061496px;}
.yd1_c00384{bottom:97.819786px;}
.yd2_c00384{bottom:98.799868px;}
.yd3_c00384{bottom:101.616342px;}
.yd4_c00384{bottom:102.729124px;}
.yd5_c00384{bottom:105.367650px;}
.yd6_c00384{bottom:106.793889px;}
.yd7_c00384{bottom:107.998453px;}
.yd8_c00384{bottom:108.693325px;}
.yc8_c00384{bottom:115.405998px;}
.yc9_c00384{bottom:117.392167px;}
.yca_c00384{bottom:118.354384px;}
.ycb_c00384{bottom:119.638545px;}
.ycc_c00384{bottom:120.750040px;}
.ycd_c00384{bottom:121.579404px;}
.yce_c00384{bottom:124.292242px;}
.ycf_c00384{bottom:124.559880px;}
.ybf_c00384{bottom:134.033802px;}
.yc0_c00384{bottom:134.509177px;}
.yc1_c00384{bottom:136.084947px;}
.yc2_c00384{bottom:137.296819px;}
.yc3_c00384{bottom:137.862933px;}
.yc4_c00384{bottom:139.780347px;}
.yc5_c00384{bottom:140.267094px;}
.yc6_c00384{bottom:141.762246px;}
.yc7_c00384{bottom:142.931535px;}
.yb6_c00384{bottom:148.608361px;}
.yb7_c00384{bottom:149.430592px;}
.yb8_c00384{bottom:150.219118px;}
.yb9_c00384{bottom:151.234539px;}
.yba_c00384{bottom:152.568447px;}
.ybb_c00384{bottom:153.231265px;}
.ybc_c00384{bottom:154.441536px;}
.ybd_c00384{bottom:155.142330px;}
.ybe_c00384{bottom:157.478203px;}
.yb1_c00384{bottom:161.875860px;}
.yb2_c00384{bottom:162.862165px;}
.yb3_c00384{bottom:163.983556px;}
.yb4_c00384{bottom:169.790680px;}
.yb5_c00384{bottom:172.555278px;}
.yab_c00384{bottom:181.816633px;}
.yac_c00384{bottom:183.876355px;}
.yad_c00384{bottom:185.507664px;}
.yae_c00384{bottom:188.070342px;}
.yaf_c00384{bottom:190.036428px;}
.yb0_c00384{bottom:190.919148px;}
.ya9_c00384{bottom:201.535534px;}
.yaa_c00384{bottom:201.536952px;}
.ya1_c00384{bottom:217.707103px;}
.ya2_c00384{bottom:218.942322px;}
.ya3_c00384{bottom:220.827867px;}
.ya4_c00384{bottom:222.206743px;}
.ya5_c00384{bottom:222.931806px;}
.ya6_c00384{bottom:224.734299px;}
.ya7_c00384{bottom:225.314452px;}
.ya8_c00384{bottom:225.823870px;}
.y96_c00384{bottom:234.983206px;}
.y97_c00384{bottom:235.688320px;}
.y98_c00384{bottom:236.090787px;}
.y99_c00384{bottom:237.469209px;}
.y9a_c00384{bottom:238.110148px;}
.y9b_c00384{bottom:238.617100px;}
.y9c_c00384{bottom:239.481703px;}
.y9d_c00384{bottom:241.482570px;}
.y9e_c00384{bottom:241.997406px;}
.y9f_c00384{bottom:243.181023px;}
.ya0_c00384{bottom:244.083457px;}
.y8e_c00384{bottom:251.987095px;}
.y8f_c00384{bottom:253.812489px;}
.y90_c00384{bottom:255.010915px;}
.y91_c00384{bottom:256.105459px;}
.y92_c00384{bottom:257.393881px;}
.y93_c00384{bottom:258.214879px;}
.y94_c00384{bottom:259.511338px;}
.y95_c00384{bottom:260.008804px;}
.y87_c00384{bottom:269.803770px;}
.y88_c00384{bottom:271.444060px;}
.y89_c00384{bottom:272.439060px;}
.y8a_c00384{bottom:274.984534px;}
.y8b_c00384{bottom:275.876160px;}
.y8c_c00384{bottom:276.420124px;}
.y8d_c00384{bottom:278.012278px;}
.y7e_c00384{bottom:287.079670px;}
.y7f_c00384{bottom:288.150180px;}
.y80_c00384{bottom:288.775783px;}
.y81_c00384{bottom:290.332387px;}
.y82_c00384{bottom:291.203916px;}
.y83_c00384{bottom:291.842434px;}
.y84_c00384{bottom:293.883963px;}
.y85_c00384{bottom:295.074177px;}
.y86_c00384{bottom:295.548351px;}
.y77_c00384{bottom:303.013685px;}
.y78_c00384{bottom:305.122258px;}
.y79_c00384{bottom:308.013945px;}
.y7a_c00384{bottom:310.049538px;}
.y7b_c00384{bottom:310.687917px;}
.y7c_c00384{bottom:312.888917px;}
.y7d_c00384{bottom:313.663371px;}
.y6e_c00384{bottom:320.828284px;}
.y6f_c00384{bottom:321.949631px;}
.y70_c00384{bottom:322.368945px;}
.y71_c00384{bottom:322.956244px;}
.y72_c00384{bottom:324.582846px;}
.y73_c00384{bottom:326.504882px;}
.y74_c00384{bottom:327.248655px;}
.y75_c00384{bottom:328.654122px;}
.y76_c00384{bottom:329.885907px;}
.y65_c00384{bottom:337.295440px;}
.y66_c00384{bottom:338.456998px;}
.y67_c00384{bottom:338.956966px;}
.y68_c00384{bottom:339.532012px;}
.y69_c00384{bottom:340.333368px;}
.y6a_c00384{bottom:342.243901px;}
.y6b_c00384{bottom:343.784580px;}
.y6c_c00384{bottom:345.775479px;}
.y6d_c00384{bottom:346.460082px;}
.y5e_c00384{bottom:355.104177px;}
.y5f_c00384{bottom:356.193339px;}
.y60_c00384{bottom:356.953821px;}
.y61_c00384{bottom:358.806799px;}
.y62_c00384{bottom:361.262765px;}
.y63_c00384{bottom:362.922823px;}
.y64_c00384{bottom:363.450763px;}
.y55_c00384{bottom:369.153303px;}
.y56_c00384{bottom:369.559837px;}
.y57_c00384{bottom:371.011150px;}
.y58_c00384{bottom:373.592782px;}
.y59_c00384{bottom:374.384112px;}
.y5a_c00384{bottom:377.227207px;}
.y5b_c00384{bottom:378.033279px;}
.y5c_c00384{bottom:379.373019px;}
.y5d_c00384{bottom:380.070713px;}
.y4e_c00384{bottom:386.430648px;}
.y4f_c00384{bottom:388.167040px;}
.y50_c00384{bottom:390.091056px;}
.y51_c00384{bottom:391.163986px;}
.y52_c00384{bottom:393.660910px;}
.y53_c00384{bottom:394.341711px;}
.y54_c00384{bottom:395.139412px;}
.y46_c00384{bottom:403.966171px;}
.y47_c00384{bottom:404.801866px;}
.y48_c00384{bottom:405.413799px;}
.y49_c00384{bottom:407.072895px;}
.y4a_c00384{bottom:408.758230px;}
.y4b_c00384{bottom:409.396051px;}
.y4c_c00384{bottom:411.071712px;}
.y4d_c00384{bottom:412.692333px;}
.y3c_c00384{bottom:420.975667px;}
.y3d_c00384{bottom:423.165772px;}
.y3e_c00384{bottom:423.788505px;}
.y3f_c00384{bottom:424.361449px;}
.y40_c00384{bottom:425.982003px;}
.y41_c00384{bottom:426.631128px;}
.y42_c00384{bottom:427.560981px;}
.y43_c00384{bottom:428.038080px;}
.y44_c00384{bottom:429.196087px;}
.y45_c00384{bottom:429.707814px;}
.y35_c00384{bottom:436.365753px;}
.y36_c00384{bottom:437.063694px;}
.y37_c00384{bottom:440.306929px;}
.y38_c00384{bottom:442.145310px;}
.y39_c00384{bottom:442.814469px;}
.y3a_c00384{bottom:446.458528px;}
.y3b_c00384{bottom:447.060741px;}
.y2e_c00384{bottom:453.639435px;}
.y2f_c00384{bottom:456.018868px;}
.y30_c00384{bottom:458.042095px;}
.y31_c00384{bottom:459.358350px;}
.y32_c00384{bottom:461.445621px;}
.y33_c00384{bottom:461.980329px;}
.y34_c00384{bottom:462.707191px;}
.y26_c00384{bottom:470.914984px;}
.y27_c00384{bottom:472.555918px;}
.y28_c00384{bottom:473.841073px;}
.y29_c00384{bottom:475.925676px;}
.y2a_c00384{bottom:477.210831px;}
.y2b_c00384{bottom:477.837789px;}
.y2c_c00384{bottom:480.637356px;}
.y2d_c00384{bottom:481.122325px;}
.y20_c00384{bottom:489.265395px;}
.y21_c00384{bottom:490.429392px;}
.y22_c00384{bottom:490.838194px;}
.y23_c00384{bottom:493.208245px;}
.y24_c00384{bottom:494.712996px;}
.y25_c00384{bottom:495.449578px;}
.y18_c00384{bottom:506.002330px;}
.y19_c00384{bottom:507.161031px;}
.y1a_c00384{bottom:508.507273px;}
.y1b_c00384{bottom:509.585451px;}
.y1c_c00384{bottom:510.529807px;}
.y1d_c00384{bottom:512.219782px;}
.y1e_c00384{bottom:513.752221px;}
.y1f_c00384{bottom:514.409140px;}
.yf_c00384{bottom:523.281286px;}
.y10_c00384{bottom:524.569182px;}
.y11_c00384{bottom:526.831966px;}
.y12_c00384{bottom:527.543992px;}
.y13_c00384{bottom:529.134832px;}
.y14_c00384{bottom:529.459386px;}
.y15_c00384{bottom:530.631141px;}
.y16_c00384{bottom:532.070579px;}
.y17_c00384{bottom:533.039032px;}
.y9_c00384{bottom:537.872365px;}
.ya_c00384{bottom:540.735643px;}
.yb_c00384{bottom:541.808277px;}
.yc_c00384{bottom:543.120715px;}
.yd_c00384{bottom:545.582368px;}
.ye_c00384{bottom:547.962936px;}
.y3_c00384{bottom:554.891464px;}
.y4_c00384{bottom:557.492086px;}
.y5_c00384{bottom:560.562279px;}
.y6_c00384{bottom:563.255956px;}
.y7_c00384{bottom:565.668771px;}
.y8_c00384{bottom:566.498148px;}
.y1_c00384{bottom:572.941500px;}
.y2_c00384{bottom:574.893703px;}
.h5_c00384{height:48.288455px;}
.hd_c00384{height:53.537200px;}
.h7_c00384{height:55.636698px;}
.h9_c00384{height:57.736196px;}
.h6_c00384{height:58.785945px;}
.h4_c00384{height:59.835694px;}
.ha_c00384{height:62.984941px;}
.h3_c00384{height:64.034690px;}
.hb_c00384{height:65.084439px;}
.h8_c00384{height:66.134188px;}
.h2_c00384{height:67.183937px;}
.he_c00384{height:70.333184px;}
.hc_c00384{height:72.432682px;}
.h0_c00384{height:613.170000px;}
.h1_c00384{height:613.500000px;}
.w0_c00384{width:359.100000px;}
.w1_c00384{width:359.250000px;}
.x0_c00384{left:0.000000px;}
.x55_c00384{left:8.932150px;}
.x3_c00384{left:15.268528px;}
.x2b_c00384{left:17.579949px;}
.x48_c00384{left:18.960387px;}
.x27_c00384{left:20.223834px;}
.x62_c00384{left:21.850354px;}
.x6a_c00384{left:23.085487px;}
.x77_c00384{left:24.434223px;}
.x7b_c00384{left:26.300544px;}
.xe_c00384{left:27.476290px;}
.x42_c00384{left:30.150190px;}
.x20_c00384{left:32.103469px;}
.x2c_c00384{left:35.919294px;}
.x78_c00384{left:41.282434px;}
.x6d_c00384{left:42.817870px;}
.x37_c00384{left:45.197452px;}
.x50_c00384{left:47.235799px;}
.x17_c00384{left:51.148644px;}
.x1c_c00384{left:52.163520px;}
.x58_c00384{left:55.993182px;}
.x69_c00384{left:57.800157px;}
.x51_c00384{left:59.552871px;}
.xf_c00384{left:63.195693px;}
.x1d_c00384{left:64.941742px;}
.x3d_c00384{left:66.376081px;}
.x56_c00384{left:67.441933px;}
.x6e_c00384{left:68.947831px;}
.x80_c00384{left:70.594476px;}
.x6b_c00384{left:74.538991px;}
.x4_c00384{left:75.695113px;}
.x49_c00384{left:76.719381px;}
.x4e_c00384{left:78.469570px;}
.x9_c00384{left:82.071757px;}
.x28_c00384{left:84.480049px;}
.x31_c00384{left:86.493484px;}
.x18_c00384{left:91.899397px;}
.x1_c00384{left:94.272000px;}
.x6f_c00384{left:97.918341px;}
.x4f_c00384{left:99.534804px;}
.x63_c00384{left:104.598069px;}
.x32_c00384{left:105.943344px;}
.xa_c00384{left:107.010429px;}
.x21_c00384{left:109.016965px;}
.x76_c00384{left:110.079631px;}
.x5f_c00384{left:115.568344px;}
.x38_c00384{left:118.363551px;}
.x3e_c00384{left:119.773896px;}
.x2d_c00384{left:121.187278px;}
.x19_c00384{left:124.553382px;}
.x10_c00384{left:125.963182px;}
.x73_c00384{left:127.251991px;}
.x59_c00384{left:128.652481px;}
.x43_c00384{left:130.879936px;}
.x7c_c00384{left:132.928624px;}
.x4a_c00384{left:134.563789px;}
.x70_c00384{left:135.969666px;}
.xb_c00384{left:137.515151px;}
.x1e_c00384{left:138.914398px;}
.x64_c00384{left:142.805233px;}
.x2_c00384{left:144.278443px;}
.x11_c00384{left:145.739728px;}
.x5_c00384{left:147.035076px;}
.x3f_c00384{left:149.525569px;}
.x44_c00384{left:150.650385px;}
.x1a_c00384{left:153.125956px;}
.x71_c00384{left:154.870174px;}
.x5a_c00384{left:157.666128px;}
.x22_c00384{left:163.837257px;}
.x7d_c00384{left:168.261508px;}
.x2e_c00384{left:169.508283px;}
.x65_c00384{left:171.603037px;}
.x39_c00384{left:172.644139px;}
.x29_c00384{left:174.635331px;}
.x67_c00384{left:176.538160px;}
.x5b_c00384{left:178.904305px;}
.x52_c00384{left:181.065952px;}
.x1f_c00384{left:185.878212px;}
.x2f_c00384{left:187.110366px;}
.x12_c00384{left:189.872704px;}
.x3a_c00384{left:193.172473px;}
.xc_c00384{left:194.727979px;}
.x23_c00384{left:197.602746px;}
.x13_c00384{left:198.878244px;}
.x74_c00384{left:200.210190px;}
.x68_c00384{left:201.530922px;}
.x53_c00384{left:202.924347px;}
.x1b_c00384{left:204.257719px;}
.x7e_c00384{left:206.949826px;}
.x6_c00384{left:209.614655px;}
.x4b_c00384{left:211.198483px;}
.x24_c00384{left:214.085391px;}
.x60_c00384{left:215.592067px;}
.x40_c00384{left:218.828836px;}
.x45_c00384{left:221.670541px;}
.x33_c00384{left:223.643616px;}
.x6c_c00384{left:228.371973px;}
.x14_c00384{left:231.392004px;}
.x34_c00384{left:238.517268px;}
.x79_c00384{left:240.518328px;}
.x46_c00384{left:241.818612px;}
.x54_c00384{left:244.231080px;}
.x2a_c00384{left:245.411988px;}
.x3b_c00384{left:247.166790px;}
.xd_c00384{left:250.055988px;}
.x61_c00384{left:256.067119px;}
.x75_c00384{left:258.435267px;}
.x41_c00384{left:259.853572px;}
.x4c_c00384{left:263.024776px;}
.x7_c00384{left:265.691796px;}
.x7a_c00384{left:267.260293px;}
.x15_c00384{left:271.339201px;}
.x35_c00384{left:274.676968px;}
.x72_c00384{left:276.074263px;}
.x4d_c00384{left:279.508285px;}
.x30_c00384{left:282.914713px;}
.x8_c00384{left:284.976006px;}
.x5c_c00384{left:286.520910px;}
.x25_c00384{left:287.681091px;}
.x7f_c00384{left:288.916719px;}
.x36_c00384{left:290.629833px;}
.x47_c00384{left:292.701187px;}
.x5e_c00384{left:294.222664px;}
.x16_c00384{left:298.222453px;}
.x3c_c00384{left:299.366817px;}
.x26_c00384{left:300.411316px;}
.x5d_c00384{left:302.319159px;}
.x57_c00384{left:304.409427px;}
.x66_c00384{left:324.807994px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs3_c00384{font-size:42.923071pt;}
.fsb_c00384{font-size:47.588622pt;}
.fs5_c00384{font-size:49.454843pt;}
.fs7_c00384{font-size:51.321063pt;}
.fs4_c00384{font-size:52.254173pt;}
.fs2_c00384{font-size:53.187284pt;}
.fs8_c00384{font-size:55.986614pt;}
.fs1_c00384{font-size:56.919725pt;}
.fs9_c00384{font-size:57.852835pt;}
.fs6_c00384{font-size:58.785945pt;}
.fs0_c00384{font-size:59.719055pt;}
.fsc_c00384{font-size:62.518386pt;}
.fsa_c00384{font-size:64.384607pt;}
.y0_c00384{bottom:0.000000pt;}
.yf1_c00384{bottom:26.045409pt;}
.yf2_c00384{bottom:26.382909pt;}
.yf3_c00384{bottom:29.294409pt;}
.yf4_c00384{bottom:30.545353pt;}
.yf5_c00384{bottom:31.119217pt;}
.yf6_c00384{bottom:33.795997pt;}
.yf7_c00384{bottom:34.780637pt;}
.ye8_c00384{bottom:46.664593pt;}
.ye9_c00384{bottom:47.183973pt;}
.yea_c00384{bottom:47.545645pt;}
.yeb_c00384{bottom:48.809169pt;}
.yec_c00384{bottom:49.157921pt;}
.yed_c00384{bottom:49.709733pt;}
.yee_c00384{bottom:50.694337pt;}
.yef_c00384{bottom:51.062661pt;}
.yf0_c00384{bottom:51.698721pt;}
.ye0_c00384{bottom:59.159453pt;}
.ye1_c00384{bottom:60.402005pt;}
.ye2_c00384{bottom:61.049145pt;}
.ye3_c00384{bottom:62.670161pt;}
.ye4_c00384{bottom:63.833561pt;}
.ye5_c00384{bottom:65.106729pt;}
.ye6_c00384{bottom:65.836161pt;}
.ye7_c00384{bottom:67.804349pt;}
.yd9_c00384{bottom:72.116793pt;}
.yda_c00384{bottom:72.877669pt;}
.ydb_c00384{bottom:74.399941pt;}
.ydc_c00384{bottom:76.190509pt;}
.ydd_c00384{bottom:76.853653pt;}
.yde_c00384{bottom:80.964945pt;}
.ydf_c00384{bottom:81.587081pt;}
.yd0_c00384{bottom:86.276885pt;}
.yd1_c00384{bottom:86.950921pt;}
.yd2_c00384{bottom:87.822105pt;}
.yd3_c00384{bottom:90.325637pt;}
.yd4_c00384{bottom:91.314777pt;}
.yd5_c00384{bottom:93.660133pt;}
.yd6_c00384{bottom:94.927901pt;}
.yd7_c00384{bottom:95.998625pt;}
.yd8_c00384{bottom:96.616289pt;}
.yc8_c00384{bottom:102.583109pt;}
.yc9_c00384{bottom:104.348593pt;}
.yca_c00384{bottom:105.203897pt;}
.ycb_c00384{bottom:106.345373pt;}
.ycc_c00384{bottom:107.333369pt;}
.ycd_c00384{bottom:108.070581pt;}
.yce_c00384{bottom:110.481993pt;}
.ycf_c00384{bottom:110.719893pt;}
.ybf_c00384{bottom:119.141157pt;}
.yc0_c00384{bottom:119.563713pt;}
.yc1_c00384{bottom:120.964397pt;}
.yc2_c00384{bottom:122.041617pt;}
.yc3_c00384{bottom:122.544829pt;}
.yc4_c00384{bottom:124.249197pt;}
.yc5_c00384{bottom:124.681861pt;}
.yc6_c00384{bottom:126.010885pt;}
.yc7_c00384{bottom:127.050253pt;}
.yb6_c00384{bottom:132.096321pt;}
.yb7_c00384{bottom:132.827193pt;}
.yb8_c00384{bottom:133.528105pt;}
.yb9_c00384{bottom:134.430701pt;}
.yba_c00384{bottom:135.616397pt;}
.ybb_c00384{bottom:136.205569pt;}
.ybc_c00384{bottom:137.281365pt;}
.ybd_c00384{bottom:137.904293pt;}
.ybe_c00384{bottom:139.980625pt;}
.yb1_c00384{bottom:143.889653pt;}
.yb2_c00384{bottom:144.766369pt;}
.yb3_c00384{bottom:145.763161pt;}
.yb4_c00384{bottom:150.925049pt;}
.yb5_c00384{bottom:153.382469pt;}
.yab_c00384{bottom:161.614785pt;}
.yac_c00384{bottom:163.445649pt;}
.yad_c00384{bottom:164.895701pt;}
.yae_c00384{bottom:167.173637pt;}
.yaf_c00384{bottom:168.921269pt;}
.yb0_c00384{bottom:169.705909pt;}
.ya9_c00384{bottom:179.142697pt;}
.yaa_c00384{bottom:179.143957pt;}
.ya1_c00384{bottom:193.517425pt;}
.ya2_c00384{bottom:194.615397pt;}
.ya3_c00384{bottom:196.291437pt;}
.ya4_c00384{bottom:197.517105pt;}
.ya5_c00384{bottom:198.161605pt;}
.ya6_c00384{bottom:199.763821pt;}
.ya7_c00384{bottom:200.279513pt;}
.ya8_c00384{bottom:200.732329pt;}
.y96_c00384{bottom:208.873961pt;}
.y97_c00384{bottom:209.500729pt;}
.y98_c00384{bottom:209.858477pt;}
.y99_c00384{bottom:211.083741pt;}
.y9a_c00384{bottom:211.653465pt;}
.y9b_c00384{bottom:212.104089pt;}
.y9c_c00384{bottom:212.872625pt;}
.y9d_c00384{bottom:214.651173pt;}
.y9e_c00384{bottom:215.108805pt;}
.y9f_c00384{bottom:216.160909pt;}
.ya0_c00384{bottom:216.963073pt;}
.y8e_c00384{bottom:223.988529pt;}
.y8f_c00384{bottom:225.611101pt;}
.y90_c00384{bottom:226.676369pt;}
.y91_c00384{bottom:227.649297pt;}
.y92_c00384{bottom:228.794561pt;}
.y93_c00384{bottom:229.524337pt;}
.y94_c00384{bottom:230.676745pt;}
.y95_c00384{bottom:231.118937pt;}
.y87_c00384{bottom:239.825573pt;}
.y88_c00384{bottom:241.283609pt;}
.y89_c00384{bottom:242.168053pt;}
.y8a_c00384{bottom:244.430697pt;}
.y8b_c00384{bottom:245.223253pt;}
.y8c_c00384{bottom:245.706777pt;}
.y8d_c00384{bottom:247.122025pt;}
.y7e_c00384{bottom:255.181929pt;}
.y7f_c00384{bottom:256.133493pt;}
.y80_c00384{bottom:256.689585pt;}
.y81_c00384{bottom:258.073233pt;}
.y82_c00384{bottom:258.847925pt;}
.y83_c00384{bottom:259.415497pt;}
.y84_c00384{bottom:261.230189pt;}
.y85_c00384{bottom:262.288157pt;}
.y86_c00384{bottom:262.709645pt;}
.y77_c00384{bottom:269.345497pt;}
.y78_c00384{bottom:271.219785pt;}
.y79_c00384{bottom:273.790173pt;}
.y7a_c00384{bottom:275.599589pt;}
.y7b_c00384{bottom:276.167037pt;}
.y7c_c00384{bottom:278.123481pt;}
.y7d_c00384{bottom:278.811885pt;}
.y6e_c00384{bottom:285.180697pt;}
.y6f_c00384{bottom:286.177449pt;}
.y70_c00384{bottom:286.550173pt;}
.y71_c00384{bottom:287.072217pt;}
.y72_c00384{bottom:288.518085pt;}
.y73_c00384{bottom:290.226561pt;}
.y74_c00384{bottom:290.887693pt;}
.y75_c00384{bottom:292.136997pt;}
.y76_c00384{bottom:293.231917pt;}
.y65_c00384{bottom:299.818169pt;}
.y66_c00384{bottom:300.850665pt;}
.y67_c00384{bottom:301.295081pt;}
.y68_c00384{bottom:301.806233pt;}
.y69_c00384{bottom:302.518549pt;}
.y6a_c00384{bottom:304.216801pt;}
.y6b_c00384{bottom:305.586293pt;}
.y6c_c00384{bottom:307.355981pt;}
.y6d_c00384{bottom:307.964517pt;}
.y5e_c00384{bottom:315.648157pt;}
.y5f_c00384{bottom:316.616301pt;}
.y60_c00384{bottom:317.292285pt;}
.y61_c00384{bottom:318.939377pt;}
.y62_c00384{bottom:321.122457pt;}
.y63_c00384{bottom:322.598065pt;}
.y64_c00384{bottom:323.067345pt;}
.y55_c00384{bottom:328.136269pt;}
.y56_c00384{bottom:328.497633pt;}
.y57_c00384{bottom:329.787689pt;}
.y58_c00384{bottom:332.082473pt;}
.y59_c00384{bottom:332.785877pt;}
.y5a_c00384{bottom:335.313073pt;}
.y5b_c00384{bottom:336.029581pt;}
.y5c_c00384{bottom:337.220461pt;}
.y5d_c00384{bottom:337.840633pt;}
.y4e_c00384{bottom:343.493909pt;}
.y4f_c00384{bottom:345.037369pt;}
.y50_c00384{bottom:346.747605pt;}
.y51_c00384{bottom:347.701321pt;}
.y52_c00384{bottom:349.920809pt;}
.y53_c00384{bottom:350.525965pt;}
.y54_c00384{bottom:351.235033pt;}
.y46_c00384{bottom:359.081041pt;}
.y47_c00384{bottom:359.823881pt;}
.y48_c00384{bottom:360.367821pt;}
.y49_c00384{bottom:361.842573pt;}
.y4a_c00384{bottom:363.340649pt;}
.y4b_c00384{bottom:363.907601pt;}
.y4c_c00384{bottom:365.397077pt;}
.y4d_c00384{bottom:366.837629pt;}
.y3c_c00384{bottom:374.200593pt;}
.y3d_c00384{bottom:376.147353pt;}
.y3e_c00384{bottom:376.700893pt;}
.y3f_c00384{bottom:377.210177pt;}
.y40_c00384{bottom:378.650669pt;}
.y41_c00384{bottom:379.227669pt;}
.y42_c00384{bottom:380.054205pt;}
.y43_c00384{bottom:380.478293pt;}
.y44_c00384{bottom:381.507633pt;}
.y45_c00384{bottom:381.962501pt;}
.y35_c00384{bottom:387.880669pt;}
.y36_c00384{bottom:388.501061pt;}
.y37_c00384{bottom:391.383937pt;}
.y38_c00384{bottom:393.018053pt;}
.y39_c00384{bottom:393.612861pt;}
.y3a_c00384{bottom:396.852025pt;}
.y3b_c00384{bottom:397.387325pt;}
.y2e_c00384{bottom:403.235053pt;}
.y2f_c00384{bottom:405.350105pt;}
.y30_c00384{bottom:407.148529pt;}
.y31_c00384{bottom:408.318533pt;}
.y32_c00384{bottom:410.173885pt;}
.y33_c00384{bottom:410.649181pt;}
.y34_c00384{bottom:411.295281pt;}
.y26_c00384{bottom:418.591097pt;}
.y27_c00384{bottom:420.049705pt;}
.y28_c00384{bottom:421.192065pt;}
.y29_c00384{bottom:423.045045pt;}
.y2a_c00384{bottom:424.187405pt;}
.y2b_c00384{bottom:424.744701pt;}
.y2c_c00384{bottom:427.233205pt;}
.y2d_c00384{bottom:427.664289pt;}
.y20_c00384{bottom:434.902573pt;}
.y21_c00384{bottom:435.937237pt;}
.y22_c00384{bottom:436.300617pt;}
.y23_c00384{bottom:438.407329pt;}
.y24_c00384{bottom:439.744885pt;}
.y25_c00384{bottom:440.399625pt;}
.y18_c00384{bottom:449.779849pt;}
.y19_c00384{bottom:450.809805pt;}
.y1a_c00384{bottom:452.006465pt;}
.y1b_c00384{bottom:452.964845pt;}
.y1c_c00384{bottom:453.804273pt;}
.y1d_c00384{bottom:455.306473pt;}
.y1e_c00384{bottom:456.668641pt;}
.y1f_c00384{bottom:457.252569pt;}
.yf_c00384{bottom:465.138921pt;}
.y10_c00384{bottom:466.283717pt;}
.y11_c00384{bottom:468.295081pt;}
.y12_c00384{bottom:468.927993pt;}
.y13_c00384{bottom:470.342073pt;}
.y14_c00384{bottom:470.630565pt;}
.y15_c00384{bottom:471.672125pt;}
.y16_c00384{bottom:472.951625pt;}
.y17_c00384{bottom:473.812473pt;}
.y9_c00384{bottom:478.108769pt;}
.ya_c00384{bottom:480.653905pt;}
.yb_c00384{bottom:481.607357pt;}
.yc_c00384{bottom:482.773969pt;}
.yd_c00384{bottom:484.962105pt;}
.ye_c00384{bottom:487.078165pt;}
.y3_c00384{bottom:493.236857pt;}
.y4_c00384{bottom:495.548521pt;}
.y5_c00384{bottom:498.277581pt;}
.y6_c00384{bottom:500.671961pt;}
.y7_c00384{bottom:502.816685pt;}
.y8_c00384{bottom:503.553909pt;}
.y1_c00384{bottom:509.281333pt;}
.y2_c00384{bottom:511.016625pt;}
.h5_c00384{height:42.923071pt;}
.hd_c00384{height:47.588622pt;}
.h7_c00384{height:49.454843pt;}
.h9_c00384{height:51.321063pt;}
.h6_c00384{height:52.254173pt;}
.h4_c00384{height:53.187284pt;}
.ha_c00384{height:55.986614pt;}
.h3_c00384{height:56.919725pt;}
.hb_c00384{height:57.852835pt;}
.h8_c00384{height:58.785945pt;}
.h2_c00384{height:59.719055pt;}
.he_c00384{height:62.518386pt;}
.hc_c00384{height:64.384607pt;}
.h0_c00384{height:545.040000pt;}
.h1_c00384{height:545.333333pt;}
.w0_c00384{width:319.200000pt;}
.w1_c00384{width:319.333333pt;}
.x0_c00384{left:0.000000pt;}
.x55_c00384{left:7.939689pt;}
.x3_c00384{left:13.572025pt;}
.x2b_c00384{left:15.626621pt;}
.x48_c00384{left:16.853677pt;}
.x27_c00384{left:17.976741pt;}
.x62_c00384{left:19.422537pt;}
.x6a_c00384{left:20.520433pt;}
.x77_c00384{left:21.719309pt;}
.x7b_c00384{left:23.378261pt;}
.xe_c00384{left:24.423369pt;}
.x42_c00384{left:26.800169pt;}
.x20_c00384{left:28.536417pt;}
.x2c_c00384{left:31.928261pt;}
.x78_c00384{left:36.695497pt;}
.x6d_c00384{left:38.060329pt;}
.x37_c00384{left:40.175513pt;}
.x50_c00384{left:41.987377pt;}
.x17_c00384{left:45.465461pt;}
.x1c_c00384{left:46.367573pt;}
.x58_c00384{left:49.771717pt;}
.x69_c00384{left:51.377917pt;}
.x51_c00384{left:52.935885pt;}
.xf_c00384{left:56.173949pt;}
.x1d_c00384{left:57.725993pt;}
.x3d_c00384{left:59.000961pt;}
.x56_c00384{left:59.948385pt;}
.x6e_c00384{left:61.286961pt;}
.x80_c00384{left:62.750645pt;}
.x6b_c00384{left:66.256881pt;}
.x4_c00384{left:67.284545pt;}
.x49_c00384{left:68.195005pt;}
.x4e_c00384{left:69.750729pt;}
.x9_c00384{left:72.952673pt;}
.x28_c00384{left:75.093377pt;}
.x31_c00384{left:76.883097pt;}
.x18_c00384{left:81.688353pt;}
.x1_c00384{left:83.797333pt;}
.x6f_c00384{left:87.038525pt;}
.x4f_c00384{left:88.475381pt;}
.x63_c00384{left:92.976061pt;}
.x32_c00384{left:94.171861pt;}
.xa_c00384{left:95.120381pt;}
.x21_c00384{left:96.903969pt;}
.x76_c00384{left:97.848561pt;}
.x5f_c00384{left:102.727417pt;}
.x38_c00384{left:105.212045pt;}
.x3e_c00384{left:106.465685pt;}
.x2d_c00384{left:107.722025pt;}
.x19_c00384{left:110.714117pt;}
.x10_c00384{left:111.967273pt;}
.x73_c00384{left:113.112881pt;}
.x59_c00384{left:114.357761pt;}
.x43_c00384{left:116.337721pt;}
.x7c_c00384{left:118.158777pt;}
.x4a_c00384{left:119.612257pt;}
.x70_c00384{left:120.861925pt;}
.xb_c00384{left:122.235689pt;}
.x1e_c00384{left:123.479465pt;}
.x64_c00384{left:126.937985pt;}
.x2_c00384{left:128.247505pt;}
.x11_c00384{left:129.546425pt;}
.x5_c00384{left:130.697845pt;}
.x3f_c00384{left:132.911617pt;}
.x44_c00384{left:133.911453pt;}
.x1a_c00384{left:136.111961pt;}
.x71_c00384{left:137.662377pt;}
.x5a_c00384{left:140.147669pt;}
.x22_c00384{left:145.633117pt;}
.x7d_c00384{left:149.565785pt;}
.x2e_c00384{left:150.674029pt;}
.x65_c00384{left:152.536033pt;}
.x39_c00384{left:153.461457pt;}
.x29_c00384{left:155.231405pt;}
.x67_c00384{left:156.922809pt;}
.x5b_c00384{left:159.026049pt;}
.x52_c00384{left:160.947513pt;}
.x1f_c00384{left:165.225077pt;}
.x2f_c00384{left:166.320325pt;}
.x12_c00384{left:168.775737pt;}
.x3a_c00384{left:171.708865pt;}
.xc_c00384{left:173.091537pt;}
.x23_c00384{left:175.646885pt;}
.x13_c00384{left:176.780661pt;}
.x74_c00384{left:177.964613pt;}
.x68_c00384{left:179.138597pt;}
.x53_c00384{left:180.377197pt;}
.x1b_c00384{left:181.562417pt;}
.x7e_c00384{left:183.955401pt;}
.x6_c00384{left:186.324137pt;}
.x4b_c00384{left:187.731985pt;}
.x24_c00384{left:190.298125pt;}
.x60_c00384{left:191.637393pt;}
.x40_c00384{left:194.514521pt;}
.x45_c00384{left:197.040481pt;}
.x33_c00384{left:198.794325pt;}
.x6c_c00384{left:202.997309pt;}
.x14_c00384{left:205.681781pt;}
.x34_c00384{left:212.015349pt;}
.x79_c00384{left:213.794069pt;}
.x46_c00384{left:214.949877pt;}
.x54_c00384{left:217.094293pt;}
.x2a_c00384{left:218.143989pt;}
.x3b_c00384{left:219.703813pt;}
.xd_c00384{left:222.271989pt;}
.x61_c00384{left:227.615217pt;}
.x75_c00384{left:229.720237pt;}
.x41_c00384{left:230.980953pt;}
.x4c_c00384{left:233.799801pt;}
.x7_c00384{left:236.170485pt;}
.x7a_c00384{left:237.564705pt;}
.x15_c00384{left:241.190401pt;}
.x35_c00384{left:244.157305pt;}
.x72_c00384{left:245.399345pt;}
.x4d_c00384{left:248.451809pt;}
.x30_c00384{left:251.479745pt;}
.x8_c00384{left:253.312005pt;}
.x5c_c00384{left:254.685253pt;}
.x25_c00384{left:255.716525pt;}
.x7f_c00384{left:256.814861pt;}
.x36_c00384{left:258.337629pt;}
.x47_c00384{left:260.178833pt;}
.x5e_c00384{left:261.531257pt;}
.x16_c00384{left:265.086625pt;}
.x3c_c00384{left:266.103837pt;}
.x26_c00384{left:267.032281pt;}
.x5d_c00384{left:268.728141pt;}
.x57_c00384{left:270.586157pt;}
.x66_c00384{left:288.718217pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00385 {
    display:none;
  }
  .loading-indicator_c00385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00385 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00385 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00385" -> "#page-container .classname_c00385")
 */
.pf_c00385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00385 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00385 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00385 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00385 {overflow:visible;}
  }
}
.c_c00385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00385 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00385:after { /* webkit #35443 */
  content: '';
}
.t_c00385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00385 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00385 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00385 { /* info for Javascript */
  display:none;
}
.l_c00385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00385:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00385 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00385.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00385{transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);}
.m33_c00385{transform:matrix(0.098655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098655,0.000000,0.000000,0.250000,0,0);}
.mea_c00385{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.me7_c00385{transform:matrix(0.127055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127055,0.000000,0.000000,0.250000,0,0);}
.m78_c00385{transform:matrix(0.142720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142720,0.000000,0.000000,0.250000,0,0);}
.m17_c00385{transform:matrix(0.143545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00385{transform:matrix(0.146535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146535,0.000000,0.000000,0.250000,0,0);}
.m81_c00385{transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147490,0.000000,0.000000,0.250000,0,0);}
.m80_c00385{transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);}
.m87_c00385{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m50_c00385{transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);}
.m15_c00385{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.m32_c00385{transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);}
.m9f_c00385{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m42_c00385{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.me0_c00385{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.m70_c00385{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.mdc_c00385{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.m92_c00385{transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);}
.m4a_c00385{transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164920,0.000000,0.000000,0.250000,0,0);}
.m27_c00385{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mbb_c00385{transform:matrix(0.166360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166360,0.000000,0.000000,0.250000,0,0);}
.mc2_c00385{transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m93_c00385{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.m43_c00385{transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m2e_c00385{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);}
.mb2_c00385{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m9a_c00385{transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168995,0.000000,0.000000,0.250000,0,0);}
.md0_c00385{transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);}
.m7d_c00385{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m88_c00385{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);}
.m74_c00385{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m84_c00385{transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170155,0.000000,0.000000,0.250000,0,0);}
.mb9_c00385{transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);}
.m91_c00385{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.me4_c00385{transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);}
.m47_c00385{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);}
.mc7_c00385{transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171055,0.000000,0.000000,0.250000,0,0);}
.mc5_c00385{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.mb7_c00385{transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);}
.me3_c00385{transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);}
.m5f_c00385{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.md9_c00385{transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172065,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.m34_c00385{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m75_c00385{transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172910,0.000000,0.000000,0.250000,0,0);}
.mc8_c00385{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.md6_c00385{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.m89_c00385{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00385{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.mc9_c00385{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m96_c00385{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m65_c00385{transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178330,0.000000,0.000000,0.250000,0,0);}
.m48_c00385{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m66_c00385{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m30_c00385{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m12_c00385{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);}
.m98_c00385{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m3f_c00385{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m39_c00385{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m82_c00385{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.m23_c00385{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181845,0.000000,0.000000,0.250000,0,0);}
.m45_c00385{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m76_c00385{transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183310,0.000000,0.000000,0.250000,0,0);}
.m4d_c00385{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.mca_c00385{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.m68_c00385{transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);}
.m26_c00385{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m54_c00385{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00385{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.m44_c00385{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m46_c00385{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m41_c00385{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.mb8_c00385{transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187165,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187270,0.000000,0.000000,0.250000,0,0);}
.m8_c00385{transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187385,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.md7_c00385{transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);}
.m6b_c00385{transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);}
.m9d_c00385{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m8c_c00385{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m5d_c00385{transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);}
.mcd_c00385{transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);}
.ma2_c00385{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.m71_c00385{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.me5_c00385{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.m5a_c00385{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00385{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.mb1_c00385{transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191870,0.000000,0.000000,0.250000,0,0);}
.mab_c00385{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.mbf_c00385{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.ma0_c00385{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m24_c00385{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.mbc_c00385{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.ma3_c00385{transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);}
.m7f_c00385{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00385{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00385{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m3a_c00385{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.m6c_c00385{transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);}
.mb5_c00385{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m73_c00385{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.mc3_c00385{transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197670,0.000000,0.000000,0.250000,0,0);}
.m38_c00385{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.me2_c00385{transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);}
.me1_c00385{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m49_c00385{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00385{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.m58_c00385{transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);}
.ma5_c00385{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00385{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.m72_c00385{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.me8_c00385{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.m55_c00385{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.md2_c00385{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.maa_c00385{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m95_c00385{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00385{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m6_c00385{transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00385{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.m57_c00385{transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);}
.mc0_c00385{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.m59_c00385{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.md3_c00385{transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);}
.mc6_c00385{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m63_c00385{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m83_c00385{transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);}
.m4b_c00385{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.mc4_c00385{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.m85_c00385{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.m94_c00385{transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);}
.m5e_c00385{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.mb6_c00385{transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206645,0.000000,0.000000,0.250000,0,0);}
.m5b_c00385{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m7b_c00385{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m97_c00385{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.md4_c00385{transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);}
.mba_c00385{transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);}
.ma9_c00385{transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209535,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);}
.m3b_c00385{transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mae_c00385{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.mb0_c00385{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.mda_c00385{transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);}
.m60_c00385{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mad_c00385{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212930,0.000000,0.000000,0.250000,0,0);}
.maf_c00385{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00385{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m31_c00385{transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);}
.m6f_c00385{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m79_c00385{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00385{transform:matrix(0.214055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214055,0.000000,0.000000,0.250000,0,0);}
.m86_c00385{transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00385{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.mce_c00385{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m4f_c00385{transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);}
.mdb_c00385{transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216680,0.000000,0.000000,0.250000,0,0);}
.m90_c00385{transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);}
.mb3_c00385{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m99_c00385{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.ma6_c00385{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m52_c00385{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.m61_c00385{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.m8e_c00385{transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);}
.m3e_c00385{transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220735,0.000000,0.000000,0.250000,0,0);}
.m69_c00385{transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221365,0.000000,0.000000,0.250000,0,0);}
.m6d_c00385{transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);}
.m8f_c00385{transform:matrix(0.223190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223190,0.000000,0.000000,0.250000,0,0);}
.mbd_c00385{transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);}
.me6_c00385{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.m53_c00385{transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);}
.mac_c00385{transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226770,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.m9e_c00385{transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);}
.mcf_c00385{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m9b_c00385{transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);}
.m5c_c00385{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);}
.m77_c00385{transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);}
.md8_c00385{transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);}
.m51_c00385{transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235165,0.000000,0.000000,0.250000,0,0);}
.m6e_c00385{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00385{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m62_c00385{transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);}
.m56_c00385{transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);}
.ma7_c00385{transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237885,0.000000,0.000000,0.250000,0,0);}
.m8b_c00385{transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239490,0.000000,0.000000,0.250000,0,0);}
.m64_c00385{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);}
.m8a_c00385{transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);}
.mde_c00385{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.ma4_c00385{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.md1_c00385{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.ma1_c00385{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00385{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m37_c00385{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m8d_c00385{transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);}
.md5_c00385{transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00385{transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);}
.m67_c00385{transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313990,0.000000,0.000000,0.250000,0,0);}
.mcc_c00385{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);}
.me9_c00385{transform:matrix(1.219905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.219905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.219905,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:transparent;}
.fsf_c00385{font-size:22.050000px;}
.fsd_c00385{font-size:28.350000px;}
.fse_c00385{font-size:33.600000px;}
.fs9_c00385{font-size:55.650000px;}
.fs3_c00385{font-size:57.750000px;}
.fs4_c00385{font-size:58.800000px;}
.fs7_c00385{font-size:59.850000px;}
.fsa_c00385{font-size:60.900000px;}
.fs6_c00385{font-size:61.950000px;}
.fs2_c00385{font-size:63.000000px;}
.fs0_c00385{font-size:64.050000px;}
.fsb_c00385{font-size:65.100000px;}
.fs5_c00385{font-size:66.150000px;}
.fs8_c00385{font-size:67.200000px;}
.fsc_c00385{font-size:70.350000px;}
.fs1_c00385{font-size:71.400000px;}
.y0_c00385{bottom:0.000000px;}
.y2b_c00385{bottom:31.618500px;}
.y2a_c00385{bottom:48.357000px;}
.y29_c00385{bottom:65.218500px;}
.y28_c00385{bottom:81.403500px;}
.y27_c00385{bottom:98.550000px;}
.y26_c00385{bottom:115.830000px;}
.y25_c00385{bottom:132.126000px;}
.y24_c00385{bottom:149.947500px;}
.y23_c00385{bottom:166.636500px;}
.y22_c00385{bottom:184.213500px;}
.y31_c00385{bottom:201.420000px;}
.y21_c00385{bottom:201.618000px;}
.y30_c00385{bottom:205.200000px;}
.y20_c00385{bottom:218.503500px;}
.y1f_c00385{bottom:234.973500px;}
.y1e_c00385{bottom:251.493000px;}
.y1d_c00385{bottom:268.482000px;}
.y2f_c00385{bottom:279.450000px;}
.y1c_c00385{bottom:285.216000px;}
.y2e_c00385{bottom:291.870000px;}
.y2d_c00385{bottom:302.748000px;}
.y2c_c00385{bottom:318.330000px;}
.y1b_c00385{bottom:319.797000px;}
.y1a_c00385{bottom:337.633500px;}
.y19_c00385{bottom:354.778500px;}
.y18_c00385{bottom:370.075500px;}
.y17_c00385{bottom:371.460000px;}
.y16_c00385{bottom:372.007500px;}
.y15_c00385{bottom:372.391500px;}
.y14_c00385{bottom:372.808500px;}
.y13_c00385{bottom:373.105500px;}
.y12_c00385{bottom:373.951500px;}
.y11_c00385{bottom:388.482000px;}
.y10_c00385{bottom:405.465000px;}
.yf_c00385{bottom:421.240500px;}
.ye_c00385{bottom:421.492500px;}
.yd_c00385{bottom:422.035500px;}
.yc_c00385{bottom:422.556000px;}
.yb_c00385{bottom:422.782500px;}
.ya_c00385{bottom:423.631500px;}
.y9_c00385{bottom:439.510500px;}
.y8_c00385{bottom:455.832000px;}
.y7_c00385{bottom:472.963500px;}
.y6_c00385{bottom:489.826500px;}
.y5_c00385{bottom:506.788500px;}
.y4_c00385{bottom:523.384500px;}
.y3_c00385{bottom:540.688500px;}
.y2_c00385{bottom:557.098500px;}
.y1_c00385{bottom:574.290000px;}
.h11_c00385{height:22.050000px;}
.hf_c00385{height:28.350000px;}
.h10_c00385{height:33.600000px;}
.hb_c00385{height:55.650000px;}
.h5_c00385{height:57.750000px;}
.h6_c00385{height:58.800000px;}
.h9_c00385{height:59.850000px;}
.hc_c00385{height:60.900000px;}
.h8_c00385{height:61.950000px;}
.h4_c00385{height:63.000000px;}
.h2_c00385{height:64.050000px;}
.hd_c00385{height:65.100000px;}
.h7_c00385{height:66.150000px;}
.ha_c00385{height:67.200000px;}
.he_c00385{height:70.350000px;}
.h3_c00385{height:71.400000px;}
.h0_c00385{height:613.170000px;}
.h1_c00385{height:613.500000px;}
.w0_c00385{width:359.100000px;}
.w1_c00385{width:359.250000px;}
.x0_c00385{left:0.000000px;}
.x74_c00385{left:43.740000px;}
.x6f_c00385{left:44.820000px;}
.x3f_c00385{left:46.032000px;}
.x2_c00385{left:47.250000px;}
.x10_c00385{left:48.330000px;}
.x56_c00385{left:56.970000px;}
.x67_c00385{left:58.050000px;}
.x64_c00385{left:60.480000px;}
.x51_c00385{left:63.450000px;}
.x7a_c00385{left:65.610000px;}
.x35_c00385{left:66.960000px;}
.x5b_c00385{left:68.850000px;}
.x73_c00385{left:69.930000px;}
.x47_c00385{left:71.280000px;}
.x11_c00385{left:72.630000px;}
.x75_c00385{left:73.980000px;}
.x19_c00385{left:75.060000px;}
.x1f_c00385{left:76.140000px;}
.x24_c00385{left:83.970000px;}
.x3b_c00385{left:85.320000px;}
.x3_c00385{left:86.670000px;}
.x68_c00385{left:88.020000px;}
.x2b_c00385{left:89.100000px;}
.x48_c00385{left:92.880000px;}
.x7b_c00385{left:94.770000px;}
.x25_c00385{left:96.390000px;}
.x5f_c00385{left:97.470000px;}
.x70_c00385{left:99.360000px;}
.x2c_c00385{left:100.710000px;}
.x40_c00385{left:102.429000px;}
.x12_c00385{left:108.270000px;}
.x5c_c00385{left:112.590000px;}
.x52_c00385{left:114.210000px;}
.x36_c00385{left:115.560000px;}
.x77_c00385{left:116.910000px;}
.x60_c00385{left:117.990000px;}
.x6a_c00385{left:119.070000px;}
.x57_c00385{left:121.230000px;}
.xa_c00385{left:122.850000px;}
.x32_c00385{left:124.612500px;}
.x65_c00385{left:125.820000px;}
.x20_c00385{left:127.440000px;}
.x3c_c00385{left:129.600000px;}
.x2d_c00385{left:131.490000px;}
.x37_c00385{left:134.460000px;}
.x7c_c00385{left:136.080000px;}
.xb_c00385{left:139.320000px;}
.x13_c00385{left:142.020000px;}
.x33_c00385{left:145.135500px;}
.x41_c00385{left:150.007500px;}
.x1a_c00385{left:151.470000px;}
.x3d_c00385{left:154.170000px;}
.x53_c00385{left:155.250000px;}
.x58_c00385{left:157.410000px;}
.x78_c00385{left:158.490000px;}
.xc_c00385{left:166.860000px;}
.x49_c00385{left:168.750000px;}
.x4_c00385{left:170.370000px;}
.x4d_c00385{left:171.450000px;}
.x6b_c00385{left:174.420000px;}
.x42_c00385{left:175.582500px;}
.x26_c00385{left:177.390000px;}
.x1b_c00385{left:178.740000px;}
.x1_c00385{left:180.360000px;}
.x7f_c00385{left:183.060000px;}
.x2e_c00385{left:184.140000px;}
.x79_c00385{left:187.110000px;}
.x21_c00385{left:188.460000px;}
.x27_c00385{left:192.240000px;}
.x38_c00385{left:194.130000px;}
.x14_c00385{left:196.560000px;}
.x7d_c00385{left:197.910000px;}
.x5_c00385{left:199.260000px;}
.x6e_c00385{left:201.150000px;}
.x71_c00385{left:202.500000px;}
.x1c_c00385{left:203.580000px;}
.x4e_c00385{left:207.630000px;}
.x43_c00385{left:212.049000px;}
.x5d_c00385{left:213.840000px;}
.x28_c00385{left:214.920000px;}
.x4a_c00385{left:216.000000px;}
.x15_c00385{left:220.050000px;}
.x39_c00385{left:221.670000px;}
.x1d_c00385{left:222.750000px;}
.x59_c00385{left:227.880000px;}
.x2f_c00385{left:232.470000px;}
.x6_c00385{left:233.550000px;}
.x61_c00385{left:234.900000px;}
.x54_c00385{left:236.790000px;}
.x4b_c00385{left:238.950000px;}
.x34_c00385{left:241.786500px;}
.x5a_c00385{left:243.810000px;}
.x45_c00385{left:248.670000px;}
.x3e_c00385{left:252.720000px;}
.x62_c00385{left:254.340000px;}
.x7_c00385{left:256.230000px;}
.x4f_c00385{left:259.470000px;}
.x66_c00385{left:262.170000px;}
.xd_c00385{left:263.790000px;}
.x22_c00385{left:269.730000px;}
.x16_c00385{left:271.080000px;}
.x76_c00385{left:272.160000px;}
.xe_c00385{left:274.320000px;}
.x3a_c00385{left:277.020000px;}
.x72_c00385{left:278.100000px;}
.x29_c00385{left:282.690000px;}
.x30_c00385{left:285.660000px;}
.x1e_c00385{left:288.090000px;}
.x17_c00385{left:290.790000px;}
.xf_c00385{left:293.220000px;}
.x6c_c00385{left:300.240000px;}
.x31_c00385{left:302.940000px;}
.x44_c00385{left:304.377000px;}
.x2a_c00385{left:307.530000px;}
.x23_c00385{left:309.150000px;}
.x6d_c00385{left:311.310000px;}
.x5e_c00385{left:313.740000px;}
.x4c_c00385{left:315.360000px;}
.x63_c00385{left:316.980000px;}
.x8_c00385{left:318.060000px;}
.x18_c00385{left:320.220000px;}
.x69_c00385{left:324.540000px;}
.x46_c00385{left:325.620000px;}
.x50_c00385{left:329.400000px;}
.x80_c00385{left:330.480000px;}
.x55_c00385{left:332.100000px;}
.x9_c00385{left:333.720000px;}
.x7e_c00385{left:351.000000px;}
.x81_c00385{left:353.160000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fsf_c00385{font-size:19.600000pt;}
.fsd_c00385{font-size:25.200000pt;}
.fse_c00385{font-size:29.866667pt;}
.fs9_c00385{font-size:49.466667pt;}
.fs3_c00385{font-size:51.333333pt;}
.fs4_c00385{font-size:52.266667pt;}
.fs7_c00385{font-size:53.200000pt;}
.fsa_c00385{font-size:54.133333pt;}
.fs6_c00385{font-size:55.066667pt;}
.fs2_c00385{font-size:56.000000pt;}
.fs0_c00385{font-size:56.933333pt;}
.fsb_c00385{font-size:57.866667pt;}
.fs5_c00385{font-size:58.800000pt;}
.fs8_c00385{font-size:59.733333pt;}
.fsc_c00385{font-size:62.533333pt;}
.fs1_c00385{font-size:63.466667pt;}
.y0_c00385{bottom:0.000000pt;}
.y2b_c00385{bottom:28.105333pt;}
.y2a_c00385{bottom:42.984000pt;}
.y29_c00385{bottom:57.972000pt;}
.y28_c00385{bottom:72.358667pt;}
.y27_c00385{bottom:87.600000pt;}
.y26_c00385{bottom:102.960000pt;}
.y25_c00385{bottom:117.445333pt;}
.y24_c00385{bottom:133.286667pt;}
.y23_c00385{bottom:148.121333pt;}
.y22_c00385{bottom:163.745333pt;}
.y31_c00385{bottom:179.040000pt;}
.y21_c00385{bottom:179.216000pt;}
.y30_c00385{bottom:182.400000pt;}
.y20_c00385{bottom:194.225333pt;}
.y1f_c00385{bottom:208.865333pt;}
.y1e_c00385{bottom:223.549333pt;}
.y1d_c00385{bottom:238.650667pt;}
.y2f_c00385{bottom:248.400000pt;}
.y1c_c00385{bottom:253.525333pt;}
.y2e_c00385{bottom:259.440000pt;}
.y2d_c00385{bottom:269.109333pt;}
.y2c_c00385{bottom:282.960000pt;}
.y1b_c00385{bottom:284.264000pt;}
.y1a_c00385{bottom:300.118667pt;}
.y19_c00385{bottom:315.358667pt;}
.y18_c00385{bottom:328.956000pt;}
.y17_c00385{bottom:330.186667pt;}
.y16_c00385{bottom:330.673333pt;}
.y15_c00385{bottom:331.014667pt;}
.y14_c00385{bottom:331.385333pt;}
.y13_c00385{bottom:331.649333pt;}
.y12_c00385{bottom:332.401333pt;}
.y11_c00385{bottom:345.317333pt;}
.y10_c00385{bottom:360.413333pt;}
.yf_c00385{bottom:374.436000pt;}
.ye_c00385{bottom:374.660000pt;}
.yd_c00385{bottom:375.142667pt;}
.yc_c00385{bottom:375.605333pt;}
.yb_c00385{bottom:375.806667pt;}
.ya_c00385{bottom:376.561333pt;}
.y9_c00385{bottom:390.676000pt;}
.y8_c00385{bottom:405.184000pt;}
.y7_c00385{bottom:420.412000pt;}
.y6_c00385{bottom:435.401333pt;}
.y5_c00385{bottom:450.478667pt;}
.y4_c00385{bottom:465.230667pt;}
.y3_c00385{bottom:480.612000pt;}
.y2_c00385{bottom:495.198667pt;}
.y1_c00385{bottom:510.480000pt;}
.h11_c00385{height:19.600000pt;}
.hf_c00385{height:25.200000pt;}
.h10_c00385{height:29.866667pt;}
.hb_c00385{height:49.466667pt;}
.h5_c00385{height:51.333333pt;}
.h6_c00385{height:52.266667pt;}
.h9_c00385{height:53.200000pt;}
.hc_c00385{height:54.133333pt;}
.h8_c00385{height:55.066667pt;}
.h4_c00385{height:56.000000pt;}
.h2_c00385{height:56.933333pt;}
.hd_c00385{height:57.866667pt;}
.h7_c00385{height:58.800000pt;}
.ha_c00385{height:59.733333pt;}
.he_c00385{height:62.533333pt;}
.h3_c00385{height:63.466667pt;}
.h0_c00385{height:545.040000pt;}
.h1_c00385{height:545.333333pt;}
.w0_c00385{width:319.200000pt;}
.w1_c00385{width:319.333333pt;}
.x0_c00385{left:0.000000pt;}
.x74_c00385{left:38.880000pt;}
.x6f_c00385{left:39.840000pt;}
.x3f_c00385{left:40.917333pt;}
.x2_c00385{left:42.000000pt;}
.x10_c00385{left:42.960000pt;}
.x56_c00385{left:50.640000pt;}
.x67_c00385{left:51.600000pt;}
.x64_c00385{left:53.760000pt;}
.x51_c00385{left:56.400000pt;}
.x7a_c00385{left:58.320000pt;}
.x35_c00385{left:59.520000pt;}
.x5b_c00385{left:61.200000pt;}
.x73_c00385{left:62.160000pt;}
.x47_c00385{left:63.360000pt;}
.x11_c00385{left:64.560000pt;}
.x75_c00385{left:65.760000pt;}
.x19_c00385{left:66.720000pt;}
.x1f_c00385{left:67.680000pt;}
.x24_c00385{left:74.640000pt;}
.x3b_c00385{left:75.840000pt;}
.x3_c00385{left:77.040000pt;}
.x68_c00385{left:78.240000pt;}
.x2b_c00385{left:79.200000pt;}
.x48_c00385{left:82.560000pt;}
.x7b_c00385{left:84.240000pt;}
.x25_c00385{left:85.680000pt;}
.x5f_c00385{left:86.640000pt;}
.x70_c00385{left:88.320000pt;}
.x2c_c00385{left:89.520000pt;}
.x40_c00385{left:91.048000pt;}
.x12_c00385{left:96.240000pt;}
.x5c_c00385{left:100.080000pt;}
.x52_c00385{left:101.520000pt;}
.x36_c00385{left:102.720000pt;}
.x77_c00385{left:103.920000pt;}
.x60_c00385{left:104.880000pt;}
.x6a_c00385{left:105.840000pt;}
.x57_c00385{left:107.760000pt;}
.xa_c00385{left:109.200000pt;}
.x32_c00385{left:110.766667pt;}
.x65_c00385{left:111.840000pt;}
.x20_c00385{left:113.280000pt;}
.x3c_c00385{left:115.200000pt;}
.x2d_c00385{left:116.880000pt;}
.x37_c00385{left:119.520000pt;}
.x7c_c00385{left:120.960000pt;}
.xb_c00385{left:123.840000pt;}
.x13_c00385{left:126.240000pt;}
.x33_c00385{left:129.009333pt;}
.x41_c00385{left:133.340000pt;}
.x1a_c00385{left:134.640000pt;}
.x3d_c00385{left:137.040000pt;}
.x53_c00385{left:138.000000pt;}
.x58_c00385{left:139.920000pt;}
.x78_c00385{left:140.880000pt;}
.xc_c00385{left:148.320000pt;}
.x49_c00385{left:150.000000pt;}
.x4_c00385{left:151.440000pt;}
.x4d_c00385{left:152.400000pt;}
.x6b_c00385{left:155.040000pt;}
.x42_c00385{left:156.073333pt;}
.x26_c00385{left:157.680000pt;}
.x1b_c00385{left:158.880000pt;}
.x1_c00385{left:160.320000pt;}
.x7f_c00385{left:162.720000pt;}
.x2e_c00385{left:163.680000pt;}
.x79_c00385{left:166.320000pt;}
.x21_c00385{left:167.520000pt;}
.x27_c00385{left:170.880000pt;}
.x38_c00385{left:172.560000pt;}
.x14_c00385{left:174.720000pt;}
.x7d_c00385{left:175.920000pt;}
.x5_c00385{left:177.120000pt;}
.x6e_c00385{left:178.800000pt;}
.x71_c00385{left:180.000000pt;}
.x1c_c00385{left:180.960000pt;}
.x4e_c00385{left:184.560000pt;}
.x43_c00385{left:188.488000pt;}
.x5d_c00385{left:190.080000pt;}
.x28_c00385{left:191.040000pt;}
.x4a_c00385{left:192.000000pt;}
.x15_c00385{left:195.600000pt;}
.x39_c00385{left:197.040000pt;}
.x1d_c00385{left:198.000000pt;}
.x59_c00385{left:202.560000pt;}
.x2f_c00385{left:206.640000pt;}
.x6_c00385{left:207.600000pt;}
.x61_c00385{left:208.800000pt;}
.x54_c00385{left:210.480000pt;}
.x4b_c00385{left:212.400000pt;}
.x34_c00385{left:214.921333pt;}
.x5a_c00385{left:216.720000pt;}
.x45_c00385{left:221.040000pt;}
.x3e_c00385{left:224.640000pt;}
.x62_c00385{left:226.080000pt;}
.x7_c00385{left:227.760000pt;}
.x4f_c00385{left:230.640000pt;}
.x66_c00385{left:233.040000pt;}
.xd_c00385{left:234.480000pt;}
.x22_c00385{left:239.760000pt;}
.x16_c00385{left:240.960000pt;}
.x76_c00385{left:241.920000pt;}
.xe_c00385{left:243.840000pt;}
.x3a_c00385{left:246.240000pt;}
.x72_c00385{left:247.200000pt;}
.x29_c00385{left:251.280000pt;}
.x30_c00385{left:253.920000pt;}
.x1e_c00385{left:256.080000pt;}
.x17_c00385{left:258.480000pt;}
.xf_c00385{left:260.640000pt;}
.x6c_c00385{left:266.880000pt;}
.x31_c00385{left:269.280000pt;}
.x44_c00385{left:270.557333pt;}
.x2a_c00385{left:273.360000pt;}
.x23_c00385{left:274.800000pt;}
.x6d_c00385{left:276.720000pt;}
.x5e_c00385{left:278.880000pt;}
.x4c_c00385{left:280.320000pt;}
.x63_c00385{left:281.760000pt;}
.x8_c00385{left:282.720000pt;}
.x18_c00385{left:284.640000pt;}
.x69_c00385{left:288.480000pt;}
.x46_c00385{left:289.440000pt;}
.x50_c00385{left:292.800000pt;}
.x80_c00385{left:293.760000pt;}
.x55_c00385{left:295.200000pt;}
.x9_c00385{left:296.640000pt;}
.x7e_c00385{left:312.000000pt;}
.x81_c00385{left:313.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00386 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00386 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00386 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00386 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00386.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00386;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00386{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.060270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00386{transform:matrix(0.116085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116085,0.000000,0.000000,0.250000,0,0);}
.ma2_c00386{transform:matrix(0.129690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129690,0.000000,0.000000,0.250000,0,0);}
.m7e_c00386{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00386{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00386{transform:matrix(0.146935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146935,0.000000,0.000000,0.250000,0,0);}
.mf3_c00386{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.mc2_c00386{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00386{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{transform:matrix(0.149920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149920,0.000000,0.000000,0.250000,0,0);}
.mc1_c00386{transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);}
.md7_c00386{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.md5_c00386{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00386{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m94_c00386{transform:matrix(0.153080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153080,0.000000,0.000000,0.250000,0,0);}
.ma5_c00386{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.mf2_c00386{transform:matrix(0.154865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154865,0.000000,0.000000,0.250000,0,0);}
.mdc_c00386{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m5b_c00386{transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157120,0.000000,0.000000,0.250000,0,0);}
.m7a_c00386{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);}
.m93_c00386{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mbd_c00386{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mdd_c00386{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);}
.m65_c00386{transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);}
.mab_c00386{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.m62_c00386{transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m37_c00386{transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);}
.m57_c00386{transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);}
.m73_c00386{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.ma8_c00386{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m96_c00386{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.mac_c00386{transform:matrix(0.167030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167030,0.000000,0.000000,0.250000,0,0);}
.mf6_c00386{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.mf8_c00386{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m51_c00386{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m8a_c00386{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.ma3_c00386{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.md6_c00386{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.m84_c00386{transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);}
.m31_c00386{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.m6c_c00386{transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170820,0.000000,0.000000,0.250000,0,0);}
.m26_c00386{transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00386{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.mb7_c00386{transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172235,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);}
.m44_c00386{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00386{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.mb0_c00386{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m68_c00386{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m9d_c00386{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174455,0.000000,0.000000,0.250000,0,0);}
.m85_c00386{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.mf9_c00386{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.ma6_c00386{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m7f_c00386{transform:matrix(0.175070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175070,0.000000,0.000000,0.250000,0,0);}
.ma7_c00386{transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);}
.m60_c00386{transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00386{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00386{transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);}
.m6f_c00386{transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175695,0.000000,0.000000,0.250000,0,0);}
.mb4_c00386{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.mc3_c00386{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.mcd_c00386{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m76_c00386{transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);}
.m58_c00386{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m86_c00386{transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.mb5_c00386{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m70_c00386{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.mb3_c00386{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.med_c00386{transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);}
.mdb_c00386{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.m77_c00386{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.mcf_c00386{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.mae_c00386{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.mbe_c00386{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m50_c00386{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.mcb_c00386{transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183955,0.000000,0.000000,0.250000,0,0);}
.m1e_c00386{transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183990,0.000000,0.000000,0.250000,0,0);}
.mda_c00386{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.md8_c00386{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00386{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.mc6_c00386{transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);}
.md1_c00386{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m9a_c00386{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m7b_c00386{transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);}
.m64_c00386{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.mb1_c00386{transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185685,0.000000,0.000000,0.250000,0,0);}
.m63_c00386{transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);}
.m8f_c00386{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186255,0.000000,0.000000,0.250000,0,0);}
.mc8_c00386{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m5e_c00386{transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);}
.mbb_c00386{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.ma9_c00386{transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186995,0.000000,0.000000,0.250000,0,0);}
.mee_c00386{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.m92_c00386{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m7d_c00386{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m78_c00386{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.maa_c00386{transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);}
.mca_c00386{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00386{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.mb6_c00386{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m6a_c00386{transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);}
.mbc_c00386{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.m5c_c00386{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.mde_c00386{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m9b_c00386{transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191115,0.000000,0.000000,0.250000,0,0);}
.m99_c00386{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m8d_c00386{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.me4_c00386{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.m7c_c00386{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.193220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193220,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m9e_c00386{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.m4d_c00386{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00386{transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193835,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);}
.m56_c00386{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m21_c00386{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.md3_c00386{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m6d_c00386{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.md9_c00386{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.m2c_c00386{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m47_c00386{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m79_c00386{transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197095,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.me9_c00386{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m4c_c00386{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.mb8_c00386{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m22_c00386{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m8b_c00386{transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);}
.m88_c00386{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m4a_c00386{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m74_c00386{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m48_c00386{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m25_c00386{transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);}
.m87_c00386{transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.mce_c00386{transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199960,0.000000,0.000000,0.250000,0,0);}
.m33_c00386{transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);}
.mf1_c00386{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m52_c00386{transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200595,0.000000,0.000000,0.250000,0,0);}
.mdf_c00386{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.m75_c00386{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m24_c00386{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.mad_c00386{transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);}
.mf5_c00386{transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);}
.m98_c00386{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.m59_c00386{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.mf4_c00386{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.m69_c00386{transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);}
.m27_c00386{transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);}
.mb2_c00386{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m55_c00386{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203380,0.000000,0.000000,0.250000,0,0);}
.m9f_c00386{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m9c_c00386{transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);}
.m91_c00386{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m3d_c00386{transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);}
.m5f_c00386{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m81_c00386{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m80_c00386{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m95_c00386{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m83_c00386{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m45_c00386{transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205560,0.000000,0.000000,0.250000,0,0);}
.m72_c00386{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m3b_c00386{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.md2_c00386{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.mc7_c00386{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.md4_c00386{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m38_c00386{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.m32_c00386{transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.me3_c00386{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.mf0_c00386{transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00386{transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208820,0.000000,0.000000,0.250000,0,0);}
.me1_c00386{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.mf7_c00386{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.me0_c00386{transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209885,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);}
.m71_c00386{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m54_c00386{transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00386{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.mea_c00386{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.mba_c00386{transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);}
.mcc_c00386{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m67_c00386{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.mef_c00386{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m34_c00386{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.maf_c00386{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.md0_c00386{transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214870,0.000000,0.000000,0.250000,0,0);}
.m61_c00386{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m90_c00386{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);}
.m49_c00386{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m97_c00386{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.me6_c00386{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00386{transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);}
.m5a_c00386{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m53_c00386{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m2b_c00386{transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221845,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);}
.m89_c00386{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.ma1_c00386{transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);}
.mfa_c00386{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m40_c00386{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m82_c00386{transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228980,0.000000,0.000000,0.250000,0,0);}
.m23_c00386{transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);}
.me2_c00386{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{transform:matrix(0.235335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235335,0.000000,0.000000,0.250000,0,0);}
.me8_c00386{transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{transform:matrix(0.237140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237140,0.000000,0.000000,0.250000,0,0);}
.m6e_c00386{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);}
.me5_c00386{transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257625,0.000000,0.000000,0.250000,0,0);}
.me7_c00386{transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);}
.meb_c00386{transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);}
.mec_c00386{transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls0_c00386{letter-spacing:0.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:0.000000px;}
.fc0_c00386{color:transparent;}
.fs5_c00386{font-size:55.650000px;}
.fs6_c00386{font-size:57.750000px;}
.fsd_c00386{font-size:58.800000px;}
.fs7_c00386{font-size:59.850000px;}
.fs4_c00386{font-size:60.900000px;}
.fs2_c00386{font-size:61.950000px;}
.fs0_c00386{font-size:63.000000px;}
.fs9_c00386{font-size:64.050000px;}
.fs8_c00386{font-size:65.100000px;}
.fs1_c00386{font-size:66.150000px;}
.fs3_c00386{font-size:67.200000px;}
.fsb_c00386{font-size:68.250000px;}
.fsa_c00386{font-size:69.300000px;}
.fsc_c00386{font-size:85.050000px;}
.y0_c00386{bottom:0.000000px;}
.y41_c00386{bottom:27.387000px;}
.y40_c00386{bottom:27.751500px;}
.y3f_c00386{bottom:28.140000px;}
.y3e_c00386{bottom:28.729500px;}
.y3d_c00386{bottom:29.262000px;}
.y3c_c00386{bottom:29.967000px;}
.y3b_c00386{bottom:31.434000px;}
.y3a_c00386{bottom:31.798500px;}
.y39_c00386{bottom:32.133000px;}
.y38_c00386{bottom:44.775000px;}
.y37_c00386{bottom:61.393500px;}
.y36_c00386{bottom:80.190000px;}
.y35_c00386{bottom:96.294000px;}
.y34_c00386{bottom:114.429000px;}
.y33_c00386{bottom:130.045500px;}
.y32_c00386{bottom:145.479000px;}
.y31_c00386{bottom:164.230500px;}
.y30_c00386{bottom:180.217500px;}
.y2f_c00386{bottom:198.361500px;}
.y2e_c00386{bottom:215.437500px;}
.y2d_c00386{bottom:231.930000px;}
.y2c_c00386{bottom:249.582000px;}
.y2b_c00386{bottom:266.733000px;}
.y2a_c00386{bottom:283.891500px;}
.y29_c00386{bottom:301.320000px;}
.y28_c00386{bottom:318.870000px;}
.y27_c00386{bottom:335.136000px;}
.y26_c00386{bottom:352.062000px;}
.y25_c00386{bottom:367.659000px;}
.y24_c00386{bottom:384.883500px;}
.y23_c00386{bottom:400.884000px;}
.y22_c00386{bottom:418.434000px;}
.y21_c00386{bottom:435.171000px;}
.y20_c00386{bottom:452.329500px;}
.y1f_c00386{bottom:469.191000px;}
.y17_c00386{bottom:484.111500px;}
.y18_c00386{bottom:484.284000px;}
.y19_c00386{bottom:485.059500px;}
.y1a_c00386{bottom:485.280000px;}
.y1b_c00386{bottom:485.794500px;}
.y1c_c00386{bottom:486.049500px;}
.y1d_c00386{bottom:486.438000px;}
.y1e_c00386{bottom:487.144500px;}
.y11_c00386{bottom:501.391500px;}
.y12_c00386{bottom:501.691500px;}
.y13_c00386{bottom:501.946500px;}
.y14_c00386{bottom:502.576500px;}
.y15_c00386{bottom:503.562000px;}
.y16_c00386{bottom:504.399000px;}
.y10_c00386{bottom:521.959500px;}
.ya_c00386{bottom:535.953000px;}
.yb_c00386{bottom:536.751000px;}
.yc_c00386{bottom:537.099000px;}
.yd_c00386{bottom:537.922500px;}
.ye_c00386{bottom:538.863000px;}
.yf_c00386{bottom:539.098500px;}
.y2_c00386{bottom:552.961500px;}
.y3_c00386{bottom:553.522500px;}
.y4_c00386{bottom:553.885500px;}
.y5_c00386{bottom:554.085000px;}
.y6_c00386{bottom:554.499000px;}
.y7_c00386{bottom:554.755500px;}
.y8_c00386{bottom:555.331500px;}
.y9_c00386{bottom:556.345500px;}
.y1_c00386{bottom:571.713000px;}
.h7_c00386{height:55.650000px;}
.h8_c00386{height:57.750000px;}
.hf_c00386{height:58.800000px;}
.h9_c00386{height:59.850000px;}
.h6_c00386{height:60.900000px;}
.h4_c00386{height:61.950000px;}
.h2_c00386{height:63.000000px;}
.hb_c00386{height:64.050000px;}
.ha_c00386{height:65.100000px;}
.h3_c00386{height:66.150000px;}
.h5_c00386{height:67.200000px;}
.hd_c00386{height:68.250000px;}
.hc_c00386{height:69.300000px;}
.he_c00386{height:85.050000px;}
.h0_c00386{height:613.170000px;}
.h1_c00386{height:613.500000px;}
.w0_c00386{width:359.100000px;}
.w1_c00386{width:359.250000px;}
.x0_c00386{left:0.000000px;}
.x4_c00386{left:11.772000px;}
.x11_c00386{left:13.227000px;}
.x2d_c00386{left:15.117000px;}
.x44_c00386{left:16.737000px;}
.x51_c00386{left:18.087000px;}
.x3e_c00386{left:20.517000px;}
.x48_c00386{left:21.867000px;}
.x78_c00386{left:23.220000px;}
.x61_c00386{left:24.297000px;}
.x6b_c00386{left:25.647000px;}
.x1e_c00386{left:29.028000px;}
.x2e_c00386{left:32.397000px;}
.x12_c00386{left:34.557000px;}
.x35_c00386{left:35.907000px;}
.x49_c00386{left:37.527000px;}
.x19_c00386{left:40.903500px;}
.x4f_c00386{left:42.657000px;}
.x36_c00386{left:46.977000px;}
.x3a_c00386{left:50.487000px;}
.x29_c00386{left:52.107000px;}
.x5_c00386{left:54.904500px;}
.x75_c00386{left:56.160000px;}
.x58_c00386{left:59.937000px;}
.x65_c00386{left:61.287000px;}
.x1a_c00386{left:64.126500px;}
.x3f_c00386{left:65.337000px;}
.x69_c00386{left:67.227000px;}
.xc_c00386{left:69.555000px;}
.x3b_c00386{left:70.737000px;}
.x59_c00386{left:73.437000px;}
.x7d_c00386{left:75.870000px;}
.x25_c00386{left:80.187000px;}
.x6_c00386{left:82.776000px;}
.x71_c00386{left:84.510000px;}
.x13_c00386{left:87.747000px;}
.x5a_c00386{left:89.907000px;}
.x62_c00386{left:92.067000px;}
.xd_c00386{left:94.401000px;}
.x7_c00386{left:98.163000px;}
.x1f_c00386{left:99.492000px;}
.x4a_c00386{left:102.867000px;}
.x72_c00386{left:104.490000px;}
.x6e_c00386{left:105.840000px;}
.x52_c00386{left:111.237000px;}
.x2f_c00386{left:114.207000px;}
.x7b_c00386{left:117.990000px;}
.x20_c00386{left:119.484000px;}
.x1b_c00386{left:121.377000px;}
.x30_c00386{left:123.657000px;}
.x80_c00386{left:125.010000px;}
.x4b_c00386{left:126.087000px;}
.x14_c00386{left:127.437000px;}
.x81_c00386{left:128.790000px;}
.x8_c00386{left:129.964500px;}
.x45_c00386{left:132.567000px;}
.x37_c00386{left:134.457000px;}
.x3c_c00386{left:135.537000px;}
.x76_c00386{left:138.510000px;}
.x32_c00386{left:140.667000px;}
.x1_c00386{left:142.290000px;}
.x66_c00386{left:145.527000px;}
.x15_c00386{left:146.877000px;}
.x9_c00386{left:149.742000px;}
.x7e_c00386{left:150.930000px;}
.xe_c00386{left:153.264000px;}
.x50_c00386{left:154.977000px;}
.x5b_c00386{left:156.867000px;}
.x16_c00386{left:162.537000px;}
.x26_c00386{left:163.617000px;}
.x6f_c00386{left:164.970000px;}
.x21_c00386{left:166.191000px;}
.x5c_c00386{left:170.097000px;}
.x73_c00386{left:173.610000px;}
.x6c_c00386{left:176.847000px;}
.x40_c00386{left:178.737000px;}
.x38_c00386{left:179.817000px;}
.x82_c00386{left:182.985000px;}
.x2a_c00386{left:186.837000px;}
.x22_c00386{left:189.352500px;}
.x63_c00386{left:190.887000px;}
.xa_c00386{left:194.025000px;}
.x46_c00386{left:195.207000px;}
.x4c_c00386{left:196.287000px;}
.x41_c00386{left:198.177000px;}
.x6a_c00386{left:199.527000px;}
.x54_c00386{left:203.037000px;}
.x74_c00386{left:204.120000px;}
.x7f_c00386{left:206.280000px;}
.x2b_c00386{left:207.357000px;}
.x5d_c00386{left:209.247000px;}
.x1c_c00386{left:211.000500px;}
.x4d_c00386{left:216.537000px;}
.x17_c00386{left:217.887000px;}
.x67_c00386{left:218.967000px;}
.xf_c00386{left:220.398000px;}
.x55_c00386{left:223.287000px;}
.x23_c00386{left:224.718000px;}
.x5e_c00386{left:226.527000px;}
.x3d_c00386{left:230.037000px;}
.x79_c00386{left:231.390000px;}
.x18_c00386{left:235.707000px;}
.x10_c00386{left:237.232500px;}
.x56_c00386{left:238.947000px;}
.x33_c00386{left:240.297000px;}
.x47_c00386{left:241.377000px;}
.x39_c00386{left:244.077000px;}
.x31_c00386{left:245.967000px;}
.x4e_c00386{left:250.287000px;}
.x5f_c00386{left:253.527000px;}
.x2_c00386{left:255.150000px;}
.x7c_c00386{left:257.310000px;}
.x83_c00386{left:262.479000px;}
.x27_c00386{left:263.787000px;}
.x53_c00386{left:264.867000px;}
.x2c_c00386{left:266.487000px;}
.x57_c00386{left:268.377000px;}
.x68_c00386{left:269.457000px;}
.xb_c00386{left:272.010000px;}
.x34_c00386{left:274.317000px;}
.x42_c00386{left:276.207000px;}
.x70_c00386{left:277.290000px;}
.x28_c00386{left:279.177000px;}
.x60_c00386{left:281.607000px;}
.x7a_c00386{left:284.850000px;}
.x1d_c00386{left:287.092500px;}
.x24_c00386{left:288.982500px;}
.x43_c00386{left:290.517000px;}
.x77_c00386{left:292.410000px;}
.x64_c00386{left:296.727000px;}
.x3_c00386{left:298.620000px;}
.x6d_c00386{left:303.477000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.fs5_c00386{font-size:49.466667pt;}
.fs6_c00386{font-size:51.333333pt;}
.fsd_c00386{font-size:52.266667pt;}
.fs7_c00386{font-size:53.200000pt;}
.fs4_c00386{font-size:54.133333pt;}
.fs2_c00386{font-size:55.066667pt;}
.fs0_c00386{font-size:56.000000pt;}
.fs9_c00386{font-size:56.933333pt;}
.fs8_c00386{font-size:57.866667pt;}
.fs1_c00386{font-size:58.800000pt;}
.fs3_c00386{font-size:59.733333pt;}
.fsb_c00386{font-size:60.666667pt;}
.fsa_c00386{font-size:61.600000pt;}
.fsc_c00386{font-size:75.600000pt;}
.y0_c00386{bottom:0.000000pt;}
.y41_c00386{bottom:24.344000pt;}
.y40_c00386{bottom:24.668000pt;}
.y3f_c00386{bottom:25.013333pt;}
.y3e_c00386{bottom:25.537333pt;}
.y3d_c00386{bottom:26.010667pt;}
.y3c_c00386{bottom:26.637333pt;}
.y3b_c00386{bottom:27.941333pt;}
.y3a_c00386{bottom:28.265333pt;}
.y39_c00386{bottom:28.562667pt;}
.y38_c00386{bottom:39.800000pt;}
.y37_c00386{bottom:54.572000pt;}
.y36_c00386{bottom:71.280000pt;}
.y35_c00386{bottom:85.594667pt;}
.y34_c00386{bottom:101.714667pt;}
.y33_c00386{bottom:115.596000pt;}
.y32_c00386{bottom:129.314667pt;}
.y31_c00386{bottom:145.982667pt;}
.y30_c00386{bottom:160.193333pt;}
.y2f_c00386{bottom:176.321333pt;}
.y2e_c00386{bottom:191.500000pt;}
.y2d_c00386{bottom:206.160000pt;}
.y2c_c00386{bottom:221.850667pt;}
.y2b_c00386{bottom:237.096000pt;}
.y2a_c00386{bottom:252.348000pt;}
.y29_c00386{bottom:267.840000pt;}
.y28_c00386{bottom:283.440000pt;}
.y27_c00386{bottom:297.898667pt;}
.y26_c00386{bottom:312.944000pt;}
.y25_c00386{bottom:326.808000pt;}
.y24_c00386{bottom:342.118667pt;}
.y23_c00386{bottom:356.341333pt;}
.y22_c00386{bottom:371.941333pt;}
.y21_c00386{bottom:386.818667pt;}
.y20_c00386{bottom:402.070667pt;}
.y1f_c00386{bottom:417.058667pt;}
.y17_c00386{bottom:430.321333pt;}
.y18_c00386{bottom:430.474667pt;}
.y19_c00386{bottom:431.164000pt;}
.y1a_c00386{bottom:431.360000pt;}
.y1b_c00386{bottom:431.817333pt;}
.y1c_c00386{bottom:432.044000pt;}
.y1d_c00386{bottom:432.389333pt;}
.y1e_c00386{bottom:433.017333pt;}
.y11_c00386{bottom:445.681333pt;}
.y12_c00386{bottom:445.948000pt;}
.y13_c00386{bottom:446.174667pt;}
.y14_c00386{bottom:446.734667pt;}
.y15_c00386{bottom:447.610667pt;}
.y16_c00386{bottom:448.354667pt;}
.y10_c00386{bottom:463.964000pt;}
.ya_c00386{bottom:476.402667pt;}
.yb_c00386{bottom:477.112000pt;}
.yc_c00386{bottom:477.421333pt;}
.yd_c00386{bottom:478.153333pt;}
.ye_c00386{bottom:478.989333pt;}
.yf_c00386{bottom:479.198667pt;}
.y2_c00386{bottom:491.521333pt;}
.y3_c00386{bottom:492.020000pt;}
.y4_c00386{bottom:492.342667pt;}
.y5_c00386{bottom:492.520000pt;}
.y6_c00386{bottom:492.888000pt;}
.y7_c00386{bottom:493.116000pt;}
.y8_c00386{bottom:493.628000pt;}
.y9_c00386{bottom:494.529333pt;}
.y1_c00386{bottom:508.189333pt;}
.h7_c00386{height:49.466667pt;}
.h8_c00386{height:51.333333pt;}
.hf_c00386{height:52.266667pt;}
.h9_c00386{height:53.200000pt;}
.h6_c00386{height:54.133333pt;}
.h4_c00386{height:55.066667pt;}
.h2_c00386{height:56.000000pt;}
.hb_c00386{height:56.933333pt;}
.ha_c00386{height:57.866667pt;}
.h3_c00386{height:58.800000pt;}
.h5_c00386{height:59.733333pt;}
.hd_c00386{height:60.666667pt;}
.hc_c00386{height:61.600000pt;}
.he_c00386{height:75.600000pt;}
.h0_c00386{height:545.040000pt;}
.h1_c00386{height:545.333333pt;}
.w0_c00386{width:319.200000pt;}
.w1_c00386{width:319.333333pt;}
.x0_c00386{left:0.000000pt;}
.x4_c00386{left:10.464000pt;}
.x11_c00386{left:11.757333pt;}
.x2d_c00386{left:13.437333pt;}
.x44_c00386{left:14.877333pt;}
.x51_c00386{left:16.077333pt;}
.x3e_c00386{left:18.237333pt;}
.x48_c00386{left:19.437333pt;}
.x78_c00386{left:20.640000pt;}
.x61_c00386{left:21.597333pt;}
.x6b_c00386{left:22.797333pt;}
.x1e_c00386{left:25.802667pt;}
.x2e_c00386{left:28.797333pt;}
.x12_c00386{left:30.717333pt;}
.x35_c00386{left:31.917333pt;}
.x49_c00386{left:33.357333pt;}
.x19_c00386{left:36.358667pt;}
.x4f_c00386{left:37.917333pt;}
.x36_c00386{left:41.757333pt;}
.x3a_c00386{left:44.877333pt;}
.x29_c00386{left:46.317333pt;}
.x5_c00386{left:48.804000pt;}
.x75_c00386{left:49.920000pt;}
.x58_c00386{left:53.277333pt;}
.x65_c00386{left:54.477333pt;}
.x1a_c00386{left:57.001333pt;}
.x3f_c00386{left:58.077333pt;}
.x69_c00386{left:59.757333pt;}
.xc_c00386{left:61.826667pt;}
.x3b_c00386{left:62.877333pt;}
.x59_c00386{left:65.277333pt;}
.x7d_c00386{left:67.440000pt;}
.x25_c00386{left:71.277333pt;}
.x6_c00386{left:73.578667pt;}
.x71_c00386{left:75.120000pt;}
.x13_c00386{left:77.997333pt;}
.x5a_c00386{left:79.917333pt;}
.x62_c00386{left:81.837333pt;}
.xd_c00386{left:83.912000pt;}
.x7_c00386{left:87.256000pt;}
.x1f_c00386{left:88.437333pt;}
.x4a_c00386{left:91.437333pt;}
.x72_c00386{left:92.880000pt;}
.x6e_c00386{left:94.080000pt;}
.x52_c00386{left:98.877333pt;}
.x2f_c00386{left:101.517333pt;}
.x7b_c00386{left:104.880000pt;}
.x20_c00386{left:106.208000pt;}
.x1b_c00386{left:107.890667pt;}
.x30_c00386{left:109.917333pt;}
.x80_c00386{left:111.120000pt;}
.x4b_c00386{left:112.077333pt;}
.x14_c00386{left:113.277333pt;}
.x81_c00386{left:114.480000pt;}
.x8_c00386{left:115.524000pt;}
.x45_c00386{left:117.837333pt;}
.x37_c00386{left:119.517333pt;}
.x3c_c00386{left:120.477333pt;}
.x76_c00386{left:123.120000pt;}
.x32_c00386{left:125.037333pt;}
.x1_c00386{left:126.480000pt;}
.x66_c00386{left:129.357333pt;}
.x15_c00386{left:130.557333pt;}
.x9_c00386{left:133.104000pt;}
.x7e_c00386{left:134.160000pt;}
.xe_c00386{left:136.234667pt;}
.x50_c00386{left:137.757333pt;}
.x5b_c00386{left:139.437333pt;}
.x16_c00386{left:144.477333pt;}
.x26_c00386{left:145.437333pt;}
.x6f_c00386{left:146.640000pt;}
.x21_c00386{left:147.725333pt;}
.x5c_c00386{left:151.197333pt;}
.x73_c00386{left:154.320000pt;}
.x6c_c00386{left:157.197333pt;}
.x40_c00386{left:158.877333pt;}
.x38_c00386{left:159.837333pt;}
.x82_c00386{left:162.653333pt;}
.x2a_c00386{left:166.077333pt;}
.x22_c00386{left:168.313333pt;}
.x63_c00386{left:169.677333pt;}
.xa_c00386{left:172.466667pt;}
.x46_c00386{left:173.517333pt;}
.x4c_c00386{left:174.477333pt;}
.x41_c00386{left:176.157333pt;}
.x6a_c00386{left:177.357333pt;}
.x54_c00386{left:180.477333pt;}
.x74_c00386{left:181.440000pt;}
.x7f_c00386{left:183.360000pt;}
.x2b_c00386{left:184.317333pt;}
.x5d_c00386{left:185.997333pt;}
.x1c_c00386{left:187.556000pt;}
.x4d_c00386{left:192.477333pt;}
.x17_c00386{left:193.677333pt;}
.x67_c00386{left:194.637333pt;}
.xf_c00386{left:195.909333pt;}
.x55_c00386{left:198.477333pt;}
.x23_c00386{left:199.749333pt;}
.x5e_c00386{left:201.357333pt;}
.x3d_c00386{left:204.477333pt;}
.x79_c00386{left:205.680000pt;}
.x18_c00386{left:209.517333pt;}
.x10_c00386{left:210.873333pt;}
.x56_c00386{left:212.397333pt;}
.x33_c00386{left:213.597333pt;}
.x47_c00386{left:214.557333pt;}
.x39_c00386{left:216.957333pt;}
.x31_c00386{left:218.637333pt;}
.x4e_c00386{left:222.477333pt;}
.x5f_c00386{left:225.357333pt;}
.x2_c00386{left:226.800000pt;}
.x7c_c00386{left:228.720000pt;}
.x83_c00386{left:233.314667pt;}
.x27_c00386{left:234.477333pt;}
.x53_c00386{left:235.437333pt;}
.x2c_c00386{left:236.877333pt;}
.x57_c00386{left:238.557333pt;}
.x68_c00386{left:239.517333pt;}
.xb_c00386{left:241.786667pt;}
.x34_c00386{left:243.837333pt;}
.x42_c00386{left:245.517333pt;}
.x70_c00386{left:246.480000pt;}
.x28_c00386{left:248.157333pt;}
.x60_c00386{left:250.317333pt;}
.x7a_c00386{left:253.200000pt;}
.x1d_c00386{left:255.193333pt;}
.x24_c00386{left:256.873333pt;}
.x43_c00386{left:258.237333pt;}
.x77_c00386{left:259.920000pt;}
.x64_c00386{left:263.757333pt;}
.x3_c00386{left:265.440000pt;}
.x6d_c00386{left:269.757333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00387 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00387 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00387 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00387 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00387.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mee_c00387{transform:matrix(0.128827,-0.001804,0.003500,0.249976,0,0);-ms-transform:matrix(0.128827,-0.001804,0.003500,0.249976,0,0);-webkit-transform:matrix(0.128827,-0.001804,0.003500,0.249976,0,0);}
.m47_c00387{transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139570,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);}
.mc5_c00387{transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150985,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.151845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151845,0.000000,0.000000,0.250000,0,0);}
.mb4_c00387{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.m8e_c00387{transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155535,0.000000,0.000000,0.250000,0,0);}
.m70_c00387{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.ma5_c00387{transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160870,0.000000,0.000000,0.250000,0,0);}
.mc0_c00387{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.ma6_c00387{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m2e_c00387{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.mec_c00387{transform:matrix(0.163209,-0.002285,0.003500,0.249976,0,0);-ms-transform:matrix(0.163209,-0.002285,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163209,-0.002285,0.003500,0.249976,0,0);}
.m72_c00387{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m35_c00387{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165685,0.000000,0.000000,0.250000,0,0);}
.mbe_c00387{transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);}
.m3e_c00387{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m34_c00387{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m58_c00387{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m80_c00387{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);}
.mbc_c00387{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m84_c00387{transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);}
.mcd_c00387{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.mb1_c00387{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m51_c00387{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.mb5_c00387{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.m59_c00387{transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);}
.md5_c00387{transform:matrix(0.172706,-0.002591,0.003750,0.249972,0,0);-ms-transform:matrix(0.172706,-0.002591,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172706,-0.002591,0.003750,0.249972,0,0);}
.mde_c00387{transform:matrix(0.172978,-0.002422,0.003500,0.249976,0,0);-ms-transform:matrix(0.172978,-0.002422,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172978,-0.002422,0.003500,0.249976,0,0);}
.maf_c00387{transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173560,0.000000,0.000000,0.250000,0,0);}
.m5f_c00387{transform:matrix(0.173790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173790,0.000000,0.000000,0.250000,0,0);}
.m22_c00387{transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);}
.med_c00387{transform:matrix(0.175318,-0.002454,0.003500,0.249976,0,0);-ms-transform:matrix(0.175318,-0.002454,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175318,-0.002454,0.003500,0.249976,0,0);}
.m8f_c00387{transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175545,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.meb_c00387{transform:matrix(0.176423,-0.002470,0.003500,0.249976,0,0);-ms-transform:matrix(0.176423,-0.002470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176423,-0.002470,0.003500,0.249976,0,0);}
.m50_c00387{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mdc_c00387{transform:matrix(0.176963,-0.002477,0.003500,0.249976,0,0);-ms-transform:matrix(0.176963,-0.002477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176963,-0.002477,0.003500,0.249976,0,0);}
.m2f_c00387{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mc6_c00387{transform:matrix(0.178115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178115,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m7f_c00387{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.m71_c00387{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m23_c00387{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m4a_c00387{transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181755,0.000000,0.000000,0.250000,0,0);}
.ma3_c00387{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.m8c_c00387{transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.ma2_c00387{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.mcb_c00387{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.m95_c00387{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m57_c00387{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.mca_c00387{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m55_c00387{transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);}
.m45_c00387{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.me2_c00387{transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);-ms-transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184797,-0.002587,0.003500,0.249976,0,0);}
.me0_c00387{transform:matrix(0.185097,-0.002591,0.003500,0.249976,0,0);-ms-transform:matrix(0.185097,-0.002591,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185097,-0.002591,0.003500,0.249976,0,0);}
.m6e_c00387{transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m54_c00387{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.mbd_c00387{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m9b_c00387{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00387{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.m9f_c00387{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.mc8_c00387{transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);}
.mab_c00387{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mc2_c00387{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m67_c00387{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.mc3_c00387{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.mba_c00387{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m83_c00387{transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00387{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m6a_c00387{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00387{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m5c_c00387{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m87_c00387{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m85_c00387{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00387{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m82_c00387{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.me8_c00387{transform:matrix(0.191941,-0.002687,0.003500,0.249976,0,0);-ms-transform:matrix(0.191941,-0.002687,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191941,-0.002687,0.003500,0.249976,0,0);}
.m2c_c00387{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.mea_c00387{transform:matrix(0.192211,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192211,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192211,-0.002691,0.003500,0.249976,0,0);}
.mb8_c00387{transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00387{transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);}
.m38_c00387{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m32_c00387{transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193270,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193480,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);}
.mb3_c00387{transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);}
.m40_c00387{transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);}
.m3d_c00387{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.me4_c00387{transform:matrix(0.196471,-0.002751,0.003500,0.249976,0,0);-ms-transform:matrix(0.196471,-0.002751,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196471,-0.002751,0.003500,0.249976,0,0);}
.m4_c00387{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m66_c00387{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.mcf_c00387{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m97_c00387{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mdb_c00387{transform:matrix(0.198261,-0.002776,0.003500,0.249976,0,0);-ms-transform:matrix(0.198261,-0.002776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198261,-0.002776,0.003500,0.249976,0,0);}
.m37_c00387{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.mbb_c00387{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.mc1_c00387{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.mce_c00387{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00387{transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);}
.md2_c00387{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m5b_c00387{transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);}
.m90_c00387{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.me9_c00387{transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200780,-0.002811,0.003500,0.249976,0,0);}
.m92_c00387{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00387{transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202715,0.000000,0.000000,0.250000,0,0);}
.mbf_c00387{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202990,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.mb9_c00387{transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203820,0.000000,0.000000,0.250000,0,0);}
.m73_c00387{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m89_c00387{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.ma7_c00387{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00387{transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);}
.me1_c00387{transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);-ms-transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204220,-0.002859,0.003500,0.249976,0,0);}
.mc7_c00387{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m8b_c00387{transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);}
.md7_c00387{transform:matrix(0.204627,-0.003069,0.003750,0.249972,0,0);-ms-transform:matrix(0.204627,-0.003069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204627,-0.003069,0.003750,0.249972,0,0);}
.m60_c00387{transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);}
.mae_c00387{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m64_c00387{transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);}
.me5_c00387{transform:matrix(0.205530,-0.002877,0.003500,0.249976,0,0);-ms-transform:matrix(0.205530,-0.002877,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205530,-0.002877,0.003500,0.249976,0,0);}
.m4c_c00387{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.mb2_c00387{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m5a_c00387{transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);}
.me3_c00387{transform:matrix(0.207230,-0.002901,0.003500,0.249976,0,0);-ms-transform:matrix(0.207230,-0.002901,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207230,-0.002901,0.003500,0.249976,0,0);}
.ma8_c00387{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00387{transform:matrix(0.209520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209520,0.000000,0.000000,0.250000,0,0);}
.m86_c00387{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m78_c00387{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m56_c00387{transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m6d_c00387{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m69_c00387{transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);}
.mac_c00387{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m93_c00387{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.me7_c00387{transform:matrix(0.212239,-0.002971,0.003500,0.249976,0,0);-ms-transform:matrix(0.212239,-0.002971,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212239,-0.002971,0.003500,0.249976,0,0);}
.ma4_c00387{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m94_c00387{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m7a_c00387{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214965,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m5d_c00387{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m63_c00387{transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216480,0.000000,0.000000,0.250000,0,0);}
.m76_c00387{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m62_c00387{transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217395,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md9_c00387{transform:matrix(0.217721,-0.003266,0.003750,0.249972,0,0);-ms-transform:matrix(0.217721,-0.003266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217721,-0.003266,0.003750,0.249972,0,0);}
.md1_c00387{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.md4_c00387{transform:matrix(0.218065,-0.003271,0.003750,0.249972,0,0);-ms-transform:matrix(0.218065,-0.003271,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218065,-0.003271,0.003750,0.249972,0,0);}
.m77_c00387{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.m65_c00387{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.m4b_c00387{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.mdd_c00387{transform:matrix(0.221873,-0.003106,0.003500,0.249976,0,0);-ms-transform:matrix(0.221873,-0.003106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221873,-0.003106,0.003500,0.249976,0,0);}
.m88_c00387{transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);}
.mc9_c00387{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.m9a_c00387{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m79_c00387{transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);}
.md0_c00387{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m52_c00387{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.m4e_c00387{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.md6_c00387{transform:matrix(0.229944,-0.003449,0.003750,0.249972,0,0);-ms-transform:matrix(0.229944,-0.003449,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229944,-0.003449,0.003750,0.249972,0,0);}
.m2a_c00387{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.mad_c00387{transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);}
.m74_c00387{transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);}
.me6_c00387{transform:matrix(0.234182,-0.003279,0.003500,0.249976,0,0);-ms-transform:matrix(0.234182,-0.003279,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234182,-0.003279,0.003500,0.249976,0,0);}
.m68_c00387{transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);}
.ma9_c00387{transform:matrix(0.234530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234530,0.000000,0.000000,0.250000,0,0);}
.m41_c00387{transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);}
.maa_c00387{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.mb7_c00387{transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);}
.m61_c00387{transform:matrix(0.239065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239065,0.000000,0.000000,0.250000,0,0);}
.mda_c00387{transform:matrix(0.241366,-0.003379,0.003500,0.249976,0,0);-ms-transform:matrix(0.241366,-0.003379,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241366,-0.003379,0.003500,0.249976,0,0);}
.ma1_c00387{transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);}
.m96_c00387{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m7b_c00387{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.245535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245535,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m9d_c00387{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m53_c00387{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m4d_c00387{transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);}
.m6b_c00387{transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00387{transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259435,0.000000,0.000000,0.250000,0,0);}
.md8_c00387{transform:matrix(0.263245,-0.003949,0.003750,0.249972,0,0);-ms-transform:matrix(0.263245,-0.003949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263245,-0.003949,0.003750,0.249972,0,0);}
.mdf_c00387{transform:matrix(0.278123,-0.003894,0.003500,0.249976,0,0);-ms-transform:matrix(0.278123,-0.003894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278123,-0.003894,0.003500,0.249976,0,0);}
.md3_c00387{transform:matrix(0.289955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289955,0.000000,0.000000,0.250000,0,0);}
.m98_c00387{transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.293375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293375,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{transform:matrix(0.297470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297470,0.000000,0.000000,0.250000,0,0);}
.m91_c00387{transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.316060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316060,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.335285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335285,0.000000,0.000000,0.250000,0,0);}
.mc4_c00387{transform:matrix(0.337120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337120,0.000000,0.000000,0.250000,0,0);}
.m9c_c00387{transform:matrix(0.340695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340695,0.000000,0.000000,0.250000,0,0);}
.m99_c00387{transform:matrix(0.372180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372180,0.000000,0.000000,0.250000,0,0);}
.m5e_c00387{transform:matrix(1.029525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.029525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.029525,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:0.000000px;}
.fc0_c00387{color:transparent;}
.fs8_c00387{font-size:57.750000px;}
.fs3_c00387{font-size:58.800000px;}
.fs5_c00387{font-size:60.900000px;}
.fs2_c00387{font-size:61.950000px;}
.fsc_c00387{font-size:61.956071px;}
.fsb_c00387{font-size:61.956969px;}
.fs6_c00387{font-size:63.000000px;}
.fs9_c00387{font-size:64.050000px;}
.fs1_c00387{font-size:65.100000px;}
.fsd_c00387{font-size:65.106379px;}
.fs4_c00387{font-size:66.150000px;}
.fs7_c00387{font-size:67.200000px;}
.fsa_c00387{font-size:68.250000px;}
.fs0_c00387{font-size:124.950000px;}
.y0_c00387{bottom:0.000000px;}
.y70_c00387{bottom:20.521305px;}
.y71_c00387{bottom:21.134376px;}
.y72_c00387{bottom:21.471174px;}
.y73_c00387{bottom:22.594302px;}
.y74_c00387{bottom:23.153325px;}
.y75_c00387{bottom:24.233619px;}
.y76_c00387{bottom:24.501126px;}
.y77_c00387{bottom:24.971835px;}
.y6a_c00387{bottom:38.984862px;}
.y6b_c00387{bottom:38.985081px;}
.y6c_c00387{bottom:38.985357px;}
.y69_c00387{bottom:38.985585px;}
.y6d_c00387{bottom:38.985852px;}
.y6e_c00387{bottom:38.986071px;}
.y6f_c00387{bottom:38.986188px;}
.y63_c00387{bottom:54.273000px;}
.y64_c00387{bottom:55.391607px;}
.y65_c00387{bottom:56.439045px;}
.y66_c00387{bottom:56.900268px;}
.y67_c00387{bottom:57.738819px;}
.y68_c00387{bottom:58.031181px;}
.y5d_c00387{bottom:71.013000px;}
.y5e_c00387{bottom:71.972872px;}
.y5f_c00387{bottom:72.665400px;}
.y60_c00387{bottom:73.236202px;}
.y61_c00387{bottom:73.528252px;}
.y62_c00387{bottom:74.558235px;}
.y56_c00387{bottom:88.023000px;}
.y57_c00387{bottom:88.258500px;}
.y58_c00387{bottom:88.968000px;}
.y59_c00387{bottom:89.245500px;}
.y5a_c00387{bottom:90.414000px;}
.y5b_c00387{bottom:90.565500px;}
.y5c_c00387{bottom:90.825000px;}
.y55_c00387{bottom:106.369500px;}
.y4e_c00387{bottom:121.771500px;}
.y4f_c00387{bottom:122.214000px;}
.y50_c00387{bottom:123.136500px;}
.y51_c00387{bottom:123.382500px;}
.y52_c00387{bottom:124.093500px;}
.y53_c00387{bottom:124.761000px;}
.y54_c00387{bottom:125.190000px;}
.y48_c00387{bottom:138.781500px;}
.y49_c00387{bottom:139.693500px;}
.y4a_c00387{bottom:140.827500px;}
.y4b_c00387{bottom:141.558000px;}
.y4c_c00387{bottom:141.904500px;}
.y4d_c00387{bottom:142.221000px;}
.y47_c00387{bottom:157.824000px;}
.y3e_c00387{bottom:173.886000px;}
.y3f_c00387{bottom:174.397500px;}
.y40_c00387{bottom:175.134000px;}
.y41_c00387{bottom:175.270500px;}
.y42_c00387{bottom:175.507500px;}
.y43_c00387{bottom:175.906500px;}
.y44_c00387{bottom:176.488500px;}
.y45_c00387{bottom:176.695500px;}
.y46_c00387{bottom:176.955000px;}
.y3d_c00387{bottom:192.915000px;}
.y3c_c00387{bottom:209.874000px;}
.y34_c00387{bottom:225.186000px;}
.y35_c00387{bottom:225.432000px;}
.y36_c00387{bottom:225.867000px;}
.y37_c00387{bottom:226.144500px;}
.y38_c00387{bottom:226.498500px;}
.y39_c00387{bottom:227.482500px;}
.y3a_c00387{bottom:227.745000px;}
.y3b_c00387{bottom:228.613500px;}
.y33_c00387{bottom:243.408000px;}
.y2c_c00387{bottom:258.664500px;}
.y2d_c00387{bottom:258.940500px;}
.y2e_c00387{bottom:259.575000px;}
.y2f_c00387{bottom:259.726500px;}
.y30_c00387{bottom:260.050500px;}
.y31_c00387{bottom:260.871000px;}
.y32_c00387{bottom:261.000000px;}
.y25_c00387{bottom:275.674500px;}
.y26_c00387{bottom:275.913000px;}
.y27_c00387{bottom:277.068000px;}
.y28_c00387{bottom:277.489500px;}
.y29_c00387{bottom:277.686000px;}
.y2a_c00387{bottom:278.377500px;}
.y2b_c00387{bottom:278.677500px;}
.y1c_c00387{bottom:292.684500px;}
.y1d_c00387{bottom:292.860000px;}
.y1e_c00387{bottom:293.721000px;}
.y1f_c00387{bottom:293.977500px;}
.y20_c00387{bottom:294.780000px;}
.y21_c00387{bottom:295.054500px;}
.y22_c00387{bottom:295.531500px;}
.y23_c00387{bottom:296.152500px;}
.y24_c00387{bottom:296.317500px;}
.y1b_c00387{bottom:311.443500px;}
.y13_c00387{bottom:326.703000px;}
.y14_c00387{bottom:327.172500px;}
.y15_c00387{bottom:327.843000px;}
.y16_c00387{bottom:328.371000px;}
.y17_c00387{bottom:328.575000px;}
.y18_c00387{bottom:329.365500px;}
.y19_c00387{bottom:329.778000px;}
.y1a_c00387{bottom:329.986500px;}
.ye_c00387{bottom:343.981500px;}
.yf_c00387{bottom:344.199000px;}
.y10_c00387{bottom:345.066000px;}
.y11_c00387{bottom:345.874500px;}
.y12_c00387{bottom:346.465500px;}
.yd_c00387{bottom:363.007500px;}
.yc_c00387{bottom:379.725000px;}
.yb_c00387{bottom:397.093500px;}
.ya_c00387{bottom:413.988000px;}
.y9_c00387{bottom:430.974000px;}
.y8_c00387{bottom:448.131000px;}
.y7_c00387{bottom:464.601000px;}
.y6_c00387{bottom:481.339500px;}
.y5_c00387{bottom:498.121500px;}
.y4_c00387{bottom:515.386500px;}
.y3_c00387{bottom:532.299000px;}
.y2_c00387{bottom:549.153000px;}
.y1_c00387{bottom:562.725000px;}
.ha_c00387{height:57.750000px;}
.h5_c00387{height:58.800000px;}
.h7_c00387{height:60.900000px;}
.h4_c00387{height:61.950000px;}
.he_c00387{height:61.956071px;}
.hd_c00387{height:61.956969px;}
.h8_c00387{height:63.000000px;}
.hb_c00387{height:64.050000px;}
.h3_c00387{height:65.100000px;}
.hf_c00387{height:65.106379px;}
.h6_c00387{height:66.150000px;}
.h9_c00387{height:67.200000px;}
.hc_c00387{height:68.250000px;}
.h2_c00387{height:124.950000px;}
.h0_c00387{height:613.170000px;}
.h1_c00387{height:613.500000px;}
.w0_c00387{width:359.100000px;}
.w1_c00387{width:359.250000px;}
.x0_c00387{left:0.000000px;}
.x16_c00387{left:43.740000px;}
.x5a_c00387{left:45.634500px;}
.x4c_c00387{left:46.711500px;}
.x1e_c00387{left:47.790000px;}
.x2_c00387{left:48.870000px;}
.x37_c00387{left:50.760000px;}
.x52_c00387{left:60.064500px;}
.x78_c00387{left:62.295000px;}
.x75_c00387{left:63.613500px;}
.x46_c00387{left:66.841500px;}
.x54_c00387{left:67.911000px;}
.x2a_c00387{left:69.390000px;}
.x23_c00387{left:71.010000px;}
.x71_c00387{left:76.948500px;}
.x2e_c00387{left:78.030000px;}
.x3_c00387{left:80.190000px;}
.x17_c00387{left:81.270000px;}
.x7a_c00387{left:83.884866px;}
.x48_c00387{left:86.014500px;}
.x24_c00387{left:91.530000px;}
.x4_c00387{left:92.610000px;}
.x62_c00387{left:98.014500px;}
.x18_c00387{left:99.360000px;}
.x6d_c00387{left:100.440000px;}
.x5f_c00387{left:102.745500px;}
.xe_c00387{left:105.570000px;}
.x3d_c00387{left:107.190000px;}
.x2f_c00387{left:108.270000px;}
.x5_c00387{left:110.700000px;}
.x42_c00387{left:112.320000px;}
.xf_c00387{left:114.750000px;}
.x72_c00387{left:116.368500px;}
.x76_c00387{left:118.155000px;}
.x9_c00387{left:120.960000px;}
.x4d_c00387{left:122.041500px;}
.x5b_c00387{left:124.204500px;}
.x19_c00387{left:126.360000px;}
.x3e_c00387{left:127.440000px;}
.x56_c00387{left:128.868000px;}
.x73_c00387{left:129.868500px;}
.x4e_c00387{left:135.271500px;}
.x63_c00387{left:138.784500px;}
.x49_c00387{left:141.909000px;}
.x10_c00387{left:143.100000px;}
.x1f_c00387{left:146.340000px;}
.x43_c00387{left:147.690000px;}
.x5c_c00387{left:152.554500px;}
.x25_c00387{left:154.710000px;}
.x1_c00387{left:155.790000px;}
.x6_c00387{left:158.760000px;}
.x11_c00387{left:161.190000px;}
.x34_c00387{left:163.080000px;}
.x26_c00387{left:166.590000px;}
.x64_c00387{left:167.674500px;}
.x57_c00387{left:172.084500px;}
.x30_c00387{left:173.610000px;}
.x5d_c00387{left:176.044500px;}
.xa_c00387{left:182.790000px;}
.x7_c00387{left:186.030000px;}
.x38_c00387{left:188.730000px;}
.x69_c00387{left:193.137000px;}
.x31_c00387{left:194.400000px;}
.x4f_c00387{left:199.531500px;}
.xb_c00387{left:201.420000px;}
.x1a_c00387{left:202.500000px;}
.x39_c00387{left:205.740000px;}
.x3f_c00387{left:208.710000px;}
.x20_c00387{left:210.870000px;}
.x35_c00387{left:213.030000px;}
.x12_c00387{left:214.110000px;}
.x27_c00387{left:216.000000px;}
.x66_c00387{left:217.624500px;}
.x47_c00387{left:219.118500px;}
.x2b_c00387{left:221.400000px;}
.x44_c00387{left:223.020000px;}
.x13_c00387{left:229.230000px;}
.x21_c00387{left:231.120000px;}
.x74_c00387{left:233.818500px;}
.x60_c00387{left:237.417000px;}
.x79_c00387{left:238.699332px;}
.x6e_c00387{left:240.840000px;}
.x50_c00387{left:243.001500px;}
.x14_c00387{left:244.350000px;}
.x58_c00387{left:246.637500px;}
.x45_c00387{left:249.480000px;}
.x5e_c00387{left:252.184500px;}
.x22_c00387{left:255.420000px;}
.x59_c00387{left:258.303000px;}
.xc_c00387{left:259.470000px;}
.x77_c00387{left:260.986500px;}
.x65_c00387{left:262.714500px;}
.x3a_c00387{left:264.600000px;}
.x1b_c00387{left:266.490000px;}
.x4a_c00387{left:268.749000px;}
.x32_c00387{left:271.890000px;}
.x40_c00387{left:275.940000px;}
.x1c_c00387{left:278.100000px;}
.x28_c00387{left:281.070000px;}
.x6a_c00387{left:282.280500px;}
.x6f_c00387{left:285.759000px;}
.x8_c00387{left:287.010000px;}
.x3b_c00387{left:288.090000px;}
.x51_c00387{left:289.171500px;}
.x1d_c00387{left:292.140000px;}
.x7b_c00387{left:294.253965px;}
.x67_c00387{left:296.464500px;}
.x29_c00387{left:299.430000px;}
.x6b_c00387{left:301.140000px;}
.x4b_c00387{left:303.088500px;}
.x2c_c00387{left:304.830000px;}
.x70_c00387{left:310.125000px;}
.x36_c00387{left:311.580000px;}
.x15_c00387{left:312.660000px;}
.x68_c00387{left:313.744500px;}
.x2d_c00387{left:316.980000px;}
.x55_c00387{left:319.287000px;}
.x3c_c00387{left:320.760000px;}
.x41_c00387{left:323.190000px;}
.x6c_c00387{left:324.675000px;}
.x53_c00387{left:326.034000px;}
.xd_c00387{left:329.670000px;}
.x61_c00387{left:331.708500px;}
.x33_c00387{left:333.450000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.fs8_c00387{font-size:51.333333pt;}
.fs3_c00387{font-size:52.266667pt;}
.fs5_c00387{font-size:54.133333pt;}
.fs2_c00387{font-size:55.066667pt;}
.fsc_c00387{font-size:55.072063pt;}
.fsb_c00387{font-size:55.072861pt;}
.fs6_c00387{font-size:56.000000pt;}
.fs9_c00387{font-size:56.933333pt;}
.fs1_c00387{font-size:57.866667pt;}
.fsd_c00387{font-size:57.872337pt;}
.fs4_c00387{font-size:58.800000pt;}
.fs7_c00387{font-size:59.733333pt;}
.fsa_c00387{font-size:60.666667pt;}
.fs0_c00387{font-size:111.066667pt;}
.y0_c00387{bottom:0.000000pt;}
.y70_c00387{bottom:18.241160pt;}
.y71_c00387{bottom:18.786112pt;}
.y72_c00387{bottom:19.085488pt;}
.y73_c00387{bottom:20.083824pt;}
.y74_c00387{bottom:20.580733pt;}
.y75_c00387{bottom:21.540995pt;}
.y76_c00387{bottom:21.778779pt;}
.y77_c00387{bottom:22.197187pt;}
.y6a_c00387{bottom:34.653211pt;}
.y6b_c00387{bottom:34.653405pt;}
.y6c_c00387{bottom:34.653651pt;}
.y69_c00387{bottom:34.653853pt;}
.y6d_c00387{bottom:34.654091pt;}
.y6e_c00387{bottom:34.654285pt;}
.y6f_c00387{bottom:34.654389pt;}
.y63_c00387{bottom:48.242667pt;}
.y64_c00387{bottom:49.236984pt;}
.y65_c00387{bottom:50.168040pt;}
.y66_c00387{bottom:50.578016pt;}
.y67_c00387{bottom:51.323395pt;}
.y68_c00387{bottom:51.583272pt;}
.y5d_c00387{bottom:63.122667pt;}
.y5e_c00387{bottom:63.975887pt;}
.y5f_c00387{bottom:64.591467pt;}
.y60_c00387{bottom:65.098847pt;}
.y61_c00387{bottom:65.358447pt;}
.y62_c00387{bottom:66.273987pt;}
.y56_c00387{bottom:78.242667pt;}
.y57_c00387{bottom:78.452000pt;}
.y58_c00387{bottom:79.082667pt;}
.y59_c00387{bottom:79.329333pt;}
.y5a_c00387{bottom:80.368000pt;}
.y5b_c00387{bottom:80.502667pt;}
.y5c_c00387{bottom:80.733333pt;}
.y55_c00387{bottom:94.550667pt;}
.y4e_c00387{bottom:108.241333pt;}
.y4f_c00387{bottom:108.634667pt;}
.y50_c00387{bottom:109.454667pt;}
.y51_c00387{bottom:109.673333pt;}
.y52_c00387{bottom:110.305333pt;}
.y53_c00387{bottom:110.898667pt;}
.y54_c00387{bottom:111.280000pt;}
.y48_c00387{bottom:123.361333pt;}
.y49_c00387{bottom:124.172000pt;}
.y4a_c00387{bottom:125.180000pt;}
.y4b_c00387{bottom:125.829333pt;}
.y4c_c00387{bottom:126.137333pt;}
.y4d_c00387{bottom:126.418667pt;}
.y47_c00387{bottom:140.288000pt;}
.y3e_c00387{bottom:154.565333pt;}
.y3f_c00387{bottom:155.020000pt;}
.y40_c00387{bottom:155.674667pt;}
.y41_c00387{bottom:155.796000pt;}
.y42_c00387{bottom:156.006667pt;}
.y43_c00387{bottom:156.361333pt;}
.y44_c00387{bottom:156.878667pt;}
.y45_c00387{bottom:157.062667pt;}
.y46_c00387{bottom:157.293333pt;}
.y3d_c00387{bottom:171.480000pt;}
.y3c_c00387{bottom:186.554667pt;}
.y34_c00387{bottom:200.165333pt;}
.y35_c00387{bottom:200.384000pt;}
.y36_c00387{bottom:200.770667pt;}
.y37_c00387{bottom:201.017333pt;}
.y38_c00387{bottom:201.332000pt;}
.y39_c00387{bottom:202.206667pt;}
.y3a_c00387{bottom:202.440000pt;}
.y3b_c00387{bottom:203.212000pt;}
.y33_c00387{bottom:216.362667pt;}
.y2c_c00387{bottom:229.924000pt;}
.y2d_c00387{bottom:230.169333pt;}
.y2e_c00387{bottom:230.733333pt;}
.y2f_c00387{bottom:230.868000pt;}
.y30_c00387{bottom:231.156000pt;}
.y31_c00387{bottom:231.885333pt;}
.y32_c00387{bottom:232.000000pt;}
.y25_c00387{bottom:245.044000pt;}
.y26_c00387{bottom:245.256000pt;}
.y27_c00387{bottom:246.282667pt;}
.y28_c00387{bottom:246.657333pt;}
.y29_c00387{bottom:246.832000pt;}
.y2a_c00387{bottom:247.446667pt;}
.y2b_c00387{bottom:247.713333pt;}
.y1c_c00387{bottom:260.164000pt;}
.y1d_c00387{bottom:260.320000pt;}
.y1e_c00387{bottom:261.085333pt;}
.y1f_c00387{bottom:261.313333pt;}
.y20_c00387{bottom:262.026667pt;}
.y21_c00387{bottom:262.270667pt;}
.y22_c00387{bottom:262.694667pt;}
.y23_c00387{bottom:263.246667pt;}
.y24_c00387{bottom:263.393333pt;}
.y1b_c00387{bottom:276.838667pt;}
.y13_c00387{bottom:290.402667pt;}
.y14_c00387{bottom:290.820000pt;}
.y15_c00387{bottom:291.416000pt;}
.y16_c00387{bottom:291.885333pt;}
.y17_c00387{bottom:292.066667pt;}
.y18_c00387{bottom:292.769333pt;}
.y19_c00387{bottom:293.136000pt;}
.y1a_c00387{bottom:293.321333pt;}
.ye_c00387{bottom:305.761333pt;}
.yf_c00387{bottom:305.954667pt;}
.y10_c00387{bottom:306.725333pt;}
.y11_c00387{bottom:307.444000pt;}
.y12_c00387{bottom:307.969333pt;}
.yd_c00387{bottom:322.673333pt;}
.yc_c00387{bottom:337.533333pt;}
.yb_c00387{bottom:352.972000pt;}
.ya_c00387{bottom:367.989333pt;}
.y9_c00387{bottom:383.088000pt;}
.y8_c00387{bottom:398.338667pt;}
.y7_c00387{bottom:412.978667pt;}
.y6_c00387{bottom:427.857333pt;}
.y5_c00387{bottom:442.774667pt;}
.y4_c00387{bottom:458.121333pt;}
.y3_c00387{bottom:473.154667pt;}
.y2_c00387{bottom:488.136000pt;}
.y1_c00387{bottom:500.200000pt;}
.ha_c00387{height:51.333333pt;}
.h5_c00387{height:52.266667pt;}
.h7_c00387{height:54.133333pt;}
.h4_c00387{height:55.066667pt;}
.he_c00387{height:55.072063pt;}
.hd_c00387{height:55.072861pt;}
.h8_c00387{height:56.000000pt;}
.hb_c00387{height:56.933333pt;}
.h3_c00387{height:57.866667pt;}
.hf_c00387{height:57.872337pt;}
.h6_c00387{height:58.800000pt;}
.h9_c00387{height:59.733333pt;}
.hc_c00387{height:60.666667pt;}
.h2_c00387{height:111.066667pt;}
.h0_c00387{height:545.040000pt;}
.h1_c00387{height:545.333333pt;}
.w0_c00387{width:319.200000pt;}
.w1_c00387{width:319.333333pt;}
.x0_c00387{left:0.000000pt;}
.x16_c00387{left:38.880000pt;}
.x5a_c00387{left:40.564000pt;}
.x4c_c00387{left:41.521333pt;}
.x1e_c00387{left:42.480000pt;}
.x2_c00387{left:43.440000pt;}
.x37_c00387{left:45.120000pt;}
.x52_c00387{left:53.390667pt;}
.x78_c00387{left:55.373333pt;}
.x75_c00387{left:56.545333pt;}
.x46_c00387{left:59.414667pt;}
.x54_c00387{left:60.365333pt;}
.x2a_c00387{left:61.680000pt;}
.x23_c00387{left:63.120000pt;}
.x71_c00387{left:68.398667pt;}
.x2e_c00387{left:69.360000pt;}
.x3_c00387{left:71.280000pt;}
.x17_c00387{left:72.240000pt;}
.x7a_c00387{left:74.564325pt;}
.x48_c00387{left:76.457333pt;}
.x24_c00387{left:81.360000pt;}
.x4_c00387{left:82.320000pt;}
.x62_c00387{left:87.124000pt;}
.x18_c00387{left:88.320000pt;}
.x6d_c00387{left:89.280000pt;}
.x5f_c00387{left:91.329333pt;}
.xe_c00387{left:93.840000pt;}
.x3d_c00387{left:95.280000pt;}
.x2f_c00387{left:96.240000pt;}
.x5_c00387{left:98.400000pt;}
.x42_c00387{left:99.840000pt;}
.xf_c00387{left:102.000000pt;}
.x72_c00387{left:103.438667pt;}
.x76_c00387{left:105.026667pt;}
.x9_c00387{left:107.520000pt;}
.x4d_c00387{left:108.481333pt;}
.x5b_c00387{left:110.404000pt;}
.x19_c00387{left:112.320000pt;}
.x3e_c00387{left:113.280000pt;}
.x56_c00387{left:114.549333pt;}
.x73_c00387{left:115.438667pt;}
.x4e_c00387{left:120.241333pt;}
.x63_c00387{left:123.364000pt;}
.x49_c00387{left:126.141333pt;}
.x10_c00387{left:127.200000pt;}
.x1f_c00387{left:130.080000pt;}
.x43_c00387{left:131.280000pt;}
.x5c_c00387{left:135.604000pt;}
.x25_c00387{left:137.520000pt;}
.x1_c00387{left:138.480000pt;}
.x6_c00387{left:141.120000pt;}
.x11_c00387{left:143.280000pt;}
.x34_c00387{left:144.960000pt;}
.x26_c00387{left:148.080000pt;}
.x64_c00387{left:149.044000pt;}
.x57_c00387{left:152.964000pt;}
.x30_c00387{left:154.320000pt;}
.x5d_c00387{left:156.484000pt;}
.xa_c00387{left:162.480000pt;}
.x7_c00387{left:165.360000pt;}
.x38_c00387{left:167.760000pt;}
.x69_c00387{left:171.677333pt;}
.x31_c00387{left:172.800000pt;}
.x4f_c00387{left:177.361333pt;}
.xb_c00387{left:179.040000pt;}
.x1a_c00387{left:180.000000pt;}
.x39_c00387{left:182.880000pt;}
.x3f_c00387{left:185.520000pt;}
.x20_c00387{left:187.440000pt;}
.x35_c00387{left:189.360000pt;}
.x12_c00387{left:190.320000pt;}
.x27_c00387{left:192.000000pt;}
.x66_c00387{left:193.444000pt;}
.x47_c00387{left:194.772000pt;}
.x2b_c00387{left:196.800000pt;}
.x44_c00387{left:198.240000pt;}
.x13_c00387{left:203.760000pt;}
.x21_c00387{left:205.440000pt;}
.x74_c00387{left:207.838667pt;}
.x60_c00387{left:211.037333pt;}
.x79_c00387{left:212.177184pt;}
.x6e_c00387{left:214.080000pt;}
.x50_c00387{left:216.001333pt;}
.x14_c00387{left:217.200000pt;}
.x58_c00387{left:219.233333pt;}
.x45_c00387{left:221.760000pt;}
.x5e_c00387{left:224.164000pt;}
.x22_c00387{left:227.040000pt;}
.x59_c00387{left:229.602667pt;}
.xc_c00387{left:230.640000pt;}
.x77_c00387{left:231.988000pt;}
.x65_c00387{left:233.524000pt;}
.x3a_c00387{left:235.200000pt;}
.x1b_c00387{left:236.880000pt;}
.x4a_c00387{left:238.888000pt;}
.x32_c00387{left:241.680000pt;}
.x40_c00387{left:245.280000pt;}
.x1c_c00387{left:247.200000pt;}
.x28_c00387{left:249.840000pt;}
.x6a_c00387{left:250.916000pt;}
.x6f_c00387{left:254.008000pt;}
.x8_c00387{left:255.120000pt;}
.x3b_c00387{left:256.080000pt;}
.x51_c00387{left:257.041333pt;}
.x1d_c00387{left:259.680000pt;}
.x7b_c00387{left:261.559080pt;}
.x67_c00387{left:263.524000pt;}
.x29_c00387{left:266.160000pt;}
.x6b_c00387{left:267.680000pt;}
.x4b_c00387{left:269.412000pt;}
.x2c_c00387{left:270.960000pt;}
.x70_c00387{left:275.666667pt;}
.x36_c00387{left:276.960000pt;}
.x15_c00387{left:277.920000pt;}
.x68_c00387{left:278.884000pt;}
.x2d_c00387{left:281.760000pt;}
.x55_c00387{left:283.810667pt;}
.x3c_c00387{left:285.120000pt;}
.x41_c00387{left:287.280000pt;}
.x6c_c00387{left:288.600000pt;}
.x53_c00387{left:289.808000pt;}
.xd_c00387{left:293.040000pt;}
.x61_c00387{left:294.852000pt;}
.x33_c00387{left:296.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00388 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00388 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00388 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00388 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00388.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00388{transform:matrix(0.034495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034495,0.000000,0.000000,0.250000,0,0);}
.mf1_c00388{transform:matrix(0.056190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056190,0.000000,0.000000,0.250000,0,0);}
.m47_c00388{transform:matrix(0.061993,-0.000930,0.003750,0.249972,0,0);-ms-transform:matrix(0.061993,-0.000930,0.003750,0.249972,0,0);-webkit-transform:matrix(0.061993,-0.000930,0.003750,0.249972,0,0);}
.m49_c00388{transform:matrix(0.083176,-0.001248,0.003750,0.249972,0,0);-ms-transform:matrix(0.083176,-0.001248,0.003750,0.249972,0,0);-webkit-transform:matrix(0.083176,-0.001248,0.003750,0.249972,0,0);}
.mf0_c00388{transform:matrix(0.093830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093830,0.000000,0.000000,0.250000,0,0);}
.m52_c00388{transform:matrix(0.104548,-0.001568,0.003750,0.249972,0,0);-ms-transform:matrix(0.104548,-0.001568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.104548,-0.001568,0.003750,0.249972,0,0);}
.mf3_c00388{transform:matrix(0.104835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104835,0.000000,0.000000,0.250000,0,0);}
.mee_c00388{transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);}
.mc7_c00388{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.md5_c00388{transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.141139,-0.002117,0.003750,0.249972,0,0);-ms-transform:matrix(0.141139,-0.002117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141139,-0.002117,0.003750,0.249972,0,0);}
.m48_c00388{transform:matrix(0.144414,-0.002166,0.003750,0.249972,0,0);-ms-transform:matrix(0.144414,-0.002166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144414,-0.002166,0.003750,0.249972,0,0);}
.mff_c00388{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.149303,-0.002240,0.003750,0.249972,0,0);-ms-transform:matrix(0.149303,-0.002240,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149303,-0.002240,0.003750,0.249972,0,0);}
.m62_c00388{transform:matrix(0.149853,-0.002248,0.003750,0.249972,0,0);-ms-transform:matrix(0.149853,-0.002248,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149853,-0.002248,0.003750,0.249972,0,0);}
.m21_c00388{transform:matrix(0.151303,-0.002270,0.003750,0.249972,0,0);-ms-transform:matrix(0.151303,-0.002270,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151303,-0.002270,0.003750,0.249972,0,0);}
.m8e_c00388{transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);}
.m60_c00388{transform:matrix(0.152933,-0.002294,0.003750,0.249972,0,0);-ms-transform:matrix(0.152933,-0.002294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152933,-0.002294,0.003750,0.249972,0,0);}
.m90_c00388{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m8f_c00388{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.ma8_c00388{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.mca_c00388{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m57_c00388{transform:matrix(0.155707,-0.002336,0.003750,0.249972,0,0);-ms-transform:matrix(0.155707,-0.002336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155707,-0.002336,0.003750,0.249972,0,0);}
.mda_c00388{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.mac_c00388{transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156265,0.000000,0.000000,0.250000,0,0);}
.mc3_c00388{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.157882,-0.002368,0.003750,0.249972,0,0);-ms-transform:matrix(0.157882,-0.002368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157882,-0.002368,0.003750,0.249972,0,0);}
.ma9_c00388{transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);}
.mce_c00388{transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159515,0.000000,0.000000,0.250000,0,0);}
.mab_c00388{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m6b_c00388{transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);-ms-transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159827,-0.002397,0.003750,0.249972,0,0);}
.m2e_c00388{transform:matrix(0.159877,-0.002398,0.003750,0.249972,0,0);-ms-transform:matrix(0.159877,-0.002398,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159877,-0.002398,0.003750,0.249972,0,0);}
.m4f_c00388{transform:matrix(0.160202,-0.002403,0.003750,0.249972,0,0);-ms-transform:matrix(0.160202,-0.002403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160202,-0.002403,0.003750,0.249972,0,0);}
.m2a_c00388{transform:matrix(0.161877,-0.002428,0.003750,0.249972,0,0);-ms-transform:matrix(0.161877,-0.002428,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161877,-0.002428,0.003750,0.249972,0,0);}
.mfc_c00388{transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00388{transform:matrix(0.163047,-0.002446,0.003750,0.249972,0,0);-ms-transform:matrix(0.163047,-0.002446,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163047,-0.002446,0.003750,0.249972,0,0);}
.m8_c00388{transform:matrix(0.163722,-0.002456,0.003750,0.249972,0,0);-ms-transform:matrix(0.163722,-0.002456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163722,-0.002456,0.003750,0.249972,0,0);}
.m9c_c00388{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.mf4_c00388{transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);}
.mad_c00388{transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);}
.me9_c00388{transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.165801,-0.002487,0.003750,0.249972,0,0);-ms-transform:matrix(0.165801,-0.002487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165801,-0.002487,0.003750,0.249972,0,0);}
.mcf_c00388{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.mf6_c00388{transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167380,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.167871,-0.002518,0.003750,0.249972,0,0);-ms-transform:matrix(0.167871,-0.002518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167871,-0.002518,0.003750,0.249972,0,0);}
.m11_c00388{transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);-ms-transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);}
.ma1_c00388{transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.168891,-0.002533,0.003750,0.249972,0,0);-ms-transform:matrix(0.168891,-0.002533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168891,-0.002533,0.003750,0.249972,0,0);}
.m45_c00388{transform:matrix(0.169156,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169156,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169156,-0.002537,0.003750,0.249972,0,0);}
.m7e_c00388{transform:matrix(0.169286,-0.002539,0.003750,0.249972,0,0);-ms-transform:matrix(0.169286,-0.002539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169286,-0.002539,0.003750,0.249972,0,0);}
.m2d_c00388{transform:matrix(0.169391,-0.002541,0.003750,0.249972,0,0);-ms-transform:matrix(0.169391,-0.002541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169391,-0.002541,0.003750,0.249972,0,0);}
.mdb_c00388{transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);}
.mfe_c00388{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.md1_c00388{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m99_c00388{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.me4_c00388{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.171636,-0.002575,0.003750,0.249972,0,0);-ms-transform:matrix(0.171636,-0.002575,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171636,-0.002575,0.003750,0.249972,0,0);}
.m2_c00388{transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);-ms-transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171726,-0.002576,0.003750,0.249972,0,0);}
.ma7_c00388{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m51_c00388{transform:matrix(0.172351,-0.002585,0.003750,0.249972,0,0);-ms-transform:matrix(0.172351,-0.002585,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172351,-0.002585,0.003750,0.249972,0,0);}
.mcb_c00388{transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.172981,-0.002595,0.003750,0.249972,0,0);-ms-transform:matrix(0.172981,-0.002595,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172981,-0.002595,0.003750,0.249972,0,0);}
.meb_c00388{transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00388{transform:matrix(0.173540,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173540,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173540,-0.002603,0.003750,0.249972,0,0);}
.m29_c00388{transform:matrix(0.174700,-0.002621,0.003750,0.249972,0,0);-ms-transform:matrix(0.174700,-0.002621,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174700,-0.002621,0.003750,0.249972,0,0);}
.m82_c00388{transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);-ms-transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175085,-0.002626,0.003750,0.249972,0,0);}
.m98_c00388{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m56_c00388{transform:matrix(0.175260,-0.002629,0.003750,0.249972,0,0);-ms-transform:matrix(0.175260,-0.002629,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175260,-0.002629,0.003750,0.249972,0,0);}
.m35_c00388{transform:matrix(0.175320,-0.002630,0.003750,0.249972,0,0);-ms-transform:matrix(0.175320,-0.002630,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175320,-0.002630,0.003750,0.249972,0,0);}
.mf8_c00388{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.m31_c00388{transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);-ms-transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);}
.m73_c00388{transform:matrix(0.175530,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175530,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175530,-0.002633,0.003750,0.249972,0,0);}
.m10_c00388{transform:matrix(0.175605,-0.002634,0.003750,0.249972,0,0);-ms-transform:matrix(0.175605,-0.002634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175605,-0.002634,0.003750,0.249972,0,0);}
.m40_c00388{transform:matrix(0.175920,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175920,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175920,-0.002639,0.003750,0.249972,0,0);}
.m37_c00388{transform:matrix(0.176050,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176050,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176050,-0.002641,0.003750,0.249972,0,0);}
.m68_c00388{transform:matrix(0.176225,-0.002643,0.003750,0.249972,0,0);-ms-transform:matrix(0.176225,-0.002643,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176225,-0.002643,0.003750,0.249972,0,0);}
.m83_c00388{transform:matrix(0.176775,-0.002652,0.003750,0.249972,0,0);-ms-transform:matrix(0.176775,-0.002652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176775,-0.002652,0.003750,0.249972,0,0);}
.mf9_c00388{transform:matrix(0.176855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176855,0.000000,0.000000,0.250000,0,0);}
.mcc_c00388{transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);}
.m18_c00388{transform:matrix(0.177765,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177765,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177765,-0.002666,0.003750,0.249972,0,0);}
.m64_c00388{transform:matrix(0.178250,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178250,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178250,-0.002674,0.003750,0.249972,0,0);}
.md7_c00388{transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178490,0.000000,0.000000,0.250000,0,0);}
.me8_c00388{transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);}
.md0_c00388{transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178855,0.000000,0.000000,0.250000,0,0);}
.mdc_c00388{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.178900,-0.002683,0.003750,0.249972,0,0);-ms-transform:matrix(0.178900,-0.002683,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178900,-0.002683,0.003750,0.249972,0,0);}
.mb1_c00388{transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);}
.mc5_c00388{transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);}
.m5b_c00388{transform:matrix(0.180130,-0.002702,0.003750,0.249972,0,0);-ms-transform:matrix(0.180130,-0.002702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180130,-0.002702,0.003750,0.249972,0,0);}
.m32_c00388{transform:matrix(0.180145,-0.002702,0.003750,0.249972,0,0);-ms-transform:matrix(0.180145,-0.002702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180145,-0.002702,0.003750,0.249972,0,0);}
.mbd_c00388{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{transform:matrix(0.180365,-0.002705,0.003750,0.249972,0,0);-ms-transform:matrix(0.180365,-0.002705,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180365,-0.002705,0.003750,0.249972,0,0);}
.me6_c00388{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00388{transform:matrix(0.180680,-0.002710,0.003750,0.249972,0,0);-ms-transform:matrix(0.180680,-0.002710,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180680,-0.002710,0.003750,0.249972,0,0);}
.m9a_c00388{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.181400,-0.002721,0.003750,0.249972,0,0);-ms-transform:matrix(0.181400,-0.002721,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181400,-0.002721,0.003750,0.249972,0,0);}
.m22_c00388{transform:matrix(0.181910,-0.002729,0.003750,0.249972,0,0);-ms-transform:matrix(0.181910,-0.002729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181910,-0.002729,0.003750,0.249972,0,0);}
.m86_c00388{transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182394,-0.002736,0.003750,0.249972,0,0);}
.mec_c00388{transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182490,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.182629,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182629,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182629,-0.002739,0.003750,0.249972,0,0);}
.mbe_c00388{transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.182879,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182879,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182879,-0.002743,0.003750,0.249972,0,0);}
.m6c_c00388{transform:matrix(0.183219,-0.002748,0.003750,0.249972,0,0);-ms-transform:matrix(0.183219,-0.002748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183219,-0.002748,0.003750,0.249972,0,0);}
.mc4_c00388{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.md8_c00388{transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);}
.mc2_c00388{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m93_c00388{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.mc0_c00388{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m8b_c00388{transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183979,-0.002760,0.003750,0.249972,0,0);}
.m2b_c00388{transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184189,-0.002763,0.003750,0.249972,0,0);}
.m76_c00388{transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);-ms-transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184614,-0.002769,0.003750,0.249972,0,0);}
.m59_c00388{transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);-ms-transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184854,-0.002773,0.003750,0.249972,0,0);}
.m20_c00388{transform:matrix(0.184974,-0.002775,0.003750,0.249972,0,0);-ms-transform:matrix(0.184974,-0.002775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184974,-0.002775,0.003750,0.249972,0,0);}
.m92_c00388{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.mb5_c00388{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m6f_c00388{transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185254,-0.002779,0.003750,0.249972,0,0);}
.m24_c00388{transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186844,-0.002803,0.003750,0.249972,0,0);}
.m74_c00388{transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);}
.m27_c00388{transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187114,-0.002807,0.003750,0.249972,0,0);}
.m4c_c00388{transform:matrix(0.187194,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187194,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187194,-0.002808,0.003750,0.249972,0,0);}
.mb2_c00388{transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);}
.me5_c00388{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.187704,-0.002816,0.003750,0.249972,0,0);-ms-transform:matrix(0.187704,-0.002816,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187704,-0.002816,0.003750,0.249972,0,0);}
.m61_c00388{transform:matrix(0.187769,-0.002817,0.003750,0.249972,0,0);-ms-transform:matrix(0.187769,-0.002817,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187769,-0.002817,0.003750,0.249972,0,0);}
.m2f_c00388{transform:matrix(0.187779,-0.002817,0.003750,0.249972,0,0);-ms-transform:matrix(0.187779,-0.002817,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187779,-0.002817,0.003750,0.249972,0,0);}
.m54_c00388{transform:matrix(0.188304,-0.002825,0.003750,0.249972,0,0);-ms-transform:matrix(0.188304,-0.002825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188304,-0.002825,0.003750,0.249972,0,0);}
.m63_c00388{transform:matrix(0.188844,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188844,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188844,-0.002833,0.003750,0.249972,0,0);}
.m19_c00388{transform:matrix(0.189294,-0.002839,0.003750,0.249972,0,0);-ms-transform:matrix(0.189294,-0.002839,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189294,-0.002839,0.003750,0.249972,0,0);}
.m66_c00388{transform:matrix(0.189719,-0.002846,0.003750,0.249972,0,0);-ms-transform:matrix(0.189719,-0.002846,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189719,-0.002846,0.003750,0.249972,0,0);}
.m84_c00388{transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);-ms-transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);}
.ma4_c00388{transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189840,0.000000,0.000000,0.250000,0,0);}
.m94_c00388{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.190694,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190694,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190694,-0.002860,0.003750,0.249972,0,0);}
.m77_c00388{transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);-ms-transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190709,-0.002861,0.003750,0.249972,0,0);}
.m8d_c00388{transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);}
.m5f_c00388{transform:matrix(0.191109,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191109,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191109,-0.002867,0.003750,0.249972,0,0);}
.m12_c00388{transform:matrix(0.191114,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191114,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191114,-0.002867,0.003750,0.249972,0,0);}
.mfb_c00388{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m67_c00388{transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);}
.m5a_c00388{transform:matrix(0.192303,-0.002885,0.003750,0.249972,0,0);-ms-transform:matrix(0.192303,-0.002885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192303,-0.002885,0.003750,0.249972,0,0);}
.m13_c00388{transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);-ms-transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192313,-0.002885,0.003750,0.249972,0,0);}
.m1b_c00388{transform:matrix(0.192468,-0.002887,0.003750,0.249972,0,0);-ms-transform:matrix(0.192468,-0.002887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192468,-0.002887,0.003750,0.249972,0,0);}
.m34_c00388{transform:matrix(0.192778,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192778,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192778,-0.002892,0.003750,0.249972,0,0);}
.ma_c00388{transform:matrix(0.192863,-0.002893,0.003750,0.249972,0,0);-ms-transform:matrix(0.192863,-0.002893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192863,-0.002893,0.003750,0.249972,0,0);}
.mfd_c00388{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m65_c00388{transform:matrix(0.193948,-0.002909,0.003750,0.249972,0,0);-ms-transform:matrix(0.193948,-0.002909,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193948,-0.002909,0.003750,0.249972,0,0);}
.ma0_c00388{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m50_c00388{transform:matrix(0.194053,-0.002911,0.003750,0.249972,0,0);-ms-transform:matrix(0.194053,-0.002911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194053,-0.002911,0.003750,0.249972,0,0);}
.mb8_c00388{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{transform:matrix(0.194548,-0.002918,0.003750,0.249972,0,0);-ms-transform:matrix(0.194548,-0.002918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194548,-0.002918,0.003750,0.249972,0,0);}
.mdf_c00388{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.mc6_c00388{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m58_c00388{transform:matrix(0.194833,-0.002922,0.003750,0.249972,0,0);-ms-transform:matrix(0.194833,-0.002922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194833,-0.002922,0.003750,0.249972,0,0);}
.mbf_c00388{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.me7_c00388{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.md6_c00388{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.mfa_c00388{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m96_c00388{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m70_c00388{transform:matrix(0.196503,-0.002948,0.003750,0.249972,0,0);-ms-transform:matrix(0.196503,-0.002948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196503,-0.002948,0.003750,0.249972,0,0);}
.m46_c00388{transform:matrix(0.196843,-0.002953,0.003750,0.249972,0,0);-ms-transform:matrix(0.196843,-0.002953,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196843,-0.002953,0.003750,0.249972,0,0);}
.me2_c00388{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00388{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00388{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.mae_c00388{transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.197698,-0.002965,0.003750,0.249972,0,0);-ms-transform:matrix(0.197698,-0.002965,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197698,-0.002965,0.003750,0.249972,0,0);}
.md4_c00388{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m9e_c00388{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.198508,-0.002978,0.003750,0.249972,0,0);-ms-transform:matrix(0.198508,-0.002978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198508,-0.002978,0.003750,0.249972,0,0);}
.mbc_c00388{transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);}
.m30_c00388{transform:matrix(0.198863,-0.002983,0.003750,0.249972,0,0);-ms-transform:matrix(0.198863,-0.002983,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198863,-0.002983,0.003750,0.249972,0,0);}
.m5e_c00388{transform:matrix(0.199028,-0.002985,0.003750,0.249972,0,0);-ms-transform:matrix(0.199028,-0.002985,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199028,-0.002985,0.003750,0.249972,0,0);}
.m5d_c00388{transform:matrix(0.199353,-0.002990,0.003750,0.249972,0,0);-ms-transform:matrix(0.199353,-0.002990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199353,-0.002990,0.003750,0.249972,0,0);}
.m5c_c00388{transform:matrix(0.199668,-0.002995,0.003750,0.249972,0,0);-ms-transform:matrix(0.199668,-0.002995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199668,-0.002995,0.003750,0.249972,0,0);}
.m1c_c00388{transform:matrix(0.199933,-0.002999,0.003750,0.249972,0,0);-ms-transform:matrix(0.199933,-0.002999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199933,-0.002999,0.003750,0.249972,0,0);}
.m33_c00388{transform:matrix(0.199953,-0.002999,0.003750,0.249972,0,0);-ms-transform:matrix(0.199953,-0.002999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199953,-0.002999,0.003750,0.249972,0,0);}
.me0_c00388{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.m80_c00388{transform:matrix(0.200302,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200302,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200302,-0.003005,0.003750,0.249972,0,0);}
.maf_c00388{transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);}
.me1_c00388{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.md3_c00388{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{transform:matrix(0.201952,-0.003029,0.003750,0.249972,0,0);-ms-transform:matrix(0.201952,-0.003029,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201952,-0.003029,0.003750,0.249972,0,0);}
.mc8_c00388{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.m85_c00388{transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202972,-0.003045,0.003750,0.249972,0,0);}
.mbb_c00388{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m6d_c00388{transform:matrix(0.204372,-0.003066,0.003750,0.249972,0,0);-ms-transform:matrix(0.204372,-0.003066,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204372,-0.003066,0.003750,0.249972,0,0);}
.me_c00388{transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);}
.m44_c00388{transform:matrix(0.205237,-0.003079,0.003750,0.249972,0,0);-ms-transform:matrix(0.205237,-0.003079,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205237,-0.003079,0.003750,0.249972,0,0);}
.m55_c00388{transform:matrix(0.205527,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205527,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205527,-0.003083,0.003750,0.249972,0,0);}
.mef_c00388{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.mb6_c00388{transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);}
.ma3_c00388{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);-ms-transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);}
.mb4_c00388{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00388{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m91_c00388{transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);}
.m7b_c00388{transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);-ms-transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208777,-0.003132,0.003750,0.249972,0,0);}
.m41_c00388{transform:matrix(0.209201,-0.003138,0.003750,0.249972,0,0);-ms-transform:matrix(0.209201,-0.003138,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209201,-0.003138,0.003750,0.249972,0,0);}
.m25_c00388{transform:matrix(0.209801,-0.003147,0.003750,0.249972,0,0);-ms-transform:matrix(0.209801,-0.003147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209801,-0.003147,0.003750,0.249972,0,0);}
.m75_c00388{transform:matrix(0.209826,-0.003147,0.003750,0.249972,0,0);-ms-transform:matrix(0.209826,-0.003147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209826,-0.003147,0.003750,0.249972,0,0);}
.m39_c00388{transform:matrix(0.210206,-0.003153,0.003750,0.249972,0,0);-ms-transform:matrix(0.210206,-0.003153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210206,-0.003153,0.003750,0.249972,0,0);}
.me3_c00388{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.med_c00388{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.210826,-0.003162,0.003750,0.249972,0,0);-ms-transform:matrix(0.210826,-0.003162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210826,-0.003162,0.003750,0.249972,0,0);}
.m87_c00388{transform:matrix(0.211126,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211126,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211126,-0.003167,0.003750,0.249972,0,0);}
.m78_c00388{transform:matrix(0.212641,-0.003190,0.003750,0.249972,0,0);-ms-transform:matrix(0.212641,-0.003190,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212641,-0.003190,0.003750,0.249972,0,0);}
.m95_c00388{transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);}
.m9b_c00388{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.mdd_c00388{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00388{transform:matrix(0.212931,-0.003194,0.003750,0.249972,0,0);-ms-transform:matrix(0.212931,-0.003194,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212931,-0.003194,0.003750,0.249972,0,0);}
.m53_c00388{transform:matrix(0.213981,-0.003210,0.003750,0.249972,0,0);-ms-transform:matrix(0.213981,-0.003210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213981,-0.003210,0.003750,0.249972,0,0);}
.ma2_c00388{transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214945,0.000000,0.000000,0.250000,0,0);}
.m8a_c00388{transform:matrix(0.215376,-0.003231,0.003750,0.249972,0,0);-ms-transform:matrix(0.215376,-0.003231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215376,-0.003231,0.003750,0.249972,0,0);}
.m3_c00388{transform:matrix(0.215586,-0.003234,0.003750,0.249972,0,0);-ms-transform:matrix(0.215586,-0.003234,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215586,-0.003234,0.003750,0.249972,0,0);}
.m42_c00388{transform:matrix(0.215616,-0.003234,0.003750,0.249972,0,0);-ms-transform:matrix(0.215616,-0.003234,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215616,-0.003234,0.003750,0.249972,0,0);}
.mf5_c00388{transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216970,0.000000,0.000000,0.250000,0,0);}
.m81_c00388{transform:matrix(0.218300,-0.003275,0.003750,0.249972,0,0);-ms-transform:matrix(0.218300,-0.003275,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218300,-0.003275,0.003750,0.249972,0,0);}
.m4e_c00388{transform:matrix(0.218460,-0.003277,0.003750,0.249972,0,0);-ms-transform:matrix(0.218460,-0.003277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218460,-0.003277,0.003750,0.249972,0,0);}
.mea_c00388{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m7f_c00388{transform:matrix(0.221055,-0.003316,0.003750,0.249972,0,0);-ms-transform:matrix(0.221055,-0.003316,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221055,-0.003316,0.003750,0.249972,0,0);}
.m7a_c00388{transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);}
.m3c_c00388{transform:matrix(0.223330,-0.003350,0.003750,0.249972,0,0);-ms-transform:matrix(0.223330,-0.003350,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223330,-0.003350,0.003750,0.249972,0,0);}
.mc1_c00388{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m97_c00388{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.223770,-0.003357,0.003750,0.249972,0,0);-ms-transform:matrix(0.223770,-0.003357,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223770,-0.003357,0.003750,0.249972,0,0);}
.mb7_c00388{transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);}
.mb0_c00388{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00388{transform:matrix(0.229299,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229299,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229299,-0.003439,0.003750,0.249972,0,0);}
.maa_c00388{transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);}
.mde_c00388{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00388{transform:matrix(0.232369,-0.003486,0.003750,0.249972,0,0);-ms-transform:matrix(0.232369,-0.003486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232369,-0.003486,0.003750,0.249972,0,0);}
.m3f_c00388{transform:matrix(0.234429,-0.003516,0.003750,0.249972,0,0);-ms-transform:matrix(0.234429,-0.003516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234429,-0.003516,0.003750,0.249972,0,0);}
.m79_c00388{transform:matrix(0.235728,-0.003536,0.003750,0.249972,0,0);-ms-transform:matrix(0.235728,-0.003536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235728,-0.003536,0.003750,0.249972,0,0);}
.m7d_c00388{transform:matrix(0.236548,-0.003548,0.003750,0.249972,0,0);-ms-transform:matrix(0.236548,-0.003548,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236548,-0.003548,0.003750,0.249972,0,0);}
.m72_c00388{transform:matrix(0.236583,-0.003549,0.003750,0.249972,0,0);-ms-transform:matrix(0.236583,-0.003549,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236583,-0.003549,0.003750,0.249972,0,0);}
.m1f_c00388{transform:matrix(0.237158,-0.003557,0.003750,0.249972,0,0);-ms-transform:matrix(0.237158,-0.003557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237158,-0.003557,0.003750,0.249972,0,0);}
.md2_c00388{transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00388{transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);}
.mf7_c00388{transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243345,0.000000,0.000000,0.250000,0,0);}
.m89_c00388{transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);-ms-transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);}
.m88_c00388{transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);-ms-transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);}
.m6a_c00388{transform:matrix(0.247212,-0.003708,0.003750,0.249972,0,0);-ms-transform:matrix(0.247212,-0.003708,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247212,-0.003708,0.003750,0.249972,0,0);}
.m4a_c00388{transform:matrix(0.252227,-0.003783,0.003750,0.249972,0,0);-ms-transform:matrix(0.252227,-0.003783,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252227,-0.003783,0.003750,0.249972,0,0);}
.m69_c00388{transform:matrix(0.258781,-0.003882,0.003750,0.249972,0,0);-ms-transform:matrix(0.258781,-0.003882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258781,-0.003882,0.003750,0.249972,0,0);}
.m8c_c00388{transform:matrix(0.262850,-0.003943,0.003750,0.249972,0,0);-ms-transform:matrix(0.262850,-0.003943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262850,-0.003943,0.003750,0.249972,0,0);}
.m9f_c00388{transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);}
.mba_c00388{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.md9_c00388{transform:matrix(0.297145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297145,0.000000,0.000000,0.250000,0,0);}
.m71_c00388{transform:matrix(0.332983,-0.004995,0.003750,0.249972,0,0);-ms-transform:matrix(0.332983,-0.004995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.332983,-0.004995,0.003750,0.249972,0,0);}
.mf2_c00388{transform:matrix(0.423975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423975,0.000000,0.000000,0.250000,0,0);}
.ma5_c00388{transform:matrix(0.435775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435775,0.000000,0.000000,0.250000,0,0);}
.ma6_c00388{transform:matrix(0.436830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436830,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:0.000000px;}
.fc0_c00388{color:transparent;}
.fs12_c00388{font-size:22.050000px;}
.fs10_c00388{font-size:34.650000px;}
.fs9_c00388{font-size:57.756497px;}
.fs11_c00388{font-size:58.800000px;}
.fs5_c00388{font-size:59.856733px;}
.fse_c00388{font-size:60.900000px;}
.fs8_c00388{font-size:60.906851px;}
.fsb_c00388{font-size:63.000000px;}
.fs7_c00388{font-size:63.007087px;}
.fsf_c00388{font-size:64.050000px;}
.fs4_c00388{font-size:65.107323px;}
.fsc_c00388{font-size:66.150000px;}
.fs2_c00388{font-size:66.157441px;}
.fsd_c00388{font-size:67.200000px;}
.fs3_c00388{font-size:67.207560px;}
.fs6_c00388{font-size:68.257678px;}
.fsa_c00388{font-size:69.300000px;}
.fs1_c00388{font-size:69.307796px;}
.fs0_c00388{font-size:89.250000px;}
.y0_c00388{bottom:0.000000px;}
.y9d_c00388{bottom:14.850000px;}
.y9a_c00388{bottom:14.854500px;}
.y9b_c00388{bottom:15.481500px;}
.y9c_c00388{bottom:18.115500px;}
.y99_c00388{bottom:35.592000px;}
.y98_c00388{bottom:44.800500px;}
.y97_c00388{bottom:51.840000px;}
.y96_c00388{bottom:69.013500px;}
.y95_c00388{bottom:85.797000px;}
.y94_c00388{bottom:103.735500px;}
.y93_c00388{bottom:119.611500px;}
.y92_c00388{bottom:137.578500px;}
.y91_c00388{bottom:153.537000px;}
.y90_c00388{bottom:169.291500px;}
.y8f_c00388{bottom:187.651500px;}
.y8e_c00388{bottom:203.824500px;}
.y8d_c00388{bottom:221.146500px;}
.y8c_c00388{bottom:238.171500px;}
.y9e_c00388{bottom:241.110000px;}
.y8b_c00388{bottom:255.288232px;}
.y8a_c00388{bottom:255.288855px;}
.y88_c00388{bottom:255.288975px;}
.y89_c00388{bottom:255.289290px;}
.y87_c00388{bottom:255.289597px;}
.y86_c00388{bottom:255.290160px;}
.y83_c00388{bottom:272.909483px;}
.y7e_c00388{bottom:272.909580px;}
.y80_c00388{bottom:272.909595px;}
.y82_c00388{bottom:272.909955px;}
.y81_c00388{bottom:272.910023px;}
.y7d_c00388{bottom:272.910120px;}
.y84_c00388{bottom:272.910143px;}
.y7f_c00388{bottom:272.910263px;}
.y85_c00388{bottom:272.910398px;}
.y77_c00388{bottom:289.725000px;}
.y7c_c00388{bottom:289.725300px;}
.y7a_c00388{bottom:289.725458px;}
.y78_c00388{bottom:289.725638px;}
.y7b_c00388{bottom:289.725712px;}
.y79_c00388{bottom:289.725998px;}
.y76_c00388{bottom:307.257615px;}
.y6f_c00388{bottom:307.257638px;}
.y73_c00388{bottom:307.257690px;}
.y70_c00388{bottom:307.257975px;}
.y72_c00388{bottom:307.258080px;}
.y71_c00388{bottom:307.258103px;}
.y75_c00388{bottom:307.258155px;}
.y74_c00388{bottom:307.258395px;}
.y6c_c00388{bottom:324.539048px;}
.y6d_c00388{bottom:324.539303px;}
.y6e_c00388{bottom:324.539708px;}
.y68_c00388{bottom:324.539723px;}
.y6b_c00388{bottom:324.539738px;}
.y67_c00388{bottom:324.540008px;}
.y6a_c00388{bottom:324.540060px;}
.y69_c00388{bottom:324.540083px;}
.y66_c00388{bottom:341.119170px;}
.y65_c00388{bottom:341.119538px;}
.y63_c00388{bottom:341.119628px;}
.y62_c00388{bottom:341.119718px;}
.y5e_c00388{bottom:341.119815px;}
.y5f_c00388{bottom:341.120003px;}
.y64_c00388{bottom:341.120033px;}
.y60_c00388{bottom:341.120130px;}
.y61_c00388{bottom:341.120190px;}
.y59_c00388{bottom:353.949053px;}
.y5a_c00388{bottom:354.994905px;}
.y5b_c00388{bottom:356.259863px;}
.y5c_c00388{bottom:356.481308px;}
.y5d_c00388{bottom:357.769568px;}
.y52_c00388{bottom:372.041333px;}
.y53_c00388{bottom:372.248348px;}
.y54_c00388{bottom:372.982928px;}
.y55_c00388{bottom:373.941435px;}
.y56_c00388{bottom:374.190510px;}
.y57_c00388{bottom:374.394390px;}
.y58_c00388{bottom:375.317550px;}
.y4b_c00388{bottom:390.111045px;}
.y4d_c00388{bottom:390.111083px;}
.y51_c00388{bottom:390.111435px;}
.y4e_c00388{bottom:390.111443px;}
.y4a_c00388{bottom:390.111540px;}
.y50_c00388{bottom:390.111548px;}
.y4c_c00388{bottom:390.111600px;}
.y4f_c00388{bottom:390.111720px;}
.y43_c00388{bottom:408.713453px;}
.y44_c00388{bottom:408.714007px;}
.y47_c00388{bottom:408.714165px;}
.y45_c00388{bottom:408.714412px;}
.y49_c00388{bottom:408.714480px;}
.y48_c00388{bottom:408.714525px;}
.y46_c00388{bottom:408.714668px;}
.y42_c00388{bottom:424.086795px;}
.y41_c00388{bottom:424.087357px;}
.y40_c00388{bottom:424.087852px;}
.y3c_c00388{bottom:424.087950px;}
.y3b_c00388{bottom:424.088017px;}
.y3d_c00388{bottom:424.088205px;}
.y3e_c00388{bottom:424.088415px;}
.y3f_c00388{bottom:424.088475px;}
.y3a_c00388{bottom:441.097170px;}
.y36_c00388{bottom:441.097440px;}
.y34_c00388{bottom:441.097770px;}
.y39_c00388{bottom:441.097860px;}
.y37_c00388{bottom:441.097950px;}
.y35_c00388{bottom:441.097957px;}
.y38_c00388{bottom:441.098032px;}
.y33_c00388{bottom:457.718355px;}
.y32_c00388{bottom:457.718445px;}
.y30_c00388{bottom:457.718880px;}
.y2c_c00388{bottom:457.718955px;}
.y31_c00388{bottom:457.719090px;}
.y2f_c00388{bottom:457.719547px;}
.y2d_c00388{bottom:457.719615px;}
.y2e_c00388{bottom:457.719870px;}
.y2a_c00388{bottom:474.069690px;}
.y27_c00388{bottom:474.070020px;}
.y28_c00388{bottom:474.070125px;}
.y2b_c00388{bottom:474.070267px;}
.y29_c00388{bottom:474.070402px;}
.y25_c00388{bottom:474.070522px;}
.y26_c00388{bottom:474.070777px;}
.y23_c00388{bottom:491.782822px;}
.y22_c00388{bottom:491.783107px;}
.y24_c00388{bottom:491.783250px;}
.y21_c00388{bottom:491.783430px;}
.y20_c00388{bottom:491.783460px;}
.y1f_c00388{bottom:491.783505px;}
.y18_c00388{bottom:509.074898px;}
.y19_c00388{bottom:509.075130px;}
.y1d_c00388{bottom:509.075265px;}
.y1b_c00388{bottom:509.075400px;}
.y1e_c00388{bottom:509.075542px;}
.y1c_c00388{bottom:509.075805px;}
.y1a_c00388{bottom:509.075812px;}
.y10_c00388{bottom:524.338260px;}
.y11_c00388{bottom:525.153907px;}
.y12_c00388{bottom:525.707558px;}
.y13_c00388{bottom:526.058212px;}
.y14_c00388{bottom:526.753958px;}
.y15_c00388{bottom:527.066842px;}
.y16_c00388{bottom:527.671005px;}
.y17_c00388{bottom:527.846430px;}
.ye_c00388{bottom:544.178063px;}
.ya_c00388{bottom:544.178437px;}
.yd_c00388{bottom:544.178452px;}
.yf_c00388{bottom:544.178490px;}
.yb_c00388{bottom:544.178842px;}
.yc_c00388{bottom:544.178947px;}
.y9_c00388{bottom:544.179173px;}
.y2_c00388{bottom:558.091500px;}
.y3_c00388{bottom:558.861652px;}
.y4_c00388{bottom:559.456643px;}
.y5_c00388{bottom:560.157810px;}
.y6_c00388{bottom:560.744992px;}
.y7_c00388{bottom:561.360885px;}
.y8_c00388{bottom:562.259760px;}
.y1_c00388{bottom:577.516500px;}
.h14_c00388{height:22.050000px;}
.h12_c00388{height:34.650000px;}
.hb_c00388{height:57.756497px;}
.h13_c00388{height:58.800000px;}
.h7_c00388{height:59.856733px;}
.h10_c00388{height:60.900000px;}
.ha_c00388{height:60.906851px;}
.hd_c00388{height:63.000000px;}
.h9_c00388{height:63.007087px;}
.h11_c00388{height:64.050000px;}
.h6_c00388{height:65.107323px;}
.he_c00388{height:66.150000px;}
.h4_c00388{height:66.157441px;}
.hf_c00388{height:67.200000px;}
.h5_c00388{height:67.207560px;}
.h8_c00388{height:68.257678px;}
.hc_c00388{height:69.300000px;}
.h3_c00388{height:69.307796px;}
.h2_c00388{height:89.250000px;}
.h0_c00388{height:613.170000px;}
.h1_c00388{height:613.500000px;}
.w0_c00388{width:359.100000px;}
.w1_c00388{width:359.250000px;}
.x0_c00388{left:0.000000px;}
.x3_c00388{left:16.350000px;}
.x22_c00388{left:17.552520px;}
.x36_c00388{left:18.905708px;}
.x6b_c00388{left:19.980000px;}
.x4c_c00388{left:21.875835px;}
.x31_c00388{left:22.955152px;}
.x66_c00388{left:24.300000px;}
.x5e_c00388{left:28.350000px;}
.x55_c00388{left:30.510000px;}
.x3d_c00388{left:34.997715px;}
.x59_c00388{left:39.690000px;}
.x37_c00388{left:40.777635px;}
.x6c_c00388{left:42.120000px;}
.x1b_c00388{left:44.014620px;}
.x1e_c00388{left:48.335722px;}
.x56_c00388{left:50.490000px;}
.x2d_c00388{left:55.898497px;}
.x5b_c00388{left:58.860000px;}
.x5f_c00388{left:60.210000px;}
.x16_c00388{left:61.837312px;}
.x64_c00388{left:66.690000px;}
.x4_c00388{left:67.693500px;}
.x23_c00388{left:70.208355px;}
.x7c_c00388{left:72.030000px;}
.xf_c00388{left:74.917627px;}
.x32_c00388{left:77.231347px;}
.x4a_c00388{left:79.390837px;}
.x67_c00388{left:81.000000px;}
.x76_c00388{left:82.350000px;}
.x2e_c00388{left:84.521932px;}
.x65_c00388{left:85.860000px;}
.x29_c00388{left:86.950890px;}
.x4d_c00388{left:88.033208px;}
.x52_c00388{left:89.113875px;}
.xa_c00388{left:91.538062px;}
.x71_c00388{left:93.150000px;}
.x45_c00388{left:95.051693px;}
.x3e_c00388{left:96.272483px;}
.x4b_c00388{left:99.103770px;}
.x17_c00388{left:100.991610px;}
.x53_c00388{left:104.775907px;}
.x5_c00388{left:107.359500px;}
.x24_c00388{left:110.712967px;}
.x38_c00388{left:111.796110px;}
.x10_c00388{left:114.428212px;}
.xb_c00388{left:118.271070px;}
.x60_c00388{left:121.230000px;}
.x2a_c00388{left:125.024962px;}
.x6d_c00388{left:127.170000px;}
.x1_c00388{left:128.250000px;}
.x77_c00388{left:130.410000px;}
.x1f_c00388{left:136.905157px;}
.x11_c00388{left:139.505595px;}
.xc_c00388{left:143.383717px;}
.x1c_c00388{left:147.435885px;}
.x7a_c00388{left:152.550000px;}
.x6_c00388{left:154.104000px;}
.x25_c00388{left:156.078682px;}
.x42_c00388{left:159.050445px;}
.x4f_c00388{left:160.132110px;}
.x40_c00388{left:162.667208px;}
.x18_c00388{left:164.178330px;}
.x61_c00388{left:165.240000px;}
.x39_c00388{left:168.232800px;}
.x46_c00388{left:173.091743px;}
.xd_c00388{left:176.058075px;}
.x69_c00388{left:178.470000px;}
.x20_c00388{left:179.840310px;}
.x2b_c00388{left:184.972440px;}
.x6e_c00388{left:186.300000px;}
.x12_c00388{left:189.189337px;}
.x7d_c00388{left:191.700000px;}
.x7_c00388{left:193.249500px;}
.x75_c00388{left:194.400000px;}
.x3a_c00388{left:196.046055px;}
.x2f_c00388{left:197.665380px;}
.x5c_c00388{left:198.990000px;}
.x26_c00388{left:203.603370px;}
.x72_c00388{left:208.170000px;}
.x43_c00388{left:210.355988px;}
.x13_c00388{left:211.548675px;}
.x6f_c00388{left:212.760000px;}
.x3f_c00388{left:213.975293px;}
.x4e_c00388{left:216.567120px;}
.x7b_c00388{left:219.510000px;}
.x54_c00388{left:221.670000px;}
.x33_c00388{left:223.047653px;}
.x57_c00388{left:225.720000px;}
.x27_c00388{left:227.365725px;}
.x2c_c00388{left:228.987840px;}
.x62_c00388{left:230.040000px;}
.x44_c00388{left:231.687780px;}
.x50_c00388{left:233.041013px;}
.x8_c00388{left:234.309000px;}
.x78_c00388{left:239.760000px;}
.x5a_c00388{left:241.110000px;}
.x1d_c00388{left:242.216715px;}
.x47_c00388{left:243.840172px;}
.x19_c00388{left:245.187555px;}
.xe_c00388{left:247.076550px;}
.x21_c00388{left:249.508492px;}
.x70_c00388{left:251.370000px;}
.x14_c00388{left:254.726827px;}
.x41_c00388{left:257.012790px;}
.x3b_c00388{left:258.152528px;}
.x2_c00388{left:259.200000px;}
.x1a_c00388{left:260.309452px;}
.x5d_c00388{left:265.950000px;}
.x15_c00388{left:267.222007px;}
.x73_c00388{left:268.920000px;}
.x48_c00388{left:272.463607px;}
.x79_c00388{left:279.450000px;}
.x34_c00388{left:282.184950px;}
.x28_c00388{left:284.072482px;}
.x6a_c00388{left:285.390000px;}
.x3c_c00388{left:291.366998px;}
.x63_c00388{left:292.950000px;}
.x9_c00388{left:294.234000px;}
.x74_c00388{left:296.460000px;}
.x49_c00388{left:299.196615px;}
.x30_c00388{left:300.276488px;}
.x58_c00388{left:302.400000px;}
.x51_c00388{left:303.517853px;}
.x35_c00388{left:306.487417px;}
.x68_c00388{left:309.420000px;}
.x7e_c00388{left:322.110000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fs12_c00388{font-size:19.600000pt;}
.fs10_c00388{font-size:30.800000pt;}
.fs9_c00388{font-size:51.339108pt;}
.fs11_c00388{font-size:52.266667pt;}
.fs5_c00388{font-size:53.205985pt;}
.fse_c00388{font-size:54.133333pt;}
.fs8_c00388{font-size:54.139423pt;}
.fsb_c00388{font-size:56.000000pt;}
.fs7_c00388{font-size:56.006300pt;}
.fsf_c00388{font-size:56.933333pt;}
.fs4_c00388{font-size:57.873176pt;}
.fsc_c00388{font-size:58.800000pt;}
.fs2_c00388{font-size:58.806615pt;}
.fsd_c00388{font-size:59.733333pt;}
.fs3_c00388{font-size:59.740053pt;}
.fs6_c00388{font-size:60.673491pt;}
.fsa_c00388{font-size:61.600000pt;}
.fs1_c00388{font-size:61.606930pt;}
.fs0_c00388{font-size:79.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y9d_c00388{bottom:13.200000pt;}
.y9a_c00388{bottom:13.204000pt;}
.y9b_c00388{bottom:13.761333pt;}
.y9c_c00388{bottom:16.102667pt;}
.y99_c00388{bottom:31.637333pt;}
.y98_c00388{bottom:39.822667pt;}
.y97_c00388{bottom:46.080000pt;}
.y96_c00388{bottom:61.345333pt;}
.y95_c00388{bottom:76.264000pt;}
.y94_c00388{bottom:92.209333pt;}
.y93_c00388{bottom:106.321333pt;}
.y92_c00388{bottom:122.292000pt;}
.y91_c00388{bottom:136.477333pt;}
.y90_c00388{bottom:150.481333pt;}
.y8f_c00388{bottom:166.801333pt;}
.y8e_c00388{bottom:181.177333pt;}
.y8d_c00388{bottom:196.574667pt;}
.y8c_c00388{bottom:211.708000pt;}
.y9e_c00388{bottom:214.320000pt;}
.y8b_c00388{bottom:226.922873pt;}
.y8a_c00388{bottom:226.923427pt;}
.y88_c00388{bottom:226.923533pt;}
.y89_c00388{bottom:226.923813pt;}
.y87_c00388{bottom:226.924087pt;}
.y86_c00388{bottom:226.924587pt;}
.y83_c00388{bottom:242.586207pt;}
.y7e_c00388{bottom:242.586293pt;}
.y80_c00388{bottom:242.586307pt;}
.y82_c00388{bottom:242.586627pt;}
.y81_c00388{bottom:242.586687pt;}
.y7d_c00388{bottom:242.586773pt;}
.y84_c00388{bottom:242.586793pt;}
.y7f_c00388{bottom:242.586900pt;}
.y85_c00388{bottom:242.587020pt;}
.y77_c00388{bottom:257.533333pt;}
.y7c_c00388{bottom:257.533600pt;}
.y7a_c00388{bottom:257.533740pt;}
.y78_c00388{bottom:257.533900pt;}
.y7b_c00388{bottom:257.533967pt;}
.y79_c00388{bottom:257.534220pt;}
.y76_c00388{bottom:273.117880pt;}
.y6f_c00388{bottom:273.117900pt;}
.y73_c00388{bottom:273.117947pt;}
.y70_c00388{bottom:273.118200pt;}
.y72_c00388{bottom:273.118293pt;}
.y71_c00388{bottom:273.118313pt;}
.y75_c00388{bottom:273.118360pt;}
.y74_c00388{bottom:273.118573pt;}
.y6c_c00388{bottom:288.479153pt;}
.y6d_c00388{bottom:288.479380pt;}
.y6e_c00388{bottom:288.479740pt;}
.y68_c00388{bottom:288.479753pt;}
.y6b_c00388{bottom:288.479767pt;}
.y67_c00388{bottom:288.480007pt;}
.y6a_c00388{bottom:288.480053pt;}
.y69_c00388{bottom:288.480073pt;}
.y66_c00388{bottom:303.217040pt;}
.y65_c00388{bottom:303.217367pt;}
.y63_c00388{bottom:303.217447pt;}
.y62_c00388{bottom:303.217527pt;}
.y5e_c00388{bottom:303.217613pt;}
.y5f_c00388{bottom:303.217780pt;}
.y64_c00388{bottom:303.217807pt;}
.y60_c00388{bottom:303.217893pt;}
.y61_c00388{bottom:303.217947pt;}
.y59_c00388{bottom:314.621380pt;}
.y5a_c00388{bottom:315.551027pt;}
.y5b_c00388{bottom:316.675433pt;}
.y5c_c00388{bottom:316.872273pt;}
.y5d_c00388{bottom:318.017393pt;}
.y52_c00388{bottom:330.703407pt;}
.y53_c00388{bottom:330.887420pt;}
.y54_c00388{bottom:331.540380pt;}
.y55_c00388{bottom:332.392387pt;}
.y56_c00388{bottom:332.613787pt;}
.y57_c00388{bottom:332.795013pt;}
.y58_c00388{bottom:333.615600pt;}
.y4b_c00388{bottom:346.765373pt;}
.y4d_c00388{bottom:346.765407pt;}
.y51_c00388{bottom:346.765720pt;}
.y4e_c00388{bottom:346.765727pt;}
.y4a_c00388{bottom:346.765813pt;}
.y50_c00388{bottom:346.765820pt;}
.y4c_c00388{bottom:346.765867pt;}
.y4f_c00388{bottom:346.765973pt;}
.y43_c00388{bottom:363.300847pt;}
.y44_c00388{bottom:363.301340pt;}
.y47_c00388{bottom:363.301480pt;}
.y45_c00388{bottom:363.301700pt;}
.y49_c00388{bottom:363.301760pt;}
.y48_c00388{bottom:363.301800pt;}
.y46_c00388{bottom:363.301927pt;}
.y42_c00388{bottom:376.966040pt;}
.y41_c00388{bottom:376.966540pt;}
.y40_c00388{bottom:376.966980pt;}
.y3c_c00388{bottom:376.967067pt;}
.y3b_c00388{bottom:376.967127pt;}
.y3d_c00388{bottom:376.967293pt;}
.y3e_c00388{bottom:376.967480pt;}
.y3f_c00388{bottom:376.967533pt;}
.y3a_c00388{bottom:392.086373pt;}
.y36_c00388{bottom:392.086613pt;}
.y34_c00388{bottom:392.086907pt;}
.y39_c00388{bottom:392.086987pt;}
.y37_c00388{bottom:392.087067pt;}
.y35_c00388{bottom:392.087073pt;}
.y38_c00388{bottom:392.087140pt;}
.y33_c00388{bottom:406.860760pt;}
.y32_c00388{bottom:406.860840pt;}
.y30_c00388{bottom:406.861227pt;}
.y2c_c00388{bottom:406.861293pt;}
.y31_c00388{bottom:406.861413pt;}
.y2f_c00388{bottom:406.861820pt;}
.y2d_c00388{bottom:406.861880pt;}
.y2e_c00388{bottom:406.862107pt;}
.y2a_c00388{bottom:421.395280pt;}
.y27_c00388{bottom:421.395573pt;}
.y28_c00388{bottom:421.395667pt;}
.y2b_c00388{bottom:421.395793pt;}
.y29_c00388{bottom:421.395913pt;}
.y25_c00388{bottom:421.396020pt;}
.y26_c00388{bottom:421.396247pt;}
.y23_c00388{bottom:437.140287pt;}
.y22_c00388{bottom:437.140540pt;}
.y24_c00388{bottom:437.140667pt;}
.y21_c00388{bottom:437.140827pt;}
.y20_c00388{bottom:437.140853pt;}
.y1f_c00388{bottom:437.140893pt;}
.y18_c00388{bottom:452.511020pt;}
.y19_c00388{bottom:452.511227pt;}
.y1d_c00388{bottom:452.511347pt;}
.y1b_c00388{bottom:452.511467pt;}
.y1e_c00388{bottom:452.511593pt;}
.y1c_c00388{bottom:452.511827pt;}
.y1a_c00388{bottom:452.511833pt;}
.y10_c00388{bottom:466.078453pt;}
.y11_c00388{bottom:466.803473pt;}
.y12_c00388{bottom:467.295607pt;}
.y13_c00388{bottom:467.607300pt;}
.y14_c00388{bottom:468.225740pt;}
.y15_c00388{bottom:468.503860pt;}
.y16_c00388{bottom:469.040893pt;}
.y17_c00388{bottom:469.196827pt;}
.ye_c00388{bottom:483.713833pt;}
.ya_c00388{bottom:483.714167pt;}
.yd_c00388{bottom:483.714180pt;}
.yf_c00388{bottom:483.714213pt;}
.yb_c00388{bottom:483.714527pt;}
.yc_c00388{bottom:483.714620pt;}
.y9_c00388{bottom:483.714820pt;}
.y2_c00388{bottom:496.081333pt;}
.y3_c00388{bottom:496.765913pt;}
.y4_c00388{bottom:497.294793pt;}
.y5_c00388{bottom:497.918053pt;}
.y6_c00388{bottom:498.439993pt;}
.y7_c00388{bottom:498.987453pt;}
.y8_c00388{bottom:499.786453pt;}
.y1_c00388{bottom:513.348000pt;}
.h14_c00388{height:19.600000pt;}
.h12_c00388{height:30.800000pt;}
.hb_c00388{height:51.339108pt;}
.h13_c00388{height:52.266667pt;}
.h7_c00388{height:53.205985pt;}
.h10_c00388{height:54.133333pt;}
.ha_c00388{height:54.139423pt;}
.hd_c00388{height:56.000000pt;}
.h9_c00388{height:56.006300pt;}
.h11_c00388{height:56.933333pt;}
.h6_c00388{height:57.873176pt;}
.he_c00388{height:58.800000pt;}
.h4_c00388{height:58.806615pt;}
.hf_c00388{height:59.733333pt;}
.h5_c00388{height:59.740053pt;}
.h8_c00388{height:60.673491pt;}
.hc_c00388{height:61.600000pt;}
.h3_c00388{height:61.606930pt;}
.h2_c00388{height:79.333333pt;}
.h0_c00388{height:545.040000pt;}
.h1_c00388{height:545.333333pt;}
.w0_c00388{width:319.200000pt;}
.w1_c00388{width:319.333333pt;}
.x0_c00388{left:0.000000pt;}
.x3_c00388{left:14.533333pt;}
.x22_c00388{left:15.602240pt;}
.x36_c00388{left:16.805073pt;}
.x6b_c00388{left:17.760000pt;}
.x4c_c00388{left:19.445187pt;}
.x31_c00388{left:20.404580pt;}
.x66_c00388{left:21.600000pt;}
.x5e_c00388{left:25.200000pt;}
.x55_c00388{left:27.120000pt;}
.x3d_c00388{left:31.109080pt;}
.x59_c00388{left:35.280000pt;}
.x37_c00388{left:36.246787pt;}
.x6c_c00388{left:37.440000pt;}
.x1b_c00388{left:39.124107pt;}
.x1e_c00388{left:42.965087pt;}
.x56_c00388{left:44.880000pt;}
.x2d_c00388{left:49.687553pt;}
.x5b_c00388{left:52.320000pt;}
.x5f_c00388{left:53.520000pt;}
.x16_c00388{left:54.966500pt;}
.x64_c00388{left:59.280000pt;}
.x4_c00388{left:60.172000pt;}
.x23_c00388{left:62.407427pt;}
.x7c_c00388{left:64.026667pt;}
.xf_c00388{left:66.593447pt;}
.x32_c00388{left:68.650087pt;}
.x4a_c00388{left:70.569633pt;}
.x67_c00388{left:72.000000pt;}
.x76_c00388{left:73.200000pt;}
.x2e_c00388{left:75.130607pt;}
.x65_c00388{left:76.320000pt;}
.x29_c00388{left:77.289680pt;}
.x4d_c00388{left:78.251740pt;}
.x52_c00388{left:79.212333pt;}
.xa_c00388{left:81.367167pt;}
.x71_c00388{left:82.800000pt;}
.x45_c00388{left:84.490393pt;}
.x3e_c00388{left:85.575540pt;}
.x4b_c00388{left:88.092240pt;}
.x17_c00388{left:89.770320pt;}
.x53_c00388{left:93.134140pt;}
.x5_c00388{left:95.430667pt;}
.x24_c00388{left:98.411527pt;}
.x38_c00388{left:99.374320pt;}
.x10_c00388{left:101.713967pt;}
.xb_c00388{left:105.129840pt;}
.x60_c00388{left:107.760000pt;}
.x2a_c00388{left:111.133300pt;}
.x6d_c00388{left:113.040000pt;}
.x1_c00388{left:114.000000pt;}
.x77_c00388{left:115.920000pt;}
.x1f_c00388{left:121.693473pt;}
.x11_c00388{left:124.004973pt;}
.xc_c00388{left:127.452193pt;}
.x1c_c00388{left:131.054120pt;}
.x7a_c00388{left:135.600000pt;}
.x6_c00388{left:136.981333pt;}
.x25_c00388{left:138.736607pt;}
.x42_c00388{left:141.378173pt;}
.x4f_c00388{left:142.339653pt;}
.x40_c00388{left:144.593073pt;}
.x18_c00388{left:145.936293pt;}
.x61_c00388{left:146.880000pt;}
.x39_c00388{left:149.540267pt;}
.x46_c00388{left:153.859327pt;}
.xd_c00388{left:156.496067pt;}
.x69_c00388{left:158.640000pt;}
.x20_c00388{left:159.858053pt;}
.x2b_c00388{left:164.419947pt;}
.x6e_c00388{left:165.600000pt;}
.x12_c00388{left:168.168300pt;}
.x7d_c00388{left:170.400000pt;}
.x7_c00388{left:171.777333pt;}
.x75_c00388{left:172.800000pt;}
.x3a_c00388{left:174.263160pt;}
.x2f_c00388{left:175.702560pt;}
.x5c_c00388{left:176.880000pt;}
.x26_c00388{left:180.980773pt;}
.x72_c00388{left:185.040000pt;}
.x43_c00388{left:186.983100pt;}
.x13_c00388{left:188.043267pt;}
.x6f_c00388{left:189.120000pt;}
.x3f_c00388{left:190.200260pt;}
.x4e_c00388{left:192.504107pt;}
.x7b_c00388{left:195.120000pt;}
.x54_c00388{left:197.040000pt;}
.x33_c00388{left:198.264580pt;}
.x57_c00388{left:200.640000pt;}
.x27_c00388{left:202.102867pt;}
.x2c_c00388{left:203.544747pt;}
.x62_c00388{left:204.480000pt;}
.x44_c00388{left:205.944693pt;}
.x50_c00388{left:207.147567pt;}
.x8_c00388{left:208.274667pt;}
.x78_c00388{left:213.120000pt;}
.x5a_c00388{left:214.320000pt;}
.x1d_c00388{left:215.303747pt;}
.x47_c00388{left:216.746820pt;}
.x19_c00388{left:217.944493pt;}
.xe_c00388{left:219.623600pt;}
.x21_c00388{left:221.785327pt;}
.x70_c00388{left:223.440000pt;}
.x14_c00388{left:226.423847pt;}
.x41_c00388{left:228.455813pt;}
.x3b_c00388{left:229.468913pt;}
.x2_c00388{left:230.400000pt;}
.x1a_c00388{left:231.386180pt;}
.x5d_c00388{left:236.400000pt;}
.x15_c00388{left:237.530673pt;}
.x73_c00388{left:239.040000pt;}
.x48_c00388{left:242.189873pt;}
.x79_c00388{left:248.400000pt;}
.x34_c00388{left:250.831067pt;}
.x28_c00388{left:252.508873pt;}
.x6a_c00388{left:253.680000pt;}
.x3c_c00388{left:258.992887pt;}
.x63_c00388{left:260.400000pt;}
.x9_c00388{left:261.541333pt;}
.x74_c00388{left:263.520000pt;}
.x49_c00388{left:265.952547pt;}
.x30_c00388{left:266.912433pt;}
.x58_c00388{left:268.800000pt;}
.x51_c00388{left:269.793647pt;}
.x35_c00388{left:272.433260pt;}
.x68_c00388{left:275.040000pt;}
.x7e_c00388{left:286.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00389 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00389 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00389 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00389 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00389.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00389{transform:matrix(0.023415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023415,0.000000,0.000000,0.250000,0,0);}
.m64_c00389{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.086920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086920,0.000000,0.000000,0.250000,0,0);}
.m75_c00389{transform:matrix(0.118430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118430,0.000000,0.000000,0.250000,0,0);}
.mac_c00389{transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);}
.m9d_c00389{transform:matrix(0.145405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145405,0.000000,0.000000,0.250000,0,0);}
.m78_c00389{transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);}
.m7a_c00389{transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150120,0.000000,0.000000,0.250000,0,0);}
.ma6_c00389{transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150465,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m99_c00389{transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153470,0.000000,0.000000,0.250000,0,0);}
.m85_c00389{transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);}
.m71_c00389{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.mb6_c00389{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.ma8_c00389{transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);}
.m94_c00389{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m60_c00389{transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);}
.me7_c00389{transform:matrix(0.157990,-0.001738,0.002750,0.249985,0,0);-ms-transform:matrix(0.157990,-0.001738,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157990,-0.001738,0.002750,0.249985,0,0);}
.m4b_c00389{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.m98_c00389{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.160280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160280,0.000000,0.000000,0.250000,0,0);}
.mb4_c00389{transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160335,0.000000,0.000000,0.250000,0,0);}
.m5f_c00389{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m43_c00389{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m76_c00389{transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162970,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);}
.mb1_c00389{transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);}
.maf_c00389{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.165740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165740,0.000000,0.000000,0.250000,0,0);}
.ma4_c00389{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.mb9_c00389{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.mbd_c00389{transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167105,0.000000,0.000000,0.250000,0,0);}
.m61_c00389{transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);}
.mcf_c00389{transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);}
.meb_c00389{transform:matrix(0.168915,-0.001858,0.002750,0.249985,0,0);-ms-transform:matrix(0.168915,-0.001858,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168915,-0.001858,0.002750,0.249985,0,0);}
.m29_c00389{transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169290,0.000000,0.000000,0.250000,0,0);}
.ma7_c00389{transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);}
.m9a_c00389{transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170070,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.md5_c00389{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171215,0.000000,0.000000,0.250000,0,0);}
.m88_c00389{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m86_c00389{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);}
.me2_c00389{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.mc5_c00389{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m9c_c00389{transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173385,0.000000,0.000000,0.250000,0,0);}
.md2_c00389{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.me4_c00389{transform:matrix(0.174459,-0.001919,0.002750,0.249985,0,0);-ms-transform:matrix(0.174459,-0.001919,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174459,-0.001919,0.002750,0.249985,0,0);}
.m79_c00389{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m7b_c00389{transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);}
.mae_c00389{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175910,0.000000,0.000000,0.250000,0,0);}
.m84_c00389{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.m5c_c00389{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.ma5_c00389{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m97_c00389{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.mb0_c00389{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.mc4_c00389{transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179055,0.000000,0.000000,0.250000,0,0);}
.mc2_c00389{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.me9_c00389{transform:matrix(0.180124,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180124,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180124,-0.001981,0.002750,0.249985,0,0);}
.mcd_c00389{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.m72_c00389{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m3e_c00389{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);}
.mb7_c00389{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.mde_c00389{transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);}
.ma1_c00389{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.mad_c00389{transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00389{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.ma3_c00389{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.mc3_c00389{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.mec_c00389{transform:matrix(0.185814,-0.002044,0.002750,0.249985,0,0);-ms-transform:matrix(0.185814,-0.002044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185814,-0.002044,0.002750,0.249985,0,0);}
.m9e_c00389{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00389{transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);}
.m95_c00389{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m7e_c00389{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);}
.m87_c00389{transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);}
.m36_c00389{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.m8a_c00389{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m62_c00389{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);}
.m5d_c00389{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.mc0_c00389{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.mc6_c00389{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.md4_c00389{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m83_c00389{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.md3_c00389{transform:matrix(0.192635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192635,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.mce_c00389{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194840,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.m93_c00389{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m2b_c00389{transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);}
.m80_c00389{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.mb8_c00389{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.mab_c00389{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m58_c00389{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m47_c00389{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.md0_c00389{transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198745,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.mbc_c00389{transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200340,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);}
.me6_c00389{transform:matrix(0.201228,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201228,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201228,-0.002214,0.002750,0.249985,0,0);}
.m34_c00389{transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);}
.m90_c00389{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);}
.mb2_c00389{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.mea_c00389{transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);}
.mbb_c00389{transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202335,0.000000,0.000000,0.250000,0,0);}
.md7_c00389{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.mba_c00389{transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00389{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.mcc_c00389{transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m77_c00389{transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);}
.m5e_c00389{transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.m35_c00389{transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205245,0.000000,0.000000,0.250000,0,0);}
.me5_c00389{transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206468,-0.002271,0.002750,0.249985,0,0);}
.m1a_c00389{transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.mc7_c00389{transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.207335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207335,0.000000,0.000000,0.250000,0,0);}
.m53_c00389{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m8c_c00389{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.m89_c00389{transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208120,0.000000,0.000000,0.250000,0,0);}
.mcb_c00389{transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);}
.md1_c00389{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m69_c00389{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.ma2_c00389{transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208640,0.000000,0.000000,0.250000,0,0);}
.maa_c00389{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m7c_c00389{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00389{transform:matrix(0.210155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210155,0.000000,0.000000,0.250000,0,0);}
.m59_c00389{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);}
.m39_c00389{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00389{transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212665,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.mbf_c00389{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.m7d_c00389{transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214565,0.000000,0.000000,0.250000,0,0);}
.md9_c00389{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m50_c00389{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);}
.m5b_c00389{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);}
.m8f_c00389{transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);}
.m63_c00389{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);}
.me0_c00389{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00389{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00389{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.mb3_c00389{transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);}
.m96_c00389{transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);}
.me8_c00389{transform:matrix(0.220162,-0.002422,0.002750,0.249985,0,0);-ms-transform:matrix(0.220162,-0.002422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220162,-0.002422,0.002750,0.249985,0,0);}
.m4c_c00389{transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220385,0.000000,0.000000,0.250000,0,0);}
.m73_c00389{transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);}
.m91_c00389{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.mdf_c00389{transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);}
.m7f_c00389{transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);}
.m55_c00389{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00389{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m92_c00389{transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.m66_c00389{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.mdc_c00389{transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);}
.mca_c00389{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.md6_c00389{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.m81_c00389{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00389{transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);}
.m8e_c00389{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m67_c00389{transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231995,0.000000,0.000000,0.250000,0,0);}
.mda_c00389{transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);}
.m6d_c00389{transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);}
.m70_c00389{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m82_c00389{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.me1_c00389{transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);}
.m6f_c00389{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m57_c00389{transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m68_c00389{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.md8_c00389{transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);}
.m65_c00389{transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242455,0.000000,0.000000,0.250000,0,0);}
.m28_c00389{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);}
.mc9_c00389{transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);}
.mc1_c00389{transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m6b_c00389{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00389{transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);}
.mdb_c00389{transform:matrix(0.263635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263635,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.271230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00389{transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00389{transform:matrix(0.286995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286995,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.311835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311835,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);}
.m4f_c00389{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m74_c00389{transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);}
.me3_c00389{transform:matrix(0.365335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365335,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.372950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00389{transform:matrix(0.777715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777715,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:0.000000px;}
.fc0_c00389{color:transparent;}
.fs7_c00389{font-size:57.750000px;}
.fs4_c00389{font-size:58.800000px;}
.fs9_c00389{font-size:59.850000px;}
.fs6_c00389{font-size:60.900000px;}
.fsc_c00389{font-size:61.953748px;}
.fs5_c00389{font-size:64.050000px;}
.fs8_c00389{font-size:65.100000px;}
.fs0_c00389{font-size:66.150000px;}
.fs2_c00389{font-size:67.200000px;}
.fsa_c00389{font-size:68.250000px;}
.fsb_c00389{font-size:69.300000px;}
.fs3_c00389{font-size:70.350000px;}
.fs1_c00389{font-size:71.400000px;}
.y0_c00389{bottom:0.000000px;}
.y98_c00389{bottom:28.891500px;}
.y99_c00389{bottom:29.197657px;}
.y9a_c00389{bottom:29.465007px;}
.y9b_c00389{bottom:30.120948px;}
.y9c_c00389{bottom:30.323452px;}
.y9d_c00389{bottom:30.958966px;}
.y9e_c00389{bottom:31.234698px;}
.y9f_c00389{bottom:31.624362px;}
.ya0_c00389{bottom:31.832906px;}
.y90_c00389{bottom:44.554500px;}
.y91_c00389{bottom:45.261000px;}
.y92_c00389{bottom:45.546000px;}
.y93_c00389{bottom:46.302000px;}
.y94_c00389{bottom:46.615500px;}
.y95_c00389{bottom:47.284500px;}
.y96_c00389{bottom:48.006000px;}
.y97_c00389{bottom:48.301500px;}
.y8a_c00389{bottom:61.834500px;}
.y8b_c00389{bottom:62.328000px;}
.y8c_c00389{bottom:63.094500px;}
.y8d_c00389{bottom:64.405500px;}
.y8e_c00389{bottom:65.088000px;}
.y8f_c00389{bottom:66.096000px;}
.y81_c00389{bottom:78.571500px;}
.y82_c00389{bottom:78.898500px;}
.y83_c00389{bottom:79.419000px;}
.y84_c00389{bottom:79.683000px;}
.y85_c00389{bottom:80.152500px;}
.y86_c00389{bottom:80.296500px;}
.y87_c00389{bottom:80.464500px;}
.y88_c00389{bottom:80.997000px;}
.y89_c00389{bottom:81.195000px;}
.y7a_c00389{bottom:95.046000px;}
.y7b_c00389{bottom:96.306000px;}
.y7c_c00389{bottom:98.200500px;}
.y7d_c00389{bottom:99.049500px;}
.y7e_c00389{bottom:100.272000px;}
.y7f_c00389{bottom:101.466000px;}
.y80_c00389{bottom:102.420000px;}
.y73_c00389{bottom:111.783000px;}
.y74_c00389{bottom:112.879500px;}
.y75_c00389{bottom:113.490000px;}
.y76_c00389{bottom:113.722500px;}
.y77_c00389{bottom:114.778500px;}
.y78_c00389{bottom:115.074000px;}
.y79_c00389{bottom:115.695000px;}
.y70_c00389{bottom:129.333000px;}
.y71_c00389{bottom:130.167000px;}
.y72_c00389{bottom:132.973500px;}
.y6f_c00389{bottom:147.817500px;}
.y65_c00389{bottom:163.350000px;}
.y66_c00389{bottom:163.858500px;}
.y67_c00389{bottom:164.004000px;}
.y68_c00389{bottom:164.179500px;}
.y69_c00389{bottom:164.704500px;}
.y6a_c00389{bottom:164.989500px;}
.y6b_c00389{bottom:165.261000px;}
.y6c_c00389{bottom:165.478500px;}
.y6d_c00389{bottom:165.712500px;}
.y6e_c00389{bottom:166.470000px;}
.y5e_c00389{bottom:180.900000px;}
.y5f_c00389{bottom:181.429500px;}
.y60_c00389{bottom:181.942500px;}
.y61_c00389{bottom:182.151000px;}
.y62_c00389{bottom:182.404500px;}
.y63_c00389{bottom:183.076500px;}
.y64_c00389{bottom:183.589500px;}
.y5d_c00389{bottom:199.012500px;}
.y5c_c00389{bottom:216.610500px;}
.y5b_c00389{bottom:233.352000px;}
.y5a_c00389{bottom:249.703500px;}
.y53_c00389{bottom:265.410000px;}
.y54_c00389{bottom:266.377500px;}
.y55_c00389{bottom:266.598000px;}
.y56_c00389{bottom:266.913000px;}
.y57_c00389{bottom:267.231000px;}
.y58_c00389{bottom:267.786000px;}
.y59_c00389{bottom:268.137000px;}
.y4d_c00389{bottom:282.150000px;}
.y4e_c00389{bottom:282.813000px;}
.y4f_c00389{bottom:283.042500px;}
.y50_c00389{bottom:284.068500px;}
.y51_c00389{bottom:284.265000px;}
.y52_c00389{bottom:284.895000px;}
.y45_c00389{bottom:298.890000px;}
.y46_c00389{bottom:299.754000px;}
.y47_c00389{bottom:299.902500px;}
.y48_c00389{bottom:300.096000px;}
.y49_c00389{bottom:300.621000px;}
.y4a_c00389{bottom:300.954000px;}
.y4b_c00389{bottom:301.494000px;}
.y4c_c00389{bottom:301.851000px;}
.y3b_c00389{bottom:315.903000px;}
.y3c_c00389{bottom:316.291500px;}
.y3d_c00389{bottom:316.413000px;}
.y3e_c00389{bottom:316.899000px;}
.y3f_c00389{bottom:317.044500px;}
.y40_c00389{bottom:317.545500px;}
.y41_c00389{bottom:317.667000px;}
.y42_c00389{bottom:318.603000px;}
.y43_c00389{bottom:318.745500px;}
.y44_c00389{bottom:319.245000px;}
.y33_c00389{bottom:332.646000px;}
.y34_c00389{bottom:333.484500px;}
.y35_c00389{bottom:334.728000px;}
.y36_c00389{bottom:335.049000px;}
.y37_c00389{bottom:335.385000px;}
.y38_c00389{bottom:336.067500px;}
.y39_c00389{bottom:336.378000px;}
.y3a_c00389{bottom:337.527000px;}
.y2b_c00389{bottom:350.733000px;}
.y2c_c00389{bottom:351.417000px;}
.y2d_c00389{bottom:351.723000px;}
.y2e_c00389{bottom:352.536000px;}
.y2f_c00389{bottom:352.909500px;}
.y30_c00389{bottom:353.215500px;}
.y31_c00389{bottom:354.088500px;}
.y32_c00389{bottom:354.493500px;}
.y2a_c00389{bottom:368.806500px;}
.y29_c00389{bottom:386.044500px;}
.y28_c00389{bottom:403.068000px;}
.y27_c00389{bottom:419.962500px;}
.y26_c00389{bottom:436.852500px;}
.y25_c00389{bottom:453.525000px;}
.y24_c00389{bottom:470.275500px;}
.y1b_c00389{bottom:485.191500px;}
.y1c_c00389{bottom:485.647500px;}
.y1d_c00389{bottom:485.988000px;}
.y1e_c00389{bottom:486.708000px;}
.y1f_c00389{bottom:487.107000px;}
.y20_c00389{bottom:487.305000px;}
.y21_c00389{bottom:488.143500px;}
.y22_c00389{bottom:488.434500px;}
.y23_c00389{bottom:488.884500px;}
.y15_c00389{bottom:501.661500px;}
.y16_c00389{bottom:502.651500px;}
.y17_c00389{bottom:503.437500px;}
.y18_c00389{bottom:503.739000px;}
.y19_c00389{bottom:504.003000px;}
.y1a_c00389{bottom:504.778500px;}
.y10_c00389{bottom:518.131500px;}
.y11_c00389{bottom:519.379500px;}
.y12_c00389{bottom:520.645500px;}
.y13_c00389{bottom:521.485500px;}
.y14_c00389{bottom:521.757000px;}
.ya_c00389{bottom:535.951500px;}
.yb_c00389{bottom:536.802000px;}
.yc_c00389{bottom:537.519000px;}
.yd_c00389{bottom:537.948000px;}
.ye_c00389{bottom:538.834500px;}
.yf_c00389{bottom:539.632500px;}
.y2_c00389{bottom:552.423000px;}
.y3_c00389{bottom:552.855000px;}
.y4_c00389{bottom:553.396500px;}
.y5_c00389{bottom:554.101500px;}
.y6_c00389{bottom:554.496000px;}
.y7_c00389{bottom:555.148500px;}
.y8_c00389{bottom:556.140000px;}
.y9_c00389{bottom:556.530000px;}
.y1_c00389{bottom:571.998000px;}
.h9_c00389{height:57.750000px;}
.h6_c00389{height:58.800000px;}
.hb_c00389{height:59.850000px;}
.h8_c00389{height:60.900000px;}
.he_c00389{height:61.953748px;}
.h7_c00389{height:64.050000px;}
.ha_c00389{height:65.100000px;}
.h2_c00389{height:66.150000px;}
.h4_c00389{height:67.200000px;}
.hc_c00389{height:68.250000px;}
.hd_c00389{height:69.300000px;}
.h5_c00389{height:70.350000px;}
.h3_c00389{height:71.400000px;}
.h0_c00389{height:613.170000px;}
.h1_c00389{height:613.500000px;}
.w0_c00389{width:359.100000px;}
.w1_c00389{width:359.250000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:46.125000px;}
.x19_c00389{left:47.427000px;}
.xb_c00389{left:49.335000px;}
.x27_c00389{left:51.570000px;}
.x70_c00389{left:52.894500px;}
.x6d_c00389{left:54.451500px;}
.x3a_c00389{left:58.050000px;}
.x28_c00389{left:69.390000px;}
.x4_c00389{left:71.502000px;}
.x6a_c00389{left:74.515500px;}
.x37_c00389{left:75.600000px;}
.x5c_c00389{left:80.187000px;}
.x1a_c00389{left:82.461000px;}
.x73_c00389{left:84.372000px;}
.x47_c00389{left:86.529000px;}
.x3e_c00389{left:90.450000px;}
.x71_c00389{left:94.893000px;}
.x2f_c00389{left:96.120000px;}
.x48_c00389{left:97.612500px;}
.x41_c00389{left:99.522000px;}
.x42_c00389{left:102.010500px;}
.x5_c00389{left:103.371000px;}
.xc_c00389{left:106.030500px;}
.x1b_c00389{left:108.702000px;}
.x66_c00389{left:110.527500px;}
.x29_c00389{left:116.100000px;}
.x50_c00389{left:117.525000px;}
.x33_c00389{left:118.530000px;}
.x57_c00389{left:120.957000px;}
.x15_c00389{left:123.019500px;}
.x67_c00389{left:126.487500px;}
.x4c_c00389{left:129.412500px;}
.x5d_c00389{left:133.107000px;}
.x11_c00389{left:134.937000px;}
.x22_c00389{left:136.890000px;}
.x53_c00389{left:138.049500px;}
.x2a_c00389{left:140.400000px;}
.x49_c00389{left:141.834000px;}
.x4d_c00389{left:142.914000px;}
.x6_c00389{left:144.865500px;}
.x30_c00389{left:146.070000px;}
.x58_c00389{left:148.227000px;}
.xd_c00389{left:153.814500px;}
.x23_c00389{left:154.980000px;}
.x54_c00389{left:158.026500px;}
.x3b_c00389{left:160.920000px;}
.x34_c00389{left:162.270000px;}
.x1c_c00389{left:164.049000px;}
.x7_c00389{left:168.084000px;}
.x1_c00389{left:171.450000px;}
.x68_c00389{left:174.229500px;}
.x64_c00389{left:176.164500px;}
.x2_c00389{left:179.010000px;}
.xe_c00389{left:182.445000px;}
.x16_c00389{left:183.504000px;}
.x31_c00389{left:184.950000px;}
.x72_c00389{left:186.309000px;}
.x3c_c00389{left:187.650000px;}
.x59_c00389{left:192.777000px;}
.x1d_c00389{left:194.767500px;}
.x6e_c00389{left:198.094500px;}
.x43_c00389{left:199.743000px;}
.x62_c00389{left:200.877000px;}
.x2b_c00389{left:204.390000px;}
.x8_c00389{left:206.491500px;}
.x4e_c00389{left:208.254000px;}
.x1e_c00389{left:209.962500px;}
.x4a_c00389{left:211.825500px;}
.x24_c00389{left:214.920000px;}
.x2c_c00389{left:221.670000px;}
.x74_c00389{left:224.215500px;}
.x12_c00389{left:225.319500px;}
.x17_c00389{left:226.974000px;}
.x38_c00389{left:231.120000px;}
.x6b_c00389{left:235.705500px;}
.x3f_c00389{left:237.330000px;}
.x35_c00389{left:238.950000px;}
.xf_c00389{left:241.578000px;}
.x51_c00389{left:243.121500px;}
.x69_c00389{left:244.474500px;}
.x75_c00389{left:246.937500px;}
.x5f_c00389{left:250.287000px;}
.x5e_c00389{left:253.257000px;}
.x63_c00389{left:259.467000px;}
.x44_c00389{left:263.455500px;}
.x9_c00389{left:264.826500px;}
.x55_c00389{left:266.025000px;}
.x5a_c00389{left:267.297000px;}
.x65_c00389{left:268.761000px;}
.x60_c00389{left:271.077000px;}
.x25_c00389{left:272.700000px;}
.x1f_c00389{left:274.474500px;}
.x2d_c00389{left:278.370000px;}
.x45_c00389{left:282.898500px;}
.x13_c00389{left:285.312000px;}
.x18_c00389{left:286.638000px;}
.xa_c00389{left:287.766000px;}
.x3d_c00389{left:290.790000px;}
.x10_c00389{left:294.763500px;}
.x20_c00389{left:296.916000px;}
.x56_c00389{left:297.949500px;}
.x76_c00389{left:299.839500px;}
.x26_c00389{left:302.400000px;}
.x14_c00389{left:304.747500px;}
.x2e_c00389{left:306.450000px;}
.x4b_c00389{left:309.862500px;}
.x5b_c00389{left:312.387000px;}
.x39_c00389{left:314.010000px;}
.x6c_c00389{left:317.245500px;}
.x77_c00389{left:318.798000px;}
.x4f_c00389{left:320.088000px;}
.x36_c00389{left:322.380000px;}
.x52_c00389{left:325.755000px;}
.x61_c00389{left:327.777000px;}
.x6f_c00389{left:329.643000px;}
.x21_c00389{left:331.483500px;}
.x32_c00389{left:334.800000px;}
.x40_c00389{left:336.150000px;}
.x46_c00389{left:354.732000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.fs7_c00389{font-size:51.333333pt;}
.fs4_c00389{font-size:52.266667pt;}
.fs9_c00389{font-size:53.200000pt;}
.fs6_c00389{font-size:54.133333pt;}
.fsc_c00389{font-size:55.069998pt;}
.fs5_c00389{font-size:56.933333pt;}
.fs8_c00389{font-size:57.866667pt;}
.fs0_c00389{font-size:58.800000pt;}
.fs2_c00389{font-size:59.733333pt;}
.fsa_c00389{font-size:60.666667pt;}
.fsb_c00389{font-size:61.600000pt;}
.fs3_c00389{font-size:62.533333pt;}
.fs1_c00389{font-size:63.466667pt;}
.y0_c00389{bottom:0.000000pt;}
.y98_c00389{bottom:25.681333pt;}
.y99_c00389{bottom:25.953473pt;}
.y9a_c00389{bottom:26.191117pt;}
.y9b_c00389{bottom:26.774176pt;}
.y9c_c00389{bottom:26.954180pt;}
.y9d_c00389{bottom:27.519081pt;}
.y9e_c00389{bottom:27.764176pt;}
.y9f_c00389{bottom:28.110544pt;}
.ya0_c00389{bottom:28.295916pt;}
.y90_c00389{bottom:39.604000pt;}
.y91_c00389{bottom:40.232000pt;}
.y92_c00389{bottom:40.485333pt;}
.y93_c00389{bottom:41.157333pt;}
.y94_c00389{bottom:41.436000pt;}
.y95_c00389{bottom:42.030667pt;}
.y96_c00389{bottom:42.672000pt;}
.y97_c00389{bottom:42.934667pt;}
.y8a_c00389{bottom:54.964000pt;}
.y8b_c00389{bottom:55.402667pt;}
.y8c_c00389{bottom:56.084000pt;}
.y8d_c00389{bottom:57.249333pt;}
.y8e_c00389{bottom:57.856000pt;}
.y8f_c00389{bottom:58.752000pt;}
.y81_c00389{bottom:69.841333pt;}
.y82_c00389{bottom:70.132000pt;}
.y83_c00389{bottom:70.594667pt;}
.y84_c00389{bottom:70.829333pt;}
.y85_c00389{bottom:71.246667pt;}
.y86_c00389{bottom:71.374667pt;}
.y87_c00389{bottom:71.524000pt;}
.y88_c00389{bottom:71.997333pt;}
.y89_c00389{bottom:72.173333pt;}
.y7a_c00389{bottom:84.485333pt;}
.y7b_c00389{bottom:85.605333pt;}
.y7c_c00389{bottom:87.289333pt;}
.y7d_c00389{bottom:88.044000pt;}
.y7e_c00389{bottom:89.130667pt;}
.y7f_c00389{bottom:90.192000pt;}
.y80_c00389{bottom:91.040000pt;}
.y73_c00389{bottom:99.362667pt;}
.y74_c00389{bottom:100.337333pt;}
.y75_c00389{bottom:100.880000pt;}
.y76_c00389{bottom:101.086667pt;}
.y77_c00389{bottom:102.025333pt;}
.y78_c00389{bottom:102.288000pt;}
.y79_c00389{bottom:102.840000pt;}
.y70_c00389{bottom:114.962667pt;}
.y71_c00389{bottom:115.704000pt;}
.y72_c00389{bottom:118.198667pt;}
.y6f_c00389{bottom:131.393333pt;}
.y65_c00389{bottom:145.200000pt;}
.y66_c00389{bottom:145.652000pt;}
.y67_c00389{bottom:145.781333pt;}
.y68_c00389{bottom:145.937333pt;}
.y69_c00389{bottom:146.404000pt;}
.y6a_c00389{bottom:146.657333pt;}
.y6b_c00389{bottom:146.898667pt;}
.y6c_c00389{bottom:147.092000pt;}
.y6d_c00389{bottom:147.300000pt;}
.y6e_c00389{bottom:147.973333pt;}
.y5e_c00389{bottom:160.800000pt;}
.y5f_c00389{bottom:161.270667pt;}
.y60_c00389{bottom:161.726667pt;}
.y61_c00389{bottom:161.912000pt;}
.y62_c00389{bottom:162.137333pt;}
.y63_c00389{bottom:162.734667pt;}
.y64_c00389{bottom:163.190667pt;}
.y5d_c00389{bottom:176.900000pt;}
.y5c_c00389{bottom:192.542667pt;}
.y5b_c00389{bottom:207.424000pt;}
.y5a_c00389{bottom:221.958667pt;}
.y53_c00389{bottom:235.920000pt;}
.y54_c00389{bottom:236.780000pt;}
.y55_c00389{bottom:236.976000pt;}
.y56_c00389{bottom:237.256000pt;}
.y57_c00389{bottom:237.538667pt;}
.y58_c00389{bottom:238.032000pt;}
.y59_c00389{bottom:238.344000pt;}
.y4d_c00389{bottom:250.800000pt;}
.y4e_c00389{bottom:251.389333pt;}
.y4f_c00389{bottom:251.593333pt;}
.y50_c00389{bottom:252.505333pt;}
.y51_c00389{bottom:252.680000pt;}
.y52_c00389{bottom:253.240000pt;}
.y45_c00389{bottom:265.680000pt;}
.y46_c00389{bottom:266.448000pt;}
.y47_c00389{bottom:266.580000pt;}
.y48_c00389{bottom:266.752000pt;}
.y49_c00389{bottom:267.218667pt;}
.y4a_c00389{bottom:267.514667pt;}
.y4b_c00389{bottom:267.994667pt;}
.y4c_c00389{bottom:268.312000pt;}
.y3b_c00389{bottom:280.802667pt;}
.y3c_c00389{bottom:281.148000pt;}
.y3d_c00389{bottom:281.256000pt;}
.y3e_c00389{bottom:281.688000pt;}
.y3f_c00389{bottom:281.817333pt;}
.y40_c00389{bottom:282.262667pt;}
.y41_c00389{bottom:282.370667pt;}
.y42_c00389{bottom:283.202667pt;}
.y43_c00389{bottom:283.329333pt;}
.y44_c00389{bottom:283.773333pt;}
.y33_c00389{bottom:295.685333pt;}
.y34_c00389{bottom:296.430667pt;}
.y35_c00389{bottom:297.536000pt;}
.y36_c00389{bottom:297.821333pt;}
.y37_c00389{bottom:298.120000pt;}
.y38_c00389{bottom:298.726667pt;}
.y39_c00389{bottom:299.002667pt;}
.y3a_c00389{bottom:300.024000pt;}
.y2b_c00389{bottom:311.762667pt;}
.y2c_c00389{bottom:312.370667pt;}
.y2d_c00389{bottom:312.642667pt;}
.y2e_c00389{bottom:313.365333pt;}
.y2f_c00389{bottom:313.697333pt;}
.y30_c00389{bottom:313.969333pt;}
.y31_c00389{bottom:314.745333pt;}
.y32_c00389{bottom:315.105333pt;}
.y2a_c00389{bottom:327.828000pt;}
.y29_c00389{bottom:343.150667pt;}
.y28_c00389{bottom:358.282667pt;}
.y27_c00389{bottom:373.300000pt;}
.y26_c00389{bottom:388.313333pt;}
.y25_c00389{bottom:403.133333pt;}
.y24_c00389{bottom:418.022667pt;}
.y1b_c00389{bottom:431.281333pt;}
.y1c_c00389{bottom:431.686667pt;}
.y1d_c00389{bottom:431.989333pt;}
.y1e_c00389{bottom:432.629333pt;}
.y1f_c00389{bottom:432.984000pt;}
.y20_c00389{bottom:433.160000pt;}
.y21_c00389{bottom:433.905333pt;}
.y22_c00389{bottom:434.164000pt;}
.y23_c00389{bottom:434.564000pt;}
.y15_c00389{bottom:445.921333pt;}
.y16_c00389{bottom:446.801333pt;}
.y17_c00389{bottom:447.500000pt;}
.y18_c00389{bottom:447.768000pt;}
.y19_c00389{bottom:448.002667pt;}
.y1a_c00389{bottom:448.692000pt;}
.y10_c00389{bottom:460.561333pt;}
.y11_c00389{bottom:461.670667pt;}
.y12_c00389{bottom:462.796000pt;}
.y13_c00389{bottom:463.542667pt;}
.y14_c00389{bottom:463.784000pt;}
.ya_c00389{bottom:476.401333pt;}
.yb_c00389{bottom:477.157333pt;}
.yc_c00389{bottom:477.794667pt;}
.yd_c00389{bottom:478.176000pt;}
.ye_c00389{bottom:478.964000pt;}
.yf_c00389{bottom:479.673333pt;}
.y2_c00389{bottom:491.042667pt;}
.y3_c00389{bottom:491.426667pt;}
.y4_c00389{bottom:491.908000pt;}
.y5_c00389{bottom:492.534667pt;}
.y6_c00389{bottom:492.885333pt;}
.y7_c00389{bottom:493.465333pt;}
.y8_c00389{bottom:494.346667pt;}
.y9_c00389{bottom:494.693333pt;}
.y1_c00389{bottom:508.442667pt;}
.h9_c00389{height:51.333333pt;}
.h6_c00389{height:52.266667pt;}
.hb_c00389{height:53.200000pt;}
.h8_c00389{height:54.133333pt;}
.he_c00389{height:55.069998pt;}
.h7_c00389{height:56.933333pt;}
.ha_c00389{height:57.866667pt;}
.h2_c00389{height:58.800000pt;}
.h4_c00389{height:59.733333pt;}
.hc_c00389{height:60.666667pt;}
.hd_c00389{height:61.600000pt;}
.h5_c00389{height:62.533333pt;}
.h3_c00389{height:63.466667pt;}
.h0_c00389{height:545.040000pt;}
.h1_c00389{height:545.333333pt;}
.w0_c00389{width:319.200000pt;}
.w1_c00389{width:319.333333pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:41.000000pt;}
.x19_c00389{left:42.157333pt;}
.xb_c00389{left:43.853333pt;}
.x27_c00389{left:45.840000pt;}
.x70_c00389{left:47.017333pt;}
.x6d_c00389{left:48.401333pt;}
.x3a_c00389{left:51.600000pt;}
.x28_c00389{left:61.680000pt;}
.x4_c00389{left:63.557333pt;}
.x6a_c00389{left:66.236000pt;}
.x37_c00389{left:67.200000pt;}
.x5c_c00389{left:71.277333pt;}
.x1a_c00389{left:73.298667pt;}
.x73_c00389{left:74.997333pt;}
.x47_c00389{left:76.914667pt;}
.x3e_c00389{left:80.400000pt;}
.x71_c00389{left:84.349333pt;}
.x2f_c00389{left:85.440000pt;}
.x48_c00389{left:86.766667pt;}
.x41_c00389{left:88.464000pt;}
.x42_c00389{left:90.676000pt;}
.x5_c00389{left:91.885333pt;}
.xc_c00389{left:94.249333pt;}
.x1b_c00389{left:96.624000pt;}
.x66_c00389{left:98.246667pt;}
.x29_c00389{left:103.200000pt;}
.x50_c00389{left:104.466667pt;}
.x33_c00389{left:105.360000pt;}
.x57_c00389{left:107.517333pt;}
.x15_c00389{left:109.350667pt;}
.x67_c00389{left:112.433333pt;}
.x4c_c00389{left:115.033333pt;}
.x5d_c00389{left:118.317333pt;}
.x11_c00389{left:119.944000pt;}
.x22_c00389{left:121.680000pt;}
.x53_c00389{left:122.710667pt;}
.x2a_c00389{left:124.800000pt;}
.x49_c00389{left:126.074667pt;}
.x4d_c00389{left:127.034667pt;}
.x6_c00389{left:128.769333pt;}
.x30_c00389{left:129.840000pt;}
.x58_c00389{left:131.757333pt;}
.xd_c00389{left:136.724000pt;}
.x23_c00389{left:137.760000pt;}
.x54_c00389{left:140.468000pt;}
.x3b_c00389{left:143.040000pt;}
.x34_c00389{left:144.240000pt;}
.x1c_c00389{left:145.821333pt;}
.x7_c00389{left:149.408000pt;}
.x1_c00389{left:152.400000pt;}
.x68_c00389{left:154.870667pt;}
.x64_c00389{left:156.590667pt;}
.x2_c00389{left:159.120000pt;}
.xe_c00389{left:162.173333pt;}
.x16_c00389{left:163.114667pt;}
.x31_c00389{left:164.400000pt;}
.x72_c00389{left:165.608000pt;}
.x3c_c00389{left:166.800000pt;}
.x59_c00389{left:171.357333pt;}
.x1d_c00389{left:173.126667pt;}
.x6e_c00389{left:176.084000pt;}
.x43_c00389{left:177.549333pt;}
.x62_c00389{left:178.557333pt;}
.x2b_c00389{left:181.680000pt;}
.x8_c00389{left:183.548000pt;}
.x4e_c00389{left:185.114667pt;}
.x1e_c00389{left:186.633333pt;}
.x4a_c00389{left:188.289333pt;}
.x24_c00389{left:191.040000pt;}
.x2c_c00389{left:197.040000pt;}
.x74_c00389{left:199.302667pt;}
.x12_c00389{left:200.284000pt;}
.x17_c00389{left:201.754667pt;}
.x38_c00389{left:205.440000pt;}
.x6b_c00389{left:209.516000pt;}
.x3f_c00389{left:210.960000pt;}
.x35_c00389{left:212.400000pt;}
.xf_c00389{left:214.736000pt;}
.x51_c00389{left:216.108000pt;}
.x69_c00389{left:217.310667pt;}
.x75_c00389{left:219.500000pt;}
.x5f_c00389{left:222.477333pt;}
.x5e_c00389{left:225.117333pt;}
.x63_c00389{left:230.637333pt;}
.x44_c00389{left:234.182667pt;}
.x9_c00389{left:235.401333pt;}
.x55_c00389{left:236.466667pt;}
.x5a_c00389{left:237.597333pt;}
.x65_c00389{left:238.898667pt;}
.x60_c00389{left:240.957333pt;}
.x25_c00389{left:242.400000pt;}
.x1f_c00389{left:243.977333pt;}
.x2d_c00389{left:247.440000pt;}
.x45_c00389{left:251.465333pt;}
.x13_c00389{left:253.610667pt;}
.x18_c00389{left:254.789333pt;}
.xa_c00389{left:255.792000pt;}
.x3d_c00389{left:258.480000pt;}
.x10_c00389{left:262.012000pt;}
.x20_c00389{left:263.925333pt;}
.x56_c00389{left:264.844000pt;}
.x76_c00389{left:266.524000pt;}
.x26_c00389{left:268.800000pt;}
.x14_c00389{left:270.886667pt;}
.x2e_c00389{left:272.400000pt;}
.x4b_c00389{left:275.433333pt;}
.x5b_c00389{left:277.677333pt;}
.x39_c00389{left:279.120000pt;}
.x6c_c00389{left:281.996000pt;}
.x77_c00389{left:283.376000pt;}
.x4f_c00389{left:284.522667pt;}
.x36_c00389{left:286.560000pt;}
.x52_c00389{left:289.560000pt;}
.x61_c00389{left:291.357333pt;}
.x6f_c00389{left:293.016000pt;}
.x21_c00389{left:294.652000pt;}
.x32_c00389{left:297.600000pt;}
.x40_c00389{left:298.800000pt;}
.x46_c00389{left:315.317333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00390 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00390 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00390 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00390 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00390.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00390{transform:matrix(0.013983,-0.000252,0.004499,0.249960,0,0);-ms-transform:matrix(0.013983,-0.000252,0.004499,0.249960,0,0);-webkit-transform:matrix(0.013983,-0.000252,0.004499,0.249960,0,0);}
.m56_c00390{transform:matrix(0.074128,-0.001334,0.004499,0.249960,0,0);-ms-transform:matrix(0.074128,-0.001334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.074128,-0.001334,0.004499,0.249960,0,0);}
.mf_c00390{transform:matrix(0.105543,-0.001900,0.004499,0.249960,0,0);-ms-transform:matrix(0.105543,-0.001900,0.004499,0.249960,0,0);-webkit-transform:matrix(0.105543,-0.001900,0.004499,0.249960,0,0);}
.m15_c00390{transform:matrix(0.118911,-0.002140,0.004499,0.249960,0,0);-ms-transform:matrix(0.118911,-0.002140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.118911,-0.002140,0.004499,0.249960,0,0);}
.m10_c00390{transform:matrix(0.119251,-0.002147,0.004499,0.249960,0,0);-ms-transform:matrix(0.119251,-0.002147,0.004499,0.249960,0,0);-webkit-transform:matrix(0.119251,-0.002147,0.004499,0.249960,0,0);}
.me_c00390{transform:matrix(0.124590,-0.002243,0.004499,0.249960,0,0);-ms-transform:matrix(0.124590,-0.002243,0.004499,0.249960,0,0);-webkit-transform:matrix(0.124590,-0.002243,0.004499,0.249960,0,0);}
.m11_c00390{transform:matrix(0.130054,-0.002341,0.004499,0.249960,0,0);-ms-transform:matrix(0.130054,-0.002341,0.004499,0.249960,0,0);-webkit-transform:matrix(0.130054,-0.002341,0.004499,0.249960,0,0);}
.m80_c00390{transform:matrix(0.132835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00390{transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);}
.m83_c00390{transform:matrix(0.137285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137285,0.000000,0.000000,0.250000,0,0);}
.mb1_c00390{transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143490,0.000000,0.000000,0.250000,0,0);}
.m69_c00390{transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143630,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.145241,-0.002614,0.004499,0.249960,0,0);-ms-transform:matrix(0.145241,-0.002614,0.004499,0.249960,0,0);-webkit-transform:matrix(0.145241,-0.002614,0.004499,0.249960,0,0);}
.m43_c00390{transform:matrix(0.147871,-0.002662,0.004499,0.249960,0,0);-ms-transform:matrix(0.147871,-0.002662,0.004499,0.249960,0,0);-webkit-transform:matrix(0.147871,-0.002662,0.004499,0.249960,0,0);}
.m5e_c00390{transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148420,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.152785,-0.002750,0.004499,0.249960,0,0);-ms-transform:matrix(0.152785,-0.002750,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152785,-0.002750,0.004499,0.249960,0,0);}
.mb0_c00390{transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);}
.mb8_c00390{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.mb4_c00390{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.ma3_c00390{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.160644,-0.002892,0.004499,0.249960,0,0);-ms-transform:matrix(0.160644,-0.002892,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160644,-0.002892,0.004499,0.249960,0,0);}
.m97_c00390{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m79_c00390{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.163399,-0.002941,0.004499,0.249960,0,0);-ms-transform:matrix(0.163399,-0.002941,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163399,-0.002941,0.004499,0.249960,0,0);}
.m66_c00390{transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);}
.m99_c00390{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m5b_c00390{transform:matrix(0.163958,-0.002951,0.004499,0.249960,0,0);-ms-transform:matrix(0.163958,-0.002951,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163958,-0.002951,0.004499,0.249960,0,0);}
.m59_c00390{transform:matrix(0.165138,-0.002972,0.004499,0.249960,0,0);-ms-transform:matrix(0.165138,-0.002972,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165138,-0.002972,0.004499,0.249960,0,0);}
.maf_c00390{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.mad_c00390{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m73_c00390{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.166043,-0.002989,0.004499,0.249960,0,0);-ms-transform:matrix(0.166043,-0.002989,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166043,-0.002989,0.004499,0.249960,0,0);}
.ma6_c00390{transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);}
.mae_c00390{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.166878,-0.003004,0.004499,0.249960,0,0);-ms-transform:matrix(0.166878,-0.003004,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166878,-0.003004,0.004499,0.249960,0,0);}
.m45_c00390{transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);-ms-transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168458,-0.003032,0.004499,0.249960,0,0);}
.m4_c00390{transform:matrix(0.168568,-0.003034,0.004499,0.249960,0,0);-ms-transform:matrix(0.168568,-0.003034,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168568,-0.003034,0.004499,0.249960,0,0);}
.m14_c00390{transform:matrix(0.169128,-0.003044,0.004499,0.249960,0,0);-ms-transform:matrix(0.169128,-0.003044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169128,-0.003044,0.004499,0.249960,0,0);}
.m28_c00390{transform:matrix(0.171182,-0.003081,0.004499,0.249960,0,0);-ms-transform:matrix(0.171182,-0.003081,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171182,-0.003081,0.004499,0.249960,0,0);}
.m2d_c00390{transform:matrix(0.172242,-0.003100,0.004499,0.249960,0,0);-ms-transform:matrix(0.172242,-0.003100,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172242,-0.003100,0.004499,0.249960,0,0);}
.m49_c00390{transform:matrix(0.172332,-0.003102,0.004499,0.249960,0,0);-ms-transform:matrix(0.172332,-0.003102,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172332,-0.003102,0.004499,0.249960,0,0);}
.m6e_c00390{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m74_c00390{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.173807,-0.003129,0.004499,0.249960,0,0);-ms-transform:matrix(0.173807,-0.003129,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173807,-0.003129,0.004499,0.249960,0,0);}
.m3_c00390{transform:matrix(0.174737,-0.003145,0.004499,0.249960,0,0);-ms-transform:matrix(0.174737,-0.003145,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174737,-0.003145,0.004499,0.249960,0,0);}
.ma2_c00390{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m5c_c00390{transform:matrix(0.175727,-0.003163,0.004499,0.249960,0,0);-ms-transform:matrix(0.175727,-0.003163,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175727,-0.003163,0.004499,0.249960,0,0);}
.m6d_c00390{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{transform:matrix(0.176311,-0.003174,0.004499,0.249960,0,0);-ms-transform:matrix(0.176311,-0.003174,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176311,-0.003174,0.004499,0.249960,0,0);}
.m4f_c00390{transform:matrix(0.176321,-0.003174,0.004499,0.249960,0,0);-ms-transform:matrix(0.176321,-0.003174,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176321,-0.003174,0.004499,0.249960,0,0);}
.m8f_c00390{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m39_c00390{transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);-ms-transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177411,-0.003193,0.004499,0.249960,0,0);}
.m41_c00390{transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);-ms-transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177721,-0.003199,0.004499,0.249960,0,0);}
.m5_c00390{transform:matrix(0.177946,-0.003203,0.004499,0.249960,0,0);-ms-transform:matrix(0.177946,-0.003203,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177946,-0.003203,0.004499,0.249960,0,0);}
.m7b_c00390{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.m7d_c00390{transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);}
.m8d_c00390{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00390{transform:matrix(0.180531,-0.003250,0.004499,0.249960,0,0);-ms-transform:matrix(0.180531,-0.003250,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180531,-0.003250,0.004499,0.249960,0,0);}
.m51_c00390{transform:matrix(0.182385,-0.003283,0.004499,0.249960,0,0);-ms-transform:matrix(0.182385,-0.003283,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182385,-0.003283,0.004499,0.249960,0,0);}
.m4a_c00390{transform:matrix(0.182450,-0.003284,0.004499,0.249960,0,0);-ms-transform:matrix(0.182450,-0.003284,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182450,-0.003284,0.004499,0.249960,0,0);}
.m78_c00390{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m94_c00390{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.mb5_c00390{transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);}
.m96_c00390{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.ma5_c00390{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.184550,-0.003322,0.004499,0.249960,0,0);-ms-transform:matrix(0.184550,-0.003322,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184550,-0.003322,0.004499,0.249960,0,0);}
.m57_c00390{transform:matrix(0.185430,-0.003338,0.004499,0.249960,0,0);-ms-transform:matrix(0.185430,-0.003338,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185430,-0.003338,0.004499,0.249960,0,0);}
.m76_c00390{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.mac_c00390{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.186100,-0.003350,0.004499,0.249960,0,0);-ms-transform:matrix(0.186100,-0.003350,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186100,-0.003350,0.004499,0.249960,0,0);}
.m67_c00390{transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00390{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.m6a_c00390{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.187235,-0.003370,0.004499,0.249960,0,0);-ms-transform:matrix(0.187235,-0.003370,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187235,-0.003370,0.004499,0.249960,0,0);}
.m90_c00390{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.ma7_c00390{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.188235,-0.003388,0.004499,0.249960,0,0);-ms-transform:matrix(0.188235,-0.003388,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188235,-0.003388,0.004499,0.249960,0,0);}
.m1_c00390{transform:matrix(0.188894,-0.003400,0.004499,0.249960,0,0);-ms-transform:matrix(0.188894,-0.003400,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188894,-0.003400,0.004499,0.249960,0,0);}
.m30_c00390{transform:matrix(0.189259,-0.003407,0.004499,0.249960,0,0);-ms-transform:matrix(0.189259,-0.003407,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189259,-0.003407,0.004499,0.249960,0,0);}
.mb3_c00390{transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189310,0.000000,0.000000,0.250000,0,0);}
.mb6_c00390{transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189435,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.189599,-0.003413,0.004499,0.249960,0,0);-ms-transform:matrix(0.189599,-0.003413,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189599,-0.003413,0.004499,0.249960,0,0);}
.m9e_c00390{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m9f_c00390{transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);}
.m81_c00390{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m58_c00390{transform:matrix(0.190619,-0.003431,0.004499,0.249960,0,0);-ms-transform:matrix(0.190619,-0.003431,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190619,-0.003431,0.004499,0.249960,0,0);}
.m95_c00390{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{transform:matrix(0.191609,-0.003449,0.004499,0.249960,0,0);-ms-transform:matrix(0.191609,-0.003449,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191609,-0.003449,0.004499,0.249960,0,0);}
.m65_c00390{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.195203,-0.003514,0.004499,0.249960,0,0);-ms-transform:matrix(0.195203,-0.003514,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195203,-0.003514,0.004499,0.249960,0,0);}
.mab_c00390{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.196483,-0.003537,0.004499,0.249960,0,0);-ms-transform:matrix(0.196483,-0.003537,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196483,-0.003537,0.004499,0.249960,0,0);}
.m1e_c00390{transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);-ms-transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196508,-0.003537,0.004499,0.249960,0,0);}
.m3c_c00390{transform:matrix(0.197053,-0.003547,0.004499,0.249960,0,0);-ms-transform:matrix(0.197053,-0.003547,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197053,-0.003547,0.004499,0.249960,0,0);}
.m7c_c00390{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m77_c00390{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);-ms-transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);}
.m82_c00390{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.m7a_c00390{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.ma8_c00390{transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);}
.ma0_c00390{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.201877,-0.003634,0.004499,0.249960,0,0);-ms-transform:matrix(0.201877,-0.003634,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201877,-0.003634,0.004499,0.249960,0,0);}
.m5f_c00390{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m2e_c00390{transform:matrix(0.204312,-0.003678,0.004499,0.249960,0,0);-ms-transform:matrix(0.204312,-0.003678,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204312,-0.003678,0.004499,0.249960,0,0);}
.m1f_c00390{transform:matrix(0.205972,-0.003707,0.004499,0.249960,0,0);-ms-transform:matrix(0.205972,-0.003707,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205972,-0.003707,0.004499,0.249960,0,0);}
.m9b_c00390{transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.206232,-0.003712,0.004499,0.249960,0,0);-ms-transform:matrix(0.206232,-0.003712,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206232,-0.003712,0.004499,0.249960,0,0);}
.maa_c00390{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.208231,-0.003748,0.004499,0.249960,0,0);-ms-transform:matrix(0.208231,-0.003748,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208231,-0.003748,0.004499,0.249960,0,0);}
.m9d_c00390{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m75_c00390{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.209571,-0.003772,0.004499,0.249960,0,0);-ms-transform:matrix(0.209571,-0.003772,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209571,-0.003772,0.004499,0.249960,0,0);}
.m87_c00390{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m54_c00390{transform:matrix(0.212086,-0.003818,0.004499,0.249960,0,0);-ms-transform:matrix(0.212086,-0.003818,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212086,-0.003818,0.004499,0.249960,0,0);}
.m7f_c00390{transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.212271,-0.003821,0.004499,0.249960,0,0);-ms-transform:matrix(0.212271,-0.003821,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212271,-0.003821,0.004499,0.249960,0,0);}
.m4e_c00390{transform:matrix(0.212641,-0.003828,0.004499,0.249960,0,0);-ms-transform:matrix(0.212641,-0.003828,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212641,-0.003828,0.004499,0.249960,0,0);}
.m84_c00390{transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212660,0.000000,0.000000,0.250000,0,0);}
.m53_c00390{transform:matrix(0.213510,-0.003843,0.004499,0.249960,0,0);-ms-transform:matrix(0.213510,-0.003843,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213510,-0.003843,0.004499,0.249960,0,0);}
.m44_c00390{transform:matrix(0.213920,-0.003851,0.004499,0.249960,0,0);-ms-transform:matrix(0.213920,-0.003851,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213920,-0.003851,0.004499,0.249960,0,0);}
.m88_c00390{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.215580,-0.003880,0.004499,0.249960,0,0);-ms-transform:matrix(0.215580,-0.003880,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215580,-0.003880,0.004499,0.249960,0,0);}
.m19_c00390{transform:matrix(0.216215,-0.003892,0.004499,0.249960,0,0);-ms-transform:matrix(0.216215,-0.003892,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216215,-0.003892,0.004499,0.249960,0,0);}
.m1c_c00390{transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);-ms-transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217460,-0.003914,0.004499,0.249960,0,0);}
.ma4_c00390{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.m70_c00390{transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219195,0.000000,0.000000,0.250000,0,0);}
.ma1_c00390{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.219439,-0.003950,0.004499,0.249960,0,0);-ms-transform:matrix(0.219439,-0.003950,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219439,-0.003950,0.004499,0.249960,0,0);}
.m2a_c00390{transform:matrix(0.220309,-0.003966,0.004499,0.249960,0,0);-ms-transform:matrix(0.220309,-0.003966,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220309,-0.003966,0.004499,0.249960,0,0);}
.m6f_c00390{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m91_c00390{transform:matrix(0.222590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222590,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.222824,-0.004011,0.004499,0.249960,0,0);-ms-transform:matrix(0.222824,-0.004011,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222824,-0.004011,0.004499,0.249960,0,0);}
.m4c_c00390{transform:matrix(0.223414,-0.004021,0.004499,0.249960,0,0);-ms-transform:matrix(0.223414,-0.004021,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223414,-0.004021,0.004499,0.249960,0,0);}
.m98_c00390{transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223430,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.223989,-0.004032,0.004499,0.249960,0,0);-ms-transform:matrix(0.223989,-0.004032,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223989,-0.004032,0.004499,0.249960,0,0);}
.m47_c00390{transform:matrix(0.224394,-0.004039,0.004499,0.249960,0,0);-ms-transform:matrix(0.224394,-0.004039,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224394,-0.004039,0.004499,0.249960,0,0);}
.m4d_c00390{transform:matrix(0.225343,-0.004056,0.004499,0.249960,0,0);-ms-transform:matrix(0.225343,-0.004056,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225343,-0.004056,0.004499,0.249960,0,0);}
.m9a_c00390{transform:matrix(0.225445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225445,0.000000,0.000000,0.250000,0,0);}
.m60_c00390{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.m93_c00390{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m9c_c00390{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m92_c00390{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.231253,-0.004163,0.004499,0.249960,0,0);-ms-transform:matrix(0.231253,-0.004163,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231253,-0.004163,0.004499,0.249960,0,0);}
.m4b_c00390{transform:matrix(0.231512,-0.004167,0.004499,0.249960,0,0);-ms-transform:matrix(0.231512,-0.004167,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231512,-0.004167,0.004499,0.249960,0,0);}
.m38_c00390{transform:matrix(0.232012,-0.004176,0.004499,0.249960,0,0);-ms-transform:matrix(0.232012,-0.004176,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232012,-0.004176,0.004499,0.249960,0,0);}
.m3b_c00390{transform:matrix(0.232122,-0.004178,0.004499,0.249960,0,0);-ms-transform:matrix(0.232122,-0.004178,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232122,-0.004178,0.004499,0.249960,0,0);}
.m52_c00390{transform:matrix(0.233447,-0.004202,0.004499,0.249960,0,0);-ms-transform:matrix(0.233447,-0.004202,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233447,-0.004202,0.004499,0.249960,0,0);}
.m8a_c00390{transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.237572,-0.004276,0.004499,0.249960,0,0);-ms-transform:matrix(0.237572,-0.004276,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237572,-0.004276,0.004499,0.249960,0,0);}
.ma9_c00390{transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.240346,-0.004326,0.004499,0.249960,0,0);-ms-transform:matrix(0.240346,-0.004326,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240346,-0.004326,0.004499,0.249960,0,0);}
.m8e_c00390{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m55_c00390{transform:matrix(0.247020,-0.004446,0.004499,0.249960,0,0);-ms-transform:matrix(0.247020,-0.004446,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247020,-0.004446,0.004499,0.249960,0,0);}
.m33_c00390{transform:matrix(0.249075,-0.004483,0.004499,0.249960,0,0);-ms-transform:matrix(0.249075,-0.004483,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249075,-0.004483,0.004499,0.249960,0,0);}
.m3e_c00390{transform:matrix(0.249140,-0.004485,0.004499,0.249960,0,0);-ms-transform:matrix(0.249140,-0.004485,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249140,-0.004485,0.004499,0.249960,0,0);}
.m86_c00390{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.252409,-0.004543,0.004499,0.249960,0,0);-ms-transform:matrix(0.252409,-0.004543,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252409,-0.004543,0.004499,0.249960,0,0);}
.m89_c00390{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.253314,-0.004560,0.004499,0.249960,0,0);-ms-transform:matrix(0.253314,-0.004560,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253314,-0.004560,0.004499,0.249960,0,0);}
.m34_c00390{transform:matrix(0.254169,-0.004575,0.004499,0.249960,0,0);-ms-transform:matrix(0.254169,-0.004575,0.004499,0.249960,0,0);-webkit-transform:matrix(0.254169,-0.004575,0.004499,0.249960,0,0);}
.m17_c00390{transform:matrix(0.256328,-0.004614,0.004499,0.249960,0,0);-ms-transform:matrix(0.256328,-0.004614,0.004499,0.249960,0,0);-webkit-transform:matrix(0.256328,-0.004614,0.004499,0.249960,0,0);}
.m7e_c00390{transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.261303,-0.004703,0.004499,0.249960,0,0);-ms-transform:matrix(0.261303,-0.004703,0.004499,0.249960,0,0);-webkit-transform:matrix(0.261303,-0.004703,0.004499,0.249960,0,0);}
.m71_c00390{transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);}
.m85_c00390{transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);}
.m6c_c00390{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m8c_c00390{transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);}
.m27_c00390{transform:matrix(0.291443,-0.005246,0.004499,0.249960,0,0);-ms-transform:matrix(0.291443,-0.005246,0.004499,0.249960,0,0);-webkit-transform:matrix(0.291443,-0.005246,0.004499,0.249960,0,0);}
.m1a_c00390{transform:matrix(0.294007,-0.005292,0.004499,0.249960,0,0);-ms-transform:matrix(0.294007,-0.005292,0.004499,0.249960,0,0);-webkit-transform:matrix(0.294007,-0.005292,0.004499,0.249960,0,0);}
.m0_c00390{transform:matrix(0.296232,-0.005332,0.004499,0.249960,0,0);-ms-transform:matrix(0.296232,-0.005332,0.004499,0.249960,0,0);-webkit-transform:matrix(0.296232,-0.005332,0.004499,0.249960,0,0);}
.m23_c00390{transform:matrix(0.305561,-0.005500,0.004499,0.249960,0,0);-ms-transform:matrix(0.305561,-0.005500,0.004499,0.249960,0,0);-webkit-transform:matrix(0.305561,-0.005500,0.004499,0.249960,0,0);}
.m8b_c00390{transform:matrix(0.306295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306295,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.306965,-0.005525,0.004499,0.249960,0,0);-ms-transform:matrix(0.306965,-0.005525,0.004499,0.249960,0,0);-webkit-transform:matrix(0.306965,-0.005525,0.004499,0.249960,0,0);}
.m61_c00390{transform:matrix(0.308410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308410,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.347289,-0.006251,0.004499,0.249960,0,0);-ms-transform:matrix(0.347289,-0.006251,0.004499,0.249960,0,0);-webkit-transform:matrix(0.347289,-0.006251,0.004499,0.249960,0,0);}
.m12_c00390{transform:matrix(0.348943,-0.006281,0.004499,0.249960,0,0);-ms-transform:matrix(0.348943,-0.006281,0.004499,0.249960,0,0);-webkit-transform:matrix(0.348943,-0.006281,0.004499,0.249960,0,0);}
.m72_c00390{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.410713,-0.007393,0.004499,0.249960,0,0);-ms-transform:matrix(0.410713,-0.007393,0.004499,0.249960,0,0);-webkit-transform:matrix(0.410713,-0.007393,0.004499,0.249960,0,0);}
.m62_c00390{transform:matrix(0.447870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447870,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.456951,-0.008225,0.004499,0.249960,0,0);-ms-transform:matrix(0.456951,-0.008225,0.004499,0.249960,0,0);-webkit-transform:matrix(0.456951,-0.008225,0.004499,0.249960,0,0);}
.m29_c00390{transform:matrix(0.468194,-0.008427,0.004499,0.249960,0,0);-ms-transform:matrix(0.468194,-0.008427,0.004499,0.249960,0,0);-webkit-transform:matrix(0.468194,-0.008427,0.004499,0.249960,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00390{word-spacing:0.000000px;}
.fc0_c00390{color:transparent;}
.fs3_c00390{font-size:54.608844px;}
.fse_c00390{font-size:57.750000px;}
.fs7_c00390{font-size:58.809525px;}
.fsf_c00390{font-size:59.850000px;}
.fs6_c00390{font-size:59.859695px;}
.fsa_c00390{font-size:60.900000px;}
.fs9_c00390{font-size:60.909865px;}
.fsc_c00390{font-size:63.000000px;}
.fs4_c00390{font-size:63.010205px;}
.fs11_c00390{font-size:65.100000px;}
.fs10_c00390{font-size:66.150000px;}
.fs1_c00390{font-size:66.160715px;}
.fsd_c00390{font-size:67.200000px;}
.fs12_c00390{font-size:68.250000px;}
.fs5_c00390{font-size:68.261056px;}
.fsb_c00390{font-size:70.350000px;}
.fs8_c00390{font-size:70.361396px;}
.fs0_c00390{font-size:73.511906px;}
.fs2_c00390{font-size:92.414968px;}
.y0_c00390{bottom:0.000000px;}
.y8f_c00390{bottom:33.016500px;}
.y88_c00390{bottom:45.364500px;}
.y89_c00390{bottom:47.644500px;}
.y8a_c00390{bottom:47.905500px;}
.y8b_c00390{bottom:49.245000px;}
.y8c_c00390{bottom:50.037000px;}
.y8d_c00390{bottom:50.460000px;}
.y8e_c00390{bottom:50.826000px;}
.y87_c00390{bottom:67.851000px;}
.y7e_c00390{bottom:83.430000px;}
.y7f_c00390{bottom:83.940000px;}
.y80_c00390{bottom:84.294000px;}
.y81_c00390{bottom:85.282500px;}
.y82_c00390{bottom:85.861500px;}
.y83_c00390{bottom:86.052000px;}
.y84_c00390{bottom:86.364000px;}
.y85_c00390{bottom:87.375000px;}
.y86_c00390{bottom:87.720000px;}
.y74_c00390{bottom:98.011500px;}
.y75_c00390{bottom:98.253000px;}
.y76_c00390{bottom:98.608500px;}
.y77_c00390{bottom:99.568500px;}
.y78_c00390{bottom:100.051500px;}
.y79_c00390{bottom:100.233000px;}
.y7a_c00390{bottom:100.474500px;}
.y7b_c00390{bottom:100.921500px;}
.y7c_c00390{bottom:101.574000px;}
.y7d_c00390{bottom:101.827500px;}
.y73_c00390{bottom:118.248000px;}
.y72_c00390{bottom:135.159000px;}
.y68_c00390{bottom:148.236000px;}
.y69_c00390{bottom:149.227500px;}
.y6a_c00390{bottom:149.487000px;}
.y6b_c00390{bottom:150.012000px;}
.y6c_c00390{bottom:150.870000px;}
.y6d_c00390{bottom:151.267500px;}
.y6e_c00390{bottom:151.630500px;}
.y6f_c00390{bottom:152.640000px;}
.y70_c00390{bottom:153.013500px;}
.y71_c00390{bottom:153.645000px;}
.y67_c00390{bottom:169.507500px;}
.y60_c00390{bottom:182.253000px;}
.y61_c00390{bottom:183.985500px;}
.y62_c00390{bottom:184.879500px;}
.y63_c00390{bottom:185.094000px;}
.y64_c00390{bottom:185.428500px;}
.y65_c00390{bottom:186.394500px;}
.y66_c00390{bottom:186.831000px;}
.y5f_c00390{bottom:202.770000px;}
.y56_c00390{bottom:218.536224px;}
.y5a_c00390{bottom:218.536452px;}
.y57_c00390{bottom:218.536515px;}
.y59_c00390{bottom:218.536533px;}
.y5c_c00390{bottom:218.536602px;}
.y5b_c00390{bottom:218.536698px;}
.y5d_c00390{bottom:218.536968px;}
.y58_c00390{bottom:218.537001px;}
.y5e_c00390{bottom:218.537634px;}
.y4e_c00390{bottom:234.605289px;}
.y4f_c00390{bottom:235.056396px;}
.y50_c00390{bottom:235.615956px;}
.y51_c00390{bottom:235.778475px;}
.y52_c00390{bottom:236.322051px;}
.y53_c00390{bottom:236.496924px;}
.y54_c00390{bottom:236.950485px;}
.y55_c00390{bottom:237.147684px;}
.y47_c00390{bottom:253.401264px;}
.y48_c00390{bottom:253.401882px;}
.y4a_c00390{bottom:253.402038px;}
.y49_c00390{bottom:253.402074px;}
.y4c_c00390{bottom:253.402623px;}
.y4b_c00390{bottom:253.402704px;}
.y4d_c00390{bottom:253.402794px;}
.y3f_c00390{bottom:267.821445px;}
.y40_c00390{bottom:268.527795px;}
.y41_c00390{bottom:269.096067px;}
.y42_c00390{bottom:269.549901px;}
.y43_c00390{bottom:271.105500px;}
.y44_c00390{bottom:271.503912px;}
.y45_c00390{bottom:271.938075px;}
.y46_c00390{bottom:273.210456px;}
.y38_c00390{bottom:285.644022px;}
.y39_c00390{bottom:286.594884px;}
.y3a_c00390{bottom:287.491806px;}
.y3b_c00390{bottom:288.040188px;}
.y3c_c00390{bottom:288.576894px;}
.y3d_c00390{bottom:289.600998px;}
.y3e_c00390{bottom:289.918626px;}
.y32_c00390{bottom:302.924163px;}
.y33_c00390{bottom:303.301125px;}
.y34_c00390{bottom:304.506342px;}
.y35_c00390{bottom:305.429442px;}
.y36_c00390{bottom:305.818494px;}
.y37_c00390{bottom:306.417000px;}
.y28_c00390{bottom:321.287367px;}
.y29_c00390{bottom:321.919446px;}
.y2a_c00390{bottom:322.235850px;}
.y2b_c00390{bottom:322.905249px;}
.y2c_c00390{bottom:323.276235px;}
.y2d_c00390{bottom:323.795841px;}
.y2e_c00390{bottom:323.964570px;}
.y2f_c00390{bottom:324.289410px;}
.y30_c00390{bottom:325.272432px;}
.y31_c00390{bottom:325.565040px;}
.y20_c00390{bottom:336.145326px;}
.y21_c00390{bottom:336.883956px;}
.y22_c00390{bottom:338.469786px;}
.y23_c00390{bottom:339.156858px;}
.y24_c00390{bottom:340.621707px;}
.y25_c00390{bottom:340.896927px;}
.y26_c00390{bottom:341.600406px;}
.y27_c00390{bottom:343.198362px;}
.y17_c00390{bottom:352.886631px;}
.y18_c00390{bottom:352.988097px;}
.y19_c00390{bottom:354.095607px;}
.y1a_c00390{bottom:354.366315px;}
.y1b_c00390{bottom:355.115229px;}
.y1c_c00390{bottom:355.503954px;}
.y1d_c00390{bottom:356.458743px;}
.y1e_c00390{bottom:357.072039px;}
.y1f_c00390{bottom:357.366450px;}
.yf_c00390{bottom:369.626253px;}
.y10_c00390{bottom:370.375581px;}
.y11_c00390{bottom:370.574580px;}
.y12_c00390{bottom:370.871904px;}
.y13_c00390{bottom:371.353251px;}
.y14_c00390{bottom:371.553114px;}
.y15_c00390{bottom:372.427197px;}
.y16_c00390{bottom:372.628866px;}
.y8_c00390{bottom:385.020864px;}
.y9_c00390{bottom:385.375104px;}
.ya_c00390{bottom:387.051237px;}
.yb_c00390{bottom:387.557730px;}
.yc_c00390{bottom:387.917478px;}
.yd_c00390{bottom:388.991538px;}
.ye_c00390{bottom:390.094569px;}
.y1_c00390{bottom:401.494500px;}
.y2_c00390{bottom:401.989707px;}
.y3_c00390{bottom:402.549120px;}
.y4_c00390{bottom:403.769034px;}
.y5_c00390{bottom:404.867043px;}
.y6_c00390{bottom:405.990135px;}
.y7_c00390{bottom:406.471383px;}
.h5_c00390{height:54.608844px;}
.h10_c00390{height:57.750000px;}
.h9_c00390{height:58.809525px;}
.h11_c00390{height:59.850000px;}
.h8_c00390{height:59.859695px;}
.hc_c00390{height:60.900000px;}
.hb_c00390{height:60.909865px;}
.he_c00390{height:63.000000px;}
.h6_c00390{height:63.010205px;}
.h13_c00390{height:65.100000px;}
.h12_c00390{height:66.150000px;}
.h3_c00390{height:66.160715px;}
.hf_c00390{height:67.200000px;}
.h14_c00390{height:68.250000px;}
.h7_c00390{height:68.261056px;}
.hd_c00390{height:70.350000px;}
.ha_c00390{height:70.361396px;}
.h2_c00390{height:73.511906px;}
.h4_c00390{height:92.414968px;}
.h0_c00390{height:613.170000px;}
.h1_c00390{height:613.500000px;}
.w0_c00390{width:359.100000px;}
.w1_c00390{width:359.250000px;}
.x0_c00390{left:0.000000px;}
.x26_c00390{left:10.159059px;}
.xf_c00390{left:20.119467px;}
.x1_c00390{left:21.588000px;}
.x1e_c00390{left:23.421498px;}
.x8_c00390{left:26.433999px;}
.x3f_c00390{left:28.353006px;}
.x47_c00390{left:29.700810px;}
.x57_c00390{left:31.570500px;}
.x6a_c00390{left:32.935500px;}
.x50_c00390{left:35.367000px;}
.x66_c00390{left:39.315000px;}
.x71_c00390{left:42.654000px;}
.x9_c00390{left:46.113999px;}
.x2_c00390{left:49.099500px;}
.x2e_c00390{left:50.926911px;}
.x1f_c00390{left:52.952772px;}
.x51_c00390{left:55.347000px;}
.x38_c00390{left:56.369391px;}
.x72_c00390{left:60.744000px;}
.x4b_c00390{left:62.370000px;}
.x42_c00390{left:67.869906px;}
.x5d_c00390{left:70.738500px;}
.x27_c00390{left:73.355961px;}
.x63_c00390{left:74.968500px;}
.x6b_c00390{left:76.405500px;}
.x73_c00390{left:78.294000px;}
.x3_c00390{left:80.178000px;}
.x40_c00390{left:81.821313px;}
.x39_c00390{left:84.772365px;}
.x5f_c00390{left:86.668500px;}
.x10_c00390{left:88.174026px;}
.x58_c00390{left:94.110000px;}
.x17_c00390{left:96.026514px;}
.x52_c00390{left:100.707000px;}
.x11_c00390{left:106.231794px;}
.x3a_c00390{left:107.484555px;}
.x18_c00390{left:112.983135px;}
.x60_c00390{left:114.748500px;}
.x20_c00390{left:116.379780px;}
.x28_c00390{left:117.963864px;}
.x59_c00390{left:120.387000px;}
.x53_c00390{left:121.767000px;}
.x43_c00390{left:123.797952px;}
.x4d_c00390{left:131.137500px;}
.x12_c00390{left:133.253196px;}
.x33_c00390{left:135.693342px;}
.xa_c00390{left:139.232499px;}
.x29_c00390{left:142.742214px;}
.x21_c00390{left:143.880324px;}
.x48_c00390{left:146.089002px;}
.x4_c00390{left:147.951000px;}
.x6f_c00390{left:149.292000px;}
.x2f_c00390{left:151.394265px;}
.x67_c00390{left:155.133000px;}
.x19_c00390{left:159.757809px;}
.x5a_c00390{left:163.311000px;}
.x6c_c00390{left:165.775500px;}
.xb_c00390{left:167.370999px;}
.x34_c00390{left:169.993584px;}
.x49_c00390{left:173.093250px;}
.x54_c00390{left:174.417000px;}
.x13_c00390{left:177.000204px;}
.x64_c00390{left:178.084500px;}
.x1a_c00390{left:184.021173px;}
.x3b_c00390{left:185.237247px;}
.x74_c00390{left:186.294000px;}
.xc_c00390{left:187.356999px;}
.x2a_c00390{left:188.652198px;}
.x65_c00390{left:191.049000px;}
.x14_c00390{left:195.105972px;}
.x4e_c00390{left:200.452500px;}
.x22_c00390{left:202.503453px;}
.x35_c00390{left:203.561799px;}
.x3c_c00390{left:205.120518px;}
.x5_c00390{left:208.951500px;}
.x2b_c00390{left:210.283359px;}
.x44_c00390{left:211.836615px;}
.x23_c00390{left:213.542076px;}
.x70_c00390{left:216.262500px;}
.x4f_c00390{left:221.328000px;}
.x68_c00390{left:222.657000px;}
.x5e_c00390{left:224.098500px;}
.x3d_c00390{left:226.823235px;}
.x30_c00390{left:228.352581px;}
.x61_c00390{left:234.358500px;}
.x55_c00390{left:240.027000px;}
.x24_c00390{left:241.704039px;}
.x1b_c00390{left:243.733833px;}
.xd_c00390{left:247.026999px;}
.x5b_c00390{left:251.857500px;}
.x6d_c00390{left:255.955500px;}
.x45_c00390{left:257.207649px;}
.x31_c00390{left:260.720064px;}
.x36_c00390{left:267.542094px;}
.x6_c00390{left:271.345500px;}
.x62_c00390{left:272.968500px;}
.x15_c00390{left:274.509462px;}
.x2c_c00390{left:275.815896px;}
.x46_c00390{left:276.915984px;}
.x4a_c00390{left:279.489702px;}
.x1c_c00390{left:282.057210px;}
.x4c_c00390{left:283.500000px;}
.x75_c00390{left:284.574000px;}
.x69_c00390{left:285.838500px;}
.x37_c00390{left:287.438823px;}
.x6e_c00390{left:289.165500px;}
.x3e_c00390{left:290.425440px;}
.x16_c00390{left:292.882284px;}
.x2d_c00390{left:295.322949px;}
.x41_c00390{left:296.774919px;}
.x7_c00390{left:298.081500px;}
.x1d_c00390{left:300.497385px;}
.x5c_c00390{left:302.095500px;}
.x76_c00390{left:303.204000px;}
.x25_c00390{left:305.637993px;}
.xe_c00390{left:308.306499px;}
.x32_c00390{left:310.642464px;}
.x56_c00390{left:311.847000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.fs3_c00390{font-size:48.541195pt;}
.fse_c00390{font-size:51.333333pt;}
.fs7_c00390{font-size:52.275133pt;}
.fsf_c00390{font-size:53.200000pt;}
.fs6_c00390{font-size:53.208618pt;}
.fsa_c00390{font-size:54.133333pt;}
.fs9_c00390{font-size:54.142102pt;}
.fsc_c00390{font-size:56.000000pt;}
.fs4_c00390{font-size:56.009071pt;}
.fs11_c00390{font-size:57.866667pt;}
.fs10_c00390{font-size:58.800000pt;}
.fs1_c00390{font-size:58.809525pt;}
.fsd_c00390{font-size:59.733333pt;}
.fs12_c00390{font-size:60.666667pt;}
.fs5_c00390{font-size:60.676494pt;}
.fsb_c00390{font-size:62.533333pt;}
.fs8_c00390{font-size:62.543463pt;}
.fs0_c00390{font-size:65.343916pt;}
.fs2_c00390{font-size:82.146638pt;}
.y0_c00390{bottom:0.000000pt;}
.y8f_c00390{bottom:29.348000pt;}
.y88_c00390{bottom:40.324000pt;}
.y89_c00390{bottom:42.350667pt;}
.y8a_c00390{bottom:42.582667pt;}
.y8b_c00390{bottom:43.773333pt;}
.y8c_c00390{bottom:44.477333pt;}
.y8d_c00390{bottom:44.853333pt;}
.y8e_c00390{bottom:45.178667pt;}
.y87_c00390{bottom:60.312000pt;}
.y7e_c00390{bottom:74.160000pt;}
.y7f_c00390{bottom:74.613333pt;}
.y80_c00390{bottom:74.928000pt;}
.y81_c00390{bottom:75.806667pt;}
.y82_c00390{bottom:76.321333pt;}
.y83_c00390{bottom:76.490667pt;}
.y84_c00390{bottom:76.768000pt;}
.y85_c00390{bottom:77.666667pt;}
.y86_c00390{bottom:77.973333pt;}
.y74_c00390{bottom:87.121333pt;}
.y75_c00390{bottom:87.336000pt;}
.y76_c00390{bottom:87.652000pt;}
.y77_c00390{bottom:88.505333pt;}
.y78_c00390{bottom:88.934667pt;}
.y79_c00390{bottom:89.096000pt;}
.y7a_c00390{bottom:89.310667pt;}
.y7b_c00390{bottom:89.708000pt;}
.y7c_c00390{bottom:90.288000pt;}
.y7d_c00390{bottom:90.513333pt;}
.y73_c00390{bottom:105.109333pt;}
.y72_c00390{bottom:120.141333pt;}
.y68_c00390{bottom:131.765333pt;}
.y69_c00390{bottom:132.646667pt;}
.y6a_c00390{bottom:132.877333pt;}
.y6b_c00390{bottom:133.344000pt;}
.y6c_c00390{bottom:134.106667pt;}
.y6d_c00390{bottom:134.460000pt;}
.y6e_c00390{bottom:134.782667pt;}
.y6f_c00390{bottom:135.680000pt;}
.y70_c00390{bottom:136.012000pt;}
.y71_c00390{bottom:136.573333pt;}
.y67_c00390{bottom:150.673333pt;}
.y60_c00390{bottom:162.002667pt;}
.y61_c00390{bottom:163.542667pt;}
.y62_c00390{bottom:164.337333pt;}
.y63_c00390{bottom:164.528000pt;}
.y64_c00390{bottom:164.825333pt;}
.y65_c00390{bottom:165.684000pt;}
.y66_c00390{bottom:166.072000pt;}
.y5f_c00390{bottom:180.240000pt;}
.y56_c00390{bottom:194.254421pt;}
.y5a_c00390{bottom:194.254624pt;}
.y57_c00390{bottom:194.254680pt;}
.y59_c00390{bottom:194.254696pt;}
.y5c_c00390{bottom:194.254757pt;}
.y5b_c00390{bottom:194.254843pt;}
.y5d_c00390{bottom:194.255083pt;}
.y58_c00390{bottom:194.255112pt;}
.y5e_c00390{bottom:194.255675pt;}
.y4e_c00390{bottom:208.538035pt;}
.y4f_c00390{bottom:208.939019pt;}
.y50_c00390{bottom:209.436405pt;}
.y51_c00390{bottom:209.580867pt;}
.y52_c00390{bottom:210.064045pt;}
.y53_c00390{bottom:210.219488pt;}
.y54_c00390{bottom:210.622653pt;}
.y55_c00390{bottom:210.797941pt;}
.y47_c00390{bottom:225.245568pt;}
.y48_c00390{bottom:225.246117pt;}
.y4a_c00390{bottom:225.246256pt;}
.y49_c00390{bottom:225.246288pt;}
.y4c_c00390{bottom:225.246776pt;}
.y4b_c00390{bottom:225.246848pt;}
.y4d_c00390{bottom:225.246928pt;}
.y3f_c00390{bottom:238.063507pt;}
.y40_c00390{bottom:238.691373pt;}
.y41_c00390{bottom:239.196504pt;}
.y42_c00390{bottom:239.599912pt;}
.y43_c00390{bottom:240.982667pt;}
.y44_c00390{bottom:241.336811pt;}
.y45_c00390{bottom:241.722733pt;}
.y46_c00390{bottom:242.853739pt;}
.y38_c00390{bottom:253.905797pt;}
.y39_c00390{bottom:254.751008pt;}
.y3a_c00390{bottom:255.548272pt;}
.y3b_c00390{bottom:256.035723pt;}
.y3c_c00390{bottom:256.512795pt;}
.y3d_c00390{bottom:257.423109pt;}
.y3e_c00390{bottom:257.705445pt;}
.y32_c00390{bottom:269.265923pt;}
.y33_c00390{bottom:269.601000pt;}
.y34_c00390{bottom:270.672304pt;}
.y35_c00390{bottom:271.492837pt;}
.y36_c00390{bottom:271.838661pt;}
.y37_c00390{bottom:272.370667pt;}
.y28_c00390{bottom:285.588771pt;}
.y29_c00390{bottom:286.150619pt;}
.y2a_c00390{bottom:286.431867pt;}
.y2b_c00390{bottom:287.026888pt;}
.y2c_c00390{bottom:287.356653pt;}
.y2d_c00390{bottom:287.818525pt;}
.y2e_c00390{bottom:287.968507pt;}
.y2f_c00390{bottom:288.257253pt;}
.y30_c00390{bottom:289.131051pt;}
.y31_c00390{bottom:289.391147pt;}
.y20_c00390{bottom:298.795845pt;}
.y21_c00390{bottom:299.452405pt;}
.y22_c00390{bottom:300.862032pt;}
.y23_c00390{bottom:301.472763pt;}
.y24_c00390{bottom:302.774851pt;}
.y25_c00390{bottom:303.019491pt;}
.y26_c00390{bottom:303.644805pt;}
.y27_c00390{bottom:305.065211pt;}
.y17_c00390{bottom:313.677005pt;}
.y18_c00390{bottom:313.767197pt;}
.y19_c00390{bottom:314.751651pt;}
.y1a_c00390{bottom:314.992280pt;}
.y1b_c00390{bottom:315.657981pt;}
.y1c_c00390{bottom:316.003515pt;}
.y1d_c00390{bottom:316.852216pt;}
.y1e_c00390{bottom:317.397368pt;}
.y1f_c00390{bottom:317.659067pt;}
.yf_c00390{bottom:328.556669pt;}
.y10_c00390{bottom:329.222739pt;}
.y11_c00390{bottom:329.399627pt;}
.y12_c00390{bottom:329.663915pt;}
.y13_c00390{bottom:330.091779pt;}
.y14_c00390{bottom:330.269435pt;}
.y15_c00390{bottom:331.046397pt;}
.y16_c00390{bottom:331.225659pt;}
.y8_c00390{bottom:342.240768pt;}
.y9_c00390{bottom:342.555648pt;}
.ya_c00390{bottom:344.045544pt;}
.yb_c00390{bottom:344.495760pt;}
.yc_c00390{bottom:344.815536pt;}
.yd_c00390{bottom:345.770256pt;}
.ye_c00390{bottom:346.750728pt;}
.y1_c00390{bottom:356.884000pt;}
.y2_c00390{bottom:357.324184pt;}
.y3_c00390{bottom:357.821440pt;}
.y4_c00390{bottom:358.905808pt;}
.y5_c00390{bottom:359.881816pt;}
.y6_c00390{bottom:360.880120pt;}
.y7_c00390{bottom:361.307896pt;}
.h5_c00390{height:48.541195pt;}
.h10_c00390{height:51.333333pt;}
.h9_c00390{height:52.275133pt;}
.h11_c00390{height:53.200000pt;}
.h8_c00390{height:53.208618pt;}
.hc_c00390{height:54.133333pt;}
.hb_c00390{height:54.142102pt;}
.he_c00390{height:56.000000pt;}
.h6_c00390{height:56.009071pt;}
.h13_c00390{height:57.866667pt;}
.h12_c00390{height:58.800000pt;}
.h3_c00390{height:58.809525pt;}
.hf_c00390{height:59.733333pt;}
.h14_c00390{height:60.666667pt;}
.h7_c00390{height:60.676494pt;}
.hd_c00390{height:62.533333pt;}
.ha_c00390{height:62.543463pt;}
.h2_c00390{height:65.343916pt;}
.h4_c00390{height:82.146638pt;}
.h0_c00390{height:545.040000pt;}
.h1_c00390{height:545.333333pt;}
.w0_c00390{width:319.200000pt;}
.w1_c00390{width:319.333333pt;}
.x0_c00390{left:0.000000pt;}
.x26_c00390{left:9.030275pt;}
.xf_c00390{left:17.883971pt;}
.x1_c00390{left:19.189333pt;}
.x1e_c00390{left:20.819109pt;}
.x8_c00390{left:23.496888pt;}
.x3f_c00390{left:25.202672pt;}
.x47_c00390{left:26.400720pt;}
.x57_c00390{left:28.062667pt;}
.x6a_c00390{left:29.276000pt;}
.x50_c00390{left:31.437333pt;}
.x66_c00390{left:34.946667pt;}
.x71_c00390{left:37.914667pt;}
.x9_c00390{left:40.990221pt;}
.x2_c00390{left:43.644000pt;}
.x2e_c00390{left:45.268365pt;}
.x1f_c00390{left:47.069131pt;}
.x51_c00390{left:49.197333pt;}
.x38_c00390{left:50.106125pt;}
.x72_c00390{left:53.994667pt;}
.x4b_c00390{left:55.440000pt;}
.x42_c00390{left:60.328805pt;}
.x5d_c00390{left:62.878667pt;}
.x27_c00390{left:65.205299pt;}
.x63_c00390{left:66.638667pt;}
.x6b_c00390{left:67.916000pt;}
.x73_c00390{left:69.594667pt;}
.x3_c00390{left:71.269333pt;}
.x40_c00390{left:72.730056pt;}
.x39_c00390{left:75.353213pt;}
.x5f_c00390{left:77.038667pt;}
.x10_c00390{left:78.376912pt;}
.x58_c00390{left:83.653333pt;}
.x17_c00390{left:85.356901pt;}
.x52_c00390{left:89.517333pt;}
.x11_c00390{left:94.428261pt;}
.x3a_c00390{left:95.541827pt;}
.x18_c00390{left:100.429453pt;}
.x60_c00390{left:101.998667pt;}
.x20_c00390{left:103.448693pt;}
.x28_c00390{left:104.856768pt;}
.x59_c00390{left:107.010667pt;}
.x53_c00390{left:108.237333pt;}
.x43_c00390{left:110.042624pt;}
.x4d_c00390{left:116.566667pt;}
.x12_c00390{left:118.447285pt;}
.x33_c00390{left:120.616304pt;}
.xa_c00390{left:123.762221pt;}
.x29_c00390{left:126.881968pt;}
.x21_c00390{left:127.893621pt;}
.x48_c00390{left:129.856891pt;}
.x4_c00390{left:131.512000pt;}
.x6f_c00390{left:132.704000pt;}
.x2f_c00390{left:134.572680pt;}
.x67_c00390{left:137.896000pt;}
.x19_c00390{left:142.006941pt;}
.x5a_c00390{left:145.165333pt;}
.x6c_c00390{left:147.356000pt;}
.xb_c00390{left:148.774221pt;}
.x34_c00390{left:151.105408pt;}
.x49_c00390{left:153.860667pt;}
.x54_c00390{left:155.037333pt;}
.x13_c00390{left:157.333515pt;}
.x64_c00390{left:158.297333pt;}
.x1a_c00390{left:163.574376pt;}
.x3b_c00390{left:164.655331pt;}
.x74_c00390{left:165.594667pt;}
.xc_c00390{left:166.539555pt;}
.x2a_c00390{left:167.690843pt;}
.x65_c00390{left:169.821333pt;}
.x14_c00390{left:173.427531pt;}
.x4e_c00390{left:178.180000pt;}
.x22_c00390{left:180.003069pt;}
.x35_c00390{left:180.943821pt;}
.x3c_c00390{left:182.329349pt;}
.x5_c00390{left:185.734667pt;}
.x2b_c00390{left:186.918541pt;}
.x44_c00390{left:188.299213pt;}
.x23_c00390{left:189.815179pt;}
.x70_c00390{left:192.233333pt;}
.x4f_c00390{left:196.736000pt;}
.x68_c00390{left:197.917333pt;}
.x5e_c00390{left:199.198667pt;}
.x3d_c00390{left:201.620653pt;}
.x30_c00390{left:202.980072pt;}
.x61_c00390{left:208.318667pt;}
.x55_c00390{left:213.357333pt;}
.x24_c00390{left:214.848035pt;}
.x1b_c00390{left:216.652296pt;}
.xd_c00390{left:219.579555pt;}
.x5b_c00390{left:223.873333pt;}
.x6d_c00390{left:227.516000pt;}
.x45_c00390{left:228.629021pt;}
.x31_c00390{left:231.751168pt;}
.x36_c00390{left:237.815195pt;}
.x6_c00390{left:241.196000pt;}
.x62_c00390{left:242.638667pt;}
.x15_c00390{left:244.008411pt;}
.x2c_c00390{left:245.169685pt;}
.x46_c00390{left:246.147541pt;}
.x4a_c00390{left:248.435291pt;}
.x1c_c00390{left:250.717520pt;}
.x4c_c00390{left:252.000000pt;}
.x75_c00390{left:252.954667pt;}
.x69_c00390{left:254.078667pt;}
.x37_c00390{left:255.501176pt;}
.x6e_c00390{left:257.036000pt;}
.x3e_c00390{left:258.155947pt;}
.x16_c00390{left:260.339808pt;}
.x2d_c00390{left:262.509288pt;}
.x41_c00390{left:263.799928pt;}
.x7_c00390{left:264.961333pt;}
.x1d_c00390{left:267.108787pt;}
.x5c_c00390{left:268.529333pt;}
.x76_c00390{left:269.514667pt;}
.x25_c00390{left:271.678216pt;}
.xe_c00390{left:274.050221pt;}
.x32_c00390{left:276.126635pt;}
.x56_c00390{left:277.197333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00391 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00391 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00391 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00391 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00391.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00391{transform:matrix(0.047470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047470,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.070280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070280,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.078625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078625,0.000000,0.000000,0.250000,0,0);}
.m32_c00391{transform:matrix(0.114415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114415,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.122945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122945,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.131270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131270,0.000000,0.000000,0.250000,0,0);}
.m15_c00391{transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131710,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.138530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138530,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.164590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164590,0.000000,0.000000,0.250000,0,0);}
.m20_c00391{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168340,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m1d_c00391{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m25_c00391{transform:matrix(0.175345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175345,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m3f_c00391{transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188565,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m29_c00391{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m31_c00391{transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200020,0.000000,0.000000,0.250000,0,0);}
.m1e_c00391{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00391{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m40_c00391{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00391{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.m23_c00391{transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221465,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m3a_c00391{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00391{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m36_c00391{transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);}
.m2c_c00391{transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00391{transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00391{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m35_c00391{transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m22_c00391{transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);}
.m38_c00391{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m30_c00391{transform:matrix(0.282835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282835,0.000000,0.000000,0.250000,0,0);}
.m41_c00391{transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);}
.m33_c00391{transform:matrix(0.306010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306010,0.000000,0.000000,0.250000,0,0);}
.m27_c00391{transform:matrix(0.306385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306385,0.000000,0.000000,0.250000,0,0);}
.m37_c00391{transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);}
.m28_c00391{transform:matrix(0.310190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310190,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);}
.m39_c00391{transform:matrix(0.349970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349970,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352710,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.366680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366680,0.000000,0.000000,0.250000,0,0);}
.m21_c00391{transform:matrix(0.436540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436540,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.443060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443060,0.000000,0.000000,0.250000,0,0);}
.m2e_c00391{transform:matrix(0.558205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558205,0.000000,0.000000,0.250000,0,0);}
.m34_c00391{transform:matrix(0.595035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595035,0.000000,0.000000,0.250000,0,0);}
.m2f_c00391{transform:matrix(0.595790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595790,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{transform:matrix(0.726665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726665,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.994360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994360,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(1.030570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030570,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
.fc0_c00391{color:transparent;}
.fs0_c00391{font-size:22.050000px;}
.fs8_c00391{font-size:45.150000px;}
.fs2_c00391{font-size:46.200000px;}
.fs6_c00391{font-size:53.550000px;}
.fs5_c00391{font-size:59.850000px;}
.fs7_c00391{font-size:60.900000px;}
.fs3_c00391{font-size:64.050000px;}
.fs1_c00391{font-size:68.250000px;}
.fs4_c00391{font-size:88.200000px;}
.y0_c00391{bottom:0.000000px;}
.y3a_c00391{bottom:24.582000px;}
.y3b_c00391{bottom:25.567500px;}
.y3c_c00391{bottom:26.002500px;}
.y3d_c00391{bottom:26.544000px;}
.y3e_c00391{bottom:29.062500px;}
.y3f_c00391{bottom:29.823000px;}
.y40_c00391{bottom:30.711000px;}
.y41_c00391{bottom:32.694000px;}
.y33_c00391{bottom:42.934500px;}
.y34_c00391{bottom:44.667000px;}
.y2e_c00391{bottom:46.750500px;}
.y35_c00391{bottom:47.347500px;}
.y36_c00391{bottom:48.507000px;}
.y2f_c00391{bottom:48.984000px;}
.y37_c00391{bottom:49.168500px;}
.y30_c00391{bottom:50.227500px;}
.y38_c00391{bottom:52.708500px;}
.y31_c00391{bottom:54.060000px;}
.y32_c00391{bottom:56.952000px;}
.y39_c00391{bottom:57.285000px;}
.y27_c00391{bottom:64.798500px;}
.y28_c00391{bottom:65.220000px;}
.y29_c00391{bottom:65.922000px;}
.y2a_c00391{bottom:66.322500px;}
.y2b_c00391{bottom:67.150500px;}
.y2c_c00391{bottom:67.348500px;}
.y2d_c00391{bottom:68.269500px;}
.y20_c00391{bottom:80.746500px;}
.y21_c00391{bottom:84.598500px;}
.y22_c00391{bottom:86.826000px;}
.y23_c00391{bottom:87.444000px;}
.y24_c00391{bottom:89.310000px;}
.y25_c00391{bottom:90.684000px;}
.y17_c00391{bottom:90.724500px;}
.y18_c00391{bottom:91.198500px;}
.y19_c00391{bottom:93.630000px;}
.y26_c00391{bottom:94.176000px;}
.y1a_c00391{bottom:94.810500px;}
.y1b_c00391{bottom:96.421500px;}
.y1c_c00391{bottom:97.189500px;}
.y1d_c00391{bottom:97.842000px;}
.y1e_c00391{bottom:99.877500px;}
.y10_c00391{bottom:100.482000px;}
.y1f_c00391{bottom:101.290500px;}
.y11_c00391{bottom:102.454500px;}
.y12_c00391{bottom:103.725000px;}
.y13_c00391{bottom:105.735000px;}
.y14_c00391{bottom:109.669500px;}
.y15_c00391{bottom:110.962500px;}
.y9_c00391{bottom:112.960500px;}
.y16_c00391{bottom:116.382000px;}
.ya_c00391{bottom:117.960000px;}
.yb_c00391{bottom:119.967000px;}
.yc_c00391{bottom:122.427000px;}
.yd_c00391{bottom:125.397000px;}
.ye_c00391{bottom:126.900000px;}
.yf_c00391{bottom:128.824500px;}
.y3_c00391{bottom:143.653500px;}
.y4_c00391{bottom:146.632500px;}
.y5_c00391{bottom:147.973500px;}
.y2_c00391{bottom:149.032500px;}
.y6_c00391{bottom:149.677500px;}
.y7_c00391{bottom:151.338000px;}
.y8_c00391{bottom:153.903000px;}
.y1_c00391{bottom:434.571000px;}
.h2_c00391{height:22.050000px;}
.ha_c00391{height:45.150000px;}
.h4_c00391{height:46.200000px;}
.h8_c00391{height:53.550000px;}
.h7_c00391{height:59.850000px;}
.h9_c00391{height:60.900000px;}
.h5_c00391{height:64.050000px;}
.h3_c00391{height:68.250000px;}
.h6_c00391{height:88.200000px;}
.h0_c00391{height:613.170000px;}
.h1_c00391{height:613.500000px;}
.w0_c00391{width:359.100000px;}
.w1_c00391{width:359.250000px;}
.x0_c00391{left:0.000000px;}
.x2c_c00391{left:27.666000px;}
.x20_c00391{left:28.996500px;}
.x2_c00391{left:30.510000px;}
.xb_c00391{left:31.525500px;}
.x18_c00391{left:35.812500px;}
.x5_c00391{left:48.156000px;}
.x3_c00391{left:49.950000px;}
.x25_c00391{left:60.835500px;}
.x12_c00391{left:62.743500px;}
.x28_c00391{left:68.293500px;}
.x4_c00391{left:77.760000px;}
.x30_c00391{left:80.007000px;}
.x13_c00391{left:83.916000px;}
.x29_c00391{left:89.359500px;}
.x31_c00391{left:94.042500px;}
.xc_c00391{left:108.433500px;}
.x32_c00391{left:111.490500px;}
.x19_c00391{left:114.334500px;}
.x2d_c00391{left:115.938000px;}
.x14_c00391{left:117.421500px;}
.x6_c00391{left:122.632500px;}
.xd_c00391{left:139.315500px;}
.x1a_c00391{left:146.230500px;}
.x2e_c00391{left:152.337000px;}
.x2a_c00391{left:154.315500px;}
.x7_c00391{left:156.156000px;}
.x21_c00391{left:168.549000px;}
.xe_c00391{left:177.156000px;}
.x15_c00391{left:182.995500px;}
.x1b_c00391{left:189.760500px;}
.x33_c00391{left:192.750000px;}
.x8_c00391{left:198.769500px;}
.x2b_c00391{left:203.332500px;}
.x16_c00391{left:204.555000px;}
.x22_c00391{left:207.430500px;}
.x26_c00391{left:209.355000px;}
.x1c_c00391{left:210.532500px;}
.x34_c00391{left:217.263000px;}
.xf_c00391{left:222.846000px;}
.x27_c00391{left:224.553000px;}
.x1d_c00391{left:228.148500px;}
.x23_c00391{left:236.064000px;}
.x9_c00391{left:240.283500px;}
.x10_c00391{left:245.968500px;}
.x1_c00391{left:270.270000px;}
.x11_c00391{left:275.583000px;}
.x1e_c00391{left:283.162500px;}
.x17_c00391{left:294.891000px;}
.xa_c00391{left:304.408500px;}
.x24_c00391{left:308.809500px;}
.x35_c00391{left:309.867000px;}
.x2f_c00391{left:314.646000px;}
.x1f_c00391{left:321.360000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.fs0_c00391{font-size:19.600000pt;}
.fs8_c00391{font-size:40.133333pt;}
.fs2_c00391{font-size:41.066667pt;}
.fs6_c00391{font-size:47.600000pt;}
.fs5_c00391{font-size:53.200000pt;}
.fs7_c00391{font-size:54.133333pt;}
.fs3_c00391{font-size:56.933333pt;}
.fs1_c00391{font-size:60.666667pt;}
.fs4_c00391{font-size:78.400000pt;}
.y0_c00391{bottom:0.000000pt;}
.y3a_c00391{bottom:21.850667pt;}
.y3b_c00391{bottom:22.726667pt;}
.y3c_c00391{bottom:23.113333pt;}
.y3d_c00391{bottom:23.594667pt;}
.y3e_c00391{bottom:25.833333pt;}
.y3f_c00391{bottom:26.509333pt;}
.y40_c00391{bottom:27.298667pt;}
.y41_c00391{bottom:29.061333pt;}
.y33_c00391{bottom:38.164000pt;}
.y34_c00391{bottom:39.704000pt;}
.y2e_c00391{bottom:41.556000pt;}
.y35_c00391{bottom:42.086667pt;}
.y36_c00391{bottom:43.117333pt;}
.y2f_c00391{bottom:43.541333pt;}
.y37_c00391{bottom:43.705333pt;}
.y30_c00391{bottom:44.646667pt;}
.y38_c00391{bottom:46.852000pt;}
.y31_c00391{bottom:48.053333pt;}
.y32_c00391{bottom:50.624000pt;}
.y39_c00391{bottom:50.920000pt;}
.y27_c00391{bottom:57.598667pt;}
.y28_c00391{bottom:57.973333pt;}
.y29_c00391{bottom:58.597333pt;}
.y2a_c00391{bottom:58.953333pt;}
.y2b_c00391{bottom:59.689333pt;}
.y2c_c00391{bottom:59.865333pt;}
.y2d_c00391{bottom:60.684000pt;}
.y20_c00391{bottom:71.774667pt;}
.y21_c00391{bottom:75.198667pt;}
.y22_c00391{bottom:77.178667pt;}
.y23_c00391{bottom:77.728000pt;}
.y24_c00391{bottom:79.386667pt;}
.y25_c00391{bottom:80.608000pt;}
.y17_c00391{bottom:80.644000pt;}
.y18_c00391{bottom:81.065333pt;}
.y19_c00391{bottom:83.226667pt;}
.y26_c00391{bottom:83.712000pt;}
.y1a_c00391{bottom:84.276000pt;}
.y1b_c00391{bottom:85.708000pt;}
.y1c_c00391{bottom:86.390667pt;}
.y1d_c00391{bottom:86.970667pt;}
.y1e_c00391{bottom:88.780000pt;}
.y10_c00391{bottom:89.317333pt;}
.y1f_c00391{bottom:90.036000pt;}
.y11_c00391{bottom:91.070667pt;}
.y12_c00391{bottom:92.200000pt;}
.y13_c00391{bottom:93.986667pt;}
.y14_c00391{bottom:97.484000pt;}
.y15_c00391{bottom:98.633333pt;}
.y9_c00391{bottom:100.409333pt;}
.y16_c00391{bottom:103.450667pt;}
.ya_c00391{bottom:104.853333pt;}
.yb_c00391{bottom:106.637333pt;}
.yc_c00391{bottom:108.824000pt;}
.yd_c00391{bottom:111.464000pt;}
.ye_c00391{bottom:112.800000pt;}
.yf_c00391{bottom:114.510667pt;}
.y3_c00391{bottom:127.692000pt;}
.y4_c00391{bottom:130.340000pt;}
.y5_c00391{bottom:131.532000pt;}
.y2_c00391{bottom:132.473333pt;}
.y6_c00391{bottom:133.046667pt;}
.y7_c00391{bottom:134.522667pt;}
.y8_c00391{bottom:136.802667pt;}
.y1_c00391{bottom:386.285333pt;}
.h2_c00391{height:19.600000pt;}
.ha_c00391{height:40.133333pt;}
.h4_c00391{height:41.066667pt;}
.h8_c00391{height:47.600000pt;}
.h7_c00391{height:53.200000pt;}
.h9_c00391{height:54.133333pt;}
.h5_c00391{height:56.933333pt;}
.h3_c00391{height:60.666667pt;}
.h6_c00391{height:78.400000pt;}
.h0_c00391{height:545.040000pt;}
.h1_c00391{height:545.333333pt;}
.w0_c00391{width:319.200000pt;}
.w1_c00391{width:319.333333pt;}
.x0_c00391{left:0.000000pt;}
.x2c_c00391{left:24.592000pt;}
.x20_c00391{left:25.774667pt;}
.x2_c00391{left:27.120000pt;}
.xb_c00391{left:28.022667pt;}
.x18_c00391{left:31.833333pt;}
.x5_c00391{left:42.805333pt;}
.x3_c00391{left:44.400000pt;}
.x25_c00391{left:54.076000pt;}
.x12_c00391{left:55.772000pt;}
.x28_c00391{left:60.705333pt;}
.x4_c00391{left:69.120000pt;}
.x30_c00391{left:71.117333pt;}
.x13_c00391{left:74.592000pt;}
.x29_c00391{left:79.430667pt;}
.x31_c00391{left:83.593333pt;}
.xc_c00391{left:96.385333pt;}
.x32_c00391{left:99.102667pt;}
.x19_c00391{left:101.630667pt;}
.x2d_c00391{left:103.056000pt;}
.x14_c00391{left:104.374667pt;}
.x6_c00391{left:109.006667pt;}
.xd_c00391{left:123.836000pt;}
.x1a_c00391{left:129.982667pt;}
.x2e_c00391{left:135.410667pt;}
.x2a_c00391{left:137.169333pt;}
.x7_c00391{left:138.805333pt;}
.x21_c00391{left:149.821333pt;}
.xe_c00391{left:157.472000pt;}
.x15_c00391{left:162.662667pt;}
.x1b_c00391{left:168.676000pt;}
.x33_c00391{left:171.333333pt;}
.x8_c00391{left:176.684000pt;}
.x2b_c00391{left:180.740000pt;}
.x16_c00391{left:181.826667pt;}
.x22_c00391{left:184.382667pt;}
.x26_c00391{left:186.093333pt;}
.x1c_c00391{left:187.140000pt;}
.x34_c00391{left:193.122667pt;}
.xf_c00391{left:198.085333pt;}
.x27_c00391{left:199.602667pt;}
.x1d_c00391{left:202.798667pt;}
.x23_c00391{left:209.834667pt;}
.x9_c00391{left:213.585333pt;}
.x10_c00391{left:218.638667pt;}
.x1_c00391{left:240.240000pt;}
.x11_c00391{left:244.962667pt;}
.x1e_c00391{left:251.700000pt;}
.x17_c00391{left:262.125333pt;}
.xa_c00391{left:270.585333pt;}
.x24_c00391{left:274.497333pt;}
.x35_c00391{left:275.437333pt;}
.x2f_c00391{left:279.685333pt;}
.x1f_c00391{left:285.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00392 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00392 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00392 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00392 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00392.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00392{transform:matrix(0.013630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013630,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);}
.m49_c00392{transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);}
.ma6_c00392{transform:matrix(0.093505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00392{transform:matrix(0.094120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094120,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138880,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.146135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146135,0.000000,0.000000,0.250000,0,0);}
.mc6_c00392{transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);}
.mc1_c00392{transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00392{transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);}
.mcc_c00392{transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);}
.m41_c00392{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.mca_c00392{transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m60_c00392{transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157840,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m96_c00392{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160780,0.000000,0.000000,0.250000,0,0);}
.mad_c00392{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m66_c00392{transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);}
.mc0_c00392{transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161665,0.000000,0.000000,0.250000,0,0);}
.m24_c00392{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.mc7_c00392{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.mc8_c00392{transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.m46_c00392{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.m8f_c00392{transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169220,0.000000,0.000000,0.250000,0,0);}
.m29_c00392{transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);}
.m36_c00392{transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);}
.ma8_c00392{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.m5d_c00392{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.maf_c00392{transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173195,0.000000,0.000000,0.250000,0,0);}
.m83_c00392{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.mbd_c00392{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m67_c00392{transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.mcb_c00392{transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177580,0.000000,0.000000,0.250000,0,0);}
.mc3_c00392{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mc2_c00392{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.mcd_c00392{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m85_c00392{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.mf2_c00392{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m30_c00392{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.m6f_c00392{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.m9d_c00392{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.mf4_c00392{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.mc5_c00392{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00392{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m51_c00392{transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185305,0.000000,0.000000,0.250000,0,0);}
.m5c_c00392{transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185510,0.000000,0.000000,0.250000,0,0);}
.mf5_c00392{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m79_c00392{transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185695,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186105,0.000000,0.000000,0.250000,0,0);}
.m68_c00392{transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186560,0.000000,0.000000,0.250000,0,0);}
.m23_c00392{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m7c_c00392{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.m93_c00392{transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186920,0.000000,0.000000,0.250000,0,0);}
.m7f_c00392{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.mdd_c00392{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.mbf_c00392{transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m8c_c00392{transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188610,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.189495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189495,0.000000,0.000000,0.250000,0,0);}
.m57_c00392{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m44_c00392{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m40_c00392{transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190655,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191035,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.mef_c00392{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.m3e_c00392{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.mbe_c00392{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.mf0_c00392{transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00392{transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192815,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m21_c00392{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.m88_c00392{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.m78_c00392{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.me8_c00392{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m50_c00392{transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194420,0.000000,0.000000,0.250000,0,0);}
.md6_c00392{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m55_c00392{transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);}
.m35_c00392{transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);}
.me5_c00392{transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);}
.md7_c00392{transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);}
.mab_c00392{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.mae_c00392{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.md4_c00392{transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m70_c00392{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00392{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m47_c00392{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00392{transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);}
.mf1_c00392{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.m58_c00392{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m4f_c00392{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.mb1_c00392{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.maa_c00392{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m62_c00392{transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);}
.me6_c00392{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203130,0.000000,0.000000,0.250000,0,0);}
.m3c_c00392{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.m7a_c00392{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m61_c00392{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.m95_c00392{transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205810,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m94_c00392{transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206860,0.000000,0.000000,0.250000,0,0);}
.m9e_c00392{transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206880,0.000000,0.000000,0.250000,0,0);}
.m72_c00392{transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);}
.m5e_c00392{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m90_c00392{transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00392{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.mce_c00392{transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);}
.m8d_c00392{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m6d_c00392{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.m6e_c00392{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.m9a_c00392{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m63_c00392{transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208785,0.000000,0.000000,0.250000,0,0);}
.ma5_c00392{transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);}
.m3d_c00392{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m42_c00392{transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);}
.mb3_c00392{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m98_c00392{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m6a_c00392{transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210965,0.000000,0.000000,0.250000,0,0);}
.m91_c00392{transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);}
.m48_c00392{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m7e_c00392{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.mdf_c00392{transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212145,0.000000,0.000000,0.250000,0,0);}
.ma9_c00392{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.m92_c00392{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.m81_c00392{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.m39_c00392{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m31_c00392{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m9f_c00392{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.mf3_c00392{transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215160,0.000000,0.000000,0.250000,0,0);}
.mb5_c00392{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.m7b_c00392{transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);}
.m97_c00392{transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);}
.mac_c00392{transform:matrix(0.215970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215970,0.000000,0.000000,0.250000,0,0);}
.m52_c00392{transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);}
.m6c_c00392{transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217410,0.000000,0.000000,0.250000,0,0);}
.md3_c00392{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.ma0_c00392{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m8e_c00392{transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);}
.m73_c00392{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);}
.m2c_c00392{transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);}
.mb4_c00392{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.ma4_c00392{transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);}
.mf6_c00392{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m7d_c00392{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m64_c00392{transform:matrix(0.222020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222020,0.000000,0.000000,0.250000,0,0);}
.m6b_c00392{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.mb0_c00392{transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);}
.mda_c00392{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m84_c00392{transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);}
.m89_c00392{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);}
.md2_c00392{transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);}
.m99_c00392{transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);}
.m9b_c00392{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.mbb_c00392{transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);}
.m8b_c00392{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00392{transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);}
.me7_c00392{transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.m53_c00392{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00392{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m5f_c00392{transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.me0_c00392{transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);}
.m59_c00392{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.md0_c00392{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.mb8_c00392{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.ma3_c00392{transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);}
.md9_c00392{transform:matrix(0.234460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234460,0.000000,0.000000,0.250000,0,0);}
.m3a_c00392{transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);}
.m65_c00392{transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236140,0.000000,0.000000,0.250000,0,0);}
.mde_c00392{transform:matrix(0.236590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236590,0.000000,0.000000,0.250000,0,0);}
.m87_c00392{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m56_c00392{transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236790,0.000000,0.000000,0.250000,0,0);}
.m54_c00392{transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);}
.mb7_c00392{transform:matrix(0.237255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237255,0.000000,0.000000,0.250000,0,0);}
.m82_c00392{transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m76_c00392{transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);}
.m69_c00392{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.m33_c00392{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m4e_c00392{transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);}
.mb9_c00392{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.mba_c00392{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m86_c00392{transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);}
.mbc_c00392{transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);}
.md8_c00392{transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);}
.md1_c00392{transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);}
.mcf_c00392{transform:matrix(0.257885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257885,0.000000,0.000000,0.250000,0,0);}
.md5_c00392{transform:matrix(0.261605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261605,0.000000,0.000000,0.250000,0,0);}
.mee_c00392{transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);}
.me4_c00392{transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);}
.m71_c00392{transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.m75_c00392{transform:matrix(0.269970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269970,0.000000,0.000000,0.250000,0,0);}
.m45_c00392{transform:matrix(0.270905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270905,0.000000,0.000000,0.250000,0,0);}
.me3_c00392{transform:matrix(0.276235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276235,0.000000,0.000000,0.250000,0,0);}
.me1_c00392{transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00392{transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);}
.ma1_c00392{transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296660,0.000000,0.000000,0.250000,0,0);}
.mea_c00392{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00392{transform:matrix(0.301185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00392{transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);}
.mec_c00392{transform:matrix(0.322770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322770,0.000000,0.000000,0.250000,0,0);}
.mdc_c00392{transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325700,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);}
.me9_c00392{transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);}
.meb_c00392{transform:matrix(0.342890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342890,0.000000,0.000000,0.250000,0,0);}
.me2_c00392{transform:matrix(0.348100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348100,0.000000,0.000000,0.250000,0,0);}
.med_c00392{transform:matrix(0.351445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351445,0.000000,0.000000,0.250000,0,0);}
.ma2_c00392{transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);}
.m77_c00392{transform:matrix(0.355625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355625,0.000000,0.000000,0.250000,0,0);}
.m74_c00392{transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.379480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379480,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.412445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412445,0.000000,0.000000,0.250000,0,0);}
.m4d_c00392{transform:matrix(0.980715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980715,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:0.000000px;}
.fc0_c00392{color:transparent;}
.fsf_c00392{font-size:43.050000px;}
.fse_c00392{font-size:54.600000px;}
.fsb_c00392{font-size:55.650000px;}
.fs9_c00392{font-size:57.750000px;}
.fs7_c00392{font-size:58.800000px;}
.fs6_c00392{font-size:59.850000px;}
.fs2_c00392{font-size:60.900000px;}
.fs5_c00392{font-size:61.950000px;}
.fsc_c00392{font-size:63.000000px;}
.fs3_c00392{font-size:64.050000px;}
.fsa_c00392{font-size:65.100000px;}
.fs4_c00392{font-size:66.150000px;}
.fs8_c00392{font-size:67.200000px;}
.fsd_c00392{font-size:69.300000px;}
.fs0_c00392{font-size:71.400000px;}
.fs1_c00392{font-size:72.450000px;}
.y0_c00392{bottom:0.000000px;}
.y33_c00392{bottom:29.703000px;}
.y32_c00392{bottom:45.505500px;}
.y31_c00392{bottom:45.795000px;}
.y30_c00392{bottom:46.635000px;}
.y2f_c00392{bottom:46.786500px;}
.y2e_c00392{bottom:47.697000px;}
.y2d_c00392{bottom:48.331500px;}
.y2c_c00392{bottom:61.903500px;}
.y2b_c00392{bottom:80.311500px;}
.y2a_c00392{bottom:95.758500px;}
.y29_c00392{bottom:113.341500px;}
.y28_c00392{bottom:130.680000px;}
.y27_c00392{bottom:146.988000px;}
.y26_c00392{bottom:165.339000px;}
.y25_c00392{bottom:181.047000px;}
.y24_c00392{bottom:196.996500px;}
.y23_c00392{bottom:215.070000px;}
.y22_c00392{bottom:232.560000px;}
.y21_c00392{bottom:249.240000px;}
.y20_c00392{bottom:266.638500px;}
.y1f_c00392{bottom:283.768500px;}
.y1e_c00392{bottom:300.540000px;}
.y1d_c00392{bottom:318.121500px;}
.y1c_c00392{bottom:334.650000px;}
.y1b_c00392{bottom:351.682500px;}
.y1a_c00392{bottom:365.671500px;}
.y19_c00392{bottom:383.431500px;}
.y18_c00392{bottom:400.290000px;}
.y17_c00392{bottom:417.772500px;}
.y16_c00392{bottom:434.902500px;}
.y15_c00392{bottom:451.405500px;}
.y14_c00392{bottom:467.968500px;}
.y13_c00392{bottom:484.734000px;}
.yb_c00392{bottom:500.581500px;}
.yc_c00392{bottom:501.100500px;}
.yd_c00392{bottom:501.829500px;}
.ye_c00392{bottom:501.988500px;}
.yf_c00392{bottom:502.209000px;}
.y10_c00392{bottom:502.720500px;}
.y11_c00392{bottom:503.475000px;}
.y12_c00392{bottom:503.704500px;}
.ya_c00392{bottom:519.888000px;}
.y9_c00392{bottom:536.757000px;}
.y2_c00392{bottom:552.691500px;}
.y3_c00392{bottom:553.734000px;}
.y4_c00392{bottom:554.338500px;}
.y5_c00392{bottom:554.991000px;}
.y6_c00392{bottom:556.027500px;}
.y7_c00392{bottom:556.168500px;}
.y8_c00392{bottom:556.470000px;}
.y1_c00392{bottom:569.433000px;}
.h11_c00392{height:43.050000px;}
.h10_c00392{height:54.600000px;}
.hd_c00392{height:55.650000px;}
.hb_c00392{height:57.750000px;}
.h9_c00392{height:58.800000px;}
.h8_c00392{height:59.850000px;}
.h4_c00392{height:60.900000px;}
.h7_c00392{height:61.950000px;}
.he_c00392{height:63.000000px;}
.h5_c00392{height:64.050000px;}
.hc_c00392{height:65.100000px;}
.h6_c00392{height:66.150000px;}
.ha_c00392{height:67.200000px;}
.hf_c00392{height:69.300000px;}
.h2_c00392{height:71.400000px;}
.h3_c00392{height:72.450000px;}
.h0_c00392{height:613.170000px;}
.h1_c00392{height:613.500000px;}
.w0_c00392{width:359.100000px;}
.w1_c00392{width:359.250000px;}
.x0_c00392{left:0.000000px;}
.xb_c00392{left:25.650000px;}
.x4_c00392{left:26.934000px;}
.x4a_c00392{left:28.078500px;}
.x57_c00392{left:29.428500px;}
.x3b_c00392{left:30.778500px;}
.x77_c00392{left:32.130000px;}
.x80_c00392{left:34.290000px;}
.x65_c00392{left:35.908500px;}
.x7c_c00392{left:36.990000px;}
.x6d_c00392{left:38.610000px;}
.x54_c00392{left:41.848500px;}
.x32_c00392{left:48.328500px;}
.x2c_c00392{left:52.648500px;}
.x52_c00392{left:54.268500px;}
.x43_c00392{left:58.588500px;}
.x3f_c00392{left:60.748500px;}
.x1d_c00392{left:62.908500px;}
.xc_c00392{left:64.800000px;}
.x12_c00392{left:66.150000px;}
.x78_c00392{left:69.390000px;}
.x19_c00392{left:70.632000px;}
.x5e_c00392{left:74.518500px;}
.x27_c00392{left:75.868500px;}
.x46_c00392{left:77.488500px;}
.x6f_c00392{left:79.380000px;}
.x1e_c00392{left:81.538500px;}
.xd_c00392{left:83.430000px;}
.x4b_c00392{left:84.778500px;}
.x5a_c00392{left:88.018500px;}
.x2d_c00392{left:92.338500px;}
.x72_c00392{left:93.420000px;}
.x1f_c00392{left:95.038500px;}
.x66_c00392{left:96.928500px;}
.x28_c00392{left:99.088500px;}
.x5_c00392{left:101.401500px;}
.x5f_c00392{left:103.138500px;}
.x4f_c00392{left:104.488500px;}
.x3c_c00392{left:106.378500px;}
.x55_c00392{left:107.728500px;}
.x23_c00392{left:111.238500px;}
.x33_c00392{left:112.318500px;}
.x38_c00392{left:116.098500px;}
.x6a_c00392{left:122.578500px;}
.x2e_c00392{left:123.658500px;}
.x29_c00392{left:129.328500px;}
.x13_c00392{left:132.300000px;}
.x67_c00392{left:133.648500px;}
.x79_c00392{left:135.810000px;}
.x53_c00392{left:139.048500px;}
.x3e_c00392{left:140.668500px;}
.x6_c00392{left:144.568500px;}
.x3d_c00392{left:146.068500px;}
.x39_c00392{left:147.688500px;}
.x40_c00392{left:149.578500px;}
.x56_c00392{left:150.928500px;}
.x47_c00392{left:154.438500px;}
.x5b_c00392{left:157.138500px;}
.x70_c00392{left:158.490000px;}
.xe_c00392{left:161.190000px;}
.x68_c00392{left:162.268500px;}
.x1_c00392{left:163.350000px;}
.x58_c00392{left:164.428500px;}
.x73_c00392{left:166.050000px;}
.x2a_c00392{left:169.018500px;}
.x50_c00392{left:170.368500px;}
.x14_c00392{left:171.450000px;}
.x20_c00392{left:177.118500px;}
.x2f_c00392{left:178.468500px;}
.x60_c00392{left:184.138500px;}
.x7e_c00392{left:186.757500px;}
.x24_c00392{left:188.998500px;}
.x6b_c00392{left:190.078500px;}
.x7_c00392{left:191.220000px;}
.x41_c00392{left:194.398500px;}
.xf_c00392{left:195.480000px;}
.x34_c00392{left:196.828500px;}
.x61_c00392{left:198.448500px;}
.x44_c00392{left:201.688500px;}
.x15_c00392{left:203.310000px;}
.x1a_c00392{left:205.612500px;}
.x4c_c00392{left:207.088500px;}
.x48_c00392{left:210.328500px;}
.x74_c00392{left:215.460000px;}
.x81_c00392{left:220.050000px;}
.x5c_c00392{left:221.128500px;}
.x6c_c00392{left:223.828500px;}
.x7a_c00392{left:226.530000px;}
.x2_c00392{left:228.690000px;}
.x75_c00392{left:230.310000px;}
.x10_c00392{left:231.390000px;}
.x7d_c00392{left:233.010000px;}
.x6e_c00392{left:236.520000px;}
.x49_c00392{left:240.028500px;}
.x30_c00392{left:242.458500px;}
.x7b_c00392{left:244.080000px;}
.x25_c00392{left:246.238500px;}
.x16_c00392{left:249.480000px;}
.x3a_c00392{left:250.828500px;}
.x69_c00392{left:253.798500px;}
.x35_c00392{left:255.688500px;}
.x21_c00392{left:257.038500px;}
.x31_c00392{left:260.548500px;}
.x8_c00392{left:265.225500px;}
.x62_c00392{left:266.488500px;}
.x1b_c00392{left:268.458000px;}
.x45_c00392{left:269.728500px;}
.x17_c00392{left:270.810000px;}
.x59_c00392{left:272.158500px;}
.x9_c00392{left:275.281500px;}
.x2b_c00392{left:276.748500px;}
.x36_c00392{left:278.638500px;}
.x51_c00392{left:284.308500px;}
.x76_c00392{left:285.930000px;}
.x1c_c00392{left:287.644500px;}
.x42_c00392{left:289.438500px;}
.x11_c00392{left:292.140000px;}
.x71_c00392{left:294.300000px;}
.x26_c00392{left:295.648500px;}
.xa_c00392{left:296.824500px;}
.x37_c00392{left:299.428500px;}
.x4d_c00392{left:300.508500px;}
.x22_c00392{left:304.828500px;}
.x5d_c00392{left:306.448500px;}
.x63_c00392{left:308.338500px;}
.x3_c00392{left:309.420000px;}
.x18_c00392{left:312.930000px;}
.x7f_c00392{left:314.692500px;}
.x4e_c00392{left:316.978500px;}
.x64_c00392{left:339.118500px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fsf_c00392{font-size:38.266667pt;}
.fse_c00392{font-size:48.533333pt;}
.fsb_c00392{font-size:49.466667pt;}
.fs9_c00392{font-size:51.333333pt;}
.fs7_c00392{font-size:52.266667pt;}
.fs6_c00392{font-size:53.200000pt;}
.fs2_c00392{font-size:54.133333pt;}
.fs5_c00392{font-size:55.066667pt;}
.fsc_c00392{font-size:56.000000pt;}
.fs3_c00392{font-size:56.933333pt;}
.fsa_c00392{font-size:57.866667pt;}
.fs4_c00392{font-size:58.800000pt;}
.fs8_c00392{font-size:59.733333pt;}
.fsd_c00392{font-size:61.600000pt;}
.fs0_c00392{font-size:63.466667pt;}
.fs1_c00392{font-size:64.400000pt;}
.y0_c00392{bottom:0.000000pt;}
.y33_c00392{bottom:26.402667pt;}
.y32_c00392{bottom:40.449333pt;}
.y31_c00392{bottom:40.706667pt;}
.y30_c00392{bottom:41.453333pt;}
.y2f_c00392{bottom:41.588000pt;}
.y2e_c00392{bottom:42.397333pt;}
.y2d_c00392{bottom:42.961333pt;}
.y2c_c00392{bottom:55.025333pt;}
.y2b_c00392{bottom:71.388000pt;}
.y2a_c00392{bottom:85.118667pt;}
.y29_c00392{bottom:100.748000pt;}
.y28_c00392{bottom:116.160000pt;}
.y27_c00392{bottom:130.656000pt;}
.y26_c00392{bottom:146.968000pt;}
.y25_c00392{bottom:160.930667pt;}
.y24_c00392{bottom:175.108000pt;}
.y23_c00392{bottom:191.173333pt;}
.y22_c00392{bottom:206.720000pt;}
.y21_c00392{bottom:221.546667pt;}
.y20_c00392{bottom:237.012000pt;}
.y1f_c00392{bottom:252.238667pt;}
.y1e_c00392{bottom:267.146667pt;}
.y1d_c00392{bottom:282.774667pt;}
.y1c_c00392{bottom:297.466667pt;}
.y1b_c00392{bottom:312.606667pt;}
.y1a_c00392{bottom:325.041333pt;}
.y19_c00392{bottom:340.828000pt;}
.y18_c00392{bottom:355.813333pt;}
.y17_c00392{bottom:371.353333pt;}
.y16_c00392{bottom:386.580000pt;}
.y15_c00392{bottom:401.249333pt;}
.y14_c00392{bottom:415.972000pt;}
.y13_c00392{bottom:430.874667pt;}
.yb_c00392{bottom:444.961333pt;}
.yc_c00392{bottom:445.422667pt;}
.yd_c00392{bottom:446.070667pt;}
.ye_c00392{bottom:446.212000pt;}
.yf_c00392{bottom:446.408000pt;}
.y10_c00392{bottom:446.862667pt;}
.y11_c00392{bottom:447.533333pt;}
.y12_c00392{bottom:447.737333pt;}
.ya_c00392{bottom:462.122667pt;}
.y9_c00392{bottom:477.117333pt;}
.y2_c00392{bottom:491.281333pt;}
.y3_c00392{bottom:492.208000pt;}
.y4_c00392{bottom:492.745333pt;}
.y5_c00392{bottom:493.325333pt;}
.y6_c00392{bottom:494.246667pt;}
.y7_c00392{bottom:494.372000pt;}
.y8_c00392{bottom:494.640000pt;}
.y1_c00392{bottom:506.162667pt;}
.h11_c00392{height:38.266667pt;}
.h10_c00392{height:48.533333pt;}
.hd_c00392{height:49.466667pt;}
.hb_c00392{height:51.333333pt;}
.h9_c00392{height:52.266667pt;}
.h8_c00392{height:53.200000pt;}
.h4_c00392{height:54.133333pt;}
.h7_c00392{height:55.066667pt;}
.he_c00392{height:56.000000pt;}
.h5_c00392{height:56.933333pt;}
.hc_c00392{height:57.866667pt;}
.h6_c00392{height:58.800000pt;}
.ha_c00392{height:59.733333pt;}
.hf_c00392{height:61.600000pt;}
.h2_c00392{height:63.466667pt;}
.h3_c00392{height:64.400000pt;}
.h0_c00392{height:545.040000pt;}
.h1_c00392{height:545.333333pt;}
.w0_c00392{width:319.200000pt;}
.w1_c00392{width:319.333333pt;}
.x0_c00392{left:0.000000pt;}
.xb_c00392{left:22.800000pt;}
.x4_c00392{left:23.941333pt;}
.x4a_c00392{left:24.958667pt;}
.x57_c00392{left:26.158667pt;}
.x3b_c00392{left:27.358667pt;}
.x77_c00392{left:28.560000pt;}
.x80_c00392{left:30.480000pt;}
.x65_c00392{left:31.918667pt;}
.x7c_c00392{left:32.880000pt;}
.x6d_c00392{left:34.320000pt;}
.x54_c00392{left:37.198667pt;}
.x32_c00392{left:42.958667pt;}
.x2c_c00392{left:46.798667pt;}
.x52_c00392{left:48.238667pt;}
.x43_c00392{left:52.078667pt;}
.x3f_c00392{left:53.998667pt;}
.x1d_c00392{left:55.918667pt;}
.xc_c00392{left:57.600000pt;}
.x12_c00392{left:58.800000pt;}
.x78_c00392{left:61.680000pt;}
.x19_c00392{left:62.784000pt;}
.x5e_c00392{left:66.238667pt;}
.x27_c00392{left:67.438667pt;}
.x46_c00392{left:68.878667pt;}
.x6f_c00392{left:70.560000pt;}
.x1e_c00392{left:72.478667pt;}
.xd_c00392{left:74.160000pt;}
.x4b_c00392{left:75.358667pt;}
.x5a_c00392{left:78.238667pt;}
.x2d_c00392{left:82.078667pt;}
.x72_c00392{left:83.040000pt;}
.x1f_c00392{left:84.478667pt;}
.x66_c00392{left:86.158667pt;}
.x28_c00392{left:88.078667pt;}
.x5_c00392{left:90.134667pt;}
.x5f_c00392{left:91.678667pt;}
.x4f_c00392{left:92.878667pt;}
.x3c_c00392{left:94.558667pt;}
.x55_c00392{left:95.758667pt;}
.x23_c00392{left:98.878667pt;}
.x33_c00392{left:99.838667pt;}
.x38_c00392{left:103.198667pt;}
.x6a_c00392{left:108.958667pt;}
.x2e_c00392{left:109.918667pt;}
.x29_c00392{left:114.958667pt;}
.x13_c00392{left:117.600000pt;}
.x67_c00392{left:118.798667pt;}
.x79_c00392{left:120.720000pt;}
.x53_c00392{left:123.598667pt;}
.x3e_c00392{left:125.038667pt;}
.x6_c00392{left:128.505333pt;}
.x3d_c00392{left:129.838667pt;}
.x39_c00392{left:131.278667pt;}
.x40_c00392{left:132.958667pt;}
.x56_c00392{left:134.158667pt;}
.x47_c00392{left:137.278667pt;}
.x5b_c00392{left:139.678667pt;}
.x70_c00392{left:140.880000pt;}
.xe_c00392{left:143.280000pt;}
.x68_c00392{left:144.238667pt;}
.x1_c00392{left:145.200000pt;}
.x58_c00392{left:146.158667pt;}
.x73_c00392{left:147.600000pt;}
.x2a_c00392{left:150.238667pt;}
.x50_c00392{left:151.438667pt;}
.x14_c00392{left:152.400000pt;}
.x20_c00392{left:157.438667pt;}
.x2f_c00392{left:158.638667pt;}
.x60_c00392{left:163.678667pt;}
.x7e_c00392{left:166.006667pt;}
.x24_c00392{left:167.998667pt;}
.x6b_c00392{left:168.958667pt;}
.x7_c00392{left:169.973333pt;}
.x41_c00392{left:172.798667pt;}
.xf_c00392{left:173.760000pt;}
.x34_c00392{left:174.958667pt;}
.x61_c00392{left:176.398667pt;}
.x44_c00392{left:179.278667pt;}
.x15_c00392{left:180.720000pt;}
.x1a_c00392{left:182.766667pt;}
.x4c_c00392{left:184.078667pt;}
.x48_c00392{left:186.958667pt;}
.x74_c00392{left:191.520000pt;}
.x81_c00392{left:195.600000pt;}
.x5c_c00392{left:196.558667pt;}
.x6c_c00392{left:198.958667pt;}
.x7a_c00392{left:201.360000pt;}
.x2_c00392{left:203.280000pt;}
.x75_c00392{left:204.720000pt;}
.x10_c00392{left:205.680000pt;}
.x7d_c00392{left:207.120000pt;}
.x6e_c00392{left:210.240000pt;}
.x49_c00392{left:213.358667pt;}
.x30_c00392{left:215.518667pt;}
.x7b_c00392{left:216.960000pt;}
.x25_c00392{left:218.878667pt;}
.x16_c00392{left:221.760000pt;}
.x3a_c00392{left:222.958667pt;}
.x69_c00392{left:225.598667pt;}
.x35_c00392{left:227.278667pt;}
.x21_c00392{left:228.478667pt;}
.x31_c00392{left:231.598667pt;}
.x8_c00392{left:235.756000pt;}
.x62_c00392{left:236.878667pt;}
.x1b_c00392{left:238.629333pt;}
.x45_c00392{left:239.758667pt;}
.x17_c00392{left:240.720000pt;}
.x59_c00392{left:241.918667pt;}
.x9_c00392{left:244.694667pt;}
.x2b_c00392{left:245.998667pt;}
.x36_c00392{left:247.678667pt;}
.x51_c00392{left:252.718667pt;}
.x76_c00392{left:254.160000pt;}
.x1c_c00392{left:255.684000pt;}
.x42_c00392{left:257.278667pt;}
.x11_c00392{left:259.680000pt;}
.x71_c00392{left:261.600000pt;}
.x26_c00392{left:262.798667pt;}
.xa_c00392{left:263.844000pt;}
.x37_c00392{left:266.158667pt;}
.x4d_c00392{left:267.118667pt;}
.x22_c00392{left:270.958667pt;}
.x5d_c00392{left:272.398667pt;}
.x63_c00392{left:274.078667pt;}
.x3_c00392{left:275.040000pt;}
.x18_c00392{left:278.160000pt;}
.x7f_c00392{left:279.726667pt;}
.x4e_c00392{left:281.758667pt;}
.x64_c00392{left:301.438667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00393 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00393 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00393 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00393 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00393.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00393{transform:matrix(0.014135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014135,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021955,0.000000,0.000000,0.250000,0,0);}
.m7c_c00393{transform:matrix(0.137920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137920,0.000000,0.000000,0.250000,0,0);}
.m7a_c00393{transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145735,0.000000,0.000000,0.250000,0,0);}
.m57_c00393{transform:matrix(0.147240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147240,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.147530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147530,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);}
.m67_c00393{transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.md6_c00393{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.me8_c00393{transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151345,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m1a_c00393{transform:matrix(0.152130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152130,0.000000,0.000000,0.250000,0,0);}
.m6e_c00393{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.m85_c00393{transform:matrix(0.152230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152230,0.000000,0.000000,0.250000,0,0);}
.mc4_c00393{transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152515,0.000000,0.000000,0.250000,0,0);}
.m83_c00393{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.mad_c00393{transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153610,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.mae_c00393{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.mb6_c00393{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.m73_c00393{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.me4_c00393{transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);}
.mb2_c00393{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.me6_c00393{transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);}
.mbb_c00393{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m62_c00393{transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161520,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162095,0.000000,0.000000,0.250000,0,0);}
.m6d_c00393{transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);}
.mc1_c00393{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.mb0_c00393{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.mc2_c00393{transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);}
.m99_c00393{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.m7b_c00393{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.me9_c00393{transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);}
.m7e_c00393{transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00393{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m79_c00393{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.me5_c00393{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);}
.m7d_c00393{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169195,0.000000,0.000000,0.250000,0,0);}
.m97_c00393{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m5c_c00393{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m81_c00393{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.me0_c00393{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);}
.meb_c00393{transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);}
.m6c_c00393{transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.173820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173820,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m59_c00393{transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);}
.ma1_c00393{transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);}
.m4a_c00393{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m52_c00393{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m66_c00393{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m19_c00393{transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m9a_c00393{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176695,0.000000,0.000000,0.250000,0,0);}
.m69_c00393{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.m4e_c00393{transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177485,0.000000,0.000000,0.250000,0,0);}
.m70_c00393{transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177840,0.000000,0.000000,0.250000,0,0);}
.m80_c00393{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);}
.mcc_c00393{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.m30_c00393{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m88_c00393{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m2b_c00393{transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180045,0.000000,0.000000,0.250000,0,0);}
.mda_c00393{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.maa_c00393{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m82_c00393{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.me3_c00393{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m36_c00393{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.mc9_c00393{transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);}
.md1_c00393{transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181060,0.000000,0.000000,0.250000,0,0);}
.m58_c00393{transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181260,0.000000,0.000000,0.250000,0,0);}
.maf_c00393{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181515,0.000000,0.000000,0.250000,0,0);}
.ma6_c00393{transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);}
.mbe_c00393{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.md9_c00393{transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);}
.m63_c00393{transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);}
.m45_c00393{transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m8b_c00393{transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);}
.m44_c00393{transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185010,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185040,0.000000,0.000000,0.250000,0,0);}
.m71_c00393{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m28_c00393{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m65_c00393{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.ma5_c00393{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.md5_c00393{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.mc3_c00393{transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186665,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.m84_c00393{transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.mc5_c00393{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m90_c00393{transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);}
.m9b_c00393{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.mac_c00393{transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.m5e_c00393{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);}
.mc7_c00393{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.m60_c00393{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);}
.mb4_c00393{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.m98_c00393{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);}
.md4_c00393{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.mce_c00393{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192580,0.000000,0.000000,0.250000,0,0);}
.md3_c00393{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m9f_c00393{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.me1_c00393{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);}
.me7_c00393{transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194385,0.000000,0.000000,0.250000,0,0);}
.m74_c00393{transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);}
.mcb_c00393{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mb1_c00393{transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);}
.m5d_c00393{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.mdf_c00393{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m78_c00393{transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197335,0.000000,0.000000,0.250000,0,0);}
.mdc_c00393{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00393{transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198705,0.000000,0.000000,0.250000,0,0);}
.m64_c00393{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.mdd_c00393{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.md7_c00393{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.m26_c00393{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m9c_c00393{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.m72_c00393{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.m8c_c00393{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.mde_c00393{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.ma4_c00393{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.mab_c00393{transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202615,0.000000,0.000000,0.250000,0,0);}
.m61_c00393{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.ma8_c00393{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00393{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mc6_c00393{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.mcf_c00393{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m87_c00393{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.mca_c00393{transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206710,0.000000,0.000000,0.250000,0,0);}
.m56_c00393{transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00393{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00393{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.m8a_c00393{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.me2_c00393{transform:matrix(0.208595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208595,0.000000,0.000000,0.250000,0,0);}
.m4f_c00393{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.md8_c00393{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.ma9_c00393{transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209655,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210255,0.000000,0.000000,0.250000,0,0);}
.ma7_c00393{transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);}
.mb7_c00393{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.m3b_c00393{transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);}
.m6f_c00393{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.ma3_c00393{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.mb3_c00393{transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.md0_c00393{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.m89_c00393{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m75_c00393{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);}
.m96_c00393{transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);}
.m1c_c00393{transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218915,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00393{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.mb9_c00393{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00393{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.mc0_c00393{transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);}
.ma0_c00393{transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220245,0.000000,0.000000,0.250000,0,0);}
.m86_c00393{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);}
.mbd_c00393{transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222520,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);}
.m92_c00393{transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);}
.mcd_c00393{transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);}
.m93_c00393{transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);}
.mb5_c00393{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m8d_c00393{transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);}
.m43_c00393{transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230470,0.000000,0.000000,0.250000,0,0);}
.m94_c00393{transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);}
.m7f_c00393{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m95_c00393{transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);}
.ma2_c00393{transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.mb8_c00393{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.mdb_c00393{transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);}
.mc8_c00393{transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);}
.m76_c00393{transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);}
.mea_c00393{transform:matrix(0.236760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236760,0.000000,0.000000,0.250000,0,0);}
.mbf_c00393{transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);}
.m6a_c00393{transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m8f_c00393{transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);}
.mba_c00393{transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324050,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.345540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345540,0.000000,0.000000,0.250000,0,0);}
.m77_c00393{transform:matrix(0.358100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358100,0.000000,0.000000,0.250000,0,0);}
.m68_c00393{transform:matrix(0.393065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393065,0.000000,0.000000,0.250000,0,0);}
.md2_c00393{transform:matrix(0.502130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502130,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
.fc0_c00393{color:transparent;}
.fs10_c00393{font-size:22.050000px;}
.fs8_c00393{font-size:57.750000px;}
.fse_c00393{font-size:58.800000px;}
.fsc_c00393{font-size:59.850000px;}
.fs2_c00393{font-size:61.950000px;}
.fsa_c00393{font-size:63.000000px;}
.fsf_c00393{font-size:64.050000px;}
.fs6_c00393{font-size:65.100000px;}
.fs9_c00393{font-size:66.150000px;}
.fs7_c00393{font-size:67.200000px;}
.fs5_c00393{font-size:68.250000px;}
.fsb_c00393{font-size:69.300000px;}
.fs4_c00393{font-size:70.350000px;}
.fsd_c00393{font-size:71.400000px;}
.fs3_c00393{font-size:72.450000px;}
.fs1_c00393{font-size:73.500000px;}
.fs0_c00393{font-size:78.750000px;}
.y0_c00393{bottom:0.000000px;}
.y47_c00393{bottom:29.373000px;}
.y48_c00393{bottom:39.420000px;}
.y46_c00393{bottom:46.465500px;}
.y45_c00393{bottom:61.146000px;}
.y44_c00393{bottom:61.858500px;}
.y43_c00393{bottom:62.605500px;}
.y42_c00393{bottom:62.766000px;}
.y41_c00393{bottom:63.294000px;}
.y40_c00393{bottom:63.553500px;}
.y3f_c00393{bottom:63.904500px;}
.y3e_c00393{bottom:64.273500px;}
.y3d_c00393{bottom:64.533000px;}
.y3c_c00393{bottom:78.208500px;}
.y3b_c00393{bottom:78.820500px;}
.y3a_c00393{bottom:79.245000px;}
.y39_c00393{bottom:79.878000px;}
.y38_c00393{bottom:80.112000px;}
.y37_c00393{bottom:80.397000px;}
.y36_c00393{bottom:81.003000px;}
.y35_c00393{bottom:94.690500px;}
.y34_c00393{bottom:94.908000px;}
.y33_c00393{bottom:96.072000px;}
.y32_c00393{bottom:96.441000px;}
.y31_c00393{bottom:97.923000px;}
.y30_c00393{bottom:98.281500px;}
.y2f_c00393{bottom:113.868000px;}
.y2e_c00393{bottom:130.116000px;}
.y2d_c00393{bottom:148.336500px;}
.y2c_c00393{bottom:165.012000px;}
.y2b_c00393{bottom:182.560500px;}
.y2a_c00393{bottom:182.923500px;}
.y29_c00393{bottom:183.157500px;}
.y28_c00393{bottom:183.799500px;}
.y27_c00393{bottom:184.210500px;}
.y26_c00393{bottom:185.227500px;}
.y25_c00393{bottom:185.493000px;}
.y24_c00393{bottom:199.735500px;}
.y23_c00393{bottom:215.544000px;}
.y22_c00393{bottom:215.779500px;}
.y21_c00393{bottom:216.154500px;}
.y20_c00393{bottom:217.362000px;}
.y1f_c00393{bottom:217.614000px;}
.y1e_c00393{bottom:218.256000px;}
.y1d_c00393{bottom:218.418000px;}
.y1c_c00393{bottom:218.973000px;}
.y1b_c00393{bottom:232.437000px;}
.y1a_c00393{bottom:232.641000px;}
.y19_c00393{bottom:233.193000px;}
.y18_c00393{bottom:233.968500px;}
.y17_c00393{bottom:234.669000px;}
.y16_c00393{bottom:234.984000px;}
.y15_c00393{bottom:235.441500px;}
.y14_c00393{bottom:250.720500px;}
.y13_c00393{bottom:268.035000px;}
.y12_c00393{bottom:284.325000px;}
.y11_c00393{bottom:300.706500px;}
.y10_c00393{bottom:318.529500px;}
.yf_c00393{bottom:335.563500px;}
.ye_c00393{bottom:353.505000px;}
.yd_c00393{bottom:369.387000px;}
.yc_c00393{bottom:387.253500px;}
.yb_c00393{bottom:404.116500px;}
.ya_c00393{bottom:421.117500px;}
.y9_c00393{bottom:437.448000px;}
.y8_c00393{bottom:455.001000px;}
.y7_c00393{bottom:472.294500px;}
.y6_c00393{bottom:488.721000px;}
.y5_c00393{bottom:505.779000px;}
.y4_c00393{bottom:522.694500px;}
.y3_c00393{bottom:539.311500px;}
.y2_c00393{bottom:556.320000px;}
.y1_c00393{bottom:569.964000px;}
.h12_c00393{height:22.050000px;}
.ha_c00393{height:57.750000px;}
.h10_c00393{height:58.800000px;}
.he_c00393{height:59.850000px;}
.h4_c00393{height:61.950000px;}
.hc_c00393{height:63.000000px;}
.h11_c00393{height:64.050000px;}
.h8_c00393{height:65.100000px;}
.hb_c00393{height:66.150000px;}
.h9_c00393{height:67.200000px;}
.h7_c00393{height:68.250000px;}
.hd_c00393{height:69.300000px;}
.h6_c00393{height:70.350000px;}
.hf_c00393{height:71.400000px;}
.h5_c00393{height:72.450000px;}
.h3_c00393{height:73.500000px;}
.h2_c00393{height:78.750000px;}
.h0_c00393{height:613.170000px;}
.h1_c00393{height:613.500000px;}
.w0_c00393{width:359.100000px;}
.w1_c00393{width:359.250000px;}
.x0_c00393{left:0.000000px;}
.x6a_c00393{left:39.421500px;}
.x51_c00393{left:40.770000px;}
.x5d_c00393{left:41.995500px;}
.x1e_c00393{left:44.010000px;}
.x44_c00393{left:45.630000px;}
.x2f_c00393{left:46.710000px;}
.x4_c00393{left:47.790000px;}
.x5a_c00393{left:59.130000px;}
.x6b_c00393{left:62.641500px;}
.x52_c00393{left:64.800000px;}
.x66_c00393{left:66.286500px;}
.x3e_c00393{left:68.310000px;}
.x1_c00393{left:69.930000px;}
.x35_c00393{left:71.010000px;}
.x45_c00393{left:73.980000px;}
.x3b_c00393{left:79.110000px;}
.x78_c00393{left:81.808500px;}
.x36_c00393{left:83.160000px;}
.x17_c00393{left:85.050000px;}
.xa_c00393{left:87.480000px;}
.x1f_c00393{left:89.100000px;}
.x46_c00393{left:91.530000px;}
.x49_c00393{left:93.150000px;}
.x61_c00393{left:95.695500px;}
.xf_c00393{left:98.280000px;}
.x79_c00393{left:100.168500px;}
.x30_c00393{left:103.950000px;}
.x2a_c00393{left:106.380000px;}
.x5_c00393{left:109.350000px;}
.x10_c00393{left:110.430000px;}
.x5e_c00393{left:112.194000px;}
.x20_c00393{left:113.400000px;}
.x75_c00393{left:117.888000px;}
.x56_c00393{left:121.500000px;}
.x26_c00393{left:123.390000px;}
.x11_c00393{left:125.280000px;}
.x3f_c00393{left:129.060000px;}
.x70_c00393{left:131.490000px;}
.xb_c00393{left:132.570000px;}
.x18_c00393{left:135.270000px;}
.x76_c00393{left:137.794500px;}
.x6c_c00393{left:140.131500px;}
.x5b_c00393{left:141.750000px;}
.x21_c00393{left:142.830000px;}
.x2b_c00393{left:144.720000px;}
.x4e_c00393{left:145.800000px;}
.x47_c00393{left:146.880000px;}
.x27_c00393{left:148.770000px;}
.x67_c00393{left:151.063500px;}
.x19_c00393{left:153.900000px;}
.x40_c00393{left:160.920000px;}
.x57_c00393{left:163.080000px;}
.x42_c00393{left:164.430000px;}
.x48_c00393{left:167.130000px;}
.x12_c00393{left:168.750000px;}
.x4f_c00393{left:171.720000px;}
.x63_c00393{left:174.691500px;}
.x2_c00393{left:176.850000px;}
.x77_c00393{left:178.365000px;}
.x13_c00393{left:180.360000px;}
.x37_c00393{left:182.250000px;}
.x68_c00393{left:185.358000px;}
.x7a_c00393{left:186.568500px;}
.xc_c00393{left:188.190000px;}
.x71_c00393{left:190.890000px;}
.x4a_c00393{left:193.860000px;}
.x6_c00393{left:195.210000px;}
.x4d_c00393{left:197.910000px;}
.x72_c00393{left:200.719500px;}
.x73_c00393{left:202.629000px;}
.x22_c00393{left:206.010000px;}
.x53_c00393{left:210.330000px;}
.x2c_c00393{left:214.110000px;}
.x31_c00393{left:216.000000px;}
.x3c_c00393{left:217.890000px;}
.x43_c00393{left:220.050000px;}
.x38_c00393{left:221.400000px;}
.x7b_c00393{left:227.068500px;}
.x7_c00393{left:228.960000px;}
.x2d_c00393{left:231.390000px;}
.x1a_c00393{left:233.280000px;}
.x14_c00393{left:236.520000px;}
.x32_c00393{left:238.410000px;}
.x74_c00393{left:241.243500px;}
.x23_c00393{left:243.000000px;}
.x5f_c00393{left:246.436500px;}
.x15_c00393{left:247.590000px;}
.x64_c00393{left:250.021500px;}
.xd_c00393{left:251.100000px;}
.x54_c00393{left:253.530000px;}
.x33_c00393{left:255.420000px;}
.x50_c00393{left:256.500000px;}
.x69_c00393{left:258.280500px;}
.x8_c00393{left:260.280000px;}
.x28_c00393{left:266.490000px;}
.x1b_c00393{left:271.080000px;}
.x58_c00393{left:273.780000px;}
.x3_c00393{left:278.370000px;}
.x24_c00393{left:282.150000px;}
.x65_c00393{left:284.311500px;}
.x39_c00393{left:286.470000px;}
.x1c_c00393{left:287.550000px;}
.x4b_c00393{left:289.710000px;}
.x6f_c00393{left:291.600000px;}
.x59_c00393{left:297.540000px;}
.x3a_c00393{left:299.970000px;}
.x3d_c00393{left:302.130000px;}
.x62_c00393{left:304.401000px;}
.x41_c00393{left:307.800000px;}
.x55_c00393{left:311.310000px;}
.x34_c00393{left:314.010000px;}
.x60_c00393{left:315.219000px;}
.x6e_c00393{left:316.981500px;}
.x16_c00393{left:318.060000px;}
.x2e_c00393{left:320.220000px;}
.x25_c00393{left:322.110000px;}
.x6d_c00393{left:323.191500px;}
.x29_c00393{left:325.620000px;}
.x5c_c00393{left:326.700000px;}
.x1d_c00393{left:327.780000px;}
.xe_c00393{left:329.130000px;}
.x7c_c00393{left:330.480000px;}
.x4c_c00393{left:333.450000px;}
.x9_c00393{left:338.580000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.fs10_c00393{font-size:19.600000pt;}
.fs8_c00393{font-size:51.333333pt;}
.fse_c00393{font-size:52.266667pt;}
.fsc_c00393{font-size:53.200000pt;}
.fs2_c00393{font-size:55.066667pt;}
.fsa_c00393{font-size:56.000000pt;}
.fsf_c00393{font-size:56.933333pt;}
.fs6_c00393{font-size:57.866667pt;}
.fs9_c00393{font-size:58.800000pt;}
.fs7_c00393{font-size:59.733333pt;}
.fs5_c00393{font-size:60.666667pt;}
.fsb_c00393{font-size:61.600000pt;}
.fs4_c00393{font-size:62.533333pt;}
.fsd_c00393{font-size:63.466667pt;}
.fs3_c00393{font-size:64.400000pt;}
.fs1_c00393{font-size:65.333333pt;}
.fs0_c00393{font-size:70.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y47_c00393{bottom:26.109333pt;}
.y48_c00393{bottom:35.040000pt;}
.y46_c00393{bottom:41.302667pt;}
.y45_c00393{bottom:54.352000pt;}
.y44_c00393{bottom:54.985333pt;}
.y43_c00393{bottom:55.649333pt;}
.y42_c00393{bottom:55.792000pt;}
.y41_c00393{bottom:56.261333pt;}
.y40_c00393{bottom:56.492000pt;}
.y3f_c00393{bottom:56.804000pt;}
.y3e_c00393{bottom:57.132000pt;}
.y3d_c00393{bottom:57.362667pt;}
.y3c_c00393{bottom:69.518667pt;}
.y3b_c00393{bottom:70.062667pt;}
.y3a_c00393{bottom:70.440000pt;}
.y39_c00393{bottom:71.002667pt;}
.y38_c00393{bottom:71.210667pt;}
.y37_c00393{bottom:71.464000pt;}
.y36_c00393{bottom:72.002667pt;}
.y35_c00393{bottom:84.169333pt;}
.y34_c00393{bottom:84.362667pt;}
.y33_c00393{bottom:85.397333pt;}
.y32_c00393{bottom:85.725333pt;}
.y31_c00393{bottom:87.042667pt;}
.y30_c00393{bottom:87.361333pt;}
.y2f_c00393{bottom:101.216000pt;}
.y2e_c00393{bottom:115.658667pt;}
.y2d_c00393{bottom:131.854667pt;}
.y2c_c00393{bottom:146.677333pt;}
.y2b_c00393{bottom:162.276000pt;}
.y2a_c00393{bottom:162.598667pt;}
.y29_c00393{bottom:162.806667pt;}
.y28_c00393{bottom:163.377333pt;}
.y27_c00393{bottom:163.742667pt;}
.y26_c00393{bottom:164.646667pt;}
.y25_c00393{bottom:164.882667pt;}
.y24_c00393{bottom:177.542667pt;}
.y23_c00393{bottom:191.594667pt;}
.y22_c00393{bottom:191.804000pt;}
.y21_c00393{bottom:192.137333pt;}
.y20_c00393{bottom:193.210667pt;}
.y1f_c00393{bottom:193.434667pt;}
.y1e_c00393{bottom:194.005333pt;}
.y1d_c00393{bottom:194.149333pt;}
.y1c_c00393{bottom:194.642667pt;}
.y1b_c00393{bottom:206.610667pt;}
.y1a_c00393{bottom:206.792000pt;}
.y19_c00393{bottom:207.282667pt;}
.y18_c00393{bottom:207.972000pt;}
.y17_c00393{bottom:208.594667pt;}
.y16_c00393{bottom:208.874667pt;}
.y15_c00393{bottom:209.281333pt;}
.y14_c00393{bottom:222.862667pt;}
.y13_c00393{bottom:238.253333pt;}
.y12_c00393{bottom:252.733333pt;}
.y11_c00393{bottom:267.294667pt;}
.y10_c00393{bottom:283.137333pt;}
.yf_c00393{bottom:298.278667pt;}
.ye_c00393{bottom:314.226667pt;}
.yd_c00393{bottom:328.344000pt;}
.yc_c00393{bottom:344.225333pt;}
.yb_c00393{bottom:359.214667pt;}
.ya_c00393{bottom:374.326667pt;}
.y9_c00393{bottom:388.842667pt;}
.y8_c00393{bottom:404.445333pt;}
.y7_c00393{bottom:419.817333pt;}
.y6_c00393{bottom:434.418667pt;}
.y5_c00393{bottom:449.581333pt;}
.y4_c00393{bottom:464.617333pt;}
.y3_c00393{bottom:479.388000pt;}
.y2_c00393{bottom:494.506667pt;}
.y1_c00393{bottom:506.634667pt;}
.h12_c00393{height:19.600000pt;}
.ha_c00393{height:51.333333pt;}
.h10_c00393{height:52.266667pt;}
.he_c00393{height:53.200000pt;}
.h4_c00393{height:55.066667pt;}
.hc_c00393{height:56.000000pt;}
.h11_c00393{height:56.933333pt;}
.h8_c00393{height:57.866667pt;}
.hb_c00393{height:58.800000pt;}
.h9_c00393{height:59.733333pt;}
.h7_c00393{height:60.666667pt;}
.hd_c00393{height:61.600000pt;}
.h6_c00393{height:62.533333pt;}
.hf_c00393{height:63.466667pt;}
.h5_c00393{height:64.400000pt;}
.h3_c00393{height:65.333333pt;}
.h2_c00393{height:70.000000pt;}
.h0_c00393{height:545.040000pt;}
.h1_c00393{height:545.333333pt;}
.w0_c00393{width:319.200000pt;}
.w1_c00393{width:319.333333pt;}
.x0_c00393{left:0.000000pt;}
.x6a_c00393{left:35.041333pt;}
.x51_c00393{left:36.240000pt;}
.x5d_c00393{left:37.329333pt;}
.x1e_c00393{left:39.120000pt;}
.x44_c00393{left:40.560000pt;}
.x2f_c00393{left:41.520000pt;}
.x4_c00393{left:42.480000pt;}
.x5a_c00393{left:52.560000pt;}
.x6b_c00393{left:55.681333pt;}
.x52_c00393{left:57.600000pt;}
.x66_c00393{left:58.921333pt;}
.x3e_c00393{left:60.720000pt;}
.x1_c00393{left:62.160000pt;}
.x35_c00393{left:63.120000pt;}
.x45_c00393{left:65.760000pt;}
.x3b_c00393{left:70.320000pt;}
.x78_c00393{left:72.718667pt;}
.x36_c00393{left:73.920000pt;}
.x17_c00393{left:75.600000pt;}
.xa_c00393{left:77.760000pt;}
.x1f_c00393{left:79.200000pt;}
.x46_c00393{left:81.360000pt;}
.x49_c00393{left:82.800000pt;}
.x61_c00393{left:85.062667pt;}
.xf_c00393{left:87.360000pt;}
.x79_c00393{left:89.038667pt;}
.x30_c00393{left:92.400000pt;}
.x2a_c00393{left:94.560000pt;}
.x5_c00393{left:97.200000pt;}
.x10_c00393{left:98.160000pt;}
.x5e_c00393{left:99.728000pt;}
.x20_c00393{left:100.800000pt;}
.x75_c00393{left:104.789333pt;}
.x56_c00393{left:108.000000pt;}
.x26_c00393{left:109.680000pt;}
.x11_c00393{left:111.360000pt;}
.x3f_c00393{left:114.720000pt;}
.x70_c00393{left:116.880000pt;}
.xb_c00393{left:117.840000pt;}
.x18_c00393{left:120.240000pt;}
.x76_c00393{left:122.484000pt;}
.x6c_c00393{left:124.561333pt;}
.x5b_c00393{left:126.000000pt;}
.x21_c00393{left:126.960000pt;}
.x2b_c00393{left:128.640000pt;}
.x4e_c00393{left:129.600000pt;}
.x47_c00393{left:130.560000pt;}
.x27_c00393{left:132.240000pt;}
.x67_c00393{left:134.278667pt;}
.x19_c00393{left:136.800000pt;}
.x40_c00393{left:143.040000pt;}
.x57_c00393{left:144.960000pt;}
.x42_c00393{left:146.160000pt;}
.x48_c00393{left:148.560000pt;}
.x12_c00393{left:150.000000pt;}
.x4f_c00393{left:152.640000pt;}
.x63_c00393{left:155.281333pt;}
.x2_c00393{left:157.200000pt;}
.x77_c00393{left:158.546667pt;}
.x13_c00393{left:160.320000pt;}
.x37_c00393{left:162.000000pt;}
.x68_c00393{left:164.762667pt;}
.x7a_c00393{left:165.838667pt;}
.xc_c00393{left:167.280000pt;}
.x71_c00393{left:169.680000pt;}
.x4a_c00393{left:172.320000pt;}
.x6_c00393{left:173.520000pt;}
.x4d_c00393{left:175.920000pt;}
.x72_c00393{left:178.417333pt;}
.x73_c00393{left:180.114667pt;}
.x22_c00393{left:183.120000pt;}
.x53_c00393{left:186.960000pt;}
.x2c_c00393{left:190.320000pt;}
.x31_c00393{left:192.000000pt;}
.x3c_c00393{left:193.680000pt;}
.x43_c00393{left:195.600000pt;}
.x38_c00393{left:196.800000pt;}
.x7b_c00393{left:201.838667pt;}
.x7_c00393{left:203.520000pt;}
.x2d_c00393{left:205.680000pt;}
.x1a_c00393{left:207.360000pt;}
.x14_c00393{left:210.240000pt;}
.x32_c00393{left:211.920000pt;}
.x74_c00393{left:214.438667pt;}
.x23_c00393{left:216.000000pt;}
.x5f_c00393{left:219.054667pt;}
.x15_c00393{left:220.080000pt;}
.x64_c00393{left:222.241333pt;}
.xd_c00393{left:223.200000pt;}
.x54_c00393{left:225.360000pt;}
.x33_c00393{left:227.040000pt;}
.x50_c00393{left:228.000000pt;}
.x69_c00393{left:229.582667pt;}
.x8_c00393{left:231.360000pt;}
.x28_c00393{left:236.880000pt;}
.x1b_c00393{left:240.960000pt;}
.x58_c00393{left:243.360000pt;}
.x3_c00393{left:247.440000pt;}
.x24_c00393{left:250.800000pt;}
.x65_c00393{left:252.721333pt;}
.x39_c00393{left:254.640000pt;}
.x1c_c00393{left:255.600000pt;}
.x4b_c00393{left:257.520000pt;}
.x6f_c00393{left:259.200000pt;}
.x59_c00393{left:264.480000pt;}
.x3a_c00393{left:266.640000pt;}
.x3d_c00393{left:268.560000pt;}
.x62_c00393{left:270.578667pt;}
.x41_c00393{left:273.600000pt;}
.x55_c00393{left:276.720000pt;}
.x34_c00393{left:279.120000pt;}
.x60_c00393{left:280.194667pt;}
.x6e_c00393{left:281.761333pt;}
.x16_c00393{left:282.720000pt;}
.x2e_c00393{left:284.640000pt;}
.x25_c00393{left:286.320000pt;}
.x6d_c00393{left:287.281333pt;}
.x29_c00393{left:289.440000pt;}
.x5c_c00393{left:290.400000pt;}
.x1d_c00393{left:291.360000pt;}
.xe_c00393{left:292.560000pt;}
.x7c_c00393{left:293.760000pt;}
.x4c_c00393{left:296.400000pt;}
.x9_c00393{left:300.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00394 {
    display:none;
  }
  .loading-indicator_c00394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00394 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00394 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00394" -> "#page-container .classname_c00394")
 */
.pf_c00394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00394 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00394 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00394 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00394 {overflow:visible;}
  }
}
.c_c00394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00394 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00394:after { /* webkit #35443 */
  content: '';
}
.t_c00394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00394 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00394 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00394 { /* info for Javascript */
  display:none;
}
.l_c00394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00394:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00394 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00394.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00394{transform:matrix(0.051340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051340,0.000000,0.000000,0.250000,0,0);}
.m9f_c00394{transform:matrix(0.085715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085715,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);}
.m95_c00394{transform:matrix(0.148770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148770,0.000000,0.000000,0.250000,0,0);}
.mae_c00394{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m32_c00394{transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);}
.md9_c00394{transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);}
.mc9_c00394{transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152980,0.000000,0.000000,0.250000,0,0);}
.mb9_c00394{transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154235,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);}
.m81_c00394{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.mb3_c00394{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.159685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00394{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m43_c00394{transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);}
.mb5_c00394{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m76_c00394{transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);}
.m8b_c00394{transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);}
.m75_c00394{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m73_c00394{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m86_c00394{transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165340,0.000000,0.000000,0.250000,0,0);}
.md1_c00394{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m8a_c00394{transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.mdc_c00394{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.ma6_c00394{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mcd_c00394{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m5f_c00394{transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);}
.maf_c00394{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.m61_c00394{transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168810,0.000000,0.000000,0.250000,0,0);}
.mb8_c00394{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m7e_c00394{transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169635,0.000000,0.000000,0.250000,0,0);}
.m54_c00394{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m9d_c00394{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.mab_c00394{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.mad_c00394{transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);}
.mac_c00394{transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);}
.m84_c00394{transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);}
.md0_c00394{transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);}
.maa_c00394{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.m26_c00394{transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);}
.mda_c00394{transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);}
.m50_c00394{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.me8_c00394{transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175180,0.000000,0.000000,0.250000,0,0);}
.m1a_c00394{transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);}
.m93_c00394{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00394{transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);}
.ma9_c00394{transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);}
.m39_c00394{transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178335,0.000000,0.000000,0.250000,0,0);}
.m7d_c00394{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179115,0.000000,0.000000,0.250000,0,0);}
.meb_c00394{transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179260,0.000000,0.000000,0.250000,0,0);}
.m57_c00394{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m82_c00394{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m92_c00394{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.m6c_c00394{transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);}
.m79_c00394{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m28_c00394{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.mec_c00394{transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180055,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m34_c00394{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.mbe_c00394{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.m91_c00394{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.mde_c00394{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.me2_c00394{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.mc3_c00394{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.md2_c00394{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m85_c00394{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.mdb_c00394{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.m4a_c00394{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.me9_c00394{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.ma7_c00394{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);}
.m7f_c00394{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.m6b_c00394{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.mcc_c00394{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m63_c00394{transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);}
.m88_c00394{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m80_c00394{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.ma4_c00394{transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00394{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m40_c00394{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m72_c00394{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m66_c00394{transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00394{transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191640,0.000000,0.000000,0.250000,0,0);}
.m70_c00394{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);}
.mdf_c00394{transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191945,0.000000,0.000000,0.250000,0,0);}
.m2a_c00394{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mc1_c00394{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.md8_c00394{transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);}
.mcf_c00394{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m98_c00394{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.mb2_c00394{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.m69_c00394{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.me0_c00394{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m78_c00394{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00394{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.mcb_c00394{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m74_c00394{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m5c_c00394{transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);}
.m9c_c00394{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m2b_c00394{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.196680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196680,0.000000,0.000000,0.250000,0,0);}
.m41_c00394{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);}
.mb7_c00394{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m94_c00394{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.m58_c00394{transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198095,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00394{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198395,0.000000,0.000000,0.250000,0,0);}
.mc8_c00394{transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);}
.m97_c00394{transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.med_c00394{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.mc5_c00394{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m56_c00394{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m5a_c00394{transform:matrix(0.200415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200415,0.000000,0.000000,0.250000,0,0);}
.mb1_c00394{transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201565,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.m7c_c00394{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.me4_c00394{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m83_c00394{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.md7_c00394{transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203460,0.000000,0.000000,0.250000,0,0);}
.mb0_c00394{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m45_c00394{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m31_c00394{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.mc7_c00394{transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204005,0.000000,0.000000,0.250000,0,0);}
.mea_c00394{transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);}
.m71_c00394{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00394{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m87_c00394{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00394{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);}
.me5_c00394{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m27_c00394{transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205865,0.000000,0.000000,0.250000,0,0);}
.me1_c00394{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);}
.ma5_c00394{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m5d_c00394{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00394{transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.mbd_c00394{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m7b_c00394{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);}
.mce_c00394{transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);}
.m7a_c00394{transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);}
.m8c_c00394{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.m90_c00394{transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212715,0.000000,0.000000,0.250000,0,0);}
.m3f_c00394{transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213080,0.000000,0.000000,0.250000,0,0);}
.m96_c00394{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m9e_c00394{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214635,0.000000,0.000000,0.250000,0,0);}
.m64_c00394{transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);}
.m99_c00394{transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);}
.mca_c00394{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m8d_c00394{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m4d_c00394{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216565,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.mc4_c00394{transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218630,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218820,0.000000,0.000000,0.250000,0,0);}
.mba_c00394{transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00394{transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219530,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220310,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00394{transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);}
.m9a_c00394{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.me3_c00394{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.m42_c00394{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m6a_c00394{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m3c_c00394{transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.me7_c00394{transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);}
.mdd_c00394{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);}
.md3_c00394{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);}
.m59_c00394{transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);}
.m55_c00394{transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);}
.m8f_c00394{transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);}
.ma2_c00394{transform:matrix(0.230360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230360,0.000000,0.000000,0.250000,0,0);}
.me6_c00394{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.230930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230930,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.m6e_c00394{transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);}
.m68_c00394{transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);}
.md4_c00394{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.md6_c00394{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m77_c00394{transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);}
.m67_c00394{transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.241680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241680,0.000000,0.000000,0.250000,0,0);}
.m9b_c00394{transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);}
.m4e_c00394{transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);}
.m5b_c00394{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);}
.ma3_c00394{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m52_c00394{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m53_c00394{transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);}
.mbb_c00394{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m62_c00394{transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261885,0.000000,0.000000,0.250000,0,0);}
.ma1_c00394{transform:matrix(0.275430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275430,0.000000,0.000000,0.250000,0,0);}
.m89_c00394{transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);}
.ma0_c00394{transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);}
.m5e_c00394{transform:matrix(0.309335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309335,0.000000,0.000000,0.250000,0,0);}
.md5_c00394{transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
.fc0_c00394{color:transparent;}
.fs1_c00394{font-size:57.750000px;}
.fs7_c00394{font-size:58.800000px;}
.fs9_c00394{font-size:59.850000px;}
.fs3_c00394{font-size:60.900000px;}
.fs8_c00394{font-size:61.950000px;}
.fs5_c00394{font-size:63.000000px;}
.fs2_c00394{font-size:64.050000px;}
.fsa_c00394{font-size:66.150000px;}
.fs4_c00394{font-size:67.200000px;}
.fs6_c00394{font-size:69.300000px;}
.fs0_c00394{font-size:70.350000px;}
.fsb_c00394{font-size:71.400000px;}
.y0_c00394{bottom:0.000000px;}
.yeb_c00394{bottom:36.733500px;}
.yec_c00394{bottom:37.279500px;}
.yed_c00394{bottom:37.672500px;}
.yee_c00394{bottom:38.925000px;}
.yef_c00394{bottom:39.766500px;}
.yf0_c00394{bottom:41.112000px;}
.yf1_c00394{bottom:41.560500px;}
.ye4_c00394{bottom:55.363500px;}
.ye5_c00394{bottom:56.944500px;}
.ye6_c00394{bottom:57.279000px;}
.ye7_c00394{bottom:58.288500px;}
.ye8_c00394{bottom:58.953000px;}
.ye9_c00394{bottom:59.332500px;}
.yea_c00394{bottom:61.206000px;}
.ydd_c00394{bottom:74.260500px;}
.yde_c00394{bottom:74.874000px;}
.ydf_c00394{bottom:75.150000px;}
.ye0_c00394{bottom:76.300500px;}
.ye1_c00394{bottom:76.842000px;}
.ye2_c00394{bottom:77.374500px;}
.ye3_c00394{bottom:78.552000px;}
.yd4_c00394{bottom:89.113500px;}
.yd5_c00394{bottom:89.995500px;}
.yd6_c00394{bottom:90.280500px;}
.yd7_c00394{bottom:91.125000px;}
.yd8_c00394{bottom:92.128500px;}
.yd9_c00394{bottom:92.901000px;}
.yda_c00394{bottom:93.468000px;}
.ydb_c00394{bottom:94.662000px;}
.ydc_c00394{bottom:94.968000px;}
.ycb_c00394{bottom:106.929000px;}
.ycc_c00394{bottom:107.643000px;}
.ycd_c00394{bottom:108.061500px;}
.yce_c00394{bottom:108.810000px;}
.ycf_c00394{bottom:109.621500px;}
.yd0_c00394{bottom:109.918500px;}
.yd1_c00394{bottom:110.944500px;}
.yd2_c00394{bottom:111.318000px;}
.yd3_c00394{bottom:111.840000px;}
.yc2_c00394{bottom:122.322000px;}
.yc3_c00394{bottom:122.910000px;}
.yc4_c00394{bottom:123.216000px;}
.yc5_c00394{bottom:124.309500px;}
.yc6_c00394{bottom:124.806000px;}
.yc7_c00394{bottom:126.810000px;}
.yc8_c00394{bottom:127.153500px;}
.yc9_c00394{bottom:128.665500px;}
.yca_c00394{bottom:129.084000px;}
.ybc_c00394{bottom:141.217500px;}
.ybd_c00394{bottom:142.195500px;}
.ybe_c00394{bottom:142.917000px;}
.ybf_c00394{bottom:143.458500px;}
.yc0_c00394{bottom:143.727000px;}
.yc1_c00394{bottom:144.064500px;}
.yb5_c00394{bottom:156.607500px;}
.yb6_c00394{bottom:157.080000px;}
.yb7_c00394{bottom:158.556000px;}
.yb8_c00394{bottom:158.947500px;}
.yb9_c00394{bottom:159.922500px;}
.yba_c00394{bottom:161.256000px;}
.ybb_c00394{bottom:161.605500px;}
.yae_c00394{bottom:172.536000px;}
.yaf_c00394{bottom:173.061000px;}
.yb0_c00394{bottom:173.605500px;}
.yb1_c00394{bottom:174.022500px;}
.yb2_c00394{bottom:174.861000px;}
.yb3_c00394{bottom:175.410000px;}
.yb4_c00394{bottom:176.388000px;}
.ya5_c00394{bottom:189.282000px;}
.ya6_c00394{bottom:190.111500px;}
.ya7_c00394{bottom:191.422500px;}
.ya8_c00394{bottom:191.776500px;}
.ya9_c00394{bottom:192.342000px;}
.yaa_c00394{bottom:193.726500px;}
.yab_c00394{bottom:194.254500px;}
.yac_c00394{bottom:195.420000px;}
.yad_c00394{bottom:195.943500px;}
.y9e_c00394{bottom:207.099000px;}
.y9f_c00394{bottom:207.937500px;}
.ya0_c00394{bottom:208.248000px;}
.ya1_c00394{bottom:209.239500px;}
.ya2_c00394{bottom:209.377500px;}
.ya3_c00394{bottom:210.115500px;}
.ya4_c00394{bottom:210.409500px;}
.y98_c00394{bottom:225.457500px;}
.y99_c00394{bottom:226.351500px;}
.y9a_c00394{bottom:226.699500px;}
.y9b_c00394{bottom:227.428500px;}
.y9c_c00394{bottom:228.211500px;}
.y9d_c00394{bottom:228.612000px;}
.y90_c00394{bottom:241.390500px;}
.y91_c00394{bottom:242.064000px;}
.y92_c00394{bottom:242.827500px;}
.y93_c00394{bottom:243.420000px;}
.y94_c00394{bottom:243.843000px;}
.y95_c00394{bottom:244.759500px;}
.y96_c00394{bottom:245.122500px;}
.y97_c00394{bottom:245.941500px;}
.y89_c00394{bottom:259.479000px;}
.y8a_c00394{bottom:260.481000px;}
.y8b_c00394{bottom:261.558000px;}
.y8c_c00394{bottom:261.829500px;}
.y8d_c00394{bottom:262.269000px;}
.y8e_c00394{bottom:262.602000px;}
.y8f_c00394{bottom:263.577000px;}
.y80_c00394{bottom:275.679000px;}
.y81_c00394{bottom:276.268500px;}
.y82_c00394{bottom:277.324500px;}
.y83_c00394{bottom:278.178000px;}
.y84_c00394{bottom:278.457000px;}
.y85_c00394{bottom:279.250500px;}
.y86_c00394{bottom:279.490500px;}
.y87_c00394{bottom:280.257000px;}
.y88_c00394{bottom:280.591500px;}
.y79_c00394{bottom:292.419000px;}
.y7a_c00394{bottom:292.704000px;}
.y7b_c00394{bottom:293.910000px;}
.y7c_c00394{bottom:294.238500px;}
.y7d_c00394{bottom:295.054500px;}
.y7e_c00394{bottom:295.839000px;}
.y7f_c00394{bottom:297.213000px;}
.y70_c00394{bottom:309.432000px;}
.y71_c00394{bottom:310.008000px;}
.y72_c00394{bottom:311.374500px;}
.y73_c00394{bottom:311.665500px;}
.y74_c00394{bottom:312.661500px;}
.y75_c00394{bottom:313.282500px;}
.y76_c00394{bottom:314.326500px;}
.y77_c00394{bottom:314.611500px;}
.y78_c00394{bottom:314.974500px;}
.y6a_c00394{bottom:326.979000px;}
.y6b_c00394{bottom:328.129500px;}
.y6c_c00394{bottom:329.224500px;}
.y6d_c00394{bottom:329.589000px;}
.y6e_c00394{bottom:330.580500px;}
.y6f_c00394{bottom:330.936000px;}
.y63_c00394{bottom:342.103500px;}
.y64_c00394{bottom:344.097000px;}
.y65_c00394{bottom:345.268500px;}
.y66_c00394{bottom:345.774000px;}
.y67_c00394{bottom:347.718000px;}
.y68_c00394{bottom:348.078000px;}
.y69_c00394{bottom:349.383000px;}
.y5d_c00394{bottom:357.489000px;}
.y5e_c00394{bottom:357.942000px;}
.y5f_c00394{bottom:358.393500px;}
.y60_c00394{bottom:360.961500px;}
.y61_c00394{bottom:361.941000px;}
.y62_c00394{bottom:363.117000px;}
.y55_c00394{bottom:374.502000px;}
.y56_c00394{bottom:374.781000px;}
.y57_c00394{bottom:376.165500px;}
.y58_c00394{bottom:376.635000px;}
.y59_c00394{bottom:377.127000px;}
.y5a_c00394{bottom:378.463500px;}
.y5b_c00394{bottom:379.861500px;}
.y5c_c00394{bottom:380.433000px;}
.y4e_c00394{bottom:390.702000px;}
.y4f_c00394{bottom:391.206000px;}
.y50_c00394{bottom:392.793000px;}
.y51_c00394{bottom:393.960000px;}
.y52_c00394{bottom:394.456500px;}
.y53_c00394{bottom:395.112000px;}
.y54_c00394{bottom:396.850500px;}
.y46_c00394{bottom:408.255000px;}
.y47_c00394{bottom:409.398000px;}
.y48_c00394{bottom:410.086500px;}
.y49_c00394{bottom:410.880000px;}
.y4a_c00394{bottom:412.449000px;}
.y4b_c00394{bottom:413.164500px;}
.y4c_c00394{bottom:413.686500px;}
.y4d_c00394{bottom:414.712500px;}
.y40_c00394{bottom:424.182000px;}
.y41_c00394{bottom:425.952000px;}
.y42_c00394{bottom:428.152500px;}
.y43_c00394{bottom:429.543000px;}
.y44_c00394{bottom:430.344000px;}
.y45_c00394{bottom:430.825500px;}
.y38_c00394{bottom:442.536000px;}
.y39_c00394{bottom:443.125500px;}
.y3a_c00394{bottom:444.271500px;}
.y3b_c00394{bottom:444.769500px;}
.y3c_c00394{bottom:445.930500px;}
.y3d_c00394{bottom:446.388000px;}
.y3e_c00394{bottom:447.724500px;}
.y3f_c00394{bottom:448.806000px;}
.y32_c00394{bottom:458.739000px;}
.y33_c00394{bottom:461.304000px;}
.y34_c00394{bottom:461.887500px;}
.y35_c00394{bottom:463.675500px;}
.y36_c00394{bottom:464.194500px;}
.y37_c00394{bottom:465.141000px;}
.y2a_c00394{bottom:476.014500px;}
.y2b_c00394{bottom:476.923500px;}
.y2c_c00394{bottom:477.988500px;}
.y2d_c00394{bottom:478.368000px;}
.y2e_c00394{bottom:478.668000px;}
.y2f_c00394{bottom:479.535000px;}
.y30_c00394{bottom:479.904000px;}
.y31_c00394{bottom:480.385500px;}
.y22_c00394{bottom:491.143500px;}
.y23_c00394{bottom:493.872000px;}
.y24_c00394{bottom:494.385000px;}
.y25_c00394{bottom:495.870000px;}
.y26_c00394{bottom:496.507500px;}
.y27_c00394{bottom:497.812500px;}
.y28_c00394{bottom:498.964500px;}
.y29_c00394{bottom:499.974000px;}
.y1a_c00394{bottom:506.809500px;}
.y1b_c00394{bottom:508.215000px;}
.y1c_c00394{bottom:510.009000px;}
.y1d_c00394{bottom:510.823500px;}
.y1e_c00394{bottom:513.015000px;}
.y1f_c00394{bottom:514.117500px;}
.y20_c00394{bottom:514.566000px;}
.y21_c00394{bottom:515.196000px;}
.y12_c00394{bottom:524.625000px;}
.y13_c00394{bottom:525.117000px;}
.y14_c00394{bottom:526.939500px;}
.y15_c00394{bottom:528.108000px;}
.y16_c00394{bottom:528.679500px;}
.y17_c00394{bottom:530.190000px;}
.y18_c00394{bottom:532.009500px;}
.y19_c00394{bottom:532.659000px;}
.ya_c00394{bottom:543.784500px;}
.yb_c00394{bottom:544.803000px;}
.yc_c00394{bottom:545.062500px;}
.yd_c00394{bottom:545.427000px;}
.ye_c00394{bottom:546.345000px;}
.yf_c00394{bottom:546.636000px;}
.y10_c00394{bottom:548.214000px;}
.y11_c00394{bottom:548.662500px;}
.y2_c00394{bottom:559.990500px;}
.y3_c00394{bottom:561.144000px;}
.y4_c00394{bottom:562.234500px;}
.y5_c00394{bottom:563.601000px;}
.y6_c00394{bottom:564.307500px;}
.y7_c00394{bottom:564.958500px;}
.y8_c00394{bottom:566.734500px;}
.y9_c00394{bottom:567.399000px;}
.y1_c00394{bottom:579.013500px;}
.h3_c00394{height:57.750000px;}
.h9_c00394{height:58.800000px;}
.hb_c00394{height:59.850000px;}
.h5_c00394{height:60.900000px;}
.ha_c00394{height:61.950000px;}
.h7_c00394{height:63.000000px;}
.h4_c00394{height:64.050000px;}
.hc_c00394{height:66.150000px;}
.h6_c00394{height:67.200000px;}
.h8_c00394{height:69.300000px;}
.h2_c00394{height:70.350000px;}
.hd_c00394{height:71.400000px;}
.h0_c00394{height:613.170000px;}
.h1_c00394{height:613.500000px;}
.w0_c00394{width:359.100000px;}
.w1_c00394{width:359.250000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:18.430500px;}
.xf_c00394{left:19.665000px;}
.x20_c00394{left:21.567000px;}
.x3f_c00394{left:22.987500px;}
.x4c_c00394{left:24.039000px;}
.x46_c00394{left:25.708500px;}
.x5e_c00394{left:26.946000px;}
.x6a_c00394{left:28.924500px;}
.x74_c00394{left:30.157500px;}
.x7f_c00394{left:32.157000px;}
.x10_c00394{left:35.529000px;}
.x51_c00394{left:38.602500px;}
.x7a_c00394{left:40.146000px;}
.x39_c00394{left:44.301000px;}
.x2b_c00394{left:48.555000px;}
.x4d_c00394{left:50.245500px;}
.x72_c00394{left:54.495000px;}
.x77_c00394{left:56.329500px;}
.x54_c00394{left:58.284000px;}
.x3_c00394{left:59.640000px;}
.x43_c00394{left:64.816500px;}
.x32_c00394{left:67.929000px;}
.x5f_c00394{left:69.051000px;}
.x9_c00394{left:70.315500px;}
.x21_c00394{left:72.040500px;}
.x80_c00394{left:74.122500px;}
.x7b_c00394{left:79.828500px;}
.xa_c00394{left:83.275500px;}
.x66_c00394{left:85.146000px;}
.x48_c00394{left:87.342000px;}
.x2f_c00394{left:90.262500px;}
.x82_c00394{left:91.953000px;}
.x11_c00394{left:94.332000px;}
.x33_c00394{left:95.485500px;}
.x5a_c00394{left:96.847500px;}
.x4_c00394{left:98.572500px;}
.x75_c00394{left:100.044000px;}
.xb_c00394{left:101.476500px;}
.x7c_c00394{left:103.065000px;}
.x6f_c00394{left:104.614500px;}
.x84_c00394{left:106.612500px;}
.x1a_c00394{left:108.205500px;}
.x17_c00394{left:110.874000px;}
.x3a_c00394{left:113.322000px;}
.x40_c00394{left:115.707000px;}
.x60_c00394{left:116.769000px;}
.x52_c00394{left:119.344500px;}
.x55_c00394{left:120.388500px;}
.x6b_c00394{left:122.013000px;}
.x2c_c00394{left:123.279000px;}
.x1b_c00394{left:124.753500px;}
.x34_c00394{left:127.218000px;}
.x27_c00394{left:128.262000px;}
.x64_c00394{left:130.822500px;}
.x12_c00394{left:132.003000px;}
.x18_c00394{left:134.151000px;}
.x41_c00394{left:137.100000px;}
.x78_c00394{left:138.780000px;}
.x86_c00394{left:142.263000px;}
.x7d_c00394{left:144.640500px;}
.x1_c00394{left:146.880000px;}
.x49_c00394{left:148.171500px;}
.x13_c00394{left:150.454500px;}
.x22_c00394{left:152.229000px;}
.x61_c00394{left:153.840000px;}
.xc_c00394{left:161.938500px;}
.x3b_c00394{left:164.061000px;}
.x47_c00394{left:166.887000px;}
.x23_c00394{left:168.900000px;}
.x4e_c00394{left:170.830500px;}
.x5_c00394{left:172.608000px;}
.x5b_c00394{left:173.778000px;}
.x30_c00394{left:174.894000px;}
.x2d_c00394{left:176.022000px;}
.x67_c00394{left:178.221000px;}
.x62_c00394{left:180.301500px;}
.x44_c00394{left:181.515000px;}
.x87_c00394{left:184.350000px;}
.x3c_c00394{left:185.662500px;}
.x56_c00394{left:187.050000px;}
.x68_c00394{left:188.098500px;}
.x35_c00394{left:189.973500px;}
.x65_c00394{left:191.577000px;}
.x1c_c00394{left:193.182000px;}
.x70_c00394{left:194.236500px;}
.x6_c00394{left:195.847500px;}
.x14_c00394{left:199.158000px;}
.x53_c00394{left:203.584500px;}
.x83_c00394{left:204.751500px;}
.x7e_c00394{left:206.209500px;}
.x76_c00394{left:209.383500px;}
.x81_c00394{left:212.499000px;}
.x3d_c00394{left:214.177500px;}
.x24_c00394{left:217.027500px;}
.x36_c00394{left:218.589000px;}
.x6c_c00394{left:222.198000px;}
.x4a_c00394{left:223.516500px;}
.x5c_c00394{left:224.542500px;}
.x45_c00394{left:226.038000px;}
.x28_c00394{left:227.070000px;}
.x19_c00394{left:228.265500px;}
.x57_c00394{left:233.686500px;}
.x1d_c00394{left:235.261500px;}
.x25_c00394{left:237.565500px;}
.x37_c00394{left:239.440500px;}
.xd_c00394{left:240.834000px;}
.x4b_c00394{left:243.259500px;}
.x6d_c00394{left:245.154000px;}
.x4f_c00394{left:246.507000px;}
.x29_c00394{left:248.677500px;}
.x88_c00394{left:251.650500px;}
.x42_c00394{left:255.999000px;}
.x15_c00394{left:257.860500px;}
.x7_c00394{left:259.293000px;}
.x69_c00394{left:261.816000px;}
.xe_c00394{left:263.283000px;}
.x26_c00394{left:264.336000px;}
.x1e_c00394{left:272.410500px;}
.x73_c00394{left:274.261500px;}
.x50_c00394{left:275.959500px;}
.x31_c00394{left:277.621500px;}
.x16_c00394{left:278.797500px;}
.x38_c00394{left:280.501500px;}
.x8_c00394{left:283.042500px;}
.x2a_c00394{left:288.126000px;}
.x3e_c00394{left:289.780500px;}
.x58_c00394{left:292.894500px;}
.x6e_c00394{left:295.812000px;}
.x71_c00394{left:303.345000px;}
.x1f_c00394{left:304.971000px;}
.x2e_c00394{left:306.727500px;}
.x63_c00394{left:311.440500px;}
.x59_c00394{left:312.598500px;}
.x5d_c00394{left:317.947500px;}
.x85_c00394{left:319.633500px;}
.x79_c00394{left:324.774000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs1_c00394{font-size:51.333333pt;}
.fs7_c00394{font-size:52.266667pt;}
.fs9_c00394{font-size:53.200000pt;}
.fs3_c00394{font-size:54.133333pt;}
.fs8_c00394{font-size:55.066667pt;}
.fs5_c00394{font-size:56.000000pt;}
.fs2_c00394{font-size:56.933333pt;}
.fsa_c00394{font-size:58.800000pt;}
.fs4_c00394{font-size:59.733333pt;}
.fs6_c00394{font-size:61.600000pt;}
.fs0_c00394{font-size:62.533333pt;}
.fsb_c00394{font-size:63.466667pt;}
.y0_c00394{bottom:0.000000pt;}
.yeb_c00394{bottom:32.652000pt;}
.yec_c00394{bottom:33.137333pt;}
.yed_c00394{bottom:33.486667pt;}
.yee_c00394{bottom:34.600000pt;}
.yef_c00394{bottom:35.348000pt;}
.yf0_c00394{bottom:36.544000pt;}
.yf1_c00394{bottom:36.942667pt;}
.ye4_c00394{bottom:49.212000pt;}
.ye5_c00394{bottom:50.617333pt;}
.ye6_c00394{bottom:50.914667pt;}
.ye7_c00394{bottom:51.812000pt;}
.ye8_c00394{bottom:52.402667pt;}
.ye9_c00394{bottom:52.740000pt;}
.yea_c00394{bottom:54.405333pt;}
.ydd_c00394{bottom:66.009333pt;}
.yde_c00394{bottom:66.554667pt;}
.ydf_c00394{bottom:66.800000pt;}
.ye0_c00394{bottom:67.822667pt;}
.ye1_c00394{bottom:68.304000pt;}
.ye2_c00394{bottom:68.777333pt;}
.ye3_c00394{bottom:69.824000pt;}
.yd4_c00394{bottom:79.212000pt;}
.yd5_c00394{bottom:79.996000pt;}
.yd6_c00394{bottom:80.249333pt;}
.yd7_c00394{bottom:81.000000pt;}
.yd8_c00394{bottom:81.892000pt;}
.yd9_c00394{bottom:82.578667pt;}
.yda_c00394{bottom:83.082667pt;}
.ydb_c00394{bottom:84.144000pt;}
.ydc_c00394{bottom:84.416000pt;}
.ycb_c00394{bottom:95.048000pt;}
.ycc_c00394{bottom:95.682667pt;}
.ycd_c00394{bottom:96.054667pt;}
.yce_c00394{bottom:96.720000pt;}
.ycf_c00394{bottom:97.441333pt;}
.yd0_c00394{bottom:97.705333pt;}
.yd1_c00394{bottom:98.617333pt;}
.yd2_c00394{bottom:98.949333pt;}
.yd3_c00394{bottom:99.413333pt;}
.yc2_c00394{bottom:108.730667pt;}
.yc3_c00394{bottom:109.253333pt;}
.yc4_c00394{bottom:109.525333pt;}
.yc5_c00394{bottom:110.497333pt;}
.yc6_c00394{bottom:110.938667pt;}
.yc7_c00394{bottom:112.720000pt;}
.yc8_c00394{bottom:113.025333pt;}
.yc9_c00394{bottom:114.369333pt;}
.yca_c00394{bottom:114.741333pt;}
.ybc_c00394{bottom:125.526667pt;}
.ybd_c00394{bottom:126.396000pt;}
.ybe_c00394{bottom:127.037333pt;}
.ybf_c00394{bottom:127.518667pt;}
.yc0_c00394{bottom:127.757333pt;}
.yc1_c00394{bottom:128.057333pt;}
.yb5_c00394{bottom:139.206667pt;}
.yb6_c00394{bottom:139.626667pt;}
.yb7_c00394{bottom:140.938667pt;}
.yb8_c00394{bottom:141.286667pt;}
.yb9_c00394{bottom:142.153333pt;}
.yba_c00394{bottom:143.338667pt;}
.ybb_c00394{bottom:143.649333pt;}
.yae_c00394{bottom:153.365333pt;}
.yaf_c00394{bottom:153.832000pt;}
.yb0_c00394{bottom:154.316000pt;}
.yb1_c00394{bottom:154.686667pt;}
.yb2_c00394{bottom:155.432000pt;}
.yb3_c00394{bottom:155.920000pt;}
.yb4_c00394{bottom:156.789333pt;}
.ya5_c00394{bottom:168.250667pt;}
.ya6_c00394{bottom:168.988000pt;}
.ya7_c00394{bottom:170.153333pt;}
.ya8_c00394{bottom:170.468000pt;}
.ya9_c00394{bottom:170.970667pt;}
.yaa_c00394{bottom:172.201333pt;}
.yab_c00394{bottom:172.670667pt;}
.yac_c00394{bottom:173.706667pt;}
.yad_c00394{bottom:174.172000pt;}
.y9e_c00394{bottom:184.088000pt;}
.y9f_c00394{bottom:184.833333pt;}
.ya0_c00394{bottom:185.109333pt;}
.ya1_c00394{bottom:185.990667pt;}
.ya2_c00394{bottom:186.113333pt;}
.ya3_c00394{bottom:186.769333pt;}
.ya4_c00394{bottom:187.030667pt;}
.y98_c00394{bottom:200.406667pt;}
.y99_c00394{bottom:201.201333pt;}
.y9a_c00394{bottom:201.510667pt;}
.y9b_c00394{bottom:202.158667pt;}
.y9c_c00394{bottom:202.854667pt;}
.y9d_c00394{bottom:203.210667pt;}
.y90_c00394{bottom:214.569333pt;}
.y91_c00394{bottom:215.168000pt;}
.y92_c00394{bottom:215.846667pt;}
.y93_c00394{bottom:216.373333pt;}
.y94_c00394{bottom:216.749333pt;}
.y95_c00394{bottom:217.564000pt;}
.y96_c00394{bottom:217.886667pt;}
.y97_c00394{bottom:218.614667pt;}
.y89_c00394{bottom:230.648000pt;}
.y8a_c00394{bottom:231.538667pt;}
.y8b_c00394{bottom:232.496000pt;}
.y8c_c00394{bottom:232.737333pt;}
.y8d_c00394{bottom:233.128000pt;}
.y8e_c00394{bottom:233.424000pt;}
.y8f_c00394{bottom:234.290667pt;}
.y80_c00394{bottom:245.048000pt;}
.y81_c00394{bottom:245.572000pt;}
.y82_c00394{bottom:246.510667pt;}
.y83_c00394{bottom:247.269333pt;}
.y84_c00394{bottom:247.517333pt;}
.y85_c00394{bottom:248.222667pt;}
.y86_c00394{bottom:248.436000pt;}
.y87_c00394{bottom:249.117333pt;}
.y88_c00394{bottom:249.414667pt;}
.y79_c00394{bottom:259.928000pt;}
.y7a_c00394{bottom:260.181333pt;}
.y7b_c00394{bottom:261.253333pt;}
.y7c_c00394{bottom:261.545333pt;}
.y7d_c00394{bottom:262.270667pt;}
.y7e_c00394{bottom:262.968000pt;}
.y7f_c00394{bottom:264.189333pt;}
.y70_c00394{bottom:275.050667pt;}
.y71_c00394{bottom:275.562667pt;}
.y72_c00394{bottom:276.777333pt;}
.y73_c00394{bottom:277.036000pt;}
.y74_c00394{bottom:277.921333pt;}
.y75_c00394{bottom:278.473333pt;}
.y76_c00394{bottom:279.401333pt;}
.y77_c00394{bottom:279.654667pt;}
.y78_c00394{bottom:279.977333pt;}
.y6a_c00394{bottom:290.648000pt;}
.y6b_c00394{bottom:291.670667pt;}
.y6c_c00394{bottom:292.644000pt;}
.y6d_c00394{bottom:292.968000pt;}
.y6e_c00394{bottom:293.849333pt;}
.y6f_c00394{bottom:294.165333pt;}
.y63_c00394{bottom:304.092000pt;}
.y64_c00394{bottom:305.864000pt;}
.y65_c00394{bottom:306.905333pt;}
.y66_c00394{bottom:307.354667pt;}
.y67_c00394{bottom:309.082667pt;}
.y68_c00394{bottom:309.402667pt;}
.y69_c00394{bottom:310.562667pt;}
.y5d_c00394{bottom:317.768000pt;}
.y5e_c00394{bottom:318.170667pt;}
.y5f_c00394{bottom:318.572000pt;}
.y60_c00394{bottom:320.854667pt;}
.y61_c00394{bottom:321.725333pt;}
.y62_c00394{bottom:322.770667pt;}
.y55_c00394{bottom:332.890667pt;}
.y56_c00394{bottom:333.138667pt;}
.y57_c00394{bottom:334.369333pt;}
.y58_c00394{bottom:334.786667pt;}
.y59_c00394{bottom:335.224000pt;}
.y5a_c00394{bottom:336.412000pt;}
.y5b_c00394{bottom:337.654667pt;}
.y5c_c00394{bottom:338.162667pt;}
.y4e_c00394{bottom:347.290667pt;}
.y4f_c00394{bottom:347.738667pt;}
.y50_c00394{bottom:349.149333pt;}
.y51_c00394{bottom:350.186667pt;}
.y52_c00394{bottom:350.628000pt;}
.y53_c00394{bottom:351.210667pt;}
.y54_c00394{bottom:352.756000pt;}
.y46_c00394{bottom:362.893333pt;}
.y47_c00394{bottom:363.909333pt;}
.y48_c00394{bottom:364.521333pt;}
.y49_c00394{bottom:365.226667pt;}
.y4a_c00394{bottom:366.621333pt;}
.y4b_c00394{bottom:367.257333pt;}
.y4c_c00394{bottom:367.721333pt;}
.y4d_c00394{bottom:368.633333pt;}
.y40_c00394{bottom:377.050667pt;}
.y41_c00394{bottom:378.624000pt;}
.y42_c00394{bottom:380.580000pt;}
.y43_c00394{bottom:381.816000pt;}
.y44_c00394{bottom:382.528000pt;}
.y45_c00394{bottom:382.956000pt;}
.y38_c00394{bottom:393.365333pt;}
.y39_c00394{bottom:393.889333pt;}
.y3a_c00394{bottom:394.908000pt;}
.y3b_c00394{bottom:395.350667pt;}
.y3c_c00394{bottom:396.382667pt;}
.y3d_c00394{bottom:396.789333pt;}
.y3e_c00394{bottom:397.977333pt;}
.y3f_c00394{bottom:398.938667pt;}
.y32_c00394{bottom:407.768000pt;}
.y33_c00394{bottom:410.048000pt;}
.y34_c00394{bottom:410.566667pt;}
.y35_c00394{bottom:412.156000pt;}
.y36_c00394{bottom:412.617333pt;}
.y37_c00394{bottom:413.458667pt;}
.y2a_c00394{bottom:423.124000pt;}
.y2b_c00394{bottom:423.932000pt;}
.y2c_c00394{bottom:424.878667pt;}
.y2d_c00394{bottom:425.216000pt;}
.y2e_c00394{bottom:425.482667pt;}
.y2f_c00394{bottom:426.253333pt;}
.y30_c00394{bottom:426.581333pt;}
.y31_c00394{bottom:427.009333pt;}
.y22_c00394{bottom:436.572000pt;}
.y23_c00394{bottom:438.997333pt;}
.y24_c00394{bottom:439.453333pt;}
.y25_c00394{bottom:440.773333pt;}
.y26_c00394{bottom:441.340000pt;}
.y27_c00394{bottom:442.500000pt;}
.y28_c00394{bottom:443.524000pt;}
.y29_c00394{bottom:444.421333pt;}
.y1a_c00394{bottom:450.497333pt;}
.y1b_c00394{bottom:451.746667pt;}
.y1c_c00394{bottom:453.341333pt;}
.y1d_c00394{bottom:454.065333pt;}
.y1e_c00394{bottom:456.013333pt;}
.y1f_c00394{bottom:456.993333pt;}
.y20_c00394{bottom:457.392000pt;}
.y21_c00394{bottom:457.952000pt;}
.y12_c00394{bottom:466.333333pt;}
.y13_c00394{bottom:466.770667pt;}
.y14_c00394{bottom:468.390667pt;}
.y15_c00394{bottom:469.429333pt;}
.y16_c00394{bottom:469.937333pt;}
.y17_c00394{bottom:471.280000pt;}
.y18_c00394{bottom:472.897333pt;}
.y19_c00394{bottom:473.474667pt;}
.ya_c00394{bottom:483.364000pt;}
.yb_c00394{bottom:484.269333pt;}
.yc_c00394{bottom:484.500000pt;}
.yd_c00394{bottom:484.824000pt;}
.ye_c00394{bottom:485.640000pt;}
.yf_c00394{bottom:485.898667pt;}
.y10_c00394{bottom:487.301333pt;}
.y11_c00394{bottom:487.700000pt;}
.y2_c00394{bottom:497.769333pt;}
.y3_c00394{bottom:498.794667pt;}
.y4_c00394{bottom:499.764000pt;}
.y5_c00394{bottom:500.978667pt;}
.y6_c00394{bottom:501.606667pt;}
.y7_c00394{bottom:502.185333pt;}
.y8_c00394{bottom:503.764000pt;}
.y9_c00394{bottom:504.354667pt;}
.y1_c00394{bottom:514.678667pt;}
.h3_c00394{height:51.333333pt;}
.h9_c00394{height:52.266667pt;}
.hb_c00394{height:53.200000pt;}
.h5_c00394{height:54.133333pt;}
.ha_c00394{height:55.066667pt;}
.h7_c00394{height:56.000000pt;}
.h4_c00394{height:56.933333pt;}
.hc_c00394{height:58.800000pt;}
.h6_c00394{height:59.733333pt;}
.h8_c00394{height:61.600000pt;}
.h2_c00394{height:62.533333pt;}
.hd_c00394{height:63.466667pt;}
.h0_c00394{height:545.040000pt;}
.h1_c00394{height:545.333333pt;}
.w0_c00394{width:319.200000pt;}
.w1_c00394{width:319.333333pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:16.382667pt;}
.xf_c00394{left:17.480000pt;}
.x20_c00394{left:19.170667pt;}
.x3f_c00394{left:20.433333pt;}
.x4c_c00394{left:21.368000pt;}
.x46_c00394{left:22.852000pt;}
.x5e_c00394{left:23.952000pt;}
.x6a_c00394{left:25.710667pt;}
.x74_c00394{left:26.806667pt;}
.x7f_c00394{left:28.584000pt;}
.x10_c00394{left:31.581333pt;}
.x51_c00394{left:34.313333pt;}
.x7a_c00394{left:35.685333pt;}
.x39_c00394{left:39.378667pt;}
.x2b_c00394{left:43.160000pt;}
.x4d_c00394{left:44.662667pt;}
.x72_c00394{left:48.440000pt;}
.x77_c00394{left:50.070667pt;}
.x54_c00394{left:51.808000pt;}
.x3_c00394{left:53.013333pt;}
.x43_c00394{left:57.614667pt;}
.x32_c00394{left:60.381333pt;}
.x5f_c00394{left:61.378667pt;}
.x9_c00394{left:62.502667pt;}
.x21_c00394{left:64.036000pt;}
.x80_c00394{left:65.886667pt;}
.x7b_c00394{left:70.958667pt;}
.xa_c00394{left:74.022667pt;}
.x66_c00394{left:75.685333pt;}
.x48_c00394{left:77.637333pt;}
.x2f_c00394{left:80.233333pt;}
.x82_c00394{left:81.736000pt;}
.x11_c00394{left:83.850667pt;}
.x33_c00394{left:84.876000pt;}
.x5a_c00394{left:86.086667pt;}
.x4_c00394{left:87.620000pt;}
.x75_c00394{left:88.928000pt;}
.xb_c00394{left:90.201333pt;}
.x7c_c00394{left:91.613333pt;}
.x6f_c00394{left:92.990667pt;}
.x84_c00394{left:94.766667pt;}
.x1a_c00394{left:96.182667pt;}
.x17_c00394{left:98.554667pt;}
.x3a_c00394{left:100.730667pt;}
.x40_c00394{left:102.850667pt;}
.x60_c00394{left:103.794667pt;}
.x52_c00394{left:106.084000pt;}
.x55_c00394{left:107.012000pt;}
.x6b_c00394{left:108.456000pt;}
.x2c_c00394{left:109.581333pt;}
.x1b_c00394{left:110.892000pt;}
.x34_c00394{left:113.082667pt;}
.x27_c00394{left:114.010667pt;}
.x64_c00394{left:116.286667pt;}
.x12_c00394{left:117.336000pt;}
.x18_c00394{left:119.245333pt;}
.x41_c00394{left:121.866667pt;}
.x78_c00394{left:123.360000pt;}
.x86_c00394{left:126.456000pt;}
.x7d_c00394{left:128.569333pt;}
.x1_c00394{left:130.560000pt;}
.x49_c00394{left:131.708000pt;}
.x13_c00394{left:133.737333pt;}
.x22_c00394{left:135.314667pt;}
.x61_c00394{left:136.746667pt;}
.xc_c00394{left:143.945333pt;}
.x3b_c00394{left:145.832000pt;}
.x47_c00394{left:148.344000pt;}
.x23_c00394{left:150.133333pt;}
.x4e_c00394{left:151.849333pt;}
.x5_c00394{left:153.429333pt;}
.x5b_c00394{left:154.469333pt;}
.x30_c00394{left:155.461333pt;}
.x2d_c00394{left:156.464000pt;}
.x67_c00394{left:158.418667pt;}
.x62_c00394{left:160.268000pt;}
.x44_c00394{left:161.346667pt;}
.x87_c00394{left:163.866667pt;}
.x3c_c00394{left:165.033333pt;}
.x56_c00394{left:166.266667pt;}
.x68_c00394{left:167.198667pt;}
.x35_c00394{left:168.865333pt;}
.x65_c00394{left:170.290667pt;}
.x1c_c00394{left:171.717333pt;}
.x70_c00394{left:172.654667pt;}
.x6_c00394{left:174.086667pt;}
.x14_c00394{left:177.029333pt;}
.x53_c00394{left:180.964000pt;}
.x83_c00394{left:182.001333pt;}
.x7e_c00394{left:183.297333pt;}
.x76_c00394{left:186.118667pt;}
.x81_c00394{left:188.888000pt;}
.x3d_c00394{left:190.380000pt;}
.x24_c00394{left:192.913333pt;}
.x36_c00394{left:194.301333pt;}
.x6c_c00394{left:197.509333pt;}
.x4a_c00394{left:198.681333pt;}
.x5c_c00394{left:199.593333pt;}
.x45_c00394{left:200.922667pt;}
.x28_c00394{left:201.840000pt;}
.x19_c00394{left:202.902667pt;}
.x57_c00394{left:207.721333pt;}
.x1d_c00394{left:209.121333pt;}
.x25_c00394{left:211.169333pt;}
.x37_c00394{left:212.836000pt;}
.xd_c00394{left:214.074667pt;}
.x4b_c00394{left:216.230667pt;}
.x6d_c00394{left:217.914667pt;}
.x4f_c00394{left:219.117333pt;}
.x29_c00394{left:221.046667pt;}
.x88_c00394{left:223.689333pt;}
.x42_c00394{left:227.554667pt;}
.x15_c00394{left:229.209333pt;}
.x7_c00394{left:230.482667pt;}
.x69_c00394{left:232.725333pt;}
.xe_c00394{left:234.029333pt;}
.x26_c00394{left:234.965333pt;}
.x1e_c00394{left:242.142667pt;}
.x73_c00394{left:243.788000pt;}
.x50_c00394{left:245.297333pt;}
.x31_c00394{left:246.774667pt;}
.x16_c00394{left:247.820000pt;}
.x38_c00394{left:249.334667pt;}
.x8_c00394{left:251.593333pt;}
.x2a_c00394{left:256.112000pt;}
.x3e_c00394{left:257.582667pt;}
.x58_c00394{left:260.350667pt;}
.x6e_c00394{left:262.944000pt;}
.x71_c00394{left:269.640000pt;}
.x1f_c00394{left:271.085333pt;}
.x2e_c00394{left:272.646667pt;}
.x63_c00394{left:276.836000pt;}
.x59_c00394{left:277.865333pt;}
.x5d_c00394{left:282.620000pt;}
.x85_c00394{left:284.118667pt;}
.x79_c00394{left:288.688000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00395 {
    display:none;
  }
  .loading-indicator_c00395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00395 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00395 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00395" -> "#page-container .classname_c00395")
 */
.pf_c00395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00395 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00395 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00395 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00395 {overflow:visible;}
  }
}
.c_c00395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00395 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00395:after { /* webkit #35443 */
  content: '';
}
.t_c00395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00395 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00395 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00395 { /* info for Javascript */
  display:none;
}
.l_c00395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00395:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00395 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00395.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.011735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011735,0.000000,0.000000,0.250000,0,0);}
.me5_c00395{transform:matrix(0.092830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092830,0.000000,0.000000,0.250000,0,0);}
.m9b_c00395{transform:matrix(0.129360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129360,0.000000,0.000000,0.250000,0,0);}
.mb3_c00395{transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133280,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.136710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00395{transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00395{transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);}
.ma7_c00395{transform:matrix(0.148935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148935,0.000000,0.000000,0.250000,0,0);}
.mb6_c00395{transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);}
.mbb_c00395{transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152745,0.000000,0.000000,0.250000,0,0);}
.mde_c00395{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.ma3_c00395{transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);}
.m68_c00395{transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);}
.m62_c00395{transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m65_c00395{transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156520,0.000000,0.000000,0.250000,0,0);}
.m46_c00395{transform:matrix(0.158055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158055,0.000000,0.000000,0.250000,0,0);}
.m71_c00395{transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m92_c00395{transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);}
.mc2_c00395{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163410,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m4c_c00395{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mce_c00395{transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165235,0.000000,0.000000,0.250000,0,0);}
.m73_c00395{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m9c_c00395{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);}
.mbc_c00395{transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166740,0.000000,0.000000,0.250000,0,0);}
.md7_c00395{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me2_c00395{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.168465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168465,0.000000,0.000000,0.250000,0,0);}
.m89_c00395{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.me0_c00395{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.mbd_c00395{transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);}
.me6_c00395{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.mc4_c00395{transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170755,0.000000,0.000000,0.250000,0,0);}
.md1_c00395{transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170965,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);}
.m67_c00395{transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);}
.ma4_c00395{transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m9f_c00395{transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);}
.m98_c00395{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.mba_c00395{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m32_c00395{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m76_c00395{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);}
.m99_c00395{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.mbe_c00395{transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);}
.mb5_c00395{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m72_c00395{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.me1_c00395{transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177815,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);}
.me4_c00395{transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);}
.m4a_c00395{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m91_c00395{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m74_c00395{transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00395{transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180320,0.000000,0.000000,0.250000,0,0);}
.m5c_c00395{transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180745,0.000000,0.000000,0.250000,0,0);}
.m63_c00395{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.mc1_c00395{transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.m95_c00395{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.m9d_c00395{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);}
.m30_c00395{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m57_c00395{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m82_c00395{transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);}
.m60_c00395{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m6e_c00395{transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.m75_c00395{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m47_c00395{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00395{transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.m77_c00395{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m48_c00395{transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190370,0.000000,0.000000,0.250000,0,0);}
.m66_c00395{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m9a_c00395{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.m70_c00395{transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);}
.m61_c00395{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.md8_c00395{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m85_c00395{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m58_c00395{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.mdb_c00395{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.mc3_c00395{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.mb4_c00395{transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);}
.m27_c00395{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.ma9_c00395{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.md0_c00395{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m5a_c00395{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);}
.md6_c00395{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197015,0.000000,0.000000,0.250000,0,0);}
.m96_c00395{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m4d_c00395{transform:matrix(0.197935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197935,0.000000,0.000000,0.250000,0,0);}
.mac_c00395{transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);}
.m53_c00395{transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);}
.m94_c00395{transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);}
.ma5_c00395{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00395{transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);}
.m5f_c00395{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201140,0.000000,0.000000,0.250000,0,0);}
.m2c_c00395{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.m52_c00395{transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);}
.mae_c00395{transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);}
.md4_c00395{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);}
.m56_c00395{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.mcf_c00395{transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203845,0.000000,0.000000,0.250000,0,0);}
.mdc_c00395{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m6c_c00395{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00395{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m7b_c00395{transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00395{transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204810,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.me7_c00395{transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);}
.mcc_c00395{transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205465,0.000000,0.000000,0.250000,0,0);}
.m93_c00395{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.206310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206310,0.000000,0.000000,0.250000,0,0);}
.m8b_c00395{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.m69_c00395{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.mc8_c00395{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.mbf_c00395{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.m50_c00395{transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);}
.maf_c00395{transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);}
.m80_c00395{transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);}
.m49_c00395{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.m55_c00395{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.ma6_c00395{transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);}
.m7d_c00395{transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);}
.m54_c00395{transform:matrix(0.209015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209015,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.mcd_c00395{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.m2d_c00395{transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);}
.m83_c00395{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m7e_c00395{transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00395{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.md9_c00395{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m64_c00395{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.mb8_c00395{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.mdf_c00395{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m79_c00395{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m25_c00395{transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00395{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00395{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.mb2_c00395{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m6b_c00395{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.md5_c00395{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.m87_c00395{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.m8a_c00395{transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218730,0.000000,0.000000,0.250000,0,0);}
.md2_c00395{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m86_c00395{transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);}
.m3d_c00395{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);}
.me3_c00395{transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.m43_c00395{transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);}
.mda_c00395{transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225240,0.000000,0.000000,0.250000,0,0);}
.m8d_c00395{transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);}
.mc9_c00395{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.mad_c00395{transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);}
.m84_c00395{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.maa_c00395{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.mab_c00395{transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);}
.ma8_c00395{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m81_c00395{transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);}
.mc6_c00395{transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);}
.m6a_c00395{transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233785,0.000000,0.000000,0.250000,0,0);}
.mdd_c00395{transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234665,0.000000,0.000000,0.250000,0,0);}
.m45_c00395{transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236335,0.000000,0.000000,0.250000,0,0);}
.m88_c00395{transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00395{transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);}
.mc7_c00395{transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236940,0.000000,0.000000,0.250000,0,0);}
.m51_c00395{transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237530,0.000000,0.000000,0.250000,0,0);}
.mc5_c00395{transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);}
.m8f_c00395{transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);}
.m7a_c00395{transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);}
.m3f_c00395{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m7c_c00395{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.m7f_c00395{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.m78_c00395{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.md3_c00395{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);}
.m59_c00395{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.ma1_c00395{transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);}
.me8_c00395{transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);}
.m6d_c00395{transform:matrix(0.268535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00395{transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);}
.mb0_c00395{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.297720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297720,0.000000,0.000000,0.250000,0,0);}
.m97_c00395{transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);}
.m90_c00395{transform:matrix(0.318695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318695,0.000000,0.000000,0.250000,0,0);}
.m6f_c00395{transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00395{transform:matrix(0.335210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335210,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.399185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399185,0.000000,0.000000,0.250000,0,0);}
.mcb_c00395{transform:matrix(0.426270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426270,0.000000,0.000000,0.250000,0,0);}
.mca_c00395{transform:matrix(0.429305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429305,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:0.000000px;}
.fc0_c00395{color:transparent;}
.fsb_c00395{font-size:57.750000px;}
.fs3_c00395{font-size:58.800000px;}
.fs5_c00395{font-size:59.850000px;}
.fsa_c00395{font-size:60.900000px;}
.fs8_c00395{font-size:61.950000px;}
.fs6_c00395{font-size:63.000000px;}
.fs9_c00395{font-size:64.050000px;}
.fs7_c00395{font-size:65.100000px;}
.fs2_c00395{font-size:66.150000px;}
.fs4_c00395{font-size:67.200000px;}
.fs1_c00395{font-size:69.300000px;}
.fsd_c00395{font-size:70.350000px;}
.fsc_c00395{font-size:71.400000px;}
.fs0_c00395{font-size:82.950000px;}
.y0_c00395{bottom:0.000000px;}
.y9d_c00395{bottom:26.394000px;}
.y9c_c00395{bottom:27.252000px;}
.y9b_c00395{bottom:27.508500px;}
.y9a_c00395{bottom:27.679500px;}
.y99_c00395{bottom:28.348500px;}
.y98_c00395{bottom:28.587000px;}
.y97_c00395{bottom:29.532000px;}
.y96_c00395{bottom:29.989500px;}
.y95_c00395{bottom:31.056000px;}
.y94_c00395{bottom:46.321500px;}
.y93_c00395{bottom:63.313500px;}
.y92_c00395{bottom:80.235000px;}
.y91_c00395{bottom:94.119000px;}
.y90_c00395{bottom:94.677000px;}
.y8f_c00395{bottom:95.304000px;}
.y8e_c00395{bottom:96.246000px;}
.y8d_c00395{bottom:96.937500px;}
.y8c_c00395{bottom:97.743000px;}
.y8b_c00395{bottom:113.670000px;}
.y8a_c00395{bottom:129.399000px;}
.y89_c00395{bottom:129.682500px;}
.y88_c00395{bottom:130.458000px;}
.y87_c00395{bottom:130.531500px;}
.y86_c00395{bottom:131.095500px;}
.y85_c00395{bottom:131.325000px;}
.y84_c00395{bottom:131.616000px;}
.y83_c00395{bottom:131.761500px;}
.y82_c00395{bottom:147.970500px;}
.y81_c00395{bottom:163.663500px;}
.y80_c00395{bottom:163.872000px;}
.y7f_c00395{bottom:164.302500px;}
.y7e_c00395{bottom:164.799000px;}
.y7d_c00395{bottom:165.156000px;}
.y7c_c00395{bottom:166.002000px;}
.y7b_c00395{bottom:166.141500px;}
.y7a_c00395{bottom:166.593000px;}
.y79_c00395{bottom:180.762000px;}
.y78_c00395{bottom:197.749500px;}
.y77_c00395{bottom:198.114000px;}
.y76_c00395{bottom:198.258000px;}
.y75_c00395{bottom:198.894000px;}
.y74_c00395{bottom:199.117500px;}
.y73_c00395{bottom:199.510500px;}
.y72_c00395{bottom:200.251500px;}
.y71_c00395{bottom:200.883000px;}
.y70_c00395{bottom:213.718500px;}
.y6f_c00395{bottom:214.786500px;}
.y6e_c00395{bottom:215.463000px;}
.y6d_c00395{bottom:216.661500px;}
.y6c_c00395{bottom:217.087500px;}
.y6b_c00395{bottom:217.326000px;}
.y6a_c00395{bottom:217.893000px;}
.y69_c00395{bottom:231.718500px;}
.y68_c00395{bottom:232.306500px;}
.y67_c00395{bottom:232.501500px;}
.y66_c00395{bottom:233.076000px;}
.y65_c00395{bottom:234.514500px;}
.y64_c00395{bottom:235.713000px;}
.y63_c00395{bottom:248.959500px;}
.y62_c00395{bottom:266.029500px;}
.y61_c00395{bottom:267.265500px;}
.y60_c00395{bottom:267.991500px;}
.y5f_c00395{bottom:268.441500px;}
.y5e_c00395{bottom:268.986000px;}
.y5d_c00395{bottom:269.193000px;}
.y5c_c00395{bottom:282.483000px;}
.y5b_c00395{bottom:282.645000px;}
.y5a_c00395{bottom:283.410000px;}
.y59_c00395{bottom:284.041500px;}
.y58_c00395{bottom:284.281500px;}
.y57_c00395{bottom:285.127500px;}
.y56_c00395{bottom:285.393000px;}
.y55_c00395{bottom:300.654000px;}
.y54_c00395{bottom:315.774000px;}
.y53_c00395{bottom:316.185000px;}
.y52_c00395{bottom:316.966500px;}
.y51_c00395{bottom:317.575500px;}
.y50_c00395{bottom:317.824500px;}
.y4f_c00395{bottom:318.520500px;}
.y4e_c00395{bottom:319.143000px;}
.y4d_c00395{bottom:333.079500px;}
.y4c_c00395{bottom:333.444000px;}
.y4b_c00395{bottom:334.180500px;}
.y4a_c00395{bottom:334.459500px;}
.y49_c00395{bottom:334.608000px;}
.y48_c00395{bottom:335.256000px;}
.y47_c00395{bottom:335.478000px;}
.y46_c00395{bottom:336.153000px;}
.y45_c00395{bottom:351.577500px;}
.y44_c00395{bottom:367.179000px;}
.y43_c00395{bottom:367.548000px;}
.y42_c00395{bottom:368.274000px;}
.y41_c00395{bottom:368.797500px;}
.y40_c00395{bottom:369.151500px;}
.y3f_c00395{bottom:370.387500px;}
.y3e_c00395{bottom:370.714500px;}
.y3d_c00395{bottom:384.562500px;}
.y3c_c00395{bottom:384.744000px;}
.y3b_c00395{bottom:385.303500px;}
.y3a_c00395{bottom:385.875000px;}
.y39_c00395{bottom:386.628000px;}
.y38_c00395{bottom:387.247500px;}
.y37_c00395{bottom:387.486000px;}
.y36_c00395{bottom:388.534500px;}
.y35_c00395{bottom:400.528500px;}
.y34_c00395{bottom:402.421500px;}
.y33_c00395{bottom:403.503000px;}
.y32_c00395{bottom:404.488500px;}
.y31_c00395{bottom:405.061500px;}
.y30_c00395{bottom:405.544500px;}
.y2f_c00395{bottom:417.433500px;}
.y2e_c00395{bottom:418.782000px;}
.y2d_c00395{bottom:419.230500px;}
.y2c_c00395{bottom:420.462000px;}
.y2b_c00395{bottom:420.880500px;}
.y2a_c00395{bottom:421.560000px;}
.y29_c00395{bottom:422.284500px;}
.y28_c00395{bottom:435.343500px;}
.y27_c00395{bottom:436.242000px;}
.y26_c00395{bottom:437.185500px;}
.y25_c00395{bottom:437.832000px;}
.y24_c00395{bottom:438.703500px;}
.y23_c00395{bottom:439.089000px;}
.y22_c00395{bottom:439.563000px;}
.y21_c00395{bottom:452.082000px;}
.y20_c00395{bottom:453.106500px;}
.y1f_c00395{bottom:453.385500px;}
.y1e_c00395{bottom:454.161000px;}
.y1d_c00395{bottom:454.512000px;}
.y1c_c00395{bottom:455.730000px;}
.y1b_c00395{bottom:456.031500px;}
.y1a_c00395{bottom:468.816000px;}
.y19_c00395{bottom:469.611000px;}
.y18_c00395{bottom:470.868000px;}
.y17_c00395{bottom:471.295500px;}
.y16_c00395{bottom:471.654000px;}
.y15_c00395{bottom:471.996000px;}
.y14_c00395{bottom:472.444500px;}
.y13_c00395{bottom:472.774500px;}
.y12_c00395{bottom:486.361500px;}
.y11_c00395{bottom:486.793500px;}
.y10_c00395{bottom:487.726500px;}
.yf_c00395{bottom:488.089500px;}
.ye_c00395{bottom:488.823000px;}
.yd_c00395{bottom:489.253500px;}
.yc_c00395{bottom:489.514500px;}
.yb_c00395{bottom:502.693500px;}
.ya_c00395{bottom:503.370000px;}
.y9_c00395{bottom:504.130500px;}
.y8_c00395{bottom:504.355500px;}
.y7_c00395{bottom:504.771000px;}
.y6_c00395{bottom:505.059000px;}
.y5_c00395{bottom:505.441500px;}
.y4_c00395{bottom:521.115000px;}
.y3_c00395{bottom:538.006500px;}
.y2_c00395{bottom:555.730500px;}
.y1_c00395{bottom:567.274500px;}
.hd_c00395{height:57.750000px;}
.h5_c00395{height:58.800000px;}
.h7_c00395{height:59.850000px;}
.hc_c00395{height:60.900000px;}
.ha_c00395{height:61.950000px;}
.h8_c00395{height:63.000000px;}
.hb_c00395{height:64.050000px;}
.h9_c00395{height:65.100000px;}
.h4_c00395{height:66.150000px;}
.h6_c00395{height:67.200000px;}
.h3_c00395{height:69.300000px;}
.hf_c00395{height:70.350000px;}
.he_c00395{height:71.400000px;}
.h2_c00395{height:82.950000px;}
.h0_c00395{height:613.170000px;}
.h1_c00395{height:613.500000px;}
.w0_c00395{width:359.100000px;}
.w1_c00395{width:359.250000px;}
.x0_c00395{left:0.000000px;}
.x7c_c00395{left:23.212500px;}
.x7e_c00395{left:26.722500px;}
.x2a_c00395{left:30.349500px;}
.x69_c00395{left:32.829000px;}
.x5d_c00395{left:34.284000px;}
.x52_c00395{left:35.493000px;}
.x41_c00395{left:36.534000px;}
.x19_c00395{left:38.476500px;}
.x14_c00395{left:39.690000px;}
.x3_c00395{left:41.040000px;}
.x49_c00395{left:45.354000px;}
.x76_c00395{left:47.067000px;}
.x5b_c00395{left:50.605500px;}
.x2b_c00395{left:51.930000px;}
.x5e_c00395{left:54.804000px;}
.x57_c00395{left:56.823000px;}
.x1f_c00395{left:58.213500px;}
.xc_c00395{left:59.940000px;}
.x4_c00395{left:61.020000px;}
.x3c_c00395{left:62.671500px;}
.x7a_c00395{left:66.412500px;}
.x30_c00395{left:69.750000px;}
.x66_c00395{left:71.353500px;}
.x1a_c00395{left:73.293000px;}
.x72_c00395{left:74.385000px;}
.x5_c00395{left:76.950000px;}
.x36_c00395{left:80.233500px;}
.x6a_c00395{left:81.364500px;}
.x25_c00395{left:86.476500px;}
.x3d_c00395{left:88.119000px;}
.x70_c00395{left:89.365500px;}
.x20_c00395{left:91.375500px;}
.x5c_c00395{left:92.458500px;}
.x31_c00395{left:95.410500px;}
.x4e_c00395{left:97.107000px;}
.x15_c00395{left:99.090000px;}
.x74_c00395{left:100.704000px;}
.x54_c00395{left:101.785500px;}
.x77_c00395{left:104.565000px;}
.x42_c00395{left:106.456500px;}
.x26_c00395{left:107.818500px;}
.x6_c00395{left:110.700000px;}
.x63_c00395{left:113.775000px;}
.x67_c00395{left:115.639500px;}
.x1_c00395{left:116.640000px;}
.x3e_c00395{left:118.306500px;}
.x37_c00395{left:120.210000px;}
.xd_c00395{left:121.500000px;}
.x7_c00395{left:126.630000px;}
.x27_c00395{left:130.231500px;}
.x6e_c00395{left:132.024000px;}
.x5f_c00395{left:135.264000px;}
.x1b_c00395{left:137.296500px;}
.x2c_c00395{left:138.894000px;}
.xe_c00395{left:142.290000px;}
.x38_c00395{left:144.796500px;}
.x21_c00395{left:147.813000px;}
.x32_c00395{left:153.540000px;}
.x60_c00395{left:154.704000px;}
.x44_c00395{left:155.946000px;}
.x1c_c00395{left:157.816500px;}
.xf_c00395{left:159.030000px;}
.x73_c00395{left:161.064000px;}
.x6f_c00395{left:162.682500px;}
.x2d_c00395{left:164.007000px;}
.x4a_c00395{left:165.234000px;}
.x16_c00395{left:167.400000px;}
.x6b_c00395{left:168.646500px;}
.x3f_c00395{left:170.169000px;}
.x2_c00395{left:171.990000px;}
.x22_c00395{left:175.681500px;}
.x4b_c00395{left:177.924000px;}
.x75_c00395{left:180.894000px;}
.x45_c00395{left:183.159000px;}
.x17_c00395{left:186.030000px;}
.x4f_c00395{left:189.721500px;}
.x55_c00395{left:194.665500px;}
.x33_c00395{left:196.677000px;}
.x7b_c00395{left:198.172500px;}
.x58_c00395{left:199.924500px;}
.x8_c00395{left:204.930000px;}
.x64_c00395{left:209.628000px;}
.x9_c00395{left:214.110000px;}
.x39_c00395{left:217.231500px;}
.x2e_c00395{left:219.376500px;}
.x78_c00395{left:221.230500px;}
.x46_c00395{left:223.404000px;}
.x1d_c00395{left:226.930500px;}
.xa_c00395{left:228.690000px;}
.x10_c00395{left:231.660000px;}
.x28_c00395{left:235.521000px;}
.x61_c00395{left:237.864000px;}
.x2f_c00395{left:239.334000px;}
.x68_c00395{left:240.661500px;}
.x3a_c00395{left:243.573000px;}
.x6c_c00395{left:245.847000px;}
.x23_c00395{left:247.432500px;}
.x7f_c00395{left:249.202500px;}
.x71_c00395{left:250.285500px;}
.x43_c00395{left:252.006000px;}
.x4c_c00395{left:253.254000px;}
.x11_c00395{left:257.580000px;}
.x34_c00395{left:259.573500px;}
.x65_c00395{left:260.907000px;}
.x59_c00395{left:263.694000px;}
.x4d_c00395{left:267.024000px;}
.x6d_c00395{left:273.894000px;}
.x5a_c00395{left:277.143000px;}
.x47_c00395{left:279.295500px;}
.x24_c00395{left:280.654500px;}
.x50_c00395{left:282.046500px;}
.x29_c00395{left:285.192000px;}
.x12_c00395{left:286.470000px;}
.x1e_c00395{left:288.492000px;}
.x7d_c00395{left:295.912500px;}
.xb_c00395{left:297.270000px;}
.x18_c00395{left:301.050000px;}
.x79_c00395{left:305.944500px;}
.x48_c00395{left:307.636500px;}
.x62_c00395{left:309.684000px;}
.x13_c00395{left:311.850000px;}
.x56_c00395{left:312.925500px;}
.x51_c00395{left:315.223500px;}
.x53_c00395{left:316.300500px;}
.x35_c00395{left:319.483500px;}
.x3b_c00395{left:322.911000px;}
.x40_c00395{left:326.769000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fsb_c00395{font-size:51.333333pt;}
.fs3_c00395{font-size:52.266667pt;}
.fs5_c00395{font-size:53.200000pt;}
.fsa_c00395{font-size:54.133333pt;}
.fs8_c00395{font-size:55.066667pt;}
.fs6_c00395{font-size:56.000000pt;}
.fs9_c00395{font-size:56.933333pt;}
.fs7_c00395{font-size:57.866667pt;}
.fs2_c00395{font-size:58.800000pt;}
.fs4_c00395{font-size:59.733333pt;}
.fs1_c00395{font-size:61.600000pt;}
.fsd_c00395{font-size:62.533333pt;}
.fsc_c00395{font-size:63.466667pt;}
.fs0_c00395{font-size:73.733333pt;}
.y0_c00395{bottom:0.000000pt;}
.y9d_c00395{bottom:23.461333pt;}
.y9c_c00395{bottom:24.224000pt;}
.y9b_c00395{bottom:24.452000pt;}
.y9a_c00395{bottom:24.604000pt;}
.y99_c00395{bottom:25.198667pt;}
.y98_c00395{bottom:25.410667pt;}
.y97_c00395{bottom:26.250667pt;}
.y96_c00395{bottom:26.657333pt;}
.y95_c00395{bottom:27.605333pt;}
.y94_c00395{bottom:41.174667pt;}
.y93_c00395{bottom:56.278667pt;}
.y92_c00395{bottom:71.320000pt;}
.y91_c00395{bottom:83.661333pt;}
.y90_c00395{bottom:84.157333pt;}
.y8f_c00395{bottom:84.714667pt;}
.y8e_c00395{bottom:85.552000pt;}
.y8d_c00395{bottom:86.166667pt;}
.y8c_c00395{bottom:86.882667pt;}
.y8b_c00395{bottom:101.040000pt;}
.y8a_c00395{bottom:115.021333pt;}
.y89_c00395{bottom:115.273333pt;}
.y88_c00395{bottom:115.962667pt;}
.y87_c00395{bottom:116.028000pt;}
.y86_c00395{bottom:116.529333pt;}
.y85_c00395{bottom:116.733333pt;}
.y84_c00395{bottom:116.992000pt;}
.y83_c00395{bottom:117.121333pt;}
.y82_c00395{bottom:131.529333pt;}
.y81_c00395{bottom:145.478667pt;}
.y80_c00395{bottom:145.664000pt;}
.y7f_c00395{bottom:146.046667pt;}
.y7e_c00395{bottom:146.488000pt;}
.y7d_c00395{bottom:146.805333pt;}
.y7c_c00395{bottom:147.557333pt;}
.y7b_c00395{bottom:147.681333pt;}
.y7a_c00395{bottom:148.082667pt;}
.y79_c00395{bottom:160.677333pt;}
.y78_c00395{bottom:175.777333pt;}
.y77_c00395{bottom:176.101333pt;}
.y76_c00395{bottom:176.229333pt;}
.y75_c00395{bottom:176.794667pt;}
.y74_c00395{bottom:176.993333pt;}
.y73_c00395{bottom:177.342667pt;}
.y72_c00395{bottom:178.001333pt;}
.y71_c00395{bottom:178.562667pt;}
.y70_c00395{bottom:189.972000pt;}
.y6f_c00395{bottom:190.921333pt;}
.y6e_c00395{bottom:191.522667pt;}
.y6d_c00395{bottom:192.588000pt;}
.y6c_c00395{bottom:192.966667pt;}
.y6b_c00395{bottom:193.178667pt;}
.y6a_c00395{bottom:193.682667pt;}
.y69_c00395{bottom:205.972000pt;}
.y68_c00395{bottom:206.494667pt;}
.y67_c00395{bottom:206.668000pt;}
.y66_c00395{bottom:207.178667pt;}
.y65_c00395{bottom:208.457333pt;}
.y64_c00395{bottom:209.522667pt;}
.y63_c00395{bottom:221.297333pt;}
.y62_c00395{bottom:236.470667pt;}
.y61_c00395{bottom:237.569333pt;}
.y60_c00395{bottom:238.214667pt;}
.y5f_c00395{bottom:238.614667pt;}
.y5e_c00395{bottom:239.098667pt;}
.y5d_c00395{bottom:239.282667pt;}
.y5c_c00395{bottom:251.096000pt;}
.y5b_c00395{bottom:251.240000pt;}
.y5a_c00395{bottom:251.920000pt;}
.y59_c00395{bottom:252.481333pt;}
.y58_c00395{bottom:252.694667pt;}
.y57_c00395{bottom:253.446667pt;}
.y56_c00395{bottom:253.682667pt;}
.y55_c00395{bottom:267.248000pt;}
.y54_c00395{bottom:280.688000pt;}
.y53_c00395{bottom:281.053333pt;}
.y52_c00395{bottom:281.748000pt;}
.y51_c00395{bottom:282.289333pt;}
.y50_c00395{bottom:282.510667pt;}
.y4f_c00395{bottom:283.129333pt;}
.y4e_c00395{bottom:283.682667pt;}
.y4d_c00395{bottom:296.070667pt;}
.y4c_c00395{bottom:296.394667pt;}
.y4b_c00395{bottom:297.049333pt;}
.y4a_c00395{bottom:297.297333pt;}
.y49_c00395{bottom:297.429333pt;}
.y48_c00395{bottom:298.005333pt;}
.y47_c00395{bottom:298.202667pt;}
.y46_c00395{bottom:298.802667pt;}
.y45_c00395{bottom:312.513333pt;}
.y44_c00395{bottom:326.381333pt;}
.y43_c00395{bottom:326.709333pt;}
.y42_c00395{bottom:327.354667pt;}
.y41_c00395{bottom:327.820000pt;}
.y40_c00395{bottom:328.134667pt;}
.y3f_c00395{bottom:329.233333pt;}
.y3e_c00395{bottom:329.524000pt;}
.y3d_c00395{bottom:341.833333pt;}
.y3c_c00395{bottom:341.994667pt;}
.y3b_c00395{bottom:342.492000pt;}
.y3a_c00395{bottom:343.000000pt;}
.y39_c00395{bottom:343.669333pt;}
.y38_c00395{bottom:344.220000pt;}
.y37_c00395{bottom:344.432000pt;}
.y36_c00395{bottom:345.364000pt;}
.y35_c00395{bottom:356.025333pt;}
.y34_c00395{bottom:357.708000pt;}
.y33_c00395{bottom:358.669333pt;}
.y32_c00395{bottom:359.545333pt;}
.y31_c00395{bottom:360.054667pt;}
.y30_c00395{bottom:360.484000pt;}
.y2f_c00395{bottom:371.052000pt;}
.y2e_c00395{bottom:372.250667pt;}
.y2d_c00395{bottom:372.649333pt;}
.y2c_c00395{bottom:373.744000pt;}
.y2b_c00395{bottom:374.116000pt;}
.y2a_c00395{bottom:374.720000pt;}
.y29_c00395{bottom:375.364000pt;}
.y28_c00395{bottom:386.972000pt;}
.y27_c00395{bottom:387.770667pt;}
.y26_c00395{bottom:388.609333pt;}
.y25_c00395{bottom:389.184000pt;}
.y24_c00395{bottom:389.958667pt;}
.y23_c00395{bottom:390.301333pt;}
.y22_c00395{bottom:390.722667pt;}
.y21_c00395{bottom:401.850667pt;}
.y20_c00395{bottom:402.761333pt;}
.y1f_c00395{bottom:403.009333pt;}
.y1e_c00395{bottom:403.698667pt;}
.y1d_c00395{bottom:404.010667pt;}
.y1c_c00395{bottom:405.093333pt;}
.y1b_c00395{bottom:405.361333pt;}
.y1a_c00395{bottom:416.725333pt;}
.y19_c00395{bottom:417.432000pt;}
.y18_c00395{bottom:418.549333pt;}
.y17_c00395{bottom:418.929333pt;}
.y16_c00395{bottom:419.248000pt;}
.y15_c00395{bottom:419.552000pt;}
.y14_c00395{bottom:419.950667pt;}
.y13_c00395{bottom:420.244000pt;}
.y12_c00395{bottom:432.321333pt;}
.y11_c00395{bottom:432.705333pt;}
.y10_c00395{bottom:433.534667pt;}
.yf_c00395{bottom:433.857333pt;}
.ye_c00395{bottom:434.509333pt;}
.yd_c00395{bottom:434.892000pt;}
.yc_c00395{bottom:435.124000pt;}
.yb_c00395{bottom:446.838667pt;}
.ya_c00395{bottom:447.440000pt;}
.y9_c00395{bottom:448.116000pt;}
.y8_c00395{bottom:448.316000pt;}
.y7_c00395{bottom:448.685333pt;}
.y6_c00395{bottom:448.941333pt;}
.y5_c00395{bottom:449.281333pt;}
.y4_c00395{bottom:463.213333pt;}
.y3_c00395{bottom:478.228000pt;}
.y2_c00395{bottom:493.982667pt;}
.y1_c00395{bottom:504.244000pt;}
.hd_c00395{height:51.333333pt;}
.h5_c00395{height:52.266667pt;}
.h7_c00395{height:53.200000pt;}
.hc_c00395{height:54.133333pt;}
.ha_c00395{height:55.066667pt;}
.h8_c00395{height:56.000000pt;}
.hb_c00395{height:56.933333pt;}
.h9_c00395{height:57.866667pt;}
.h4_c00395{height:58.800000pt;}
.h6_c00395{height:59.733333pt;}
.h3_c00395{height:61.600000pt;}
.hf_c00395{height:62.533333pt;}
.he_c00395{height:63.466667pt;}
.h2_c00395{height:73.733333pt;}
.h0_c00395{height:545.040000pt;}
.h1_c00395{height:545.333333pt;}
.w0_c00395{width:319.200000pt;}
.w1_c00395{width:319.333333pt;}
.x0_c00395{left:0.000000pt;}
.x7c_c00395{left:20.633333pt;}
.x7e_c00395{left:23.753333pt;}
.x2a_c00395{left:26.977333pt;}
.x69_c00395{left:29.181333pt;}
.x5d_c00395{left:30.474667pt;}
.x52_c00395{left:31.549333pt;}
.x41_c00395{left:32.474667pt;}
.x19_c00395{left:34.201333pt;}
.x14_c00395{left:35.280000pt;}
.x3_c00395{left:36.480000pt;}
.x49_c00395{left:40.314667pt;}
.x76_c00395{left:41.837333pt;}
.x5b_c00395{left:44.982667pt;}
.x2b_c00395{left:46.160000pt;}
.x5e_c00395{left:48.714667pt;}
.x57_c00395{left:50.509333pt;}
.x1f_c00395{left:51.745333pt;}
.xc_c00395{left:53.280000pt;}
.x4_c00395{left:54.240000pt;}
.x3c_c00395{left:55.708000pt;}
.x7a_c00395{left:59.033333pt;}
.x30_c00395{left:62.000000pt;}
.x66_c00395{left:63.425333pt;}
.x1a_c00395{left:65.149333pt;}
.x72_c00395{left:66.120000pt;}
.x5_c00395{left:68.400000pt;}
.x36_c00395{left:71.318667pt;}
.x6a_c00395{left:72.324000pt;}
.x25_c00395{left:76.868000pt;}
.x3d_c00395{left:78.328000pt;}
.x70_c00395{left:79.436000pt;}
.x20_c00395{left:81.222667pt;}
.x5c_c00395{left:82.185333pt;}
.x31_c00395{left:84.809333pt;}
.x4e_c00395{left:86.317333pt;}
.x15_c00395{left:88.080000pt;}
.x74_c00395{left:89.514667pt;}
.x54_c00395{left:90.476000pt;}
.x77_c00395{left:92.946667pt;}
.x42_c00395{left:94.628000pt;}
.x26_c00395{left:95.838667pt;}
.x6_c00395{left:98.400000pt;}
.x63_c00395{left:101.133333pt;}
.x67_c00395{left:102.790667pt;}
.x1_c00395{left:103.680000pt;}
.x3e_c00395{left:105.161333pt;}
.x37_c00395{left:106.853333pt;}
.xd_c00395{left:108.000000pt;}
.x7_c00395{left:112.560000pt;}
.x27_c00395{left:115.761333pt;}
.x6e_c00395{left:117.354667pt;}
.x5f_c00395{left:120.234667pt;}
.x1b_c00395{left:122.041333pt;}
.x2c_c00395{left:123.461333pt;}
.xe_c00395{left:126.480000pt;}
.x38_c00395{left:128.708000pt;}
.x21_c00395{left:131.389333pt;}
.x32_c00395{left:136.480000pt;}
.x60_c00395{left:137.514667pt;}
.x44_c00395{left:138.618667pt;}
.x1c_c00395{left:140.281333pt;}
.xf_c00395{left:141.360000pt;}
.x73_c00395{left:143.168000pt;}
.x6f_c00395{left:144.606667pt;}
.x2d_c00395{left:145.784000pt;}
.x4a_c00395{left:146.874667pt;}
.x16_c00395{left:148.800000pt;}
.x6b_c00395{left:149.908000pt;}
.x3f_c00395{left:151.261333pt;}
.x2_c00395{left:152.880000pt;}
.x22_c00395{left:156.161333pt;}
.x4b_c00395{left:158.154667pt;}
.x75_c00395{left:160.794667pt;}
.x45_c00395{left:162.808000pt;}
.x17_c00395{left:165.360000pt;}
.x4f_c00395{left:168.641333pt;}
.x55_c00395{left:173.036000pt;}
.x33_c00395{left:174.824000pt;}
.x7b_c00395{left:176.153333pt;}
.x58_c00395{left:177.710667pt;}
.x8_c00395{left:182.160000pt;}
.x64_c00395{left:186.336000pt;}
.x9_c00395{left:190.320000pt;}
.x39_c00395{left:193.094667pt;}
.x2e_c00395{left:195.001333pt;}
.x78_c00395{left:196.649333pt;}
.x46_c00395{left:198.581333pt;}
.x1d_c00395{left:201.716000pt;}
.xa_c00395{left:203.280000pt;}
.x10_c00395{left:205.920000pt;}
.x28_c00395{left:209.352000pt;}
.x61_c00395{left:211.434667pt;}
.x2f_c00395{left:212.741333pt;}
.x68_c00395{left:213.921333pt;}
.x3a_c00395{left:216.509333pt;}
.x6c_c00395{left:218.530667pt;}
.x23_c00395{left:219.940000pt;}
.x7f_c00395{left:221.513333pt;}
.x71_c00395{left:222.476000pt;}
.x43_c00395{left:224.005333pt;}
.x4c_c00395{left:225.114667pt;}
.x11_c00395{left:228.960000pt;}
.x34_c00395{left:230.732000pt;}
.x65_c00395{left:231.917333pt;}
.x59_c00395{left:234.394667pt;}
.x4d_c00395{left:237.354667pt;}
.x6d_c00395{left:243.461333pt;}
.x5a_c00395{left:246.349333pt;}
.x47_c00395{left:248.262667pt;}
.x24_c00395{left:249.470667pt;}
.x50_c00395{left:250.708000pt;}
.x29_c00395{left:253.504000pt;}
.x12_c00395{left:254.640000pt;}
.x1e_c00395{left:256.437333pt;}
.x7d_c00395{left:263.033333pt;}
.xb_c00395{left:264.240000pt;}
.x18_c00395{left:267.600000pt;}
.x79_c00395{left:271.950667pt;}
.x48_c00395{left:273.454667pt;}
.x62_c00395{left:275.274667pt;}
.x13_c00395{left:277.200000pt;}
.x56_c00395{left:278.156000pt;}
.x51_c00395{left:280.198667pt;}
.x53_c00395{left:281.156000pt;}
.x35_c00395{left:283.985333pt;}
.x3b_c00395{left:287.032000pt;}
.x40_c00395{left:290.461333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00396 {
    display:none;
  }
  .loading-indicator_c00396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00396 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00396 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00396" -> "#page-container .classname_c00396")
 */
.pf_c00396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00396 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00396 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00396 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00396 {overflow:visible;}
  }
}
.c_c00396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00396 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00396:after { /* webkit #35443 */
  content: '';
}
.t_c00396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00396 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00396 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00396 { /* info for Javascript */
  display:none;
}
.l_c00396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00396:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00396 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00396.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me5_c00396{transform:matrix(0.039315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039315,0.000000,0.000000,0.250000,0,0);}
.me6_c00396{transform:matrix(0.049145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049145,0.000000,0.000000,0.250000,0,0);}
.me4_c00396{transform:matrix(0.088455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088455,0.000000,0.000000,0.250000,0,0);}
.m70_c00396{transform:matrix(0.115720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115720,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{transform:matrix(0.142715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142715,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.146590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146590,0.000000,0.000000,0.250000,0,0);}
.m2b_c00396{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148205,0.000000,0.000000,0.250000,0,0);}
.m5a_c00396{transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159655,0.000000,0.000000,0.250000,0,0);}
.m37_c00396{transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160390,0.000000,0.000000,0.250000,0,0);}
.m32_c00396{transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163390,0.000000,0.000000,0.250000,0,0);}
.mdb_c00396{transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);}
.m62_c00396{transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);}
.m89_c00396{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00396{transform:matrix(0.166215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166215,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);}
.m8d_c00396{transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);}
.mcf_c00396{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169080,0.000000,0.000000,0.250000,0,0);}
.maa_c00396{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.mcb_c00396{transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);}
.m24_c00396{transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169440,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m40_c00396{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m71_c00396{transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.mcc_c00396{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m92_c00396{transform:matrix(0.173290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173290,0.000000,0.000000,0.250000,0,0);}
.m99_c00396{transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00396{transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00396{transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176510,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.177065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177065,0.000000,0.000000,0.250000,0,0);}
.mc4_c00396{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00396{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.m3d_c00396{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.m82_c00396{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m5e_c00396{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m75_c00396{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.mad_c00396{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mbf_c00396{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m9c_c00396{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00396{transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182520,0.000000,0.000000,0.250000,0,0);}
.mc8_c00396{transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.mb3_c00396{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.m55_c00396{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m78_c00396{transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);}
.m27_c00396{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185885,0.000000,0.000000,0.250000,0,0);}
.m4c_c00396{transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185960,0.000000,0.000000,0.250000,0,0);}
.m6b_c00396{transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186440,0.000000,0.000000,0.250000,0,0);}
.m66_c00396{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m33_c00396{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m60_c00396{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.mb8_c00396{transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00396{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.mb9_c00396{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.md2_c00396{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.mf4_c00396{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);}
.m53_c00396{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m4f_c00396{transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);}
.m90_c00396{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m87_c00396{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m7a_c00396{transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m8c_c00396{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m88_c00396{transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);}
.mb2_c00396{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.mc1_c00396{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.mb6_c00396{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.m30_c00396{transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00396{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.mde_c00396{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.mce_c00396{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m91_c00396{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.mab_c00396{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.m23_c00396{transform:matrix(0.197080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197080,0.000000,0.000000,0.250000,0,0);}
.m54_c00396{transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);}
.m76_c00396{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m9b_c00396{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m63_c00396{transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);}
.ma0_c00396{transform:matrix(0.198505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198505,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.ma2_c00396{transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);}
.m3b_c00396{transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m31_c00396{transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199545,0.000000,0.000000,0.250000,0,0);}
.m7b_c00396{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.mbb_c00396{transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199655,0.000000,0.000000,0.250000,0,0);}
.mae_c00396{transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199890,0.000000,0.000000,0.250000,0,0);}
.mc3_c00396{transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mb0_c00396{transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);}
.m73_c00396{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.m57_c00396{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00396{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.md4_c00396{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.mbd_c00396{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.m44_c00396{transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);}
.m84_c00396{transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205895,0.000000,0.000000,0.250000,0,0);}
.m3a_c00396{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.mc7_c00396{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.md9_c00396{transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);}
.mb4_c00396{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m7e_c00396{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.ma1_c00396{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.m64_c00396{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m51_c00396{transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);}
.me0_c00396{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.m67_c00396{transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208935,0.000000,0.000000,0.250000,0,0);}
.mbe_c00396{transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);}
.m86_c00396{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.mf2_c00396{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.md7_c00396{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.m58_c00396{transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.mb7_c00396{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mee_c00396{transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);}
.m68_c00396{transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211270,0.000000,0.000000,0.250000,0,0);}
.mec_c00396{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m65_c00396{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m5d_c00396{transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);}
.m83_c00396{transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);}
.mdf_c00396{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.med_c00396{transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212560,0.000000,0.000000,0.250000,0,0);}
.mb1_c00396{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m34_c00396{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.me2_c00396{transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);}
.ma7_c00396{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00396{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.md1_c00396{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);}
.m69_c00396{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00396{transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216365,0.000000,0.000000,0.250000,0,0);}
.m94_c00396{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00396{transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217130,0.000000,0.000000,0.250000,0,0);}
.mc5_c00396{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m74_c00396{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m98_c00396{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mf1_c00396{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m93_c00396{transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219740,0.000000,0.000000,0.250000,0,0);}
.mb5_c00396{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.ma3_c00396{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.m7d_c00396{transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220390,0.000000,0.000000,0.250000,0,0);}
.mca_c00396{transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);}
.mea_c00396{transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);}
.mcd_c00396{transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);}
.m56_c00396{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00396{transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222385,0.000000,0.000000,0.250000,0,0);}
.m2c_c00396{transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222620,0.000000,0.000000,0.250000,0,0);}
.m96_c00396{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.m50_c00396{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m6e_c00396{transform:matrix(0.224380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224380,0.000000,0.000000,0.250000,0,0);}
.me1_c00396{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m4d_c00396{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226170,0.000000,0.000000,0.250000,0,0);}
.md0_c00396{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m79_c00396{transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);}
.m6f_c00396{transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00396{transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);}
.m3f_c00396{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.m4a_c00396{transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.maf_c00396{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);}
.mf3_c00396{transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234060,0.000000,0.000000,0.250000,0,0);}
.m36_c00396{transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);}
.m80_c00396{transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00396{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00396{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.mc6_c00396{transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);}
.m95_c00396{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238110,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);}
.mc0_c00396{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00396{transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);}
.m72_c00396{transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);}
.m9a_c00396{transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);}
.m97_c00396{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m6d_c00396{transform:matrix(0.243045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243045,0.000000,0.000000,0.250000,0,0);}
.m77_c00396{transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);}
.m59_c00396{transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);}
.me8_c00396{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m81_c00396{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m4e_c00396{transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);}
.mba_c00396{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.meb_c00396{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m9e_c00396{transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);}
.mda_c00396{transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);}
.m49_c00396{transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);}
.me9_c00396{transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);}
.ma9_c00396{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.md8_c00396{transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);}
.md5_c00396{transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);}
.m47_c00396{transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);}
.m6c_c00396{transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);}
.md3_c00396{transform:matrix(0.261645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261645,0.000000,0.000000,0.250000,0,0);}
.ma5_c00396{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.mac_c00396{transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268670,0.000000,0.000000,0.250000,0,0);}
.m85_c00396{transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);}
.md6_c00396{transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.mdd_c00396{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);}
.mc9_c00396{transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00396{transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);}
.m52_c00396{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);}
.me3_c00396{transform:matrix(0.321140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321140,0.000000,0.000000,0.250000,0,0);}
.mf5_c00396{transform:matrix(0.358280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358280,0.000000,0.000000,0.250000,0,0);}
.mf0_c00396{transform:matrix(0.376355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376355,0.000000,0.000000,0.250000,0,0);}
.m48_c00396{transform:matrix(0.390485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390485,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.417965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417965,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.434095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434095,0.000000,0.000000,0.250000,0,0);}
.mef_c00396{transform:matrix(0.543770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543770,0.000000,0.000000,0.250000,0,0);}
.me7_c00396{transform:matrix(0.622370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622370,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls0_c00396{letter-spacing:0.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:0.000000px;}
.fc0_c00396{color:transparent;}
.fsa_c00396{font-size:22.050000px;}
.fsf_c00396{font-size:38.850000px;}
.fse_c00396{font-size:50.400000px;}
.fs10_c00396{font-size:52.500000px;}
.fs11_c00396{font-size:53.550000px;}
.fs8_c00396{font-size:54.600000px;}
.fsb_c00396{font-size:55.650000px;}
.fs3_c00396{font-size:57.750000px;}
.fs9_c00396{font-size:58.800000px;}
.fsd_c00396{font-size:59.850000px;}
.fs7_c00396{font-size:60.900000px;}
.fs6_c00396{font-size:61.950000px;}
.fsc_c00396{font-size:63.000000px;}
.fs4_c00396{font-size:64.050000px;}
.fs5_c00396{font-size:65.100000px;}
.fs1_c00396{font-size:66.150000px;}
.fs2_c00396{font-size:67.200000px;}
.fs0_c00396{font-size:88.200000px;}
.y0_c00396{bottom:0.000000px;}
.y32_c00396{bottom:30.798000px;}
.y31_c00396{bottom:38.338500px;}
.y30_c00396{bottom:49.476000px;}
.y2f_c00396{bottom:59.826000px;}
.y2e_c00396{bottom:65.710500px;}
.y2d_c00396{bottom:66.780000px;}
.y2c_c00396{bottom:67.489500px;}
.y2b_c00396{bottom:67.878000px;}
.y2a_c00396{bottom:68.607000px;}
.y29_c00396{bottom:68.964000px;}
.y28_c00396{bottom:69.979500px;}
.y27_c00396{bottom:70.203000px;}
.y26_c00396{bottom:83.362500px;}
.y25_c00396{bottom:100.510500px;}
.y24_c00396{bottom:116.935500px;}
.y23_c00396{bottom:134.311500px;}
.y22_c00396{bottom:150.241500px;}
.y21_c00396{bottom:168.292500px;}
.y20_c00396{bottom:184.561500px;}
.y1f_c00396{bottom:185.284500px;}
.y1e_c00396{bottom:185.572500px;}
.y1d_c00396{bottom:185.821500px;}
.y1c_c00396{bottom:186.576000px;}
.y1b_c00396{bottom:186.906000px;}
.y1a_c00396{bottom:187.197000px;}
.y19_c00396{bottom:188.190000px;}
.y18_c00396{bottom:202.099500px;}
.y17_c00396{bottom:218.199000px;}
.y16_c00396{bottom:235.440000px;}
.y15_c00396{bottom:252.757500px;}
.y14_c00396{bottom:269.973000px;}
.y13_c00396{bottom:287.887500px;}
.y12_c00396{bottom:304.237500px;}
.y11_c00396{bottom:322.518000px;}
.y10_c00396{bottom:338.338500px;}
.yf_c00396{bottom:355.338000px;}
.ye_c00396{bottom:362.070000px;}
.yd_c00396{bottom:371.820000px;}
.yc_c00396{bottom:388.582500px;}
.yb_c00396{bottom:404.364000px;}
.ya_c00396{bottom:421.078500px;}
.y9_c00396{bottom:437.940000px;}
.y8_c00396{bottom:454.044000px;}
.y7_c00396{bottom:472.479000px;}
.y6_c00396{bottom:488.533500px;}
.y5_c00396{bottom:506.034000px;}
.y4_c00396{bottom:523.458000px;}
.y3_c00396{bottom:539.974500px;}
.y2_c00396{bottom:556.176000px;}
.y1_c00396{bottom:568.371000px;}
.hc_c00396{height:22.050000px;}
.h11_c00396{height:38.850000px;}
.h10_c00396{height:50.400000px;}
.h12_c00396{height:52.500000px;}
.h13_c00396{height:53.550000px;}
.ha_c00396{height:54.600000px;}
.hd_c00396{height:55.650000px;}
.h5_c00396{height:57.750000px;}
.hb_c00396{height:58.800000px;}
.hf_c00396{height:59.850000px;}
.h9_c00396{height:60.900000px;}
.h8_c00396{height:61.950000px;}
.he_c00396{height:63.000000px;}
.h6_c00396{height:64.050000px;}
.h7_c00396{height:65.100000px;}
.h3_c00396{height:66.150000px;}
.h4_c00396{height:67.200000px;}
.h2_c00396{height:88.200000px;}
.h0_c00396{height:613.170000px;}
.h1_c00396{height:613.500000px;}
.w0_c00396{width:359.100000px;}
.w1_c00396{width:359.250000px;}
.x0_c00396{left:0.000000px;}
.x46_c00396{left:14.580000px;}
.x3_c00396{left:16.200000px;}
.x4e_c00396{left:17.550000px;}
.x23_c00396{left:20.250000px;}
.x18_c00396{left:23.220000px;}
.x43_c00396{left:24.300000px;}
.x6b_c00396{left:27.000000px;}
.x27_c00396{left:31.320000px;}
.x58_c00396{left:32.400000px;}
.x39_c00396{left:35.370000px;}
.x10_c00396{left:37.260000px;}
.x3e_c00396{left:38.340000px;}
.x74_c00396{left:41.850000px;}
.x62_c00396{left:42.930000px;}
.xb_c00396{left:46.170000px;}
.x51_c00396{left:48.870000px;}
.x59_c00396{left:52.110000px;}
.x4_c00396{left:53.730000px;}
.x1e_c00396{left:56.700000px;}
.x6c_c00396{left:61.830000px;}
.x35_c00396{left:65.070000px;}
.x19_c00396{left:68.580000px;}
.x47_c00396{left:70.200000px;}
.x66_c00396{left:71.280000px;}
.x28_c00396{left:72.630000px;}
.x31_c00396{left:76.950000px;}
.x36_c00396{left:78.030000px;}
.x7c_c00396{left:79.110000px;}
.x5d_c00396{left:81.810000px;}
.xc_c00396{left:86.670000px;}
.x2b_c00396{left:87.750000px;}
.x3f_c00396{left:89.370000px;}
.x5_c00396{left:90.720000px;}
.x4b_c00396{left:92.610000px;}
.x7e_c00396{left:93.690000px;}
.x1a_c00396{left:94.770000px;}
.x71_c00396{left:96.390000px;}
.x3a_c00396{left:97.740000px;}
.x7d_c00396{left:101.250000px;}
.x24_c00396{left:104.220000px;}
.x11_c00396{left:105.300000px;}
.x2c_c00396{left:107.190000px;}
.x48_c00396{left:108.810000px;}
.x52_c00396{left:113.400000px;}
.x68_c00396{left:115.179000px;}
.x67_c00396{left:117.180000px;}
.x12_c00396{left:120.690000px;}
.x63_c00396{left:124.740000px;}
.x5a_c00396{left:126.090000px;}
.x32_c00396{left:127.710000px;}
.x49_c00396{left:128.790000px;}
.x6_c00396{left:133.110000px;}
.x6d_c00396{left:134.730000px;}
.x4c_c00396{left:136.620000px;}
.x13_c00396{left:140.130000px;}
.xd_c00396{left:142.020000px;}
.x1_c00396{left:144.450000px;}
.x7b_c00396{left:149.146500px;}
.x4f_c00396{left:152.010000px;}
.x40_c00396{left:154.710000px;}
.x1f_c00396{left:160.380000px;}
.x41_c00396{left:163.620000px;}
.x5e_c00396{left:166.050000px;}
.x29_c00396{left:167.400000px;}
.x37_c00396{left:169.560000px;}
.x2d_c00396{left:170.640000px;}
.x72_c00396{left:173.070000px;}
.x6e_c00396{left:175.500000px;}
.x44_c00396{left:180.090000px;}
.x77_c00396{left:182.790000px;}
.x2e_c00396{left:184.140000px;}
.x7_c00396{left:186.570000px;}
.x54_c00396{left:188.190000px;}
.x3b_c00396{left:190.890000px;}
.x79_c00396{left:193.590000px;}
.x14_c00396{left:196.560000px;}
.x5f_c00396{left:198.720000px;}
.x53_c00396{left:202.230000px;}
.x70_c00396{left:204.120000px;}
.xe_c00396{left:206.280000px;}
.x55_c00396{left:209.790000px;}
.x8_c00396{left:211.680000px;}
.x75_c00396{left:213.570000px;}
.x1b_c00396{left:214.920000px;}
.x15_c00396{left:217.620000px;}
.x20_c00396{left:218.970000px;}
.x64_c00396{left:221.130000px;}
.x33_c00396{left:222.750000px;}
.x25_c00396{left:224.640000px;}
.x60_c00396{left:227.610000px;}
.x78_c00396{left:228.690000px;}
.xf_c00396{left:230.040000px;}
.x2a_c00396{left:231.930000px;}
.x7f_c00396{left:233.010000px;}
.x21_c00396{left:234.360000px;}
.x69_c00396{left:239.902500px;}
.x16_c00396{left:241.380000px;}
.x73_c00396{left:243.270000px;}
.x65_c00396{left:245.970000px;}
.x5b_c00396{left:249.750000px;}
.x2_c00396{left:251.370000px;}
.x38_c00396{left:254.070000px;}
.x1c_c00396{left:255.150000px;}
.x2f_c00396{left:258.120000px;}
.x56_c00396{left:261.630000px;}
.x7a_c00396{left:263.790000px;}
.x3c_c00396{left:265.140000px;}
.x9_c00396{left:267.840000px;}
.x61_c00396{left:269.190000px;}
.x30_c00396{left:271.080000px;}
.x1d_c00396{left:272.970000px;}
.x34_c00396{left:275.940000px;}
.x57_c00396{left:277.290000px;}
.x6f_c00396{left:281.070000px;}
.x50_c00396{left:282.150000px;}
.x4d_c00396{left:283.230000px;}
.x26_c00396{left:284.850000px;}
.x3d_c00396{left:288.900000px;}
.xa_c00396{left:289.980000px;}
.x5c_c00396{left:291.060000px;}
.x22_c00396{left:292.950000px;}
.x4a_c00396{left:294.300000px;}
.x6a_c00396{left:295.503000px;}
.x17_c00396{left:297.000000px;}
.x45_c00396{left:298.890000px;}
.x76_c00396{left:301.590000px;}
.x42_c00396{left:310.770000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.fsa_c00396{font-size:19.600000pt;}
.fsf_c00396{font-size:34.533333pt;}
.fse_c00396{font-size:44.800000pt;}
.fs10_c00396{font-size:46.666667pt;}
.fs11_c00396{font-size:47.600000pt;}
.fs8_c00396{font-size:48.533333pt;}
.fsb_c00396{font-size:49.466667pt;}
.fs3_c00396{font-size:51.333333pt;}
.fs9_c00396{font-size:52.266667pt;}
.fsd_c00396{font-size:53.200000pt;}
.fs7_c00396{font-size:54.133333pt;}
.fs6_c00396{font-size:55.066667pt;}
.fsc_c00396{font-size:56.000000pt;}
.fs4_c00396{font-size:56.933333pt;}
.fs5_c00396{font-size:57.866667pt;}
.fs1_c00396{font-size:58.800000pt;}
.fs2_c00396{font-size:59.733333pt;}
.fs0_c00396{font-size:78.400000pt;}
.y0_c00396{bottom:0.000000pt;}
.y32_c00396{bottom:27.376000pt;}
.y31_c00396{bottom:34.078667pt;}
.y30_c00396{bottom:43.978667pt;}
.y2f_c00396{bottom:53.178667pt;}
.y2e_c00396{bottom:58.409333pt;}
.y2d_c00396{bottom:59.360000pt;}
.y2c_c00396{bottom:59.990667pt;}
.y2b_c00396{bottom:60.336000pt;}
.y2a_c00396{bottom:60.984000pt;}
.y29_c00396{bottom:61.301333pt;}
.y28_c00396{bottom:62.204000pt;}
.y27_c00396{bottom:62.402667pt;}
.y26_c00396{bottom:74.100000pt;}
.y25_c00396{bottom:89.342667pt;}
.y24_c00396{bottom:103.942667pt;}
.y23_c00396{bottom:119.388000pt;}
.y22_c00396{bottom:133.548000pt;}
.y21_c00396{bottom:149.593333pt;}
.y20_c00396{bottom:164.054667pt;}
.y1f_c00396{bottom:164.697333pt;}
.y1e_c00396{bottom:164.953333pt;}
.y1d_c00396{bottom:165.174667pt;}
.y1c_c00396{bottom:165.845333pt;}
.y1b_c00396{bottom:166.138667pt;}
.y1a_c00396{bottom:166.397333pt;}
.y19_c00396{bottom:167.280000pt;}
.y18_c00396{bottom:179.644000pt;}
.y17_c00396{bottom:193.954667pt;}
.y16_c00396{bottom:209.280000pt;}
.y15_c00396{bottom:224.673333pt;}
.y14_c00396{bottom:239.976000pt;}
.y13_c00396{bottom:255.900000pt;}
.y12_c00396{bottom:270.433333pt;}
.y11_c00396{bottom:286.682667pt;}
.y10_c00396{bottom:300.745333pt;}
.yf_c00396{bottom:315.856000pt;}
.ye_c00396{bottom:321.840000pt;}
.yd_c00396{bottom:330.506667pt;}
.yc_c00396{bottom:345.406667pt;}
.yb_c00396{bottom:359.434667pt;}
.ya_c00396{bottom:374.292000pt;}
.y9_c00396{bottom:389.280000pt;}
.y8_c00396{bottom:403.594667pt;}
.y7_c00396{bottom:419.981333pt;}
.y6_c00396{bottom:434.252000pt;}
.y5_c00396{bottom:449.808000pt;}
.y4_c00396{bottom:465.296000pt;}
.y3_c00396{bottom:479.977333pt;}
.y2_c00396{bottom:494.378667pt;}
.y1_c00396{bottom:505.218667pt;}
.hc_c00396{height:19.600000pt;}
.h11_c00396{height:34.533333pt;}
.h10_c00396{height:44.800000pt;}
.h12_c00396{height:46.666667pt;}
.h13_c00396{height:47.600000pt;}
.ha_c00396{height:48.533333pt;}
.hd_c00396{height:49.466667pt;}
.h5_c00396{height:51.333333pt;}
.hb_c00396{height:52.266667pt;}
.hf_c00396{height:53.200000pt;}
.h9_c00396{height:54.133333pt;}
.h8_c00396{height:55.066667pt;}
.he_c00396{height:56.000000pt;}
.h6_c00396{height:56.933333pt;}
.h7_c00396{height:57.866667pt;}
.h3_c00396{height:58.800000pt;}
.h4_c00396{height:59.733333pt;}
.h2_c00396{height:78.400000pt;}
.h0_c00396{height:545.040000pt;}
.h1_c00396{height:545.333333pt;}
.w0_c00396{width:319.200000pt;}
.w1_c00396{width:319.333333pt;}
.x0_c00396{left:0.000000pt;}
.x46_c00396{left:12.960000pt;}
.x3_c00396{left:14.400000pt;}
.x4e_c00396{left:15.600000pt;}
.x23_c00396{left:18.000000pt;}
.x18_c00396{left:20.640000pt;}
.x43_c00396{left:21.600000pt;}
.x6b_c00396{left:24.000000pt;}
.x27_c00396{left:27.840000pt;}
.x58_c00396{left:28.800000pt;}
.x39_c00396{left:31.440000pt;}
.x10_c00396{left:33.120000pt;}
.x3e_c00396{left:34.080000pt;}
.x74_c00396{left:37.200000pt;}
.x62_c00396{left:38.160000pt;}
.xb_c00396{left:41.040000pt;}
.x51_c00396{left:43.440000pt;}
.x59_c00396{left:46.320000pt;}
.x4_c00396{left:47.760000pt;}
.x1e_c00396{left:50.400000pt;}
.x6c_c00396{left:54.960000pt;}
.x35_c00396{left:57.840000pt;}
.x19_c00396{left:60.960000pt;}
.x47_c00396{left:62.400000pt;}
.x66_c00396{left:63.360000pt;}
.x28_c00396{left:64.560000pt;}
.x31_c00396{left:68.400000pt;}
.x36_c00396{left:69.360000pt;}
.x7c_c00396{left:70.320000pt;}
.x5d_c00396{left:72.720000pt;}
.xc_c00396{left:77.040000pt;}
.x2b_c00396{left:78.000000pt;}
.x3f_c00396{left:79.440000pt;}
.x5_c00396{left:80.640000pt;}
.x4b_c00396{left:82.320000pt;}
.x7e_c00396{left:83.280000pt;}
.x1a_c00396{left:84.240000pt;}
.x71_c00396{left:85.680000pt;}
.x3a_c00396{left:86.880000pt;}
.x7d_c00396{left:90.000000pt;}
.x24_c00396{left:92.640000pt;}
.x11_c00396{left:93.600000pt;}
.x2c_c00396{left:95.280000pt;}
.x48_c00396{left:96.720000pt;}
.x52_c00396{left:100.800000pt;}
.x68_c00396{left:102.381333pt;}
.x67_c00396{left:104.160000pt;}
.x12_c00396{left:107.280000pt;}
.x63_c00396{left:110.880000pt;}
.x5a_c00396{left:112.080000pt;}
.x32_c00396{left:113.520000pt;}
.x49_c00396{left:114.480000pt;}
.x6_c00396{left:118.320000pt;}
.x6d_c00396{left:119.760000pt;}
.x4c_c00396{left:121.440000pt;}
.x13_c00396{left:124.560000pt;}
.xd_c00396{left:126.240000pt;}
.x1_c00396{left:128.400000pt;}
.x7b_c00396{left:132.574667pt;}
.x4f_c00396{left:135.120000pt;}
.x40_c00396{left:137.520000pt;}
.x1f_c00396{left:142.560000pt;}
.x41_c00396{left:145.440000pt;}
.x5e_c00396{left:147.600000pt;}
.x29_c00396{left:148.800000pt;}
.x37_c00396{left:150.720000pt;}
.x2d_c00396{left:151.680000pt;}
.x72_c00396{left:153.840000pt;}
.x6e_c00396{left:156.000000pt;}
.x44_c00396{left:160.080000pt;}
.x77_c00396{left:162.480000pt;}
.x2e_c00396{left:163.680000pt;}
.x7_c00396{left:165.840000pt;}
.x54_c00396{left:167.280000pt;}
.x3b_c00396{left:169.680000pt;}
.x79_c00396{left:172.080000pt;}
.x14_c00396{left:174.720000pt;}
.x5f_c00396{left:176.640000pt;}
.x53_c00396{left:179.760000pt;}
.x70_c00396{left:181.440000pt;}
.xe_c00396{left:183.360000pt;}
.x55_c00396{left:186.480000pt;}
.x8_c00396{left:188.160000pt;}
.x75_c00396{left:189.840000pt;}
.x1b_c00396{left:191.040000pt;}
.x15_c00396{left:193.440000pt;}
.x20_c00396{left:194.640000pt;}
.x64_c00396{left:196.560000pt;}
.x33_c00396{left:198.000000pt;}
.x25_c00396{left:199.680000pt;}
.x60_c00396{left:202.320000pt;}
.x78_c00396{left:203.280000pt;}
.xf_c00396{left:204.480000pt;}
.x2a_c00396{left:206.160000pt;}
.x7f_c00396{left:207.120000pt;}
.x21_c00396{left:208.320000pt;}
.x69_c00396{left:213.246667pt;}
.x16_c00396{left:214.560000pt;}
.x73_c00396{left:216.240000pt;}
.x65_c00396{left:218.640000pt;}
.x5b_c00396{left:222.000000pt;}
.x2_c00396{left:223.440000pt;}
.x38_c00396{left:225.840000pt;}
.x1c_c00396{left:226.800000pt;}
.x2f_c00396{left:229.440000pt;}
.x56_c00396{left:232.560000pt;}
.x7a_c00396{left:234.480000pt;}
.x3c_c00396{left:235.680000pt;}
.x9_c00396{left:238.080000pt;}
.x61_c00396{left:239.280000pt;}
.x30_c00396{left:240.960000pt;}
.x1d_c00396{left:242.640000pt;}
.x34_c00396{left:245.280000pt;}
.x57_c00396{left:246.480000pt;}
.x6f_c00396{left:249.840000pt;}
.x50_c00396{left:250.800000pt;}
.x4d_c00396{left:251.760000pt;}
.x26_c00396{left:253.200000pt;}
.x3d_c00396{left:256.800000pt;}
.xa_c00396{left:257.760000pt;}
.x5c_c00396{left:258.720000pt;}
.x22_c00396{left:260.400000pt;}
.x4a_c00396{left:261.600000pt;}
.x6a_c00396{left:262.669333pt;}
.x17_c00396{left:264.000000pt;}
.x45_c00396{left:265.680000pt;}
.x76_c00396{left:268.080000pt;}
.x42_c00396{left:276.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00397 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00397 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00397 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00397 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00397.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9a_c00397{transform:matrix(0.008585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008585,0.000000,0.000000,0.250000,0,0);}
.mb3_c00397{transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);}
.mae_c00397{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00397{transform:matrix(0.141661,-0.003542,0.006248,0.249922,0,0);-ms-transform:matrix(0.141661,-0.003542,0.006248,0.249922,0,0);-webkit-transform:matrix(0.141661,-0.003542,0.006248,0.249922,0,0);}
.m33_c00397{transform:matrix(0.143155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143155,0.000000,0.000000,0.250000,0,0);}
.m8b_c00397{transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144970,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.155720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155720,0.000000,0.000000,0.250000,0,0);}
.mea_c00397{transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);}
.me1_c00397{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158770,0.000000,0.000000,0.250000,0,0);}
.mcd_c00397{transform:matrix(0.158905,-0.003973,0.006248,0.249922,0,0);-ms-transform:matrix(0.158905,-0.003973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158905,-0.003973,0.006248,0.249922,0,0);}
.m2d_c00397{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m71_c00397{transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);}
.m61_c00397{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.mda_c00397{transform:matrix(0.160825,-0.004021,0.006248,0.249922,0,0);-ms-transform:matrix(0.160825,-0.004021,0.006248,0.249922,0,0);-webkit-transform:matrix(0.160825,-0.004021,0.006248,0.249922,0,0);}
.mbc_c00397{transform:matrix(0.161649,-0.004041,0.006248,0.249922,0,0);-ms-transform:matrix(0.161649,-0.004041,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161649,-0.004041,0.006248,0.249922,0,0);}
.m55_c00397{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m93_c00397{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);}
.m6c_c00397{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00397{transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.me4_c00397{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.m6e_c00397{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m90_c00397{transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);}
.me8_c00397{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);}
.mbb_c00397{transform:matrix(0.166423,-0.004161,0.006248,0.249922,0,0);-ms-transform:matrix(0.166423,-0.004161,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166423,-0.004161,0.006248,0.249922,0,0);}
.m0_c00397{transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166470,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167510,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167921,0.002519,-0.003750,0.249972,0,0);}
.m1b_c00397{transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m91_c00397{transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168720,0.000000,0.000000,0.250000,0,0);}
.mb1_c00397{transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.169615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169615,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170535,0.000000,0.000000,0.250000,0,0);}
.mc3_c00397{transform:matrix(0.170752,-0.004269,0.006248,0.249922,0,0);-ms-transform:matrix(0.170752,-0.004269,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170752,-0.004269,0.006248,0.249922,0,0);}
.md7_c00397{transform:matrix(0.171346,-0.004284,0.006248,0.249922,0,0);-ms-transform:matrix(0.171346,-0.004284,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171346,-0.004284,0.006248,0.249922,0,0);}
.mba_c00397{transform:matrix(0.171546,-0.004289,0.006248,0.249922,0,0);-ms-transform:matrix(0.171546,-0.004289,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171546,-0.004289,0.006248,0.249922,0,0);}
.mb9_c00397{transform:matrix(0.171706,-0.004293,0.006248,0.249922,0,0);-ms-transform:matrix(0.171706,-0.004293,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171706,-0.004293,0.006248,0.249922,0,0);}
.md_c00397{transform:matrix(0.171756,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171756,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171756,0.002576,-0.003750,0.249972,0,0);}
.md2_c00397{transform:matrix(0.172131,-0.004303,0.006248,0.249922,0,0);-ms-transform:matrix(0.172131,-0.004303,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172131,-0.004303,0.006248,0.249922,0,0);}
.me_c00397{transform:matrix(0.172651,0.002590,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172651,0.002590,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172651,0.002590,-0.003750,0.249972,0,0);}
.m88_c00397{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.md4_c00397{transform:matrix(0.174610,-0.004365,0.006248,0.249922,0,0);-ms-transform:matrix(0.174610,-0.004365,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174610,-0.004365,0.006248,0.249922,0,0);}
.m19_c00397{transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00397{transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.mb5_c00397{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m94_c00397{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md0_c00397{transform:matrix(0.177904,-0.004448,0.006248,0.249922,0,0);-ms-transform:matrix(0.177904,-0.004448,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177904,-0.004448,0.006248,0.249922,0,0);}
.mb2_c00397{transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178005,0.000000,0.000000,0.250000,0,0);}
.m5c_c00397{transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178590,0.000000,0.000000,0.250000,0,0);}
.mc8_c00397{transform:matrix(0.179244,-0.004481,0.006248,0.249922,0,0);-ms-transform:matrix(0.179244,-0.004481,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179244,-0.004481,0.006248,0.249922,0,0);}
.m21_c00397{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.md8_c00397{transform:matrix(0.179674,-0.004492,0.006248,0.249922,0,0);-ms-transform:matrix(0.179674,-0.004492,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179674,-0.004492,0.006248,0.249922,0,0);}
.me3_c00397{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.ma7_c00397{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.m85_c00397{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.m3e_c00397{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.mac_c00397{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m72_c00397{transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);}
.m64_c00397{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.maf_c00397{transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.md9_c00397{transform:matrix(0.182728,-0.004568,0.006248,0.249922,0,0);-ms-transform:matrix(0.182728,-0.004568,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182728,-0.004568,0.006248,0.249922,0,0);}
.m2a_c00397{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.ma5_c00397{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.mab_c00397{transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184355,0.000000,0.000000,0.250000,0,0);}
.m79_c00397{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m8a_c00397{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.mdf_c00397{transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00397{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m92_c00397{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.m76_c00397{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);}
.mc6_c00397{transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);-ms-transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186182,-0.004655,0.006248,0.249922,0,0);}
.m1d_c00397{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m5f_c00397{transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.186820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186820,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m6f_c00397{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m65_c00397{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.mcb_c00397{transform:matrix(0.187966,-0.004699,0.006248,0.249922,0,0);-ms-transform:matrix(0.187966,-0.004699,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187966,-0.004699,0.006248,0.249922,0,0);}
.m63_c00397{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m68_c00397{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m9b_c00397{transform:matrix(0.189215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189215,0.000000,0.000000,0.250000,0,0);}
.m73_c00397{transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);}
.mc4_c00397{transform:matrix(0.189536,-0.004738,0.006248,0.249922,0,0);-ms-transform:matrix(0.189536,-0.004738,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189536,-0.004738,0.006248,0.249922,0,0);}
.m5e_c00397{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00397{transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189915,0.000000,0.000000,0.250000,0,0);}
.m82_c00397{transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);}
.m8c_c00397{transform:matrix(0.190115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190115,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.mde_c00397{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.me6_c00397{transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190905,0.000000,0.000000,0.250000,0,0);}
.mdc_c00397{transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);-ms-transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191080,-0.004777,0.006248,0.249922,0,0);}
.m45_c00397{transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.ma4_c00397{transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);}
.m89_c00397{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);}
.md3_c00397{transform:matrix(0.193405,-0.004835,0.006248,0.249922,0,0);-ms-transform:matrix(0.193405,-0.004835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193405,-0.004835,0.006248,0.249922,0,0);}
.ma1_c00397{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.mbd_c00397{transform:matrix(0.193605,-0.004840,0.006248,0.249922,0,0);-ms-transform:matrix(0.193605,-0.004840,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193605,-0.004840,0.006248,0.249922,0,0);}
.mc9_c00397{transform:matrix(0.194079,-0.004852,0.006248,0.249922,0,0);-ms-transform:matrix(0.194079,-0.004852,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194079,-0.004852,0.006248,0.249922,0,0);}
.m4f_c00397{transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194340,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);}
.m2f_c00397{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195088,0.002926,-0.003750,0.249972,0,0);}
.m6b_c00397{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);}
.mb6_c00397{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.mcc_c00397{transform:matrix(0.195729,-0.004893,0.006248,0.249922,0,0);-ms-transform:matrix(0.195729,-0.004893,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195729,-0.004893,0.006248,0.249922,0,0);}
.m80_c00397{transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195845,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.196178,0.002943,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196178,0.002943,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196178,0.002943,-0.003750,0.249972,0,0);}
.m62_c00397{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.mce_c00397{transform:matrix(0.196479,-0.004912,0.006248,0.249922,0,0);-ms-transform:matrix(0.196479,-0.004912,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196479,-0.004912,0.006248,0.249922,0,0);}
.me0_c00397{transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196870,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.md1_c00397{transform:matrix(0.197323,-0.004933,0.006248,0.249922,0,0);-ms-transform:matrix(0.197323,-0.004933,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197323,-0.004933,0.006248,0.249922,0,0);}
.mc7_c00397{transform:matrix(0.197373,-0.004934,0.006248,0.249922,0,0);-ms-transform:matrix(0.197373,-0.004934,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197373,-0.004934,0.006248,0.249922,0,0);}
.m3f_c00397{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.mc0_c00397{transform:matrix(0.198938,-0.004973,0.006248,0.249922,0,0);-ms-transform:matrix(0.198938,-0.004973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198938,-0.004973,0.006248,0.249922,0,0);}
.m31_c00397{transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);}
.me7_c00397{transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);}
.m52_c00397{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.mc2_c00397{transform:matrix(0.200357,-0.005009,0.006248,0.249922,0,0);-ms-transform:matrix(0.200357,-0.005009,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200357,-0.005009,0.006248,0.249922,0,0);}
.me5_c00397{transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);}
.ma2_c00397{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.mca_c00397{transform:matrix(0.201537,-0.005038,0.006248,0.249922,0,0);-ms-transform:matrix(0.201537,-0.005038,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201537,-0.005038,0.006248,0.249922,0,0);}
.mc5_c00397{transform:matrix(0.202112,-0.005053,0.006248,0.249922,0,0);-ms-transform:matrix(0.202112,-0.005053,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202112,-0.005053,0.006248,0.249922,0,0);}
.m60_c00397{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me9_c00397{transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);}
.m70_c00397{transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);}
.m77_c00397{transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);}
.m69_c00397{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.mbe_c00397{transform:matrix(0.204861,-0.005122,0.006248,0.249922,0,0);-ms-transform:matrix(0.204861,-0.005122,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204861,-0.005122,0.006248,0.249922,0,0);}
.m75_c00397{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.md6_c00397{transform:matrix(0.205726,-0.005143,0.006248,0.249922,0,0);-ms-transform:matrix(0.205726,-0.005143,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205726,-0.005143,0.006248,0.249922,0,0);}
.m48_c00397{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mcf_c00397{transform:matrix(0.207555,-0.005189,0.006248,0.249922,0,0);-ms-transform:matrix(0.207555,-0.005189,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207555,-0.005189,0.006248,0.249922,0,0);}
.m86_c00397{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207845,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00397{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m8f_c00397{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.m81_c00397{transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209240,0.000000,0.000000,0.250000,0,0);}
.m74_c00397{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);}
.mdb_c00397{transform:matrix(0.209989,-0.005250,0.006248,0.249922,0,0);-ms-transform:matrix(0.209989,-0.005250,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209989,-0.005250,0.006248,0.249922,0,0);}
.mad_c00397{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.ma0_c00397{transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);}
.m96_c00397{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m4e_c00397{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00397{transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);}
.m7e_c00397{transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00397{transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);}
.m7c_c00397{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.ma6_c00397{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m46_c00397{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.meb_c00397{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m9f_c00397{transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215915,0.000000,0.000000,0.250000,0,0);}
.m6d_c00397{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m7b_c00397{transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216890,0.000000,0.000000,0.250000,0,0);}
.m7a_c00397{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m47_c00397{transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);}
.m87_c00397{transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);}
.mbf_c00397{transform:matrix(0.218997,-0.005475,0.006248,0.249922,0,0);-ms-transform:matrix(0.218997,-0.005475,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218997,-0.005475,0.006248,0.249922,0,0);}
.m4_c00397{transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);}
.ma8_c00397{transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);}
.m4a_c00397{transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.mc1_c00397{transform:matrix(0.223075,-0.005577,0.006248,0.249922,0,0);-ms-transform:matrix(0.223075,-0.005577,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223075,-0.005577,0.006248,0.249922,0,0);}
.m83_c00397{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m9c_c00397{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.m97_c00397{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.m51_c00397{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);}
.me2_c00397{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229945,0.000000,0.000000,0.250000,0,0);}
.m95_c00397{transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);}
.m67_c00397{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m84_c00397{transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);}
.ma3_c00397{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m3d_c00397{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m8e_c00397{transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);}
.mb4_c00397{transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238310,0.000000,0.000000,0.250000,0,0);}
.m4d_c00397{transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.238843,0.003583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238843,0.003583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238843,0.003583,-0.003750,0.249972,0,0);}
.m9d_c00397{transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);}
.m98_c00397{transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);}
.maa_c00397{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00397{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00397{transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m78_c00397{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m6a_c00397{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.mec_c00397{transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);}
.m8d_c00397{transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);}
.md5_c00397{transform:matrix(0.300186,-0.007505,0.006248,0.249922,0,0);-ms-transform:matrix(0.300186,-0.007505,0.006248,0.249922,0,0);-webkit-transform:matrix(0.300186,-0.007505,0.006248,0.249922,0,0);}
.m20_c00397{transform:matrix(0.304635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304635,0.000000,0.000000,0.250000,0,0);}
.m99_c00397{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.410054,0.006151,-0.003750,0.249972,0,0);-ms-transform:matrix(0.410054,0.006151,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.410054,0.006151,-0.003750,0.249972,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:0.000000px;}
.fc0_c00397{color:transparent;}
.fs12_c00397{font-size:16.800000px;}
.fs13_c00397{font-size:42.000000px;}
.fsa_c00397{font-size:55.650000px;}
.fse_c00397{font-size:56.700000px;}
.fsc_c00397{font-size:57.750000px;}
.fs8_c00397{font-size:58.800000px;}
.fs9_c00397{font-size:59.850000px;}
.fs1_c00397{font-size:60.900000px;}
.fs7_c00397{font-size:64.050000px;}
.fs11_c00397{font-size:64.070012px;}
.fsb_c00397{font-size:65.100000px;}
.fs10_c00397{font-size:65.120341px;}
.fs3_c00397{font-size:66.150000px;}
.fs2_c00397{font-size:66.157441px;}
.fsf_c00397{font-size:66.170669px;}
.fs6_c00397{font-size:67.200000px;}
.fsd_c00397{font-size:68.250000px;}
.fs5_c00397{font-size:69.300000px;}
.fs4_c00397{font-size:72.450000px;}
.fs0_c00397{font-size:76.650000px;}
.y0_c00397{bottom:0.000000px;}
.y4f_c00397{bottom:18.090000px;}
.y47_c00397{bottom:31.053000px;}
.y48_c00397{bottom:31.497000px;}
.y49_c00397{bottom:31.947000px;}
.y4a_c00397{bottom:33.469500px;}
.y4b_c00397{bottom:34.048500px;}
.y4c_c00397{bottom:34.759500px;}
.y4d_c00397{bottom:35.029500px;}
.y4e_c00397{bottom:35.929500px;}
.y46_c00397{bottom:50.014500px;}
.y50_c00397{bottom:57.510000px;}
.y3e_c00397{bottom:65.320050px;}
.y3f_c00397{bottom:66.029813px;}
.y40_c00397{bottom:66.802950px;}
.y41_c00397{bottom:67.188263px;}
.y42_c00397{bottom:67.861800px;}
.y43_c00397{bottom:68.217637px;}
.y44_c00397{bottom:69.523500px;}
.y45_c00397{bottom:69.877088px;}
.y37_c00397{bottom:82.068338px;}
.y38_c00397{bottom:83.289225px;}
.y39_c00397{bottom:84.265575px;}
.y3a_c00397{bottom:85.275300px;}
.y3b_c00397{bottom:85.847550px;}
.y3c_c00397{bottom:87.350588px;}
.y3d_c00397{bottom:88.822988px;}
.y31_c00397{bottom:100.553663px;}
.y33_c00397{bottom:100.553963px;}
.y34_c00397{bottom:100.554150px;}
.y32_c00397{bottom:100.554262px;}
.y36_c00397{bottom:100.554300px;}
.y35_c00397{bottom:100.554525px;}
.y2b_c00397{bottom:116.368875px;}
.y2c_c00397{bottom:117.483638px;}
.y2d_c00397{bottom:118.450238px;}
.y2e_c00397{bottom:119.467912px;}
.y2f_c00397{bottom:119.952712px;}
.y30_c00397{bottom:120.290888px;}
.y22_c00397{bottom:128.799000px;}
.y23_c00397{bottom:129.776775px;}
.y24_c00397{bottom:130.337513px;}
.y25_c00397{bottom:131.106262px;}
.y26_c00397{bottom:131.915325px;}
.y27_c00397{bottom:132.626737px;}
.y28_c00397{bottom:134.428763px;}
.y29_c00397{bottom:135.610500px;}
.y2a_c00397{bottom:135.853763px;}
.y21_c00397{bottom:151.495500px;}
.y20_c00397{bottom:168.067500px;}
.y1f_c00397{bottom:185.073000px;}
.y1e_c00397{bottom:202.476000px;}
.y1d_c00397{bottom:220.320000px;}
.y1c_c00397{bottom:236.860500px;}
.y1b_c00397{bottom:254.068500px;}
.y1a_c00397{bottom:270.957000px;}
.y19_c00397{bottom:288.115500px;}
.y18_c00397{bottom:305.100000px;}
.y17_c00397{bottom:322.138500px;}
.y16_c00397{bottom:339.120000px;}
.y15_c00397{bottom:356.130000px;}
.y14_c00397{bottom:373.018500px;}
.y13_c00397{bottom:390.081000px;}
.y12_c00397{bottom:407.617500px;}
.y11_c00397{bottom:424.777500px;}
.y10_c00397{bottom:441.795000px;}
.yf_c00397{bottom:458.538000px;}
.ye_c00397{bottom:475.056000px;}
.yd_c00397{bottom:492.153000px;}
.yc_c00397{bottom:508.597500px;}
.yb_c00397{bottom:525.810000px;}
.ya_c00397{bottom:541.109895px;}
.y9_c00397{bottom:541.866795px;}
.y8_c00397{bottom:542.903730px;}
.y7_c00397{bottom:543.235740px;}
.y6_c00397{bottom:544.183507px;}
.y5_c00397{bottom:544.475198px;}
.y4_c00397{bottom:544.855965px;}
.y3_c00397{bottom:545.401500px;}
.y2_c00397{bottom:559.801500px;}
.y1_c00397{bottom:573.613500px;}
.h14_c00397{height:16.800000px;}
.h15_c00397{height:42.000000px;}
.hc_c00397{height:55.650000px;}
.h10_c00397{height:56.700000px;}
.he_c00397{height:57.750000px;}
.ha_c00397{height:58.800000px;}
.hb_c00397{height:59.850000px;}
.h3_c00397{height:60.900000px;}
.h9_c00397{height:64.050000px;}
.h13_c00397{height:64.070012px;}
.hd_c00397{height:65.100000px;}
.h12_c00397{height:65.120341px;}
.h5_c00397{height:66.150000px;}
.h4_c00397{height:66.157441px;}
.h11_c00397{height:66.170669px;}
.h8_c00397{height:67.200000px;}
.hf_c00397{height:68.250000px;}
.h7_c00397{height:69.300000px;}
.h6_c00397{height:72.450000px;}
.h2_c00397{height:76.650000px;}
.h0_c00397{height:613.170000px;}
.h1_c00397{height:613.500000px;}
.w0_c00397{width:359.100000px;}
.w1_c00397{width:359.250000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:42.390000px;}
.x78_c00397{left:43.416000px;}
.x6f_c00397{left:44.820487px;}
.x27_c00397{left:47.520000px;}
.x2d_c00397{left:51.030000px;}
.x63_c00397{left:56.700000px;}
.x58_c00397{left:59.400000px;}
.x54_c00397{left:61.290000px;}
.x49_c00397{left:62.910000px;}
.x22_c00397{left:65.070000px;}
.x1b_c00397{left:67.230000px;}
.x3_c00397{left:69.390000px;}
.x2e_c00397{left:70.740000px;}
.x16_c00397{left:75.330000px;}
.xb_c00397{left:78.928500px;}
.x52_c00397{left:80.730000px;}
.x68_c00397{left:81.858000px;}
.x36_c00397{left:82.890000px;}
.x40_c00397{left:83.970000px;}
.x5a_c00397{left:86.670000px;}
.x1c_c00397{left:90.990000px;}
.x72_c00397{left:93.724875px;}
.x17_c00397{left:94.770000px;}
.x4c_c00397{left:96.390000px;}
.x4_c00397{left:99.900000px;}
.x41_c00397{left:101.790000px;}
.xc_c00397{left:104.313000px;}
.x70_c00397{left:106.130775px;}
.x4d_c00397{left:109.890000px;}
.x5_c00397{left:111.510000px;}
.x23_c00397{left:113.670000px;}
.x44_c00397{left:116.640000px;}
.x64_c00397{left:122.580000px;}
.xd_c00397{left:123.759000px;}
.x4e_c00397{left:127.440000px;}
.x3b_c00397{left:129.330000px;}
.x18_c00397{left:132.030000px;}
.x24_c00397{left:134.460000px;}
.x76_c00397{left:135.691988px;}
.x5b_c00397{left:138.780000px;}
.x4a_c00397{left:141.210000px;}
.x65_c00397{left:145.800000px;}
.x3c_c00397{left:149.040000px;}
.x12_c00397{left:152.820000px;}
.x33_c00397{left:155.520000px;}
.x6_c00397{left:159.030000px;}
.x1d_c00397{left:160.650000px;}
.x60_c00397{left:162.540000px;}
.x2f_c00397{left:166.320000px;}
.x69_c00397{left:167.400000px;}
.x45_c00397{left:168.750000px;}
.x28_c00397{left:169.830000px;}
.x37_c00397{left:171.180000px;}
.x13_c00397{left:173.070000px;}
.x1_c00397{left:175.230000px;}
.x73_c00397{left:176.469938px;}
.x55_c00397{left:178.470000px;}
.x4f_c00397{left:179.550000px;}
.x1e_c00397{left:180.900000px;}
.x5c_c00397{left:181.980000px;}
.x79_c00397{left:185.592000px;}
.xe_c00397{left:186.943500px;}
.x30_c00397{left:189.540000px;}
.x50_c00397{left:190.890000px;}
.x25_c00397{left:194.400000px;}
.x46_c00397{left:196.290000px;}
.x38_c00397{left:197.370000px;}
.x74_c00397{left:200.320538px;}
.x5d_c00397{left:201.960000px;}
.x14_c00397{left:203.310000px;}
.x61_c00397{left:206.280000px;}
.x29_c00397{left:207.630000px;}
.xf_c00397{left:209.077500px;}
.x56_c00397{left:211.140000px;}
.x26_c00397{left:212.220000px;}
.x66_c00397{left:217.350000px;}
.x7a_c00397{left:219.670500px;}
.x5e_c00397{left:224.100000px;}
.x51_c00397{left:227.340000px;}
.x7_c00397{left:230.580000px;}
.x42_c00397{left:232.470000px;}
.x31_c00397{left:234.900000px;}
.x6d_c00397{left:236.917912px;}
.x3d_c00397{left:238.140000px;}
.x34_c00397{left:240.030000px;}
.x77_c00397{left:241.110000px;}
.x47_c00397{left:243.000000px;}
.x39_c00397{left:246.510000px;}
.x8_c00397{left:248.670000px;}
.x19_c00397{left:250.290000px;}
.x71_c00397{left:254.677050px;}
.x2a_c00397{left:258.660000px;}
.x62_c00397{left:260.280000px;}
.x3e_c00397{left:261.630000px;}
.x75_c00397{left:262.963613px;}
.x9_c00397{left:265.410000px;}
.x6a_c00397{left:267.937500px;}
.x1f_c00397{left:270.000000px;}
.x2b_c00397{left:271.890000px;}
.x1a_c00397{left:274.050000px;}
.x5f_c00397{left:275.400000px;}
.x48_c00397{left:277.020000px;}
.x10_c00397{left:278.206500px;}
.x67_c00397{left:279.990000px;}
.x15_c00397{left:282.420000px;}
.x53_c00397{left:284.310000px;}
.x6e_c00397{left:288.328463px;}
.x20_c00397{left:289.440000px;}
.x43_c00397{left:294.030000px;}
.x2c_c00397{left:296.190000px;}
.x4b_c00397{left:300.780000px;}
.x32_c00397{left:302.670000px;}
.x21_c00397{left:306.450000px;}
.x35_c00397{left:310.500000px;}
.xa_c00397{left:312.660000px;}
.x6b_c00397{left:315.207000px;}
.x3f_c00397{left:317.520000px;}
.x3a_c00397{left:322.110000px;}
.x6c_c00397{left:324.937500px;}
.x11_c00397{left:328.666500px;}
.x57_c00397{left:331.020000px;}
.x7b_c00397{left:335.880000px;}
.x59_c00397{left:342.630000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.fs12_c00397{font-size:14.933333pt;}
.fs13_c00397{font-size:37.333333pt;}
.fsa_c00397{font-size:49.466667pt;}
.fse_c00397{font-size:50.400000pt;}
.fsc_c00397{font-size:51.333333pt;}
.fs8_c00397{font-size:52.266667pt;}
.fs9_c00397{font-size:53.200000pt;}
.fs1_c00397{font-size:54.133333pt;}
.fs7_c00397{font-size:56.933333pt;}
.fs11_c00397{font-size:56.951122pt;}
.fsb_c00397{font-size:57.866667pt;}
.fs10_c00397{font-size:57.884747pt;}
.fs3_c00397{font-size:58.800000pt;}
.fs2_c00397{font-size:58.806615pt;}
.fsf_c00397{font-size:58.818372pt;}
.fs6_c00397{font-size:59.733333pt;}
.fsd_c00397{font-size:60.666667pt;}
.fs5_c00397{font-size:61.600000pt;}
.fs4_c00397{font-size:64.400000pt;}
.fs0_c00397{font-size:68.133333pt;}
.y0_c00397{bottom:0.000000pt;}
.y4f_c00397{bottom:16.080000pt;}
.y47_c00397{bottom:27.602667pt;}
.y48_c00397{bottom:27.997333pt;}
.y49_c00397{bottom:28.397333pt;}
.y4a_c00397{bottom:29.750667pt;}
.y4b_c00397{bottom:30.265333pt;}
.y4c_c00397{bottom:30.897333pt;}
.y4d_c00397{bottom:31.137333pt;}
.y4e_c00397{bottom:31.937333pt;}
.y46_c00397{bottom:44.457333pt;}
.y50_c00397{bottom:51.120000pt;}
.y3e_c00397{bottom:58.062267pt;}
.y3f_c00397{bottom:58.693167pt;}
.y40_c00397{bottom:59.380400pt;}
.y41_c00397{bottom:59.722900pt;}
.y42_c00397{bottom:60.321600pt;}
.y43_c00397{bottom:60.637900pt;}
.y44_c00397{bottom:61.798667pt;}
.y45_c00397{bottom:62.112967pt;}
.y37_c00397{bottom:72.949633pt;}
.y38_c00397{bottom:74.034867pt;}
.y39_c00397{bottom:74.902733pt;}
.y3a_c00397{bottom:75.800267pt;}
.y3b_c00397{bottom:76.308933pt;}
.y3c_c00397{bottom:77.644967pt;}
.y3d_c00397{bottom:78.953767pt;}
.y31_c00397{bottom:89.381033pt;}
.y33_c00397{bottom:89.381300pt;}
.y34_c00397{bottom:89.381467pt;}
.y32_c00397{bottom:89.381567pt;}
.y36_c00397{bottom:89.381600pt;}
.y35_c00397{bottom:89.381800pt;}
.y2b_c00397{bottom:103.439000pt;}
.y2c_c00397{bottom:104.429900pt;}
.y2d_c00397{bottom:105.289100pt;}
.y2e_c00397{bottom:106.193700pt;}
.y2f_c00397{bottom:106.624633pt;}
.y30_c00397{bottom:106.925233pt;}
.y22_c00397{bottom:114.488000pt;}
.y23_c00397{bottom:115.357133pt;}
.y24_c00397{bottom:115.855567pt;}
.y25_c00397{bottom:116.538900pt;}
.y26_c00397{bottom:117.258067pt;}
.y27_c00397{bottom:117.890433pt;}
.y28_c00397{bottom:119.492233pt;}
.y29_c00397{bottom:120.542667pt;}
.y2a_c00397{bottom:120.758900pt;}
.y21_c00397{bottom:134.662667pt;}
.y20_c00397{bottom:149.393333pt;}
.y1f_c00397{bottom:164.509333pt;}
.y1e_c00397{bottom:179.978667pt;}
.y1d_c00397{bottom:195.840000pt;}
.y1c_c00397{bottom:210.542667pt;}
.y1b_c00397{bottom:225.838667pt;}
.y1a_c00397{bottom:240.850667pt;}
.y19_c00397{bottom:256.102667pt;}
.y18_c00397{bottom:271.200000pt;}
.y17_c00397{bottom:286.345333pt;}
.y16_c00397{bottom:301.440000pt;}
.y15_c00397{bottom:316.560000pt;}
.y14_c00397{bottom:331.572000pt;}
.y13_c00397{bottom:346.738667pt;}
.y12_c00397{bottom:362.326667pt;}
.y11_c00397{bottom:377.580000pt;}
.y10_c00397{bottom:392.706667pt;}
.yf_c00397{bottom:407.589333pt;}
.ye_c00397{bottom:422.272000pt;}
.yd_c00397{bottom:437.469333pt;}
.yc_c00397{bottom:452.086667pt;}
.yb_c00397{bottom:467.386667pt;}
.ya_c00397{bottom:480.986573pt;}
.y9_c00397{bottom:481.659373pt;}
.y8_c00397{bottom:482.581093pt;}
.y7_c00397{bottom:482.876213pt;}
.y6_c00397{bottom:483.718673pt;}
.y5_c00397{bottom:483.977953pt;}
.y4_c00397{bottom:484.316413pt;}
.y3_c00397{bottom:484.801333pt;}
.y2_c00397{bottom:497.601333pt;}
.y1_c00397{bottom:509.878667pt;}
.h14_c00397{height:14.933333pt;}
.h15_c00397{height:37.333333pt;}
.hc_c00397{height:49.466667pt;}
.h10_c00397{height:50.400000pt;}
.he_c00397{height:51.333333pt;}
.ha_c00397{height:52.266667pt;}
.hb_c00397{height:53.200000pt;}
.h3_c00397{height:54.133333pt;}
.h9_c00397{height:56.933333pt;}
.h13_c00397{height:56.951122pt;}
.hd_c00397{height:57.866667pt;}
.h12_c00397{height:57.884747pt;}
.h5_c00397{height:58.800000pt;}
.h4_c00397{height:58.806615pt;}
.h11_c00397{height:58.818372pt;}
.h8_c00397{height:59.733333pt;}
.hf_c00397{height:60.666667pt;}
.h7_c00397{height:61.600000pt;}
.h6_c00397{height:64.400000pt;}
.h2_c00397{height:68.133333pt;}
.h0_c00397{height:545.040000pt;}
.h1_c00397{height:545.333333pt;}
.w0_c00397{width:319.200000pt;}
.w1_c00397{width:319.333333pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:37.680000pt;}
.x78_c00397{left:38.592000pt;}
.x6f_c00397{left:39.840433pt;}
.x27_c00397{left:42.240000pt;}
.x2d_c00397{left:45.360000pt;}
.x63_c00397{left:50.400000pt;}
.x58_c00397{left:52.800000pt;}
.x54_c00397{left:54.480000pt;}
.x49_c00397{left:55.920000pt;}
.x22_c00397{left:57.840000pt;}
.x1b_c00397{left:59.760000pt;}
.x3_c00397{left:61.680000pt;}
.x2e_c00397{left:62.880000pt;}
.x16_c00397{left:66.960000pt;}
.xb_c00397{left:70.158667pt;}
.x52_c00397{left:71.760000pt;}
.x68_c00397{left:72.762667pt;}
.x36_c00397{left:73.680000pt;}
.x40_c00397{left:74.640000pt;}
.x5a_c00397{left:77.040000pt;}
.x1c_c00397{left:80.880000pt;}
.x72_c00397{left:83.311000pt;}
.x17_c00397{left:84.240000pt;}
.x4c_c00397{left:85.680000pt;}
.x4_c00397{left:88.800000pt;}
.x41_c00397{left:90.480000pt;}
.xc_c00397{left:92.722667pt;}
.x70_c00397{left:94.338467pt;}
.x4d_c00397{left:97.680000pt;}
.x5_c00397{left:99.120000pt;}
.x23_c00397{left:101.040000pt;}
.x44_c00397{left:103.680000pt;}
.x64_c00397{left:108.960000pt;}
.xd_c00397{left:110.008000pt;}
.x4e_c00397{left:113.280000pt;}
.x3b_c00397{left:114.960000pt;}
.x18_c00397{left:117.360000pt;}
.x24_c00397{left:119.520000pt;}
.x76_c00397{left:120.615100pt;}
.x5b_c00397{left:123.360000pt;}
.x4a_c00397{left:125.520000pt;}
.x65_c00397{left:129.600000pt;}
.x3c_c00397{left:132.480000pt;}
.x12_c00397{left:135.840000pt;}
.x33_c00397{left:138.240000pt;}
.x6_c00397{left:141.360000pt;}
.x1d_c00397{left:142.800000pt;}
.x60_c00397{left:144.480000pt;}
.x2f_c00397{left:147.840000pt;}
.x69_c00397{left:148.800000pt;}
.x45_c00397{left:150.000000pt;}
.x28_c00397{left:150.960000pt;}
.x37_c00397{left:152.160000pt;}
.x13_c00397{left:153.840000pt;}
.x1_c00397{left:155.760000pt;}
.x73_c00397{left:156.862167pt;}
.x55_c00397{left:158.640000pt;}
.x4f_c00397{left:159.600000pt;}
.x1e_c00397{left:160.800000pt;}
.x5c_c00397{left:161.760000pt;}
.x79_c00397{left:164.970667pt;}
.xe_c00397{left:166.172000pt;}
.x30_c00397{left:168.480000pt;}
.x50_c00397{left:169.680000pt;}
.x25_c00397{left:172.800000pt;}
.x46_c00397{left:174.480000pt;}
.x38_c00397{left:175.440000pt;}
.x74_c00397{left:178.062700pt;}
.x5d_c00397{left:179.520000pt;}
.x14_c00397{left:180.720000pt;}
.x61_c00397{left:183.360000pt;}
.x29_c00397{left:184.560000pt;}
.xf_c00397{left:185.846667pt;}
.x56_c00397{left:187.680000pt;}
.x26_c00397{left:188.640000pt;}
.x66_c00397{left:193.200000pt;}
.x7a_c00397{left:195.262667pt;}
.x5e_c00397{left:199.200000pt;}
.x51_c00397{left:202.080000pt;}
.x7_c00397{left:204.960000pt;}
.x42_c00397{left:206.640000pt;}
.x31_c00397{left:208.800000pt;}
.x6d_c00397{left:210.593700pt;}
.x3d_c00397{left:211.680000pt;}
.x34_c00397{left:213.360000pt;}
.x77_c00397{left:214.320000pt;}
.x47_c00397{left:216.000000pt;}
.x39_c00397{left:219.120000pt;}
.x8_c00397{left:221.040000pt;}
.x19_c00397{left:222.480000pt;}
.x71_c00397{left:226.379600pt;}
.x2a_c00397{left:229.920000pt;}
.x62_c00397{left:231.360000pt;}
.x3e_c00397{left:232.560000pt;}
.x75_c00397{left:233.745433pt;}
.x9_c00397{left:235.920000pt;}
.x6a_c00397{left:238.166667pt;}
.x1f_c00397{left:240.000000pt;}
.x2b_c00397{left:241.680000pt;}
.x1a_c00397{left:243.600000pt;}
.x5f_c00397{left:244.800000pt;}
.x48_c00397{left:246.240000pt;}
.x10_c00397{left:247.294667pt;}
.x67_c00397{left:248.880000pt;}
.x15_c00397{left:251.040000pt;}
.x53_c00397{left:252.720000pt;}
.x6e_c00397{left:256.291967pt;}
.x20_c00397{left:257.280000pt;}
.x43_c00397{left:261.360000pt;}
.x2c_c00397{left:263.280000pt;}
.x4b_c00397{left:267.360000pt;}
.x32_c00397{left:269.040000pt;}
.x21_c00397{left:272.400000pt;}
.x35_c00397{left:276.000000pt;}
.xa_c00397{left:277.920000pt;}
.x6b_c00397{left:280.184000pt;}
.x3f_c00397{left:282.240000pt;}
.x3a_c00397{left:286.320000pt;}
.x6c_c00397{left:288.833333pt;}
.x11_c00397{left:292.148000pt;}
.x57_c00397{left:294.240000pt;}
.x7b_c00397{left:298.560000pt;}
.x59_c00397{left:304.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00398 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00398 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00398 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00398 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00398.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00398{transform:matrix(0.024617,-0.000789,0.008004,0.249872,0,0);-ms-transform:matrix(0.024617,-0.000789,0.008004,0.249872,0,0);-webkit-transform:matrix(0.024617,-0.000789,0.008004,0.249872,0,0);}
.m62_c00398{transform:matrix(0.026622,-0.000639,0.005998,0.249928,0,0);-ms-transform:matrix(0.026622,-0.000639,0.005998,0.249928,0,0);-webkit-transform:matrix(0.026622,-0.000639,0.005998,0.249928,0,0);}
.m0_c00398{transform:matrix(0.052823,-0.001692,0.008004,0.249872,0,0);-ms-transform:matrix(0.052823,-0.001692,0.008004,0.249872,0,0);-webkit-transform:matrix(0.052823,-0.001692,0.008004,0.249872,0,0);}
.me4_c00398{transform:matrix(0.128731,-0.001545,0.003000,0.249982,0,0);-ms-transform:matrix(0.128731,-0.001545,0.003000,0.249982,0,0);-webkit-transform:matrix(0.128731,-0.001545,0.003000,0.249982,0,0);}
.m5a_c00398{transform:matrix(0.133763,-0.003745,0.006997,0.249902,0,0);-ms-transform:matrix(0.133763,-0.003745,0.006997,0.249902,0,0);-webkit-transform:matrix(0.133763,-0.003745,0.006997,0.249902,0,0);}
.m29_c00398{transform:matrix(0.140528,-0.004501,0.008004,0.249872,0,0);-ms-transform:matrix(0.140528,-0.004501,0.008004,0.249872,0,0);-webkit-transform:matrix(0.140528,-0.004501,0.008004,0.249872,0,0);}
.m11_c00398{transform:matrix(0.141218,-0.004523,0.008004,0.249872,0,0);-ms-transform:matrix(0.141218,-0.004523,0.008004,0.249872,0,0);-webkit-transform:matrix(0.141218,-0.004523,0.008004,0.249872,0,0);}
.m12_c00398{transform:matrix(0.141233,-0.004524,0.008004,0.249872,0,0);-ms-transform:matrix(0.141233,-0.004524,0.008004,0.249872,0,0);-webkit-transform:matrix(0.141233,-0.004524,0.008004,0.249872,0,0);}
.md0_c00398{transform:matrix(0.143184,-0.002148,0.003750,0.249972,0,0);-ms-transform:matrix(0.143184,-0.002148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143184,-0.002148,0.003750,0.249972,0,0);}
.m17_c00398{transform:matrix(0.143706,-0.004603,0.008004,0.249872,0,0);-ms-transform:matrix(0.143706,-0.004603,0.008004,0.249872,0,0);-webkit-transform:matrix(0.143706,-0.004603,0.008004,0.249872,0,0);}
.m1a_c00398{transform:matrix(0.145535,-0.004662,0.008004,0.249872,0,0);-ms-transform:matrix(0.145535,-0.004662,0.008004,0.249872,0,0);-webkit-transform:matrix(0.145535,-0.004662,0.008004,0.249872,0,0);}
.m3a_c00398{transform:matrix(0.146717,-0.004108,0.006997,0.249902,0,0);-ms-transform:matrix(0.146717,-0.004108,0.006997,0.249902,0,0);-webkit-transform:matrix(0.146717,-0.004108,0.006997,0.249902,0,0);}
.m61_c00398{transform:matrix(0.146787,-0.004110,0.006997,0.249902,0,0);-ms-transform:matrix(0.146787,-0.004110,0.006997,0.249902,0,0);-webkit-transform:matrix(0.146787,-0.004110,0.006997,0.249902,0,0);}
.m22_c00398{transform:matrix(0.147229,-0.004716,0.008004,0.249872,0,0);-ms-transform:matrix(0.147229,-0.004716,0.008004,0.249872,0,0);-webkit-transform:matrix(0.147229,-0.004716,0.008004,0.249872,0,0);}
.m97_c00398{transform:matrix(0.147343,-0.002210,0.003750,0.249972,0,0);-ms-transform:matrix(0.147343,-0.002210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147343,-0.002210,0.003750,0.249972,0,0);}
.m14_c00398{transform:matrix(0.148174,-0.004746,0.008004,0.249872,0,0);-ms-transform:matrix(0.148174,-0.004746,0.008004,0.249872,0,0);-webkit-transform:matrix(0.148174,-0.004746,0.008004,0.249872,0,0);}
.m58_c00398{transform:matrix(0.148352,-0.004154,0.006997,0.249902,0,0);-ms-transform:matrix(0.148352,-0.004154,0.006997,0.249902,0,0);-webkit-transform:matrix(0.148352,-0.004154,0.006997,0.249902,0,0);}
.mc1_c00398{transform:matrix(0.149358,-0.002240,0.003750,0.249972,0,0);-ms-transform:matrix(0.149358,-0.002240,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149358,-0.002240,0.003750,0.249972,0,0);}
.m15_c00398{transform:matrix(0.149698,-0.004795,0.008004,0.249872,0,0);-ms-transform:matrix(0.149698,-0.004795,0.008004,0.249872,0,0);-webkit-transform:matrix(0.149698,-0.004795,0.008004,0.249872,0,0);}
.m2a_c00398{transform:matrix(0.150033,-0.004806,0.008004,0.249872,0,0);-ms-transform:matrix(0.150033,-0.004806,0.008004,0.249872,0,0);-webkit-transform:matrix(0.150033,-0.004806,0.008004,0.249872,0,0);}
.ma8_c00398{transform:matrix(0.150683,-0.002260,0.003750,0.249972,0,0);-ms-transform:matrix(0.150683,-0.002260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150683,-0.002260,0.003750,0.249972,0,0);}
.ma6_c00398{transform:matrix(0.151118,-0.002267,0.003750,0.249972,0,0);-ms-transform:matrix(0.151118,-0.002267,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151118,-0.002267,0.003750,0.249972,0,0);}
.ma3_c00398{transform:matrix(0.152443,-0.002287,0.003750,0.249972,0,0);-ms-transform:matrix(0.152443,-0.002287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152443,-0.002287,0.003750,0.249972,0,0);}
.m2d_c00398{transform:matrix(0.154501,-0.004949,0.008004,0.249872,0,0);-ms-transform:matrix(0.154501,-0.004949,0.008004,0.249872,0,0);-webkit-transform:matrix(0.154501,-0.004949,0.008004,0.249872,0,0);}
.m24_c00398{transform:matrix(0.154896,-0.004962,0.008004,0.249872,0,0);-ms-transform:matrix(0.154896,-0.004962,0.008004,0.249872,0,0);-webkit-transform:matrix(0.154896,-0.004962,0.008004,0.249872,0,0);}
.m5e_c00398{transform:matrix(0.155979,-0.004367,0.006997,0.249902,0,0);-ms-transform:matrix(0.155979,-0.004367,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155979,-0.004367,0.006997,0.249902,0,0);}
.mf5_c00398{transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156284,-0.001875,0.003000,0.249982,0,0);}
.mf4_c00398{transform:matrix(0.156914,-0.001883,0.003000,0.249982,0,0);-ms-transform:matrix(0.156914,-0.001883,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156914,-0.001883,0.003000,0.249982,0,0);}
.m4d_c00398{transform:matrix(0.159602,-0.004469,0.006997,0.249902,0,0);-ms-transform:matrix(0.159602,-0.004469,0.006997,0.249902,0,0);-webkit-transform:matrix(0.159602,-0.004469,0.006997,0.249902,0,0);}
.mf0_c00398{transform:matrix(0.160438,-0.001925,0.003000,0.249982,0,0);-ms-transform:matrix(0.160438,-0.001925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160438,-0.001925,0.003000,0.249982,0,0);}
.m8_c00398{transform:matrix(0.160927,-0.005155,0.008004,0.249872,0,0);-ms-transform:matrix(0.160927,-0.005155,0.008004,0.249872,0,0);-webkit-transform:matrix(0.160927,-0.005155,0.008004,0.249872,0,0);}
.m9e_c00398{transform:matrix(0.160982,-0.002415,0.003750,0.249972,0,0);-ms-transform:matrix(0.160982,-0.002415,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160982,-0.002415,0.003750,0.249972,0,0);}
.mf_c00398{transform:matrix(0.161222,-0.005164,0.008004,0.249872,0,0);-ms-transform:matrix(0.161222,-0.005164,0.008004,0.249872,0,0);-webkit-transform:matrix(0.161222,-0.005164,0.008004,0.249872,0,0);}
.ma0_c00398{transform:matrix(0.161367,-0.002421,0.003750,0.249972,0,0);-ms-transform:matrix(0.161367,-0.002421,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161367,-0.002421,0.003750,0.249972,0,0);}
.m9f_c00398{transform:matrix(0.161557,-0.002423,0.003750,0.249972,0,0);-ms-transform:matrix(0.161557,-0.002423,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161557,-0.002423,0.003750,0.249972,0,0);}
.ma2_c00398{transform:matrix(0.163612,-0.002454,0.003750,0.249972,0,0);-ms-transform:matrix(0.163612,-0.002454,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163612,-0.002454,0.003750,0.249972,0,0);}
.m49_c00398{transform:matrix(0.163766,-0.004585,0.006997,0.249902,0,0);-ms-transform:matrix(0.163766,-0.004585,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163766,-0.004585,0.006997,0.249902,0,0);}
.mee_c00398{transform:matrix(0.164403,-0.001973,0.003000,0.249982,0,0);-ms-transform:matrix(0.164403,-0.001973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164403,-0.001973,0.003000,0.249982,0,0);}
.mbb_c00398{transform:matrix(0.164526,-0.002468,0.003750,0.249972,0,0);-ms-transform:matrix(0.164526,-0.002468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164526,-0.002468,0.003750,0.249972,0,0);}
.mc8_c00398{transform:matrix(0.164646,-0.002470,0.003750,0.249972,0,0);-ms-transform:matrix(0.164646,-0.002470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164646,-0.002470,0.003750,0.249972,0,0);}
.mcd_c00398{transform:matrix(0.164776,-0.002472,0.003750,0.249972,0,0);-ms-transform:matrix(0.164776,-0.002472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164776,-0.002472,0.003750,0.249972,0,0);}
.mb4_c00398{transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);-ms-transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);}
.m8f_c00398{transform:matrix(0.166926,-0.002504,0.003750,0.249972,0,0);-ms-transform:matrix(0.166926,-0.002504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166926,-0.002504,0.003750,0.249972,0,0);}
.m6e_c00398{transform:matrix(0.167341,-0.003849,0.005748,0.249934,0,0);-ms-transform:matrix(0.167341,-0.003849,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167341,-0.003849,0.005748,0.249934,0,0);}
.m80_c00398{transform:matrix(0.168915,-0.003209,0.004749,0.249955,0,0);-ms-transform:matrix(0.168915,-0.003209,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168915,-0.003209,0.004749,0.249955,0,0);}
.m5b_c00398{transform:matrix(0.169913,-0.004758,0.006997,0.249902,0,0);-ms-transform:matrix(0.169913,-0.004758,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169913,-0.004758,0.006997,0.249902,0,0);}
.m5d_c00398{transform:matrix(0.170153,-0.004764,0.006997,0.249902,0,0);-ms-transform:matrix(0.170153,-0.004764,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170153,-0.004764,0.006997,0.249902,0,0);}
.m55_c00398{transform:matrix(0.170263,-0.004767,0.006997,0.249902,0,0);-ms-transform:matrix(0.170263,-0.004767,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170263,-0.004767,0.006997,0.249902,0,0);}
.m9c_c00398{transform:matrix(0.170521,-0.002558,0.003750,0.249972,0,0);-ms-transform:matrix(0.170521,-0.002558,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170521,-0.002558,0.003750,0.249972,0,0);}
.m23_c00398{transform:matrix(0.170657,-0.005467,0.008004,0.249872,0,0);-ms-transform:matrix(0.170657,-0.005467,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170657,-0.005467,0.008004,0.249872,0,0);}
.m16_c00398{transform:matrix(0.170947,-0.005476,0.008004,0.249872,0,0);-ms-transform:matrix(0.170947,-0.005476,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170947,-0.005476,0.008004,0.249872,0,0);}
.m60_c00398{transform:matrix(0.171658,-0.004806,0.006997,0.249902,0,0);-ms-transform:matrix(0.171658,-0.004806,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171658,-0.004806,0.006997,0.249902,0,0);}
.m13_c00398{transform:matrix(0.172327,-0.005520,0.008004,0.249872,0,0);-ms-transform:matrix(0.172327,-0.005520,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172327,-0.005520,0.008004,0.249872,0,0);}
.m40_c00398{transform:matrix(0.172582,-0.004832,0.006997,0.249902,0,0);-ms-transform:matrix(0.172582,-0.004832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172582,-0.004832,0.006997,0.249902,0,0);}
.m31_c00398{transform:matrix(0.172586,-0.005528,0.008004,0.249872,0,0);-ms-transform:matrix(0.172586,-0.005528,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172586,-0.005528,0.008004,0.249872,0,0);}
.m46_c00398{transform:matrix(0.172892,-0.004841,0.006997,0.249902,0,0);-ms-transform:matrix(0.172892,-0.004841,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172892,-0.004841,0.006997,0.249902,0,0);}
.mc0_c00398{transform:matrix(0.173186,-0.002598,0.003750,0.249972,0,0);-ms-transform:matrix(0.173186,-0.002598,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173186,-0.002598,0.003750,0.249972,0,0);}
.m5c_c00398{transform:matrix(0.173587,-0.004860,0.006997,0.249902,0,0);-ms-transform:matrix(0.173587,-0.004860,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173587,-0.004860,0.006997,0.249902,0,0);}
.m18_c00398{transform:matrix(0.173666,-0.005563,0.008004,0.249872,0,0);-ms-transform:matrix(0.173666,-0.005563,0.008004,0.249872,0,0);-webkit-transform:matrix(0.173666,-0.005563,0.008004,0.249872,0,0);}
.m21_c00398{transform:matrix(0.174216,-0.005580,0.008004,0.249872,0,0);-ms-transform:matrix(0.174216,-0.005580,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174216,-0.005580,0.008004,0.249872,0,0);}
.m4e_c00398{transform:matrix(0.174367,-0.004882,0.006997,0.249902,0,0);-ms-transform:matrix(0.174367,-0.004882,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174367,-0.004882,0.006997,0.249902,0,0);}
.m19_c00398{transform:matrix(0.174780,-0.005599,0.008004,0.249872,0,0);-ms-transform:matrix(0.174780,-0.005599,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174780,-0.005599,0.008004,0.249872,0,0);}
.m95_c00398{transform:matrix(0.174835,-0.002623,0.003750,0.249972,0,0);-ms-transform:matrix(0.174835,-0.002623,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174835,-0.002623,0.003750,0.249972,0,0);}
.m59_c00398{transform:matrix(0.175296,-0.004908,0.006997,0.249902,0,0);-ms-transform:matrix(0.175296,-0.004908,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175296,-0.004908,0.006997,0.249902,0,0);}
.m4a_c00398{transform:matrix(0.175491,-0.004914,0.006997,0.249902,0,0);-ms-transform:matrix(0.175491,-0.004914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175491,-0.004914,0.006997,0.249902,0,0);}
.mab_c00398{transform:matrix(0.175520,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175520,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175520,-0.002633,0.003750,0.249972,0,0);}
.mb5_c00398{transform:matrix(0.175750,-0.002636,0.003750,0.249972,0,0);-ms-transform:matrix(0.175750,-0.002636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175750,-0.002636,0.003750,0.249972,0,0);}
.m99_c00398{transform:matrix(0.175780,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175780,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175780,-0.002637,0.003750,0.249972,0,0);}
.mf1_c00398{transform:matrix(0.175907,-0.002111,0.003000,0.249982,0,0);-ms-transform:matrix(0.175907,-0.002111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175907,-0.002111,0.003000,0.249982,0,0);}
.m8b_c00398{transform:matrix(0.175998,-0.003344,0.004749,0.249955,0,0);-ms-transform:matrix(0.175998,-0.003344,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175998,-0.003344,0.004749,0.249955,0,0);}
.m96_c00398{transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);-ms-transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176330,-0.002645,0.003750,0.249972,0,0);}
.m9a_c00398{transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);-ms-transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176395,-0.002646,0.003750,0.249972,0,0);}
.m41_c00398{transform:matrix(0.176801,-0.004950,0.006997,0.249902,0,0);-ms-transform:matrix(0.176801,-0.004950,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176801,-0.004950,0.006997,0.249902,0,0);}
.m8c_c00398{transform:matrix(0.176860,-0.002653,0.003750,0.249972,0,0);-ms-transform:matrix(0.176860,-0.002653,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176860,-0.002653,0.003750,0.249972,0,0);}
.m26_c00398{transform:matrix(0.177099,-0.005673,0.008004,0.249872,0,0);-ms-transform:matrix(0.177099,-0.005673,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177099,-0.005673,0.008004,0.249872,0,0);}
.m1_c00398{transform:matrix(0.177509,-0.005686,0.008004,0.249872,0,0);-ms-transform:matrix(0.177509,-0.005686,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177509,-0.005686,0.008004,0.249872,0,0);}
.md7_c00398{transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);-ms-transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177955,-0.002669,0.003750,0.249972,0,0);}
.md_c00398{transform:matrix(0.178079,-0.005704,0.008004,0.249872,0,0);-ms-transform:matrix(0.178079,-0.005704,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178079,-0.005704,0.008004,0.249872,0,0);}
.m27_c00398{transform:matrix(0.178299,-0.005711,0.008004,0.249872,0,0);-ms-transform:matrix(0.178299,-0.005711,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178299,-0.005711,0.008004,0.249872,0,0);}
.m54_c00398{transform:matrix(0.178495,-0.004998,0.006997,0.249902,0,0);-ms-transform:matrix(0.178495,-0.004998,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178495,-0.004998,0.006997,0.249902,0,0);}
.m39_c00398{transform:matrix(0.178775,-0.005006,0.006997,0.249902,0,0);-ms-transform:matrix(0.178775,-0.005006,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178775,-0.005006,0.006997,0.249902,0,0);}
.ma5_c00398{transform:matrix(0.179705,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179705,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179705,-0.002696,0.003750,0.249972,0,0);}
.m3d_c00398{transform:matrix(0.179889,-0.005037,0.006997,0.249902,0,0);-ms-transform:matrix(0.179889,-0.005037,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179889,-0.005037,0.006997,0.249902,0,0);}
.m94_c00398{transform:matrix(0.179930,-0.002699,0.003750,0.249972,0,0);-ms-transform:matrix(0.179930,-0.002699,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179930,-0.002699,0.003750,0.249972,0,0);}
.md9_c00398{transform:matrix(0.179970,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.179970,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179970,-0.002700,0.003750,0.249972,0,0);}
.md5_c00398{transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);-ms-transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180280,-0.002704,0.003750,0.249972,0,0);}
.m4b_c00398{transform:matrix(0.180629,-0.005058,0.006997,0.249902,0,0);-ms-transform:matrix(0.180629,-0.005058,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180629,-0.005058,0.006997,0.249902,0,0);}
.md3_c00398{transform:matrix(0.181160,-0.002717,0.003750,0.249972,0,0);-ms-transform:matrix(0.181160,-0.002717,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181160,-0.002717,0.003750,0.249972,0,0);}
.me6_c00398{transform:matrix(0.181332,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181332,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181332,-0.002176,0.003000,0.249982,0,0);}
.m6b_c00398{transform:matrix(0.182017,-0.004186,0.005748,0.249934,0,0);-ms-transform:matrix(0.182017,-0.004186,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182017,-0.004186,0.005748,0.249934,0,0);}
.mdd_c00398{transform:matrix(0.183077,-0.002197,0.003000,0.249982,0,0);-ms-transform:matrix(0.183077,-0.002197,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183077,-0.002197,0.003000,0.249982,0,0);}
.ma4_c00398{transform:matrix(0.183159,-0.002747,0.003750,0.249972,0,0);-ms-transform:matrix(0.183159,-0.002747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183159,-0.002747,0.003750,0.249972,0,0);}
.m7c_c00398{transform:matrix(0.183307,-0.003483,0.004749,0.249955,0,0);-ms-transform:matrix(0.183307,-0.003483,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183307,-0.003483,0.004749,0.249955,0,0);}
.m92_c00398{transform:matrix(0.183414,-0.002751,0.003750,0.249972,0,0);-ms-transform:matrix(0.183414,-0.002751,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183414,-0.002751,0.003750,0.249972,0,0);}
.m3b_c00398{transform:matrix(0.183498,-0.005138,0.006997,0.249902,0,0);-ms-transform:matrix(0.183498,-0.005138,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183498,-0.005138,0.006997,0.249902,0,0);}
.m3e_c00398{transform:matrix(0.183628,-0.005142,0.006997,0.249902,0,0);-ms-transform:matrix(0.183628,-0.005142,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183628,-0.005142,0.006997,0.249902,0,0);}
.m90_c00398{transform:matrix(0.184024,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.184024,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184024,-0.002760,0.003750,0.249972,0,0);}
.m9b_c00398{transform:matrix(0.184839,-0.002773,0.003750,0.249972,0,0);-ms-transform:matrix(0.184839,-0.002773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184839,-0.002773,0.003750,0.249972,0,0);}
.m10_c00398{transform:matrix(0.186135,-0.005962,0.008004,0.249872,0,0);-ms-transform:matrix(0.186135,-0.005962,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186135,-0.005962,0.008004,0.249872,0,0);}
.m3_c00398{transform:matrix(0.186165,-0.005963,0.008004,0.249872,0,0);-ms-transform:matrix(0.186165,-0.005963,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186165,-0.005963,0.008004,0.249872,0,0);}
.m6_c00398{transform:matrix(0.186244,-0.005966,0.008004,0.249872,0,0);-ms-transform:matrix(0.186244,-0.005966,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186244,-0.005966,0.008004,0.249872,0,0);}
.mae_c00398{transform:matrix(0.186279,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186279,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186279,-0.002794,0.003750,0.249972,0,0);}
.m43_c00398{transform:matrix(0.186992,-0.005236,0.006997,0.249902,0,0);-ms-transform:matrix(0.186992,-0.005236,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186992,-0.005236,0.006997,0.249902,0,0);}
.m44_c00398{transform:matrix(0.187052,-0.005237,0.006997,0.249902,0,0);-ms-transform:matrix(0.187052,-0.005237,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187052,-0.005237,0.006997,0.249902,0,0);}
.mb9_c00398{transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187104,-0.002807,0.003750,0.249972,0,0);}
.m78_c00398{transform:matrix(0.187146,-0.003556,0.004749,0.249955,0,0);-ms-transform:matrix(0.187146,-0.003556,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187146,-0.003556,0.004749,0.249955,0,0);}
.mb6_c00398{transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187419,-0.002811,0.003750,0.249972,0,0);}
.m3f_c00398{transform:matrix(0.187746,-0.005257,0.006997,0.249902,0,0);-ms-transform:matrix(0.187746,-0.005257,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187746,-0.005257,0.006997,0.249902,0,0);}
.mb3_c00398{transform:matrix(0.187819,-0.002817,0.003750,0.249972,0,0);-ms-transform:matrix(0.187819,-0.002817,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187819,-0.002817,0.003750,0.249972,0,0);}
.mc5_c00398{transform:matrix(0.188009,-0.002820,0.003750,0.249972,0,0);-ms-transform:matrix(0.188009,-0.002820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188009,-0.002820,0.003750,0.249972,0,0);}
.m82_c00398{transform:matrix(0.188351,-0.003579,0.004749,0.249955,0,0);-ms-transform:matrix(0.188351,-0.003579,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188351,-0.003579,0.004749,0.249955,0,0);}
.m5f_c00398{transform:matrix(0.188556,-0.005280,0.006997,0.249902,0,0);-ms-transform:matrix(0.188556,-0.005280,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188556,-0.005280,0.006997,0.249902,0,0);}
.mc4_c00398{transform:matrix(0.188639,-0.002830,0.003750,0.249972,0,0);-ms-transform:matrix(0.188639,-0.002830,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188639,-0.002830,0.003750,0.249972,0,0);}
.mb7_c00398{transform:matrix(0.189394,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189394,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189394,-0.002841,0.003750,0.249972,0,0);}
.m91_c00398{transform:matrix(0.189439,-0.002842,0.003750,0.249972,0,0);-ms-transform:matrix(0.189439,-0.002842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189439,-0.002842,0.003750,0.249972,0,0);}
.mcc_c00398{transform:matrix(0.189489,-0.002842,0.003750,0.249972,0,0);-ms-transform:matrix(0.189489,-0.002842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189489,-0.002842,0.003750,0.249972,0,0);}
.m30_c00398{transform:matrix(0.189523,-0.006071,0.008004,0.249872,0,0);-ms-transform:matrix(0.189523,-0.006071,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189523,-0.006071,0.008004,0.249872,0,0);}
.mc6_c00398{transform:matrix(0.189709,-0.002846,0.003750,0.249972,0,0);-ms-transform:matrix(0.189709,-0.002846,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189709,-0.002846,0.003750,0.249972,0,0);}
.m25_c00398{transform:matrix(0.189938,-0.006084,0.008004,0.249872,0,0);-ms-transform:matrix(0.189938,-0.006084,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189938,-0.006084,0.008004,0.249872,0,0);}
.m8e_c00398{transform:matrix(0.190069,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190069,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190069,-0.002851,0.003750,0.249972,0,0);}
.m20_c00398{transform:matrix(0.190452,-0.006101,0.008004,0.249872,0,0);-ms-transform:matrix(0.190452,-0.006101,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190452,-0.006101,0.008004,0.249872,0,0);}
.m98_c00398{transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);}
.m2f_c00398{transform:matrix(0.190742,-0.006110,0.008004,0.249872,0,0);-ms-transform:matrix(0.190742,-0.006110,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190742,-0.006110,0.008004,0.249872,0,0);}
.mf3_c00398{transform:matrix(0.191181,-0.002294,0.003000,0.249982,0,0);-ms-transform:matrix(0.191181,-0.002294,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191181,-0.002294,0.003000,0.249982,0,0);}
.m42_c00398{transform:matrix(0.191830,-0.005371,0.006997,0.249902,0,0);-ms-transform:matrix(0.191830,-0.005371,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191830,-0.005371,0.006997,0.249902,0,0);}
.md8_c00398{transform:matrix(0.191863,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191863,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191863,-0.002878,0.003750,0.249972,0,0);}
.m1f_c00398{transform:matrix(0.191972,-0.006149,0.008004,0.249872,0,0);-ms-transform:matrix(0.191972,-0.006149,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191972,-0.006149,0.008004,0.249872,0,0);}
.mdf_c00398{transform:matrix(0.192361,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192361,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192361,-0.002308,0.003000,0.249982,0,0);}
.m93_c00398{transform:matrix(0.192418,-0.002886,0.003750,0.249972,0,0);-ms-transform:matrix(0.192418,-0.002886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192418,-0.002886,0.003750,0.249972,0,0);}
.m2e_c00398{transform:matrix(0.193031,-0.006183,0.008004,0.249872,0,0);-ms-transform:matrix(0.193031,-0.006183,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193031,-0.006183,0.008004,0.249872,0,0);}
.m79_c00398{transform:matrix(0.193755,-0.003681,0.004749,0.249955,0,0);-ms-transform:matrix(0.193755,-0.003681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193755,-0.003681,0.004749,0.249955,0,0);}
.m2b_c00398{transform:matrix(0.193766,-0.006207,0.008004,0.249872,0,0);-ms-transform:matrix(0.193766,-0.006207,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193766,-0.006207,0.008004,0.249872,0,0);}
.m9_c00398{transform:matrix(0.193896,-0.006211,0.008004,0.249872,0,0);-ms-transform:matrix(0.193896,-0.006211,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193896,-0.006211,0.008004,0.249872,0,0);}
.md1_c00398{transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);-ms-transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);}
.m73_c00398{transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);-ms-transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);}
.meb_c00398{transform:matrix(0.195061,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195061,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195061,-0.002341,0.003000,0.249982,0,0);}
.m3c_c00398{transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);-ms-transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195373,-0.005470,0.006997,0.249902,0,0);}
.mec_c00398{transform:matrix(0.195521,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195521,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195521,-0.002346,0.003000,0.249982,0,0);}
.mea_c00398{transform:matrix(0.195741,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195741,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195741,-0.002349,0.003000,0.249982,0,0);}
.me1_c00398{transform:matrix(0.195826,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195826,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195826,-0.002350,0.003000,0.249982,0,0);}
.m53_c00398{transform:matrix(0.195863,-0.005484,0.006997,0.249902,0,0);-ms-transform:matrix(0.195863,-0.005484,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195863,-0.005484,0.006997,0.249902,0,0);}
.mb2_c00398{transform:matrix(0.196423,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196423,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196423,-0.002946,0.003750,0.249972,0,0);}
.m87_c00398{transform:matrix(0.197019,-0.003743,0.004749,0.249955,0,0);-ms-transform:matrix(0.197019,-0.003743,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197019,-0.003743,0.004749,0.249955,0,0);}
.ma1_c00398{transform:matrix(0.198253,-0.002974,0.003750,0.249972,0,0);-ms-transform:matrix(0.198253,-0.002974,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198253,-0.002974,0.003750,0.249972,0,0);}
.m9d_c00398{transform:matrix(0.198768,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198768,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198768,-0.002982,0.003750,0.249972,0,0);}
.med_c00398{transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199341,-0.002392,0.003000,0.249982,0,0);}
.m2c_c00398{transform:matrix(0.199363,-0.006386,0.008004,0.249872,0,0);-ms-transform:matrix(0.199363,-0.006386,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199363,-0.006386,0.008004,0.249872,0,0);}
.mc7_c00398{transform:matrix(0.199388,-0.002991,0.003750,0.249972,0,0);-ms-transform:matrix(0.199388,-0.002991,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199388,-0.002991,0.003750,0.249972,0,0);}
.m33_c00398{transform:matrix(0.200316,-0.005609,0.006997,0.249902,0,0);-ms-transform:matrix(0.200316,-0.005609,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200316,-0.005609,0.006997,0.249902,0,0);}
.m28_c00398{transform:matrix(0.200742,-0.006430,0.008004,0.249872,0,0);-ms-transform:matrix(0.200742,-0.006430,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200742,-0.006430,0.008004,0.249872,0,0);}
.m71_c00398{transform:matrix(0.200752,-0.004617,0.005748,0.249934,0,0);-ms-transform:matrix(0.200752,-0.004617,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200752,-0.004617,0.005748,0.249934,0,0);}
.m4c_c00398{transform:matrix(0.200916,-0.005626,0.006997,0.249902,0,0);-ms-transform:matrix(0.200916,-0.005626,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200916,-0.005626,0.006997,0.249902,0,0);}
.mbf_c00398{transform:matrix(0.201207,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201207,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201207,-0.003018,0.003750,0.249972,0,0);}
.mc9_c00398{transform:matrix(0.201287,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201287,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201287,-0.003019,0.003750,0.249972,0,0);}
.mc2_c00398{transform:matrix(0.201647,-0.003025,0.003750,0.249972,0,0);-ms-transform:matrix(0.201647,-0.003025,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201647,-0.003025,0.003750,0.249972,0,0);}
.m5_c00398{transform:matrix(0.201796,-0.006464,0.008004,0.249872,0,0);-ms-transform:matrix(0.201796,-0.006464,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201796,-0.006464,0.008004,0.249872,0,0);}
.md2_c00398{transform:matrix(0.201837,-0.003028,0.003750,0.249972,0,0);-ms-transform:matrix(0.201837,-0.003028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201837,-0.003028,0.003750,0.249972,0,0);}
.m51_c00398{transform:matrix(0.201861,-0.005652,0.006997,0.249902,0,0);-ms-transform:matrix(0.201861,-0.005652,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201861,-0.005652,0.006997,0.249902,0,0);}
.ma9_c00398{transform:matrix(0.202667,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202667,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202667,-0.003040,0.003750,0.249972,0,0);}
.m85_c00398{transform:matrix(0.202888,-0.003855,0.004749,0.249955,0,0);-ms-transform:matrix(0.202888,-0.003855,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202888,-0.003855,0.004749,0.249955,0,0);}
.maa_c00398{transform:matrix(0.202952,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202952,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202952,-0.003044,0.003750,0.249972,0,0);}
.mb0_c00398{transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);-ms-transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);}
.mc3_c00398{transform:matrix(0.203432,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203432,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203432,-0.003051,0.003750,0.249972,0,0);}
.maf_c00398{transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203577,-0.003054,0.003750,0.249972,0,0);}
.m7_c00398{transform:matrix(0.203875,-0.006531,0.008004,0.249872,0,0);-ms-transform:matrix(0.203875,-0.006531,0.008004,0.249872,0,0);-webkit-transform:matrix(0.203875,-0.006531,0.008004,0.249872,0,0);}
.mef_c00398{transform:matrix(0.204645,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204645,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204645,-0.002456,0.003000,0.249982,0,0);}
.m7e_c00398{transform:matrix(0.204763,-0.003890,0.004749,0.249955,0,0);-ms-transform:matrix(0.204763,-0.003890,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204763,-0.003890,0.004749,0.249955,0,0);}
.me7_c00398{transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);-ms-transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204935,-0.002459,0.003000,0.249982,0,0);}
.m48_c00398{transform:matrix(0.205145,-0.005744,0.006997,0.249902,0,0);-ms-transform:matrix(0.205145,-0.005744,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205145,-0.005744,0.006997,0.249902,0,0);}
.mba_c00398{transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);-ms-transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205232,-0.003078,0.003750,0.249972,0,0);}
.m7d_c00398{transform:matrix(0.205368,-0.003902,0.004749,0.249955,0,0);-ms-transform:matrix(0.205368,-0.003902,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205368,-0.003902,0.004749,0.249955,0,0);}
.m84_c00398{transform:matrix(0.205638,-0.003907,0.004749,0.249955,0,0);-ms-transform:matrix(0.205638,-0.003907,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205638,-0.003907,0.004749,0.249955,0,0);}
.mac_c00398{transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-ms-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);}
.m7a_c00398{transform:matrix(0.206658,-0.003926,0.004749,0.249955,0,0);-ms-transform:matrix(0.206658,-0.003926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206658,-0.003926,0.004749,0.249955,0,0);}
.m45_c00398{transform:matrix(0.206694,-0.005787,0.006997,0.249902,0,0);-ms-transform:matrix(0.206694,-0.005787,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206694,-0.005787,0.006997,0.249902,0,0);}
.me_c00398{transform:matrix(0.207963,-0.006661,0.008004,0.249872,0,0);-ms-transform:matrix(0.207963,-0.006661,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207963,-0.006661,0.008004,0.249872,0,0);}
.m8a_c00398{transform:matrix(0.208812,-0.003967,0.004749,0.249955,0,0);-ms-transform:matrix(0.208812,-0.003967,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208812,-0.003967,0.004749,0.249955,0,0);}
.mf2_c00398{transform:matrix(0.209345,-0.002512,0.003000,0.249982,0,0);-ms-transform:matrix(0.209345,-0.002512,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209345,-0.002512,0.003000,0.249982,0,0);}
.m4_c00398{transform:matrix(0.209358,-0.006706,0.008004,0.249872,0,0);-ms-transform:matrix(0.209358,-0.006706,0.008004,0.249872,0,0);-webkit-transform:matrix(0.209358,-0.006706,0.008004,0.249872,0,0);}
.mcf_c00398{transform:matrix(0.209396,-0.003141,0.003750,0.249972,0,0);-ms-transform:matrix(0.209396,-0.003141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209396,-0.003141,0.003750,0.249972,0,0);}
.mca_c00398{transform:matrix(0.209751,-0.003146,0.003750,0.249972,0,0);-ms-transform:matrix(0.209751,-0.003146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209751,-0.003146,0.003750,0.249972,0,0);}
.me0_c00398{transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209895,-0.002519,0.003000,0.249982,0,0);}
.m38_c00398{transform:matrix(0.209933,-0.005878,0.006997,0.249902,0,0);-ms-transform:matrix(0.209933,-0.005878,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209933,-0.005878,0.006997,0.249902,0,0);}
.m69_c00398{transform:matrix(0.210684,-0.005056,0.005998,0.249928,0,0);-ms-transform:matrix(0.210684,-0.005056,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210684,-0.005056,0.005998,0.249928,0,0);}
.m83_c00398{transform:matrix(0.210822,-0.004006,0.004749,0.249955,0,0);-ms-transform:matrix(0.210822,-0.004006,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210822,-0.004006,0.004749,0.249955,0,0);}
.md6_c00398{transform:matrix(0.211331,-0.003170,0.003750,0.249972,0,0);-ms-transform:matrix(0.211331,-0.003170,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211331,-0.003170,0.003750,0.249972,0,0);}
.m77_c00398{transform:matrix(0.211649,-0.004868,0.005748,0.249934,0,0);-ms-transform:matrix(0.211649,-0.004868,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211649,-0.004868,0.005748,0.249934,0,0);}
.m72_c00398{transform:matrix(0.212079,-0.004878,0.005748,0.249934,0,0);-ms-transform:matrix(0.212079,-0.004878,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212079,-0.004878,0.005748,0.249934,0,0);}
.m81_c00398{transform:matrix(0.212152,-0.004031,0.004749,0.249955,0,0);-ms-transform:matrix(0.212152,-0.004031,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212152,-0.004031,0.004749,0.249955,0,0);}
.mbd_c00398{transform:matrix(0.212206,-0.003183,0.003750,0.249972,0,0);-ms-transform:matrix(0.212206,-0.003183,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212206,-0.003183,0.003750,0.249972,0,0);}
.mbe_c00398{transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);-ms-transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);}
.m8d_c00398{transform:matrix(0.213306,-0.003200,0.003750,0.249972,0,0);-ms-transform:matrix(0.213306,-0.003200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213306,-0.003200,0.003750,0.249972,0,0);}
.mb8_c00398{transform:matrix(0.213826,-0.003207,0.003750,0.249972,0,0);-ms-transform:matrix(0.213826,-0.003207,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213826,-0.003207,0.003750,0.249972,0,0);}
.mad_c00398{transform:matrix(0.215031,-0.003225,0.003750,0.249972,0,0);-ms-transform:matrix(0.215031,-0.003225,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215031,-0.003225,0.003750,0.249972,0,0);}
.m4f_c00398{transform:matrix(0.215286,-0.006028,0.006997,0.249902,0,0);-ms-transform:matrix(0.215286,-0.006028,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215286,-0.006028,0.006997,0.249902,0,0);}
.m47_c00398{transform:matrix(0.217215,-0.006082,0.006997,0.249902,0,0);-ms-transform:matrix(0.217215,-0.006082,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217215,-0.006082,0.006997,0.249902,0,0);}
.m89_c00398{transform:matrix(0.217436,-0.004131,0.004749,0.249955,0,0);-ms-transform:matrix(0.217436,-0.004131,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217436,-0.004131,0.004749,0.249955,0,0);}
.mbc_c00398{transform:matrix(0.218975,-0.003285,0.003750,0.249972,0,0);-ms-transform:matrix(0.218975,-0.003285,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218975,-0.003285,0.003750,0.249972,0,0);}
.mda_c00398{transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);-ms-transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219860,-0.003298,0.003750,0.249972,0,0);}
.m36_c00398{transform:matrix(0.220669,-0.006179,0.006997,0.249902,0,0);-ms-transform:matrix(0.220669,-0.006179,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220669,-0.006179,0.006997,0.249902,0,0);}
.m74_c00398{transform:matrix(0.221017,-0.005083,0.005748,0.249934,0,0);-ms-transform:matrix(0.221017,-0.005083,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221017,-0.005083,0.005748,0.249934,0,0);}
.me3_c00398{transform:matrix(0.222544,-0.002671,0.003000,0.249982,0,0);-ms-transform:matrix(0.222544,-0.002671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222544,-0.002671,0.003000,0.249982,0,0);}
.m88_c00398{transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);-ms-transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222560,-0.004229,0.004749,0.249955,0,0);}
.m7b_c00398{transform:matrix(0.222580,-0.004229,0.004749,0.249955,0,0);-ms-transform:matrix(0.222580,-0.004229,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222580,-0.004229,0.004749,0.249955,0,0);}
.mc_c00398{transform:matrix(0.222946,-0.007141,0.008004,0.249872,0,0);-ms-transform:matrix(0.222946,-0.007141,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222946,-0.007141,0.008004,0.249872,0,0);}
.m64_c00398{transform:matrix(0.224080,-0.005378,0.005998,0.249928,0,0);-ms-transform:matrix(0.224080,-0.005378,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224080,-0.005378,0.005998,0.249928,0,0);}
.m6a_c00398{transform:matrix(0.224111,-0.005155,0.005748,0.249934,0,0);-ms-transform:matrix(0.224111,-0.005155,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224111,-0.005155,0.005748,0.249934,0,0);}
.mde_c00398{transform:matrix(0.224354,-0.002692,0.003000,0.249982,0,0);-ms-transform:matrix(0.224354,-0.002692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224354,-0.002692,0.003000,0.249982,0,0);}
.m52_c00398{transform:matrix(0.225182,-0.006305,0.006997,0.249902,0,0);-ms-transform:matrix(0.225182,-0.006305,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225182,-0.006305,0.006997,0.249902,0,0);}
.m68_c00398{transform:matrix(0.227395,-0.005457,0.005998,0.249928,0,0);-ms-transform:matrix(0.227395,-0.005457,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227395,-0.005457,0.005998,0.249928,0,0);}
.m76_c00398{transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);-ms-transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);}
.m7f_c00398{transform:matrix(0.230343,-0.004377,0.004749,0.249955,0,0);-ms-transform:matrix(0.230343,-0.004377,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230343,-0.004377,0.004749,0.249955,0,0);}
.md4_c00398{transform:matrix(0.230864,-0.003463,0.003750,0.249972,0,0);-ms-transform:matrix(0.230864,-0.003463,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230864,-0.003463,0.003750,0.249972,0,0);}
.mb1_c00398{transform:matrix(0.231589,-0.003474,0.003750,0.249972,0,0);-ms-transform:matrix(0.231589,-0.003474,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231589,-0.003474,0.003750,0.249972,0,0);}
.m1e_c00398{transform:matrix(0.232046,-0.007433,0.008004,0.249872,0,0);-ms-transform:matrix(0.232046,-0.007433,0.008004,0.249872,0,0);-webkit-transform:matrix(0.232046,-0.007433,0.008004,0.249872,0,0);}
.m63_c00398{transform:matrix(0.232488,-0.005580,0.005998,0.249928,0,0);-ms-transform:matrix(0.232488,-0.005580,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232488,-0.005580,0.005998,0.249928,0,0);}
.mdc_c00398{transform:matrix(0.232873,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232873,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232873,-0.002794,0.003000,0.249982,0,0);}
.m34_c00398{transform:matrix(0.233873,-0.006548,0.006997,0.249902,0,0);-ms-transform:matrix(0.233873,-0.006548,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233873,-0.006548,0.006997,0.249902,0,0);}
.mcb_c00398{transform:matrix(0.234379,-0.003516,0.003750,0.249972,0,0);-ms-transform:matrix(0.234379,-0.003516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234379,-0.003516,0.003750,0.249972,0,0);}
.m1b_c00398{transform:matrix(0.235069,-0.007530,0.008004,0.249872,0,0);-ms-transform:matrix(0.235069,-0.007530,0.008004,0.249872,0,0);-webkit-transform:matrix(0.235069,-0.007530,0.008004,0.249872,0,0);}
.me8_c00398{transform:matrix(0.235628,-0.002828,0.003000,0.249982,0,0);-ms-transform:matrix(0.235628,-0.002828,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235628,-0.002828,0.003000,0.249982,0,0);}
.m56_c00398{transform:matrix(0.236022,-0.006609,0.006997,0.249902,0,0);-ms-transform:matrix(0.236022,-0.006609,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236022,-0.006609,0.006997,0.249902,0,0);}
.m86_c00398{transform:matrix(0.237957,-0.004521,0.004749,0.249955,0,0);-ms-transform:matrix(0.237957,-0.004521,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237957,-0.004521,0.004749,0.249955,0,0);}
.m75_c00398{transform:matrix(0.237997,-0.005474,0.005748,0.249934,0,0);-ms-transform:matrix(0.237997,-0.005474,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237997,-0.005474,0.005748,0.249934,0,0);}
.mdb_c00398{transform:matrix(0.239893,-0.002879,0.003000,0.249982,0,0);-ms-transform:matrix(0.239893,-0.002879,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239893,-0.002879,0.003000,0.249982,0,0);}
.m57_c00398{transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);-ms-transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);}
.me9_c00398{transform:matrix(0.241608,-0.002899,0.003000,0.249982,0,0);-ms-transform:matrix(0.241608,-0.002899,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241608,-0.002899,0.003000,0.249982,0,0);}
.m65_c00398{transform:matrix(0.243680,-0.005848,0.005998,0.249928,0,0);-ms-transform:matrix(0.243680,-0.005848,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243680,-0.005848,0.005998,0.249928,0,0);}
.me5_c00398{transform:matrix(0.248157,-0.002978,0.003000,0.249982,0,0);-ms-transform:matrix(0.248157,-0.002978,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248157,-0.002978,0.003000,0.249982,0,0);}
.m35_c00398{transform:matrix(0.250802,-0.007022,0.006997,0.249902,0,0);-ms-transform:matrix(0.250802,-0.007022,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250802,-0.007022,0.006997,0.249902,0,0);}
.m6c_c00398{transform:matrix(0.250954,-0.005772,0.005748,0.249934,0,0);-ms-transform:matrix(0.250954,-0.005772,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250954,-0.005772,0.005748,0.249934,0,0);}
.m70_c00398{transform:matrix(0.251414,-0.005783,0.005748,0.249934,0,0);-ms-transform:matrix(0.251414,-0.005783,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251414,-0.005783,0.005748,0.249934,0,0);}
.me2_c00398{transform:matrix(0.251542,-0.003019,0.003000,0.249982,0,0);-ms-transform:matrix(0.251542,-0.003019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251542,-0.003019,0.003000,0.249982,0,0);}
.ma7_c00398{transform:matrix(0.252237,-0.003784,0.003750,0.249972,0,0);-ms-transform:matrix(0.252237,-0.003784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252237,-0.003784,0.003750,0.249972,0,0);}
.mb_c00398{transform:matrix(0.266998,-0.008552,0.008004,0.249872,0,0);-ms-transform:matrix(0.266998,-0.008552,0.008004,0.249872,0,0);-webkit-transform:matrix(0.266998,-0.008552,0.008004,0.249872,0,0);}
.m6f_c00398{transform:matrix(0.270893,-0.006231,0.005748,0.249934,0,0);-ms-transform:matrix(0.270893,-0.006231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.270893,-0.006231,0.005748,0.249934,0,0);}
.m66_c00398{transform:matrix(0.277255,-0.006654,0.005998,0.249928,0,0);-ms-transform:matrix(0.277255,-0.006654,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277255,-0.006654,0.005998,0.249928,0,0);}
.m1c_c00398{transform:matrix(0.278667,-0.008926,0.008004,0.249872,0,0);-ms-transform:matrix(0.278667,-0.008926,0.008004,0.249872,0,0);-webkit-transform:matrix(0.278667,-0.008926,0.008004,0.249872,0,0);}
.mce_c00398{transform:matrix(0.280123,-0.004202,0.003750,0.249972,0,0);-ms-transform:matrix(0.280123,-0.004202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280123,-0.004202,0.003750,0.249972,0,0);}
.m6d_c00398{transform:matrix(0.283750,-0.006526,0.005748,0.249934,0,0);-ms-transform:matrix(0.283750,-0.006526,0.005748,0.249934,0,0);-webkit-transform:matrix(0.283750,-0.006526,0.005748,0.249934,0,0);}
.ma_c00398{transform:matrix(0.300191,-0.009616,0.008004,0.249872,0,0);-ms-transform:matrix(0.300191,-0.009616,0.008004,0.249872,0,0);-webkit-transform:matrix(0.300191,-0.009616,0.008004,0.249872,0,0);}
.m32_c00398{transform:matrix(0.304494,-0.009754,0.008004,0.249872,0,0);-ms-transform:matrix(0.304494,-0.009754,0.008004,0.249872,0,0);-webkit-transform:matrix(0.304494,-0.009754,0.008004,0.249872,0,0);}
.m1d_c00398{transform:matrix(0.319861,-0.010246,0.008004,0.249872,0,0);-ms-transform:matrix(0.319861,-0.010246,0.008004,0.249872,0,0);-webkit-transform:matrix(0.319861,-0.010246,0.008004,0.249872,0,0);}
.m67_c00398{transform:matrix(0.344921,-0.008278,0.005998,0.249928,0,0);-ms-transform:matrix(0.344921,-0.008278,0.005998,0.249928,0,0);-webkit-transform:matrix(0.344921,-0.008278,0.005998,0.249928,0,0);}
.m37_c00398{transform:matrix(0.345565,-0.009676,0.006997,0.249902,0,0);-ms-transform:matrix(0.345565,-0.009676,0.006997,0.249902,0,0);-webkit-transform:matrix(0.345565,-0.009676,0.006997,0.249902,0,0);}
.m50_c00398{transform:matrix(0.358944,-0.010050,0.006997,0.249902,0,0);-ms-transform:matrix(0.358944,-0.010050,0.006997,0.249902,0,0);-webkit-transform:matrix(0.358944,-0.010050,0.006997,0.249902,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:0.000000px;}
.fc0_c00398{color:transparent;}
.fsb_c00398{font-size:54.614440px;}
.fsa_c00398{font-size:54.615723px;}
.fsc_c00398{font-size:55.664717px;}
.fs19_c00398{font-size:57.754158px;}
.fse_c00398{font-size:57.760423px;}
.fs17_c00398{font-size:58.806615px;}
.fs6_c00398{font-size:58.823045px;}
.fs18_c00398{font-size:59.854309px;}
.fs14_c00398{font-size:60.906851px;}
.fs8_c00398{font-size:60.923868px;}
.fs1_c00398{font-size:61.919792px;}
.fs13_c00398{font-size:61.956969px;}
.fsf_c00398{font-size:61.961181px;}
.fs16_c00398{font-size:63.007087px;}
.fs1a_c00398{font-size:64.054611px;}
.fs10_c00398{font-size:64.057205px;}
.fs2_c00398{font-size:65.068256px;}
.fs15_c00398{font-size:66.157441px;}
.fsd_c00398{font-size:66.161939px;}
.fs7_c00398{font-size:66.175926px;}
.fs12_c00398{font-size:68.257678px;}
.fs4_c00398{font-size:69.266208px;}
.fs1b_c00398{font-size:69.304989px;}
.fs11_c00398{font-size:69.307796px;}
.fs5_c00398{font-size:70.315696px;}
.fs9_c00398{font-size:71.427983px;}
.fs3_c00398{font-size:74.513648px;}
.fs0_c00398{font-size:79.761088px;}
.y0_c00398{bottom:0.000000px;}
.yf3_c00398{bottom:34.017960px;}
.yf4_c00398{bottom:34.469046px;}
.yf5_c00398{bottom:35.508672px;}
.yf6_c00398{bottom:37.151670px;}
.yf7_c00398{bottom:38.636940px;}
.yf8_c00398{bottom:39.006144px;}
.yef_c00398{bottom:55.551804px;}
.yf2_c00398{bottom:55.552134px;}
.yf1_c00398{bottom:55.552212px;}
.yee_c00398{bottom:55.552338px;}
.yf0_c00398{bottom:55.552470px;}
.yec_c00398{bottom:55.552590px;}
.yed_c00398{bottom:55.552836px;}
.ye9_c00398{bottom:73.292262px;}
.yeb_c00398{bottom:73.292688px;}
.ye8_c00398{bottom:73.292856px;}
.yea_c00398{bottom:73.292964px;}
.ye7_c00398{bottom:73.293414px;}
.ye6_c00398{bottom:73.293846px;}
.ye5_c00398{bottom:73.293864px;}
.yde_c00398{bottom:89.101500px;}
.ydf_c00398{bottom:90.199086px;}
.ye0_c00398{bottom:90.361770px;}
.ye1_c00398{bottom:90.569148px;}
.ye2_c00398{bottom:91.424994px;}
.ye3_c00398{bottom:92.150592px;}
.ye4_c00398{bottom:92.286852px;}
.yd7_c00398{bottom:104.740635px;}
.yd8_c00398{bottom:105.158730px;}
.yd9_c00398{bottom:105.384052px;}
.yda_c00398{bottom:106.093980px;}
.ydb_c00398{bottom:106.314158px;}
.ydc_c00398{bottom:106.961535px;}
.ydd_c00398{bottom:107.182433px;}
.yce_c00398{bottom:120.406980px;}
.ycf_c00398{bottom:121.032285px;}
.yd0_c00398{bottom:122.207610px;}
.yd1_c00398{bottom:122.706173px;}
.yd2_c00398{bottom:123.700778px;}
.yd3_c00398{bottom:124.229115px;}
.yd4_c00398{bottom:124.613497px;}
.yd5_c00398{bottom:125.701635px;}
.yd6_c00398{bottom:125.960738px;}
.yc7_c00398{bottom:137.420310px;}
.yc8_c00398{bottom:137.789618px;}
.yc9_c00398{bottom:138.881678px;}
.yca_c00398{bottom:139.860503px;}
.ycb_c00398{bottom:140.111723px;}
.ycc_c00398{bottom:140.562780px;}
.ycd_c00398{bottom:142.111763px;}
.ybe_c00398{bottom:153.356603px;}
.ybf_c00398{bottom:153.993690px;}
.yc0_c00398{bottom:154.262040px;}
.yc1_c00398{bottom:156.171413px;}
.yc2_c00398{bottom:156.438480px;}
.yc3_c00398{bottom:157.818630px;}
.yc4_c00398{bottom:158.162123px;}
.yc5_c00398{bottom:158.985878px;}
.yc6_c00398{bottom:159.754883px;}
.yb6_c00398{bottom:171.444465px;}
.yb7_c00398{bottom:172.153883px;}
.yb8_c00398{bottom:172.601348px;}
.yb9_c00398{bottom:173.519663px;}
.yba_c00398{bottom:173.904270px;}
.ybb_c00398{bottom:175.041038px;}
.ybc_c00398{bottom:175.852703px;}
.ybd_c00398{bottom:176.212583px;}
.yb3_c00398{bottom:190.600170px;}
.yb2_c00398{bottom:190.600388px;}
.yb4_c00398{bottom:190.600875px;}
.yb1_c00398{bottom:190.601033px;}
.yb5_c00398{bottom:190.601490px;}
.yb0_c00398{bottom:190.601768px;}
.ya7_c00398{bottom:203.848388px;}
.ya8_c00398{bottom:204.575543px;}
.ya9_c00398{bottom:205.202790px;}
.yaa_c00398{bottom:205.531013px;}
.yab_c00398{bottom:205.986000px;}
.yac_c00398{bottom:206.270258px;}
.yad_c00398{bottom:207.019260px;}
.yae_c00398{bottom:208.485255px;}
.yaf_c00398{bottom:208.901408px;}
.y9d_c00398{bottom:223.017743px;}
.y9e_c00398{bottom:223.558785px;}
.y9f_c00398{bottom:223.783508px;}
.ya0_c00398{bottom:224.344995px;}
.ya1_c00398{bottom:224.488995px;}
.ya2_c00398{bottom:224.825948px;}
.ya3_c00398{bottom:225.594488px;}
.ya4_c00398{bottom:226.042898px;}
.ya5_c00398{bottom:226.191758px;}
.ya6_c00398{bottom:226.650930px;}
.y96_c00398{bottom:240.299888px;}
.y97_c00398{bottom:240.770273px;}
.y98_c00398{bottom:241.626653px;}
.y99_c00398{bottom:242.545875px;}
.y9a_c00398{bottom:242.967488px;}
.y9b_c00398{bottom:243.287460px;}
.y9c_c00398{bottom:243.824723px;}
.y8f_c00398{bottom:257.043000px;}
.y90_c00398{bottom:257.734020px;}
.y91_c00398{bottom:257.917958px;}
.y92_c00398{bottom:259.270568px;}
.y93_c00398{bottom:259.509675px;}
.y94_c00398{bottom:260.396648px;}
.y95_c00398{bottom:261.000210px;}
.y89_c00398{bottom:272.704500px;}
.y8a_c00398{bottom:274.293062px;}
.y8b_c00398{bottom:274.746753px;}
.y8c_c00398{bottom:276.403629px;}
.y8d_c00398{bottom:277.217703px;}
.y8e_c00398{bottom:278.136002px;}
.y81_c00398{bottom:290.790039px;}
.y82_c00398{bottom:291.766203px;}
.y83_c00398{bottom:292.638247px;}
.y84_c00398{bottom:292.970374px;}
.y85_c00398{bottom:293.507585px;}
.y86_c00398{bottom:293.782527px;}
.y87_c00398{bottom:294.603258px;}
.y88_c00398{bottom:295.043437px;}
.y7b_c00398{bottom:308.344500px;}
.y7c_c00398{bottom:309.606337px;}
.y7d_c00398{bottom:310.012120px;}
.y7e_c00398{bottom:311.253552px;}
.y7f_c00398{bottom:312.038898px;}
.y80_c00398{bottom:313.234159px;}
.y76_c00398{bottom:325.618654px;}
.y77_c00398{bottom:326.004462px;}
.y78_c00398{bottom:326.950246px;}
.y79_c00398{bottom:327.926153px;}
.y7a_c00398{bottom:329.131794px;}
.y6d_c00398{bottom:341.016000px;}
.y6e_c00398{bottom:342.690527px;}
.y6f_c00398{bottom:343.033974px;}
.y70_c00398{bottom:344.400657px;}
.y71_c00398{bottom:344.951070px;}
.y72_c00398{bottom:345.257844px;}
.y73_c00398{bottom:345.965025px;}
.y74_c00398{bottom:346.618903px;}
.y75_c00398{bottom:347.324946px;}
.y65_c00398{bottom:356.403000px;}
.y66_c00398{bottom:356.613888px;}
.y67_c00398{bottom:358.096620px;}
.y68_c00398{bottom:358.909644px;}
.y69_c00398{bottom:360.782436px;}
.y6a_c00398{bottom:361.826040px;}
.y6b_c00398{bottom:362.177400px;}
.y6c_c00398{bottom:363.185976px;}
.y5b_c00398{bottom:372.576354px;}
.y5c_c00398{bottom:373.195188px;}
.y5d_c00398{bottom:374.399106px;}
.y5e_c00398{bottom:375.025500px;}
.y5f_c00398{bottom:376.045674px;}
.y60_c00398{bottom:376.649712px;}
.y61_c00398{bottom:377.306748px;}
.y62_c00398{bottom:378.185088px;}
.y63_c00398{bottom:379.031610px;}
.y64_c00398{bottom:379.606908px;}
.y53_c00398{bottom:389.866116px;}
.y54_c00398{bottom:390.527388px;}
.y55_c00398{bottom:392.176674px;}
.y56_c00398{bottom:392.833242px;}
.y57_c00398{bottom:394.375518px;}
.y58_c00398{bottom:395.020620px;}
.y59_c00398{bottom:395.543802px;}
.y5a_c00398{bottom:397.127460px;}
.y4a_c00398{bottom:407.686428px;}
.y4b_c00398{bottom:408.945228px;}
.y4c_c00398{bottom:409.224636px;}
.y4d_c00398{bottom:409.615962px;}
.y4e_c00398{bottom:410.871054px;}
.y4f_c00398{bottom:411.584040px;}
.y50_c00398{bottom:411.912054px;}
.y51_c00398{bottom:412.416138px;}
.y52_c00398{bottom:413.440608px;}
.y43_c00398{bottom:424.163526px;}
.y44_c00398{bottom:424.486266px;}
.y45_c00398{bottom:425.507490px;}
.y46_c00398{bottom:427.015782px;}
.y47_c00398{bottom:427.429830px;}
.y48_c00398{bottom:428.228706px;}
.y49_c00398{bottom:429.171426px;}
.y3b_c00398{bottom:440.370540px;}
.y3c_c00398{bottom:441.058740px;}
.y3d_c00398{bottom:442.439394px;}
.y3e_c00398{bottom:442.796160px;}
.y3f_c00398{bottom:444.227916px;}
.y40_c00398{bottom:444.578454px;}
.y41_c00398{bottom:446.068632px;}
.y42_c00398{bottom:446.970060px;}
.y34_c00398{bottom:456.847500px;}
.y35_c00398{bottom:457.947060px;}
.y36_c00398{bottom:459.248136px;}
.y37_c00398{bottom:461.085132px;}
.y38_c00398{bottom:462.830610px;}
.y39_c00398{bottom:463.338852px;}
.y3a_c00398{bottom:464.628546px;}
.y2a_c00398{bottom:474.447630px;}
.y2b_c00398{bottom:475.098139px;}
.y2c_c00398{bottom:475.685062px;}
.y2d_c00398{bottom:476.764942px;}
.y2e_c00398{bottom:477.089722px;}
.y2f_c00398{bottom:477.688134px;}
.y30_c00398{bottom:478.634889px;}
.y31_c00398{bottom:479.613923px;}
.y32_c00398{bottom:480.283206px;}
.y33_c00398{bottom:481.326546px;}
.y23_c00398{bottom:490.371808px;}
.y24_c00398{bottom:491.862715px;}
.y25_c00398{bottom:493.062495px;}
.y26_c00398{bottom:493.474146px;}
.y27_c00398{bottom:494.757883px;}
.y28_c00398{bottom:497.487717px;}
.y29_c00398{bottom:498.104137px;}
.y1c_c00398{bottom:506.563255px;}
.y1d_c00398{bottom:507.635935px;}
.y1e_c00398{bottom:509.573944px;}
.y1f_c00398{bottom:509.977243px;}
.y20_c00398{bottom:511.499473px;}
.y21_c00398{bottom:513.288372px;}
.y22_c00398{bottom:514.790836px;}
.y12_c00398{bottom:524.372487px;}
.y13_c00398{bottom:525.193860px;}
.y14_c00398{bottom:525.800067px;}
.y15_c00398{bottom:526.823560px;}
.y16_c00398{bottom:527.285674px;}
.y17_c00398{bottom:528.768354px;}
.y18_c00398{bottom:529.350928px;}
.y19_c00398{bottom:529.828824px;}
.y1a_c00398{bottom:531.406929px;}
.y1b_c00398{bottom:532.303492px;}
.yb_c00398{bottom:540.844618px;}
.yc_c00398{bottom:542.780989px;}
.yd_c00398{bottom:545.209785px;}
.ye_c00398{bottom:546.158342px;}
.yf_c00398{bottom:547.580677px;}
.y10_c00398{bottom:549.035301px;}
.y11_c00398{bottom:550.535902px;}
.y4_c00398{bottom:559.722718px;}
.y5_c00398{bottom:560.947629px;}
.y6_c00398{bottom:562.040131px;}
.y7_c00398{bottom:562.879855px;}
.y8_c00398{bottom:564.543495px;}
.y9_c00398{bottom:565.615293px;}
.ya_c00398{bottom:566.443038px;}
.y1_c00398{bottom:572.130000px;}
.y2_c00398{bottom:575.889648px;}
.y3_c00398{bottom:579.505008px;}
.hd_c00398{height:54.614440px;}
.hc_c00398{height:54.615723px;}
.he_c00398{height:55.664717px;}
.h1b_c00398{height:57.754158px;}
.h10_c00398{height:57.760423px;}
.h19_c00398{height:58.806615px;}
.h8_c00398{height:58.823045px;}
.h1a_c00398{height:59.854309px;}
.h16_c00398{height:60.906851px;}
.ha_c00398{height:60.923868px;}
.h3_c00398{height:61.919792px;}
.h15_c00398{height:61.956969px;}
.h11_c00398{height:61.961181px;}
.h18_c00398{height:63.007087px;}
.h1c_c00398{height:64.054611px;}
.h12_c00398{height:64.057205px;}
.h4_c00398{height:65.068256px;}
.h17_c00398{height:66.157441px;}
.hf_c00398{height:66.161939px;}
.h9_c00398{height:66.175926px;}
.h14_c00398{height:68.257678px;}
.h6_c00398{height:69.266208px;}
.h1d_c00398{height:69.304989px;}
.h13_c00398{height:69.307796px;}
.h7_c00398{height:70.315696px;}
.hb_c00398{height:71.427983px;}
.h5_c00398{height:74.513648px;}
.h2_c00398{height:79.761088px;}
.h0_c00398{height:613.170000px;}
.h1_c00398{height:613.500000px;}
.w0_c00398{width:359.100000px;}
.w1_c00398{width:359.250000px;}
.x0_c00398{left:0.000000px;}
.x4e_c00398{left:12.247500px;}
.x61_c00398{left:13.501500px;}
.x4_c00398{left:15.119630px;}
.x12_c00398{left:16.841484px;}
.x1b_c00398{left:18.455976px;}
.x2f_c00398{left:19.708440px;}
.xb_c00398{left:21.062967px;}
.x65_c00398{left:22.882500px;}
.x70_c00398{left:24.273052px;}
.x7e_c00398{left:25.631055px;}
.x1_c00398{left:26.748000px;}
.x2c_c00398{left:28.074000px;}
.x35_c00398{left:35.619816px;}
.x56_c00398{left:39.123625px;}
.x40_c00398{left:44.813622px;}
.x13_c00398{left:46.136407px;}
.x30_c00398{left:48.361632px;}
.x45_c00398{left:51.904098px;}
.x1c_c00398{left:54.191511px;}
.x7f_c00398{left:56.948865px;}
.x6a_c00398{left:59.286225px;}
.x5_c00398{left:60.431028px;}
.x71_c00398{left:62.547757px;}
.x6c_c00398{left:64.412992px;}
.x14_c00398{left:67.777531px;}
.x66_c00398{left:68.950500px;}
.x26_c00398{left:70.204837px;}
.x20_c00398{left:71.648683px;}
.xc_c00398{left:73.365751px;}
.x3a_c00398{left:77.729112px;}
.x5c_c00398{left:79.299344px;}
.x67_c00398{left:81.213000px;}
.x4f_c00398{left:82.815000px;}
.x36_c00398{left:84.262350px;}
.x57_c00398{left:86.378368px;}
.x3b_c00398{left:90.442254px;}
.x53_c00398{left:93.880500px;}
.x72_c00398{left:95.562277px;}
.x62_c00398{left:97.110000px;}
.x46_c00398{left:98.225202px;}
.x88_c00398{left:99.363138px;}
.x6_c00398{left:100.859546px;}
.x59_c00398{left:102.844500px;}
.x15_c00398{left:104.272161px;}
.x31_c00398{left:105.873558px;}
.x3c_c00398{left:108.224736px;}
.x76_c00398{left:109.633920px;}
.x21_c00398{left:111.586252px;}
.x2d_c00398{left:113.811000px;}
.x27_c00398{left:115.156372px;}
.x50_c00398{left:116.691000px;}
.x1d_c00398{left:118.721049px;}
.x16_c00398{left:120.759271px;}
.x47_c00398{left:122.312046px;}
.x5a_c00398{left:124.201500px;}
.x22_c00398{left:125.280409px;}
.x28_c00398{left:128.667307px;}
.x41_c00398{left:130.221516px;}
.x7_c00398{left:131.944926px;}
.x58_c00398{left:135.203749px;}
.x73_c00398{left:136.773802px;}
.xd_c00398{left:138.934095px;}
.x79_c00398{left:141.139170px;}
.x2_c00398{left:144.119511px;}
.x85_c00398{left:146.617092px;}
.x82_c00398{left:148.906575px;}
.x5d_c00398{left:150.100523px;}
.x74_c00398{left:151.723402px;}
.x29_c00398{left:153.577263px;}
.x37_c00398{left:156.090420px;}
.x48_c00398{left:161.534730px;}
.xe_c00398{left:164.566353px;}
.x23_c00398{left:168.026360px;}
.x68_c00398{left:171.387000px;}
.x17_c00398{left:173.649603px;}
.x38_c00398{left:175.810284px;}
.x2e_c00398{left:179.418000px;}
.x32_c00398{left:180.418416px;}
.x5e_c00398{left:181.691720px;}
.x1e_c00398{left:182.860977px;}
.x49_c00398{left:184.769532px;}
.x42_c00398{left:187.340112px;}
.x5b_c00398{left:189.540000px;}
.x75_c00398{left:191.154540px;}
.x54_c00398{left:192.165000px;}
.x8_c00398{left:193.481677px;}
.x33_c00398{left:195.028554px;}
.x77_c00398{left:196.042860px;}
.x3d_c00398{left:197.653230px;}
.x86_c00398{left:201.700530px;}
.xf_c00398{left:202.975755px;}
.x55_c00398{left:205.503000px;}
.x63_c00398{left:208.192500px;}
.x4a_c00398{left:210.057960px;}
.x18_c00398{left:211.439080px;}
.x3e_c00398{left:212.531208px;}
.x39_c00398{left:213.884760px;}
.x80_c00398{left:216.758872px;}
.x6d_c00398{left:221.031195px;}
.x87_c00398{left:222.762054px;}
.x7a_c00398{left:225.660367px;}
.x6b_c00398{left:228.272287px;}
.x43_c00398{left:230.619330px;}
.x9_c00398{left:233.123338px;}
.x3f_c00398{left:235.413030px;}
.x51_c00398{left:238.207500px;}
.x10_c00398{left:242.252644px;}
.x4b_c00398{left:243.839850px;}
.x5f_c00398{left:246.150671px;}
.x83_c00398{left:247.775992px;}
.x64_c00398{left:251.038500px;}
.x52_c00398{left:252.847500px;}
.x89_c00398{left:254.083422px;}
.x6e_c00398{left:255.526230px;}
.x3_c00398{left:256.986531px;}
.x24_c00398{left:258.914694px;}
.x7d_c00398{left:260.564992px;}
.x2a_c00398{left:261.565842px;}
.xa_c00398{left:263.741091px;}
.x19_c00398{left:267.729940px;}
.x7b_c00398{left:270.769342px;}
.x60_c00398{left:272.082168px;}
.x4c_c00398{left:276.378156px;}
.x25_c00398{left:279.422962px;}
.x78_c00398{left:281.102985px;}
.x11_c00398{left:282.777592px;}
.x8a_c00398{left:285.559908px;}
.x69_c00398{left:286.696500px;}
.x44_c00398{left:289.269468px;}
.x7c_c00398{left:290.760443px;}
.x1f_c00398{left:292.450293px;}
.x84_c00398{left:293.640000px;}
.x34_c00398{left:294.704226px;}
.x4d_c00398{left:298.532916px;}
.x1a_c00398{left:299.700022px;}
.x6f_c00398{left:302.263125px;}
.x81_c00398{left:303.393892px;}
.x2b_c00398{left:305.002009px;}
.x8b_c00398{left:306.075432px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fsb_c00398{font-size:48.546169pt;}
.fsa_c00398{font-size:48.547309pt;}
.fsc_c00398{font-size:49.479749pt;}
.fs19_c00398{font-size:51.337029pt;}
.fse_c00398{font-size:51.342598pt;}
.fs17_c00398{font-size:52.272546pt;}
.fs6_c00398{font-size:52.287151pt;}
.fs18_c00398{font-size:53.203830pt;}
.fs14_c00398{font-size:54.139423pt;}
.fs8_c00398{font-size:54.154549pt;}
.fs1_c00398{font-size:55.039815pt;}
.fs13_c00398{font-size:55.072861pt;}
.fsf_c00398{font-size:55.076605pt;}
.fs16_c00398{font-size:56.006300pt;}
.fs1a_c00398{font-size:56.937432pt;}
.fs10_c00398{font-size:56.939738pt;}
.fs2_c00398{font-size:57.838450pt;}
.fs15_c00398{font-size:58.806615pt;}
.fsd_c00398{font-size:58.810612pt;}
.fs7_c00398{font-size:58.823045pt;}
.fs12_c00398{font-size:60.673491pt;}
.fs4_c00398{font-size:61.569963pt;}
.fs1b_c00398{font-size:61.604435pt;}
.fs11_c00398{font-size:61.606930pt;}
.fs5_c00398{font-size:62.502841pt;}
.fs9_c00398{font-size:63.491541pt;}
.fs3_c00398{font-size:66.234354pt;}
.fs0_c00398{font-size:70.898745pt;}
.y0_c00398{bottom:0.000000pt;}
.yf3_c00398{bottom:30.238187pt;}
.yf4_c00398{bottom:30.639152pt;}
.yf5_c00398{bottom:31.563264pt;}
.yf6_c00398{bottom:33.023707pt;}
.yf7_c00398{bottom:34.343947pt;}
.yf8_c00398{bottom:34.672128pt;}
.yef_c00398{bottom:49.379381pt;}
.yf2_c00398{bottom:49.379675pt;}
.yf1_c00398{bottom:49.379744pt;}
.yee_c00398{bottom:49.379856pt;}
.yf0_c00398{bottom:49.379973pt;}
.yec_c00398{bottom:49.380080pt;}
.yed_c00398{bottom:49.380299pt;}
.ye9_c00398{bottom:65.148677pt;}
.yeb_c00398{bottom:65.149056pt;}
.ye8_c00398{bottom:65.149205pt;}
.yea_c00398{bottom:65.149301pt;}
.ye7_c00398{bottom:65.149701pt;}
.ye6_c00398{bottom:65.150085pt;}
.ye5_c00398{bottom:65.150101pt;}
.yde_c00398{bottom:79.201333pt;}
.ydf_c00398{bottom:80.176965pt;}
.ye0_c00398{bottom:80.321573pt;}
.ye1_c00398{bottom:80.505909pt;}
.ye2_c00398{bottom:81.266661pt;}
.ye3_c00398{bottom:81.911637pt;}
.ye4_c00398{bottom:82.032757pt;}
.yd7_c00398{bottom:93.102787pt;}
.yd8_c00398{bottom:93.474427pt;}
.yd9_c00398{bottom:93.674713pt;}
.yda_c00398{bottom:94.305760pt;}
.ydb_c00398{bottom:94.501473pt;}
.ydc_c00398{bottom:95.076920pt;}
.ydd_c00398{bottom:95.273273pt;}
.yce_c00398{bottom:107.028427pt;}
.ycf_c00398{bottom:107.584253pt;}
.yd0_c00398{bottom:108.628987pt;}
.yd1_c00398{bottom:109.072153pt;}
.yd2_c00398{bottom:109.956247pt;}
.yd3_c00398{bottom:110.425880pt;}
.yd4_c00398{bottom:110.767553pt;}
.yd5_c00398{bottom:111.734787pt;}
.yd6_c00398{bottom:111.965100pt;}
.yc7_c00398{bottom:122.151387pt;}
.yc8_c00398{bottom:122.479660pt;}
.yc9_c00398{bottom:123.450380pt;}
.yca_c00398{bottom:124.320447pt;}
.ycb_c00398{bottom:124.543753pt;}
.ycc_c00398{bottom:124.944693pt;}
.ycd_c00398{bottom:126.321567pt;}
.ybe_c00398{bottom:136.316980pt;}
.ybf_c00398{bottom:136.883280pt;}
.yc0_c00398{bottom:137.121813pt;}
.yc1_c00398{bottom:138.819033pt;}
.yc2_c00398{bottom:139.056427pt;}
.yc3_c00398{bottom:140.283227pt;}
.yc4_c00398{bottom:140.588553pt;}
.yc5_c00398{bottom:141.320780pt;}
.yc6_c00398{bottom:142.004340pt;}
.yb6_c00398{bottom:152.395080pt;}
.yb7_c00398{bottom:153.025673pt;}
.yb8_c00398{bottom:153.423420pt;}
.yb9_c00398{bottom:154.239700pt;}
.yba_c00398{bottom:154.581573pt;}
.ybb_c00398{bottom:155.592033pt;}
.ybc_c00398{bottom:156.313513pt;}
.ybd_c00398{bottom:156.633407pt;}
.yb3_c00398{bottom:169.422373pt;}
.yb2_c00398{bottom:169.422567pt;}
.yb4_c00398{bottom:169.423000pt;}
.yb1_c00398{bottom:169.423140pt;}
.yb5_c00398{bottom:169.423547pt;}
.yb0_c00398{bottom:169.423793pt;}
.ya7_c00398{bottom:181.198567pt;}
.ya8_c00398{bottom:181.844927pt;}
.ya9_c00398{bottom:182.402480pt;}
.yaa_c00398{bottom:182.694233pt;}
.yab_c00398{bottom:183.098667pt;}
.yac_c00398{bottom:183.351340pt;}
.yad_c00398{bottom:184.017120pt;}
.yae_c00398{bottom:185.320227pt;}
.yaf_c00398{bottom:185.690140pt;}
.y9d_c00398{bottom:198.237993pt;}
.y9e_c00398{bottom:198.718920pt;}
.y9f_c00398{bottom:198.918673pt;}
.ya0_c00398{bottom:199.417773pt;}
.ya1_c00398{bottom:199.545773pt;}
.ya2_c00398{bottom:199.845287pt;}
.ya3_c00398{bottom:200.528433pt;}
.ya4_c00398{bottom:200.927020pt;}
.ya5_c00398{bottom:201.059340pt;}
.ya6_c00398{bottom:201.467493pt;}
.y96_c00398{bottom:213.599900pt;}
.y97_c00398{bottom:214.018020pt;}
.y98_c00398{bottom:214.779247pt;}
.y99_c00398{bottom:215.596333pt;}
.y9a_c00398{bottom:215.971100pt;}
.y9b_c00398{bottom:216.255520pt;}
.y9c_c00398{bottom:216.733087pt;}
.y8f_c00398{bottom:228.482667pt;}
.y90_c00398{bottom:229.096907pt;}
.y91_c00398{bottom:229.260407pt;}
.y92_c00398{bottom:230.462727pt;}
.y93_c00398{bottom:230.675267pt;}
.y94_c00398{bottom:231.463687pt;}
.y95_c00398{bottom:232.000187pt;}
.y89_c00398{bottom:242.404000pt;}
.y8a_c00398{bottom:243.816055pt;}
.y8b_c00398{bottom:244.219336pt;}
.y8c_c00398{bottom:245.692115pt;}
.y8d_c00398{bottom:246.415736pt;}
.y8e_c00398{bottom:247.232001pt;}
.y81_c00398{bottom:258.480035pt;}
.y82_c00398{bottom:259.347736pt;}
.y83_c00398{bottom:260.122887pt;}
.y84_c00398{bottom:260.418111pt;}
.y85_c00398{bottom:260.895631pt;}
.y86_c00398{bottom:261.140024pt;}
.y87_c00398{bottom:261.869563pt;}
.y88_c00398{bottom:262.260833pt;}
.y7b_c00398{bottom:274.084000pt;}
.y7c_c00398{bottom:275.205633pt;}
.y7d_c00398{bottom:275.566329pt;}
.y7e_c00398{bottom:276.669824pt;}
.y7f_c00398{bottom:277.367909pt;}
.y80_c00398{bottom:278.430364pt;}
.y76_c00398{bottom:289.438804pt;}
.y77_c00398{bottom:289.781744pt;}
.y78_c00398{bottom:290.622441pt;}
.y79_c00398{bottom:291.489913pt;}
.y7a_c00398{bottom:292.561595pt;}
.y6d_c00398{bottom:303.125333pt;}
.y6e_c00398{bottom:304.613801pt;}
.y6f_c00398{bottom:304.919088pt;}
.y70_c00398{bottom:306.133917pt;}
.y71_c00398{bottom:306.623173pt;}
.y72_c00398{bottom:306.895861pt;}
.y73_c00398{bottom:307.524467pt;}
.y74_c00398{bottom:308.105692pt;}
.y75_c00398{bottom:308.733285pt;}
.y65_c00398{bottom:316.802667pt;}
.y66_c00398{bottom:316.990123pt;}
.y67_c00398{bottom:318.308107pt;}
.y68_c00398{bottom:319.030795pt;}
.y69_c00398{bottom:320.695499pt;}
.y6a_c00398{bottom:321.623147pt;}
.y6b_c00398{bottom:321.935467pt;}
.y6c_c00398{bottom:322.831979pt;}
.y5b_c00398{bottom:331.178981pt;}
.y5c_c00398{bottom:331.729056pt;}
.y5d_c00398{bottom:332.799205pt;}
.y5e_c00398{bottom:333.356000pt;}
.y5f_c00398{bottom:334.262821pt;}
.y60_c00398{bottom:334.799744pt;}
.y61_c00398{bottom:335.383776pt;}
.y62_c00398{bottom:336.164523pt;}
.y63_c00398{bottom:336.916987pt;}
.y64_c00398{bottom:337.428363pt;}
.y53_c00398{bottom:346.547659pt;}
.y54_c00398{bottom:347.135456pt;}
.y55_c00398{bottom:348.601488pt;}
.y56_c00398{bottom:349.185104pt;}
.y57_c00398{bottom:350.556016pt;}
.y58_c00398{bottom:351.129440pt;}
.y59_c00398{bottom:351.594491pt;}
.y5a_c00398{bottom:353.002187pt;}
.y4a_c00398{bottom:362.387936pt;}
.y4b_c00398{bottom:363.506869pt;}
.y4c_c00398{bottom:363.755232pt;}
.y4d_c00398{bottom:364.103077pt;}
.y4e_c00398{bottom:365.218715pt;}
.y4f_c00398{bottom:365.852480pt;}
.y50_c00398{bottom:366.144048pt;}
.y51_c00398{bottom:366.592123pt;}
.y52_c00398{bottom:367.502763pt;}
.y43_c00398{bottom:377.034245pt;}
.y44_c00398{bottom:377.321125pt;}
.y45_c00398{bottom:378.228880pt;}
.y46_c00398{bottom:379.569584pt;}
.y47_c00398{bottom:379.937627pt;}
.y48_c00398{bottom:380.647739pt;}
.y49_c00398{bottom:381.485712pt;}
.y3b_c00398{bottom:391.440480pt;}
.y3c_c00398{bottom:392.052213pt;}
.y3d_c00398{bottom:393.279461pt;}
.y3e_c00398{bottom:393.596587pt;}
.y3f_c00398{bottom:394.869259pt;}
.y40_c00398{bottom:395.180848pt;}
.y41_c00398{bottom:396.505451pt;}
.y42_c00398{bottom:397.306720pt;}
.y34_c00398{bottom:406.086667pt;}
.y35_c00398{bottom:407.064053pt;}
.y36_c00398{bottom:408.220565pt;}
.y37_c00398{bottom:409.853451pt;}
.y38_c00398{bottom:411.404987pt;}
.y39_c00398{bottom:411.856757pt;}
.y3a_c00398{bottom:413.003152pt;}
.y2a_c00398{bottom:421.731227pt;}
.y2b_c00398{bottom:422.309457pt;}
.y2c_c00398{bottom:422.831167pt;}
.y2d_c00398{bottom:423.791060pt;}
.y2e_c00398{bottom:424.079753pt;}
.y2f_c00398{bottom:424.611675pt;}
.y30_c00398{bottom:425.453235pt;}
.y31_c00398{bottom:426.323487pt;}
.y32_c00398{bottom:426.918405pt;}
.y33_c00398{bottom:427.845819pt;}
.y23_c00398{bottom:435.886052pt;}
.y24_c00398{bottom:437.211303pt;}
.y25_c00398{bottom:438.277773pt;}
.y26_c00398{bottom:438.643685pt;}
.y27_c00398{bottom:439.784785pt;}
.y28_c00398{bottom:442.211304pt;}
.y29_c00398{bottom:442.759233pt;}
.y1c_c00398{bottom:450.278449pt;}
.y1d_c00398{bottom:451.231943pt;}
.y1e_c00398{bottom:452.954617pt;}
.y1f_c00398{bottom:453.313105pt;}
.y20_c00398{bottom:454.666199pt;}
.y21_c00398{bottom:456.256331pt;}
.y22_c00398{bottom:457.591855pt;}
.y12_c00398{bottom:466.108877pt;}
.y13_c00398{bottom:466.838987pt;}
.y14_c00398{bottom:467.377837pt;}
.y15_c00398{bottom:468.287609pt;}
.y16_c00398{bottom:468.698377pt;}
.y17_c00398{bottom:470.016315pt;}
.y18_c00398{bottom:470.534159pt;}
.y19_c00398{bottom:470.958955pt;}
.y1a_c00398{bottom:472.361715pt;}
.y1b_c00398{bottom:473.158660pt;}
.yb_c00398{bottom:480.750772pt;}
.yc_c00398{bottom:482.471991pt;}
.yd_c00398{bottom:484.630920pt;}
.ye_c00398{bottom:485.474081pt;}
.yf_c00398{bottom:486.738380pt;}
.y10_c00398{bottom:488.031379pt;}
.y11_c00398{bottom:489.365247pt;}
.y4_c00398{bottom:497.531305pt;}
.y5_c00398{bottom:498.620115pt;}
.y6_c00398{bottom:499.591228pt;}
.y7_c00398{bottom:500.337649pt;}
.y8_c00398{bottom:501.816440pt;}
.y9_c00398{bottom:502.769149pt;}
.ya_c00398{bottom:503.504923pt;}
.y1_c00398{bottom:508.560000pt;}
.y2_c00398{bottom:511.901909pt;}
.y3_c00398{bottom:515.115563pt;}
.hd_c00398{height:48.546169pt;}
.hc_c00398{height:48.547309pt;}
.he_c00398{height:49.479749pt;}
.h1b_c00398{height:51.337029pt;}
.h10_c00398{height:51.342598pt;}
.h19_c00398{height:52.272546pt;}
.h8_c00398{height:52.287151pt;}
.h1a_c00398{height:53.203830pt;}
.h16_c00398{height:54.139423pt;}
.ha_c00398{height:54.154549pt;}
.h3_c00398{height:55.039815pt;}
.h15_c00398{height:55.072861pt;}
.h11_c00398{height:55.076605pt;}
.h18_c00398{height:56.006300pt;}
.h1c_c00398{height:56.937432pt;}
.h12_c00398{height:56.939738pt;}
.h4_c00398{height:57.838450pt;}
.h17_c00398{height:58.806615pt;}
.hf_c00398{height:58.810612pt;}
.h9_c00398{height:58.823045pt;}
.h14_c00398{height:60.673491pt;}
.h6_c00398{height:61.569963pt;}
.h1d_c00398{height:61.604435pt;}
.h13_c00398{height:61.606930pt;}
.h7_c00398{height:62.502841pt;}
.hb_c00398{height:63.491541pt;}
.h5_c00398{height:66.234354pt;}
.h2_c00398{height:70.898745pt;}
.h0_c00398{height:545.040000pt;}
.h1_c00398{height:545.333333pt;}
.w0_c00398{width:319.200000pt;}
.w1_c00398{width:319.333333pt;}
.x0_c00398{left:0.000000pt;}
.x4e_c00398{left:10.886667pt;}
.x61_c00398{left:12.001333pt;}
.x4_c00398{left:13.439671pt;}
.x12_c00398{left:14.970208pt;}
.x1b_c00398{left:16.405312pt;}
.x2f_c00398{left:17.518613pt;}
.xb_c00398{left:18.722637pt;}
.x65_c00398{left:20.340000pt;}
.x70_c00398{left:21.576047pt;}
.x7e_c00398{left:22.783160pt;}
.x1_c00398{left:23.776000pt;}
.x2c_c00398{left:24.954667pt;}
.x35_c00398{left:31.662059pt;}
.x56_c00398{left:34.776556pt;}
.x40_c00398{left:39.834331pt;}
.x13_c00398{left:41.010140pt;}
.x30_c00398{left:42.988117pt;}
.x45_c00398{left:46.136976pt;}
.x1c_c00398{left:48.170232pt;}
.x7f_c00398{left:50.621213pt;}
.x6a_c00398{left:52.698867pt;}
.x5_c00398{left:53.716469pt;}
.x71_c00398{left:55.598007pt;}
.x6c_c00398{left:57.255993pt;}
.x14_c00398{left:60.246695pt;}
.x66_c00398{left:61.289333pt;}
.x26_c00398{left:62.404300pt;}
.x20_c00398{left:63.687719pt;}
.xc_c00398{left:65.214001pt;}
.x3a_c00398{left:69.092544pt;}
.x5c_c00398{left:70.488305pt;}
.x67_c00398{left:72.189333pt;}
.x4f_c00398{left:73.613333pt;}
.x36_c00398{left:74.899867pt;}
.x57_c00398{left:76.780772pt;}
.x3b_c00398{left:80.393115pt;}
.x53_c00398{left:83.449333pt;}
.x72_c00398{left:84.944247pt;}
.x62_c00398{left:86.320000pt;}
.x46_c00398{left:87.311291pt;}
.x88_c00398{left:88.322789pt;}
.x6_c00398{left:89.652929pt;}
.x59_c00398{left:91.417333pt;}
.x15_c00398{left:92.686365pt;}
.x31_c00398{left:94.109829pt;}
.x3c_c00398{left:96.199765pt;}
.x76_c00398{left:97.452373pt;}
.x21_c00398{left:99.187780pt;}
.x2d_c00398{left:101.165333pt;}
.x27_c00398{left:102.361220pt;}
.x50_c00398{left:103.725333pt;}
.x1d_c00398{left:105.529821pt;}
.x16_c00398{left:107.341575pt;}
.x47_c00398{left:108.721819pt;}
.x5a_c00398{left:110.401333pt;}
.x22_c00398{left:111.360364pt;}
.x28_c00398{left:114.370940pt;}
.x41_c00398{left:115.752459pt;}
.x7_c00398{left:117.284379pt;}
.x58_c00398{left:120.181111pt;}
.x73_c00398{left:121.576713pt;}
.xd_c00398{left:123.496973pt;}
.x79_c00398{left:125.457040pt;}
.x2_c00398{left:128.106232pt;}
.x85_c00398{left:130.326304pt;}
.x82_c00398{left:132.361400pt;}
.x5d_c00398{left:133.422687pt;}
.x74_c00398{left:134.865247pt;}
.x29_c00398{left:136.513123pt;}
.x37_c00398{left:138.747040pt;}
.x48_c00398{left:143.586427pt;}
.xe_c00398{left:146.281203pt;}
.x23_c00398{left:149.356764pt;}
.x68_c00398{left:152.344000pt;}
.x17_c00398{left:154.355203pt;}
.x38_c00398{left:156.275808pt;}
.x2e_c00398{left:159.482667pt;}
.x32_c00398{left:160.371925pt;}
.x5e_c00398{left:161.503751pt;}
.x1e_c00398{left:162.543091pt;}
.x49_c00398{left:164.239584pt;}
.x42_c00398{left:166.524544pt;}
.x5b_c00398{left:168.480000pt;}
.x75_c00398{left:169.915147pt;}
.x54_c00398{left:170.813333pt;}
.x8_c00398{left:171.983713pt;}
.x33_c00398{left:173.358715pt;}
.x77_c00398{left:174.260320pt;}
.x3d_c00398{left:175.691760pt;}
.x86_c00398{left:179.289360pt;}
.xf_c00398{left:180.422893pt;}
.x55_c00398{left:182.669333pt;}
.x63_c00398{left:185.060000pt;}
.x4a_c00398{left:186.718187pt;}
.x18_c00398{left:187.945849pt;}
.x3e_c00398{left:188.916629pt;}
.x39_c00398{left:190.119787pt;}
.x80_c00398{left:192.674553pt;}
.x6d_c00398{left:196.472173pt;}
.x87_c00398{left:198.010715pt;}
.x7a_c00398{left:200.586993pt;}
.x6b_c00398{left:202.908700pt;}
.x43_c00398{left:204.994960pt;}
.x9_c00398{left:207.220745pt;}
.x3f_c00398{left:209.256027pt;}
.x51_c00398{left:211.740000pt;}
.x10_c00398{left:215.335684pt;}
.x4b_c00398{left:216.746533pt;}
.x5f_c00398{left:218.800596pt;}
.x83_c00398{left:220.245327pt;}
.x64_c00398{left:223.145333pt;}
.x52_c00398{left:224.753333pt;}
.x89_c00398{left:225.851931pt;}
.x6e_c00398{left:227.134427pt;}
.x3_c00398{left:228.432472pt;}
.x24_c00398{left:230.146395pt;}
.x7d_c00398{left:231.613327pt;}
.x2a_c00398{left:232.502971pt;}
.xa_c00398{left:234.436525pt;}
.x19_c00398{left:237.982169pt;}
.x7b_c00398{left:240.683860pt;}
.x60_c00398{left:241.850816pt;}
.x4c_c00398{left:245.669472pt;}
.x25_c00398{left:248.375967pt;}
.x78_c00398{left:249.869320pt;}
.x11_c00398{left:251.357860pt;}
.x8a_c00398{left:253.831029pt;}
.x69_c00398{left:254.841333pt;}
.x44_c00398{left:257.128416pt;}
.x7c_c00398{left:258.453727pt;}
.x1f_c00398{left:259.955816pt;}
.x84_c00398{left:261.013333pt;}
.x34_c00398{left:261.959312pt;}
.x4d_c00398{left:265.362592pt;}
.x1a_c00398{left:266.400020pt;}
.x6f_c00398{left:268.678333pt;}
.x81_c00398{left:269.683460pt;}
.x2b_c00398{left:271.112897pt;}
.x8b_c00398{left:272.067051pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00399 {
    display:none;
  }
  .loading-indicator_c00399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00399 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00399 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00399" -> "#page-container .classname_c00399")
 */
.pf_c00399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00399 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00399 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00399 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00399 {overflow:visible;}
  }
}
.c_c00399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00399 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00399:after { /* webkit #35443 */
  content: '';
}
.t_c00399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00399 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00399 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00399 { /* info for Javascript */
  display:none;
}
.l_c00399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00399:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00399 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00399.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00399{transform:matrix(0.018291,0.000384,-0.005249,0.249945,0,0);-ms-transform:matrix(0.018291,0.000384,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.018291,0.000384,-0.005249,0.249945,0,0);}
.m3c_c00399{transform:matrix(0.021385,0.000449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.021385,0.000449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.021385,0.000449,-0.005249,0.249945,0,0);}
.m3e_c00399{transform:matrix(0.037807,0.000794,-0.005249,0.249945,0,0);-ms-transform:matrix(0.037807,0.000794,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.037807,0.000794,-0.005249,0.249945,0,0);}
.m1_c00399{transform:matrix(0.055173,0.001159,-0.005249,0.249945,0,0);-ms-transform:matrix(0.055173,0.001159,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.055173,0.001159,-0.005249,0.249945,0,0);}
.m2_c00399{transform:matrix(0.071384,0.001499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.071384,0.001499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.071384,0.001499,-0.005249,0.249945,0,0);}
.md6_c00399{transform:matrix(0.074024,0.001554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.074024,0.001554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.074024,0.001554,-0.005249,0.249945,0,0);}
.m32_c00399{transform:matrix(0.138859,0.002916,-0.005249,0.249945,0,0);-ms-transform:matrix(0.138859,0.002916,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.138859,0.002916,-0.005249,0.249945,0,0);}
.mde_c00399{transform:matrix(0.143363,0.003011,-0.005249,0.249945,0,0);-ms-transform:matrix(0.143363,0.003011,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.143363,0.003011,-0.005249,0.249945,0,0);}
.m0_c00399{transform:matrix(0.143733,0.003018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.143733,0.003018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.143733,0.003018,-0.005249,0.249945,0,0);}
.m36_c00399{transform:matrix(0.147133,0.003090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147133,0.003090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147133,0.003090,-0.005249,0.249945,0,0);}
.m6d_c00399{transform:matrix(0.148202,0.003112,-0.005249,0.249945,0,0);-ms-transform:matrix(0.148202,0.003112,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.148202,0.003112,-0.005249,0.249945,0,0);}
.m34_c00399{transform:matrix(0.154591,0.003246,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154591,0.003246,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154591,0.003246,-0.005249,0.249945,0,0);}
.m11_c00399{transform:matrix(0.157120,0.003300,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157120,0.003300,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157120,0.003300,-0.005249,0.249945,0,0);}
.m38_c00399{transform:matrix(0.158280,0.003324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158280,0.003324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158280,0.003324,-0.005249,0.249945,0,0);}
.m17_c00399{transform:matrix(0.159785,0.003355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159785,0.003355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159785,0.003355,-0.005249,0.249945,0,0);}
.mcf_c00399{transform:matrix(0.160355,0.003367,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160355,0.003367,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160355,0.003367,-0.005249,0.249945,0,0);}
.m26_c00399{transform:matrix(0.161044,0.003382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161044,0.003382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161044,0.003382,-0.005249,0.249945,0,0);}
.m2e_c00399{transform:matrix(0.161209,0.003385,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161209,0.003385,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161209,0.003385,-0.005249,0.249945,0,0);}
.me4_c00399{transform:matrix(0.161339,0.003388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161339,0.003388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161339,0.003388,-0.005249,0.249945,0,0);}
.m29_c00399{transform:matrix(0.161994,0.003402,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161994,0.003402,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161994,0.003402,-0.005249,0.249945,0,0);}
.m71_c00399{transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162739,0.003418,-0.005249,0.249945,0,0);}
.m58_c00399{transform:matrix(0.162804,0.003419,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162804,0.003419,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162804,0.003419,-0.005249,0.249945,0,0);}
.me2_c00399{transform:matrix(0.162954,0.003422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162954,0.003422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162954,0.003422,-0.005249,0.249945,0,0);}
.mc7_c00399{transform:matrix(0.164219,0.003449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164219,0.003449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164219,0.003449,-0.005249,0.249945,0,0);}
.m16_c00399{transform:matrix(0.164429,0.003453,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164429,0.003453,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164429,0.003453,-0.005249,0.249945,0,0);}
.m9a_c00399{transform:matrix(0.164979,0.003465,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164979,0.003465,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164979,0.003465,-0.005249,0.249945,0,0);}
.me_c00399{transform:matrix(0.166553,0.003498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166553,0.003498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166553,0.003498,-0.005249,0.249945,0,0);}
.m93_c00399{transform:matrix(0.167473,0.003517,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167473,0.003517,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167473,0.003517,-0.005249,0.249945,0,0);}
.me6_c00399{transform:matrix(0.167553,0.003519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167553,0.003519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167553,0.003519,-0.005249,0.249945,0,0);}
.m90_c00399{transform:matrix(0.167993,0.003528,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167993,0.003528,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167993,0.003528,-0.005249,0.249945,0,0);}
.mb_c00399{transform:matrix(0.168718,0.003543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168718,0.003543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168718,0.003543,-0.005249,0.249945,0,0);}
.m95_c00399{transform:matrix(0.168898,0.003547,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168898,0.003547,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168898,0.003547,-0.005249,0.249945,0,0);}
.m3d_c00399{transform:matrix(0.169453,0.003559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169453,0.003559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169453,0.003559,-0.005249,0.249945,0,0);}
.mb1_c00399{transform:matrix(0.170867,0.003588,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170867,0.003588,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170867,0.003588,-0.005249,0.249945,0,0);}
.mb6_c00399{transform:matrix(0.170917,0.003589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170917,0.003589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170917,0.003589,-0.005249,0.249945,0,0);}
.m4d_c00399{transform:matrix(0.172152,0.003615,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172152,0.003615,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172152,0.003615,-0.005249,0.249945,0,0);}
.me3_c00399{transform:matrix(0.172357,0.003619,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172357,0.003619,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172357,0.003619,-0.005249,0.249945,0,0);}
.m14_c00399{transform:matrix(0.173192,0.003637,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173192,0.003637,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173192,0.003637,-0.005249,0.249945,0,0);}
.ma8_c00399{transform:matrix(0.173777,0.003649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173777,0.003649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173777,0.003649,-0.005249,0.249945,0,0);}
.m45_c00399{transform:matrix(0.174447,0.003663,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174447,0.003663,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174447,0.003663,-0.005249,0.249945,0,0);}
.m7d_c00399{transform:matrix(0.175011,0.003675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175011,0.003675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175011,0.003675,-0.005249,0.249945,0,0);}
.mcc_c00399{transform:matrix(0.175316,0.003682,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175316,0.003682,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175316,0.003682,-0.005249,0.249945,0,0);}
.m83_c00399{transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);}
.m12_c00399{transform:matrix(0.175536,0.003686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175536,0.003686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175536,0.003686,-0.005249,0.249945,0,0);}
.m18_c00399{transform:matrix(0.175901,0.003694,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175901,0.003694,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175901,0.003694,-0.005249,0.249945,0,0);}
.md8_c00399{transform:matrix(0.175946,0.003695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175946,0.003695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175946,0.003695,-0.005249,0.249945,0,0);}
.mb8_c00399{transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);}
.m15_c00399{transform:matrix(0.176496,0.003706,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176496,0.003706,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176496,0.003706,-0.005249,0.249945,0,0);}
.mdf_c00399{transform:matrix(0.176856,0.003714,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176856,0.003714,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176856,0.003714,-0.005249,0.249945,0,0);}
.mae_c00399{transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177096,0.003719,-0.005249,0.249945,0,0);}
.mbf_c00399{transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179026,0.003760,-0.005249,0.249945,0,0);}
.m76_c00399{transform:matrix(0.179066,0.003760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179066,0.003760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179066,0.003760,-0.005249,0.249945,0,0);}
.m4f_c00399{transform:matrix(0.179081,0.003761,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179081,0.003761,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179081,0.003761,-0.005249,0.249945,0,0);}
.md3_c00399{transform:matrix(0.180260,0.003785,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180260,0.003785,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180260,0.003785,-0.005249,0.249945,0,0);}
.m9_c00399{transform:matrix(0.180305,0.003786,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180305,0.003786,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180305,0.003786,-0.005249,0.249945,0,0);}
.m6b_c00399{transform:matrix(0.180595,0.003792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180595,0.003792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180595,0.003792,-0.005249,0.249945,0,0);}
.m3_c00399{transform:matrix(0.181120,0.003804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181120,0.003804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181120,0.003804,-0.005249,0.249945,0,0);}
.m65_c00399{transform:matrix(0.181195,0.003805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181195,0.003805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181195,0.003805,-0.005249,0.249945,0,0);}
.m37_c00399{transform:matrix(0.181565,0.003813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181565,0.003813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181565,0.003813,-0.005249,0.249945,0,0);}
.m52_c00399{transform:matrix(0.181895,0.003820,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181895,0.003820,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181895,0.003820,-0.005249,0.249945,0,0);}
.m7b_c00399{transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);}
.m2b_c00399{transform:matrix(0.182590,0.003834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182590,0.003834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182590,0.003834,-0.005249,0.249945,0,0);}
.mf_c00399{transform:matrix(0.182690,0.003836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182690,0.003836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182690,0.003836,-0.005249,0.249945,0,0);}
.m5_c00399{transform:matrix(0.182820,0.003839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182820,0.003839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182820,0.003839,-0.005249,0.249945,0,0);}
.m1a_c00399{transform:matrix(0.183120,0.003846,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183120,0.003846,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183120,0.003846,-0.005249,0.249945,0,0);}
.me1_c00399{transform:matrix(0.183205,0.003847,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183205,0.003847,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183205,0.003847,-0.005249,0.249945,0,0);}
.m99_c00399{transform:matrix(0.183395,0.003851,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183395,0.003851,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183395,0.003851,-0.005249,0.249945,0,0);}
.mc_c00399{transform:matrix(0.183874,0.003861,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183874,0.003861,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183874,0.003861,-0.005249,0.249945,0,0);}
.m6e_c00399{transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185109,0.003887,-0.005249,0.249945,0,0);}
.mdd_c00399{transform:matrix(0.185524,0.003896,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185524,0.003896,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185524,0.003896,-0.005249,0.249945,0,0);}
.m6_c00399{transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);}
.m96_c00399{transform:matrix(0.186069,0.003907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186069,0.003907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186069,0.003907,-0.005249,0.249945,0,0);}
.m42_c00399{transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186584,0.003918,-0.005249,0.249945,0,0);}
.m63_c00399{transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187369,0.003935,-0.005249,0.249945,0,0);}
.m49_c00399{transform:matrix(0.187384,0.003935,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187384,0.003935,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187384,0.003935,-0.005249,0.249945,0,0);}
.mb7_c00399{transform:matrix(0.187559,0.003939,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187559,0.003939,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187559,0.003939,-0.005249,0.249945,0,0);}
.m54_c00399{transform:matrix(0.187924,0.003946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187924,0.003946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187924,0.003946,-0.005249,0.249945,0,0);}
.mba_c00399{transform:matrix(0.187944,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187944,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187944,0.003947,-0.005249,0.249945,0,0);}
.ma4_c00399{transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);}
.ma_c00399{transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188758,0.003964,-0.005249,0.249945,0,0);}
.m4_c00399{transform:matrix(0.188818,0.003965,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188818,0.003965,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188818,0.003965,-0.005249,0.249945,0,0);}
.m10_c00399{transform:matrix(0.188873,0.003966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188873,0.003966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188873,0.003966,-0.005249,0.249945,0,0);}
.ma3_c00399{transform:matrix(0.188898,0.003967,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188898,0.003967,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188898,0.003967,-0.005249,0.249945,0,0);}
.m2d_c00399{transform:matrix(0.189138,0.003972,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189138,0.003972,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189138,0.003972,-0.005249,0.249945,0,0);}
.m25_c00399{transform:matrix(0.189488,0.003979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189488,0.003979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189488,0.003979,-0.005249,0.249945,0,0);}
.m5d_c00399{transform:matrix(0.189498,0.003979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189498,0.003979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189498,0.003979,-0.005249,0.249945,0,0);}
.m1b_c00399{transform:matrix(0.190098,0.003992,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190098,0.003992,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190098,0.003992,-0.005249,0.249945,0,0);}
.md4_c00399{transform:matrix(0.190108,0.003992,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190108,0.003992,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190108,0.003992,-0.005249,0.249945,0,0);}
.m39_c00399{transform:matrix(0.190358,0.003998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190358,0.003998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190358,0.003998,-0.005249,0.249945,0,0);}
.m84_c00399{transform:matrix(0.190398,0.003998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190398,0.003998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190398,0.003998,-0.005249,0.249945,0,0);}
.m13_c00399{transform:matrix(0.190538,0.004001,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190538,0.004001,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190538,0.004001,-0.005249,0.249945,0,0);}
.m24_c00399{transform:matrix(0.190548,0.004002,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190548,0.004002,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190548,0.004002,-0.005249,0.249945,0,0);}
.ma0_c00399{transform:matrix(0.190963,0.004010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190963,0.004010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190963,0.004010,-0.005249,0.249945,0,0);}
.m9d_c00399{transform:matrix(0.191283,0.004017,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191283,0.004017,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191283,0.004017,-0.005249,0.249945,0,0);}
.mbb_c00399{transform:matrix(0.191858,0.004029,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191858,0.004029,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191858,0.004029,-0.005249,0.249945,0,0);}
.m19_c00399{transform:matrix(0.191918,0.004030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191918,0.004030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191918,0.004030,-0.005249,0.249945,0,0);}
.m31_c00399{transform:matrix(0.191963,0.004031,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191963,0.004031,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191963,0.004031,-0.005249,0.249945,0,0);}
.m7f_c00399{transform:matrix(0.192523,0.004043,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192523,0.004043,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192523,0.004043,-0.005249,0.249945,0,0);}
.m9b_c00399{transform:matrix(0.192578,0.004044,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192578,0.004044,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192578,0.004044,-0.005249,0.249945,0,0);}
.mea_c00399{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m9f_c00399{transform:matrix(0.193202,0.004057,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193202,0.004057,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193202,0.004057,-0.005249,0.249945,0,0);}
.m94_c00399{transform:matrix(0.193427,0.004062,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193427,0.004062,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193427,0.004062,-0.005249,0.249945,0,0);}
.mca_c00399{transform:matrix(0.193677,0.004067,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193677,0.004067,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193677,0.004067,-0.005249,0.249945,0,0);}
.m64_c00399{transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);}
.m4c_c00399{transform:matrix(0.194417,0.004083,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194417,0.004083,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194417,0.004083,-0.005249,0.249945,0,0);}
.md2_c00399{transform:matrix(0.194557,0.004086,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194557,0.004086,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194557,0.004086,-0.005249,0.249945,0,0);}
.m35_c00399{transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194617,0.004087,-0.005249,0.249945,0,0);}
.m1e_c00399{transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);}
.mce_c00399{transform:matrix(0.194977,0.004095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194977,0.004095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194977,0.004095,-0.005249,0.249945,0,0);}
.mc6_c00399{transform:matrix(0.195312,0.004102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195312,0.004102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195312,0.004102,-0.005249,0.249945,0,0);}
.ma7_c00399{transform:matrix(0.195802,0.004112,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195802,0.004112,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195802,0.004112,-0.005249,0.249945,0,0);}
.m6f_c00399{transform:matrix(0.196262,0.004121,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196262,0.004121,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196262,0.004121,-0.005249,0.249945,0,0);}
.m73_c00399{transform:matrix(0.196302,0.004122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196302,0.004122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196302,0.004122,-0.005249,0.249945,0,0);}
.mc4_c00399{transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);}
.m86_c00399{transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196547,0.004127,-0.005249,0.249945,0,0);}
.mdc_c00399{transform:matrix(0.196552,0.004128,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196552,0.004128,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196552,0.004128,-0.005249,0.249945,0,0);}
.me5_c00399{transform:matrix(0.196557,0.004128,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196557,0.004128,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196557,0.004128,-0.005249,0.249945,0,0);}
.maf_c00399{transform:matrix(0.196942,0.004136,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196942,0.004136,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196942,0.004136,-0.005249,0.249945,0,0);}
.m87_c00399{transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197346,0.004144,-0.005249,0.249945,0,0);}
.m92_c00399{transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197896,0.004156,-0.005249,0.249945,0,0);}
.mda_c00399{transform:matrix(0.198116,0.004160,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198116,0.004160,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198116,0.004160,-0.005249,0.249945,0,0);}
.mb2_c00399{transform:matrix(0.198421,0.004167,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198421,0.004167,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198421,0.004167,-0.005249,0.249945,0,0);}
.m30_c00399{transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);}
.mbd_c00399{transform:matrix(0.198771,0.004174,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198771,0.004174,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198771,0.004174,-0.005249,0.249945,0,0);}
.m33_c00399{transform:matrix(0.199006,0.004179,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199006,0.004179,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199006,0.004179,-0.005249,0.249945,0,0);}
.m81_c00399{transform:matrix(0.199011,0.004179,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199011,0.004179,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199011,0.004179,-0.005249,0.249945,0,0);}
.m80_c00399{transform:matrix(0.199576,0.004191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199576,0.004191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199576,0.004191,-0.005249,0.249945,0,0);}
.ma2_c00399{transform:matrix(0.199646,0.004193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199646,0.004193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199646,0.004193,-0.005249,0.249945,0,0);}
.mcb_c00399{transform:matrix(0.199766,0.004195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199766,0.004195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199766,0.004195,-0.005249,0.249945,0,0);}
.mc0_c00399{transform:matrix(0.200131,0.004203,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200131,0.004203,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200131,0.004203,-0.005249,0.249945,0,0);}
.mc5_c00399{transform:matrix(0.200791,0.004217,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200791,0.004217,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200791,0.004217,-0.005249,0.249945,0,0);}
.m6c_c00399{transform:matrix(0.201106,0.004223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201106,0.004223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201106,0.004223,-0.005249,0.249945,0,0);}
.md1_c00399{transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);}
.mab_c00399{transform:matrix(0.201441,0.004230,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201441,0.004230,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201441,0.004230,-0.005249,0.249945,0,0);}
.m5c_c00399{transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201471,0.004231,-0.005249,0.249945,0,0);}
.ma1_c00399{transform:matrix(0.201531,0.004232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201531,0.004232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201531,0.004232,-0.005249,0.249945,0,0);}
.mc2_c00399{transform:matrix(0.201855,0.004239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201855,0.004239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201855,0.004239,-0.005249,0.249945,0,0);}
.m69_c00399{transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201970,0.004241,-0.005249,0.249945,0,0);}
.m5f_c00399{transform:matrix(0.202305,0.004248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202305,0.004248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202305,0.004248,-0.005249,0.249945,0,0);}
.m47_c00399{transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);}
.mb9_c00399{transform:matrix(0.203720,0.004278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203720,0.004278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203720,0.004278,-0.005249,0.249945,0,0);}
.m75_c00399{transform:matrix(0.204965,0.004304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204965,0.004304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204965,0.004304,-0.005249,0.249945,0,0);}
.m9c_c00399{transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205125,0.004308,-0.005249,0.249945,0,0);}
.mad_c00399{transform:matrix(0.205375,0.004313,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205375,0.004313,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205375,0.004313,-0.005249,0.249945,0,0);}
.m48_c00399{transform:matrix(0.205475,0.004315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205475,0.004315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205475,0.004315,-0.005249,0.249945,0,0);}
.m85_c00399{transform:matrix(0.205510,0.004316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205510,0.004316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205510,0.004316,-0.005249,0.249945,0,0);}
.md5_c00399{transform:matrix(0.205625,0.004318,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205625,0.004318,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205625,0.004318,-0.005249,0.249945,0,0);}
.m8_c00399{transform:matrix(0.205690,0.004319,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205690,0.004319,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205690,0.004319,-0.005249,0.249945,0,0);}
.m2c_c00399{transform:matrix(0.205960,0.004325,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205960,0.004325,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205960,0.004325,-0.005249,0.249945,0,0);}
.m8f_c00399{transform:matrix(0.206245,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206245,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206245,0.004331,-0.005249,0.249945,0,0);}
.m7a_c00399{transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);}
.m78_c00399{transform:matrix(0.206649,0.004340,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206649,0.004340,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206649,0.004340,-0.005249,0.249945,0,0);}
.md_c00399{transform:matrix(0.206789,0.004343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206789,0.004343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206789,0.004343,-0.005249,0.249945,0,0);}
.ma9_c00399{transform:matrix(0.206979,0.004347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206979,0.004347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206979,0.004347,-0.005249,0.249945,0,0);}
.mc1_c00399{transform:matrix(0.207539,0.004358,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207539,0.004358,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207539,0.004358,-0.005249,0.249945,0,0);}
.m88_c00399{transform:matrix(0.208139,0.004371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208139,0.004371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208139,0.004371,-0.005249,0.249945,0,0);}
.m56_c00399{transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);}
.m8e_c00399{transform:matrix(0.209004,0.004389,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209004,0.004389,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209004,0.004389,-0.005249,0.249945,0,0);}
.m44_c00399{transform:matrix(0.209329,0.004396,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209329,0.004396,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209329,0.004396,-0.005249,0.249945,0,0);}
.m23_c00399{transform:matrix(0.210109,0.004412,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210109,0.004412,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210109,0.004412,-0.005249,0.249945,0,0);}
.m91_c00399{transform:matrix(0.210254,0.004415,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210254,0.004415,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210254,0.004415,-0.005249,0.249945,0,0);}
.me7_c00399{transform:matrix(0.210384,0.004418,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210384,0.004418,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210384,0.004418,-0.005249,0.249945,0,0);}
.mcd_c00399{transform:matrix(0.211613,0.004444,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211613,0.004444,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211613,0.004444,-0.005249,0.249945,0,0);}
.m7e_c00399{transform:matrix(0.211753,0.004447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211753,0.004447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211753,0.004447,-0.005249,0.249945,0,0);}
.m4a_c00399{transform:matrix(0.211918,0.004450,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211918,0.004450,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211918,0.004450,-0.005249,0.249945,0,0);}
.m28_c00399{transform:matrix(0.211998,0.004452,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211998,0.004452,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211998,0.004452,-0.005249,0.249945,0,0);}
.m59_c00399{transform:matrix(0.212078,0.004454,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212078,0.004454,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212078,0.004454,-0.005249,0.249945,0,0);}
.m5a_c00399{transform:matrix(0.212158,0.004455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212158,0.004455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212158,0.004455,-0.005249,0.249945,0,0);}
.m5b_c00399{transform:matrix(0.213158,0.004476,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213158,0.004476,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213158,0.004476,-0.005249,0.249945,0,0);}
.m22_c00399{transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213298,0.004479,-0.005249,0.249945,0,0);}
.m46_c00399{transform:matrix(0.213613,0.004486,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213613,0.004486,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213613,0.004486,-0.005249,0.249945,0,0);}
.m4b_c00399{transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);}
.m60_c00399{transform:matrix(0.214523,0.004505,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214523,0.004505,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214523,0.004505,-0.005249,0.249945,0,0);}
.m77_c00399{transform:matrix(0.215388,0.004523,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215388,0.004523,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215388,0.004523,-0.005249,0.249945,0,0);}
.mbe_c00399{transform:matrix(0.215552,0.004527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215552,0.004527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215552,0.004527,-0.005249,0.249945,0,0);}
.mb5_c00399{transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);}
.m53_c00399{transform:matrix(0.217272,0.004563,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217272,0.004563,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217272,0.004563,-0.005249,0.249945,0,0);}
.m70_c00399{transform:matrix(0.217327,0.004564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217327,0.004564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217327,0.004564,-0.005249,0.249945,0,0);}
.m7c_c00399{transform:matrix(0.217702,0.004572,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217702,0.004572,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217702,0.004572,-0.005249,0.249945,0,0);}
.m8b_c00399{transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);}
.m27_c00399{transform:matrix(0.218862,0.004596,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218862,0.004596,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218862,0.004596,-0.005249,0.249945,0,0);}
.m55_c00399{transform:matrix(0.219152,0.004602,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219152,0.004602,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219152,0.004602,-0.005249,0.249945,0,0);}
.m21_c00399{transform:matrix(0.219667,0.004613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219667,0.004613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219667,0.004613,-0.005249,0.249945,0,0);}
.m72_c00399{transform:matrix(0.220301,0.004626,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220301,0.004626,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220301,0.004626,-0.005249,0.249945,0,0);}
.m66_c00399{transform:matrix(0.220671,0.004634,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220671,0.004634,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220671,0.004634,-0.005249,0.249945,0,0);}
.m74_c00399{transform:matrix(0.221316,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221316,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221316,0.004648,-0.005249,0.249945,0,0);}
.m98_c00399{transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);}
.m62_c00399{transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);}
.m50_c00399{transform:matrix(0.222136,0.004665,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222136,0.004665,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222136,0.004665,-0.005249,0.249945,0,0);}
.m5e_c00399{transform:matrix(0.222286,0.004668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222286,0.004668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222286,0.004668,-0.005249,0.249945,0,0);}
.m8d_c00399{transform:matrix(0.222601,0.004675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222601,0.004675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222601,0.004675,-0.005249,0.249945,0,0);}
.m79_c00399{transform:matrix(0.222791,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222791,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222791,0.004679,-0.005249,0.249945,0,0);}
.mdb_c00399{transform:matrix(0.222836,0.004680,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222836,0.004680,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222836,0.004680,-0.005249,0.249945,0,0);}
.mc8_c00399{transform:matrix(0.223556,0.004695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223556,0.004695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223556,0.004695,-0.005249,0.249945,0,0);}
.m43_c00399{transform:matrix(0.224381,0.004712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224381,0.004712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224381,0.004712,-0.005249,0.249945,0,0);}
.mb0_c00399{transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);}
.m1d_c00399{transform:matrix(0.225415,0.004734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225415,0.004734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225415,0.004734,-0.005249,0.249945,0,0);}
.m1f_c00399{transform:matrix(0.225710,0.004740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225710,0.004740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225710,0.004740,-0.005249,0.249945,0,0);}
.me8_c00399{transform:matrix(0.226245,0.004751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226245,0.004751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226245,0.004751,-0.005249,0.249945,0,0);}
.m2f_c00399{transform:matrix(0.226710,0.004761,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226710,0.004761,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226710,0.004761,-0.005249,0.249945,0,0);}
.maa_c00399{transform:matrix(0.228720,0.004803,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228720,0.004803,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228720,0.004803,-0.005249,0.249945,0,0);}
.m8c_c00399{transform:matrix(0.228785,0.004804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228785,0.004804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228785,0.004804,-0.005249,0.249945,0,0);}
.m51_c00399{transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);}
.m6a_c00399{transform:matrix(0.229524,0.004820,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229524,0.004820,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229524,0.004820,-0.005249,0.249945,0,0);}
.m2a_c00399{transform:matrix(0.230159,0.004833,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230159,0.004833,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230159,0.004833,-0.005249,0.249945,0,0);}
.md7_c00399{transform:matrix(0.232009,0.004872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232009,0.004872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232009,0.004872,-0.005249,0.249945,0,0);}
.m41_c00399{transform:matrix(0.232449,0.004881,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232449,0.004881,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232449,0.004881,-0.005249,0.249945,0,0);}
.mb3_c00399{transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);}
.m4e_c00399{transform:matrix(0.236048,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236048,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236048,0.004957,-0.005249,0.249945,0,0);}
.m20_c00399{transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);}
.m8a_c00399{transform:matrix(0.237293,0.004983,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237293,0.004983,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237293,0.004983,-0.005249,0.249945,0,0);}
.m68_c00399{transform:matrix(0.237438,0.004986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237438,0.004986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237438,0.004986,-0.005249,0.249945,0,0);}
.m89_c00399{transform:matrix(0.237453,0.004987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237453,0.004987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237453,0.004987,-0.005249,0.249945,0,0);}
.m57_c00399{transform:matrix(0.238577,0.005010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238577,0.005010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238577,0.005010,-0.005249,0.249945,0,0);}
.m61_c00399{transform:matrix(0.240422,0.005049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240422,0.005049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240422,0.005049,-0.005249,0.249945,0,0);}
.m9e_c00399{transform:matrix(0.248555,0.005220,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248555,0.005220,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248555,0.005220,-0.005249,0.249945,0,0);}
.mac_c00399{transform:matrix(0.252424,0.005301,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252424,0.005301,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252424,0.005301,-0.005249,0.249945,0,0);}
.ma5_c00399{transform:matrix(0.255204,0.005359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255204,0.005359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255204,0.005359,-0.005249,0.249945,0,0);}
.mb4_c00399{transform:matrix(0.256988,0.005397,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256988,0.005397,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256988,0.005397,-0.005249,0.249945,0,0);}
.m67_c00399{transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);}
.mc3_c00399{transform:matrix(0.259478,0.005449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259478,0.005449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259478,0.005449,-0.005249,0.249945,0,0);}
.me0_c00399{transform:matrix(0.274060,0.005755,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274060,0.005755,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274060,0.005755,-0.005249,0.249945,0,0);}
.m3a_c00399{transform:matrix(0.291836,0.006129,-0.005249,0.249945,0,0);-ms-transform:matrix(0.291836,0.006129,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.291836,0.006129,-0.005249,0.249945,0,0);}
.mbc_c00399{transform:matrix(0.301898,0.006340,-0.005249,0.249945,0,0);-ms-transform:matrix(0.301898,0.006340,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.301898,0.006340,-0.005249,0.249945,0,0);}
.me9_c00399{transform:matrix(0.304318,0.006391,-0.005249,0.249945,0,0);-ms-transform:matrix(0.304318,0.006391,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.304318,0.006391,-0.005249,0.249945,0,0);}
.md0_c00399{transform:matrix(0.332562,0.006984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.332562,0.006984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.332562,0.006984,-0.005249,0.249945,0,0);}
.ma6_c00399{transform:matrix(0.335966,0.007055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.335966,0.007055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.335966,0.007055,-0.005249,0.249945,0,0);}
.m1c_c00399{transform:matrix(0.338800,0.007115,-0.005249,0.249945,0,0);-ms-transform:matrix(0.338800,0.007115,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.338800,0.007115,-0.005249,0.249945,0,0);}
.m82_c00399{transform:matrix(0.349303,0.007335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.349303,0.007335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.349303,0.007335,-0.005249,0.249945,0,0);}
.m3f_c00399{transform:matrix(0.400397,0.008408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.400397,0.008408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.400397,0.008408,-0.005249,0.249945,0,0);}
.m40_c00399{transform:matrix(0.523115,0.010985,-0.005249,0.249945,0,0);-ms-transform:matrix(0.523115,0.010985,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.523115,0.010985,-0.005249,0.249945,0,0);}
.md9_c00399{transform:matrix(0.525674,0.011039,-0.005249,0.249945,0,0);-ms-transform:matrix(0.525674,0.011039,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.525674,0.011039,-0.005249,0.249945,0,0);}
.m7_c00399{transform:matrix(0.567010,0.011907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.567010,0.011907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.567010,0.011907,-0.005249,0.249945,0,0);}
.mc9_c00399{transform:matrix(0.784122,0.016467,-0.005249,0.249945,0,0);-ms-transform:matrix(0.784122,0.016467,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.784122,0.016467,-0.005249,0.249945,0,0);}
.m3b_c00399{transform:matrix(0.794085,0.016676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.794085,0.016676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.794085,0.016676,-0.005249,0.249945,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:0.000000px;}
.fc0_c00399{color:transparent;}
.fsc_c00399{font-size:28.350000px;}
.fs7_c00399{font-size:35.707871px;}
.fsa_c00399{font-size:58.812964px;}
.fs5_c00399{font-size:59.863195px;}
.fs8_c00399{font-size:60.913427px;}
.fs9_c00399{font-size:61.963658px;}
.fs6_c00399{font-size:63.013890px;}
.fs4_c00399{font-size:65.114353px;}
.fs3_c00399{font-size:66.164584px;}
.fs1_c00399{font-size:69.315279px;}
.fsb_c00399{font-size:70.365510px;}
.fs2_c00399{font-size:71.415742px;}
.fs0_c00399{font-size:88.219446px;}
.y0_c00399{bottom:0.000000px;}
.yf1_c00399{bottom:22.253346px;}
.yf0_c00399{bottom:22.515518px;}
.yef_c00399{bottom:23.261397px;}
.yee_c00399{bottom:23.659331px;}
.yed_c00399{bottom:23.938400px;}
.yec_c00399{bottom:24.291056px;}
.yeb_c00399{bottom:24.906167px;}
.yea_c00399{bottom:25.136520px;}
.ye9_c00399{bottom:25.538510px;}
.ye8_c00399{bottom:38.425653px;}
.ye7_c00399{bottom:39.821643px;}
.ye6_c00399{bottom:40.328540px;}
.ye5_c00399{bottom:42.076145px;}
.ye4_c00399{bottom:42.610391px;}
.ye3_c00399{bottom:43.968731px;}
.ye2_c00399{bottom:44.173935px;}
.ye1_c00399{bottom:54.177843px;}
.ye0_c00399{bottom:54.619470px;}
.ydf_c00399{bottom:55.394850px;}
.yde_c00399{bottom:55.560498px;}
.ydd_c00399{bottom:56.947973px;}
.ydc_c00399{bottom:58.109190px;}
.ydb_c00399{bottom:58.537158px;}
.yda_c00399{bottom:59.259836px;}
.yd9_c00399{bottom:60.384045px;}
.yd8_c00399{bottom:72.678809px;}
.yd7_c00399{bottom:73.083584px;}
.yd6_c00399{bottom:73.647167px;}
.yd5_c00399{bottom:74.804897px;}
.yd4_c00399{bottom:75.361223px;}
.yd3_c00399{bottom:76.072136px;}
.yd2_c00399{bottom:76.466787px;}
.yd1_c00399{bottom:77.394564px;}
.yd0_c00399{bottom:88.019601px;}
.ycf_c00399{bottom:90.020391px;}
.yce_c00399{bottom:90.566234px;}
.ycd_c00399{bottom:93.236472px;}
.ycc_c00399{bottom:93.772542px;}
.ycb_c00399{bottom:94.437939px;}
.yca_c00399{bottom:95.219847px;}
.yc9_c00399{bottom:105.132879px;}
.yc8_c00399{bottom:105.853982px;}
.yc7_c00399{bottom:106.499493px;}
.yc6_c00399{bottom:108.284102px;}
.yc5_c00399{bottom:109.277498px;}
.yc4_c00399{bottom:110.444259px;}
.yc3_c00399{bottom:110.962076px;}
.yc2_c00399{bottom:111.966926px;}
.yc1_c00399{bottom:121.043085px;}
.yc0_c00399{bottom:121.698854px;}
.ybf_c00399{bottom:122.135798px;}
.ybe_c00399{bottom:123.277629px;}
.ybd_c00399{bottom:123.897075px;}
.ybc_c00399{bottom:124.978976px;}
.ybb_c00399{bottom:125.851994px;}
.yba_c00399{bottom:126.223097px;}
.yb9_c00399{bottom:128.709354px;}
.yf2_c00399{bottom:130.680000px;}
.yb8_c00399{bottom:139.257857px;}
.yb7_c00399{bottom:139.705784px;}
.yb6_c00399{bottom:141.045804px;}
.yb5_c00399{bottom:141.450108px;}
.yb4_c00399{bottom:141.797237px;}
.yb3_c00399{bottom:143.556984px;}
.yb2_c00399{bottom:144.226601px;}
.yb1_c00399{bottom:145.994822px;}
.yb0_c00399{bottom:154.866899px;}
.yaf_c00399{bottom:156.456096px;}
.yae_c00399{bottom:158.501565px;}
.yad_c00399{bottom:159.199769px;}
.yac_c00399{bottom:161.005814px;}
.yab_c00399{bottom:161.807466px;}
.yaa_c00399{bottom:164.633637px;}
.ya9_c00399{bottom:170.848922px;}
.ya8_c00399{bottom:172.415669px;}
.ya7_c00399{bottom:172.974129px;}
.ya6_c00399{bottom:174.912066px;}
.ya5_c00399{bottom:175.971857px;}
.ya4_c00399{bottom:178.236650px;}
.ya3_c00399{bottom:179.889222px;}
.ya2_c00399{bottom:180.568019px;}
.ya1_c00399{bottom:190.424280px;}
.ya0_c00399{bottom:191.964966px;}
.y9f_c00399{bottom:193.204728px;}
.y9e_c00399{bottom:195.481601px;}
.y9d_c00399{bottom:196.162511px;}
.y9c_c00399{bottom:197.154212px;}
.y9b_c00399{bottom:198.065685px;}
.y9a_c00399{bottom:198.644397px;}
.y99_c00399{bottom:210.784149px;}
.y98_c00399{bottom:212.486411px;}
.y97_c00399{bottom:213.601475px;}
.y96_c00399{bottom:215.208288px;}
.y95_c00399{bottom:215.737686px;}
.y94_c00399{bottom:216.483990px;}
.y93_c00399{bottom:225.352535px;}
.y92_c00399{bottom:225.937521px;}
.y91_c00399{bottom:226.355328px;}
.y90_c00399{bottom:228.554715px;}
.y8f_c00399{bottom:229.051856px;}
.y8e_c00399{bottom:231.028011px;}
.y8d_c00399{bottom:232.376795px;}
.y8c_c00399{bottom:232.683191px;}
.y8b_c00399{bottom:241.990191px;}
.y8a_c00399{bottom:242.310720px;}
.y89_c00399{bottom:243.234969px;}
.y88_c00399{bottom:243.943577px;}
.y87_c00399{bottom:246.139760px;}
.y86_c00399{bottom:248.192280px;}
.y85_c00399{bottom:248.889824px;}
.y84_c00399{bottom:258.592740px;}
.y83_c00399{bottom:260.886728px;}
.y82_c00399{bottom:261.536301px;}
.y81_c00399{bottom:263.204588px;}
.y80_c00399{bottom:264.805415px;}
.y7f_c00399{bottom:265.898297px;}
.y7e_c00399{bottom:274.132007px;}
.y7d_c00399{bottom:275.686454px;}
.y7c_c00399{bottom:276.901548px;}
.y7b_c00399{bottom:278.343155px;}
.y7a_c00399{bottom:278.734961px;}
.y79_c00399{bottom:280.740510px;}
.y78_c00399{bottom:281.644530px;}
.y77_c00399{bottom:282.378638px;}
.y76_c00399{bottom:292.342281px;}
.y75_c00399{bottom:292.654953px;}
.y74_c00399{bottom:294.219290px;}
.y73_c00399{bottom:295.431458px;}
.y72_c00399{bottom:295.889012px;}
.y71_c00399{bottom:297.121725px;}
.y70_c00399{bottom:298.063080px;}
.y6f_c00399{bottom:298.845359px;}
.y6e_c00399{bottom:310.704186px;}
.y6d_c00399{bottom:312.530930px;}
.y6c_c00399{bottom:313.209152px;}
.y6b_c00399{bottom:314.729616px;}
.y6a_c00399{bottom:315.375882px;}
.y69_c00399{bottom:316.942076px;}
.y68_c00399{bottom:327.386573px;}
.y67_c00399{bottom:328.637387px;}
.y66_c00399{bottom:329.084148px;}
.y65_c00399{bottom:329.880495px;}
.y64_c00399{bottom:330.289272px;}
.y63_c00399{bottom:330.612926px;}
.y62_c00399{bottom:332.091162px;}
.y61_c00399{bottom:332.596580px;}
.y60_c00399{bottom:333.412653px;}
.y5f_c00399{bottom:344.083394px;}
.y5e_c00399{bottom:344.895923px;}
.y5d_c00399{bottom:345.406652px;}
.y5c_c00399{bottom:347.350346px;}
.y5b_c00399{bottom:348.907023px;}
.y5a_c00399{bottom:350.639993px;}
.y59_c00399{bottom:351.504924px;}
.y58_c00399{bottom:360.051834px;}
.y57_c00399{bottom:361.097727px;}
.y56_c00399{bottom:361.855943px;}
.y55_c00399{bottom:363.451673px;}
.y54_c00399{bottom:364.598217px;}
.y53_c00399{bottom:365.102262px;}
.y52_c00399{bottom:365.462553px;}
.y51_c00399{bottom:367.383008px;}
.y50_c00399{bottom:367.981416px;}
.y4f_c00399{bottom:376.428933px;}
.y4e_c00399{bottom:377.065913px;}
.y4d_c00399{bottom:379.688876px;}
.y4c_c00399{bottom:383.916956px;}
.y4b_c00399{bottom:385.815090px;}
.y4a_c00399{bottom:386.617995px;}
.y49_c00399{bottom:395.588556px;}
.y48_c00399{bottom:396.119820px;}
.y47_c00399{bottom:397.661856px;}
.y46_c00399{bottom:398.149928px;}
.y45_c00399{bottom:398.746626px;}
.y44_c00399{bottom:400.511196px;}
.y43_c00399{bottom:402.170309px;}
.y42_c00399{bottom:403.362363px;}
.y41_c00399{bottom:412.838828px;}
.y40_c00399{bottom:413.576586px;}
.y3f_c00399{bottom:414.573202px;}
.y3e_c00399{bottom:415.288726px;}
.y3d_c00399{bottom:415.375779px;}
.y3c_c00399{bottom:418.516246px;}
.y3b_c00399{bottom:419.560903px;}
.y3a_c00399{bottom:428.116266px;}
.y39_c00399{bottom:428.846931px;}
.y38_c00399{bottom:431.101293px;}
.y37_c00399{bottom:431.728439px;}
.y36_c00399{bottom:432.700917px;}
.y35_c00399{bottom:433.399592px;}
.y34_c00399{bottom:436.572641px;}
.y33_c00399{bottom:437.661014px;}
.y32_c00399{bottom:444.992028px;}
.y31_c00399{bottom:445.452755px;}
.y30_c00399{bottom:447.970919px;}
.y2f_c00399{bottom:448.586960px;}
.y2e_c00399{bottom:450.682160px;}
.y2d_c00399{bottom:452.105535px;}
.y2c_c00399{bottom:454.133364px;}
.y2b_c00399{bottom:462.306468px;}
.y2a_c00399{bottom:462.781293px;}
.y29_c00399{bottom:464.141570px;}
.y28_c00399{bottom:466.401405px;}
.y27_c00399{bottom:466.952627px;}
.y26_c00399{bottom:467.839149px;}
.y25_c00399{bottom:470.871942px;}
.y24_c00399{bottom:480.681420px;}
.y23_c00399{bottom:481.323644px;}
.y22_c00399{bottom:482.937447px;}
.y21_c00399{bottom:483.900704px;}
.y20_c00399{bottom:485.662863px;}
.y1f_c00399{bottom:487.312221px;}
.y1e_c00399{bottom:487.886927px;}
.y1d_c00399{bottom:496.218078px;}
.y1c_c00399{bottom:496.932866px;}
.y1b_c00399{bottom:498.703707px;}
.y1a_c00399{bottom:499.391551px;}
.y19_c00399{bottom:500.121348px;}
.y18_c00399{bottom:500.836514px;}
.y17_c00399{bottom:502.605560px;}
.y16_c00399{bottom:504.635043px;}
.y15_c00399{bottom:512.900481px;}
.y14_c00399{bottom:513.714279px;}
.y13_c00399{bottom:515.160832px;}
.y12_c00399{bottom:515.741453px;}
.y11_c00399{bottom:516.267713px;}
.y10_c00399{bottom:517.725122px;}
.yf_c00399{bottom:518.150840px;}
.ye_c00399{bottom:519.751256px;}
.yd_c00399{bottom:530.491699px;}
.yc_c00399{bottom:532.060323px;}
.yb_c00399{bottom:534.677056px;}
.ya_c00399{bottom:535.542618px;}
.y9_c00399{bottom:536.197518px;}
.y8_c00399{bottom:537.854508px;}
.y7_c00399{bottom:549.431829px;}
.y6_c00399{bottom:550.672264px;}
.y5_c00399{bottom:552.727677px;}
.y4_c00399{bottom:555.126741px;}
.y3_c00399{bottom:560.417776px;}
.y2_c00399{bottom:561.570929px;}
.y1_c00399{bottom:563.497500px;}
.he_c00399{height:28.350000px;}
.h9_c00399{height:35.707871px;}
.hc_c00399{height:58.812964px;}
.h7_c00399{height:59.863195px;}
.ha_c00399{height:60.913427px;}
.hb_c00399{height:61.963658px;}
.h8_c00399{height:63.013890px;}
.h6_c00399{height:65.114353px;}
.h5_c00399{height:66.164584px;}
.h3_c00399{height:69.315279px;}
.hd_c00399{height:70.365510px;}
.h4_c00399{height:71.415742px;}
.h2_c00399{height:88.219446px;}
.h0_c00399{height:613.170000px;}
.h1_c00399{height:613.500000px;}
.w0_c00399{width:359.100000px;}
.w1_c00399{width:359.250000px;}
.x0_c00399{left:0.000000px;}
.x79_c00399{left:41.553975px;}
.x76_c00399{left:42.723720px;}
.x70_c00399{left:43.760147px;}
.x69_c00399{left:45.174822px;}
.x65_c00399{left:46.287716px;}
.x5c_c00399{left:47.549014px;}
.x52_c00399{left:48.619069px;}
.x4a_c00399{left:49.640613px;}
.x3b_c00399{left:50.956013px;}
.x2a_c00399{left:52.479615px;}
.x1a_c00399{left:53.681424px;}
.x4_c00399{left:55.269038px;}
.x61_c00399{left:56.611368px;}
.x6a_c00399{left:65.135873px;}
.x35_c00399{left:67.106609px;}
.x5f_c00399{left:71.474399px;}
.x1b_c00399{left:73.473585px;}
.x45_c00399{left:81.166624px;}
.x2b_c00399{left:83.583480px;}
.x73_c00399{left:85.014303px;}
.x7a_c00399{left:88.370514px;}
.x5d_c00399{left:89.586605px;}
.x31_c00399{left:93.822976px;}
.x77_c00399{left:96.713879px;}
.x62_c00399{left:100.115733px;}
.x57_c00399{left:103.041525px;}
.x36_c00399{left:104.362509px;}
.x74_c00399{left:106.599449px;}
.x25_c00399{left:109.116282px;}
.x8_c00399{left:114.360747px;}
.xd_c00399{left:118.992476px;}
.x53_c00399{left:120.478065px;}
.x3c_c00399{left:125.981888px;}
.x66_c00399{left:128.669024px;}
.x1c_c00399{left:130.362041px;}
.x7b_c00399{left:132.300180px;}
.x4f_c00399{left:133.882577px;}
.xe_c00399{left:136.049058px;}
.x9_c00399{left:137.757314px;}
.x46_c00399{left:143.037021px;}
.x5_c00399{left:144.141855px;}
.x6e_c00399{left:146.086916px;}
.x26_c00399{left:148.669340px;}
.x5e_c00399{left:151.167147px;}
.x1f_c00399{left:154.532562px;}
.x37_c00399{left:156.213039px;}
.x40_c00399{left:157.324269px;}
.x67_c00399{left:160.543668px;}
.x78_c00399{left:161.793860px;}
.x63_c00399{left:163.847846px;}
.x14_c00399{left:166.355913px;}
.xa_c00399{left:168.684278px;}
.x58_c00399{left:169.888394px;}
.x54_c00399{left:171.818321px;}
.x2c_c00399{left:174.225831px;}
.x41_c00399{left:175.966906px;}
.x4b_c00399{left:179.793423px;}
.x71_c00399{left:181.951259px;}
.x59_c00399{left:182.971936px;}
.x20_c00399{left:184.099487px;}
.x15_c00399{left:187.405680px;}
.x1_c00399{left:190.825500px;}
.x50_c00399{left:192.350934px;}
.xf_c00399{left:194.373176px;}
.x4c_c00399{left:196.829352px;}
.x47_c00399{left:198.656362px;}
.x21_c00399{left:202.487522px;}
.x6d_c00399{left:204.546539px;}
.x27_c00399{left:206.851007px;}
.x16_c00399{left:208.866321px;}
.x38_c00399{left:211.370313px;}
.x10_c00399{left:215.431412px;}
.x42_c00399{left:218.416052px;}
.x6_c00399{left:220.294779px;}
.x2d_c00399{left:222.004814px;}
.x1d_c00399{left:224.342259px;}
.x17_c00399{left:229.115308px;}
.x5a_c00399{left:231.039364px;}
.x68_c00399{left:232.703240px;}
.x6f_c00399{left:233.837372px;}
.x11_c00399{left:238.649459px;}
.x2e_c00399{left:239.935053px;}
.x55_c00399{left:241.395942px;}
.x3d_c00399{left:243.424907px;}
.x39_c00399{left:245.232470px;}
.x4d_c00399{left:248.664608px;}
.x32_c00399{left:251.573746px;}
.xb_c00399{left:262.134044px;}
.x64_c00399{left:264.271241px;}
.x7_c00399{left:266.214483px;}
.x48_c00399{left:268.060157px;}
.x5b_c00399{left:271.536210px;}
.x60_c00399{left:274.300347px;}
.x22_c00399{left:277.798784px;}
.x1e_c00399{left:279.966404px;}
.x18_c00399{left:281.212602px;}
.x2_c00399{left:282.567000px;}
.x6b_c00399{left:284.959397px;}
.x49_c00399{left:286.306479px;}
.x51_c00399{left:288.696323px;}
.x33_c00399{left:291.456907px;}
.x7c_c00399{left:292.847358px;}
.x28_c00399{left:293.928602px;}
.x12_c00399{left:296.528108px;}
.x75_c00399{left:297.814884px;}
.x4e_c00399{left:300.795332px;}
.x19_c00399{left:302.244369px;}
.x2f_c00399{left:304.338121px;}
.x43_c00399{left:305.640589px;}
.x29_c00399{left:306.721070px;}
.x3a_c00399{left:310.017507px;}
.x7d_c00399{left:314.692984px;}
.x3e_c00399{left:316.304974px;}
.xc_c00399{left:318.179322px;}
.x56_c00399{left:319.629528px;}
.x34_c00399{left:320.942919px;}
.x23_c00399{left:323.136716px;}
.x30_c00399{left:325.196979px;}
.x72_c00399{left:327.713394px;}
.x13_c00399{left:329.063367px;}
.x6c_c00399{left:331.053828px;}
.x3f_c00399{left:333.988899px;}
.x3_c00399{left:337.479000px;}
.x24_c00399{left:338.958723px;}
.x44_c00399{left:344.368707px;}
.x7e_c00399{left:351.270000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fsc_c00399{font-size:25.200000pt;}
.fs7_c00399{font-size:31.740330pt;}
.fsa_c00399{font-size:52.278190pt;}
.fs5_c00399{font-size:53.211729pt;}
.fs8_c00399{font-size:54.145268pt;}
.fs9_c00399{font-size:55.078808pt;}
.fs6_c00399{font-size:56.012347pt;}
.fs4_c00399{font-size:57.879425pt;}
.fs3_c00399{font-size:58.812964pt;}
.fs1_c00399{font-size:61.613581pt;}
.fsb_c00399{font-size:62.547120pt;}
.fs2_c00399{font-size:63.480660pt;}
.fs0_c00399{font-size:78.417285pt;}
.y0_c00399{bottom:0.000000pt;}
.yf1_c00399{bottom:19.780752pt;}
.yf0_c00399{bottom:20.013793pt;}
.yef_c00399{bottom:20.676797pt;}
.yee_c00399{bottom:21.030516pt;}
.yed_c00399{bottom:21.278577pt;}
.yec_c00399{bottom:21.592049pt;}
.yeb_c00399{bottom:22.138815pt;}
.yea_c00399{bottom:22.343573pt;}
.ye9_c00399{bottom:22.700897pt;}
.ye8_c00399{bottom:34.156136pt;}
.ye7_c00399{bottom:35.397016pt;}
.ye6_c00399{bottom:35.847591pt;}
.ye5_c00399{bottom:37.401017pt;}
.ye4_c00399{bottom:37.875903pt;}
.ye3_c00399{bottom:39.083316pt;}
.ye2_c00399{bottom:39.265720pt;}
.ye1_c00399{bottom:48.158083pt;}
.ye0_c00399{bottom:48.550640pt;}
.ydf_c00399{bottom:49.239867pt;}
.yde_c00399{bottom:49.387109pt;}
.ydd_c00399{bottom:50.620420pt;}
.ydc_c00399{bottom:51.652613pt;}
.ydb_c00399{bottom:52.033029pt;}
.yda_c00399{bottom:52.675409pt;}
.yd9_c00399{bottom:53.674707pt;}
.yd8_c00399{bottom:64.603385pt;}
.yd7_c00399{bottom:64.963185pt;}
.yd6_c00399{bottom:65.464148pt;}
.yd5_c00399{bottom:66.493241pt;}
.yd4_c00399{bottom:66.987753pt;}
.yd3_c00399{bottom:67.619676pt;}
.yd2_c00399{bottom:67.970477pt;}
.yd1_c00399{bottom:68.795168pt;}
.yd0_c00399{bottom:78.239645pt;}
.ycf_c00399{bottom:80.018125pt;}
.yce_c00399{bottom:80.503319pt;}
.ycd_c00399{bottom:82.876864pt;}
.ycc_c00399{bottom:83.353371pt;}
.ycb_c00399{bottom:83.944835pt;}
.yca_c00399{bottom:84.639864pt;}
.yc9_c00399{bottom:93.451448pt;}
.yc8_c00399{bottom:94.092428pt;}
.yc7_c00399{bottom:94.666216pt;}
.yc6_c00399{bottom:96.252535pt;}
.yc5_c00399{bottom:97.135553pt;}
.yc4_c00399{bottom:98.172675pt;}
.yc3_c00399{bottom:98.632956pt;}
.yc2_c00399{bottom:99.526156pt;}
.yc1_c00399{bottom:107.593853pt;}
.yc0_c00399{bottom:108.176759pt;}
.ybf_c00399{bottom:108.565153pt;}
.ybe_c00399{bottom:109.580115pt;}
.ybd_c00399{bottom:110.130733pt;}
.ybc_c00399{bottom:111.092423pt;}
.ybb_c00399{bottom:111.868439pt;}
.yba_c00399{bottom:112.198308pt;}
.yb9_c00399{bottom:114.408315pt;}
.yf2_c00399{bottom:116.160000pt;}
.yb8_c00399{bottom:123.784761pt;}
.yb7_c00399{bottom:124.182919pt;}
.yb6_c00399{bottom:125.374048pt;}
.yb5_c00399{bottom:125.733429pt;}
.yb4_c00399{bottom:126.041988pt;}
.yb3_c00399{bottom:127.606208pt;}
.yb2_c00399{bottom:128.201423pt;}
.yb1_c00399{bottom:129.773175pt;}
.yb0_c00399{bottom:137.659465pt;}
.yaf_c00399{bottom:139.072085pt;}
.yae_c00399{bottom:140.890280pt;}
.yad_c00399{bottom:141.510905pt;}
.yac_c00399{bottom:143.116279pt;}
.yab_c00399{bottom:143.828859pt;}
.yaa_c00399{bottom:146.341011pt;}
.ya9_c00399{bottom:151.865708pt;}
.ya8_c00399{bottom:153.258372pt;}
.ya7_c00399{bottom:153.754781pt;}
.ya6_c00399{bottom:155.477392pt;}
.ya5_c00399{bottom:156.419428pt;}
.ya4_c00399{bottom:158.432577pt;}
.ya3_c00399{bottom:159.901531pt;}
.ya2_c00399{bottom:160.504905pt;}
.ya1_c00399{bottom:169.266027pt;}
.ya0_c00399{bottom:170.635525pt;}
.y9f_c00399{bottom:171.737536pt;}
.y9e_c00399{bottom:173.761423pt;}
.y9d_c00399{bottom:174.366676pt;}
.y9c_c00399{bottom:175.248188pt;}
.y9b_c00399{bottom:176.058387pt;}
.y9a_c00399{bottom:176.572797pt;}
.y99_c00399{bottom:187.363688pt;}
.y98_c00399{bottom:188.876809pt;}
.y97_c00399{bottom:189.867977pt;}
.y96_c00399{bottom:191.296256pt;}
.y95_c00399{bottom:191.766832pt;}
.y94_c00399{bottom:192.430213pt;}
.y93_c00399{bottom:200.313364pt;}
.y92_c00399{bottom:200.833352pt;}
.y91_c00399{bottom:201.204736pt;}
.y90_c00399{bottom:203.159747pt;}
.y8f_c00399{bottom:203.601649pt;}
.y8e_c00399{bottom:205.358232pt;}
.y8d_c00399{bottom:206.557151pt;}
.y8c_c00399{bottom:206.829503pt;}
.y8b_c00399{bottom:215.102392pt;}
.y8a_c00399{bottom:215.387307pt;}
.y89_c00399{bottom:216.208861pt;}
.y88_c00399{bottom:216.838735pt;}
.y87_c00399{bottom:218.790897pt;}
.y86_c00399{bottom:220.615360pt;}
.y85_c00399{bottom:221.235399pt;}
.y84_c00399{bottom:229.860213pt;}
.y83_c00399{bottom:231.899313pt;}
.y82_c00399{bottom:232.476712pt;}
.y81_c00399{bottom:233.959633pt;}
.y80_c00399{bottom:235.382591pt;}
.y7f_c00399{bottom:236.354041pt;}
.y7e_c00399{bottom:243.672895pt;}
.y7d_c00399{bottom:245.054625pt;}
.y7c_c00399{bottom:246.134709pt;}
.y7b_c00399{bottom:247.416137pt;}
.y7a_c00399{bottom:247.764409pt;}
.y79_c00399{bottom:249.547120pt;}
.y78_c00399{bottom:250.350693pt;}
.y77_c00399{bottom:251.003233pt;}
.y76_c00399{bottom:259.859805pt;}
.y75_c00399{bottom:260.137736pt;}
.y74_c00399{bottom:261.528257pt;}
.y73_c00399{bottom:262.605740pt;}
.y72_c00399{bottom:263.012455pt;}
.y71_c00399{bottom:264.108200pt;}
.y70_c00399{bottom:264.944960pt;}
.y6f_c00399{bottom:265.640319pt;}
.y6e_c00399{bottom:276.181499pt;}
.y6d_c00399{bottom:277.805271pt;}
.y6c_c00399{bottom:278.408135pt;}
.y6b_c00399{bottom:279.759659pt;}
.y6a_c00399{bottom:280.334117pt;}
.y69_c00399{bottom:281.726289pt;}
.y68_c00399{bottom:291.010287pt;}
.y67_c00399{bottom:292.122121pt;}
.y66_c00399{bottom:292.519243pt;}
.y65_c00399{bottom:293.227107pt;}
.y64_c00399{bottom:293.590464pt;}
.y63_c00399{bottom:293.878156pt;}
.y62_c00399{bottom:295.192144pt;}
.y61_c00399{bottom:295.641404pt;}
.y60_c00399{bottom:296.366803pt;}
.y5f_c00399{bottom:305.851905pt;}
.y5e_c00399{bottom:306.574153pt;}
.y5d_c00399{bottom:307.028135pt;}
.y5c_c00399{bottom:308.755863pt;}
.y5b_c00399{bottom:310.139576pt;}
.y5a_c00399{bottom:311.679993pt;}
.y59_c00399{bottom:312.448821pt;}
.y58_c00399{bottom:320.046075pt;}
.y57_c00399{bottom:320.975757pt;}
.y56_c00399{bottom:321.649727pt;}
.y55_c00399{bottom:323.068153pt;}
.y54_c00399{bottom:324.087304pt;}
.y53_c00399{bottom:324.535344pt;}
.y52_c00399{bottom:324.855603pt;}
.y51_c00399{bottom:326.562673pt;}
.y50_c00399{bottom:327.094592pt;}
.y4f_c00399{bottom:334.603496pt;}
.y4e_c00399{bottom:335.169700pt;}
.y4d_c00399{bottom:337.501223pt;}
.y4c_c00399{bottom:341.259516pt;}
.y4b_c00399{bottom:342.946747pt;}
.y4a_c00399{bottom:343.660440pt;}
.y49_c00399{bottom:351.634272pt;}
.y48_c00399{bottom:352.106507pt;}
.y47_c00399{bottom:353.477205pt;}
.y46_c00399{bottom:353.911047pt;}
.y45_c00399{bottom:354.441445pt;}
.y44_c00399{bottom:356.009952pt;}
.y43_c00399{bottom:357.484719pt;}
.y42_c00399{bottom:358.544323pt;}
.y41_c00399{bottom:366.967847pt;}
.y40_c00399{bottom:367.623632pt;}
.y3f_c00399{bottom:368.509513pt;}
.y3e_c00399{bottom:369.145535pt;}
.y3d_c00399{bottom:369.222915pt;}
.y3c_c00399{bottom:372.014441pt;}
.y3b_c00399{bottom:372.943025pt;}
.y3a_c00399{bottom:380.547792pt;}
.y39_c00399{bottom:381.197272pt;}
.y38_c00399{bottom:383.201149pt;}
.y37_c00399{bottom:383.758612pt;}
.y36_c00399{bottom:384.623037pt;}
.y35_c00399{bottom:385.244081pt;}
.y34_c00399{bottom:388.064569pt;}
.y33_c00399{bottom:389.032012pt;}
.y32_c00399{bottom:395.548469pt;}
.y31_c00399{bottom:395.958004pt;}
.y30_c00399{bottom:398.196372pt;}
.y2f_c00399{bottom:398.743964pt;}
.y2e_c00399{bottom:400.606364pt;}
.y2d_c00399{bottom:401.871587pt;}
.y2c_c00399{bottom:403.674101pt;}
.y2b_c00399{bottom:410.939083pt;}
.y2a_c00399{bottom:411.361149pt;}
.y29_c00399{bottom:412.570284pt;}
.y28_c00399{bottom:414.579027pt;}
.y27_c00399{bottom:415.069001pt;}
.y26_c00399{bottom:415.857021pt;}
.y25_c00399{bottom:418.552837pt;}
.y24_c00399{bottom:427.272373pt;}
.y23_c00399{bottom:427.843239pt;}
.y22_c00399{bottom:429.277731pt;}
.y21_c00399{bottom:430.133959pt;}
.y20_c00399{bottom:431.700323pt;}
.y1f_c00399{bottom:433.166419pt;}
.y1e_c00399{bottom:433.677268pt;}
.y1d_c00399{bottom:441.082736pt;}
.y1c_c00399{bottom:441.718103pt;}
.y1b_c00399{bottom:443.292184pt;}
.y1a_c00399{bottom:443.903601pt;}
.y19_c00399{bottom:444.552309pt;}
.y18_c00399{bottom:445.188012pt;}
.y17_c00399{bottom:446.760497pt;}
.y16_c00399{bottom:448.564483pt;}
.y15_c00399{bottom:455.911539pt;}
.y14_c00399{bottom:456.634915pt;}
.y13_c00399{bottom:457.920740pt;}
.y12_c00399{bottom:458.436847pt;}
.y11_c00399{bottom:458.904633pt;}
.y10_c00399{bottom:460.200108pt;}
.yf_c00399{bottom:460.578524pt;}
.ye_c00399{bottom:462.001116pt;}
.yd_c00399{bottom:471.548177pt;}
.yc_c00399{bottom:472.942509pt;}
.yb_c00399{bottom:475.268495pt;}
.ya_c00399{bottom:476.037883pt;}
.y9_c00399{bottom:476.620016pt;}
.y8_c00399{bottom:478.092896pt;}
.y7_c00399{bottom:488.383848pt;}
.y6_c00399{bottom:489.486457pt;}
.y5_c00399{bottom:491.313491pt;}
.y4_c00399{bottom:493.445992pt;}
.y3_c00399{bottom:498.149135pt;}
.y2_c00399{bottom:499.174159pt;}
.y1_c00399{bottom:500.886667pt;}
.he_c00399{height:25.200000pt;}
.h9_c00399{height:31.740330pt;}
.hc_c00399{height:52.278190pt;}
.h7_c00399{height:53.211729pt;}
.ha_c00399{height:54.145268pt;}
.hb_c00399{height:55.078808pt;}
.h8_c00399{height:56.012347pt;}
.h6_c00399{height:57.879425pt;}
.h5_c00399{height:58.812964pt;}
.h3_c00399{height:61.613581pt;}
.hd_c00399{height:62.547120pt;}
.h4_c00399{height:63.480660pt;}
.h2_c00399{height:78.417285pt;}
.h0_c00399{height:545.040000pt;}
.h1_c00399{height:545.333333pt;}
.w0_c00399{width:319.200000pt;}
.w1_c00399{width:319.333333pt;}
.x0_c00399{left:0.000000pt;}
.x79_c00399{left:36.936867pt;}
.x76_c00399{left:37.976640pt;}
.x70_c00399{left:38.897908pt;}
.x69_c00399{left:40.155397pt;}
.x65_c00399{left:41.144636pt;}
.x5c_c00399{left:42.265791pt;}
.x52_c00399{left:43.216951pt;}
.x4a_c00399{left:44.124989pt;}
.x3b_c00399{left:45.294233pt;}
.x2a_c00399{left:46.648547pt;}
.x1a_c00399{left:47.716821pt;}
.x4_c00399{left:49.128033pt;}
.x61_c00399{left:50.321216pt;}
.x6a_c00399{left:57.898553pt;}
.x35_c00399{left:59.650319pt;}
.x5f_c00399{left:63.532799pt;}
.x1b_c00399{left:65.309853pt;}
.x45_c00399{left:72.148111pt;}
.x2b_c00399{left:74.296427pt;}
.x73_c00399{left:75.568269pt;}
.x7a_c00399{left:78.551568pt;}
.x5d_c00399{left:79.632537pt;}
.x31_c00399{left:83.398201pt;}
.x77_c00399{left:85.967892pt;}
.x62_c00399{left:88.991763pt;}
.x57_c00399{left:91.592467pt;}
.x36_c00399{left:92.766675pt;}
.x74_c00399{left:94.755065pt;}
.x25_c00399{left:96.992251pt;}
.x8_c00399{left:101.653997pt;}
.xd_c00399{left:105.771089pt;}
.x53_c00399{left:107.091613pt;}
.x3c_c00399{left:111.983900pt;}
.x66_c00399{left:114.372465pt;}
.x1c_c00399{left:115.877369pt;}
.x7b_c00399{left:117.600160pt;}
.x4f_c00399{left:119.006735pt;}
.xe_c00399{left:120.932496pt;}
.x9_c00399{left:122.450945pt;}
.x46_c00399{left:127.144019pt;}
.x5_c00399{left:128.126093pt;}
.x6e_c00399{left:129.855036pt;}
.x26_c00399{left:132.150524pt;}
.x5e_c00399{left:134.370797pt;}
.x1f_c00399{left:137.362277pt;}
.x37_c00399{left:138.856035pt;}
.x40_c00399{left:139.843795pt;}
.x67_c00399{left:142.705483pt;}
.x78_c00399{left:143.816764pt;}
.x63_c00399{left:145.642529pt;}
.x14_c00399{left:147.871923pt;}
.xa_c00399{left:149.941580pt;}
.x58_c00399{left:151.011905pt;}
.x54_c00399{left:152.727396pt;}
.x2c_c00399{left:154.867405pt;}
.x41_c00399{left:156.415028pt;}
.x4b_c00399{left:159.816376pt;}
.x71_c00399{left:161.734452pt;}
.x59_c00399{left:162.641721pt;}
.x20_c00399{left:163.643988pt;}
.x15_c00399{left:166.582827pt;}
.x1_c00399{left:169.622667pt;}
.x50_c00399{left:170.978608pt;}
.xf_c00399{left:172.776156pt;}
.x4c_c00399{left:174.959424pt;}
.x47_c00399{left:176.583433pt;}
.x21_c00399{left:179.988908pt;}
.x6d_c00399{left:181.819145pt;}
.x27_c00399{left:183.867561pt;}
.x16_c00399{left:185.658952pt;}
.x38_c00399{left:187.884723pt;}
.x10_c00399{left:191.494588pt;}
.x42_c00399{left:194.147601pt;}
.x6_c00399{left:195.817581pt;}
.x2d_c00399{left:197.337612pt;}
.x1d_c00399{left:199.415341pt;}
.x17_c00399{left:203.658052pt;}
.x5a_c00399{left:205.368324pt;}
.x68_c00399{left:206.847324pt;}
.x6f_c00399{left:207.855441pt;}
.x11_c00399{left:212.132852pt;}
.x2e_c00399{left:213.275603pt;}
.x55_c00399{left:214.574171pt;}
.x3d_c00399{left:216.377695pt;}
.x39_c00399{left:217.984417pt;}
.x4d_c00399{left:221.035207pt;}
.x32_c00399{left:223.621108pt;}
.xb_c00399{left:233.008039pt;}
.x64_c00399{left:234.907769pt;}
.x7_c00399{left:236.635096pt;}
.x48_c00399{left:238.275695pt;}
.x5b_c00399{left:241.365520pt;}
.x60_c00399{left:243.822531pt;}
.x22_c00399{left:246.932252pt;}
.x1e_c00399{left:248.859025pt;}
.x18_c00399{left:249.966757pt;}
.x2_c00399{left:251.170667pt;}
.x6b_c00399{left:253.297241pt;}
.x49_c00399{left:254.494648pt;}
.x51_c00399{left:256.618953pt;}
.x33_c00399{left:259.072807pt;}
.x7c_c00399{left:260.308763pt;}
.x28_c00399{left:261.269868pt;}
.x12_c00399{left:263.580540pt;}
.x75_c00399{left:264.724341pt;}
.x4e_c00399{left:267.373628pt;}
.x19_c00399{left:268.661661pt;}
.x2f_c00399{left:270.522775pt;}
.x43_c00399{left:271.680524pt;}
.x29_c00399{left:272.640951pt;}
.x3a_c00399{left:275.571117pt;}
.x7d_c00399{left:279.727097pt;}
.x3e_c00399{left:281.159977pt;}
.xc_c00399{left:282.826064pt;}
.x56_c00399{left:284.115136pt;}
.x34_c00399{left:285.282595pt;}
.x23_c00399{left:287.232636pt;}
.x30_c00399{left:289.063981pt;}
.x72_c00399{left:291.300795pt;}
.x13_c00399{left:292.500771pt;}
.x6c_c00399{left:294.270069pt;}
.x3f_c00399{left:296.879021pt;}
.x3_c00399{left:299.981333pt;}
.x24_c00399{left:301.296643pt;}
.x44_c00399{left:306.105517pt;}
.x7e_c00399{left:312.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00400 {
    display:none;
  }
  .loading-indicator_c00400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00400 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00400 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00400" -> "#page-container .classname_c00400")
 */
.pf_c00400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00400 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00400 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00400 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00400 {overflow:visible;}
  }
}
.c_c00400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00400 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00400:after { /* webkit #35443 */
  content: '';
}
.t_c00400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00400 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00400 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00400 { /* info for Javascript */
  display:none;
}
.l_c00400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00400:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00400 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00400.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00400{transform:matrix(0.031357,0.000721,-0.005748,0.249934,0,0);-ms-transform:matrix(0.031357,0.000721,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.031357,0.000721,-0.005748,0.249934,0,0);}
.m94_c00400{transform:matrix(0.147230,0.003828,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147230,0.003828,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147230,0.003828,-0.006498,0.249916,0,0);}
.m7_c00400{transform:matrix(0.153070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153070,0.000000,0.000000,0.250000,0,0);}
.me1_c00400{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m8e_c00400{transform:matrix(0.158137,0.004112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.158137,0.004112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.158137,0.004112,-0.006498,0.249916,0,0);}
.maa_c00400{transform:matrix(0.159326,0.003027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159326,0.003027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159326,0.003027,-0.004749,0.249955,0,0);}
.ma0_c00400{transform:matrix(0.159426,0.003029,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159426,0.003029,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159426,0.003029,-0.004749,0.249955,0,0);}
.m41_c00400{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.ma3_c00400{transform:matrix(0.161606,0.003071,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161606,0.003071,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161606,0.003071,-0.004749,0.249955,0,0);}
.m80_c00400{transform:matrix(0.162266,0.003570,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162266,0.003570,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162266,0.003570,-0.005499,0.249940,0,0);}
.m65_c00400{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.ma6_c00400{transform:matrix(0.165345,0.003142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165345,0.003142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165345,0.003142,-0.004749,0.249955,0,0);}
.m23_c00400{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.m44_c00400{transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167015,0.000000,0.000000,0.250000,0,0);}
.m53_c00400{transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m9f_c00400{transform:matrix(0.169099,0.003213,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169099,0.003213,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169099,0.003213,-0.004749,0.249955,0,0);}
.m92_c00400{transform:matrix(0.171577,0.004461,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171577,0.004461,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171577,0.004461,-0.006498,0.249916,0,0);}
.m32_c00400{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.mc8_c00400{transform:matrix(0.174836,0.005420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174836,0.005420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174836,0.005420,-0.007746,0.249880,0,0);}
.m3b_c00400{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m15_c00400{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m3c_c00400{transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);}
.mb0_c00400{transform:matrix(0.177406,0.003193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177406,0.003193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177406,0.003193,-0.004499,0.249960,0,0);}
.mbe_c00400{transform:matrix(0.178106,0.003206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178106,0.003206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178106,0.003206,-0.004499,0.249960,0,0);}
.m8_c00400{transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178510,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178570,0.000000,0.000000,0.250000,0,0);}
.mb1_c00400{transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179066,0.003223,-0.004499,0.249960,0,0);}
.m25_c00400{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m45_c00400{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.md2_c00400{transform:matrix(0.179571,0.003232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179571,0.003232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179571,0.003232,-0.004499,0.249960,0,0);}
.m22_c00400{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m73_c00400{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m9d_c00400{transform:matrix(0.181757,0.003453,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181757,0.003453,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181757,0.003453,-0.004749,0.249955,0,0);}
.m3f_c00400{transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);}
.m50_c00400{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.mb8_c00400{transform:matrix(0.184780,0.003326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184780,0.003326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184780,0.003326,-0.004499,0.249960,0,0);}
.m10_c00400{transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);}
.m77_c00400{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m81_c00400{transform:matrix(0.185220,0.004075,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185220,0.004075,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185220,0.004075,-0.005499,0.249940,0,0);}
.m5a_c00400{transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186505,0.000000,0.000000,0.250000,0,0);}
.m6d_c00400{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.m46_c00400{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.m12_c00400{transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188510,0.000000,0.000000,0.250000,0,0);}
.m3a_c00400{transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);}
.m7a_c00400{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m9e_c00400{transform:matrix(0.189496,0.003600,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189496,0.003600,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189496,0.003600,-0.004749,0.249955,0,0);}
.m17_c00400{transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00400{transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);}
.m6c_c00400{transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);}
.m72_c00400{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m49_c00400{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m8f_c00400{transform:matrix(0.192950,0.005017,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192950,0.005017,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192950,0.005017,-0.006498,0.249916,0,0);}
.m38_c00400{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m96_c00400{transform:matrix(0.193629,0.004453,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193629,0.004453,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193629,0.004453,-0.005748,0.249934,0,0);}
.m9_c00400{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.ma4_c00400{transform:matrix(0.194150,0.003689,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194150,0.003689,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194150,0.003689,-0.004749,0.249955,0,0);}
.mde_c00400{transform:matrix(0.194529,-0.005252,0.006748,0.249909,0,0);-ms-transform:matrix(0.194529,-0.005252,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194529,-0.005252,0.006748,0.249909,0,0);}
.m51_c00400{transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);}
.m54_c00400{transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m43_c00400{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.mcb_c00400{transform:matrix(0.195776,0.006069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195776,0.006069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195776,0.006069,-0.007746,0.249880,0,0);}
.m63_c00400{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m7f_c00400{transform:matrix(0.196442,0.004322,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196442,0.004322,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196442,0.004322,-0.005499,0.249940,0,0);}
.mca_c00400{transform:matrix(0.196551,0.006093,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196551,0.006093,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196551,0.006093,-0.007746,0.249880,0,0);}
.ma1_c00400{transform:matrix(0.196729,0.003738,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196729,0.003738,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196729,0.003738,-0.004749,0.249955,0,0);}
.m4f_c00400{transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);}
.md6_c00400{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.m79_c00400{transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m8d_c00400{transform:matrix(0.199288,0.005181,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199288,0.005181,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199288,0.005181,-0.006498,0.249916,0,0);}
.m5_c00400{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.mb6_c00400{transform:matrix(0.199548,0.003592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199548,0.003592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199548,0.003592,-0.004499,0.249960,0,0);}
.md7_c00400{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.m42_c00400{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);}
.m69_c00400{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.maf_c00400{transform:matrix(0.202442,0.003644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202442,0.003644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202442,0.003644,-0.004499,0.249960,0,0);}
.m47_c00400{transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);}
.m60_c00400{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00400{transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);}
.ma9_c00400{transform:matrix(0.203093,0.003859,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203093,0.003859,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203093,0.003859,-0.004749,0.249955,0,0);}
.ma8_c00400{transform:matrix(0.203333,0.003863,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203333,0.003863,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203333,0.003863,-0.004749,0.249955,0,0);}
.m59_c00400{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m57_c00400{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m83_c00400{transform:matrix(0.203826,0.004484,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203826,0.004484,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203826,0.004484,-0.005499,0.249940,0,0);}
.m52_c00400{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.m3d_c00400{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m61_c00400{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.mdf_c00400{transform:matrix(0.204715,-0.005527,0.006748,0.249909,0,0);-ms-transform:matrix(0.204715,-0.005527,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204715,-0.005527,0.006748,0.249909,0,0);}
.m2_c00400{transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);}
.m91_c00400{transform:matrix(0.205216,0.005336,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205216,0.005336,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205216,0.005336,-0.006498,0.249916,0,0);}
.m70_c00400{transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);}
.m75_c00400{transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205845,0.000000,0.000000,0.250000,0,0);}
.md1_c00400{transform:matrix(0.205892,0.003706,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205892,0.003706,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205892,0.003706,-0.004499,0.249960,0,0);}
.m71_c00400{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m24_c00400{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.ma5_c00400{transform:matrix(0.207023,0.003933,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207023,0.003933,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207023,0.003933,-0.004749,0.249955,0,0);}
.m7e_c00400{transform:matrix(0.207570,0.004567,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207570,0.004567,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207570,0.004567,-0.005499,0.249940,0,0);}
.mad_c00400{transform:matrix(0.207638,0.003945,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207638,0.003945,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207638,0.003945,-0.004749,0.249955,0,0);}
.ma2_c00400{transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);}
.me_c00400{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m58_c00400{transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);}
.m99_c00400{transform:matrix(0.208835,0.004803,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208835,0.004803,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208835,0.004803,-0.005748,0.249934,0,0);}
.m27_c00400{transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);}
.m93_c00400{transform:matrix(0.209219,0.005440,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209219,0.005440,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209219,0.005440,-0.006498,0.249916,0,0);}
.m33_c00400{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m78_c00400{transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209305,0.000000,0.000000,0.250000,0,0);}
.mb7_c00400{transform:matrix(0.209646,0.003774,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209646,0.003774,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209646,0.003774,-0.004499,0.249960,0,0);}
.m37_c00400{transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210265,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);}
.m7c_c00400{transform:matrix(0.211339,0.004649,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211339,0.004649,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211339,0.004649,-0.005499,0.249940,0,0);}
.mc9_c00400{transform:matrix(0.211378,0.006553,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211378,0.006553,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211378,0.006553,-0.007746,0.249880,0,0);}
.m6a_c00400{transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);}
.m55_c00400{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);}
.mba_c00400{transform:matrix(0.212691,0.003828,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212691,0.003828,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212691,0.003828,-0.004499,0.249960,0,0);}
.mc0_c00400{transform:matrix(0.213815,0.003849,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213815,0.003849,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213815,0.003849,-0.004499,0.249960,0,0);}
.m40_c00400{transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);}
.m9b_c00400{transform:matrix(0.213978,0.004922,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213978,0.004922,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213978,0.004922,-0.005748,0.249934,0,0);}
.m21_c00400{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.mdc_c00400{transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00400{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m7d_c00400{transform:matrix(0.215388,0.004739,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215388,0.004739,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215388,0.004739,-0.005499,0.249940,0,0);}
.m62_c00400{transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215660,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215880,0.000000,0.000000,0.250000,0,0);}
.md0_c00400{transform:matrix(0.216335,0.003894,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216335,0.003894,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216335,0.003894,-0.004499,0.249960,0,0);}
.m98_c00400{transform:matrix(0.216338,0.004976,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216338,0.004976,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216338,0.004976,-0.005748,0.249934,0,0);}
.m6f_c00400{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.m48_c00400{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.mb2_c00400{transform:matrix(0.218255,0.003929,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218255,0.003929,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218255,0.003929,-0.004499,0.249960,0,0);}
.m4d_c00400{transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.ma7_c00400{transform:matrix(0.219530,0.004171,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219530,0.004171,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219530,0.004171,-0.004749,0.249955,0,0);}
.mb3_c00400{transform:matrix(0.219899,0.003958,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219899,0.003958,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219899,0.003958,-0.004499,0.249960,0,0);}
.m2f_c00400{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m5f_c00400{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m97_c00400{transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);}
.m3_c00400{transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221895,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m90_c00400{transform:matrix(0.223060,0.005800,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223060,0.005800,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223060,0.005800,-0.006498,0.249916,0,0);}
.m64_c00400{transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);}
.mbd_c00400{transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223889,0.004030,-0.004499,0.249960,0,0);}
.m30_c00400{transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225785,0.000000,0.000000,0.250000,0,0);}
.mbb_c00400{transform:matrix(0.225878,0.004066,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225878,0.004066,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225878,0.004066,-0.004499,0.249960,0,0);}
.m34_c00400{transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00400{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mae_c00400{transform:matrix(0.227303,0.004091,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227303,0.004091,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227303,0.004091,-0.004499,0.249960,0,0);}
.m5b_c00400{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.mcc_c00400{transform:matrix(0.229400,0.007111,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229400,0.007111,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229400,0.007111,-0.007746,0.249880,0,0);}
.mcf_c00400{transform:matrix(0.229668,0.004134,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229668,0.004134,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229668,0.004134,-0.004499,0.249960,0,0);}
.m66_c00400{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.mbf_c00400{transform:matrix(0.231143,0.004161,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231143,0.004161,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231143,0.004161,-0.004499,0.249960,0,0);}
.mdd_c00400{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.me0_c00400{transform:matrix(0.232765,-0.006285,0.006748,0.249909,0,0);-ms-transform:matrix(0.232765,-0.006285,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232765,-0.006285,0.006748,0.249909,0,0);}
.m6e_c00400{transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);}
.mb9_c00400{transform:matrix(0.235387,0.004237,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235387,0.004237,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235387,0.004237,-0.004499,0.249960,0,0);}
.m35_c00400{transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);}
.m74_c00400{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.mc3_c00400{transform:matrix(0.236012,0.004248,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236012,0.004248,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236012,0.004248,-0.004499,0.249960,0,0);}
.mc2_c00400{transform:matrix(0.237657,0.004278,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237657,0.004278,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237657,0.004278,-0.004499,0.249960,0,0);}
.md9_c00400{transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.md3_c00400{transform:matrix(0.240216,0.004324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240216,0.004324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240216,0.004324,-0.004499,0.249960,0,0);}
.m9a_c00400{transform:matrix(0.240611,0.005534,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240611,0.005534,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240611,0.005534,-0.005748,0.249934,0,0);}
.mdb_c00400{transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);}
.mbc_c00400{transform:matrix(0.241821,0.004353,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241821,0.004353,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241821,0.004353,-0.004499,0.249960,0,0);}
.m76_c00400{transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.mc7_c00400{transform:matrix(0.245402,0.007607,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245402,0.007607,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245402,0.007607,-0.007746,0.249880,0,0);}
.m19_c00400{transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);}
.md8_c00400{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.mc5_c00400{transform:matrix(0.249285,0.004487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249285,0.004487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249285,0.004487,-0.004499,0.249960,0,0);}
.m36_c00400{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m9c_c00400{transform:matrix(0.252768,0.005814,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252768,0.005814,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252768,0.005814,-0.005748,0.249934,0,0);}
.mc4_c00400{transform:matrix(0.253974,0.004572,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253974,0.004572,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253974,0.004572,-0.004499,0.249960,0,0);}
.mac_c00400{transform:matrix(0.256859,0.004880,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256859,0.004880,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256859,0.004880,-0.004749,0.249955,0,0);}
.mce_c00400{transform:matrix(0.257053,0.004627,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257053,0.004627,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257053,0.004627,-0.004499,0.249960,0,0);}
.mab_c00400{transform:matrix(0.257599,0.004894,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257599,0.004894,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257599,0.004894,-0.004749,0.249955,0,0);}
.m88_c00400{transform:matrix(0.259104,0.002850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259104,0.002850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259104,0.002850,-0.002750,0.249985,0,0);}
.m87_c00400{transform:matrix(0.265734,0.002923,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265734,0.002923,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265734,0.002923,-0.002750,0.249985,0,0);}
.m29_c00400{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.269365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269365,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);}
.mda_c00400{transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);}
.m68_c00400{transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);}
.mc1_c00400{transform:matrix(0.278500,0.005013,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278500,0.005013,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278500,0.005013,-0.004499,0.249960,0,0);}
.m2b_c00400{transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);}
.m85_c00400{transform:matrix(0.279228,0.003072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279228,0.003072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279228,0.003072,-0.002750,0.249985,0,0);}
.m16_c00400{transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00400{transform:matrix(0.282649,0.005088,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282649,0.005088,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282649,0.005088,-0.004499,0.249960,0,0);}
.m89_c00400{transform:matrix(0.286503,0.003152,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286503,0.003152,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286503,0.003152,-0.002750,0.249985,0,0);}
.m28_c00400{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m84_c00400{transform:matrix(0.292839,0.006442,-0.005499,0.249940,0,0);-ms-transform:matrix(0.292839,0.006442,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.292839,0.006442,-0.005499,0.249940,0,0);}
.mcd_c00400{transform:matrix(0.292968,0.005273,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292968,0.005273,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292968,0.005273,-0.004499,0.249960,0,0);}
.md4_c00400{transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293045,0.000000,0.000000,0.250000,0,0);}
.m56_c00400{transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);}
.m86_c00400{transform:matrix(0.316486,0.003481,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316486,0.003481,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316486,0.003481,-0.002750,0.249985,0,0);}
.mc6_c00400{transform:matrix(0.322383,0.005803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.322383,0.005803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.322383,0.005803,-0.004499,0.249960,0,0);}
.mb4_c00400{transform:matrix(0.340745,0.006133,-0.004499,0.249960,0,0);-ms-transform:matrix(0.340745,0.006133,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.340745,0.006133,-0.004499,0.249960,0,0);}
.m8b_c00400{transform:matrix(0.342674,0.003769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342674,0.003769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342674,0.003769,-0.002750,0.249985,0,0);}
.m4b_c00400{transform:matrix(0.345460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345460,0.000000,0.000000,0.250000,0,0);}
.md5_c00400{transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354315,0.000000,0.000000,0.250000,0,0);}
.m8a_c00400{transform:matrix(0.360133,0.003961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360133,0.003961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360133,0.003961,-0.002750,0.249985,0,0);}
.m82_c00400{transform:matrix(0.381538,0.008394,-0.005499,0.249940,0,0);-ms-transform:matrix(0.381538,0.008394,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.381538,0.008394,-0.005499,0.249940,0,0);}
.m4c_c00400{transform:matrix(0.400465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400465,0.000000,0.000000,0.250000,0,0);}
.m8c_c00400{transform:matrix(0.405448,0.010542,-0.006498,0.249916,0,0);-ms-transform:matrix(0.405448,0.010542,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.405448,0.010542,-0.006498,0.249916,0,0);}
.m67_c00400{transform:matrix(0.552330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552330,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.575010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575010,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
.fc0_c00400{color:transparent;}
.fs17_c00400{font-size:22.050000px;}
.fsb_c00400{font-size:44.102668px;}
.fsa_c00400{font-size:49.361941px;}
.fs14_c00400{font-size:51.458334px;}
.fs13_c00400{font-size:55.659015px;}
.fs8_c00400{font-size:57.750000px;}
.fs12_c00400{font-size:57.759355px;}
.fse_c00400{font-size:57.765273px;}
.fs6_c00400{font-size:58.800000px;}
.fs11_c00400{font-size:58.809525px;}
.fs16_c00400{font-size:58.821429px;}
.fs2_c00400{font-size:59.850000px;}
.fs5_c00400{font-size:60.900000px;}
.fs7_c00400{font-size:61.950000px;}
.fs3_c00400{font-size:63.000000px;}
.fs9_c00400{font-size:64.065498px;}
.fsc_c00400{font-size:64.071645px;}
.fs10_c00400{font-size:65.111749px;}
.fsd_c00400{font-size:65.122000px;}
.fs15_c00400{font-size:65.131273px;}
.fsf_c00400{font-size:66.161939px;}
.fs4_c00400{font-size:67.200000px;}
.fs1_c00400{font-size:68.250000px;}
.fs0_c00400{font-size:86.100000px;}
.y0_c00400{bottom:0.000000px;}
.y8a_c00400{bottom:28.645500px;}
.y8f_c00400{bottom:32.670000px;}
.y89_c00400{bottom:45.000864px;}
.y88_c00400{bottom:45.436266px;}
.y87_c00400{bottom:45.884628px;}
.y86_c00400{bottom:46.939248px;}
.y85_c00400{bottom:48.199014px;}
.y84_c00400{bottom:49.079133px;}
.y83_c00400{bottom:49.414500px;}
.y82_c00400{bottom:60.364742px;}
.y81_c00400{bottom:61.992939px;}
.y80_c00400{bottom:62.321880px;}
.y7f_c00400{bottom:63.443181px;}
.y7e_c00400{bottom:65.729958px;}
.y7d_c00400{bottom:68.863500px;}
.y7c_c00400{bottom:84.132123px;}
.y7b_c00400{bottom:86.399529px;}
.y8c_c00400{bottom:95.856000px;}
.y8d_c00400{bottom:96.603427px;}
.y8e_c00400{bottom:97.642941px;}
.y7a_c00400{bottom:98.406318px;}
.y79_c00400{bottom:99.657186px;}
.y78_c00400{bottom:100.200810px;}
.y77_c00400{bottom:101.793477px;}
.y76_c00400{bottom:113.572239px;}
.y75_c00400{bottom:115.095726px;}
.y74_c00400{bottom:115.546029px;}
.y73_c00400{bottom:116.840247px;}
.y72_c00400{bottom:118.527687px;}
.y71_c00400{bottom:130.553676px;}
.y70_c00400{bottom:130.866867px;}
.y6f_c00400{bottom:131.619885px;}
.y6e_c00400{bottom:131.959866px;}
.y6d_c00400{bottom:132.787152px;}
.y6c_c00400{bottom:133.052730px;}
.y6b_c00400{bottom:133.322478px;}
.y6a_c00400{bottom:133.919007px;}
.y69_c00400{bottom:148.330971px;}
.y68_c00400{bottom:149.424822px;}
.y67_c00400{bottom:149.896431px;}
.y66_c00400{bottom:150.448986px;}
.y65_c00400{bottom:151.801956px;}
.y64_c00400{bottom:152.284500px;}
.y63_c00400{bottom:164.291335px;}
.y62_c00400{bottom:164.560819px;}
.y61_c00400{bottom:165.346020px;}
.y60_c00400{bottom:165.697338px;}
.y5f_c00400{bottom:167.017164px;}
.y5e_c00400{bottom:167.312475px;}
.y5d_c00400{bottom:167.936707px;}
.y8b_c00400{bottom:181.039500px;}
.y5c_c00400{bottom:183.440500px;}
.y5b_c00400{bottom:184.615969px;}
.y5a_c00400{bottom:185.768263px;}
.y59_c00400{bottom:197.234479px;}
.y58_c00400{bottom:197.530024px;}
.y57_c00400{bottom:198.763048px;}
.y56_c00400{bottom:199.137966px;}
.y55_c00400{bottom:199.721133px;}
.y54_c00400{bottom:201.118687px;}
.y53_c00400{bottom:202.504500px;}
.y52_c00400{bottom:213.955402px;}
.y51_c00400{bottom:214.221639px;}
.y50_c00400{bottom:216.298504px;}
.y4f_c00400{bottom:216.619354px;}
.y4e_c00400{bottom:217.240492px;}
.y4d_c00400{bottom:217.709106px;}
.y4c_c00400{bottom:218.472004px;}
.y4b_c00400{bottom:219.597015px;}
.y4a_c00400{bottom:220.050000px;}
.y49_c00400{bottom:222.474867px;}
.y48_c00400{bottom:231.589458px;}
.y47_c00400{bottom:232.046148px;}
.y46_c00400{bottom:233.520777px;}
.y45_c00400{bottom:235.514691px;}
.y44_c00400{bottom:236.026995px;}
.y43_c00400{bottom:236.986395px;}
.y42_c00400{bottom:237.557745px;}
.y41_c00400{bottom:238.144500px;}
.y39_c00400{bottom:249.706527px;}
.y38_c00400{bottom:253.480263px;}
.y37_c00400{bottom:254.339472px;}
.y36_c00400{bottom:265.489662px;}
.y35_c00400{bottom:266.155173px;}
.y34_c00400{bottom:268.295421px;}
.y33_c00400{bottom:269.547540px;}
.y32_c00400{bottom:269.877738px;}
.y31_c00400{bottom:271.086000px;}
.y30_c00400{bottom:284.407500px;}
.y2f_c00400{bottom:284.767500px;}
.y2e_c00400{bottom:285.156000px;}
.y2d_c00400{bottom:286.279500px;}
.y2c_c00400{bottom:286.656000px;}
.y2b_c00400{bottom:287.931000px;}
.y2a_c00400{bottom:288.631500px;}
.y29_c00400{bottom:300.901500px;}
.y28_c00400{bottom:301.189500px;}
.y27_c00400{bottom:301.897500px;}
.y26_c00400{bottom:302.523000px;}
.y25_c00400{bottom:302.883000px;}
.y24_c00400{bottom:303.939000px;}
.y23_c00400{bottom:304.471500px;}
.y22_c00400{bottom:305.487000px;}
.y21_c00400{bottom:305.913000px;}
.y20_c00400{bottom:318.150000px;}
.y1f_c00400{bottom:318.957000px;}
.y1e_c00400{bottom:319.926000px;}
.y1d_c00400{bottom:320.247000px;}
.y1c_c00400{bottom:321.144000px;}
.y1b_c00400{bottom:322.653000px;}
.y1a_c00400{bottom:336.708000px;}
.y19_c00400{bottom:352.258500px;}
.y18_c00400{bottom:368.131500px;}
.y40_c00400{bottom:383.104225px;}
.y3f_c00400{bottom:383.659879px;}
.y3e_c00400{bottom:384.452457px;}
.y3d_c00400{bottom:384.714295px;}
.y3c_c00400{bottom:385.227709px;}
.y3b_c00400{bottom:385.792372px;}
.y3a_c00400{bottom:386.101500px;}
.y17_c00400{bottom:401.422500px;}
.y16_c00400{bottom:402.639000px;}
.y15_c00400{bottom:403.444500px;}
.y14_c00400{bottom:403.806000px;}
.y13_c00400{bottom:405.013500px;}
.y12_c00400{bottom:406.344000px;}
.y11_c00400{bottom:407.437500px;}
.y10_c00400{bottom:417.208500px;}
.yf_c00400{bottom:418.068000px;}
.ye_c00400{bottom:418.426500px;}
.yd_c00400{bottom:419.224500px;}
.yc_c00400{bottom:419.428500px;}
.yb_c00400{bottom:419.920500px;}
.ya_c00400{bottom:420.933000px;}
.y9_c00400{bottom:435.267000px;}
.y8_c00400{bottom:452.445000px;}
.y7_c00400{bottom:469.285500px;}
.y6_c00400{bottom:485.784000px;}
.y5_c00400{bottom:503.728500px;}
.y4_c00400{bottom:520.414500px;}
.y3_c00400{bottom:537.994500px;}
.y2_c00400{bottom:555.274500px;}
.y1_c00400{bottom:565.668000px;}
.h19_c00400{height:22.050000px;}
.hd_c00400{height:44.102668px;}
.hc_c00400{height:49.361941px;}
.h16_c00400{height:51.458334px;}
.h15_c00400{height:55.659015px;}
.ha_c00400{height:57.750000px;}
.h14_c00400{height:57.759355px;}
.h10_c00400{height:57.765273px;}
.h8_c00400{height:58.800000px;}
.h13_c00400{height:58.809525px;}
.h18_c00400{height:58.821429px;}
.h4_c00400{height:59.850000px;}
.h7_c00400{height:60.900000px;}
.h9_c00400{height:61.950000px;}
.h5_c00400{height:63.000000px;}
.hb_c00400{height:64.065498px;}
.he_c00400{height:64.071645px;}
.h12_c00400{height:65.111749px;}
.hf_c00400{height:65.122000px;}
.h17_c00400{height:65.131273px;}
.h11_c00400{height:66.161939px;}
.h6_c00400{height:67.200000px;}
.h3_c00400{height:68.250000px;}
.h2_c00400{height:86.100000px;}
.h0_c00400{height:613.170000px;}
.h1_c00400{height:613.500000px;}
.w0_c00400{width:359.100000px;}
.w1_c00400{width:359.250000px;}
.x0_c00400{left:0.000000px;}
.x3_c00400{left:12.690000px;}
.x12_c00400{left:13.770000px;}
.x32_c00400{left:14.850000px;}
.x2c_c00400{left:16.470000px;}
.x5f_c00400{left:20.363499px;}
.x5b_c00400{left:22.959000px;}
.x64_c00400{left:25.411500px;}
.x43_c00400{left:27.810000px;}
.x19_c00400{left:28.890000px;}
.x77_c00400{left:30.450723px;}
.x2d_c00400{left:32.940000px;}
.x26_c00400{left:35.640000px;}
.x61_c00400{left:38.052000px;}
.xb_c00400{left:41.850000px;}
.x6e_c00400{left:44.080500px;}
.x65_c00400{left:45.106500px;}
.x13_c00400{left:50.490000px;}
.x4_c00400{left:51.840000px;}
.x6b_c00400{left:55.512116px;}
.x3e_c00400{left:60.126000px;}
.x58_c00400{left:61.372500px;}
.x5_c00400{left:65.070000px;}
.x14_c00400{left:66.690000px;}
.x4a_c00400{left:69.660000px;}
.x48_c00400{left:71.280000px;}
.x1f_c00400{left:74.520000px;}
.x75_c00400{left:75.559176px;}
.x5c_c00400{left:77.880000px;}
.x33_c00400{left:79.920000px;}
.xc_c00400{left:81.000000px;}
.x44_c00400{left:83.430000px;}
.x79_c00400{left:84.540000px;}
.x3a_c00400{left:87.052500px;}
.x20_c00400{left:89.100000px;}
.x2e_c00400{left:90.180000px;}
.x5d_c00400{left:92.889000px;}
.x6_c00400{left:94.230000px;}
.x6c_c00400{left:96.055421px;}
.x34_c00400{left:97.740000px;}
.x27_c00400{left:105.840000px;}
.x4f_c00400{left:108.090000px;}
.x4b_c00400{left:109.350000px;}
.x2f_c00400{left:111.780000px;}
.xd_c00400{left:113.400000px;}
.x15_c00400{left:116.370000px;}
.x53_c00400{left:118.021500px;}
.x6f_c00400{left:119.245500px;}
.x28_c00400{left:121.500000px;}
.x1a_c00400{left:122.850000px;}
.x78_c00400{left:123.883500px;}
.x21_c00400{left:125.820000px;}
.x66_c00400{left:127.189500px;}
.x35_c00400{left:131.490000px;}
.x3b_c00400{left:136.719000px;}
.x1_c00400{left:140.670000px;}
.x76_c00400{left:141.992403px;}
.x22_c00400{left:146.070000px;}
.x67_c00400{left:147.564000px;}
.x49_c00400{left:148.770000px;}
.x5e_c00400{left:149.803500px;}
.x1b_c00400{left:152.820000px;}
.x16_c00400{left:155.520000px;}
.x71_c00400{left:157.265118px;}
.xe_c00400{left:161.190000px;}
.x50_c00400{left:164.158500px;}
.x3f_c00400{left:165.826500px;}
.x7b_c00400{left:167.940000px;}
.x36_c00400{left:169.020000px;}
.x29_c00400{left:170.640000px;}
.x54_c00400{left:173.631000px;}
.x6d_c00400{left:174.834351px;}
.x70_c00400{left:176.143500px;}
.x4c_c00400{left:178.470000px;}
.xf_c00400{left:179.550000px;}
.x40_c00400{left:180.873000px;}
.x30_c00400{left:183.060000px;}
.x51_c00400{left:184.210500px;}
.x7_c00400{left:185.760000px;}
.x17_c00400{left:187.110000px;}
.x68_c00400{left:188.520000px;}
.x55_c00400{left:192.544500px;}
.x3c_c00400{left:193.693500px;}
.x1c_c00400{left:195.480000px;}
.x2a_c00400{left:197.100000px;}
.x45_c00400{left:198.450000px;}
.x23_c00400{left:200.880000px;}
.x37_c00400{left:202.230000px;}
.x73_c00400{left:203.956785px;}
.x6a_c00400{left:212.596500px;}
.x41_c00400{left:214.411500px;}
.x3d_c00400{left:219.354000px;}
.x8_c00400{left:224.100000px;}
.x56_c00400{left:225.477000px;}
.x7d_c00400{left:231.466500px;}
.x2_c00400{left:234.090000px;}
.x46_c00400{left:235.980000px;}
.x7a_c00400{left:238.026000px;}
.x10_c00400{left:241.920000px;}
.x18_c00400{left:244.350000px;}
.x59_c00400{left:246.402000px;}
.x62_c00400{left:250.036500px;}
.x24_c00400{left:252.180000px;}
.x1d_c00400{left:253.530000px;}
.x9_c00400{left:255.690000px;}
.x72_c00400{left:257.727354px;}
.x38_c00400{left:262.170000px;}
.x42_c00400{left:265.129500px;}
.x63_c00400{left:267.601500px;}
.x4d_c00400{left:270.270000px;}
.x5a_c00400{left:272.332500px;}
.x2b_c00400{left:274.320000px;}
.x57_c00400{left:277.858500px;}
.x7c_c00400{left:278.910000px;}
.x25_c00400{left:281.340000px;}
.x11_c00400{left:282.960000px;}
.x74_c00400{left:284.176854px;}
.x31_c00400{left:285.930000px;}
.x60_c00400{left:287.175000px;}
.x69_c00400{left:290.394000px;}
.xa_c00400{left:292.140000px;}
.x39_c00400{left:294.030000px;}
.x52_c00400{left:295.182000px;}
.x1e_c00400{left:296.460000px;}
.x4e_c00400{left:298.350000px;}
.x47_c00400{left:301.860000px;}
.x7e_c00400{left:321.300000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
.fs17_c00400{font-size:19.600000pt;}
.fsb_c00400{font-size:39.202372pt;}
.fsa_c00400{font-size:43.877281pt;}
.fs14_c00400{font-size:45.740742pt;}
.fs13_c00400{font-size:49.474680pt;}
.fs8_c00400{font-size:51.333333pt;}
.fs12_c00400{font-size:51.341649pt;}
.fse_c00400{font-size:51.346909pt;}
.fs6_c00400{font-size:52.266667pt;}
.fs11_c00400{font-size:52.275133pt;}
.fs16_c00400{font-size:52.285714pt;}
.fs2_c00400{font-size:53.200000pt;}
.fs5_c00400{font-size:54.133333pt;}
.fs7_c00400{font-size:55.066667pt;}
.fs3_c00400{font-size:56.000000pt;}
.fs9_c00400{font-size:56.947110pt;}
.fsc_c00400{font-size:56.952574pt;}
.fs10_c00400{font-size:57.877111pt;}
.fsd_c00400{font-size:57.886222pt;}
.fs15_c00400{font-size:57.894465pt;}
.fsf_c00400{font-size:58.810612pt;}
.fs4_c00400{font-size:59.733333pt;}
.fs1_c00400{font-size:60.666667pt;}
.fs0_c00400{font-size:76.533333pt;}
.y0_c00400{bottom:0.000000pt;}
.y8a_c00400{bottom:25.462667pt;}
.y8f_c00400{bottom:29.040000pt;}
.y89_c00400{bottom:40.000768pt;}
.y88_c00400{bottom:40.387792pt;}
.y87_c00400{bottom:40.786336pt;}
.y86_c00400{bottom:41.723776pt;}
.y85_c00400{bottom:42.843568pt;}
.y84_c00400{bottom:43.625896pt;}
.y83_c00400{bottom:43.924000pt;}
.y82_c00400{bottom:53.657548pt;}
.y81_c00400{bottom:55.104835pt;}
.y80_c00400{bottom:55.397227pt;}
.y7f_c00400{bottom:56.393939pt;}
.y7e_c00400{bottom:58.426629pt;}
.y7d_c00400{bottom:61.212000pt;}
.y7c_c00400{bottom:74.784109pt;}
.y7b_c00400{bottom:76.799581pt;}
.y8c_c00400{bottom:85.205333pt;}
.y8d_c00400{bottom:85.869713pt;}
.y8e_c00400{bottom:86.793725pt;}
.y7a_c00400{bottom:87.472283pt;}
.y79_c00400{bottom:88.584165pt;}
.y78_c00400{bottom:89.067387pt;}
.y77_c00400{bottom:90.483091pt;}
.y76_c00400{bottom:100.953101pt;}
.y75_c00400{bottom:102.307312pt;}
.y74_c00400{bottom:102.707581pt;}
.y73_c00400{bottom:103.857997pt;}
.y72_c00400{bottom:105.357944pt;}
.y71_c00400{bottom:116.047712pt;}
.y70_c00400{bottom:116.326104pt;}
.y6f_c00400{bottom:116.995453pt;}
.y6e_c00400{bottom:117.297659pt;}
.y6d_c00400{bottom:118.033024pt;}
.y6c_c00400{bottom:118.269093pt;}
.y6b_c00400{bottom:118.508869pt;}
.y6a_c00400{bottom:119.039117pt;}
.y69_c00400{bottom:131.849752pt;}
.y68_c00400{bottom:132.822064pt;}
.y67_c00400{bottom:133.241272pt;}
.y66_c00400{bottom:133.732432pt;}
.y65_c00400{bottom:134.935072pt;}
.y64_c00400{bottom:135.364000pt;}
.y63_c00400{bottom:146.036743pt;}
.y62_c00400{bottom:146.276284pt;}
.y61_c00400{bottom:146.974240pt;}
.y60_c00400{bottom:147.286523pt;}
.y5f_c00400{bottom:148.459701pt;}
.y5e_c00400{bottom:148.722200pt;}
.y5d_c00400{bottom:149.277073pt;}
.y8b_c00400{bottom:160.924000pt;}
.y5c_c00400{bottom:163.058223pt;}
.y5b_c00400{bottom:164.103084pt;}
.y5a_c00400{bottom:165.127345pt;}
.y59_c00400{bottom:175.319537pt;}
.y58_c00400{bottom:175.582244pt;}
.y57_c00400{bottom:176.678265pt;}
.y56_c00400{bottom:177.011525pt;}
.y55_c00400{bottom:177.529896pt;}
.y54_c00400{bottom:178.772167pt;}
.y53_c00400{bottom:180.004000pt;}
.y52_c00400{bottom:190.182580pt;}
.y51_c00400{bottom:190.419235pt;}
.y50_c00400{bottom:192.265337pt;}
.y4f_c00400{bottom:192.550537pt;}
.y4e_c00400{bottom:193.102660pt;}
.y4d_c00400{bottom:193.519205pt;}
.y4c_c00400{bottom:194.197337pt;}
.y4b_c00400{bottom:195.197347pt;}
.y4a_c00400{bottom:195.600000pt;}
.y49_c00400{bottom:197.755437pt;}
.y48_c00400{bottom:205.857296pt;}
.y47_c00400{bottom:206.263243pt;}
.y46_c00400{bottom:207.574024pt;}
.y45_c00400{bottom:209.346392pt;}
.y44_c00400{bottom:209.801773pt;}
.y43_c00400{bottom:210.654573pt;}
.y42_c00400{bottom:211.162440pt;}
.y41_c00400{bottom:211.684000pt;}
.y39_c00400{bottom:221.961357pt;}
.y38_c00400{bottom:225.315789pt;}
.y37_c00400{bottom:226.079531pt;}
.y36_c00400{bottom:235.990811pt;}
.y35_c00400{bottom:236.582376pt;}
.y34_c00400{bottom:238.484819pt;}
.y33_c00400{bottom:239.597813pt;}
.y32_c00400{bottom:239.891323pt;}
.y31_c00400{bottom:240.965333pt;}
.y30_c00400{bottom:252.806667pt;}
.y2f_c00400{bottom:253.126667pt;}
.y2e_c00400{bottom:253.472000pt;}
.y2d_c00400{bottom:254.470667pt;}
.y2c_c00400{bottom:254.805333pt;}
.y2b_c00400{bottom:255.938667pt;}
.y2a_c00400{bottom:256.561333pt;}
.y29_c00400{bottom:267.468000pt;}
.y28_c00400{bottom:267.724000pt;}
.y27_c00400{bottom:268.353333pt;}
.y26_c00400{bottom:268.909333pt;}
.y25_c00400{bottom:269.229333pt;}
.y24_c00400{bottom:270.168000pt;}
.y23_c00400{bottom:270.641333pt;}
.y22_c00400{bottom:271.544000pt;}
.y21_c00400{bottom:271.922667pt;}
.y20_c00400{bottom:282.800000pt;}
.y1f_c00400{bottom:283.517333pt;}
.y1e_c00400{bottom:284.378667pt;}
.y1d_c00400{bottom:284.664000pt;}
.y1c_c00400{bottom:285.461333pt;}
.y1b_c00400{bottom:286.802667pt;}
.y1a_c00400{bottom:299.296000pt;}
.y19_c00400{bottom:313.118667pt;}
.y18_c00400{bottom:327.228000pt;}
.y40_c00400{bottom:340.537089pt;}
.y3f_c00400{bottom:341.031004pt;}
.y3e_c00400{bottom:341.735517pt;}
.y3d_c00400{bottom:341.968263pt;}
.y3c_c00400{bottom:342.424631pt;}
.y3b_c00400{bottom:342.926553pt;}
.y3a_c00400{bottom:343.201333pt;}
.y17_c00400{bottom:356.820000pt;}
.y16_c00400{bottom:357.901333pt;}
.y15_c00400{bottom:358.617333pt;}
.y14_c00400{bottom:358.938667pt;}
.y13_c00400{bottom:360.012000pt;}
.y12_c00400{bottom:361.194667pt;}
.y11_c00400{bottom:362.166667pt;}
.y10_c00400{bottom:370.852000pt;}
.yf_c00400{bottom:371.616000pt;}
.ye_c00400{bottom:371.934667pt;}
.yd_c00400{bottom:372.644000pt;}
.yc_c00400{bottom:372.825333pt;}
.yb_c00400{bottom:373.262667pt;}
.ya_c00400{bottom:374.162667pt;}
.y9_c00400{bottom:386.904000pt;}
.y8_c00400{bottom:402.173333pt;}
.y7_c00400{bottom:417.142667pt;}
.y6_c00400{bottom:431.808000pt;}
.y5_c00400{bottom:447.758667pt;}
.y4_c00400{bottom:462.590667pt;}
.y3_c00400{bottom:478.217333pt;}
.y2_c00400{bottom:493.577333pt;}
.y1_c00400{bottom:502.816000pt;}
.h19_c00400{height:19.600000pt;}
.hd_c00400{height:39.202372pt;}
.hc_c00400{height:43.877281pt;}
.h16_c00400{height:45.740742pt;}
.h15_c00400{height:49.474680pt;}
.ha_c00400{height:51.333333pt;}
.h14_c00400{height:51.341649pt;}
.h10_c00400{height:51.346909pt;}
.h8_c00400{height:52.266667pt;}
.h13_c00400{height:52.275133pt;}
.h18_c00400{height:52.285714pt;}
.h4_c00400{height:53.200000pt;}
.h7_c00400{height:54.133333pt;}
.h9_c00400{height:55.066667pt;}
.h5_c00400{height:56.000000pt;}
.hb_c00400{height:56.947110pt;}
.he_c00400{height:56.952574pt;}
.h12_c00400{height:57.877111pt;}
.hf_c00400{height:57.886222pt;}
.h17_c00400{height:57.894465pt;}
.h11_c00400{height:58.810612pt;}
.h6_c00400{height:59.733333pt;}
.h3_c00400{height:60.666667pt;}
.h2_c00400{height:76.533333pt;}
.h0_c00400{height:545.040000pt;}
.h1_c00400{height:545.333333pt;}
.w0_c00400{width:319.200000pt;}
.w1_c00400{width:319.333333pt;}
.x0_c00400{left:0.000000pt;}
.x3_c00400{left:11.280000pt;}
.x12_c00400{left:12.240000pt;}
.x32_c00400{left:13.200000pt;}
.x2c_c00400{left:14.640000pt;}
.x5f_c00400{left:18.100888pt;}
.x5b_c00400{left:20.408000pt;}
.x64_c00400{left:22.588000pt;}
.x43_c00400{left:24.720000pt;}
.x19_c00400{left:25.680000pt;}
.x77_c00400{left:27.067309pt;}
.x2d_c00400{left:29.280000pt;}
.x26_c00400{left:31.680000pt;}
.x61_c00400{left:33.824000pt;}
.xb_c00400{left:37.200000pt;}
.x6e_c00400{left:39.182667pt;}
.x65_c00400{left:40.094667pt;}
.x13_c00400{left:44.880000pt;}
.x4_c00400{left:46.080000pt;}
.x6b_c00400{left:49.344103pt;}
.x3e_c00400{left:53.445333pt;}
.x58_c00400{left:54.553333pt;}
.x5_c00400{left:57.840000pt;}
.x14_c00400{left:59.280000pt;}
.x4a_c00400{left:61.920000pt;}
.x48_c00400{left:63.360000pt;}
.x1f_c00400{left:66.240000pt;}
.x75_c00400{left:67.163712pt;}
.x5c_c00400{left:69.226667pt;}
.x33_c00400{left:71.040000pt;}
.xc_c00400{left:72.000000pt;}
.x44_c00400{left:74.160000pt;}
.x79_c00400{left:75.146667pt;}
.x3a_c00400{left:77.380000pt;}
.x20_c00400{left:79.200000pt;}
.x2e_c00400{left:80.160000pt;}
.x5d_c00400{left:82.568000pt;}
.x6_c00400{left:83.760000pt;}
.x6c_c00400{left:85.382596pt;}
.x34_c00400{left:86.880000pt;}
.x27_c00400{left:94.080000pt;}
.x4f_c00400{left:96.080000pt;}
.x4b_c00400{left:97.200000pt;}
.x2f_c00400{left:99.360000pt;}
.xd_c00400{left:100.800000pt;}
.x15_c00400{left:103.440000pt;}
.x53_c00400{left:104.908000pt;}
.x6f_c00400{left:105.996000pt;}
.x28_c00400{left:108.000000pt;}
.x1a_c00400{left:109.200000pt;}
.x78_c00400{left:110.118667pt;}
.x21_c00400{left:111.840000pt;}
.x66_c00400{left:113.057333pt;}
.x35_c00400{left:116.880000pt;}
.x3b_c00400{left:121.528000pt;}
.x1_c00400{left:125.040000pt;}
.x76_c00400{left:126.215469pt;}
.x22_c00400{left:129.840000pt;}
.x67_c00400{left:131.168000pt;}
.x49_c00400{left:132.240000pt;}
.x5e_c00400{left:133.158667pt;}
.x1b_c00400{left:135.840000pt;}
.x16_c00400{left:138.240000pt;}
.x71_c00400{left:139.791216pt;}
.xe_c00400{left:143.280000pt;}
.x50_c00400{left:145.918667pt;}
.x3f_c00400{left:147.401333pt;}
.x7b_c00400{left:149.280000pt;}
.x36_c00400{left:150.240000pt;}
.x29_c00400{left:151.680000pt;}
.x54_c00400{left:154.338667pt;}
.x6d_c00400{left:155.408312pt;}
.x70_c00400{left:156.572000pt;}
.x4c_c00400{left:158.640000pt;}
.xf_c00400{left:159.600000pt;}
.x40_c00400{left:160.776000pt;}
.x30_c00400{left:162.720000pt;}
.x51_c00400{left:163.742667pt;}
.x7_c00400{left:165.120000pt;}
.x17_c00400{left:166.320000pt;}
.x68_c00400{left:167.573333pt;}
.x55_c00400{left:171.150667pt;}
.x3c_c00400{left:172.172000pt;}
.x1c_c00400{left:173.760000pt;}
.x2a_c00400{left:175.200000pt;}
.x45_c00400{left:176.400000pt;}
.x23_c00400{left:178.560000pt;}
.x37_c00400{left:179.760000pt;}
.x73_c00400{left:181.294920pt;}
.x6a_c00400{left:188.974667pt;}
.x41_c00400{left:190.588000pt;}
.x3d_c00400{left:194.981333pt;}
.x8_c00400{left:199.200000pt;}
.x56_c00400{left:200.424000pt;}
.x7d_c00400{left:205.748000pt;}
.x2_c00400{left:208.080000pt;}
.x46_c00400{left:209.760000pt;}
.x7a_c00400{left:211.578667pt;}
.x10_c00400{left:215.040000pt;}
.x18_c00400{left:217.200000pt;}
.x59_c00400{left:219.024000pt;}
.x62_c00400{left:222.254667pt;}
.x24_c00400{left:224.160000pt;}
.x1d_c00400{left:225.360000pt;}
.x9_c00400{left:227.280000pt;}
.x72_c00400{left:229.090981pt;}
.x38_c00400{left:233.040000pt;}
.x42_c00400{left:235.670667pt;}
.x63_c00400{left:237.868000pt;}
.x4d_c00400{left:240.240000pt;}
.x5a_c00400{left:242.073333pt;}
.x2b_c00400{left:243.840000pt;}
.x57_c00400{left:246.985333pt;}
.x7c_c00400{left:247.920000pt;}
.x25_c00400{left:250.080000pt;}
.x11_c00400{left:251.520000pt;}
.x74_c00400{left:252.601648pt;}
.x31_c00400{left:254.160000pt;}
.x60_c00400{left:255.266667pt;}
.x69_c00400{left:258.128000pt;}
.xa_c00400{left:259.680000pt;}
.x39_c00400{left:261.360000pt;}
.x52_c00400{left:262.384000pt;}
.x1e_c00400{left:263.520000pt;}
.x4e_c00400{left:265.200000pt;}
.x47_c00400{left:268.320000pt;}
.x7e_c00400{left:285.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00401 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00401 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00401 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00401 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00401.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00401{transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.019823,-0.000258,0.003250,0.249979,0,0);-ms-transform:matrix(0.019823,-0.000258,0.003250,0.249979,0,0);-webkit-transform:matrix(0.019823,-0.000258,0.003250,0.249979,0,0);}
.m4e_c00401{transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148615,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148845,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149860,0.000000,0.000000,0.250000,0,0);}
.mc9_c00401{transform:matrix(0.150080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150080,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150430,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151720,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152620,0.000000,0.000000,0.250000,0,0);}
.m52_c00401{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156235,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158465,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);}
.mc1_c00401{transform:matrix(0.160536,-0.002087,0.003250,0.249979,0,0);-ms-transform:matrix(0.160536,-0.002087,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160536,-0.002087,0.003250,0.249979,0,0);}
.m27_c00401{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163140,0.000000,0.000000,0.250000,0,0);}
.mbf_c00401{transform:matrix(0.164451,-0.002138,0.003250,0.249979,0,0);-ms-transform:matrix(0.164451,-0.002138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164451,-0.002138,0.003250,0.249979,0,0);}
.m18_c00401{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.mb6_c00401{transform:matrix(0.165831,-0.002156,0.003250,0.249979,0,0);-ms-transform:matrix(0.165831,-0.002156,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165831,-0.002156,0.003250,0.249979,0,0);}
.mab_c00401{transform:matrix(0.166876,-0.002169,0.003250,0.249979,0,0);-ms-transform:matrix(0.166876,-0.002169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166876,-0.002169,0.003250,0.249979,0,0);}
.m36_c00401{transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);}
.m65_c00401{transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.167941,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167941,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167941,-0.002183,0.003250,0.249979,0,0);}
.m1d_c00401{transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168070,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.mae_c00401{transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170316,-0.002214,0.003250,0.249979,0,0);}
.mb2_c00401{transform:matrix(0.170391,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170391,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170391,-0.002215,0.003250,0.249979,0,0);}
.mb5_c00401{transform:matrix(0.170891,-0.002222,0.003250,0.249979,0,0);-ms-transform:matrix(0.170891,-0.002222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170891,-0.002222,0.003250,0.249979,0,0);}
.ma1_c00401{transform:matrix(0.171121,-0.002225,0.003250,0.249979,0,0);-ms-transform:matrix(0.171121,-0.002225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171121,-0.002225,0.003250,0.249979,0,0);}
.m8f_c00401{transform:matrix(0.171885,-0.002235,0.003250,0.249979,0,0);-ms-transform:matrix(0.171885,-0.002235,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171885,-0.002235,0.003250,0.249979,0,0);}
.mbb_c00401{transform:matrix(0.172290,-0.002240,0.003250,0.249979,0,0);-ms-transform:matrix(0.172290,-0.002240,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172290,-0.002240,0.003250,0.249979,0,0);}
.mc5_c00401{transform:matrix(0.172450,-0.002242,0.003250,0.249979,0,0);-ms-transform:matrix(0.172450,-0.002242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172450,-0.002242,0.003250,0.249979,0,0);}
.m41_c00401{transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173640,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);}
.mbc_c00401{transform:matrix(0.173790,-0.002259,0.003250,0.249979,0,0);-ms-transform:matrix(0.173790,-0.002259,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173790,-0.002259,0.003250,0.249979,0,0);}
.m7b_c00401{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m56_c00401{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.mc6_c00401{transform:matrix(0.175420,-0.002280,0.003250,0.249979,0,0);-ms-transform:matrix(0.175420,-0.002280,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175420,-0.002280,0.003250,0.249979,0,0);}
.mac_c00401{transform:matrix(0.176355,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176355,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176355,-0.002293,0.003250,0.249979,0,0);}
.m53_c00401{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m7a_c00401{transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);}
.m7e_c00401{transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178730,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179640,0.000000,0.000000,0.250000,0,0);}
.m82_c00401{transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179735,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.mc0_c00401{transform:matrix(0.181055,-0.002354,0.003250,0.249979,0,0);-ms-transform:matrix(0.181055,-0.002354,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181055,-0.002354,0.003250,0.249979,0,0);}
.m1b_c00401{transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181370,0.000000,0.000000,0.250000,0,0);}
.m7f_c00401{transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);}
.m6e_c00401{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00401{transform:matrix(0.182940,-0.002378,0.003250,0.249979,0,0);-ms-transform:matrix(0.182940,-0.002378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182940,-0.002378,0.003250,0.249979,0,0);}
.m68_c00401{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.183719,-0.002388,0.003250,0.249979,0,0);-ms-transform:matrix(0.183719,-0.002388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183719,-0.002388,0.003250,0.249979,0,0);}
.mb4_c00401{transform:matrix(0.184169,-0.002394,0.003250,0.249979,0,0);-ms-transform:matrix(0.184169,-0.002394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184169,-0.002394,0.003250,0.249979,0,0);}
.ma2_c00401{transform:matrix(0.184969,-0.002405,0.003250,0.249979,0,0);-ms-transform:matrix(0.184969,-0.002405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184969,-0.002405,0.003250,0.249979,0,0);}
.m69_c00401{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.mbe_c00401{transform:matrix(0.185499,-0.002411,0.003250,0.249979,0,0);-ms-transform:matrix(0.185499,-0.002411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185499,-0.002411,0.003250,0.249979,0,0);}
.m26_c00401{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m83_c00401{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185945,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m7d_c00401{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m89_c00401{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.m46_c00401{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m66_c00401{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.m9e_c00401{transform:matrix(0.190344,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190344,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190344,-0.002474,0.003250,0.249979,0,0);}
.m54_c00401{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);}
.m77_c00401{transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);}
.m78_c00401{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.m86_c00401{transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00401{transform:matrix(0.192949,-0.002508,0.003250,0.249979,0,0);-ms-transform:matrix(0.192949,-0.002508,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192949,-0.002508,0.003250,0.249979,0,0);}
.m2f_c00401{transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);}
.m75_c00401{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.194034,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194034,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194034,-0.002522,0.003250,0.249979,0,0);}
.m98_c00401{transform:matrix(0.194599,-0.002530,0.003250,0.249979,0,0);-ms-transform:matrix(0.194599,-0.002530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194599,-0.002530,0.003250,0.249979,0,0);}
.m32_c00401{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m80_c00401{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.maa_c00401{transform:matrix(0.196238,-0.002551,0.003250,0.249979,0,0);-ms-transform:matrix(0.196238,-0.002551,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196238,-0.002551,0.003250,0.249979,0,0);}
.m2e_c00401{transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);}
.m44_c00401{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.197148,-0.002563,0.003250,0.249979,0,0);-ms-transform:matrix(0.197148,-0.002563,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197148,-0.002563,0.003250,0.249979,0,0);}
.m59_c00401{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.m74_c00401{transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00401{transform:matrix(0.198328,-0.002578,0.003250,0.249979,0,0);-ms-transform:matrix(0.198328,-0.002578,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198328,-0.002578,0.003250,0.249979,0,0);}
.m14_c00401{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00401{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.mb7_c00401{transform:matrix(0.200003,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.200003,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200003,-0.002600,0.003250,0.249979,0,0);}
.m3c_c00401{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m87_c00401{transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.maf_c00401{transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201223,-0.002616,0.003250,0.249979,0,0);}
.m30_c00401{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m92_c00401{transform:matrix(0.202223,-0.002629,0.003250,0.249979,0,0);-ms-transform:matrix(0.202223,-0.002629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202223,-0.002629,0.003250,0.249979,0,0);}
.ma3_c00401{transform:matrix(0.203583,-0.002647,0.003250,0.249979,0,0);-ms-transform:matrix(0.203583,-0.002647,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203583,-0.002647,0.003250,0.249979,0,0);}
.mad_c00401{transform:matrix(0.203588,-0.002647,0.003250,0.249979,0,0);-ms-transform:matrix(0.203588,-0.002647,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203588,-0.002647,0.003250,0.249979,0,0);}
.mb8_c00401{transform:matrix(0.204448,-0.002658,0.003250,0.249979,0,0);-ms-transform:matrix(0.204448,-0.002658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204448,-0.002658,0.003250,0.249979,0,0);}
.m81_c00401{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.mc7_c00401{transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);}
.m2_c00401{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209005,0.000000,0.000000,0.250000,0,0);}
.m45_c00401{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00401{transform:matrix(0.209652,-0.002725,0.003250,0.249979,0,0);-ms-transform:matrix(0.209652,-0.002725,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209652,-0.002725,0.003250,0.249979,0,0);}
.m8d_c00401{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.m3f_c00401{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00401{transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210472,-0.002736,0.003250,0.249979,0,0);}
.m79_c00401{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m85_c00401{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00401{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.mb0_c00401{transform:matrix(0.212457,-0.002762,0.003250,0.249979,0,0);-ms-transform:matrix(0.212457,-0.002762,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212457,-0.002762,0.003250,0.249979,0,0);}
.m5a_c00401{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m8a_c00401{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m88_c00401{transform:matrix(0.213420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213420,0.000000,0.000000,0.250000,0,0);}
.m9c_c00401{transform:matrix(0.213552,-0.002776,0.003250,0.249979,0,0);-ms-transform:matrix(0.213552,-0.002776,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213552,-0.002776,0.003250,0.249979,0,0);}
.mc3_c00401{transform:matrix(0.213977,-0.002782,0.003250,0.249979,0,0);-ms-transform:matrix(0.213977,-0.002782,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213977,-0.002782,0.003250,0.249979,0,0);}
.m95_c00401{transform:matrix(0.214732,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214732,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214732,-0.002792,0.003250,0.249979,0,0);}
.m42_c00401{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00401{transform:matrix(0.216757,-0.002818,0.003250,0.249979,0,0);-ms-transform:matrix(0.216757,-0.002818,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216757,-0.002818,0.003250,0.249979,0,0);}
.m90_c00401{transform:matrix(0.218302,-0.002838,0.003250,0.249979,0,0);-ms-transform:matrix(0.218302,-0.002838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218302,-0.002838,0.003250,0.249979,0,0);}
.m8c_c00401{transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);}
.m91_c00401{transform:matrix(0.219631,-0.002855,0.003250,0.249979,0,0);-ms-transform:matrix(0.219631,-0.002855,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219631,-0.002855,0.003250,0.249979,0,0);}
.mc4_c00401{transform:matrix(0.219956,-0.002859,0.003250,0.249979,0,0);-ms-transform:matrix(0.219956,-0.002859,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219956,-0.002859,0.003250,0.249979,0,0);}
.m3b_c00401{transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220345,0.000000,0.000000,0.250000,0,0);}
.ma5_c00401{transform:matrix(0.220501,-0.002867,0.003250,0.249979,0,0);-ms-transform:matrix(0.220501,-0.002867,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220501,-0.002867,0.003250,0.249979,0,0);}
.m2c_c00401{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m8b_c00401{transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);}
.mba_c00401{transform:matrix(0.223531,-0.002906,0.003250,0.249979,0,0);-ms-transform:matrix(0.223531,-0.002906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223531,-0.002906,0.003250,0.249979,0,0);}
.m99_c00401{transform:matrix(0.223726,-0.002908,0.003250,0.249979,0,0);-ms-transform:matrix(0.223726,-0.002908,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223726,-0.002908,0.003250,0.249979,0,0);}
.m3e_c00401{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224845,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.230640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230640,0.000000,0.000000,0.250000,0,0);}
.m5e_c00401{transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);}
.mc8_c00401{transform:matrix(0.232585,-0.003024,0.003250,0.249979,0,0);-ms-transform:matrix(0.232585,-0.003024,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232585,-0.003024,0.003250,0.249979,0,0);}
.ma9_c00401{transform:matrix(0.233255,-0.003032,0.003250,0.249979,0,0);-ms-transform:matrix(0.233255,-0.003032,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233255,-0.003032,0.003250,0.249979,0,0);}
.m64_c00401{transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234235,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.236895,-0.003080,0.003250,0.249979,0,0);-ms-transform:matrix(0.236895,-0.003080,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236895,-0.003080,0.003250,0.249979,0,0);}
.m94_c00401{transform:matrix(0.239920,-0.003119,0.003250,0.249979,0,0);-ms-transform:matrix(0.239920,-0.003119,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239920,-0.003119,0.003250,0.249979,0,0);}
.m4d_c00401{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{transform:matrix(0.249604,-0.003245,0.003250,0.249979,0,0);-ms-transform:matrix(0.249604,-0.003245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249604,-0.003245,0.003250,0.249979,0,0);}
.m7_c00401{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.259088,-0.003368,0.003250,0.249979,0,0);-ms-transform:matrix(0.259088,-0.003368,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259088,-0.003368,0.003250,0.249979,0,0);}
.m5b_c00401{transform:matrix(0.259370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259370,0.000000,0.000000,0.250000,0,0);}
.m61_c00401{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.277665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277665,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);}
.m5d_c00401{transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.298140,-0.003876,0.003250,0.249979,0,0);-ms-transform:matrix(0.298140,-0.003876,0.003250,0.249979,0,0);-webkit-transform:matrix(0.298140,-0.003876,0.003250,0.249979,0,0);}
.m72_c00401{transform:matrix(0.303260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303260,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);}
.mb1_c00401{transform:matrix(0.322928,-0.004198,0.003250,0.249979,0,0);-ms-transform:matrix(0.322928,-0.004198,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322928,-0.004198,0.003250,0.249979,0,0);}
.ma7_c00401{transform:matrix(0.349001,-0.004537,0.003250,0.249979,0,0);-ms-transform:matrix(0.349001,-0.004537,0.003250,0.249979,0,0);-webkit-transform:matrix(0.349001,-0.004537,0.003250,0.249979,0,0);}
.m6b_c00401{transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.370169,-0.004812,0.003250,0.249979,0,0);-ms-transform:matrix(0.370169,-0.004812,0.003250,0.249979,0,0);-webkit-transform:matrix(0.370169,-0.004812,0.003250,0.249979,0,0);}
.m63_c00401{transform:matrix(0.433815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433815,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.440505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440505,0.000000,0.000000,0.250000,0,0);}
.m76_c00401{transform:matrix(0.450325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450325,0.000000,0.000000,0.250000,0,0);}
.m62_c00401{transform:matrix(0.471445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471445,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:0.000000px;}
.fc0_c00401{color:transparent;}
.fsf_c00401{font-size:22.050000px;}
.fsc_c00401{font-size:54.604614px;}
.fsa_c00401{font-size:58.800000px;}
.fs7_c00401{font-size:60.900000px;}
.fsb_c00401{font-size:60.905146px;}
.fs8_c00401{font-size:61.950000px;}
.fsd_c00401{font-size:63.005323px;}
.fs4_c00401{font-size:64.050000px;}
.fse_c00401{font-size:65.105501px;}
.fs5_c00401{font-size:66.150000px;}
.fs1_c00401{font-size:67.200000px;}
.fs6_c00401{font-size:68.250000px;}
.fs9_c00401{font-size:69.300000px;}
.fs3_c00401{font-size:70.350000px;}
.fs2_c00401{font-size:71.400000px;}
.fs0_c00401{font-size:91.350000px;}
.y0_c00401{bottom:0.000000px;}
.y63_c00401{bottom:18.898668px;}
.y64_c00401{bottom:21.468080px;}
.y65_c00401{bottom:22.856286px;}
.y66_c00401{bottom:23.495301px;}
.y67_c00401{bottom:24.635031px;}
.y68_c00401{bottom:25.161960px;}
.y5c_c00401{bottom:35.906628px;}
.y5d_c00401{bottom:36.703232px;}
.y5e_c00401{bottom:38.199794px;}
.y5f_c00401{bottom:38.931389px;}
.y60_c00401{bottom:39.375858px;}
.y61_c00401{bottom:40.237898px;}
.y62_c00401{bottom:40.703303px;}
.y52_c00401{bottom:54.264473px;}
.y53_c00401{bottom:54.736362px;}
.y54_c00401{bottom:55.423101px;}
.y55_c00401{bottom:56.127777px;}
.y56_c00401{bottom:56.407608px;}
.y57_c00401{bottom:56.983160px;}
.y58_c00401{bottom:57.302861px;}
.y59_c00401{bottom:57.920330px;}
.y5a_c00401{bottom:58.554624px;}
.y5b_c00401{bottom:58.867521px;}
.y49_c00401{bottom:71.279306px;}
.y4a_c00401{bottom:72.780741px;}
.y4b_c00401{bottom:73.294931px;}
.y4c_c00401{bottom:73.602719px;}
.y4d_c00401{bottom:74.207048px;}
.y4e_c00401{bottom:74.453820px;}
.y4f_c00401{bottom:75.161661px;}
.y50_c00401{bottom:75.603158px;}
.y51_c00401{bottom:76.255266px;}
.y3e_c00401{bottom:88.288080px;}
.y3f_c00401{bottom:88.730887px;}
.y40_c00401{bottom:89.514435px;}
.y41_c00401{bottom:90.303695px;}
.y42_c00401{bottom:90.754572px;}
.y43_c00401{bottom:91.529075px;}
.y44_c00401{bottom:91.923383px;}
.y45_c00401{bottom:93.023714px;}
.y46_c00401{bottom:93.241979px;}
.y47_c00401{bottom:93.751121px;}
.y48_c00401{bottom:94.424220px;}
.y36_c00401{bottom:102.882582px;}
.y37_c00401{bottom:103.366479px;}
.y38_c00401{bottom:104.646136px;}
.y39_c00401{bottom:104.967611px;}
.y3a_c00401{bottom:106.600104px;}
.y3b_c00401{bottom:107.939620px;}
.y3c_c00401{bottom:108.357909px;}
.y3d_c00401{bottom:109.352211px;}
.y2e_c00401{bottom:121.771500px;}
.y2f_c00401{bottom:122.024649px;}
.y30_c00401{bottom:122.435826px;}
.y31_c00401{bottom:123.130708px;}
.y32_c00401{bottom:123.621250px;}
.y33_c00401{bottom:124.264341px;}
.y34_c00401{bottom:124.534689px;}
.y35_c00401{bottom:125.257866px;}
.y29_c00401{bottom:139.593000px;}
.y2a_c00401{bottom:140.023500px;}
.y2b_c00401{bottom:140.235000px;}
.y2c_c00401{bottom:141.528000px;}
.y2d_c00401{bottom:143.079000px;}
.y23_c00401{bottom:155.793000px;}
.y24_c00401{bottom:156.718500px;}
.y25_c00401{bottom:157.500000px;}
.y26_c00401{bottom:157.690500px;}
.y27_c00401{bottom:158.461500px;}
.y28_c00401{bottom:159.498000px;}
.y1c_c00401{bottom:174.156000px;}
.y1d_c00401{bottom:175.153500px;}
.y1e_c00401{bottom:175.545000px;}
.y1f_c00401{bottom:176.839500px;}
.y20_c00401{bottom:178.116000px;}
.y21_c00401{bottom:179.331000px;}
.y22_c00401{bottom:179.587500px;}
.y1b_c00401{bottom:193.180500px;}
.y69_c00401{bottom:222.480000px;}
.y1a_c00401{bottom:225.252000px;}
.y19_c00401{bottom:242.809500px;}
.y18_c00401{bottom:259.315500px;}
.y17_c00401{bottom:308.994000px;}
.y16_c00401{bottom:344.365500px;}
.y15_c00401{bottom:362.017500px;}
.y14_c00401{bottom:378.952500px;}
.y13_c00401{bottom:396.240000px;}
.y12_c00401{bottom:413.161500px;}
.y11_c00401{bottom:430.233000px;}
.y10_c00401{bottom:446.908500px;}
.yf_c00401{bottom:463.492500px;}
.ye_c00401{bottom:480.393000px;}
.yd_c00401{bottom:496.896000px;}
.yc_c00401{bottom:514.032000px;}
.y3_c00401{bottom:529.741500px;}
.y4_c00401{bottom:530.244000px;}
.y5_c00401{bottom:530.472000px;}
.y6_c00401{bottom:531.000000px;}
.y7_c00401{bottom:531.127500px;}
.y8_c00401{bottom:531.358500px;}
.y9_c00401{bottom:531.910500px;}
.ya_c00401{bottom:532.113000px;}
.yb_c00401{bottom:532.713000px;}
.y2_c00401{bottom:548.466000px;}
.y1_c00401{bottom:559.878000px;}
.h11_c00401{height:22.050000px;}
.he_c00401{height:54.604614px;}
.hc_c00401{height:58.800000px;}
.h9_c00401{height:60.900000px;}
.hd_c00401{height:60.905146px;}
.ha_c00401{height:61.950000px;}
.hf_c00401{height:63.005323px;}
.h6_c00401{height:64.050000px;}
.h10_c00401{height:65.105501px;}
.h7_c00401{height:66.150000px;}
.h3_c00401{height:67.200000px;}
.h8_c00401{height:68.250000px;}
.hb_c00401{height:69.300000px;}
.h5_c00401{height:70.350000px;}
.h4_c00401{height:71.400000px;}
.h2_c00401{height:91.350000px;}
.h0_c00401{height:613.170000px;}
.h1_c00401{height:613.500000px;}
.w0_c00401{width:359.100000px;}
.w1_c00401{width:359.250000px;}
.x0_c00401{left:0.000000px;}
.x4b_c00401{left:45.900000px;}
.x24_c00401{left:48.600000px;}
.x1e_c00401{left:49.680000px;}
.x3_c00401{left:51.030000px;}
.x28_c00401{left:52.110000px;}
.x2f_c00401{left:59.400000px;}
.x3f_c00401{left:60.750000px;}
.x30_c00401{left:73.440000px;}
.x56_c00401{left:76.950000px;}
.x29_c00401{left:78.570000px;}
.x3a_c00401{left:80.190000px;}
.x5d_c00401{left:83.059500px;}
.x4_c00401{left:86.400000px;}
.x1f_c00401{left:88.020000px;}
.x31_c00401{left:90.180000px;}
.xb_c00401{left:97.372500px;}
.x40_c00401{left:100.980000px;}
.x5_c00401{left:102.330000px;}
.x37_c00401{left:104.760000px;}
.x13_c00401{left:106.380000px;}
.x47_c00401{left:108.000000px;}
.x5f_c00401{left:112.497000px;}
.x3b_c00401{left:115.290000px;}
.xc_c00401{left:118.144500px;}
.x4c_c00401{left:120.690000px;}
.x19_c00401{left:128.520000px;}
.x68_c00401{left:131.100551px;}
.x57_c00401{left:133.920000px;}
.x6_c00401{left:137.970000px;}
.x41_c00401{left:139.050000px;}
.x1_c00401{left:140.670000px;}
.x53_c00401{left:143.640000px;}
.x3c_c00401{left:146.340000px;}
.x25_c00401{left:147.690000px;}
.x49_c00401{left:153.090000px;}
.x32_c00401{left:155.250000px;}
.x69_c00401{left:158.189945px;}
.x14_c00401{left:160.110000px;}
.x42_c00401{left:162.270000px;}
.x58_c00401{left:164.160000px;}
.xd_c00401{left:166.140000px;}
.x2a_c00401{left:173.340000px;}
.x63_c00401{left:175.361409px;}
.xe_c00401{left:177.799500px;}
.x6d_c00401{left:181.580895px;}
.x33_c00401{left:183.060000px;}
.x20_c00401{left:188.730000px;}
.x54_c00401{left:190.350000px;}
.x2b_c00401{left:193.590000px;}
.x43_c00401{left:195.210000px;}
.xf_c00401{left:198.859500px;}
.x15_c00401{left:200.070000px;}
.x60_c00401{left:203.683500px;}
.x7_c00401{left:205.740000px;}
.x21_c00401{left:206.820000px;}
.x34_c00401{left:208.710000px;}
.x4d_c00401{left:211.140000px;}
.x1a_c00401{left:214.920000px;}
.x6e_c00401{left:217.544991px;}
.x51_c00401{left:219.780000px;}
.x26_c00401{left:222.480000px;}
.x16_c00401{left:227.610000px;}
.x44_c00401{left:231.660000px;}
.x64_c00401{left:233.764585px;}
.x6f_c00401{left:237.521211px;}
.x59_c00401{left:240.570000px;}
.x5c_c00401{left:242.892000px;}
.x38_c00401{left:245.970000px;}
.x22_c00401{left:247.590000px;}
.x10_c00401{left:249.025500px;}
.x45_c00401{left:251.100000px;}
.x2c_c00401{left:253.260000px;}
.x3d_c00401{left:255.150000px;}
.x6a_c00401{left:256.430781px;}
.x71_c00401{left:258.095495px;}
.x8_c00401{left:260.550000px;}
.x23_c00401{left:264.330000px;}
.x11_c00401{left:267.436500px;}
.x27_c00401{left:269.460000px;}
.x1b_c00401{left:271.620000px;}
.x61_c00401{left:273.948000px;}
.x35_c00401{left:275.130000px;}
.x2d_c00401{left:276.480000px;}
.x4e_c00401{left:278.100000px;}
.x6b_c00401{left:279.659468px;}
.x1c_c00401{left:282.420000px;}
.x9_c00401{left:284.580000px;}
.x5b_c00401{left:287.343000px;}
.x65_c00401{left:288.746574px;}
.x62_c00401{left:290.601077px;}
.x17_c00401{left:292.680000px;}
.x5a_c00401{left:295.110000px;}
.x4f_c00401{left:297.270000px;}
.x1d_c00401{left:299.430000px;}
.x5e_c00401{left:301.240500px;}
.x39_c00401{left:306.180000px;}
.x48_c00401{left:308.610000px;}
.x2e_c00401{left:312.930000px;}
.x6c_c00401{left:314.011296px;}
.x70_c00401{left:315.807669px;}
.x50_c00401{left:316.980000px;}
.x12_c00401{left:321.973500px;}
.x55_c00401{left:323.190000px;}
.x66_c00401{left:325.082259px;}
.x18_c00401{left:326.970000px;}
.xa_c00401{left:329.130000px;}
.x4a_c00401{left:330.480000px;}
.x52_c00401{left:332.370000px;}
.x36_c00401{left:333.450000px;}
.x46_c00401{left:334.530000px;}
.x2_c00401{left:337.500000px;}
.x3e_c00401{left:352.080000px;}
.x67_c00401{left:358.740698px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:0.000000pt;}
.fsf_c00401{font-size:19.600000pt;}
.fsc_c00401{font-size:48.537434pt;}
.fsa_c00401{font-size:52.266667pt;}
.fs7_c00401{font-size:54.133333pt;}
.fsb_c00401{font-size:54.137907pt;}
.fs8_c00401{font-size:55.066667pt;}
.fsd_c00401{font-size:56.004732pt;}
.fs4_c00401{font-size:56.933333pt;}
.fse_c00401{font-size:57.871556pt;}
.fs5_c00401{font-size:58.800000pt;}
.fs1_c00401{font-size:59.733333pt;}
.fs6_c00401{font-size:60.666667pt;}
.fs9_c00401{font-size:61.600000pt;}
.fs3_c00401{font-size:62.533333pt;}
.fs2_c00401{font-size:63.466667pt;}
.fs0_c00401{font-size:81.200000pt;}
.y0_c00401{bottom:0.000000pt;}
.y63_c00401{bottom:16.798816pt;}
.y64_c00401{bottom:19.082737pt;}
.y65_c00401{bottom:20.316699pt;}
.y66_c00401{bottom:20.884712pt;}
.y67_c00401{bottom:21.897805pt;}
.y68_c00401{bottom:22.366187pt;}
.y5c_c00401{bottom:31.917003pt;}
.y5d_c00401{bottom:32.625095pt;}
.y5e_c00401{bottom:33.955372pt;}
.y5f_c00401{bottom:34.605679pt;}
.y60_c00401{bottom:35.000763pt;}
.y61_c00401{bottom:35.767020pt;}
.y62_c00401{bottom:36.180713pt;}
.y52_c00401{bottom:48.235087pt;}
.y53_c00401{bottom:48.654544pt;}
.y54_c00401{bottom:49.264979pt;}
.y55_c00401{bottom:49.891357pt;}
.y56_c00401{bottom:50.140096pt;}
.y57_c00401{bottom:50.651697pt;}
.y58_c00401{bottom:50.935876pt;}
.y59_c00401{bottom:51.484737pt;}
.y5a_c00401{bottom:52.048555pt;}
.y5b_c00401{bottom:52.326685pt;}
.y49_c00401{bottom:63.359383pt;}
.y4a_c00401{bottom:64.693992pt;}
.y4b_c00401{bottom:65.151049pt;}
.y4c_c00401{bottom:65.424639pt;}
.y4d_c00401{bottom:65.961820pt;}
.y4e_c00401{bottom:66.181173pt;}
.y4f_c00401{bottom:66.810365pt;}
.y50_c00401{bottom:67.202807pt;}
.y51_c00401{bottom:67.782459pt;}
.y3e_c00401{bottom:78.478293pt;}
.y3f_c00401{bottom:78.871900pt;}
.y40_c00401{bottom:79.568387pt;}
.y41_c00401{bottom:80.269951pt;}
.y42_c00401{bottom:80.670731pt;}
.y43_c00401{bottom:81.359177pt;}
.y44_c00401{bottom:81.709673pt;}
.y45_c00401{bottom:82.687745pt;}
.y46_c00401{bottom:82.881759pt;}
.y47_c00401{bottom:83.334329pt;}
.y48_c00401{bottom:83.932640pt;}
.y36_c00401{bottom:91.451184pt;}
.y37_c00401{bottom:91.881315pt;}
.y38_c00401{bottom:93.018788pt;}
.y39_c00401{bottom:93.304543pt;}
.y3a_c00401{bottom:94.755648pt;}
.y3b_c00401{bottom:95.946329pt;}
.y3c_c00401{bottom:96.318141pt;}
.y3d_c00401{bottom:97.201965pt;}
.y2e_c00401{bottom:108.241333pt;}
.y2f_c00401{bottom:108.466355pt;}
.y30_c00401{bottom:108.831845pt;}
.y31_c00401{bottom:109.449519pt;}
.y32_c00401{bottom:109.885556pt;}
.y33_c00401{bottom:110.457192pt;}
.y34_c00401{bottom:110.697501pt;}
.y35_c00401{bottom:111.340325pt;}
.y29_c00401{bottom:124.082667pt;}
.y2a_c00401{bottom:124.465333pt;}
.y2b_c00401{bottom:124.653333pt;}
.y2c_c00401{bottom:125.802667pt;}
.y2d_c00401{bottom:127.181333pt;}
.y23_c00401{bottom:138.482667pt;}
.y24_c00401{bottom:139.305333pt;}
.y25_c00401{bottom:140.000000pt;}
.y26_c00401{bottom:140.169333pt;}
.y27_c00401{bottom:140.854667pt;}
.y28_c00401{bottom:141.776000pt;}
.y1c_c00401{bottom:154.805333pt;}
.y1d_c00401{bottom:155.692000pt;}
.y1e_c00401{bottom:156.040000pt;}
.y1f_c00401{bottom:157.190667pt;}
.y20_c00401{bottom:158.325333pt;}
.y21_c00401{bottom:159.405333pt;}
.y22_c00401{bottom:159.633333pt;}
.y1b_c00401{bottom:171.716000pt;}
.y69_c00401{bottom:197.760000pt;}
.y1a_c00401{bottom:200.224000pt;}
.y19_c00401{bottom:215.830667pt;}
.y18_c00401{bottom:230.502667pt;}
.y17_c00401{bottom:274.661333pt;}
.y16_c00401{bottom:306.102667pt;}
.y15_c00401{bottom:321.793333pt;}
.y14_c00401{bottom:336.846667pt;}
.y13_c00401{bottom:352.213333pt;}
.y12_c00401{bottom:367.254667pt;}
.y11_c00401{bottom:382.429333pt;}
.y10_c00401{bottom:397.252000pt;}
.yf_c00401{bottom:411.993333pt;}
.ye_c00401{bottom:427.016000pt;}
.yd_c00401{bottom:441.685333pt;}
.yc_c00401{bottom:456.917333pt;}
.y3_c00401{bottom:470.881333pt;}
.y4_c00401{bottom:471.328000pt;}
.y5_c00401{bottom:471.530667pt;}
.y6_c00401{bottom:472.000000pt;}
.y7_c00401{bottom:472.113333pt;}
.y8_c00401{bottom:472.318667pt;}
.y9_c00401{bottom:472.809333pt;}
.ya_c00401{bottom:472.989333pt;}
.yb_c00401{bottom:473.522667pt;}
.y2_c00401{bottom:487.525333pt;}
.y1_c00401{bottom:497.669333pt;}
.h11_c00401{height:19.600000pt;}
.he_c00401{height:48.537434pt;}
.hc_c00401{height:52.266667pt;}
.h9_c00401{height:54.133333pt;}
.hd_c00401{height:54.137907pt;}
.ha_c00401{height:55.066667pt;}
.hf_c00401{height:56.004732pt;}
.h6_c00401{height:56.933333pt;}
.h10_c00401{height:57.871556pt;}
.h7_c00401{height:58.800000pt;}
.h3_c00401{height:59.733333pt;}
.h8_c00401{height:60.666667pt;}
.hb_c00401{height:61.600000pt;}
.h5_c00401{height:62.533333pt;}
.h4_c00401{height:63.466667pt;}
.h2_c00401{height:81.200000pt;}
.h0_c00401{height:545.040000pt;}
.h1_c00401{height:545.333333pt;}
.w0_c00401{width:319.200000pt;}
.w1_c00401{width:319.333333pt;}
.x0_c00401{left:0.000000pt;}
.x4b_c00401{left:40.800000pt;}
.x24_c00401{left:43.200000pt;}
.x1e_c00401{left:44.160000pt;}
.x3_c00401{left:45.360000pt;}
.x28_c00401{left:46.320000pt;}
.x2f_c00401{left:52.800000pt;}
.x3f_c00401{left:54.000000pt;}
.x30_c00401{left:65.280000pt;}
.x56_c00401{left:68.400000pt;}
.x29_c00401{left:69.840000pt;}
.x3a_c00401{left:71.280000pt;}
.x5d_c00401{left:73.830667pt;}
.x4_c00401{left:76.800000pt;}
.x1f_c00401{left:78.240000pt;}
.x31_c00401{left:80.160000pt;}
.xb_c00401{left:86.553333pt;}
.x40_c00401{left:89.760000pt;}
.x5_c00401{left:90.960000pt;}
.x37_c00401{left:93.120000pt;}
.x13_c00401{left:94.560000pt;}
.x47_c00401{left:96.000000pt;}
.x5f_c00401{left:99.997333pt;}
.x3b_c00401{left:102.480000pt;}
.xc_c00401{left:105.017333pt;}
.x4c_c00401{left:107.280000pt;}
.x19_c00401{left:114.240000pt;}
.x68_c00401{left:116.533823pt;}
.x57_c00401{left:119.040000pt;}
.x6_c00401{left:122.640000pt;}
.x41_c00401{left:123.600000pt;}
.x1_c00401{left:125.040000pt;}
.x53_c00401{left:127.680000pt;}
.x3c_c00401{left:130.080000pt;}
.x25_c00401{left:131.280000pt;}
.x49_c00401{left:136.080000pt;}
.x32_c00401{left:138.000000pt;}
.x69_c00401{left:140.613284pt;}
.x14_c00401{left:142.320000pt;}
.x42_c00401{left:144.240000pt;}
.x58_c00401{left:145.920000pt;}
.xd_c00401{left:147.680000pt;}
.x2a_c00401{left:154.080000pt;}
.x63_c00401{left:155.876808pt;}
.xe_c00401{left:158.044000pt;}
.x6d_c00401{left:161.405240pt;}
.x33_c00401{left:162.720000pt;}
.x20_c00401{left:167.760000pt;}
.x54_c00401{left:169.200000pt;}
.x2b_c00401{left:172.080000pt;}
.x43_c00401{left:173.520000pt;}
.xf_c00401{left:176.764000pt;}
.x15_c00401{left:177.840000pt;}
.x60_c00401{left:181.052000pt;}
.x7_c00401{left:182.880000pt;}
.x21_c00401{left:183.840000pt;}
.x34_c00401{left:185.520000pt;}
.x4d_c00401{left:187.680000pt;}
.x1a_c00401{left:191.040000pt;}
.x6e_c00401{left:193.373325pt;}
.x51_c00401{left:195.360000pt;}
.x26_c00401{left:197.760000pt;}
.x16_c00401{left:202.320000pt;}
.x44_c00401{left:205.920000pt;}
.x64_c00401{left:207.790743pt;}
.x6f_c00401{left:211.129965pt;}
.x59_c00401{left:213.840000pt;}
.x5c_c00401{left:215.904000pt;}
.x38_c00401{left:218.640000pt;}
.x22_c00401{left:220.080000pt;}
.x10_c00401{left:221.356000pt;}
.x45_c00401{left:223.200000pt;}
.x2c_c00401{left:225.120000pt;}
.x3d_c00401{left:226.800000pt;}
.x6a_c00401{left:227.938472pt;}
.x71_c00401{left:229.418217pt;}
.x8_c00401{left:231.600000pt;}
.x23_c00401{left:234.960000pt;}
.x11_c00401{left:237.721333pt;}
.x27_c00401{left:239.520000pt;}
.x1b_c00401{left:241.440000pt;}
.x61_c00401{left:243.509333pt;}
.x35_c00401{left:244.560000pt;}
.x2d_c00401{left:245.760000pt;}
.x4e_c00401{left:247.200000pt;}
.x6b_c00401{left:248.586193pt;}
.x1c_c00401{left:251.040000pt;}
.x9_c00401{left:252.960000pt;}
.x5b_c00401{left:255.416000pt;}
.x65_c00401{left:256.663621pt;}
.x62_c00401{left:258.312068pt;}
.x17_c00401{left:260.160000pt;}
.x5a_c00401{left:262.320000pt;}
.x4f_c00401{left:264.240000pt;}
.x1d_c00401{left:266.160000pt;}
.x5e_c00401{left:267.769333pt;}
.x39_c00401{left:272.160000pt;}
.x48_c00401{left:274.320000pt;}
.x2e_c00401{left:278.160000pt;}
.x6c_c00401{left:279.121152pt;}
.x70_c00401{left:280.717928pt;}
.x50_c00401{left:281.760000pt;}
.x12_c00401{left:286.198667pt;}
.x55_c00401{left:287.280000pt;}
.x66_c00401{left:288.962008pt;}
.x18_c00401{left:290.640000pt;}
.xa_c00401{left:292.560000pt;}
.x4a_c00401{left:293.760000pt;}
.x52_c00401{left:295.440000pt;}
.x36_c00401{left:296.400000pt;}
.x46_c00401{left:297.360000pt;}
.x2_c00401{left:300.000000pt;}
.x3e_c00401{left:312.960000pt;}
.x67_c00401{left:318.880620pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00402 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00402 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00402 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00402 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00402.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00402{transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012540,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.125210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125210,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00402{transform:matrix(0.153715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153715,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);}
.me4_c00402{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.md8_c00402{transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);}
.md4_c00402{transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);}
.ma2_c00402{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mec_c00402{transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159195,0.000000,0.000000,0.250000,0,0);}
.m9e_c00402{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.md7_c00402{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.m90_c00402{transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);}
.ma3_c00402{transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.165335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165335,0.000000,0.000000,0.250000,0,0);}
.m79_c00402{transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167765,0.000000,0.000000,0.250000,0,0);}
.mef_c00402{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168590,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.m9d_c00402{transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170530,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.mc5_c00402{transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);}
.mbd_c00402{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.mb6_c00402{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.mea_c00402{transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173470,0.000000,0.000000,0.250000,0,0);}
.md6_c00402{transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);}
.ma7_c00402{transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173980,0.000000,0.000000,0.250000,0,0);}
.mdf_c00402{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m98_c00402{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.md1_c00402{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.md0_c00402{transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175660,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.m7f_c00402{transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);}
.me2_c00402{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.mb7_c00402{transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.me7_c00402{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.182090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182090,0.000000,0.000000,0.250000,0,0);}
.mc9_c00402{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.mb8_c00402{transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.ma5_c00402{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m88_c00402{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.mb5_c00402{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);}
.m7c_c00402{transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184565,0.000000,0.000000,0.250000,0,0);}
.m85_c00402{transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);}
.me8_c00402{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m86_c00402{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.mdb_c00402{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.mbf_c00402{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.mdc_c00402{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.m89_c00402{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.m7e_c00402{transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188010,0.000000,0.000000,0.250000,0,0);}
.m83_c00402{transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.mb9_c00402{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m76_c00402{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189245,0.000000,0.000000,0.250000,0,0);}
.mc8_c00402{transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);}
.mcf_c00402{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.me6_c00402{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.mc4_c00402{transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);}
.md3_c00402{transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m8e_c00402{transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191280,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193030,0.000000,0.000000,0.250000,0,0);}
.mdd_c00402{transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194130,0.000000,0.000000,0.250000,0,0);}
.mbb_c00402{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.ma1_c00402{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196290,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mce_c00402{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.m80_c00402{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.mc3_c00402{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.m7a_c00402{transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);}
.m8c_c00402{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.mba_c00402{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.mc6_c00402{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m81_c00402{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);}
.mc7_c00402{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.mcb_c00402{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m92_c00402{transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);}
.m71_c00402{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.m6e_c00402{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mae_c00402{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.202095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202095,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m9c_c00402{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.mb3_c00402{transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);}
.mde_c00402{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.med_c00402{transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204015,0.000000,0.000000,0.250000,0,0);}
.me0_c00402{transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);}
.mcc_c00402{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m66_c00402{transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);}
.m84_c00402{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.mad_c00402{transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m95_c00402{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m57_c00402{transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208240,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m73_c00402{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00402{transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mc2_c00402{transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211520,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.md2_c00402{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);}
.m6a_c00402{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m3c_c00402{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.m94_c00402{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.mcd_c00402{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.mbc_c00402{transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213160,0.000000,0.000000,0.250000,0,0);}
.mbe_c00402{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.mee_c00402{transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);}
.me5_c00402{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.mc1_c00402{transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);}
.maa_c00402{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.me1_c00402{transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215220,0.000000,0.000000,0.250000,0,0);}
.m8b_c00402{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216035,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m75_c00402{transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217715,0.000000,0.000000,0.250000,0,0);}
.m6f_c00402{transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219335,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);}
.m63_c00402{transform:matrix(0.220785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220785,0.000000,0.000000,0.250000,0,0);}
.mab_c00402{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.mac_c00402{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.meb_c00402{transform:matrix(0.222680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222680,0.000000,0.000000,0.250000,0,0);}
.mca_c00402{transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222905,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.ma0_c00402{transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.md5_c00402{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);}
.m8d_c00402{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230970,0.000000,0.000000,0.250000,0,0);}
.maf_c00402{transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);}
.me3_c00402{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00402{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m6c_c00402{transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.me9_c00402{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.ma8_c00402{transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);}
.md9_c00402{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.m61_c00402{transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);}
.m74_c00402{transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);}
.m6d_c00402{transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);}
.m39_c00402{transform:matrix(0.264940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264940,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.269075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269075,0.000000,0.000000,0.250000,0,0);}
.m68_c00402{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295695,0.000000,0.000000,0.250000,0,0);}
.m99_c00402{transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);}
.mda_c00402{transform:matrix(0.323315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323315,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.346370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346370,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{transform:matrix(0.355355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355355,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{transform:matrix(0.381745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381745,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.391010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391010,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{transform:matrix(0.474420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474420,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
.fc0_c00402{color:transparent;}
.fsf_c00402{font-size:22.050000px;}
.fs8_c00402{font-size:53.550000px;}
.fs5_c00402{font-size:55.650000px;}
.fs3_c00402{font-size:57.750000px;}
.fs1_c00402{font-size:58.800000px;}
.fs6_c00402{font-size:60.900000px;}
.fsa_c00402{font-size:61.950000px;}
.fs2_c00402{font-size:63.000000px;}
.fsd_c00402{font-size:64.050000px;}
.fse_c00402{font-size:65.100000px;}
.fs9_c00402{font-size:66.150000px;}
.fs7_c00402{font-size:67.200000px;}
.fs4_c00402{font-size:68.250000px;}
.fsc_c00402{font-size:69.300000px;}
.fsb_c00402{font-size:70.350000px;}
.fs0_c00402{font-size:80.850000px;}
.y0_c00402{bottom:0.000000px;}
.y3e_c00402{bottom:31.339500px;}
.y3d_c00402{bottom:32.692500px;}
.y3c_c00402{bottom:33.489000px;}
.y3b_c00402{bottom:33.859500px;}
.y3a_c00402{bottom:34.207500px;}
.y39_c00402{bottom:34.585500px;}
.y38_c00402{bottom:35.100000px;}
.y37_c00402{bottom:48.861000px;}
.y36_c00402{bottom:65.931000px;}
.y35_c00402{bottom:81.870000px;}
.y34_c00402{bottom:99.951000px;}
.y33_c00402{bottom:117.384000px;}
.y32_c00402{bottom:132.810000px;}
.y31_c00402{bottom:134.454000px;}
.y30_c00402{bottom:134.998500px;}
.y2f_c00402{bottom:135.900000px;}
.y2e_c00402{bottom:137.703000px;}
.y2d_c00402{bottom:151.374000px;}
.y2c_c00402{bottom:167.370000px;}
.y2b_c00402{bottom:184.557000px;}
.y2a_c00402{bottom:200.460000px;}
.y29_c00402{bottom:217.426500px;}
.y28_c00402{bottom:235.780500px;}
.y3f_c00402{bottom:241.650000px;}
.y27_c00402{bottom:251.463000px;}
.y26_c00402{bottom:252.235500px;}
.y25_c00402{bottom:252.945000px;}
.y24_c00402{bottom:253.473000px;}
.y23_c00402{bottom:253.732500px;}
.y22_c00402{bottom:254.340000px;}
.y21_c00402{bottom:269.545500px;}
.y20_c00402{bottom:286.833000px;}
.y1f_c00402{bottom:303.867000px;}
.y1e_c00402{bottom:320.932500px;}
.y1d_c00402{bottom:337.563000px;}
.y1c_c00402{bottom:353.631000px;}
.y13_c00402{bottom:369.360000px;}
.y14_c00402{bottom:369.654000px;}
.y15_c00402{bottom:370.245000px;}
.y16_c00402{bottom:370.444500px;}
.y17_c00402{bottom:370.687500px;}
.y18_c00402{bottom:371.269500px;}
.y19_c00402{bottom:371.445000px;}
.y1a_c00402{bottom:372.238500px;}
.y1b_c00402{bottom:372.466500px;}
.y12_c00402{bottom:386.040000px;}
.y11_c00402{bottom:404.580000px;}
.y10_c00402{bottom:420.081000px;}
.y9_c00402{bottom:435.243000px;}
.ya_c00402{bottom:435.712500px;}
.yb_c00402{bottom:436.240500px;}
.yc_c00402{bottom:436.822500px;}
.yd_c00402{bottom:437.166000px;}
.ye_c00402{bottom:437.425500px;}
.yf_c00402{bottom:438.160500px;}
.y8_c00402{bottom:454.620000px;}
.y7_c00402{bottom:471.358500px;}
.y6_c00402{bottom:488.427000px;}
.y5_c00402{bottom:504.711000px;}
.y4_c00402{bottom:522.925500px;}
.y3_c00402{bottom:538.060500px;}
.y2_c00402{bottom:556.881000px;}
.y1_c00402{bottom:568.224000px;}
.h11_c00402{height:22.050000px;}
.ha_c00402{height:53.550000px;}
.h7_c00402{height:55.650000px;}
.h5_c00402{height:57.750000px;}
.h3_c00402{height:58.800000px;}
.h8_c00402{height:60.900000px;}
.hc_c00402{height:61.950000px;}
.h4_c00402{height:63.000000px;}
.hf_c00402{height:64.050000px;}
.h10_c00402{height:65.100000px;}
.hb_c00402{height:66.150000px;}
.h9_c00402{height:67.200000px;}
.h6_c00402{height:68.250000px;}
.he_c00402{height:69.300000px;}
.hd_c00402{height:70.350000px;}
.h2_c00402{height:80.850000px;}
.h0_c00402{height:613.170000px;}
.h1_c00402{height:613.500000px;}
.w0_c00402{width:359.100000px;}
.w1_c00402{width:359.250000px;}
.x0_c00402{left:0.000000px;}
.x3_c00402{left:14.850000px;}
.x14_c00402{left:17.010000px;}
.x4a_c00402{left:18.090000px;}
.xc_c00402{left:19.440000px;}
.x35_c00402{left:20.521500px;}
.x47_c00402{left:23.490000px;}
.x57_c00402{left:24.570000px;}
.x72_c00402{left:26.193000px;}
.x60_c00402{left:27.541500px;}
.x63_c00402{left:28.891500px;}
.x4_c00402{left:39.960000px;}
.x36_c00402{left:41.311500px;}
.x2a_c00402{left:42.930000px;}
.x53_c00402{left:44.550000px;}
.x3e_c00402{left:46.171500px;}
.x43_c00402{left:47.373000px;}
.x1b_c00402{left:51.570000px;}
.x25_c00402{left:57.240000px;}
.xd_c00402{left:59.130000px;}
.x6d_c00402{left:62.101500px;}
.x5a_c00402{left:63.990000px;}
.x2b_c00402{left:66.150000px;}
.x54_c00402{left:68.310000px;}
.x26_c00402{left:71.280000px;}
.x73_c00402{left:74.793000px;}
.xe_c00402{left:79.380000px;}
.x4f_c00402{left:81.000000px;}
.x15_c00402{left:82.080000px;}
.x58_c00402{left:83.970000px;}
.x5b_c00402{left:87.210000px;}
.x76_c00402{left:88.293000px;}
.x5_c00402{left:91.530000px;}
.x4b_c00402{left:92.610000px;}
.x3c_c00402{left:95.041500px;}
.x69_c00402{left:98.281500px;}
.x77_c00402{left:99.903000px;}
.x31_c00402{left:101.941500px;}
.x6_c00402{left:103.950000px;}
.x16_c00402{left:105.030000px;}
.x5e_c00402{left:107.119500px;}
.x64_c00402{left:110.161500px;}
.x20_c00402{left:111.510000px;}
.x59_c00402{left:112.590000px;}
.x3f_c00402{left:114.481500px;}
.x1c_c00402{left:115.830000px;}
.x37_c00402{left:120.151500px;}
.x2c_c00402{left:121.770000px;}
.x55_c00402{left:123.390000px;}
.x5c_c00402{left:124.470000px;}
.x79_c00402{left:126.633000px;}
.x61_c00402{left:129.601500px;}
.x2d_c00402{left:136.350000px;}
.x38_c00402{left:137.971500px;}
.x44_c00402{left:141.321000px;}
.x65_c00402{left:143.911500px;}
.x1_c00402{left:145.260000px;}
.x62_c00402{left:150.121500px;}
.xf_c00402{left:151.470000px;}
.x70_c00402{left:153.969000px;}
.x7_c00402{left:155.250000px;}
.x17_c00402{left:157.140000px;}
.x27_c00402{left:159.840000px;}
.x48_c00402{left:161.730000px;}
.x66_c00402{left:164.161500px;}
.x40_c00402{left:165.781500px;}
.x78_c00402{left:168.483000px;}
.x21_c00402{left:170.910000px;}
.x74_c00402{left:174.693000px;}
.x10_c00402{left:177.660000px;}
.x32_c00402{left:179.163000px;}
.x8_c00402{left:180.900000px;}
.x7c_c00402{left:184.143000px;}
.x2e_c00402{left:186.840000px;}
.x7a_c00402{left:189.003000px;}
.x75_c00402{left:190.893000px;}
.x45_c00402{left:194.187000px;}
.x22_c00402{left:197.640000px;}
.x11_c00402{left:198.990000px;}
.x33_c00402{left:200.757000px;}
.x6a_c00402{left:202.501500px;}
.x6b_c00402{left:203.851500px;}
.x41_c00402{left:206.551500px;}
.x9_c00402{left:209.250000px;}
.x67_c00402{left:210.871500px;}
.x18_c00402{left:213.570000px;}
.x39_c00402{left:214.921500px;}
.x2f_c00402{left:216.270000px;}
.xa_c00402{left:218.430000px;}
.x7b_c00402{left:219.513000px;}
.x3d_c00402{left:224.371500px;}
.x56_c00402{left:226.530000px;}
.x1d_c00402{left:229.500000px;}
.x5f_c00402{left:230.997000px;}
.x3a_c00402{left:233.011500px;}
.x42_c00402{left:235.711500px;}
.x30_c00402{left:236.790000px;}
.x50_c00402{left:239.490000px;}
.x2_c00402{left:242.460000px;}
.x4c_c00402{left:248.940000px;}
.x1e_c00402{left:250.830000px;}
.x51_c00402{left:252.990000px;}
.x71_c00402{left:258.154500px;}
.x23_c00402{left:259.740000px;}
.x6e_c00402{left:260.821500px;}
.x34_c00402{left:262.054500px;}
.x19_c00402{left:263.250000px;}
.x12_c00402{left:265.680000px;}
.x4d_c00402{left:267.300000px;}
.x3b_c00402{left:270.541500px;}
.x52_c00402{left:275.670000px;}
.x6c_c00402{left:277.291500px;}
.x7d_c00402{left:279.723000px;}
.x28_c00402{left:282.960000px;}
.xb_c00402{left:284.580000px;}
.x1a_c00402{left:290.250000px;}
.x24_c00402{left:292.950000px;}
.x13_c00402{left:294.030000px;}
.x29_c00402{left:296.190000px;}
.x1f_c00402{left:299.430000px;}
.x49_c00402{left:301.050000px;}
.x46_c00402{left:303.048000px;}
.x68_c00402{left:304.831500px;}
.x4e_c00402{left:308.610000px;}
.x5d_c00402{left:313.200000px;}
.x6f_c00402{left:315.091500px;}
.x7e_c00402{left:319.410000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
.fsf_c00402{font-size:19.600000pt;}
.fs8_c00402{font-size:47.600000pt;}
.fs5_c00402{font-size:49.466667pt;}
.fs3_c00402{font-size:51.333333pt;}
.fs1_c00402{font-size:52.266667pt;}
.fs6_c00402{font-size:54.133333pt;}
.fsa_c00402{font-size:55.066667pt;}
.fs2_c00402{font-size:56.000000pt;}
.fsd_c00402{font-size:56.933333pt;}
.fse_c00402{font-size:57.866667pt;}
.fs9_c00402{font-size:58.800000pt;}
.fs7_c00402{font-size:59.733333pt;}
.fs4_c00402{font-size:60.666667pt;}
.fsc_c00402{font-size:61.600000pt;}
.fsb_c00402{font-size:62.533333pt;}
.fs0_c00402{font-size:71.866667pt;}
.y0_c00402{bottom:0.000000pt;}
.y3e_c00402{bottom:27.857333pt;}
.y3d_c00402{bottom:29.060000pt;}
.y3c_c00402{bottom:29.768000pt;}
.y3b_c00402{bottom:30.097333pt;}
.y3a_c00402{bottom:30.406667pt;}
.y39_c00402{bottom:30.742667pt;}
.y38_c00402{bottom:31.200000pt;}
.y37_c00402{bottom:43.432000pt;}
.y36_c00402{bottom:58.605333pt;}
.y35_c00402{bottom:72.773333pt;}
.y34_c00402{bottom:88.845333pt;}
.y33_c00402{bottom:104.341333pt;}
.y32_c00402{bottom:118.053333pt;}
.y31_c00402{bottom:119.514667pt;}
.y30_c00402{bottom:119.998667pt;}
.y2f_c00402{bottom:120.800000pt;}
.y2e_c00402{bottom:122.402667pt;}
.y2d_c00402{bottom:134.554667pt;}
.y2c_c00402{bottom:148.773333pt;}
.y2b_c00402{bottom:164.050667pt;}
.y2a_c00402{bottom:178.186667pt;}
.y29_c00402{bottom:193.268000pt;}
.y28_c00402{bottom:209.582667pt;}
.y3f_c00402{bottom:214.800000pt;}
.y27_c00402{bottom:223.522667pt;}
.y26_c00402{bottom:224.209333pt;}
.y25_c00402{bottom:224.840000pt;}
.y24_c00402{bottom:225.309333pt;}
.y23_c00402{bottom:225.540000pt;}
.y22_c00402{bottom:226.080000pt;}
.y21_c00402{bottom:239.596000pt;}
.y20_c00402{bottom:254.962667pt;}
.y1f_c00402{bottom:270.104000pt;}
.y1e_c00402{bottom:285.273333pt;}
.y1d_c00402{bottom:300.056000pt;}
.y1c_c00402{bottom:314.338667pt;}
.y13_c00402{bottom:328.320000pt;}
.y14_c00402{bottom:328.581333pt;}
.y15_c00402{bottom:329.106667pt;}
.y16_c00402{bottom:329.284000pt;}
.y17_c00402{bottom:329.500000pt;}
.y18_c00402{bottom:330.017333pt;}
.y19_c00402{bottom:330.173333pt;}
.y1a_c00402{bottom:330.878667pt;}
.y1b_c00402{bottom:331.081333pt;}
.y12_c00402{bottom:343.146667pt;}
.y11_c00402{bottom:359.626667pt;}
.y10_c00402{bottom:373.405333pt;}
.y9_c00402{bottom:386.882667pt;}
.ya_c00402{bottom:387.300000pt;}
.yb_c00402{bottom:387.769333pt;}
.yc_c00402{bottom:388.286667pt;}
.yd_c00402{bottom:388.592000pt;}
.ye_c00402{bottom:388.822667pt;}
.yf_c00402{bottom:389.476000pt;}
.y8_c00402{bottom:404.106667pt;}
.y7_c00402{bottom:418.985333pt;}
.y6_c00402{bottom:434.157333pt;}
.y5_c00402{bottom:448.632000pt;}
.y4_c00402{bottom:464.822667pt;}
.y3_c00402{bottom:478.276000pt;}
.y2_c00402{bottom:495.005333pt;}
.y1_c00402{bottom:505.088000pt;}
.h11_c00402{height:19.600000pt;}
.ha_c00402{height:47.600000pt;}
.h7_c00402{height:49.466667pt;}
.h5_c00402{height:51.333333pt;}
.h3_c00402{height:52.266667pt;}
.h8_c00402{height:54.133333pt;}
.hc_c00402{height:55.066667pt;}
.h4_c00402{height:56.000000pt;}
.hf_c00402{height:56.933333pt;}
.h10_c00402{height:57.866667pt;}
.hb_c00402{height:58.800000pt;}
.h9_c00402{height:59.733333pt;}
.h6_c00402{height:60.666667pt;}
.he_c00402{height:61.600000pt;}
.hd_c00402{height:62.533333pt;}
.h2_c00402{height:71.866667pt;}
.h0_c00402{height:545.040000pt;}
.h1_c00402{height:545.333333pt;}
.w0_c00402{width:319.200000pt;}
.w1_c00402{width:319.333333pt;}
.x0_c00402{left:0.000000pt;}
.x3_c00402{left:13.200000pt;}
.x14_c00402{left:15.120000pt;}
.x4a_c00402{left:16.080000pt;}
.xc_c00402{left:17.280000pt;}
.x35_c00402{left:18.241333pt;}
.x47_c00402{left:20.880000pt;}
.x57_c00402{left:21.840000pt;}
.x72_c00402{left:23.282667pt;}
.x60_c00402{left:24.481333pt;}
.x63_c00402{left:25.681333pt;}
.x4_c00402{left:35.520000pt;}
.x36_c00402{left:36.721333pt;}
.x2a_c00402{left:38.160000pt;}
.x53_c00402{left:39.600000pt;}
.x3e_c00402{left:41.041333pt;}
.x43_c00402{left:42.109333pt;}
.x1b_c00402{left:45.840000pt;}
.x25_c00402{left:50.880000pt;}
.xd_c00402{left:52.560000pt;}
.x6d_c00402{left:55.201333pt;}
.x5a_c00402{left:56.880000pt;}
.x2b_c00402{left:58.800000pt;}
.x54_c00402{left:60.720000pt;}
.x26_c00402{left:63.360000pt;}
.x73_c00402{left:66.482667pt;}
.xe_c00402{left:70.560000pt;}
.x4f_c00402{left:72.000000pt;}
.x15_c00402{left:72.960000pt;}
.x58_c00402{left:74.640000pt;}
.x5b_c00402{left:77.520000pt;}
.x76_c00402{left:78.482667pt;}
.x5_c00402{left:81.360000pt;}
.x4b_c00402{left:82.320000pt;}
.x3c_c00402{left:84.481333pt;}
.x69_c00402{left:87.361333pt;}
.x77_c00402{left:88.802667pt;}
.x31_c00402{left:90.614667pt;}
.x6_c00402{left:92.400000pt;}
.x16_c00402{left:93.360000pt;}
.x5e_c00402{left:95.217333pt;}
.x64_c00402{left:97.921333pt;}
.x20_c00402{left:99.120000pt;}
.x59_c00402{left:100.080000pt;}
.x3f_c00402{left:101.761333pt;}
.x1c_c00402{left:102.960000pt;}
.x37_c00402{left:106.801333pt;}
.x2c_c00402{left:108.240000pt;}
.x55_c00402{left:109.680000pt;}
.x5c_c00402{left:110.640000pt;}
.x79_c00402{left:112.562667pt;}
.x61_c00402{left:115.201333pt;}
.x2d_c00402{left:121.200000pt;}
.x38_c00402{left:122.641333pt;}
.x44_c00402{left:125.618667pt;}
.x65_c00402{left:127.921333pt;}
.x1_c00402{left:129.120000pt;}
.x62_c00402{left:133.441333pt;}
.xf_c00402{left:134.640000pt;}
.x70_c00402{left:136.861333pt;}
.x7_c00402{left:138.000000pt;}
.x17_c00402{left:139.680000pt;}
.x27_c00402{left:142.080000pt;}
.x48_c00402{left:143.760000pt;}
.x66_c00402{left:145.921333pt;}
.x40_c00402{left:147.361333pt;}
.x78_c00402{left:149.762667pt;}
.x21_c00402{left:151.920000pt;}
.x74_c00402{left:155.282667pt;}
.x10_c00402{left:157.920000pt;}
.x32_c00402{left:159.256000pt;}
.x8_c00402{left:160.800000pt;}
.x7c_c00402{left:163.682667pt;}
.x2e_c00402{left:166.080000pt;}
.x7a_c00402{left:168.002667pt;}
.x75_c00402{left:169.682667pt;}
.x45_c00402{left:172.610667pt;}
.x22_c00402{left:175.680000pt;}
.x11_c00402{left:176.880000pt;}
.x33_c00402{left:178.450667pt;}
.x6a_c00402{left:180.001333pt;}
.x6b_c00402{left:181.201333pt;}
.x41_c00402{left:183.601333pt;}
.x9_c00402{left:186.000000pt;}
.x67_c00402{left:187.441333pt;}
.x18_c00402{left:189.840000pt;}
.x39_c00402{left:191.041333pt;}
.x2f_c00402{left:192.240000pt;}
.xa_c00402{left:194.160000pt;}
.x7b_c00402{left:195.122667pt;}
.x3d_c00402{left:199.441333pt;}
.x56_c00402{left:201.360000pt;}
.x1d_c00402{left:204.000000pt;}
.x5f_c00402{left:205.330667pt;}
.x3a_c00402{left:207.121333pt;}
.x42_c00402{left:209.521333pt;}
.x30_c00402{left:210.480000pt;}
.x50_c00402{left:212.880000pt;}
.x2_c00402{left:215.520000pt;}
.x4c_c00402{left:221.280000pt;}
.x1e_c00402{left:222.960000pt;}
.x51_c00402{left:224.880000pt;}
.x71_c00402{left:229.470667pt;}
.x23_c00402{left:230.880000pt;}
.x6e_c00402{left:231.841333pt;}
.x34_c00402{left:232.937333pt;}
.x19_c00402{left:234.000000pt;}
.x12_c00402{left:236.160000pt;}
.x4d_c00402{left:237.600000pt;}
.x3b_c00402{left:240.481333pt;}
.x52_c00402{left:245.040000pt;}
.x6c_c00402{left:246.481333pt;}
.x7d_c00402{left:248.642667pt;}
.x28_c00402{left:251.520000pt;}
.xb_c00402{left:252.960000pt;}
.x1a_c00402{left:258.000000pt;}
.x24_c00402{left:260.400000pt;}
.x13_c00402{left:261.360000pt;}
.x29_c00402{left:263.280000pt;}
.x1f_c00402{left:266.160000pt;}
.x49_c00402{left:267.600000pt;}
.x46_c00402{left:269.376000pt;}
.x68_c00402{left:270.961333pt;}
.x4e_c00402{left:274.320000pt;}
.x5d_c00402{left:278.400000pt;}
.x6f_c00402{left:280.081333pt;}
.x7e_c00402{left:283.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00403 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00403.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00403{transform:matrix(0.064075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064075,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{transform:matrix(0.115830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115830,0.000000,0.000000,0.250000,0,0);}
.m90_c00403{transform:matrix(0.129410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129410,0.000000,0.000000,0.250000,0,0);}
.m89_c00403{transform:matrix(0.131170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131170,0.000000,0.000000,0.250000,0,0);}
.me3_c00403{transform:matrix(0.132855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132855,0.000000,0.000000,0.250000,0,0);}
.m58_c00403{transform:matrix(0.141045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141045,0.000000,0.000000,0.250000,0,0);}
.mb3_c00403{transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);}
.m66_c00403{transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);}
.md6_c00403{transform:matrix(0.148710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148710,0.000000,0.000000,0.250000,0,0);}
.mcb_c00403{transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);}
.mb7_c00403{transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);}
.mcf_c00403{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.mc9_c00403{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m8b_c00403{transform:matrix(0.154420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154420,0.000000,0.000000,0.250000,0,0);}
.m6f_c00403{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00403{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.ma5_c00403{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.m59_c00403{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.mbc_c00403{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.mdf_c00403{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.md8_c00403{transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165510,0.000000,0.000000,0.250000,0,0);}
.mc5_c00403{transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);}
.m72_c00403{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m42_c00403{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00403{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m24_c00403{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m56_c00403{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.m40_c00403{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m70_c00403{transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171390,0.000000,0.000000,0.250000,0,0);}
.m6d_c00403{transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00403{transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174230,0.000000,0.000000,0.250000,0,0);}
.m2d_c00403{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m20_c00403{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.mad_c00403{transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);}
.md5_c00403{transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177695,0.000000,0.000000,0.250000,0,0);}
.mca_c00403{transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178070,0.000000,0.000000,0.250000,0,0);}
.m64_c00403{transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178580,0.000000,0.000000,0.250000,0,0);}
.md1_c00403{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.m8e_c00403{transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180340,0.000000,0.000000,0.250000,0,0);}
.m9d_c00403{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m62_c00403{transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182515,0.000000,0.000000,0.250000,0,0);}
.m78_c00403{transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.m57_c00403{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.m84_c00403{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.m5c_c00403{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.m87_c00403{transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);}
.md9_c00403{transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);}
.m8a_c00403{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m63_c00403{transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.ma7_c00403{transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);}
.mac_c00403{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m4b_c00403{transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);}
.m69_c00403{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m82_c00403{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.maa_c00403{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m47_c00403{transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);}
.m8d_c00403{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.mab_c00403{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00403{transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);}
.m97_c00403{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m48_c00403{transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194460,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00403{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m2e_c00403{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.m79_c00403{transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);}
.m4e_c00403{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.m96_c00403{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.m92_c00403{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198310,0.000000,0.000000,0.250000,0,0);}
.m80_c00403{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.mdb_c00403{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);}
.mc3_c00403{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00403{transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m7b_c00403{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m88_c00403{transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.mae_c00403{transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);}
.mb1_c00403{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.m3f_c00403{transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00403{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.md7_c00403{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.mcc_c00403{transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);}
.m71_c00403{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m5b_c00403{transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203620,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);}
.m34_c00403{transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);}
.m9a_c00403{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.me0_c00403{transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);}
.mbb_c00403{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.ma6_c00403{transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205060,0.000000,0.000000,0.250000,0,0);}
.m2c_c00403{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m83_c00403{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mce_c00403{transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206990,0.000000,0.000000,0.250000,0,0);}
.m60_c00403{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.ma3_c00403{transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);}
.mb0_c00403{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.maf_c00403{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.m91_c00403{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m3e_c00403{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.mbd_c00403{transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);}
.m51_c00403{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.m39_c00403{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m8c_c00403{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210430,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.md3_c00403{transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);}
.m36_c00403{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.m30_c00403{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m5f_c00403{transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);}
.m4a_c00403{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.m3d_c00403{transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212845,0.000000,0.000000,0.250000,0,0);}
.m7e_c00403{transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00403{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m6b_c00403{transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213595,0.000000,0.000000,0.250000,0,0);}
.m29_c00403{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m49_c00403{transform:matrix(0.213815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213815,0.000000,0.000000,0.250000,0,0);}
.mc8_c00403{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);}
.mc4_c00403{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);}
.m74_c00403{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.mb6_c00403{transform:matrix(0.217020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217020,0.000000,0.000000,0.250000,0,0);}
.me1_c00403{transform:matrix(0.217990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217990,0.000000,0.000000,0.250000,0,0);}
.m46_c00403{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218615,0.000000,0.000000,0.250000,0,0);}
.m35_c00403{transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);}
.mb9_c00403{transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);}
.m26_c00403{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.mb5_c00403{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);}
.m9b_c00403{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00403{transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);}
.ma9_c00403{transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);}
.m37_c00403{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m43_c00403{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m2b_c00403{transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);}
.m75_c00403{transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);}
.m77_c00403{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m7a_c00403{transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225470,0.000000,0.000000,0.250000,0,0);}
.mc0_c00403{transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);}
.ma4_c00403{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);}
.m73_c00403{transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00403{transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);}
.mdc_c00403{transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228830,0.000000,0.000000,0.250000,0,0);}
.m3b_c00403{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.md4_c00403{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m4c_c00403{transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00403{transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);}
.m41_c00403{transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230555,0.000000,0.000000,0.250000,0,0);}
.m54_c00403{transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230860,0.000000,0.000000,0.250000,0,0);}
.m68_c00403{transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);}
.m9c_c00403{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.mb8_c00403{transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00403{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m8f_c00403{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.m3c_c00403{transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.234790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234790,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);}
.m6c_c00403{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m98_c00403{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m5d_c00403{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m93_c00403{transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);}
.mde_c00403{transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);}
.m81_c00403{transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);}
.m65_c00403{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.md0_c00403{transform:matrix(0.240570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240570,0.000000,0.000000,0.250000,0,0);}
.m9f_c00403{transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);}
.mbe_c00403{transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243060,0.000000,0.000000,0.250000,0,0);}
.mdd_c00403{transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);}
.md2_c00403{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m50_c00403{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m28_c00403{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m61_c00403{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m67_c00403{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00403{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.m99_c00403{transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);}
.m55_c00403{transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);}
.mcd_c00403{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.258470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258470,0.000000,0.000000,0.250000,0,0);}
.m86_c00403{transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);}
.m94_c00403{transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261510,0.000000,0.000000,0.250000,0,0);}
.mb4_c00403{transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);}
.m85_c00403{transform:matrix(0.267270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267270,0.000000,0.000000,0.250000,0,0);}
.mba_c00403{transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m5e_c00403{transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00403{transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);}
.m33_c00403{transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);}
.m53_c00403{transform:matrix(0.284085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284085,0.000000,0.000000,0.250000,0,0);}
.mbf_c00403{transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);}
.me2_c00403{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m76_c00403{transform:matrix(0.309045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309045,0.000000,0.000000,0.250000,0,0);}
.mc7_c00403{transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312560,0.000000,0.000000,0.250000,0,0);}
.mda_c00403{transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);}
.m4f_c00403{transform:matrix(0.316345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316345,0.000000,0.000000,0.250000,0,0);}
.m9e_c00403{transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);}
.mc1_c00403{transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);}
.m32_c00403{transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);}
.m95_c00403{transform:matrix(0.360160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360160,0.000000,0.000000,0.250000,0,0);}
.m4d_c00403{transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);}
.mc6_c00403{transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);}
.m52_c00403{transform:matrix(0.488430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488430,0.000000,0.000000,0.250000,0,0);}
.ma1_c00403{transform:matrix(0.713195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713195,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
.fc0_c00403{color:transparent;}
.fs6_c00403{font-size:55.650000px;}
.fs8_c00403{font-size:58.800000px;}
.fs7_c00403{font-size:59.850000px;}
.fs5_c00403{font-size:60.900000px;}
.fs4_c00403{font-size:61.950000px;}
.fsa_c00403{font-size:63.000000px;}
.fs1_c00403{font-size:64.050000px;}
.fs9_c00403{font-size:65.100000px;}
.fs2_c00403{font-size:67.200000px;}
.fs3_c00403{font-size:68.250000px;}
.fsb_c00403{font-size:71.400000px;}
.fs0_c00403{font-size:77.700000px;}
.y0_c00403{bottom:0.000000px;}
.y56_c00403{bottom:25.396500px;}
.y4f_c00403{bottom:39.697500px;}
.y50_c00403{bottom:41.484000px;}
.y51_c00403{bottom:41.952000px;}
.y52_c00403{bottom:42.406500px;}
.y53_c00403{bottom:43.611000px;}
.y54_c00403{bottom:44.383500px;}
.y55_c00403{bottom:45.156000px;}
.y4e_c00403{bottom:58.117500px;}
.y48_c00403{bottom:73.983000px;}
.y49_c00403{bottom:74.763000px;}
.y4a_c00403{bottom:75.031500px;}
.y4b_c00403{bottom:75.408000px;}
.y4c_c00403{bottom:76.044000px;}
.y4d_c00403{bottom:76.974000px;}
.y47_c00403{bottom:92.167500px;}
.y40_c00403{bottom:105.846000px;}
.y41_c00403{bottom:106.965000px;}
.y42_c00403{bottom:107.245500px;}
.y43_c00403{bottom:108.337500px;}
.y44_c00403{bottom:108.745500px;}
.y45_c00403{bottom:109.875000px;}
.y46_c00403{bottom:110.784000px;}
.y3f_c00403{bottom:126.333000px;}
.y3e_c00403{bottom:143.071500px;}
.y3d_c00403{bottom:160.578000px;}
.y3c_c00403{bottom:175.806000px;}
.y3b_c00403{bottom:193.986000px;}
.y35_c00403{bottom:210.063000px;}
.y36_c00403{bottom:211.239000px;}
.y37_c00403{bottom:211.369500px;}
.y38_c00403{bottom:211.729500px;}
.y39_c00403{bottom:212.166000px;}
.y3a_c00403{bottom:212.814000px;}
.y34_c00403{bottom:228.957000px;}
.y33_c00403{bottom:245.548500px;}
.y32_c00403{bottom:263.218500px;}
.y31_c00403{bottom:280.231500px;}
.y30_c00403{bottom:297.319500px;}
.y2f_c00403{bottom:314.007000px;}
.y2e_c00403{bottom:330.985500px;}
.y25_c00403{bottom:347.764500px;}
.y26_c00403{bottom:348.106500px;}
.y27_c00403{bottom:348.357000px;}
.y28_c00403{bottom:348.640500px;}
.y29_c00403{bottom:348.843000px;}
.y2a_c00403{bottom:349.074000px;}
.y2b_c00403{bottom:349.383000px;}
.y2c_c00403{bottom:349.936500px;}
.y2d_c00403{bottom:350.577000px;}
.y24_c00403{bottom:365.466000px;}
.y23_c00403{bottom:382.497000px;}
.y22_c00403{bottom:399.390000px;}
.y18_c00403{bottom:413.914500px;}
.y19_c00403{bottom:414.403500px;}
.y1a_c00403{bottom:414.546000px;}
.y1b_c00403{bottom:415.030500px;}
.y1c_c00403{bottom:415.263000px;}
.y1d_c00403{bottom:415.726500px;}
.y1e_c00403{bottom:415.965000px;}
.y1f_c00403{bottom:416.638500px;}
.y20_c00403{bottom:416.800500px;}
.y21_c00403{bottom:417.568500px;}
.yf_c00403{bottom:427.689000px;}
.y10_c00403{bottom:428.766000px;}
.y11_c00403{bottom:429.241500px;}
.y12_c00403{bottom:430.008000px;}
.y13_c00403{bottom:430.425000px;}
.y14_c00403{bottom:431.032500px;}
.y15_c00403{bottom:431.877000px;}
.y16_c00403{bottom:433.011000px;}
.y17_c00403{bottom:433.273500px;}
.ye_c00403{bottom:450.270000px;}
.y7_c00403{bottom:464.941500px;}
.y8_c00403{bottom:465.190500px;}
.y9_c00403{bottom:465.708000px;}
.ya_c00403{bottom:465.849000px;}
.yb_c00403{bottom:465.994500px;}
.yc_c00403{bottom:466.477500px;}
.yd_c00403{bottom:467.250000px;}
.y6_c00403{bottom:484.051500px;}
.y5_c00403{bottom:500.871000px;}
.y4_c00403{bottom:517.287000px;}
.y3_c00403{bottom:534.471000px;}
.y2_c00403{bottom:551.427000px;}
.y1_c00403{bottom:565.110000px;}
.h8_c00403{height:55.650000px;}
.ha_c00403{height:58.800000px;}
.h9_c00403{height:59.850000px;}
.h7_c00403{height:60.900000px;}
.h6_c00403{height:61.950000px;}
.hc_c00403{height:63.000000px;}
.h3_c00403{height:64.050000px;}
.hb_c00403{height:65.100000px;}
.h4_c00403{height:67.200000px;}
.h5_c00403{height:68.250000px;}
.hd_c00403{height:71.400000px;}
.h2_c00403{height:77.700000px;}
.h0_c00403{height:613.170000px;}
.h1_c00403{height:613.500000px;}
.w0_c00403{width:359.100000px;}
.w1_c00403{width:359.250000px;}
.x0_c00403{left:0.000000px;}
.xd_c00403{left:43.470000px;}
.x3_c00403{left:44.550000px;}
.x12_c00403{left:45.630000px;}
.x35_c00403{left:48.330000px;}
.x45_c00403{left:58.048500px;}
.x42_c00403{left:63.178500px;}
.x32_c00403{left:66.150000px;}
.x1d_c00403{left:69.241500px;}
.x3d_c00403{left:79.770000px;}
.x2c_c00403{left:82.404000px;}
.x62_c00403{left:83.430000px;}
.x8_c00403{left:84.510000px;}
.x36_c00403{left:86.940000px;}
.x4b_c00403{left:92.608500px;}
.x13_c00403{left:93.690000px;}
.x24_c00403{left:96.732000px;}
.x66_c00403{left:97.740000px;}
.x19_c00403{left:102.060000px;}
.x3e_c00403{left:104.836500px;}
.x14_c00403{left:107.190000px;}
.x6c_c00403{left:108.268500px;}
.x9_c00403{left:109.890000px;}
.x4c_c00403{left:112.858500px;}
.x4d_c00403{left:115.288500px;}
.x48_c00403{left:116.908500px;}
.x25_c00403{left:119.391000px;}
.x1e_c00403{left:121.030500px;}
.x3a_c00403{left:122.850000px;}
.x60_c00403{left:123.930000px;}
.x69_c00403{left:126.072000px;}
.xe_c00403{left:127.980000px;}
.x2d_c00403{left:130.554000px;}
.x3f_c00403{left:133.233000px;}
.x1f_c00403{left:135.123000px;}
.x5e_c00403{left:136.620000px;}
.x6d_c00403{left:138.922500px;}
.x1a_c00403{left:141.480000px;}
.x46_c00403{left:143.368500px;}
.x51_c00403{left:144.988500px;}
.x33_c00403{left:146.340000px;}
.x2e_c00403{left:148.381500px;}
.x20_c00403{left:149.704500px;}
.x59_c00403{left:151.351500px;}
.x4_c00403{left:153.090000px;}
.x26_c00403{left:155.859000px;}
.x1b_c00403{left:159.570000px;}
.x15_c00403{left:161.460000px;}
.x5a_c00403{left:163.159500px;}
.xa_c00403{left:167.940000px;}
.x67_c00403{left:169.020000px;}
.x5f_c00403{left:171.450000px;}
.x3b_c00403{left:172.800000px;}
.x1_c00403{left:174.420000px;}
.x27_c00403{left:175.717500px;}
.xf_c00403{left:179.550000px;}
.x52_c00403{left:181.438500px;}
.x5_c00403{left:183.330000px;}
.x37_c00403{left:186.570000px;}
.x6a_c00403{left:190.294500px;}
.x43_c00403{left:192.508500px;}
.x5b_c00403{left:195.852000px;}
.x21_c00403{left:198.033000px;}
.x10_c00403{left:200.070000px;}
.x2f_c00403{left:202.387500px;}
.x28_c00403{left:204.679500px;}
.x40_c00403{left:207.477000px;}
.x63_c00403{left:214.650000px;}
.x55_c00403{left:216.538500px;}
.x16_c00403{left:225.180000px;}
.x49_c00403{left:227.338500px;}
.x4e_c00403{left:228.418500px;}
.x64_c00403{left:230.580000px;}
.x6_c00403{left:233.280000px;}
.x5c_c00403{left:235.522500px;}
.x44_c00403{left:237.058500px;}
.x6f_c00403{left:239.145000px;}
.x47_c00403{left:240.298500px;}
.x56_c00403{left:241.378500px;}
.x38_c00403{left:242.730000px;}
.x29_c00403{left:244.885500px;}
.x4a_c00403{left:248.668500px;}
.x68_c00403{left:250.020000px;}
.x39_c00403{left:251.910000px;}
.x30_c00403{left:254.221500px;}
.xb_c00403{left:256.770000px;}
.x17_c00403{left:258.390000px;}
.x3c_c00403{left:260.550000px;}
.x41_c00403{left:262.824000px;}
.x31_c00403{left:266.646000px;}
.x53_c00403{left:272.968500px;}
.x22_c00403{left:275.262000px;}
.x34_c00403{left:277.020000px;}
.x65_c00403{left:280.530000px;}
.x11_c00403{left:281.880000px;}
.x4f_c00403{left:284.578500px;}
.x57_c00403{left:288.628500px;}
.xc_c00403{left:291.060000px;}
.x5d_c00403{left:294.474000px;}
.x61_c00403{left:297.540000px;}
.x2a_c00403{left:298.861500px;}
.x54_c00403{left:299.968500px;}
.x23_c00403{left:301.321500px;}
.x50_c00403{left:307.258500px;}
.x2_c00403{left:308.340000px;}
.x2b_c00403{left:311.326500px;}
.x6e_c00403{left:315.510000px;}
.x58_c00403{left:317.248500px;}
.x70_c00403{left:320.217000px;}
.x7_c00403{left:321.300000px;}
.x18_c00403{left:322.920000px;}
.x1c_c00403{left:326.160000px;}
.x6b_c00403{left:334.216500px;}
.x71_c00403{left:342.357000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs6_c00403{font-size:49.466667pt;}
.fs8_c00403{font-size:52.266667pt;}
.fs7_c00403{font-size:53.200000pt;}
.fs5_c00403{font-size:54.133333pt;}
.fs4_c00403{font-size:55.066667pt;}
.fsa_c00403{font-size:56.000000pt;}
.fs1_c00403{font-size:56.933333pt;}
.fs9_c00403{font-size:57.866667pt;}
.fs2_c00403{font-size:59.733333pt;}
.fs3_c00403{font-size:60.666667pt;}
.fsb_c00403{font-size:63.466667pt;}
.fs0_c00403{font-size:69.066667pt;}
.y0_c00403{bottom:0.000000pt;}
.y56_c00403{bottom:22.574667pt;}
.y4f_c00403{bottom:35.286667pt;}
.y50_c00403{bottom:36.874667pt;}
.y51_c00403{bottom:37.290667pt;}
.y52_c00403{bottom:37.694667pt;}
.y53_c00403{bottom:38.765333pt;}
.y54_c00403{bottom:39.452000pt;}
.y55_c00403{bottom:40.138667pt;}
.y4e_c00403{bottom:51.660000pt;}
.y48_c00403{bottom:65.762667pt;}
.y49_c00403{bottom:66.456000pt;}
.y4a_c00403{bottom:66.694667pt;}
.y4b_c00403{bottom:67.029333pt;}
.y4c_c00403{bottom:67.594667pt;}
.y4d_c00403{bottom:68.421333pt;}
.y47_c00403{bottom:81.926667pt;}
.y40_c00403{bottom:94.085333pt;}
.y41_c00403{bottom:95.080000pt;}
.y42_c00403{bottom:95.329333pt;}
.y43_c00403{bottom:96.300000pt;}
.y44_c00403{bottom:96.662667pt;}
.y45_c00403{bottom:97.666667pt;}
.y46_c00403{bottom:98.474667pt;}
.y3f_c00403{bottom:112.296000pt;}
.y3e_c00403{bottom:127.174667pt;}
.y3d_c00403{bottom:142.736000pt;}
.y3c_c00403{bottom:156.272000pt;}
.y3b_c00403{bottom:172.432000pt;}
.y35_c00403{bottom:186.722667pt;}
.y36_c00403{bottom:187.768000pt;}
.y37_c00403{bottom:187.884000pt;}
.y38_c00403{bottom:188.204000pt;}
.y39_c00403{bottom:188.592000pt;}
.y3a_c00403{bottom:189.168000pt;}
.y34_c00403{bottom:203.517333pt;}
.y33_c00403{bottom:218.265333pt;}
.y32_c00403{bottom:233.972000pt;}
.y31_c00403{bottom:249.094667pt;}
.y30_c00403{bottom:264.284000pt;}
.y2f_c00403{bottom:279.117333pt;}
.y2e_c00403{bottom:294.209333pt;}
.y25_c00403{bottom:309.124000pt;}
.y26_c00403{bottom:309.428000pt;}
.y27_c00403{bottom:309.650667pt;}
.y28_c00403{bottom:309.902667pt;}
.y29_c00403{bottom:310.082667pt;}
.y2a_c00403{bottom:310.288000pt;}
.y2b_c00403{bottom:310.562667pt;}
.y2c_c00403{bottom:311.054667pt;}
.y2d_c00403{bottom:311.624000pt;}
.y24_c00403{bottom:324.858667pt;}
.y23_c00403{bottom:339.997333pt;}
.y22_c00403{bottom:355.013333pt;}
.y18_c00403{bottom:367.924000pt;}
.y19_c00403{bottom:368.358667pt;}
.y1a_c00403{bottom:368.485333pt;}
.y1b_c00403{bottom:368.916000pt;}
.y1c_c00403{bottom:369.122667pt;}
.y1d_c00403{bottom:369.534667pt;}
.y1e_c00403{bottom:369.746667pt;}
.y1f_c00403{bottom:370.345333pt;}
.y20_c00403{bottom:370.489333pt;}
.y21_c00403{bottom:371.172000pt;}
.yf_c00403{bottom:380.168000pt;}
.y10_c00403{bottom:381.125333pt;}
.y11_c00403{bottom:381.548000pt;}
.y12_c00403{bottom:382.229333pt;}
.y13_c00403{bottom:382.600000pt;}
.y14_c00403{bottom:383.140000pt;}
.y15_c00403{bottom:383.890667pt;}
.y16_c00403{bottom:384.898667pt;}
.y17_c00403{bottom:385.132000pt;}
.ye_c00403{bottom:400.240000pt;}
.y7_c00403{bottom:413.281333pt;}
.y8_c00403{bottom:413.502667pt;}
.y9_c00403{bottom:413.962667pt;}
.ya_c00403{bottom:414.088000pt;}
.yb_c00403{bottom:414.217333pt;}
.yc_c00403{bottom:414.646667pt;}
.yd_c00403{bottom:415.333333pt;}
.y6_c00403{bottom:430.268000pt;}
.y5_c00403{bottom:445.218667pt;}
.y4_c00403{bottom:459.810667pt;}
.y3_c00403{bottom:475.085333pt;}
.y2_c00403{bottom:490.157333pt;}
.y1_c00403{bottom:502.320000pt;}
.h8_c00403{height:49.466667pt;}
.ha_c00403{height:52.266667pt;}
.h9_c00403{height:53.200000pt;}
.h7_c00403{height:54.133333pt;}
.h6_c00403{height:55.066667pt;}
.hc_c00403{height:56.000000pt;}
.h3_c00403{height:56.933333pt;}
.hb_c00403{height:57.866667pt;}
.h4_c00403{height:59.733333pt;}
.h5_c00403{height:60.666667pt;}
.hd_c00403{height:63.466667pt;}
.h2_c00403{height:69.066667pt;}
.h0_c00403{height:545.040000pt;}
.h1_c00403{height:545.333333pt;}
.w0_c00403{width:319.200000pt;}
.w1_c00403{width:319.333333pt;}
.x0_c00403{left:0.000000pt;}
.xd_c00403{left:38.640000pt;}
.x3_c00403{left:39.600000pt;}
.x12_c00403{left:40.560000pt;}
.x35_c00403{left:42.960000pt;}
.x45_c00403{left:51.598667pt;}
.x42_c00403{left:56.158667pt;}
.x32_c00403{left:58.800000pt;}
.x1d_c00403{left:61.548000pt;}
.x3d_c00403{left:70.906667pt;}
.x2c_c00403{left:73.248000pt;}
.x62_c00403{left:74.160000pt;}
.x8_c00403{left:75.120000pt;}
.x36_c00403{left:77.280000pt;}
.x4b_c00403{left:82.318667pt;}
.x13_c00403{left:83.280000pt;}
.x24_c00403{left:85.984000pt;}
.x66_c00403{left:86.880000pt;}
.x19_c00403{left:90.720000pt;}
.x3e_c00403{left:93.188000pt;}
.x14_c00403{left:95.280000pt;}
.x6c_c00403{left:96.238667pt;}
.x9_c00403{left:97.680000pt;}
.x4c_c00403{left:100.318667pt;}
.x4d_c00403{left:102.478667pt;}
.x48_c00403{left:103.918667pt;}
.x25_c00403{left:106.125333pt;}
.x1e_c00403{left:107.582667pt;}
.x3a_c00403{left:109.200000pt;}
.x60_c00403{left:110.160000pt;}
.x69_c00403{left:112.064000pt;}
.xe_c00403{left:113.760000pt;}
.x2d_c00403{left:116.048000pt;}
.x3f_c00403{left:118.429333pt;}
.x1f_c00403{left:120.109333pt;}
.x5e_c00403{left:121.440000pt;}
.x6d_c00403{left:123.486667pt;}
.x1a_c00403{left:125.760000pt;}
.x46_c00403{left:127.438667pt;}
.x51_c00403{left:128.878667pt;}
.x33_c00403{left:130.080000pt;}
.x2e_c00403{left:131.894667pt;}
.x20_c00403{left:133.070667pt;}
.x59_c00403{left:134.534667pt;}
.x4_c00403{left:136.080000pt;}
.x26_c00403{left:138.541333pt;}
.x1b_c00403{left:141.840000pt;}
.x15_c00403{left:143.520000pt;}
.x5a_c00403{left:145.030667pt;}
.xa_c00403{left:149.280000pt;}
.x67_c00403{left:150.240000pt;}
.x5f_c00403{left:152.400000pt;}
.x3b_c00403{left:153.600000pt;}
.x1_c00403{left:155.040000pt;}
.x27_c00403{left:156.193333pt;}
.xf_c00403{left:159.600000pt;}
.x52_c00403{left:161.278667pt;}
.x5_c00403{left:162.960000pt;}
.x37_c00403{left:165.840000pt;}
.x6a_c00403{left:169.150667pt;}
.x43_c00403{left:171.118667pt;}
.x5b_c00403{left:174.090667pt;}
.x21_c00403{left:176.029333pt;}
.x10_c00403{left:177.840000pt;}
.x2f_c00403{left:179.900000pt;}
.x28_c00403{left:181.937333pt;}
.x40_c00403{left:184.424000pt;}
.x63_c00403{left:190.800000pt;}
.x55_c00403{left:192.478667pt;}
.x16_c00403{left:200.160000pt;}
.x49_c00403{left:202.078667pt;}
.x4e_c00403{left:203.038667pt;}
.x64_c00403{left:204.960000pt;}
.x6_c00403{left:207.360000pt;}
.x5c_c00403{left:209.353333pt;}
.x44_c00403{left:210.718667pt;}
.x6f_c00403{left:212.573333pt;}
.x47_c00403{left:213.598667pt;}
.x56_c00403{left:214.558667pt;}
.x38_c00403{left:215.760000pt;}
.x29_c00403{left:217.676000pt;}
.x4a_c00403{left:221.038667pt;}
.x68_c00403{left:222.240000pt;}
.x39_c00403{left:223.920000pt;}
.x30_c00403{left:225.974667pt;}
.xb_c00403{left:228.240000pt;}
.x17_c00403{left:229.680000pt;}
.x3c_c00403{left:231.600000pt;}
.x41_c00403{left:233.621333pt;}
.x31_c00403{left:237.018667pt;}
.x53_c00403{left:242.638667pt;}
.x22_c00403{left:244.677333pt;}
.x34_c00403{left:246.240000pt;}
.x65_c00403{left:249.360000pt;}
.x11_c00403{left:250.560000pt;}
.x4f_c00403{left:252.958667pt;}
.x57_c00403{left:256.558667pt;}
.xc_c00403{left:258.720000pt;}
.x5d_c00403{left:261.754667pt;}
.x61_c00403{left:264.480000pt;}
.x2a_c00403{left:265.654667pt;}
.x54_c00403{left:266.638667pt;}
.x23_c00403{left:267.841333pt;}
.x50_c00403{left:273.118667pt;}
.x2_c00403{left:274.080000pt;}
.x2b_c00403{left:276.734667pt;}
.x6e_c00403{left:280.453333pt;}
.x58_c00403{left:281.998667pt;}
.x70_c00403{left:284.637333pt;}
.x7_c00403{left:285.600000pt;}
.x18_c00403{left:287.040000pt;}
.x1c_c00403{left:289.920000pt;}
.x6b_c00403{left:297.081333pt;}
.x71_c00403{left:304.317333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00404 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00404 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00404 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00404 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00404.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00404;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me1_c00404{transform:matrix(0.025080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025080,0.000000,0.000000,0.250000,0,0);}
.m74_c00404{transform:matrix(0.027355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027355,0.000000,0.000000,0.250000,0,0);}
.mec_c00404{transform:matrix(0.029810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029810,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{transform:matrix(0.031170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031170,0.000000,0.000000,0.250000,0,0);}
.mee_c00404{transform:matrix(0.062665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062665,0.000000,0.000000,0.250000,0,0);}
.m76_c00404{transform:matrix(0.064995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064995,0.000000,0.000000,0.250000,0,0);}
.mb2_c00404{transform:matrix(0.096895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096895,0.000000,0.000000,0.250000,0,0);}
.m30_c00404{transform:matrix(0.126252,-0.004297,0.008504,0.249855,0,0);-ms-transform:matrix(0.126252,-0.004297,0.008504,0.249855,0,0);-webkit-transform:matrix(0.126252,-0.004297,0.008504,0.249855,0,0);}
.m4f_c00404{transform:matrix(0.131530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131530,0.000000,0.000000,0.250000,0,0);}
.m78_c00404{transform:matrix(0.134130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00404{transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137160,0.000000,0.000000,0.250000,0,0);}
.mb6_c00404{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{transform:matrix(0.137925,-0.004694,0.008504,0.249855,0,0);-ms-transform:matrix(0.137925,-0.004694,0.008504,0.249855,0,0);-webkit-transform:matrix(0.137925,-0.004694,0.008504,0.249855,0,0);}
.m75_c00404{transform:matrix(0.139305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139305,0.000000,0.000000,0.250000,0,0);}
.mbe_c00404{transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);}
.meb_c00404{transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);}
.m1c_c00404{transform:matrix(0.145156,-0.004940,0.008504,0.249855,0,0);-ms-transform:matrix(0.145156,-0.004940,0.008504,0.249855,0,0);-webkit-transform:matrix(0.145156,-0.004940,0.008504,0.249855,0,0);}
.m4a_c00404{transform:matrix(0.148390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148390,0.000000,0.000000,0.250000,0,0);}
.m96_c00404{transform:matrix(0.150108,0.002852,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150108,0.002852,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150108,0.002852,-0.004749,0.249955,0,0);}
.m31_c00404{transform:matrix(0.156554,-0.005328,0.008504,0.249855,0,0);-ms-transform:matrix(0.156554,-0.005328,0.008504,0.249855,0,0);-webkit-transform:matrix(0.156554,-0.005328,0.008504,0.249855,0,0);}
.mbf_c00404{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.m16_c00404{transform:matrix(0.157224,-0.005351,0.008504,0.249855,0,0);-ms-transform:matrix(0.157224,-0.005351,0.008504,0.249855,0,0);-webkit-transform:matrix(0.157224,-0.005351,0.008504,0.249855,0,0);}
.ma5_c00404{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m64_c00404{transform:matrix(0.158615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158615,0.000000,0.000000,0.250000,0,0);}
.mac_c00404{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00404{transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.160292,-0.005455,0.008504,0.249855,0,0);-ms-transform:matrix(0.160292,-0.005455,0.008504,0.249855,0,0);-webkit-transform:matrix(0.160292,-0.005455,0.008504,0.249855,0,0);}
.mb_c00404{transform:matrix(0.160462,-0.005461,0.008504,0.249855,0,0);-ms-transform:matrix(0.160462,-0.005461,0.008504,0.249855,0,0);-webkit-transform:matrix(0.160462,-0.005461,0.008504,0.249855,0,0);}
.me2_c00404{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m53_c00404{transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00404{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.163850,-0.005576,0.008504,0.249855,0,0);-ms-transform:matrix(0.163850,-0.005576,0.008504,0.249855,0,0);-webkit-transform:matrix(0.163850,-0.005576,0.008504,0.249855,0,0);}
.m93_c00404{transform:matrix(0.163935,0.003115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163935,0.003115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163935,0.003115,-0.004749,0.249955,0,0);}
.mf3_c00404{transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);}
.m3d_c00404{transform:matrix(0.164170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164170,0.000000,0.000000,0.250000,0,0);}
.mc4_c00404{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.mef_c00404{transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.164785,-0.005608,0.008504,0.249855,0,0);-ms-transform:matrix(0.164785,-0.005608,0.008504,0.249855,0,0);-webkit-transform:matrix(0.164785,-0.005608,0.008504,0.249855,0,0);}
.m15_c00404{transform:matrix(0.165349,-0.005628,0.008504,0.249855,0,0);-ms-transform:matrix(0.165349,-0.005628,0.008504,0.249855,0,0);-webkit-transform:matrix(0.165349,-0.005628,0.008504,0.249855,0,0);}
.md0_c00404{transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);}
.m8e_c00404{transform:matrix(0.166390,0.003161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166390,0.003161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166390,0.003161,-0.004749,0.249955,0,0);}
.mc3_c00404{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m41_c00404{transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167805,0.000000,0.000000,0.250000,0,0);}
.m90_c00404{transform:matrix(0.168055,0.003193,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168055,0.003193,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168055,0.003193,-0.004749,0.249955,0,0);}
.m22_c00404{transform:matrix(0.168737,-0.005743,0.008504,0.249855,0,0);-ms-transform:matrix(0.168737,-0.005743,0.008504,0.249855,0,0);-webkit-transform:matrix(0.168737,-0.005743,0.008504,0.249855,0,0);}
.me_c00404{transform:matrix(0.169702,-0.005776,0.008504,0.249855,0,0);-ms-transform:matrix(0.169702,-0.005776,0.008504,0.249855,0,0);-webkit-transform:matrix(0.169702,-0.005776,0.008504,0.249855,0,0);}
.m20_c00404{transform:matrix(0.169822,-0.005780,0.008504,0.249855,0,0);-ms-transform:matrix(0.169822,-0.005780,0.008504,0.249855,0,0);-webkit-transform:matrix(0.169822,-0.005780,0.008504,0.249855,0,0);}
.mc2_c00404{transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170440,0.000000,0.000000,0.250000,0,0);}
.mca_c00404{transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);}
.m8c_c00404{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.md1_c00404{transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.174569,-0.005941,0.008504,0.249855,0,0);-ms-transform:matrix(0.174569,-0.005941,0.008504,0.249855,0,0);-webkit-transform:matrix(0.174569,-0.005941,0.008504,0.249855,0,0);}
.m92_c00404{transform:matrix(0.174618,0.003318,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174618,0.003318,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174618,0.003318,-0.004749,0.249955,0,0);}
.m49_c00404{transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);}
.maa_c00404{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m5e_c00404{transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);}
.md7_c00404{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m9f_c00404{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.me3_c00404{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);-ms-transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);}
.mdd_c00404{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m6e_c00404{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.179261,-0.006101,0.008504,0.249855,0,0);-ms-transform:matrix(0.179261,-0.006101,0.008504,0.249855,0,0);-webkit-transform:matrix(0.179261,-0.006101,0.008504,0.249855,0,0);}
.m21_c00404{transform:matrix(0.180505,-0.006143,0.008504,0.249855,0,0);-ms-transform:matrix(0.180505,-0.006143,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180505,-0.006143,0.008504,0.249855,0,0);}
.m32_c00404{transform:matrix(0.180595,-0.006146,0.008504,0.249855,0,0);-ms-transform:matrix(0.180595,-0.006146,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180595,-0.006146,0.008504,0.249855,0,0);}
.m1f_c00404{transform:matrix(0.180820,-0.006154,0.008504,0.249855,0,0);-ms-transform:matrix(0.180820,-0.006154,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180820,-0.006154,0.008504,0.249855,0,0);}
.m59_c00404{transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);}
.me6_c00404{transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181420,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.181427,0.003447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181427,0.003447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181427,0.003447,-0.004749,0.249955,0,0);}
.m94_c00404{transform:matrix(0.181517,0.003449,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181517,0.003449,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181517,0.003449,-0.004749,0.249955,0,0);}
.m3e_c00404{transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181930,0.000000,0.000000,0.250000,0,0);}
.ma4_c00404{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{transform:matrix(0.182449,-0.006209,0.008504,0.249855,0,0);-ms-transform:matrix(0.182449,-0.006209,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182449,-0.006209,0.008504,0.249855,0,0);}
.m23_c00404{transform:matrix(0.182794,-0.006221,0.008504,0.249855,0,0);-ms-transform:matrix(0.182794,-0.006221,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182794,-0.006221,0.008504,0.249855,0,0);}
.m81_c00404{transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);}
.md9_c00404{transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);}
.m52_c00404{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00404{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.mbc_c00404{transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.184978,-0.006296,0.008504,0.249855,0,0);-ms-transform:matrix(0.184978,-0.006296,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184978,-0.006296,0.008504,0.249855,0,0);}
.m12_c00404{transform:matrix(0.185308,-0.006307,0.008504,0.249855,0,0);-ms-transform:matrix(0.185308,-0.006307,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185308,-0.006307,0.008504,0.249855,0,0);}
.m18_c00404{transform:matrix(0.185777,-0.006323,0.008504,0.249855,0,0);-ms-transform:matrix(0.185777,-0.006323,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185777,-0.006323,0.008504,0.249855,0,0);}
.m24_c00404{transform:matrix(0.186127,-0.006335,0.008504,0.249855,0,0);-ms-transform:matrix(0.186127,-0.006335,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186127,-0.006335,0.008504,0.249855,0,0);}
.mbd_c00404{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.mb5_c00404{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m1a_c00404{transform:matrix(0.186942,-0.006362,0.008504,0.249855,0,0);-ms-transform:matrix(0.186942,-0.006362,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186942,-0.006362,0.008504,0.249855,0,0);}
.m2_c00404{transform:matrix(0.186982,-0.006364,0.008504,0.249855,0,0);-ms-transform:matrix(0.186982,-0.006364,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186982,-0.006364,0.008504,0.249855,0,0);}
.mb1_c00404{transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187355,0.000000,0.000000,0.250000,0,0);}
.m9a_c00404{transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00404{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.188716,-0.006423,0.008504,0.249855,0,0);-ms-transform:matrix(0.188716,-0.006423,0.008504,0.249855,0,0);-webkit-transform:matrix(0.188716,-0.006423,0.008504,0.249855,0,0);}
.m7_c00404{transform:matrix(0.189335,-0.006444,0.008504,0.249855,0,0);-ms-transform:matrix(0.189335,-0.006444,0.008504,0.249855,0,0);-webkit-transform:matrix(0.189335,-0.006444,0.008504,0.249855,0,0);}
.mf5_c00404{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.ma8_c00404{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.190355,-0.006479,0.008504,0.249855,0,0);-ms-transform:matrix(0.190355,-0.006479,0.008504,0.249855,0,0);-webkit-transform:matrix(0.190355,-0.006479,0.008504,0.249855,0,0);}
.mcf_c00404{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.191334,-0.006512,0.008504,0.249855,0,0);-ms-transform:matrix(0.191334,-0.006512,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191334,-0.006512,0.008504,0.249855,0,0);}
.mc0_c00404{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.m7e_c00404{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.192124,-0.006539,0.008504,0.249855,0,0);-ms-transform:matrix(0.192124,-0.006539,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192124,-0.006539,0.008504,0.249855,0,0);}
.m9e_c00404{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.mf4_c00404{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.192284,-0.006544,0.008504,0.249855,0,0);-ms-transform:matrix(0.192284,-0.006544,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192284,-0.006544,0.008504,0.249855,0,0);}
.mc1_c00404{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.192728,-0.006559,0.008504,0.249855,0,0);-ms-transform:matrix(0.192728,-0.006559,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192728,-0.006559,0.008504,0.249855,0,0);}
.mf2_c00404{transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);}
.m88_c00404{transform:matrix(0.193110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193110,0.000000,0.000000,0.250000,0,0);}
.m66_c00404{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.me9_c00404{transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);}
.m4e_c00404{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m2d_c00404{transform:matrix(0.193688,-0.006592,0.008504,0.249855,0,0);-ms-transform:matrix(0.193688,-0.006592,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193688,-0.006592,0.008504,0.249855,0,0);}
.m35_c00404{transform:matrix(0.195817,-0.006664,0.008504,0.249855,0,0);-ms-transform:matrix(0.195817,-0.006664,0.008504,0.249855,0,0);-webkit-transform:matrix(0.195817,-0.006664,0.008504,0.249855,0,0);}
.m5f_c00404{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.m14_c00404{transform:matrix(0.196036,-0.006672,0.008504,0.249855,0,0);-ms-transform:matrix(0.196036,-0.006672,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196036,-0.006672,0.008504,0.249855,0,0);}
.m3_c00404{transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);-ms-transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);}
.m7c_c00404{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.m95_c00404{transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);}
.m63_c00404{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.mea_c00404{transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);}
.m85_c00404{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.md8_c00404{transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);}
.m98_c00404{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00404{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.mf1_c00404{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.ma0_c00404{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m87_c00404{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.ma9_c00404{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.201223,-0.006848,0.008504,0.249855,0,0);-ms-transform:matrix(0.201223,-0.006848,0.008504,0.249855,0,0);-webkit-transform:matrix(0.201223,-0.006848,0.008504,0.249855,0,0);}
.m7f_c00404{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.me7_c00404{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.mdf_c00404{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m9c_c00404{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.m65_c00404{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.mad_c00404{transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205320,0.000000,0.000000,0.250000,0,0);}
.m2f_c00404{transform:matrix(0.205576,-0.006997,0.008504,0.249855,0,0);-ms-transform:matrix(0.205576,-0.006997,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205576,-0.006997,0.008504,0.249855,0,0);}
.m5b_c00404{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.m97_c00404{transform:matrix(0.205988,0.003914,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205988,0.003914,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205988,0.003914,-0.004749,0.249955,0,0);}
.m55_c00404{transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);}
.mc9_c00404{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mc5_c00404{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m91_c00404{transform:matrix(0.209232,0.003975,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209232,0.003975,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209232,0.003975,-0.004749,0.249955,0,0);}
.m42_c00404{transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);}
.m99_c00404{transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{transform:matrix(0.209719,-0.007138,0.008504,0.249855,0,0);-ms-transform:matrix(0.209719,-0.007138,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209719,-0.007138,0.008504,0.249855,0,0);}
.mb7_c00404{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.mce_c00404{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00404{transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);}
.md4_c00404{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m7b_c00404{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.210888,-0.007177,0.008504,0.249855,0,0);-ms-transform:matrix(0.210888,-0.007177,0.008504,0.249855,0,0);-webkit-transform:matrix(0.210888,-0.007177,0.008504,0.249855,0,0);}
.md6_c00404{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.211662,-0.007204,0.008504,0.249855,0,0);-ms-transform:matrix(0.211662,-0.007204,0.008504,0.249855,0,0);-webkit-transform:matrix(0.211662,-0.007204,0.008504,0.249855,0,0);}
.m86_c00404{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.m57_c00404{transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212205,0.000000,0.000000,0.250000,0,0);}
.maf_c00404{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m34_c00404{transform:matrix(0.212632,-0.007237,0.008504,0.249855,0,0);-ms-transform:matrix(0.212632,-0.007237,0.008504,0.249855,0,0);-webkit-transform:matrix(0.212632,-0.007237,0.008504,0.249855,0,0);}
.m8b_c00404{transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);}
.mc7_c00404{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m40_c00404{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m84_c00404{transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);}
.me8_c00404{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m51_c00404{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m56_c00404{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00404{transform:matrix(0.215006,-0.007318,0.008504,0.249855,0,0);-ms-transform:matrix(0.215006,-0.007318,0.008504,0.249855,0,0);-webkit-transform:matrix(0.215006,-0.007318,0.008504,0.249855,0,0);}
.m33_c00404{transform:matrix(0.215205,-0.007324,0.008504,0.249855,0,0);-ms-transform:matrix(0.215205,-0.007324,0.008504,0.249855,0,0);-webkit-transform:matrix(0.215205,-0.007324,0.008504,0.249855,0,0);}
.m3f_c00404{transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);}
.mde_c00404{transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215415,0.000000,0.000000,0.250000,0,0);}
.m43_c00404{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m8a_c00404{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.me5_c00404{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m6f_c00404{transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);}
.mba_c00404{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m28_c00404{transform:matrix(0.217969,-0.007418,0.008504,0.249855,0,0);-ms-transform:matrix(0.217969,-0.007418,0.008504,0.249855,0,0);-webkit-transform:matrix(0.217969,-0.007418,0.008504,0.249855,0,0);}
.m29_c00404{transform:matrix(0.218743,-0.007445,0.008504,0.249855,0,0);-ms-transform:matrix(0.218743,-0.007445,0.008504,0.249855,0,0);-webkit-transform:matrix(0.218743,-0.007445,0.008504,0.249855,0,0);}
.m89_c00404{transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);}
.mb0_c00404{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m70_c00404{transform:matrix(0.219210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219210,0.000000,0.000000,0.250000,0,0);}
.md3_c00404{transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);}
.mf0_c00404{transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.m9b_c00404{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.ma6_c00404{transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);}
.md2_c00404{transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220870,0.000000,0.000000,0.250000,0,0);}
.mdc_c00404{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.ma2_c00404{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m83_c00404{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.mc6_c00404{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m4d_c00404{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.me0_c00404{transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222710,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.223551,-0.007608,0.008504,0.249855,0,0);-ms-transform:matrix(0.223551,-0.007608,0.008504,0.249855,0,0);-webkit-transform:matrix(0.223551,-0.007608,0.008504,0.249855,0,0);}
.m82_c00404{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.mcb_c00404{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.m7a_c00404{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.m60_c00404{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.mb3_c00404{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00404{transform:matrix(0.230696,-0.007852,0.008504,0.249855,0,0);-ms-transform:matrix(0.230696,-0.007852,0.008504,0.249855,0,0);-webkit-transform:matrix(0.230696,-0.007852,0.008504,0.249855,0,0);}
.mf7_c00404{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.m45_c00404{transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);}
.m3b_c00404{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.m67_c00404{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.mae_c00404{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m61_c00404{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.m9d_c00404{transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);}
.m46_c00404{transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233780,0.000000,0.000000,0.250000,0,0);}
.m7d_c00404{transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234065,0.000000,0.000000,0.250000,0,0);}
.m5c_c00404{transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);}
.m6d_c00404{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.me4_c00404{transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);}
.m62_c00404{transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);}
.m80_c00404{transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);}
.m5d_c00404{transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);}
.med_c00404{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.mbb_c00404{transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);}
.mc8_c00404{transform:matrix(0.243005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243005,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);}
.m47_c00404{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);}
.m54_c00404{transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);}
.mda_c00404{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.m68_c00404{transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m79_c00404{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m4b_c00404{transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);}
.mcc_c00404{transform:matrix(0.257040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257040,0.000000,0.000000,0.250000,0,0);}
.m6c_c00404{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.259974,-0.008848,0.008504,0.249855,0,0);-ms-transform:matrix(0.259974,-0.008848,0.008504,0.249855,0,0);-webkit-transform:matrix(0.259974,-0.008848,0.008504,0.249855,0,0);}
.m71_c00404{transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{transform:matrix(0.263542,-0.008969,0.008504,0.249855,0,0);-ms-transform:matrix(0.263542,-0.008969,0.008504,0.249855,0,0);-webkit-transform:matrix(0.263542,-0.008969,0.008504,0.249855,0,0);}
.m6a_c00404{transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00404{transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);}
.m39_c00404{transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);}
.m69_c00404{transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00404{transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);}
.mf6_c00404{transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);}
.mf8_c00404{transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);}
.m6b_c00404{transform:matrix(0.338405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338405,0.000000,0.000000,0.250000,0,0);}
.md5_c00404{transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342100,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.350972,-0.011945,0.008504,0.249855,0,0);-ms-transform:matrix(0.350972,-0.011945,0.008504,0.249855,0,0);-webkit-transform:matrix(0.350972,-0.011945,0.008504,0.249855,0,0);}
.m36_c00404{transform:matrix(0.359720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359720,0.000000,0.000000,0.250000,0,0);}
.mab_c00404{transform:matrix(0.407535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407535,0.000000,0.000000,0.250000,0,0);}
.m73_c00404{transform:matrix(0.423870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423870,0.000000,0.000000,0.250000,0,0);}
.m72_c00404{transform:matrix(0.504795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504795,0.000000,0.000000,0.250000,0,0);}
.mdb_c00404{transform:matrix(0.571080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571080,0.000000,0.000000,0.250000,0,0);}
.m27_c00404{transform:matrix(0.575832,-0.019598,0.008504,0.249855,0,0);-ms-transform:matrix(0.575832,-0.019598,0.008504,0.249855,0,0);-webkit-transform:matrix(0.575832,-0.019598,0.008504,0.249855,0,0);}
.m50_c00404{transform:matrix(0.580020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580020,0.000000,0.000000,0.250000,0,0);}
.m37_c00404{transform:matrix(0.706300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706300,0.000000,0.000000,0.250000,0,0);}
.m77_c00404{transform:matrix(0.884175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884175,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:0.000000px;}
._0_c00404{margin-left:-31.379712px;}
.fc0_c00404{color:transparent;}
.fs5_c00404{font-size:36.750000px;}
.fs13_c00404{font-size:40.950000px;}
.fsc_c00404{font-size:49.350000px;}
.fsa_c00404{font-size:56.700000px;}
.fs3_c00404{font-size:57.725653px;}
.fs9_c00404{font-size:57.750000px;}
.fs7_c00404{font-size:58.800000px;}
.fsb_c00404{font-size:59.850000px;}
.fsf_c00404{font-size:60.900000px;}
.fs6_c00404{font-size:61.950000px;}
.fsd_c00404{font-size:63.000000px;}
.fs8_c00404{font-size:64.050000px;}
.fs12_c00404{font-size:65.100000px;}
.fs10_c00404{font-size:66.150000px;}
.fs0_c00404{font-size:67.171669px;}
.fs11_c00404{font-size:67.200000px;}
.fs1_c00404{font-size:68.221227px;}
.fs4_c00404{font-size:69.270784px;}
.fse_c00404{font-size:69.312508px;}
.fs2_c00404{font-size:70.320341px;}
.y0_c00404{bottom:0.000000px;}
.y6a_c00404{bottom:17.815500px;}
.y69_c00404{bottom:30.571500px;}
.y68_c00404{bottom:37.896000px;}
.y67_c00404{bottom:45.457500px;}
.y66_c00404{bottom:45.876000px;}
.y65_c00404{bottom:46.006500px;}
.y64_c00404{bottom:46.728000px;}
.y63_c00404{bottom:46.995000px;}
.y62_c00404{bottom:47.386500px;}
.y61_c00404{bottom:47.887500px;}
.y60_c00404{bottom:48.075000px;}
.y5f_c00404{bottom:48.417000px;}
.y5e_c00404{bottom:48.600000px;}
.y5d_c00404{bottom:65.470500px;}
.y5c_c00404{bottom:78.784500px;}
.y5b_c00404{bottom:78.952500px;}
.y5a_c00404{bottom:79.609500px;}
.y59_c00404{bottom:79.894500px;}
.y58_c00404{bottom:80.070000px;}
.y57_c00404{bottom:80.883000px;}
.y56_c00404{bottom:81.022500px;}
.y55_c00404{bottom:81.540000px;}
.y54_c00404{bottom:98.473500px;}
.y53_c00404{bottom:114.568500px;}
.y52_c00404{bottom:131.742000px;}
.y51_c00404{bottom:148.572000px;}
.y50_c00404{bottom:165.214500px;}
.y4f_c00404{bottom:181.921500px;}
.y4e_c00404{bottom:199.329000px;}
.y4d_c00404{bottom:216.196500px;}
.y4c_c00404{bottom:232.603967px;}
.y4b_c00404{bottom:232.951296px;}
.y4a_c00404{bottom:233.234957px;}
.y49_c00404{bottom:234.373987px;}
.y48_c00404{bottom:234.733230px;}
.y47_c00404{bottom:235.625594px;}
.y46_c00404{bottom:235.885229px;}
.y45_c00404{bottom:236.352058px;}
.y44_c00404{bottom:236.880363px;}
.y43_c00404{bottom:237.333000px;}
.y42_c00404{bottom:249.966000px;}
.y41_c00404{bottom:267.759000px;}
.y40_c00404{bottom:286.594500px;}
.y3f_c00404{bottom:300.346500px;}
.y3e_c00404{bottom:320.896500px;}
.y3d_c00404{bottom:336.084000px;}
.y3c_c00404{bottom:352.345500px;}
.y3b_c00404{bottom:369.873000px;}
.y3a_c00404{bottom:384.886500px;}
.y39_c00404{bottom:401.959500px;}
.y38_c00404{bottom:418.206000px;}
.y37_c00404{bottom:435.340500px;}
.y30_c00404{bottom:450.412047px;}
.y31_c00404{bottom:451.964298px;}
.y32_c00404{bottom:452.533720px;}
.y33_c00404{bottom:452.964820px;}
.y34_c00404{bottom:454.279027px;}
.y35_c00404{bottom:455.119575px;}
.y36_c00404{bottom:456.270970px;}
.y29_c00404{bottom:466.603195px;}
.y2a_c00404{bottom:467.027383px;}
.y2b_c00404{bottom:467.897703px;}
.y2c_c00404{bottom:468.906315px;}
.y2d_c00404{bottom:469.843062px;}
.y2e_c00404{bottom:470.306280px;}
.y2f_c00404{bottom:470.609976px;}
.y21_c00404{bottom:487.113636px;}
.y22_c00404{bottom:487.580621px;}
.y23_c00404{bottom:488.434242px;}
.y24_c00404{bottom:488.766751px;}
.y25_c00404{bottom:489.441814px;}
.y26_c00404{bottom:489.765975px;}
.y27_c00404{bottom:490.047225px;}
.y28_c00404{bottom:491.361757px;}
.y1a_c00404{bottom:499.539447px;}
.y1b_c00404{bottom:500.401734px;}
.y1c_c00404{bottom:502.369948px;}
.y1d_c00404{bottom:503.639218px;}
.y1e_c00404{bottom:504.667213px;}
.y1f_c00404{bottom:505.412458px;}
.y20_c00404{bottom:506.194537px;}
.y13_c00404{bottom:517.349886px;}
.y14_c00404{bottom:519.727640px;}
.y15_c00404{bottom:521.289696px;}
.y16_c00404{bottom:521.665187px;}
.y17_c00404{bottom:522.292714px;}
.y18_c00404{bottom:523.324827px;}
.y19_c00404{bottom:524.242666px;}
.y9_c00404{bottom:536.231151px;}
.ya_c00404{bottom:536.645926px;}
.yb_c00404{bottom:536.865030px;}
.yc_c00404{bottom:537.132691px;}
.yd_c00404{bottom:537.358339px;}
.ye_c00404{bottom:538.311146px;}
.yf_c00404{bottom:538.581483px;}
.y10_c00404{bottom:538.814389px;}
.y11_c00404{bottom:539.770586px;}
.y12_c00404{bottom:539.897168px;}
.y3_c00404{bottom:554.317504px;}
.y4_c00404{bottom:555.453873px;}
.y5_c00404{bottom:557.322563px;}
.y6_c00404{bottom:558.413625px;}
.y7_c00404{bottom:558.888900px;}
.y8_c00404{bottom:559.424695px;}
.y1_c00404{bottom:571.065000px;}
.y2_c00404{bottom:574.919121px;}
.h7_c00404{height:36.750000px;}
.h15_c00404{height:40.950000px;}
.he_c00404{height:49.350000px;}
.hc_c00404{height:56.700000px;}
.h5_c00404{height:57.725653px;}
.hb_c00404{height:57.750000px;}
.h9_c00404{height:58.800000px;}
.hd_c00404{height:59.850000px;}
.h11_c00404{height:60.900000px;}
.h8_c00404{height:61.950000px;}
.hf_c00404{height:63.000000px;}
.ha_c00404{height:64.050000px;}
.h14_c00404{height:65.100000px;}
.h12_c00404{height:66.150000px;}
.h2_c00404{height:67.171669px;}
.h13_c00404{height:67.200000px;}
.h3_c00404{height:68.221227px;}
.h6_c00404{height:69.270784px;}
.h10_c00404{height:69.312508px;}
.h4_c00404{height:70.320341px;}
.h0_c00404{height:613.170000px;}
.h1_c00404{height:613.500000px;}
.w0_c00404{width:359.100000px;}
.w1_c00404{width:359.250000px;}
.x0_c00404{left:0.000000px;}
.x3_c00404{left:14.078431px;}
.x12_c00404{left:15.303583px;}
.x3f_c00404{left:16.470000px;}
.x4e_c00404{left:17.820000px;}
.x55_c00404{left:18.900000px;}
.x32_c00404{left:21.060000px;}
.x68_c00404{left:23.490000px;}
.x36_c00404{left:24.840000px;}
.x61_c00404{left:26.190000px;}
.x70_c00404{left:31.590000px;}
.x77_c00404{left:32.803500px;}
.x6b_c00404{left:38.610000px;}
.x4f_c00404{left:39.690000px;}
.x23_c00404{left:42.101703px;}
.x18_c00404{left:43.118677px;}
.x1e_c00404{left:44.129622px;}
.x9_c00404{left:46.556876px;}
.x46_c00404{left:49.140000px;}
.x62_c00404{left:50.490000px;}
.x43_c00404{left:52.380000px;}
.x3a_c00404{left:54.540000px;}
.x40_c00404{left:59.670000px;}
.xa_c00404{left:63.353559px;}
.x47_c00404{left:65.880000px;}
.x4_c00404{left:70.786173px;}
.x33_c00404{left:71.820000px;}
.x5b_c00404{left:73.980000px;}
.x78_c00404{left:75.981000px;}
.x65_c00404{left:78.030000px;}
.x2d_c00404{left:79.110000px;}
.x7a_c00404{left:80.923500px;}
.x4b_c00404{left:82.080000px;}
.xb_c00404{left:83.869174px;}
.x6c_c00404{left:86.670000px;}
.x37_c00404{left:88.290000px;}
.x27_c00404{left:89.555237px;}
.x3b_c00404{left:91.530000px;}
.x41_c00404{left:95.580000px;}
.x13_c00404{left:97.201541px;}
.x56_c00404{left:99.360000px;}
.xc_c00404{left:101.166714px;}
.x6d_c00404{left:103.950000px;}
.x19_c00404{left:106.547669px;}
.x44_c00404{left:108.810000px;}
.x71_c00404{left:110.430000px;}
.x28_c00404{left:116.645117px;}
.x1f_c00404{left:118.124386px;}
.x75_c00404{left:124.200000px;}
.x42_c00404{left:127.170000px;}
.x66_c00404{left:133.920000px;}
.x72_c00404{left:135.270000px;}
.x29_c00404{left:137.158170px;}
.x69_c00404{left:139.320000px;}
.x1_c00404{left:141.129000px;}
.x52_c00404{left:142.290000px;}
.x5c_c00404{left:143.910000px;}
.x48_c00404{left:145.260000px;}
.x73_c00404{left:146.340000px;}
.x1a_c00404{left:147.456405px;}
.x14_c00404{left:150.988837px;}
.x38_c00404{left:155.250000px;}
.x5e_c00404{left:156.672000px;}
.x24_c00404{left:159.242172px;}
.x20_c00404{left:160.264036px;}
.x7b_c00404{left:162.145500px;}
.x5_c00404{left:164.086745px;}
.x34_c00404{left:165.780000px;}
.x3c_c00404{left:169.830000px;}
.x63_c00404{left:171.180000px;}
.x57_c00404{left:172.260000px;}
.xd_c00404{left:174.300783px;}
.x5f_c00404{left:175.579500px;}
.x45_c00404{left:178.470000px;}
.x1b_c00404{left:180.570627px;}
.x53_c00404{left:184.140000px;}
.x15_c00404{left:185.529134px;}
.x76_c00404{left:186.570000px;}
.x50_c00404{left:189.540000px;}
.x2e_c00404{left:192.780000px;}
.xe_c00404{left:195.071348px;}
.x21_c00404{left:198.020868px;}
.x2a_c00404{left:199.664271px;}
.x3d_c00404{left:202.500000px;}
.x1c_c00404{left:204.583540px;}
.x4c_c00404{left:207.090000px;}
.x54_c00404{left:209.250000px;}
.xf_c00404{left:212.890722px;}
.x58_c00404{left:214.110000px;}
.x6a_c00404{left:215.730000px;}
.x6_c00404{left:218.581680px;}
.x16_c00404{left:221.100601px;}
.x79_c00404{left:222.210000px;}
.x2f_c00404{left:226.260000px;}
.x1d_c00404{left:229.766885px;}
.x5d_c00404{left:231.120000px;}
.x7d_c00404{left:232.470000px;}
.x6e_c00404{left:234.900000px;}
.x49_c00404{left:236.520000px;}
.x2b_c00404{left:239.657453px;}
.x64_c00404{left:241.110000px;}
.x7_c00404{left:242.332239px;}
.x7e_c00404{left:244.080000px;}
.x25_c00404{left:246.572756px;}
.x59_c00404{left:248.400000px;}
.x60_c00404{left:250.458000px;}
.x17_c00404{left:252.697333px;}
.x2_c00404{left:254.372144px;}
.x74_c00404{left:258.930000px;}
.x30_c00404{left:262.440000px;}
.x4d_c00404{left:263.520000px;}
.x26_c00404{left:265.546402px;}
.x8_c00404{left:269.051205px;}
.x67_c00404{left:270.540000px;}
.x39_c00404{left:271.890000px;}
.x51_c00404{left:272.970000px;}
.x5a_c00404{left:276.210000px;}
.x22_c00404{left:279.976014px;}
.x3e_c00404{left:283.500000px;}
.x10_c00404{left:286.300719px;}
.x35_c00404{left:292.950000px;}
.x2c_c00404{left:294.426378px;}
.x11_c00404{left:296.014938px;}
.x4a_c00404{left:299.430000px;}
.x7c_c00404{left:301.987500px;}
.x31_c00404{left:303.750000px;}
.x6f_c00404{left:311.310000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
._0_c00404{margin-left:-27.893077pt;}
.fs5_c00404{font-size:32.666667pt;}
.fs13_c00404{font-size:36.400000pt;}
.fsc_c00404{font-size:43.866667pt;}
.fsa_c00404{font-size:50.400000pt;}
.fs3_c00404{font-size:51.311692pt;}
.fs9_c00404{font-size:51.333333pt;}
.fs7_c00404{font-size:52.266667pt;}
.fsb_c00404{font-size:53.200000pt;}
.fsf_c00404{font-size:54.133333pt;}
.fs6_c00404{font-size:55.066667pt;}
.fsd_c00404{font-size:56.000000pt;}
.fs8_c00404{font-size:56.933333pt;}
.fs12_c00404{font-size:57.866667pt;}
.fs10_c00404{font-size:58.800000pt;}
.fs0_c00404{font-size:59.708150pt;}
.fs11_c00404{font-size:59.733333pt;}
.fs1_c00404{font-size:60.641090pt;}
.fs4_c00404{font-size:61.574030pt;}
.fse_c00404{font-size:61.611118pt;}
.fs2_c00404{font-size:62.506970pt;}
.y0_c00404{bottom:0.000000pt;}
.y6a_c00404{bottom:15.836000pt;}
.y69_c00404{bottom:27.174667pt;}
.y68_c00404{bottom:33.685333pt;}
.y67_c00404{bottom:40.406667pt;}
.y66_c00404{bottom:40.778667pt;}
.y65_c00404{bottom:40.894667pt;}
.y64_c00404{bottom:41.536000pt;}
.y63_c00404{bottom:41.773333pt;}
.y62_c00404{bottom:42.121333pt;}
.y61_c00404{bottom:42.566667pt;}
.y60_c00404{bottom:42.733333pt;}
.y5f_c00404{bottom:43.037333pt;}
.y5e_c00404{bottom:43.200000pt;}
.y5d_c00404{bottom:58.196000pt;}
.y5c_c00404{bottom:70.030667pt;}
.y5b_c00404{bottom:70.180000pt;}
.y5a_c00404{bottom:70.764000pt;}
.y59_c00404{bottom:71.017333pt;}
.y58_c00404{bottom:71.173333pt;}
.y57_c00404{bottom:71.896000pt;}
.y56_c00404{bottom:72.020000pt;}
.y55_c00404{bottom:72.480000pt;}
.y54_c00404{bottom:87.532000pt;}
.y53_c00404{bottom:101.838667pt;}
.y52_c00404{bottom:117.104000pt;}
.y51_c00404{bottom:132.064000pt;}
.y50_c00404{bottom:146.857333pt;}
.y4f_c00404{bottom:161.708000pt;}
.y4e_c00404{bottom:177.181333pt;}
.y4d_c00404{bottom:192.174667pt;}
.y4c_c00404{bottom:206.759081pt;}
.y4b_c00404{bottom:207.067819pt;}
.y4a_c00404{bottom:207.319961pt;}
.y49_c00404{bottom:208.332433pt;}
.y48_c00404{bottom:208.651760pt;}
.y47_c00404{bottom:209.444972pt;}
.y46_c00404{bottom:209.675759pt;}
.y45_c00404{bottom:210.090719pt;}
.y44_c00404{bottom:210.560323pt;}
.y43_c00404{bottom:210.962667pt;}
.y42_c00404{bottom:222.192000pt;}
.y41_c00404{bottom:238.008000pt;}
.y40_c00404{bottom:254.750667pt;}
.y3f_c00404{bottom:266.974667pt;}
.y3e_c00404{bottom:285.241333pt;}
.y3d_c00404{bottom:298.741333pt;}
.y3c_c00404{bottom:313.196000pt;}
.y3b_c00404{bottom:328.776000pt;}
.y3a_c00404{bottom:342.121333pt;}
.y39_c00404{bottom:357.297333pt;}
.y38_c00404{bottom:371.738667pt;}
.y37_c00404{bottom:386.969333pt;}
.y30_c00404{bottom:400.366264pt;}
.y31_c00404{bottom:401.746043pt;}
.y32_c00404{bottom:402.252196pt;}
.y33_c00404{bottom:402.635396pt;}
.y34_c00404{bottom:403.803580pt;}
.y35_c00404{bottom:404.550733pt;}
.y36_c00404{bottom:405.574196pt;}
.y29_c00404{bottom:414.758396pt;}
.y2a_c00404{bottom:415.135452pt;}
.y2b_c00404{bottom:415.909069pt;}
.y2c_c00404{bottom:416.805613pt;}
.y2d_c00404{bottom:417.638277pt;}
.y2e_c00404{bottom:418.050027pt;}
.y2f_c00404{bottom:418.319979pt;}
.y21_c00404{bottom:432.989899pt;}
.y22_c00404{bottom:433.404996pt;}
.y23_c00404{bottom:434.163771pt;}
.y24_c00404{bottom:434.459335pt;}
.y25_c00404{bottom:435.059391pt;}
.y26_c00404{bottom:435.347533pt;}
.y27_c00404{bottom:435.597533pt;}
.y28_c00404{bottom:436.766007pt;}
.y1a_c00404{bottom:444.035064pt;}
.y1b_c00404{bottom:444.801541pt;}
.y1c_c00404{bottom:446.551065pt;}
.y1d_c00404{bottom:447.679305pt;}
.y1e_c00404{bottom:448.593079pt;}
.y1f_c00404{bottom:449.255519pt;}
.y20_c00404{bottom:449.950700pt;}
.y13_c00404{bottom:459.866565pt;}
.y14_c00404{bottom:461.980124pt;}
.y15_c00404{bottom:463.368619pt;}
.y16_c00404{bottom:463.702388pt;}
.y17_c00404{bottom:464.260191pt;}
.y18_c00404{bottom:465.177624pt;}
.y19_c00404{bottom:465.993481pt;}
.y9_c00404{bottom:476.649912pt;}
.ya_c00404{bottom:477.018601pt;}
.yb_c00404{bottom:477.213360pt;}
.yc_c00404{bottom:477.451281pt;}
.yd_c00404{bottom:477.651857pt;}
.ye_c00404{bottom:478.498796pt;}
.yf_c00404{bottom:478.739096pt;}
.y10_c00404{bottom:478.946124pt;}
.y11_c00404{bottom:479.796076pt;}
.y12_c00404{bottom:479.908593pt;}
.y3_c00404{bottom:492.726671pt;}
.y4_c00404{bottom:493.736776pt;}
.y5_c00404{bottom:495.397833pt;}
.y6_c00404{bottom:496.367667pt;}
.y7_c00404{bottom:496.790133pt;}
.y8_c00404{bottom:497.266396pt;}
.y1_c00404{bottom:507.613333pt;}
.y2_c00404{bottom:511.039219pt;}
.h7_c00404{height:32.666667pt;}
.h15_c00404{height:36.400000pt;}
.he_c00404{height:43.866667pt;}
.hc_c00404{height:50.400000pt;}
.h5_c00404{height:51.311692pt;}
.hb_c00404{height:51.333333pt;}
.h9_c00404{height:52.266667pt;}
.hd_c00404{height:53.200000pt;}
.h11_c00404{height:54.133333pt;}
.h8_c00404{height:55.066667pt;}
.hf_c00404{height:56.000000pt;}
.ha_c00404{height:56.933333pt;}
.h14_c00404{height:57.866667pt;}
.h12_c00404{height:58.800000pt;}
.h2_c00404{height:59.708150pt;}
.h13_c00404{height:59.733333pt;}
.h3_c00404{height:60.641090pt;}
.h6_c00404{height:61.574030pt;}
.h10_c00404{height:61.611118pt;}
.h4_c00404{height:62.506970pt;}
.h0_c00404{height:545.040000pt;}
.h1_c00404{height:545.333333pt;}
.w0_c00404{width:319.200000pt;}
.w1_c00404{width:319.333333pt;}
.x0_c00404{left:0.000000pt;}
.x3_c00404{left:12.514161pt;}
.x12_c00404{left:13.603185pt;}
.x3f_c00404{left:14.640000pt;}
.x4e_c00404{left:15.840000pt;}
.x55_c00404{left:16.800000pt;}
.x32_c00404{left:18.720000pt;}
.x68_c00404{left:20.880000pt;}
.x36_c00404{left:22.080000pt;}
.x61_c00404{left:23.280000pt;}
.x70_c00404{left:28.080000pt;}
.x77_c00404{left:29.158667pt;}
.x6b_c00404{left:34.320000pt;}
.x4f_c00404{left:35.280000pt;}
.x23_c00404{left:37.423736pt;}
.x18_c00404{left:38.327713pt;}
.x1e_c00404{left:39.226331pt;}
.x9_c00404{left:41.383889pt;}
.x46_c00404{left:43.680000pt;}
.x62_c00404{left:44.880000pt;}
.x43_c00404{left:46.560000pt;}
.x3a_c00404{left:48.480000pt;}
.x40_c00404{left:53.040000pt;}
.xa_c00404{left:56.314275pt;}
.x47_c00404{left:58.560000pt;}
.x4_c00404{left:62.921043pt;}
.x33_c00404{left:63.840000pt;}
.x5b_c00404{left:65.760000pt;}
.x78_c00404{left:67.538667pt;}
.x65_c00404{left:69.360000pt;}
.x2d_c00404{left:70.320000pt;}
.x7a_c00404{left:71.932000pt;}
.x4b_c00404{left:72.960000pt;}
.xb_c00404{left:74.550377pt;}
.x6c_c00404{left:77.040000pt;}
.x37_c00404{left:78.480000pt;}
.x27_c00404{left:79.604655pt;}
.x3b_c00404{left:81.360000pt;}
.x41_c00404{left:84.960000pt;}
.x13_c00404{left:86.401369pt;}
.x56_c00404{left:88.320000pt;}
.xc_c00404{left:89.925968pt;}
.x6d_c00404{left:92.400000pt;}
.x19_c00404{left:94.709039pt;}
.x44_c00404{left:96.720000pt;}
.x71_c00404{left:98.160000pt;}
.x28_c00404{left:103.684548pt;}
.x1f_c00404{left:104.999455pt;}
.x75_c00404{left:110.400000pt;}
.x42_c00404{left:113.040000pt;}
.x66_c00404{left:119.040000pt;}
.x72_c00404{left:120.240000pt;}
.x29_c00404{left:121.918373pt;}
.x69_c00404{left:123.840000pt;}
.x1_c00404{left:125.448000pt;}
.x52_c00404{left:126.480000pt;}
.x5c_c00404{left:127.920000pt;}
.x48_c00404{left:129.120000pt;}
.x73_c00404{left:130.080000pt;}
.x1a_c00404{left:131.072360pt;}
.x14_c00404{left:134.212300pt;}
.x38_c00404{left:138.000000pt;}
.x5e_c00404{left:139.264000pt;}
.x24_c00404{left:141.548597pt;}
.x20_c00404{left:142.456921pt;}
.x7b_c00404{left:144.129333pt;}
.x5_c00404{left:145.854884pt;}
.x34_c00404{left:147.360000pt;}
.x3c_c00404{left:150.960000pt;}
.x63_c00404{left:152.160000pt;}
.x57_c00404{left:153.120000pt;}
.xd_c00404{left:154.934029pt;}
.x5f_c00404{left:156.070667pt;}
.x45_c00404{left:158.640000pt;}
.x1b_c00404{left:160.507224pt;}
.x53_c00404{left:163.680000pt;}
.x15_c00404{left:164.914785pt;}
.x76_c00404{left:165.840000pt;}
.x50_c00404{left:168.480000pt;}
.x2e_c00404{left:171.360000pt;}
.xe_c00404{left:173.396753pt;}
.x21_c00404{left:176.018549pt;}
.x2a_c00404{left:177.479352pt;}
.x3d_c00404{left:180.000000pt;}
.x1c_c00404{left:181.852036pt;}
.x4c_c00404{left:184.080000pt;}
.x54_c00404{left:186.000000pt;}
.xf_c00404{left:189.236197pt;}
.x58_c00404{left:190.320000pt;}
.x6a_c00404{left:191.760000pt;}
.x6_c00404{left:194.294827pt;}
.x16_c00404{left:196.533868pt;}
.x79_c00404{left:197.520000pt;}
.x2f_c00404{left:201.120000pt;}
.x1d_c00404{left:204.237231pt;}
.x5d_c00404{left:205.440000pt;}
.x7d_c00404{left:206.640000pt;}
.x6e_c00404{left:208.800000pt;}
.x49_c00404{left:210.240000pt;}
.x2b_c00404{left:213.028847pt;}
.x64_c00404{left:214.320000pt;}
.x7_c00404{left:215.406435pt;}
.x7e_c00404{left:216.960000pt;}
.x25_c00404{left:219.175783pt;}
.x59_c00404{left:220.800000pt;}
.x60_c00404{left:222.629333pt;}
.x17_c00404{left:224.619852pt;}
.x2_c00404{left:226.108572pt;}
.x74_c00404{left:230.160000pt;}
.x30_c00404{left:233.280000pt;}
.x4d_c00404{left:234.240000pt;}
.x26_c00404{left:236.041247pt;}
.x8_c00404{left:239.156627pt;}
.x67_c00404{left:240.480000pt;}
.x39_c00404{left:241.680000pt;}
.x51_c00404{left:242.640000pt;}
.x5a_c00404{left:245.520000pt;}
.x22_c00404{left:248.867568pt;}
.x3e_c00404{left:252.000000pt;}
.x10_c00404{left:254.489528pt;}
.x35_c00404{left:260.400000pt;}
.x2c_c00404{left:261.712336pt;}
.x11_c00404{left:263.124389pt;}
.x4a_c00404{left:266.160000pt;}
.x7c_c00404{left:268.433333pt;}
.x31_c00404{left:270.000000pt;}
.x6f_c00404{left:276.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00405 {
    display:none;
  }
  .loading-indicator_c00405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00405 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00405 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00405" -> "#page-container .classname_c00405")
 */
.pf_c00405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00405 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00405 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00405 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00405 {overflow:visible;}
  }
}
.c_c00405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00405 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00405:after { /* webkit #35443 */
  content: '';
}
.t_c00405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00405 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00405 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00405 { /* info for Javascript */
  display:none;
}
.l_c00405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00405:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00405 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00405.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00405{transform:matrix(0.010032,-0.000231,0.005748,0.249934,0,0);-ms-transform:matrix(0.010032,-0.000231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.010032,-0.000231,0.005748,0.249934,0,0);}
.m8d_c00405{transform:matrix(0.012117,-0.000279,0.005748,0.249934,0,0);-ms-transform:matrix(0.012117,-0.000279,0.005748,0.249934,0,0);-webkit-transform:matrix(0.012117,-0.000279,0.005748,0.249934,0,0);}
.mc_c00405{transform:matrix(0.014780,-0.000399,0.006748,0.249909,0,0);-ms-transform:matrix(0.014780,-0.000399,0.006748,0.249909,0,0);-webkit-transform:matrix(0.014780,-0.000399,0.006748,0.249909,0,0);}
.m3f_c00405{transform:matrix(0.014950,-0.000404,0.006748,0.249909,0,0);-ms-transform:matrix(0.014950,-0.000404,0.006748,0.249909,0,0);-webkit-transform:matrix(0.014950,-0.000404,0.006748,0.249909,0,0);}
.m31_c00405{transform:matrix(0.022952,-0.000620,0.006748,0.249909,0,0);-ms-transform:matrix(0.022952,-0.000620,0.006748,0.249909,0,0);-webkit-transform:matrix(0.022952,-0.000620,0.006748,0.249909,0,0);}
.m9e_c00405{transform:matrix(0.131300,-0.003020,0.005748,0.249934,0,0);-ms-transform:matrix(0.131300,-0.003020,0.005748,0.249934,0,0);-webkit-transform:matrix(0.131300,-0.003020,0.005748,0.249934,0,0);}
.m60_c00405{transform:matrix(0.133082,-0.003593,0.006748,0.249909,0,0);-ms-transform:matrix(0.133082,-0.003593,0.006748,0.249909,0,0);-webkit-transform:matrix(0.133082,-0.003593,0.006748,0.249909,0,0);}
.m71_c00405{transform:matrix(0.136555,-0.003687,0.006748,0.249909,0,0);-ms-transform:matrix(0.136555,-0.003687,0.006748,0.249909,0,0);-webkit-transform:matrix(0.136555,-0.003687,0.006748,0.249909,0,0);}
.ma2_c00405{transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);-ms-transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);-webkit-transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);}
.m14_c00405{transform:matrix(0.139864,-0.003776,0.006748,0.249909,0,0);-ms-transform:matrix(0.139864,-0.003776,0.006748,0.249909,0,0);-webkit-transform:matrix(0.139864,-0.003776,0.006748,0.249909,0,0);}
.ma3_c00405{transform:matrix(0.149710,-0.003443,0.005748,0.249934,0,0);-ms-transform:matrix(0.149710,-0.003443,0.005748,0.249934,0,0);-webkit-transform:matrix(0.149710,-0.003443,0.005748,0.249934,0,0);}
.m9a_c00405{transform:matrix(0.149955,-0.003449,0.005748,0.249934,0,0);-ms-transform:matrix(0.149955,-0.003449,0.005748,0.249934,0,0);-webkit-transform:matrix(0.149955,-0.003449,0.005748,0.249934,0,0);}
.m69_c00405{transform:matrix(0.150170,-0.004055,0.006748,0.249909,0,0);-ms-transform:matrix(0.150170,-0.004055,0.006748,0.249909,0,0);-webkit-transform:matrix(0.150170,-0.004055,0.006748,0.249909,0,0);}
.m4a_c00405{transform:matrix(0.154634,-0.004175,0.006748,0.249909,0,0);-ms-transform:matrix(0.154634,-0.004175,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154634,-0.004175,0.006748,0.249909,0,0);}
.m81_c00405{transform:matrix(0.154959,-0.003564,0.005748,0.249934,0,0);-ms-transform:matrix(0.154959,-0.003564,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154959,-0.003564,0.005748,0.249934,0,0);}
.m6b_c00405{transform:matrix(0.155478,-0.004198,0.006748,0.249909,0,0);-ms-transform:matrix(0.155478,-0.004198,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155478,-0.004198,0.006748,0.249909,0,0);}
.m99_c00405{transform:matrix(0.156299,-0.003595,0.005748,0.249934,0,0);-ms-transform:matrix(0.156299,-0.003595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156299,-0.003595,0.005748,0.249934,0,0);}
.m6f_c00405{transform:matrix(0.156403,-0.004223,0.006748,0.249909,0,0);-ms-transform:matrix(0.156403,-0.004223,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156403,-0.004223,0.006748,0.249909,0,0);}
.mc6_c00405{transform:matrix(0.157393,-0.003620,0.005748,0.249934,0,0);-ms-transform:matrix(0.157393,-0.003620,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157393,-0.003620,0.005748,0.249934,0,0);}
.mbb_c00405{transform:matrix(0.159018,-0.003657,0.005748,0.249934,0,0);-ms-transform:matrix(0.159018,-0.003657,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159018,-0.003657,0.005748,0.249934,0,0);}
.m59_c00405{transform:matrix(0.159297,-0.004301,0.006748,0.249909,0,0);-ms-transform:matrix(0.159297,-0.004301,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159297,-0.004301,0.006748,0.249909,0,0);}
.ma4_c00405{transform:matrix(0.159463,-0.003668,0.005748,0.249934,0,0);-ms-transform:matrix(0.159463,-0.003668,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159463,-0.003668,0.005748,0.249934,0,0);}
.m22_c00405{transform:matrix(0.160576,-0.004336,0.006748,0.249909,0,0);-ms-transform:matrix(0.160576,-0.004336,0.006748,0.249909,0,0);-webkit-transform:matrix(0.160576,-0.004336,0.006748,0.249909,0,0);}
.m5a_c00405{transform:matrix(0.160711,-0.004339,0.006748,0.249909,0,0);-ms-transform:matrix(0.160711,-0.004339,0.006748,0.249909,0,0);-webkit-transform:matrix(0.160711,-0.004339,0.006748,0.249909,0,0);}
.m4e_c00405{transform:matrix(0.161971,-0.004373,0.006748,0.249909,0,0);-ms-transform:matrix(0.161971,-0.004373,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161971,-0.004373,0.006748,0.249909,0,0);}
.md4_c00405{transform:matrix(0.162117,-0.003729,0.005748,0.249934,0,0);-ms-transform:matrix(0.162117,-0.003729,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162117,-0.003729,0.005748,0.249934,0,0);}
.mdf_c00405{transform:matrix(0.162207,-0.003731,0.005748,0.249934,0,0);-ms-transform:matrix(0.162207,-0.003731,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162207,-0.003731,0.005748,0.249934,0,0);}
.mde_c00405{transform:matrix(0.162722,-0.003743,0.005748,0.249934,0,0);-ms-transform:matrix(0.162722,-0.003743,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162722,-0.003743,0.005748,0.249934,0,0);}
.mda_c00405{transform:matrix(0.163067,-0.003751,0.005748,0.249934,0,0);-ms-transform:matrix(0.163067,-0.003751,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163067,-0.003751,0.005748,0.249934,0,0);}
.m6a_c00405{transform:matrix(0.163096,-0.004404,0.006748,0.249909,0,0);-ms-transform:matrix(0.163096,-0.004404,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163096,-0.004404,0.006748,0.249909,0,0);}
.m19_c00405{transform:matrix(0.163590,-0.004417,0.006748,0.249909,0,0);-ms-transform:matrix(0.163590,-0.004417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163590,-0.004417,0.006748,0.249909,0,0);}
.m61_c00405{transform:matrix(0.165400,-0.004466,0.006748,0.249909,0,0);-ms-transform:matrix(0.165400,-0.004466,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165400,-0.004466,0.006748,0.249909,0,0);}
.mb8_c00405{transform:matrix(0.165691,-0.003811,0.005748,0.249934,0,0);-ms-transform:matrix(0.165691,-0.003811,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165691,-0.003811,0.005748,0.249934,0,0);}
.m9d_c00405{transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);-ms-transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);}
.m7f_c00405{transform:matrix(0.165866,-0.003815,0.005748,0.249934,0,0);-ms-transform:matrix(0.165866,-0.003815,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165866,-0.003815,0.005748,0.249934,0,0);}
.m5c_c00405{transform:matrix(0.165935,-0.004480,0.006748,0.249909,0,0);-ms-transform:matrix(0.165935,-0.004480,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165935,-0.004480,0.006748,0.249909,0,0);}
.mb9_c00405{transform:matrix(0.166246,-0.003824,0.005748,0.249934,0,0);-ms-transform:matrix(0.166246,-0.003824,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166246,-0.003824,0.005748,0.249934,0,0);}
.m47_c00405{transform:matrix(0.166509,-0.004496,0.006748,0.249909,0,0);-ms-transform:matrix(0.166509,-0.004496,0.006748,0.249909,0,0);-webkit-transform:matrix(0.166509,-0.004496,0.006748,0.249909,0,0);}
.mcb_c00405{transform:matrix(0.167306,-0.003848,0.005748,0.249934,0,0);-ms-transform:matrix(0.167306,-0.003848,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167306,-0.003848,0.005748,0.249934,0,0);}
.m21_c00405{transform:matrix(0.167399,-0.004520,0.006748,0.249909,0,0);-ms-transform:matrix(0.167399,-0.004520,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167399,-0.004520,0.006748,0.249909,0,0);}
.mba_c00405{transform:matrix(0.167546,-0.003854,0.005748,0.249934,0,0);-ms-transform:matrix(0.167546,-0.003854,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167546,-0.003854,0.005748,0.249934,0,0);}
.m7d_c00405{transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);-ms-transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168395,-0.003873,0.005748,0.249934,0,0);}
.m70_c00405{transform:matrix(0.168858,-0.004559,0.006748,0.249909,0,0);-ms-transform:matrix(0.168858,-0.004559,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168858,-0.004559,0.006748,0.249909,0,0);}
.m0_c00405{transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);}
.m83_c00405{transform:matrix(0.169530,-0.003899,0.005748,0.249934,0,0);-ms-transform:matrix(0.169530,-0.003899,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169530,-0.003899,0.005748,0.249934,0,0);}
.md3_c00405{transform:matrix(0.170380,-0.003919,0.005748,0.249934,0,0);-ms-transform:matrix(0.170380,-0.003919,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170380,-0.003919,0.005748,0.249934,0,0);}
.mcc_c00405{transform:matrix(0.170850,-0.003930,0.005748,0.249934,0,0);-ms-transform:matrix(0.170850,-0.003930,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170850,-0.003930,0.005748,0.249934,0,0);}
.m1a_c00405{transform:matrix(0.171053,-0.004618,0.006748,0.249909,0,0);-ms-transform:matrix(0.171053,-0.004618,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171053,-0.004618,0.006748,0.249909,0,0);}
.mb1_c00405{transform:matrix(0.171385,-0.003942,0.005748,0.249934,0,0);-ms-transform:matrix(0.171385,-0.003942,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171385,-0.003942,0.005748,0.249934,0,0);}
.md9_c00405{transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);-ms-transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171510,-0.003945,0.005748,0.249934,0,0);}
.mbf_c00405{transform:matrix(0.172594,-0.003970,0.005748,0.249934,0,0);-ms-transform:matrix(0.172594,-0.003970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172594,-0.003970,0.005748,0.249934,0,0);}
.m6c_c00405{transform:matrix(0.173507,-0.004685,0.006748,0.249909,0,0);-ms-transform:matrix(0.173507,-0.004685,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173507,-0.004685,0.006748,0.249909,0,0);}
.mb0_c00405{transform:matrix(0.174234,-0.004007,0.005748,0.249934,0,0);-ms-transform:matrix(0.174234,-0.004007,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174234,-0.004007,0.005748,0.249934,0,0);}
.m63_c00405{transform:matrix(0.174251,-0.004705,0.006748,0.249909,0,0);-ms-transform:matrix(0.174251,-0.004705,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174251,-0.004705,0.006748,0.249909,0,0);}
.m23_c00405{transform:matrix(0.174791,-0.004719,0.006748,0.249909,0,0);-ms-transform:matrix(0.174791,-0.004719,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174791,-0.004719,0.006748,0.249909,0,0);}
.m2c_c00405{transform:matrix(0.176006,-0.004752,0.006748,0.249909,0,0);-ms-transform:matrix(0.176006,-0.004752,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176006,-0.004752,0.006748,0.249909,0,0);}
.ma5_c00405{transform:matrix(0.176593,-0.004062,0.005748,0.249934,0,0);-ms-transform:matrix(0.176593,-0.004062,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176593,-0.004062,0.005748,0.249934,0,0);}
.m80_c00405{transform:matrix(0.177043,-0.004072,0.005748,0.249934,0,0);-ms-transform:matrix(0.177043,-0.004072,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177043,-0.004072,0.005748,0.249934,0,0);}
.m1f_c00405{transform:matrix(0.177720,-0.004798,0.006748,0.249909,0,0);-ms-transform:matrix(0.177720,-0.004798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177720,-0.004798,0.006748,0.249909,0,0);}
.m7b_c00405{transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);-ms-transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);}
.m1c_c00405{transform:matrix(0.178990,-0.004833,0.006748,0.249909,0,0);-ms-transform:matrix(0.178990,-0.004833,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178990,-0.004833,0.006748,0.249909,0,0);}
.m9b_c00405{transform:matrix(0.179822,-0.004136,0.005748,0.249934,0,0);-ms-transform:matrix(0.179822,-0.004136,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179822,-0.004136,0.005748,0.249934,0,0);}
.m18_c00405{transform:matrix(0.179874,-0.004857,0.006748,0.249909,0,0);-ms-transform:matrix(0.179874,-0.004857,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179874,-0.004857,0.006748,0.249909,0,0);}
.m55_c00405{transform:matrix(0.180204,-0.004866,0.006748,0.249909,0,0);-ms-transform:matrix(0.180204,-0.004866,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180204,-0.004866,0.006748,0.249909,0,0);}
.m5e_c00405{transform:matrix(0.180369,-0.004870,0.006748,0.249909,0,0);-ms-transform:matrix(0.180369,-0.004870,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180369,-0.004870,0.006748,0.249909,0,0);}
.ma9_c00405{transform:matrix(0.180422,-0.004150,0.005748,0.249934,0,0);-ms-transform:matrix(0.180422,-0.004150,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180422,-0.004150,0.005748,0.249934,0,0);}
.mdb_c00405{transform:matrix(0.180592,-0.004154,0.005748,0.249934,0,0);-ms-transform:matrix(0.180592,-0.004154,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180592,-0.004154,0.005748,0.249934,0,0);}
.mcd_c00405{transform:matrix(0.181122,-0.004166,0.005748,0.249934,0,0);-ms-transform:matrix(0.181122,-0.004166,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181122,-0.004166,0.005748,0.249934,0,0);}
.m82_c00405{transform:matrix(0.181157,-0.004167,0.005748,0.249934,0,0);-ms-transform:matrix(0.181157,-0.004167,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181157,-0.004167,0.005748,0.249934,0,0);}
.mdd_c00405{transform:matrix(0.181257,-0.004169,0.005748,0.249934,0,0);-ms-transform:matrix(0.181257,-0.004169,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181257,-0.004169,0.005748,0.249934,0,0);}
.m49_c00405{transform:matrix(0.181329,-0.004896,0.006748,0.249909,0,0);-ms-transform:matrix(0.181329,-0.004896,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181329,-0.004896,0.006748,0.249909,0,0);}
.md1_c00405{transform:matrix(0.181802,-0.004181,0.005748,0.249934,0,0);-ms-transform:matrix(0.181802,-0.004181,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181802,-0.004181,0.005748,0.249934,0,0);}
.m44_c00405{transform:matrix(0.182508,-0.004928,0.006748,0.249909,0,0);-ms-transform:matrix(0.182508,-0.004928,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182508,-0.004928,0.006748,0.249909,0,0);}
.m64_c00405{transform:matrix(0.183263,-0.004948,0.006748,0.249909,0,0);-ms-transform:matrix(0.183263,-0.004948,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183263,-0.004948,0.006748,0.249909,0,0);}
.mc7_c00405{transform:matrix(0.183406,-0.004218,0.005748,0.249934,0,0);-ms-transform:matrix(0.183406,-0.004218,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183406,-0.004218,0.005748,0.249934,0,0);}
.mae_c00405{transform:matrix(0.183591,-0.004223,0.005748,0.249934,0,0);-ms-transform:matrix(0.183591,-0.004223,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183591,-0.004223,0.005748,0.249934,0,0);}
.mab_c00405{transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);-ms-transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);}
.m6e_c00405{transform:matrix(0.184308,-0.004976,0.006748,0.249909,0,0);-ms-transform:matrix(0.184308,-0.004976,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184308,-0.004976,0.006748,0.249909,0,0);}
.m40_c00405{transform:matrix(0.184748,-0.004988,0.006748,0.249909,0,0);-ms-transform:matrix(0.184748,-0.004988,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184748,-0.004988,0.006748,0.249909,0,0);}
.m5d_c00405{transform:matrix(0.185018,-0.004995,0.006748,0.249909,0,0);-ms-transform:matrix(0.185018,-0.004995,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185018,-0.004995,0.006748,0.249909,0,0);}
.m89_c00405{transform:matrix(0.186421,-0.004288,0.005748,0.249934,0,0);-ms-transform:matrix(0.186421,-0.004288,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186421,-0.004288,0.005748,0.249934,0,0);}
.m5b_c00405{transform:matrix(0.186607,-0.005038,0.006748,0.249909,0,0);-ms-transform:matrix(0.186607,-0.005038,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186607,-0.005038,0.006748,0.249909,0,0);}
.m88_c00405{transform:matrix(0.187016,-0.004301,0.005748,0.249934,0,0);-ms-transform:matrix(0.187016,-0.004301,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187016,-0.004301,0.005748,0.249934,0,0);}
.m2d_c00405{transform:matrix(0.187612,-0.005066,0.006748,0.249909,0,0);-ms-transform:matrix(0.187612,-0.005066,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187612,-0.005066,0.006748,0.249909,0,0);}
.mb_c00405{transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);-ms-transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187902,-0.005073,0.006748,0.249909,0,0);}
.md2_c00405{transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);-ms-transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187930,-0.004322,0.005748,0.249934,0,0);}
.m9c_c00405{transform:matrix(0.187965,-0.004323,0.005748,0.249934,0,0);-ms-transform:matrix(0.187965,-0.004323,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187965,-0.004323,0.005748,0.249934,0,0);}
.m3d_c00405{transform:matrix(0.187991,-0.005076,0.006748,0.249909,0,0);-ms-transform:matrix(0.187991,-0.005076,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187991,-0.005076,0.006748,0.249909,0,0);}
.m43_c00405{transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);-ms-transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);}
.m9_c00405{transform:matrix(0.188316,-0.005085,0.006748,0.249909,0,0);-ms-transform:matrix(0.188316,-0.005085,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188316,-0.005085,0.006748,0.249909,0,0);}
.mdc_c00405{transform:matrix(0.188390,-0.004333,0.005748,0.249934,0,0);-ms-transform:matrix(0.188390,-0.004333,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188390,-0.004333,0.005748,0.249934,0,0);}
.m48_c00405{transform:matrix(0.188781,-0.005097,0.006748,0.249909,0,0);-ms-transform:matrix(0.188781,-0.005097,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188781,-0.005097,0.006748,0.249909,0,0);}
.md8_c00405{transform:matrix(0.189020,-0.004347,0.005748,0.249934,0,0);-ms-transform:matrix(0.189020,-0.004347,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189020,-0.004347,0.005748,0.249934,0,0);}
.ma7_c00405{transform:matrix(0.189260,-0.004353,0.005748,0.249934,0,0);-ms-transform:matrix(0.189260,-0.004353,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189260,-0.004353,0.005748,0.249934,0,0);}
.mb5_c00405{transform:matrix(0.189480,-0.004358,0.005748,0.249934,0,0);-ms-transform:matrix(0.189480,-0.004358,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189480,-0.004358,0.005748,0.249934,0,0);}
.m67_c00405{transform:matrix(0.189676,-0.005121,0.006748,0.249909,0,0);-ms-transform:matrix(0.189676,-0.005121,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189676,-0.005121,0.006748,0.249909,0,0);}
.md5_c00405{transform:matrix(0.189825,-0.004366,0.005748,0.249934,0,0);-ms-transform:matrix(0.189825,-0.004366,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189825,-0.004366,0.005748,0.249934,0,0);}
.m5f_c00405{transform:matrix(0.190561,-0.005145,0.006748,0.249909,0,0);-ms-transform:matrix(0.190561,-0.005145,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190561,-0.005145,0.006748,0.249909,0,0);}
.m6d_c00405{transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);-ms-transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190566,-0.005145,0.006748,0.249909,0,0);}
.m58_c00405{transform:matrix(0.190720,-0.005149,0.006748,0.249909,0,0);-ms-transform:matrix(0.190720,-0.005149,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190720,-0.005149,0.006748,0.249909,0,0);}
.ma1_c00405{transform:matrix(0.190935,-0.004391,0.005748,0.249934,0,0);-ms-transform:matrix(0.190935,-0.004391,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190935,-0.004391,0.005748,0.249934,0,0);}
.m56_c00405{transform:matrix(0.191070,-0.005159,0.006748,0.249909,0,0);-ms-transform:matrix(0.191070,-0.005159,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191070,-0.005159,0.006748,0.249909,0,0);}
.m38_c00405{transform:matrix(0.191625,-0.005174,0.006748,0.249909,0,0);-ms-transform:matrix(0.191625,-0.005174,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191625,-0.005174,0.006748,0.249909,0,0);}
.mc2_c00405{transform:matrix(0.192069,-0.004418,0.005748,0.249934,0,0);-ms-transform:matrix(0.192069,-0.004418,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192069,-0.004418,0.005748,0.249934,0,0);}
.ma6_c00405{transform:matrix(0.192254,-0.004422,0.005748,0.249934,0,0);-ms-transform:matrix(0.192254,-0.004422,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192254,-0.004422,0.005748,0.249934,0,0);}
.m6_c00405{transform:matrix(0.192270,-0.005191,0.006748,0.249909,0,0);-ms-transform:matrix(0.192270,-0.005191,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192270,-0.005191,0.006748,0.249909,0,0);}
.m62_c00405{transform:matrix(0.192515,-0.005198,0.006748,0.249909,0,0);-ms-transform:matrix(0.192515,-0.005198,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192515,-0.005198,0.006748,0.249909,0,0);}
.mb2_c00405{transform:matrix(0.192799,-0.004434,0.005748,0.249934,0,0);-ms-transform:matrix(0.192799,-0.004434,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192799,-0.004434,0.005748,0.249934,0,0);}
.m3b_c00405{transform:matrix(0.192910,-0.005209,0.006748,0.249909,0,0);-ms-transform:matrix(0.192910,-0.005209,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192910,-0.005209,0.006748,0.249909,0,0);}
.m7a_c00405{transform:matrix(0.193094,-0.004441,0.005748,0.249934,0,0);-ms-transform:matrix(0.193094,-0.004441,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193094,-0.004441,0.005748,0.249934,0,0);}
.m73_c00405{transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);-ms-transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193250,-0.005218,0.006748,0.249909,0,0);}
.maa_c00405{transform:matrix(0.193549,-0.004452,0.005748,0.249934,0,0);-ms-transform:matrix(0.193549,-0.004452,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193549,-0.004452,0.005748,0.249934,0,0);}
.m66_c00405{transform:matrix(0.193869,-0.005234,0.006748,0.249909,0,0);-ms-transform:matrix(0.193869,-0.005234,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193869,-0.005234,0.006748,0.249909,0,0);}
.mbe_c00405{transform:matrix(0.194139,-0.004465,0.005748,0.249934,0,0);-ms-transform:matrix(0.194139,-0.004465,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194139,-0.004465,0.005748,0.249934,0,0);}
.m90_c00405{transform:matrix(0.194279,-0.004468,0.005748,0.249934,0,0);-ms-transform:matrix(0.194279,-0.004468,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194279,-0.004468,0.005748,0.249934,0,0);}
.md6_c00405{transform:matrix(0.195353,-0.004493,0.005748,0.249934,0,0);-ms-transform:matrix(0.195353,-0.004493,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195353,-0.004493,0.005748,0.249934,0,0);}
.m50_c00405{transform:matrix(0.195559,-0.005280,0.006748,0.249909,0,0);-ms-transform:matrix(0.195559,-0.005280,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195559,-0.005280,0.006748,0.249909,0,0);}
.mca_c00405{transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);-ms-transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);}
.mbc_c00405{transform:matrix(0.196143,-0.004511,0.005748,0.249934,0,0);-ms-transform:matrix(0.196143,-0.004511,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196143,-0.004511,0.005748,0.249934,0,0);}
.m20_c00405{transform:matrix(0.196363,-0.005302,0.006748,0.249909,0,0);-ms-transform:matrix(0.196363,-0.005302,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196363,-0.005302,0.006748,0.249909,0,0);}
.m54_c00405{transform:matrix(0.196428,-0.005304,0.006748,0.249909,0,0);-ms-transform:matrix(0.196428,-0.005304,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196428,-0.005304,0.006748,0.249909,0,0);}
.m4b_c00405{transform:matrix(0.196868,-0.005315,0.006748,0.249909,0,0);-ms-transform:matrix(0.196868,-0.005315,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196868,-0.005315,0.006748,0.249909,0,0);}
.ma0_c00405{transform:matrix(0.197108,-0.004533,0.005748,0.249934,0,0);-ms-transform:matrix(0.197108,-0.004533,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197108,-0.004533,0.005748,0.249934,0,0);}
.m68_c00405{transform:matrix(0.197143,-0.005323,0.006748,0.249909,0,0);-ms-transform:matrix(0.197143,-0.005323,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197143,-0.005323,0.006748,0.249909,0,0);}
.m57_c00405{transform:matrix(0.197153,-0.005323,0.006748,0.249909,0,0);-ms-transform:matrix(0.197153,-0.005323,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197153,-0.005323,0.006748,0.249909,0,0);}
.m32_c00405{transform:matrix(0.197453,-0.005331,0.006748,0.249909,0,0);-ms-transform:matrix(0.197453,-0.005331,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197453,-0.005331,0.006748,0.249909,0,0);}
.m7e_c00405{transform:matrix(0.198173,-0.004558,0.005748,0.249934,0,0);-ms-transform:matrix(0.198173,-0.004558,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198173,-0.004558,0.005748,0.249934,0,0);}
.m24_c00405{transform:matrix(0.199252,-0.005380,0.006748,0.249909,0,0);-ms-transform:matrix(0.199252,-0.005380,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199252,-0.005380,0.006748,0.249909,0,0);}
.m8_c00405{transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);-ms-transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199772,-0.005394,0.006748,0.249909,0,0);}
.m7c_c00405{transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);-ms-transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199792,-0.004595,0.005748,0.249934,0,0);}
.m1b_c00405{transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);-ms-transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200922,-0.005425,0.006748,0.249909,0,0);}
.m53_c00405{transform:matrix(0.200932,-0.005425,0.006748,0.249909,0,0);-ms-transform:matrix(0.200932,-0.005425,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200932,-0.005425,0.006748,0.249909,0,0);}
.m1_c00405{transform:matrix(0.201412,-0.005438,0.006748,0.249909,0,0);-ms-transform:matrix(0.201412,-0.005438,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201412,-0.005438,0.006748,0.249909,0,0);}
.m8f_c00405{transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);-ms-transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);}
.m87_c00405{transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);-ms-transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);}
.m3_c00405{transform:matrix(0.203486,-0.005494,0.006748,0.249909,0,0);-ms-transform:matrix(0.203486,-0.005494,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203486,-0.005494,0.006748,0.249909,0,0);}
.m34_c00405{transform:matrix(0.203526,-0.005495,0.006748,0.249909,0,0);-ms-transform:matrix(0.203526,-0.005495,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203526,-0.005495,0.006748,0.249909,0,0);}
.m2e_c00405{transform:matrix(0.203546,-0.005496,0.006748,0.249909,0,0);-ms-transform:matrix(0.203546,-0.005496,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203546,-0.005496,0.006748,0.249909,0,0);}
.m93_c00405{transform:matrix(0.203866,-0.004689,0.005748,0.249934,0,0);-ms-transform:matrix(0.203866,-0.004689,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203866,-0.004689,0.005748,0.249934,0,0);}
.m91_c00405{transform:matrix(0.203911,-0.004690,0.005748,0.249934,0,0);-ms-transform:matrix(0.203911,-0.004690,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203911,-0.004690,0.005748,0.249934,0,0);}
.m7_c00405{transform:matrix(0.203956,-0.005507,0.006748,0.249909,0,0);-ms-transform:matrix(0.203956,-0.005507,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203956,-0.005507,0.006748,0.249909,0,0);}
.m2a_c00405{transform:matrix(0.204725,-0.005528,0.006748,0.249909,0,0);-ms-transform:matrix(0.204725,-0.005528,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204725,-0.005528,0.006748,0.249909,0,0);}
.m35_c00405{transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);-ms-transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204785,-0.005529,0.006748,0.249909,0,0);}
.mb6_c00405{transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204816,-0.004711,0.005748,0.249934,0,0);}
.md7_c00405{transform:matrix(0.204856,-0.004712,0.005748,0.249934,0,0);-ms-transform:matrix(0.204856,-0.004712,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204856,-0.004712,0.005748,0.249934,0,0);}
.mb7_c00405{transform:matrix(0.205386,-0.004724,0.005748,0.249934,0,0);-ms-transform:matrix(0.205386,-0.004724,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205386,-0.004724,0.005748,0.249934,0,0);}
.m8b_c00405{transform:matrix(0.205966,-0.004737,0.005748,0.249934,0,0);-ms-transform:matrix(0.205966,-0.004737,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205966,-0.004737,0.005748,0.249934,0,0);}
.m5_c00405{transform:matrix(0.206390,-0.005573,0.006748,0.249909,0,0);-ms-transform:matrix(0.206390,-0.005573,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206390,-0.005573,0.006748,0.249909,0,0);}
.m29_c00405{transform:matrix(0.206595,-0.005578,0.006748,0.249909,0,0);-ms-transform:matrix(0.206595,-0.005578,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206595,-0.005578,0.006748,0.249909,0,0);}
.m26_c00405{transform:matrix(0.206925,-0.005587,0.006748,0.249909,0,0);-ms-transform:matrix(0.206925,-0.005587,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206925,-0.005587,0.006748,0.249909,0,0);}
.m1e_c00405{transform:matrix(0.207135,-0.005593,0.006748,0.249909,0,0);-ms-transform:matrix(0.207135,-0.005593,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207135,-0.005593,0.006748,0.249909,0,0);}
.m41_c00405{transform:matrix(0.207274,-0.005596,0.006748,0.249909,0,0);-ms-transform:matrix(0.207274,-0.005596,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207274,-0.005596,0.006748,0.249909,0,0);}
.m3e_c00405{transform:matrix(0.207569,-0.005604,0.006748,0.249909,0,0);-ms-transform:matrix(0.207569,-0.005604,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207569,-0.005604,0.006748,0.249909,0,0);}
.m36_c00405{transform:matrix(0.208044,-0.005617,0.006748,0.249909,0,0);-ms-transform:matrix(0.208044,-0.005617,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208044,-0.005617,0.006748,0.249909,0,0);}
.mc3_c00405{transform:matrix(0.208515,-0.004796,0.005748,0.249934,0,0);-ms-transform:matrix(0.208515,-0.004796,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208515,-0.004796,0.005748,0.249934,0,0);}
.m86_c00405{transform:matrix(0.208980,-0.004807,0.005748,0.249934,0,0);-ms-transform:matrix(0.208980,-0.004807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208980,-0.004807,0.005748,0.249934,0,0);}
.m11_c00405{transform:matrix(0.209119,-0.005646,0.006748,0.249909,0,0);-ms-transform:matrix(0.209119,-0.005646,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209119,-0.005646,0.006748,0.249909,0,0);}
.md0_c00405{transform:matrix(0.209310,-0.004814,0.005748,0.249934,0,0);-ms-transform:matrix(0.209310,-0.004814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209310,-0.004814,0.005748,0.249934,0,0);}
.mc5_c00405{transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);-ms-transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);}
.m42_c00405{transform:matrix(0.209589,-0.005659,0.006748,0.249909,0,0);-ms-transform:matrix(0.209589,-0.005659,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209589,-0.005659,0.006748,0.249909,0,0);}
.m4d_c00405{transform:matrix(0.209814,-0.005665,0.006748,0.249909,0,0);-ms-transform:matrix(0.209814,-0.005665,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209814,-0.005665,0.006748,0.249909,0,0);}
.m77_c00405{transform:matrix(0.210443,-0.005682,0.006748,0.249909,0,0);-ms-transform:matrix(0.210443,-0.005682,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210443,-0.005682,0.006748,0.249909,0,0);}
.m95_c00405{transform:matrix(0.211364,-0.004861,0.005748,0.249934,0,0);-ms-transform:matrix(0.211364,-0.004861,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211364,-0.004861,0.005748,0.249934,0,0);}
.m3c_c00405{transform:matrix(0.211853,-0.005720,0.006748,0.249909,0,0);-ms-transform:matrix(0.211853,-0.005720,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211853,-0.005720,0.006748,0.249909,0,0);}
.mb4_c00405{transform:matrix(0.212339,-0.004884,0.005748,0.249934,0,0);-ms-transform:matrix(0.212339,-0.004884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212339,-0.004884,0.005748,0.249934,0,0);}
.mbd_c00405{transform:matrix(0.213504,-0.004911,0.005748,0.249934,0,0);-ms-transform:matrix(0.213504,-0.004911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213504,-0.004911,0.005748,0.249934,0,0);}
.m4f_c00405{transform:matrix(0.214062,-0.005780,0.006748,0.249909,0,0);-ms-transform:matrix(0.214062,-0.005780,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214062,-0.005780,0.006748,0.249909,0,0);}
.mce_c00405{transform:matrix(0.216253,-0.004974,0.005748,0.249934,0,0);-ms-transform:matrix(0.216253,-0.004974,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216253,-0.004974,0.005748,0.249934,0,0);}
.ma_c00405{transform:matrix(0.216696,-0.005851,0.006748,0.249909,0,0);-ms-transform:matrix(0.216696,-0.005851,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216696,-0.005851,0.006748,0.249909,0,0);}
.ma8_c00405{transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);-ms-transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);}
.m17_c00405{transform:matrix(0.217076,-0.005861,0.006748,0.249909,0,0);-ms-transform:matrix(0.217076,-0.005861,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217076,-0.005861,0.006748,0.249909,0,0);}
.m2_c00405{transform:matrix(0.218031,-0.005887,0.006748,0.249909,0,0);-ms-transform:matrix(0.218031,-0.005887,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218031,-0.005887,0.006748,0.249909,0,0);}
.m74_c00405{transform:matrix(0.218335,-0.005895,0.006748,0.249909,0,0);-ms-transform:matrix(0.218335,-0.005895,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218335,-0.005895,0.006748,0.249909,0,0);}
.m15_c00405{transform:matrix(0.218470,-0.005899,0.006748,0.249909,0,0);-ms-transform:matrix(0.218470,-0.005899,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218470,-0.005899,0.006748,0.249909,0,0);}
.m75_c00405{transform:matrix(0.218840,-0.005909,0.006748,0.249909,0,0);-ms-transform:matrix(0.218840,-0.005909,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218840,-0.005909,0.006748,0.249909,0,0);}
.m2f_c00405{transform:matrix(0.219285,-0.005921,0.006748,0.249909,0,0);-ms-transform:matrix(0.219285,-0.005921,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219285,-0.005921,0.006748,0.249909,0,0);}
.m8e_c00405{transform:matrix(0.219747,-0.005054,0.005748,0.249934,0,0);-ms-transform:matrix(0.219747,-0.005054,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219747,-0.005054,0.005748,0.249934,0,0);}
.m52_c00405{transform:matrix(0.220440,-0.005952,0.006748,0.249909,0,0);-ms-transform:matrix(0.220440,-0.005952,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220440,-0.005952,0.006748,0.249909,0,0);}
.m37_c00405{transform:matrix(0.220630,-0.005957,0.006748,0.249909,0,0);-ms-transform:matrix(0.220630,-0.005957,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220630,-0.005957,0.006748,0.249909,0,0);}
.m72_c00405{transform:matrix(0.221409,-0.005978,0.006748,0.249909,0,0);-ms-transform:matrix(0.221409,-0.005978,0.006748,0.249909,0,0);-webkit-transform:matrix(0.221409,-0.005978,0.006748,0.249909,0,0);}
.maf_c00405{transform:matrix(0.222321,-0.005113,0.005748,0.249934,0,0);-ms-transform:matrix(0.222321,-0.005113,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222321,-0.005113,0.005748,0.249934,0,0);}
.m4c_c00405{transform:matrix(0.222519,-0.006008,0.006748,0.249909,0,0);-ms-transform:matrix(0.222519,-0.006008,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222519,-0.006008,0.006748,0.249909,0,0);}
.m33_c00405{transform:matrix(0.224343,-0.006057,0.006748,0.249909,0,0);-ms-transform:matrix(0.224343,-0.006057,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224343,-0.006057,0.006748,0.249909,0,0);}
.m51_c00405{transform:matrix(0.224698,-0.006067,0.006748,0.249909,0,0);-ms-transform:matrix(0.224698,-0.006067,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224698,-0.006067,0.006748,0.249909,0,0);}
.mac_c00405{transform:matrix(0.224881,-0.005172,0.005748,0.249934,0,0);-ms-transform:matrix(0.224881,-0.005172,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224881,-0.005172,0.005748,0.249934,0,0);}
.m30_c00405{transform:matrix(0.228037,-0.006157,0.006748,0.249909,0,0);-ms-transform:matrix(0.228037,-0.006157,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228037,-0.006157,0.006748,0.249909,0,0);}
.m8a_c00405{transform:matrix(0.228330,-0.005252,0.005748,0.249934,0,0);-ms-transform:matrix(0.228330,-0.005252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228330,-0.005252,0.005748,0.249934,0,0);}
.m2b_c00405{transform:matrix(0.228877,-0.006180,0.006748,0.249909,0,0);-ms-transform:matrix(0.228877,-0.006180,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228877,-0.006180,0.006748,0.249909,0,0);}
.m25_c00405{transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);-ms-transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);-webkit-transform:matrix(0.230331,-0.006219,0.006748,0.249909,0,0);}
.m28_c00405{transform:matrix(0.234060,-0.006320,0.006748,0.249909,0,0);-ms-transform:matrix(0.234060,-0.006320,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234060,-0.006320,0.006748,0.249909,0,0);}
.m98_c00405{transform:matrix(0.234608,-0.005396,0.005748,0.249934,0,0);-ms-transform:matrix(0.234608,-0.005396,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234608,-0.005396,0.005748,0.249934,0,0);}
.m97_c00405{transform:matrix(0.235398,-0.005414,0.005748,0.249934,0,0);-ms-transform:matrix(0.235398,-0.005414,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235398,-0.005414,0.005748,0.249934,0,0);}
.mc4_c00405{transform:matrix(0.236402,-0.005437,0.005748,0.249934,0,0);-ms-transform:matrix(0.236402,-0.005437,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236402,-0.005437,0.005748,0.249934,0,0);}
.m4_c00405{transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);-ms-transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238663,-0.006444,0.006748,0.249909,0,0);}
.m94_c00405{transform:matrix(0.239302,-0.005504,0.005748,0.249934,0,0);-ms-transform:matrix(0.239302,-0.005504,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239302,-0.005504,0.005748,0.249934,0,0);}
.m3a_c00405{transform:matrix(0.241862,-0.006530,0.006748,0.249909,0,0);-ms-transform:matrix(0.241862,-0.006530,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241862,-0.006530,0.006748,0.249909,0,0);}
.mc0_c00405{transform:matrix(0.242506,-0.005578,0.005748,0.249934,0,0);-ms-transform:matrix(0.242506,-0.005578,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242506,-0.005578,0.005748,0.249934,0,0);}
.m12_c00405{transform:matrix(0.242537,-0.006548,0.006748,0.249909,0,0);-ms-transform:matrix(0.242537,-0.006548,0.006748,0.249909,0,0);-webkit-transform:matrix(0.242537,-0.006548,0.006748,0.249909,0,0);}
.m65_c00405{transform:matrix(0.244341,-0.006597,0.006748,0.249909,0,0);-ms-transform:matrix(0.244341,-0.006597,0.006748,0.249909,0,0);-webkit-transform:matrix(0.244341,-0.006597,0.006748,0.249909,0,0);}
.mb3_c00405{transform:matrix(0.244400,-0.005621,0.005748,0.249934,0,0);-ms-transform:matrix(0.244400,-0.005621,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244400,-0.005621,0.005748,0.249934,0,0);}
.m96_c00405{transform:matrix(0.246605,-0.005672,0.005748,0.249934,0,0);-ms-transform:matrix(0.246605,-0.005672,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246605,-0.005672,0.005748,0.249934,0,0);}
.m46_c00405{transform:matrix(0.246705,-0.006661,0.006748,0.249909,0,0);-ms-transform:matrix(0.246705,-0.006661,0.006748,0.249909,0,0);-webkit-transform:matrix(0.246705,-0.006661,0.006748,0.249909,0,0);}
.m45_c00405{transform:matrix(0.248429,-0.006708,0.006748,0.249909,0,0);-ms-transform:matrix(0.248429,-0.006708,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248429,-0.006708,0.006748,0.249909,0,0);}
.me_c00405{transform:matrix(0.248864,-0.006719,0.006748,0.249909,0,0);-ms-transform:matrix(0.248864,-0.006719,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248864,-0.006719,0.006748,0.249909,0,0);}
.m27_c00405{transform:matrix(0.248944,-0.006721,0.006748,0.249909,0,0);-ms-transform:matrix(0.248944,-0.006721,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248944,-0.006721,0.006748,0.249909,0,0);}
.m10_c00405{transform:matrix(0.258631,-0.006983,0.006748,0.249909,0,0);-ms-transform:matrix(0.258631,-0.006983,0.006748,0.249909,0,0);-webkit-transform:matrix(0.258631,-0.006983,0.006748,0.249909,0,0);}
.mc1_c00405{transform:matrix(0.259766,-0.005975,0.005748,0.249934,0,0);-ms-transform:matrix(0.259766,-0.005975,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259766,-0.005975,0.005748,0.249934,0,0);}
.m84_c00405{transform:matrix(0.259796,-0.005975,0.005748,0.249934,0,0);-ms-transform:matrix(0.259796,-0.005975,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259796,-0.005975,0.005748,0.249934,0,0);}
.m1d_c00405{transform:matrix(0.268102,-0.007239,0.006748,0.249909,0,0);-ms-transform:matrix(0.268102,-0.007239,0.006748,0.249909,0,0);-webkit-transform:matrix(0.268102,-0.007239,0.006748,0.249909,0,0);}
.md_c00405{transform:matrix(0.271946,-0.007343,0.006748,0.249909,0,0);-ms-transform:matrix(0.271946,-0.007343,0.006748,0.249909,0,0);-webkit-transform:matrix(0.271946,-0.007343,0.006748,0.249909,0,0);}
.m76_c00405{transform:matrix(0.276489,-0.007465,0.006748,0.249909,0,0);-ms-transform:matrix(0.276489,-0.007465,0.006748,0.249909,0,0);-webkit-transform:matrix(0.276489,-0.007465,0.006748,0.249909,0,0);}
.m92_c00405{transform:matrix(0.293517,-0.006751,0.005748,0.249934,0,0);-ms-transform:matrix(0.293517,-0.006751,0.005748,0.249934,0,0);-webkit-transform:matrix(0.293517,-0.006751,0.005748,0.249934,0,0);}
.m39_c00405{transform:matrix(0.293753,-0.007931,0.006748,0.249909,0,0);-ms-transform:matrix(0.293753,-0.007931,0.006748,0.249909,0,0);-webkit-transform:matrix(0.293753,-0.007931,0.006748,0.249909,0,0);}
.m79_c00405{transform:matrix(0.295202,-0.006790,0.005748,0.249934,0,0);-ms-transform:matrix(0.295202,-0.006790,0.005748,0.249934,0,0);-webkit-transform:matrix(0.295202,-0.006790,0.005748,0.249934,0,0);}
.mad_c00405{transform:matrix(0.296737,-0.006825,0.005748,0.249934,0,0);-ms-transform:matrix(0.296737,-0.006825,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296737,-0.006825,0.005748,0.249934,0,0);}
.m13_c00405{transform:matrix(0.298126,-0.008049,0.006748,0.249909,0,0);-ms-transform:matrix(0.298126,-0.008049,0.006748,0.249909,0,0);-webkit-transform:matrix(0.298126,-0.008049,0.006748,0.249909,0,0);}
.mc8_c00405{transform:matrix(0.308663,-0.007099,0.005748,0.249934,0,0);-ms-transform:matrix(0.308663,-0.007099,0.005748,0.249934,0,0);-webkit-transform:matrix(0.308663,-0.007099,0.005748,0.249934,0,0);}
.mcf_c00405{transform:matrix(0.322370,-0.007415,0.005748,0.249934,0,0);-ms-transform:matrix(0.322370,-0.007415,0.005748,0.249934,0,0);-webkit-transform:matrix(0.322370,-0.007415,0.005748,0.249934,0,0);}
.m78_c00405{transform:matrix(0.322442,-0.008706,0.006748,0.249909,0,0);-ms-transform:matrix(0.322442,-0.008706,0.006748,0.249909,0,0);-webkit-transform:matrix(0.322442,-0.008706,0.006748,0.249909,0,0);}
.mc9_c00405{transform:matrix(0.331307,-0.007620,0.005748,0.249934,0,0);-ms-transform:matrix(0.331307,-0.007620,0.005748,0.249934,0,0);-webkit-transform:matrix(0.331307,-0.007620,0.005748,0.249934,0,0);}
.m9f_c00405{transform:matrix(0.347068,-0.007983,0.005748,0.249934,0,0);-ms-transform:matrix(0.347068,-0.007983,0.005748,0.249934,0,0);-webkit-transform:matrix(0.347068,-0.007983,0.005748,0.249934,0,0);}
.mf_c00405{transform:matrix(0.352147,-0.009508,0.006748,0.249909,0,0);-ms-transform:matrix(0.352147,-0.009508,0.006748,0.249909,0,0);-webkit-transform:matrix(0.352147,-0.009508,0.006748,0.249909,0,0);}
.m16_c00405{transform:matrix(0.490671,-0.013248,0.006748,0.249909,0,0);-ms-transform:matrix(0.490671,-0.013248,0.006748,0.249909,0,0);-webkit-transform:matrix(0.490671,-0.013248,0.006748,0.249909,0,0);}
.m8c_c00405{transform:matrix(0.731761,-0.016831,0.005748,0.249934,0,0);-ms-transform:matrix(0.731761,-0.016831,0.005748,0.249934,0,0);-webkit-transform:matrix(0.731761,-0.016831,0.005748,0.249934,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:0.000000px;}
.fc0_c00405{color:transparent;}
.fs10_c00405{font-size:55.664717px;}
.fsb_c00405{font-size:55.670281px;}
.fs2_c00405{font-size:57.771046px;}
.fs5_c00405{font-size:58.821429px;}
.fs1_c00405{font-size:60.922194px;}
.fse_c00405{font-size:61.966384px;}
.fsf_c00405{font-size:63.016661px;}
.fs3_c00405{font-size:63.022959px;}
.fs8_c00405{font-size:64.073342px;}
.fs12_c00405{font-size:65.117217px;}
.fs6_c00405{font-size:65.123725px;}
.fs11_c00405{font-size:66.167494px;}
.fs4_c00405{font-size:66.174107px;}
.fsc_c00405{font-size:67.217772px;}
.fsa_c00405{font-size:67.224490px;}
.fs14_c00405{font-size:68.268050px;}
.fs9_c00405{font-size:68.274873px;}
.fs7_c00405{font-size:69.325255px;}
.fs13_c00405{font-size:71.418883px;}
.fsd_c00405{font-size:72.469160px;}
.fs0_c00405{font-size:74.550000px;}
.y0_c00405{bottom:0.000000px;}
.yd9_c00405{bottom:20.733417px;}
.yda_c00405{bottom:21.901293px;}
.ydb_c00405{bottom:22.676094px;}
.ydc_c00405{bottom:23.145321px;}
.ydd_c00405{bottom:24.498997px;}
.yde_c00405{bottom:25.119528px;}
.ydf_c00405{bottom:27.122213px;}
.ye0_c00405{bottom:27.926991px;}
.yd1_c00405{bottom:38.289315px;}
.yd2_c00405{bottom:39.261141px;}
.yd3_c00405{bottom:40.867426px;}
.yd4_c00405{bottom:41.426117px;}
.yd5_c00405{bottom:42.383696px;}
.yd6_c00405{bottom:43.441501px;}
.yd7_c00405{bottom:44.291058px;}
.yd8_c00405{bottom:46.012455px;}
.ycb_c00405{bottom:55.836469px;}
.ycc_c00405{bottom:57.833892px;}
.ycd_c00405{bottom:58.469827px;}
.yce_c00405{bottom:59.705835px;}
.ycf_c00405{bottom:61.079173px;}
.yd0_c00405{bottom:61.614487px;}
.yc4_c00405{bottom:71.503589px;}
.yc5_c00405{bottom:71.974068px;}
.yc6_c00405{bottom:73.649991px;}
.yc7_c00405{bottom:74.039007px;}
.yc8_c00405{bottom:74.669861px;}
.yc9_c00405{bottom:76.468470px;}
.yca_c00405{bottom:79.696802px;}
.ybd_c00405{bottom:89.059110px;}
.ybe_c00405{bottom:89.598323px;}
.ybf_c00405{bottom:90.998885px;}
.yc0_c00405{bottom:91.953257px;}
.yc1_c00405{bottom:93.739466px;}
.yc2_c00405{bottom:95.481759px;}
.yc3_c00405{bottom:96.001860px;}
.yb5_c00405{bottom:106.073462px;}
.yb6_c00405{bottom:106.974746px;}
.yb7_c00405{bottom:108.467703px;}
.yb8_c00405{bottom:108.846807px;}
.yb9_c00405{bottom:110.365310px;}
.yba_c00405{bottom:111.003882px;}
.ybb_c00405{bottom:111.510297px;}
.ybc_c00405{bottom:113.080614px;}
.yaf_c00405{bottom:125.240946px;}
.yb0_c00405{bottom:125.911832px;}
.yb1_c00405{bottom:127.468191px;}
.yb2_c00405{bottom:127.813062px;}
.yb3_c00405{bottom:128.666535px;}
.yb4_c00405{bottom:129.737478px;}
.ya8_c00405{bottom:140.370177px;}
.ya9_c00405{bottom:141.410223px;}
.yaa_c00405{bottom:141.839223px;}
.yab_c00405{bottom:142.504673px;}
.yac_c00405{bottom:143.923938px;}
.yad_c00405{bottom:144.766535px;}
.yae_c00405{bottom:146.720054px;}
.ya2_c00405{bottom:156.851144px;}
.ya3_c00405{bottom:160.287150px;}
.ya4_c00405{bottom:160.769766px;}
.ya5_c00405{bottom:162.267771px;}
.ya6_c00405{bottom:162.866777px;}
.ya7_c00405{bottom:164.430911px;}
.y9a_c00405{bottom:176.286121px;}
.y9b_c00405{bottom:176.677514px;}
.y9c_c00405{bottom:177.140121px;}
.y9d_c00405{bottom:178.228314px;}
.y9e_c00405{bottom:179.176629px;}
.y9f_c00405{bottom:179.545887px;}
.ya0_c00405{bottom:180.571784px;}
.ya1_c00405{bottom:181.326792px;}
.y94_c00405{bottom:191.954128px;}
.y95_c00405{bottom:192.505404px;}
.y96_c00405{bottom:193.309427px;}
.y97_c00405{bottom:195.023214px;}
.y98_c00405{bottom:196.377063px;}
.y99_c00405{bottom:197.094939px;}
.y8e_c00405{bottom:210.314131px;}
.y8f_c00405{bottom:210.536886px;}
.y90_c00405{bottom:213.098617px;}
.y91_c00405{bottom:213.553321px;}
.y92_c00405{bottom:213.874573px;}
.y93_c00405{bottom:214.930736px;}
.y87_c00405{bottom:226.526508px;}
.y88_c00405{bottom:227.910627px;}
.y89_c00405{bottom:228.775025px;}
.y8a_c00405{bottom:229.146609px;}
.y8b_c00405{bottom:231.481372px;}
.y8c_c00405{bottom:231.990589px;}
.y8d_c00405{bottom:232.880395px;}
.y81_c00405{bottom:242.978311px;}
.y82_c00405{bottom:244.609075px;}
.y83_c00405{bottom:246.271492px;}
.y84_c00405{bottom:247.043397px;}
.y85_c00405{bottom:248.342330px;}
.y86_c00405{bottom:250.368610px;}
.y7a_c00405{bottom:259.746000px;}
.y7b_c00405{bottom:260.927142px;}
.y7c_c00405{bottom:262.057189px;}
.y7d_c00405{bottom:263.888933px;}
.y7e_c00405{bottom:264.185080px;}
.y7f_c00405{bottom:265.150218px;}
.y80_c00405{bottom:266.181526px;}
.y73_c00405{bottom:275.852957px;}
.y74_c00405{bottom:277.485692px;}
.y75_c00405{bottom:278.824751px;}
.y76_c00405{bottom:280.140642px;}
.y77_c00405{bottom:281.996013px;}
.y78_c00405{bottom:282.401312px;}
.y79_c00405{bottom:284.110919px;}
.y6b_c00405{bottom:293.403622px;}
.y6c_c00405{bottom:294.269844px;}
.y6d_c00405{bottom:294.875013px;}
.y6e_c00405{bottom:296.290637px;}
.y6f_c00405{bottom:297.117089px;}
.y70_c00405{bottom:298.913316px;}
.y71_c00405{bottom:299.426391px;}
.y72_c00405{bottom:301.124531px;}
.y63_c00405{bottom:309.620556px;}
.y64_c00405{bottom:310.968084px;}
.y65_c00405{bottom:311.800456px;}
.y66_c00405{bottom:313.147661px;}
.y67_c00405{bottom:314.219486px;}
.y68_c00405{bottom:314.972393px;}
.y69_c00405{bottom:315.630117px;}
.y6a_c00405{bottom:317.516535px;}
.y5d_c00405{bottom:327.980446px;}
.y5e_c00405{bottom:329.371081px;}
.y5f_c00405{bottom:331.077280px;}
.y60_c00405{bottom:332.600913px;}
.y61_c00405{bottom:334.247053px;}
.y62_c00405{bottom:334.670262px;}
.y56_c00405{bottom:344.728293px;}
.y57_c00405{bottom:347.520525px;}
.y58_c00405{bottom:349.394338px;}
.y59_c00405{bottom:350.050398px;}
.y5a_c00405{bottom:351.668778px;}
.y5b_c00405{bottom:352.287820px;}
.y5c_c00405{bottom:352.946026px;}
.y50_c00405{bottom:361.745058px;}
.y51_c00405{bottom:362.874924px;}
.y52_c00405{bottom:364.651215px;}
.y53_c00405{bottom:366.188701px;}
.y54_c00405{bottom:368.837544px;}
.y55_c00405{bottom:370.000783px;}
.y48_c00405{bottom:379.298715px;}
.y49_c00405{bottom:380.100225px;}
.y4a_c00405{bottom:382.642302px;}
.y4b_c00405{bottom:383.133966px;}
.y4c_c00405{bottom:383.702908px;}
.y4d_c00405{bottom:385.447687px;}
.y4e_c00405{bottom:386.747544px;}
.y4f_c00405{bottom:387.133293px;}
.y41_c00405{bottom:396.311982px;}
.y42_c00405{bottom:397.518043px;}
.y43_c00405{bottom:398.800558px;}
.y44_c00405{bottom:399.240819px;}
.y45_c00405{bottom:400.297453px;}
.y46_c00405{bottom:400.804288px;}
.y47_c00405{bottom:403.150687px;}
.y39_c00405{bottom:414.134146px;}
.y3a_c00405{bottom:414.680220px;}
.y3b_c00405{bottom:416.513258px;}
.y3c_c00405{bottom:417.100302px;}
.y3d_c00405{bottom:417.690262px;}
.y3e_c00405{bottom:418.786092px;}
.y3f_c00405{bottom:419.180586px;}
.y40_c00405{bottom:420.282489px;}
.y33_c00405{bottom:430.883017px;}
.y34_c00405{bottom:432.130498px;}
.y35_c00405{bottom:433.970845px;}
.y36_c00405{bottom:434.446855px;}
.y37_c00405{bottom:434.899057px;}
.y38_c00405{bottom:436.709482px;}
.y2c_c00405{bottom:447.064663px;}
.y2d_c00405{bottom:448.422823px;}
.y2e_c00405{bottom:449.529631px;}
.y2f_c00405{bottom:450.283161px;}
.y30_c00405{bottom:451.910775px;}
.y31_c00405{bottom:453.454524px;}
.y32_c00405{bottom:453.985899px;}
.y25_c00405{bottom:463.836916px;}
.y26_c00405{bottom:466.216060px;}
.y27_c00405{bottom:466.509256px;}
.y28_c00405{bottom:466.866843px;}
.y29_c00405{bottom:467.846824px;}
.y2a_c00405{bottom:469.304505px;}
.y2b_c00405{bottom:469.896000px;}
.y1e_c00405{bottom:481.391946px;}
.y1f_c00405{bottom:482.857645px;}
.y20_c00405{bottom:483.490974px;}
.y21_c00405{bottom:484.065379px;}
.y22_c00405{bottom:486.514341px;}
.y23_c00405{bottom:487.462168px;}
.y24_c00405{bottom:487.867702px;}
.y16_c00405{bottom:498.924364px;}
.y17_c00405{bottom:500.151417px;}
.y18_c00405{bottom:501.699123px;}
.y19_c00405{bottom:502.338648px;}
.y1a_c00405{bottom:504.025945px;}
.y1b_c00405{bottom:504.505102px;}
.y1c_c00405{bottom:505.757181px;}
.y1d_c00405{bottom:506.106181px;}
.yf_c00405{bottom:516.501849px;}
.y10_c00405{bottom:518.056800px;}
.y11_c00405{bottom:518.617004px;}
.y12_c00405{bottom:518.929045px;}
.y13_c00405{bottom:519.948244px;}
.y14_c00405{bottom:520.195999px;}
.y15_c00405{bottom:521.468865px;}
.y8_c00405{bottom:531.900732px;}
.y9_c00405{bottom:532.449202px;}
.ya_c00405{bottom:535.093987px;}
.yb_c00405{bottom:535.730022px;}
.yc_c00405{bottom:538.209115px;}
.yd_c00405{bottom:538.979209px;}
.ye_c00405{bottom:539.310025px;}
.y2_c00405{bottom:548.649000px;}
.y3_c00405{bottom:549.906160px;}
.y4_c00405{bottom:551.588733px;}
.y5_c00405{bottom:553.043047px;}
.y6_c00405{bottom:553.375512px;}
.y7_c00405{bottom:555.367140px;}
.y1_c00405{bottom:566.466000px;}
.h12_c00405{height:55.664717px;}
.hd_c00405{height:55.670281px;}
.h4_c00405{height:57.771046px;}
.h7_c00405{height:58.821429px;}
.h3_c00405{height:60.922194px;}
.h10_c00405{height:61.966384px;}
.h11_c00405{height:63.016661px;}
.h5_c00405{height:63.022959px;}
.ha_c00405{height:64.073342px;}
.h14_c00405{height:65.117217px;}
.h8_c00405{height:65.123725px;}
.h13_c00405{height:66.167494px;}
.h6_c00405{height:66.174107px;}
.he_c00405{height:67.217772px;}
.hc_c00405{height:67.224490px;}
.h16_c00405{height:68.268050px;}
.hb_c00405{height:68.274873px;}
.h9_c00405{height:69.325255px;}
.h15_c00405{height:71.418883px;}
.hf_c00405{height:72.469160px;}
.h2_c00405{height:74.550000px;}
.h0_c00405{height:613.170000px;}
.h1_c00405{height:613.500000px;}
.w0_c00405{width:359.100000px;}
.w1_c00405{width:359.250000px;}
.x0_c00405{left:0.000000px;}
.x4c_c00405{left:41.815583px;}
.x2_c00405{left:45.964500px;}
.x22_c00405{left:47.343263px;}
.xf_c00405{left:49.921724px;}
.x8_c00405{left:55.339203px;}
.x5f_c00405{left:56.552256px;}
.x44_c00405{left:61.909326px;}
.x37_c00405{left:64.091832px;}
.x69_c00405{left:67.037565px;}
.x59_c00405{left:68.282607px;}
.x5c_c00405{left:71.764953px;}
.x9_c00405{left:74.930176px;}
.x60_c00405{left:77.158154px;}
.x3c_c00405{left:85.817778px;}
.x68_c00405{left:88.450440px;}
.x3_c00405{left:92.526000px;}
.x16_c00405{left:94.879614px;}
.x32_c00405{left:96.469355px;}
.x4d_c00405{left:98.368581px;}
.x52_c00405{left:99.734246px;}
.x55_c00405{left:102.368244px;}
.x25_c00405{left:103.741224px;}
.x1c_c00405{left:105.399369px;}
.x5d_c00405{left:106.722453px;}
.x66_c00405{left:112.704305px;}
.x54_c00405{left:114.010038px;}
.x45_c00405{left:115.415784px;}
.x6a_c00405{left:118.926804px;}
.x6c_c00405{left:121.092263px;}
.x48_c00405{left:123.020385px;}
.x74_c00405{left:129.738935px;}
.x1d_c00405{left:130.746246px;}
.x10_c00405{left:131.752382px;}
.x75_c00405{left:132.969536px;}
.x6d_c00405{left:134.482400px;}
.x56_c00405{left:136.949157px;}
.x67_c00405{left:138.309045px;}
.x23_c00405{left:142.520406px;}
.x70_c00405{left:145.855934px;}
.x3d_c00405{left:147.047457px;}
.x26_c00405{left:149.848950px;}
.x57_c00405{left:151.799967px;}
.x1e_c00405{left:153.744002px;}
.x4_c00405{left:154.843500px;}
.x17_c00405{left:156.760935px;}
.x61_c00405{left:158.809175px;}
.x11_c00405{left:161.229240px;}
.x2c_c00405{left:165.589209px;}
.x33_c00405{left:168.281687px;}
.xa_c00405{left:169.382625px;}
.x71_c00405{left:174.745089px;}
.x12_c00405{left:177.678804px;}
.x1_c00405{left:179.280000px;}
.x27_c00405{left:181.260002px;}
.x18_c00405{left:182.337312px;}
.x4e_c00405{left:184.577390px;}
.x2a_c00405{left:186.877706px;}
.xb_c00405{left:192.105517px;}
.x2d_c00405{left:194.948258px;}
.x38_c00405{left:196.297664px;}
.x3e_c00405{left:200.044082px;}
.x76_c00405{left:203.470428px;}
.x49_c00405{left:206.442890px;}
.x5_c00405{left:208.707000px;}
.x34_c00405{left:212.308751px;}
.x39_c00405{left:215.924111px;}
.x6e_c00405{left:218.251842px;}
.x40_c00405{left:219.942695px;}
.x6_c00405{left:221.020500px;}
.x2e_c00405{left:224.415306px;}
.x64_c00405{left:227.471376px;}
.x2b_c00405{left:229.039376px;}
.x13_c00405{left:231.327387px;}
.x4a_c00405{left:232.382472px;}
.x35_c00405{left:233.415452px;}
.x46_c00405{left:239.653646px;}
.x14_c00405{left:244.395222px;}
.x5a_c00405{left:245.695568px;}
.x65_c00405{left:247.446668px;}
.x19_c00405{left:249.833457px;}
.x1f_c00405{left:251.673767px;}
.x4f_c00405{left:253.661753px;}
.x4b_c00405{left:255.074757px;}
.x53_c00405{left:260.834412px;}
.x5b_c00405{left:264.622190px;}
.x24_c00405{left:266.080589px;}
.x1a_c00405{left:269.025510px;}
.x5e_c00405{left:271.309953px;}
.x50_c00405{left:273.387279px;}
.x77_c00405{left:275.013717px;}
.x3a_c00405{left:276.097871px;}
.x2f_c00405{left:279.234174px;}
.xc_c00405{left:280.643628px;}
.x62_c00405{left:282.167025px;}
.x6b_c00405{left:284.993055px;}
.x20_c00405{left:289.558292px;}
.x3f_c00405{left:291.366641px;}
.x72_c00405{left:293.349815px;}
.x7_c00405{left:294.784500px;}
.x30_c00405{left:298.959900px;}
.x58_c00405{left:301.218636px;}
.x47_c00405{left:302.956847px;}
.x41_c00405{left:304.181195px;}
.x21_c00405{left:305.801183px;}
.xd_c00405{left:308.164899px;}
.x15_c00405{left:311.386181px;}
.x28_c00405{left:313.339653px;}
.x73_c00405{left:317.668367px;}
.xe_c00405{left:319.972575px;}
.x63_c00405{left:321.910182px;}
.x42_c00405{left:327.108695px;}
.x6f_c00405{left:329.576990px;}
.x36_c00405{left:331.160349px;}
.x1b_c00405{left:333.105993px;}
.x3b_c00405{left:334.191212px;}
.x29_c00405{left:335.466435px;}
.x51_c00405{left:338.727561px;}
.x43_c00405{left:351.486695px;}
.x31_c00405{left:354.059309px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs10_c00405{font-size:49.479749pt;}
.fsb_c00405{font-size:49.484694pt;}
.fs2_c00405{font-size:51.352041pt;}
.fs5_c00405{font-size:52.285714pt;}
.fs1_c00405{font-size:54.153061pt;}
.fse_c00405{font-size:55.081230pt;}
.fsf_c00405{font-size:56.014810pt;}
.fs3_c00405{font-size:56.020408pt;}
.fs8_c00405{font-size:56.954082pt;}
.fs12_c00405{font-size:57.881970pt;}
.fs6_c00405{font-size:57.887755pt;}
.fs11_c00405{font-size:58.815551pt;}
.fs4_c00405{font-size:58.821429pt;}
.fsc_c00405{font-size:59.749131pt;}
.fsa_c00405{font-size:59.755102pt;}
.fs14_c00405{font-size:60.682711pt;}
.fs9_c00405{font-size:60.688776pt;}
.fs7_c00405{font-size:61.622449pt;}
.fs13_c00405{font-size:63.483451pt;}
.fsd_c00405{font-size:64.417032pt;}
.fs0_c00405{font-size:66.266667pt;}
.y0_c00405{bottom:0.000000pt;}
.yd9_c00405{bottom:18.429704pt;}
.yda_c00405{bottom:19.467816pt;}
.ydb_c00405{bottom:20.156528pt;}
.ydc_c00405{bottom:20.573619pt;}
.ydd_c00405{bottom:21.776887pt;}
.yde_c00405{bottom:22.328469pt;}
.ydf_c00405{bottom:24.108633pt;}
.ye0_c00405{bottom:24.823992pt;}
.yd1_c00405{bottom:34.034947pt;}
.yd2_c00405{bottom:34.898792pt;}
.yd3_c00405{bottom:36.326601pt;}
.yd4_c00405{bottom:36.823215pt;}
.yd5_c00405{bottom:37.674396pt;}
.yd6_c00405{bottom:38.614668pt;}
.yd7_c00405{bottom:39.369829pt;}
.yd8_c00405{bottom:40.899960pt;}
.ycb_c00405{bottom:49.632417pt;}
.ycc_c00405{bottom:51.407904pt;}
.ycd_c00405{bottom:51.973180pt;}
.yce_c00405{bottom:53.071853pt;}
.ycf_c00405{bottom:54.292599pt;}
.yd0_c00405{bottom:54.768433pt;}
.yc4_c00405{bottom:63.558745pt;}
.yc5_c00405{bottom:63.976949pt;}
.yc6_c00405{bottom:65.466659pt;}
.yc7_c00405{bottom:65.812451pt;}
.yc8_c00405{bottom:66.373209pt;}
.yc9_c00405{bottom:67.971973pt;}
.yca_c00405{bottom:70.841601pt;}
.ybd_c00405{bottom:79.163653pt;}
.ybe_c00405{bottom:79.642953pt;}
.ybf_c00405{bottom:80.887897pt;}
.yc0_c00405{bottom:81.736228pt;}
.yc1_c00405{bottom:83.323969pt;}
.yc2_c00405{bottom:84.872675pt;}
.yc3_c00405{bottom:85.334987pt;}
.yb5_c00405{bottom:94.287521pt;}
.yb6_c00405{bottom:95.088663pt;}
.yb7_c00405{bottom:96.415736pt;}
.yb8_c00405{bottom:96.752717pt;}
.yb9_c00405{bottom:98.102497pt;}
.yba_c00405{bottom:98.670117pt;}
.ybb_c00405{bottom:99.120264pt;}
.ybc_c00405{bottom:100.516101pt;}
.yaf_c00405{bottom:111.325285pt;}
.yb0_c00405{bottom:111.921628pt;}
.yb1_c00405{bottom:113.305059pt;}
.yb2_c00405{bottom:113.611611pt;}
.yb3_c00405{bottom:114.370253pt;}
.yb4_c00405{bottom:115.322203pt;}
.ya8_c00405{bottom:124.773491pt;}
.ya9_c00405{bottom:125.697976pt;}
.yaa_c00405{bottom:126.079309pt;}
.yab_c00405{bottom:126.670820pt;}
.yac_c00405{bottom:127.932389pt;}
.yad_c00405{bottom:128.681364pt;}
.yae_c00405{bottom:130.417825pt;}
.ya2_c00405{bottom:139.423239pt;}
.ya3_c00405{bottom:142.477467pt;}
.ya4_c00405{bottom:142.906459pt;}
.ya5_c00405{bottom:144.238019pt;}
.ya6_c00405{bottom:144.770468pt;}
.ya7_c00405{bottom:146.160809pt;}
.y9a_c00405{bottom:156.698775pt;}
.y9b_c00405{bottom:157.046679pt;}
.y9c_c00405{bottom:157.457885pt;}
.y9d_c00405{bottom:158.425168pt;}
.y9e_c00405{bottom:159.268115pt;}
.y9f_c00405{bottom:159.596344pt;}
.ya0_c00405{bottom:160.508252pt;}
.ya1_c00405{bottom:161.179371pt;}
.y94_c00405{bottom:170.625892pt;}
.y95_c00405{bottom:171.115915pt;}
.y96_c00405{bottom:171.830601pt;}
.y97_c00405{bottom:173.353968pt;}
.y98_c00405{bottom:174.557389pt;}
.y99_c00405{bottom:175.195501pt;}
.y8e_c00405{bottom:186.945895pt;}
.y8f_c00405{bottom:187.143899pt;}
.y90_c00405{bottom:189.420993pt;}
.y91_c00405{bottom:189.825175pt;}
.y92_c00405{bottom:190.110732pt;}
.y93_c00405{bottom:191.049543pt;}
.y87_c00405{bottom:201.356896pt;}
.y88_c00405{bottom:202.587224pt;}
.y89_c00405{bottom:203.355577pt;}
.y8a_c00405{bottom:203.685875pt;}
.y8b_c00405{bottom:205.761220pt;}
.y8c_c00405{bottom:206.213857pt;}
.y8d_c00405{bottom:207.004796pt;}
.y81_c00405{bottom:215.980721pt;}
.y82_c00405{bottom:217.430289pt;}
.y83_c00405{bottom:218.907993pt;}
.y84_c00405{bottom:219.594131pt;}
.y85_c00405{bottom:220.748737pt;}
.y86_c00405{bottom:222.549876pt;}
.y7a_c00405{bottom:230.885333pt;}
.y7b_c00405{bottom:231.935237pt;}
.y7c_c00405{bottom:232.939724pt;}
.y7d_c00405{bottom:234.567940pt;}
.y7e_c00405{bottom:234.831183pt;}
.y7f_c00405{bottom:235.689083pt;}
.y80_c00405{bottom:236.605801pt;}
.y73_c00405{bottom:245.202628pt;}
.y74_c00405{bottom:246.653948pt;}
.y75_c00405{bottom:247.844223pt;}
.y76_c00405{bottom:249.013904pt;}
.y77_c00405{bottom:250.663123pt;}
.y78_c00405{bottom:251.023388pt;}
.y79_c00405{bottom:252.543039pt;}
.y6b_c00405{bottom:260.803220pt;}
.y6c_c00405{bottom:261.573195pt;}
.y6d_c00405{bottom:262.111123pt;}
.y6e_c00405{bottom:263.369455pt;}
.y6f_c00405{bottom:264.104079pt;}
.y70_c00405{bottom:265.700725pt;}
.y71_c00405{bottom:266.156792pt;}
.y72_c00405{bottom:267.666249pt;}
.y63_c00405{bottom:275.218272pt;}
.y64_c00405{bottom:276.416075pt;}
.y65_c00405{bottom:277.155961pt;}
.y66_c00405{bottom:278.353476pt;}
.y67_c00405{bottom:279.306209pt;}
.y68_c00405{bottom:279.975460pt;}
.y69_c00405{bottom:280.560104pt;}
.y6a_c00405{bottom:282.236920pt;}
.y5d_c00405{bottom:291.538175pt;}
.y5e_c00405{bottom:292.774295pt;}
.y5f_c00405{bottom:294.290916pt;}
.y60_c00405{bottom:295.645256pt;}
.y61_c00405{bottom:297.108492pt;}
.y62_c00405{bottom:297.484677pt;}
.y56_c00405{bottom:306.425149pt;}
.y57_c00405{bottom:308.907133pt;}
.y58_c00405{bottom:310.572745pt;}
.y59_c00405{bottom:311.155909pt;}
.y5a_c00405{bottom:312.594469pt;}
.y5b_c00405{bottom:313.144729pt;}
.y5c_c00405{bottom:313.729801pt;}
.y50_c00405{bottom:321.551163pt;}
.y51_c00405{bottom:322.555488pt;}
.y52_c00405{bottom:324.134413pt;}
.y53_c00405{bottom:325.501068pt;}
.y54_c00405{bottom:327.855595pt;}
.y55_c00405{bottom:328.889585pt;}
.y48_c00405{bottom:337.154413pt;}
.y49_c00405{bottom:337.866867pt;}
.y4a_c00405{bottom:340.126491pt;}
.y4b_c00405{bottom:340.563525pt;}
.y4c_c00405{bottom:341.069252pt;}
.y4d_c00405{bottom:342.620167pt;}
.y4e_c00405{bottom:343.775595pt;}
.y4f_c00405{bottom:344.118483pt;}
.y41_c00405{bottom:352.277317pt;}
.y42_c00405{bottom:353.349372pt;}
.y43_c00405{bottom:354.489385pt;}
.y44_c00405{bottom:354.880728pt;}
.y45_c00405{bottom:355.819959pt;}
.y46_c00405{bottom:356.270479pt;}
.y47_c00405{bottom:358.356167pt;}
.y39_c00405{bottom:368.119241pt;}
.y3a_c00405{bottom:368.604640pt;}
.y3b_c00405{bottom:370.234007pt;}
.y3c_c00405{bottom:370.755824pt;}
.y3d_c00405{bottom:371.280233pt;}
.y3e_c00405{bottom:372.254304pt;}
.y3f_c00405{bottom:372.604965pt;}
.y40_c00405{bottom:373.584435pt;}
.y33_c00405{bottom:383.007127pt;}
.y34_c00405{bottom:384.115999pt;}
.y35_c00405{bottom:385.751863pt;}
.y36_c00405{bottom:386.174983pt;}
.y37_c00405{bottom:386.576940pt;}
.y38_c00405{bottom:388.186207pt;}
.y2c_c00405{bottom:397.390812pt;}
.y2d_c00405{bottom:398.598065pt;}
.y2e_c00405{bottom:399.581895pt;}
.y2f_c00405{bottom:400.251699pt;}
.y30_c00405{bottom:401.698467pt;}
.y31_c00405{bottom:403.070688pt;}
.y32_c00405{bottom:403.543021pt;}
.y25_c00405{bottom:412.299481pt;}
.y26_c00405{bottom:414.414276pt;}
.y27_c00405{bottom:414.674895pt;}
.y28_c00405{bottom:414.992749pt;}
.y29_c00405{bottom:415.863844pt;}
.y2a_c00405{bottom:417.159560pt;}
.y2b_c00405{bottom:417.685333pt;}
.y1e_c00405{bottom:427.903952pt;}
.y1f_c00405{bottom:429.206796pt;}
.y20_c00405{bottom:429.769755pt;}
.y21_c00405{bottom:430.280337pt;}
.y22_c00405{bottom:432.457192pt;}
.y23_c00405{bottom:433.299705pt;}
.y24_c00405{bottom:433.660180pt;}
.y16_c00405{bottom:443.488324pt;}
.y17_c00405{bottom:444.579037pt;}
.y18_c00405{bottom:445.954776pt;}
.y19_c00405{bottom:446.523243pt;}
.y1a_c00405{bottom:448.023063pt;}
.y1b_c00405{bottom:448.448980pt;}
.y1c_c00405{bottom:449.561939pt;}
.y1d_c00405{bottom:449.872161pt;}
.yf_c00405{bottom:459.112755pt;}
.y10_c00405{bottom:460.494933pt;}
.y11_c00405{bottom:460.992892pt;}
.y12_c00405{bottom:461.270263pt;}
.y13_c00405{bottom:462.176217pt;}
.y14_c00405{bottom:462.396444pt;}
.y15_c00405{bottom:463.527880pt;}
.y8_c00405{bottom:472.800651pt;}
.y9_c00405{bottom:473.288180pt;}
.ya_c00405{bottom:475.639100pt;}
.yb_c00405{bottom:476.204464pt;}
.yc_c00405{bottom:478.408103pt;}
.yd_c00405{bottom:479.092631pt;}
.ye_c00405{bottom:479.386689pt;}
.y2_c00405{bottom:487.688000pt;}
.y3_c00405{bottom:488.805476pt;}
.y4_c00405{bottom:490.301096pt;}
.y5_c00405{bottom:491.593820pt;}
.y6_c00405{bottom:491.889344pt;}
.y7_c00405{bottom:493.659680pt;}
.y1_c00405{bottom:503.525333pt;}
.h12_c00405{height:49.479749pt;}
.hd_c00405{height:49.484694pt;}
.h4_c00405{height:51.352041pt;}
.h7_c00405{height:52.285714pt;}
.h3_c00405{height:54.153061pt;}
.h10_c00405{height:55.081230pt;}
.h11_c00405{height:56.014810pt;}
.h5_c00405{height:56.020408pt;}
.ha_c00405{height:56.954082pt;}
.h14_c00405{height:57.881970pt;}
.h8_c00405{height:57.887755pt;}
.h13_c00405{height:58.815551pt;}
.h6_c00405{height:58.821429pt;}
.he_c00405{height:59.749131pt;}
.hc_c00405{height:59.755102pt;}
.h16_c00405{height:60.682711pt;}
.hb_c00405{height:60.688776pt;}
.h9_c00405{height:61.622449pt;}
.h15_c00405{height:63.483451pt;}
.hf_c00405{height:64.417032pt;}
.h2_c00405{height:66.266667pt;}
.h0_c00405{height:545.040000pt;}
.h1_c00405{height:545.333333pt;}
.w0_c00405{width:319.200000pt;}
.w1_c00405{width:319.333333pt;}
.x0_c00405{left:0.000000pt;}
.x4c_c00405{left:37.169407pt;}
.x2_c00405{left:40.857333pt;}
.x22_c00405{left:42.082900pt;}
.xf_c00405{left:44.374865pt;}
.x8_c00405{left:49.190403pt;}
.x5f_c00405{left:50.268672pt;}
.x44_c00405{left:55.030512pt;}
.x37_c00405{left:56.970517pt;}
.x69_c00405{left:59.588947pt;}
.x59_c00405{left:60.695651pt;}
.x5c_c00405{left:63.791069pt;}
.x9_c00405{left:66.604601pt;}
.x60_c00405{left:68.585025pt;}
.x3c_c00405{left:76.282469pt;}
.x68_c00405{left:78.622613pt;}
.x3_c00405{left:82.245333pt;}
.x16_c00405{left:84.337435pt;}
.x32_c00405{left:85.750537pt;}
.x4d_c00405{left:87.438739pt;}
.x52_c00405{left:88.652663pt;}
.x55_c00405{left:90.993995pt;}
.x25_c00405{left:92.214421pt;}
.x1c_c00405{left:93.688328pt;}
.x5d_c00405{left:94.864403pt;}
.x66_c00405{left:100.181604pt;}
.x54_c00405{left:101.342256pt;}
.x45_c00405{left:102.591808pt;}
.x6a_c00405{left:105.712715pt;}
.x6c_c00405{left:107.637567pt;}
.x48_c00405{left:109.351453pt;}
.x74_c00405{left:115.323497pt;}
.x1d_c00405{left:116.218885pt;}
.x10_c00405{left:117.113228pt;}
.x75_c00405{left:118.195143pt;}
.x6d_c00405{left:119.539911pt;}
.x56_c00405{left:121.732584pt;}
.x67_c00405{left:122.941373pt;}
.x23_c00405{left:126.684805pt;}
.x70_c00405{left:129.649719pt;}
.x3d_c00405{left:130.708851pt;}
.x26_c00405{left:133.199067pt;}
.x57_c00405{left:134.933304pt;}
.x1e_c00405{left:136.661335pt;}
.x4_c00405{left:137.638667pt;}
.x17_c00405{left:139.343053pt;}
.x61_c00405{left:141.163711pt;}
.x11_c00405{left:143.314880pt;}
.x2c_c00405{left:147.190408pt;}
.x33_c00405{left:149.583721pt;}
.xa_c00405{left:150.562333pt;}
.x71_c00405{left:155.328968pt;}
.x12_c00405{left:157.936715pt;}
.x1_c00405{left:159.360000pt;}
.x27_c00405{left:161.120001pt;}
.x18_c00405{left:162.077611pt;}
.x4e_c00405{left:164.068791pt;}
.x2a_c00405{left:166.113516pt;}
.xb_c00405{left:170.760460pt;}
.x2d_c00405{left:173.287340pt;}
.x38_c00405{left:174.486812pt;}
.x3e_c00405{left:177.816961pt;}
.x76_c00405{left:180.862603pt;}
.x49_c00405{left:183.504791pt;}
.x5_c00405{left:185.517333pt;}
.x34_c00405{left:188.718889pt;}
.x39_c00405{left:191.932543pt;}
.x6e_c00405{left:194.001637pt;}
.x40_c00405{left:195.504617pt;}
.x6_c00405{left:196.462667pt;}
.x2e_c00405{left:199.480272pt;}
.x64_c00405{left:202.196779pt;}
.x2b_c00405{left:203.590556pt;}
.x13_c00405{left:205.624344pt;}
.x4a_c00405{left:206.562197pt;}
.x35_c00405{left:207.480401pt;}
.x46_c00405{left:213.025463pt;}
.x14_c00405{left:217.240197pt;}
.x5a_c00405{left:218.396060pt;}
.x65_c00405{left:219.952593pt;}
.x19_c00405{left:222.074184pt;}
.x1f_c00405{left:223.710015pt;}
.x4f_c00405{left:225.477113pt;}
.x4b_c00405{left:226.733117pt;}
.x53_c00405{left:231.852811pt;}
.x5b_c00405{left:235.219724pt;}
.x24_c00405{left:236.516079pt;}
.x1a_c00405{left:239.133787pt;}
.x5e_c00405{left:241.164403pt;}
.x50_c00405{left:243.010915pt;}
.x77_c00405{left:244.456637pt;}
.x3a_c00405{left:245.420329pt;}
.x2f_c00405{left:248.208155pt;}
.xc_c00405{left:249.461003pt;}
.x62_c00405{left:250.815133pt;}
.x6b_c00405{left:253.327160pt;}
.x20_c00405{left:257.385148pt;}
.x3f_c00405{left:258.992569pt;}
.x72_c00405{left:260.755391pt;}
.x7_c00405{left:262.030667pt;}
.x30_c00405{left:265.742133pt;}
.x58_c00405{left:267.749899pt;}
.x47_c00405{left:269.294975pt;}
.x41_c00405{left:270.383284pt;}
.x21_c00405{left:271.823273pt;}
.xd_c00405{left:273.924355pt;}
.x15_c00405{left:276.787716pt;}
.x28_c00405{left:278.524136pt;}
.x73_c00405{left:282.371881pt;}
.xe_c00405{left:284.420067pt;}
.x63_c00405{left:286.142384pt;}
.x42_c00405{left:290.763284pt;}
.x6f_c00405{left:292.957324pt;}
.x36_c00405{left:294.364755pt;}
.x1b_c00405{left:296.094216pt;}
.x3b_c00405{left:297.058855pt;}
.x29_c00405{left:298.192387pt;}
.x51_c00405{left:301.091165pt;}
.x43_c00405{left:312.432617pt;}
.x31_c00405{left:314.719385pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00406 {
    display:none;
  }
  .loading-indicator_c00406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00406 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00406 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00406" -> "#page-container .classname_c00406")
 */
.pf_c00406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00406 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00406 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00406 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00406 {overflow:visible;}
  }
}
.c_c00406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00406 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00406:after { /* webkit #35443 */
  content: '';
}
.t_c00406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00406 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00406 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00406 { /* info for Javascript */
  display:none;
}
.l_c00406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00406:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00406 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00406.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00406{transform:matrix(0.040200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040200,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.040426,-0.000566,0.003500,0.249976,0,0);-ms-transform:matrix(0.040426,-0.000566,0.003500,0.249976,0,0);-webkit-transform:matrix(0.040426,-0.000566,0.003500,0.249976,0,0);}
.md_c00406{transform:matrix(0.123848,-0.001734,0.003500,0.249976,0,0);-ms-transform:matrix(0.123848,-0.001734,0.003500,0.249976,0,0);-webkit-transform:matrix(0.123848,-0.001734,0.003500,0.249976,0,0);}
.m19_c00406{transform:matrix(0.128846,-0.001933,0.003750,0.249972,0,0);-ms-transform:matrix(0.128846,-0.001933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.128846,-0.001933,0.003750,0.249972,0,0);}
.m12_c00406{transform:matrix(0.137132,-0.001920,0.003500,0.249976,0,0);-ms-transform:matrix(0.137132,-0.001920,0.003500,0.249976,0,0);-webkit-transform:matrix(0.137132,-0.001920,0.003500,0.249976,0,0);}
.me1_c00406{transform:matrix(0.145051,-0.002321,0.003999,0.249968,0,0);-ms-transform:matrix(0.145051,-0.002321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145051,-0.002321,0.003999,0.249968,0,0);}
.m3_c00406{transform:matrix(0.145413,-0.003490,0.005998,0.249928,0,0);-ms-transform:matrix(0.145413,-0.003490,0.005998,0.249928,0,0);-webkit-transform:matrix(0.145413,-0.003490,0.005998,0.249928,0,0);}
.m29_c00406{transform:matrix(0.145646,-0.002913,0.004999,0.249950,0,0);-ms-transform:matrix(0.145646,-0.002913,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145646,-0.002913,0.004999,0.249950,0,0);}
.m14_c00406{transform:matrix(0.146654,-0.002200,0.003750,0.249972,0,0);-ms-transform:matrix(0.146654,-0.002200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146654,-0.002200,0.003750,0.249972,0,0);}
.m3d_c00406{transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00406{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.153333,-0.002300,0.003750,0.249972,0,0);-ms-transform:matrix(0.153333,-0.002300,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153333,-0.002300,0.003750,0.249972,0,0);}
.maf_c00406{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.m81_c00406{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.155555,-0.003733,0.005998,0.249928,0,0);-ms-transform:matrix(0.155555,-0.003733,0.005998,0.249928,0,0);-webkit-transform:matrix(0.155555,-0.003733,0.005998,0.249928,0,0);}
.mba_c00406{transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156545,0.000000,0.000000,0.250000,0,0);}
.ma5_c00406{transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156645,0.000000,0.000000,0.250000,0,0);}
.mb3_c00406{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00406{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.158659,-0.003808,0.005998,0.249928,0,0);-ms-transform:matrix(0.158659,-0.003808,0.005998,0.249928,0,0);-webkit-transform:matrix(0.158659,-0.003808,0.005998,0.249928,0,0);}
.mf7_c00406{transform:matrix(0.159234,0.001911,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159234,0.001911,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159234,0.001911,-0.003000,0.249982,0,0);}
.mf1_c00406{transform:matrix(0.159494,0.001914,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159494,0.001914,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159494,0.001914,-0.003000,0.249982,0,0);}
.m47_c00406{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.160479,-0.003851,0.005998,0.249928,0,0);-ms-transform:matrix(0.160479,-0.003851,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160479,-0.003851,0.005998,0.249928,0,0);}
.m56_c00406{transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);-ms-transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160836,-0.002091,0.003250,0.249979,0,0);}
.md2_c00406{transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00406{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.161777,-0.002427,0.003750,0.249972,0,0);-ms-transform:matrix(0.161777,-0.002427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161777,-0.002427,0.003750,0.249972,0,0);}
.m31_c00406{transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162285,0.000000,0.000000,0.250000,0,0);}
.me0_c00406{transform:matrix(0.162859,-0.002606,0.003999,0.249968,0,0);-ms-transform:matrix(0.162859,-0.002606,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162859,-0.002606,0.003999,0.249968,0,0);}
.m26_c00406{transform:matrix(0.163797,-0.003276,0.004999,0.249950,0,0);-ms-transform:matrix(0.163797,-0.003276,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163797,-0.003276,0.004999,0.249950,0,0);}
.mcb_c00406{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.mf4_c00406{transform:matrix(0.165043,0.001981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165043,0.001981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165043,0.001981,-0.003000,0.249982,0,0);}
.ma6_c00406{transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165180,0.000000,0.000000,0.250000,0,0);}
.mda_c00406{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.165635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165635,0.000000,0.000000,0.250000,0,0);}
.md1_c00406{transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165735,0.000000,0.000000,0.250000,0,0);}
.m61_c00406{transform:matrix(0.166011,-0.002490,0.003750,0.249972,0,0);-ms-transform:matrix(0.166011,-0.002490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166011,-0.002490,0.003750,0.249972,0,0);}
.mdb_c00406{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.me4_c00406{transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166209,-0.002659,0.003999,0.249968,0,0);}
.m2f_c00406{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.mb8_c00406{transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);}
.mbb_c00406{transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.168264,-0.002356,0.003500,0.249976,0,0);-ms-transform:matrix(0.168264,-0.002356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168264,-0.002356,0.003500,0.249976,0,0);}
.m59_c00406{transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);-ms-transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168276,-0.002188,0.003250,0.249979,0,0);}
.m49_c00406{transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.168511,-0.004044,0.005998,0.249928,0,0);-ms-transform:matrix(0.168511,-0.004044,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168511,-0.004044,0.005998,0.249928,0,0);}
.mf8_c00406{transform:matrix(0.168568,0.002023,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168568,0.002023,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168568,0.002023,-0.003000,0.249982,0,0);}
.m7e_c00406{transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);}
.m7f_c00406{transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);}
.m9b_c00406{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.mae_c00406{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00406{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.170458,-0.002386,0.003500,0.249976,0,0);-ms-transform:matrix(0.170458,-0.002386,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170458,-0.002386,0.003500,0.249976,0,0);}
.m52_c00406{transform:matrix(0.170536,-0.002217,0.003250,0.249979,0,0);-ms-transform:matrix(0.170536,-0.002217,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170536,-0.002217,0.003250,0.249979,0,0);}
.m4e_c00406{transform:matrix(0.171161,-0.002225,0.003250,0.249979,0,0);-ms-transform:matrix(0.171161,-0.002225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171161,-0.002225,0.003250,0.249979,0,0);}
.m30_c00406{transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171510,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171985,0.000000,0.000000,0.250000,0,0);}
.m92_c00406{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.172231,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172231,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172231,-0.002583,0.003750,0.249972,0,0);}
.mb1_c00406{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.mb9_c00406{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m9a_c00406{transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.173310,-0.003466,0.004999,0.249950,0,0);-ms-transform:matrix(0.173310,-0.003466,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173310,-0.003466,0.004999,0.249950,0,0);}
.me2_c00406{transform:matrix(0.173773,-0.002780,0.003999,0.249968,0,0);-ms-transform:matrix(0.173773,-0.002780,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173773,-0.002780,0.003999,0.249968,0,0);}
.m24_c00406{transform:matrix(0.174400,-0.003488,0.004999,0.249950,0,0);-ms-transform:matrix(0.174400,-0.003488,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174400,-0.003488,0.004999,0.249950,0,0);}
.med_c00406{transform:matrix(0.174497,0.002094,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174497,0.002094,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174497,0.002094,-0.003000,0.249982,0,0);}
.m32_c00406{transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174905,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m80_c00406{transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175940,0.000000,0.000000,0.250000,0,0);}
.md0_c00406{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mea_c00406{transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);}
.m1c_c00406{transform:matrix(0.177915,-0.002669,0.003750,0.249972,0,0);-ms-transform:matrix(0.177915,-0.002669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177915,-0.002669,0.003750,0.249972,0,0);}
.m35_c00406{transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177985,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(0.178475,-0.002320,0.003250,0.249979,0,0);-ms-transform:matrix(0.178475,-0.002320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178475,-0.002320,0.003250,0.249979,0,0);}
.mbd_c00406{transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00406{transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.180035,-0.002701,0.003750,0.249972,0,0);-ms-transform:matrix(0.180035,-0.002701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180035,-0.002701,0.003750,0.249972,0,0);}
.m2a_c00406{transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180655,0.000000,0.000000,0.250000,0,0);}
.m83_c00406{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.180835,-0.002351,0.003250,0.249979,0,0);-ms-transform:matrix(0.180835,-0.002351,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180835,-0.002351,0.003250,0.249979,0,0);}
.m5d_c00406{transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);-ms-transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181440,-0.002722,0.003750,0.249972,0,0);}
.m6_c00406{transform:matrix(0.181493,-0.004356,0.005998,0.249928,0,0);-ms-transform:matrix(0.181493,-0.004356,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181493,-0.004356,0.005998,0.249928,0,0);}
.md8_c00406{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m7a_c00406{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.182379,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182379,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182379,-0.002736,0.003750,0.249972,0,0);}
.m75_c00406{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00406{transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182680,0.000000,0.000000,0.250000,0,0);}
.m62_c00406{transform:matrix(0.182984,-0.002745,0.003750,0.249972,0,0);-ms-transform:matrix(0.182984,-0.002745,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182984,-0.002745,0.003750,0.249972,0,0);}
.m37_c00406{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.183842,-0.002574,0.003500,0.249976,0,0);-ms-transform:matrix(0.183842,-0.002574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183842,-0.002574,0.003500,0.249976,0,0);}
.m96_c00406{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.184378,-0.003688,0.004999,0.249950,0,0);-ms-transform:matrix(0.184378,-0.003688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184378,-0.003688,0.004999,0.249950,0,0);}
.md9_c00406{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00406{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.mc8_c00406{transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);}
.me9_c00406{transform:matrix(0.184847,0.002218,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184847,0.002218,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184847,0.002218,-0.003000,0.249982,0,0);}
.m74_c00406{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.185209,-0.002778,0.003750,0.249972,0,0);-ms-transform:matrix(0.185209,-0.002778,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185209,-0.002778,0.003750,0.249972,0,0);}
.m9f_c00406{transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.185484,-0.002411,0.003250,0.249979,0,0);-ms-transform:matrix(0.185484,-0.002411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185484,-0.002411,0.003250,0.249979,0,0);}
.m99_c00406{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.ma2_c00406{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m40_c00406{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);-ms-transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186892,-0.002616,0.003500,0.249976,0,0);}
.mb5_c00406{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.187403,-0.003748,0.004999,0.249950,0,0);-ms-transform:matrix(0.187403,-0.003748,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187403,-0.003748,0.004999,0.249950,0,0);}
.m5b_c00406{transform:matrix(0.187474,-0.002437,0.003250,0.249979,0,0);-ms-transform:matrix(0.187474,-0.002437,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187474,-0.002437,0.003250,0.249979,0,0);}
.m2e_c00406{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m98_c00406{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.mdc_c00406{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00406{transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188710,0.000000,0.000000,0.250000,0,0);}
.ma1_c00406{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.md3_c00406{transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.190944,-0.002482,0.003250,0.249979,0,0);-ms-transform:matrix(0.190944,-0.002482,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190944,-0.002482,0.003250,0.249979,0,0);}
.me7_c00406{transform:matrix(0.191500,-0.003064,0.003999,0.249968,0,0);-ms-transform:matrix(0.191500,-0.003064,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191500,-0.003064,0.003999,0.249968,0,0);}
.mad_c00406{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.me3_c00406{transform:matrix(0.192440,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192440,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192440,-0.003079,0.003999,0.249968,0,0);}
.me6_c00406{transform:matrix(0.192765,-0.003084,0.003999,0.249968,0,0);-ms-transform:matrix(0.192765,-0.003084,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192765,-0.003084,0.003999,0.249968,0,0);}
.mde_c00406{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m66_c00406{transform:matrix(0.193403,-0.002901,0.003750,0.249972,0,0);-ms-transform:matrix(0.193403,-0.002901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193403,-0.002901,0.003750,0.249972,0,0);}
.mf5_c00406{transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);}
.m3a_c00406{transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194010,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.194019,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194019,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194019,-0.002522,0.003250,0.249979,0,0);}
.meb_c00406{transform:matrix(0.194031,0.002328,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194031,0.002328,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194031,0.002328,-0.003000,0.249982,0,0);}
.md7_c00406{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.m9d_c00406{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mc4_c00406{transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194745,0.000000,0.000000,0.250000,0,0);}
.m77_c00406{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195760,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195985,0.000000,0.000000,0.250000,0,0);}
.m6d_c00406{transform:matrix(0.196103,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196103,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196103,-0.002942,0.003750,0.249972,0,0);}
.mb4_c00406{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.mee_c00406{transform:matrix(0.197401,0.002369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197401,0.002369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197401,0.002369,-0.003000,0.249982,0,0);}
.m50_c00406{transform:matrix(0.197603,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197603,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197603,-0.002569,0.003250,0.249979,0,0);}
.m4b_c00406{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m91_c00406{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.mcd_c00406{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.198708,-0.002981,0.003750,0.249972,0,0);-ms-transform:matrix(0.198708,-0.002981,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198708,-0.002981,0.003750,0.249972,0,0);}
.m60_c00406{transform:matrix(0.198783,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198783,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198783,-0.002982,0.003750,0.249972,0,0);}
.m4c_c00406{transform:matrix(0.199283,-0.002591,0.003250,0.249979,0,0);-ms-transform:matrix(0.199283,-0.002591,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199283,-0.002591,0.003250,0.249979,0,0);}
.m6b_c00406{transform:matrix(0.199913,-0.002999,0.003750,0.249972,0,0);-ms-transform:matrix(0.199913,-0.002999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199913,-0.002999,0.003750,0.249972,0,0);}
.m8d_c00406{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.md6_c00406{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.m76_c00406{transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);}
.mf6_c00406{transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);}
.mbe_c00406{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.201400,-0.002820,0.003500,0.249976,0,0);-ms-transform:matrix(0.201400,-0.002820,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201400,-0.002820,0.003500,0.249976,0,0);}
.mb7_c00406{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.ma9_c00406{transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);}
.m38_c00406{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.maa_c00406{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.m79_c00406{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202915,0.000000,0.000000,0.250000,0,0);}
.me8_c00406{transform:matrix(0.203174,-0.003251,0.003999,0.249968,0,0);-ms-transform:matrix(0.203174,-0.003251,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203174,-0.003251,0.003999,0.249968,0,0);}
.mec_c00406{transform:matrix(0.203275,0.002439,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203275,0.002439,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203275,0.002439,-0.003000,0.249982,0,0);}
.m8a_c00406{transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.203754,-0.004075,0.004999,0.249950,0,0);-ms-transform:matrix(0.203754,-0.004075,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203754,-0.004075,0.004999,0.249950,0,0);}
.m21_c00406{transform:matrix(0.204122,-0.003062,0.003750,0.249972,0,0);-ms-transform:matrix(0.204122,-0.003062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204122,-0.003062,0.003750,0.249972,0,0);}
.m7_c00406{transform:matrix(0.204946,-0.004919,0.005998,0.249928,0,0);-ms-transform:matrix(0.204946,-0.004919,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204946,-0.004919,0.005998,0.249928,0,0);}
.mcc_c00406{transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);}
.mdf_c00406{transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);-ms-transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);}
.m8f_c00406{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m89_c00406{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.206948,-0.002690,0.003250,0.249979,0,0);-ms-transform:matrix(0.206948,-0.002690,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206948,-0.002690,0.003250,0.249979,0,0);}
.m6f_c00406{transform:matrix(0.207132,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207132,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207132,-0.003107,0.003750,0.249972,0,0);}
.m90_c00406{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00406{transform:matrix(0.207597,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207597,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207597,-0.003114,0.003750,0.249972,0,0);}
.m43_c00406{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.mc7_c00406{transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208505,0.000000,0.000000,0.250000,0,0);}
.m6e_c00406{transform:matrix(0.208517,-0.003128,0.003750,0.249972,0,0);-ms-transform:matrix(0.208517,-0.003128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208517,-0.003128,0.003750,0.249972,0,0);}
.mbf_c00406{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m78_c00406{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.ma3_c00406{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.210519,-0.005052,0.005998,0.249928,0,0);-ms-transform:matrix(0.210519,-0.005052,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210519,-0.005052,0.005998,0.249928,0,0);}
.m97_c00406{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.210627,-0.002738,0.003250,0.249979,0,0);-ms-transform:matrix(0.210627,-0.002738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210627,-0.002738,0.003250,0.249979,0,0);}
.m6c_c00406{transform:matrix(0.211231,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211231,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211231,-0.003168,0.003750,0.249972,0,0);}
.mb0_c00406{transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);}
.mf0_c00406{transform:matrix(0.212045,0.002545,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212045,0.002545,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212045,0.002545,-0.003000,0.249982,0,0);}
.me5_c00406{transform:matrix(0.212733,-0.003404,0.003999,0.249968,0,0);-ms-transform:matrix(0.212733,-0.003404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212733,-0.003404,0.003999,0.249968,0,0);}
.m1e_c00406{transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);-ms-transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212876,-0.003193,0.003750,0.249972,0,0);}
.m7c_c00406{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.mca_c00406{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mac_c00406{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.216282,-0.004326,0.004999,0.249950,0,0);-ms-transform:matrix(0.216282,-0.004326,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216282,-0.004326,0.004999,0.249950,0,0);}
.mf3_c00406{transform:matrix(0.216354,0.002596,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216354,0.002596,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216354,0.002596,-0.003000,0.249982,0,0);}
.mf2_c00406{transform:matrix(0.216359,0.002596,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216359,0.002596,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216359,0.002596,-0.003000,0.249982,0,0);}
.m9c_c00406{transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);}
.mc2_c00406{transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);}
.mef_c00406{transform:matrix(0.219089,0.002629,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219089,0.002629,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219089,0.002629,-0.003000,0.249982,0,0);}
.md5_c00406{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.mab_c00406{transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.220145,-0.003302,0.003750,0.249972,0,0);-ms-transform:matrix(0.220145,-0.003302,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220145,-0.003302,0.003750,0.249972,0,0);}
.md4_c00406{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00406{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m71_c00406{transform:matrix(0.224375,-0.003366,0.003750,0.249972,0,0);-ms-transform:matrix(0.224375,-0.003366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224375,-0.003366,0.003750,0.249972,0,0);}
.m34_c00406{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.226158,-0.003166,0.003500,0.249976,0,0);-ms-transform:matrix(0.226158,-0.003166,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226158,-0.003166,0.003500,0.249976,0,0);}
.m8c_c00406{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m8b_c00406{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m53_c00406{transform:matrix(0.228796,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228796,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228796,-0.002974,0.003250,0.249979,0,0);}
.ma8_c00406{transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230880,0.000000,0.000000,0.250000,0,0);}
.mc3_c00406{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.m70_c00406{transform:matrix(0.234904,-0.003524,0.003750,0.249972,0,0);-ms-transform:matrix(0.234904,-0.003524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234904,-0.003524,0.003750,0.249972,0,0);}
.m65_c00406{transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);-ms-transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235888,-0.003538,0.003750,0.249972,0,0);}
.m4d_c00406{transform:matrix(0.236775,-0.003078,0.003250,0.249979,0,0);-ms-transform:matrix(0.236775,-0.003078,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236775,-0.003078,0.003250,0.249979,0,0);}
.m6a_c00406{transform:matrix(0.237633,-0.003564,0.003750,0.249972,0,0);-ms-transform:matrix(0.237633,-0.003564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237633,-0.003564,0.003750,0.249972,0,0);}
.m69_c00406{transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);-ms-transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240283,-0.003604,0.003750,0.249972,0,0);}
.mc0_c00406{transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00406{transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.242193,-0.003633,0.003750,0.249972,0,0);-ms-transform:matrix(0.242193,-0.003633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242193,-0.003633,0.003750,0.249972,0,0);}
.m64_c00406{transform:matrix(0.244038,-0.003661,0.003750,0.249972,0,0);-ms-transform:matrix(0.244038,-0.003661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244038,-0.003661,0.003750,0.249972,0,0);}
.mc1_c00406{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);}
.mc6_c00406{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m72_c00406{transform:matrix(0.253162,-0.003797,0.003750,0.249972,0,0);-ms-transform:matrix(0.253162,-0.003797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253162,-0.003797,0.003750,0.249972,0,0);}
.m3e_c00406{transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);}
.mcf_c00406{transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256550,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{transform:matrix(0.257956,-0.003869,0.003750,0.249972,0,0);-ms-transform:matrix(0.257956,-0.003869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257956,-0.003869,0.003750,0.249972,0,0);}
.m68_c00406{transform:matrix(0.260761,-0.003911,0.003750,0.249972,0,0);-ms-transform:matrix(0.260761,-0.003911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260761,-0.003911,0.003750,0.249972,0,0);}
.mc5_c00406{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m85_c00406{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);}
.ma0_c00406{transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.299899,-0.007198,0.005998,0.249928,0,0);-ms-transform:matrix(0.299899,-0.007198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.299899,-0.007198,0.005998,0.249928,0,0);}
.m63_c00406{transform:matrix(0.301006,-0.004515,0.003750,0.249972,0,0);-ms-transform:matrix(0.301006,-0.004515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301006,-0.004515,0.003750,0.249972,0,0);}
.m84_c00406{transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);}
.mce_c00406{transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.312900,-0.004693,0.003750,0.249972,0,0);-ms-transform:matrix(0.312900,-0.004693,0.003750,0.249972,0,0);-webkit-transform:matrix(0.312900,-0.004693,0.003750,0.249972,0,0);}
.m7d_c00406{transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318480,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{transform:matrix(0.325595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325595,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.369218,-0.005538,0.003750,0.249972,0,0);-ms-transform:matrix(0.369218,-0.005538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.369218,-0.005538,0.003750,0.249972,0,0);}
.m5f_c00406{transform:matrix(0.372483,-0.005587,0.003750,0.249972,0,0);-ms-transform:matrix(0.372483,-0.005587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.372483,-0.005587,0.003750,0.249972,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
.fc0_c00406{color:transparent;}
.fs0_c00406{font-size:22.050000px;}
.fsf_c00406{font-size:54.606142px;}
.fs11_c00406{font-size:55.650000px;}
.fs5_c00406{font-size:56.706378px;}
.fsa_c00406{font-size:58.800000px;}
.fs1_c00406{font-size:59.867234px;}
.fs12_c00406{font-size:61.950000px;}
.fsc_c00406{font-size:61.955235px;}
.fs10_c00406{font-size:63.000000px;}
.fs15_c00406{font-size:63.004536px;}
.fs3_c00406{font-size:63.006174px;}
.fs14_c00406{font-size:63.008063px;}
.fse_c00406{font-size:64.057205px;}
.fs13_c00406{font-size:65.100000px;}
.fs8_c00406{font-size:66.150000px;}
.fsd_c00406{font-size:66.155589px;}
.fs6_c00406{font-size:66.163229px;}
.fs7_c00406{font-size:67.200000px;}
.fs16_c00406{font-size:67.204838px;}
.fs9_c00406{font-size:68.250000px;}
.fsb_c00406{font-size:69.300000px;}
.fs4_c00406{font-size:72.458150px;}
.fs2_c00406{font-size:74.571467px;}
.y0_c00406{bottom:0.000000px;}
.y85_c00406{bottom:34.822830px;}
.y84_c00406{bottom:35.540340px;}
.y83_c00406{bottom:36.110466px;}
.y82_c00406{bottom:37.186542px;}
.y81_c00406{bottom:37.581288px;}
.y80_c00406{bottom:37.898196px;}
.y7f_c00406{bottom:38.911020px;}
.y7e_c00406{bottom:39.249756px;}
.y7d_c00406{bottom:39.962400px;}
.y7c_c00406{bottom:51.561816px;}
.y7b_c00406{bottom:52.540422px;}
.y7a_c00406{bottom:52.850670px;}
.y79_c00406{bottom:53.502288px;}
.y78_c00406{bottom:53.836224px;}
.y77_c00406{bottom:54.091464px;}
.y76_c00406{bottom:54.811500px;}
.y6c_c00406{bottom:64.804500px;}
.y6d_c00406{bottom:65.646732px;}
.y6e_c00406{bottom:65.895948px;}
.y6f_c00406{bottom:66.169308px;}
.y70_c00406{bottom:66.450084px;}
.y71_c00406{bottom:67.148316px;}
.y72_c00406{bottom:67.473444px;}
.y73_c00406{bottom:68.126028px;}
.y74_c00406{bottom:68.454516px;}
.y75_c00406{bottom:69.296388px;}
.y6b_c00406{bottom:86.551500px;}
.y6a_c00406{bottom:101.517000px;}
.y63_c00406{bottom:117.991500px;}
.y64_c00406{bottom:118.537500px;}
.y65_c00406{bottom:119.253000px;}
.y66_c00406{bottom:119.370000px;}
.y67_c00406{bottom:120.138000px;}
.y68_c00406{bottom:120.328500px;}
.y69_c00406{bottom:121.080000px;}
.y62_c00406{bottom:138.448500px;}
.y61_c00406{bottom:153.427500px;}
.y60_c00406{bottom:170.847000px;}
.y5f_c00406{bottom:188.523000px;}
.y5e_c00406{bottom:204.270000px;}
.y5d_c00406{bottom:221.520000px;}
.y5c_c00406{bottom:238.863000px;}
.y5b_c00406{bottom:255.690000px;}
.y5a_c00406{bottom:273.055500px;}
.y59_c00406{bottom:290.370000px;}
.y58_c00406{bottom:307.294500px;}
.y52_c00406{bottom:324.832778px;}
.y53_c00406{bottom:324.833033px;}
.y51_c00406{bottom:324.833123px;}
.y50_c00406{bottom:324.833168px;}
.y57_c00406{bottom:324.833190px;}
.y54_c00406{bottom:324.833220px;}
.y56_c00406{bottom:324.833835px;}
.y55_c00406{bottom:324.833880px;}
.y4f_c00406{bottom:341.480280px;}
.y4e_c00406{bottom:341.480543px;}
.y4d_c00406{bottom:341.480738px;}
.y4c_c00406{bottom:341.481300px;}
.y4b_c00406{bottom:341.481945px;}
.y48_c00406{bottom:341.482403px;}
.y4a_c00406{bottom:341.482418px;}
.y49_c00406{bottom:341.482980px;}
.y1_c00406{bottom:354.780000px;}
.y41_c00406{bottom:355.323000px;}
.y42_c00406{bottom:356.156108px;}
.y43_c00406{bottom:356.533140px;}
.y44_c00406{bottom:357.023933px;}
.y45_c00406{bottom:358.093808px;}
.y46_c00406{bottom:358.708845px;}
.y47_c00406{bottom:359.041148px;}
.y39_c00406{bottom:372.869928px;}
.y3a_c00406{bottom:373.672557px;}
.y3b_c00406{bottom:374.152219px;}
.y3c_c00406{bottom:374.431560px;}
.y3d_c00406{bottom:374.677339px;}
.y3e_c00406{bottom:374.965749px;}
.y3f_c00406{bottom:375.658662px;}
.y40_c00406{bottom:375.934492px;}
.y31_c00406{bottom:389.071500px;}
.y32_c00406{bottom:389.303550px;}
.y33_c00406{bottom:390.025674px;}
.y34_c00406{bottom:390.345415px;}
.y35_c00406{bottom:390.914445px;}
.y36_c00406{bottom:391.174399px;}
.y37_c00406{bottom:392.395548px;}
.y38_c00406{bottom:392.729154px;}
.y30_c00406{bottom:408.420000px;}
.y2f_c00406{bottom:423.984000px;}
.y2e_c00406{bottom:440.661000px;}
.y2d_c00406{bottom:457.860000px;}
.y2c_c00406{bottom:475.051500px;}
.y24_c00406{bottom:487.626000px;}
.y25_c00406{bottom:488.341680px;}
.y26_c00406{bottom:488.646180px;}
.y27_c00406{bottom:489.581070px;}
.y28_c00406{bottom:491.157450px;}
.y29_c00406{bottom:491.497680px;}
.y2a_c00406{bottom:492.986040px;}
.y2b_c00406{bottom:493.315800px;}
.y1e_c00406{bottom:506.251500px;}
.y1f_c00406{bottom:506.674050px;}
.y20_c00406{bottom:507.698587px;}
.y21_c00406{bottom:508.176195px;}
.y22_c00406{bottom:508.504200px;}
.y23_c00406{bottom:510.039713px;}
.y14_c00406{bottom:523.803000px;}
.y15_c00406{bottom:524.188065px;}
.y16_c00406{bottom:524.520368px;}
.y17_c00406{bottom:525.067185px;}
.y18_c00406{bottom:525.889425px;}
.y19_c00406{bottom:526.254487px;}
.y1a_c00406{bottom:526.549373px;}
.y1b_c00406{bottom:526.795365px;}
.y1c_c00406{bottom:527.059988px;}
.y1d_c00406{bottom:527.817383px;}
.yb_c00406{bottom:540.541500px;}
.yc_c00406{bottom:540.652548px;}
.yd_c00406{bottom:540.992391px;}
.ye_c00406{bottom:541.339164px;}
.yf_c00406{bottom:541.612311px;}
.y10_c00406{bottom:542.349663px;}
.y11_c00406{bottom:542.599164px;}
.y12_c00406{bottom:543.691794px;}
.y13_c00406{bottom:544.546158px;}
.y4_c00406{bottom:558.086640px;}
.y5_c00406{bottom:558.606720px;}
.y6_c00406{bottom:558.817560px;}
.y7_c00406{bottom:559.797300px;}
.y8_c00406{bottom:560.641896px;}
.y9_c00406{bottom:560.815284px;}
.ya_c00406{bottom:561.033084px;}
.y2_c00406{bottom:575.107500px;}
.y3_c00406{bottom:577.785720px;}
.h2_c00406{height:22.050000px;}
.h11_c00406{height:54.606142px;}
.h13_c00406{height:55.650000px;}
.h7_c00406{height:56.706378px;}
.hc_c00406{height:58.800000px;}
.h3_c00406{height:59.867234px;}
.h14_c00406{height:61.950000px;}
.he_c00406{height:61.955235px;}
.h12_c00406{height:63.000000px;}
.h17_c00406{height:63.004536px;}
.h5_c00406{height:63.006174px;}
.h16_c00406{height:63.008063px;}
.h10_c00406{height:64.057205px;}
.h15_c00406{height:65.100000px;}
.ha_c00406{height:66.150000px;}
.hf_c00406{height:66.155589px;}
.h8_c00406{height:66.163229px;}
.h9_c00406{height:67.200000px;}
.h18_c00406{height:67.204838px;}
.hb_c00406{height:68.250000px;}
.hd_c00406{height:69.300000px;}
.h6_c00406{height:72.458150px;}
.h4_c00406{height:74.571467px;}
.h0_c00406{height:613.170000px;}
.h1_c00406{height:613.500000px;}
.w0_c00406{width:359.100000px;}
.w1_c00406{width:359.250000px;}
.x0_c00406{left:0.000000px;}
.xb_c00406{left:10.354500px;}
.x1_c00406{left:12.960000px;}
.x1a_c00406{left:15.265500px;}
.x42_c00406{left:16.582944px;}
.x4_c00406{left:18.184296px;}
.x2b_c00406{left:20.250000px;}
.x48_c00406{left:22.608000px;}
.x5b_c00406{left:23.760000px;}
.x64_c00406{left:25.110000px;}
.x6a_c00406{left:26.730000px;}
.x6f_c00406{left:28.350000px;}
.x7e_c00406{left:31.050000px;}
.x60_c00406{left:32.130000px;}
.x37_c00406{left:35.370000px;}
.x2c_c00406{left:37.260000px;}
.xc_c00406{left:42.561000px;}
.x13_c00406{left:43.918500px;}
.x74_c00406{left:45.360000px;}
.x75_c00406{left:46.440000px;}
.x5c_c00406{left:48.060000px;}
.x70_c00406{left:50.490000px;}
.x53_c00406{left:51.570000px;}
.x1f_c00406{left:54.177000px;}
.x5_c00406{left:58.177344px;}
.x38_c00406{left:60.480000px;}
.x2d_c00406{left:61.830000px;}
.x71_c00406{left:64.260000px;}
.x14_c00406{left:66.072000px;}
.xd_c00406{left:67.330500px;}
.x20_c00406{left:69.402000px;}
.x6b_c00406{left:72.900000px;}
.x6_c00406{left:74.404128px;}
.x3c_c00406{left:75.870000px;}
.x49_c00406{left:78.148500px;}
.x50_c00406{left:80.196705px;}
.x43_c00406{left:83.516822px;}
.xe_c00406{left:86.841000px;}
.x61_c00406{left:89.100000px;}
.x40_c00406{left:90.814500px;}
.x54_c00406{left:92.070000px;}
.x5d_c00406{left:94.770000px;}
.x25_c00406{left:96.660000px;}
.x57_c00406{left:99.900000px;}
.x3d_c00406{left:101.250000px;}
.x15_c00406{left:102.526500px;}
.x7f_c00406{left:104.760000px;}
.x39_c00406{left:105.840000px;}
.x4e_c00406{left:106.929030px;}
.x31_c00406{left:109.890000px;}
.x1b_c00406{left:111.738000px;}
.x26_c00406{left:115.020000px;}
.x21_c00406{left:116.146500px;}
.x72_c00406{left:120.150000px;}
.x44_c00406{left:123.529848px;}
.x80_c00406{left:125.280000px;}
.x62_c00406{left:126.900000px;}
.x65_c00406{left:127.980000px;}
.x2e_c00406{left:129.600000px;}
.x32_c00406{left:132.300000px;}
.x7b_c00406{left:133.920000px;}
.x4a_c00406{left:136.003500px;}
.x82_c00406{left:138.411000px;}
.xf_c00406{left:139.509000px;}
.x1c_c00406{left:143.578500px;}
.x66_c00406{left:145.530000px;}
.x2_c00406{left:146.677500px;}
.x7_c00406{left:149.746500px;}
.x5e_c00406{left:152.550000px;}
.x7c_c00406{left:154.710000px;}
.x10_c00406{left:157.330500px;}
.x3e_c00406{left:158.760000px;}
.x6c_c00406{left:161.460000px;}
.x51_c00406{left:164.445150px;}
.x1d_c00406{left:165.445500px;}
.x45_c00406{left:167.270414px;}
.x58_c00406{left:169.560000px;}
.x27_c00406{left:170.910000px;}
.x83_c00406{left:173.990862px;}
.x3a_c00406{left:180.090000px;}
.x16_c00406{left:181.680000px;}
.x63_c00406{left:187.650000px;}
.x33_c00406{left:188.730000px;}
.x46_c00406{left:191.302226px;}
.x76_c00406{left:192.510000px;}
.x22_c00406{left:194.965500px;}
.x55_c00406{left:198.720000px;}
.x3b_c00406{left:199.800000px;}
.x17_c00406{left:201.339000px;}
.x2f_c00406{left:204.660000px;}
.x4b_c00406{left:207.328500px;}
.x23_c00406{left:211.977000px;}
.x8_c00406{left:214.767672px;}
.x18_c00406{left:217.738500px;}
.x52_c00406{left:219.801592px;}
.x6d_c00406{left:220.860000px;}
.x28_c00406{left:223.290000px;}
.x59_c00406{left:225.450000px;}
.x9_c00406{left:228.058164px;}
.x81_c00406{left:229.230000px;}
.x84_c00406{left:230.659110px;}
.x77_c00406{left:234.360000px;}
.x11_c00406{left:235.375500px;}
.x79_c00406{left:236.910000px;}
.x4f_c00406{left:241.134247px;}
.xa_c00406{left:244.825092px;}
.x29_c00406{left:246.780000px;}
.x4c_c00406{left:248.331000px;}
.x34_c00406{left:250.020000px;}
.x73_c00406{left:252.180000px;}
.x67_c00406{left:253.260000px;}
.x3f_c00406{left:255.420000px;}
.x3_c00406{left:258.270000px;}
.x6e_c00406{left:260.550000px;}
.x5f_c00406{left:264.330000px;}
.x2a_c00406{left:265.410000px;}
.x56_c00406{left:266.760000px;}
.x1e_c00406{left:267.813000px;}
.x4d_c00406{left:270.484500px;}
.x47_c00406{left:272.052778px;}
.x41_c00406{left:273.112500px;}
.x35_c00406{left:275.940000px;}
.x68_c00406{left:277.560000px;}
.x78_c00406{left:282.690000px;}
.x69_c00406{left:283.770000px;}
.x19_c00406{left:285.873000px;}
.x7d_c00406{left:291.870000px;}
.x12_c00406{left:296.401500px;}
.x30_c00406{left:298.350000px;}
.x5a_c00406{left:301.050000px;}
.x24_c00406{left:302.883000px;}
.x7a_c00406{left:305.200500px;}
.x36_c00406{left:308.610000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fs0_c00406{font-size:19.600000pt;}
.fsf_c00406{font-size:48.538793pt;}
.fs11_c00406{font-size:49.466667pt;}
.fs5_c00406{font-size:50.405670pt;}
.fsa_c00406{font-size:52.266667pt;}
.fs1_c00406{font-size:53.215319pt;}
.fs12_c00406{font-size:55.066667pt;}
.fsc_c00406{font-size:55.071320pt;}
.fs10_c00406{font-size:56.000000pt;}
.fs15_c00406{font-size:56.004032pt;}
.fs3_c00406{font-size:56.005488pt;}
.fs14_c00406{font-size:56.007168pt;}
.fse_c00406{font-size:56.939738pt;}
.fs13_c00406{font-size:57.866667pt;}
.fs8_c00406{font-size:58.800000pt;}
.fsd_c00406{font-size:58.804968pt;}
.fs6_c00406{font-size:58.811759pt;}
.fs7_c00406{font-size:59.733333pt;}
.fs16_c00406{font-size:59.737634pt;}
.fs9_c00406{font-size:60.666667pt;}
.fsb_c00406{font-size:61.600000pt;}
.fs4_c00406{font-size:64.407245pt;}
.fs2_c00406{font-size:66.285749pt;}
.y0_c00406{bottom:0.000000pt;}
.y85_c00406{bottom:30.953627pt;}
.y84_c00406{bottom:31.591413pt;}
.y83_c00406{bottom:32.098192pt;}
.y82_c00406{bottom:33.054704pt;}
.y81_c00406{bottom:33.405589pt;}
.y80_c00406{bottom:33.687285pt;}
.y7f_c00406{bottom:34.587573pt;}
.y7e_c00406{bottom:34.888672pt;}
.y7d_c00406{bottom:35.522133pt;}
.y7c_c00406{bottom:45.832725pt;}
.y7b_c00406{bottom:46.702597pt;}
.y7a_c00406{bottom:46.978373pt;}
.y79_c00406{bottom:47.557589pt;}
.y78_c00406{bottom:47.854421pt;}
.y77_c00406{bottom:48.081301pt;}
.y76_c00406{bottom:48.721333pt;}
.y6c_c00406{bottom:57.604000pt;}
.y6d_c00406{bottom:58.352651pt;}
.y6e_c00406{bottom:58.574176pt;}
.y6f_c00406{bottom:58.817163pt;}
.y70_c00406{bottom:59.066741pt;}
.y71_c00406{bottom:59.687392pt;}
.y72_c00406{bottom:59.976395pt;}
.y73_c00406{bottom:60.556469pt;}
.y74_c00406{bottom:60.848459pt;}
.y75_c00406{bottom:61.596789pt;}
.y6b_c00406{bottom:76.934667pt;}
.y6a_c00406{bottom:90.237333pt;}
.y63_c00406{bottom:104.881333pt;}
.y64_c00406{bottom:105.366667pt;}
.y65_c00406{bottom:106.002667pt;}
.y66_c00406{bottom:106.106667pt;}
.y67_c00406{bottom:106.789333pt;}
.y68_c00406{bottom:106.958667pt;}
.y69_c00406{bottom:107.626667pt;}
.y62_c00406{bottom:123.065333pt;}
.y61_c00406{bottom:136.380000pt;}
.y60_c00406{bottom:151.864000pt;}
.y5f_c00406{bottom:167.576000pt;}
.y5e_c00406{bottom:181.573333pt;}
.y5d_c00406{bottom:196.906667pt;}
.y5c_c00406{bottom:212.322667pt;}
.y5b_c00406{bottom:227.280000pt;}
.y5a_c00406{bottom:242.716000pt;}
.y59_c00406{bottom:258.106667pt;}
.y58_c00406{bottom:273.150667pt;}
.y52_c00406{bottom:288.740247pt;}
.y53_c00406{bottom:288.740473pt;}
.y51_c00406{bottom:288.740553pt;}
.y50_c00406{bottom:288.740593pt;}
.y57_c00406{bottom:288.740613pt;}
.y54_c00406{bottom:288.740640pt;}
.y56_c00406{bottom:288.741187pt;}
.y55_c00406{bottom:288.741227pt;}
.y4f_c00406{bottom:303.538027pt;}
.y4e_c00406{bottom:303.538260pt;}
.y4d_c00406{bottom:303.538433pt;}
.y4c_c00406{bottom:303.538933pt;}
.y4b_c00406{bottom:303.539507pt;}
.y48_c00406{bottom:303.539913pt;}
.y4a_c00406{bottom:303.539927pt;}
.y49_c00406{bottom:303.540427pt;}
.y1_c00406{bottom:315.360000pt;}
.y41_c00406{bottom:315.842667pt;}
.y42_c00406{bottom:316.583207pt;}
.y43_c00406{bottom:316.918347pt;}
.y44_c00406{bottom:317.354607pt;}
.y45_c00406{bottom:318.305607pt;}
.y46_c00406{bottom:318.852307pt;}
.y47_c00406{bottom:319.147687pt;}
.y39_c00406{bottom:331.439936pt;}
.y3a_c00406{bottom:332.153384pt;}
.y3b_c00406{bottom:332.579751pt;}
.y3c_c00406{bottom:332.828053pt;}
.y3d_c00406{bottom:333.046524pt;}
.y3e_c00406{bottom:333.302888pt;}
.y3f_c00406{bottom:333.918811pt;}
.y40_c00406{bottom:334.163993pt;}
.y31_c00406{bottom:345.841333pt;}
.y32_c00406{bottom:346.047600pt;}
.y33_c00406{bottom:346.689488pt;}
.y34_c00406{bottom:346.973703pt;}
.y35_c00406{bottom:347.479507pt;}
.y36_c00406{bottom:347.710577pt;}
.y37_c00406{bottom:348.796043pt;}
.y38_c00406{bottom:349.092581pt;}
.y30_c00406{bottom:363.040000pt;}
.y2f_c00406{bottom:376.874667pt;}
.y2e_c00406{bottom:391.698667pt;}
.y2d_c00406{bottom:406.986667pt;}
.y2c_c00406{bottom:422.268000pt;}
.y24_c00406{bottom:433.445333pt;}
.y25_c00406{bottom:434.081493pt;}
.y26_c00406{bottom:434.352160pt;}
.y27_c00406{bottom:435.183173pt;}
.y28_c00406{bottom:436.584400pt;}
.y29_c00406{bottom:436.886827pt;}
.y2a_c00406{bottom:438.209813pt;}
.y2b_c00406{bottom:438.502933pt;}
.y1e_c00406{bottom:450.001333pt;}
.y1f_c00406{bottom:450.376933pt;}
.y20_c00406{bottom:451.287633pt;}
.y21_c00406{bottom:451.712173pt;}
.y22_c00406{bottom:452.003733pt;}
.y23_c00406{bottom:453.368633pt;}
.y14_c00406{bottom:465.602667pt;}
.y15_c00406{bottom:465.944947pt;}
.y16_c00406{bottom:466.240327pt;}
.y17_c00406{bottom:466.726387pt;}
.y18_c00406{bottom:467.457267pt;}
.y19_c00406{bottom:467.781767pt;}
.y1a_c00406{bottom:468.043887pt;}
.y1b_c00406{bottom:468.262547pt;}
.y1c_c00406{bottom:468.497767pt;}
.y1d_c00406{bottom:469.171007pt;}
.yb_c00406{bottom:480.481333pt;}
.yc_c00406{bottom:480.580043pt;}
.yd_c00406{bottom:480.882125pt;}
.ye_c00406{bottom:481.190368pt;}
.yf_c00406{bottom:481.433165pt;}
.y10_c00406{bottom:482.088589pt;}
.y11_c00406{bottom:482.310368pt;}
.y12_c00406{bottom:483.281595pt;}
.y13_c00406{bottom:484.041029pt;}
.y4_c00406{bottom:496.077013pt;}
.y5_c00406{bottom:496.539307pt;}
.y6_c00406{bottom:496.726720pt;}
.y7_c00406{bottom:497.597600pt;}
.y8_c00406{bottom:498.348352pt;}
.y9_c00406{bottom:498.502475pt;}
.ya_c00406{bottom:498.696075pt;}
.y2_c00406{bottom:511.206667pt;}
.y3_c00406{bottom:513.587307pt;}
.h2_c00406{height:19.600000pt;}
.h11_c00406{height:48.538793pt;}
.h13_c00406{height:49.466667pt;}
.h7_c00406{height:50.405670pt;}
.hc_c00406{height:52.266667pt;}
.h3_c00406{height:53.215319pt;}
.h14_c00406{height:55.066667pt;}
.he_c00406{height:55.071320pt;}
.h12_c00406{height:56.000000pt;}
.h17_c00406{height:56.004032pt;}
.h5_c00406{height:56.005488pt;}
.h16_c00406{height:56.007168pt;}
.h10_c00406{height:56.939738pt;}
.h15_c00406{height:57.866667pt;}
.ha_c00406{height:58.800000pt;}
.hf_c00406{height:58.804968pt;}
.h8_c00406{height:58.811759pt;}
.h9_c00406{height:59.733333pt;}
.h18_c00406{height:59.737634pt;}
.hb_c00406{height:60.666667pt;}
.hd_c00406{height:61.600000pt;}
.h6_c00406{height:64.407245pt;}
.h4_c00406{height:66.285749pt;}
.h0_c00406{height:545.040000pt;}
.h1_c00406{height:545.333333pt;}
.w0_c00406{width:319.200000pt;}
.w1_c00406{width:319.333333pt;}
.x0_c00406{left:0.000000pt;}
.xb_c00406{left:9.204000pt;}
.x1_c00406{left:11.520000pt;}
.x1a_c00406{left:13.569333pt;}
.x42_c00406{left:14.740395pt;}
.x4_c00406{left:16.163819pt;}
.x2b_c00406{left:18.000000pt;}
.x48_c00406{left:20.096000pt;}
.x5b_c00406{left:21.120000pt;}
.x64_c00406{left:22.320000pt;}
.x6a_c00406{left:23.760000pt;}
.x6f_c00406{left:25.200000pt;}
.x7e_c00406{left:27.600000pt;}
.x60_c00406{left:28.560000pt;}
.x37_c00406{left:31.440000pt;}
.x2c_c00406{left:33.120000pt;}
.xc_c00406{left:37.832000pt;}
.x13_c00406{left:39.038667pt;}
.x74_c00406{left:40.320000pt;}
.x75_c00406{left:41.280000pt;}
.x5c_c00406{left:42.720000pt;}
.x70_c00406{left:44.880000pt;}
.x53_c00406{left:45.840000pt;}
.x1f_c00406{left:48.157333pt;}
.x5_c00406{left:51.713195pt;}
.x38_c00406{left:53.760000pt;}
.x2d_c00406{left:54.960000pt;}
.x71_c00406{left:57.120000pt;}
.x14_c00406{left:58.730667pt;}
.xd_c00406{left:59.849333pt;}
.x20_c00406{left:61.690667pt;}
.x6b_c00406{left:64.800000pt;}
.x6_c00406{left:66.137003pt;}
.x3c_c00406{left:67.440000pt;}
.x49_c00406{left:69.465333pt;}
.x50_c00406{left:71.285960pt;}
.x43_c00406{left:74.237175pt;}
.xe_c00406{left:77.192000pt;}
.x61_c00406{left:79.200000pt;}
.x40_c00406{left:80.724000pt;}
.x54_c00406{left:81.840000pt;}
.x5d_c00406{left:84.240000pt;}
.x25_c00406{left:85.920000pt;}
.x57_c00406{left:88.800000pt;}
.x3d_c00406{left:90.000000pt;}
.x15_c00406{left:91.134667pt;}
.x7f_c00406{left:93.120000pt;}
.x39_c00406{left:94.080000pt;}
.x4e_c00406{left:95.048027pt;}
.x31_c00406{left:97.680000pt;}
.x1b_c00406{left:99.322667pt;}
.x26_c00406{left:102.240000pt;}
.x21_c00406{left:103.241333pt;}
.x72_c00406{left:106.800000pt;}
.x44_c00406{left:109.804309pt;}
.x80_c00406{left:111.360000pt;}
.x62_c00406{left:112.800000pt;}
.x65_c00406{left:113.760000pt;}
.x2e_c00406{left:115.200000pt;}
.x32_c00406{left:117.600000pt;}
.x7b_c00406{left:119.040000pt;}
.x4a_c00406{left:120.892000pt;}
.x82_c00406{left:123.032000pt;}
.xf_c00406{left:124.008000pt;}
.x1c_c00406{left:127.625333pt;}
.x66_c00406{left:129.360000pt;}
.x2_c00406{left:130.380000pt;}
.x7_c00406{left:133.108000pt;}
.x5e_c00406{left:135.600000pt;}
.x7c_c00406{left:137.520000pt;}
.x10_c00406{left:139.849333pt;}
.x3e_c00406{left:141.120000pt;}
.x6c_c00406{left:143.520000pt;}
.x51_c00406{left:146.173467pt;}
.x1d_c00406{left:147.062667pt;}
.x45_c00406{left:148.684812pt;}
.x58_c00406{left:150.720000pt;}
.x27_c00406{left:151.920000pt;}
.x83_c00406{left:154.658544pt;}
.x3a_c00406{left:160.080000pt;}
.x16_c00406{left:161.493333pt;}
.x63_c00406{left:166.800000pt;}
.x33_c00406{left:167.760000pt;}
.x46_c00406{left:170.046423pt;}
.x76_c00406{left:171.120000pt;}
.x22_c00406{left:173.302667pt;}
.x55_c00406{left:176.640000pt;}
.x3b_c00406{left:177.600000pt;}
.x17_c00406{left:178.968000pt;}
.x2f_c00406{left:181.920000pt;}
.x4b_c00406{left:184.292000pt;}
.x23_c00406{left:188.424000pt;}
.x8_c00406{left:190.904597pt;}
.x18_c00406{left:193.545333pt;}
.x52_c00406{left:195.379193pt;}
.x6d_c00406{left:196.320000pt;}
.x28_c00406{left:198.480000pt;}
.x59_c00406{left:200.400000pt;}
.x9_c00406{left:202.718368pt;}
.x81_c00406{left:203.760000pt;}
.x84_c00406{left:205.030320pt;}
.x77_c00406{left:208.320000pt;}
.x11_c00406{left:209.222667pt;}
.x79_c00406{left:210.586667pt;}
.x4f_c00406{left:214.341553pt;}
.xa_c00406{left:217.622304pt;}
.x29_c00406{left:219.360000pt;}
.x4c_c00406{left:220.738667pt;}
.x34_c00406{left:222.240000pt;}
.x73_c00406{left:224.160000pt;}
.x67_c00406{left:225.120000pt;}
.x3f_c00406{left:227.040000pt;}
.x3_c00406{left:229.573333pt;}
.x6e_c00406{left:231.600000pt;}
.x5f_c00406{left:234.960000pt;}
.x2a_c00406{left:235.920000pt;}
.x56_c00406{left:237.120000pt;}
.x1e_c00406{left:238.056000pt;}
.x4d_c00406{left:240.430667pt;}
.x47_c00406{left:241.824692pt;}
.x41_c00406{left:242.766667pt;}
.x35_c00406{left:245.280000pt;}
.x68_c00406{left:246.720000pt;}
.x78_c00406{left:251.280000pt;}
.x69_c00406{left:252.240000pt;}
.x19_c00406{left:254.109333pt;}
.x7d_c00406{left:259.440000pt;}
.x12_c00406{left:263.468000pt;}
.x30_c00406{left:265.200000pt;}
.x5a_c00406{left:267.600000pt;}
.x24_c00406{left:269.229333pt;}
.x7a_c00406{left:271.289333pt;}
.x36_c00406{left:274.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00407 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00407 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00407 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00407 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00407.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_c00407{transform:matrix(0.086965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086965,0.000000,0.000000,0.250000,0,0);}
.ma7_c00407{transform:matrix(0.127985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127985,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{transform:matrix(0.134805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134805,0.000000,0.000000,0.250000,0,0);}
.ma2_c00407{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.md1_c00407{transform:matrix(0.137610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137610,0.000000,0.000000,0.250000,0,0);}
.mec_c00407{transform:matrix(0.138590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138590,0.000000,0.000000,0.250000,0,0);}
.ma5_c00407{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m90_c00407{transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.145430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145430,0.000000,0.000000,0.250000,0,0);}
.mae_c00407{transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00407{transform:matrix(0.149160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149160,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{transform:matrix(0.150990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150990,0.000000,0.000000,0.250000,0,0);}
.mc9_c00407{transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);}
.mcb_c00407{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m71_c00407{transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);}
.m6c_c00407{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00407{transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);}
.md3_c00407{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.mc2_c00407{transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);}
.md4_c00407{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.m6b_c00407{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.m88_c00407{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.mcf_c00407{transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160220,0.000000,0.000000,0.250000,0,0);}
.me1_c00407{transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);}
.m95_c00407{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.mbb_c00407{transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m92_c00407{transform:matrix(0.164965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164965,0.000000,0.000000,0.250000,0,0);}
.m63_c00407{transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);}
.mc3_c00407{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00407{transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166330,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.md5_c00407{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m61_c00407{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m98_c00407{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00407{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);}
.mab_c00407{transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);}
.ma3_c00407{transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);}
.m45_c00407{transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);}
.m55_c00407{transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);}
.mc7_c00407{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);}
.mdc_c00407{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00407{transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);}
.mb2_c00407{transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);}
.m8e_c00407{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m86_c00407{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.me6_c00407{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.maf_c00407{transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);}
.mb7_c00407{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.md0_c00407{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.md2_c00407{transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);}
.m96_c00407{transform:matrix(0.179585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179585,0.000000,0.000000,0.250000,0,0);}
.m43_c00407{transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);}
.m93_c00407{transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.md9_c00407{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.m69_c00407{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.m9a_c00407{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m60_c00407{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);}
.meb_c00407{transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.m8f_c00407{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00407{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.m97_c00407{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.mcd_c00407{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185390,0.000000,0.000000,0.250000,0,0);}
.m77_c00407{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m8d_c00407{transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.me2_c00407{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.mde_c00407{transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m64_c00407{transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);}
.mc0_c00407{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00407{transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);}
.mc4_c00407{transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190545,0.000000,0.000000,0.250000,0,0);}
.ma0_c00407{transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190795,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190965,0.000000,0.000000,0.250000,0,0);}
.mc1_c00407{transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191105,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191415,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191770,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.mea_c00407{transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192435,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m3e_c00407{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00407{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.mc8_c00407{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.md6_c00407{transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);}
.me5_c00407{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00407{transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.mb0_c00407{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.me9_c00407{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.me0_c00407{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.m7d_c00407{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m91_c00407{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m8b_c00407{transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198105,0.000000,0.000000,0.250000,0,0);}
.m30_c00407{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.mce_c00407{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m80_c00407{transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00407{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.mac_c00407{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201115,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00407{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.m81_c00407{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.maa_c00407{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m87_c00407{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.mdf_c00407{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);}
.m76_c00407{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);}
.ma6_c00407{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m3c_c00407{transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206995,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.mba_c00407{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.md8_c00407{transform:matrix(0.208295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208295,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208985,0.000000,0.000000,0.250000,0,0);}
.mb8_c00407{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me7_c00407{transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209865,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210385,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m68_c00407{transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.mca_c00407{transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.me3_c00407{transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);}
.mbe_c00407{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.mad_c00407{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m6d_c00407{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.mb9_c00407{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);}
.m84_c00407{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);}
.me4_c00407{transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);}
.mb4_c00407{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m9f_c00407{transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217820,0.000000,0.000000,0.250000,0,0);}
.m79_c00407{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);}
.mb1_c00407{transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218895,0.000000,0.000000,0.250000,0,0);}
.mbd_c00407{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m99_c00407{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m49_c00407{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.ma4_c00407{transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);}
.m5e_c00407{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);}
.m73_c00407{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.md7_c00407{transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);}
.m7e_c00407{transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226105,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m7a_c00407{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);}
.m5a_c00407{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);}
.mc5_c00407{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.mdd_c00407{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234860,0.000000,0.000000,0.250000,0,0);}
.mda_c00407{transform:matrix(0.235020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235020,0.000000,0.000000,0.250000,0,0);}
.ma1_c00407{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m74_c00407{transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);}
.m7f_c00407{transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);}
.m82_c00407{transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);}
.m78_c00407{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.mb3_c00407{transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241360,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);}
.m9c_c00407{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.m40_c00407{transform:matrix(0.260905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260905,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);}
.me8_c00407{transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00407{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m75_c00407{transform:matrix(0.278045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278045,0.000000,0.000000,0.250000,0,0);}
.mbc_c00407{transform:matrix(0.287285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287285,0.000000,0.000000,0.250000,0,0);}
.m66_c00407{transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00407{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);}
.m67_c00407{transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);}
.m48_c00407{transform:matrix(0.494830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494830,0.000000,0.000000,0.250000,0,0);}
.mbf_c00407{transform:matrix(0.547000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:0.000000px;}
.fc0_c00407{color:transparent;}
.fsb_c00407{font-size:57.750000px;}
.fs3_c00407{font-size:58.800000px;}
.fs1_c00407{font-size:59.850000px;}
.fs9_c00407{font-size:60.900000px;}
.fs7_c00407{font-size:61.950000px;}
.fsd_c00407{font-size:63.000000px;}
.fs5_c00407{font-size:64.050000px;}
.fs2_c00407{font-size:65.100000px;}
.fs6_c00407{font-size:66.150000px;}
.fs4_c00407{font-size:67.200000px;}
.fsa_c00407{font-size:68.250000px;}
.fsc_c00407{font-size:69.300000px;}
.fs8_c00407{font-size:70.350000px;}
.fs0_c00407{font-size:74.550000px;}
.y0_c00407{bottom:0.000000px;}
.y48_c00407{bottom:24.150000px;}
.y47_c00407{bottom:41.461500px;}
.y40_c00407{bottom:57.243000px;}
.y41_c00407{bottom:57.474000px;}
.y42_c00407{bottom:58.782000px;}
.y43_c00407{bottom:59.106000px;}
.y44_c00407{bottom:59.913000px;}
.y45_c00407{bottom:60.159000px;}
.y46_c00407{bottom:60.688500px;}
.y36_c00407{bottom:73.983000px;}
.y37_c00407{bottom:74.620500px;}
.y38_c00407{bottom:74.782500px;}
.y39_c00407{bottom:74.977500px;}
.y3a_c00407{bottom:75.903000px;}
.y3b_c00407{bottom:76.009500px;}
.y3c_c00407{bottom:76.408500px;}
.y3d_c00407{bottom:76.639500px;}
.y3e_c00407{bottom:76.827000px;}
.y3f_c00407{bottom:77.122500px;}
.y35_c00407{bottom:92.068500px;}
.y34_c00407{bottom:109.471500px;}
.y33_c00407{bottom:126.837000px;}
.y2d_c00407{bottom:141.484500px;}
.y2e_c00407{bottom:141.892500px;}
.y2f_c00407{bottom:142.210500px;}
.y30_c00407{bottom:142.539000px;}
.y31_c00407{bottom:143.847000px;}
.y32_c00407{bottom:144.943500px;}
.y2c_c00407{bottom:159.687000px;}
.y2b_c00407{bottom:178.162500px;}
.y24_c00407{bottom:193.863000px;}
.y25_c00407{bottom:194.536500px;}
.y26_c00407{bottom:194.700000px;}
.y27_c00407{bottom:195.288000px;}
.y28_c00407{bottom:195.790500px;}
.y29_c00407{bottom:196.339500px;}
.y2a_c00407{bottom:196.633500px;}
.y23_c00407{bottom:212.127000px;}
.y22_c00407{bottom:228.477000px;}
.y21_c00407{bottom:245.514000px;}
.y20_c00407{bottom:262.311000px;}
.y1f_c00407{bottom:279.583500px;}
.y1e_c00407{bottom:296.127000px;}
.y1d_c00407{bottom:313.189500px;}
.y1c_c00407{bottom:330.196500px;}
.y1b_c00407{bottom:347.347500px;}
.y13_c00407{bottom:362.881500px;}
.y14_c00407{bottom:363.258000px;}
.y15_c00407{bottom:363.498000px;}
.y16_c00407{bottom:364.219500px;}
.y17_c00407{bottom:364.783500px;}
.y18_c00407{bottom:365.002500px;}
.y19_c00407{bottom:365.638500px;}
.y1a_c00407{bottom:365.941500px;}
.y12_c00407{bottom:381.499500px;}
.y11_c00407{bottom:398.728500px;}
.y10_c00407{bottom:415.557000px;}
.yf_c00407{bottom:432.501000px;}
.ye_c00407{bottom:449.590500px;}
.yd_c00407{bottom:466.501500px;}
.yc_c00407{bottom:483.235500px;}
.yb_c00407{bottom:499.881000px;}
.ya_c00407{bottom:516.471000px;}
.y9_c00407{bottom:534.739500px;}
.y2_c00407{bottom:549.183000px;}
.y3_c00407{bottom:549.780000px;}
.y4_c00407{bottom:550.624500px;}
.y5_c00407{bottom:551.154000px;}
.y6_c00407{bottom:551.442000px;}
.y7_c00407{bottom:551.655000px;}
.y8_c00407{bottom:552.429000px;}
.y1_c00407{bottom:564.945000px;}
.hd_c00407{height:57.750000px;}
.h5_c00407{height:58.800000px;}
.h3_c00407{height:59.850000px;}
.hb_c00407{height:60.900000px;}
.h9_c00407{height:61.950000px;}
.hf_c00407{height:63.000000px;}
.h7_c00407{height:64.050000px;}
.h4_c00407{height:65.100000px;}
.h8_c00407{height:66.150000px;}
.h6_c00407{height:67.200000px;}
.hc_c00407{height:68.250000px;}
.he_c00407{height:69.300000px;}
.ha_c00407{height:70.350000px;}
.h2_c00407{height:74.550000px;}
.h0_c00407{height:613.170000px;}
.h1_c00407{height:613.500000px;}
.w0_c00407{width:359.100000px;}
.w1_c00407{width:359.250000px;}
.x0_c00407{left:0.000000px;}
.x80_c00407{left:32.131500px;}
.x72_c00407{left:33.210000px;}
.x66_c00407{left:34.732500px;}
.x4c_c00407{left:35.910000px;}
.x1e_c00407{left:37.260000px;}
.x27_c00407{left:38.880000px;}
.x2_c00407{left:40.645500px;}
.x6b_c00407{left:43.200000px;}
.x22_c00407{left:45.900000px;}
.x77_c00407{left:51.468000px;}
.x7a_c00407{left:55.891500px;}
.x5b_c00407{left:56.970000px;}
.x60_c00407{left:59.938500px;}
.x70_c00407{left:62.370000px;}
.x67_c00407{left:63.906000px;}
.x4d_c00407{left:69.120000px;}
.x33_c00407{left:71.280000px;}
.x3d_c00407{left:72.777000px;}
.x2d_c00407{left:76.140000px;}
.x37_c00407{left:77.760000px;}
.x50_c00407{left:79.920000px;}
.x9_c00407{left:81.270000px;}
.x58_c00407{left:83.970000px;}
.x28_c00407{left:85.050000px;}
.x68_c00407{left:86.593500px;}
.x3_c00407{left:90.340500px;}
.x13_c00407{left:94.230000px;}
.x1f_c00407{left:95.310000px;}
.x51_c00407{left:96.930000px;}
.x40_c00407{left:98.820000px;}
.x23_c00407{left:99.900000px;}
.x61_c00407{left:101.788500px;}
.x46_c00407{left:103.410000px;}
.x54_c00407{left:104.760000px;}
.x59_c00407{left:106.920000px;}
.xa_c00407{left:109.620000px;}
.x49_c00407{left:111.240000px;}
.x20_c00407{left:115.290000px;}
.x6c_c00407{left:116.640000px;}
.x29_c00407{left:119.880000px;}
.x24_c00407{left:123.120000px;}
.x7b_c00407{left:128.521500px;}
.x18_c00407{left:130.410000px;}
.x38_c00407{left:131.760000px;}
.xb_c00407{left:134.730000px;}
.x64_c00407{left:136.888500px;}
.x2e_c00407{left:138.780000px;}
.x47_c00407{left:140.670000px;}
.x14_c00407{left:143.640000px;}
.x5c_c00407{left:146.070000px;}
.xe_c00407{left:148.770000px;}
.x62_c00407{left:150.658500px;}
.x41_c00407{left:152.280000px;}
.x52_c00407{left:154.440000px;}
.x2f_c00407{left:158.760000px;}
.x4_c00407{left:160.755000px;}
.x5e_c00407{left:165.643500px;}
.x73_c00407{left:167.130000px;}
.x39_c00407{left:168.750000px;}
.x1_c00407{left:172.530000px;}
.x43_c00407{left:175.230000px;}
.x2a_c00407{left:177.390000px;}
.x6d_c00407{left:179.550000px;}
.x19_c00407{left:182.250000px;}
.x3a_c00407{left:184.140000px;}
.x78_c00407{left:187.519500px;}
.x30_c00407{left:188.730000px;}
.x15_c00407{left:190.620000px;}
.x7c_c00407{left:191.701500px;}
.x6e_c00407{left:193.050000px;}
.x34_c00407{left:195.210000px;}
.xf_c00407{left:198.990000px;}
.x74_c00407{left:202.312500px;}
.x69_c00407{left:203.461500px;}
.x5_c00407{left:204.820500px;}
.x4a_c00407{left:207.630000px;}
.x4e_c00407{left:209.250000px;}
.x1a_c00407{left:210.330000px;}
.x3e_c00407{left:211.552500px;}
.x7d_c00407{left:213.841500px;}
.x6f_c00407{left:216.270000px;}
.x16_c00407{left:218.970000px;}
.x53_c00407{left:222.480000px;}
.x35_c00407{left:224.910000px;}
.x6_c00407{left:228.867000px;}
.x10_c00407{left:230.580000px;}
.x44_c00407{left:232.470000px;}
.xc_c00407{left:233.820000px;}
.x17_c00407{left:235.710000px;}
.x55_c00407{left:238.140000px;}
.x1b_c00407{left:240.300000px;}
.x5d_c00407{left:242.730000px;}
.x31_c00407{left:244.890000px;}
.x7_c00407{left:246.672000px;}
.x4f_c00407{left:250.290000px;}
.x4b_c00407{left:252.990000px;}
.x75_c00407{left:254.746500px;}
.x25_c00407{left:256.770000px;}
.x3b_c00407{left:258.390000px;}
.x5f_c00407{left:261.154500px;}
.x56_c00407{left:264.330000px;}
.x5a_c00407{left:267.840000px;}
.x3c_c00407{left:269.460000px;}
.x32_c00407{left:274.320000px;}
.x2b_c00407{left:276.750000px;}
.x7e_c00407{left:279.451500px;}
.x6a_c00407{left:281.806500px;}
.x42_c00407{left:282.960000px;}
.x36_c00407{left:284.580000px;}
.x63_c00407{left:286.738500px;}
.x45_c00407{left:287.820000px;}
.x11_c00407{left:288.900000px;}
.x81_c00407{left:291.601500px;}
.x76_c00407{left:294.973500px;}
.x48_c00407{left:297.810000px;}
.x7f_c00407{left:299.431500px;}
.x57_c00407{left:300.780000px;}
.x1c_c00407{left:302.940000px;}
.x65_c00407{left:305.098500px;}
.x2c_c00407{left:306.180000px;}
.x12_c00407{left:308.610000px;}
.x71_c00407{left:309.690000px;}
.x8_c00407{left:311.137500px;}
.x26_c00407{left:314.280000px;}
.x3f_c00407{left:316.857000px;}
.x79_c00407{left:319.336500px;}
.x1d_c00407{left:320.490000px;}
.xd_c00407{left:321.840000px;}
.x21_c00407{left:325.890000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fsb_c00407{font-size:51.333333pt;}
.fs3_c00407{font-size:52.266667pt;}
.fs1_c00407{font-size:53.200000pt;}
.fs9_c00407{font-size:54.133333pt;}
.fs7_c00407{font-size:55.066667pt;}
.fsd_c00407{font-size:56.000000pt;}
.fs5_c00407{font-size:56.933333pt;}
.fs2_c00407{font-size:57.866667pt;}
.fs6_c00407{font-size:58.800000pt;}
.fs4_c00407{font-size:59.733333pt;}
.fsa_c00407{font-size:60.666667pt;}
.fsc_c00407{font-size:61.600000pt;}
.fs8_c00407{font-size:62.533333pt;}
.fs0_c00407{font-size:66.266667pt;}
.y0_c00407{bottom:0.000000pt;}
.y48_c00407{bottom:21.466667pt;}
.y47_c00407{bottom:36.854667pt;}
.y40_c00407{bottom:50.882667pt;}
.y41_c00407{bottom:51.088000pt;}
.y42_c00407{bottom:52.250667pt;}
.y43_c00407{bottom:52.538667pt;}
.y44_c00407{bottom:53.256000pt;}
.y45_c00407{bottom:53.474667pt;}
.y46_c00407{bottom:53.945333pt;}
.y36_c00407{bottom:65.762667pt;}
.y37_c00407{bottom:66.329333pt;}
.y38_c00407{bottom:66.473333pt;}
.y39_c00407{bottom:66.646667pt;}
.y3a_c00407{bottom:67.469333pt;}
.y3b_c00407{bottom:67.564000pt;}
.y3c_c00407{bottom:67.918667pt;}
.y3d_c00407{bottom:68.124000pt;}
.y3e_c00407{bottom:68.290667pt;}
.y3f_c00407{bottom:68.553333pt;}
.y35_c00407{bottom:81.838667pt;}
.y34_c00407{bottom:97.308000pt;}
.y33_c00407{bottom:112.744000pt;}
.y2d_c00407{bottom:125.764000pt;}
.y2e_c00407{bottom:126.126667pt;}
.y2f_c00407{bottom:126.409333pt;}
.y30_c00407{bottom:126.701333pt;}
.y31_c00407{bottom:127.864000pt;}
.y32_c00407{bottom:128.838667pt;}
.y2c_c00407{bottom:141.944000pt;}
.y2b_c00407{bottom:158.366667pt;}
.y24_c00407{bottom:172.322667pt;}
.y25_c00407{bottom:172.921333pt;}
.y26_c00407{bottom:173.066667pt;}
.y27_c00407{bottom:173.589333pt;}
.y28_c00407{bottom:174.036000pt;}
.y29_c00407{bottom:174.524000pt;}
.y2a_c00407{bottom:174.785333pt;}
.y23_c00407{bottom:188.557333pt;}
.y22_c00407{bottom:203.090667pt;}
.y21_c00407{bottom:218.234667pt;}
.y20_c00407{bottom:233.165333pt;}
.y1f_c00407{bottom:248.518667pt;}
.y1e_c00407{bottom:263.224000pt;}
.y1d_c00407{bottom:278.390667pt;}
.y1c_c00407{bottom:293.508000pt;}
.y1b_c00407{bottom:308.753333pt;}
.y13_c00407{bottom:322.561333pt;}
.y14_c00407{bottom:322.896000pt;}
.y15_c00407{bottom:323.109333pt;}
.y16_c00407{bottom:323.750667pt;}
.y17_c00407{bottom:324.252000pt;}
.y18_c00407{bottom:324.446667pt;}
.y19_c00407{bottom:325.012000pt;}
.y1a_c00407{bottom:325.281333pt;}
.y12_c00407{bottom:339.110667pt;}
.y11_c00407{bottom:354.425333pt;}
.y10_c00407{bottom:369.384000pt;}
.yf_c00407{bottom:384.445333pt;}
.ye_c00407{bottom:399.636000pt;}
.yd_c00407{bottom:414.668000pt;}
.yc_c00407{bottom:429.542667pt;}
.yb_c00407{bottom:444.338667pt;}
.ya_c00407{bottom:459.085333pt;}
.y9_c00407{bottom:475.324000pt;}
.y2_c00407{bottom:488.162667pt;}
.y3_c00407{bottom:488.693333pt;}
.y4_c00407{bottom:489.444000pt;}
.y5_c00407{bottom:489.914667pt;}
.y6_c00407{bottom:490.170667pt;}
.y7_c00407{bottom:490.360000pt;}
.y8_c00407{bottom:491.048000pt;}
.y1_c00407{bottom:502.173333pt;}
.hd_c00407{height:51.333333pt;}
.h5_c00407{height:52.266667pt;}
.h3_c00407{height:53.200000pt;}
.hb_c00407{height:54.133333pt;}
.h9_c00407{height:55.066667pt;}
.hf_c00407{height:56.000000pt;}
.h7_c00407{height:56.933333pt;}
.h4_c00407{height:57.866667pt;}
.h8_c00407{height:58.800000pt;}
.h6_c00407{height:59.733333pt;}
.hc_c00407{height:60.666667pt;}
.he_c00407{height:61.600000pt;}
.ha_c00407{height:62.533333pt;}
.h2_c00407{height:66.266667pt;}
.h0_c00407{height:545.040000pt;}
.h1_c00407{height:545.333333pt;}
.w0_c00407{width:319.200000pt;}
.w1_c00407{width:319.333333pt;}
.x0_c00407{left:0.000000pt;}
.x80_c00407{left:28.561333pt;}
.x72_c00407{left:29.520000pt;}
.x66_c00407{left:30.873333pt;}
.x4c_c00407{left:31.920000pt;}
.x1e_c00407{left:33.120000pt;}
.x27_c00407{left:34.560000pt;}
.x2_c00407{left:36.129333pt;}
.x6b_c00407{left:38.400000pt;}
.x22_c00407{left:40.800000pt;}
.x77_c00407{left:45.749333pt;}
.x7a_c00407{left:49.681333pt;}
.x5b_c00407{left:50.640000pt;}
.x60_c00407{left:53.278667pt;}
.x70_c00407{left:55.440000pt;}
.x67_c00407{left:56.805333pt;}
.x4d_c00407{left:61.440000pt;}
.x33_c00407{left:63.360000pt;}
.x3d_c00407{left:64.690667pt;}
.x2d_c00407{left:67.680000pt;}
.x37_c00407{left:69.120000pt;}
.x50_c00407{left:71.040000pt;}
.x9_c00407{left:72.240000pt;}
.x58_c00407{left:74.640000pt;}
.x28_c00407{left:75.600000pt;}
.x68_c00407{left:76.972000pt;}
.x3_c00407{left:80.302667pt;}
.x13_c00407{left:83.760000pt;}
.x1f_c00407{left:84.720000pt;}
.x51_c00407{left:86.160000pt;}
.x40_c00407{left:87.840000pt;}
.x23_c00407{left:88.800000pt;}
.x61_c00407{left:90.478667pt;}
.x46_c00407{left:91.920000pt;}
.x54_c00407{left:93.120000pt;}
.x59_c00407{left:95.040000pt;}
.xa_c00407{left:97.440000pt;}
.x49_c00407{left:98.880000pt;}
.x20_c00407{left:102.480000pt;}
.x6c_c00407{left:103.680000pt;}
.x29_c00407{left:106.560000pt;}
.x24_c00407{left:109.440000pt;}
.x7b_c00407{left:114.241333pt;}
.x18_c00407{left:115.920000pt;}
.x38_c00407{left:117.120000pt;}
.xb_c00407{left:119.760000pt;}
.x64_c00407{left:121.678667pt;}
.x2e_c00407{left:123.360000pt;}
.x47_c00407{left:125.040000pt;}
.x14_c00407{left:127.680000pt;}
.x5c_c00407{left:129.840000pt;}
.xe_c00407{left:132.240000pt;}
.x62_c00407{left:133.918667pt;}
.x41_c00407{left:135.360000pt;}
.x52_c00407{left:137.280000pt;}
.x2f_c00407{left:141.120000pt;}
.x4_c00407{left:142.893333pt;}
.x5e_c00407{left:147.238667pt;}
.x73_c00407{left:148.560000pt;}
.x39_c00407{left:150.000000pt;}
.x1_c00407{left:153.360000pt;}
.x43_c00407{left:155.760000pt;}
.x2a_c00407{left:157.680000pt;}
.x6d_c00407{left:159.600000pt;}
.x19_c00407{left:162.000000pt;}
.x3a_c00407{left:163.680000pt;}
.x78_c00407{left:166.684000pt;}
.x30_c00407{left:167.760000pt;}
.x15_c00407{left:169.440000pt;}
.x7c_c00407{left:170.401333pt;}
.x6e_c00407{left:171.600000pt;}
.x34_c00407{left:173.520000pt;}
.xf_c00407{left:176.880000pt;}
.x74_c00407{left:179.833333pt;}
.x69_c00407{left:180.854667pt;}
.x5_c00407{left:182.062667pt;}
.x4a_c00407{left:184.560000pt;}
.x4e_c00407{left:186.000000pt;}
.x1a_c00407{left:186.960000pt;}
.x3e_c00407{left:188.046667pt;}
.x7d_c00407{left:190.081333pt;}
.x6f_c00407{left:192.240000pt;}
.x16_c00407{left:194.640000pt;}
.x53_c00407{left:197.760000pt;}
.x35_c00407{left:199.920000pt;}
.x6_c00407{left:203.437333pt;}
.x10_c00407{left:204.960000pt;}
.x44_c00407{left:206.640000pt;}
.xc_c00407{left:207.840000pt;}
.x17_c00407{left:209.520000pt;}
.x55_c00407{left:211.680000pt;}
.x1b_c00407{left:213.600000pt;}
.x5d_c00407{left:215.760000pt;}
.x31_c00407{left:217.680000pt;}
.x7_c00407{left:219.264000pt;}
.x4f_c00407{left:222.480000pt;}
.x4b_c00407{left:224.880000pt;}
.x75_c00407{left:226.441333pt;}
.x25_c00407{left:228.240000pt;}
.x3b_c00407{left:229.680000pt;}
.x5f_c00407{left:232.137333pt;}
.x56_c00407{left:234.960000pt;}
.x5a_c00407{left:238.080000pt;}
.x3c_c00407{left:239.520000pt;}
.x32_c00407{left:243.840000pt;}
.x2b_c00407{left:246.000000pt;}
.x7e_c00407{left:248.401333pt;}
.x6a_c00407{left:250.494667pt;}
.x42_c00407{left:251.520000pt;}
.x36_c00407{left:252.960000pt;}
.x63_c00407{left:254.878667pt;}
.x45_c00407{left:255.840000pt;}
.x11_c00407{left:256.800000pt;}
.x81_c00407{left:259.201333pt;}
.x76_c00407{left:262.198667pt;}
.x48_c00407{left:264.720000pt;}
.x7f_c00407{left:266.161333pt;}
.x57_c00407{left:267.360000pt;}
.x1c_c00407{left:269.280000pt;}
.x65_c00407{left:271.198667pt;}
.x2c_c00407{left:272.160000pt;}
.x12_c00407{left:274.320000pt;}
.x71_c00407{left:275.280000pt;}
.x8_c00407{left:276.566667pt;}
.x26_c00407{left:279.360000pt;}
.x3f_c00407{left:281.650667pt;}
.x79_c00407{left:283.854667pt;}
.x1d_c00407{left:284.880000pt;}
.xd_c00407{left:286.080000pt;}
.x21_c00407{left:289.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00408 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00408 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00408 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00408 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00408.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00408{transform:matrix(0.008885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008885,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.095570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095570,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.m8e_c00408{transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.135070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135070,0.000000,0.000000,0.250000,0,0);}
.m94_c00408{transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145465,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148015,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.149740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149740,0.000000,0.000000,0.250000,0,0);}
.m74_c00408{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153495,0.000000,0.000000,0.250000,0,0);}
.m95_c00408{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.m96_c00408{transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154405,0.000000,0.000000,0.250000,0,0);}
.m7b_c00408{transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155955,0.000000,0.000000,0.250000,0,0);}
.md8_c00408{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00408{transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159580,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);}
.mb8_c00408{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m91_c00408{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m90_c00408{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m82_c00408{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.maf_c00408{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.m62_c00408{transform:matrix(0.165370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165370,0.000000,0.000000,0.250000,0,0);}
.me3_c00408{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.md2_c00408{transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);}
.mcb_c00408{transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);}
.me0_c00408{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m5f_c00408{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00408{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169785,0.000000,0.000000,0.250000,0,0);}
.mda_c00408{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.m93_c00408{transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172630,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172985,0.000000,0.000000,0.250000,0,0);}
.m9d_c00408{transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);}
.ma2_c00408{transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);}
.md3_c00408{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175030,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.m97_c00408{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.mae_c00408{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.m70_c00408{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00408{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m8f_c00408{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.m98_c00408{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.mc6_c00408{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m79_c00408{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m9c_c00408{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00408{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m7a_c00408{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.mef_c00408{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m77_c00408{transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182665,0.000000,0.000000,0.250000,0,0);}
.maa_c00408{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00408{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m6b_c00408{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.m65_c00408{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.ma4_c00408{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.m9e_c00408{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.mba_c00408{transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);}
.mc1_c00408{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00408{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m8a_c00408{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m7f_c00408{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m83_c00408{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188135,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.mc8_c00408{transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189545,0.000000,0.000000,0.250000,0,0);}
.m89_c00408{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m8d_c00408{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m78_c00408{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.mac_c00408{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m60_c00408{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.md0_c00408{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m5c_c00408{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.m8b_c00408{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00408{transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);}
.m46_c00408{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mcd_c00408{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m6e_c00408{transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195665,0.000000,0.000000,0.250000,0,0);}
.mab_c00408{transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);}
.ma6_c00408{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196605,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197320,0.000000,0.000000,0.250000,0,0);}
.mcc_c00408{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197890,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m67_c00408{transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198760,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m6a_c00408{transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m92_c00408{transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201155,0.000000,0.000000,0.250000,0,0);}
.me2_c00408{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00408{transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);}
.mbb_c00408{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mb5_c00408{transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201385,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m66_c00408{transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);}
.m7d_c00408{transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201645,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);}
.m99_c00408{transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m64_c00408{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.ma0_c00408{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204570,0.000000,0.000000,0.250000,0,0);}
.me9_c00408{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.md6_c00408{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.mcf_c00408{transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204845,0.000000,0.000000,0.250000,0,0);}
.mdd_c00408{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.mee_c00408{transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205395,0.000000,0.000000,0.250000,0,0);}
.m7c_c00408{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m80_c00408{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.ma9_c00408{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m73_c00408{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.md5_c00408{transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);}
.mb0_c00408{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m47_c00408{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207730,0.000000,0.000000,0.250000,0,0);}
.md1_c00408{transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);}
.mdb_c00408{transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209380,0.000000,0.000000,0.250000,0,0);}
.m35_c00408{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);}
.mc0_c00408{transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);}
.mbf_c00408{transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.m7e_c00408{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m87_c00408{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.me1_c00408{transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213505,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.mca_c00408{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);}
.ma8_c00408{transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214260,0.000000,0.000000,0.250000,0,0);}
.m37_c00408{transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);}
.mc9_c00408{transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);}
.m72_c00408{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00408{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.md7_c00408{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.m71_c00408{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.md4_c00408{transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.meb_c00408{transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218590,0.000000,0.000000,0.250000,0,0);}
.mb6_c00408{transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);}
.mad_c00408{transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);}
.mb9_c00408{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.mb7_c00408{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mdc_c00408{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m69_c00408{transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221065,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.mbc_c00408{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);}
.mc4_c00408{transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);}
.m85_c00408{transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.mea_c00408{transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);}
.me7_c00408{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.me4_c00408{transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);}
.m88_c00408{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m6c_c00408{transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);}
.ma3_c00408{transform:matrix(0.225620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225620,0.000000,0.000000,0.250000,0,0);}
.ma5_c00408{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.m68_c00408{transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00408{transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227080,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.mc7_c00408{transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);}
.m63_c00408{transform:matrix(0.231460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231460,0.000000,0.000000,0.250000,0,0);}
.me6_c00408{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m6f_c00408{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00408{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.mdf_c00408{transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);}
.me5_c00408{transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);}
.md9_c00408{transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);}
.m84_c00408{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m75_c00408{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.med_c00408{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.mde_c00408{transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);}
.m61_c00408{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.244755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244755,0.000000,0.000000,0.250000,0,0);}
.mbd_c00408{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.me8_c00408{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m6d_c00408{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.mb2_c00408{transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);}
.mce_c00408{transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);}
.mc3_c00408{transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.294190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294190,0.000000,0.000000,0.250000,0,0);}
.mec_c00408{transform:matrix(0.338570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338570,0.000000,0.000000,0.250000,0,0);}
.m76_c00408{transform:matrix(0.342350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342350,0.000000,0.000000,0.250000,0,0);}
.m5e_c00408{transform:matrix(0.347540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347540,0.000000,0.000000,0.250000,0,0);}
.m8c_c00408{transform:matrix(0.394725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394725,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:0.000000px;}
.fc0_c00408{color:transparent;}
.fs7_c00408{font-size:53.550000px;}
.fse_c00408{font-size:54.600000px;}
.fsf_c00408{font-size:55.650000px;}
.fsb_c00408{font-size:58.800000px;}
.fsa_c00408{font-size:59.850000px;}
.fs9_c00408{font-size:60.900000px;}
.fs5_c00408{font-size:61.950000px;}
.fs3_c00408{font-size:63.000000px;}
.fs0_c00408{font-size:64.050000px;}
.fs4_c00408{font-size:65.100000px;}
.fs6_c00408{font-size:66.150000px;}
.fsc_c00408{font-size:67.200000px;}
.fs8_c00408{font-size:68.250000px;}
.fsd_c00408{font-size:70.350000px;}
.fs2_c00408{font-size:73.500000px;}
.fs1_c00408{font-size:128.100000px;}
.y0_c00408{bottom:0.000000px;}
.ycc_c00408{bottom:28.947000px;}
.ycb_c00408{bottom:46.716000px;}
.yc3_c00408{bottom:61.567500px;}
.yc4_c00408{bottom:61.651500px;}
.yc5_c00408{bottom:62.304000px;}
.yc6_c00408{bottom:62.566500px;}
.yc7_c00408{bottom:63.559500px;}
.yc8_c00408{bottom:63.802500px;}
.yc9_c00408{bottom:64.557000px;}
.yca_c00408{bottom:64.827000px;}
.yc2_c00408{bottom:79.758000px;}
.yb8_c00408{bottom:93.429000px;}
.yb9_c00408{bottom:93.684000px;}
.yba_c00408{bottom:93.982500px;}
.ybb_c00408{bottom:94.491000px;}
.ybc_c00408{bottom:94.767000px;}
.ybd_c00408{bottom:95.139000px;}
.ybe_c00408{bottom:95.386500px;}
.ybf_c00408{bottom:96.529500px;}
.yc0_c00408{bottom:97.314000px;}
.yc1_c00408{bottom:97.692000px;}
.yaf_c00408{bottom:106.936500px;}
.yb0_c00408{bottom:107.883000px;}
.yb1_c00408{bottom:108.519000px;}
.yb2_c00408{bottom:108.697500px;}
.yb3_c00408{bottom:109.810500px;}
.yb4_c00408{bottom:110.575500px;}
.yb5_c00408{bottom:111.834000px;}
.yb6_c00408{bottom:112.701000px;}
.yb7_c00408{bottom:113.224500px;}
.ya9_c00408{bottom:127.177500px;}
.yaa_c00408{bottom:127.527000px;}
.yab_c00408{bottom:128.217000px;}
.yac_c00408{bottom:128.350500px;}
.yad_c00408{bottom:129.562500px;}
.yae_c00408{bottom:129.886500px;}
.ya0_c00408{bottom:143.646000px;}
.ya1_c00408{bottom:143.742000px;}
.ya2_c00408{bottom:144.571500px;}
.ya3_c00408{bottom:144.988500px;}
.ya4_c00408{bottom:145.500000px;}
.ya5_c00408{bottom:146.463000px;}
.ya6_c00408{bottom:146.814000px;}
.ya7_c00408{bottom:147.049500px;}
.ya8_c00408{bottom:147.435000px;}
.y9a_c00408{bottom:160.387500px;}
.y9b_c00408{bottom:161.173500px;}
.y9c_c00408{bottom:162.493500px;}
.y9d_c00408{bottom:163.093500px;}
.y9e_c00408{bottom:163.473000px;}
.y9f_c00408{bottom:163.944000px;}
.y99_c00408{bottom:180.816000px;}
.y92_c00408{bottom:194.677500px;}
.y93_c00408{bottom:195.256500px;}
.y94_c00408{bottom:196.261500px;}
.y95_c00408{bottom:196.491000px;}
.y96_c00408{bottom:197.365500px;}
.y97_c00408{bottom:197.748000px;}
.y98_c00408{bottom:197.904000px;}
.y91_c00408{bottom:213.531000px;}
.y8a_c00408{bottom:228.696000px;}
.y8b_c00408{bottom:229.180500px;}
.y8c_c00408{bottom:229.890000px;}
.y8d_c00408{bottom:230.083500px;}
.y8e_c00408{bottom:230.790000px;}
.y8f_c00408{bottom:230.986500px;}
.y90_c00408{bottom:231.396000px;}
.y83_c00408{bottom:245.706000px;}
.y84_c00408{bottom:246.018000px;}
.y85_c00408{bottom:246.469500px;}
.y86_c00408{bottom:246.933000px;}
.y87_c00408{bottom:247.566000px;}
.y88_c00408{bottom:248.251500px;}
.y89_c00408{bottom:248.479500px;}
.y7b_c00408{bottom:263.796000px;}
.y7c_c00408{bottom:264.232500px;}
.y7d_c00408{bottom:265.084500px;}
.y7e_c00408{bottom:265.506000px;}
.y7f_c00408{bottom:266.188500px;}
.y80_c00408{bottom:266.418000px;}
.y81_c00408{bottom:266.584500px;}
.y82_c00408{bottom:266.970000px;}
.y74_c00408{bottom:279.999000px;}
.y75_c00408{bottom:280.449000px;}
.y76_c00408{bottom:281.545500px;}
.y77_c00408{bottom:282.573000px;}
.y78_c00408{bottom:282.897000px;}
.y79_c00408{bottom:283.743000px;}
.y7a_c00408{bottom:284.625000px;}
.y6c_c00408{bottom:298.089000px;}
.y6d_c00408{bottom:298.810500px;}
.y6e_c00408{bottom:298.974000px;}
.y6f_c00408{bottom:299.310000px;}
.y70_c00408{bottom:300.202500px;}
.y71_c00408{bottom:300.379500px;}
.y72_c00408{bottom:300.924000px;}
.y73_c00408{bottom:301.275000px;}
.y64_c00408{bottom:315.097500px;}
.y65_c00408{bottom:315.510000px;}
.y66_c00408{bottom:315.646500px;}
.y67_c00408{bottom:316.407000px;}
.y68_c00408{bottom:317.302500px;}
.y69_c00408{bottom:317.767500px;}
.y6a_c00408{bottom:318.142500px;}
.y6b_c00408{bottom:318.879000px;}
.y5e_c00408{bottom:331.300500px;}
.y5f_c00408{bottom:332.362500px;}
.y60_c00408{bottom:333.234000px;}
.y61_c00408{bottom:334.024500px;}
.y62_c00408{bottom:334.686000px;}
.y63_c00408{bottom:335.830500px;}
.y56_c00408{bottom:346.690500px;}
.y57_c00408{bottom:347.619000px;}
.y58_c00408{bottom:348.817500px;}
.y59_c00408{bottom:349.221000px;}
.y5a_c00408{bottom:350.658000px;}
.y5b_c00408{bottom:351.099000px;}
.y5c_c00408{bottom:352.441500px;}
.y5d_c00408{bottom:352.803000px;}
.y4e_c00408{bottom:365.049000px;}
.y4f_c00408{bottom:365.833500px;}
.y50_c00408{bottom:366.196500px;}
.y51_c00408{bottom:367.669500px;}
.y52_c00408{bottom:368.008500px;}
.y53_c00408{bottom:368.436000px;}
.y54_c00408{bottom:369.418500px;}
.y55_c00408{bottom:369.639000px;}
.y47_c00408{bottom:381.787500px;}
.y48_c00408{bottom:383.160000px;}
.y49_c00408{bottom:383.895000px;}
.y4a_c00408{bottom:384.639000px;}
.y4b_c00408{bottom:384.871500px;}
.y4c_c00408{bottom:385.843500px;}
.y4d_c00408{bottom:386.307000px;}
.y3d_c00408{bottom:397.446000px;}
.y3e_c00408{bottom:397.861500px;}
.y3f_c00408{bottom:397.998000px;}
.y40_c00408{bottom:398.194500px;}
.y41_c00408{bottom:398.616000px;}
.y42_c00408{bottom:398.859000px;}
.y43_c00408{bottom:399.064500px;}
.y44_c00408{bottom:399.562500px;}
.y45_c00408{bottom:400.029000px;}
.y46_c00408{bottom:400.531500px;}
.y36_c00408{bottom:412.569000px;}
.y37_c00408{bottom:413.097000px;}
.y38_c00408{bottom:413.437500px;}
.y39_c00408{bottom:414.577500px;}
.y3a_c00408{bottom:415.651500px;}
.y3b_c00408{bottom:416.910000px;}
.y3c_c00408{bottom:418.114500px;}
.y31_c00408{bottom:429.310500px;}
.y32_c00408{bottom:430.593000px;}
.y33_c00408{bottom:430.978500px;}
.y34_c00408{bottom:432.174000px;}
.y35_c00408{bottom:433.513500px;}
.y30_c00408{bottom:449.167500px;}
.y26_c00408{bottom:463.867500px;}
.y27_c00408{bottom:464.610000px;}
.y28_c00408{bottom:464.859000px;}
.y29_c00408{bottom:465.204000px;}
.y2a_c00408{bottom:465.529500px;}
.y2b_c00408{bottom:466.641000px;}
.y2c_c00408{bottom:467.148000px;}
.y2d_c00408{bottom:468.012000px;}
.y2e_c00408{bottom:468.421500px;}
.y2f_c00408{bottom:468.751500px;}
.y1f_c00408{bottom:479.802000px;}
.y20_c00408{bottom:480.706500px;}
.y21_c00408{bottom:481.309500px;}
.y22_c00408{bottom:482.934000px;}
.y23_c00408{bottom:483.694500px;}
.y24_c00408{bottom:485.053500px;}
.y25_c00408{bottom:485.638500px;}
.y18_c00408{bottom:498.696000px;}
.y19_c00408{bottom:499.543500px;}
.y1a_c00408{bottom:500.956500px;}
.y1b_c00408{bottom:501.190500px;}
.y1c_c00408{bottom:502.200000px;}
.y1d_c00408{bottom:502.617000px;}
.y1e_c00408{bottom:503.256000px;}
.y12_c00408{bottom:513.553500px;}
.y13_c00408{bottom:514.990500px;}
.y14_c00408{bottom:515.412000px;}
.y15_c00408{bottom:516.991500px;}
.y16_c00408{bottom:519.517500px;}
.y17_c00408{bottom:520.705500px;}
.ya_c00408{bottom:532.986000px;}
.yb_c00408{bottom:534.195000px;}
.yc_c00408{bottom:534.541500px;}
.yd_c00408{bottom:535.543500px;}
.ye_c00408{bottom:535.903500px;}
.yf_c00408{bottom:537.031500px;}
.y10_c00408{bottom:537.309000px;}
.y11_c00408{bottom:538.003500px;}
.y3_c00408{bottom:548.917500px;}
.y4_c00408{bottom:549.858000px;}
.y5_c00408{bottom:550.309500px;}
.y6_c00408{bottom:551.941500px;}
.y7_c00408{bottom:552.364500px;}
.y8_c00408{bottom:553.533000px;}
.y9_c00408{bottom:555.195000px;}
.y2_c00408{bottom:563.251500px;}
.y1_c00408{bottom:587.371500px;}
.h9_c00408{height:53.550000px;}
.h10_c00408{height:54.600000px;}
.h11_c00408{height:55.650000px;}
.hd_c00408{height:58.800000px;}
.hc_c00408{height:59.850000px;}
.hb_c00408{height:60.900000px;}
.h7_c00408{height:61.950000px;}
.h5_c00408{height:63.000000px;}
.h2_c00408{height:64.050000px;}
.h6_c00408{height:65.100000px;}
.h8_c00408{height:66.150000px;}
.he_c00408{height:67.200000px;}
.ha_c00408{height:68.250000px;}
.hf_c00408{height:70.350000px;}
.h4_c00408{height:73.500000px;}
.h3_c00408{height:128.100000px;}
.h0_c00408{height:613.170000px;}
.h1_c00408{height:613.500000px;}
.w0_c00408{width:359.100000px;}
.w1_c00408{width:359.250000px;}
.x0_c00408{left:0.000000px;}
.x4_c00408{left:15.675000px;}
.x1d_c00408{left:16.804500px;}
.xb_c00408{left:18.559500px;}
.x49_c00408{left:20.118000px;}
.x59_c00408{left:22.066500px;}
.x60_c00408{left:23.361000px;}
.x4f_c00408{left:24.982500px;}
.x55_c00408{left:28.888500px;}
.x6f_c00408{left:35.245500px;}
.x70_c00408{left:39.685500px;}
.x65_c00408{left:40.710000px;}
.x2c_c00408{left:44.508000px;}
.x40_c00408{left:47.404500px;}
.x4a_c00408{left:48.471000px;}
.x5f_c00408{left:51.712500px;}
.x5_c00408{left:56.572500px;}
.x23_c00408{left:58.690500px;}
.x61_c00408{left:59.751000px;}
.x2d_c00408{left:61.537500px;}
.x36_c00408{left:65.229000px;}
.x17_c00408{left:69.318000px;}
.x24_c00408{left:72.553500px;}
.x1_c00408{left:74.520000px;}
.x6_c00408{left:76.179000px;}
.x56_c00408{left:78.028500px;}
.x5c_c00408{left:79.491000px;}
.x1e_c00408{left:82.392000px;}
.x62_c00408{left:84.205500px;}
.xc_c00408{left:85.684500px;}
.x4b_c00408{left:89.515500px;}
.x13_c00408{left:90.793500px;}
.x66_c00408{left:94.600500px;}
.x27_c00408{left:96.657000px;}
.xd_c00408{left:104.946000px;}
.x29_c00408{left:106.897500px;}
.x25_c00408{left:109.855500px;}
.x41_c00408{left:111.412500px;}
.x67_c00408{left:113.029500px;}
.x3a_c00408{left:115.519500px;}
.x2e_c00408{left:118.516500px;}
.x3d_c00408{left:120.621000px;}
.x2f_c00408{left:124.863000px;}
.x4c_c00408{left:131.640000px;}
.x3_c00408{left:133.591500px;}
.x47_c00408{left:136.485000px;}
.x68_c00408{left:137.868000px;}
.x51_c00408{left:140.670000px;}
.x7_c00408{left:147.151500px;}
.x6c_c00408{left:148.495500px;}
.x33_c00408{left:150.499500px;}
.x14_c00408{left:151.545000px;}
.x1f_c00408{left:153.013500px;}
.x69_c00408{left:154.326000px;}
.x57_c00408{left:155.788500px;}
.x18_c00408{left:157.590000px;}
.xe_c00408{left:160.596000px;}
.x3e_c00408{left:162.207000px;}
.x63_c00408{left:163.290000px;}
.x8_c00408{left:165.526500px;}
.x2_c00408{left:168.480000px;}
.x2a_c00408{left:169.800000px;}
.x19_c00408{left:172.183500px;}
.x37_c00408{left:173.229000px;}
.x42_c00408{left:175.398000px;}
.xf_c00408{left:180.574500px;}
.x44_c00408{left:182.127000px;}
.x20_c00408{left:186.048000px;}
.x4d_c00408{left:189.154500px;}
.x38_c00408{left:193.212000px;}
.x58_c00408{left:194.668500px;}
.x34_c00408{left:196.984500px;}
.x26_c00408{left:199.746000px;}
.x5a_c00408{left:202.390500px;}
.x5d_c00408{left:205.629000px;}
.x43_c00408{left:208.620000px;}
.x30_c00408{left:210.960000px;}
.x9_c00408{left:216.303000px;}
.x28_c00408{left:217.617000px;}
.x3b_c00408{left:219.238500px;}
.x45_c00408{left:221.037000px;}
.x52_c00408{left:224.910000px;}
.x6d_c00408{left:226.525500px;}
.x5b_c00408{left:227.724000px;}
.x5e_c00408{left:229.041000px;}
.x6a_c00408{left:230.490000px;}
.x50_c00408{left:233.157000px;}
.x1a_c00408{left:235.278000px;}
.x48_c00408{left:236.877000px;}
.x2b_c00408{left:240.295500px;}
.x10_c00408{left:243.223500px;}
.x21_c00408{left:245.158500px;}
.x15_c00408{left:248.673000px;}
.x4e_c00408{left:251.520000px;}
.x31_c00408{left:253.351500px;}
.x3f_c00408{left:257.265000px;}
.x11_c00408{left:258.637500px;}
.x53_c00408{left:260.280000px;}
.x1b_c00408{left:261.307500px;}
.x64_c00408{left:265.200000px;}
.x71_c00408{left:268.105500px;}
.x22_c00408{left:270.580500px;}
.x35_c00408{left:272.269500px;}
.x73_c00408{left:274.585500px;}
.x39_c00408{left:276.100500px;}
.x3c_c00408{left:280.246500px;}
.x6b_c00408{left:282.801000px;}
.xa_c00408{left:288.538500px;}
.x54_c00408{left:289.587000px;}
.x72_c00408{left:291.865500px;}
.x16_c00408{left:294.378000px;}
.x12_c00408{left:297.255000px;}
.x32_c00408{left:299.035500px;}
.x1c_c00408{left:301.266000px;}
.x6e_c00408{left:304.555500px;}
.x46_c00408{left:308.514000px;}
.x74_c00408{left:309.685500px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs7_c00408{font-size:47.600000pt;}
.fse_c00408{font-size:48.533333pt;}
.fsf_c00408{font-size:49.466667pt;}
.fsb_c00408{font-size:52.266667pt;}
.fsa_c00408{font-size:53.200000pt;}
.fs9_c00408{font-size:54.133333pt;}
.fs5_c00408{font-size:55.066667pt;}
.fs3_c00408{font-size:56.000000pt;}
.fs0_c00408{font-size:56.933333pt;}
.fs4_c00408{font-size:57.866667pt;}
.fs6_c00408{font-size:58.800000pt;}
.fsc_c00408{font-size:59.733333pt;}
.fs8_c00408{font-size:60.666667pt;}
.fsd_c00408{font-size:62.533333pt;}
.fs2_c00408{font-size:65.333333pt;}
.fs1_c00408{font-size:113.866667pt;}
.y0_c00408{bottom:0.000000pt;}
.ycc_c00408{bottom:25.730667pt;}
.ycb_c00408{bottom:41.525333pt;}
.yc3_c00408{bottom:54.726667pt;}
.yc4_c00408{bottom:54.801333pt;}
.yc5_c00408{bottom:55.381333pt;}
.yc6_c00408{bottom:55.614667pt;}
.yc7_c00408{bottom:56.497333pt;}
.yc8_c00408{bottom:56.713333pt;}
.yc9_c00408{bottom:57.384000pt;}
.yca_c00408{bottom:57.624000pt;}
.yc2_c00408{bottom:70.896000pt;}
.yb8_c00408{bottom:83.048000pt;}
.yb9_c00408{bottom:83.274667pt;}
.yba_c00408{bottom:83.540000pt;}
.ybb_c00408{bottom:83.992000pt;}
.ybc_c00408{bottom:84.237333pt;}
.ybd_c00408{bottom:84.568000pt;}
.ybe_c00408{bottom:84.788000pt;}
.ybf_c00408{bottom:85.804000pt;}
.yc0_c00408{bottom:86.501333pt;}
.yc1_c00408{bottom:86.837333pt;}
.yaf_c00408{bottom:95.054667pt;}
.yb0_c00408{bottom:95.896000pt;}
.yb1_c00408{bottom:96.461333pt;}
.yb2_c00408{bottom:96.620000pt;}
.yb3_c00408{bottom:97.609333pt;}
.yb4_c00408{bottom:98.289333pt;}
.yb5_c00408{bottom:99.408000pt;}
.yb6_c00408{bottom:100.178667pt;}
.yb7_c00408{bottom:100.644000pt;}
.ya9_c00408{bottom:113.046667pt;}
.yaa_c00408{bottom:113.357333pt;}
.yab_c00408{bottom:113.970667pt;}
.yac_c00408{bottom:114.089333pt;}
.yad_c00408{bottom:115.166667pt;}
.yae_c00408{bottom:115.454667pt;}
.ya0_c00408{bottom:127.685333pt;}
.ya1_c00408{bottom:127.770667pt;}
.ya2_c00408{bottom:128.508000pt;}
.ya3_c00408{bottom:128.878667pt;}
.ya4_c00408{bottom:129.333333pt;}
.ya5_c00408{bottom:130.189333pt;}
.ya6_c00408{bottom:130.501333pt;}
.ya7_c00408{bottom:130.710667pt;}
.ya8_c00408{bottom:131.053333pt;}
.y9a_c00408{bottom:142.566667pt;}
.y9b_c00408{bottom:143.265333pt;}
.y9c_c00408{bottom:144.438667pt;}
.y9d_c00408{bottom:144.972000pt;}
.y9e_c00408{bottom:145.309333pt;}
.y9f_c00408{bottom:145.728000pt;}
.y99_c00408{bottom:160.725333pt;}
.y92_c00408{bottom:173.046667pt;}
.y93_c00408{bottom:173.561333pt;}
.y94_c00408{bottom:174.454667pt;}
.y95_c00408{bottom:174.658667pt;}
.y96_c00408{bottom:175.436000pt;}
.y97_c00408{bottom:175.776000pt;}
.y98_c00408{bottom:175.914667pt;}
.y91_c00408{bottom:189.805333pt;}
.y8a_c00408{bottom:203.285333pt;}
.y8b_c00408{bottom:203.716000pt;}
.y8c_c00408{bottom:204.346667pt;}
.y8d_c00408{bottom:204.518667pt;}
.y8e_c00408{bottom:205.146667pt;}
.y8f_c00408{bottom:205.321333pt;}
.y90_c00408{bottom:205.685333pt;}
.y83_c00408{bottom:218.405333pt;}
.y84_c00408{bottom:218.682667pt;}
.y85_c00408{bottom:219.084000pt;}
.y86_c00408{bottom:219.496000pt;}
.y87_c00408{bottom:220.058667pt;}
.y88_c00408{bottom:220.668000pt;}
.y89_c00408{bottom:220.870667pt;}
.y7b_c00408{bottom:234.485333pt;}
.y7c_c00408{bottom:234.873333pt;}
.y7d_c00408{bottom:235.630667pt;}
.y7e_c00408{bottom:236.005333pt;}
.y7f_c00408{bottom:236.612000pt;}
.y80_c00408{bottom:236.816000pt;}
.y81_c00408{bottom:236.964000pt;}
.y82_c00408{bottom:237.306667pt;}
.y74_c00408{bottom:248.888000pt;}
.y75_c00408{bottom:249.288000pt;}
.y76_c00408{bottom:250.262667pt;}
.y77_c00408{bottom:251.176000pt;}
.y78_c00408{bottom:251.464000pt;}
.y79_c00408{bottom:252.216000pt;}
.y7a_c00408{bottom:253.000000pt;}
.y6c_c00408{bottom:264.968000pt;}
.y6d_c00408{bottom:265.609333pt;}
.y6e_c00408{bottom:265.754667pt;}
.y6f_c00408{bottom:266.053333pt;}
.y70_c00408{bottom:266.846667pt;}
.y71_c00408{bottom:267.004000pt;}
.y72_c00408{bottom:267.488000pt;}
.y73_c00408{bottom:267.800000pt;}
.y64_c00408{bottom:280.086667pt;}
.y65_c00408{bottom:280.453333pt;}
.y66_c00408{bottom:280.574667pt;}
.y67_c00408{bottom:281.250667pt;}
.y68_c00408{bottom:282.046667pt;}
.y69_c00408{bottom:282.460000pt;}
.y6a_c00408{bottom:282.793333pt;}
.y6b_c00408{bottom:283.448000pt;}
.y5e_c00408{bottom:294.489333pt;}
.y5f_c00408{bottom:295.433333pt;}
.y60_c00408{bottom:296.208000pt;}
.y61_c00408{bottom:296.910667pt;}
.y62_c00408{bottom:297.498667pt;}
.y63_c00408{bottom:298.516000pt;}
.y56_c00408{bottom:308.169333pt;}
.y57_c00408{bottom:308.994667pt;}
.y58_c00408{bottom:310.060000pt;}
.y59_c00408{bottom:310.418667pt;}
.y5a_c00408{bottom:311.696000pt;}
.y5b_c00408{bottom:312.088000pt;}
.y5c_c00408{bottom:313.281333pt;}
.y5d_c00408{bottom:313.602667pt;}
.y4e_c00408{bottom:324.488000pt;}
.y4f_c00408{bottom:325.185333pt;}
.y50_c00408{bottom:325.508000pt;}
.y51_c00408{bottom:326.817333pt;}
.y52_c00408{bottom:327.118667pt;}
.y53_c00408{bottom:327.498667pt;}
.y54_c00408{bottom:328.372000pt;}
.y55_c00408{bottom:328.568000pt;}
.y47_c00408{bottom:339.366667pt;}
.y48_c00408{bottom:340.586667pt;}
.y49_c00408{bottom:341.240000pt;}
.y4a_c00408{bottom:341.901333pt;}
.y4b_c00408{bottom:342.108000pt;}
.y4c_c00408{bottom:342.972000pt;}
.y4d_c00408{bottom:343.384000pt;}
.y3d_c00408{bottom:353.285333pt;}
.y3e_c00408{bottom:353.654667pt;}
.y3f_c00408{bottom:353.776000pt;}
.y40_c00408{bottom:353.950667pt;}
.y41_c00408{bottom:354.325333pt;}
.y42_c00408{bottom:354.541333pt;}
.y43_c00408{bottom:354.724000pt;}
.y44_c00408{bottom:355.166667pt;}
.y45_c00408{bottom:355.581333pt;}
.y46_c00408{bottom:356.028000pt;}
.y36_c00408{bottom:366.728000pt;}
.y37_c00408{bottom:367.197333pt;}
.y38_c00408{bottom:367.500000pt;}
.y39_c00408{bottom:368.513333pt;}
.y3a_c00408{bottom:369.468000pt;}
.y3b_c00408{bottom:370.586667pt;}
.y3c_c00408{bottom:371.657333pt;}
.y31_c00408{bottom:381.609333pt;}
.y32_c00408{bottom:382.749333pt;}
.y33_c00408{bottom:383.092000pt;}
.y34_c00408{bottom:384.154667pt;}
.y35_c00408{bottom:385.345333pt;}
.y30_c00408{bottom:399.260000pt;}
.y26_c00408{bottom:412.326667pt;}
.y27_c00408{bottom:412.986667pt;}
.y28_c00408{bottom:413.208000pt;}
.y29_c00408{bottom:413.514667pt;}
.y2a_c00408{bottom:413.804000pt;}
.y2b_c00408{bottom:414.792000pt;}
.y2c_c00408{bottom:415.242667pt;}
.y2d_c00408{bottom:416.010667pt;}
.y2e_c00408{bottom:416.374667pt;}
.y2f_c00408{bottom:416.668000pt;}
.y1f_c00408{bottom:426.490667pt;}
.y20_c00408{bottom:427.294667pt;}
.y21_c00408{bottom:427.830667pt;}
.y22_c00408{bottom:429.274667pt;}
.y23_c00408{bottom:429.950667pt;}
.y24_c00408{bottom:431.158667pt;}
.y25_c00408{bottom:431.678667pt;}
.y18_c00408{bottom:443.285333pt;}
.y19_c00408{bottom:444.038667pt;}
.y1a_c00408{bottom:445.294667pt;}
.y1b_c00408{bottom:445.502667pt;}
.y1c_c00408{bottom:446.400000pt;}
.y1d_c00408{bottom:446.770667pt;}
.y1e_c00408{bottom:447.338667pt;}
.y12_c00408{bottom:456.492000pt;}
.y13_c00408{bottom:457.769333pt;}
.y14_c00408{bottom:458.144000pt;}
.y15_c00408{bottom:459.548000pt;}
.y16_c00408{bottom:461.793333pt;}
.y17_c00408{bottom:462.849333pt;}
.ya_c00408{bottom:473.765333pt;}
.yb_c00408{bottom:474.840000pt;}
.yc_c00408{bottom:475.148000pt;}
.yd_c00408{bottom:476.038667pt;}
.ye_c00408{bottom:476.358667pt;}
.yf_c00408{bottom:477.361333pt;}
.y10_c00408{bottom:477.608000pt;}
.y11_c00408{bottom:478.225333pt;}
.y3_c00408{bottom:487.926667pt;}
.y4_c00408{bottom:488.762667pt;}
.y5_c00408{bottom:489.164000pt;}
.y6_c00408{bottom:490.614667pt;}
.y7_c00408{bottom:490.990667pt;}
.y8_c00408{bottom:492.029333pt;}
.y9_c00408{bottom:493.506667pt;}
.y2_c00408{bottom:500.668000pt;}
.y1_c00408{bottom:522.108000pt;}
.h9_c00408{height:47.600000pt;}
.h10_c00408{height:48.533333pt;}
.h11_c00408{height:49.466667pt;}
.hd_c00408{height:52.266667pt;}
.hc_c00408{height:53.200000pt;}
.hb_c00408{height:54.133333pt;}
.h7_c00408{height:55.066667pt;}
.h5_c00408{height:56.000000pt;}
.h2_c00408{height:56.933333pt;}
.h6_c00408{height:57.866667pt;}
.h8_c00408{height:58.800000pt;}
.he_c00408{height:59.733333pt;}
.ha_c00408{height:60.666667pt;}
.hf_c00408{height:62.533333pt;}
.h4_c00408{height:65.333333pt;}
.h3_c00408{height:113.866667pt;}
.h0_c00408{height:545.040000pt;}
.h1_c00408{height:545.333333pt;}
.w0_c00408{width:319.200000pt;}
.w1_c00408{width:319.333333pt;}
.x0_c00408{left:0.000000pt;}
.x4_c00408{left:13.933333pt;}
.x1d_c00408{left:14.937333pt;}
.xb_c00408{left:16.497333pt;}
.x49_c00408{left:17.882667pt;}
.x59_c00408{left:19.614667pt;}
.x60_c00408{left:20.765333pt;}
.x4f_c00408{left:22.206667pt;}
.x55_c00408{left:25.678667pt;}
.x6f_c00408{left:31.329333pt;}
.x70_c00408{left:35.276000pt;}
.x65_c00408{left:36.186667pt;}
.x2c_c00408{left:39.562667pt;}
.x40_c00408{left:42.137333pt;}
.x4a_c00408{left:43.085333pt;}
.x5f_c00408{left:45.966667pt;}
.x5_c00408{left:50.286667pt;}
.x23_c00408{left:52.169333pt;}
.x61_c00408{left:53.112000pt;}
.x2d_c00408{left:54.700000pt;}
.x36_c00408{left:57.981333pt;}
.x17_c00408{left:61.616000pt;}
.x24_c00408{left:64.492000pt;}
.x1_c00408{left:66.240000pt;}
.x6_c00408{left:67.714667pt;}
.x56_c00408{left:69.358667pt;}
.x5c_c00408{left:70.658667pt;}
.x1e_c00408{left:73.237333pt;}
.x62_c00408{left:74.849333pt;}
.xc_c00408{left:76.164000pt;}
.x4b_c00408{left:79.569333pt;}
.x13_c00408{left:80.705333pt;}
.x66_c00408{left:84.089333pt;}
.x27_c00408{left:85.917333pt;}
.xd_c00408{left:93.285333pt;}
.x29_c00408{left:95.020000pt;}
.x25_c00408{left:97.649333pt;}
.x41_c00408{left:99.033333pt;}
.x67_c00408{left:100.470667pt;}
.x3a_c00408{left:102.684000pt;}
.x2e_c00408{left:105.348000pt;}
.x3d_c00408{left:107.218667pt;}
.x2f_c00408{left:110.989333pt;}
.x4c_c00408{left:117.013333pt;}
.x3_c00408{left:118.748000pt;}
.x47_c00408{left:121.320000pt;}
.x68_c00408{left:122.549333pt;}
.x51_c00408{left:125.040000pt;}
.x7_c00408{left:130.801333pt;}
.x6c_c00408{left:131.996000pt;}
.x33_c00408{left:133.777333pt;}
.x14_c00408{left:134.706667pt;}
.x1f_c00408{left:136.012000pt;}
.x69_c00408{left:137.178667pt;}
.x57_c00408{left:138.478667pt;}
.x18_c00408{left:140.080000pt;}
.xe_c00408{left:142.752000pt;}
.x3e_c00408{left:144.184000pt;}
.x63_c00408{left:145.146667pt;}
.x8_c00408{left:147.134667pt;}
.x2_c00408{left:149.760000pt;}
.x2a_c00408{left:150.933333pt;}
.x19_c00408{left:153.052000pt;}
.x37_c00408{left:153.981333pt;}
.x42_c00408{left:155.909333pt;}
.xf_c00408{left:160.510667pt;}
.x44_c00408{left:161.890667pt;}
.x20_c00408{left:165.376000pt;}
.x4d_c00408{left:168.137333pt;}
.x38_c00408{left:171.744000pt;}
.x58_c00408{left:173.038667pt;}
.x34_c00408{left:175.097333pt;}
.x26_c00408{left:177.552000pt;}
.x5a_c00408{left:179.902667pt;}
.x5d_c00408{left:182.781333pt;}
.x43_c00408{left:185.440000pt;}
.x30_c00408{left:187.520000pt;}
.x9_c00408{left:192.269333pt;}
.x28_c00408{left:193.437333pt;}
.x3b_c00408{left:194.878667pt;}
.x45_c00408{left:196.477333pt;}
.x52_c00408{left:199.920000pt;}
.x6d_c00408{left:201.356000pt;}
.x5b_c00408{left:202.421333pt;}
.x5e_c00408{left:203.592000pt;}
.x6a_c00408{left:204.880000pt;}
.x50_c00408{left:207.250667pt;}
.x1a_c00408{left:209.136000pt;}
.x48_c00408{left:210.557333pt;}
.x2b_c00408{left:213.596000pt;}
.x10_c00408{left:216.198667pt;}
.x21_c00408{left:217.918667pt;}
.x15_c00408{left:221.042667pt;}
.x4e_c00408{left:223.573333pt;}
.x31_c00408{left:225.201333pt;}
.x3f_c00408{left:228.680000pt;}
.x11_c00408{left:229.900000pt;}
.x53_c00408{left:231.360000pt;}
.x1b_c00408{left:232.273333pt;}
.x64_c00408{left:235.733333pt;}
.x71_c00408{left:238.316000pt;}
.x22_c00408{left:240.516000pt;}
.x35_c00408{left:242.017333pt;}
.x73_c00408{left:244.076000pt;}
.x39_c00408{left:245.422667pt;}
.x3c_c00408{left:249.108000pt;}
.x6b_c00408{left:251.378667pt;}
.xa_c00408{left:256.478667pt;}
.x54_c00408{left:257.410667pt;}
.x72_c00408{left:259.436000pt;}
.x16_c00408{left:261.669333pt;}
.x12_c00408{left:264.226667pt;}
.x32_c00408{left:265.809333pt;}
.x1c_c00408{left:267.792000pt;}
.x6e_c00408{left:270.716000pt;}
.x46_c00408{left:274.234667pt;}
.x74_c00408{left:275.276000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00409 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00409 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00409 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00409 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00409.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00409;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00409{transform:matrix(0.016529,0.000198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.016529,0.000198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.016529,0.000198,-0.003000,0.249982,0,0);}
.mc_c00409{transform:matrix(0.017044,0.000205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.017044,0.000205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.017044,0.000205,-0.003000,0.249982,0,0);}
.m1_c00409{transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00409{transform:matrix(0.079919,0.000959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.079919,0.000959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.079919,0.000959,-0.003000,0.249982,0,0);}
.m16_c00409{transform:matrix(0.085814,0.001030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.085814,0.001030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.085814,0.001030,-0.003000,0.249982,0,0);}
.m84_c00409{transform:matrix(0.129461,0.001554,-0.003000,0.249982,0,0);-ms-transform:matrix(0.129461,0.001554,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.129461,0.001554,-0.003000,0.249982,0,0);}
.me2_c00409{transform:matrix(0.129494,0.001683,-0.003250,0.249979,0,0);-ms-transform:matrix(0.129494,0.001683,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.129494,0.001683,-0.003250,0.249979,0,0);}
.md2_c00409{transform:matrix(0.139805,0.001678,-0.003000,0.249982,0,0);-ms-transform:matrix(0.139805,0.001678,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.139805,0.001678,-0.003000,0.249982,0,0);}
.mc8_c00409{transform:matrix(0.151034,0.001812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151034,0.001812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151034,0.001812,-0.003000,0.249982,0,0);}
.mc9_c00409{transform:matrix(0.151554,0.001819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151554,0.001819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151554,0.001819,-0.003000,0.249982,0,0);}
.m65_c00409{transform:matrix(0.152934,0.001835,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152934,0.001835,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152934,0.001835,-0.003000,0.249982,0,0);}
.m62_c00409{transform:matrix(0.153524,0.001842,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153524,0.001842,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153524,0.001842,-0.003000,0.249982,0,0);}
.m18_c00409{transform:matrix(0.153594,0.001843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153594,0.001843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153594,0.001843,-0.003000,0.249982,0,0);}
.m5_c00409{transform:matrix(0.155429,0.001865,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155429,0.001865,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155429,0.001865,-0.003000,0.249982,0,0);}
.me8_c00409{transform:matrix(0.156887,0.002040,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156887,0.002040,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156887,0.002040,-0.003250,0.249979,0,0);}
.md_c00409{transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);}
.m9_c00409{transform:matrix(0.157809,0.001894,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157809,0.001894,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157809,0.001894,-0.003000,0.249982,0,0);}
.m19_c00409{transform:matrix(0.158494,0.001902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158494,0.001902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158494,0.001902,-0.003000,0.249982,0,0);}
.m30_c00409{transform:matrix(0.159329,0.001912,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159329,0.001912,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159329,0.001912,-0.003000,0.249982,0,0);}
.m2c_c00409{transform:matrix(0.161068,0.001933,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161068,0.001933,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161068,0.001933,-0.003000,0.249982,0,0);}
.md3_c00409{transform:matrix(0.161508,0.001938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161508,0.001938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161508,0.001938,-0.003000,0.249982,0,0);}
.mc5_c00409{transform:matrix(0.161528,0.001938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161528,0.001938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161528,0.001938,-0.003000,0.249982,0,0);}
.m64_c00409{transform:matrix(0.163973,0.001968,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163973,0.001968,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163973,0.001968,-0.003000,0.249982,0,0);}
.m39_c00409{transform:matrix(0.164233,0.001971,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164233,0.001971,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164233,0.001971,-0.003000,0.249982,0,0);}
.ma0_c00409{transform:matrix(0.164478,0.001974,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164478,0.001974,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164478,0.001974,-0.003000,0.249982,0,0);}
.m9a_c00409{transform:matrix(0.164628,0.001976,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164628,0.001976,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164628,0.001976,-0.003000,0.249982,0,0);}
.m70_c00409{transform:matrix(0.165493,0.001986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165493,0.001986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165493,0.001986,-0.003000,0.249982,0,0);}
.m59_c00409{transform:matrix(0.166058,0.001993,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166058,0.001993,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166058,0.001993,-0.003000,0.249982,0,0);}
.m5c_c00409{transform:matrix(0.166228,0.001995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166228,0.001995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166228,0.001995,-0.003000,0.249982,0,0);}
.m68_c00409{transform:matrix(0.166583,0.001999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166583,0.001999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166583,0.001999,-0.003000,0.249982,0,0);}
.md8_c00409{transform:matrix(0.166783,0.002001,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166783,0.002001,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166783,0.002001,-0.003000,0.249982,0,0);}
.m91_c00409{transform:matrix(0.166793,0.002002,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166793,0.002002,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166793,0.002002,-0.003000,0.249982,0,0);}
.mb2_c00409{transform:matrix(0.167968,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167968,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167968,0.002016,-0.003000,0.249982,0,0);}
.ma2_c00409{transform:matrix(0.168073,0.002017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168073,0.002017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168073,0.002017,-0.003000,0.249982,0,0);}
.m82_c00409{transform:matrix(0.168658,0.002024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168658,0.002024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168658,0.002024,-0.003000,0.249982,0,0);}
.mb6_c00409{transform:matrix(0.168728,0.002025,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168728,0.002025,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168728,0.002025,-0.003000,0.249982,0,0);}
.mba_c00409{transform:matrix(0.169183,0.002030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169183,0.002030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169183,0.002030,-0.003000,0.249982,0,0);}
.m14_c00409{transform:matrix(0.169453,0.002033,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169453,0.002033,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169453,0.002033,-0.003000,0.249982,0,0);}
.m80_c00409{transform:matrix(0.169933,0.002039,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169933,0.002039,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169933,0.002039,-0.003000,0.249982,0,0);}
.m0_c00409{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.170103,0.002041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170103,0.002041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170103,0.002041,-0.003000,0.249982,0,0);}
.md0_c00409{transform:matrix(0.171073,0.002053,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171073,0.002053,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171073,0.002053,-0.003000,0.249982,0,0);}
.m8a_c00409{transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171303,0.002056,-0.003000,0.249982,0,0);}
.m17_c00409{transform:matrix(0.171473,0.002058,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171473,0.002058,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171473,0.002058,-0.003000,0.249982,0,0);}
.mab_c00409{transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171568,0.002059,-0.003000,0.249982,0,0);}
.mbc_c00409{transform:matrix(0.172523,0.002070,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172523,0.002070,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172523,0.002070,-0.003000,0.249982,0,0);}
.mb5_c00409{transform:matrix(0.172673,0.002072,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172673,0.002072,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172673,0.002072,-0.003000,0.249982,0,0);}
.m9e_c00409{transform:matrix(0.172803,0.002074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172803,0.002074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172803,0.002074,-0.003000,0.249982,0,0);}
.me4_c00409{transform:matrix(0.174670,0.002271,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174670,0.002271,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174670,0.002271,-0.003250,0.249979,0,0);}
.m3f_c00409{transform:matrix(0.174952,0.002099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174952,0.002099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174952,0.002099,-0.003000,0.249982,0,0);}
.mcc_c00409{transform:matrix(0.175042,0.002101,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175042,0.002101,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175042,0.002101,-0.003000,0.249982,0,0);}
.m8_c00409{transform:matrix(0.175102,0.002101,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175102,0.002101,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175102,0.002101,-0.003000,0.249982,0,0);}
.mc4_c00409{transform:matrix(0.175192,0.002102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175192,0.002102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175192,0.002102,-0.003000,0.249982,0,0);}
.m1e_c00409{transform:matrix(0.176007,0.002112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176007,0.002112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176007,0.002112,-0.003000,0.249982,0,0);}
.mb_c00409{transform:matrix(0.176482,0.002118,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176482,0.002118,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176482,0.002118,-0.003000,0.249982,0,0);}
.m56_c00409{transform:matrix(0.176742,0.002121,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176742,0.002121,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176742,0.002121,-0.003000,0.249982,0,0);}
.m61_c00409{transform:matrix(0.177287,0.002127,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177287,0.002127,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177287,0.002127,-0.003000,0.249982,0,0);}
.m1b_c00409{transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);}
.md7_c00409{transform:matrix(0.177627,0.002132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177627,0.002132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177627,0.002132,-0.003000,0.249982,0,0);}
.m5a_c00409{transform:matrix(0.177707,0.002132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177707,0.002132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177707,0.002132,-0.003000,0.249982,0,0);}
.md6_c00409{transform:matrix(0.177792,0.002134,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177792,0.002134,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177792,0.002134,-0.003000,0.249982,0,0);}
.meb_c00409{transform:matrix(0.177970,0.002314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177970,0.002314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177970,0.002314,-0.003250,0.249979,0,0);}
.mbd_c00409{transform:matrix(0.178317,0.002140,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178317,0.002140,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178317,0.002140,-0.003000,0.249982,0,0);}
.mec_c00409{transform:matrix(0.178530,0.002321,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178530,0.002321,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178530,0.002321,-0.003250,0.249979,0,0);}
.mc7_c00409{transform:matrix(0.178692,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178692,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178692,0.002144,-0.003000,0.249982,0,0);}
.md9_c00409{transform:matrix(0.179010,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179010,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179010,0.002327,-0.003250,0.249979,0,0);}
.m44_c00409{transform:matrix(0.179027,0.002148,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179027,0.002148,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179027,0.002148,-0.003000,0.249982,0,0);}
.mdf_c00409{transform:matrix(0.179030,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179030,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179030,0.002327,-0.003250,0.249979,0,0);}
.ma9_c00409{transform:matrix(0.179117,0.002149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179117,0.002149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179117,0.002149,-0.003000,0.249982,0,0);}
.me1_c00409{transform:matrix(0.179215,0.002330,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179215,0.002330,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179215,0.002330,-0.003250,0.249979,0,0);}
.m8b_c00409{transform:matrix(0.179492,0.002154,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179492,0.002154,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179492,0.002154,-0.003000,0.249982,0,0);}
.m3c_c00409{transform:matrix(0.180472,0.002166,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180472,0.002166,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180472,0.002166,-0.003000,0.249982,0,0);}
.m3d_c00409{transform:matrix(0.180667,0.002168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180667,0.002168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180667,0.002168,-0.003000,0.249982,0,0);}
.me6_c00409{transform:matrix(0.180760,0.002350,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180760,0.002350,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180760,0.002350,-0.003250,0.249979,0,0);}
.me0_c00409{transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);}
.m5b_c00409{transform:matrix(0.181352,0.002176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181352,0.002176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181352,0.002176,-0.003000,0.249982,0,0);}
.m2a_c00409{transform:matrix(0.181382,0.002177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181382,0.002177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181382,0.002177,-0.003000,0.249982,0,0);}
.m34_c00409{transform:matrix(0.181807,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181807,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181807,0.002182,-0.003000,0.249982,0,0);}
.m8d_c00409{transform:matrix(0.182112,0.002185,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182112,0.002185,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182112,0.002185,-0.003000,0.249982,0,0);}
.me9_c00409{transform:matrix(0.182115,0.002367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182115,0.002367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182115,0.002367,-0.003250,0.249979,0,0);}
.m6d_c00409{transform:matrix(0.182487,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182487,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182487,0.002190,-0.003000,0.249982,0,0);}
.m9f_c00409{transform:matrix(0.182672,0.002192,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182672,0.002192,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182672,0.002192,-0.003000,0.249982,0,0);}
.ma4_c00409{transform:matrix(0.182827,0.002194,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182827,0.002194,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182827,0.002194,-0.003000,0.249982,0,0);}
.mc6_c00409{transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183092,0.002197,-0.003000,0.249982,0,0);}
.m25_c00409{transform:matrix(0.183132,0.002198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183132,0.002198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183132,0.002198,-0.003000,0.249982,0,0);}
.m2_c00409{transform:matrix(0.183157,0.002198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183157,0.002198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183157,0.002198,-0.003000,0.249982,0,0);}
.mbe_c00409{transform:matrix(0.183267,0.002199,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183267,0.002199,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183267,0.002199,-0.003000,0.249982,0,0);}
.m57_c00409{transform:matrix(0.183357,0.002200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183357,0.002200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183357,0.002200,-0.003000,0.249982,0,0);}
.mcd_c00409{transform:matrix(0.184007,0.002208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184007,0.002208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184007,0.002208,-0.003000,0.249982,0,0);}
.mc2_c00409{transform:matrix(0.184382,0.002213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184382,0.002213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184382,0.002213,-0.003000,0.249982,0,0);}
.mb1_c00409{transform:matrix(0.184677,0.002216,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184677,0.002216,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184677,0.002216,-0.003000,0.249982,0,0);}
.mc3_c00409{transform:matrix(0.184947,0.002219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184947,0.002219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184947,0.002219,-0.003000,0.249982,0,0);}
.m95_c00409{transform:matrix(0.185802,0.002230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185802,0.002230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185802,0.002230,-0.003000,0.249982,0,0);}
.m87_c00409{transform:matrix(0.186382,0.002237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186382,0.002237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186382,0.002237,-0.003000,0.249982,0,0);}
.md4_c00409{transform:matrix(0.186832,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186832,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186832,0.002242,-0.003000,0.249982,0,0);}
.m45_c00409{transform:matrix(0.186872,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186872,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186872,0.002242,-0.003000,0.249982,0,0);}
.m60_c00409{transform:matrix(0.188026,0.002256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188026,0.002256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188026,0.002256,-0.003000,0.249982,0,0);}
.m23_c00409{transform:matrix(0.188556,0.002263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188556,0.002263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188556,0.002263,-0.003000,0.249982,0,0);}
.m31_c00409{transform:matrix(0.188941,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188941,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188941,0.002267,-0.003000,0.249982,0,0);}
.m36_c00409{transform:matrix(0.189011,0.002268,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189011,0.002268,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189011,0.002268,-0.003000,0.249982,0,0);}
.m3e_c00409{transform:matrix(0.189051,0.002269,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189051,0.002269,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189051,0.002269,-0.003000,0.249982,0,0);}
.m96_c00409{transform:matrix(0.189366,0.002272,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189366,0.002272,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189366,0.002272,-0.003000,0.249982,0,0);}
.m26_c00409{transform:matrix(0.189371,0.002272,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189371,0.002272,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189371,0.002272,-0.003000,0.249982,0,0);}
.m7c_c00409{transform:matrix(0.189626,0.002276,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189626,0.002276,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189626,0.002276,-0.003000,0.249982,0,0);}
.m2f_c00409{transform:matrix(0.189771,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189771,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189771,0.002277,-0.003000,0.249982,0,0);}
.mb4_c00409{transform:matrix(0.190356,0.002284,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190356,0.002284,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190356,0.002284,-0.003000,0.249982,0,0);}
.m2b_c00409{transform:matrix(0.190536,0.002286,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190536,0.002286,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190536,0.002286,-0.003000,0.249982,0,0);}
.m4d_c00409{transform:matrix(0.190916,0.002291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190916,0.002291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190916,0.002291,-0.003000,0.249982,0,0);}
.m22_c00409{transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191071,0.002293,-0.003000,0.249982,0,0);}
.m3b_c00409{transform:matrix(0.191101,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191101,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191101,0.002293,-0.003000,0.249982,0,0);}
.me5_c00409{transform:matrix(0.192369,0.002501,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192369,0.002501,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192369,0.002501,-0.003250,0.249979,0,0);}
.m9d_c00409{transform:matrix(0.192406,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192406,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192406,0.002309,-0.003000,0.249982,0,0);}
.m69_c00409{transform:matrix(0.192471,0.002310,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192471,0.002310,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192471,0.002310,-0.003000,0.249982,0,0);}
.m11_c00409{transform:matrix(0.193456,0.002321,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193456,0.002321,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193456,0.002321,-0.003000,0.249982,0,0);}
.m98_c00409{transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193711,0.002325,-0.003000,0.249982,0,0);}
.m2e_c00409{transform:matrix(0.194026,0.002328,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194026,0.002328,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194026,0.002328,-0.003000,0.249982,0,0);}
.mc1_c00409{transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194346,0.002332,-0.003000,0.249982,0,0);}
.m76_c00409{transform:matrix(0.194461,0.002334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194461,0.002334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194461,0.002334,-0.003000,0.249982,0,0);}
.m15_c00409{transform:matrix(0.195086,0.002341,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195086,0.002341,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195086,0.002341,-0.003000,0.249982,0,0);}
.m6c_c00409{transform:matrix(0.195621,0.002347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195621,0.002347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195621,0.002347,-0.003000,0.249982,0,0);}
.m93_c00409{transform:matrix(0.195736,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195736,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195736,0.002349,-0.003000,0.249982,0,0);}
.m32_c00409{transform:matrix(0.195851,0.002350,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195851,0.002350,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195851,0.002350,-0.003000,0.249982,0,0);}
.m1f_c00409{transform:matrix(0.196086,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196086,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196086,0.002353,-0.003000,0.249982,0,0);}
.m97_c00409{transform:matrix(0.196116,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196116,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196116,0.002353,-0.003000,0.249982,0,0);}
.mb9_c00409{transform:matrix(0.196216,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196216,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196216,0.002355,-0.003000,0.249982,0,0);}
.ma6_c00409{transform:matrix(0.196301,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196301,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196301,0.002356,-0.003000,0.249982,0,0);}
.m9b_c00409{transform:matrix(0.196751,0.002361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196751,0.002361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196751,0.002361,-0.003000,0.249982,0,0);}
.m3a_c00409{transform:matrix(0.197541,0.002370,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197541,0.002370,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197541,0.002370,-0.003000,0.249982,0,0);}
.mac_c00409{transform:matrix(0.197576,0.002371,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197576,0.002371,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197576,0.002371,-0.003000,0.249982,0,0);}
.mbf_c00409{transform:matrix(0.197841,0.002374,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197841,0.002374,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197841,0.002374,-0.003000,0.249982,0,0);}
.m9c_c00409{transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);}
.mea_c00409{transform:matrix(0.198758,0.002584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198758,0.002584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198758,0.002584,-0.003250,0.249979,0,0);}
.mdb_c00409{transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199058,0.002588,-0.003250,0.249979,0,0);}
.m6e_c00409{transform:matrix(0.199076,0.002389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199076,0.002389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199076,0.002389,-0.003000,0.249982,0,0);}
.m7_c00409{transform:matrix(0.199101,0.002389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199101,0.002389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199101,0.002389,-0.003000,0.249982,0,0);}
.m4e_c00409{transform:matrix(0.199606,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199606,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199606,0.002395,-0.003000,0.249982,0,0);}
.m4c_c00409{transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);}
.mca_c00409{transform:matrix(0.199696,0.002396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199696,0.002396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199696,0.002396,-0.003000,0.249982,0,0);}
.mc0_c00409{transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200161,0.002402,-0.003000,0.249982,0,0);}
.mb8_c00409{transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);}
.m63_c00409{transform:matrix(0.200611,0.002407,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200611,0.002407,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200611,0.002407,-0.003000,0.249982,0,0);}
.me7_c00409{transform:matrix(0.200673,0.002609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200673,0.002609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200673,0.002609,-0.003250,0.249979,0,0);}
.m55_c00409{transform:matrix(0.200706,0.002408,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200706,0.002408,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200706,0.002408,-0.003000,0.249982,0,0);}
.mde_c00409{transform:matrix(0.200928,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200928,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200928,0.002612,-0.003250,0.249979,0,0);}
.ma_c00409{transform:matrix(0.201081,0.002413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201081,0.002413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201081,0.002413,-0.003000,0.249982,0,0);}
.me3_c00409{transform:matrix(0.201173,0.002615,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201173,0.002615,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201173,0.002615,-0.003250,0.249979,0,0);}
.m88_c00409{transform:matrix(0.201495,0.002418,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201495,0.002418,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201495,0.002418,-0.003000,0.249982,0,0);}
.m3_c00409{transform:matrix(0.201725,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201725,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201725,0.002421,-0.003000,0.249982,0,0);}
.m24_c00409{transform:matrix(0.202040,0.002424,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202040,0.002424,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202040,0.002424,-0.003000,0.249982,0,0);}
.mb0_c00409{transform:matrix(0.202345,0.002428,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202345,0.002428,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202345,0.002428,-0.003000,0.249982,0,0);}
.mf_c00409{transform:matrix(0.202510,0.002430,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202510,0.002430,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202510,0.002430,-0.003000,0.249982,0,0);}
.m92_c00409{transform:matrix(0.202965,0.002436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202965,0.002436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202965,0.002436,-0.003000,0.249982,0,0);}
.mbb_c00409{transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203125,0.002438,-0.003000,0.249982,0,0);}
.m83_c00409{transform:matrix(0.203740,0.002445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203740,0.002445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203740,0.002445,-0.003000,0.249982,0,0);}
.m7e_c00409{transform:matrix(0.203895,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203895,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203895,0.002447,-0.003000,0.249982,0,0);}
.m8f_c00409{transform:matrix(0.204275,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204275,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204275,0.002451,-0.003000,0.249982,0,0);}
.m99_c00409{transform:matrix(0.204725,0.002457,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204725,0.002457,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204725,0.002457,-0.003000,0.249982,0,0);}
.m58_c00409{transform:matrix(0.205150,0.002462,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205150,0.002462,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205150,0.002462,-0.003000,0.249982,0,0);}
.m27_c00409{transform:matrix(0.205605,0.002467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205605,0.002467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205605,0.002467,-0.003000,0.249982,0,0);}
.mcf_c00409{transform:matrix(0.206140,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206140,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206140,0.002474,-0.003000,0.249982,0,0);}
.m6f_c00409{transform:matrix(0.206530,0.002478,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206530,0.002478,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206530,0.002478,-0.003000,0.249982,0,0);}
.m85_c00409{transform:matrix(0.207155,0.002486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207155,0.002486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207155,0.002486,-0.003000,0.249982,0,0);}
.m42_c00409{transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207250,0.002487,-0.003000,0.249982,0,0);}
.m50_c00409{transform:matrix(0.207270,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207270,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207270,0.002487,-0.003000,0.249982,0,0);}
.m10_c00409{transform:matrix(0.207430,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207430,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207430,0.002489,-0.003000,0.249982,0,0);}
.mce_c00409{transform:matrix(0.207570,0.002491,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207570,0.002491,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207570,0.002491,-0.003000,0.249982,0,0);}
.m67_c00409{transform:matrix(0.208160,0.002498,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208160,0.002498,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208160,0.002498,-0.003000,0.249982,0,0);}
.m40_c00409{transform:matrix(0.208320,0.002500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208320,0.002500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208320,0.002500,-0.003000,0.249982,0,0);}
.m74_c00409{transform:matrix(0.208375,0.002500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208375,0.002500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208375,0.002500,-0.003000,0.249982,0,0);}
.m2d_c00409{transform:matrix(0.208820,0.002506,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208820,0.002506,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208820,0.002506,-0.003000,0.249982,0,0);}
.ma1_c00409{transform:matrix(0.208925,0.002507,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208925,0.002507,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208925,0.002507,-0.003000,0.249982,0,0);}
.mb3_c00409{transform:matrix(0.209325,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209325,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209325,0.002512,-0.003000,0.249982,0,0);}
.ma7_c00409{transform:matrix(0.209395,0.002513,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209395,0.002513,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209395,0.002513,-0.003000,0.249982,0,0);}
.m4a_c00409{transform:matrix(0.209410,0.002513,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209410,0.002513,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209410,0.002513,-0.003000,0.249982,0,0);}
.m20_c00409{transform:matrix(0.209620,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209620,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209620,0.002515,-0.003000,0.249982,0,0);}
.md1_c00409{transform:matrix(0.209735,0.002517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209735,0.002517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209735,0.002517,-0.003000,0.249982,0,0);}
.m29_c00409{transform:matrix(0.209740,0.002517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209740,0.002517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209740,0.002517,-0.003000,0.249982,0,0);}
.m79_c00409{transform:matrix(0.209805,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209805,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209805,0.002518,-0.003000,0.249982,0,0);}
.mda_c00409{transform:matrix(0.209807,0.002727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209807,0.002727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209807,0.002727,-0.003250,0.249979,0,0);}
.m1a_c00409{transform:matrix(0.209840,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209840,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209840,0.002518,-0.003000,0.249982,0,0);}
.ma3_c00409{transform:matrix(0.209995,0.002520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209995,0.002520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209995,0.002520,-0.003000,0.249982,0,0);}
.mae_c00409{transform:matrix(0.211330,0.002536,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211330,0.002536,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211330,0.002536,-0.003000,0.249982,0,0);}
.m81_c00409{transform:matrix(0.211860,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211860,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211860,0.002542,-0.003000,0.249982,0,0);}
.m71_c00409{transform:matrix(0.211910,0.002543,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211910,0.002543,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211910,0.002543,-0.003000,0.249982,0,0);}
.m6a_c00409{transform:matrix(0.212440,0.002549,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212440,0.002549,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212440,0.002549,-0.003000,0.249982,0,0);}
.m43_c00409{transform:matrix(0.212520,0.002550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212520,0.002550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212520,0.002550,-0.003000,0.249982,0,0);}
.m7d_c00409{transform:matrix(0.213095,0.002557,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213095,0.002557,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213095,0.002557,-0.003000,0.249982,0,0);}
.m46_c00409{transform:matrix(0.213330,0.002560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213330,0.002560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213330,0.002560,-0.003000,0.249982,0,0);}
.m33_c00409{transform:matrix(0.213745,0.002565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213745,0.002565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213745,0.002565,-0.003000,0.249982,0,0);}
.mb7_c00409{transform:matrix(0.214970,0.002580,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214970,0.002580,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214970,0.002580,-0.003000,0.249982,0,0);}
.m7b_c00409{transform:matrix(0.215479,0.002586,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215479,0.002586,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215479,0.002586,-0.003000,0.249982,0,0);}
.m7a_c00409{transform:matrix(0.216009,0.002592,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216009,0.002592,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216009,0.002592,-0.003000,0.249982,0,0);}
.m8e_c00409{transform:matrix(0.217634,0.002612,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217634,0.002612,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217634,0.002612,-0.003000,0.249982,0,0);}
.ma8_c00409{transform:matrix(0.217824,0.002614,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217824,0.002614,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217824,0.002614,-0.003000,0.249982,0,0);}
.m89_c00409{transform:matrix(0.218004,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218004,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218004,0.002616,-0.003000,0.249982,0,0);}
.maa_c00409{transform:matrix(0.218014,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218014,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218014,0.002616,-0.003000,0.249982,0,0);}
.mad_c00409{transform:matrix(0.220689,0.002648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220689,0.002648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220689,0.002648,-0.003000,0.249982,0,0);}
.m21_c00409{transform:matrix(0.221169,0.002654,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221169,0.002654,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221169,0.002654,-0.003000,0.249982,0,0);}
.mcb_c00409{transform:matrix(0.221359,0.002656,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221359,0.002656,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221359,0.002656,-0.003000,0.249982,0,0);}
.m6b_c00409{transform:matrix(0.221504,0.002658,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221504,0.002658,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221504,0.002658,-0.003000,0.249982,0,0);}
.m54_c00409{transform:matrix(0.221834,0.002662,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221834,0.002662,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221834,0.002662,-0.003000,0.249982,0,0);}
.mdc_c00409{transform:matrix(0.222111,0.002887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222111,0.002887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222111,0.002887,-0.003250,0.249979,0,0);}
.m94_c00409{transform:matrix(0.222489,0.002670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222489,0.002670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222489,0.002670,-0.003000,0.249982,0,0);}
.m75_c00409{transform:matrix(0.222494,0.002670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222494,0.002670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222494,0.002670,-0.003000,0.249982,0,0);}
.m41_c00409{transform:matrix(0.223624,0.002683,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223624,0.002683,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223624,0.002683,-0.003000,0.249982,0,0);}
.m52_c00409{transform:matrix(0.223644,0.002684,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223644,0.002684,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223644,0.002684,-0.003000,0.249982,0,0);}
.m7f_c00409{transform:matrix(0.223844,0.002686,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223844,0.002686,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223844,0.002686,-0.003000,0.249982,0,0);}
.me_c00409{transform:matrix(0.224129,0.002690,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224129,0.002690,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224129,0.002690,-0.003000,0.249982,0,0);}
.m4b_c00409{transform:matrix(0.224444,0.002693,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224444,0.002693,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224444,0.002693,-0.003000,0.249982,0,0);}
.m48_c00409{transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);}
.m66_c00409{transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);}
.m53_c00409{transform:matrix(0.228379,0.002741,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228379,0.002741,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228379,0.002741,-0.003000,0.249982,0,0);}
.m12_c00409{transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);}
.m90_c00409{transform:matrix(0.230723,0.002769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230723,0.002769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230723,0.002769,-0.003000,0.249982,0,0);}
.m72_c00409{transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);}
.m49_c00409{transform:matrix(0.232378,0.002789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232378,0.002789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232378,0.002789,-0.003000,0.249982,0,0);}
.m28_c00409{transform:matrix(0.232583,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232583,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232583,0.002791,-0.003000,0.249982,0,0);}
.m86_c00409{transform:matrix(0.233073,0.002797,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233073,0.002797,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233073,0.002797,-0.003000,0.249982,0,0);}
.m13_c00409{transform:matrix(0.233728,0.002805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233728,0.002805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233728,0.002805,-0.003000,0.249982,0,0);}
.m51_c00409{transform:matrix(0.234348,0.002812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234348,0.002812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234348,0.002812,-0.003000,0.249982,0,0);}
.m35_c00409{transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);}
.ma5_c00409{transform:matrix(0.235423,0.002825,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235423,0.002825,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235423,0.002825,-0.003000,0.249982,0,0);}
.m73_c00409{transform:matrix(0.236008,0.002832,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236008,0.002832,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236008,0.002832,-0.003000,0.249982,0,0);}
.maf_c00409{transform:matrix(0.242188,0.002906,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242188,0.002906,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242188,0.002906,-0.003000,0.249982,0,0);}
.m47_c00409{transform:matrix(0.243003,0.002916,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243003,0.002916,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243003,0.002916,-0.003000,0.249982,0,0);}
.m5f_c00409{transform:matrix(0.244672,0.002936,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244672,0.002936,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244672,0.002936,-0.003000,0.249982,0,0);}
.m5d_c00409{transform:matrix(0.249272,0.002991,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249272,0.002991,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249272,0.002991,-0.003000,0.249982,0,0);}
.m38_c00409{transform:matrix(0.261501,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261501,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261501,0.003138,-0.003000,0.249982,0,0);}
.m1d_c00409{transform:matrix(0.263946,0.003167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263946,0.003167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263946,0.003167,-0.003000,0.249982,0,0);}
.m37_c00409{transform:matrix(0.269721,0.003237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269721,0.003237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269721,0.003237,-0.003000,0.249982,0,0);}
.m78_c00409{transform:matrix(0.271075,0.003253,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271075,0.003253,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271075,0.003253,-0.003000,0.249982,0,0);}
.m1c_c00409{transform:matrix(0.280840,0.003370,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280840,0.003370,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280840,0.003370,-0.003000,0.249982,0,0);}
.m77_c00409{transform:matrix(0.287084,0.003445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287084,0.003445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287084,0.003445,-0.003000,0.249982,0,0);}
.m4f_c00409{transform:matrix(0.308008,0.003696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308008,0.003696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308008,0.003696,-0.003000,0.249982,0,0);}
.md5_c00409{transform:matrix(0.325027,0.003900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.325027,0.003900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.325027,0.003900,-0.003000,0.249982,0,0);}
.m4_c00409{transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);-ms-transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);}
.mdd_c00409{transform:matrix(0.381553,0.004960,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381553,0.004960,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381553,0.004960,-0.003250,0.249979,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:0.000000px;}
.fc0_c00409{color:transparent;}
.fsa_c00409{font-size:46.203326px;}
.fs8_c00409{font-size:58.804233px;}
.fs7_c00409{font-size:59.854309px;}
.fs5_c00409{font-size:60.904385px;}
.fs6_c00409{font-size:61.954460px;}
.fsc_c00409{font-size:63.004536px;}
.fsd_c00409{font-size:64.054611px;}
.fse_c00409{font-size:64.055412px;}
.fs3_c00409{font-size:65.104687px;}
.fs2_c00409{font-size:67.204838px;}
.fs9_c00409{font-size:68.254914px;}
.fsf_c00409{font-size:68.255767px;}
.fs4_c00409{font-size:70.355065px;}
.fsb_c00409{font-size:71.405141px;}
.fs10_c00409{font-size:72.456122px;}
.fs1_c00409{font-size:73.505292px;}
.fs0_c00409{font-size:77.700000px;}
.y0_c00409{bottom:0.000000px;}
.yec_c00409{bottom:30.300759px;}
.ye8_c00409{bottom:30.300813px;}
.yea_c00409{bottom:30.300831px;}
.ye9_c00409{bottom:30.301291px;}
.ye7_c00409{bottom:30.301303px;}
.yed_c00409{bottom:30.301348px;}
.yee_c00409{bottom:30.301407px;}
.yeb_c00409{bottom:30.301480px;}
.ye6_c00409{bottom:30.302044px;}
.ye2_c00409{bottom:46.830748px;}
.ye1_c00409{bottom:46.830830px;}
.ye3_c00409{bottom:46.830918px;}
.ye0_c00409{bottom:46.830962px;}
.ye4_c00409{bottom:46.831426px;}
.ye5_c00409{bottom:46.831986px;}
.ydf_c00409{bottom:61.649403px;}
.yde_c00409{bottom:63.436207px;}
.ydd_c00409{bottom:63.702909px;}
.ydc_c00409{bottom:64.555819px;}
.ydb_c00409{bottom:64.801500px;}
.yd4_c00409{bottom:80.499156px;}
.yd7_c00409{bottom:80.499324px;}
.yda_c00409{bottom:80.499468px;}
.yd6_c00409{bottom:80.499492px;}
.yd5_c00409{bottom:80.499594px;}
.yd8_c00409{bottom:80.499642px;}
.yd9_c00409{bottom:80.500176px;}
.ycc_c00409{bottom:97.727640px;}
.yd0_c00409{bottom:97.728006px;}
.ycd_c00409{bottom:97.728198px;}
.ycf_c00409{bottom:97.728570px;}
.yd1_c00409{bottom:97.728744px;}
.yce_c00409{bottom:97.728912px;}
.yd2_c00409{bottom:97.729398px;}
.yd3_c00409{bottom:97.729416px;}
.yc5_c00409{bottom:114.468426px;}
.yc6_c00409{bottom:114.468444px;}
.yc4_c00409{bottom:114.468792px;}
.yca_c00409{bottom:114.468828px;}
.yc7_c00409{bottom:114.468960px;}
.yc8_c00409{bottom:114.468978px;}
.ycb_c00409{bottom:114.469146px;}
.yc9_c00409{bottom:114.469494px;}
.yc3_c00409{bottom:129.273702px;}
.yc2_c00409{bottom:129.827208px;}
.yc1_c00409{bottom:129.991344px;}
.yc0_c00409{bottom:130.752942px;}
.ybf_c00409{bottom:131.290284px;}
.ybe_c00409{bottom:131.715720px;}
.ybd_c00409{bottom:132.105918px;}
.ybc_c00409{bottom:132.814254px;}
.yb6_c00409{bottom:148.611174px;}
.yb7_c00409{bottom:148.611270px;}
.yb5_c00409{bottom:148.611378px;}
.yba_c00409{bottom:148.611420px;}
.yb9_c00409{bottom:148.611426px;}
.yb8_c00409{bottom:148.611648px;}
.yb4_c00409{bottom:148.611660px;}
.ybb_c00409{bottom:148.611678px;}
.yb3_c00409{bottom:148.611984px;}
.yb2_c00409{bottom:163.552914px;}
.yb1_c00409{bottom:164.454768px;}
.yb0_c00409{bottom:164.767320px;}
.yaf_c00409{bottom:165.403626px;}
.yae_c00409{bottom:165.979350px;}
.yad_c00409{bottom:166.249620px;}
.yac_c00409{bottom:166.971348px;}
.yab_c00409{bottom:167.213730px;}
.yaa_c00409{bottom:167.646402px;}
.ya9_c00409{bottom:181.649676px;}
.ya8_c00409{bottom:181.868934px;}
.ya7_c00409{bottom:182.446650px;}
.ya6_c00409{bottom:183.222696px;}
.ya5_c00409{bottom:183.990078px;}
.ya4_c00409{bottom:184.406532px;}
.ya3_c00409{bottom:184.658730px;}
.ya2_c00409{bottom:198.630042px;}
.ya1_c00409{bottom:198.861774px;}
.ya0_c00409{bottom:199.247562px;}
.y9f_c00409{bottom:199.580880px;}
.y9e_c00409{bottom:200.491350px;}
.y9d_c00409{bottom:200.842116px;}
.y9c_c00409{bottom:201.589596px;}
.y9b_c00409{bottom:201.940686px;}
.y9a_c00409{bottom:215.990616px;}
.y99_c00409{bottom:216.382092px;}
.y98_c00409{bottom:216.962724px;}
.y97_c00409{bottom:217.273968px;}
.y96_c00409{bottom:217.731516px;}
.y95_c00409{bottom:219.069804px;}
.y94_c00409{bottom:219.761568px;}
.y93_c00409{bottom:233.571012px;}
.y92_c00409{bottom:233.842446px;}
.y91_c00409{bottom:234.780330px;}
.y90_c00409{bottom:235.358586px;}
.y8f_c00409{bottom:235.750380px;}
.y8e_c00409{bottom:235.989792px;}
.y8d_c00409{bottom:236.154696px;}
.y8c_c00409{bottom:237.040782px;}
.y8b_c00409{bottom:249.694362px;}
.y8a_c00409{bottom:250.461564px;}
.y89_c00409{bottom:251.006160px;}
.y88_c00409{bottom:251.300088px;}
.y87_c00409{bottom:252.132360px;}
.y86_c00409{bottom:252.419118px;}
.y85_c00409{bottom:252.826728px;}
.y84_c00409{bottom:253.511190px;}
.y83_c00409{bottom:266.475954px;}
.y82_c00409{bottom:267.050508px;}
.y81_c00409{bottom:267.320214px;}
.y80_c00409{bottom:268.195248px;}
.y7f_c00409{bottom:268.992372px;}
.y7e_c00409{bottom:269.634738px;}
.y7d_c00409{bottom:270.253176px;}
.y7c_c00409{bottom:284.041110px;}
.y7b_c00409{bottom:284.156862px;}
.y7a_c00409{bottom:284.587734px;}
.y79_c00409{bottom:284.777688px;}
.y78_c00409{bottom:285.367944px;}
.y77_c00409{bottom:285.837936px;}
.y76_c00409{bottom:286.239408px;}
.y75_c00409{bottom:286.684980px;}
.y74_c00409{bottom:286.993422px;}
.y73_c00409{bottom:300.816150px;}
.y72_c00409{bottom:301.078500px;}
.y71_c00409{bottom:301.875522px;}
.y70_c00409{bottom:302.325342px;}
.y6f_c00409{bottom:302.974080px;}
.y6e_c00409{bottom:303.469800px;}
.y6d_c00409{bottom:303.734886px;}
.y66_c00409{bottom:319.409262px;}
.y6c_c00409{bottom:319.409538px;}
.y68_c00409{bottom:319.409592px;}
.y67_c00409{bottom:319.409814px;}
.y6b_c00409{bottom:319.410144px;}
.y69_c00409{bottom:319.410168px;}
.y6a_c00409{bottom:319.410804px;}
.y63_c00409{bottom:336.530094px;}
.y64_c00409{bottom:336.530268px;}
.y61_c00409{bottom:336.530382px;}
.y60_c00409{bottom:336.530388px;}
.y65_c00409{bottom:336.530484px;}
.y62_c00409{bottom:336.530736px;}
.y5d_c00409{bottom:354.096048px;}
.y5e_c00409{bottom:354.096426px;}
.y5f_c00409{bottom:354.097122px;}
.y57_c00409{bottom:370.225320px;}
.y5b_c00409{bottom:370.225344px;}
.y5c_c00409{bottom:370.225602px;}
.y55_c00409{bottom:370.225608px;}
.y5a_c00409{bottom:370.225650px;}
.y58_c00409{bottom:370.225698px;}
.y56_c00409{bottom:370.225962px;}
.y59_c00409{bottom:370.226232px;}
.y54_c00409{bottom:385.256616px;}
.y53_c00409{bottom:385.442268px;}
.y52_c00409{bottom:386.228616px;}
.y51_c00409{bottom:386.420388px;}
.y50_c00409{bottom:387.405066px;}
.y4f_c00409{bottom:387.582612px;}
.y4e_c00409{bottom:388.535880px;}
.y4d_c00409{bottom:388.791912px;}
.y48_c00409{bottom:404.315028px;}
.y49_c00409{bottom:404.315226px;}
.y47_c00409{bottom:404.315412px;}
.y4a_c00409{bottom:404.315742px;}
.y4b_c00409{bottom:404.315976px;}
.y46_c00409{bottom:404.316054px;}
.y4c_c00409{bottom:404.316132px;}
.y45_c00409{bottom:404.316798px;}
.y44_c00409{bottom:419.079024px;}
.y43_c00409{bottom:419.264496px;}
.y42_c00409{bottom:420.134214px;}
.y41_c00409{bottom:420.303186px;}
.y40_c00409{bottom:421.249194px;}
.y3f_c00409{bottom:421.535178px;}
.y3e_c00409{bottom:421.805064px;}
.y3d_c00409{bottom:422.572536px;}
.y3c_c00409{bottom:423.086640px;}
.y3b_c00409{bottom:435.738270px;}
.y3a_c00409{bottom:436.268376px;}
.y39_c00409{bottom:436.578648px;}
.y38_c00409{bottom:436.878738px;}
.y37_c00409{bottom:437.832774px;}
.y36_c00409{bottom:438.138450px;}
.y35_c00409{bottom:438.354432px;}
.y34_c00409{bottom:439.387728px;}
.y33_c00409{bottom:440.368068px;}
.y32_c00409{bottom:455.346912px;}
.y31_c00409{bottom:455.347398px;}
.y2e_c00409{bottom:455.347848px;}
.y30_c00409{bottom:455.348100px;}
.y2c_c00409{bottom:455.348136px;}
.y2b_c00409{bottom:455.348142px;}
.y2f_c00409{bottom:455.348226px;}
.y2d_c00409{bottom:455.348574px;}
.y22_c00409{bottom:472.115814px;}
.y23_c00409{bottom:472.116372px;}
.y24_c00409{bottom:472.116690px;}
.y25_c00409{bottom:472.116864px;}
.y26_c00409{bottom:472.117542px;}
.y28_c00409{bottom:472.117656px;}
.y27_c00409{bottom:472.117818px;}
.y29_c00409{bottom:472.118010px;}
.y2a_c00409{bottom:472.118088px;}
.y21_c00409{bottom:488.082072px;}
.y20_c00409{bottom:488.563128px;}
.y1f_c00409{bottom:489.204738px;}
.y1e_c00409{bottom:489.460896px;}
.y1d_c00409{bottom:489.701286px;}
.y1c_c00409{bottom:490.270398px;}
.y1b_c00409{bottom:490.531788px;}
.y1a_c00409{bottom:490.858098px;}
.y14_c00409{bottom:506.042934px;}
.y16_c00409{bottom:506.043120px;}
.y15_c00409{bottom:506.043588px;}
.y17_c00409{bottom:506.043618px;}
.y18_c00409{bottom:506.043690px;}
.y19_c00409{bottom:506.043828px;}
.y11_c00409{bottom:522.511170px;}
.y12_c00409{bottom:522.511308px;}
.yf_c00409{bottom:522.511398px;}
.y10_c00409{bottom:522.511476px;}
.ye_c00409{bottom:522.511506px;}
.y13_c00409{bottom:522.511866px;}
.yc_c00409{bottom:539.614704px;}
.yb_c00409{bottom:539.614794px;}
.yd_c00409{bottom:539.615286px;}
.ya_c00409{bottom:554.646174px;}
.y9_c00409{bottom:554.837280px;}
.y8_c00409{bottom:555.060822px;}
.y7_c00409{bottom:555.209160px;}
.y6_c00409{bottom:555.689454px;}
.y5_c00409{bottom:555.968076px;}
.y4_c00409{bottom:556.968372px;}
.y3_c00409{bottom:557.124252px;}
.y2_c00409{bottom:557.821500px;}
.y1_c00409{bottom:569.409000px;}
.hc_c00409{height:46.203326px;}
.ha_c00409{height:58.804233px;}
.h9_c00409{height:59.854309px;}
.h7_c00409{height:60.904385px;}
.h8_c00409{height:61.954460px;}
.he_c00409{height:63.004536px;}
.hf_c00409{height:64.054611px;}
.h10_c00409{height:64.055412px;}
.h5_c00409{height:65.104687px;}
.h4_c00409{height:67.204838px;}
.hb_c00409{height:68.254914px;}
.h11_c00409{height:68.255767px;}
.h6_c00409{height:70.355065px;}
.hd_c00409{height:71.405141px;}
.h12_c00409{height:72.456122px;}
.h3_c00409{height:73.505292px;}
.h2_c00409{height:77.700000px;}
.h1_c00409{height:617.250000px;}
.h0_c00409{height:617.490000px;}
.w0_c00409{width:359.100000px;}
.w1_c00409{width:359.250000px;}
.x0_c00409{left:0.000000px;}
.x52_c00409{left:36.832860px;}
.x28_c00409{left:38.133132px;}
.x7a_c00409{left:40.233020px;}
.x3b_c00409{left:41.402778px;}
.x3_c00409{left:42.507000px;}
.x63_c00409{left:51.178440px;}
.xe_c00409{left:53.459418px;}
.x3c_c00409{left:59.738346px;}
.x70_c00409{left:62.097996px;}
.x1d_c00409{left:63.450702px;}
.x46_c00409{left:66.156294px;}
.x5f_c00409{left:67.603446px;}
.x4d_c00409{left:68.717604px;}
.x65_c00409{left:69.721800px;}
.x17_c00409{left:71.679840px;}
.x7b_c00409{left:74.795850px;}
.x74_c00409{left:75.868764px;}
.x2f_c00409{left:78.386412px;}
.x36_c00409{left:81.541320px;}
.x53_c00409{left:84.368784px;}
.x66_c00409{left:85.919724px;}
.x7c_c00409{left:88.566671px;}
.x56_c00409{left:90.085440px;}
.x1e_c00409{left:91.803288px;}
.x23_c00409{left:94.231944px;}
.x18_c00409{left:95.462628px;}
.x29_c00409{left:99.450198px;}
.x4_c00409{left:100.611000px;}
.x37_c00409{left:104.223078px;}
.x13_c00409{left:105.845874px;}
.x4e_c00409{left:109.224090px;}
.x42_c00409{left:110.977536px;}
.x24_c00409{left:112.323054px;}
.x5_c00409{left:113.601000px;}
.x49_c00409{left:115.297452px;}
.x47_c00409{left:118.539336px;}
.x60_c00409{left:125.142762px;}
.x6d_c00409{left:126.221520px;}
.x3d_c00409{left:127.800708px;}
.xf_c00409{left:129.604380px;}
.x30_c00409{left:133.216098px;}
.x76_c00409{left:138.519465px;}
.x3e_c00409{left:140.470902px;}
.x71_c00409{left:144.453858px;}
.xc_c00409{left:145.536384px;}
.x19_c00409{left:147.264258px;}
.x1f_c00409{left:149.047032px;}
.x31_c00409{left:152.456130px;}
.x38_c00409{left:153.637188px;}
.x75_c00409{left:157.144464px;}
.x10_c00409{left:158.227002px;}
.x59_c00409{left:161.314608px;}
.x2a_c00409{left:164.055102px;}
.x25_c00409{left:165.516204px;}
.x20_c00409{left:166.868106px;}
.x5d_c00409{left:168.026580px;}
.x1a_c00409{left:169.172028px;}
.x32_c00409{left:172.912644px;}
.x2b_c00409{left:177.552954px;}
.x14_c00409{left:179.020404px;}
.x1_c00409{left:180.900000px;}
.x77_c00409{left:182.263856px;}
.x6f_c00409{left:183.876390px;}
.x26_c00409{left:188.738052px;}
.x67_c00409{left:190.434462px;}
.x15_c00409{left:191.980776px;}
.x54_c00409{left:195.074952px;}
.x6_c00409{left:196.959000px;}
.x57_c00409{left:199.177830px;}
.x4a_c00409{left:200.352210px;}
.x5a_c00409{left:202.626618px;}
.x78_c00409{left:205.216236px;}
.x21_c00409{left:207.100902px;}
.x72_c00409{left:208.448574px;}
.x4b_c00409{left:209.533524px;}
.x3f_c00409{left:210.775710px;}
.x5e_c00409{left:216.090276px;}
.x39_c00409{left:218.712066px;}
.x7_c00409{left:220.177500px;}
.x61_c00409{left:222.119592px;}
.x40_c00409{left:224.506386px;}
.x11_c00409{left:229.512762px;}
.x68_c00409{left:232.833432px;}
.x6a_c00409{left:237.339738px;}
.x33_c00409{left:240.495024px;}
.x4f_c00409{left:242.035674px;}
.x62_c00409{left:247.770786px;}
.x1b_c00409{left:250.737000px;}
.x34_c00409{left:252.575736px;}
.x69_c00409{left:253.628676px;}
.x2c_c00409{left:256.275174px;}
.x58_c00409{left:259.053390px;}
.x8_c00409{left:260.202000px;}
.x4c_c00409{left:262.583214px;}
.x64_c00409{left:266.052774px;}
.x2_c00409{left:267.840000px;}
.x5b_c00409{left:269.657016px;}
.x6e_c00409{left:271.470774px;}
.x9_c00409{left:272.563500px;}
.x2d_c00409{left:275.031774px;}
.x44_c00409{left:277.310958px;}
.x73_c00409{left:278.654190px;}
.x41_c00409{left:280.659036px;}
.x55_c00409{left:283.093890px;}
.x3a_c00409{left:284.327016px;}
.x79_c00409{left:286.493984px;}
.x12_c00409{left:287.838168px;}
.x5c_c00409{left:289.026048px;}
.xa_c00409{left:291.192000px;}
.x48_c00409{left:292.430874px;}
.x1c_c00409{left:294.450522px;}
.x16_c00409{left:296.478324px;}
.x50_c00409{left:298.521858px;}
.x6b_c00409{left:303.224724px;}
.x43_c00409{left:305.932098px;}
.xb_c00409{left:307.117500px;}
.x51_c00409{left:309.042984px;}
.x35_c00409{left:314.675742px;}
.x22_c00409{left:319.969656px;}
.x6c_c00409{left:323.206104px;}
.x27_c00409{left:325.367208px;}
.x2e_c00409{left:327.560754px;}
.x45_c00409{left:328.885392px;}
.xd_c00409{left:332.389794px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fsa_c00409{font-size:41.069623pt;}
.fs8_c00409{font-size:52.270430pt;}
.fs7_c00409{font-size:53.203830pt;}
.fs5_c00409{font-size:54.137231pt;}
.fs6_c00409{font-size:55.070631pt;}
.fsc_c00409{font-size:56.004032pt;}
.fsd_c00409{font-size:56.937432pt;}
.fse_c00409{font-size:56.938144pt;}
.fs3_c00409{font-size:57.870833pt;}
.fs2_c00409{font-size:59.737634pt;}
.fs9_c00409{font-size:60.671035pt;}
.fsf_c00409{font-size:60.671793pt;}
.fs4_c00409{font-size:62.537836pt;}
.fsb_c00409{font-size:63.471236pt;}
.fs10_c00409{font-size:64.405442pt;}
.fs1_c00409{font-size:65.338037pt;}
.fs0_c00409{font-size:69.066667pt;}
.y0_c00409{bottom:0.000000pt;}
.yec_c00409{bottom:26.934008pt;}
.ye8_c00409{bottom:26.934056pt;}
.yea_c00409{bottom:26.934072pt;}
.ye9_c00409{bottom:26.934481pt;}
.ye7_c00409{bottom:26.934492pt;}
.yed_c00409{bottom:26.934532pt;}
.yee_c00409{bottom:26.934584pt;}
.yeb_c00409{bottom:26.934649pt;}
.ye6_c00409{bottom:26.935151pt;}
.ye2_c00409{bottom:41.627332pt;}
.ye1_c00409{bottom:41.627404pt;}
.ye3_c00409{bottom:41.627483pt;}
.ye0_c00409{bottom:41.627521pt;}
.ye4_c00409{bottom:41.627935pt;}
.ye5_c00409{bottom:41.628432pt;}
.ydf_c00409{bottom:54.799469pt;}
.yde_c00409{bottom:56.387740pt;}
.ydd_c00409{bottom:56.624808pt;}
.ydc_c00409{bottom:57.382951pt;}
.ydb_c00409{bottom:57.601333pt;}
.yd4_c00409{bottom:71.554805pt;}
.yd7_c00409{bottom:71.554955pt;}
.yda_c00409{bottom:71.555083pt;}
.yd6_c00409{bottom:71.555104pt;}
.yd5_c00409{bottom:71.555195pt;}
.yd8_c00409{bottom:71.555237pt;}
.yd9_c00409{bottom:71.555712pt;}
.ycc_c00409{bottom:86.869013pt;}
.yd0_c00409{bottom:86.869339pt;}
.ycd_c00409{bottom:86.869509pt;}
.ycf_c00409{bottom:86.869840pt;}
.yd1_c00409{bottom:86.869995pt;}
.yce_c00409{bottom:86.870144pt;}
.yd2_c00409{bottom:86.870576pt;}
.yd3_c00409{bottom:86.870592pt;}
.yc5_c00409{bottom:101.749712pt;}
.yc6_c00409{bottom:101.749728pt;}
.yc4_c00409{bottom:101.750037pt;}
.yca_c00409{bottom:101.750069pt;}
.yc7_c00409{bottom:101.750187pt;}
.yc8_c00409{bottom:101.750203pt;}
.ycb_c00409{bottom:101.750352pt;}
.yc9_c00409{bottom:101.750661pt;}
.yc3_c00409{bottom:114.909957pt;}
.yc2_c00409{bottom:115.401963pt;}
.yc1_c00409{bottom:115.547861pt;}
.yc0_c00409{bottom:116.224837pt;}
.ybf_c00409{bottom:116.702475pt;}
.ybe_c00409{bottom:117.080640pt;}
.ybd_c00409{bottom:117.427483pt;}
.ybc_c00409{bottom:118.057115pt;}
.yb6_c00409{bottom:132.098821pt;}
.yb7_c00409{bottom:132.098907pt;}
.yb5_c00409{bottom:132.099003pt;}
.yba_c00409{bottom:132.099040pt;}
.yb9_c00409{bottom:132.099045pt;}
.yb8_c00409{bottom:132.099243pt;}
.yb4_c00409{bottom:132.099253pt;}
.ybb_c00409{bottom:132.099269pt;}
.yb3_c00409{bottom:132.099541pt;}
.yb2_c00409{bottom:145.380368pt;}
.yb1_c00409{bottom:146.182016pt;}
.yb0_c00409{bottom:146.459840pt;}
.yaf_c00409{bottom:147.025445pt;}
.yae_c00409{bottom:147.537200pt;}
.yad_c00409{bottom:147.777440pt;}
.yac_c00409{bottom:148.418976pt;}
.yab_c00409{bottom:148.634427pt;}
.yaa_c00409{bottom:149.019024pt;}
.ya9_c00409{bottom:161.466379pt;}
.ya8_c00409{bottom:161.661275pt;}
.ya7_c00409{bottom:162.174800pt;}
.ya6_c00409{bottom:162.864619pt;}
.ya5_c00409{bottom:163.546736pt;}
.ya4_c00409{bottom:163.916917pt;}
.ya3_c00409{bottom:164.141093pt;}
.ya2_c00409{bottom:176.560037pt;}
.ya1_c00409{bottom:176.766021pt;}
.ya0_c00409{bottom:177.108944pt;}
.y9f_c00409{bottom:177.405227pt;}
.y9e_c00409{bottom:178.214533pt;}
.y9d_c00409{bottom:178.526325pt;}
.y9c_c00409{bottom:179.190752pt;}
.y9b_c00409{bottom:179.502832pt;}
.y9a_c00409{bottom:191.991659pt;}
.y99_c00409{bottom:192.339637pt;}
.y98_c00409{bottom:192.855755pt;}
.y97_c00409{bottom:193.132416pt;}
.y96_c00409{bottom:193.539125pt;}
.y95_c00409{bottom:194.728715pt;}
.y94_c00409{bottom:195.343616pt;}
.y93_c00409{bottom:207.618677pt;}
.y92_c00409{bottom:207.859952pt;}
.y91_c00409{bottom:208.693627pt;}
.y90_c00409{bottom:209.207632pt;}
.y8f_c00409{bottom:209.555893pt;}
.y8e_c00409{bottom:209.768704pt;}
.y8d_c00409{bottom:209.915285pt;}
.y8c_c00409{bottom:210.702917pt;}
.y8b_c00409{bottom:221.950544pt;}
.y8a_c00409{bottom:222.632501pt;}
.y89_c00409{bottom:223.116587pt;}
.y88_c00409{bottom:223.377856pt;}
.y87_c00409{bottom:224.117653pt;}
.y86_c00409{bottom:224.372549pt;}
.y85_c00409{bottom:224.734869pt;}
.y84_c00409{bottom:225.343280pt;}
.y83_c00409{bottom:236.867515pt;}
.y82_c00409{bottom:237.378229pt;}
.y81_c00409{bottom:237.617968pt;}
.y80_c00409{bottom:238.395776pt;}
.y7f_c00409{bottom:239.104331pt;}
.y7e_c00409{bottom:239.675323pt;}
.y7d_c00409{bottom:240.225045pt;}
.y7c_c00409{bottom:252.480987pt;}
.y7b_c00409{bottom:252.583877pt;}
.y7a_c00409{bottom:252.966875pt;}
.y79_c00409{bottom:253.135723pt;}
.y78_c00409{bottom:253.660395pt;}
.y77_c00409{bottom:254.078165pt;}
.y76_c00409{bottom:254.435029pt;}
.y75_c00409{bottom:254.831093pt;}
.y74_c00409{bottom:255.105264pt;}
.y73_c00409{bottom:267.392133pt;}
.y72_c00409{bottom:267.625333pt;}
.y71_c00409{bottom:268.333797pt;}
.y70_c00409{bottom:268.733637pt;}
.y6f_c00409{bottom:269.310293pt;}
.y6e_c00409{bottom:269.750933pt;}
.y6d_c00409{bottom:269.986565pt;}
.y66_c00409{bottom:283.919344pt;}
.y6c_c00409{bottom:283.919589pt;}
.y68_c00409{bottom:283.919637pt;}
.y67_c00409{bottom:283.919835pt;}
.y6b_c00409{bottom:283.920128pt;}
.y69_c00409{bottom:283.920149pt;}
.y6a_c00409{bottom:283.920715pt;}
.y63_c00409{bottom:299.137861pt;}
.y64_c00409{bottom:299.138016pt;}
.y61_c00409{bottom:299.138117pt;}
.y60_c00409{bottom:299.138123pt;}
.y65_c00409{bottom:299.138208pt;}
.y62_c00409{bottom:299.138432pt;}
.y5d_c00409{bottom:314.752043pt;}
.y5e_c00409{bottom:314.752379pt;}
.y5f_c00409{bottom:314.752997pt;}
.y57_c00409{bottom:329.089173pt;}
.y5b_c00409{bottom:329.089195pt;}
.y5c_c00409{bottom:329.089424pt;}
.y55_c00409{bottom:329.089429pt;}
.y5a_c00409{bottom:329.089467pt;}
.y58_c00409{bottom:329.089509pt;}
.y56_c00409{bottom:329.089744pt;}
.y59_c00409{bottom:329.089984pt;}
.y54_c00409{bottom:342.450325pt;}
.y53_c00409{bottom:342.615349pt;}
.y52_c00409{bottom:343.314325pt;}
.y51_c00409{bottom:343.484789pt;}
.y50_c00409{bottom:344.360059pt;}
.y4f_c00409{bottom:344.517877pt;}
.y4e_c00409{bottom:345.365227pt;}
.y4d_c00409{bottom:345.592811pt;}
.y48_c00409{bottom:359.391136pt;}
.y49_c00409{bottom:359.391312pt;}
.y47_c00409{bottom:359.391477pt;}
.y4a_c00409{bottom:359.391771pt;}
.y4b_c00409{bottom:359.391979pt;}
.y46_c00409{bottom:359.392048pt;}
.y4c_c00409{bottom:359.392117pt;}
.y45_c00409{bottom:359.392709pt;}
.y44_c00409{bottom:372.514688pt;}
.y43_c00409{bottom:372.679552pt;}
.y42_c00409{bottom:373.452635pt;}
.y41_c00409{bottom:373.602832pt;}
.y40_c00409{bottom:374.443728pt;}
.y3f_c00409{bottom:374.697936pt;}
.y3e_c00409{bottom:374.937835pt;}
.y3d_c00409{bottom:375.620032pt;}
.y3c_c00409{bottom:376.077013pt;}
.y3b_c00409{bottom:387.322907pt;}
.y3a_c00409{bottom:387.794112pt;}
.y39_c00409{bottom:388.069909pt;}
.y38_c00409{bottom:388.336656pt;}
.y37_c00409{bottom:389.184688pt;}
.y36_c00409{bottom:389.456400pt;}
.y35_c00409{bottom:389.648384pt;}
.y34_c00409{bottom:390.566869pt;}
.y33_c00409{bottom:391.438283pt;}
.y32_c00409{bottom:404.752811pt;}
.y31_c00409{bottom:404.753243pt;}
.y2e_c00409{bottom:404.753643pt;}
.y30_c00409{bottom:404.753867pt;}
.y2c_c00409{bottom:404.753899pt;}
.y2b_c00409{bottom:404.753904pt;}
.y2f_c00409{bottom:404.753979pt;}
.y2d_c00409{bottom:404.754288pt;}
.y22_c00409{bottom:419.658501pt;}
.y23_c00409{bottom:419.658997pt;}
.y24_c00409{bottom:419.659280pt;}
.y25_c00409{bottom:419.659435pt;}
.y26_c00409{bottom:419.660037pt;}
.y28_c00409{bottom:419.660139pt;}
.y27_c00409{bottom:419.660283pt;}
.y29_c00409{bottom:419.660453pt;}
.y2a_c00409{bottom:419.660523pt;}
.y21_c00409{bottom:433.850731pt;}
.y20_c00409{bottom:434.278336pt;}
.y1f_c00409{bottom:434.848656pt;}
.y1e_c00409{bottom:435.076352pt;}
.y1d_c00409{bottom:435.290032pt;}
.y1c_c00409{bottom:435.795909pt;}
.y1b_c00409{bottom:436.028256pt;}
.y1a_c00409{bottom:436.318309pt;}
.y14_c00409{bottom:449.815941pt;}
.y16_c00409{bottom:449.816107pt;}
.y15_c00409{bottom:449.816523pt;}
.y17_c00409{bottom:449.816549pt;}
.y18_c00409{bottom:449.816613pt;}
.y19_c00409{bottom:449.816736pt;}
.y11_c00409{bottom:464.454373pt;}
.y12_c00409{bottom:464.454496pt;}
.yf_c00409{bottom:464.454576pt;}
.y10_c00409{bottom:464.454645pt;}
.ye_c00409{bottom:464.454672pt;}
.y13_c00409{bottom:464.454992pt;}
.yc_c00409{bottom:479.657515pt;}
.yb_c00409{bottom:479.657595pt;}
.yd_c00409{bottom:479.658032pt;}
.ya_c00409{bottom:493.018821pt;}
.y9_c00409{bottom:493.188693pt;}
.y8_c00409{bottom:493.387397pt;}
.y7_c00409{bottom:493.519253pt;}
.y6_c00409{bottom:493.946181pt;}
.y5_c00409{bottom:494.193845pt;}
.y4_c00409{bottom:495.082997pt;}
.y3_c00409{bottom:495.221557pt;}
.y2_c00409{bottom:495.841333pt;}
.y1_c00409{bottom:506.141333pt;}
.hc_c00409{height:41.069623pt;}
.ha_c00409{height:52.270430pt;}
.h9_c00409{height:53.203830pt;}
.h7_c00409{height:54.137231pt;}
.h8_c00409{height:55.070631pt;}
.he_c00409{height:56.004032pt;}
.hf_c00409{height:56.937432pt;}
.h10_c00409{height:56.938144pt;}
.h5_c00409{height:57.870833pt;}
.h4_c00409{height:59.737634pt;}
.hb_c00409{height:60.671035pt;}
.h11_c00409{height:60.671793pt;}
.h6_c00409{height:62.537836pt;}
.hd_c00409{height:63.471236pt;}
.h12_c00409{height:64.405442pt;}
.h3_c00409{height:65.338037pt;}
.h2_c00409{height:69.066667pt;}
.h1_c00409{height:548.666667pt;}
.h0_c00409{height:548.880000pt;}
.w0_c00409{width:319.200000pt;}
.w1_c00409{width:319.333333pt;}
.x0_c00409{left:0.000000pt;}
.x52_c00409{left:32.740320pt;}
.x28_c00409{left:33.896117pt;}
.x7a_c00409{left:35.762684pt;}
.x3b_c00409{left:36.802469pt;}
.x3_c00409{left:37.784000pt;}
.x63_c00409{left:45.491947pt;}
.xe_c00409{left:47.519483pt;}
.x3c_c00409{left:53.100752pt;}
.x70_c00409{left:55.198219pt;}
.x1d_c00409{left:56.400624pt;}
.x46_c00409{left:58.805595pt;}
.x5f_c00409{left:60.091952pt;}
.x4d_c00409{left:61.082315pt;}
.x65_c00409{left:61.974933pt;}
.x17_c00409{left:63.715413pt;}
.x7b_c00409{left:66.485200pt;}
.x74_c00409{left:67.438901pt;}
.x2f_c00409{left:69.676811pt;}
.x36_c00409{left:72.481173pt;}
.x53_c00409{left:74.994475pt;}
.x66_c00409{left:76.373088pt;}
.x7c_c00409{left:78.725929pt;}
.x56_c00409{left:80.075947pt;}
.x1e_c00409{left:81.602923pt;}
.x23_c00409{left:83.761728pt;}
.x18_c00409{left:84.855669pt;}
.x29_c00409{left:88.400176pt;}
.x4_c00409{left:89.432000pt;}
.x37_c00409{left:92.642736pt;}
.x13_c00409{left:94.085221pt;}
.x4e_c00409{left:97.088080pt;}
.x42_c00409{left:98.646699pt;}
.x24_c00409{left:99.842715pt;}
.x5_c00409{left:100.978667pt;}
.x49_c00409{left:102.486624pt;}
.x47_c00409{left:105.368299pt;}
.x60_c00409{left:111.238011pt;}
.x6d_c00409{left:112.196907pt;}
.x3d_c00409{left:113.600629pt;}
.xf_c00409{left:115.203893pt;}
.x30_c00409{left:118.414309pt;}
.x76_c00409{left:123.128413pt;}
.x3e_c00409{left:124.863024pt;}
.x71_c00409{left:128.403429pt;}
.xc_c00409{left:129.365675pt;}
.x19_c00409{left:130.901563pt;}
.x1f_c00409{left:132.486251pt;}
.x31_c00409{left:135.516560pt;}
.x38_c00409{left:136.566389pt;}
.x75_c00409{left:139.683968pt;}
.x10_c00409{left:140.646224pt;}
.x59_c00409{left:143.390763pt;}
.x2a_c00409{left:145.826757pt;}
.x25_c00409{left:147.125515pt;}
.x20_c00409{left:148.327205pt;}
.x5d_c00409{left:149.356960pt;}
.x1a_c00409{left:150.375136pt;}
.x32_c00409{left:153.700128pt;}
.x2b_c00409{left:157.824848pt;}
.x14_c00409{left:159.129248pt;}
.x1_c00409{left:160.800000pt;}
.x77_c00409{left:162.012316pt;}
.x6f_c00409{left:163.445680pt;}
.x26_c00409{left:167.767157pt;}
.x67_c00409{left:169.275077pt;}
.x15_c00409{left:170.649579pt;}
.x54_c00409{left:173.399957pt;}
.x6_c00409{left:175.074667pt;}
.x57_c00409{left:177.046960pt;}
.x4a_c00409{left:178.090853pt;}
.x5a_c00409{left:180.112549pt;}
.x78_c00409{left:182.414432pt;}
.x21_c00409{left:184.089691pt;}
.x72_c00409{left:185.287621pt;}
.x4b_c00409{left:186.252021pt;}
.x3f_c00409{left:187.356187pt;}
.x5e_c00409{left:192.080245pt;}
.x39_c00409{left:194.410725pt;}
.x7_c00409{left:195.713333pt;}
.x61_c00409{left:197.439637pt;}
.x40_c00409{left:199.561232pt;}
.x11_c00409{left:204.011344pt;}
.x68_c00409{left:206.963051pt;}
.x6a_c00409{left:210.968656pt;}
.x33_c00409{left:213.773355pt;}
.x4f_c00409{left:215.142821pt;}
.x62_c00409{left:220.240699pt;}
.x1b_c00409{left:222.877333pt;}
.x34_c00409{left:224.511765pt;}
.x69_c00409{left:225.447712pt;}
.x2c_c00409{left:227.800155pt;}
.x58_c00409{left:230.269680pt;}
.x8_c00409{left:231.290667pt;}
.x4c_c00409{left:233.407301pt;}
.x64_c00409{left:236.491355pt;}
.x2_c00409{left:238.080000pt;}
.x5b_c00409{left:239.695125pt;}
.x6e_c00409{left:241.307355pt;}
.x9_c00409{left:242.278667pt;}
.x2d_c00409{left:244.472688pt;}
.x44_c00409{left:246.498629pt;}
.x73_c00409{left:247.692613pt;}
.x41_c00409{left:249.474699pt;}
.x55_c00409{left:251.639013pt;}
.x3a_c00409{left:252.735125pt;}
.x79_c00409{left:254.661319pt;}
.x12_c00409{left:255.856149pt;}
.x5c_c00409{left:256.912043pt;}
.xa_c00409{left:258.837333pt;}
.x48_c00409{left:259.938555pt;}
.x1c_c00409{left:261.733797pt;}
.x16_c00409{left:263.536288pt;}
.x50_c00409{left:265.352763pt;}
.x6b_c00409{left:269.533088pt;}
.x43_c00409{left:271.939643pt;}
.xb_c00409{left:272.993333pt;}
.x51_c00409{left:274.704875pt;}
.x35_c00409{left:279.711771pt;}
.x22_c00409{left:284.417472pt;}
.x6c_c00409{left:287.294315pt;}
.x27_c00409{left:289.215296pt;}
.x2e_c00409{left:291.165115pt;}
.x45_c00409{left:292.342571pt;}
.xd_c00409{left:295.457595pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00410 {
    display:none;
  }
  .loading-indicator_c00410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00410 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00410 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00410" -> "#page-container .classname_c00410")
 */
.pf_c00410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00410 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00410 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00410 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00410 {overflow:visible;}
  }
}
.c_c00410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00410 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00410:after { /* webkit #35443 */
  content: '';
}
.t_c00410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00410 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00410 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00410 { /* info for Javascript */
  display:none;
}
.l_c00410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00410:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00410 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00410.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00410;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00410{transform:matrix(0.018898,-0.000662,0.008753,0.249847,0,0);-ms-transform:matrix(0.018898,-0.000662,0.008753,0.249847,0,0);-webkit-transform:matrix(0.018898,-0.000662,0.008753,0.249847,0,0);}
.mab_c00410{transform:matrix(0.086587,-0.003034,0.008753,0.249847,0,0);-ms-transform:matrix(0.086587,-0.003034,0.008753,0.249847,0,0);-webkit-transform:matrix(0.086587,-0.003034,0.008753,0.249847,0,0);}
.mb3_c00410{transform:matrix(0.104366,-0.003656,0.008753,0.249847,0,0);-ms-transform:matrix(0.104366,-0.003656,0.008753,0.249847,0,0);-webkit-transform:matrix(0.104366,-0.003656,0.008753,0.249847,0,0);}
.mfa_c00410{transform:matrix(0.105780,-0.003706,0.008753,0.249847,0,0);-ms-transform:matrix(0.105780,-0.003706,0.008753,0.249847,0,0);-webkit-transform:matrix(0.105780,-0.003706,0.008753,0.249847,0,0);}
.ma6_c00410{transform:matrix(0.120861,-0.004234,0.008753,0.249847,0,0);-ms-transform:matrix(0.120861,-0.004234,0.008753,0.249847,0,0);-webkit-transform:matrix(0.120861,-0.004234,0.008753,0.249847,0,0);}
.m8f_c00410{transform:matrix(0.124479,-0.004361,0.008753,0.249847,0,0);-ms-transform:matrix(0.124479,-0.004361,0.008753,0.249847,0,0);-webkit-transform:matrix(0.124479,-0.004361,0.008753,0.249847,0,0);}
.m80_c00410{transform:matrix(0.129386,-0.004533,0.008753,0.249847,0,0);-ms-transform:matrix(0.129386,-0.004533,0.008753,0.249847,0,0);-webkit-transform:matrix(0.129386,-0.004533,0.008753,0.249847,0,0);}
.me4_c00410{transform:matrix(0.140699,-0.004929,0.008753,0.249847,0,0);-ms-transform:matrix(0.140699,-0.004929,0.008753,0.249847,0,0);-webkit-transform:matrix(0.140699,-0.004929,0.008753,0.249847,0,0);}
.m5c_c00410{transform:matrix(0.142812,-0.005003,0.008753,0.249847,0,0);-ms-transform:matrix(0.142812,-0.005003,0.008753,0.249847,0,0);-webkit-transform:matrix(0.142812,-0.005003,0.008753,0.249847,0,0);}
.me3_c00410{transform:matrix(0.143877,-0.005041,0.008753,0.249847,0,0);-ms-transform:matrix(0.143877,-0.005041,0.008753,0.249847,0,0);-webkit-transform:matrix(0.143877,-0.005041,0.008753,0.249847,0,0);}
.m92_c00410{transform:matrix(0.148304,-0.005196,0.008753,0.249847,0,0);-ms-transform:matrix(0.148304,-0.005196,0.008753,0.249847,0,0);-webkit-transform:matrix(0.148304,-0.005196,0.008753,0.249847,0,0);}
.md0_c00410{transform:matrix(0.151022,-0.005291,0.008753,0.249847,0,0);-ms-transform:matrix(0.151022,-0.005291,0.008753,0.249847,0,0);-webkit-transform:matrix(0.151022,-0.005291,0.008753,0.249847,0,0);}
.m30_c00410{transform:matrix(0.153764,-0.003537,0.005748,0.249934,0,0);-ms-transform:matrix(0.153764,-0.003537,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153764,-0.003537,0.005748,0.249934,0,0);}
.m82_c00410{transform:matrix(0.154280,-0.005405,0.008753,0.249847,0,0);-ms-transform:matrix(0.154280,-0.005405,0.008753,0.249847,0,0);-webkit-transform:matrix(0.154280,-0.005405,0.008753,0.249847,0,0);}
.md1_c00410{transform:matrix(0.155250,-0.005439,0.008753,0.249847,0,0);-ms-transform:matrix(0.155250,-0.005439,0.008753,0.249847,0,0);-webkit-transform:matrix(0.155250,-0.005439,0.008753,0.249847,0,0);}
.m52_c00410{transform:matrix(0.159907,-0.005602,0.008753,0.249847,0,0);-ms-transform:matrix(0.159907,-0.005602,0.008753,0.249847,0,0);-webkit-transform:matrix(0.159907,-0.005602,0.008753,0.249847,0,0);}
.m65_c00410{transform:matrix(0.165633,-0.005803,0.008753,0.249847,0,0);-ms-transform:matrix(0.165633,-0.005803,0.008753,0.249847,0,0);-webkit-transform:matrix(0.165633,-0.005803,0.008753,0.249847,0,0);}
.ma5_c00410{transform:matrix(0.166128,-0.005820,0.008753,0.249847,0,0);-ms-transform:matrix(0.166128,-0.005820,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166128,-0.005820,0.008753,0.249847,0,0);}
.m9f_c00410{transform:matrix(0.166143,-0.005821,0.008753,0.249847,0,0);-ms-transform:matrix(0.166143,-0.005821,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166143,-0.005821,0.008753,0.249847,0,0);}
.m19_c00410{transform:matrix(0.167871,-0.003861,0.005748,0.249934,0,0);-ms-transform:matrix(0.167871,-0.003861,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167871,-0.003861,0.005748,0.249934,0,0);}
.m4e_c00410{transform:matrix(0.168577,-0.005906,0.008753,0.249847,0,0);-ms-transform:matrix(0.168577,-0.005906,0.008753,0.249847,0,0);-webkit-transform:matrix(0.168577,-0.005906,0.008753,0.249847,0,0);}
.m4_c00410{transform:matrix(0.170060,-0.003911,0.005748,0.249934,0,0);-ms-transform:matrix(0.170060,-0.003911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170060,-0.003911,0.005748,0.249934,0,0);}
.md_c00410{transform:matrix(0.171350,-0.003941,0.005748,0.249934,0,0);-ms-transform:matrix(0.171350,-0.003941,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171350,-0.003941,0.005748,0.249934,0,0);}
.md3_c00410{transform:matrix(0.171360,-0.006004,0.008753,0.249847,0,0);-ms-transform:matrix(0.171360,-0.006004,0.008753,0.249847,0,0);-webkit-transform:matrix(0.171360,-0.006004,0.008753,0.249847,0,0);}
.m84_c00410{transform:matrix(0.171540,-0.006010,0.008753,0.249847,0,0);-ms-transform:matrix(0.171540,-0.006010,0.008753,0.249847,0,0);-webkit-transform:matrix(0.171540,-0.006010,0.008753,0.249847,0,0);}
.mc5_c00410{transform:matrix(0.171780,-0.006018,0.008753,0.249847,0,0);-ms-transform:matrix(0.171780,-0.006018,0.008753,0.249847,0,0);-webkit-transform:matrix(0.171780,-0.006018,0.008753,0.249847,0,0);}
.m67_c00410{transform:matrix(0.171945,-0.006024,0.008753,0.249847,0,0);-ms-transform:matrix(0.171945,-0.006024,0.008753,0.249847,0,0);-webkit-transform:matrix(0.171945,-0.006024,0.008753,0.249847,0,0);}
.m94_c00410{transform:matrix(0.172224,-0.006034,0.008753,0.249847,0,0);-ms-transform:matrix(0.172224,-0.006034,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172224,-0.006034,0.008753,0.249847,0,0);}
.mf4_c00410{transform:matrix(0.172604,-0.006047,0.008753,0.249847,0,0);-ms-transform:matrix(0.172604,-0.006047,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172604,-0.006047,0.008753,0.249847,0,0);}
.mb0_c00410{transform:matrix(0.172764,-0.006053,0.008753,0.249847,0,0);-ms-transform:matrix(0.172764,-0.006053,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172764,-0.006053,0.008753,0.249847,0,0);}
.m9a_c00410{transform:matrix(0.172814,-0.006055,0.008753,0.249847,0,0);-ms-transform:matrix(0.172814,-0.006055,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172814,-0.006055,0.008753,0.249847,0,0);}
.mf8_c00410{transform:matrix(0.173089,-0.006064,0.008753,0.249847,0,0);-ms-transform:matrix(0.173089,-0.006064,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173089,-0.006064,0.008753,0.249847,0,0);}
.m33_c00410{transform:matrix(0.173134,-0.003982,0.005748,0.249934,0,0);-ms-transform:matrix(0.173134,-0.003982,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173134,-0.003982,0.005748,0.249934,0,0);}
.m73_c00410{transform:matrix(0.173249,-0.006070,0.008753,0.249847,0,0);-ms-transform:matrix(0.173249,-0.006070,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173249,-0.006070,0.008753,0.249847,0,0);}
.m0_c00410{transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);-ms-transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173559,-0.003992,0.005748,0.249934,0,0);}
.m40_c00410{transform:matrix(0.173569,-0.006081,0.008753,0.249847,0,0);-ms-transform:matrix(0.173569,-0.006081,0.008753,0.249847,0,0);-webkit-transform:matrix(0.173569,-0.006081,0.008753,0.249847,0,0);}
.m3a_c00410{transform:matrix(0.173669,-0.003994,0.005748,0.249934,0,0);-ms-transform:matrix(0.173669,-0.003994,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173669,-0.003994,0.005748,0.249934,0,0);}
.m8a_c00410{transform:matrix(0.174228,-0.006104,0.008753,0.249847,0,0);-ms-transform:matrix(0.174228,-0.006104,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174228,-0.006104,0.008753,0.249847,0,0);}
.me2_c00410{transform:matrix(0.174648,-0.006119,0.008753,0.249847,0,0);-ms-transform:matrix(0.174648,-0.006119,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174648,-0.006119,0.008753,0.249847,0,0);}
.m4d_c00410{transform:matrix(0.174673,-0.006120,0.008753,0.249847,0,0);-ms-transform:matrix(0.174673,-0.006120,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174673,-0.006120,0.008753,0.249847,0,0);}
.m66_c00410{transform:matrix(0.174788,-0.006124,0.008753,0.249847,0,0);-ms-transform:matrix(0.174788,-0.006124,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174788,-0.006124,0.008753,0.249847,0,0);}
.mdd_c00410{transform:matrix(0.174888,-0.006127,0.008753,0.249847,0,0);-ms-transform:matrix(0.174888,-0.006127,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174888,-0.006127,0.008753,0.249847,0,0);}
.mf3_c00410{transform:matrix(0.175432,-0.006146,0.008753,0.249847,0,0);-ms-transform:matrix(0.175432,-0.006146,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175432,-0.006146,0.008753,0.249847,0,0);}
.m93_c00410{transform:matrix(0.175657,-0.006154,0.008753,0.249847,0,0);-ms-transform:matrix(0.175657,-0.006154,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175657,-0.006154,0.008753,0.249847,0,0);}
.mcc_c00410{transform:matrix(0.176742,-0.006192,0.008753,0.249847,0,0);-ms-transform:matrix(0.176742,-0.006192,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176742,-0.006192,0.008753,0.249847,0,0);}
.m74_c00410{transform:matrix(0.177456,-0.006217,0.008753,0.249847,0,0);-ms-transform:matrix(0.177456,-0.006217,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177456,-0.006217,0.008753,0.249847,0,0);}
.mc0_c00410{transform:matrix(0.177476,-0.006218,0.008753,0.249847,0,0);-ms-transform:matrix(0.177476,-0.006218,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177476,-0.006218,0.008753,0.249847,0,0);}
.m2_c00410{transform:matrix(0.177833,-0.004090,0.005748,0.249934,0,0);-ms-transform:matrix(0.177833,-0.004090,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177833,-0.004090,0.005748,0.249934,0,0);}
.ma9_c00410{transform:matrix(0.178101,-0.006240,0.008753,0.249847,0,0);-ms-transform:matrix(0.178101,-0.006240,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178101,-0.006240,0.008753,0.249847,0,0);}
.mf5_c00410{transform:matrix(0.178500,-0.006254,0.008753,0.249847,0,0);-ms-transform:matrix(0.178500,-0.006254,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178500,-0.006254,0.008753,0.249847,0,0);}
.me0_c00410{transform:matrix(0.178725,-0.006262,0.008753,0.249847,0,0);-ms-transform:matrix(0.178725,-0.006262,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178725,-0.006262,0.008753,0.249847,0,0);}
.m6_c00410{transform:matrix(0.179013,-0.004117,0.005748,0.249934,0,0);-ms-transform:matrix(0.179013,-0.004117,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179013,-0.004117,0.005748,0.249934,0,0);}
.m91_c00410{transform:matrix(0.179075,-0.006274,0.008753,0.249847,0,0);-ms-transform:matrix(0.179075,-0.006274,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179075,-0.006274,0.008753,0.249847,0,0);}
.mdb_c00410{transform:matrix(0.179085,-0.006274,0.008753,0.249847,0,0);-ms-transform:matrix(0.179085,-0.006274,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179085,-0.006274,0.008753,0.249847,0,0);}
.mcf_c00410{transform:matrix(0.180424,-0.006321,0.008753,0.249847,0,0);-ms-transform:matrix(0.180424,-0.006321,0.008753,0.249847,0,0);-webkit-transform:matrix(0.180424,-0.006321,0.008753,0.249847,0,0);}
.m2a_c00410{transform:matrix(0.180602,-0.004154,0.005748,0.249934,0,0);-ms-transform:matrix(0.180602,-0.004154,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180602,-0.004154,0.005748,0.249934,0,0);}
.m39_c00410{transform:matrix(0.180757,-0.004157,0.005748,0.249934,0,0);-ms-transform:matrix(0.180757,-0.004157,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180757,-0.004157,0.005748,0.249934,0,0);}
.m24_c00410{transform:matrix(0.181047,-0.004164,0.005748,0.249934,0,0);-ms-transform:matrix(0.181047,-0.004164,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181047,-0.004164,0.005748,0.249934,0,0);}
.mf7_c00410{transform:matrix(0.181114,-0.006345,0.008753,0.249847,0,0);-ms-transform:matrix(0.181114,-0.006345,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181114,-0.006345,0.008753,0.249847,0,0);}
.mde_c00410{transform:matrix(0.181139,-0.006346,0.008753,0.249847,0,0);-ms-transform:matrix(0.181139,-0.006346,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181139,-0.006346,0.008753,0.249847,0,0);}
.m9_c00410{transform:matrix(0.181197,-0.004168,0.005748,0.249934,0,0);-ms-transform:matrix(0.181197,-0.004168,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181197,-0.004168,0.005748,0.249934,0,0);}
.m60_c00410{transform:matrix(0.181269,-0.006351,0.008753,0.249847,0,0);-ms-transform:matrix(0.181269,-0.006351,0.008753,0.249847,0,0);-webkit-transform:matrix(0.181269,-0.006351,0.008753,0.249847,0,0);}
.me8_c00410{transform:matrix(0.182168,-0.006382,0.008753,0.249847,0,0);-ms-transform:matrix(0.182168,-0.006382,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182168,-0.006382,0.008753,0.249847,0,0);}
.m58_c00410{transform:matrix(0.182178,-0.006383,0.008753,0.249847,0,0);-ms-transform:matrix(0.182178,-0.006383,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182178,-0.006383,0.008753,0.249847,0,0);}
.m61_c00410{transform:matrix(0.182563,-0.006396,0.008753,0.249847,0,0);-ms-transform:matrix(0.182563,-0.006396,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182563,-0.006396,0.008753,0.249847,0,0);}
.mc1_c00410{transform:matrix(0.182833,-0.006406,0.008753,0.249847,0,0);-ms-transform:matrix(0.182833,-0.006406,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182833,-0.006406,0.008753,0.249847,0,0);}
.m20_c00410{transform:matrix(0.183197,-0.004214,0.005748,0.249934,0,0);-ms-transform:matrix(0.183197,-0.004214,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183197,-0.004214,0.005748,0.249934,0,0);}
.mdf_c00410{transform:matrix(0.183612,-0.006433,0.008753,0.249847,0,0);-ms-transform:matrix(0.183612,-0.006433,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183612,-0.006433,0.008753,0.249847,0,0);}
.m81_c00410{transform:matrix(0.183797,-0.006439,0.008753,0.249847,0,0);-ms-transform:matrix(0.183797,-0.006439,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183797,-0.006439,0.008753,0.249847,0,0);}
.m90_c00410{transform:matrix(0.183972,-0.006445,0.008753,0.249847,0,0);-ms-transform:matrix(0.183972,-0.006445,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183972,-0.006445,0.008753,0.249847,0,0);}
.me7_c00410{transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);-ms-transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183992,-0.006446,0.008753,0.249847,0,0);}
.m49_c00410{transform:matrix(0.184237,-0.006455,0.008753,0.249847,0,0);-ms-transform:matrix(0.184237,-0.006455,0.008753,0.249847,0,0);-webkit-transform:matrix(0.184237,-0.006455,0.008753,0.249847,0,0);}
.m2d_c00410{transform:matrix(0.184961,-0.004254,0.005748,0.249934,0,0);-ms-transform:matrix(0.184961,-0.004254,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184961,-0.004254,0.005748,0.249934,0,0);}
.m2b_c00410{transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);-ms-transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185121,-0.004258,0.005748,0.249934,0,0);}
.meb_c00410{transform:matrix(0.185206,-0.006489,0.008753,0.249847,0,0);-ms-transform:matrix(0.185206,-0.006489,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185206,-0.006489,0.008753,0.249847,0,0);}
.mb6_c00410{transform:matrix(0.185246,-0.006490,0.008753,0.249847,0,0);-ms-transform:matrix(0.185246,-0.006490,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185246,-0.006490,0.008753,0.249847,0,0);}
.m85_c00410{transform:matrix(0.185656,-0.006504,0.008753,0.249847,0,0);-ms-transform:matrix(0.185656,-0.006504,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185656,-0.006504,0.008753,0.249847,0,0);}
.mdc_c00410{transform:matrix(0.185816,-0.006510,0.008753,0.249847,0,0);-ms-transform:matrix(0.185816,-0.006510,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185816,-0.006510,0.008753,0.249847,0,0);}
.md8_c00410{transform:matrix(0.186001,-0.006517,0.008753,0.249847,0,0);-ms-transform:matrix(0.186001,-0.006517,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186001,-0.006517,0.008753,0.249847,0,0);}
.mfb_c00410{transform:matrix(0.186216,-0.006524,0.008753,0.249847,0,0);-ms-transform:matrix(0.186216,-0.006524,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186216,-0.006524,0.008753,0.249847,0,0);}
.m76_c00410{transform:matrix(0.186451,-0.006532,0.008753,0.249847,0,0);-ms-transform:matrix(0.186451,-0.006532,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186451,-0.006532,0.008753,0.249847,0,0);}
.m9d_c00410{transform:matrix(0.186950,-0.006550,0.008753,0.249847,0,0);-ms-transform:matrix(0.186950,-0.006550,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186950,-0.006550,0.008753,0.249847,0,0);}
.mb_c00410{transform:matrix(0.187310,-0.004308,0.005748,0.249934,0,0);-ms-transform:matrix(0.187310,-0.004308,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187310,-0.004308,0.005748,0.249934,0,0);}
.m47_c00410{transform:matrix(0.187875,-0.006582,0.008753,0.249847,0,0);-ms-transform:matrix(0.187875,-0.006582,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187875,-0.006582,0.008753,0.249847,0,0);}
.m1d_c00410{transform:matrix(0.188545,-0.004337,0.005748,0.249934,0,0);-ms-transform:matrix(0.188545,-0.004337,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188545,-0.004337,0.005748,0.249934,0,0);}
.mbb_c00410{transform:matrix(0.188994,-0.006621,0.008753,0.249847,0,0);-ms-transform:matrix(0.188994,-0.006621,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188994,-0.006621,0.008753,0.249847,0,0);}
.m18_c00410{transform:matrix(0.190310,-0.004377,0.005748,0.249934,0,0);-ms-transform:matrix(0.190310,-0.004377,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190310,-0.004377,0.005748,0.249934,0,0);}
.maf_c00410{transform:matrix(0.190493,-0.006674,0.008753,0.249847,0,0);-ms-transform:matrix(0.190493,-0.006674,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190493,-0.006674,0.008753,0.249847,0,0);}
.me1_c00410{transform:matrix(0.190778,-0.006684,0.008753,0.249847,0,0);-ms-transform:matrix(0.190778,-0.006684,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190778,-0.006684,0.008753,0.249847,0,0);}
.md2_c00410{transform:matrix(0.191203,-0.006699,0.008753,0.249847,0,0);-ms-transform:matrix(0.191203,-0.006699,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191203,-0.006699,0.008753,0.249847,0,0);}
.mb2_c00410{transform:matrix(0.191438,-0.006707,0.008753,0.249847,0,0);-ms-transform:matrix(0.191438,-0.006707,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191438,-0.006707,0.008753,0.249847,0,0);}
.mc2_c00410{transform:matrix(0.191493,-0.006709,0.008753,0.249847,0,0);-ms-transform:matrix(0.191493,-0.006709,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191493,-0.006709,0.008753,0.249847,0,0);}
.mba_c00410{transform:matrix(0.191547,-0.006711,0.008753,0.249847,0,0);-ms-transform:matrix(0.191547,-0.006711,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191547,-0.006711,0.008753,0.249847,0,0);}
.m4b_c00410{transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);-ms-transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191627,-0.006714,0.008753,0.249847,0,0);}
.m44_c00410{transform:matrix(0.192582,-0.006747,0.008753,0.249847,0,0);-ms-transform:matrix(0.192582,-0.006747,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192582,-0.006747,0.008753,0.249847,0,0);}
.mf0_c00410{transform:matrix(0.192762,-0.006753,0.008753,0.249847,0,0);-ms-transform:matrix(0.192762,-0.006753,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192762,-0.006753,0.008753,0.249847,0,0);}
.m1a_c00410{transform:matrix(0.192784,-0.004434,0.005748,0.249934,0,0);-ms-transform:matrix(0.192784,-0.004434,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192784,-0.004434,0.005748,0.249934,0,0);}
.m89_c00410{transform:matrix(0.192837,-0.006756,0.008753,0.249847,0,0);-ms-transform:matrix(0.192837,-0.006756,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192837,-0.006756,0.008753,0.249847,0,0);}
.m2f_c00410{transform:matrix(0.193024,-0.004440,0.005748,0.249934,0,0);-ms-transform:matrix(0.193024,-0.004440,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193024,-0.004440,0.005748,0.249934,0,0);}
.m83_c00410{transform:matrix(0.193137,-0.006767,0.008753,0.249847,0,0);-ms-transform:matrix(0.193137,-0.006767,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193137,-0.006767,0.008753,0.249847,0,0);}
.m75_c00410{transform:matrix(0.193416,-0.006776,0.008753,0.249847,0,0);-ms-transform:matrix(0.193416,-0.006776,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193416,-0.006776,0.008753,0.249847,0,0);}
.mc6_c00410{transform:matrix(0.193706,-0.006787,0.008753,0.249847,0,0);-ms-transform:matrix(0.193706,-0.006787,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193706,-0.006787,0.008753,0.249847,0,0);}
.m71_c00410{transform:matrix(0.194001,-0.006797,0.008753,0.249847,0,0);-ms-transform:matrix(0.194001,-0.006797,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194001,-0.006797,0.008753,0.249847,0,0);}
.m4c_c00410{transform:matrix(0.194286,-0.006807,0.008753,0.249847,0,0);-ms-transform:matrix(0.194286,-0.006807,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194286,-0.006807,0.008753,0.249847,0,0);}
.ma7_c00410{transform:matrix(0.194341,-0.006809,0.008753,0.249847,0,0);-ms-transform:matrix(0.194341,-0.006809,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194341,-0.006809,0.008753,0.249847,0,0);}
.mf6_c00410{transform:matrix(0.194361,-0.006809,0.008753,0.249847,0,0);-ms-transform:matrix(0.194361,-0.006809,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194361,-0.006809,0.008753,0.249847,0,0);}
.mb5_c00410{transform:matrix(0.194726,-0.006822,0.008753,0.249847,0,0);-ms-transform:matrix(0.194726,-0.006822,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194726,-0.006822,0.008753,0.249847,0,0);}
.m1c_c00410{transform:matrix(0.194903,-0.004483,0.005748,0.249934,0,0);-ms-transform:matrix(0.194903,-0.004483,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194903,-0.004483,0.005748,0.249934,0,0);}
.m99_c00410{transform:matrix(0.194980,-0.006831,0.008753,0.249847,0,0);-ms-transform:matrix(0.194980,-0.006831,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194980,-0.006831,0.008753,0.249847,0,0);}
.m59_c00410{transform:matrix(0.195015,-0.006832,0.008753,0.249847,0,0);-ms-transform:matrix(0.195015,-0.006832,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195015,-0.006832,0.008753,0.249847,0,0);}
.m1e_c00410{transform:matrix(0.195363,-0.004493,0.005748,0.249934,0,0);-ms-transform:matrix(0.195363,-0.004493,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195363,-0.004493,0.005748,0.249934,0,0);}
.m64_c00410{transform:matrix(0.195455,-0.006848,0.008753,0.249847,0,0);-ms-transform:matrix(0.195455,-0.006848,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195455,-0.006848,0.008753,0.249847,0,0);}
.mbd_c00410{transform:matrix(0.195790,-0.006860,0.008753,0.249847,0,0);-ms-transform:matrix(0.195790,-0.006860,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195790,-0.006860,0.008753,0.249847,0,0);}
.m88_c00410{transform:matrix(0.195885,-0.006863,0.008753,0.249847,0,0);-ms-transform:matrix(0.195885,-0.006863,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195885,-0.006863,0.008753,0.249847,0,0);}
.m23_c00410{transform:matrix(0.196278,-0.004514,0.005748,0.249934,0,0);-ms-transform:matrix(0.196278,-0.004514,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196278,-0.004514,0.005748,0.249934,0,0);}
.m7d_c00410{transform:matrix(0.196789,-0.006895,0.008753,0.249847,0,0);-ms-transform:matrix(0.196789,-0.006895,0.008753,0.249847,0,0);-webkit-transform:matrix(0.196789,-0.006895,0.008753,0.249847,0,0);}
.m54_c00410{transform:matrix(0.197269,-0.006911,0.008753,0.249847,0,0);-ms-transform:matrix(0.197269,-0.006911,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197269,-0.006911,0.008753,0.249847,0,0);}
.mc3_c00410{transform:matrix(0.197679,-0.006926,0.008753,0.249847,0,0);-ms-transform:matrix(0.197679,-0.006926,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197679,-0.006926,0.008753,0.249847,0,0);}
.m11_c00410{transform:matrix(0.198083,-0.004556,0.005748,0.249934,0,0);-ms-transform:matrix(0.198083,-0.004556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198083,-0.004556,0.005748,0.249934,0,0);}
.md4_c00410{transform:matrix(0.198508,-0.006955,0.008753,0.249847,0,0);-ms-transform:matrix(0.198508,-0.006955,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198508,-0.006955,0.008753,0.249847,0,0);}
.mb7_c00410{transform:matrix(0.198668,-0.006960,0.008753,0.249847,0,0);-ms-transform:matrix(0.198668,-0.006960,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198668,-0.006960,0.008753,0.249847,0,0);}
.m56_c00410{transform:matrix(0.198718,-0.006962,0.008753,0.249847,0,0);-ms-transform:matrix(0.198718,-0.006962,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198718,-0.006962,0.008753,0.249847,0,0);}
.mef_c00410{transform:matrix(0.198798,-0.006965,0.008753,0.249847,0,0);-ms-transform:matrix(0.198798,-0.006965,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198798,-0.006965,0.008753,0.249847,0,0);}
.m26_c00410{transform:matrix(0.200077,-0.004602,0.005748,0.249934,0,0);-ms-transform:matrix(0.200077,-0.004602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200077,-0.004602,0.005748,0.249934,0,0);}
.m22_c00410{transform:matrix(0.200667,-0.004615,0.005748,0.249934,0,0);-ms-transform:matrix(0.200667,-0.004615,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200667,-0.004615,0.005748,0.249934,0,0);}
.m8_c00410{transform:matrix(0.200742,-0.004617,0.005748,0.249934,0,0);-ms-transform:matrix(0.200742,-0.004617,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200742,-0.004617,0.005748,0.249934,0,0);}
.mca_c00410{transform:matrix(0.201212,-0.007049,0.008753,0.249847,0,0);-ms-transform:matrix(0.201212,-0.007049,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201212,-0.007049,0.008753,0.249847,0,0);}
.maa_c00410{transform:matrix(0.201247,-0.007051,0.008753,0.249847,0,0);-ms-transform:matrix(0.201247,-0.007051,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201247,-0.007051,0.008753,0.249847,0,0);}
.m4a_c00410{transform:matrix(0.201681,-0.007066,0.008753,0.249847,0,0);-ms-transform:matrix(0.201681,-0.007066,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201681,-0.007066,0.008753,0.249847,0,0);}
.m2c_c00410{transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);-ms-transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);}
.ma3_c00410{transform:matrix(0.202066,-0.007079,0.008753,0.249847,0,0);-ms-transform:matrix(0.202066,-0.007079,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202066,-0.007079,0.008753,0.249847,0,0);}
.ma0_c00410{transform:matrix(0.202551,-0.007096,0.008753,0.249847,0,0);-ms-transform:matrix(0.202551,-0.007096,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202551,-0.007096,0.008753,0.249847,0,0);}
.mbf_c00410{transform:matrix(0.202781,-0.007104,0.008753,0.249847,0,0);-ms-transform:matrix(0.202781,-0.007104,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202781,-0.007104,0.008753,0.249847,0,0);}
.m12_c00410{transform:matrix(0.202791,-0.004664,0.005748,0.249934,0,0);-ms-transform:matrix(0.202791,-0.004664,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202791,-0.004664,0.005748,0.249934,0,0);}
.m96_c00410{transform:matrix(0.202871,-0.007108,0.008753,0.249847,0,0);-ms-transform:matrix(0.202871,-0.007108,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202871,-0.007108,0.008753,0.249847,0,0);}
.md5_c00410{transform:matrix(0.203080,-0.007115,0.008753,0.249847,0,0);-ms-transform:matrix(0.203080,-0.007115,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203080,-0.007115,0.008753,0.249847,0,0);}
.m7f_c00410{transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);-ms-transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203205,-0.007119,0.008753,0.249847,0,0);}
.mad_c00410{transform:matrix(0.203395,-0.007126,0.008753,0.249847,0,0);-ms-transform:matrix(0.203395,-0.007126,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203395,-0.007126,0.008753,0.249847,0,0);}
.mc8_c00410{transform:matrix(0.203475,-0.007129,0.008753,0.249847,0,0);-ms-transform:matrix(0.203475,-0.007129,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203475,-0.007129,0.008753,0.249847,0,0);}
.m34_c00410{transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-ms-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);}
.m5b_c00410{transform:matrix(0.203720,-0.007137,0.008753,0.249847,0,0);-ms-transform:matrix(0.203720,-0.007137,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203720,-0.007137,0.008753,0.249847,0,0);}
.m3_c00410{transform:matrix(0.204501,-0.004704,0.005748,0.249934,0,0);-ms-transform:matrix(0.204501,-0.004704,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204501,-0.004704,0.005748,0.249934,0,0);}
.mb9_c00410{transform:matrix(0.204505,-0.007165,0.008753,0.249847,0,0);-ms-transform:matrix(0.204505,-0.007165,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204505,-0.007165,0.008753,0.249847,0,0);}
.m7_c00410{transform:matrix(0.204636,-0.004707,0.005748,0.249934,0,0);-ms-transform:matrix(0.204636,-0.004707,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204636,-0.004707,0.005748,0.249934,0,0);}
.m25_c00410{transform:matrix(0.204861,-0.004712,0.005748,0.249934,0,0);-ms-transform:matrix(0.204861,-0.004712,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204861,-0.004712,0.005748,0.249934,0,0);}
.m35_c00410{transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);-ms-transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205146,-0.004718,0.005748,0.249934,0,0);}
.mb8_c00410{transform:matrix(0.205569,-0.007202,0.008753,0.249847,0,0);-ms-transform:matrix(0.205569,-0.007202,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205569,-0.007202,0.008753,0.249847,0,0);}
.m3c_c00410{transform:matrix(0.205666,-0.004730,0.005748,0.249934,0,0);-ms-transform:matrix(0.205666,-0.004730,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205666,-0.004730,0.005748,0.249934,0,0);}
.m72_c00410{transform:matrix(0.205744,-0.007208,0.008753,0.249847,0,0);-ms-transform:matrix(0.205744,-0.007208,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205744,-0.007208,0.008753,0.249847,0,0);}
.mb1_c00410{transform:matrix(0.205789,-0.007210,0.008753,0.249847,0,0);-ms-transform:matrix(0.205789,-0.007210,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205789,-0.007210,0.008753,0.249847,0,0);}
.m5_c00410{transform:matrix(0.206090,-0.004740,0.005748,0.249934,0,0);-ms-transform:matrix(0.206090,-0.004740,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206090,-0.004740,0.005748,0.249934,0,0);}
.mea_c00410{transform:matrix(0.206134,-0.007222,0.008753,0.249847,0,0);-ms-transform:matrix(0.206134,-0.007222,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206134,-0.007222,0.008753,0.249847,0,0);}
.mc4_c00410{transform:matrix(0.206413,-0.007232,0.008753,0.249847,0,0);-ms-transform:matrix(0.206413,-0.007232,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206413,-0.007232,0.008753,0.249847,0,0);}
.m86_c00410{transform:matrix(0.206808,-0.007246,0.008753,0.249847,0,0);-ms-transform:matrix(0.206808,-0.007246,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206808,-0.007246,0.008753,0.249847,0,0);}
.m63_c00410{transform:matrix(0.206958,-0.007251,0.008753,0.249847,0,0);-ms-transform:matrix(0.206958,-0.007251,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206958,-0.007251,0.008753,0.249847,0,0);}
.m8e_c00410{transform:matrix(0.207353,-0.007265,0.008753,0.249847,0,0);-ms-transform:matrix(0.207353,-0.007265,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207353,-0.007265,0.008753,0.249847,0,0);}
.m41_c00410{transform:matrix(0.208397,-0.007301,0.008753,0.249847,0,0);-ms-transform:matrix(0.208397,-0.007301,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208397,-0.007301,0.008753,0.249847,0,0);}
.m27_c00410{transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);-ms-transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208985,-0.004807,0.005748,0.249934,0,0);}
.ma4_c00410{transform:matrix(0.209372,-0.007335,0.008753,0.249847,0,0);-ms-transform:matrix(0.209372,-0.007335,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209372,-0.007335,0.008753,0.249847,0,0);}
.m87_c00410{transform:matrix(0.209476,-0.007339,0.008753,0.249847,0,0);-ms-transform:matrix(0.209476,-0.007339,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209476,-0.007339,0.008753,0.249847,0,0);}
.me9_c00410{transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);-ms-transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209536,-0.007341,0.008753,0.249847,0,0);}
.mbe_c00410{transform:matrix(0.209951,-0.007356,0.008753,0.249847,0,0);-ms-transform:matrix(0.209951,-0.007356,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209951,-0.007356,0.008753,0.249847,0,0);}
.m5e_c00410{transform:matrix(0.210146,-0.007362,0.008753,0.249847,0,0);-ms-transform:matrix(0.210146,-0.007362,0.008753,0.249847,0,0);-webkit-transform:matrix(0.210146,-0.007362,0.008753,0.249847,0,0);}
.m14_c00410{transform:matrix(0.211084,-0.004855,0.005748,0.249934,0,0);-ms-transform:matrix(0.211084,-0.004855,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211084,-0.004855,0.005748,0.249934,0,0);}
.m32_c00410{transform:matrix(0.211139,-0.004856,0.005748,0.249934,0,0);-ms-transform:matrix(0.211139,-0.004856,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211139,-0.004856,0.005748,0.249934,0,0);}
.mf1_c00410{transform:matrix(0.211395,-0.007406,0.008753,0.249847,0,0);-ms-transform:matrix(0.211395,-0.007406,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211395,-0.007406,0.008753,0.249847,0,0);}
.m8b_c00410{transform:matrix(0.211870,-0.007423,0.008753,0.249847,0,0);-ms-transform:matrix(0.211870,-0.007423,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211870,-0.007423,0.008753,0.249847,0,0);}
.m1b_c00410{transform:matrix(0.212164,-0.004880,0.005748,0.249934,0,0);-ms-transform:matrix(0.212164,-0.004880,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212164,-0.004880,0.005748,0.249934,0,0);}
.m7e_c00410{transform:matrix(0.212899,-0.007459,0.008753,0.249847,0,0);-ms-transform:matrix(0.212899,-0.007459,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212899,-0.007459,0.008753,0.249847,0,0);}
.mc9_c00410{transform:matrix(0.212984,-0.007462,0.008753,0.249847,0,0);-ms-transform:matrix(0.212984,-0.007462,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212984,-0.007462,0.008753,0.249847,0,0);}
.mec_c00410{transform:matrix(0.213719,-0.007488,0.008753,0.249847,0,0);-ms-transform:matrix(0.213719,-0.007488,0.008753,0.249847,0,0);-webkit-transform:matrix(0.213719,-0.007488,0.008753,0.249847,0,0);}
.m45_c00410{transform:matrix(0.213734,-0.007488,0.008753,0.249847,0,0);-ms-transform:matrix(0.213734,-0.007488,0.008753,0.249847,0,0);-webkit-transform:matrix(0.213734,-0.007488,0.008753,0.249847,0,0);}
.m57_c00410{transform:matrix(0.214179,-0.007504,0.008753,0.249847,0,0);-ms-transform:matrix(0.214179,-0.007504,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214179,-0.007504,0.008753,0.249847,0,0);}
.m1f_c00410{transform:matrix(0.214248,-0.004928,0.005748,0.249934,0,0);-ms-transform:matrix(0.214248,-0.004928,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214248,-0.004928,0.005748,0.249934,0,0);}
.m77_c00410{transform:matrix(0.214393,-0.007511,0.008753,0.249847,0,0);-ms-transform:matrix(0.214393,-0.007511,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214393,-0.007511,0.008753,0.249847,0,0);}
.m38_c00410{transform:matrix(0.214398,-0.004931,0.005748,0.249934,0,0);-ms-transform:matrix(0.214398,-0.004931,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214398,-0.004931,0.005748,0.249934,0,0);}
.m46_c00410{transform:matrix(0.214438,-0.007513,0.008753,0.249847,0,0);-ms-transform:matrix(0.214438,-0.007513,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214438,-0.007513,0.008753,0.249847,0,0);}
.ma2_c00410{transform:matrix(0.214668,-0.007521,0.008753,0.249847,0,0);-ms-transform:matrix(0.214668,-0.007521,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214668,-0.007521,0.008753,0.249847,0,0);}
.m7c_c00410{transform:matrix(0.215048,-0.007534,0.008753,0.249847,0,0);-ms-transform:matrix(0.215048,-0.007534,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215048,-0.007534,0.008753,0.249847,0,0);}
.mf9_c00410{transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);-ms-transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);}
.me6_c00410{transform:matrix(0.216067,-0.007570,0.008753,0.249847,0,0);-ms-transform:matrix(0.216067,-0.007570,0.008753,0.249847,0,0);-webkit-transform:matrix(0.216067,-0.007570,0.008753,0.249847,0,0);}
.m16_c00410{transform:matrix(0.216338,-0.004976,0.005748,0.249934,0,0);-ms-transform:matrix(0.216338,-0.004976,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216338,-0.004976,0.005748,0.249934,0,0);}
.m62_c00410{transform:matrix(0.216397,-0.007581,0.008753,0.249847,0,0);-ms-transform:matrix(0.216397,-0.007581,0.008753,0.249847,0,0);-webkit-transform:matrix(0.216397,-0.007581,0.008753,0.249847,0,0);}
.m13_c00410{transform:matrix(0.216648,-0.004983,0.005748,0.249934,0,0);-ms-transform:matrix(0.216648,-0.004983,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216648,-0.004983,0.005748,0.249934,0,0);}
.md6_c00410{transform:matrix(0.217646,-0.007625,0.008753,0.249847,0,0);-ms-transform:matrix(0.217646,-0.007625,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217646,-0.007625,0.008753,0.249847,0,0);}
.m5f_c00410{transform:matrix(0.217751,-0.007629,0.008753,0.249847,0,0);-ms-transform:matrix(0.217751,-0.007629,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217751,-0.007629,0.008753,0.249847,0,0);}
.med_c00410{transform:matrix(0.218181,-0.007644,0.008753,0.249847,0,0);-ms-transform:matrix(0.218181,-0.007644,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218181,-0.007644,0.008753,0.249847,0,0);}
.mc7_c00410{transform:matrix(0.218511,-0.007656,0.008753,0.249847,0,0);-ms-transform:matrix(0.218511,-0.007656,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218511,-0.007656,0.008753,0.249847,0,0);}
.m28_c00410{transform:matrix(0.218702,-0.005030,0.005748,0.249934,0,0);-ms-transform:matrix(0.218702,-0.005030,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218702,-0.005030,0.005748,0.249934,0,0);}
.m5d_c00410{transform:matrix(0.218861,-0.007668,0.008753,0.249847,0,0);-ms-transform:matrix(0.218861,-0.007668,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218861,-0.007668,0.008753,0.249847,0,0);}
.m9b_c00410{transform:matrix(0.219111,-0.007677,0.008753,0.249847,0,0);-ms-transform:matrix(0.219111,-0.007677,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219111,-0.007677,0.008753,0.249847,0,0);}
.mf2_c00410{transform:matrix(0.219315,-0.007684,0.008753,0.249847,0,0);-ms-transform:matrix(0.219315,-0.007684,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219315,-0.007684,0.008753,0.249847,0,0);}
.m9e_c00410{transform:matrix(0.220130,-0.007712,0.008753,0.249847,0,0);-ms-transform:matrix(0.220130,-0.007712,0.008753,0.249847,0,0);-webkit-transform:matrix(0.220130,-0.007712,0.008753,0.249847,0,0);}
.m78_c00410{transform:matrix(0.220365,-0.007720,0.008753,0.249847,0,0);-ms-transform:matrix(0.220365,-0.007720,0.008753,0.249847,0,0);-webkit-transform:matrix(0.220365,-0.007720,0.008753,0.249847,0,0);}
.m68_c00410{transform:matrix(0.221244,-0.007751,0.008753,0.249847,0,0);-ms-transform:matrix(0.221244,-0.007751,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221244,-0.007751,0.008753,0.249847,0,0);}
.m3f_c00410{transform:matrix(0.222781,-0.005124,0.005748,0.249934,0,0);-ms-transform:matrix(0.222781,-0.005124,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222781,-0.005124,0.005748,0.249934,0,0);}
.m3b_c00410{transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);-ms-transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223211,-0.005134,0.005748,0.249934,0,0);}
.md9_c00410{transform:matrix(0.223348,-0.007825,0.008753,0.249847,0,0);-ms-transform:matrix(0.223348,-0.007825,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223348,-0.007825,0.008753,0.249847,0,0);}
.m7b_c00410{transform:matrix(0.223538,-0.007832,0.008753,0.249847,0,0);-ms-transform:matrix(0.223538,-0.007832,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223538,-0.007832,0.008753,0.249847,0,0);}
.m7a_c00410{transform:matrix(0.223783,-0.007840,0.008753,0.249847,0,0);-ms-transform:matrix(0.223783,-0.007840,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223783,-0.007840,0.008753,0.249847,0,0);}
.m53_c00410{transform:matrix(0.223983,-0.007847,0.008753,0.249847,0,0);-ms-transform:matrix(0.223983,-0.007847,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223983,-0.007847,0.008753,0.249847,0,0);}
.m2e_c00410{transform:matrix(0.224306,-0.005159,0.005748,0.249934,0,0);-ms-transform:matrix(0.224306,-0.005159,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224306,-0.005159,0.005748,0.249934,0,0);}
.m97_c00410{transform:matrix(0.225072,-0.007885,0.008753,0.249847,0,0);-ms-transform:matrix(0.225072,-0.007885,0.008753,0.249847,0,0);-webkit-transform:matrix(0.225072,-0.007885,0.008753,0.249847,0,0);}
.ma1_c00410{transform:matrix(0.225202,-0.007890,0.008753,0.249847,0,0);-ms-transform:matrix(0.225202,-0.007890,0.008753,0.249847,0,0);-webkit-transform:matrix(0.225202,-0.007890,0.008753,0.249847,0,0);}
.m8c_c00410{transform:matrix(0.226141,-0.007923,0.008753,0.249847,0,0);-ms-transform:matrix(0.226141,-0.007923,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226141,-0.007923,0.008753,0.249847,0,0);}
.m3e_c00410{transform:matrix(0.227660,-0.005236,0.005748,0.249934,0,0);-ms-transform:matrix(0.227660,-0.005236,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227660,-0.005236,0.005748,0.249934,0,0);}
.mac_c00410{transform:matrix(0.227885,-0.007984,0.008753,0.249847,0,0);-ms-transform:matrix(0.227885,-0.007984,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227885,-0.007984,0.008753,0.249847,0,0);}
.mc_c00410{transform:matrix(0.228120,-0.005247,0.005748,0.249934,0,0);-ms-transform:matrix(0.228120,-0.005247,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228120,-0.005247,0.005748,0.249934,0,0);}
.m98_c00410{transform:matrix(0.230274,-0.008068,0.008753,0.249847,0,0);-ms-transform:matrix(0.230274,-0.008068,0.008753,0.249847,0,0);-webkit-transform:matrix(0.230274,-0.008068,0.008753,0.249847,0,0);}
.m95_c00410{transform:matrix(0.230564,-0.008078,0.008753,0.249847,0,0);-ms-transform:matrix(0.230564,-0.008078,0.008753,0.249847,0,0);-webkit-transform:matrix(0.230564,-0.008078,0.008753,0.249847,0,0);}
.m8d_c00410{transform:matrix(0.231228,-0.008101,0.008753,0.249847,0,0);-ms-transform:matrix(0.231228,-0.008101,0.008753,0.249847,0,0);-webkit-transform:matrix(0.231228,-0.008101,0.008753,0.249847,0,0);}
.m17_c00410{transform:matrix(0.231569,-0.005326,0.005748,0.249934,0,0);-ms-transform:matrix(0.231569,-0.005326,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231569,-0.005326,0.005748,0.249934,0,0);}
.mee_c00410{transform:matrix(0.232302,-0.008139,0.008753,0.249847,0,0);-ms-transform:matrix(0.232302,-0.008139,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232302,-0.008139,0.008753,0.249847,0,0);}
.mda_c00410{transform:matrix(0.232497,-0.008146,0.008753,0.249847,0,0);-ms-transform:matrix(0.232497,-0.008146,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232497,-0.008146,0.008753,0.249847,0,0);}
.mcb_c00410{transform:matrix(0.232672,-0.008152,0.008753,0.249847,0,0);-ms-transform:matrix(0.232672,-0.008152,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232672,-0.008152,0.008753,0.249847,0,0);}
.m55_c00410{transform:matrix(0.232827,-0.008157,0.008753,0.249847,0,0);-ms-transform:matrix(0.232827,-0.008157,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232827,-0.008157,0.008753,0.249847,0,0);}
.me_c00410{transform:matrix(0.232908,-0.005357,0.005748,0.249934,0,0);-ms-transform:matrix(0.232908,-0.005357,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232908,-0.005357,0.005748,0.249934,0,0);}
.m43_c00410{transform:matrix(0.234536,-0.008217,0.008753,0.249847,0,0);-ms-transform:matrix(0.234536,-0.008217,0.008753,0.249847,0,0);-webkit-transform:matrix(0.234536,-0.008217,0.008753,0.249847,0,0);}
.m3d_c00410{transform:matrix(0.235143,-0.005408,0.005748,0.249934,0,0);-ms-transform:matrix(0.235143,-0.005408,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235143,-0.005408,0.005748,0.249934,0,0);}
.md7_c00410{transform:matrix(0.235555,-0.008253,0.008753,0.249847,0,0);-ms-transform:matrix(0.235555,-0.008253,0.008753,0.249847,0,0);-webkit-transform:matrix(0.235555,-0.008253,0.008753,0.249847,0,0);}
.ma8_c00410{transform:matrix(0.236495,-0.008286,0.008753,0.249847,0,0);-ms-transform:matrix(0.236495,-0.008286,0.008753,0.249847,0,0);-webkit-transform:matrix(0.236495,-0.008286,0.008753,0.249847,0,0);}
.m37_c00410{transform:matrix(0.237317,-0.005458,0.005748,0.249934,0,0);-ms-transform:matrix(0.237317,-0.005458,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237317,-0.005458,0.005748,0.249934,0,0);}
.m10_c00410{transform:matrix(0.239262,-0.005503,0.005748,0.249934,0,0);-ms-transform:matrix(0.239262,-0.005503,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239262,-0.005503,0.005748,0.249934,0,0);}
.m36_c00410{transform:matrix(0.239877,-0.005517,0.005748,0.249934,0,0);-ms-transform:matrix(0.239877,-0.005517,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239877,-0.005517,0.005748,0.249934,0,0);}
.m48_c00410{transform:matrix(0.240258,-0.008417,0.008753,0.249847,0,0);-ms-transform:matrix(0.240258,-0.008417,0.008753,0.249847,0,0);-webkit-transform:matrix(0.240258,-0.008417,0.008753,0.249847,0,0);}
.m79_c00410{transform:matrix(0.242151,-0.008484,0.008753,0.249847,0,0);-ms-transform:matrix(0.242151,-0.008484,0.008753,0.249847,0,0);-webkit-transform:matrix(0.242151,-0.008484,0.008753,0.249847,0,0);}
.m21_c00410{transform:matrix(0.244665,-0.005627,0.005748,0.249934,0,0);-ms-transform:matrix(0.244665,-0.005627,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244665,-0.005627,0.005748,0.249934,0,0);}
.mf_c00410{transform:matrix(0.247085,-0.005683,0.005748,0.249934,0,0);-ms-transform:matrix(0.247085,-0.005683,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247085,-0.005683,0.005748,0.249934,0,0);}
.m42_c00410{transform:matrix(0.248762,-0.008715,0.008753,0.249847,0,0);-ms-transform:matrix(0.248762,-0.008715,0.008753,0.249847,0,0);-webkit-transform:matrix(0.248762,-0.008715,0.008753,0.249847,0,0);}
.m29_c00410{transform:matrix(0.251084,-0.005775,0.005748,0.249934,0,0);-ms-transform:matrix(0.251084,-0.005775,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251084,-0.005775,0.005748,0.249934,0,0);}
.m51_c00410{transform:matrix(0.258556,-0.009059,0.008753,0.249847,0,0);-ms-transform:matrix(0.258556,-0.009059,0.008753,0.249847,0,0);-webkit-transform:matrix(0.258556,-0.009059,0.008753,0.249847,0,0);}
.m31_c00410{transform:matrix(0.259021,-0.005957,0.005748,0.249934,0,0);-ms-transform:matrix(0.259021,-0.005957,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259021,-0.005957,0.005748,0.249934,0,0);}
.mbc_c00410{transform:matrix(0.264887,-0.009280,0.008753,0.249847,0,0);-ms-transform:matrix(0.264887,-0.009280,0.008753,0.249847,0,0);-webkit-transform:matrix(0.264887,-0.009280,0.008753,0.249847,0,0);}
.m50_c00410{transform:matrix(0.267906,-0.009386,0.008753,0.249847,0,0);-ms-transform:matrix(0.267906,-0.009386,0.008753,0.249847,0,0);-webkit-transform:matrix(0.267906,-0.009386,0.008753,0.249847,0,0);}
.m15_c00410{transform:matrix(0.268219,-0.006169,0.005748,0.249934,0,0);-ms-transform:matrix(0.268219,-0.006169,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268219,-0.006169,0.005748,0.249934,0,0);}
.m6b_c00410{transform:matrix(0.268955,-0.009423,0.008753,0.249847,0,0);-ms-transform:matrix(0.268955,-0.009423,0.008753,0.249847,0,0);-webkit-transform:matrix(0.268955,-0.009423,0.008753,0.249847,0,0);}
.m5a_c00410{transform:matrix(0.277360,-0.009717,0.008753,0.249847,0,0);-ms-transform:matrix(0.277360,-0.009717,0.008753,0.249847,0,0);-webkit-transform:matrix(0.277360,-0.009717,0.008753,0.249847,0,0);}
.m4f_c00410{transform:matrix(0.277620,-0.009726,0.008753,0.249847,0,0);-ms-transform:matrix(0.277620,-0.009726,0.008753,0.249847,0,0);-webkit-transform:matrix(0.277620,-0.009726,0.008753,0.249847,0,0);}
.me5_c00410{transform:matrix(0.296483,-0.010387,0.008753,0.249847,0,0);-ms-transform:matrix(0.296483,-0.010387,0.008753,0.249847,0,0);-webkit-transform:matrix(0.296483,-0.010387,0.008753,0.249847,0,0);}
.m6c_c00410{transform:matrix(0.304253,-0.010660,0.008753,0.249847,0,0);-ms-transform:matrix(0.304253,-0.010660,0.008753,0.249847,0,0);-webkit-transform:matrix(0.304253,-0.010660,0.008753,0.249847,0,0);}
.mb4_c00410{transform:matrix(0.311269,-0.010905,0.008753,0.249847,0,0);-ms-transform:matrix(0.311269,-0.010905,0.008753,0.249847,0,0);-webkit-transform:matrix(0.311269,-0.010905,0.008753,0.249847,0,0);}
.m9c_c00410{transform:matrix(0.311669,-0.010919,0.008753,0.249847,0,0);-ms-transform:matrix(0.311669,-0.010919,0.008753,0.249847,0,0);-webkit-transform:matrix(0.311669,-0.010919,0.008753,0.249847,0,0);}
.mce_c00410{transform:matrix(0.339412,-0.011891,0.008753,0.249847,0,0);-ms-transform:matrix(0.339412,-0.011891,0.008753,0.249847,0,0);-webkit-transform:matrix(0.339412,-0.011891,0.008753,0.249847,0,0);}
.m6a_c00410{transform:matrix(0.346333,-0.012134,0.008753,0.249847,0,0);-ms-transform:matrix(0.346333,-0.012134,0.008753,0.249847,0,0);-webkit-transform:matrix(0.346333,-0.012134,0.008753,0.249847,0,0);}
.ma_c00410{transform:matrix(0.354896,-0.008163,0.005748,0.249934,0,0);-ms-transform:matrix(0.354896,-0.008163,0.005748,0.249934,0,0);-webkit-transform:matrix(0.354896,-0.008163,0.005748,0.249934,0,0);}
.m1_c00410{transform:matrix(0.364484,-0.008383,0.005748,0.249934,0,0);-ms-transform:matrix(0.364484,-0.008383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.364484,-0.008383,0.005748,0.249934,0,0);}
.m69_c00410{transform:matrix(0.382071,-0.013386,0.008753,0.249847,0,0);-ms-transform:matrix(0.382071,-0.013386,0.008753,0.249847,0,0);-webkit-transform:matrix(0.382071,-0.013386,0.008753,0.249847,0,0);}
.mae_c00410{transform:matrix(0.385723,-0.013514,0.008753,0.249847,0,0);-ms-transform:matrix(0.385723,-0.013514,0.008753,0.249847,0,0);-webkit-transform:matrix(0.385723,-0.013514,0.008753,0.249847,0,0);}
.m6e_c00410{transform:matrix(0.401559,-0.014069,0.008753,0.249847,0,0);-ms-transform:matrix(0.401559,-0.014069,0.008753,0.249847,0,0);-webkit-transform:matrix(0.401559,-0.014069,0.008753,0.249847,0,0);}
.m6f_c00410{transform:matrix(0.471026,-0.016502,0.008753,0.249847,0,0);-ms-transform:matrix(0.471026,-0.016502,0.008753,0.249847,0,0);-webkit-transform:matrix(0.471026,-0.016502,0.008753,0.249847,0,0);}
.mcd_c00410{transform:matrix(0.513165,-0.017979,0.008753,0.249847,0,0);-ms-transform:matrix(0.513165,-0.017979,0.008753,0.249847,0,0);-webkit-transform:matrix(0.513165,-0.017979,0.008753,0.249847,0,0);}
.m6d_c00410{transform:matrix(1.088362,-0.038131,0.008753,0.249847,0,0);-ms-transform:matrix(1.088362,-0.038131,0.008753,0.249847,0,0);-webkit-transform:matrix(1.088362,-0.038131,0.008753,0.249847,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:0.000000px;}
.fc0_c00410{color:transparent;}
.fsa_c00410{font-size:40.934149px;}
.fs3_c00410{font-size:57.765273px;}
.fs6_c00410{font-size:58.777240px;}
.fs5_c00410{font-size:59.865828px;}
.fs8_c00410{font-size:60.876427px;}
.fs2_c00410{font-size:60.916106px;}
.fsd_c00410{font-size:61.926021px;}
.fsf_c00410{font-size:62.975614px;}
.fs4_c00410{font-size:63.016661px;}
.fs9_c00410{font-size:65.074801px;}
.fs7_c00410{font-size:66.124395px;}
.fsc_c00410{font-size:67.173989px;}
.fse_c00410{font-size:68.223582px;}
.fs10_c00410{font-size:70.322769px;}
.fs1_c00410{font-size:70.368605px;}
.fsb_c00410{font-size:71.372363px;}
.fs0_c00410{font-size:73.519438px;}
.y0_c00410{bottom:0.000000px;}
.yf6_c00410{bottom:34.190035px;}
.yf7_c00410{bottom:34.980888px;}
.yf8_c00410{bottom:36.521013px;}
.yf9_c00410{bottom:37.496236px;}
.yfa_c00410{bottom:38.649846px;}
.yfb_c00410{bottom:39.549918px;}
.yfc_c00410{bottom:42.857508px;}
.yfd_c00410{bottom:43.472939px;}
.yee_c00410{bottom:56.841909px;}
.yef_c00410{bottom:57.604840px;}
.yf0_c00410{bottom:58.582671px;}
.yf1_c00410{bottom:58.977027px;}
.yf2_c00410{bottom:59.752011px;}
.yf3_c00410{bottom:60.122104px;}
.yf4_c00410{bottom:60.669636px;}
.yf5_c00410{bottom:61.093959px;}
.ye6_c00410{bottom:71.690371px;}
.ye7_c00410{bottom:72.670045px;}
.ye8_c00410{bottom:74.120335px;}
.ye9_c00410{bottom:74.364612px;}
.yea_c00410{bottom:74.724967px;}
.yeb_c00410{bottom:75.441249px;}
.yec_c00410{bottom:75.872550px;}
.yed_c00410{bottom:77.498242px;}
.ydd_c00410{bottom:87.082213px;}
.yde_c00410{bottom:87.682014px;}
.ydf_c00410{bottom:89.725314px;}
.ye0_c00410{bottom:90.697191px;}
.ye1_c00410{bottom:91.317333px;}
.ye2_c00410{bottom:93.269272px;}
.ye3_c00410{bottom:94.203172px;}
.ye4_c00410{bottom:94.715158px;}
.ye5_c00410{bottom:95.554419px;}
.yd7_c00410{bottom:103.270825px;}
.yd8_c00410{bottom:104.325996px;}
.yd9_c00410{bottom:105.643155px;}
.yda_c00410{bottom:106.936407px;}
.ydb_c00410{bottom:107.472717px;}
.ydc_c00410{bottom:109.832212px;}
.ycf_c00410{bottom:121.352590px;}
.yd0_c00410{bottom:122.521198px;}
.yd1_c00410{bottom:122.882203px;}
.yd2_c00410{bottom:125.059039px;}
.yd3_c00410{bottom:125.606632px;}
.yd4_c00410{bottom:125.930833px;}
.yd5_c00410{bottom:127.203925px;}
.yd6_c00410{bottom:127.670932px;}
.yc8_c00410{bottom:136.737304px;}
.yc9_c00410{bottom:137.893974px;}
.yca_c00410{bottom:139.467847px;}
.ycb_c00410{bottom:139.928103px;}
.ycc_c00410{bottom:141.373218px;}
.ycd_c00410{bottom:141.941818px;}
.yce_c00410{bottom:143.527051px;}
.ybf_c00410{bottom:154.014736px;}
.yc0_c00410{bottom:155.569137px;}
.yc1_c00410{bottom:156.834544px;}
.yc2_c00410{bottom:158.281609px;}
.yc3_c00410{bottom:159.067732px;}
.yc4_c00410{bottom:159.622518px;}
.yc5_c00410{bottom:160.528600px;}
.yc6_c00410{bottom:161.551125px;}
.yc7_c00410{bottom:162.422118px;}
.yb7_c00410{bottom:170.751544px;}
.yb8_c00410{bottom:171.459874px;}
.yb9_c00410{bottom:172.615872px;}
.yba_c00410{bottom:172.972924px;}
.ybb_c00410{bottom:175.430397px;}
.ybc_c00410{bottom:177.401614px;}
.ybd_c00410{bottom:178.467312px;}
.ybe_c00410{bottom:179.630292px;}
.yb2_c00410{bottom:188.820603px;}
.yb3_c00410{bottom:189.363667px;}
.yb4_c00410{bottom:190.123033px;}
.yb5_c00410{bottom:191.830173px;}
.yb6_c00410{bottom:193.207662px;}
.yaa_c00410{bottom:204.215976px;}
.yab_c00410{bottom:207.149004px;}
.yac_c00410{bottom:207.948765px;}
.yad_c00410{bottom:209.522280px;}
.yae_c00410{bottom:209.803888px;}
.yaf_c00410{bottom:210.193887px;}
.yb0_c00410{bottom:210.852216px;}
.yb1_c00410{bottom:213.046789px;}
.ya1_c00410{bottom:222.834739px;}
.ya2_c00410{bottom:223.943173px;}
.ya3_c00410{bottom:224.435815px;}
.ya4_c00410{bottom:226.062498px;}
.ya5_c00410{bottom:226.411128px;}
.ya6_c00410{bottom:226.945485px;}
.ya7_c00410{bottom:228.262183px;}
.ya8_c00410{bottom:229.000528px;}
.ya9_c00410{bottom:229.516467px;}
.y97_c00410{bottom:240.917320px;}
.y98_c00410{bottom:241.974156px;}
.y99_c00410{bottom:242.460312px;}
.y9a_c00410{bottom:243.735685px;}
.y9b_c00410{bottom:244.048212px;}
.y9c_c00410{bottom:245.184555px;}
.y9d_c00410{bottom:245.743350px;}
.y9e_c00410{bottom:246.736939px;}
.y9f_c00410{bottom:246.982182px;}
.ya0_c00410{bottom:247.553200px;}
.y90_c00410{bottom:256.040331px;}
.y91_c00410{bottom:258.436554px;}
.y92_c00410{bottom:259.191594px;}
.y93_c00410{bottom:260.888947px;}
.y94_c00410{bottom:261.644302px;}
.y95_c00410{bottom:262.688905px;}
.y96_c00410{bottom:264.170268px;}
.y88_c00410{bottom:273.850594px;}
.y89_c00410{bottom:275.126046px;}
.y8a_c00410{bottom:275.783259px;}
.y8b_c00410{bottom:276.633945px;}
.y8c_c00410{bottom:278.318359px;}
.y8d_c00410{bottom:278.846646px;}
.y8e_c00410{bottom:281.626531px;}
.y8f_c00410{bottom:283.087395px;}
.y80_c00410{bottom:290.308968px;}
.y81_c00410{bottom:291.508725px;}
.y82_c00410{bottom:292.070949px;}
.y83_c00410{bottom:292.777830px;}
.y84_c00410{bottom:294.155343px;}
.y85_c00410{bottom:294.939843px;}
.y86_c00410{bottom:298.262973px;}
.y87_c00410{bottom:299.978491px;}
.y7a_c00410{bottom:307.590982px;}
.y7b_c00410{bottom:309.429877px;}
.y7c_c00410{bottom:311.323654px;}
.y7d_c00410{bottom:312.872002px;}
.y7e_c00410{bottom:314.073112px;}
.y7f_c00410{bottom:315.542748px;}
.y72_c00410{bottom:324.585363px;}
.y73_c00410{bottom:325.142703px;}
.y74_c00410{bottom:326.655438px;}
.y75_c00410{bottom:328.343628px;}
.y76_c00410{bottom:329.756088px;}
.y77_c00410{bottom:330.448825px;}
.y78_c00410{bottom:332.541475px;}
.y79_c00410{bottom:332.906980px;}
.y6b_c00410{bottom:340.252809px;}
.y6c_c00410{bottom:341.593140px;}
.y6d_c00410{bottom:345.153972px;}
.y6e_c00410{bottom:345.730285px;}
.y6f_c00410{bottom:346.113487px;}
.y70_c00410{bottom:348.059197px;}
.y71_c00410{bottom:349.935670px;}
.y62_c00410{bottom:356.172223px;}
.y63_c00410{bottom:357.243570px;}
.y64_c00410{bottom:358.107358px;}
.y65_c00410{bottom:360.669787px;}
.y66_c00410{bottom:361.203189px;}
.y67_c00410{bottom:363.677424px;}
.y68_c00410{bottom:364.481215px;}
.y69_c00410{bottom:365.626710px;}
.y6a_c00410{bottom:366.376623px;}
.y58_c00410{bottom:373.987524px;}
.y59_c00410{bottom:374.661781px;}
.y5a_c00410{bottom:375.160590px;}
.y5b_c00410{bottom:376.693326px;}
.y5c_c00410{bottom:377.166591px;}
.y5d_c00410{bottom:379.147492px;}
.y5e_c00410{bottom:380.306698px;}
.y5f_c00410{bottom:380.896894px;}
.y60_c00410{bottom:381.942057px;}
.y61_c00410{bottom:382.929751px;}
.y50_c00410{bottom:390.445932px;}
.y51_c00410{bottom:391.728949px;}
.y52_c00410{bottom:392.311123px;}
.y53_c00410{bottom:394.552564px;}
.y54_c00410{bottom:395.178442px;}
.y55_c00410{bottom:397.423873px;}
.y56_c00410{bottom:398.312161px;}
.y57_c00410{bottom:399.266910px;}
.y4a_c00410{bottom:406.379104px;}
.y4b_c00410{bottom:408.914124px;}
.y4c_c00410{bottom:410.698885px;}
.y4d_c00410{bottom:413.428486px;}
.y4e_c00410{bottom:414.630133px;}
.y4f_c00410{bottom:417.240585px;}
.y41_c00410{bottom:424.179000px;}
.y42_c00410{bottom:425.270055px;}
.y43_c00410{bottom:426.095985px;}
.y44_c00410{bottom:428.395747px;}
.y45_c00410{bottom:428.978445px;}
.y46_c00410{bottom:430.290840px;}
.y47_c00410{bottom:431.387355px;}
.y48_c00410{bottom:432.195382px;}
.y49_c00410{bottom:434.037975px;}
.y3a_c00410{bottom:441.699290px;}
.y3b_c00410{bottom:442.372401px;}
.y3c_c00410{bottom:443.840049px;}
.y3d_c00410{bottom:445.416134px;}
.y3e_c00410{bottom:447.526106px;}
.y3f_c00410{bottom:449.568225px;}
.y40_c00410{bottom:450.085399px;}
.y33_c00410{bottom:455.747253px;}
.y34_c00410{bottom:456.970838px;}
.y35_c00410{bottom:457.954872px;}
.y36_c00410{bottom:460.248084px;}
.y37_c00410{bottom:461.067935px;}
.y38_c00410{bottom:463.740374px;}
.y39_c00410{bottom:466.772483px;}
.y2b_c00410{bottom:472.497836px;}
.y2c_c00410{bottom:473.497265px;}
.y2d_c00410{bottom:474.449681px;}
.y2e_c00410{bottom:477.014021px;}
.y2f_c00410{bottom:479.860904px;}
.y30_c00410{bottom:480.460982px;}
.y31_c00410{bottom:482.868951px;}
.y32_c00410{bottom:483.991121px;}
.y22_c00410{bottom:491.667027px;}
.y23_c00410{bottom:492.381243px;}
.y24_c00410{bottom:494.606141px;}
.y25_c00410{bottom:495.066400px;}
.y26_c00410{bottom:496.430382px;}
.y27_c00410{bottom:497.494187px;}
.y28_c00410{bottom:499.208067px;}
.y29_c00410{bottom:499.845708px;}
.y2a_c00410{bottom:501.791193px;}
.y1a_c00410{bottom:508.945417px;}
.y1b_c00410{bottom:510.045476px;}
.y1c_c00410{bottom:511.890720px;}
.y1d_c00410{bottom:512.575266px;}
.y1e_c00410{bottom:514.213859px;}
.y1f_c00410{bottom:515.830806px;}
.y20_c00410{bottom:517.971197px;}
.y21_c00410{bottom:518.690582px;}
.y12_c00410{bottom:525.421347px;}
.y13_c00410{bottom:527.167489px;}
.y14_c00410{bottom:528.217627px;}
.y15_c00410{bottom:528.957992px;}
.y16_c00410{bottom:531.191139px;}
.y17_c00410{bottom:532.500380px;}
.y18_c00410{bottom:533.183363px;}
.y19_c00410{bottom:535.403937px;}
.yb_c00410{bottom:540.554839px;}
.yc_c00410{bottom:541.893319px;}
.yd_c00410{bottom:544.613843px;}
.ye_c00410{bottom:546.698565px;}
.yf_c00410{bottom:548.018972px;}
.y10_c00410{bottom:549.556416px;}
.y11_c00410{bottom:552.653983px;}
.y3_c00410{bottom:559.448633px;}
.y4_c00410{bottom:560.695423px;}
.y5_c00410{bottom:563.146803px;}
.y6_c00410{bottom:563.804364px;}
.y7_c00410{bottom:564.126824px;}
.y8_c00410{bottom:566.884365px;}
.y9_c00410{bottom:567.655167px;}
.ya_c00410{bottom:568.587536px;}
.y1_c00410{bottom:577.269000px;}
.y2_c00410{bottom:579.847254px;}
.hc_c00410{height:40.934149px;}
.h5_c00410{height:57.765273px;}
.h8_c00410{height:58.777240px;}
.h7_c00410{height:59.865828px;}
.ha_c00410{height:60.876427px;}
.h4_c00410{height:60.916106px;}
.hf_c00410{height:61.926021px;}
.h11_c00410{height:62.975614px;}
.h6_c00410{height:63.016661px;}
.hb_c00410{height:65.074801px;}
.h9_c00410{height:66.124395px;}
.he_c00410{height:67.173989px;}
.h10_c00410{height:68.223582px;}
.h12_c00410{height:70.322769px;}
.h3_c00410{height:70.368605px;}
.hd_c00410{height:71.372363px;}
.h2_c00410{height:73.519438px;}
.h1_c00410{height:617.250000px;}
.h0_c00410{height:617.490000px;}
.w0_c00410{width:359.100000px;}
.w1_c00410{width:359.250000px;}
.x0_c00410{left:0.000000px;}
.x3_c00410{left:18.674378px;}
.x10_c00410{left:20.118855px;}
.x1c_c00410{left:21.555553px;}
.x2b_c00410{left:23.042490px;}
.x41_c00410{left:24.247344px;}
.x4f_c00410{left:26.117682px;}
.x59_c00410{left:27.422569px;}
.x5e_c00410{left:28.640902px;}
.x36_c00410{left:30.521179px;}
.x30_c00410{left:31.845000px;}
.x73_c00410{left:33.495625px;}
.x7a_c00410{left:35.854933px;}
.x1d_c00410{left:40.341067px;}
.x42_c00410{left:41.993740px;}
.x22_c00410{left:45.648475px;}
.xa_c00410{left:48.862897px;}
.x49_c00410{left:49.894137px;}
.x4_c00410{left:51.480062px;}
.x43_c00410{left:55.117737px;}
.x7f_c00410{left:56.266509px;}
.x6a_c00410{left:59.331619px;}
.x3a_c00410{left:61.587358px;}
.x31_c00410{left:62.986827px;}
.x78_c00410{left:64.900503px;}
.x5a_c00410{left:66.011622px;}
.x23_c00410{left:68.330574px;}
.x11_c00410{left:70.002589px;}
.x5f_c00410{left:72.595326px;}
.x28_c00410{left:76.374507px;}
.x3b_c00410{left:78.675331px;}
.x74_c00410{left:79.700061px;}
.x55_c00410{left:83.571529px;}
.x50_c00410{left:85.203537px;}
.x32_c00410{left:86.561229px;}
.x62_c00410{left:90.727744px;}
.x2c_c00410{left:92.106294px;}
.x44_c00410{left:95.397660px;}
.x1e_c00410{left:98.903385px;}
.x12_c00410{left:100.000309px;}
.x17_c00410{left:102.424411px;}
.x6b_c00410{left:103.874095px;}
.x45_c00410{left:107.835396px;}
.xb_c00410{left:109.333330px;}
.x1f_c00410{left:111.019210px;}
.x5_c00410{left:115.974309px;}
.x6d_c00410{left:119.212783px;}
.x13_c00410{left:121.162479px;}
.x66_c00410{left:122.505939px;}
.x5d_c00410{left:123.671301px;}
.x71_c00410{left:126.429196px;}
.x24_c00410{left:129.383905px;}
.x4a_c00410{left:131.415064px;}
.x6_c00410{left:133.275340px;}
.x37_c00410{left:135.791179px;}
.x57_c00410{left:139.725753px;}
.x7_c00410{left:141.748908px;}
.x2d_c00410{left:142.948445px;}
.x3c_c00410{left:144.536716px;}
.x60_c00410{left:145.913707px;}
.x1_c00410{left:147.805500px;}
.x29_c00410{left:152.280577px;}
.xc_c00410{left:155.667405px;}
.x46_c00410{left:159.922291px;}
.x75_c00410{left:160.927683px;}
.x3d_c00410{left:162.914950px;}
.x4d_c00410{left:164.946013px;}
.x18_c00410{left:166.954626px;}
.x33_c00410{left:168.834873px;}
.x7b_c00410{left:172.282446px;}
.x51_c00410{left:173.704947px;}
.x20_c00410{left:174.879165px;}
.x5b_c00410{left:178.631772px;}
.x76_c00410{left:183.433093px;}
.xd_c00410{left:185.018070px;}
.x63_c00410{left:187.113138px;}
.x6e_c00410{left:189.356070px;}
.x47_c00410{left:190.397080px;}
.x52_c00410{left:193.477654px;}
.x25_c00410{left:197.175304px;}
.x67_c00410{left:198.982107px;}
.x72_c00410{left:200.748283px;}
.x38_c00410{left:202.310614px;}
.x6c_c00410{left:204.117972px;}
.x34_c00410{left:206.294376px;}
.x68_c00410{left:208.047793px;}
.x19_c00410{left:211.873705px;}
.x8_c00410{left:214.334396px;}
.x2a_c00410{left:217.446599px;}
.xe_c00410{left:219.172285px;}
.x69_c00410{left:220.635480px;}
.x14_c00410{left:222.390569px;}
.x7c_c00410{left:224.904834px;}
.x3e_c00410{left:228.890221px;}
.x39_c00410{left:231.598648px;}
.x48_c00410{left:233.392023px;}
.x9_c00410{left:234.601392px;}
.x21_c00410{left:236.728309px;}
.x15_c00410{left:241.906186px;}
.x6f_c00410{left:245.620249px;}
.x79_c00410{left:248.229100px;}
.x4b_c00410{left:249.346611px;}
.x53_c00410{left:253.207864px;}
.x3f_c00410{left:254.972506px;}
.x4e_c00410{left:258.068695px;}
.x2_c00410{left:259.903500px;}
.x54_c00410{left:263.640421px;}
.x64_c00410{left:266.068513px;}
.x4c_c00410{left:267.196881px;}
.x26_c00410{left:268.776513px;}
.x1a_c00410{left:271.329438px;}
.x77_c00410{left:272.661145px;}
.x56_c00410{left:274.409076px;}
.x2e_c00410{left:276.884311px;}
.x61_c00410{left:281.016549px;}
.x40_c00410{left:283.037412px;}
.x65_c00410{left:285.890925px;}
.xf_c00410{left:288.009975px;}
.x1b_c00410{left:291.318469px;}
.x2f_c00410{left:293.562741px;}
.x27_c00410{left:295.511352px;}
.x7d_c00410{left:298.714084px;}
.x16_c00410{left:305.370195px;}
.x5c_c00410{left:306.997764px;}
.x70_c00410{left:309.233073px;}
.x58_c00410{left:310.816981px;}
.x35_c00410{left:313.248315px;}
.x7e_c00410{left:319.153302px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
.fsa_c00410{font-size:36.385910pt;}
.fs3_c00410{font-size:51.346909pt;}
.fs6_c00410{font-size:52.246436pt;}
.fs5_c00410{font-size:53.214070pt;}
.fs8_c00410{font-size:54.112380pt;}
.fs2_c00410{font-size:54.147650pt;}
.fsd_c00410{font-size:55.045352pt;}
.fsf_c00410{font-size:55.978324pt;}
.fs4_c00410{font-size:56.014810pt;}
.fs9_c00410{font-size:57.844268pt;}
.fs7_c00410{font-size:58.777240pt;}
.fsc_c00410{font-size:59.710212pt;}
.fse_c00410{font-size:60.643184pt;}
.fs10_c00410{font-size:62.509128pt;}
.fs1_c00410{font-size:62.549871pt;}
.fsb_c00410{font-size:63.442100pt;}
.fs0_c00410{font-size:65.350612pt;}
.y0_c00410{bottom:0.000000pt;}
.yf6_c00410{bottom:30.391143pt;}
.yf7_c00410{bottom:31.094123pt;}
.yf8_c00410{bottom:32.463123pt;}
.yf9_c00410{bottom:33.329988pt;}
.yfa_c00410{bottom:34.355419pt;}
.yfb_c00410{bottom:35.155483pt;}
.yfc_c00410{bottom:38.095563pt;}
.yfd_c00410{bottom:38.642612pt;}
.yee_c00410{bottom:50.526141pt;}
.yef_c00410{bottom:51.204303pt;}
.yf0_c00410{bottom:52.073485pt;}
.yf1_c00410{bottom:52.424024pt;}
.yf2_c00410{bottom:53.112899pt;}
.yf3_c00410{bottom:53.441871pt;}
.yf4_c00410{bottom:53.928565pt;}
.yf5_c00410{bottom:54.305741pt;}
.ye6_c00410{bottom:63.724775pt;}
.ye7_c00410{bottom:64.595596pt;}
.ye8_c00410{bottom:65.884743pt;}
.ye9_c00410{bottom:66.101877pt;}
.yea_c00410{bottom:66.422193pt;}
.yeb_c00410{bottom:67.058888pt;}
.yec_c00410{bottom:67.442267pt;}
.yed_c00410{bottom:68.887327pt;}
.ydd_c00410{bottom:77.406412pt;}
.yde_c00410{bottom:77.939568pt;}
.ydf_c00410{bottom:79.755835pt;}
.ye0_c00410{bottom:80.619725pt;}
.ye1_c00410{bottom:81.170963pt;}
.ye2_c00410{bottom:82.906020pt;}
.ye3_c00410{bottom:83.736153pt;}
.ye4_c00410{bottom:84.191252pt;}
.ye5_c00410{bottom:84.937261pt;}
.yd7_c00410{bottom:91.796289pt;}
.yd8_c00410{bottom:92.734219pt;}
.yd9_c00410{bottom:93.905027pt;}
.yda_c00410{bottom:95.054584pt;}
.ydb_c00410{bottom:95.531304pt;}
.ydc_c00410{bottom:97.628633pt;}
.ycf_c00410{bottom:107.868969pt;}
.yd0_c00410{bottom:108.907732pt;}
.yd1_c00410{bottom:109.228625pt;}
.yd2_c00410{bottom:111.163591pt;}
.yd3_c00410{bottom:111.650340pt;}
.yd4_c00410{bottom:111.938519pt;}
.yd5_c00410{bottom:113.070156pt;}
.yd6_c00410{bottom:113.485273pt;}
.yc8_c00410{bottom:121.544271pt;}
.yc9_c00410{bottom:122.572421pt;}
.yca_c00410{bottom:123.971420pt;}
.ycb_c00410{bottom:124.380536pt;}
.ycc_c00410{bottom:125.665083pt;}
.ycd_c00410{bottom:126.170505pt;}
.yce_c00410{bottom:127.579601pt;}
.ybf_c00410{bottom:136.901988pt;}
.yc0_c00410{bottom:138.283677pt;}
.yc1_c00410{bottom:139.408484pt;}
.yc2_c00410{bottom:140.694764pt;}
.yc3_c00410{bottom:141.393540pt;}
.yc4_c00410{bottom:141.886683pt;}
.yc5_c00410{bottom:142.692089pt;}
.yc6_c00410{bottom:143.601000pt;}
.yc7_c00410{bottom:144.375216pt;}
.yb7_c00410{bottom:151.779151pt;}
.yb8_c00410{bottom:152.408777pt;}
.yb9_c00410{bottom:153.436331pt;}
.yba_c00410{bottom:153.753711pt;}
.ybb_c00410{bottom:155.938131pt;}
.ybc_c00410{bottom:157.690324pt;}
.ybd_c00410{bottom:158.637611pt;}
.ybe_c00410{bottom:159.671371pt;}
.yb2_c00410{bottom:167.840536pt;}
.yb3_c00410{bottom:168.323260pt;}
.yb4_c00410{bottom:168.998252pt;}
.yb5_c00410{bottom:170.515709pt;}
.yb6_c00410{bottom:171.740144pt;}
.yaa_c00410{bottom:181.525312pt;}
.yab_c00410{bottom:184.132448pt;}
.yac_c00410{bottom:184.843347pt;}
.yad_c00410{bottom:186.242027pt;}
.yae_c00410{bottom:186.492345pt;}
.yaf_c00410{bottom:186.839011pt;}
.yb0_c00410{bottom:187.424192pt;}
.yb1_c00410{bottom:189.374924pt;}
.ya1_c00410{bottom:198.075324pt;}
.ya2_c00410{bottom:199.060599pt;}
.ya3_c00410{bottom:199.498503pt;}
.ya4_c00410{bottom:200.944443pt;}
.ya5_c00410{bottom:201.254336pt;}
.ya6_c00410{bottom:201.729320pt;}
.ya7_c00410{bottom:202.899719pt;}
.ya8_c00410{bottom:203.556025pt;}
.ya9_c00410{bottom:204.014637pt;}
.y97_c00410{bottom:214.148729pt;}
.y98_c00410{bottom:215.088139pt;}
.y99_c00410{bottom:215.520277pt;}
.y9a_c00410{bottom:216.653943pt;}
.y9b_c00410{bottom:216.931744pt;}
.y9c_c00410{bottom:217.941827pt;}
.y9d_c00410{bottom:218.438533pt;}
.y9e_c00410{bottom:219.321724pt;}
.y9f_c00410{bottom:219.539717pt;}
.ya0_c00410{bottom:220.047289pt;}
.y90_c00410{bottom:227.591405pt;}
.y91_c00410{bottom:229.721381pt;}
.y92_c00410{bottom:230.392528pt;}
.y93_c00410{bottom:231.901287pt;}
.y94_c00410{bottom:232.572713pt;}
.y95_c00410{bottom:233.501249pt;}
.y96_c00410{bottom:234.818016pt;}
.y88_c00410{bottom:243.422751pt;}
.y89_c00410{bottom:244.556485pt;}
.y8a_c00410{bottom:245.140675pt;}
.y8b_c00410{bottom:245.896840pt;}
.y8c_c00410{bottom:247.394097pt;}
.y8d_c00410{bottom:247.863685pt;}
.y8e_c00410{bottom:250.334695pt;}
.y8f_c00410{bottom:251.633240pt;}
.y80_c00410{bottom:258.052416pt;}
.y81_c00410{bottom:259.118867pt;}
.y82_c00410{bottom:259.618621pt;}
.y83_c00410{bottom:260.246960pt;}
.y84_c00410{bottom:261.471416pt;}
.y85_c00410{bottom:262.168749pt;}
.y86_c00410{bottom:265.122643pt;}
.y87_c00410{bottom:266.647548pt;}
.y7a_c00410{bottom:273.414207pt;}
.y7b_c00410{bottom:275.048780pt;}
.y7c_c00410{bottom:276.732137pt;}
.y7d_c00410{bottom:278.108447pt;}
.y7e_c00410{bottom:279.176100pt;}
.y7f_c00410{bottom:280.482443pt;}
.y72_c00410{bottom:288.520323pt;}
.y73_c00410{bottom:289.015736pt;}
.y74_c00410{bottom:290.360389pt;}
.y75_c00410{bottom:291.861003pt;}
.y76_c00410{bottom:293.116523pt;}
.y77_c00410{bottom:293.732289pt;}
.y78_c00410{bottom:295.592423pt;}
.y79_c00410{bottom:295.917316pt;}
.y6b_c00410{bottom:302.446941pt;}
.y6c_c00410{bottom:303.638347pt;}
.y6d_c00410{bottom:306.803531pt;}
.y6e_c00410{bottom:307.315809pt;}
.y6f_c00410{bottom:307.656433pt;}
.y70_c00410{bottom:309.385953pt;}
.y71_c00410{bottom:311.053929pt;}
.y62_c00410{bottom:316.597532pt;}
.y63_c00410{bottom:317.549840pt;}
.y64_c00410{bottom:318.317652pt;}
.y65_c00410{bottom:320.595367pt;}
.y66_c00410{bottom:321.069501pt;}
.y67_c00410{bottom:323.268821pt;}
.y68_c00410{bottom:323.983303pt;}
.y69_c00410{bottom:325.001520pt;}
.y6a_c00410{bottom:325.668109pt;}
.y58_c00410{bottom:332.433355pt;}
.y59_c00410{bottom:333.032695pt;}
.y5a_c00410{bottom:333.476080pt;}
.y5b_c00410{bottom:334.838512pt;}
.y5c_c00410{bottom:335.259192pt;}
.y5d_c00410{bottom:337.019993pt;}
.y5e_c00410{bottom:338.050399pt;}
.y5f_c00410{bottom:338.575017pt;}
.y60_c00410{bottom:339.504051pt;}
.y61_c00410{bottom:340.382001pt;}
.y50_c00410{bottom:347.063051pt;}
.y51_c00410{bottom:348.203511pt;}
.y52_c00410{bottom:348.720999pt;}
.y53_c00410{bottom:350.713391pt;}
.y54_c00410{bottom:351.269727pt;}
.y55_c00410{bottom:353.265665pt;}
.y56_c00410{bottom:354.055255pt;}
.y57_c00410{bottom:354.903920pt;}
.y4a_c00410{bottom:361.225871pt;}
.y4b_c00410{bottom:363.479221pt;}
.y4c_c00410{bottom:365.065676pt;}
.y4d_c00410{bottom:367.491988pt;}
.y4e_c00410{bottom:368.560119pt;}
.y4f_c00410{bottom:370.880520pt;}
.y41_c00410{bottom:377.048000pt;}
.y42_c00410{bottom:378.017827pt;}
.y43_c00410{bottom:378.751987pt;}
.y44_c00410{bottom:380.796220pt;}
.y45_c00410{bottom:381.314173pt;}
.y46_c00410{bottom:382.480747pt;}
.y47_c00410{bottom:383.455427pt;}
.y48_c00410{bottom:384.173673pt;}
.y49_c00410{bottom:385.811533pt;}
.y3a_c00410{bottom:392.621591pt;}
.y3b_c00410{bottom:393.219912pt;}
.y3c_c00410{bottom:394.524488pt;}
.y3d_c00410{bottom:395.925452pt;}
.y3e_c00410{bottom:397.800983pt;}
.y3f_c00410{bottom:399.616200pt;}
.y40_c00410{bottom:400.075911pt;}
.y33_c00410{bottom:405.108669pt;}
.y34_c00410{bottom:406.196300pt;}
.y35_c00410{bottom:407.070997pt;}
.y36_c00410{bottom:409.109408pt;}
.y37_c00410{bottom:409.838164pt;}
.y38_c00410{bottom:412.213665pt;}
.y39_c00410{bottom:414.908873pt;}
.y2b_c00410{bottom:419.998076pt;}
.y2c_c00410{bottom:420.886457pt;}
.y2d_c00410{bottom:421.733049pt;}
.y2e_c00410{bottom:424.012463pt;}
.y2f_c00410{bottom:426.543025pt;}
.y30_c00410{bottom:427.076428pt;}
.y31_c00410{bottom:429.216845pt;}
.y32_c00410{bottom:430.214329pt;}
.y22_c00410{bottom:437.037357pt;}
.y23_c00410{bottom:437.672216pt;}
.y24_c00410{bottom:439.649903pt;}
.y25_c00410{bottom:440.059023pt;}
.y26_c00410{bottom:441.271451pt;}
.y27_c00410{bottom:442.217055pt;}
.y28_c00410{bottom:443.740504pt;}
.y29_c00410{bottom:444.307296pt;}
.y2a_c00410{bottom:446.036616pt;}
.y1a_c00410{bottom:452.395927pt;}
.y1b_c00410{bottom:453.373756pt;}
.y1c_c00410{bottom:455.013973pt;}
.y1d_c00410{bottom:455.622459pt;}
.y1e_c00410{bottom:457.078985pt;}
.y1f_c00410{bottom:458.516272pt;}
.y20_c00410{bottom:460.418841pt;}
.y21_c00410{bottom:461.058295pt;}
.y12_c00410{bottom:467.041197pt;}
.y13_c00410{bottom:468.593324pt;}
.y14_c00410{bottom:469.526780pt;}
.y15_c00410{bottom:470.184881pt;}
.y16_c00410{bottom:472.169901pt;}
.y17_c00410{bottom:473.333671pt;}
.y18_c00410{bottom:473.940767pt;}
.y19_c00410{bottom:475.914611pt;}
.yb_c00410{bottom:480.493191pt;}
.yc_c00410{bottom:481.682951pt;}
.yd_c00410{bottom:484.101193pt;}
.ye_c00410{bottom:485.954280pt;}
.yf_c00410{bottom:487.127975pt;}
.y10_c00410{bottom:488.494592pt;}
.y11_c00410{bottom:491.247985pt;}
.y3_c00410{bottom:497.287673pt;}
.y4_c00410{bottom:498.395932pt;}
.y5_c00410{bottom:500.574936pt;}
.y6_c00410{bottom:501.159435pt;}
.y7_c00410{bottom:501.446065pt;}
.y8_c00410{bottom:503.897213pt;}
.y9_c00410{bottom:504.582371pt;}
.ya_c00410{bottom:505.411143pt;}
.y1_c00410{bottom:513.128000pt;}
.y2_c00410{bottom:515.419781pt;}
.hc_c00410{height:36.385910pt;}
.h5_c00410{height:51.346909pt;}
.h8_c00410{height:52.246436pt;}
.h7_c00410{height:53.214070pt;}
.ha_c00410{height:54.112380pt;}
.h4_c00410{height:54.147650pt;}
.hf_c00410{height:55.045352pt;}
.h11_c00410{height:55.978324pt;}
.h6_c00410{height:56.014810pt;}
.hb_c00410{height:57.844268pt;}
.h9_c00410{height:58.777240pt;}
.he_c00410{height:59.710212pt;}
.h10_c00410{height:60.643184pt;}
.h12_c00410{height:62.509128pt;}
.h3_c00410{height:62.549871pt;}
.hd_c00410{height:63.442100pt;}
.h2_c00410{height:65.350612pt;}
.h1_c00410{height:548.666667pt;}
.h0_c00410{height:548.880000pt;}
.w0_c00410{width:319.200000pt;}
.w1_c00410{width:319.333333pt;}
.x0_c00410{left:0.000000pt;}
.x3_c00410{left:16.599447pt;}
.x10_c00410{left:17.883427pt;}
.x1c_c00410{left:19.160492pt;}
.x2b_c00410{left:20.482213pt;}
.x41_c00410{left:21.553195pt;}
.x4f_c00410{left:23.215717pt;}
.x59_c00410{left:24.375617pt;}
.x5e_c00410{left:25.458580pt;}
.x36_c00410{left:27.129937pt;}
.x30_c00410{left:28.306667pt;}
.x73_c00410{left:29.773889pt;}
.x7a_c00410{left:31.871052pt;}
.x1d_c00410{left:35.858727pt;}
.x42_c00410{left:37.327769pt;}
.x22_c00410{left:40.576423pt;}
.xa_c00410{left:43.433687pt;}
.x49_c00410{left:44.350344pt;}
.x4_c00410{left:45.760055pt;}
.x43_c00410{left:48.993544pt;}
.x7f_c00410{left:50.014675pt;}
.x6a_c00410{left:52.739217pt;}
.x3a_c00410{left:54.744319pt;}
.x31_c00410{left:55.988291pt;}
.x78_c00410{left:57.689336pt;}
.x5a_c00410{left:58.676997pt;}
.x23_c00410{left:60.738288pt;}
.x11_c00410{left:62.224524pt;}
.x5f_c00410{left:64.529179pt;}
.x28_c00410{left:67.888451pt;}
.x3b_c00410{left:69.933628pt;}
.x74_c00410{left:70.844499pt;}
.x55_c00410{left:74.285804pt;}
.x50_c00410{left:75.736477pt;}
.x32_c00410{left:76.943315pt;}
.x62_c00410{left:80.646884pt;}
.x2c_c00410{left:81.872261pt;}
.x44_c00410{left:84.797920pt;}
.x1e_c00410{left:87.914120pt;}
.x12_c00410{left:88.889164pt;}
.x17_c00410{left:91.043921pt;}
.x6b_c00410{left:92.332529pt;}
.x45_c00410{left:95.853685pt;}
.xb_c00410{left:97.185183pt;}
.x1f_c00410{left:98.683743pt;}
.x5_c00410{left:103.088275pt;}
.x6d_c00410{left:105.966919pt;}
.x13_c00410{left:107.699981pt;}
.x66_c00410{left:108.894168pt;}
.x5d_c00410{left:109.930045pt;}
.x71_c00410{left:112.381508pt;}
.x24_c00410{left:115.007916pt;}
.x4a_c00410{left:116.813391pt;}
.x6_c00410{left:118.466969pt;}
.x37_c00410{left:120.703271pt;}
.x57_c00410{left:124.200669pt;}
.x7_c00410{left:125.999029pt;}
.x2d_c00410{left:127.065284pt;}
.x3c_c00410{left:128.477081pt;}
.x60_c00410{left:129.701073pt;}
.x1_c00410{left:131.382667pt;}
.x29_c00410{left:135.360513pt;}
.xc_c00410{left:138.371027pt;}
.x46_c00410{left:142.153148pt;}
.x75_c00410{left:143.046829pt;}
.x3d_c00410{left:144.813289pt;}
.x4d_c00410{left:146.618679pt;}
.x18_c00410{left:148.404112pt;}
.x33_c00410{left:150.075443pt;}
.x7b_c00410{left:153.139952pt;}
.x51_c00410{left:154.404397pt;}
.x20_c00410{left:155.448147pt;}
.x5b_c00410{left:158.783797pt;}
.x76_c00410{left:163.051639pt;}
.xd_c00410{left:164.460507pt;}
.x63_c00410{left:166.322789pt;}
.x6e_c00410{left:168.316507pt;}
.x47_c00410{left:169.241849pt;}
.x52_c00410{left:171.980137pt;}
.x25_c00410{left:175.266937pt;}
.x67_c00410{left:176.872984pt;}
.x72_c00410{left:178.442919pt;}
.x38_c00410{left:179.831657pt;}
.x6c_c00410{left:181.438197pt;}
.x34_c00410{left:183.372779pt;}
.x68_c00410{left:184.931372pt;}
.x19_c00410{left:188.332183pt;}
.x8_c00410{left:190.519463pt;}
.x2a_c00410{left:193.285865pt;}
.xe_c00410{left:194.819809pt;}
.x69_c00410{left:196.120427pt;}
.x14_c00410{left:197.680505pt;}
.x7c_c00410{left:199.915408pt;}
.x3e_c00410{left:203.457975pt;}
.x39_c00410{left:205.865465pt;}
.x48_c00410{left:207.459576pt;}
.x9_c00410{left:208.534571pt;}
.x21_c00410{left:210.425164pt;}
.x15_c00410{left:215.027721pt;}
.x6f_c00410{left:218.329111pt;}
.x79_c00410{left:220.648089pt;}
.x4b_c00410{left:221.641432pt;}
.x53_c00410{left:225.073657pt;}
.x3f_c00410{left:226.642228pt;}
.x4e_c00410{left:229.394396pt;}
.x2_c00410{left:231.025333pt;}
.x54_c00410{left:234.347041pt;}
.x64_c00410{left:236.505345pt;}
.x4c_c00410{left:237.508339pt;}
.x26_c00410{left:238.912456pt;}
.x1a_c00410{left:241.181723pt;}
.x77_c00410{left:242.365463pt;}
.x56_c00410{left:243.919179pt;}
.x2e_c00410{left:246.119388pt;}
.x61_c00410{left:249.792488pt;}
.x40_c00410{left:251.588811pt;}
.x65_c00410{left:254.125267pt;}
.xf_c00410{left:256.008867pt;}
.x1b_c00410{left:258.949751pt;}
.x2f_c00410{left:260.944659pt;}
.x27_c00410{left:262.676757pt;}
.x7d_c00410{left:265.523631pt;}
.x16_c00410{left:271.440173pt;}
.x5c_c00410{left:272.886901pt;}
.x70_c00410{left:274.873843pt;}
.x58_c00410{left:276.281761pt;}
.x35_c00410{left:278.442947pt;}
.x7e_c00410{left:283.691824pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00411 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00411.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md2_c00411{transform:matrix(0.016855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016855,0.000000,0.000000,0.250000,0,0);}
.md1_c00411{transform:matrix(0.027260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027260,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.039255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.087205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087205,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.107815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107815,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116030,0.000000,0.000000,0.250000,0,0);}
.mab_c00411{transform:matrix(0.117480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117480,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);}
.md4_c00411{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.mc6_c00411{transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.140580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140580,0.000000,0.000000,0.250000,0,0);}
.m86_c00411{transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141155,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.141770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141770,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);}
.mce_c00411{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.m9f_c00411{transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);}
.ma6_c00411{transform:matrix(0.154860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154860,0.000000,0.000000,0.250000,0,0);}
.mc8_c00411{transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);}
.mb2_c00411{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00411{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);}
.m67_c00411{transform:matrix(0.162280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162280,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162665,0.000000,0.000000,0.250000,0,0);}
.md3_c00411{transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mc9_c00411{transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.me4_c00411{transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);}
.ma7_c00411{transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168655,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);}
.m88_c00411{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.mda_c00411{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);}
.me5_c00411{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.mdc_c00411{transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170335,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.mbb_c00411{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172395,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.md9_c00411{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.m92_c00411{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.174245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174245,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);}
.mbc_c00411{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174835,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.175215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175215,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);}
.m85_c00411{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176320,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.mbd_c00411{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181255,0.000000,0.000000,0.250000,0,0);}
.m8b_c00411{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m97_c00411{transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182255,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);}
.mae_c00411{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.mdf_c00411{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184730,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185660,0.000000,0.000000,0.250000,0,0);}
.m95_c00411{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.m89_c00411{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.ma4_c00411{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.ma1_c00411{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.m80_c00411{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m8d_c00411{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.ma9_c00411{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.mdd_c00411{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m96_c00411{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);}
.me8_c00411{transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191160,0.000000,0.000000,0.250000,0,0);}
.m8f_c00411{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m9d_c00411{transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);}
.me6_c00411{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.ma0_c00411{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.mac_c00411{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194070,0.000000,0.000000,0.250000,0,0);}
.mc7_c00411{transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.mba_c00411{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md6_c00411{transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);}
.mc3_c00411{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196945,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.md7_c00411{transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197730,0.000000,0.000000,0.250000,0,0);}
.me2_c00411{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.ma8_c00411{transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);}
.ma2_c00411{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m90_c00411{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m9b_c00411{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.mcd_c00411{transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00411{transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);}
.me0_c00411{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.maa_c00411{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00411{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);}
.mb0_c00411{transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);}
.mb1_c00411{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201740,0.000000,0.000000,0.250000,0,0);}
.mc5_c00411{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.mca_c00411{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.m93_c00411{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00411{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);}
.me7_c00411{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.mc4_c00411{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00411{transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203985,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.mbf_c00411{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.mad_c00411{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208040,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m7b_c00411{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.ma5_c00411{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.maf_c00411{transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);}
.md0_c00411{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.ma3_c00411{transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212245,0.000000,0.000000,0.250000,0,0);}
.mde_c00411{transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);}
.m87_c00411{transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);}
.me1_c00411{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);}
.me3_c00411{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217655,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00411{transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218245,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.md8_c00411{transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);}
.mcb_c00411{transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);}
.mb5_c00411{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);}
.mc0_c00411{transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);}
.m9a_c00411{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.mb7_c00411{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m94_c00411{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);}
.m99_c00411{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.mc2_c00411{transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231265,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);}
.m8a_c00411{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.m8e_c00411{transform:matrix(0.240555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240555,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240995,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241715,0.000000,0.000000,0.250000,0,0);}
.mb4_c00411{transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);}
.mc1_c00411{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m98_c00411{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.mcf_c00411{transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);}
.mb8_c00411{transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);}
.mb9_c00411{transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.277450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277450,0.000000,0.000000,0.250000,0,0);}
.mdb_c00411{transform:matrix(0.281655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281655,0.000000,0.000000,0.250000,0,0);}
.mcc_c00411{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327855,0.000000,0.000000,0.250000,0,0);}
.md5_c00411{transform:matrix(0.351600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351600,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.540250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540250,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.669515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669515,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:0.000000px;}
.fc0_c00411{color:transparent;}
.fsb_c00411{font-size:57.750000px;}
.fs8_c00411{font-size:59.850000px;}
.fs6_c00411{font-size:60.900000px;}
.fsc_c00411{font-size:61.950000px;}
.fsa_c00411{font-size:63.000000px;}
.fs5_c00411{font-size:64.050000px;}
.fs2_c00411{font-size:65.100000px;}
.fs0_c00411{font-size:66.150000px;}
.fs4_c00411{font-size:67.200000px;}
.fs3_c00411{font-size:68.250000px;}
.fs9_c00411{font-size:69.300000px;}
.fs1_c00411{font-size:70.350000px;}
.fs7_c00411{font-size:73.500000px;}
.y0_c00411{bottom:0.000000px;}
.yd1_c00411{bottom:31.543500px;}
.yd0_c00411{bottom:31.963500px;}
.ycf_c00411{bottom:32.875500px;}
.yce_c00411{bottom:33.123000px;}
.ycd_c00411{bottom:33.564000px;}
.ycc_c00411{bottom:34.447500px;}
.ycb_c00411{bottom:35.112000px;}
.yca_c00411{bottom:51.282000px;}
.yc9_c00411{bottom:65.295000px;}
.yc8_c00411{bottom:82.413000px;}
.yc7_c00411{bottom:82.731000px;}
.yc6_c00411{bottom:83.289000px;}
.yc5_c00411{bottom:83.871000px;}
.yc4_c00411{bottom:84.357000px;}
.yc3_c00411{bottom:85.192500px;}
.yc2_c00411{bottom:85.870500px;}
.yc1_c00411{bottom:102.313500px;}
.yc0_c00411{bottom:115.465500px;}
.ybf_c00411{bottom:115.725000px;}
.ybe_c00411{bottom:116.466000px;}
.ybd_c00411{bottom:117.090000px;}
.ybc_c00411{bottom:118.269000px;}
.ybb_c00411{bottom:119.079000px;}
.yba_c00411{bottom:131.986500px;}
.yb9_c00411{bottom:132.210000px;}
.yb8_c00411{bottom:133.134000px;}
.yb7_c00411{bottom:133.432500px;}
.yb6_c00411{bottom:134.308500px;}
.yb5_c00411{bottom:134.685000px;}
.yb4_c00411{bottom:135.322500px;}
.yb3_c00411{bottom:136.026000px;}
.yb2_c00411{bottom:136.359000px;}
.yb1_c00411{bottom:150.733500px;}
.yb0_c00411{bottom:150.945000px;}
.yaf_c00411{bottom:151.860000px;}
.yae_c00411{bottom:152.145000px;}
.yad_c00411{bottom:153.214500px;}
.yac_c00411{bottom:153.639000px;}
.yab_c00411{bottom:165.525000px;}
.yaa_c00411{bottom:166.590000px;}
.ya9_c00411{bottom:167.118000px;}
.ya8_c00411{bottom:167.589000px;}
.ya7_c00411{bottom:168.586500px;}
.ya6_c00411{bottom:170.061000px;}
.ya5_c00411{bottom:170.434500px;}
.ya4_c00411{bottom:170.922000px;}
.ya3_c00411{bottom:183.837000px;}
.ya2_c00411{bottom:184.047000px;}
.ya1_c00411{bottom:184.447500px;}
.ya0_c00411{bottom:185.448000px;}
.y9f_c00411{bottom:186.213000px;}
.y9e_c00411{bottom:186.697500px;}
.y9d_c00411{bottom:187.117500px;}
.y9c_c00411{bottom:201.426000px;}
.y9b_c00411{bottom:201.732000px;}
.y9a_c00411{bottom:202.600500px;}
.y99_c00411{bottom:203.503500px;}
.y98_c00411{bottom:204.471000px;}
.y97_c00411{bottom:204.997500px;}
.y96_c00411{bottom:205.476000px;}
.y95_c00411{bottom:218.770500px;}
.y94_c00411{bottom:219.898500px;}
.y93_c00411{bottom:220.627500px;}
.y92_c00411{bottom:221.592000px;}
.y91_c00411{bottom:221.857500px;}
.y90_c00411{bottom:223.572000px;}
.y8f_c00411{bottom:234.267000px;}
.y8e_c00411{bottom:234.895500px;}
.y8d_c00411{bottom:236.013000px;}
.y8c_c00411{bottom:236.886000px;}
.y8b_c00411{bottom:237.481500px;}
.y8a_c00411{bottom:238.507500px;}
.y89_c00411{bottom:238.978500px;}
.y88_c00411{bottom:240.039000px;}
.y87_c00411{bottom:251.506500px;}
.y86_c00411{bottom:252.186000px;}
.y85_c00411{bottom:253.584000px;}
.y84_c00411{bottom:254.932500px;}
.y83_c00411{bottom:255.378000px;}
.y82_c00411{bottom:256.296000px;}
.y81_c00411{bottom:256.779000px;}
.y80_c00411{bottom:267.877500px;}
.y7f_c00411{bottom:268.408500px;}
.y7e_c00411{bottom:268.743000px;}
.y7d_c00411{bottom:269.767500px;}
.y7c_c00411{bottom:270.090000px;}
.y7b_c00411{bottom:270.990000px;}
.y7a_c00411{bottom:271.584000px;}
.y79_c00411{bottom:271.965000px;}
.y78_c00411{bottom:273.247500px;}
.y77_c00411{bottom:286.096500px;}
.y76_c00411{bottom:286.342500px;}
.y75_c00411{bottom:287.151000px;}
.y74_c00411{bottom:287.335500px;}
.y73_c00411{bottom:287.703000px;}
.y72_c00411{bottom:288.543000px;}
.y71_c00411{bottom:289.095000px;}
.y70_c00411{bottom:289.987500px;}
.y6f_c00411{bottom:302.415000px;}
.y6e_c00411{bottom:302.790000px;}
.y6d_c00411{bottom:303.922500px;}
.y6c_c00411{bottom:304.308000px;}
.y6b_c00411{bottom:304.708500px;}
.y6a_c00411{bottom:306.001500px;}
.y69_c00411{bottom:306.333000px;}
.y68_c00411{bottom:306.727500px;}
.y67_c00411{bottom:319.302000px;}
.y66_c00411{bottom:320.413500px;}
.y65_c00411{bottom:320.857500px;}
.y64_c00411{bottom:321.739500px;}
.y63_c00411{bottom:322.386000px;}
.y62_c00411{bottom:323.179500px;}
.y61_c00411{bottom:324.006000px;}
.y60_c00411{bottom:336.613500px;}
.y5f_c00411{bottom:337.458000px;}
.y5e_c00411{bottom:337.678500px;}
.y5d_c00411{bottom:338.248500px;}
.y5c_c00411{bottom:338.839500px;}
.y5b_c00411{bottom:339.133500px;}
.y5a_c00411{bottom:340.788000px;}
.y59_c00411{bottom:341.287500px;}
.y58_c00411{bottom:353.754000px;}
.y57_c00411{bottom:354.330000px;}
.y56_c00411{bottom:355.494000px;}
.y55_c00411{bottom:355.840500px;}
.y54_c00411{bottom:356.257500px;}
.y53_c00411{bottom:357.081000px;}
.y52_c00411{bottom:358.459500px;}
.y51_c00411{bottom:358.782000px;}
.y50_c00411{bottom:359.374500px;}
.y4f_c00411{bottom:370.732500px;}
.y4e_c00411{bottom:371.098500px;}
.y4d_c00411{bottom:372.126000px;}
.y4c_c00411{bottom:372.634500px;}
.y4b_c00411{bottom:373.461000px;}
.y4a_c00411{bottom:374.547000px;}
.y49_c00411{bottom:375.811500px;}
.y48_c00411{bottom:376.381500px;}
.y47_c00411{bottom:386.929500px;}
.y46_c00411{bottom:388.192500px;}
.y45_c00411{bottom:388.623000px;}
.y44_c00411{bottom:389.331000px;}
.y43_c00411{bottom:389.968500px;}
.y42_c00411{bottom:390.780000px;}
.y41_c00411{bottom:391.828500px;}
.y40_c00411{bottom:392.853000px;}
.y3f_c00411{bottom:405.058500px;}
.y3e_c00411{bottom:405.375000px;}
.y3d_c00411{bottom:406.653000px;}
.y3c_c00411{bottom:407.085000px;}
.y3b_c00411{bottom:408.981000px;}
.y3a_c00411{bottom:409.371000px;}
.y39_c00411{bottom:409.860000px;}
.y38_c00411{bottom:421.843500px;}
.y37_c00411{bottom:422.271000px;}
.y36_c00411{bottom:423.418500px;}
.y35_c00411{bottom:424.284000px;}
.y34_c00411{bottom:424.456500px;}
.y33_c00411{bottom:425.364000px;}
.y32_c00411{bottom:425.728500px;}
.y31_c00411{bottom:426.204000px;}
.y30_c00411{bottom:426.603000px;}
.y2f_c00411{bottom:438.556500px;}
.y2e_c00411{bottom:439.891500px;}
.y2d_c00411{bottom:441.160500px;}
.y2c_c00411{bottom:441.864000px;}
.y2b_c00411{bottom:442.870500px;}
.y2a_c00411{bottom:443.337000px;}
.y29_c00411{bottom:444.154500px;}
.y28_c00411{bottom:458.598000px;}
.y27_c00411{bottom:473.541000px;}
.y26_c00411{bottom:474.526500px;}
.y25_c00411{bottom:474.942000px;}
.y24_c00411{bottom:475.390500px;}
.y23_c00411{bottom:476.493000px;}
.y22_c00411{bottom:477.364500px;}
.y21_c00411{bottom:489.222000px;}
.y20_c00411{bottom:490.797000px;}
.y1f_c00411{bottom:490.977000px;}
.y1e_c00411{bottom:492.093000px;}
.y1d_c00411{bottom:492.498000px;}
.y1c_c00411{bottom:493.474500px;}
.y1b_c00411{bottom:493.800000px;}
.y1a_c00411{bottom:494.200500px;}
.y19_c00411{bottom:494.643000px;}
.y18_c00411{bottom:506.773500px;}
.y17_c00411{bottom:506.916000px;}
.y16_c00411{bottom:508.152000px;}
.y15_c00411{bottom:508.398000px;}
.y14_c00411{bottom:508.942500px;}
.y13_c00411{bottom:509.187000px;}
.y12_c00411{bottom:509.746500px;}
.y11_c00411{bottom:510.301500px;}
.y10_c00411{bottom:523.429500px;}
.yf_c00411{bottom:524.584500px;}
.ye_c00411{bottom:525.027000px;}
.yd_c00411{bottom:525.468000px;}
.yc_c00411{bottom:526.368000px;}
.yb_c00411{bottom:527.041500px;}
.ya_c00411{bottom:542.323500px;}
.y9_c00411{bottom:558.312000px;}
.y8_c00411{bottom:558.900000px;}
.y7_c00411{bottom:559.087500px;}
.y6_c00411{bottom:559.833000px;}
.y5_c00411{bottom:560.017500px;}
.y4_c00411{bottom:560.523000px;}
.y3_c00411{bottom:560.983500px;}
.y2_c00411{bottom:561.331500px;}
.y1_c00411{bottom:572.406000px;}
.hd_c00411{height:57.750000px;}
.ha_c00411{height:59.850000px;}
.h8_c00411{height:60.900000px;}
.he_c00411{height:61.950000px;}
.hc_c00411{height:63.000000px;}
.h7_c00411{height:64.050000px;}
.h4_c00411{height:65.100000px;}
.h2_c00411{height:66.150000px;}
.h6_c00411{height:67.200000px;}
.h5_c00411{height:68.250000px;}
.hb_c00411{height:69.300000px;}
.h3_c00411{height:70.350000px;}
.h9_c00411{height:73.500000px;}
.h1_c00411{height:617.250000px;}
.h0_c00411{height:617.490000px;}
.w0_c00411{width:359.100000px;}
.w1_c00411{width:359.250000px;}
.x0_c00411{left:0.000000px;}
.x83_c00411{left:42.121500px;}
.x74_c00411{left:43.609500px;}
.x6a_c00411{left:44.919000px;}
.x59_c00411{left:46.494000px;}
.x47_c00411{left:48.202500px;}
.x30_c00411{left:49.449000px;}
.x10_c00411{left:50.862000px;}
.x2_c00411{left:51.976500px;}
.x65_c00411{left:54.577500px;}
.x80_c00411{left:58.861500px;}
.x77_c00411{left:63.234000px;}
.x1b_c00411{left:65.377500px;}
.x60_c00411{left:67.611000px;}
.x31_c00411{left:71.616000px;}
.x84_c00411{left:73.711500px;}
.x6e_c00411{left:75.132000px;}
.x42_c00411{left:77.244000px;}
.x38_c00411{left:78.348000px;}
.x75_c00411{left:82.206000px;}
.x3_c00411{left:83.559000px;}
.x72_c00411{left:85.305000px;}
.x1c_c00411{left:87.481500px;}
.x48_c00411{left:91.803000px;}
.x14_c00411{left:92.988000px;}
.x4f_c00411{left:96.759000px;}
.x32_c00411{left:98.043000px;}
.x2b_c00411{left:99.898500px;}
.x39_c00411{left:101.296500px;}
.x11_c00411{left:102.696000px;}
.x24_c00411{left:104.569500px;}
.x7b_c00411{left:105.942000px;}
.x1d_c00411{left:107.491500px;}
.x61_c00411{left:109.363500px;}
.x55_c00411{left:111.075000px;}
.x5a_c00411{left:113.980500px;}
.x70_c00411{left:115.642500px;}
.x33_c00411{left:118.315500px;}
.x2c_c00411{left:119.353500px;}
.x1e_c00411{left:123.777000px;}
.x4_c00411{left:125.410500px;}
.x66_c00411{left:127.473000px;}
.x62_c00411{left:129.615000px;}
.xa_c00411{left:130.950000px;}
.x5b_c00411{left:134.020500px;}
.x15_c00411{left:135.981000px;}
.x43_c00411{left:140.436000px;}
.x78_c00411{left:142.060500px;}
.x50_c00411{left:143.437500px;}
.x86_c00411{left:145.689000px;}
.x3d_c00411{left:147.961500px;}
.x6b_c00411{left:149.098500px;}
.x56_c00411{left:150.495000px;}
.xb_c00411{left:153.090000px;}
.x16_c00411{left:154.828500px;}
.x49_c00411{left:157.441500px;}
.x81_c00411{left:158.491500px;}
.x28_c00411{left:160.650000px;}
.x79_c00411{left:164.235000px;}
.x5c_c00411{left:165.294000px;}
.x34_c00411{left:168.723000px;}
.x5_c00411{left:171.313500px;}
.x1f_c00411{left:172.579500px;}
.x4c_c00411{left:174.835500px;}
.x67_c00411{left:176.355000px;}
.x35_c00411{left:178.275000px;}
.x76_c00411{left:179.430000px;}
.x29_c00411{left:180.900000px;}
.x1_c00411{left:184.680000px;}
.x3e_c00411{left:186.603000px;}
.x6_c00411{left:188.058000px;}
.x2d_c00411{left:190.632000px;}
.x20_c00411{left:192.826500px;}
.x44_c00411{left:194.760000px;}
.x17_c00411{left:196.678500px;}
.x52_c00411{left:198.529500px;}
.x6c_c00411{left:199.860000px;}
.x25_c00411{left:201.517500px;}
.x73_c00411{left:203.053500px;}
.x68_c00411{left:204.703500px;}
.x12_c00411{left:205.852500px;}
.x57_c00411{left:210.442500px;}
.x3a_c00411{left:212.842500px;}
.x18_c00411{left:215.578500px;}
.x3f_c00411{left:216.934500px;}
.x82_c00411{left:221.401500px;}
.x53_c00411{left:222.588000px;}
.xc_c00411{left:224.910000px;}
.x36_c00411{left:226.333500px;}
.x26_c00411{left:227.443500px;}
.x5d_c00411{left:229.587000px;}
.x4a_c00411{left:233.014500px;}
.x45_c00411{left:236.107500px;}
.x3b_c00411{left:238.224000px;}
.x13_c00411{left:239.863500px;}
.x7f_c00411{left:242.361000px;}
.x2e_c00411{left:243.528000px;}
.x7c_c00411{left:244.726500px;}
.x69_c00411{left:246.271500px;}
.xd_c00411{left:247.320000px;}
.x21_c00411{left:248.640000px;}
.x40_c00411{left:250.681500px;}
.x87_c00411{left:252.286500px;}
.x63_c00411{left:254.455500px;}
.x7_c00411{left:255.867000px;}
.x22_c00411{left:257.632500px;}
.x4d_c00411{left:260.350500px;}
.x46_c00411{left:261.558000px;}
.x85_c00411{left:266.761500px;}
.x41_c00411{left:271.164000px;}
.x8_c00411{left:272.845500px;}
.x6f_c00411{left:279.277500px;}
.x88_c00411{left:280.323000px;}
.x71_c00411{left:282.274500px;}
.x5e_c00411{left:283.542000px;}
.x64_c00411{left:285.372000px;}
.x7a_c00411{left:287.713500px;}
.x27_c00411{left:288.996000px;}
.x37_c00411{left:290.043000px;}
.x54_c00411{left:293.379000px;}
.x6d_c00411{left:297.604500px;}
.x2f_c00411{left:299.136000px;}
.x5f_c00411{left:301.183500px;}
.x2a_c00411{left:303.480000px;}
.x7d_c00411{left:306.453000px;}
.x58_c00411{left:307.647000px;}
.x19_c00411{left:310.690500px;}
.xe_c00411{left:312.930000px;}
.x4b_c00411{left:315.925500px;}
.x1a_c00411{left:321.688500px;}
.x4e_c00411{left:322.972500px;}
.x51_c00411{left:324.916500px;}
.x9_c00411{left:326.331000px;}
.x7e_c00411{left:327.513000px;}
.xf_c00411{left:328.860000px;}
.x3c_c00411{left:332.055000px;}
.x23_c00411{left:336.403500px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fsb_c00411{font-size:51.333333pt;}
.fs8_c00411{font-size:53.200000pt;}
.fs6_c00411{font-size:54.133333pt;}
.fsc_c00411{font-size:55.066667pt;}
.fsa_c00411{font-size:56.000000pt;}
.fs5_c00411{font-size:56.933333pt;}
.fs2_c00411{font-size:57.866667pt;}
.fs0_c00411{font-size:58.800000pt;}
.fs4_c00411{font-size:59.733333pt;}
.fs3_c00411{font-size:60.666667pt;}
.fs9_c00411{font-size:61.600000pt;}
.fs1_c00411{font-size:62.533333pt;}
.fs7_c00411{font-size:65.333333pt;}
.y0_c00411{bottom:0.000000pt;}
.yd1_c00411{bottom:28.038667pt;}
.yd0_c00411{bottom:28.412000pt;}
.ycf_c00411{bottom:29.222667pt;}
.yce_c00411{bottom:29.442667pt;}
.ycd_c00411{bottom:29.834667pt;}
.ycc_c00411{bottom:30.620000pt;}
.ycb_c00411{bottom:31.210667pt;}
.yca_c00411{bottom:45.584000pt;}
.yc9_c00411{bottom:58.040000pt;}
.yc8_c00411{bottom:73.256000pt;}
.yc7_c00411{bottom:73.538667pt;}
.yc6_c00411{bottom:74.034667pt;}
.yc5_c00411{bottom:74.552000pt;}
.yc4_c00411{bottom:74.984000pt;}
.yc3_c00411{bottom:75.726667pt;}
.yc2_c00411{bottom:76.329333pt;}
.yc1_c00411{bottom:90.945333pt;}
.yc0_c00411{bottom:102.636000pt;}
.ybf_c00411{bottom:102.866667pt;}
.ybe_c00411{bottom:103.525333pt;}
.ybd_c00411{bottom:104.080000pt;}
.ybc_c00411{bottom:105.128000pt;}
.ybb_c00411{bottom:105.848000pt;}
.yba_c00411{bottom:117.321333pt;}
.yb9_c00411{bottom:117.520000pt;}
.yb8_c00411{bottom:118.341333pt;}
.yb7_c00411{bottom:118.606667pt;}
.yb6_c00411{bottom:119.385333pt;}
.yb5_c00411{bottom:119.720000pt;}
.yb4_c00411{bottom:120.286667pt;}
.yb3_c00411{bottom:120.912000pt;}
.yb2_c00411{bottom:121.208000pt;}
.yb1_c00411{bottom:133.985333pt;}
.yb0_c00411{bottom:134.173333pt;}
.yaf_c00411{bottom:134.986667pt;}
.yae_c00411{bottom:135.240000pt;}
.yad_c00411{bottom:136.190667pt;}
.yac_c00411{bottom:136.568000pt;}
.yab_c00411{bottom:147.133333pt;}
.yaa_c00411{bottom:148.080000pt;}
.ya9_c00411{bottom:148.549333pt;}
.ya8_c00411{bottom:148.968000pt;}
.ya7_c00411{bottom:149.854667pt;}
.ya6_c00411{bottom:151.165333pt;}
.ya5_c00411{bottom:151.497333pt;}
.ya4_c00411{bottom:151.930667pt;}
.ya3_c00411{bottom:163.410667pt;}
.ya2_c00411{bottom:163.597333pt;}
.ya1_c00411{bottom:163.953333pt;}
.ya0_c00411{bottom:164.842667pt;}
.y9f_c00411{bottom:165.522667pt;}
.y9e_c00411{bottom:165.953333pt;}
.y9d_c00411{bottom:166.326667pt;}
.y9c_c00411{bottom:179.045333pt;}
.y9b_c00411{bottom:179.317333pt;}
.y9a_c00411{bottom:180.089333pt;}
.y99_c00411{bottom:180.892000pt;}
.y98_c00411{bottom:181.752000pt;}
.y97_c00411{bottom:182.220000pt;}
.y96_c00411{bottom:182.645333pt;}
.y95_c00411{bottom:194.462667pt;}
.y94_c00411{bottom:195.465333pt;}
.y93_c00411{bottom:196.113333pt;}
.y92_c00411{bottom:196.970667pt;}
.y91_c00411{bottom:197.206667pt;}
.y90_c00411{bottom:198.730667pt;}
.y8f_c00411{bottom:208.237333pt;}
.y8e_c00411{bottom:208.796000pt;}
.y8d_c00411{bottom:209.789333pt;}
.y8c_c00411{bottom:210.565333pt;}
.y8b_c00411{bottom:211.094667pt;}
.y8a_c00411{bottom:212.006667pt;}
.y89_c00411{bottom:212.425333pt;}
.y88_c00411{bottom:213.368000pt;}
.y87_c00411{bottom:223.561333pt;}
.y86_c00411{bottom:224.165333pt;}
.y85_c00411{bottom:225.408000pt;}
.y84_c00411{bottom:226.606667pt;}
.y83_c00411{bottom:227.002667pt;}
.y82_c00411{bottom:227.818667pt;}
.y81_c00411{bottom:228.248000pt;}
.y80_c00411{bottom:238.113333pt;}
.y7f_c00411{bottom:238.585333pt;}
.y7e_c00411{bottom:238.882667pt;}
.y7d_c00411{bottom:239.793333pt;}
.y7c_c00411{bottom:240.080000pt;}
.y7b_c00411{bottom:240.880000pt;}
.y7a_c00411{bottom:241.408000pt;}
.y79_c00411{bottom:241.746667pt;}
.y78_c00411{bottom:242.886667pt;}
.y77_c00411{bottom:254.308000pt;}
.y76_c00411{bottom:254.526667pt;}
.y75_c00411{bottom:255.245333pt;}
.y74_c00411{bottom:255.409333pt;}
.y73_c00411{bottom:255.736000pt;}
.y72_c00411{bottom:256.482667pt;}
.y71_c00411{bottom:256.973333pt;}
.y70_c00411{bottom:257.766667pt;}
.y6f_c00411{bottom:268.813333pt;}
.y6e_c00411{bottom:269.146667pt;}
.y6d_c00411{bottom:270.153333pt;}
.y6c_c00411{bottom:270.496000pt;}
.y6b_c00411{bottom:270.852000pt;}
.y6a_c00411{bottom:272.001333pt;}
.y69_c00411{bottom:272.296000pt;}
.y68_c00411{bottom:272.646667pt;}
.y67_c00411{bottom:283.824000pt;}
.y66_c00411{bottom:284.812000pt;}
.y65_c00411{bottom:285.206667pt;}
.y64_c00411{bottom:285.990667pt;}
.y63_c00411{bottom:286.565333pt;}
.y62_c00411{bottom:287.270667pt;}
.y61_c00411{bottom:288.005333pt;}
.y60_c00411{bottom:299.212000pt;}
.y5f_c00411{bottom:299.962667pt;}
.y5e_c00411{bottom:300.158667pt;}
.y5d_c00411{bottom:300.665333pt;}
.y5c_c00411{bottom:301.190667pt;}
.y5b_c00411{bottom:301.452000pt;}
.y5a_c00411{bottom:302.922667pt;}
.y59_c00411{bottom:303.366667pt;}
.y58_c00411{bottom:314.448000pt;}
.y57_c00411{bottom:314.960000pt;}
.y56_c00411{bottom:315.994667pt;}
.y55_c00411{bottom:316.302667pt;}
.y54_c00411{bottom:316.673333pt;}
.y53_c00411{bottom:317.405333pt;}
.y52_c00411{bottom:318.630667pt;}
.y51_c00411{bottom:318.917333pt;}
.y50_c00411{bottom:319.444000pt;}
.y4f_c00411{bottom:329.540000pt;}
.y4e_c00411{bottom:329.865333pt;}
.y4d_c00411{bottom:330.778667pt;}
.y4c_c00411{bottom:331.230667pt;}
.y4b_c00411{bottom:331.965333pt;}
.y4a_c00411{bottom:332.930667pt;}
.y49_c00411{bottom:334.054667pt;}
.y48_c00411{bottom:334.561333pt;}
.y47_c00411{bottom:343.937333pt;}
.y46_c00411{bottom:345.060000pt;}
.y45_c00411{bottom:345.442667pt;}
.y44_c00411{bottom:346.072000pt;}
.y43_c00411{bottom:346.638667pt;}
.y42_c00411{bottom:347.360000pt;}
.y41_c00411{bottom:348.292000pt;}
.y40_c00411{bottom:349.202667pt;}
.y3f_c00411{bottom:360.052000pt;}
.y3e_c00411{bottom:360.333333pt;}
.y3d_c00411{bottom:361.469333pt;}
.y3c_c00411{bottom:361.853333pt;}
.y3b_c00411{bottom:363.538667pt;}
.y3a_c00411{bottom:363.885333pt;}
.y39_c00411{bottom:364.320000pt;}
.y38_c00411{bottom:374.972000pt;}
.y37_c00411{bottom:375.352000pt;}
.y36_c00411{bottom:376.372000pt;}
.y35_c00411{bottom:377.141333pt;}
.y34_c00411{bottom:377.294667pt;}
.y33_c00411{bottom:378.101333pt;}
.y32_c00411{bottom:378.425333pt;}
.y31_c00411{bottom:378.848000pt;}
.y30_c00411{bottom:379.202667pt;}
.y2f_c00411{bottom:389.828000pt;}
.y2e_c00411{bottom:391.014667pt;}
.y2d_c00411{bottom:392.142667pt;}
.y2c_c00411{bottom:392.768000pt;}
.y2b_c00411{bottom:393.662667pt;}
.y2a_c00411{bottom:394.077333pt;}
.y29_c00411{bottom:394.804000pt;}
.y28_c00411{bottom:407.642667pt;}
.y27_c00411{bottom:420.925333pt;}
.y26_c00411{bottom:421.801333pt;}
.y25_c00411{bottom:422.170667pt;}
.y24_c00411{bottom:422.569333pt;}
.y23_c00411{bottom:423.549333pt;}
.y22_c00411{bottom:424.324000pt;}
.y21_c00411{bottom:434.864000pt;}
.y20_c00411{bottom:436.264000pt;}
.y1f_c00411{bottom:436.424000pt;}
.y1e_c00411{bottom:437.416000pt;}
.y1d_c00411{bottom:437.776000pt;}
.y1c_c00411{bottom:438.644000pt;}
.y1b_c00411{bottom:438.933333pt;}
.y1a_c00411{bottom:439.289333pt;}
.y19_c00411{bottom:439.682667pt;}
.y18_c00411{bottom:450.465333pt;}
.y17_c00411{bottom:450.592000pt;}
.y16_c00411{bottom:451.690667pt;}
.y15_c00411{bottom:451.909333pt;}
.y14_c00411{bottom:452.393333pt;}
.y13_c00411{bottom:452.610667pt;}
.y12_c00411{bottom:453.108000pt;}
.y11_c00411{bottom:453.601333pt;}
.y10_c00411{bottom:465.270667pt;}
.yf_c00411{bottom:466.297333pt;}
.ye_c00411{bottom:466.690667pt;}
.yd_c00411{bottom:467.082667pt;}
.yc_c00411{bottom:467.882667pt;}
.yb_c00411{bottom:468.481333pt;}
.ya_c00411{bottom:482.065333pt;}
.y9_c00411{bottom:496.277333pt;}
.y8_c00411{bottom:496.800000pt;}
.y7_c00411{bottom:496.966667pt;}
.y6_c00411{bottom:497.629333pt;}
.y5_c00411{bottom:497.793333pt;}
.y4_c00411{bottom:498.242667pt;}
.y3_c00411{bottom:498.652000pt;}
.y2_c00411{bottom:498.961333pt;}
.y1_c00411{bottom:508.805333pt;}
.hd_c00411{height:51.333333pt;}
.ha_c00411{height:53.200000pt;}
.h8_c00411{height:54.133333pt;}
.he_c00411{height:55.066667pt;}
.hc_c00411{height:56.000000pt;}
.h7_c00411{height:56.933333pt;}
.h4_c00411{height:57.866667pt;}
.h2_c00411{height:58.800000pt;}
.h6_c00411{height:59.733333pt;}
.h5_c00411{height:60.666667pt;}
.hb_c00411{height:61.600000pt;}
.h3_c00411{height:62.533333pt;}
.h9_c00411{height:65.333333pt;}
.h1_c00411{height:548.666667pt;}
.h0_c00411{height:548.880000pt;}
.w0_c00411{width:319.200000pt;}
.w1_c00411{width:319.333333pt;}
.x0_c00411{left:0.000000pt;}
.x83_c00411{left:37.441333pt;}
.x74_c00411{left:38.764000pt;}
.x6a_c00411{left:39.928000pt;}
.x59_c00411{left:41.328000pt;}
.x47_c00411{left:42.846667pt;}
.x30_c00411{left:43.954667pt;}
.x10_c00411{left:45.210667pt;}
.x2_c00411{left:46.201333pt;}
.x65_c00411{left:48.513333pt;}
.x80_c00411{left:52.321333pt;}
.x77_c00411{left:56.208000pt;}
.x1b_c00411{left:58.113333pt;}
.x60_c00411{left:60.098667pt;}
.x31_c00411{left:63.658667pt;}
.x84_c00411{left:65.521333pt;}
.x6e_c00411{left:66.784000pt;}
.x42_c00411{left:68.661333pt;}
.x38_c00411{left:69.642667pt;}
.x75_c00411{left:73.072000pt;}
.x3_c00411{left:74.274667pt;}
.x72_c00411{left:75.826667pt;}
.x1c_c00411{left:77.761333pt;}
.x48_c00411{left:81.602667pt;}
.x14_c00411{left:82.656000pt;}
.x4f_c00411{left:86.008000pt;}
.x32_c00411{left:87.149333pt;}
.x2b_c00411{left:88.798667pt;}
.x39_c00411{left:90.041333pt;}
.x11_c00411{left:91.285333pt;}
.x24_c00411{left:92.950667pt;}
.x7b_c00411{left:94.170667pt;}
.x1d_c00411{left:95.548000pt;}
.x61_c00411{left:97.212000pt;}
.x55_c00411{left:98.733333pt;}
.x5a_c00411{left:101.316000pt;}
.x70_c00411{left:102.793333pt;}
.x33_c00411{left:105.169333pt;}
.x2c_c00411{left:106.092000pt;}
.x1e_c00411{left:110.024000pt;}
.x4_c00411{left:111.476000pt;}
.x66_c00411{left:113.309333pt;}
.x62_c00411{left:115.213333pt;}
.xa_c00411{left:116.400000pt;}
.x5b_c00411{left:119.129333pt;}
.x15_c00411{left:120.872000pt;}
.x43_c00411{left:124.832000pt;}
.x78_c00411{left:126.276000pt;}
.x50_c00411{left:127.500000pt;}
.x86_c00411{left:129.501333pt;}
.x3d_c00411{left:131.521333pt;}
.x6b_c00411{left:132.532000pt;}
.x56_c00411{left:133.773333pt;}
.xb_c00411{left:136.080000pt;}
.x16_c00411{left:137.625333pt;}
.x49_c00411{left:139.948000pt;}
.x81_c00411{left:140.881333pt;}
.x28_c00411{left:142.800000pt;}
.x79_c00411{left:145.986667pt;}
.x5c_c00411{left:146.928000pt;}
.x34_c00411{left:149.976000pt;}
.x5_c00411{left:152.278667pt;}
.x1f_c00411{left:153.404000pt;}
.x4c_c00411{left:155.409333pt;}
.x67_c00411{left:156.760000pt;}
.x35_c00411{left:158.466667pt;}
.x76_c00411{left:159.493333pt;}
.x29_c00411{left:160.800000pt;}
.x1_c00411{left:164.160000pt;}
.x3e_c00411{left:165.869333pt;}
.x6_c00411{left:167.162667pt;}
.x2d_c00411{left:169.450667pt;}
.x20_c00411{left:171.401333pt;}
.x44_c00411{left:173.120000pt;}
.x17_c00411{left:174.825333pt;}
.x52_c00411{left:176.470667pt;}
.x6c_c00411{left:177.653333pt;}
.x25_c00411{left:179.126667pt;}
.x73_c00411{left:180.492000pt;}
.x68_c00411{left:181.958667pt;}
.x12_c00411{left:182.980000pt;}
.x57_c00411{left:187.060000pt;}
.x3a_c00411{left:189.193333pt;}
.x18_c00411{left:191.625333pt;}
.x3f_c00411{left:192.830667pt;}
.x82_c00411{left:196.801333pt;}
.x53_c00411{left:197.856000pt;}
.xc_c00411{left:199.920000pt;}
.x36_c00411{left:201.185333pt;}
.x26_c00411{left:202.172000pt;}
.x5d_c00411{left:204.077333pt;}
.x4a_c00411{left:207.124000pt;}
.x45_c00411{left:209.873333pt;}
.x3b_c00411{left:211.754667pt;}
.x13_c00411{left:213.212000pt;}
.x7f_c00411{left:215.432000pt;}
.x2e_c00411{left:216.469333pt;}
.x7c_c00411{left:217.534667pt;}
.x69_c00411{left:218.908000pt;}
.xd_c00411{left:219.840000pt;}
.x21_c00411{left:221.013333pt;}
.x40_c00411{left:222.828000pt;}
.x87_c00411{left:224.254667pt;}
.x63_c00411{left:226.182667pt;}
.x7_c00411{left:227.437333pt;}
.x22_c00411{left:229.006667pt;}
.x4d_c00411{left:231.422667pt;}
.x46_c00411{left:232.496000pt;}
.x85_c00411{left:237.121333pt;}
.x41_c00411{left:241.034667pt;}
.x8_c00411{left:242.529333pt;}
.x6f_c00411{left:248.246667pt;}
.x88_c00411{left:249.176000pt;}
.x71_c00411{left:250.910667pt;}
.x5e_c00411{left:252.037333pt;}
.x64_c00411{left:253.664000pt;}
.x7a_c00411{left:255.745333pt;}
.x27_c00411{left:256.885333pt;}
.x37_c00411{left:257.816000pt;}
.x54_c00411{left:260.781333pt;}
.x6d_c00411{left:264.537333pt;}
.x2f_c00411{left:265.898667pt;}
.x5f_c00411{left:267.718667pt;}
.x2a_c00411{left:269.760000pt;}
.x7d_c00411{left:272.402667pt;}
.x58_c00411{left:273.464000pt;}
.x19_c00411{left:276.169333pt;}
.xe_c00411{left:278.160000pt;}
.x4b_c00411{left:280.822667pt;}
.x1a_c00411{left:285.945333pt;}
.x4e_c00411{left:287.086667pt;}
.x51_c00411{left:288.814667pt;}
.x9_c00411{left:290.072000pt;}
.x7e_c00411{left:291.122667pt;}
.xf_c00411{left:292.320000pt;}
.x3c_c00411{left:295.160000pt;}
.x23_c00411{left:299.025333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00412 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00412.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6d_c00412{transform:matrix(0.021075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00412{transform:matrix(0.036410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036410,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.043395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043395,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.104085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104085,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.115565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115565,0.000000,0.000000,0.250000,0,0);}
.ma8_c00412{transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);}
.ma3_c00412{transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151590,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.m87_c00412{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.mb9_c00412{transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);}
.m6a_c00412{transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);}
.m6f_c00412{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.maa_c00412{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163385,0.000000,0.000000,0.250000,0,0);}
.mcf_c00412{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.m78_c00412{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.mcd_c00412{transform:matrix(0.165395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165395,0.000000,0.000000,0.250000,0,0);}
.me0_c00412{transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);}
.mb5_c00412{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00412{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);}
.mc0_c00412{transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);}
.m61_c00412{transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m7a_c00412{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.mcc_c00412{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m88_c00412{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.mb3_c00412{transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);}
.ma0_c00412{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m7e_c00412{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m9d_c00412{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.mc4_c00412{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00412{transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);}
.mc6_c00412{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.me8_c00412{transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177040,0.000000,0.000000,0.250000,0,0);}
.mb2_c00412{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m62_c00412{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mf0_c00412{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.mad_c00412{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m80_c00412{transform:matrix(0.179845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179845,0.000000,0.000000,0.250000,0,0);}
.m5a_c00412{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m86_c00412{transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m97_c00412{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.m9b_c00412{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m89_c00412{transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);}
.ma5_c00412{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.mb7_c00412{transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m72_c00412{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.me7_c00412{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.mab_c00412{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.m76_c00412{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m6e_c00412{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.maf_c00412{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m70_c00412{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00412{transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);}
.md4_c00412{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00412{transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);}
.mb1_c00412{transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);}
.m79_c00412{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m82_c00412{transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191145,0.000000,0.000000,0.250000,0,0);}
.mac_c00412{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191465,0.000000,0.000000,0.250000,0,0);}
.mec_c00412{transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191615,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m95_c00412{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m67_c00412{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.mbb_c00412{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00412{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.mce_c00412{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.192990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192990,0.000000,0.000000,0.250000,0,0);}
.m7f_c00412{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);}
.m73_c00412{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m98_c00412{transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);}
.mbf_c00412{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00412{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.195805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00412{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00412{transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196240,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m92_c00412{transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.mc8_c00412{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.me5_c00412{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.mb0_c00412{transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199165,0.000000,0.000000,0.250000,0,0);}
.m71_c00412{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.me6_c00412{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m75_c00412{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m81_c00412{transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201670,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);}
.ma9_c00412{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.m8f_c00412{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.m68_c00412{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.m65_c00412{transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203235,0.000000,0.000000,0.250000,0,0);}
.m99_c00412{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.me1_c00412{transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203745,0.000000,0.000000,0.250000,0,0);}
.mbc_c00412{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);}
.m60_c00412{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.mf1_c00412{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.mba_c00412{transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);}
.m6b_c00412{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.me3_c00412{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.md5_c00412{transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md3_c00412{transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);}
.mee_c00412{transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207480,0.000000,0.000000,0.250000,0,0);}
.md8_c00412{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m5e_c00412{transform:matrix(0.208055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208055,0.000000,0.000000,0.250000,0,0);}
.me9_c00412{transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);}
.m5c_c00412{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.m94_c00412{transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mc2_c00412{transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mc7_c00412{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.mdd_c00412{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.mc5_c00412{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m63_c00412{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.me2_c00412{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00412{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m96_c00412{transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.m84_c00412{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.mde_c00412{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);}
.m93_c00412{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.mcb_c00412{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);}
.m8e_c00412{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.mbd_c00412{transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217565,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.md0_c00412{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);}
.mc9_c00412{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);}
.med_c00412{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m9f_c00412{transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220585,0.000000,0.000000,0.250000,0,0);}
.mda_c00412{transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.mdf_c00412{transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);}
.m6c_c00412{transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225335,0.000000,0.000000,0.250000,0,0);}
.md7_c00412{transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);}
.m77_c00412{transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);}
.mca_c00412{transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);}
.mdc_c00412{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.227630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227630,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);}
.mef_c00412{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00412{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.232490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232490,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.me4_c00412{transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);}
.md9_c00412{transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);}
.md6_c00412{transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);}
.mdb_c00412{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m64_c00412{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.meb_c00412{transform:matrix(0.247140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247140,0.000000,0.000000,0.250000,0,0);}
.ma1_c00412{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m5d_c00412{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.md2_c00412{transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);}
.ma2_c00412{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);}
.m7c_c00412{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.md1_c00412{transform:matrix(0.267175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267175,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);}
.mea_c00412{transform:matrix(0.288300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288300,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.430210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430210,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(1.037840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037840,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls0_c00412{letter-spacing:0.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:0.000000px;}
.fc0_c00412{color:transparent;}
.fs6_c00412{font-size:55.650000px;}
.fs5_c00412{font-size:57.750000px;}
.fs4_c00412{font-size:58.800000px;}
.fsc_c00412{font-size:59.850000px;}
.fs9_c00412{font-size:60.900000px;}
.fs8_c00412{font-size:61.950000px;}
.fsb_c00412{font-size:63.000000px;}
.fs7_c00412{font-size:64.050000px;}
.fsa_c00412{font-size:65.100000px;}
.fs2_c00412{font-size:66.150000px;}
.fs1_c00412{font-size:67.200000px;}
.fs3_c00412{font-size:70.350000px;}
.fs0_c00412{font-size:122.850000px;}
.y0_c00412{bottom:0.000000px;}
.ya7_c00412{bottom:35.038500px;}
.ya1_c00412{bottom:50.227500px;}
.ya2_c00412{bottom:51.505500px;}
.ya3_c00412{bottom:52.477500px;}
.ya4_c00412{bottom:53.281500px;}
.ya5_c00412{bottom:53.622000px;}
.ya6_c00412{bottom:54.658500px;}
.ya0_c00412{bottom:69.529500px;}
.y9f_c00412{bottom:87.414000px;}
.y9e_c00412{bottom:103.989000px;}
.y97_c00412{bottom:119.884500px;}
.y98_c00412{bottom:121.279500px;}
.y99_c00412{bottom:121.461000px;}
.y9a_c00412{bottom:121.894500px;}
.y9b_c00412{bottom:122.098500px;}
.y9c_c00412{bottom:122.361000px;}
.y9d_c00412{bottom:122.572500px;}
.y8e_c00412{bottom:134.467500px;}
.y8f_c00412{bottom:135.114000px;}
.y90_c00412{bottom:135.447000px;}
.y91_c00412{bottom:136.477500px;}
.y92_c00412{bottom:137.077500px;}
.y93_c00412{bottom:138.118500px;}
.y94_c00412{bottom:139.005000px;}
.y95_c00412{bottom:139.269000px;}
.y96_c00412{bottom:139.581000px;}
.y87_c00412{bottom:149.053500px;}
.y88_c00412{bottom:150.204000px;}
.y89_c00412{bottom:151.831500px;}
.y8a_c00412{bottom:152.959500px;}
.y8b_c00412{bottom:153.484500px;}
.y8c_c00412{bottom:154.266000px;}
.y8d_c00412{bottom:156.078000px;}
.y86_c00412{bottom:171.160500px;}
.y85_c00412{bottom:189.103500px;}
.y84_c00412{bottom:204.765000px;}
.y83_c00412{bottom:222.685500px;}
.y82_c00412{bottom:240.249000px;}
.y81_c00412{bottom:257.052000px;}
.y7a_c00412{bottom:272.973000px;}
.y7b_c00412{bottom:273.183000px;}
.y7c_c00412{bottom:273.783000px;}
.y7d_c00412{bottom:273.979500px;}
.y7e_c00412{bottom:274.479000px;}
.y7f_c00412{bottom:274.615500px;}
.y80_c00412{bottom:276.222000px;}
.y79_c00412{bottom:291.951000px;}
.y70_c00412{bottom:307.261500px;}
.y71_c00412{bottom:307.689000px;}
.y72_c00412{bottom:307.914000px;}
.y73_c00412{bottom:308.256000px;}
.y74_c00412{bottom:308.749500px;}
.y75_c00412{bottom:308.943000px;}
.y76_c00412{bottom:309.655500px;}
.y77_c00412{bottom:309.810000px;}
.y78_c00412{bottom:310.371000px;}
.y67_c00412{bottom:324.540000px;}
.y68_c00412{bottom:324.636000px;}
.y69_c00412{bottom:325.320000px;}
.y6a_c00412{bottom:325.621500px;}
.y6b_c00412{bottom:326.250000px;}
.y6c_c00412{bottom:326.634000px;}
.y6d_c00412{bottom:327.171000px;}
.y6e_c00412{bottom:327.973500px;}
.y6f_c00412{bottom:328.248000px;}
.y5f_c00412{bottom:340.201500px;}
.y60_c00412{bottom:340.693500px;}
.y61_c00412{bottom:341.461500px;}
.y62_c00412{bottom:341.676000px;}
.y63_c00412{bottom:342.588000px;}
.y64_c00412{bottom:343.216500px;}
.y65_c00412{bottom:343.794000px;}
.y66_c00412{bottom:344.004000px;}
.y58_c00412{bottom:356.400000px;}
.y59_c00412{bottom:356.841000px;}
.y5a_c00412{bottom:357.627000px;}
.y5b_c00412{bottom:357.966000px;}
.y5c_c00412{bottom:358.297500px;}
.y5d_c00412{bottom:359.284500px;}
.y5e_c00412{bottom:359.895000px;}
.y4f_c00412{bottom:370.453500px;}
.y50_c00412{bottom:371.172000px;}
.y51_c00412{bottom:371.682000px;}
.y52_c00412{bottom:373.356000px;}
.y53_c00412{bottom:373.744500px;}
.y54_c00412{bottom:375.121500px;}
.y55_c00412{bottom:376.429500px;}
.y56_c00412{bottom:377.035500px;}
.y57_c00412{bottom:378.636000px;}
.y48_c00412{bottom:389.343000px;}
.y49_c00412{bottom:389.866500px;}
.y4a_c00412{bottom:390.229500px;}
.y4b_c00412{bottom:391.263000px;}
.y4c_c00412{bottom:391.458000px;}
.y4d_c00412{bottom:391.860000px;}
.y4e_c00412{bottom:392.614500px;}
.y40_c00412{bottom:406.084500px;}
.y41_c00412{bottom:406.939500px;}
.y42_c00412{bottom:407.970000px;}
.y43_c00412{bottom:408.294000px;}
.y44_c00412{bottom:408.693000px;}
.y45_c00412{bottom:409.705500px;}
.y46_c00412{bottom:409.963500px;}
.y47_c00412{bottom:411.091500px;}
.y38_c00412{bottom:421.209000px;}
.y39_c00412{bottom:421.809000px;}
.y3a_c00412{bottom:422.917500px;}
.y3b_c00412{bottom:423.520500px;}
.y3c_c00412{bottom:425.101500px;}
.y3d_c00412{bottom:425.716500px;}
.y3e_c00412{bottom:426.151500px;}
.y3f_c00412{bottom:427.828500px;}
.y37_c00412{bottom:441.306000px;}
.y2f_c00412{bottom:456.034500px;}
.y30_c00412{bottom:456.702000px;}
.y31_c00412{bottom:457.287000px;}
.y32_c00412{bottom:458.701500px;}
.y33_c00412{bottom:459.252000px;}
.y34_c00412{bottom:459.597000px;}
.y35_c00412{bottom:460.702500px;}
.y36_c00412{bottom:461.520000px;}
.y25_c00412{bottom:472.774500px;}
.y26_c00412{bottom:473.107500px;}
.y27_c00412{bottom:474.229500px;}
.y28_c00412{bottom:474.508500px;}
.y29_c00412{bottom:475.161000px;}
.y2a_c00412{bottom:475.557000px;}
.y2b_c00412{bottom:476.413500px;}
.y2c_c00412{bottom:477.139500px;}
.y2d_c00412{bottom:478.056000px;}
.y2e_c00412{bottom:479.173500px;}
.y1d_c00412{bottom:488.436000px;}
.y1e_c00412{bottom:488.773500px;}
.y1f_c00412{bottom:490.227000px;}
.y20_c00412{bottom:490.681500px;}
.y21_c00412{bottom:491.934000px;}
.y22_c00412{bottom:492.354000px;}
.y23_c00412{bottom:493.270500px;}
.y24_c00412{bottom:494.569500px;}
.y15_c00412{bottom:506.797500px;}
.y16_c00412{bottom:507.981000px;}
.y17_c00412{bottom:508.494000px;}
.y18_c00412{bottom:510.195000px;}
.y19_c00412{bottom:510.606000px;}
.y1a_c00412{bottom:511.039500px;}
.y1b_c00412{bottom:511.894500px;}
.y1c_c00412{bottom:512.440500px;}
.ye_c00412{bottom:524.344500px;}
.yf_c00412{bottom:525.679500px;}
.y10_c00412{bottom:526.035000px;}
.y11_c00412{bottom:527.400000px;}
.y12_c00412{bottom:528.142500px;}
.y13_c00412{bottom:528.421500px;}
.y14_c00412{bottom:529.452000px;}
.y8_c00412{bottom:542.431500px;}
.y9_c00412{bottom:543.435000px;}
.ya_c00412{bottom:543.766500px;}
.yb_c00412{bottom:544.524000px;}
.yc_c00412{bottom:545.068500px;}
.yd_c00412{bottom:545.305500px;}
.y2_c00412{bottom:559.443000px;}
.y3_c00412{bottom:560.106000px;}
.y4_c00412{bottom:562.075500px;}
.y5_c00412{bottom:562.546500px;}
.y6_c00412{bottom:564.055500px;}
.y7_c00412{bottom:564.651000px;}
.y1_c00412{bottom:572.662500px;}
.h8_c00412{height:55.650000px;}
.h7_c00412{height:57.750000px;}
.h6_c00412{height:58.800000px;}
.he_c00412{height:59.850000px;}
.hb_c00412{height:60.900000px;}
.ha_c00412{height:61.950000px;}
.hd_c00412{height:63.000000px;}
.h9_c00412{height:64.050000px;}
.hc_c00412{height:65.100000px;}
.h4_c00412{height:66.150000px;}
.h3_c00412{height:67.200000px;}
.h5_c00412{height:70.350000px;}
.h2_c00412{height:122.850000px;}
.h1_c00412{height:617.250000px;}
.h0_c00412{height:617.490000px;}
.w0_c00412{width:359.100000px;}
.w1_c00412{width:359.250000px;}
.x0_c00412{left:0.000000px;}
.x48_c00412{left:15.219000px;}
.x3_c00412{left:19.054500px;}
.x9_c00412{left:20.380500px;}
.x1b_c00412{left:22.749000px;}
.x3b_c00412{left:24.163500px;}
.x5e_c00412{left:25.383000px;}
.x64_c00412{left:27.003000px;}
.x7a_c00412{left:35.131500px;}
.x1c_c00412{left:38.083500px;}
.x2b_c00412{left:43.197000px;}
.x5f_c00412{left:44.283000px;}
.x30_c00412{left:46.200000px;}
.x43_c00412{left:49.008000px;}
.x77_c00412{left:52.923000px;}
.x4_c00412{left:53.982000px;}
.x26_c00412{left:56.053500px;}
.x4e_c00412{left:61.701000px;}
.x3f_c00412{left:64.117500px;}
.x3c_c00412{left:67.845000px;}
.x15_c00412{left:69.904500px;}
.x6c_c00412{left:71.133000px;}
.x49_c00412{left:75.205500px;}
.x65_c00412{left:76.683000px;}
.x6d_c00412{left:79.365000px;}
.x4f_c00412{left:82.189500px;}
.x27_c00412{left:85.299000px;}
.x75_c00412{left:87.213000px;}
.x2c_c00412{left:90.177000px;}
.x16_c00412{left:91.287000px;}
.x31_c00412{left:92.376000px;}
.xf_c00412{left:95.235000px;}
.x3d_c00412{left:98.152500px;}
.x78_c00412{left:99.903000px;}
.x52_c00412{left:100.981500px;}
.xa_c00412{left:104.026500px;}
.x2d_c00412{left:107.997000px;}
.x7b_c00412{left:110.343000px;}
.x50_c00412{left:113.268000px;}
.x10_c00412{left:114.972000px;}
.x57_c00412{left:115.974000px;}
.x32_c00412{left:117.490500px;}
.x40_c00412{left:119.941500px;}
.x61_c00412{left:122.583000px;}
.x1d_c00412{left:124.770000px;}
.x35_c00412{left:126.831000px;}
.xb_c00412{left:131.623500px;}
.x41_c00412{left:132.913500px;}
.x21_c00412{left:135.541500px;}
.x53_c00412{left:138.241500px;}
.x5b_c00412{left:140.673000px;}
.x62_c00412{left:143.103000px;}
.x36_c00412{left:144.837000px;}
.x4a_c00412{left:146.701500px;}
.x1_c00412{left:148.500000px;}
.x22_c00412{left:154.387500px;}
.x28_c00412{left:156.021000px;}
.x5_c00412{left:157.602000px;}
.x54_c00412{left:160.921500px;}
.x17_c00412{left:162.139500px;}
.x2e_c00412{left:164.427000px;}
.x37_c00412{left:166.974000px;}
.x66_c00412{left:168.213000px;}
.x69_c00412{left:169.293000px;}
.x71_c00412{left:170.752500px;}
.x58_c00412{left:173.755500px;}
.x4b_c00412{left:176.190000px;}
.x18_c00412{left:179.275500px;}
.x6_c00412{left:182.419500px;}
.x29_c00412{left:183.555000px;}
.x76_c00412{left:187.653000px;}
.x46_c00412{left:189.730500px;}
.x11_c00412{left:190.773000px;}
.x44_c00412{left:192.684000px;}
.xc_c00412{left:194.808000px;}
.x19_c00412{left:197.361000px;}
.x1e_c00412{left:200.814000px;}
.x33_c00412{left:208.993500px;}
.x72_c00412{left:210.165000px;}
.x5a_c00412{left:211.683000px;}
.x55_c00412{left:214.921500px;}
.x4c_c00412{left:217.510500px;}
.x6e_c00412{left:219.969000px;}
.x47_c00412{left:221.854500px;}
.x38_c00412{left:223.227000px;}
.x63_c00412{left:225.723000px;}
.x34_c00412{left:227.137500px;}
.x45_c00412{left:228.606000px;}
.x23_c00412{left:229.752000px;}
.x12_c00412{left:232.045500px;}
.x3e_c00412{left:233.967000px;}
.x39_c00412{left:237.541500px;}
.xd_c00412{left:240.177000px;}
.x6a_c00412{left:241.383000px;}
.x1f_c00412{left:242.499000px;}
.x67_c00412{left:244.083000px;}
.x13_c00412{left:247.581000px;}
.x5c_c00412{left:249.483000px;}
.x73_c00412{left:252.568500px;}
.x51_c00412{left:254.488500px;}
.x1a_c00412{left:255.757500px;}
.x68_c00412{left:258.393000px;}
.xe_c00412{left:259.906500px;}
.x7_c00412{left:261.867000px;}
.x2_c00412{left:262.980000px;}
.x79_c00412{left:265.143000px;}
.x6f_c00412{left:266.605500px;}
.x5d_c00412{left:268.923000px;}
.x74_c00412{left:271.744500px;}
.x24_c00412{left:273.427500px;}
.x2f_c00412{left:274.857000px;}
.x60_c00412{left:278.103000px;}
.x4d_c00412{left:279.274500px;}
.x70_c00412{left:280.488000px;}
.x56_c00412{left:283.501500px;}
.x8_c00412{left:293.196000px;}
.x6b_c00412{left:294.843000px;}
.x42_c00412{left:295.945500px;}
.x2a_c00412{left:296.979000px;}
.x3a_c00412{left:300.180000px;}
.x20_c00412{left:301.540500px;}
.x14_c00412{left:304.842000px;}
.x59_c00412{left:319.789500px;}
.x25_c00412{left:326.611500px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs6_c00412{font-size:49.466667pt;}
.fs5_c00412{font-size:51.333333pt;}
.fs4_c00412{font-size:52.266667pt;}
.fsc_c00412{font-size:53.200000pt;}
.fs9_c00412{font-size:54.133333pt;}
.fs8_c00412{font-size:55.066667pt;}
.fsb_c00412{font-size:56.000000pt;}
.fs7_c00412{font-size:56.933333pt;}
.fsa_c00412{font-size:57.866667pt;}
.fs2_c00412{font-size:58.800000pt;}
.fs1_c00412{font-size:59.733333pt;}
.fs3_c00412{font-size:62.533333pt;}
.fs0_c00412{font-size:109.200000pt;}
.y0_c00412{bottom:0.000000pt;}
.ya7_c00412{bottom:31.145333pt;}
.ya1_c00412{bottom:44.646667pt;}
.ya2_c00412{bottom:45.782667pt;}
.ya3_c00412{bottom:46.646667pt;}
.ya4_c00412{bottom:47.361333pt;}
.ya5_c00412{bottom:47.664000pt;}
.ya6_c00412{bottom:48.585333pt;}
.ya0_c00412{bottom:61.804000pt;}
.y9f_c00412{bottom:77.701333pt;}
.y9e_c00412{bottom:92.434667pt;}
.y97_c00412{bottom:106.564000pt;}
.y98_c00412{bottom:107.804000pt;}
.y99_c00412{bottom:107.965333pt;}
.y9a_c00412{bottom:108.350667pt;}
.y9b_c00412{bottom:108.532000pt;}
.y9c_c00412{bottom:108.765333pt;}
.y9d_c00412{bottom:108.953333pt;}
.y8e_c00412{bottom:119.526667pt;}
.y8f_c00412{bottom:120.101333pt;}
.y90_c00412{bottom:120.397333pt;}
.y91_c00412{bottom:121.313333pt;}
.y92_c00412{bottom:121.846667pt;}
.y93_c00412{bottom:122.772000pt;}
.y94_c00412{bottom:123.560000pt;}
.y95_c00412{bottom:123.794667pt;}
.y96_c00412{bottom:124.072000pt;}
.y87_c00412{bottom:132.492000pt;}
.y88_c00412{bottom:133.514667pt;}
.y89_c00412{bottom:134.961333pt;}
.y8a_c00412{bottom:135.964000pt;}
.y8b_c00412{bottom:136.430667pt;}
.y8c_c00412{bottom:137.125333pt;}
.y8d_c00412{bottom:138.736000pt;}
.y86_c00412{bottom:152.142667pt;}
.y85_c00412{bottom:168.092000pt;}
.y84_c00412{bottom:182.013333pt;}
.y83_c00412{bottom:197.942667pt;}
.y82_c00412{bottom:213.554667pt;}
.y81_c00412{bottom:228.490667pt;}
.y7a_c00412{bottom:242.642667pt;}
.y7b_c00412{bottom:242.829333pt;}
.y7c_c00412{bottom:243.362667pt;}
.y7d_c00412{bottom:243.537333pt;}
.y7e_c00412{bottom:243.981333pt;}
.y7f_c00412{bottom:244.102667pt;}
.y80_c00412{bottom:245.530667pt;}
.y79_c00412{bottom:259.512000pt;}
.y70_c00412{bottom:273.121333pt;}
.y71_c00412{bottom:273.501333pt;}
.y72_c00412{bottom:273.701333pt;}
.y73_c00412{bottom:274.005333pt;}
.y74_c00412{bottom:274.444000pt;}
.y75_c00412{bottom:274.616000pt;}
.y76_c00412{bottom:275.249333pt;}
.y77_c00412{bottom:275.386667pt;}
.y78_c00412{bottom:275.885333pt;}
.y67_c00412{bottom:288.480000pt;}
.y68_c00412{bottom:288.565333pt;}
.y69_c00412{bottom:289.173333pt;}
.y6a_c00412{bottom:289.441333pt;}
.y6b_c00412{bottom:290.000000pt;}
.y6c_c00412{bottom:290.341333pt;}
.y6d_c00412{bottom:290.818667pt;}
.y6e_c00412{bottom:291.532000pt;}
.y6f_c00412{bottom:291.776000pt;}
.y5f_c00412{bottom:302.401333pt;}
.y60_c00412{bottom:302.838667pt;}
.y61_c00412{bottom:303.521333pt;}
.y62_c00412{bottom:303.712000pt;}
.y63_c00412{bottom:304.522667pt;}
.y64_c00412{bottom:305.081333pt;}
.y65_c00412{bottom:305.594667pt;}
.y66_c00412{bottom:305.781333pt;}
.y58_c00412{bottom:316.800000pt;}
.y59_c00412{bottom:317.192000pt;}
.y5a_c00412{bottom:317.890667pt;}
.y5b_c00412{bottom:318.192000pt;}
.y5c_c00412{bottom:318.486667pt;}
.y5d_c00412{bottom:319.364000pt;}
.y5e_c00412{bottom:319.906667pt;}
.y4f_c00412{bottom:329.292000pt;}
.y50_c00412{bottom:329.930667pt;}
.y51_c00412{bottom:330.384000pt;}
.y52_c00412{bottom:331.872000pt;}
.y53_c00412{bottom:332.217333pt;}
.y54_c00412{bottom:333.441333pt;}
.y55_c00412{bottom:334.604000pt;}
.y56_c00412{bottom:335.142667pt;}
.y57_c00412{bottom:336.565333pt;}
.y48_c00412{bottom:346.082667pt;}
.y49_c00412{bottom:346.548000pt;}
.y4a_c00412{bottom:346.870667pt;}
.y4b_c00412{bottom:347.789333pt;}
.y4c_c00412{bottom:347.962667pt;}
.y4d_c00412{bottom:348.320000pt;}
.y4e_c00412{bottom:348.990667pt;}
.y40_c00412{bottom:360.964000pt;}
.y41_c00412{bottom:361.724000pt;}
.y42_c00412{bottom:362.640000pt;}
.y43_c00412{bottom:362.928000pt;}
.y44_c00412{bottom:363.282667pt;}
.y45_c00412{bottom:364.182667pt;}
.y46_c00412{bottom:364.412000pt;}
.y47_c00412{bottom:365.414667pt;}
.y38_c00412{bottom:374.408000pt;}
.y39_c00412{bottom:374.941333pt;}
.y3a_c00412{bottom:375.926667pt;}
.y3b_c00412{bottom:376.462667pt;}
.y3c_c00412{bottom:377.868000pt;}
.y3d_c00412{bottom:378.414667pt;}
.y3e_c00412{bottom:378.801333pt;}
.y3f_c00412{bottom:380.292000pt;}
.y37_c00412{bottom:392.272000pt;}
.y2f_c00412{bottom:405.364000pt;}
.y30_c00412{bottom:405.957333pt;}
.y31_c00412{bottom:406.477333pt;}
.y32_c00412{bottom:407.734667pt;}
.y33_c00412{bottom:408.224000pt;}
.y34_c00412{bottom:408.530667pt;}
.y35_c00412{bottom:409.513333pt;}
.y36_c00412{bottom:410.240000pt;}
.y25_c00412{bottom:420.244000pt;}
.y26_c00412{bottom:420.540000pt;}
.y27_c00412{bottom:421.537333pt;}
.y28_c00412{bottom:421.785333pt;}
.y29_c00412{bottom:422.365333pt;}
.y2a_c00412{bottom:422.717333pt;}
.y2b_c00412{bottom:423.478667pt;}
.y2c_c00412{bottom:424.124000pt;}
.y2d_c00412{bottom:424.938667pt;}
.y2e_c00412{bottom:425.932000pt;}
.y1d_c00412{bottom:434.165333pt;}
.y1e_c00412{bottom:434.465333pt;}
.y1f_c00412{bottom:435.757333pt;}
.y20_c00412{bottom:436.161333pt;}
.y21_c00412{bottom:437.274667pt;}
.y22_c00412{bottom:437.648000pt;}
.y23_c00412{bottom:438.462667pt;}
.y24_c00412{bottom:439.617333pt;}
.y15_c00412{bottom:450.486667pt;}
.y16_c00412{bottom:451.538667pt;}
.y17_c00412{bottom:451.994667pt;}
.y18_c00412{bottom:453.506667pt;}
.y19_c00412{bottom:453.872000pt;}
.y1a_c00412{bottom:454.257333pt;}
.y1b_c00412{bottom:455.017333pt;}
.y1c_c00412{bottom:455.502667pt;}
.ye_c00412{bottom:466.084000pt;}
.yf_c00412{bottom:467.270667pt;}
.y10_c00412{bottom:467.586667pt;}
.y11_c00412{bottom:468.800000pt;}
.y12_c00412{bottom:469.460000pt;}
.y13_c00412{bottom:469.708000pt;}
.y14_c00412{bottom:470.624000pt;}
.y8_c00412{bottom:482.161333pt;}
.y9_c00412{bottom:483.053333pt;}
.ya_c00412{bottom:483.348000pt;}
.yb_c00412{bottom:484.021333pt;}
.yc_c00412{bottom:484.505333pt;}
.yd_c00412{bottom:484.716000pt;}
.y2_c00412{bottom:497.282667pt;}
.y3_c00412{bottom:497.872000pt;}
.y4_c00412{bottom:499.622667pt;}
.y5_c00412{bottom:500.041333pt;}
.y6_c00412{bottom:501.382667pt;}
.y7_c00412{bottom:501.912000pt;}
.y1_c00412{bottom:509.033333pt;}
.h8_c00412{height:49.466667pt;}
.h7_c00412{height:51.333333pt;}
.h6_c00412{height:52.266667pt;}
.he_c00412{height:53.200000pt;}
.hb_c00412{height:54.133333pt;}
.ha_c00412{height:55.066667pt;}
.hd_c00412{height:56.000000pt;}
.h9_c00412{height:56.933333pt;}
.hc_c00412{height:57.866667pt;}
.h4_c00412{height:58.800000pt;}
.h3_c00412{height:59.733333pt;}
.h5_c00412{height:62.533333pt;}
.h2_c00412{height:109.200000pt;}
.h1_c00412{height:548.666667pt;}
.h0_c00412{height:548.880000pt;}
.w0_c00412{width:319.200000pt;}
.w1_c00412{width:319.333333pt;}
.x0_c00412{left:0.000000pt;}
.x48_c00412{left:13.528000pt;}
.x3_c00412{left:16.937333pt;}
.x9_c00412{left:18.116000pt;}
.x1b_c00412{left:20.221333pt;}
.x3b_c00412{left:21.478667pt;}
.x5e_c00412{left:22.562667pt;}
.x64_c00412{left:24.002667pt;}
.x7a_c00412{left:31.228000pt;}
.x1c_c00412{left:33.852000pt;}
.x2b_c00412{left:38.397333pt;}
.x5f_c00412{left:39.362667pt;}
.x30_c00412{left:41.066667pt;}
.x43_c00412{left:43.562667pt;}
.x77_c00412{left:47.042667pt;}
.x4_c00412{left:47.984000pt;}
.x26_c00412{left:49.825333pt;}
.x4e_c00412{left:54.845333pt;}
.x3f_c00412{left:56.993333pt;}
.x3c_c00412{left:60.306667pt;}
.x15_c00412{left:62.137333pt;}
.x6c_c00412{left:63.229333pt;}
.x49_c00412{left:66.849333pt;}
.x65_c00412{left:68.162667pt;}
.x6d_c00412{left:70.546667pt;}
.x4f_c00412{left:73.057333pt;}
.x27_c00412{left:75.821333pt;}
.x75_c00412{left:77.522667pt;}
.x2c_c00412{left:80.157333pt;}
.x16_c00412{left:81.144000pt;}
.x31_c00412{left:82.112000pt;}
.xf_c00412{left:84.653333pt;}
.x3d_c00412{left:87.246667pt;}
.x78_c00412{left:88.802667pt;}
.x52_c00412{left:89.761333pt;}
.xa_c00412{left:92.468000pt;}
.x2d_c00412{left:95.997333pt;}
.x7b_c00412{left:98.082667pt;}
.x50_c00412{left:100.682667pt;}
.x10_c00412{left:102.197333pt;}
.x57_c00412{left:103.088000pt;}
.x32_c00412{left:104.436000pt;}
.x40_c00412{left:106.614667pt;}
.x61_c00412{left:108.962667pt;}
.x1d_c00412{left:110.906667pt;}
.x35_c00412{left:112.738667pt;}
.xb_c00412{left:116.998667pt;}
.x41_c00412{left:118.145333pt;}
.x21_c00412{left:120.481333pt;}
.x53_c00412{left:122.881333pt;}
.x5b_c00412{left:125.042667pt;}
.x62_c00412{left:127.202667pt;}
.x36_c00412{left:128.744000pt;}
.x4a_c00412{left:130.401333pt;}
.x1_c00412{left:132.000000pt;}
.x22_c00412{left:137.233333pt;}
.x28_c00412{left:138.685333pt;}
.x5_c00412{left:140.090667pt;}
.x54_c00412{left:143.041333pt;}
.x17_c00412{left:144.124000pt;}
.x2e_c00412{left:146.157333pt;}
.x37_c00412{left:148.421333pt;}
.x66_c00412{left:149.522667pt;}
.x69_c00412{left:150.482667pt;}
.x71_c00412{left:151.780000pt;}
.x58_c00412{left:154.449333pt;}
.x4b_c00412{left:156.613333pt;}
.x18_c00412{left:159.356000pt;}
.x6_c00412{left:162.150667pt;}
.x29_c00412{left:163.160000pt;}
.x76_c00412{left:166.802667pt;}
.x46_c00412{left:168.649333pt;}
.x11_c00412{left:169.576000pt;}
.x44_c00412{left:171.274667pt;}
.xc_c00412{left:173.162667pt;}
.x19_c00412{left:175.432000pt;}
.x1e_c00412{left:178.501333pt;}
.x33_c00412{left:185.772000pt;}
.x72_c00412{left:186.813333pt;}
.x5a_c00412{left:188.162667pt;}
.x55_c00412{left:191.041333pt;}
.x4c_c00412{left:193.342667pt;}
.x6e_c00412{left:195.528000pt;}
.x47_c00412{left:197.204000pt;}
.x38_c00412{left:198.424000pt;}
.x63_c00412{left:200.642667pt;}
.x34_c00412{left:201.900000pt;}
.x45_c00412{left:203.205333pt;}
.x23_c00412{left:204.224000pt;}
.x12_c00412{left:206.262667pt;}
.x3e_c00412{left:207.970667pt;}
.x39_c00412{left:211.148000pt;}
.xd_c00412{left:213.490667pt;}
.x6a_c00412{left:214.562667pt;}
.x1f_c00412{left:215.554667pt;}
.x67_c00412{left:216.962667pt;}
.x13_c00412{left:220.072000pt;}
.x5c_c00412{left:221.762667pt;}
.x73_c00412{left:224.505333pt;}
.x51_c00412{left:226.212000pt;}
.x1a_c00412{left:227.340000pt;}
.x68_c00412{left:229.682667pt;}
.xe_c00412{left:231.028000pt;}
.x7_c00412{left:232.770667pt;}
.x2_c00412{left:233.760000pt;}
.x79_c00412{left:235.682667pt;}
.x6f_c00412{left:236.982667pt;}
.x5d_c00412{left:239.042667pt;}
.x74_c00412{left:241.550667pt;}
.x24_c00412{left:243.046667pt;}
.x2f_c00412{left:244.317333pt;}
.x60_c00412{left:247.202667pt;}
.x4d_c00412{left:248.244000pt;}
.x70_c00412{left:249.322667pt;}
.x56_c00412{left:252.001333pt;}
.x8_c00412{left:260.618667pt;}
.x6b_c00412{left:262.082667pt;}
.x42_c00412{left:263.062667pt;}
.x2a_c00412{left:263.981333pt;}
.x3a_c00412{left:266.826667pt;}
.x20_c00412{left:268.036000pt;}
.x14_c00412{left:270.970667pt;}
.x59_c00412{left:284.257333pt;}
.x25_c00412{left:290.321333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00413 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00413.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00413{transform:matrix(0.137365,0.002060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.137365,0.002060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.137365,0.002060,-0.003750,0.249972,0,0);}
.m99_c00413{transform:matrix(0.141020,0.002679,-0.004749,0.249955,0,0);-ms-transform:matrix(0.141020,0.002679,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.141020,0.002679,-0.004749,0.249955,0,0);}
.m91_c00413{transform:matrix(0.141854,0.002695,-0.004749,0.249955,0,0);-ms-transform:matrix(0.141854,0.002695,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.141854,0.002695,-0.004749,0.249955,0,0);}
.m4e_c00413{transform:matrix(0.142589,0.002139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142589,0.002139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142589,0.002139,-0.003750,0.249972,0,0);}
.mc8_c00413{transform:matrix(0.142607,0.003280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.142607,0.003280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.142607,0.003280,-0.005748,0.249934,0,0);}
.m81_c00413{transform:matrix(0.147498,0.002802,-0.004749,0.249955,0,0);-ms-transform:matrix(0.147498,0.002802,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.147498,0.002802,-0.004749,0.249955,0,0);}
.med_c00413{transform:matrix(0.148801,0.003422,-0.005748,0.249934,0,0);-ms-transform:matrix(0.148801,0.003422,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.148801,0.003422,-0.005748,0.249934,0,0);}
.m36_c00413{transform:matrix(0.148928,0.002234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148928,0.002234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148928,0.002234,-0.003750,0.249972,0,0);}
.m4f_c00413{transform:matrix(0.149708,0.002246,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149708,0.002246,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149708,0.002246,-0.003750,0.249972,0,0);}
.m54_c00413{transform:matrix(0.150618,0.002259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150618,0.002259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150618,0.002259,-0.003750,0.249972,0,0);}
.m12_c00413{transform:matrix(0.151693,0.002275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151693,0.002275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151693,0.002275,-0.003750,0.249972,0,0);}
.mee_c00413{transform:matrix(0.151945,0.003495,-0.005748,0.249934,0,0);-ms-transform:matrix(0.151945,0.003495,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.151945,0.003495,-0.005748,0.249934,0,0);}
.m96_c00413{transform:matrix(0.152248,0.002893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.152248,0.002893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.152248,0.002893,-0.004749,0.249955,0,0);}
.m3b_c00413{transform:matrix(0.153098,0.002296,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153098,0.002296,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153098,0.002296,-0.003750,0.249972,0,0);}
.m9_c00413{transform:matrix(0.153343,0.002300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153343,0.002300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153343,0.002300,-0.003750,0.249972,0,0);}
.m2f_c00413{transform:matrix(0.153398,0.002301,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153398,0.002301,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153398,0.002301,-0.003750,0.249972,0,0);}
.m15_c00413{transform:matrix(0.155917,0.002339,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155917,0.002339,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155917,0.002339,-0.003750,0.249972,0,0);}
.m5f_c00413{transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156632,0.002349,-0.003750,0.249972,0,0);}
.m6f_c00413{transform:matrix(0.158751,0.003016,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158751,0.003016,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158751,0.003016,-0.004749,0.249955,0,0);}
.m8f_c00413{transform:matrix(0.159311,0.003027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159311,0.003027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159311,0.003027,-0.004749,0.249955,0,0);}
.m77_c00413{transform:matrix(0.159906,0.003038,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159906,0.003038,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159906,0.003038,-0.004749,0.249955,0,0);}
.mc4_c00413{transform:matrix(0.161782,0.003721,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161782,0.003721,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161782,0.003721,-0.005748,0.249934,0,0);}
.m71_c00413{transform:matrix(0.161826,0.003075,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161826,0.003075,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161826,0.003075,-0.004749,0.249955,0,0);}
.mc9_c00413{transform:matrix(0.161852,0.003723,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161852,0.003723,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161852,0.003723,-0.005748,0.249934,0,0);}
.md9_c00413{transform:matrix(0.162397,0.003735,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162397,0.003735,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162397,0.003735,-0.005748,0.249934,0,0);}
.m4a_c00413{transform:matrix(0.164631,0.002469,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164631,0.002469,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164631,0.002469,-0.003750,0.249972,0,0);}
.mf0_c00413{transform:matrix(0.164891,0.003793,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164891,0.003793,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164891,0.003793,-0.005748,0.249934,0,0);}
.mb_c00413{transform:matrix(0.165856,0.002488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165856,0.002488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165856,0.002488,-0.003750,0.249972,0,0);}
.m37_c00413{transform:matrix(0.165936,0.002489,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165936,0.002489,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165936,0.002489,-0.003750,0.249972,0,0);}
.m94_c00413{transform:matrix(0.166350,0.003161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166350,0.003161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166350,0.003161,-0.004749,0.249955,0,0);}
.m1e_c00413{transform:matrix(0.166786,0.002502,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166786,0.002502,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166786,0.002502,-0.003750,0.249972,0,0);}
.m16_c00413{transform:matrix(0.167396,0.002511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167396,0.002511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167396,0.002511,-0.003750,0.249972,0,0);}
.m49_c00413{transform:matrix(0.168166,0.002522,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168166,0.002522,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168166,0.002522,-0.003750,0.249972,0,0);}
.m3f_c00413{transform:matrix(0.169031,0.002535,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169031,0.002535,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169031,0.002535,-0.003750,0.249972,0,0);}
.m9e_c00413{transform:matrix(0.169164,0.003214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169164,0.003214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169164,0.003214,-0.004749,0.249955,0,0);}
.md6_c00413{transform:matrix(0.169440,0.003897,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169440,0.003897,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169440,0.003897,-0.005748,0.249934,0,0);}
.maa_c00413{transform:matrix(0.169924,0.003229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169924,0.003229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169924,0.003229,-0.004749,0.249955,0,0);}
.m26_c00413{transform:matrix(0.170441,0.002557,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170441,0.002557,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170441,0.002557,-0.003750,0.249972,0,0);}
.mcc_c00413{transform:matrix(0.170615,0.003924,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170615,0.003924,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170615,0.003924,-0.005748,0.249934,0,0);}
.m90_c00413{transform:matrix(0.171369,0.003256,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171369,0.003256,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171369,0.003256,-0.004749,0.249955,0,0);}
.m40_c00413{transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171506,0.002573,-0.003750,0.249972,0,0);}
.m4_c00413{transform:matrix(0.172106,0.002582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172106,0.002582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172106,0.002582,-0.003750,0.249972,0,0);}
.m55_c00413{transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);}
.mf9_c00413{transform:matrix(0.172994,0.003979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172994,0.003979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172994,0.003979,-0.005748,0.249934,0,0);}
.m3e_c00413{transform:matrix(0.173181,0.002598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173181,0.002598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173181,0.002598,-0.003750,0.249972,0,0);}
.mac_c00413{transform:matrix(0.173309,0.003293,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173309,0.003293,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173309,0.003293,-0.004749,0.249955,0,0);}
.me_c00413{transform:matrix(0.173620,0.002604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173620,0.002604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173620,0.002604,-0.003750,0.249972,0,0);}
.m69_c00413{transform:matrix(0.173630,0.002604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173630,0.002604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173630,0.002604,-0.003750,0.249972,0,0);}
.m92_c00413{transform:matrix(0.173844,0.003303,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173844,0.003303,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173844,0.003303,-0.004749,0.249955,0,0);}
.m60_c00413{transform:matrix(0.173975,0.002610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173975,0.002610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173975,0.002610,-0.003750,0.249972,0,0);}
.m63_c00413{transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174145,0.002612,-0.003750,0.249972,0,0);}
.m93_c00413{transform:matrix(0.174249,0.003311,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174249,0.003311,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174249,0.003311,-0.004749,0.249955,0,0);}
.m11_c00413{transform:matrix(0.174655,0.002620,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174655,0.002620,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174655,0.002620,-0.003750,0.249972,0,0);}
.m9d_c00413{transform:matrix(0.175128,0.003327,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175128,0.003327,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175128,0.003327,-0.004749,0.249955,0,0);}
.m7f_c00413{transform:matrix(0.175198,0.003329,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175198,0.003329,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175198,0.003329,-0.004749,0.249955,0,0);}
.m82_c00413{transform:matrix(0.175388,0.003332,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175388,0.003332,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175388,0.003332,-0.004749,0.249955,0,0);}
.m87_c00413{transform:matrix(0.175878,0.003342,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175878,0.003342,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175878,0.003342,-0.004749,0.249955,0,0);}
.mc5_c00413{transform:matrix(0.176048,0.004049,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176048,0.004049,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176048,0.004049,-0.005748,0.249934,0,0);}
.m8c_c00413{transform:matrix(0.176113,0.003346,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176113,0.003346,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176113,0.003346,-0.004749,0.249955,0,0);}
.m6_c00413{transform:matrix(0.176130,0.002642,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176130,0.002642,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176130,0.002642,-0.003750,0.249972,0,0);}
.mc2_c00413{transform:matrix(0.176908,0.004069,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176908,0.004069,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176908,0.004069,-0.005748,0.249934,0,0);}
.m3d_c00413{transform:matrix(0.177100,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177100,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177100,0.002657,-0.003750,0.249972,0,0);}
.m88_c00413{transform:matrix(0.177218,0.003367,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177218,0.003367,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177218,0.003367,-0.004749,0.249955,0,0);}
.mf_c00413{transform:matrix(0.177380,0.002661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177380,0.002661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177380,0.002661,-0.003750,0.249972,0,0);}
.m6c_c00413{transform:matrix(0.177478,0.003372,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177478,0.003372,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177478,0.003372,-0.004749,0.249955,0,0);}
.md1_c00413{transform:matrix(0.177603,0.004085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177603,0.004085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177603,0.004085,-0.005748,0.249934,0,0);}
.m79_c00413{transform:matrix(0.178393,0.003389,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178393,0.003389,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178393,0.003389,-0.004749,0.249955,0,0);}
.m5d_c00413{transform:matrix(0.178425,0.002676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178425,0.002676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178425,0.002676,-0.003750,0.249972,0,0);}
.m58_c00413{transform:matrix(0.179025,0.002685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179025,0.002685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179025,0.002685,-0.003750,0.249972,0,0);}
.m2d_c00413{transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179075,0.002686,-0.003750,0.249972,0,0);}
.mec_c00413{transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179398,0.004126,-0.005748,0.249934,0,0);}
.m1_c00413{transform:matrix(0.180190,0.002703,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180190,0.002703,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180190,0.002703,-0.003750,0.249972,0,0);}
.mab_c00413{transform:matrix(0.180547,0.003430,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180547,0.003430,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180547,0.003430,-0.004749,0.249955,0,0);}
.m10_c00413{transform:matrix(0.180780,0.002712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180780,0.002712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180780,0.002712,-0.003750,0.249972,0,0);}
.m56_c00413{transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);}
.ma_c00413{transform:matrix(0.181230,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181230,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181230,0.002718,-0.003750,0.249972,0,0);}
.mcb_c00413{transform:matrix(0.181247,0.004169,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181247,0.004169,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181247,0.004169,-0.005748,0.249934,0,0);}
.mcf_c00413{transform:matrix(0.182312,0.004193,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182312,0.004193,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182312,0.004193,-0.005748,0.249934,0,0);}
.md2_c00413{transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);}
.m14_c00413{transform:matrix(0.183399,0.002751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183399,0.002751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183399,0.002751,-0.003750,0.249972,0,0);}
.m47_c00413{transform:matrix(0.183524,0.002753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183524,0.002753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183524,0.002753,-0.003750,0.249972,0,0);}
.m70_c00413{transform:matrix(0.183882,0.003494,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183882,0.003494,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183882,0.003494,-0.004749,0.249955,0,0);}
.m3a_c00413{transform:matrix(0.184089,0.002761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184089,0.002761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184089,0.002761,-0.003750,0.249972,0,0);}
.mdc_c00413{transform:matrix(0.184986,0.004255,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184986,0.004255,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184986,0.004255,-0.005748,0.249934,0,0);}
.ma4_c00413{transform:matrix(0.185092,0.003517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185092,0.003517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185092,0.003517,-0.004749,0.249955,0,0);}
.m6e_c00413{transform:matrix(0.185856,0.003531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185856,0.003531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185856,0.003531,-0.004749,0.249955,0,0);}
.mae_c00413{transform:matrix(0.185931,0.003533,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185931,0.003533,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185931,0.003533,-0.004749,0.249955,0,0);}
.m89_c00413{transform:matrix(0.186311,0.003540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186311,0.003540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186311,0.003540,-0.004749,0.249955,0,0);}
.mce_c00413{transform:matrix(0.186331,0.004286,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186331,0.004286,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186331,0.004286,-0.005748,0.249934,0,0);}
.m25_c00413{transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186464,0.002797,-0.003750,0.249972,0,0);}
.me8_c00413{transform:matrix(0.187081,0.004303,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187081,0.004303,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187081,0.004303,-0.005748,0.249934,0,0);}
.mc7_c00413{transform:matrix(0.187086,0.004303,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187086,0.004303,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187086,0.004303,-0.005748,0.249934,0,0);}
.m51_c00413{transform:matrix(0.187284,0.002809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187284,0.002809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187284,0.002809,-0.003750,0.249972,0,0);}
.m7b_c00413{transform:matrix(0.187626,0.003565,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187626,0.003565,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187626,0.003565,-0.004749,0.249955,0,0);}
.m8_c00413{transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188699,0.002830,-0.003750,0.249972,0,0);}
.m7_c00413{transform:matrix(0.189084,0.002836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189084,0.002836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189084,0.002836,-0.003750,0.249972,0,0);}
.m8a_c00413{transform:matrix(0.189596,0.003602,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189596,0.003602,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189596,0.003602,-0.004749,0.249955,0,0);}
.mb5_c00413{transform:matrix(0.189786,0.003606,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189786,0.003606,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189786,0.003606,-0.004749,0.249955,0,0);}
.mb4_c00413{transform:matrix(0.189826,0.003607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189826,0.003607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189826,0.003607,-0.004749,0.249955,0,0);}
.m95_c00413{transform:matrix(0.189866,0.003607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189866,0.003607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189866,0.003607,-0.004749,0.249955,0,0);}
.mdb_c00413{transform:matrix(0.190160,0.004374,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190160,0.004374,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190160,0.004374,-0.005748,0.249934,0,0);}
.m48_c00413{transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);}
.mc_c00413{transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);}
.m8b_c00413{transform:matrix(0.190831,0.003626,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190831,0.003626,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190831,0.003626,-0.004749,0.249955,0,0);}
.m2_c00413{transform:matrix(0.190874,0.002863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190874,0.002863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190874,0.002863,-0.003750,0.249972,0,0);}
.md7_c00413{transform:matrix(0.191144,0.004396,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191144,0.004396,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191144,0.004396,-0.005748,0.249934,0,0);}
.m84_c00413{transform:matrix(0.191510,0.003639,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191510,0.003639,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191510,0.003639,-0.004749,0.249955,0,0);}
.me5_c00413{transform:matrix(0.192434,0.004426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192434,0.004426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192434,0.004426,-0.005748,0.249934,0,0);}
.m6d_c00413{transform:matrix(0.192615,0.003660,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192615,0.003660,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192615,0.003660,-0.004749,0.249955,0,0);}
.m2a_c00413{transform:matrix(0.192673,0.002890,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192673,0.002890,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192673,0.002890,-0.003750,0.249972,0,0);}
.m8e_c00413{transform:matrix(0.192945,0.003666,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192945,0.003666,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192945,0.003666,-0.004749,0.249955,0,0);}
.md5_c00413{transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);}
.ma1_c00413{transform:matrix(0.193500,0.003677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193500,0.003677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193500,0.003677,-0.004749,0.249955,0,0);}
.m7c_c00413{transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193525,0.003677,-0.004749,0.249955,0,0);}
.meb_c00413{transform:matrix(0.194129,0.004465,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194129,0.004465,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194129,0.004465,-0.005748,0.249934,0,0);}
.mad_c00413{transform:matrix(0.194240,0.003691,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194240,0.003691,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194240,0.003691,-0.004749,0.249955,0,0);}
.mca_c00413{transform:matrix(0.194264,0.004468,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194264,0.004468,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194264,0.004468,-0.005748,0.249934,0,0);}
.m57_c00413{transform:matrix(0.194303,0.002915,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194303,0.002915,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194303,0.002915,-0.003750,0.249972,0,0);}
.mbd_c00413{transform:matrix(0.194319,0.004469,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194319,0.004469,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194319,0.004469,-0.005748,0.249934,0,0);}
.m4b_c00413{transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);}
.md_c00413{transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194548,0.002918,-0.003750,0.249972,0,0);}
.m19_c00413{transform:matrix(0.194683,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194683,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194683,0.002920,-0.003750,0.249972,0,0);}
.md8_c00413{transform:matrix(0.194853,0.004482,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194853,0.004482,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194853,0.004482,-0.005748,0.249934,0,0);}
.m3c_c00413{transform:matrix(0.195188,0.002928,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195188,0.002928,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195188,0.002928,-0.003750,0.249972,0,0);}
.me7_c00413{transform:matrix(0.195348,0.004493,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195348,0.004493,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195348,0.004493,-0.005748,0.249934,0,0);}
.m32_c00413{transform:matrix(0.196098,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196098,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196098,0.002941,-0.003750,0.249972,0,0);}
.m52_c00413{transform:matrix(0.196463,0.002947,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196463,0.002947,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196463,0.002947,-0.003750,0.249972,0,0);}
.mbe_c00413{transform:matrix(0.196693,0.004524,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196693,0.004524,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196693,0.004524,-0.005748,0.249934,0,0);}
.mcd_c00413{transform:matrix(0.196793,0.004526,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196793,0.004526,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196793,0.004526,-0.005748,0.249934,0,0);}
.m5c_c00413{transform:matrix(0.197143,0.002957,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197143,0.002957,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197143,0.002957,-0.003750,0.249972,0,0);}
.me2_c00413{transform:matrix(0.197173,0.004535,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197173,0.004535,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197173,0.004535,-0.005748,0.249934,0,0);}
.ma3_c00413{transform:matrix(0.197304,0.003749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197304,0.003749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197304,0.003749,-0.004749,0.249955,0,0);}
.m2c_c00413{transform:matrix(0.197768,0.002967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197768,0.002967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197768,0.002967,-0.003750,0.249972,0,0);}
.m67_c00413{transform:matrix(0.197878,0.002968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197878,0.002968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197878,0.002968,-0.003750,0.249972,0,0);}
.m73_c00413{transform:matrix(0.197959,0.003761,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197959,0.003761,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197959,0.003761,-0.004749,0.249955,0,0);}
.m66_c00413{transform:matrix(0.198098,0.002971,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198098,0.002971,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198098,0.002971,-0.003750,0.249972,0,0);}
.m7a_c00413{transform:matrix(0.199284,0.003786,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199284,0.003786,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199284,0.003786,-0.004749,0.249955,0,0);}
.m29_c00413{transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);}
.m85_c00413{transform:matrix(0.199614,0.003793,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199614,0.003793,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199614,0.003793,-0.004749,0.249955,0,0);}
.m62_c00413{transform:matrix(0.199853,0.002998,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199853,0.002998,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199853,0.002998,-0.003750,0.249972,0,0);}
.m68_c00413{transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);}
.m20_c00413{transform:matrix(0.200777,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200777,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200777,0.003012,-0.003750,0.249972,0,0);}
.m4d_c00413{transform:matrix(0.200802,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200802,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200802,0.003012,-0.003750,0.249972,0,0);}
.m4c_c00413{transform:matrix(0.200847,0.003013,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200847,0.003013,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200847,0.003013,-0.003750,0.249972,0,0);}
.mf4_c00413{transform:matrix(0.201277,0.004629,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201277,0.004629,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201277,0.004629,-0.005748,0.249934,0,0);}
.m41_c00413{transform:matrix(0.201582,0.003024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201582,0.003024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201582,0.003024,-0.003750,0.249972,0,0);}
.m7d_c00413{transform:matrix(0.201689,0.003832,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201689,0.003832,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201689,0.003832,-0.004749,0.249955,0,0);}
.m30_c00413{transform:matrix(0.201857,0.003028,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201857,0.003028,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201857,0.003028,-0.003750,0.249972,0,0);}
.m9a_c00413{transform:matrix(0.201904,0.003836,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201904,0.003836,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201904,0.003836,-0.004749,0.249955,0,0);}
.m97_c00413{transform:matrix(0.202174,0.003841,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202174,0.003841,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202174,0.003841,-0.004749,0.249955,0,0);}
.me4_c00413{transform:matrix(0.202941,0.004668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202941,0.004668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202941,0.004668,-0.005748,0.249934,0,0);}
.mc6_c00413{transform:matrix(0.203086,0.004671,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203086,0.004671,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203086,0.004671,-0.005748,0.249934,0,0);}
.m24_c00413{transform:matrix(0.203232,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203232,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203232,0.003048,-0.003750,0.249972,0,0);}
.mf6_c00413{transform:matrix(0.203296,0.004676,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203296,0.004676,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203296,0.004676,-0.005748,0.249934,0,0);}
.m6b_c00413{transform:matrix(0.203538,0.003867,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203538,0.003867,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203538,0.003867,-0.004749,0.249955,0,0);}
.ma0_c00413{transform:matrix(0.204823,0.003892,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204823,0.003892,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204823,0.003892,-0.004749,0.249955,0,0);}
.m80_c00413{transform:matrix(0.204853,0.003892,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204853,0.003892,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204853,0.003892,-0.004749,0.249955,0,0);}
.ma7_c00413{transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);}
.mb7_c00413{transform:matrix(0.205803,0.003910,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205803,0.003910,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205803,0.003910,-0.004749,0.249955,0,0);}
.m33_c00413{transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206017,0.003090,-0.003750,0.249972,0,0);}
.m18_c00413{transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);}
.mdf_c00413{transform:matrix(0.207115,0.004764,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207115,0.004764,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207115,0.004764,-0.005748,0.249934,0,0);}
.maf_c00413{transform:matrix(0.207168,0.003936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207168,0.003936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207168,0.003936,-0.004749,0.249955,0,0);}
.m1f_c00413{transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207247,0.003109,-0.003750,0.249972,0,0);}
.mb6_c00413{transform:matrix(0.207373,0.003940,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207373,0.003940,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207373,0.003940,-0.004749,0.249955,0,0);}
.m7e_c00413{transform:matrix(0.207618,0.003945,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207618,0.003945,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207618,0.003945,-0.004749,0.249955,0,0);}
.m2e_c00413{transform:matrix(0.207657,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207657,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207657,0.003115,-0.003750,0.249972,0,0);}
.me0_c00413{transform:matrix(0.207745,0.004778,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207745,0.004778,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207745,0.004778,-0.005748,0.249934,0,0);}
.m78_c00413{transform:matrix(0.208177,0.003955,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208177,0.003955,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208177,0.003955,-0.004749,0.249955,0,0);}
.md0_c00413{transform:matrix(0.208870,0.004804,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208870,0.004804,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208870,0.004804,-0.005748,0.249934,0,0);}
.m34_c00413{transform:matrix(0.208931,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208931,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208931,0.003134,-0.003750,0.249972,0,0);}
.mda_c00413{transform:matrix(0.209235,0.004812,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209235,0.004812,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209235,0.004812,-0.005748,0.249934,0,0);}
.mf5_c00413{transform:matrix(0.209620,0.004821,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209620,0.004821,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209620,0.004821,-0.005748,0.249934,0,0);}
.mb1_c00413{transform:matrix(0.210037,0.003991,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210037,0.003991,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210037,0.003991,-0.004749,0.249955,0,0);}
.m83_c00413{transform:matrix(0.210172,0.003993,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210172,0.003993,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210172,0.003993,-0.004749,0.249955,0,0);}
.m46_c00413{transform:matrix(0.210376,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210376,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210376,0.003156,-0.003750,0.249972,0,0);}
.mf3_c00413{transform:matrix(0.210424,0.004840,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210424,0.004840,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210424,0.004840,-0.005748,0.249934,0,0);}
.m1c_c00413{transform:matrix(0.210601,0.003159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210601,0.003159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210601,0.003159,-0.003750,0.249972,0,0);}
.m35_c00413{transform:matrix(0.210626,0.003159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210626,0.003159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210626,0.003159,-0.003750,0.249972,0,0);}
.m43_c00413{transform:matrix(0.210691,0.003160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210691,0.003160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210691,0.003160,-0.003750,0.249972,0,0);}
.mc3_c00413{transform:matrix(0.210729,0.004847,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210729,0.004847,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210729,0.004847,-0.005748,0.249934,0,0);}
.m13_c00413{transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);}
.mdd_c00413{transform:matrix(0.211009,0.004853,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211009,0.004853,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211009,0.004853,-0.005748,0.249934,0,0);}
.mb8_c00413{transform:matrix(0.211027,0.004010,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211027,0.004010,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211027,0.004010,-0.004749,0.249955,0,0);}
.mfa_c00413{transform:matrix(0.211104,0.004855,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211104,0.004855,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211104,0.004855,-0.005748,0.249934,0,0);}
.m27_c00413{transform:matrix(0.211721,0.003176,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211721,0.003176,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211721,0.003176,-0.003750,0.249972,0,0);}
.mf8_c00413{transform:matrix(0.211769,0.004871,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211769,0.004871,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211769,0.004871,-0.005748,0.249934,0,0);}
.m75_c00413{transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211847,0.004025,-0.004749,0.249955,0,0);}
.me3_c00413{transform:matrix(0.211894,0.004874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211894,0.004874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211894,0.004874,-0.005748,0.249934,0,0);}
.m5e_c00413{transform:matrix(0.211986,0.003180,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211986,0.003180,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211986,0.003180,-0.003750,0.249972,0,0);}
.mb9_c00413{transform:matrix(0.212012,0.004028,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212012,0.004028,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212012,0.004028,-0.004749,0.249955,0,0);}
.mea_c00413{transform:matrix(0.212199,0.004881,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212199,0.004881,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212199,0.004881,-0.005748,0.249934,0,0);}
.mef_c00413{transform:matrix(0.212349,0.004884,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212349,0.004884,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212349,0.004884,-0.005748,0.249934,0,0);}
.ma9_c00413{transform:matrix(0.212397,0.004036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212397,0.004036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212397,0.004036,-0.004749,0.249955,0,0);}
.m1d_c00413{transform:matrix(0.212951,0.003194,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212951,0.003194,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212951,0.003194,-0.003750,0.249972,0,0);}
.m9f_c00413{transform:matrix(0.213316,0.004053,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213316,0.004053,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213316,0.004053,-0.004749,0.249955,0,0);}
.m45_c00413{transform:matrix(0.214081,0.003211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214081,0.003211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214081,0.003211,-0.003750,0.249972,0,0);}
.m17_c00413{transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);}
.ma2_c00413{transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);}
.md3_c00413{transform:matrix(0.215068,0.004947,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215068,0.004947,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215068,0.004947,-0.005748,0.249934,0,0);}
.me6_c00413{transform:matrix(0.215253,0.004951,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215253,0.004951,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215253,0.004951,-0.005748,0.249934,0,0);}
.mf7_c00413{transform:matrix(0.215328,0.004953,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215328,0.004953,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215328,0.004953,-0.005748,0.249934,0,0);}
.mf1_c00413{transform:matrix(0.215358,0.004953,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215358,0.004953,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215358,0.004953,-0.005748,0.249934,0,0);}
.m8d_c00413{transform:matrix(0.215916,0.004102,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215916,0.004102,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215916,0.004102,-0.004749,0.249955,0,0);}
.me1_c00413{transform:matrix(0.216068,0.004970,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216068,0.004970,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216068,0.004970,-0.005748,0.249934,0,0);}
.m86_c00413{transform:matrix(0.217576,0.004134,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217576,0.004134,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217576,0.004134,-0.004749,0.249955,0,0);}
.mb3_c00413{transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218186,0.004146,-0.004749,0.249955,0,0);}
.m76_c00413{transform:matrix(0.218616,0.004154,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218616,0.004154,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218616,0.004154,-0.004749,0.249955,0,0);}
.ma5_c00413{transform:matrix(0.218626,0.004154,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218626,0.004154,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218626,0.004154,-0.004749,0.249955,0,0);}
.m9b_c00413{transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);}
.m9c_c00413{transform:matrix(0.219660,0.004174,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219660,0.004174,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219660,0.004174,-0.004749,0.249955,0,0);}
.m1a_c00413{transform:matrix(0.220095,0.003301,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220095,0.003301,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220095,0.003301,-0.003750,0.249972,0,0);}
.m5a_c00413{transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220495,0.003307,-0.003750,0.249972,0,0);}
.m61_c00413{transform:matrix(0.220975,0.003315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220975,0.003315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220975,0.003315,-0.003750,0.249972,0,0);}
.m23_c00413{transform:matrix(0.221615,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221615,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221615,0.003324,-0.003750,0.249972,0,0);}
.mb2_c00413{transform:matrix(0.223265,0.004242,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223265,0.004242,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223265,0.004242,-0.004749,0.249955,0,0);}
.m64_c00413{transform:matrix(0.223650,0.003355,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223650,0.003355,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223650,0.003355,-0.003750,0.249972,0,0);}
.m31_c00413{transform:matrix(0.225240,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225240,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225240,0.003379,-0.003750,0.249972,0,0);}
.m28_c00413{transform:matrix(0.225540,0.003383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225540,0.003383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225540,0.003383,-0.003750,0.249972,0,0);}
.ma6_c00413{transform:matrix(0.227519,0.004323,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227519,0.004323,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227519,0.004323,-0.004749,0.249955,0,0);}
.m2b_c00413{transform:matrix(0.227834,0.003418,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227834,0.003418,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227834,0.003418,-0.003750,0.249972,0,0);}
.mbb_c00413{transform:matrix(0.230094,0.005292,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230094,0.005292,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230094,0.005292,-0.005748,0.249934,0,0);}
.m1b_c00413{transform:matrix(0.230624,0.003459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230624,0.003459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230624,0.003459,-0.003750,0.249972,0,0);}
.m59_c00413{transform:matrix(0.231199,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231199,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231199,0.003468,-0.003750,0.249972,0,0);}
.mc0_c00413{transform:matrix(0.231224,0.005318,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231224,0.005318,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231224,0.005318,-0.005748,0.249934,0,0);}
.mf2_c00413{transform:matrix(0.231644,0.005328,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231644,0.005328,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231644,0.005328,-0.005748,0.249934,0,0);}
.m72_c00413{transform:matrix(0.232868,0.004424,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232868,0.004424,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232868,0.004424,-0.004749,0.249955,0,0);}
.m65_c00413{transform:matrix(0.233299,0.003499,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233299,0.003499,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233299,0.003499,-0.003750,0.249972,0,0);}
.m5b_c00413{transform:matrix(0.234084,0.003511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234084,0.003511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234084,0.003511,-0.003750,0.249972,0,0);}
.m74_c00413{transform:matrix(0.235957,0.004483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235957,0.004483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235957,0.004483,-0.004749,0.249955,0,0);}
.m53_c00413{transform:matrix(0.240628,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240628,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240628,0.003609,-0.003750,0.249972,0,0);}
.m50_c00413{transform:matrix(0.241568,0.003624,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241568,0.003624,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241568,0.003624,-0.003750,0.249972,0,0);}
.mbf_c00413{transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);}
.m0_c00413{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.mb0_c00413{transform:matrix(0.254194,0.004830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254194,0.004830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254194,0.004830,-0.004749,0.249955,0,0);}
.mbc_c00413{transform:matrix(0.255048,0.005866,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255048,0.005866,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255048,0.005866,-0.005748,0.249934,0,0);}
.m22_c00413{transform:matrix(0.255736,0.003836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255736,0.003836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255736,0.003836,-0.003750,0.249972,0,0);}
.md4_c00413{transform:matrix(0.256137,0.005891,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256137,0.005891,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256137,0.005891,-0.005748,0.249934,0,0);}
.mde_c00413{transform:matrix(0.261516,0.006015,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261516,0.006015,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261516,0.006015,-0.005748,0.249934,0,0);}
.m44_c00413{transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262685,0.003940,-0.003750,0.249972,0,0);}
.m39_c00413{transform:matrix(0.273539,0.004103,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273539,0.004103,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273539,0.004103,-0.003750,0.249972,0,0);}
.mba_c00413{transform:matrix(0.281724,0.005353,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281724,0.005353,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281724,0.005353,-0.004749,0.249955,0,0);}
.ma8_c00413{transform:matrix(0.285204,0.005419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285204,0.005419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285204,0.005419,-0.004749,0.249955,0,0);}
.mc1_c00413{transform:matrix(0.288954,0.006646,-0.005748,0.249934,0,0);-ms-transform:matrix(0.288954,0.006646,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.288954,0.006646,-0.005748,0.249934,0,0);}
.me9_c00413{transform:matrix(0.297401,0.006840,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297401,0.006840,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297401,0.006840,-0.005748,0.249934,0,0);}
.m38_c00413{transform:matrix(0.315340,0.004730,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315340,0.004730,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315340,0.004730,-0.003750,0.249972,0,0);}
.m98_c00413{transform:matrix(0.321872,0.006116,-0.004749,0.249955,0,0);-ms-transform:matrix(0.321872,0.006116,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.321872,0.006116,-0.004749,0.249955,0,0);}
.m6a_c00413{transform:matrix(0.330303,0.004955,-0.003750,0.249972,0,0);-ms-transform:matrix(0.330303,0.004955,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.330303,0.004955,-0.003750,0.249972,0,0);}
.m42_c00413{transform:matrix(0.339252,0.005089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.339252,0.005089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.339252,0.005089,-0.003750,0.249972,0,0);}
.m21_c00413{transform:matrix(0.353305,0.005300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.353305,0.005300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.353305,0.005300,-0.003750,0.249972,0,0);}
.m5_c00413{transform:matrix(2.135400,0.032031,-0.003750,0.249972,0,0);-ms-transform:matrix(2.135400,0.032031,-0.003750,0.249972,0,0);-webkit-transform:matrix(2.135400,0.032031,-0.003750,0.249972,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
.fc0_c00413{color:transparent;}
.fs0_c00413{font-size:54.600000px;}
.fs11_c00413{font-size:55.664717px;}
.fsa_c00413{font-size:57.760423px;}
.fs5_c00413{font-size:59.856733px;}
.fsf_c00413{font-size:59.860802px;}
.fs15_c00413{font-size:59.865828px;}
.fs4_c00413{font-size:60.906851px;}
.fse_c00413{font-size:60.910991px;}
.fs16_c00413{font-size:60.916106px;}
.fs7_c00413{font-size:61.956969px;}
.fsb_c00413{font-size:61.961181px;}
.fs13_c00413{font-size:63.016661px;}
.fs6_c00413{font-size:64.057205px;}
.fsc_c00413{font-size:64.061560px;}
.fs14_c00413{font-size:64.066939px;}
.fs8_c00413{font-size:65.107323px;}
.fsd_c00413{font-size:65.111749px;}
.fs2_c00413{font-size:66.157441px;}
.fs9_c00413{font-size:66.161939px;}
.fs3_c00413{font-size:67.207560px;}
.fs10_c00413{font-size:67.212129px;}
.fs12_c00413{font-size:67.217772px;}
.fs17_c00413{font-size:68.268050px;}
.fs1_c00413{font-size:70.357914px;}
.y0_c00413{bottom:0.000000px;}
.yfc_c00413{bottom:27.578680px;}
.yf9_c00413{bottom:27.578715px;}
.yf7_c00413{bottom:27.578776px;}
.yf8_c00413{bottom:27.578815px;}
.yf4_c00413{bottom:27.578945px;}
.yf6_c00413{bottom:27.578955px;}
.yfb_c00413{bottom:27.578958px;}
.yfa_c00413{bottom:27.579099px;}
.yf5_c00413{bottom:27.579481px;}
.yf3_c00413{bottom:41.457333px;}
.yf2_c00413{bottom:41.811693px;}
.yf1_c00413{bottom:42.586122px;}
.yf0_c00413{bottom:42.771585px;}
.yef_c00413{bottom:43.057665px;}
.yee_c00413{bottom:43.883498px;}
.yed_c00413{bottom:44.784115px;}
.yec_c00413{bottom:45.332203px;}
.yeb_c00413{bottom:58.324244px;}
.yea_c00413{bottom:58.869592px;}
.ye9_c00413{bottom:59.959893px;}
.ye8_c00413{bottom:60.401559px;}
.ye7_c00413{bottom:61.188006px;}
.ye6_c00413{bottom:61.491860px;}
.ye5_c00413{bottom:62.618067px;}
.ye4_c00413{bottom:74.345757px;}
.ye3_c00413{bottom:76.056746px;}
.ye2_c00413{bottom:77.707770px;}
.ye1_c00413{bottom:78.143181px;}
.ye0_c00413{bottom:79.238073px;}
.ydf_c00413{bottom:79.635446px;}
.yde_c00413{bottom:92.773784px;}
.ydd_c00413{bottom:93.342399px;}
.ydc_c00413{bottom:94.280453px;}
.ydb_c00413{bottom:94.633689px;}
.yda_c00413{bottom:94.951020px;}
.yd9_c00413{bottom:96.307064px;}
.yd8_c00413{bottom:96.579828px;}
.yd7_c00413{bottom:96.917243px;}
.yd6_c00413{bottom:110.044605px;}
.yd5_c00413{bottom:110.726328px;}
.yd4_c00413{bottom:111.077259px;}
.yd3_c00413{bottom:111.350294px;}
.yd2_c00413{bottom:111.754254px;}
.yd1_c00413{bottom:112.628769px;}
.yd0_c00413{bottom:113.003687px;}
.ycf_c00413{bottom:113.391235px;}
.yce_c00413{bottom:126.666969px;}
.ycd_c00413{bottom:127.177170px;}
.ycc_c00413{bottom:128.245989px;}
.ycb_c00413{bottom:128.477856px;}
.yca_c00413{bottom:128.748374px;}
.yc9_c00413{bottom:129.174303px;}
.yc8_c00413{bottom:129.535287px;}
.yc7_c00413{bottom:129.865954px;}
.yc6_c00413{bottom:130.202608px;}
.yc5_c00413{bottom:130.677179px;}
.yc4_c00413{bottom:142.655145px;}
.yc3_c00413{bottom:143.250132px;}
.yc2_c00413{bottom:143.723403px;}
.yc1_c00413{bottom:144.803667px;}
.yc0_c00413{bottom:145.328964px;}
.ybf_c00413{bottom:146.524838px;}
.ybe_c00413{bottom:147.071731px;}
.ybd_c00413{bottom:148.506000px;}
.ybc_c00413{bottom:161.013175px;}
.ybb_c00413{bottom:164.635390px;}
.yba_c00413{bottom:164.942571px;}
.yb9_c00413{bottom:177.228874px;}
.yb8_c00413{bottom:178.469733px;}
.yb7_c00413{bottom:179.027937px;}
.yb6_c00413{bottom:179.969745px;}
.yb5_c00413{bottom:180.594244px;}
.yb4_c00413{bottom:181.021575px;}
.yb3_c00413{bottom:182.444661px;}
.yb2_c00413{bottom:182.766472px;}
.yb1_c00413{bottom:195.630979px;}
.yb0_c00413{bottom:196.101570px;}
.yaf_c00413{bottom:197.462026px;}
.yae_c00413{bottom:198.022158px;}
.yad_c00413{bottom:199.153279px;}
.yac_c00413{bottom:199.725723px;}
.yab_c00413{bottom:200.859723px;}
.yaa_c00413{bottom:211.775478px;}
.ya9_c00413{bottom:213.032878px;}
.ya8_c00413{bottom:213.470407px;}
.ya7_c00413{bottom:214.252894px;}
.ya6_c00413{bottom:214.627104px;}
.ya5_c00413{bottom:215.439042px;}
.ya4_c00413{bottom:216.489078px;}
.ya3_c00413{bottom:216.790666px;}
.ya2_c00413{bottom:228.401558px;}
.ya1_c00413{bottom:229.114868px;}
.ya0_c00413{bottom:229.612797px;}
.y9f_c00413{bottom:230.719971px;}
.y9e_c00413{bottom:231.990762px;}
.y9d_c00413{bottom:233.103369px;}
.y9c_c00413{bottom:234.345424px;}
.y9b_c00413{bottom:244.888141px;}
.y9a_c00413{bottom:245.192170px;}
.y99_c00413{bottom:245.832185px;}
.y98_c00413{bottom:246.274797px;}
.y97_c00413{bottom:246.716469px;}
.y96_c00413{bottom:247.661054px;}
.y95_c00413{bottom:248.030484px;}
.y94_c00413{bottom:248.968438px;}
.y93_c00413{bottom:249.357866px;}
.y92_c00413{bottom:250.072960px;}
.y91_c00413{bottom:250.447407px;}
.y90_c00413{bottom:251.086623px;}
.y8f_c00413{bottom:262.698630px;}
.y8e_c00413{bottom:263.225082px;}
.y8d_c00413{bottom:263.722606px;}
.y8c_c00413{bottom:264.119099px;}
.y8b_c00413{bottom:265.124578px;}
.y8a_c00413{bottom:265.548915px;}
.y89_c00413{bottom:266.823264px;}
.y88_c00413{bottom:267.062578px;}
.y87_c00413{bottom:268.101004px;}
.y86_c00413{bottom:279.047622px;}
.y85_c00413{bottom:279.505546px;}
.y84_c00413{bottom:280.717038px;}
.y83_c00413{bottom:281.537649px;}
.y82_c00413{bottom:281.938380px;}
.y81_c00413{bottom:282.562730px;}
.y80_c00413{bottom:282.934070px;}
.y7f_c00413{bottom:284.387152px;}
.y7e_c00413{bottom:284.847215px;}
.y7d_c00413{bottom:296.567455px;}
.y7c_c00413{bottom:296.869243px;}
.y7b_c00413{bottom:297.880898px;}
.y7a_c00413{bottom:298.239193px;}
.y79_c00413{bottom:299.140539px;}
.y78_c00413{bottom:299.454564px;}
.y77_c00413{bottom:299.969929px;}
.y76_c00413{bottom:300.666344px;}
.y75_c00413{bottom:300.917979px;}
.y74_c00413{bottom:301.590328px;}
.y73_c00413{bottom:313.120757px;}
.y72_c00413{bottom:313.549454px;}
.y71_c00413{bottom:314.536181px;}
.y70_c00413{bottom:314.946808px;}
.y6f_c00413{bottom:315.824067px;}
.y6e_c00413{bottom:316.696595px;}
.y6d_c00413{bottom:317.327670px;}
.y6c_c00413{bottom:317.794500px;}
.y6b_c00413{bottom:332.228895px;}
.y6a_c00413{bottom:335.370397px;}
.y69_c00413{bottom:335.587770px;}
.y68_c00413{bottom:347.833215px;}
.y67_c00413{bottom:348.932212px;}
.y66_c00413{bottom:349.291687px;}
.y65_c00413{bottom:350.457832px;}
.y64_c00413{bottom:350.912085px;}
.y63_c00413{bottom:352.094760px;}
.y62_c00413{bottom:353.142068px;}
.y61_c00413{bottom:364.515720px;}
.y60_c00413{bottom:364.838123px;}
.y5f_c00413{bottom:366.470573px;}
.y5e_c00413{bottom:366.907088px;}
.y5d_c00413{bottom:367.308683px;}
.y5c_c00413{bottom:368.420640px;}
.y5b_c00413{bottom:368.690910px;}
.y5a_c00413{bottom:368.985810px;}
.y59_c00413{bottom:370.154550px;}
.y58_c00413{bottom:381.884977px;}
.y57_c00413{bottom:382.782563px;}
.y56_c00413{bottom:383.059080px;}
.y55_c00413{bottom:383.365283px;}
.y54_c00413{bottom:383.743845px;}
.y53_c00413{bottom:385.088243px;}
.y52_c00413{bottom:385.577850px;}
.y51_c00413{bottom:386.355083px;}
.y50_c00413{bottom:397.923863px;}
.y4f_c00413{bottom:398.441070px;}
.y4e_c00413{bottom:400.306290px;}
.y4d_c00413{bottom:401.146440px;}
.y4c_c00413{bottom:402.354833px;}
.y4b_c00413{bottom:402.809715px;}
.y4a_c00413{bottom:403.313063px;}
.y49_c00413{bottom:404.448465px;}
.y48_c00413{bottom:416.075723px;}
.y47_c00413{bottom:416.836920px;}
.y46_c00413{bottom:417.808020px;}
.y45_c00413{bottom:418.089810px;}
.y44_c00413{bottom:418.563615px;}
.y43_c00413{bottom:419.567655px;}
.y42_c00413{bottom:431.418698px;}
.y41_c00413{bottom:431.768408px;}
.y40_c00413{bottom:432.128250px;}
.y3f_c00413{bottom:432.630900px;}
.y3e_c00413{bottom:432.967485px;}
.y3d_c00413{bottom:434.149913px;}
.y3c_c00413{bottom:434.504430px;}
.y3b_c00413{bottom:435.364770px;}
.y3a_c00413{bottom:435.727043px;}
.y39_c00413{bottom:436.579493px;}
.y38_c00413{bottom:448.776045px;}
.y37_c00413{bottom:449.251118px;}
.y36_c00413{bottom:450.315743px;}
.y35_c00413{bottom:451.713105px;}
.y34_c00413{bottom:452.066618px;}
.y33_c00413{bottom:453.329145px;}
.y32_c00413{bottom:454.943573px;}
.y31_c00413{bottom:467.523023px;}
.y30_c00413{bottom:467.908110px;}
.y2f_c00413{bottom:468.700545px;}
.y2e_c00413{bottom:468.950595px;}
.y2d_c00413{bottom:469.257900px;}
.y2c_c00413{bottom:470.074980px;}
.y2b_c00413{bottom:470.318310px;}
.y2a_c00413{bottom:470.837595px;}
.y29_c00413{bottom:471.682178px;}
.y28_c00413{bottom:483.953985px;}
.y27_c00413{bottom:484.349235px;}
.y26_c00413{bottom:485.266028px;}
.y25_c00413{bottom:485.590868px;}
.y24_c00413{bottom:486.649185px;}
.y23_c00413{bottom:486.952792px;}
.y22_c00413{bottom:487.380428px;}
.y21_c00413{bottom:488.153220px;}
.y20_c00413{bottom:501.780555px;}
.y1f_c00413{bottom:501.781133px;}
.y1e_c00413{bottom:501.781170px;}
.y19_c00413{bottom:501.781328px;}
.y1a_c00413{bottom:501.781395px;}
.y1d_c00413{bottom:501.781598px;}
.y1b_c00413{bottom:501.782063px;}
.y1c_c00413{bottom:501.782235px;}
.y18_c00413{bottom:517.844025px;}
.y17_c00413{bottom:519.061523px;}
.y16_c00413{bottom:519.553140px;}
.y15_c00413{bottom:520.190393px;}
.y14_c00413{bottom:520.442948px;}
.y13_c00413{bottom:520.750223px;}
.y12_c00413{bottom:521.381273px;}
.y11_c00413{bottom:522.180165px;}
.y10_c00413{bottom:533.132535px;}
.yf_c00413{bottom:533.460465px;}
.ye_c00413{bottom:533.826000px;}
.yd_c00413{bottom:534.857618px;}
.yc_c00413{bottom:535.176173px;}
.yb_c00413{bottom:536.407560px;}
.ya_c00413{bottom:537.048405px;}
.y9_c00413{bottom:537.459338px;}
.y8_c00413{bottom:537.981623px;}
.y7_c00413{bottom:538.383233px;}
.y6_c00413{bottom:553.901588px;}
.y5_c00413{bottom:554.870572px;}
.y4_c00413{bottom:555.129750px;}
.y3_c00413{bottom:555.303810px;}
.y2_c00413{bottom:556.203000px;}
.y1_c00413{bottom:569.430000px;}
.h1_c00413{height:54.600000px;}
.h12_c00413{height:55.664717px;}
.hb_c00413{height:57.760423px;}
.h6_c00413{height:59.856733px;}
.h10_c00413{height:59.860802px;}
.h16_c00413{height:59.865828px;}
.h5_c00413{height:60.906851px;}
.hf_c00413{height:60.910991px;}
.h17_c00413{height:60.916106px;}
.h8_c00413{height:61.956969px;}
.hc_c00413{height:61.961181px;}
.h14_c00413{height:63.016661px;}
.h7_c00413{height:64.057205px;}
.hd_c00413{height:64.061560px;}
.h15_c00413{height:64.066939px;}
.h9_c00413{height:65.107323px;}
.he_c00413{height:65.111749px;}
.h3_c00413{height:66.157441px;}
.ha_c00413{height:66.161939px;}
.h4_c00413{height:67.207560px;}
.h11_c00413{height:67.212129px;}
.h13_c00413{height:67.217772px;}
.h18_c00413{height:68.268050px;}
.h2_c00413{height:70.357914px;}
.h0_c00413{height:608.250000px;}
.w0_c00413{width:359.100000px;}
.w1_c00413{width:359.250000px;}
.x0_c00413{left:0.000000px;}
.x74_c00413{left:41.417641px;}
.x62_c00413{left:42.964881px;}
.x4f_c00413{left:44.326565px;}
.x37_c00413{left:46.214198px;}
.x1c_c00413{left:47.352743px;}
.x2_c00413{left:48.421500px;}
.x6b_c00413{left:58.051067px;}
.x66_c00413{left:60.255473px;}
.x78_c00413{left:62.995092px;}
.x4a_c00413{left:64.386848px;}
.x6e_c00413{left:67.227000px;}
.x4c_c00413{left:68.344500px;}
.x7_c00413{left:69.511485px;}
.x75_c00413{left:71.187472px;}
.x5e_c00413{left:72.914016px;}
.x80_c00413{left:75.060802px;}
.x79_c00413{left:80.009317px;}
.x50_c00413{left:81.687777px;}
.x16_c00413{left:85.320660px;}
.x2d_c00413{left:89.054408px;}
.x3e_c00413{left:91.382363px;}
.x10_c00413{left:92.457698px;}
.x38_c00413{left:93.501308px;}
.x1d_c00413{left:95.671523px;}
.x8_c00413{left:97.028843px;}
.x57_c00413{left:98.440302px;}
.x76_c00413{left:100.016596px;}
.x63_c00413{left:102.097130px;}
.x43_c00413{left:104.072393px;}
.x2e_c00413{left:107.204558px;}
.x3_c00413{left:108.367500px;}
.x58_c00413{left:111.035802px;}
.x34_c00413{left:113.430998px;}
.x39_c00413{left:114.454973px;}
.x28_c00413{left:117.451268px;}
.x9_c00413{left:118.623038px;}
.x4_c00413{left:119.971500px;}
.x1e_c00413{left:122.380118px;}
.x69_c00413{left:124.780997px;}
.x4d_c00413{left:126.129000px;}
.x11_c00413{left:127.526122px;}
.x6f_c00413{left:129.586500px;}
.x17_c00413{left:130.686375px;}
.x44_c00413{left:132.348278px;}
.x3a_c00413{left:133.377908px;}
.x5_c00413{left:137.250000px;}
.x18_c00413{left:140.677125px;}
.x23_c00413{left:142.118948px;}
.x12_c00413{left:144.610357px;}
.x48_c00413{left:146.725943px;}
.x54_c00413{left:147.823520px;}
.x2f_c00413{left:150.257340px;}
.xa_c00413{left:152.344012px;}
.x70_c00413{left:153.364500px;}
.x64_c00413{left:155.048106px;}
.x13_c00413{left:158.646727px;}
.x35_c00413{left:163.803998px;}
.x7a_c00413{left:164.807479px;}
.x30_c00413{left:167.990513px;}
.x72_c00413{left:170.833094px;}
.x29_c00413{left:172.313175px;}
.x55_c00413{left:176.182395px;}
.x59_c00413{left:178.106802px;}
.x51_c00413{left:180.449658px;}
.x3b_c00413{left:183.730613px;}
.x1_c00413{left:188.190000px;}
.x24_c00413{left:190.189508px;}
.x14_c00413{left:194.028630px;}
.x3f_c00413{left:199.346145px;}
.x5a_c00413{left:200.440302px;}
.x6_c00413{left:201.849000px;}
.x7e_c00413{left:203.520031px;}
.x6a_c00413{left:205.264919px;}
.x81_c00413{left:206.315682px;}
.x1f_c00413{left:207.473835px;}
.x7c_c00413{left:212.279740px;}
.x19_c00413{left:214.664753px;}
.xb_c00413{left:217.132620px;}
.x3c_c00413{left:218.735888px;}
.x15_c00413{left:221.301893px;}
.x25_c00413{left:222.945518px;}
.x7f_c00413{left:223.984275px;}
.x20_c00413{left:227.729520px;}
.x45_c00413{left:229.845465px;}
.x56_c00413{left:231.697232px;}
.xc_c00413{left:233.868607px;}
.x49_c00413{left:236.808015px;}
.x40_c00413{left:239.595930px;}
.x5f_c00413{left:242.506355px;}
.x31_c00413{left:243.952320px;}
.x6c_c00413{left:247.355885px;}
.x2a_c00413{left:248.429040px;}
.x52_c00413{left:250.379469px;}
.x67_c00413{left:252.269621px;}
.x5b_c00413{left:253.360302px;}
.x41_c00413{left:255.829935px;}
.x60_c00413{left:262.593215px;}
.x7b_c00413{left:265.350660px;}
.x65_c00413{left:268.278803px;}
.x26_c00413{left:269.573123px;}
.x82_c00413{left:271.942389px;}
.x5c_c00413{left:274.228302px;}
.x73_c00413{left:275.556845px;}
.x1a_c00413{left:277.581405px;}
.x36_c00413{left:279.290498px;}
.x61_c00413{left:282.729575px;}
.x21_c00413{left:285.048165px;}
.x32_c00413{left:287.048580px;}
.xd_c00413{left:288.139845px;}
.x7d_c00413{left:291.237391px;}
.x27_c00413{left:292.244948px;}
.x2b_c00413{left:294.698483px;}
.x71_c00413{left:295.743000px;}
.x1b_c00413{left:297.024270px;}
.x77_c00413{left:298.830309px;}
.x5d_c00413{left:300.413802px;}
.x33_c00413{left:304.561275px;}
.x6d_c00413{left:305.837934px;}
.xe_c00413{left:307.407698px;}
.x42_c00413{left:308.667360px;}
.x22_c00413{left:309.797805px;}
.x46_c00413{left:311.469345px;}
.x4e_c00413{left:314.331000px;}
.x2c_c00413{left:315.367508px;}
.x3d_c00413{left:318.051000px;}
.x68_c00413{left:322.160460px;}
.x53_c00413{left:323.298837px;}
.xf_c00413{left:324.668663px;}
.x4b_c00413{left:326.132115px;}
.x47_c00413{left:327.561630px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.fs0_c00413{font-size:48.533333pt;}
.fs11_c00413{font-size:49.479749pt;}
.fsa_c00413{font-size:51.342598pt;}
.fs5_c00413{font-size:53.205985pt;}
.fsf_c00413{font-size:53.209602pt;}
.fs15_c00413{font-size:53.214070pt;}
.fs4_c00413{font-size:54.139423pt;}
.fse_c00413{font-size:54.143104pt;}
.fs16_c00413{font-size:54.147650pt;}
.fs7_c00413{font-size:55.072861pt;}
.fsb_c00413{font-size:55.076605pt;}
.fs13_c00413{font-size:56.014810pt;}
.fs6_c00413{font-size:56.939738pt;}
.fsc_c00413{font-size:56.943609pt;}
.fs14_c00413{font-size:56.948390pt;}
.fs8_c00413{font-size:57.873176pt;}
.fsd_c00413{font-size:57.877111pt;}
.fs2_c00413{font-size:58.806615pt;}
.fs9_c00413{font-size:58.810612pt;}
.fs3_c00413{font-size:59.740053pt;}
.fs10_c00413{font-size:59.744114pt;}
.fs12_c00413{font-size:59.749131pt;}
.fs17_c00413{font-size:60.682711pt;}
.fs1_c00413{font-size:62.540368pt;}
.y0_c00413{bottom:0.000000pt;}
.yfc_c00413{bottom:24.514383pt;}
.yf9_c00413{bottom:24.514413pt;}
.yf7_c00413{bottom:24.514468pt;}
.yf8_c00413{bottom:24.514503pt;}
.yf4_c00413{bottom:24.514617pt;}
.yf6_c00413{bottom:24.514627pt;}
.yfb_c00413{bottom:24.514629pt;}
.yfa_c00413{bottom:24.514755pt;}
.yf5_c00413{bottom:24.515095pt;}
.yf3_c00413{bottom:36.850963pt;}
.yf2_c00413{bottom:37.165949pt;}
.yf1_c00413{bottom:37.854331pt;}
.yf0_c00413{bottom:38.019187pt;}
.yef_c00413{bottom:38.273480pt;}
.yee_c00413{bottom:39.007553pt;}
.yed_c00413{bottom:39.808103pt;}
.yec_c00413{bottom:40.295292pt;}
.yeb_c00413{bottom:51.843772pt;}
.yea_c00413{bottom:52.328527pt;}
.ye9_c00413{bottom:53.297683pt;}
.ye8_c00413{bottom:53.690275pt;}
.ye7_c00413{bottom:54.389339pt;}
.ye6_c00413{bottom:54.659431pt;}
.ye5_c00413{bottom:55.660504pt;}
.ye4_c00413{bottom:66.085117pt;}
.ye3_c00413{bottom:67.605996pt;}
.ye2_c00413{bottom:69.073573pt;}
.ye1_c00413{bottom:69.460605pt;}
.ye0_c00413{bottom:70.433843pt;}
.ydf_c00413{bottom:70.787063pt;}
.yde_c00413{bottom:82.465585pt;}
.ydd_c00413{bottom:82.971021pt;}
.ydc_c00413{bottom:83.804847pt;}
.ydb_c00413{bottom:84.118835pt;}
.yda_c00413{bottom:84.400907pt;}
.yd9_c00413{bottom:85.606279pt;}
.yd8_c00413{bottom:85.848736pt;}
.yd7_c00413{bottom:86.148660pt;}
.yd6_c00413{bottom:97.817427pt;}
.yd5_c00413{bottom:98.423403pt;}
.yd4_c00413{bottom:98.735341pt;}
.yd3_c00413{bottom:98.978039pt;}
.yd2_c00413{bottom:99.337115pt;}
.yd1_c00413{bottom:100.114461pt;}
.yd0_c00413{bottom:100.447721pt;}
.ycf_c00413{bottom:100.792209pt;}
.yce_c00413{bottom:112.592861pt;}
.ycd_c00413{bottom:113.046373pt;}
.ycc_c00413{bottom:113.996435pt;}
.ycb_c00413{bottom:114.202539pt;}
.yca_c00413{bottom:114.442999pt;}
.yc9_c00413{bottom:114.821603pt;}
.yc8_c00413{bottom:115.142477pt;}
.yc7_c00413{bottom:115.436404pt;}
.yc6_c00413{bottom:115.735652pt;}
.yc5_c00413{bottom:116.157492pt;}
.yc4_c00413{bottom:126.804573pt;}
.yc3_c00413{bottom:127.333451pt;}
.yc2_c00413{bottom:127.754136pt;}
.yc1_c00413{bottom:128.714371pt;}
.yc0_c00413{bottom:129.181301pt;}
.ybf_c00413{bottom:130.244300pt;}
.ybe_c00413{bottom:130.730428pt;}
.ybd_c00413{bottom:132.005333pt;}
.ybc_c00413{bottom:143.122823pt;}
.ybb_c00413{bottom:146.342569pt;}
.yba_c00413{bottom:146.615619pt;}
.yb9_c00413{bottom:157.536777pt;}
.yb8_c00413{bottom:158.639763pt;}
.yb7_c00413{bottom:159.135944pt;}
.yb6_c00413{bottom:159.973107pt;}
.yb5_c00413{bottom:160.528217pt;}
.yb4_c00413{bottom:160.908067pt;}
.yb3_c00413{bottom:162.173032pt;}
.yb2_c00413{bottom:162.459087pt;}
.yb1_c00413{bottom:173.894204pt;}
.yb0_c00413{bottom:174.312507pt;}
.yaf_c00413{bottom:175.521801pt;}
.yae_c00413{bottom:176.019696pt;}
.yad_c00413{bottom:177.025137pt;}
.yac_c00413{bottom:177.533976pt;}
.yab_c00413{bottom:178.541976pt;}
.yaa_c00413{bottom:188.244869pt;}
.ya9_c00413{bottom:189.362559pt;}
.ya8_c00413{bottom:189.751473pt;}
.ya7_c00413{bottom:190.447017pt;}
.ya6_c00413{bottom:190.779648pt;}
.ya5_c00413{bottom:191.501371pt;}
.ya4_c00413{bottom:192.434736pt;}
.ya3_c00413{bottom:192.702815pt;}
.ya2_c00413{bottom:203.023607pt;}
.ya1_c00413{bottom:203.657660pt;}
.ya0_c00413{bottom:204.100264pt;}
.y9f_c00413{bottom:205.084419pt;}
.y9e_c00413{bottom:206.214011pt;}
.y9d_c00413{bottom:207.202995pt;}
.y9c_c00413{bottom:208.307044pt;}
.y9b_c00413{bottom:217.678348pt;}
.y9a_c00413{bottom:217.948596pt;}
.y99_c00413{bottom:218.517497pt;}
.y98_c00413{bottom:218.910931pt;}
.y97_c00413{bottom:219.303528pt;}
.y96_c00413{bottom:220.143159pt;}
.y95_c00413{bottom:220.471541pt;}
.y94_c00413{bottom:221.305279pt;}
.y93_c00413{bottom:221.651436pt;}
.y92_c00413{bottom:222.287076pt;}
.y91_c00413{bottom:222.619917pt;}
.y90_c00413{bottom:223.188109pt;}
.y8f_c00413{bottom:233.509893pt;}
.y8e_c00413{bottom:233.977851pt;}
.y8d_c00413{bottom:234.420095pt;}
.y8c_c00413{bottom:234.772532pt;}
.y8b_c00413{bottom:235.666292pt;}
.y8a_c00413{bottom:236.043480pt;}
.y89_c00413{bottom:237.176235pt;}
.y88_c00413{bottom:237.388959pt;}
.y87_c00413{bottom:238.312004pt;}
.y86_c00413{bottom:248.042331pt;}
.y85_c00413{bottom:248.449375pt;}
.y84_c00413{bottom:249.526256pt;}
.y83_c00413{bottom:250.255688pt;}
.y82_c00413{bottom:250.611893pt;}
.y81_c00413{bottom:251.166871pt;}
.y80_c00413{bottom:251.496951pt;}
.y7f_c00413{bottom:252.788580pt;}
.y7e_c00413{bottom:253.197524pt;}
.y7d_c00413{bottom:263.615516pt;}
.y7c_c00413{bottom:263.883772pt;}
.y7b_c00413{bottom:264.783020pt;}
.y7a_c00413{bottom:265.101505pt;}
.y79_c00413{bottom:265.902701pt;}
.y78_c00413{bottom:266.181835pt;}
.y77_c00413{bottom:266.639937pt;}
.y76_c00413{bottom:267.258972pt;}
.y75_c00413{bottom:267.482648pt;}
.y74_c00413{bottom:268.080292pt;}
.y73_c00413{bottom:278.329561pt;}
.y72_c00413{bottom:278.710625pt;}
.y71_c00413{bottom:279.587716pt;}
.y70_c00413{bottom:279.952719pt;}
.y6f_c00413{bottom:280.732504pt;}
.y6e_c00413{bottom:281.508084pt;}
.y6d_c00413{bottom:282.069040pt;}
.y6c_c00413{bottom:282.484000pt;}
.y6b_c00413{bottom:295.314573pt;}
.y6a_c00413{bottom:298.107020pt;}
.y69_c00413{bottom:298.300240pt;}
.y68_c00413{bottom:309.185080pt;}
.y67_c00413{bottom:310.161967pt;}
.y66_c00413{bottom:310.481500pt;}
.y65_c00413{bottom:311.518073pt;}
.y64_c00413{bottom:311.921853pt;}
.y63_c00413{bottom:312.973120pt;}
.y62_c00413{bottom:313.904060pt;}
.y61_c00413{bottom:324.013973pt;}
.y60_c00413{bottom:324.300553pt;}
.y5f_c00413{bottom:325.751620pt;}
.y5e_c00413{bottom:326.139633pt;}
.y5d_c00413{bottom:326.496607pt;}
.y5c_c00413{bottom:327.485013pt;}
.y5b_c00413{bottom:327.725253pt;}
.y5a_c00413{bottom:327.987387pt;}
.y59_c00413{bottom:329.026267pt;}
.y58_c00413{bottom:339.453313pt;}
.y57_c00413{bottom:340.251167pt;}
.y56_c00413{bottom:340.496960pt;}
.y55_c00413{bottom:340.769140pt;}
.y54_c00413{bottom:341.105640pt;}
.y53_c00413{bottom:342.300660pt;}
.y52_c00413{bottom:342.735867pt;}
.y51_c00413{bottom:343.426740pt;}
.y50_c00413{bottom:353.710100pt;}
.y4f_c00413{bottom:354.169840pt;}
.y4e_c00413{bottom:355.827813pt;}
.y4d_c00413{bottom:356.574613pt;}
.y4c_c00413{bottom:357.648740pt;}
.y4b_c00413{bottom:358.053080pt;}
.y4a_c00413{bottom:358.500500pt;}
.y49_c00413{bottom:359.509747pt;}
.y48_c00413{bottom:369.845087pt;}
.y47_c00413{bottom:370.521707pt;}
.y46_c00413{bottom:371.384907pt;}
.y45_c00413{bottom:371.635387pt;}
.y44_c00413{bottom:372.056547pt;}
.y43_c00413{bottom:372.949027pt;}
.y42_c00413{bottom:383.483287pt;}
.y41_c00413{bottom:383.794140pt;}
.y40_c00413{bottom:384.114000pt;}
.y3f_c00413{bottom:384.560800pt;}
.y3e_c00413{bottom:384.859987pt;}
.y3d_c00413{bottom:385.911033pt;}
.y3c_c00413{bottom:386.226160pt;}
.y3b_c00413{bottom:386.990907pt;}
.y3a_c00413{bottom:387.312927pt;}
.y39_c00413{bottom:388.070660pt;}
.y38_c00413{bottom:398.912040pt;}
.y37_c00413{bottom:399.334327pt;}
.y36_c00413{bottom:400.280660pt;}
.y35_c00413{bottom:401.522760pt;}
.y34_c00413{bottom:401.836993pt;}
.y33_c00413{bottom:402.959240pt;}
.y32_c00413{bottom:404.394287pt;}
.y31_c00413{bottom:415.576020pt;}
.y30_c00413{bottom:415.918320pt;}
.y2f_c00413{bottom:416.622707pt;}
.y2e_c00413{bottom:416.844973pt;}
.y2d_c00413{bottom:417.118133pt;}
.y2c_c00413{bottom:417.844427pt;}
.y2b_c00413{bottom:418.060720pt;}
.y2a_c00413{bottom:418.522307pt;}
.y29_c00413{bottom:419.273047pt;}
.y28_c00413{bottom:430.181320pt;}
.y27_c00413{bottom:430.532653pt;}
.y26_c00413{bottom:431.347580pt;}
.y25_c00413{bottom:431.636327pt;}
.y24_c00413{bottom:432.577053pt;}
.y23_c00413{bottom:432.846927pt;}
.y22_c00413{bottom:433.227047pt;}
.y21_c00413{bottom:433.913973pt;}
.y20_c00413{bottom:446.027160pt;}
.y1f_c00413{bottom:446.027673pt;}
.y1e_c00413{bottom:446.027707pt;}
.y19_c00413{bottom:446.027847pt;}
.y1a_c00413{bottom:446.027907pt;}
.y1d_c00413{bottom:446.028087pt;}
.y1b_c00413{bottom:446.028500pt;}
.y1c_c00413{bottom:446.028653pt;}
.y18_c00413{bottom:460.305800pt;}
.y17_c00413{bottom:461.388020pt;}
.y16_c00413{bottom:461.825013pt;}
.y15_c00413{bottom:462.391460pt;}
.y14_c00413{bottom:462.615953pt;}
.y13_c00413{bottom:462.889087pt;}
.y12_c00413{bottom:463.450020pt;}
.y11_c00413{bottom:464.160147pt;}
.y10_c00413{bottom:473.895587pt;}
.yf_c00413{bottom:474.187080pt;}
.ye_c00413{bottom:474.512000pt;}
.yd_c00413{bottom:475.428993pt;}
.yc_c00413{bottom:475.712153pt;}
.yb_c00413{bottom:476.806720pt;}
.ya_c00413{bottom:477.376360pt;}
.y9_c00413{bottom:477.741633pt;}
.y8_c00413{bottom:478.205887pt;}
.y7_c00413{bottom:478.562873pt;}
.y6_c00413{bottom:492.356967pt;}
.y5_c00413{bottom:493.218287pt;}
.y4_c00413{bottom:493.448667pt;}
.y3_c00413{bottom:493.603387pt;}
.y2_c00413{bottom:494.402667pt;}
.y1_c00413{bottom:506.160000pt;}
.h1_c00413{height:48.533333pt;}
.h12_c00413{height:49.479749pt;}
.hb_c00413{height:51.342598pt;}
.h6_c00413{height:53.205985pt;}
.h10_c00413{height:53.209602pt;}
.h16_c00413{height:53.214070pt;}
.h5_c00413{height:54.139423pt;}
.hf_c00413{height:54.143104pt;}
.h17_c00413{height:54.147650pt;}
.h8_c00413{height:55.072861pt;}
.hc_c00413{height:55.076605pt;}
.h14_c00413{height:56.014810pt;}
.h7_c00413{height:56.939738pt;}
.hd_c00413{height:56.943609pt;}
.h15_c00413{height:56.948390pt;}
.h9_c00413{height:57.873176pt;}
.he_c00413{height:57.877111pt;}
.h3_c00413{height:58.806615pt;}
.ha_c00413{height:58.810612pt;}
.h4_c00413{height:59.740053pt;}
.h11_c00413{height:59.744114pt;}
.h13_c00413{height:59.749131pt;}
.h18_c00413{height:60.682711pt;}
.h2_c00413{height:62.540368pt;}
.h0_c00413{height:540.666667pt;}
.w0_c00413{width:319.200000pt;}
.w1_c00413{width:319.333333pt;}
.x0_c00413{left:0.000000pt;}
.x74_c00413{left:36.815681pt;}
.x62_c00413{left:38.191005pt;}
.x4f_c00413{left:39.401391pt;}
.x37_c00413{left:41.079287pt;}
.x1c_c00413{left:42.091327pt;}
.x2_c00413{left:43.041333pt;}
.x6b_c00413{left:51.600948pt;}
.x66_c00413{left:53.560420pt;}
.x78_c00413{left:55.995637pt;}
.x4a_c00413{left:57.232753pt;}
.x6e_c00413{left:59.757333pt;}
.x4c_c00413{left:60.750667pt;}
.x7_c00413{left:61.787987pt;}
.x75_c00413{left:63.277753pt;}
.x5e_c00413{left:64.812459pt;}
.x80_c00413{left:66.720713pt;}
.x79_c00413{left:71.119393pt;}
.x50_c00413{left:72.611357pt;}
.x16_c00413{left:75.840587pt;}
.x2d_c00413{left:79.159473pt;}
.x3e_c00413{left:81.228767pt;}
.x10_c00413{left:82.184620pt;}
.x38_c00413{left:83.112273pt;}
.x1d_c00413{left:85.041353pt;}
.x8_c00413{left:86.247860pt;}
.x57_c00413{left:87.502491pt;}
.x76_c00413{left:88.903641pt;}
.x63_c00413{left:90.753004pt;}
.x43_c00413{left:92.508793pt;}
.x2e_c00413{left:95.292940pt;}
.x3_c00413{left:96.326667pt;}
.x58_c00413{left:98.698491pt;}
.x34_c00413{left:100.827553pt;}
.x39_c00413{left:101.737753pt;}
.x28_c00413{left:104.401127pt;}
.x9_c00413{left:105.442700pt;}
.x4_c00413{left:106.641333pt;}
.x1e_c00413{left:108.782327pt;}
.x69_c00413{left:110.916441pt;}
.x4d_c00413{left:112.114667pt;}
.x11_c00413{left:113.356553pt;}
.x6f_c00413{left:115.188000pt;}
.x17_c00413{left:116.165667pt;}
.x44_c00413{left:117.642913pt;}
.x3a_c00413{left:118.558140pt;}
.x5_c00413{left:122.000000pt;}
.x18_c00413{left:125.046333pt;}
.x23_c00413{left:126.327953pt;}
.x12_c00413{left:128.542540pt;}
.x48_c00413{left:130.423060pt;}
.x54_c00413{left:131.398684pt;}
.x2f_c00413{left:133.562080pt;}
.xa_c00413{left:135.416900pt;}
.x70_c00413{left:136.324000pt;}
.x64_c00413{left:137.820539pt;}
.x13_c00413{left:141.019313pt;}
.x35_c00413{left:145.603553pt;}
.x7a_c00413{left:146.495537pt;}
.x30_c00413{left:149.324900pt;}
.x72_c00413{left:151.851639pt;}
.x29_c00413{left:153.167267pt;}
.x55_c00413{left:156.606573pt;}
.x59_c00413{left:158.317157pt;}
.x51_c00413{left:160.399696pt;}
.x3b_c00413{left:163.316100pt;}
.x1_c00413{left:167.280000pt;}
.x24_c00413{left:169.057340pt;}
.x14_c00413{left:172.469893pt;}
.x3f_c00413{left:177.196573pt;}
.x5a_c00413{left:178.169157pt;}
.x6_c00413{left:179.421333pt;}
.x7e_c00413{left:180.906695pt;}
.x6a_c00413{left:182.457705pt;}
.x81_c00413{left:183.391717pt;}
.x1f_c00413{left:184.421187pt;}
.x7c_c00413{left:188.693103pt;}
.x19_c00413{left:190.813113pt;}
.xb_c00413{left:193.006773pt;}
.x3c_c00413{left:194.431900pt;}
.x15_c00413{left:196.712793pt;}
.x25_c00413{left:198.173793pt;}
.x7f_c00413{left:199.097133pt;}
.x20_c00413{left:202.426240pt;}
.x45_c00413{left:204.307080pt;}
.x56_c00413{left:205.953095pt;}
.xc_c00413{left:207.883207pt;}
.x49_c00413{left:210.496013pt;}
.x40_c00413{left:212.974160pt;}
.x5f_c00413{left:215.561204pt;}
.x31_c00413{left:216.846507pt;}
.x6c_c00413{left:219.871897pt;}
.x2a_c00413{left:220.825813pt;}
.x52_c00413{left:222.559528pt;}
.x67_c00413{left:224.239663pt;}
.x5b_c00413{left:225.209157pt;}
.x41_c00413{left:227.404387pt;}
.x60_c00413{left:233.416191pt;}
.x7b_c00413{left:235.867253pt;}
.x65_c00413{left:238.470047pt;}
.x26_c00413{left:239.620553pt;}
.x82_c00413{left:241.726568pt;}
.x5c_c00413{left:243.758491pt;}
.x73_c00413{left:244.939417pt;}
.x1a_c00413{left:246.739027pt;}
.x36_c00413{left:248.258220pt;}
.x61_c00413{left:251.315177pt;}
.x21_c00413{left:253.376147pt;}
.x32_c00413{left:255.154293pt;}
.xd_c00413{left:256.124307pt;}
.x7d_c00413{left:258.877681pt;}
.x27_c00413{left:259.773287pt;}
.x2b_c00413{left:261.954207pt;}
.x71_c00413{left:262.882667pt;}
.x1b_c00413{left:264.021573pt;}
.x77_c00413{left:265.626941pt;}
.x5d_c00413{left:267.034491pt;}
.x33_c00413{left:270.721133pt;}
.x6d_c00413{left:271.855941pt;}
.xe_c00413{left:273.251287pt;}
.x42_c00413{left:274.370987pt;}
.x22_c00413{left:275.375827pt;}
.x46_c00413{left:276.861640pt;}
.x4e_c00413{left:279.405333pt;}
.x2c_c00413{left:280.326673pt;}
.x3d_c00413{left:282.712000pt;}
.x68_c00413{left:286.364853pt;}
.x53_c00413{left:287.376744pt;}
.xf_c00413{left:288.594367pt;}
.x4b_c00413{left:289.895213pt;}
.x47_c00413{left:291.165893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00414 {
    display:none;
  }
  .loading-indicator_c00414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00414 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00414 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00414" -> "#page-container .classname_c00414")
 */
.pf_c00414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00414 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00414 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00414 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00414 {overflow:visible;}
  }
}
.c_c00414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00414 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00414:after { /* webkit #35443 */
  content: '';
}
.t_c00414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00414 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00414 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00414 { /* info for Javascript */
  display:none;
}
.l_c00414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00414:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00414 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00414.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00414{transform:matrix(0.040652,-0.000813,0.004999,0.249950,0,0);-ms-transform:matrix(0.040652,-0.000813,0.004999,0.249950,0,0);-webkit-transform:matrix(0.040652,-0.000813,0.004999,0.249950,0,0);}
.m0_c00414{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.137897,-0.002758,0.004999,0.249950,0,0);-ms-transform:matrix(0.137897,-0.002758,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137897,-0.002758,0.004999,0.249950,0,0);}
.m1_c00414{transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138595,0.000000,0.000000,0.250000,0,0);}
.me1_c00414{transform:matrix(0.140905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140905,0.000000,0.000000,0.250000,0,0);}
.mdf_c00414{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m96_c00414{transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);-ms-transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155724,-0.003114,0.004999,0.249950,0,0);}
.mad_c00414{transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-ms-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155904,-0.003118,0.004999,0.249950,0,0);}
.mdc_c00414{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00414{transform:matrix(0.158408,-0.003168,0.004999,0.249950,0,0);-ms-transform:matrix(0.158408,-0.003168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158408,-0.003168,0.004999,0.249950,0,0);}
.maf_c00414{transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);-ms-transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159633,-0.003193,0.004999,0.249950,0,0);}
.mde_c00414{transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160265,0.000000,0.000000,0.250000,0,0);}
.m61_c00414{transform:matrix(0.160378,-0.003208,0.004999,0.249950,0,0);-ms-transform:matrix(0.160378,-0.003208,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160378,-0.003208,0.004999,0.249950,0,0);}
.mb9_c00414{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.mc4_c00414{transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.163512,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163512,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163512,-0.003270,0.004999,0.249950,0,0);}
.m6a_c00414{transform:matrix(0.163667,-0.003273,0.004999,0.249950,0,0);-ms-transform:matrix(0.163667,-0.003273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163667,-0.003273,0.004999,0.249950,0,0);}
.m5d_c00414{transform:matrix(0.163947,-0.003279,0.004999,0.249950,0,0);-ms-transform:matrix(0.163947,-0.003279,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163947,-0.003279,0.004999,0.249950,0,0);}
.m69_c00414{transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);-ms-transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);}
.m6d_c00414{transform:matrix(0.165997,-0.003320,0.004999,0.249950,0,0);-ms-transform:matrix(0.165997,-0.003320,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165997,-0.003320,0.004999,0.249950,0,0);}
.m39_c00414{transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);-ms-transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166827,-0.003337,0.004999,0.249950,0,0);}
.m9_c00414{transform:matrix(0.167317,-0.003346,0.004999,0.249950,0,0);-ms-transform:matrix(0.167317,-0.003346,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167317,-0.003346,0.004999,0.249950,0,0);}
.mb_c00414{transform:matrix(0.167646,-0.003353,0.004999,0.249950,0,0);-ms-transform:matrix(0.167646,-0.003353,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167646,-0.003353,0.004999,0.249950,0,0);}
.ma2_c00414{transform:matrix(0.167796,-0.003356,0.004999,0.249950,0,0);-ms-transform:matrix(0.167796,-0.003356,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167796,-0.003356,0.004999,0.249950,0,0);}
.m24_c00414{transform:matrix(0.168611,-0.003372,0.004999,0.249950,0,0);-ms-transform:matrix(0.168611,-0.003372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168611,-0.003372,0.004999,0.249950,0,0);}
.mb3_c00414{transform:matrix(0.168911,-0.003378,0.004999,0.249950,0,0);-ms-transform:matrix(0.168911,-0.003378,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168911,-0.003378,0.004999,0.249950,0,0);}
.mc5_c00414{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.mef_c00414{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m60_c00414{transform:matrix(0.172775,-0.003456,0.004999,0.249950,0,0);-ms-transform:matrix(0.172775,-0.003456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172775,-0.003456,0.004999,0.249950,0,0);}
.m6c_c00414{transform:matrix(0.173910,-0.003478,0.004999,0.249950,0,0);-ms-transform:matrix(0.173910,-0.003478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173910,-0.003478,0.004999,0.249950,0,0);}
.m26_c00414{transform:matrix(0.174135,-0.003483,0.004999,0.249950,0,0);-ms-transform:matrix(0.174135,-0.003483,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174135,-0.003483,0.004999,0.249950,0,0);}
.m36_c00414{transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);-ms-transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174345,-0.003487,0.004999,0.249950,0,0);}
.m94_c00414{transform:matrix(0.174450,-0.003489,0.004999,0.249950,0,0);-ms-transform:matrix(0.174450,-0.003489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174450,-0.003489,0.004999,0.249950,0,0);}
.maa_c00414{transform:matrix(0.174545,-0.003491,0.004999,0.249950,0,0);-ms-transform:matrix(0.174545,-0.003491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174545,-0.003491,0.004999,0.249950,0,0);}
.m56_c00414{transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);-ms-transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);}
.m6b_c00414{transform:matrix(0.174790,-0.003496,0.004999,0.249950,0,0);-ms-transform:matrix(0.174790,-0.003496,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174790,-0.003496,0.004999,0.249950,0,0);}
.m32_c00414{transform:matrix(0.176425,-0.003528,0.004999,0.249950,0,0);-ms-transform:matrix(0.176425,-0.003528,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176425,-0.003528,0.004999,0.249950,0,0);}
.m22_c00414{transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);-ms-transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177145,-0.003543,0.004999,0.249950,0,0);}
.mbd_c00414{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m9e_c00414{transform:matrix(0.178434,-0.003569,0.004999,0.249950,0,0);-ms-transform:matrix(0.178434,-0.003569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178434,-0.003569,0.004999,0.249950,0,0);}
.m5_c00414{transform:matrix(0.178989,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.178989,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178989,-0.003580,0.004999,0.249950,0,0);}
.m57_c00414{transform:matrix(0.179004,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.179004,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179004,-0.003580,0.004999,0.249950,0,0);}
.m30_c00414{transform:matrix(0.179589,-0.003592,0.004999,0.249950,0,0);-ms-transform:matrix(0.179589,-0.003592,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179589,-0.003592,0.004999,0.249950,0,0);}
.mc2_c00414{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);-ms-transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180759,-0.003615,0.004999,0.249950,0,0);}
.m46_c00414{transform:matrix(0.181029,-0.003621,0.004999,0.249950,0,0);-ms-transform:matrix(0.181029,-0.003621,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181029,-0.003621,0.004999,0.249950,0,0);}
.m5a_c00414{transform:matrix(0.181054,-0.003621,0.004999,0.249950,0,0);-ms-transform:matrix(0.181054,-0.003621,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181054,-0.003621,0.004999,0.249950,0,0);}
.m21_c00414{transform:matrix(0.181409,-0.003628,0.004999,0.249950,0,0);-ms-transform:matrix(0.181409,-0.003628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181409,-0.003628,0.004999,0.249950,0,0);}
.m74_c00414{transform:matrix(0.182029,-0.003641,0.004999,0.249950,0,0);-ms-transform:matrix(0.182029,-0.003641,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182029,-0.003641,0.004999,0.249950,0,0);}
.mc0_c00414{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.m2f_c00414{transform:matrix(0.183458,-0.003669,0.004999,0.249950,0,0);-ms-transform:matrix(0.183458,-0.003669,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183458,-0.003669,0.004999,0.249950,0,0);}
.m1c_c00414{transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);-ms-transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183978,-0.003680,0.004999,0.249950,0,0);}
.m91_c00414{transform:matrix(0.184308,-0.003686,0.004999,0.249950,0,0);-ms-transform:matrix(0.184308,-0.003686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184308,-0.003686,0.004999,0.249950,0,0);}
.mce_c00414{transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.184448,-0.003689,0.004999,0.249950,0,0);-ms-transform:matrix(0.184448,-0.003689,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184448,-0.003689,0.004999,0.249950,0,0);}
.m62_c00414{transform:matrix(0.184648,-0.003693,0.004999,0.249950,0,0);-ms-transform:matrix(0.184648,-0.003693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184648,-0.003693,0.004999,0.249950,0,0);}
.m5b_c00414{transform:matrix(0.184793,-0.003696,0.004999,0.249950,0,0);-ms-transform:matrix(0.184793,-0.003696,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184793,-0.003696,0.004999,0.249950,0,0);}
.mc9_c00414{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.mca_c00414{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.mbf_c00414{transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{transform:matrix(0.186248,-0.003725,0.004999,0.249950,0,0);-ms-transform:matrix(0.186248,-0.003725,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186248,-0.003725,0.004999,0.249950,0,0);}
.mc3_c00414{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.m81_c00414{transform:matrix(0.186373,-0.003727,0.004999,0.249950,0,0);-ms-transform:matrix(0.186373,-0.003727,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186373,-0.003727,0.004999,0.249950,0,0);}
.ma7_c00414{transform:matrix(0.186963,-0.003739,0.004999,0.249950,0,0);-ms-transform:matrix(0.186963,-0.003739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186963,-0.003739,0.004999,0.249950,0,0);}
.m27_c00414{transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);}
.mec_c00414{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.md7_c00414{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.me6_c00414{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(0.187812,-0.003756,0.004999,0.249950,0,0);-ms-transform:matrix(0.187812,-0.003756,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187812,-0.003756,0.004999,0.249950,0,0);}
.md1_c00414{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m66_c00414{transform:matrix(0.188417,-0.003768,0.004999,0.249950,0,0);-ms-transform:matrix(0.188417,-0.003768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188417,-0.003768,0.004999,0.249950,0,0);}
.mdd_c00414{transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188820,0.000000,0.000000,0.250000,0,0);}
.m29_c00414{transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189157,-0.003783,0.004999,0.249950,0,0);}
.m9a_c00414{transform:matrix(0.189252,-0.003785,0.004999,0.249950,0,0);-ms-transform:matrix(0.189252,-0.003785,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189252,-0.003785,0.004999,0.249950,0,0);}
.m79_c00414{transform:matrix(0.189297,-0.003786,0.004999,0.249950,0,0);-ms-transform:matrix(0.189297,-0.003786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189297,-0.003786,0.004999,0.249950,0,0);}
.mb0_c00414{transform:matrix(0.189837,-0.003797,0.004999,0.249950,0,0);-ms-transform:matrix(0.189837,-0.003797,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189837,-0.003797,0.004999,0.249950,0,0);}
.m3c_c00414{transform:matrix(0.190257,-0.003805,0.004999,0.249950,0,0);-ms-transform:matrix(0.190257,-0.003805,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190257,-0.003805,0.004999,0.249950,0,0);}
.m72_c00414{transform:matrix(0.190262,-0.003805,0.004999,0.249950,0,0);-ms-transform:matrix(0.190262,-0.003805,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190262,-0.003805,0.004999,0.249950,0,0);}
.m6e_c00414{transform:matrix(0.190277,-0.003806,0.004999,0.249950,0,0);-ms-transform:matrix(0.190277,-0.003806,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190277,-0.003806,0.004999,0.249950,0,0);}
.m67_c00414{transform:matrix(0.190452,-0.003809,0.004999,0.249950,0,0);-ms-transform:matrix(0.190452,-0.003809,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190452,-0.003809,0.004999,0.249950,0,0);}
.mab_c00414{transform:matrix(0.191302,-0.003826,0.004999,0.249950,0,0);-ms-transform:matrix(0.191302,-0.003826,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191302,-0.003826,0.004999,0.249950,0,0);}
.m1d_c00414{transform:matrix(0.191582,-0.003832,0.004999,0.249950,0,0);-ms-transform:matrix(0.191582,-0.003832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191582,-0.003832,0.004999,0.249950,0,0);}
.mc6_c00414{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m85_c00414{transform:matrix(0.192412,-0.003848,0.004999,0.249950,0,0);-ms-transform:matrix(0.192412,-0.003848,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192412,-0.003848,0.004999,0.249950,0,0);}
.ma3_c00414{transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);}
.m87_c00414{transform:matrix(0.192721,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192721,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192721,-0.003854,0.004999,0.249950,0,0);}
.mc8_c00414{transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);}
.mc7_c00414{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.md4_c00414{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.mb1_c00414{transform:matrix(0.194021,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.194021,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194021,-0.003880,0.004999,0.249950,0,0);}
.m9d_c00414{transform:matrix(0.194866,-0.003897,0.004999,0.249950,0,0);-ms-transform:matrix(0.194866,-0.003897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194866,-0.003897,0.004999,0.249950,0,0);}
.m7c_c00414{transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);-ms-transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195221,-0.003904,0.004999,0.249950,0,0);}
.m13_c00414{transform:matrix(0.195271,-0.003905,0.004999,0.249950,0,0);-ms-transform:matrix(0.195271,-0.003905,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195271,-0.003905,0.004999,0.249950,0,0);}
.md2_c00414{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.195706,-0.003914,0.004999,0.249950,0,0);-ms-transform:matrix(0.195706,-0.003914,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195706,-0.003914,0.004999,0.249950,0,0);}
.m40_c00414{transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196126,-0.003923,0.004999,0.249950,0,0);}
.m99_c00414{transform:matrix(0.196261,-0.003925,0.004999,0.249950,0,0);-ms-transform:matrix(0.196261,-0.003925,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196261,-0.003925,0.004999,0.249950,0,0);}
.ma0_c00414{transform:matrix(0.196281,-0.003926,0.004999,0.249950,0,0);-ms-transform:matrix(0.196281,-0.003926,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196281,-0.003926,0.004999,0.249950,0,0);}
.m95_c00414{transform:matrix(0.196596,-0.003932,0.004999,0.249950,0,0);-ms-transform:matrix(0.196596,-0.003932,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196596,-0.003932,0.004999,0.249950,0,0);}
.mdb_c00414{transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196760,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.197545,-0.003951,0.004999,0.249950,0,0);-ms-transform:matrix(0.197545,-0.003951,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197545,-0.003951,0.004999,0.249950,0,0);}
.m2b_c00414{transform:matrix(0.197830,-0.003957,0.004999,0.249950,0,0);-ms-transform:matrix(0.197830,-0.003957,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197830,-0.003957,0.004999,0.249950,0,0);}
.m6f_c00414{transform:matrix(0.198100,-0.003962,0.004999,0.249950,0,0);-ms-transform:matrix(0.198100,-0.003962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198100,-0.003962,0.004999,0.249950,0,0);}
.m1f_c00414{transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);-ms-transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198320,-0.003966,0.004999,0.249950,0,0);}
.m25_c00414{transform:matrix(0.198360,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198360,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198360,-0.003967,0.004999,0.249950,0,0);}
.mb4_c00414{transform:matrix(0.198440,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198440,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198440,-0.003969,0.004999,0.249950,0,0);}
.m2c_c00414{transform:matrix(0.198635,-0.003973,0.004999,0.249950,0,0);-ms-transform:matrix(0.198635,-0.003973,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198635,-0.003973,0.004999,0.249950,0,0);}
.m90_c00414{transform:matrix(0.198770,-0.003975,0.004999,0.249950,0,0);-ms-transform:matrix(0.198770,-0.003975,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198770,-0.003975,0.004999,0.249950,0,0);}
.m92_c00414{transform:matrix(0.199625,-0.003993,0.004999,0.249950,0,0);-ms-transform:matrix(0.199625,-0.003993,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199625,-0.003993,0.004999,0.249950,0,0);}
.me8_c00414{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.200280,-0.004006,0.004999,0.249950,0,0);-ms-transform:matrix(0.200280,-0.004006,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200280,-0.004006,0.004999,0.249950,0,0);}
.m2a_c00414{transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);-ms-transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200510,-0.004010,0.004999,0.249950,0,0);}
.md_c00414{transform:matrix(0.200585,-0.004012,0.004999,0.249950,0,0);-ms-transform:matrix(0.200585,-0.004012,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200585,-0.004012,0.004999,0.249950,0,0);}
.mac_c00414{transform:matrix(0.200675,-0.004013,0.004999,0.249950,0,0);-ms-transform:matrix(0.200675,-0.004013,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200675,-0.004013,0.004999,0.249950,0,0);}
.m7e_c00414{transform:matrix(0.201240,-0.004025,0.004999,0.249950,0,0);-ms-transform:matrix(0.201240,-0.004025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201240,-0.004025,0.004999,0.249950,0,0);}
.m3d_c00414{transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);-ms-transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201270,-0.004025,0.004999,0.249950,0,0);}
.m8a_c00414{transform:matrix(0.201310,-0.004026,0.004999,0.249950,0,0);-ms-transform:matrix(0.201310,-0.004026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201310,-0.004026,0.004999,0.249950,0,0);}
.m97_c00414{transform:matrix(0.201865,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201865,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201865,-0.004037,0.004999,0.249950,0,0);}
.mae_c00414{transform:matrix(0.201910,-0.004038,0.004999,0.249950,0,0);-ms-transform:matrix(0.201910,-0.004038,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201910,-0.004038,0.004999,0.249950,0,0);}
.m68_c00414{transform:matrix(0.201995,-0.004040,0.004999,0.249950,0,0);-ms-transform:matrix(0.201995,-0.004040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201995,-0.004040,0.004999,0.249950,0,0);}
.m23_c00414{transform:matrix(0.202380,-0.004048,0.004999,0.249950,0,0);-ms-transform:matrix(0.202380,-0.004048,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202380,-0.004048,0.004999,0.249950,0,0);}
.m8c_c00414{transform:matrix(0.202395,-0.004048,0.004999,0.249950,0,0);-ms-transform:matrix(0.202395,-0.004048,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202395,-0.004048,0.004999,0.249950,0,0);}
.mb7_c00414{transform:matrix(0.202764,-0.004055,0.004999,0.249950,0,0);-ms-transform:matrix(0.202764,-0.004055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202764,-0.004055,0.004999,0.249950,0,0);}
.ma_c00414{transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);-ms-transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202909,-0.004058,0.004999,0.249950,0,0);}
.m4b_c00414{transform:matrix(0.203274,-0.004065,0.004999,0.249950,0,0);-ms-transform:matrix(0.203274,-0.004065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203274,-0.004065,0.004999,0.249950,0,0);}
.m31_c00414{transform:matrix(0.203574,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203574,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203574,-0.004071,0.004999,0.249950,0,0);}
.m9c_c00414{transform:matrix(0.204304,-0.004086,0.004999,0.249950,0,0);-ms-transform:matrix(0.204304,-0.004086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204304,-0.004086,0.004999,0.249950,0,0);}
.m8d_c00414{transform:matrix(0.205499,-0.004110,0.004999,0.249950,0,0);-ms-transform:matrix(0.205499,-0.004110,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205499,-0.004110,0.004999,0.249950,0,0);}
.m58_c00414{transform:matrix(0.205544,-0.004111,0.004999,0.249950,0,0);-ms-transform:matrix(0.205544,-0.004111,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205544,-0.004111,0.004999,0.249950,0,0);}
.m70_c00414{transform:matrix(0.205574,-0.004111,0.004999,0.249950,0,0);-ms-transform:matrix(0.205574,-0.004111,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205574,-0.004111,0.004999,0.249950,0,0);}
.m1e_c00414{transform:matrix(0.205969,-0.004119,0.004999,0.249950,0,0);-ms-transform:matrix(0.205969,-0.004119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205969,-0.004119,0.004999,0.249950,0,0);}
.meb_c00414{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.207189,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207189,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207189,-0.004144,0.004999,0.249950,0,0);}
.m4_c00414{transform:matrix(0.207239,-0.004145,0.004999,0.249950,0,0);-ms-transform:matrix(0.207239,-0.004145,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207239,-0.004145,0.004999,0.249950,0,0);}
.m38_c00414{transform:matrix(0.208633,-0.004173,0.004999,0.249950,0,0);-ms-transform:matrix(0.208633,-0.004173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208633,-0.004173,0.004999,0.249950,0,0);}
.m59_c00414{transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);-ms-transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);}
.mf_c00414{transform:matrix(0.208668,-0.004173,0.004999,0.249950,0,0);-ms-transform:matrix(0.208668,-0.004173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208668,-0.004173,0.004999,0.249950,0,0);}
.me_c00414{transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208758,-0.004175,0.004999,0.249950,0,0);}
.m88_c00414{transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);-ms-transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);}
.m8e_c00414{transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);-ms-transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);}
.m3f_c00414{transform:matrix(0.210693,-0.004214,0.004999,0.249950,0,0);-ms-transform:matrix(0.210693,-0.004214,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210693,-0.004214,0.004999,0.249950,0,0);}
.m80_c00414{transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);-ms-transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210918,-0.004218,0.004999,0.249950,0,0);}
.m12_c00414{transform:matrix(0.211178,-0.004224,0.004999,0.249950,0,0);-ms-transform:matrix(0.211178,-0.004224,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211178,-0.004224,0.004999,0.249950,0,0);}
.m9b_c00414{transform:matrix(0.211638,-0.004233,0.004999,0.249950,0,0);-ms-transform:matrix(0.211638,-0.004233,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211638,-0.004233,0.004999,0.249950,0,0);}
.m63_c00414{transform:matrix(0.211923,-0.004238,0.004999,0.249950,0,0);-ms-transform:matrix(0.211923,-0.004238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211923,-0.004238,0.004999,0.249950,0,0);}
.ma9_c00414{transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212093,-0.004242,0.004999,0.249950,0,0);}
.mcc_c00414{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.mee_c00414{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m8f_c00414{transform:matrix(0.212857,-0.004257,0.004999,0.249950,0,0);-ms-transform:matrix(0.212857,-0.004257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212857,-0.004257,0.004999,0.249950,0,0);}
.ma1_c00414{transform:matrix(0.213287,-0.004266,0.004999,0.249950,0,0);-ms-transform:matrix(0.213287,-0.004266,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213287,-0.004266,0.004999,0.249950,0,0);}
.ma4_c00414{transform:matrix(0.213312,-0.004266,0.004999,0.249950,0,0);-ms-transform:matrix(0.213312,-0.004266,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213312,-0.004266,0.004999,0.249950,0,0);}
.md8_c00414{transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213945,0.000000,0.000000,0.250000,0,0);}
.m65_c00414{transform:matrix(0.214357,-0.004287,0.004999,0.249950,0,0);-ms-transform:matrix(0.214357,-0.004287,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214357,-0.004287,0.004999,0.249950,0,0);}
.m2d_c00414{transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-ms-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);}
.mb5_c00414{transform:matrix(0.214537,-0.004291,0.004999,0.249950,0,0);-ms-transform:matrix(0.214537,-0.004291,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214537,-0.004291,0.004999,0.249950,0,0);}
.me0_c00414{transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214885,0.000000,0.000000,0.250000,0,0);}
.me9_c00414{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00414{transform:matrix(0.215107,-0.004302,0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,-0.004302,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,-0.004302,0.004999,0.249950,0,0);}
.m7b_c00414{transform:matrix(0.215112,-0.004302,0.004999,0.249950,0,0);-ms-transform:matrix(0.215112,-0.004302,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215112,-0.004302,0.004999,0.249950,0,0);}
.ma6_c00414{transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);-ms-transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);}
.mcf_c00414{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.mda_c00414{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.mb8_c00414{transform:matrix(0.215747,-0.004315,0.004999,0.249950,0,0);-ms-transform:matrix(0.215747,-0.004315,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215747,-0.004315,0.004999,0.249950,0,0);}
.m75_c00414{transform:matrix(0.216232,-0.004325,0.004999,0.249950,0,0);-ms-transform:matrix(0.216232,-0.004325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216232,-0.004325,0.004999,0.249950,0,0);}
.m48_c00414{transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-ms-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);}
.m50_c00414{transform:matrix(0.216912,-0.004338,0.004999,0.249950,0,0);-ms-transform:matrix(0.216912,-0.004338,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216912,-0.004338,0.004999,0.249950,0,0);}
.m64_c00414{transform:matrix(0.216992,-0.004340,0.004999,0.249950,0,0);-ms-transform:matrix(0.216992,-0.004340,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216992,-0.004340,0.004999,0.249950,0,0);}
.m86_c00414{transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);-ms-transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);}
.mbe_c00414{transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.218511,-0.004370,0.004999,0.249950,0,0);-ms-transform:matrix(0.218511,-0.004370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218511,-0.004370,0.004999,0.249950,0,0);}
.m18_c00414{transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-ms-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218696,-0.004374,0.004999,0.249950,0,0);}
.m7f_c00414{transform:matrix(0.218761,-0.004375,0.004999,0.249950,0,0);-ms-transform:matrix(0.218761,-0.004375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218761,-0.004375,0.004999,0.249950,0,0);}
.m15_c00414{transform:matrix(0.219031,-0.004381,0.004999,0.249950,0,0);-ms-transform:matrix(0.219031,-0.004381,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219031,-0.004381,0.004999,0.249950,0,0);}
.m4e_c00414{transform:matrix(0.219096,-0.004382,0.004999,0.249950,0,0);-ms-transform:matrix(0.219096,-0.004382,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219096,-0.004382,0.004999,0.249950,0,0);}
.m5f_c00414{transform:matrix(0.219506,-0.004390,0.004999,0.249950,0,0);-ms-transform:matrix(0.219506,-0.004390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219506,-0.004390,0.004999,0.249950,0,0);}
.mc1_c00414{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00414{transform:matrix(0.220096,-0.004402,0.004999,0.249950,0,0);-ms-transform:matrix(0.220096,-0.004402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220096,-0.004402,0.004999,0.249950,0,0);}
.mc_c00414{transform:matrix(0.220461,-0.004409,0.004999,0.249950,0,0);-ms-transform:matrix(0.220461,-0.004409,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220461,-0.004409,0.004999,0.249950,0,0);}
.m41_c00414{transform:matrix(0.220716,-0.004414,0.004999,0.249950,0,0);-ms-transform:matrix(0.220716,-0.004414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220716,-0.004414,0.004999,0.249950,0,0);}
.m7d_c00414{transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);-ms-transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);}
.m37_c00414{transform:matrix(0.221281,-0.004426,0.004999,0.249950,0,0);-ms-transform:matrix(0.221281,-0.004426,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221281,-0.004426,0.004999,0.249950,0,0);}
.med_c00414{transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221730,0.000000,0.000000,0.250000,0,0);}
.mea_c00414{transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);}
.md3_c00414{transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222290,0.000000,0.000000,0.250000,0,0);}
.m82_c00414{transform:matrix(0.223240,-0.004465,0.004999,0.249950,0,0);-ms-transform:matrix(0.223240,-0.004465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223240,-0.004465,0.004999,0.249950,0,0);}
.m4d_c00414{transform:matrix(0.223340,-0.004467,0.004999,0.249950,0,0);-ms-transform:matrix(0.223340,-0.004467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223340,-0.004467,0.004999,0.249950,0,0);}
.m34_c00414{transform:matrix(0.223715,-0.004474,0.004999,0.249950,0,0);-ms-transform:matrix(0.223715,-0.004474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223715,-0.004474,0.004999,0.249950,0,0);}
.me5_c00414{transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);}
.m78_c00414{transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);-ms-transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224055,-0.004481,0.004999,0.249950,0,0);}
.m3_c00414{transform:matrix(0.224800,-0.004496,0.004999,0.249950,0,0);-ms-transform:matrix(0.224800,-0.004496,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224800,-0.004496,0.004999,0.249950,0,0);}
.m1b_c00414{transform:matrix(0.225885,-0.004518,0.004999,0.249950,0,0);-ms-transform:matrix(0.225885,-0.004518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225885,-0.004518,0.004999,0.249950,0,0);}
.ma8_c00414{transform:matrix(0.227240,-0.004545,0.004999,0.249950,0,0);-ms-transform:matrix(0.227240,-0.004545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227240,-0.004545,0.004999,0.249950,0,0);}
.m35_c00414{transform:matrix(0.227909,-0.004558,0.004999,0.249950,0,0);-ms-transform:matrix(0.227909,-0.004558,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227909,-0.004558,0.004999,0.249950,0,0);}
.m20_c00414{transform:matrix(0.228009,-0.004560,0.004999,0.249950,0,0);-ms-transform:matrix(0.228009,-0.004560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228009,-0.004560,0.004999,0.249950,0,0);}
.m98_c00414{transform:matrix(0.228064,-0.004561,0.004999,0.249950,0,0);-ms-transform:matrix(0.228064,-0.004561,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228064,-0.004561,0.004999,0.249950,0,0);}
.mcd_c00414{transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);}
.mb2_c00414{transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);-ms-transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230189,-0.004604,0.004999,0.249950,0,0);}
.m3e_c00414{transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-ms-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);}
.m89_c00414{transform:matrix(0.231334,-0.004627,0.004999,0.249950,0,0);-ms-transform:matrix(0.231334,-0.004627,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231334,-0.004627,0.004999,0.249950,0,0);}
.m7a_c00414{transform:matrix(0.231589,-0.004632,0.004999,0.249950,0,0);-ms-transform:matrix(0.231589,-0.004632,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231589,-0.004632,0.004999,0.249950,0,0);}
.m8b_c00414{transform:matrix(0.231654,-0.004633,0.004999,0.249950,0,0);-ms-transform:matrix(0.231654,-0.004633,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231654,-0.004633,0.004999,0.249950,0,0);}
.mb6_c00414{transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);-ms-transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232843,-0.004657,0.004999,0.249950,0,0);}
.m2e_c00414{transform:matrix(0.234893,-0.004698,0.004999,0.249950,0,0);-ms-transform:matrix(0.234893,-0.004698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234893,-0.004698,0.004999,0.249950,0,0);}
.m93_c00414{transform:matrix(0.236428,-0.004729,0.004999,0.249950,0,0);-ms-transform:matrix(0.236428,-0.004729,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236428,-0.004729,0.004999,0.249950,0,0);}
.m16_c00414{transform:matrix(0.236538,-0.004731,0.004999,0.249950,0,0);-ms-transform:matrix(0.236538,-0.004731,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236538,-0.004731,0.004999,0.249950,0,0);}
.me7_c00414{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.mbc_c00414{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{transform:matrix(0.240692,-0.004814,0.004999,0.249950,0,0);-ms-transform:matrix(0.240692,-0.004814,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240692,-0.004814,0.004999,0.249950,0,0);}
.m73_c00414{transform:matrix(0.242132,-0.004843,0.004999,0.249950,0,0);-ms-transform:matrix(0.242132,-0.004843,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242132,-0.004843,0.004999,0.249950,0,0);}
.m1a_c00414{transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);-ms-transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);}
.m53_c00414{transform:matrix(0.246736,-0.004935,0.004999,0.249950,0,0);-ms-transform:matrix(0.246736,-0.004935,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246736,-0.004935,0.004999,0.249950,0,0);}
.m2_c00414{transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);}
.mba_c00414{transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);}
.m5c_c00414{transform:matrix(0.247351,-0.004947,0.004999,0.249950,0,0);-ms-transform:matrix(0.247351,-0.004947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247351,-0.004947,0.004999,0.249950,0,0);}
.mbb_c00414{transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.247625,-0.004953,0.004999,0.249950,0,0);-ms-transform:matrix(0.247625,-0.004953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247625,-0.004953,0.004999,0.249950,0,0);}
.me4_c00414{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.md6_c00414{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.251975,-0.005039,0.004999,0.249950,0,0);-ms-transform:matrix(0.251975,-0.005039,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251975,-0.005039,0.004999,0.249950,0,0);}
.m4f_c00414{transform:matrix(0.252934,-0.005059,0.004999,0.249950,0,0);-ms-transform:matrix(0.252934,-0.005059,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252934,-0.005059,0.004999,0.249950,0,0);}
.m7_c00414{transform:matrix(0.254434,-0.005089,0.004999,0.249950,0,0);-ms-transform:matrix(0.254434,-0.005089,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254434,-0.005089,0.004999,0.249950,0,0);}
.m17_c00414{transform:matrix(0.256734,-0.005135,0.004999,0.249950,0,0);-ms-transform:matrix(0.256734,-0.005135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256734,-0.005135,0.004999,0.249950,0,0);}
.md0_c00414{transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);}
.m83_c00414{transform:matrix(0.260518,-0.005210,0.004999,0.249950,0,0);-ms-transform:matrix(0.260518,-0.005210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.260518,-0.005210,0.004999,0.249950,0,0);}
.m14_c00414{transform:matrix(0.261358,-0.005227,0.004999,0.249950,0,0);-ms-transform:matrix(0.261358,-0.005227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.261358,-0.005227,0.004999,0.249950,0,0);}
.m77_c00414{transform:matrix(0.262073,-0.005241,0.004999,0.249950,0,0);-ms-transform:matrix(0.262073,-0.005241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262073,-0.005241,0.004999,0.249950,0,0);}
.m55_c00414{transform:matrix(0.266197,-0.005324,0.004999,0.249950,0,0);-ms-transform:matrix(0.266197,-0.005324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266197,-0.005324,0.004999,0.249950,0,0);}
.m84_c00414{transform:matrix(0.272326,-0.005447,0.004999,0.249950,0,0);-ms-transform:matrix(0.272326,-0.005447,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272326,-0.005447,0.004999,0.249950,0,0);}
.md9_c00414{transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);}
.mcb_c00414{transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.281259,-0.005625,0.004999,0.249950,0,0);-ms-transform:matrix(0.281259,-0.005625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281259,-0.005625,0.004999,0.249950,0,0);}
.m71_c00414{transform:matrix(0.285918,-0.005718,0.004999,0.249950,0,0);-ms-transform:matrix(0.285918,-0.005718,0.004999,0.249950,0,0);-webkit-transform:matrix(0.285918,-0.005718,0.004999,0.249950,0,0);}
.md5_c00414{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{transform:matrix(0.290462,-0.005809,0.004999,0.249950,0,0);-ms-transform:matrix(0.290462,-0.005809,0.004999,0.249950,0,0);-webkit-transform:matrix(0.290462,-0.005809,0.004999,0.249950,0,0);}
.m6_c00414{transform:matrix(0.357723,-0.007154,0.004999,0.249950,0,0);-ms-transform:matrix(0.357723,-0.007154,0.004999,0.249950,0,0);-webkit-transform:matrix(0.357723,-0.007154,0.004999,0.249950,0,0);}
.m33_c00414{transform:matrix(0.376255,-0.007525,0.004999,0.249950,0,0);-ms-transform:matrix(0.376255,-0.007525,0.004999,0.249950,0,0);-webkit-transform:matrix(0.376255,-0.007525,0.004999,0.249950,0,0);}
.m76_c00414{transform:matrix(0.377839,-0.007557,0.004999,0.249950,0,0);-ms-transform:matrix(0.377839,-0.007557,0.004999,0.249950,0,0);-webkit-transform:matrix(0.377839,-0.007557,0.004999,0.249950,0,0);}
.me2_c00414{transform:matrix(0.444335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444335,0.000000,0.000000,0.250000,0,0);}
.me3_c00414{transform:matrix(0.579935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579935,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.687428,-0.013749,0.004999,0.249950,0,0);-ms-transform:matrix(0.687428,-0.013749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.687428,-0.013749,0.004999,0.249950,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls0_c00414{letter-spacing:0.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:0.000000px;}
.fc0_c00414{color:transparent;}
.fs0_c00414{font-size:22.050000px;}
.fs8_c00414{font-size:48.309659px;}
.fsa_c00414{font-size:54.610919px;}
.fsf_c00414{font-size:55.650000px;}
.fsc_c00414{font-size:55.661129px;}
.fs11_c00414{font-size:56.700000px;}
.fsd_c00414{font-size:57.750000px;}
.fs4_c00414{font-size:57.761549px;}
.fs7_c00414{font-size:58.811759px;}
.fs12_c00414{font-size:59.850000px;}
.fs3_c00414{font-size:59.861969px;}
.fsb_c00414{font-size:60.912179px;}
.fs6_c00414{font-size:61.962389px;}
.fs5_c00414{font-size:63.012599px;}
.fs2_c00414{font-size:64.062809px;}
.fse_c00414{font-size:65.100000px;}
.fs10_c00414{font-size:66.150000px;}
.fs9_c00414{font-size:66.163229px;}
.fs1_c00414{font-size:112.350000px;}
.y0_c00414{bottom:0.000000px;}
.yc2_c00414{bottom:25.812000px;}
.yc1_c00414{bottom:42.594000px;}
.yc0_c00414{bottom:61.561500px;}
.ybf_c00414{bottom:77.577000px;}
.ybe_c00414{bottom:95.373000px;}
.ybd_c00414{bottom:111.630000px;}
.ybc_c00414{bottom:130.111500px;}
.ybb_c00414{bottom:145.518000px;}
.yba_c00414{bottom:161.646990px;}
.yb9_c00414{bottom:179.682270px;}
.yb5_c00414{bottom:179.682630px;}
.yb8_c00414{bottom:179.682690px;}
.yb4_c00414{bottom:179.683050px;}
.yb7_c00414{bottom:179.683080px;}
.yb6_c00414{bottom:179.683170px;}
.yb3_c00414{bottom:179.683560px;}
.yb0_c00414{bottom:196.013520px;}
.yb1_c00414{bottom:196.013580px;}
.yad_c00414{bottom:196.013790px;}
.yac_c00414{bottom:196.013910px;}
.yb2_c00414{bottom:196.014090px;}
.yae_c00414{bottom:196.014150px;}
.yaf_c00414{bottom:196.014210px;}
.yab_c00414{bottom:196.014330px;}
.ya5_c00414{bottom:213.440670px;}
.ya6_c00414{bottom:213.440970px;}
.yaa_c00414{bottom:213.441030px;}
.ya4_c00414{bottom:213.441060px;}
.ya9_c00414{bottom:213.441120px;}
.ya7_c00414{bottom:213.441330px;}
.ya8_c00414{bottom:213.441810px;}
.y9e_c00414{bottom:230.821920px;}
.ya2_c00414{bottom:230.822100px;}
.y9f_c00414{bottom:230.822280px;}
.ya0_c00414{bottom:230.822760px;}
.ya1_c00414{bottom:230.822790px;}
.ya3_c00414{bottom:230.822850px;}
.y9c_c00414{bottom:248.293740px;}
.y9d_c00414{bottom:248.293770px;}
.y9b_c00414{bottom:248.294220px;}
.y9a_c00414{bottom:248.294730px;}
.y99_c00414{bottom:248.294850px;}
.y97_c00414{bottom:248.294880px;}
.y98_c00414{bottom:248.294940px;}
.y94_c00414{bottom:265.318680px;}
.y95_c00414{bottom:265.319010px;}
.y93_c00414{bottom:265.319370px;}
.y96_c00414{bottom:265.319550px;}
.y90_c00414{bottom:265.319610px;}
.y91_c00414{bottom:265.319730px;}
.y8f_c00414{bottom:265.319790px;}
.y92_c00414{bottom:265.319910px;}
.y88_c00414{bottom:280.750800px;}
.y89_c00414{bottom:281.035860px;}
.y8a_c00414{bottom:281.229570px;}
.y8b_c00414{bottom:282.034500px;}
.y8c_c00414{bottom:282.503550px;}
.y8d_c00414{bottom:283.231470px;}
.y8e_c00414{bottom:283.671660px;}
.y86_c00414{bottom:300.071340px;}
.y87_c00414{bottom:300.071400px;}
.y85_c00414{bottom:300.072030px;}
.y81_c00414{bottom:300.072240px;}
.y82_c00414{bottom:300.072330px;}
.y84_c00414{bottom:300.072720px;}
.y83_c00414{bottom:300.072990px;}
.y79_c00414{bottom:315.589860px;}
.y7a_c00414{bottom:315.810930px;}
.y7b_c00414{bottom:316.575420px;}
.y7c_c00414{bottom:316.841910px;}
.y7d_c00414{bottom:317.116140px;}
.y7e_c00414{bottom:317.667210px;}
.y7f_c00414{bottom:318.647370px;}
.y80_c00414{bottom:319.116270px;}
.y6f_c00414{bottom:331.794840px;}
.y70_c00414{bottom:332.296200px;}
.y71_c00414{bottom:332.531430px;}
.y72_c00414{bottom:333.425280px;}
.y73_c00414{bottom:333.870720px;}
.y74_c00414{bottom:334.317510px;}
.y75_c00414{bottom:334.564680px;}
.y76_c00414{bottom:335.278440px;}
.y77_c00414{bottom:335.558310px;}
.y78_c00414{bottom:335.837310px;}
.y67_c00414{bottom:346.920720px;}
.y68_c00414{bottom:347.459670px;}
.y69_c00414{bottom:348.926640px;}
.y6a_c00414{bottom:349.381710px;}
.y6b_c00414{bottom:349.909650px;}
.y6c_c00414{bottom:350.815590px;}
.y6d_c00414{bottom:351.518280px;}
.y6e_c00414{bottom:352.063320px;}
.y60_c00414{bottom:363.664170px;}
.y61_c00414{bottom:364.441200px;}
.y62_c00414{bottom:364.901010px;}
.y63_c00414{bottom:366.232950px;}
.y64_c00414{bottom:366.596940px;}
.y65_c00414{bottom:368.082720px;}
.y66_c00414{bottom:369.163650px;}
.y56_c00414{bottom:380.403840px;}
.y57_c00414{bottom:380.814420px;}
.y58_c00414{bottom:381.093660px;}
.y59_c00414{bottom:381.539820px;}
.y5a_c00414{bottom:381.734280px;}
.y5b_c00414{bottom:382.351440px;}
.y5c_c00414{bottom:382.997070px;}
.y5d_c00414{bottom:383.440800px;}
.y5e_c00414{bottom:383.783730px;}
.y5f_c00414{bottom:384.648090px;}
.y4c_c00414{bottom:396.610140px;}
.y4d_c00414{bottom:397.217400px;}
.y4e_c00414{bottom:397.624470px;}
.y4f_c00414{bottom:398.218770px;}
.y50_c00414{bottom:399.005280px;}
.y51_c00414{bottom:399.491280px;}
.y52_c00414{bottom:400.641240px;}
.y53_c00414{bottom:400.885380px;}
.y54_c00414{bottom:401.511450px;}
.y55_c00414{bottom:402.107280px;}
.y42_c00414{bottom:412.272270px;}
.y43_c00414{bottom:412.473210px;}
.y44_c00414{bottom:413.233380px;}
.y45_c00414{bottom:414.303000px;}
.y46_c00414{bottom:414.771510px;}
.y47_c00414{bottom:415.453170px;}
.y48_c00414{bottom:416.601210px;}
.y49_c00414{bottom:416.840370px;}
.y4a_c00414{bottom:417.310710px;}
.y4b_c00414{bottom:417.790020px;}
.y3a_c00414{bottom:430.365270px;}
.y3b_c00414{bottom:431.632410px;}
.y3c_c00414{bottom:432.038400px;}
.y3d_c00414{bottom:432.799980px;}
.y3e_c00414{bottom:433.679250px;}
.y3f_c00414{bottom:433.922190px;}
.y40_c00414{bottom:434.452260px;}
.y41_c00414{bottom:435.246240px;}
.y33_c00414{bottom:447.108540px;}
.y34_c00414{bottom:447.670590px;}
.y35_c00414{bottom:449.258040px;}
.y36_c00414{bottom:450.441810px;}
.y37_c00414{bottom:450.862980px;}
.y38_c00414{bottom:452.223870px;}
.y39_c00414{bottom:453.078240px;}
.y2b_c00414{bottom:463.312530px;}
.y2c_c00414{bottom:463.751460px;}
.y2d_c00414{bottom:464.494260px;}
.y2e_c00414{bottom:465.369030px;}
.y2f_c00414{bottom:466.519830px;}
.y30_c00414{bottom:467.020470px;}
.y31_c00414{bottom:467.549190px;}
.y32_c00414{bottom:468.849990px;}
.y24_c00414{bottom:481.133220px;}
.y25_c00414{bottom:481.565640px;}
.y26_c00414{bottom:482.701770px;}
.y27_c00414{bottom:482.926680px;}
.y28_c00414{bottom:483.540060px;}
.y29_c00414{bottom:484.604250px;}
.y2a_c00414{bottom:485.961270px;}
.y1c_c00414{bottom:496.798050px;}
.y1d_c00414{bottom:497.248260px;}
.y1e_c00414{bottom:498.553560px;}
.y1f_c00414{bottom:499.729170px;}
.y20_c00414{bottom:500.222790px;}
.y21_c00414{bottom:502.082280px;}
.y22_c00414{bottom:502.599150px;}
.y23_c00414{bottom:503.346870px;}
.y14_c00414{bottom:514.618050px;}
.y15_c00414{bottom:514.955370px;}
.y16_c00414{bottom:515.863410px;}
.y17_c00414{bottom:516.946620px;}
.y18_c00414{bottom:517.901430px;}
.y19_c00414{bottom:518.280240px;}
.y1a_c00414{bottom:519.526500px;}
.y1b_c00414{bottom:519.819660px;}
.yd_c00414{bottom:532.173300px;}
.ye_c00414{bottom:532.575360px;}
.yf_c00414{bottom:533.054460px;}
.y10_c00414{bottom:534.577650px;}
.y11_c00414{bottom:535.481700px;}
.y12_c00414{bottom:536.229600px;}
.y13_c00414{bottom:537.991320px;}
.y3_c00414{bottom:549.454500px;}
.y4_c00414{bottom:549.686220px;}
.y5_c00414{bottom:550.096320px;}
.y6_c00414{bottom:550.458480px;}
.y7_c00414{bottom:551.117790px;}
.y8_c00414{bottom:551.667630px;}
.y9_c00414{bottom:552.105900px;}
.ya_c00414{bottom:552.441060px;}
.yb_c00414{bottom:553.553790px;}
.yc_c00414{bottom:553.894470px;}
.y2_c00414{bottom:565.084500px;}
.y1_c00414{bottom:582.660000px;}
.h1_c00414{height:22.050000px;}
.h9_c00414{height:48.309659px;}
.hb_c00414{height:54.610919px;}
.h10_c00414{height:55.650000px;}
.hd_c00414{height:55.661129px;}
.h12_c00414{height:56.700000px;}
.he_c00414{height:57.750000px;}
.h5_c00414{height:57.761549px;}
.h8_c00414{height:58.811759px;}
.h13_c00414{height:59.850000px;}
.h4_c00414{height:59.861969px;}
.hc_c00414{height:60.912179px;}
.h7_c00414{height:61.962389px;}
.h6_c00414{height:63.012599px;}
.h3_c00414{height:64.062809px;}
.hf_c00414{height:65.100000px;}
.h11_c00414{height:66.150000px;}
.ha_c00414{height:66.163229px;}
.h2_c00414{height:112.350000px;}
.h0_c00414{height:608.250000px;}
.w0_c00414{width:359.100000px;}
.w1_c00414{width:359.250000px;}
.x0_c00414{left:0.000000px;}
.x39_c00414{left:12.419550px;}
.x63_c00414{left:19.432410px;}
.x15_c00414{left:21.065910px;}
.x2a_c00414{left:22.090470px;}
.x5e_c00414{left:23.212740px;}
.x69_c00414{left:24.563940px;}
.x4_c00414{left:26.169000px;}
.x6f_c00414{left:27.270000px;}
.xe_c00414{left:28.630470px;}
.x31_c00414{left:30.214950px;}
.x5_c00414{left:37.755000px;}
.x16_c00414{left:38.832270px;}
.x76_c00414{left:40.230000px;}
.x25_c00414{left:41.511510px;}
.xf_c00414{left:45.357120px;}
.x2b_c00414{left:48.842430px;}
.x40_c00414{left:52.518060px;}
.x53_c00414{left:55.782270px;}
.x6_c00414{left:58.260000px;}
.x3a_c00414{left:60.475050px;}
.x10_c00414{left:65.335530px;}
.x54_c00414{left:71.445330px;}
.x41_c00414{left:72.871560px;}
.x26_c00414{left:75.275160px;}
.x7_c00414{left:76.368000px;}
.x64_c00414{left:78.574050px;}
.x70_c00414{left:80.190000px;}
.x4b_c00414{left:81.506220px;}
.x77_c00414{left:83.160000px;}
.x17_c00414{left:86.635230px;}
.x1d_c00414{left:91.040550px;}
.x32_c00414{left:93.571950px;}
.x59_c00414{left:97.624290px;}
.x61_c00414{left:99.636660px;}
.x42_c00414{left:102.586560px;}
.x48_c00414{left:105.717870px;}
.x6c_c00414{left:107.200380px;}
.x8_c00414{left:109.333500px;}
.x33_c00414{left:113.871450px;}
.x27_c00414{left:115.037070px;}
.x4f_c00414{left:118.396830px;}
.x22_c00414{left:120.920910px;}
.x2c_c00414{left:124.463430px;}
.x6d_c00414{left:125.834820px;}
.x11_c00414{left:128.814960px;}
.x55_c00414{left:131.068800px;}
.x9_c00414{left:136.825500px;}
.x1e_c00414{left:138.041340px;}
.x50_c00414{left:140.099910px;}
.x43_c00414{left:141.912060px;}
.x18_c00414{left:143.646870px;}
.x4c_c00414{left:144.951960px;}
.x2_c00414{left:148.770000px;}
.x71_c00414{left:150.930000px;}
.x34_c00414{left:151.950450px;}
.x78_c00414{left:153.090000px;}
.x23_c00414{left:154.966260px;}
.x7c_c00414{left:156.330000px;}
.x65_c00414{left:157.430580px;}
.xa_c00414{left:158.739000px;}
.x56_c00414{left:160.768770px;}
.x4d_c00414{left:162.251100px;}
.x51_c00414{left:165.221400px;}
.x12_c00414{left:166.514460px;}
.x3b_c00414{left:171.464550px;}
.xb_c00414{left:175.497000px;}
.x66_c00414{left:177.414060px;}
.x2d_c00414{left:180.800790px;}
.x5d_c00414{left:182.145750px;}
.x49_c00414{left:184.613670px;}
.x74_c00414{left:188.460000px;}
.x28_c00414{left:190.106070px;}
.x5c_c00414{left:192.807270px;}
.x19_c00414{left:193.863360px;}
.x35_c00414{left:195.913950px;}
.x13_c00414{left:197.681970px;}
.x67_c00414{left:199.288320px;}
.x2e_c00414{left:200.883900px;}
.x57_c00414{left:207.021390px;}
.x36_c00414{left:208.060950px;}
.x4a_c00414{left:212.352390px;}
.x1a_c00414{left:213.779250px;}
.x6a_c00414{left:215.761800px;}
.x7d_c00414{left:218.430000px;}
.x7b_c00414{left:221.940000px;}
.x44_c00414{left:223.710060px;}
.x5f_c00414{left:226.563570px;}
.x3c_c00414{left:228.866550px;}
.xc_c00414{left:231.133500px;}
.x1f_c00414{left:232.137420px;}
.x37_c00414{left:234.564450px;}
.x45_c00414{left:235.917060px;}
.x7e_c00414{left:238.680000px;}
.x3d_c00414{left:240.824550px;}
.x52_c00414{left:241.826370px;}
.xd_c00414{left:248.167500px;}
.x79_c00414{left:249.750000px;}
.x6e_c00414{left:251.411040px;}
.x20_c00414{left:252.803850px;}
.x3_c00414{left:254.340000px;}
.x5a_c00414{left:256.969080px;}
.x1_c00414{left:263.250000px;}
.x3e_c00414{left:264.341550px;}
.x2f_c00414{left:265.702110px;}
.x46_c00414{left:267.220560px;}
.x14_c00414{left:271.062090px;}
.x29_c00414{left:273.253740px;}
.x38_c00414{left:274.263450px;}
.x6b_c00414{left:275.713770px;}
.x1b_c00414{left:279.393570px;}
.x72_c00414{left:281.340000px;}
.x21_c00414{left:282.686850px;}
.x4e_c00414{left:284.509170px;}
.x3f_c00414{left:288.307050px;}
.x24_c00414{left:289.457130px;}
.x58_c00414{left:291.811350px;}
.x5b_c00414{left:293.094150px;}
.x1c_c00414{left:294.801870px;}
.x47_c00414{left:297.012060px;}
.x75_c00414{left:298.080000px;}
.x62_c00414{left:300.287910px;}
.x7a_c00414{left:301.860000px;}
.x30_c00414{left:306.394800px;}
.x60_c00414{left:311.090850px;}
.x7f_c00414{left:314.550000px;}
.x68_c00414{left:316.222560px;}
.x73_c00414{left:318.330000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
.fs0_c00414{font-size:19.600000pt;}
.fs8_c00414{font-size:42.941919pt;}
.fsa_c00414{font-size:48.543039pt;}
.fsf_c00414{font-size:49.466667pt;}
.fsc_c00414{font-size:49.476559pt;}
.fs11_c00414{font-size:50.400000pt;}
.fsd_c00414{font-size:51.333333pt;}
.fs4_c00414{font-size:51.343599pt;}
.fs7_c00414{font-size:52.277119pt;}
.fs12_c00414{font-size:53.200000pt;}
.fs3_c00414{font-size:53.210639pt;}
.fsb_c00414{font-size:54.144159pt;}
.fs6_c00414{font-size:55.077679pt;}
.fs5_c00414{font-size:56.011199pt;}
.fs2_c00414{font-size:56.944719pt;}
.fse_c00414{font-size:57.866667pt;}
.fs10_c00414{font-size:58.800000pt;}
.fs9_c00414{font-size:58.811759pt;}
.fs1_c00414{font-size:99.866667pt;}
.y0_c00414{bottom:0.000000pt;}
.yc2_c00414{bottom:22.944000pt;}
.yc1_c00414{bottom:37.861333pt;}
.yc0_c00414{bottom:54.721333pt;}
.ybf_c00414{bottom:68.957333pt;}
.ybe_c00414{bottom:84.776000pt;}
.ybd_c00414{bottom:99.226667pt;}
.ybc_c00414{bottom:115.654667pt;}
.ybb_c00414{bottom:129.349333pt;}
.yba_c00414{bottom:143.686213pt;}
.yb9_c00414{bottom:159.717573pt;}
.yb5_c00414{bottom:159.717893pt;}
.yb8_c00414{bottom:159.717947pt;}
.yb4_c00414{bottom:159.718267pt;}
.yb7_c00414{bottom:159.718293pt;}
.yb6_c00414{bottom:159.718373pt;}
.yb3_c00414{bottom:159.718720pt;}
.yb0_c00414{bottom:174.234240pt;}
.yb1_c00414{bottom:174.234293pt;}
.yad_c00414{bottom:174.234480pt;}
.yac_c00414{bottom:174.234587pt;}
.yb2_c00414{bottom:174.234747pt;}
.yae_c00414{bottom:174.234800pt;}
.yaf_c00414{bottom:174.234853pt;}
.yab_c00414{bottom:174.234960pt;}
.ya5_c00414{bottom:189.725040pt;}
.ya6_c00414{bottom:189.725307pt;}
.yaa_c00414{bottom:189.725360pt;}
.ya4_c00414{bottom:189.725387pt;}
.ya9_c00414{bottom:189.725440pt;}
.ya7_c00414{bottom:189.725627pt;}
.ya8_c00414{bottom:189.726053pt;}
.y9e_c00414{bottom:205.175040pt;}
.ya2_c00414{bottom:205.175200pt;}
.y9f_c00414{bottom:205.175360pt;}
.ya0_c00414{bottom:205.175787pt;}
.ya1_c00414{bottom:205.175813pt;}
.ya3_c00414{bottom:205.175867pt;}
.y9c_c00414{bottom:220.705547pt;}
.y9d_c00414{bottom:220.705573pt;}
.y9b_c00414{bottom:220.705973pt;}
.y9a_c00414{bottom:220.706427pt;}
.y99_c00414{bottom:220.706533pt;}
.y97_c00414{bottom:220.706560pt;}
.y98_c00414{bottom:220.706613pt;}
.y94_c00414{bottom:235.838827pt;}
.y95_c00414{bottom:235.839120pt;}
.y93_c00414{bottom:235.839440pt;}
.y96_c00414{bottom:235.839600pt;}
.y90_c00414{bottom:235.839653pt;}
.y91_c00414{bottom:235.839760pt;}
.y8f_c00414{bottom:235.839813pt;}
.y92_c00414{bottom:235.839920pt;}
.y88_c00414{bottom:249.556267pt;}
.y89_c00414{bottom:249.809653pt;}
.y8a_c00414{bottom:249.981840pt;}
.y8b_c00414{bottom:250.697333pt;}
.y8c_c00414{bottom:251.114267pt;}
.y8d_c00414{bottom:251.761307pt;}
.y8e_c00414{bottom:252.152587pt;}
.y86_c00414{bottom:266.730080pt;}
.y87_c00414{bottom:266.730133pt;}
.y85_c00414{bottom:266.730693pt;}
.y81_c00414{bottom:266.730880pt;}
.y82_c00414{bottom:266.730960pt;}
.y84_c00414{bottom:266.731307pt;}
.y83_c00414{bottom:266.731547pt;}
.y79_c00414{bottom:280.524320pt;}
.y7a_c00414{bottom:280.720827pt;}
.y7b_c00414{bottom:281.400373pt;}
.y7c_c00414{bottom:281.637253pt;}
.y7d_c00414{bottom:281.881013pt;}
.y7e_c00414{bottom:282.370853pt;}
.y7f_c00414{bottom:283.242107pt;}
.y80_c00414{bottom:283.658907pt;}
.y6f_c00414{bottom:294.928747pt;}
.y70_c00414{bottom:295.374400pt;}
.y71_c00414{bottom:295.583493pt;}
.y72_c00414{bottom:296.378027pt;}
.y73_c00414{bottom:296.773973pt;}
.y74_c00414{bottom:297.171120pt;}
.y75_c00414{bottom:297.390827pt;}
.y76_c00414{bottom:298.025280pt;}
.y77_c00414{bottom:298.274053pt;}
.y78_c00414{bottom:298.522053pt;}
.y67_c00414{bottom:308.373973pt;}
.y68_c00414{bottom:308.853040pt;}
.y69_c00414{bottom:310.157013pt;}
.y6a_c00414{bottom:310.561520pt;}
.y6b_c00414{bottom:311.030800pt;}
.y6c_c00414{bottom:311.836080pt;}
.y6d_c00414{bottom:312.460693pt;}
.y6e_c00414{bottom:312.945173pt;}
.y60_c00414{bottom:323.257040pt;}
.y61_c00414{bottom:323.947733pt;}
.y62_c00414{bottom:324.356453pt;}
.y63_c00414{bottom:325.540400pt;}
.y64_c00414{bottom:325.863947pt;}
.y65_c00414{bottom:327.184640pt;}
.y66_c00414{bottom:328.145467pt;}
.y56_c00414{bottom:338.136747pt;}
.y57_c00414{bottom:338.501707pt;}
.y58_c00414{bottom:338.749920pt;}
.y59_c00414{bottom:339.146507pt;}
.y5a_c00414{bottom:339.319360pt;}
.y5b_c00414{bottom:339.867947pt;}
.y5c_c00414{bottom:340.441840pt;}
.y5d_c00414{bottom:340.836267pt;}
.y5e_c00414{bottom:341.141093pt;}
.y5f_c00414{bottom:341.909413pt;}
.y4c_c00414{bottom:352.542347pt;}
.y4d_c00414{bottom:353.082133pt;}
.y4e_c00414{bottom:353.443973pt;}
.y4f_c00414{bottom:353.972240pt;}
.y50_c00414{bottom:354.671360pt;}
.y51_c00414{bottom:355.103360pt;}
.y52_c00414{bottom:356.125547pt;}
.y53_c00414{bottom:356.342560pt;}
.y54_c00414{bottom:356.899067pt;}
.y55_c00414{bottom:357.428693pt;}
.y42_c00414{bottom:366.464240pt;}
.y43_c00414{bottom:366.642853pt;}
.y44_c00414{bottom:367.318560pt;}
.y45_c00414{bottom:368.269333pt;}
.y46_c00414{bottom:368.685787pt;}
.y47_c00414{bottom:369.291707pt;}
.y48_c00414{bottom:370.312187pt;}
.y49_c00414{bottom:370.524773pt;}
.y4a_c00414{bottom:370.942853pt;}
.y4b_c00414{bottom:371.368907pt;}
.y3a_c00414{bottom:382.546907pt;}
.y3b_c00414{bottom:383.673253pt;}
.y3c_c00414{bottom:384.034133pt;}
.y3d_c00414{bottom:384.711093pt;}
.y3e_c00414{bottom:385.492667pt;}
.y3f_c00414{bottom:385.708613pt;}
.y40_c00414{bottom:386.179787pt;}
.y41_c00414{bottom:386.885547pt;}
.y33_c00414{bottom:397.429813pt;}
.y34_c00414{bottom:397.929413pt;}
.y35_c00414{bottom:399.340480pt;}
.y36_c00414{bottom:400.392720pt;}
.y37_c00414{bottom:400.767093pt;}
.y38_c00414{bottom:401.976773pt;}
.y39_c00414{bottom:402.736213pt;}
.y2b_c00414{bottom:411.833360pt;}
.y2c_c00414{bottom:412.223520pt;}
.y2d_c00414{bottom:412.883787pt;}
.y2e_c00414{bottom:413.661360pt;}
.y2f_c00414{bottom:414.684293pt;}
.y30_c00414{bottom:415.129307pt;}
.y31_c00414{bottom:415.599280pt;}
.y32_c00414{bottom:416.755547pt;}
.y24_c00414{bottom:427.673973pt;}
.y25_c00414{bottom:428.058347pt;}
.y26_c00414{bottom:429.068240pt;}
.y27_c00414{bottom:429.268160pt;}
.y28_c00414{bottom:429.813387pt;}
.y29_c00414{bottom:430.759333pt;}
.y2a_c00414{bottom:431.965573pt;}
.y1c_c00414{bottom:441.598267pt;}
.y1d_c00414{bottom:441.998453pt;}
.y1e_c00414{bottom:443.158720pt;}
.y1f_c00414{bottom:444.203707pt;}
.y20_c00414{bottom:444.642480pt;}
.y21_c00414{bottom:446.295360pt;}
.y22_c00414{bottom:446.754800pt;}
.y23_c00414{bottom:447.419440pt;}
.y14_c00414{bottom:457.438267pt;}
.y15_c00414{bottom:457.738107pt;}
.y16_c00414{bottom:458.545253pt;}
.y17_c00414{bottom:459.508107pt;}
.y18_c00414{bottom:460.356827pt;}
.y19_c00414{bottom:460.693547pt;}
.y1a_c00414{bottom:461.801333pt;}
.y1b_c00414{bottom:462.061920pt;}
.yd_c00414{bottom:473.042933pt;}
.ye_c00414{bottom:473.400320pt;}
.yf_c00414{bottom:473.826187pt;}
.y10_c00414{bottom:475.180133pt;}
.y11_c00414{bottom:475.983733pt;}
.y12_c00414{bottom:476.648533pt;}
.y13_c00414{bottom:478.214507pt;}
.y3_c00414{bottom:488.404000pt;}
.y4_c00414{bottom:488.609973pt;}
.y5_c00414{bottom:488.974507pt;}
.y6_c00414{bottom:489.296427pt;}
.y7_c00414{bottom:489.882480pt;}
.y8_c00414{bottom:490.371227pt;}
.y9_c00414{bottom:490.760800pt;}
.ya_c00414{bottom:491.058720pt;}
.yb_c00414{bottom:492.047813pt;}
.yc_c00414{bottom:492.350640pt;}
.y2_c00414{bottom:502.297333pt;}
.y1_c00414{bottom:517.920000pt;}
.h1_c00414{height:19.600000pt;}
.h9_c00414{height:42.941919pt;}
.hb_c00414{height:48.543039pt;}
.h10_c00414{height:49.466667pt;}
.hd_c00414{height:49.476559pt;}
.h12_c00414{height:50.400000pt;}
.he_c00414{height:51.333333pt;}
.h5_c00414{height:51.343599pt;}
.h8_c00414{height:52.277119pt;}
.h13_c00414{height:53.200000pt;}
.h4_c00414{height:53.210639pt;}
.hc_c00414{height:54.144159pt;}
.h7_c00414{height:55.077679pt;}
.h6_c00414{height:56.011199pt;}
.h3_c00414{height:56.944719pt;}
.hf_c00414{height:57.866667pt;}
.h11_c00414{height:58.800000pt;}
.ha_c00414{height:58.811759pt;}
.h2_c00414{height:99.866667pt;}
.h0_c00414{height:540.666667pt;}
.w0_c00414{width:319.200000pt;}
.w1_c00414{width:319.333333pt;}
.x0_c00414{left:0.000000pt;}
.x39_c00414{left:11.039600pt;}
.x63_c00414{left:17.273253pt;}
.x15_c00414{left:18.725253pt;}
.x2a_c00414{left:19.635973pt;}
.x5e_c00414{left:20.633547pt;}
.x69_c00414{left:21.834613pt;}
.x4_c00414{left:23.261333pt;}
.x6f_c00414{left:24.240000pt;}
.xe_c00414{left:25.449307pt;}
.x31_c00414{left:26.857733pt;}
.x5_c00414{left:33.560000pt;}
.x16_c00414{left:34.517573pt;}
.x76_c00414{left:35.760000pt;}
.x25_c00414{left:36.899120pt;}
.xf_c00414{left:40.317440pt;}
.x2b_c00414{left:43.415493pt;}
.x40_c00414{left:46.682720pt;}
.x53_c00414{left:49.584240pt;}
.x6_c00414{left:51.786667pt;}
.x3a_c00414{left:53.755600pt;}
.x10_c00414{left:58.076027pt;}
.x54_c00414{left:63.506960pt;}
.x41_c00414{left:64.774720pt;}
.x26_c00414{left:66.911253pt;}
.x7_c00414{left:67.882667pt;}
.x64_c00414{left:69.843600pt;}
.x70_c00414{left:71.280000pt;}
.x4b_c00414{left:72.449973pt;}
.x77_c00414{left:73.920000pt;}
.x17_c00414{left:77.009093pt;}
.x1d_c00414{left:80.924933pt;}
.x32_c00414{left:83.175067pt;}
.x59_c00414{left:86.777147pt;}
.x61_c00414{left:88.565920pt;}
.x42_c00414{left:91.188053pt;}
.x48_c00414{left:93.971440pt;}
.x6c_c00414{left:95.289227pt;}
.x8_c00414{left:97.185333pt;}
.x33_c00414{left:101.219067pt;}
.x27_c00414{left:102.255173pt;}
.x4f_c00414{left:105.241627pt;}
.x22_c00414{left:107.485253pt;}
.x2c_c00414{left:110.634160pt;}
.x6d_c00414{left:111.853173pt;}
.x11_c00414{left:114.502187pt;}
.x55_c00414{left:116.505600pt;}
.x9_c00414{left:121.622667pt;}
.x1e_c00414{left:122.703413pt;}
.x50_c00414{left:124.533253pt;}
.x43_c00414{left:126.144053pt;}
.x18_c00414{left:127.686107pt;}
.x4c_c00414{left:128.846187pt;}
.x2_c00414{left:132.240000pt;}
.x71_c00414{left:134.160000pt;}
.x34_c00414{left:135.067067pt;}
.x78_c00414{left:136.080000pt;}
.x23_c00414{left:137.747787pt;}
.x7c_c00414{left:138.960000pt;}
.x65_c00414{left:139.938293pt;}
.xa_c00414{left:141.101333pt;}
.x56_c00414{left:142.905573pt;}
.x4d_c00414{left:144.223200pt;}
.x51_c00414{left:146.863467pt;}
.x12_c00414{left:148.012853pt;}
.x3b_c00414{left:152.412933pt;}
.xb_c00414{left:155.997333pt;}
.x66_c00414{left:157.701387pt;}
.x2d_c00414{left:160.711813pt;}
.x5d_c00414{left:161.907333pt;}
.x49_c00414{left:164.101040pt;}
.x74_c00414{left:167.520000pt;}
.x28_c00414{left:168.983173pt;}
.x5c_c00414{left:171.384240pt;}
.x19_c00414{left:172.322987pt;}
.x35_c00414{left:174.145733pt;}
.x13_c00414{left:175.717307pt;}
.x67_c00414{left:177.145173pt;}
.x2e_c00414{left:178.563467pt;}
.x57_c00414{left:184.019013pt;}
.x36_c00414{left:184.943067pt;}
.x4a_c00414{left:188.757680pt;}
.x1a_c00414{left:190.026000pt;}
.x6a_c00414{left:191.788267pt;}
.x7d_c00414{left:194.160000pt;}
.x7b_c00414{left:197.280000pt;}
.x44_c00414{left:198.853387pt;}
.x5f_c00414{left:201.389840pt;}
.x3c_c00414{left:203.436933pt;}
.xc_c00414{left:205.452000pt;}
.x1f_c00414{left:206.344373pt;}
.x37_c00414{left:208.501733pt;}
.x45_c00414{left:209.704053pt;}
.x7e_c00414{left:212.160000pt;}
.x3d_c00414{left:214.066267pt;}
.x52_c00414{left:214.956773pt;}
.xd_c00414{left:220.593333pt;}
.x79_c00414{left:222.000000pt;}
.x6e_c00414{left:223.476480pt;}
.x20_c00414{left:224.714533pt;}
.x3_c00414{left:226.080000pt;}
.x5a_c00414{left:228.416960pt;}
.x1_c00414{left:234.000000pt;}
.x3e_c00414{left:234.970267pt;}
.x2f_c00414{left:236.179653pt;}
.x46_c00414{left:237.529387pt;}
.x14_c00414{left:240.944080pt;}
.x29_c00414{left:242.892213pt;}
.x38_c00414{left:243.789733pt;}
.x6b_c00414{left:245.078907pt;}
.x1b_c00414{left:248.349840pt;}
.x72_c00414{left:250.080000pt;}
.x21_c00414{left:251.277200pt;}
.x4e_c00414{left:252.897040pt;}
.x3f_c00414{left:256.272933pt;}
.x24_c00414{left:257.295227pt;}
.x58_c00414{left:259.387867pt;}
.x5b_c00414{left:260.528133pt;}
.x1c_c00414{left:262.046107pt;}
.x47_c00414{left:264.010720pt;}
.x75_c00414{left:264.960000pt;}
.x62_c00414{left:266.922587pt;}
.x7a_c00414{left:268.320000pt;}
.x30_c00414{left:272.350933pt;}
.x60_c00414{left:276.525200pt;}
.x7f_c00414{left:279.600000pt;}
.x68_c00414{left:281.086720pt;}
.x73_c00414{left:282.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00415 {
    display:none;
  }
  .loading-indicator_c00415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00415 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00415 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00415" -> "#page-container .classname_c00415")
 */
.pf_c00415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00415 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00415 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00415 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00415 {overflow:visible;}
  }
}
.c_c00415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00415 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00415:after { /* webkit #35443 */
  content: '';
}
.t_c00415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00415 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00415 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00415 { /* info for Javascript */
  display:none;
}
.l_c00415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00415:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00415 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00415.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00415{transform:matrix(0.020090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020090,0.000000,0.000000,0.250000,0,0);}
.ma1_c00415{transform:matrix(0.026785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026785,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.061560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061560,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.144960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144960,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156845,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.157220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157220,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m74_c00415{transform:matrix(0.160895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160895,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.m97_c00415{transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162080,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.165765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165765,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167715,0.000000,0.000000,0.250000,0,0);}
.m8c_c00415{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169955,0.000000,0.000000,0.250000,0,0);}
.m94_c00415{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.m7b_c00415{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m73_c00415{transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);}
.m5a_c00415{transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172020,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);}
.m7d_c00415{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.m6e_c00415{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);}
.m77_c00415{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);}
.m63_c00415{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.ma3_c00415{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.ma7_c00415{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.m99_c00415{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.181490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182105,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.186215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186215,0.000000,0.000000,0.250000,0,0);}
.m95_c00415{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m34_c00415{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187910,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00415{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.mad_c00415{transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.mb4_c00415{transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m61_c00415{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194410,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195220,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196285,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m96_c00415{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.mab_c00415{transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00415{transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197440,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.m98_c00415{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199785,0.000000,0.000000,0.250000,0,0);}
.m78_c00415{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00415{transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m60_c00415{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m76_c00415{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.mb6_c00415{transform:matrix(0.203070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203070,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m7a_c00415{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m8b_c00415{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mac_c00415{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.ma4_c00415{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m5c_c00415{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.ma5_c00415{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00415{transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);}
.m7c_c00415{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.maf_c00415{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209985,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m7e_c00415{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);}
.m93_c00415{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);}
.m3f_c00415{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m71_c00415{transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212810,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213040,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);}
.m65_c00415{transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214215,0.000000,0.000000,0.250000,0,0);}
.m6c_c00415{transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);}
.m80_c00415{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.m62_c00415{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m75_c00415{transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215445,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215565,0.000000,0.000000,0.250000,0,0);}
.maa_c00415{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.m53_c00415{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m85_c00415{transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217455,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.m72_c00415{transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m90_c00415{transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);}
.m89_c00415{transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);}
.m8a_c00415{transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);}
.m66_c00415{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{transform:matrix(0.222855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222855,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m64_c00415{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00415{transform:matrix(0.229085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229085,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);}
.m81_c00415{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00415{transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);}
.mb3_c00415{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.237090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237090,0.000000,0.000000,0.250000,0,0);}
.m87_c00415{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m86_c00415{transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);}
.mb8_c00415{transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00415{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265470,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);}
.m9b_c00415{transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);}
.mb5_c00415{transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);}
.mae_c00415{transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);}
.m88_c00415{transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);}
.m92_c00415{transform:matrix(0.355905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355905,0.000000,0.000000,0.250000,0,0);}
.mb0_c00415{transform:matrix(0.359515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359515,0.000000,0.000000,0.250000,0,0);}
.m9c_c00415{transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.415610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415610,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.492905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492905,0.000000,0.000000,0.250000,0,0);}
.mb2_c00415{transform:matrix(0.596145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596145,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
.fc0_c00415{color:transparent;}
.fsb_c00415{font-size:55.650000px;}
.fs6_c00415{font-size:57.750000px;}
.fsc_c00415{font-size:58.800000px;}
.fs9_c00415{font-size:59.850000px;}
.fsa_c00415{font-size:60.900000px;}
.fs8_c00415{font-size:61.950000px;}
.fs5_c00415{font-size:63.000000px;}
.fs7_c00415{font-size:64.050000px;}
.fs3_c00415{font-size:66.150000px;}
.fs4_c00415{font-size:67.200000px;}
.fs1_c00415{font-size:70.350000px;}
.fs0_c00415{font-size:71.400000px;}
.fs2_c00415{font-size:73.500000px;}
.y0_c00415{bottom:0.000000px;}
.y1f_c00415{bottom:20.850000px;}
.y1e_c00415{bottom:38.316000px;}
.y1d_c00415{bottom:55.254000px;}
.y1c_c00415{bottom:71.884500px;}
.y1b_c00415{bottom:88.893000px;}
.y1a_c00415{bottom:105.925500px;}
.y19_c00415{bottom:121.233000px;}
.y18_c00415{bottom:292.641000px;}
.y17_c00415{bottom:310.353000px;}
.y16_c00415{bottom:327.207000px;}
.y15_c00415{bottom:344.911500px;}
.y14_c00415{bottom:361.531500px;}
.y13_c00415{bottom:377.649000px;}
.y12_c00415{bottom:393.375000px;}
.y11_c00415{bottom:393.594000px;}
.y10_c00415{bottom:394.200000px;}
.yf_c00415{bottom:394.833000px;}
.ye_c00415{bottom:395.484000px;}
.yd_c00415{bottom:395.706000px;}
.yc_c00415{bottom:395.856000px;}
.yb_c00415{bottom:396.361500px;}
.ya_c00415{bottom:412.059000px;}
.y9_c00415{bottom:429.963000px;}
.y8_c00415{bottom:446.404500px;}
.y7_c00415{bottom:463.525500px;}
.y6_c00415{bottom:480.369000px;}
.y5_c00415{bottom:497.011500px;}
.y4_c00415{bottom:513.484500px;}
.y3_c00415{bottom:530.790000px;}
.y2_c00415{bottom:547.176000px;}
.y1_c00415{bottom:561.492000px;}
.hc_c00415{height:55.650000px;}
.h7_c00415{height:57.750000px;}
.hd_c00415{height:58.800000px;}
.ha_c00415{height:59.850000px;}
.hb_c00415{height:60.900000px;}
.h9_c00415{height:61.950000px;}
.h6_c00415{height:63.000000px;}
.h8_c00415{height:64.050000px;}
.h4_c00415{height:66.150000px;}
.h5_c00415{height:67.200000px;}
.h2_c00415{height:70.350000px;}
.h1_c00415{height:71.400000px;}
.h3_c00415{height:73.500000px;}
.h0_c00415{height:608.250000px;}
.w0_c00415{width:359.100000px;}
.w1_c00415{width:359.250000px;}
.x0_c00415{left:0.000000px;}
.x1e_c00415{left:30.780000px;}
.x5f_c00415{left:36.450000px;}
.x56_c00415{left:37.530000px;}
.x17_c00415{left:39.690000px;}
.x3_c00415{left:41.310000px;}
.x2d_c00415{left:42.390000px;}
.x18_c00415{left:55.890000px;}
.x6b_c00415{left:64.530000px;}
.x1f_c00415{left:68.040000px;}
.x4b_c00415{left:70.740000px;}
.x57_c00415{left:72.900000px;}
.xb_c00415{left:75.870000px;}
.x52_c00415{left:78.300000px;}
.x4_c00415{left:81.000000px;}
.x3e_c00415{left:83.160000px;}
.x38_c00415{left:86.584500px;}
.x5c_c00415{left:89.100000px;}
.x4f_c00415{left:90.450000px;}
.x43_c00415{left:91.800000px;}
.x11_c00415{left:93.420000px;}
.x20_c00415{left:96.930000px;}
.x1_c00415{left:98.280000px;}
.x39_c00415{left:100.278000px;}
.xc_c00415{left:102.870000px;}
.x3f_c00415{left:107.190000px;}
.x44_c00415{left:108.540000px;}
.x19_c00415{left:111.240000px;}
.x26_c00415{left:112.590000px;}
.x21_c00415{left:114.750000px;}
.xd_c00415{left:118.800000px;}
.x3a_c00415{left:120.525000px;}
.x60_c00415{left:123.390000px;}
.x2e_c00415{left:126.090000px;}
.x5d_c00415{left:129.060000px;}
.x5_c00415{left:130.950000px;}
.x27_c00415{left:133.650000px;}
.x36_c00415{left:136.080000px;}
.x61_c00415{left:139.590000px;}
.x33_c00415{left:145.530000px;}
.x4c_c00415{left:146.880000px;}
.x6_c00415{left:149.850000px;}
.x53_c00415{left:151.200000px;}
.x22_c00415{left:152.820000px;}
.x45_c00415{left:158.760000px;}
.x12_c00415{left:159.840000px;}
.x49_c00415{left:169.020000px;}
.x62_c00415{left:171.180000px;}
.x2_c00415{left:173.070000px;}
.x58_c00415{left:176.850000px;}
.x2f_c00415{left:177.930000px;}
.xe_c00415{left:179.820000px;}
.x50_c00415{left:182.250000px;}
.x28_c00415{left:183.330000px;}
.x46_c00415{left:186.300000px;}
.x7_c00415{left:188.730000px;}
.x40_c00415{left:189.810000px;}
.x13_c00415{left:196.830000px;}
.x29_c00415{left:198.990000px;}
.x66_c00415{left:200.070000px;}
.x59_c00415{left:201.960000px;}
.x63_c00415{left:204.930000px;}
.x1a_c00415{left:207.360000px;}
.x54_c00415{left:213.030000px;}
.x8_c00415{left:214.920000px;}
.x23_c00415{left:217.620000px;}
.x1b_c00415{left:220.050000px;}
.x4d_c00415{left:222.750000px;}
.x47_c00415{left:226.530000px;}
.x30_c00415{left:228.420000px;}
.x64_c00415{left:231.930000px;}
.x24_c00415{left:233.820000px;}
.x41_c00415{left:235.710000px;}
.x3b_c00415{left:237.198000px;}
.xf_c00415{left:241.380000px;}
.x37_c00415{left:242.730000px;}
.x1c_c00415{left:245.430000px;}
.x14_c00415{left:247.590000px;}
.x67_c00415{left:251.640000px;}
.x5a_c00415{left:252.990000px;}
.x31_c00415{left:254.880000px;}
.x69_c00415{left:257.040000px;}
.x1d_c00415{left:261.360000px;}
.x51_c00415{left:263.250000px;}
.x2a_c00415{left:265.950000px;}
.x9_c00415{left:269.190000px;}
.x15_c00415{left:270.270000px;}
.x68_c00415{left:272.430000px;}
.x34_c00415{left:279.990000px;}
.x32_c00415{left:281.340000px;}
.x5e_c00415{left:286.740000px;}
.x4a_c00415{left:288.900000px;}
.x3c_c00415{left:292.266000px;}
.x2b_c00415{left:296.190000px;}
.xa_c00415{left:298.350000px;}
.x35_c00415{left:306.450000px;}
.x10_c00415{left:309.960000px;}
.x3d_c00415{left:312.214500px;}
.x55_c00415{left:314.820000px;}
.x4e_c00415{left:315.900000px;}
.x2c_c00415{left:316.980000px;}
.x16_c00415{left:318.060000px;}
.x25_c00415{left:319.950000px;}
.x48_c00415{left:322.380000px;}
.x42_c00415{left:324.540000px;}
.x6a_c00415{left:328.590000px;}
.x5b_c00415{left:330.480000px;}
.x65_c00415{left:337.230000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.fsb_c00415{font-size:49.466667pt;}
.fs6_c00415{font-size:51.333333pt;}
.fsc_c00415{font-size:52.266667pt;}
.fs9_c00415{font-size:53.200000pt;}
.fsa_c00415{font-size:54.133333pt;}
.fs8_c00415{font-size:55.066667pt;}
.fs5_c00415{font-size:56.000000pt;}
.fs7_c00415{font-size:56.933333pt;}
.fs3_c00415{font-size:58.800000pt;}
.fs4_c00415{font-size:59.733333pt;}
.fs1_c00415{font-size:62.533333pt;}
.fs0_c00415{font-size:63.466667pt;}
.fs2_c00415{font-size:65.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y1f_c00415{bottom:18.533333pt;}
.y1e_c00415{bottom:34.058667pt;}
.y1d_c00415{bottom:49.114667pt;}
.y1c_c00415{bottom:63.897333pt;}
.y1b_c00415{bottom:79.016000pt;}
.y1a_c00415{bottom:94.156000pt;}
.y19_c00415{bottom:107.762667pt;}
.y18_c00415{bottom:260.125333pt;}
.y17_c00415{bottom:275.869333pt;}
.y16_c00415{bottom:290.850667pt;}
.y15_c00415{bottom:306.588000pt;}
.y14_c00415{bottom:321.361333pt;}
.y13_c00415{bottom:335.688000pt;}
.y12_c00415{bottom:349.666667pt;}
.y11_c00415{bottom:349.861333pt;}
.y10_c00415{bottom:350.400000pt;}
.yf_c00415{bottom:350.962667pt;}
.ye_c00415{bottom:351.541333pt;}
.yd_c00415{bottom:351.738667pt;}
.yc_c00415{bottom:351.872000pt;}
.yb_c00415{bottom:352.321333pt;}
.ya_c00415{bottom:366.274667pt;}
.y9_c00415{bottom:382.189333pt;}
.y8_c00415{bottom:396.804000pt;}
.y7_c00415{bottom:412.022667pt;}
.y6_c00415{bottom:426.994667pt;}
.y5_c00415{bottom:441.788000pt;}
.y4_c00415{bottom:456.430667pt;}
.y3_c00415{bottom:471.813333pt;}
.y2_c00415{bottom:486.378667pt;}
.y1_c00415{bottom:499.104000pt;}
.hc_c00415{height:49.466667pt;}
.h7_c00415{height:51.333333pt;}
.hd_c00415{height:52.266667pt;}
.ha_c00415{height:53.200000pt;}
.hb_c00415{height:54.133333pt;}
.h9_c00415{height:55.066667pt;}
.h6_c00415{height:56.000000pt;}
.h8_c00415{height:56.933333pt;}
.h4_c00415{height:58.800000pt;}
.h5_c00415{height:59.733333pt;}
.h2_c00415{height:62.533333pt;}
.h1_c00415{height:63.466667pt;}
.h3_c00415{height:65.333333pt;}
.h0_c00415{height:540.666667pt;}
.w0_c00415{width:319.200000pt;}
.w1_c00415{width:319.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1e_c00415{left:27.360000pt;}
.x5f_c00415{left:32.400000pt;}
.x56_c00415{left:33.360000pt;}
.x17_c00415{left:35.280000pt;}
.x3_c00415{left:36.720000pt;}
.x2d_c00415{left:37.680000pt;}
.x18_c00415{left:49.680000pt;}
.x6b_c00415{left:57.360000pt;}
.x1f_c00415{left:60.480000pt;}
.x4b_c00415{left:62.880000pt;}
.x57_c00415{left:64.800000pt;}
.xb_c00415{left:67.440000pt;}
.x52_c00415{left:69.600000pt;}
.x4_c00415{left:72.000000pt;}
.x3e_c00415{left:73.920000pt;}
.x38_c00415{left:76.964000pt;}
.x5c_c00415{left:79.200000pt;}
.x4f_c00415{left:80.400000pt;}
.x43_c00415{left:81.600000pt;}
.x11_c00415{left:83.040000pt;}
.x20_c00415{left:86.160000pt;}
.x1_c00415{left:87.360000pt;}
.x39_c00415{left:89.136000pt;}
.xc_c00415{left:91.440000pt;}
.x3f_c00415{left:95.280000pt;}
.x44_c00415{left:96.480000pt;}
.x19_c00415{left:98.880000pt;}
.x26_c00415{left:100.080000pt;}
.x21_c00415{left:102.000000pt;}
.xd_c00415{left:105.600000pt;}
.x3a_c00415{left:107.133333pt;}
.x60_c00415{left:109.680000pt;}
.x2e_c00415{left:112.080000pt;}
.x5d_c00415{left:114.720000pt;}
.x5_c00415{left:116.400000pt;}
.x27_c00415{left:118.800000pt;}
.x36_c00415{left:120.960000pt;}
.x61_c00415{left:124.080000pt;}
.x33_c00415{left:129.360000pt;}
.x4c_c00415{left:130.560000pt;}
.x6_c00415{left:133.200000pt;}
.x53_c00415{left:134.400000pt;}
.x22_c00415{left:135.840000pt;}
.x45_c00415{left:141.120000pt;}
.x12_c00415{left:142.080000pt;}
.x49_c00415{left:150.240000pt;}
.x62_c00415{left:152.160000pt;}
.x2_c00415{left:153.840000pt;}
.x58_c00415{left:157.200000pt;}
.x2f_c00415{left:158.160000pt;}
.xe_c00415{left:159.840000pt;}
.x50_c00415{left:162.000000pt;}
.x28_c00415{left:162.960000pt;}
.x46_c00415{left:165.600000pt;}
.x7_c00415{left:167.760000pt;}
.x40_c00415{left:168.720000pt;}
.x13_c00415{left:174.960000pt;}
.x29_c00415{left:176.880000pt;}
.x66_c00415{left:177.840000pt;}
.x59_c00415{left:179.520000pt;}
.x63_c00415{left:182.160000pt;}
.x1a_c00415{left:184.320000pt;}
.x54_c00415{left:189.360000pt;}
.x8_c00415{left:191.040000pt;}
.x23_c00415{left:193.440000pt;}
.x1b_c00415{left:195.600000pt;}
.x4d_c00415{left:198.000000pt;}
.x47_c00415{left:201.360000pt;}
.x30_c00415{left:203.040000pt;}
.x64_c00415{left:206.160000pt;}
.x24_c00415{left:207.840000pt;}
.x41_c00415{left:209.520000pt;}
.x3b_c00415{left:210.842667pt;}
.xf_c00415{left:214.560000pt;}
.x37_c00415{left:215.760000pt;}
.x1c_c00415{left:218.160000pt;}
.x14_c00415{left:220.080000pt;}
.x67_c00415{left:223.680000pt;}
.x5a_c00415{left:224.880000pt;}
.x31_c00415{left:226.560000pt;}
.x69_c00415{left:228.480000pt;}
.x1d_c00415{left:232.320000pt;}
.x51_c00415{left:234.000000pt;}
.x2a_c00415{left:236.400000pt;}
.x9_c00415{left:239.280000pt;}
.x15_c00415{left:240.240000pt;}
.x68_c00415{left:242.160000pt;}
.x34_c00415{left:248.880000pt;}
.x32_c00415{left:250.080000pt;}
.x5e_c00415{left:254.880000pt;}
.x4a_c00415{left:256.800000pt;}
.x3c_c00415{left:259.792000pt;}
.x2b_c00415{left:263.280000pt;}
.xa_c00415{left:265.200000pt;}
.x35_c00415{left:272.400000pt;}
.x10_c00415{left:275.520000pt;}
.x3d_c00415{left:277.524000pt;}
.x55_c00415{left:279.840000pt;}
.x4e_c00415{left:280.800000pt;}
.x2c_c00415{left:281.760000pt;}
.x16_c00415{left:282.720000pt;}
.x25_c00415{left:284.400000pt;}
.x48_c00415{left:286.560000pt;}
.x42_c00415{left:288.480000pt;}
.x6a_c00415{left:292.080000pt;}
.x5b_c00415{left:293.760000pt;}
.x65_c00415{left:299.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00416 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00416 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00416 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00416 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00416.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00416{transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010855,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.047115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047115,0.000000,0.000000,0.250000,0,0);}
.ma8_c00416{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.mb4_c00416{transform:matrix(0.129615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129615,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133560,0.000000,0.000000,0.250000,0,0);}
.mb1_c00416{transform:matrix(0.139240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139240,0.000000,0.000000,0.250000,0,0);}
.ma3_c00416{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00416{transform:matrix(0.148105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148105,0.000000,0.000000,0.250000,0,0);}
.m5d_c00416{transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155135,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.m5e_c00416{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.md2_c00416{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m9e_c00416{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.mc5_c00416{transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163680,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);}
.m77_c00416{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m62_c00416{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00416{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.mdb_c00416{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168615,0.000000,0.000000,0.250000,0,0);}
.me0_c00416{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m7a_c00416{transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172640,0.000000,0.000000,0.250000,0,0);}
.m66_c00416{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00416{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);}
.me1_c00416{transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);}
.md0_c00416{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m96_c00416{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);}
.mc9_c00416{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m92_c00416{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);}
.m8e_c00416{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.m9a_c00416{transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);}
.m54_c00416{transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);}
.m78_c00416{transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);}
.m64_c00416{transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184395,0.000000,0.000000,0.250000,0,0);}
.m68_c00416{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.mb3_c00416{transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185910,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.ma9_c00416{transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);}
.m5c_c00416{transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m5a_c00416{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00416{transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187990,0.000000,0.000000,0.250000,0,0);}
.md6_c00416{transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188110,0.000000,0.000000,0.250000,0,0);}
.md4_c00416{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m70_c00416{transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);}
.mb5_c00416{transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190820,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m58_c00416{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m99_c00416{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193855,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);}
.m51_c00416{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);}
.mc6_c00416{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);}
.m52_c00416{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.me2_c00416{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m88_c00416{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197930,0.000000,0.000000,0.250000,0,0);}
.ma6_c00416{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.mbb_c00416{transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198610,0.000000,0.000000,0.250000,0,0);}
.m56_c00416{transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199205,0.000000,0.000000,0.250000,0,0);}
.ma0_c00416{transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);}
.mc7_c00416{transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);}
.m79_c00416{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.ma4_c00416{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.me3_c00416{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200560,0.000000,0.000000,0.250000,0,0);}
.m97_c00416{transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);}
.mb6_c00416{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.m9f_c00416{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m80_c00416{transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);}
.m60_c00416{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.ma1_c00416{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m55_c00416{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m8c_c00416{transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205440,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.ma5_c00416{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m7d_c00416{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.mda_c00416{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.maa_c00416{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.mb7_c00416{transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206940,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m6d_c00416{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208140,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.mbf_c00416{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m59_c00416{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m76_c00416{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.mb2_c00416{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211885,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m83_c00416{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m74_c00416{transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);}
.mdc_c00416{transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);}
.mae_c00416{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m5f_c00416{transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214190,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214880,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m9b_c00416{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.m6c_c00416{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m8b_c00416{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);}
.m8f_c00416{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m53_c00416{transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);}
.m61_c00416{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.m7e_c00416{transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m6e_c00416{transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);}
.m6f_c00416{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mb8_c00416{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);}
.m7f_c00416{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m9d_c00416{transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);}
.mdf_c00416{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);}
.mce_c00416{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.md7_c00416{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.mcd_c00416{transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229410,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230420,0.000000,0.000000,0.250000,0,0);}
.m71_c00416{transform:matrix(0.231560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231560,0.000000,0.000000,0.250000,0,0);}
.mca_c00416{transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232005,0.000000,0.000000,0.250000,0,0);}
.mac_c00416{transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);}
.md1_c00416{transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232695,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.md5_c00416{transform:matrix(0.236160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236160,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236595,0.000000,0.000000,0.250000,0,0);}
.mbe_c00416{transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.md8_c00416{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m95_c00416{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m65_c00416{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.mbd_c00416{transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242130,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247235,0.000000,0.000000,0.250000,0,0);}
.m67_c00416{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.mc3_c00416{transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);}
.mcb_c00416{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m84_c00416{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.ma2_c00416{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mc0_c00416{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m72_c00416{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.mc4_c00416{transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255590,0.000000,0.000000,0.250000,0,0);}
.md3_c00416{transform:matrix(0.256605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256605,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);}
.mde_c00416{transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);}
.mc1_c00416{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.mdd_c00416{transform:matrix(0.268925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268925,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);}
.m7b_c00416{transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);}
.mba_c00416{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.278875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278875,0.000000,0.000000,0.250000,0,0);}
.m85_c00416{transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00416{transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284395,0.000000,0.000000,0.250000,0,0);}
.m6a_c00416{transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);}
.mbc_c00416{transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);}
.md9_c00416{transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);}
.m8d_c00416{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.m69_c00416{transform:matrix(0.307810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307810,0.000000,0.000000,0.250000,0,0);}
.m9c_c00416{transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);}
.m81_c00416{transform:matrix(0.336480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336480,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.336905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336905,0.000000,0.000000,0.250000,0,0);}
.m86_c00416{transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373785,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.376555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376555,0.000000,0.000000,0.250000,0,0);}
.mcf_c00416{transform:matrix(0.376895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376895,0.000000,0.000000,0.250000,0,0);}
.mcc_c00416{transform:matrix(0.382030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382030,0.000000,0.000000,0.250000,0,0);}
.m75_c00416{transform:matrix(0.429525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429525,0.000000,0.000000,0.250000,0,0);}
.mb9_c00416{transform:matrix(0.468015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468015,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.740345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740345,0.000000,0.000000,0.250000,0,0);}
.mc2_c00416{transform:matrix(0.808785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808785,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:0.000000px;}
.fc0_c00416{color:transparent;}
.fs7_c00416{font-size:46.200000px;}
.fs9_c00416{font-size:54.600000px;}
.fs6_c00416{font-size:55.650000px;}
.fs5_c00416{font-size:57.750000px;}
.fse_c00416{font-size:58.800000px;}
.fsb_c00416{font-size:59.850000px;}
.fs4_c00416{font-size:60.900000px;}
.fsa_c00416{font-size:61.950000px;}
.fs8_c00416{font-size:63.000000px;}
.fsf_c00416{font-size:64.050000px;}
.fs3_c00416{font-size:66.150000px;}
.fs1_c00416{font-size:67.200000px;}
.fsc_c00416{font-size:68.250000px;}
.fsd_c00416{font-size:69.300000px;}
.fs0_c00416{font-size:70.350000px;}
.fs2_c00416{font-size:71.400000px;}
.y0_c00416{bottom:0.000000px;}
.ycb_c00416{bottom:30.862500px;}
.yc2_c00416{bottom:46.705500px;}
.yc3_c00416{bottom:46.941000px;}
.yc4_c00416{bottom:47.170500px;}
.yc5_c00416{bottom:47.764500px;}
.yc6_c00416{bottom:48.019500px;}
.yc7_c00416{bottom:48.643500px;}
.yc8_c00416{bottom:48.880500px;}
.yc9_c00416{bottom:49.480500px;}
.yca_c00416{bottom:49.653000px;}
.ybb_c00416{bottom:62.367000px;}
.ybc_c00416{bottom:63.151500px;}
.ybd_c00416{bottom:63.922500px;}
.ybe_c00416{bottom:64.603500px;}
.ybf_c00416{bottom:65.371500px;}
.yc0_c00416{bottom:65.568000px;}
.yc1_c00416{bottom:65.838000px;}
.yb5_c00416{bottom:79.105500px;}
.yb6_c00416{bottom:80.154000px;}
.yb7_c00416{bottom:81.519000px;}
.yb8_c00416{bottom:82.167000px;}
.yb9_c00416{bottom:82.464000px;}
.yba_c00416{bottom:83.415000px;}
.yaf_c00416{bottom:97.464000px;}
.yb0_c00416{bottom:97.896000px;}
.yb1_c00416{bottom:98.464500px;}
.yb2_c00416{bottom:98.635500px;}
.yb3_c00416{bottom:99.511500px;}
.yb4_c00416{bottom:100.827000px;}
.ya8_c00416{bottom:112.300500px;}
.ya9_c00416{bottom:112.840500px;}
.yaa_c00416{bottom:113.734500px;}
.yab_c00416{bottom:114.640500px;}
.yac_c00416{bottom:115.422000px;}
.yad_c00416{bottom:115.750500px;}
.yae_c00416{bottom:116.692500px;}
.ya1_c00416{bottom:130.674000px;}
.ya2_c00416{bottom:130.972500px;}
.ya3_c00416{bottom:132.274500px;}
.ya4_c00416{bottom:132.450000px;}
.ya5_c00416{bottom:132.711000px;}
.ya6_c00416{bottom:133.462500px;}
.ya7_c00416{bottom:133.999500px;}
.y9b_c00416{bottom:147.684000px;}
.y9c_c00416{bottom:148.303500px;}
.y9d_c00416{bottom:148.882500px;}
.y9e_c00416{bottom:149.556000px;}
.y9f_c00416{bottom:150.342000px;}
.ya0_c00416{bottom:151.473000px;}
.y92_c00416{bottom:164.964000px;}
.y93_c00416{bottom:165.346500px;}
.y94_c00416{bottom:165.774000px;}
.y95_c00416{bottom:166.324500px;}
.y96_c00416{bottom:166.849500px;}
.y97_c00416{bottom:167.037000px;}
.y98_c00416{bottom:167.559000px;}
.y99_c00416{bottom:167.805000px;}
.y9a_c00416{bottom:168.145500px;}
.y8a_c00416{bottom:181.434000px;}
.y8b_c00416{bottom:181.840500px;}
.y8c_c00416{bottom:182.866500px;}
.y8d_c00416{bottom:182.974500px;}
.y8e_c00416{bottom:183.876000px;}
.y8f_c00416{bottom:184.083000px;}
.y90_c00416{bottom:184.656000px;}
.y91_c00416{bottom:185.025000px;}
.y89_c00416{bottom:200.347500px;}
.y83_c00416{bottom:215.455500px;}
.y84_c00416{bottom:215.697000px;}
.y85_c00416{bottom:216.192000px;}
.y86_c00416{bottom:216.744000px;}
.y87_c00416{bottom:217.873500px;}
.y88_c00416{bottom:218.803500px;}
.y7e_c00416{bottom:228.426000px;}
.y7f_c00416{bottom:229.504500px;}
.y80_c00416{bottom:233.133000px;}
.y81_c00416{bottom:234.379500px;}
.y82_c00416{bottom:235.690500px;}
.y7d_c00416{bottom:252.829500px;}
.y78_c00416{bottom:268.107000px;}
.y79_c00416{bottom:269.481000px;}
.y7a_c00416{bottom:269.632500px;}
.y7b_c00416{bottom:270.315000px;}
.y7c_c00416{bottom:270.448500px;}
.y6f_c00416{bottom:284.833500px;}
.y70_c00416{bottom:285.256500px;}
.y71_c00416{bottom:286.026000px;}
.y72_c00416{bottom:286.321500px;}
.y73_c00416{bottom:286.854000px;}
.y74_c00416{bottom:287.130000px;}
.y75_c00416{bottom:287.772000px;}
.y76_c00416{bottom:288.045000px;}
.y77_c00416{bottom:288.378000px;}
.y69_c00416{bottom:302.400000px;}
.y6a_c00416{bottom:303.444000px;}
.y6b_c00416{bottom:304.269000px;}
.y6c_c00416{bottom:304.797000px;}
.y6d_c00416{bottom:305.581500px;}
.y6e_c00416{bottom:306.100500px;}
.y61_c00416{bottom:319.948500px;}
.y62_c00416{bottom:320.322000px;}
.y63_c00416{bottom:320.536500px;}
.y64_c00416{bottom:321.184500px;}
.y65_c00416{bottom:322.060500px;}
.y66_c00416{bottom:322.263000px;}
.y67_c00416{bottom:322.518000px;}
.y68_c00416{bottom:322.737000px;}
.y60_c00416{bottom:336.357000px;}
.y58_c00416{bottom:351.538500px;}
.y59_c00416{bottom:351.763500px;}
.y5a_c00416{bottom:352.854000px;}
.y5b_c00416{bottom:353.583000px;}
.y5c_c00416{bottom:354.123000px;}
.y5d_c00416{bottom:355.957500px;}
.y5e_c00416{bottom:356.617500px;}
.y5f_c00416{bottom:357.384000px;}
.y4f_c00416{bottom:366.663000px;}
.y50_c00416{bottom:367.207500px;}
.y51_c00416{bottom:368.436000px;}
.y52_c00416{bottom:369.513000px;}
.y53_c00416{bottom:370.323000px;}
.y54_c00416{bottom:370.885500px;}
.y55_c00416{bottom:372.612000px;}
.y56_c00416{bottom:373.513500px;}
.y57_c00416{bottom:373.809000px;}
.y49_c00416{bottom:383.670000px;}
.y4a_c00416{bottom:383.832000px;}
.y4b_c00416{bottom:384.381000px;}
.y4c_c00416{bottom:385.671000px;}
.y4d_c00416{bottom:386.793000px;}
.y4e_c00416{bottom:387.312000px;}
.y41_c00416{bottom:399.339000px;}
.y42_c00416{bottom:400.195500px;}
.y43_c00416{bottom:400.594500px;}
.y44_c00416{bottom:402.465000px;}
.y45_c00416{bottom:402.906000px;}
.y46_c00416{bottom:403.609500px;}
.y47_c00416{bottom:404.956500px;}
.y48_c00416{bottom:405.600000px;}
.y39_c00416{bottom:416.617500px;}
.y3a_c00416{bottom:417.261000px;}
.y3b_c00416{bottom:418.354500px;}
.y3c_c00416{bottom:419.181000px;}
.y3d_c00416{bottom:419.647500px;}
.y3e_c00416{bottom:420.262500px;}
.y3f_c00416{bottom:421.231500px;}
.y40_c00416{bottom:422.752500px;}
.y31_c00416{bottom:433.896000px;}
.y32_c00416{bottom:434.421000px;}
.y33_c00416{bottom:435.100500px;}
.y34_c00416{bottom:435.474000px;}
.y35_c00416{bottom:436.815000px;}
.y36_c00416{bottom:437.653500px;}
.y37_c00416{bottom:438.783000px;}
.y38_c00416{bottom:439.485000px;}
.y29_c00416{bottom:451.714500px;}
.y2a_c00416{bottom:452.194500px;}
.y2b_c00416{bottom:452.548500px;}
.y2c_c00416{bottom:453.336000px;}
.y2d_c00416{bottom:453.544500px;}
.y2e_c00416{bottom:454.765500px;}
.y2f_c00416{bottom:455.550000px;}
.y30_c00416{bottom:456.009000px;}
.y21_c00416{bottom:468.993000px;}
.y22_c00416{bottom:469.993500px;}
.y23_c00416{bottom:470.553000px;}
.y24_c00416{bottom:471.868500px;}
.y25_c00416{bottom:472.122000px;}
.y26_c00416{bottom:472.870500px;}
.y27_c00416{bottom:473.718000px;}
.y28_c00416{bottom:474.175500px;}
.y18_c00416{bottom:483.579000px;}
.y19_c00416{bottom:484.594500px;}
.y1a_c00416{bottom:485.557500px;}
.y1b_c00416{bottom:486.453000px;}
.y1c_c00416{bottom:486.813000px;}
.y1d_c00416{bottom:488.551500px;}
.y1e_c00416{bottom:488.854500px;}
.y1f_c00416{bottom:489.442500px;}
.y20_c00416{bottom:490.308000px;}
.y12_c00416{bottom:503.284500px;}
.y13_c00416{bottom:503.610000px;}
.y14_c00416{bottom:504.579000px;}
.y15_c00416{bottom:505.588500px;}
.y16_c00416{bottom:506.589000px;}
.y17_c00416{bottom:507.484500px;}
.yc_c00416{bottom:517.870500px;}
.yd_c00416{bottom:520.144500px;}
.ye_c00416{bottom:520.750500px;}
.yf_c00416{bottom:522.783000px;}
.y10_c00416{bottom:524.049000px;}
.y11_c00416{bottom:524.724000px;}
.y9_c00416{bottom:534.070500px;}
.ya_c00416{bottom:535.228500px;}
.yb_c00416{bottom:535.779000px;}
.y2_c00416{bottom:554.568000px;}
.y3_c00416{bottom:555.052500px;}
.y4_c00416{bottom:555.514500px;}
.y5_c00416{bottom:556.920000px;}
.y6_c00416{bottom:558.166500px;}
.y7_c00416{bottom:558.369000px;}
.y8_c00416{bottom:558.729000px;}
.y1_c00416{bottom:569.571000px;}
.h8_c00416{height:46.200000px;}
.ha_c00416{height:54.600000px;}
.h7_c00416{height:55.650000px;}
.h6_c00416{height:57.750000px;}
.hf_c00416{height:58.800000px;}
.hc_c00416{height:59.850000px;}
.h5_c00416{height:60.900000px;}
.hb_c00416{height:61.950000px;}
.h9_c00416{height:63.000000px;}
.h10_c00416{height:64.050000px;}
.h4_c00416{height:66.150000px;}
.h2_c00416{height:67.200000px;}
.hd_c00416{height:68.250000px;}
.he_c00416{height:69.300000px;}
.h1_c00416{height:70.350000px;}
.h3_c00416{height:71.400000px;}
.h0_c00416{height:608.250000px;}
.w0_c00416{width:359.100000px;}
.w1_c00416{width:359.250000px;}
.x0_c00416{left:0.000000px;}
.x3e_c00416{left:2.766000px;}
.x34_c00416{left:4.984500px;}
.x2_c00416{left:8.367000px;}
.x9_c00416{left:10.377000px;}
.xc_c00416{left:11.443500px;}
.x26_c00416{left:12.993000px;}
.x35_c00416{left:13.998000px;}
.x39_c00416{left:16.405500px;}
.x58_c00416{left:17.548500px;}
.x2f_c00416{left:19.504500px;}
.x7a_c00416{left:21.558000px;}
.x71_c00416{left:23.206500px;}
.x78_c00416{left:27.958500px;}
.x12_c00416{left:30.142500px;}
.x55_c00416{left:32.818500px;}
.x82_c00416{left:34.558500px;}
.x27_c00416{left:35.812500px;}
.x3a_c00416{left:37.321500px;}
.x3_c00416{left:40.647000px;}
.x62_c00416{left:43.201500px;}
.x17_c00416{left:44.490000px;}
.x4c_c00416{left:48.457500px;}
.x59_c00416{left:49.678500px;}
.x64_c00416{left:50.889000px;}
.xa_c00416{left:53.254500px;}
.x45_c00416{left:54.271500px;}
.x72_c00416{left:56.926500px;}
.x5e_c00416{left:57.967500px;}
.x6e_c00416{left:59.835000px;}
.x21_c00416{left:60.948000px;}
.x1d_c00416{left:64.996500px;}
.x3f_c00416{left:68.529000px;}
.x30_c00416{left:69.768000px;}
.x4_c00416{left:71.457000px;}
.xb_c00416{left:73.650000px;}
.x46_c00416{left:76.951500px;}
.x7d_c00416{left:78.186000px;}
.x28_c00416{left:81.567000px;}
.x3b_c00416{left:84.561000px;}
.x13_c00416{left:87.138000px;}
.x2a_c00416{left:88.588500px;}
.x7b_c00416{left:91.464000px;}
.x1e_c00416{left:94.477500px;}
.xd_c00416{left:95.644500px;}
.x52_c00416{left:99.475500px;}
.x5a_c00416{left:102.598500px;}
.x66_c00416{left:103.821000px;}
.x40_c00416{left:104.970000px;}
.x22_c00416{left:107.314500px;}
.x61_c00416{left:110.878500px;}
.x73_c00416{left:112.824000px;}
.x6b_c00416{left:115.161000px;}
.x36_c00416{left:116.197500px;}
.xe_c00416{left:118.089000px;}
.x23_c00416{left:119.566500px;}
.x53_c00416{left:120.610500px;}
.x83_c00416{left:123.928500px;}
.x18_c00416{left:125.320500px;}
.x4d_c00416{left:126.768000px;}
.x65_c00416{left:129.778500px;}
.x41_c00416{left:132.003000px;}
.x7e_c00416{left:133.285500px;}
.x47_c00416{left:134.461500px;}
.x4f_c00416{left:138.631500px;}
.x1_c00416{left:140.130000px;}
.x7f_c00416{left:142.384500px;}
.x2b_c00416{left:144.750000px;}
.x14_c00416{left:146.548500px;}
.x67_c00416{left:149.718000px;}
.x3c_c00416{left:157.155000px;}
.x54_c00416{left:158.677500px;}
.x6f_c00416{left:159.988500px;}
.x31_c00416{left:162.252000px;}
.x1f_c00416{left:163.744500px;}
.x5_c00416{left:165.178500px;}
.x5b_c00416{left:168.478500px;}
.x74_c00416{left:169.492500px;}
.x2c_c00416{left:171.472500px;}
.x50_c00416{left:173.808000px;}
.x20_c00416{left:177.078000px;}
.x37_c00416{left:178.513500px;}
.x5c_c00416{left:181.708500px;}
.x84_c00416{left:183.058500px;}
.x79_c00416{left:185.398500px;}
.x63_c00416{left:190.351500px;}
.x24_c00416{left:191.374500px;}
.x5f_c00416{left:192.381000px;}
.xf_c00416{left:193.386000px;}
.x85_c00416{left:196.288500px;}
.x48_c00416{left:198.991500px;}
.x15_c00416{left:205.410000px;}
.x38_c00416{left:207.318000px;}
.x68_c00416{left:209.115000px;}
.x86_c00416{left:211.408500px;}
.x2d_c00416{left:213.589500px;}
.x19_c00416{left:216.594000px;}
.x75_c00416{left:218.367000px;}
.x6c_c00416{left:219.417000px;}
.x80_c00416{left:220.695000px;}
.x49_c00416{left:221.941500px;}
.x42_c00416{left:223.701000px;}
.x29_c00416{left:225.456000px;}
.x1a_c00416{left:229.792500px;}
.x56_c00416{left:233.709000px;}
.x25_c00416{left:237.549000px;}
.x76_c00416{left:238.899000px;}
.x10_c00416{left:240.259500px;}
.x32_c00416{left:244.287000px;}
.x57_c00416{left:245.842500px;}
.x6_c00416{left:248.328000px;}
.x70_c00416{left:251.262000px;}
.x69_c00416{left:252.591000px;}
.x1b_c00416{left:255.373500px;}
.x43_c00416{left:256.735500px;}
.x16_c00416{left:258.076500px;}
.x51_c00416{left:260.733000px;}
.x7_c00416{left:261.858000px;}
.x11_c00416{left:265.234500px;}
.x4e_c00416{left:267.937500px;}
.x33_c00416{left:270.055500px;}
.x6a_c00416{left:273.088500px;}
.x81_c00416{left:275.214000px;}
.x5d_c00416{left:276.478500px;}
.x2e_c00416{left:279.729000px;}
.x4a_c00416{left:281.611500px;}
.x8_c00416{left:285.822000px;}
.x60_c00416{left:287.097000px;}
.x3d_c00416{left:291.282000px;}
.x1c_c00416{left:293.014500px;}
.x44_c00416{left:295.092000px;}
.x77_c00416{left:297.765000px;}
.x6d_c00416{left:300.154500px;}
.x4b_c00416{left:302.131500px;}
.x7c_c00416{left:308.740500px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.fs7_c00416{font-size:41.066667pt;}
.fs9_c00416{font-size:48.533333pt;}
.fs6_c00416{font-size:49.466667pt;}
.fs5_c00416{font-size:51.333333pt;}
.fse_c00416{font-size:52.266667pt;}
.fsb_c00416{font-size:53.200000pt;}
.fs4_c00416{font-size:54.133333pt;}
.fsa_c00416{font-size:55.066667pt;}
.fs8_c00416{font-size:56.000000pt;}
.fsf_c00416{font-size:56.933333pt;}
.fs3_c00416{font-size:58.800000pt;}
.fs1_c00416{font-size:59.733333pt;}
.fsc_c00416{font-size:60.666667pt;}
.fsd_c00416{font-size:61.600000pt;}
.fs0_c00416{font-size:62.533333pt;}
.fs2_c00416{font-size:63.466667pt;}
.y0_c00416{bottom:0.000000pt;}
.ycb_c00416{bottom:27.433333pt;}
.yc2_c00416{bottom:41.516000pt;}
.yc3_c00416{bottom:41.725333pt;}
.yc4_c00416{bottom:41.929333pt;}
.yc5_c00416{bottom:42.457333pt;}
.yc6_c00416{bottom:42.684000pt;}
.yc7_c00416{bottom:43.238667pt;}
.yc8_c00416{bottom:43.449333pt;}
.yc9_c00416{bottom:43.982667pt;}
.yca_c00416{bottom:44.136000pt;}
.ybb_c00416{bottom:55.437333pt;}
.ybc_c00416{bottom:56.134667pt;}
.ybd_c00416{bottom:56.820000pt;}
.ybe_c00416{bottom:57.425333pt;}
.ybf_c00416{bottom:58.108000pt;}
.yc0_c00416{bottom:58.282667pt;}
.yc1_c00416{bottom:58.522667pt;}
.yb5_c00416{bottom:70.316000pt;}
.yb6_c00416{bottom:71.248000pt;}
.yb7_c00416{bottom:72.461333pt;}
.yb8_c00416{bottom:73.037333pt;}
.yb9_c00416{bottom:73.301333pt;}
.yba_c00416{bottom:74.146667pt;}
.yaf_c00416{bottom:86.634667pt;}
.yb0_c00416{bottom:87.018667pt;}
.yb1_c00416{bottom:87.524000pt;}
.yb2_c00416{bottom:87.676000pt;}
.yb3_c00416{bottom:88.454667pt;}
.yb4_c00416{bottom:89.624000pt;}
.ya8_c00416{bottom:99.822667pt;}
.ya9_c00416{bottom:100.302667pt;}
.yaa_c00416{bottom:101.097333pt;}
.yab_c00416{bottom:101.902667pt;}
.yac_c00416{bottom:102.597333pt;}
.yad_c00416{bottom:102.889333pt;}
.yae_c00416{bottom:103.726667pt;}
.ya1_c00416{bottom:116.154667pt;}
.ya2_c00416{bottom:116.420000pt;}
.ya3_c00416{bottom:117.577333pt;}
.ya4_c00416{bottom:117.733333pt;}
.ya5_c00416{bottom:117.965333pt;}
.ya6_c00416{bottom:118.633333pt;}
.ya7_c00416{bottom:119.110667pt;}
.y9b_c00416{bottom:131.274667pt;}
.y9c_c00416{bottom:131.825333pt;}
.y9d_c00416{bottom:132.340000pt;}
.y9e_c00416{bottom:132.938667pt;}
.y9f_c00416{bottom:133.637333pt;}
.ya0_c00416{bottom:134.642667pt;}
.y92_c00416{bottom:146.634667pt;}
.y93_c00416{bottom:146.974667pt;}
.y94_c00416{bottom:147.354667pt;}
.y95_c00416{bottom:147.844000pt;}
.y96_c00416{bottom:148.310667pt;}
.y97_c00416{bottom:148.477333pt;}
.y98_c00416{bottom:148.941333pt;}
.y99_c00416{bottom:149.160000pt;}
.y9a_c00416{bottom:149.462667pt;}
.y8a_c00416{bottom:161.274667pt;}
.y8b_c00416{bottom:161.636000pt;}
.y8c_c00416{bottom:162.548000pt;}
.y8d_c00416{bottom:162.644000pt;}
.y8e_c00416{bottom:163.445333pt;}
.y8f_c00416{bottom:163.629333pt;}
.y90_c00416{bottom:164.138667pt;}
.y91_c00416{bottom:164.466667pt;}
.y89_c00416{bottom:178.086667pt;}
.y83_c00416{bottom:191.516000pt;}
.y84_c00416{bottom:191.730667pt;}
.y85_c00416{bottom:192.170667pt;}
.y86_c00416{bottom:192.661333pt;}
.y87_c00416{bottom:193.665333pt;}
.y88_c00416{bottom:194.492000pt;}
.y7e_c00416{bottom:203.045333pt;}
.y7f_c00416{bottom:204.004000pt;}
.y80_c00416{bottom:207.229333pt;}
.y81_c00416{bottom:208.337333pt;}
.y82_c00416{bottom:209.502667pt;}
.y7d_c00416{bottom:224.737333pt;}
.y78_c00416{bottom:238.317333pt;}
.y79_c00416{bottom:239.538667pt;}
.y7a_c00416{bottom:239.673333pt;}
.y7b_c00416{bottom:240.280000pt;}
.y7c_c00416{bottom:240.398667pt;}
.y6f_c00416{bottom:253.185333pt;}
.y70_c00416{bottom:253.561333pt;}
.y71_c00416{bottom:254.245333pt;}
.y72_c00416{bottom:254.508000pt;}
.y73_c00416{bottom:254.981333pt;}
.y74_c00416{bottom:255.226667pt;}
.y75_c00416{bottom:255.797333pt;}
.y76_c00416{bottom:256.040000pt;}
.y77_c00416{bottom:256.336000pt;}
.y69_c00416{bottom:268.800000pt;}
.y6a_c00416{bottom:269.728000pt;}
.y6b_c00416{bottom:270.461333pt;}
.y6c_c00416{bottom:270.930667pt;}
.y6d_c00416{bottom:271.628000pt;}
.y6e_c00416{bottom:272.089333pt;}
.y61_c00416{bottom:284.398667pt;}
.y62_c00416{bottom:284.730667pt;}
.y63_c00416{bottom:284.921333pt;}
.y64_c00416{bottom:285.497333pt;}
.y65_c00416{bottom:286.276000pt;}
.y66_c00416{bottom:286.456000pt;}
.y67_c00416{bottom:286.682667pt;}
.y68_c00416{bottom:286.877333pt;}
.y60_c00416{bottom:298.984000pt;}
.y58_c00416{bottom:312.478667pt;}
.y59_c00416{bottom:312.678667pt;}
.y5a_c00416{bottom:313.648000pt;}
.y5b_c00416{bottom:314.296000pt;}
.y5c_c00416{bottom:314.776000pt;}
.y5d_c00416{bottom:316.406667pt;}
.y5e_c00416{bottom:316.993333pt;}
.y5f_c00416{bottom:317.674667pt;}
.y4f_c00416{bottom:325.922667pt;}
.y50_c00416{bottom:326.406667pt;}
.y51_c00416{bottom:327.498667pt;}
.y52_c00416{bottom:328.456000pt;}
.y53_c00416{bottom:329.176000pt;}
.y54_c00416{bottom:329.676000pt;}
.y55_c00416{bottom:331.210667pt;}
.y56_c00416{bottom:332.012000pt;}
.y57_c00416{bottom:332.274667pt;}
.y49_c00416{bottom:341.040000pt;}
.y4a_c00416{bottom:341.184000pt;}
.y4b_c00416{bottom:341.672000pt;}
.y4c_c00416{bottom:342.818667pt;}
.y4d_c00416{bottom:343.816000pt;}
.y4e_c00416{bottom:344.277333pt;}
.y41_c00416{bottom:354.968000pt;}
.y42_c00416{bottom:355.729333pt;}
.y43_c00416{bottom:356.084000pt;}
.y44_c00416{bottom:357.746667pt;}
.y45_c00416{bottom:358.138667pt;}
.y46_c00416{bottom:358.764000pt;}
.y47_c00416{bottom:359.961333pt;}
.y48_c00416{bottom:360.533333pt;}
.y39_c00416{bottom:370.326667pt;}
.y3a_c00416{bottom:370.898667pt;}
.y3b_c00416{bottom:371.870667pt;}
.y3c_c00416{bottom:372.605333pt;}
.y3d_c00416{bottom:373.020000pt;}
.y3e_c00416{bottom:373.566667pt;}
.y3f_c00416{bottom:374.428000pt;}
.y40_c00416{bottom:375.780000pt;}
.y31_c00416{bottom:385.685333pt;}
.y32_c00416{bottom:386.152000pt;}
.y33_c00416{bottom:386.756000pt;}
.y34_c00416{bottom:387.088000pt;}
.y35_c00416{bottom:388.280000pt;}
.y36_c00416{bottom:389.025333pt;}
.y37_c00416{bottom:390.029333pt;}
.y38_c00416{bottom:390.653333pt;}
.y29_c00416{bottom:401.524000pt;}
.y2a_c00416{bottom:401.950667pt;}
.y2b_c00416{bottom:402.265333pt;}
.y2c_c00416{bottom:402.965333pt;}
.y2d_c00416{bottom:403.150667pt;}
.y2e_c00416{bottom:404.236000pt;}
.y2f_c00416{bottom:404.933333pt;}
.y30_c00416{bottom:405.341333pt;}
.y21_c00416{bottom:416.882667pt;}
.y22_c00416{bottom:417.772000pt;}
.y23_c00416{bottom:418.269333pt;}
.y24_c00416{bottom:419.438667pt;}
.y25_c00416{bottom:419.664000pt;}
.y26_c00416{bottom:420.329333pt;}
.y27_c00416{bottom:421.082667pt;}
.y28_c00416{bottom:421.489333pt;}
.y18_c00416{bottom:429.848000pt;}
.y19_c00416{bottom:430.750667pt;}
.y1a_c00416{bottom:431.606667pt;}
.y1b_c00416{bottom:432.402667pt;}
.y1c_c00416{bottom:432.722667pt;}
.y1d_c00416{bottom:434.268000pt;}
.y1e_c00416{bottom:434.537333pt;}
.y1f_c00416{bottom:435.060000pt;}
.y20_c00416{bottom:435.829333pt;}
.y12_c00416{bottom:447.364000pt;}
.y13_c00416{bottom:447.653333pt;}
.y14_c00416{bottom:448.514667pt;}
.y15_c00416{bottom:449.412000pt;}
.y16_c00416{bottom:450.301333pt;}
.y17_c00416{bottom:451.097333pt;}
.yc_c00416{bottom:460.329333pt;}
.yd_c00416{bottom:462.350667pt;}
.ye_c00416{bottom:462.889333pt;}
.yf_c00416{bottom:464.696000pt;}
.y10_c00416{bottom:465.821333pt;}
.y11_c00416{bottom:466.421333pt;}
.y9_c00416{bottom:474.729333pt;}
.ya_c00416{bottom:475.758667pt;}
.yb_c00416{bottom:476.248000pt;}
.y2_c00416{bottom:492.949333pt;}
.y3_c00416{bottom:493.380000pt;}
.y4_c00416{bottom:493.790667pt;}
.y5_c00416{bottom:495.040000pt;}
.y6_c00416{bottom:496.148000pt;}
.y7_c00416{bottom:496.328000pt;}
.y8_c00416{bottom:496.648000pt;}
.y1_c00416{bottom:506.285333pt;}
.h8_c00416{height:41.066667pt;}
.ha_c00416{height:48.533333pt;}
.h7_c00416{height:49.466667pt;}
.h6_c00416{height:51.333333pt;}
.hf_c00416{height:52.266667pt;}
.hc_c00416{height:53.200000pt;}
.h5_c00416{height:54.133333pt;}
.hb_c00416{height:55.066667pt;}
.h9_c00416{height:56.000000pt;}
.h10_c00416{height:56.933333pt;}
.h4_c00416{height:58.800000pt;}
.h2_c00416{height:59.733333pt;}
.hd_c00416{height:60.666667pt;}
.he_c00416{height:61.600000pt;}
.h1_c00416{height:62.533333pt;}
.h3_c00416{height:63.466667pt;}
.h0_c00416{height:540.666667pt;}
.w0_c00416{width:319.200000pt;}
.w1_c00416{width:319.333333pt;}
.x0_c00416{left:0.000000pt;}
.x3e_c00416{left:2.458667pt;}
.x34_c00416{left:4.430667pt;}
.x2_c00416{left:7.437333pt;}
.x9_c00416{left:9.224000pt;}
.xc_c00416{left:10.172000pt;}
.x26_c00416{left:11.549333pt;}
.x35_c00416{left:12.442667pt;}
.x39_c00416{left:14.582667pt;}
.x58_c00416{left:15.598667pt;}
.x2f_c00416{left:17.337333pt;}
.x7a_c00416{left:19.162667pt;}
.x71_c00416{left:20.628000pt;}
.x78_c00416{left:24.852000pt;}
.x12_c00416{left:26.793333pt;}
.x55_c00416{left:29.172000pt;}
.x82_c00416{left:30.718667pt;}
.x27_c00416{left:31.833333pt;}
.x3a_c00416{left:33.174667pt;}
.x3_c00416{left:36.130667pt;}
.x62_c00416{left:38.401333pt;}
.x17_c00416{left:39.546667pt;}
.x4c_c00416{left:43.073333pt;}
.x59_c00416{left:44.158667pt;}
.x64_c00416{left:45.234667pt;}
.xa_c00416{left:47.337333pt;}
.x45_c00416{left:48.241333pt;}
.x72_c00416{left:50.601333pt;}
.x5e_c00416{left:51.526667pt;}
.x6e_c00416{left:53.186667pt;}
.x21_c00416{left:54.176000pt;}
.x1d_c00416{left:57.774667pt;}
.x3f_c00416{left:60.914667pt;}
.x30_c00416{left:62.016000pt;}
.x4_c00416{left:63.517333pt;}
.xb_c00416{left:65.466667pt;}
.x46_c00416{left:68.401333pt;}
.x7d_c00416{left:69.498667pt;}
.x28_c00416{left:72.504000pt;}
.x3b_c00416{left:75.165333pt;}
.x13_c00416{left:77.456000pt;}
.x2a_c00416{left:78.745333pt;}
.x7b_c00416{left:81.301333pt;}
.x1e_c00416{left:83.980000pt;}
.xd_c00416{left:85.017333pt;}
.x52_c00416{left:88.422667pt;}
.x5a_c00416{left:91.198667pt;}
.x66_c00416{left:92.285333pt;}
.x40_c00416{left:93.306667pt;}
.x22_c00416{left:95.390667pt;}
.x61_c00416{left:98.558667pt;}
.x73_c00416{left:100.288000pt;}
.x6b_c00416{left:102.365333pt;}
.x36_c00416{left:103.286667pt;}
.xe_c00416{left:104.968000pt;}
.x23_c00416{left:106.281333pt;}
.x53_c00416{left:107.209333pt;}
.x83_c00416{left:110.158667pt;}
.x18_c00416{left:111.396000pt;}
.x4d_c00416{left:112.682667pt;}
.x65_c00416{left:115.358667pt;}
.x41_c00416{left:117.336000pt;}
.x7e_c00416{left:118.476000pt;}
.x47_c00416{left:119.521333pt;}
.x4f_c00416{left:123.228000pt;}
.x1_c00416{left:124.560000pt;}
.x7f_c00416{left:126.564000pt;}
.x2b_c00416{left:128.666667pt;}
.x14_c00416{left:130.265333pt;}
.x67_c00416{left:133.082667pt;}
.x3c_c00416{left:139.693333pt;}
.x54_c00416{left:141.046667pt;}
.x6f_c00416{left:142.212000pt;}
.x31_c00416{left:144.224000pt;}
.x1f_c00416{left:145.550667pt;}
.x5_c00416{left:146.825333pt;}
.x5b_c00416{left:149.758667pt;}
.x74_c00416{left:150.660000pt;}
.x2c_c00416{left:152.420000pt;}
.x50_c00416{left:154.496000pt;}
.x20_c00416{left:157.402667pt;}
.x37_c00416{left:158.678667pt;}
.x5c_c00416{left:161.518667pt;}
.x84_c00416{left:162.718667pt;}
.x79_c00416{left:164.798667pt;}
.x63_c00416{left:169.201333pt;}
.x24_c00416{left:170.110667pt;}
.x5f_c00416{left:171.005333pt;}
.xf_c00416{left:171.898667pt;}
.x85_c00416{left:174.478667pt;}
.x48_c00416{left:176.881333pt;}
.x15_c00416{left:182.586667pt;}
.x38_c00416{left:184.282667pt;}
.x68_c00416{left:185.880000pt;}
.x86_c00416{left:187.918667pt;}
.x2d_c00416{left:189.857333pt;}
.x19_c00416{left:192.528000pt;}
.x75_c00416{left:194.104000pt;}
.x6c_c00416{left:195.037333pt;}
.x80_c00416{left:196.173333pt;}
.x49_c00416{left:197.281333pt;}
.x42_c00416{left:198.845333pt;}
.x29_c00416{left:200.405333pt;}
.x1a_c00416{left:204.260000pt;}
.x56_c00416{left:207.741333pt;}
.x25_c00416{left:211.154667pt;}
.x76_c00416{left:212.354667pt;}
.x10_c00416{left:213.564000pt;}
.x32_c00416{left:217.144000pt;}
.x57_c00416{left:218.526667pt;}
.x6_c00416{left:220.736000pt;}
.x70_c00416{left:223.344000pt;}
.x69_c00416{left:224.525333pt;}
.x1b_c00416{left:226.998667pt;}
.x43_c00416{left:228.209333pt;}
.x16_c00416{left:229.401333pt;}
.x51_c00416{left:231.762667pt;}
.x7_c00416{left:232.762667pt;}
.x11_c00416{left:235.764000pt;}
.x4e_c00416{left:238.166667pt;}
.x33_c00416{left:240.049333pt;}
.x6a_c00416{left:242.745333pt;}
.x81_c00416{left:244.634667pt;}
.x5d_c00416{left:245.758667pt;}
.x2e_c00416{left:248.648000pt;}
.x4a_c00416{left:250.321333pt;}
.x8_c00416{left:254.064000pt;}
.x60_c00416{left:255.197333pt;}
.x3d_c00416{left:258.917333pt;}
.x1c_c00416{left:260.457333pt;}
.x44_c00416{left:262.304000pt;}
.x77_c00416{left:264.680000pt;}
.x6d_c00416{left:266.804000pt;}
.x4b_c00416{left:268.561333pt;}
.x7c_c00416{left:274.436000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00417 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00417.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md2_c00417{transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011365,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.049295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049295,0.000000,0.000000,0.250000,0,0);}
.m94_c00417{transform:matrix(0.057535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057535,0.000000,0.000000,0.250000,0,0);}
.m71_c00417{transform:matrix(0.070845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070845,0.000000,0.000000,0.250000,0,0);}
.mbb_c00417{transform:matrix(0.099530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099530,0.000000,0.000000,0.250000,0,0);}
.mad_c00417{transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);}
.mc1_c00417{transform:matrix(0.120920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120920,0.000000,0.000000,0.250000,0,0);}
.mcd_c00417{transform:matrix(0.123135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123135,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00417{transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);}
.m6f_c00417{transform:matrix(0.145810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145810,0.000000,0.000000,0.250000,0,0);}
.m8b_c00417{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147480,0.000000,0.000000,0.250000,0,0);}
.mb9_c00417{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151045,0.000000,0.000000,0.250000,0,0);}
.mb6_c00417{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00417{transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);}
.ma0_c00417{transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);}
.md3_c00417{transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);}
.m82_c00417{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);}
.m8c_c00417{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m72_c00417{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160730,0.000000,0.000000,0.250000,0,0);}
.m9d_c00417{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.maa_c00417{transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161460,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);}
.mb8_c00417{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.md0_c00417{transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);}
.mbf_c00417{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mba_c00417{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m80_c00417{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m84_c00417{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.ma7_c00417{transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.mee_c00417{transform:matrix(0.166835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166835,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);}
.mb7_c00417{transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);}
.m74_c00417{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.mca_c00417{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.mec_c00417{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.med_c00417{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.ma1_c00417{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.mcf_c00417{transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172515,0.000000,0.000000,0.250000,0,0);}
.mbe_c00417{transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);}
.me4_c00417{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.174965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174965,0.000000,0.000000,0.250000,0,0);}
.me6_c00417{transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175655,0.000000,0.000000,0.250000,0,0);}
.md8_c00417{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m7b_c00417{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.mc0_c00417{transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179480,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m9c_c00417{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.mab_c00417{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.m85_c00417{transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182965,0.000000,0.000000,0.250000,0,0);}
.mea_c00417{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.mdd_c00417{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.maf_c00417{transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);}
.m7d_c00417{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.mf0_c00417{transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);}
.mce_c00417{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.meb_c00417{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m99_c00417{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.ma5_c00417{transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187185,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187810,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.me0_c00417{transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m6e_c00417{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.md9_c00417{transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);}
.mc2_c00417{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);}
.ma4_c00417{transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.m83_c00417{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.mc3_c00417{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.mcb_c00417{transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);}
.mdc_c00417{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.me8_c00417{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.me9_c00417{transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00417{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.ma2_c00417{transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.mb3_c00417{transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195490,0.000000,0.000000,0.250000,0,0);}
.mc5_c00417{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.md5_c00417{transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md4_c00417{transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m7f_c00417{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.m9a_c00417{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.m7c_c00417{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199230,0.000000,0.000000,0.250000,0,0);}
.ma9_c00417{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00417{transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);}
.ma6_c00417{transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);}
.me5_c00417{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);}
.m73_c00417{transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.mde_c00417{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204035,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.md6_c00417{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.md7_c00417{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.m8a_c00417{transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m7e_c00417{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);}
.m75_c00417{transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206920,0.000000,0.000000,0.250000,0,0);}
.m95_c00417{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.mdb_c00417{transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209415,0.000000,0.000000,0.250000,0,0);}
.me3_c00417{transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211260,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.211605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211605,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211880,0.000000,0.000000,0.250000,0,0);}
.me1_c00417{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00417{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m7a_c00417{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m87_c00417{transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.me2_c00417{transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215285,0.000000,0.000000,0.250000,0,0);}
.m70_c00417{transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);}
.m9f_c00417{transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00417{transform:matrix(0.216420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216420,0.000000,0.000000,0.250000,0,0);}
.mb0_c00417{transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);}
.m86_c00417{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218195,0.000000,0.000000,0.250000,0,0);}
.m92_c00417{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218390,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.mda_c00417{transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218685,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m81_c00417{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.m91_c00417{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.m90_c00417{transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);}
.mb5_c00417{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m96_c00417{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.ma8_c00417{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.mb2_c00417{transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223470,0.000000,0.000000,0.250000,0,0);}
.m97_c00417{transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);}
.mdf_c00417{transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.mc7_c00417{transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);}
.me7_c00417{transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230715,0.000000,0.000000,0.250000,0,0);}
.mac_c00417{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m98_c00417{transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);}
.m93_c00417{transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.236580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m9b_c00417{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.239115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239115,0.000000,0.000000,0.250000,0,0);}
.mef_c00417{transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240810,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242470,0.000000,0.000000,0.250000,0,0);}
.md1_c00417{transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);}
.m89_c00417{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.m79_c00417{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.mae_c00417{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.mc4_c00417{transform:matrix(0.254840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254840,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.257345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257345,0.000000,0.000000,0.250000,0,0);}
.m88_c00417{transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);}
.ma3_c00417{transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);}
.m8f_c00417{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);}
.mc9_c00417{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m76_c00417{transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00417{transform:matrix(0.288680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);}
.mbd_c00417{transform:matrix(0.300055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300055,0.000000,0.000000,0.250000,0,0);}
.mbc_c00417{transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.314920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314920,0.000000,0.000000,0.250000,0,0);}
.m77_c00417{transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);}
.m78_c00417{transform:matrix(0.353075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353075,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360760,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.371050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371050,0.000000,0.000000,0.250000,0,0);}
.mc8_c00417{transform:matrix(0.407070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407070,0.000000,0.000000,0.250000,0,0);}
.m8e_c00417{transform:matrix(0.407555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407555,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
.fc0_c00417{color:transparent;}
.fs7_c00417{font-size:55.650000px;}
.fs8_c00417{font-size:57.750000px;}
.fs9_c00417{font-size:58.800000px;}
.fsb_c00417{font-size:59.850000px;}
.fs4_c00417{font-size:60.900000px;}
.fsc_c00417{font-size:61.950000px;}
.fs3_c00417{font-size:63.000000px;}
.fs6_c00417{font-size:64.050000px;}
.fs1_c00417{font-size:65.100000px;}
.fs5_c00417{font-size:66.150000px;}
.fsd_c00417{font-size:67.200000px;}
.fs2_c00417{font-size:68.250000px;}
.fsa_c00417{font-size:70.350000px;}
.fs0_c00417{font-size:117.600000px;}
.y0_c00417{bottom:0.000000px;}
.y21_c00417{bottom:21.372000px;}
.y20_c00417{bottom:38.487000px;}
.y1f_c00417{bottom:55.555500px;}
.y1e_c00417{bottom:71.844000px;}
.y1d_c00417{bottom:89.442000px;}
.y1c_c00417{bottom:104.907000px;}
.y1b_c00417{bottom:123.006000px;}
.y1a_c00417{bottom:139.860000px;}
.y19_c00417{bottom:157.287000px;}
.y18_c00417{bottom:174.202500px;}
.y17_c00417{bottom:191.629500px;}
.y16_c00417{bottom:209.019000px;}
.y15_c00417{bottom:226.183500px;}
.y14_c00417{bottom:243.507000px;}
.y13_c00417{bottom:260.106000px;}
.y12_c00417{bottom:276.750000px;}
.y11_c00417{bottom:293.784000px;}
.y10_c00417{bottom:310.648500px;}
.yf_c00417{bottom:328.087500px;}
.ye_c00417{bottom:345.426000px;}
.yd_c00417{bottom:363.463500px;}
.yc_c00417{bottom:379.512000px;}
.yb_c00417{bottom:396.253500px;}
.ya_c00417{bottom:414.108000px;}
.y9_c00417{bottom:430.843500px;}
.y8_c00417{bottom:447.670500px;}
.y7_c00417{bottom:464.685000px;}
.y6_c00417{bottom:481.261500px;}
.y5_c00417{bottom:499.027500px;}
.y4_c00417{bottom:515.430000px;}
.y3_c00417{bottom:532.561500px;}
.y2_c00417{bottom:549.450000px;}
.y1_c00417{bottom:563.640000px;}
.h8_c00417{height:55.650000px;}
.h9_c00417{height:57.750000px;}
.ha_c00417{height:58.800000px;}
.hc_c00417{height:59.850000px;}
.h5_c00417{height:60.900000px;}
.hd_c00417{height:61.950000px;}
.h4_c00417{height:63.000000px;}
.h7_c00417{height:64.050000px;}
.h2_c00417{height:65.100000px;}
.h6_c00417{height:66.150000px;}
.he_c00417{height:67.200000px;}
.h3_c00417{height:68.250000px;}
.hb_c00417{height:70.350000px;}
.h1_c00417{height:117.600000px;}
.h0_c00417{height:608.250000px;}
.w0_c00417{width:359.100000px;}
.w1_c00417{width:359.250000px;}
.x0_c00417{left:0.000000px;}
.x78_c00417{left:42.930000px;}
.x5e_c00417{left:44.280000px;}
.x4e_c00417{left:45.360000px;}
.x4b_c00417{left:46.440000px;}
.x45_c00417{left:47.520000px;}
.x1f_c00417{left:48.600000px;}
.x11_c00417{left:50.490000px;}
.xa_c00417{left:51.570000px;}
.x71_c00417{left:65.880000px;}
.x61_c00417{left:67.770000px;}
.x3_c00417{left:68.850000px;}
.x19_c00417{left:71.280000px;}
.x5a_c00417{left:74.520000px;}
.x53_c00417{left:77.220000px;}
.x41_c00417{left:78.300000px;}
.x2d_c00417{left:79.380000px;}
.xb_c00417{left:81.270000px;}
.x6b_c00417{left:83.970000px;}
.x62_c00417{left:85.320000px;}
.x12_c00417{left:89.100000px;}
.x46_c00417{left:91.530000px;}
.x5b_c00417{left:92.880000px;}
.x29_c00417{left:96.390000px;}
.x3b_c00417{left:97.740000px;}
.x31_c00417{left:99.360000px;}
.x67_c00417{left:100.710000px;}
.x13_c00417{left:105.570000px;}
.x7a_c00417{left:106.920000px;}
.x42_c00417{left:108.540000px;}
.x4_c00417{left:110.970000px;}
.x7d_c00417{left:112.050000px;}
.x6e_c00417{left:113.400000px;}
.xc_c00417{left:114.480000px;}
.x68_c00417{left:116.910000px;}
.x20_c00417{left:118.260000px;}
.x1_c00417{left:119.340000px;}
.x4f_c00417{left:121.770000px;}
.x5_c00417{left:125.280000px;}
.x56_c00417{left:126.900000px;}
.x14_c00417{left:130.140000px;}
.x36_c00417{left:133.110000px;}
.x25_c00417{left:138.510000px;}
.x50_c00417{left:141.480000px;}
.x47_c00417{left:143.100000px;}
.x37_c00417{left:144.450000px;}
.x21_c00417{left:145.530000px;}
.x32_c00417{left:148.230000px;}
.x72_c00417{left:149.850000px;}
.x2a_c00417{left:157.140000px;}
.x3c_c00417{left:158.760000px;}
.x6f_c00417{left:159.840000px;}
.x7b_c00417{left:162.000000px;}
.x43_c00417{left:163.890000px;}
.xd_c00417{left:166.860000px;}
.x5f_c00417{left:171.180000px;}
.x38_c00417{left:173.070000px;}
.x64_c00417{left:174.690000px;}
.x2b_c00417{left:179.550000px;}
.x6_c00417{left:180.900000px;}
.x1a_c00417{left:182.790000px;}
.x26_c00417{left:183.870000px;}
.x15_c00417{left:185.760000px;}
.x2_c00417{left:188.460000px;}
.x60_c00417{left:190.350000px;}
.x22_c00417{left:192.510000px;}
.x33_c00417{left:193.860000px;}
.x69_c00417{left:196.560000px;}
.x3d_c00417{left:198.450000px;}
.x7_c00417{left:202.770000px;}
.x7c_c00417{left:204.120000px;}
.x2e_c00417{left:205.740000px;}
.x73_c00417{left:207.090000px;}
.x57_c00417{left:208.440000px;}
.x6c_c00417{left:209.520000px;}
.x51_c00417{left:211.140000px;}
.x74_c00417{left:213.300000px;}
.x23_c00417{left:215.190000px;}
.x77_c00417{left:218.160000px;}
.x2f_c00417{left:221.130000px;}
.x44_c00417{left:223.560000px;}
.x1b_c00417{left:227.340000px;}
.x58_c00417{left:228.420000px;}
.x16_c00417{left:229.500000px;}
.x65_c00417{left:230.850000px;}
.x48_c00417{left:232.470000px;}
.x3e_c00417{left:235.980000px;}
.xe_c00417{left:238.140000px;}
.x17_c00417{left:240.030000px;}
.x2c_c00417{left:241.920000px;}
.x7e_c00417{left:243.270000px;}
.x70_c00417{left:247.320000px;}
.x4c_c00417{left:249.750000px;}
.x1c_c00417{left:251.640000px;}
.x5c_c00417{left:253.800000px;}
.x49_c00417{left:255.960000px;}
.x6d_c00417{left:261.360000px;}
.x34_c00417{left:264.330000px;}
.x75_c00417{left:266.490000px;}
.x27_c00417{left:269.190000px;}
.x3f_c00417{left:271.620000px;}
.x4a_c00417{left:273.780000px;}
.x8_c00417{left:276.210000px;}
.x79_c00417{left:278.640000px;}
.x54_c00417{left:281.340000px;}
.x52_c00417{left:285.390000px;}
.x6a_c00417{left:287.280000px;}
.xf_c00417{left:288.900000px;}
.x39_c00417{left:290.520000px;}
.x30_c00417{left:293.490000px;}
.x5d_c00417{left:294.840000px;}
.x76_c00417{left:296.190000px;}
.x59_c00417{left:298.350000px;}
.x35_c00417{left:301.590000px;}
.x4d_c00417{left:303.210000px;}
.x66_c00417{left:307.530000px;}
.x10_c00417{left:310.500000px;}
.x24_c00417{left:312.120000px;}
.x9_c00417{left:314.010000px;}
.x1d_c00417{left:322.650000px;}
.x3a_c00417{left:324.000000px;}
.x18_c00417{left:328.590000px;}
.x40_c00417{left:331.020000px;}
.x28_c00417{left:332.910000px;}
.x55_c00417{left:335.340000px;}
.x1e_c00417{left:337.770000px;}
.x63_c00417{left:339.390000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
.fs7_c00417{font-size:49.466667pt;}
.fs8_c00417{font-size:51.333333pt;}
.fs9_c00417{font-size:52.266667pt;}
.fsb_c00417{font-size:53.200000pt;}
.fs4_c00417{font-size:54.133333pt;}
.fsc_c00417{font-size:55.066667pt;}
.fs3_c00417{font-size:56.000000pt;}
.fs6_c00417{font-size:56.933333pt;}
.fs1_c00417{font-size:57.866667pt;}
.fs5_c00417{font-size:58.800000pt;}
.fsd_c00417{font-size:59.733333pt;}
.fs2_c00417{font-size:60.666667pt;}
.fsa_c00417{font-size:62.533333pt;}
.fs0_c00417{font-size:104.533333pt;}
.y0_c00417{bottom:0.000000pt;}
.y21_c00417{bottom:18.997333pt;}
.y20_c00417{bottom:34.210667pt;}
.y1f_c00417{bottom:49.382667pt;}
.y1e_c00417{bottom:63.861333pt;}
.y1d_c00417{bottom:79.504000pt;}
.y1c_c00417{bottom:93.250667pt;}
.y1b_c00417{bottom:109.338667pt;}
.y1a_c00417{bottom:124.320000pt;}
.y19_c00417{bottom:139.810667pt;}
.y18_c00417{bottom:154.846667pt;}
.y17_c00417{bottom:170.337333pt;}
.y16_c00417{bottom:185.794667pt;}
.y15_c00417{bottom:201.052000pt;}
.y14_c00417{bottom:216.450667pt;}
.y13_c00417{bottom:231.205333pt;}
.y12_c00417{bottom:246.000000pt;}
.y11_c00417{bottom:261.141333pt;}
.y10_c00417{bottom:276.132000pt;}
.yf_c00417{bottom:291.633333pt;}
.ye_c00417{bottom:307.045333pt;}
.yd_c00417{bottom:323.078667pt;}
.yc_c00417{bottom:337.344000pt;}
.yb_c00417{bottom:352.225333pt;}
.ya_c00417{bottom:368.096000pt;}
.y9_c00417{bottom:382.972000pt;}
.y8_c00417{bottom:397.929333pt;}
.y7_c00417{bottom:413.053333pt;}
.y6_c00417{bottom:427.788000pt;}
.y5_c00417{bottom:443.580000pt;}
.y4_c00417{bottom:458.160000pt;}
.y3_c00417{bottom:473.388000pt;}
.y2_c00417{bottom:488.400000pt;}
.y1_c00417{bottom:501.013333pt;}
.h8_c00417{height:49.466667pt;}
.h9_c00417{height:51.333333pt;}
.ha_c00417{height:52.266667pt;}
.hc_c00417{height:53.200000pt;}
.h5_c00417{height:54.133333pt;}
.hd_c00417{height:55.066667pt;}
.h4_c00417{height:56.000000pt;}
.h7_c00417{height:56.933333pt;}
.h2_c00417{height:57.866667pt;}
.h6_c00417{height:58.800000pt;}
.he_c00417{height:59.733333pt;}
.h3_c00417{height:60.666667pt;}
.hb_c00417{height:62.533333pt;}
.h1_c00417{height:104.533333pt;}
.h0_c00417{height:540.666667pt;}
.w0_c00417{width:319.200000pt;}
.w1_c00417{width:319.333333pt;}
.x0_c00417{left:0.000000pt;}
.x78_c00417{left:38.160000pt;}
.x5e_c00417{left:39.360000pt;}
.x4e_c00417{left:40.320000pt;}
.x4b_c00417{left:41.280000pt;}
.x45_c00417{left:42.240000pt;}
.x1f_c00417{left:43.200000pt;}
.x11_c00417{left:44.880000pt;}
.xa_c00417{left:45.840000pt;}
.x71_c00417{left:58.560000pt;}
.x61_c00417{left:60.240000pt;}
.x3_c00417{left:61.200000pt;}
.x19_c00417{left:63.360000pt;}
.x5a_c00417{left:66.240000pt;}
.x53_c00417{left:68.640000pt;}
.x41_c00417{left:69.600000pt;}
.x2d_c00417{left:70.560000pt;}
.xb_c00417{left:72.240000pt;}
.x6b_c00417{left:74.640000pt;}
.x62_c00417{left:75.840000pt;}
.x12_c00417{left:79.200000pt;}
.x46_c00417{left:81.360000pt;}
.x5b_c00417{left:82.560000pt;}
.x29_c00417{left:85.680000pt;}
.x3b_c00417{left:86.880000pt;}
.x31_c00417{left:88.320000pt;}
.x67_c00417{left:89.520000pt;}
.x13_c00417{left:93.840000pt;}
.x7a_c00417{left:95.040000pt;}
.x42_c00417{left:96.480000pt;}
.x4_c00417{left:98.640000pt;}
.x7d_c00417{left:99.600000pt;}
.x6e_c00417{left:100.800000pt;}
.xc_c00417{left:101.760000pt;}
.x68_c00417{left:103.920000pt;}
.x20_c00417{left:105.120000pt;}
.x1_c00417{left:106.080000pt;}
.x4f_c00417{left:108.240000pt;}
.x5_c00417{left:111.360000pt;}
.x56_c00417{left:112.800000pt;}
.x14_c00417{left:115.680000pt;}
.x36_c00417{left:118.320000pt;}
.x25_c00417{left:123.120000pt;}
.x50_c00417{left:125.760000pt;}
.x47_c00417{left:127.200000pt;}
.x37_c00417{left:128.400000pt;}
.x21_c00417{left:129.360000pt;}
.x32_c00417{left:131.760000pt;}
.x72_c00417{left:133.200000pt;}
.x2a_c00417{left:139.680000pt;}
.x3c_c00417{left:141.120000pt;}
.x6f_c00417{left:142.080000pt;}
.x7b_c00417{left:144.000000pt;}
.x43_c00417{left:145.680000pt;}
.xd_c00417{left:148.320000pt;}
.x5f_c00417{left:152.160000pt;}
.x38_c00417{left:153.840000pt;}
.x64_c00417{left:155.280000pt;}
.x2b_c00417{left:159.600000pt;}
.x6_c00417{left:160.800000pt;}
.x1a_c00417{left:162.480000pt;}
.x26_c00417{left:163.440000pt;}
.x15_c00417{left:165.120000pt;}
.x2_c00417{left:167.520000pt;}
.x60_c00417{left:169.200000pt;}
.x22_c00417{left:171.120000pt;}
.x33_c00417{left:172.320000pt;}
.x69_c00417{left:174.720000pt;}
.x3d_c00417{left:176.400000pt;}
.x7_c00417{left:180.240000pt;}
.x7c_c00417{left:181.440000pt;}
.x2e_c00417{left:182.880000pt;}
.x73_c00417{left:184.080000pt;}
.x57_c00417{left:185.280000pt;}
.x6c_c00417{left:186.240000pt;}
.x51_c00417{left:187.680000pt;}
.x74_c00417{left:189.600000pt;}
.x23_c00417{left:191.280000pt;}
.x77_c00417{left:193.920000pt;}
.x2f_c00417{left:196.560000pt;}
.x44_c00417{left:198.720000pt;}
.x1b_c00417{left:202.080000pt;}
.x58_c00417{left:203.040000pt;}
.x16_c00417{left:204.000000pt;}
.x65_c00417{left:205.200000pt;}
.x48_c00417{left:206.640000pt;}
.x3e_c00417{left:209.760000pt;}
.xe_c00417{left:211.680000pt;}
.x17_c00417{left:213.360000pt;}
.x2c_c00417{left:215.040000pt;}
.x7e_c00417{left:216.240000pt;}
.x70_c00417{left:219.840000pt;}
.x4c_c00417{left:222.000000pt;}
.x1c_c00417{left:223.680000pt;}
.x5c_c00417{left:225.600000pt;}
.x49_c00417{left:227.520000pt;}
.x6d_c00417{left:232.320000pt;}
.x34_c00417{left:234.960000pt;}
.x75_c00417{left:236.880000pt;}
.x27_c00417{left:239.280000pt;}
.x3f_c00417{left:241.440000pt;}
.x4a_c00417{left:243.360000pt;}
.x8_c00417{left:245.520000pt;}
.x79_c00417{left:247.680000pt;}
.x54_c00417{left:250.080000pt;}
.x52_c00417{left:253.680000pt;}
.x6a_c00417{left:255.360000pt;}
.xf_c00417{left:256.800000pt;}
.x39_c00417{left:258.240000pt;}
.x30_c00417{left:260.880000pt;}
.x5d_c00417{left:262.080000pt;}
.x76_c00417{left:263.280000pt;}
.x59_c00417{left:265.200000pt;}
.x35_c00417{left:268.080000pt;}
.x4d_c00417{left:269.520000pt;}
.x66_c00417{left:273.360000pt;}
.x10_c00417{left:276.000000pt;}
.x24_c00417{left:277.440000pt;}
.x9_c00417{left:279.120000pt;}
.x1d_c00417{left:286.800000pt;}
.x3a_c00417{left:288.000000pt;}
.x18_c00417{left:292.080000pt;}
.x40_c00417{left:294.240000pt;}
.x28_c00417{left:295.920000pt;}
.x55_c00417{left:298.080000pt;}
.x1e_c00417{left:300.240000pt;}
.x63_c00417{left:301.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00418 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00418.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00418{transform:matrix(0.009970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009970,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013115,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.055900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055900,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.099990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099990,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.107310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107310,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.128645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128645,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(0.138735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138735,0.000000,0.000000,0.250000,0,0);}
.ma9_c00418{transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m97_c00418{transform:matrix(0.143965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143965,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.mad_c00418{transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150820,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);}
.mca_c00418{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.mbb_c00418{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.158110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158110,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159355,0.000000,0.000000,0.250000,0,0);}
.me3_c00418{transform:matrix(0.159473,0.003189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159473,0.003189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159473,0.003189,-0.004999,0.249950,0,0);}
.m1a_c00418{transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.md5_c00418{transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);}
.ma6_c00418{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m64_c00418{transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162380,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.mbf_c00418{transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mb6_c00418{transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167490,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.mb7_c00418{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170310,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.mce_c00418{transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);}
.me8_c00418{transform:matrix(0.172141,0.003443,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172141,0.003443,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172141,0.003443,-0.004999,0.249950,0,0);}
.ma5_c00418{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174310,0.000000,0.000000,0.250000,0,0);}
.m89_c00418{transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00418{transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176470,0.000000,0.000000,0.250000,0,0);}
.md7_c00418{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.mb2_c00418{transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180030,0.000000,0.000000,0.250000,0,0);}
.m9e_c00418{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.mb3_c00418{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.md6_c00418{transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182915,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.mb5_c00418{transform:matrix(0.183115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183115,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.ma8_c00418{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.mdc_c00418{transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183495,0.000000,0.000000,0.250000,0,0);}
.me2_c00418{transform:matrix(0.183498,0.003670,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183498,0.003670,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183498,0.003670,-0.004999,0.249950,0,0);}
.m5_c00418{transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);}
.mba_c00418{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);}
.mbd_c00418{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);}
.mc3_c00418{transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.m8d_c00418{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.maf_c00418{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.md2_c00418{transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.mae_c00418{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.mb1_c00418{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00418{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00418{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.me1_c00418{transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188887,0.003778,-0.004999,0.249950,0,0);}
.m3c_c00418{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.mcc_c00418{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.mb0_c00418{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00418{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190805,0.000000,0.000000,0.250000,0,0);}
.mcd_c00418{transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);}
.m8c_c00418{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191645,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.mc7_c00418{transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.mcf_c00418{transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196640,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197090,0.000000,0.000000,0.250000,0,0);}
.mb4_c00418{transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197865,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m9d_c00418{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.mc4_c00418{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);}
.md8_c00418{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200205,0.000000,0.000000,0.250000,0,0);}
.me5_c00418{transform:matrix(0.200730,0.004015,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200730,0.004015,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200730,0.004015,-0.004999,0.249950,0,0);}
.ma0_c00418{transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);}
.md0_c00418{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201005,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.mc2_c00418{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.mbc_c00418{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);}
.mc8_c00418{transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205255,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.me6_c00418{transform:matrix(0.205789,0.004116,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205789,0.004116,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205789,0.004116,-0.004999,0.249950,0,0);}
.m86_c00418{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mcb_c00418{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.md4_c00418{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00418{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207685,0.000000,0.000000,0.250000,0,0);}
.mdd_c00418{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mc6_c00418{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mda_c00418{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208960,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.me7_c00418{transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);}
.m6_c00418{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m90_c00418{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.me4_c00418{transform:matrix(0.213322,0.004266,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213322,0.004266,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213322,0.004266,-0.004999,0.249950,0,0);}
.mc5_c00418{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.md3_c00418{transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216555,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m99_c00418{transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223630,0.000000,0.000000,0.250000,0,0);}
.mab_c00418{transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224105,0.000000,0.000000,0.250000,0,0);}
.mbe_c00418{transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224305,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);}
.m88_c00418{transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.me0_c00418{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.mdf_c00418{transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);}
.m59_c00418{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.mdb_c00418{transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00418{transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238895,0.000000,0.000000,0.250000,0,0);}
.mde_c00418{transform:matrix(0.239730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239730,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);}
.maa_c00418{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.mac_c00418{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.mc1_c00418{transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.265235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00418{transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);}
.md1_c00418{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.297420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297420,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);}
.m92_c00418{transform:matrix(0.387365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387365,0.000000,0.000000,0.250000,0,0);}
.me9_c00418{transform:matrix(0.415422,0.008308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.415422,0.008308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.415422,0.008308,-0.004999,0.249950,0,0);}
.mb8_c00418{transform:matrix(0.480500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480500,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510235,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.585560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585560,0.000000,0.000000,0.250000,0,0);}
.m91_c00418{transform:matrix(0.748400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748400,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
.fc0_c00418{color:transparent;}
.fsd_c00418{font-size:22.050000px;}
.fsa_c00418{font-size:24.150000px;}
.fs5_c00418{font-size:57.750000px;}
.fs8_c00418{font-size:58.800000px;}
.fs7_c00418{font-size:59.850000px;}
.fs6_c00418{font-size:60.900000px;}
.fs4_c00418{font-size:61.950000px;}
.fs10_c00418{font-size:61.962389px;}
.fs9_c00418{font-size:63.000000px;}
.fs1_c00418{font-size:64.050000px;}
.fs3_c00418{font-size:65.100000px;}
.fse_c00418{font-size:66.150000px;}
.fsc_c00418{font-size:67.200000px;}
.fsf_c00418{font-size:67.213439px;}
.fs2_c00418{font-size:69.300000px;}
.fsb_c00418{font-size:70.350000px;}
.fs0_c00418{font-size:126.000000px;}
.y0_c00418{bottom:0.000000px;}
.y62_c00418{bottom:26.897970px;}
.y61_c00418{bottom:31.050720px;}
.y60_c00418{bottom:43.846320px;}
.y5f_c00418{bottom:44.834010px;}
.y5e_c00418{bottom:45.249180px;}
.y5d_c00418{bottom:46.188480px;}
.y5c_c00418{bottom:46.593720px;}
.y5b_c00418{bottom:47.618430px;}
.y5a_c00418{bottom:48.604500px;}
.y59_c00418{bottom:61.743000px;}
.y58_c00418{bottom:76.210500px;}
.y57_c00418{bottom:77.076000px;}
.y56_c00418{bottom:77.347500px;}
.y55_c00418{bottom:78.345000px;}
.y54_c00418{bottom:79.240500px;}
.y53_c00418{bottom:80.193000px;}
.y52_c00418{bottom:95.484000px;}
.y51_c00418{bottom:112.957500px;}
.y50_c00418{bottom:128.248500px;}
.y4f_c00418{bottom:145.468500px;}
.y4e_c00418{bottom:163.080000px;}
.y4c_c00418{bottom:179.097000px;}
.y4b_c00418{bottom:195.006000px;}
.y4a_c00418{bottom:213.570000px;}
.y49_c00418{bottom:222.843000px;}
.y48_c00418{bottom:231.061500px;}
.y47_c00418{bottom:248.061000px;}
.y4d_c00418{bottom:250.560000px;}
.y46_c00418{bottom:265.855500px;}
.y3c_c00418{bottom:281.877000px;}
.y3d_c00418{bottom:282.126000px;}
.y3e_c00418{bottom:282.381000px;}
.y3f_c00418{bottom:283.051500px;}
.y40_c00418{bottom:283.275000px;}
.y41_c00418{bottom:283.657500px;}
.y42_c00418{bottom:283.851000px;}
.y43_c00418{bottom:284.251500px;}
.y44_c00418{bottom:284.566500px;}
.y45_c00418{bottom:284.911500px;}
.y3b_c00418{bottom:300.027000px;}
.y3a_c00418{bottom:317.125500px;}
.y39_c00418{bottom:333.682500px;}
.y33_c00418{bottom:348.019500px;}
.y34_c00418{bottom:349.599000px;}
.y35_c00418{bottom:350.173500px;}
.y36_c00418{bottom:350.907000px;}
.y37_c00418{bottom:351.663000px;}
.y38_c00418{bottom:351.814500px;}
.y32_c00418{bottom:364.642500px;}
.y2b_c00418{bottom:380.427000px;}
.y2c_c00418{bottom:380.685000px;}
.y2d_c00418{bottom:381.595500px;}
.y2e_c00418{bottom:382.620000px;}
.y2f_c00418{bottom:382.896000px;}
.y30_c00418{bottom:383.530500px;}
.y31_c00418{bottom:383.958000px;}
.y2a_c00418{bottom:399.318000px;}
.y29_c00418{bottom:416.026500px;}
.y28_c00418{bottom:432.646500px;}
.y22_c00418{bottom:448.195500px;}
.y23_c00418{bottom:448.522500px;}
.y24_c00418{bottom:449.188500px;}
.y25_c00418{bottom:449.752500px;}
.y26_c00418{bottom:450.130500px;}
.y27_c00418{bottom:450.979500px;}
.y1c_c00418{bottom:464.395500px;}
.y1d_c00418{bottom:465.504000px;}
.y1e_c00418{bottom:466.153500px;}
.y1f_c00418{bottom:466.459500px;}
.y20_c00418{bottom:467.407500px;}
.y21_c00418{bottom:467.755500px;}
.y1b_c00418{bottom:483.967500px;}
.y14_c00418{bottom:497.608500px;}
.y15_c00418{bottom:497.940000px;}
.y16_c00418{bottom:498.960000px;}
.y17_c00418{bottom:499.857000px;}
.y18_c00418{bottom:500.208000px;}
.y19_c00418{bottom:501.378000px;}
.y1a_c00418{bottom:501.718500px;}
.y13_c00418{bottom:516.552000px;}
.yb_c00418{bottom:531.360000px;}
.yc_c00418{bottom:531.889500px;}
.yd_c00418{bottom:532.642500px;}
.ye_c00418{bottom:532.959000px;}
.yf_c00418{bottom:533.914500px;}
.y10_c00418{bottom:534.441000px;}
.y11_c00418{bottom:535.218000px;}
.y12_c00418{bottom:535.578000px;}
.y2_c00418{bottom:548.914500px;}
.y3_c00418{bottom:549.655500px;}
.y4_c00418{bottom:550.174500px;}
.y5_c00418{bottom:550.651500px;}
.y6_c00418{bottom:551.985000px;}
.y7_c00418{bottom:552.222000px;}
.y8_c00418{bottom:552.678000px;}
.y9_c00418{bottom:553.518000px;}
.ya_c00418{bottom:554.235000px;}
.y1_c00418{bottom:566.061000px;}
.he_c00418{height:22.050000px;}
.hb_c00418{height:24.150000px;}
.h6_c00418{height:57.750000px;}
.h9_c00418{height:58.800000px;}
.h8_c00418{height:59.850000px;}
.h7_c00418{height:60.900000px;}
.h5_c00418{height:61.950000px;}
.h11_c00418{height:61.962389px;}
.ha_c00418{height:63.000000px;}
.h2_c00418{height:64.050000px;}
.h4_c00418{height:65.100000px;}
.hf_c00418{height:66.150000px;}
.hd_c00418{height:67.200000px;}
.h10_c00418{height:67.213439px;}
.h3_c00418{height:69.300000px;}
.hc_c00418{height:70.350000px;}
.h1_c00418{height:126.000000px;}
.h0_c00418{height:608.250000px;}
.w0_c00418{width:359.100000px;}
.w1_c00418{width:359.250000px;}
.x0_c00418{left:0.000000px;}
.x3_c00418{left:11.601000px;}
.x1a_c00418{left:17.781000px;}
.xc_c00418{left:19.909500px;}
.x24_c00418{left:20.976000px;}
.x3f_c00418{left:23.122500px;}
.x5d_c00418{left:25.110000px;}
.x5a_c00418{left:27.000000px;}
.x7a_c00418{left:31.150500px;}
.x70_c00418{left:32.400000px;}
.x7f_c00418{left:34.046550px;}
.x13_c00418{left:38.881500px;}
.x39_c00418{left:40.126500px;}
.x4e_c00418{left:42.526500px;}
.xd_c00418{left:49.363500px;}
.x4_c00418{left:50.629500px;}
.x74_c00418{left:52.380000px;}
.x63_c00418{left:53.460000px;}
.x5b_c00418{left:57.780000px;}
.x2c_c00418{left:61.294500px;}
.x1e_c00418{left:62.913000px;}
.x4f_c00418{left:65.722500px;}
.x60_c00418{left:73.980000px;}
.x5_c00418{left:77.982000px;}
.x64_c00418{left:80.730000px;}
.x31_c00418{left:82.894500px;}
.x35_c00418{left:86.404500px;}
.x7c_c00418{left:89.100000px;}
.xe_c00418{left:91.200000px;}
.x75_c00418{left:97.740000px;}
.x6e_c00418{left:98.820000px;}
.x6b_c00418{left:100.440000px;}
.x6_c00418{left:103.093500px;}
.x3a_c00418{left:105.202500px;}
.x25_c00418{left:106.275000px;}
.x71_c00418{left:107.730000px;}
.xf_c00418{left:108.774000px;}
.x14_c00418{left:110.701500px;}
.x1f_c00418{left:112.593000px;}
.x56_c00418{left:115.293000px;}
.x36_c00418{left:116.374500px;}
.x15_c00418{left:118.531500px;}
.x32_c00418{left:121.774500px;}
.x45_c00418{left:125.553000px;}
.x50_c00418{left:126.738000px;}
.x68_c00418{left:128.250000px;}
.x2d_c00418{left:130.954500px;}
.x76_c00418{left:133.920000px;}
.x40_c00418{left:135.960000px;}
.x16_c00418{left:140.131500px;}
.x20_c00418{left:145.533000px;}
.x1_c00418{left:147.960000px;}
.x69_c00418{left:151.470000px;}
.x2e_c00418{left:153.094500px;}
.x72_c00418{left:154.170000px;}
.x26_c00418{left:156.226500px;}
.x1b_c00418{left:158.359500px;}
.x29_c00418{left:160.776000px;}
.x10_c00418{left:161.889000px;}
.x7b_c00418{left:163.207500px;}
.x17_c00418{left:165.241500px;}
.x5e_c00418{left:168.210000px;}
.x4b_c00418{left:171.993000px;}
.x7_c00418{left:173.293500px;}
.x7d_c00418{left:174.420000px;}
.x41_c00418{left:176.973000px;}
.x2f_c00418{left:178.744500px;}
.x1c_c00418{left:180.306000px;}
.x51_c00418{left:181.843500px;}
.x46_c00418{left:184.413000px;}
.x8_c00418{left:185.730000px;}
.x65_c00418{left:186.840000px;}
.x6f_c00418{left:189.000000px;}
.x33_c00418{left:190.084500px;}
.x11_c00418{left:191.118000px;}
.x61_c00418{left:192.240000px;}
.x2a_c00418{left:195.076500px;}
.x3b_c00418{left:198.070500px;}
.x52_c00418{left:199.398000px;}
.x77_c00418{left:202.500000px;}
.x21_c00418{left:203.583000px;}
.x57_c00418{left:206.820000px;}
.x9_c00418{left:209.757000px;}
.x7e_c00418{left:211.140000px;}
.x66_c00418{left:213.030000px;}
.x6a_c00418{left:215.460000px;}
.x37_c00418{left:218.164500px;}
.x80_c00418{left:222.776490px;}
.x73_c00418{left:226.530000px;}
.x49_c00418{left:227.613000px;}
.x42_c00418{left:229.384500px;}
.x4c_c00418{left:230.583000px;}
.x18_c00418{left:232.741500px;}
.x12_c00418{left:234.318000px;}
.x53_c00418{left:235.840500px;}
.x58_c00418{left:238.680000px;}
.x30_c00418{left:241.924500px;}
.x3c_c00418{left:243.384000px;}
.x4a_c00418{left:245.433000px;}
.x3d_c00418{left:249.753000px;}
.x27_c00418{left:252.613500px;}
.xa_c00418{left:253.995000px;}
.x78_c00418{left:257.040000px;}
.x4d_c00418{left:258.393000px;}
.x62_c00418{left:260.280000px;}
.x54_c00418{left:264.457500px;}
.x38_c00418{left:266.494500px;}
.x47_c00418{left:268.923000px;}
.x2_c00418{left:270.540000px;}
.x2b_c00418{left:272.302500px;}
.x1d_c00418{left:274.743000px;}
.x22_c00418{left:276.213000px;}
.x28_c00418{left:279.367500px;}
.x34_c00418{left:281.074500px;}
.x43_c00418{left:283.416000px;}
.x3e_c00418{left:284.853000px;}
.x6c_c00418{left:289.440000px;}
.xb_c00418{left:291.756000px;}
.x44_c00418{left:294.199500px;}
.x55_c00418{left:295.762500px;}
.x23_c00418{left:297.543000px;}
.x59_c00418{left:299.970000px;}
.x19_c00418{left:301.321500px;}
.x48_c00418{left:306.723000px;}
.x6d_c00418{left:307.800000px;}
.x79_c00418{left:315.360000px;}
.x5f_c00418{left:318.870000px;}
.x5c_c00418{left:321.840000px;}
.x67_c00418{left:329.400000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
.fsd_c00418{font-size:19.600000pt;}
.fsa_c00418{font-size:21.466667pt;}
.fs5_c00418{font-size:51.333333pt;}
.fs8_c00418{font-size:52.266667pt;}
.fs7_c00418{font-size:53.200000pt;}
.fs6_c00418{font-size:54.133333pt;}
.fs4_c00418{font-size:55.066667pt;}
.fs10_c00418{font-size:55.077679pt;}
.fs9_c00418{font-size:56.000000pt;}
.fs1_c00418{font-size:56.933333pt;}
.fs3_c00418{font-size:57.866667pt;}
.fse_c00418{font-size:58.800000pt;}
.fsc_c00418{font-size:59.733333pt;}
.fsf_c00418{font-size:59.745279pt;}
.fs2_c00418{font-size:61.600000pt;}
.fsb_c00418{font-size:62.533333pt;}
.fs0_c00418{font-size:112.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y62_c00418{bottom:23.909307pt;}
.y61_c00418{bottom:27.600640pt;}
.y60_c00418{bottom:38.974507pt;}
.y5f_c00418{bottom:39.852453pt;}
.y5e_c00418{bottom:40.221493pt;}
.y5d_c00418{bottom:41.056427pt;}
.y5c_c00418{bottom:41.416640pt;}
.y5b_c00418{bottom:42.327493pt;}
.y5a_c00418{bottom:43.204000pt;}
.y59_c00418{bottom:54.882667pt;}
.y58_c00418{bottom:67.742667pt;}
.y57_c00418{bottom:68.512000pt;}
.y56_c00418{bottom:68.753333pt;}
.y55_c00418{bottom:69.640000pt;}
.y54_c00418{bottom:70.436000pt;}
.y53_c00418{bottom:71.282667pt;}
.y52_c00418{bottom:84.874667pt;}
.y51_c00418{bottom:100.406667pt;}
.y50_c00418{bottom:113.998667pt;}
.y4f_c00418{bottom:129.305333pt;}
.y4e_c00418{bottom:144.960000pt;}
.y4c_c00418{bottom:159.197333pt;}
.y4b_c00418{bottom:173.338667pt;}
.y4a_c00418{bottom:189.840000pt;}
.y49_c00418{bottom:198.082667pt;}
.y48_c00418{bottom:205.388000pt;}
.y47_c00418{bottom:220.498667pt;}
.y4d_c00418{bottom:222.720000pt;}
.y46_c00418{bottom:236.316000pt;}
.y3c_c00418{bottom:250.557333pt;}
.y3d_c00418{bottom:250.778667pt;}
.y3e_c00418{bottom:251.005333pt;}
.y3f_c00418{bottom:251.601333pt;}
.y40_c00418{bottom:251.800000pt;}
.y41_c00418{bottom:252.140000pt;}
.y42_c00418{bottom:252.312000pt;}
.y43_c00418{bottom:252.668000pt;}
.y44_c00418{bottom:252.948000pt;}
.y45_c00418{bottom:253.254667pt;}
.y3b_c00418{bottom:266.690667pt;}
.y3a_c00418{bottom:281.889333pt;}
.y39_c00418{bottom:296.606667pt;}
.y33_c00418{bottom:309.350667pt;}
.y34_c00418{bottom:310.754667pt;}
.y35_c00418{bottom:311.265333pt;}
.y36_c00418{bottom:311.917333pt;}
.y37_c00418{bottom:312.589333pt;}
.y38_c00418{bottom:312.724000pt;}
.y32_c00418{bottom:324.126667pt;}
.y2b_c00418{bottom:338.157333pt;}
.y2c_c00418{bottom:338.386667pt;}
.y2d_c00418{bottom:339.196000pt;}
.y2e_c00418{bottom:340.106667pt;}
.y2f_c00418{bottom:340.352000pt;}
.y30_c00418{bottom:340.916000pt;}
.y31_c00418{bottom:341.296000pt;}
.y2a_c00418{bottom:354.949333pt;}
.y29_c00418{bottom:369.801333pt;}
.y28_c00418{bottom:384.574667pt;}
.y22_c00418{bottom:398.396000pt;}
.y23_c00418{bottom:398.686667pt;}
.y24_c00418{bottom:399.278667pt;}
.y25_c00418{bottom:399.780000pt;}
.y26_c00418{bottom:400.116000pt;}
.y27_c00418{bottom:400.870667pt;}
.y1c_c00418{bottom:412.796000pt;}
.y1d_c00418{bottom:413.781333pt;}
.y1e_c00418{bottom:414.358667pt;}
.y1f_c00418{bottom:414.630667pt;}
.y20_c00418{bottom:415.473333pt;}
.y21_c00418{bottom:415.782667pt;}
.y1b_c00418{bottom:430.193333pt;}
.y14_c00418{bottom:442.318667pt;}
.y15_c00418{bottom:442.613333pt;}
.y16_c00418{bottom:443.520000pt;}
.y17_c00418{bottom:444.317333pt;}
.y18_c00418{bottom:444.629333pt;}
.y19_c00418{bottom:445.669333pt;}
.y1a_c00418{bottom:445.972000pt;}
.y13_c00418{bottom:459.157333pt;}
.yb_c00418{bottom:472.320000pt;}
.yc_c00418{bottom:472.790667pt;}
.yd_c00418{bottom:473.460000pt;}
.ye_c00418{bottom:473.741333pt;}
.yf_c00418{bottom:474.590667pt;}
.y10_c00418{bottom:475.058667pt;}
.y11_c00418{bottom:475.749333pt;}
.y12_c00418{bottom:476.069333pt;}
.y2_c00418{bottom:487.924000pt;}
.y3_c00418{bottom:488.582667pt;}
.y4_c00418{bottom:489.044000pt;}
.y5_c00418{bottom:489.468000pt;}
.y6_c00418{bottom:490.653333pt;}
.y7_c00418{bottom:490.864000pt;}
.y8_c00418{bottom:491.269333pt;}
.y9_c00418{bottom:492.016000pt;}
.ya_c00418{bottom:492.653333pt;}
.y1_c00418{bottom:503.165333pt;}
.he_c00418{height:19.600000pt;}
.hb_c00418{height:21.466667pt;}
.h6_c00418{height:51.333333pt;}
.h9_c00418{height:52.266667pt;}
.h8_c00418{height:53.200000pt;}
.h7_c00418{height:54.133333pt;}
.h5_c00418{height:55.066667pt;}
.h11_c00418{height:55.077679pt;}
.ha_c00418{height:56.000000pt;}
.h2_c00418{height:56.933333pt;}
.h4_c00418{height:57.866667pt;}
.hf_c00418{height:58.800000pt;}
.hd_c00418{height:59.733333pt;}
.h10_c00418{height:59.745279pt;}
.h3_c00418{height:61.600000pt;}
.hc_c00418{height:62.533333pt;}
.h1_c00418{height:112.000000pt;}
.h0_c00418{height:540.666667pt;}
.w0_c00418{width:319.200000pt;}
.w1_c00418{width:319.333333pt;}
.x0_c00418{left:0.000000pt;}
.x3_c00418{left:10.312000pt;}
.x1a_c00418{left:15.805333pt;}
.xc_c00418{left:17.697333pt;}
.x24_c00418{left:18.645333pt;}
.x3f_c00418{left:20.553333pt;}
.x5d_c00418{left:22.320000pt;}
.x5a_c00418{left:24.000000pt;}
.x7a_c00418{left:27.689333pt;}
.x70_c00418{left:28.800000pt;}
.x7f_c00418{left:30.263600pt;}
.x13_c00418{left:34.561333pt;}
.x39_c00418{left:35.668000pt;}
.x4e_c00418{left:37.801333pt;}
.xd_c00418{left:43.878667pt;}
.x4_c00418{left:45.004000pt;}
.x74_c00418{left:46.560000pt;}
.x63_c00418{left:47.520000pt;}
.x5b_c00418{left:51.360000pt;}
.x2c_c00418{left:54.484000pt;}
.x1e_c00418{left:55.922667pt;}
.x4f_c00418{left:58.420000pt;}
.x60_c00418{left:65.760000pt;}
.x5_c00418{left:69.317333pt;}
.x64_c00418{left:71.760000pt;}
.x31_c00418{left:73.684000pt;}
.x35_c00418{left:76.804000pt;}
.x7c_c00418{left:79.200000pt;}
.xe_c00418{left:81.066667pt;}
.x75_c00418{left:86.880000pt;}
.x6e_c00418{left:87.840000pt;}
.x6b_c00418{left:89.280000pt;}
.x6_c00418{left:91.638667pt;}
.x3a_c00418{left:93.513333pt;}
.x25_c00418{left:94.466667pt;}
.x71_c00418{left:95.760000pt;}
.xf_c00418{left:96.688000pt;}
.x14_c00418{left:98.401333pt;}
.x1f_c00418{left:100.082667pt;}
.x56_c00418{left:102.482667pt;}
.x36_c00418{left:103.444000pt;}
.x15_c00418{left:105.361333pt;}
.x32_c00418{left:108.244000pt;}
.x45_c00418{left:111.602667pt;}
.x50_c00418{left:112.656000pt;}
.x68_c00418{left:114.000000pt;}
.x2d_c00418{left:116.404000pt;}
.x76_c00418{left:119.040000pt;}
.x40_c00418{left:120.853333pt;}
.x16_c00418{left:124.561333pt;}
.x20_c00418{left:129.362667pt;}
.x1_c00418{left:131.520000pt;}
.x69_c00418{left:134.640000pt;}
.x2e_c00418{left:136.084000pt;}
.x72_c00418{left:137.040000pt;}
.x26_c00418{left:138.868000pt;}
.x1b_c00418{left:140.764000pt;}
.x29_c00418{left:142.912000pt;}
.x10_c00418{left:143.901333pt;}
.x7b_c00418{left:145.073333pt;}
.x17_c00418{left:146.881333pt;}
.x5e_c00418{left:149.520000pt;}
.x4b_c00418{left:152.882667pt;}
.x7_c00418{left:154.038667pt;}
.x7d_c00418{left:155.040000pt;}
.x41_c00418{left:157.309333pt;}
.x2f_c00418{left:158.884000pt;}
.x1c_c00418{left:160.272000pt;}
.x51_c00418{left:161.638667pt;}
.x46_c00418{left:163.922667pt;}
.x8_c00418{left:165.093333pt;}
.x65_c00418{left:166.080000pt;}
.x6f_c00418{left:168.000000pt;}
.x33_c00418{left:168.964000pt;}
.x11_c00418{left:169.882667pt;}
.x61_c00418{left:170.880000pt;}
.x2a_c00418{left:173.401333pt;}
.x3b_c00418{left:176.062667pt;}
.x52_c00418{left:177.242667pt;}
.x77_c00418{left:180.000000pt;}
.x21_c00418{left:180.962667pt;}
.x57_c00418{left:183.840000pt;}
.x9_c00418{left:186.450667pt;}
.x7e_c00418{left:187.680000pt;}
.x66_c00418{left:189.360000pt;}
.x6a_c00418{left:191.520000pt;}
.x37_c00418{left:193.924000pt;}
.x80_c00418{left:198.023547pt;}
.x73_c00418{left:201.360000pt;}
.x49_c00418{left:202.322667pt;}
.x42_c00418{left:203.897333pt;}
.x4c_c00418{left:204.962667pt;}
.x18_c00418{left:206.881333pt;}
.x12_c00418{left:208.282667pt;}
.x53_c00418{left:209.636000pt;}
.x58_c00418{left:212.160000pt;}
.x30_c00418{left:215.044000pt;}
.x3c_c00418{left:216.341333pt;}
.x4a_c00418{left:218.162667pt;}
.x3d_c00418{left:222.002667pt;}
.x27_c00418{left:224.545333pt;}
.xa_c00418{left:225.773333pt;}
.x78_c00418{left:228.480000pt;}
.x4d_c00418{left:229.682667pt;}
.x62_c00418{left:231.360000pt;}
.x54_c00418{left:235.073333pt;}
.x38_c00418{left:236.884000pt;}
.x47_c00418{left:239.042667pt;}
.x2_c00418{left:240.480000pt;}
.x2b_c00418{left:242.046667pt;}
.x1d_c00418{left:244.216000pt;}
.x22_c00418{left:245.522667pt;}
.x28_c00418{left:248.326667pt;}
.x34_c00418{left:249.844000pt;}
.x43_c00418{left:251.925333pt;}
.x3e_c00418{left:253.202667pt;}
.x6c_c00418{left:257.280000pt;}
.xb_c00418{left:259.338667pt;}
.x44_c00418{left:261.510667pt;}
.x55_c00418{left:262.900000pt;}
.x23_c00418{left:264.482667pt;}
.x59_c00418{left:266.640000pt;}
.x19_c00418{left:267.841333pt;}
.x48_c00418{left:272.642667pt;}
.x6d_c00418{left:273.600000pt;}
.x79_c00418{left:280.320000pt;}
.x5f_c00418{left:283.440000pt;}
.x5c_c00418{left:286.080000pt;}
.x67_c00418{left:292.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00419 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00419{transform:matrix(0.035855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035855,0.000000,0.000000,0.250000,0,0);}
.ma2_c00419{transform:matrix(0.091320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091320,0.000000,0.000000,0.250000,0,0);}
.me3_c00419{transform:matrix(0.128195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128195,0.000000,0.000000,0.250000,0,0);}
.m8c_c00419{transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);}
.m40_c00419{transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150720,0.000000,0.000000,0.250000,0,0);}
.m4f_c00419{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m93_c00419{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m8f_c00419{transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153160,0.000000,0.000000,0.250000,0,0);}
.mb0_c00419{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m43_c00419{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154855,0.000000,0.000000,0.250000,0,0);}
.m44_c00419{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.me_c00419{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156410,0.000000,0.000000,0.250000,0,0);}
.m37_c00419{transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);}
.m29_c00419{transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);}
.mec_c00419{transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158240,0.000000,0.000000,0.250000,0,0);}
.m5d_c00419{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.m59_c00419{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.m5c_c00419{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.m91_c00419{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m6c_c00419{transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);}
.mf_c00419{transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165705,0.000000,0.000000,0.250000,0,0);}
.m6e_c00419{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.mc4_c00419{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m7b_c00419{transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);}
.m5e_c00419{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.mdf_c00419{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.mac_c00419{transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.167185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167185,0.000000,0.000000,0.250000,0,0);}
.m90_c00419{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00419{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.m2a_c00419{transform:matrix(0.169405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169405,0.000000,0.000000,0.250000,0,0);}
.m7e_c00419{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.m97_c00419{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.md9_c00419{transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);}
.m67_c00419{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m41_c00419{transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170985,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.m76_c00419{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m71_c00419{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00419{transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);}
.maf_c00419{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.mc5_c00419{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.m63_c00419{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m6d_c00419{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.md6_c00419{transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176445,0.000000,0.000000,0.250000,0,0);}
.m5a_c00419{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.mde_c00419{transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00419{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m50_c00419{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.mca_c00419{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00419{transform:matrix(0.178690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178690,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);}
.me4_c00419{transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180390,0.000000,0.000000,0.250000,0,0);}
.mcf_c00419{transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180520,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00419{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);}
.m94_c00419{transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);}
.m48_c00419{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.md0_c00419{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m88_c00419{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.mcd_c00419{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m5b_c00419{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.med_c00419{transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);}
.md8_c00419{transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);}
.m34_c00419{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00419{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m86_c00419{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00419{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187670,0.000000,0.000000,0.250000,0,0);}
.m57_c00419{transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);}
.m42_c00419{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.m7d_c00419{transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188220,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188465,0.000000,0.000000,0.250000,0,0);}
.m6f_c00419{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.m92_c00419{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.m96_c00419{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m73_c00419{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m3f_c00419{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m77_c00419{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191080,0.000000,0.000000,0.250000,0,0);}
.m79_c00419{transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191185,0.000000,0.000000,0.250000,0,0);}
.m9e_c00419{transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);}
.md2_c00419{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.m60_c00419{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.mbf_c00419{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.mea_c00419{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.m70_c00419{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.ma6_c00419{transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192910,0.000000,0.000000,0.250000,0,0);}
.m45_c00419{transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);}
.mad_c00419{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.me9_c00419{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m98_c00419{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.mb1_c00419{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.meb_c00419{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.m78_c00419{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.md4_c00419{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m39_c00419{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.m99_c00419{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.mee_c00419{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m95_c00419{transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196555,0.000000,0.000000,0.250000,0,0);}
.m84_c00419{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.me2_c00419{transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);}
.mb5_c00419{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.mef_c00419{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m24_c00419{transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);}
.md3_c00419{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.me8_c00419{transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);}
.mc2_c00419{transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);}
.mb6_c00419{transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199490,0.000000,0.000000,0.250000,0,0);}
.m8e_c00419{transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);}
.mae_c00419{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.me1_c00419{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m58_c00419{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.m82_c00419{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mc0_c00419{transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);}
.md1_c00419{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m85_c00419{transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200620,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200660,0.000000,0.000000,0.250000,0,0);}
.m7c_c00419{transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);}
.mb7_c00419{transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200830,0.000000,0.000000,0.250000,0,0);}
.m87_c00419{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.me0_c00419{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.md5_c00419{transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);}
.m6b_c00419{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m3d_c00419{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m9a_c00419{transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);}
.m83_c00419{transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);}
.m8d_c00419{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.mbc_c00419{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.mb4_c00419{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.m46_c00419{transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);}
.m75_c00419{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.m65_c00419{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m62_c00419{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);}
.m47_c00419{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.mc6_c00419{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.md7_c00419{transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208990,0.000000,0.000000,0.250000,0,0);}
.me6_c00419{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.mcb_c00419{transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00419{transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);}
.m68_c00419{transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210360,0.000000,0.000000,0.250000,0,0);}
.m7a_c00419{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.mb3_c00419{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00419{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00419{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);}
.mdd_c00419{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.mc3_c00419{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m4c_c00419{transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213605,0.000000,0.000000,0.250000,0,0);}
.m81_c00419{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m32_c00419{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m1e_c00419{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.m3b_c00419{transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);}
.mc9_c00419{transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);}
.m10_c00419{transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);}
.mc7_c00419{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.maa_c00419{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.m55_c00419{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m66_c00419{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m36_c00419{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m53_c00419{transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);}
.m89_c00419{transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);}
.ma0_c00419{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);}
.m54_c00419{transform:matrix(0.216805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216805,0.000000,0.000000,0.250000,0,0);}
.m1b_c00419{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.m49_c00419{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.mb8_c00419{transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);}
.m3e_c00419{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.m74_c00419{transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);}
.ma3_c00419{transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);}
.mb9_c00419{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.mbd_c00419{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00419{transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);}
.ma8_c00419{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m56_c00419{transform:matrix(0.220590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00419{transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00419{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m3c_c00419{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226030,0.000000,0.000000,0.250000,0,0);}
.mc8_c00419{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.m4e_c00419{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m4b_c00419{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m61_c00419{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.m64_c00419{transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);}
.m72_c00419{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229955,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);}
.mce_c00419{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.m9b_c00419{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00419{transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232070,0.000000,0.000000,0.250000,0,0);}
.mba_c00419{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.m30_c00419{transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00419{transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);}
.mcc_c00419{transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233605,0.000000,0.000000,0.250000,0,0);}
.m80_c00419{transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234390,0.000000,0.000000,0.250000,0,0);}
.mdc_c00419{transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235910,0.000000,0.000000,0.250000,0,0);}
.m12_c00419{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.mab_c00419{transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240240,0.000000,0.000000,0.250000,0,0);}
.me5_c00419{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m38_c00419{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m6a_c00419{transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.m52_c00419{transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);}
.mbe_c00419{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.mb2_c00419{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.ma1_c00419{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264185,0.000000,0.000000,0.250000,0,0);}
.m3a_c00419{transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);}
.m7f_c00419{transform:matrix(0.286485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286485,0.000000,0.000000,0.250000,0,0);}
.m8b_c00419{transform:matrix(0.291945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291945,0.000000,0.000000,0.250000,0,0);}
.mdb_c00419{transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296405,0.000000,0.000000,0.250000,0,0);}
.m51_c00419{transform:matrix(0.318050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318050,0.000000,0.000000,0.250000,0,0);}
.m69_c00419{transform:matrix(0.326990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326990,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.328710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328710,0.000000,0.000000,0.250000,0,0);}
.me7_c00419{transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.354470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354470,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:0.000000px;}
.fc0_c00419{color:transparent;}
.fs5_c00419{font-size:57.750000px;}
.fs8_c00419{font-size:58.800000px;}
.fsa_c00419{font-size:59.850000px;}
.fs3_c00419{font-size:60.900000px;}
.fsc_c00419{font-size:61.950000px;}
.fs6_c00419{font-size:63.000000px;}
.fsb_c00419{font-size:64.050000px;}
.fs0_c00419{font-size:65.100000px;}
.fs9_c00419{font-size:66.150000px;}
.fs7_c00419{font-size:67.200000px;}
.fs2_c00419{font-size:68.250000px;}
.fs1_c00419{font-size:70.350000px;}
.fs4_c00419{font-size:73.500000px;}
.fsd_c00419{font-size:74.550000px;}
.y0_c00419{bottom:0.000000px;}
.y91_c00419{bottom:27.177000px;}
.y90_c00419{bottom:43.749000px;}
.y8f_c00419{bottom:44.434500px;}
.y8e_c00419{bottom:44.689500px;}
.y8d_c00419{bottom:45.577500px;}
.y8c_c00419{bottom:46.029000px;}
.y8b_c00419{bottom:46.729500px;}
.y8a_c00419{bottom:46.981500px;}
.y89_c00419{bottom:62.512500px;}
.y88_c00419{bottom:77.607000px;}
.y87_c00419{bottom:96.088500px;}
.y86_c00419{bottom:113.245500px;}
.y85_c00419{bottom:130.263000px;}
.y84_c00419{bottom:130.497000px;}
.y83_c00419{bottom:130.776000px;}
.y82_c00419{bottom:130.968000px;}
.y81_c00419{bottom:131.823000px;}
.y80_c00419{bottom:132.087000px;}
.y7f_c00419{bottom:132.817500px;}
.y7e_c00419{bottom:133.375500px;}
.y7d_c00419{bottom:146.935500px;}
.y7c_c00419{bottom:162.739500px;}
.y7b_c00419{bottom:163.698000px;}
.y7a_c00419{bottom:164.013000px;}
.y79_c00419{bottom:164.700000px;}
.y78_c00419{bottom:165.523500px;}
.y77_c00419{bottom:166.587000px;}
.y76_c00419{bottom:181.881000px;}
.y75_c00419{bottom:200.068500px;}
.y74_c00419{bottom:213.999000px;}
.y73_c00419{bottom:214.275000px;}
.y72_c00419{bottom:214.755000px;}
.y71_c00419{bottom:215.811000px;}
.y70_c00419{bottom:216.229500px;}
.y6f_c00419{bottom:216.450000px;}
.y6e_c00419{bottom:216.943500px;}
.y6d_c00419{bottom:217.885500px;}
.y6c_c00419{bottom:230.064000px;}
.y6b_c00419{bottom:231.505500px;}
.y6a_c00419{bottom:232.699500px;}
.y69_c00419{bottom:233.490000px;}
.y68_c00419{bottom:233.761500px;}
.y67_c00419{bottom:234.357000px;}
.y66_c00419{bottom:247.938000px;}
.y65_c00419{bottom:248.182500px;}
.y64_c00419{bottom:248.545500px;}
.y63_c00419{bottom:248.874000px;}
.y62_c00419{bottom:249.742500px;}
.y61_c00419{bottom:250.062000px;}
.y60_c00419{bottom:250.377000px;}
.y5f_c00419{bottom:251.308500px;}
.y5e_c00419{bottom:251.637000px;}
.y5d_c00419{bottom:263.859000px;}
.y5c_c00419{bottom:267.568500px;}
.y5b_c00419{bottom:283.953000px;}
.y5a_c00419{bottom:300.271500px;}
.y59_c00419{bottom:317.533500px;}
.y58_c00419{bottom:333.462000px;}
.y57_c00419{bottom:333.936000px;}
.y56_c00419{bottom:335.736000px;}
.y55_c00419{bottom:336.157500px;}
.y54_c00419{bottom:336.781500px;}
.y53_c00419{bottom:337.209000px;}
.y52_c00419{bottom:338.337000px;}
.y51_c00419{bottom:338.812500px;}
.y50_c00419{bottom:339.660000px;}
.y4f_c00419{bottom:350.392500px;}
.y4e_c00419{bottom:350.554500px;}
.y4d_c00419{bottom:350.898000px;}
.y4c_c00419{bottom:351.081000px;}
.y4b_c00419{bottom:351.547500px;}
.y4a_c00419{bottom:351.747000px;}
.y49_c00419{bottom:352.212000px;}
.y48_c00419{bottom:353.157000px;}
.y47_c00419{bottom:369.790500px;}
.y46_c00419{bottom:384.207000px;}
.y45_c00419{bottom:384.682500px;}
.y44_c00419{bottom:385.291500px;}
.y43_c00419{bottom:385.975500px;}
.y42_c00419{bottom:386.223000px;}
.y41_c00419{bottom:386.368500px;}
.y40_c00419{bottom:387.178500px;}
.y3f_c00419{bottom:401.595000px;}
.y3e_c00419{bottom:401.815500px;}
.y3d_c00419{bottom:403.123500px;}
.y3c_c00419{bottom:403.377000px;}
.y3b_c00419{bottom:403.941000px;}
.y3a_c00419{bottom:404.520000px;}
.y39_c00419{bottom:404.845500px;}
.y38_c00419{bottom:405.634500px;}
.y37_c00419{bottom:405.895500px;}
.y36_c00419{bottom:406.348500px;}
.y35_c00419{bottom:420.256500px;}
.y34_c00419{bottom:435.915000px;}
.y33_c00419{bottom:436.411500px;}
.y32_c00419{bottom:437.430000px;}
.y31_c00419{bottom:437.620500px;}
.y30_c00419{bottom:437.850000px;}
.y2f_c00419{bottom:438.547500px;}
.y2e_c00419{bottom:438.847500px;}
.y2d_c00419{bottom:439.548000px;}
.y2c_c00419{bottom:439.791000px;}
.y2b_c00419{bottom:440.098500px;}
.y2a_c00419{bottom:453.357000px;}
.y29_c00419{bottom:453.678000px;}
.y28_c00419{bottom:453.873000px;}
.y27_c00419{bottom:454.395000px;}
.y26_c00419{bottom:455.101500px;}
.y25_c00419{bottom:455.289000px;}
.y24_c00419{bottom:455.521500px;}
.y23_c00419{bottom:455.979000px;}
.y22_c00419{bottom:456.300000px;}
.y21_c00419{bottom:470.337000px;}
.y20_c00419{bottom:471.445500px;}
.y1f_c00419{bottom:471.751500px;}
.y1e_c00419{bottom:472.402500px;}
.y1d_c00419{bottom:472.770000px;}
.y1c_c00419{bottom:486.390000px;}
.y1b_c00419{bottom:486.757500px;}
.y1a_c00419{bottom:487.324500px;}
.y19_c00419{bottom:487.603500px;}
.y18_c00419{bottom:488.274000px;}
.y17_c00419{bottom:488.526000px;}
.y16_c00419{bottom:488.749500px;}
.y15_c00419{bottom:489.240000px;}
.y14_c00419{bottom:504.090000px;}
.y13_c00419{bottom:504.300000px;}
.y12_c00419{bottom:504.484500px;}
.y11_c00419{bottom:505.344000px;}
.y10_c00419{bottom:505.587000px;}
.yf_c00419{bottom:506.125500px;}
.ye_c00419{bottom:506.329500px;}
.yd_c00419{bottom:506.871000px;}
.yc_c00419{bottom:507.331500px;}
.yb_c00419{bottom:519.333000px;}
.ya_c00419{bottom:520.126500px;}
.y9_c00419{bottom:520.363500px;}
.y8_c00419{bottom:520.758000px;}
.y7_c00419{bottom:521.026500px;}
.y6_c00419{bottom:521.217000px;}
.y5_c00419{bottom:521.959500px;}
.y4_c00419{bottom:522.721500px;}
.y3_c00419{bottom:538.717500px;}
.y2_c00419{bottom:556.078500px;}
.y1_c00419{bottom:570.238500px;}
.h6_c00419{height:57.750000px;}
.h9_c00419{height:58.800000px;}
.hb_c00419{height:59.850000px;}
.h4_c00419{height:60.900000px;}
.hd_c00419{height:61.950000px;}
.h7_c00419{height:63.000000px;}
.hc_c00419{height:64.050000px;}
.h1_c00419{height:65.100000px;}
.ha_c00419{height:66.150000px;}
.h8_c00419{height:67.200000px;}
.h3_c00419{height:68.250000px;}
.h2_c00419{height:70.350000px;}
.h5_c00419{height:73.500000px;}
.he_c00419{height:74.550000px;}
.h0_c00419{height:608.250000px;}
.w0_c00419{width:359.100000px;}
.w1_c00419{width:359.250000px;}
.x0_c00419{left:0.000000px;}
.x63_c00419{left:33.213000px;}
.x7c_c00419{left:35.800500px;}
.x6c_c00419{left:38.152500px;}
.x5d_c00419{left:39.795000px;}
.x4c_c00419{left:41.583000px;}
.x49_c00419{left:42.736500px;}
.x3e_c00419{left:43.740000px;}
.x30_c00419{left:44.820000px;}
.x1c_c00419{left:46.029000px;}
.x8_c00419{left:48.060000px;}
.x2_c00419{left:49.680000px;}
.x64_c00419{left:55.353000px;}
.x7d_c00419{left:58.726500px;}
.x53_c00419{left:60.483000px;}
.x77_c00419{left:62.104500px;}
.x50_c00419{left:64.533000px;}
.x2b_c00419{left:65.983500px;}
.x3f_c00419{left:67.500000px;}
.x35_c00419{left:71.076000px;}
.x25_c00419{left:72.760500px;}
.x71_c00419{left:77.334000px;}
.x22_c00419{left:79.765500px;}
.x2c_c00419{left:82.176000px;}
.x17_c00419{left:85.729500px;}
.x31_c00419{left:89.100000px;}
.x3_c00419{left:90.450000px;}
.x40_c00419{left:95.310000px;}
.x74_c00419{left:96.934500px;}
.x5b_c00419{left:99.439500px;}
.x7e_c00419{left:101.250000px;}
.x4a_c00419{left:102.900000px;}
.x6d_c00419{left:104.620500px;}
.x9_c00419{left:106.920000px;}
.x6a_c00419{left:109.893000px;}
.x10_c00419{left:111.082500px;}
.x5e_c00419{left:112.224000px;}
.x3a_c00419{left:118.077000px;}
.x78_c00419{left:119.884500px;}
.x4d_c00419{left:121.773000px;}
.x65_c00419{left:122.853000px;}
.x6f_c00419{left:123.933000px;}
.x2d_c00419{left:128.899500px;}
.x26_c00419{left:130.269000px;}
.xa_c00419{left:131.490000px;}
.x1d_c00419{left:133.782000px;}
.x66_c00419{left:135.003000px;}
.x43_c00419{left:137.820000px;}
.x23_c00419{left:138.969000px;}
.x75_c00419{left:141.754500px;}
.x27_c00419{left:145.926000px;}
.x18_c00419{left:147.820500px;}
.x2e_c00419{left:148.870500px;}
.x5f_c00419{left:150.231000px;}
.x36_c00419{left:152.070000px;}
.x3b_c00419{left:153.739500px;}
.x6e_c00419{left:156.121500px;}
.x56_c00419{left:162.637500px;}
.x24_c00419{left:166.728000px;}
.x32_c00419{left:171.450000px;}
.x11_c00419{left:172.962000px;}
.x4_c00419{left:178.200000px;}
.x7b_c00419{left:179.280000px;}
.x1_c00419{left:180.360000px;}
.x44_c00419{left:184.309500px;}
.x37_c00419{left:186.094500px;}
.x57_c00419{left:187.207500px;}
.x12_c00419{left:188.893500px;}
.x67_c00419{left:191.433000px;}
.x19_c00419{left:192.637500px;}
.x1e_c00419{left:194.797500px;}
.x41_c00419{left:196.020000px;}
.x4e_c00419{left:197.913000px;}
.x60_c00419{left:199.383000px;}
.x4b_c00419{left:201.948000px;}
.x7f_c00419{left:203.310000px;}
.x28_c00419{left:204.790500px;}
.x72_c00419{left:209.437500px;}
.x13_c00419{left:211.251000px;}
.xb_c00419{left:212.760000px;}
.x42_c00419{left:214.110000px;}
.x3c_c00419{left:215.856000px;}
.x33_c00419{left:218.430000px;}
.x1f_c00419{left:220.183500px;}
.x79_c00419{left:222.214500px;}
.x2f_c00419{left:223.381500px;}
.x51_c00419{left:227.613000px;}
.x5c_c00419{left:231.741000px;}
.x38_c00419{left:234.214500px;}
.x5_c00419{left:237.060000px;}
.xc_c00419{left:240.840000px;}
.x73_c00419{left:243.112500px;}
.x14_c00419{left:244.186500px;}
.x29_c00419{left:248.260500px;}
.x45_c00419{left:250.956000px;}
.x58_c00419{left:253.971000px;}
.x52_c00419{left:256.773000px;}
.x6b_c00419{left:260.013000px;}
.x15_c00419{left:263.913000px;}
.x68_c00419{left:265.683000px;}
.x6_c00419{left:267.840000px;}
.x46_c00419{left:269.322000px;}
.x20_c00419{left:271.759500px;}
.xd_c00419{left:273.510000px;}
.x59_c00419{left:279.280500px;}
.x61_c00419{left:280.642500px;}
.xe_c00419{left:284.580000px;}
.x34_c00419{left:288.360000px;}
.x2a_c00419{left:291.178500px;}
.x7_c00419{left:292.950000px;}
.x69_c00419{left:296.193000px;}
.x7a_c00419{left:297.544500px;}
.x1a_c00419{left:299.893500px;}
.x70_c00419{left:302.133000px;}
.x47_c00419{left:303.622500px;}
.x21_c00419{left:305.173500px;}
.x55_c00419{left:307.413000px;}
.x39_c00419{left:311.124000px;}
.x3d_c00419{left:314.455500px;}
.x76_c00419{left:315.634500px;}
.x1b_c00419{left:317.379000px;}
.x48_c00419{left:319.827000px;}
.x4f_c00419{left:321.303000px;}
.xf_c00419{left:324.000000px;}
.x5a_c00419{left:325.944000px;}
.x54_c00419{left:328.053000px;}
.x16_c00419{left:330.037500px;}
.x62_c00419{left:338.791500px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:0.000000pt;}
.fs5_c00419{font-size:51.333333pt;}
.fs8_c00419{font-size:52.266667pt;}
.fsa_c00419{font-size:53.200000pt;}
.fs3_c00419{font-size:54.133333pt;}
.fsc_c00419{font-size:55.066667pt;}
.fs6_c00419{font-size:56.000000pt;}
.fsb_c00419{font-size:56.933333pt;}
.fs0_c00419{font-size:57.866667pt;}
.fs9_c00419{font-size:58.800000pt;}
.fs7_c00419{font-size:59.733333pt;}
.fs2_c00419{font-size:60.666667pt;}
.fs1_c00419{font-size:62.533333pt;}
.fs4_c00419{font-size:65.333333pt;}
.fsd_c00419{font-size:66.266667pt;}
.y0_c00419{bottom:0.000000pt;}
.y91_c00419{bottom:24.157333pt;}
.y90_c00419{bottom:38.888000pt;}
.y8f_c00419{bottom:39.497333pt;}
.y8e_c00419{bottom:39.724000pt;}
.y8d_c00419{bottom:40.513333pt;}
.y8c_c00419{bottom:40.914667pt;}
.y8b_c00419{bottom:41.537333pt;}
.y8a_c00419{bottom:41.761333pt;}
.y89_c00419{bottom:55.566667pt;}
.y88_c00419{bottom:68.984000pt;}
.y87_c00419{bottom:85.412000pt;}
.y86_c00419{bottom:100.662667pt;}
.y85_c00419{bottom:115.789333pt;}
.y84_c00419{bottom:115.997333pt;}
.y83_c00419{bottom:116.245333pt;}
.y82_c00419{bottom:116.416000pt;}
.y81_c00419{bottom:117.176000pt;}
.y80_c00419{bottom:117.410667pt;}
.y7f_c00419{bottom:118.060000pt;}
.y7e_c00419{bottom:118.556000pt;}
.y7d_c00419{bottom:130.609333pt;}
.y7c_c00419{bottom:144.657333pt;}
.y7b_c00419{bottom:145.509333pt;}
.y7a_c00419{bottom:145.789333pt;}
.y79_c00419{bottom:146.400000pt;}
.y78_c00419{bottom:147.132000pt;}
.y77_c00419{bottom:148.077333pt;}
.y76_c00419{bottom:161.672000pt;}
.y75_c00419{bottom:177.838667pt;}
.y74_c00419{bottom:190.221333pt;}
.y73_c00419{bottom:190.466667pt;}
.y72_c00419{bottom:190.893333pt;}
.y71_c00419{bottom:191.832000pt;}
.y70_c00419{bottom:192.204000pt;}
.y6f_c00419{bottom:192.400000pt;}
.y6e_c00419{bottom:192.838667pt;}
.y6d_c00419{bottom:193.676000pt;}
.y6c_c00419{bottom:204.501333pt;}
.y6b_c00419{bottom:205.782667pt;}
.y6a_c00419{bottom:206.844000pt;}
.y69_c00419{bottom:207.546667pt;}
.y68_c00419{bottom:207.788000pt;}
.y67_c00419{bottom:208.317333pt;}
.y66_c00419{bottom:220.389333pt;}
.y65_c00419{bottom:220.606667pt;}
.y64_c00419{bottom:220.929333pt;}
.y63_c00419{bottom:221.221333pt;}
.y62_c00419{bottom:221.993333pt;}
.y61_c00419{bottom:222.277333pt;}
.y60_c00419{bottom:222.557333pt;}
.y5f_c00419{bottom:223.385333pt;}
.y5e_c00419{bottom:223.677333pt;}
.y5d_c00419{bottom:234.541333pt;}
.y5c_c00419{bottom:237.838667pt;}
.y5b_c00419{bottom:252.402667pt;}
.y5a_c00419{bottom:266.908000pt;}
.y59_c00419{bottom:282.252000pt;}
.y58_c00419{bottom:296.410667pt;}
.y57_c00419{bottom:296.832000pt;}
.y56_c00419{bottom:298.432000pt;}
.y55_c00419{bottom:298.806667pt;}
.y54_c00419{bottom:299.361333pt;}
.y53_c00419{bottom:299.741333pt;}
.y52_c00419{bottom:300.744000pt;}
.y51_c00419{bottom:301.166667pt;}
.y50_c00419{bottom:301.920000pt;}
.y4f_c00419{bottom:311.460000pt;}
.y4e_c00419{bottom:311.604000pt;}
.y4d_c00419{bottom:311.909333pt;}
.y4c_c00419{bottom:312.072000pt;}
.y4b_c00419{bottom:312.486667pt;}
.y4a_c00419{bottom:312.664000pt;}
.y49_c00419{bottom:313.077333pt;}
.y48_c00419{bottom:313.917333pt;}
.y47_c00419{bottom:328.702667pt;}
.y46_c00419{bottom:341.517333pt;}
.y45_c00419{bottom:341.940000pt;}
.y44_c00419{bottom:342.481333pt;}
.y43_c00419{bottom:343.089333pt;}
.y42_c00419{bottom:343.309333pt;}
.y41_c00419{bottom:343.438667pt;}
.y40_c00419{bottom:344.158667pt;}
.y3f_c00419{bottom:356.973333pt;}
.y3e_c00419{bottom:357.169333pt;}
.y3d_c00419{bottom:358.332000pt;}
.y3c_c00419{bottom:358.557333pt;}
.y3b_c00419{bottom:359.058667pt;}
.y3a_c00419{bottom:359.573333pt;}
.y39_c00419{bottom:359.862667pt;}
.y38_c00419{bottom:360.564000pt;}
.y37_c00419{bottom:360.796000pt;}
.y36_c00419{bottom:361.198667pt;}
.y35_c00419{bottom:373.561333pt;}
.y34_c00419{bottom:387.480000pt;}
.y33_c00419{bottom:387.921333pt;}
.y32_c00419{bottom:388.826667pt;}
.y31_c00419{bottom:388.996000pt;}
.y30_c00419{bottom:389.200000pt;}
.y2f_c00419{bottom:389.820000pt;}
.y2e_c00419{bottom:390.086667pt;}
.y2d_c00419{bottom:390.709333pt;}
.y2c_c00419{bottom:390.925333pt;}
.y2b_c00419{bottom:391.198667pt;}
.y2a_c00419{bottom:402.984000pt;}
.y29_c00419{bottom:403.269333pt;}
.y28_c00419{bottom:403.442667pt;}
.y27_c00419{bottom:403.906667pt;}
.y26_c00419{bottom:404.534667pt;}
.y25_c00419{bottom:404.701333pt;}
.y24_c00419{bottom:404.908000pt;}
.y23_c00419{bottom:405.314667pt;}
.y22_c00419{bottom:405.600000pt;}
.y21_c00419{bottom:418.077333pt;}
.y20_c00419{bottom:419.062667pt;}
.y1f_c00419{bottom:419.334667pt;}
.y1e_c00419{bottom:419.913333pt;}
.y1d_c00419{bottom:420.240000pt;}
.y1c_c00419{bottom:432.346667pt;}
.y1b_c00419{bottom:432.673333pt;}
.y1a_c00419{bottom:433.177333pt;}
.y19_c00419{bottom:433.425333pt;}
.y18_c00419{bottom:434.021333pt;}
.y17_c00419{bottom:434.245333pt;}
.y16_c00419{bottom:434.444000pt;}
.y15_c00419{bottom:434.880000pt;}
.y14_c00419{bottom:448.080000pt;}
.y13_c00419{bottom:448.266667pt;}
.y12_c00419{bottom:448.430667pt;}
.y11_c00419{bottom:449.194667pt;}
.y10_c00419{bottom:449.410667pt;}
.yf_c00419{bottom:449.889333pt;}
.ye_c00419{bottom:450.070667pt;}
.yd_c00419{bottom:450.552000pt;}
.yc_c00419{bottom:450.961333pt;}
.yb_c00419{bottom:461.629333pt;}
.ya_c00419{bottom:462.334667pt;}
.y9_c00419{bottom:462.545333pt;}
.y8_c00419{bottom:462.896000pt;}
.y7_c00419{bottom:463.134667pt;}
.y6_c00419{bottom:463.304000pt;}
.y5_c00419{bottom:463.964000pt;}
.y4_c00419{bottom:464.641333pt;}
.y3_c00419{bottom:478.860000pt;}
.y2_c00419{bottom:494.292000pt;}
.y1_c00419{bottom:506.878667pt;}
.h6_c00419{height:51.333333pt;}
.h9_c00419{height:52.266667pt;}
.hb_c00419{height:53.200000pt;}
.h4_c00419{height:54.133333pt;}
.hd_c00419{height:55.066667pt;}
.h7_c00419{height:56.000000pt;}
.hc_c00419{height:56.933333pt;}
.h1_c00419{height:57.866667pt;}
.ha_c00419{height:58.800000pt;}
.h8_c00419{height:59.733333pt;}
.h3_c00419{height:60.666667pt;}
.h2_c00419{height:62.533333pt;}
.h5_c00419{height:65.333333pt;}
.he_c00419{height:66.266667pt;}
.h0_c00419{height:540.666667pt;}
.w0_c00419{width:319.200000pt;}
.w1_c00419{width:319.333333pt;}
.x0_c00419{left:0.000000pt;}
.x63_c00419{left:29.522667pt;}
.x7c_c00419{left:31.822667pt;}
.x6c_c00419{left:33.913333pt;}
.x5d_c00419{left:35.373333pt;}
.x4c_c00419{left:36.962667pt;}
.x49_c00419{left:37.988000pt;}
.x3e_c00419{left:38.880000pt;}
.x30_c00419{left:39.840000pt;}
.x1c_c00419{left:40.914667pt;}
.x8_c00419{left:42.720000pt;}
.x2_c00419{left:44.160000pt;}
.x64_c00419{left:49.202667pt;}
.x7d_c00419{left:52.201333pt;}
.x53_c00419{left:53.762667pt;}
.x77_c00419{left:55.204000pt;}
.x50_c00419{left:57.362667pt;}
.x2b_c00419{left:58.652000pt;}
.x3f_c00419{left:60.000000pt;}
.x35_c00419{left:63.178667pt;}
.x25_c00419{left:64.676000pt;}
.x71_c00419{left:68.741333pt;}
.x22_c00419{left:70.902667pt;}
.x2c_c00419{left:73.045333pt;}
.x17_c00419{left:76.204000pt;}
.x31_c00419{left:79.200000pt;}
.x3_c00419{left:80.400000pt;}
.x40_c00419{left:84.720000pt;}
.x74_c00419{left:86.164000pt;}
.x5b_c00419{left:88.390667pt;}
.x7e_c00419{left:90.000000pt;}
.x4a_c00419{left:91.466667pt;}
.x6d_c00419{left:92.996000pt;}
.x9_c00419{left:95.040000pt;}
.x6a_c00419{left:97.682667pt;}
.x10_c00419{left:98.740000pt;}
.x5e_c00419{left:99.754667pt;}
.x3a_c00419{left:104.957333pt;}
.x78_c00419{left:106.564000pt;}
.x4d_c00419{left:108.242667pt;}
.x65_c00419{left:109.202667pt;}
.x6f_c00419{left:110.162667pt;}
.x2d_c00419{left:114.577333pt;}
.x26_c00419{left:115.794667pt;}
.xa_c00419{left:116.880000pt;}
.x1d_c00419{left:118.917333pt;}
.x66_c00419{left:120.002667pt;}
.x43_c00419{left:122.506667pt;}
.x23_c00419{left:123.528000pt;}
.x75_c00419{left:126.004000pt;}
.x27_c00419{left:129.712000pt;}
.x18_c00419{left:131.396000pt;}
.x2e_c00419{left:132.329333pt;}
.x5f_c00419{left:133.538667pt;}
.x36_c00419{left:135.173333pt;}
.x3b_c00419{left:136.657333pt;}
.x6e_c00419{left:138.774667pt;}
.x56_c00419{left:144.566667pt;}
.x24_c00419{left:148.202667pt;}
.x32_c00419{left:152.400000pt;}
.x11_c00419{left:153.744000pt;}
.x4_c00419{left:158.400000pt;}
.x7b_c00419{left:159.360000pt;}
.x1_c00419{left:160.320000pt;}
.x44_c00419{left:163.830667pt;}
.x37_c00419{left:165.417333pt;}
.x57_c00419{left:166.406667pt;}
.x12_c00419{left:167.905333pt;}
.x67_c00419{left:170.162667pt;}
.x19_c00419{left:171.233333pt;}
.x1e_c00419{left:173.153333pt;}
.x41_c00419{left:174.240000pt;}
.x4e_c00419{left:175.922667pt;}
.x60_c00419{left:177.229333pt;}
.x4b_c00419{left:179.509333pt;}
.x7f_c00419{left:180.720000pt;}
.x28_c00419{left:182.036000pt;}
.x72_c00419{left:186.166667pt;}
.x13_c00419{left:187.778667pt;}
.xb_c00419{left:189.120000pt;}
.x42_c00419{left:190.320000pt;}
.x3c_c00419{left:191.872000pt;}
.x33_c00419{left:194.160000pt;}
.x1f_c00419{left:195.718667pt;}
.x79_c00419{left:197.524000pt;}
.x2f_c00419{left:198.561333pt;}
.x51_c00419{left:202.322667pt;}
.x5c_c00419{left:205.992000pt;}
.x38_c00419{left:208.190667pt;}
.x5_c00419{left:210.720000pt;}
.xc_c00419{left:214.080000pt;}
.x73_c00419{left:216.100000pt;}
.x14_c00419{left:217.054667pt;}
.x29_c00419{left:220.676000pt;}
.x45_c00419{left:223.072000pt;}
.x58_c00419{left:225.752000pt;}
.x52_c00419{left:228.242667pt;}
.x6b_c00419{left:231.122667pt;}
.x15_c00419{left:234.589333pt;}
.x68_c00419{left:236.162667pt;}
.x6_c00419{left:238.080000pt;}
.x46_c00419{left:239.397333pt;}
.x20_c00419{left:241.564000pt;}
.xd_c00419{left:243.120000pt;}
.x59_c00419{left:248.249333pt;}
.x61_c00419{left:249.460000pt;}
.xe_c00419{left:252.960000pt;}
.x34_c00419{left:256.320000pt;}
.x2a_c00419{left:258.825333pt;}
.x7_c00419{left:260.400000pt;}
.x69_c00419{left:263.282667pt;}
.x7a_c00419{left:264.484000pt;}
.x1a_c00419{left:266.572000pt;}
.x70_c00419{left:268.562667pt;}
.x47_c00419{left:269.886667pt;}
.x21_c00419{left:271.265333pt;}
.x55_c00419{left:273.256000pt;}
.x39_c00419{left:276.554667pt;}
.x3d_c00419{left:279.516000pt;}
.x76_c00419{left:280.564000pt;}
.x1b_c00419{left:282.114667pt;}
.x48_c00419{left:284.290667pt;}
.x4f_c00419{left:285.602667pt;}
.xf_c00419{left:288.000000pt;}
.x5a_c00419{left:289.728000pt;}
.x54_c00419{left:291.602667pt;}
.x16_c00419{left:293.366667pt;}
.x62_c00419{left:301.148000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00420 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00420 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00420 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00420 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00420.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me7_c00420{transform:matrix(0.052343,0.001099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.052343,0.001099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.052343,0.001099,-0.005249,0.249945,0,0);}
.mf9_c00420{transform:matrix(0.061760,0.001359,-0.005499,0.249940,0,0);-ms-transform:matrix(0.061760,0.001359,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.061760,0.001359,-0.005499,0.249940,0,0);}
.m91_c00420{transform:matrix(0.086761,0.001822,-0.005249,0.249945,0,0);-ms-transform:matrix(0.086761,0.001822,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.086761,0.001822,-0.005249,0.249945,0,0);}
.me_c00420{transform:matrix(0.090385,0.001898,-0.005249,0.249945,0,0);-ms-transform:matrix(0.090385,0.001898,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.090385,0.001898,-0.005249,0.249945,0,0);}
.m61_c00420{transform:matrix(0.115060,0.002416,-0.005249,0.249945,0,0);-ms-transform:matrix(0.115060,0.002416,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.115060,0.002416,-0.005249,0.249945,0,0);}
.mcd_c00420{transform:matrix(0.132656,0.002786,-0.005249,0.249945,0,0);-ms-transform:matrix(0.132656,0.002786,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.132656,0.002786,-0.005249,0.249945,0,0);}
.m59_c00420{transform:matrix(0.142614,0.002995,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142614,0.002995,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142614,0.002995,-0.005249,0.249945,0,0);}
.mc2_c00420{transform:matrix(0.143028,0.003004,-0.005249,0.249945,0,0);-ms-transform:matrix(0.143028,0.003004,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.143028,0.003004,-0.005249,0.249945,0,0);}
.mb8_c00420{transform:matrix(0.147403,0.003095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147403,0.003095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147403,0.003095,-0.005249,0.249945,0,0);}
.mdd_c00420{transform:matrix(0.150102,0.003152,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150102,0.003152,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150102,0.003152,-0.005249,0.249945,0,0);}
.mde_c00420{transform:matrix(0.150357,0.003157,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150357,0.003157,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150357,0.003157,-0.005249,0.249945,0,0);}
.mb5_c00420{transform:matrix(0.152271,0.003198,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152271,0.003198,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152271,0.003198,-0.005249,0.249945,0,0);}
.m8_c00420{transform:matrix(0.156476,0.003286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156476,0.003286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156476,0.003286,-0.005249,0.249945,0,0);}
.m55_c00420{transform:matrix(0.156850,0.003294,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156850,0.003294,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156850,0.003294,-0.005249,0.249945,0,0);}
.mee_c00420{transform:matrix(0.157835,0.003315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157835,0.003315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157835,0.003315,-0.005249,0.249945,0,0);}
.m88_c00420{transform:matrix(0.159190,0.003343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159190,0.003343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159190,0.003343,-0.005249,0.249945,0,0);}
.mb7_c00420{transform:matrix(0.159310,0.003346,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159310,0.003346,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159310,0.003346,-0.005249,0.249945,0,0);}
.m26_c00420{transform:matrix(0.159435,0.003348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159435,0.003348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159435,0.003348,-0.005249,0.249945,0,0);}
.mb4_c00420{transform:matrix(0.159760,0.003355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159760,0.003355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159760,0.003355,-0.005249,0.249945,0,0);}
.m49_c00420{transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160165,0.003363,-0.005249,0.249945,0,0);}
.m29_c00420{transform:matrix(0.160225,0.003365,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160225,0.003365,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160225,0.003365,-0.005249,0.249945,0,0);}
.ma2_c00420{transform:matrix(0.161039,0.003382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161039,0.003382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161039,0.003382,-0.005249,0.249945,0,0);}
.ma1_c00420{transform:matrix(0.161169,0.003385,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161169,0.003385,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161169,0.003385,-0.005249,0.249945,0,0);}
.mad_c00420{transform:matrix(0.161789,0.003398,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161789,0.003398,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161789,0.003398,-0.005249,0.249945,0,0);}
.mdb_c00420{transform:matrix(0.161889,0.003400,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161889,0.003400,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161889,0.003400,-0.005249,0.249945,0,0);}
.md0_c00420{transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164244,0.003449,-0.005249,0.249945,0,0);}
.mf8_c00420{transform:matrix(0.164370,0.003616,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164370,0.003616,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164370,0.003616,-0.005499,0.249940,0,0);}
.m41_c00420{transform:matrix(0.165109,0.003467,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165109,0.003467,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165109,0.003467,-0.005249,0.249945,0,0);}
.ma8_c00420{transform:matrix(0.165314,0.003472,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165314,0.003472,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165314,0.003472,-0.005249,0.249945,0,0);}
.m27_c00420{transform:matrix(0.165573,0.003477,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165573,0.003477,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165573,0.003477,-0.005249,0.249945,0,0);}
.mcb_c00420{transform:matrix(0.166223,0.003491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166223,0.003491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166223,0.003491,-0.005249,0.249945,0,0);}
.mbb_c00420{transform:matrix(0.166283,0.003492,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166283,0.003492,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166283,0.003492,-0.005249,0.249945,0,0);}
.m2c_c00420{transform:matrix(0.166738,0.003502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166738,0.003502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166738,0.003502,-0.005249,0.249945,0,0);}
.m7f_c00420{transform:matrix(0.167713,0.003522,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167713,0.003522,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167713,0.003522,-0.005249,0.249945,0,0);}
.mea_c00420{transform:matrix(0.167968,0.003527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167968,0.003527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167968,0.003527,-0.005249,0.249945,0,0);}
.mca_c00420{transform:matrix(0.168158,0.003531,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168158,0.003531,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168158,0.003531,-0.005249,0.249945,0,0);}
.m40_c00420{transform:matrix(0.168703,0.003543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168703,0.003543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168703,0.003543,-0.005249,0.249945,0,0);}
.mba_c00420{transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169143,0.003552,-0.005249,0.249945,0,0);}
.m34_c00420{transform:matrix(0.169443,0.003558,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169443,0.003558,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169443,0.003558,-0.005249,0.249945,0,0);}
.m5e_c00420{transform:matrix(0.169478,0.003559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169478,0.003559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169478,0.003559,-0.005249,0.249945,0,0);}
.mb3_c00420{transform:matrix(0.169553,0.003561,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169553,0.003561,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169553,0.003561,-0.005249,0.249945,0,0);}
.mbc_c00420{transform:matrix(0.169763,0.003565,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169763,0.003565,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169763,0.003565,-0.005249,0.249945,0,0);}
.mc9_c00420{transform:matrix(0.169923,0.003568,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169923,0.003568,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169923,0.003568,-0.005249,0.249945,0,0);}
.m43_c00420{transform:matrix(0.170437,0.003579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170437,0.003579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170437,0.003579,-0.005249,0.249945,0,0);}
.m75_c00420{transform:matrix(0.170522,0.003581,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170522,0.003581,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170522,0.003581,-0.005249,0.249945,0,0);}
.mf0_c00420{transform:matrix(0.170722,0.003585,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170722,0.003585,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170722,0.003585,-0.005249,0.249945,0,0);}
.m79_c00420{transform:matrix(0.170802,0.003587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170802,0.003587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170802,0.003587,-0.005249,0.249945,0,0);}
.m71_c00420{transform:matrix(0.171662,0.003605,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171662,0.003605,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171662,0.003605,-0.005249,0.249945,0,0);}
.m51_c00420{transform:matrix(0.171707,0.003606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171707,0.003606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171707,0.003606,-0.005249,0.249945,0,0);}
.m3a_c00420{transform:matrix(0.171987,0.003612,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171987,0.003612,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171987,0.003612,-0.005249,0.249945,0,0);}
.mfa_c00420{transform:matrix(0.172288,0.003790,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172288,0.003790,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172288,0.003790,-0.005499,0.249940,0,0);}
.m5d_c00420{transform:matrix(0.172412,0.003621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172412,0.003621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172412,0.003621,-0.005249,0.249945,0,0);}
.m24_c00420{transform:matrix(0.173692,0.003648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173692,0.003648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173692,0.003648,-0.005249,0.249945,0,0);}
.ma9_c00420{transform:matrix(0.173852,0.003651,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173852,0.003651,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173852,0.003651,-0.005249,0.249945,0,0);}
.m7e_c00420{transform:matrix(0.174127,0.003657,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174127,0.003657,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174127,0.003657,-0.005249,0.249945,0,0);}
.m48_c00420{transform:matrix(0.174477,0.003664,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174477,0.003664,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174477,0.003664,-0.005249,0.249945,0,0);}
.me1_c00420{transform:matrix(0.174532,0.003665,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174532,0.003665,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174532,0.003665,-0.005249,0.249945,0,0);}
.m8b_c00420{transform:matrix(0.174602,0.003667,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174602,0.003667,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174602,0.003667,-0.005249,0.249945,0,0);}
.m14_c00420{transform:matrix(0.175021,0.003675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175021,0.003675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175021,0.003675,-0.005249,0.249945,0,0);}
.m7b_c00420{transform:matrix(0.175941,0.003695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175941,0.003695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175941,0.003695,-0.005249,0.249945,0,0);}
.m30_c00420{transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175966,0.003695,-0.005249,0.249945,0,0);}
.m22_c00420{transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);}
.m9b_c00420{transform:matrix(0.176096,0.003698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176096,0.003698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176096,0.003698,-0.005249,0.249945,0,0);}
.m67_c00420{transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176296,0.003702,-0.005249,0.249945,0,0);}
.m4_c00420{transform:matrix(0.177686,0.003731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177686,0.003731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177686,0.003731,-0.005249,0.249945,0,0);}
.m2_c00420{transform:matrix(0.177891,0.003736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177891,0.003736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177891,0.003736,-0.005249,0.249945,0,0);}
.m33_c00420{transform:matrix(0.178131,0.003741,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178131,0.003741,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178131,0.003741,-0.005249,0.249945,0,0);}
.m2d_c00420{transform:matrix(0.178546,0.003749,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178546,0.003749,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178546,0.003749,-0.005249,0.249945,0,0);}
.m72_c00420{transform:matrix(0.178871,0.003756,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178871,0.003756,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178871,0.003756,-0.005249,0.249945,0,0);}
.mfb_c00420{transform:matrix(0.178967,0.003937,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178967,0.003937,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178967,0.003937,-0.005499,0.249940,0,0);}
.m25_c00420{transform:matrix(0.179031,0.003760,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179031,0.003760,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179031,0.003760,-0.005249,0.249945,0,0);}
.m5c_c00420{transform:matrix(0.179165,0.003762,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179165,0.003762,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179165,0.003762,-0.005249,0.249945,0,0);}
.m5a_c00420{transform:matrix(0.179290,0.003765,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179290,0.003765,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179290,0.003765,-0.005249,0.249945,0,0);}
.m80_c00420{transform:matrix(0.179720,0.003774,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179720,0.003774,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179720,0.003774,-0.005249,0.249945,0,0);}
.me2_c00420{transform:matrix(0.180710,0.003795,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180710,0.003795,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180710,0.003795,-0.005249,0.249945,0,0);}
.m2e_c00420{transform:matrix(0.180930,0.003800,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180930,0.003800,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180930,0.003800,-0.005249,0.249945,0,0);}
.m93_c00420{transform:matrix(0.181330,0.003808,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181330,0.003808,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181330,0.003808,-0.005249,0.249945,0,0);}
.m21_c00420{transform:matrix(0.181465,0.003811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181465,0.003811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181465,0.003811,-0.005249,0.249945,0,0);}
.m6d_c00420{transform:matrix(0.181490,0.003811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181490,0.003811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181490,0.003811,-0.005249,0.249945,0,0);}
.m3c_c00420{transform:matrix(0.181585,0.003813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181585,0.003813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181585,0.003813,-0.005249,0.249945,0,0);}
.mb0_c00420{transform:matrix(0.181635,0.003814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181635,0.003814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181635,0.003814,-0.005249,0.249945,0,0);}
.m9a_c00420{transform:matrix(0.182930,0.003842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182930,0.003842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182930,0.003842,-0.005249,0.249945,0,0);}
.m92_c00420{transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);}
.m63_c00420{transform:matrix(0.183330,0.003850,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183330,0.003850,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183330,0.003850,-0.005249,0.249945,0,0);}
.m6_c00420{transform:matrix(0.183784,0.003859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183784,0.003859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183784,0.003859,-0.005249,0.249945,0,0);}
.m28_c00420{transform:matrix(0.183889,0.003862,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183889,0.003862,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183889,0.003862,-0.005249,0.249945,0,0);}
.m12_c00420{transform:matrix(0.183909,0.003862,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183909,0.003862,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183909,0.003862,-0.005249,0.249945,0,0);}
.mc4_c00420{transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183954,0.003863,-0.005249,0.249945,0,0);}
.mcc_c00420{transform:matrix(0.183989,0.003864,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183989,0.003864,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183989,0.003864,-0.005249,0.249945,0,0);}
.m76_c00420{transform:matrix(0.184064,0.003865,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184064,0.003865,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184064,0.003865,-0.005249,0.249945,0,0);}
.mb6_c00420{transform:matrix(0.184149,0.003867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184149,0.003867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184149,0.003867,-0.005249,0.249945,0,0);}
.m54_c00420{transform:matrix(0.184154,0.003867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184154,0.003867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184154,0.003867,-0.005249,0.249945,0,0);}
.m6b_c00420{transform:matrix(0.184284,0.003870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184284,0.003870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184284,0.003870,-0.005249,0.249945,0,0);}
.m11_c00420{transform:matrix(0.184424,0.003873,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184424,0.003873,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184424,0.003873,-0.005249,0.249945,0,0);}
.m83_c00420{transform:matrix(0.184529,0.003875,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184529,0.003875,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184529,0.003875,-0.005249,0.249945,0,0);}
.meb_c00420{transform:matrix(0.184559,0.003876,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184559,0.003876,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184559,0.003876,-0.005249,0.249945,0,0);}
.m1e_c00420{transform:matrix(0.184594,0.003876,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184594,0.003876,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184594,0.003876,-0.005249,0.249945,0,0);}
.mbf_c00420{transform:matrix(0.185044,0.003886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185044,0.003886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185044,0.003886,-0.005249,0.249945,0,0);}
.mc5_c00420{transform:matrix(0.185094,0.003887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185094,0.003887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185094,0.003887,-0.005249,0.249945,0,0);}
.mb1_c00420{transform:matrix(0.185159,0.003888,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185159,0.003888,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185159,0.003888,-0.005249,0.249945,0,0);}
.m2a_c00420{transform:matrix(0.185264,0.003891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185264,0.003891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185264,0.003891,-0.005249,0.249945,0,0);}
.m9_c00420{transform:matrix(0.185459,0.003895,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185459,0.003895,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185459,0.003895,-0.005249,0.249945,0,0);}
.maf_c00420{transform:matrix(0.186184,0.003910,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186184,0.003910,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186184,0.003910,-0.005249,0.249945,0,0);}
.m6a_c00420{transform:matrix(0.186379,0.003914,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186379,0.003914,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186379,0.003914,-0.005249,0.249945,0,0);}
.mf1_c00420{transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186614,0.003919,-0.005249,0.249945,0,0);}
.md3_c00420{transform:matrix(0.186619,0.003919,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186619,0.003919,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186619,0.003919,-0.005249,0.249945,0,0);}
.m2f_c00420{transform:matrix(0.187219,0.003932,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187219,0.003932,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187219,0.003932,-0.005249,0.249945,0,0);}
.m0_c00420{transform:matrix(0.187949,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187949,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187949,0.003947,-0.005249,0.249945,0,0);}
.m32_c00420{transform:matrix(0.188019,0.003948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188019,0.003948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188019,0.003948,-0.005249,0.249945,0,0);}
.ma0_c00420{transform:matrix(0.188668,0.003962,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188668,0.003962,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188668,0.003962,-0.005249,0.249945,0,0);}
.m15_c00420{transform:matrix(0.189438,0.003978,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189438,0.003978,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189438,0.003978,-0.005249,0.249945,0,0);}
.m5f_c00420{transform:matrix(0.189868,0.003987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189868,0.003987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189868,0.003987,-0.005249,0.249945,0,0);}
.mab_c00420{transform:matrix(0.190188,0.003994,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190188,0.003994,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190188,0.003994,-0.005249,0.249945,0,0);}
.m5_c00420{transform:matrix(0.190423,0.003999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190423,0.003999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190423,0.003999,-0.005249,0.249945,0,0);}
.me0_c00420{transform:matrix(0.190633,0.004003,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190633,0.004003,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190633,0.004003,-0.005249,0.249945,0,0);}
.mc6_c00420{transform:matrix(0.190758,0.004006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190758,0.004006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190758,0.004006,-0.005249,0.249945,0,0);}
.mec_c00420{transform:matrix(0.190763,0.004006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190763,0.004006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190763,0.004006,-0.005249,0.249945,0,0);}
.md8_c00420{transform:matrix(0.191013,0.004011,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191013,0.004011,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191013,0.004011,-0.005249,0.249945,0,0);}
.m85_c00420{transform:matrix(0.191098,0.004013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191098,0.004013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191098,0.004013,-0.005249,0.249945,0,0);}
.mac_c00420{transform:matrix(0.191578,0.004023,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191578,0.004023,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191578,0.004023,-0.005249,0.249945,0,0);}
.m3_c00420{transform:matrix(0.191723,0.004026,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191723,0.004026,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191723,0.004026,-0.005249,0.249945,0,0);}
.m3e_c00420{transform:matrix(0.192198,0.004036,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192198,0.004036,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192198,0.004036,-0.005249,0.249945,0,0);}
.m1f_c00420{transform:matrix(0.192313,0.004039,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192313,0.004039,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192313,0.004039,-0.005249,0.249945,0,0);}
.mf2_c00420{transform:matrix(0.192678,0.004046,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192678,0.004046,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192678,0.004046,-0.005249,0.249945,0,0);}
.m45_c00420{transform:matrix(0.193177,0.004057,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193177,0.004057,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193177,0.004057,-0.005249,0.249945,0,0);}
.m62_c00420{transform:matrix(0.193267,0.004059,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193267,0.004059,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193267,0.004059,-0.005249,0.249945,0,0);}
.m5b_c00420{transform:matrix(0.193682,0.004067,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193682,0.004067,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193682,0.004067,-0.005249,0.249945,0,0);}
.mc0_c00420{transform:matrix(0.193702,0.004068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193702,0.004068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193702,0.004068,-0.005249,0.249945,0,0);}
.mdc_c00420{transform:matrix(0.193747,0.004069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193747,0.004069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193747,0.004069,-0.005249,0.249945,0,0);}
.m4e_c00420{transform:matrix(0.193837,0.004071,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193837,0.004071,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193837,0.004071,-0.005249,0.249945,0,0);}
.mb9_c00420{transform:matrix(0.194052,0.004075,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194052,0.004075,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194052,0.004075,-0.005249,0.249945,0,0);}
.m46_c00420{transform:matrix(0.194502,0.004085,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194502,0.004085,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194502,0.004085,-0.005249,0.249945,0,0);}
.m31_c00420{transform:matrix(0.194632,0.004087,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194632,0.004087,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194632,0.004087,-0.005249,0.249945,0,0);}
.m1c_c00420{transform:matrix(0.194707,0.004089,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194707,0.004089,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194707,0.004089,-0.005249,0.249945,0,0);}
.m23_c00420{transform:matrix(0.194772,0.004090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194772,0.004090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194772,0.004090,-0.005249,0.249945,0,0);}
.m89_c00420{transform:matrix(0.194992,0.004095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194992,0.004095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194992,0.004095,-0.005249,0.249945,0,0);}
.ma3_c00420{transform:matrix(0.195492,0.004105,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195492,0.004105,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195492,0.004105,-0.005249,0.249945,0,0);}
.m1a_c00420{transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195572,0.004107,-0.005249,0.249945,0,0);}
.m58_c00420{transform:matrix(0.195787,0.004112,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195787,0.004112,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195787,0.004112,-0.005249,0.249945,0,0);}
.m18_c00420{transform:matrix(0.196222,0.004121,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196222,0.004121,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196222,0.004121,-0.005249,0.249945,0,0);}
.m6c_c00420{transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196937,0.004136,-0.005249,0.249945,0,0);}
.mef_c00420{transform:matrix(0.197057,0.004138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197057,0.004138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197057,0.004138,-0.005249,0.249945,0,0);}
.m86_c00420{transform:matrix(0.197262,0.004142,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197262,0.004142,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197262,0.004142,-0.005249,0.249945,0,0);}
.m50_c00420{transform:matrix(0.197541,0.004148,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197541,0.004148,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197541,0.004148,-0.005249,0.249945,0,0);}
.m7d_c00420{transform:matrix(0.197651,0.004151,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197651,0.004151,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197651,0.004151,-0.005249,0.249945,0,0);}
.m9d_c00420{transform:matrix(0.197666,0.004151,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197666,0.004151,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197666,0.004151,-0.005249,0.249945,0,0);}
.mdf_c00420{transform:matrix(0.197706,0.004152,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197706,0.004152,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197706,0.004152,-0.005249,0.249945,0,0);}
.m47_c00420{transform:matrix(0.197756,0.004153,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197756,0.004153,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197756,0.004153,-0.005249,0.249945,0,0);}
.m6f_c00420{transform:matrix(0.197981,0.004158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197981,0.004158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197981,0.004158,-0.005249,0.249945,0,0);}
.m39_c00420{transform:matrix(0.198606,0.004171,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198606,0.004171,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198606,0.004171,-0.005249,0.249945,0,0);}
.m95_c00420{transform:matrix(0.198831,0.004175,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198831,0.004175,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198831,0.004175,-0.005249,0.249945,0,0);}
.m4b_c00420{transform:matrix(0.198841,0.004176,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198841,0.004176,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198841,0.004176,-0.005249,0.249945,0,0);}
.m103_c00420{transform:matrix(0.199182,0.004382,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199182,0.004382,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199182,0.004382,-0.005499,0.249940,0,0);}
.m8f_c00420{transform:matrix(0.199381,0.004187,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199381,0.004187,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199381,0.004187,-0.005249,0.249945,0,0);}
.m20_c00420{transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);}
.mf_c00420{transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);}
.m65_c00420{transform:matrix(0.199876,0.004197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199876,0.004197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199876,0.004197,-0.005249,0.249945,0,0);}
.m82_c00420{transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200261,0.004205,-0.005249,0.249945,0,0);}
.m1d_c00420{transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200781,0.004216,-0.005249,0.249945,0,0);}
.m4a_c00420{transform:matrix(0.201311,0.004228,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201311,0.004228,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201311,0.004228,-0.005249,0.249945,0,0);}
.m7_c00420{transform:matrix(0.201571,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201571,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201571,0.004233,-0.005249,0.249945,0,0);}
.mb2_c00420{transform:matrix(0.202170,0.004246,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202170,0.004246,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202170,0.004246,-0.005249,0.249945,0,0);}
.mc_c00420{transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202350,0.004249,-0.005249,0.249945,0,0);}
.mfc_c00420{transform:matrix(0.202356,0.004452,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202356,0.004452,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202356,0.004452,-0.005499,0.249940,0,0);}
.mc8_c00420{transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);}
.m35_c00420{transform:matrix(0.202990,0.004263,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202990,0.004263,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202990,0.004263,-0.005249,0.249945,0,0);}
.m73_c00420{transform:matrix(0.203210,0.004267,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203210,0.004267,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203210,0.004267,-0.005249,0.249945,0,0);}
.m74_c00420{transform:matrix(0.203950,0.004283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203950,0.004283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203950,0.004283,-0.005249,0.249945,0,0);}
.m56_c00420{transform:matrix(0.203960,0.004283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203960,0.004283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203960,0.004283,-0.005249,0.249945,0,0);}
.m2b_c00420{transform:matrix(0.204095,0.004286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204095,0.004286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204095,0.004286,-0.005249,0.249945,0,0);}
.m4c_c00420{transform:matrix(0.204195,0.004288,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204195,0.004288,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204195,0.004288,-0.005249,0.249945,0,0);}
.me8_c00420{transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);}
.mc7_c00420{transform:matrix(0.204280,0.004290,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204280,0.004290,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204280,0.004290,-0.005249,0.249945,0,0);}
.m16_c00420{transform:matrix(0.204305,0.004290,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204305,0.004290,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204305,0.004290,-0.005249,0.249945,0,0);}
.m96_c00420{transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);}
.m70_c00420{transform:matrix(0.204630,0.004297,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204630,0.004297,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204630,0.004297,-0.005249,0.249945,0,0);}
.m36_c00420{transform:matrix(0.205320,0.004312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205320,0.004312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205320,0.004312,-0.005249,0.249945,0,0);}
.m8e_c00420{transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);}
.mbd_c00420{transform:matrix(0.206080,0.004328,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206080,0.004328,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206080,0.004328,-0.005249,0.249945,0,0);}
.m98_c00420{transform:matrix(0.206439,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206439,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206439,0.004335,-0.005249,0.249945,0,0);}
.mb_c00420{transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);}
.mf7_c00420{transform:matrix(0.206904,0.004345,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206904,0.004345,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206904,0.004345,-0.005249,0.249945,0,0);}
.md_c00420{transform:matrix(0.207074,0.004349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207074,0.004349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207074,0.004349,-0.005249,0.249945,0,0);}
.mae_c00420{transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208289,0.004374,-0.005249,0.249945,0,0);}
.md4_c00420{transform:matrix(0.208364,0.004376,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208364,0.004376,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208364,0.004376,-0.005249,0.249945,0,0);}
.me4_c00420{transform:matrix(0.209724,0.004404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209724,0.004404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209724,0.004404,-0.005249,0.249945,0,0);}
.mfd_c00420{transform:matrix(0.209934,0.004619,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209934,0.004619,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209934,0.004619,-0.005499,0.249940,0,0);}
.m81_c00420{transform:matrix(0.210094,0.004412,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210094,0.004412,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210094,0.004412,-0.005249,0.249945,0,0);}
.m7c_c00420{transform:matrix(0.210249,0.004415,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210249,0.004415,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210249,0.004415,-0.005249,0.249945,0,0);}
.m69_c00420{transform:matrix(0.210409,0.004419,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210409,0.004419,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210409,0.004419,-0.005249,0.249945,0,0);}
.m64_c00420{transform:matrix(0.210764,0.004426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210764,0.004426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210764,0.004426,-0.005249,0.249945,0,0);}
.m8a_c00420{transform:matrix(0.211278,0.004437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211278,0.004437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211278,0.004437,-0.005249,0.249945,0,0);}
.m90_c00420{transform:matrix(0.211503,0.004442,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211503,0.004442,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211503,0.004442,-0.005249,0.249945,0,0);}
.mfe_c00420{transform:matrix(0.211574,0.004655,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211574,0.004655,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211574,0.004655,-0.005499,0.249940,0,0);}
.m6e_c00420{transform:matrix(0.212008,0.004452,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212008,0.004452,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212008,0.004452,-0.005249,0.249945,0,0);}
.m9c_c00420{transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);}
.m19_c00420{transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);}
.m66_c00420{transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);}
.mff_c00420{transform:matrix(0.214043,0.004709,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214043,0.004709,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214043,0.004709,-0.005499,0.249940,0,0);}
.m44_c00420{transform:matrix(0.214268,0.004500,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214268,0.004500,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214268,0.004500,-0.005249,0.249945,0,0);}
.m7a_c00420{transform:matrix(0.214418,0.004503,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214418,0.004503,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214418,0.004503,-0.005249,0.249945,0,0);}
.md2_c00420{transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);}
.m87_c00420{transform:matrix(0.215408,0.004524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215408,0.004524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215408,0.004524,-0.005249,0.249945,0,0);}
.m94_c00420{transform:matrix(0.215572,0.004527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215572,0.004527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215572,0.004527,-0.005249,0.249945,0,0);}
.m52_c00420{transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);}
.ma5_c00420{transform:matrix(0.216322,0.004543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216322,0.004543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216322,0.004543,-0.005249,0.249945,0,0);}
.m99_c00420{transform:matrix(0.216562,0.004548,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216562,0.004548,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216562,0.004548,-0.005249,0.249945,0,0);}
.mc1_c00420{transform:matrix(0.216577,0.004548,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216577,0.004548,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216577,0.004548,-0.005249,0.249945,0,0);}
.m84_c00420{transform:matrix(0.216897,0.004555,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216897,0.004555,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216897,0.004555,-0.005249,0.249945,0,0);}
.me5_c00420{transform:matrix(0.217107,0.004559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217107,0.004559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217107,0.004559,-0.005249,0.249945,0,0);}
.m57_c00420{transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217137,0.004560,-0.005249,0.249945,0,0);}
.m42_c00420{transform:matrix(0.217432,0.004566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217432,0.004566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217432,0.004566,-0.005249,0.249945,0,0);}
.ma4_c00420{transform:matrix(0.217487,0.004567,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217487,0.004567,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217487,0.004567,-0.005249,0.249945,0,0);}
.m53_c00420{transform:matrix(0.217807,0.004574,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217807,0.004574,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217807,0.004574,-0.005249,0.249945,0,0);}
.me3_c00420{transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218452,0.004587,-0.005249,0.249945,0,0);}
.m38_c00420{transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);}
.m97_c00420{transform:matrix(0.218667,0.004592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218667,0.004592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218667,0.004592,-0.005249,0.249945,0,0);}
.m17_c00420{transform:matrix(0.218692,0.004593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218692,0.004593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218692,0.004593,-0.005249,0.249945,0,0);}
.m4f_c00420{transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219007,0.004599,-0.005249,0.249945,0,0);}
.m60_c00420{transform:matrix(0.219417,0.004608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219417,0.004608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219417,0.004608,-0.005249,0.249945,0,0);}
.m10_c00420{transform:matrix(0.219981,0.004620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219981,0.004620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219981,0.004620,-0.005249,0.249945,0,0);}
.m100_c00420{transform:matrix(0.220522,0.004851,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220522,0.004851,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220522,0.004851,-0.005499,0.249940,0,0);}
.md5_c00420{transform:matrix(0.220746,0.004636,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220746,0.004636,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220746,0.004636,-0.005249,0.249945,0,0);}
.m101_c00420{transform:matrix(0.220942,0.004861,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220942,0.004861,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220942,0.004861,-0.005499,0.249940,0,0);}
.m4d_c00420{transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);}
.ma6_c00420{transform:matrix(0.221426,0.004650,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221426,0.004650,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221426,0.004650,-0.005249,0.249945,0,0);}
.m8d_c00420{transform:matrix(0.221826,0.004658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221826,0.004658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221826,0.004658,-0.005249,0.249945,0,0);}
.m3b_c00420{transform:matrix(0.223121,0.004686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223121,0.004686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223121,0.004686,-0.005249,0.249945,0,0);}
.m37_c00420{transform:matrix(0.223151,0.004686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223151,0.004686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223151,0.004686,-0.005249,0.249945,0,0);}
.m9e_c00420{transform:matrix(0.223661,0.004697,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223661,0.004697,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223661,0.004697,-0.005249,0.249945,0,0);}
.m8c_c00420{transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224860,0.004722,-0.005249,0.249945,0,0);}
.m78_c00420{transform:matrix(0.225220,0.004730,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225220,0.004730,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225220,0.004730,-0.005249,0.249945,0,0);}
.md1_c00420{transform:matrix(0.227635,0.004780,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227635,0.004780,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227635,0.004780,-0.005249,0.249945,0,0);}
.m3f_c00420{transform:matrix(0.229384,0.004817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229384,0.004817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229384,0.004817,-0.005249,0.249945,0,0);}
.mf5_c00420{transform:matrix(0.230259,0.004835,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230259,0.004835,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230259,0.004835,-0.005249,0.249945,0,0);}
.mbe_c00420{transform:matrix(0.231329,0.004858,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231329,0.004858,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231329,0.004858,-0.005249,0.249945,0,0);}
.me6_c00420{transform:matrix(0.231429,0.004860,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231429,0.004860,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231429,0.004860,-0.005249,0.249945,0,0);}
.ma_c00420{transform:matrix(0.231984,0.004872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231984,0.004872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231984,0.004872,-0.005249,0.249945,0,0);}
.m13_c00420{transform:matrix(0.235873,0.004953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235873,0.004953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235873,0.004953,-0.005249,0.249945,0,0);}
.m77_c00420{transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);}
.mf6_c00420{transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);}
.mda_c00420{transform:matrix(0.238712,0.005013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238712,0.005013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238712,0.005013,-0.005249,0.249945,0,0);}
.md7_c00420{transform:matrix(0.242432,0.005091,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242432,0.005091,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242432,0.005091,-0.005249,0.249945,0,0);}
.mf4_c00420{transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);}
.mc3_c00420{transform:matrix(0.244326,0.005131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244326,0.005131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244326,0.005131,-0.005249,0.249945,0,0);}
.md6_c00420{transform:matrix(0.244686,0.005138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244686,0.005138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244686,0.005138,-0.005249,0.249945,0,0);}
.ma7_c00420{transform:matrix(0.245921,0.005164,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245921,0.005164,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245921,0.005164,-0.005249,0.249945,0,0);}
.m1b_c00420{transform:matrix(0.247735,0.005202,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247735,0.005202,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247735,0.005202,-0.005249,0.249945,0,0);}
.m102_c00420{transform:matrix(0.251059,0.005523,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251059,0.005523,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251059,0.005523,-0.005499,0.249940,0,0);}
.m68_c00420{transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);}
.maa_c00420{transform:matrix(0.257653,0.005411,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257653,0.005411,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257653,0.005411,-0.005249,0.249945,0,0);}
.mf3_c00420{transform:matrix(0.258048,0.005419,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258048,0.005419,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258048,0.005419,-0.005249,0.249945,0,0);}
.md9_c00420{transform:matrix(0.268756,0.005644,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268756,0.005644,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268756,0.005644,-0.005249,0.249945,0,0);}
.mce_c00420{transform:matrix(0.277414,0.005826,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277414,0.005826,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277414,0.005826,-0.005249,0.249945,0,0);}
.m105_c00420{transform:matrix(0.297613,0.006547,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297613,0.006547,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297613,0.006547,-0.005499,0.249940,0,0);}
.mcf_c00420{transform:matrix(0.299369,0.006287,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299369,0.006287,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299369,0.006287,-0.005249,0.249945,0,0);}
.m9f_c00420{transform:matrix(0.313661,0.006587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.313661,0.006587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.313661,0.006587,-0.005249,0.249945,0,0);}
.med_c00420{transform:matrix(0.317520,0.006668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.317520,0.006668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.317520,0.006668,-0.005249,0.249945,0,0);}
.m106_c00420{transform:matrix(0.333034,0.007327,-0.005499,0.249940,0,0);-ms-transform:matrix(0.333034,0.007327,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.333034,0.007327,-0.005499,0.249940,0,0);}
.m1_c00420{transform:matrix(0.339915,0.007138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.339915,0.007138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.339915,0.007138,-0.005249,0.249945,0,0);}
.m104_c00420{transform:matrix(0.366411,0.008061,-0.005499,0.249940,0,0);-ms-transform:matrix(0.366411,0.008061,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.366411,0.008061,-0.005499,0.249940,0,0);}
.me9_c00420{transform:matrix(0.385605,0.008098,-0.005249,0.249945,0,0);-ms-transform:matrix(0.385605,0.008098,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.385605,0.008098,-0.005249,0.249945,0,0);}
.m3d_c00420{transform:matrix(0.485068,0.010186,-0.005249,0.249945,0,0);-ms-transform:matrix(0.485068,0.010186,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.485068,0.010186,-0.005249,0.249945,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:0.000000px;}
.fc0_c00420{color:transparent;}
.fse_c00420{font-size:35.708638px;}
.fs3_c00420{font-size:57.762732px;}
.fsd_c00420{font-size:57.763974px;}
.fsb_c00420{font-size:58.812964px;}
.fsc_c00420{font-size:58.814228px;}
.fs8_c00420{font-size:60.913427px;}
.fs2_c00420{font-size:63.013890px;}
.fs9_c00420{font-size:64.064121px;}
.fs1_c00420{font-size:65.114353px;}
.fs6_c00420{font-size:66.164584px;}
.fs7_c00420{font-size:67.214816px;}
.fs4_c00420{font-size:68.265047px;}
.fsa_c00420{font-size:69.315279px;}
.fs5_c00420{font-size:71.415742px;}
.fs0_c00420{font-size:76.666899px;}
.y0_c00420{bottom:0.000000px;}
.y108_c00420{bottom:7.686252px;}
.y107_c00420{bottom:10.396431px;}
.y106_c00420{bottom:11.067156px;}
.y105_c00420{bottom:21.621996px;}
.y104_c00420{bottom:22.050111px;}
.y103_c00420{bottom:24.267168px;}
.y102_c00420{bottom:24.975069px;}
.y101_c00420{bottom:25.915236px;}
.y100_c00420{bottom:26.630493px;}
.yff_c00420{bottom:27.466254px;}
.yfe_c00420{bottom:29.256483px;}
.yfc_c00420{bottom:29.299266px;}
.yfd_c00420{bottom:29.712159px;}
.yfb_c00420{bottom:30.732291px;}
.yfa_c00420{bottom:35.374500px;}
.yf9_c00420{bottom:38.637924px;}
.yf8_c00420{bottom:39.900027px;}
.yf7_c00420{bottom:42.414208px;}
.yf6_c00420{bottom:44.447953px;}
.yf5_c00420{bottom:44.974579px;}
.yf4_c00420{bottom:46.069591px;}
.yf3_c00420{bottom:54.269115px;}
.yf2_c00420{bottom:55.408992px;}
.yf1_c00420{bottom:56.202435px;}
.yf0_c00420{bottom:57.130987px;}
.yef_c00420{bottom:58.086243px;}
.yee_c00420{bottom:58.748628px;}
.yed_c00420{bottom:60.273324px;}
.yec_c00420{bottom:60.960124px;}
.yeb_c00420{bottom:62.002111px;}
.yea_c00420{bottom:71.529858px;}
.ye9_c00420{bottom:72.233518px;}
.ye8_c00420{bottom:75.518263px;}
.ye7_c00420{bottom:76.077501px;}
.ye6_c00420{bottom:77.777058px;}
.ye5_c00420{bottom:78.745452px;}
.ye4_c00420{bottom:88.058221px;}
.ye3_c00420{bottom:88.710765px;}
.ye2_c00420{bottom:90.058320px;}
.ye1_c00420{bottom:92.486344px;}
.ye0_c00420{bottom:93.180549px;}
.ydf_c00420{bottom:93.737604px;}
.yde_c00420{bottom:94.092075px;}
.ydd_c00420{bottom:95.372683px;}
.ydc_c00420{bottom:95.895027px;}
.ydb_c00420{bottom:96.570852px;}
.yda_c00420{bottom:106.524175px;}
.yd9_c00420{bottom:107.169402px;}
.yd8_c00420{bottom:108.633376px;}
.yd7_c00420{bottom:109.188310px;}
.yd6_c00420{bottom:110.543841px;}
.yd5_c00420{bottom:111.214893px;}
.yd4_c00420{bottom:111.730449px;}
.yd3_c00420{bottom:113.312746px;}
.yd2_c00420{bottom:122.695132px;}
.yd1_c00420{bottom:122.919187px;}
.yd0_c00420{bottom:123.335625px;}
.ycf_c00420{bottom:124.308136px;}
.yce_c00420{bottom:125.529784px;}
.ycd_c00420{bottom:126.145447px;}
.ycc_c00420{bottom:127.400721px;}
.ycb_c00420{bottom:127.847665px;}
.yca_c00420{bottom:128.182519px;}
.yc9_c00420{bottom:129.789172px;}
.yc8_c00420{bottom:139.439154px;}
.yc7_c00420{bottom:140.369301px;}
.yc6_c00420{bottom:140.812666px;}
.yc5_c00420{bottom:141.394801px;}
.yc4_c00420{bottom:142.039939px;}
.yc3_c00420{bottom:142.203825px;}
.yc2_c00420{bottom:156.201045px;}
.yc1_c00420{bottom:156.937048px;}
.yc0_c00420{bottom:157.484434px;}
.ybf_c00420{bottom:158.447142px;}
.ybe_c00420{bottom:159.643440px;}
.ybd_c00420{bottom:160.103293px;}
.ybc_c00420{bottom:160.641021px;}
.ybb_c00420{bottom:162.098487px;}
.yba_c00420{bottom:162.619607px;}
.yb9_c00420{bottom:163.006645px;}
.yb8_c00420{bottom:173.923581px;}
.yb7_c00420{bottom:174.648550px;}
.yb6_c00420{bottom:175.611192px;}
.yb5_c00420{bottom:177.372054px;}
.yb4_c00420{bottom:178.079735px;}
.yb3_c00420{bottom:178.749813px;}
.yb2_c00420{bottom:180.831296px;}
.yb1_c00420{bottom:189.717219px;}
.yb0_c00420{bottom:190.398362px;}
.yaf_c00420{bottom:192.660965px;}
.yae_c00420{bottom:193.244753px;}
.yad_c00420{bottom:194.160804px;}
.yac_c00420{bottom:196.334880px;}
.yab_c00420{bottom:197.846477px;}
.yaa_c00420{bottom:207.122816px;}
.ya9_c00420{bottom:208.662162px;}
.ya8_c00420{bottom:209.336906px;}
.ya7_c00420{bottom:211.765688px;}
.ya6_c00420{bottom:212.383179px;}
.ya5_c00420{bottom:214.482797px;}
.ya4_c00420{bottom:215.355629px;}
.ya3_c00420{bottom:216.482352px;}
.ya2_c00420{bottom:222.931170px;}
.ya1_c00420{bottom:223.460661px;}
.ya0_c00420{bottom:223.940652px;}
.y9f_c00420{bottom:226.580925px;}
.y9e_c00420{bottom:227.336336px;}
.y9d_c00420{bottom:229.287188px;}
.y9c_c00420{bottom:229.857603px;}
.y9b_c00420{bottom:231.602919px;}
.y9a_c00420{bottom:241.536845px;}
.y99_c00420{bottom:242.921100px;}
.y98_c00420{bottom:243.228774px;}
.y97_c00420{bottom:244.927665px;}
.y96_c00420{bottom:245.413338px;}
.y95_c00420{bottom:246.877886px;}
.y94_c00420{bottom:247.329933px;}
.y93_c00420{bottom:248.613237px;}
.y92_c00420{bottom:258.293526px;}
.y91_c00420{bottom:261.203083px;}
.y90_c00420{bottom:262.447218px;}
.y8f_c00420{bottom:263.199927px;}
.y8e_c00420{bottom:264.572394px;}
.y8d_c00420{bottom:264.967278px;}
.y8c_c00420{bottom:265.895592px;}
.y8b_c00420{bottom:275.664493px;}
.y8a_c00420{bottom:276.863748px;}
.y89_c00420{bottom:277.809126px;}
.y88_c00420{bottom:280.695036px;}
.y87_c00420{bottom:282.234493px;}
.y86_c00420{bottom:282.914553px;}
.y85_c00420{bottom:294.491729px;}
.y84_c00420{bottom:295.165486px;}
.y83_c00420{bottom:296.902287px;}
.y82_c00420{bottom:297.185217px;}
.y81_c00420{bottom:298.274172px;}
.y80_c00420{bottom:299.274325px;}
.y7f_c00420{bottom:299.901090px;}
.y7e_c00420{bottom:300.733185px;}
.y7d_c00420{bottom:311.144418px;}
.y7c_c00420{bottom:311.716918px;}
.y7b_c00420{bottom:312.668448px;}
.y7a_c00420{bottom:313.168221px;}
.y79_c00420{bottom:313.776697px;}
.y78_c00420{bottom:314.548654px;}
.y77_c00420{bottom:314.870355px;}
.y76_c00420{bottom:315.384310px;}
.y75_c00420{bottom:317.152286px;}
.y74_c00420{bottom:317.684853px;}
.y73_c00420{bottom:318.290117px;}
.y72_c00420{bottom:328.216106px;}
.y71_c00420{bottom:328.987158px;}
.y70_c00420{bottom:331.110420px;}
.y6f_c00420{bottom:332.315621px;}
.y6e_c00420{bottom:334.223377px;}
.y6d_c00420{bottom:344.611033px;}
.y6c_c00420{bottom:345.400549px;}
.y6b_c00420{bottom:346.949058px;}
.y6a_c00420{bottom:349.624510px;}
.y69_c00420{bottom:350.085292px;}
.y68_c00420{bottom:350.426122px;}
.y67_c00420{bottom:360.265713px;}
.y66_c00420{bottom:361.414633px;}
.y65_c00420{bottom:361.952367px;}
.y64_c00420{bottom:362.393463px;}
.y63_c00420{bottom:363.462189px;}
.y62_c00420{bottom:363.899158px;}
.y61_c00420{bottom:365.315418px;}
.y60_c00420{bottom:365.778930px;}
.y5f_c00420{bottom:366.629401px;}
.y5e_c00420{bottom:377.003588px;}
.y5d_c00420{bottom:378.092085px;}
.y5c_c00420{bottom:378.670271px;}
.y5b_c00420{bottom:379.345043px;}
.y5a_c00420{bottom:379.654554px;}
.y59_c00420{bottom:380.016960px;}
.y58_c00420{bottom:380.791776px;}
.y57_c00420{bottom:380.986706px;}
.y56_c00420{bottom:381.478397px;}
.y55_c00420{bottom:394.306002px;}
.y54_c00420{bottom:394.613801px;}
.y53_c00420{bottom:395.927384px;}
.y52_c00420{bottom:396.448491px;}
.y51_c00420{bottom:398.281512px;}
.y50_c00420{bottom:399.301527px;}
.y4f_c00420{bottom:410.350967px;}
.y4e_c00420{bottom:411.605297px;}
.y4d_c00420{bottom:411.865833px;}
.y4c_c00420{bottom:412.585892px;}
.y4b_c00420{bottom:413.635913px;}
.y4a_c00420{bottom:414.269850px;}
.y49_c00420{bottom:414.853009px;}
.y48_c00420{bottom:415.453904px;}
.y47_c00420{bottom:416.045347px;}
.y46_c00420{bottom:427.226295px;}
.y45_c00420{bottom:429.106032px;}
.y44_c00420{bottom:429.502126px;}
.y43_c00420{bottom:430.752373px;}
.y42_c00420{bottom:431.235734px;}
.y41_c00420{bottom:431.779230px;}
.y40_c00420{bottom:432.110305px;}
.y3f_c00420{bottom:433.332479px;}
.y3e_c00420{bottom:443.791427px;}
.y3d_c00420{bottom:444.803742px;}
.y3c_c00420{bottom:446.740478px;}
.y3b_c00420{bottom:447.162095px;}
.y3a_c00420{bottom:447.667764px;}
.y39_c00420{bottom:449.073434px;}
.y38_c00420{bottom:450.343848px;}
.y37_c00420{bottom:461.053922px;}
.y36_c00420{bottom:461.961627px;}
.y35_c00420{bottom:462.497689px;}
.y34_c00420{bottom:463.887968px;}
.y33_c00420{bottom:464.360535px;}
.y32_c00420{bottom:465.520524px;}
.y31_c00420{bottom:465.992808px;}
.y30_c00420{bottom:467.087128px;}
.y2f_c00420{bottom:477.373076px;}
.y2e_c00420{bottom:477.875720px;}
.y2d_c00420{bottom:478.507449px;}
.y2c_c00420{bottom:480.007569px;}
.y2b_c00420{bottom:480.683942px;}
.y2a_c00420{bottom:481.315009px;}
.y29_c00420{bottom:482.753626px;}
.y28_c00420{bottom:493.955818px;}
.y27_c00420{bottom:494.364216px;}
.y26_c00420{bottom:494.762691px;}
.y25_c00420{bottom:495.481553px;}
.y24_c00420{bottom:496.076650px;}
.y23_c00420{bottom:496.674237px;}
.y22_c00420{bottom:497.530470px;}
.y21_c00420{bottom:498.743598px;}
.y20_c00420{bottom:499.373062px;}
.y1f_c00420{bottom:499.763851px;}
.y1e_c00420{bottom:513.105712px;}
.y1d_c00420{bottom:513.393318px;}
.y1c_c00420{bottom:513.598256px;}
.y1b_c00420{bottom:514.511459px;}
.y1a_c00420{bottom:515.107205px;}
.y19_c00420{bottom:515.402047px;}
.y18_c00420{bottom:515.705671px;}
.y17_c00420{bottom:516.252027px;}
.y16_c00420{bottom:516.617268px;}
.y15_c00420{bottom:516.774358px;}
.y14_c00420{bottom:530.441994px;}
.y13_c00420{bottom:530.754120px;}
.y12_c00420{bottom:531.583638px;}
.y11_c00420{bottom:532.171821px;}
.y10_c00420{bottom:532.394397px;}
.yf_c00420{bottom:532.579726px;}
.ye_c00420{bottom:533.494183px;}
.yd_c00420{bottom:533.813012px;}
.yc_c00420{bottom:534.599613px;}
.yb_c00420{bottom:546.890615px;}
.ya_c00420{bottom:547.623440px;}
.y9_c00420{bottom:547.929852px;}
.y8_c00420{bottom:548.250853px;}
.y7_c00420{bottom:549.179144px;}
.y6_c00420{bottom:549.793355px;}
.y5_c00420{bottom:550.198772px;}
.y4_c00420{bottom:550.820598px;}
.y3_c00420{bottom:551.071678px;}
.y2_c00420{bottom:560.051787px;}
.y1_c00420{bottom:562.417500px;}
.hf_c00420{height:35.708638px;}
.h4_c00420{height:57.762732px;}
.he_c00420{height:57.763974px;}
.hc_c00420{height:58.812964px;}
.hd_c00420{height:58.814228px;}
.h9_c00420{height:60.913427px;}
.h3_c00420{height:63.013890px;}
.ha_c00420{height:64.064121px;}
.h2_c00420{height:65.114353px;}
.h7_c00420{height:66.164584px;}
.h8_c00420{height:67.214816px;}
.h5_c00420{height:68.265047px;}
.hb_c00420{height:69.315279px;}
.h6_c00420{height:71.415742px;}
.h1_c00420{height:76.666899px;}
.h0_c00420{height:608.250000px;}
.w0_c00420{width:359.100000px;}
.w1_c00420{width:359.250000px;}
.x0_c00420{left:0.000000px;}
.xc_c00420{left:12.472310px;}
.x34_c00420{left:15.140443px;}
.x3_c00420{left:17.864947px;}
.x76_c00420{left:19.292803px;}
.x7a_c00420{left:20.308992px;}
.x88_c00420{left:21.697500px;}
.x3f_c00420{left:22.749211px;}
.x72_c00420{left:25.519701px;}
.x15_c00420{left:26.568858px;}
.x67_c00420{left:29.033484px;}
.x4_c00420{left:33.537086px;}
.x16_c00420{left:37.050681px;}
.x83_c00420{left:39.135390px;}
.x7f_c00420{left:40.541947px;}
.x35_c00420{left:43.304443px;}
.x5b_c00420{left:45.218913px;}
.x6b_c00420{left:47.881250px;}
.x8a_c00420{left:49.099725px;}
.x58_c00420{left:52.326381px;}
.x40_c00420{left:53.523456px;}
.x4c_c00420{left:55.160862px;}
.x47_c00420{left:56.170900px;}
.x52_c00420{left:57.705368px;}
.x5f_c00420{left:59.468243px;}
.xd_c00420{left:61.648976px;}
.x82_c00420{left:62.860476px;}
.x25_c00420{left:64.260030px;}
.x41_c00420{left:65.664216px;}
.x1b_c00420{left:66.958683px;}
.x63_c00420{left:69.047244px;}
.x6c_c00420{left:70.865060px;}
.x5_c00420{left:72.437680px;}
.x60_c00420{left:75.270920px;}
.x30_c00420{left:76.506709px;}
.x2c_c00420{left:79.095919px;}
.xe_c00420{left:81.619086px;}
.x26_c00420{left:83.962801px;}
.x64_c00420{left:87.143232px;}
.x31_c00420{left:90.271327px;}
.x84_c00420{left:93.160416px;}
.x5c_c00420{left:96.516711px;}
.x6_c00420{left:97.817358px;}
.x36_c00420{left:99.687943px;}
.x21_c00420{left:108.224288px;}
.x77_c00420{left:110.217727px;}
.x32_c00420{left:112.936410px;}
.x42_c00420{left:114.065287px;}
.x7b_c00420{left:115.822460px;}
.x17_c00420{left:118.071387px;}
.x53_c00420{left:123.172115px;}
.x1c_c00420{left:124.726683px;}
.x6d_c00420{left:126.112841px;}
.x80_c00420{left:128.141583px;}
.x37_c00420{left:129.875443px;}
.x78_c00420{left:130.893054px;}
.x27_c00420{left:132.268746px;}
.x7_c00420{left:136.212390px;}
.x22_c00420{left:137.645559px;}
.xf_c00420{left:138.742071px;}
.x48_c00420{left:141.610605px;}
.x6f_c00420{left:142.612613px;}
.x1_c00420{left:144.667500px;}
.x65_c00420{left:145.735818px;}
.x73_c00420{left:149.013025px;}
.x10_c00420{left:150.282768px;}
.x28_c00420{left:151.985017px;}
.x54_c00420{left:154.104209px;}
.x43_c00420{left:156.137229px;}
.x2d_c00420{left:158.749911px;}
.x61_c00420{left:160.319801px;}
.x49_c00420{left:161.489695px;}
.x11_c00420{left:164.240249px;}
.x1d_c00420{left:165.499683px;}
.x3b_c00420{left:168.623247px;}
.x59_c00420{left:170.434436px;}
.x2e_c00420{left:176.325808px;}
.x18_c00420{left:177.487884px;}
.x38_c00420{left:179.876443px;}
.x68_c00420{left:181.209149px;}
.x4d_c00420{left:182.563362px;}
.x33_c00420{left:185.198874px;}
.x70_c00420{left:189.451277px;}
.x7c_c00420{left:190.622660px;}
.x8b_c00420{left:191.641470px;}
.x5d_c00420{left:192.708535px;}
.x8_c00420{left:194.208469px;}
.x3c_c00420{left:196.081912px;}
.x44_c00420{left:198.273639px;}
.x12_c00420{left:200.967092px;}
.x23_c00420{left:202.862819px;}
.x55_c00420{left:205.261283px;}
.x6e_c00420{left:206.287738px;}
.x29_c00420{left:209.899363px;}
.x74_c00420{left:211.925796px;}
.x9_c00420{left:214.282080px;}
.x85_c00420{left:220.340026px;}
.x1e_c00420{left:222.294183px;}
.x56_c00420{left:223.771952px;}
.x39_c00420{left:226.571443px;}
.x81_c00420{left:228.869446px;}
.x24_c00420{left:230.301153px;}
.x2a_c00420{left:232.210446px;}
.xa_c00420{left:233.446596px;}
.x45_c00420{left:234.452950px;}
.x8d_c00420{left:236.226435px;}
.x19_c00420{left:238.338539px;}
.x7d_c00420{left:239.506564px;}
.x50_c00420{left:244.613680px;}
.x75_c00420{left:246.332256px;}
.x86_c00420{left:249.458662px;}
.x13_c00420{left:252.830541px;}
.x4a_c00420{left:254.633274px;}
.x4e_c00420{left:256.301862px;}
.x2_c00420{left:257.320500px;}
.x57_c00420{left:259.007010px;}
.x71_c00420{left:260.177960px;}
.x69_c00420{left:261.201988px;}
.x5e_c00420{left:264.177522px;}
.x3d_c00420{left:265.207810px;}
.x8c_c00420{left:267.195855px;}
.x2b_c00420{left:270.003552px;}
.x1a_c00420{left:271.225697px;}
.x14_c00420{left:272.338589px;}
.x79_c00420{left:273.671736px;}
.x1f_c00420{left:275.500683px;}
.x51_c00420{left:278.114763px;}
.xb_c00420{left:279.276415px;}
.x3e_c00420{left:281.437003px;}
.x3a_c00420{left:286.301443px;}
.x5a_c00420{left:287.548022px;}
.x6a_c00420{left:291.836303px;}
.x4f_c00420{left:293.897862px;}
.x20_c00420{left:294.948183px;}
.x87_c00420{left:296.195772px;}
.x89_c00420{left:297.844500px;}
.x2f_c00420{left:299.249091px;}
.x66_c00420{left:300.746277px;}
.x46_c00420{left:302.507601px;}
.x7e_c00420{left:304.025147px;}
.x4b_c00420{left:306.842671px;}
.x62_c00420{left:326.457846px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fse_c00420{font-size:31.741012pt;}
.fs3_c00420{font-size:51.344651pt;}
.fsd_c00420{font-size:51.345754pt;}
.fsb_c00420{font-size:52.278190pt;}
.fsc_c00420{font-size:52.279314pt;}
.fs8_c00420{font-size:54.145268pt;}
.fs2_c00420{font-size:56.012347pt;}
.fs9_c00420{font-size:56.945886pt;}
.fs1_c00420{font-size:57.879425pt;}
.fs6_c00420{font-size:58.812964pt;}
.fs7_c00420{font-size:59.746503pt;}
.fs4_c00420{font-size:60.680042pt;}
.fsa_c00420{font-size:61.613581pt;}
.fs5_c00420{font-size:63.480660pt;}
.fs0_c00420{font-size:68.148355pt;}
.y0_c00420{bottom:0.000000pt;}
.y108_c00420{bottom:6.832224pt;}
.y107_c00420{bottom:9.241272pt;}
.y106_c00420{bottom:9.837472pt;}
.y105_c00420{bottom:19.219552pt;}
.y104_c00420{bottom:19.600099pt;}
.y103_c00420{bottom:21.570816pt;}
.y102_c00420{bottom:22.200061pt;}
.y101_c00420{bottom:23.035765pt;}
.y100_c00420{bottom:23.671549pt;}
.yff_c00420{bottom:24.414448pt;}
.yfe_c00420{bottom:26.005763pt;}
.yfc_c00420{bottom:26.043792pt;}
.yfd_c00420{bottom:26.410808pt;}
.yfb_c00420{bottom:27.317592pt;}
.yfa_c00420{bottom:31.444000pt;}
.yf9_c00420{bottom:34.344821pt;}
.yf8_c00420{bottom:35.466691pt;}
.yf7_c00420{bottom:37.701519pt;}
.yf6_c00420{bottom:39.509292pt;}
.yf5_c00420{bottom:39.977404pt;}
.yf4_c00420{bottom:40.950748pt;}
.yf3_c00420{bottom:48.239213pt;}
.yf2_c00420{bottom:49.252437pt;}
.yf1_c00420{bottom:49.957720pt;}
.yf0_c00420{bottom:50.783100pt;}
.yef_c00420{bottom:51.632216pt;}
.yee_c00420{bottom:52.221003pt;}
.yed_c00420{bottom:53.576288pt;}
.yec_c00420{bottom:54.186777pt;}
.yeb_c00420{bottom:55.112988pt;}
.yea_c00420{bottom:63.582096pt;}
.ye9_c00420{bottom:64.207572pt;}
.ye8_c00420{bottom:67.127345pt;}
.ye7_c00420{bottom:67.624445pt;}
.ye6_c00420{bottom:69.135163pt;}
.ye5_c00420{bottom:69.995957pt;}
.ye4_c00420{bottom:78.273975pt;}
.ye3_c00420{bottom:78.854013pt;}
.ye2_c00420{bottom:80.051840pt;}
.ye1_c00420{bottom:82.210084pt;}
.ye0_c00420{bottom:82.827155pt;}
.ydf_c00420{bottom:83.322315pt;}
.yde_c00420{bottom:83.637400pt;}
.ydd_c00420{bottom:84.775719pt;}
.ydc_c00420{bottom:85.240024pt;}
.ydb_c00420{bottom:85.840757pt;}
.yda_c00420{bottom:94.688156pt;}
.yd9_c00420{bottom:95.261691pt;}
.yd8_c00420{bottom:96.563001pt;}
.yd7_c00420{bottom:97.056276pt;}
.yd6_c00420{bottom:98.261192pt;}
.yd5_c00420{bottom:98.857683pt;}
.yd4_c00420{bottom:99.315955pt;}
.yd3_c00420{bottom:100.722441pt;}
.yd2_c00420{bottom:109.062340pt;}
.yd1_c00420{bottom:109.261500pt;}
.yd0_c00420{bottom:109.631667pt;}
.ycf_c00420{bottom:110.496121pt;}
.yce_c00420{bottom:111.582031pt;}
.ycd_c00420{bottom:112.129287pt;}
.ycc_c00420{bottom:113.245085pt;}
.ycb_c00420{bottom:113.642369pt;}
.yca_c00420{bottom:113.940017pt;}
.yc9_c00420{bottom:115.368153pt;}
.yc8_c00420{bottom:123.945915pt;}
.yc7_c00420{bottom:124.772712pt;}
.yc6_c00420{bottom:125.166815pt;}
.yc5_c00420{bottom:125.684268pt;}
.yc4_c00420{bottom:126.257724pt;}
.yc3_c00420{bottom:126.403400pt;}
.yc2_c00420{bottom:138.845373pt;}
.yc1_c00420{bottom:139.499599pt;}
.yc0_c00420{bottom:139.986164pt;}
.ybf_c00420{bottom:140.841904pt;}
.ybe_c00420{bottom:141.905280pt;}
.ybd_c00420{bottom:142.314039pt;}
.ybc_c00420{bottom:142.792019pt;}
.ybb_c00420{bottom:144.087544pt;}
.yba_c00420{bottom:144.550761pt;}
.yb9_c00420{bottom:144.894796pt;}
.yb8_c00420{bottom:154.598739pt;}
.yb7_c00420{bottom:155.243156pt;}
.yb6_c00420{bottom:156.098837pt;}
.yb5_c00420{bottom:157.664048pt;}
.yb4_c00420{bottom:158.293097pt;}
.yb3_c00420{bottom:158.888723pt;}
.yb2_c00420{bottom:160.738929pt;}
.yb1_c00420{bottom:168.637528pt;}
.yb0_c00420{bottom:169.242988pt;}
.yaf_c00420{bottom:171.254191pt;}
.yae_c00420{bottom:171.773113pt;}
.yad_c00420{bottom:172.587381pt;}
.yac_c00420{bottom:174.519893pt;}
.yab_c00420{bottom:175.863535pt;}
.yaa_c00420{bottom:184.109169pt;}
.ya9_c00420{bottom:185.477477pt;}
.ya8_c00420{bottom:186.077249pt;}
.ya7_c00420{bottom:188.236167pt;}
.ya6_c00420{bottom:188.785048pt;}
.ya5_c00420{bottom:190.651375pt;}
.ya4_c00420{bottom:191.427225pt;}
.ya3_c00420{bottom:192.428757pt;}
.ya2_c00420{bottom:198.161040pt;}
.ya1_c00420{bottom:198.631699pt;}
.ya0_c00420{bottom:199.058357pt;}
.y9f_c00420{bottom:201.405267pt;}
.y9e_c00420{bottom:202.076743pt;}
.y9d_c00420{bottom:203.810833pt;}
.y9c_c00420{bottom:204.317869pt;}
.y9b_c00420{bottom:205.869261pt;}
.y9a_c00420{bottom:214.699417pt;}
.y99_c00420{bottom:215.929867pt;}
.y98_c00420{bottom:216.203355pt;}
.y97_c00420{bottom:217.713480pt;}
.y96_c00420{bottom:218.145189pt;}
.y95_c00420{bottom:219.447009pt;}
.y94_c00420{bottom:219.848829pt;}
.y93_c00420{bottom:220.989544pt;}
.y92_c00420{bottom:229.594245pt;}
.y91_c00420{bottom:232.180519pt;}
.y90_c00420{bottom:233.286416pt;}
.y8f_c00420{bottom:233.955491pt;}
.y8e_c00420{bottom:235.175461pt;}
.y8d_c00420{bottom:235.526469pt;}
.y8c_c00420{bottom:236.351637pt;}
.y8b_c00420{bottom:245.035105pt;}
.y8a_c00420{bottom:246.101109pt;}
.y89_c00420{bottom:246.941445pt;}
.y88_c00420{bottom:249.506699pt;}
.y87_c00420{bottom:250.875105pt;}
.y86_c00420{bottom:251.479603pt;}
.y85_c00420{bottom:261.770425pt;}
.y84_c00420{bottom:262.369321pt;}
.y83_c00420{bottom:263.913144pt;}
.y82_c00420{bottom:264.164637pt;}
.y81_c00420{bottom:265.132597pt;}
.y80_c00420{bottom:266.021623pt;}
.y7f_c00420{bottom:266.578747pt;}
.y7e_c00420{bottom:267.318387pt;}
.y7d_c00420{bottom:276.572816pt;}
.y7c_c00420{bottom:277.081705pt;}
.y7b_c00420{bottom:277.927509pt;}
.y7a_c00420{bottom:278.371752pt;}
.y79_c00420{bottom:278.912620pt;}
.y78_c00420{bottom:279.598804pt;}
.y77_c00420{bottom:279.884760pt;}
.y76_c00420{bottom:280.341609pt;}
.y75_c00420{bottom:281.913143pt;}
.y74_c00420{bottom:282.386536pt;}
.y73_c00420{bottom:282.924548pt;}
.y72_c00420{bottom:291.747649pt;}
.y71_c00420{bottom:292.433029pt;}
.y70_c00420{bottom:294.320373pt;}
.y6f_c00420{bottom:295.391663pt;}
.y6e_c00420{bottom:297.087447pt;}
.y6d_c00420{bottom:306.320919pt;}
.y6c_c00420{bottom:307.022711pt;}
.y6b_c00420{bottom:308.399163pt;}
.y6a_c00420{bottom:310.777343pt;}
.y69_c00420{bottom:311.186927pt;}
.y68_c00420{bottom:311.489887pt;}
.y67_c00420{bottom:320.236189pt;}
.y66_c00420{bottom:321.257452pt;}
.y65_c00420{bottom:321.735437pt;}
.y64_c00420{bottom:322.127523pt;}
.y63_c00420{bottom:323.077501pt;}
.y62_c00420{bottom:323.465919pt;}
.y61_c00420{bottom:324.724816pt;}
.y60_c00420{bottom:325.136827pt;}
.y5f_c00420{bottom:325.892801pt;}
.y5e_c00420{bottom:335.114300pt;}
.y5d_c00420{bottom:336.081853pt;}
.y5c_c00420{bottom:336.595796pt;}
.y5b_c00420{bottom:337.195593pt;}
.y5a_c00420{bottom:337.470715pt;}
.y59_c00420{bottom:337.792853pt;}
.y58_c00420{bottom:338.481579pt;}
.y57_c00420{bottom:338.654849pt;}
.y56_c00420{bottom:339.091908pt;}
.y55_c00420{bottom:350.494224pt;}
.y54_c00420{bottom:350.767823pt;}
.y53_c00420{bottom:351.935452pt;}
.y52_c00420{bottom:352.398659pt;}
.y51_c00420{bottom:354.028011pt;}
.y50_c00420{bottom:354.934691pt;}
.y4f_c00420{bottom:364.756415pt;}
.y4e_c00420{bottom:365.871375pt;}
.y4d_c00420{bottom:366.102963pt;}
.y4c_c00420{bottom:366.743015pt;}
.y4b_c00420{bottom:367.676367pt;}
.y4a_c00420{bottom:368.239867pt;}
.y49_c00420{bottom:368.758231pt;}
.y48_c00420{bottom:369.292359pt;}
.y47_c00420{bottom:369.818087pt;}
.y46_c00420{bottom:379.756707pt;}
.y45_c00420{bottom:381.427584pt;}
.y44_c00420{bottom:381.779668pt;}
.y43_c00420{bottom:382.890999pt;}
.y42_c00420{bottom:383.320652pt;}
.y41_c00420{bottom:383.803760pt;}
.y40_c00420{bottom:384.098049pt;}
.y3f_c00420{bottom:385.184425pt;}
.y3e_c00420{bottom:394.481268pt;}
.y3d_c00420{bottom:395.381104pt;}
.y3c_c00420{bottom:397.102647pt;}
.y3b_c00420{bottom:397.477417pt;}
.y3a_c00420{bottom:397.926901pt;}
.y39_c00420{bottom:399.176385pt;}
.y38_c00420{bottom:400.305643pt;}
.y37_c00420{bottom:409.825708pt;}
.y36_c00420{bottom:410.632557pt;}
.y35_c00420{bottom:411.109057pt;}
.y34_c00420{bottom:412.344860pt;}
.y33_c00420{bottom:412.764920pt;}
.y32_c00420{bottom:413.796021pt;}
.y31_c00420{bottom:414.215829pt;}
.y30_c00420{bottom:415.188559pt;}
.y2f_c00420{bottom:424.331623pt;}
.y2e_c00420{bottom:424.778417pt;}
.y2d_c00420{bottom:425.339955pt;}
.y2c_c00420{bottom:426.673395pt;}
.y2b_c00420{bottom:427.274615pt;}
.y2a_c00420{bottom:427.835564pt;}
.y29_c00420{bottom:429.114335pt;}
.y28_c00420{bottom:439.071839pt;}
.y27_c00420{bottom:439.434859pt;}
.y26_c00420{bottom:439.789059pt;}
.y25_c00420{bottom:440.428047pt;}
.y24_c00420{bottom:440.957023pt;}
.y23_c00420{bottom:441.488211pt;}
.y22_c00420{bottom:442.249307pt;}
.y21_c00420{bottom:443.327643pt;}
.y20_c00420{bottom:443.887167pt;}
.y1f_c00420{bottom:444.234535pt;}
.y1e_c00420{bottom:456.093967pt;}
.y1d_c00420{bottom:456.349616pt;}
.y1c_c00420{bottom:456.531783pt;}
.y1b_c00420{bottom:457.343519pt;}
.y1a_c00420{bottom:457.873071pt;}
.y19_c00420{bottom:458.135153pt;}
.y18_c00420{bottom:458.405041pt;}
.y17_c00420{bottom:458.890691pt;}
.y16_c00420{bottom:459.215349pt;}
.y15_c00420{bottom:459.354985pt;}
.y14_c00420{bottom:471.503995pt;}
.y13_c00420{bottom:471.781440pt;}
.y12_c00420{bottom:472.518789pt;}
.y11_c00420{bottom:473.041619pt;}
.y10_c00420{bottom:473.239464pt;}
.yf_c00420{bottom:473.404201pt;}
.ye_c00420{bottom:474.217052pt;}
.yd_c00420{bottom:474.500455pt;}
.yc_c00420{bottom:475.199656pt;}
.yb_c00420{bottom:486.124991pt;}
.ya_c00420{bottom:486.776391pt;}
.y9_c00420{bottom:487.048757pt;}
.y8_c00420{bottom:487.334092pt;}
.y7_c00420{bottom:488.159239pt;}
.y6_c00420{bottom:488.705204pt;}
.y5_c00420{bottom:489.065575pt;}
.y4_c00420{bottom:489.618309pt;}
.y3_c00420{bottom:489.841492pt;}
.y2_c00420{bottom:497.823811pt;}
.y1_c00420{bottom:499.926667pt;}
.hf_c00420{height:31.741012pt;}
.h4_c00420{height:51.344651pt;}
.he_c00420{height:51.345754pt;}
.hc_c00420{height:52.278190pt;}
.hd_c00420{height:52.279314pt;}
.h9_c00420{height:54.145268pt;}
.h3_c00420{height:56.012347pt;}
.ha_c00420{height:56.945886pt;}
.h2_c00420{height:57.879425pt;}
.h7_c00420{height:58.812964pt;}
.h8_c00420{height:59.746503pt;}
.h5_c00420{height:60.680042pt;}
.hb_c00420{height:61.613581pt;}
.h6_c00420{height:63.480660pt;}
.h1_c00420{height:68.148355pt;}
.h0_c00420{height:540.666667pt;}
.w0_c00420{width:319.200000pt;}
.w1_c00420{width:319.333333pt;}
.x0_c00420{left:0.000000pt;}
.xc_c00420{left:11.086497pt;}
.x34_c00420{left:13.458172pt;}
.x3_c00420{left:15.879953pt;}
.x76_c00420{left:17.149159pt;}
.x7a_c00420{left:18.052437pt;}
.x88_c00420{left:19.286667pt;}
.x3f_c00420{left:20.221521pt;}
.x72_c00420{left:22.684179pt;}
.x15_c00420{left:23.616763pt;}
.x67_c00420{left:25.807541pt;}
.x4_c00420{left:29.810743pt;}
.x16_c00420{left:32.933939pt;}
.x83_c00420{left:34.787013pt;}
.x7f_c00420{left:36.037287pt;}
.x35_c00420{left:38.492839pt;}
.x5b_c00420{left:40.194589pt;}
.x6b_c00420{left:42.561111pt;}
.x8a_c00420{left:43.644200pt;}
.x58_c00420{left:46.512339pt;}
.x40_c00420{left:47.576405pt;}
.x4c_c00420{left:49.031877pt;}
.x47_c00420{left:49.929689pt;}
.x52_c00420{left:51.293660pt;}
.x5f_c00420{left:52.860660pt;}
.xd_c00420{left:54.799089pt;}
.x82_c00420{left:55.875979pt;}
.x25_c00420{left:57.120027pt;}
.x41_c00420{left:58.368192pt;}
.x1b_c00420{left:59.518829pt;}
.x63_c00420{left:61.375328pt;}
.x6c_c00420{left:62.991164pt;}
.x5_c00420{left:64.389049pt;}
.x60_c00420{left:66.907484pt;}
.x30_c00420{left:68.005964pt;}
.x2c_c00420{left:70.307484pt;}
.xe_c00420{left:72.550299pt;}
.x26_c00420{left:74.633601pt;}
.x64_c00420{left:77.460651pt;}
.x31_c00420{left:80.241180pt;}
.x84_c00420{left:82.809259pt;}
.x5c_c00420{left:85.792632pt;}
.x6_c00420{left:86.948763pt;}
.x36_c00420{left:88.611505pt;}
.x21_c00420{left:96.199367pt;}
.x77_c00420{left:97.971313pt;}
.x32_c00420{left:100.387920pt;}
.x42_c00420{left:101.391367pt;}
.x7b_c00420{left:102.953297pt;}
.x17_c00420{left:104.952344pt;}
.x53_c00420{left:109.486324pt;}
.x1c_c00420{left:110.868163pt;}
.x6d_c00420{left:112.100303pt;}
.x80_c00420{left:113.903629pt;}
.x37_c00420{left:115.444839pt;}
.x78_c00420{left:116.349381pt;}
.x27_c00420{left:117.572219pt;}
.x7_c00420{left:121.077680pt;}
.x22_c00420{left:122.351608pt;}
.xf_c00420{left:123.326285pt;}
.x48_c00420{left:125.876093pt;}
.x6f_c00420{left:126.766767pt;}
.x1_c00420{left:128.593333pt;}
.x65_c00420{left:129.542949pt;}
.x73_c00420{left:132.456023pt;}
.x10_c00420{left:133.584683pt;}
.x28_c00420{left:135.097793pt;}
.x54_c00420{left:136.981519pt;}
.x43_c00420{left:138.788648pt;}
.x2d_c00420{left:141.111032pt;}
.x61_c00420{left:142.506489pt;}
.x49_c00420{left:143.546396pt;}
.x11_c00420{left:145.991332pt;}
.x1d_c00420{left:147.110829pt;}
.x3b_c00420{left:149.887331pt;}
.x59_c00420{left:151.497276pt;}
.x2e_c00420{left:156.734052pt;}
.x18_c00420{left:157.767008pt;}
.x38_c00420{left:159.890172pt;}
.x68_c00420{left:161.074799pt;}
.x4d_c00420{left:162.278544pt;}
.x33_c00420{left:164.621221pt;}
.x70_c00420{left:168.401135pt;}
.x7c_c00420{left:169.442364pt;}
.x8b_c00420{left:170.347973pt;}
.x5d_c00420{left:171.296476pt;}
.x8_c00420{left:172.629751pt;}
.x3c_c00420{left:174.295033pt;}
.x44_c00420{left:176.243235pt;}
.x12_c00420{left:178.637415pt;}
.x23_c00420{left:180.322505pt;}
.x55_c00420{left:182.454473pt;}
.x6e_c00420{left:183.366879pt;}
.x29_c00420{left:186.577212pt;}
.x74_c00420{left:188.378485pt;}
.x9_c00420{left:190.472960pt;}
.x85_c00420{left:195.857801pt;}
.x1e_c00420{left:197.594829pt;}
.x56_c00420{left:198.908401pt;}
.x39_c00420{left:201.396839pt;}
.x81_c00420{left:203.439508pt;}
.x24_c00420{left:204.712136pt;}
.x2a_c00420{left:206.409285pt;}
.xa_c00420{left:207.508085pt;}
.x45_c00420{left:208.402623pt;}
.x8d_c00420{left:209.979053pt;}
.x19_c00420{left:211.856479pt;}
.x7d_c00420{left:212.894724pt;}
.x50_c00420{left:217.434383pt;}
.x75_c00420{left:218.962005pt;}
.x86_c00420{left:221.741033pt;}
.x13_c00420{left:224.738259pt;}
.x4a_c00420{left:226.340688pt;}
.x4e_c00420{left:227.823877pt;}
.x2_c00420{left:228.729333pt;}
.x57_c00420{left:230.228453pt;}
.x71_c00420{left:231.269297pt;}
.x69_c00420{left:232.179545pt;}
.x5e_c00420{left:234.824464pt;}
.x3d_c00420{left:235.740276pt;}
.x8c_c00420{left:237.507427pt;}
.x2b_c00420{left:240.003157pt;}
.x1a_c00420{left:241.089508pt;}
.x14_c00420{left:242.078745pt;}
.x79_c00420{left:243.263765pt;}
.x1f_c00420{left:244.889496pt;}
.x51_c00420{left:247.213123pt;}
.xb_c00420{left:248.245703pt;}
.x3e_c00420{left:250.166225pt;}
.x3a_c00420{left:254.490172pt;}
.x5a_c00420{left:255.598241pt;}
.x6a_c00420{left:259.410047pt;}
.x4f_c00420{left:261.242544pt;}
.x20_c00420{left:262.176163pt;}
.x87_c00420{left:263.285131pt;}
.x89_c00420{left:264.750667pt;}
.x2f_c00420{left:265.999192pt;}
.x66_c00420{left:267.330024pt;}
.x46_c00420{left:268.895645pt;}
.x7e_c00420{left:270.244575pt;}
.x4b_c00420{left:272.749041pt;}
.x62_c00420{left:290.184752pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00421 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00421.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_c00421{transform:matrix(0.019275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019275,0.000000,0.000000,0.250000,0,0);}
.mca_c00421{transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020535,0.000000,0.000000,0.250000,0,0);}
.mdf_c00421{transform:matrix(0.038545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038545,0.000000,0.000000,0.250000,0,0);}
.m6a_c00421{transform:matrix(0.080170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080170,0.000000,0.000000,0.250000,0,0);}
.m6d_c00421{transform:matrix(0.114715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114715,0.000000,0.000000,0.250000,0,0);}
.mc0_c00421{transform:matrix(0.131920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131920,0.000000,0.000000,0.250000,0,0);}
.mde_c00421{transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);}
.md6_c00421{transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);}
.mbf_c00421{transform:matrix(0.149305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149305,0.000000,0.000000,0.250000,0,0);}
.m37_c00421{transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151320,0.000000,0.000000,0.250000,0,0);}
.ma1_c00421{transform:matrix(0.152640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152640,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153490,0.000000,0.000000,0.250000,0,0);}
.m63_c00421{transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.154090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154090,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156385,0.000000,0.000000,0.250000,0,0);}
.m45_c00421{transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157880,0.000000,0.000000,0.250000,0,0);}
.mee_c00421{transform:matrix(0.158740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158740,0.000000,0.000000,0.250000,0,0);}
.maf_c00421{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160990,0.000000,0.000000,0.250000,0,0);}
.m9a_c00421{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.mce_c00421{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163480,0.000000,0.000000,0.250000,0,0);}
.mef_c00421{transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163885,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164495,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164860,0.000000,0.000000,0.250000,0,0);}
.med_c00421{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.mbc_c00421{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166370,0.000000,0.000000,0.250000,0,0);}
.m94_c00421{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m97_c00421{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.m84_c00421{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00421{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00421{transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);}
.m88_c00421{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172460,0.000000,0.000000,0.250000,0,0);}
.m46_c00421{transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);}
.m4c_c00421{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.md9_c00421{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.mdc_c00421{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.mab_c00421{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.mc5_c00421{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mf2_c00421{transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);}
.mcc_c00421{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00421{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m32_c00421{transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);}
.m7a_c00421{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.mcd_c00421{transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);}
.m8a_c00421{transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185785,0.000000,0.000000,0.250000,0,0);}
.mb4_c00421{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m56_c00421{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m55_c00421{transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188890,0.000000,0.000000,0.250000,0,0);}
.m80_c00421{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m33_c00421{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189990,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190110,0.000000,0.000000,0.250000,0,0);}
.mac_c00421{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.mb0_c00421{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.m44_c00421{transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192160,0.000000,0.000000,0.250000,0,0);}
.mbe_c00421{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.m73_c00421{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m72_c00421{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.me7_c00421{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.md1_c00421{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.m4e_c00421{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.ma0_c00421{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m62_c00421{transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194060,0.000000,0.000000,0.250000,0,0);}
.ma7_c00421{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m3b_c00421{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.m7b_c00421{transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m7f_c00421{transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);}
.m85_c00421{transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195390,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00421{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.md4_c00421{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);}
.m2c_c00421{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m28_c00421{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.md2_c00421{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00421{transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198585,0.000000,0.000000,0.250000,0,0);}
.m6f_c00421{transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198635,0.000000,0.000000,0.250000,0,0);}
.mdd_c00421{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m3a_c00421{transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200305,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200745,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m60_c00421{transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201190,0.000000,0.000000,0.250000,0,0);}
.mad_c00421{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m78_c00421{transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);}
.me5_c00421{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.m91_c00421{transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);}
.me0_c00421{transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204040,0.000000,0.000000,0.250000,0,0);}
.mf0_c00421{transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204160,0.000000,0.000000,0.250000,0,0);}
.m95_c00421{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.mdb_c00421{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mc3_c00421{transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);}
.mc7_c00421{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205755,0.000000,0.000000,0.250000,0,0);}
.m9e_c00421{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.md8_c00421{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m49_c00421{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.meb_c00421{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207655,0.000000,0.000000,0.250000,0,0);}
.m68_c00421{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m69_c00421{transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207790,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);}
.mea_c00421{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m86_c00421{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.md0_c00421{transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208760,0.000000,0.000000,0.250000,0,0);}
.m47_c00421{transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);}
.m79_c00421{transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);}
.m58_c00421{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.m92_c00421{transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);}
.m96_c00421{transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);}
.m48_c00421{transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);}
.ma2_c00421{transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210845,0.000000,0.000000,0.250000,0,0);}
.m7d_c00421{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210895,0.000000,0.000000,0.250000,0,0);}
.mc4_c00421{transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);}
.m76_c00421{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.mda_c00421{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.ma6_c00421{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.md3_c00421{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me9_c00421{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m51_c00421{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00421{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m5a_c00421{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m9d_c00421{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);}
.m8d_c00421{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m90_c00421{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.ma8_c00421{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.m53_c00421{transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218560,0.000000,0.000000,0.250000,0,0);}
.mb3_c00421{transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00421{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00421{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.me3_c00421{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.me4_c00421{transform:matrix(0.221860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221860,0.000000,0.000000,0.250000,0,0);}
.maa_c00421{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.mbd_c00421{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00421{transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);}
.m89_c00421{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.mb5_c00421{transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223330,0.000000,0.000000,0.250000,0,0);}
.m4a_c00421{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.mb7_c00421{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.mae_c00421{transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223965,0.000000,0.000000,0.250000,0,0);}
.mb9_c00421{transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);}
.m7c_c00421{transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);}
.m4d_c00421{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00421{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.mba_c00421{transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);}
.me2_c00421{transform:matrix(0.226440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226440,0.000000,0.000000,0.250000,0,0);}
.m57_c00421{transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);}
.me6_c00421{transform:matrix(0.226535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226535,0.000000,0.000000,0.250000,0,0);}
.m8f_c00421{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m5c_c00421{transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230190,0.000000,0.000000,0.250000,0,0);}
.m9f_c00421{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00421{transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);}
.m66_c00421{transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);}
.mb8_c00421{transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);}
.me8_c00421{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m70_c00421{transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232245,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m64_c00421{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m82_c00421{transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233055,0.000000,0.000000,0.250000,0,0);}
.mbb_c00421{transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m50_c00421{transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.235845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235845,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237110,0.000000,0.000000,0.250000,0,0);}
.m75_c00421{transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238245,0.000000,0.000000,0.250000,0,0);}
.m77_c00421{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.mf1_c00421{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m9c_c00421{transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);}
.mc6_c00421{transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.me1_c00421{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m31_c00421{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m87_c00421{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.mb6_c00421{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m65_c00421{transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);}
.m81_c00421{transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253430,0.000000,0.000000,0.250000,0,0);}
.mc9_c00421{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);}
.m98_c00421{transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);}
.m6c_c00421{transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);}
.md5_c00421{transform:matrix(0.260460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260460,0.000000,0.000000,0.250000,0,0);}
.m41_c00421{transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);}
.ma4_c00421{transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);}
.mc8_c00421{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md7_c00421{transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);}
.m30_c00421{transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);}
.ma9_c00421{transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.310835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310835,0.000000,0.000000,0.250000,0,0);}
.mc1_c00421{transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);}
.m99_c00421{transform:matrix(0.339990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339990,0.000000,0.000000,0.250000,0,0);}
.m6b_c00421{transform:matrix(0.340630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340630,0.000000,0.000000,0.250000,0,0);}
.mcb_c00421{transform:matrix(0.347485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347485,0.000000,0.000000,0.250000,0,0);}
.ma3_c00421{transform:matrix(0.357035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357035,0.000000,0.000000,0.250000,0,0);}
.mc2_c00421{transform:matrix(0.382700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382700,0.000000,0.000000,0.250000,0,0);}
.mec_c00421{transform:matrix(0.516930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516930,0.000000,0.000000,0.250000,0,0);}
.m9b_c00421{transform:matrix(0.632610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632610,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(1.301585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.301585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.301585,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:0.000000px;}
.fc0_c00421{color:transparent;}
.fsc_c00421{font-size:57.750000px;}
.fs6_c00421{font-size:58.800000px;}
.fs3_c00421{font-size:59.850000px;}
.fs9_c00421{font-size:60.900000px;}
.fsa_c00421{font-size:61.950000px;}
.fs8_c00421{font-size:63.000000px;}
.fsb_c00421{font-size:64.050000px;}
.fs7_c00421{font-size:65.100000px;}
.fs2_c00421{font-size:66.150000px;}
.fs5_c00421{font-size:67.200000px;}
.fs1_c00421{font-size:69.300000px;}
.fsd_c00421{font-size:70.350000px;}
.fs4_c00421{font-size:71.400000px;}
.fs0_c00421{font-size:73.500000px;}
.fse_c00421{font-size:75.600000px;}
.y0_c00421{bottom:0.000000px;}
.ya4_c00421{bottom:20.794500px;}
.ya5_c00421{bottom:21.658500px;}
.ya6_c00421{bottom:22.350000px;}
.ya7_c00421{bottom:23.133000px;}
.ya8_c00421{bottom:24.133500px;}
.ya9_c00421{bottom:24.372000px;}
.y9c_c00421{bottom:37.533000px;}
.y9d_c00421{bottom:37.996500px;}
.y9e_c00421{bottom:38.575500px;}
.y9f_c00421{bottom:39.894000px;}
.ya0_c00421{bottom:40.060500px;}
.ya1_c00421{bottom:40.524000px;}
.ya2_c00421{bottom:40.911000px;}
.ya3_c00421{bottom:41.164500px;}
.y96_c00421{bottom:52.657500px;}
.y97_c00421{bottom:53.683500px;}
.y98_c00421{bottom:54.240000px;}
.y99_c00421{bottom:55.531500px;}
.y9a_c00421{bottom:56.937000px;}
.y9b_c00421{bottom:57.942000px;}
.y8e_c00421{bottom:72.093000px;}
.y8f_c00421{bottom:72.852000px;}
.y90_c00421{bottom:73.188000px;}
.y91_c00421{bottom:74.230500px;}
.y92_c00421{bottom:74.625000px;}
.y93_c00421{bottom:74.961000px;}
.y94_c00421{bottom:75.823500px;}
.y95_c00421{bottom:76.375500px;}
.y87_c00421{bottom:88.831500px;}
.y88_c00421{bottom:88.939500px;}
.y89_c00421{bottom:89.737500px;}
.y8a_c00421{bottom:90.276000px;}
.y8b_c00421{bottom:91.158000px;}
.y8c_c00421{bottom:91.467000px;}
.y8d_c00421{bottom:91.897500px;}
.y86_c00421{bottom:107.607000px;}
.y85_c00421{bottom:122.844000px;}
.y7c_c00421{bottom:139.053000px;}
.y7d_c00421{bottom:139.584000px;}
.y7e_c00421{bottom:139.750500px;}
.y7f_c00421{bottom:139.953000px;}
.y80_c00421{bottom:140.901000px;}
.y81_c00421{bottom:141.292500px;}
.y82_c00421{bottom:141.604500px;}
.y83_c00421{bottom:141.886500px;}
.y84_c00421{bottom:142.174500px;}
.y75_c00421{bottom:155.524500px;}
.y76_c00421{bottom:156.622500px;}
.y77_c00421{bottom:156.876000px;}
.y78_c00421{bottom:157.528500px;}
.y79_c00421{bottom:158.362500px;}
.y7a_c00421{bottom:159.310500px;}
.y7b_c00421{bottom:159.607500px;}
.y74_c00421{bottom:175.960500px;}
.y73_c00421{bottom:193.312500px;}
.y72_c00421{bottom:209.545500px;}
.y6a_c00421{bottom:224.103000px;}
.y6b_c00421{bottom:224.734500px;}
.y6c_c00421{bottom:225.114000px;}
.y6d_c00421{bottom:225.366000px;}
.y6e_c00421{bottom:226.225500px;}
.y6f_c00421{bottom:226.545000px;}
.y70_c00421{bottom:227.152500px;}
.y71_c00421{bottom:227.346000px;}
.y61_c00421{bottom:241.114500px;}
.y62_c00421{bottom:241.590000px;}
.y63_c00421{bottom:242.263500px;}
.y64_c00421{bottom:243.009000px;}
.y65_c00421{bottom:243.442500px;}
.y66_c00421{bottom:244.444500px;}
.y67_c00421{bottom:244.747500px;}
.y68_c00421{bottom:245.115000px;}
.y69_c00421{bottom:246.121500px;}
.y58_c00421{bottom:258.663000px;}
.y59_c00421{bottom:259.042500px;}
.y5a_c00421{bottom:259.797000px;}
.y5b_c00421{bottom:259.998000px;}
.y5c_c00421{bottom:260.257500px;}
.y5d_c00421{bottom:260.940000px;}
.y5e_c00421{bottom:261.180000px;}
.y5f_c00421{bottom:261.420000px;}
.y60_c00421{bottom:261.909000px;}
.y57_c00421{bottom:277.630500px;}
.y4f_c00421{bottom:292.951500px;}
.y50_c00421{bottom:293.709000px;}
.y51_c00421{bottom:294.169500px;}
.y52_c00421{bottom:294.336000px;}
.y53_c00421{bottom:294.960000px;}
.y54_c00421{bottom:295.278000px;}
.y55_c00421{bottom:295.822500px;}
.y56_c00421{bottom:296.004000px;}
.y4e_c00421{bottom:311.244000px;}
.y47_c00421{bottom:327.243000px;}
.y48_c00421{bottom:327.820500px;}
.y49_c00421{bottom:328.014000px;}
.y4a_c00421{bottom:328.260000px;}
.y4b_c00421{bottom:329.796000px;}
.y4c_c00421{bottom:330.123000px;}
.y4d_c00421{bottom:330.895500px;}
.y46_c00421{bottom:345.888000px;}
.y45_c00421{bottom:363.552000px;}
.y3e_c00421{bottom:379.080000px;}
.y3f_c00421{bottom:379.998000px;}
.y40_c00421{bottom:380.206500px;}
.y41_c00421{bottom:380.928000px;}
.y42_c00421{bottom:381.112500px;}
.y43_c00421{bottom:381.460500px;}
.y44_c00421{bottom:381.693000px;}
.y36_c00421{bottom:393.664500px;}
.y37_c00421{bottom:394.336500px;}
.y38_c00421{bottom:394.554000px;}
.y39_c00421{bottom:394.873500px;}
.y3a_c00421{bottom:395.641500px;}
.y3b_c00421{bottom:396.067500px;}
.y3c_c00421{bottom:396.430500px;}
.y3d_c00421{bottom:396.915000px;}
.y35_c00421{bottom:412.813500px;}
.y34_c00421{bottom:429.588000px;}
.y2a_c00421{bottom:445.233000px;}
.y2b_c00421{bottom:445.690500px;}
.y2c_c00421{bottom:445.912500px;}
.y2d_c00421{bottom:446.256000px;}
.y2e_c00421{bottom:446.626500px;}
.y2f_c00421{bottom:446.827500px;}
.y30_c00421{bottom:447.624000px;}
.y31_c00421{bottom:447.939000px;}
.y32_c00421{bottom:448.140000px;}
.y33_c00421{bottom:448.629000px;}
.y29_c00421{bottom:465.163500px;}
.y22_c00421{bottom:480.331500px;}
.y23_c00421{bottom:481.251000px;}
.y24_c00421{bottom:481.398000px;}
.y25_c00421{bottom:481.831500px;}
.y26_c00421{bottom:482.398500px;}
.y27_c00421{bottom:482.713500px;}
.y28_c00421{bottom:483.484500px;}
.y1a_c00421{bottom:495.994500px;}
.y1b_c00421{bottom:496.687500px;}
.y1c_c00421{bottom:497.083500px;}
.y1d_c00421{bottom:497.994000px;}
.y1e_c00421{bottom:498.444000px;}
.y1f_c00421{bottom:498.682500px;}
.y20_c00421{bottom:499.528500px;}
.y21_c00421{bottom:499.816500px;}
.y13_c00421{bottom:513.541500px;}
.y14_c00421{bottom:514.018500px;}
.y15_c00421{bottom:514.575000px;}
.y16_c00421{bottom:515.295000px;}
.y17_c00421{bottom:516.027000px;}
.y18_c00421{bottom:516.292500px;}
.y19_c00421{bottom:516.976500px;}
.ya_c00421{bottom:530.553000px;}
.yb_c00421{bottom:531.028500px;}
.yc_c00421{bottom:531.633000px;}
.yd_c00421{bottom:531.901500px;}
.ye_c00421{bottom:532.528500px;}
.yf_c00421{bottom:532.945500px;}
.y10_c00421{bottom:533.176500px;}
.y11_c00421{bottom:533.455500px;}
.y12_c00421{bottom:534.246000px;}
.y2_c00421{bottom:547.833000px;}
.y3_c00421{bottom:548.365500px;}
.y4_c00421{bottom:548.686500px;}
.y5_c00421{bottom:549.957000px;}
.y6_c00421{bottom:550.285500px;}
.y7_c00421{bottom:551.124000px;}
.y8_c00421{bottom:551.440500px;}
.y9_c00421{bottom:551.709000px;}
.y1_c00421{bottom:562.953000px;}
.hd_c00421{height:57.750000px;}
.h7_c00421{height:58.800000px;}
.h4_c00421{height:59.850000px;}
.ha_c00421{height:60.900000px;}
.hb_c00421{height:61.950000px;}
.h9_c00421{height:63.000000px;}
.hc_c00421{height:64.050000px;}
.h8_c00421{height:65.100000px;}
.h3_c00421{height:66.150000px;}
.h6_c00421{height:67.200000px;}
.h2_c00421{height:69.300000px;}
.he_c00421{height:70.350000px;}
.h5_c00421{height:71.400000px;}
.h1_c00421{height:73.500000px;}
.hf_c00421{height:75.600000px;}
.h0_c00421{height:608.250000px;}
.w0_c00421{width:359.100000px;}
.w1_c00421{width:359.250000px;}
.x0_c00421{left:0.000000px;}
.x57_c00421{left:41.413500px;}
.x7b_c00421{left:45.133500px;}
.x7d_c00421{left:46.336500px;}
.x63_c00421{left:47.517000px;}
.x40_c00421{left:48.600000px;}
.x12_c00421{left:49.779000px;}
.x2_c00421{left:50.944500px;}
.x4b_c00421{left:55.348500px;}
.x76_c00421{left:56.847000px;}
.x4c_c00421{left:65.068500px;}
.x5c_c00421{left:71.256000px;}
.x58_c00421{left:73.057500px;}
.x44_c00421{left:74.520000px;}
.x68_c00421{left:78.297000px;}
.x64_c00421{left:80.187000px;}
.x22_c00421{left:82.620000px;}
.xa_c00421{left:84.699000px;}
.x3_c00421{left:89.014500px;}
.x36_c00421{left:91.422000px;}
.x31_c00421{left:92.610000px;}
.x7c_c00421{left:93.982500px;}
.x18_c00421{left:95.787000px;}
.x78_c00421{left:100.878000px;}
.x4d_c00421{left:102.598500px;}
.x37_c00421{left:105.000000px;}
.x28_c00421{left:106.755000px;}
.x47_c00421{left:108.435000px;}
.x23_c00421{left:109.890000px;}
.x4_c00421{left:111.906000px;}
.x5d_c00421{left:113.340000px;}
.x4e_c00421{left:117.574500px;}
.x6d_c00421{left:121.180500px;}
.x19_c00421{left:122.236500px;}
.x38_c00421{left:124.971000px;}
.x7e_c00421{left:126.534000px;}
.xb_c00421{left:127.887000px;}
.x77_c00421{left:129.423000px;}
.x45_c00421{left:130.950000px;}
.x2c_c00421{left:132.030000px;}
.x13_c00421{left:135.922500px;}
.x6e_c00421{left:138.105000px;}
.x1e_c00421{left:140.538000px;}
.x5f_c00421{left:144.883500px;}
.xc_c00421{left:147.052500px;}
.x32_c00421{left:149.580000px;}
.x3c_c00421{left:151.606500px;}
.x59_c00421{left:152.695500px;}
.x2d_c00421{left:153.900000px;}
.x69_c00421{left:157.407000px;}
.x4f_c00421{left:159.435000px;}
.x65_c00421{left:163.887000px;}
.x29_c00421{left:166.198500px;}
.x33_c00421{left:168.480000px;}
.x39_c00421{left:173.010000px;}
.x50_c00421{left:174.553500px;}
.x1f_c00421{left:176.694000px;}
.x66_c00421{left:178.467000px;}
.x1_c00421{left:181.170000px;}
.x1a_c00421{left:182.973000px;}
.x24_c00421{left:187.650000px;}
.x54_c00421{left:189.540000px;}
.xd_c00421{left:191.799000px;}
.x14_c00421{left:195.898500px;}
.x3a_c00421{left:199.647000px;}
.x5_c00421{left:202.666500px;}
.x34_c00421{left:205.200000px;}
.x25_c00421{left:206.820000px;}
.x73_c00421{left:209.517000px;}
.x60_c00421{left:211.029000px;}
.x1b_c00421{left:212.997000px;}
.x70_c00421{left:216.136500px;}
.x3d_c00421{left:217.146000px;}
.xe_c00421{left:221.565000px;}
.x20_c00421{left:223.905000px;}
.x6_c00421{left:226.159500px;}
.x79_c00421{left:227.487000px;}
.x1c_c00421{left:228.883500px;}
.x55_c00421{left:230.040000px;}
.x51_c00421{left:231.252000px;}
.x3e_c00421{left:233.887500px;}
.x35_c00421{left:235.710000px;}
.xf_c00421{left:238.039500px;}
.x7f_c00421{left:240.718500px;}
.x41_c00421{left:242.190000px;}
.x48_c00421{left:245.445000px;}
.x56_c00421{left:248.670000px;}
.x21_c00421{left:250.156500px;}
.x5a_c00421{left:251.244000px;}
.x3b_c00421{left:252.666000px;}
.x2e_c00421{left:254.610000px;}
.x15_c00421{left:256.861500px;}
.x10_c00421{left:258.019500px;}
.x52_c00421{left:260.121000px;}
.x3f_c00421{left:265.530000px;}
.x26_c00421{left:268.380000px;}
.x49_c00421{left:270.631500px;}
.x6b_c00421{left:273.237000px;}
.x2a_c00421{left:275.548500px;}
.x46_c00421{left:276.750000px;}
.x16_c00421{left:279.027000px;}
.x71_c00421{left:280.122000px;}
.x61_c00421{left:282.328500px;}
.x42_c00421{left:283.500000px;}
.x7_c00421{left:286.099500px;}
.x67_c00421{left:288.357000px;}
.x6c_c00421{left:290.247000px;}
.x27_c00421{left:291.870000px;}
.x62_c00421{left:297.162000px;}
.x2f_c00421{left:300.510000px;}
.x6a_c00421{left:303.207000px;}
.x1d_c00421{left:304.491000px;}
.x72_c00421{left:305.811000px;}
.x8_c00421{left:308.718000px;}
.x5b_c00421{left:312.015000px;}
.x7a_c00421{left:313.086000px;}
.x11_c00421{left:314.454000px;}
.x74_c00421{left:318.597000px;}
.x6f_c00421{left:320.164500px;}
.x30_c00421{left:321.570000px;}
.x53_c00421{left:326.073000px;}
.x9_c00421{left:327.895500px;}
.x4a_c00421{left:330.060000px;}
.x43_c00421{left:331.830000px;}
.x2b_c00421{left:333.073500px;}
.x17_c00421{left:335.982000px;}
.x75_c00421{left:352.617000px;}
.x5e_c00421{left:354.463500px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.fsc_c00421{font-size:51.333333pt;}
.fs6_c00421{font-size:52.266667pt;}
.fs3_c00421{font-size:53.200000pt;}
.fs9_c00421{font-size:54.133333pt;}
.fsa_c00421{font-size:55.066667pt;}
.fs8_c00421{font-size:56.000000pt;}
.fsb_c00421{font-size:56.933333pt;}
.fs7_c00421{font-size:57.866667pt;}
.fs2_c00421{font-size:58.800000pt;}
.fs5_c00421{font-size:59.733333pt;}
.fs1_c00421{font-size:61.600000pt;}
.fsd_c00421{font-size:62.533333pt;}
.fs4_c00421{font-size:63.466667pt;}
.fs0_c00421{font-size:65.333333pt;}
.fse_c00421{font-size:67.200000pt;}
.y0_c00421{bottom:0.000000pt;}
.ya4_c00421{bottom:18.484000pt;}
.ya5_c00421{bottom:19.252000pt;}
.ya6_c00421{bottom:19.866667pt;}
.ya7_c00421{bottom:20.562667pt;}
.ya8_c00421{bottom:21.452000pt;}
.ya9_c00421{bottom:21.664000pt;}
.y9c_c00421{bottom:33.362667pt;}
.y9d_c00421{bottom:33.774667pt;}
.y9e_c00421{bottom:34.289333pt;}
.y9f_c00421{bottom:35.461333pt;}
.ya0_c00421{bottom:35.609333pt;}
.ya1_c00421{bottom:36.021333pt;}
.ya2_c00421{bottom:36.365333pt;}
.ya3_c00421{bottom:36.590667pt;}
.y96_c00421{bottom:46.806667pt;}
.y97_c00421{bottom:47.718667pt;}
.y98_c00421{bottom:48.213333pt;}
.y99_c00421{bottom:49.361333pt;}
.y9a_c00421{bottom:50.610667pt;}
.y9b_c00421{bottom:51.504000pt;}
.y8e_c00421{bottom:64.082667pt;}
.y8f_c00421{bottom:64.757333pt;}
.y90_c00421{bottom:65.056000pt;}
.y91_c00421{bottom:65.982667pt;}
.y92_c00421{bottom:66.333333pt;}
.y93_c00421{bottom:66.632000pt;}
.y94_c00421{bottom:67.398667pt;}
.y95_c00421{bottom:67.889333pt;}
.y87_c00421{bottom:78.961333pt;}
.y88_c00421{bottom:79.057333pt;}
.y89_c00421{bottom:79.766667pt;}
.y8a_c00421{bottom:80.245333pt;}
.y8b_c00421{bottom:81.029333pt;}
.y8c_c00421{bottom:81.304000pt;}
.y8d_c00421{bottom:81.686667pt;}
.y86_c00421{bottom:95.650667pt;}
.y85_c00421{bottom:109.194667pt;}
.y7c_c00421{bottom:123.602667pt;}
.y7d_c00421{bottom:124.074667pt;}
.y7e_c00421{bottom:124.222667pt;}
.y7f_c00421{bottom:124.402667pt;}
.y80_c00421{bottom:125.245333pt;}
.y81_c00421{bottom:125.593333pt;}
.y82_c00421{bottom:125.870667pt;}
.y83_c00421{bottom:126.121333pt;}
.y84_c00421{bottom:126.377333pt;}
.y75_c00421{bottom:138.244000pt;}
.y76_c00421{bottom:139.220000pt;}
.y77_c00421{bottom:139.445333pt;}
.y78_c00421{bottom:140.025333pt;}
.y79_c00421{bottom:140.766667pt;}
.y7a_c00421{bottom:141.609333pt;}
.y7b_c00421{bottom:141.873333pt;}
.y74_c00421{bottom:156.409333pt;}
.y73_c00421{bottom:171.833333pt;}
.y72_c00421{bottom:186.262667pt;}
.y6a_c00421{bottom:199.202667pt;}
.y6b_c00421{bottom:199.764000pt;}
.y6c_c00421{bottom:200.101333pt;}
.y6d_c00421{bottom:200.325333pt;}
.y6e_c00421{bottom:201.089333pt;}
.y6f_c00421{bottom:201.373333pt;}
.y70_c00421{bottom:201.913333pt;}
.y71_c00421{bottom:202.085333pt;}
.y61_c00421{bottom:214.324000pt;}
.y62_c00421{bottom:214.746667pt;}
.y63_c00421{bottom:215.345333pt;}
.y64_c00421{bottom:216.008000pt;}
.y65_c00421{bottom:216.393333pt;}
.y66_c00421{bottom:217.284000pt;}
.y67_c00421{bottom:217.553333pt;}
.y68_c00421{bottom:217.880000pt;}
.y69_c00421{bottom:218.774667pt;}
.y58_c00421{bottom:229.922667pt;}
.y59_c00421{bottom:230.260000pt;}
.y5a_c00421{bottom:230.930667pt;}
.y5b_c00421{bottom:231.109333pt;}
.y5c_c00421{bottom:231.340000pt;}
.y5d_c00421{bottom:231.946667pt;}
.y5e_c00421{bottom:232.160000pt;}
.y5f_c00421{bottom:232.373333pt;}
.y60_c00421{bottom:232.808000pt;}
.y57_c00421{bottom:246.782667pt;}
.y4f_c00421{bottom:260.401333pt;}
.y50_c00421{bottom:261.074667pt;}
.y51_c00421{bottom:261.484000pt;}
.y52_c00421{bottom:261.632000pt;}
.y53_c00421{bottom:262.186667pt;}
.y54_c00421{bottom:262.469333pt;}
.y55_c00421{bottom:262.953333pt;}
.y56_c00421{bottom:263.114667pt;}
.y4e_c00421{bottom:276.661333pt;}
.y47_c00421{bottom:290.882667pt;}
.y48_c00421{bottom:291.396000pt;}
.y49_c00421{bottom:291.568000pt;}
.y4a_c00421{bottom:291.786667pt;}
.y4b_c00421{bottom:293.152000pt;}
.y4c_c00421{bottom:293.442667pt;}
.y4d_c00421{bottom:294.129333pt;}
.y46_c00421{bottom:307.456000pt;}
.y45_c00421{bottom:323.157333pt;}
.y3e_c00421{bottom:336.960000pt;}
.y3f_c00421{bottom:337.776000pt;}
.y40_c00421{bottom:337.961333pt;}
.y41_c00421{bottom:338.602667pt;}
.y42_c00421{bottom:338.766667pt;}
.y43_c00421{bottom:339.076000pt;}
.y44_c00421{bottom:339.282667pt;}
.y36_c00421{bottom:349.924000pt;}
.y37_c00421{bottom:350.521333pt;}
.y38_c00421{bottom:350.714667pt;}
.y39_c00421{bottom:350.998667pt;}
.y3a_c00421{bottom:351.681333pt;}
.y3b_c00421{bottom:352.060000pt;}
.y3c_c00421{bottom:352.382667pt;}
.y3d_c00421{bottom:352.813333pt;}
.y35_c00421{bottom:366.945333pt;}
.y34_c00421{bottom:381.856000pt;}
.y2a_c00421{bottom:395.762667pt;}
.y2b_c00421{bottom:396.169333pt;}
.y2c_c00421{bottom:396.366667pt;}
.y2d_c00421{bottom:396.672000pt;}
.y2e_c00421{bottom:397.001333pt;}
.y2f_c00421{bottom:397.180000pt;}
.y30_c00421{bottom:397.888000pt;}
.y31_c00421{bottom:398.168000pt;}
.y32_c00421{bottom:398.346667pt;}
.y33_c00421{bottom:398.781333pt;}
.y29_c00421{bottom:413.478667pt;}
.y22_c00421{bottom:426.961333pt;}
.y23_c00421{bottom:427.778667pt;}
.y24_c00421{bottom:427.909333pt;}
.y25_c00421{bottom:428.294667pt;}
.y26_c00421{bottom:428.798667pt;}
.y27_c00421{bottom:429.078667pt;}
.y28_c00421{bottom:429.764000pt;}
.y1a_c00421{bottom:440.884000pt;}
.y1b_c00421{bottom:441.500000pt;}
.y1c_c00421{bottom:441.852000pt;}
.y1d_c00421{bottom:442.661333pt;}
.y1e_c00421{bottom:443.061333pt;}
.y1f_c00421{bottom:443.273333pt;}
.y20_c00421{bottom:444.025333pt;}
.y21_c00421{bottom:444.281333pt;}
.y13_c00421{bottom:456.481333pt;}
.y14_c00421{bottom:456.905333pt;}
.y15_c00421{bottom:457.400000pt;}
.y16_c00421{bottom:458.040000pt;}
.y17_c00421{bottom:458.690667pt;}
.y18_c00421{bottom:458.926667pt;}
.y19_c00421{bottom:459.534667pt;}
.ya_c00421{bottom:471.602667pt;}
.yb_c00421{bottom:472.025333pt;}
.yc_c00421{bottom:472.562667pt;}
.yd_c00421{bottom:472.801333pt;}
.ye_c00421{bottom:473.358667pt;}
.yf_c00421{bottom:473.729333pt;}
.y10_c00421{bottom:473.934667pt;}
.y11_c00421{bottom:474.182667pt;}
.y12_c00421{bottom:474.885333pt;}
.y2_c00421{bottom:486.962667pt;}
.y3_c00421{bottom:487.436000pt;}
.y4_c00421{bottom:487.721333pt;}
.y5_c00421{bottom:488.850667pt;}
.y6_c00421{bottom:489.142667pt;}
.y7_c00421{bottom:489.888000pt;}
.y8_c00421{bottom:490.169333pt;}
.y9_c00421{bottom:490.408000pt;}
.y1_c00421{bottom:500.402667pt;}
.hd_c00421{height:51.333333pt;}
.h7_c00421{height:52.266667pt;}
.h4_c00421{height:53.200000pt;}
.ha_c00421{height:54.133333pt;}
.hb_c00421{height:55.066667pt;}
.h9_c00421{height:56.000000pt;}
.hc_c00421{height:56.933333pt;}
.h8_c00421{height:57.866667pt;}
.h3_c00421{height:58.800000pt;}
.h6_c00421{height:59.733333pt;}
.h2_c00421{height:61.600000pt;}
.he_c00421{height:62.533333pt;}
.h5_c00421{height:63.466667pt;}
.h1_c00421{height:65.333333pt;}
.hf_c00421{height:67.200000pt;}
.h0_c00421{height:540.666667pt;}
.w0_c00421{width:319.200000pt;}
.w1_c00421{width:319.333333pt;}
.x0_c00421{left:0.000000pt;}
.x57_c00421{left:36.812000pt;}
.x7b_c00421{left:40.118667pt;}
.x7d_c00421{left:41.188000pt;}
.x63_c00421{left:42.237333pt;}
.x40_c00421{left:43.200000pt;}
.x12_c00421{left:44.248000pt;}
.x2_c00421{left:45.284000pt;}
.x4b_c00421{left:49.198667pt;}
.x76_c00421{left:50.530667pt;}
.x4c_c00421{left:57.838667pt;}
.x5c_c00421{left:63.338667pt;}
.x58_c00421{left:64.940000pt;}
.x44_c00421{left:66.240000pt;}
.x68_c00421{left:69.597333pt;}
.x64_c00421{left:71.277333pt;}
.x22_c00421{left:73.440000pt;}
.xa_c00421{left:75.288000pt;}
.x3_c00421{left:79.124000pt;}
.x36_c00421{left:81.264000pt;}
.x31_c00421{left:82.320000pt;}
.x7c_c00421{left:83.540000pt;}
.x18_c00421{left:85.144000pt;}
.x78_c00421{left:89.669333pt;}
.x4d_c00421{left:91.198667pt;}
.x37_c00421{left:93.333333pt;}
.x28_c00421{left:94.893333pt;}
.x47_c00421{left:96.386667pt;}
.x23_c00421{left:97.680000pt;}
.x4_c00421{left:99.472000pt;}
.x5d_c00421{left:100.746667pt;}
.x4e_c00421{left:104.510667pt;}
.x6d_c00421{left:107.716000pt;}
.x19_c00421{left:108.654667pt;}
.x38_c00421{left:111.085333pt;}
.x7e_c00421{left:112.474667pt;}
.xb_c00421{left:113.677333pt;}
.x77_c00421{left:115.042667pt;}
.x45_c00421{left:116.400000pt;}
.x2c_c00421{left:117.360000pt;}
.x13_c00421{left:120.820000pt;}
.x6e_c00421{left:122.760000pt;}
.x1e_c00421{left:124.922667pt;}
.x5f_c00421{left:128.785333pt;}
.xc_c00421{left:130.713333pt;}
.x32_c00421{left:132.960000pt;}
.x3c_c00421{left:134.761333pt;}
.x59_c00421{left:135.729333pt;}
.x2d_c00421{left:136.800000pt;}
.x69_c00421{left:139.917333pt;}
.x4f_c00421{left:141.720000pt;}
.x65_c00421{left:145.677333pt;}
.x29_c00421{left:147.732000pt;}
.x33_c00421{left:149.760000pt;}
.x39_c00421{left:153.786667pt;}
.x50_c00421{left:155.158667pt;}
.x1f_c00421{left:157.061333pt;}
.x66_c00421{left:158.637333pt;}
.x1_c00421{left:161.040000pt;}
.x1a_c00421{left:162.642667pt;}
.x24_c00421{left:166.800000pt;}
.x54_c00421{left:168.480000pt;}
.xd_c00421{left:170.488000pt;}
.x14_c00421{left:174.132000pt;}
.x3a_c00421{left:177.464000pt;}
.x5_c00421{left:180.148000pt;}
.x34_c00421{left:182.400000pt;}
.x25_c00421{left:183.840000pt;}
.x73_c00421{left:186.237333pt;}
.x60_c00421{left:187.581333pt;}
.x1b_c00421{left:189.330667pt;}
.x70_c00421{left:192.121333pt;}
.x3d_c00421{left:193.018667pt;}
.xe_c00421{left:196.946667pt;}
.x20_c00421{left:199.026667pt;}
.x6_c00421{left:201.030667pt;}
.x79_c00421{left:202.210667pt;}
.x1c_c00421{left:203.452000pt;}
.x55_c00421{left:204.480000pt;}
.x51_c00421{left:205.557333pt;}
.x3e_c00421{left:207.900000pt;}
.x35_c00421{left:209.520000pt;}
.xf_c00421{left:211.590667pt;}
.x7f_c00421{left:213.972000pt;}
.x41_c00421{left:215.280000pt;}
.x48_c00421{left:218.173333pt;}
.x56_c00421{left:221.040000pt;}
.x21_c00421{left:222.361333pt;}
.x5a_c00421{left:223.328000pt;}
.x3b_c00421{left:224.592000pt;}
.x2e_c00421{left:226.320000pt;}
.x15_c00421{left:228.321333pt;}
.x10_c00421{left:229.350667pt;}
.x52_c00421{left:231.218667pt;}
.x3f_c00421{left:236.026667pt;}
.x26_c00421{left:238.560000pt;}
.x49_c00421{left:240.561333pt;}
.x6b_c00421{left:242.877333pt;}
.x2a_c00421{left:244.932000pt;}
.x46_c00421{left:246.000000pt;}
.x16_c00421{left:248.024000pt;}
.x71_c00421{left:248.997333pt;}
.x61_c00421{left:250.958667pt;}
.x42_c00421{left:252.000000pt;}
.x7_c00421{left:254.310667pt;}
.x67_c00421{left:256.317333pt;}
.x6c_c00421{left:257.997333pt;}
.x27_c00421{left:259.440000pt;}
.x62_c00421{left:264.144000pt;}
.x2f_c00421{left:267.120000pt;}
.x6a_c00421{left:269.517333pt;}
.x1d_c00421{left:270.658667pt;}
.x72_c00421{left:271.832000pt;}
.x8_c00421{left:274.416000pt;}
.x5b_c00421{left:277.346667pt;}
.x7a_c00421{left:278.298667pt;}
.x11_c00421{left:279.514667pt;}
.x74_c00421{left:283.197333pt;}
.x6f_c00421{left:284.590667pt;}
.x30_c00421{left:285.840000pt;}
.x53_c00421{left:289.842667pt;}
.x9_c00421{left:291.462667pt;}
.x4a_c00421{left:293.386667pt;}
.x43_c00421{left:294.960000pt;}
.x2b_c00421{left:296.065333pt;}
.x17_c00421{left:298.650667pt;}
.x75_c00421{left:313.437333pt;}
.x5e_c00421{left:315.078667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00422 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00422.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00422{transform:matrix(0.132365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132365,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m6f_c00422{transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135690,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);}
.mc4_c00422{transform:matrix(0.136640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136640,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);}
.mef_c00422{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m96_c00422{transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146160,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);}
.m3a_c00422{transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);}
.m52_c00422{transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.150595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150595,0.000000,0.000000,0.250000,0,0);}
.m92_c00422{transform:matrix(0.152490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152490,0.000000,0.000000,0.250000,0,0);}
.mb1_c00422{transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152965,0.000000,0.000000,0.250000,0,0);}
.mab_c00422{transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153105,0.000000,0.000000,0.250000,0,0);}
.m55_c00422{transform:matrix(0.153555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153555,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154030,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155665,0.000000,0.000000,0.250000,0,0);}
.mb6_c00422{transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00422{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159690,0.000000,0.000000,0.250000,0,0);}
.mb0_c00422{transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);}
.m70_c00422{transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160440,0.000000,0.000000,0.250000,0,0);}
.m97_c00422{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161845,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.md0_c00422{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.m50_c00422{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m8b_c00422{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m80_c00422{transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164335,0.000000,0.000000,0.250000,0,0);}
.mea_c00422{transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165140,0.000000,0.000000,0.250000,0,0);}
.m98_c00422{transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165630,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166145,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);}
.m9a_c00422{transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166820,0.000000,0.000000,0.250000,0,0);}
.m8e_c00422{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.m95_c00422{transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.m5f_c00422{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00422{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);}
.m60_c00422{transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171605,0.000000,0.000000,0.250000,0,0);}
.m51_c00422{transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172005,0.000000,0.000000,0.250000,0,0);}
.md1_c00422{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m82_c00422{transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.me3_c00422{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m38_c00422{transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173010,0.000000,0.000000,0.250000,0,0);}
.me0_c00422{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.m9d_c00422{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174390,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m4e_c00422{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.mc7_c00422{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.m56_c00422{transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177010,0.000000,0.000000,0.250000,0,0);}
.m7f_c00422{transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m9f_c00422{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178095,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179010,0.000000,0.000000,0.250000,0,0);}
.m8d_c00422{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.mdd_c00422{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.m25_c00422{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.m8a_c00422{transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m2a_c00422{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m77_c00422{transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180970,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.m7a_c00422{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.meb_c00422{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m4f_c00422{transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m3c_c00422{transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181970,0.000000,0.000000,0.250000,0,0);}
.m53_c00422{transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.mae_c00422{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m94_c00422{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182870,0.000000,0.000000,0.250000,0,0);}
.mc2_c00422{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183930,0.000000,0.000000,0.250000,0,0);}
.mc0_c00422{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184405,0.000000,0.000000,0.250000,0,0);}
.m7c_c00422{transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184420,0.000000,0.000000,0.250000,0,0);}
.m8c_c00422{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.mee_c00422{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.mcf_c00422{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.mbf_c00422{transform:matrix(0.186380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186380,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);}
.m6a_c00422{transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);}
.maf_c00422{transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m72_c00422{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00422{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me5_c00422{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m76_c00422{transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.ma4_c00422{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m24_c00422{transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);}
.me4_c00422{transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);}
.ma0_c00422{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.mce_c00422{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190130,0.000000,0.000000,0.250000,0,0);}
.mb7_c00422{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.mbc_c00422{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191595,0.000000,0.000000,0.250000,0,0);}
.mbb_c00422{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.me9_c00422{transform:matrix(0.192155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192155,0.000000,0.000000,0.250000,0,0);}
.me1_c00422{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.ma3_c00422{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.mbd_c00422{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.mb3_c00422{transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193920,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m73_c00422{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.m58_c00422{transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.mec_c00422{transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194885,0.000000,0.000000,0.250000,0,0);}
.m67_c00422{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.m5e_c00422{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);}
.m6c_c00422{transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);}
.m4c_c00422{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m30_c00422{transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196395,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.mde_c00422{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00422{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);}
.mb2_c00422{transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199460,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.m99_c00422{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.me6_c00422{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.md8_c00422{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.mbe_c00422{transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);}
.me7_c00422{transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202545,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203265,0.000000,0.000000,0.250000,0,0);}
.m91_c00422{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);}
.mdc_c00422{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.md6_c00422{transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204245,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m6d_c00422{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.mc3_c00422{transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206240,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m89_c00422{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.mdf_c00422{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.mad_c00422{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mc8_c00422{transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);}
.mb8_c00422{transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209590,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);}
.m71_c00422{transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);}
.ma6_c00422{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.maa_c00422{transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);}
.m88_c00422{transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);}
.med_c00422{transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);}
.mc5_c00422{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.mc9_c00422{transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);}
.mdb_c00422{transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);}
.md9_c00422{transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);}
.mba_c00422{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217590,0.000000,0.000000,0.250000,0,0);}
.me2_c00422{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.mcc_c00422{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.md7_c00422{transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);}
.mb5_c00422{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m74_c00422{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222935,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.mc1_c00422{transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);}
.ma8_c00422{transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);}
.mac_c00422{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00422{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mda_c00422{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232020,0.000000,0.000000,0.250000,0,0);}
.me8_c00422{transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232590,0.000000,0.000000,0.250000,0,0);}
.m78_c00422{transform:matrix(0.235980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235980,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236870,0.000000,0.000000,0.250000,0,0);}
.m87_c00422{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.mca_c00422{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.261300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261300,0.000000,0.000000,0.250000,0,0);}
.ma2_c00422{transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);}
.md3_c00422{transform:matrix(0.273790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273790,0.000000,0.000000,0.250000,0,0);}
.m83_c00422{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.md5_c00422{transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);}
.m79_c00422{transform:matrix(0.283945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283945,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);}
.ma1_c00422{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m59_c00422{transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);}
.m90_c00422{transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);}
.md4_c00422{transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00422{transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);}
.mc6_c00422{transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);}
.m5b_c00422{transform:matrix(0.381595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381595,0.000000,0.000000,0.250000,0,0);}
.mcb_c00422{transform:matrix(0.651580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651580,0.000000,0.000000,0.250000,0,0);}
.m61_c00422{transform:matrix(0.829845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829845,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
.fc0_c00422{color:transparent;}
.fsa_c00422{font-size:54.600000px;}
.fsd_c00422{font-size:58.800000px;}
.fs8_c00422{font-size:59.850000px;}
.fsb_c00422{font-size:60.900000px;}
.fs9_c00422{font-size:61.950000px;}
.fsc_c00422{font-size:63.000000px;}
.fsf_c00422{font-size:65.100000px;}
.fs10_c00422{font-size:66.150000px;}
.fse_c00422{font-size:67.200000px;}
.fs7_c00422{font-size:68.250000px;}
.fs6_c00422{font-size:69.300000px;}
.fs4_c00422{font-size:70.350000px;}
.fs1_c00422{font-size:71.400000px;}
.fs5_c00422{font-size:72.450000px;}
.fs2_c00422{font-size:73.500000px;}
.fs3_c00422{font-size:74.550000px;}
.fs0_c00422{font-size:80.850000px;}
.y0_c00422{bottom:0.000000px;}
.y48_c00422{bottom:28.351500px;}
.y47_c00422{bottom:45.157500px;}
.y46_c00422{bottom:60.210000px;}
.y45_c00422{bottom:60.430500px;}
.y44_c00422{bottom:60.792000px;}
.y43_c00422{bottom:61.596000px;}
.y42_c00422{bottom:61.894500px;}
.y41_c00422{bottom:62.221500px;}
.y40_c00422{bottom:62.913000px;}
.y3f_c00422{bottom:78.738000px;}
.y3e_c00422{bottom:95.242500px;}
.y3d_c00422{bottom:112.182000px;}
.y3c_c00422{bottom:128.266500px;}
.y3b_c00422{bottom:128.586000px;}
.y3a_c00422{bottom:129.502500px;}
.y39_c00422{bottom:129.832500px;}
.y38_c00422{bottom:130.626000px;}
.y37_c00422{bottom:130.854000px;}
.y36_c00422{bottom:131.218500px;}
.y35_c00422{bottom:132.034500px;}
.y34_c00422{bottom:144.498000px;}
.y33_c00422{bottom:144.715500px;}
.y32_c00422{bottom:145.303500px;}
.y31_c00422{bottom:145.546500px;}
.y30_c00422{bottom:146.313000px;}
.y2f_c00422{bottom:147.423000px;}
.y2e_c00422{bottom:162.552000px;}
.y2d_c00422{bottom:178.638000px;}
.y2c_c00422{bottom:179.092500px;}
.y2b_c00422{bottom:179.419500px;}
.y2a_c00422{bottom:180.019500px;}
.y29_c00422{bottom:181.108500px;}
.y28_c00422{bottom:181.357500px;}
.y27_c00422{bottom:181.837500px;}
.y26_c00422{bottom:181.983000px;}
.y25_c00422{bottom:196.305000px;}
.y24_c00422{bottom:212.154000px;}
.y23_c00422{bottom:212.388000px;}
.y22_c00422{bottom:213.100500px;}
.y21_c00422{bottom:213.301500px;}
.y20_c00422{bottom:213.438000px;}
.y1f_c00422{bottom:214.446000px;}
.y1e_c00422{bottom:214.636500px;}
.y1d_c00422{bottom:214.975500px;}
.y1c_c00422{bottom:215.193000px;}
.y1b_c00422{bottom:229.309500px;}
.y1a_c00422{bottom:229.566000px;}
.y19_c00422{bottom:230.458500px;}
.y18_c00422{bottom:231.217500px;}
.y17_c00422{bottom:232.279500px;}
.y16_c00422{bottom:232.590000px;}
.y15_c00422{bottom:233.013000px;}
.y14_c00422{bottom:248.527500px;}
.y13_c00422{bottom:266.641500px;}
.y12_c00422{bottom:283.891500px;}
.y11_c00422{bottom:300.723000px;}
.y10_c00422{bottom:318.265500px;}
.yf_c00422{bottom:334.800000px;}
.ye_c00422{bottom:350.542500px;}
.yd_c00422{bottom:366.930000px;}
.yc_c00422{bottom:382.921500px;}
.yb_c00422{bottom:399.870000px;}
.ya_c00422{bottom:417.484500px;}
.y9_c00422{bottom:433.972500px;}
.y8_c00422{bottom:450.865500px;}
.y7_c00422{bottom:467.662500px;}
.y6_c00422{bottom:484.938000px;}
.y5_c00422{bottom:502.105500px;}
.y4_c00422{bottom:518.482500px;}
.y3_c00422{bottom:535.758000px;}
.y2_c00422{bottom:552.228000px;}
.y1_c00422{bottom:567.000000px;}
.hb_c00422{height:54.600000px;}
.he_c00422{height:58.800000px;}
.h9_c00422{height:59.850000px;}
.hc_c00422{height:60.900000px;}
.ha_c00422{height:61.950000px;}
.hd_c00422{height:63.000000px;}
.h10_c00422{height:65.100000px;}
.h11_c00422{height:66.150000px;}
.hf_c00422{height:67.200000px;}
.h8_c00422{height:68.250000px;}
.h7_c00422{height:69.300000px;}
.h5_c00422{height:70.350000px;}
.h2_c00422{height:71.400000px;}
.h6_c00422{height:72.450000px;}
.h3_c00422{height:73.500000px;}
.h4_c00422{height:74.550000px;}
.h1_c00422{height:80.850000px;}
.h0_c00422{height:608.250000px;}
.w0_c00422{width:359.100000px;}
.w1_c00422{width:359.250000px;}
.x0_c00422{left:0.000000px;}
.x56_c00422{left:14.580000px;}
.x2b_c00422{left:18.900000px;}
.x4b_c00422{left:21.330000px;}
.x2_c00422{left:24.840000px;}
.x5a_c00422{left:25.920000px;}
.x65_c00422{left:27.148500px;}
.x25_c00422{left:31.050000px;}
.x71_c00422{left:32.127000px;}
.x1c_c00422{left:34.020000px;}
.x3_c00422{left:39.690000px;}
.x9_c00422{left:42.660000px;}
.x5f_c00422{left:44.718000px;}
.x2f_c00422{left:45.900000px;}
.x10_c00422{left:47.790000px;}
.x1d_c00422{left:50.760000px;}
.x57_c00422{left:54.000000px;}
.x6d_c00422{left:57.777000px;}
.x7f_c00422{left:60.477000px;}
.x43_c00422{left:64.800000px;}
.x30_c00422{left:69.390000px;}
.x11_c00422{left:70.470000px;}
.x5e_c00422{left:73.806000px;}
.x3e_c00422{left:75.330000px;}
.x16_c00422{left:77.220000px;}
.x5b_c00422{left:79.380000px;}
.x47_c00422{left:80.460000px;}
.x51_c00422{left:81.540000px;}
.x2c_c00422{left:85.590000px;}
.xa_c00422{left:87.750000px;}
.x60_c00422{left:88.944000px;}
.x26_c00422{left:90.720000px;}
.x1e_c00422{left:93.420000px;}
.x3b_c00422{left:95.040000px;}
.x5c_c00422{left:96.930000px;}
.x7a_c00422{left:98.547000px;}
.xb_c00422{left:100.710000px;}
.x35_c00422{left:103.950000px;}
.x4e_c00422{left:105.300000px;}
.x58_c00422{left:107.730000px;}
.x69_c00422{left:111.778500px;}
.x4_c00422{left:113.130000px;}
.x48_c00422{left:115.560000px;}
.x4c_c00422{left:117.450000px;}
.x62_c00422{left:118.528500px;}
.x1f_c00422{left:119.880000px;}
.x59_c00422{left:122.310000px;}
.x76_c00422{left:123.657000px;}
.x12_c00422{left:128.520000px;}
.x5_c00422{left:132.030000px;}
.x27_c00422{left:134.190000px;}
.x6b_c00422{left:135.937500px;}
.x79_c00422{left:140.526000px;}
.x52_c00422{left:144.450000px;}
.x44_c00422{left:146.610000px;}
.x1_c00422{left:147.960000px;}
.x6_c00422{left:150.390000px;}
.x31_c00422{left:153.090000px;}
.x80_c00422{left:155.787000px;}
.xc_c00422{left:159.030000px;}
.x28_c00422{left:160.380000px;}
.x72_c00422{left:162.807000px;}
.x6a_c00422{left:163.888500px;}
.x7b_c00422{left:168.207000px;}
.x53_c00422{left:171.450000px;}
.x61_c00422{left:172.882500px;}
.x17_c00422{left:177.390000px;}
.x3f_c00422{left:182.520000px;}
.x4d_c00422{left:183.600000px;}
.x2d_c00422{left:184.680000px;}
.x20_c00422{left:187.110000px;}
.x7c_c00422{left:188.187000px;}
.x4f_c00422{left:189.270000px;}
.x66_c00422{left:190.752000px;}
.x13_c00422{left:191.970000px;}
.xd_c00422{left:194.670000px;}
.x32_c00422{left:197.640000px;}
.x40_c00422{left:198.990000px;}
.x2e_c00422{left:200.880000px;}
.x36_c00422{left:204.120000px;}
.x5d_c00422{left:206.280000px;}
.x54_c00422{left:207.360000px;}
.x77_c00422{left:212.217000px;}
.x50_c00422{left:215.730000px;}
.x37_c00422{left:216.810000px;}
.x18_c00422{left:220.050000px;}
.x41_c00422{left:221.130000px;}
.x29_c00422{left:222.210000px;}
.x7_c00422{left:223.830000px;}
.x7d_c00422{left:225.447000px;}
.x6e_c00422{left:229.767000px;}
.x63_c00422{left:234.628500px;}
.x21_c00422{left:238.140000px;}
.x45_c00422{left:240.030000px;}
.x49_c00422{left:241.110000px;}
.x73_c00422{left:243.267000px;}
.x6f_c00422{left:245.427000px;}
.x14_c00422{left:247.320000px;}
.x3c_c00422{left:249.210000px;}
.xe_c00422{left:251.910000px;}
.x2a_c00422{left:253.800000px;}
.x8_c00422{left:255.960000px;}
.x78_c00422{left:258.387000px;}
.x22_c00422{left:260.010000px;}
.x74_c00422{left:263.247000px;}
.x7e_c00422{left:264.597000px;}
.x38_c00422{left:266.760000px;}
.x67_c00422{left:267.954000px;}
.x33_c00422{left:270.000000px;}
.x64_c00422{left:271.348500px;}
.x19_c00422{left:274.320000px;}
.x3d_c00422{left:276.480000px;}
.x23_c00422{left:278.370000px;}
.x42_c00422{left:279.990000px;}
.x39_c00422{left:282.420000px;}
.x1a_c00422{left:286.200000px;}
.xf_c00422{left:287.280000px;}
.x46_c00422{left:289.710000px;}
.x55_c00422{left:292.410000px;}
.x15_c00422{left:296.460000px;}
.x1b_c00422{left:300.240000px;}
.x3a_c00422{left:302.130000px;}
.x70_c00422{left:303.207000px;}
.x4a_c00422{left:304.290000px;}
.x68_c00422{left:305.817000px;}
.x24_c00422{left:308.340000px;}
.x34_c00422{left:311.310000px;}
.x6c_c00422{left:317.377500px;}
.x75_c00422{left:318.867000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.fsa_c00422{font-size:48.533333pt;}
.fsd_c00422{font-size:52.266667pt;}
.fs8_c00422{font-size:53.200000pt;}
.fsb_c00422{font-size:54.133333pt;}
.fs9_c00422{font-size:55.066667pt;}
.fsc_c00422{font-size:56.000000pt;}
.fsf_c00422{font-size:57.866667pt;}
.fs10_c00422{font-size:58.800000pt;}
.fse_c00422{font-size:59.733333pt;}
.fs7_c00422{font-size:60.666667pt;}
.fs6_c00422{font-size:61.600000pt;}
.fs4_c00422{font-size:62.533333pt;}
.fs1_c00422{font-size:63.466667pt;}
.fs5_c00422{font-size:64.400000pt;}
.fs2_c00422{font-size:65.333333pt;}
.fs3_c00422{font-size:66.266667pt;}
.fs0_c00422{font-size:71.866667pt;}
.y0_c00422{bottom:0.000000pt;}
.y48_c00422{bottom:25.201333pt;}
.y47_c00422{bottom:40.140000pt;}
.y46_c00422{bottom:53.520000pt;}
.y45_c00422{bottom:53.716000pt;}
.y44_c00422{bottom:54.037333pt;}
.y43_c00422{bottom:54.752000pt;}
.y42_c00422{bottom:55.017333pt;}
.y41_c00422{bottom:55.308000pt;}
.y40_c00422{bottom:55.922667pt;}
.y3f_c00422{bottom:69.989333pt;}
.y3e_c00422{bottom:84.660000pt;}
.y3d_c00422{bottom:99.717333pt;}
.y3c_c00422{bottom:114.014667pt;}
.y3b_c00422{bottom:114.298667pt;}
.y3a_c00422{bottom:115.113333pt;}
.y39_c00422{bottom:115.406667pt;}
.y38_c00422{bottom:116.112000pt;}
.y37_c00422{bottom:116.314667pt;}
.y36_c00422{bottom:116.638667pt;}
.y35_c00422{bottom:117.364000pt;}
.y34_c00422{bottom:128.442667pt;}
.y33_c00422{bottom:128.636000pt;}
.y32_c00422{bottom:129.158667pt;}
.y31_c00422{bottom:129.374667pt;}
.y30_c00422{bottom:130.056000pt;}
.y2f_c00422{bottom:131.042667pt;}
.y2e_c00422{bottom:144.490667pt;}
.y2d_c00422{bottom:158.789333pt;}
.y2c_c00422{bottom:159.193333pt;}
.y2b_c00422{bottom:159.484000pt;}
.y2a_c00422{bottom:160.017333pt;}
.y29_c00422{bottom:160.985333pt;}
.y28_c00422{bottom:161.206667pt;}
.y27_c00422{bottom:161.633333pt;}
.y26_c00422{bottom:161.762667pt;}
.y25_c00422{bottom:174.493333pt;}
.y24_c00422{bottom:188.581333pt;}
.y23_c00422{bottom:188.789333pt;}
.y22_c00422{bottom:189.422667pt;}
.y21_c00422{bottom:189.601333pt;}
.y20_c00422{bottom:189.722667pt;}
.y1f_c00422{bottom:190.618667pt;}
.y1e_c00422{bottom:190.788000pt;}
.y1d_c00422{bottom:191.089333pt;}
.y1c_c00422{bottom:191.282667pt;}
.y1b_c00422{bottom:203.830667pt;}
.y1a_c00422{bottom:204.058667pt;}
.y19_c00422{bottom:204.852000pt;}
.y18_c00422{bottom:205.526667pt;}
.y17_c00422{bottom:206.470667pt;}
.y16_c00422{bottom:206.746667pt;}
.y15_c00422{bottom:207.122667pt;}
.y14_c00422{bottom:220.913333pt;}
.y13_c00422{bottom:237.014667pt;}
.y12_c00422{bottom:252.348000pt;}
.y11_c00422{bottom:267.309333pt;}
.y10_c00422{bottom:282.902667pt;}
.yf_c00422{bottom:297.600000pt;}
.ye_c00422{bottom:311.593333pt;}
.yd_c00422{bottom:326.160000pt;}
.yc_c00422{bottom:340.374667pt;}
.yb_c00422{bottom:355.440000pt;}
.ya_c00422{bottom:371.097333pt;}
.y9_c00422{bottom:385.753333pt;}
.y8_c00422{bottom:400.769333pt;}
.y7_c00422{bottom:415.700000pt;}
.y6_c00422{bottom:431.056000pt;}
.y5_c00422{bottom:446.316000pt;}
.y4_c00422{bottom:460.873333pt;}
.y3_c00422{bottom:476.229333pt;}
.y2_c00422{bottom:490.869333pt;}
.y1_c00422{bottom:504.000000pt;}
.hb_c00422{height:48.533333pt;}
.he_c00422{height:52.266667pt;}
.h9_c00422{height:53.200000pt;}
.hc_c00422{height:54.133333pt;}
.ha_c00422{height:55.066667pt;}
.hd_c00422{height:56.000000pt;}
.h10_c00422{height:57.866667pt;}
.h11_c00422{height:58.800000pt;}
.hf_c00422{height:59.733333pt;}
.h8_c00422{height:60.666667pt;}
.h7_c00422{height:61.600000pt;}
.h5_c00422{height:62.533333pt;}
.h2_c00422{height:63.466667pt;}
.h6_c00422{height:64.400000pt;}
.h3_c00422{height:65.333333pt;}
.h4_c00422{height:66.266667pt;}
.h1_c00422{height:71.866667pt;}
.h0_c00422{height:540.666667pt;}
.w0_c00422{width:319.200000pt;}
.w1_c00422{width:319.333333pt;}
.x0_c00422{left:0.000000pt;}
.x56_c00422{left:12.960000pt;}
.x2b_c00422{left:16.800000pt;}
.x4b_c00422{left:18.960000pt;}
.x2_c00422{left:22.080000pt;}
.x5a_c00422{left:23.040000pt;}
.x65_c00422{left:24.132000pt;}
.x25_c00422{left:27.600000pt;}
.x71_c00422{left:28.557333pt;}
.x1c_c00422{left:30.240000pt;}
.x3_c00422{left:35.280000pt;}
.x9_c00422{left:37.920000pt;}
.x5f_c00422{left:39.749333pt;}
.x2f_c00422{left:40.800000pt;}
.x10_c00422{left:42.480000pt;}
.x1d_c00422{left:45.120000pt;}
.x57_c00422{left:48.000000pt;}
.x6d_c00422{left:51.357333pt;}
.x7f_c00422{left:53.757333pt;}
.x43_c00422{left:57.600000pt;}
.x30_c00422{left:61.680000pt;}
.x11_c00422{left:62.640000pt;}
.x5e_c00422{left:65.605333pt;}
.x3e_c00422{left:66.960000pt;}
.x16_c00422{left:68.640000pt;}
.x5b_c00422{left:70.560000pt;}
.x47_c00422{left:71.520000pt;}
.x51_c00422{left:72.480000pt;}
.x2c_c00422{left:76.080000pt;}
.xa_c00422{left:78.000000pt;}
.x60_c00422{left:79.061333pt;}
.x26_c00422{left:80.640000pt;}
.x1e_c00422{left:83.040000pt;}
.x3b_c00422{left:84.480000pt;}
.x5c_c00422{left:86.160000pt;}
.x7a_c00422{left:87.597333pt;}
.xb_c00422{left:89.520000pt;}
.x35_c00422{left:92.400000pt;}
.x4e_c00422{left:93.600000pt;}
.x58_c00422{left:95.760000pt;}
.x69_c00422{left:99.358667pt;}
.x4_c00422{left:100.560000pt;}
.x48_c00422{left:102.720000pt;}
.x4c_c00422{left:104.400000pt;}
.x62_c00422{left:105.358667pt;}
.x1f_c00422{left:106.560000pt;}
.x59_c00422{left:108.720000pt;}
.x76_c00422{left:109.917333pt;}
.x12_c00422{left:114.240000pt;}
.x5_c00422{left:117.360000pt;}
.x27_c00422{left:119.280000pt;}
.x6b_c00422{left:120.833333pt;}
.x79_c00422{left:124.912000pt;}
.x52_c00422{left:128.400000pt;}
.x44_c00422{left:130.320000pt;}
.x1_c00422{left:131.520000pt;}
.x6_c00422{left:133.680000pt;}
.x31_c00422{left:136.080000pt;}
.x80_c00422{left:138.477333pt;}
.xc_c00422{left:141.360000pt;}
.x28_c00422{left:142.560000pt;}
.x72_c00422{left:144.717333pt;}
.x6a_c00422{left:145.678667pt;}
.x7b_c00422{left:149.517333pt;}
.x53_c00422{left:152.400000pt;}
.x61_c00422{left:153.673333pt;}
.x17_c00422{left:157.680000pt;}
.x3f_c00422{left:162.240000pt;}
.x4d_c00422{left:163.200000pt;}
.x2d_c00422{left:164.160000pt;}
.x20_c00422{left:166.320000pt;}
.x7c_c00422{left:167.277333pt;}
.x4f_c00422{left:168.240000pt;}
.x66_c00422{left:169.557333pt;}
.x13_c00422{left:170.640000pt;}
.xd_c00422{left:173.040000pt;}
.x32_c00422{left:175.680000pt;}
.x40_c00422{left:176.880000pt;}
.x2e_c00422{left:178.560000pt;}
.x36_c00422{left:181.440000pt;}
.x5d_c00422{left:183.360000pt;}
.x54_c00422{left:184.320000pt;}
.x77_c00422{left:188.637333pt;}
.x50_c00422{left:191.760000pt;}
.x37_c00422{left:192.720000pt;}
.x18_c00422{left:195.600000pt;}
.x41_c00422{left:196.560000pt;}
.x29_c00422{left:197.520000pt;}
.x7_c00422{left:198.960000pt;}
.x7d_c00422{left:200.397333pt;}
.x6e_c00422{left:204.237333pt;}
.x63_c00422{left:208.558667pt;}
.x21_c00422{left:211.680000pt;}
.x45_c00422{left:213.360000pt;}
.x49_c00422{left:214.320000pt;}
.x73_c00422{left:216.237333pt;}
.x6f_c00422{left:218.157333pt;}
.x14_c00422{left:219.840000pt;}
.x3c_c00422{left:221.520000pt;}
.xe_c00422{left:223.920000pt;}
.x2a_c00422{left:225.600000pt;}
.x8_c00422{left:227.520000pt;}
.x78_c00422{left:229.677333pt;}
.x22_c00422{left:231.120000pt;}
.x74_c00422{left:233.997333pt;}
.x7e_c00422{left:235.197333pt;}
.x38_c00422{left:237.120000pt;}
.x67_c00422{left:238.181333pt;}
.x33_c00422{left:240.000000pt;}
.x64_c00422{left:241.198667pt;}
.x19_c00422{left:243.840000pt;}
.x3d_c00422{left:245.760000pt;}
.x23_c00422{left:247.440000pt;}
.x42_c00422{left:248.880000pt;}
.x39_c00422{left:251.040000pt;}
.x1a_c00422{left:254.400000pt;}
.xf_c00422{left:255.360000pt;}
.x46_c00422{left:257.520000pt;}
.x55_c00422{left:259.920000pt;}
.x15_c00422{left:263.520000pt;}
.x1b_c00422{left:266.880000pt;}
.x3a_c00422{left:268.560000pt;}
.x70_c00422{left:269.517333pt;}
.x4a_c00422{left:270.480000pt;}
.x68_c00422{left:271.837333pt;}
.x24_c00422{left:274.080000pt;}
.x34_c00422{left:276.720000pt;}
.x6c_c00422{left:282.113333pt;}
.x75_c00422{left:283.437333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00423 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00423 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00423 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00423 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00423.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00423;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00423{transform:matrix(0.031930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031930,0.000000,0.000000,0.250000,0,0);}
.m50_c00423{transform:matrix(0.114210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00423{transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124585,0.000000,0.000000,0.250000,0,0);}
.m93_c00423{transform:matrix(0.128460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128460,0.000000,0.000000,0.250000,0,0);}
.mea_c00423{transform:matrix(0.133255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133255,0.000000,0.000000,0.250000,0,0);}
.md4_c00423{transform:matrix(0.135695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135695,0.000000,0.000000,0.250000,0,0);}
.m68_c00423{transform:matrix(0.136510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136510,0.000000,0.000000,0.250000,0,0);}
.mec_c00423{transform:matrix(0.138370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138370,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m99_c00423{transform:matrix(0.141780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141780,0.000000,0.000000,0.250000,0,0);}
.mc6_c00423{transform:matrix(0.142885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142885,0.000000,0.000000,0.250000,0,0);}
.mdf_c00423{transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);}
.m47_c00423{transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147495,0.000000,0.000000,0.250000,0,0);}
.m9b_c00423{transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148310,0.000000,0.000000,0.250000,0,0);}
.m6c_c00423{transform:matrix(0.149290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149290,0.000000,0.000000,0.250000,0,0);}
.m64_c00423{transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149680,0.000000,0.000000,0.250000,0,0);}
.m81_c00423{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152185,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);}
.m9a_c00423{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m6e_c00423{transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154365,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.mb9_c00423{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.mad_c00423{transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155730,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);}
.me8_c00423{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.m41_c00423{transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157020,0.000000,0.000000,0.250000,0,0);}
.me2_c00423{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.ma5_c00423{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158270,0.000000,0.000000,0.250000,0,0);}
.mbe_c00423{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m9c_c00423{transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);}
.m6a_c00423{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.md0_c00423{transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164205,0.000000,0.000000,0.250000,0,0);}
.ma1_c00423{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m71_c00423{transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);}
.mb1_c00423{transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164945,0.000000,0.000000,0.250000,0,0);}
.m75_c00423{transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);}
.md1_c00423{transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);}
.m96_c00423{transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165785,0.000000,0.000000,0.250000,0,0);}
.m43_c00423{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.mb3_c00423{transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);}
.m5e_c00423{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168295,0.000000,0.000000,0.250000,0,0);}
.m42_c00423{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m54_c00423{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);}
.mca_c00423{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m69_c00423{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m60_c00423{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.mda_c00423{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m63_c00423{transform:matrix(0.169980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00423{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170870,0.000000,0.000000,0.250000,0,0);}
.md2_c00423{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m72_c00423{transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);}
.m53_c00423{transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);}
.me0_c00423{transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172845,0.000000,0.000000,0.250000,0,0);}
.mba_c00423{transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);}
.m97_c00423{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m90_c00423{transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175290,0.000000,0.000000,0.250000,0,0);}
.m83_c00423{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.mb5_c00423{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.m4c_c00423{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.mb2_c00423{transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177705,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177855,0.000000,0.000000,0.250000,0,0);}
.ma2_c00423{transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.178040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178040,0.000000,0.000000,0.250000,0,0);}
.me1_c00423{transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.me4_c00423{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.mde_c00423{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179720,0.000000,0.000000,0.250000,0,0);}
.mee_c00423{transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);}
.m98_c00423{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00423{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m76_c00423{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.mcc_c00423{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.me3_c00423{transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);}
.mb8_c00423{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m87_c00423{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.mdd_c00423{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.md3_c00423{transform:matrix(0.183705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183705,0.000000,0.000000,0.250000,0,0);}
.mc9_c00423{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184330,0.000000,0.000000,0.250000,0,0);}
.m84_c00423{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m77_c00423{transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);}
.mb7_c00423{transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);}
.maf_c00423{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m78_c00423{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m91_c00423{transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185820,0.000000,0.000000,0.250000,0,0);}
.ma3_c00423{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.m95_c00423{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.mc1_c00423{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00423{transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);}
.mab_c00423{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);}
.m32_c00423{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m9f_c00423{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.mb6_c00423{transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m4e_c00423{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.mc7_c00423{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190990,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.m2f_c00423{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.mce_c00423{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m24_c00423{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m94_c00423{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.ma0_c00423{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.mc8_c00423{transform:matrix(0.192285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192285,0.000000,0.000000,0.250000,0,0);}
.m52_c00423{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.mcd_c00423{transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193255,0.000000,0.000000,0.250000,0,0);}
.mb4_c00423{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m92_c00423{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194180,0.000000,0.000000,0.250000,0,0);}
.mbc_c00423{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m6d_c00423{transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);}
.mac_c00423{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.mef_c00423{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.m85_c00423{transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);}
.meb_c00423{transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.mcb_c00423{transform:matrix(0.197840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00423{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00423{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.md9_c00423{transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);}
.mb0_c00423{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00423{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.mc2_c00423{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00423{transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201730,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m86_c00423{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00423{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m5b_c00423{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.me5_c00423{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m5f_c00423{transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);}
.mbd_c00423{transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);}
.m45_c00423{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.mc5_c00423{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.m4f_c00423{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m59_c00423{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.m49_c00423{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.md5_c00423{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m8d_c00423{transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);}
.mbf_c00423{transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);}
.m9e_c00423{transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206390,0.000000,0.000000,0.250000,0,0);}
.m4d_c00423{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.mc4_c00423{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m56_c00423{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m8f_c00423{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00423{transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);}
.m2e_c00423{transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);}
.mae_c00423{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.m57_c00423{transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215455,0.000000,0.000000,0.250000,0,0);}
.mc3_c00423{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.me7_c00423{transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00423{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m48_c00423{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m33_c00423{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.med_c00423{transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m46_c00423{transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219110,0.000000,0.000000,0.250000,0,0);}
.m55_c00423{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.m65_c00423{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.me6_c00423{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.220970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220970,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);}
.md6_c00423{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.m7f_c00423{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00423{transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224615,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);}
.m4a_c00423{transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225715,0.000000,0.000000,0.250000,0,0);}
.md7_c00423{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m70_c00423{transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);}
.m88_c00423{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.m74_c00423{transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00423{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m62_c00423{transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);}
.m58_c00423{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m79_c00423{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m7b_c00423{transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);}
.m73_c00423{transform:matrix(0.237840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237840,0.000000,0.000000,0.250000,0,0);}
.me9_c00423{transform:matrix(0.239485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239485,0.000000,0.000000,0.250000,0,0);}
.m8a_c00423{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00423{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.maa_c00423{transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242555,0.000000,0.000000,0.250000,0,0);}
.m67_c00423{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m66_c00423{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m7c_c00423{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m6b_c00423{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.m7a_c00423{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.mdc_c00423{transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00423{transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);}
.m61_c00423{transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);}
.m82_c00423{transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);}
.m8b_c00423{transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263420,0.000000,0.000000,0.250000,0,0);}
.m5d_c00423{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00423{transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);}
.m80_c00423{transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);}
.m7e_c00423{transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);}
.md8_c00423{transform:matrix(0.311015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311015,0.000000,0.000000,0.250000,0,0);}
.m89_c00423{transform:matrix(0.365945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365945,0.000000,0.000000,0.250000,0,0);}
.m5c_c00423{transform:matrix(0.533995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533995,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.557365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557365,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:0.000000px;}
._0_c00423{width:12.013495px;}
.fc0_c00423{color:transparent;}
.fsb_c00423{font-size:57.750000px;}
.fs8_c00423{font-size:59.850000px;}
.fsc_c00423{font-size:60.900000px;}
.fs2_c00423{font-size:61.950000px;}
.fs7_c00423{font-size:63.000000px;}
.fs5_c00423{font-size:65.100000px;}
.fs4_c00423{font-size:66.150000px;}
.fs3_c00423{font-size:67.200000px;}
.fsa_c00423{font-size:68.250000px;}
.fs6_c00423{font-size:69.300000px;}
.fs9_c00423{font-size:70.350000px;}
.fsd_c00423{font-size:71.400000px;}
.fs1_c00423{font-size:73.500000px;}
.fse_c00423{font-size:75.600000px;}
.fs0_c00423{font-size:110.250000px;}
.y0_c00423{bottom:0.000000px;}
.y21_c00423{bottom:22.908000px;}
.y20_c00423{bottom:40.282500px;}
.y1f_c00423{bottom:56.359500px;}
.y1e_c00423{bottom:73.639500px;}
.y1d_c00423{bottom:88.932000px;}
.y1c_c00423{bottom:106.777500px;}
.y1b_c00423{bottom:123.682500px;}
.y1a_c00423{bottom:140.254500px;}
.y19_c00423{bottom:158.572500px;}
.y18_c00423{bottom:174.963000px;}
.y17_c00423{bottom:191.530500px;}
.y16_c00423{bottom:209.044500px;}
.y15_c00423{bottom:226.779000px;}
.y14_c00423{bottom:243.361500px;}
.y13_c00423{bottom:260.257500px;}
.y12_c00423{bottom:277.023000px;}
.y11_c00423{bottom:293.610000px;}
.y10_c00423{bottom:310.948500px;}
.yf_c00423{bottom:328.053000px;}
.ye_c00423{bottom:345.058500px;}
.yd_c00423{bottom:362.071500px;}
.yc_c00423{bottom:378.784500px;}
.yb_c00423{bottom:396.186000px;}
.ya_c00423{bottom:413.074500px;}
.y9_c00423{bottom:430.084500px;}
.y8_c00423{bottom:446.703000px;}
.y7_c00423{bottom:463.470000px;}
.y6_c00423{bottom:480.453000px;}
.y5_c00423{bottom:496.827000px;}
.y4_c00423{bottom:514.107000px;}
.y3_c00423{bottom:530.847000px;}
.y2_c00423{bottom:547.561500px;}
.y1_c00423{bottom:560.229000px;}
.hc_c00423{height:57.750000px;}
.h9_c00423{height:59.850000px;}
.hd_c00423{height:60.900000px;}
.h3_c00423{height:61.950000px;}
.h8_c00423{height:63.000000px;}
.h6_c00423{height:65.100000px;}
.h5_c00423{height:66.150000px;}
.h4_c00423{height:67.200000px;}
.hb_c00423{height:68.250000px;}
.h7_c00423{height:69.300000px;}
.ha_c00423{height:70.350000px;}
.he_c00423{height:71.400000px;}
.h2_c00423{height:73.500000px;}
.hf_c00423{height:75.600000px;}
.h1_c00423{height:110.250000px;}
.h0_c00423{height:608.250000px;}
.w0_c00423{width:359.100000px;}
.w1_c00423{width:359.250000px;}
.x0_c00423{left:0.000000px;}
.x85_c00423{left:34.290000px;}
.x7e_c00423{left:35.910000px;}
.x79_c00423{left:36.990000px;}
.x63_c00423{left:38.340000px;}
.x5a_c00423{left:39.420000px;}
.x47_c00423{left:40.770000px;}
.x18_c00423{left:41.850000px;}
.xb_c00423{left:42.930000px;}
.x76_c00423{left:46.170000px;}
.x1_c00423{left:58.050000px;}
.x2f_c00423{left:59.940000px;}
.x35_c00423{left:61.290000px;}
.x1e_c00423{left:62.640000px;}
.xc_c00423{left:66.150000px;}
.x4_c00423{left:68.040000px;}
.x50_c00423{left:70.470000px;}
.x57_c00423{left:73.710000px;}
.x6c_c00423{left:75.870000px;}
.x30_c00423{left:80.190000px;}
.x3b_c00423{left:81.270000px;}
.x70_c00423{left:85.590000px;}
.x80_c00423{left:87.480000px;}
.x5_c00423{left:88.560000px;}
.x19_c00423{left:89.910000px;}
.x4b_c00423{left:90.990000px;}
.x1f_c00423{left:93.420000px;}
.x7a_c00423{left:94.770000px;}
.x41_c00423{left:98.280000px;}
.x5d_c00423{left:101.520000px;}
.x1a_c00423{left:102.870000px;}
.x2a_c00423{left:106.650000px;}
.x11_c00423{left:107.730000px;}
.x7d_c00423{left:109.620000px;}
.x71_c00423{left:112.860000px;}
.x86_c00423{left:114.480000px;}
.x51_c00423{left:117.450000px;}
.x25_c00423{left:118.530000px;}
.x36_c00423{left:122.040000px;}
.x1b_c00423{left:123.390000px;}
.x2b_c00423{left:124.470000px;}
.x31_c00423{left:126.360000px;}
.x12_c00423{left:127.710000px;}
.xd_c00423{left:129.870000px;}
.x68_c00423{left:132.840000px;}
.x72_c00423{left:135.810000px;}
.x6d_c00423{left:137.970000px;}
.x32_c00423{left:139.860000px;}
.x81_c00423{left:140.940000px;}
.x42_c00423{left:144.180000px;}
.x3c_c00423{left:147.960000px;}
.x37_c00423{left:151.200000px;}
.x52_c00423{left:152.550000px;}
.x82_c00423{left:154.440000px;}
.xe_c00423{left:156.600000px;}
.x5b_c00423{left:158.760000px;}
.x64_c00423{left:160.110000px;}
.x6_c00423{left:162.000000px;}
.x38_c00423{left:163.890000px;}
.x69_c00423{left:167.940000px;}
.x4c_c00423{left:169.560000px;}
.x5e_c00423{left:171.720000px;}
.x2_c00423{left:174.150000px;}
.x61_c00423{left:175.230000px;}
.x26_c00423{left:177.660000px;}
.x73_c00423{left:179.550000px;}
.x13_c00423{left:183.330000px;}
.x7_c00423{left:184.950000px;}
.x20_c00423{left:187.380000px;}
.x2c_c00423{left:189.000000px;}
.x4d_c00423{left:191.700000px;}
.x43_c00423{left:193.050000px;}
.x24_c00423{left:194.130000px;}
.x33_c00423{left:195.750000px;}
.x6e_c00423{left:199.800000px;}
.x5f_c00423{left:201.960000px;}
.x27_c00423{left:203.850000px;}
.x54_c00423{left:204.930000px;}
.x3d_c00423{left:206.550000px;}
.x2d_c00423{left:208.710000px;}
.x7b_c00423{left:210.060000px;}
.x21_c00423{left:211.680000px;}
.x83_c00423{left:215.730000px;}
.x8_c00423{left:216.810000px;}
.x65_c00423{left:219.510000px;}
.x3e_c00423{left:221.670000px;}
.xf_c00423{left:222.750000px;}
.x77_c00423{left:224.640000px;}
.x6a_c00423{left:228.150000px;}
.x14_c00423{left:230.040000px;}
.x74_c00423{left:231.390000px;}
.x58_c00423{left:236.790000px;}
.x4e_c00423{left:239.220000px;}
.x5c_c00423{left:242.730000px;}
.x48_c00423{left:243.810000px;}
.x6b_c00423{left:245.970000px;}
.x15_c00423{left:247.320000px;}
.x53_c00423{left:248.670000px;}
.x22_c00423{left:249.750000px;}
.x1c_c00423{left:252.720000px;}
.x39_c00423{left:253.800000px;}
.x4f_c00423{left:256.770000px;}
.x55_c00423{left:257.850000px;}
.x3f_c00423{left:258.930000px;}
.x9_c00423{left:260.010000px;}
.x66_c00423{left:261.090000px;}
.x49_c00423{left:263.250000px;}
.x87_c00423{left:267.030000px;}
.x2e_c00423{left:271.350000px;}
.x44_c00423{left:272.700000px;}
.x56_c00423{left:274.590000px;}
.x7f_c00423{left:276.480000px;}
.x10_c00423{left:279.990000px;}
.x40_c00423{left:281.880000px;}
.x1d_c00423{left:285.930000px;}
.x78_c00423{left:287.010000px;}
.x45_c00423{left:292.410000px;}
.x34_c00423{left:294.030000px;}
.x60_c00423{left:295.650000px;}
.x28_c00423{left:297.540000px;}
.x23_c00423{left:301.320000px;}
.x16_c00423{left:302.670000px;}
.x6f_c00423{left:306.180000px;}
.xa_c00423{left:307.530000px;}
.x75_c00423{left:310.770000px;}
.x67_c00423{left:312.390000px;}
.x4a_c00423{left:315.360000px;}
.x62_c00423{left:316.710000px;}
.x7c_c00423{left:318.600000px;}
.x3a_c00423{left:319.680000px;}
.x84_c00423{left:321.300000px;}
.x46_c00423{left:323.190000px;}
.x17_c00423{left:325.620000px;}
.x29_c00423{left:326.700000px;}
.x59_c00423{left:328.860000px;}
.x3_c00423{left:336.960000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.000000pt;}
._0_c00423{width:10.678662pt;}
.fsb_c00423{font-size:51.333333pt;}
.fs8_c00423{font-size:53.200000pt;}
.fsc_c00423{font-size:54.133333pt;}
.fs2_c00423{font-size:55.066667pt;}
.fs7_c00423{font-size:56.000000pt;}
.fs5_c00423{font-size:57.866667pt;}
.fs4_c00423{font-size:58.800000pt;}
.fs3_c00423{font-size:59.733333pt;}
.fsa_c00423{font-size:60.666667pt;}
.fs6_c00423{font-size:61.600000pt;}
.fs9_c00423{font-size:62.533333pt;}
.fsd_c00423{font-size:63.466667pt;}
.fs1_c00423{font-size:65.333333pt;}
.fse_c00423{font-size:67.200000pt;}
.fs0_c00423{font-size:98.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y21_c00423{bottom:20.362667pt;}
.y20_c00423{bottom:35.806667pt;}
.y1f_c00423{bottom:50.097333pt;}
.y1e_c00423{bottom:65.457333pt;}
.y1d_c00423{bottom:79.050667pt;}
.y1c_c00423{bottom:94.913333pt;}
.y1b_c00423{bottom:109.940000pt;}
.y1a_c00423{bottom:124.670667pt;}
.y19_c00423{bottom:140.953333pt;}
.y18_c00423{bottom:155.522667pt;}
.y17_c00423{bottom:170.249333pt;}
.y16_c00423{bottom:185.817333pt;}
.y15_c00423{bottom:201.581333pt;}
.y14_c00423{bottom:216.321333pt;}
.y13_c00423{bottom:231.340000pt;}
.y12_c00423{bottom:246.242667pt;}
.y11_c00423{bottom:260.986667pt;}
.y10_c00423{bottom:276.398667pt;}
.yf_c00423{bottom:291.602667pt;}
.ye_c00423{bottom:306.718667pt;}
.yd_c00423{bottom:321.841333pt;}
.yc_c00423{bottom:336.697333pt;}
.yb_c00423{bottom:352.165333pt;}
.ya_c00423{bottom:367.177333pt;}
.y9_c00423{bottom:382.297333pt;}
.y8_c00423{bottom:397.069333pt;}
.y7_c00423{bottom:411.973333pt;}
.y6_c00423{bottom:427.069333pt;}
.y5_c00423{bottom:441.624000pt;}
.y4_c00423{bottom:456.984000pt;}
.y3_c00423{bottom:471.864000pt;}
.y2_c00423{bottom:486.721333pt;}
.y1_c00423{bottom:497.981333pt;}
.hc_c00423{height:51.333333pt;}
.h9_c00423{height:53.200000pt;}
.hd_c00423{height:54.133333pt;}
.h3_c00423{height:55.066667pt;}
.h8_c00423{height:56.000000pt;}
.h6_c00423{height:57.866667pt;}
.h5_c00423{height:58.800000pt;}
.h4_c00423{height:59.733333pt;}
.hb_c00423{height:60.666667pt;}
.h7_c00423{height:61.600000pt;}
.ha_c00423{height:62.533333pt;}
.he_c00423{height:63.466667pt;}
.h2_c00423{height:65.333333pt;}
.hf_c00423{height:67.200000pt;}
.h1_c00423{height:98.000000pt;}
.h0_c00423{height:540.666667pt;}
.w0_c00423{width:319.200000pt;}
.w1_c00423{width:319.333333pt;}
.x0_c00423{left:0.000000pt;}
.x85_c00423{left:30.480000pt;}
.x7e_c00423{left:31.920000pt;}
.x79_c00423{left:32.880000pt;}
.x63_c00423{left:34.080000pt;}
.x5a_c00423{left:35.040000pt;}
.x47_c00423{left:36.240000pt;}
.x18_c00423{left:37.200000pt;}
.xb_c00423{left:38.160000pt;}
.x76_c00423{left:41.040000pt;}
.x1_c00423{left:51.600000pt;}
.x2f_c00423{left:53.280000pt;}
.x35_c00423{left:54.480000pt;}
.x1e_c00423{left:55.680000pt;}
.xc_c00423{left:58.800000pt;}
.x4_c00423{left:60.480000pt;}
.x50_c00423{left:62.640000pt;}
.x57_c00423{left:65.520000pt;}
.x6c_c00423{left:67.440000pt;}
.x30_c00423{left:71.280000pt;}
.x3b_c00423{left:72.240000pt;}
.x70_c00423{left:76.080000pt;}
.x80_c00423{left:77.760000pt;}
.x5_c00423{left:78.720000pt;}
.x19_c00423{left:79.920000pt;}
.x4b_c00423{left:80.880000pt;}
.x1f_c00423{left:83.040000pt;}
.x7a_c00423{left:84.240000pt;}
.x41_c00423{left:87.360000pt;}
.x5d_c00423{left:90.240000pt;}
.x1a_c00423{left:91.440000pt;}
.x2a_c00423{left:94.800000pt;}
.x11_c00423{left:95.760000pt;}
.x7d_c00423{left:97.440000pt;}
.x71_c00423{left:100.320000pt;}
.x86_c00423{left:101.760000pt;}
.x51_c00423{left:104.400000pt;}
.x25_c00423{left:105.360000pt;}
.x36_c00423{left:108.480000pt;}
.x1b_c00423{left:109.680000pt;}
.x2b_c00423{left:110.640000pt;}
.x31_c00423{left:112.320000pt;}
.x12_c00423{left:113.520000pt;}
.xd_c00423{left:115.440000pt;}
.x68_c00423{left:118.080000pt;}
.x72_c00423{left:120.720000pt;}
.x6d_c00423{left:122.640000pt;}
.x32_c00423{left:124.320000pt;}
.x81_c00423{left:125.280000pt;}
.x42_c00423{left:128.160000pt;}
.x3c_c00423{left:131.520000pt;}
.x37_c00423{left:134.400000pt;}
.x52_c00423{left:135.600000pt;}
.x82_c00423{left:137.280000pt;}
.xe_c00423{left:139.200000pt;}
.x5b_c00423{left:141.120000pt;}
.x64_c00423{left:142.320000pt;}
.x6_c00423{left:144.000000pt;}
.x38_c00423{left:145.680000pt;}
.x69_c00423{left:149.280000pt;}
.x4c_c00423{left:150.720000pt;}
.x5e_c00423{left:152.640000pt;}
.x2_c00423{left:154.800000pt;}
.x61_c00423{left:155.760000pt;}
.x26_c00423{left:157.920000pt;}
.x73_c00423{left:159.600000pt;}
.x13_c00423{left:162.960000pt;}
.x7_c00423{left:164.400000pt;}
.x20_c00423{left:166.560000pt;}
.x2c_c00423{left:168.000000pt;}
.x4d_c00423{left:170.400000pt;}
.x43_c00423{left:171.600000pt;}
.x24_c00423{left:172.560000pt;}
.x33_c00423{left:174.000000pt;}
.x6e_c00423{left:177.600000pt;}
.x5f_c00423{left:179.520000pt;}
.x27_c00423{left:181.200000pt;}
.x54_c00423{left:182.160000pt;}
.x3d_c00423{left:183.600000pt;}
.x2d_c00423{left:185.520000pt;}
.x7b_c00423{left:186.720000pt;}
.x21_c00423{left:188.160000pt;}
.x83_c00423{left:191.760000pt;}
.x8_c00423{left:192.720000pt;}
.x65_c00423{left:195.120000pt;}
.x3e_c00423{left:197.040000pt;}
.xf_c00423{left:198.000000pt;}
.x77_c00423{left:199.680000pt;}
.x6a_c00423{left:202.800000pt;}
.x14_c00423{left:204.480000pt;}
.x74_c00423{left:205.680000pt;}
.x58_c00423{left:210.480000pt;}
.x4e_c00423{left:212.640000pt;}
.x5c_c00423{left:215.760000pt;}
.x48_c00423{left:216.720000pt;}
.x6b_c00423{left:218.640000pt;}
.x15_c00423{left:219.840000pt;}
.x53_c00423{left:221.040000pt;}
.x22_c00423{left:222.000000pt;}
.x1c_c00423{left:224.640000pt;}
.x39_c00423{left:225.600000pt;}
.x4f_c00423{left:228.240000pt;}
.x55_c00423{left:229.200000pt;}
.x3f_c00423{left:230.160000pt;}
.x9_c00423{left:231.120000pt;}
.x66_c00423{left:232.080000pt;}
.x49_c00423{left:234.000000pt;}
.x87_c00423{left:237.360000pt;}
.x2e_c00423{left:241.200000pt;}
.x44_c00423{left:242.400000pt;}
.x56_c00423{left:244.080000pt;}
.x7f_c00423{left:245.760000pt;}
.x10_c00423{left:248.880000pt;}
.x40_c00423{left:250.560000pt;}
.x1d_c00423{left:254.160000pt;}
.x78_c00423{left:255.120000pt;}
.x45_c00423{left:259.920000pt;}
.x34_c00423{left:261.360000pt;}
.x60_c00423{left:262.800000pt;}
.x28_c00423{left:264.480000pt;}
.x23_c00423{left:267.840000pt;}
.x16_c00423{left:269.040000pt;}
.x6f_c00423{left:272.160000pt;}
.xa_c00423{left:273.360000pt;}
.x75_c00423{left:276.240000pt;}
.x67_c00423{left:277.680000pt;}
.x4a_c00423{left:280.320000pt;}
.x62_c00423{left:281.520000pt;}
.x7c_c00423{left:283.200000pt;}
.x3a_c00423{left:284.160000pt;}
.x84_c00423{left:285.600000pt;}
.x46_c00423{left:287.280000pt;}
.x17_c00423{left:289.440000pt;}
.x29_c00423{left:290.400000pt;}
.x59_c00423{left:292.320000pt;}
.x3_c00423{left:299.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00424 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00424 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00424 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00424 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00424.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00424{transform:matrix(0.143256,-0.002865,0.004999,0.249950,0,0);-ms-transform:matrix(0.143256,-0.002865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.143256,-0.002865,0.004999,0.249950,0,0);}
.me1_c00424{transform:matrix(0.145711,-0.001603,0.002750,0.249985,0,0);-ms-transform:matrix(0.145711,-0.001603,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145711,-0.001603,0.002750,0.249985,0,0);}
.m9e_c00424{transform:matrix(0.153009,-0.003060,0.004999,0.249950,0,0);-ms-transform:matrix(0.153009,-0.003060,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153009,-0.003060,0.004999,0.249950,0,0);}
.mb6_c00424{transform:matrix(0.155310,-0.002796,0.004499,0.249960,0,0);-ms-transform:matrix(0.155310,-0.002796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155310,-0.002796,0.004499,0.249960,0,0);}
.m6b_c00424{transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);-ms-transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);}
.m99_c00424{transform:matrix(0.164047,-0.003281,0.004999,0.249950,0,0);-ms-transform:matrix(0.164047,-0.003281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164047,-0.003281,0.004999,0.249950,0,0);}
.ma6_c00424{transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);-ms-transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164112,-0.003282,0.004999,0.249950,0,0);}
.m3b_c00424{transform:matrix(0.164122,-0.003282,0.004999,0.249950,0,0);-ms-transform:matrix(0.164122,-0.003282,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164122,-0.003282,0.004999,0.249950,0,0);}
.mdf_c00424{transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);-ms-transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165305,-0.001818,0.002750,0.249985,0,0);}
.md9_c00424{transform:matrix(0.165740,-0.001823,0.002750,0.249985,0,0);-ms-transform:matrix(0.165740,-0.001823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165740,-0.001823,0.002750,0.249985,0,0);}
.m1d_c00424{transform:matrix(0.165910,-0.005143,0.007746,0.249880,0,0);-ms-transform:matrix(0.165910,-0.005143,0.007746,0.249880,0,0);-webkit-transform:matrix(0.165910,-0.005143,0.007746,0.249880,0,0);}
.mb7_c00424{transform:matrix(0.166258,-0.002993,0.004499,0.249960,0,0);-ms-transform:matrix(0.166258,-0.002993,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166258,-0.002993,0.004499,0.249960,0,0);}
.m38_c00424{transform:matrix(0.166357,-0.003327,0.004999,0.249950,0,0);-ms-transform:matrix(0.166357,-0.003327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166357,-0.003327,0.004999,0.249950,0,0);}
.m64_c00424{transform:matrix(0.167077,-0.003342,0.004999,0.249950,0,0);-ms-transform:matrix(0.167077,-0.003342,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167077,-0.003342,0.004999,0.249950,0,0);}
.md2_c00424{transform:matrix(0.167370,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167370,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167370,-0.001841,0.002750,0.249985,0,0);}
.m1e_c00424{transform:matrix(0.167490,-0.005192,0.007746,0.249880,0,0);-ms-transform:matrix(0.167490,-0.005192,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167490,-0.005192,0.007746,0.249880,0,0);}
.m51_c00424{transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);-ms-transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168701,-0.003374,0.004999,0.249950,0,0);}
.m52_c00424{transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);-ms-transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169331,-0.003387,0.004999,0.249950,0,0);}
.mca_c00424{transform:matrix(0.169845,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169845,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169845,-0.001868,0.002750,0.249985,0,0);}
.me7_c00424{transform:matrix(0.170670,-0.001877,0.002750,0.249985,0,0);-ms-transform:matrix(0.170670,-0.001877,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170670,-0.001877,0.002750,0.249985,0,0);}
.m19_c00424{transform:matrix(0.170738,-0.005293,0.007746,0.249880,0,0);-ms-transform:matrix(0.170738,-0.005293,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170738,-0.005293,0.007746,0.249880,0,0);}
.m7e_c00424{transform:matrix(0.171251,-0.003425,0.004999,0.249950,0,0);-ms-transform:matrix(0.171251,-0.003425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171251,-0.003425,0.004999,0.249950,0,0);}
.m49_c00424{transform:matrix(0.171306,-0.003426,0.004999,0.249950,0,0);-ms-transform:matrix(0.171306,-0.003426,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171306,-0.003426,0.004999,0.249950,0,0);}
.ma0_c00424{transform:matrix(0.171851,-0.003437,0.004999,0.249950,0,0);-ms-transform:matrix(0.171851,-0.003437,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171851,-0.003437,0.004999,0.249950,0,0);}
.m4b_c00424{transform:matrix(0.172560,-0.003451,0.004999,0.249950,0,0);-ms-transform:matrix(0.172560,-0.003451,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172560,-0.003451,0.004999,0.249950,0,0);}
.ma2_c00424{transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);-ms-transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172580,-0.003452,0.004999,0.249950,0,0);}
.ma3_c00424{transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);-ms-transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);}
.m32_c00424{transform:matrix(0.172912,-0.005360,0.007746,0.249880,0,0);-ms-transform:matrix(0.172912,-0.005360,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172912,-0.005360,0.007746,0.249880,0,0);}
.mb1_c00424{transform:matrix(0.173902,-0.003130,0.004499,0.249960,0,0);-ms-transform:matrix(0.173902,-0.003130,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173902,-0.003130,0.004499,0.249960,0,0);}
.m23_c00424{transform:matrix(0.173941,-0.005392,0.007746,0.249880,0,0);-ms-transform:matrix(0.173941,-0.005392,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173941,-0.005392,0.007746,0.249880,0,0);}
.me2_c00424{transform:matrix(0.174234,-0.001917,0.002750,0.249985,0,0);-ms-transform:matrix(0.174234,-0.001917,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174234,-0.001917,0.002750,0.249985,0,0);}
.mcc_c00424{transform:matrix(0.174249,-0.001917,0.002750,0.249985,0,0);-ms-transform:matrix(0.174249,-0.001917,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174249,-0.001917,0.002750,0.249985,0,0);}
.m77_c00424{transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);-ms-transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174945,-0.003499,0.004999,0.249950,0,0);}
.m3d_c00424{transform:matrix(0.175740,-0.003515,0.004999,0.249950,0,0);-ms-transform:matrix(0.175740,-0.003515,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175740,-0.003515,0.004999,0.249950,0,0);}
.m4d_c00424{transform:matrix(0.175915,-0.003518,0.004999,0.249950,0,0);-ms-transform:matrix(0.175915,-0.003518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175915,-0.003518,0.004999,0.249950,0,0);}
.m24_c00424{transform:matrix(0.176015,-0.005456,0.007746,0.249880,0,0);-ms-transform:matrix(0.176015,-0.005456,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176015,-0.005456,0.007746,0.249880,0,0);}
.m63_c00424{transform:matrix(0.176910,-0.003538,0.004999,0.249950,0,0);-ms-transform:matrix(0.176910,-0.003538,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176910,-0.003538,0.004999,0.249950,0,0);}
.me5_c00424{transform:matrix(0.177864,-0.001957,0.002750,0.249985,0,0);-ms-transform:matrix(0.177864,-0.001957,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177864,-0.001957,0.002750,0.249985,0,0);}
.m88_c00424{transform:matrix(0.178874,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178874,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178874,-0.003577,0.004999,0.249950,0,0);}
.m22_c00424{transform:matrix(0.178944,-0.005547,0.007746,0.249880,0,0);-ms-transform:matrix(0.178944,-0.005547,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178944,-0.005547,0.007746,0.249880,0,0);}
.m40_c00424{transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179009,-0.003580,0.004999,0.249950,0,0);}
.me0_c00424{transform:matrix(0.179359,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179359,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179359,-0.001973,0.002750,0.249985,0,0);}
.m81_c00424{transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);-ms-transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);}
.m46_c00424{transform:matrix(0.179749,-0.003595,0.004999,0.249950,0,0);-ms-transform:matrix(0.179749,-0.003595,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179749,-0.003595,0.004999,0.249950,0,0);}
.mc2_c00424{transform:matrix(0.180074,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180074,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180074,-0.001981,0.002750,0.249985,0,0);}
.m8c_c00424{transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);-ms-transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180479,-0.003610,0.004999,0.249950,0,0);}
.mcf_c00424{transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180919,-0.001990,0.002750,0.249985,0,0);}
.m6_c00424{transform:matrix(0.181918,-0.005639,0.007746,0.249880,0,0);-ms-transform:matrix(0.181918,-0.005639,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181918,-0.005639,0.007746,0.249880,0,0);}
.m2a_c00424{transform:matrix(0.181998,-0.005642,0.007746,0.249880,0,0);-ms-transform:matrix(0.181998,-0.005642,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181998,-0.005642,0.007746,0.249880,0,0);}
.m5c_c00424{transform:matrix(0.181999,-0.003640,0.004999,0.249950,0,0);-ms-transform:matrix(0.181999,-0.003640,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181999,-0.003640,0.004999,0.249950,0,0);}
.m2_c00424{transform:matrix(0.182143,-0.005646,0.007746,0.249880,0,0);-ms-transform:matrix(0.182143,-0.005646,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182143,-0.005646,0.007746,0.249880,0,0);}
.ma9_c00424{transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);-ms-transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);}
.m18_c00424{transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);-ms-transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182967,-0.005672,0.007746,0.249880,0,0);}
.mb8_c00424{transform:matrix(0.183045,-0.003295,0.004499,0.249960,0,0);-ms-transform:matrix(0.183045,-0.003295,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183045,-0.003295,0.004499,0.249960,0,0);}
.m28_c00424{transform:matrix(0.183132,-0.005677,0.007746,0.249880,0,0);-ms-transform:matrix(0.183132,-0.005677,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183132,-0.005677,0.007746,0.249880,0,0);}
.mdd_c00424{transform:matrix(0.183269,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183269,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183269,-0.002016,0.002750,0.249985,0,0);}
.mbc_c00424{transform:matrix(0.183340,-0.003300,0.004499,0.249960,0,0);-ms-transform:matrix(0.183340,-0.003300,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183340,-0.003300,0.004499,0.249960,0,0);}
.m98_c00424{transform:matrix(0.183648,-0.003673,0.004999,0.249950,0,0);-ms-transform:matrix(0.183648,-0.003673,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183648,-0.003673,0.004999,0.249950,0,0);}
.m29_c00424{transform:matrix(0.184117,-0.005708,0.007746,0.249880,0,0);-ms-transform:matrix(0.184117,-0.005708,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184117,-0.005708,0.007746,0.249880,0,0);}
.m87_c00424{transform:matrix(0.184463,-0.003689,0.004999,0.249950,0,0);-ms-transform:matrix(0.184463,-0.003689,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184463,-0.003689,0.004999,0.249950,0,0);}
.mdb_c00424{transform:matrix(0.184659,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184659,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184659,-0.002031,0.002750,0.249985,0,0);}
.m33_c00424{transform:matrix(0.184866,-0.005731,0.007746,0.249880,0,0);-ms-transform:matrix(0.184866,-0.005731,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184866,-0.005731,0.007746,0.249880,0,0);}
.m7f_c00424{transform:matrix(0.185038,-0.003701,0.004999,0.249950,0,0);-ms-transform:matrix(0.185038,-0.003701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185038,-0.003701,0.004999,0.249950,0,0);}
.m4f_c00424{transform:matrix(0.185118,-0.003702,0.004999,0.249950,0,0);-ms-transform:matrix(0.185118,-0.003702,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185118,-0.003702,0.004999,0.249950,0,0);}
.m74_c00424{transform:matrix(0.185153,-0.003703,0.004999,0.249950,0,0);-ms-transform:matrix(0.185153,-0.003703,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185153,-0.003703,0.004999,0.249950,0,0);}
.me_c00424{transform:matrix(0.185331,-0.005745,0.007746,0.249880,0,0);-ms-transform:matrix(0.185331,-0.005745,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185331,-0.005745,0.007746,0.249880,0,0);}
.mbb_c00424{transform:matrix(0.186175,-0.003351,0.004499,0.249960,0,0);-ms-transform:matrix(0.186175,-0.003351,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186175,-0.003351,0.004499,0.249960,0,0);}
.m97_c00424{transform:matrix(0.186298,-0.003726,0.004999,0.249950,0,0);-ms-transform:matrix(0.186298,-0.003726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186298,-0.003726,0.004999,0.249950,0,0);}
.m6a_c00424{transform:matrix(0.186323,-0.003726,0.004999,0.249950,0,0);-ms-transform:matrix(0.186323,-0.003726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186323,-0.003726,0.004999,0.249950,0,0);}
.mbd_c00424{transform:matrix(0.186644,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186644,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186644,-0.002053,0.002750,0.249985,0,0);}
.me6_c00424{transform:matrix(0.187104,-0.002058,0.002750,0.249985,0,0);-ms-transform:matrix(0.187104,-0.002058,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187104,-0.002058,0.002750,0.249985,0,0);}
.m9d_c00424{transform:matrix(0.187218,-0.003744,0.004999,0.249950,0,0);-ms-transform:matrix(0.187218,-0.003744,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187218,-0.003744,0.004999,0.249950,0,0);}
.m89_c00424{transform:matrix(0.187627,-0.003753,0.004999,0.249950,0,0);-ms-transform:matrix(0.187627,-0.003753,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187627,-0.003753,0.004999,0.249950,0,0);}
.m8_c00424{transform:matrix(0.187745,-0.005820,0.007746,0.249880,0,0);-ms-transform:matrix(0.187745,-0.005820,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187745,-0.005820,0.007746,0.249880,0,0);}
.m65_c00424{transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187767,-0.003755,0.004999,0.249950,0,0);}
.ma_c00424{transform:matrix(0.187925,-0.005826,0.007746,0.249880,0,0);-ms-transform:matrix(0.187925,-0.005826,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187925,-0.005826,0.007746,0.249880,0,0);}
.m2d_c00424{transform:matrix(0.188150,-0.005833,0.007746,0.249880,0,0);-ms-transform:matrix(0.188150,-0.005833,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188150,-0.005833,0.007746,0.249880,0,0);}
.m50_c00424{transform:matrix(0.188152,-0.003763,0.004999,0.249950,0,0);-ms-transform:matrix(0.188152,-0.003763,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188152,-0.003763,0.004999,0.249950,0,0);}
.m47_c00424{transform:matrix(0.188207,-0.003764,0.004999,0.249950,0,0);-ms-transform:matrix(0.188207,-0.003764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188207,-0.003764,0.004999,0.249950,0,0);}
.m79_c00424{transform:matrix(0.188917,-0.003778,0.004999,0.249950,0,0);-ms-transform:matrix(0.188917,-0.003778,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188917,-0.003778,0.004999,0.249950,0,0);}
.m78_c00424{transform:matrix(0.189342,-0.003787,0.004999,0.249950,0,0);-ms-transform:matrix(0.189342,-0.003787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189342,-0.003787,0.004999,0.249950,0,0);}
.m96_c00424{transform:matrix(0.189372,-0.003787,0.004999,0.249950,0,0);-ms-transform:matrix(0.189372,-0.003787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189372,-0.003787,0.004999,0.249950,0,0);}
.m15_c00424{transform:matrix(0.189479,-0.005874,0.007746,0.249880,0,0);-ms-transform:matrix(0.189479,-0.005874,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189479,-0.005874,0.007746,0.249880,0,0);}
.m9_c00424{transform:matrix(0.190054,-0.005892,0.007746,0.249880,0,0);-ms-transform:matrix(0.190054,-0.005892,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190054,-0.005892,0.007746,0.249880,0,0);}
.m95_c00424{transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);-ms-transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190252,-0.003805,0.004999,0.249950,0,0);}
.mdc_c00424{transform:matrix(0.190338,-0.002094,0.002750,0.249985,0,0);-ms-transform:matrix(0.190338,-0.002094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190338,-0.002094,0.002750,0.249985,0,0);}
.m1c_c00424{transform:matrix(0.190394,-0.005902,0.007746,0.249880,0,0);-ms-transform:matrix(0.190394,-0.005902,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190394,-0.005902,0.007746,0.249880,0,0);}
.m3c_c00424{transform:matrix(0.190442,-0.003809,0.004999,0.249950,0,0);-ms-transform:matrix(0.190442,-0.003809,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190442,-0.003809,0.004999,0.249950,0,0);}
.m4a_c00424{transform:matrix(0.190532,-0.003811,0.004999,0.249950,0,0);-ms-transform:matrix(0.190532,-0.003811,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190532,-0.003811,0.004999,0.249950,0,0);}
.ma1_c00424{transform:matrix(0.190757,-0.003815,0.004999,0.249950,0,0);-ms-transform:matrix(0.190757,-0.003815,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190757,-0.003815,0.004999,0.249950,0,0);}
.md4_c00424{transform:matrix(0.191413,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191413,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191413,-0.002106,0.002750,0.249985,0,0);}
.mde_c00424{transform:matrix(0.191463,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191463,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191463,-0.002106,0.002750,0.249985,0,0);}
.m54_c00424{transform:matrix(0.191622,-0.003832,0.004999,0.249950,0,0);-ms-transform:matrix(0.191622,-0.003832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191622,-0.003832,0.004999,0.249950,0,0);}
.mf_c00424{transform:matrix(0.191683,-0.005942,0.007746,0.249880,0,0);-ms-transform:matrix(0.191683,-0.005942,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191683,-0.005942,0.007746,0.249880,0,0);}
.md6_c00424{transform:matrix(0.192028,-0.002112,0.002750,0.249985,0,0);-ms-transform:matrix(0.192028,-0.002112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192028,-0.002112,0.002750,0.249985,0,0);}
.m53_c00424{transform:matrix(0.192037,-0.003841,0.004999,0.249950,0,0);-ms-transform:matrix(0.192037,-0.003841,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192037,-0.003841,0.004999,0.249950,0,0);}
.m1_c00424{transform:matrix(0.192103,-0.005955,0.007746,0.249880,0,0);-ms-transform:matrix(0.192103,-0.005955,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192103,-0.005955,0.007746,0.249880,0,0);}
.m73_c00424{transform:matrix(0.192467,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192467,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192467,-0.003849,0.004999,0.249950,0,0);}
.m72_c00424{transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192681,-0.003854,0.004999,0.249950,0,0);}
.ma7_c00424{transform:matrix(0.192706,-0.003854,0.004999,0.249950,0,0);-ms-transform:matrix(0.192706,-0.003854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192706,-0.003854,0.004999,0.249950,0,0);}
.m30_c00424{transform:matrix(0.192922,-0.005981,0.007746,0.249880,0,0);-ms-transform:matrix(0.192922,-0.005981,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192922,-0.005981,0.007746,0.249880,0,0);}
.m69_c00424{transform:matrix(0.192956,-0.003859,0.004999,0.249950,0,0);-ms-transform:matrix(0.192956,-0.003859,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192956,-0.003859,0.004999,0.249950,0,0);}
.maa_c00424{transform:matrix(0.193251,-0.003865,0.004999,0.249950,0,0);-ms-transform:matrix(0.193251,-0.003865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193251,-0.003865,0.004999,0.249950,0,0);}
.m9b_c00424{transform:matrix(0.193411,-0.003868,0.004999,0.249950,0,0);-ms-transform:matrix(0.193411,-0.003868,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193411,-0.003868,0.004999,0.249950,0,0);}
.m8f_c00424{transform:matrix(0.193481,-0.003870,0.004999,0.249950,0,0);-ms-transform:matrix(0.193481,-0.003870,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193481,-0.003870,0.004999,0.249950,0,0);}
.mc_c00424{transform:matrix(0.193497,-0.005998,0.007746,0.249880,0,0);-ms-transform:matrix(0.193497,-0.005998,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193497,-0.005998,0.007746,0.249880,0,0);}
.m5b_c00424{transform:matrix(0.193976,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.193976,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193976,-0.003880,0.004999,0.249950,0,0);}
.md_c00424{transform:matrix(0.194147,-0.006019,0.007746,0.249880,0,0);-ms-transform:matrix(0.194147,-0.006019,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194147,-0.006019,0.007746,0.249880,0,0);}
.m0_c00424{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m93_c00424{transform:matrix(0.194461,-0.003889,0.004999,0.249950,0,0);-ms-transform:matrix(0.194461,-0.003889,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194461,-0.003889,0.004999,0.249950,0,0);}
.mab_c00424{transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-ms-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);}
.m48_c00424{transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);-ms-transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195776,-0.003916,0.004999,0.249950,0,0);}
.m80_c00424{transform:matrix(0.195996,-0.003920,0.004999,0.249950,0,0);-ms-transform:matrix(0.195996,-0.003920,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195996,-0.003920,0.004999,0.249950,0,0);}
.mda_c00424{transform:matrix(0.196003,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.196003,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196003,-0.002156,0.002750,0.249985,0,0);}
.m59_c00424{transform:matrix(0.196361,-0.003927,0.004999,0.249950,0,0);-ms-transform:matrix(0.196361,-0.003927,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196361,-0.003927,0.004999,0.249950,0,0);}
.m2f_c00424{transform:matrix(0.196556,-0.006093,0.007746,0.249880,0,0);-ms-transform:matrix(0.196556,-0.006093,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196556,-0.006093,0.007746,0.249880,0,0);}
.m60_c00424{transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);-ms-transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197096,-0.003942,0.004999,0.249950,0,0);}
.m9a_c00424{transform:matrix(0.197271,-0.003945,0.004999,0.249950,0,0);-ms-transform:matrix(0.197271,-0.003945,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197271,-0.003945,0.004999,0.249950,0,0);}
.md3_c00424{transform:matrix(0.197398,-0.002171,0.002750,0.249985,0,0);-ms-transform:matrix(0.197398,-0.002171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197398,-0.002171,0.002750,0.249985,0,0);}
.m43_c00424{transform:matrix(0.197525,-0.003951,0.004999,0.249950,0,0);-ms-transform:matrix(0.197525,-0.003951,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197525,-0.003951,0.004999,0.249950,0,0);}
.m11_c00424{transform:matrix(0.197625,-0.006126,0.007746,0.249880,0,0);-ms-transform:matrix(0.197625,-0.006126,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197625,-0.006126,0.007746,0.249880,0,0);}
.m27_c00424{transform:matrix(0.197815,-0.006132,0.007746,0.249880,0,0);-ms-transform:matrix(0.197815,-0.006132,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197815,-0.006132,0.007746,0.249880,0,0);}
.ma8_c00424{transform:matrix(0.197920,-0.003958,0.004999,0.249950,0,0);-ms-transform:matrix(0.197920,-0.003958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197920,-0.003958,0.004999,0.249950,0,0);}
.mcb_c00424{transform:matrix(0.198863,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198863,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198863,-0.002187,0.002750,0.249985,0,0);}
.m9c_c00424{transform:matrix(0.198910,-0.003978,0.004999,0.249950,0,0);-ms-transform:matrix(0.198910,-0.003978,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198910,-0.003978,0.004999,0.249950,0,0);}
.m7a_c00424{transform:matrix(0.199495,-0.003990,0.004999,0.249950,0,0);-ms-transform:matrix(0.199495,-0.003990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199495,-0.003990,0.004999,0.249950,0,0);}
.m34_c00424{transform:matrix(0.199854,-0.006195,0.007746,0.249880,0,0);-ms-transform:matrix(0.199854,-0.006195,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199854,-0.006195,0.007746,0.249880,0,0);}
.m1f_c00424{transform:matrix(0.199939,-0.006198,0.007746,0.249880,0,0);-ms-transform:matrix(0.199939,-0.006198,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199939,-0.006198,0.007746,0.249880,0,0);}
.m1a_c00424{transform:matrix(0.200024,-0.006201,0.007746,0.249880,0,0);-ms-transform:matrix(0.200024,-0.006201,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200024,-0.006201,0.007746,0.249880,0,0);}
.m21_c00424{transform:matrix(0.200074,-0.006202,0.007746,0.249880,0,0);-ms-transform:matrix(0.200074,-0.006202,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200074,-0.006202,0.007746,0.249880,0,0);}
.mb_c00424{transform:matrix(0.200439,-0.006214,0.007746,0.249880,0,0);-ms-transform:matrix(0.200439,-0.006214,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200439,-0.006214,0.007746,0.249880,0,0);}
.m20_c00424{transform:matrix(0.200499,-0.006215,0.007746,0.249880,0,0);-ms-transform:matrix(0.200499,-0.006215,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200499,-0.006215,0.007746,0.249880,0,0);}
.mc0_c00424{transform:matrix(0.200698,-0.002208,0.002750,0.249985,0,0);-ms-transform:matrix(0.200698,-0.002208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200698,-0.002208,0.002750,0.249985,0,0);}
.mcd_c00424{transform:matrix(0.200883,-0.002210,0.002750,0.249985,0,0);-ms-transform:matrix(0.200883,-0.002210,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200883,-0.002210,0.002750,0.249985,0,0);}
.m4e_c00424{transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);}
.m42_c00424{transform:matrix(0.201170,-0.004023,0.004999,0.249950,0,0);-ms-transform:matrix(0.201170,-0.004023,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201170,-0.004023,0.004999,0.249950,0,0);}
.md0_c00424{transform:matrix(0.201328,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201328,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201328,-0.002215,0.002750,0.249985,0,0);}
.m94_c00424{transform:matrix(0.201475,-0.004029,0.004999,0.249950,0,0);-ms-transform:matrix(0.201475,-0.004029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201475,-0.004029,0.004999,0.249950,0,0);}
.m61_c00424{transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);-ms-transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201685,-0.004034,0.004999,0.249950,0,0);}
.m76_c00424{transform:matrix(0.201790,-0.004036,0.004999,0.249950,0,0);-ms-transform:matrix(0.201790,-0.004036,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201790,-0.004036,0.004999,0.249950,0,0);}
.mbf_c00424{transform:matrix(0.201883,-0.002221,0.002750,0.249985,0,0);-ms-transform:matrix(0.201883,-0.002221,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201883,-0.002221,0.002750,0.249985,0,0);}
.m26_c00424{transform:matrix(0.202728,-0.006285,0.007746,0.249880,0,0);-ms-transform:matrix(0.202728,-0.006285,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202728,-0.006285,0.007746,0.249880,0,0);}
.m5f_c00424{transform:matrix(0.202774,-0.004055,0.004999,0.249950,0,0);-ms-transform:matrix(0.202774,-0.004055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202774,-0.004055,0.004999,0.249950,0,0);}
.mc7_c00424{transform:matrix(0.202808,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202808,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202808,-0.002231,0.002750,0.249985,0,0);}
.mae_c00424{transform:matrix(0.202962,-0.003653,0.004499,0.249960,0,0);-ms-transform:matrix(0.202962,-0.003653,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202962,-0.003653,0.004499,0.249960,0,0);}
.m36_c00424{transform:matrix(0.203067,-0.006295,0.007746,0.249880,0,0);-ms-transform:matrix(0.203067,-0.006295,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203067,-0.006295,0.007746,0.249880,0,0);}
.mb9_c00424{transform:matrix(0.203247,-0.003658,0.004499,0.249960,0,0);-ms-transform:matrix(0.203247,-0.003658,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203247,-0.003658,0.004499,0.249960,0,0);}
.m16_c00424{transform:matrix(0.203412,-0.006306,0.007746,0.249880,0,0);-ms-transform:matrix(0.203412,-0.006306,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203412,-0.006306,0.007746,0.249880,0,0);}
.m39_c00424{transform:matrix(0.203609,-0.004072,0.004999,0.249950,0,0);-ms-transform:matrix(0.203609,-0.004072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203609,-0.004072,0.004999,0.249950,0,0);}
.m8b_c00424{transform:matrix(0.203969,-0.004079,0.004999,0.249950,0,0);-ms-transform:matrix(0.203969,-0.004079,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203969,-0.004079,0.004999,0.249950,0,0);}
.m25_c00424{transform:matrix(0.204197,-0.006330,0.007746,0.249880,0,0);-ms-transform:matrix(0.204197,-0.006330,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204197,-0.006330,0.007746,0.249880,0,0);}
.m35_c00424{transform:matrix(0.204767,-0.006348,0.007746,0.249880,0,0);-ms-transform:matrix(0.204767,-0.006348,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204767,-0.006348,0.007746,0.249880,0,0);}
.md8_c00424{transform:matrix(0.205153,-0.002257,0.002750,0.249985,0,0);-ms-transform:matrix(0.205153,-0.002257,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205153,-0.002257,0.002750,0.249985,0,0);}
.m5e_c00424{transform:matrix(0.205209,-0.004104,0.004999,0.249950,0,0);-ms-transform:matrix(0.205209,-0.004104,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205209,-0.004104,0.004999,0.249950,0,0);}
.m8a_c00424{transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);-ms-transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205459,-0.004109,0.004999,0.249950,0,0);}
.mac_c00424{transform:matrix(0.205464,-0.004109,0.004999,0.249950,0,0);-ms-transform:matrix(0.205464,-0.004109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205464,-0.004109,0.004999,0.249950,0,0);}
.m7b_c00424{transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);}
.md5_c00424{transform:matrix(0.205813,-0.002264,0.002750,0.249985,0,0);-ms-transform:matrix(0.205813,-0.002264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205813,-0.002264,0.002750,0.249985,0,0);}
.m62_c00424{transform:matrix(0.206059,-0.004121,0.004999,0.249950,0,0);-ms-transform:matrix(0.206059,-0.004121,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206059,-0.004121,0.004999,0.249950,0,0);}
.m66_c00424{transform:matrix(0.206704,-0.004134,0.004999,0.249950,0,0);-ms-transform:matrix(0.206704,-0.004134,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206704,-0.004134,0.004999,0.249950,0,0);}
.m82_c00424{transform:matrix(0.206749,-0.004135,0.004999,0.249950,0,0);-ms-transform:matrix(0.206749,-0.004135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206749,-0.004135,0.004999,0.249950,0,0);}
.m10_c00424{transform:matrix(0.206761,-0.006410,0.007746,0.249880,0,0);-ms-transform:matrix(0.206761,-0.006410,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206761,-0.006410,0.007746,0.249880,0,0);}
.m6f_c00424{transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-ms-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206779,-0.004136,0.004999,0.249950,0,0);}
.mce_c00424{transform:matrix(0.207572,-0.002283,0.002750,0.249985,0,0);-ms-transform:matrix(0.207572,-0.002283,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207572,-0.002283,0.002750,0.249985,0,0);}
.md7_c00424{transform:matrix(0.208227,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208227,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208227,-0.002291,0.002750,0.249985,0,0);}
.m4c_c00424{transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);}
.mc1_c00424{transform:matrix(0.208907,-0.002298,0.002750,0.249985,0,0);-ms-transform:matrix(0.208907,-0.002298,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208907,-0.002298,0.002750,0.249985,0,0);}
.m9f_c00424{transform:matrix(0.209283,-0.004186,0.004999,0.249950,0,0);-ms-transform:matrix(0.209283,-0.004186,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209283,-0.004186,0.004999,0.249950,0,0);}
.m90_c00424{transform:matrix(0.209423,-0.004188,0.004999,0.249950,0,0);-ms-transform:matrix(0.209423,-0.004188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209423,-0.004188,0.004999,0.249950,0,0);}
.m2e_c00424{transform:matrix(0.209939,-0.006508,0.007746,0.249880,0,0);-ms-transform:matrix(0.209939,-0.006508,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209939,-0.006508,0.007746,0.249880,0,0);}
.m41_c00424{transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-ms-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);}
.m1b_c00424{transform:matrix(0.210334,-0.006520,0.007746,0.249880,0,0);-ms-transform:matrix(0.210334,-0.006520,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210334,-0.006520,0.007746,0.249880,0,0);}
.mbe_c00424{transform:matrix(0.210732,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210732,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210732,-0.002318,0.002750,0.249985,0,0);}
.m12_c00424{transform:matrix(0.211119,-0.006545,0.007746,0.249880,0,0);-ms-transform:matrix(0.211119,-0.006545,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211119,-0.006545,0.007746,0.249880,0,0);}
.md1_c00424{transform:matrix(0.211792,-0.002330,0.002750,0.249985,0,0);-ms-transform:matrix(0.211792,-0.002330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211792,-0.002330,0.002750,0.249985,0,0);}
.m58_c00424{transform:matrix(0.211933,-0.004239,0.004999,0.249950,0,0);-ms-transform:matrix(0.211933,-0.004239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211933,-0.004239,0.004999,0.249950,0,0);}
.m5a_c00424{transform:matrix(0.212602,-0.004252,0.004999,0.249950,0,0);-ms-transform:matrix(0.212602,-0.004252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212602,-0.004252,0.004999,0.249950,0,0);}
.m92_c00424{transform:matrix(0.212972,-0.004259,0.004999,0.249950,0,0);-ms-transform:matrix(0.212972,-0.004259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212972,-0.004259,0.004999,0.249950,0,0);}
.m5_c00424{transform:matrix(0.213068,-0.006605,0.007746,0.249880,0,0);-ms-transform:matrix(0.213068,-0.006605,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213068,-0.006605,0.007746,0.249880,0,0);}
.m57_c00424{transform:matrix(0.213162,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213162,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213162,-0.004263,0.004999,0.249950,0,0);}
.m6e_c00424{transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);-ms-transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);}
.mb5_c00424{transform:matrix(0.213830,-0.003849,0.004499,0.249960,0,0);-ms-transform:matrix(0.213830,-0.003849,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213830,-0.003849,0.004499,0.249960,0,0);}
.ma4_c00424{transform:matrix(0.213942,-0.004279,0.004999,0.249950,0,0);-ms-transform:matrix(0.213942,-0.004279,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213942,-0.004279,0.004999,0.249950,0,0);}
.m14_c00424{transform:matrix(0.214152,-0.006639,0.007746,0.249880,0,0);-ms-transform:matrix(0.214152,-0.006639,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214152,-0.006639,0.007746,0.249880,0,0);}
.mba_c00424{transform:matrix(0.214480,-0.003861,0.004499,0.249960,0,0);-ms-transform:matrix(0.214480,-0.003861,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214480,-0.003861,0.004499,0.249960,0,0);}
.m31_c00424{transform:matrix(0.214747,-0.006657,0.007746,0.249880,0,0);-ms-transform:matrix(0.214747,-0.006657,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214747,-0.006657,0.007746,0.249880,0,0);}
.mc3_c00424{transform:matrix(0.214857,-0.002363,0.002750,0.249985,0,0);-ms-transform:matrix(0.214857,-0.002363,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214857,-0.002363,0.002750,0.249985,0,0);}
.m13_c00424{transform:matrix(0.214952,-0.006664,0.007746,0.249880,0,0);-ms-transform:matrix(0.214952,-0.006664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214952,-0.006664,0.007746,0.249880,0,0);}
.m6c_c00424{transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);-ms-transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215262,-0.004305,0.004999,0.249950,0,0);}
.mc9_c00424{transform:matrix(0.215347,-0.002369,0.002750,0.249985,0,0);-ms-transform:matrix(0.215347,-0.002369,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215347,-0.002369,0.002750,0.249985,0,0);}
.m85_c00424{transform:matrix(0.215352,-0.004307,0.004999,0.249950,0,0);-ms-transform:matrix(0.215352,-0.004307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215352,-0.004307,0.004999,0.249950,0,0);}
.m83_c00424{transform:matrix(0.215822,-0.004316,0.004999,0.249950,0,0);-ms-transform:matrix(0.215822,-0.004316,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215822,-0.004316,0.004999,0.249950,0,0);}
.m3f_c00424{transform:matrix(0.216347,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216347,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216347,-0.004327,0.004999,0.249950,0,0);}
.ma5_c00424{transform:matrix(0.217162,-0.004343,0.004999,0.249950,0,0);-ms-transform:matrix(0.217162,-0.004343,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217162,-0.004343,0.004999,0.249950,0,0);}
.m3e_c00424{transform:matrix(0.217267,-0.004345,0.004999,0.249950,0,0);-ms-transform:matrix(0.217267,-0.004345,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217267,-0.004345,0.004999,0.249950,0,0);}
.m44_c00424{transform:matrix(0.217377,-0.004348,0.004999,0.249950,0,0);-ms-transform:matrix(0.217377,-0.004348,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217377,-0.004348,0.004999,0.249950,0,0);}
.m75_c00424{transform:matrix(0.217831,-0.004357,0.004999,0.249950,0,0);-ms-transform:matrix(0.217831,-0.004357,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217831,-0.004357,0.004999,0.249950,0,0);}
.m7d_c00424{transform:matrix(0.218396,-0.004368,0.004999,0.249950,0,0);-ms-transform:matrix(0.218396,-0.004368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218396,-0.004368,0.004999,0.249950,0,0);}
.m6d_c00424{transform:matrix(0.219071,-0.004381,0.004999,0.249950,0,0);-ms-transform:matrix(0.219071,-0.004381,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219071,-0.004381,0.004999,0.249950,0,0);}
.mb0_c00424{transform:matrix(0.219674,-0.003954,0.004499,0.249960,0,0);-ms-transform:matrix(0.219674,-0.003954,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219674,-0.003954,0.004499,0.249960,0,0);}
.m2b_c00424{transform:matrix(0.220144,-0.006824,0.007746,0.249880,0,0);-ms-transform:matrix(0.220144,-0.006824,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220144,-0.006824,0.007746,0.249880,0,0);}
.m4_c00424{transform:matrix(0.220509,-0.006836,0.007746,0.249880,0,0);-ms-transform:matrix(0.220509,-0.006836,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220509,-0.006836,0.007746,0.249880,0,0);}
.m5d_c00424{transform:matrix(0.221936,-0.004439,0.004999,0.249950,0,0);-ms-transform:matrix(0.221936,-0.004439,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221936,-0.004439,0.004999,0.249950,0,0);}
.mb2_c00424{transform:matrix(0.222089,-0.003998,0.004499,0.249960,0,0);-ms-transform:matrix(0.222089,-0.003998,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222089,-0.003998,0.004499,0.249960,0,0);}
.m45_c00424{transform:matrix(0.222735,-0.004455,0.004999,0.249950,0,0);-ms-transform:matrix(0.222735,-0.004455,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222735,-0.004455,0.004999,0.249950,0,0);}
.m91_c00424{transform:matrix(0.224315,-0.004486,0.004999,0.249950,0,0);-ms-transform:matrix(0.224315,-0.004486,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224315,-0.004486,0.004999,0.249950,0,0);}
.m86_c00424{transform:matrix(0.224715,-0.004494,0.004999,0.249950,0,0);-ms-transform:matrix(0.224715,-0.004494,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224715,-0.004494,0.004999,0.249950,0,0);}
.mc8_c00424{transform:matrix(0.225466,-0.002480,0.002750,0.249985,0,0);-ms-transform:matrix(0.225466,-0.002480,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225466,-0.002480,0.002750,0.249985,0,0);}
.mb4_c00424{transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);-ms-transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);}
.me3_c00424{transform:matrix(0.226726,-0.002494,0.002750,0.249985,0,0);-ms-transform:matrix(0.226726,-0.002494,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226726,-0.002494,0.002750,0.249985,0,0);}
.m3a_c00424{transform:matrix(0.227934,-0.004559,0.004999,0.249950,0,0);-ms-transform:matrix(0.227934,-0.004559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227934,-0.004559,0.004999,0.249950,0,0);}
.m3_c00424{transform:matrix(0.228585,-0.007086,0.007746,0.249880,0,0);-ms-transform:matrix(0.228585,-0.007086,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228585,-0.007086,0.007746,0.249880,0,0);}
.m8d_c00424{transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);-ms-transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230539,-0.004611,0.004999,0.249950,0,0);}
.m71_c00424{transform:matrix(0.231434,-0.004629,0.004999,0.249950,0,0);-ms-transform:matrix(0.231434,-0.004629,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231434,-0.004629,0.004999,0.249950,0,0);}
.m2c_c00424{transform:matrix(0.231674,-0.007182,0.007746,0.249880,0,0);-ms-transform:matrix(0.231674,-0.007182,0.007746,0.249880,0,0);-webkit-transform:matrix(0.231674,-0.007182,0.007746,0.249880,0,0);}
.m68_c00424{transform:matrix(0.233883,-0.004678,0.004999,0.249950,0,0);-ms-transform:matrix(0.233883,-0.004678,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233883,-0.004678,0.004999,0.249950,0,0);}
.m55_c00424{transform:matrix(0.233943,-0.004679,0.004999,0.249950,0,0);-ms-transform:matrix(0.233943,-0.004679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233943,-0.004679,0.004999,0.249950,0,0);}
.m7_c00424{transform:matrix(0.235322,-0.007295,0.007746,0.249880,0,0);-ms-transform:matrix(0.235322,-0.007295,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235322,-0.007295,0.007746,0.249880,0,0);}
.m84_c00424{transform:matrix(0.236063,-0.004721,0.004999,0.249950,0,0);-ms-transform:matrix(0.236063,-0.004721,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236063,-0.004721,0.004999,0.249950,0,0);}
.maf_c00424{transform:matrix(0.237007,-0.004266,0.004499,0.249960,0,0);-ms-transform:matrix(0.237007,-0.004266,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237007,-0.004266,0.004499,0.249960,0,0);}
.mc6_c00424{transform:matrix(0.239196,-0.002631,0.002750,0.249985,0,0);-ms-transform:matrix(0.239196,-0.002631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239196,-0.002631,0.002750,0.249985,0,0);}
.m17_c00424{transform:matrix(0.241124,-0.007475,0.007746,0.249880,0,0);-ms-transform:matrix(0.241124,-0.007475,0.007746,0.249880,0,0);-webkit-transform:matrix(0.241124,-0.007475,0.007746,0.249880,0,0);}
.m7c_c00424{transform:matrix(0.241212,-0.004824,0.004999,0.249950,0,0);-ms-transform:matrix(0.241212,-0.004824,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241212,-0.004824,0.004999,0.249950,0,0);}
.mb3_c00424{transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);-ms-transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241876,-0.004354,0.004499,0.249960,0,0);}
.m8e_c00424{transform:matrix(0.242502,-0.004850,0.004999,0.249950,0,0);-ms-transform:matrix(0.242502,-0.004850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242502,-0.004850,0.004999,0.249950,0,0);}
.m67_c00424{transform:matrix(0.242736,-0.004855,0.004999,0.249950,0,0);-ms-transform:matrix(0.242736,-0.004855,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242736,-0.004855,0.004999,0.249950,0,0);}
.mc4_c00424{transform:matrix(0.244765,-0.002692,0.002750,0.249985,0,0);-ms-transform:matrix(0.244765,-0.002692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244765,-0.002692,0.002750,0.249985,0,0);}
.mad_c00424{transform:matrix(0.249515,-0.004990,0.004999,0.249950,0,0);-ms-transform:matrix(0.249515,-0.004990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249515,-0.004990,0.004999,0.249950,0,0);}
.mc5_c00424{transform:matrix(0.260134,-0.002861,0.002750,0.249985,0,0);-ms-transform:matrix(0.260134,-0.002861,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260134,-0.002861,0.002750,0.249985,0,0);}
.me4_c00424{transform:matrix(0.287193,-0.003159,0.002750,0.249985,0,0);-ms-transform:matrix(0.287193,-0.003159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287193,-0.003159,0.002750,0.249985,0,0);}
.m37_c00424{transform:matrix(0.321091,-0.006422,0.004999,0.249950,0,0);-ms-transform:matrix(0.321091,-0.006422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321091,-0.006422,0.004999,0.249950,0,0);}
.m56_c00424{transform:matrix(0.365922,-0.007318,0.004999,0.249950,0,0);-ms-transform:matrix(0.365922,-0.007318,0.004999,0.249950,0,0);-webkit-transform:matrix(0.365922,-0.007318,0.004999,0.249950,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls0_c00424{letter-spacing:0.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:0.000000px;}
.fc0_c00424{color:transparent;}
.fs12_c00424{font-size:54.603303px;}
.fsf_c00424{font-size:58.809525px;}
.fsa_c00424{font-size:58.811759px;}
.fsb_c00424{font-size:59.861969px;}
.fs3_c00424{font-size:59.878751px;}
.fs8_c00424{font-size:60.912179px;}
.fs6_c00424{font-size:60.929255px;}
.fs0_c00424{font-size:61.950000px;}
.fs13_c00424{font-size:61.953748px;}
.fsc_c00424{font-size:61.962389px;}
.fs2_c00424{font-size:61.979760px;}
.fsd_c00424{font-size:63.012599px;}
.fs1_c00424{font-size:63.030264px;}
.fs11_c00424{font-size:64.053875px;}
.fse_c00424{font-size:64.062809px;}
.fs4_c00424{font-size:65.131273px;}
.fs9_c00424{font-size:66.163229px;}
.fs14_c00424{font-size:67.204065px;}
.fs10_c00424{font-size:68.261056px;}
.fs7_c00424{font-size:68.263649px;}
.fs15_c00424{font-size:70.354256px;}
.fs5_c00424{font-size:70.383795px;}
.y0_c00424{bottom:0.000000px;}
.ye8_c00424{bottom:36.683315px;}
.ye7_c00424{bottom:36.683528px;}
.ye3_c00424{bottom:36.683540px;}
.ye2_c00424{bottom:36.683886px;}
.ye4_c00424{bottom:36.683927px;}
.ye6_c00424{bottom:36.684267px;}
.ye5_c00424{bottom:36.684600px;}
.ye1_c00424{bottom:52.730402px;}
.yde_c00424{bottom:52.730904px;}
.ye0_c00424{bottom:52.731048px;}
.ydd_c00424{bottom:52.731311px;}
.ydc_c00424{bottom:52.731344px;}
.ydb_c00424{bottom:52.731437px;}
.ydf_c00424{bottom:52.731591px;}
.yd5_c00424{bottom:70.161642px;}
.yd6_c00424{bottom:70.161939px;}
.yd4_c00424{bottom:70.162139px;}
.yd7_c00424{bottom:70.162313px;}
.yd9_c00424{bottom:70.162484px;}
.yd8_c00424{bottom:70.162833px;}
.yda_c00424{bottom:70.163037px;}
.yd2_c00424{bottom:87.047886px;}
.yd3_c00424{bottom:87.047913px;}
.yd1_c00424{bottom:87.048233px;}
.yd0_c00424{bottom:87.048759px;}
.ycf_c00424{bottom:87.048806px;}
.yce_c00424{bottom:87.049185px;}
.ycd_c00424{bottom:87.049892px;}
.ycc_c00424{bottom:87.050628px;}
.ycb_c00424{bottom:87.051245px;}
.yc4_c00424{bottom:99.364902px;}
.yc5_c00424{bottom:100.630592px;}
.yc6_c00424{bottom:100.982930px;}
.yc7_c00424{bottom:102.999408px;}
.yc8_c00424{bottom:103.244332px;}
.yc9_c00424{bottom:103.591080px;}
.yca_c00424{bottom:104.832527px;}
.ybe_c00424{bottom:119.881500px;}
.ybf_c00424{bottom:120.481341px;}
.yc0_c00424{bottom:121.030956px;}
.yc1_c00424{bottom:121.250753px;}
.yc2_c00424{bottom:122.242864px;}
.yc3_c00424{bottom:122.824984px;}
.yb7_c00424{bottom:136.350216px;}
.yb8_c00424{bottom:136.578765px;}
.yb9_c00424{bottom:137.223924px;}
.yba_c00424{bottom:137.838978px;}
.ybb_c00424{bottom:138.106419px;}
.ybc_c00424{bottom:138.966078px;}
.ybd_c00424{bottom:140.047242px;}
.yaf_c00424{bottom:152.014500px;}
.yb0_c00424{bottom:152.833869px;}
.yb1_c00424{bottom:153.072333px;}
.yb2_c00424{bottom:153.720360px;}
.yb3_c00424{bottom:154.327590px;}
.yb4_c00424{bottom:154.531926px;}
.yb5_c00424{bottom:155.509164px;}
.yb6_c00424{bottom:156.829545px;}
.ya7_c00424{bottom:170.592930px;}
.ya8_c00424{bottom:170.897970px;}
.ya9_c00424{bottom:171.455190px;}
.yaa_c00424{bottom:172.099560px;}
.yab_c00424{bottom:172.355040px;}
.yac_c00424{bottom:172.691700px;}
.yad_c00424{bottom:172.999290px;}
.yae_c00424{bottom:173.715900px;}
.ya0_c00424{bottom:186.527610px;}
.ya1_c00424{bottom:187.407510px;}
.ya2_c00424{bottom:187.736190px;}
.ya3_c00424{bottom:188.665950px;}
.ya4_c00424{bottom:188.976630px;}
.ya5_c00424{bottom:189.675660px;}
.ya6_c00424{bottom:189.884520px;}
.y98_c00424{bottom:202.729890px;}
.y99_c00424{bottom:203.106000px;}
.y9a_c00424{bottom:203.621250px;}
.y9b_c00424{bottom:204.237420px;}
.y9c_c00424{bottom:204.505950px;}
.y9d_c00424{bottom:204.763320px;}
.y9e_c00424{bottom:206.259840px;}
.y9f_c00424{bottom:206.650170px;}
.y91_c00424{bottom:222.837570px;}
.y92_c00424{bottom:222.838290px;}
.y94_c00424{bottom:222.838590px;}
.y93_c00424{bottom:222.838830px;}
.y95_c00424{bottom:222.838950px;}
.y96_c00424{bottom:222.839160px;}
.y97_c00424{bottom:222.839490px;}
.y8f_c00424{bottom:240.496200px;}
.y8d_c00424{bottom:240.496590px;}
.y90_c00424{bottom:240.496740px;}
.y8e_c00424{bottom:240.496830px;}
.y8c_c00424{bottom:240.497040px;}
.y8a_c00424{bottom:240.497520px;}
.y8b_c00424{bottom:240.497730px;}
.y87_c00424{bottom:257.294400px;}
.y88_c00424{bottom:257.295030px;}
.y86_c00424{bottom:257.295090px;}
.y89_c00424{bottom:257.295630px;}
.y85_c00424{bottom:257.295810px;}
.y7d_c00424{bottom:272.400990px;}
.y7e_c00424{bottom:272.685480px;}
.y7f_c00424{bottom:273.619290px;}
.y80_c00424{bottom:273.781020px;}
.y81_c00424{bottom:274.083450px;}
.y82_c00424{bottom:274.659390px;}
.y83_c00424{bottom:275.664240px;}
.y84_c00424{bottom:275.997180px;}
.y76_c00424{bottom:290.223600px;}
.y77_c00424{bottom:290.673240px;}
.y78_c00424{bottom:291.710790px;}
.y79_c00424{bottom:292.592700px;}
.y7a_c00424{bottom:292.918110px;}
.y7b_c00424{bottom:293.186130px;}
.y7c_c00424{bottom:294.020820px;}
.y6e_c00424{bottom:307.506570px;}
.y6f_c00424{bottom:307.871310px;}
.y70_c00424{bottom:308.896800px;}
.y71_c00424{bottom:310.170660px;}
.y72_c00424{bottom:310.529790px;}
.y73_c00424{bottom:310.982700px;}
.y74_c00424{bottom:311.798010px;}
.y75_c00424{bottom:312.338760px;}
.y65_c00424{bottom:324.787710px;}
.y66_c00424{bottom:325.145760px;}
.y67_c00424{bottom:325.431060px;}
.y68_c00424{bottom:326.266890px;}
.y69_c00424{bottom:326.726070px;}
.y6a_c00424{bottom:327.883410px;}
.y6b_c00424{bottom:328.778850px;}
.y6c_c00424{bottom:329.215170px;}
.y6d_c00424{bottom:329.521350px;}
.y5e_c00424{bottom:340.181190px;}
.y5f_c00424{bottom:341.520840px;}
.y60_c00424{bottom:342.000090px;}
.y61_c00424{bottom:342.803280px;}
.y62_c00424{bottom:344.010450px;}
.y63_c00424{bottom:344.359560px;}
.y64_c00424{bottom:344.662020px;}
.y56_c00424{bottom:356.927670px;}
.y57_c00424{bottom:357.902880px;}
.y58_c00424{bottom:358.176960px;}
.y59_c00424{bottom:358.846800px;}
.y5a_c00424{bottom:360.487890px;}
.y5b_c00424{bottom:361.087050px;}
.y5c_c00424{bottom:361.871400px;}
.y5d_c00424{bottom:362.400540px;}
.y4f_c00424{bottom:371.516010px;}
.y50_c00424{bottom:372.147330px;}
.y51_c00424{bottom:373.902270px;}
.y52_c00424{bottom:375.529890px;}
.y53_c00424{bottom:376.239030px;}
.y54_c00424{bottom:376.759740px;}
.y55_c00424{bottom:378.906690px;}
.y48_c00424{bottom:390.143940px;}
.y49_c00424{bottom:391.039830px;}
.y4a_c00424{bottom:392.209980px;}
.y4b_c00424{bottom:392.467140px;}
.y4c_c00424{bottom:393.288750px;}
.y4d_c00424{bottom:394.035540px;}
.y4e_c00424{bottom:394.266750px;}
.y3f_c00424{bottom:405.003990px;}
.y40_c00424{bottom:405.853980px;}
.y41_c00424{bottom:406.531530px;}
.y42_c00424{bottom:407.760930px;}
.y43_c00424{bottom:408.052770px;}
.y44_c00424{bottom:409.690860px;}
.y45_c00424{bottom:410.200290px;}
.y46_c00424{bottom:411.259320px;}
.y47_c00424{bottom:411.596700px;}
.y38_c00424{bottom:421.474500px;}
.y39_c00424{bottom:422.494680px;}
.y3a_c00424{bottom:423.306240px;}
.y3b_c00424{bottom:424.508460px;}
.y3c_c00424{bottom:424.898910px;}
.y3d_c00424{bottom:425.288070px;}
.y3e_c00424{bottom:426.460170px;}
.y35_c00424{bottom:439.245744px;}
.y36_c00424{bottom:440.812329px;}
.y37_c00424{bottom:441.389407px;}
.y2e_c00424{bottom:456.258218px;}
.y2f_c00424{bottom:457.065591px;}
.y30_c00424{bottom:458.047029px;}
.y31_c00424{bottom:459.150519px;}
.y32_c00424{bottom:459.983696px;}
.y33_c00424{bottom:461.018448px;}
.y34_c00424{bottom:461.388904px;}
.y27_c00424{bottom:472.738155px;}
.y28_c00424{bottom:473.201271px;}
.y29_c00424{bottom:474.259642px;}
.y2a_c00424{bottom:475.014981px;}
.y2b_c00424{bottom:476.279966px;}
.y2c_c00424{bottom:477.533082px;}
.y2d_c00424{bottom:478.054782px;}
.y21_c00424{bottom:489.219717px;}
.y22_c00424{bottom:490.743321px;}
.y23_c00424{bottom:491.730619px;}
.y24_c00424{bottom:492.413718px;}
.y25_c00424{bottom:492.912220px;}
.y26_c00424{bottom:494.928759px;}
.y1a_c00424{bottom:506.775000px;}
.y1b_c00424{bottom:508.243273px;}
.y1c_c00424{bottom:509.483278px;}
.y1d_c00424{bottom:510.387994px;}
.y1e_c00424{bottom:512.031787px;}
.y1f_c00424{bottom:512.539725px;}
.y20_c00424{bottom:512.966865px;}
.y11_c00424{bottom:521.903429px;}
.y12_c00424{bottom:522.971013px;}
.y13_c00424{bottom:523.696360px;}
.y14_c00424{bottom:525.002337px;}
.y15_c00424{bottom:525.696588px;}
.y16_c00424{bottom:527.466189px;}
.y17_c00424{bottom:528.074392px;}
.y18_c00424{bottom:529.485621px;}
.y19_c00424{bottom:530.193856px;}
.yb_c00424{bottom:540.270870px;}
.yc_c00424{bottom:541.373458px;}
.yd_c00424{bottom:543.996889px;}
.ye_c00424{bottom:544.671610px;}
.yf_c00424{bottom:545.175408px;}
.y10_c00424{bottom:546.080185px;}
.y2_c00424{bottom:555.942000px;}
.y3_c00424{bottom:556.537804px;}
.y4_c00424{bottom:557.057814px;}
.y5_c00424{bottom:559.352170px;}
.y6_c00424{bottom:560.531782px;}
.y7_c00424{bottom:560.934147px;}
.y8_c00424{bottom:561.469827px;}
.y9_c00424{bottom:563.173913px;}
.ya_c00424{bottom:563.868297px;}
.y1_c00424{bottom:578.611500px;}
.h13_c00424{height:54.603303px;}
.h10_c00424{height:58.809525px;}
.hb_c00424{height:58.811759px;}
.hc_c00424{height:59.861969px;}
.h4_c00424{height:59.878751px;}
.h9_c00424{height:60.912179px;}
.h7_c00424{height:60.929255px;}
.h1_c00424{height:61.950000px;}
.h14_c00424{height:61.953748px;}
.hd_c00424{height:61.962389px;}
.h3_c00424{height:61.979760px;}
.he_c00424{height:63.012599px;}
.h2_c00424{height:63.030264px;}
.h12_c00424{height:64.053875px;}
.hf_c00424{height:64.062809px;}
.h5_c00424{height:65.131273px;}
.ha_c00424{height:66.163229px;}
.h15_c00424{height:67.204065px;}
.h11_c00424{height:68.261056px;}
.h8_c00424{height:68.263649px;}
.h16_c00424{height:70.354256px;}
.h6_c00424{height:70.383795px;}
.h0_c00424{height:608.250000px;}
.w0_c00424{width:359.100000px;}
.w1_c00424{width:359.250000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:26.017500px;}
.xf_c00424{left:27.296410px;}
.x31_c00424{left:28.426560px;}
.x2b_c00424{left:30.223500px;}
.x58_c00424{left:32.066880px;}
.x69_c00424{left:33.654045px;}
.x70_c00424{left:35.369832px;}
.x77_c00424{left:36.719468px;}
.x79_c00424{left:37.800600px;}
.x64_c00424{left:42.363000px;}
.x3_c00424{left:45.237000px;}
.x21_c00424{left:49.143202px;}
.x6a_c00424{left:51.186111px;}
.x3c_c00424{left:52.460040px;}
.x71_c00424{left:54.270625px;}
.x53_c00424{left:55.888350px;}
.x60_c00424{left:58.417800px;}
.x4e_c00424{left:59.862330px;}
.x4_c00424{left:62.011500px;}
.x32_c00424{left:65.373840px;}
.x45_c00424{left:66.886260px;}
.xb_c00424{left:70.865248px;}
.x25_c00424{left:72.885723px;}
.x72_c00424{left:74.251551px;}
.x38_c00424{left:79.318080px;}
.x2c_c00424{left:81.232500px;}
.x1d_c00424{left:85.685004px;}
.x10_c00424{left:87.070270px;}
.x74_c00424{left:91.261854px;}
.x17_c00424{left:94.278777px;}
.x59_c00424{left:95.767530px;}
.x22_c00424{left:97.233094px;}
.x65_c00424{left:101.131500px;}
.x61_c00424{left:104.886240px;}
.x2a_c00424{left:107.576023px;}
.x6d_c00424{left:111.560820px;}
.x75_c00424{left:114.753192px;}
.x46_c00424{left:116.030700px;}
.x7a_c00424{left:117.995802px;}
.x3d_c00424{left:119.948940px;}
.x2d_c00424{left:121.810500px;}
.x1e_c00424{left:123.684409px;}
.x26_c00424{left:127.405671px;}
.x40_c00424{left:129.030060px;}
.x11_c00424{left:130.603119px;}
.x5_c00424{left:136.023000px;}
.x66_c00424{left:137.133000px;}
.x5a_c00424{left:139.781310px;}
.x47_c00424{left:143.041320px;}
.x56_c00424{left:145.545240px;}
.x33_c00424{left:148.266360px;}
.x18_c00424{left:150.649494px;}
.x12_c00424{left:153.724816px;}
.x1_c00424{left:155.250000px;}
.x62_c00424{left:158.638350px;}
.x51_c00424{left:159.769440px;}
.x34_c00424{left:160.982610px;}
.x78_c00424{left:162.277164px;}
.x39_c00424{left:163.288620px;}
.x1f_c00424{left:169.162477px;}
.x67_c00424{left:170.868000px;}
.x6_c00424{left:174.075000px;}
.xc_c00424{left:175.785732px;}
.x4a_c00424{left:177.365520px;}
.x63_c00424{left:179.965770px;}
.x2e_c00424{left:181.921500px;}
.x54_c00424{left:185.783310px;}
.x7_c00424{left:187.054500px;}
.x23_c00424{left:189.091716px;}
.x19_c00424{left:191.796979px;}
.x7b_c00424{left:195.490674px;}
.x4b_c00424{left:197.347830px;}
.x2f_c00424{left:201.444000px;}
.xd_c00424{left:202.781754px;}
.x8_c00424{left:204.334500px;}
.x5d_c00424{left:207.549000px;}
.x3e_c00424{left:209.851170px;}
.x3a_c00424{left:211.647030px;}
.x13_c00424{left:212.697630px;}
.x41_c00424{left:215.436300px;}
.x6e_c00424{left:219.221973px;}
.x30_c00424{left:220.902000px;}
.xe_c00424{left:222.907974px;}
.x4f_c00424{left:227.298540px;}
.x3f_c00424{left:229.884270px;}
.x14_c00424{left:232.946734px;}
.x27_c00424{left:234.970462px;}
.x68_c00424{left:236.511000px;}
.x73_c00424{left:239.771098px;}
.x20_c00424{left:246.707974px;}
.x35_c00424{left:254.403030px;}
.x3b_c00424{left:255.589170px;}
.x5e_c00424{left:257.431470px;}
.x9_c00424{left:259.305000px;}
.x6c_c00424{left:260.430000px;}
.x48_c00424{left:263.762550px;}
.x1a_c00424{left:266.520811px;}
.x4c_c00424{left:267.736620px;}
.x24_c00424{left:269.785722px;}
.x5f_c00424{left:272.376270px;}
.x44_c00424{left:274.040670px;}
.x15_c00424{left:279.971676px;}
.xa_c00424{left:281.704500px;}
.x50_c00424{left:282.913590px;}
.x5b_c00424{left:284.194620px;}
.x55_c00424{left:287.054310px;}
.x42_c00424{left:288.288270px;}
.x1b_c00424{left:289.589728px;}
.x57_c00424{left:291.373530px;}
.x28_c00424{left:292.421073px;}
.x6f_c00424{left:294.867657px;}
.x76_c00424{left:296.204637px;}
.x4d_c00424{left:297.775320px;}
.x36_c00424{left:300.451770px;}
.x16_c00424{left:303.592920px;}
.x52_c00424{left:305.147190px;}
.x49_c00424{left:307.415160px;}
.x1c_c00424{left:309.035169px;}
.x5c_c00424{left:312.039450px;}
.x29_c00424{left:313.040896px;}
.x37_c00424{left:315.144900px;}
.x43_c00424{left:316.170840px;}
.x6b_c00424{left:317.986614px;}
.x7c_c00424{left:324.828833px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs12_c00424{font-size:48.536270pt;}
.fsf_c00424{font-size:52.275133pt;}
.fsa_c00424{font-size:52.277119pt;}
.fsb_c00424{font-size:53.210639pt;}
.fs3_c00424{font-size:53.225556pt;}
.fs8_c00424{font-size:54.144159pt;}
.fs6_c00424{font-size:54.159338pt;}
.fs0_c00424{font-size:55.066667pt;}
.fs13_c00424{font-size:55.069998pt;}
.fsc_c00424{font-size:55.077679pt;}
.fs2_c00424{font-size:55.093120pt;}
.fsd_c00424{font-size:56.011199pt;}
.fs1_c00424{font-size:56.026902pt;}
.fs11_c00424{font-size:56.936778pt;}
.fse_c00424{font-size:56.944719pt;}
.fs4_c00424{font-size:57.894465pt;}
.fs9_c00424{font-size:58.811759pt;}
.fs14_c00424{font-size:59.736947pt;}
.fs10_c00424{font-size:60.676494pt;}
.fs7_c00424{font-size:60.678799pt;}
.fs15_c00424{font-size:62.537116pt;}
.fs5_c00424{font-size:62.563373pt;}
.y0_c00424{bottom:0.000000pt;}
.ye8_c00424{bottom:32.607391pt;}
.ye7_c00424{bottom:32.607580pt;}
.ye3_c00424{bottom:32.607591pt;}
.ye2_c00424{bottom:32.607899pt;}
.ye4_c00424{bottom:32.607935pt;}
.ye6_c00424{bottom:32.608237pt;}
.ye5_c00424{bottom:32.608533pt;}
.ye1_c00424{bottom:46.871468pt;}
.yde_c00424{bottom:46.871915pt;}
.ye0_c00424{bottom:46.872043pt;}
.ydd_c00424{bottom:46.872276pt;}
.ydc_c00424{bottom:46.872305pt;}
.ydb_c00424{bottom:46.872388pt;}
.ydf_c00424{bottom:46.872525pt;}
.yd5_c00424{bottom:62.365904pt;}
.yd6_c00424{bottom:62.366168pt;}
.yd4_c00424{bottom:62.366345pt;}
.yd7_c00424{bottom:62.366500pt;}
.yd9_c00424{bottom:62.366652pt;}
.yd8_c00424{bottom:62.366963pt;}
.yda_c00424{bottom:62.367144pt;}
.yd2_c00424{bottom:77.375899pt;}
.yd3_c00424{bottom:77.375923pt;}
.yd1_c00424{bottom:77.376207pt;}
.yd0_c00424{bottom:77.376675pt;}
.ycf_c00424{bottom:77.376716pt;}
.yce_c00424{bottom:77.377053pt;}
.ycd_c00424{bottom:77.377681pt;}
.ycc_c00424{bottom:77.378336pt;}
.ycb_c00424{bottom:77.378884pt;}
.yc4_c00424{bottom:88.324357pt;}
.yc5_c00424{bottom:89.449415pt;}
.yc6_c00424{bottom:89.762604pt;}
.yc7_c00424{bottom:91.555029pt;}
.yc8_c00424{bottom:91.772740pt;}
.yc9_c00424{bottom:92.080960pt;}
.yca_c00424{bottom:93.184468pt;}
.ybe_c00424{bottom:106.561333pt;}
.ybf_c00424{bottom:107.094525pt;}
.yc0_c00424{bottom:107.583072pt;}
.yc1_c00424{bottom:107.778447pt;}
.yc2_c00424{bottom:108.660324pt;}
.yc3_c00424{bottom:109.177764pt;}
.yb7_c00424{bottom:121.200192pt;}
.yb8_c00424{bottom:121.403347pt;}
.yb9_c00424{bottom:121.976821pt;}
.yba_c00424{bottom:122.523536pt;}
.ybb_c00424{bottom:122.761261pt;}
.ybc_c00424{bottom:123.525403pt;}
.ybd_c00424{bottom:124.486437pt;}
.yaf_c00424{bottom:135.124000pt;}
.yb0_c00424{bottom:135.852328pt;}
.yb1_c00424{bottom:136.064296pt;}
.yb2_c00424{bottom:136.640320pt;}
.yb3_c00424{bottom:137.180080pt;}
.yb4_c00424{bottom:137.361712pt;}
.yb5_c00424{bottom:138.230368pt;}
.yb6_c00424{bottom:139.404040pt;}
.ya7_c00424{bottom:151.638160pt;}
.ya8_c00424{bottom:151.909307pt;}
.ya9_c00424{bottom:152.404613pt;}
.yaa_c00424{bottom:152.977387pt;}
.yab_c00424{bottom:153.204480pt;}
.yac_c00424{bottom:153.503733pt;}
.yad_c00424{bottom:153.777147pt;}
.yae_c00424{bottom:154.414133pt;}
.ya0_c00424{bottom:165.802320pt;}
.ya1_c00424{bottom:166.584453pt;}
.ya2_c00424{bottom:166.876613pt;}
.ya3_c00424{bottom:167.703067pt;}
.ya4_c00424{bottom:167.979227pt;}
.ya5_c00424{bottom:168.600587pt;}
.ya6_c00424{bottom:168.786240pt;}
.y98_c00424{bottom:180.204347pt;}
.y99_c00424{bottom:180.538667pt;}
.y9a_c00424{bottom:180.996667pt;}
.y9b_c00424{bottom:181.544373pt;}
.y9c_c00424{bottom:181.783067pt;}
.y9d_c00424{bottom:182.011840pt;}
.y9e_c00424{bottom:183.342080pt;}
.y9f_c00424{bottom:183.689040pt;}
.y91_c00424{bottom:198.077840pt;}
.y92_c00424{bottom:198.078480pt;}
.y94_c00424{bottom:198.078747pt;}
.y93_c00424{bottom:198.078960pt;}
.y95_c00424{bottom:198.079067pt;}
.y96_c00424{bottom:198.079253pt;}
.y97_c00424{bottom:198.079547pt;}
.y8f_c00424{bottom:213.774400pt;}
.y8d_c00424{bottom:213.774747pt;}
.y90_c00424{bottom:213.774880pt;}
.y8e_c00424{bottom:213.774960pt;}
.y8c_c00424{bottom:213.775147pt;}
.y8a_c00424{bottom:213.775573pt;}
.y8b_c00424{bottom:213.775760pt;}
.y87_c00424{bottom:228.706133pt;}
.y88_c00424{bottom:228.706693pt;}
.y86_c00424{bottom:228.706747pt;}
.y89_c00424{bottom:228.707227pt;}
.y85_c00424{bottom:228.707387pt;}
.y7d_c00424{bottom:242.134213pt;}
.y7e_c00424{bottom:242.387093pt;}
.y7f_c00424{bottom:243.217147pt;}
.y80_c00424{bottom:243.360907pt;}
.y81_c00424{bottom:243.629733pt;}
.y82_c00424{bottom:244.141680pt;}
.y83_c00424{bottom:245.034880pt;}
.y84_c00424{bottom:245.330827pt;}
.y76_c00424{bottom:257.976533pt;}
.y77_c00424{bottom:258.376213pt;}
.y78_c00424{bottom:259.298480pt;}
.y79_c00424{bottom:260.082400pt;}
.y7a_c00424{bottom:260.371653pt;}
.y7b_c00424{bottom:260.609893pt;}
.y7c_c00424{bottom:261.351840pt;}
.y6e_c00424{bottom:273.339173pt;}
.y6f_c00424{bottom:273.663387pt;}
.y70_c00424{bottom:274.574933pt;}
.y71_c00424{bottom:275.707253pt;}
.y72_c00424{bottom:276.026480pt;}
.y73_c00424{bottom:276.429067pt;}
.y74_c00424{bottom:277.153787pt;}
.y75_c00424{bottom:277.634453pt;}
.y65_c00424{bottom:288.700187pt;}
.y66_c00424{bottom:289.018453pt;}
.y67_c00424{bottom:289.272053pt;}
.y68_c00424{bottom:290.015013pt;}
.y69_c00424{bottom:290.423173pt;}
.y6a_c00424{bottom:291.451920pt;}
.y6b_c00424{bottom:292.247867pt;}
.y6c_c00424{bottom:292.635707pt;}
.y6d_c00424{bottom:292.907867pt;}
.y5e_c00424{bottom:302.383280pt;}
.y5f_c00424{bottom:303.574080pt;}
.y60_c00424{bottom:304.000080pt;}
.y61_c00424{bottom:304.714027pt;}
.y62_c00424{bottom:305.787067pt;}
.y63_c00424{bottom:306.097387pt;}
.y64_c00424{bottom:306.366240pt;}
.y56_c00424{bottom:317.269040pt;}
.y57_c00424{bottom:318.135893pt;}
.y58_c00424{bottom:318.379520pt;}
.y59_c00424{bottom:318.974933pt;}
.y5a_c00424{bottom:320.433680pt;}
.y5b_c00424{bottom:320.966267pt;}
.y5c_c00424{bottom:321.663467pt;}
.y5d_c00424{bottom:322.133813pt;}
.y4f_c00424{bottom:330.236453pt;}
.y50_c00424{bottom:330.797627pt;}
.y51_c00424{bottom:332.357573pt;}
.y52_c00424{bottom:333.804347pt;}
.y53_c00424{bottom:334.434693pt;}
.y54_c00424{bottom:334.897547pt;}
.y55_c00424{bottom:336.805947pt;}
.y48_c00424{bottom:346.794613pt;}
.y49_c00424{bottom:347.590960pt;}
.y4a_c00424{bottom:348.631093pt;}
.y4b_c00424{bottom:348.859680pt;}
.y4c_c00424{bottom:349.590000pt;}
.y4d_c00424{bottom:350.253813pt;}
.y4e_c00424{bottom:350.459333pt;}
.y3f_c00424{bottom:360.003547pt;}
.y40_c00424{bottom:360.759093pt;}
.y41_c00424{bottom:361.361360pt;}
.y42_c00424{bottom:362.454160pt;}
.y43_c00424{bottom:362.713573pt;}
.y44_c00424{bottom:364.169653pt;}
.y45_c00424{bottom:364.622480pt;}
.y46_c00424{bottom:365.563840pt;}
.y47_c00424{bottom:365.863733pt;}
.y38_c00424{bottom:374.644000pt;}
.y39_c00424{bottom:375.550827pt;}
.y3a_c00424{bottom:376.272213pt;}
.y3b_c00424{bottom:377.340853pt;}
.y3c_c00424{bottom:377.687920pt;}
.y3d_c00424{bottom:378.033840pt;}
.y3e_c00424{bottom:379.075707pt;}
.y35_c00424{bottom:390.440661pt;}
.y36_c00424{bottom:391.833181pt;}
.y37_c00424{bottom:392.346140pt;}
.y2e_c00424{bottom:405.562860pt;}
.y2f_c00424{bottom:406.280525pt;}
.y30_c00424{bottom:407.152915pt;}
.y31_c00424{bottom:408.133795pt;}
.y32_c00424{bottom:408.874396pt;}
.y33_c00424{bottom:409.794176pt;}
.y34_c00424{bottom:410.123471pt;}
.y27_c00424{bottom:420.211693pt;}
.y28_c00424{bottom:420.623352pt;}
.y29_c00424{bottom:421.564127pt;}
.y2a_c00424{bottom:422.235539pt;}
.y2b_c00424{bottom:423.359969pt;}
.y2c_c00424{bottom:424.473851pt;}
.y2d_c00424{bottom:424.937584pt;}
.y21_c00424{bottom:434.861971pt;}
.y22_c00424{bottom:436.216285pt;}
.y23_c00424{bottom:437.093884pt;}
.y24_c00424{bottom:437.701083pt;}
.y25_c00424{bottom:438.144196pt;}
.y26_c00424{bottom:439.936675pt;}
.y1a_c00424{bottom:450.466667pt;}
.y1b_c00424{bottom:451.771799pt;}
.y1c_c00424{bottom:452.874025pt;}
.y1d_c00424{bottom:453.678217pt;}
.y1e_c00424{bottom:455.139367pt;}
.y1f_c00424{bottom:455.590867pt;}
.y20_c00424{bottom:455.970547pt;}
.y11_c00424{bottom:463.914159pt;}
.y12_c00424{bottom:464.863123pt;}
.y13_c00424{bottom:465.507876pt;}
.y14_c00424{bottom:466.668744pt;}
.y15_c00424{bottom:467.285856pt;}
.y16_c00424{bottom:468.858835pt;}
.y17_c00424{bottom:469.399460pt;}
.y18_c00424{bottom:470.653885pt;}
.y19_c00424{bottom:471.283428pt;}
.yb_c00424{bottom:480.240773pt;}
.yc_c00424{bottom:481.220852pt;}
.yd_c00424{bottom:483.552791pt;}
.ye_c00424{bottom:484.152543pt;}
.yf_c00424{bottom:484.600363pt;}
.y10_c00424{bottom:485.404609pt;}
.y2_c00424{bottom:494.170667pt;}
.y3_c00424{bottom:494.700271pt;}
.y4_c00424{bottom:495.162501pt;}
.y5_c00424{bottom:497.201929pt;}
.y6_c00424{bottom:498.250473pt;}
.y7_c00424{bottom:498.608131pt;}
.y8_c00424{bottom:499.084291pt;}
.y9_c00424{bottom:500.599033pt;}
.ya_c00424{bottom:501.216264pt;}
.y1_c00424{bottom:514.321333pt;}
.h13_c00424{height:48.536270pt;}
.h10_c00424{height:52.275133pt;}
.hb_c00424{height:52.277119pt;}
.hc_c00424{height:53.210639pt;}
.h4_c00424{height:53.225556pt;}
.h9_c00424{height:54.144159pt;}
.h7_c00424{height:54.159338pt;}
.h1_c00424{height:55.066667pt;}
.h14_c00424{height:55.069998pt;}
.hd_c00424{height:55.077679pt;}
.h3_c00424{height:55.093120pt;}
.he_c00424{height:56.011199pt;}
.h2_c00424{height:56.026902pt;}
.h12_c00424{height:56.936778pt;}
.hf_c00424{height:56.944719pt;}
.h5_c00424{height:57.894465pt;}
.ha_c00424{height:58.811759pt;}
.h15_c00424{height:59.736947pt;}
.h11_c00424{height:60.676494pt;}
.h8_c00424{height:60.678799pt;}
.h16_c00424{height:62.537116pt;}
.h6_c00424{height:62.563373pt;}
.h0_c00424{height:540.666667pt;}
.w0_c00424{width:319.200000pt;}
.w1_c00424{width:319.333333pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:23.126667pt;}
.xf_c00424{left:24.263476pt;}
.x31_c00424{left:25.268053pt;}
.x2b_c00424{left:26.865333pt;}
.x58_c00424{left:28.503893pt;}
.x69_c00424{left:29.914707pt;}
.x70_c00424{left:31.439851pt;}
.x77_c00424{left:32.639527pt;}
.x79_c00424{left:33.600533pt;}
.x64_c00424{left:37.656000pt;}
.x3_c00424{left:40.210667pt;}
.x21_c00424{left:43.682847pt;}
.x6a_c00424{left:45.498765pt;}
.x3c_c00424{left:46.631147pt;}
.x71_c00424{left:48.240556pt;}
.x53_c00424{left:49.678533pt;}
.x60_c00424{left:51.926933pt;}
.x4e_c00424{left:53.210960pt;}
.x4_c00424{left:55.121333pt;}
.x32_c00424{left:58.110080pt;}
.x45_c00424{left:59.454453pt;}
.xb_c00424{left:62.991332pt;}
.x25_c00424{left:64.787309pt;}
.x72_c00424{left:66.001379pt;}
.x38_c00424{left:70.504960pt;}
.x2c_c00424{left:72.206667pt;}
.x1d_c00424{left:76.164448pt;}
.x10_c00424{left:77.395796pt;}
.x74_c00424{left:81.121648pt;}
.x17_c00424{left:83.803357pt;}
.x59_c00424{left:85.126693pt;}
.x22_c00424{left:86.429417pt;}
.x65_c00424{left:89.894667pt;}
.x61_c00424{left:93.232213pt;}
.x2a_c00424{left:95.623132pt;}
.x6d_c00424{left:99.165173pt;}
.x75_c00424{left:102.002837pt;}
.x46_c00424{left:103.138400pt;}
.x7a_c00424{left:104.885157pt;}
.x3d_c00424{left:106.621280pt;}
.x2d_c00424{left:108.276000pt;}
.x1e_c00424{left:109.941697pt;}
.x26_c00424{left:113.249485pt;}
.x40_c00424{left:114.693387pt;}
.x11_c00424{left:116.091661pt;}
.x5_c00424{left:120.909333pt;}
.x66_c00424{left:121.896000pt;}
.x5a_c00424{left:124.250053pt;}
.x47_c00424{left:127.147840pt;}
.x56_c00424{left:129.373547pt;}
.x33_c00424{left:131.792320pt;}
.x18_c00424{left:133.910661pt;}
.x12_c00424{left:136.644281pt;}
.x1_c00424{left:138.000000pt;}
.x62_c00424{left:141.011867pt;}
.x51_c00424{left:142.017280pt;}
.x34_c00424{left:143.095653pt;}
.x78_c00424{left:144.246368pt;}
.x39_c00424{left:145.145440pt;}
.x1f_c00424{left:150.366647pt;}
.x67_c00424{left:151.882667pt;}
.x6_c00424{left:154.733333pt;}
.xc_c00424{left:156.253984pt;}
.x4a_c00424{left:157.658240pt;}
.x63_c00424{left:159.969573pt;}
.x2e_c00424{left:161.708000pt;}
.x54_c00424{left:165.140720pt;}
.x7_c00424{left:166.270667pt;}
.x23_c00424{left:168.081525pt;}
.x19_c00424{left:170.486204pt;}
.x7b_c00424{left:173.769488pt;}
.x4b_c00424{left:175.420293pt;}
.x2f_c00424{left:179.061333pt;}
.xd_c00424{left:180.250448pt;}
.x8_c00424{left:181.630667pt;}
.x5d_c00424{left:184.488000pt;}
.x3e_c00424{left:186.534373pt;}
.x3a_c00424{left:188.130693pt;}
.x13_c00424{left:189.064560pt;}
.x41_c00424{left:191.498933pt;}
.x6e_c00424{left:194.863976pt;}
.x30_c00424{left:196.357333pt;}
.xe_c00424{left:198.140421pt;}
.x4f_c00424{left:202.043147pt;}
.x3f_c00424{left:204.341573pt;}
.x14_c00424{left:207.063764pt;}
.x27_c00424{left:208.862633pt;}
.x68_c00424{left:210.232000pt;}
.x73_c00424{left:213.129865pt;}
.x20_c00424{left:219.295977pt;}
.x35_c00424{left:226.136027pt;}
.x3b_c00424{left:227.190373pt;}
.x5e_c00424{left:228.827973pt;}
.x9_c00424{left:230.493333pt;}
.x6c_c00424{left:231.493333pt;}
.x48_c00424{left:234.455600pt;}
.x1a_c00424{left:236.907388pt;}
.x4c_c00424{left:237.988107pt;}
.x24_c00424{left:239.809531pt;}
.x5f_c00424{left:242.112240pt;}
.x44_c00424{left:243.591707pt;}
.x15_c00424{left:248.863712pt;}
.xa_c00424{left:250.404000pt;}
.x50_c00424{left:251.478747pt;}
.x5b_c00424{left:252.617440pt;}
.x55_c00424{left:255.159387pt;}
.x42_c00424{left:256.256240pt;}
.x1b_c00424{left:257.413092pt;}
.x57_c00424{left:258.998693pt;}
.x28_c00424{left:259.929843pt;}
.x6f_c00424{left:262.104584pt;}
.x76_c00424{left:263.293011pt;}
.x4d_c00424{left:264.689173pt;}
.x36_c00424{left:267.068240pt;}
.x16_c00424{left:269.860373pt;}
.x52_c00424{left:271.241947pt;}
.x49_c00424{left:273.257920pt;}
.x1c_c00424{left:274.697928pt;}
.x5c_c00424{left:277.368400pt;}
.x29_c00424{left:278.258575pt;}
.x37_c00424{left:280.128800pt;}
.x43_c00424{left:281.040747pt;}
.x6b_c00424{left:282.654768pt;}
.x7c_c00424{left:288.736740pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00425 {
    display:none;
  }
  .loading-indicator_c00425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00425 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00425 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00425" -> "#page-container .classname_c00425")
 */
.pf_c00425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00425 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00425 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00425 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00425 {overflow:visible;}
  }
}
.c_c00425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00425 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00425:after { /* webkit #35443 */
  content: '';
}
.t_c00425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00425 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00425 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00425 { /* info for Javascript */
  display:none;
}
.l_c00425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00425:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00425 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00425.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);}
.me8_c00425{transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);}
.m8e_c00425{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m5e_c00425{transform:matrix(0.148130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148130,0.000000,0.000000,0.250000,0,0);}
.md0_c00425{transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150235,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.mdb_c00425{transform:matrix(0.152710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152710,0.000000,0.000000,0.250000,0,0);}
.m81_c00425{transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);}
.mdf_c00425{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.m9a_c00425{transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157815,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00425{transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158185,0.000000,0.000000,0.250000,0,0);}
.mdc_c00425{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m9e_c00425{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.me4_c00425{transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159665,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00425{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mb2_c00425{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m36_c00425{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161490,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.ma0_c00425{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00425{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);}
.m91_c00425{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m62_c00425{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m56_c00425{transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166805,0.000000,0.000000,0.250000,0,0);}
.m5a_c00425{transform:matrix(0.167445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167445,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168210,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.m77_c00425{transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168435,0.000000,0.000000,0.250000,0,0);}
.me7_c00425{transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);}
.m93_c00425{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.me6_c00425{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169755,0.000000,0.000000,0.250000,0,0);}
.m74_c00425{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.me2_c00425{transform:matrix(0.171010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171010,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00425{transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171480,0.000000,0.000000,0.250000,0,0);}
.m8a_c00425{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);}
.m99_c00425{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m9b_c00425{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172610,0.000000,0.000000,0.250000,0,0);}
.m66_c00425{transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m54_c00425{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.m8f_c00425{transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);}
.ma9_c00425{transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173585,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173860,0.000000,0.000000,0.250000,0,0);}
.m5c_c00425{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.me5_c00425{transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);}
.me3_c00425{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m7c_c00425{transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);}
.md1_c00425{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174870,0.000000,0.000000,0.250000,0,0);}
.m55_c00425{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176265,0.000000,0.000000,0.250000,0,0);}
.mba_c00425{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00425{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m61_c00425{transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178415,0.000000,0.000000,0.250000,0,0);}
.mc8_c00425{transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);}
.m70_c00425{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m8d_c00425{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.mbe_c00425{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.mae_c00425{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00425{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m65_c00425{transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180130,0.000000,0.000000,0.250000,0,0);}
.m80_c00425{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m7f_c00425{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00425{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);}
.m58_c00425{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.m83_c00425{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);}
.mb3_c00425{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m31_c00425{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183280,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.maf_c00425{transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184840,0.000000,0.000000,0.250000,0,0);}
.m3b_c00425{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m7d_c00425{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.mc5_c00425{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185480,0.000000,0.000000,0.250000,0,0);}
.m4d_c00425{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.m5f_c00425{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.mc3_c00425{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.me0_c00425{transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);}
.ma5_c00425{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00425{transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187195,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m84_c00425{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.mde_c00425{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.m9f_c00425{transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);}
.m72_c00425{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.m71_c00425{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00425{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m85_c00425{transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189395,0.000000,0.000000,0.250000,0,0);}
.m7e_c00425{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mac_c00425{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m86_c00425{transform:matrix(0.190415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190415,0.000000,0.000000,0.250000,0,0);}
.me1_c00425{transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190430,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.mb5_c00425{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.mc4_c00425{transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);}
.mdd_c00425{transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00425{transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193555,0.000000,0.000000,0.250000,0,0);}
.m94_c00425{transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m97_c00425{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m89_c00425{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.mcc_c00425{transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193965,0.000000,0.000000,0.250000,0,0);}
.mb4_c00425{transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);}
.m92_c00425{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.m63_c00425{transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195145,0.000000,0.000000,0.250000,0,0);}
.mcb_c00425{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00425{transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);}
.m7b_c00425{transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195535,0.000000,0.000000,0.250000,0,0);}
.m68_c00425{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m90_c00425{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m39_c00425{transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196215,0.000000,0.000000,0.250000,0,0);}
.m5b_c00425{transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.md2_c00425{transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);}
.m64_c00425{transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197690,0.000000,0.000000,0.250000,0,0);}
.mbb_c00425{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mc6_c00425{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.md9_c00425{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.m57_c00425{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.m79_c00425{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m32_c00425{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.md5_c00425{transform:matrix(0.200130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200130,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200655,0.000000,0.000000,0.250000,0,0);}
.mc0_c00425{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201410,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);}
.mcf_c00425{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.ma2_c00425{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m76_c00425{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.mc2_c00425{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.md3_c00425{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m67_c00425{transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);}
.md8_c00425{transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204380,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.mca_c00425{transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204530,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);}
.mc7_c00425{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00425{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mbf_c00425{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00425{transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);}
.m52_c00425{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.ma7_c00425{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.mce_c00425{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.mcd_c00425{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m87_c00425{transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210220,0.000000,0.000000,0.250000,0,0);}
.m88_c00425{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m49_c00425{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.ma8_c00425{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00425{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.md4_c00425{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m53_c00425{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213260,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00425{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.md6_c00425{transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);}
.md7_c00425{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m69_c00425{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.maa_c00425{transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215265,0.000000,0.000000,0.250000,0,0);}
.m96_c00425{transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215620,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.mad_c00425{transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);}
.m95_c00425{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00425{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.m9d_c00425{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.ma6_c00425{transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222765,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);}
.m47_c00425{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m3f_c00425{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);}
.m6c_c00425{transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226830,0.000000,0.000000,0.250000,0,0);}
.mda_c00425{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mc9_c00425{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00425{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.mbc_c00425{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m34_c00425{transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);}
.m51_c00425{transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);}
.m6f_c00425{transform:matrix(0.238270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238270,0.000000,0.000000,0.250000,0,0);}
.mab_c00425{transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00425{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mbd_c00425{transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);}
.mc1_c00425{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:0.000000px;}
.fc0_c00425{color:transparent;}
.fs8_c00425{font-size:57.750000px;}
.fsd_c00425{font-size:58.800000px;}
.fs3_c00425{font-size:60.900000px;}
.fsa_c00425{font-size:61.950000px;}
.fs6_c00425{font-size:63.000000px;}
.fsc_c00425{font-size:64.050000px;}
.fs1_c00425{font-size:65.100000px;}
.fs7_c00425{font-size:66.150000px;}
.fsb_c00425{font-size:67.200000px;}
.fs4_c00425{font-size:68.250000px;}
.fs9_c00425{font-size:69.300000px;}
.fs5_c00425{font-size:70.350000px;}
.fs0_c00425{font-size:72.450000px;}
.fse_c00425{font-size:74.550000px;}
.fs2_c00425{font-size:75.600000px;}
.y0_c00425{bottom:0.000000px;}
.ye7_c00425{bottom:26.784000px;}
.ye6_c00425{bottom:27.978000px;}
.ye5_c00425{bottom:28.552500px;}
.ye4_c00425{bottom:29.985000px;}
.ye3_c00425{bottom:30.235500px;}
.ye2_c00425{bottom:30.519000px;}
.ye1_c00425{bottom:44.743500px;}
.ye0_c00425{bottom:45.223500px;}
.ydf_c00425{bottom:46.276500px;}
.yde_c00425{bottom:46.680000px;}
.ydd_c00425{bottom:47.065500px;}
.ydc_c00425{bottom:48.139500px;}
.ydb_c00425{bottom:48.420000px;}
.yda_c00425{bottom:48.877500px;}
.yd9_c00425{bottom:59.277000px;}
.yd8_c00425{bottom:59.946000px;}
.yd7_c00425{bottom:61.396500px;}
.yd6_c00425{bottom:61.686000px;}
.yd5_c00425{bottom:63.562500px;}
.yd4_c00425{bottom:65.622000px;}
.yd3_c00425{bottom:76.024500px;}
.yd2_c00425{bottom:76.498500px;}
.yd1_c00425{bottom:77.656500px;}
.yd0_c00425{bottom:78.208500px;}
.ycf_c00425{bottom:78.705000px;}
.yce_c00425{bottom:80.068500px;}
.ycd_c00425{bottom:81.880500px;}
.ycc_c00425{bottom:82.362000px;}
.ycb_c00425{bottom:93.655500px;}
.yca_c00425{bottom:94.359000px;}
.yc9_c00425{bottom:95.769000px;}
.yc8_c00425{bottom:96.891000px;}
.yc7_c00425{bottom:98.008500px;}
.yc6_c00425{bottom:98.454000px;}
.yc5_c00425{bottom:99.642000px;}
.yc4_c00425{bottom:110.088000px;}
.yc3_c00425{bottom:111.099000px;}
.yc2_c00425{bottom:111.696000px;}
.yc1_c00425{bottom:112.824000px;}
.yc0_c00425{bottom:114.661500px;}
.ybf_c00425{bottom:115.213500px;}
.ybe_c00425{bottom:116.160000px;}
.ybd_c00425{bottom:116.647500px;}
.ybc_c00425{bottom:129.754500px;}
.ybb_c00425{bottom:129.943500px;}
.yba_c00425{bottom:130.957500px;}
.yb9_c00425{bottom:131.241000px;}
.yb8_c00425{bottom:131.607000px;}
.yb7_c00425{bottom:132.688500px;}
.yb6_c00425{bottom:133.372500px;}
.yb5_c00425{bottom:133.654500px;}
.yb4_c00425{bottom:144.664500px;}
.yb3_c00425{bottom:145.414500px;}
.yb2_c00425{bottom:145.887000px;}
.yb1_c00425{bottom:146.992500px;}
.yb0_c00425{bottom:147.402000px;}
.yaf_c00425{bottom:148.749000px;}
.yae_c00425{bottom:149.554500px;}
.yad_c00425{bottom:150.669000px;}
.yac_c00425{bottom:161.386500px;}
.yab_c00425{bottom:162.933000px;}
.yaa_c00425{bottom:163.449000px;}
.ya9_c00425{bottom:164.271000px;}
.ya8_c00425{bottom:165.558000px;}
.ya7_c00425{bottom:166.401000px;}
.ya6_c00425{bottom:166.867500px;}
.ya5_c00425{bottom:183.832500px;}
.ya4_c00425{bottom:195.459000px;}
.ya3_c00425{bottom:195.961500px;}
.ya2_c00425{bottom:197.425500px;}
.ya1_c00425{bottom:198.064500px;}
.ya0_c00425{bottom:199.416000px;}
.y9f_c00425{bottom:200.674500px;}
.y9e_c00425{bottom:201.154500px;}
.y9d_c00425{bottom:213.364500px;}
.y9c_c00425{bottom:214.552500px;}
.y9b_c00425{bottom:214.933500px;}
.y9a_c00425{bottom:216.021000px;}
.y99_c00425{bottom:216.780000px;}
.y98_c00425{bottom:217.138500px;}
.y97_c00425{bottom:218.439000px;}
.y96_c00425{bottom:229.491000px;}
.y95_c00425{bottom:229.872000px;}
.y94_c00425{bottom:231.358500px;}
.y93_c00425{bottom:231.979500px;}
.y92_c00425{bottom:233.463000px;}
.y91_c00425{bottom:233.874000px;}
.y90_c00425{bottom:236.259000px;}
.y8f_c00425{bottom:247.527000px;}
.y8e_c00425{bottom:247.864500px;}
.y8d_c00425{bottom:249.291000px;}
.y8c_c00425{bottom:249.642000px;}
.y8b_c00425{bottom:250.060500px;}
.y8a_c00425{bottom:251.115000px;}
.y89_c00425{bottom:251.526000px;}
.y88_c00425{bottom:252.724500px;}
.y87_c00425{bottom:265.029000px;}
.y86_c00425{bottom:266.122500px;}
.y85_c00425{bottom:266.796000px;}
.y84_c00425{bottom:267.141000px;}
.y83_c00425{bottom:268.843500px;}
.y82_c00425{bottom:269.058000px;}
.y81_c00425{bottom:269.460000px;}
.y80_c00425{bottom:281.227500px;}
.y7f_c00425{bottom:282.289500px;}
.y7e_c00425{bottom:282.636000px;}
.y7d_c00425{bottom:283.233000px;}
.y7c_c00425{bottom:284.053500px;}
.y7b_c00425{bottom:284.419500px;}
.y7a_c00425{bottom:285.118500px;}
.y79_c00425{bottom:285.328500px;}
.y78_c00425{bottom:285.930000px;}
.y77_c00425{bottom:297.483000px;}
.y76_c00425{bottom:297.970500px;}
.y75_c00425{bottom:299.280000px;}
.y74_c00425{bottom:299.836500px;}
.y73_c00425{bottom:300.339000px;}
.y72_c00425{bottom:301.866000px;}
.y71_c00425{bottom:302.313000px;}
.y70_c00425{bottom:302.941500px;}
.y6f_c00425{bottom:315.774000px;}
.y6e_c00425{bottom:316.411500px;}
.y6d_c00425{bottom:316.788000px;}
.y6c_c00425{bottom:318.289500px;}
.y6b_c00425{bottom:319.069500px;}
.y6a_c00425{bottom:319.593000px;}
.y69_c00425{bottom:319.951500px;}
.y68_c00425{bottom:332.611500px;}
.y67_c00425{bottom:333.877500px;}
.y66_c00425{bottom:334.284000px;}
.y65_c00425{bottom:335.104500px;}
.y64_c00425{bottom:336.198000px;}
.y63_c00425{bottom:336.963000px;}
.y62_c00425{bottom:349.345500px;}
.y61_c00425{bottom:349.899000px;}
.y60_c00425{bottom:350.647500px;}
.y5f_c00425{bottom:351.114000px;}
.y5e_c00425{bottom:351.756000px;}
.y5d_c00425{bottom:352.188000px;}
.y5c_c00425{bottom:353.316000px;}
.y5b_c00425{bottom:354.244500px;}
.y5a_c00425{bottom:367.669500px;}
.y59_c00425{bottom:368.050500px;}
.y58_c00425{bottom:368.415000px;}
.y57_c00425{bottom:369.447000px;}
.y56_c00425{bottom:369.832500px;}
.y55_c00425{bottom:370.569000px;}
.y54_c00425{bottom:371.254500px;}
.y53_c00425{bottom:384.913500px;}
.y52_c00425{bottom:385.416000px;}
.y51_c00425{bottom:386.401500px;}
.y50_c00425{bottom:386.725500px;}
.y4f_c00425{bottom:387.360000px;}
.y4e_c00425{bottom:387.688500px;}
.y4d_c00425{bottom:388.263000px;}
.y4c_c00425{bottom:400.498500px;}
.y4b_c00425{bottom:402.543000px;}
.y4a_c00425{bottom:403.170000px;}
.y49_c00425{bottom:404.058000px;}
.y48_c00425{bottom:404.839500px;}
.y47_c00425{bottom:406.356000px;}
.y46_c00425{bottom:417.163500px;}
.y45_c00425{bottom:417.961500px;}
.y44_c00425{bottom:418.794000px;}
.y43_c00425{bottom:420.205500px;}
.y42_c00425{bottom:420.967500px;}
.y41_c00425{bottom:421.528500px;}
.y40_c00425{bottom:423.504000px;}
.y3f_c00425{bottom:423.904500px;}
.y3e_c00425{bottom:434.824500px;}
.y3d_c00425{bottom:435.228000px;}
.y3c_c00425{bottom:435.474000px;}
.y3b_c00425{bottom:436.252500px;}
.y3a_c00425{bottom:436.621500px;}
.y39_c00425{bottom:437.455500px;}
.y38_c00425{bottom:438.531000px;}
.y37_c00425{bottom:438.928500px;}
.y36_c00425{bottom:439.293000px;}
.y35_c00425{bottom:451.851000px;}
.y34_c00425{bottom:452.770500px;}
.y33_c00425{bottom:453.103500px;}
.y32_c00425{bottom:454.114500px;}
.y31_c00425{bottom:454.749000px;}
.y30_c00425{bottom:455.139000px;}
.y2f_c00425{bottom:456.031500px;}
.y2e_c00425{bottom:469.309500px;}
.y2d_c00425{bottom:469.554000px;}
.y2c_c00425{bottom:470.137500px;}
.y2b_c00425{bottom:470.446500px;}
.y2a_c00425{bottom:471.304500px;}
.y29_c00425{bottom:472.321500px;}
.y28_c00425{bottom:472.771500px;}
.y27_c00425{bottom:485.596500px;}
.y26_c00425{bottom:486.010500px;}
.y25_c00425{bottom:487.347000px;}
.y24_c00425{bottom:488.521500px;}
.y23_c00425{bottom:488.829000px;}
.y22_c00425{bottom:489.783000px;}
.y21_c00425{bottom:501.972000px;}
.y20_c00425{bottom:502.324500px;}
.y1f_c00425{bottom:503.734500px;}
.y1e_c00425{bottom:503.896500px;}
.y1d_c00425{bottom:504.840000px;}
.y1c_c00425{bottom:505.606500px;}
.y1b_c00425{bottom:506.254500px;}
.y1a_c00425{bottom:519.123000px;}
.y19_c00425{bottom:519.507000px;}
.y18_c00425{bottom:520.336500px;}
.y17_c00425{bottom:520.636500px;}
.y16_c00425{bottom:521.542500px;}
.y15_c00425{bottom:521.719500px;}
.y14_c00425{bottom:522.495000px;}
.y13_c00425{bottom:522.721500px;}
.y12_c00425{bottom:522.993000px;}
.y11_c00425{bottom:537.103500px;}
.y10_c00425{bottom:537.340500px;}
.yf_c00425{bottom:537.795000px;}
.ye_c00425{bottom:538.782000px;}
.yd_c00425{bottom:538.996500px;}
.yc_c00425{bottom:539.224500px;}
.yb_c00425{bottom:539.733000px;}
.ya_c00425{bottom:553.941000px;}
.y9_c00425{bottom:554.331000px;}
.y8_c00425{bottom:554.640000px;}
.y7_c00425{bottom:555.180000px;}
.y6_c00425{bottom:555.489000px;}
.y5_c00425{bottom:556.186500px;}
.y4_c00425{bottom:556.531500px;}
.y3_c00425{bottom:557.037000px;}
.y2_c00425{bottom:557.551500px;}
.y1_c00425{bottom:569.691000px;}
.h9_c00425{height:57.750000px;}
.he_c00425{height:58.800000px;}
.h4_c00425{height:60.900000px;}
.hb_c00425{height:61.950000px;}
.h7_c00425{height:63.000000px;}
.hd_c00425{height:64.050000px;}
.h2_c00425{height:65.100000px;}
.h8_c00425{height:66.150000px;}
.hc_c00425{height:67.200000px;}
.h5_c00425{height:68.250000px;}
.ha_c00425{height:69.300000px;}
.h6_c00425{height:70.350000px;}
.h1_c00425{height:72.450000px;}
.hf_c00425{height:74.550000px;}
.h3_c00425{height:75.600000px;}
.h0_c00425{height:608.250000px;}
.w0_c00425{width:359.100000px;}
.w1_c00425{width:359.250000px;}
.x0_c00425{left:0.000000px;}
.x74_c00425{left:25.362000px;}
.x6f_c00425{left:26.547000px;}
.x5e_c00425{left:28.071000px;}
.x51_c00425{left:30.100500px;}
.x44_c00425{left:31.116000px;}
.x3b_c00425{left:32.815500px;}
.x23_c00425{left:34.120500px;}
.x12_c00425{left:35.187000px;}
.x3_c00425{left:36.340500px;}
.x79_c00425{left:44.877000px;}
.x75_c00425{left:47.239500px;}
.x40_c00425{left:48.381000px;}
.x31_c00425{left:50.758500px;}
.x49_c00425{left:53.023500px;}
.x13_c00425{left:54.627000px;}
.x4d_c00425{left:61.054500px;}
.x52_c00425{left:63.507000px;}
.x24_c00425{left:66.255000px;}
.x56_c00425{left:68.673000px;}
.x14_c00425{left:70.851000px;}
.x67_c00425{left:74.871000px;}
.x4_c00425{left:75.975000px;}
.x1a_c00425{left:78.099000px;}
.x71_c00425{left:79.648500px;}
.xc_c00425{left:82.474500px;}
.x4a_c00425{left:83.776500px;}
.x64_c00425{left:88.551000px;}
.x29_c00425{left:89.971500px;}
.x3c_c00425{left:92.992500px;}
.x1f_c00425{left:94.020000px;}
.x6c_c00425{left:96.783000px;}
.x1_c00425{left:99.630000px;}
.x36_c00425{left:102.157500px;}
.xd_c00425{left:103.249500px;}
.x65_c00425{left:104.844000px;}
.x76_c00425{left:107.170500px;}
.x5a_c00425{left:110.253000px;}
.x20_c00425{left:113.224500px;}
.x5_c00425{left:114.849000px;}
.xe_c00425{left:122.710500px;}
.x15_c00425{left:126.247500px;}
.x1b_c00425{left:129.195000px;}
.x5f_c00425{left:131.764500px;}
.x53_c00425{left:134.292000px;}
.x2e_c00425{left:135.952500px;}
.x37_c00425{left:137.703000px;}
.x16_c00425{left:138.862500px;}
.x6_c00425{left:141.375000px;}
.x45_c00425{left:147.213000px;}
.x60_c00425{left:149.605500px;}
.x72_c00425{left:150.700500px;}
.x3e_c00425{left:152.425500px;}
.x2a_c00425{left:153.979500px;}
.x4e_c00425{left:155.086500px;}
.x3d_c00425{left:156.952500px;}
.x32_c00425{left:161.058000px;}
.x41_c00425{left:162.568500px;}
.x7a_c00425{left:165.063000px;}
.x2_c00425{left:169.290000px;}
.x6d_c00425{left:174.070500px;}
.x57_c00425{left:175.125000px;}
.x68_c00425{left:176.313000px;}
.x38_c00425{left:178.056000px;}
.x54_c00425{left:179.887500px;}
.x2f_c00425{left:182.310000px;}
.x5b_c00425{left:183.906000px;}
.x21_c00425{left:186.649500px;}
.x66_c00425{left:188.731500px;}
.x1c_c00425{left:192.066000px;}
.x77_c00425{left:193.846500px;}
.x7_c00425{left:195.061500px;}
.x58_c00425{left:196.650000px;}
.x46_c00425{left:198.513000px;}
.x25_c00425{left:200.251500px;}
.x5c_c00425{left:201.471000px;}
.x17_c00425{left:203.619000px;}
.x4f_c00425{left:205.485000px;}
.x39_c00425{left:206.581500px;}
.xf_c00425{left:212.404500px;}
.x61_c00425{left:214.107000px;}
.x69_c00425{left:215.469000px;}
.x2b_c00425{left:217.168500px;}
.x8_c00425{left:218.814000px;}
.x3f_c00425{left:221.220000px;}
.x26_c00425{left:222.322500px;}
.x47_c00425{left:223.908000px;}
.x18_c00425{left:225.009000px;}
.x55_c00425{left:232.338000px;}
.x6a_c00425{left:235.443000px;}
.x2c_c00425{left:237.952500px;}
.x4b_c00425{left:240.111000px;}
.x70_c00425{left:241.920000px;}
.x30_c00425{left:246.121500px;}
.x42_c00425{left:248.160000px;}
.x78_c00425{left:251.866500px;}
.x10_c00425{left:253.713000px;}
.x33_c00425{left:255.532500px;}
.x9_c00425{left:260.394000px;}
.x27_c00425{left:263.970000px;}
.x73_c00425{left:265.783500px;}
.x50_c00425{left:267.832500px;}
.x22_c00425{left:270.157500px;}
.x5d_c00425{left:272.824500px;}
.x11_c00425{left:275.298000px;}
.x4c_c00425{left:277.644000px;}
.x28_c00425{left:281.452500px;}
.xa_c00425{left:284.202000px;}
.x6b_c00425{left:288.598500px;}
.x43_c00425{left:289.750500px;}
.x34_c00425{left:291.712500px;}
.x6e_c00425{left:292.870500px;}
.x2d_c00425{left:295.465500px;}
.x1d_c00425{left:296.887500px;}
.x3a_c00425{left:299.538000px;}
.x48_c00425{left:303.010500px;}
.x62_c00425{left:305.737500px;}
.x59_c00425{left:307.111500px;}
.x19_c00425{left:311.673000px;}
.xb_c00425{left:314.149500px;}
.x1e_c00425{left:320.364000px;}
.x63_c00425{left:322.320000px;}
.x35_c00425{left:326.418000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.fs8_c00425{font-size:51.333333pt;}
.fsd_c00425{font-size:52.266667pt;}
.fs3_c00425{font-size:54.133333pt;}
.fsa_c00425{font-size:55.066667pt;}
.fs6_c00425{font-size:56.000000pt;}
.fsc_c00425{font-size:56.933333pt;}
.fs1_c00425{font-size:57.866667pt;}
.fs7_c00425{font-size:58.800000pt;}
.fsb_c00425{font-size:59.733333pt;}
.fs4_c00425{font-size:60.666667pt;}
.fs9_c00425{font-size:61.600000pt;}
.fs5_c00425{font-size:62.533333pt;}
.fs0_c00425{font-size:64.400000pt;}
.fse_c00425{font-size:66.266667pt;}
.fs2_c00425{font-size:67.200000pt;}
.y0_c00425{bottom:0.000000pt;}
.ye7_c00425{bottom:23.808000pt;}
.ye6_c00425{bottom:24.869333pt;}
.ye5_c00425{bottom:25.380000pt;}
.ye4_c00425{bottom:26.653333pt;}
.ye3_c00425{bottom:26.876000pt;}
.ye2_c00425{bottom:27.128000pt;}
.ye1_c00425{bottom:39.772000pt;}
.ye0_c00425{bottom:40.198667pt;}
.ydf_c00425{bottom:41.134667pt;}
.yde_c00425{bottom:41.493333pt;}
.ydd_c00425{bottom:41.836000pt;}
.ydc_c00425{bottom:42.790667pt;}
.ydb_c00425{bottom:43.040000pt;}
.yda_c00425{bottom:43.446667pt;}
.yd9_c00425{bottom:52.690667pt;}
.yd8_c00425{bottom:53.285333pt;}
.yd7_c00425{bottom:54.574667pt;}
.yd6_c00425{bottom:54.832000pt;}
.yd5_c00425{bottom:56.500000pt;}
.yd4_c00425{bottom:58.330667pt;}
.yd3_c00425{bottom:67.577333pt;}
.yd2_c00425{bottom:67.998667pt;}
.yd1_c00425{bottom:69.028000pt;}
.yd0_c00425{bottom:69.518667pt;}
.ycf_c00425{bottom:69.960000pt;}
.yce_c00425{bottom:71.172000pt;}
.ycd_c00425{bottom:72.782667pt;}
.ycc_c00425{bottom:73.210667pt;}
.ycb_c00425{bottom:83.249333pt;}
.yca_c00425{bottom:83.874667pt;}
.yc9_c00425{bottom:85.128000pt;}
.yc8_c00425{bottom:86.125333pt;}
.yc7_c00425{bottom:87.118667pt;}
.yc6_c00425{bottom:87.514667pt;}
.yc5_c00425{bottom:88.570667pt;}
.yc4_c00425{bottom:97.856000pt;}
.yc3_c00425{bottom:98.754667pt;}
.yc2_c00425{bottom:99.285333pt;}
.yc1_c00425{bottom:100.288000pt;}
.yc0_c00425{bottom:101.921333pt;}
.ybf_c00425{bottom:102.412000pt;}
.ybe_c00425{bottom:103.253333pt;}
.ybd_c00425{bottom:103.686667pt;}
.ybc_c00425{bottom:115.337333pt;}
.ybb_c00425{bottom:115.505333pt;}
.yba_c00425{bottom:116.406667pt;}
.yb9_c00425{bottom:116.658667pt;}
.yb8_c00425{bottom:116.984000pt;}
.yb7_c00425{bottom:117.945333pt;}
.yb6_c00425{bottom:118.553333pt;}
.yb5_c00425{bottom:118.804000pt;}
.yb4_c00425{bottom:128.590667pt;}
.yb3_c00425{bottom:129.257333pt;}
.yb2_c00425{bottom:129.677333pt;}
.yb1_c00425{bottom:130.660000pt;}
.yb0_c00425{bottom:131.024000pt;}
.yaf_c00425{bottom:132.221333pt;}
.yae_c00425{bottom:132.937333pt;}
.yad_c00425{bottom:133.928000pt;}
.yac_c00425{bottom:143.454667pt;}
.yab_c00425{bottom:144.829333pt;}
.yaa_c00425{bottom:145.288000pt;}
.ya9_c00425{bottom:146.018667pt;}
.ya8_c00425{bottom:147.162667pt;}
.ya7_c00425{bottom:147.912000pt;}
.ya6_c00425{bottom:148.326667pt;}
.ya5_c00425{bottom:163.406667pt;}
.ya4_c00425{bottom:173.741333pt;}
.ya3_c00425{bottom:174.188000pt;}
.ya2_c00425{bottom:175.489333pt;}
.ya1_c00425{bottom:176.057333pt;}
.ya0_c00425{bottom:177.258667pt;}
.y9f_c00425{bottom:178.377333pt;}
.y9e_c00425{bottom:178.804000pt;}
.y9d_c00425{bottom:189.657333pt;}
.y9c_c00425{bottom:190.713333pt;}
.y9b_c00425{bottom:191.052000pt;}
.y9a_c00425{bottom:192.018667pt;}
.y99_c00425{bottom:192.693333pt;}
.y98_c00425{bottom:193.012000pt;}
.y97_c00425{bottom:194.168000pt;}
.y96_c00425{bottom:203.992000pt;}
.y95_c00425{bottom:204.330667pt;}
.y94_c00425{bottom:205.652000pt;}
.y93_c00425{bottom:206.204000pt;}
.y92_c00425{bottom:207.522667pt;}
.y91_c00425{bottom:207.888000pt;}
.y90_c00425{bottom:210.008000pt;}
.y8f_c00425{bottom:220.024000pt;}
.y8e_c00425{bottom:220.324000pt;}
.y8d_c00425{bottom:221.592000pt;}
.y8c_c00425{bottom:221.904000pt;}
.y8b_c00425{bottom:222.276000pt;}
.y8a_c00425{bottom:223.213333pt;}
.y89_c00425{bottom:223.578667pt;}
.y88_c00425{bottom:224.644000pt;}
.y87_c00425{bottom:235.581333pt;}
.y86_c00425{bottom:236.553333pt;}
.y85_c00425{bottom:237.152000pt;}
.y84_c00425{bottom:237.458667pt;}
.y83_c00425{bottom:238.972000pt;}
.y82_c00425{bottom:239.162667pt;}
.y81_c00425{bottom:239.520000pt;}
.y80_c00425{bottom:249.980000pt;}
.y7f_c00425{bottom:250.924000pt;}
.y7e_c00425{bottom:251.232000pt;}
.y7d_c00425{bottom:251.762667pt;}
.y7c_c00425{bottom:252.492000pt;}
.y7b_c00425{bottom:252.817333pt;}
.y7a_c00425{bottom:253.438667pt;}
.y79_c00425{bottom:253.625333pt;}
.y78_c00425{bottom:254.160000pt;}
.y77_c00425{bottom:264.429333pt;}
.y76_c00425{bottom:264.862667pt;}
.y75_c00425{bottom:266.026667pt;}
.y74_c00425{bottom:266.521333pt;}
.y73_c00425{bottom:266.968000pt;}
.y72_c00425{bottom:268.325333pt;}
.y71_c00425{bottom:268.722667pt;}
.y70_c00425{bottom:269.281333pt;}
.y6f_c00425{bottom:280.688000pt;}
.y6e_c00425{bottom:281.254667pt;}
.y6d_c00425{bottom:281.589333pt;}
.y6c_c00425{bottom:282.924000pt;}
.y6b_c00425{bottom:283.617333pt;}
.y6a_c00425{bottom:284.082667pt;}
.y69_c00425{bottom:284.401333pt;}
.y68_c00425{bottom:295.654667pt;}
.y67_c00425{bottom:296.780000pt;}
.y66_c00425{bottom:297.141333pt;}
.y65_c00425{bottom:297.870667pt;}
.y64_c00425{bottom:298.842667pt;}
.y63_c00425{bottom:299.522667pt;}
.y62_c00425{bottom:310.529333pt;}
.y61_c00425{bottom:311.021333pt;}
.y60_c00425{bottom:311.686667pt;}
.y5f_c00425{bottom:312.101333pt;}
.y5e_c00425{bottom:312.672000pt;}
.y5d_c00425{bottom:313.056000pt;}
.y5c_c00425{bottom:314.058667pt;}
.y5b_c00425{bottom:314.884000pt;}
.y5a_c00425{bottom:326.817333pt;}
.y59_c00425{bottom:327.156000pt;}
.y58_c00425{bottom:327.480000pt;}
.y57_c00425{bottom:328.397333pt;}
.y56_c00425{bottom:328.740000pt;}
.y55_c00425{bottom:329.394667pt;}
.y54_c00425{bottom:330.004000pt;}
.y53_c00425{bottom:342.145333pt;}
.y52_c00425{bottom:342.592000pt;}
.y51_c00425{bottom:343.468000pt;}
.y50_c00425{bottom:343.756000pt;}
.y4f_c00425{bottom:344.320000pt;}
.y4e_c00425{bottom:344.612000pt;}
.y4d_c00425{bottom:345.122667pt;}
.y4c_c00425{bottom:355.998667pt;}
.y4b_c00425{bottom:357.816000pt;}
.y4a_c00425{bottom:358.373333pt;}
.y49_c00425{bottom:359.162667pt;}
.y48_c00425{bottom:359.857333pt;}
.y47_c00425{bottom:361.205333pt;}
.y46_c00425{bottom:370.812000pt;}
.y45_c00425{bottom:371.521333pt;}
.y44_c00425{bottom:372.261333pt;}
.y43_c00425{bottom:373.516000pt;}
.y42_c00425{bottom:374.193333pt;}
.y41_c00425{bottom:374.692000pt;}
.y40_c00425{bottom:376.448000pt;}
.y3f_c00425{bottom:376.804000pt;}
.y3e_c00425{bottom:386.510667pt;}
.y3d_c00425{bottom:386.869333pt;}
.y3c_c00425{bottom:387.088000pt;}
.y3b_c00425{bottom:387.780000pt;}
.y3a_c00425{bottom:388.108000pt;}
.y39_c00425{bottom:388.849333pt;}
.y38_c00425{bottom:389.805333pt;}
.y37_c00425{bottom:390.158667pt;}
.y36_c00425{bottom:390.482667pt;}
.y35_c00425{bottom:401.645333pt;}
.y34_c00425{bottom:402.462667pt;}
.y33_c00425{bottom:402.758667pt;}
.y32_c00425{bottom:403.657333pt;}
.y31_c00425{bottom:404.221333pt;}
.y30_c00425{bottom:404.568000pt;}
.y2f_c00425{bottom:405.361333pt;}
.y2e_c00425{bottom:417.164000pt;}
.y2d_c00425{bottom:417.381333pt;}
.y2c_c00425{bottom:417.900000pt;}
.y2b_c00425{bottom:418.174667pt;}
.y2a_c00425{bottom:418.937333pt;}
.y29_c00425{bottom:419.841333pt;}
.y28_c00425{bottom:420.241333pt;}
.y27_c00425{bottom:431.641333pt;}
.y26_c00425{bottom:432.009333pt;}
.y25_c00425{bottom:433.197333pt;}
.y24_c00425{bottom:434.241333pt;}
.y23_c00425{bottom:434.514667pt;}
.y22_c00425{bottom:435.362667pt;}
.y21_c00425{bottom:446.197333pt;}
.y20_c00425{bottom:446.510667pt;}
.y1f_c00425{bottom:447.764000pt;}
.y1e_c00425{bottom:447.908000pt;}
.y1d_c00425{bottom:448.746667pt;}
.y1c_c00425{bottom:449.428000pt;}
.y1b_c00425{bottom:450.004000pt;}
.y1a_c00425{bottom:461.442667pt;}
.y19_c00425{bottom:461.784000pt;}
.y18_c00425{bottom:462.521333pt;}
.y17_c00425{bottom:462.788000pt;}
.y16_c00425{bottom:463.593333pt;}
.y15_c00425{bottom:463.750667pt;}
.y14_c00425{bottom:464.440000pt;}
.y13_c00425{bottom:464.641333pt;}
.y12_c00425{bottom:464.882667pt;}
.y11_c00425{bottom:477.425333pt;}
.y10_c00425{bottom:477.636000pt;}
.yf_c00425{bottom:478.040000pt;}
.ye_c00425{bottom:478.917333pt;}
.yd_c00425{bottom:479.108000pt;}
.yc_c00425{bottom:479.310667pt;}
.yb_c00425{bottom:479.762667pt;}
.ya_c00425{bottom:492.392000pt;}
.y9_c00425{bottom:492.738667pt;}
.y8_c00425{bottom:493.013333pt;}
.y7_c00425{bottom:493.493333pt;}
.y6_c00425{bottom:493.768000pt;}
.y5_c00425{bottom:494.388000pt;}
.y4_c00425{bottom:494.694667pt;}
.y3_c00425{bottom:495.144000pt;}
.y2_c00425{bottom:495.601333pt;}
.y1_c00425{bottom:506.392000pt;}
.h9_c00425{height:51.333333pt;}
.he_c00425{height:52.266667pt;}
.h4_c00425{height:54.133333pt;}
.hb_c00425{height:55.066667pt;}
.h7_c00425{height:56.000000pt;}
.hd_c00425{height:56.933333pt;}
.h2_c00425{height:57.866667pt;}
.h8_c00425{height:58.800000pt;}
.hc_c00425{height:59.733333pt;}
.h5_c00425{height:60.666667pt;}
.ha_c00425{height:61.600000pt;}
.h6_c00425{height:62.533333pt;}
.h1_c00425{height:64.400000pt;}
.hf_c00425{height:66.266667pt;}
.h3_c00425{height:67.200000pt;}
.h0_c00425{height:540.666667pt;}
.w0_c00425{width:319.200000pt;}
.w1_c00425{width:319.333333pt;}
.x0_c00425{left:0.000000pt;}
.x74_c00425{left:22.544000pt;}
.x6f_c00425{left:23.597333pt;}
.x5e_c00425{left:24.952000pt;}
.x51_c00425{left:26.756000pt;}
.x44_c00425{left:27.658667pt;}
.x3b_c00425{left:29.169333pt;}
.x23_c00425{left:30.329333pt;}
.x12_c00425{left:31.277333pt;}
.x3_c00425{left:32.302667pt;}
.x79_c00425{left:39.890667pt;}
.x75_c00425{left:41.990667pt;}
.x40_c00425{left:43.005333pt;}
.x31_c00425{left:45.118667pt;}
.x49_c00425{left:47.132000pt;}
.x13_c00425{left:48.557333pt;}
.x4d_c00425{left:54.270667pt;}
.x52_c00425{left:56.450667pt;}
.x24_c00425{left:58.893333pt;}
.x56_c00425{left:61.042667pt;}
.x14_c00425{left:62.978667pt;}
.x67_c00425{left:66.552000pt;}
.x4_c00425{left:67.533333pt;}
.x1a_c00425{left:69.421333pt;}
.x71_c00425{left:70.798667pt;}
.xc_c00425{left:73.310667pt;}
.x4a_c00425{left:74.468000pt;}
.x64_c00425{left:78.712000pt;}
.x29_c00425{left:79.974667pt;}
.x3c_c00425{left:82.660000pt;}
.x1f_c00425{left:83.573333pt;}
.x6c_c00425{left:86.029333pt;}
.x1_c00425{left:88.560000pt;}
.x36_c00425{left:90.806667pt;}
.xd_c00425{left:91.777333pt;}
.x65_c00425{left:93.194667pt;}
.x76_c00425{left:95.262667pt;}
.x5a_c00425{left:98.002667pt;}
.x20_c00425{left:100.644000pt;}
.x5_c00425{left:102.088000pt;}
.xe_c00425{left:109.076000pt;}
.x15_c00425{left:112.220000pt;}
.x1b_c00425{left:114.840000pt;}
.x5f_c00425{left:117.124000pt;}
.x53_c00425{left:119.370667pt;}
.x2e_c00425{left:120.846667pt;}
.x37_c00425{left:122.402667pt;}
.x16_c00425{left:123.433333pt;}
.x6_c00425{left:125.666667pt;}
.x45_c00425{left:130.856000pt;}
.x60_c00425{left:132.982667pt;}
.x72_c00425{left:133.956000pt;}
.x3e_c00425{left:135.489333pt;}
.x2a_c00425{left:136.870667pt;}
.x4e_c00425{left:137.854667pt;}
.x3d_c00425{left:139.513333pt;}
.x32_c00425{left:143.162667pt;}
.x41_c00425{left:144.505333pt;}
.x7a_c00425{left:146.722667pt;}
.x2_c00425{left:150.480000pt;}
.x6d_c00425{left:154.729333pt;}
.x57_c00425{left:155.666667pt;}
.x68_c00425{left:156.722667pt;}
.x38_c00425{left:158.272000pt;}
.x54_c00425{left:159.900000pt;}
.x2f_c00425{left:162.053333pt;}
.x5b_c00425{left:163.472000pt;}
.x21_c00425{left:165.910667pt;}
.x66_c00425{left:167.761333pt;}
.x1c_c00425{left:170.725333pt;}
.x77_c00425{left:172.308000pt;}
.x7_c00425{left:173.388000pt;}
.x58_c00425{left:174.800000pt;}
.x46_c00425{left:176.456000pt;}
.x25_c00425{left:178.001333pt;}
.x5c_c00425{left:179.085333pt;}
.x17_c00425{left:180.994667pt;}
.x4f_c00425{left:182.653333pt;}
.x39_c00425{left:183.628000pt;}
.xf_c00425{left:188.804000pt;}
.x61_c00425{left:190.317333pt;}
.x69_c00425{left:191.528000pt;}
.x2b_c00425{left:193.038667pt;}
.x8_c00425{left:194.501333pt;}
.x3f_c00425{left:196.640000pt;}
.x26_c00425{left:197.620000pt;}
.x47_c00425{left:199.029333pt;}
.x18_c00425{left:200.008000pt;}
.x55_c00425{left:206.522667pt;}
.x6a_c00425{left:209.282667pt;}
.x2c_c00425{left:211.513333pt;}
.x4b_c00425{left:213.432000pt;}
.x70_c00425{left:215.040000pt;}
.x30_c00425{left:218.774667pt;}
.x42_c00425{left:220.586667pt;}
.x78_c00425{left:223.881333pt;}
.x10_c00425{left:225.522667pt;}
.x33_c00425{left:227.140000pt;}
.x9_c00425{left:231.461333pt;}
.x27_c00425{left:234.640000pt;}
.x73_c00425{left:236.252000pt;}
.x50_c00425{left:238.073333pt;}
.x22_c00425{left:240.140000pt;}
.x5d_c00425{left:242.510667pt;}
.x11_c00425{left:244.709333pt;}
.x4c_c00425{left:246.794667pt;}
.x28_c00425{left:250.180000pt;}
.xa_c00425{left:252.624000pt;}
.x6b_c00425{left:256.532000pt;}
.x43_c00425{left:257.556000pt;}
.x34_c00425{left:259.300000pt;}
.x6e_c00425{left:260.329333pt;}
.x2d_c00425{left:262.636000pt;}
.x1d_c00425{left:263.900000pt;}
.x3a_c00425{left:266.256000pt;}
.x48_c00425{left:269.342667pt;}
.x62_c00425{left:271.766667pt;}
.x59_c00425{left:272.988000pt;}
.x19_c00425{left:277.042667pt;}
.xb_c00425{left:279.244000pt;}
.x1e_c00425{left:284.768000pt;}
.x63_c00425{left:286.506667pt;}
.x35_c00425{left:290.149333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00426 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00426 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00426 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00426 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00426.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00426{transform:matrix(0.036420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036420,0.000000,0.000000,0.250000,0,0);}
.maa_c00426{transform:matrix(0.042767,-0.001240,0.007247,0.249895,0,0);-ms-transform:matrix(0.042767,-0.001240,0.007247,0.249895,0,0);-webkit-transform:matrix(0.042767,-0.001240,0.007247,0.249895,0,0);}
.m25_c00426{transform:matrix(0.079502,-0.002306,0.007247,0.249895,0,0);-ms-transform:matrix(0.079502,-0.002306,0.007247,0.249895,0,0);-webkit-transform:matrix(0.079502,-0.002306,0.007247,0.249895,0,0);}
.mdd_c00426{transform:matrix(0.126942,-0.003681,0.007247,0.249895,0,0);-ms-transform:matrix(0.126942,-0.003681,0.007247,0.249895,0,0);-webkit-transform:matrix(0.126942,-0.003681,0.007247,0.249895,0,0);}
.mdf_c00426{transform:matrix(0.139631,-0.004049,0.007247,0.249895,0,0);-ms-transform:matrix(0.139631,-0.004049,0.007247,0.249895,0,0);-webkit-transform:matrix(0.139631,-0.004049,0.007247,0.249895,0,0);}
.mde_c00426{transform:matrix(0.141396,-0.004100,0.007247,0.249895,0,0);-ms-transform:matrix(0.141396,-0.004100,0.007247,0.249895,0,0);-webkit-transform:matrix(0.141396,-0.004100,0.007247,0.249895,0,0);}
.mc7_c00426{transform:matrix(0.147968,-0.004291,0.007247,0.249895,0,0);-ms-transform:matrix(0.147968,-0.004291,0.007247,0.249895,0,0);-webkit-transform:matrix(0.147968,-0.004291,0.007247,0.249895,0,0);}
.me0_c00426{transform:matrix(0.148033,-0.004293,0.007247,0.249895,0,0);-ms-transform:matrix(0.148033,-0.004293,0.007247,0.249895,0,0);-webkit-transform:matrix(0.148033,-0.004293,0.007247,0.249895,0,0);}
.m12_c00426{transform:matrix(0.150827,-0.004374,0.007247,0.249895,0,0);-ms-transform:matrix(0.150827,-0.004374,0.007247,0.249895,0,0);-webkit-transform:matrix(0.150827,-0.004374,0.007247,0.249895,0,0);}
.m14_c00426{transform:matrix(0.151181,-0.004384,0.007247,0.249895,0,0);-ms-transform:matrix(0.151181,-0.004384,0.007247,0.249895,0,0);-webkit-transform:matrix(0.151181,-0.004384,0.007247,0.249895,0,0);}
.m43_c00426{transform:matrix(0.152516,-0.004423,0.007247,0.249895,0,0);-ms-transform:matrix(0.152516,-0.004423,0.007247,0.249895,0,0);-webkit-transform:matrix(0.152516,-0.004423,0.007247,0.249895,0,0);}
.m6f_c00426{transform:matrix(0.154245,-0.004473,0.007247,0.249895,0,0);-ms-transform:matrix(0.154245,-0.004473,0.007247,0.249895,0,0);-webkit-transform:matrix(0.154245,-0.004473,0.007247,0.249895,0,0);}
.m9f_c00426{transform:matrix(0.154305,-0.004475,0.007247,0.249895,0,0);-ms-transform:matrix(0.154305,-0.004475,0.007247,0.249895,0,0);-webkit-transform:matrix(0.154305,-0.004475,0.007247,0.249895,0,0);}
.m60_c00426{transform:matrix(0.155979,-0.004523,0.007247,0.249895,0,0);-ms-transform:matrix(0.155979,-0.004523,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155979,-0.004523,0.007247,0.249895,0,0);}
.mcf_c00426{transform:matrix(0.157054,-0.004555,0.007247,0.249895,0,0);-ms-transform:matrix(0.157054,-0.004555,0.007247,0.249895,0,0);-webkit-transform:matrix(0.157054,-0.004555,0.007247,0.249895,0,0);}
.m84_c00426{transform:matrix(0.159308,-0.004620,0.007247,0.249895,0,0);-ms-transform:matrix(0.159308,-0.004620,0.007247,0.249895,0,0);-webkit-transform:matrix(0.159308,-0.004620,0.007247,0.249895,0,0);}
.md2_c00426{transform:matrix(0.159488,-0.004625,0.007247,0.249895,0,0);-ms-transform:matrix(0.159488,-0.004625,0.007247,0.249895,0,0);-webkit-transform:matrix(0.159488,-0.004625,0.007247,0.249895,0,0);}
.m18_c00426{transform:matrix(0.161312,-0.004678,0.007247,0.249895,0,0);-ms-transform:matrix(0.161312,-0.004678,0.007247,0.249895,0,0);-webkit-transform:matrix(0.161312,-0.004678,0.007247,0.249895,0,0);}
.m5d_c00426{transform:matrix(0.161697,-0.004689,0.007247,0.249895,0,0);-ms-transform:matrix(0.161697,-0.004689,0.007247,0.249895,0,0);-webkit-transform:matrix(0.161697,-0.004689,0.007247,0.249895,0,0);}
.m82_c00426{transform:matrix(0.162082,-0.004700,0.007247,0.249895,0,0);-ms-transform:matrix(0.162082,-0.004700,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162082,-0.004700,0.007247,0.249895,0,0);}
.m35_c00426{transform:matrix(0.162487,-0.004712,0.007247,0.249895,0,0);-ms-transform:matrix(0.162487,-0.004712,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162487,-0.004712,0.007247,0.249895,0,0);}
.m20_c00426{transform:matrix(0.163111,-0.004730,0.007247,0.249895,0,0);-ms-transform:matrix(0.163111,-0.004730,0.007247,0.249895,0,0);-webkit-transform:matrix(0.163111,-0.004730,0.007247,0.249895,0,0);}
.m62_c00426{transform:matrix(0.163381,-0.004738,0.007247,0.249895,0,0);-ms-transform:matrix(0.163381,-0.004738,0.007247,0.249895,0,0);-webkit-transform:matrix(0.163381,-0.004738,0.007247,0.249895,0,0);}
.me2_c00426{transform:matrix(0.164026,-0.004757,0.007247,0.249895,0,0);-ms-transform:matrix(0.164026,-0.004757,0.007247,0.249895,0,0);-webkit-transform:matrix(0.164026,-0.004757,0.007247,0.249895,0,0);}
.m8a_c00426{transform:matrix(0.164641,-0.004775,0.007247,0.249895,0,0);-ms-transform:matrix(0.164641,-0.004775,0.007247,0.249895,0,0);-webkit-transform:matrix(0.164641,-0.004775,0.007247,0.249895,0,0);}
.m96_c00426{transform:matrix(0.166260,-0.004822,0.007247,0.249895,0,0);-ms-transform:matrix(0.166260,-0.004822,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166260,-0.004822,0.007247,0.249895,0,0);}
.m4f_c00426{transform:matrix(0.166515,-0.004829,0.007247,0.249895,0,0);-ms-transform:matrix(0.166515,-0.004829,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166515,-0.004829,0.007247,0.249895,0,0);}
.m49_c00426{transform:matrix(0.167425,-0.004855,0.007247,0.249895,0,0);-ms-transform:matrix(0.167425,-0.004855,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167425,-0.004855,0.007247,0.249895,0,0);}
.mc5_c00426{transform:matrix(0.169764,-0.004923,0.007247,0.249895,0,0);-ms-transform:matrix(0.169764,-0.004923,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169764,-0.004923,0.007247,0.249895,0,0);}
.mcc_c00426{transform:matrix(0.169874,-0.004926,0.007247,0.249895,0,0);-ms-transform:matrix(0.169874,-0.004926,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169874,-0.004926,0.007247,0.249895,0,0);}
.m6d_c00426{transform:matrix(0.169904,-0.004927,0.007247,0.249895,0,0);-ms-transform:matrix(0.169904,-0.004927,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169904,-0.004927,0.007247,0.249895,0,0);}
.m1e_c00426{transform:matrix(0.170064,-0.004932,0.007247,0.249895,0,0);-ms-transform:matrix(0.170064,-0.004932,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170064,-0.004932,0.007247,0.249895,0,0);}
.mc1_c00426{transform:matrix(0.170173,-0.004935,0.007247,0.249895,0,0);-ms-transform:matrix(0.170173,-0.004935,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170173,-0.004935,0.007247,0.249895,0,0);}
.m0_c00426{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00426{transform:matrix(0.170768,-0.004952,0.007247,0.249895,0,0);-ms-transform:matrix(0.170768,-0.004952,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170768,-0.004952,0.007247,0.249895,0,0);}
.ma4_c00426{transform:matrix(0.171188,-0.004964,0.007247,0.249895,0,0);-ms-transform:matrix(0.171188,-0.004964,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171188,-0.004964,0.007247,0.249895,0,0);}
.m40_c00426{transform:matrix(0.171383,-0.004970,0.007247,0.249895,0,0);-ms-transform:matrix(0.171383,-0.004970,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171383,-0.004970,0.007247,0.249895,0,0);}
.m6b_c00426{transform:matrix(0.171733,-0.004980,0.007247,0.249895,0,0);-ms-transform:matrix(0.171733,-0.004980,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171733,-0.004980,0.007247,0.249895,0,0);}
.m3c_c00426{transform:matrix(0.171918,-0.004986,0.007247,0.249895,0,0);-ms-transform:matrix(0.171918,-0.004986,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171918,-0.004986,0.007247,0.249895,0,0);}
.m1d_c00426{transform:matrix(0.172158,-0.004993,0.007247,0.249895,0,0);-ms-transform:matrix(0.172158,-0.004993,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172158,-0.004993,0.007247,0.249895,0,0);}
.m4d_c00426{transform:matrix(0.172832,-0.005012,0.007247,0.249895,0,0);-ms-transform:matrix(0.172832,-0.005012,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172832,-0.005012,0.007247,0.249895,0,0);}
.m1f_c00426{transform:matrix(0.173807,-0.005040,0.007247,0.249895,0,0);-ms-transform:matrix(0.173807,-0.005040,0.007247,0.249895,0,0);-webkit-transform:matrix(0.173807,-0.005040,0.007247,0.249895,0,0);}
.m32_c00426{transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);-ms-transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);}
.me1_c00426{transform:matrix(0.174792,-0.005069,0.007247,0.249895,0,0);-ms-transform:matrix(0.174792,-0.005069,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174792,-0.005069,0.007247,0.249895,0,0);}
.me_c00426{transform:matrix(0.174841,-0.005070,0.007247,0.249895,0,0);-ms-transform:matrix(0.174841,-0.005070,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174841,-0.005070,0.007247,0.249895,0,0);}
.m87_c00426{transform:matrix(0.175116,-0.005078,0.007247,0.249895,0,0);-ms-transform:matrix(0.175116,-0.005078,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175116,-0.005078,0.007247,0.249895,0,0);}
.m46_c00426{transform:matrix(0.175176,-0.005080,0.007247,0.249895,0,0);-ms-transform:matrix(0.175176,-0.005080,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175176,-0.005080,0.007247,0.249895,0,0);}
.md9_c00426{transform:matrix(0.175301,-0.005084,0.007247,0.249895,0,0);-ms-transform:matrix(0.175301,-0.005084,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175301,-0.005084,0.007247,0.249895,0,0);}
.ma5_c00426{transform:matrix(0.175706,-0.005095,0.007247,0.249895,0,0);-ms-transform:matrix(0.175706,-0.005095,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175706,-0.005095,0.007247,0.249895,0,0);}
.mcb_c00426{transform:matrix(0.175756,-0.005097,0.007247,0.249895,0,0);-ms-transform:matrix(0.175756,-0.005097,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175756,-0.005097,0.007247,0.249895,0,0);}
.m69_c00426{transform:matrix(0.176541,-0.005120,0.007247,0.249895,0,0);-ms-transform:matrix(0.176541,-0.005120,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176541,-0.005120,0.007247,0.249895,0,0);}
.m89_c00426{transform:matrix(0.177620,-0.005151,0.007247,0.249895,0,0);-ms-transform:matrix(0.177620,-0.005151,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177620,-0.005151,0.007247,0.249895,0,0);}
.m17_c00426{transform:matrix(0.177850,-0.005158,0.007247,0.249895,0,0);-ms-transform:matrix(0.177850,-0.005158,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177850,-0.005158,0.007247,0.249895,0,0);}
.m74_c00426{transform:matrix(0.178865,-0.005187,0.007247,0.249895,0,0);-ms-transform:matrix(0.178865,-0.005187,0.007247,0.249895,0,0);-webkit-transform:matrix(0.178865,-0.005187,0.007247,0.249895,0,0);}
.m2e_c00426{transform:matrix(0.179370,-0.005202,0.007247,0.249895,0,0);-ms-transform:matrix(0.179370,-0.005202,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179370,-0.005202,0.007247,0.249895,0,0);}
.m8e_c00426{transform:matrix(0.179709,-0.005212,0.007247,0.249895,0,0);-ms-transform:matrix(0.179709,-0.005212,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179709,-0.005212,0.007247,0.249895,0,0);}
.md7_c00426{transform:matrix(0.179744,-0.005213,0.007247,0.249895,0,0);-ms-transform:matrix(0.179744,-0.005213,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179744,-0.005213,0.007247,0.249895,0,0);}
.ma3_c00426{transform:matrix(0.179869,-0.005216,0.007247,0.249895,0,0);-ms-transform:matrix(0.179869,-0.005216,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179869,-0.005216,0.007247,0.249895,0,0);}
.m2d_c00426{transform:matrix(0.180199,-0.005226,0.007247,0.249895,0,0);-ms-transform:matrix(0.180199,-0.005226,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180199,-0.005226,0.007247,0.249895,0,0);}
.mc2_c00426{transform:matrix(0.180724,-0.005241,0.007247,0.249895,0,0);-ms-transform:matrix(0.180724,-0.005241,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180724,-0.005241,0.007247,0.249895,0,0);}
.m70_c00426{transform:matrix(0.180729,-0.005241,0.007247,0.249895,0,0);-ms-transform:matrix(0.180729,-0.005241,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180729,-0.005241,0.007247,0.249895,0,0);}
.mba_c00426{transform:matrix(0.180879,-0.005245,0.007247,0.249895,0,0);-ms-transform:matrix(0.180879,-0.005245,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180879,-0.005245,0.007247,0.249895,0,0);}
.m9d_c00426{transform:matrix(0.181214,-0.005255,0.007247,0.249895,0,0);-ms-transform:matrix(0.181214,-0.005255,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181214,-0.005255,0.007247,0.249895,0,0);}
.m13_c00426{transform:matrix(0.182258,-0.005285,0.007247,0.249895,0,0);-ms-transform:matrix(0.182258,-0.005285,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182258,-0.005285,0.007247,0.249895,0,0);}
.m8d_c00426{transform:matrix(0.182508,-0.005293,0.007247,0.249895,0,0);-ms-transform:matrix(0.182508,-0.005293,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182508,-0.005293,0.007247,0.249895,0,0);}
.m51_c00426{transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);-ms-transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182588,-0.005295,0.007247,0.249895,0,0);}
.m15_c00426{transform:matrix(0.183588,-0.005324,0.007247,0.249895,0,0);-ms-transform:matrix(0.183588,-0.005324,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183588,-0.005324,0.007247,0.249895,0,0);}
.ma0_c00426{transform:matrix(0.183663,-0.005326,0.007247,0.249895,0,0);-ms-transform:matrix(0.183663,-0.005326,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183663,-0.005326,0.007247,0.249895,0,0);}
.mbf_c00426{transform:matrix(0.183953,-0.005335,0.007247,0.249895,0,0);-ms-transform:matrix(0.183953,-0.005335,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183953,-0.005335,0.007247,0.249895,0,0);}
.m9c_c00426{transform:matrix(0.184527,-0.005351,0.007247,0.249895,0,0);-ms-transform:matrix(0.184527,-0.005351,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184527,-0.005351,0.007247,0.249895,0,0);}
.m48_c00426{transform:matrix(0.184847,-0.005361,0.007247,0.249895,0,0);-ms-transform:matrix(0.184847,-0.005361,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184847,-0.005361,0.007247,0.249895,0,0);}
.m2b_c00426{transform:matrix(0.185047,-0.005366,0.007247,0.249895,0,0);-ms-transform:matrix(0.185047,-0.005366,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185047,-0.005366,0.007247,0.249895,0,0);}
.m44_c00426{transform:matrix(0.185177,-0.005370,0.007247,0.249895,0,0);-ms-transform:matrix(0.185177,-0.005370,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185177,-0.005370,0.007247,0.249895,0,0);}
.m2c_c00426{transform:matrix(0.185247,-0.005372,0.007247,0.249895,0,0);-ms-transform:matrix(0.185247,-0.005372,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185247,-0.005372,0.007247,0.249895,0,0);}
.m66_c00426{transform:matrix(0.185802,-0.005388,0.007247,0.249895,0,0);-ms-transform:matrix(0.185802,-0.005388,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185802,-0.005388,0.007247,0.249895,0,0);}
.m86_c00426{transform:matrix(0.186132,-0.005398,0.007247,0.249895,0,0);-ms-transform:matrix(0.186132,-0.005398,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186132,-0.005398,0.007247,0.249895,0,0);}
.m33_c00426{transform:matrix(0.186187,-0.005399,0.007247,0.249895,0,0);-ms-transform:matrix(0.186187,-0.005399,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186187,-0.005399,0.007247,0.249895,0,0);}
.m53_c00426{transform:matrix(0.186672,-0.005413,0.007247,0.249895,0,0);-ms-transform:matrix(0.186672,-0.005413,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186672,-0.005413,0.007247,0.249895,0,0);}
.mb8_c00426{transform:matrix(0.186836,-0.005418,0.007247,0.249895,0,0);-ms-transform:matrix(0.186836,-0.005418,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186836,-0.005418,0.007247,0.249895,0,0);}
.mb0_c00426{transform:matrix(0.187661,-0.005442,0.007247,0.249895,0,0);-ms-transform:matrix(0.187661,-0.005442,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187661,-0.005442,0.007247,0.249895,0,0);}
.mf_c00426{transform:matrix(0.188526,-0.005467,0.007247,0.249895,0,0);-ms-transform:matrix(0.188526,-0.005467,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188526,-0.005467,0.007247,0.249895,0,0);}
.m92_c00426{transform:matrix(0.188596,-0.005469,0.007247,0.249895,0,0);-ms-transform:matrix(0.188596,-0.005469,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188596,-0.005469,0.007247,0.249895,0,0);}
.m38_c00426{transform:matrix(0.188656,-0.005471,0.007247,0.249895,0,0);-ms-transform:matrix(0.188656,-0.005471,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188656,-0.005471,0.007247,0.249895,0,0);}
.m52_c00426{transform:matrix(0.188836,-0.005476,0.007247,0.249895,0,0);-ms-transform:matrix(0.188836,-0.005476,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188836,-0.005476,0.007247,0.249895,0,0);}
.m9b_c00426{transform:matrix(0.189130,-0.005485,0.007247,0.249895,0,0);-ms-transform:matrix(0.189130,-0.005485,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189130,-0.005485,0.007247,0.249895,0,0);}
.me3_c00426{transform:matrix(0.189610,-0.005499,0.007247,0.249895,0,0);-ms-transform:matrix(0.189610,-0.005499,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189610,-0.005499,0.007247,0.249895,0,0);}
.m54_c00426{transform:matrix(0.189795,-0.005504,0.007247,0.249895,0,0);-ms-transform:matrix(0.189795,-0.005504,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189795,-0.005504,0.007247,0.249895,0,0);}
.m57_c00426{transform:matrix(0.190075,-0.005512,0.007247,0.249895,0,0);-ms-transform:matrix(0.190075,-0.005512,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190075,-0.005512,0.007247,0.249895,0,0);}
.m36_c00426{transform:matrix(0.190165,-0.005515,0.007247,0.249895,0,0);-ms-transform:matrix(0.190165,-0.005515,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190165,-0.005515,0.007247,0.249895,0,0);}
.ma2_c00426{transform:matrix(0.190730,-0.005531,0.007247,0.249895,0,0);-ms-transform:matrix(0.190730,-0.005531,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190730,-0.005531,0.007247,0.249895,0,0);}
.md3_c00426{transform:matrix(0.190805,-0.005533,0.007247,0.249895,0,0);-ms-transform:matrix(0.190805,-0.005533,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190805,-0.005533,0.007247,0.249895,0,0);}
.m4b_c00426{transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);-ms-transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);}
.m7_c00426{transform:matrix(0.190995,-0.005539,0.007247,0.249895,0,0);-ms-transform:matrix(0.190995,-0.005539,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190995,-0.005539,0.007247,0.249895,0,0);}
.m4e_c00426{transform:matrix(0.191150,-0.005543,0.007247,0.249895,0,0);-ms-transform:matrix(0.191150,-0.005543,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191150,-0.005543,0.007247,0.249895,0,0);}
.ma_c00426{transform:matrix(0.191584,-0.005556,0.007247,0.249895,0,0);-ms-transform:matrix(0.191584,-0.005556,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191584,-0.005556,0.007247,0.249895,0,0);}
.m83_c00426{transform:matrix(0.191729,-0.005560,0.007247,0.249895,0,0);-ms-transform:matrix(0.191729,-0.005560,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191729,-0.005560,0.007247,0.249895,0,0);}
.m99_c00426{transform:matrix(0.191929,-0.005566,0.007247,0.249895,0,0);-ms-transform:matrix(0.191929,-0.005566,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191929,-0.005566,0.007247,0.249895,0,0);}
.ma1_c00426{transform:matrix(0.192369,-0.005579,0.007247,0.249895,0,0);-ms-transform:matrix(0.192369,-0.005579,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192369,-0.005579,0.007247,0.249895,0,0);}
.m4c_c00426{transform:matrix(0.192389,-0.005579,0.007247,0.249895,0,0);-ms-transform:matrix(0.192389,-0.005579,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192389,-0.005579,0.007247,0.249895,0,0);}
.m6a_c00426{transform:matrix(0.192634,-0.005586,0.007247,0.249895,0,0);-ms-transform:matrix(0.192634,-0.005586,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192634,-0.005586,0.007247,0.249895,0,0);}
.m4_c00426{transform:matrix(0.193179,-0.005602,0.007247,0.249895,0,0);-ms-transform:matrix(0.193179,-0.005602,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193179,-0.005602,0.007247,0.249895,0,0);}
.m65_c00426{transform:matrix(0.193364,-0.005608,0.007247,0.249895,0,0);-ms-transform:matrix(0.193364,-0.005608,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193364,-0.005608,0.007247,0.249895,0,0);}
.m59_c00426{transform:matrix(0.193389,-0.005608,0.007247,0.249895,0,0);-ms-transform:matrix(0.193389,-0.005608,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193389,-0.005608,0.007247,0.249895,0,0);}
.m3_c00426{transform:matrix(0.193769,-0.005619,0.007247,0.249895,0,0);-ms-transform:matrix(0.193769,-0.005619,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193769,-0.005619,0.007247,0.249895,0,0);}
.mc9_c00426{transform:matrix(0.194063,-0.005628,0.007247,0.249895,0,0);-ms-transform:matrix(0.194063,-0.005628,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194063,-0.005628,0.007247,0.249895,0,0);}
.maf_c00426{transform:matrix(0.194103,-0.005629,0.007247,0.249895,0,0);-ms-transform:matrix(0.194103,-0.005629,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194103,-0.005629,0.007247,0.249895,0,0);}
.mc6_c00426{transform:matrix(0.194453,-0.005639,0.007247,0.249895,0,0);-ms-transform:matrix(0.194453,-0.005639,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194453,-0.005639,0.007247,0.249895,0,0);}
.m5a_c00426{transform:matrix(0.194583,-0.005643,0.007247,0.249895,0,0);-ms-transform:matrix(0.194583,-0.005643,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194583,-0.005643,0.007247,0.249895,0,0);}
.m47_c00426{transform:matrix(0.194643,-0.005645,0.007247,0.249895,0,0);-ms-transform:matrix(0.194643,-0.005645,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194643,-0.005645,0.007247,0.249895,0,0);}
.m34_c00426{transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);-ms-transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);}
.m4a_c00426{transform:matrix(0.195718,-0.005676,0.007247,0.249895,0,0);-ms-transform:matrix(0.195718,-0.005676,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195718,-0.005676,0.007247,0.249895,0,0);}
.m1a_c00426{transform:matrix(0.195793,-0.005678,0.007247,0.249895,0,0);-ms-transform:matrix(0.195793,-0.005678,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195793,-0.005678,0.007247,0.249895,0,0);}
.m56_c00426{transform:matrix(0.196153,-0.005688,0.007247,0.249895,0,0);-ms-transform:matrix(0.196153,-0.005688,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196153,-0.005688,0.007247,0.249895,0,0);}
.m8c_c00426{transform:matrix(0.196522,-0.005699,0.007247,0.249895,0,0);-ms-transform:matrix(0.196522,-0.005699,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196522,-0.005699,0.007247,0.249895,0,0);}
.m50_c00426{transform:matrix(0.196717,-0.005705,0.007247,0.249895,0,0);-ms-transform:matrix(0.196717,-0.005705,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196717,-0.005705,0.007247,0.249895,0,0);}
.m5c_c00426{transform:matrix(0.196797,-0.005707,0.007247,0.249895,0,0);-ms-transform:matrix(0.196797,-0.005707,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196797,-0.005707,0.007247,0.249895,0,0);}
.m3a_c00426{transform:matrix(0.196972,-0.005712,0.007247,0.249895,0,0);-ms-transform:matrix(0.196972,-0.005712,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196972,-0.005712,0.007247,0.249895,0,0);}
.m98_c00426{transform:matrix(0.197022,-0.005714,0.007247,0.249895,0,0);-ms-transform:matrix(0.197022,-0.005714,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197022,-0.005714,0.007247,0.249895,0,0);}
.m5b_c00426{transform:matrix(0.197532,-0.005728,0.007247,0.249895,0,0);-ms-transform:matrix(0.197532,-0.005728,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197532,-0.005728,0.007247,0.249895,0,0);}
.m77_c00426{transform:matrix(0.197737,-0.005734,0.007247,0.249895,0,0);-ms-transform:matrix(0.197737,-0.005734,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197737,-0.005734,0.007247,0.249895,0,0);}
.mc4_c00426{transform:matrix(0.197837,-0.005737,0.007247,0.249895,0,0);-ms-transform:matrix(0.197837,-0.005737,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197837,-0.005737,0.007247,0.249895,0,0);}
.mca_c00426{transform:matrix(0.198012,-0.005742,0.007247,0.249895,0,0);-ms-transform:matrix(0.198012,-0.005742,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198012,-0.005742,0.007247,0.249895,0,0);}
.mc_c00426{transform:matrix(0.198072,-0.005744,0.007247,0.249895,0,0);-ms-transform:matrix(0.198072,-0.005744,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198072,-0.005744,0.007247,0.249895,0,0);}
.m68_c00426{transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);-ms-transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);}
.m1c_c00426{transform:matrix(0.198746,-0.005764,0.007247,0.249895,0,0);-ms-transform:matrix(0.198746,-0.005764,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198746,-0.005764,0.007247,0.249895,0,0);}
.m78_c00426{transform:matrix(0.198771,-0.005764,0.007247,0.249895,0,0);-ms-transform:matrix(0.198771,-0.005764,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198771,-0.005764,0.007247,0.249895,0,0);}
.m73_c00426{transform:matrix(0.198891,-0.005768,0.007247,0.249895,0,0);-ms-transform:matrix(0.198891,-0.005768,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198891,-0.005768,0.007247,0.249895,0,0);}
.mda_c00426{transform:matrix(0.198936,-0.005769,0.007247,0.249895,0,0);-ms-transform:matrix(0.198936,-0.005769,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198936,-0.005769,0.007247,0.249895,0,0);}
.mac_c00426{transform:matrix(0.199786,-0.005794,0.007247,0.249895,0,0);-ms-transform:matrix(0.199786,-0.005794,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199786,-0.005794,0.007247,0.249895,0,0);}
.m95_c00426{transform:matrix(0.199836,-0.005795,0.007247,0.249895,0,0);-ms-transform:matrix(0.199836,-0.005795,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199836,-0.005795,0.007247,0.249895,0,0);}
.m58_c00426{transform:matrix(0.200031,-0.005801,0.007247,0.249895,0,0);-ms-transform:matrix(0.200031,-0.005801,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200031,-0.005801,0.007247,0.249895,0,0);}
.mdb_c00426{transform:matrix(0.200076,-0.005802,0.007247,0.249895,0,0);-ms-transform:matrix(0.200076,-0.005802,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200076,-0.005802,0.007247,0.249895,0,0);}
.m88_c00426{transform:matrix(0.200081,-0.005802,0.007247,0.249895,0,0);-ms-transform:matrix(0.200081,-0.005802,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200081,-0.005802,0.007247,0.249895,0,0);}
.m6_c00426{transform:matrix(0.201025,-0.005830,0.007247,0.249895,0,0);-ms-transform:matrix(0.201025,-0.005830,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201025,-0.005830,0.007247,0.249895,0,0);}
.m21_c00426{transform:matrix(0.201260,-0.005837,0.007247,0.249895,0,0);-ms-transform:matrix(0.201260,-0.005837,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201260,-0.005837,0.007247,0.249895,0,0);}
.mad_c00426{transform:matrix(0.201695,-0.005849,0.007247,0.249895,0,0);-ms-transform:matrix(0.201695,-0.005849,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201695,-0.005849,0.007247,0.249895,0,0);}
.m9e_c00426{transform:matrix(0.201775,-0.005851,0.007247,0.249895,0,0);-ms-transform:matrix(0.201775,-0.005851,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201775,-0.005851,0.007247,0.249895,0,0);}
.m79_c00426{transform:matrix(0.203025,-0.005888,0.007247,0.249895,0,0);-ms-transform:matrix(0.203025,-0.005888,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203025,-0.005888,0.007247,0.249895,0,0);}
.m75_c00426{transform:matrix(0.203484,-0.005901,0.007247,0.249895,0,0);-ms-transform:matrix(0.203484,-0.005901,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203484,-0.005901,0.007247,0.249895,0,0);}
.mcd_c00426{transform:matrix(0.203519,-0.005902,0.007247,0.249895,0,0);-ms-transform:matrix(0.203519,-0.005902,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203519,-0.005902,0.007247,0.249895,0,0);}
.m11_c00426{transform:matrix(0.204124,-0.005920,0.007247,0.249895,0,0);-ms-transform:matrix(0.204124,-0.005920,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204124,-0.005920,0.007247,0.249895,0,0);}
.mae_c00426{transform:matrix(0.204399,-0.005928,0.007247,0.249895,0,0);-ms-transform:matrix(0.204399,-0.005928,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204399,-0.005928,0.007247,0.249895,0,0);}
.m67_c00426{transform:matrix(0.204454,-0.005929,0.007247,0.249895,0,0);-ms-transform:matrix(0.204454,-0.005929,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204454,-0.005929,0.007247,0.249895,0,0);}
.m16_c00426{transform:matrix(0.204624,-0.005934,0.007247,0.249895,0,0);-ms-transform:matrix(0.204624,-0.005934,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204624,-0.005934,0.007247,0.249895,0,0);}
.m90_c00426{transform:matrix(0.205114,-0.005948,0.007247,0.249895,0,0);-ms-transform:matrix(0.205114,-0.005948,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205114,-0.005948,0.007247,0.249895,0,0);}
.mb_c00426{transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);-ms-transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);}
.m5f_c00426{transform:matrix(0.205878,-0.005970,0.007247,0.249895,0,0);-ms-transform:matrix(0.205878,-0.005970,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205878,-0.005970,0.007247,0.249895,0,0);}
.mc0_c00426{transform:matrix(0.206223,-0.005980,0.007247,0.249895,0,0);-ms-transform:matrix(0.206223,-0.005980,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206223,-0.005980,0.007247,0.249895,0,0);}
.m5e_c00426{transform:matrix(0.206378,-0.005985,0.007247,0.249895,0,0);-ms-transform:matrix(0.206378,-0.005985,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206378,-0.005985,0.007247,0.249895,0,0);}
.m39_c00426{transform:matrix(0.206648,-0.005993,0.007247,0.249895,0,0);-ms-transform:matrix(0.206648,-0.005993,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206648,-0.005993,0.007247,0.249895,0,0);}
.m9a_c00426{transform:matrix(0.206973,-0.006002,0.007247,0.249895,0,0);-ms-transform:matrix(0.206973,-0.006002,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206973,-0.006002,0.007247,0.249895,0,0);}
.m8b_c00426{transform:matrix(0.207083,-0.006005,0.007247,0.249895,0,0);-ms-transform:matrix(0.207083,-0.006005,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207083,-0.006005,0.007247,0.249895,0,0);}
.m55_c00426{transform:matrix(0.207153,-0.006007,0.007247,0.249895,0,0);-ms-transform:matrix(0.207153,-0.006007,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207153,-0.006007,0.007247,0.249895,0,0);}
.m22_c00426{transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);-ms-transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);}
.m61_c00426{transform:matrix(0.207878,-0.006028,0.007247,0.249895,0,0);-ms-transform:matrix(0.207878,-0.006028,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207878,-0.006028,0.007247,0.249895,0,0);}
.mce_c00426{transform:matrix(0.208048,-0.006033,0.007247,0.249895,0,0);-ms-transform:matrix(0.208048,-0.006033,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208048,-0.006033,0.007247,0.249895,0,0);}
.m3e_c00426{transform:matrix(0.208242,-0.006039,0.007247,0.249895,0,0);-ms-transform:matrix(0.208242,-0.006039,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208242,-0.006039,0.007247,0.249895,0,0);}
.mb9_c00426{transform:matrix(0.208262,-0.006040,0.007247,0.249895,0,0);-ms-transform:matrix(0.208262,-0.006040,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208262,-0.006040,0.007247,0.249895,0,0);}
.m1b_c00426{transform:matrix(0.208322,-0.006041,0.007247,0.249895,0,0);-ms-transform:matrix(0.208322,-0.006041,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208322,-0.006041,0.007247,0.249895,0,0);}
.mb3_c00426{transform:matrix(0.208432,-0.006045,0.007247,0.249895,0,0);-ms-transform:matrix(0.208432,-0.006045,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208432,-0.006045,0.007247,0.249895,0,0);}
.md8_c00426{transform:matrix(0.208862,-0.006057,0.007247,0.249895,0,0);-ms-transform:matrix(0.208862,-0.006057,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208862,-0.006057,0.007247,0.249895,0,0);}
.m2a_c00426{transform:matrix(0.209017,-0.006061,0.007247,0.249895,0,0);-ms-transform:matrix(0.209017,-0.006061,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209017,-0.006061,0.007247,0.249895,0,0);}
.m71_c00426{transform:matrix(0.209052,-0.006063,0.007247,0.249895,0,0);-ms-transform:matrix(0.209052,-0.006063,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209052,-0.006063,0.007247,0.249895,0,0);}
.mc3_c00426{transform:matrix(0.209257,-0.006068,0.007247,0.249895,0,0);-ms-transform:matrix(0.209257,-0.006068,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209257,-0.006068,0.007247,0.249895,0,0);}
.m37_c00426{transform:matrix(0.209382,-0.006072,0.007247,0.249895,0,0);-ms-transform:matrix(0.209382,-0.006072,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209382,-0.006072,0.007247,0.249895,0,0);}
.m28_c00426{transform:matrix(0.209822,-0.006085,0.007247,0.249895,0,0);-ms-transform:matrix(0.209822,-0.006085,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209822,-0.006085,0.007247,0.249895,0,0);}
.m29_c00426{transform:matrix(0.209832,-0.006085,0.007247,0.249895,0,0);-ms-transform:matrix(0.209832,-0.006085,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209832,-0.006085,0.007247,0.249895,0,0);}
.m85_c00426{transform:matrix(0.209942,-0.006088,0.007247,0.249895,0,0);-ms-transform:matrix(0.209942,-0.006088,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209942,-0.006088,0.007247,0.249895,0,0);}
.m42_c00426{transform:matrix(0.210272,-0.006098,0.007247,0.249895,0,0);-ms-transform:matrix(0.210272,-0.006098,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210272,-0.006098,0.007247,0.249895,0,0);}
.mb7_c00426{transform:matrix(0.210801,-0.006113,0.007247,0.249895,0,0);-ms-transform:matrix(0.210801,-0.006113,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210801,-0.006113,0.007247,0.249895,0,0);}
.m27_c00426{transform:matrix(0.210861,-0.006115,0.007247,0.249895,0,0);-ms-transform:matrix(0.210861,-0.006115,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210861,-0.006115,0.007247,0.249895,0,0);}
.m9_c00426{transform:matrix(0.211071,-0.006121,0.007247,0.249895,0,0);-ms-transform:matrix(0.211071,-0.006121,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211071,-0.006121,0.007247,0.249895,0,0);}
.mdc_c00426{transform:matrix(0.211541,-0.006135,0.007247,0.249895,0,0);-ms-transform:matrix(0.211541,-0.006135,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211541,-0.006135,0.007247,0.249895,0,0);}
.md4_c00426{transform:matrix(0.211966,-0.006147,0.007247,0.249895,0,0);-ms-transform:matrix(0.211966,-0.006147,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211966,-0.006147,0.007247,0.249895,0,0);}
.md0_c00426{transform:matrix(0.212026,-0.006149,0.007247,0.249895,0,0);-ms-transform:matrix(0.212026,-0.006149,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212026,-0.006149,0.007247,0.249895,0,0);}
.m3f_c00426{transform:matrix(0.212506,-0.006163,0.007247,0.249895,0,0);-ms-transform:matrix(0.212506,-0.006163,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212506,-0.006163,0.007247,0.249895,0,0);}
.m2f_c00426{transform:matrix(0.212636,-0.006166,0.007247,0.249895,0,0);-ms-transform:matrix(0.212636,-0.006166,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212636,-0.006166,0.007247,0.249895,0,0);}
.m8f_c00426{transform:matrix(0.212661,-0.006167,0.007247,0.249895,0,0);-ms-transform:matrix(0.212661,-0.006167,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212661,-0.006167,0.007247,0.249895,0,0);}
.m97_c00426{transform:matrix(0.212721,-0.006169,0.007247,0.249895,0,0);-ms-transform:matrix(0.212721,-0.006169,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212721,-0.006169,0.007247,0.249895,0,0);}
.m8_c00426{transform:matrix(0.213240,-0.006184,0.007247,0.249895,0,0);-ms-transform:matrix(0.213240,-0.006184,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213240,-0.006184,0.007247,0.249895,0,0);}
.m94_c00426{transform:matrix(0.213355,-0.006187,0.007247,0.249895,0,0);-ms-transform:matrix(0.213355,-0.006187,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213355,-0.006187,0.007247,0.249895,0,0);}
.md1_c00426{transform:matrix(0.214015,-0.006206,0.007247,0.249895,0,0);-ms-transform:matrix(0.214015,-0.006206,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214015,-0.006206,0.007247,0.249895,0,0);}
.m23_c00426{transform:matrix(0.214080,-0.006208,0.007247,0.249895,0,0);-ms-transform:matrix(0.214080,-0.006208,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214080,-0.006208,0.007247,0.249895,0,0);}
.m45_c00426{transform:matrix(0.214375,-0.006217,0.007247,0.249895,0,0);-ms-transform:matrix(0.214375,-0.006217,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214375,-0.006217,0.007247,0.249895,0,0);}
.m31_c00426{transform:matrix(0.214535,-0.006222,0.007247,0.249895,0,0);-ms-transform:matrix(0.214535,-0.006222,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214535,-0.006222,0.007247,0.249895,0,0);}
.m6e_c00426{transform:matrix(0.214605,-0.006224,0.007247,0.249895,0,0);-ms-transform:matrix(0.214605,-0.006224,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214605,-0.006224,0.007247,0.249895,0,0);}
.m3d_c00426{transform:matrix(0.214965,-0.006234,0.007247,0.249895,0,0);-ms-transform:matrix(0.214965,-0.006234,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214965,-0.006234,0.007247,0.249895,0,0);}
.m63_c00426{transform:matrix(0.215265,-0.006243,0.007247,0.249895,0,0);-ms-transform:matrix(0.215265,-0.006243,0.007247,0.249895,0,0);-webkit-transform:matrix(0.215265,-0.006243,0.007247,0.249895,0,0);}
.md6_c00426{transform:matrix(0.215374,-0.006246,0.007247,0.249895,0,0);-ms-transform:matrix(0.215374,-0.006246,0.007247,0.249895,0,0);-webkit-transform:matrix(0.215374,-0.006246,0.007247,0.249895,0,0);}
.m7d_c00426{transform:matrix(0.215999,-0.006264,0.007247,0.249895,0,0);-ms-transform:matrix(0.215999,-0.006264,0.007247,0.249895,0,0);-webkit-transform:matrix(0.215999,-0.006264,0.007247,0.249895,0,0);}
.m3b_c00426{transform:matrix(0.216154,-0.006268,0.007247,0.249895,0,0);-ms-transform:matrix(0.216154,-0.006268,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216154,-0.006268,0.007247,0.249895,0,0);}
.mbb_c00426{transform:matrix(0.217614,-0.006311,0.007247,0.249895,0,0);-ms-transform:matrix(0.217614,-0.006311,0.007247,0.249895,0,0);-webkit-transform:matrix(0.217614,-0.006311,0.007247,0.249895,0,0);}
.md5_c00426{transform:matrix(0.218643,-0.006341,0.007247,0.249895,0,0);-ms-transform:matrix(0.218643,-0.006341,0.007247,0.249895,0,0);-webkit-transform:matrix(0.218643,-0.006341,0.007247,0.249895,0,0);}
.m6c_c00426{transform:matrix(0.218698,-0.006342,0.007247,0.249895,0,0);-ms-transform:matrix(0.218698,-0.006342,0.007247,0.249895,0,0);-webkit-transform:matrix(0.218698,-0.006342,0.007247,0.249895,0,0);}
.ma6_c00426{transform:matrix(0.220132,-0.006384,0.007247,0.249895,0,0);-ms-transform:matrix(0.220132,-0.006384,0.007247,0.249895,0,0);-webkit-transform:matrix(0.220132,-0.006384,0.007247,0.249895,0,0);}
.m26_c00426{transform:matrix(0.221417,-0.006421,0.007247,0.249895,0,0);-ms-transform:matrix(0.221417,-0.006421,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221417,-0.006421,0.007247,0.249895,0,0);}
.mc8_c00426{transform:matrix(0.221467,-0.006423,0.007247,0.249895,0,0);-ms-transform:matrix(0.221467,-0.006423,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221467,-0.006423,0.007247,0.249895,0,0);}
.m64_c00426{transform:matrix(0.221817,-0.006433,0.007247,0.249895,0,0);-ms-transform:matrix(0.221817,-0.006433,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221817,-0.006433,0.007247,0.249895,0,0);}
.mb6_c00426{transform:matrix(0.222526,-0.006453,0.007247,0.249895,0,0);-ms-transform:matrix(0.222526,-0.006453,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222526,-0.006453,0.007247,0.249895,0,0);}
.mb5_c00426{transform:matrix(0.225155,-0.006530,0.007247,0.249895,0,0);-ms-transform:matrix(0.225155,-0.006530,0.007247,0.249895,0,0);-webkit-transform:matrix(0.225155,-0.006530,0.007247,0.249895,0,0);}
.mb4_c00426{transform:matrix(0.226705,-0.006574,0.007247,0.249895,0,0);-ms-transform:matrix(0.226705,-0.006574,0.007247,0.249895,0,0);-webkit-transform:matrix(0.226705,-0.006574,0.007247,0.249895,0,0);}
.m81_c00426{transform:matrix(0.227284,-0.006591,0.007247,0.249895,0,0);-ms-transform:matrix(0.227284,-0.006591,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227284,-0.006591,0.007247,0.249895,0,0);}
.mbe_c00426{transform:matrix(0.228984,-0.006641,0.007247,0.249895,0,0);-ms-transform:matrix(0.228984,-0.006641,0.007247,0.249895,0,0);-webkit-transform:matrix(0.228984,-0.006641,0.007247,0.249895,0,0);}
.md_c00426{transform:matrix(0.229414,-0.006653,0.007247,0.249895,0,0);-ms-transform:matrix(0.229414,-0.006653,0.007247,0.249895,0,0);-webkit-transform:matrix(0.229414,-0.006653,0.007247,0.249895,0,0);}
.m72_c00426{transform:matrix(0.230123,-0.006674,0.007247,0.249895,0,0);-ms-transform:matrix(0.230123,-0.006674,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230123,-0.006674,0.007247,0.249895,0,0);}
.ma7_c00426{transform:matrix(0.230793,-0.006693,0.007247,0.249895,0,0);-ms-transform:matrix(0.230793,-0.006693,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230793,-0.006693,0.007247,0.249895,0,0);}
.m7f_c00426{transform:matrix(0.232447,-0.006741,0.007247,0.249895,0,0);-ms-transform:matrix(0.232447,-0.006741,0.007247,0.249895,0,0);-webkit-transform:matrix(0.232447,-0.006741,0.007247,0.249895,0,0);}
.m93_c00426{transform:matrix(0.233537,-0.006773,0.007247,0.249895,0,0);-ms-transform:matrix(0.233537,-0.006773,0.007247,0.249895,0,0);-webkit-transform:matrix(0.233537,-0.006773,0.007247,0.249895,0,0);}
.mbd_c00426{transform:matrix(0.234536,-0.006802,0.007247,0.249895,0,0);-ms-transform:matrix(0.234536,-0.006802,0.007247,0.249895,0,0);-webkit-transform:matrix(0.234536,-0.006802,0.007247,0.249895,0,0);}
.m10_c00426{transform:matrix(0.236276,-0.006852,0.007247,0.249895,0,0);-ms-transform:matrix(0.236276,-0.006852,0.007247,0.249895,0,0);-webkit-transform:matrix(0.236276,-0.006852,0.007247,0.249895,0,0);}
.m41_c00426{transform:matrix(0.236611,-0.006862,0.007247,0.249895,0,0);-ms-transform:matrix(0.236611,-0.006862,0.007247,0.249895,0,0);-webkit-transform:matrix(0.236611,-0.006862,0.007247,0.249895,0,0);}
.m7c_c00426{transform:matrix(0.237435,-0.006886,0.007247,0.249895,0,0);-ms-transform:matrix(0.237435,-0.006886,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237435,-0.006886,0.007247,0.249895,0,0);}
.ma8_c00426{transform:matrix(0.238705,-0.006922,0.007247,0.249895,0,0);-ms-transform:matrix(0.238705,-0.006922,0.007247,0.249895,0,0);-webkit-transform:matrix(0.238705,-0.006922,0.007247,0.249895,0,0);}
.mbc_c00426{transform:matrix(0.243363,-0.007058,0.007247,0.249895,0,0);-ms-transform:matrix(0.243363,-0.007058,0.007247,0.249895,0,0);-webkit-transform:matrix(0.243363,-0.007058,0.007247,0.249895,0,0);}
.m80_c00426{transform:matrix(0.246641,-0.007153,0.007247,0.249895,0,0);-ms-transform:matrix(0.246641,-0.007153,0.007247,0.249895,0,0);-webkit-transform:matrix(0.246641,-0.007153,0.007247,0.249895,0,0);}
.m7b_c00426{transform:matrix(0.250060,-0.007252,0.007247,0.249895,0,0);-ms-transform:matrix(0.250060,-0.007252,0.007247,0.249895,0,0);-webkit-transform:matrix(0.250060,-0.007252,0.007247,0.249895,0,0);}
.m7e_c00426{transform:matrix(0.250805,-0.007273,0.007247,0.249895,0,0);-ms-transform:matrix(0.250805,-0.007273,0.007247,0.249895,0,0);-webkit-transform:matrix(0.250805,-0.007273,0.007247,0.249895,0,0);}
.m76_c00426{transform:matrix(0.251614,-0.007297,0.007247,0.249895,0,0);-ms-transform:matrix(0.251614,-0.007297,0.007247,0.249895,0,0);-webkit-transform:matrix(0.251614,-0.007297,0.007247,0.249895,0,0);}
.m30_c00426{transform:matrix(0.257442,-0.007466,0.007247,0.249895,0,0);-ms-transform:matrix(0.257442,-0.007466,0.007247,0.249895,0,0);-webkit-transform:matrix(0.257442,-0.007466,0.007247,0.249895,0,0);}
.ma9_c00426{transform:matrix(0.261995,-0.007598,0.007247,0.249895,0,0);-ms-transform:matrix(0.261995,-0.007598,0.007247,0.249895,0,0);-webkit-transform:matrix(0.261995,-0.007598,0.007247,0.249895,0,0);}
.m91_c00426{transform:matrix(0.267503,-0.007758,0.007247,0.249895,0,0);-ms-transform:matrix(0.267503,-0.007758,0.007247,0.249895,0,0);-webkit-transform:matrix(0.267503,-0.007758,0.007247,0.249895,0,0);}
.mb2_c00426{transform:matrix(0.275034,-0.007976,0.007247,0.249895,0,0);-ms-transform:matrix(0.275034,-0.007976,0.007247,0.249895,0,0);-webkit-transform:matrix(0.275034,-0.007976,0.007247,0.249895,0,0);}
.mb1_c00426{transform:matrix(0.305467,-0.008859,0.007247,0.249895,0,0);-ms-transform:matrix(0.305467,-0.008859,0.007247,0.249895,0,0);-webkit-transform:matrix(0.305467,-0.008859,0.007247,0.249895,0,0);}
.m19_c00426{transform:matrix(0.305896,-0.008871,0.007247,0.249895,0,0);-ms-transform:matrix(0.305896,-0.008871,0.007247,0.249895,0,0);-webkit-transform:matrix(0.305896,-0.008871,0.007247,0.249895,0,0);}
.m24_c00426{transform:matrix(0.349433,-0.010134,0.007247,0.249895,0,0);-ms-transform:matrix(0.349433,-0.010134,0.007247,0.249895,0,0);-webkit-transform:matrix(0.349433,-0.010134,0.007247,0.249895,0,0);}
.m2_c00426{transform:matrix(0.355251,-0.010302,0.007247,0.249895,0,0);-ms-transform:matrix(0.355251,-0.010302,0.007247,0.249895,0,0);-webkit-transform:matrix(0.355251,-0.010302,0.007247,0.249895,0,0);}
.mab_c00426{transform:matrix(0.671053,-0.019461,0.007247,0.249895,0,0);-ms-transform:matrix(0.671053,-0.019461,0.007247,0.249895,0,0);-webkit-transform:matrix(0.671053,-0.019461,0.007247,0.249895,0,0);}
.m5_c00426{transform:matrix(0.726340,-0.021064,0.007247,0.249895,0,0);-ms-transform:matrix(0.726340,-0.021064,0.007247,0.249895,0,0);-webkit-transform:matrix(0.726340,-0.021064,0.007247,0.249895,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
.fc0_c00426{color:transparent;}
.fsb_c00426{font-size:53.572513px;}
.fsa_c00426{font-size:57.774279px;}
.fsc_c00426{font-size:58.824720px;}
.fs5_c00426{font-size:59.875162px;}
.fs7_c00426{font-size:60.925603px;}
.fs6_c00426{font-size:61.976045px;}
.fs2_c00426{font-size:63.026486px;}
.fs1_c00426{font-size:64.076927px;}
.fs4_c00426{font-size:65.127369px;}
.fs8_c00426{font-size:66.177810px;}
.fs9_c00426{font-size:67.228252px;}
.fs3_c00426{font-size:70.379576px;}
.fs0_c00426{font-size:75.600000px;}
.fsd_c00426{font-size:86.136197px;}
.y0_c00426{bottom:0.000000px;}
.yde_c00426{bottom:30.835350px;}
.ydf_c00426{bottom:31.301827px;}
.ye0_c00426{bottom:33.336534px;}
.ye1_c00426{bottom:34.119985px;}
.ye2_c00426{bottom:34.561882px;}
.ye3_c00426{bottom:35.730501px;}
.ye4_c00426{bottom:36.202917px;}
.yd6_c00426{bottom:50.282419px;}
.yd7_c00426{bottom:51.369445px;}
.yd8_c00426{bottom:52.781863px;}
.yd9_c00426{bottom:53.293368px;}
.yda_c00426{bottom:54.284923px;}
.ydb_c00426{bottom:54.862141px;}
.ydc_c00426{bottom:55.368621px;}
.ydd_c00426{bottom:56.691528px;}
.ycf_c00426{bottom:68.109129px;}
.yd0_c00426{bottom:69.951502px;}
.yd1_c00426{bottom:70.381675px;}
.yd2_c00426{bottom:71.635476px;}
.yd3_c00426{bottom:71.959737px;}
.yd4_c00426{bottom:72.425148px;}
.yd5_c00426{bottom:73.721235px;}
.yc8_c00426{bottom:84.851878px;}
.yc9_c00426{bottom:85.366056px;}
.yca_c00426{bottom:85.999248px;}
.ycb_c00426{bottom:86.885155px;}
.ycc_c00426{bottom:87.802437px;}
.ycd_c00426{bottom:88.450510px;}
.yce_c00426{bottom:88.814560px;}
.yc1_c00426{bottom:102.680821px;}
.yc2_c00426{bottom:104.077528px;}
.yc3_c00426{bottom:104.516412px;}
.yc4_c00426{bottom:104.895490px;}
.yc5_c00426{bottom:106.564395px;}
.yc6_c00426{bottom:106.969297px;}
.yc7_c00426{bottom:107.456868px;}
.yb9_c00426{bottom:118.082829px;}
.yba_c00426{bottom:118.681915px;}
.ybb_c00426{bottom:119.878239px;}
.ybc_c00426{bottom:120.464514px;}
.ybd_c00426{bottom:121.700491px;}
.ybe_c00426{bottom:122.428479px;}
.ybf_c00426{bottom:123.711766px;}
.yc0_c00426{bottom:125.116233px;}
.yb4_c00426{bottom:134.287987px;}
.yb5_c00426{bottom:135.542560px;}
.yb6_c00426{bottom:137.359227px;}
.yb7_c00426{bottom:137.654956px;}
.yb8_c00426{bottom:139.599834px;}
.yad_c00426{bottom:151.306309px;}
.yae_c00426{bottom:152.124544px;}
.yaf_c00426{bottom:153.040582px;}
.yb0_c00426{bottom:154.085770px;}
.yb1_c00426{bottom:154.347595px;}
.yb2_c00426{bottom:155.917086px;}
.yb3_c00426{bottom:157.051420px;}
.ya8_c00426{bottom:168.322675px;}
.ya9_c00426{bottom:168.957031px;}
.yaa_c00426{bottom:169.932667px;}
.yab_c00426{bottom:173.046042px;}
.yac_c00426{bottom:173.920941px;}
.ya0_c00426{bottom:185.608752px;}
.ya1_c00426{bottom:186.293325px;}
.ya2_c00426{bottom:187.338753px;}
.ya3_c00426{bottom:187.697977px;}
.ya4_c00426{bottom:188.757330px;}
.ya5_c00426{bottom:189.446602px;}
.ya6_c00426{bottom:189.822535px;}
.ya7_c00426{bottom:190.153911px;}
.y99_c00426{bottom:202.355863px;}
.y9a_c00426{bottom:202.913223px;}
.y9b_c00426{bottom:203.591610px;}
.y9c_c00426{bottom:204.000661px;}
.y9d_c00426{bottom:205.161873px;}
.y9e_c00426{bottom:206.363071px;}
.y9f_c00426{bottom:207.631212px;}
.y93_c00426{bottom:219.100950px;}
.y94_c00426{bottom:219.826341px;}
.y95_c00426{bottom:221.051256px;}
.y96_c00426{bottom:222.534667px;}
.y97_c00426{bottom:223.141458px;}
.y98_c00426{bottom:223.757037px;}
.y8b_c00426{bottom:235.582461px;}
.y8c_c00426{bottom:236.095270px;}
.y8d_c00426{bottom:236.553895px;}
.y8e_c00426{bottom:237.911781px;}
.y8f_c00426{bottom:238.387764px;}
.y90_c00426{bottom:238.784808px;}
.y91_c00426{bottom:240.740772px;}
.y92_c00426{bottom:241.207597px;}
.y83_c00426{bottom:253.140639px;}
.y84_c00426{bottom:254.519007px;}
.y85_c00426{bottom:254.983887px;}
.y86_c00426{bottom:255.407392px;}
.y87_c00426{bottom:256.537996px;}
.y88_c00426{bottom:257.686677px;}
.y89_c00426{bottom:258.759004px;}
.y8a_c00426{bottom:259.078162px;}
.y7c_c00426{bottom:270.964753px;}
.y7d_c00426{bottom:272.122008px;}
.y7e_c00426{bottom:272.919624px;}
.y7f_c00426{bottom:273.487885px;}
.y80_c00426{bottom:274.810624px;}
.y81_c00426{bottom:275.054880px;}
.y82_c00426{bottom:276.166516px;}
.y77_c00426{bottom:287.981091px;}
.y78_c00426{bottom:288.208509px;}
.y79_c00426{bottom:289.690575px;}
.y7a_c00426{bottom:292.458310px;}
.y7b_c00426{bottom:293.831170px;}
.y70_c00426{bottom:302.844918px;}
.y71_c00426{bottom:303.185616px;}
.y72_c00426{bottom:303.868599px;}
.y73_c00426{bottom:306.736050px;}
.y74_c00426{bottom:307.891747px;}
.y75_c00426{bottom:309.732429px;}
.y76_c00426{bottom:310.677444px;}
.y6b_c00426{bottom:319.592925px;}
.y6c_c00426{bottom:321.802762px;}
.y6d_c00426{bottom:323.243827px;}
.y6e_c00426{bottom:326.173719px;}
.y6f_c00426{bottom:326.941273px;}
.y63_c00426{bottom:336.344103px;}
.y64_c00426{bottom:337.166367px;}
.y65_c00426{bottom:337.653631px;}
.y66_c00426{bottom:338.950762px;}
.y67_c00426{bottom:341.119593px;}
.y68_c00426{bottom:342.832390px;}
.y69_c00426{bottom:344.577246px;}
.y6a_c00426{bottom:345.251421px;}
.y5d_c00426{bottom:354.707967px;}
.y5e_c00426{bottom:357.034620px;}
.y5f_c00426{bottom:357.762982px;}
.y60_c00426{bottom:360.618904px;}
.y61_c00426{bottom:362.372224px;}
.y62_c00426{bottom:362.946993px;}
.y57_c00426{bottom:372.265866px;}
.y58_c00426{bottom:373.760074px;}
.y59_c00426{bottom:375.310855px;}
.y5a_c00426{bottom:377.502207px;}
.y5b_c00426{bottom:377.865286px;}
.y5c_c00426{bottom:379.957674px;}
.y50_c00426{bottom:388.469402px;}
.y51_c00426{bottom:389.971642px;}
.y52_c00426{bottom:391.029863px;}
.y53_c00426{bottom:392.487732px;}
.y54_c00426{bottom:393.123877px;}
.y55_c00426{bottom:395.171998px;}
.y56_c00426{bottom:396.279441px;}
.y49_c00426{bottom:405.754148px;}
.y4a_c00426{bottom:407.517543px;}
.y4b_c00426{bottom:407.975037px;}
.y4c_c00426{bottom:409.618257px;}
.y4d_c00426{bottom:410.151837px;}
.y4e_c00426{bottom:411.717927px;}
.y4f_c00426{bottom:412.392346px;}
.y41_c00426{bottom:422.497389px;}
.y42_c00426{bottom:423.010981px;}
.y43_c00426{bottom:424.758993px;}
.y44_c00426{bottom:425.530568px;}
.y45_c00426{bottom:426.046204px;}
.y46_c00426{bottom:427.023621px;}
.y47_c00426{bottom:427.413030px;}
.y48_c00426{bottom:428.074386px;}
.y3b_c00426{bottom:440.323958px;}
.y3c_c00426{bottom:441.996067px;}
.y3d_c00426{bottom:443.061738px;}
.y3e_c00426{bottom:443.596716px;}
.y3f_c00426{bottom:445.063554px;}
.y40_c00426{bottom:445.503444px;}
.y31_c00426{bottom:457.881529px;}
.y32_c00426{bottom:458.143180px;}
.y33_c00426{bottom:458.405287px;}
.y34_c00426{bottom:458.928175px;}
.y35_c00426{bottom:460.467798px;}
.y36_c00426{bottom:460.904629px;}
.y37_c00426{bottom:461.387622px;}
.y38_c00426{bottom:462.438814px;}
.y39_c00426{bottom:463.294878px;}
.y3a_c00426{bottom:463.863144px;}
.y28_c00426{bottom:475.977450px;}
.y29_c00426{bottom:477.102191px;}
.y2a_c00426{bottom:477.286674px;}
.y2b_c00426{bottom:478.544050px;}
.y2c_c00426{bottom:478.875180px;}
.y2d_c00426{bottom:479.154593px;}
.y2e_c00426{bottom:479.438203px;}
.y2f_c00426{bottom:479.788306px;}
.y30_c00426{bottom:480.078553px;}
.y1f_c00426{bottom:491.376583px;}
.y20_c00426{bottom:492.408010px;}
.y21_c00426{bottom:492.867940px;}
.y22_c00426{bottom:493.426757px;}
.y23_c00426{bottom:495.513211px;}
.y24_c00426{bottom:495.804540px;}
.y25_c00426{bottom:496.686898px;}
.y26_c00426{bottom:497.672559px;}
.y27_c00426{bottom:497.873071px;}
.y18_c00426{bottom:507.317153px;}
.y19_c00426{bottom:508.096411px;}
.y1a_c00426{bottom:508.829735px;}
.y1b_c00426{bottom:510.941355px;}
.y1c_c00426{bottom:511.399149px;}
.y1d_c00426{bottom:513.067374px;}
.y1e_c00426{bottom:514.008149px;}
.y11_c00426{bottom:525.686448px;}
.y12_c00426{bottom:526.505074px;}
.y13_c00426{bottom:528.047845px;}
.y14_c00426{bottom:528.866602px;}
.y15_c00426{bottom:529.572825px;}
.y16_c00426{bottom:531.838044px;}
.y17_c00426{bottom:532.290531px;}
.ya_c00426{bottom:541.088883px;}
.yb_c00426{bottom:542.484884px;}
.yc_c00426{bottom:544.610204px;}
.yd_c00426{bottom:545.263857px;}
.ye_c00426{bottom:547.690687px;}
.yf_c00426{bottom:548.169498px;}
.y10_c00426{bottom:549.169030px;}
.y2_c00426{bottom:558.372000px;}
.y3_c00426{bottom:559.452323px;}
.y4_c00426{bottom:560.446559px;}
.y5_c00426{bottom:561.095491px;}
.y6_c00426{bottom:563.086660px;}
.y7_c00426{bottom:563.887017px;}
.y8_c00426{bottom:565.569293px;}
.y9_c00426{bottom:565.937825px;}
.y1_c00426{bottom:578.049000px;}
.hc_c00426{height:53.572513px;}
.hb_c00426{height:57.774279px;}
.hd_c00426{height:58.824720px;}
.h6_c00426{height:59.875162px;}
.h8_c00426{height:60.925603px;}
.h7_c00426{height:61.976045px;}
.h3_c00426{height:63.026486px;}
.h2_c00426{height:64.076927px;}
.h5_c00426{height:65.127369px;}
.h9_c00426{height:66.177810px;}
.ha_c00426{height:67.228252px;}
.h4_c00426{height:70.379576px;}
.h1_c00426{height:75.600000px;}
.he_c00426{height:86.136197px;}
.h0_c00426{height:608.250000px;}
.w0_c00426{width:359.100000px;}
.w1_c00426{width:359.250000px;}
.x0_c00426{left:0.000000px;}
.xb_c00426{left:18.866660px;}
.x3d_c00426{left:20.039555px;}
.x5f_c00426{left:21.102780px;}
.x75_c00426{left:23.610573px;}
.x11_c00426{left:26.804625px;}
.x3_c00426{left:27.946500px;}
.x67_c00426{left:29.136551px;}
.x2b_c00426{left:31.308018px;}
.x55_c00426{left:38.853852px;}
.x36_c00426{left:41.103227px;}
.x2c_c00426{left:43.193411px;}
.x6b_c00426{left:44.610989px;}
.x18_c00426{left:45.811779px;}
.x6a_c00426{left:48.921170px;}
.x66_c00426{left:50.652222px;}
.x12_c00426{left:55.033125px;}
.x56_c00426{left:60.178982px;}
.x1d_c00426{left:62.111057px;}
.xc_c00426{left:63.898550px;}
.x4_c00426{left:65.199000px;}
.x2d_c00426{left:66.970239px;}
.x76_c00426{left:68.911142px;}
.x19_c00426{left:71.098779px;}
.x45_c00426{left:72.974084px;}
.x41_c00426{left:75.698633px;}
.x1e_c00426{left:81.283841px;}
.x24_c00426{left:85.494201px;}
.x3e_c00426{left:87.834927px;}
.x51_c00426{left:91.967540px;}
.x6f_c00426{left:93.197964px;}
.x49_c00426{left:94.616400px;}
.x25_c00426{left:96.359486px;}
.x5_c00426{left:99.483000px;}
.x4e_c00426{left:101.979078px;}
.x1f_c00426{left:104.591234px;}
.x73_c00426{left:106.837584px;}
.x13_c00426{left:108.232125px;}
.x59_c00426{left:109.975643px;}
.x37_c00426{left:113.907254px;}
.x63_c00426{left:116.959379px;}
.x4a_c00426{left:118.127552px;}
.x5e_c00426{left:119.384426px;}
.x6_c00426{left:121.860000px;}
.x6c_c00426{left:123.463997px;}
.x68_c00426{left:125.236175px;}
.x46_c00426{left:128.364693px;}
.xd_c00426{left:132.474591px;}
.x14_c00426{left:136.465125px;}
.x52_c00426{left:138.449843px;}
.x5c_c00426{left:140.895608px;}
.x1a_c00426{left:143.913279px;}
.x38_c00426{left:146.052408px;}
.x33_c00426{left:149.812091px;}
.x1_c00426{left:153.090000px;}
.x60_c00426{left:154.565138px;}
.x2e_c00426{left:156.814466px;}
.x1b_c00426{left:159.699279px;}
.x15_c00426{left:160.817625px;}
.x70_c00426{left:166.128947px;}
.x39_c00426{left:167.508497px;}
.x3f_c00426{left:168.607931px;}
.x26_c00426{left:170.363738px;}
.x34_c00426{left:175.300007px;}
.x74_c00426{left:177.019263px;}
.x2f_c00426{left:178.801446px;}
.x6d_c00426{left:182.873046px;}
.x64_c00426{left:184.366538px;}
.x57_c00426{left:185.914563px;}
.x40_c00426{left:189.129714px;}
.x7_c00426{left:190.521000px;}
.x42_c00426{left:192.420375px;}
.x71_c00426{left:195.269840px;}
.x20_c00426{left:203.667089px;}
.x27_c00426{left:206.274222px;}
.x3a_c00426{left:208.252913px;}
.x4b_c00426{left:210.240201px;}
.x65_c00426{left:211.916606px;}
.x77_c00426{left:214.456239px;}
.x5d_c00426{left:215.533421px;}
.x8_c00426{left:218.119500px;}
.x47_c00426{left:219.606347px;}
.x28_c00426{left:222.939008px;}
.x3b_c00426{left:224.476262px;}
.x30_c00426{left:226.593647px;}
.x78_c00426{left:227.827326px;}
.xe_c00426{left:231.864849px;}
.x53_c00426{left:232.957862px;}
.x61_c00426{left:236.092970px;}
.x16_c00426{left:238.928625px;}
.x21_c00426{left:240.408896px;}
.x5a_c00426{left:241.755680px;}
.x29_c00426{left:243.553185px;}
.x35_c00426{left:245.138189px;}
.xf_c00426{left:247.288435px;}
.x1c_c00426{left:249.664779px;}
.x3c_c00426{left:252.044264px;}
.x17_c00426{left:254.531625px;}
.x62_c00426{left:255.555297px;}
.x54_c00426{left:257.716926px;}
.x2a_c00426{left:260.602101px;}
.x69_c00426{left:263.272697px;}
.x31_c00426{left:265.483020px;}
.x4c_c00426{left:266.816938px;}
.x43_c00426{left:268.273769px;}
.x2_c00426{left:270.270000px;}
.x58_c00426{left:272.965494px;}
.x9_c00426{left:276.129000px;}
.x4f_c00426{left:277.825310px;}
.x10_c00426{left:279.529065px;}
.x22_c00426{left:281.489355px;}
.x4d_c00426{left:285.342351px;}
.xa_c00426{left:288.837000px;}
.x23_c00426{left:289.853073px;}
.x32_c00426{left:291.342284px;}
.x48_c00426{left:294.346022px;}
.x50_c00426{left:298.898483px;}
.x72_c00426{left:302.808324px;}
.x6e_c00426{left:305.823015px;}
.x5b_c00426{left:307.110818px;}
.x44_c00426{left:309.308661px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.fsb_c00426{font-size:47.620012pt;}
.fsa_c00426{font-size:51.354914pt;}
.fsc_c00426{font-size:52.288640pt;}
.fs5_c00426{font-size:53.222366pt;}
.fs7_c00426{font-size:54.156092pt;}
.fs6_c00426{font-size:55.089817pt;}
.fs2_c00426{font-size:56.023543pt;}
.fs1_c00426{font-size:56.957269pt;}
.fs4_c00426{font-size:57.890994pt;}
.fs8_c00426{font-size:58.824720pt;}
.fs9_c00426{font-size:59.758446pt;}
.fs3_c00426{font-size:62.559623pt;}
.fs0_c00426{font-size:67.200000pt;}
.fsd_c00426{font-size:76.565509pt;}
.y0_c00426{bottom:0.000000pt;}
.yde_c00426{bottom:27.409200pt;}
.ydf_c00426{bottom:27.823847pt;}
.ye0_c00426{bottom:29.632475pt;}
.ye1_c00426{bottom:30.328876pt;}
.ye2_c00426{bottom:30.721673pt;}
.ye3_c00426{bottom:31.760445pt;}
.ye4_c00426{bottom:32.180371pt;}
.yd6_c00426{bottom:44.695484pt;}
.yd7_c00426{bottom:45.661729pt;}
.yd8_c00426{bottom:46.917212pt;}
.yd9_c00426{bottom:47.371883pt;}
.yda_c00426{bottom:48.253265pt;}
.ydb_c00426{bottom:48.766348pt;}
.ydc_c00426{bottom:49.216552pt;}
.ydd_c00426{bottom:50.392469pt;}
.ycf_c00426{bottom:60.541448pt;}
.yd0_c00426{bottom:62.179113pt;}
.yd1_c00426{bottom:62.561489pt;}
.yd2_c00426{bottom:63.675979pt;}
.yd3_c00426{bottom:63.964211pt;}
.yd4_c00426{bottom:64.377909pt;}
.yd5_c00426{bottom:65.529987pt;}
.yc8_c00426{bottom:75.423892pt;}
.yc9_c00426{bottom:75.880939pt;}
.yca_c00426{bottom:76.443776pt;}
.ycb_c00426{bottom:77.231249pt;}
.ycc_c00426{bottom:78.046611pt;}
.ycd_c00426{bottom:78.622676pt;}
.yce_c00426{bottom:78.946276pt;}
.yc1_c00426{bottom:91.271841pt;}
.yc2_c00426{bottom:92.513359pt;}
.yc3_c00426{bottom:92.903477pt;}
.yc4_c00426{bottom:93.240436pt;}
.yc5_c00426{bottom:94.723907pt;}
.yc6_c00426{bottom:95.083820pt;}
.yc7_c00426{bottom:95.517216pt;}
.yb9_c00426{bottom:104.962515pt;}
.yba_c00426{bottom:105.495036pt;}
.ybb_c00426{bottom:106.558435pt;}
.ybc_c00426{bottom:107.079568pt;}
.ybd_c00426{bottom:108.178215pt;}
.ybe_c00426{bottom:108.825315pt;}
.ybf_c00426{bottom:109.966015pt;}
.yc0_c00426{bottom:111.214429pt;}
.yb4_c00426{bottom:119.367100pt;}
.yb5_c00426{bottom:120.482276pt;}
.yb6_c00426{bottom:122.097091pt;}
.yb7_c00426{bottom:122.359961pt;}
.yb8_c00426{bottom:124.088741pt;}
.yad_c00426{bottom:134.494497pt;}
.yae_c00426{bottom:135.221817pt;}
.yaf_c00426{bottom:136.036073pt;}
.yb0_c00426{bottom:136.965129pt;}
.yb1_c00426{bottom:137.197863pt;}
.yb2_c00426{bottom:138.592965pt;}
.yb3_c00426{bottom:139.601263pt;}
.ya8_c00426{bottom:149.620156pt;}
.ya9_c00426{bottom:150.184028pt;}
.yaa_c00426{bottom:151.051260pt;}
.yab_c00426{bottom:153.818704pt;}
.yac_c00426{bottom:154.596392pt;}
.ya0_c00426{bottom:164.985557pt;}
.ya1_c00426{bottom:165.594067pt;}
.ya2_c00426{bottom:166.523336pt;}
.ya3_c00426{bottom:166.842647pt;}
.ya4_c00426{bottom:167.784293pt;}
.ya5_c00426{bottom:168.396980pt;}
.ya6_c00426{bottom:168.731143pt;}
.ya7_c00426{bottom:169.025699pt;}
.y99_c00426{bottom:179.871879pt;}
.y9a_c00426{bottom:180.367309pt;}
.y9b_c00426{bottom:180.970320pt;}
.y9c_c00426{bottom:181.333921pt;}
.y9d_c00426{bottom:182.366109pt;}
.y9e_c00426{bottom:183.433841pt;}
.y9f_c00426{bottom:184.561077pt;}
.y93_c00426{bottom:194.756400pt;}
.y94_c00426{bottom:195.401192pt;}
.y95_c00426{bottom:196.490005pt;}
.y96_c00426{bottom:197.808593pt;}
.y97_c00426{bottom:198.347963pt;}
.y98_c00426{bottom:198.895144pt;}
.y8b_c00426{bottom:209.406632pt;}
.y8c_c00426{bottom:209.862463pt;}
.y8d_c00426{bottom:210.270129pt;}
.y8e_c00426{bottom:211.477139pt;}
.y8f_c00426{bottom:211.900235pt;}
.y90_c00426{bottom:212.253163pt;}
.y91_c00426{bottom:213.991797pt;}
.y92_c00426{bottom:214.406753pt;}
.y83_c00426{bottom:225.013901pt;}
.y84_c00426{bottom:226.239117pt;}
.y85_c00426{bottom:226.652344pt;}
.y86_c00426{bottom:227.028793pt;}
.y87_c00426{bottom:228.033775pt;}
.y88_c00426{bottom:229.054824pt;}
.y89_c00426{bottom:230.008004pt;}
.y8a_c00426{bottom:230.291700pt;}
.y7c_c00426{bottom:240.857559pt;}
.y7d_c00426{bottom:241.886229pt;}
.y7e_c00426{bottom:242.595221pt;}
.y7f_c00426{bottom:243.100343pt;}
.y80_c00426{bottom:244.276111pt;}
.y81_c00426{bottom:244.493227pt;}
.y82_c00426{bottom:245.481348pt;}
.y77_c00426{bottom:255.983192pt;}
.y78_c00426{bottom:256.185341pt;}
.y79_c00426{bottom:257.502733pt;}
.y7a_c00426{bottom:259.962943pt;}
.y7b_c00426{bottom:261.183263pt;}
.y70_c00426{bottom:269.195483pt;}
.y71_c00426{bottom:269.498325pt;}
.y72_c00426{bottom:270.105421pt;}
.y73_c00426{bottom:272.654267pt;}
.y74_c00426{bottom:273.681553pt;}
.y75_c00426{bottom:275.317715pt;}
.y76_c00426{bottom:276.157728pt;}
.y6b_c00426{bottom:284.082600pt;}
.y6c_c00426{bottom:286.046900pt;}
.y6d_c00426{bottom:287.327847pt;}
.y6e_c00426{bottom:289.932195pt;}
.y6f_c00426{bottom:290.614465pt;}
.y63_c00426{bottom:298.972536pt;}
.y64_c00426{bottom:299.703437pt;}
.y65_c00426{bottom:300.136561pt;}
.y66_c00426{bottom:301.289567pt;}
.y67_c00426{bottom:303.217416pt;}
.y68_c00426{bottom:304.739903pt;}
.y69_c00426{bottom:306.290885pt;}
.y6a_c00426{bottom:306.890152pt;}
.y5d_c00426{bottom:315.295971pt;}
.y5e_c00426{bottom:317.364107pt;}
.y5f_c00426{bottom:318.011540pt;}
.y60_c00426{bottom:320.550137pt;}
.y61_c00426{bottom:322.108644pt;}
.y62_c00426{bottom:322.619549pt;}
.y57_c00426{bottom:330.902992pt;}
.y58_c00426{bottom:332.231177pt;}
.y59_c00426{bottom:333.609649pt;}
.y5a_c00426{bottom:335.557517pt;}
.y5b_c00426{bottom:335.880255pt;}
.y5c_c00426{bottom:337.740155pt;}
.y50_c00426{bottom:345.306135pt;}
.y51_c00426{bottom:346.641460pt;}
.y52_c00426{bottom:347.582100pt;}
.y53_c00426{bottom:348.877984pt;}
.y54_c00426{bottom:349.443447pt;}
.y55_c00426{bottom:351.263999pt;}
.y56_c00426{bottom:352.248392pt;}
.y49_c00426{bottom:360.670353pt;}
.y4a_c00426{bottom:362.237816pt;}
.y4b_c00426{bottom:362.644477pt;}
.y4c_c00426{bottom:364.105117pt;}
.y4d_c00426{bottom:364.579411pt;}
.y4e_c00426{bottom:365.971491pt;}
.y4f_c00426{bottom:366.570975pt;}
.y41_c00426{bottom:375.553235pt;}
.y42_c00426{bottom:376.009761pt;}
.y43_c00426{bottom:377.563549pt;}
.y44_c00426{bottom:378.249393pt;}
.y45_c00426{bottom:378.707737pt;}
.y46_c00426{bottom:379.576552pt;}
.y47_c00426{bottom:379.922693pt;}
.y48_c00426{bottom:380.510565pt;}
.y3b_c00426{bottom:391.399073pt;}
.y3c_c00426{bottom:392.885393pt;}
.y3d_c00426{bottom:393.832656pt;}
.y3e_c00426{bottom:394.308192pt;}
.y3f_c00426{bottom:395.612048pt;}
.y40_c00426{bottom:396.003061pt;}
.y31_c00426{bottom:407.005804pt;}
.y32_c00426{bottom:407.238383pt;}
.y33_c00426{bottom:407.471367pt;}
.y34_c00426{bottom:407.936156pt;}
.y35_c00426{bottom:409.304709pt;}
.y36_c00426{bottom:409.693004pt;}
.y37_c00426{bottom:410.122331pt;}
.y38_c00426{bottom:411.056724pt;}
.y39_c00426{bottom:411.817669pt;}
.y3a_c00426{bottom:412.322795pt;}
.y28_c00426{bottom:423.091067pt;}
.y29_c00426{bottom:424.090836pt;}
.y2a_c00426{bottom:424.254821pt;}
.y2b_c00426{bottom:425.372489pt;}
.y2c_c00426{bottom:425.666827pt;}
.y2d_c00426{bottom:425.915193pt;}
.y2e_c00426{bottom:426.167292pt;}
.y2f_c00426{bottom:426.478495pt;}
.y30_c00426{bottom:426.736492pt;}
.y1f_c00426{bottom:436.779185pt;}
.y20_c00426{bottom:437.696009pt;}
.y21_c00426{bottom:438.104836pt;}
.y22_c00426{bottom:438.601561pt;}
.y23_c00426{bottom:440.456188pt;}
.y24_c00426{bottom:440.715147pt;}
.y25_c00426{bottom:441.499465pt;}
.y26_c00426{bottom:442.375608pt;}
.y27_c00426{bottom:442.553841pt;}
.y18_c00426{bottom:450.948580pt;}
.y19_c00426{bottom:451.641255pt;}
.y1a_c00426{bottom:452.293097pt;}
.y1b_c00426{bottom:454.170093pt;}
.y1c_c00426{bottom:454.577021pt;}
.y1d_c00426{bottom:456.059888pt;}
.y1e_c00426{bottom:456.896132pt;}
.y11_c00426{bottom:467.276843pt;}
.y12_c00426{bottom:468.004511pt;}
.y13_c00426{bottom:469.375863pt;}
.y14_c00426{bottom:470.103647pt;}
.y15_c00426{bottom:470.731400pt;}
.y16_c00426{bottom:472.744928pt;}
.y17_c00426{bottom:473.147139pt;}
.ya_c00426{bottom:480.967896pt;}
.yb_c00426{bottom:482.208785pt;}
.yc_c00426{bottom:484.097959pt;}
.yd_c00426{bottom:484.678984pt;}
.ye_c00426{bottom:486.836167pt;}
.yf_c00426{bottom:487.261776pt;}
.y10_c00426{bottom:488.150249pt;}
.y2_c00426{bottom:496.330667pt;}
.y3_c00426{bottom:497.290953pt;}
.y4_c00426{bottom:498.174719pt;}
.y5_c00426{bottom:498.751548pt;}
.y6_c00426{bottom:500.521476pt;}
.y7_c00426{bottom:501.232904pt;}
.y8_c00426{bottom:502.728260pt;}
.y9_c00426{bottom:503.055844pt;}
.y1_c00426{bottom:513.821333pt;}
.hc_c00426{height:47.620012pt;}
.hb_c00426{height:51.354914pt;}
.hd_c00426{height:52.288640pt;}
.h6_c00426{height:53.222366pt;}
.h8_c00426{height:54.156092pt;}
.h7_c00426{height:55.089817pt;}
.h3_c00426{height:56.023543pt;}
.h2_c00426{height:56.957269pt;}
.h5_c00426{height:57.890994pt;}
.h9_c00426{height:58.824720pt;}
.ha_c00426{height:59.758446pt;}
.h4_c00426{height:62.559623pt;}
.h1_c00426{height:67.200000pt;}
.he_c00426{height:76.565509pt;}
.h0_c00426{height:540.666667pt;}
.w0_c00426{width:319.200000pt;}
.w1_c00426{width:319.333333pt;}
.x0_c00426{left:0.000000pt;}
.xb_c00426{left:16.770364pt;}
.x3d_c00426{left:17.812937pt;}
.x5f_c00426{left:18.758027pt;}
.x75_c00426{left:20.987176pt;}
.x11_c00426{left:23.826333pt;}
.x3_c00426{left:24.841333pt;}
.x67_c00426{left:25.899156pt;}
.x2b_c00426{left:27.829349pt;}
.x55_c00426{left:34.536757pt;}
.x36_c00426{left:36.536201pt;}
.x2c_c00426{left:38.394143pt;}
.x6b_c00426{left:39.654212pt;}
.x18_c00426{left:40.721581pt;}
.x6a_c00426{left:43.485484pt;}
.x66_c00426{left:45.024197pt;}
.x12_c00426{left:48.918333pt;}
.x56_c00426{left:53.492428pt;}
.x1d_c00426{left:55.209828pt;}
.xc_c00426{left:56.798711pt;}
.x4_c00426{left:57.954667pt;}
.x2d_c00426{left:59.529101pt;}
.x76_c00426{left:61.254348pt;}
.x19_c00426{left:63.198915pt;}
.x45_c00426{left:64.865852pt;}
.x41_c00426{left:67.287673pt;}
.x1e_c00426{left:72.252303pt;}
.x24_c00426{left:75.994845pt;}
.x3e_c00426{left:78.075491pt;}
.x51_c00426{left:81.748924pt;}
.x6f_c00426{left:82.842635pt;}
.x49_c00426{left:84.103467pt;}
.x25_c00426{left:85.652876pt;}
.x5_c00426{left:88.429333pt;}
.x4e_c00426{left:90.648069pt;}
.x1f_c00426{left:92.969985pt;}
.x73_c00426{left:94.966741pt;}
.x13_c00426{left:96.206333pt;}
.x59_c00426{left:97.756127pt;}
.x37_c00426{left:101.250892pt;}
.x63_c00426{left:103.963892pt;}
.x4a_c00426{left:105.002268pt;}
.x5e_c00426{left:106.119489pt;}
.x6_c00426{left:108.320000pt;}
.x6c_c00426{left:109.745775pt;}
.x68_c00426{left:111.321044pt;}
.x46_c00426{left:114.101949pt;}
.xd_c00426{left:117.755192pt;}
.x14_c00426{left:121.302333pt;}
.x52_c00426{left:123.066527pt;}
.x5c_c00426{left:125.240540pt;}
.x1a_c00426{left:127.922915pt;}
.x38_c00426{left:129.824363pt;}
.x33_c00426{left:133.166303pt;}
.x1_c00426{left:136.080000pt;}
.x60_c00426{left:137.391233pt;}
.x2e_c00426{left:139.390636pt;}
.x1b_c00426{left:141.954915pt;}
.x15_c00426{left:142.949000pt;}
.x70_c00426{left:147.670175pt;}
.x39_c00426{left:148.896441pt;}
.x3f_c00426{left:149.873716pt;}
.x26_c00426{left:151.434433pt;}
.x34_c00426{left:155.822228pt;}
.x74_c00426{left:157.350456pt;}
.x2f_c00426{left:158.934619pt;}
.x6d_c00426{left:162.553819pt;}
.x64_c00426{left:163.881367pt;}
.x57_c00426{left:165.257389pt;}
.x40_c00426{left:168.115301pt;}
.x7_c00426{left:169.352000pt;}
.x42_c00426{left:171.040333pt;}
.x71_c00426{left:173.573191pt;}
.x20_c00426{left:181.037412pt;}
.x27_c00426{left:183.354864pt;}
.x3a_c00426{left:185.113700pt;}
.x4b_c00426{left:186.880179pt;}
.x65_c00426{left:188.370316pt;}
.x77_c00426{left:190.627768pt;}
.x5d_c00426{left:191.585263pt;}
.x8_c00426{left:193.884000pt;}
.x47_c00426{left:195.205641pt;}
.x28_c00426{left:198.168007pt;}
.x3b_c00426{left:199.534455pt;}
.x30_c00426{left:201.416575pt;}
.x78_c00426{left:202.513179pt;}
.xe_c00426{left:206.102088pt;}
.x53_c00426{left:207.073655pt;}
.x61_c00426{left:209.860417pt;}
.x16_c00426{left:212.381000pt;}
.x21_c00426{left:213.696796pt;}
.x5a_c00426{left:214.893937pt;}
.x29_c00426{left:216.491720pt;}
.x35_c00426{left:217.900612pt;}
.xf_c00426{left:219.811943pt;}
.x1c_c00426{left:221.924248pt;}
.x3c_c00426{left:224.039345pt;}
.x17_c00426{left:226.250333pt;}
.x62_c00426{left:227.160264pt;}
.x54_c00426{left:229.081712pt;}
.x2a_c00426{left:231.646312pt;}
.x69_c00426{left:234.020175pt;}
.x31_c00426{left:235.984907pt;}
.x4c_c00426{left:237.170612pt;}
.x43_c00426{left:238.465572pt;}
.x2_c00426{left:240.240000pt;}
.x58_c00426{left:242.635995pt;}
.x9_c00426{left:245.448000pt;}
.x4f_c00426{left:246.955831pt;}
.x10_c00426{left:248.470280pt;}
.x22_c00426{left:250.212760pt;}
.x4d_c00426{left:253.637645pt;}
.xa_c00426{left:256.744000pt;}
.x23_c00426{left:257.647176pt;}
.x32_c00426{left:258.970919pt;}
.x48_c00426{left:261.640908pt;}
.x50_c00426{left:265.687540pt;}
.x72_c00426{left:269.162955pt;}
.x6e_c00426{left:271.842680pt;}
.x5b_c00426{left:272.987393pt;}
.x44_c00426{left:274.941032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00427 {
    display:none;
  }
  .loading-indicator_c00427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00427 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00427 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00427" -> "#page-container .classname_c00427")
 */
.pf_c00427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00427 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00427 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00427 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00427 {overflow:visible;}
  }
}
.c_c00427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00427 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00427:after { /* webkit #35443 */
  content: '';
}
.t_c00427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00427 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00427 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00427 { /* info for Javascript */
  display:none;
}
.l_c00427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00427:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00427 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00427.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4b_c00427{transform:matrix(0.034330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034330,0.000000,0.000000,0.250000,0,0);}
.mc4_c00427{transform:matrix(0.041570,0.001289,-0.007746,0.249880,0,0);-ms-transform:matrix(0.041570,0.001289,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.041570,0.001289,-0.007746,0.249880,0,0);}
.m4d_c00427{transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.128015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128015,0.000000,0.000000,0.250000,0,0);}
.me9_c00427{transform:matrix(0.138109,0.004281,-0.007746,0.249880,0,0);-ms-transform:matrix(0.138109,0.004281,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.138109,0.004281,-0.007746,0.249880,0,0);}
.mad_c00427{transform:matrix(0.139493,0.004324,-0.007746,0.249880,0,0);-ms-transform:matrix(0.139493,0.004324,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.139493,0.004324,-0.007746,0.249880,0,0);}
.me6_c00427{transform:matrix(0.141392,0.004383,-0.007746,0.249880,0,0);-ms-transform:matrix(0.141392,0.004383,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.141392,0.004383,-0.007746,0.249880,0,0);}
.m7e_c00427{transform:matrix(0.142567,0.004420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.142567,0.004420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.142567,0.004420,-0.007746,0.249880,0,0);}
.m58_c00427{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.mb0_c00427{transform:matrix(0.145300,0.004504,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145300,0.004504,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145300,0.004504,-0.007746,0.249880,0,0);}
.m25_c00427{transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);}
.me2_c00427{transform:matrix(0.145520,0.004511,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145520,0.004511,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145520,0.004511,-0.007746,0.249880,0,0);}
.m9c_c00427{transform:matrix(0.145585,0.004513,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145585,0.004513,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145585,0.004513,-0.007746,0.249880,0,0);}
.me5_c00427{transform:matrix(0.145690,0.004516,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145690,0.004516,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145690,0.004516,-0.007746,0.249880,0,0);}
.m40_c00427{transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);}
.m70_c00427{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.mb7_c00427{transform:matrix(0.150493,0.004665,-0.007746,0.249880,0,0);-ms-transform:matrix(0.150493,0.004665,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.150493,0.004665,-0.007746,0.249880,0,0);}
.mb2_c00427{transform:matrix(0.152937,0.004741,-0.007746,0.249880,0,0);-ms-transform:matrix(0.152937,0.004741,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.152937,0.004741,-0.007746,0.249880,0,0);}
.m37_c00427{transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153565,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.mac_c00427{transform:matrix(0.155031,0.004806,-0.007746,0.249880,0,0);-ms-transform:matrix(0.155031,0.004806,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.155031,0.004806,-0.007746,0.249880,0,0);}
.m8a_c00427{transform:matrix(0.155685,0.004826,-0.007746,0.249880,0,0);-ms-transform:matrix(0.155685,0.004826,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.155685,0.004826,-0.007746,0.249880,0,0);}
.ma1_c00427{transform:matrix(0.155860,0.004832,-0.007746,0.249880,0,0);-ms-transform:matrix(0.155860,0.004832,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.155860,0.004832,-0.007746,0.249880,0,0);}
.m3a_c00427{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.mea_c00427{transform:matrix(0.157224,0.004874,-0.007746,0.249880,0,0);-ms-transform:matrix(0.157224,0.004874,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.157224,0.004874,-0.007746,0.249880,0,0);}
.m4_c00427{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m80_c00427{transform:matrix(0.158014,0.004898,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158014,0.004898,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158014,0.004898,-0.007746,0.249880,0,0);}
.m2_c00427{transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159860,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m6c_c00427{transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);}
.m9d_c00427{transform:matrix(0.160728,0.004983,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160728,0.004983,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160728,0.004983,-0.007746,0.249880,0,0);}
.m79_c00427{transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161365,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m5c_c00427{transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162515,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m77_c00427{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.mc8_c00427{transform:matrix(0.164666,0.005105,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164666,0.005105,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164666,0.005105,-0.007746,0.249880,0,0);}
.m53_c00427{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165165,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.me4_c00427{transform:matrix(0.165635,0.005135,-0.007746,0.249880,0,0);-ms-transform:matrix(0.165635,0.005135,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.165635,0.005135,-0.007746,0.249880,0,0);}
.m33_c00427{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m5d_c00427{transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);}
.m87_c00427{transform:matrix(0.168019,0.005209,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168019,0.005209,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168019,0.005209,-0.007746,0.249880,0,0);}
.m71_c00427{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.ma8_c00427{transform:matrix(0.169124,0.005243,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169124,0.005243,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169124,0.005243,-0.007746,0.249880,0,0);}
.m9e_c00427{transform:matrix(0.169219,0.005246,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169219,0.005246,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169219,0.005246,-0.007746,0.249880,0,0);}
.m66_c00427{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m82_c00427{transform:matrix(0.169624,0.005258,-0.007746,0.249880,0,0);-ms-transform:matrix(0.169624,0.005258,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.169624,0.005258,-0.007746,0.249880,0,0);}
.me_c00427{transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170205,0.000000,0.000000,0.250000,0,0);}
.mae_c00427{transform:matrix(0.170258,0.005278,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170258,0.005278,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170258,0.005278,-0.007746,0.249880,0,0);}
.m6d_c00427{transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170405,0.000000,0.000000,0.250000,0,0);}
.mcb_c00427{transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170758,0.005293,-0.007746,0.249880,0,0);}
.m85_c00427{transform:matrix(0.171083,0.005304,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171083,0.005304,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171083,0.005304,-0.007746,0.249880,0,0);}
.m1_c00427{transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171230,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);}
.mb9_c00427{transform:matrix(0.171443,0.005315,-0.007746,0.249880,0,0);-ms-transform:matrix(0.171443,0.005315,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.171443,0.005315,-0.007746,0.249880,0,0);}
.m15_c00427{transform:matrix(0.171590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171590,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);}
.m7b_c00427{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);}
.me3_c00427{transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);}
.m9_c00427{transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);}
.md4_c00427{transform:matrix(0.175531,0.005441,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175531,0.005441,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175531,0.005441,-0.007746,0.249880,0,0);}
.m21_c00427{transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);}
.mc5_c00427{transform:matrix(0.177180,0.005493,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177180,0.005493,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177180,0.005493,-0.007746,0.249880,0,0);}
.m69_c00427{transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178010,0.000000,0.000000,0.250000,0,0);}
.md2_c00427{transform:matrix(0.178109,0.005521,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178109,0.005521,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178109,0.005521,-0.007746,0.249880,0,0);}
.ma3_c00427{transform:matrix(0.178174,0.005523,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178174,0.005523,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178174,0.005523,-0.007746,0.249880,0,0);}
.md_c00427{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.me0_c00427{transform:matrix(0.178409,0.005531,-0.007746,0.249880,0,0);-ms-transform:matrix(0.178409,0.005531,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.178409,0.005531,-0.007746,0.249880,0,0);}
.mbe_c00427{transform:matrix(0.179114,0.005553,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179114,0.005553,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179114,0.005553,-0.007746,0.249880,0,0);}
.m18_c00427{transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);}
.mdc_c00427{transform:matrix(0.179634,0.005569,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179634,0.005569,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179634,0.005569,-0.007746,0.249880,0,0);}
.m94_c00427{transform:matrix(0.179784,0.005573,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179784,0.005573,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179784,0.005573,-0.007746,0.249880,0,0);}
.m16_c00427{transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180265,0.000000,0.000000,0.250000,0,0);}
.m8e_c00427{transform:matrix(0.180463,0.005594,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180463,0.005594,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180463,0.005594,-0.007746,0.249880,0,0);}
.m5a_c00427{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.mc2_c00427{transform:matrix(0.180778,0.005604,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180778,0.005604,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180778,0.005604,-0.007746,0.249880,0,0);}
.m43_c00427{transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180835,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.mef_c00427{transform:matrix(0.181208,0.005617,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181208,0.005617,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181208,0.005617,-0.007746,0.249880,0,0);}
.m27_c00427{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m78_c00427{transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);}
.m50_c00427{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00427{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m89_c00427{transform:matrix(0.182577,0.005660,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182577,0.005660,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182577,0.005660,-0.007746,0.249880,0,0);}
.mc1_c00427{transform:matrix(0.182587,0.005660,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182587,0.005660,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182587,0.005660,-0.007746,0.249880,0,0);}
.mc9_c00427{transform:matrix(0.182642,0.005662,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182642,0.005662,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182642,0.005662,-0.007746,0.249880,0,0);}
.m72_c00427{transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);}
.m59_c00427{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.mab_c00427{transform:matrix(0.183472,0.005688,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183472,0.005688,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183472,0.005688,-0.007746,0.249880,0,0);}
.m24_c00427{transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183485,0.000000,0.000000,0.250000,0,0);}
.m7f_c00427{transform:matrix(0.184137,0.005708,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184137,0.005708,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184137,0.005708,-0.007746,0.249880,0,0);}
.m96_c00427{transform:matrix(0.184246,0.005712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184246,0.005712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184246,0.005712,-0.007746,0.249880,0,0);}
.m2d_c00427{transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);}
.m6e_c00427{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m9f_c00427{transform:matrix(0.185876,0.005762,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185876,0.005762,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185876,0.005762,-0.007746,0.249880,0,0);}
.ma2_c00427{transform:matrix(0.187195,0.005803,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187195,0.005803,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187195,0.005803,-0.007746,0.249880,0,0);}
.m9b_c00427{transform:matrix(0.187475,0.005812,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187475,0.005812,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187475,0.005812,-0.007746,0.249880,0,0);}
.m22_c00427{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.m62_c00427{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m8f_c00427{transform:matrix(0.188270,0.005836,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188270,0.005836,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188270,0.005836,-0.007746,0.249880,0,0);}
.m90_c00427{transform:matrix(0.188355,0.005839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188355,0.005839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188355,0.005839,-0.007746,0.249880,0,0);}
.mc7_c00427{transform:matrix(0.188714,0.005850,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188714,0.005850,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188714,0.005850,-0.007746,0.249880,0,0);}
.md8_c00427{transform:matrix(0.188839,0.005854,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188839,0.005854,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188839,0.005854,-0.007746,0.249880,0,0);}
.m8_c00427{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m74_c00427{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.mde_c00427{transform:matrix(0.189349,0.005870,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189349,0.005870,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189349,0.005870,-0.007746,0.249880,0,0);}
.m38_c00427{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.mca_c00427{transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);}
.m49_c00427{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m51_c00427{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);}
.ma0_c00427{transform:matrix(0.190543,0.005907,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190543,0.005907,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190543,0.005907,-0.007746,0.249880,0,0);}
.m5e_c00427{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mcc_c00427{transform:matrix(0.190568,0.005908,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190568,0.005908,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190568,0.005908,-0.007746,0.249880,0,0);}
.m75_c00427{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m6a_c00427{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.mc6_c00427{transform:matrix(0.190993,0.005921,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190993,0.005921,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190993,0.005921,-0.007746,0.249880,0,0);}
.maa_c00427{transform:matrix(0.191218,0.005928,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191218,0.005928,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191218,0.005928,-0.007746,0.249880,0,0);}
.me7_c00427{transform:matrix(0.191773,0.005945,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191773,0.005945,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191773,0.005945,-0.007746,0.249880,0,0);}
.m4a_c00427{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.mdd_c00427{transform:matrix(0.192308,0.005962,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192308,0.005962,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192308,0.005962,-0.007746,0.249880,0,0);}
.mcf_c00427{transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192473,0.005967,-0.007746,0.249880,0,0);}
.m31_c00427{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.m95_c00427{transform:matrix(0.192917,0.005980,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192917,0.005980,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192917,0.005980,-0.007746,0.249880,0,0);}
.m5_c00427{transform:matrix(0.193020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193020,0.000000,0.000000,0.250000,0,0);}
.mf8_c00427{transform:matrix(0.193057,0.005985,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193057,0.005985,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193057,0.005985,-0.007746,0.249880,0,0);}
.m8b_c00427{transform:matrix(0.193267,0.005991,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193267,0.005991,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193267,0.005991,-0.007746,0.249880,0,0);}
.mbd_c00427{transform:matrix(0.193397,0.005995,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193397,0.005995,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193397,0.005995,-0.007746,0.249880,0,0);}
.m4c_c00427{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00427{transform:matrix(0.194452,0.006028,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194452,0.006028,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194452,0.006028,-0.007746,0.249880,0,0);}
.mc0_c00427{transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194477,0.006029,-0.007746,0.249880,0,0);}
.m34_c00427{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m76_c00427{transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194810,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m84_c00427{transform:matrix(0.195221,0.006052,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195221,0.006052,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195221,0.006052,-0.007746,0.249880,0,0);}
.md3_c00427{transform:matrix(0.195236,0.006052,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195236,0.006052,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195236,0.006052,-0.007746,0.249880,0,0);}
.m91_c00427{transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195771,0.006069,-0.007746,0.249880,0,0);}
.m1f_c00427{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m57_c00427{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196595,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.md1_c00427{transform:matrix(0.197150,0.006112,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197150,0.006112,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197150,0.006112,-0.007746,0.249880,0,0);}
.m6f_c00427{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.mf3_c00427{transform:matrix(0.197430,0.006120,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197430,0.006120,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197430,0.006120,-0.007746,0.249880,0,0);}
.md0_c00427{transform:matrix(0.198110,0.006141,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198110,0.006141,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198110,0.006141,-0.007746,0.249880,0,0);}
.med_c00427{transform:matrix(0.198460,0.006152,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198460,0.006152,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198460,0.006152,-0.007746,0.249880,0,0);}
.meb_c00427{transform:matrix(0.198615,0.006157,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198615,0.006157,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198615,0.006157,-0.007746,0.249880,0,0);}
.m44_c00427{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00427{transform:matrix(0.199174,0.006174,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199174,0.006174,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199174,0.006174,-0.007746,0.249880,0,0);}
.m8d_c00427{transform:matrix(0.199479,0.006184,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199479,0.006184,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199479,0.006184,-0.007746,0.249880,0,0);}
.m36_c00427{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mda_c00427{transform:matrix(0.199644,0.006189,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199644,0.006189,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199644,0.006189,-0.007746,0.249880,0,0);}
.me1_c00427{transform:matrix(0.200679,0.006221,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200679,0.006221,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200679,0.006221,-0.007746,0.249880,0,0);}
.m7d_c00427{transform:matrix(0.201173,0.006236,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201173,0.006236,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201173,0.006236,-0.007746,0.249880,0,0);}
.m52_c00427{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.mb8_c00427{transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201928,0.006260,-0.007746,0.249880,0,0);}
.m4f_c00427{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202445,0.000000,0.000000,0.250000,0,0);}
.m83_c00427{transform:matrix(0.202593,0.006280,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202593,0.006280,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202593,0.006280,-0.007746,0.249880,0,0);}
.m93_c00427{transform:matrix(0.202618,0.006281,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202618,0.006281,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202618,0.006281,-0.007746,0.249880,0,0);}
.m1e_c00427{transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202960,0.000000,0.000000,0.250000,0,0);}
.ma5_c00427{transform:matrix(0.202962,0.006292,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202962,0.006292,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202962,0.006292,-0.007746,0.249880,0,0);}
.m1d_c00427{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m7a_c00427{transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);}
.m92_c00427{transform:matrix(0.204347,0.006335,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204347,0.006335,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204347,0.006335,-0.007746,0.249880,0,0);}
.mf1_c00427{transform:matrix(0.204492,0.006339,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204492,0.006339,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204492,0.006339,-0.007746,0.249880,0,0);}
.mb1_c00427{transform:matrix(0.204702,0.006346,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204702,0.006346,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204702,0.006346,-0.007746,0.249880,0,0);}
.m7_c00427{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m3b_c00427{transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);}
.m54_c00427{transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);}
.ma9_c00427{transform:matrix(0.206121,0.006390,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206121,0.006390,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206121,0.006390,-0.007746,0.249880,0,0);}
.mcd_c00427{transform:matrix(0.206506,0.006402,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206506,0.006402,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206506,0.006402,-0.007746,0.249880,0,0);}
.m35_c00427{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m5f_c00427{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.mbf_c00427{transform:matrix(0.207630,0.006437,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207630,0.006437,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207630,0.006437,-0.007746,0.249880,0,0);}
.mb5_c00427{transform:matrix(0.208235,0.006455,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208235,0.006455,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208235,0.006455,-0.007746,0.249880,0,0);}
.m88_c00427{transform:matrix(0.208375,0.006460,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208375,0.006460,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208375,0.006460,-0.007746,0.249880,0,0);}
.m4e_c00427{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.md5_c00427{transform:matrix(0.209684,0.006500,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209684,0.006500,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209684,0.006500,-0.007746,0.249880,0,0);}
.mf6_c00427{transform:matrix(0.210524,0.006526,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210524,0.006526,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210524,0.006526,-0.007746,0.249880,0,0);}
.mbb_c00427{transform:matrix(0.210584,0.006528,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210584,0.006528,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210584,0.006528,-0.007746,0.249880,0,0);}
.mee_c00427{transform:matrix(0.211453,0.006555,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211453,0.006555,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211453,0.006555,-0.007746,0.249880,0,0);}
.m97_c00427{transform:matrix(0.211793,0.006566,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211793,0.006566,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211793,0.006566,-0.007746,0.249880,0,0);}
.ma6_c00427{transform:matrix(0.212368,0.006583,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212368,0.006583,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212368,0.006583,-0.007746,0.249880,0,0);}
.m86_c00427{transform:matrix(0.212583,0.006590,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212583,0.006590,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212583,0.006590,-0.007746,0.249880,0,0);}
.m6b_c00427{transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00427{transform:matrix(0.213148,0.006608,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213148,0.006608,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213148,0.006608,-0.007746,0.249880,0,0);}
.mec_c00427{transform:matrix(0.213852,0.006629,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213852,0.006629,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213852,0.006629,-0.007746,0.249880,0,0);}
.m20_c00427{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00427{transform:matrix(0.214527,0.006650,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214527,0.006650,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214527,0.006650,-0.007746,0.249880,0,0);}
.mf7_c00427{transform:matrix(0.214692,0.006655,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214692,0.006655,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214692,0.006655,-0.007746,0.249880,0,0);}
.m9a_c00427{transform:matrix(0.215002,0.006665,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215002,0.006665,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215002,0.006665,-0.007746,0.249880,0,0);}
.mc_c00427{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.ma4_c00427{transform:matrix(0.215227,0.006672,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215227,0.006672,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215227,0.006672,-0.007746,0.249880,0,0);}
.mce_c00427{transform:matrix(0.215811,0.006690,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215811,0.006690,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215811,0.006690,-0.007746,0.249880,0,0);}
.md9_c00427{transform:matrix(0.218525,0.006774,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218525,0.006774,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218525,0.006774,-0.007746,0.249880,0,0);}
.m98_c00427{transform:matrix(0.218930,0.006787,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218930,0.006787,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218930,0.006787,-0.007746,0.249880,0,0);}
.mf2_c00427{transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);}
.m68_c00427{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.md7_c00427{transform:matrix(0.219774,0.006813,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219774,0.006813,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219774,0.006813,-0.007746,0.249880,0,0);}
.m1a_c00427{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m81_c00427{transform:matrix(0.220144,0.006824,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220144,0.006824,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220144,0.006824,-0.007746,0.249880,0,0);}
.mbc_c00427{transform:matrix(0.220644,0.006840,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220644,0.006840,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220644,0.006840,-0.007746,0.249880,0,0);}
.mf0_c00427{transform:matrix(0.220734,0.006843,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220734,0.006843,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220734,0.006843,-0.007746,0.249880,0,0);}
.m99_c00427{transform:matrix(0.221863,0.006878,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221863,0.006878,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221863,0.006878,-0.007746,0.249880,0,0);}
.m61_c00427{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.md6_c00427{transform:matrix(0.225222,0.006982,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225222,0.006982,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225222,0.006982,-0.007746,0.249880,0,0);}
.m64_c00427{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.mf5_c00427{transform:matrix(0.227311,0.007047,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227311,0.007047,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227311,0.007047,-0.007746,0.249880,0,0);}
.mdf_c00427{transform:matrix(0.228745,0.007091,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228745,0.007091,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228745,0.007091,-0.007746,0.249880,0,0);}
.m41_c00427{transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229805,0.000000,0.000000,0.250000,0,0);}
.mb4_c00427{transform:matrix(0.231669,0.007182,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231669,0.007182,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231669,0.007182,-0.007746,0.249880,0,0);}
.mb6_c00427{transform:matrix(0.234877,0.007281,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234877,0.007281,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234877,0.007281,-0.007746,0.249880,0,0);}
.m1c_c00427{transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237270,0.000000,0.000000,0.250000,0,0);}
.m65_c00427{transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240945,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);}
.m60_c00427{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m55_c00427{transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);}
.mdb_c00427{transform:matrix(0.245127,0.007599,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245127,0.007599,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245127,0.007599,-0.007746,0.249880,0,0);}
.maf_c00427{transform:matrix(0.254353,0.007885,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254353,0.007885,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254353,0.007885,-0.007746,0.249880,0,0);}
.m56_c00427{transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);}
.m63_c00427{transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);}
.mf4_c00427{transform:matrix(0.266722,0.008268,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266722,0.008268,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266722,0.008268,-0.007746,0.249880,0,0);}
.me8_c00427{transform:matrix(0.306193,0.009492,-0.007746,0.249880,0,0);-ms-transform:matrix(0.306193,0.009492,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.306193,0.009492,-0.007746,0.249880,0,0);}
.mba_c00427{transform:matrix(0.326673,0.010127,-0.007746,0.249880,0,0);-ms-transform:matrix(0.326673,0.010127,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.326673,0.010127,-0.007746,0.249880,0,0);}
.v1_c00427{vertical-align:-5.532000px;}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:0.000000px;}
._0_c00427{width:10.945278px;}
.fc0_c00427{color:transparent;}
.fs8_c00427{font-size:55.650000px;}
.fs12_c00427{font-size:58.828247px;}
.fs11_c00427{font-size:59.878751px;}
.fs14_c00427{font-size:60.929255px;}
.fs7_c00427{font-size:63.000000px;}
.fsc_c00427{font-size:63.030264px;}
.fs6_c00427{font-size:64.050000px;}
.fse_c00427{font-size:64.080769px;}
.fsb_c00427{font-size:65.131273px;}
.fs4_c00427{font-size:66.150000px;}
.fs10_c00427{font-size:66.181777px;}
.fs1_c00427{font-size:67.200000px;}
.fsd_c00427{font-size:67.232282px;}
.fs2_c00427{font-size:68.250000px;}
.fsa_c00427{font-size:68.282786px;}
.fs9_c00427{font-size:69.300000px;}
.fs5_c00427{font-size:70.350000px;}
.fs3_c00427{font-size:71.400000px;}
.fs13_c00427{font-size:72.484804px;}
.fsf_c00427{font-size:74.585813px;}
.fs0_c00427{font-size:120.750000px;}
.y0_c00427{bottom:0.000000px;}
.yfb_c00427{bottom:24.957576px;}
.yfa_c00427{bottom:25.723409px;}
.yf9_c00427{bottom:26.509014px;}
.yf8_c00427{bottom:27.844530px;}
.yf7_c00427{bottom:29.223545px;}
.yf6_c00427{bottom:29.472723px;}
.yf5_c00427{bottom:31.007073px;}
.yf4_c00427{bottom:32.001056px;}
.yf3_c00427{bottom:43.171590px;}
.yf2_c00427{bottom:45.284274px;}
.yf1_c00427{bottom:46.652265px;}
.yf0_c00427{bottom:47.312994px;}
.yef_c00427{bottom:48.632871px;}
.yee_c00427{bottom:49.061051px;}
.yed_c00427{bottom:50.641295px;}
.yec_c00427{bottom:60.109332px;}
.yeb_c00427{bottom:61.301471px;}
.yea_c00427{bottom:61.615967px;}
.ye9_c00427{bottom:63.742932px;}
.ye8_c00427{bottom:64.362705px;}
.ye7_c00427{bottom:64.987175px;}
.ye6_c00427{bottom:67.068686px;}
.ye5_c00427{bottom:69.014729px;}
.ye4_c00427{bottom:75.562707px;}
.ye3_c00427{bottom:76.958330px;}
.ye2_c00427{bottom:79.095356px;}
.ye1_c00427{bottom:80.473611px;}
.ye0_c00427{bottom:81.073683px;}
.ydf_c00427{bottom:82.372101px;}
.yde_c00427{bottom:83.328734px;}
.ydd_c00427{bottom:94.965459px;}
.ydc_c00427{bottom:95.992406px;}
.ydb_c00427{bottom:98.647115px;}
.yda_c00427{bottom:99.149504px;}
.yd9_c00427{bottom:99.532680px;}
.yd8_c00427{bottom:101.602092px;}
.yd7_c00427{bottom:102.776546px;}
.yd6_c00427{bottom:111.006218px;}
.yd5_c00427{bottom:112.287096px;}
.yd4_c00427{bottom:113.686188px;}
.yd3_c00427{bottom:114.559974px;}
.yd2_c00427{bottom:116.171279px;}
.yd1_c00427{bottom:116.779482px;}
.yd0_c00427{bottom:118.602872px;}
.ycf_c00427{bottom:119.259551px;}
.yce_c00427{bottom:128.455782px;}
.ycd_c00427{bottom:129.047013px;}
.ycc_c00427{bottom:129.678827px;}
.ycb_c00427{bottom:131.841849px;}
.yca_c00427{bottom:132.612894px;}
.yc9_c00427{bottom:134.122539px;}
.yc8_c00427{bottom:135.467331px;}
.yc7_c00427{bottom:147.744260px;}
.yc6_c00427{bottom:151.220582px;}
.yc5_c00427{bottom:153.831804px;}
.yc4_c00427{bottom:161.848013px;}
.yc3_c00427{bottom:163.797753px;}
.yc2_c00427{bottom:164.374244px;}
.yc1_c00427{bottom:164.989596px;}
.yc0_c00427{bottom:166.119618px;}
.ybf_c00427{bottom:166.667430px;}
.ybe_c00427{bottom:167.900333px;}
.ybd_c00427{bottom:168.318864px;}
.ybc_c00427{bottom:170.316720px;}
.ybb_c00427{bottom:178.322253px;}
.yba_c00427{bottom:179.061206px;}
.yb9_c00427{bottom:180.928536px;}
.yb8_c00427{bottom:181.566732px;}
.yb7_c00427{bottom:184.049729px;}
.yb6_c00427{bottom:184.797807px;}
.yb5_c00427{bottom:186.102995px;}
.yb4_c00427{bottom:187.878962px;}
.yb3_c00427{bottom:197.882067px;}
.yb2_c00427{bottom:199.243405px;}
.yb1_c00427{bottom:199.685913px;}
.yb0_c00427{bottom:200.100941px;}
.yaf_c00427{bottom:201.850744px;}
.yae_c00427{bottom:202.345992px;}
.yad_c00427{bottom:203.809323px;}
.yac_c00427{bottom:213.655580px;}
.yab_c00427{bottom:215.619692px;}
.yaa_c00427{bottom:216.960287px;}
.ya9_c00427{bottom:217.660938px;}
.ya8_c00427{bottom:219.897096px;}
.ya7_c00427{bottom:220.696389px;}
.ya6_c00427{bottom:223.264604px;}
.ya5_c00427{bottom:229.944984px;}
.ya4_c00427{bottom:231.535574px;}
.ya3_c00427{bottom:234.662486px;}
.ya2_c00427{bottom:235.545767px;}
.ya1_c00427{bottom:236.547917px;}
.ya0_c00427{bottom:237.244193px;}
.y9f_c00427{bottom:238.384766px;}
.y9e_c00427{bottom:239.093423px;}
.y9d_c00427{bottom:239.736594px;}
.y9c_c00427{bottom:249.372476px;}
.y9b_c00427{bottom:249.977849px;}
.y9a_c00427{bottom:251.797827px;}
.y99_c00427{bottom:252.212751px;}
.y98_c00427{bottom:253.561205px;}
.y97_c00427{bottom:254.310609px;}
.y96_c00427{bottom:256.213880px;}
.y95_c00427{bottom:266.042658px;}
.y94_c00427{bottom:266.345828px;}
.y93_c00427{bottom:267.901814px;}
.y92_c00427{bottom:268.434444px;}
.y91_c00427{bottom:269.864610px;}
.y90_c00427{bottom:271.163307px;}
.y8f_c00427{bottom:271.745666px;}
.y8e_c00427{bottom:272.299301px;}
.y8d_c00427{bottom:272.961366px;}
.y8c_c00427{bottom:281.379233px;}
.y8b_c00427{bottom:282.004077px;}
.y8a_c00427{bottom:282.995382px;}
.y89_c00427{bottom:283.397798px;}
.y88_c00427{bottom:284.467454px;}
.y87_c00427{bottom:286.839459px;}
.y86_c00427{bottom:287.593316px;}
.y85_c00427{bottom:289.442019px;}
.y84_c00427{bottom:298.967781px;}
.y83_c00427{bottom:299.825055px;}
.y82_c00427{bottom:301.787867px;}
.y81_c00427{bottom:302.402783px;}
.y80_c00427{bottom:304.289009px;}
.y7f_c00427{bottom:304.849008px;}
.y7e_c00427{bottom:306.462000px;}
.y7d_c00427{bottom:314.485500px;}
.y7c_c00427{bottom:319.161000px;}
.y7b_c00427{bottom:320.397000px;}
.y7a_c00427{bottom:321.084000px;}
.y79_c00427{bottom:322.017000px;}
.y78_c00427{bottom:322.584000px;}
.y77_c00427{bottom:324.007500px;}
.y76_c00427{bottom:333.313500px;}
.y75_c00427{bottom:333.882000px;}
.y74_c00427{bottom:334.581000px;}
.y73_c00427{bottom:336.058500px;}
.y72_c00427{bottom:337.104000px;}
.y71_c00427{bottom:337.663500px;}
.y70_c00427{bottom:338.059500px;}
.y6f_c00427{bottom:339.012000px;}
.y6e_c00427{bottom:340.471500px;}
.y6d_c00427{bottom:349.539000px;}
.y6c_c00427{bottom:351.489000px;}
.y6b_c00427{bottom:352.182000px;}
.y6a_c00427{bottom:353.035500px;}
.y69_c00427{bottom:355.485000px;}
.y68_c00427{bottom:357.447000px;}
.y67_c00427{bottom:358.297500px;}
.y66_c00427{bottom:367.233000px;}
.y65_c00427{bottom:368.449500px;}
.y64_c00427{bottom:370.957500px;}
.y63_c00427{bottom:371.494500px;}
.y62_c00427{bottom:372.381000px;}
.y61_c00427{bottom:376.117500px;}
.y60_c00427{bottom:384.333000px;}
.y5f_c00427{bottom:385.065000px;}
.y5e_c00427{bottom:386.409000px;}
.y5d_c00427{bottom:387.049500px;}
.y5c_c00427{bottom:387.774000px;}
.y5b_c00427{bottom:389.773500px;}
.y5a_c00427{bottom:391.560000px;}
.y59_c00427{bottom:392.152500px;}
.y58_c00427{bottom:393.123000px;}
.y57_c00427{bottom:399.571500px;}
.y56_c00427{bottom:400.237500px;}
.y55_c00427{bottom:403.039500px;}
.y54_c00427{bottom:403.762500px;}
.y53_c00427{bottom:405.051000px;}
.y52_c00427{bottom:406.503000px;}
.y51_c00427{bottom:407.142000px;}
.y50_c00427{bottom:407.851500px;}
.y4f_c00427{bottom:409.602000px;}
.y4e_c00427{bottom:409.890000px;}
.y4d_c00427{bottom:410.673000px;}
.y4c_c00427{bottom:416.962500px;}
.y4b_c00427{bottom:418.902000px;}
.y4a_c00427{bottom:420.888000px;}
.y49_c00427{bottom:421.449000px;}
.y48_c00427{bottom:422.782500px;}
.y47_c00427{bottom:423.744000px;}
.y46_c00427{bottom:424.387500px;}
.y45_c00427{bottom:426.876000px;}
.y44_c00427{bottom:435.226500px;}
.y43_c00427{bottom:435.783000px;}
.y42_c00427{bottom:438.382500px;}
.y41_c00427{bottom:438.975000px;}
.y40_c00427{bottom:439.446000px;}
.y3f_c00427{bottom:440.851500px;}
.y3e_c00427{bottom:441.793500px;}
.y3d_c00427{bottom:442.404000px;}
.y3c_c00427{bottom:444.426000px;}
.y3b_c00427{bottom:451.096500px;}
.y3a_c00427{bottom:451.732500px;}
.y39_c00427{bottom:453.673500px;}
.y38_c00427{bottom:454.348500px;}
.y37_c00427{bottom:454.806000px;}
.y36_c00427{bottom:455.272500px;}
.y35_c00427{bottom:457.687500px;}
.y34_c00427{bottom:458.521500px;}
.y33_c00427{bottom:459.259500px;}
.y32_c00427{bottom:461.166000px;}
.y31_c00427{bottom:469.009500px;}
.y30_c00427{bottom:471.033000px;}
.y2f_c00427{bottom:471.915000px;}
.y2e_c00427{bottom:473.601000px;}
.y2d_c00427{bottom:474.211500px;}
.y2c_c00427{bottom:475.660500px;}
.y2b_c00427{bottom:476.356500px;}
.y2a_c00427{bottom:477.904500px;}
.y29_c00427{bottom:486.021000px;}
.y28_c00427{bottom:487.077000px;}
.y27_c00427{bottom:488.889000px;}
.y26_c00427{bottom:489.597000px;}
.y25_c00427{bottom:490.678500px;}
.y24_c00427{bottom:492.006000px;}
.y23_c00427{bottom:492.652500px;}
.y22_c00427{bottom:494.104500px;}
.y21_c00427{bottom:503.305500px;}
.y20_c00427{bottom:504.127500px;}
.y1f_c00427{bottom:505.603500px;}
.y1e_c00427{bottom:505.978500px;}
.y1d_c00427{bottom:507.423000px;}
.y1c_c00427{bottom:507.954000px;}
.y1b_c00427{bottom:509.074500px;}
.y1a_c00427{bottom:510.577500px;}
.y19_c00427{bottom:520.624500px;}
.y18_c00427{bottom:521.154000px;}
.y17_c00427{bottom:521.698500px;}
.y16_c00427{bottom:522.604500px;}
.y15_c00427{bottom:523.363500px;}
.y14_c00427{bottom:525.417000px;}
.y13_c00427{bottom:525.879000px;}
.y12_c00427{bottom:526.245000px;}
.y11_c00427{bottom:527.587500px;}
.y10_c00427{bottom:537.186000px;}
.yf_c00427{bottom:537.754500px;}
.ye_c00427{bottom:539.308500px;}
.yd_c00427{bottom:540.706500px;}
.yc_c00427{bottom:541.248000px;}
.yb_c00427{bottom:543.456000px;}
.ya_c00427{bottom:544.599000px;}
.y9_c00427{bottom:554.053500px;}
.y8_c00427{bottom:556.153500px;}
.y7_c00427{bottom:557.113500px;}
.y6_c00427{bottom:559.294500px;}
.y5_c00427{bottom:559.936500px;}
.y4_c00427{bottom:560.493000px;}
.y3_c00427{bottom:561.120000px;}
.y2_c00427{bottom:561.876000px;}
.y1_c00427{bottom:569.560500px;}
.h9_c00427{height:55.650000px;}
.h13_c00427{height:58.828247px;}
.h12_c00427{height:59.878751px;}
.h15_c00427{height:60.929255px;}
.h8_c00427{height:63.000000px;}
.hd_c00427{height:63.030264px;}
.h7_c00427{height:64.050000px;}
.hf_c00427{height:64.080769px;}
.hc_c00427{height:65.131273px;}
.h5_c00427{height:66.150000px;}
.h11_c00427{height:66.181777px;}
.h2_c00427{height:67.200000px;}
.he_c00427{height:67.232282px;}
.h3_c00427{height:68.250000px;}
.hb_c00427{height:68.282786px;}
.ha_c00427{height:69.300000px;}
.h6_c00427{height:70.350000px;}
.h4_c00427{height:71.400000px;}
.h14_c00427{height:72.484804px;}
.h10_c00427{height:74.585813px;}
.h1_c00427{height:120.750000px;}
.h0_c00427{height:608.250000px;}
.w0_c00427{width:359.100000px;}
.w1_c00427{width:359.250000px;}
.x0_c00427{left:0.000000px;}
.x83_c00427{left:30.642024px;}
.x7f_c00427{left:31.698067px;}
.x76_c00427{left:32.793213px;}
.x6a_c00427{left:36.067383px;}
.x5b_c00427{left:37.757661px;}
.x4f_c00427{left:39.070500px;}
.x46_c00427{left:40.129500px;}
.x30_c00427{left:41.209500px;}
.x1e_c00427{left:42.325500px;}
.x10_c00427{left:43.387500px;}
.x2_c00427{left:44.586000px;}
.x77_c00427{left:54.702911px;}
.x64_c00427{left:57.516233px;}
.x73_c00427{left:59.004837px;}
.x3d_c00427{left:63.912000px;}
.x5c_c00427{left:65.314113px;}
.x4b_c00427{left:67.668000px;}
.x3_c00427{left:70.660500px;}
.x3e_c00427{left:71.922000px;}
.x7b_c00427{left:73.639072px;}
.x85_c00427{left:75.003037px;}
.x65_c00427{left:77.760722px;}
.x50_c00427{left:83.575500px;}
.xa_c00427{left:84.979500px;}
.x6c_c00427{left:86.190636px;}
.x43_c00427{left:88.152000px;}
.x84_c00427{left:89.173278px;}
.x80_c00427{left:90.647394px;}
.x4_c00427{left:92.257500px;}
.x18_c00427{left:95.202000px;}
.x28_c00427{left:96.798000px;}
.x51_c00427{left:101.298000px;}
.x31_c00427{left:102.504000px;}
.x11_c00427{left:104.389500px;}
.x68_c00427{left:108.173607px;}
.x66_c00427{left:110.339676px;}
.x5_c00427{left:111.435000px;}
.x5d_c00427{left:112.662890px;}
.x1f_c00427{left:114.679500px;}
.x70_c00427{left:115.757282px;}
.x29_c00427{left:117.879000px;}
.x37_c00427{left:119.514000px;}
.x12_c00427{left:120.877500px;}
.x6d_c00427{left:123.498533px;}
.x57_c00427{left:128.271369px;}
.x52_c00427{left:130.462500px;}
.x4d_c00427{left:132.537000px;}
.x6_c00427{left:133.572000px;}
.x78_c00427{left:135.708375px;}
.x7d_c00427{left:138.497988px;}
.x38_c00427{left:139.629000px;}
.x2a_c00427{left:141.694500px;}
.x6e_c00427{left:144.869382px;}
.x86_c00427{left:146.339790px;}
.x4e_c00427{left:147.766500px;}
.x32_c00427{left:149.523000px;}
.x19_c00427{left:152.155500px;}
.x74_c00427{left:154.134767px;}
.x47_c00427{left:156.918000px;}
.x3f_c00427{left:158.020500px;}
.x71_c00427{left:159.403610px;}
.x20_c00427{left:160.467000px;}
.x24_c00427{left:161.959500px;}
.xb_c00427{left:163.818000px;}
.x5e_c00427{left:166.761608px;}
.x39_c00427{left:169.654500px;}
.x81_c00427{left:172.657825px;}
.x62_c00427{left:175.412231px;}
.x6b_c00427{left:178.747017px;}
.x75_c00427{left:179.830557px;}
.x1_c00427{left:181.170000px;}
.xc_c00427{left:183.139500px;}
.x48_c00427{left:184.612500px;}
.x79_c00427{left:189.429549px;}
.x53_c00427{left:190.542000px;}
.x33_c00427{left:192.099000px;}
.x13_c00427{left:194.239500px;}
.x21_c00427{left:197.758500px;}
.x1a_c00427{left:201.949500px;}
.x34_c00427{left:206.394000px;}
.x7_c00427{left:208.780500px;}
.x2b_c00427{left:210.696000px;}
.x69_c00427{left:211.935018px;}
.x1b_c00427{left:214.860000px;}
.x7a_c00427{left:218.536432px;}
.x14_c00427{left:221.359500px;}
.x2c_c00427{left:224.028000px;}
.x5f_c00427{left:226.360535px;}
.x3a_c00427{left:228.900000px;}
.xd_c00427{left:233.043000px;}
.x40_c00427{left:234.148500px;}
.x25_c00427{left:236.077500px;}
.x2d_c00427{left:237.114000px;}
.x8_c00427{left:241.869000px;}
.x4c_c00427{left:243.174000px;}
.x44_c00427{left:244.264500px;}
.x58_c00427{left:246.945216px;}
.x60_c00427{left:248.530824px;}
.x63_c00427{left:252.494520px;}
.x15_c00427{left:253.734000px;}
.x87_c00427{left:254.925471px;}
.x2e_c00427{left:256.389000px;}
.x59_c00427{left:260.846600px;}
.x26_c00427{left:264.528000px;}
.x1c_c00427{left:265.741500px;}
.x7c_c00427{left:267.092569px;}
.x7e_c00427{left:268.700624px;}
.x16_c00427{left:273.166500px;}
.x55_c00427{left:277.701000px;}
.x49_c00427{left:279.780000px;}
.x22_c00427{left:284.658000px;}
.x88_c00427{left:286.321783px;}
.x6f_c00427{left:287.384712px;}
.xe_c00427{left:288.552000px;}
.x3b_c00427{left:290.962500px;}
.x17_c00427{left:292.066500px;}
.x1d_c00427{left:294.075000px;}
.x82_c00427{left:301.532827px;}
.x35_c00427{left:303.112500px;}
.x56_c00427{left:305.355000px;}
.x45_c00427{left:307.177500px;}
.xf_c00427{left:308.877000px;}
.x2f_c00427{left:311.860500px;}
.x9_c00427{left:314.286000px;}
.x5a_c00427{left:316.564541px;}
.x4a_c00427{left:317.785500px;}
.x67_c00427{left:318.917369px;}
.x36_c00427{left:319.977000px;}
.x23_c00427{left:321.054000px;}
.x72_c00427{left:324.916853px;}
.x61_c00427{left:325.988111px;}
.x27_c00427{left:329.805000px;}
.x41_c00427{left:332.041500px;}
.x54_c00427{left:336.643500px;}
.x42_c00427{left:350.541000px;}
.x3c_c00427{left:351.559500px;}
@media print{
.v1_c00427{vertical-align:-4.917333pt;}
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
._0_c00427{width:9.729136pt;}
.fs8_c00427{font-size:49.466667pt;}
.fs12_c00427{font-size:52.291775pt;}
.fs11_c00427{font-size:53.225556pt;}
.fs14_c00427{font-size:54.159338pt;}
.fs7_c00427{font-size:56.000000pt;}
.fsc_c00427{font-size:56.026902pt;}
.fs6_c00427{font-size:56.933333pt;}
.fse_c00427{font-size:56.960683pt;}
.fsb_c00427{font-size:57.894465pt;}
.fs4_c00427{font-size:58.800000pt;}
.fs10_c00427{font-size:58.828247pt;}
.fs1_c00427{font-size:59.733333pt;}
.fsd_c00427{font-size:59.762028pt;}
.fs2_c00427{font-size:60.666667pt;}
.fsa_c00427{font-size:60.695810pt;}
.fs9_c00427{font-size:61.600000pt;}
.fs5_c00427{font-size:62.533333pt;}
.fs3_c00427{font-size:63.466667pt;}
.fs13_c00427{font-size:64.430937pt;}
.fsf_c00427{font-size:66.298500pt;}
.fs0_c00427{font-size:107.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.yfb_c00427{bottom:22.184512pt;}
.yfa_c00427{bottom:22.865252pt;}
.yf9_c00427{bottom:23.563568pt;}
.yf8_c00427{bottom:24.750693pt;}
.yf7_c00427{bottom:25.976484pt;}
.yf6_c00427{bottom:26.197976pt;}
.yf5_c00427{bottom:27.561843pt;}
.yf4_c00427{bottom:28.445383pt;}
.yf3_c00427{bottom:38.374747pt;}
.yf2_c00427{bottom:40.252688pt;}
.yf1_c00427{bottom:41.468680pt;}
.yf0_c00427{bottom:42.055995pt;}
.yef_c00427{bottom:43.229219pt;}
.yee_c00427{bottom:43.609823pt;}
.yed_c00427{bottom:45.014484pt;}
.yec_c00427{bottom:53.430517pt;}
.yeb_c00427{bottom:54.490196pt;}
.yea_c00427{bottom:54.769748pt;}
.ye9_c00427{bottom:56.660384pt;}
.ye8_c00427{bottom:57.211293pt;}
.ye7_c00427{bottom:57.766377pt;}
.ye6_c00427{bottom:59.616609pt;}
.ye5_c00427{bottom:61.346425pt;}
.ye4_c00427{bottom:67.166851pt;}
.ye3_c00427{bottom:68.407404pt;}
.ye2_c00427{bottom:70.306983pt;}
.ye1_c00427{bottom:71.532099pt;}
.ye0_c00427{bottom:72.065496pt;}
.ydf_c00427{bottom:73.219645pt;}
.yde_c00427{bottom:74.069985pt;}
.ydd_c00427{bottom:84.413741pt;}
.ydc_c00427{bottom:85.326583pt;}
.ydb_c00427{bottom:87.686324pt;}
.yda_c00427{bottom:88.132892pt;}
.yd9_c00427{bottom:88.473493pt;}
.yd8_c00427{bottom:90.312971pt;}
.yd7_c00427{bottom:91.356929pt;}
.yd6_c00427{bottom:98.672193pt;}
.yd5_c00427{bottom:99.810752pt;}
.yd4_c00427{bottom:101.054389pt;}
.yd3_c00427{bottom:101.831088pt;}
.yd2_c00427{bottom:103.263359pt;}
.yd1_c00427{bottom:103.803984pt;}
.yd0_c00427{bottom:105.424775pt;}
.ycf_c00427{bottom:106.008489pt;}
.yce_c00427{bottom:114.182917pt;}
.ycd_c00427{bottom:114.708456pt;}
.ycc_c00427{bottom:115.270068pt;}
.ycb_c00427{bottom:117.192755pt;}
.yca_c00427{bottom:117.878128pt;}
.yc9_c00427{bottom:119.220035pt;}
.yc8_c00427{bottom:120.415405pt;}
.yc7_c00427{bottom:131.328231pt;}
.yc6_c00427{bottom:134.418295pt;}
.yc5_c00427{bottom:136.739381pt;}
.yc4_c00427{bottom:143.864900pt;}
.yc3_c00427{bottom:145.598003pt;}
.yc2_c00427{bottom:146.110439pt;}
.yc1_c00427{bottom:146.657419pt;}
.yc0_c00427{bottom:147.661883pt;}
.ybf_c00427{bottom:148.148827pt;}
.ybe_c00427{bottom:149.244740pt;}
.ybd_c00427{bottom:149.616768pt;}
.ybc_c00427{bottom:151.392640pt;}
.ybb_c00427{bottom:158.508669pt;}
.yba_c00427{bottom:159.165516pt;}
.yb9_c00427{bottom:160.825365pt;}
.yb8_c00427{bottom:161.392651pt;}
.yb7_c00427{bottom:163.599759pt;}
.yb6_c00427{bottom:164.264717pt;}
.yb5_c00427{bottom:165.424884pt;}
.yb4_c00427{bottom:167.003521pt;}
.yb3_c00427{bottom:175.895171pt;}
.yb2_c00427{bottom:177.105249pt;}
.yb1_c00427{bottom:177.498589pt;}
.yb0_c00427{bottom:177.867503pt;}
.yaf_c00427{bottom:179.422884pt;}
.yae_c00427{bottom:179.863104pt;}
.yad_c00427{bottom:181.163843pt;}
.yac_c00427{bottom:189.916071pt;}
.yab_c00427{bottom:191.661948pt;}
.yaa_c00427{bottom:192.853588pt;}
.ya9_c00427{bottom:193.476389pt;}
.ya8_c00427{bottom:195.464085pt;}
.ya7_c00427{bottom:196.174568pt;}
.ya6_c00427{bottom:198.457425pt;}
.ya5_c00427{bottom:204.395541pt;}
.ya4_c00427{bottom:205.809399pt;}
.ya3_c00427{bottom:208.588876pt;}
.ya2_c00427{bottom:209.374015pt;}
.ya1_c00427{bottom:210.264815pt;}
.ya0_c00427{bottom:210.883727pt;}
.y9f_c00427{bottom:211.897569pt;}
.y9e_c00427{bottom:212.527487pt;}
.y9d_c00427{bottom:213.099195pt;}
.y9c_c00427{bottom:221.664423pt;}
.y9b_c00427{bottom:222.202532pt;}
.y9a_c00427{bottom:223.820291pt;}
.y99_c00427{bottom:224.189112pt;}
.y98_c00427{bottom:225.387737pt;}
.y97_c00427{bottom:226.053875pt;}
.y96_c00427{bottom:227.745671pt;}
.y95_c00427{bottom:236.482363pt;}
.y94_c00427{bottom:236.751847pt;}
.y93_c00427{bottom:238.134945pt;}
.y92_c00427{bottom:238.608395pt;}
.y91_c00427{bottom:239.879653pt;}
.y90_c00427{bottom:241.034051pt;}
.y8f_c00427{bottom:241.551703pt;}
.y8e_c00427{bottom:242.043823pt;}
.y8d_c00427{bottom:242.632325pt;}
.y8c_c00427{bottom:250.114873pt;}
.y8b_c00427{bottom:250.670291pt;}
.y8a_c00427{bottom:251.551451pt;}
.y89_c00427{bottom:251.909153pt;}
.y88_c00427{bottom:252.859959pt;}
.y87_c00427{bottom:254.968408pt;}
.y86_c00427{bottom:255.638503pt;}
.y85_c00427{bottom:257.281795pt;}
.y84_c00427{bottom:265.749139pt;}
.y83_c00427{bottom:266.511160pt;}
.y82_c00427{bottom:268.255881pt;}
.y81_c00427{bottom:268.802473pt;}
.y80_c00427{bottom:270.479119pt;}
.y7f_c00427{bottom:270.976896pt;}
.y7e_c00427{bottom:272.410667pt;}
.y7d_c00427{bottom:279.542667pt;}
.y7c_c00427{bottom:283.698667pt;}
.y7b_c00427{bottom:284.797333pt;}
.y7a_c00427{bottom:285.408000pt;}
.y79_c00427{bottom:286.237333pt;}
.y78_c00427{bottom:286.741333pt;}
.y77_c00427{bottom:288.006667pt;}
.y76_c00427{bottom:296.278667pt;}
.y75_c00427{bottom:296.784000pt;}
.y74_c00427{bottom:297.405333pt;}
.y73_c00427{bottom:298.718667pt;}
.y72_c00427{bottom:299.648000pt;}
.y71_c00427{bottom:300.145333pt;}
.y70_c00427{bottom:300.497333pt;}
.y6f_c00427{bottom:301.344000pt;}
.y6e_c00427{bottom:302.641333pt;}
.y6d_c00427{bottom:310.701333pt;}
.y6c_c00427{bottom:312.434667pt;}
.y6b_c00427{bottom:313.050667pt;}
.y6a_c00427{bottom:313.809333pt;}
.y69_c00427{bottom:315.986667pt;}
.y68_c00427{bottom:317.730667pt;}
.y67_c00427{bottom:318.486667pt;}
.y66_c00427{bottom:326.429333pt;}
.y65_c00427{bottom:327.510667pt;}
.y64_c00427{bottom:329.740000pt;}
.y63_c00427{bottom:330.217333pt;}
.y62_c00427{bottom:331.005333pt;}
.y61_c00427{bottom:334.326667pt;}
.y60_c00427{bottom:341.629333pt;}
.y5f_c00427{bottom:342.280000pt;}
.y5e_c00427{bottom:343.474667pt;}
.y5d_c00427{bottom:344.044000pt;}
.y5c_c00427{bottom:344.688000pt;}
.y5b_c00427{bottom:346.465333pt;}
.y5a_c00427{bottom:348.053333pt;}
.y59_c00427{bottom:348.580000pt;}
.y58_c00427{bottom:349.442667pt;}
.y57_c00427{bottom:355.174667pt;}
.y56_c00427{bottom:355.766667pt;}
.y55_c00427{bottom:358.257333pt;}
.y54_c00427{bottom:358.900000pt;}
.y53_c00427{bottom:360.045333pt;}
.y52_c00427{bottom:361.336000pt;}
.y51_c00427{bottom:361.904000pt;}
.y50_c00427{bottom:362.534667pt;}
.y4f_c00427{bottom:364.090667pt;}
.y4e_c00427{bottom:364.346667pt;}
.y4d_c00427{bottom:365.042667pt;}
.y4c_c00427{bottom:370.633333pt;}
.y4b_c00427{bottom:372.357333pt;}
.y4a_c00427{bottom:374.122667pt;}
.y49_c00427{bottom:374.621333pt;}
.y48_c00427{bottom:375.806667pt;}
.y47_c00427{bottom:376.661333pt;}
.y46_c00427{bottom:377.233333pt;}
.y45_c00427{bottom:379.445333pt;}
.y44_c00427{bottom:386.868000pt;}
.y43_c00427{bottom:387.362667pt;}
.y42_c00427{bottom:389.673333pt;}
.y41_c00427{bottom:390.200000pt;}
.y40_c00427{bottom:390.618667pt;}
.y3f_c00427{bottom:391.868000pt;}
.y3e_c00427{bottom:392.705333pt;}
.y3d_c00427{bottom:393.248000pt;}
.y3c_c00427{bottom:395.045333pt;}
.y3b_c00427{bottom:400.974667pt;}
.y3a_c00427{bottom:401.540000pt;}
.y39_c00427{bottom:403.265333pt;}
.y38_c00427{bottom:403.865333pt;}
.y37_c00427{bottom:404.272000pt;}
.y36_c00427{bottom:404.686667pt;}
.y35_c00427{bottom:406.833333pt;}
.y34_c00427{bottom:407.574667pt;}
.y33_c00427{bottom:408.230667pt;}
.y32_c00427{bottom:409.925333pt;}
.y31_c00427{bottom:416.897333pt;}
.y30_c00427{bottom:418.696000pt;}
.y2f_c00427{bottom:419.480000pt;}
.y2e_c00427{bottom:420.978667pt;}
.y2d_c00427{bottom:421.521333pt;}
.y2c_c00427{bottom:422.809333pt;}
.y2b_c00427{bottom:423.428000pt;}
.y2a_c00427{bottom:424.804000pt;}
.y29_c00427{bottom:432.018667pt;}
.y28_c00427{bottom:432.957333pt;}
.y27_c00427{bottom:434.568000pt;}
.y26_c00427{bottom:435.197333pt;}
.y25_c00427{bottom:436.158667pt;}
.y24_c00427{bottom:437.338667pt;}
.y23_c00427{bottom:437.913333pt;}
.y22_c00427{bottom:439.204000pt;}
.y21_c00427{bottom:447.382667pt;}
.y20_c00427{bottom:448.113333pt;}
.y1f_c00427{bottom:449.425333pt;}
.y1e_c00427{bottom:449.758667pt;}
.y1d_c00427{bottom:451.042667pt;}
.y1c_c00427{bottom:451.514667pt;}
.y1b_c00427{bottom:452.510667pt;}
.y1a_c00427{bottom:453.846667pt;}
.y19_c00427{bottom:462.777333pt;}
.y18_c00427{bottom:463.248000pt;}
.y17_c00427{bottom:463.732000pt;}
.y16_c00427{bottom:464.537333pt;}
.y15_c00427{bottom:465.212000pt;}
.y14_c00427{bottom:467.037333pt;}
.y13_c00427{bottom:467.448000pt;}
.y12_c00427{bottom:467.773333pt;}
.y11_c00427{bottom:468.966667pt;}
.y10_c00427{bottom:477.498667pt;}
.yf_c00427{bottom:478.004000pt;}
.ye_c00427{bottom:479.385333pt;}
.yd_c00427{bottom:480.628000pt;}
.yc_c00427{bottom:481.109333pt;}
.yb_c00427{bottom:483.072000pt;}
.ya_c00427{bottom:484.088000pt;}
.y9_c00427{bottom:492.492000pt;}
.y8_c00427{bottom:494.358667pt;}
.y7_c00427{bottom:495.212000pt;}
.y6_c00427{bottom:497.150667pt;}
.y5_c00427{bottom:497.721333pt;}
.y4_c00427{bottom:498.216000pt;}
.y3_c00427{bottom:498.773333pt;}
.y2_c00427{bottom:499.445333pt;}
.y1_c00427{bottom:506.276000pt;}
.h9_c00427{height:49.466667pt;}
.h13_c00427{height:52.291775pt;}
.h12_c00427{height:53.225556pt;}
.h15_c00427{height:54.159338pt;}
.h8_c00427{height:56.000000pt;}
.hd_c00427{height:56.026902pt;}
.h7_c00427{height:56.933333pt;}
.hf_c00427{height:56.960683pt;}
.hc_c00427{height:57.894465pt;}
.h5_c00427{height:58.800000pt;}
.h11_c00427{height:58.828247pt;}
.h2_c00427{height:59.733333pt;}
.he_c00427{height:59.762028pt;}
.h3_c00427{height:60.666667pt;}
.hb_c00427{height:60.695810pt;}
.ha_c00427{height:61.600000pt;}
.h6_c00427{height:62.533333pt;}
.h4_c00427{height:63.466667pt;}
.h14_c00427{height:64.430937pt;}
.h10_c00427{height:66.298500pt;}
.h1_c00427{height:107.333333pt;}
.h0_c00427{height:540.666667pt;}
.w0_c00427{width:319.200000pt;}
.w1_c00427{width:319.333333pt;}
.x0_c00427{left:0.000000pt;}
.x83_c00427{left:27.237355pt;}
.x7f_c00427{left:28.176060pt;}
.x76_c00427{left:29.149523pt;}
.x6a_c00427{left:32.059896pt;}
.x5b_c00427{left:33.562365pt;}
.x4f_c00427{left:34.729333pt;}
.x46_c00427{left:35.670667pt;}
.x30_c00427{left:36.630667pt;}
.x1e_c00427{left:37.622667pt;}
.x10_c00427{left:38.566667pt;}
.x2_c00427{left:39.632000pt;}
.x77_c00427{left:48.624809pt;}
.x64_c00427{left:51.125540pt;}
.x73_c00427{left:52.448744pt;}
.x3d_c00427{left:56.810667pt;}
.x5c_c00427{left:58.056989pt;}
.x4b_c00427{left:60.149333pt;}
.x3_c00427{left:62.809333pt;}
.x3e_c00427{left:63.930667pt;}
.x7b_c00427{left:65.456953pt;}
.x85_c00427{left:66.669367pt;}
.x65_c00427{left:69.120641pt;}
.x50_c00427{left:74.289333pt;}
.xa_c00427{left:75.537333pt;}
.x6c_c00427{left:76.613899pt;}
.x43_c00427{left:78.357333pt;}
.x84_c00427{left:79.265136pt;}
.x80_c00427{left:80.575461pt;}
.x4_c00427{left:82.006667pt;}
.x18_c00427{left:84.624000pt;}
.x28_c00427{left:86.042667pt;}
.x51_c00427{left:90.042667pt;}
.x31_c00427{left:91.114667pt;}
.x11_c00427{left:92.790667pt;}
.x68_c00427{left:96.154317pt;}
.x66_c00427{left:98.079712pt;}
.x5_c00427{left:99.053333pt;}
.x5d_c00427{left:100.144791pt;}
.x1f_c00427{left:101.937333pt;}
.x70_c00427{left:102.895361pt;}
.x29_c00427{left:104.781333pt;}
.x37_c00427{left:106.234667pt;}
.x12_c00427{left:107.446667pt;}
.x6d_c00427{left:109.776473pt;}
.x57_c00427{left:114.018995pt;}
.x52_c00427{left:115.966667pt;}
.x4d_c00427{left:117.810667pt;}
.x6_c00427{left:118.730667pt;}
.x78_c00427{left:120.629667pt;}
.x7d_c00427{left:123.109323pt;}
.x38_c00427{left:124.114667pt;}
.x2a_c00427{left:125.950667pt;}
.x6e_c00427{left:128.772784pt;}
.x86_c00427{left:130.079813pt;}
.x4e_c00427{left:131.348000pt;}
.x32_c00427{left:132.909333pt;}
.x19_c00427{left:135.249333pt;}
.x74_c00427{left:137.008681pt;}
.x47_c00427{left:139.482667pt;}
.x3f_c00427{left:140.462667pt;}
.x71_c00427{left:141.692097pt;}
.x20_c00427{left:142.637333pt;}
.x24_c00427{left:143.964000pt;}
.xb_c00427{left:145.616000pt;}
.x5e_c00427{left:148.232540pt;}
.x39_c00427{left:150.804000pt;}
.x81_c00427{left:153.473623pt;}
.x62_c00427{left:155.921983pt;}
.x6b_c00427{left:158.886237pt;}
.x75_c00427{left:159.849384pt;}
.x1_c00427{left:161.040000pt;}
.xc_c00427{left:162.790667pt;}
.x48_c00427{left:164.100000pt;}
.x79_c00427{left:168.381821pt;}
.x53_c00427{left:169.370667pt;}
.x33_c00427{left:170.754667pt;}
.x13_c00427{left:172.657333pt;}
.x21_c00427{left:175.785333pt;}
.x1a_c00427{left:179.510667pt;}
.x34_c00427{left:183.461333pt;}
.x7_c00427{left:185.582667pt;}
.x2b_c00427{left:187.285333pt;}
.x69_c00427{left:188.386683pt;}
.x1b_c00427{left:190.986667pt;}
.x7a_c00427{left:194.254607pt;}
.x14_c00427{left:196.764000pt;}
.x2c_c00427{left:199.136000pt;}
.x5f_c00427{left:201.209364pt;}
.x3a_c00427{left:203.466667pt;}
.xd_c00427{left:207.149333pt;}
.x40_c00427{left:208.132000pt;}
.x25_c00427{left:209.846667pt;}
.x2d_c00427{left:210.768000pt;}
.x8_c00427{left:214.994667pt;}
.x4c_c00427{left:216.154667pt;}
.x44_c00427{left:217.124000pt;}
.x58_c00427{left:219.506859pt;}
.x60_c00427{left:220.916288pt;}
.x63_c00427{left:224.439573pt;}
.x15_c00427{left:225.541333pt;}
.x87_c00427{left:226.600419pt;}
.x2e_c00427{left:227.901333pt;}
.x59_c00427{left:231.863644pt;}
.x26_c00427{left:235.136000pt;}
.x1c_c00427{left:236.214667pt;}
.x7c_c00427{left:237.415617pt;}
.x7e_c00427{left:238.844999pt;}
.x16_c00427{left:242.814667pt;}
.x55_c00427{left:246.845333pt;}
.x49_c00427{left:248.693333pt;}
.x22_c00427{left:253.029333pt;}
.x88_c00427{left:254.508252pt;}
.x6f_c00427{left:255.453077pt;}
.xe_c00427{left:256.490667pt;}
.x3b_c00427{left:258.633333pt;}
.x17_c00427{left:259.614667pt;}
.x1d_c00427{left:261.400000pt;}
.x82_c00427{left:268.029180pt;}
.x35_c00427{left:269.433333pt;}
.x56_c00427{left:271.426667pt;}
.x45_c00427{left:273.046667pt;}
.xf_c00427{left:274.557333pt;}
.x2f_c00427{left:277.209333pt;}
.x9_c00427{left:279.365333pt;}
.x5a_c00427{left:281.390703pt;}
.x4a_c00427{left:282.476000pt;}
.x67_c00427{left:283.482105pt;}
.x36_c00427{left:284.424000pt;}
.x23_c00427{left:285.381333pt;}
.x72_c00427{left:288.814980pt;}
.x61_c00427{left:289.767209pt;}
.x27_c00427{left:293.160000pt;}
.x41_c00427{left:295.148000pt;}
.x54_c00427{left:299.238667pt;}
.x42_c00427{left:311.592000pt;}
.x3c_c00427{left:312.497333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00428 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00428.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00428{transform:matrix(0.032690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032690,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.066670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066670,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.113040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113040,0.000000,0.000000,0.250000,0,0);}
.me6_c00428{transform:matrix(0.126455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126455,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.131135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131135,0.000000,0.000000,0.250000,0,0);}
.md5_c00428{transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);}
.m77_c00428{transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);}
.mea_c00428{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.meb_c00428{transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);}
.mc5_c00428{transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154005,0.000000,0.000000,0.250000,0,0);}
.me4_c00428{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00428{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.me0_c00428{transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157690,0.000000,0.000000,0.250000,0,0);}
.m79_c00428{transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);}
.mb2_c00428{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.me1_c00428{transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);}
.mbd_c00428{transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161965,0.000000,0.000000,0.250000,0,0);}
.m8d_c00428{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);}
.mdf_c00428{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.mc1_c00428{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00428{transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);-ms-transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164453,-0.001973,0.003000,0.249982,0,0);}
.m44_c00428{transform:matrix(0.164523,-0.001974,0.003000,0.249982,0,0);-ms-transform:matrix(0.164523,-0.001974,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164523,-0.001974,0.003000,0.249982,0,0);}
.m4f_c00428{transform:matrix(0.164638,-0.001976,0.003000,0.249982,0,0);-ms-transform:matrix(0.164638,-0.001976,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164638,-0.001976,0.003000,0.249982,0,0);}
.m8b_c00428{transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164735,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165355,0.000000,0.000000,0.250000,0,0);}
.mb1_c00428{transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00428{transform:matrix(0.168173,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168173,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168173,-0.002018,0.003000,0.249982,0,0);}
.me3_c00428{transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168315,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.170165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170165,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170195,0.000000,0.000000,0.250000,0,0);}
.mb3_c00428{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m83_c00428{transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.mb6_c00428{transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);}
.mc4_c00428{transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.me7_c00428{transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176985,0.000000,0.000000,0.250000,0,0);}
.m5b_c00428{transform:matrix(0.177132,-0.002126,0.003000,0.249982,0,0);-ms-transform:matrix(0.177132,-0.002126,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177132,-0.002126,0.003000,0.249982,0,0);}
.m11_c00428{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m74_c00428{transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);}
.m86_c00428{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.ma2_c00428{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.177902,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177902,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177902,-0.002135,0.003000,0.249982,0,0);}
.m36_c00428{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178895,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.m7d_c00428{transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);}
.m50_c00428{transform:matrix(0.179427,-0.002153,0.003000,0.249982,0,0);-ms-transform:matrix(0.179427,-0.002153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179427,-0.002153,0.003000,0.249982,0,0);}
.m27_c00428{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.mbf_c00428{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.mbb_c00428{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.mc0_c00428{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m70_c00428{transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.me5_c00428{transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.181362,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181362,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181362,-0.002176,0.003000,0.249982,0,0);}
.m2_c00428{transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181430,0.000000,0.000000,0.250000,0,0);}
.me9_c00428{transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181595,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.181687,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181687,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181687,-0.002180,0.003000,0.249982,0,0);}
.m90_c00428{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.md3_c00428{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184680,0.000000,0.000000,0.250000,0,0);}
.m89_c00428{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.me8_c00428{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m9a_c00428{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.mc6_c00428{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.ma6_c00428{transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);}
.m80_c00428{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.186907,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186907,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186907,-0.002243,0.003000,0.249982,0,0);}
.m8a_c00428{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mc7_c00428{transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00428{transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188835,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.189556,-0.002275,0.003000,0.249982,0,0);-ms-transform:matrix(0.189556,-0.002275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189556,-0.002275,0.003000,0.249982,0,0);}
.m9_c00428{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.mae_c00428{transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189780,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);}
.m6c_c00428{transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.mde_c00428{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.m91_c00428{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.m75_c00428{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191730,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192180,0.000000,0.000000,0.250000,0,0);}
.m64_c00428{transform:matrix(0.192376,-0.002309,0.003000,0.249982,0,0);-ms-transform:matrix(0.192376,-0.002309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192376,-0.002309,0.003000,0.249982,0,0);}
.m1e_c00428{transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);}
.m95_c00428{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.193271,-0.002319,0.003000,0.249982,0,0);-ms-transform:matrix(0.193271,-0.002319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193271,-0.002319,0.003000,0.249982,0,0);}
.m76_c00428{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.m93_c00428{transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193635,0.000000,0.000000,0.250000,0,0);}
.mad_c00428{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00428{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193905,0.000000,0.000000,0.250000,0,0);}
.m72_c00428{transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195340,0.000000,0.000000,0.250000,0,0);}
.m81_c00428{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.m9e_c00428{transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);}
.m7f_c00428{transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);}
.mb0_c00428{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.m71_c00428{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.md0_c00428{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.196396,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196396,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196396,-0.002357,0.003000,0.249982,0,0);}
.md8_c00428{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m4a_c00428{transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196526,-0.002358,0.003000,0.249982,0,0);}
.m84_c00428{transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);}
.mc3_c00428{transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196665,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m58_c00428{transform:matrix(0.198466,-0.002382,0.003000,0.249982,0,0);-ms-transform:matrix(0.198466,-0.002382,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198466,-0.002382,0.003000,0.249982,0,0);}
.mab_c00428{transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.m82_c00428{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.198891,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198891,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198891,-0.002387,0.003000,0.249982,0,0);}
.m5e_c00428{transform:matrix(0.198906,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198906,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198906,-0.002387,0.003000,0.249982,0,0);}
.m23_c00428{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.m73_c00428{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.m99_c00428{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m7c_c00428{transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.201006,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.201006,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201006,-0.002412,0.003000,0.249982,0,0);}
.m5d_c00428{transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201076,-0.002413,0.003000,0.249982,0,0);}
.mcd_c00428{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m94_c00428{transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);}
.mbc_c00428{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.mdc_c00428{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.ma1_c00428{transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205510,0.000000,0.000000,0.250000,0,0);}
.m60_c00428{transform:matrix(0.205525,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205525,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205525,-0.002466,0.003000,0.249982,0,0);}
.m9d_c00428{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.ma7_c00428{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.205845,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205845,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205845,-0.002470,0.003000,0.249982,0,0);}
.m4c_c00428{transform:matrix(0.205930,-0.002471,0.003000,0.249982,0,0);-ms-transform:matrix(0.205930,-0.002471,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205930,-0.002471,0.003000,0.249982,0,0);}
.m98_c00428{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);}
.mbe_c00428{transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207045,0.000000,0.000000,0.250000,0,0);}
.m8e_c00428{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.me2_c00428{transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);}
.maa_c00428{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00428{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209610,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.mca_c00428{transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);}
.mcb_c00428{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);}
.m8f_c00428{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.211815,-0.002542,0.003000,0.249982,0,0);-ms-transform:matrix(0.211815,-0.002542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211815,-0.002542,0.003000,0.249982,0,0);}
.md4_c00428{transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);}
.ma4_c00428{transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);}
.m97_c00428{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212995,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.213030,-0.002556,0.003000,0.249982,0,0);-ms-transform:matrix(0.213030,-0.002556,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213030,-0.002556,0.003000,0.249982,0,0);}
.ma9_c00428{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m92_c00428{transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213660,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.214035,-0.002568,0.003000,0.249982,0,0);-ms-transform:matrix(0.214035,-0.002568,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214035,-0.002568,0.003000,0.249982,0,0);}
.m26_c00428{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214785,0.000000,0.000000,0.250000,0,0);}
.mda_c00428{transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);}
.m68_c00428{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.m4b_c00428{transform:matrix(0.217634,-0.002612,0.003000,0.249982,0,0);-ms-transform:matrix(0.217634,-0.002612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217634,-0.002612,0.003000,0.249982,0,0);}
.mcc_c00428{transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.218724,-0.002625,0.003000,0.249982,0,0);-ms-transform:matrix(0.218724,-0.002625,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218724,-0.002625,0.003000,0.249982,0,0);}
.m35_c00428{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.mb5_c00428{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219805,0.000000,0.000000,0.250000,0,0);}
.md1_c00428{transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220795,0.000000,0.000000,0.250000,0,0);}
.md6_c00428{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.m59_c00428{transform:matrix(0.221284,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221284,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221284,-0.002655,0.003000,0.249982,0,0);}
.m22_c00428{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m9b_c00428{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223640,0.000000,0.000000,0.250000,0,0);}
.m67_c00428{transform:matrix(0.224394,-0.002693,0.003000,0.249982,0,0);-ms-transform:matrix(0.224394,-0.002693,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224394,-0.002693,0.003000,0.249982,0,0);}
.mb8_c00428{transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);}
.m62_c00428{transform:matrix(0.224929,-0.002699,0.003000,0.249982,0,0);-ms-transform:matrix(0.224929,-0.002699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224929,-0.002699,0.003000,0.249982,0,0);}
.m65_c00428{transform:matrix(0.225664,-0.002708,0.003000,0.249982,0,0);-ms-transform:matrix(0.225664,-0.002708,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225664,-0.002708,0.003000,0.249982,0,0);}
.m6a_c00428{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m5a_c00428{transform:matrix(0.226194,-0.002714,0.003000,0.249982,0,0);-ms-transform:matrix(0.226194,-0.002714,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226194,-0.002714,0.003000,0.249982,0,0);}
.m15_c00428{transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);}
.mac_c00428{transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);}
.mc9_c00428{transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226615,0.000000,0.000000,0.250000,0,0);}
.md7_c00428{transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227990,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m63_c00428{transform:matrix(0.228839,-0.002746,0.003000,0.249982,0,0);-ms-transform:matrix(0.228839,-0.002746,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228839,-0.002746,0.003000,0.249982,0,0);}
.m2b_c00428{transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228930,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231005,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233305,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233335,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.233640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233640,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00428{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m6b_c00428{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc8_c00428{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m54_c00428{transform:matrix(0.239378,-0.002873,0.003000,0.249982,0,0);-ms-transform:matrix(0.239378,-0.002873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239378,-0.002873,0.003000,0.249982,0,0);}
.m55_c00428{transform:matrix(0.239888,-0.002879,0.003000,0.249982,0,0);-ms-transform:matrix(0.239888,-0.002879,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239888,-0.002879,0.003000,0.249982,0,0);}
.m12_c00428{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00428{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.mdb_c00428{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.md9_c00428{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.253802,-0.003046,0.003000,0.249982,0,0);-ms-transform:matrix(0.253802,-0.003046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253802,-0.003046,0.003000,0.249982,0,0);}
.m10_c00428{transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.257961,-0.003096,0.003000,0.249982,0,0);-ms-transform:matrix(0.257961,-0.003096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257961,-0.003096,0.003000,0.249982,0,0);}
.md2_c00428{transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.269706,-0.003236,0.003000,0.249982,0,0);-ms-transform:matrix(0.269706,-0.003236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269706,-0.003236,0.003000,0.249982,0,0);}
.m66_c00428{transform:matrix(0.273095,-0.003277,0.003000,0.249982,0,0);-ms-transform:matrix(0.273095,-0.003277,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273095,-0.003277,0.003000,0.249982,0,0);}
.mce_c00428{transform:matrix(0.617780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617780,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls0_c00428{letter-spacing:0.000000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:0.000000px;}
.fc0_c00428{color:transparent;}
.fsc_c00428{font-size:55.654007px;}
.fsd_c00428{font-size:57.750000px;}
.fsa_c00428{font-size:57.754158px;}
.fs5_c00428{font-size:58.800000px;}
.fs3_c00428{font-size:59.850000px;}
.fs8_c00428{font-size:59.854309px;}
.fs4_c00428{font-size:60.900000px;}
.fs6_c00428{font-size:61.950000px;}
.fs7_c00428{font-size:63.000000px;}
.fs1_c00428{font-size:64.050000px;}
.fsb_c00428{font-size:65.104687px;}
.fs2_c00428{font-size:66.150000px;}
.fs10_c00428{font-size:67.200000px;}
.fs11_c00428{font-size:69.300000px;}
.fse_c00428{font-size:70.350000px;}
.fs9_c00428{font-size:70.355065px;}
.fsf_c00428{font-size:71.400000px;}
.fs0_c00428{font-size:123.900000px;}
.y0_c00428{bottom:0.000000px;}
.y4c_c00428{bottom:26.769000px;}
.y4b_c00428{bottom:44.158500px;}
.y4a_c00428{bottom:61.852500px;}
.y49_c00428{bottom:78.778500px;}
.y48_c00428{bottom:96.838500px;}
.y47_c00428{bottom:112.980000px;}
.y46_c00428{bottom:131.346000px;}
.y45_c00428{bottom:147.121500px;}
.y44_c00428{bottom:164.157000px;}
.y43_c00428{bottom:180.751500px;}
.y42_c00428{bottom:197.767500px;}
.y41_c00428{bottom:215.502000px;}
.y40_c00428{bottom:232.909500px;}
.y3f_c00428{bottom:250.177500px;}
.y3e_c00428{bottom:267.363000px;}
.y3d_c00428{bottom:284.763000px;}
.y3c_c00428{bottom:301.681500px;}
.y3b_c00428{bottom:319.560000px;}
.y38_c00428{bottom:336.468240px;}
.y39_c00428{bottom:336.468564px;}
.y37_c00428{bottom:336.468612px;}
.y36_c00428{bottom:336.469110px;}
.y3a_c00428{bottom:336.469206px;}
.y34_c00428{bottom:336.469722px;}
.y35_c00428{bottom:336.469746px;}
.y2d_c00428{bottom:351.645882px;}
.y31_c00428{bottom:351.646038px;}
.y2e_c00428{bottom:351.646284px;}
.y33_c00428{bottom:351.646386px;}
.y32_c00428{bottom:351.646680px;}
.y2f_c00428{bottom:351.646746px;}
.y30_c00428{bottom:351.646752px;}
.y26_c00428{bottom:368.007450px;}
.y27_c00428{bottom:369.217404px;}
.y28_c00428{bottom:369.369552px;}
.y29_c00428{bottom:369.619074px;}
.y2a_c00428{bottom:370.321020px;}
.y2b_c00428{bottom:370.637142px;}
.y2c_c00428{bottom:371.395428px;}
.y20_c00428{bottom:385.217610px;}
.y22_c00428{bottom:385.217676px;}
.y1f_c00428{bottom:385.217946px;}
.y23_c00428{bottom:385.218024px;}
.y21_c00428{bottom:385.218234px;}
.y24_c00428{bottom:385.218468px;}
.y25_c00428{bottom:385.218774px;}
.y18_c00428{bottom:400.950300px;}
.y19_c00428{bottom:401.608932px;}
.y1a_c00428{bottom:401.831634px;}
.y1b_c00428{bottom:402.020976px;}
.y1c_c00428{bottom:402.659040px;}
.y1d_c00428{bottom:402.930006px;}
.y1e_c00428{bottom:403.984278px;}
.y11_c00428{bottom:417.421500px;}
.y12_c00428{bottom:417.774642px;}
.y13_c00428{bottom:418.014150px;}
.y14_c00428{bottom:418.737084px;}
.y15_c00428{bottom:419.550234px;}
.y16_c00428{bottom:419.818434px;}
.y17_c00428{bottom:420.048852px;}
.y10_c00428{bottom:435.228000px;}
.yf_c00428{bottom:452.055000px;}
.ye_c00428{bottom:469.737000px;}
.yd_c00428{bottom:485.953500px;}
.yc_c00428{bottom:503.256000px;}
.yb_c00428{bottom:519.808500px;}
.y3_c00428{bottom:535.411500px;}
.y4_c00428{bottom:536.271000px;}
.y5_c00428{bottom:536.706000px;}
.y6_c00428{bottom:537.165000px;}
.y7_c00428{bottom:537.295500px;}
.y8_c00428{bottom:537.861000px;}
.y9_c00428{bottom:538.089000px;}
.ya_c00428{bottom:538.804500px;}
.y2_c00428{bottom:552.442500px;}
.y1_c00428{bottom:567.913500px;}
.hd_c00428{height:55.654007px;}
.he_c00428{height:57.750000px;}
.hb_c00428{height:57.754158px;}
.h6_c00428{height:58.800000px;}
.h4_c00428{height:59.850000px;}
.h9_c00428{height:59.854309px;}
.h5_c00428{height:60.900000px;}
.h7_c00428{height:61.950000px;}
.h8_c00428{height:63.000000px;}
.h2_c00428{height:64.050000px;}
.hc_c00428{height:65.104687px;}
.h3_c00428{height:66.150000px;}
.h11_c00428{height:67.200000px;}
.h12_c00428{height:69.300000px;}
.hf_c00428{height:70.350000px;}
.ha_c00428{height:70.355065px;}
.h10_c00428{height:71.400000px;}
.h1_c00428{height:123.900000px;}
.h0_c00428{height:608.250000px;}
.w0_c00428{width:359.100000px;}
.w1_c00428{width:359.250000px;}
.x0_c00428{left:0.000000px;}
.x58_c00428{left:14.310000px;}
.x3_c00428{left:16.470000px;}
.x3a_c00428{left:17.820228px;}
.x56_c00428{left:19.710000px;}
.x67_c00428{left:21.870000px;}
.x7c_c00428{left:26.460000px;}
.x5e_c00428{left:28.350000px;}
.x79_c00428{left:29.430000px;}
.x2a_c00428{left:30.511500px;}
.x17_c00428{left:32.671500px;}
.x7d_c00428{left:35.370000px;}
.x75_c00428{left:39.150000px;}
.x10_c00428{left:42.931500px;}
.x40_c00428{left:46.713690px;}
.x71_c00428{left:51.030000px;}
.x1f_c00428{left:54.001500px;}
.x44_c00428{left:56.435682px;}
.x11_c00428{left:59.401500px;}
.x33_c00428{left:62.244000px;}
.x6d_c00428{left:63.450000px;}
.x48_c00428{left:65.070000px;}
.x41_c00428{left:67.505178px;}
.x69_c00428{left:69.390000px;}
.x62_c00428{left:74.790000px;}
.x12_c00428{left:76.141500px;}
.x36_c00428{left:77.297628px;}
.x50_c00428{left:80.190000px;}
.x4_c00428{left:82.080000px;}
.x52_c00428{left:83.160000px;}
.x49_c00428{left:85.320000px;}
.x25_c00428{left:89.101500px;}
.x59_c00428{left:91.530000px;}
.x2b_c00428{left:93.151500px;}
.x7a_c00428{left:95.040000px;}
.x13_c00428{left:97.471500px;}
.x18_c00428{left:100.981500px;}
.x26_c00428{left:102.061500px;}
.x53_c00428{left:103.680000px;}
.x2c_c00428{left:105.571500px;}
.x5_c00428{left:110.160000px;}
.x45_c00428{left:112.599282px;}
.xa_c00428{left:115.663500px;}
.x19_c00428{left:121.501500px;}
.x2d_c00428{left:123.931500px;}
.x66_c00428{left:126.900000px;}
.x5a_c00428{left:129.330000px;}
.x3b_c00428{left:130.688982px;}
.x76_c00428{left:132.300000px;}
.x20_c00428{left:136.351500px;}
.x1a_c00428{left:138.511500px;}
.x42_c00428{left:140.141136px;}
.x6a_c00428{left:141.210000px;}
.x34_c00428{left:142.447500px;}
.x1_c00428{left:144.180000px;}
.x63_c00428{left:146.070000px;}
.x5f_c00428{left:147.690000px;}
.x4a_c00428{left:148.770000px;}
.xb_c00428{left:151.027500px;}
.x14_c00428{left:153.091500px;}
.x72_c00428{left:154.710000px;}
.x57_c00428{left:159.300000px;}
.xc_c00428{left:161.092500px;}
.x4b_c00428{left:162.270000px;}
.x21_c00428{left:164.431500px;}
.x2e_c00428{left:165.511500px;}
.x73_c00428{left:171.450000px;}
.x37_c00428{left:172.932798px;}
.x60_c00428{left:175.500000px;}
.x68_c00428{left:177.930000px;}
.x27_c00428{left:179.011500px;}
.x6_c00428{left:181.440000px;}
.x5b_c00428{left:185.220000px;}
.x22_c00428{left:187.651500px;}
.x51_c00428{left:190.080000px;}
.x6e_c00428{left:192.240000px;}
.x1b_c00428{left:194.401500px;}
.x28_c00428{left:195.481500px;}
.x38_c00428{left:197.513586px;}
.x4c_c00428{left:200.070000px;}
.x7b_c00428{left:203.310000px;}
.xd_c00428{left:204.552000px;}
.x1c_c00428{left:207.901500px;}
.x35_c00428{left:210.210000px;}
.x6f_c00428{left:211.950000px;}
.x5c_c00428{left:213.570000px;}
.x15_c00428{left:217.621500px;}
.x3e_c00428{left:219.957276px;}
.xe_c00428{left:222.120000px;}
.x2f_c00428{left:224.101500px;}
.x1d_c00428{left:228.691500px;}
.x23_c00428{left:229.771500px;}
.x7_c00428{left:231.930000px;}
.x61_c00428{left:233.550000px;}
.x64_c00428{left:236.520000px;}
.x6b_c00428{left:237.870000px;}
.x46_c00428{left:239.238516px;}
.x3c_c00428{left:241.395912px;}
.x4d_c00428{left:246.240000px;}
.x5d_c00428{left:250.560000px;}
.x31_c00428{left:252.451500px;}
.x16_c00428{left:258.121500px;}
.x8_c00428{left:259.200000px;}
.x47_c00428{left:261.920274px;}
.x77_c00428{left:265.410000px;}
.x54_c00428{left:266.490000px;}
.x74_c00428{left:269.190000px;}
.x70_c00428{left:271.080000px;}
.x6c_c00428{left:272.700000px;}
.x30_c00428{left:275.941500px;}
.xf_c00428{left:277.149000px;}
.x3f_c00428{left:278.272074px;}
.x29_c00428{left:279.451500px;}
.x65_c00428{left:280.530000px;}
.x24_c00428{left:284.041500px;}
.x1e_c00428{left:285.661500px;}
.x2_c00428{left:287.010000px;}
.x43_c00428{left:288.381984px;}
.x39_c00428{left:293.370738px;}
.x32_c00428{left:294.841500px;}
.x4f_c00428{left:297.000000px;}
.x9_c00428{left:298.080000px;}
.x3d_c00428{left:299.179728px;}
.x4e_c00428{left:301.590000px;}
.x55_c00428{left:306.450000px;}
.x78_c00428{left:311.310000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fsc_c00428{font-size:49.470228pt;}
.fsd_c00428{font-size:51.333333pt;}
.fsa_c00428{font-size:51.337029pt;}
.fs5_c00428{font-size:52.266667pt;}
.fs3_c00428{font-size:53.200000pt;}
.fs8_c00428{font-size:53.203830pt;}
.fs4_c00428{font-size:54.133333pt;}
.fs6_c00428{font-size:55.066667pt;}
.fs7_c00428{font-size:56.000000pt;}
.fs1_c00428{font-size:56.933333pt;}
.fsb_c00428{font-size:57.870833pt;}
.fs2_c00428{font-size:58.800000pt;}
.fs10_c00428{font-size:59.733333pt;}
.fs11_c00428{font-size:61.600000pt;}
.fse_c00428{font-size:62.533333pt;}
.fs9_c00428{font-size:62.537836pt;}
.fsf_c00428{font-size:63.466667pt;}
.fs0_c00428{font-size:110.133333pt;}
.y0_c00428{bottom:0.000000pt;}
.y4c_c00428{bottom:23.794667pt;}
.y4b_c00428{bottom:39.252000pt;}
.y4a_c00428{bottom:54.980000pt;}
.y49_c00428{bottom:70.025333pt;}
.y48_c00428{bottom:86.078667pt;}
.y47_c00428{bottom:100.426667pt;}
.y46_c00428{bottom:116.752000pt;}
.y45_c00428{bottom:130.774667pt;}
.y44_c00428{bottom:145.917333pt;}
.y43_c00428{bottom:160.668000pt;}
.y42_c00428{bottom:175.793333pt;}
.y41_c00428{bottom:191.557333pt;}
.y40_c00428{bottom:207.030667pt;}
.y3f_c00428{bottom:222.380000pt;}
.y3e_c00428{bottom:237.656000pt;}
.y3d_c00428{bottom:253.122667pt;}
.y3c_c00428{bottom:268.161333pt;}
.y3b_c00428{bottom:284.053333pt;}
.y38_c00428{bottom:299.082880pt;}
.y39_c00428{bottom:299.083168pt;}
.y37_c00428{bottom:299.083211pt;}
.y36_c00428{bottom:299.083653pt;}
.y3a_c00428{bottom:299.083739pt;}
.y34_c00428{bottom:299.084197pt;}
.y35_c00428{bottom:299.084219pt;}
.y2d_c00428{bottom:312.574117pt;}
.y31_c00428{bottom:312.574256pt;}
.y2e_c00428{bottom:312.574475pt;}
.y33_c00428{bottom:312.574565pt;}
.y32_c00428{bottom:312.574827pt;}
.y2f_c00428{bottom:312.574885pt;}
.y30_c00428{bottom:312.574891pt;}
.y26_c00428{bottom:327.117733pt;}
.y27_c00428{bottom:328.193248pt;}
.y28_c00428{bottom:328.328491pt;}
.y29_c00428{bottom:328.550288pt;}
.y2a_c00428{bottom:329.174240pt;}
.y2b_c00428{bottom:329.455237pt;}
.y2c_c00428{bottom:330.129269pt;}
.y20_c00428{bottom:342.415653pt;}
.y22_c00428{bottom:342.415712pt;}
.y1f_c00428{bottom:342.415952pt;}
.y23_c00428{bottom:342.416021pt;}
.y21_c00428{bottom:342.416208pt;}
.y24_c00428{bottom:342.416416pt;}
.y25_c00428{bottom:342.416688pt;}
.y18_c00428{bottom:356.400267pt;}
.y19_c00428{bottom:356.985717pt;}
.y1a_c00428{bottom:357.183675pt;}
.y1b_c00428{bottom:357.351979pt;}
.y1c_c00428{bottom:357.919147pt;}
.y1d_c00428{bottom:358.160005pt;}
.y1e_c00428{bottom:359.097136pt;}
.y11_c00428{bottom:371.041333pt;}
.y12_c00428{bottom:371.355237pt;}
.y13_c00428{bottom:371.568133pt;}
.y14_c00428{bottom:372.210741pt;}
.y15_c00428{bottom:372.933541pt;}
.y16_c00428{bottom:373.171941pt;}
.y17_c00428{bottom:373.376757pt;}
.y10_c00428{bottom:386.869333pt;}
.yf_c00428{bottom:401.826667pt;}
.ye_c00428{bottom:417.544000pt;}
.yd_c00428{bottom:431.958667pt;}
.yc_c00428{bottom:447.338667pt;}
.yb_c00428{bottom:462.052000pt;}
.y3_c00428{bottom:475.921333pt;}
.y4_c00428{bottom:476.685333pt;}
.y5_c00428{bottom:477.072000pt;}
.y6_c00428{bottom:477.480000pt;}
.y7_c00428{bottom:477.596000pt;}
.y8_c00428{bottom:478.098667pt;}
.y9_c00428{bottom:478.301333pt;}
.ya_c00428{bottom:478.937333pt;}
.y2_c00428{bottom:491.060000pt;}
.y1_c00428{bottom:504.812000pt;}
.hd_c00428{height:49.470228pt;}
.he_c00428{height:51.333333pt;}
.hb_c00428{height:51.337029pt;}
.h6_c00428{height:52.266667pt;}
.h4_c00428{height:53.200000pt;}
.h9_c00428{height:53.203830pt;}
.h5_c00428{height:54.133333pt;}
.h7_c00428{height:55.066667pt;}
.h8_c00428{height:56.000000pt;}
.h2_c00428{height:56.933333pt;}
.hc_c00428{height:57.870833pt;}
.h3_c00428{height:58.800000pt;}
.h11_c00428{height:59.733333pt;}
.h12_c00428{height:61.600000pt;}
.hf_c00428{height:62.533333pt;}
.ha_c00428{height:62.537836pt;}
.h10_c00428{height:63.466667pt;}
.h1_c00428{height:110.133333pt;}
.h0_c00428{height:540.666667pt;}
.w0_c00428{width:319.200000pt;}
.w1_c00428{width:319.333333pt;}
.x0_c00428{left:0.000000pt;}
.x58_c00428{left:12.720000pt;}
.x3_c00428{left:14.640000pt;}
.x3a_c00428{left:15.840203pt;}
.x56_c00428{left:17.520000pt;}
.x67_c00428{left:19.440000pt;}
.x7c_c00428{left:23.520000pt;}
.x5e_c00428{left:25.200000pt;}
.x79_c00428{left:26.160000pt;}
.x2a_c00428{left:27.121333pt;}
.x17_c00428{left:29.041333pt;}
.x7d_c00428{left:31.440000pt;}
.x75_c00428{left:34.800000pt;}
.x10_c00428{left:38.161333pt;}
.x40_c00428{left:41.523280pt;}
.x71_c00428{left:45.360000pt;}
.x1f_c00428{left:48.001333pt;}
.x44_c00428{left:50.165051pt;}
.x11_c00428{left:52.801333pt;}
.x33_c00428{left:55.328000pt;}
.x6d_c00428{left:56.400000pt;}
.x48_c00428{left:57.840000pt;}
.x41_c00428{left:60.004603pt;}
.x69_c00428{left:61.680000pt;}
.x62_c00428{left:66.480000pt;}
.x12_c00428{left:67.681333pt;}
.x36_c00428{left:68.709003pt;}
.x50_c00428{left:71.280000pt;}
.x4_c00428{left:72.960000pt;}
.x52_c00428{left:73.920000pt;}
.x49_c00428{left:75.840000pt;}
.x25_c00428{left:79.201333pt;}
.x59_c00428{left:81.360000pt;}
.x2b_c00428{left:82.801333pt;}
.x7a_c00428{left:84.480000pt;}
.x13_c00428{left:86.641333pt;}
.x18_c00428{left:89.761333pt;}
.x26_c00428{left:90.721333pt;}
.x53_c00428{left:92.160000pt;}
.x2c_c00428{left:93.841333pt;}
.x5_c00428{left:97.920000pt;}
.x45_c00428{left:100.088251pt;}
.xa_c00428{left:102.812000pt;}
.x19_c00428{left:108.001333pt;}
.x2d_c00428{left:110.161333pt;}
.x66_c00428{left:112.800000pt;}
.x5a_c00428{left:114.960000pt;}
.x3b_c00428{left:116.167984pt;}
.x76_c00428{left:117.600000pt;}
.x20_c00428{left:121.201333pt;}
.x1a_c00428{left:123.121333pt;}
.x42_c00428{left:124.569899pt;}
.x6a_c00428{left:125.520000pt;}
.x34_c00428{left:126.620000pt;}
.x1_c00428{left:128.160000pt;}
.x63_c00428{left:129.840000pt;}
.x5f_c00428{left:131.280000pt;}
.x4a_c00428{left:132.240000pt;}
.xb_c00428{left:134.246667pt;}
.x14_c00428{left:136.081333pt;}
.x72_c00428{left:137.520000pt;}
.x57_c00428{left:141.600000pt;}
.xc_c00428{left:143.193333pt;}
.x4b_c00428{left:144.240000pt;}
.x21_c00428{left:146.161333pt;}
.x2e_c00428{left:147.121333pt;}
.x73_c00428{left:152.400000pt;}
.x37_c00428{left:153.718043pt;}
.x60_c00428{left:156.000000pt;}
.x68_c00428{left:158.160000pt;}
.x27_c00428{left:159.121333pt;}
.x6_c00428{left:161.280000pt;}
.x5b_c00428{left:164.640000pt;}
.x22_c00428{left:166.801333pt;}
.x51_c00428{left:168.960000pt;}
.x6e_c00428{left:170.880000pt;}
.x1b_c00428{left:172.801333pt;}
.x28_c00428{left:173.761333pt;}
.x38_c00428{left:175.567632pt;}
.x4c_c00428{left:177.840000pt;}
.x7b_c00428{left:180.720000pt;}
.xd_c00428{left:181.824000pt;}
.x1c_c00428{left:184.801333pt;}
.x35_c00428{left:186.853333pt;}
.x6f_c00428{left:188.400000pt;}
.x5c_c00428{left:189.840000pt;}
.x15_c00428{left:193.441333pt;}
.x3e_c00428{left:195.517579pt;}
.xe_c00428{left:197.440000pt;}
.x2f_c00428{left:199.201333pt;}
.x1d_c00428{left:203.281333pt;}
.x23_c00428{left:204.241333pt;}
.x7_c00428{left:206.160000pt;}
.x61_c00428{left:207.600000pt;}
.x64_c00428{left:210.240000pt;}
.x6b_c00428{left:211.440000pt;}
.x46_c00428{left:212.656459pt;}
.x3c_c00428{left:214.574144pt;}
.x4d_c00428{left:218.880000pt;}
.x5d_c00428{left:222.720000pt;}
.x31_c00428{left:224.401333pt;}
.x16_c00428{left:229.441333pt;}
.x8_c00428{left:230.400000pt;}
.x47_c00428{left:232.818021pt;}
.x77_c00428{left:235.920000pt;}
.x54_c00428{left:236.880000pt;}
.x74_c00428{left:239.280000pt;}
.x70_c00428{left:240.960000pt;}
.x6c_c00428{left:242.400000pt;}
.x30_c00428{left:245.281333pt;}
.xf_c00428{left:246.354667pt;}
.x3f_c00428{left:247.352955pt;}
.x29_c00428{left:248.401333pt;}
.x65_c00428{left:249.360000pt;}
.x24_c00428{left:252.481333pt;}
.x1e_c00428{left:253.921333pt;}
.x2_c00428{left:255.120000pt;}
.x43_c00428{left:256.339541pt;}
.x39_c00428{left:260.773989pt;}
.x32_c00428{left:262.081333pt;}
.x4f_c00428{left:264.000000pt;}
.x9_c00428{left:264.960000pt;}
.x3d_c00428{left:265.937536pt;}
.x4e_c00428{left:268.080000pt;}
.x55_c00428{left:272.400000pt;}
.x78_c00428{left:276.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00429 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00429 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00429 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00429 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00429.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me9_c00429{transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010695,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);}
.me1_c00429{transform:matrix(0.137365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137365,0.000000,0.000000,0.250000,0,0);}
.ma4_c00429{transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138040,0.000000,0.000000,0.250000,0,0);}
.mbd_c00429{transform:matrix(0.142740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142740,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.m8c_c00429{transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144285,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.144685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144685,0.000000,0.000000,0.250000,0,0);}
.ma8_c00429{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.me5_c00429{transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);}
.me2_c00429{transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148485,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.maa_c00429{transform:matrix(0.149115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149115,0.000000,0.000000,0.250000,0,0);}
.ma5_c00429{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.me4_c00429{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.mcf_c00429{transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);}
.m7d_c00429{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00429{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.ma7_c00429{transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162455,0.000000,0.000000,0.250000,0,0);}
.mb6_c00429{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m99_c00429{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.md0_c00429{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.mb7_c00429{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.ma1_c00429{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.mb2_c00429{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.m4b_c00429{transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);}
.me3_c00429{transform:matrix(0.167155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167155,0.000000,0.000000,0.250000,0,0);}
.ma9_c00429{transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00429{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.m67_c00429{transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169990,0.000000,0.000000,0.250000,0,0);}
.m40_c00429{transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170520,0.000000,0.000000,0.250000,0,0);}
.mb0_c00429{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.m7a_c00429{transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.mbe_c00429{transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m59_c00429{transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174260,0.000000,0.000000,0.250000,0,0);}
.m8a_c00429{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m9e_c00429{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m95_c00429{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.mc7_c00429{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m82_c00429{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177160,0.000000,0.000000,0.250000,0,0);}
.m87_c00429{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m74_c00429{transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.maf_c00429{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.mdc_c00429{transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m57_c00429{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m8d_c00429{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.m5a_c00429{transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181040,0.000000,0.000000,0.250000,0,0);}
.md2_c00429{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.m60_c00429{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.m97_c00429{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m63_c00429{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.m9c_c00429{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182970,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m7e_c00429{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.m61_c00429{transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00429{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184835,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);}
.m58_c00429{transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185530,0.000000,0.000000,0.250000,0,0);}
.m48_c00429{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.185635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185635,0.000000,0.000000,0.250000,0,0);}
.mab_c00429{transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);}
.mcd_c00429{transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);}
.mcc_c00429{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.mb9_c00429{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00429{transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.mc9_c00429{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.mba_c00429{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m93_c00429{transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);}
.m79_c00429{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m7b_c00429{transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);}
.m75_c00429{transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00429{transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);}
.m6d_c00429{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m7c_c00429{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00429{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.m91_c00429{transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);}
.m80_c00429{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m65_c00429{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m5c_c00429{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m85_c00429{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.mc1_c00429{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.mae_c00429{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.m76_c00429{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.mc2_c00429{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m9f_c00429{transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);}
.mc6_c00429{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m96_c00429{transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196135,0.000000,0.000000,0.250000,0,0);}
.m92_c00429{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00429{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);}
.m47_c00429{transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);}
.m8e_c00429{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.mb3_c00429{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m39_c00429{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00429{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00429{transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199455,0.000000,0.000000,0.250000,0,0);}
.m89_c00429{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.md1_c00429{transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m6f_c00429{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.mdd_c00429{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.m78_c00429{transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);}
.m6b_c00429{transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201590,0.000000,0.000000,0.250000,0,0);}
.m53_c00429{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m7f_c00429{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.mb4_c00429{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.m66_c00429{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m73_c00429{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m69_c00429{transform:matrix(0.204895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204895,0.000000,0.000000,0.250000,0,0);}
.mca_c00429{transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205520,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.mc8_c00429{transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206510,0.000000,0.000000,0.250000,0,0);}
.m62_c00429{transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);}
.mbb_c00429{transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);}
.m84_c00429{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.me7_c00429{transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);}
.m8f_c00429{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.209430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209430,0.000000,0.000000,0.250000,0,0);}
.mcb_c00429{transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);}
.m4f_c00429{transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m9a_c00429{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00429{transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m81_c00429{transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210890,0.000000,0.000000,0.250000,0,0);}
.me6_c00429{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.m90_c00429{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.m52_c00429{transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212320,0.000000,0.000000,0.250000,0,0);}
.mac_c00429{transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);}
.mce_c00429{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m86_c00429{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.mc5_c00429{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m83_c00429{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00429{transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213890,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.mdf_c00429{transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.ma0_c00429{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);}
.md8_c00429{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.md9_c00429{transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217535,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.mc0_c00429{transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);}
.mbf_c00429{transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219365,0.000000,0.000000,0.250000,0,0);}
.m3b_c00429{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mde_c00429{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220085,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.mb5_c00429{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.md5_c00429{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);}
.m88_c00429{transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);}
.m64_c00429{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m5d_c00429{transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222955,0.000000,0.000000,0.250000,0,0);}
.md7_c00429{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);}
.mdb_c00429{transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);}
.m41_c00429{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225440,0.000000,0.000000,0.250000,0,0);}
.mad_c00429{transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226220,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.md4_c00429{transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);}
.md6_c00429{transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228240,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);}
.m77_c00429{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);}
.m45_c00429{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.me8_c00429{transform:matrix(0.231090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231090,0.000000,0.000000,0.250000,0,0);}
.m42_c00429{transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);}
.m94_c00429{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m5b_c00429{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.me0_c00429{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00429{transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);}
.m54_c00429{transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);}
.m50_c00429{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);}
.mbc_c00429{transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);}
.m55_c00429{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m70_c00429{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.md3_c00429{transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.255700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255700,0.000000,0.000000,0.250000,0,0);}
.m51_c00429{transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);}
.m6e_c00429{transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);}
.m56_c00429{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m9b_c00429{transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);}
.mda_c00429{transform:matrix(0.332805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332805,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);}
.mc3_c00429{transform:matrix(0.476870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476870,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:0.000000px;}
.fc0_c00429{color:transparent;}
.fs9_c00429{font-size:52.500000px;}
.fs8_c00429{font-size:57.750000px;}
.fs7_c00429{font-size:58.800000px;}
.fs2_c00429{font-size:59.850000px;}
.fs6_c00429{font-size:60.900000px;}
.fs4_c00429{font-size:61.950000px;}
.fs5_c00429{font-size:63.000000px;}
.fs3_c00429{font-size:64.050000px;}
.fsa_c00429{font-size:65.100000px;}
.fsb_c00429{font-size:71.400000px;}
.fs1_c00429{font-size:75.600000px;}
.fs0_c00429{font-size:78.750000px;}
.y0_c00429{bottom:0.000000px;}
.y2e_c00429{bottom:21.663000px;}
.y2d_c00429{bottom:37.611000px;}
.y2c_c00429{bottom:51.088500px;}
.y2b_c00429{bottom:52.078500px;}
.y2a_c00429{bottom:52.384500px;}
.y29_c00429{bottom:52.713000px;}
.y28_c00429{bottom:54.031500px;}
.y27_c00429{bottom:54.243000px;}
.y26_c00429{bottom:55.081500px;}
.y25_c00429{bottom:73.032000px;}
.y1d_c00429{bottom:89.100000px;}
.y1e_c00429{bottom:89.806500px;}
.y1f_c00429{bottom:89.952000px;}
.y20_c00429{bottom:90.471000px;}
.y21_c00429{bottom:90.667500px;}
.y22_c00429{bottom:91.434000px;}
.y23_c00429{bottom:91.648500px;}
.y24_c00429{bottom:91.857000px;}
.y1c_c00429{bottom:107.047500px;}
.y1b_c00429{bottom:124.017000px;}
.y1a_c00429{bottom:140.853000px;}
.y19_c00429{bottom:158.017500px;}
.y18_c00429{bottom:175.381500px;}
.y17_c00429{bottom:193.083000px;}
.y16_c00429{bottom:210.060000px;}
.y15_c00429{bottom:227.007000px;}
.y14_c00429{bottom:244.501500px;}
.y13_c00429{bottom:261.121500px;}
.y12_c00429{bottom:278.013000px;}
.y11_c00429{bottom:294.751500px;}
.y10_c00429{bottom:311.598000px;}
.yf_c00429{bottom:328.648500px;}
.ye_c00429{bottom:346.168500px;}
.yd_c00429{bottom:363.648000px;}
.yc_c00429{bottom:380.544000px;}
.yb_c00429{bottom:398.097000px;}
.ya_c00429{bottom:415.345500px;}
.y9_c00429{bottom:432.175500px;}
.y8_c00429{bottom:449.097000px;}
.y7_c00429{bottom:466.227000px;}
.y6_c00429{bottom:483.100500px;}
.y5_c00429{bottom:499.498500px;}
.y4_c00429{bottom:515.935500px;}
.y3_c00429{bottom:533.334000px;}
.y2_c00429{bottom:549.775500px;}
.y1_c00429{bottom:563.485500px;}
.ha_c00429{height:52.500000px;}
.h9_c00429{height:57.750000px;}
.h8_c00429{height:58.800000px;}
.h3_c00429{height:59.850000px;}
.h7_c00429{height:60.900000px;}
.h5_c00429{height:61.950000px;}
.h6_c00429{height:63.000000px;}
.h4_c00429{height:64.050000px;}
.hb_c00429{height:65.100000px;}
.hc_c00429{height:71.400000px;}
.h2_c00429{height:75.600000px;}
.h1_c00429{height:78.750000px;}
.h0_c00429{height:608.250000px;}
.w0_c00429{width:359.100000px;}
.w1_c00429{width:359.250000px;}
.x0_c00429{left:0.000000px;}
.x7f_c00429{left:36.072000px;}
.x79_c00429{left:37.126500px;}
.x6d_c00429{left:38.340000px;}
.x63_c00429{left:39.420000px;}
.x57_c00429{left:40.500000px;}
.x4d_c00429{left:41.850000px;}
.x3f_c00429{left:42.930000px;}
.x37_c00429{left:44.010000px;}
.x2c_c00429{left:45.090000px;}
.x10_c00429{left:46.170000px;}
.x2_c00429{left:47.790000px;}
.x64_c00429{left:55.350000px;}
.x85_c00429{left:58.317000px;}
.x5e_c00429{left:61.290000px;}
.x4a_c00429{left:64.800000px;}
.x40_c00429{left:65.880000px;}
.x50_c00429{left:66.960000px;}
.xa_c00429{left:68.580000px;}
.x47_c00429{left:72.360000px;}
.x76_c00429{left:74.250000px;}
.x6a_c00429{left:76.410000px;}
.x6e_c00429{left:77.490000px;}
.x44_c00429{left:79.650000px;}
.x1a_c00429{left:83.700000px;}
.x67_c00429{left:85.320000px;}
.x5c_c00429{left:89.100000px;}
.x83_c00429{left:92.337000px;}
.x58_c00429{left:93.690000px;}
.x3_c00429{left:94.770000px;}
.x77_c00429{left:96.930000px;}
.x31_c00429{left:98.010000px;}
.x20_c00429{left:99.630000px;}
.x1b_c00429{left:102.330000px;}
.xb_c00429{left:103.950000px;}
.x15_c00429{left:105.570000px;}
.x6f_c00429{left:108.270000px;}
.x53_c00429{left:111.780000px;}
.x59_c00429{left:112.860000px;}
.x32_c00429{left:115.290000px;}
.x26_c00429{left:116.370000px;}
.x4_c00429{left:118.530000px;}
.x86_c00429{left:121.227000px;}
.x68_c00429{left:123.930000px;}
.x2d_c00429{left:125.280000px;}
.x48_c00429{left:126.630000px;}
.x3b_c00429{left:129.600000px;}
.x5f_c00429{left:132.030000px;}
.x16_c00429{left:133.110000px;}
.x6b_c00429{left:136.080000px;}
.xc_c00429{left:137.430000px;}
.x87_c00429{left:140.667000px;}
.x51_c00429{left:141.750000px;}
.x41_c00429{left:142.830000px;}
.x54_c00429{left:146.340000px;}
.x3c_c00429{left:147.690000px;}
.x17_c00429{left:150.390000px;}
.x33_c00429{left:153.090000px;}
.x84_c00429{left:157.677000px;}
.x65_c00429{left:159.300000px;}
.x27_c00429{left:160.650000px;}
.x7a_c00429{left:161.857500px;}
.x55_c00429{left:164.430000px;}
.x11_c00429{left:165.780000px;}
.x1c_c00429{left:169.830000px;}
.x5_c00429{left:171.720000px;}
.x34_c00429{left:173.340000px;}
.x78_c00429{left:176.040000px;}
.xd_c00429{left:177.390000px;}
.x21_c00429{left:179.010000px;}
.x1d_c00429{left:180.360000px;}
.x38_c00429{left:181.440000px;}
.x1_c00429{left:185.220000px;}
.x28_c00429{left:188.190000px;}
.x45_c00429{left:190.350000px;}
.x22_c00429{left:191.430000px;}
.x74_c00429{left:192.510000px;}
.x2e_c00429{left:194.400000px;}
.x60_c00429{left:202.230000px;}
.x29_c00429{left:205.470000px;}
.x5d_c00429{left:211.140000px;}
.x4b_c00429{left:213.840000px;}
.x70_c00429{left:214.920000px;}
.x7d_c00429{left:218.968500px;}
.x52_c00429{left:221.130000px;}
.x4e_c00429{left:222.210000px;}
.x6_c00429{left:225.180000px;}
.x3d_c00429{left:226.530000px;}
.x18_c00429{left:227.610000px;}
.x80_c00429{left:228.742500px;}
.x71_c00429{left:231.660000px;}
.x2f_c00429{left:233.550000px;}
.x12_c00429{left:237.060000px;}
.x66_c00429{left:238.950000px;}
.x75_c00429{left:242.190000px;}
.xe_c00429{left:243.540000px;}
.x7_c00429{left:245.430000px;}
.x69_c00429{left:246.780000px;}
.x7b_c00429{left:249.330000px;}
.x81_c00429{left:250.620000px;}
.x19_c00429{left:251.910000px;}
.x72_c00429{left:252.990000px;}
.x42_c00429{left:254.880000px;}
.x23_c00429{left:257.040000px;}
.x8_c00429{left:261.900000px;}
.x61_c00429{left:263.520000px;}
.x1e_c00429{left:267.300000px;}
.x88_c00429{left:268.647000px;}
.x4c_c00429{left:269.730000px;}
.x5a_c00429{left:272.430000px;}
.x73_c00429{left:275.940000px;}
.x6c_c00429{left:278.370000px;}
.x24_c00429{left:281.880000px;}
.x2a_c00429{left:283.230000px;}
.x62_c00429{left:284.310000px;}
.x39_c00429{left:285.930000px;}
.x7c_c00429{left:287.682000px;}
.x46_c00429{left:289.980000px;}
.x3e_c00429{left:293.220000px;}
.x35_c00429{left:298.890000px;}
.x3a_c00429{left:302.670000px;}
.x56_c00429{left:304.290000px;}
.x13_c00429{left:307.530000px;}
.xf_c00429{left:309.960000px;}
.x2b_c00429{left:311.040000px;}
.x7e_c00429{left:312.928500px;}
.x43_c00429{left:317.250000px;}
.x5b_c00429{left:319.410000px;}
.x82_c00429{left:321.285000px;}
.x9_c00429{left:322.650000px;}
.x36_c00429{left:325.350000px;}
.x4f_c00429{left:326.700000px;}
.x14_c00429{left:328.320000px;}
.x30_c00429{left:331.290000px;}
.x49_c00429{left:333.180000px;}
.x25_c00429{left:336.420000px;}
.x1f_c00429{left:356.940000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.fs9_c00429{font-size:46.666667pt;}
.fs8_c00429{font-size:51.333333pt;}
.fs7_c00429{font-size:52.266667pt;}
.fs2_c00429{font-size:53.200000pt;}
.fs6_c00429{font-size:54.133333pt;}
.fs4_c00429{font-size:55.066667pt;}
.fs5_c00429{font-size:56.000000pt;}
.fs3_c00429{font-size:56.933333pt;}
.fsa_c00429{font-size:57.866667pt;}
.fsb_c00429{font-size:63.466667pt;}
.fs1_c00429{font-size:67.200000pt;}
.fs0_c00429{font-size:70.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y2e_c00429{bottom:19.256000pt;}
.y2d_c00429{bottom:33.432000pt;}
.y2c_c00429{bottom:45.412000pt;}
.y2b_c00429{bottom:46.292000pt;}
.y2a_c00429{bottom:46.564000pt;}
.y29_c00429{bottom:46.856000pt;}
.y28_c00429{bottom:48.028000pt;}
.y27_c00429{bottom:48.216000pt;}
.y26_c00429{bottom:48.961333pt;}
.y25_c00429{bottom:64.917333pt;}
.y1d_c00429{bottom:79.200000pt;}
.y1e_c00429{bottom:79.828000pt;}
.y1f_c00429{bottom:79.957333pt;}
.y20_c00429{bottom:80.418667pt;}
.y21_c00429{bottom:80.593333pt;}
.y22_c00429{bottom:81.274667pt;}
.y23_c00429{bottom:81.465333pt;}
.y24_c00429{bottom:81.650667pt;}
.y1c_c00429{bottom:95.153333pt;}
.y1b_c00429{bottom:110.237333pt;}
.y1a_c00429{bottom:125.202667pt;}
.y19_c00429{bottom:140.460000pt;}
.y18_c00429{bottom:155.894667pt;}
.y17_c00429{bottom:171.629333pt;}
.y16_c00429{bottom:186.720000pt;}
.y15_c00429{bottom:201.784000pt;}
.y14_c00429{bottom:217.334667pt;}
.y13_c00429{bottom:232.108000pt;}
.y12_c00429{bottom:247.122667pt;}
.y11_c00429{bottom:262.001333pt;}
.y10_c00429{bottom:276.976000pt;}
.yf_c00429{bottom:292.132000pt;}
.ye_c00429{bottom:307.705333pt;}
.yd_c00429{bottom:323.242667pt;}
.yc_c00429{bottom:338.261333pt;}
.yb_c00429{bottom:353.864000pt;}
.ya_c00429{bottom:369.196000pt;}
.y9_c00429{bottom:384.156000pt;}
.y8_c00429{bottom:399.197333pt;}
.y7_c00429{bottom:414.424000pt;}
.y6_c00429{bottom:429.422667pt;}
.y5_c00429{bottom:443.998667pt;}
.y4_c00429{bottom:458.609333pt;}
.y3_c00429{bottom:474.074667pt;}
.y2_c00429{bottom:488.689333pt;}
.y1_c00429{bottom:500.876000pt;}
.ha_c00429{height:46.666667pt;}
.h9_c00429{height:51.333333pt;}
.h8_c00429{height:52.266667pt;}
.h3_c00429{height:53.200000pt;}
.h7_c00429{height:54.133333pt;}
.h5_c00429{height:55.066667pt;}
.h6_c00429{height:56.000000pt;}
.h4_c00429{height:56.933333pt;}
.hb_c00429{height:57.866667pt;}
.hc_c00429{height:63.466667pt;}
.h2_c00429{height:67.200000pt;}
.h1_c00429{height:70.000000pt;}
.h0_c00429{height:540.666667pt;}
.w0_c00429{width:319.200000pt;}
.w1_c00429{width:319.333333pt;}
.x0_c00429{left:0.000000pt;}
.x7f_c00429{left:32.064000pt;}
.x79_c00429{left:33.001333pt;}
.x6d_c00429{left:34.080000pt;}
.x63_c00429{left:35.040000pt;}
.x57_c00429{left:36.000000pt;}
.x4d_c00429{left:37.200000pt;}
.x3f_c00429{left:38.160000pt;}
.x37_c00429{left:39.120000pt;}
.x2c_c00429{left:40.080000pt;}
.x10_c00429{left:41.040000pt;}
.x2_c00429{left:42.480000pt;}
.x64_c00429{left:49.200000pt;}
.x85_c00429{left:51.837333pt;}
.x5e_c00429{left:54.480000pt;}
.x4a_c00429{left:57.600000pt;}
.x40_c00429{left:58.560000pt;}
.x50_c00429{left:59.520000pt;}
.xa_c00429{left:60.960000pt;}
.x47_c00429{left:64.320000pt;}
.x76_c00429{left:66.000000pt;}
.x6a_c00429{left:67.920000pt;}
.x6e_c00429{left:68.880000pt;}
.x44_c00429{left:70.800000pt;}
.x1a_c00429{left:74.400000pt;}
.x67_c00429{left:75.840000pt;}
.x5c_c00429{left:79.200000pt;}
.x83_c00429{left:82.077333pt;}
.x58_c00429{left:83.280000pt;}
.x3_c00429{left:84.240000pt;}
.x77_c00429{left:86.160000pt;}
.x31_c00429{left:87.120000pt;}
.x20_c00429{left:88.560000pt;}
.x1b_c00429{left:90.960000pt;}
.xb_c00429{left:92.400000pt;}
.x15_c00429{left:93.840000pt;}
.x6f_c00429{left:96.240000pt;}
.x53_c00429{left:99.360000pt;}
.x59_c00429{left:100.320000pt;}
.x32_c00429{left:102.480000pt;}
.x26_c00429{left:103.440000pt;}
.x4_c00429{left:105.360000pt;}
.x86_c00429{left:107.757333pt;}
.x68_c00429{left:110.160000pt;}
.x2d_c00429{left:111.360000pt;}
.x48_c00429{left:112.560000pt;}
.x3b_c00429{left:115.200000pt;}
.x5f_c00429{left:117.360000pt;}
.x16_c00429{left:118.320000pt;}
.x6b_c00429{left:120.960000pt;}
.xc_c00429{left:122.160000pt;}
.x87_c00429{left:125.037333pt;}
.x51_c00429{left:126.000000pt;}
.x41_c00429{left:126.960000pt;}
.x54_c00429{left:130.080000pt;}
.x3c_c00429{left:131.280000pt;}
.x17_c00429{left:133.680000pt;}
.x33_c00429{left:136.080000pt;}
.x84_c00429{left:140.157333pt;}
.x65_c00429{left:141.600000pt;}
.x27_c00429{left:142.800000pt;}
.x7a_c00429{left:143.873333pt;}
.x55_c00429{left:146.160000pt;}
.x11_c00429{left:147.360000pt;}
.x1c_c00429{left:150.960000pt;}
.x5_c00429{left:152.640000pt;}
.x34_c00429{left:154.080000pt;}
.x78_c00429{left:156.480000pt;}
.xd_c00429{left:157.680000pt;}
.x21_c00429{left:159.120000pt;}
.x1d_c00429{left:160.320000pt;}
.x38_c00429{left:161.280000pt;}
.x1_c00429{left:164.640000pt;}
.x28_c00429{left:167.280000pt;}
.x45_c00429{left:169.200000pt;}
.x22_c00429{left:170.160000pt;}
.x74_c00429{left:171.120000pt;}
.x2e_c00429{left:172.800000pt;}
.x60_c00429{left:179.760000pt;}
.x29_c00429{left:182.640000pt;}
.x5d_c00429{left:187.680000pt;}
.x4b_c00429{left:190.080000pt;}
.x70_c00429{left:191.040000pt;}
.x7d_c00429{left:194.638667pt;}
.x52_c00429{left:196.560000pt;}
.x4e_c00429{left:197.520000pt;}
.x6_c00429{left:200.160000pt;}
.x3d_c00429{left:201.360000pt;}
.x18_c00429{left:202.320000pt;}
.x80_c00429{left:203.326667pt;}
.x71_c00429{left:205.920000pt;}
.x2f_c00429{left:207.600000pt;}
.x12_c00429{left:210.720000pt;}
.x66_c00429{left:212.400000pt;}
.x75_c00429{left:215.280000pt;}
.xe_c00429{left:216.480000pt;}
.x7_c00429{left:218.160000pt;}
.x69_c00429{left:219.360000pt;}
.x7b_c00429{left:221.626667pt;}
.x81_c00429{left:222.773333pt;}
.x19_c00429{left:223.920000pt;}
.x72_c00429{left:224.880000pt;}
.x42_c00429{left:226.560000pt;}
.x23_c00429{left:228.480000pt;}
.x8_c00429{left:232.800000pt;}
.x61_c00429{left:234.240000pt;}
.x1e_c00429{left:237.600000pt;}
.x88_c00429{left:238.797333pt;}
.x4c_c00429{left:239.760000pt;}
.x5a_c00429{left:242.160000pt;}
.x73_c00429{left:245.280000pt;}
.x6c_c00429{left:247.440000pt;}
.x24_c00429{left:250.560000pt;}
.x2a_c00429{left:251.760000pt;}
.x62_c00429{left:252.720000pt;}
.x39_c00429{left:254.160000pt;}
.x7c_c00429{left:255.717333pt;}
.x46_c00429{left:257.760000pt;}
.x3e_c00429{left:260.640000pt;}
.x35_c00429{left:265.680000pt;}
.x3a_c00429{left:269.040000pt;}
.x56_c00429{left:270.480000pt;}
.x13_c00429{left:273.360000pt;}
.xf_c00429{left:275.520000pt;}
.x2b_c00429{left:276.480000pt;}
.x7e_c00429{left:278.158667pt;}
.x43_c00429{left:282.000000pt;}
.x5b_c00429{left:283.920000pt;}
.x82_c00429{left:285.586667pt;}
.x9_c00429{left:286.800000pt;}
.x36_c00429{left:289.200000pt;}
.x4f_c00429{left:290.400000pt;}
.x14_c00429{left:291.840000pt;}
.x30_c00429{left:294.480000pt;}
.x49_c00429{left:296.160000pt;}
.x25_c00429{left:299.040000pt;}
.x1f_c00429{left:317.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00430 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00430 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00430 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00430 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00430.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me5_c00430{transform:matrix(0.015448,-0.000263,0.004249,0.249964,0,0);-ms-transform:matrix(0.015448,-0.000263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015448,-0.000263,0.004249,0.249964,0,0);}
.m1_c00430{transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060610,0.000000,0.000000,0.250000,0,0);}
.mf6_c00430{transform:matrix(0.093165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093165,0.000000,0.000000,0.250000,0,0);}
.m9a_c00430{transform:matrix(0.130546,-0.002219,0.004249,0.249964,0,0);-ms-transform:matrix(0.130546,-0.002219,0.004249,0.249964,0,0);-webkit-transform:matrix(0.130546,-0.002219,0.004249,0.249964,0,0);}
.m61_c00430{transform:matrix(0.134816,-0.002292,0.004249,0.249964,0,0);-ms-transform:matrix(0.134816,-0.002292,0.004249,0.249964,0,0);-webkit-transform:matrix(0.134816,-0.002292,0.004249,0.249964,0,0);}
.ma9_c00430{transform:matrix(0.140850,-0.002394,0.004249,0.249964,0,0);-ms-transform:matrix(0.140850,-0.002394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140850,-0.002394,0.004249,0.249964,0,0);}
.m83_c00430{transform:matrix(0.141640,-0.002408,0.004249,0.249964,0,0);-ms-transform:matrix(0.141640,-0.002408,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141640,-0.002408,0.004249,0.249964,0,0);}
.ma0_c00430{transform:matrix(0.149778,-0.002546,0.004249,0.249964,0,0);-ms-transform:matrix(0.149778,-0.002546,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149778,-0.002546,0.004249,0.249964,0,0);}
.m86_c00430{transform:matrix(0.150543,-0.002559,0.004249,0.249964,0,0);-ms-transform:matrix(0.150543,-0.002559,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150543,-0.002559,0.004249,0.249964,0,0);}
.m4a_c00430{transform:matrix(0.150983,-0.002567,0.004249,0.249964,0,0);-ms-transform:matrix(0.150983,-0.002567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150983,-0.002567,0.004249,0.249964,0,0);}
.mc_c00430{transform:matrix(0.151918,-0.002583,0.004249,0.249964,0,0);-ms-transform:matrix(0.151918,-0.002583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151918,-0.002583,0.004249,0.249964,0,0);}
.me0_c00430{transform:matrix(0.152043,-0.002585,0.004249,0.249964,0,0);-ms-transform:matrix(0.152043,-0.002585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152043,-0.002585,0.004249,0.249964,0,0);}
.m88_c00430{transform:matrix(0.152173,-0.002587,0.004249,0.249964,0,0);-ms-transform:matrix(0.152173,-0.002587,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152173,-0.002587,0.004249,0.249964,0,0);}
.ma3_c00430{transform:matrix(0.153938,-0.002617,0.004249,0.249964,0,0);-ms-transform:matrix(0.153938,-0.002617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153938,-0.002617,0.004249,0.249964,0,0);}
.m1a_c00430{transform:matrix(0.154053,-0.002619,0.004249,0.249964,0,0);-ms-transform:matrix(0.154053,-0.002619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154053,-0.002619,0.004249,0.249964,0,0);}
.m9c_c00430{transform:matrix(0.154583,-0.002628,0.004249,0.249964,0,0);-ms-transform:matrix(0.154583,-0.002628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154583,-0.002628,0.004249,0.249964,0,0);}
.m9_c00430{transform:matrix(0.155353,-0.002641,0.004249,0.249964,0,0);-ms-transform:matrix(0.155353,-0.002641,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155353,-0.002641,0.004249,0.249964,0,0);}
.mbb_c00430{transform:matrix(0.155703,-0.002647,0.004249,0.249964,0,0);-ms-transform:matrix(0.155703,-0.002647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155703,-0.002647,0.004249,0.249964,0,0);}
.mdb_c00430{transform:matrix(0.155822,-0.002649,0.004249,0.249964,0,0);-ms-transform:matrix(0.155822,-0.002649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155822,-0.002649,0.004249,0.249964,0,0);}
.m1d_c00430{transform:matrix(0.156317,-0.002657,0.004249,0.249964,0,0);-ms-transform:matrix(0.156317,-0.002657,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156317,-0.002657,0.004249,0.249964,0,0);}
.m9d_c00430{transform:matrix(0.157357,-0.002675,0.004249,0.249964,0,0);-ms-transform:matrix(0.157357,-0.002675,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157357,-0.002675,0.004249,0.249964,0,0);}
.m5d_c00430{transform:matrix(0.157472,-0.002677,0.004249,0.249964,0,0);-ms-transform:matrix(0.157472,-0.002677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157472,-0.002677,0.004249,0.249964,0,0);}
.m34_c00430{transform:matrix(0.158172,-0.002689,0.004249,0.249964,0,0);-ms-transform:matrix(0.158172,-0.002689,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158172,-0.002689,0.004249,0.249964,0,0);}
.m8e_c00430{transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);-ms-transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);}
.m56_c00430{transform:matrix(0.159007,-0.002703,0.004249,0.249964,0,0);-ms-transform:matrix(0.159007,-0.002703,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159007,-0.002703,0.004249,0.249964,0,0);}
.m6a_c00430{transform:matrix(0.160902,-0.002735,0.004249,0.249964,0,0);-ms-transform:matrix(0.160902,-0.002735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160902,-0.002735,0.004249,0.249964,0,0);}
.mb6_c00430{transform:matrix(0.162277,-0.002759,0.004249,0.249964,0,0);-ms-transform:matrix(0.162277,-0.002759,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162277,-0.002759,0.004249,0.249964,0,0);}
.m18_c00430{transform:matrix(0.162577,-0.002764,0.004249,0.249964,0,0);-ms-transform:matrix(0.162577,-0.002764,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162577,-0.002764,0.004249,0.249964,0,0);}
.mb8_c00430{transform:matrix(0.162686,-0.002766,0.004249,0.249964,0,0);-ms-transform:matrix(0.162686,-0.002766,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162686,-0.002766,0.004249,0.249964,0,0);}
.m87_c00430{transform:matrix(0.163021,-0.002771,0.004249,0.249964,0,0);-ms-transform:matrix(0.163021,-0.002771,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163021,-0.002771,0.004249,0.249964,0,0);}
.mbd_c00430{transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);-ms-transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163041,-0.002772,0.004249,0.249964,0,0);}
.mf1_c00430{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00430{transform:matrix(0.164156,-0.002791,0.004249,0.249964,0,0);-ms-transform:matrix(0.164156,-0.002791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164156,-0.002791,0.004249,0.249964,0,0);}
.md7_c00430{transform:matrix(0.164196,-0.002791,0.004249,0.249964,0,0);-ms-transform:matrix(0.164196,-0.002791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164196,-0.002791,0.004249,0.249964,0,0);}
.m9b_c00430{transform:matrix(0.164236,-0.002792,0.004249,0.249964,0,0);-ms-transform:matrix(0.164236,-0.002792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164236,-0.002792,0.004249,0.249964,0,0);}
.mdf_c00430{transform:matrix(0.164706,-0.002800,0.004249,0.249964,0,0);-ms-transform:matrix(0.164706,-0.002800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164706,-0.002800,0.004249,0.249964,0,0);}
.mf0_c00430{transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164740,0.000000,0.000000,0.250000,0,0);}
.m98_c00430{transform:matrix(0.164876,-0.002803,0.004249,0.249964,0,0);-ms-transform:matrix(0.164876,-0.002803,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164876,-0.002803,0.004249,0.249964,0,0);}
.ma5_c00430{transform:matrix(0.165126,-0.002807,0.004249,0.249964,0,0);-ms-transform:matrix(0.165126,-0.002807,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165126,-0.002807,0.004249,0.249964,0,0);}
.maa_c00430{transform:matrix(0.165391,-0.002812,0.004249,0.249964,0,0);-ms-transform:matrix(0.165391,-0.002812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165391,-0.002812,0.004249,0.249964,0,0);}
.m82_c00430{transform:matrix(0.166601,-0.002832,0.004249,0.249964,0,0);-ms-transform:matrix(0.166601,-0.002832,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166601,-0.002832,0.004249,0.249964,0,0);}
.m7e_c00430{transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);}
.mab_c00430{transform:matrix(0.168191,-0.002859,0.004249,0.249964,0,0);-ms-transform:matrix(0.168191,-0.002859,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168191,-0.002859,0.004249,0.249964,0,0);}
.m0_c00430{transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);}
.mc7_c00430{transform:matrix(0.169386,-0.002880,0.004249,0.249964,0,0);-ms-transform:matrix(0.169386,-0.002880,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169386,-0.002880,0.004249,0.249964,0,0);}
.m62_c00430{transform:matrix(0.169625,-0.002884,0.004249,0.249964,0,0);-ms-transform:matrix(0.169625,-0.002884,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169625,-0.002884,0.004249,0.249964,0,0);}
.m10_c00430{transform:matrix(0.169730,-0.002885,0.004249,0.249964,0,0);-ms-transform:matrix(0.169730,-0.002885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169730,-0.002885,0.004249,0.249964,0,0);}
.m81_c00430{transform:matrix(0.169995,-0.002890,0.004249,0.249964,0,0);-ms-transform:matrix(0.169995,-0.002890,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169995,-0.002890,0.004249,0.249964,0,0);}
.m21_c00430{transform:matrix(0.170380,-0.002896,0.004249,0.249964,0,0);-ms-transform:matrix(0.170380,-0.002896,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170380,-0.002896,0.004249,0.249964,0,0);}
.m5b_c00430{transform:matrix(0.170970,-0.002906,0.004249,0.249964,0,0);-ms-transform:matrix(0.170970,-0.002906,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170970,-0.002906,0.004249,0.249964,0,0);}
.m36_c00430{transform:matrix(0.171280,-0.002912,0.004249,0.249964,0,0);-ms-transform:matrix(0.171280,-0.002912,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171280,-0.002912,0.004249,0.249964,0,0);}
.m40_c00430{transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171405,-0.002914,0.004249,0.249964,0,0);}
.mb_c00430{transform:matrix(0.171710,-0.002919,0.004249,0.249964,0,0);-ms-transform:matrix(0.171710,-0.002919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171710,-0.002919,0.004249,0.249964,0,0);}
.me_c00430{transform:matrix(0.171745,-0.002920,0.004249,0.249964,0,0);-ms-transform:matrix(0.171745,-0.002920,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171745,-0.002920,0.004249,0.249964,0,0);}
.m3a_c00430{transform:matrix(0.172490,-0.002932,0.004249,0.249964,0,0);-ms-transform:matrix(0.172490,-0.002932,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172490,-0.002932,0.004249,0.249964,0,0);}
.me4_c00430{transform:matrix(0.172530,-0.002933,0.004249,0.249964,0,0);-ms-transform:matrix(0.172530,-0.002933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172530,-0.002933,0.004249,0.249964,0,0);}
.md5_c00430{transform:matrix(0.172830,-0.002938,0.004249,0.249964,0,0);-ms-transform:matrix(0.172830,-0.002938,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172830,-0.002938,0.004249,0.249964,0,0);}
.mb5_c00430{transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);-ms-transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172965,-0.002940,0.004249,0.249964,0,0);}
.m11_c00430{transform:matrix(0.173200,-0.002944,0.004249,0.249964,0,0);-ms-transform:matrix(0.173200,-0.002944,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173200,-0.002944,0.004249,0.249964,0,0);}
.m8c_c00430{transform:matrix(0.174155,-0.002961,0.004249,0.249964,0,0);-ms-transform:matrix(0.174155,-0.002961,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174155,-0.002961,0.004249,0.249964,0,0);}
.m35_c00430{transform:matrix(0.174215,-0.002962,0.004249,0.249964,0,0);-ms-transform:matrix(0.174215,-0.002962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174215,-0.002962,0.004249,0.249964,0,0);}
.me2_c00430{transform:matrix(0.174615,-0.002968,0.004249,0.249964,0,0);-ms-transform:matrix(0.174615,-0.002968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174615,-0.002968,0.004249,0.249964,0,0);}
.mde_c00430{transform:matrix(0.174655,-0.002969,0.004249,0.249964,0,0);-ms-transform:matrix(0.174655,-0.002969,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174655,-0.002969,0.004249,0.249964,0,0);}
.mf8_c00430{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.m85_c00430{transform:matrix(0.175415,-0.002982,0.004249,0.249964,0,0);-ms-transform:matrix(0.175415,-0.002982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175415,-0.002982,0.004249,0.249964,0,0);}
.m1b_c00430{transform:matrix(0.175585,-0.002985,0.004249,0.249964,0,0);-ms-transform:matrix(0.175585,-0.002985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175585,-0.002985,0.004249,0.249964,0,0);}
.mf4_c00430{transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175610,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.175815,-0.002989,0.004249,0.249964,0,0);-ms-transform:matrix(0.175815,-0.002989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175815,-0.002989,0.004249,0.249964,0,0);}
.mda_c00430{transform:matrix(0.176295,-0.002997,0.004249,0.249964,0,0);-ms-transform:matrix(0.176295,-0.002997,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176295,-0.002997,0.004249,0.249964,0,0);}
.mb1_c00430{transform:matrix(0.176519,-0.003001,0.004249,0.249964,0,0);-ms-transform:matrix(0.176519,-0.003001,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176519,-0.003001,0.004249,0.249964,0,0);}
.m78_c00430{transform:matrix(0.176849,-0.003006,0.004249,0.249964,0,0);-ms-transform:matrix(0.176849,-0.003006,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176849,-0.003006,0.004249,0.249964,0,0);}
.mf7_c00430{transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.177904,-0.003024,0.004249,0.249964,0,0);-ms-transform:matrix(0.177904,-0.003024,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177904,-0.003024,0.004249,0.249964,0,0);}
.mb0_c00430{transform:matrix(0.178314,-0.003031,0.004249,0.249964,0,0);-ms-transform:matrix(0.178314,-0.003031,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178314,-0.003031,0.004249,0.249964,0,0);}
.m7a_c00430{transform:matrix(0.178489,-0.003034,0.004249,0.249964,0,0);-ms-transform:matrix(0.178489,-0.003034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178489,-0.003034,0.004249,0.249964,0,0);}
.m5c_c00430{transform:matrix(0.178729,-0.003038,0.004249,0.249964,0,0);-ms-transform:matrix(0.178729,-0.003038,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178729,-0.003038,0.004249,0.249964,0,0);}
.mcf_c00430{transform:matrix(0.178879,-0.003041,0.004249,0.249964,0,0);-ms-transform:matrix(0.178879,-0.003041,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178879,-0.003041,0.004249,0.249964,0,0);}
.m6c_c00430{transform:matrix(0.178894,-0.003041,0.004249,0.249964,0,0);-ms-transform:matrix(0.178894,-0.003041,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178894,-0.003041,0.004249,0.249964,0,0);}
.m16_c00430{transform:matrix(0.179099,-0.003045,0.004249,0.249964,0,0);-ms-transform:matrix(0.179099,-0.003045,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179099,-0.003045,0.004249,0.249964,0,0);}
.m4d_c00430{transform:matrix(0.179584,-0.003053,0.004249,0.249964,0,0);-ms-transform:matrix(0.179584,-0.003053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179584,-0.003053,0.004249,0.249964,0,0);}
.mac_c00430{transform:matrix(0.179934,-0.003059,0.004249,0.249964,0,0);-ms-transform:matrix(0.179934,-0.003059,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179934,-0.003059,0.004249,0.249964,0,0);}
.mb9_c00430{transform:matrix(0.180044,-0.003061,0.004249,0.249964,0,0);-ms-transform:matrix(0.180044,-0.003061,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180044,-0.003061,0.004249,0.249964,0,0);}
.mdc_c00430{transform:matrix(0.180474,-0.003068,0.004249,0.249964,0,0);-ms-transform:matrix(0.180474,-0.003068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180474,-0.003068,0.004249,0.249964,0,0);}
.m31_c00430{transform:matrix(0.180579,-0.003070,0.004249,0.249964,0,0);-ms-transform:matrix(0.180579,-0.003070,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180579,-0.003070,0.004249,0.249964,0,0);}
.m28_c00430{transform:matrix(0.180959,-0.003076,0.004249,0.249964,0,0);-ms-transform:matrix(0.180959,-0.003076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180959,-0.003076,0.004249,0.249964,0,0);}
.ma8_c00430{transform:matrix(0.181304,-0.003082,0.004249,0.249964,0,0);-ms-transform:matrix(0.181304,-0.003082,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181304,-0.003082,0.004249,0.249964,0,0);}
.m9e_c00430{transform:matrix(0.181669,-0.003088,0.004249,0.249964,0,0);-ms-transform:matrix(0.181669,-0.003088,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181669,-0.003088,0.004249,0.249964,0,0);}
.md1_c00430{transform:matrix(0.181889,-0.003092,0.004249,0.249964,0,0);-ms-transform:matrix(0.181889,-0.003092,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181889,-0.003092,0.004249,0.249964,0,0);}
.mc6_c00430{transform:matrix(0.182399,-0.003101,0.004249,0.249964,0,0);-ms-transform:matrix(0.182399,-0.003101,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182399,-0.003101,0.004249,0.249964,0,0);}
.m4b_c00430{transform:matrix(0.182419,-0.003101,0.004249,0.249964,0,0);-ms-transform:matrix(0.182419,-0.003101,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182419,-0.003101,0.004249,0.249964,0,0);}
.maf_c00430{transform:matrix(0.182509,-0.003103,0.004249,0.249964,0,0);-ms-transform:matrix(0.182509,-0.003103,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182509,-0.003103,0.004249,0.249964,0,0);}
.m25_c00430{transform:matrix(0.182864,-0.003109,0.004249,0.249964,0,0);-ms-transform:matrix(0.182864,-0.003109,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182864,-0.003109,0.004249,0.249964,0,0);}
.ma_c00430{transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);-ms-transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182929,-0.003110,0.004249,0.249964,0,0);}
.mce_c00430{transform:matrix(0.183443,-0.003119,0.004249,0.249964,0,0);-ms-transform:matrix(0.183443,-0.003119,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183443,-0.003119,0.004249,0.249964,0,0);}
.m49_c00430{transform:matrix(0.183483,-0.003119,0.004249,0.249964,0,0);-ms-transform:matrix(0.183483,-0.003119,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183483,-0.003119,0.004249,0.249964,0,0);}
.ma7_c00430{transform:matrix(0.183643,-0.003122,0.004249,0.249964,0,0);-ms-transform:matrix(0.183643,-0.003122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183643,-0.003122,0.004249,0.249964,0,0);}
.me1_c00430{transform:matrix(0.184623,-0.003139,0.004249,0.249964,0,0);-ms-transform:matrix(0.184623,-0.003139,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184623,-0.003139,0.004249,0.249964,0,0);}
.m13_c00430{transform:matrix(0.184718,-0.003140,0.004249,0.249964,0,0);-ms-transform:matrix(0.184718,-0.003140,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184718,-0.003140,0.004249,0.249964,0,0);}
.me3_c00430{transform:matrix(0.184813,-0.003142,0.004249,0.249964,0,0);-ms-transform:matrix(0.184813,-0.003142,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184813,-0.003142,0.004249,0.249964,0,0);}
.m3e_c00430{transform:matrix(0.184868,-0.003143,0.004249,0.249964,0,0);-ms-transform:matrix(0.184868,-0.003143,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184868,-0.003143,0.004249,0.249964,0,0);}
.m3c_c00430{transform:matrix(0.185008,-0.003145,0.004249,0.249964,0,0);-ms-transform:matrix(0.185008,-0.003145,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185008,-0.003145,0.004249,0.249964,0,0);}
.m4f_c00430{transform:matrix(0.185043,-0.003146,0.004249,0.249964,0,0);-ms-transform:matrix(0.185043,-0.003146,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185043,-0.003146,0.004249,0.249964,0,0);}
.m51_c00430{transform:matrix(0.185133,-0.003147,0.004249,0.249964,0,0);-ms-transform:matrix(0.185133,-0.003147,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185133,-0.003147,0.004249,0.249964,0,0);}
.m2e_c00430{transform:matrix(0.185273,-0.003150,0.004249,0.249964,0,0);-ms-transform:matrix(0.185273,-0.003150,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185273,-0.003150,0.004249,0.249964,0,0);}
.mf_c00430{transform:matrix(0.185353,-0.003151,0.004249,0.249964,0,0);-ms-transform:matrix(0.185353,-0.003151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185353,-0.003151,0.004249,0.249964,0,0);}
.m8_c00430{transform:matrix(0.185378,-0.003151,0.004249,0.249964,0,0);-ms-transform:matrix(0.185378,-0.003151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185378,-0.003151,0.004249,0.249964,0,0);}
.m23_c00430{transform:matrix(0.186803,-0.003176,0.004249,0.249964,0,0);-ms-transform:matrix(0.186803,-0.003176,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186803,-0.003176,0.004249,0.249964,0,0);}
.m22_c00430{transform:matrix(0.187248,-0.003183,0.004249,0.249964,0,0);-ms-transform:matrix(0.187248,-0.003183,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187248,-0.003183,0.004249,0.249964,0,0);}
.m5e_c00430{transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);-ms-transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);}
.m41_c00430{transform:matrix(0.188343,-0.003202,0.004249,0.249964,0,0);-ms-transform:matrix(0.188343,-0.003202,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188343,-0.003202,0.004249,0.249964,0,0);}
.ma2_c00430{transform:matrix(0.188463,-0.003204,0.004249,0.249964,0,0);-ms-transform:matrix(0.188463,-0.003204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188463,-0.003204,0.004249,0.249964,0,0);}
.m46_c00430{transform:matrix(0.189063,-0.003214,0.004249,0.249964,0,0);-ms-transform:matrix(0.189063,-0.003214,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189063,-0.003214,0.004249,0.249964,0,0);}
.m33_c00430{transform:matrix(0.189233,-0.003217,0.004249,0.249964,0,0);-ms-transform:matrix(0.189233,-0.003217,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189233,-0.003217,0.004249,0.249964,0,0);}
.mc5_c00430{transform:matrix(0.189308,-0.003218,0.004249,0.249964,0,0);-ms-transform:matrix(0.189308,-0.003218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189308,-0.003218,0.004249,0.249964,0,0);}
.m80_c00430{transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);-ms-transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189328,-0.003219,0.004249,0.249964,0,0);}
.m94_c00430{transform:matrix(0.189963,-0.003229,0.004249,0.249964,0,0);-ms-transform:matrix(0.189963,-0.003229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189963,-0.003229,0.004249,0.249964,0,0);}
.md0_c00430{transform:matrix(0.190173,-0.003233,0.004249,0.249964,0,0);-ms-transform:matrix(0.190173,-0.003233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190173,-0.003233,0.004249,0.249964,0,0);}
.mba_c00430{transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);-ms-transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190852,-0.003244,0.004249,0.249964,0,0);}
.mad_c00430{transform:matrix(0.191062,-0.003248,0.004249,0.249964,0,0);-ms-transform:matrix(0.191062,-0.003248,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191062,-0.003248,0.004249,0.249964,0,0);}
.m89_c00430{transform:matrix(0.191162,-0.003250,0.004249,0.249964,0,0);-ms-transform:matrix(0.191162,-0.003250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191162,-0.003250,0.004249,0.249964,0,0);}
.m2c_c00430{transform:matrix(0.191282,-0.003252,0.004249,0.249964,0,0);-ms-transform:matrix(0.191282,-0.003252,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191282,-0.003252,0.004249,0.249964,0,0);}
.m39_c00430{transform:matrix(0.191592,-0.003257,0.004249,0.249964,0,0);-ms-transform:matrix(0.191592,-0.003257,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191592,-0.003257,0.004249,0.249964,0,0);}
.m59_c00430{transform:matrix(0.191732,-0.003259,0.004249,0.249964,0,0);-ms-transform:matrix(0.191732,-0.003259,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191732,-0.003259,0.004249,0.249964,0,0);}
.m5a_c00430{transform:matrix(0.191877,-0.003262,0.004249,0.249964,0,0);-ms-transform:matrix(0.191877,-0.003262,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191877,-0.003262,0.004249,0.249964,0,0);}
.m6d_c00430{transform:matrix(0.192112,-0.003266,0.004249,0.249964,0,0);-ms-transform:matrix(0.192112,-0.003266,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192112,-0.003266,0.004249,0.249964,0,0);}
.m32_c00430{transform:matrix(0.192242,-0.003268,0.004249,0.249964,0,0);-ms-transform:matrix(0.192242,-0.003268,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192242,-0.003268,0.004249,0.249964,0,0);}
.m7c_c00430{transform:matrix(0.192652,-0.003275,0.004249,0.249964,0,0);-ms-transform:matrix(0.192652,-0.003275,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192652,-0.003275,0.004249,0.249964,0,0);}
.mbc_c00430{transform:matrix(0.192737,-0.003277,0.004249,0.249964,0,0);-ms-transform:matrix(0.192737,-0.003277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192737,-0.003277,0.004249,0.249964,0,0);}
.mb4_c00430{transform:matrix(0.193557,-0.003290,0.004249,0.249964,0,0);-ms-transform:matrix(0.193557,-0.003290,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193557,-0.003290,0.004249,0.249964,0,0);}
.m60_c00430{transform:matrix(0.193677,-0.003293,0.004249,0.249964,0,0);-ms-transform:matrix(0.193677,-0.003293,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193677,-0.003293,0.004249,0.249964,0,0);}
.m92_c00430{transform:matrix(0.193722,-0.003293,0.004249,0.249964,0,0);-ms-transform:matrix(0.193722,-0.003293,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193722,-0.003293,0.004249,0.249964,0,0);}
.m96_c00430{transform:matrix(0.194187,-0.003301,0.004249,0.249964,0,0);-ms-transform:matrix(0.194187,-0.003301,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194187,-0.003301,0.004249,0.249964,0,0);}
.mec_c00430{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.mf3_c00430{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);-ms-transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);}
.mae_c00430{transform:matrix(0.194862,-0.003313,0.004249,0.249964,0,0);-ms-transform:matrix(0.194862,-0.003313,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194862,-0.003313,0.004249,0.249964,0,0);}
.m12_c00430{transform:matrix(0.194947,-0.003314,0.004249,0.249964,0,0);-ms-transform:matrix(0.194947,-0.003314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194947,-0.003314,0.004249,0.249964,0,0);}
.mbe_c00430{transform:matrix(0.195017,-0.003315,0.004249,0.249964,0,0);-ms-transform:matrix(0.195017,-0.003315,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195017,-0.003315,0.004249,0.249964,0,0);}
.m38_c00430{transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);-ms-transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195087,-0.003316,0.004249,0.249964,0,0);}
.m3b_c00430{transform:matrix(0.195097,-0.003317,0.004249,0.249964,0,0);-ms-transform:matrix(0.195097,-0.003317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195097,-0.003317,0.004249,0.249964,0,0);}
.med_c00430{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.195267,-0.003320,0.004249,0.249964,0,0);-ms-transform:matrix(0.195267,-0.003320,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195267,-0.003320,0.004249,0.249964,0,0);}
.m3_c00430{transform:matrix(0.195277,-0.003320,0.004249,0.249964,0,0);-ms-transform:matrix(0.195277,-0.003320,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195277,-0.003320,0.004249,0.249964,0,0);}
.m20_c00430{transform:matrix(0.195362,-0.003321,0.004249,0.249964,0,0);-ms-transform:matrix(0.195362,-0.003321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195362,-0.003321,0.004249,0.249964,0,0);}
.mcd_c00430{transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);-ms-transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);}
.m84_c00430{transform:matrix(0.195542,-0.003324,0.004249,0.249964,0,0);-ms-transform:matrix(0.195542,-0.003324,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195542,-0.003324,0.004249,0.249964,0,0);}
.m1c_c00430{transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);-ms-transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195647,-0.003326,0.004249,0.249964,0,0);}
.m99_c00430{transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);-ms-transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195762,-0.003328,0.004249,0.249964,0,0);}
.mc9_c00430{transform:matrix(0.195777,-0.003328,0.004249,0.249964,0,0);-ms-transform:matrix(0.195777,-0.003328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195777,-0.003328,0.004249,0.249964,0,0);}
.m6b_c00430{transform:matrix(0.195807,-0.003329,0.004249,0.249964,0,0);-ms-transform:matrix(0.195807,-0.003329,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195807,-0.003329,0.004249,0.249964,0,0);}
.m2f_c00430{transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);}
.m66_c00430{transform:matrix(0.196477,-0.003340,0.004249,0.249964,0,0);-ms-transform:matrix(0.196477,-0.003340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196477,-0.003340,0.004249,0.249964,0,0);}
.m4_c00430{transform:matrix(0.196512,-0.003341,0.004249,0.249964,0,0);-ms-transform:matrix(0.196512,-0.003341,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196512,-0.003341,0.004249,0.249964,0,0);}
.m73_c00430{transform:matrix(0.196697,-0.003344,0.004249,0.249964,0,0);-ms-transform:matrix(0.196697,-0.003344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196697,-0.003344,0.004249,0.249964,0,0);}
.m97_c00430{transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-ms-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196952,-0.003348,0.004249,0.249964,0,0);}
.m54_c00430{transform:matrix(0.197072,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197072,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197072,-0.003350,0.004249,0.249964,0,0);}
.mf5_c00430{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.md9_c00430{transform:matrix(0.198351,-0.003372,0.004249,0.249964,0,0);-ms-transform:matrix(0.198351,-0.003372,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198351,-0.003372,0.004249,0.249964,0,0);}
.m24_c00430{transform:matrix(0.198651,-0.003377,0.004249,0.249964,0,0);-ms-transform:matrix(0.198651,-0.003377,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198651,-0.003377,0.004249,0.249964,0,0);}
.mb7_c00430{transform:matrix(0.198726,-0.003378,0.004249,0.249964,0,0);-ms-transform:matrix(0.198726,-0.003378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198726,-0.003378,0.004249,0.249964,0,0);}
.ma4_c00430{transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);-ms-transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);}
.m8f_c00430{transform:matrix(0.199211,-0.003387,0.004249,0.249964,0,0);-ms-transform:matrix(0.199211,-0.003387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199211,-0.003387,0.004249,0.249964,0,0);}
.m91_c00430{transform:matrix(0.199326,-0.003389,0.004249,0.249964,0,0);-ms-transform:matrix(0.199326,-0.003389,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199326,-0.003389,0.004249,0.249964,0,0);}
.md8_c00430{transform:matrix(0.199891,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199891,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199891,-0.003398,0.004249,0.249964,0,0);}
.mcb_c00430{transform:matrix(0.200716,-0.003412,0.004249,0.249964,0,0);-ms-transform:matrix(0.200716,-0.003412,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200716,-0.003412,0.004249,0.249964,0,0);}
.m8d_c00430{transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200921,-0.003416,0.004249,0.249964,0,0);}
.m8a_c00430{transform:matrix(0.201061,-0.003418,0.004249,0.249964,0,0);-ms-transform:matrix(0.201061,-0.003418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201061,-0.003418,0.004249,0.249964,0,0);}
.m7b_c00430{transform:matrix(0.202381,-0.003440,0.004249,0.249964,0,0);-ms-transform:matrix(0.202381,-0.003440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202381,-0.003440,0.004249,0.249964,0,0);}
.mee_c00430{transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202595,0.000000,0.000000,0.250000,0,0);}
.mc3_c00430{transform:matrix(0.202736,-0.003447,0.004249,0.249964,0,0);-ms-transform:matrix(0.202736,-0.003447,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202736,-0.003447,0.004249,0.249964,0,0);}
.m95_c00430{transform:matrix(0.202886,-0.003449,0.004249,0.249964,0,0);-ms-transform:matrix(0.202886,-0.003449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202886,-0.003449,0.004249,0.249964,0,0);}
.m93_c00430{transform:matrix(0.203346,-0.003457,0.004249,0.249964,0,0);-ms-transform:matrix(0.203346,-0.003457,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203346,-0.003457,0.004249,0.249964,0,0);}
.m1f_c00430{transform:matrix(0.203546,-0.003460,0.004249,0.249964,0,0);-ms-transform:matrix(0.203546,-0.003460,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203546,-0.003460,0.004249,0.249964,0,0);}
.md6_c00430{transform:matrix(0.203956,-0.003467,0.004249,0.249964,0,0);-ms-transform:matrix(0.203956,-0.003467,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203956,-0.003467,0.004249,0.249964,0,0);}
.m19_c00430{transform:matrix(0.204735,-0.003481,0.004249,0.249964,0,0);-ms-transform:matrix(0.204735,-0.003481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204735,-0.003481,0.004249,0.249964,0,0);}
.m6_c00430{transform:matrix(0.205675,-0.003496,0.004249,0.249964,0,0);-ms-transform:matrix(0.205675,-0.003496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205675,-0.003496,0.004249,0.249964,0,0);}
.m63_c00430{transform:matrix(0.205895,-0.003500,0.004249,0.249964,0,0);-ms-transform:matrix(0.205895,-0.003500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205895,-0.003500,0.004249,0.249964,0,0);}
.m6e_c00430{transform:matrix(0.206110,-0.003504,0.004249,0.249964,0,0);-ms-transform:matrix(0.206110,-0.003504,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206110,-0.003504,0.004249,0.249964,0,0);}
.mdd_c00430{transform:matrix(0.206200,-0.003505,0.004249,0.249964,0,0);-ms-transform:matrix(0.206200,-0.003505,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206200,-0.003505,0.004249,0.249964,0,0);}
.mef_c00430{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00430{transform:matrix(0.206825,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206825,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206825,-0.003516,0.004249,0.249964,0,0);}
.md_c00430{transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);}
.m2_c00430{transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);-ms-transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207440,-0.003526,0.004249,0.249964,0,0);}
.m17_c00430{transform:matrix(0.207840,-0.003533,0.004249,0.249964,0,0);-ms-transform:matrix(0.207840,-0.003533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207840,-0.003533,0.004249,0.249964,0,0);}
.meb_c00430{transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.208110,-0.003538,0.004249,0.249964,0,0);-ms-transform:matrix(0.208110,-0.003538,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208110,-0.003538,0.004249,0.249964,0,0);}
.m9f_c00430{transform:matrix(0.209190,-0.003556,0.004249,0.249964,0,0);-ms-transform:matrix(0.209190,-0.003556,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209190,-0.003556,0.004249,0.249964,0,0);}
.m53_c00430{transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);-ms-transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);}
.m7f_c00430{transform:matrix(0.209730,-0.003565,0.004249,0.249964,0,0);-ms-transform:matrix(0.209730,-0.003565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209730,-0.003565,0.004249,0.249964,0,0);}
.ma6_c00430{transform:matrix(0.209940,-0.003569,0.004249,0.249964,0,0);-ms-transform:matrix(0.209940,-0.003569,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209940,-0.003569,0.004249,0.249964,0,0);}
.m48_c00430{transform:matrix(0.211184,-0.003590,0.004249,0.249964,0,0);-ms-transform:matrix(0.211184,-0.003590,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211184,-0.003590,0.004249,0.249964,0,0);}
.m14_c00430{transform:matrix(0.211389,-0.003594,0.004249,0.249964,0,0);-ms-transform:matrix(0.211389,-0.003594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211389,-0.003594,0.004249,0.249964,0,0);}
.m8b_c00430{transform:matrix(0.211544,-0.003596,0.004249,0.249964,0,0);-ms-transform:matrix(0.211544,-0.003596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211544,-0.003596,0.004249,0.249964,0,0);}
.m57_c00430{transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);-ms-transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212194,-0.003607,0.004249,0.249964,0,0);}
.m47_c00430{transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-ms-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212394,-0.003611,0.004249,0.249964,0,0);}
.m71_c00430{transform:matrix(0.212629,-0.003615,0.004249,0.249964,0,0);-ms-transform:matrix(0.212629,-0.003615,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212629,-0.003615,0.004249,0.249964,0,0);}
.m75_c00430{transform:matrix(0.212864,-0.003619,0.004249,0.249964,0,0);-ms-transform:matrix(0.212864,-0.003619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212864,-0.003619,0.004249,0.249964,0,0);}
.m29_c00430{transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);-ms-transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212949,-0.003620,0.004249,0.249964,0,0);}
.m90_c00430{transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213719,-0.003633,0.004249,0.249964,0,0);}
.m5_c00430{transform:matrix(0.214349,-0.003644,0.004249,0.249964,0,0);-ms-transform:matrix(0.214349,-0.003644,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214349,-0.003644,0.004249,0.249964,0,0);}
.mc2_c00430{transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);-ms-transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214854,-0.003653,0.004249,0.249964,0,0);}
.m69_c00430{transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);-ms-transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215579,-0.003665,0.004249,0.249964,0,0);}
.mbf_c00430{transform:matrix(0.216299,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216299,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216299,-0.003677,0.004249,0.249964,0,0);}
.m27_c00430{transform:matrix(0.216674,-0.003683,0.004249,0.249964,0,0);-ms-transform:matrix(0.216674,-0.003683,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216674,-0.003683,0.004249,0.249964,0,0);}
.m4c_c00430{transform:matrix(0.217289,-0.003694,0.004249,0.249964,0,0);-ms-transform:matrix(0.217289,-0.003694,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217289,-0.003694,0.004249,0.249964,0,0);}
.m52_c00430{transform:matrix(0.217389,-0.003696,0.004249,0.249964,0,0);-ms-transform:matrix(0.217389,-0.003696,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217389,-0.003696,0.004249,0.249964,0,0);}
.m68_c00430{transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-ms-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);}
.m5f_c00430{transform:matrix(0.217589,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217589,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217589,-0.003699,0.004249,0.249964,0,0);}
.m43_c00430{transform:matrix(0.217604,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217604,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217604,-0.003699,0.004249,0.249964,0,0);}
.m37_c00430{transform:matrix(0.217869,-0.003704,0.004249,0.249964,0,0);-ms-transform:matrix(0.217869,-0.003704,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217869,-0.003704,0.004249,0.249964,0,0);}
.mb3_c00430{transform:matrix(0.219373,-0.003729,0.004249,0.249964,0,0);-ms-transform:matrix(0.219373,-0.003729,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219373,-0.003729,0.004249,0.249964,0,0);}
.m44_c00430{transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);-ms-transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219688,-0.003735,0.004249,0.249964,0,0);}
.md3_c00430{transform:matrix(0.219708,-0.003735,0.004249,0.249964,0,0);-ms-transform:matrix(0.219708,-0.003735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219708,-0.003735,0.004249,0.249964,0,0);}
.m79_c00430{transform:matrix(0.222083,-0.003775,0.004249,0.249964,0,0);-ms-transform:matrix(0.222083,-0.003775,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222083,-0.003775,0.004249,0.249964,0,0);}
.mca_c00430{transform:matrix(0.222413,-0.003781,0.004249,0.249964,0,0);-ms-transform:matrix(0.222413,-0.003781,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222413,-0.003781,0.004249,0.249964,0,0);}
.m4e_c00430{transform:matrix(0.222588,-0.003784,0.004249,0.249964,0,0);-ms-transform:matrix(0.222588,-0.003784,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222588,-0.003784,0.004249,0.249964,0,0);}
.m55_c00430{transform:matrix(0.223363,-0.003797,0.004249,0.249964,0,0);-ms-transform:matrix(0.223363,-0.003797,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223363,-0.003797,0.004249,0.249964,0,0);}
.m50_c00430{transform:matrix(0.223458,-0.003799,0.004249,0.249964,0,0);-ms-transform:matrix(0.223458,-0.003799,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223458,-0.003799,0.004249,0.249964,0,0);}
.mea_c00430{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.223973,-0.003808,0.004249,0.249964,0,0);-ms-transform:matrix(0.223973,-0.003808,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223973,-0.003808,0.004249,0.249964,0,0);}
.m6f_c00430{transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-ms-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);}
.mc0_c00430{transform:matrix(0.224977,-0.003825,0.004249,0.249964,0,0);-ms-transform:matrix(0.224977,-0.003825,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224977,-0.003825,0.004249,0.249964,0,0);}
.m58_c00430{transform:matrix(0.226127,-0.003844,0.004249,0.249964,0,0);-ms-transform:matrix(0.226127,-0.003844,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226127,-0.003844,0.004249,0.249964,0,0);}
.md4_c00430{transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-ms-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227272,-0.003864,0.004249,0.249964,0,0);}
.m70_c00430{transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);-ms-transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227687,-0.003871,0.004249,0.249964,0,0);}
.m77_c00430{transform:matrix(0.229622,-0.003904,0.004249,0.249964,0,0);-ms-transform:matrix(0.229622,-0.003904,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229622,-0.003904,0.004249,0.249964,0,0);}
.m76_c00430{transform:matrix(0.229687,-0.003905,0.004249,0.249964,0,0);-ms-transform:matrix(0.229687,-0.003905,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229687,-0.003905,0.004249,0.249964,0,0);}
.mc8_c00430{transform:matrix(0.230427,-0.003917,0.004249,0.249964,0,0);-ms-transform:matrix(0.230427,-0.003917,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230427,-0.003917,0.004249,0.249964,0,0);}
.m2b_c00430{transform:matrix(0.230527,-0.003919,0.004249,0.249964,0,0);-ms-transform:matrix(0.230527,-0.003919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230527,-0.003919,0.004249,0.249964,0,0);}
.m3f_c00430{transform:matrix(0.231896,-0.003942,0.004249,0.249964,0,0);-ms-transform:matrix(0.231896,-0.003942,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231896,-0.003942,0.004249,0.249964,0,0);}
.mc4_c00430{transform:matrix(0.232136,-0.003946,0.004249,0.249964,0,0);-ms-transform:matrix(0.232136,-0.003946,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232136,-0.003946,0.004249,0.249964,0,0);}
.md2_c00430{transform:matrix(0.237086,-0.004030,0.004249,0.249964,0,0);-ms-transform:matrix(0.237086,-0.004030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237086,-0.004030,0.004249,0.249964,0,0);}
.mc1_c00430{transform:matrix(0.237801,-0.004043,0.004249,0.249964,0,0);-ms-transform:matrix(0.237801,-0.004043,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237801,-0.004043,0.004249,0.249964,0,0);}
.m67_c00430{transform:matrix(0.238096,-0.004048,0.004249,0.249964,0,0);-ms-transform:matrix(0.238096,-0.004048,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238096,-0.004048,0.004249,0.249964,0,0);}
.mcc_c00430{transform:matrix(0.238591,-0.004056,0.004249,0.249964,0,0);-ms-transform:matrix(0.238591,-0.004056,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238591,-0.004056,0.004249,0.249964,0,0);}
.m64_c00430{transform:matrix(0.242450,-0.004122,0.004249,0.249964,0,0);-ms-transform:matrix(0.242450,-0.004122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242450,-0.004122,0.004249,0.249964,0,0);}
.m72_c00430{transform:matrix(0.244740,-0.004161,0.004249,0.249964,0,0);-ms-transform:matrix(0.244740,-0.004161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244740,-0.004161,0.004249,0.249964,0,0);}
.m7_c00430{transform:matrix(0.245764,-0.004178,0.004249,0.249964,0,0);-ms-transform:matrix(0.245764,-0.004178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245764,-0.004178,0.004249,0.249964,0,0);}
.m65_c00430{transform:matrix(0.247664,-0.004210,0.004249,0.249964,0,0);-ms-transform:matrix(0.247664,-0.004210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247664,-0.004210,0.004249,0.249964,0,0);}
.m2d_c00430{transform:matrix(0.248569,-0.004226,0.004249,0.249964,0,0);-ms-transform:matrix(0.248569,-0.004226,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248569,-0.004226,0.004249,0.249964,0,0);}
.mf2_c00430{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.me6_c00430{transform:matrix(0.252204,-0.004287,0.004249,0.249964,0,0);-ms-transform:matrix(0.252204,-0.004287,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252204,-0.004287,0.004249,0.249964,0,0);}
.m74_c00430{transform:matrix(0.253403,-0.004308,0.004249,0.249964,0,0);-ms-transform:matrix(0.253403,-0.004308,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253403,-0.004308,0.004249,0.249964,0,0);}
.m3d_c00430{transform:matrix(0.259702,-0.004415,0.004249,0.249964,0,0);-ms-transform:matrix(0.259702,-0.004415,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259702,-0.004415,0.004249,0.249964,0,0);}
.m42_c00430{transform:matrix(0.285639,-0.004856,0.004249,0.249964,0,0);-ms-transform:matrix(0.285639,-0.004856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285639,-0.004856,0.004249,0.249964,0,0);}
.me8_c00430{transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);}
.me9_c00430{transform:matrix(0.312840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312840,0.000000,0.000000,0.250000,0,0);}
.ma1_c00430{transform:matrix(0.362123,-0.006156,0.004249,0.249964,0,0);-ms-transform:matrix(0.362123,-0.006156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.362123,-0.006156,0.004249,0.249964,0,0);}
.me7_c00430{transform:matrix(0.423619,-0.007202,0.004249,0.249964,0,0);-ms-transform:matrix(0.423619,-0.007202,0.004249,0.249964,0,0);-webkit-transform:matrix(0.423619,-0.007202,0.004249,0.249964,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00430{word-spacing:0.000000px;}
.fc0_c00430{color:transparent;}
.fs8_c00430{font-size:55.658041px;}
.fs5_c00430{font-size:57.758344px;}
.fs10_c00430{font-size:59.850000px;}
.fs6_c00430{font-size:59.858648px;}
.fsa_c00430{font-size:60.908799px;}
.fs9_c00430{font-size:61.958951px;}
.fsf_c00430{font-size:63.009103px;}
.fs1_c00430{font-size:64.059255px;}
.fs3_c00430{font-size:65.109406px;}
.fs11_c00430{font-size:66.150000px;}
.fs4_c00430{font-size:66.159558px;}
.fs7_c00430{font-size:67.209710px;}
.fsd_c00430{font-size:68.259861px;}
.fse_c00430{font-size:69.310013px;}
.fs2_c00430{font-size:70.360165px;}
.fsb_c00430{font-size:72.460468px;}
.fsc_c00430{font-size:74.560772px;}
.fs0_c00430{font-size:75.600000px;}
.y0_c00430{bottom:0.000000px;}
.yea_c00430{bottom:24.975000px;}
.ye9_c00430{bottom:43.014000px;}
.ye5_c00430{bottom:62.707734px;}
.ye6_c00430{bottom:62.708310px;}
.ye7_c00430{bottom:62.708521px;}
.ye8_c00430{bottom:62.708788px;}
.ye1_c00430{bottom:76.738620px;}
.ye4_c00430{bottom:76.738639px;}
.ye2_c00430{bottom:76.738989px;}
.ye3_c00430{bottom:76.739260px;}
.ye0_c00430{bottom:76.739262px;}
.ydf_c00430{bottom:76.739775px;}
.ydd_c00430{bottom:95.303280px;}
.yde_c00430{bottom:95.303401px;}
.yd9_c00430{bottom:95.303496px;}
.ydc_c00430{bottom:95.303781px;}
.ydb_c00430{bottom:95.303793px;}
.yda_c00430{bottom:95.303830px;}
.yd8_c00430{bottom:95.304099px;}
.ycf_c00430{bottom:112.018014px;}
.yd0_c00430{bottom:112.018332px;}
.yd3_c00430{bottom:112.018402px;}
.yd1_c00430{bottom:112.018611px;}
.yd2_c00430{bottom:112.018933px;}
.yd4_c00430{bottom:112.019136px;}
.yd6_c00430{bottom:112.019403px;}
.yd7_c00430{bottom:112.019592px;}
.yd5_c00430{bottom:112.019698px;}
.yca_c00430{bottom:129.398067px;}
.yc9_c00430{bottom:129.398194px;}
.ycb_c00430{bottom:129.398350px;}
.ycc_c00430{bottom:129.398382px;}
.yce_c00430{bottom:129.398614px;}
.yc7_c00430{bottom:129.398707px;}
.yc8_c00430{bottom:129.398755px;}
.ycd_c00430{bottom:129.398931px;}
.yc5_c00430{bottom:145.476414px;}
.yc4_c00430{bottom:145.476795px;}
.yc1_c00430{bottom:145.476976px;}
.yc3_c00430{bottom:145.477008px;}
.yc6_c00430{bottom:145.477135px;}
.yc2_c00430{bottom:145.477440px;}
.yc0_c00430{bottom:145.477549px;}
.ybd_c00430{bottom:162.363123px;}
.ybe_c00430{bottom:162.363394px;}
.ybc_c00430{bottom:162.363594px;}
.ybf_c00430{bottom:162.363823px;}
.ybb_c00430{bottom:162.363979px;}
.yba_c00430{bottom:162.364557px;}
.yb9_c00430{bottom:162.365164px;}
.yb8_c00430{bottom:162.365875px;}
.yb0_c00430{bottom:179.232842px;}
.yb1_c00430{bottom:179.232855px;}
.yb5_c00430{bottom:179.233206px;}
.yb2_c00430{bottom:179.233293px;}
.yb4_c00430{bottom:179.233424px;}
.yb7_c00430{bottom:179.233794px;}
.yb6_c00430{bottom:179.233905px;}
.yb3_c00430{bottom:179.234022px;}
.yaf_c00430{bottom:195.954348px;}
.yad_c00430{bottom:195.954444px;}
.yac_c00430{bottom:195.954477px;}
.yae_c00430{bottom:195.954621px;}
.ya9_c00430{bottom:195.955011px;}
.yab_c00430{bottom:195.955038px;}
.yaa_c00430{bottom:195.955526px;}
.ya2_c00430{bottom:213.025017px;}
.ya1_c00430{bottom:213.025402px;}
.ya3_c00430{bottom:213.025519px;}
.ya4_c00430{bottom:213.026248px;}
.ya5_c00430{bottom:213.026846px;}
.ya7_c00430{bottom:213.027202px;}
.ya6_c00430{bottom:213.027318px;}
.ya8_c00430{bottom:213.027911px;}
.y9a_c00430{bottom:230.727258px;}
.y9b_c00430{bottom:230.727456px;}
.y9c_c00430{bottom:230.727818px;}
.y9d_c00430{bottom:230.728067px;}
.ya0_c00430{bottom:230.728245px;}
.y9e_c00430{bottom:230.728654px;}
.y9f_c00430{bottom:230.728732px;}
.y97_c00430{bottom:248.426684px;}
.y95_c00430{bottom:248.427239px;}
.y96_c00430{bottom:248.427287px;}
.y98_c00430{bottom:248.427383px;}
.y99_c00430{bottom:248.427571px;}
.y94_c00430{bottom:248.427585px;}
.y93_c00430{bottom:248.427974px;}
.y89_c00430{bottom:265.371290px;}
.y91_c00430{bottom:265.371728px;}
.y92_c00430{bottom:265.371737px;}
.y8a_c00430{bottom:265.372014px;}
.y8d_c00430{bottom:265.372025px;}
.y8c_c00430{bottom:265.372281px;}
.y90_c00430{bottom:265.372430px;}
.y8b_c00430{bottom:265.372542px;}
.y8f_c00430{bottom:265.372677px;}
.y8e_c00430{bottom:265.372724px;}
.y88_c00430{bottom:282.531801px;}
.y86_c00430{bottom:282.531830px;}
.y84_c00430{bottom:282.531902px;}
.y83_c00430{bottom:282.531995px;}
.y87_c00430{bottom:282.532109px;}
.y82_c00430{bottom:282.532392px;}
.y85_c00430{bottom:282.532506px;}
.y7d_c00430{bottom:300.300567px;}
.y7e_c00430{bottom:300.300846px;}
.y7c_c00430{bottom:300.301153px;}
.y7f_c00430{bottom:300.301374px;}
.y7b_c00430{bottom:300.301482px;}
.y80_c00430{bottom:300.301676px;}
.y7a_c00430{bottom:300.301953px;}
.y81_c00430{bottom:300.302049px;}
.y73_c00430{bottom:317.757399px;}
.y72_c00430{bottom:317.757887px;}
.y74_c00430{bottom:317.758128px;}
.y76_c00430{bottom:317.758293px;}
.y75_c00430{bottom:317.758622px;}
.y77_c00430{bottom:317.758667px;}
.y79_c00430{bottom:317.758934px;}
.y78_c00430{bottom:317.759375px;}
.y6a_c00430{bottom:334.312155px;}
.y71_c00430{bottom:334.312229px;}
.y6f_c00430{bottom:334.312488px;}
.y6e_c00430{bottom:334.312684px;}
.y6b_c00430{bottom:334.312704px;}
.y70_c00430{bottom:334.312970px;}
.y6c_c00430{bottom:334.313043px;}
.y6d_c00430{bottom:334.313322px;}
.y65_c00430{bottom:349.106072px;}
.y66_c00430{bottom:349.106417px;}
.y63_c00430{bottom:349.106444px;}
.y64_c00430{bottom:349.106547px;}
.y69_c00430{bottom:349.106637px;}
.y67_c00430{bottom:349.107146px;}
.y68_c00430{bottom:349.107293px;}
.y60_c00430{bottom:365.910645px;}
.y5f_c00430{bottom:365.910824px;}
.y61_c00430{bottom:365.910878px;}
.y5e_c00430{bottom:365.910896px;}
.y62_c00430{bottom:365.911307px;}
.y5b_c00430{bottom:365.911494px;}
.y5d_c00430{bottom:365.911547px;}
.y5c_c00430{bottom:365.912133px;}
.y5a_c00430{bottom:385.171526px;}
.y59_c00430{bottom:385.171637px;}
.y58_c00430{bottom:385.171932px;}
.y57_c00430{bottom:385.172081px;}
.y56_c00430{bottom:385.172136px;}
.y55_c00430{bottom:385.172264px;}
.y54_c00430{bottom:385.172610px;}
.y53_c00430{bottom:385.172729px;}
.y52_c00430{bottom:400.251336px;}
.y50_c00430{bottom:400.251351px;}
.y4d_c00430{bottom:400.251387px;}
.y4f_c00430{bottom:400.251517px;}
.y4e_c00430{bottom:400.251666px;}
.y4c_c00430{bottom:400.251819px;}
.y51_c00430{bottom:400.252017px;}
.y49_c00430{bottom:416.816883px;}
.y4b_c00430{bottom:416.817270px;}
.y48_c00430{bottom:416.817284px;}
.y4a_c00430{bottom:416.817291px;}
.y47_c00430{bottom:416.817455px;}
.y46_c00430{bottom:416.818113px;}
.y3f_c00430{bottom:433.708086px;}
.y41_c00430{bottom:433.708203px;}
.y40_c00430{bottom:433.708224px;}
.y44_c00430{bottom:433.708262px;}
.y3c_c00430{bottom:433.708419px;}
.y3e_c00430{bottom:433.708582px;}
.y43_c00430{bottom:433.708680px;}
.y3d_c00430{bottom:433.708788px;}
.y45_c00430{bottom:433.708935px;}
.y42_c00430{bottom:433.708937px;}
.y32_c00430{bottom:447.651897px;}
.y33_c00430{bottom:447.802068px;}
.y34_c00430{bottom:448.436829px;}
.y35_c00430{bottom:448.771044px;}
.y36_c00430{bottom:449.858822px;}
.y37_c00430{bottom:450.201783px;}
.y38_c00430{bottom:450.670640px;}
.y39_c00430{bottom:451.171580px;}
.y3a_c00430{bottom:451.634286px;}
.y3b_c00430{bottom:452.002115px;}
.y2b_c00430{bottom:468.142761px;}
.y2a_c00430{bottom:468.143159px;}
.y2c_c00430{bottom:468.143365px;}
.y2d_c00430{bottom:468.143487px;}
.y2e_c00430{bottom:468.144036px;}
.y30_c00430{bottom:468.144633px;}
.y2f_c00430{bottom:468.144714px;}
.y31_c00430{bottom:468.144767px;}
.y25_c00430{bottom:484.687396px;}
.y27_c00430{bottom:484.687458px;}
.y23_c00430{bottom:484.687545px;}
.y22_c00430{bottom:484.687622px;}
.y26_c00430{bottom:484.687675px;}
.y24_c00430{bottom:484.687949px;}
.y28_c00430{bottom:484.688157px;}
.y21_c00430{bottom:484.688363px;}
.y29_c00430{bottom:484.688526px;}
.y1c_c00430{bottom:501.896047px;}
.y1d_c00430{bottom:501.896421px;}
.y1b_c00430{bottom:501.896429px;}
.y20_c00430{bottom:501.896493px;}
.y1a_c00430{bottom:501.896655px;}
.y1f_c00430{bottom:501.896658px;}
.y1e_c00430{bottom:501.896850px;}
.y12_c00430{bottom:518.466867px;}
.y11_c00430{bottom:518.467153px;}
.y13_c00430{bottom:518.467510px;}
.y14_c00430{bottom:518.468184px;}
.y19_c00430{bottom:518.468663px;}
.y18_c00430{bottom:518.468739px;}
.y15_c00430{bottom:518.468768px;}
.y17_c00430{bottom:518.468945px;}
.y16_c00430{bottom:518.469016px;}
.yf_c00430{bottom:535.235532px;}
.y10_c00430{bottom:535.235776px;}
.ye_c00430{bottom:535.235865px;}
.y9_c00430{bottom:535.235973px;}
.ya_c00430{bottom:535.236051px;}
.yd_c00430{bottom:535.236138px;}
.yc_c00430{bottom:535.236309px;}
.yb_c00430{bottom:535.236570px;}
.y2_c00430{bottom:549.454500px;}
.y3_c00430{bottom:550.421689px;}
.y4_c00430{bottom:551.354174px;}
.y5_c00430{bottom:552.339952px;}
.y6_c00430{bottom:552.812646px;}
.y7_c00430{bottom:553.635709px;}
.y8_c00430{bottom:553.909809px;}
.y1_c00430{bottom:567.004500px;}
.h9_c00430{height:55.658041px;}
.h6_c00430{height:57.758344px;}
.h11_c00430{height:59.850000px;}
.h7_c00430{height:59.858648px;}
.hb_c00430{height:60.908799px;}
.ha_c00430{height:61.958951px;}
.h10_c00430{height:63.009103px;}
.h2_c00430{height:64.059255px;}
.h4_c00430{height:65.109406px;}
.h12_c00430{height:66.150000px;}
.h5_c00430{height:66.159558px;}
.h8_c00430{height:67.209710px;}
.he_c00430{height:68.259861px;}
.hf_c00430{height:69.310013px;}
.h3_c00430{height:70.360165px;}
.hc_c00430{height:72.460468px;}
.hd_c00430{height:74.560772px;}
.h1_c00430{height:75.600000px;}
.h0_c00430{height:608.250000px;}
.w0_c00430{width:359.100000px;}
.w1_c00430{width:359.250000px;}
.x0_c00430{left:0.000000px;}
.x3_c00430{left:8.659500px;}
.x1f_c00430{left:9.723013px;}
.x3d_c00430{left:10.803286px;}
.x64_c00430{left:12.422059px;}
.x6c_c00430{left:13.502349px;}
.x48_c00430{left:15.662853px;}
.x69_c00430{left:17.552824px;}
.x2d_c00430{left:19.894338px;}
.x7a_c00430{left:21.328486px;}
.x5e_c00430{left:22.685071px;}
.x20_c00430{left:25.654629px;}
.x53_c00430{left:27.545334px;}
.x5f_c00430{left:29.435509px;}
.x6a_c00430{left:32.675685px;}
.x35_c00430{left:34.298016px;}
.x80_c00430{left:35.910000px;}
.x19_c00430{left:40.237377px;}
.x70_c00430{left:41.316052px;}
.x4b_c00430{left:42.665256px;}
.x11_c00430{left:43.747275px;}
.x36_c00430{left:47.260264px;}
.xa_c00430{left:49.415919px;}
.x76_c00430{left:51.302086px;}
.x21_c00430{left:52.657932px;}
.x42_c00430{left:54.819556px;}
.x1a_c00430{left:57.249299px;}
.x2e_c00430{left:59.528001px;}
.x81_c00430{left:61.830000px;}
.x27_c00430{left:63.190155px;}
.x59_c00430{left:64.270438px;}
.x4_c00430{left:65.553000px;}
.x83_c00430{left:67.500000px;}
.xb_c00430{left:69.128605px;}
.x49_c00430{left:70.211112px;}
.x60_c00430{left:71.831749px;}
.x12_c00430{left:72.911190px;}
.x77_c00430{left:74.795869px;}
.x37_c00430{left:77.504511px;}
.x28_c00430{left:78.583092px;}
.x2f_c00430{left:80.423358px;}
.x6d_c00430{left:82.901892px;}
.x1b_c00430{left:85.602984px;}
.x45_c00430{left:88.304496px;}
.x71_c00430{left:89.382450px;}
.xc_c00430{left:91.001929px;}
.x61_c00430{left:93.705073px;}
.x54_c00430{left:99.105514px;}
.x6b_c00430{left:102.075253px;}
.x1c_c00430{left:105.045594px;}
.x13_c00430{left:106.666431px;}
.x3e_c00430{left:108.017887px;}
.xd_c00430{left:113.145330px;}
.x38_c00430{left:114.229119px;}
.x7e_c00430{left:119.085252px;}
.x5_c00430{left:120.405000px;}
.x50_c00430{left:121.519299px;}
.x22_c00430{left:124.758265px;}
.x5a_c00430{left:127.459696px;}
.x55_c00430{left:129.079684px;}
.x78_c00430{left:130.154358px;}
.x39_c00430{left:132.321346px;}
.x4f_c00430{left:134.480706px;}
.x1_c00430{left:135.540000px;}
.x14_c00430{left:140.151595px;}
.x5b_c00430{left:142.852633px;}
.x1d_c00430{left:145.281222px;}
.x23_c00430{left:148.252049px;}
.x43_c00430{left:150.413673px;}
.x29_c00430{left:151.493655px;}
.x56_c00430{left:152.573467px;}
.x72_c00430{left:154.462269px;}
.x7b_c00430{left:156.349501px;}
.x15_c00430{left:159.054052px;}
.x4c_c00430{left:160.132696px;}
.x3a_c00430{left:161.755338px;}
.x67_c00430{left:166.884331px;}
.x46_c00430{left:168.505675px;}
.x30_c00430{left:169.791862px;}
.x73_c00430{left:171.204114px;}
.x5c_c00430{left:172.556727px;}
.xe_c00430{left:175.794435px;}
.x44_c00430{left:177.146899px;}
.x6_c00430{left:178.392000px;}
.x79_c00430{left:180.651444px;}
.x4d_c00430{left:184.976862px;}
.x82_c00430{left:186.570000px;}
.x3b_c00430{left:188.218488px;}
.x51_c00430{left:193.079479px;}
.x57_c00430{left:194.969707px;}
.x5d_c00430{left:196.050510px;}
.x7c_c00430{left:197.125282px;}
.x31_c00430{left:199.136872px;}
.x24_c00430{left:201.990078px;}
.x16_c00430{left:204.151083px;}
.x7_c00430{left:206.197500px;}
.x7f_c00430{left:211.708501px;}
.x2a_c00430{left:214.142734px;}
.x17_c00430{left:217.113331px;}
.x68_c00430{left:218.191647px;}
.x62_c00430{left:221.162395px;}
.x25_c00430{left:222.242917px;}
.x3f_c00430{left:224.675098px;}
.x32_c00430{left:230.457408px;}
.x6e_c00430{left:232.234038px;}
.x2b_c00430{left:236.556211px;}
.x84_c00430{left:238.950000px;}
.x74_c00430{left:240.063504px;}
.xf_c00430{left:242.764789px;}
.x18_c00430{left:244.116634px;}
.x26_c00430{left:246.006777px;}
.x47_c00430{left:249.517084px;}
.x6f_c00430{left:252.486877px;}
.x1e_c00430{left:253.567510px;}
.x8_c00430{left:254.613000px;}
.x4e_c00430{left:255.996889px;}
.x10_c00430{left:257.077420px;}
.x33_c00430{left:259.352392px;}
.x65_c00430{left:260.587765px;}
.x40_c00430{left:262.209936px;}
.x52_c00430{left:264.369558px;}
.x2c_c00430{left:268.690993px;}
.x9_c00430{left:270.736500px;}
.x4a_c00430{left:273.549864px;}
.x66_c00430{left:278.139138px;}
.x41_c00430{left:280.302163px;}
.x34_c00430{left:282.313275px;}
.x2_c00430{left:285.390000px;}
.x63_c00430{left:287.052444px;}
.x75_c00430{left:288.937608px;}
.x3c_c00430{left:293.263833px;}
.x7d_c00430{left:295.690266px;}
.x58_c00430{left:296.774109px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
.fs8_c00430{font-size:49.473814pt;}
.fs5_c00430{font-size:51.340750pt;}
.fs10_c00430{font-size:53.200000pt;}
.fs6_c00430{font-size:53.207687pt;}
.fsa_c00430{font-size:54.141155pt;}
.fs9_c00430{font-size:55.074623pt;}
.fsf_c00430{font-size:56.008091pt;}
.fs1_c00430{font-size:56.941560pt;}
.fs3_c00430{font-size:57.875028pt;}
.fs11_c00430{font-size:58.800000pt;}
.fs4_c00430{font-size:58.808496pt;}
.fs7_c00430{font-size:59.741964pt;}
.fsd_c00430{font-size:60.675432pt;}
.fse_c00430{font-size:61.608901pt;}
.fs2_c00430{font-size:62.542369pt;}
.fsb_c00430{font-size:64.409305pt;}
.fsc_c00430{font-size:66.276242pt;}
.fs0_c00430{font-size:67.200000pt;}
.y0_c00430{bottom:0.000000pt;}
.yea_c00430{bottom:22.200000pt;}
.ye9_c00430{bottom:38.234667pt;}
.ye5_c00430{bottom:55.740208pt;}
.ye6_c00430{bottom:55.740720pt;}
.ye7_c00430{bottom:55.740908pt;}
.ye8_c00430{bottom:55.741145pt;}
.ye1_c00430{bottom:68.212107pt;}
.ye4_c00430{bottom:68.212124pt;}
.ye2_c00430{bottom:68.212435pt;}
.ye3_c00430{bottom:68.212676pt;}
.ye0_c00430{bottom:68.212677pt;}
.ydf_c00430{bottom:68.213133pt;}
.ydd_c00430{bottom:84.714027pt;}
.yde_c00430{bottom:84.714135pt;}
.yd9_c00430{bottom:84.714219pt;}
.ydc_c00430{bottom:84.714472pt;}
.ydb_c00430{bottom:84.714483pt;}
.yda_c00430{bottom:84.714516pt;}
.yd8_c00430{bottom:84.714755pt;}
.ycf_c00430{bottom:99.571568pt;}
.yd0_c00430{bottom:99.571851pt;}
.yd3_c00430{bottom:99.571913pt;}
.yd1_c00430{bottom:99.572099pt;}
.yd2_c00430{bottom:99.572385pt;}
.yd4_c00430{bottom:99.572565pt;}
.yd6_c00430{bottom:99.572803pt;}
.yd7_c00430{bottom:99.572971pt;}
.yd5_c00430{bottom:99.573065pt;}
.yca_c00430{bottom:115.020504pt;}
.yc9_c00430{bottom:115.020617pt;}
.ycb_c00430{bottom:115.020756pt;}
.ycc_c00430{bottom:115.020784pt;}
.yce_c00430{bottom:115.020991pt;}
.yc7_c00430{bottom:115.021073pt;}
.yc8_c00430{bottom:115.021116pt;}
.ycd_c00430{bottom:115.021272pt;}
.yc5_c00430{bottom:129.312368pt;}
.yc4_c00430{bottom:129.312707pt;}
.yc1_c00430{bottom:129.312868pt;}
.yc3_c00430{bottom:129.312896pt;}
.yc6_c00430{bottom:129.313009pt;}
.yc2_c00430{bottom:129.313280pt;}
.yc0_c00430{bottom:129.313377pt;}
.ybd_c00430{bottom:144.322776pt;}
.ybe_c00430{bottom:144.323017pt;}
.ybc_c00430{bottom:144.323195pt;}
.ybf_c00430{bottom:144.323399pt;}
.ybb_c00430{bottom:144.323537pt;}
.yba_c00430{bottom:144.324051pt;}
.yb9_c00430{bottom:144.324591pt;}
.yb8_c00430{bottom:144.325223pt;}
.yb0_c00430{bottom:159.318081pt;}
.yb1_c00430{bottom:159.318093pt;}
.yb5_c00430{bottom:159.318405pt;}
.yb2_c00430{bottom:159.318483pt;}
.yb4_c00430{bottom:159.318599pt;}
.yb7_c00430{bottom:159.318928pt;}
.yb6_c00430{bottom:159.319027pt;}
.yb3_c00430{bottom:159.319131pt;}
.yaf_c00430{bottom:174.181643pt;}
.yad_c00430{bottom:174.181728pt;}
.yac_c00430{bottom:174.181757pt;}
.yae_c00430{bottom:174.181885pt;}
.ya9_c00430{bottom:174.182232pt;}
.yab_c00430{bottom:174.182256pt;}
.yaa_c00430{bottom:174.182689pt;}
.ya2_c00430{bottom:189.355571pt;}
.ya1_c00430{bottom:189.355913pt;}
.ya3_c00430{bottom:189.356017pt;}
.ya4_c00430{bottom:189.356665pt;}
.ya5_c00430{bottom:189.357196pt;}
.ya7_c00430{bottom:189.357513pt;}
.ya6_c00430{bottom:189.357616pt;}
.ya8_c00430{bottom:189.358143pt;}
.y9a_c00430{bottom:205.090896pt;}
.y9b_c00430{bottom:205.091072pt;}
.y9c_c00430{bottom:205.091393pt;}
.y9d_c00430{bottom:205.091615pt;}
.ya0_c00430{bottom:205.091773pt;}
.y9e_c00430{bottom:205.092137pt;}
.y9f_c00430{bottom:205.092207pt;}
.y97_c00430{bottom:220.823719pt;}
.y95_c00430{bottom:220.824212pt;}
.y96_c00430{bottom:220.824255pt;}
.y98_c00430{bottom:220.824340pt;}
.y99_c00430{bottom:220.824508pt;}
.y94_c00430{bottom:220.824520pt;}
.y93_c00430{bottom:220.824865pt;}
.y89_c00430{bottom:235.885591pt;}
.y91_c00430{bottom:235.885980pt;}
.y92_c00430{bottom:235.885988pt;}
.y8a_c00430{bottom:235.886235pt;}
.y8d_c00430{bottom:235.886244pt;}
.y8c_c00430{bottom:235.886472pt;}
.y90_c00430{bottom:235.886604pt;}
.y8b_c00430{bottom:235.886704pt;}
.y8f_c00430{bottom:235.886824pt;}
.y8e_c00430{bottom:235.886865pt;}
.y88_c00430{bottom:251.139379pt;}
.y86_c00430{bottom:251.139404pt;}
.y84_c00430{bottom:251.139468pt;}
.y83_c00430{bottom:251.139551pt;}
.y87_c00430{bottom:251.139652pt;}
.y82_c00430{bottom:251.139904pt;}
.y85_c00430{bottom:251.140005pt;}
.y7d_c00430{bottom:266.933837pt;}
.y7e_c00430{bottom:266.934085pt;}
.y7c_c00430{bottom:266.934359pt;}
.y7f_c00430{bottom:266.934555pt;}
.y7b_c00430{bottom:266.934651pt;}
.y80_c00430{bottom:266.934823pt;}
.y7a_c00430{bottom:266.935069pt;}
.y81_c00430{bottom:266.935155pt;}
.y73_c00430{bottom:282.451021pt;}
.y72_c00430{bottom:282.451455pt;}
.y74_c00430{bottom:282.451669pt;}
.y76_c00430{bottom:282.451816pt;}
.y75_c00430{bottom:282.452108pt;}
.y77_c00430{bottom:282.452148pt;}
.y79_c00430{bottom:282.452385pt;}
.y78_c00430{bottom:282.452777pt;}
.y6a_c00430{bottom:297.166360pt;}
.y71_c00430{bottom:297.166425pt;}
.y6f_c00430{bottom:297.166656pt;}
.y6e_c00430{bottom:297.166831pt;}
.y6b_c00430{bottom:297.166848pt;}
.y70_c00430{bottom:297.167084pt;}
.y6c_c00430{bottom:297.167149pt;}
.y6d_c00430{bottom:297.167397pt;}
.y65_c00430{bottom:310.316508pt;}
.y66_c00430{bottom:310.316815pt;}
.y63_c00430{bottom:310.316839pt;}
.y64_c00430{bottom:310.316931pt;}
.y69_c00430{bottom:310.317011pt;}
.y67_c00430{bottom:310.317463pt;}
.y68_c00430{bottom:310.317593pt;}
.y60_c00430{bottom:325.253907pt;}
.y5f_c00430{bottom:325.254065pt;}
.y61_c00430{bottom:325.254113pt;}
.y5e_c00430{bottom:325.254129pt;}
.y62_c00430{bottom:325.254495pt;}
.y5b_c00430{bottom:325.254661pt;}
.y5d_c00430{bottom:325.254708pt;}
.y5c_c00430{bottom:325.255229pt;}
.y5a_c00430{bottom:342.374689pt;}
.y59_c00430{bottom:342.374788pt;}
.y58_c00430{bottom:342.375051pt;}
.y57_c00430{bottom:342.375183pt;}
.y56_c00430{bottom:342.375232pt;}
.y55_c00430{bottom:342.375345pt;}
.y54_c00430{bottom:342.375653pt;}
.y53_c00430{bottom:342.375759pt;}
.y52_c00430{bottom:355.778965pt;}
.y50_c00430{bottom:355.778979pt;}
.y4d_c00430{bottom:355.779011pt;}
.y4f_c00430{bottom:355.779127pt;}
.y4e_c00430{bottom:355.779259pt;}
.y4c_c00430{bottom:355.779395pt;}
.y51_c00430{bottom:355.779571pt;}
.y49_c00430{bottom:370.503896pt;}
.y4b_c00430{bottom:370.504240pt;}
.y48_c00430{bottom:370.504252pt;}
.y4a_c00430{bottom:370.504259pt;}
.y47_c00430{bottom:370.504404pt;}
.y46_c00430{bottom:370.504989pt;}
.y3f_c00430{bottom:385.518299pt;}
.y41_c00430{bottom:385.518403pt;}
.y40_c00430{bottom:385.518421pt;}
.y44_c00430{bottom:385.518455pt;}
.y3c_c00430{bottom:385.518595pt;}
.y3e_c00430{bottom:385.518740pt;}
.y43_c00430{bottom:385.518827pt;}
.y3d_c00430{bottom:385.518923pt;}
.y45_c00430{bottom:385.519053pt;}
.y42_c00430{bottom:385.519055pt;}
.y32_c00430{bottom:397.912797pt;}
.y33_c00430{bottom:398.046283pt;}
.y34_c00430{bottom:398.610515pt;}
.y35_c00430{bottom:398.907595pt;}
.y36_c00430{bottom:399.874508pt;}
.y37_c00430{bottom:400.179363pt;}
.y38_c00430{bottom:400.596124pt;}
.y39_c00430{bottom:401.041404pt;}
.y3a_c00430{bottom:401.452699pt;}
.y3b_c00430{bottom:401.779657pt;}
.y2b_c00430{bottom:416.126899pt;}
.y2a_c00430{bottom:416.127252pt;}
.y2c_c00430{bottom:416.127436pt;}
.y2d_c00430{bottom:416.127544pt;}
.y2e_c00430{bottom:416.128032pt;}
.y30_c00430{bottom:416.128563pt;}
.y2f_c00430{bottom:416.128635pt;}
.y31_c00430{bottom:416.128681pt;}
.y25_c00430{bottom:430.833241pt;}
.y27_c00430{bottom:430.833296pt;}
.y23_c00430{bottom:430.833373pt;}
.y22_c00430{bottom:430.833441pt;}
.y26_c00430{bottom:430.833489pt;}
.y24_c00430{bottom:430.833732pt;}
.y28_c00430{bottom:430.833917pt;}
.y21_c00430{bottom:430.834100pt;}
.y29_c00430{bottom:430.834245pt;}
.y1c_c00430{bottom:446.129820pt;}
.y1d_c00430{bottom:446.130152pt;}
.y1b_c00430{bottom:446.130159pt;}
.y20_c00430{bottom:446.130216pt;}
.y1a_c00430{bottom:446.130360pt;}
.y1f_c00430{bottom:446.130363pt;}
.y1e_c00430{bottom:446.130533pt;}
.y12_c00430{bottom:460.859437pt;}
.y11_c00430{bottom:460.859692pt;}
.y13_c00430{bottom:460.860009pt;}
.y14_c00430{bottom:460.860608pt;}
.y19_c00430{bottom:460.861033pt;}
.y18_c00430{bottom:460.861101pt;}
.y15_c00430{bottom:460.861127pt;}
.y17_c00430{bottom:460.861284pt;}
.y16_c00430{bottom:460.861348pt;}
.yf_c00430{bottom:475.764917pt;}
.y10_c00430{bottom:475.765135pt;}
.ye_c00430{bottom:475.765213pt;}
.y9_c00430{bottom:475.765309pt;}
.ya_c00430{bottom:475.765379pt;}
.yd_c00430{bottom:475.765456pt;}
.yc_c00430{bottom:475.765608pt;}
.yb_c00430{bottom:475.765840pt;}
.y2_c00430{bottom:488.404000pt;}
.y3_c00430{bottom:489.263724pt;}
.y4_c00430{bottom:490.092599pt;}
.y5_c00430{bottom:490.968847pt;}
.y6_c00430{bottom:491.389019pt;}
.y7_c00430{bottom:492.120631pt;}
.y8_c00430{bottom:492.364275pt;}
.y1_c00430{bottom:504.004000pt;}
.h9_c00430{height:49.473814pt;}
.h6_c00430{height:51.340750pt;}
.h11_c00430{height:53.200000pt;}
.h7_c00430{height:53.207687pt;}
.hb_c00430{height:54.141155pt;}
.ha_c00430{height:55.074623pt;}
.h10_c00430{height:56.008091pt;}
.h2_c00430{height:56.941560pt;}
.h4_c00430{height:57.875028pt;}
.h12_c00430{height:58.800000pt;}
.h5_c00430{height:58.808496pt;}
.h8_c00430{height:59.741964pt;}
.he_c00430{height:60.675432pt;}
.hf_c00430{height:61.608901pt;}
.h3_c00430{height:62.542369pt;}
.hc_c00430{height:64.409305pt;}
.hd_c00430{height:66.276242pt;}
.h1_c00430{height:67.200000pt;}
.h0_c00430{height:540.666667pt;}
.w0_c00430{width:319.200000pt;}
.w1_c00430{width:319.333333pt;}
.x0_c00430{left:0.000000pt;}
.x3_c00430{left:7.697333pt;}
.x1f_c00430{left:8.642679pt;}
.x3d_c00430{left:9.602921pt;}
.x64_c00430{left:11.041831pt;}
.x6c_c00430{left:12.002088pt;}
.x48_c00430{left:13.922536pt;}
.x69_c00430{left:15.602511pt;}
.x2d_c00430{left:17.683856pt;}
.x7a_c00430{left:18.958655pt;}
.x5e_c00430{left:20.164508pt;}
.x20_c00430{left:22.804115pt;}
.x53_c00430{left:24.484741pt;}
.x5f_c00430{left:26.164897pt;}
.x6a_c00430{left:29.045053pt;}
.x35_c00430{left:30.487125pt;}
.x80_c00430{left:31.920000pt;}
.x19_c00430{left:35.766557pt;}
.x70_c00430{left:36.725380pt;}
.x4b_c00430{left:37.924672pt;}
.x11_c00430{left:38.886467pt;}
.x36_c00430{left:42.009124pt;}
.xa_c00430{left:43.925261pt;}
.x76_c00430{left:45.601855pt;}
.x21_c00430{left:46.807051pt;}
.x42_c00430{left:48.728495pt;}
.x1a_c00430{left:50.888265pt;}
.x2e_c00430{left:52.913779pt;}
.x81_c00430{left:54.960000pt;}
.x27_c00430{left:56.169027pt;}
.x59_c00430{left:57.129279pt;}
.x4_c00430{left:58.269333pt;}
.x83_c00430{left:60.000000pt;}
.xb_c00430{left:61.447649pt;}
.x49_c00430{left:62.409877pt;}
.x60_c00430{left:63.850444pt;}
.x12_c00430{left:64.809947pt;}
.x77_c00430{left:66.485217pt;}
.x37_c00430{left:68.892899pt;}
.x28_c00430{left:69.851637pt;}
.x2f_c00430{left:71.487429pt;}
.x6d_c00430{left:73.690571pt;}
.x1b_c00430{left:76.091541pt;}
.x45_c00430{left:78.492885pt;}
.x71_c00430{left:79.451067pt;}
.xc_c00430{left:80.890604pt;}
.x61_c00430{left:83.293399pt;}
.x54_c00430{left:88.093791pt;}
.x6b_c00430{left:90.733559pt;}
.x1c_c00430{left:93.373861pt;}
.x13_c00430{left:94.814605pt;}
.x3e_c00430{left:96.015900pt;}
.xd_c00430{left:100.573627pt;}
.x38_c00430{left:101.536995pt;}
.x7e_c00430{left:105.853557pt;}
.x5_c00430{left:107.026667pt;}
.x50_c00430{left:108.017155pt;}
.x22_c00430{left:110.896236pt;}
.x5a_c00430{left:113.297508pt;}
.x55_c00430{left:114.737497pt;}
.x78_c00430{left:115.692763pt;}
.x39_c00430{left:117.618975pt;}
.x4f_c00430{left:119.538405pt;}
.x1_c00430{left:120.480000pt;}
.x14_c00430{left:124.579196pt;}
.x5b_c00430{left:126.980119pt;}
.x1d_c00430{left:129.138864pt;}
.x23_c00430{left:131.779599pt;}
.x43_c00430{left:133.701043pt;}
.x29_c00430{left:134.661027pt;}
.x56_c00430{left:135.620860pt;}
.x72_c00430{left:137.299795pt;}
.x7b_c00430{left:138.977335pt;}
.x15_c00430{left:141.381380pt;}
.x4c_c00430{left:142.340175pt;}
.x3a_c00430{left:143.782523pt;}
.x67_c00430{left:148.341628pt;}
.x46_c00430{left:149.782823pt;}
.x30_c00430{left:150.926100pt;}
.x73_c00430{left:152.181435pt;}
.x5c_c00430{left:153.383757pt;}
.xe_c00430{left:156.261720pt;}
.x44_c00430{left:157.463911pt;}
.x6_c00430{left:158.570667pt;}
.x79_c00430{left:160.579061pt;}
.x4d_c00430{left:164.423877pt;}
.x82_c00430{left:165.840000pt;}
.x3b_c00430{left:167.305323pt;}
.x51_c00430{left:171.626204pt;}
.x57_c00430{left:173.306407pt;}
.x5d_c00430{left:174.267120pt;}
.x7c_c00430{left:175.222473pt;}
.x31_c00430{left:177.010553pt;}
.x24_c00430{left:179.546736pt;}
.x16_c00430{left:181.467629pt;}
.x7_c00430{left:183.286667pt;}
.x7f_c00430{left:188.185335pt;}
.x2a_c00430{left:190.349097pt;}
.x17_c00430{left:192.989628pt;}
.x68_c00430{left:193.948131pt;}
.x62_c00430{left:196.588796pt;}
.x25_c00430{left:197.549260pt;}
.x3f_c00430{left:199.711199pt;}
.x32_c00430{left:204.851029pt;}
.x6e_c00430{left:206.430256pt;}
.x2b_c00430{left:210.272188pt;}
.x84_c00430{left:212.400000pt;}
.x74_c00430{left:213.389781pt;}
.xf_c00430{left:215.790924pt;}
.x18_c00430{left:216.992564pt;}
.x26_c00430{left:218.672691pt;}
.x47_c00430{left:221.792964pt;}
.x6f_c00430{left:224.432780pt;}
.x1e_c00430{left:225.393343pt;}
.x8_c00430{left:226.322667pt;}
.x4e_c00430{left:227.552791pt;}
.x10_c00430{left:228.513263pt;}
.x33_c00430{left:230.535460pt;}
.x65_c00430{left:231.633569pt;}
.x40_c00430{left:233.075499pt;}
.x52_c00430{left:234.995163pt;}
.x2c_c00430{left:238.836439pt;}
.x9_c00430{left:240.654667pt;}
.x4a_c00430{left:243.155435pt;}
.x66_c00430{left:247.234789pt;}
.x41_c00430{left:249.157479pt;}
.x34_c00430{left:250.945133pt;}
.x2_c00430{left:253.680000pt;}
.x63_c00430{left:255.157728pt;}
.x75_c00430{left:256.833429pt;}
.x3c_c00430{left:260.678963pt;}
.x7d_c00430{left:262.835792pt;}
.x58_c00430{left:263.799208pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00431 {
    display:none;
  }
  .loading-indicator_c00431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00431 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00431 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00431" -> "#page-container .classname_c00431")
 */
.pf_c00431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00431 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00431 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00431 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00431 {overflow:visible;}
  }
}
.c_c00431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00431 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00431:after { /* webkit #35443 */
  content: '';
}
.t_c00431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00431 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00431 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00431 { /* info for Javascript */
  display:none;
}
.l_c00431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00431:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00431 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00431.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me5_c00431{transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.023883,0.000597,-0.006248,0.249922,0,0);-ms-transform:matrix(0.023883,0.000597,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.023883,0.000597,-0.006248,0.249922,0,0);}
.m1_c00431{transform:matrix(0.042552,0.001064,-0.006248,0.249922,0,0);-ms-transform:matrix(0.042552,0.001064,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.042552,0.001064,-0.006248,0.249922,0,0);}
.m88_c00431{transform:matrix(0.119893,0.002997,-0.006248,0.249922,0,0);-ms-transform:matrix(0.119893,0.002997,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.119893,0.002997,-0.006248,0.249922,0,0);}
.m39_c00431{transform:matrix(0.126535,0.003163,-0.006248,0.249922,0,0);-ms-transform:matrix(0.126535,0.003163,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.126535,0.003163,-0.006248,0.249922,0,0);}
.mda_c00431{transform:matrix(0.126795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126795,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.138137,0.003453,-0.006248,0.249922,0,0);-ms-transform:matrix(0.138137,0.003453,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.138137,0.003453,-0.006248,0.249922,0,0);}
.m8e_c00431{transform:matrix(0.140426,0.003511,-0.006248,0.249922,0,0);-ms-transform:matrix(0.140426,0.003511,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.140426,0.003511,-0.006248,0.249922,0,0);}
.m3_c00431{transform:matrix(0.144445,0.003611,-0.006248,0.249922,0,0);-ms-transform:matrix(0.144445,0.003611,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.144445,0.003611,-0.006248,0.249922,0,0);}
.ma8_c00431{transform:matrix(0.147759,0.003694,-0.006248,0.249922,0,0);-ms-transform:matrix(0.147759,0.003694,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.147759,0.003694,-0.006248,0.249922,0,0);}
.mc_c00431{transform:matrix(0.148159,0.003704,-0.006248,0.249922,0,0);-ms-transform:matrix(0.148159,0.003704,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.148159,0.003704,-0.006248,0.249922,0,0);}
.m84_c00431{transform:matrix(0.149838,0.003746,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149838,0.003746,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149838,0.003746,-0.006248,0.249922,0,0);}
.m52_c00431{transform:matrix(0.151088,0.003777,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151088,0.003777,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151088,0.003777,-0.006248,0.249922,0,0);}
.me1_c00431{transform:matrix(0.151490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151490,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.151738,0.003793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151738,0.003793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151738,0.003793,-0.006248,0.249922,0,0);}
.m86_c00431{transform:matrix(0.153067,0.003827,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153067,0.003827,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153067,0.003827,-0.006248,0.249922,0,0);}
.m1d_c00431{transform:matrix(0.153277,0.003832,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153277,0.003832,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153277,0.003832,-0.006248,0.249922,0,0);}
.me2_c00431{transform:matrix(0.154840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154840,0.000000,0.000000,0.250000,0,0);}
.m56_c00431{transform:matrix(0.155426,0.003886,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155426,0.003886,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155426,0.003886,-0.006248,0.249922,0,0);}
.m74_c00431{transform:matrix(0.155871,0.003897,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155871,0.003897,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155871,0.003897,-0.006248,0.249922,0,0);}
.m82_c00431{transform:matrix(0.156936,0.003923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156936,0.003923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156936,0.003923,-0.006248,0.249922,0,0);}
.m43_c00431{transform:matrix(0.157716,0.003943,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157716,0.003943,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157716,0.003943,-0.006248,0.249922,0,0);}
.m3f_c00431{transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);}
.mb_c00431{transform:matrix(0.159185,0.003980,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159185,0.003980,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159185,0.003980,-0.006248,0.249922,0,0);}
.m10_c00431{transform:matrix(0.160060,0.004001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160060,0.004001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160060,0.004001,-0.006248,0.249922,0,0);}
.m8f_c00431{transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);}
.mba_c00431{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.m5c_c00431{transform:matrix(0.161010,0.004025,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161010,0.004025,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161010,0.004025,-0.006248,0.249922,0,0);}
.m20_c00431{transform:matrix(0.161220,0.004030,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161220,0.004030,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161220,0.004030,-0.006248,0.249922,0,0);}
.md6_c00431{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.162679,0.004067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162679,0.004067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162679,0.004067,-0.006248,0.249922,0,0);}
.m49_c00431{transform:matrix(0.163394,0.004085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163394,0.004085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163394,0.004085,-0.006248,0.249922,0,0);}
.md3_c00431{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.164014,0.004100,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164014,0.004100,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164014,0.004100,-0.006248,0.249922,0,0);}
.m71_c00431{transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);}
.m54_c00431{transform:matrix(0.164159,0.004104,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164159,0.004104,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164159,0.004104,-0.006248,0.249922,0,0);}
.m53_c00431{transform:matrix(0.164439,0.004111,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164439,0.004111,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164439,0.004111,-0.006248,0.249922,0,0);}
.m4a_c00431{transform:matrix(0.165248,0.004131,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165248,0.004131,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165248,0.004131,-0.006248,0.249922,0,0);}
.m1c_c00431{transform:matrix(0.165323,0.004133,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165323,0.004133,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165323,0.004133,-0.006248,0.249922,0,0);}
.me3_c00431{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m70_c00431{transform:matrix(0.165668,0.004142,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165668,0.004142,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165668,0.004142,-0.006248,0.249922,0,0);}
.mbb_c00431{transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165720,0.000000,0.000000,0.250000,0,0);}
.ma0_c00431{transform:matrix(0.166008,0.004150,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166008,0.004150,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166008,0.004150,-0.006248,0.249922,0,0);}
.m5_c00431{transform:matrix(0.166378,0.004159,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166378,0.004159,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166378,0.004159,-0.006248,0.249922,0,0);}
.md_c00431{transform:matrix(0.166638,0.004166,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166638,0.004166,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166638,0.004166,-0.006248,0.249922,0,0);}
.m98_c00431{transform:matrix(0.166668,0.004167,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166668,0.004167,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166668,0.004167,-0.006248,0.249922,0,0);}
.m18_c00431{transform:matrix(0.166698,0.004167,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166698,0.004167,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166698,0.004167,-0.006248,0.249922,0,0);}
.m40_c00431{transform:matrix(0.167158,0.004179,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167158,0.004179,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167158,0.004179,-0.006248,0.249922,0,0);}
.m4_c00431{transform:matrix(0.167933,0.004198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167933,0.004198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167933,0.004198,-0.006248,0.249922,0,0);}
.m5d_c00431{transform:matrix(0.168122,0.004203,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168122,0.004203,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168122,0.004203,-0.006248,0.249922,0,0);}
.m8_c00431{transform:matrix(0.168337,0.004208,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168337,0.004208,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168337,0.004208,-0.006248,0.249922,0,0);}
.m50_c00431{transform:matrix(0.168422,0.004211,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168422,0.004211,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168422,0.004211,-0.006248,0.249922,0,0);}
.m46_c00431{transform:matrix(0.168612,0.004215,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168612,0.004215,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168612,0.004215,-0.006248,0.249922,0,0);}
.m14_c00431{transform:matrix(0.168717,0.004218,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168717,0.004218,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168717,0.004218,-0.006248,0.249922,0,0);}
.mf_c00431{transform:matrix(0.168772,0.004219,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168772,0.004219,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168772,0.004219,-0.006248,0.249922,0,0);}
.m7d_c00431{transform:matrix(0.169287,0.004232,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169287,0.004232,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169287,0.004232,-0.006248,0.249922,0,0);}
.mb5_c00431{transform:matrix(0.169442,0.004236,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169442,0.004236,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169442,0.004236,-0.006248,0.249922,0,0);}
.m8b_c00431{transform:matrix(0.169662,0.004242,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169662,0.004242,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169662,0.004242,-0.006248,0.249922,0,0);}
.mb2_c00431{transform:matrix(0.169892,0.004247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169892,0.004247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169892,0.004247,-0.006248,0.249922,0,0);}
.m64_c00431{transform:matrix(0.170042,0.004251,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170042,0.004251,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170042,0.004251,-0.006248,0.249922,0,0);}
.m83_c00431{transform:matrix(0.170082,0.004252,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170082,0.004252,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170082,0.004252,-0.006248,0.249922,0,0);}
.m7a_c00431{transform:matrix(0.170097,0.004252,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170097,0.004252,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170097,0.004252,-0.006248,0.249922,0,0);}
.m51_c00431{transform:matrix(0.170402,0.004260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170402,0.004260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170402,0.004260,-0.006248,0.249922,0,0);}
.m0_c00431{transform:matrix(0.170877,0.004272,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170877,0.004272,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170877,0.004272,-0.006248,0.249922,0,0);}
.mbf_c00431{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m6d_c00431{transform:matrix(0.171376,0.004284,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171376,0.004284,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171376,0.004284,-0.006248,0.249922,0,0);}
.m3e_c00431{transform:matrix(0.171591,0.004290,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171591,0.004290,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171591,0.004290,-0.006248,0.249922,0,0);}
.mde_c00431{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.mab_c00431{transform:matrix(0.172216,0.004305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172216,0.004305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172216,0.004305,-0.006248,0.249922,0,0);}
.m12_c00431{transform:matrix(0.173086,0.004327,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173086,0.004327,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173086,0.004327,-0.006248,0.249922,0,0);}
.mbc_c00431{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.m92_c00431{transform:matrix(0.173966,0.004349,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173966,0.004349,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173966,0.004349,-0.006248,0.249922,0,0);}
.md5_c00431{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.174750,0.004369,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174750,0.004369,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174750,0.004369,-0.006248,0.249922,0,0);}
.maf_c00431{transform:matrix(0.175030,0.004376,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175030,0.004376,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175030,0.004376,-0.006248,0.249922,0,0);}
.m13_c00431{transform:matrix(0.175940,0.004399,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175940,0.004399,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175940,0.004399,-0.006248,0.249922,0,0);}
.ma5_c00431{transform:matrix(0.176350,0.004409,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176350,0.004409,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176350,0.004409,-0.006248,0.249922,0,0);}
.m11_c00431{transform:matrix(0.176505,0.004413,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176505,0.004413,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176505,0.004413,-0.006248,0.249922,0,0);}
.m25_c00431{transform:matrix(0.176545,0.004414,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176545,0.004414,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176545,0.004414,-0.006248,0.249922,0,0);}
.m15_c00431{transform:matrix(0.178319,0.004458,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178319,0.004458,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178319,0.004458,-0.006248,0.249922,0,0);}
.m21_c00431{transform:matrix(0.179739,0.004493,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179739,0.004493,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179739,0.004493,-0.006248,0.249922,0,0);}
.mae_c00431{transform:matrix(0.180219,0.004505,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180219,0.004505,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180219,0.004505,-0.006248,0.249922,0,0);}
.m5b_c00431{transform:matrix(0.180369,0.004509,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180369,0.004509,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180369,0.004509,-0.006248,0.249922,0,0);}
.m41_c00431{transform:matrix(0.180394,0.004510,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180394,0.004510,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180394,0.004510,-0.006248,0.249922,0,0);}
.ma1_c00431{transform:matrix(0.180524,0.004513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180524,0.004513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180524,0.004513,-0.006248,0.249922,0,0);}
.m1f_c00431{transform:matrix(0.180848,0.004521,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180848,0.004521,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180848,0.004521,-0.006248,0.249922,0,0);}
.m65_c00431{transform:matrix(0.180873,0.004522,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180873,0.004522,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180873,0.004522,-0.006248,0.249922,0,0);}
.m16_c00431{transform:matrix(0.181683,0.004542,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181683,0.004542,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181683,0.004542,-0.006248,0.249922,0,0);}
.m96_c00431{transform:matrix(0.182098,0.004552,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182098,0.004552,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182098,0.004552,-0.006248,0.249922,0,0);}
.m80_c00431{transform:matrix(0.182293,0.004557,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182293,0.004557,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182293,0.004557,-0.006248,0.249922,0,0);}
.m85_c00431{transform:matrix(0.183103,0.004578,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183103,0.004578,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183103,0.004578,-0.006248,0.249922,0,0);}
.m9a_c00431{transform:matrix(0.183543,0.004589,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183543,0.004589,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183543,0.004589,-0.006248,0.249922,0,0);}
.m59_c00431{transform:matrix(0.183643,0.004591,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183643,0.004591,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183643,0.004591,-0.006248,0.249922,0,0);}
.m8a_c00431{transform:matrix(0.183703,0.004593,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183703,0.004593,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183703,0.004593,-0.006248,0.249922,0,0);}
.m22_c00431{transform:matrix(0.183908,0.004598,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183908,0.004598,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183908,0.004598,-0.006248,0.249922,0,0);}
.m57_c00431{transform:matrix(0.184282,0.004607,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184282,0.004607,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184282,0.004607,-0.006248,0.249922,0,0);}
.m3d_c00431{transform:matrix(0.184647,0.004616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184647,0.004616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184647,0.004616,-0.006248,0.249922,0,0);}
.m4d_c00431{transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184752,0.004619,-0.006248,0.249922,0,0);}
.m45_c00431{transform:matrix(0.184842,0.004621,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184842,0.004621,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184842,0.004621,-0.006248,0.249922,0,0);}
.m9d_c00431{transform:matrix(0.184977,0.004624,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184977,0.004624,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184977,0.004624,-0.006248,0.249922,0,0);}
.m55_c00431{transform:matrix(0.185027,0.004626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185027,0.004626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185027,0.004626,-0.006248,0.249922,0,0);}
.m81_c00431{transform:matrix(0.185037,0.004626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185037,0.004626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185037,0.004626,-0.006248,0.249922,0,0);}
.m61_c00431{transform:matrix(0.185297,0.004632,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185297,0.004632,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185297,0.004632,-0.006248,0.249922,0,0);}
.m97_c00431{transform:matrix(0.185332,0.004633,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185332,0.004633,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185332,0.004633,-0.006248,0.249922,0,0);}
.m66_c00431{transform:matrix(0.185517,0.004638,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185517,0.004638,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185517,0.004638,-0.006248,0.249922,0,0);}
.m69_c00431{transform:matrix(0.185812,0.004645,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185812,0.004645,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185812,0.004645,-0.006248,0.249922,0,0);}
.m2f_c00431{transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186092,0.004652,-0.006248,0.249922,0,0);}
.m36_c00431{transform:matrix(0.186727,0.004668,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186727,0.004668,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186727,0.004668,-0.006248,0.249922,0,0);}
.m72_c00431{transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);}
.m35_c00431{transform:matrix(0.188246,0.004706,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188246,0.004706,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188246,0.004706,-0.006248,0.249922,0,0);}
.m4e_c00431{transform:matrix(0.188566,0.004714,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188566,0.004714,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188566,0.004714,-0.006248,0.249922,0,0);}
.m2b_c00431{transform:matrix(0.188571,0.004714,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188571,0.004714,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188571,0.004714,-0.006248,0.249922,0,0);}
.ma7_c00431{transform:matrix(0.188691,0.004717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188691,0.004717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188691,0.004717,-0.006248,0.249922,0,0);}
.m73_c00431{transform:matrix(0.188856,0.004721,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188856,0.004721,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188856,0.004721,-0.006248,0.249922,0,0);}
.md8_c00431{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.m78_c00431{transform:matrix(0.189296,0.004732,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189296,0.004732,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189296,0.004732,-0.006248,0.249922,0,0);}
.m24_c00431{transform:matrix(0.189386,0.004735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189386,0.004735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189386,0.004735,-0.006248,0.249922,0,0);}
.m19_c00431{transform:matrix(0.189671,0.004742,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189671,0.004742,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189671,0.004742,-0.006248,0.249922,0,0);}
.m94_c00431{transform:matrix(0.190226,0.004756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190226,0.004756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190226,0.004756,-0.006248,0.249922,0,0);}
.m1b_c00431{transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190406,0.004760,-0.006248,0.249922,0,0);}
.mb4_c00431{transform:matrix(0.190900,0.004773,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190900,0.004773,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190900,0.004773,-0.006248,0.249922,0,0);}
.mdf_c00431{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.md2_c00431{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.191840,0.004796,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191840,0.004796,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191840,0.004796,-0.006248,0.249922,0,0);}
.maa_c00431{transform:matrix(0.192445,0.004811,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192445,0.004811,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192445,0.004811,-0.006248,0.249922,0,0);}
.m9c_c00431{transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);}
.md7_c00431{transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);}
.mbd_c00431{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.m8c_c00431{transform:matrix(0.193415,0.004835,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193415,0.004835,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193415,0.004835,-0.006248,0.249922,0,0);}
.mbe_c00431{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193979,0.004849,-0.006248,0.249922,0,0);}
.m2a_c00431{transform:matrix(0.194204,0.004855,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194204,0.004855,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194204,0.004855,-0.006248,0.249922,0,0);}
.m6a_c00431{transform:matrix(0.194459,0.004861,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194459,0.004861,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194459,0.004861,-0.006248,0.249922,0,0);}
.m1e_c00431{transform:matrix(0.194479,0.004862,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194479,0.004862,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194479,0.004862,-0.006248,0.249922,0,0);}
.mce_c00431{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00431{transform:matrix(0.194929,0.004873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194929,0.004873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194929,0.004873,-0.006248,0.249922,0,0);}
.m67_c00431{transform:matrix(0.195924,0.004898,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195924,0.004898,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195924,0.004898,-0.006248,0.249922,0,0);}
.m28_c00431{transform:matrix(0.196539,0.004913,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196539,0.004913,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196539,0.004913,-0.006248,0.249922,0,0);}
.mc2_c00431{transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00431{transform:matrix(0.196749,0.004919,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196749,0.004919,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196749,0.004919,-0.006248,0.249922,0,0);}
.m6c_c00431{transform:matrix(0.196784,0.004920,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196784,0.004920,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196784,0.004920,-0.006248,0.249922,0,0);}
.m89_c00431{transform:matrix(0.197108,0.004928,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197108,0.004928,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197108,0.004928,-0.006248,0.249922,0,0);}
.m9e_c00431{transform:matrix(0.197183,0.004930,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197183,0.004930,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197183,0.004930,-0.006248,0.249922,0,0);}
.m63_c00431{transform:matrix(0.197493,0.004937,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197493,0.004937,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197493,0.004937,-0.006248,0.249922,0,0);}
.m60_c00431{transform:matrix(0.198418,0.004960,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198418,0.004960,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198418,0.004960,-0.006248,0.249922,0,0);}
.mb7_c00431{transform:matrix(0.198748,0.004969,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198748,0.004969,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198748,0.004969,-0.006248,0.249922,0,0);}
.m48_c00431{transform:matrix(0.199063,0.004977,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199063,0.004977,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199063,0.004977,-0.006248,0.249922,0,0);}
.m47_c00431{transform:matrix(0.199173,0.004979,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199173,0.004979,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199173,0.004979,-0.006248,0.249922,0,0);}
.mb6_c00431{transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);}
.ma2_c00431{transform:matrix(0.199858,0.004996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199858,0.004996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199858,0.004996,-0.006248,0.249922,0,0);}
.m68_c00431{transform:matrix(0.200202,0.005005,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200202,0.005005,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200202,0.005005,-0.006248,0.249922,0,0);}
.m75_c00431{transform:matrix(0.200322,0.005008,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200322,0.005008,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200322,0.005008,-0.006248,0.249922,0,0);}
.m99_c00431{transform:matrix(0.201342,0.005034,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201342,0.005034,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201342,0.005034,-0.006248,0.249922,0,0);}
.me0_c00431{transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.202322,0.005058,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202322,0.005058,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202322,0.005058,-0.006248,0.249922,0,0);}
.m30_c00431{transform:matrix(0.202412,0.005060,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202412,0.005060,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202412,0.005060,-0.006248,0.249922,0,0);}
.m6f_c00431{transform:matrix(0.202977,0.005074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202977,0.005074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202977,0.005074,-0.006248,0.249922,0,0);}
.mca_c00431{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.m6b_c00431{transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);}
.mb8_c00431{transform:matrix(0.204816,0.005120,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204816,0.005120,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204816,0.005120,-0.006248,0.249922,0,0);}
.m42_c00431{transform:matrix(0.206101,0.005153,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206101,0.005153,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206101,0.005153,-0.006248,0.249922,0,0);}
.m4c_c00431{transform:matrix(0.206241,0.005156,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206241,0.005156,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206241,0.005156,-0.006248,0.249922,0,0);}
.mc0_c00431{transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);}
.m58_c00431{transform:matrix(0.207290,0.005182,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207290,0.005182,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207290,0.005182,-0.006248,0.249922,0,0);}
.m5f_c00431{transform:matrix(0.207555,0.005189,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207555,0.005189,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207555,0.005189,-0.006248,0.249922,0,0);}
.me4_c00431{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.mc8_c00431{transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00431{transform:matrix(0.210284,0.005257,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210284,0.005257,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210284,0.005257,-0.006248,0.249922,0,0);}
.ma4_c00431{transform:matrix(0.210424,0.005261,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210424,0.005261,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210424,0.005261,-0.006248,0.249922,0,0);}
.m17_c00431{transform:matrix(0.210519,0.005263,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210519,0.005263,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210519,0.005263,-0.006248,0.249922,0,0);}
.mb3_c00431{transform:matrix(0.210644,0.005266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210644,0.005266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210644,0.005266,-0.006248,0.249922,0,0);}
.mc7_c00431{transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211245,0.000000,0.000000,0.250000,0,0);}
.m91_c00431{transform:matrix(0.211289,0.005282,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211289,0.005282,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211289,0.005282,-0.006248,0.249922,0,0);}
.mc5_c00431{transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);}
.mdc_c00431{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.mcb_c00431{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.m5e_c00431{transform:matrix(0.213808,0.005345,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213808,0.005345,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213808,0.005345,-0.006248,0.249922,0,0);}
.md4_c00431{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00431{transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);}
.ma6_c00431{transform:matrix(0.214478,0.005362,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214478,0.005362,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214478,0.005362,-0.006248,0.249922,0,0);}
.m5a_c00431{transform:matrix(0.214523,0.005363,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214523,0.005363,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214523,0.005363,-0.006248,0.249922,0,0);}
.mdb_c00431{transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);}
.m7c_c00431{transform:matrix(0.215288,0.005382,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215288,0.005382,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215288,0.005382,-0.006248,0.249922,0,0);}
.m2c_c00431{transform:matrix(0.215733,0.005393,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215733,0.005393,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215733,0.005393,-0.006248,0.249922,0,0);}
.mcd_c00431{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.216932,0.005423,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216932,0.005423,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216932,0.005423,-0.006248,0.249922,0,0);}
.m2d_c00431{transform:matrix(0.217242,0.005431,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217242,0.005431,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217242,0.005431,-0.006248,0.249922,0,0);}
.mc9_c00431{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.mc3_c00431{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.m7f_c00431{transform:matrix(0.220551,0.005514,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220551,0.005514,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220551,0.005514,-0.006248,0.249922,0,0);}
.m7e_c00431{transform:matrix(0.220881,0.005522,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220881,0.005522,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220881,0.005522,-0.006248,0.249922,0,0);}
.m77_c00431{transform:matrix(0.223025,0.005576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223025,0.005576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223025,0.005576,-0.006248,0.249922,0,0);}
.m79_c00431{transform:matrix(0.223675,0.005592,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223675,0.005592,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223675,0.005592,-0.006248,0.249922,0,0);}
.m62_c00431{transform:matrix(0.224015,0.005600,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224015,0.005600,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224015,0.005600,-0.006248,0.249922,0,0);}
.m37_c00431{transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);}
.mc6_c00431{transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226620,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.226959,0.005674,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226959,0.005674,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226959,0.005674,-0.006248,0.249922,0,0);}
.mad_c00431{transform:matrix(0.229273,0.005732,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229273,0.005732,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229273,0.005732,-0.006248,0.249922,0,0);}
.m38_c00431{transform:matrix(0.229293,0.005732,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229293,0.005732,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229293,0.005732,-0.006248,0.249922,0,0);}
.mb9_c00431{transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232980,0.000000,0.000000,0.250000,0,0);}
.m8d_c00431{transform:matrix(0.233012,0.005825,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233012,0.005825,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233012,0.005825,-0.006248,0.249922,0,0);}
.m32_c00431{transform:matrix(0.233182,0.005830,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233182,0.005830,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233182,0.005830,-0.006248,0.249922,0,0);}
.mc4_c00431{transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.234662,0.005867,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234662,0.005867,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234662,0.005867,-0.006248,0.249922,0,0);}
.m93_c00431{transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);}
.m23_c00431{transform:matrix(0.235806,0.005895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235806,0.005895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235806,0.005895,-0.006248,0.249922,0,0);}
.m95_c00431{transform:matrix(0.236036,0.005901,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236036,0.005901,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236036,0.005901,-0.006248,0.249922,0,0);}
.m2_c00431{transform:matrix(0.236431,0.005911,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236431,0.005911,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236431,0.005911,-0.006248,0.249922,0,0);}
.m2e_c00431{transform:matrix(0.237311,0.005933,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237311,0.005933,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237311,0.005933,-0.006248,0.249922,0,0);}
.ma3_c00431{transform:matrix(0.237796,0.005945,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237796,0.005945,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237796,0.005945,-0.006248,0.249922,0,0);}
.md0_c00431{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.md1_c00431{transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239820,0.000000,0.000000,0.250000,0,0);}
.m33_c00431{transform:matrix(0.239830,0.005996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239830,0.005996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239830,0.005996,-0.006248,0.249922,0,0);}
.mcf_c00431{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.mb0_c00431{transform:matrix(0.245513,0.006138,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245513,0.006138,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245513,0.006138,-0.006248,0.249922,0,0);}
.mac_c00431{transform:matrix(0.247698,0.006192,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247698,0.006192,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247698,0.006192,-0.006248,0.249922,0,0);}
.m9b_c00431{transform:matrix(0.259624,0.006491,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259624,0.006491,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259624,0.006491,-0.006248,0.249922,0,0);}
.mdd_c00431{transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.264837,0.006621,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264837,0.006621,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264837,0.006621,-0.006248,0.249922,0,0);}
.m4f_c00431{transform:matrix(0.267266,0.006682,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267266,0.006682,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267266,0.006682,-0.006248,0.249922,0,0);}
.m6e_c00431{transform:matrix(0.269781,0.006745,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269781,0.006745,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269781,0.006745,-0.006248,0.249922,0,0);}
.m31_c00431{transform:matrix(0.271710,0.006793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271710,0.006793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271710,0.006793,-0.006248,0.249922,0,0);}
.m87_c00431{transform:matrix(0.275234,0.006881,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275234,0.006881,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275234,0.006881,-0.006248,0.249922,0,0);}
.m3c_c00431{transform:matrix(0.302061,0.007552,-0.006248,0.249922,0,0);-ms-transform:matrix(0.302061,0.007552,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.302061,0.007552,-0.006248,0.249922,0,0);}
.m90_c00431{transform:matrix(0.310723,0.007768,-0.006248,0.249922,0,0);-ms-transform:matrix(0.310723,0.007768,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.310723,0.007768,-0.006248,0.249922,0,0);}
.md9_c00431{transform:matrix(0.330715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330715,0.000000,0.000000,0.250000,0,0);}
.mb1_c00431{transform:matrix(0.359463,0.008987,-0.006248,0.249922,0,0);-ms-transform:matrix(0.359463,0.008987,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.359463,0.008987,-0.006248,0.249922,0,0);}
.m6_c00431{transform:matrix(0.383150,0.009579,-0.006248,0.249922,0,0);-ms-transform:matrix(0.383150,0.009579,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.383150,0.009579,-0.006248,0.249922,0,0);}
.m3a_c00431{transform:matrix(0.518453,0.012961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.518453,0.012961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.518453,0.012961,-0.006248,0.249922,0,0);}
.mc1_c00431{transform:matrix(0.658270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658270,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:0.000000px;}
.fc0_c00431{color:transparent;}
.fsf_c00431{font-size:48.300000px;}
.fs8_c00431{font-size:53.566732px;}
.fs12_c00431{font-size:57.750000px;}
.fs7_c00431{font-size:57.768044px;}
.fs6_c00431{font-size:58.818372px;}
.fse_c00431{font-size:59.868700px;}
.fs11_c00431{font-size:60.900000px;}
.fsc_c00431{font-size:63.019684px;}
.fs13_c00431{font-size:64.050000px;}
.fs9_c00431{font-size:64.070012px;}
.fs4_c00431{font-size:65.120341px;}
.fs10_c00431{font-size:66.150000px;}
.fsd_c00431{font-size:66.170669px;}
.fs5_c00431{font-size:67.220997px;}
.fsa_c00431{font-size:68.271325px;}
.fsb_c00431{font-size:69.321653px;}
.fs1_c00431{font-size:71.422309px;}
.fs3_c00431{font-size:72.472637px;}
.fs2_c00431{font-size:74.573293px;}
.fs0_c00431{font-size:76.673949px;}
.fs14_c00431{font-size:78.750000px;}
.y0_c00431{bottom:0.000000px;}
.yc8_c00431{bottom:28.962000px;}
.yc7_c00431{bottom:46.836000px;}
.yc6_c00431{bottom:64.770000px;}
.yc5_c00431{bottom:81.024000px;}
.yc3_c00431{bottom:89.232000px;}
.yc4_c00431{bottom:98.794500px;}
.ybb_c00431{bottom:110.163000px;}
.ybc_c00431{bottom:110.626500px;}
.ybd_c00431{bottom:110.899500px;}
.ybe_c00431{bottom:111.129000px;}
.ybf_c00431{bottom:112.330500px;}
.yc0_c00431{bottom:112.614000px;}
.yc1_c00431{bottom:112.872000px;}
.yc2_c00431{bottom:113.832000px;}
.yb9_c00431{bottom:128.837362px;}
.yb8_c00431{bottom:129.406200px;}
.yb7_c00431{bottom:130.545562px;}
.yb6_c00431{bottom:130.889962px;}
.yb5_c00431{bottom:131.289825px;}
.yb4_c00431{bottom:132.861075px;}
.yb3_c00431{bottom:133.516575px;}
.yba_c00431{bottom:134.190000px;}
.yb2_c00431{bottom:146.760300px;}
.yb1_c00431{bottom:148.451025px;}
.yb0_c00431{bottom:148.945462px;}
.yaf_c00431{bottom:149.378325px;}
.yae_c00431{bottom:150.160875px;}
.yad_c00431{bottom:151.096537px;}
.yac_c00431{bottom:151.464825px;}
.yab_c00431{bottom:151.881750px;}
.yaa_c00431{bottom:162.862200px;}
.ya9_c00431{bottom:164.067262px;}
.ya8_c00431{bottom:165.713362px;}
.ya7_c00431{bottom:166.836975px;}
.ya6_c00431{bottom:168.631350px;}
.ya5_c00431{bottom:181.275825px;}
.ya4_c00431{bottom:181.544550px;}
.ya3_c00431{bottom:182.731050px;}
.ya2_c00431{bottom:183.450150px;}
.ya1_c00431{bottom:183.896550px;}
.ya0_c00431{bottom:184.428600px;}
.y9f_c00431{bottom:184.609612px;}
.y9e_c00431{bottom:185.374425px;}
.y9d_c00431{bottom:198.437662px;}
.y9c_c00431{bottom:198.711375px;}
.y9b_c00431{bottom:199.738462px;}
.y9a_c00431{bottom:201.099262px;}
.y99_c00431{bottom:201.433800px;}
.y98_c00431{bottom:201.935175px;}
.y97_c00431{bottom:203.471137px;}
.y96_c00431{bottom:214.953150px;}
.y95_c00431{bottom:216.467737px;}
.y94_c00431{bottom:217.399500px;}
.y93_c00431{bottom:218.572687px;}
.y92_c00431{bottom:218.897250px;}
.y91_c00431{bottom:220.757550px;}
.y90_c00431{bottom:232.243612px;}
.y8f_c00431{bottom:232.790662px;}
.y8e_c00431{bottom:233.097300px;}
.y8d_c00431{bottom:234.155325px;}
.y8c_c00431{bottom:235.022587px;}
.y8b_c00431{bottom:235.469475px;}
.y8a_c00431{bottom:236.598937px;}
.y89_c00431{bottom:237.228750px;}
.y88_c00431{bottom:249.171075px;}
.y87_c00431{bottom:250.385287px;}
.y86_c00431{bottom:250.820137px;}
.y85_c00431{bottom:251.341425px;}
.y84_c00431{bottom:251.741175px;}
.y83_c00431{bottom:252.881887px;}
.y82_c00431{bottom:253.199400px;}
.y81_c00431{bottom:253.428487px;}
.y80_c00431{bottom:254.246925px;}
.y7f_c00431{bottom:263.832825px;}
.y7e_c00431{bottom:264.636487px;}
.y7d_c00431{bottom:265.189462px;}
.y7c_c00431{bottom:265.517025px;}
.y7b_c00431{bottom:266.951587px;}
.y7a_c00431{bottom:267.560737px;}
.y79_c00431{bottom:269.881200px;}
.y78_c00431{bottom:270.996487px;}
.y77_c00431{bottom:282.410250px;}
.y76_c00431{bottom:282.884175px;}
.y75_c00431{bottom:284.726625px;}
.y74_c00431{bottom:285.143025px;}
.y73_c00431{bottom:285.533062px;}
.y72_c00431{bottom:286.569787px;}
.y71_c00431{bottom:286.877587px;}
.y70_c00431{bottom:287.246212px;}
.y6f_c00431{bottom:287.740537px;}
.y6e_c00431{bottom:301.001700px;}
.y6d_c00431{bottom:301.285425px;}
.y6c_c00431{bottom:301.833412px;}
.y6b_c00431{bottom:302.727487px;}
.y6a_c00431{bottom:303.696675px;}
.y69_c00431{bottom:303.960300px;}
.y68_c00431{bottom:304.263562px;}
.y67_c00431{bottom:305.023987px;}
.y66_c00431{bottom:319.184850px;}
.y65_c00431{bottom:319.371825px;}
.y64_c00431{bottom:319.745362px;}
.y63_c00431{bottom:319.974000px;}
.y62_c00431{bottom:320.419350px;}
.y61_c00431{bottom:321.010500px;}
.y60_c00431{bottom:321.489225px;}
.y5f_c00431{bottom:322.035787px;}
.y5e_c00431{bottom:335.510662px;}
.y5d_c00431{bottom:336.082387px;}
.y5c_c00431{bottom:336.362250px;}
.y5b_c00431{bottom:337.002675px;}
.y5a_c00431{bottom:337.906500px;}
.y59_c00431{bottom:338.250750px;}
.y58_c00431{bottom:339.324225px;}
.y57_c00431{bottom:352.999575px;}
.y56_c00431{bottom:353.399325px;}
.y55_c00431{bottom:353.784825px;}
.y54_c00431{bottom:354.568725px;}
.y53_c00431{bottom:354.905625px;}
.y52_c00431{bottom:355.303200px;}
.y51_c00431{bottom:356.162737px;}
.y50_c00431{bottom:357.149287px;}
.y4f_c00431{bottom:369.425775px;}
.y4e_c00431{bottom:369.896475px;}
.y4d_c00431{bottom:370.696087px;}
.y4c_c00431{bottom:371.063850px;}
.y4b_c00431{bottom:372.826462px;}
.y4a_c00431{bottom:373.616512px;}
.y49_c00431{bottom:374.161875px;}
.y48_c00431{bottom:385.424737px;}
.y47_c00431{bottom:387.267637px;}
.y46_c00431{bottom:387.799762px;}
.y45_c00431{bottom:388.441537px;}
.y44_c00431{bottom:390.008287px;}
.y43_c00431{bottom:390.534750px;}
.y42_c00431{bottom:390.983362px;}
.y41_c00431{bottom:392.259600px;}
.y40_c00431{bottom:402.870862px;}
.y3f_c00431{bottom:403.450425px;}
.y3e_c00431{bottom:404.462512px;}
.y3d_c00431{bottom:406.197300px;}
.y3c_c00431{bottom:407.905087px;}
.y3b_c00431{bottom:408.456075px;}
.y3a_c00431{bottom:420.430537px;}
.y39_c00431{bottom:421.940400px;}
.y38_c00431{bottom:426.288112px;}
.y37_c00431{bottom:437.584987px;}
.y36_c00431{bottom:438.550950px;}
.y35_c00431{bottom:439.103437px;}
.y34_c00431{bottom:441.333450px;}
.y33_c00431{bottom:441.749287px;}
.y32_c00431{bottom:443.847225px;}
.y31_c00431{bottom:453.914025px;}
.y30_c00431{bottom:455.345962px;}
.y2f_c00431{bottom:455.897362px;}
.y2e_c00431{bottom:456.232687px;}
.y2d_c00431{bottom:460.050412px;}
.y29_c00431{bottom:472.762012px;}
.y27_c00431{bottom:472.762162px;}
.y2a_c00431{bottom:472.762312px;}
.y28_c00431{bottom:472.762537px;}
.y26_c00431{bottom:472.762687px;}
.y2b_c00431{bottom:472.762950px;}
.y2c_c00431{bottom:472.763100px;}
.y25_c00431{bottom:488.223375px;}
.y24_c00431{bottom:488.590312px;}
.y23_c00431{bottom:488.934487px;}
.y22_c00431{bottom:490.246875px;}
.y21_c00431{bottom:490.535550px;}
.y20_c00431{bottom:490.979850px;}
.y1f_c00431{bottom:492.400500px;}
.y1e_c00431{bottom:492.997012px;}
.y1d_c00431{bottom:504.381075px;}
.y1c_c00431{bottom:506.149987px;}
.y1b_c00431{bottom:506.637337px;}
.y1a_c00431{bottom:508.110525px;}
.y19_c00431{bottom:508.479562px;}
.y18_c00431{bottom:508.773937px;}
.y17_c00431{bottom:510.286687px;}
.y16_c00431{bottom:522.188025px;}
.y15_c00431{bottom:522.824362px;}
.y14_c00431{bottom:523.246762px;}
.y13_c00431{bottom:524.433188px;}
.y12_c00431{bottom:526.095975px;}
.y11_c00431{bottom:526.490100px;}
.y10_c00431{bottom:538.529437px;}
.yf_c00431{bottom:539.178525px;}
.ye_c00431{bottom:540.423112px;}
.yd_c00431{bottom:540.982763px;}
.yc_c00431{bottom:542.548500px;}
.yb_c00431{bottom:543.777975px;}
.ya_c00431{bottom:555.617850px;}
.y9_c00431{bottom:556.792950px;}
.y8_c00431{bottom:557.177475px;}
.y7_c00431{bottom:557.922900px;}
.y6_c00431{bottom:558.392400px;}
.y5_c00431{bottom:559.444312px;}
.y4_c00431{bottom:559.901062px;}
.y3_c00431{bottom:560.270437px;}
.y2_c00431{bottom:567.330787px;}
.y1_c00431{bottom:571.059000px;}
.h10_c00431{height:48.300000px;}
.h9_c00431{height:53.566732px;}
.h13_c00431{height:57.750000px;}
.h8_c00431{height:57.768044px;}
.h7_c00431{height:58.818372px;}
.hf_c00431{height:59.868700px;}
.h12_c00431{height:60.900000px;}
.hd_c00431{height:63.019684px;}
.h14_c00431{height:64.050000px;}
.ha_c00431{height:64.070012px;}
.h5_c00431{height:65.120341px;}
.h11_c00431{height:66.150000px;}
.he_c00431{height:66.170669px;}
.h6_c00431{height:67.220997px;}
.hb_c00431{height:68.271325px;}
.hc_c00431{height:69.321653px;}
.h2_c00431{height:71.422309px;}
.h4_c00431{height:72.472637px;}
.h3_c00431{height:74.573293px;}
.h1_c00431{height:76.673949px;}
.h15_c00431{height:78.750000px;}
.h0_c00431{height:608.250000px;}
.w0_c00431{width:359.100000px;}
.w1_c00431{width:359.250000px;}
.x0_c00431{left:0.000000px;}
.x6d_c00431{left:49.140000px;}
.x57_c00431{left:50.712038px;}
.x50_c00431{left:52.456650px;}
.x41_c00431{left:53.854875px;}
.x36_c00431{left:54.874350px;}
.x29_c00431{left:56.082150px;}
.x1b_c00431{left:57.579563px;}
.x3_c00431{left:58.844138px;}
.x2d_c00431{left:71.893800px;}
.x63_c00431{left:74.564700px;}
.x4_c00431{left:79.382738px;}
.x10_c00431{left:81.282825px;}
.x67_c00431{left:84.153000px;}
.x51_c00431{left:85.634138px;}
.x22_c00431{left:87.446663px;}
.x65_c00431{left:89.379150px;}
.x1c_c00431{left:92.667075px;}
.x64_c00431{left:95.059800px;}
.x71_c00431{left:97.200000px;}
.x46_c00431{left:98.832563px;}
.x44_c00431{left:101.029313px;}
.x30_c00431{left:103.725638px;}
.x5_c00431{left:104.797200px;}
.x75_c00431{left:108.540000px;}
.xb_c00431{left:111.992063px;}
.x3a_c00431{left:113.166563px;}
.x47_c00431{left:115.047000px;}
.x31_c00431{left:120.349313px;}
.x6e_c00431{left:122.040000px;}
.x15_c00431{left:127.020113px;}
.x58_c00431{left:128.245988px;}
.x60_c00431{left:129.340200px;}
.x61_c00431{left:132.278813px;}
.x37_c00431{left:133.446563px;}
.x23_c00431{left:136.602375px;}
.x16_c00431{left:140.416125px;}
.x59_c00431{left:141.768825px;}
.x52_c00431{left:145.041525px;}
.x42_c00431{left:147.038963px;}
.x3f_c00431{left:149.382563px;}
.x5d_c00431{left:153.403388px;}
.x17_c00431{left:157.158863px;}
.x2e_c00431{left:158.762625px;}
.x6_c00431{left:163.203900px;}
.x24_c00431{left:164.961075px;}
.x72_c00431{left:166.590000px;}
.x53_c00431{left:168.560550px;}
.x48_c00431{left:169.604175px;}
.x76_c00431{left:170.640000px;}
.x11_c00431{left:173.670488px;}
.x1d_c00431{left:176.209763px;}
.xc_c00431{left:180.084975px;}
.x66_c00431{left:181.767600px;}
.x62_c00431{left:183.347138px;}
.x3b_c00431{left:187.165875px;}
.x7_c00431{left:189.308475px;}
.x5a_c00431{left:190.677563px;}
.x4a_c00431{left:196.264800px;}
.x32_c00431{left:197.893950px;}
.x1_c00431{left:200.239500px;}
.x1e_c00431{left:202.326975px;}
.xd_c00431{left:204.392175px;}
.x68_c00431{left:205.921500px;}
.x3c_c00431{left:206.945813px;}
.x40_c00431{left:209.610600px;}
.x49_c00431{left:212.008013px;}
.x54_c00431{left:214.177875px;}
.x73_c00431{left:216.810000px;}
.x1f_c00431{left:219.337388px;}
.x33_c00431{left:221.643750px;}
.x18_c00431{left:224.131388px;}
.x2f_c00431{left:225.512475px;}
.x6b_c00431{left:228.150000px;}
.x5b_c00431{left:229.509038px;}
.x8_c00431{left:230.712713px;}
.x74_c00431{left:235.710000px;}
.x38_c00431{left:237.151800px;}
.x5e_c00431{left:238.207500px;}
.x12_c00431{left:239.559000px;}
.x34_c00431{left:241.367775px;}
.x69_c00431{left:244.546500px;}
.x19_c00431{left:246.267038px;}
.x6f_c00431{left:248.130000px;}
.x9_c00431{left:252.037425px;}
.x3d_c00431{left:253.071038px;}
.x4e_c00431{left:254.707050px;}
.x6c_c00431{left:256.770000px;}
.xe_c00431{left:258.498375px;}
.x70_c00431{left:261.630000px;}
.x13_c00431{left:263.059125px;}
.x2c_c00431{left:264.317888px;}
.x2a_c00431{left:267.933150px;}
.x55_c00431{left:269.887238px;}
.x27_c00431{left:271.074225px;}
.x77_c00431{left:274.050000px;}
.x3e_c00431{left:275.755575px;}
.x4f_c00431{left:280.266150px;}
.x4b_c00431{left:281.435438px;}
.x25_c00431{left:285.418838px;}
.xf_c00431{left:286.743300px;}
.x5f_c00431{left:289.557413px;}
.x5c_c00431{left:292.614113px;}
.x4c_c00431{left:295.078275px;}
.x20_c00431{left:296.568338px;}
.x14_c00431{left:298.418813px;}
.x26_c00431{left:303.243975px;}
.x45_c00431{left:304.929675px;}
.x2b_c00431{left:306.571650px;}
.x35_c00431{left:309.620363px;}
.x43_c00431{left:313.123088px;}
.x56_c00431{left:314.841488px;}
.xa_c00431{left:317.352863px;}
.x1a_c00431{left:326.689575px;}
.x6a_c00431{left:331.560000px;}
.x39_c00431{left:333.534075px;}
.x78_c00431{left:335.070000px;}
.x28_c00431{left:336.156600px;}
.x21_c00431{left:338.401200px;}
.x2_c00431{left:349.368000px;}
.x4d_c00431{left:351.565163px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.fsf_c00431{font-size:42.933333pt;}
.fs8_c00431{font-size:47.614873pt;}
.fs12_c00431{font-size:51.333333pt;}
.fs7_c00431{font-size:51.349372pt;}
.fs6_c00431{font-size:52.282997pt;}
.fse_c00431{font-size:53.216622pt;}
.fs11_c00431{font-size:54.133333pt;}
.fsc_c00431{font-size:56.017497pt;}
.fs13_c00431{font-size:56.933333pt;}
.fs9_c00431{font-size:56.951122pt;}
.fs4_c00431{font-size:57.884747pt;}
.fs10_c00431{font-size:58.800000pt;}
.fsd_c00431{font-size:58.818372pt;}
.fs5_c00431{font-size:59.751997pt;}
.fsa_c00431{font-size:60.685622pt;}
.fsb_c00431{font-size:61.619247pt;}
.fs1_c00431{font-size:63.486497pt;}
.fs3_c00431{font-size:64.420122pt;}
.fs2_c00431{font-size:66.287372pt;}
.fs0_c00431{font-size:68.154622pt;}
.fs14_c00431{font-size:70.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.yc8_c00431{bottom:25.744000pt;}
.yc7_c00431{bottom:41.632000pt;}
.yc6_c00431{bottom:57.573333pt;}
.yc5_c00431{bottom:72.021333pt;}
.yc3_c00431{bottom:79.317333pt;}
.yc4_c00431{bottom:87.817333pt;}
.ybb_c00431{bottom:97.922667pt;}
.ybc_c00431{bottom:98.334667pt;}
.ybd_c00431{bottom:98.577333pt;}
.ybe_c00431{bottom:98.781333pt;}
.ybf_c00431{bottom:99.849333pt;}
.yc0_c00431{bottom:100.101333pt;}
.yc1_c00431{bottom:100.330667pt;}
.yc2_c00431{bottom:101.184000pt;}
.yb9_c00431{bottom:114.522100pt;}
.yb8_c00431{bottom:115.027733pt;}
.yb7_c00431{bottom:116.040500pt;}
.yb6_c00431{bottom:116.346633pt;}
.yb5_c00431{bottom:116.702067pt;}
.yb4_c00431{bottom:118.098733pt;}
.yb3_c00431{bottom:118.681400pt;}
.yba_c00431{bottom:119.280000pt;}
.yb2_c00431{bottom:130.453600pt;}
.yb1_c00431{bottom:131.956467pt;}
.yb0_c00431{bottom:132.395967pt;}
.yaf_c00431{bottom:132.780733pt;}
.yae_c00431{bottom:133.476333pt;}
.yad_c00431{bottom:134.308033pt;}
.yac_c00431{bottom:134.635400pt;}
.yab_c00431{bottom:135.006000pt;}
.yaa_c00431{bottom:144.766400pt;}
.ya9_c00431{bottom:145.837567pt;}
.ya8_c00431{bottom:147.300767pt;}
.ya7_c00431{bottom:148.299533pt;}
.ya6_c00431{bottom:149.894533pt;}
.ya5_c00431{bottom:161.134067pt;}
.ya4_c00431{bottom:161.372933pt;}
.ya3_c00431{bottom:162.427600pt;}
.ya2_c00431{bottom:163.066800pt;}
.ya1_c00431{bottom:163.463600pt;}
.ya0_c00431{bottom:163.936533pt;}
.y9f_c00431{bottom:164.097433pt;}
.y9e_c00431{bottom:164.777267pt;}
.y9d_c00431{bottom:176.389033pt;}
.y9c_c00431{bottom:176.632333pt;}
.y9b_c00431{bottom:177.545300pt;}
.y9a_c00431{bottom:178.754900pt;}
.y99_c00431{bottom:179.052267pt;}
.y98_c00431{bottom:179.497933pt;}
.y97_c00431{bottom:180.863233pt;}
.y96_c00431{bottom:191.069467pt;}
.y95_c00431{bottom:192.415767pt;}
.y94_c00431{bottom:193.244000pt;}
.y93_c00431{bottom:194.286833pt;}
.y92_c00431{bottom:194.575333pt;}
.y91_c00431{bottom:196.228933pt;}
.y90_c00431{bottom:206.438767pt;}
.y8f_c00431{bottom:206.925033pt;}
.y8e_c00431{bottom:207.197600pt;}
.y8d_c00431{bottom:208.138067pt;}
.y8c_c00431{bottom:208.908967pt;}
.y8b_c00431{bottom:209.306200pt;}
.y8a_c00431{bottom:210.310167pt;}
.y89_c00431{bottom:210.870000pt;}
.y88_c00431{bottom:221.485400pt;}
.y87_c00431{bottom:222.564700pt;}
.y86_c00431{bottom:222.951233pt;}
.y85_c00431{bottom:223.414600pt;}
.y84_c00431{bottom:223.769933pt;}
.y83_c00431{bottom:224.783900pt;}
.y82_c00431{bottom:225.066133pt;}
.y81_c00431{bottom:225.269767pt;}
.y80_c00431{bottom:225.997267pt;}
.y7f_c00431{bottom:234.518067pt;}
.y7e_c00431{bottom:235.232433pt;}
.y7d_c00431{bottom:235.723967pt;}
.y7c_c00431{bottom:236.015133pt;}
.y7b_c00431{bottom:237.290300pt;}
.y7a_c00431{bottom:237.831767pt;}
.y79_c00431{bottom:239.894400pt;}
.y78_c00431{bottom:240.885767pt;}
.y77_c00431{bottom:251.031333pt;}
.y76_c00431{bottom:251.452600pt;}
.y75_c00431{bottom:253.090333pt;}
.y74_c00431{bottom:253.460467pt;}
.y73_c00431{bottom:253.807167pt;}
.y72_c00431{bottom:254.728700pt;}
.y71_c00431{bottom:255.002300pt;}
.y70_c00431{bottom:255.329967pt;}
.y6f_c00431{bottom:255.769367pt;}
.y6e_c00431{bottom:267.557067pt;}
.y6d_c00431{bottom:267.809267pt;}
.y6c_c00431{bottom:268.296367pt;}
.y6b_c00431{bottom:269.091100pt;}
.y6a_c00431{bottom:269.952600pt;}
.y69_c00431{bottom:270.186933pt;}
.y68_c00431{bottom:270.456500pt;}
.y67_c00431{bottom:271.132433pt;}
.y66_c00431{bottom:283.719867pt;}
.y65_c00431{bottom:283.886067pt;}
.y64_c00431{bottom:284.218100pt;}
.y63_c00431{bottom:284.421333pt;}
.y62_c00431{bottom:284.817200pt;}
.y61_c00431{bottom:285.342667pt;}
.y60_c00431{bottom:285.768200pt;}
.y5f_c00431{bottom:286.254033pt;}
.y5e_c00431{bottom:298.231700pt;}
.y5d_c00431{bottom:298.739900pt;}
.y5c_c00431{bottom:298.988667pt;}
.y5b_c00431{bottom:299.557933pt;}
.y5a_c00431{bottom:300.361333pt;}
.y59_c00431{bottom:300.667333pt;}
.y58_c00431{bottom:301.621533pt;}
.y57_c00431{bottom:313.777400pt;}
.y56_c00431{bottom:314.132733pt;}
.y55_c00431{bottom:314.475400pt;}
.y54_c00431{bottom:315.172200pt;}
.y53_c00431{bottom:315.471667pt;}
.y52_c00431{bottom:315.825067pt;}
.y51_c00431{bottom:316.589100pt;}
.y50_c00431{bottom:317.466033pt;}
.y4f_c00431{bottom:328.378467pt;}
.y4e_c00431{bottom:328.796867pt;}
.y4d_c00431{bottom:329.507633pt;}
.y4c_c00431{bottom:329.834533pt;}
.y4b_c00431{bottom:331.401300pt;}
.y4a_c00431{bottom:332.103567pt;}
.y49_c00431{bottom:332.588333pt;}
.y48_c00431{bottom:342.599767pt;}
.y47_c00431{bottom:344.237900pt;}
.y46_c00431{bottom:344.710900pt;}
.y45_c00431{bottom:345.281367pt;}
.y44_c00431{bottom:346.674033pt;}
.y43_c00431{bottom:347.142000pt;}
.y42_c00431{bottom:347.540767pt;}
.y41_c00431{bottom:348.675200pt;}
.y40_c00431{bottom:358.107433pt;}
.y3f_c00431{bottom:358.622600pt;}
.y3e_c00431{bottom:359.522233pt;}
.y3d_c00431{bottom:361.064267pt;}
.y3c_c00431{bottom:362.582300pt;}
.y3b_c00431{bottom:363.072067pt;}
.y3a_c00431{bottom:373.716033pt;}
.y39_c00431{bottom:375.058133pt;}
.y38_c00431{bottom:378.922767pt;}
.y37_c00431{bottom:388.964433pt;}
.y36_c00431{bottom:389.823067pt;}
.y35_c00431{bottom:390.314167pt;}
.y34_c00431{bottom:392.296400pt;}
.y33_c00431{bottom:392.666033pt;}
.y32_c00431{bottom:394.530867pt;}
.y31_c00431{bottom:403.479133pt;}
.y30_c00431{bottom:404.751967pt;}
.y2f_c00431{bottom:405.242100pt;}
.y2e_c00431{bottom:405.540167pt;}
.y2d_c00431{bottom:408.933700pt;}
.y29_c00431{bottom:420.232900pt;}
.y27_c00431{bottom:420.233033pt;}
.y2a_c00431{bottom:420.233167pt;}
.y28_c00431{bottom:420.233367pt;}
.y26_c00431{bottom:420.233500pt;}
.y2b_c00431{bottom:420.233733pt;}
.y2c_c00431{bottom:420.233867pt;}
.y25_c00431{bottom:433.976333pt;}
.y24_c00431{bottom:434.302500pt;}
.y23_c00431{bottom:434.608433pt;}
.y22_c00431{bottom:435.775000pt;}
.y21_c00431{bottom:436.031600pt;}
.y20_c00431{bottom:436.426533pt;}
.y1f_c00431{bottom:437.689333pt;}
.y1e_c00431{bottom:438.219567pt;}
.y1d_c00431{bottom:448.338733pt;}
.y1c_c00431{bottom:449.911100pt;}
.y1b_c00431{bottom:450.344300pt;}
.y1a_c00431{bottom:451.653800pt;}
.y19_c00431{bottom:451.981833pt;}
.y18_c00431{bottom:452.243500pt;}
.y17_c00431{bottom:453.588167pt;}
.y16_c00431{bottom:464.167133pt;}
.y15_c00431{bottom:464.732767pt;}
.y14_c00431{bottom:465.108233pt;}
.y13_c00431{bottom:466.162833pt;}
.y12_c00431{bottom:467.640867pt;}
.y11_c00431{bottom:467.991200pt;}
.y10_c00431{bottom:478.692833pt;}
.yf_c00431{bottom:479.269800pt;}
.ye_c00431{bottom:480.376100pt;}
.yd_c00431{bottom:480.873567pt;}
.yc_c00431{bottom:482.265333pt;}
.yb_c00431{bottom:483.358200pt;}
.ya_c00431{bottom:493.882533pt;}
.y9_c00431{bottom:494.927067pt;}
.y8_c00431{bottom:495.268867pt;}
.y7_c00431{bottom:495.931467pt;}
.y6_c00431{bottom:496.348800pt;}
.y5_c00431{bottom:497.283833pt;}
.y4_c00431{bottom:497.689833pt;}
.y3_c00431{bottom:498.018167pt;}
.y2_c00431{bottom:504.294033pt;}
.y1_c00431{bottom:507.608000pt;}
.h10_c00431{height:42.933333pt;}
.h9_c00431{height:47.614873pt;}
.h13_c00431{height:51.333333pt;}
.h8_c00431{height:51.349372pt;}
.h7_c00431{height:52.282997pt;}
.hf_c00431{height:53.216622pt;}
.h12_c00431{height:54.133333pt;}
.hd_c00431{height:56.017497pt;}
.h14_c00431{height:56.933333pt;}
.ha_c00431{height:56.951122pt;}
.h5_c00431{height:57.884747pt;}
.h11_c00431{height:58.800000pt;}
.he_c00431{height:58.818372pt;}
.h6_c00431{height:59.751997pt;}
.hb_c00431{height:60.685622pt;}
.hc_c00431{height:61.619247pt;}
.h2_c00431{height:63.486497pt;}
.h4_c00431{height:64.420122pt;}
.h3_c00431{height:66.287372pt;}
.h1_c00431{height:68.154622pt;}
.h15_c00431{height:70.000000pt;}
.h0_c00431{height:540.666667pt;}
.w0_c00431{width:319.200000pt;}
.w1_c00431{width:319.333333pt;}
.x0_c00431{left:0.000000pt;}
.x6d_c00431{left:43.680000pt;}
.x57_c00431{left:45.077367pt;}
.x50_c00431{left:46.628133pt;}
.x41_c00431{left:47.871000pt;}
.x36_c00431{left:48.777200pt;}
.x29_c00431{left:49.850800pt;}
.x1b_c00431{left:51.181833pt;}
.x3_c00431{left:52.305900pt;}
.x2d_c00431{left:63.905600pt;}
.x63_c00431{left:66.279733pt;}
.x4_c00431{left:70.562433pt;}
.x10_c00431{left:72.251400pt;}
.x67_c00431{left:74.802667pt;}
.x51_c00431{left:76.119233pt;}
.x22_c00431{left:77.730367pt;}
.x65_c00431{left:79.448133pt;}
.x1c_c00431{left:82.370733pt;}
.x64_c00431{left:84.497600pt;}
.x71_c00431{left:86.400000pt;}
.x46_c00431{left:87.851167pt;}
.x44_c00431{left:89.803833pt;}
.x30_c00431{left:92.200567pt;}
.x5_c00431{left:93.153067pt;}
.x75_c00431{left:96.480000pt;}
.xb_c00431{left:99.548500pt;}
.x3a_c00431{left:100.592500pt;}
.x47_c00431{left:102.264000pt;}
.x31_c00431{left:106.977167pt;}
.x6e_c00431{left:108.480000pt;}
.x15_c00431{left:112.906767pt;}
.x58_c00431{left:113.996433pt;}
.x60_c00431{left:114.969067pt;}
.x61_c00431{left:117.581167pt;}
.x37_c00431{left:118.619167pt;}
.x23_c00431{left:121.424333pt;}
.x16_c00431{left:124.814333pt;}
.x59_c00431{left:126.016733pt;}
.x52_c00431{left:128.925800pt;}
.x42_c00431{left:130.701300pt;}
.x3f_c00431{left:132.784500pt;}
.x5d_c00431{left:136.358567pt;}
.x17_c00431{left:139.696767pt;}
.x2e_c00431{left:141.122333pt;}
.x6_c00431{left:145.070133pt;}
.x24_c00431{left:146.632067pt;}
.x72_c00431{left:148.080000pt;}
.x53_c00431{left:149.831600pt;}
.x48_c00431{left:150.759267pt;}
.x76_c00431{left:151.680000pt;}
.x11_c00431{left:154.373767pt;}
.x1d_c00431{left:156.630900pt;}
.xc_c00431{left:160.075533pt;}
.x66_c00431{left:161.571200pt;}
.x62_c00431{left:162.975233pt;}
.x3b_c00431{left:166.369667pt;}
.x7_c00431{left:168.274200pt;}
.x5a_c00431{left:169.491167pt;}
.x4a_c00431{left:174.457600pt;}
.x32_c00431{left:175.905733pt;}
.x1_c00431{left:177.990667pt;}
.x1e_c00431{left:179.846200pt;}
.xd_c00431{left:181.681933pt;}
.x68_c00431{left:183.041333pt;}
.x3c_c00431{left:183.951833pt;}
.x40_c00431{left:186.320533pt;}
.x49_c00431{left:188.451567pt;}
.x54_c00431{left:190.380333pt;}
.x73_c00431{left:192.720000pt;}
.x1f_c00431{left:194.966567pt;}
.x33_c00431{left:197.016667pt;}
.x18_c00431{left:199.227900pt;}
.x2f_c00431{left:200.455533pt;}
.x6b_c00431{left:202.800000pt;}
.x5b_c00431{left:204.008033pt;}
.x8_c00431{left:205.077967pt;}
.x74_c00431{left:209.520000pt;}
.x38_c00431{left:210.801600pt;}
.x5e_c00431{left:211.740000pt;}
.x12_c00431{left:212.941333pt;}
.x34_c00431{left:214.549133pt;}
.x69_c00431{left:217.374667pt;}
.x19_c00431{left:218.904033pt;}
.x6f_c00431{left:220.560000pt;}
.x9_c00431{left:224.033267pt;}
.x3d_c00431{left:224.952033pt;}
.x4e_c00431{left:226.406267pt;}
.x6c_c00431{left:228.240000pt;}
.xe_c00431{left:229.776333pt;}
.x70_c00431{left:232.560000pt;}
.x13_c00431{left:233.830333pt;}
.x2c_c00431{left:234.949233pt;}
.x2a_c00431{left:238.162800pt;}
.x55_c00431{left:239.899767pt;}
.x27_c00431{left:240.954867pt;}
.x77_c00431{left:243.600000pt;}
.x3e_c00431{left:245.116067pt;}
.x4f_c00431{left:249.125467pt;}
.x4b_c00431{left:250.164833pt;}
.x25_c00431{left:253.705633pt;}
.xf_c00431{left:254.882933pt;}
.x5f_c00431{left:257.384367pt;}
.x5c_c00431{left:260.101433pt;}
.x4c_c00431{left:262.291800pt;}
.x20_c00431{left:263.616300pt;}
.x14_c00431{left:265.261167pt;}
.x26_c00431{left:269.550200pt;}
.x45_c00431{left:271.048600pt;}
.x2b_c00431{left:272.508133pt;}
.x35_c00431{left:275.218100pt;}
.x43_c00431{left:278.331633pt;}
.x56_c00431{left:279.859100pt;}
.xa_c00431{left:282.091433pt;}
.x1a_c00431{left:290.390733pt;}
.x6a_c00431{left:294.720000pt;}
.x39_c00431{left:296.474733pt;}
.x78_c00431{left:297.840000pt;}
.x28_c00431{left:298.805867pt;}
.x21_c00431{left:300.801067pt;}
.x2_c00431{left:310.549333pt;}
.x4d_c00431{left:312.502367pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00432 {
    display:none;
  }
  .loading-indicator_c00432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00432 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00432 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00432" -> "#page-container .classname_c00432")
 */
.pf_c00432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00432 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00432 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00432 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00432 {overflow:visible;}
  }
}
.c_c00432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00432 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00432:after { /* webkit #35443 */
  content: '';
}
.t_c00432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00432 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00432 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00432 { /* info for Javascript */
  display:none;
}
.l_c00432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00432:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00432 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00432.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00432{transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016915,0.000000,0.000000,0.250000,0,0);}
.m4d_c00432{transform:matrix(0.138140,-0.002348,0.004249,0.249964,0,0);-ms-transform:matrix(0.138140,-0.002348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.138140,-0.002348,0.004249,0.249964,0,0);}
.m8e_c00432{transform:matrix(0.140475,-0.002388,0.004249,0.249964,0,0);-ms-transform:matrix(0.140475,-0.002388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140475,-0.002388,0.004249,0.249964,0,0);}
.mb6_c00432{transform:matrix(0.148474,-0.002524,0.004249,0.249964,0,0);-ms-transform:matrix(0.148474,-0.002524,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148474,-0.002524,0.004249,0.249964,0,0);}
.m3a_c00432{transform:matrix(0.148549,-0.002525,0.004249,0.249964,0,0);-ms-transform:matrix(0.148549,-0.002525,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148549,-0.002525,0.004249,0.249964,0,0);}
.mce_c00432{transform:matrix(0.149388,-0.002540,0.004249,0.249964,0,0);-ms-transform:matrix(0.149388,-0.002540,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149388,-0.002540,0.004249,0.249964,0,0);}
.ma4_c00432{transform:matrix(0.152698,-0.002596,0.004249,0.249964,0,0);-ms-transform:matrix(0.152698,-0.002596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152698,-0.002596,0.004249,0.249964,0,0);}
.m6b_c00432{transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);-ms-transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158737,-0.002699,0.004249,0.249964,0,0);}
.ma0_c00432{transform:matrix(0.159487,-0.002711,0.004249,0.249964,0,0);-ms-transform:matrix(0.159487,-0.002711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159487,-0.002711,0.004249,0.249964,0,0);}
.m80_c00432{transform:matrix(0.162377,-0.002760,0.004249,0.249964,0,0);-ms-transform:matrix(0.162377,-0.002760,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162377,-0.002760,0.004249,0.249964,0,0);}
.mbe_c00432{transform:matrix(0.162891,-0.002769,0.004249,0.249964,0,0);-ms-transform:matrix(0.162891,-0.002769,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162891,-0.002769,0.004249,0.249964,0,0);}
.m8f_c00432{transform:matrix(0.164186,-0.002791,0.004249,0.249964,0,0);-ms-transform:matrix(0.164186,-0.002791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164186,-0.002791,0.004249,0.249964,0,0);}
.m6c_c00432{transform:matrix(0.164221,-0.002792,0.004249,0.249964,0,0);-ms-transform:matrix(0.164221,-0.002792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164221,-0.002792,0.004249,0.249964,0,0);}
.m3_c00432{transform:matrix(0.164311,-0.002793,0.004249,0.249964,0,0);-ms-transform:matrix(0.164311,-0.002793,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164311,-0.002793,0.004249,0.249964,0,0);}
.ma5_c00432{transform:matrix(0.166796,-0.002836,0.004249,0.249964,0,0);-ms-transform:matrix(0.166796,-0.002836,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166796,-0.002836,0.004249,0.249964,0,0);}
.m97_c00432{transform:matrix(0.167136,-0.002841,0.004249,0.249964,0,0);-ms-transform:matrix(0.167136,-0.002841,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167136,-0.002841,0.004249,0.249964,0,0);}
.m65_c00432{transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167781,-0.002852,0.004249,0.249964,0,0);}
.m81_c00432{transform:matrix(0.167921,-0.002855,0.004249,0.249964,0,0);-ms-transform:matrix(0.167921,-0.002855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167921,-0.002855,0.004249,0.249964,0,0);}
.ma2_c00432{transform:matrix(0.167926,-0.002855,0.004249,0.249964,0,0);-ms-transform:matrix(0.167926,-0.002855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167926,-0.002855,0.004249,0.249964,0,0);}
.md8_c00432{transform:matrix(0.169126,-0.002875,0.004249,0.249964,0,0);-ms-transform:matrix(0.169126,-0.002875,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169126,-0.002875,0.004249,0.249964,0,0);}
.m4a_c00432{transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);-ms-transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170085,-0.002891,0.004249,0.249964,0,0);}
.m8c_c00432{transform:matrix(0.170575,-0.002900,0.004249,0.249964,0,0);-ms-transform:matrix(0.170575,-0.002900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170575,-0.002900,0.004249,0.249964,0,0);}
.md3_c00432{transform:matrix(0.171535,-0.002916,0.004249,0.249964,0,0);-ms-transform:matrix(0.171535,-0.002916,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171535,-0.002916,0.004249,0.249964,0,0);}
.m3e_c00432{transform:matrix(0.174235,-0.002962,0.004249,0.249964,0,0);-ms-transform:matrix(0.174235,-0.002962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174235,-0.002962,0.004249,0.249964,0,0);}
.mcb_c00432{transform:matrix(0.174290,-0.002963,0.004249,0.249964,0,0);-ms-transform:matrix(0.174290,-0.002963,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174290,-0.002963,0.004249,0.249964,0,0);}
.m67_c00432{transform:matrix(0.174820,-0.002972,0.004249,0.249964,0,0);-ms-transform:matrix(0.174820,-0.002972,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174820,-0.002972,0.004249,0.249964,0,0);}
.m63_c00432{transform:matrix(0.175205,-0.002978,0.004249,0.249964,0,0);-ms-transform:matrix(0.175205,-0.002978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175205,-0.002978,0.004249,0.249964,0,0);}
.m35_c00432{transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);-ms-transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175350,-0.002981,0.004249,0.249964,0,0);}
.m86_c00432{transform:matrix(0.175770,-0.002988,0.004249,0.249964,0,0);-ms-transform:matrix(0.175770,-0.002988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175770,-0.002988,0.004249,0.249964,0,0);}
.mc7_c00432{transform:matrix(0.175865,-0.002990,0.004249,0.249964,0,0);-ms-transform:matrix(0.175865,-0.002990,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175865,-0.002990,0.004249,0.249964,0,0);}
.m15_c00432{transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);-ms-transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176110,-0.002994,0.004249,0.249964,0,0);}
.m75_c00432{transform:matrix(0.176215,-0.002996,0.004249,0.249964,0,0);-ms-transform:matrix(0.176215,-0.002996,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176215,-0.002996,0.004249,0.249964,0,0);}
.mc0_c00432{transform:matrix(0.176405,-0.002999,0.004249,0.249964,0,0);-ms-transform:matrix(0.176405,-0.002999,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176405,-0.002999,0.004249,0.249964,0,0);}
.m11_c00432{transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);-ms-transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176435,-0.002999,0.004249,0.249964,0,0);}
.m8a_c00432{transform:matrix(0.176569,-0.003002,0.004249,0.249964,0,0);-ms-transform:matrix(0.176569,-0.003002,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176569,-0.003002,0.004249,0.249964,0,0);}
.m92_c00432{transform:matrix(0.177409,-0.003016,0.004249,0.249964,0,0);-ms-transform:matrix(0.177409,-0.003016,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177409,-0.003016,0.004249,0.249964,0,0);}
.m85_c00432{transform:matrix(0.179609,-0.003053,0.004249,0.249964,0,0);-ms-transform:matrix(0.179609,-0.003053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179609,-0.003053,0.004249,0.249964,0,0);}
.m13_c00432{transform:matrix(0.180014,-0.003060,0.004249,0.249964,0,0);-ms-transform:matrix(0.180014,-0.003060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180014,-0.003060,0.004249,0.249964,0,0);}
.m83_c00432{transform:matrix(0.180174,-0.003063,0.004249,0.249964,0,0);-ms-transform:matrix(0.180174,-0.003063,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180174,-0.003063,0.004249,0.249964,0,0);}
.m2e_c00432{transform:matrix(0.180564,-0.003070,0.004249,0.249964,0,0);-ms-transform:matrix(0.180564,-0.003070,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180564,-0.003070,0.004249,0.249964,0,0);}
.m19_c00432{transform:matrix(0.181774,-0.003090,0.004249,0.249964,0,0);-ms-transform:matrix(0.181774,-0.003090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181774,-0.003090,0.004249,0.249964,0,0);}
.mcf_c00432{transform:matrix(0.181814,-0.003091,0.004249,0.249964,0,0);-ms-transform:matrix(0.181814,-0.003091,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181814,-0.003091,0.004249,0.249964,0,0);}
.m37_c00432{transform:matrix(0.181854,-0.003092,0.004249,0.249964,0,0);-ms-transform:matrix(0.181854,-0.003092,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181854,-0.003092,0.004249,0.249964,0,0);}
.m12_c00432{transform:matrix(0.182179,-0.003097,0.004249,0.249964,0,0);-ms-transform:matrix(0.182179,-0.003097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182179,-0.003097,0.004249,0.249964,0,0);}
.m98_c00432{transform:matrix(0.182309,-0.003099,0.004249,0.249964,0,0);-ms-transform:matrix(0.182309,-0.003099,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182309,-0.003099,0.004249,0.249964,0,0);}
.md5_c00432{transform:matrix(0.182359,-0.003100,0.004249,0.249964,0,0);-ms-transform:matrix(0.182359,-0.003100,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182359,-0.003100,0.004249,0.249964,0,0);}
.m7d_c00432{transform:matrix(0.183433,-0.003118,0.004249,0.249964,0,0);-ms-transform:matrix(0.183433,-0.003118,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183433,-0.003118,0.004249,0.249964,0,0);}
.m53_c00432{transform:matrix(0.183773,-0.003124,0.004249,0.249964,0,0);-ms-transform:matrix(0.183773,-0.003124,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183773,-0.003124,0.004249,0.249964,0,0);}
.mb_c00432{transform:matrix(0.183873,-0.003126,0.004249,0.249964,0,0);-ms-transform:matrix(0.183873,-0.003126,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183873,-0.003126,0.004249,0.249964,0,0);}
.m5f_c00432{transform:matrix(0.184073,-0.003129,0.004249,0.249964,0,0);-ms-transform:matrix(0.184073,-0.003129,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184073,-0.003129,0.004249,0.249964,0,0);}
.m4_c00432{transform:matrix(0.184123,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184123,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184123,-0.003130,0.004249,0.249964,0,0);}
.md2_c00432{transform:matrix(0.184608,-0.003138,0.004249,0.249964,0,0);-ms-transform:matrix(0.184608,-0.003138,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184608,-0.003138,0.004249,0.249964,0,0);}
.m90_c00432{transform:matrix(0.184628,-0.003139,0.004249,0.249964,0,0);-ms-transform:matrix(0.184628,-0.003139,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184628,-0.003139,0.004249,0.249964,0,0);}
.m7_c00432{transform:matrix(0.184738,-0.003141,0.004249,0.249964,0,0);-ms-transform:matrix(0.184738,-0.003141,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184738,-0.003141,0.004249,0.249964,0,0);}
.m78_c00432{transform:matrix(0.185628,-0.003156,0.004249,0.249964,0,0);-ms-transform:matrix(0.185628,-0.003156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185628,-0.003156,0.004249,0.249964,0,0);}
.m18_c00432{transform:matrix(0.185723,-0.003157,0.004249,0.249964,0,0);-ms-transform:matrix(0.185723,-0.003157,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185723,-0.003157,0.004249,0.249964,0,0);}
.m73_c00432{transform:matrix(0.185813,-0.003159,0.004249,0.249964,0,0);-ms-transform:matrix(0.185813,-0.003159,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185813,-0.003159,0.004249,0.249964,0,0);}
.m82_c00432{transform:matrix(0.185963,-0.003161,0.004249,0.249964,0,0);-ms-transform:matrix(0.185963,-0.003161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185963,-0.003161,0.004249,0.249964,0,0);}
.m42_c00432{transform:matrix(0.186018,-0.003162,0.004249,0.249964,0,0);-ms-transform:matrix(0.186018,-0.003162,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186018,-0.003162,0.004249,0.249964,0,0);}
.m9_c00432{transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);-ms-transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186198,-0.003165,0.004249,0.249964,0,0);}
.ma1_c00432{transform:matrix(0.186573,-0.003172,0.004249,0.249964,0,0);-ms-transform:matrix(0.186573,-0.003172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186573,-0.003172,0.004249,0.249964,0,0);}
.m3f_c00432{transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);-ms-transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186858,-0.003177,0.004249,0.249964,0,0);}
.md4_c00432{transform:matrix(0.188083,-0.003197,0.004249,0.249964,0,0);-ms-transform:matrix(0.188083,-0.003197,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188083,-0.003197,0.004249,0.249964,0,0);}
.m66_c00432{transform:matrix(0.188163,-0.003199,0.004249,0.249964,0,0);-ms-transform:matrix(0.188163,-0.003199,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188163,-0.003199,0.004249,0.249964,0,0);}
.m1d_c00432{transform:matrix(0.188693,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188693,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188693,-0.003208,0.004249,0.249964,0,0);}
.m20_c00432{transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);-ms-transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189673,-0.003224,0.004249,0.249964,0,0);}
.m9e_c00432{transform:matrix(0.189958,-0.003229,0.004249,0.249964,0,0);-ms-transform:matrix(0.189958,-0.003229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189958,-0.003229,0.004249,0.249964,0,0);}
.m74_c00432{transform:matrix(0.190123,-0.003232,0.004249,0.249964,0,0);-ms-transform:matrix(0.190123,-0.003232,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190123,-0.003232,0.004249,0.249964,0,0);}
.m2b_c00432{transform:matrix(0.190248,-0.003234,0.004249,0.249964,0,0);-ms-transform:matrix(0.190248,-0.003234,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190248,-0.003234,0.004249,0.249964,0,0);}
.mc_c00432{transform:matrix(0.191797,-0.003261,0.004249,0.249964,0,0);-ms-transform:matrix(0.191797,-0.003261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191797,-0.003261,0.004249,0.249964,0,0);}
.m46_c00432{transform:matrix(0.192092,-0.003266,0.004249,0.249964,0,0);-ms-transform:matrix(0.192092,-0.003266,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192092,-0.003266,0.004249,0.249964,0,0);}
.m1e_c00432{transform:matrix(0.192167,-0.003267,0.004249,0.249964,0,0);-ms-transform:matrix(0.192167,-0.003267,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192167,-0.003267,0.004249,0.249964,0,0);}
.m25_c00432{transform:matrix(0.192297,-0.003269,0.004249,0.249964,0,0);-ms-transform:matrix(0.192297,-0.003269,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192297,-0.003269,0.004249,0.249964,0,0);}
.m1c_c00432{transform:matrix(0.192647,-0.003275,0.004249,0.249964,0,0);-ms-transform:matrix(0.192647,-0.003275,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192647,-0.003275,0.004249,0.249964,0,0);}
.m76_c00432{transform:matrix(0.192692,-0.003276,0.004249,0.249964,0,0);-ms-transform:matrix(0.192692,-0.003276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192692,-0.003276,0.004249,0.249964,0,0);}
.m6a_c00432{transform:matrix(0.192752,-0.003277,0.004249,0.249964,0,0);-ms-transform:matrix(0.192752,-0.003277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192752,-0.003277,0.004249,0.249964,0,0);}
.m7a_c00432{transform:matrix(0.192887,-0.003279,0.004249,0.249964,0,0);-ms-transform:matrix(0.192887,-0.003279,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192887,-0.003279,0.004249,0.249964,0,0);}
.m10_c00432{transform:matrix(0.193012,-0.003281,0.004249,0.249964,0,0);-ms-transform:matrix(0.193012,-0.003281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193012,-0.003281,0.004249,0.249964,0,0);}
.m4f_c00432{transform:matrix(0.193462,-0.003289,0.004249,0.249964,0,0);-ms-transform:matrix(0.193462,-0.003289,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193462,-0.003289,0.004249,0.249964,0,0);}
.mf_c00432{transform:matrix(0.193482,-0.003289,0.004249,0.249964,0,0);-ms-transform:matrix(0.193482,-0.003289,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193482,-0.003289,0.004249,0.249964,0,0);}
.m2_c00432{transform:matrix(0.193572,-0.003291,0.004249,0.249964,0,0);-ms-transform:matrix(0.193572,-0.003291,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193572,-0.003291,0.004249,0.249964,0,0);}
.m17_c00432{transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);-ms-transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193777,-0.003294,0.004249,0.249964,0,0);}
.m7e_c00432{transform:matrix(0.193977,-0.003298,0.004249,0.249964,0,0);-ms-transform:matrix(0.193977,-0.003298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193977,-0.003298,0.004249,0.249964,0,0);}
.m79_c00432{transform:matrix(0.194242,-0.003302,0.004249,0.249964,0,0);-ms-transform:matrix(0.194242,-0.003302,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194242,-0.003302,0.004249,0.249964,0,0);}
.m44_c00432{transform:matrix(0.194287,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194287,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194287,-0.003303,0.004249,0.249964,0,0);}
.m96_c00432{transform:matrix(0.194617,-0.003308,0.004249,0.249964,0,0);-ms-transform:matrix(0.194617,-0.003308,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194617,-0.003308,0.004249,0.249964,0,0);}
.m3c_c00432{transform:matrix(0.194632,-0.003309,0.004249,0.249964,0,0);-ms-transform:matrix(0.194632,-0.003309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194632,-0.003309,0.004249,0.249964,0,0);}
.m8d_c00432{transform:matrix(0.194812,-0.003312,0.004249,0.249964,0,0);-ms-transform:matrix(0.194812,-0.003312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194812,-0.003312,0.004249,0.249964,0,0);}
.md6_c00432{transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);-ms-transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195402,-0.003322,0.004249,0.249964,0,0);}
.ma3_c00432{transform:matrix(0.195477,-0.003323,0.004249,0.249964,0,0);-ms-transform:matrix(0.195477,-0.003323,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195477,-0.003323,0.004249,0.249964,0,0);}
.mc2_c00432{transform:matrix(0.197152,-0.003352,0.004249,0.249964,0,0);-ms-transform:matrix(0.197152,-0.003352,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197152,-0.003352,0.004249,0.249964,0,0);}
.m4b_c00432{transform:matrix(0.197436,-0.003356,0.004249,0.249964,0,0);-ms-transform:matrix(0.197436,-0.003356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197436,-0.003356,0.004249,0.249964,0,0);}
.m9c_c00432{transform:matrix(0.198046,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198046,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198046,-0.003367,0.004249,0.249964,0,0);}
.m95_c00432{transform:matrix(0.198551,-0.003375,0.004249,0.249964,0,0);-ms-transform:matrix(0.198551,-0.003375,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198551,-0.003375,0.004249,0.249964,0,0);}
.m60_c00432{transform:matrix(0.198696,-0.003378,0.004249,0.249964,0,0);-ms-transform:matrix(0.198696,-0.003378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198696,-0.003378,0.004249,0.249964,0,0);}
.m2d_c00432{transform:matrix(0.198961,-0.003382,0.004249,0.249964,0,0);-ms-transform:matrix(0.198961,-0.003382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198961,-0.003382,0.004249,0.249964,0,0);}
.m1a_c00432{transform:matrix(0.199281,-0.003388,0.004249,0.249964,0,0);-ms-transform:matrix(0.199281,-0.003388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199281,-0.003388,0.004249,0.249964,0,0);}
.m6d_c00432{transform:matrix(0.199446,-0.003391,0.004249,0.249964,0,0);-ms-transform:matrix(0.199446,-0.003391,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199446,-0.003391,0.004249,0.249964,0,0);}
.me_c00432{transform:matrix(0.199651,-0.003394,0.004249,0.249964,0,0);-ms-transform:matrix(0.199651,-0.003394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199651,-0.003394,0.004249,0.249964,0,0);}
.m14_c00432{transform:matrix(0.199666,-0.003394,0.004249,0.249964,0,0);-ms-transform:matrix(0.199666,-0.003394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199666,-0.003394,0.004249,0.249964,0,0);}
.m2c_c00432{transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199866,-0.003398,0.004249,0.249964,0,0);}
.m31_c00432{transform:matrix(0.200186,-0.003403,0.004249,0.249964,0,0);-ms-transform:matrix(0.200186,-0.003403,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200186,-0.003403,0.004249,0.249964,0,0);}
.mcd_c00432{transform:matrix(0.200601,-0.003410,0.004249,0.249964,0,0);-ms-transform:matrix(0.200601,-0.003410,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200601,-0.003410,0.004249,0.249964,0,0);}
.mbc_c00432{transform:matrix(0.200971,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.200971,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200971,-0.003417,0.004249,0.249964,0,0);}
.m94_c00432{transform:matrix(0.200976,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.200976,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200976,-0.003417,0.004249,0.249964,0,0);}
.m23_c00432{transform:matrix(0.201056,-0.003418,0.004249,0.249964,0,0);-ms-transform:matrix(0.201056,-0.003418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201056,-0.003418,0.004249,0.249964,0,0);}
.m4e_c00432{transform:matrix(0.201406,-0.003424,0.004249,0.249964,0,0);-ms-transform:matrix(0.201406,-0.003424,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201406,-0.003424,0.004249,0.249964,0,0);}
.m2a_c00432{transform:matrix(0.201601,-0.003427,0.004249,0.249964,0,0);-ms-transform:matrix(0.201601,-0.003427,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201601,-0.003427,0.004249,0.249964,0,0);}
.m9b_c00432{transform:matrix(0.201906,-0.003432,0.004249,0.249964,0,0);-ms-transform:matrix(0.201906,-0.003432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201906,-0.003432,0.004249,0.249964,0,0);}
.m62_c00432{transform:matrix(0.202081,-0.003435,0.004249,0.249964,0,0);-ms-transform:matrix(0.202081,-0.003435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202081,-0.003435,0.004249,0.249964,0,0);}
.m7c_c00432{transform:matrix(0.202556,-0.003443,0.004249,0.249964,0,0);-ms-transform:matrix(0.202556,-0.003443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202556,-0.003443,0.004249,0.249964,0,0);}
.mab_c00432{transform:matrix(0.202716,-0.003446,0.004249,0.249964,0,0);-ms-transform:matrix(0.202716,-0.003446,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202716,-0.003446,0.004249,0.249964,0,0);}
.m8_c00432{transform:matrix(0.202856,-0.003449,0.004249,0.249964,0,0);-ms-transform:matrix(0.202856,-0.003449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202856,-0.003449,0.004249,0.249964,0,0);}
.m91_c00432{transform:matrix(0.202956,-0.003450,0.004249,0.249964,0,0);-ms-transform:matrix(0.202956,-0.003450,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202956,-0.003450,0.004249,0.249964,0,0);}
.m50_c00432{transform:matrix(0.203291,-0.003456,0.004249,0.249964,0,0);-ms-transform:matrix(0.203291,-0.003456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203291,-0.003456,0.004249,0.249964,0,0);}
.ma_c00432{transform:matrix(0.203506,-0.003460,0.004249,0.249964,0,0);-ms-transform:matrix(0.203506,-0.003460,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203506,-0.003460,0.004249,0.249964,0,0);}
.m5_c00432{transform:matrix(0.203846,-0.003465,0.004249,0.249964,0,0);-ms-transform:matrix(0.203846,-0.003465,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203846,-0.003465,0.004249,0.249964,0,0);}
.m6f_c00432{transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);-ms-transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203976,-0.003468,0.004249,0.249964,0,0);}
.m1b_c00432{transform:matrix(0.204420,-0.003475,0.004249,0.249964,0,0);-ms-transform:matrix(0.204420,-0.003475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204420,-0.003475,0.004249,0.249964,0,0);}
.m6e_c00432{transform:matrix(0.204760,-0.003481,0.004249,0.249964,0,0);-ms-transform:matrix(0.204760,-0.003481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204760,-0.003481,0.004249,0.249964,0,0);}
.m57_c00432{transform:matrix(0.205560,-0.003495,0.004249,0.249964,0,0);-ms-transform:matrix(0.205560,-0.003495,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205560,-0.003495,0.004249,0.249964,0,0);}
.mcc_c00432{transform:matrix(0.206310,-0.003507,0.004249,0.249964,0,0);-ms-transform:matrix(0.206310,-0.003507,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206310,-0.003507,0.004249,0.249964,0,0);}
.m47_c00432{transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206850,-0.003516,0.004249,0.249964,0,0);}
.m61_c00432{transform:matrix(0.207420,-0.003526,0.004249,0.249964,0,0);-ms-transform:matrix(0.207420,-0.003526,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207420,-0.003526,0.004249,0.249964,0,0);}
.m26_c00432{transform:matrix(0.207630,-0.003530,0.004249,0.249964,0,0);-ms-transform:matrix(0.207630,-0.003530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207630,-0.003530,0.004249,0.249964,0,0);}
.m5b_c00432{transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);-ms-transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207785,-0.003532,0.004249,0.249964,0,0);}
.m59_c00432{transform:matrix(0.208240,-0.003540,0.004249,0.249964,0,0);-ms-transform:matrix(0.208240,-0.003540,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208240,-0.003540,0.004249,0.249964,0,0);}
.m41_c00432{transform:matrix(0.208350,-0.003542,0.004249,0.249964,0,0);-ms-transform:matrix(0.208350,-0.003542,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208350,-0.003542,0.004249,0.249964,0,0);}
.m49_c00432{transform:matrix(0.208985,-0.003553,0.004249,0.249964,0,0);-ms-transform:matrix(0.208985,-0.003553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208985,-0.003553,0.004249,0.249964,0,0);}
.m40_c00432{transform:matrix(0.210210,-0.003574,0.004249,0.249964,0,0);-ms-transform:matrix(0.210210,-0.003574,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210210,-0.003574,0.004249,0.249964,0,0);}
.m5d_c00432{transform:matrix(0.211124,-0.003589,0.004249,0.249964,0,0);-ms-transform:matrix(0.211124,-0.003589,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211124,-0.003589,0.004249,0.249964,0,0);}
.m9a_c00432{transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);-ms-transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211569,-0.003597,0.004249,0.249964,0,0);}
.mb8_c00432{transform:matrix(0.212479,-0.003612,0.004249,0.249964,0,0);-ms-transform:matrix(0.212479,-0.003612,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212479,-0.003612,0.004249,0.249964,0,0);}
.mb4_c00432{transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);-ms-transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212594,-0.003614,0.004249,0.249964,0,0);}
.m68_c00432{transform:matrix(0.212779,-0.003617,0.004249,0.249964,0,0);-ms-transform:matrix(0.212779,-0.003617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212779,-0.003617,0.004249,0.249964,0,0);}
.m9f_c00432{transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);-ms-transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213024,-0.003621,0.004249,0.249964,0,0);}
.mc8_c00432{transform:matrix(0.213204,-0.003624,0.004249,0.249964,0,0);-ms-transform:matrix(0.213204,-0.003624,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213204,-0.003624,0.004249,0.249964,0,0);}
.m7f_c00432{transform:matrix(0.213264,-0.003625,0.004249,0.249964,0,0);-ms-transform:matrix(0.213264,-0.003625,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213264,-0.003625,0.004249,0.249964,0,0);}
.maa_c00432{transform:matrix(0.213954,-0.003637,0.004249,0.249964,0,0);-ms-transform:matrix(0.213954,-0.003637,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213954,-0.003637,0.004249,0.249964,0,0);}
.m71_c00432{transform:matrix(0.214014,-0.003638,0.004249,0.249964,0,0);-ms-transform:matrix(0.214014,-0.003638,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214014,-0.003638,0.004249,0.249964,0,0);}
.m1f_c00432{transform:matrix(0.214399,-0.003645,0.004249,0.249964,0,0);-ms-transform:matrix(0.214399,-0.003645,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214399,-0.003645,0.004249,0.249964,0,0);}
.mc5_c00432{transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);-ms-transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214439,-0.003645,0.004249,0.249964,0,0);}
.mb5_c00432{transform:matrix(0.214474,-0.003646,0.004249,0.249964,0,0);-ms-transform:matrix(0.214474,-0.003646,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214474,-0.003646,0.004249,0.249964,0,0);}
.mbd_c00432{transform:matrix(0.214539,-0.003647,0.004249,0.249964,0,0);-ms-transform:matrix(0.214539,-0.003647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214539,-0.003647,0.004249,0.249964,0,0);}
.m70_c00432{transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214799,-0.003652,0.004249,0.249964,0,0);}
.mbb_c00432{transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);-ms-transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215149,-0.003658,0.004249,0.249964,0,0);}
.m22_c00432{transform:matrix(0.216314,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216314,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216314,-0.003677,0.004249,0.249964,0,0);}
.m48_c00432{transform:matrix(0.217279,-0.003694,0.004249,0.249964,0,0);-ms-transform:matrix(0.217279,-0.003694,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217279,-0.003694,0.004249,0.249964,0,0);}
.m34_c00432{transform:matrix(0.217434,-0.003696,0.004249,0.249964,0,0);-ms-transform:matrix(0.217434,-0.003696,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217434,-0.003696,0.004249,0.249964,0,0);}
.ma7_c00432{transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-ms-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);}
.m69_c00432{transform:matrix(0.218228,-0.003710,0.004249,0.249964,0,0);-ms-transform:matrix(0.218228,-0.003710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218228,-0.003710,0.004249,0.249964,0,0);}
.m43_c00432{transform:matrix(0.218568,-0.003716,0.004249,0.249964,0,0);-ms-transform:matrix(0.218568,-0.003716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218568,-0.003716,0.004249,0.249964,0,0);}
.md_c00432{transform:matrix(0.218653,-0.003717,0.004249,0.249964,0,0);-ms-transform:matrix(0.218653,-0.003717,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218653,-0.003717,0.004249,0.249964,0,0);}
.m36_c00432{transform:matrix(0.219588,-0.003733,0.004249,0.249964,0,0);-ms-transform:matrix(0.219588,-0.003733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219588,-0.003733,0.004249,0.249964,0,0);}
.m3b_c00432{transform:matrix(0.219633,-0.003734,0.004249,0.249964,0,0);-ms-transform:matrix(0.219633,-0.003734,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219633,-0.003734,0.004249,0.249964,0,0);}
.m56_c00432{transform:matrix(0.220383,-0.003747,0.004249,0.249964,0,0);-ms-transform:matrix(0.220383,-0.003747,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220383,-0.003747,0.004249,0.249964,0,0);}
.m24_c00432{transform:matrix(0.220548,-0.003749,0.004249,0.249964,0,0);-ms-transform:matrix(0.220548,-0.003749,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220548,-0.003749,0.004249,0.249964,0,0);}
.m99_c00432{transform:matrix(0.222048,-0.003775,0.004249,0.249964,0,0);-ms-transform:matrix(0.222048,-0.003775,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222048,-0.003775,0.004249,0.249964,0,0);}
.m58_c00432{transform:matrix(0.222188,-0.003777,0.004249,0.249964,0,0);-ms-transform:matrix(0.222188,-0.003777,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222188,-0.003777,0.004249,0.249964,0,0);}
.m29_c00432{transform:matrix(0.222298,-0.003779,0.004249,0.249964,0,0);-ms-transform:matrix(0.222298,-0.003779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222298,-0.003779,0.004249,0.249964,0,0);}
.m4c_c00432{transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);-ms-transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);}
.m72_c00432{transform:matrix(0.224348,-0.003814,0.004249,0.249964,0,0);-ms-transform:matrix(0.224348,-0.003814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224348,-0.003814,0.004249,0.249964,0,0);}
.m2f_c00432{transform:matrix(0.225162,-0.003828,0.004249,0.249964,0,0);-ms-transform:matrix(0.225162,-0.003828,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225162,-0.003828,0.004249,0.249964,0,0);}
.mc6_c00432{transform:matrix(0.225452,-0.003833,0.004249,0.249964,0,0);-ms-transform:matrix(0.225452,-0.003833,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225452,-0.003833,0.004249,0.249964,0,0);}
.m5e_c00432{transform:matrix(0.226422,-0.003849,0.004249,0.249964,0,0);-ms-transform:matrix(0.226422,-0.003849,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226422,-0.003849,0.004249,0.249964,0,0);}
.m21_c00432{transform:matrix(0.227772,-0.003872,0.004249,0.249964,0,0);-ms-transform:matrix(0.227772,-0.003872,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227772,-0.003872,0.004249,0.249964,0,0);}
.m7b_c00432{transform:matrix(0.227907,-0.003874,0.004249,0.249964,0,0);-ms-transform:matrix(0.227907,-0.003874,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227907,-0.003874,0.004249,0.249964,0,0);}
.m45_c00432{transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);-ms-transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228032,-0.003877,0.004249,0.249964,0,0);}
.m6_c00432{transform:matrix(0.228077,-0.003877,0.004249,0.249964,0,0);-ms-transform:matrix(0.228077,-0.003877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228077,-0.003877,0.004249,0.249964,0,0);}
.m64_c00432{transform:matrix(0.229217,-0.003897,0.004249,0.249964,0,0);-ms-transform:matrix(0.229217,-0.003897,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229217,-0.003897,0.004249,0.249964,0,0);}
.m88_c00432{transform:matrix(0.229482,-0.003901,0.004249,0.249964,0,0);-ms-transform:matrix(0.229482,-0.003901,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229482,-0.003901,0.004249,0.249964,0,0);}
.m33_c00432{transform:matrix(0.230462,-0.003918,0.004249,0.249964,0,0);-ms-transform:matrix(0.230462,-0.003918,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230462,-0.003918,0.004249,0.249964,0,0);}
.md7_c00432{transform:matrix(0.232651,-0.003955,0.004249,0.249964,0,0);-ms-transform:matrix(0.232651,-0.003955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232651,-0.003955,0.004249,0.249964,0,0);}
.mad_c00432{transform:matrix(0.232706,-0.003956,0.004249,0.249964,0,0);-ms-transform:matrix(0.232706,-0.003956,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232706,-0.003956,0.004249,0.249964,0,0);}
.mc9_c00432{transform:matrix(0.234476,-0.003986,0.004249,0.249964,0,0);-ms-transform:matrix(0.234476,-0.003986,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234476,-0.003986,0.004249,0.249964,0,0);}
.m16_c00432{transform:matrix(0.234881,-0.003993,0.004249,0.249964,0,0);-ms-transform:matrix(0.234881,-0.003993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234881,-0.003993,0.004249,0.249964,0,0);}
.mb3_c00432{transform:matrix(0.235616,-0.004005,0.004249,0.249964,0,0);-ms-transform:matrix(0.235616,-0.004005,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235616,-0.004005,0.004249,0.249964,0,0);}
.mc1_c00432{transform:matrix(0.236296,-0.004017,0.004249,0.249964,0,0);-ms-transform:matrix(0.236296,-0.004017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236296,-0.004017,0.004249,0.249964,0,0);}
.ma6_c00432{transform:matrix(0.237901,-0.004044,0.004249,0.249964,0,0);-ms-transform:matrix(0.237901,-0.004044,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237901,-0.004044,0.004249,0.249964,0,0);}
.m54_c00432{transform:matrix(0.238995,-0.004063,0.004249,0.249964,0,0);-ms-transform:matrix(0.238995,-0.004063,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238995,-0.004063,0.004249,0.249964,0,0);}
.m89_c00432{transform:matrix(0.240870,-0.004095,0.004249,0.249964,0,0);-ms-transform:matrix(0.240870,-0.004095,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240870,-0.004095,0.004249,0.249964,0,0);}
.mba_c00432{transform:matrix(0.242290,-0.004119,0.004249,0.249964,0,0);-ms-transform:matrix(0.242290,-0.004119,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242290,-0.004119,0.004249,0.249964,0,0);}
.mb7_c00432{transform:matrix(0.242530,-0.004123,0.004249,0.249964,0,0);-ms-transform:matrix(0.242530,-0.004123,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242530,-0.004123,0.004249,0.249964,0,0);}
.m30_c00432{transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);-ms-transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);}
.mb0_c00432{transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);-ms-transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246134,-0.004184,0.004249,0.249964,0,0);}
.m77_c00432{transform:matrix(0.247039,-0.004200,0.004249,0.249964,0,0);-ms-transform:matrix(0.247039,-0.004200,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247039,-0.004200,0.004249,0.249964,0,0);}
.maf_c00432{transform:matrix(0.248339,-0.004222,0.004249,0.249964,0,0);-ms-transform:matrix(0.248339,-0.004222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248339,-0.004222,0.004249,0.249964,0,0);}
.mc4_c00432{transform:matrix(0.249604,-0.004243,0.004249,0.249964,0,0);-ms-transform:matrix(0.249604,-0.004243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249604,-0.004243,0.004249,0.249964,0,0);}
.mb2_c00432{transform:matrix(0.250964,-0.004266,0.004249,0.249964,0,0);-ms-transform:matrix(0.250964,-0.004266,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250964,-0.004266,0.004249,0.249964,0,0);}
.mc3_c00432{transform:matrix(0.253823,-0.004315,0.004249,0.249964,0,0);-ms-transform:matrix(0.253823,-0.004315,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253823,-0.004315,0.004249,0.249964,0,0);}
.mae_c00432{transform:matrix(0.254018,-0.004318,0.004249,0.249964,0,0);-ms-transform:matrix(0.254018,-0.004318,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254018,-0.004318,0.004249,0.249964,0,0);}
.mbf_c00432{transform:matrix(0.256378,-0.004358,0.004249,0.249964,0,0);-ms-transform:matrix(0.256378,-0.004358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256378,-0.004358,0.004249,0.249964,0,0);}
.m9d_c00432{transform:matrix(0.261037,-0.004438,0.004249,0.249964,0,0);-ms-transform:matrix(0.261037,-0.004438,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261037,-0.004438,0.004249,0.249964,0,0);}
.m39_c00432{transform:matrix(0.261387,-0.004444,0.004249,0.249964,0,0);-ms-transform:matrix(0.261387,-0.004444,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261387,-0.004444,0.004249,0.249964,0,0);}
.mb9_c00432{transform:matrix(0.262942,-0.004470,0.004249,0.249964,0,0);-ms-transform:matrix(0.262942,-0.004470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262942,-0.004470,0.004249,0.249964,0,0);}
.ma8_c00432{transform:matrix(0.270706,-0.004602,0.004249,0.249964,0,0);-ms-transform:matrix(0.270706,-0.004602,0.004249,0.249964,0,0);-webkit-transform:matrix(0.270706,-0.004602,0.004249,0.249964,0,0);}
.m5a_c00432{transform:matrix(0.274525,-0.004667,0.004249,0.249964,0,0);-ms-transform:matrix(0.274525,-0.004667,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274525,-0.004667,0.004249,0.249964,0,0);}
.m28_c00432{transform:matrix(0.274580,-0.004668,0.004249,0.249964,0,0);-ms-transform:matrix(0.274580,-0.004668,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274580,-0.004668,0.004249,0.249964,0,0);}
.m38_c00432{transform:matrix(0.281674,-0.004788,0.004249,0.249964,0,0);-ms-transform:matrix(0.281674,-0.004788,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281674,-0.004788,0.004249,0.249964,0,0);}
.m5c_c00432{transform:matrix(0.283994,-0.004828,0.004249,0.249964,0,0);-ms-transform:matrix(0.283994,-0.004828,0.004249,0.249964,0,0);-webkit-transform:matrix(0.283994,-0.004828,0.004249,0.249964,0,0);}
.m8b_c00432{transform:matrix(0.288723,-0.004908,0.004249,0.249964,0,0);-ms-transform:matrix(0.288723,-0.004908,0.004249,0.249964,0,0);-webkit-transform:matrix(0.288723,-0.004908,0.004249,0.249964,0,0);}
.mb1_c00432{transform:matrix(0.289588,-0.004923,0.004249,0.249964,0,0);-ms-transform:matrix(0.289588,-0.004923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.289588,-0.004923,0.004249,0.249964,0,0);}
.m32_c00432{transform:matrix(0.293033,-0.004982,0.004249,0.249964,0,0);-ms-transform:matrix(0.293033,-0.004982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.293033,-0.004982,0.004249,0.249964,0,0);}
.m84_c00432{transform:matrix(0.293283,-0.004986,0.004249,0.249964,0,0);-ms-transform:matrix(0.293283,-0.004986,0.004249,0.249964,0,0);-webkit-transform:matrix(0.293283,-0.004986,0.004249,0.249964,0,0);}
.m0_c00432{transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.303971,-0.005168,0.004249,0.249964,0,0);-ms-transform:matrix(0.303971,-0.005168,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303971,-0.005168,0.004249,0.249964,0,0);}
.m93_c00432{transform:matrix(0.310835,-0.005284,0.004249,0.249964,0,0);-ms-transform:matrix(0.310835,-0.005284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.310835,-0.005284,0.004249,0.249964,0,0);}
.m52_c00432{transform:matrix(0.322148,-0.005477,0.004249,0.249964,0,0);-ms-transform:matrix(0.322148,-0.005477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.322148,-0.005477,0.004249,0.249964,0,0);}
.m55_c00432{transform:matrix(0.323713,-0.005503,0.004249,0.249964,0,0);-ms-transform:matrix(0.323713,-0.005503,0.004249,0.249964,0,0);-webkit-transform:matrix(0.323713,-0.005503,0.004249,0.249964,0,0);}
.m87_c00432{transform:matrix(0.324518,-0.005517,0.004249,0.249964,0,0);-ms-transform:matrix(0.324518,-0.005517,0.004249,0.249964,0,0);-webkit-transform:matrix(0.324518,-0.005517,0.004249,0.249964,0,0);}
.mca_c00432{transform:matrix(0.327918,-0.005575,0.004249,0.249964,0,0);-ms-transform:matrix(0.327918,-0.005575,0.004249,0.249964,0,0);-webkit-transform:matrix(0.327918,-0.005575,0.004249,0.249964,0,0);}
.md1_c00432{transform:matrix(0.351539,-0.005976,0.004249,0.249964,0,0);-ms-transform:matrix(0.351539,-0.005976,0.004249,0.249964,0,0);-webkit-transform:matrix(0.351539,-0.005976,0.004249,0.249964,0,0);}
.m51_c00432{transform:matrix(0.359253,-0.006107,0.004249,0.249964,0,0);-ms-transform:matrix(0.359253,-0.006107,0.004249,0.249964,0,0);-webkit-transform:matrix(0.359253,-0.006107,0.004249,0.249964,0,0);}
.ma9_c00432{transform:matrix(0.368352,-0.006262,0.004249,0.249964,0,0);-ms-transform:matrix(0.368352,-0.006262,0.004249,0.249964,0,0);-webkit-transform:matrix(0.368352,-0.006262,0.004249,0.249964,0,0);}
.m27_c00432{transform:matrix(0.389904,-0.006628,0.004249,0.249964,0,0);-ms-transform:matrix(0.389904,-0.006628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.389904,-0.006628,0.004249,0.249964,0,0);}
.mac_c00432{transform:matrix(0.488434,-0.008303,0.004249,0.249964,0,0);-ms-transform:matrix(0.488434,-0.008303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.488434,-0.008303,0.004249,0.249964,0,0);}
.md0_c00432{transform:matrix(0.556235,-0.009456,0.004249,0.249964,0,0);-ms-transform:matrix(0.556235,-0.009456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.556235,-0.009456,0.004249,0.249964,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:0.000000px;}
.fc0_c00432{color:transparent;}
.fs9_c00432{font-size:47.256827px;}
.fs11_c00432{font-size:50.407282px;}
.fsa_c00432{font-size:55.658041px;}
.fsb_c00432{font-size:56.708193px;}
.fs7_c00432{font-size:57.758344px;}
.fsd_c00432{font-size:58.808496px;}
.fs5_c00432{font-size:59.858648px;}
.fs6_c00432{font-size:60.908799px;}
.fsc_c00432{font-size:61.958951px;}
.fs8_c00432{font-size:63.009103px;}
.fs2_c00432{font-size:64.059255px;}
.fs3_c00432{font-size:65.109406px;}
.fs4_c00432{font-size:66.159558px;}
.fs1_c00432{font-size:67.209710px;}
.fs10_c00432{font-size:69.310013px;}
.fsf_c00432{font-size:70.360165px;}
.fs12_c00432{font-size:71.410317px;}
.fse_c00432{font-size:73.510620px;}
.fs0_c00432{font-size:79.800000px;}
.y0_c00432{bottom:0.000000px;}
.yd3_c00432{bottom:26.837793px;}
.yd7_c00432{bottom:26.837981px;}
.yda_c00432{bottom:26.838215px;}
.yd6_c00432{bottom:26.838464px;}
.yd4_c00432{bottom:26.838471px;}
.yd9_c00432{bottom:26.838501px;}
.yd8_c00432{bottom:26.838680px;}
.yd5_c00432{bottom:26.838810px;}
.yd2_c00432{bottom:43.425309px;}
.yd1_c00432{bottom:43.425600px;}
.yd0_c00432{bottom:43.426332px;}
.ycd_c00432{bottom:43.426442px;}
.ycf_c00432{bottom:43.426469px;}
.yce_c00432{bottom:43.426730px;}
.ycc_c00432{bottom:43.426917px;}
.yc5_c00432{bottom:58.250364px;}
.yc6_c00432{bottom:58.499406px;}
.yc7_c00432{bottom:58.985802px;}
.yc8_c00432{bottom:60.165474px;}
.yc9_c00432{bottom:60.936732px;}
.yca_c00432{bottom:61.254945px;}
.ycb_c00432{bottom:61.527155px;}
.yc4_c00432{bottom:78.171081px;}
.ybf_c00432{bottom:78.171563px;}
.yc1_c00432{bottom:78.171675px;}
.yc3_c00432{bottom:78.171693px;}
.yc0_c00432{bottom:78.171722px;}
.ybe_c00432{bottom:78.171935px;}
.yc2_c00432{bottom:78.172224px;}
.ybd_c00432{bottom:78.172556px;}
.ybc_c00432{bottom:78.173031px;}
.ybb_c00432{bottom:78.173279px;}
.yb9_c00432{bottom:96.222987px;}
.yba_c00432{bottom:96.223455px;}
.yb8_c00432{bottom:96.223488px;}
.yb5_c00432{bottom:96.223953px;}
.yb7_c00432{bottom:96.224165px;}
.yb4_c00432{bottom:96.224381px;}
.yb6_c00432{bottom:96.224652px;}
.yaf_c00432{bottom:113.139210px;}
.yb1_c00432{bottom:113.139332px;}
.yb2_c00432{bottom:113.139333px;}
.yb0_c00432{bottom:113.139447px;}
.yb3_c00432{bottom:113.139926px;}
.yae_c00432{bottom:113.139947px;}
.ya9_c00432{bottom:130.395863px;}
.yaa_c00432{bottom:130.396280px;}
.ya8_c00432{bottom:130.396329px;}
.yab_c00432{bottom:130.396461px;}
.yac_c00432{bottom:130.396976px;}
.yad_c00432{bottom:130.397289px;}
.ya7_c00432{bottom:147.877442px;}
.ya2_c00432{bottom:147.877878px;}
.ya4_c00432{bottom:147.878030px;}
.ya6_c00432{bottom:147.878153px;}
.ya5_c00432{bottom:147.878279px;}
.ya3_c00432{bottom:147.878471px;}
.y9b_c00432{bottom:163.881584px;}
.y9c_c00432{bottom:163.882103px;}
.y9d_c00432{bottom:163.882121px;}
.ya0_c00432{bottom:163.882248px;}
.ya1_c00432{bottom:163.882347px;}
.y9e_c00432{bottom:163.882448px;}
.y9f_c00432{bottom:163.882749px;}
.y95_c00432{bottom:177.876429px;}
.y96_c00432{bottom:178.815446px;}
.y97_c00432{bottom:179.159697px;}
.y98_c00432{bottom:179.923139px;}
.y99_c00432{bottom:180.317150px;}
.y9a_c00432{bottom:180.543933px;}
.y91_c00432{bottom:197.194598px;}
.y94_c00432{bottom:197.194704px;}
.y92_c00432{bottom:197.194796px;}
.y93_c00432{bottom:197.195123px;}
.y90_c00432{bottom:197.195330px;}
.y8f_c00432{bottom:197.195723px;}
.y8a_c00432{bottom:214.870517px;}
.y88_c00432{bottom:214.870668px;}
.y89_c00432{bottom:214.870755px;}
.y8b_c00432{bottom:214.871160px;}
.y8c_c00432{bottom:214.871319px;}
.y8d_c00432{bottom:214.871321px;}
.y8e_c00432{bottom:214.871745px;}
.y84_c00432{bottom:231.856634px;}
.y83_c00432{bottom:231.856881px;}
.y85_c00432{bottom:231.856910px;}
.y82_c00432{bottom:231.856974px;}
.y86_c00432{bottom:231.857412px;}
.y87_c00432{bottom:231.858051px;}
.y7c_c00432{bottom:249.312492px;}
.y81_c00432{bottom:249.312635px;}
.y7d_c00432{bottom:249.312840px;}
.y7e_c00432{bottom:249.312872px;}
.y7b_c00432{bottom:249.312933px;}
.y7f_c00432{bottom:249.312963px;}
.y80_c00432{bottom:249.313346px;}
.y78_c00432{bottom:266.939466px;}
.y7a_c00432{bottom:266.939601px;}
.y74_c00432{bottom:266.939943px;}
.y77_c00432{bottom:266.940018px;}
.y79_c00432{bottom:266.940188px;}
.y75_c00432{bottom:266.940561px;}
.y76_c00432{bottom:266.940669px;}
.y6f_c00432{bottom:286.038653px;}
.y6e_c00432{bottom:286.038771px;}
.y70_c00432{bottom:286.039206px;}
.y72_c00432{bottom:286.039508px;}
.y73_c00432{bottom:286.039809px;}
.y71_c00432{bottom:286.039949px;}
.y65_c00432{bottom:301.825184px;}
.y66_c00432{bottom:302.113424px;}
.y67_c00432{bottom:302.543474px;}
.y68_c00432{bottom:302.795700px;}
.y69_c00432{bottom:303.448424px;}
.y6a_c00432{bottom:303.609207px;}
.y6b_c00432{bottom:304.370094px;}
.y6c_c00432{bottom:304.652099px;}
.y6d_c00432{bottom:304.908104px;}
.y63_c00432{bottom:319.445675px;}
.y5f_c00432{bottom:319.445781px;}
.y62_c00432{bottom:319.446218px;}
.y64_c00432{bottom:319.446284px;}
.y60_c00432{bottom:319.446434px;}
.y61_c00432{bottom:319.446615px;}
.y5c_c00432{bottom:336.177606px;}
.y58_c00432{bottom:336.177612px;}
.y57_c00432{bottom:336.177735px;}
.y5b_c00432{bottom:336.177893px;}
.y59_c00432{bottom:336.178071px;}
.y5d_c00432{bottom:336.178155px;}
.y5a_c00432{bottom:336.178590px;}
.y5e_c00432{bottom:336.178614px;}
.y54_c00432{bottom:352.787523px;}
.y53_c00432{bottom:352.787784px;}
.y52_c00432{bottom:352.787810px;}
.y55_c00432{bottom:352.787915px;}
.y51_c00432{bottom:352.788071px;}
.y50_c00432{bottom:352.788159px;}
.y56_c00432{bottom:352.788399px;}
.y4e_c00432{bottom:368.622687px;}
.y4d_c00432{bottom:368.622845px;}
.y4f_c00432{bottom:368.623116px;}
.y4c_c00432{bottom:368.623443px;}
.y4b_c00432{bottom:368.623742px;}
.y4a_c00432{bottom:368.624409px;}
.y48_c00432{bottom:385.068405px;}
.y44_c00432{bottom:385.068492px;}
.y47_c00432{bottom:385.068833px;}
.y49_c00432{bottom:385.069101px;}
.y45_c00432{bottom:385.069217px;}
.y46_c00432{bottom:385.069544px;}
.y42_c00432{bottom:401.504535px;}
.y3e_c00432{bottom:401.504669px;}
.y41_c00432{bottom:401.504843px;}
.y3f_c00432{bottom:401.504957px;}
.y40_c00432{bottom:401.505099px;}
.y43_c00432{bottom:401.505204px;}
.y3d_c00432{bottom:401.505401px;}
.y38_c00432{bottom:416.591495px;}
.y39_c00432{bottom:416.918482px;}
.y3a_c00432{bottom:418.609229px;}
.y3b_c00432{bottom:419.228403px;}
.y3c_c00432{bottom:419.870198px;}
.y35_c00432{bottom:434.354168px;}
.y31_c00432{bottom:434.354356px;}
.y32_c00432{bottom:434.354546px;}
.y36_c00432{bottom:434.354716px;}
.y34_c00432{bottom:434.354822px;}
.y37_c00432{bottom:434.354863px;}
.y33_c00432{bottom:434.355232px;}
.y30_c00432{bottom:452.648909px;}
.y2e_c00432{bottom:452.649026px;}
.y2f_c00432{bottom:452.649039px;}
.y2d_c00432{bottom:452.649372px;}
.y2c_c00432{bottom:452.650049px;}
.y2b_c00432{bottom:452.650571px;}
.y25_c00432{bottom:469.663992px;}
.y26_c00432{bottom:469.664151px;}
.y29_c00432{bottom:469.664680px;}
.y2a_c00432{bottom:469.664687px;}
.y27_c00432{bottom:469.664748px;}
.y28_c00432{bottom:469.665211px;}
.y24_c00432{bottom:486.450290px;}
.y23_c00432{bottom:486.450322px;}
.y20_c00432{bottom:486.450747px;}
.y22_c00432{bottom:486.450852px;}
.y21_c00432{bottom:486.451104px;}
.y19_c00432{bottom:501.112913px;}
.y1a_c00432{bottom:501.981201px;}
.y1b_c00432{bottom:502.263760px;}
.y1c_c00432{bottom:502.772942px;}
.y1d_c00432{bottom:503.458400px;}
.y1e_c00432{bottom:503.750790px;}
.y1f_c00432{bottom:504.071777px;}
.y10_c00432{bottom:518.127566px;}
.y11_c00432{bottom:518.547898px;}
.y12_c00432{bottom:518.814018px;}
.y13_c00432{bottom:519.511394px;}
.y14_c00432{bottom:519.689200px;}
.y15_c00432{bottom:520.451096px;}
.y16_c00432{bottom:520.625430px;}
.y17_c00432{bottom:521.250402px;}
.y18_c00432{bottom:521.492729px;}
.y9_c00432{bottom:535.140239px;}
.ya_c00432{bottom:535.752499px;}
.yb_c00432{bottom:536.146456px;}
.yc_c00432{bottom:536.368330px;}
.yd_c00432{bottom:537.467118px;}
.ye_c00432{bottom:537.977152px;}
.yf_c00432{bottom:538.678541px;}
.y2_c00432{bottom:549.994500px;}
.y3_c00432{bottom:550.772888px;}
.y4_c00432{bottom:551.472582px;}
.y5_c00432{bottom:552.416975px;}
.y6_c00432{bottom:553.632891px;}
.y7_c00432{bottom:554.193891px;}
.y8_c00432{bottom:554.721665px;}
.y1_c00432{bottom:566.842500px;}
.ha_c00432{height:47.256827px;}
.h12_c00432{height:50.407282px;}
.hb_c00432{height:55.658041px;}
.hc_c00432{height:56.708193px;}
.h8_c00432{height:57.758344px;}
.he_c00432{height:58.808496px;}
.h6_c00432{height:59.858648px;}
.h7_c00432{height:60.908799px;}
.hd_c00432{height:61.958951px;}
.h9_c00432{height:63.009103px;}
.h3_c00432{height:64.059255px;}
.h4_c00432{height:65.109406px;}
.h5_c00432{height:66.159558px;}
.h2_c00432{height:67.209710px;}
.h11_c00432{height:69.310013px;}
.h10_c00432{height:70.360165px;}
.h13_c00432{height:71.410317px;}
.hf_c00432{height:73.510620px;}
.h1_c00432{height:79.800000px;}
.h0_c00432{height:608.250000px;}
.w0_c00432{width:359.100000px;}
.w1_c00432{width:359.250000px;}
.x0_c00432{left:0.000000px;}
.x42_c00432{left:9.718295px;}
.x3_c00432{left:11.107500px;}
.x21_c00432{left:12.149025px;}
.x6d_c00432{left:15.928988px;}
.x30_c00432{left:17.009290px;}
.x37_c00432{left:18.088449px;}
.x64_c00432{left:19.439050px;}
.x61_c00432{left:22.139050px;}
.x38_c00432{left:24.838887px;}
.x22_c00432{left:30.781405px;}
.x54_c00432{left:32.399769px;}
.x29_c00432{left:35.641399px;}
.x2e_c00432{left:37.699321px;}
.x10_c00432{left:46.822756px;}
.x51_c00432{left:53.463264px;}
.x31_c00432{left:55.624459px;}
.x4_c00432{left:56.895000px;}
.xa_c00432{left:58.686790px;}
.x43_c00432{left:61.565763px;}
.x3a_c00432{left:63.454536px;}
.x11_c00432{left:69.008143px;}
.x62_c00432{left:70.745601px;}
.x68_c00432{left:72.575996px;}
.x3f_c00432{left:74.795738px;}
.x1d_c00432{left:76.418295px;}
.x65_c00432{left:80.737773px;}
.x18_c00432{left:84.397665px;}
.x25_c00432{left:85.599411px;}
.x4c_c00432{left:86.947865px;}
.xb_c00432{left:89.009856px;}
.x23_c00432{left:91.539949px;}
.x6a_c00432{left:92.620719px;}
.x2a_c00432{left:96.670020px;}
.x5_c00432{left:98.053500px;}
.x52_c00432{left:99.100448px;}
.x32_c00432{left:101.801796px;}
.xc_c00432{left:106.033003px;}
.x19_c00432{left:107.903154px;}
.x26_c00432{left:111.792484px;}
.x4d_c00432{left:115.841703px;}
.x1_c00432{left:118.260000px;}
.x1e_c00432{left:120.975172px;}
.x2b_c00432{left:122.594517px;}
.x57_c00432{left:123.672303px;}
.x12_c00432{left:127.064565px;}
.x44_c00432{left:130.155077px;}
.x5d_c00432{left:137.173431px;}
.x27_c00432{left:139.065864px;}
.x13_c00432{left:141.936840px;}
.x3d_c00432{left:143.116190px;}
.x55_c00432{left:146.896343px;}
.x1a_c00432{left:150.299749px;}
.x6_c00432{left:153.606000px;}
.x33_c00432{left:156.620131px;}
.x47_c00432{left:157.835465px;}
.x66_c00432{left:159.858646px;}
.x6b_c00432{left:162.560441px;}
.x40_c00432{left:166.338681px;}
.x4e_c00432{left:167.959248px;}
.x48_c00432{left:172.412444px;}
.x63_c00432{left:173.630334px;}
.x58_c00432{left:176.330686px;}
.x6e_c00432{left:177.410127px;}
.x2f_c00432{left:178.549281px;}
.x6c_c00432{left:179.842439px;}
.x34_c00432{left:183.083281px;}
.x5f_c00432{left:187.131748px;}
.x4f_c00432{left:189.292419px;}
.xd_c00432{left:190.526241px;}
.x59_c00432{left:194.963067px;}
.x5b_c00432{left:198.841635px;}
.x2c_c00432{left:202.255543px;}
.x14_c00432{left:205.377220px;}
.x1b_c00432{left:207.478620px;}
.x1f_c00432{left:210.087427px;}
.x69_c00432{left:211.873085px;}
.x56_c00432{left:215.215580px;}
.x3e_c00432{left:216.836982px;}
.x15_c00432{left:219.956970px;}
.x5e_c00432{left:223.316902px;}
.x7_c00432{left:225.130500px;}
.x24_c00432{left:227.369694px;}
.xe_c00432{left:229.707393px;}
.x1c_c00432{left:231.827185px;}
.x5c_c00432{left:234.728307px;}
.x35_c00432{left:236.551234px;}
.x39_c00432{left:237.628868px;}
.x49_c00432{left:241.530482px;}
.x60_c00432{left:243.300466px;}
.x45_c00432{left:245.191828px;}
.x41_c00432{left:250.052355px;}
.x36_c00432{left:252.212748px;}
.x53_c00432{left:254.641404px;}
.x28_c00432{left:256.533304px;}
.x8_c00432{left:258.130500px;}
.x3b_c00432{left:259.772773px;}
.x50_c00432{left:262.743135px;}
.x46_c00432{left:265.174592px;}
.x4a_c00432{left:267.121583px;}
.x20_c00432{left:268.955436px;}
.x16_c00432{left:272.077407px;}
.x2_c00432{left:274.590000px;}
.x5a_c00432{left:277.865012px;}
.x3c_c00432{left:279.215384px;}
.x67_c00432{left:280.296954px;}
.xf_c00432{left:283.675065px;}
.x2d_c00432{left:285.967718px;}
.x9_c00432{left:289.176000px;}
.x4b_c00432{left:290.388954px;}
.x17_c00432{left:292.333641px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.fs9_c00432{font-size:42.006069pt;}
.fs11_c00432{font-size:44.806473pt;}
.fsa_c00432{font-size:49.473814pt;}
.fsb_c00432{font-size:50.407282pt;}
.fs7_c00432{font-size:51.340750pt;}
.fsd_c00432{font-size:52.274219pt;}
.fs5_c00432{font-size:53.207687pt;}
.fs6_c00432{font-size:54.141155pt;}
.fsc_c00432{font-size:55.074623pt;}
.fs8_c00432{font-size:56.008091pt;}
.fs2_c00432{font-size:56.941560pt;}
.fs3_c00432{font-size:57.875028pt;}
.fs4_c00432{font-size:58.808496pt;}
.fs1_c00432{font-size:59.741964pt;}
.fs10_c00432{font-size:61.608901pt;}
.fsf_c00432{font-size:62.542369pt;}
.fs12_c00432{font-size:63.475837pt;}
.fse_c00432{font-size:65.342773pt;}
.fs0_c00432{font-size:70.933333pt;}
.y0_c00432{bottom:0.000000pt;}
.yd3_c00432{bottom:23.855816pt;}
.yd7_c00432{bottom:23.855983pt;}
.yda_c00432{bottom:23.856191pt;}
.yd6_c00432{bottom:23.856412pt;}
.yd4_c00432{bottom:23.856419pt;}
.yd9_c00432{bottom:23.856445pt;}
.yd8_c00432{bottom:23.856604pt;}
.yd5_c00432{bottom:23.856720pt;}
.yd2_c00432{bottom:38.600275pt;}
.yd1_c00432{bottom:38.600533pt;}
.yd0_c00432{bottom:38.601184pt;}
.ycd_c00432{bottom:38.601281pt;}
.ycf_c00432{bottom:38.601305pt;}
.yce_c00432{bottom:38.601537pt;}
.ycc_c00432{bottom:38.601704pt;}
.yc5_c00432{bottom:51.778101pt;}
.yc6_c00432{bottom:51.999472pt;}
.yc7_c00432{bottom:52.431824pt;}
.yc8_c00432{bottom:53.480421pt;}
.yc9_c00432{bottom:54.165984pt;}
.yca_c00432{bottom:54.448840pt;}
.ycb_c00432{bottom:54.690804pt;}
.yc4_c00432{bottom:69.485405pt;}
.ybf_c00432{bottom:69.485833pt;}
.yc1_c00432{bottom:69.485933pt;}
.yc3_c00432{bottom:69.485949pt;}
.yc0_c00432{bottom:69.485975pt;}
.ybe_c00432{bottom:69.486164pt;}
.yc2_c00432{bottom:69.486421pt;}
.ybd_c00432{bottom:69.486716pt;}
.ybc_c00432{bottom:69.487139pt;}
.ybb_c00432{bottom:69.487359pt;}
.yb9_c00432{bottom:85.531544pt;}
.yba_c00432{bottom:85.531960pt;}
.yb8_c00432{bottom:85.531989pt;}
.yb5_c00432{bottom:85.532403pt;}
.yb7_c00432{bottom:85.532591pt;}
.yb4_c00432{bottom:85.532783pt;}
.yb6_c00432{bottom:85.533024pt;}
.yaf_c00432{bottom:100.568187pt;}
.yb1_c00432{bottom:100.568295pt;}
.yb2_c00432{bottom:100.568296pt;}
.yb0_c00432{bottom:100.568397pt;}
.yb3_c00432{bottom:100.568823pt;}
.yae_c00432{bottom:100.568841pt;}
.ya9_c00432{bottom:115.907433pt;}
.yaa_c00432{bottom:115.907804pt;}
.ya8_c00432{bottom:115.907848pt;}
.yab_c00432{bottom:115.907965pt;}
.yac_c00432{bottom:115.908423pt;}
.yad_c00432{bottom:115.908701pt;}
.ya7_c00432{bottom:131.446615pt;}
.ya2_c00432{bottom:131.447003pt;}
.ya4_c00432{bottom:131.447137pt;}
.ya6_c00432{bottom:131.447247pt;}
.ya5_c00432{bottom:131.447359pt;}
.ya3_c00432{bottom:131.447529pt;}
.y9b_c00432{bottom:145.672519pt;}
.y9c_c00432{bottom:145.672980pt;}
.y9d_c00432{bottom:145.672996pt;}
.ya0_c00432{bottom:145.673109pt;}
.ya1_c00432{bottom:145.673197pt;}
.y9e_c00432{bottom:145.673287pt;}
.y9f_c00432{bottom:145.673555pt;}
.y95_c00432{bottom:158.112381pt;}
.y96_c00432{bottom:158.947063pt;}
.y97_c00432{bottom:159.253064pt;}
.y98_c00432{bottom:159.931679pt;}
.y99_c00432{bottom:160.281911pt;}
.y9a_c00432{bottom:160.483496pt;}
.y91_c00432{bottom:175.284087pt;}
.y94_c00432{bottom:175.284181pt;}
.y92_c00432{bottom:175.284263pt;}
.y93_c00432{bottom:175.284553pt;}
.y90_c00432{bottom:175.284737pt;}
.y8f_c00432{bottom:175.285087pt;}
.y8a_c00432{bottom:190.996015pt;}
.y88_c00432{bottom:190.996149pt;}
.y89_c00432{bottom:190.996227pt;}
.y8b_c00432{bottom:190.996587pt;}
.y8c_c00432{bottom:190.996728pt;}
.y8d_c00432{bottom:190.996729pt;}
.y8e_c00432{bottom:190.997107pt;}
.y84_c00432{bottom:206.094785pt;}
.y83_c00432{bottom:206.095005pt;}
.y85_c00432{bottom:206.095031pt;}
.y82_c00432{bottom:206.095088pt;}
.y86_c00432{bottom:206.095477pt;}
.y87_c00432{bottom:206.096045pt;}
.y7c_c00432{bottom:221.611104pt;}
.y81_c00432{bottom:221.611231pt;}
.y7d_c00432{bottom:221.611413pt;}
.y7e_c00432{bottom:221.611441pt;}
.y7b_c00432{bottom:221.611496pt;}
.y7f_c00432{bottom:221.611523pt;}
.y80_c00432{bottom:221.611863pt;}
.y78_c00432{bottom:237.279525pt;}
.y7a_c00432{bottom:237.279645pt;}
.y74_c00432{bottom:237.279949pt;}
.y77_c00432{bottom:237.280016pt;}
.y79_c00432{bottom:237.280167pt;}
.y75_c00432{bottom:237.280499pt;}
.y76_c00432{bottom:237.280595pt;}
.y6f_c00432{bottom:254.256580pt;}
.y6e_c00432{bottom:254.256685pt;}
.y70_c00432{bottom:254.257072pt;}
.y72_c00432{bottom:254.257340pt;}
.y73_c00432{bottom:254.257608pt;}
.y71_c00432{bottom:254.257732pt;}
.y65_c00432{bottom:268.289052pt;}
.y66_c00432{bottom:268.545265pt;}
.y67_c00432{bottom:268.927532pt;}
.y68_c00432{bottom:269.151733pt;}
.y69_c00432{bottom:269.731932pt;}
.y6a_c00432{bottom:269.874851pt;}
.y6b_c00432{bottom:270.551195pt;}
.y6c_c00432{bottom:270.801865pt;}
.y6d_c00432{bottom:271.029425pt;}
.y63_c00432{bottom:283.951711pt;}
.y5f_c00432{bottom:283.951805pt;}
.y62_c00432{bottom:283.952193pt;}
.y64_c00432{bottom:283.952252pt;}
.y60_c00432{bottom:283.952385pt;}
.y61_c00432{bottom:283.952547pt;}
.y5c_c00432{bottom:298.824539pt;}
.y58_c00432{bottom:298.824544pt;}
.y57_c00432{bottom:298.824653pt;}
.y5b_c00432{bottom:298.824793pt;}
.y59_c00432{bottom:298.824952pt;}
.y5d_c00432{bottom:298.825027pt;}
.y5a_c00432{bottom:298.825413pt;}
.y5e_c00432{bottom:298.825435pt;}
.y54_c00432{bottom:313.588909pt;}
.y53_c00432{bottom:313.589141pt;}
.y52_c00432{bottom:313.589164pt;}
.y55_c00432{bottom:313.589257pt;}
.y51_c00432{bottom:313.589396pt;}
.y50_c00432{bottom:313.589475pt;}
.y56_c00432{bottom:313.589688pt;}
.y4e_c00432{bottom:327.664611pt;}
.y4d_c00432{bottom:327.664751pt;}
.y4f_c00432{bottom:327.664992pt;}
.y4c_c00432{bottom:327.665283pt;}
.y4b_c00432{bottom:327.665548pt;}
.y4a_c00432{bottom:327.666141pt;}
.y48_c00432{bottom:342.283027pt;}
.y44_c00432{bottom:342.283104pt;}
.y47_c00432{bottom:342.283407pt;}
.y49_c00432{bottom:342.283645pt;}
.y45_c00432{bottom:342.283748pt;}
.y46_c00432{bottom:342.284039pt;}
.y42_c00432{bottom:356.892920pt;}
.y3e_c00432{bottom:356.893039pt;}
.y41_c00432{bottom:356.893193pt;}
.y3f_c00432{bottom:356.893295pt;}
.y40_c00432{bottom:356.893421pt;}
.y43_c00432{bottom:356.893515pt;}
.y3d_c00432{bottom:356.893689pt;}
.y38_c00432{bottom:370.303551pt;}
.y39_c00432{bottom:370.594207pt;}
.y3a_c00432{bottom:372.097092pt;}
.y3b_c00432{bottom:372.647469pt;}
.y3c_c00432{bottom:373.217953pt;}
.y35_c00432{bottom:386.092593pt;}
.y31_c00432{bottom:386.092761pt;}
.y32_c00432{bottom:386.092929pt;}
.y36_c00432{bottom:386.093081pt;}
.y34_c00432{bottom:386.093175pt;}
.y37_c00432{bottom:386.093212pt;}
.y33_c00432{bottom:386.093540pt;}
.y30_c00432{bottom:402.354585pt;}
.y2e_c00432{bottom:402.354689pt;}
.y2f_c00432{bottom:402.354701pt;}
.y2d_c00432{bottom:402.354997pt;}
.y2c_c00432{bottom:402.355599pt;}
.y2b_c00432{bottom:402.356063pt;}
.y25_c00432{bottom:417.479104pt;}
.y26_c00432{bottom:417.479245pt;}
.y29_c00432{bottom:417.479716pt;}
.y2a_c00432{bottom:417.479721pt;}
.y27_c00432{bottom:417.479776pt;}
.y28_c00432{bottom:417.480188pt;}
.y24_c00432{bottom:432.400257pt;}
.y23_c00432{bottom:432.400287pt;}
.y20_c00432{bottom:432.400664pt;}
.y22_c00432{bottom:432.400757pt;}
.y21_c00432{bottom:432.400981pt;}
.y19_c00432{bottom:445.433700pt;}
.y1a_c00432{bottom:446.205512pt;}
.y1b_c00432{bottom:446.456676pt;}
.y1c_c00432{bottom:446.909281pt;}
.y1d_c00432{bottom:447.518577pt;}
.y1e_c00432{bottom:447.778480pt;}
.y1f_c00432{bottom:448.063801pt;}
.y10_c00432{bottom:460.557836pt;}
.y11_c00432{bottom:460.931465pt;}
.y12_c00432{bottom:461.168016pt;}
.y13_c00432{bottom:461.787905pt;}
.y14_c00432{bottom:461.945956pt;}
.y15_c00432{bottom:462.623196pt;}
.y16_c00432{bottom:462.778160pt;}
.y17_c00432{bottom:463.333691pt;}
.y18_c00432{bottom:463.549092pt;}
.y9_c00432{bottom:475.680212pt;}
.ya_c00432{bottom:476.224444pt;}
.yb_c00432{bottom:476.574628pt;}
.yc_c00432{bottom:476.771849pt;}
.yd_c00432{bottom:477.748549pt;}
.ye_c00432{bottom:478.201913pt;}
.yf_c00432{bottom:478.825369pt;}
.y2_c00432{bottom:488.884000pt;}
.y3_c00432{bottom:489.575900pt;}
.y4_c00432{bottom:490.197851pt;}
.y5_c00432{bottom:491.037311pt;}
.y6_c00432{bottom:492.118125pt;}
.y7_c00432{bottom:492.616792pt;}
.y8_c00432{bottom:493.085924pt;}
.y1_c00432{bottom:503.860000pt;}
.ha_c00432{height:42.006069pt;}
.h12_c00432{height:44.806473pt;}
.hb_c00432{height:49.473814pt;}
.hc_c00432{height:50.407282pt;}
.h8_c00432{height:51.340750pt;}
.he_c00432{height:52.274219pt;}
.h6_c00432{height:53.207687pt;}
.h7_c00432{height:54.141155pt;}
.hd_c00432{height:55.074623pt;}
.h9_c00432{height:56.008091pt;}
.h3_c00432{height:56.941560pt;}
.h4_c00432{height:57.875028pt;}
.h5_c00432{height:58.808496pt;}
.h2_c00432{height:59.741964pt;}
.h11_c00432{height:61.608901pt;}
.h10_c00432{height:62.542369pt;}
.h13_c00432{height:63.475837pt;}
.hf_c00432{height:65.342773pt;}
.h1_c00432{height:70.933333pt;}
.h0_c00432{height:540.666667pt;}
.w0_c00432{width:319.200000pt;}
.w1_c00432{width:319.333333pt;}
.x0_c00432{left:0.000000pt;}
.x42_c00432{left:8.638484pt;}
.x3_c00432{left:9.873333pt;}
.x21_c00432{left:10.799133pt;}
.x6d_c00432{left:14.159100pt;}
.x30_c00432{left:15.119369pt;}
.x37_c00432{left:16.078621pt;}
.x64_c00432{left:17.279156pt;}
.x61_c00432{left:19.679156pt;}
.x38_c00432{left:22.079011pt;}
.x22_c00432{left:27.361249pt;}
.x54_c00432{left:28.799795pt;}
.x29_c00432{left:31.681244pt;}
.x2e_c00432{left:33.510508pt;}
.x10_c00432{left:41.620228pt;}
.x51_c00432{left:47.522901pt;}
.x31_c00432{left:49.443964pt;}
.x4_c00432{left:50.573333pt;}
.xa_c00432{left:52.166036pt;}
.x43_c00432{left:54.725123pt;}
.x3a_c00432{left:56.404032pt;}
.x11_c00432{left:61.340572pt;}
.x62_c00432{left:62.884979pt;}
.x68_c00432{left:64.511996pt;}
.x3f_c00432{left:66.485100pt;}
.x1d_c00432{left:67.927373pt;}
.x65_c00432{left:71.766909pt;}
.x18_c00432{left:75.020147pt;}
.x25_c00432{left:76.088365pt;}
.x4c_c00432{left:77.286991pt;}
.xb_c00432{left:79.119872pt;}
.x23_c00432{left:81.368844pt;}
.x6a_c00432{left:82.329528pt;}
.x2a_c00432{left:85.928907pt;}
.x5_c00432{left:87.158667pt;}
.x52_c00432{left:88.089287pt;}
.x32_c00432{left:90.490485pt;}
.xc_c00432{left:94.251559pt;}
.x19_c00432{left:95.913915pt;}
.x26_c00432{left:99.371097pt;}
.x4d_c00432{left:102.970403pt;}
.x1_c00432{left:105.120000pt;}
.x1e_c00432{left:107.533487pt;}
.x2b_c00432{left:108.972904pt;}
.x57_c00432{left:109.930936pt;}
.x12_c00432{left:112.946280pt;}
.x44_c00432{left:115.693401pt;}
.x5d_c00432{left:121.931939pt;}
.x27_c00432{left:123.614101pt;}
.x13_c00432{left:126.166080pt;}
.x3d_c00432{left:127.214391pt;}
.x55_c00432{left:130.574527pt;}
.x1a_c00432{left:133.599777pt;}
.x6_c00432{left:136.538667pt;}
.x33_c00432{left:139.217895pt;}
.x47_c00432{left:140.298191pt;}
.x66_c00432{left:142.096575pt;}
.x6b_c00432{left:144.498169pt;}
.x40_c00432{left:147.856605pt;}
.x4e_c00432{left:149.297109pt;}
.x48_c00432{left:153.255505pt;}
.x63_c00432{left:154.338075pt;}
.x58_c00432{left:156.738388pt;}
.x6e_c00432{left:157.697891pt;}
.x2f_c00432{left:158.710472pt;}
.x6c_c00432{left:159.859945pt;}
.x34_c00432{left:162.740695pt;}
.x5f_c00432{left:166.339332pt;}
.x4f_c00432{left:168.259928pt;}
.xd_c00432{left:169.356659pt;}
.x59_c00432{left:173.300504pt;}
.x5b_c00432{left:176.748120pt;}
.x2c_c00432{left:179.782705pt;}
.x14_c00432{left:182.557529pt;}
.x1b_c00432{left:184.425440pt;}
.x1f_c00432{left:186.744380pt;}
.x69_c00432{left:188.331631pt;}
.x56_c00432{left:191.302737pt;}
.x3e_c00432{left:192.743984pt;}
.x15_c00432{left:195.517307pt;}
.x5e_c00432{left:198.503913pt;}
.x7_c00432{left:200.116000pt;}
.x24_c00432{left:202.106395pt;}
.xe_c00432{left:204.184349pt;}
.x1c_c00432{left:206.068609pt;}
.x5c_c00432{left:208.647384pt;}
.x35_c00432{left:210.267764pt;}
.x39_c00432{left:211.225660pt;}
.x49_c00432{left:214.693761pt;}
.x60_c00432{left:216.267081pt;}
.x45_c00432{left:217.948292pt;}
.x41_c00432{left:222.268760pt;}
.x36_c00432{left:224.189109pt;}
.x53_c00432{left:226.347915pt;}
.x28_c00432{left:228.029604pt;}
.x8_c00432{left:229.449333pt;}
.x3b_c00432{left:230.909132pt;}
.x50_c00432{left:233.549453pt;}
.x46_c00432{left:235.710748pt;}
.x4a_c00432{left:237.441407pt;}
.x20_c00432{left:239.071499pt;}
.x16_c00432{left:241.846584pt;}
.x2_c00432{left:244.080000pt;}
.x5a_c00432{left:246.991121pt;}
.x3c_c00432{left:248.191452pt;}
.x67_c00432{left:249.152848pt;}
.xf_c00432{left:252.155613pt;}
.x2d_c00432{left:254.193527pt;}
.x9_c00432{left:257.045333pt;}
.x4b_c00432{left:258.123515pt;}
.x17_c00432{left:259.852125pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00433 {
    display:none;
  }
  .loading-indicator_c00433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00433 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00433 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00433" -> "#page-container .classname_c00433")
 */
.pf_c00433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00433 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00433 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00433 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00433 {overflow:visible;}
  }
}
.c_c00433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00433 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00433:after { /* webkit #35443 */
  content: '';
}
.t_c00433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00433 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00433 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00433 { /* info for Javascript */
  display:none;
}
.l_c00433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00433:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00433 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00433.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m68_c00433{transform:matrix(0.013245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013245,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.013985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013985,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.105395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105395,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);}
.m78_c00433{transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);}
.mda_c00433{transform:matrix(0.124715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124715,0.000000,0.000000,0.250000,0,0);}
.m79_c00433{transform:matrix(0.134505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134505,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.135030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135030,0.000000,0.000000,0.250000,0,0);}
.m8a_c00433{transform:matrix(0.135085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135085,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00433{transform:matrix(0.142315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142315,0.000000,0.000000,0.250000,0,0);}
.m6b_c00433{transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);}
.m97_c00433{transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145555,0.000000,0.000000,0.250000,0,0);}
.m92_c00433{transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145615,0.000000,0.000000,0.250000,0,0);}
.m8f_c00433{transform:matrix(0.147430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147430,0.000000,0.000000,0.250000,0,0);}
.mbc_c00433{transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);}
.mfb_c00433{transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150070,0.000000,0.000000,0.250000,0,0);}
.m96_c00433{transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151040,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151995,0.000000,0.000000,0.250000,0,0);}
.m63_c00433{transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152460,0.000000,0.000000,0.250000,0,0);}
.m65_c00433{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m7c_c00433{transform:matrix(0.152910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152910,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);}
.m66_c00433{transform:matrix(0.153720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153720,0.000000,0.000000,0.250000,0,0);}
.m7f_c00433{transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153910,0.000000,0.000000,0.250000,0,0);}
.m64_c00433{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00433{transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154595,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.md1_c00433{transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);}
.m93_c00433{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.med_c00433{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.md8_c00433{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m6c_c00433{transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00433{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m7a_c00433{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.m7e_c00433{transform:matrix(0.160260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160260,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{transform:matrix(0.160910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160910,0.000000,0.000000,0.250000,0,0);}
.m27_c00433{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162035,0.000000,0.000000,0.250000,0,0);}
.mf8_c00433{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.mea_c00433{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{transform:matrix(0.162615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162615,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163035,0.000000,0.000000,0.250000,0,0);}
.mdd_c00433{transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.mc3_c00433{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.ma7_c00433{transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163530,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00433{transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165460,0.000000,0.000000,0.250000,0,0);}
.m9c_c00433{transform:matrix(0.165480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165480,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165665,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m61_c00433{transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);}
.m7b_c00433{transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m29_c00433{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168265,0.000000,0.000000,0.250000,0,0);}
.m6f_c00433{transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168735,0.000000,0.000000,0.250000,0,0);}
.mba_c00433{transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169105,0.000000,0.000000,0.250000,0,0);}
.m70_c00433{transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169165,0.000000,0.000000,0.250000,0,0);}
.m90_c00433{transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m53_c00433{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169770,0.000000,0.000000,0.250000,0,0);}
.me3_c00433{transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169865,0.000000,0.000000,0.250000,0,0);}
.m9b_c00433{transform:matrix(0.169895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169895,0.000000,0.000000,0.250000,0,0);}
.ma9_c00433{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.mc9_c00433{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.m95_c00433{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.md2_c00433{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.md6_c00433{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.mb4_c00433{transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172010,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.md7_c00433{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m9e_c00433{transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m80_c00433{transform:matrix(0.173285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173285,0.000000,0.000000,0.250000,0,0);}
.m62_c00433{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.me4_c00433{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.mb2_c00433{transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);}
.mbb_c00433{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m3c_c00433{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m6d_c00433{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.mb5_c00433{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.mdb_c00433{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.me2_c00433{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mee_c00433{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.m81_c00433{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.mfd_c00433{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179465,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.md4_c00433{transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180385,0.000000,0.000000,0.250000,0,0);}
.meb_c00433{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.m76_c00433{transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180710,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.ma5_c00433{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.mc6_c00433{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m5b_c00433{transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.mf9_c00433{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mc5_c00433{transform:matrix(0.182160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182160,0.000000,0.000000,0.250000,0,0);}
.m28_c00433{transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);}
.mf4_c00433{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00433{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.me0_c00433{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.mde_c00433{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.mb8_c00433{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00433{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m6a_c00433{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.mdc_c00433{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187245,0.000000,0.000000,0.250000,0,0);}
.md5_c00433{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m71_c00433{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m8d_c00433{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.mec_c00433{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.me5_c00433{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.m7d_c00433{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m6e_c00433{transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);}
.mc1_c00433{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m9d_c00433{transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);}
.mc0_c00433{transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00433{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mcd_c00433{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191085,0.000000,0.000000,0.250000,0,0);}
.ma1_c00433{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.mdf_c00433{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m87_c00433{transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);}
.md9_c00433{transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192920,0.000000,0.000000,0.250000,0,0);}
.mf2_c00433{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m77_c00433{transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);}
.mb7_c00433{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195635,0.000000,0.000000,0.250000,0,0);}
.mfa_c00433{transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.mf0_c00433{transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.md3_c00433{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.ma0_c00433{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.mce_c00433{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00433{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.md0_c00433{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.ma4_c00433{transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);}
.me7_c00433{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.mb1_c00433{transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201955,0.000000,0.000000,0.250000,0,0);}
.mb3_c00433{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);}
.maf_c00433{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.mf1_c00433{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.me6_c00433{transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207485,0.000000,0.000000,0.250000,0,0);}
.ma2_c00433{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m85_c00433{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.mab_c00433{transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);}
.mcb_c00433{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211730,0.000000,0.000000,0.250000,0,0);}
.mfc_c00433{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.m74_c00433{transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212260,0.000000,0.000000,0.250000,0,0);}
.mc4_c00433{transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);}
.ma6_c00433{transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212985,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213765,0.000000,0.000000,0.250000,0,0);}
.me9_c00433{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);}
.m88_c00433{transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215095,0.000000,0.000000,0.250000,0,0);}
.ma8_c00433{transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215145,0.000000,0.000000,0.250000,0,0);}
.m83_c00433{transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00433{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.mbd_c00433{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m57_c00433{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);}
.mc2_c00433{transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);}
.m72_c00433{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.me1_c00433{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.mc8_c00433{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m5e_c00433{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m84_c00433{transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);}
.mcf_c00433{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m42_c00433{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.m73_c00433{transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);}
.m54_c00433{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00433{transform:matrix(0.224940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224940,0.000000,0.000000,0.250000,0,0);}
.mf5_c00433{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);}
.mc7_c00433{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.m99_c00433{transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);}
.mca_c00433{transform:matrix(0.233220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233220,0.000000,0.000000,0.250000,0,0);}
.maa_c00433{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m8b_c00433{transform:matrix(0.237190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237190,0.000000,0.000000,0.250000,0,0);}
.m67_c00433{transform:matrix(0.238460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238460,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);}
.mac_c00433{transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);}
.m5a_c00433{transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244730,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.mf3_c00433{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m37_c00433{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.mbf_c00433{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.mef_c00433{transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);}
.m59_c00433{transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);}
.mf7_c00433{transform:matrix(0.284055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284055,0.000000,0.000000,0.250000,0,0);}
.m60_c00433{transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);}
.m98_c00433{transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);}
.mf6_c00433{transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);}
.m5d_c00433{transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328080,0.000000,0.000000,0.250000,0,0);}
.mbe_c00433{transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);}
.mad_c00433{transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344625,0.000000,0.000000,0.250000,0,0);}
.mb6_c00433{transform:matrix(0.348075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00433{transform:matrix(0.350185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350185,0.000000,0.000000,0.250000,0,0);}
.me8_c00433{transform:matrix(0.350475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350475,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.388405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388405,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:0.000000px;}
.fc0_c00433{color:transparent;}
.fs8_c00433{font-size:55.650000px;}
.fs9_c00433{font-size:60.900000px;}
.fs2_c00433{font-size:61.950000px;}
.fs10_c00433{font-size:63.000000px;}
.fs4_c00433{font-size:64.050000px;}
.fs3_c00433{font-size:65.100000px;}
.fsf_c00433{font-size:66.150000px;}
.fs7_c00433{font-size:67.200000px;}
.fs6_c00433{font-size:68.250000px;}
.fs5_c00433{font-size:69.300000px;}
.fsb_c00433{font-size:70.350000px;}
.fs1_c00433{font-size:71.400000px;}
.fsa_c00433{font-size:73.500000px;}
.fsd_c00433{font-size:74.550000px;}
.fsc_c00433{font-size:75.600000px;}
.fse_c00433{font-size:76.650000px;}
.fs0_c00433{font-size:81.900000px;}
.y0_c00433{bottom:0.000000px;}
.yf2_c00433{bottom:29.010000px;}
.yf1_c00433{bottom:42.895500px;}
.yf0_c00433{bottom:43.434000px;}
.yef_c00433{bottom:43.932000px;}
.yee_c00433{bottom:44.149500px;}
.yed_c00433{bottom:44.457000px;}
.yec_c00433{bottom:45.160500px;}
.yeb_c00433{bottom:45.895500px;}
.yea_c00433{bottom:58.561500px;}
.ye9_c00433{bottom:59.047500px;}
.ye8_c00433{bottom:60.226500px;}
.ye7_c00433{bottom:61.348500px;}
.ye6_c00433{bottom:63.225000px;}
.ye5_c00433{bottom:63.717000px;}
.ye4_c00433{bottom:76.735500px;}
.ye3_c00433{bottom:76.890000px;}
.ye2_c00433{bottom:77.974500px;}
.ye1_c00433{bottom:78.642000px;}
.ye0_c00433{bottom:79.242000px;}
.ydf_c00433{bottom:79.476000px;}
.yde_c00433{bottom:79.969500px;}
.ydd_c00433{bottom:80.457000px;}
.ydc_c00433{bottom:92.934000px;}
.ydb_c00433{bottom:93.511500px;}
.yda_c00433{bottom:94.422000px;}
.yd9_c00433{bottom:94.800000px;}
.yd8_c00433{bottom:95.680500px;}
.yd7_c00433{bottom:96.594000px;}
.yd6_c00433{bottom:96.945000px;}
.yd5_c00433{bottom:97.326000px;}
.yd4_c00433{bottom:98.278500px;}
.yd3_c00433{bottom:113.959500px;}
.yd2_c00433{bottom:126.696000px;}
.yd1_c00433{bottom:126.921000px;}
.yd0_c00433{bottom:128.038500px;}
.ycf_c00433{bottom:128.881500px;}
.yce_c00433{bottom:129.285000px;}
.ycd_c00433{bottom:129.676500px;}
.ycc_c00433{bottom:130.543500px;}
.ycb_c00433{bottom:130.969500px;}
.yca_c00433{bottom:131.760000px;}
.yc9_c00433{bottom:143.485500px;}
.yc8_c00433{bottom:144.427500px;}
.yc7_c00433{bottom:145.459500px;}
.yc6_c00433{bottom:146.274000px;}
.yc5_c00433{bottom:146.824500px;}
.yc4_c00433{bottom:147.505500px;}
.yc3_c00433{bottom:148.768500px;}
.yc2_c00433{bottom:160.774500px;}
.yc1_c00433{bottom:161.149500px;}
.yc0_c00433{bottom:161.398500px;}
.ybf_c00433{bottom:162.210000px;}
.ybe_c00433{bottom:162.762000px;}
.ybd_c00433{bottom:163.221000px;}
.ybc_c00433{bottom:164.814000px;}
.ybb_c00433{bottom:165.171000px;}
.yba_c00433{bottom:165.483000px;}
.yb9_c00433{bottom:165.832500px;}
.yb8_c00433{bottom:166.594500px;}
.yb7_c00433{bottom:179.409000px;}
.yb6_c00433{bottom:179.833500px;}
.yb5_c00433{bottom:180.048000px;}
.yb4_c00433{bottom:180.648000px;}
.yb3_c00433{bottom:181.627500px;}
.yb2_c00433{bottom:182.049000px;}
.yb1_c00433{bottom:182.280000px;}
.yb0_c00433{bottom:184.137000px;}
.yaf_c00433{bottom:195.844500px;}
.yae_c00433{bottom:196.642500px;}
.yad_c00433{bottom:197.769000px;}
.yac_c00433{bottom:199.183500px;}
.yab_c00433{bottom:199.600500px;}
.yaa_c00433{bottom:201.688500px;}
.ya9_c00433{bottom:212.454000px;}
.ya8_c00433{bottom:213.550500px;}
.ya7_c00433{bottom:213.895500px;}
.ya6_c00433{bottom:215.839500px;}
.ya5_c00433{bottom:216.207000px;}
.ya4_c00433{bottom:217.857000px;}
.ya3_c00433{bottom:218.698500px;}
.ya2_c00433{bottom:230.167500px;}
.ya1_c00433{bottom:230.653500px;}
.ya0_c00433{bottom:231.108000px;}
.y9f_c00433{bottom:231.408000px;}
.y9e_c00433{bottom:232.755000px;}
.y9d_c00433{bottom:233.868000px;}
.y9c_c00433{bottom:234.256500px;}
.y9b_c00433{bottom:234.618000px;}
.y9a_c00433{bottom:235.168500px;}
.y99_c00433{bottom:247.170000px;}
.y98_c00433{bottom:247.563000px;}
.y97_c00433{bottom:247.936500px;}
.y96_c00433{bottom:248.553000px;}
.y95_c00433{bottom:249.271500px;}
.y94_c00433{bottom:249.718500px;}
.y93_c00433{bottom:250.488000px;}
.y92_c00433{bottom:250.833000px;}
.y91_c00433{bottom:251.463000px;}
.y90_c00433{bottom:251.907000px;}
.y8f_c00433{bottom:264.741000px;}
.y8e_c00433{bottom:265.116000px;}
.y8d_c00433{bottom:265.378500px;}
.y8c_c00433{bottom:265.759500px;}
.y8b_c00433{bottom:266.401500px;}
.y8a_c00433{bottom:266.608500px;}
.y89_c00433{bottom:267.445500px;}
.y88_c00433{bottom:267.669000px;}
.y87_c00433{bottom:268.918500px;}
.y86_c00433{bottom:279.756000px;}
.y85_c00433{bottom:280.506000px;}
.y84_c00433{bottom:280.983000px;}
.y83_c00433{bottom:281.476500px;}
.y82_c00433{bottom:282.853500px;}
.y81_c00433{bottom:283.335000px;}
.y80_c00433{bottom:283.978500px;}
.y7f_c00433{bottom:285.658500px;}
.y7e_c00433{bottom:298.228500px;}
.y7d_c00433{bottom:298.996500px;}
.y7c_c00433{bottom:300.085500px;}
.y7b_c00433{bottom:300.624000px;}
.y7a_c00433{bottom:301.002000px;}
.y79_c00433{bottom:301.269000px;}
.y78_c00433{bottom:302.937000px;}
.y77_c00433{bottom:314.725500px;}
.y76_c00433{bottom:316.893000px;}
.y75_c00433{bottom:318.415500px;}
.y74_c00433{bottom:319.441500px;}
.y73_c00433{bottom:319.950000px;}
.y72_c00433{bottom:332.052000px;}
.y71_c00433{bottom:332.403000px;}
.y70_c00433{bottom:332.845500px;}
.y6f_c00433{bottom:334.017000px;}
.y6e_c00433{bottom:334.351500px;}
.y6d_c00433{bottom:334.830000px;}
.y6c_c00433{bottom:335.232000px;}
.y6b_c00433{bottom:337.230000px;}
.y6a_c00433{bottom:349.470000px;}
.y69_c00433{bottom:350.532000px;}
.y68_c00433{bottom:351.124500px;}
.y67_c00433{bottom:352.110000px;}
.y66_c00433{bottom:352.464000px;}
.y65_c00433{bottom:352.861500px;}
.y64_c00433{bottom:353.176500px;}
.y63_c00433{bottom:354.238500px;}
.y62_c00433{bottom:367.080000px;}
.y61_c00433{bottom:367.332000px;}
.y60_c00433{bottom:367.728000px;}
.y5f_c00433{bottom:367.944000px;}
.y5e_c00433{bottom:368.806500px;}
.y5d_c00433{bottom:369.214500px;}
.y5c_c00433{bottom:369.565500px;}
.y5b_c00433{bottom:370.611000px;}
.y5a_c00433{bottom:370.963500px;}
.y59_c00433{bottom:371.263500px;}
.y58_c00433{bottom:371.790000px;}
.y57_c00433{bottom:384.232500px;}
.y56_c00433{bottom:384.901500px;}
.y55_c00433{bottom:385.143000px;}
.y54_c00433{bottom:386.077500px;}
.y53_c00433{bottom:387.121500px;}
.y52_c00433{bottom:387.376500px;}
.y51_c00433{bottom:387.691500px;}
.y50_c00433{bottom:388.111500px;}
.y4f_c00433{bottom:388.530000px;}
.y4e_c00433{bottom:400.075500px;}
.y4d_c00433{bottom:401.442000px;}
.y4c_c00433{bottom:402.148500px;}
.y4b_c00433{bottom:403.890000px;}
.y4a_c00433{bottom:405.093000px;}
.y49_c00433{bottom:405.961500px;}
.y48_c00433{bottom:406.531500px;}
.y47_c00433{bottom:407.166000px;}
.y46_c00433{bottom:417.076500px;}
.y45_c00433{bottom:418.125000px;}
.y44_c00433{bottom:418.870500px;}
.y43_c00433{bottom:421.300500px;}
.y42_c00433{bottom:421.791000px;}
.y41_c00433{bottom:423.604500px;}
.y40_c00433{bottom:424.441500px;}
.y3f_c00433{bottom:433.215000px;}
.y3e_c00433{bottom:434.943000px;}
.y3d_c00433{bottom:435.306000px;}
.y3c_c00433{bottom:436.564500px;}
.y3b_c00433{bottom:437.955000px;}
.y3a_c00433{bottom:438.762000px;}
.y39_c00433{bottom:439.291500px;}
.y38_c00433{bottom:452.620500px;}
.y37_c00433{bottom:453.051000px;}
.y36_c00433{bottom:454.654500px;}
.y35_c00433{bottom:455.305500px;}
.y34_c00433{bottom:455.778000px;}
.y33_c00433{bottom:456.831000px;}
.y32_c00433{bottom:458.191500px;}
.y31_c00433{bottom:467.472000px;}
.y30_c00433{bottom:468.774000px;}
.y2f_c00433{bottom:469.083000px;}
.y2e_c00433{bottom:471.163500px;}
.y2d_c00433{bottom:472.774500px;}
.y2c_c00433{bottom:473.466000px;}
.y2b_c00433{bottom:474.042000px;}
.y2a_c00433{bottom:474.933000px;}
.y29_c00433{bottom:485.148000px;}
.y28_c00433{bottom:485.746500px;}
.y27_c00433{bottom:486.805500px;}
.y26_c00433{bottom:488.148000px;}
.y25_c00433{bottom:488.796000px;}
.y24_c00433{bottom:489.982500px;}
.y23_c00433{bottom:490.377000px;}
.y22_c00433{bottom:490.822500px;}
.y21_c00433{bottom:491.128500px;}
.y20_c00433{bottom:502.569000px;}
.y1f_c00433{bottom:502.887000px;}
.y1e_c00433{bottom:503.277000px;}
.y1d_c00433{bottom:504.226500px;}
.y1c_c00433{bottom:504.688500px;}
.y1b_c00433{bottom:505.872000px;}
.y1a_c00433{bottom:506.889000px;}
.y19_c00433{bottom:507.330000px;}
.y18_c00433{bottom:519.754500px;}
.y17_c00433{bottom:520.522500px;}
.y16_c00433{bottom:520.876500px;}
.y15_c00433{bottom:521.236500px;}
.y14_c00433{bottom:522.292500px;}
.y13_c00433{bottom:522.726000px;}
.y12_c00433{bottom:523.164000px;}
.y11_c00433{bottom:524.076000px;}
.y10_c00433{bottom:536.260500px;}
.yf_c00433{bottom:536.677500px;}
.ye_c00433{bottom:537.018000px;}
.yd_c00433{bottom:537.402000px;}
.yc_c00433{bottom:538.609500px;}
.yb_c00433{bottom:539.074500px;}
.ya_c00433{bottom:541.083000px;}
.y9_c00433{bottom:552.469500px;}
.y8_c00433{bottom:553.540500px;}
.y7_c00433{bottom:554.407500px;}
.y6_c00433{bottom:555.060000px;}
.y5_c00433{bottom:556.602000px;}
.y4_c00433{bottom:556.821000px;}
.y3_c00433{bottom:557.385000px;}
.y2_c00433{bottom:558.366000px;}
.y1_c00433{bottom:570.378000px;}
.h9_c00433{height:55.650000px;}
.ha_c00433{height:60.900000px;}
.h3_c00433{height:61.950000px;}
.h11_c00433{height:63.000000px;}
.h5_c00433{height:64.050000px;}
.h4_c00433{height:65.100000px;}
.h10_c00433{height:66.150000px;}
.h8_c00433{height:67.200000px;}
.h7_c00433{height:68.250000px;}
.h6_c00433{height:69.300000px;}
.hc_c00433{height:70.350000px;}
.h2_c00433{height:71.400000px;}
.hb_c00433{height:73.500000px;}
.he_c00433{height:74.550000px;}
.hd_c00433{height:75.600000px;}
.hf_c00433{height:76.650000px;}
.h1_c00433{height:81.900000px;}
.h0_c00433{height:608.250000px;}
.w0_c00433{width:359.100000px;}
.w1_c00433{width:359.250000px;}
.x0_c00433{left:0.000000px;}
.x6e_c00433{left:47.530500px;}
.x65_c00433{left:48.630000px;}
.x25_c00433{left:49.908000px;}
.x4f_c00433{left:51.324000px;}
.x3d_c00433{left:52.699500px;}
.x32_c00433{left:53.791500px;}
.x2b_c00433{left:54.811500px;}
.x12_c00433{left:56.514000px;}
.x3_c00433{left:58.335000px;}
.xb_c00433{left:65.367000px;}
.x7d_c00433{left:68.304000px;}
.x1e_c00433{left:69.655500px;}
.x5e_c00433{left:74.092500px;}
.x37_c00433{left:76.056000px;}
.x19_c00433{left:78.865500px;}
.x66_c00433{left:82.311000px;}
.x26_c00433{left:84.189000px;}
.x72_c00433{left:88.575000px;}
.x1f_c00433{left:89.901000px;}
.x61_c00433{left:94.795500px;}
.x38_c00433{left:96.388500px;}
.x6a_c00433{left:100.711500px;}
.x1_c00433{left:102.060000px;}
.x4_c00433{left:105.018000px;}
.x13_c00433{left:107.221500px;}
.x5f_c00433{left:109.132500px;}
.x2c_c00433{left:111.523500px;}
.x62_c00433{left:114.244500px;}
.x2e_c00433{left:115.284000px;}
.x7a_c00433{left:117.568500px;}
.x49_c00433{left:118.576500px;}
.x43_c00433{left:122.086500px;}
.x5b_c00433{left:123.268500px;}
.x3e_c00433{left:124.788000px;}
.x39_c00433{left:127.384500px;}
.x56_c00433{left:129.700500px;}
.x5_c00433{left:131.866500px;}
.x27_c00433{left:132.945000px;}
.x5c_c00433{left:136.411500px;}
.x4a_c00433{left:138.286500px;}
.x3f_c00433{left:140.752500px;}
.x6_c00433{left:142.296000px;}
.x6f_c00433{left:144.768000px;}
.x76_c00433{left:146.335500px;}
.x33_c00433{left:148.464000px;}
.x50_c00433{left:151.189500px;}
.x14_c00433{left:155.578500px;}
.x73_c00433{left:156.621000px;}
.x54_c00433{left:157.810500px;}
.x57_c00433{left:160.365000px;}
.x20_c00433{left:161.751000px;}
.x4b_c00433{left:163.125000px;}
.x34_c00433{left:165.993000px;}
.x68_c00433{left:167.671500px;}
.x7e_c00433{left:169.284000px;}
.x3a_c00433{left:170.334000px;}
.x70_c00433{left:172.275000px;}
.x2d_c00433{left:175.086000px;}
.xc_c00433{left:176.977500px;}
.x2f_c00433{left:178.468500px;}
.x44_c00433{left:183.592500px;}
.x4c_c00433{left:185.263500px;}
.x2_c00433{left:187.920000px;}
.x69_c00433{left:189.840000px;}
.x21_c00433{left:191.172000px;}
.x1a_c00433{left:194.704500px;}
.x60_c00433{left:195.886500px;}
.x5d_c00433{left:197.781000px;}
.x7b_c00433{left:201.771000px;}
.xd_c00433{left:202.821000px;}
.x45_c00433{left:204.222000px;}
.x40_c00433{left:206.046000px;}
.x55_c00433{left:208.750500px;}
.x51_c00433{left:211.963500px;}
.x71_c00433{left:213.024000px;}
.x15_c00433{left:214.246500px;}
.x7_c00433{left:215.721000px;}
.x1b_c00433{left:219.006000px;}
.x78_c00433{left:221.427000px;}
.x7f_c00433{left:225.984000px;}
.x46_c00433{left:228.231000px;}
.x6b_c00433{left:230.311500px;}
.x3b_c00433{left:232.536000px;}
.x16_c00433{left:234.220500px;}
.x30_c00433{left:235.692000px;}
.x63_c00433{left:237.186000px;}
.x67_c00433{left:240.796500px;}
.x74_c00433{left:242.821500px;}
.x8_c00433{left:246.774000px;}
.x58_c00433{left:248.931000px;}
.x22_c00433{left:252.204000px;}
.x17_c00433{left:253.851000px;}
.x6c_c00433{left:256.581000px;}
.x3c_c00433{left:257.790000px;}
.x7c_c00433{left:261.426000px;}
.x41_c00433{left:264.420000px;}
.xe_c00433{left:269.866500px;}
.x59_c00433{left:272.422500px;}
.x28_c00433{left:274.939500px;}
.x35_c00433{left:279.448500px;}
.x4d_c00433{left:283.843500px;}
.x79_c00433{left:284.857500px;}
.x29_c00433{left:286.818000px;}
.x9_c00433{left:288.088500px;}
.x1c_c00433{left:289.491000px;}
.xf_c00433{left:291.208500px;}
.x52_c00433{left:292.683000px;}
.x5a_c00433{left:295.171500px;}
.x18_c00433{left:296.502000px;}
.x64_c00433{left:299.148000px;}
.x23_c00433{left:300.354000px;}
.x75_c00433{left:301.599000px;}
.x77_c00433{left:304.555500px;}
.x1d_c00433{left:306.220500px;}
.x10_c00433{left:310.102500px;}
.x53_c00433{left:312.472500px;}
.x47_c00433{left:314.899500px;}
.x36_c00433{left:316.873500px;}
.x42_c00433{left:321.363000px;}
.x6d_c00433{left:324.972000px;}
.x24_c00433{left:327.568500px;}
.x48_c00433{left:329.722500px;}
.x31_c00433{left:330.733500px;}
.x11_c00433{left:333.271500px;}
.x2a_c00433{left:336.892500px;}
.xa_c00433{left:339.057000px;}
.x4e_c00433{left:350.233500px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
.fs8_c00433{font-size:49.466667pt;}
.fs9_c00433{font-size:54.133333pt;}
.fs2_c00433{font-size:55.066667pt;}
.fs10_c00433{font-size:56.000000pt;}
.fs4_c00433{font-size:56.933333pt;}
.fs3_c00433{font-size:57.866667pt;}
.fsf_c00433{font-size:58.800000pt;}
.fs7_c00433{font-size:59.733333pt;}
.fs6_c00433{font-size:60.666667pt;}
.fs5_c00433{font-size:61.600000pt;}
.fsb_c00433{font-size:62.533333pt;}
.fs1_c00433{font-size:63.466667pt;}
.fsa_c00433{font-size:65.333333pt;}
.fsd_c00433{font-size:66.266667pt;}
.fsc_c00433{font-size:67.200000pt;}
.fse_c00433{font-size:68.133333pt;}
.fs0_c00433{font-size:72.800000pt;}
.y0_c00433{bottom:0.000000pt;}
.yf2_c00433{bottom:25.786667pt;}
.yf1_c00433{bottom:38.129333pt;}
.yf0_c00433{bottom:38.608000pt;}
.yef_c00433{bottom:39.050667pt;}
.yee_c00433{bottom:39.244000pt;}
.yed_c00433{bottom:39.517333pt;}
.yec_c00433{bottom:40.142667pt;}
.yeb_c00433{bottom:40.796000pt;}
.yea_c00433{bottom:52.054667pt;}
.ye9_c00433{bottom:52.486667pt;}
.ye8_c00433{bottom:53.534667pt;}
.ye7_c00433{bottom:54.532000pt;}
.ye6_c00433{bottom:56.200000pt;}
.ye5_c00433{bottom:56.637333pt;}
.ye4_c00433{bottom:68.209333pt;}
.ye3_c00433{bottom:68.346667pt;}
.ye2_c00433{bottom:69.310667pt;}
.ye1_c00433{bottom:69.904000pt;}
.ye0_c00433{bottom:70.437333pt;}
.ydf_c00433{bottom:70.645333pt;}
.yde_c00433{bottom:71.084000pt;}
.ydd_c00433{bottom:71.517333pt;}
.ydc_c00433{bottom:82.608000pt;}
.ydb_c00433{bottom:83.121333pt;}
.yda_c00433{bottom:83.930667pt;}
.yd9_c00433{bottom:84.266667pt;}
.yd8_c00433{bottom:85.049333pt;}
.yd7_c00433{bottom:85.861333pt;}
.yd6_c00433{bottom:86.173333pt;}
.yd5_c00433{bottom:86.512000pt;}
.yd4_c00433{bottom:87.358667pt;}
.yd3_c00433{bottom:101.297333pt;}
.yd2_c00433{bottom:112.618667pt;}
.yd1_c00433{bottom:112.818667pt;}
.yd0_c00433{bottom:113.812000pt;}
.ycf_c00433{bottom:114.561333pt;}
.yce_c00433{bottom:114.920000pt;}
.ycd_c00433{bottom:115.268000pt;}
.ycc_c00433{bottom:116.038667pt;}
.ycb_c00433{bottom:116.417333pt;}
.yca_c00433{bottom:117.120000pt;}
.yc9_c00433{bottom:127.542667pt;}
.yc8_c00433{bottom:128.380000pt;}
.yc7_c00433{bottom:129.297333pt;}
.yc6_c00433{bottom:130.021333pt;}
.yc5_c00433{bottom:130.510667pt;}
.yc4_c00433{bottom:131.116000pt;}
.yc3_c00433{bottom:132.238667pt;}
.yc2_c00433{bottom:142.910667pt;}
.yc1_c00433{bottom:143.244000pt;}
.yc0_c00433{bottom:143.465333pt;}
.ybf_c00433{bottom:144.186667pt;}
.ybe_c00433{bottom:144.677333pt;}
.ybd_c00433{bottom:145.085333pt;}
.ybc_c00433{bottom:146.501333pt;}
.ybb_c00433{bottom:146.818667pt;}
.yba_c00433{bottom:147.096000pt;}
.yb9_c00433{bottom:147.406667pt;}
.yb8_c00433{bottom:148.084000pt;}
.yb7_c00433{bottom:159.474667pt;}
.yb6_c00433{bottom:159.852000pt;}
.yb5_c00433{bottom:160.042667pt;}
.yb4_c00433{bottom:160.576000pt;}
.yb3_c00433{bottom:161.446667pt;}
.yb2_c00433{bottom:161.821333pt;}
.yb1_c00433{bottom:162.026667pt;}
.yb0_c00433{bottom:163.677333pt;}
.yaf_c00433{bottom:174.084000pt;}
.yae_c00433{bottom:174.793333pt;}
.yad_c00433{bottom:175.794667pt;}
.yac_c00433{bottom:177.052000pt;}
.yab_c00433{bottom:177.422667pt;}
.yaa_c00433{bottom:179.278667pt;}
.ya9_c00433{bottom:188.848000pt;}
.ya8_c00433{bottom:189.822667pt;}
.ya7_c00433{bottom:190.129333pt;}
.ya6_c00433{bottom:191.857333pt;}
.ya5_c00433{bottom:192.184000pt;}
.ya4_c00433{bottom:193.650667pt;}
.ya3_c00433{bottom:194.398667pt;}
.ya2_c00433{bottom:204.593333pt;}
.ya1_c00433{bottom:205.025333pt;}
.ya0_c00433{bottom:205.429333pt;}
.y9f_c00433{bottom:205.696000pt;}
.y9e_c00433{bottom:206.893333pt;}
.y9d_c00433{bottom:207.882667pt;}
.y9c_c00433{bottom:208.228000pt;}
.y9b_c00433{bottom:208.549333pt;}
.y9a_c00433{bottom:209.038667pt;}
.y99_c00433{bottom:219.706667pt;}
.y98_c00433{bottom:220.056000pt;}
.y97_c00433{bottom:220.388000pt;}
.y96_c00433{bottom:220.936000pt;}
.y95_c00433{bottom:221.574667pt;}
.y94_c00433{bottom:221.972000pt;}
.y93_c00433{bottom:222.656000pt;}
.y92_c00433{bottom:222.962667pt;}
.y91_c00433{bottom:223.522667pt;}
.y90_c00433{bottom:223.917333pt;}
.y8f_c00433{bottom:235.325333pt;}
.y8e_c00433{bottom:235.658667pt;}
.y8d_c00433{bottom:235.892000pt;}
.y8c_c00433{bottom:236.230667pt;}
.y8b_c00433{bottom:236.801333pt;}
.y8a_c00433{bottom:236.985333pt;}
.y89_c00433{bottom:237.729333pt;}
.y88_c00433{bottom:237.928000pt;}
.y87_c00433{bottom:239.038667pt;}
.y86_c00433{bottom:248.672000pt;}
.y85_c00433{bottom:249.338667pt;}
.y84_c00433{bottom:249.762667pt;}
.y83_c00433{bottom:250.201333pt;}
.y82_c00433{bottom:251.425333pt;}
.y81_c00433{bottom:251.853333pt;}
.y80_c00433{bottom:252.425333pt;}
.y7f_c00433{bottom:253.918667pt;}
.y7e_c00433{bottom:265.092000pt;}
.y7d_c00433{bottom:265.774667pt;}
.y7c_c00433{bottom:266.742667pt;}
.y7b_c00433{bottom:267.221333pt;}
.y7a_c00433{bottom:267.557333pt;}
.y79_c00433{bottom:267.794667pt;}
.y78_c00433{bottom:269.277333pt;}
.y77_c00433{bottom:279.756000pt;}
.y76_c00433{bottom:281.682667pt;}
.y75_c00433{bottom:283.036000pt;}
.y74_c00433{bottom:283.948000pt;}
.y73_c00433{bottom:284.400000pt;}
.y72_c00433{bottom:295.157333pt;}
.y71_c00433{bottom:295.469333pt;}
.y70_c00433{bottom:295.862667pt;}
.y6f_c00433{bottom:296.904000pt;}
.y6e_c00433{bottom:297.201333pt;}
.y6d_c00433{bottom:297.626667pt;}
.y6c_c00433{bottom:297.984000pt;}
.y6b_c00433{bottom:299.760000pt;}
.y6a_c00433{bottom:310.640000pt;}
.y69_c00433{bottom:311.584000pt;}
.y68_c00433{bottom:312.110667pt;}
.y67_c00433{bottom:312.986667pt;}
.y66_c00433{bottom:313.301333pt;}
.y65_c00433{bottom:313.654667pt;}
.y64_c00433{bottom:313.934667pt;}
.y63_c00433{bottom:314.878667pt;}
.y62_c00433{bottom:326.293333pt;}
.y61_c00433{bottom:326.517333pt;}
.y60_c00433{bottom:326.869333pt;}
.y5f_c00433{bottom:327.061333pt;}
.y5e_c00433{bottom:327.828000pt;}
.y5d_c00433{bottom:328.190667pt;}
.y5c_c00433{bottom:328.502667pt;}
.y5b_c00433{bottom:329.432000pt;}
.y5a_c00433{bottom:329.745333pt;}
.y59_c00433{bottom:330.012000pt;}
.y58_c00433{bottom:330.480000pt;}
.y57_c00433{bottom:341.540000pt;}
.y56_c00433{bottom:342.134667pt;}
.y55_c00433{bottom:342.349333pt;}
.y54_c00433{bottom:343.180000pt;}
.y53_c00433{bottom:344.108000pt;}
.y52_c00433{bottom:344.334667pt;}
.y51_c00433{bottom:344.614667pt;}
.y50_c00433{bottom:344.988000pt;}
.y4f_c00433{bottom:345.360000pt;}
.y4e_c00433{bottom:355.622667pt;}
.y4d_c00433{bottom:356.837333pt;}
.y4c_c00433{bottom:357.465333pt;}
.y4b_c00433{bottom:359.013333pt;}
.y4a_c00433{bottom:360.082667pt;}
.y49_c00433{bottom:360.854667pt;}
.y48_c00433{bottom:361.361333pt;}
.y47_c00433{bottom:361.925333pt;}
.y46_c00433{bottom:370.734667pt;}
.y45_c00433{bottom:371.666667pt;}
.y44_c00433{bottom:372.329333pt;}
.y43_c00433{bottom:374.489333pt;}
.y42_c00433{bottom:374.925333pt;}
.y41_c00433{bottom:376.537333pt;}
.y40_c00433{bottom:377.281333pt;}
.y3f_c00433{bottom:385.080000pt;}
.y3e_c00433{bottom:386.616000pt;}
.y3d_c00433{bottom:386.938667pt;}
.y3c_c00433{bottom:388.057333pt;}
.y3b_c00433{bottom:389.293333pt;}
.y3a_c00433{bottom:390.010667pt;}
.y39_c00433{bottom:390.481333pt;}
.y38_c00433{bottom:402.329333pt;}
.y37_c00433{bottom:402.712000pt;}
.y36_c00433{bottom:404.137333pt;}
.y35_c00433{bottom:404.716000pt;}
.y34_c00433{bottom:405.136000pt;}
.y33_c00433{bottom:406.072000pt;}
.y32_c00433{bottom:407.281333pt;}
.y31_c00433{bottom:415.530667pt;}
.y30_c00433{bottom:416.688000pt;}
.y2f_c00433{bottom:416.962667pt;}
.y2e_c00433{bottom:418.812000pt;}
.y2d_c00433{bottom:420.244000pt;}
.y2c_c00433{bottom:420.858667pt;}
.y2b_c00433{bottom:421.370667pt;}
.y2a_c00433{bottom:422.162667pt;}
.y29_c00433{bottom:431.242667pt;}
.y28_c00433{bottom:431.774667pt;}
.y27_c00433{bottom:432.716000pt;}
.y26_c00433{bottom:433.909333pt;}
.y25_c00433{bottom:434.485333pt;}
.y24_c00433{bottom:435.540000pt;}
.y23_c00433{bottom:435.890667pt;}
.y22_c00433{bottom:436.286667pt;}
.y21_c00433{bottom:436.558667pt;}
.y20_c00433{bottom:446.728000pt;}
.y1f_c00433{bottom:447.010667pt;}
.y1e_c00433{bottom:447.357333pt;}
.y1d_c00433{bottom:448.201333pt;}
.y1c_c00433{bottom:448.612000pt;}
.y1b_c00433{bottom:449.664000pt;}
.y1a_c00433{bottom:450.568000pt;}
.y19_c00433{bottom:450.960000pt;}
.y18_c00433{bottom:462.004000pt;}
.y17_c00433{bottom:462.686667pt;}
.y16_c00433{bottom:463.001333pt;}
.y15_c00433{bottom:463.321333pt;}
.y14_c00433{bottom:464.260000pt;}
.y13_c00433{bottom:464.645333pt;}
.y12_c00433{bottom:465.034667pt;}
.y11_c00433{bottom:465.845333pt;}
.y10_c00433{bottom:476.676000pt;}
.yf_c00433{bottom:477.046667pt;}
.ye_c00433{bottom:477.349333pt;}
.yd_c00433{bottom:477.690667pt;}
.yc_c00433{bottom:478.764000pt;}
.yb_c00433{bottom:479.177333pt;}
.ya_c00433{bottom:480.962667pt;}
.y9_c00433{bottom:491.084000pt;}
.y8_c00433{bottom:492.036000pt;}
.y7_c00433{bottom:492.806667pt;}
.y6_c00433{bottom:493.386667pt;}
.y5_c00433{bottom:494.757333pt;}
.y4_c00433{bottom:494.952000pt;}
.y3_c00433{bottom:495.453333pt;}
.y2_c00433{bottom:496.325333pt;}
.y1_c00433{bottom:507.002667pt;}
.h9_c00433{height:49.466667pt;}
.ha_c00433{height:54.133333pt;}
.h3_c00433{height:55.066667pt;}
.h11_c00433{height:56.000000pt;}
.h5_c00433{height:56.933333pt;}
.h4_c00433{height:57.866667pt;}
.h10_c00433{height:58.800000pt;}
.h8_c00433{height:59.733333pt;}
.h7_c00433{height:60.666667pt;}
.h6_c00433{height:61.600000pt;}
.hc_c00433{height:62.533333pt;}
.h2_c00433{height:63.466667pt;}
.hb_c00433{height:65.333333pt;}
.he_c00433{height:66.266667pt;}
.hd_c00433{height:67.200000pt;}
.hf_c00433{height:68.133333pt;}
.h1_c00433{height:72.800000pt;}
.h0_c00433{height:540.666667pt;}
.w0_c00433{width:319.200000pt;}
.w1_c00433{width:319.333333pt;}
.x0_c00433{left:0.000000pt;}
.x6e_c00433{left:42.249333pt;}
.x65_c00433{left:43.226667pt;}
.x25_c00433{left:44.362667pt;}
.x4f_c00433{left:45.621333pt;}
.x3d_c00433{left:46.844000pt;}
.x32_c00433{left:47.814667pt;}
.x2b_c00433{left:48.721333pt;}
.x12_c00433{left:50.234667pt;}
.x3_c00433{left:51.853333pt;}
.xb_c00433{left:58.104000pt;}
.x7d_c00433{left:60.714667pt;}
.x1e_c00433{left:61.916000pt;}
.x5e_c00433{left:65.860000pt;}
.x37_c00433{left:67.605333pt;}
.x19_c00433{left:70.102667pt;}
.x66_c00433{left:73.165333pt;}
.x26_c00433{left:74.834667pt;}
.x72_c00433{left:78.733333pt;}
.x1f_c00433{left:79.912000pt;}
.x61_c00433{left:84.262667pt;}
.x38_c00433{left:85.678667pt;}
.x6a_c00433{left:89.521333pt;}
.x1_c00433{left:90.720000pt;}
.x4_c00433{left:93.349333pt;}
.x13_c00433{left:95.308000pt;}
.x5f_c00433{left:97.006667pt;}
.x2c_c00433{left:99.132000pt;}
.x62_c00433{left:101.550667pt;}
.x2e_c00433{left:102.474667pt;}
.x7a_c00433{left:104.505333pt;}
.x49_c00433{left:105.401333pt;}
.x43_c00433{left:108.521333pt;}
.x5b_c00433{left:109.572000pt;}
.x3e_c00433{left:110.922667pt;}
.x39_c00433{left:113.230667pt;}
.x56_c00433{left:115.289333pt;}
.x5_c00433{left:117.214667pt;}
.x27_c00433{left:118.173333pt;}
.x5c_c00433{left:121.254667pt;}
.x4a_c00433{left:122.921333pt;}
.x3f_c00433{left:125.113333pt;}
.x6_c00433{left:126.485333pt;}
.x6f_c00433{left:128.682667pt;}
.x76_c00433{left:130.076000pt;}
.x33_c00433{left:131.968000pt;}
.x50_c00433{left:134.390667pt;}
.x14_c00433{left:138.292000pt;}
.x73_c00433{left:139.218667pt;}
.x54_c00433{left:140.276000pt;}
.x57_c00433{left:142.546667pt;}
.x20_c00433{left:143.778667pt;}
.x4b_c00433{left:145.000000pt;}
.x34_c00433{left:147.549333pt;}
.x68_c00433{left:149.041333pt;}
.x7e_c00433{left:150.474667pt;}
.x3a_c00433{left:151.408000pt;}
.x70_c00433{left:153.133333pt;}
.x2d_c00433{left:155.632000pt;}
.xc_c00433{left:157.313333pt;}
.x2f_c00433{left:158.638667pt;}
.x44_c00433{left:163.193333pt;}
.x4c_c00433{left:164.678667pt;}
.x2_c00433{left:167.040000pt;}
.x69_c00433{left:168.746667pt;}
.x21_c00433{left:169.930667pt;}
.x1a_c00433{left:173.070667pt;}
.x60_c00433{left:174.121333pt;}
.x5d_c00433{left:175.805333pt;}
.x7b_c00433{left:179.352000pt;}
.xd_c00433{left:180.285333pt;}
.x45_c00433{left:181.530667pt;}
.x40_c00433{left:183.152000pt;}
.x55_c00433{left:185.556000pt;}
.x51_c00433{left:188.412000pt;}
.x71_c00433{left:189.354667pt;}
.x15_c00433{left:190.441333pt;}
.x7_c00433{left:191.752000pt;}
.x1b_c00433{left:194.672000pt;}
.x78_c00433{left:196.824000pt;}
.x7f_c00433{left:200.874667pt;}
.x46_c00433{left:202.872000pt;}
.x6b_c00433{left:204.721333pt;}
.x3b_c00433{left:206.698667pt;}
.x16_c00433{left:208.196000pt;}
.x30_c00433{left:209.504000pt;}
.x63_c00433{left:210.832000pt;}
.x67_c00433{left:214.041333pt;}
.x74_c00433{left:215.841333pt;}
.x8_c00433{left:219.354667pt;}
.x58_c00433{left:221.272000pt;}
.x22_c00433{left:224.181333pt;}
.x17_c00433{left:225.645333pt;}
.x6c_c00433{left:228.072000pt;}
.x3c_c00433{left:229.146667pt;}
.x7c_c00433{left:232.378667pt;}
.x41_c00433{left:235.040000pt;}
.xe_c00433{left:239.881333pt;}
.x59_c00433{left:242.153333pt;}
.x28_c00433{left:244.390667pt;}
.x35_c00433{left:248.398667pt;}
.x4d_c00433{left:252.305333pt;}
.x79_c00433{left:253.206667pt;}
.x29_c00433{left:254.949333pt;}
.x9_c00433{left:256.078667pt;}
.x1c_c00433{left:257.325333pt;}
.xf_c00433{left:258.852000pt;}
.x52_c00433{left:260.162667pt;}
.x5a_c00433{left:262.374667pt;}
.x18_c00433{left:263.557333pt;}
.x64_c00433{left:265.909333pt;}
.x23_c00433{left:266.981333pt;}
.x75_c00433{left:268.088000pt;}
.x77_c00433{left:270.716000pt;}
.x1d_c00433{left:272.196000pt;}
.x10_c00433{left:275.646667pt;}
.x53_c00433{left:277.753333pt;}
.x47_c00433{left:279.910667pt;}
.x36_c00433{left:281.665333pt;}
.x42_c00433{left:285.656000pt;}
.x6d_c00433{left:288.864000pt;}
.x24_c00433{left:291.172000pt;}
.x48_c00433{left:293.086667pt;}
.x31_c00433{left:293.985333pt;}
.x11_c00433{left:296.241333pt;}
.x2a_c00433{left:299.460000pt;}
.xa_c00433{left:301.384000pt;}
.x4e_c00433{left:311.318667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00434 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00434.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c00434{transform:matrix(0.137280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137280,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.maa_c00434{transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142670,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);}
.ma7_c00434{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00434{transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153020,0.000000,0.000000,0.250000,0,0);}
.m72_c00434{transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153520,0.000000,0.000000,0.250000,0,0);}
.m84_c00434{transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);}
.m86_c00434{transform:matrix(0.159040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159040,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159230,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161205,0.000000,0.000000,0.250000,0,0);}
.m70_c00434{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m90_c00434{transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162945,0.000000,0.000000,0.250000,0,0);}
.m85_c00434{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00434{transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165185,0.000000,0.000000,0.250000,0,0);}
.m73_c00434{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mbf_c00434{transform:matrix(0.165995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165995,0.000000,0.000000,0.250000,0,0);}
.m88_c00434{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.mc2_c00434{transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.166790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166790,0.000000,0.000000,0.250000,0,0);}
.m92_c00434{transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00434{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.m89_c00434{transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169160,0.000000,0.000000,0.250000,0,0);}
.m6d_c00434{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m40_c00434{transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170655,0.000000,0.000000,0.250000,0,0);}
.m6e_c00434{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00434{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.me6_c00434{transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173205,0.000000,0.000000,0.250000,0,0);}
.m16_c00434{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m81_c00434{transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m71_c00434{transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);}
.md4_c00434{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m6b_c00434{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176845,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.md2_c00434{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.mc3_c00434{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.mda_c00434{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.m87_c00434{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m82_c00434{transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180245,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00434{transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180445,0.000000,0.000000,0.250000,0,0);}
.mc5_c00434{transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180590,0.000000,0.000000,0.250000,0,0);}
.mab_c00434{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);}
.m76_c00434{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m95_c00434{transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);}
.m74_c00434{transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);}
.m20_c00434{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.mc0_c00434{transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183370,0.000000,0.000000,0.250000,0,0);}
.m63_c00434{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m45_c00434{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m68_c00434{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.mbe_c00434{transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183795,0.000000,0.000000,0.250000,0,0);}
.m96_c00434{transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183895,0.000000,0.000000,0.250000,0,0);}
.mce_c00434{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.mdf_c00434{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.md5_c00434{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m64_c00434{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m6c_c00434{transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);}
.m66_c00434{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.mcb_c00434{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.mc4_c00434{transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185665,0.000000,0.000000,0.250000,0,0);}
.m27_c00434{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m5e_c00434{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m8d_c00434{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.m9a_c00434{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.m7e_c00434{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.me2_c00434{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00434{transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00434{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.md7_c00434{transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188160,0.000000,0.000000,0.250000,0,0);}
.m7d_c00434{transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);}
.m93_c00434{transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00434{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.m1c_c00434{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.m65_c00434{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m99_c00434{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m6f_c00434{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.mad_c00434{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.mba_c00434{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.ma4_c00434{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192295,0.000000,0.000000,0.250000,0,0);}
.mcc_c00434{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.ma9_c00434{transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192835,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);}
.m80_c00434{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.md3_c00434{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.m91_c00434{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);}
.me4_c00434{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00434{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00434{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.mac_c00434{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.me1_c00434{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.me0_c00434{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m60_c00434{transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);}
.m5d_c00434{transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);}
.m5f_c00434{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197070,0.000000,0.000000,0.250000,0,0);}
.mb5_c00434{transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197260,0.000000,0.000000,0.250000,0,0);}
.ma6_c00434{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197530,0.000000,0.000000,0.250000,0,0);}
.m98_c00434{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.md0_c00434{transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198035,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m5c_c00434{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);}
.me3_c00434{transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m8e_c00434{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.ma8_c00434{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.mde_c00434{transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);}
.m4a_c00434{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.mcd_c00434{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.ma3_c00434{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.mb7_c00434{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m8a_c00434{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m9f_c00434{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m42_c00434{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00434{transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206805,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m61_c00434{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m2d_c00434{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m78_c00434{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m62_c00434{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00434{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m5b_c00434{transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);}
.m75_c00434{transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209370,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.mb8_c00434{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.mb3_c00434{transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211790,0.000000,0.000000,0.250000,0,0);}
.mcf_c00434{transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211840,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212335,0.000000,0.000000,0.250000,0,0);}
.md1_c00434{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.mbc_c00434{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00434{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.me5_c00434{transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214745,0.000000,0.000000,0.250000,0,0);}
.m9d_c00434{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.mc1_c00434{transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);}
.m7f_c00434{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m94_c00434{transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);}
.m77_c00434{transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);}
.mca_c00434{transform:matrix(0.218030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00434{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.ma2_c00434{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.ma0_c00434{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.m69_c00434{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);}
.mb0_c00434{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.md6_c00434{transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220910,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.mbb_c00434{transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00434{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227865,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);}
.mdc_c00434{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.mdd_c00434{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00434{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m79_c00434{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.m57_c00434{transform:matrix(0.231115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.mae_c00434{transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232205,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232820,0.000000,0.000000,0.250000,0,0);}
.ma5_c00434{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.mb1_c00434{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m7a_c00434{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.mb9_c00434{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00434{transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241145,0.000000,0.000000,0.250000,0,0);}
.m97_c00434{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.maf_c00434{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);}
.m9e_c00434{transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.244670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244670,0.000000,0.000000,0.250000,0,0);}
.mc9_c00434{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m56_c00434{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.ma1_c00434{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.mb6_c00434{transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);}
.mb4_c00434{transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);}
.md8_c00434{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.277645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277645,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.306340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306340,0.000000,0.000000,0.250000,0,0);}
.mc8_c00434{transform:matrix(0.313635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313635,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.321495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321495,0.000000,0.000000,0.250000,0,0);}
.mdb_c00434{transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323280,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.439225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439225,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
.fc0_c00434{color:transparent;}
.fsc_c00434{font-size:54.600000px;}
.fs6_c00434{font-size:57.750000px;}
.fs7_c00434{font-size:58.800000px;}
.fs2_c00434{font-size:59.850000px;}
.fs9_c00434{font-size:60.900000px;}
.fs5_c00434{font-size:61.950000px;}
.fs4_c00434{font-size:63.000000px;}
.fs8_c00434{font-size:64.050000px;}
.fse_c00434{font-size:65.100000px;}
.fs3_c00434{font-size:66.150000px;}
.fs1_c00434{font-size:68.250000px;}
.fsd_c00434{font-size:69.300000px;}
.fsa_c00434{font-size:70.350000px;}
.fsb_c00434{font-size:71.400000px;}
.fs0_c00434{font-size:80.850000px;}
.y0_c00434{bottom:0.000000px;}
.y76_c00434{bottom:34.737000px;}
.y75_c00434{bottom:50.760000px;}
.y74_c00434{bottom:68.095500px;}
.y73_c00434{bottom:84.931500px;}
.y72_c00434{bottom:101.656500px;}
.y71_c00434{bottom:118.905000px;}
.y70_c00434{bottom:135.223500px;}
.y6f_c00434{bottom:152.202000px;}
.y66_c00434{bottom:167.409000px;}
.y67_c00434{bottom:167.791500px;}
.y68_c00434{bottom:167.940000px;}
.y69_c00434{bottom:168.297000px;}
.y6a_c00434{bottom:168.780000px;}
.y6b_c00434{bottom:170.059500px;}
.y6c_c00434{bottom:170.212500px;}
.y6d_c00434{bottom:170.265000px;}
.y6e_c00434{bottom:170.611500px;}
.y65_c00434{bottom:187.554000px;}
.y64_c00434{bottom:205.266000px;}
.y63_c00434{bottom:221.763000px;}
.y62_c00434{bottom:238.078500px;}
.y61_c00434{bottom:255.217500px;}
.y60_c00434{bottom:272.020500px;}
.y5b_c00434{bottom:287.827500px;}
.y5c_c00434{bottom:288.337500px;}
.y5d_c00434{bottom:289.141500px;}
.y5e_c00434{bottom:290.025000px;}
.y5f_c00434{bottom:290.697000px;}
.y5a_c00434{bottom:307.122000px;}
.y54_c00434{bottom:322.927500px;}
.y55_c00434{bottom:323.503500px;}
.y56_c00434{bottom:323.731500px;}
.y57_c00434{bottom:324.873000px;}
.y58_c00434{bottom:325.705500px;}
.y59_c00434{bottom:326.248500px;}
.y4c_c00434{bottom:339.129000px;}
.y4d_c00434{bottom:339.849000px;}
.y4e_c00434{bottom:340.260000px;}
.y4f_c00434{bottom:341.133000px;}
.y50_c00434{bottom:341.271000px;}
.y51_c00434{bottom:341.652000px;}
.y52_c00434{bottom:342.882000px;}
.y53_c00434{bottom:343.156500px;}
.y4b_c00434{bottom:355.594500px;}
.y43_c00434{bottom:369.906000px;}
.y44_c00434{bottom:370.402500px;}
.y45_c00434{bottom:370.719000px;}
.y46_c00434{bottom:371.104500px;}
.y47_c00434{bottom:371.682000px;}
.y48_c00434{bottom:372.027000px;}
.y49_c00434{bottom:372.772500px;}
.y4a_c00434{bottom:373.695000px;}
.y3b_c00434{bottom:388.264500px;}
.y3c_c00434{bottom:388.938000px;}
.y3d_c00434{bottom:389.253000px;}
.y3e_c00434{bottom:389.835000px;}
.y3f_c00434{bottom:390.037500px;}
.y40_c00434{bottom:390.607500px;}
.y41_c00434{bottom:390.780000px;}
.y42_c00434{bottom:391.171500px;}
.y35_c00434{bottom:405.544500px;}
.y36_c00434{bottom:406.303500px;}
.y37_c00434{bottom:407.233500px;}
.y38_c00434{bottom:407.479500px;}
.y39_c00434{bottom:407.634000px;}
.y3a_c00434{bottom:408.175500px;}
.y2d_c00434{bottom:420.664500px;}
.y2e_c00434{bottom:421.195500px;}
.y2f_c00434{bottom:421.455000px;}
.y30_c00434{bottom:422.247000px;}
.y31_c00434{bottom:423.633000px;}
.y32_c00434{bottom:423.952500px;}
.y33_c00434{bottom:424.713000px;}
.y34_c00434{bottom:425.016000px;}
.y29_c00434{bottom:437.944500px;}
.y2a_c00434{bottom:439.450500px;}
.y2b_c00434{bottom:441.162000px;}
.y2c_c00434{bottom:442.287000px;}
.y21_c00434{bottom:454.684500px;}
.y22_c00434{bottom:455.463000px;}
.y23_c00434{bottom:455.773500px;}
.y24_c00434{bottom:456.580500px;}
.y25_c00434{bottom:456.988500px;}
.y26_c00434{bottom:457.717500px;}
.y27_c00434{bottom:458.830500px;}
.y28_c00434{bottom:459.273000px;}
.y1a_c00434{bottom:473.040000px;}
.y1b_c00434{bottom:473.221500px;}
.y1c_c00434{bottom:473.815500px;}
.y1d_c00434{bottom:474.111000px;}
.y1e_c00434{bottom:474.604500px;}
.y1f_c00434{bottom:474.751500px;}
.y20_c00434{bottom:475.413000px;}
.y13_c00434{bottom:489.511500px;}
.y14_c00434{bottom:490.164000px;}
.y15_c00434{bottom:490.939500px;}
.y16_c00434{bottom:491.107500px;}
.y17_c00434{bottom:491.419500px;}
.y18_c00434{bottom:492.114000px;}
.y19_c00434{bottom:492.849000px;}
.yb_c00434{bottom:505.710000px;}
.yc_c00434{bottom:505.948500px;}
.yd_c00434{bottom:506.224500px;}
.ye_c00434{bottom:506.455500px;}
.yf_c00434{bottom:507.214500px;}
.y10_c00434{bottom:507.669000px;}
.y11_c00434{bottom:508.233000px;}
.y12_c00434{bottom:509.190000px;}
.y4_c00434{bottom:522.991500px;}
.y5_c00434{bottom:523.512000px;}
.y6_c00434{bottom:524.260500px;}
.y7_c00434{bottom:525.795000px;}
.y8_c00434{bottom:526.734000px;}
.y9_c00434{bottom:527.103000px;}
.ya_c00434{bottom:527.418000px;}
.y3_c00434{bottom:541.029000px;}
.y2_c00434{bottom:558.025500px;}
.y1_c00434{bottom:572.535000px;}
.hd_c00434{height:54.600000px;}
.h7_c00434{height:57.750000px;}
.h8_c00434{height:58.800000px;}
.h3_c00434{height:59.850000px;}
.ha_c00434{height:60.900000px;}
.h6_c00434{height:61.950000px;}
.h5_c00434{height:63.000000px;}
.h9_c00434{height:64.050000px;}
.hf_c00434{height:65.100000px;}
.h4_c00434{height:66.150000px;}
.h2_c00434{height:68.250000px;}
.he_c00434{height:69.300000px;}
.hb_c00434{height:70.350000px;}
.hc_c00434{height:71.400000px;}
.h1_c00434{height:80.850000px;}
.h0_c00434{height:608.250000px;}
.w0_c00434{width:359.100000px;}
.w1_c00434{width:359.250000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:11.070000px;}
.x41_c00434{left:12.688500px;}
.x5a_c00434{left:13.770000px;}
.xa_c00434{left:15.660000px;}
.x34_c00434{left:16.869000px;}
.x55_c00434{left:18.090000px;}
.x6c_c00434{left:19.710000px;}
.x66_c00434{left:21.600000px;}
.x2a_c00434{left:23.725500px;}
.x17_c00434{left:27.436500px;}
.x22_c00434{left:28.987500px;}
.x11_c00434{left:40.684500px;}
.x61_c00434{left:42.388500px;}
.x2e_c00434{left:45.277500px;}
.x18_c00434{left:47.127000px;}
.x3_c00434{left:52.650000px;}
.x47_c00434{left:55.233000px;}
.x5e_c00434{left:56.968500px;}
.x26_c00434{left:59.866500px;}
.x1d_c00434{left:61.128000px;}
.x4_c00434{left:63.990000px;}
.x42_c00434{left:68.848500px;}
.x60_c00434{left:69.928500px;}
.x38_c00434{left:72.736500px;}
.xb_c00434{left:74.250000px;}
.x27_c00434{left:77.151000px;}
.x6d_c00434{left:78.840000px;}
.x35_c00434{left:80.068500px;}
.x12_c00434{left:82.309500px;}
.x50_c00434{left:85.050000px;}
.x45_c00434{left:86.632500px;}
.x23_c00434{left:88.354500px;}
.xc_c00434{left:90.990000px;}
.x69_c00434{left:92.610000px;}
.x6f_c00434{left:97.470000px;}
.x39_c00434{left:101.385000px;}
.x67_c00434{left:102.600000px;}
.x51_c00434{left:108.540000px;}
.x2f_c00434{left:110.914500px;}
.x2b_c00434{left:112.282500px;}
.xd_c00434{left:113.670000px;}
.x3d_c00434{left:115.968000px;}
.x19_c00434{left:117.829500px;}
.x52_c00434{left:119.070000px;}
.x1e_c00434{left:120.829500px;}
.x28_c00434{left:121.999500px;}
.x4a_c00434{left:128.520000px;}
.x68_c00434{left:129.870000px;}
.x6a_c00434{left:131.760000px;}
.x5_c00434{left:133.650000px;}
.x3e_c00434{left:136.290000px;}
.x5f_c00434{left:142.828500px;}
.x1_c00434{left:143.910000px;}
.x62_c00434{left:147.958500px;}
.x1a_c00434{left:150.241500px;}
.x5b_c00434{left:152.280000px;}
.x3a_c00434{left:154.248000px;}
.x70_c00434{left:155.250000px;}
.x1f_c00434{left:157.840500px;}
.x48_c00434{left:160.543500px;}
.x56_c00434{left:162.540000px;}
.x4b_c00434{left:164.160000px;}
.x13_c00434{left:167.577000px;}
.x3b_c00434{left:172.659000px;}
.x54_c00434{left:174.420000px;}
.x36_c00434{left:178.071000px;}
.x3f_c00434{left:180.100500px;}
.x24_c00434{left:181.833000px;}
.x4c_c00434{left:183.060000px;}
.x6_c00434{left:184.680000px;}
.x53_c00434{left:187.380000px;}
.x1b_c00434{left:190.543500px;}
.xe_c00434{left:195.210000px;}
.x30_c00434{left:197.575500px;}
.x63_c00434{left:202.228500px;}
.x43_c00434{left:207.358500px;}
.x57_c00434{left:208.710000px;}
.x20_c00434{left:211.239000px;}
.x2c_c00434{left:212.977500px;}
.x31_c00434{left:217.551000px;}
.x14_c00434{left:219.733500px;}
.x3c_c00434{left:224.499000px;}
.x7_c00434{left:227.070000px;}
.x4e_c00434{left:231.802500px;}
.x40_c00434{left:234.336000px;}
.x37_c00434{left:236.131500px;}
.x15_c00434{left:240.252000px;}
.x44_c00434{left:241.918500px;}
.xf_c00434{left:246.510000px;}
.x25_c00434{left:247.978500px;}
.x58_c00434{left:252.450000px;}
.x4d_c00434{left:253.530000px;}
.x16_c00434{left:257.752500px;}
.x1c_c00434{left:258.855000px;}
.x46_c00434{left:261.537000px;}
.x32_c00434{left:265.072500px;}
.x49_c00434{left:266.320500px;}
.x21_c00434{left:267.733500px;}
.x64_c00434{left:269.458500px;}
.x29_c00434{left:271.570500px;}
.x10_c00434{left:273.510000px;}
.x8_c00434{left:275.400000px;}
.x2d_c00434{left:279.136500px;}
.x5d_c00434{left:281.748000px;}
.x33_c00434{left:283.972500px;}
.x59_c00434{left:287.010000px;}
.x6b_c00434{left:289.440000px;}
.x5c_c00434{left:295.110000px;}
.x9_c00434{left:296.460000px;}
.x4f_c00434{left:299.020500px;}
.x65_c00434{left:305.908500px;}
.x6e_c00434{left:307.530000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.fsc_c00434{font-size:48.533333pt;}
.fs6_c00434{font-size:51.333333pt;}
.fs7_c00434{font-size:52.266667pt;}
.fs2_c00434{font-size:53.200000pt;}
.fs9_c00434{font-size:54.133333pt;}
.fs5_c00434{font-size:55.066667pt;}
.fs4_c00434{font-size:56.000000pt;}
.fs8_c00434{font-size:56.933333pt;}
.fse_c00434{font-size:57.866667pt;}
.fs3_c00434{font-size:58.800000pt;}
.fs1_c00434{font-size:60.666667pt;}
.fsd_c00434{font-size:61.600000pt;}
.fsa_c00434{font-size:62.533333pt;}
.fsb_c00434{font-size:63.466667pt;}
.fs0_c00434{font-size:71.866667pt;}
.y0_c00434{bottom:0.000000pt;}
.y76_c00434{bottom:30.877333pt;}
.y75_c00434{bottom:45.120000pt;}
.y74_c00434{bottom:60.529333pt;}
.y73_c00434{bottom:75.494667pt;}
.y72_c00434{bottom:90.361333pt;}
.y71_c00434{bottom:105.693333pt;}
.y70_c00434{bottom:120.198667pt;}
.y6f_c00434{bottom:135.290667pt;}
.y66_c00434{bottom:148.808000pt;}
.y67_c00434{bottom:149.148000pt;}
.y68_c00434{bottom:149.280000pt;}
.y69_c00434{bottom:149.597333pt;}
.y6a_c00434{bottom:150.026667pt;}
.y6b_c00434{bottom:151.164000pt;}
.y6c_c00434{bottom:151.300000pt;}
.y6d_c00434{bottom:151.346667pt;}
.y6e_c00434{bottom:151.654667pt;}
.y65_c00434{bottom:166.714667pt;}
.y64_c00434{bottom:182.458667pt;}
.y63_c00434{bottom:197.122667pt;}
.y62_c00434{bottom:211.625333pt;}
.y61_c00434{bottom:226.860000pt;}
.y60_c00434{bottom:241.796000pt;}
.y5b_c00434{bottom:255.846667pt;}
.y5c_c00434{bottom:256.300000pt;}
.y5d_c00434{bottom:257.014667pt;}
.y5e_c00434{bottom:257.800000pt;}
.y5f_c00434{bottom:258.397333pt;}
.y5a_c00434{bottom:272.997333pt;}
.y54_c00434{bottom:287.046667pt;}
.y55_c00434{bottom:287.558667pt;}
.y56_c00434{bottom:287.761333pt;}
.y57_c00434{bottom:288.776000pt;}
.y58_c00434{bottom:289.516000pt;}
.y59_c00434{bottom:289.998667pt;}
.y4c_c00434{bottom:301.448000pt;}
.y4d_c00434{bottom:302.088000pt;}
.y4e_c00434{bottom:302.453333pt;}
.y4f_c00434{bottom:303.229333pt;}
.y50_c00434{bottom:303.352000pt;}
.y51_c00434{bottom:303.690667pt;}
.y52_c00434{bottom:304.784000pt;}
.y53_c00434{bottom:305.028000pt;}
.y4b_c00434{bottom:316.084000pt;}
.y43_c00434{bottom:328.805333pt;}
.y44_c00434{bottom:329.246667pt;}
.y45_c00434{bottom:329.528000pt;}
.y46_c00434{bottom:329.870667pt;}
.y47_c00434{bottom:330.384000pt;}
.y48_c00434{bottom:330.690667pt;}
.y49_c00434{bottom:331.353333pt;}
.y4a_c00434{bottom:332.173333pt;}
.y3b_c00434{bottom:345.124000pt;}
.y3c_c00434{bottom:345.722667pt;}
.y3d_c00434{bottom:346.002667pt;}
.y3e_c00434{bottom:346.520000pt;}
.y3f_c00434{bottom:346.700000pt;}
.y40_c00434{bottom:347.206667pt;}
.y41_c00434{bottom:347.360000pt;}
.y42_c00434{bottom:347.708000pt;}
.y35_c00434{bottom:360.484000pt;}
.y36_c00434{bottom:361.158667pt;}
.y37_c00434{bottom:361.985333pt;}
.y38_c00434{bottom:362.204000pt;}
.y39_c00434{bottom:362.341333pt;}
.y3a_c00434{bottom:362.822667pt;}
.y2d_c00434{bottom:373.924000pt;}
.y2e_c00434{bottom:374.396000pt;}
.y2f_c00434{bottom:374.626667pt;}
.y30_c00434{bottom:375.330667pt;}
.y31_c00434{bottom:376.562667pt;}
.y32_c00434{bottom:376.846667pt;}
.y33_c00434{bottom:377.522667pt;}
.y34_c00434{bottom:377.792000pt;}
.y29_c00434{bottom:389.284000pt;}
.y2a_c00434{bottom:390.622667pt;}
.y2b_c00434{bottom:392.144000pt;}
.y2c_c00434{bottom:393.144000pt;}
.y21_c00434{bottom:404.164000pt;}
.y22_c00434{bottom:404.856000pt;}
.y23_c00434{bottom:405.132000pt;}
.y24_c00434{bottom:405.849333pt;}
.y25_c00434{bottom:406.212000pt;}
.y26_c00434{bottom:406.860000pt;}
.y27_c00434{bottom:407.849333pt;}
.y28_c00434{bottom:408.242667pt;}
.y1a_c00434{bottom:420.480000pt;}
.y1b_c00434{bottom:420.641333pt;}
.y1c_c00434{bottom:421.169333pt;}
.y1d_c00434{bottom:421.432000pt;}
.y1e_c00434{bottom:421.870667pt;}
.y1f_c00434{bottom:422.001333pt;}
.y20_c00434{bottom:422.589333pt;}
.y13_c00434{bottom:435.121333pt;}
.y14_c00434{bottom:435.701333pt;}
.y15_c00434{bottom:436.390667pt;}
.y16_c00434{bottom:436.540000pt;}
.y17_c00434{bottom:436.817333pt;}
.y18_c00434{bottom:437.434667pt;}
.y19_c00434{bottom:438.088000pt;}
.yb_c00434{bottom:449.520000pt;}
.yc_c00434{bottom:449.732000pt;}
.yd_c00434{bottom:449.977333pt;}
.ye_c00434{bottom:450.182667pt;}
.yf_c00434{bottom:450.857333pt;}
.y10_c00434{bottom:451.261333pt;}
.y11_c00434{bottom:451.762667pt;}
.y12_c00434{bottom:452.613333pt;}
.y4_c00434{bottom:464.881333pt;}
.y5_c00434{bottom:465.344000pt;}
.y6_c00434{bottom:466.009333pt;}
.y7_c00434{bottom:467.373333pt;}
.y8_c00434{bottom:468.208000pt;}
.y9_c00434{bottom:468.536000pt;}
.ya_c00434{bottom:468.816000pt;}
.y3_c00434{bottom:480.914667pt;}
.y2_c00434{bottom:496.022667pt;}
.y1_c00434{bottom:508.920000pt;}
.hd_c00434{height:48.533333pt;}
.h7_c00434{height:51.333333pt;}
.h8_c00434{height:52.266667pt;}
.h3_c00434{height:53.200000pt;}
.ha_c00434{height:54.133333pt;}
.h6_c00434{height:55.066667pt;}
.h5_c00434{height:56.000000pt;}
.h9_c00434{height:56.933333pt;}
.hf_c00434{height:57.866667pt;}
.h4_c00434{height:58.800000pt;}
.h2_c00434{height:60.666667pt;}
.he_c00434{height:61.600000pt;}
.hb_c00434{height:62.533333pt;}
.hc_c00434{height:63.466667pt;}
.h1_c00434{height:71.866667pt;}
.h0_c00434{height:540.666667pt;}
.w0_c00434{width:319.200000pt;}
.w1_c00434{width:319.333333pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:9.840000pt;}
.x41_c00434{left:11.278667pt;}
.x5a_c00434{left:12.240000pt;}
.xa_c00434{left:13.920000pt;}
.x34_c00434{left:14.994667pt;}
.x55_c00434{left:16.080000pt;}
.x6c_c00434{left:17.520000pt;}
.x66_c00434{left:19.200000pt;}
.x2a_c00434{left:21.089333pt;}
.x17_c00434{left:24.388000pt;}
.x22_c00434{left:25.766667pt;}
.x11_c00434{left:36.164000pt;}
.x61_c00434{left:37.678667pt;}
.x2e_c00434{left:40.246667pt;}
.x18_c00434{left:41.890667pt;}
.x3_c00434{left:46.800000pt;}
.x47_c00434{left:49.096000pt;}
.x5e_c00434{left:50.638667pt;}
.x26_c00434{left:53.214667pt;}
.x1d_c00434{left:54.336000pt;}
.x4_c00434{left:56.880000pt;}
.x42_c00434{left:61.198667pt;}
.x60_c00434{left:62.158667pt;}
.x38_c00434{left:64.654667pt;}
.xb_c00434{left:66.000000pt;}
.x27_c00434{left:68.578667pt;}
.x6d_c00434{left:70.080000pt;}
.x35_c00434{left:71.172000pt;}
.x12_c00434{left:73.164000pt;}
.x50_c00434{left:75.600000pt;}
.x45_c00434{left:77.006667pt;}
.x23_c00434{left:78.537333pt;}
.xc_c00434{left:80.880000pt;}
.x69_c00434{left:82.320000pt;}
.x6f_c00434{left:86.640000pt;}
.x39_c00434{left:90.120000pt;}
.x67_c00434{left:91.200000pt;}
.x51_c00434{left:96.480000pt;}
.x2f_c00434{left:98.590667pt;}
.x2b_c00434{left:99.806667pt;}
.xd_c00434{left:101.040000pt;}
.x3d_c00434{left:103.082667pt;}
.x19_c00434{left:104.737333pt;}
.x52_c00434{left:105.840000pt;}
.x1e_c00434{left:107.404000pt;}
.x28_c00434{left:108.444000pt;}
.x4a_c00434{left:114.240000pt;}
.x68_c00434{left:115.440000pt;}
.x6a_c00434{left:117.120000pt;}
.x5_c00434{left:118.800000pt;}
.x3e_c00434{left:121.146667pt;}
.x5f_c00434{left:126.958667pt;}
.x1_c00434{left:127.920000pt;}
.x62_c00434{left:131.518667pt;}
.x1a_c00434{left:133.548000pt;}
.x5b_c00434{left:135.360000pt;}
.x3a_c00434{left:137.109333pt;}
.x70_c00434{left:138.000000pt;}
.x1f_c00434{left:140.302667pt;}
.x48_c00434{left:142.705333pt;}
.x56_c00434{left:144.480000pt;}
.x4b_c00434{left:145.920000pt;}
.x13_c00434{left:148.957333pt;}
.x3b_c00434{left:153.474667pt;}
.x54_c00434{left:155.040000pt;}
.x36_c00434{left:158.285333pt;}
.x3f_c00434{left:160.089333pt;}
.x24_c00434{left:161.629333pt;}
.x4c_c00434{left:162.720000pt;}
.x6_c00434{left:164.160000pt;}
.x53_c00434{left:166.560000pt;}
.x1b_c00434{left:169.372000pt;}
.xe_c00434{left:173.520000pt;}
.x30_c00434{left:175.622667pt;}
.x63_c00434{left:179.758667pt;}
.x43_c00434{left:184.318667pt;}
.x57_c00434{left:185.520000pt;}
.x20_c00434{left:187.768000pt;}
.x2c_c00434{left:189.313333pt;}
.x31_c00434{left:193.378667pt;}
.x14_c00434{left:195.318667pt;}
.x3c_c00434{left:199.554667pt;}
.x7_c00434{left:201.840000pt;}
.x4e_c00434{left:206.046667pt;}
.x40_c00434{left:208.298667pt;}
.x37_c00434{left:209.894667pt;}
.x15_c00434{left:213.557333pt;}
.x44_c00434{left:215.038667pt;}
.xf_c00434{left:219.120000pt;}
.x25_c00434{left:220.425333pt;}
.x58_c00434{left:224.400000pt;}
.x4d_c00434{left:225.360000pt;}
.x16_c00434{left:229.113333pt;}
.x1c_c00434{left:230.093333pt;}
.x46_c00434{left:232.477333pt;}
.x32_c00434{left:235.620000pt;}
.x49_c00434{left:236.729333pt;}
.x21_c00434{left:237.985333pt;}
.x64_c00434{left:239.518667pt;}
.x29_c00434{left:241.396000pt;}
.x10_c00434{left:243.120000pt;}
.x8_c00434{left:244.800000pt;}
.x2d_c00434{left:248.121333pt;}
.x5d_c00434{left:250.442667pt;}
.x33_c00434{left:252.420000pt;}
.x59_c00434{left:255.120000pt;}
.x6b_c00434{left:257.280000pt;}
.x5c_c00434{left:262.320000pt;}
.x9_c00434{left:263.520000pt;}
.x4f_c00434{left:265.796000pt;}
.x65_c00434{left:271.918667pt;}
.x6e_c00434{left:273.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00435 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00435.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc8_c00435{transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);}
.me2_c00435{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.me0_c00435{transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133005,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.136895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136895,0.000000,0.000000,0.250000,0,0);}
.m9a_c00435{transform:matrix(0.140445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140445,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.141040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141040,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);}
.m3c_c00435{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00435{transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);}
.m35_c00435{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.mae_c00435{transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.mc6_c00435{transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m60_c00435{transform:matrix(0.149745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149745,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149830,0.000000,0.000000,0.250000,0,0);}
.m68_c00435{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m72_c00435{transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149895,0.000000,0.000000,0.250000,0,0);}
.me1_c00435{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m63_c00435{transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);}
.m94_c00435{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.m87_c00435{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.m8b_c00435{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m77_c00435{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m98_c00435{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m6c_c00435{transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);}
.m75_c00435{transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156705,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m66_c00435{transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157835,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m7b_c00435{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m81_c00435{transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);}
.mdd_c00435{transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);}
.m8c_c00435{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161545,0.000000,0.000000,0.250000,0,0);}
.m65_c00435{transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);}
.maf_c00435{transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.mb7_c00435{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.mce_c00435{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.mad_c00435{transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00435{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m80_c00435{transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164890,0.000000,0.000000,0.250000,0,0);}
.m88_c00435{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m74_c00435{transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);}
.m23_c00435{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mdf_c00435{transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);}
.mdb_c00435{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m3d_c00435{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.mb0_c00435{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.mba_c00435{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.mc3_c00435{transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00435{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.me5_c00435{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m97_c00435{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m6d_c00435{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.mc4_c00435{transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);}
.mb9_c00435{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.me7_c00435{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171755,0.000000,0.000000,0.250000,0,0);}
.m71_c00435{transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171960,0.000000,0.000000,0.250000,0,0);}
.m8a_c00435{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m5c_c00435{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.mea_c00435{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172340,0.000000,0.000000,0.250000,0,0);}
.m2a_c00435{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m96_c00435{transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);}
.m5b_c00435{transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00435{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m99_c00435{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.mb2_c00435{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.ma6_c00435{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m7d_c00435{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m69_c00435{transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175460,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);}
.m95_c00435{transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00435{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176655,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m62_c00435{transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177540,0.000000,0.000000,0.250000,0,0);}
.m78_c00435{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m26_c00435{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.md9_c00435{transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);}
.mc0_c00435{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00435{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.m5d_c00435{transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00435{transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181440,0.000000,0.000000,0.250000,0,0);}
.m86_c00435{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);}
.m48_c00435{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.m73_c00435{transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);}
.md6_c00435{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.mcc_c00435{transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183095,0.000000,0.000000,0.250000,0,0);}
.mc5_c00435{transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);}
.mdc_c00435{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.m70_c00435{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.mc7_c00435{transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);}
.m5f_c00435{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.m67_c00435{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.mcf_c00435{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.md1_c00435{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.me4_c00435{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00435{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.maa_c00435{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.m7a_c00435{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m64_c00435{transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186335,0.000000,0.000000,0.250000,0,0);}
.mb8_c00435{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.mb3_c00435{transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186695,0.000000,0.000000,0.250000,0,0);}
.mab_c00435{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m45_c00435{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m8f_c00435{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.mbd_c00435{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m93_c00435{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.m79_c00435{transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);}
.m44_c00435{transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);}
.m6e_c00435{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00435{transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);}
.me8_c00435{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mde_c00435{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.ma9_c00435{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.m89_c00435{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.mcb_c00435{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m3e_c00435{transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192255,0.000000,0.000000,0.250000,0,0);}
.m38_c00435{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.md0_c00435{transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);}
.m59_c00435{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m92_c00435{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);}
.m82_c00435{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.mbf_c00435{transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);}
.m3a_c00435{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.md2_c00435{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);}
.m84_c00435{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m7f_c00435{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m91_c00435{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.mbe_c00435{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m29_c00435{transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194590,0.000000,0.000000,0.250000,0,0);}
.m7c_c00435{transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);}
.m61_c00435{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00435{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.me6_c00435{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.md4_c00435{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.m56_c00435{transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);}
.m6a_c00435{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00435{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.mcd_c00435{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00435{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.md8_c00435{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00435{transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);}
.me9_c00435{transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m57_c00435{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);}
.md3_c00435{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00435{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mbb_c00435{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m3f_c00435{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m46_c00435{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m2e_c00435{transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205285,0.000000,0.000000,0.250000,0,0);}
.m76_c00435{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.m41_c00435{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m4c_c00435{transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);}
.mbc_c00435{transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207330,0.000000,0.000000,0.250000,0,0);}
.mca_c00435{transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);}
.m8d_c00435{transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208165,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m22_c00435{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00435{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.ma8_c00435{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00435{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00435{transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);}
.mb6_c00435{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m9f_c00435{transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);}
.m90_c00435{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.m4d_c00435{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m27_c00435{transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);}
.m39_c00435{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m9d_c00435{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.me3_c00435{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.ma0_c00435{transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);}
.m21_c00435{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.m9b_c00435{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00435{transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00435{transform:matrix(0.221785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221785,0.000000,0.000000,0.250000,0,0);}
.m42_c00435{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.m20_c00435{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m5e_c00435{transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);}
.m52_c00435{transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);}
.m83_c00435{transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);}
.m58_c00435{transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235535,0.000000,0.000000,0.250000,0,0);}
.mac_c00435{transform:matrix(0.236390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);}
.m4f_c00435{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m54_c00435{transform:matrix(0.245255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245255,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);}
.m51_c00435{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.ma1_c00435{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);}
.m53_c00435{transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);}
.m55_c00435{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.m85_c00435{transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.md7_c00435{transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);}
.mb5_c00435{transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);}
.mc1_c00435{transform:matrix(0.351030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351030,0.000000,0.000000,0.250000,0,0);}
.md5_c00435{transform:matrix(0.473975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473975,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.477150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477150,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.497180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497180,0.000000,0.000000,0.250000,0,0);}
.mda_c00435{transform:matrix(0.694850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694850,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:0.000000px;}
._0_c00435{width:4.663873px;}
.fc0_c00435{color:transparent;}
.fs9_c00435{font-size:49.350000px;}
.fsc_c00435{font-size:57.750000px;}
.fsd_c00435{font-size:59.850000px;}
.fs8_c00435{font-size:61.950000px;}
.fs7_c00435{font-size:63.000000px;}
.fs6_c00435{font-size:64.050000px;}
.fs10_c00435{font-size:65.100000px;}
.fs2_c00435{font-size:66.150000px;}
.fsf_c00435{font-size:67.200000px;}
.fs0_c00435{font-size:68.250000px;}
.fs4_c00435{font-size:69.300000px;}
.fs3_c00435{font-size:70.350000px;}
.fsb_c00435{font-size:71.400000px;}
.fs5_c00435{font-size:72.450000px;}
.fsa_c00435{font-size:73.500000px;}
.fs1_c00435{font-size:74.550000px;}
.fse_c00435{font-size:76.650000px;}
.y0_c00435{bottom:0.000000px;}
.ye3_c00435{bottom:25.608000px;}
.ye2_c00435{bottom:26.359500px;}
.ye1_c00435{bottom:27.163500px;}
.ye0_c00435{bottom:27.544500px;}
.ydf_c00435{bottom:27.850500px;}
.yde_c00435{bottom:28.062000px;}
.ydd_c00435{bottom:28.624500px;}
.ydc_c00435{bottom:41.809500px;}
.ydb_c00435{bottom:41.949000px;}
.yda_c00435{bottom:42.328500px;}
.yd9_c00435{bottom:42.600000px;}
.yd8_c00435{bottom:43.465500px;}
.yd7_c00435{bottom:43.870500px;}
.yd6_c00435{bottom:44.200500px;}
.yd5_c00435{bottom:44.878500px;}
.yd4_c00435{bottom:45.096000px;}
.yd3_c00435{bottom:59.103000px;}
.yd2_c00435{bottom:60.225000px;}
.yd1_c00435{bottom:60.916500px;}
.yd0_c00435{bottom:61.159500px;}
.ycf_c00435{bottom:62.376000px;}
.yce_c00435{bottom:78.133500px;}
.ycd_c00435{bottom:92.968500px;}
.ycc_c00435{bottom:93.610500px;}
.ycb_c00435{bottom:93.939000px;}
.yca_c00435{bottom:94.365000px;}
.yc9_c00435{bottom:94.936500px;}
.yc8_c00435{bottom:95.221500px;}
.yc7_c00435{bottom:95.818500px;}
.yc6_c00435{bottom:96.124500px;}
.yc5_c00435{bottom:109.272000px;}
.yc4_c00435{bottom:110.155500px;}
.yc3_c00435{bottom:110.392500px;}
.yc2_c00435{bottom:110.517000px;}
.yc1_c00435{bottom:111.283500px;}
.yc0_c00435{bottom:112.032000px;}
.ybf_c00435{bottom:112.593000px;}
.ybe_c00435{bottom:125.776500px;}
.ybd_c00435{bottom:126.687000px;}
.ybc_c00435{bottom:127.723500px;}
.ybb_c00435{bottom:129.016500px;}
.yba_c00435{bottom:129.307500px;}
.yb9_c00435{bottom:129.874500px;}
.yb8_c00435{bottom:143.131500px;}
.yb7_c00435{bottom:144.414000px;}
.yb6_c00435{bottom:144.738000px;}
.yb5_c00435{bottom:145.156500px;}
.yb4_c00435{bottom:146.406000px;}
.yb3_c00435{bottom:146.767500px;}
.yb2_c00435{bottom:147.424500px;}
.yb1_c00435{bottom:159.291000px;}
.yb0_c00435{bottom:160.792500px;}
.yaf_c00435{bottom:161.049000px;}
.yae_c00435{bottom:162.082500px;}
.yad_c00435{bottom:162.519000px;}
.yac_c00435{bottom:162.883500px;}
.yab_c00435{bottom:164.017500px;}
.yaa_c00435{bottom:164.437500px;}
.ya9_c00435{bottom:176.151000px;}
.ya8_c00435{bottom:176.662500px;}
.ya7_c00435{bottom:176.917500px;}
.ya6_c00435{bottom:178.014000px;}
.ya5_c00435{bottom:178.456500px;}
.ya4_c00435{bottom:178.870500px;}
.ya3_c00435{bottom:179.584500px;}
.ya2_c00435{bottom:179.925000px;}
.ya1_c00435{bottom:180.501000px;}
.ya0_c00435{bottom:181.029000px;}
.y9f_c00435{bottom:181.989000px;}
.y9e_c00435{bottom:194.182500px;}
.y9d_c00435{bottom:194.496000px;}
.y9c_c00435{bottom:196.242000px;}
.y9b_c00435{bottom:197.889000px;}
.y9a_c00435{bottom:198.445500px;}
.y99_c00435{bottom:198.931500px;}
.y98_c00435{bottom:200.350500px;}
.y97_c00435{bottom:212.359500px;}
.y96_c00435{bottom:213.339000px;}
.y95_c00435{bottom:213.978000px;}
.y94_c00435{bottom:214.494000px;}
.y93_c00435{bottom:214.975500px;}
.y92_c00435{bottom:216.027000px;}
.y91_c00435{bottom:217.087500px;}
.y90_c00435{bottom:227.983500px;}
.y8f_c00435{bottom:229.314000px;}
.y8e_c00435{bottom:229.729500px;}
.y8d_c00435{bottom:231.363000px;}
.y8c_c00435{bottom:231.610500px;}
.y8b_c00435{bottom:233.020500px;}
.y8a_c00435{bottom:233.590500px;}
.y89_c00435{bottom:233.826000px;}
.y88_c00435{bottom:245.125500px;}
.y87_c00435{bottom:245.610000px;}
.y86_c00435{bottom:246.414000px;}
.y85_c00435{bottom:247.687500px;}
.y84_c00435{bottom:249.097500px;}
.y83_c00435{bottom:249.549000px;}
.y82_c00435{bottom:249.988500px;}
.y81_c00435{bottom:250.566000px;}
.y80_c00435{bottom:263.584500px;}
.y7f_c00435{bottom:264.339000px;}
.y7e_c00435{bottom:264.732000px;}
.y7d_c00435{bottom:265.332000px;}
.y7c_c00435{bottom:265.647000px;}
.y7b_c00435{bottom:265.888500px;}
.y7a_c00435{bottom:266.472000px;}
.y79_c00435{bottom:267.301500px;}
.y78_c00435{bottom:279.486000px;}
.y77_c00435{bottom:279.951000px;}
.y76_c00435{bottom:280.194000px;}
.y75_c00435{bottom:281.094000px;}
.y74_c00435{bottom:281.769000px;}
.y73_c00435{bottom:283.242000px;}
.y72_c00435{bottom:283.660500px;}
.y71_c00435{bottom:283.917000px;}
.y70_c00435{bottom:284.313000px;}
.y6f_c00435{bottom:297.171000px;}
.y6e_c00435{bottom:298.098000px;}
.y6d_c00435{bottom:298.644000px;}
.y6c_c00435{bottom:299.304000px;}
.y6b_c00435{bottom:300.675000px;}
.y6a_c00435{bottom:301.591500px;}
.y69_c00435{bottom:314.356500px;}
.y68_c00435{bottom:314.956500px;}
.y67_c00435{bottom:315.462000px;}
.y66_c00435{bottom:316.558500px;}
.y65_c00435{bottom:317.836500px;}
.y64_c00435{bottom:318.060000px;}
.y63_c00435{bottom:332.295000px;}
.y62_c00435{bottom:332.905500px;}
.y61_c00435{bottom:333.213000px;}
.y60_c00435{bottom:333.699000px;}
.y5f_c00435{bottom:334.441500px;}
.y5e_c00435{bottom:335.220000px;}
.y5d_c00435{bottom:335.722500px;}
.y5c_c00435{bottom:336.151500px;}
.y5b_c00435{bottom:347.385000px;}
.y5a_c00435{bottom:348.747000px;}
.y59_c00435{bottom:351.237000px;}
.y58_c00435{bottom:352.651500px;}
.y57_c00435{bottom:353.434500px;}
.y56_c00435{bottom:364.855500px;}
.y55_c00435{bottom:365.728500px;}
.y54_c00435{bottom:367.231500px;}
.y53_c00435{bottom:367.485000px;}
.y52_c00435{bottom:368.988000px;}
.y51_c00435{bottom:370.446000px;}
.y50_c00435{bottom:384.153000px;}
.y4f_c00435{bottom:384.568500px;}
.y4e_c00435{bottom:385.237500px;}
.y4d_c00435{bottom:385.569000px;}
.y4c_c00435{bottom:386.140500px;}
.y4b_c00435{bottom:386.434500px;}
.y4a_c00435{bottom:386.925000px;}
.y49_c00435{bottom:387.183000px;}
.y48_c00435{bottom:400.093500px;}
.y47_c00435{bottom:415.483500px;}
.y46_c00435{bottom:416.926500px;}
.y45_c00435{bottom:417.358500px;}
.y44_c00435{bottom:418.845000px;}
.y43_c00435{bottom:420.384000px;}
.y42_c00435{bottom:420.786000px;}
.y41_c00435{bottom:421.476000px;}
.y40_c00435{bottom:431.245500px;}
.y3f_c00435{bottom:432.142500px;}
.y3e_c00435{bottom:432.583500px;}
.y3d_c00435{bottom:433.224000px;}
.y3c_c00435{bottom:433.686000px;}
.y3b_c00435{bottom:434.701500px;}
.y3a_c00435{bottom:435.013500px;}
.y39_c00435{bottom:436.596000px;}
.y38_c00435{bottom:450.259500px;}
.y37_c00435{bottom:450.538500px;}
.y36_c00435{bottom:451.117500px;}
.y35_c00435{bottom:452.461500px;}
.y34_c00435{bottom:453.274500px;}
.y33_c00435{bottom:453.618000px;}
.y32_c00435{bottom:454.684500px;}
.y31_c00435{bottom:466.633500px;}
.y30_c00435{bottom:467.359500px;}
.y2f_c00435{bottom:468.315000px;}
.y2e_c00435{bottom:469.236000px;}
.y2d_c00435{bottom:469.729500px;}
.y2c_c00435{bottom:471.006000px;}
.y2b_c00435{bottom:472.236000px;}
.y2a_c00435{bottom:482.982000px;}
.y29_c00435{bottom:483.436500px;}
.y28_c00435{bottom:483.763500px;}
.y27_c00435{bottom:484.833000px;}
.y26_c00435{bottom:485.653500px;}
.y25_c00435{bottom:488.095500px;}
.y24_c00435{bottom:488.505000px;}
.y23_c00435{bottom:488.974500px;}
.y22_c00435{bottom:499.942500px;}
.y21_c00435{bottom:500.892000px;}
.y20_c00435{bottom:501.243000px;}
.y1f_c00435{bottom:502.738500px;}
.y1e_c00435{bottom:503.976000px;}
.y1d_c00435{bottom:504.312000px;}
.y1c_c00435{bottom:505.018500px;}
.y1b_c00435{bottom:505.174500px;}
.y1a_c00435{bottom:518.167500px;}
.y19_c00435{bottom:519.193500px;}
.y18_c00435{bottom:519.516000px;}
.y17_c00435{bottom:519.874500px;}
.y16_c00435{bottom:521.224500px;}
.y15_c00435{bottom:521.470500px;}
.y14_c00435{bottom:522.612000px;}
.y13_c00435{bottom:522.994500px;}
.y12_c00435{bottom:535.111500px;}
.y11_c00435{bottom:536.217000px;}
.y10_c00435{bottom:536.751000px;}
.yf_c00435{bottom:537.480000px;}
.ye_c00435{bottom:537.843000px;}
.yd_c00435{bottom:539.010000px;}
.yc_c00435{bottom:540.003000px;}
.yb_c00435{bottom:550.878000px;}
.ya_c00435{bottom:551.292000px;}
.y9_c00435{bottom:552.487500px;}
.y8_c00435{bottom:552.834000px;}
.y7_c00435{bottom:553.380000px;}
.y6_c00435{bottom:554.004000px;}
.y5_c00435{bottom:554.467500px;}
.y4_c00435{bottom:555.199500px;}
.y3_c00435{bottom:556.008000px;}
.y2_c00435{bottom:556.746000px;}
.y1_c00435{bottom:570.372000px;}
.ha_c00435{height:49.350000px;}
.hd_c00435{height:57.750000px;}
.he_c00435{height:59.850000px;}
.h9_c00435{height:61.950000px;}
.h8_c00435{height:63.000000px;}
.h7_c00435{height:64.050000px;}
.h11_c00435{height:65.100000px;}
.h3_c00435{height:66.150000px;}
.h10_c00435{height:67.200000px;}
.h1_c00435{height:68.250000px;}
.h5_c00435{height:69.300000px;}
.h4_c00435{height:70.350000px;}
.hc_c00435{height:71.400000px;}
.h6_c00435{height:72.450000px;}
.hb_c00435{height:73.500000px;}
.h2_c00435{height:74.550000px;}
.hf_c00435{height:76.650000px;}
.h0_c00435{height:608.250000px;}
.w0_c00435{width:359.100000px;}
.w1_c00435{width:359.250000px;}
.x0_c00435{left:0.000000px;}
.x60_c00435{left:36.726000px;}
.x7a_c00435{left:39.550500px;}
.x78_c00435{left:40.840500px;}
.x70_c00435{left:42.127500px;}
.x63_c00435{left:43.845000px;}
.x5d_c00435{left:44.892000px;}
.x4d_c00435{left:46.003500px;}
.x44_c00435{left:47.271000px;}
.x32_c00435{left:48.391500px;}
.x18_c00435{left:49.722000px;}
.x2_c00435{left:50.775000px;}
.x64_c00435{left:54.532500px;}
.x19_c00435{left:57.516000px;}
.x4e_c00435{left:61.923000px;}
.x74_c00435{left:63.460500px;}
.x7e_c00435{left:64.624500px;}
.x61_c00435{left:65.637000px;}
.x56_c00435{left:67.098000px;}
.x11_c00435{left:69.417000px;}
.x3e_c00435{left:71.674500px;}
.x4a_c00435{left:75.414000px;}
.x79_c00435{left:77.829000px;}
.x33_c00435{left:79.726500px;}
.x57_c00435{left:81.310500px;}
.x3_c00435{left:85.927500px;}
.x1f_c00435{left:87.724500px;}
.x69_c00435{left:89.091000px;}
.x7b_c00435{left:90.574500px;}
.x1a_c00435{left:92.850000px;}
.x52_c00435{left:94.273500px;}
.x5e_c00435{left:96.736500px;}
.x34_c00435{left:98.017500px;}
.x6c_c00435{left:102.028500px;}
.xc_c00435{left:103.167000px;}
.x58_c00435{left:104.551500px;}
.x85_c00435{left:106.039500px;}
.x24_c00435{left:108.031500px;}
.x1b_c00435{left:109.648500px;}
.x29_c00435{left:112.464000px;}
.x38_c00435{left:115.020000px;}
.x3f_c00435{left:116.278500px;}
.x45_c00435{left:120.153000px;}
.x6d_c00435{left:122.274000px;}
.x4_c00435{left:124.452000px;}
.x12_c00435{left:126.483000px;}
.x7f_c00435{left:129.145500px;}
.x2a_c00435{left:132.643500px;}
.x86_c00435{left:133.792500px;}
.x6a_c00435{left:134.833500px;}
.x39_c00435{left:136.350000px;}
.x13_c00435{left:138.817500px;}
.x71_c00435{left:140.386500px;}
.x82_c00435{left:141.906000px;}
.x40_c00435{left:142.984500px;}
.x65_c00435{left:144.564000px;}
.x2d_c00435{left:149.065500px;}
.x4f_c00435{left:153.199500px;}
.x66_c00435{left:155.803500px;}
.x48_c00435{left:157.138500px;}
.x5_c00435{left:159.295500px;}
.x3a_c00435{left:160.650000px;}
.xd_c00435{left:164.557500px;}
.x53_c00435{left:166.444500px;}
.x25_c00435{left:168.783000px;}
.x1c_c00435{left:171.496500px;}
.x84_c00435{left:173.185500px;}
.x6b_c00435{left:178.200000px;}
.x6_c00435{left:181.378500px;}
.x1_c00435{left:183.600000px;}
.x59_c00435{left:186.345000px;}
.x3b_c00435{left:187.380000px;}
.x72_c00435{left:190.608000px;}
.x26_c00435{left:192.274500px;}
.x20_c00435{left:193.872000px;}
.x41_c00435{left:194.874000px;}
.x54_c00435{left:201.184500px;}
.x2e_c00435{left:202.527000px;}
.x14_c00435{left:206.323500px;}
.x46_c00435{left:207.954000px;}
.x7_c00435{left:211.077000px;}
.x6e_c00435{left:214.098000px;}
.x3c_c00435{left:215.730000px;}
.x75_c00435{left:219.633000px;}
.x80_c00435{left:220.699500px;}
.xe_c00435{left:221.991000px;}
.x15_c00435{left:224.233500px;}
.x2f_c00435{left:226.833000px;}
.x7c_c00435{left:228.298500px;}
.x21_c00435{left:229.567500px;}
.x50_c00435{left:231.534000px;}
.x76_c00435{left:233.112000px;}
.x35_c00435{left:235.512000px;}
.x8_c00435{left:237.067500px;}
.x16_c00435{left:240.336000px;}
.x87_c00435{left:241.513500px;}
.x4b_c00435{left:242.628000px;}
.x62_c00435{left:244.381500px;}
.x1d_c00435{left:246.267000px;}
.x67_c00435{left:248.938500px;}
.xf_c00435{left:250.086000px;}
.x9_c00435{left:253.536000px;}
.x36_c00435{left:255.171000px;}
.x2b_c00435{left:259.552500px;}
.x30_c00435{left:260.575500px;}
.x1e_c00435{left:263.815500px;}
.x3d_c00435{left:265.140000px;}
.x51_c00435{left:267.676500px;}
.x83_c00435{left:271.416000px;}
.x5a_c00435{left:273.918000px;}
.x22_c00435{left:276.051000px;}
.x5f_c00435{left:277.320000px;}
.x55_c00435{left:278.667000px;}
.x27_c00435{left:281.640000px;}
.x31_c00435{left:283.822500px;}
.x42_c00435{left:285.829500px;}
.x5b_c00435{left:287.413500px;}
.x23_c00435{left:290.241000px;}
.x17_c00435{left:291.631500px;}
.x2c_c00435{left:293.568000px;}
.x73_c00435{left:295.750500px;}
.x6f_c00435{left:299.908500px;}
.x4c_c00435{left:303.828000px;}
.x10_c00435{left:308.272500px;}
.x68_c00435{left:309.400500px;}
.xa_c00435{left:310.480500px;}
.x77_c00435{left:312.117000px;}
.x5c_c00435{left:313.248000px;}
.x28_c00435{left:316.195500px;}
.x37_c00435{left:320.755500px;}
.x43_c00435{left:323.601000px;}
.x81_c00435{left:325.350000px;}
.x47_c00435{left:326.706000px;}
.xb_c00435{left:330.199500px;}
.x7d_c00435{left:341.580000px;}
.x49_c00435{left:349.722000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
._0_c00435{width:4.145665pt;}
.fs9_c00435{font-size:43.866667pt;}
.fsc_c00435{font-size:51.333333pt;}
.fsd_c00435{font-size:53.200000pt;}
.fs8_c00435{font-size:55.066667pt;}
.fs7_c00435{font-size:56.000000pt;}
.fs6_c00435{font-size:56.933333pt;}
.fs10_c00435{font-size:57.866667pt;}
.fs2_c00435{font-size:58.800000pt;}
.fsf_c00435{font-size:59.733333pt;}
.fs0_c00435{font-size:60.666667pt;}
.fs4_c00435{font-size:61.600000pt;}
.fs3_c00435{font-size:62.533333pt;}
.fsb_c00435{font-size:63.466667pt;}
.fs5_c00435{font-size:64.400000pt;}
.fsa_c00435{font-size:65.333333pt;}
.fs1_c00435{font-size:66.266667pt;}
.fse_c00435{font-size:68.133333pt;}
.y0_c00435{bottom:0.000000pt;}
.ye3_c00435{bottom:22.762667pt;}
.ye2_c00435{bottom:23.430667pt;}
.ye1_c00435{bottom:24.145333pt;}
.ye0_c00435{bottom:24.484000pt;}
.ydf_c00435{bottom:24.756000pt;}
.yde_c00435{bottom:24.944000pt;}
.ydd_c00435{bottom:25.444000pt;}
.ydc_c00435{bottom:37.164000pt;}
.ydb_c00435{bottom:37.288000pt;}
.yda_c00435{bottom:37.625333pt;}
.yd9_c00435{bottom:37.866667pt;}
.yd8_c00435{bottom:38.636000pt;}
.yd7_c00435{bottom:38.996000pt;}
.yd6_c00435{bottom:39.289333pt;}
.yd5_c00435{bottom:39.892000pt;}
.yd4_c00435{bottom:40.085333pt;}
.yd3_c00435{bottom:52.536000pt;}
.yd2_c00435{bottom:53.533333pt;}
.yd1_c00435{bottom:54.148000pt;}
.yd0_c00435{bottom:54.364000pt;}
.ycf_c00435{bottom:55.445333pt;}
.yce_c00435{bottom:69.452000pt;}
.ycd_c00435{bottom:82.638667pt;}
.ycc_c00435{bottom:83.209333pt;}
.ycb_c00435{bottom:83.501333pt;}
.yca_c00435{bottom:83.880000pt;}
.yc9_c00435{bottom:84.388000pt;}
.yc8_c00435{bottom:84.641333pt;}
.yc7_c00435{bottom:85.172000pt;}
.yc6_c00435{bottom:85.444000pt;}
.yc5_c00435{bottom:97.130667pt;}
.yc4_c00435{bottom:97.916000pt;}
.yc3_c00435{bottom:98.126667pt;}
.yc2_c00435{bottom:98.237333pt;}
.yc1_c00435{bottom:98.918667pt;}
.yc0_c00435{bottom:99.584000pt;}
.ybf_c00435{bottom:100.082667pt;}
.ybe_c00435{bottom:111.801333pt;}
.ybd_c00435{bottom:112.610667pt;}
.ybc_c00435{bottom:113.532000pt;}
.ybb_c00435{bottom:114.681333pt;}
.yba_c00435{bottom:114.940000pt;}
.yb9_c00435{bottom:115.444000pt;}
.yb8_c00435{bottom:127.228000pt;}
.yb7_c00435{bottom:128.368000pt;}
.yb6_c00435{bottom:128.656000pt;}
.yb5_c00435{bottom:129.028000pt;}
.yb4_c00435{bottom:130.138667pt;}
.yb3_c00435{bottom:130.460000pt;}
.yb2_c00435{bottom:131.044000pt;}
.yb1_c00435{bottom:141.592000pt;}
.yb0_c00435{bottom:142.926667pt;}
.yaf_c00435{bottom:143.154667pt;}
.yae_c00435{bottom:144.073333pt;}
.yad_c00435{bottom:144.461333pt;}
.yac_c00435{bottom:144.785333pt;}
.yab_c00435{bottom:145.793333pt;}
.yaa_c00435{bottom:146.166667pt;}
.ya9_c00435{bottom:156.578667pt;}
.ya8_c00435{bottom:157.033333pt;}
.ya7_c00435{bottom:157.260000pt;}
.ya6_c00435{bottom:158.234667pt;}
.ya5_c00435{bottom:158.628000pt;}
.ya4_c00435{bottom:158.996000pt;}
.ya3_c00435{bottom:159.630667pt;}
.ya2_c00435{bottom:159.933333pt;}
.ya1_c00435{bottom:160.445333pt;}
.ya0_c00435{bottom:160.914667pt;}
.y9f_c00435{bottom:161.768000pt;}
.y9e_c00435{bottom:172.606667pt;}
.y9d_c00435{bottom:172.885333pt;}
.y9c_c00435{bottom:174.437333pt;}
.y9b_c00435{bottom:175.901333pt;}
.y9a_c00435{bottom:176.396000pt;}
.y99_c00435{bottom:176.828000pt;}
.y98_c00435{bottom:178.089333pt;}
.y97_c00435{bottom:188.764000pt;}
.y96_c00435{bottom:189.634667pt;}
.y95_c00435{bottom:190.202667pt;}
.y94_c00435{bottom:190.661333pt;}
.y93_c00435{bottom:191.089333pt;}
.y92_c00435{bottom:192.024000pt;}
.y91_c00435{bottom:192.966667pt;}
.y90_c00435{bottom:202.652000pt;}
.y8f_c00435{bottom:203.834667pt;}
.y8e_c00435{bottom:204.204000pt;}
.y8d_c00435{bottom:205.656000pt;}
.y8c_c00435{bottom:205.876000pt;}
.y8b_c00435{bottom:207.129333pt;}
.y8a_c00435{bottom:207.636000pt;}
.y89_c00435{bottom:207.845333pt;}
.y88_c00435{bottom:217.889333pt;}
.y87_c00435{bottom:218.320000pt;}
.y86_c00435{bottom:219.034667pt;}
.y85_c00435{bottom:220.166667pt;}
.y84_c00435{bottom:221.420000pt;}
.y83_c00435{bottom:221.821333pt;}
.y82_c00435{bottom:222.212000pt;}
.y81_c00435{bottom:222.725333pt;}
.y80_c00435{bottom:234.297333pt;}
.y7f_c00435{bottom:234.968000pt;}
.y7e_c00435{bottom:235.317333pt;}
.y7d_c00435{bottom:235.850667pt;}
.y7c_c00435{bottom:236.130667pt;}
.y7b_c00435{bottom:236.345333pt;}
.y7a_c00435{bottom:236.864000pt;}
.y79_c00435{bottom:237.601333pt;}
.y78_c00435{bottom:248.432000pt;}
.y77_c00435{bottom:248.845333pt;}
.y76_c00435{bottom:249.061333pt;}
.y75_c00435{bottom:249.861333pt;}
.y74_c00435{bottom:250.461333pt;}
.y73_c00435{bottom:251.770667pt;}
.y72_c00435{bottom:252.142667pt;}
.y71_c00435{bottom:252.370667pt;}
.y70_c00435{bottom:252.722667pt;}
.y6f_c00435{bottom:264.152000pt;}
.y6e_c00435{bottom:264.976000pt;}
.y6d_c00435{bottom:265.461333pt;}
.y6c_c00435{bottom:266.048000pt;}
.y6b_c00435{bottom:267.266667pt;}
.y6a_c00435{bottom:268.081333pt;}
.y69_c00435{bottom:279.428000pt;}
.y68_c00435{bottom:279.961333pt;}
.y67_c00435{bottom:280.410667pt;}
.y66_c00435{bottom:281.385333pt;}
.y65_c00435{bottom:282.521333pt;}
.y64_c00435{bottom:282.720000pt;}
.y63_c00435{bottom:295.373333pt;}
.y62_c00435{bottom:295.916000pt;}
.y61_c00435{bottom:296.189333pt;}
.y60_c00435{bottom:296.621333pt;}
.y5f_c00435{bottom:297.281333pt;}
.y5e_c00435{bottom:297.973333pt;}
.y5d_c00435{bottom:298.420000pt;}
.y5c_c00435{bottom:298.801333pt;}
.y5b_c00435{bottom:308.786667pt;}
.y5a_c00435{bottom:309.997333pt;}
.y59_c00435{bottom:312.210667pt;}
.y58_c00435{bottom:313.468000pt;}
.y57_c00435{bottom:314.164000pt;}
.y56_c00435{bottom:324.316000pt;}
.y55_c00435{bottom:325.092000pt;}
.y54_c00435{bottom:326.428000pt;}
.y53_c00435{bottom:326.653333pt;}
.y52_c00435{bottom:327.989333pt;}
.y51_c00435{bottom:329.285333pt;}
.y50_c00435{bottom:341.469333pt;}
.y4f_c00435{bottom:341.838667pt;}
.y4e_c00435{bottom:342.433333pt;}
.y4d_c00435{bottom:342.728000pt;}
.y4c_c00435{bottom:343.236000pt;}
.y4b_c00435{bottom:343.497333pt;}
.y4a_c00435{bottom:343.933333pt;}
.y49_c00435{bottom:344.162667pt;}
.y48_c00435{bottom:355.638667pt;}
.y47_c00435{bottom:369.318667pt;}
.y46_c00435{bottom:370.601333pt;}
.y45_c00435{bottom:370.985333pt;}
.y44_c00435{bottom:372.306667pt;}
.y43_c00435{bottom:373.674667pt;}
.y42_c00435{bottom:374.032000pt;}
.y41_c00435{bottom:374.645333pt;}
.y40_c00435{bottom:383.329333pt;}
.y3f_c00435{bottom:384.126667pt;}
.y3e_c00435{bottom:384.518667pt;}
.y3d_c00435{bottom:385.088000pt;}
.y3c_c00435{bottom:385.498667pt;}
.y3b_c00435{bottom:386.401333pt;}
.y3a_c00435{bottom:386.678667pt;}
.y39_c00435{bottom:388.085333pt;}
.y38_c00435{bottom:400.230667pt;}
.y37_c00435{bottom:400.478667pt;}
.y36_c00435{bottom:400.993333pt;}
.y35_c00435{bottom:402.188000pt;}
.y34_c00435{bottom:402.910667pt;}
.y33_c00435{bottom:403.216000pt;}
.y32_c00435{bottom:404.164000pt;}
.y31_c00435{bottom:414.785333pt;}
.y30_c00435{bottom:415.430667pt;}
.y2f_c00435{bottom:416.280000pt;}
.y2e_c00435{bottom:417.098667pt;}
.y2d_c00435{bottom:417.537333pt;}
.y2c_c00435{bottom:418.672000pt;}
.y2b_c00435{bottom:419.765333pt;}
.y2a_c00435{bottom:429.317333pt;}
.y29_c00435{bottom:429.721333pt;}
.y28_c00435{bottom:430.012000pt;}
.y27_c00435{bottom:430.962667pt;}
.y26_c00435{bottom:431.692000pt;}
.y25_c00435{bottom:433.862667pt;}
.y24_c00435{bottom:434.226667pt;}
.y23_c00435{bottom:434.644000pt;}
.y22_c00435{bottom:444.393333pt;}
.y21_c00435{bottom:445.237333pt;}
.y20_c00435{bottom:445.549333pt;}
.y1f_c00435{bottom:446.878667pt;}
.y1e_c00435{bottom:447.978667pt;}
.y1d_c00435{bottom:448.277333pt;}
.y1c_c00435{bottom:448.905333pt;}
.y1b_c00435{bottom:449.044000pt;}
.y1a_c00435{bottom:460.593333pt;}
.y19_c00435{bottom:461.505333pt;}
.y18_c00435{bottom:461.792000pt;}
.y17_c00435{bottom:462.110667pt;}
.y16_c00435{bottom:463.310667pt;}
.y15_c00435{bottom:463.529333pt;}
.y14_c00435{bottom:464.544000pt;}
.y13_c00435{bottom:464.884000pt;}
.y12_c00435{bottom:475.654667pt;}
.y11_c00435{bottom:476.637333pt;}
.y10_c00435{bottom:477.112000pt;}
.yf_c00435{bottom:477.760000pt;}
.ye_c00435{bottom:478.082667pt;}
.yd_c00435{bottom:479.120000pt;}
.yc_c00435{bottom:480.002667pt;}
.yb_c00435{bottom:489.669333pt;}
.ya_c00435{bottom:490.037333pt;}
.y9_c00435{bottom:491.100000pt;}
.y8_c00435{bottom:491.408000pt;}
.y7_c00435{bottom:491.893333pt;}
.y6_c00435{bottom:492.448000pt;}
.y5_c00435{bottom:492.860000pt;}
.y4_c00435{bottom:493.510667pt;}
.y3_c00435{bottom:494.229333pt;}
.y2_c00435{bottom:494.885333pt;}
.y1_c00435{bottom:506.997333pt;}
.ha_c00435{height:43.866667pt;}
.hd_c00435{height:51.333333pt;}
.he_c00435{height:53.200000pt;}
.h9_c00435{height:55.066667pt;}
.h8_c00435{height:56.000000pt;}
.h7_c00435{height:56.933333pt;}
.h11_c00435{height:57.866667pt;}
.h3_c00435{height:58.800000pt;}
.h10_c00435{height:59.733333pt;}
.h1_c00435{height:60.666667pt;}
.h5_c00435{height:61.600000pt;}
.h4_c00435{height:62.533333pt;}
.hc_c00435{height:63.466667pt;}
.h6_c00435{height:64.400000pt;}
.hb_c00435{height:65.333333pt;}
.h2_c00435{height:66.266667pt;}
.hf_c00435{height:68.133333pt;}
.h0_c00435{height:540.666667pt;}
.w0_c00435{width:319.200000pt;}
.w1_c00435{width:319.333333pt;}
.x0_c00435{left:0.000000pt;}
.x60_c00435{left:32.645333pt;}
.x7a_c00435{left:35.156000pt;}
.x78_c00435{left:36.302667pt;}
.x70_c00435{left:37.446667pt;}
.x63_c00435{left:38.973333pt;}
.x5d_c00435{left:39.904000pt;}
.x4d_c00435{left:40.892000pt;}
.x44_c00435{left:42.018667pt;}
.x32_c00435{left:43.014667pt;}
.x18_c00435{left:44.197333pt;}
.x2_c00435{left:45.133333pt;}
.x64_c00435{left:48.473333pt;}
.x19_c00435{left:51.125333pt;}
.x4e_c00435{left:55.042667pt;}
.x74_c00435{left:56.409333pt;}
.x7e_c00435{left:57.444000pt;}
.x61_c00435{left:58.344000pt;}
.x56_c00435{left:59.642667pt;}
.x11_c00435{left:61.704000pt;}
.x3e_c00435{left:63.710667pt;}
.x4a_c00435{left:67.034667pt;}
.x79_c00435{left:69.181333pt;}
.x33_c00435{left:70.868000pt;}
.x57_c00435{left:72.276000pt;}
.x3_c00435{left:76.380000pt;}
.x1f_c00435{left:77.977333pt;}
.x69_c00435{left:79.192000pt;}
.x7b_c00435{left:80.510667pt;}
.x1a_c00435{left:82.533333pt;}
.x52_c00435{left:83.798667pt;}
.x5e_c00435{left:85.988000pt;}
.x34_c00435{left:87.126667pt;}
.x6c_c00435{left:90.692000pt;}
.xc_c00435{left:91.704000pt;}
.x58_c00435{left:92.934667pt;}
.x85_c00435{left:94.257333pt;}
.x24_c00435{left:96.028000pt;}
.x1b_c00435{left:97.465333pt;}
.x29_c00435{left:99.968000pt;}
.x38_c00435{left:102.240000pt;}
.x3f_c00435{left:103.358667pt;}
.x45_c00435{left:106.802667pt;}
.x6d_c00435{left:108.688000pt;}
.x4_c00435{left:110.624000pt;}
.x12_c00435{left:112.429333pt;}
.x7f_c00435{left:114.796000pt;}
.x2a_c00435{left:117.905333pt;}
.x86_c00435{left:118.926667pt;}
.x6a_c00435{left:119.852000pt;}
.x39_c00435{left:121.200000pt;}
.x13_c00435{left:123.393333pt;}
.x71_c00435{left:124.788000pt;}
.x82_c00435{left:126.138667pt;}
.x40_c00435{left:127.097333pt;}
.x65_c00435{left:128.501333pt;}
.x2d_c00435{left:132.502667pt;}
.x4f_c00435{left:136.177333pt;}
.x66_c00435{left:138.492000pt;}
.x48_c00435{left:139.678667pt;}
.x5_c00435{left:141.596000pt;}
.x3a_c00435{left:142.800000pt;}
.xd_c00435{left:146.273333pt;}
.x53_c00435{left:147.950667pt;}
.x25_c00435{left:150.029333pt;}
.x1c_c00435{left:152.441333pt;}
.x84_c00435{left:153.942667pt;}
.x6b_c00435{left:158.400000pt;}
.x6_c00435{left:161.225333pt;}
.x1_c00435{left:163.200000pt;}
.x59_c00435{left:165.640000pt;}
.x3b_c00435{left:166.560000pt;}
.x72_c00435{left:169.429333pt;}
.x26_c00435{left:170.910667pt;}
.x20_c00435{left:172.330667pt;}
.x41_c00435{left:173.221333pt;}
.x54_c00435{left:178.830667pt;}
.x2e_c00435{left:180.024000pt;}
.x14_c00435{left:183.398667pt;}
.x46_c00435{left:184.848000pt;}
.x7_c00435{left:187.624000pt;}
.x6e_c00435{left:190.309333pt;}
.x3c_c00435{left:191.760000pt;}
.x75_c00435{left:195.229333pt;}
.x80_c00435{left:196.177333pt;}
.xe_c00435{left:197.325333pt;}
.x15_c00435{left:199.318667pt;}
.x2f_c00435{left:201.629333pt;}
.x7c_c00435{left:202.932000pt;}
.x21_c00435{left:204.060000pt;}
.x50_c00435{left:205.808000pt;}
.x76_c00435{left:207.210667pt;}
.x35_c00435{left:209.344000pt;}
.x8_c00435{left:210.726667pt;}
.x16_c00435{left:213.632000pt;}
.x87_c00435{left:214.678667pt;}
.x4b_c00435{left:215.669333pt;}
.x62_c00435{left:217.228000pt;}
.x1d_c00435{left:218.904000pt;}
.x67_c00435{left:221.278667pt;}
.xf_c00435{left:222.298667pt;}
.x9_c00435{left:225.365333pt;}
.x36_c00435{left:226.818667pt;}
.x2b_c00435{left:230.713333pt;}
.x30_c00435{left:231.622667pt;}
.x1e_c00435{left:234.502667pt;}
.x3d_c00435{left:235.680000pt;}
.x51_c00435{left:237.934667pt;}
.x83_c00435{left:241.258667pt;}
.x5a_c00435{left:243.482667pt;}
.x22_c00435{left:245.378667pt;}
.x5f_c00435{left:246.506667pt;}
.x55_c00435{left:247.704000pt;}
.x27_c00435{left:250.346667pt;}
.x31_c00435{left:252.286667pt;}
.x42_c00435{left:254.070667pt;}
.x5b_c00435{left:255.478667pt;}
.x23_c00435{left:257.992000pt;}
.x17_c00435{left:259.228000pt;}
.x2c_c00435{left:260.949333pt;}
.x73_c00435{left:262.889333pt;}
.x6f_c00435{left:266.585333pt;}
.x4c_c00435{left:270.069333pt;}
.x10_c00435{left:274.020000pt;}
.x68_c00435{left:275.022667pt;}
.xa_c00435{left:275.982667pt;}
.x77_c00435{left:277.437333pt;}
.x5c_c00435{left:278.442667pt;}
.x28_c00435{left:281.062667pt;}
.x37_c00435{left:285.116000pt;}
.x43_c00435{left:287.645333pt;}
.x81_c00435{left:289.200000pt;}
.x47_c00435{left:290.405333pt;}
.xb_c00435{left:293.510667pt;}
.x7d_c00435{left:303.626667pt;}
.x49_c00435{left:310.864000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00436 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00436 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00436 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00436 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00436.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf2_c00436{transform:matrix(0.029395,0.000529,-0.004499,0.249960,0,0);-ms-transform:matrix(0.029395,0.000529,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.029395,0.000529,-0.004499,0.249960,0,0);}
.ma9_c00436{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.141970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141970,0.000000,0.000000,0.250000,0,0);}
.m22_c00436{transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.mbb_c00436{transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149015,0.000000,0.000000,0.250000,0,0);}
.m2b_c00436{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m59_c00436{transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153335,0.000000,0.000000,0.250000,0,0);}
.mc9_c00436{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m28_c00436{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00436{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.mc5_c00436{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00436{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.md2_c00436{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.me0_c00436{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.md8_c00436{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.mb5_c00436{transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160510,0.000000,0.000000,0.250000,0,0);}
.m5b_c00436{transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161670,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m51_c00436{transform:matrix(0.162460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162460,0.000000,0.000000,0.250000,0,0);}
.m9c_c00436{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m25_c00436{transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163935,0.000000,0.000000,0.250000,0,0);}
.mb8_c00436{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.mcb_c00436{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.mcd_c00436{transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);}
.md5_c00436{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166770,0.000000,0.000000,0.250000,0,0);}
.m54_c00436{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.ma5_c00436{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m61_c00436{transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);}
.m20_c00436{transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168140,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m4d_c00436{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.mde_c00436{transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);}
.mf1_c00436{transform:matrix(0.169388,0.003049,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169388,0.003049,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169388,0.003049,-0.004499,0.249960,0,0);}
.m88_c00436{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m98_c00436{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.mbc_c00436{transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170715,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m9e_c00436{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.m96_c00436{transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171615,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171705,0.000000,0.000000,0.250000,0,0);}
.mdf_c00436{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m10_c00436{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m3a_c00436{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.me4_c00436{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m89_c00436{transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173160,0.000000,0.000000,0.250000,0,0);}
.m41_c00436{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.mc7_c00436{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.md9_c00436{transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173310,0.000000,0.000000,0.250000,0,0);}
.m8a_c00436{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);}
.m3d_c00436{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m79_c00436{transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174915,0.000000,0.000000,0.250000,0,0);}
.mc8_c00436{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.ma0_c00436{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m9d_c00436{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.m3c_c00436{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m2a_c00436{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.me9_c00436{transform:matrix(0.175767,0.003164,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175767,0.003164,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175767,0.003164,-0.004499,0.249960,0,0);}
.m55_c00436{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.med_c00436{transform:matrix(0.176051,0.003169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176051,0.003169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176051,0.003169,-0.004499,0.249960,0,0);}
.m1e_c00436{transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);}
.m6f_c00436{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.m83_c00436{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);}
.mad_c00436{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00436{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.m2e_c00436{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.m31_c00436{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00436{transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00436{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.m9b_c00436{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.ma2_c00436{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m8e_c00436{transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181385,0.000000,0.000000,0.250000,0,0);}
.m9a_c00436{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m8c_c00436{transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182245,0.000000,0.000000,0.250000,0,0);}
.m4c_c00436{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);}
.m2c_c00436{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m81_c00436{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.md7_c00436{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mab_c00436{transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183690,0.000000,0.000000,0.250000,0,0);}
.m6b_c00436{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.mc4_c00436{transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00436{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m43_c00436{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00436{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.me3_c00436{transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);}
.m56_c00436{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);}
.mc1_c00436{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00436{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.m7d_c00436{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m58_c00436{transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);}
.md0_c00436{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m57_c00436{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.mba_c00436{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.mb6_c00436{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m46_c00436{transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187560,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.m29_c00436{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m5c_c00436{transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);}
.m8f_c00436{transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);}
.m5d_c00436{transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189185,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.me2_c00436{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);}
.m35_c00436{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m7f_c00436{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m71_c00436{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.m74_c00436{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.md4_c00436{transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.m49_c00436{transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);}
.mdc_c00436{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.191210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191210,0.000000,0.000000,0.250000,0,0);}
.m39_c00436{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191445,0.000000,0.000000,0.250000,0,0);}
.m4e_c00436{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m67_c00436{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m97_c00436{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.mc0_c00436{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m9f_c00436{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m76_c00436{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.me1_c00436{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m91_c00436{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m7a_c00436{transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193845,0.000000,0.000000,0.250000,0,0);}
.m38_c00436{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.ma3_c00436{transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194265,0.000000,0.000000,0.250000,0,0);}
.mda_c00436{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.maf_c00436{transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194910,0.000000,0.000000,0.250000,0,0);}
.m75_c00436{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.mdd_c00436{transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);}
.m85_c00436{transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195895,0.000000,0.000000,0.250000,0,0);}
.m26_c00436{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mb7_c00436{transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.mae_c00436{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.md6_c00436{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.mbd_c00436{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m99_c00436{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m87_c00436{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m44_c00436{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m60_c00436{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.me5_c00436{transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);}
.m5e_c00436{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);}
.m6e_c00436{transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);}
.me7_c00436{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m86_c00436{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m45_c00436{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00436{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m52_c00436{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00436{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m4f_c00436{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m70_c00436{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m62_c00436{transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203385,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203995,0.000000,0.000000,0.250000,0,0);}
.mdb_c00436{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m80_c00436{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.m94_c00436{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.m53_c00436{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.m33_c00436{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.mf3_c00436{transform:matrix(0.205092,0.003692,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205092,0.003692,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205092,0.003692,-0.004499,0.249960,0,0);}
.m19_c00436{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.mb0_c00436{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.mb4_c00436{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m23_c00436{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.mb2_c00436{transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207005,0.000000,0.000000,0.250000,0,0);}
.m24_c00436{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.md1_c00436{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.mca_c00436{transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);}
.meb_c00436{transform:matrix(0.208246,0.003748,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208246,0.003748,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208246,0.003748,-0.004499,0.249960,0,0);}
.m37_c00436{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208770,0.000000,0.000000,0.250000,0,0);}
.m8b_c00436{transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209035,0.000000,0.000000,0.250000,0,0);}
.m4b_c00436{transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);}
.ma7_c00436{transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);}
.mc3_c00436{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m8d_c00436{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.mc6_c00436{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);}
.m7b_c00436{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.mc2_c00436{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.mcf_c00436{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00436{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m66_c00436{transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00436{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00436{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.mf0_c00436{transform:matrix(0.216615,0.003899,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216615,0.003899,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216615,0.003899,-0.004499,0.249960,0,0);}
.m3_c00436{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m47_c00436{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.mea_c00436{transform:matrix(0.217720,0.003919,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217720,0.003919,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217720,0.003919,-0.004499,0.249960,0,0);}
.mac_c00436{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m68_c00436{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.mb9_c00436{transform:matrix(0.218545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218545,0.000000,0.000000,0.250000,0,0);}
.ma8_c00436{transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219055,0.000000,0.000000,0.250000,0,0);}
.m63_c00436{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m73_c00436{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m7c_c00436{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m5f_c00436{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.m65_c00436{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220665,0.000000,0.000000,0.250000,0,0);}
.mee_c00436{transform:matrix(0.222194,0.003999,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222194,0.003999,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222194,0.003999,-0.004499,0.249960,0,0);}
.m48_c00436{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m6d_c00436{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.me6_c00436{transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);}
.mce_c00436{transform:matrix(0.223710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223710,0.000000,0.000000,0.250000,0,0);}
.m82_c00436{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.maa_c00436{transform:matrix(0.223805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223805,0.000000,0.000000,0.250000,0,0);}
.m4a_c00436{transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226005,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);}
.m64_c00436{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.me8_c00436{transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);}
.m72_c00436{transform:matrix(0.228760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228760,0.000000,0.000000,0.250000,0,0);}
.m78_c00436{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m36_c00436{transform:matrix(0.231070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231070,0.000000,0.000000,0.250000,0,0);}
.mec_c00436{transform:matrix(0.231747,0.004171,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231747,0.004171,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231747,0.004171,-0.004499,0.249960,0,0);}
.mef_c00436{transform:matrix(0.231932,0.004175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231932,0.004175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231932,0.004175,-0.004499,0.249960,0,0);}
.m50_c00436{transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);}
.m93_c00436{transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236715,0.000000,0.000000,0.250000,0,0);}
.m84_c00436{transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);}
.m77_c00436{transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);}
.m6c_c00436{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m69_c00436{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m90_c00436{transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);}
.m95_c00436{transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.358680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358680,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:0.000000px;}
.fc0_c00436{color:transparent;}
.fs6_c00436{font-size:57.750000px;}
.fsc_c00436{font-size:57.759355px;}
.fs7_c00436{font-size:58.800000px;}
.fsd_c00436{font-size:58.809525px;}
.fs8_c00436{font-size:60.900000px;}
.fs9_c00436{font-size:61.950000px;}
.fs1_c00436{font-size:63.000000px;}
.fsa_c00436{font-size:64.050000px;}
.fs2_c00436{font-size:65.100000px;}
.fs3_c00436{font-size:66.150000px;}
.fs4_c00436{font-size:67.200000px;}
.fsb_c00436{font-size:69.300000px;}
.fs5_c00436{font-size:70.350000px;}
.fs0_c00436{font-size:79.800000px;}
.y0_c00436{bottom:0.000000px;}
.yc2_c00436{bottom:14.869467px;}
.yc1_c00436{bottom:15.732432px;}
.yc0_c00436{bottom:17.890953px;}
.ybf_c00436{bottom:18.630954px;}
.ybe_c00436{bottom:27.607599px;}
.ybd_c00436{bottom:28.644372px;}
.ybc_c00436{bottom:29.212020px;}
.ybb_c00436{bottom:30.519927px;}
.yba_c00436{bottom:31.292289px;}
.yb9_c00436{bottom:31.813011px;}
.yb8_c00436{bottom:32.134500px;}
.yb7_c00436{bottom:44.629500px;}
.yb6_c00436{bottom:45.150000px;}
.yb5_c00436{bottom:47.023500px;}
.yb4_c00436{bottom:48.687000px;}
.yb3_c00436{bottom:49.308000px;}
.yb2_c00436{bottom:51.039000px;}
.yb1_c00436{bottom:60.066000px;}
.yb0_c00436{bottom:61.071000px;}
.yaf_c00436{bottom:61.410000px;}
.yae_c00436{bottom:62.658000px;}
.yad_c00436{bottom:63.145500px;}
.yac_c00436{bottom:64.081500px;}
.yab_c00436{bottom:64.803000px;}
.yaa_c00436{bottom:78.664500px;}
.ya9_c00436{bottom:80.077500px;}
.ya8_c00436{bottom:80.992500px;}
.ya7_c00436{bottom:81.400500px;}
.ya6_c00436{bottom:82.149000px;}
.ya5_c00436{bottom:83.766000px;}
.ya4_c00436{bottom:84.165000px;}
.ya3_c00436{bottom:84.690000px;}
.ya2_c00436{bottom:85.597500px;}
.ya1_c00436{bottom:94.206000px;}
.ya0_c00436{bottom:96.096000px;}
.y9f_c00436{bottom:96.499500px;}
.y9e_c00436{bottom:96.972000px;}
.y9d_c00436{bottom:98.886000px;}
.y9c_c00436{bottom:100.717500px;}
.y9b_c00436{bottom:110.661000px;}
.y9a_c00436{bottom:111.147000px;}
.y99_c00436{bottom:111.705000px;}
.y98_c00436{bottom:112.762500px;}
.y97_c00436{bottom:113.685000px;}
.y96_c00436{bottom:115.528500px;}
.y95_c00436{bottom:116.010000px;}
.y94_c00436{bottom:116.569500px;}
.y93_c00436{bottom:117.192000px;}
.y92_c00436{bottom:128.617500px;}
.y91_c00436{bottom:128.878500px;}
.y90_c00436{bottom:129.880500px;}
.y8f_c00436{bottom:130.779000px;}
.y8e_c00436{bottom:131.154000px;}
.y8d_c00436{bottom:131.409000px;}
.y8c_c00436{bottom:132.052500px;}
.y8b_c00436{bottom:132.438000px;}
.y8a_c00436{bottom:133.120500px;}
.y89_c00436{bottom:144.748500px;}
.y88_c00436{bottom:145.368000px;}
.y87_c00436{bottom:146.268000px;}
.y86_c00436{bottom:146.575500px;}
.y85_c00436{bottom:146.866500px;}
.y84_c00436{bottom:147.774000px;}
.y83_c00436{bottom:148.021500px;}
.y82_c00436{bottom:148.216500px;}
.y81_c00436{bottom:148.779000px;}
.y80_c00436{bottom:162.469500px;}
.y7f_c00436{bottom:162.831000px;}
.y7e_c00436{bottom:163.236000px;}
.y7d_c00436{bottom:163.894500px;}
.y7c_c00436{bottom:164.715000px;}
.y7b_c00436{bottom:165.060000px;}
.y7a_c00436{bottom:165.835500px;}
.y79_c00436{bottom:166.809000px;}
.y78_c00436{bottom:167.095500px;}
.y77_c00436{bottom:167.407500px;}
.y76_c00436{bottom:179.485500px;}
.y75_c00436{bottom:179.644500px;}
.y74_c00436{bottom:180.739500px;}
.y73_c00436{bottom:181.197000px;}
.y72_c00436{bottom:181.612500px;}
.y71_c00436{bottom:183.025500px;}
.y70_c00436{bottom:183.376500px;}
.y6f_c00436{bottom:183.655500px;}
.y6e_c00436{bottom:184.149000px;}
.y6d_c00436{bottom:195.721500px;}
.y6c_c00436{bottom:196.978500px;}
.y6b_c00436{bottom:197.794500px;}
.y6a_c00436{bottom:198.210000px;}
.y69_c00436{bottom:198.670500px;}
.y68_c00436{bottom:200.016000px;}
.y67_c00436{bottom:200.326500px;}
.y66_c00436{bottom:201.430500px;}
.y65_c00436{bottom:212.175000px;}
.y64_c00436{bottom:212.718000px;}
.y63_c00436{bottom:213.234000px;}
.y62_c00436{bottom:215.016000px;}
.y61_c00436{bottom:216.519000px;}
.y60_c00436{bottom:218.170500px;}
.y5f_c00436{bottom:228.648000px;}
.y5e_c00436{bottom:230.592000px;}
.y5d_c00436{bottom:231.541500px;}
.y5c_c00436{bottom:232.399500px;}
.y5b_c00436{bottom:232.950000px;}
.y5a_c00436{bottom:234.919500px;}
.y59_c00436{bottom:235.452000px;}
.y58_c00436{bottom:246.907500px;}
.y57_c00436{bottom:248.370000px;}
.y56_c00436{bottom:250.054500px;}
.y55_c00436{bottom:250.411500px;}
.y54_c00436{bottom:250.842000px;}
.y53_c00436{bottom:252.457500px;}
.y52_c00436{bottom:266.236500px;}
.y51_c00436{bottom:267.172500px;}
.y50_c00436{bottom:267.501000px;}
.y4f_c00436{bottom:268.171500px;}
.y4e_c00436{bottom:268.407000px;}
.y4d_c00436{bottom:269.277000px;}
.y4c_c00436{bottom:270.273000px;}
.y4b_c00436{bottom:283.480500px;}
.y4a_c00436{bottom:283.768500px;}
.y49_c00436{bottom:284.073000px;}
.y48_c00436{bottom:284.757000px;}
.y47_c00436{bottom:285.721500px;}
.y46_c00436{bottom:285.988500px;}
.y45_c00436{bottom:286.185000px;}
.y44_c00436{bottom:287.283000px;}
.y43_c00436{bottom:298.231500px;}
.y42_c00436{bottom:299.350500px;}
.y41_c00436{bottom:299.725500px;}
.y40_c00436{bottom:300.838500px;}
.y3f_c00436{bottom:302.572500px;}
.y3e_c00436{bottom:303.486000px;}
.y3d_c00436{bottom:317.302500px;}
.y3c_c00436{bottom:317.724000px;}
.y3b_c00436{bottom:318.087000px;}
.y3a_c00436{bottom:319.116000px;}
.y39_c00436{bottom:319.509000px;}
.y38_c00436{bottom:320.736000px;}
.y37_c00436{bottom:321.034500px;}
.y36_c00436{bottom:335.214000px;}
.y35_c00436{bottom:349.570500px;}
.y34_c00436{bottom:349.902000px;}
.y33_c00436{bottom:350.416500px;}
.y32_c00436{bottom:350.571000px;}
.y31_c00436{bottom:351.103500px;}
.y30_c00436{bottom:351.619500px;}
.y2f_c00436{bottom:351.792000px;}
.y2e_c00436{bottom:352.362000px;}
.y2d_c00436{bottom:352.623000px;}
.y2c_c00436{bottom:366.604500px;}
.y2b_c00436{bottom:367.045500px;}
.y2a_c00436{bottom:367.506000px;}
.y29_c00436{bottom:367.966500px;}
.y28_c00436{bottom:368.277000px;}
.y27_c00436{bottom:369.061500px;}
.y26_c00436{bottom:369.217500px;}
.y25_c00436{bottom:369.636000px;}
.y24_c00436{bottom:383.869500px;}
.y23_c00436{bottom:399.552000px;}
.y22_c00436{bottom:400.470000px;}
.y21_c00436{bottom:400.885500px;}
.y20_c00436{bottom:401.706000px;}
.y1f_c00436{bottom:402.192000px;}
.y1e_c00436{bottom:402.520500px;}
.y1d_c00436{bottom:403.116000px;}
.y1c_c00436{bottom:415.753500px;}
.y1b_c00436{bottom:416.163000px;}
.y1a_c00436{bottom:416.412000px;}
.y19_c00436{bottom:417.438000px;}
.y18_c00436{bottom:417.645000px;}
.y17_c00436{bottom:418.234500px;}
.y16_c00436{bottom:418.824000px;}
.y15_c00436{bottom:419.046000px;}
.y14_c00436{bottom:431.910000px;}
.y13_c00436{bottom:432.999000px;}
.y12_c00436{bottom:433.282500px;}
.y11_c00436{bottom:433.443000px;}
.y10_c00436{bottom:434.257500px;}
.yf_c00436{bottom:434.557500px;}
.ye_c00436{bottom:436.054500px;}
.yd_c00436{bottom:449.406000px;}
.yc_c00436{bottom:450.091500px;}
.yb_c00436{bottom:450.751500px;}
.ya_c00436{bottom:451.021500px;}
.y9_c00436{bottom:451.579500px;}
.y8_c00436{bottom:451.983000px;}
.y7_c00436{bottom:468.034500px;}
.y6_c00436{bottom:484.032000px;}
.y5_c00436{bottom:501.466500px;}
.y4_c00436{bottom:518.253000px;}
.y3_c00436{bottom:535.756500px;}
.y2_c00436{bottom:552.492000px;}
.y1_c00436{bottom:567.277500px;}
.h7_c00436{height:57.750000px;}
.hd_c00436{height:57.759355px;}
.h8_c00436{height:58.800000px;}
.he_c00436{height:58.809525px;}
.h9_c00436{height:60.900000px;}
.ha_c00436{height:61.950000px;}
.h2_c00436{height:63.000000px;}
.hb_c00436{height:64.050000px;}
.h3_c00436{height:65.100000px;}
.h4_c00436{height:66.150000px;}
.h5_c00436{height:67.200000px;}
.hc_c00436{height:69.300000px;}
.h6_c00436{height:70.350000px;}
.h1_c00436{height:79.800000px;}
.h0_c00436{height:608.250000px;}
.w0_c00436{width:359.100000px;}
.w1_c00436{width:359.250000px;}
.x0_c00436{left:0.000000px;}
.x4a_c00436{left:11.164500px;}
.x19_c00436{left:17.010000px;}
.x2_c00436{left:18.900000px;}
.x14_c00436{left:20.250000px;}
.x6f_c00436{left:21.325500px;}
.x75_c00436{left:22.399500px;}
.x63_c00436{left:25.728000px;}
.x5e_c00436{left:27.246000px;}
.x71_c00436{left:29.980500px;}
.x76_c00436{left:33.964500px;}
.x2f_c00436{left:36.897000px;}
.x7d_c00436{left:39.807282px;}
.x52_c00436{left:41.016000px;}
.x3_c00436{left:42.930000px;}
.x6c_c00436{left:44.046000px;}
.x1e_c00436{left:46.710000px;}
.x5f_c00436{left:49.698000px;}
.x1a_c00436{left:51.030000px;}
.x78_c00436{left:52.212000px;}
.x26_c00436{left:54.141000px;}
.x64_c00436{left:55.653000px;}
.x1f_c00436{left:58.590000px;}
.x4_c00436{left:61.560000px;}
.x42_c00436{left:65.071500px;}
.xa_c00436{left:66.150000px;}
.x20_c00436{left:71.280000px;}
.x37_c00436{left:72.900000px;}
.x69_c00436{left:76.456500px;}
.x59_c00436{left:78.628500px;}
.x79_c00436{left:81.141000px;}
.x30_c00436{left:82.186500px;}
.x33_c00436{left:85.222500px;}
.x21_c00436{left:86.670000px;}
.x56_c00436{left:91.240500px;}
.x3e_c00436{left:93.838500px;}
.x4f_c00436{left:95.575500px;}
.x4b_c00436{left:97.545000px;}
.xb_c00436{left:101.790000px;}
.x65_c00436{left:104.352000px;}
.x1b_c00436{left:105.570000px;}
.x3f_c00436{left:109.549500px;}
.x45_c00436{left:112.660500px;}
.x5_c00436{left:115.290000px;}
.x2a_c00436{left:118.881000px;}
.x34_c00436{left:119.982000px;}
.x53_c00436{left:123.067500px;}
.xf_c00436{left:126.090000px;}
.x31_c00436{left:127.539000px;}
.x27_c00436{left:129.456000px;}
.x3a_c00436{left:131.896500px;}
.x50_c00436{left:133.101000px;}
.x5a_c00436{left:134.710500px;}
.x6_c00436{left:137.700000px;}
.x2b_c00436{left:138.864000px;}
.x60_c00436{left:142.575000px;}
.x10_c00436{left:143.910000px;}
.x1_c00436{left:146.340000px;}
.x67_c00436{left:147.766500px;}
.x72_c00436{left:148.867500px;}
.x38_c00436{left:150.390000px;}
.x5b_c00436{left:153.870000px;}
.x22_c00436{left:155.790000px;}
.x3b_c00436{left:157.816500px;}
.x66_c00436{left:160.425000px;}
.x7_c00436{left:162.000000px;}
.x11_c00436{left:167.670000px;}
.x5c_c00436{left:171.159000px;}
.x43_c00436{left:172.531500px;}
.x23_c00436{left:174.690000px;}
.x77_c00436{left:177.388500px;}
.x35_c00436{left:178.564500px;}
.xc_c00436{left:180.360000px;}
.x54_c00436{left:181.773000px;}
.x6d_c00436{left:185.013000px;}
.x68_c00436{left:187.726500px;}
.x28_c00436{left:189.427500px;}
.x6a_c00436{left:190.696500px;}
.x2c_c00436{left:193.194000px;}
.x24_c00436{left:195.480000px;}
.x7a_c00436{left:196.711500px;}
.x46_c00436{left:201.550500px;}
.x2d_c00436{left:203.922000px;}
.x5d_c00436{left:205.179000px;}
.x36_c00436{left:208.293000px;}
.x15_c00436{left:210.870000px;}
.x1c_c00436{left:212.760000px;}
.x48_c00436{left:215.721000px;}
.x40_c00436{left:218.842500px;}
.x73_c00436{left:220.272000px;}
.x55_c00436{left:221.343000px;}
.x12_c00436{left:222.480000px;}
.x16_c00436{left:223.830000px;}
.x4c_c00436{left:225.264000px;}
.x8_c00436{left:227.070000px;}
.x7b_c00436{left:228.247500px;}
.x61_c00436{left:232.050000px;}
.x3c_c00436{left:234.540000px;}
.x7e_c00436{left:237.775218px;}
.x62_c00436{left:239.247000px;}
.x17_c00436{left:241.380000px;}
.x6b_c00436{left:243.420000px;}
.x4d_c00436{left:245.517000px;}
.x39_c00436{left:248.130000px;}
.x47_c00436{left:250.626000px;}
.x29_c00436{left:251.778000px;}
.x25_c00436{left:254.070000px;}
.x57_c00436{left:256.474500px;}
.xd_c00436{left:257.580000px;}
.x6e_c00436{left:262.839000px;}
.x41_c00436{left:265.591500px;}
.x74_c00436{left:268.972500px;}
.x9_c00436{left:270.000000px;}
.x3d_c00436{left:271.236000px;}
.x32_c00436{left:273.084000px;}
.x18_c00436{left:278.370000px;}
.x58_c00436{left:280.089000px;}
.x51_c00436{left:282.964500px;}
.x7c_c00436{left:285.846000px;}
.x4e_c00436{left:287.665500px;}
.x13_c00436{left:289.170000px;}
.x1d_c00436{left:292.950000px;}
.x49_c00436{left:294.330000px;}
.x2e_c00436{left:295.456500px;}
.xe_c00436{left:301.860000px;}
.x70_c00436{left:304.378500px;}
.x44_c00436{left:305.911500px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.fs6_c00436{font-size:51.333333pt;}
.fsc_c00436{font-size:51.341649pt;}
.fs7_c00436{font-size:52.266667pt;}
.fsd_c00436{font-size:52.275133pt;}
.fs8_c00436{font-size:54.133333pt;}
.fs9_c00436{font-size:55.066667pt;}
.fs1_c00436{font-size:56.000000pt;}
.fsa_c00436{font-size:56.933333pt;}
.fs2_c00436{font-size:57.866667pt;}
.fs3_c00436{font-size:58.800000pt;}
.fs4_c00436{font-size:59.733333pt;}
.fsb_c00436{font-size:61.600000pt;}
.fs5_c00436{font-size:62.533333pt;}
.fs0_c00436{font-size:70.933333pt;}
.y0_c00436{bottom:0.000000pt;}
.yc2_c00436{bottom:13.217304pt;}
.yc1_c00436{bottom:13.984384pt;}
.yc0_c00436{bottom:15.903069pt;}
.ybf_c00436{bottom:16.560848pt;}
.ybe_c00436{bottom:24.540088pt;}
.ybd_c00436{bottom:25.461664pt;}
.ybc_c00436{bottom:25.966240pt;}
.ybb_c00436{bottom:27.128824pt;}
.yba_c00436{bottom:27.815368pt;}
.yb9_c00436{bottom:28.278232pt;}
.yb8_c00436{bottom:28.564000pt;}
.yb7_c00436{bottom:39.670667pt;}
.yb6_c00436{bottom:40.133333pt;}
.yb5_c00436{bottom:41.798667pt;}
.yb4_c00436{bottom:43.277333pt;}
.yb3_c00436{bottom:43.829333pt;}
.yb2_c00436{bottom:45.368000pt;}
.yb1_c00436{bottom:53.392000pt;}
.yb0_c00436{bottom:54.285333pt;}
.yaf_c00436{bottom:54.586667pt;}
.yae_c00436{bottom:55.696000pt;}
.yad_c00436{bottom:56.129333pt;}
.yac_c00436{bottom:56.961333pt;}
.yab_c00436{bottom:57.602667pt;}
.yaa_c00436{bottom:69.924000pt;}
.ya9_c00436{bottom:71.180000pt;}
.ya8_c00436{bottom:71.993333pt;}
.ya7_c00436{bottom:72.356000pt;}
.ya6_c00436{bottom:73.021333pt;}
.ya5_c00436{bottom:74.458667pt;}
.ya4_c00436{bottom:74.813333pt;}
.ya3_c00436{bottom:75.280000pt;}
.ya2_c00436{bottom:76.086667pt;}
.ya1_c00436{bottom:83.738667pt;}
.ya0_c00436{bottom:85.418667pt;}
.y9f_c00436{bottom:85.777333pt;}
.y9e_c00436{bottom:86.197333pt;}
.y9d_c00436{bottom:87.898667pt;}
.y9c_c00436{bottom:89.526667pt;}
.y9b_c00436{bottom:98.365333pt;}
.y9a_c00436{bottom:98.797333pt;}
.y99_c00436{bottom:99.293333pt;}
.y98_c00436{bottom:100.233333pt;}
.y97_c00436{bottom:101.053333pt;}
.y96_c00436{bottom:102.692000pt;}
.y95_c00436{bottom:103.120000pt;}
.y94_c00436{bottom:103.617333pt;}
.y93_c00436{bottom:104.170667pt;}
.y92_c00436{bottom:114.326667pt;}
.y91_c00436{bottom:114.558667pt;}
.y90_c00436{bottom:115.449333pt;}
.y8f_c00436{bottom:116.248000pt;}
.y8e_c00436{bottom:116.581333pt;}
.y8d_c00436{bottom:116.808000pt;}
.y8c_c00436{bottom:117.380000pt;}
.y8b_c00436{bottom:117.722667pt;}
.y8a_c00436{bottom:118.329333pt;}
.y89_c00436{bottom:128.665333pt;}
.y88_c00436{bottom:129.216000pt;}
.y87_c00436{bottom:130.016000pt;}
.y86_c00436{bottom:130.289333pt;}
.y85_c00436{bottom:130.548000pt;}
.y84_c00436{bottom:131.354667pt;}
.y83_c00436{bottom:131.574667pt;}
.y82_c00436{bottom:131.748000pt;}
.y81_c00436{bottom:132.248000pt;}
.y80_c00436{bottom:144.417333pt;}
.y7f_c00436{bottom:144.738667pt;}
.y7e_c00436{bottom:145.098667pt;}
.y7d_c00436{bottom:145.684000pt;}
.y7c_c00436{bottom:146.413333pt;}
.y7b_c00436{bottom:146.720000pt;}
.y7a_c00436{bottom:147.409333pt;}
.y79_c00436{bottom:148.274667pt;}
.y78_c00436{bottom:148.529333pt;}
.y77_c00436{bottom:148.806667pt;}
.y76_c00436{bottom:159.542667pt;}
.y75_c00436{bottom:159.684000pt;}
.y74_c00436{bottom:160.657333pt;}
.y73_c00436{bottom:161.064000pt;}
.y72_c00436{bottom:161.433333pt;}
.y71_c00436{bottom:162.689333pt;}
.y70_c00436{bottom:163.001333pt;}
.y6f_c00436{bottom:163.249333pt;}
.y6e_c00436{bottom:163.688000pt;}
.y6d_c00436{bottom:173.974667pt;}
.y6c_c00436{bottom:175.092000pt;}
.y6b_c00436{bottom:175.817333pt;}
.y6a_c00436{bottom:176.186667pt;}
.y69_c00436{bottom:176.596000pt;}
.y68_c00436{bottom:177.792000pt;}
.y67_c00436{bottom:178.068000pt;}
.y66_c00436{bottom:179.049333pt;}
.y65_c00436{bottom:188.600000pt;}
.y64_c00436{bottom:189.082667pt;}
.y63_c00436{bottom:189.541333pt;}
.y62_c00436{bottom:191.125333pt;}
.y61_c00436{bottom:192.461333pt;}
.y60_c00436{bottom:193.929333pt;}
.y5f_c00436{bottom:203.242667pt;}
.y5e_c00436{bottom:204.970667pt;}
.y5d_c00436{bottom:205.814667pt;}
.y5c_c00436{bottom:206.577333pt;}
.y5b_c00436{bottom:207.066667pt;}
.y5a_c00436{bottom:208.817333pt;}
.y59_c00436{bottom:209.290667pt;}
.y58_c00436{bottom:219.473333pt;}
.y57_c00436{bottom:220.773333pt;}
.y56_c00436{bottom:222.270667pt;}
.y55_c00436{bottom:222.588000pt;}
.y54_c00436{bottom:222.970667pt;}
.y53_c00436{bottom:224.406667pt;}
.y52_c00436{bottom:236.654667pt;}
.y51_c00436{bottom:237.486667pt;}
.y50_c00436{bottom:237.778667pt;}
.y4f_c00436{bottom:238.374667pt;}
.y4e_c00436{bottom:238.584000pt;}
.y4d_c00436{bottom:239.357333pt;}
.y4c_c00436{bottom:240.242667pt;}
.y4b_c00436{bottom:251.982667pt;}
.y4a_c00436{bottom:252.238667pt;}
.y49_c00436{bottom:252.509333pt;}
.y48_c00436{bottom:253.117333pt;}
.y47_c00436{bottom:253.974667pt;}
.y46_c00436{bottom:254.212000pt;}
.y45_c00436{bottom:254.386667pt;}
.y44_c00436{bottom:255.362667pt;}
.y43_c00436{bottom:265.094667pt;}
.y42_c00436{bottom:266.089333pt;}
.y41_c00436{bottom:266.422667pt;}
.y40_c00436{bottom:267.412000pt;}
.y3f_c00436{bottom:268.953333pt;}
.y3e_c00436{bottom:269.765333pt;}
.y3d_c00436{bottom:282.046667pt;}
.y3c_c00436{bottom:282.421333pt;}
.y3b_c00436{bottom:282.744000pt;}
.y3a_c00436{bottom:283.658667pt;}
.y39_c00436{bottom:284.008000pt;}
.y38_c00436{bottom:285.098667pt;}
.y37_c00436{bottom:285.364000pt;}
.y36_c00436{bottom:297.968000pt;}
.y35_c00436{bottom:310.729333pt;}
.y34_c00436{bottom:311.024000pt;}
.y33_c00436{bottom:311.481333pt;}
.y32_c00436{bottom:311.618667pt;}
.y31_c00436{bottom:312.092000pt;}
.y30_c00436{bottom:312.550667pt;}
.y2f_c00436{bottom:312.704000pt;}
.y2e_c00436{bottom:313.210667pt;}
.y2d_c00436{bottom:313.442667pt;}
.y2c_c00436{bottom:325.870667pt;}
.y2b_c00436{bottom:326.262667pt;}
.y2a_c00436{bottom:326.672000pt;}
.y29_c00436{bottom:327.081333pt;}
.y28_c00436{bottom:327.357333pt;}
.y27_c00436{bottom:328.054667pt;}
.y26_c00436{bottom:328.193333pt;}
.y25_c00436{bottom:328.565333pt;}
.y24_c00436{bottom:341.217333pt;}
.y23_c00436{bottom:355.157333pt;}
.y22_c00436{bottom:355.973333pt;}
.y21_c00436{bottom:356.342667pt;}
.y20_c00436{bottom:357.072000pt;}
.y1f_c00436{bottom:357.504000pt;}
.y1e_c00436{bottom:357.796000pt;}
.y1d_c00436{bottom:358.325333pt;}
.y1c_c00436{bottom:369.558667pt;}
.y1b_c00436{bottom:369.922667pt;}
.y1a_c00436{bottom:370.144000pt;}
.y19_c00436{bottom:371.056000pt;}
.y18_c00436{bottom:371.240000pt;}
.y17_c00436{bottom:371.764000pt;}
.y16_c00436{bottom:372.288000pt;}
.y15_c00436{bottom:372.485333pt;}
.y14_c00436{bottom:383.920000pt;}
.y13_c00436{bottom:384.888000pt;}
.y12_c00436{bottom:385.140000pt;}
.y11_c00436{bottom:385.282667pt;}
.y10_c00436{bottom:386.006667pt;}
.yf_c00436{bottom:386.273333pt;}
.ye_c00436{bottom:387.604000pt;}
.yd_c00436{bottom:399.472000pt;}
.yc_c00436{bottom:400.081333pt;}
.yb_c00436{bottom:400.668000pt;}
.ya_c00436{bottom:400.908000pt;}
.y9_c00436{bottom:401.404000pt;}
.y8_c00436{bottom:401.762667pt;}
.y7_c00436{bottom:416.030667pt;}
.y6_c00436{bottom:430.250667pt;}
.y5_c00436{bottom:445.748000pt;}
.y4_c00436{bottom:460.669333pt;}
.y3_c00436{bottom:476.228000pt;}
.y2_c00436{bottom:491.104000pt;}
.y1_c00436{bottom:504.246667pt;}
.h7_c00436{height:51.333333pt;}
.hd_c00436{height:51.341649pt;}
.h8_c00436{height:52.266667pt;}
.he_c00436{height:52.275133pt;}
.h9_c00436{height:54.133333pt;}
.ha_c00436{height:55.066667pt;}
.h2_c00436{height:56.000000pt;}
.hb_c00436{height:56.933333pt;}
.h3_c00436{height:57.866667pt;}
.h4_c00436{height:58.800000pt;}
.h5_c00436{height:59.733333pt;}
.hc_c00436{height:61.600000pt;}
.h6_c00436{height:62.533333pt;}
.h1_c00436{height:70.933333pt;}
.h0_c00436{height:540.666667pt;}
.w0_c00436{width:319.200000pt;}
.w1_c00436{width:319.333333pt;}
.x0_c00436{left:0.000000pt;}
.x4a_c00436{left:9.924000pt;}
.x19_c00436{left:15.120000pt;}
.x2_c00436{left:16.800000pt;}
.x14_c00436{left:18.000000pt;}
.x6f_c00436{left:18.956000pt;}
.x75_c00436{left:19.910667pt;}
.x63_c00436{left:22.869333pt;}
.x5e_c00436{left:24.218667pt;}
.x71_c00436{left:26.649333pt;}
.x76_c00436{left:30.190667pt;}
.x2f_c00436{left:32.797333pt;}
.x7d_c00436{left:35.384251pt;}
.x52_c00436{left:36.458667pt;}
.x3_c00436{left:38.160000pt;}
.x6c_c00436{left:39.152000pt;}
.x1e_c00436{left:41.520000pt;}
.x5f_c00436{left:44.176000pt;}
.x1a_c00436{left:45.360000pt;}
.x78_c00436{left:46.410667pt;}
.x26_c00436{left:48.125333pt;}
.x64_c00436{left:49.469333pt;}
.x1f_c00436{left:52.080000pt;}
.x4_c00436{left:54.720000pt;}
.x42_c00436{left:57.841333pt;}
.xa_c00436{left:58.800000pt;}
.x20_c00436{left:63.360000pt;}
.x37_c00436{left:64.800000pt;}
.x69_c00436{left:67.961333pt;}
.x59_c00436{left:69.892000pt;}
.x79_c00436{left:72.125333pt;}
.x30_c00436{left:73.054667pt;}
.x33_c00436{left:75.753333pt;}
.x21_c00436{left:77.040000pt;}
.x56_c00436{left:81.102667pt;}
.x3e_c00436{left:83.412000pt;}
.x4f_c00436{left:84.956000pt;}
.x4b_c00436{left:86.706667pt;}
.xb_c00436{left:90.480000pt;}
.x65_c00436{left:92.757333pt;}
.x1b_c00436{left:93.840000pt;}
.x3f_c00436{left:97.377333pt;}
.x45_c00436{left:100.142667pt;}
.x5_c00436{left:102.480000pt;}
.x2a_c00436{left:105.672000pt;}
.x34_c00436{left:106.650667pt;}
.x53_c00436{left:109.393333pt;}
.xf_c00436{left:112.080000pt;}
.x31_c00436{left:113.368000pt;}
.x27_c00436{left:115.072000pt;}
.x3a_c00436{left:117.241333pt;}
.x50_c00436{left:118.312000pt;}
.x5a_c00436{left:119.742667pt;}
.x6_c00436{left:122.400000pt;}
.x2b_c00436{left:123.434667pt;}
.x60_c00436{left:126.733333pt;}
.x10_c00436{left:127.920000pt;}
.x1_c00436{left:130.080000pt;}
.x67_c00436{left:131.348000pt;}
.x72_c00436{left:132.326667pt;}
.x38_c00436{left:133.680000pt;}
.x5b_c00436{left:136.773333pt;}
.x22_c00436{left:138.480000pt;}
.x3b_c00436{left:140.281333pt;}
.x66_c00436{left:142.600000pt;}
.x7_c00436{left:144.000000pt;}
.x11_c00436{left:149.040000pt;}
.x5c_c00436{left:152.141333pt;}
.x43_c00436{left:153.361333pt;}
.x23_c00436{left:155.280000pt;}
.x77_c00436{left:157.678667pt;}
.x35_c00436{left:158.724000pt;}
.xc_c00436{left:160.320000pt;}
.x54_c00436{left:161.576000pt;}
.x6d_c00436{left:164.456000pt;}
.x68_c00436{left:166.868000pt;}
.x28_c00436{left:168.380000pt;}
.x6a_c00436{left:169.508000pt;}
.x2c_c00436{left:171.728000pt;}
.x24_c00436{left:173.760000pt;}
.x7a_c00436{left:174.854667pt;}
.x46_c00436{left:179.156000pt;}
.x2d_c00436{left:181.264000pt;}
.x5d_c00436{left:182.381333pt;}
.x36_c00436{left:185.149333pt;}
.x15_c00436{left:187.440000pt;}
.x1c_c00436{left:189.120000pt;}
.x48_c00436{left:191.752000pt;}
.x40_c00436{left:194.526667pt;}
.x73_c00436{left:195.797333pt;}
.x55_c00436{left:196.749333pt;}
.x12_c00436{left:197.760000pt;}
.x16_c00436{left:198.960000pt;}
.x4c_c00436{left:200.234667pt;}
.x8_c00436{left:201.840000pt;}
.x7b_c00436{left:202.886667pt;}
.x61_c00436{left:206.266667pt;}
.x3c_c00436{left:208.480000pt;}
.x7e_c00436{left:211.355749pt;}
.x62_c00436{left:212.664000pt;}
.x17_c00436{left:214.560000pt;}
.x6b_c00436{left:216.373333pt;}
.x4d_c00436{left:218.237333pt;}
.x39_c00436{left:220.560000pt;}
.x47_c00436{left:222.778667pt;}
.x29_c00436{left:223.802667pt;}
.x25_c00436{left:225.840000pt;}
.x57_c00436{left:227.977333pt;}
.xd_c00436{left:228.960000pt;}
.x6e_c00436{left:233.634667pt;}
.x41_c00436{left:236.081333pt;}
.x74_c00436{left:239.086667pt;}
.x9_c00436{left:240.000000pt;}
.x3d_c00436{left:241.098667pt;}
.x32_c00436{left:242.741333pt;}
.x18_c00436{left:247.440000pt;}
.x58_c00436{left:248.968000pt;}
.x51_c00436{left:251.524000pt;}
.x7c_c00436{left:254.085333pt;}
.x4e_c00436{left:255.702667pt;}
.x13_c00436{left:257.040000pt;}
.x1d_c00436{left:260.400000pt;}
.x49_c00436{left:261.626667pt;}
.x2e_c00436{left:262.628000pt;}
.xe_c00436{left:268.320000pt;}
.x70_c00436{left:270.558667pt;}
.x44_c00436{left:271.921333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00437 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00437.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c00437{transform:matrix(0.011980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011980,0.000000,0.000000,0.250000,0,0);}
.mc8_c00437{transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);}
.m86_c00437{transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);}
.m4e_c00437{transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015450,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.026350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026350,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105665,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.117620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117620,0.000000,0.000000,0.250000,0,0);}
.m66_c00437{transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133685,0.000000,0.000000,0.250000,0,0);}
.mc2_c00437{transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138160,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146940,0.000000,0.000000,0.250000,0,0);}
.m8a_c00437{transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147960,0.000000,0.000000,0.250000,0,0);}
.m71_c00437{transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152005,0.000000,0.000000,0.250000,0,0);}
.m8f_c00437{transform:matrix(0.153210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00437{transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);}
.m9b_c00437{transform:matrix(0.155140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155140,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.155310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155310,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{transform:matrix(0.156010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156010,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);}
.m50_c00437{transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156460,0.000000,0.000000,0.250000,0,0);}
.mb3_c00437{transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);}
.me9_c00437{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.mcc_c00437{transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);}
.m67_c00437{transform:matrix(0.158390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158390,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159480,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160230,0.000000,0.000000,0.250000,0,0);}
.m75_c00437{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162255,0.000000,0.000000,0.250000,0,0);}
.mc0_c00437{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m9c_c00437{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.m9d_c00437{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00437{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.mf3_c00437{transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164580,0.000000,0.000000,0.250000,0,0);}
.m8d_c00437{transform:matrix(0.165895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165895,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m7a_c00437{transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166205,0.000000,0.000000,0.250000,0,0);}
.mc4_c00437{transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.me2_c00437{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m89_c00437{transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.mba_c00437{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.mcb_c00437{transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);}
.m78_c00437{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m6c_c00437{transform:matrix(0.170435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170435,0.000000,0.000000,0.250000,0,0);}
.m4d_c00437{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.mee_c00437{transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170830,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m80_c00437{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.mc6_c00437{transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172955,0.000000,0.000000,0.250000,0,0);}
.m59_c00437{transform:matrix(0.173410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173410,0.000000,0.000000,0.250000,0,0);}
.mcd_c00437{transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);}
.mdd_c00437{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174635,0.000000,0.000000,0.250000,0,0);}
.m5d_c00437{transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m6a_c00437{transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.mc9_c00437{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);}
.m84_c00437{transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);}
.m77_c00437{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.m8e_c00437{transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177735,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178185,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);}
.m68_c00437{transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181640,0.000000,0.000000,0.250000,0,0);}
.md1_c00437{transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181990,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182445,0.000000,0.000000,0.250000,0,0);}
.m5e_c00437{transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182755,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);}
.m52_c00437{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m60_c00437{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m57_c00437{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.mb9_c00437{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m82_c00437{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.m69_c00437{transform:matrix(0.185645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185645,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.mf1_c00437{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186345,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.mf0_c00437{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m88_c00437{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.md0_c00437{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m7c_c00437{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.mc1_c00437{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m9f_c00437{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m87_c00437{transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189360,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.mbd_c00437{transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);}
.m6d_c00437{transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00437{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);}
.m9e_c00437{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190665,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.me8_c00437{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.mc5_c00437{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.m49_c00437{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.mca_c00437{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.mad_c00437{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.ma9_c00437{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);}
.mb8_c00437{transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m9a_c00437{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.md2_c00437{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00437{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m63_c00437{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m34_c00437{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.me1_c00437{transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);}
.mf9_c00437{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.m4b_c00437{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m27_c00437{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197520,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m74_c00437{transform:matrix(0.198445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198445,0.000000,0.000000,0.250000,0,0);}
.me5_c00437{transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198830,0.000000,0.000000,0.250000,0,0);}
.mea_c00437{transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.mc3_c00437{transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);}
.m96_c00437{transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199185,0.000000,0.000000,0.250000,0,0);}
.m97_c00437{transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199565,0.000000,0.000000,0.250000,0,0);}
.m79_c00437{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.ma2_c00437{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m7d_c00437{transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);}
.md8_c00437{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m81_c00437{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.mac_c00437{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.me4_c00437{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.mf2_c00437{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.mbc_c00437{transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203220,0.000000,0.000000,0.250000,0,0);}
.med_c00437{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.mde_c00437{transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204495,0.000000,0.000000,0.250000,0,0);}
.md9_c00437{transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);}
.mec_c00437{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.mdb_c00437{transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);}
.m95_c00437{transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);}
.md5_c00437{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me7_c00437{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mae_c00437{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.m91_c00437{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.mb0_c00437{transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207735,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207830,0.000000,0.000000,0.250000,0,0);}
.mdf_c00437{transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00437{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m46_c00437{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.ma0_c00437{transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);}
.m72_c00437{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mab_c00437{transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00437{transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.m83_c00437{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.mb7_c00437{transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211085,0.000000,0.000000,0.250000,0,0);}
.mc7_c00437{transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);}
.m5f_c00437{transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211380,0.000000,0.000000,0.250000,0,0);}
.md3_c00437{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.ma1_c00437{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.mbe_c00437{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.meb_c00437{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m61_c00437{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.mf7_c00437{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m6f_c00437{transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213980,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m62_c00437{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.md6_c00437{transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);}
.mb6_c00437{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.ma8_c00437{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.mce_c00437{transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217260,0.000000,0.000000,0.250000,0,0);}
.me0_c00437{transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m7f_c00437{transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218185,0.000000,0.000000,0.250000,0,0);}
.mf5_c00437{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m3e_c00437{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223795,0.000000,0.000000,0.250000,0,0);}
.mf8_c00437{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.mb5_c00437{transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224005,0.000000,0.000000,0.250000,0,0);}
.m94_c00437{transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.mb1_c00437{transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);}
.me3_c00437{transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);}
.maa_c00437{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.ma7_c00437{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.mf4_c00437{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m73_c00437{transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);}
.ma5_c00437{transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);}
.me6_c00437{transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);}
.mda_c00437{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m6e_c00437{transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00437{transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);}
.m5b_c00437{transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);}
.m64_c00437{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.md7_c00437{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.mb4_c00437{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.ma6_c00437{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.md4_c00437{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.mcf_c00437{transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);}
.ma4_c00437{transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);}
.mf6_c00437{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);}
.maf_c00437{transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);}
.mfa_c00437{transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280485,0.000000,0.000000,0.250000,0,0);}
.mb2_c00437{transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.288060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288060,0.000000,0.000000,0.250000,0,0);}
.m98_c00437{transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);}
.m65_c00437{transform:matrix(0.296155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296155,0.000000,0.000000,0.250000,0,0);}
.mbb_c00437{transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363865,0.000000,0.000000,0.250000,0,0);}
.mef_c00437{transform:matrix(0.384890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384890,0.000000,0.000000,0.250000,0,0);}
.mfb_c00437{transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.486860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486860,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:0.000000px;}
.fc0_c00437{color:transparent;}
.fsc_c00437{font-size:53.550000px;}
.fs4_c00437{font-size:57.750000px;}
.fsb_c00437{font-size:58.800000px;}
.fs7_c00437{font-size:59.850000px;}
.fse_c00437{font-size:60.900000px;}
.fs2_c00437{font-size:61.950000px;}
.fs6_c00437{font-size:63.000000px;}
.fs3_c00437{font-size:64.050000px;}
.fs1_c00437{font-size:65.100000px;}
.fs5_c00437{font-size:66.150000px;}
.fs8_c00437{font-size:67.200000px;}
.fsd_c00437{font-size:68.250000px;}
.fsa_c00437{font-size:72.450000px;}
.fs9_c00437{font-size:73.500000px;}
.fs0_c00437{font-size:120.750000px;}
.y0_c00437{bottom:0.000000px;}
.y51_c00437{bottom:26.658000px;}
.y50_c00437{bottom:42.711000px;}
.y4f_c00437{bottom:59.761500px;}
.y48_c00437{bottom:75.597000px;}
.y49_c00437{bottom:76.312500px;}
.y4a_c00437{bottom:76.555500px;}
.y4b_c00437{bottom:77.209500px;}
.y4c_c00437{bottom:77.365500px;}
.y4d_c00437{bottom:77.586000px;}
.y4e_c00437{bottom:78.162000px;}
.y47_c00437{bottom:93.361500px;}
.y46_c00437{bottom:110.623500px;}
.y45_c00437{bottom:126.964500px;}
.y44_c00437{bottom:144.133500px;}
.y43_c00437{bottom:161.419500px;}
.y42_c00437{bottom:178.303500px;}
.y41_c00437{bottom:195.937500px;}
.y40_c00437{bottom:212.673000px;}
.y3f_c00437{bottom:229.729500px;}
.y3e_c00437{bottom:245.754000px;}
.y3d_c00437{bottom:263.008500px;}
.y36_c00437{bottom:278.367000px;}
.y37_c00437{bottom:278.733000px;}
.y38_c00437{bottom:279.279000px;}
.y39_c00437{bottom:279.718500px;}
.y3a_c00437{bottom:280.689000px;}
.y3b_c00437{bottom:281.244000px;}
.y3c_c00437{bottom:281.742000px;}
.y2d_c00437{bottom:295.645500px;}
.y2e_c00437{bottom:296.097000px;}
.y2f_c00437{bottom:296.280000px;}
.y30_c00437{bottom:296.590500px;}
.y31_c00437{bottom:296.887500px;}
.y32_c00437{bottom:297.352500px;}
.y33_c00437{bottom:297.585000px;}
.y34_c00437{bottom:298.027500px;}
.y35_c00437{bottom:298.330500px;}
.y2c_c00437{bottom:313.999500px;}
.y24_c00437{bottom:329.397000px;}
.y25_c00437{bottom:330.000000px;}
.y26_c00437{bottom:330.766500px;}
.y27_c00437{bottom:330.919500px;}
.y28_c00437{bottom:331.171500px;}
.y29_c00437{bottom:331.476000px;}
.y2a_c00437{bottom:332.580000px;}
.y2b_c00437{bottom:332.733000px;}
.y1c_c00437{bottom:346.678500px;}
.y1d_c00437{bottom:347.328000px;}
.y1e_c00437{bottom:347.616000px;}
.y1f_c00437{bottom:348.523500px;}
.y20_c00437{bottom:348.784500px;}
.y21_c00437{bottom:349.638000px;}
.y22_c00437{bottom:350.466000px;}
.y23_c00437{bottom:350.854500px;}
.y1b_c00437{bottom:365.061000px;}
.y1a_c00437{bottom:382.182000px;}
.y19_c00437{bottom:398.551500px;}
.y18_c00437{bottom:416.239500px;}
.y17_c00437{bottom:433.018500px;}
.y16_c00437{bottom:449.346000px;}
.y15_c00437{bottom:466.444500px;}
.y14_c00437{bottom:483.271500px;}
.y13_c00437{bottom:500.817000px;}
.yd_c00437{bottom:515.970000px;}
.ye_c00437{bottom:516.690000px;}
.yf_c00437{bottom:516.991500px;}
.y10_c00437{bottom:517.869000px;}
.y11_c00437{bottom:518.128500px;}
.y12_c00437{bottom:518.784000px;}
.ya_c00437{bottom:531.630000px;}
.yb_c00437{bottom:532.075500px;}
.yc_c00437{bottom:535.348500px;}
.y2_c00437{bottom:549.451500px;}
.y3_c00437{bottom:549.927000px;}
.y4_c00437{bottom:550.264500px;}
.y5_c00437{bottom:551.379000px;}
.y6_c00437{bottom:551.628000px;}
.y7_c00437{bottom:552.399000px;}
.y8_c00437{bottom:552.675000px;}
.y9_c00437{bottom:552.924000px;}
.y1_c00437{bottom:564.711000px;}
.hd_c00437{height:53.550000px;}
.h5_c00437{height:57.750000px;}
.hc_c00437{height:58.800000px;}
.h8_c00437{height:59.850000px;}
.hf_c00437{height:60.900000px;}
.h3_c00437{height:61.950000px;}
.h7_c00437{height:63.000000px;}
.h4_c00437{height:64.050000px;}
.h2_c00437{height:65.100000px;}
.h6_c00437{height:66.150000px;}
.h9_c00437{height:67.200000px;}
.he_c00437{height:68.250000px;}
.hb_c00437{height:72.450000px;}
.ha_c00437{height:73.500000px;}
.h1_c00437{height:120.750000px;}
.h0_c00437{height:608.250000px;}
.w0_c00437{width:359.100000px;}
.w1_c00437{width:359.250000px;}
.x0_c00437{left:0.000000px;}
.x1e_c00437{left:44.011500px;}
.x73_c00437{left:47.401500px;}
.x6b_c00437{left:48.873000px;}
.x56_c00437{left:50.223000px;}
.x4e_c00437{left:51.303000px;}
.x19_c00437{left:52.381500px;}
.x2_c00437{left:54.174000px;}
.x2f_c00437{left:61.291500px;}
.x67_c00437{left:70.203000px;}
.x57_c00437{left:72.093000px;}
.x5b_c00437{left:74.253000px;}
.x38_c00437{left:75.331500px;}
.xc_c00437{left:78.744000px;}
.x6e_c00437{left:81.003000px;}
.x12_c00437{left:84.511500px;}
.xa_c00437{left:85.771500px;}
.x3_c00437{left:88.138500px;}
.x68_c00437{left:90.723000px;}
.x28_c00437{left:93.691500px;}
.x6c_c00437{left:95.853000px;}
.x30_c00437{left:97.201500px;}
.x46_c00437{left:99.210000px;}
.x13_c00437{left:101.521500px;}
.x3e_c00437{left:102.601500px;}
.x29_c00437{left:106.921500px;}
.x31_c00437{left:109.081500px;}
.x4_c00437{left:112.239000px;}
.x52_c00437{left:114.565500px;}
.x3f_c00437{left:117.181500px;}
.x1f_c00437{left:118.531500px;}
.x47_c00437{left:119.802000px;}
.x1a_c00437{left:121.501500px;}
.x4f_c00437{left:123.393000px;}
.x2a_c00437{left:127.171500px;}
.x5d_c00437{left:129.333000px;}
.xd_c00437{left:134.085000px;}
.x75_c00437{left:135.541500px;}
.x39_c00437{left:137.431500px;}
.x6f_c00437{left:138.783000px;}
.x20_c00437{left:140.131500px;}
.x50_c00437{left:143.373000px;}
.x14_c00437{left:145.801500px;}
.x5e_c00437{left:149.313000px;}
.x3a_c00437{left:150.931500px;}
.x58_c00437{left:152.553000px;}
.x42_c00437{left:154.171500px;}
.x69_c00437{left:155.793000px;}
.xe_c00437{left:157.311000px;}
.x15_c00437{left:158.491500px;}
.x49_c00437{left:165.613500px;}
.x3b_c00437{left:167.401500px;}
.x5c_c00437{left:172.533000px;}
.x43_c00437{left:173.881500px;}
.x21_c00437{left:175.231500px;}
.x4a_c00437{left:178.366500px;}
.x32_c00437{left:181.171500px;}
.x63_c00437{left:182.253000px;}
.x1b_c00437{left:184.141500px;}
.x1_c00437{left:186.030000px;}
.x76_c00437{left:187.921500px;}
.x51_c00437{left:189.003000px;}
.x5_c00437{left:191.881500px;}
.x33_c00437{left:194.131500px;}
.x22_c00437{left:195.481500px;}
.x4b_c00437{left:199.426500px;}
.x1c_c00437{left:200.611500px;}
.x70_c00437{left:201.963000px;}
.x2b_c00437{left:203.041500px;}
.x5f_c00437{left:204.933000px;}
.x6_c00437{left:209.698500px;}
.x74_c00437{left:213.202500px;}
.x34_c00437{left:217.351500px;}
.x53_c00437{left:221.799000px;}
.xf_c00437{left:224.799000px;}
.x3c_c00437{left:227.071500px;}
.x71_c00437{left:230.043000px;}
.x16_c00437{left:231.661500px;}
.x64_c00437{left:234.633000px;}
.x2c_c00437{left:235.981500px;}
.x59_c00437{left:237.333000px;}
.x23_c00437{left:238.681500px;}
.x79_c00437{left:240.301500px;}
.x10_c00437{left:244.776000px;}
.x25_c00437{left:247.861500px;}
.x66_c00437{left:250.563000px;}
.x24_c00437{left:252.991500px;}
.x2d_c00437{left:255.691500px;}
.x40_c00437{left:256.771500px;}
.x26_c00437{left:261.091500px;}
.x7_c00437{left:264.768000px;}
.x35_c00437{left:268.381500px;}
.x77_c00437{left:270.541500px;}
.x44_c00437{left:273.781500px;}
.x1d_c00437{left:275.671500px;}
.x72_c00437{left:276.753000px;}
.x5a_c00437{left:282.963000px;}
.x8_c00437{left:284.478000px;}
.x17_c00437{left:287.551500px;}
.x54_c00437{left:289.243500px;}
.x78_c00437{left:291.061500px;}
.x11_c00437{left:295.225500px;}
.x7a_c00437{left:297.001500px;}
.x60_c00437{left:298.893000px;}
.x9_c00437{left:302.302500px;}
.x62_c00437{left:304.833000px;}
.x36_c00437{left:307.531500px;}
.x18_c00437{left:308.611500px;}
.x65_c00437{left:310.773000px;}
.x55_c00437{left:312.534000px;}
.x6d_c00437{left:315.093000px;}
.x4c_c00437{left:316.792500px;}
.xb_c00437{left:319.549500px;}
.x48_c00437{left:323.352000px;}
.x61_c00437{left:325.893000px;}
.x2e_c00437{left:327.781500px;}
.x4d_c00437{left:329.571000px;}
.x27_c00437{left:333.721500px;}
.x37_c00437{left:337.771500px;}
.x41_c00437{left:349.651500px;}
.x45_c00437{left:351.001500px;}
.x6a_c00437{left:356.403000px;}
.x3d_c00437{left:357.751500px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:0.000000pt;}
.fsc_c00437{font-size:47.600000pt;}
.fs4_c00437{font-size:51.333333pt;}
.fsb_c00437{font-size:52.266667pt;}
.fs7_c00437{font-size:53.200000pt;}
.fse_c00437{font-size:54.133333pt;}
.fs2_c00437{font-size:55.066667pt;}
.fs6_c00437{font-size:56.000000pt;}
.fs3_c00437{font-size:56.933333pt;}
.fs1_c00437{font-size:57.866667pt;}
.fs5_c00437{font-size:58.800000pt;}
.fs8_c00437{font-size:59.733333pt;}
.fsd_c00437{font-size:60.666667pt;}
.fsa_c00437{font-size:64.400000pt;}
.fs9_c00437{font-size:65.333333pt;}
.fs0_c00437{font-size:107.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y51_c00437{bottom:23.696000pt;}
.y50_c00437{bottom:37.965333pt;}
.y4f_c00437{bottom:53.121333pt;}
.y48_c00437{bottom:67.197333pt;}
.y49_c00437{bottom:67.833333pt;}
.y4a_c00437{bottom:68.049333pt;}
.y4b_c00437{bottom:68.630667pt;}
.y4c_c00437{bottom:68.769333pt;}
.y4d_c00437{bottom:68.965333pt;}
.y4e_c00437{bottom:69.477333pt;}
.y47_c00437{bottom:82.988000pt;}
.y46_c00437{bottom:98.332000pt;}
.y45_c00437{bottom:112.857333pt;}
.y44_c00437{bottom:128.118667pt;}
.y43_c00437{bottom:143.484000pt;}
.y42_c00437{bottom:158.492000pt;}
.y41_c00437{bottom:174.166667pt;}
.y40_c00437{bottom:189.042667pt;}
.y3f_c00437{bottom:204.204000pt;}
.y3e_c00437{bottom:218.448000pt;}
.y3d_c00437{bottom:233.785333pt;}
.y36_c00437{bottom:247.437333pt;}
.y37_c00437{bottom:247.762667pt;}
.y38_c00437{bottom:248.248000pt;}
.y39_c00437{bottom:248.638667pt;}
.y3a_c00437{bottom:249.501333pt;}
.y3b_c00437{bottom:249.994667pt;}
.y3c_c00437{bottom:250.437333pt;}
.y2d_c00437{bottom:262.796000pt;}
.y2e_c00437{bottom:263.197333pt;}
.y2f_c00437{bottom:263.360000pt;}
.y30_c00437{bottom:263.636000pt;}
.y31_c00437{bottom:263.900000pt;}
.y32_c00437{bottom:264.313333pt;}
.y33_c00437{bottom:264.520000pt;}
.y34_c00437{bottom:264.913333pt;}
.y35_c00437{bottom:265.182667pt;}
.y2c_c00437{bottom:279.110667pt;}
.y24_c00437{bottom:292.797333pt;}
.y25_c00437{bottom:293.333333pt;}
.y26_c00437{bottom:294.014667pt;}
.y27_c00437{bottom:294.150667pt;}
.y28_c00437{bottom:294.374667pt;}
.y29_c00437{bottom:294.645333pt;}
.y2a_c00437{bottom:295.626667pt;}
.y2b_c00437{bottom:295.762667pt;}
.y1c_c00437{bottom:308.158667pt;}
.y1d_c00437{bottom:308.736000pt;}
.y1e_c00437{bottom:308.992000pt;}
.y1f_c00437{bottom:309.798667pt;}
.y20_c00437{bottom:310.030667pt;}
.y21_c00437{bottom:310.789333pt;}
.y22_c00437{bottom:311.525333pt;}
.y23_c00437{bottom:311.870667pt;}
.y1b_c00437{bottom:324.498667pt;}
.y1a_c00437{bottom:339.717333pt;}
.y19_c00437{bottom:354.268000pt;}
.y18_c00437{bottom:369.990667pt;}
.y17_c00437{bottom:384.905333pt;}
.y16_c00437{bottom:399.418667pt;}
.y15_c00437{bottom:414.617333pt;}
.y14_c00437{bottom:429.574667pt;}
.y13_c00437{bottom:445.170667pt;}
.yd_c00437{bottom:458.640000pt;}
.ye_c00437{bottom:459.280000pt;}
.yf_c00437{bottom:459.548000pt;}
.y10_c00437{bottom:460.328000pt;}
.y11_c00437{bottom:460.558667pt;}
.y12_c00437{bottom:461.141333pt;}
.ya_c00437{bottom:472.560000pt;}
.yb_c00437{bottom:472.956000pt;}
.yc_c00437{bottom:475.865333pt;}
.y2_c00437{bottom:488.401333pt;}
.y3_c00437{bottom:488.824000pt;}
.y4_c00437{bottom:489.124000pt;}
.y5_c00437{bottom:490.114667pt;}
.y6_c00437{bottom:490.336000pt;}
.y7_c00437{bottom:491.021333pt;}
.y8_c00437{bottom:491.266667pt;}
.y9_c00437{bottom:491.488000pt;}
.y1_c00437{bottom:501.965333pt;}
.hd_c00437{height:47.600000pt;}
.h5_c00437{height:51.333333pt;}
.hc_c00437{height:52.266667pt;}
.h8_c00437{height:53.200000pt;}
.hf_c00437{height:54.133333pt;}
.h3_c00437{height:55.066667pt;}
.h7_c00437{height:56.000000pt;}
.h4_c00437{height:56.933333pt;}
.h2_c00437{height:57.866667pt;}
.h6_c00437{height:58.800000pt;}
.h9_c00437{height:59.733333pt;}
.he_c00437{height:60.666667pt;}
.hb_c00437{height:64.400000pt;}
.ha_c00437{height:65.333333pt;}
.h1_c00437{height:107.333333pt;}
.h0_c00437{height:540.666667pt;}
.w0_c00437{width:319.200000pt;}
.w1_c00437{width:319.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1e_c00437{left:39.121333pt;}
.x73_c00437{left:42.134667pt;}
.x6b_c00437{left:43.442667pt;}
.x56_c00437{left:44.642667pt;}
.x4e_c00437{left:45.602667pt;}
.x19_c00437{left:46.561333pt;}
.x2_c00437{left:48.154667pt;}
.x2f_c00437{left:54.481333pt;}
.x67_c00437{left:62.402667pt;}
.x57_c00437{left:64.082667pt;}
.x5b_c00437{left:66.002667pt;}
.x38_c00437{left:66.961333pt;}
.xc_c00437{left:69.994667pt;}
.x6e_c00437{left:72.002667pt;}
.x12_c00437{left:75.121333pt;}
.xa_c00437{left:76.241333pt;}
.x3_c00437{left:78.345333pt;}
.x68_c00437{left:80.642667pt;}
.x28_c00437{left:83.281333pt;}
.x6c_c00437{left:85.202667pt;}
.x30_c00437{left:86.401333pt;}
.x46_c00437{left:88.186667pt;}
.x13_c00437{left:90.241333pt;}
.x3e_c00437{left:91.201333pt;}
.x29_c00437{left:95.041333pt;}
.x31_c00437{left:96.961333pt;}
.x4_c00437{left:99.768000pt;}
.x52_c00437{left:101.836000pt;}
.x3f_c00437{left:104.161333pt;}
.x1f_c00437{left:105.361333pt;}
.x47_c00437{left:106.490667pt;}
.x1a_c00437{left:108.001333pt;}
.x4f_c00437{left:109.682667pt;}
.x2a_c00437{left:113.041333pt;}
.x5d_c00437{left:114.962667pt;}
.xd_c00437{left:119.186667pt;}
.x75_c00437{left:120.481333pt;}
.x39_c00437{left:122.161333pt;}
.x6f_c00437{left:123.362667pt;}
.x20_c00437{left:124.561333pt;}
.x50_c00437{left:127.442667pt;}
.x14_c00437{left:129.601333pt;}
.x5e_c00437{left:132.722667pt;}
.x3a_c00437{left:134.161333pt;}
.x58_c00437{left:135.602667pt;}
.x42_c00437{left:137.041333pt;}
.x69_c00437{left:138.482667pt;}
.xe_c00437{left:139.832000pt;}
.x15_c00437{left:140.881333pt;}
.x49_c00437{left:147.212000pt;}
.x3b_c00437{left:148.801333pt;}
.x5c_c00437{left:153.362667pt;}
.x43_c00437{left:154.561333pt;}
.x21_c00437{left:155.761333pt;}
.x4a_c00437{left:158.548000pt;}
.x32_c00437{left:161.041333pt;}
.x63_c00437{left:162.002667pt;}
.x1b_c00437{left:163.681333pt;}
.x1_c00437{left:165.360000pt;}
.x76_c00437{left:167.041333pt;}
.x51_c00437{left:168.002667pt;}
.x5_c00437{left:170.561333pt;}
.x33_c00437{left:172.561333pt;}
.x22_c00437{left:173.761333pt;}
.x4b_c00437{left:177.268000pt;}
.x1c_c00437{left:178.321333pt;}
.x70_c00437{left:179.522667pt;}
.x2b_c00437{left:180.481333pt;}
.x5f_c00437{left:182.162667pt;}
.x6_c00437{left:186.398667pt;}
.x74_c00437{left:189.513333pt;}
.x34_c00437{left:193.201333pt;}
.x53_c00437{left:197.154667pt;}
.xf_c00437{left:199.821333pt;}
.x3c_c00437{left:201.841333pt;}
.x71_c00437{left:204.482667pt;}
.x16_c00437{left:205.921333pt;}
.x64_c00437{left:208.562667pt;}
.x2c_c00437{left:209.761333pt;}
.x59_c00437{left:210.962667pt;}
.x23_c00437{left:212.161333pt;}
.x79_c00437{left:213.601333pt;}
.x10_c00437{left:217.578667pt;}
.x25_c00437{left:220.321333pt;}
.x66_c00437{left:222.722667pt;}
.x24_c00437{left:224.881333pt;}
.x2d_c00437{left:227.281333pt;}
.x40_c00437{left:228.241333pt;}
.x26_c00437{left:232.081333pt;}
.x7_c00437{left:235.349333pt;}
.x35_c00437{left:238.561333pt;}
.x77_c00437{left:240.481333pt;}
.x44_c00437{left:243.361333pt;}
.x1d_c00437{left:245.041333pt;}
.x72_c00437{left:246.002667pt;}
.x5a_c00437{left:251.522667pt;}
.x8_c00437{left:252.869333pt;}
.x17_c00437{left:255.601333pt;}
.x54_c00437{left:257.105333pt;}
.x78_c00437{left:258.721333pt;}
.x11_c00437{left:262.422667pt;}
.x7a_c00437{left:264.001333pt;}
.x60_c00437{left:265.682667pt;}
.x9_c00437{left:268.713333pt;}
.x62_c00437{left:270.962667pt;}
.x36_c00437{left:273.361333pt;}
.x18_c00437{left:274.321333pt;}
.x65_c00437{left:276.242667pt;}
.x55_c00437{left:277.808000pt;}
.x6d_c00437{left:280.082667pt;}
.x4c_c00437{left:281.593333pt;}
.xb_c00437{left:284.044000pt;}
.x48_c00437{left:287.424000pt;}
.x61_c00437{left:289.682667pt;}
.x2e_c00437{left:291.361333pt;}
.x4d_c00437{left:292.952000pt;}
.x27_c00437{left:296.641333pt;}
.x37_c00437{left:300.241333pt;}
.x41_c00437{left:310.801333pt;}
.x45_c00437{left:312.001333pt;}
.x6a_c00437{left:316.802667pt;}
.x3d_c00437{left:318.001333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00438 {
    display:none;
  }
  .loading-indicator_c00438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00438 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00438 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00438" -> "#page-container .classname_c00438")
 */
.pf_c00438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00438 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00438 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00438 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00438 {overflow:visible;}
  }
}
.c_c00438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00438 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00438:after { /* webkit #35443 */
  content: '';
}
.t_c00438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00438 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00438 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00438 { /* info for Javascript */
  display:none;
}
.l_c00438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00438:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00438 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00438.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c00438{transform:matrix(0.071828,0.001293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.071828,0.001293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.071828,0.001293,-0.004499,0.249960,0,0);}
.m46_c00438{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00438{transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);}
.mc9_c00438{transform:matrix(0.148235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148235,0.000000,0.000000,0.250000,0,0);}
.mac_c00438{transform:matrix(0.149080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149080,0.000000,0.000000,0.250000,0,0);}
.md2_c00438{transform:matrix(0.150460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150460,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.154335,0.002469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154335,0.002469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154335,0.002469,-0.003999,0.249968,0,0);}
.m7c_c00438{transform:matrix(0.156370,0.002502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156370,0.002502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156370,0.002502,-0.003999,0.249968,0,0);}
.mca_c00438{transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.mce_c00438{transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);}
.mcf_c00438{transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);}
.md5_c00438{transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161060,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163665,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164480,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166510,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168408,0.002695,-0.003999,0.249968,0,0);}
.mbb_c00438{transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170110,0.000000,0.000000,0.250000,0,0);}
.md1_c00438{transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171060,0.000000,0.000000,0.250000,0,0);}
.mc5_c00438{transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.171217,0.003082,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171217,0.003082,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171217,0.003082,-0.004499,0.249960,0,0);}
.m24_c00438{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00438{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173158,0.002771,-0.003999,0.249968,0,0);}
.m56_c00438{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177095,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177362,0.002838,-0.003999,0.249968,0,0);}
.mad_c00438{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.mba_c00438{transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177765,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{transform:matrix(0.179467,0.002871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179467,0.002871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179467,0.002871,-0.003999,0.249968,0,0);}
.m54_c00438{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179870,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.180527,0.002888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180527,0.002888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180527,0.002888,-0.003999,0.249968,0,0);}
.m1_c00438{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m85_c00438{transform:matrix(0.180842,0.002893,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180842,0.002893,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180842,0.002893,-0.003999,0.249968,0,0);}
.md0_c00438{transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m7f_c00438{transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183307,0.002933,-0.003999,0.249968,0,0);}
.m6_c00438{transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183440,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183545,0.000000,0.000000,0.250000,0,0);}
.mcd_c00438{transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.184431,0.002951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184431,0.002951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184431,0.002951,-0.003999,0.249968,0,0);}
.m91_c00438{transform:matrix(0.184461,0.002951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184461,0.002951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184461,0.002951,-0.003999,0.249968,0,0);}
.mb3_c00438{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.185321,0.002965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185321,0.002965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185321,0.002965,-0.003999,0.249968,0,0);}
.mb9_c00438{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{transform:matrix(0.185591,0.002969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185591,0.002969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185591,0.002969,-0.003999,0.249968,0,0);}
.m12_c00438{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00438{transform:matrix(0.187491,0.003000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187491,0.003000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187491,0.003000,-0.003999,0.249968,0,0);}
.m76_c00438{transform:matrix(0.187550,0.003376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187550,0.003376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187550,0.003376,-0.004499,0.249960,0,0);}
.m6e_c00438{transform:matrix(0.187960,0.003383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187960,0.003383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187960,0.003383,-0.004499,0.249960,0,0);}
.m21_c00438{transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);}
.m57_c00438{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.m71_c00438{transform:matrix(0.188369,0.003391,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188369,0.003391,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188369,0.003391,-0.004499,0.249960,0,0);}
.md3_c00438{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.mb1_c00438{transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00438{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.192595,0.003082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192595,0.003082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192595,0.003082,-0.003999,0.249968,0,0);}
.m5c_c00438{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.193099,0.003476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193099,0.003476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193099,0.003476,-0.004499,0.249960,0,0);}
.m32_c00438{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);}
.m92_c00438{transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194305,0.003109,-0.003999,0.249968,0,0);}
.m53_c00438{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.195495,0.003128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195495,0.003128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195495,0.003128,-0.003999,0.249968,0,0);}
.mc0_c00438{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.195593,0.003521,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195593,0.003521,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195593,0.003521,-0.004499,0.249960,0,0);}
.m5a_c00438{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m9b_c00438{transform:matrix(0.196480,0.003144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196480,0.003144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196480,0.003144,-0.003999,0.249968,0,0);}
.m8b_c00438{transform:matrix(0.196515,0.003144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196515,0.003144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196515,0.003144,-0.003999,0.249968,0,0);}
.m1c_c00438{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.mc8_c00438{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196905,0.000000,0.000000,0.250000,0,0);}
.m82_c00438{transform:matrix(0.197060,0.003153,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197060,0.003153,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197060,0.003153,-0.003999,0.249968,0,0);}
.m4e_c00438{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.maf_c00438{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199260,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.md4_c00438{transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199815,0.000000,0.000000,0.250000,0,0);}
.m88_c00438{transform:matrix(0.200694,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200694,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200694,0.003211,-0.003999,0.249968,0,0);}
.m47_c00438{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.mae_c00438{transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);}
.mb5_c00438{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.202734,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202734,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202734,0.003244,-0.003999,0.249968,0,0);}
.ma0_c00438{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.mbc_c00438{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204010,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.204362,0.003679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204362,0.003679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204362,0.003679,-0.004499,0.249960,0,0);}
.m51_c00438{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{transform:matrix(0.204959,0.003279,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204959,0.003279,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204959,0.003279,-0.003999,0.249968,0,0);}
.m9d_c00438{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.mcb_c00438{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208773,0.003340,-0.003999,0.249968,0,0);}
.m89_c00438{transform:matrix(0.208893,0.003342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208893,0.003342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208893,0.003342,-0.003999,0.249968,0,0);}
.m35_c00438{transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209448,0.003351,-0.003999,0.249968,0,0);}
.mc1_c00438{transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.210516,0.003789,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210516,0.003789,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210516,0.003789,-0.004499,0.249960,0,0);}
.m59_c00438{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m75_c00438{transform:matrix(0.210601,0.003791,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210601,0.003791,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210601,0.003791,-0.004499,0.249960,0,0);}
.m65_c00438{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00438{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00438{transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.212073,0.003393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212073,0.003393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212073,0.003393,-0.003999,0.249968,0,0);}
.mb4_c00438{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.212591,0.003827,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212591,0.003827,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212591,0.003827,-0.004499,0.249960,0,0);}
.md_c00438{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m98_c00438{transform:matrix(0.213428,0.003415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213428,0.003415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213428,0.003415,-0.003999,0.249968,0,0);}
.m1b_c00438{transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214105,0.000000,0.000000,0.250000,0,0);}
.mb0_c00438{transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214245,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.214850,0.003867,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214850,0.003867,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214850,0.003867,-0.004499,0.249960,0,0);}
.m83_c00438{transform:matrix(0.214972,0.003440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214972,0.003440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214972,0.003440,-0.003999,0.249968,0,0);}
.m66_c00438{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);}
.m9f_c00438{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216385,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{transform:matrix(0.217842,0.003485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217842,0.003485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217842,0.003485,-0.003999,0.249968,0,0);}
.m9c_c00438{transform:matrix(0.218822,0.003501,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218822,0.003501,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218822,0.003501,-0.003999,0.249968,0,0);}
.m2b_c00438{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.221107,0.003538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221107,0.003538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221107,0.003538,-0.003999,0.249968,0,0);}
.m7b_c00438{transform:matrix(0.221217,0.003539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221217,0.003539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221217,0.003539,-0.003999,0.249968,0,0);}
.m0_c00438{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);}
.mb6_c00438{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.mc2_c00438{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m58_c00438{transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.227148,0.004089,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227148,0.004089,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227148,0.004089,-0.004499,0.249960,0,0);}
.m9a_c00438{transform:matrix(0.227916,0.003647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227916,0.003647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227916,0.003647,-0.003999,0.249968,0,0);}
.m23_c00438{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.mbf_c00438{transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228995,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);}
.mbd_c00438{transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{transform:matrix(0.231443,0.004166,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231443,0.004166,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231443,0.004166,-0.004499,0.249960,0,0);}
.ma8_c00438{transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00438{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234805,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);}
.m9e_c00438{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237015,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);}
.m17_c00438{transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);}
.m43_c00438{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m61_c00438{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.m50_c00438{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(0.335575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);}
.m45_c00438{transform:matrix(0.605060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605060,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:0.000000px;}
._0_c00438{width:17.735449px;}
.fc0_c00438{color:transparent;}
.fs9_c00438{font-size:55.650000px;}
.fs4_c00438{font-size:57.750000px;}
.fs11_c00438{font-size:57.757392px;}
.fs7_c00438{font-size:58.800000px;}
.fs10_c00438{font-size:59.857660px;}
.fsd_c00438{font-size:59.859695px;}
.fs6_c00438{font-size:60.900000px;}
.fsb_c00438{font-size:61.950000px;}
.fse_c00438{font-size:61.957929px;}
.fs12_c00438{font-size:63.000000px;}
.fsf_c00438{font-size:63.008063px;}
.fsc_c00438{font-size:63.010205px;}
.fsa_c00438{font-size:64.050000px;}
.fs5_c00438{font-size:65.100000px;}
.fs3_c00438{font-size:67.200000px;}
.fs8_c00438{font-size:69.300000px;}
.fs2_c00438{font-size:70.350000px;}
.fs13_c00438{font-size:71.400000px;}
.fs0_c00438{font-size:72.450000px;}
.fs1_c00438{font-size:100.800000px;}
.y0_c00438{bottom:0.000000px;}
.y70_c00438{bottom:31.137000px;}
.y6f_c00438{bottom:31.315500px;}
.y6e_c00438{bottom:32.334000px;}
.y6d_c00438{bottom:32.586000px;}
.y6c_c00438{bottom:33.282000px;}
.y6b_c00438{bottom:33.541500px;}
.y6a_c00438{bottom:33.817500px;}
.y69_c00438{bottom:34.032000px;}
.y68_c00438{bottom:34.831500px;}
.y67_c00438{bottom:47.166000px;}
.y66_c00438{bottom:47.437500px;}
.y65_c00438{bottom:48.328500px;}
.y64_c00438{bottom:49.096500px;}
.y63_c00438{bottom:50.086500px;}
.y62_c00438{bottom:50.413500px;}
.y61_c00438{bottom:51.150000px;}
.y60_c00438{bottom:51.573000px;}
.y5f_c00438{bottom:65.581500px;}
.y5e_c00438{bottom:65.853000px;}
.y5d_c00438{bottom:66.064500px;}
.y5c_c00438{bottom:66.471000px;}
.y5b_c00438{bottom:67.386000px;}
.y5a_c00438{bottom:67.663500px;}
.y59_c00438{bottom:68.704500px;}
.y58_c00438{bottom:68.988000px;}
.y57_c00438{bottom:69.663000px;}
.y56_c00438{bottom:83.838000px;}
.y55_c00438{bottom:101.934000px;}
.y54_c00438{bottom:115.536000px;}
.y53_c00438{bottom:116.065500px;}
.y52_c00438{bottom:116.341500px;}
.y51_c00438{bottom:117.229500px;}
.y50_c00438{bottom:118.155000px;}
.y4f_c00438{bottom:118.431000px;}
.y4e_c00438{bottom:118.948500px;}
.y4d_c00438{bottom:119.164500px;}
.y4c_c00438{bottom:119.341500px;}
.y4b_c00438{bottom:134.197500px;}
.y4a_c00438{bottom:151.125000px;}
.y43_c00438{bottom:168.008352px;}
.y44_c00438{bottom:168.008436px;}
.y48_c00438{bottom:168.008904px;}
.y45_c00438{bottom:168.008940px;}
.y49_c00438{bottom:168.009192px;}
.y46_c00438{bottom:168.009480px;}
.y47_c00438{bottom:168.009588px;}
.y42_c00438{bottom:184.150920px;}
.y41_c00438{bottom:184.691064px;}
.y40_c00438{bottom:185.641488px;}
.y3f_c00438{bottom:185.961120px;}
.y3e_c00438{bottom:186.409176px;}
.y3d_c00438{bottom:187.317792px;}
.y3c_c00438{bottom:187.532592px;}
.y3b_c00438{bottom:187.923000px;}
.y3a_c00438{bottom:200.079960px;}
.y39_c00438{bottom:200.315496px;}
.y38_c00438{bottom:200.624172px;}
.y37_c00438{bottom:201.531360px;}
.y36_c00438{bottom:202.300464px;}
.y35_c00438{bottom:202.888716px;}
.y34_c00438{bottom:203.079648px;}
.y33_c00438{bottom:203.307132px;}
.y32_c00438{bottom:216.592488px;}
.y31_c00438{bottom:217.516032px;}
.y30_c00438{bottom:218.709576px;}
.y2f_c00438{bottom:219.308880px;}
.y2e_c00438{bottom:220.320744px;}
.y2d_c00438{bottom:233.134272px;}
.y2c_c00438{bottom:234.094920px;}
.y2b_c00438{bottom:234.449184px;}
.y2a_c00438{bottom:235.529184px;}
.y29_c00438{bottom:235.821792px;}
.y28_c00438{bottom:237.308928px;}
.y27_c00438{bottom:237.603000px;}
.y26_c00438{bottom:250.684134px;}
.y25_c00438{bottom:250.922196px;}
.y24_c00438{bottom:251.796849px;}
.y23_c00438{bottom:252.021753px;}
.y22_c00438{bottom:252.285780px;}
.y21_c00438{bottom:253.047927px;}
.y20_c00438{bottom:254.068998px;}
.y1f_c00438{bottom:268.509225px;}
.y1e_c00438{bottom:268.966524px;}
.y1d_c00438{bottom:269.489919px;}
.y1c_c00438{bottom:270.220647px;}
.y1b_c00438{bottom:271.055568px;}
.y1a_c00438{bottom:271.814565px;}
.y19_c00438{bottom:271.952076px;}
.y18_c00438{bottom:273.243000px;}
.y17_c00438{bottom:287.418000px;}
.y16_c00438{bottom:305.176500px;}
.y15_c00438{bottom:322.003500px;}
.y14_c00438{bottom:337.572000px;}
.y13_c00438{bottom:354.093000px;}
.y12_c00438{bottom:370.422000px;}
.y11_c00438{bottom:387.270000px;}
.y10_c00438{bottom:403.185000px;}
.yf_c00438{bottom:419.100000px;}
.ye_c00438{bottom:419.337000px;}
.yd_c00438{bottom:419.641500px;}
.yc_c00438{bottom:419.823000px;}
.yb_c00438{bottom:420.348000px;}
.ya_c00438{bottom:420.564000px;}
.y9_c00438{bottom:421.008000px;}
.y8_c00438{bottom:421.765500px;}
.y7_c00438{bottom:422.280000px;}
.y6_c00438{bottom:436.935000px;}
.y5_c00438{bottom:453.205500px;}
.y4_c00438{bottom:471.258000px;}
.y3_c00438{bottom:502.915500px;}
.y2_c00438{bottom:535.545000px;}
.y1_c00438{bottom:569.160000px;}
.ha_c00438{height:55.650000px;}
.h5_c00438{height:57.750000px;}
.h13_c00438{height:57.757392px;}
.h8_c00438{height:58.800000px;}
.h12_c00438{height:59.857660px;}
.he_c00438{height:59.859695px;}
.hf_c00438{height:60.837853px;}
.h7_c00438{height:60.900000px;}
.hc_c00438{height:61.950000px;}
.h10_c00438{height:61.957929px;}
.h14_c00438{height:63.000000px;}
.h11_c00438{height:63.008063px;}
.hd_c00438{height:63.010205px;}
.hb_c00438{height:64.050000px;}
.h6_c00438{height:65.100000px;}
.h4_c00438{height:67.200000px;}
.h9_c00438{height:69.300000px;}
.h3_c00438{height:70.350000px;}
.h15_c00438{height:71.400000px;}
.h1_c00438{height:72.450000px;}
.h2_c00438{height:100.800000px;}
.h0_c00438{height:608.250000px;}
.w0_c00438{width:359.100000px;}
.w1_c00438{width:359.250000px;}
.x0_c00438{left:0.000000px;}
.x4d_c00438{left:8.721000px;}
.x1e_c00438{left:15.573000px;}
.xe_c00438{left:20.790000px;}
.x37_c00438{left:21.870000px;}
.x53_c00438{left:24.898500px;}
.x2c_c00438{left:27.000000px;}
.x73_c00438{left:29.509500px;}
.x58_c00438{left:31.139652px;}
.x5b_c00438{left:34.187784px;}
.x8_c00438{left:35.370000px;}
.x68_c00438{left:36.603000px;}
.x38_c00438{left:38.340000px;}
.x24_c00438{left:42.931500px;}
.x4b_c00438{left:47.790000px;}
.x46_c00438{left:49.410000px;}
.x5c_c00438{left:51.687624px;}
.x4_c00438{left:53.460000px;}
.x74_c00438{left:55.945500px;}
.x1f_c00438{left:58.455000px;}
.x31_c00438{left:60.210000px;}
.x60_c00438{left:64.369500px;}
.x5d_c00438{left:66.340320px;}
.x42_c00438{left:67.770000px;}
.x6c_c00438{left:72.528000px;}
.x9_c00438{left:78.570000px;}
.xf_c00438{left:80.460000px;}
.x16_c00438{left:88.830000px;}
.x6d_c00438{left:90.265500px;}
.x25_c00438{left:92.341500px;}
.x59_c00438{left:94.381152px;}
.x39_c00438{left:96.390000px;}
.x17_c00438{left:101.250000px;}
.x47_c00438{left:104.490000px;}
.xa_c00438{left:105.570000px;}
.x79_c00438{left:108.442500px;}
.x10_c00438{left:110.430000px;}
.x5e_c00438{left:111.639504px;}
.x2_c00438{left:113.670000px;}
.x5_c00438{left:115.290000px;}
.x18_c00438{left:120.960000px;}
.x75_c00438{left:122.386500px;}
.x32_c00438{left:126.090000px;}
.x11_c00438{left:129.870000px;}
.x65_c00438{left:130.950000px;}
.x26_c00438{left:132.301500px;}
.x3e_c00438{left:134.460000px;}
.x54_c00438{left:136.224000px;}
.x1_c00438{left:138.510000px;}
.x33_c00438{left:140.940000px;}
.x66_c00438{left:147.690000px;}
.x2d_c00438{left:149.310000px;}
.x3f_c00438{left:154.170000px;}
.x6e_c00438{left:155.332500px;}
.x6a_c00438{left:156.870000px;}
.x20_c00438{left:158.659500px;}
.x4f_c00438{left:159.682788px;}
.x27_c00438{left:161.191500px;}
.x34_c00438{left:166.860000px;}
.x61_c00438{left:169.138500px;}
.x19_c00438{left:170.370000px;}
.x6f_c00438{left:172.702500px;}
.x4c_c00438{left:174.690000px;}
.x12_c00438{left:176.850000px;}
.x50_c00438{left:179.936097px;}
.x76_c00438{left:184.282500px;}
.xb_c00438{left:185.490000px;}
.x2e_c00438{left:187.380000px;}
.x3_c00438{left:189.000000px;}
.x43_c00438{left:191.430000px;}
.x3a_c00438{left:192.510000px;}
.x28_c00438{left:194.401500px;}
.x51_c00438{left:197.265663px;}
.x63_c00438{left:199.014108px;}
.x3b_c00438{left:201.420000px;}
.x1a_c00438{left:202.500000px;}
.x13_c00438{left:204.930000px;}
.x5a_c00438{left:206.434152px;}
.x48_c00438{left:210.060000px;}
.x44_c00438{left:211.410000px;}
.x6_c00438{left:214.380000px;}
.x1b_c00438{left:216.270000px;}
.x35_c00438{left:217.620000px;}
.x29_c00438{left:219.241500px;}
.x21_c00438{left:220.446000px;}
.x55_c00438{left:222.012000px;}
.x40_c00438{left:225.720000px;}
.x3c_c00438{left:227.070000px;}
.x62_c00438{left:228.540000px;}
.x49_c00438{left:230.580000px;}
.x77_c00438{left:232.243500px;}
.x22_c00438{left:235.570500px;}
.x2f_c00438{left:238.950000px;}
.x5f_c00438{left:240.507672px;}
.x64_c00438{left:242.460000px;}
.x56_c00438{left:244.153500px;}
.x4e_c00438{left:246.303000px;}
.xc_c00438{left:248.130000px;}
.x67_c00438{left:249.480000px;}
.x69_c00438{left:250.918500px;}
.x6b_c00438{left:253.530000px;}
.x70_c00438{left:255.223500px;}
.x2a_c00438{left:256.231500px;}
.x4a_c00438{left:260.280000px;}
.x7_c00438{left:261.630000px;}
.x52_c00438{left:264.530211px;}
.x45_c00438{left:265.680000px;}
.x71_c00438{left:268.437000px;}
.x14_c00438{left:271.350000px;}
.x1c_c00438{left:277.020000px;}
.x36_c00438{left:279.450000px;}
.x23_c00438{left:280.650000px;}
.x41_c00438{left:283.230000px;}
.x72_c00438{left:285.447000px;}
.x78_c00438{left:287.935500px;}
.x30_c00438{left:292.410000px;}
.x1d_c00438{left:294.570000px;}
.xd_c00438{left:298.080000px;}
.x15_c00438{left:299.160000px;}
.x2b_c00438{left:300.241500px;}
.x57_c00438{left:304.194000px;}
.x3d_c00438{left:308.070000px;}
.x7a_c00438{left:314.667000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
._0_c00438{width:15.764843pt;}
.fs9_c00438{font-size:49.466667pt;}
.fs4_c00438{font-size:51.333333pt;}
.fs11_c00438{font-size:51.339904pt;}
.fs7_c00438{font-size:52.266667pt;}
.fs10_c00438{font-size:53.206809pt;}
.fsd_c00438{font-size:53.208618pt;}
.fs6_c00438{font-size:54.133333pt;}
.fsb_c00438{font-size:55.066667pt;}
.fse_c00438{font-size:55.073715pt;}
.fs12_c00438{font-size:56.000000pt;}
.fsf_c00438{font-size:56.007168pt;}
.fsc_c00438{font-size:56.009071pt;}
.fsa_c00438{font-size:56.933333pt;}
.fs5_c00438{font-size:57.866667pt;}
.fs3_c00438{font-size:59.733333pt;}
.fs8_c00438{font-size:61.600000pt;}
.fs2_c00438{font-size:62.533333pt;}
.fs13_c00438{font-size:63.466667pt;}
.fs0_c00438{font-size:64.400000pt;}
.fs1_c00438{font-size:89.600000pt;}
.y0_c00438{bottom:0.000000pt;}
.y70_c00438{bottom:27.677333pt;}
.y6f_c00438{bottom:27.836000pt;}
.y6e_c00438{bottom:28.741333pt;}
.y6d_c00438{bottom:28.965333pt;}
.y6c_c00438{bottom:29.584000pt;}
.y6b_c00438{bottom:29.814667pt;}
.y6a_c00438{bottom:30.060000pt;}
.y69_c00438{bottom:30.250667pt;}
.y68_c00438{bottom:30.961333pt;}
.y67_c00438{bottom:41.925333pt;}
.y66_c00438{bottom:42.166667pt;}
.y65_c00438{bottom:42.958667pt;}
.y64_c00438{bottom:43.641333pt;}
.y63_c00438{bottom:44.521333pt;}
.y62_c00438{bottom:44.812000pt;}
.y61_c00438{bottom:45.466667pt;}
.y60_c00438{bottom:45.842667pt;}
.y5f_c00438{bottom:58.294667pt;}
.y5e_c00438{bottom:58.536000pt;}
.y5d_c00438{bottom:58.724000pt;}
.y5c_c00438{bottom:59.085333pt;}
.y5b_c00438{bottom:59.898667pt;}
.y5a_c00438{bottom:60.145333pt;}
.y59_c00438{bottom:61.070667pt;}
.y58_c00438{bottom:61.322667pt;}
.y57_c00438{bottom:61.922667pt;}
.y56_c00438{bottom:74.522667pt;}
.y55_c00438{bottom:90.608000pt;}
.y54_c00438{bottom:102.698667pt;}
.y53_c00438{bottom:103.169333pt;}
.y52_c00438{bottom:103.414667pt;}
.y51_c00438{bottom:104.204000pt;}
.y50_c00438{bottom:105.026667pt;}
.y4f_c00438{bottom:105.272000pt;}
.y4e_c00438{bottom:105.732000pt;}
.y4d_c00438{bottom:105.924000pt;}
.y4c_c00438{bottom:106.081333pt;}
.y4b_c00438{bottom:119.286667pt;}
.y4a_c00438{bottom:134.333333pt;}
.y43_c00438{bottom:149.340757pt;}
.y44_c00438{bottom:149.340832pt;}
.y48_c00438{bottom:149.341248pt;}
.y45_c00438{bottom:149.341280pt;}
.y49_c00438{bottom:149.341504pt;}
.y46_c00438{bottom:149.341760pt;}
.y47_c00438{bottom:149.341856pt;}
.y42_c00438{bottom:163.689707pt;}
.y41_c00438{bottom:164.169835pt;}
.y40_c00438{bottom:165.014656pt;}
.y3f_c00438{bottom:165.298773pt;}
.y3e_c00438{bottom:165.697045pt;}
.y3d_c00438{bottom:166.504704pt;}
.y3c_c00438{bottom:166.695637pt;}
.y3b_c00438{bottom:167.042667pt;}
.y3a_c00438{bottom:177.848853pt;}
.y39_c00438{bottom:178.058219pt;}
.y38_c00438{bottom:178.332597pt;}
.y37_c00438{bottom:179.138987pt;}
.y36_c00438{bottom:179.822635pt;}
.y35_c00438{bottom:180.345525pt;}
.y34_c00438{bottom:180.515243pt;}
.y33_c00438{bottom:180.717451pt;}
.y32_c00438{bottom:192.526656pt;}
.y31_c00438{bottom:193.347584pt;}
.y30_c00438{bottom:194.408512pt;}
.y2f_c00438{bottom:194.941227pt;}
.y2e_c00438{bottom:195.840661pt;}
.y2d_c00438{bottom:207.230464pt;}
.y2c_c00438{bottom:208.084373pt;}
.y2b_c00438{bottom:208.399275pt;}
.y2a_c00438{bottom:209.359275pt;}
.y29_c00438{bottom:209.619371pt;}
.y28_c00438{bottom:210.941269pt;}
.y27_c00438{bottom:211.202667pt;}
.y26_c00438{bottom:222.830341pt;}
.y25_c00438{bottom:223.041952pt;}
.y24_c00438{bottom:223.819421pt;}
.y23_c00438{bottom:224.019336pt;}
.y22_c00438{bottom:224.254027pt;}
.y21_c00438{bottom:224.931491pt;}
.y20_c00438{bottom:225.839109pt;}
.y1f_c00438{bottom:238.674867pt;}
.y1e_c00438{bottom:239.081355pt;}
.y1d_c00438{bottom:239.546595pt;}
.y1c_c00438{bottom:240.196131pt;}
.y1b_c00438{bottom:240.938283pt;}
.y1a_c00438{bottom:241.612947pt;}
.y19_c00438{bottom:241.735179pt;}
.y18_c00438{bottom:242.882667pt;}
.y17_c00438{bottom:255.482667pt;}
.y16_c00438{bottom:271.268000pt;}
.y15_c00438{bottom:286.225333pt;}
.y14_c00438{bottom:300.064000pt;}
.y13_c00438{bottom:314.749333pt;}
.y12_c00438{bottom:329.264000pt;}
.y11_c00438{bottom:344.240000pt;}
.y10_c00438{bottom:358.386667pt;}
.yf_c00438{bottom:372.533333pt;}
.ye_c00438{bottom:372.744000pt;}
.yd_c00438{bottom:373.014667pt;}
.yc_c00438{bottom:373.176000pt;}
.yb_c00438{bottom:373.642667pt;}
.ya_c00438{bottom:373.834667pt;}
.y9_c00438{bottom:374.229333pt;}
.y8_c00438{bottom:374.902667pt;}
.y7_c00438{bottom:375.360000pt;}
.y6_c00438{bottom:388.386667pt;}
.y5_c00438{bottom:402.849333pt;}
.y4_c00438{bottom:418.896000pt;}
.y3_c00438{bottom:447.036000pt;}
.y2_c00438{bottom:476.040000pt;}
.y1_c00438{bottom:505.920000pt;}
.ha_c00438{height:49.466667pt;}
.h5_c00438{height:51.333333pt;}
.h13_c00438{height:51.339904pt;}
.h8_c00438{height:52.266667pt;}
.h12_c00438{height:53.206809pt;}
.he_c00438{height:53.208618pt;}
.hf_c00438{height:54.078092pt;}
.h7_c00438{height:54.133333pt;}
.hc_c00438{height:55.066667pt;}
.h10_c00438{height:55.073715pt;}
.h14_c00438{height:56.000000pt;}
.h11_c00438{height:56.007168pt;}
.hd_c00438{height:56.009071pt;}
.hb_c00438{height:56.933333pt;}
.h6_c00438{height:57.866667pt;}
.h4_c00438{height:59.733333pt;}
.h9_c00438{height:61.600000pt;}
.h3_c00438{height:62.533333pt;}
.h15_c00438{height:63.466667pt;}
.h1_c00438{height:64.400000pt;}
.h2_c00438{height:89.600000pt;}
.h0_c00438{height:540.666667pt;}
.w0_c00438{width:319.200000pt;}
.w1_c00438{width:319.333333pt;}
.x0_c00438{left:0.000000pt;}
.x4d_c00438{left:7.752000pt;}
.x1e_c00438{left:13.842667pt;}
.xe_c00438{left:18.480000pt;}
.x37_c00438{left:19.440000pt;}
.x53_c00438{left:22.132000pt;}
.x2c_c00438{left:24.000000pt;}
.x73_c00438{left:26.230667pt;}
.x58_c00438{left:27.679691pt;}
.x5b_c00438{left:30.389141pt;}
.x8_c00438{left:31.440000pt;}
.x68_c00438{left:32.536000pt;}
.x38_c00438{left:34.080000pt;}
.x24_c00438{left:38.161333pt;}
.x4b_c00438{left:42.480000pt;}
.x46_c00438{left:43.920000pt;}
.x5c_c00438{left:45.944555pt;}
.x4_c00438{left:47.520000pt;}
.x74_c00438{left:49.729333pt;}
.x1f_c00438{left:51.960000pt;}
.x31_c00438{left:53.520000pt;}
.x60_c00438{left:57.217333pt;}
.x5d_c00438{left:58.969173pt;}
.x42_c00438{left:60.240000pt;}
.x6c_c00438{left:64.469333pt;}
.x9_c00438{left:69.840000pt;}
.xf_c00438{left:71.520000pt;}
.x16_c00438{left:78.960000pt;}
.x6d_c00438{left:80.236000pt;}
.x25_c00438{left:82.081333pt;}
.x59_c00438{left:83.894357pt;}
.x39_c00438{left:85.680000pt;}
.x17_c00438{left:90.000000pt;}
.x47_c00438{left:92.880000pt;}
.xa_c00438{left:93.840000pt;}
.x79_c00438{left:96.393333pt;}
.x10_c00438{left:98.160000pt;}
.x5e_c00438{left:99.235115pt;}
.x2_c00438{left:101.040000pt;}
.x5_c00438{left:102.480000pt;}
.x18_c00438{left:107.520000pt;}
.x75_c00438{left:108.788000pt;}
.x32_c00438{left:112.080000pt;}
.x11_c00438{left:115.440000pt;}
.x65_c00438{left:116.400000pt;}
.x26_c00438{left:117.601333pt;}
.x3e_c00438{left:119.520000pt;}
.x54_c00438{left:121.088000pt;}
.x1_c00438{left:123.120000pt;}
.x33_c00438{left:125.280000pt;}
.x66_c00438{left:131.280000pt;}
.x2d_c00438{left:132.720000pt;}
.x3f_c00438{left:137.040000pt;}
.x6e_c00438{left:138.073333pt;}
.x6a_c00438{left:139.440000pt;}
.x20_c00438{left:141.030667pt;}
.x4f_c00438{left:141.940256pt;}
.x27_c00438{left:143.281333pt;}
.x34_c00438{left:148.320000pt;}
.x61_c00438{left:150.345333pt;}
.x19_c00438{left:151.440000pt;}
.x6f_c00438{left:153.513333pt;}
.x4c_c00438{left:155.280000pt;}
.x12_c00438{left:157.200000pt;}
.x50_c00438{left:159.943197pt;}
.x76_c00438{left:163.806667pt;}
.xb_c00438{left:164.880000pt;}
.x2e_c00438{left:166.560000pt;}
.x3_c00438{left:168.000000pt;}
.x43_c00438{left:170.160000pt;}
.x3a_c00438{left:171.120000pt;}
.x28_c00438{left:172.801333pt;}
.x51_c00438{left:175.347256pt;}
.x63_c00438{left:176.901429pt;}
.x3b_c00438{left:179.040000pt;}
.x1a_c00438{left:180.000000pt;}
.x13_c00438{left:182.160000pt;}
.x5a_c00438{left:183.497024pt;}
.x48_c00438{left:186.720000pt;}
.x44_c00438{left:187.920000pt;}
.x6_c00438{left:190.560000pt;}
.x1b_c00438{left:192.240000pt;}
.x35_c00438{left:193.440000pt;}
.x29_c00438{left:194.881333pt;}
.x21_c00438{left:195.952000pt;}
.x55_c00438{left:197.344000pt;}
.x40_c00438{left:200.640000pt;}
.x3c_c00438{left:201.840000pt;}
.x62_c00438{left:203.146667pt;}
.x49_c00438{left:204.960000pt;}
.x77_c00438{left:206.438667pt;}
.x22_c00438{left:209.396000pt;}
.x2f_c00438{left:212.400000pt;}
.x5f_c00438{left:213.784597pt;}
.x64_c00438{left:215.520000pt;}
.x56_c00438{left:217.025333pt;}
.x4e_c00438{left:218.936000pt;}
.xc_c00438{left:220.560000pt;}
.x67_c00438{left:221.760000pt;}
.x69_c00438{left:223.038667pt;}
.x6b_c00438{left:225.360000pt;}
.x70_c00438{left:226.865333pt;}
.x2a_c00438{left:227.761333pt;}
.x4a_c00438{left:231.360000pt;}
.x7_c00438{left:232.560000pt;}
.x52_c00438{left:235.137965pt;}
.x45_c00438{left:236.160000pt;}
.x71_c00438{left:238.610667pt;}
.x14_c00438{left:241.200000pt;}
.x1c_c00438{left:246.240000pt;}
.x36_c00438{left:248.400000pt;}
.x23_c00438{left:249.466667pt;}
.x41_c00438{left:251.760000pt;}
.x72_c00438{left:253.730667pt;}
.x78_c00438{left:255.942667pt;}
.x30_c00438{left:259.920000pt;}
.x1d_c00438{left:261.840000pt;}
.xd_c00438{left:264.960000pt;}
.x15_c00438{left:265.920000pt;}
.x2b_c00438{left:266.881333pt;}
.x57_c00438{left:270.394667pt;}
.x3d_c00438{left:273.840000pt;}
.x7a_c00438{left:279.704000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00439 {
    display:none;
  }
  .loading-indicator_c00439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00439 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00439 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00439" -> "#page-container .classname_c00439")
 */
.pf_c00439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00439 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00439 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00439 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00439 {overflow:visible;}
  }
}
.c_c00439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00439 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00439:after { /* webkit #35443 */
  content: '';
}
.t_c00439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00439 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00439 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00439 { /* info for Javascript */
  display:none;
}
.l_c00439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00439:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00439 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00439.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00439{transform:matrix(0.017165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017165,0.000000,0.000000,0.250000,0,0);}
.m71_c00439{transform:matrix(0.054455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054455,0.000000,0.000000,0.250000,0,0);}
.mbb_c00439{transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00439{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.m92_c00439{transform:matrix(0.124745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124745,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);}
.m50_c00439{transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);}
.md6_c00439{transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139695,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);}
.mb7_c00439{transform:matrix(0.143590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143590,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144190,0.000000,0.000000,0.250000,0,0);}
.mb4_c00439{transform:matrix(0.145140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145140,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);}
.m9c_c00439{transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00439{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m5d_c00439{transform:matrix(0.154565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154565,0.000000,0.000000,0.250000,0,0);}
.mb2_c00439{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m99_c00439{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.m73_c00439{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.m4f_c00439{transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155815,0.000000,0.000000,0.250000,0,0);}
.mb0_c00439{transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156170,0.000000,0.000000,0.250000,0,0);}
.mb8_c00439{transform:matrix(0.156285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156285,0.000000,0.000000,0.250000,0,0);}
.m66_c00439{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.mc6_c00439{transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);}
.m77_c00439{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.m6e_c00439{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.maf_c00439{transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00439{transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160205,0.000000,0.000000,0.250000,0,0);}
.md1_c00439{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.m97_c00439{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.m9e_c00439{transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161655,0.000000,0.000000,0.250000,0,0);}
.mb3_c00439{transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162335,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);}
.me4_c00439{transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164635,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165495,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);}
.mc0_c00439{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m8c_c00439{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00439{transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168945,0.000000,0.000000,0.250000,0,0);}
.ma0_c00439{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00439{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m4c_c00439{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m8f_c00439{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.m7c_c00439{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00439{transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);}
.m6b_c00439{transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);}
.m76_c00439{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172130,0.000000,0.000000,0.250000,0,0);}
.mcf_c00439{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m75_c00439{transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);}
.me0_c00439{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m41_c00439{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.mf0_c00439{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m84_c00439{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.mf8_c00439{transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174415,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00439{transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176120,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);}
.m95_c00439{transform:matrix(0.176990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176990,0.000000,0.000000,0.250000,0,0);}
.m6d_c00439{transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177105,0.000000,0.000000,0.250000,0,0);}
.md0_c00439{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.mf1_c00439{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m87_c00439{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.ma1_c00439{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m58_c00439{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.m79_c00439{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.mdd_c00439{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.mb5_c00439{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182205,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.m54_c00439{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00439{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183090,0.000000,0.000000,0.250000,0,0);}
.m91_c00439{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183710,0.000000,0.000000,0.250000,0,0);}
.md7_c00439{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m69_c00439{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.mfc_c00439{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.me1_c00439{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.m9d_c00439{transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);}
.md5_c00439{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.mf2_c00439{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.mfd_c00439{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.mf6_c00439{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.mf7_c00439{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.m94_c00439{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m98_c00439{transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);}
.m6a_c00439{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.mfa_c00439{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.md4_c00439{transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190585,0.000000,0.000000,0.250000,0,0);}
.m90_c00439{transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);}
.ma7_c00439{transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192260,0.000000,0.000000,0.250000,0,0);}
.m4a_c00439{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m55_c00439{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.mcc_c00439{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m7b_c00439{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.mac_c00439{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.mec_c00439{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00439{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.mca_c00439{transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196065,0.000000,0.000000,0.250000,0,0);}
.m8a_c00439{transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);}
.me9_c00439{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.mb1_c00439{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.m72_c00439{transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196885,0.000000,0.000000,0.250000,0,0);}
.m8d_c00439{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.md3_c00439{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00439{transform:matrix(0.197415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197415,0.000000,0.000000,0.250000,0,0);}
.mdb_c00439{transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.mef_c00439{transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);}
.m6c_c00439{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.m80_c00439{transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199145,0.000000,0.000000,0.250000,0,0);}
.m33_c00439{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.mc2_c00439{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.mf3_c00439{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m8e_c00439{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m74_c00439{transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200160,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.ma6_c00439{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m8b_c00439{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.mf9_c00439{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.ma4_c00439{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m85_c00439{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.mc4_c00439{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204115,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204310,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mb6_c00439{transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);}
.mc5_c00439{transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205580,0.000000,0.000000,0.250000,0,0);}
.mde_c00439{transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.mae_c00439{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.mdc_c00439{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m78_c00439{transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);}
.m43_c00439{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mcb_c00439{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mce_c00439{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);}
.m96_c00439{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.m5c_c00439{transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);}
.me2_c00439{transform:matrix(0.210180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210180,0.000000,0.000000,0.250000,0,0);}
.mea_c00439{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.mbf_c00439{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.mfb_c00439{transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);}
.ma8_c00439{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m63_c00439{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.mba_c00439{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.m70_c00439{transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);}
.m60_c00439{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m7d_c00439{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.md2_c00439{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00439{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.med_c00439{transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);}
.mdf_c00439{transform:matrix(0.214805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214805,0.000000,0.000000,0.250000,0,0);}
.mc7_c00439{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.me3_c00439{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.mbc_c00439{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.meb_c00439{transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215510,0.000000,0.000000,0.250000,0,0);}
.mad_c00439{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.me8_c00439{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.md9_c00439{transform:matrix(0.215840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215840,0.000000,0.000000,0.250000,0,0);}
.m86_c00439{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);}
.m64_c00439{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.ma5_c00439{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.me7_c00439{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.219115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219115,0.000000,0.000000,0.250000,0,0);}
.mcd_c00439{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.ma3_c00439{transform:matrix(0.220845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220845,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220980,0.000000,0.000000,0.250000,0,0);}
.md8_c00439{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m83_c00439{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223265,0.000000,0.000000,0.250000,0,0);}
.m4d_c00439{transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224545,0.000000,0.000000,0.250000,0,0);}
.m82_c00439{transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224715,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00439{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.mda_c00439{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.mee_c00439{transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226710,0.000000,0.000000,0.250000,0,0);}
.mf4_c00439{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);}
.m68_c00439{transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);}
.m93_c00439{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m7e_c00439{transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231485,0.000000,0.000000,0.250000,0,0);}
.m67_c00439{transform:matrix(0.232485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232485,0.000000,0.000000,0.250000,0,0);}
.maa_c00439{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00439{transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);}
.mc8_c00439{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);}
.m65_c00439{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.mbd_c00439{transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243385,0.000000,0.000000,0.250000,0,0);}
.me6_c00439{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.m88_c00439{transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);}
.mc3_c00439{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.m7a_c00439{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.ma9_c00439{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m9b_c00439{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00439{transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);}
.mc1_c00439{transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255300,0.000000,0.000000,0.250000,0,0);}
.m61_c00439{transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258455,0.000000,0.000000,0.250000,0,0);}
.mab_c00439{transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);}
.m81_c00439{transform:matrix(0.279295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279295,0.000000,0.000000,0.250000,0,0);}
.m89_c00439{transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);}
.me5_c00439{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
.fc0_c00439{color:transparent;}
.fs4_c00439{font-size:57.750000px;}
.fs6_c00439{font-size:58.800000px;}
.fs2_c00439{font-size:59.850000px;}
.fs9_c00439{font-size:61.950000px;}
.fs7_c00439{font-size:64.050000px;}
.fs5_c00439{font-size:65.100000px;}
.fs8_c00439{font-size:66.150000px;}
.fsa_c00439{font-size:67.200000px;}
.fs3_c00439{font-size:68.250000px;}
.fs0_c00439{font-size:70.350000px;}
.fs1_c00439{font-size:72.450000px;}
.fsb_c00439{font-size:75.600000px;}
.y0_c00439{bottom:0.000000px;}
.y21_c00439{bottom:26.124000px;}
.y20_c00439{bottom:43.875000px;}
.y1f_c00439{bottom:60.748500px;}
.y1e_c00439{bottom:75.660000px;}
.y1d_c00439{bottom:93.805500px;}
.y1c_c00439{bottom:111.025500px;}
.y1b_c00439{bottom:127.347000px;}
.y1a_c00439{bottom:144.088500px;}
.y19_c00439{bottom:160.918500px;}
.y18_c00439{bottom:177.886500px;}
.y17_c00439{bottom:195.634500px;}
.y16_c00439{bottom:212.199000px;}
.y15_c00439{bottom:229.299000px;}
.y14_c00439{bottom:246.466500px;}
.y13_c00439{bottom:263.053500px;}
.y12_c00439{bottom:279.565500px;}
.y11_c00439{bottom:297.340500px;}
.y10_c00439{bottom:314.205000px;}
.yf_c00439{bottom:331.501500px;}
.ye_c00439{bottom:348.774000px;}
.yd_c00439{bottom:365.238000px;}
.yc_c00439{bottom:382.390500px;}
.yb_c00439{bottom:398.788500px;}
.ya_c00439{bottom:415.917000px;}
.y9_c00439{bottom:433.105500px;}
.y8_c00439{bottom:450.124500px;}
.y7_c00439{bottom:467.341500px;}
.y6_c00439{bottom:483.324000px;}
.y5_c00439{bottom:500.077500px;}
.y4_c00439{bottom:517.099500px;}
.y3_c00439{bottom:534.133500px;}
.y2_c00439{bottom:551.521500px;}
.y1_c00439{bottom:565.525500px;}
.h5_c00439{height:57.750000px;}
.h7_c00439{height:58.800000px;}
.h3_c00439{height:59.850000px;}
.ha_c00439{height:61.950000px;}
.h8_c00439{height:64.050000px;}
.h6_c00439{height:65.100000px;}
.h9_c00439{height:66.150000px;}
.hb_c00439{height:67.200000px;}
.h4_c00439{height:68.250000px;}
.h1_c00439{height:70.350000px;}
.h2_c00439{height:72.450000px;}
.hc_c00439{height:75.600000px;}
.h0_c00439{height:608.250000px;}
.w0_c00439{width:359.100000px;}
.w1_c00439{width:359.250000px;}
.x0_c00439{left:0.000000px;}
.x4d_c00439{left:33.750000px;}
.x80_c00439{left:36.180000px;}
.x7d_c00439{left:37.530000px;}
.x74_c00439{left:38.610000px;}
.x6a_c00439{left:39.960000px;}
.x5d_c00439{left:42.390000px;}
.x53_c00439{left:43.470000px;}
.x3f_c00439{left:45.090000px;}
.x33_c00439{left:46.440000px;}
.x3_c00439{left:48.060000px;}
.x9_c00439{left:49.410000px;}
.x81_c00439{left:54.270000px;}
.x68_c00439{left:59.940000px;}
.x61_c00439{left:62.100000px;}
.x78_c00439{left:63.180000px;}
.x18_c00439{left:64.260000px;}
.x49_c00439{left:65.610000px;}
.x6f_c00439{left:68.310000px;}
.x40_c00439{left:73.170000px;}
.x59_c00439{left:74.250000px;}
.x57_c00439{left:76.950000px;}
.x75_c00439{left:79.650000px;}
.x6b_c00439{left:81.270000px;}
.x46_c00439{left:82.620000px;}
.x34_c00439{left:86.130000px;}
.x5a_c00439{left:88.290000px;}
.x21_c00439{left:90.990000px;}
.x2b_c00439{left:93.690000px;}
.x58_c00439{left:96.660000px;}
.x4_c00439{left:98.280000px;}
.x83_c00439{left:102.330000px;}
.x12_c00439{left:103.950000px;}
.x35_c00439{left:108.540000px;}
.x5e_c00439{left:112.320000px;}
.x2c_c00439{left:113.400000px;}
.x19_c00439{left:115.020000px;}
.x31_c00439{left:116.100000px;}
.xa_c00439{left:118.260000px;}
.x84_c00439{left:119.610000px;}
.x26_c00439{left:121.500000px;}
.x3b_c00439{left:123.390000px;}
.x86_c00439{left:127.170000px;}
.x4a_c00439{left:131.760000px;}
.x2d_c00439{left:132.840000px;}
.x5f_c00439{left:133.920000px;}
.x41_c00439{left:135.810000px;}
.xb_c00439{left:138.240000px;}
.x27_c00439{left:139.590000px;}
.x71_c00439{left:141.750000px;}
.x47_c00439{left:143.370000px;}
.x62_c00439{left:144.450000px;}
.x13_c00439{left:148.770000px;}
.x5_c00439{left:149.850000px;}
.x1a_c00439{left:151.200000px;}
.x6d_c00439{left:152.820000px;}
.x4e_c00439{left:155.520000px;}
.x66_c00439{left:156.870000px;}
.x36_c00439{left:157.950000px;}
.x32_c00439{left:163.620000px;}
.x48_c00439{left:166.320000px;}
.x22_c00439{left:167.400000px;}
.x14_c00439{left:169.290000px;}
.x1b_c00439{left:171.720000px;}
.x42_c00439{left:173.070000px;}
.x63_c00439{left:174.960000px;}
.xc_c00439{left:177.120000px;}
.x6c_c00439{left:178.200000px;}
.x76_c00439{left:179.550000px;}
.x37_c00439{left:181.170000px;}
.x1_c00439{left:183.060000px;}
.x28_c00439{left:184.410000px;}
.x2e_c00439{left:186.030000px;}
.x7f_c00439{left:187.110000px;}
.x43_c00439{left:189.270000px;}
.x54_c00439{left:190.620000px;}
.x23_c00439{left:194.670000px;}
.xd_c00439{left:198.720000px;}
.x72_c00439{left:199.800000px;}
.x60_c00439{left:200.880000px;}
.x3c_c00439{left:204.930000px;}
.x69_c00439{left:208.710000px;}
.x4f_c00439{left:211.140000px;}
.x29_c00439{left:213.570000px;}
.x87_c00439{left:215.460000px;}
.x64_c00439{left:218.430000px;}
.x5b_c00439{left:219.510000px;}
.x79_c00439{left:222.210000px;}
.x55_c00439{left:223.290000px;}
.x2f_c00439{left:224.640000px;}
.x7e_c00439{left:227.880000px;}
.x4b_c00439{left:230.040000px;}
.x44_c00439{left:231.390000px;}
.x70_c00439{left:232.740000px;}
.x1c_c00439{left:235.440000px;}
.x5c_c00439{left:237.060000px;}
.x38_c00439{left:240.300000px;}
.x15_c00439{left:241.920000px;}
.x24_c00439{left:244.350000px;}
.x3d_c00439{left:245.970000px;}
.x50_c00439{left:248.940000px;}
.x6_c00439{left:250.290000px;}
.x7a_c00439{left:252.180000px;}
.x2_c00439{left:254.340000px;}
.x65_c00439{left:255.690000px;}
.xe_c00439{left:260.280000px;}
.x39_c00439{left:262.440000px;}
.x16_c00439{left:264.330000px;}
.x7_c00439{left:266.220000px;}
.x1d_c00439{left:269.190000px;}
.x77_c00439{left:272.430000px;}
.x7b_c00439{left:273.780000px;}
.x85_c00439{left:276.750000px;}
.x2a_c00439{left:278.370000px;}
.xf_c00439{left:279.720000px;}
.x51_c00439{left:282.690000px;}
.x25_c00439{left:286.470000px;}
.x8_c00439{left:288.900000px;}
.x88_c00439{left:291.060000px;}
.x17_c00439{left:292.140000px;}
.x4c_c00439{left:294.570000px;}
.x10_c00439{left:297.000000px;}
.x1e_c00439{left:300.240000px;}
.x45_c00439{left:301.320000px;}
.x56_c00439{left:306.450000px;}
.x3e_c00439{left:308.340000px;}
.x30_c00439{left:311.310000px;}
.x3a_c00439{left:312.660000px;}
.x73_c00439{left:315.630000px;}
.x1f_c00439{left:317.250000px;}
.x6e_c00439{left:320.220000px;}
.x7c_c00439{left:322.650000px;}
.x82_c00439{left:325.620000px;}
.x11_c00439{left:329.940000px;}
.x67_c00439{left:336.690000px;}
.x20_c00439{left:349.650000px;}
.x52_c00439{left:354.240000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.fs4_c00439{font-size:51.333333pt;}
.fs6_c00439{font-size:52.266667pt;}
.fs2_c00439{font-size:53.200000pt;}
.fs9_c00439{font-size:55.066667pt;}
.fs7_c00439{font-size:56.933333pt;}
.fs5_c00439{font-size:57.866667pt;}
.fs8_c00439{font-size:58.800000pt;}
.fsa_c00439{font-size:59.733333pt;}
.fs3_c00439{font-size:60.666667pt;}
.fs0_c00439{font-size:62.533333pt;}
.fs1_c00439{font-size:64.400000pt;}
.fsb_c00439{font-size:67.200000pt;}
.y0_c00439{bottom:0.000000pt;}
.y21_c00439{bottom:23.221333pt;}
.y20_c00439{bottom:39.000000pt;}
.y1f_c00439{bottom:53.998667pt;}
.y1e_c00439{bottom:67.253333pt;}
.y1d_c00439{bottom:83.382667pt;}
.y1c_c00439{bottom:98.689333pt;}
.y1b_c00439{bottom:113.197333pt;}
.y1a_c00439{bottom:128.078667pt;}
.y19_c00439{bottom:143.038667pt;}
.y18_c00439{bottom:158.121333pt;}
.y17_c00439{bottom:173.897333pt;}
.y16_c00439{bottom:188.621333pt;}
.y15_c00439{bottom:203.821333pt;}
.y14_c00439{bottom:219.081333pt;}
.y13_c00439{bottom:233.825333pt;}
.y12_c00439{bottom:248.502667pt;}
.y11_c00439{bottom:264.302667pt;}
.y10_c00439{bottom:279.293333pt;}
.yf_c00439{bottom:294.668000pt;}
.ye_c00439{bottom:310.021333pt;}
.yd_c00439{bottom:324.656000pt;}
.yc_c00439{bottom:339.902667pt;}
.yb_c00439{bottom:354.478667pt;}
.ya_c00439{bottom:369.704000pt;}
.y9_c00439{bottom:384.982667pt;}
.y8_c00439{bottom:400.110667pt;}
.y7_c00439{bottom:415.414667pt;}
.y6_c00439{bottom:429.621333pt;}
.y5_c00439{bottom:444.513333pt;}
.y4_c00439{bottom:459.644000pt;}
.y3_c00439{bottom:474.785333pt;}
.y2_c00439{bottom:490.241333pt;}
.y1_c00439{bottom:502.689333pt;}
.h5_c00439{height:51.333333pt;}
.h7_c00439{height:52.266667pt;}
.h3_c00439{height:53.200000pt;}
.ha_c00439{height:55.066667pt;}
.h8_c00439{height:56.933333pt;}
.h6_c00439{height:57.866667pt;}
.h9_c00439{height:58.800000pt;}
.hb_c00439{height:59.733333pt;}
.h4_c00439{height:60.666667pt;}
.h1_c00439{height:62.533333pt;}
.h2_c00439{height:64.400000pt;}
.hc_c00439{height:67.200000pt;}
.h0_c00439{height:540.666667pt;}
.w0_c00439{width:319.200000pt;}
.w1_c00439{width:319.333333pt;}
.x0_c00439{left:0.000000pt;}
.x4d_c00439{left:30.000000pt;}
.x80_c00439{left:32.160000pt;}
.x7d_c00439{left:33.360000pt;}
.x74_c00439{left:34.320000pt;}
.x6a_c00439{left:35.520000pt;}
.x5d_c00439{left:37.680000pt;}
.x53_c00439{left:38.640000pt;}
.x3f_c00439{left:40.080000pt;}
.x33_c00439{left:41.280000pt;}
.x3_c00439{left:42.720000pt;}
.x9_c00439{left:43.920000pt;}
.x81_c00439{left:48.240000pt;}
.x68_c00439{left:53.280000pt;}
.x61_c00439{left:55.200000pt;}
.x78_c00439{left:56.160000pt;}
.x18_c00439{left:57.120000pt;}
.x49_c00439{left:58.320000pt;}
.x6f_c00439{left:60.720000pt;}
.x40_c00439{left:65.040000pt;}
.x59_c00439{left:66.000000pt;}
.x57_c00439{left:68.400000pt;}
.x75_c00439{left:70.800000pt;}
.x6b_c00439{left:72.240000pt;}
.x46_c00439{left:73.440000pt;}
.x34_c00439{left:76.560000pt;}
.x5a_c00439{left:78.480000pt;}
.x21_c00439{left:80.880000pt;}
.x2b_c00439{left:83.280000pt;}
.x58_c00439{left:85.920000pt;}
.x4_c00439{left:87.360000pt;}
.x83_c00439{left:90.960000pt;}
.x12_c00439{left:92.400000pt;}
.x35_c00439{left:96.480000pt;}
.x5e_c00439{left:99.840000pt;}
.x2c_c00439{left:100.800000pt;}
.x19_c00439{left:102.240000pt;}
.x31_c00439{left:103.200000pt;}
.xa_c00439{left:105.120000pt;}
.x84_c00439{left:106.320000pt;}
.x26_c00439{left:108.000000pt;}
.x3b_c00439{left:109.680000pt;}
.x86_c00439{left:113.040000pt;}
.x4a_c00439{left:117.120000pt;}
.x2d_c00439{left:118.080000pt;}
.x5f_c00439{left:119.040000pt;}
.x41_c00439{left:120.720000pt;}
.xb_c00439{left:122.880000pt;}
.x27_c00439{left:124.080000pt;}
.x71_c00439{left:126.000000pt;}
.x47_c00439{left:127.440000pt;}
.x62_c00439{left:128.400000pt;}
.x13_c00439{left:132.240000pt;}
.x5_c00439{left:133.200000pt;}
.x1a_c00439{left:134.400000pt;}
.x6d_c00439{left:135.840000pt;}
.x4e_c00439{left:138.240000pt;}
.x66_c00439{left:139.440000pt;}
.x36_c00439{left:140.400000pt;}
.x32_c00439{left:145.440000pt;}
.x48_c00439{left:147.840000pt;}
.x22_c00439{left:148.800000pt;}
.x14_c00439{left:150.480000pt;}
.x1b_c00439{left:152.640000pt;}
.x42_c00439{left:153.840000pt;}
.x63_c00439{left:155.520000pt;}
.xc_c00439{left:157.440000pt;}
.x6c_c00439{left:158.400000pt;}
.x76_c00439{left:159.600000pt;}
.x37_c00439{left:161.040000pt;}
.x1_c00439{left:162.720000pt;}
.x28_c00439{left:163.920000pt;}
.x2e_c00439{left:165.360000pt;}
.x7f_c00439{left:166.320000pt;}
.x43_c00439{left:168.240000pt;}
.x54_c00439{left:169.440000pt;}
.x23_c00439{left:173.040000pt;}
.xd_c00439{left:176.640000pt;}
.x72_c00439{left:177.600000pt;}
.x60_c00439{left:178.560000pt;}
.x3c_c00439{left:182.160000pt;}
.x69_c00439{left:185.520000pt;}
.x4f_c00439{left:187.680000pt;}
.x29_c00439{left:189.840000pt;}
.x87_c00439{left:191.520000pt;}
.x64_c00439{left:194.160000pt;}
.x5b_c00439{left:195.120000pt;}
.x79_c00439{left:197.520000pt;}
.x55_c00439{left:198.480000pt;}
.x2f_c00439{left:199.680000pt;}
.x7e_c00439{left:202.560000pt;}
.x4b_c00439{left:204.480000pt;}
.x44_c00439{left:205.680000pt;}
.x70_c00439{left:206.880000pt;}
.x1c_c00439{left:209.280000pt;}
.x5c_c00439{left:210.720000pt;}
.x38_c00439{left:213.600000pt;}
.x15_c00439{left:215.040000pt;}
.x24_c00439{left:217.200000pt;}
.x3d_c00439{left:218.640000pt;}
.x50_c00439{left:221.280000pt;}
.x6_c00439{left:222.480000pt;}
.x7a_c00439{left:224.160000pt;}
.x2_c00439{left:226.080000pt;}
.x65_c00439{left:227.280000pt;}
.xe_c00439{left:231.360000pt;}
.x39_c00439{left:233.280000pt;}
.x16_c00439{left:234.960000pt;}
.x7_c00439{left:236.640000pt;}
.x1d_c00439{left:239.280000pt;}
.x77_c00439{left:242.160000pt;}
.x7b_c00439{left:243.360000pt;}
.x85_c00439{left:246.000000pt;}
.x2a_c00439{left:247.440000pt;}
.xf_c00439{left:248.640000pt;}
.x51_c00439{left:251.280000pt;}
.x25_c00439{left:254.640000pt;}
.x8_c00439{left:256.800000pt;}
.x88_c00439{left:258.720000pt;}
.x17_c00439{left:259.680000pt;}
.x4c_c00439{left:261.840000pt;}
.x10_c00439{left:264.000000pt;}
.x1e_c00439{left:266.880000pt;}
.x45_c00439{left:267.840000pt;}
.x56_c00439{left:272.400000pt;}
.x3e_c00439{left:274.080000pt;}
.x30_c00439{left:276.720000pt;}
.x3a_c00439{left:277.920000pt;}
.x73_c00439{left:280.560000pt;}
.x1f_c00439{left:282.000000pt;}
.x6e_c00439{left:284.640000pt;}
.x7c_c00439{left:286.800000pt;}
.x82_c00439{left:289.440000pt;}
.x11_c00439{left:293.280000pt;}
.x67_c00439{left:299.280000pt;}
.x20_c00439{left:310.800000pt;}
.x52_c00439{left:314.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00440 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00440 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00440 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00440 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00440.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdb_c00440{transform:matrix(0.038137,-0.000496,0.003250,0.249979,0,0);-ms-transform:matrix(0.038137,-0.000496,0.003250,0.249979,0,0);-webkit-transform:matrix(0.038137,-0.000496,0.003250,0.249979,0,0);}
.mc8_c00440{transform:matrix(0.122730,-0.001595,0.003250,0.249979,0,0);-ms-transform:matrix(0.122730,-0.001595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.122730,-0.001595,0.003250,0.249979,0,0);}
.mc6_c00440{transform:matrix(0.127489,-0.001657,0.003250,0.249979,0,0);-ms-transform:matrix(0.127489,-0.001657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127489,-0.001657,0.003250,0.249979,0,0);}
.mc9_c00440{transform:matrix(0.129524,-0.001684,0.003250,0.249979,0,0);-ms-transform:matrix(0.129524,-0.001684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.129524,-0.001684,0.003250,0.249979,0,0);}
.m48_c00440{transform:matrix(0.136928,-0.001780,0.003250,0.249979,0,0);-ms-transform:matrix(0.136928,-0.001780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.136928,-0.001780,0.003250,0.249979,0,0);}
.mcc_c00440{transform:matrix(0.137693,-0.001790,0.003250,0.249979,0,0);-ms-transform:matrix(0.137693,-0.001790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.137693,-0.001790,0.003250,0.249979,0,0);}
.mc7_c00440{transform:matrix(0.138793,-0.001804,0.003250,0.249979,0,0);-ms-transform:matrix(0.138793,-0.001804,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138793,-0.001804,0.003250,0.249979,0,0);}
.mca_c00440{transform:matrix(0.139593,-0.001815,0.003250,0.249979,0,0);-ms-transform:matrix(0.139593,-0.001815,0.003250,0.249979,0,0);-webkit-transform:matrix(0.139593,-0.001815,0.003250,0.249979,0,0);}
.mcd_c00440{transform:matrix(0.140478,-0.001826,0.003250,0.249979,0,0);-ms-transform:matrix(0.140478,-0.001826,0.003250,0.249979,0,0);-webkit-transform:matrix(0.140478,-0.001826,0.003250,0.249979,0,0);}
.mcb_c00440{transform:matrix(0.140798,-0.001830,0.003250,0.249979,0,0);-ms-transform:matrix(0.140798,-0.001830,0.003250,0.249979,0,0);-webkit-transform:matrix(0.140798,-0.001830,0.003250,0.249979,0,0);}
.ma3_c00440{transform:matrix(0.155247,-0.002018,0.003250,0.249979,0,0);-ms-transform:matrix(0.155247,-0.002018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155247,-0.002018,0.003250,0.249979,0,0);}
.mbb_c00440{transform:matrix(0.155622,-0.002023,0.003250,0.249979,0,0);-ms-transform:matrix(0.155622,-0.002023,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155622,-0.002023,0.003250,0.249979,0,0);}
.m25_c00440{transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);-ms-transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);}
.m7c_c00440{transform:matrix(0.158262,-0.002057,0.003250,0.249979,0,0);-ms-transform:matrix(0.158262,-0.002057,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158262,-0.002057,0.003250,0.249979,0,0);}
.m37_c00440{transform:matrix(0.158537,-0.002061,0.003250,0.249979,0,0);-ms-transform:matrix(0.158537,-0.002061,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158537,-0.002061,0.003250,0.249979,0,0);}
.md_c00440{transform:matrix(0.159587,-0.002075,0.003250,0.249979,0,0);-ms-transform:matrix(0.159587,-0.002075,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159587,-0.002075,0.003250,0.249979,0,0);}
.m1b_c00440{transform:matrix(0.159791,-0.002077,0.003250,0.249979,0,0);-ms-transform:matrix(0.159791,-0.002077,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159791,-0.002077,0.003250,0.249979,0,0);}
.meb_c00440{transform:matrix(0.161256,-0.002096,0.003250,0.249979,0,0);-ms-transform:matrix(0.161256,-0.002096,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161256,-0.002096,0.003250,0.249979,0,0);}
.m40_c00440{transform:matrix(0.162901,-0.002118,0.003250,0.249979,0,0);-ms-transform:matrix(0.162901,-0.002118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162901,-0.002118,0.003250,0.249979,0,0);}
.m0_c00440{transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);}
.mc1_c00440{transform:matrix(0.164166,-0.002134,0.003250,0.249979,0,0);-ms-transform:matrix(0.164166,-0.002134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164166,-0.002134,0.003250,0.249979,0,0);}
.mab_c00440{transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);-ms-transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);}
.m57_c00440{transform:matrix(0.165171,-0.002147,0.003250,0.249979,0,0);-ms-transform:matrix(0.165171,-0.002147,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165171,-0.002147,0.003250,0.249979,0,0);}
.m2_c00440{transform:matrix(0.165376,-0.002150,0.003250,0.249979,0,0);-ms-transform:matrix(0.165376,-0.002150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165376,-0.002150,0.003250,0.249979,0,0);}
.me6_c00440{transform:matrix(0.167141,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167141,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167141,-0.002173,0.003250,0.249979,0,0);}
.md6_c00440{transform:matrix(0.167611,-0.002179,0.003250,0.249979,0,0);-ms-transform:matrix(0.167611,-0.002179,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167611,-0.002179,0.003250,0.249979,0,0);}
.m46_c00440{transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);-ms-transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);}
.md7_c00440{transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);-ms-transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168656,-0.002193,0.003250,0.249979,0,0);}
.mda_c00440{transform:matrix(0.169326,-0.002201,0.003250,0.249979,0,0);-ms-transform:matrix(0.169326,-0.002201,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169326,-0.002201,0.003250,0.249979,0,0);}
.m8b_c00440{transform:matrix(0.169346,-0.002201,0.003250,0.249979,0,0);-ms-transform:matrix(0.169346,-0.002201,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169346,-0.002201,0.003250,0.249979,0,0);}
.m42_c00440{transform:matrix(0.169411,-0.002202,0.003250,0.249979,0,0);-ms-transform:matrix(0.169411,-0.002202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169411,-0.002202,0.003250,0.249979,0,0);}
.ma_c00440{transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-ms-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);}
.m19_c00440{transform:matrix(0.169976,-0.002210,0.003250,0.249979,0,0);-ms-transform:matrix(0.169976,-0.002210,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169976,-0.002210,0.003250,0.249979,0,0);}
.m49_c00440{transform:matrix(0.169996,-0.002210,0.003250,0.249979,0,0);-ms-transform:matrix(0.169996,-0.002210,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169996,-0.002210,0.003250,0.249979,0,0);}
.m31_c00440{transform:matrix(0.170451,-0.002216,0.003250,0.249979,0,0);-ms-transform:matrix(0.170451,-0.002216,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170451,-0.002216,0.003250,0.249979,0,0);}
.mc5_c00440{transform:matrix(0.170491,-0.002216,0.003250,0.249979,0,0);-ms-transform:matrix(0.170491,-0.002216,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170491,-0.002216,0.003250,0.249979,0,0);}
.m3b_c00440{transform:matrix(0.171246,-0.002226,0.003250,0.249979,0,0);-ms-transform:matrix(0.171246,-0.002226,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171246,-0.002226,0.003250,0.249979,0,0);}
.m36_c00440{transform:matrix(0.171566,-0.002230,0.003250,0.249979,0,0);-ms-transform:matrix(0.171566,-0.002230,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171566,-0.002230,0.003250,0.249979,0,0);}
.m69_c00440{transform:matrix(0.171625,-0.002231,0.003250,0.249979,0,0);-ms-transform:matrix(0.171625,-0.002231,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171625,-0.002231,0.003250,0.249979,0,0);}
.m3c_c00440{transform:matrix(0.171725,-0.002232,0.003250,0.249979,0,0);-ms-transform:matrix(0.171725,-0.002232,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171725,-0.002232,0.003250,0.249979,0,0);}
.m8e_c00440{transform:matrix(0.172050,-0.002237,0.003250,0.249979,0,0);-ms-transform:matrix(0.172050,-0.002237,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172050,-0.002237,0.003250,0.249979,0,0);}
.m78_c00440{transform:matrix(0.172175,-0.002238,0.003250,0.249979,0,0);-ms-transform:matrix(0.172175,-0.002238,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172175,-0.002238,0.003250,0.249979,0,0);}
.m38_c00440{transform:matrix(0.172250,-0.002239,0.003250,0.249979,0,0);-ms-transform:matrix(0.172250,-0.002239,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172250,-0.002239,0.003250,0.249979,0,0);}
.me0_c00440{transform:matrix(0.172330,-0.002240,0.003250,0.249979,0,0);-ms-transform:matrix(0.172330,-0.002240,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172330,-0.002240,0.003250,0.249979,0,0);}
.ma1_c00440{transform:matrix(0.172335,-0.002240,0.003250,0.249979,0,0);-ms-transform:matrix(0.172335,-0.002240,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172335,-0.002240,0.003250,0.249979,0,0);}
.m1_c00440{transform:matrix(0.172435,-0.002242,0.003250,0.249979,0,0);-ms-transform:matrix(0.172435,-0.002242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172435,-0.002242,0.003250,0.249979,0,0);}
.m4a_c00440{transform:matrix(0.173260,-0.002252,0.003250,0.249979,0,0);-ms-transform:matrix(0.173260,-0.002252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173260,-0.002252,0.003250,0.249979,0,0);}
.m22_c00440{transform:matrix(0.173325,-0.002253,0.003250,0.249979,0,0);-ms-transform:matrix(0.173325,-0.002253,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173325,-0.002253,0.003250,0.249979,0,0);}
.m76_c00440{transform:matrix(0.173410,-0.002254,0.003250,0.249979,0,0);-ms-transform:matrix(0.173410,-0.002254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173410,-0.002254,0.003250,0.249979,0,0);}
.me_c00440{transform:matrix(0.173425,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173425,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173425,-0.002255,0.003250,0.249979,0,0);}
.m1d_c00440{transform:matrix(0.173935,-0.002261,0.003250,0.249979,0,0);-ms-transform:matrix(0.173935,-0.002261,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173935,-0.002261,0.003250,0.249979,0,0);}
.mbe_c00440{transform:matrix(0.174895,-0.002274,0.003250,0.249979,0,0);-ms-transform:matrix(0.174895,-0.002274,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174895,-0.002274,0.003250,0.249979,0,0);}
.mee_c00440{transform:matrix(0.175040,-0.002276,0.003250,0.249979,0,0);-ms-transform:matrix(0.175040,-0.002276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175040,-0.002276,0.003250,0.249979,0,0);}
.m9c_c00440{transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);-ms-transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175965,-0.002288,0.003250,0.249979,0,0);}
.mdd_c00440{transform:matrix(0.175990,-0.002288,0.003250,0.249979,0,0);-ms-transform:matrix(0.175990,-0.002288,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175990,-0.002288,0.003250,0.249979,0,0);}
.m88_c00440{transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);}
.me8_c00440{transform:matrix(0.176350,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176350,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176350,-0.002293,0.003250,0.249979,0,0);}
.m68_c00440{transform:matrix(0.176365,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176365,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176365,-0.002293,0.003250,0.249979,0,0);}
.m32_c00440{transform:matrix(0.176925,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176925,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176925,-0.002300,0.003250,0.249979,0,0);}
.m3d_c00440{transform:matrix(0.177095,-0.002302,0.003250,0.249979,0,0);-ms-transform:matrix(0.177095,-0.002302,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177095,-0.002302,0.003250,0.249979,0,0);}
.m95_c00440{transform:matrix(0.177280,-0.002305,0.003250,0.249979,0,0);-ms-transform:matrix(0.177280,-0.002305,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177280,-0.002305,0.003250,0.249979,0,0);}
.mea_c00440{transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);-ms-transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177610,-0.002309,0.003250,0.249979,0,0);}
.mef_c00440{transform:matrix(0.177885,-0.002313,0.003250,0.249979,0,0);-ms-transform:matrix(0.177885,-0.002313,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177885,-0.002313,0.003250,0.249979,0,0);}
.m4f_c00440{transform:matrix(0.178310,-0.002318,0.003250,0.249979,0,0);-ms-transform:matrix(0.178310,-0.002318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178310,-0.002318,0.003250,0.249979,0,0);}
.m16_c00440{transform:matrix(0.179070,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179070,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179070,-0.002328,0.003250,0.249979,0,0);}
.md0_c00440{transform:matrix(0.179620,-0.002335,0.003250,0.249979,0,0);-ms-transform:matrix(0.179620,-0.002335,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179620,-0.002335,0.003250,0.249979,0,0);}
.m3_c00440{transform:matrix(0.179820,-0.002338,0.003250,0.249979,0,0);-ms-transform:matrix(0.179820,-0.002338,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179820,-0.002338,0.003250,0.249979,0,0);}
.m2b_c00440{transform:matrix(0.180580,-0.002348,0.003250,0.249979,0,0);-ms-transform:matrix(0.180580,-0.002348,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180580,-0.002348,0.003250,0.249979,0,0);}
.m1f_c00440{transform:matrix(0.181145,-0.002355,0.003250,0.249979,0,0);-ms-transform:matrix(0.181145,-0.002355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181145,-0.002355,0.003250,0.249979,0,0);}
.md2_c00440{transform:matrix(0.181435,-0.002359,0.003250,0.249979,0,0);-ms-transform:matrix(0.181435,-0.002359,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181435,-0.002359,0.003250,0.249979,0,0);}
.m91_c00440{transform:matrix(0.181450,-0.002359,0.003250,0.249979,0,0);-ms-transform:matrix(0.181450,-0.002359,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181450,-0.002359,0.003250,0.249979,0,0);}
.mc2_c00440{transform:matrix(0.181535,-0.002360,0.003250,0.249979,0,0);-ms-transform:matrix(0.181535,-0.002360,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181535,-0.002360,0.003250,0.249979,0,0);}
.m24_c00440{transform:matrix(0.182325,-0.002370,0.003250,0.249979,0,0);-ms-transform:matrix(0.182325,-0.002370,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182325,-0.002370,0.003250,0.249979,0,0);}
.m89_c00440{transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);-ms-transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182570,-0.002373,0.003250,0.249979,0,0);}
.mc4_c00440{transform:matrix(0.182995,-0.002379,0.003250,0.249979,0,0);-ms-transform:matrix(0.182995,-0.002379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182995,-0.002379,0.003250,0.249979,0,0);}
.m54_c00440{transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);-ms-transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183130,-0.002381,0.003250,0.249979,0,0);}
.mbf_c00440{transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);-ms-transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183265,-0.002382,0.003250,0.249979,0,0);}
.m35_c00440{transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183270,-0.002383,0.003250,0.249979,0,0);}
.ma5_c00440{transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183320,-0.002383,0.003250,0.249979,0,0);}
.mb1_c00440{transform:matrix(0.183984,-0.002392,0.003250,0.249979,0,0);-ms-transform:matrix(0.183984,-0.002392,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183984,-0.002392,0.003250,0.249979,0,0);}
.ma0_c00440{transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184109,-0.002393,0.003250,0.249979,0,0);}
.mc0_c00440{transform:matrix(0.184494,-0.002398,0.003250,0.249979,0,0);-ms-transform:matrix(0.184494,-0.002398,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184494,-0.002398,0.003250,0.249979,0,0);}
.m21_c00440{transform:matrix(0.184714,-0.002401,0.003250,0.249979,0,0);-ms-transform:matrix(0.184714,-0.002401,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184714,-0.002401,0.003250,0.249979,0,0);}
.m3f_c00440{transform:matrix(0.184909,-0.002404,0.003250,0.249979,0,0);-ms-transform:matrix(0.184909,-0.002404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184909,-0.002404,0.003250,0.249979,0,0);}
.me3_c00440{transform:matrix(0.185134,-0.002407,0.003250,0.249979,0,0);-ms-transform:matrix(0.185134,-0.002407,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185134,-0.002407,0.003250,0.249979,0,0);}
.me5_c00440{transform:matrix(0.185239,-0.002408,0.003250,0.249979,0,0);-ms-transform:matrix(0.185239,-0.002408,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185239,-0.002408,0.003250,0.249979,0,0);}
.mb4_c00440{transform:matrix(0.185379,-0.002410,0.003250,0.249979,0,0);-ms-transform:matrix(0.185379,-0.002410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185379,-0.002410,0.003250,0.249979,0,0);}
.m12_c00440{transform:matrix(0.185589,-0.002413,0.003250,0.249979,0,0);-ms-transform:matrix(0.185589,-0.002413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185589,-0.002413,0.003250,0.249979,0,0);}
.m51_c00440{transform:matrix(0.185639,-0.002413,0.003250,0.249979,0,0);-ms-transform:matrix(0.185639,-0.002413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185639,-0.002413,0.003250,0.249979,0,0);}
.m44_c00440{transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);}
.mb8_c00440{transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186339,-0.002422,0.003250,0.249979,0,0);}
.mbc_c00440{transform:matrix(0.187029,-0.002431,0.003250,0.249979,0,0);-ms-transform:matrix(0.187029,-0.002431,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187029,-0.002431,0.003250,0.249979,0,0);}
.mc3_c00440{transform:matrix(0.187889,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187889,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187889,-0.002443,0.003250,0.249979,0,0);}
.mba_c00440{transform:matrix(0.187904,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187904,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187904,-0.002443,0.003250,0.249979,0,0);}
.m41_c00440{transform:matrix(0.187969,-0.002444,0.003250,0.249979,0,0);-ms-transform:matrix(0.187969,-0.002444,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187969,-0.002444,0.003250,0.249979,0,0);}
.m97_c00440{transform:matrix(0.188294,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188294,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188294,-0.002448,0.003250,0.249979,0,0);}
.me1_c00440{transform:matrix(0.188389,-0.002449,0.003250,0.249979,0,0);-ms-transform:matrix(0.188389,-0.002449,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188389,-0.002449,0.003250,0.249979,0,0);}
.m79_c00440{transform:matrix(0.188804,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188804,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188804,-0.002454,0.003250,0.249979,0,0);}
.ma7_c00440{transform:matrix(0.189579,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189579,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189579,-0.002465,0.003250,0.249979,0,0);}
.m75_c00440{transform:matrix(0.189764,-0.002467,0.003250,0.249979,0,0);-ms-transform:matrix(0.189764,-0.002467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189764,-0.002467,0.003250,0.249979,0,0);}
.m5b_c00440{transform:matrix(0.189984,-0.002470,0.003250,0.249979,0,0);-ms-transform:matrix(0.189984,-0.002470,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189984,-0.002470,0.003250,0.249979,0,0);}
.m59_c00440{transform:matrix(0.190114,-0.002471,0.003250,0.249979,0,0);-ms-transform:matrix(0.190114,-0.002471,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190114,-0.002471,0.003250,0.249979,0,0);}
.med_c00440{transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190849,-0.002481,0.003250,0.249979,0,0);}
.m5e_c00440{transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);-ms-transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);}
.m94_c00440{transform:matrix(0.191839,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191839,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191839,-0.002494,0.003250,0.249979,0,0);}
.m47_c00440{transform:matrix(0.192099,-0.002497,0.003250,0.249979,0,0);-ms-transform:matrix(0.192099,-0.002497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192099,-0.002497,0.003250,0.249979,0,0);}
.m27_c00440{transform:matrix(0.192139,-0.002498,0.003250,0.249979,0,0);-ms-transform:matrix(0.192139,-0.002498,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192139,-0.002498,0.003250,0.249979,0,0);}
.m72_c00440{transform:matrix(0.192339,-0.002500,0.003250,0.249979,0,0);-ms-transform:matrix(0.192339,-0.002500,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192339,-0.002500,0.003250,0.249979,0,0);}
.mf1_c00440{transform:matrix(0.192424,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192424,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192424,-0.002502,0.003250,0.249979,0,0);}
.m26_c00440{transform:matrix(0.192444,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192444,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192444,-0.002502,0.003250,0.249979,0,0);}
.m71_c00440{transform:matrix(0.192449,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192449,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192449,-0.002502,0.003250,0.249979,0,0);}
.me7_c00440{transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);}
.m8f_c00440{transform:matrix(0.192814,-0.002507,0.003250,0.249979,0,0);-ms-transform:matrix(0.192814,-0.002507,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192814,-0.002507,0.003250,0.249979,0,0);}
.mb6_c00440{transform:matrix(0.192859,-0.002507,0.003250,0.249979,0,0);-ms-transform:matrix(0.192859,-0.002507,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192859,-0.002507,0.003250,0.249979,0,0);}
.mb_c00440{transform:matrix(0.193444,-0.002515,0.003250,0.249979,0,0);-ms-transform:matrix(0.193444,-0.002515,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193444,-0.002515,0.003250,0.249979,0,0);}
.md5_c00440{transform:matrix(0.193609,-0.002517,0.003250,0.249979,0,0);-ms-transform:matrix(0.193609,-0.002517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193609,-0.002517,0.003250,0.249979,0,0);}
.maf_c00440{transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);-ms-transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);}
.m4_c00440{transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193789,-0.002519,0.003250,0.249979,0,0);}
.m85_c00440{transform:matrix(0.193794,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193794,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193794,-0.002519,0.003250,0.249979,0,0);}
.m62_c00440{transform:matrix(0.194744,-0.002532,0.003250,0.249979,0,0);-ms-transform:matrix(0.194744,-0.002532,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194744,-0.002532,0.003250,0.249979,0,0);}
.m10_c00440{transform:matrix(0.194854,-0.002533,0.003250,0.249979,0,0);-ms-transform:matrix(0.194854,-0.002533,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194854,-0.002533,0.003250,0.249979,0,0);}
.m50_c00440{transform:matrix(0.195523,-0.002542,0.003250,0.249979,0,0);-ms-transform:matrix(0.195523,-0.002542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195523,-0.002542,0.003250,0.249979,0,0);}
.m7_c00440{transform:matrix(0.195618,-0.002543,0.003250,0.249979,0,0);-ms-transform:matrix(0.195618,-0.002543,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195618,-0.002543,0.003250,0.249979,0,0);}
.m13_c00440{transform:matrix(0.195693,-0.002544,0.003250,0.249979,0,0);-ms-transform:matrix(0.195693,-0.002544,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195693,-0.002544,0.003250,0.249979,0,0);}
.m1c_c00440{transform:matrix(0.196478,-0.002554,0.003250,0.249979,0,0);-ms-transform:matrix(0.196478,-0.002554,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196478,-0.002554,0.003250,0.249979,0,0);}
.m2c_c00440{transform:matrix(0.196873,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196873,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196873,-0.002559,0.003250,0.249979,0,0);}
.m39_c00440{transform:matrix(0.197488,-0.002567,0.003250,0.249979,0,0);-ms-transform:matrix(0.197488,-0.002567,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197488,-0.002567,0.003250,0.249979,0,0);}
.m23_c00440{transform:matrix(0.197578,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197578,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197578,-0.002569,0.003250,0.249979,0,0);}
.m77_c00440{transform:matrix(0.197708,-0.002570,0.003250,0.249979,0,0);-ms-transform:matrix(0.197708,-0.002570,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197708,-0.002570,0.003250,0.249979,0,0);}
.m7f_c00440{transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198813,-0.002585,0.003250,0.249979,0,0);}
.m1a_c00440{transform:matrix(0.199023,-0.002587,0.003250,0.249979,0,0);-ms-transform:matrix(0.199023,-0.002587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199023,-0.002587,0.003250,0.249979,0,0);}
.mec_c00440{transform:matrix(0.199148,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199148,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199148,-0.002589,0.003250,0.249979,0,0);}
.m33_c00440{transform:matrix(0.199253,-0.002590,0.003250,0.249979,0,0);-ms-transform:matrix(0.199253,-0.002590,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199253,-0.002590,0.003250,0.249979,0,0);}
.m20_c00440{transform:matrix(0.199483,-0.002593,0.003250,0.249979,0,0);-ms-transform:matrix(0.199483,-0.002593,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199483,-0.002593,0.003250,0.249979,0,0);}
.mae_c00440{transform:matrix(0.199708,-0.002596,0.003250,0.249979,0,0);-ms-transform:matrix(0.199708,-0.002596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199708,-0.002596,0.003250,0.249979,0,0);}
.mc_c00440{transform:matrix(0.199943,-0.002599,0.003250,0.249979,0,0);-ms-transform:matrix(0.199943,-0.002599,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199943,-0.002599,0.003250,0.249979,0,0);}
.m6_c00440{transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199993,-0.002600,0.003250,0.249979,0,0);}
.m80_c00440{transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);-ms-transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200793,-0.002610,0.003250,0.249979,0,0);}
.m58_c00440{transform:matrix(0.200858,-0.002611,0.003250,0.249979,0,0);-ms-transform:matrix(0.200858,-0.002611,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200858,-0.002611,0.003250,0.249979,0,0);}
.m8c_c00440{transform:matrix(0.201078,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201078,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201078,-0.002614,0.003250,0.249979,0,0);}
.m81_c00440{transform:matrix(0.201253,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201253,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201253,-0.002616,0.003250,0.249979,0,0);}
.m29_c00440{transform:matrix(0.201698,-0.002622,0.003250,0.249979,0,0);-ms-transform:matrix(0.201698,-0.002622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201698,-0.002622,0.003250,0.249979,0,0);}
.me9_c00440{transform:matrix(0.201843,-0.002624,0.003250,0.249979,0,0);-ms-transform:matrix(0.201843,-0.002624,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201843,-0.002624,0.003250,0.249979,0,0);}
.m9a_c00440{transform:matrix(0.201953,-0.002625,0.003250,0.249979,0,0);-ms-transform:matrix(0.201953,-0.002625,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201953,-0.002625,0.003250,0.249979,0,0);}
.mb9_c00440{transform:matrix(0.202233,-0.002629,0.003250,0.249979,0,0);-ms-transform:matrix(0.202233,-0.002629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202233,-0.002629,0.003250,0.249979,0,0);}
.m74_c00440{transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);-ms-transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);}
.m4b_c00440{transform:matrix(0.202468,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202468,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202468,-0.002632,0.003250,0.249979,0,0);}
.m3e_c00440{transform:matrix(0.202863,-0.002637,0.003250,0.249979,0,0);-ms-transform:matrix(0.202863,-0.002637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202863,-0.002637,0.003250,0.249979,0,0);}
.m34_c00440{transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);-ms-transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202978,-0.002639,0.003250,0.249979,0,0);}
.m61_c00440{transform:matrix(0.203423,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203423,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203423,-0.002644,0.003250,0.249979,0,0);}
.m8_c00440{transform:matrix(0.203463,-0.002645,0.003250,0.249979,0,0);-ms-transform:matrix(0.203463,-0.002645,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203463,-0.002645,0.003250,0.249979,0,0);}
.mf0_c00440{transform:matrix(0.203898,-0.002651,0.003250,0.249979,0,0);-ms-transform:matrix(0.203898,-0.002651,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203898,-0.002651,0.003250,0.249979,0,0);}
.md8_c00440{transform:matrix(0.204073,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204073,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204073,-0.002653,0.003250,0.249979,0,0);}
.m9d_c00440{transform:matrix(0.204363,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204363,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204363,-0.002657,0.003250,0.249979,0,0);}
.m1e_c00440{transform:matrix(0.205083,-0.002666,0.003250,0.249979,0,0);-ms-transform:matrix(0.205083,-0.002666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205083,-0.002666,0.003250,0.249979,0,0);}
.m83_c00440{transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205183,-0.002667,0.003250,0.249979,0,0);}
.m28_c00440{transform:matrix(0.205248,-0.002668,0.003250,0.249979,0,0);-ms-transform:matrix(0.205248,-0.002668,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205248,-0.002668,0.003250,0.249979,0,0);}
.me4_c00440{transform:matrix(0.205353,-0.002670,0.003250,0.249979,0,0);-ms-transform:matrix(0.205353,-0.002670,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205353,-0.002670,0.003250,0.249979,0,0);}
.m2a_c00440{transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);-ms-transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205603,-0.002673,0.003250,0.249979,0,0);}
.m63_c00440{transform:matrix(0.205908,-0.002677,0.003250,0.249979,0,0);-ms-transform:matrix(0.205908,-0.002677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205908,-0.002677,0.003250,0.249979,0,0);}
.m55_c00440{transform:matrix(0.206108,-0.002679,0.003250,0.249979,0,0);-ms-transform:matrix(0.206108,-0.002679,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206108,-0.002679,0.003250,0.249979,0,0);}
.m90_c00440{transform:matrix(0.206283,-0.002682,0.003250,0.249979,0,0);-ms-transform:matrix(0.206283,-0.002682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206283,-0.002682,0.003250,0.249979,0,0);}
.ma6_c00440{transform:matrix(0.206443,-0.002684,0.003250,0.249979,0,0);-ms-transform:matrix(0.206443,-0.002684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206443,-0.002684,0.003250,0.249979,0,0);}
.m7a_c00440{transform:matrix(0.206868,-0.002689,0.003250,0.249979,0,0);-ms-transform:matrix(0.206868,-0.002689,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206868,-0.002689,0.003250,0.249979,0,0);}
.mcf_c00440{transform:matrix(0.207013,-0.002691,0.003250,0.249979,0,0);-ms-transform:matrix(0.207013,-0.002691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207013,-0.002691,0.003250,0.249979,0,0);}
.mdf_c00440{transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);-ms-transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207152,-0.002693,0.003250,0.249979,0,0);}
.md3_c00440{transform:matrix(0.207207,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207207,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207207,-0.002694,0.003250,0.249979,0,0);}
.m3a_c00440{transform:matrix(0.207497,-0.002697,0.003250,0.249979,0,0);-ms-transform:matrix(0.207497,-0.002697,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207497,-0.002697,0.003250,0.249979,0,0);}
.m4e_c00440{transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-ms-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);}
.m84_c00440{transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);-ms-transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208877,-0.002715,0.003250,0.249979,0,0);}
.mac_c00440{transform:matrix(0.209217,-0.002720,0.003250,0.249979,0,0);-ms-transform:matrix(0.209217,-0.002720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209217,-0.002720,0.003250,0.249979,0,0);}
.mce_c00440{transform:matrix(0.209672,-0.002726,0.003250,0.249979,0,0);-ms-transform:matrix(0.209672,-0.002726,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209672,-0.002726,0.003250,0.249979,0,0);}
.m5_c00440{transform:matrix(0.210027,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.210027,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210027,-0.002730,0.003250,0.249979,0,0);}
.m73_c00440{transform:matrix(0.210462,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210462,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210462,-0.002736,0.003250,0.249979,0,0);}
.mf_c00440{transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210497,-0.002736,0.003250,0.249979,0,0);}
.m98_c00440{transform:matrix(0.210787,-0.002740,0.003250,0.249979,0,0);-ms-transform:matrix(0.210787,-0.002740,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210787,-0.002740,0.003250,0.249979,0,0);}
.m93_c00440{transform:matrix(0.211197,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211197,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211197,-0.002746,0.003250,0.249979,0,0);}
.md4_c00440{transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211227,-0.002746,0.003250,0.249979,0,0);}
.ma9_c00440{transform:matrix(0.211632,-0.002751,0.003250,0.249979,0,0);-ms-transform:matrix(0.211632,-0.002751,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211632,-0.002751,0.003250,0.249979,0,0);}
.m96_c00440{transform:matrix(0.211787,-0.002753,0.003250,0.249979,0,0);-ms-transform:matrix(0.211787,-0.002753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211787,-0.002753,0.003250,0.249979,0,0);}
.m15_c00440{transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-ms-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);}
.m9e_c00440{transform:matrix(0.212197,-0.002759,0.003250,0.249979,0,0);-ms-transform:matrix(0.212197,-0.002759,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212197,-0.002759,0.003250,0.249979,0,0);}
.m99_c00440{transform:matrix(0.213172,-0.002771,0.003250,0.249979,0,0);-ms-transform:matrix(0.213172,-0.002771,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213172,-0.002771,0.003250,0.249979,0,0);}
.m86_c00440{transform:matrix(0.213812,-0.002780,0.003250,0.249979,0,0);-ms-transform:matrix(0.213812,-0.002780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213812,-0.002780,0.003250,0.249979,0,0);}
.ma2_c00440{transform:matrix(0.214032,-0.002782,0.003250,0.249979,0,0);-ms-transform:matrix(0.214032,-0.002782,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214032,-0.002782,0.003250,0.249979,0,0);}
.m9_c00440{transform:matrix(0.214527,-0.002789,0.003250,0.249979,0,0);-ms-transform:matrix(0.214527,-0.002789,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214527,-0.002789,0.003250,0.249979,0,0);}
.m14_c00440{transform:matrix(0.214587,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214587,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214587,-0.002790,0.003250,0.249979,0,0);}
.m2d_c00440{transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214607,-0.002790,0.003250,0.249979,0,0);}
.m30_c00440{transform:matrix(0.214992,-0.002795,0.003250,0.249979,0,0);-ms-transform:matrix(0.214992,-0.002795,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214992,-0.002795,0.003250,0.249979,0,0);}
.m53_c00440{transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-ms-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);}
.mde_c00440{transform:matrix(0.215447,-0.002801,0.003250,0.249979,0,0);-ms-transform:matrix(0.215447,-0.002801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215447,-0.002801,0.003250,0.249979,0,0);}
.m11_c00440{transform:matrix(0.216017,-0.002808,0.003250,0.249979,0,0);-ms-transform:matrix(0.216017,-0.002808,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216017,-0.002808,0.003250,0.249979,0,0);}
.m6a_c00440{transform:matrix(0.216332,-0.002812,0.003250,0.249979,0,0);-ms-transform:matrix(0.216332,-0.002812,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216332,-0.002812,0.003250,0.249979,0,0);}
.m52_c00440{transform:matrix(0.216712,-0.002817,0.003250,0.249979,0,0);-ms-transform:matrix(0.216712,-0.002817,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216712,-0.002817,0.003250,0.249979,0,0);}
.m43_c00440{transform:matrix(0.217587,-0.002829,0.003250,0.249979,0,0);-ms-transform:matrix(0.217587,-0.002829,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217587,-0.002829,0.003250,0.249979,0,0);}
.m2f_c00440{transform:matrix(0.218087,-0.002835,0.003250,0.249979,0,0);-ms-transform:matrix(0.218087,-0.002835,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218087,-0.002835,0.003250,0.249979,0,0);}
.mb0_c00440{transform:matrix(0.218477,-0.002840,0.003250,0.249979,0,0);-ms-transform:matrix(0.218477,-0.002840,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218477,-0.002840,0.003250,0.249979,0,0);}
.m5f_c00440{transform:matrix(0.218797,-0.002844,0.003250,0.249979,0,0);-ms-transform:matrix(0.218797,-0.002844,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218797,-0.002844,0.003250,0.249979,0,0);}
.mb5_c00440{transform:matrix(0.220041,-0.002861,0.003250,0.249979,0,0);-ms-transform:matrix(0.220041,-0.002861,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220041,-0.002861,0.003250,0.249979,0,0);}
.m66_c00440{transform:matrix(0.220616,-0.002868,0.003250,0.249979,0,0);-ms-transform:matrix(0.220616,-0.002868,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220616,-0.002868,0.003250,0.249979,0,0);}
.m45_c00440{transform:matrix(0.221111,-0.002874,0.003250,0.249979,0,0);-ms-transform:matrix(0.221111,-0.002874,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221111,-0.002874,0.003250,0.249979,0,0);}
.m4c_c00440{transform:matrix(0.221906,-0.002885,0.003250,0.249979,0,0);-ms-transform:matrix(0.221906,-0.002885,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221906,-0.002885,0.003250,0.249979,0,0);}
.m6c_c00440{transform:matrix(0.222156,-0.002888,0.003250,0.249979,0,0);-ms-transform:matrix(0.222156,-0.002888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222156,-0.002888,0.003250,0.249979,0,0);}
.m82_c00440{transform:matrix(0.222181,-0.002888,0.003250,0.249979,0,0);-ms-transform:matrix(0.222181,-0.002888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222181,-0.002888,0.003250,0.249979,0,0);}
.m92_c00440{transform:matrix(0.222391,-0.002891,0.003250,0.249979,0,0);-ms-transform:matrix(0.222391,-0.002891,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222391,-0.002891,0.003250,0.249979,0,0);}
.m5d_c00440{transform:matrix(0.222431,-0.002892,0.003250,0.249979,0,0);-ms-transform:matrix(0.222431,-0.002892,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222431,-0.002892,0.003250,0.249979,0,0);}
.m4d_c00440{transform:matrix(0.223596,-0.002907,0.003250,0.249979,0,0);-ms-transform:matrix(0.223596,-0.002907,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223596,-0.002907,0.003250,0.249979,0,0);}
.mdc_c00440{transform:matrix(0.223916,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223916,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223916,-0.002911,0.003250,0.249979,0,0);}
.m67_c00440{transform:matrix(0.224496,-0.002918,0.003250,0.249979,0,0);-ms-transform:matrix(0.224496,-0.002918,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224496,-0.002918,0.003250,0.249979,0,0);}
.me2_c00440{transform:matrix(0.225126,-0.002927,0.003250,0.249979,0,0);-ms-transform:matrix(0.225126,-0.002927,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225126,-0.002927,0.003250,0.249979,0,0);}
.m6b_c00440{transform:matrix(0.225206,-0.002928,0.003250,0.249979,0,0);-ms-transform:matrix(0.225206,-0.002928,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225206,-0.002928,0.003250,0.249979,0,0);}
.m5c_c00440{transform:matrix(0.225431,-0.002931,0.003250,0.249979,0,0);-ms-transform:matrix(0.225431,-0.002931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225431,-0.002931,0.003250,0.249979,0,0);}
.md9_c00440{transform:matrix(0.225876,-0.002936,0.003250,0.249979,0,0);-ms-transform:matrix(0.225876,-0.002936,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225876,-0.002936,0.003250,0.249979,0,0);}
.m65_c00440{transform:matrix(0.226801,-0.002948,0.003250,0.249979,0,0);-ms-transform:matrix(0.226801,-0.002948,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226801,-0.002948,0.003250,0.249979,0,0);}
.m70_c00440{transform:matrix(0.229016,-0.002977,0.003250,0.249979,0,0);-ms-transform:matrix(0.229016,-0.002977,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229016,-0.002977,0.003250,0.249979,0,0);}
.m7d_c00440{transform:matrix(0.229566,-0.002984,0.003250,0.249979,0,0);-ms-transform:matrix(0.229566,-0.002984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229566,-0.002984,0.003250,0.249979,0,0);}
.ma8_c00440{transform:matrix(0.229681,-0.002986,0.003250,0.249979,0,0);-ms-transform:matrix(0.229681,-0.002986,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229681,-0.002986,0.003250,0.249979,0,0);}
.m6f_c00440{transform:matrix(0.229891,-0.002989,0.003250,0.249979,0,0);-ms-transform:matrix(0.229891,-0.002989,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229891,-0.002989,0.003250,0.249979,0,0);}
.m8a_c00440{transform:matrix(0.230396,-0.002995,0.003250,0.249979,0,0);-ms-transform:matrix(0.230396,-0.002995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230396,-0.002995,0.003250,0.249979,0,0);}
.m7e_c00440{transform:matrix(0.231910,-0.003015,0.003250,0.249979,0,0);-ms-transform:matrix(0.231910,-0.003015,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231910,-0.003015,0.003250,0.249979,0,0);}
.m87_c00440{transform:matrix(0.233045,-0.003030,0.003250,0.249979,0,0);-ms-transform:matrix(0.233045,-0.003030,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233045,-0.003030,0.003250,0.249979,0,0);}
.m56_c00440{transform:matrix(0.235335,-0.003059,0.003250,0.249979,0,0);-ms-transform:matrix(0.235335,-0.003059,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235335,-0.003059,0.003250,0.249979,0,0);}
.m2e_c00440{transform:matrix(0.235525,-0.003062,0.003250,0.249979,0,0);-ms-transform:matrix(0.235525,-0.003062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235525,-0.003062,0.003250,0.249979,0,0);}
.ma4_c00440{transform:matrix(0.236215,-0.003071,0.003250,0.249979,0,0);-ms-transform:matrix(0.236215,-0.003071,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236215,-0.003071,0.003250,0.249979,0,0);}
.maa_c00440{transform:matrix(0.237365,-0.003086,0.003250,0.249979,0,0);-ms-transform:matrix(0.237365,-0.003086,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237365,-0.003086,0.003250,0.249979,0,0);}
.mb2_c00440{transform:matrix(0.237485,-0.003087,0.003250,0.249979,0,0);-ms-transform:matrix(0.237485,-0.003087,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237485,-0.003087,0.003250,0.249979,0,0);}
.m64_c00440{transform:matrix(0.238795,-0.003104,0.003250,0.249979,0,0);-ms-transform:matrix(0.238795,-0.003104,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238795,-0.003104,0.003250,0.249979,0,0);}
.mbd_c00440{transform:matrix(0.239505,-0.003114,0.003250,0.249979,0,0);-ms-transform:matrix(0.239505,-0.003114,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239505,-0.003114,0.003250,0.249979,0,0);}
.m9b_c00440{transform:matrix(0.239585,-0.003115,0.003250,0.249979,0,0);-ms-transform:matrix(0.239585,-0.003115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239585,-0.003115,0.003250,0.249979,0,0);}
.m8d_c00440{transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);-ms-transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);}
.mad_c00440{transform:matrix(0.242465,-0.003152,0.003250,0.249979,0,0);-ms-transform:matrix(0.242465,-0.003152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242465,-0.003152,0.003250,0.249979,0,0);}
.m5a_c00440{transform:matrix(0.244249,-0.003175,0.003250,0.249979,0,0);-ms-transform:matrix(0.244249,-0.003175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244249,-0.003175,0.003250,0.249979,0,0);}
.m60_c00440{transform:matrix(0.245944,-0.003197,0.003250,0.249979,0,0);-ms-transform:matrix(0.245944,-0.003197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245944,-0.003197,0.003250,0.249979,0,0);}
.mb3_c00440{transform:matrix(0.246354,-0.003203,0.003250,0.249979,0,0);-ms-transform:matrix(0.246354,-0.003203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246354,-0.003203,0.003250,0.249979,0,0);}
.m9f_c00440{transform:matrix(0.248424,-0.003230,0.003250,0.249979,0,0);-ms-transform:matrix(0.248424,-0.003230,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248424,-0.003230,0.003250,0.249979,0,0);}
.m7b_c00440{transform:matrix(0.248429,-0.003230,0.003250,0.249979,0,0);-ms-transform:matrix(0.248429,-0.003230,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248429,-0.003230,0.003250,0.249979,0,0);}
.md1_c00440{transform:matrix(0.262803,-0.003416,0.003250,0.249979,0,0);-ms-transform:matrix(0.262803,-0.003416,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262803,-0.003416,0.003250,0.249979,0,0);}
.m6d_c00440{transform:matrix(0.282001,-0.003666,0.003250,0.249979,0,0);-ms-transform:matrix(0.282001,-0.003666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282001,-0.003666,0.003250,0.249979,0,0);}
.m18_c00440{transform:matrix(0.293590,-0.003817,0.003250,0.249979,0,0);-ms-transform:matrix(0.293590,-0.003817,0.003250,0.249979,0,0);-webkit-transform:matrix(0.293590,-0.003817,0.003250,0.249979,0,0);}
.m17_c00440{transform:matrix(0.302179,-0.003928,0.003250,0.249979,0,0);-ms-transform:matrix(0.302179,-0.003928,0.003250,0.249979,0,0);-webkit-transform:matrix(0.302179,-0.003928,0.003250,0.249979,0,0);}
.mb7_c00440{transform:matrix(0.322038,-0.004186,0.003250,0.249979,0,0);-ms-transform:matrix(0.322038,-0.004186,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322038,-0.004186,0.003250,0.249979,0,0);}
.m6e_c00440{transform:matrix(0.378403,-0.004919,0.003250,0.249979,0,0);-ms-transform:matrix(0.378403,-0.004919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.378403,-0.004919,0.003250,0.249979,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:0.000000px;}
.fc0_c00440{color:transparent;}
.fs8_c00440{font-size:54.604614px;}
.fs9_c00440{font-size:55.654702px;}
.fs3_c00440{font-size:57.754880px;}
.fs7_c00440{font-size:59.855057px;}
.fsb_c00440{font-size:60.905146px;}
.fs2_c00440{font-size:61.955235px;}
.fs6_c00440{font-size:63.005323px;}
.fsa_c00440{font-size:64.055412px;}
.fs1_c00440{font-size:65.105501px;}
.fs4_c00440{font-size:66.155589px;}
.fsd_c00440{font-size:67.205678px;}
.fs5_c00440{font-size:68.255767px;}
.fsc_c00440{font-size:70.355944px;}
.fs0_c00440{font-size:77.700000px;}
.fse_c00440{font-size:88.207453px;}
.y0_c00440{bottom:0.000000px;}
.yf3_c00440{bottom:31.172822px;}
.yf2_c00440{bottom:31.172861px;}
.yf1_c00440{bottom:31.172909px;}
.yf7_c00440{bottom:31.173446px;}
.yf4_c00440{bottom:31.173462px;}
.yf0_c00440{bottom:31.173638px;}
.yf5_c00440{bottom:31.173974px;}
.yf6_c00440{bottom:31.173975px;}
.yef_c00440{bottom:47.692944px;}
.yee_c00440{bottom:47.693504px;}
.ye9_c00440{bottom:47.693897px;}
.yed_c00440{bottom:47.693912px;}
.yec_c00440{bottom:47.694009px;}
.yea_c00440{bottom:47.694138px;}
.yeb_c00440{bottom:47.694599px;}
.ye3_c00440{bottom:65.941880px;}
.ye2_c00440{bottom:65.942259px;}
.ye4_c00440{bottom:65.942381px;}
.ye1_c00440{bottom:65.942468px;}
.ye5_c00440{bottom:65.942601px;}
.ye0_c00440{bottom:65.943087px;}
.ye8_c00440{bottom:65.943105px;}
.ye6_c00440{bottom:65.943302px;}
.ye7_c00440{bottom:65.943743px;}
.ydf_c00440{bottom:81.594578px;}
.yda_c00440{bottom:81.594612px;}
.ydc_c00440{bottom:81.594905px;}
.yd9_c00440{bottom:81.595080px;}
.yde_c00440{bottom:81.595116px;}
.ydb_c00440{bottom:81.595194px;}
.ydd_c00440{bottom:81.595515px;}
.yd4_c00440{bottom:99.791193px;}
.yd3_c00440{bottom:99.791312px;}
.yd7_c00440{bottom:99.791618px;}
.yd5_c00440{bottom:99.791825px;}
.yd8_c00440{bottom:99.792048px;}
.yd6_c00440{bottom:99.792195px;}
.ycb_c00440{bottom:113.903110px;}
.ycc_c00440{bottom:114.525410px;}
.ycd_c00440{bottom:114.808531px;}
.yce_c00440{bottom:115.043748px;}
.ycf_c00440{bottom:116.221586px;}
.yd0_c00440{bottom:117.113456px;}
.yd1_c00440{bottom:117.712475px;}
.yd2_c00440{bottom:118.012851px;}
.yc2_c00440{bottom:130.102911px;}
.yc3_c00440{bottom:130.314256px;}
.yc4_c00440{bottom:130.666693px;}
.yc5_c00440{bottom:131.509443px;}
.yc6_c00440{bottom:131.852034px;}
.yc7_c00440{bottom:132.185675px;}
.yc8_c00440{bottom:132.796898px;}
.yc9_c00440{bottom:133.246829px;}
.yca_c00440{bottom:133.951313px;}
.ybf_c00440{bottom:148.829842px;}
.yc1_c00440{bottom:148.830175px;}
.ybe_c00440{bottom:148.830252px;}
.ybc_c00440{bottom:148.830369px;}
.yc0_c00440{bottom:148.830435px;}
.ybd_c00440{bottom:148.830900px;}
.yb9_c00440{bottom:165.181282px;}
.ybb_c00440{bottom:165.181555px;}
.yba_c00440{bottom:165.181603px;}
.yb6_c00440{bottom:165.181678px;}
.yb8_c00440{bottom:165.181891px;}
.yb5_c00440{bottom:165.182118px;}
.yb7_c00440{bottom:165.182391px;}
.yae_c00440{bottom:183.367050px;}
.yad_c00440{bottom:183.367198px;}
.yaf_c00440{bottom:183.367510px;}
.yb2_c00440{bottom:183.368013px;}
.yb1_c00440{bottom:183.368032px;}
.yb0_c00440{bottom:183.368151px;}
.yb4_c00440{bottom:183.368526px;}
.yb3_c00440{bottom:183.368535px;}
.ya6_c00440{bottom:199.704058px;}
.ya5_c00440{bottom:199.704348px;}
.ya7_c00440{bottom:199.704559px;}
.yaa_c00440{bottom:199.704592px;}
.yac_c00440{bottom:199.704634px;}
.yab_c00440{bottom:199.704673px;}
.ya4_c00440{bottom:199.704757px;}
.ya9_c00440{bottom:199.704972px;}
.ya8_c00440{bottom:199.705200px;}
.ya2_c00440{bottom:216.706719px;}
.ya3_c00440{bottom:216.706800px;}
.ya1_c00440{bottom:216.707257px;}
.ya0_c00440{bottom:216.707967px;}
.y9f_c00440{bottom:216.707995px;}
.y9e_c00440{bottom:216.708324px;}
.y9a_c00440{bottom:233.792623px;}
.y98_c00440{bottom:233.793012px;}
.y97_c00440{bottom:233.793021px;}
.y9b_c00440{bottom:233.793085px;}
.y9c_c00440{bottom:233.793237px;}
.y99_c00440{bottom:233.793273px;}
.y9d_c00440{bottom:233.793967px;}
.y96_c00440{bottom:251.413837px;}
.y95_c00440{bottom:251.413947px;}
.y93_c00440{bottom:251.414154px;}
.y94_c00440{bottom:251.414245px;}
.y8a_c00440{bottom:268.280961px;}
.y8d_c00440{bottom:268.281225px;}
.y90_c00440{bottom:268.281256px;}
.y92_c00440{bottom:268.281388px;}
.y91_c00440{bottom:268.281438px;}
.y8b_c00440{bottom:268.281543px;}
.y8f_c00440{bottom:268.281546px;}
.y8e_c00440{bottom:268.281715px;}
.y8c_c00440{bottom:268.281763px;}
.y84_c00440{bottom:285.560067px;}
.y86_c00440{bottom:285.560320px;}
.y85_c00440{bottom:285.560379px;}
.y83_c00440{bottom:285.560386px;}
.y89_c00440{bottom:285.560454px;}
.y87_c00440{bottom:285.560661px;}
.y88_c00440{bottom:285.560733px;}
.y7c_c00440{bottom:302.503135px;}
.y82_c00440{bottom:302.503581px;}
.y7a_c00440{bottom:302.503674px;}
.y80_c00440{bottom:302.503678px;}
.y81_c00440{bottom:302.503740px;}
.y7b_c00440{bottom:302.503774px;}
.y7d_c00440{bottom:302.503836px;}
.y7e_c00440{bottom:302.503987px;}
.y7f_c00440{bottom:302.504418px;}
.y74_c00440{bottom:318.038709px;}
.y75_c00440{bottom:319.124628px;}
.y76_c00440{bottom:319.291753px;}
.y77_c00440{bottom:319.452618px;}
.y78_c00440{bottom:320.330863px;}
.y79_c00440{bottom:320.664724px;}
.y6c_c00440{bottom:334.240314px;}
.y6d_c00440{bottom:334.630567px;}
.y6e_c00440{bottom:335.514970px;}
.y6f_c00440{bottom:335.676606px;}
.y70_c00440{bottom:336.164691px;}
.y71_c00440{bottom:336.336622px;}
.y72_c00440{bottom:337.231867px;}
.y73_c00440{bottom:337.607593px;}
.y64_c00440{bottom:350.443626px;}
.y65_c00440{bottom:351.139041px;}
.y66_c00440{bottom:351.453907px;}
.y67_c00440{bottom:352.396048px;}
.y68_c00440{bottom:353.199162px;}
.y69_c00440{bottom:354.175363px;}
.y6a_c00440{bottom:354.388165px;}
.y6b_c00440{bottom:354.758655px;}
.y5b_c00440{bottom:366.107236px;}
.y5c_c00440{bottom:366.872002px;}
.y5d_c00440{bottom:367.097604px;}
.y5e_c00440{bottom:367.487590px;}
.y5f_c00440{bottom:368.923603px;}
.y60_c00440{bottom:369.262921px;}
.y61_c00440{bottom:369.561181px;}
.y62_c00440{bottom:370.561861px;}
.y63_c00440{bottom:370.764457px;}
.y53_c00440{bottom:382.042224px;}
.y54_c00440{bottom:383.263107px;}
.y55_c00440{bottom:384.363822px;}
.y56_c00440{bottom:384.730291px;}
.y57_c00440{bottom:385.805842px;}
.y58_c00440{bottom:386.210146px;}
.y59_c00440{bottom:387.701715px;}
.y5a_c00440{bottom:388.034716px;}
.y4b_c00440{bottom:399.589830px;}
.y4c_c00440{bottom:400.515940px;}
.y4d_c00440{bottom:401.396704px;}
.y4e_c00440{bottom:401.594349px;}
.y4f_c00440{bottom:402.448111px;}
.y50_c00440{bottom:402.765145px;}
.y51_c00440{bottom:403.133023px;}
.y52_c00440{bottom:404.171193px;}
.y43_c00440{bottom:415.523686px;}
.y44_c00440{bottom:416.193300px;}
.y45_c00440{bottom:416.446096px;}
.y46_c00440{bottom:416.816226px;}
.y47_c00440{bottom:418.411758px;}
.y48_c00440{bottom:418.939651px;}
.y49_c00440{bottom:419.867598px;}
.y4a_c00440{bottom:420.405784px;}
.y3b_c00440{bottom:433.072539px;}
.y3c_c00440{bottom:433.926330px;}
.y3d_c00440{bottom:434.227545px;}
.y3e_c00440{bottom:434.486178px;}
.y3f_c00440{bottom:435.138951px;}
.y40_c00440{bottom:436.086135px;}
.y41_c00440{bottom:436.681644px;}
.y42_c00440{bottom:437.062857px;}
.y33_c00440{bottom:450.893466px;}
.y34_c00440{bottom:451.398783px;}
.y35_c00440{bottom:452.182084px;}
.y36_c00440{bottom:452.330565px;}
.y37_c00440{bottom:452.628345px;}
.y38_c00440{bottom:453.177117px;}
.y39_c00440{bottom:453.445036px;}
.y3a_c00440{bottom:453.863232px;}
.y2b_c00440{bottom:466.828359px;}
.y2c_c00440{bottom:467.144451px;}
.y2d_c00440{bottom:467.572114px;}
.y2e_c00440{bottom:468.267435px;}
.y2f_c00440{bottom:468.486151px;}
.y30_c00440{bottom:469.287349px;}
.y31_c00440{bottom:470.069536px;}
.y32_c00440{bottom:470.729740px;}
.y24_c00440{bottom:482.760595px;}
.y25_c00440{bottom:484.003941px;}
.y26_c00440{bottom:484.359385px;}
.y27_c00440{bottom:484.768303px;}
.y28_c00440{bottom:485.977260px;}
.y29_c00440{bottom:486.454371px;}
.y2a_c00440{bottom:487.410834px;}
.y1a_c00440{bottom:500.850807px;}
.y1b_c00440{bottom:501.817942px;}
.y1c_c00440{bottom:502.025617px;}
.y1d_c00440{bottom:502.233468px;}
.y1e_c00440{bottom:502.828789px;}
.y1f_c00440{bottom:503.260692px;}
.y20_c00440{bottom:503.489754px;}
.y21_c00440{bottom:504.180724px;}
.y22_c00440{bottom:504.371359px;}
.y23_c00440{bottom:505.348360px;}
.y12_c00440{bottom:516.243249px;}
.y13_c00440{bottom:516.667689px;}
.y14_c00440{bottom:517.042302px;}
.y15_c00440{bottom:518.001009px;}
.y16_c00440{bottom:518.946480px;}
.y17_c00440{bottom:519.367878px;}
.y18_c00440{bottom:519.800017px;}
.y19_c00440{bottom:521.492356px;}
.ya_c00440{bottom:534.329623px;}
.yb_c00440{bottom:534.842125px;}
.yc_c00440{bottom:535.036420px;}
.yd_c00440{bottom:535.814632px;}
.ye_c00440{bottom:536.453057px;}
.yf_c00440{bottom:536.804241px;}
.y10_c00440{bottom:537.299349px;}
.y11_c00440{bottom:537.445494px;}
.y2_c00440{bottom:551.881500px;}
.y3_c00440{bottom:552.113374px;}
.y4_c00440{bottom:552.305820px;}
.y5_c00440{bottom:552.808354px;}
.y6_c00440{bottom:553.047054px;}
.y7_c00440{bottom:553.889980px;}
.y8_c00440{bottom:554.949357px;}
.y9_c00440{bottom:555.304705px;}
.y1_c00440{bottom:565.521000px;}
.h9_c00440{height:54.604614px;}
.ha_c00440{height:55.654702px;}
.h4_c00440{height:57.754880px;}
.h8_c00440{height:59.855057px;}
.hc_c00440{height:60.905146px;}
.h3_c00440{height:61.955235px;}
.h7_c00440{height:63.005323px;}
.hb_c00440{height:64.055412px;}
.h2_c00440{height:65.105501px;}
.h5_c00440{height:66.155589px;}
.he_c00440{height:67.205678px;}
.h6_c00440{height:68.255767px;}
.hd_c00440{height:70.355944px;}
.h1_c00440{height:77.700000px;}
.hf_c00440{height:88.207453px;}
.h0_c00440{height:608.250000px;}
.w0_c00440{width:359.100000px;}
.w1_c00440{width:359.250000px;}
.x0_c00440{left:0.000000px;}
.x7a_c00440{left:13.500290px;}
.x1e_c00440{left:17.237709px;}
.x2_c00440{left:18.486000px;}
.x4e_c00440{left:20.118719px;}
.x67_c00440{left:21.598769px;}
.x71_c00440{left:23.188052px;}
.x7b_c00440{left:24.300623px;}
.x5f_c00440{left:28.892783px;}
.x6e_c00440{left:30.117161px;}
.x3_c00440{left:36.322500px;}
.x54_c00440{left:38.609994px;}
.x11_c00440{left:41.000507px;}
.x59_c00440{left:43.741719px;}
.x60_c00440{left:45.364071px;}
.x4a_c00440{left:49.012443px;}
.x4_c00440{left:51.126000px;}
.x36_c00440{left:53.855625px;}
.xa_c00440{left:60.878138px;}
.x45_c00440{left:62.259608px;}
.x2a_c00440{left:63.590676px;}
.x58_c00440{left:64.802741px;}
.x37_c00440{left:67.185092px;}
.x24_c00440{left:70.907195px;}
.x3b_c00440{left:73.381196px;}
.x3e_c00440{left:74.426121px;}
.x2f_c00440{left:75.438782px;}
.xb_c00440{left:77.093352px;}
.x17_c00440{left:78.719394px;}
.x75_c00440{left:80.733699px;}
.x46_c00440{left:81.979347px;}
.x72_c00440{left:83.603492px;}
.x5a_c00440{left:85.055700px;}
.x1f_c00440{left:86.336724px;}
.x5_c00440{left:89.782500px;}
.x18_c00440{left:91.693887px;}
.x61_c00440{left:93.157644px;}
.x78_c00440{left:94.235496px;}
.x30_c00440{left:95.493255px;}
.x73_c00440{left:99.273582px;}
.x42_c00440{left:100.365051px;}
.x64_c00440{left:103.417215px;}
.x19_c00440{left:104.681880px;}
.x20_c00440{left:106.061937px;}
.x6_c00440{left:108.144000px;}
.x12_c00440{left:111.135027px;}
.x31_c00440{left:112.733807px;}
.x4b_c00440{left:117.043443px;}
.x4f_c00440{left:118.884293px;}
.x25_c00440{left:120.585051px;}
.x3c_c00440{left:125.206505px;}
.x68_c00440{left:126.637514px;}
.x21_c00440{left:128.746455px;}
.x6a_c00440{left:130.147649px;}
.x7c_c00440{left:133.120011px;}
.x2b_c00440{left:134.808029px;}
.x26_c00440{left:136.255356px;}
.x47_c00440{left:140.834046px;}
.xc_c00440{left:141.918191px;}
.x5b_c00440{left:143.651106px;}
.x6b_c00440{left:146.618937px;}
.x1_c00440{left:147.960000px;}
.x76_c00440{left:150.399458px;}
.x51_c00440{left:152.287469px;}
.x6f_c00440{left:155.086542px;}
.x32_c00440{left:156.253676px;}
.x5e_c00440{left:157.693551px;}
.x13_c00440{left:160.898147px;}
.x55_c00440{left:165.522026px;}
.x4c_c00440{left:167.021943px;}
.x1a_c00440{left:168.927384px;}
.x38_c00440{left:170.612519px;}
.x7_c00440{left:172.984500px;}
.x2c_c00440{left:175.367582px;}
.x52_c00440{left:177.940298px;}
.x4d_c00440{left:180.247443px;}
.x14_c00440{left:183.042411px;}
.x43_c00440{left:184.861664px;}
.x3d_c00440{left:187.042287px;}
.x3f_c00440{left:190.046108px;}
.x48_c00440{left:191.071596px;}
.x27_c00440{left:193.500615px;}
.xd_c00440{left:195.066873px;}
.x39_c00440{left:198.409854px;}
.x56_c00440{left:202.245227px;}
.x15_c00440{left:205.782137px;}
.x40_c00440{left:208.451963px;}
.x5c_c00440{left:212.236689px;}
.x69_c00440{left:216.015126px;}
.x33_c00440{left:219.420038px;}
.x22_c00440{left:222.437871px;}
.xe_c00440{left:224.273744px;}
.x2d_c00440{left:225.312888px;}
.x1b_c00440{left:226.427642px;}
.x50_c00440{left:228.520640px;}
.x6c_c00440{left:232.755984px;}
.x62_c00440{left:235.459688px;}
.x74_c00440{left:237.247494px;}
.x1c_c00440{left:238.322174px;}
.x65_c00440{left:239.508206px;}
.x77_c00440{left:245.448026px;}
.x3a_c00440{left:247.286552px;}
.x28_c00440{left:249.398894px;}
.x49_c00440{left:252.084717px;}
.x6d_c00440{left:253.277955px;}
.x8_c00440{left:254.475000px;}
.x53_c00440{left:256.247538px;}
.x34_c00440{left:259.112004px;}
.x63_c00440{left:262.461251px;}
.xf_c00440{left:265.590290px;}
.x66_c00440{left:267.319905px;}
.x57_c00440{left:268.940498px;}
.x5d_c00440{left:271.912271px;}
.x23_c00440{left:275.585420px;}
.x10_c00440{left:277.755446px;}
.x9_c00440{left:281.809500px;}
.x35_c00440{left:284.512341px;}
.x2e_c00440{left:287.669507px;}
.x41_c00440{left:291.332252px;}
.x44_c00440{left:293.114028px;}
.x16_c00440{left:294.878195px;}
.x29_c00440{left:296.606289px;}
.x7e_c00440{left:298.104809px;}
.x1d_c00440{left:299.396795px;}
.x79_c00440{left:301.614038px;}
.x7d_c00440{left:303.775550px;}
.x70_c00440{left:305.029092px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
.fs8_c00440{font-size:48.537434pt;}
.fs9_c00440{font-size:49.470846pt;}
.fs3_c00440{font-size:51.337671pt;}
.fs7_c00440{font-size:53.204495pt;}
.fsb_c00440{font-size:54.137907pt;}
.fs2_c00440{font-size:55.071320pt;}
.fs6_c00440{font-size:56.004732pt;}
.fsa_c00440{font-size:56.938144pt;}
.fs1_c00440{font-size:57.871556pt;}
.fs4_c00440{font-size:58.804968pt;}
.fsd_c00440{font-size:59.738381pt;}
.fs5_c00440{font-size:60.671793pt;}
.fsc_c00440{font-size:62.538617pt;}
.fs0_c00440{font-size:69.066667pt;}
.fse_c00440{font-size:78.406625pt;}
.y0_c00440{bottom:0.000000pt;}
.yf3_c00440{bottom:27.709175pt;}
.yf2_c00440{bottom:27.709209pt;}
.yf1_c00440{bottom:27.709252pt;}
.yf7_c00440{bottom:27.709729pt;}
.yf4_c00440{bottom:27.709744pt;}
.yf0_c00440{bottom:27.709900pt;}
.yf5_c00440{bottom:27.710199pt;}
.yf6_c00440{bottom:27.710200pt;}
.yef_c00440{bottom:42.393728pt;}
.yee_c00440{bottom:42.394225pt;}
.ye9_c00440{bottom:42.394575pt;}
.yed_c00440{bottom:42.394588pt;}
.yec_c00440{bottom:42.394675pt;}
.yea_c00440{bottom:42.394789pt;}
.yeb_c00440{bottom:42.395199pt;}
.ye3_c00440{bottom:58.615004pt;}
.ye2_c00440{bottom:58.615341pt;}
.ye4_c00440{bottom:58.615449pt;}
.ye1_c00440{bottom:58.615527pt;}
.ye5_c00440{bottom:58.615645pt;}
.ye0_c00440{bottom:58.616077pt;}
.ye8_c00440{bottom:58.616093pt;}
.ye6_c00440{bottom:58.616268pt;}
.ye7_c00440{bottom:58.616660pt;}
.ydf_c00440{bottom:72.528513pt;}
.yda_c00440{bottom:72.528544pt;}
.ydc_c00440{bottom:72.528804pt;}
.yd9_c00440{bottom:72.528960pt;}
.yde_c00440{bottom:72.528992pt;}
.ydb_c00440{bottom:72.529061pt;}
.ydd_c00440{bottom:72.529347pt;}
.yd4_c00440{bottom:88.703283pt;}
.yd3_c00440{bottom:88.703388pt;}
.yd7_c00440{bottom:88.703660pt;}
.yd5_c00440{bottom:88.703844pt;}
.yd8_c00440{bottom:88.704043pt;}
.yd6_c00440{bottom:88.704173pt;}
.ycb_c00440{bottom:101.247209pt;}
.ycc_c00440{bottom:101.800364pt;}
.ycd_c00440{bottom:102.052028pt;}
.yce_c00440{bottom:102.261109pt;}
.ycf_c00440{bottom:103.308076pt;}
.yd0_c00440{bottom:104.100849pt;}
.yd1_c00440{bottom:104.633311pt;}
.yd2_c00440{bottom:104.900312pt;}
.yc2_c00440{bottom:115.647032pt;}
.yc3_c00440{bottom:115.834895pt;}
.yc4_c00440{bottom:116.148172pt;}
.yc5_c00440{bottom:116.897283pt;}
.yc6_c00440{bottom:117.201808pt;}
.yc7_c00440{bottom:117.498377pt;}
.yc8_c00440{bottom:118.041687pt;}
.yc9_c00440{bottom:118.441625pt;}
.yca_c00440{bottom:119.067833pt;}
.ybf_c00440{bottom:132.293193pt;}
.yc1_c00440{bottom:132.293489pt;}
.ybe_c00440{bottom:132.293557pt;}
.ybc_c00440{bottom:132.293661pt;}
.yc0_c00440{bottom:132.293720pt;}
.ybd_c00440{bottom:132.294133pt;}
.yb9_c00440{bottom:146.827807pt;}
.ybb_c00440{bottom:146.828049pt;}
.yba_c00440{bottom:146.828092pt;}
.yb6_c00440{bottom:146.828159pt;}
.yb8_c00440{bottom:146.828348pt;}
.yb5_c00440{bottom:146.828549pt;}
.yb7_c00440{bottom:146.828792pt;}
.yae_c00440{bottom:162.992933pt;}
.yad_c00440{bottom:162.993065pt;}
.yaf_c00440{bottom:162.993343pt;}
.yb2_c00440{bottom:162.993789pt;}
.yb1_c00440{bottom:162.993807pt;}
.yb0_c00440{bottom:162.993912pt;}
.yb4_c00440{bottom:162.994245pt;}
.yb3_c00440{bottom:162.994253pt;}
.ya6_c00440{bottom:177.514719pt;}
.ya5_c00440{bottom:177.514976pt;}
.ya7_c00440{bottom:177.515164pt;}
.yaa_c00440{bottom:177.515193pt;}
.yac_c00440{bottom:177.515231pt;}
.yab_c00440{bottom:177.515265pt;}
.ya4_c00440{bottom:177.515340pt;}
.ya9_c00440{bottom:177.515531pt;}
.ya8_c00440{bottom:177.515733pt;}
.ya2_c00440{bottom:192.628195pt;}
.ya3_c00440{bottom:192.628267pt;}
.ya1_c00440{bottom:192.628673pt;}
.ya0_c00440{bottom:192.629304pt;}
.y9f_c00440{bottom:192.629329pt;}
.y9e_c00440{bottom:192.629621pt;}
.y9a_c00440{bottom:207.815665pt;}
.y98_c00440{bottom:207.816011pt;}
.y97_c00440{bottom:207.816019pt;}
.y9b_c00440{bottom:207.816076pt;}
.y9c_c00440{bottom:207.816211pt;}
.y99_c00440{bottom:207.816243pt;}
.y9d_c00440{bottom:207.816860pt;}
.y96_c00440{bottom:223.478967pt;}
.y95_c00440{bottom:223.479064pt;}
.y93_c00440{bottom:223.479248pt;}
.y94_c00440{bottom:223.479329pt;}
.y8a_c00440{bottom:238.471965pt;}
.y8d_c00440{bottom:238.472200pt;}
.y90_c00440{bottom:238.472228pt;}
.y92_c00440{bottom:238.472345pt;}
.y91_c00440{bottom:238.472389pt;}
.y8b_c00440{bottom:238.472483pt;}
.y8f_c00440{bottom:238.472485pt;}
.y8e_c00440{bottom:238.472636pt;}
.y8c_c00440{bottom:238.472679pt;}
.y84_c00440{bottom:253.831171pt;}
.y86_c00440{bottom:253.831396pt;}
.y85_c00440{bottom:253.831448pt;}
.y83_c00440{bottom:253.831455pt;}
.y89_c00440{bottom:253.831515pt;}
.y87_c00440{bottom:253.831699pt;}
.y88_c00440{bottom:253.831763pt;}
.y7c_c00440{bottom:268.891676pt;}
.y82_c00440{bottom:268.892072pt;}
.y7a_c00440{bottom:268.892155pt;}
.y80_c00440{bottom:268.892159pt;}
.y81_c00440{bottom:268.892213pt;}
.y7b_c00440{bottom:268.892244pt;}
.y7d_c00440{bottom:268.892299pt;}
.y7e_c00440{bottom:268.892433pt;}
.y7f_c00440{bottom:268.892816pt;}
.y74_c00440{bottom:282.701075pt;}
.y75_c00440{bottom:283.666336pt;}
.y76_c00440{bottom:283.814892pt;}
.y77_c00440{bottom:283.957883pt;}
.y78_c00440{bottom:284.738545pt;}
.y79_c00440{bottom:285.035311pt;}
.y6c_c00440{bottom:297.102501pt;}
.y6d_c00440{bottom:297.449393pt;}
.y6e_c00440{bottom:298.235529pt;}
.y6f_c00440{bottom:298.379205pt;}
.y70_c00440{bottom:298.813059pt;}
.y71_c00440{bottom:298.965887pt;}
.y72_c00440{bottom:299.761660pt;}
.y73_c00440{bottom:300.095639pt;}
.y64_c00440{bottom:311.505445pt;}
.y65_c00440{bottom:312.123592pt;}
.y66_c00440{bottom:312.403473pt;}
.y67_c00440{bottom:313.240932pt;}
.y68_c00440{bottom:313.954811pt;}
.y69_c00440{bottom:314.822545pt;}
.y6a_c00440{bottom:315.011703pt;}
.y6b_c00440{bottom:315.341027pt;}
.y5b_c00440{bottom:325.428655pt;}
.y5c_c00440{bottom:326.108447pt;}
.y5d_c00440{bottom:326.308981pt;}
.y5e_c00440{bottom:326.655636pt;}
.y5f_c00440{bottom:327.932092pt;}
.y60_c00440{bottom:328.233708pt;}
.y61_c00440{bottom:328.498828pt;}
.y62_c00440{bottom:329.388321pt;}
.y63_c00440{bottom:329.568407pt;}
.y53_c00440{bottom:339.593088pt;}
.y54_c00440{bottom:340.678317pt;}
.y55_c00440{bottom:341.656731pt;}
.y56_c00440{bottom:341.982481pt;}
.y57_c00440{bottom:342.938527pt;}
.y58_c00440{bottom:343.297908pt;}
.y59_c00440{bottom:344.623747pt;}
.y5a_c00440{bottom:344.919748pt;}
.y4b_c00440{bottom:355.190960pt;}
.y4c_c00440{bottom:356.014169pt;}
.y4d_c00440{bottom:356.797071pt;}
.y4e_c00440{bottom:356.972755pt;}
.y4f_c00440{bottom:357.731655pt;}
.y50_c00440{bottom:358.013463pt;}
.y51_c00440{bottom:358.340465pt;}
.y52_c00440{bottom:359.263283pt;}
.y43_c00440{bottom:369.354388pt;}
.y44_c00440{bottom:369.949600pt;}
.y45_c00440{bottom:370.174308pt;}
.y46_c00440{bottom:370.503312pt;}
.y47_c00440{bottom:371.921563pt;}
.y48_c00440{bottom:372.390801pt;}
.y49_c00440{bottom:373.215643pt;}
.y4a_c00440{bottom:373.694031pt;}
.y3b_c00440{bottom:384.953368pt;}
.y3c_c00440{bottom:385.712293pt;}
.y3d_c00440{bottom:385.980040pt;}
.y3e_c00440{bottom:386.209936pt;}
.y3f_c00440{bottom:386.790179pt;}
.y40_c00440{bottom:387.632120pt;}
.y41_c00440{bottom:388.161461pt;}
.y42_c00440{bottom:388.500317pt;}
.y33_c00440{bottom:400.794192pt;}
.y34_c00440{bottom:401.243363pt;}
.y35_c00440{bottom:401.939631pt;}
.y36_c00440{bottom:402.071613pt;}
.y37_c00440{bottom:402.336307pt;}
.y38_c00440{bottom:402.824104pt;}
.y39_c00440{bottom:403.062255pt;}
.y3a_c00440{bottom:403.433984pt;}
.y2b_c00440{bottom:414.958541pt;}
.y2c_c00440{bottom:415.239512pt;}
.y2d_c00440{bottom:415.619657pt;}
.y2e_c00440{bottom:416.237720pt;}
.y2f_c00440{bottom:416.432135pt;}
.y30_c00440{bottom:417.144311pt;}
.y31_c00440{bottom:417.839588pt;}
.y32_c00440{bottom:418.426436pt;}
.y24_c00440{bottom:429.120529pt;}
.y25_c00440{bottom:430.225725pt;}
.y26_c00440{bottom:430.541676pt;}
.y27_c00440{bottom:430.905159pt;}
.y28_c00440{bottom:431.979787pt;}
.y29_c00440{bottom:432.403885pt;}
.y2a_c00440{bottom:433.254075pt;}
.y1a_c00440{bottom:445.200717pt;}
.y1b_c00440{bottom:446.060393pt;}
.y1c_c00440{bottom:446.244993pt;}
.y1d_c00440{bottom:446.429749pt;}
.y1e_c00440{bottom:446.958924pt;}
.y1f_c00440{bottom:447.342837pt;}
.y20_c00440{bottom:447.546448pt;}
.y21_c00440{bottom:448.160644pt;}
.y22_c00440{bottom:448.330097pt;}
.y23_c00440{bottom:449.198543pt;}
.y12_c00440{bottom:458.882888pt;}
.y13_c00440{bottom:459.260168pt;}
.y14_c00440{bottom:459.593157pt;}
.y15_c00440{bottom:460.445341pt;}
.y16_c00440{bottom:461.285760pt;}
.y17_c00440{bottom:461.660336pt;}
.y18_c00440{bottom:462.044460pt;}
.y19_c00440{bottom:463.548761pt;}
.ya_c00440{bottom:474.959665pt;}
.yb_c00440{bottom:475.415223pt;}
.yc_c00440{bottom:475.587929pt;}
.yd_c00440{bottom:476.279673pt;}
.ye_c00440{bottom:476.847161pt;}
.yf_c00440{bottom:477.159325pt;}
.y10_c00440{bottom:477.599421pt;}
.y11_c00440{bottom:477.729328pt;}
.y2_c00440{bottom:490.561333pt;}
.y3_c00440{bottom:490.767444pt;}
.y4_c00440{bottom:490.938507pt;}
.y5_c00440{bottom:491.385204pt;}
.y6_c00440{bottom:491.597381pt;}
.y7_c00440{bottom:492.346649pt;}
.y8_c00440{bottom:493.288317pt;}
.y9_c00440{bottom:493.604183pt;}
.y1_c00440{bottom:502.685333pt;}
.h9_c00440{height:48.537434pt;}
.ha_c00440{height:49.470846pt;}
.h4_c00440{height:51.337671pt;}
.h8_c00440{height:53.204495pt;}
.hc_c00440{height:54.137907pt;}
.h3_c00440{height:55.071320pt;}
.h7_c00440{height:56.004732pt;}
.hb_c00440{height:56.938144pt;}
.h2_c00440{height:57.871556pt;}
.h5_c00440{height:58.804968pt;}
.he_c00440{height:59.738381pt;}
.h6_c00440{height:60.671793pt;}
.hd_c00440{height:62.538617pt;}
.h1_c00440{height:69.066667pt;}
.hf_c00440{height:78.406625pt;}
.h0_c00440{height:540.666667pt;}
.w0_c00440{width:319.200000pt;}
.w1_c00440{width:319.333333pt;}
.x0_c00440{left:0.000000pt;}
.x7a_c00440{left:12.000257pt;}
.x1e_c00440{left:15.322408pt;}
.x2_c00440{left:16.432000pt;}
.x4e_c00440{left:17.883305pt;}
.x67_c00440{left:19.198905pt;}
.x71_c00440{left:20.611601pt;}
.x7b_c00440{left:21.600553pt;}
.x5f_c00440{left:25.682473pt;}
.x6e_c00440{left:26.770809pt;}
.x3_c00440{left:32.286667pt;}
.x54_c00440{left:34.319995pt;}
.x11_c00440{left:36.444895pt;}
.x59_c00440{left:38.881528pt;}
.x60_c00440{left:40.323619pt;}
.x4a_c00440{left:43.566616pt;}
.x4_c00440{left:45.445333pt;}
.x36_c00440{left:47.871667pt;}
.xa_c00440{left:54.113900pt;}
.x45_c00440{left:55.341873pt;}
.x2a_c00440{left:56.525045pt;}
.x58_c00440{left:57.602436pt;}
.x37_c00440{left:59.720081pt;}
.x24_c00440{left:63.028617pt;}
.x3b_c00440{left:65.227729pt;}
.x3e_c00440{left:66.156552pt;}
.x2f_c00440{left:67.056695pt;}
.xb_c00440{left:68.527424pt;}
.x17_c00440{left:69.972795pt;}
.x75_c00440{left:71.763288pt;}
.x46_c00440{left:72.870531pt;}
.x72_c00440{left:74.314215pt;}
.x5a_c00440{left:75.605067pt;}
.x1f_c00440{left:76.743755pt;}
.x5_c00440{left:79.806667pt;}
.x18_c00440{left:81.505677pt;}
.x61_c00440{left:82.806795pt;}
.x78_c00440{left:83.764885pt;}
.x30_c00440{left:84.882893pt;}
.x73_c00440{left:88.243184pt;}
.x42_c00440{left:89.213379pt;}
.x64_c00440{left:91.926413pt;}
.x19_c00440{left:93.050560pt;}
.x20_c00440{left:94.277277pt;}
.x6_c00440{left:96.128000pt;}
.x12_c00440{left:98.786691pt;}
.x31_c00440{left:100.207828pt;}
.x4b_c00440{left:104.038616pt;}
.x4f_c00440{left:105.674927pt;}
.x25_c00440{left:107.186712pt;}
.x3c_c00440{left:111.294671pt;}
.x68_c00440{left:112.566679pt;}
.x21_c00440{left:114.441293pt;}
.x6a_c00440{left:115.686799pt;}
.x7c_c00440{left:118.328899pt;}
.x2b_c00440{left:119.829359pt;}
.x26_c00440{left:121.115872pt;}
.x47_c00440{left:125.185819pt;}
.xc_c00440{left:126.149503pt;}
.x5b_c00440{left:127.689872pt;}
.x6b_c00440{left:130.327944pt;}
.x1_c00440{left:131.520000pt;}
.x76_c00440{left:133.688407pt;}
.x51_c00440{left:135.366639pt;}
.x6f_c00440{left:137.854704pt;}
.x32_c00440{left:138.892156pt;}
.x5e_c00440{left:140.172045pt;}
.x13_c00440{left:143.020575pt;}
.x55_c00440{left:147.130689pt;}
.x4c_c00440{left:148.463949pt;}
.x1a_c00440{left:150.157675pt;}
.x38_c00440{left:151.655572pt;}
.x7_c00440{left:153.764000pt;}
.x2c_c00440{left:155.882295pt;}
.x52_c00440{left:158.169153pt;}
.x4d_c00440{left:160.219949pt;}
.x14_c00440{left:162.704365pt;}
.x43_c00440{left:164.321479pt;}
.x3d_c00440{left:166.259811pt;}
.x3f_c00440{left:168.929873pt;}
.x48_c00440{left:169.841419pt;}
.x27_c00440{left:172.000547pt;}
.xd_c00440{left:173.392776pt;}
.x39_c00440{left:176.364315pt;}
.x56_c00440{left:179.773535pt;}
.x15_c00440{left:182.917455pt;}
.x40_c00440{left:185.290633pt;}
.x5c_c00440{left:188.654835pt;}
.x69_c00440{left:192.013445pt;}
.x33_c00440{left:195.040033pt;}
.x22_c00440{left:197.722552pt;}
.xe_c00440{left:199.354439pt;}
.x2d_c00440{left:200.278123pt;}
.x1b_c00440{left:201.269015pt;}
.x50_c00440{left:203.129457pt;}
.x6c_c00440{left:206.894208pt;}
.x62_c00440{left:209.297500pt;}
.x74_c00440{left:210.886661pt;}
.x1c_c00440{left:211.841932pt;}
.x65_c00440{left:212.896183pt;}
.x77_c00440{left:218.176023pt;}
.x3a_c00440{left:219.810268pt;}
.x28_c00440{left:221.687905pt;}
.x49_c00440{left:224.075304pt;}
.x6d_c00440{left:225.135960pt;}
.x8_c00440{left:226.200000pt;}
.x53_c00440{left:227.775589pt;}
.x34_c00440{left:230.321781pt;}
.x63_c00440{left:233.298889pt;}
.xf_c00440{left:236.080257pt;}
.x66_c00440{left:237.617693pt;}
.x57_c00440{left:239.058220pt;}
.x5d_c00440{left:241.699796pt;}
.x23_c00440{left:244.964817pt;}
.x10_c00440{left:246.893729pt;}
.x9_c00440{left:250.497333pt;}
.x35_c00440{left:252.899859pt;}
.x2e_c00440{left:255.706228pt;}
.x41_c00440{left:258.962001pt;}
.x44_c00440{left:260.545803pt;}
.x16_c00440{left:262.113951pt;}
.x29_c00440{left:263.650035pt;}
.x7e_c00440{left:264.982052pt;}
.x1d_c00440{left:266.130484pt;}
.x79_c00440{left:268.101367pt;}
.x7d_c00440{left:270.022711pt;}
.x70_c00440{left:271.136971pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00441 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00441 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00441 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00441 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00441.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c00441{transform:matrix(0.014016,0.000336,-0.005998,0.249928,0,0);-ms-transform:matrix(0.014016,0.000336,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.014016,0.000336,-0.005998,0.249928,0,0);}
.m103_c00441{transform:matrix(0.119353,0.001671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.119353,0.001671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.119353,0.001671,-0.003500,0.249976,0,0);}
.mfa_c00441{transform:matrix(0.121303,0.001698,-0.003500,0.249976,0,0);-ms-transform:matrix(0.121303,0.001698,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.121303,0.001698,-0.003500,0.249976,0,0);}
.mf_c00441{transform:matrix(0.132218,0.002909,-0.005499,0.249940,0,0);-ms-transform:matrix(0.132218,0.002909,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.132218,0.002909,-0.005499,0.249940,0,0);}
.m100_c00441{transform:matrix(0.135222,0.001893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.135222,0.001893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.135222,0.001893,-0.003500,0.249976,0,0);}
.m3e_c00441{transform:matrix(0.137597,0.003440,-0.006248,0.249922,0,0);-ms-transform:matrix(0.137597,0.003440,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.137597,0.003440,-0.006248,0.249922,0,0);}
.m3f_c00441{transform:matrix(0.140191,0.003505,-0.006248,0.249922,0,0);-ms-transform:matrix(0.140191,0.003505,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.140191,0.003505,-0.006248,0.249922,0,0);}
.m6f_c00441{transform:matrix(0.141261,0.003532,-0.006248,0.249922,0,0);-ms-transform:matrix(0.141261,0.003532,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.141261,0.003532,-0.006248,0.249922,0,0);}
.m5d_c00441{transform:matrix(0.142825,0.003571,-0.006248,0.249922,0,0);-ms-transform:matrix(0.142825,0.003571,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.142825,0.003571,-0.006248,0.249922,0,0);}
.m26_c00441{transform:matrix(0.143360,0.003154,-0.005499,0.249940,0,0);-ms-transform:matrix(0.143360,0.003154,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.143360,0.003154,-0.005499,0.249940,0,0);}
.ma_c00441{transform:matrix(0.145415,0.003199,-0.005499,0.249940,0,0);-ms-transform:matrix(0.145415,0.003199,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.145415,0.003199,-0.005499,0.249940,0,0);}
.md_c00441{transform:matrix(0.145480,0.003201,-0.005499,0.249940,0,0);-ms-transform:matrix(0.145480,0.003201,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.145480,0.003201,-0.005499,0.249940,0,0);}
.mfb_c00441{transform:matrix(0.146806,0.002055,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146806,0.002055,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146806,0.002055,-0.003500,0.249976,0,0);}
.m3c_c00441{transform:matrix(0.147209,0.003680,-0.006248,0.249922,0,0);-ms-transform:matrix(0.147209,0.003680,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.147209,0.003680,-0.006248,0.249922,0,0);}
.m6e_c00441{transform:matrix(0.147849,0.003696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.147849,0.003696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.147849,0.003696,-0.006248,0.249922,0,0);}
.mfd_c00441{transform:matrix(0.149575,0.002094,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149575,0.002094,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149575,0.002094,-0.003500,0.249976,0,0);}
.m5e_c00441{transform:matrix(0.149883,0.003747,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149883,0.003747,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149883,0.003747,-0.006248,0.249922,0,0);}
.m2b_c00441{transform:matrix(0.150179,0.003304,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150179,0.003304,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150179,0.003304,-0.005499,0.249940,0,0);}
.ma9_c00441{transform:matrix(0.150202,0.003605,-0.005998,0.249928,0,0);-ms-transform:matrix(0.150202,0.003605,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.150202,0.003605,-0.005998,0.249928,0,0);}
.m1e_c00441{transform:matrix(0.150259,0.003306,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150259,0.003306,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150259,0.003306,-0.005499,0.249940,0,0);}
.m34_c00441{transform:matrix(0.150397,0.003610,-0.005998,0.249928,0,0);-ms-transform:matrix(0.150397,0.003610,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.150397,0.003610,-0.005998,0.249928,0,0);}
.m6a_c00441{transform:matrix(0.150418,0.003760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150418,0.003760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150418,0.003760,-0.006248,0.249922,0,0);}
.m64_c00441{transform:matrix(0.152102,0.003803,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152102,0.003803,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152102,0.003803,-0.006248,0.249922,0,0);}
.m32_c00441{transform:matrix(0.152151,0.003652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.152151,0.003652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.152151,0.003652,-0.005998,0.249928,0,0);}
.m5a_c00441{transform:matrix(0.152232,0.003806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152232,0.003806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152232,0.003806,-0.006248,0.249922,0,0);}
.m15_c00441{transform:matrix(0.152408,0.003353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152408,0.003353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152408,0.003353,-0.005499,0.249940,0,0);}
.m1b_c00441{transform:matrix(0.154038,0.003389,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154038,0.003389,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154038,0.003389,-0.005499,0.249940,0,0);}
.m66_c00441{transform:matrix(0.154357,0.003859,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154357,0.003859,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154357,0.003859,-0.006248,0.249922,0,0);}
.m16_c00441{transform:matrix(0.154613,0.003401,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154613,0.003401,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154613,0.003401,-0.005499,0.249940,0,0);}
.ma2_c00441{transform:matrix(0.154690,0.003713,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154690,0.003713,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154690,0.003713,-0.005998,0.249928,0,0);}
.maa_c00441{transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154930,0.003718,-0.005998,0.249928,0,0);}
.m12_c00441{transform:matrix(0.155117,0.003413,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155117,0.003413,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155117,0.003413,-0.005499,0.249940,0,0);}
.m6b_c00441{transform:matrix(0.155561,0.003889,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155561,0.003889,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155561,0.003889,-0.006248,0.249922,0,0);}
.mb2_c00441{transform:matrix(0.155855,0.003741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155855,0.003741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155855,0.003741,-0.005998,0.249928,0,0);}
.me_c00441{transform:matrix(0.156817,0.003450,-0.005499,0.249940,0,0);-ms-transform:matrix(0.156817,0.003450,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.156817,0.003450,-0.005499,0.249940,0,0);}
.mc3_c00441{transform:matrix(0.156920,0.003766,-0.005998,0.249928,0,0);-ms-transform:matrix(0.156920,0.003766,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.156920,0.003766,-0.005998,0.249928,0,0);}
.m47_c00441{transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);}
.m59_c00441{transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158146,0.003954,-0.006248,0.249922,0,0);}
.ma7_c00441{transform:matrix(0.158289,0.003799,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158289,0.003799,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158289,0.003799,-0.005998,0.249928,0,0);}
.m14_c00441{transform:matrix(0.158292,0.003482,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158292,0.003482,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158292,0.003482,-0.005499,0.249940,0,0);}
.m30_c00441{transform:matrix(0.158989,0.003816,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158989,0.003816,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158989,0.003816,-0.005998,0.249928,0,0);}
.m31_c00441{transform:matrix(0.159269,0.003822,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159269,0.003822,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159269,0.003822,-0.005998,0.249928,0,0);}
.m40_c00441{transform:matrix(0.160110,0.004003,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160110,0.004003,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160110,0.004003,-0.006248,0.249922,0,0);}
.mb7_c00441{transform:matrix(0.161464,0.003875,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161464,0.003875,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161464,0.003875,-0.005998,0.249928,0,0);}
.mc_c00441{transform:matrix(0.162491,0.003575,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162491,0.003575,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162491,0.003575,-0.005499,0.249940,0,0);}
.ma0_c00441{transform:matrix(0.163043,0.003913,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163043,0.003913,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163043,0.003913,-0.005998,0.249928,0,0);}
.mb4_c00441{transform:matrix(0.163253,0.003918,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163253,0.003918,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163253,0.003918,-0.005998,0.249928,0,0);}
.mbd_c00441{transform:matrix(0.164208,0.003941,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164208,0.003941,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164208,0.003941,-0.005998,0.249928,0,0);}
.m60_c00441{transform:matrix(0.164943,0.004124,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164943,0.004124,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164943,0.004124,-0.006248,0.249922,0,0);}
.m4b_c00441{transform:matrix(0.165703,0.004143,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165703,0.004143,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165703,0.004143,-0.006248,0.249922,0,0);}
.m35_c00441{transform:matrix(0.166412,0.003994,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166412,0.003994,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166412,0.003994,-0.005998,0.249928,0,0);}
.m1f_c00441{transform:matrix(0.166555,0.003664,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166555,0.003664,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166555,0.003664,-0.005499,0.249940,0,0);}
.m1d_c00441{transform:matrix(0.167709,0.003690,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167709,0.003690,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167709,0.003690,-0.005499,0.249940,0,0);}
.m10_c00441{transform:matrix(0.167954,0.003695,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167954,0.003695,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167954,0.003695,-0.005499,0.249940,0,0);}
.mff_c00441{transform:matrix(0.168244,0.002355,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168244,0.002355,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168244,0.002355,-0.003500,0.249976,0,0);}
.ma5_c00441{transform:matrix(0.168571,0.004046,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168571,0.004046,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168571,0.004046,-0.005998,0.249928,0,0);}
.mfc_c00441{transform:matrix(0.168643,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168643,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168643,0.002361,-0.003500,0.249976,0,0);}
.mb5_c00441{transform:matrix(0.169141,0.004059,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169141,0.004059,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169141,0.004059,-0.005998,0.249928,0,0);}
.md5_c00441{transform:matrix(0.169273,0.002370,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169273,0.002370,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169273,0.002370,-0.003500,0.249976,0,0);}
.m11_c00441{transform:matrix(0.169299,0.003725,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169299,0.003725,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169299,0.003725,-0.005499,0.249940,0,0);}
.m1a_c00441{transform:matrix(0.169639,0.003732,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169639,0.003732,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169639,0.003732,-0.005499,0.249940,0,0);}
.mad_c00441{transform:matrix(0.169656,0.004072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169656,0.004072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169656,0.004072,-0.005998,0.249928,0,0);}
.m3a_c00441{transform:matrix(0.170277,0.004257,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170277,0.004257,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170277,0.004257,-0.006248,0.249922,0,0);}
.m1_c00441{transform:matrix(0.170674,0.003755,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170674,0.003755,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170674,0.003755,-0.005499,0.249940,0,0);}
.mac_c00441{transform:matrix(0.170686,0.004096,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170686,0.004096,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170686,0.004096,-0.005998,0.249928,0,0);}
.mab_c00441{transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170791,0.004099,-0.005998,0.249928,0,0);}
.m1c_c00441{transform:matrix(0.171219,0.003767,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171219,0.003767,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171219,0.003767,-0.005499,0.249940,0,0);}
.m57_c00441{transform:matrix(0.171311,0.004283,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171311,0.004283,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171311,0.004283,-0.006248,0.249922,0,0);}
.m39_c00441{transform:matrix(0.171771,0.004294,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171771,0.004294,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171771,0.004294,-0.006248,0.249922,0,0);}
.mda_c00441{transform:matrix(0.171948,0.002407,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171948,0.002407,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171948,0.002407,-0.003500,0.249976,0,0);}
.m4e_c00441{transform:matrix(0.172181,0.004305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172181,0.004305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172181,0.004305,-0.006248,0.249922,0,0);}
.m3b_c00441{transform:matrix(0.172746,0.004319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172746,0.004319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172746,0.004319,-0.006248,0.249922,0,0);}
.m9d_c00441{transform:matrix(0.173150,0.004156,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173150,0.004156,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173150,0.004156,-0.005998,0.249928,0,0);}
.m68_c00441{transform:matrix(0.173306,0.004333,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173306,0.004333,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173306,0.004333,-0.006248,0.249922,0,0);}
.mc2_c00441{transform:matrix(0.173645,0.004167,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173645,0.004167,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173645,0.004167,-0.005998,0.249928,0,0);}
.m41_c00441{transform:matrix(0.173666,0.004342,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173666,0.004342,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173666,0.004342,-0.006248,0.249922,0,0);}
.m13_c00441{transform:matrix(0.173848,0.003825,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173848,0.003825,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173848,0.003825,-0.005499,0.249940,0,0);}
.m4_c00441{transform:matrix(0.174098,0.003830,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174098,0.003830,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174098,0.003830,-0.005499,0.249940,0,0);}
.m3d_c00441{transform:matrix(0.174266,0.004357,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174266,0.004357,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174266,0.004357,-0.006248,0.249922,0,0);}
.md4_c00441{transform:matrix(0.174833,0.002448,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174833,0.002448,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174833,0.002448,-0.003500,0.249976,0,0);}
.m9f_c00441{transform:matrix(0.175180,0.004204,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175180,0.004204,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175180,0.004204,-0.005998,0.249928,0,0);}
.m7b_c00441{transform:matrix(0.175285,0.004207,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175285,0.004207,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175285,0.004207,-0.005998,0.249928,0,0);}
.me0_c00441{transform:matrix(0.175358,0.002455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175358,0.002455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175358,0.002455,-0.003500,0.249976,0,0);}
.m81_c00441{transform:matrix(0.175519,0.004212,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175519,0.004212,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175519,0.004212,-0.005998,0.249928,0,0);}
.m38_c00441{transform:matrix(0.176200,0.004405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176200,0.004405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176200,0.004405,-0.006248,0.249922,0,0);}
.m75_c00441{transform:matrix(0.176364,0.004233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176364,0.004233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176364,0.004233,-0.005998,0.249928,0,0);}
.m9_c00441{transform:matrix(0.176427,0.003881,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176427,0.003881,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176427,0.003881,-0.005499,0.249940,0,0);}
.m98_c00441{transform:matrix(0.176699,0.004241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176699,0.004241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176699,0.004241,-0.005998,0.249928,0,0);}
.m102_c00441{transform:matrix(0.176808,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176808,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176808,0.002475,-0.003500,0.249976,0,0);}
.mb1_c00441{transform:matrix(0.177459,0.004259,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177459,0.004259,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177459,0.004259,-0.005998,0.249928,0,0);}
.md3_c00441{transform:matrix(0.177603,0.002486,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177603,0.002486,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177603,0.002486,-0.003500,0.249976,0,0);}
.mf5_c00441{transform:matrix(0.178343,0.002497,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178343,0.002497,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178343,0.002497,-0.003500,0.249976,0,0);}
.mcd_c00441{transform:matrix(0.178348,0.002497,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178348,0.002497,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178348,0.002497,-0.003500,0.249976,0,0);}
.ma6_c00441{transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);}
.mcc_c00441{transform:matrix(0.178578,0.002500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178578,0.002500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178578,0.002500,-0.003500,0.249976,0,0);}
.me6_c00441{transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);}
.m9b_c00441{transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);}
.m56_c00441{transform:matrix(0.178844,0.004471,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178844,0.004471,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178844,0.004471,-0.006248,0.249922,0,0);}
.m101_c00441{transform:matrix(0.178982,0.002506,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178982,0.002506,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178982,0.002506,-0.003500,0.249976,0,0);}
.m53_c00441{transform:matrix(0.179169,0.004479,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179169,0.004479,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179169,0.004479,-0.006248,0.249922,0,0);}
.m29_c00441{transform:matrix(0.179602,0.003951,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179602,0.003951,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179602,0.003951,-0.005499,0.249940,0,0);}
.mba_c00441{transform:matrix(0.180518,0.004332,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180518,0.004332,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180518,0.004332,-0.005998,0.249928,0,0);}
.m2d_c00441{transform:matrix(0.180558,0.004333,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180558,0.004333,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180558,0.004333,-0.005998,0.249928,0,0);}
.m97_c00441{transform:matrix(0.180648,0.004336,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180648,0.004336,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180648,0.004336,-0.005998,0.249928,0,0);}
.m69_c00441{transform:matrix(0.181013,0.004525,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181013,0.004525,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181013,0.004525,-0.006248,0.249922,0,0);}
.m90_c00441{transform:matrix(0.181533,0.004357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181533,0.004357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181533,0.004357,-0.005998,0.249928,0,0);}
.m65_c00441{transform:matrix(0.181608,0.004540,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181608,0.004540,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181608,0.004540,-0.006248,0.249922,0,0);}
.m25_c00441{transform:matrix(0.181891,0.004002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181891,0.004002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181891,0.004002,-0.005499,0.249940,0,0);}
.mf6_c00441{transform:matrix(0.181967,0.002548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181967,0.002548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181967,0.002548,-0.003500,0.249976,0,0);}
.m63_c00441{transform:matrix(0.182003,0.004550,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182003,0.004550,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182003,0.004550,-0.006248,0.249922,0,0);}
.ma4_c00441{transform:matrix(0.182073,0.004370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182073,0.004370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182073,0.004370,-0.005998,0.249928,0,0);}
.m2a_c00441{transform:matrix(0.182136,0.004007,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182136,0.004007,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182136,0.004007,-0.005499,0.249940,0,0);}
.m61_c00441{transform:matrix(0.182373,0.004559,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182373,0.004559,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182373,0.004559,-0.006248,0.249922,0,0);}
.m6c_c00441{transform:matrix(0.182758,0.004569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182758,0.004569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182758,0.004569,-0.006248,0.249922,0,0);}
.mae_c00441{transform:matrix(0.182767,0.004386,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182767,0.004386,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182767,0.004386,-0.005998,0.249928,0,0);}
.m19_c00441{transform:matrix(0.182866,0.004023,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182866,0.004023,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182866,0.004023,-0.005499,0.249940,0,0);}
.m2f_c00441{transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182902,0.004390,-0.005998,0.249928,0,0);}
.m58_c00441{transform:matrix(0.182923,0.004573,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182923,0.004573,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182923,0.004573,-0.006248,0.249922,0,0);}
.md7_c00441{transform:matrix(0.184327,0.002581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184327,0.002581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184327,0.002581,-0.003500,0.249976,0,0);}
.m5b_c00441{transform:matrix(0.184597,0.004615,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184597,0.004615,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184597,0.004615,-0.006248,0.249922,0,0);}
.m6d_c00441{transform:matrix(0.185917,0.004648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185917,0.004648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185917,0.004648,-0.006248,0.249922,0,0);}
.m20_c00441{transform:matrix(0.186350,0.004100,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186350,0.004100,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186350,0.004100,-0.005499,0.249940,0,0);}
.m8a_c00441{transform:matrix(0.187606,0.004503,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187606,0.004503,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187606,0.004503,-0.005998,0.249928,0,0);}
.m78_c00441{transform:matrix(0.187711,0.004505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187711,0.004505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187711,0.004505,-0.005998,0.249928,0,0);}
.mdd_c00441{transform:matrix(0.187852,0.002630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187852,0.002630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187852,0.002630,-0.003500,0.249976,0,0);}
.m82_c00441{transform:matrix(0.187961,0.004511,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187961,0.004511,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187961,0.004511,-0.005998,0.249928,0,0);}
.m9a_c00441{transform:matrix(0.188036,0.004513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188036,0.004513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188036,0.004513,-0.005998,0.249928,0,0);}
.m23_c00441{transform:matrix(0.188089,0.004138,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188089,0.004138,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188089,0.004138,-0.005499,0.249940,0,0);}
.mc8_c00441{transform:matrix(0.188282,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188282,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188282,0.002636,-0.003500,0.249976,0,0);}
.m8e_c00441{transform:matrix(0.188331,0.004520,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188331,0.004520,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188331,0.004520,-0.005998,0.249928,0,0);}
.mb_c00441{transform:matrix(0.188529,0.004148,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188529,0.004148,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188529,0.004148,-0.005499,0.249940,0,0);}
.m92_c00441{transform:matrix(0.188616,0.004527,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188616,0.004527,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188616,0.004527,-0.005998,0.249928,0,0);}
.m76_c00441{transform:matrix(0.189051,0.004537,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189051,0.004537,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189051,0.004537,-0.005998,0.249928,0,0);}
.m51_c00441{transform:matrix(0.189056,0.004726,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189056,0.004726,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189056,0.004726,-0.006248,0.249922,0,0);}
.mfe_c00441{transform:matrix(0.189266,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189266,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189266,0.002650,-0.003500,0.249976,0,0);}
.m2e_c00441{transform:matrix(0.189325,0.004544,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189325,0.004544,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189325,0.004544,-0.005998,0.249928,0,0);}
.mf9_c00441{transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);}
.m36_c00441{transform:matrix(0.190130,0.004563,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190130,0.004563,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190130,0.004563,-0.005998,0.249928,0,0);}
.med_c00441{transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);}
.m2c_c00441{transform:matrix(0.190614,0.004194,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190614,0.004194,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190614,0.004194,-0.005499,0.249940,0,0);}
.me1_c00441{transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);}
.m5c_c00441{transform:matrix(0.190820,0.004771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190820,0.004771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190820,0.004771,-0.006248,0.249922,0,0);}
.m50_c00441{transform:matrix(0.190830,0.004771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190830,0.004771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190830,0.004771,-0.006248,0.249922,0,0);}
.mbb_c00441{transform:matrix(0.191135,0.004587,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191135,0.004587,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191135,0.004587,-0.005998,0.249928,0,0);}
.m8d_c00441{transform:matrix(0.191485,0.004596,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191485,0.004596,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191485,0.004596,-0.005998,0.249928,0,0);}
.ma8_c00441{transform:matrix(0.191490,0.004596,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191490,0.004596,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191490,0.004596,-0.005998,0.249928,0,0);}
.md8_c00441{transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191801,0.002685,-0.003500,0.249976,0,0);}
.m27_c00441{transform:matrix(0.192448,0.004234,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192448,0.004234,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192448,0.004234,-0.005499,0.249940,0,0);}
.m4f_c00441{transform:matrix(0.192795,0.004820,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192795,0.004820,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192795,0.004820,-0.006248,0.249922,0,0);}
.m96_c00441{transform:matrix(0.193214,0.004637,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193214,0.004637,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193214,0.004637,-0.005998,0.249928,0,0);}
.m52_c00441{transform:matrix(0.193300,0.004832,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193300,0.004832,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193300,0.004832,-0.006248,0.249922,0,0);}
.md0_c00441{transform:matrix(0.193661,0.002711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193661,0.002711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193661,0.002711,-0.003500,0.249976,0,0);}
.m9e_c00441{transform:matrix(0.193664,0.004648,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193664,0.004648,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193664,0.004648,-0.005998,0.249928,0,0);}
.mb9_c00441{transform:matrix(0.194299,0.004663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194299,0.004663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194299,0.004663,-0.005998,0.249928,0,0);}
.mea_c00441{transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194451,0.002722,-0.003500,0.249976,0,0);}
.me2_c00441{transform:matrix(0.194601,0.002724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194601,0.002724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194601,0.002724,-0.003500,0.249976,0,0);}
.m42_c00441{transform:matrix(0.194644,0.004866,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194644,0.004866,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194644,0.004866,-0.006248,0.249922,0,0);}
.m7_c00441{transform:matrix(0.194773,0.004285,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194773,0.004285,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194773,0.004285,-0.005499,0.249940,0,0);}
.m86_c00441{transform:matrix(0.195319,0.004688,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195319,0.004688,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195319,0.004688,-0.005998,0.249928,0,0);}
.m2_c00441{transform:matrix(0.195383,0.004298,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195383,0.004298,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195383,0.004298,-0.005499,0.249940,0,0);}
.m22_c00441{transform:matrix(0.195458,0.004300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195458,0.004300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195458,0.004300,-0.005499,0.249940,0,0);}
.m84_c00441{transform:matrix(0.195559,0.004693,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195559,0.004693,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195559,0.004693,-0.005998,0.249928,0,0);}
.m46_c00441{transform:matrix(0.196244,0.004906,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196244,0.004906,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196244,0.004906,-0.006248,0.249922,0,0);}
.mb3_c00441{transform:matrix(0.196978,0.004727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196978,0.004727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196978,0.004727,-0.005998,0.249928,0,0);}
.md6_c00441{transform:matrix(0.197021,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197021,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197021,0.002758,-0.003500,0.249976,0,0);}
.m62_c00441{transform:matrix(0.197088,0.004927,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197088,0.004927,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197088,0.004927,-0.006248,0.249922,0,0);}
.m33_c00441{transform:matrix(0.197148,0.004732,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197148,0.004732,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197148,0.004732,-0.005998,0.249928,0,0);}
.m43_c00441{transform:matrix(0.197163,0.004929,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197163,0.004929,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197163,0.004929,-0.006248,0.249922,0,0);}
.ma3_c00441{transform:matrix(0.197263,0.004734,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197263,0.004734,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197263,0.004734,-0.005998,0.249928,0,0);}
.mf3_c00441{transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);}
.mb0_c00441{transform:matrix(0.197703,0.004745,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197703,0.004745,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197703,0.004745,-0.005998,0.249928,0,0);}
.mb8_c00441{transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197743,0.004746,-0.005998,0.249928,0,0);}
.mbc_c00441{transform:matrix(0.198038,0.004753,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198038,0.004753,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198038,0.004753,-0.005998,0.249928,0,0);}
.m95_c00441{transform:matrix(0.198298,0.004759,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198298,0.004759,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198298,0.004759,-0.005998,0.249928,0,0);}
.m5_c00441{transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198592,0.004369,-0.005499,0.249940,0,0);}
.m91_c00441{transform:matrix(0.198673,0.004768,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198673,0.004768,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198673,0.004768,-0.005998,0.249928,0,0);}
.m8_c00441{transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199027,0.004379,-0.005499,0.249940,0,0);}
.m70_c00441{transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199693,0.004992,-0.006248,0.249922,0,0);}
.mf7_c00441{transform:matrix(0.202170,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202170,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202170,0.002830,-0.003500,0.249976,0,0);}
.mf4_c00441{transform:matrix(0.202570,0.002836,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202570,0.002836,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202570,0.002836,-0.003500,0.249976,0,0);}
.m7d_c00441{transform:matrix(0.202642,0.004863,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202642,0.004863,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202642,0.004863,-0.005998,0.249928,0,0);}
.m28_c00441{transform:matrix(0.203001,0.004466,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203001,0.004466,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203001,0.004466,-0.005499,0.249940,0,0);}
.m99_c00441{transform:matrix(0.203996,0.004896,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203996,0.004896,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203996,0.004896,-0.005998,0.249928,0,0);}
.me7_c00441{transform:matrix(0.204400,0.002862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204400,0.002862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204400,0.002862,-0.003500,0.249976,0,0);}
.m3_c00441{transform:matrix(0.204870,0.004507,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204870,0.004507,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204870,0.004507,-0.005499,0.249940,0,0);}
.m80_c00441{transform:matrix(0.205046,0.004921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205046,0.004921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205046,0.004921,-0.005998,0.249928,0,0);}
.m49_c00441{transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);}
.m21_c00441{transform:matrix(0.206115,0.004535,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206115,0.004535,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206115,0.004535,-0.005499,0.249940,0,0);}
.mde_c00441{transform:matrix(0.206900,0.002897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206900,0.002897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206900,0.002897,-0.003500,0.249976,0,0);}
.m4a_c00441{transform:matrix(0.207695,0.005192,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207695,0.005192,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207695,0.005192,-0.006248,0.249922,0,0);}
.m45_c00441{transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);}
.meb_c00441{transform:matrix(0.208565,0.002920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208565,0.002920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208565,0.002920,-0.003500,0.249976,0,0);}
.mec_c00441{transform:matrix(0.208715,0.002922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208715,0.002922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208715,0.002922,-0.003500,0.249976,0,0);}
.m0_c00441{transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);}
.mcf_c00441{transform:matrix(0.209130,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209130,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209130,0.002928,-0.003500,0.249976,0,0);}
.mdb_c00441{transform:matrix(0.209165,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209165,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209165,0.002928,-0.003500,0.249976,0,0);}
.mca_c00441{transform:matrix(0.209449,0.002932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209449,0.002932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209449,0.002932,-0.003500,0.249976,0,0);}
.mb6_c00441{transform:matrix(0.209830,0.005036,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209830,0.005036,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209830,0.005036,-0.005998,0.249928,0,0);}
.me8_c00441{transform:matrix(0.210784,0.002951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210784,0.002951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210784,0.002951,-0.003500,0.249976,0,0);}
.m55_c00441{transform:matrix(0.211154,0.005279,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211154,0.005279,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211154,0.005279,-0.006248,0.249922,0,0);}
.m18_c00441{transform:matrix(0.211404,0.004651,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211404,0.004651,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211404,0.004651,-0.005499,0.249940,0,0);}
.md2_c00441{transform:matrix(0.211569,0.002962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211569,0.002962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211569,0.002962,-0.003500,0.249976,0,0);}
.m24_c00441{transform:matrix(0.211679,0.004657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211679,0.004657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211679,0.004657,-0.005499,0.249940,0,0);}
.mc9_c00441{transform:matrix(0.212064,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212064,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212064,0.002969,-0.003500,0.249976,0,0);}
.me3_c00441{transform:matrix(0.212069,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212069,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212069,0.002969,-0.003500,0.249976,0,0);}
.m79_c00441{transform:matrix(0.212469,0.005099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212469,0.005099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212469,0.005099,-0.005998,0.249928,0,0);}
.m48_c00441{transform:matrix(0.212719,0.005318,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212719,0.005318,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212719,0.005318,-0.006248,0.249922,0,0);}
.m54_c00441{transform:matrix(0.213178,0.005329,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213178,0.005329,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213178,0.005329,-0.006248,0.249922,0,0);}
.me9_c00441{transform:matrix(0.213554,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213554,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213554,0.002990,-0.003500,0.249976,0,0);}
.mbe_c00441{transform:matrix(0.213923,0.005134,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213923,0.005134,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213923,0.005134,-0.005998,0.249928,0,0);}
.mdc_c00441{transform:matrix(0.214224,0.002999,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214224,0.002999,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214224,0.002999,-0.003500,0.249976,0,0);}
.m7e_c00441{transform:matrix(0.214428,0.005146,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214428,0.005146,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214428,0.005146,-0.005998,0.249928,0,0);}
.m4c_c00441{transform:matrix(0.214473,0.005362,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214473,0.005362,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214473,0.005362,-0.006248,0.249922,0,0);}
.m77_c00441{transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214768,0.005154,-0.005998,0.249928,0,0);}
.ma1_c00441{transform:matrix(0.215428,0.005170,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215428,0.005170,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215428,0.005170,-0.005998,0.249928,0,0);}
.mc0_c00441{transform:matrix(0.215538,0.005173,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215538,0.005173,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215538,0.005173,-0.005998,0.249928,0,0);}
.maf_c00441{transform:matrix(0.215688,0.005177,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215688,0.005177,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215688,0.005177,-0.005998,0.249928,0,0);}
.m85_c00441{transform:matrix(0.216643,0.005199,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216643,0.005199,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216643,0.005199,-0.005998,0.249928,0,0);}
.md9_c00441{transform:matrix(0.217459,0.003044,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217459,0.003044,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217459,0.003044,-0.003500,0.249976,0,0);}
.mee_c00441{transform:matrix(0.217844,0.003050,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217844,0.003050,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217844,0.003050,-0.003500,0.249976,0,0);}
.m71_c00441{transform:matrix(0.218157,0.005454,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218157,0.005454,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218157,0.005454,-0.006248,0.249922,0,0);}
.m8c_c00441{transform:matrix(0.218857,0.005253,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218857,0.005253,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218857,0.005253,-0.005998,0.249928,0,0);}
.me4_c00441{transform:matrix(0.219064,0.003067,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219064,0.003067,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219064,0.003067,-0.003500,0.249976,0,0);}
.mf0_c00441{transform:matrix(0.219858,0.003078,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219858,0.003078,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219858,0.003078,-0.003500,0.249976,0,0);}
.mf8_c00441{transform:matrix(0.219878,0.003078,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219878,0.003078,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219878,0.003078,-0.003500,0.249976,0,0);}
.m9c_c00441{transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221081,0.005306,-0.005998,0.249928,0,0);}
.m67_c00441{transform:matrix(0.221701,0.005543,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221701,0.005543,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221701,0.005543,-0.006248,0.249922,0,0);}
.m5f_c00441{transform:matrix(0.222480,0.005562,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222480,0.005562,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222480,0.005562,-0.006248,0.249922,0,0);}
.mce_c00441{transform:matrix(0.222753,0.003119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222753,0.003119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222753,0.003119,-0.003500,0.249976,0,0);}
.mc1_c00441{transform:matrix(0.222911,0.005350,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222911,0.005350,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222911,0.005350,-0.005998,0.249928,0,0);}
.mc4_c00441{transform:matrix(0.223651,0.005368,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223651,0.005368,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223651,0.005368,-0.005998,0.249928,0,0);}
.m7f_c00441{transform:matrix(0.224300,0.005383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224300,0.005383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224300,0.005383,-0.005998,0.249928,0,0);}
.mc7_c00441{transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);}
.m4d_c00441{transform:matrix(0.225035,0.005626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225035,0.005626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225035,0.005626,-0.006248,0.249922,0,0);}
.m44_c00441{transform:matrix(0.225215,0.005630,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225215,0.005630,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225215,0.005630,-0.006248,0.249922,0,0);}
.m88_c00441{transform:matrix(0.227175,0.005452,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227175,0.005452,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227175,0.005452,-0.005998,0.249928,0,0);}
.m6_c00441{transform:matrix(0.229175,0.005042,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229175,0.005042,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229175,0.005042,-0.005499,0.249940,0,0);}
.m93_c00441{transform:matrix(0.229919,0.005518,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229919,0.005518,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229919,0.005518,-0.005998,0.249928,0,0);}
.mdf_c00441{transform:matrix(0.230017,0.003220,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230017,0.003220,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230017,0.003220,-0.003500,0.249976,0,0);}
.m74_c00441{transform:matrix(0.231553,0.005557,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231553,0.005557,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231553,0.005557,-0.005998,0.249928,0,0);}
.m37_c00441{transform:matrix(0.231588,0.005558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231588,0.005558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231588,0.005558,-0.005998,0.249928,0,0);}
.mbf_c00441{transform:matrix(0.232598,0.005582,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232598,0.005582,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232598,0.005582,-0.005998,0.249928,0,0);}
.mf2_c00441{transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);}
.mef_c00441{transform:matrix(0.233227,0.003265,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233227,0.003265,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233227,0.003265,-0.003500,0.249976,0,0);}
.m89_c00441{transform:matrix(0.233373,0.005601,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233373,0.005601,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233373,0.005601,-0.005998,0.249928,0,0);}
.m8f_c00441{transform:matrix(0.235877,0.005661,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235877,0.005661,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235877,0.005661,-0.005998,0.249928,0,0);}
.m7a_c00441{transform:matrix(0.237047,0.005689,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237047,0.005689,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237047,0.005689,-0.005998,0.249928,0,0);}
.m94_c00441{transform:matrix(0.237317,0.005696,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237317,0.005696,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237317,0.005696,-0.005998,0.249928,0,0);}
.m8b_c00441{transform:matrix(0.237557,0.005701,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237557,0.005701,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237557,0.005701,-0.005998,0.249928,0,0);}
.m87_c00441{transform:matrix(0.239836,0.005756,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239836,0.005756,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239836,0.005756,-0.005998,0.249928,0,0);}
.mc6_c00441{transform:matrix(0.243271,0.003406,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243271,0.003406,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243271,0.003406,-0.003500,0.249976,0,0);}
.me5_c00441{transform:matrix(0.250385,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250385,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250385,0.003505,-0.003500,0.249976,0,0);}
.mcb_c00441{transform:matrix(0.250465,0.003507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250465,0.003507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250465,0.003507,-0.003500,0.249976,0,0);}
.md1_c00441{transform:matrix(0.251445,0.003520,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251445,0.003520,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251445,0.003520,-0.003500,0.249976,0,0);}
.mf1_c00441{transform:matrix(0.257185,0.003601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257185,0.003601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257185,0.003601,-0.003500,0.249976,0,0);}
.m72_c00441{transform:matrix(0.258016,0.006192,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258016,0.006192,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258016,0.006192,-0.005998,0.249928,0,0);}
.mc5_c00441{transform:matrix(0.268459,0.003758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268459,0.003758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268459,0.003758,-0.003500,0.249976,0,0);}
.m73_c00441{transform:matrix(0.348395,0.008361,-0.005998,0.249928,0,0);-ms-transform:matrix(0.348395,0.008361,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.348395,0.008361,-0.005998,0.249928,0,0);}
.m7c_c00441{transform:matrix(0.353023,0.008473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.353023,0.008473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.353023,0.008473,-0.005998,0.249928,0,0);}
.m17_c00441{transform:matrix(0.430741,0.009476,-0.005499,0.249940,0,0);-ms-transform:matrix(0.430741,0.009476,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.430741,0.009476,-0.005499,0.249940,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:0.000000px;}
.fc0_c00441{color:transparent;}
.fs16_c00441{font-size:55.655453px;}
.fs10_c00441{font-size:57.766630px;}
.fs1a_c00441{font-size:58.805762px;}
.fse_c00441{font-size:58.816932px;}
.fs17_c00441{font-size:59.855865px;}
.fs6_c00441{font-size:59.867234px;}
.fs18_c00441{font-size:60.905968px;}
.fsf_c00441{font-size:60.917537px;}
.fs9_c00441{font-size:60.919028px;}
.fs12_c00441{font-size:61.967839px;}
.fs19_c00441{font-size:63.006174px;}
.fs1_c00441{font-size:64.065498px;}
.fs8_c00441{font-size:64.070012px;}
.fs15_c00441{font-size:65.118746px;}
.fs11_c00441{font-size:66.169048px;}
.fs4_c00441{font-size:67.216260px;}
.fsb_c00441{font-size:67.220997px;}
.fs3_c00441{font-size:68.266515px;}
.fs14_c00441{font-size:68.269653px;}
.fsa_c00441{font-size:68.271325px;}
.fs13_c00441{font-size:69.319956px;}
.fsc_c00441{font-size:69.321653px;}
.fs5_c00441{font-size:70.370258px;}
.fsd_c00441{font-size:70.371981px;}
.fs1b_c00441{font-size:75.607408px;}
.fs7_c00441{font-size:75.623621px;}
.fs2_c00441{font-size:76.668547px;}
.fs0_c00441{font-size:127.050000px;}
.y0_c00441{bottom:0.000000px;}
.y104_c00441{bottom:19.531167px;}
.y103_c00441{bottom:20.874981px;}
.y102_c00441{bottom:21.069306px;}
.y101_c00441{bottom:21.679899px;}
.y100_c00441{bottom:22.308894px;}
.yff_c00441{bottom:22.544379px;}
.yfe_c00441{bottom:23.576940px;}
.yfd_c00441{bottom:23.941404px;}
.yfc_c00441{bottom:24.834855px;}
.yfb_c00441{bottom:37.362111px;}
.yfa_c00441{bottom:38.068803px;}
.yf9_c00441{bottom:39.059268px;}
.yf8_c00441{bottom:39.403479px;}
.yf7_c00441{bottom:39.989421px;}
.yf6_c00441{bottom:40.382562px;}
.yf5_c00441{bottom:41.305008px;}
.yf4_c00441{bottom:51.564432px;}
.yf3_c00441{bottom:51.784320px;}
.yf2_c00441{bottom:53.189775px;}
.yf1_c00441{bottom:53.410335px;}
.yf0_c00441{bottom:54.436329px;}
.yef_c00441{bottom:55.268079px;}
.yee_c00441{bottom:55.794570px;}
.yed_c00441{bottom:56.966397px;}
.yec_c00441{bottom:69.766209px;}
.yeb_c00441{bottom:70.062798px;}
.yea_c00441{bottom:71.433477px;}
.ye9_c00441{bottom:71.882385px;}
.ye8_c00441{bottom:72.837567px;}
.ye7_c00441{bottom:73.336461px;}
.ye6_c00441{bottom:74.691384px;}
.ye5_c00441{bottom:75.326769px;}
.ye4_c00441{bottom:88.949727px;}
.ye3_c00441{bottom:89.236986px;}
.ye2_c00441{bottom:89.796426px;}
.ye1_c00441{bottom:90.144459px;}
.ye0_c00441{bottom:91.014468px;}
.ydf_c00441{bottom:91.880046px;}
.yde_c00441{bottom:92.337384px;}
.ydd_c00441{bottom:103.378428px;}
.ydc_c00441{bottom:105.141399px;}
.ydb_c00441{bottom:105.637842px;}
.yda_c00441{bottom:106.921155px;}
.yd9_c00441{bottom:107.506188px;}
.yd8_c00441{bottom:107.902725px;}
.yd7_c00441{bottom:109.081692px;}
.yd6_c00441{bottom:120.087090px;}
.yd5_c00441{bottom:120.420711px;}
.yd4_c00441{bottom:120.845712px;}
.yd3_c00441{bottom:121.910802px;}
.yd2_c00441{bottom:122.633181px;}
.yd1_c00441{bottom:123.330642px;}
.yd0_c00441{bottom:124.217034px;}
.ycf_c00441{bottom:125.040900px;}
.yce_c00441{bottom:125.559663px;}
.ycd_c00441{bottom:126.092355px;}
.ycc_c00441{bottom:137.789787px;}
.ycb_c00441{bottom:138.401349px;}
.yca_c00441{bottom:139.267893px;}
.yc9_c00441{bottom:139.566639px;}
.yc8_c00441{bottom:139.827585px;}
.yc7_c00441{bottom:140.617059px;}
.yc6_c00441{bottom:140.943000px;}
.yc5_c00441{bottom:151.543980px;}
.yc4_c00441{bottom:154.731060px;}
.yc3_c00441{bottom:155.599656px;}
.yc2_c00441{bottom:156.886176px;}
.yc1_c00441{bottom:157.535724px;}
.yc0_c00441{bottom:157.920612px;}
.ybf_c00441{bottom:159.540396px;}
.ybe_c00441{bottom:169.812816px;}
.ybd_c00441{bottom:170.532336px;}
.ybc_c00441{bottom:171.546312px;}
.ybb_c00441{bottom:172.491372px;}
.yba_c00441{bottom:173.010360px;}
.yb9_c00441{bottom:173.713068px;}
.yb8_c00441{bottom:174.108540px;}
.yb7_c00441{bottom:174.425172px;}
.yb6_c00441{bottom:175.614768px;}
.yb5_c00441{bottom:176.117208px;}
.yb4_c00441{bottom:176.822184px;}
.yb3_c00441{bottom:186.625128px;}
.yb2_c00441{bottom:189.004656px;}
.yb1_c00441{bottom:190.562820px;}
.yb0_c00441{bottom:192.584256px;}
.yaf_c00441{bottom:195.297492px;}
.yae_c00441{bottom:196.265364px;}
.yad_c00441{bottom:205.312812px;}
.yac_c00441{bottom:206.062020px;}
.yab_c00441{bottom:206.467536px;}
.yaa_c00441{bottom:208.053516px;}
.ya9_c00441{bottom:209.295444px;}
.ya8_c00441{bottom:209.721336px;}
.ya7_c00441{bottom:210.234996px;}
.ya6_c00441{bottom:211.659492px;}
.ya5_c00441{bottom:221.177772px;}
.ya4_c00441{bottom:222.751800px;}
.ya3_c00441{bottom:223.267980px;}
.ya2_c00441{bottom:224.451468px;}
.ya1_c00441{bottom:225.314400px;}
.ya0_c00441{bottom:225.791400px;}
.y9f_c00441{bottom:227.685384px;}
.y9e_c00441{bottom:228.401124px;}
.y9d_c00441{bottom:237.841980px;}
.y9c_c00441{bottom:238.638396px;}
.y9b_c00441{bottom:240.351336px;}
.y9a_c00441{bottom:242.559180px;}
.y99_c00441{bottom:244.399992px;}
.y98_c00441{bottom:245.689656px;}
.y97_c00441{bottom:254.877492px;}
.y96_c00441{bottom:255.384012px;}
.y95_c00441{bottom:255.773268px;}
.y94_c00441{bottom:257.146176px;}
.y93_c00441{bottom:257.811600px;}
.y92_c00441{bottom:259.028808px;}
.y91_c00441{bottom:259.468224px;}
.y90_c00441{bottom:260.662848px;}
.y8f_c00441{bottom:261.117084px;}
.y8e_c00441{bottom:261.933996px;}
.y8d_c00441{bottom:262.704924px;}
.y8c_c00441{bottom:273.925764px;}
.y8b_c00441{bottom:274.342392px;}
.y8a_c00441{bottom:274.657032px;}
.y89_c00441{bottom:276.351876px;}
.y88_c00441{bottom:276.712020px;}
.y87_c00441{bottom:278.102232px;}
.y86_c00441{bottom:278.627256px;}
.y85_c00441{bottom:279.716508px;}
.y84_c00441{bottom:288.407904px;}
.y83_c00441{bottom:289.651464px;}
.y82_c00441{bottom:290.294208px;}
.y81_c00441{bottom:292.234284px;}
.y80_c00441{bottom:292.566768px;}
.y7f_c00441{bottom:294.618996px;}
.y7e_c00441{bottom:296.055312px;}
.y7d_c00441{bottom:296.742984px;}
.y7c_c00441{bottom:306.591708px;}
.y7b_c00441{bottom:307.571772px;}
.y7a_c00441{bottom:308.161740px;}
.y79_c00441{bottom:309.017460px;}
.y78_c00441{bottom:309.555624px;}
.y77_c00441{bottom:310.065060px;}
.y76_c00441{bottom:310.475964px;}
.y75_c00441{bottom:312.271644px;}
.y74_c00441{bottom:312.571200px;}
.y73_c00441{bottom:313.477500px;}
.y72_c00441{bottom:322.841887px;}
.y71_c00441{bottom:324.353850px;}
.y70_c00441{bottom:324.839212px;}
.y6f_c00441{bottom:325.379587px;}
.y6e_c00441{bottom:326.899950px;}
.y6d_c00441{bottom:327.453825px;}
.y6c_c00441{bottom:328.610362px;}
.y6b_c00441{bottom:329.225062px;}
.y6a_c00441{bottom:329.778750px;}
.y69_c00441{bottom:330.995775px;}
.y68_c00441{bottom:339.501225px;}
.y67_c00441{bottom:340.716975px;}
.y66_c00441{bottom:342.166837px;}
.y65_c00441{bottom:342.903075px;}
.y64_c00441{bottom:343.591725px;}
.y63_c00441{bottom:346.200075px;}
.y62_c00441{bottom:347.096062px;}
.y61_c00441{bottom:348.282075px;}
.y60_c00441{bottom:358.654050px;}
.y5f_c00441{bottom:359.280300px;}
.y5e_c00441{bottom:359.802750px;}
.y5d_c00441{bottom:360.119812px;}
.y5c_c00441{bottom:361.674712px;}
.y5b_c00441{bottom:362.082750px;}
.y5a_c00441{bottom:362.589862px;}
.y59_c00441{bottom:363.985612px;}
.y58_c00441{bottom:365.298412px;}
.y57_c00441{bottom:373.811325px;}
.y56_c00441{bottom:375.944700px;}
.y55_c00441{bottom:377.914912px;}
.y54_c00441{bottom:378.569887px;}
.y53_c00441{bottom:379.001100px;}
.y52_c00441{bottom:380.476462px;}
.y51_c00441{bottom:382.048875px;}
.y50_c00441{bottom:391.133400px;}
.y4f_c00441{bottom:391.853062px;}
.y4e_c00441{bottom:392.270287px;}
.y4d_c00441{bottom:393.748687px;}
.y4c_c00441{bottom:394.336087px;}
.y4b_c00441{bottom:394.939687px;}
.y4a_c00441{bottom:396.983437px;}
.y49_c00441{bottom:399.332325px;}
.y48_c00441{bottom:407.146312px;}
.y47_c00441{bottom:409.214587px;}
.y46_c00441{bottom:410.802712px;}
.y45_c00441{bottom:413.004825px;}
.y44_c00441{bottom:413.789400px;}
.y43_c00441{bottom:415.981050px;}
.y42_c00441{bottom:416.889787px;}
.y41_c00441{bottom:424.803675px;}
.y40_c00441{bottom:425.194875px;}
.y3f_c00441{bottom:425.806387px;}
.y3e_c00441{bottom:427.368337px;}
.y3d_c00441{bottom:427.787737px;}
.y3c_c00441{bottom:428.561212px;}
.y3b_c00441{bottom:429.270262px;}
.y3a_c00441{bottom:430.664887px;}
.y39_c00441{bottom:431.199000px;}
.y38_c00441{bottom:448.725012px;}
.y37_c00441{bottom:448.725432px;}
.y36_c00441{bottom:459.767028px;}
.y35_c00441{bottom:460.168680px;}
.y34_c00441{bottom:461.287236px;}
.y33_c00441{bottom:461.955252px;}
.y32_c00441{bottom:462.441432px;}
.y31_c00441{bottom:463.449108px;}
.y30_c00441{bottom:463.922328px;}
.y2f_c00441{bottom:464.921364px;}
.y2e_c00441{bottom:465.757500px;}
.y2d_c00441{bottom:476.693322px;}
.y2c_c00441{bottom:477.157725px;}
.y2b_c00441{bottom:477.646167px;}
.y2a_c00441{bottom:478.608483px;}
.y29_c00441{bottom:478.896186px;}
.y28_c00441{bottom:480.224688px;}
.y27_c00441{bottom:480.657711px;}
.y26_c00441{bottom:481.769850px;}
.y25_c00441{bottom:482.064714px;}
.y24_c00441{bottom:482.754027px;}
.y23_c00441{bottom:493.859229px;}
.y22_c00441{bottom:494.330979px;}
.y21_c00441{bottom:496.466694px;}
.y20_c00441{bottom:497.155191px;}
.y1f_c00441{bottom:497.813433px;}
.y1e_c00441{bottom:498.304863px;}
.y1d_c00441{bottom:499.572864px;}
.y1c_c00441{bottom:500.305653px;}
.y1b_c00441{bottom:511.009194px;}
.y1a_c00441{bottom:511.479714px;}
.y19_c00441{bottom:512.515254px;}
.y18_c00441{bottom:512.971764px;}
.y17_c00441{bottom:513.849342px;}
.y16_c00441{bottom:514.191156px;}
.y15_c00441{bottom:514.619616px;}
.y14_c00441{bottom:515.833992px;}
.y13_c00441{bottom:516.235143px;}
.y12_c00441{bottom:527.316804px;}
.y11_c00441{bottom:527.909859px;}
.y10_c00441{bottom:529.177053px;}
.yf_c00441{bottom:530.766144px;}
.ye_c00441{bottom:531.248808px;}
.yd_c00441{bottom:531.813927px;}
.yc_c00441{bottom:532.103037px;}
.yb_c00441{bottom:532.713087px;}
.ya_c00441{bottom:544.072551px;}
.y9_c00441{bottom:544.488384px;}
.y8_c00441{bottom:546.044565px;}
.y7_c00441{bottom:546.411063px;}
.y6_c00441{bottom:547.607577px;}
.y5_c00441{bottom:548.107461px;}
.y4_c00441{bottom:548.529102px;}
.y3_c00441{bottom:549.572595px;}
.y2_c00441{bottom:549.994500px;}
.y1_c00441{bottom:560.668500px;}
.h17_c00441{height:55.655453px;}
.h11_c00441{height:57.766630px;}
.h1b_c00441{height:58.805762px;}
.hf_c00441{height:58.816932px;}
.h18_c00441{height:59.855865px;}
.h7_c00441{height:59.867234px;}
.h19_c00441{height:60.905968px;}
.h10_c00441{height:60.917537px;}
.ha_c00441{height:60.919028px;}
.h13_c00441{height:61.967839px;}
.h1a_c00441{height:63.006174px;}
.h2_c00441{height:64.065498px;}
.h9_c00441{height:64.070012px;}
.h16_c00441{height:65.118746px;}
.h12_c00441{height:66.169048px;}
.h5_c00441{height:67.216260px;}
.hc_c00441{height:67.220997px;}
.h4_c00441{height:68.266515px;}
.h15_c00441{height:68.269653px;}
.hb_c00441{height:68.271325px;}
.h14_c00441{height:69.319956px;}
.hd_c00441{height:69.321653px;}
.h6_c00441{height:70.370258px;}
.he_c00441{height:70.371981px;}
.h1c_c00441{height:75.607408px;}
.h8_c00441{height:75.623621px;}
.h3_c00441{height:76.668547px;}
.h1_c00441{height:127.050000px;}
.h0_c00441{height:608.250000px;}
.w0_c00441{width:359.100000px;}
.w1_c00441{width:359.250000px;}
.x0_c00441{left:0.000000px;}
.x80_c00441{left:40.829607px;}
.x7d_c00441{left:42.238878px;}
.x75_c00441{left:43.300665px;}
.x6c_c00441{left:44.759724px;}
.x69_c00441{left:45.853968px;}
.x5d_c00441{left:47.215680px;}
.x45_c00441{left:48.791513px;}
.x36_c00441{left:50.057925px;}
.x1f_c00441{left:51.791841px;}
.x2_c00441{left:52.999500px;}
.x52_c00441{left:62.889000px;}
.x76_c00441{left:67.525956px;}
.x71_c00441{left:68.646000px;}
.x3_c00441{left:72.177000px;}
.x59_c00441{left:73.401660px;}
.x30_c00441{left:75.783000px;}
.x2f_c00441{left:76.956912px;}
.x19_c00441{left:78.591141px;}
.x20_c00441{left:80.532087px;}
.xb_c00441{left:82.186698px;}
.x28_c00441{left:85.815000px;}
.x46_c00441{left:89.687925px;}
.x77_c00441{left:91.077810px;}
.x21_c00441{left:92.843559px;}
.xc_c00441{left:95.941995px;}
.x31_c00441{left:97.147500px;}
.x79_c00441{left:99.352044px;}
.x53_c00441{left:100.651500px;}
.x3d_c00441{left:101.953575px;}
.x61_c00441{left:104.153328px;}
.x83_c00441{left:107.563056px;}
.x54_c00441{left:113.133000px;}
.x4b_c00441{left:114.156713px;}
.x7a_c00441{left:118.245696px;}
.x4_c00441{left:119.608500px;}
.xd_c00441{left:122.857089px;}
.x1a_c00441{left:123.880668px;}
.x81_c00441{left:125.809488px;}
.x29_c00441{left:127.441500px;}
.x78_c00441{left:128.492610px;}
.x12_c00441{left:129.730749px;}
.x6f_c00441{left:135.688380px;}
.x4c_c00441{left:136.943588px;}
.x5_c00441{left:138.774000px;}
.x6a_c00441{left:140.416200px;}
.x1b_c00441{left:141.443358px;}
.xe_c00441{left:145.819584px;}
.x2a_c00441{left:147.159000px;}
.x72_c00441{left:148.318500px;}
.x13_c00441{left:150.161211px;}
.x1_c00441{left:153.360000px;}
.x22_c00441{left:157.211721px;}
.x6_c00441{left:161.496000px;}
.x62_c00441{left:163.037676px;}
.x1c_c00441{left:164.951256px;}
.x14_c00441{left:166.448574px;}
.x40_c00441{left:168.163875px;}
.x5e_c00441{left:172.402680px;}
.x85_c00441{left:174.835257px;}
.x84_c00441{left:177.497556px;}
.x63_c00441{left:178.720164px;}
.x4d_c00441{left:179.782950px;}
.x32_c00441{left:181.294500px;}
.x41_c00441{left:183.284625px;}
.x3e_c00441{left:187.304888px;}
.x1d_c00441{left:189.561522px;}
.x39_c00441{left:196.264838px;}
.x66_c00441{left:198.437136px;}
.x4e_c00441{left:200.316938px;}
.x5a_c00441{left:202.623372px;}
.x55_c00441{left:205.074000px;}
.x7b_c00441{left:207.225981px;}
.x15_c00441{left:208.248498px;}
.x2b_c00441{left:209.403000px;}
.x47_c00441{left:210.529350px;}
.x23_c00441{left:212.550279px;}
.x7e_c00441{left:214.430409px;}
.x7_c00441{left:215.883000px;}
.x6d_c00441{left:217.956048px;}
.xf_c00441{left:221.461734px;}
.x24_c00441{left:224.536251px;}
.x56_c00441{left:226.300500px;}
.x16_c00441{left:229.953960px;}
.x8_c00441{left:232.542000px;}
.x48_c00441{left:234.292988px;}
.x3a_c00441{left:235.979888px;}
.x2c_c00441{left:237.237000px;}
.x42_c00441{left:240.857738px;}
.x67_c00441{left:243.934440px;}
.x64_c00441{left:245.969220px;}
.x57_c00441{left:248.724000px;}
.x73_c00441{left:250.192500px;}
.x3f_c00441{left:252.965175px;}
.x4f_c00441{left:256.628625px;}
.x5f_c00441{left:258.027180px;}
.x49_c00441{left:259.659938px;}
.x25_c00441{left:264.662502px;}
.x1e_c00441{left:265.833957px;}
.x37_c00441{left:269.411175px;}
.x43_c00441{left:271.916663px;}
.x50_c00441{left:276.622613px;}
.x17_c00441{left:279.275049px;}
.x10_c00441{left:281.790054px;}
.x2d_c00441{left:283.843500px;}
.x26_c00441{left:285.022611px;}
.x5b_c00441{left:286.744788px;}
.x60_c00441{left:288.496680px;}
.x33_c00441{left:291.487500px;}
.x74_c00441{left:293.875500px;}
.x44_c00441{left:295.105500px;}
.x6e_c00441{left:296.330676px;}
.x3b_c00441{left:299.197013px;}
.x2e_c00441{left:300.579000px;}
.x18_c00441{left:301.685544px;}
.x9_c00441{left:303.277500px;}
.x27_c00441{left:304.358253px;}
.x7f_c00441{left:305.393265px;}
.x58_c00441{left:308.961000px;}
.x11_c00441{left:310.043181px;}
.x82_c00441{left:311.054448px;}
.x7c_c00441{left:314.816439px;}
.x34_c00441{left:315.948000px;}
.x70_c00441{left:319.882776px;}
.x6b_c00441{left:320.885316px;}
.xa_c00441{left:322.179000px;}
.x3c_c00441{left:323.180513px;}
.x68_c00441{left:324.335088px;}
.x65_c00441{left:326.989944px;}
.x38_c00441{left:328.487400px;}
.x35_c00441{left:331.596000px;}
.x51_c00441{left:350.571900px;}
.x4a_c00441{left:351.575250px;}
.x5c_c00441{left:356.585748px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs16_c00441{font-size:49.471514pt;}
.fs10_c00441{font-size:51.348115pt;}
.fs1a_c00441{font-size:52.271789pt;}
.fse_c00441{font-size:52.281717pt;}
.fs17_c00441{font-size:53.205213pt;}
.fs6_c00441{font-size:53.215319pt;}
.fs18_c00441{font-size:54.138638pt;}
.fsf_c00441{font-size:54.148921pt;}
.fs9_c00441{font-size:54.150247pt;}
.fs12_c00441{font-size:55.082524pt;}
.fs19_c00441{font-size:56.005488pt;}
.fs1_c00441{font-size:56.947110pt;}
.fs8_c00441{font-size:56.951122pt;}
.fs15_c00441{font-size:57.883330pt;}
.fs11_c00441{font-size:58.816932pt;}
.fs4_c00441{font-size:59.747787pt;}
.fsb_c00441{font-size:59.751997pt;}
.fs3_c00441{font-size:60.681346pt;}
.fs14_c00441{font-size:60.684136pt;}
.fsa_c00441{font-size:60.685622pt;}
.fs13_c00441{font-size:61.617738pt;}
.fsc_c00441{font-size:61.619247pt;}
.fs5_c00441{font-size:62.551340pt;}
.fsd_c00441{font-size:62.552872pt;}
.fs1b_c00441{font-size:67.206585pt;}
.fs7_c00441{font-size:67.220997pt;}
.fs2_c00441{font-size:68.149820pt;}
.fs0_c00441{font-size:112.933333pt;}
.y0_c00441{bottom:0.000000pt;}
.y104_c00441{bottom:17.361037pt;}
.y103_c00441{bottom:18.555539pt;}
.y102_c00441{bottom:18.728272pt;}
.y101_c00441{bottom:19.271021pt;}
.y100_c00441{bottom:19.830128pt;}
.yff_c00441{bottom:20.039448pt;}
.yfe_c00441{bottom:20.957280pt;}
.yfd_c00441{bottom:21.281248pt;}
.yfc_c00441{bottom:22.075427pt;}
.yfb_c00441{bottom:33.210765pt;}
.yfa_c00441{bottom:33.838936pt;}
.yf9_c00441{bottom:34.719349pt;}
.yf8_c00441{bottom:35.025315pt;}
.yf7_c00441{bottom:35.546152pt;}
.yf6_c00441{bottom:35.895611pt;}
.yf5_c00441{bottom:36.715563pt;}
.yf4_c00441{bottom:45.835051pt;}
.yf3_c00441{bottom:46.030507pt;}
.yf2_c00441{bottom:47.279800pt;}
.yf1_c00441{bottom:47.475853pt;}
.yf0_c00441{bottom:48.387848pt;}
.yef_c00441{bottom:49.127181pt;}
.yee_c00441{bottom:49.595173pt;}
.yed_c00441{bottom:50.636797pt;}
.yec_c00441{bottom:62.014408pt;}
.yeb_c00441{bottom:62.278043pt;}
.yea_c00441{bottom:63.496424pt;}
.ye9_c00441{bottom:63.895453pt;}
.ye8_c00441{bottom:64.744504pt;}
.ye7_c00441{bottom:65.187965pt;}
.ye6_c00441{bottom:66.392341pt;}
.ye5_c00441{bottom:66.957128pt;}
.ye4_c00441{bottom:79.066424pt;}
.ye3_c00441{bottom:79.321765pt;}
.ye2_c00441{bottom:79.819045pt;}
.ye1_c00441{bottom:80.128408pt;}
.ye0_c00441{bottom:80.901749pt;}
.ydf_c00441{bottom:81.671152pt;}
.yde_c00441{bottom:82.077675pt;}
.ydd_c00441{bottom:91.891936pt;}
.ydc_c00441{bottom:93.459021pt;}
.ydb_c00441{bottom:93.900304pt;}
.yda_c00441{bottom:95.041027pt;}
.yd9_c00441{bottom:95.561056pt;}
.yd8_c00441{bottom:95.913533pt;}
.yd7_c00441{bottom:96.961504pt;}
.yd6_c00441{bottom:106.744080pt;}
.yd5_c00441{bottom:107.040632pt;}
.yd4_c00441{bottom:107.418411pt;}
.yd3_c00441{bottom:108.365157pt;}
.yd2_c00441{bottom:109.007272pt;}
.yd1_c00441{bottom:109.627237pt;}
.yd0_c00441{bottom:110.415141pt;}
.ycf_c00441{bottom:111.147467pt;}
.yce_c00441{bottom:111.608589pt;}
.ycd_c00441{bottom:112.082093pt;}
.ycc_c00441{bottom:122.479811pt;}
.ycb_c00441{bottom:123.023421pt;}
.yca_c00441{bottom:123.793683pt;}
.yc9_c00441{bottom:124.059235pt;}
.yc8_c00441{bottom:124.291187pt;}
.yc7_c00441{bottom:124.992941pt;}
.yc6_c00441{bottom:125.282667pt;}
.yc5_c00441{bottom:134.705760pt;}
.yc4_c00441{bottom:137.538720pt;}
.yc3_c00441{bottom:138.310805pt;}
.yc2_c00441{bottom:139.454379pt;}
.yc1_c00441{bottom:140.031755pt;}
.yc0_c00441{bottom:140.373877pt;}
.ybf_c00441{bottom:141.813685pt;}
.ybe_c00441{bottom:150.944725pt;}
.ybd_c00441{bottom:151.584299pt;}
.ybc_c00441{bottom:152.485611pt;}
.ybb_c00441{bottom:153.325664pt;}
.yba_c00441{bottom:153.786987pt;}
.yb9_c00441{bottom:154.411616pt;}
.yb8_c00441{bottom:154.763147pt;}
.yb7_c00441{bottom:155.044597pt;}
.yb6_c00441{bottom:156.102016pt;}
.yb5_c00441{bottom:156.548629pt;}
.yb4_c00441{bottom:157.175275pt;}
.yb3_c00441{bottom:165.889003pt;}
.yb2_c00441{bottom:168.004139pt;}
.yb1_c00441{bottom:169.389173pt;}
.yb0_c00441{bottom:171.186005pt;}
.yaf_c00441{bottom:173.597771pt;}
.yae_c00441{bottom:174.458101pt;}
.yad_c00441{bottom:182.500277pt;}
.yac_c00441{bottom:183.166240pt;}
.yab_c00441{bottom:183.526699pt;}
.yaa_c00441{bottom:184.936459pt;}
.ya9_c00441{bottom:186.040395pt;}
.ya8_c00441{bottom:186.418965pt;}
.ya7_c00441{bottom:186.875552pt;}
.ya6_c00441{bottom:188.141771pt;}
.ya5_c00441{bottom:196.602464pt;}
.ya4_c00441{bottom:198.001600pt;}
.ya3_c00441{bottom:198.460427pt;}
.ya2_c00441{bottom:199.512416pt;}
.ya1_c00441{bottom:200.279467pt;}
.ya0_c00441{bottom:200.703467pt;}
.y9f_c00441{bottom:202.387008pt;}
.y9e_c00441{bottom:203.023221pt;}
.y9d_c00441{bottom:211.415093pt;}
.y9c_c00441{bottom:212.123019pt;}
.y9b_c00441{bottom:213.645632pt;}
.y9a_c00441{bottom:215.608160pt;}
.y99_c00441{bottom:217.244437pt;}
.y98_c00441{bottom:218.390805pt;}
.y97_c00441{bottom:226.557771pt;}
.y96_c00441{bottom:227.008011pt;}
.y95_c00441{bottom:227.354016pt;}
.y94_c00441{bottom:228.574379pt;}
.y93_c00441{bottom:229.165867pt;}
.y92_c00441{bottom:230.247829pt;}
.y91_c00441{bottom:230.638421pt;}
.y90_c00441{bottom:231.700309pt;}
.y8f_c00441{bottom:232.104075pt;}
.y8e_c00441{bottom:232.830219pt;}
.y8d_c00441{bottom:233.515488pt;}
.y8c_c00441{bottom:243.489568pt;}
.y8b_c00441{bottom:243.859904pt;}
.y8a_c00441{bottom:244.139584pt;}
.y89_c00441{bottom:245.646112pt;}
.y88_c00441{bottom:245.966240pt;}
.y87_c00441{bottom:247.201984pt;}
.y86_c00441{bottom:247.668672pt;}
.y85_c00441{bottom:248.636896pt;}
.y84_c00441{bottom:256.362581pt;}
.y83_c00441{bottom:257.467968pt;}
.y82_c00441{bottom:258.039296pt;}
.y81_c00441{bottom:259.763808pt;}
.y80_c00441{bottom:260.059349pt;}
.y7f_c00441{bottom:261.883552pt;}
.y7e_c00441{bottom:263.160277pt;}
.y7d_c00441{bottom:263.771541pt;}
.y7c_c00441{bottom:272.525963pt;}
.y7b_c00441{bottom:273.397131pt;}
.y7a_c00441{bottom:273.921547pt;}
.y79_c00441{bottom:274.682187pt;}
.y78_c00441{bottom:275.160555pt;}
.y77_c00441{bottom:275.613387pt;}
.y76_c00441{bottom:275.978635pt;}
.y75_c00441{bottom:277.574795pt;}
.y74_c00441{bottom:277.841067pt;}
.y73_c00441{bottom:278.646667pt;}
.y72_c00441{bottom:286.970567pt;}
.y71_c00441{bottom:288.314533pt;}
.y70_c00441{bottom:288.745967pt;}
.y6f_c00441{bottom:289.226300pt;}
.y6e_c00441{bottom:290.577733pt;}
.y6d_c00441{bottom:291.070067pt;}
.y6c_c00441{bottom:292.098100pt;}
.y6b_c00441{bottom:292.644500pt;}
.y6a_c00441{bottom:293.136667pt;}
.y69_c00441{bottom:294.218467pt;}
.y68_c00441{bottom:301.778867pt;}
.y67_c00441{bottom:302.859533pt;}
.y66_c00441{bottom:304.148300pt;}
.y65_c00441{bottom:304.802733pt;}
.y64_c00441{bottom:305.414867pt;}
.y63_c00441{bottom:307.733400pt;}
.y62_c00441{bottom:308.529833pt;}
.y61_c00441{bottom:309.584067pt;}
.y60_c00441{bottom:318.803600pt;}
.y5f_c00441{bottom:319.360267pt;}
.y5e_c00441{bottom:319.824667pt;}
.y5d_c00441{bottom:320.106500pt;}
.y5c_c00441{bottom:321.488633pt;}
.y5b_c00441{bottom:321.851333pt;}
.y5a_c00441{bottom:322.302100pt;}
.y59_c00441{bottom:323.542767pt;}
.y58_c00441{bottom:324.709700pt;}
.y57_c00441{bottom:332.276733pt;}
.y56_c00441{bottom:334.173067pt;}
.y55_c00441{bottom:335.924367pt;}
.y54_c00441{bottom:336.506567pt;}
.y53_c00441{bottom:336.889867pt;}
.y52_c00441{bottom:338.201300pt;}
.y51_c00441{bottom:339.599000pt;}
.y50_c00441{bottom:347.674133pt;}
.y4f_c00441{bottom:348.313833pt;}
.y4e_c00441{bottom:348.684700pt;}
.y4d_c00441{bottom:349.998833pt;}
.y4c_c00441{bottom:350.520967pt;}
.y4b_c00441{bottom:351.057500pt;}
.y4a_c00441{bottom:352.874167pt;}
.y49_c00441{bottom:354.962067pt;}
.y48_c00441{bottom:361.907833pt;}
.y47_c00441{bottom:363.746300pt;}
.y46_c00441{bottom:365.157967pt;}
.y45_c00441{bottom:367.115400pt;}
.y44_c00441{bottom:367.812800pt;}
.y43_c00441{bottom:369.760933pt;}
.y42_c00441{bottom:370.568700pt;}
.y41_c00441{bottom:377.603267pt;}
.y40_c00441{bottom:377.951000pt;}
.y3f_c00441{bottom:378.494567pt;}
.y3e_c00441{bottom:379.882967pt;}
.y3d_c00441{bottom:380.255767pt;}
.y3c_c00441{bottom:380.943300pt;}
.y3b_c00441{bottom:381.573567pt;}
.y3a_c00441{bottom:382.813233pt;}
.y39_c00441{bottom:383.288000pt;}
.y38_c00441{bottom:398.866677pt;}
.y37_c00441{bottom:398.867051pt;}
.y36_c00441{bottom:408.681803pt;}
.y35_c00441{bottom:409.038827pt;}
.y34_c00441{bottom:410.033099pt;}
.y33_c00441{bottom:410.626891pt;}
.y32_c00441{bottom:411.059051pt;}
.y31_c00441{bottom:411.954763pt;}
.y30_c00441{bottom:412.375403pt;}
.y2f_c00441{bottom:413.263435pt;}
.y2e_c00441{bottom:414.006667pt;}
.y2d_c00441{bottom:423.727397pt;}
.y2c_c00441{bottom:424.140200pt;}
.y2b_c00441{bottom:424.574371pt;}
.y2a_c00441{bottom:425.429763pt;}
.y29_c00441{bottom:425.685499pt;}
.y28_c00441{bottom:426.866389pt;}
.y27_c00441{bottom:427.251299pt;}
.y26_c00441{bottom:428.239867pt;}
.y25_c00441{bottom:428.501968pt;}
.y24_c00441{bottom:429.114691pt;}
.y23_c00441{bottom:438.985981pt;}
.y22_c00441{bottom:439.405315pt;}
.y21_c00441{bottom:441.303728pt;}
.y20_c00441{bottom:441.915725pt;}
.y1f_c00441{bottom:442.500829pt;}
.y1e_c00441{bottom:442.937656pt;}
.y1d_c00441{bottom:444.064768pt;}
.y1c_c00441{bottom:444.716136pt;}
.y1b_c00441{bottom:454.230395pt;}
.y1a_c00441{bottom:454.648635pt;}
.y19_c00441{bottom:455.569115pt;}
.y18_c00441{bottom:455.974901pt;}
.y17_c00441{bottom:456.754971pt;}
.y16_c00441{bottom:457.058805pt;}
.y15_c00441{bottom:457.439659pt;}
.y14_c00441{bottom:458.519104pt;}
.y13_c00441{bottom:458.875683pt;}
.y12_c00441{bottom:468.726048pt;}
.y11_c00441{bottom:469.253208pt;}
.y10_c00441{bottom:470.379603pt;}
.yf_c00441{bottom:471.792128pt;}
.ye_c00441{bottom:472.221163pt;}
.yd_c00441{bottom:472.723491pt;}
.yc_c00441{bottom:472.980477pt;}
.yb_c00441{bottom:473.522744pt;}
.ya_c00441{bottom:483.620045pt;}
.y9_c00441{bottom:483.989675pt;}
.y8_c00441{bottom:485.372947pt;}
.y7_c00441{bottom:485.698723pt;}
.y6_c00441{bottom:486.762291pt;}
.y5_c00441{bottom:487.206632pt;}
.y4_c00441{bottom:487.581424pt;}
.y3_c00441{bottom:488.508973pt;}
.y2_c00441{bottom:488.884000pt;}
.y1_c00441{bottom:498.372000pt;}
.h17_c00441{height:49.471514pt;}
.h11_c00441{height:51.348115pt;}
.h1b_c00441{height:52.271789pt;}
.hf_c00441{height:52.281717pt;}
.h18_c00441{height:53.205213pt;}
.h7_c00441{height:53.215319pt;}
.h19_c00441{height:54.138638pt;}
.h10_c00441{height:54.148921pt;}
.ha_c00441{height:54.150247pt;}
.h13_c00441{height:55.082524pt;}
.h1a_c00441{height:56.005488pt;}
.h2_c00441{height:56.947110pt;}
.h9_c00441{height:56.951122pt;}
.h16_c00441{height:57.883330pt;}
.h12_c00441{height:58.816932pt;}
.h5_c00441{height:59.747787pt;}
.hc_c00441{height:59.751997pt;}
.h4_c00441{height:60.681346pt;}
.h15_c00441{height:60.684136pt;}
.hb_c00441{height:60.685622pt;}
.h14_c00441{height:61.617738pt;}
.hd_c00441{height:61.619247pt;}
.h6_c00441{height:62.551340pt;}
.he_c00441{height:62.552872pt;}
.h1c_c00441{height:67.206585pt;}
.h8_c00441{height:67.220997pt;}
.h3_c00441{height:68.149820pt;}
.h1_c00441{height:112.933333pt;}
.h0_c00441{height:540.666667pt;}
.w0_c00441{width:319.200000pt;}
.w1_c00441{width:319.333333pt;}
.x0_c00441{left:0.000000pt;}
.x80_c00441{left:36.292984pt;}
.x7d_c00441{left:37.545669pt;}
.x75_c00441{left:38.489480pt;}
.x6c_c00441{left:39.786421pt;}
.x69_c00441{left:40.759083pt;}
.x5d_c00441{left:41.969493pt;}
.x45_c00441{left:43.370233pt;}
.x36_c00441{left:44.495933pt;}
.x1f_c00441{left:46.037192pt;}
.x2_c00441{left:47.110667pt;}
.x52_c00441{left:55.901333pt;}
.x76_c00441{left:60.023072pt;}
.x71_c00441{left:61.018667pt;}
.x3_c00441{left:64.157333pt;}
.x59_c00441{left:65.245920pt;}
.x30_c00441{left:67.362667pt;}
.x2f_c00441{left:68.406144pt;}
.x19_c00441{left:69.858792pt;}
.x20_c00441{left:71.584077pt;}
.xb_c00441{left:73.054843pt;}
.x28_c00441{left:76.280000pt;}
.x46_c00441{left:79.722600pt;}
.x77_c00441{left:80.958053pt;}
.x21_c00441{left:82.527608pt;}
.xc_c00441{left:85.281773pt;}
.x31_c00441{left:86.353333pt;}
.x79_c00441{left:88.312928pt;}
.x53_c00441{left:89.468000pt;}
.x3d_c00441{left:90.625400pt;}
.x61_c00441{left:92.580736pt;}
.x83_c00441{left:95.611605pt;}
.x54_c00441{left:100.562667pt;}
.x4b_c00441{left:101.472633pt;}
.x7a_c00441{left:105.107285pt;}
.x4_c00441{left:106.318667pt;}
.xd_c00441{left:109.206301pt;}
.x1a_c00441{left:110.116149pt;}
.x81_c00441{left:111.830656pt;}
.x29_c00441{left:113.281333pt;}
.x78_c00441{left:114.215653pt;}
.x12_c00441{left:115.316221pt;}
.x6f_c00441{left:120.611893pt;}
.x4c_c00441{left:121.727633pt;}
.x5_c00441{left:123.354667pt;}
.x6a_c00441{left:124.814400pt;}
.x1b_c00441{left:125.727429pt;}
.xe_c00441{left:129.617408pt;}
.x2a_c00441{left:130.808000pt;}
.x72_c00441{left:131.838667pt;}
.x13_c00441{left:133.476632pt;}
.x1_c00441{left:136.320000pt;}
.x22_c00441{left:139.743752pt;}
.x6_c00441{left:143.552000pt;}
.x62_c00441{left:144.922379pt;}
.x1c_c00441{left:146.623339pt;}
.x14_c00441{left:147.954288pt;}
.x40_c00441{left:149.479000pt;}
.x5e_c00441{left:153.246827pt;}
.x85_c00441{left:155.409117pt;}
.x84_c00441{left:157.775605pt;}
.x63_c00441{left:158.862368pt;}
.x4d_c00441{left:159.807067pt;}
.x32_c00441{left:161.150667pt;}
.x41_c00441{left:162.919667pt;}
.x3e_c00441{left:166.493233pt;}
.x1d_c00441{left:168.499131pt;}
.x39_c00441{left:174.457633pt;}
.x66_c00441{left:176.388565pt;}
.x4e_c00441{left:178.059500pt;}
.x5a_c00441{left:180.109664pt;}
.x55_c00441{left:182.288000pt;}
.x7b_c00441{left:184.200872pt;}
.x15_c00441{left:185.109776pt;}
.x2b_c00441{left:186.136000pt;}
.x47_c00441{left:187.137200pt;}
.x23_c00441{left:188.933581pt;}
.x7e_c00441{left:190.604808pt;}
.x7_c00441{left:191.896000pt;}
.x6d_c00441{left:193.738709pt;}
.xf_c00441{left:196.854875pt;}
.x24_c00441{left:199.587779pt;}
.x56_c00441{left:201.156000pt;}
.x16_c00441{left:204.403520pt;}
.x8_c00441{left:206.704000pt;}
.x48_c00441{left:208.260433pt;}
.x3a_c00441{left:209.759900pt;}
.x2c_c00441{left:210.877333pt;}
.x42_c00441{left:214.095767pt;}
.x67_c00441{left:216.830613pt;}
.x64_c00441{left:218.639307pt;}
.x57_c00441{left:221.088000pt;}
.x73_c00441{left:222.393333pt;}
.x3f_c00441{left:224.857933pt;}
.x4f_c00441{left:228.114333pt;}
.x5f_c00441{left:229.357493pt;}
.x49_c00441{left:230.808833pt;}
.x25_c00441{left:235.255557pt;}
.x1e_c00441{left:236.296851pt;}
.x37_c00441{left:239.476600pt;}
.x43_c00441{left:241.703700pt;}
.x50_c00441{left:245.886767pt;}
.x17_c00441{left:248.244488pt;}
.x10_c00441{left:250.480048pt;}
.x2d_c00441{left:252.305333pt;}
.x26_c00441{left:253.353432pt;}
.x5b_c00441{left:254.884256pt;}
.x60_c00441{left:256.441493pt;}
.x33_c00441{left:259.100000pt;}
.x74_c00441{left:261.222667pt;}
.x44_c00441{left:262.316000pt;}
.x6e_c00441{left:263.405045pt;}
.x3b_c00441{left:265.952900pt;}
.x2e_c00441{left:267.181333pt;}
.x18_c00441{left:268.164928pt;}
.x9_c00441{left:269.580000pt;}
.x27_c00441{left:270.540669pt;}
.x7f_c00441{left:271.460680pt;}
.x58_c00441{left:274.632000pt;}
.x11_c00441{left:275.593939pt;}
.x82_c00441{left:276.492843pt;}
.x7c_c00441{left:279.836835pt;}
.x34_c00441{left:280.842667pt;}
.x70_c00441{left:284.340245pt;}
.x6b_c00441{left:285.231392pt;}
.xa_c00441{left:286.381333pt;}
.x3c_c00441{left:287.271567pt;}
.x68_c00441{left:288.297856pt;}
.x65_c00441{left:290.657728pt;}
.x38_c00441{left:291.988800pt;}
.x35_c00441{left:294.752000pt;}
.x51_c00441{left:311.619467pt;}
.x4a_c00441{left:312.511333pt;}
.x5c_c00441{left:316.965109pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00442 {
    display:none;
  }
  .loading-indicator_c00442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00442 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00442 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00442" -> "#page-container .classname_c00442")
 */
.pf_c00442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00442 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00442 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00442 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00442 {overflow:visible;}
  }
}
.c_c00442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00442 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00442:after { /* webkit #35443 */
  content: '';
}
.t_c00442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00442 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00442 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00442 { /* info for Javascript */
  display:none;
}
.l_c00442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00442:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00442 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00442.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00442;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00442{transform:matrix(0.137301,-0.003844,0.006997,0.249902,0,0);-ms-transform:matrix(0.137301,-0.003844,0.006997,0.249902,0,0);-webkit-transform:matrix(0.137301,-0.003844,0.006997,0.249902,0,0);}
.m90_c00442{transform:matrix(0.137621,-0.003853,0.006997,0.249902,0,0);-ms-transform:matrix(0.137621,-0.003853,0.006997,0.249902,0,0);-webkit-transform:matrix(0.137621,-0.003853,0.006997,0.249902,0,0);}
.m38_c00442{transform:matrix(0.138625,-0.004857,0.008753,0.249847,0,0);-ms-transform:matrix(0.138625,-0.004857,0.008753,0.249847,0,0);-webkit-transform:matrix(0.138625,-0.004857,0.008753,0.249847,0,0);}
.m31_c00442{transform:matrix(0.138935,-0.004868,0.008753,0.249847,0,0);-ms-transform:matrix(0.138935,-0.004868,0.008753,0.249847,0,0);-webkit-transform:matrix(0.138935,-0.004868,0.008753,0.249847,0,0);}
.ma8_c00442{transform:matrix(0.142989,-0.004004,0.006997,0.249902,0,0);-ms-transform:matrix(0.142989,-0.004004,0.006997,0.249902,0,0);-webkit-transform:matrix(0.142989,-0.004004,0.006997,0.249902,0,0);}
.mc9_c00442{transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.144765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144765,0.000000,0.000000,0.250000,0,0);}
.mae_c00442{transform:matrix(0.148155,-0.002963,0.004999,0.249950,0,0);-ms-transform:matrix(0.148155,-0.002963,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148155,-0.002963,0.004999,0.249950,0,0);}
.m95_c00442{transform:matrix(0.150111,-0.004203,0.006997,0.249902,0,0);-ms-transform:matrix(0.150111,-0.004203,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150111,-0.004203,0.006997,0.249902,0,0);}
.mba_c00442{transform:matrix(0.150885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150885,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{transform:matrix(0.151041,-0.004229,0.006997,0.249902,0,0);-ms-transform:matrix(0.151041,-0.004229,0.006997,0.249902,0,0);-webkit-transform:matrix(0.151041,-0.004229,0.006997,0.249902,0,0);}
.mcc_c00442{transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);}
.mbc_c00442{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{transform:matrix(0.152277,-0.005335,0.008753,0.249847,0,0);-ms-transform:matrix(0.152277,-0.005335,0.008753,0.249847,0,0);-webkit-transform:matrix(0.152277,-0.005335,0.008753,0.249847,0,0);}
.m99_c00442{transform:matrix(0.153640,-0.004302,0.006997,0.249902,0,0);-ms-transform:matrix(0.153640,-0.004302,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153640,-0.004302,0.006997,0.249902,0,0);}
.mf6_c00442{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.mcb_c00442{transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);}
.md7_c00442{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.mca_c00442{transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158260,0.000000,0.000000,0.250000,0,0);}
.mcf_c00442{transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158295,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me1_c00442{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.md2_c00442{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m96_c00442{transform:matrix(0.162821,-0.004559,0.006997,0.249902,0,0);-ms-transform:matrix(0.162821,-0.004559,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162821,-0.004559,0.006997,0.249902,0,0);}
.m3e_c00442{transform:matrix(0.162835,-0.005705,0.008753,0.249847,0,0);-ms-transform:matrix(0.162835,-0.005705,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162835,-0.005705,0.008753,0.249847,0,0);}
.mf3_c00442{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m92_c00442{transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);-ms-transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164770,-0.004614,0.006997,0.249902,0,0);}
.mce_c00442{transform:matrix(0.165695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165695,0.000000,0.000000,0.250000,0,0);}
.md3_c00442{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.m28_c00442{transform:matrix(0.165968,-0.005815,0.008753,0.249847,0,0);-ms-transform:matrix(0.165968,-0.005815,0.008753,0.249847,0,0);-webkit-transform:matrix(0.165968,-0.005815,0.008753,0.249847,0,0);}
.mf7_c00442{transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166690,0.000000,0.000000,0.250000,0,0);}
.mc6_c00442{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00442{transform:matrix(0.167559,-0.004692,0.006997,0.249902,0,0);-ms-transform:matrix(0.167559,-0.004692,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167559,-0.004692,0.006997,0.249902,0,0);}
.m91_c00442{transform:matrix(0.168359,-0.004714,0.006997,0.249902,0,0);-ms-transform:matrix(0.168359,-0.004714,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168359,-0.004714,0.006997,0.249902,0,0);}
.m15_c00442{transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168670,0.000000,0.000000,0.250000,0,0);}
.md4_c00442{transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.170156,-0.005961,0.008753,0.249847,0,0);-ms-transform:matrix(0.170156,-0.005961,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170156,-0.005961,0.008753,0.249847,0,0);}
.m80_c00442{transform:matrix(0.170188,-0.004765,0.006997,0.249902,0,0);-ms-transform:matrix(0.170188,-0.004765,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170188,-0.004765,0.006997,0.249902,0,0);}
.m94_c00442{transform:matrix(0.170333,-0.004769,0.006997,0.249902,0,0);-ms-transform:matrix(0.170333,-0.004769,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170333,-0.004769,0.006997,0.249902,0,0);}
.mf5_c00442{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.170735,-0.005982,0.008753,0.249847,0,0);-ms-transform:matrix(0.170735,-0.005982,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170735,-0.005982,0.008753,0.249847,0,0);}
.mcd_c00442{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.m11_c00442{transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171645,0.000000,0.000000,0.250000,0,0);}
.m8d_c00442{transform:matrix(0.172322,-0.004825,0.006997,0.249902,0,0);-ms-transform:matrix(0.172322,-0.004825,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172322,-0.004825,0.006997,0.249902,0,0);}
.m81_c00442{transform:matrix(0.172432,-0.004828,0.006997,0.249902,0,0);-ms-transform:matrix(0.172432,-0.004828,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172432,-0.004828,0.006997,0.249902,0,0);}
.m22_c00442{transform:matrix(0.172739,-0.006052,0.008753,0.249847,0,0);-ms-transform:matrix(0.172739,-0.006052,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172739,-0.006052,0.008753,0.249847,0,0);}
.m9e_c00442{transform:matrix(0.172927,-0.004842,0.006997,0.249902,0,0);-ms-transform:matrix(0.172927,-0.004842,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172927,-0.004842,0.006997,0.249902,0,0);}
.m73_c00442{transform:matrix(0.172952,-0.004843,0.006997,0.249902,0,0);-ms-transform:matrix(0.172952,-0.004843,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172952,-0.004843,0.006997,0.249902,0,0);}
.me9_c00442{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.m8b_c00442{transform:matrix(0.173732,-0.004864,0.006997,0.249902,0,0);-ms-transform:matrix(0.173732,-0.004864,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173732,-0.004864,0.006997,0.249902,0,0);}
.m50_c00442{transform:matrix(0.173867,-0.004868,0.006997,0.249902,0,0);-ms-transform:matrix(0.173867,-0.004868,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173867,-0.004868,0.006997,0.249902,0,0);}
.m60_c00442{transform:matrix(0.174097,-0.004875,0.006997,0.249902,0,0);-ms-transform:matrix(0.174097,-0.004875,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174097,-0.004875,0.006997,0.249902,0,0);}
.m13_c00442{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m69_c00442{transform:matrix(0.174207,-0.004878,0.006997,0.249902,0,0);-ms-transform:matrix(0.174207,-0.004878,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174207,-0.004878,0.006997,0.249902,0,0);}
.m3d_c00442{transform:matrix(0.174608,-0.006117,0.008753,0.249847,0,0);-ms-transform:matrix(0.174608,-0.006117,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174608,-0.006117,0.008753,0.249847,0,0);}
.m61_c00442{transform:matrix(0.175141,-0.004904,0.006997,0.249902,0,0);-ms-transform:matrix(0.175141,-0.004904,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175141,-0.004904,0.006997,0.249902,0,0);}
.ma4_c00442{transform:matrix(0.175471,-0.004913,0.006997,0.249902,0,0);-ms-transform:matrix(0.175471,-0.004913,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175471,-0.004913,0.006997,0.249902,0,0);}
.m8e_c00442{transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);-ms-transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);}
.m2_c00442{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m86_c00442{transform:matrix(0.176076,-0.004930,0.006997,0.249902,0,0);-ms-transform:matrix(0.176076,-0.004930,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176076,-0.004930,0.006997,0.249902,0,0);}
.m4c_c00442{transform:matrix(0.176426,-0.004940,0.006997,0.249902,0,0);-ms-transform:matrix(0.176426,-0.004940,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176426,-0.004940,0.006997,0.249902,0,0);}
.m49_c00442{transform:matrix(0.176746,-0.004949,0.006997,0.249902,0,0);-ms-transform:matrix(0.176746,-0.004949,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176746,-0.004949,0.006997,0.249902,0,0);}
.m5c_c00442{transform:matrix(0.176916,-0.004954,0.006997,0.249902,0,0);-ms-transform:matrix(0.176916,-0.004954,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176916,-0.004954,0.006997,0.249902,0,0);}
.m35_c00442{transform:matrix(0.177996,-0.006236,0.008753,0.249847,0,0);-ms-transform:matrix(0.177996,-0.006236,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177996,-0.006236,0.008753,0.249847,0,0);}
.me5_c00442{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.mc2_c00442{transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);}
.md6_c00442{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m85_c00442{transform:matrix(0.179715,-0.005032,0.006997,0.249902,0,0);-ms-transform:matrix(0.179715,-0.005032,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179715,-0.005032,0.006997,0.249902,0,0);}
.m52_c00442{transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);-ms-transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179750,-0.005033,0.006997,0.249902,0,0);}
.me6_c00442{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.mb0_c00442{transform:matrix(0.180434,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180434,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180434,-0.003609,0.004999,0.249950,0,0);}
.m98_c00442{transform:matrix(0.180459,-0.005053,0.006997,0.249902,0,0);-ms-transform:matrix(0.180459,-0.005053,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180459,-0.005053,0.006997,0.249902,0,0);}
.mab_c00442{transform:matrix(0.180639,-0.003613,0.004999,0.249950,0,0);-ms-transform:matrix(0.180639,-0.003613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180639,-0.003613,0.004999,0.249950,0,0);}
.m5_c00442{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00442{transform:matrix(0.180909,-0.006338,0.008753,0.249847,0,0);-ms-transform:matrix(0.180909,-0.006338,0.008753,0.249847,0,0);-webkit-transform:matrix(0.180909,-0.006338,0.008753,0.249847,0,0);}
.ma0_c00442{transform:matrix(0.181314,-0.005077,0.006997,0.249902,0,0);-ms-transform:matrix(0.181314,-0.005077,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181314,-0.005077,0.006997,0.249902,0,0);}
.mb4_c00442{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.m1c_c00442{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m23_c00442{transform:matrix(0.182333,-0.006388,0.008753,0.249847,0,0);-ms-transform:matrix(0.182333,-0.006388,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182333,-0.006388,0.008753,0.249847,0,0);}
.mf8_c00442{transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);}
.md8_c00442{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m1e_c00442{transform:matrix(0.183033,-0.006413,0.008753,0.249847,0,0);-ms-transform:matrix(0.183033,-0.006413,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183033,-0.006413,0.008753,0.249847,0,0);}
.m9c_c00442{transform:matrix(0.183163,-0.005129,0.006997,0.249902,0,0);-ms-transform:matrix(0.183163,-0.005129,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183163,-0.005129,0.006997,0.249902,0,0);}
.mbd_c00442{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.mad_c00442{transform:matrix(0.183998,-0.003680,0.004999,0.249950,0,0);-ms-transform:matrix(0.183998,-0.003680,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183998,-0.003680,0.004999,0.249950,0,0);}
.m3_c00442{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00442{transform:matrix(0.184208,-0.005158,0.006997,0.249902,0,0);-ms-transform:matrix(0.184208,-0.005158,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184208,-0.005158,0.006997,0.249902,0,0);}
.m77_c00442{transform:matrix(0.184708,-0.005172,0.006997,0.249902,0,0);-ms-transform:matrix(0.184708,-0.005172,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184708,-0.005172,0.006997,0.249902,0,0);}
.m71_c00442{transform:matrix(0.184768,-0.005173,0.006997,0.249902,0,0);-ms-transform:matrix(0.184768,-0.005173,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184768,-0.005173,0.006997,0.249902,0,0);}
.m53_c00442{transform:matrix(0.184823,-0.005175,0.006997,0.249902,0,0);-ms-transform:matrix(0.184823,-0.005175,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184823,-0.005175,0.006997,0.249902,0,0);}
.mf4_c00442{transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00442{transform:matrix(0.185492,-0.005194,0.006997,0.249902,0,0);-ms-transform:matrix(0.185492,-0.005194,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185492,-0.005194,0.006997,0.249902,0,0);}
.m7e_c00442{transform:matrix(0.186077,-0.005210,0.006997,0.249902,0,0);-ms-transform:matrix(0.186077,-0.005210,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186077,-0.005210,0.006997,0.249902,0,0);}
.m1d_c00442{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00442{transform:matrix(0.186286,-0.006527,0.008753,0.249847,0,0);-ms-transform:matrix(0.186286,-0.006527,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186286,-0.006527,0.008753,0.249847,0,0);}
.m7a_c00442{transform:matrix(0.186467,-0.005221,0.006997,0.249902,0,0);-ms-transform:matrix(0.186467,-0.005221,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186467,-0.005221,0.006997,0.249902,0,0);}
.md0_c00442{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.mdc_c00442{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.md5_c00442{transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);}
.m8c_c00442{transform:matrix(0.188601,-0.005281,0.006997,0.249902,0,0);-ms-transform:matrix(0.188601,-0.005281,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188601,-0.005281,0.006997,0.249902,0,0);}
.ma7_c00442{transform:matrix(0.188941,-0.005290,0.006997,0.249902,0,0);-ms-transform:matrix(0.188941,-0.005290,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188941,-0.005290,0.006997,0.249902,0,0);}
.m70_c00442{transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);-ms-transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189126,-0.005296,0.006997,0.249902,0,0);}
.m21_c00442{transform:matrix(0.189474,-0.006638,0.008753,0.249847,0,0);-ms-transform:matrix(0.189474,-0.006638,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189474,-0.006638,0.008753,0.249847,0,0);}
.me7_c00442{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m97_c00442{transform:matrix(0.190475,-0.005333,0.006997,0.249902,0,0);-ms-transform:matrix(0.190475,-0.005333,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190475,-0.005333,0.006997,0.249902,0,0);}
.m7b_c00442{transform:matrix(0.190585,-0.005336,0.006997,0.249902,0,0);-ms-transform:matrix(0.190585,-0.005336,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190585,-0.005336,0.006997,0.249902,0,0);}
.m10_c00442{transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);}
.m62_c00442{transform:matrix(0.191045,-0.005349,0.006997,0.249902,0,0);-ms-transform:matrix(0.191045,-0.005349,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191045,-0.005349,0.006997,0.249902,0,0);}
.me8_c00442{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.me0_c00442{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.192457,-0.006743,0.008753,0.249847,0,0);-ms-transform:matrix(0.192457,-0.006743,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192457,-0.006743,0.008753,0.249847,0,0);}
.m7c_c00442{transform:matrix(0.192904,-0.005401,0.006997,0.249902,0,0);-ms-transform:matrix(0.192904,-0.005401,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192904,-0.005401,0.006997,0.249902,0,0);}
.m40_c00442{transform:matrix(0.193142,-0.006767,0.008753,0.249847,0,0);-ms-transform:matrix(0.193142,-0.006767,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193142,-0.006767,0.008753,0.249847,0,0);}
.mc8_c00442{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m6c_c00442{transform:matrix(0.193914,-0.005430,0.006997,0.249902,0,0);-ms-transform:matrix(0.193914,-0.005430,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193914,-0.005430,0.006997,0.249902,0,0);}
.ma_c00442{transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193945,0.000000,0.000000,0.250000,0,0);}
.mbe_c00442{transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194785,0.000000,0.000000,0.250000,0,0);}
.m8f_c00442{transform:matrix(0.195014,-0.005460,0.006997,0.249902,0,0);-ms-transform:matrix(0.195014,-0.005460,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195014,-0.005460,0.006997,0.249902,0,0);}
.m74_c00442{transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);-ms-transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195164,-0.005465,0.006997,0.249902,0,0);}
.mc1_c00442{transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195210,0.000000,0.000000,0.250000,0,0);}
.mc7_c00442{transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);}
.mc5_c00442{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195670,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.195728,-0.005480,0.006997,0.249902,0,0);-ms-transform:matrix(0.195728,-0.005480,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195728,-0.005480,0.006997,0.249902,0,0);}
.mbf_c00442{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00442{transform:matrix(0.196693,-0.005507,0.006997,0.249902,0,0);-ms-transform:matrix(0.196693,-0.005507,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196693,-0.005507,0.006997,0.249902,0,0);}
.maf_c00442{transform:matrix(0.196826,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196826,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196826,-0.003937,0.004999,0.249950,0,0);}
.ma5_c00442{transform:matrix(0.196853,-0.005512,0.006997,0.249902,0,0);-ms-transform:matrix(0.196853,-0.005512,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196853,-0.005512,0.006997,0.249902,0,0);}
.m2b_c00442{transform:matrix(0.197509,-0.006920,0.008753,0.249847,0,0);-ms-transform:matrix(0.197509,-0.006920,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197509,-0.006920,0.008753,0.249847,0,0);}
.m4d_c00442{transform:matrix(0.197837,-0.005539,0.006997,0.249902,0,0);-ms-transform:matrix(0.197837,-0.005539,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197837,-0.005539,0.006997,0.249902,0,0);}
.m6e_c00442{transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);-ms-transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);}
.m78_c00442{transform:matrix(0.198402,-0.005555,0.006997,0.249902,0,0);-ms-transform:matrix(0.198402,-0.005555,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198402,-0.005555,0.006997,0.249902,0,0);}
.m4e_c00442{transform:matrix(0.198797,-0.005566,0.006997,0.249902,0,0);-ms-transform:matrix(0.198797,-0.005566,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198797,-0.005566,0.006997,0.249902,0,0);}
.m36_c00442{transform:matrix(0.199238,-0.006980,0.008753,0.249847,0,0);-ms-transform:matrix(0.199238,-0.006980,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199238,-0.006980,0.008753,0.249847,0,0);}
.m20_c00442{transform:matrix(0.199473,-0.006989,0.008753,0.249847,0,0);-ms-transform:matrix(0.199473,-0.006989,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199473,-0.006989,0.008753,0.249847,0,0);}
.mef_c00442{transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);}
.m82_c00442{transform:matrix(0.200012,-0.005600,0.006997,0.249902,0,0);-ms-transform:matrix(0.200012,-0.005600,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200012,-0.005600,0.006997,0.249902,0,0);}
.m54_c00442{transform:matrix(0.201131,-0.005632,0.006997,0.249902,0,0);-ms-transform:matrix(0.201131,-0.005632,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201131,-0.005632,0.006997,0.249902,0,0);}
.m2c_c00442{transform:matrix(0.201237,-0.007050,0.008753,0.249847,0,0);-ms-transform:matrix(0.201237,-0.007050,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201237,-0.007050,0.008753,0.249847,0,0);}
.m9b_c00442{transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);-ms-transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201436,-0.005640,0.006997,0.249902,0,0);}
.m8a_c00442{transform:matrix(0.201756,-0.005649,0.006997,0.249902,0,0);-ms-transform:matrix(0.201756,-0.005649,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201756,-0.005649,0.006997,0.249902,0,0);}
.me2_c00442{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.202281,-0.007087,0.008753,0.249847,0,0);-ms-transform:matrix(0.202281,-0.007087,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202281,-0.007087,0.008753,0.249847,0,0);}
.m87_c00442{transform:matrix(0.202516,-0.005670,0.006997,0.249902,0,0);-ms-transform:matrix(0.202516,-0.005670,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202516,-0.005670,0.006997,0.249902,0,0);}
.m84_c00442{transform:matrix(0.202616,-0.005673,0.006997,0.249902,0,0);-ms-transform:matrix(0.202616,-0.005673,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202616,-0.005673,0.006997,0.249902,0,0);}
.m4b_c00442{transform:matrix(0.202636,-0.005674,0.006997,0.249902,0,0);-ms-transform:matrix(0.202636,-0.005674,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202636,-0.005674,0.006997,0.249902,0,0);}
.m17_c00442{transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203115,0.000000,0.000000,0.250000,0,0);}
.mda_c00442{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m51_c00442{transform:matrix(0.204030,-0.005713,0.006997,0.249902,0,0);-ms-transform:matrix(0.204030,-0.005713,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204030,-0.005713,0.006997,0.249902,0,0);}
.m7d_c00442{transform:matrix(0.204045,-0.005713,0.006997,0.249902,0,0);-ms-transform:matrix(0.204045,-0.005713,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204045,-0.005713,0.006997,0.249902,0,0);}
.m59_c00442{transform:matrix(0.204585,-0.005728,0.006997,0.249902,0,0);-ms-transform:matrix(0.204585,-0.005728,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204585,-0.005728,0.006997,0.249902,0,0);}
.mde_c00442{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.m83_c00442{transform:matrix(0.205090,-0.005743,0.006997,0.249902,0,0);-ms-transform:matrix(0.205090,-0.005743,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205090,-0.005743,0.006997,0.249902,0,0);}
.m42_c00442{transform:matrix(0.205179,-0.007188,0.008753,0.249847,0,0);-ms-transform:matrix(0.205179,-0.007188,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205179,-0.007188,0.008753,0.249847,0,0);}
.m9f_c00442{transform:matrix(0.205694,-0.005759,0.006997,0.249902,0,0);-ms-transform:matrix(0.205694,-0.005759,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205694,-0.005759,0.006997,0.249902,0,0);}
.m88_c00442{transform:matrix(0.205884,-0.005765,0.006997,0.249902,0,0);-ms-transform:matrix(0.205884,-0.005765,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205884,-0.005765,0.006997,0.249902,0,0);}
.m56_c00442{transform:matrix(0.206294,-0.005776,0.006997,0.249902,0,0);-ms-transform:matrix(0.206294,-0.005776,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206294,-0.005776,0.006997,0.249902,0,0);}
.md9_c00442{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.mb5_c00442{transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.mc4_c00442{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{transform:matrix(0.206923,-0.007250,0.008753,0.249847,0,0);-ms-transform:matrix(0.206923,-0.007250,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206923,-0.007250,0.008753,0.249847,0,0);}
.m3c_c00442{transform:matrix(0.207458,-0.007268,0.008753,0.249847,0,0);-ms-transform:matrix(0.207458,-0.007268,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207458,-0.007268,0.008753,0.249847,0,0);}
.mbb_c00442{transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);}
.m66_c00442{transform:matrix(0.208073,-0.005826,0.006997,0.249902,0,0);-ms-transform:matrix(0.208073,-0.005826,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208073,-0.005826,0.006997,0.249902,0,0);}
.m8_c00442{transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);}
.m2a_c00442{transform:matrix(0.208337,-0.007299,0.008753,0.249847,0,0);-ms-transform:matrix(0.208337,-0.007299,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208337,-0.007299,0.008753,0.249847,0,0);}
.mb3_c00442{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.md1_c00442{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.mf2_c00442{transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);}
.maa_c00442{transform:matrix(0.209298,-0.004186,0.004999,0.249950,0,0);-ms-transform:matrix(0.209298,-0.004186,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209298,-0.004186,0.004999,0.249950,0,0);}
.med_c00442{transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209735,0.000000,0.000000,0.250000,0,0);}
.m64_c00442{transform:matrix(0.210443,-0.005892,0.006997,0.249902,0,0);-ms-transform:matrix(0.210443,-0.005892,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210443,-0.005892,0.006997,0.249902,0,0);}
.mee_c00442{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m93_c00442{transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);-ms-transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);}
.ma9_c00442{transform:matrix(0.211038,-0.004221,0.004999,0.249950,0,0);-ms-transform:matrix(0.211038,-0.004221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211038,-0.004221,0.004999,0.249950,0,0);}
.mea_c00442{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211555,0.000000,0.000000,0.250000,0,0);}
.ma6_c00442{transform:matrix(0.211692,-0.005927,0.006997,0.249902,0,0);-ms-transform:matrix(0.211692,-0.005927,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211692,-0.005927,0.006997,0.249902,0,0);}
.m3f_c00442{transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-ms-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212210,-0.007435,0.008753,0.249847,0,0);}
.m9d_c00442{transform:matrix(0.212342,-0.005946,0.006997,0.249902,0,0);-ms-transform:matrix(0.212342,-0.005946,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212342,-0.005946,0.006997,0.249902,0,0);}
.m5a_c00442{transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);-ms-transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212942,-0.005962,0.006997,0.249902,0,0);}
.m6b_c00442{transform:matrix(0.212947,-0.005963,0.006997,0.249902,0,0);-ms-transform:matrix(0.212947,-0.005963,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212947,-0.005963,0.006997,0.249902,0,0);}
.mdb_c00442{transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);}
.m89_c00442{transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);-ms-transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213276,-0.005972,0.006997,0.249902,0,0);}
.m5d_c00442{transform:matrix(0.213436,-0.005976,0.006997,0.249902,0,0);-ms-transform:matrix(0.213436,-0.005976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213436,-0.005976,0.006997,0.249902,0,0);}
.mb6_c00442{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m67_c00442{transform:matrix(0.214556,-0.006008,0.006997,0.249902,0,0);-ms-transform:matrix(0.214556,-0.006008,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214556,-0.006008,0.006997,0.249902,0,0);}
.m5b_c00442{transform:matrix(0.214936,-0.006018,0.006997,0.249902,0,0);-ms-transform:matrix(0.214936,-0.006018,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214936,-0.006018,0.006997,0.249902,0,0);}
.m24_c00442{transform:matrix(0.215213,-0.007540,0.008753,0.249847,0,0);-ms-transform:matrix(0.215213,-0.007540,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215213,-0.007540,0.008753,0.249847,0,0);}
.m25_c00442{transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);-ms-transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);-webkit-transform:matrix(0.215433,-0.007548,0.008753,0.249847,0,0);}
.m6d_c00442{transform:matrix(0.216045,-0.006049,0.006997,0.249902,0,0);-ms-transform:matrix(0.216045,-0.006049,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216045,-0.006049,0.006997,0.249902,0,0);}
.m7f_c00442{transform:matrix(0.216425,-0.006060,0.006997,0.249902,0,0);-ms-transform:matrix(0.216425,-0.006060,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216425,-0.006060,0.006997,0.249902,0,0);}
.m14_c00442{transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.m58_c00442{transform:matrix(0.217350,-0.006086,0.006997,0.249902,0,0);-ms-transform:matrix(0.217350,-0.006086,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217350,-0.006086,0.006997,0.249902,0,0);}
.ma2_c00442{transform:matrix(0.217625,-0.006093,0.006997,0.249902,0,0);-ms-transform:matrix(0.217625,-0.006093,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217625,-0.006093,0.006997,0.249902,0,0);}
.me4_c00442{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.mf0_c00442{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.218866,-0.007668,0.008753,0.249847,0,0);-ms-transform:matrix(0.218866,-0.007668,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218866,-0.007668,0.008753,0.249847,0,0);}
.m3a_c00442{transform:matrix(0.218911,-0.007670,0.008753,0.249847,0,0);-ms-transform:matrix(0.218911,-0.007670,0.008753,0.249847,0,0);-webkit-transform:matrix(0.218911,-0.007670,0.008753,0.249847,0,0);}
.m68_c00442{transform:matrix(0.219209,-0.006138,0.006997,0.249902,0,0);-ms-transform:matrix(0.219209,-0.006138,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219209,-0.006138,0.006997,0.249902,0,0);}
.m63_c00442{transform:matrix(0.219649,-0.006150,0.006997,0.249902,0,0);-ms-transform:matrix(0.219649,-0.006150,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219649,-0.006150,0.006997,0.249902,0,0);}
.m72_c00442{transform:matrix(0.220838,-0.006183,0.006997,0.249902,0,0);-ms-transform:matrix(0.220838,-0.006183,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220838,-0.006183,0.006997,0.249902,0,0);}
.m44_c00442{transform:matrix(0.221098,-0.006191,0.006997,0.249902,0,0);-ms-transform:matrix(0.221098,-0.006191,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221098,-0.006191,0.006997,0.249902,0,0);}
.m5e_c00442{transform:matrix(0.221203,-0.006194,0.006997,0.249902,0,0);-ms-transform:matrix(0.221203,-0.006194,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221203,-0.006194,0.006997,0.249902,0,0);}
.m18_c00442{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(0.221318,-0.006197,0.006997,0.249902,0,0);-ms-transform:matrix(0.221318,-0.006197,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221318,-0.006197,0.006997,0.249902,0,0);}
.m76_c00442{transform:matrix(0.221338,-0.006197,0.006997,0.249902,0,0);-ms-transform:matrix(0.221338,-0.006197,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221338,-0.006197,0.006997,0.249902,0,0);}
.me_c00442{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.mf1_c00442{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.223868,-0.007843,0.008753,0.249847,0,0);-ms-transform:matrix(0.223868,-0.007843,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223868,-0.007843,0.008753,0.249847,0,0);}
.mb2_c00442{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m57_c00442{transform:matrix(0.224482,-0.006285,0.006997,0.249902,0,0);-ms-transform:matrix(0.224482,-0.006285,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224482,-0.006285,0.006997,0.249902,0,0);}
.me3_c00442{transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);}
.m29_c00442{transform:matrix(0.226531,-0.007937,0.008753,0.249847,0,0);-ms-transform:matrix(0.226531,-0.007937,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226531,-0.007937,0.008753,0.249847,0,0);}
.m32_c00442{transform:matrix(0.227660,-0.007976,0.008753,0.249847,0,0);-ms-transform:matrix(0.227660,-0.007976,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227660,-0.007976,0.008753,0.249847,0,0);}
.mb1_c00442{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m47_c00442{transform:matrix(0.229510,-0.006426,0.006997,0.249902,0,0);-ms-transform:matrix(0.229510,-0.006426,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229510,-0.006426,0.006997,0.249902,0,0);}
.mac_c00442{transform:matrix(0.229879,-0.004598,0.004999,0.249950,0,0);-ms-transform:matrix(0.229879,-0.004598,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229879,-0.004598,0.004999,0.249950,0,0);}
.m79_c00442{transform:matrix(0.230145,-0.006444,0.006997,0.249902,0,0);-ms-transform:matrix(0.230145,-0.006444,0.006997,0.249902,0,0);-webkit-transform:matrix(0.230145,-0.006444,0.006997,0.249902,0,0);}
.m6a_c00442{transform:matrix(0.230979,-0.006467,0.006997,0.249902,0,0);-ms-transform:matrix(0.230979,-0.006467,0.006997,0.249902,0,0);-webkit-transform:matrix(0.230979,-0.006467,0.006997,0.249902,0,0);}
.mc3_c00442{transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.235700,-0.008258,0.008753,0.249847,0,0);-ms-transform:matrix(0.235700,-0.008258,0.008753,0.249847,0,0);-webkit-transform:matrix(0.235700,-0.008258,0.008753,0.249847,0,0);}
.m75_c00442{transform:matrix(0.236047,-0.006609,0.006997,0.249902,0,0);-ms-transform:matrix(0.236047,-0.006609,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236047,-0.006609,0.006997,0.249902,0,0);}
.m9a_c00442{transform:matrix(0.238447,-0.006677,0.006997,0.249902,0,0);-ms-transform:matrix(0.238447,-0.006677,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238447,-0.006677,0.006997,0.249902,0,0);}
.m45_c00442{transform:matrix(0.238851,-0.006688,0.006997,0.249902,0,0);-ms-transform:matrix(0.238851,-0.006688,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238851,-0.006688,0.006997,0.249902,0,0);}
.mdf_c00442{transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);}
.m55_c00442{transform:matrix(0.239526,-0.006707,0.006997,0.249902,0,0);-ms-transform:matrix(0.239526,-0.006707,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239526,-0.006707,0.006997,0.249902,0,0);}
.mb9_c00442{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.meb_c00442{transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);}
.m65_c00442{transform:matrix(0.242425,-0.006788,0.006997,0.249902,0,0);-ms-transform:matrix(0.242425,-0.006788,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242425,-0.006788,0.006997,0.249902,0,0);}
.mec_c00442{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.247238,-0.008662,0.008753,0.249847,0,0);-ms-transform:matrix(0.247238,-0.008662,0.008753,0.249847,0,0);-webkit-transform:matrix(0.247238,-0.008662,0.008753,0.249847,0,0);}
.m2f_c00442{transform:matrix(0.248567,-0.008709,0.008753,0.249847,0,0);-ms-transform:matrix(0.248567,-0.008709,0.008753,0.249847,0,0);-webkit-transform:matrix(0.248567,-0.008709,0.008753,0.249847,0,0);}
.m4a_c00442{transform:matrix(0.252161,-0.007061,0.006997,0.249902,0,0);-ms-transform:matrix(0.252161,-0.007061,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252161,-0.007061,0.006997,0.249902,0,0);}
.mb7_c00442{transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);}
.mdd_c00442{transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);}
.mb8_c00442{transform:matrix(0.344995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344995,0.000000,0.000000,0.250000,0,0);}
.mc0_c00442{transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:0.000000px;}
.fc0_c00442{color:transparent;}
.fs6_c00442{font-size:55.628459px;}
.fs12_c00442{font-size:57.750000px;}
.fs9_c00442{font-size:57.772634px;}
.fs7_c00442{font-size:58.777240px;}
.fs18_c00442{font-size:58.800000px;}
.fsb_c00442{font-size:58.823045px;}
.fs2_c00442{font-size:59.850000px;}
.fsd_c00442{font-size:59.873457px;}
.fs5_c00442{font-size:60.876427px;}
.fs16_c00442{font-size:61.950000px;}
.fsc_c00442{font-size:61.974280px;}
.fs17_c00442{font-size:63.000000px;}
.fs11_c00442{font-size:63.012599px;}
.fsa_c00442{font-size:63.024691px;}
.fs8_c00442{font-size:64.025208px;}
.fs14_c00442{font-size:64.050000px;}
.fse_c00442{font-size:64.075103px;}
.fs3_c00442{font-size:65.100000px;}
.fs19_c00442{font-size:66.150000px;}
.fs10_c00442{font-size:66.175926px;}
.fs13_c00442{font-size:67.200000px;}
.fsf_c00442{font-size:68.276749px;}
.fs1_c00442{font-size:69.300000px;}
.fs4_c00442{font-size:71.372363px;}
.fs15_c00442{font-size:73.500000px;}
.fs0_c00442{font-size:89.250000px;}
.y0_c00442{bottom:0.000000px;}
.yeb_c00442{bottom:24.312000px;}
.yec_c00442{bottom:25.396500px;}
.yed_c00442{bottom:27.405000px;}
.yee_c00442{bottom:27.886500px;}
.yef_c00442{bottom:28.809000px;}
.yf0_c00442{bottom:29.442000px;}
.yf1_c00442{bottom:29.898000px;}
.yf2_c00442{bottom:31.170000px;}
.ye3_c00442{bottom:45.366000px;}
.ye4_c00442{bottom:45.633000px;}
.ye5_c00442{bottom:46.288500px;}
.ye6_c00442{bottom:47.163000px;}
.ye7_c00442{bottom:47.734500px;}
.ye8_c00442{bottom:48.094500px;}
.ye9_c00442{bottom:48.370500px;}
.yea_c00442{bottom:49.470000px;}
.yda_c00442{bottom:59.947500px;}
.ydb_c00442{bottom:60.393000px;}
.ydc_c00442{bottom:60.673500px;}
.ydd_c00442{bottom:61.381500px;}
.yde_c00442{bottom:61.729500px;}
.ydf_c00442{bottom:62.496000px;}
.ye0_c00442{bottom:62.803500px;}
.ye1_c00442{bottom:63.354000px;}
.ye2_c00442{bottom:64.033500px;}
.yd3_c00442{bottom:77.227500px;}
.yd4_c00442{bottom:77.643000px;}
.yd5_c00442{bottom:78.027000px;}
.yd6_c00442{bottom:79.236000px;}
.yd7_c00442{bottom:79.744500px;}
.yd8_c00442{bottom:80.248500px;}
.yd9_c00442{bottom:81.717000px;}
.ycb_c00442{bottom:96.124500px;}
.ycc_c00442{bottom:97.090500px;}
.ycd_c00442{bottom:97.506000px;}
.yce_c00442{bottom:97.855500px;}
.ycf_c00442{bottom:98.574000px;}
.yd0_c00442{bottom:99.700500px;}
.yd1_c00442{bottom:100.138500px;}
.yd2_c00442{bottom:100.401000px;}
.yc3_c00442{bottom:110.706000px;}
.yc4_c00442{bottom:111.360000px;}
.yc5_c00442{bottom:111.883500px;}
.yc6_c00442{bottom:112.300500px;}
.yc7_c00442{bottom:113.347500px;}
.yc8_c00442{bottom:114.552000px;}
.yc9_c00442{bottom:115.102500px;}
.yca_c00442{bottom:115.456500px;}
.ybb_c00442{bottom:127.984500px;}
.ybc_c00442{bottom:128.466000px;}
.ybd_c00442{bottom:128.920500px;}
.ybe_c00442{bottom:129.924000px;}
.ybf_c00442{bottom:130.971000px;}
.yc0_c00442{bottom:131.529000px;}
.yc1_c00442{bottom:132.010500px;}
.yc2_c00442{bottom:133.264500px;}
.yb3_c00442{bottom:144.454500px;}
.yb4_c00442{bottom:144.780000px;}
.yb5_c00442{bottom:145.537500px;}
.yb6_c00442{bottom:146.059500px;}
.yb7_c00442{bottom:146.373000px;}
.yb8_c00442{bottom:147.349500px;}
.yb9_c00442{bottom:148.419000px;}
.yba_c00442{bottom:148.602000px;}
.yb2_c00442{bottom:163.288500px;}
.yaa_c00442{bottom:178.204500px;}
.yab_c00442{bottom:178.652400px;}
.yac_c00442{bottom:179.338380px;}
.yad_c00442{bottom:179.835510px;}
.yae_c00442{bottom:181.356390px;}
.yaf_c00442{bottom:181.783020px;}
.yb0_c00442{bottom:182.174220px;}
.yb1_c00442{bottom:183.241800px;}
.ya3_c00442{bottom:194.046702px;}
.ya4_c00442{bottom:194.302404px;}
.ya5_c00442{bottom:194.642922px;}
.ya6_c00442{bottom:195.499530px;}
.ya7_c00442{bottom:196.833210px;}
.ya8_c00442{bottom:197.064708px;}
.ya9_c00442{bottom:199.431006px;}
.y9b_c00442{bottom:210.793932px;}
.y9c_c00442{bottom:211.316082px;}
.y9d_c00442{bottom:211.734930px;}
.y9e_c00442{bottom:212.925186px;}
.y9f_c00442{bottom:213.367740px;}
.ya0_c00442{bottom:213.783846px;}
.ya1_c00442{bottom:215.701554px;}
.ya2_c00442{bottom:216.262788px;}
.y91_c00442{bottom:229.697904px;}
.y92_c00442{bottom:229.988238px;}
.y93_c00442{bottom:230.413638px;}
.y94_c00442{bottom:231.062694px;}
.y95_c00442{bottom:231.284040px;}
.y96_c00442{bottom:232.219134px;}
.y97_c00442{bottom:232.529010px;}
.y98_c00442{bottom:233.532882px;}
.y99_c00442{bottom:233.895996px;}
.y9a_c00442{bottom:234.346518px;}
.y88_c00442{bottom:247.254030px;}
.y89_c00442{bottom:247.756506px;}
.y8a_c00442{bottom:248.150220px;}
.y8b_c00442{bottom:248.656806px;}
.y8c_c00442{bottom:249.504246px;}
.y8d_c00442{bottom:249.708738px;}
.y8e_c00442{bottom:250.143054px;}
.y8f_c00442{bottom:250.548306px;}
.y90_c00442{bottom:250.888164px;}
.y81_c00442{bottom:264.272160px;}
.y82_c00442{bottom:264.727350px;}
.y83_c00442{bottom:265.133826px;}
.y84_c00442{bottom:266.231028px;}
.y85_c00442{bottom:267.266370px;}
.y86_c00442{bottom:267.769056px;}
.y87_c00442{bottom:268.386582px;}
.y78_c00442{bottom:281.022234px;}
.y79_c00442{bottom:281.534598px;}
.y7a_c00442{bottom:281.772204px;}
.y7b_c00442{bottom:282.592854px;}
.y7c_c00442{bottom:283.236720px;}
.y7d_c00442{bottom:284.312118px;}
.y7e_c00442{bottom:285.461814px;}
.y7f_c00442{bottom:285.721572px;}
.y80_c00442{bottom:286.240332px;}
.y70_c00442{bottom:297.771030px;}
.y71_c00442{bottom:298.238616px;}
.y72_c00442{bottom:299.187762px;}
.y73_c00442{bottom:300.444504px;}
.y74_c00442{bottom:300.765810px;}
.y75_c00442{bottom:301.613646px;}
.y76_c00442{bottom:302.157132px;}
.y77_c00442{bottom:302.900748px;}
.y69_c00442{bottom:315.060120px;}
.y6a_c00442{bottom:315.683346px;}
.y6b_c00442{bottom:317.013762px;}
.y6c_c00442{bottom:318.036750px;}
.y6d_c00442{bottom:318.507990px;}
.y6e_c00442{bottom:320.503938px;}
.y6f_c00442{bottom:320.759352px;}
.y61_c00442{bottom:330.730194px;}
.y62_c00442{bottom:331.187160px;}
.y63_c00442{bottom:332.272050px;}
.y64_c00442{bottom:333.397566px;}
.y65_c00442{bottom:333.879366px;}
.y66_c00442{bottom:335.205282px;}
.y67_c00442{bottom:335.630652px;}
.y68_c00442{bottom:337.526886px;}
.y59_c00442{bottom:347.203122px;}
.y5a_c00442{bottom:348.317346px;}
.y5b_c00442{bottom:348.463374px;}
.y5c_c00442{bottom:349.172646px;}
.y5d_c00442{bottom:349.548702px;}
.y5e_c00442{bottom:350.364030px;}
.y5f_c00442{bottom:350.607078px;}
.y60_c00442{bottom:351.690420px;}
.y53_c00442{bottom:362.334648px;}
.y54_c00442{bottom:363.772902px;}
.y55_c00442{bottom:365.382318px;}
.y56_c00442{bottom:367.163244px;}
.y57_c00442{bottom:367.939086px;}
.y58_c00442{bottom:369.695220px;}
.y4b_c00442{bottom:379.354188px;}
.y4c_c00442{bottom:381.102774px;}
.y4d_c00442{bottom:381.726684px;}
.y4e_c00442{bottom:382.875972px;}
.y4f_c00442{bottom:384.770466px;}
.y50_c00442{bottom:385.341456px;}
.y51_c00442{bottom:385.833738px;}
.y52_c00442{bottom:387.255312px;}
.y43_c00442{bottom:396.366000px;}
.y44_c00442{bottom:396.913260px;}
.y45_c00442{bottom:399.170466px;}
.y46_c00442{bottom:399.545190px;}
.y47_c00442{bottom:400.214586px;}
.y48_c00442{bottom:401.209020px;}
.y49_c00442{bottom:403.318722px;}
.y4a_c00442{bottom:403.757244px;}
.y3b_c00442{bottom:412.060458px;}
.y3c_c00442{bottom:412.477993px;}
.y3d_c00442{bottom:412.830843px;}
.y3e_c00442{bottom:413.430915px;}
.y3f_c00442{bottom:415.035579px;}
.y40_c00442{bottom:417.097560px;}
.y41_c00442{bottom:417.643627px;}
.y42_c00442{bottom:418.947952px;}
.y34_c00442{bottom:429.594715px;}
.y35_c00442{bottom:430.359192px;}
.y36_c00442{bottom:430.867942px;}
.y37_c00442{bottom:432.197499px;}
.y38_c00442{bottom:434.115747px;}
.y39_c00442{bottom:434.465742px;}
.y3a_c00442{bottom:435.662961px;}
.y2c_c00442{bottom:445.251288px;}
.y2d_c00442{bottom:446.172081px;}
.y2e_c00442{bottom:446.691862px;}
.y2f_c00442{bottom:448.633662px;}
.y30_c00442{bottom:449.855410px;}
.y31_c00442{bottom:450.795232px;}
.y32_c00442{bottom:451.397984px;}
.y33_c00442{bottom:453.368472px;}
.y24_c00442{bottom:461.986966px;}
.y25_c00442{bottom:462.957055px;}
.y26_c00442{bottom:464.727867px;}
.y27_c00442{bottom:465.130407px;}
.y28_c00442{bottom:465.766932px;}
.y29_c00442{bottom:467.028460px;}
.y2a_c00442{bottom:468.480064px;}
.y2b_c00442{bottom:469.872195px;}
.y1e_c00442{bottom:479.266500px;}
.y1f_c00442{bottom:480.533010px;}
.y20_c00442{bottom:481.178497px;}
.y21_c00442{bottom:483.872062px;}
.y22_c00442{bottom:486.253305px;}
.y23_c00442{bottom:487.229017px;}
.y1a_c00442{bottom:496.810500px;}
.y1b_c00442{bottom:498.478500px;}
.y1c_c00442{bottom:499.353000px;}
.y1d_c00442{bottom:499.798500px;}
.y11_c00442{bottom:514.086000px;}
.y12_c00442{bottom:514.887000px;}
.y13_c00442{bottom:515.397000px;}
.y14_c00442{bottom:516.619500px;}
.y15_c00442{bottom:517.905000px;}
.y16_c00442{bottom:518.853000px;}
.y17_c00442{bottom:519.346500px;}
.y18_c00442{bottom:520.593000px;}
.y19_c00442{bottom:520.930500px;}
.y9_c00442{bottom:529.222500px;}
.ya_c00442{bottom:529.918500px;}
.yb_c00442{bottom:530.877000px;}
.yc_c00442{bottom:532.533000px;}
.yd_c00442{bottom:533.205000px;}
.ye_c00442{bottom:535.719000px;}
.yf_c00442{bottom:536.239500px;}
.y10_c00442{bottom:538.453500px;}
.y2_c00442{bottom:547.303500px;}
.y3_c00442{bottom:549.376500px;}
.y4_c00442{bottom:551.770500px;}
.y5_c00442{bottom:552.315000px;}
.y6_c00442{bottom:554.458500px;}
.y7_c00442{bottom:555.007500px;}
.y8_c00442{bottom:556.074000px;}
.y1_c00442{bottom:563.200500px;}
.h7_c00442{height:55.628459px;}
.h13_c00442{height:57.750000px;}
.ha_c00442{height:57.772634px;}
.h8_c00442{height:58.777240px;}
.h19_c00442{height:58.800000px;}
.hc_c00442{height:58.823045px;}
.h3_c00442{height:59.850000px;}
.he_c00442{height:59.873457px;}
.h6_c00442{height:60.876427px;}
.h17_c00442{height:61.950000px;}
.hd_c00442{height:61.974280px;}
.h18_c00442{height:63.000000px;}
.h12_c00442{height:63.012599px;}
.hb_c00442{height:63.024691px;}
.h9_c00442{height:64.025208px;}
.h15_c00442{height:64.050000px;}
.hf_c00442{height:64.075103px;}
.h4_c00442{height:65.100000px;}
.h1a_c00442{height:66.150000px;}
.h11_c00442{height:66.175926px;}
.h14_c00442{height:67.200000px;}
.h10_c00442{height:68.276749px;}
.h2_c00442{height:69.300000px;}
.h5_c00442{height:71.372363px;}
.h16_c00442{height:73.500000px;}
.h1_c00442{height:89.250000px;}
.h0_c00442{height:608.250000px;}
.w0_c00442{width:359.100000px;}
.w1_c00442{width:359.250000px;}
.x0_c00442{left:0.000000px;}
.x60_c00442{left:18.343194px;}
.x3_c00442{left:19.584000px;}
.x18_c00442{left:20.907000px;}
.x20_c00442{left:21.943414px;}
.x32_c00442{left:23.407527px;}
.x59_c00442{left:24.443076px;}
.x64_c00442{left:25.845126px;}
.x38_c00442{left:26.964000px;}
.x73_c00442{left:28.564500px;}
.x78_c00442{left:30.177000px;}
.x69_c00442{left:31.590000px;}
.x33_c00442{left:37.766150px;}
.xa_c00442{left:38.833500px;}
.x5a_c00442{left:41.513826px;}
.x61_c00442{left:43.210566px;}
.x1c_c00442{left:45.543000px;}
.x4c_c00442{left:47.497500px;}
.x2d_c00442{left:48.776313px;}
.x27_c00442{left:50.084229px;}
.x11_c00442{left:52.266000px;}
.x79_c00442{left:56.386500px;}
.x54_c00442{left:57.610314px;}
.x4f_c00442{left:60.739572px;}
.x62_c00442{left:63.155472px;}
.xb_c00442{left:64.747500px;}
.x28_c00442{left:65.819581px;}
.x2e_c00442{left:68.307911px;}
.x34_c00442{left:70.575192px;}
.x12_c00442{left:72.658500px;}
.x40_c00442{left:77.537010px;}
.x47_c00442{left:79.836144px;}
.x19_c00442{left:82.663500px;}
.x4_c00442{left:84.369000px;}
.x55_c00442{left:85.771860px;}
.x1_c00442{left:87.210000px;}
.x70_c00442{left:89.775000px;}
.x6e_c00442{left:90.916500px;}
.x42_c00442{left:91.978740px;}
.x6a_c00442{left:95.850000px;}
.x4d_c00442{left:97.479600px;}
.x1d_c00442{left:100.116872px;}
.x50_c00442{left:101.736228px;}
.x5b_c00442{left:104.710272px;}
.x21_c00442{left:107.542269px;}
.xc_c00442{left:109.516500px;}
.x71_c00442{left:111.745500px;}
.x1a_c00442{left:115.077000px;}
.x5c_c00442{left:117.708762px;}
.x22_c00442{left:120.102510px;}
.x13_c00442{left:121.572000px;}
.x29_c00442{left:124.584357px;}
.x35_c00442{left:125.840985px;}
.xd_c00442{left:127.681500px;}
.x76_c00442{left:129.738000px;}
.x1b_c00442{left:131.550000px;}
.x51_c00442{left:133.952952px;}
.x74_c00442{left:136.737000px;}
.x23_c00442{left:139.983711px;}
.x43_c00442{left:145.471716px;}
.x6b_c00442{left:147.420000px;}
.x2_c00442{left:149.040000px;}
.x77_c00442{left:156.511500px;}
.x7c_c00442{left:157.582500px;}
.x5_c00442{left:159.160500px;}
.x6f_c00442{left:160.245000px;}
.x2a_c00442{left:161.554924px;}
.x39_c00442{left:164.413500px;}
.x72_c00442{left:166.821000px;}
.x44_c00442{left:168.981612px;}
.x6c_c00442{left:171.720000px;}
.x14_c00442{left:173.016000px;}
.x6_c00442{left:176.161500px;}
.x24_c00442{left:179.374432px;}
.x4e_c00442{left:180.591558px;}
.x56_c00442{left:182.489244px;}
.x65_c00442{left:184.724652px;}
.x4a_c00442{left:186.910116px;}
.x48_c00442{left:188.508210px;}
.x2b_c00442{left:190.007440px;}
.x2f_c00442{left:193.041861px;}
.xe_c00442{left:195.628500px;}
.x36_c00442{left:196.857822px;}
.x7a_c00442{left:198.127500px;}
.x3a_c00442{left:199.929000px;}
.x49_c00442{left:204.236130px;}
.x30_c00442{left:206.457636px;}
.x2c_c00442{left:208.239452px;}
.xf_c00442{left:209.709000px;}
.x15_c00442{left:210.913500px;}
.x7b_c00442{left:212.110500px;}
.x37_c00442{left:215.655947px;}
.x7d_c00442{left:218.638500px;}
.x45_c00442{left:219.974748px;}
.x25_c00442{left:224.704339px;}
.x57_c00442{left:228.143136px;}
.x67_c00442{left:229.399500px;}
.x16_c00442{left:230.665500px;}
.x3d_c00442{left:236.113290px;}
.x41_c00442{left:237.748956px;}
.x7_c00442{left:243.148500px;}
.x1e_c00442{left:244.966377px;}
.x7e_c00442{left:246.177000px;}
.x68_c00442{left:248.959500px;}
.x5d_c00442{left:249.975960px;}
.x31_c00442{left:252.449103px;}
.x3e_c00442{left:253.694790px;}
.x58_c00442{left:257.038434px;}
.x52_c00442{left:258.189756px;}
.x8_c00442{left:260.325000px;}
.x7f_c00442{left:265.989000px;}
.x26_c00442{left:268.165407px;}
.x10_c00442{left:269.527500px;}
.x5e_c00442{left:271.308012px;}
.x1f_c00442{left:272.815999px;}
.x3b_c00442{left:275.275500px;}
.x63_c00442{left:278.746182px;}
.x17_c00442{left:280.497000px;}
.x4b_c00442{left:281.944722px;}
.x53_c00442{left:284.115552px;}
.x3c_c00442{left:290.937000px;}
.x9_c00442{left:293.638500px;}
.x75_c00442{left:295.765500px;}
.x5f_c00442{left:297.852702px;}
.x46_c00442{left:302.945136px;}
.x3f_c00442{left:304.465290px;}
.x66_c00442{left:309.284526px;}
.x6d_c00442{left:314.280000px;}
.x80_c00442{left:321.279000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs6_c00442{font-size:49.447519pt;}
.fs12_c00442{font-size:51.333333pt;}
.fs9_c00442{font-size:51.353452pt;}
.fs7_c00442{font-size:52.246436pt;}
.fs18_c00442{font-size:52.266667pt;}
.fsb_c00442{font-size:52.287151pt;}
.fs2_c00442{font-size:53.200000pt;}
.fsd_c00442{font-size:53.220850pt;}
.fs5_c00442{font-size:54.112380pt;}
.fs16_c00442{font-size:55.066667pt;}
.fsc_c00442{font-size:55.088249pt;}
.fs17_c00442{font-size:56.000000pt;}
.fs11_c00442{font-size:56.011199pt;}
.fsa_c00442{font-size:56.021948pt;}
.fs8_c00442{font-size:56.911296pt;}
.fs14_c00442{font-size:56.933333pt;}
.fse_c00442{font-size:56.955647pt;}
.fs3_c00442{font-size:57.866667pt;}
.fs19_c00442{font-size:58.800000pt;}
.fs10_c00442{font-size:58.823045pt;}
.fs13_c00442{font-size:59.733333pt;}
.fsf_c00442{font-size:60.690443pt;}
.fs1_c00442{font-size:61.600000pt;}
.fs4_c00442{font-size:63.442100pt;}
.fs15_c00442{font-size:65.333333pt;}
.fs0_c00442{font-size:79.333333pt;}
.y0_c00442{bottom:0.000000pt;}
.yeb_c00442{bottom:21.610667pt;}
.yec_c00442{bottom:22.574667pt;}
.yed_c00442{bottom:24.360000pt;}
.yee_c00442{bottom:24.788000pt;}
.yef_c00442{bottom:25.608000pt;}
.yf0_c00442{bottom:26.170667pt;}
.yf1_c00442{bottom:26.576000pt;}
.yf2_c00442{bottom:27.706667pt;}
.ye3_c00442{bottom:40.325333pt;}
.ye4_c00442{bottom:40.562667pt;}
.ye5_c00442{bottom:41.145333pt;}
.ye6_c00442{bottom:41.922667pt;}
.ye7_c00442{bottom:42.430667pt;}
.ye8_c00442{bottom:42.750667pt;}
.ye9_c00442{bottom:42.996000pt;}
.yea_c00442{bottom:43.973333pt;}
.yda_c00442{bottom:53.286667pt;}
.ydb_c00442{bottom:53.682667pt;}
.ydc_c00442{bottom:53.932000pt;}
.ydd_c00442{bottom:54.561333pt;}
.yde_c00442{bottom:54.870667pt;}
.ydf_c00442{bottom:55.552000pt;}
.ye0_c00442{bottom:55.825333pt;}
.ye1_c00442{bottom:56.314667pt;}
.ye2_c00442{bottom:56.918667pt;}
.yd3_c00442{bottom:68.646667pt;}
.yd4_c00442{bottom:69.016000pt;}
.yd5_c00442{bottom:69.357333pt;}
.yd6_c00442{bottom:70.432000pt;}
.yd7_c00442{bottom:70.884000pt;}
.yd8_c00442{bottom:71.332000pt;}
.yd9_c00442{bottom:72.637333pt;}
.ycb_c00442{bottom:85.444000pt;}
.ycc_c00442{bottom:86.302667pt;}
.ycd_c00442{bottom:86.672000pt;}
.yce_c00442{bottom:86.982667pt;}
.ycf_c00442{bottom:87.621333pt;}
.yd0_c00442{bottom:88.622667pt;}
.yd1_c00442{bottom:89.012000pt;}
.yd2_c00442{bottom:89.245333pt;}
.yc3_c00442{bottom:98.405333pt;}
.yc4_c00442{bottom:98.986667pt;}
.yc5_c00442{bottom:99.452000pt;}
.yc6_c00442{bottom:99.822667pt;}
.yc7_c00442{bottom:100.753333pt;}
.yc8_c00442{bottom:101.824000pt;}
.yc9_c00442{bottom:102.313333pt;}
.yca_c00442{bottom:102.628000pt;}
.ybb_c00442{bottom:113.764000pt;}
.ybc_c00442{bottom:114.192000pt;}
.ybd_c00442{bottom:114.596000pt;}
.ybe_c00442{bottom:115.488000pt;}
.ybf_c00442{bottom:116.418667pt;}
.yc0_c00442{bottom:116.914667pt;}
.yc1_c00442{bottom:117.342667pt;}
.yc2_c00442{bottom:118.457333pt;}
.yb3_c00442{bottom:128.404000pt;}
.yb4_c00442{bottom:128.693333pt;}
.yb5_c00442{bottom:129.366667pt;}
.yb6_c00442{bottom:129.830667pt;}
.yb7_c00442{bottom:130.109333pt;}
.yb8_c00442{bottom:130.977333pt;}
.yb9_c00442{bottom:131.928000pt;}
.yba_c00442{bottom:132.090667pt;}
.yb2_c00442{bottom:145.145333pt;}
.yaa_c00442{bottom:158.404000pt;}
.yab_c00442{bottom:158.802133pt;}
.yac_c00442{bottom:159.411893pt;}
.yad_c00442{bottom:159.853787pt;}
.yae_c00442{bottom:161.205680pt;}
.yaf_c00442{bottom:161.584907pt;}
.yb0_c00442{bottom:161.932640pt;}
.yb1_c00442{bottom:162.881600pt;}
.ya3_c00442{bottom:172.485957pt;}
.ya4_c00442{bottom:172.713248pt;}
.ya5_c00442{bottom:173.015931pt;}
.ya6_c00442{bottom:173.777360pt;}
.ya7_c00442{bottom:174.962853pt;}
.ya8_c00442{bottom:175.168629pt;}
.ya9_c00442{bottom:177.272005pt;}
.y9b_c00442{bottom:187.372384pt;}
.y9c_c00442{bottom:187.836517pt;}
.y9d_c00442{bottom:188.208827pt;}
.y9e_c00442{bottom:189.266832pt;}
.y9f_c00442{bottom:189.660213pt;}
.ya0_c00442{bottom:190.030085pt;}
.ya1_c00442{bottom:191.734715pt;}
.ya2_c00442{bottom:192.233589pt;}
.y91_c00442{bottom:204.175915pt;}
.y92_c00442{bottom:204.433989pt;}
.y93_c00442{bottom:204.812123pt;}
.y94_c00442{bottom:205.389061pt;}
.y95_c00442{bottom:205.585813pt;}
.y96_c00442{bottom:206.417008pt;}
.y97_c00442{bottom:206.692453pt;}
.y98_c00442{bottom:207.584784pt;}
.y99_c00442{bottom:207.907552pt;}
.y9a_c00442{bottom:208.308016pt;}
.y88_c00442{bottom:219.781360pt;}
.y89_c00442{bottom:220.228005pt;}
.y8a_c00442{bottom:220.577973pt;}
.y8b_c00442{bottom:221.028272pt;}
.y8c_c00442{bottom:221.781552pt;}
.y8d_c00442{bottom:221.963323pt;}
.y8e_c00442{bottom:222.349381pt;}
.y8f_c00442{bottom:222.709605pt;}
.y90_c00442{bottom:223.011701pt;}
.y81_c00442{bottom:234.908587pt;}
.y82_c00442{bottom:235.313200pt;}
.y83_c00442{bottom:235.674512pt;}
.y84_c00442{bottom:236.649803pt;}
.y85_c00442{bottom:237.570107pt;}
.y86_c00442{bottom:238.016939pt;}
.y87_c00442{bottom:238.565851pt;}
.y78_c00442{bottom:249.797541pt;}
.y79_c00442{bottom:250.252976pt;}
.y7a_c00442{bottom:250.464181pt;}
.y7b_c00442{bottom:251.193648pt;}
.y7c_c00442{bottom:251.765973pt;}
.y7d_c00442{bottom:252.721883pt;}
.y7e_c00442{bottom:253.743835pt;}
.y7f_c00442{bottom:253.974731pt;}
.y80_c00442{bottom:254.435851pt;}
.y70_c00442{bottom:264.685360pt;}
.y71_c00442{bottom:265.100992pt;}
.y72_c00442{bottom:265.944677pt;}
.y73_c00442{bottom:267.061781pt;}
.y74_c00442{bottom:267.347387pt;}
.y75_c00442{bottom:268.101019pt;}
.y76_c00442{bottom:268.584117pt;}
.y77_c00442{bottom:269.245109pt;}
.y69_c00442{bottom:280.053440pt;}
.y6a_c00442{bottom:280.607419pt;}
.y6b_c00442{bottom:281.790011pt;}
.y6c_c00442{bottom:282.699333pt;}
.y6d_c00442{bottom:283.118213pt;}
.y6e_c00442{bottom:284.892389pt;}
.y6f_c00442{bottom:285.119424pt;}
.y61_c00442{bottom:293.982395pt;}
.y62_c00442{bottom:294.388587pt;}
.y63_c00442{bottom:295.352933pt;}
.y64_c00442{bottom:296.353392pt;}
.y65_c00442{bottom:296.781659pt;}
.y66_c00442{bottom:297.960251pt;}
.y67_c00442{bottom:298.338357pt;}
.y68_c00442{bottom:300.023899pt;}
.y59_c00442{bottom:308.624997pt;}
.y5a_c00442{bottom:309.615419pt;}
.y5b_c00442{bottom:309.745221pt;}
.y5c_c00442{bottom:310.375685pt;}
.y5d_c00442{bottom:310.709957pt;}
.y5e_c00442{bottom:311.434693pt;}
.y5f_c00442{bottom:311.650736pt;}
.y60_c00442{bottom:312.613707pt;}
.y53_c00442{bottom:322.075243pt;}
.y54_c00442{bottom:323.353691pt;}
.y55_c00442{bottom:324.784283pt;}
.y56_c00442{bottom:326.367328pt;}
.y57_c00442{bottom:327.056965pt;}
.y58_c00442{bottom:328.617973pt;}
.y4b_c00442{bottom:337.203723pt;}
.y4c_c00442{bottom:338.758021pt;}
.y4d_c00442{bottom:339.312608pt;}
.y4e_c00442{bottom:340.334197pt;}
.y4f_c00442{bottom:342.018192pt;}
.y50_c00442{bottom:342.525739pt;}
.y51_c00442{bottom:342.963323pt;}
.y52_c00442{bottom:344.226944pt;}
.y43_c00442{bottom:352.325333pt;}
.y44_c00442{bottom:352.811787pt;}
.y45_c00442{bottom:354.818192pt;}
.y46_c00442{bottom:355.151280pt;}
.y47_c00442{bottom:355.746299pt;}
.y48_c00442{bottom:356.630240pt;}
.y49_c00442{bottom:358.505531pt;}
.y4a_c00442{bottom:358.895328pt;}
.y3b_c00442{bottom:366.275963pt;}
.y3c_c00442{bottom:366.647105pt;}
.y3d_c00442{bottom:366.960749pt;}
.y3e_c00442{bottom:367.494147pt;}
.y3f_c00442{bottom:368.920515pt;}
.y40_c00442{bottom:370.753387pt;}
.y41_c00442{bottom:371.238780pt;}
.y42_c00442{bottom:372.398180pt;}
.y34_c00442{bottom:381.861969pt;}
.y35_c00442{bottom:382.541504pt;}
.y36_c00442{bottom:382.993727pt;}
.y37_c00442{bottom:384.175555pt;}
.y38_c00442{bottom:385.880664pt;}
.y39_c00442{bottom:386.191771pt;}
.y3a_c00442{bottom:387.255965pt;}
.y2c_c00442{bottom:395.778923pt;}
.y2d_c00442{bottom:396.597405pt;}
.y2e_c00442{bottom:397.059433pt;}
.y2f_c00442{bottom:398.785477pt;}
.y30_c00442{bottom:399.871476pt;}
.y31_c00442{bottom:400.706873pt;}
.y32_c00442{bottom:401.242652pt;}
.y33_c00442{bottom:402.994197pt;}
.y24_c00442{bottom:410.655081pt;}
.y25_c00442{bottom:411.517383pt;}
.y26_c00442{bottom:413.091437pt;}
.y27_c00442{bottom:413.449251pt;}
.y28_c00442{bottom:414.015051pt;}
.y29_c00442{bottom:415.136409pt;}
.y2a_c00442{bottom:416.426724pt;}
.y2b_c00442{bottom:417.664173pt;}
.y1e_c00442{bottom:426.014667pt;}
.y1f_c00442{bottom:427.140453pt;}
.y20_c00442{bottom:427.714220pt;}
.y21_c00442{bottom:430.108500pt;}
.y22_c00442{bottom:432.225160pt;}
.y23_c00442{bottom:433.092460pt;}
.y1a_c00442{bottom:441.609333pt;}
.y1b_c00442{bottom:443.092000pt;}
.y1c_c00442{bottom:443.869333pt;}
.y1d_c00442{bottom:444.265333pt;}
.y11_c00442{bottom:456.965333pt;}
.y12_c00442{bottom:457.677333pt;}
.y13_c00442{bottom:458.130667pt;}
.y14_c00442{bottom:459.217333pt;}
.y15_c00442{bottom:460.360000pt;}
.y16_c00442{bottom:461.202667pt;}
.y17_c00442{bottom:461.641333pt;}
.y18_c00442{bottom:462.749333pt;}
.y19_c00442{bottom:463.049333pt;}
.y9_c00442{bottom:470.420000pt;}
.ya_c00442{bottom:471.038667pt;}
.yb_c00442{bottom:471.890667pt;}
.yc_c00442{bottom:473.362667pt;}
.yd_c00442{bottom:473.960000pt;}
.ye_c00442{bottom:476.194667pt;}
.yf_c00442{bottom:476.657333pt;}
.y10_c00442{bottom:478.625333pt;}
.y2_c00442{bottom:486.492000pt;}
.y3_c00442{bottom:488.334667pt;}
.y4_c00442{bottom:490.462667pt;}
.y5_c00442{bottom:490.946667pt;}
.y6_c00442{bottom:492.852000pt;}
.y7_c00442{bottom:493.340000pt;}
.y8_c00442{bottom:494.288000pt;}
.y1_c00442{bottom:500.622667pt;}
.h7_c00442{height:49.447519pt;}
.h13_c00442{height:51.333333pt;}
.ha_c00442{height:51.353452pt;}
.h8_c00442{height:52.246436pt;}
.h19_c00442{height:52.266667pt;}
.hc_c00442{height:52.287151pt;}
.h3_c00442{height:53.200000pt;}
.he_c00442{height:53.220850pt;}
.h6_c00442{height:54.112380pt;}
.h17_c00442{height:55.066667pt;}
.hd_c00442{height:55.088249pt;}
.h18_c00442{height:56.000000pt;}
.h12_c00442{height:56.011199pt;}
.hb_c00442{height:56.021948pt;}
.h9_c00442{height:56.911296pt;}
.h15_c00442{height:56.933333pt;}
.hf_c00442{height:56.955647pt;}
.h4_c00442{height:57.866667pt;}
.h1a_c00442{height:58.800000pt;}
.h11_c00442{height:58.823045pt;}
.h14_c00442{height:59.733333pt;}
.h10_c00442{height:60.690443pt;}
.h2_c00442{height:61.600000pt;}
.h5_c00442{height:63.442100pt;}
.h16_c00442{height:65.333333pt;}
.h1_c00442{height:79.333333pt;}
.h0_c00442{height:540.666667pt;}
.w0_c00442{width:319.200000pt;}
.w1_c00442{width:319.333333pt;}
.x0_c00442{left:0.000000pt;}
.x60_c00442{left:16.305061pt;}
.x3_c00442{left:17.408000pt;}
.x18_c00442{left:18.584000pt;}
.x20_c00442{left:19.505257pt;}
.x32_c00442{left:20.806691pt;}
.x59_c00442{left:21.727179pt;}
.x64_c00442{left:22.973445pt;}
.x38_c00442{left:23.968000pt;}
.x73_c00442{left:25.390667pt;}
.x78_c00442{left:26.824000pt;}
.x69_c00442{left:28.080000pt;}
.x33_c00442{left:33.569911pt;}
.xa_c00442{left:34.518667pt;}
.x5a_c00442{left:36.901179pt;}
.x61_c00442{left:38.409392pt;}
.x1c_c00442{left:40.482667pt;}
.x4c_c00442{left:42.220000pt;}
.x2d_c00442{left:43.356723pt;}
.x27_c00442{left:44.519315pt;}
.x11_c00442{left:46.458667pt;}
.x79_c00442{left:50.121333pt;}
.x54_c00442{left:51.209168pt;}
.x4f_c00442{left:53.990731pt;}
.x62_c00442{left:56.138197pt;}
.xb_c00442{left:57.553333pt;}
.x28_c00442{left:58.506295pt;}
.x2e_c00442{left:60.718143pt;}
.x34_c00442{left:62.733504pt;}
.x12_c00442{left:64.585333pt;}
.x40_c00442{left:68.921787pt;}
.x47_c00442{left:70.965461pt;}
.x19_c00442{left:73.478667pt;}
.x4_c00442{left:74.994667pt;}
.x55_c00442{left:76.241653pt;}
.x1_c00442{left:77.520000pt;}
.x70_c00442{left:79.800000pt;}
.x6e_c00442{left:80.814667pt;}
.x42_c00442{left:81.758880pt;}
.x6a_c00442{left:85.200000pt;}
.x4d_c00442{left:86.648533pt;}
.x1d_c00442{left:88.992775pt;}
.x50_c00442{left:90.432203pt;}
.x5b_c00442{left:93.075797pt;}
.x21_c00442{left:95.593128pt;}
.xc_c00442{left:97.348000pt;}
.x71_c00442{left:99.329333pt;}
.x1a_c00442{left:102.290667pt;}
.x5c_c00442{left:104.630011pt;}
.x22_c00442{left:106.757787pt;}
.x13_c00442{left:108.064000pt;}
.x29_c00442{left:110.741651pt;}
.x35_c00442{left:111.858653pt;}
.xd_c00442{left:113.494667pt;}
.x76_c00442{left:115.322667pt;}
.x1b_c00442{left:116.933333pt;}
.x51_c00442{left:119.069291pt;}
.x74_c00442{left:121.544000pt;}
.x23_c00442{left:124.429965pt;}
.x43_c00442{left:129.308192pt;}
.x6b_c00442{left:131.040000pt;}
.x2_c00442{left:132.480000pt;}
.x77_c00442{left:139.121333pt;}
.x7c_c00442{left:140.073333pt;}
.x5_c00442{left:141.476000pt;}
.x6f_c00442{left:142.440000pt;}
.x2a_c00442{left:143.604377pt;}
.x39_c00442{left:146.145333pt;}
.x72_c00442{left:148.285333pt;}
.x44_c00442{left:150.205877pt;}
.x6c_c00442{left:152.640000pt;}
.x14_c00442{left:153.792000pt;}
.x6_c00442{left:156.588000pt;}
.x24_c00442{left:159.443940pt;}
.x4e_c00442{left:160.525829pt;}
.x56_c00442{left:162.212661pt;}
.x65_c00442{left:164.199691pt;}
.x4a_c00442{left:166.142325pt;}
.x48_c00442{left:167.562853pt;}
.x2b_c00442{left:168.895503pt;}
.x2f_c00442{left:171.592765pt;}
.xe_c00442{left:173.892000pt;}
.x36_c00442{left:174.984731pt;}
.x7a_c00442{left:176.113333pt;}
.x3a_c00442{left:177.714667pt;}
.x49_c00442{left:181.543227pt;}
.x30_c00442{left:183.517899pt;}
.x2c_c00442{left:185.101735pt;}
.xf_c00442{left:186.408000pt;}
.x15_c00442{left:187.478667pt;}
.x7b_c00442{left:188.542667pt;}
.x37_c00442{left:191.694175pt;}
.x7d_c00442{left:194.345333pt;}
.x45_c00442{left:195.533109pt;}
.x25_c00442{left:199.737191pt;}
.x57_c00442{left:202.793899pt;}
.x67_c00442{left:203.910667pt;}
.x16_c00442{left:205.036000pt;}
.x3d_c00442{left:209.878480pt;}
.x41_c00442{left:211.332405pt;}
.x7_c00442{left:216.132000pt;}
.x1e_c00442{left:217.747891pt;}
.x7e_c00442{left:218.824000pt;}
.x68_c00442{left:221.297333pt;}
.x5d_c00442{left:222.200853pt;}
.x31_c00442{left:224.399203pt;}
.x3e_c00442{left:225.506480pt;}
.x58_c00442{left:228.478608pt;}
.x52_c00442{left:229.502005pt;}
.x8_c00442{left:231.400000pt;}
.x7f_c00442{left:236.434667pt;}
.x26_c00442{left:238.369251pt;}
.x10_c00442{left:239.580000pt;}
.x5e_c00442{left:241.162677pt;}
.x1f_c00442{left:242.503111pt;}
.x3b_c00442{left:244.689333pt;}
.x63_c00442{left:247.774384pt;}
.x17_c00442{left:249.330667pt;}
.x4b_c00442{left:250.617531pt;}
.x53_c00442{left:252.547157pt;}
.x3c_c00442{left:258.610667pt;}
.x9_c00442{left:261.012000pt;}
.x75_c00442{left:262.902667pt;}
.x5f_c00442{left:264.757957pt;}
.x46_c00442{left:269.284565pt;}
.x3f_c00442{left:270.635813pt;}
.x66_c00442{left:274.919579pt;}
.x6d_c00442{left:279.360000pt;}
.x80_c00442{left:285.581333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00443 {
    display:none;
  }
  .loading-indicator_c00443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00443 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00443 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00443" -> "#page-container .classname_c00443")
 */
.pf_c00443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00443 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00443 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00443 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00443 {overflow:visible;}
  }
}
.c_c00443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00443 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00443:after { /* webkit #35443 */
  content: '';
}
.t_c00443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00443 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00443 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00443 { /* info for Javascript */
  display:none;
}
.l_c00443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00443:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00443 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00443.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00443{transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015150,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.015199,0.000213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015199,0.000213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015199,0.000213,-0.003500,0.249976,0,0);}
.m67_c00443{transform:matrix(0.016853,0.000236,-0.003500,0.249976,0,0);-ms-transform:matrix(0.016853,0.000236,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.016853,0.000236,-0.003500,0.249976,0,0);}
.me0_c00443{transform:matrix(0.042060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042060,0.000000,0.000000,0.250000,0,0);}
.mae_c00443{transform:matrix(0.066643,0.000933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.066643,0.000933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.066643,0.000933,-0.003500,0.249976,0,0);}
.m28_c00443{transform:matrix(0.112459,0.001574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.112459,0.001574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.112459,0.001574,-0.003500,0.249976,0,0);}
.m9_c00443{transform:matrix(0.119998,0.001680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.119998,0.001680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.119998,0.001680,-0.003500,0.249976,0,0);}
.mf3_c00443{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00443{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.145556,0.002038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145556,0.002038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145556,0.002038,-0.003500,0.249976,0,0);}
.m3b_c00443{transform:matrix(0.146721,0.002054,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146721,0.002054,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146721,0.002054,-0.003500,0.249976,0,0);}
.mc1_c00443{transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.148995,0.002086,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148995,0.002086,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148995,0.002086,-0.003500,0.249976,0,0);}
.m97_c00443{transform:matrix(0.149845,0.002098,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149845,0.002098,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149845,0.002098,-0.003500,0.249976,0,0);}
.m25_c00443{transform:matrix(0.149850,0.002098,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149850,0.002098,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149850,0.002098,-0.003500,0.249976,0,0);}
.mfa_c00443{transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);}
.m94_c00443{transform:matrix(0.153550,0.002150,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153550,0.002150,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153550,0.002150,-0.003500,0.249976,0,0);}
.m52_c00443{transform:matrix(0.153975,0.002156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153975,0.002156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153975,0.002156,-0.003500,0.249976,0,0);}
.m22_c00443{transform:matrix(0.157015,0.002198,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157015,0.002198,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157015,0.002198,-0.003500,0.249976,0,0);}
.m18_c00443{transform:matrix(0.157740,0.002208,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157740,0.002208,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157740,0.002208,-0.003500,0.249976,0,0);}
.m3f_c00443{transform:matrix(0.158394,0.002218,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158394,0.002218,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158394,0.002218,-0.003500,0.249976,0,0);}
.ma_c00443{transform:matrix(0.159464,0.002233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159464,0.002233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159464,0.002233,-0.003500,0.249976,0,0);}
.m4b_c00443{transform:matrix(0.159584,0.002234,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159584,0.002234,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159584,0.002234,-0.003500,0.249976,0,0);}
.m98_c00443{transform:matrix(0.159694,0.002236,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159694,0.002236,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159694,0.002236,-0.003500,0.249976,0,0);}
.m5c_c00443{transform:matrix(0.161949,0.002267,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161949,0.002267,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161949,0.002267,-0.003500,0.249976,0,0);}
.m1c_c00443{transform:matrix(0.163129,0.002284,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163129,0.002284,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163129,0.002284,-0.003500,0.249976,0,0);}
.m1a_c00443{transform:matrix(0.163274,0.002286,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163274,0.002286,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163274,0.002286,-0.003500,0.249976,0,0);}
.mbd_c00443{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.164779,0.002307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164779,0.002307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164779,0.002307,-0.003500,0.249976,0,0);}
.m4d_c00443{transform:matrix(0.166069,0.002325,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166069,0.002325,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166069,0.002325,-0.003500,0.249976,0,0);}
.ma7_c00443{transform:matrix(0.169188,0.002369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169188,0.002369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169188,0.002369,-0.003500,0.249976,0,0);}
.m1_c00443{transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.169383,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169383,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169383,0.002371,-0.003500,0.249976,0,0);}
.m7b_c00443{transform:matrix(0.169708,0.002376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169708,0.002376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169708,0.002376,-0.003500,0.249976,0,0);}
.m74_c00443{transform:matrix(0.169713,0.002376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169713,0.002376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169713,0.002376,-0.003500,0.249976,0,0);}
.m95_c00443{transform:matrix(0.169873,0.002378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169873,0.002378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169873,0.002378,-0.003500,0.249976,0,0);}
.m90_c00443{transform:matrix(0.170343,0.002385,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170343,0.002385,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170343,0.002385,-0.003500,0.249976,0,0);}
.m5f_c00443{transform:matrix(0.171413,0.002400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171413,0.002400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171413,0.002400,-0.003500,0.249976,0,0);}
.m4c_c00443{transform:matrix(0.171728,0.002404,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171728,0.002404,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171728,0.002404,-0.003500,0.249976,0,0);}
.mfb_c00443{transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172085,0.000000,0.000000,0.250000,0,0);}
.ma2_c00443{transform:matrix(0.172463,0.002414,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172463,0.002414,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172463,0.002414,-0.003500,0.249976,0,0);}
.m55_c00443{transform:matrix(0.172478,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172478,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172478,0.002415,-0.003500,0.249976,0,0);}
.m2b_c00443{transform:matrix(0.172553,0.002416,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172553,0.002416,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172553,0.002416,-0.003500,0.249976,0,0);}
.m27_c00443{transform:matrix(0.172693,0.002418,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172693,0.002418,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172693,0.002418,-0.003500,0.249976,0,0);}
.mc7_c00443{transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.173153,0.002424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173153,0.002424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173153,0.002424,-0.003500,0.249976,0,0);}
.m83_c00443{transform:matrix(0.173608,0.002431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173608,0.002431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173608,0.002431,-0.003500,0.249976,0,0);}
.m82_c00443{transform:matrix(0.174478,0.002443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174478,0.002443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174478,0.002443,-0.003500,0.249976,0,0);}
.m32_c00443{transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);}
.m6_c00443{transform:matrix(0.175038,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175038,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175038,0.002451,-0.003500,0.249976,0,0);}
.m40_c00443{transform:matrix(0.175338,0.002455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175338,0.002455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175338,0.002455,-0.003500,0.249976,0,0);}
.m5d_c00443{transform:matrix(0.175663,0.002459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175663,0.002459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175663,0.002459,-0.003500,0.249976,0,0);}
.mc3_c00443{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.175938,0.002463,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175938,0.002463,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175938,0.002463,-0.003500,0.249976,0,0);}
.m8d_c00443{transform:matrix(0.176803,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176803,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176803,0.002475,-0.003500,0.249976,0,0);}
.md7_c00443{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.177513,0.002485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177513,0.002485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177513,0.002485,-0.003500,0.249976,0,0);}
.m8e_c00443{transform:matrix(0.177853,0.002490,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177853,0.002490,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177853,0.002490,-0.003500,0.249976,0,0);}
.m89_c00443{transform:matrix(0.177938,0.002491,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177938,0.002491,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177938,0.002491,-0.003500,0.249976,0,0);}
.mdb_c00443{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);}
.m3a_c00443{transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178632,0.002501,-0.003500,0.249976,0,0);}
.mf1_c00443{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.178822,0.002504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178822,0.002504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178822,0.002504,-0.003500,0.249976,0,0);}
.m81_c00443{transform:matrix(0.179062,0.002507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179062,0.002507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179062,0.002507,-0.003500,0.249976,0,0);}
.mc2_c00443{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(0.179542,0.002514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179542,0.002514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179542,0.002514,-0.003500,0.249976,0,0);}
.m46_c00443{transform:matrix(0.179607,0.002515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179607,0.002515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179607,0.002515,-0.003500,0.249976,0,0);}
.m0_c00443{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);}
.mdc_c00443{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{transform:matrix(0.180222,0.002523,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180222,0.002523,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180222,0.002523,-0.003500,0.249976,0,0);}
.mf_c00443{transform:matrix(0.180472,0.002527,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180472,0.002527,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180472,0.002527,-0.003500,0.249976,0,0);}
.m9a_c00443{transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);}
.md3_c00443{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.181402,0.002540,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181402,0.002540,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181402,0.002540,-0.003500,0.249976,0,0);}
.m2a_c00443{transform:matrix(0.181757,0.002545,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181757,0.002545,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181757,0.002545,-0.003500,0.249976,0,0);}
.md2_c00443{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{transform:matrix(0.182142,0.002550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182142,0.002550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182142,0.002550,-0.003500,0.249976,0,0);}
.m36_c00443{transform:matrix(0.182422,0.002554,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182422,0.002554,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182422,0.002554,-0.003500,0.249976,0,0);}
.m44_c00443{transform:matrix(0.183592,0.002570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183592,0.002570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183592,0.002570,-0.003500,0.249976,0,0);}
.m17_c00443{transform:matrix(0.183832,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183832,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183832,0.002574,-0.003500,0.249976,0,0);}
.m3c_c00443{transform:matrix(0.184442,0.002582,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184442,0.002582,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184442,0.002582,-0.003500,0.249976,0,0);}
.m51_c00443{transform:matrix(0.185157,0.002592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185157,0.002592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185157,0.002592,-0.003500,0.249976,0,0);}
.m5e_c00443{transform:matrix(0.185562,0.002598,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185562,0.002598,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185562,0.002598,-0.003500,0.249976,0,0);}
.m68_c00443{transform:matrix(0.185597,0.002598,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185597,0.002598,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185597,0.002598,-0.003500,0.249976,0,0);}
.m41_c00443{transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186497,0.002611,-0.003500,0.249976,0,0);}
.mce_c00443{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.186992,0.002618,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186992,0.002618,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186992,0.002618,-0.003500,0.249976,0,0);}
.med_c00443{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.187427,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187427,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187427,0.002624,-0.003500,0.249976,0,0);}
.m19_c00443{transform:matrix(0.187582,0.002626,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187582,0.002626,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187582,0.002626,-0.003500,0.249976,0,0);}
.m2d_c00443{transform:matrix(0.187837,0.002630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187837,0.002630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187837,0.002630,-0.003500,0.249976,0,0);}
.m49_c00443{transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188057,0.002633,-0.003500,0.249976,0,0);}
.mc0_c00443{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m88_c00443{transform:matrix(0.188197,0.002635,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188197,0.002635,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188197,0.002635,-0.003500,0.249976,0,0);}
.mc6_c00443{transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188305,0.000000,0.000000,0.250000,0,0);}
.mb8_c00443{transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188385,0.000000,0.000000,0.250000,0,0);}
.mbf_c00443{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{transform:matrix(0.189156,0.002648,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189156,0.002648,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189156,0.002648,-0.003500,0.249976,0,0);}
.m5b_c00443{transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);}
.m12_c00443{transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189421,0.002652,-0.003500,0.249976,0,0);}
.me3_c00443{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mac_c00443{transform:matrix(0.190456,0.002666,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190456,0.002666,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190456,0.002666,-0.003500,0.249976,0,0);}
.mad_c00443{transform:matrix(0.190916,0.002673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190916,0.002673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190916,0.002673,-0.003500,0.249976,0,0);}
.m69_c00443{transform:matrix(0.191066,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191066,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191066,0.002675,-0.003500,0.249976,0,0);}
.m42_c00443{transform:matrix(0.191251,0.002678,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191251,0.002678,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191251,0.002678,-0.003500,0.249976,0,0);}
.m1b_c00443{transform:matrix(0.191351,0.002679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191351,0.002679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191351,0.002679,-0.003500,0.249976,0,0);}
.ma9_c00443{transform:matrix(0.191411,0.002680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191411,0.002680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191411,0.002680,-0.003500,0.249976,0,0);}
.m2f_c00443{transform:matrix(0.191581,0.002682,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191581,0.002682,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191581,0.002682,-0.003500,0.249976,0,0);}
.m15_c00443{transform:matrix(0.191616,0.002683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191616,0.002683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191616,0.002683,-0.003500,0.249976,0,0);}
.m11_c00443{transform:matrix(0.191916,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191916,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191916,0.002687,-0.003500,0.249976,0,0);}
.m39_c00443{transform:matrix(0.192026,0.002688,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192026,0.002688,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192026,0.002688,-0.003500,0.249976,0,0);}
.mb_c00443{transform:matrix(0.192266,0.002692,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192266,0.002692,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192266,0.002692,-0.003500,0.249976,0,0);}
.me6_c00443{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m96_c00443{transform:matrix(0.192661,0.002697,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192661,0.002697,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192661,0.002697,-0.003500,0.249976,0,0);}
.m6b_c00443{transform:matrix(0.192701,0.002698,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192701,0.002698,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192701,0.002698,-0.003500,0.249976,0,0);}
.m58_c00443{transform:matrix(0.192756,0.002699,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192756,0.002699,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192756,0.002699,-0.003500,0.249976,0,0);}
.m2e_c00443{transform:matrix(0.192781,0.002699,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192781,0.002699,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192781,0.002699,-0.003500,0.249976,0,0);}
.mab_c00443{transform:matrix(0.193241,0.002705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193241,0.002705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193241,0.002705,-0.003500,0.249976,0,0);}
.m91_c00443{transform:matrix(0.193711,0.002712,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193711,0.002712,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193711,0.002712,-0.003500,0.249976,0,0);}
.m92_c00443{transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194341,0.002721,-0.003500,0.249976,0,0);}
.m54_c00443{transform:matrix(0.194571,0.002724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194571,0.002724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194571,0.002724,-0.003500,0.249976,0,0);}
.m43_c00443{transform:matrix(0.194686,0.002726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194686,0.002726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194686,0.002726,-0.003500,0.249976,0,0);}
.me5_c00443{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.m57_c00443{transform:matrix(0.195371,0.002735,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195371,0.002735,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195371,0.002735,-0.003500,0.249976,0,0);}
.m3_c00443{transform:matrix(0.195411,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195411,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195411,0.002736,-0.003500,0.249976,0,0);}
.m9f_c00443{transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);}
.mc_c00443{transform:matrix(0.195651,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195651,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195651,0.002739,-0.003500,0.249976,0,0);}
.me7_c00443{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.md4_c00443{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);}
.ma6_c00443{transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);}
.m4e_c00443{transform:matrix(0.196056,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196056,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196056,0.002745,-0.003500,0.249976,0,0);}
.m53_c00443{transform:matrix(0.196201,0.002747,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196201,0.002747,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196201,0.002747,-0.003500,0.249976,0,0);}
.m13_c00443{transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);}
.mf5_c00443{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.me8_c00443{transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197395,0.000000,0.000000,0.250000,0,0);}
.mea_c00443{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.197911,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197911,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197911,0.002771,-0.003500,0.249976,0,0);}
.me9_c00443{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.197966,0.002772,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197966,0.002772,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197966,0.002772,-0.003500,0.249976,0,0);}
.m1d_c00443{transform:matrix(0.198521,0.002779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198521,0.002779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198521,0.002779,-0.003500,0.249976,0,0);}
.m23_c00443{transform:matrix(0.198876,0.002784,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198876,0.002784,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198876,0.002784,-0.003500,0.249976,0,0);}
.m48_c00443{transform:matrix(0.199020,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199020,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199020,0.002786,-0.003500,0.249976,0,0);}
.m85_c00443{transform:matrix(0.199145,0.002788,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199145,0.002788,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199145,0.002788,-0.003500,0.249976,0,0);}
.m4a_c00443{transform:matrix(0.199480,0.002793,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199480,0.002793,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199480,0.002793,-0.003500,0.249976,0,0);}
.mb2_c00443{transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(0.199825,0.002798,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199825,0.002798,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199825,0.002798,-0.003500,0.249976,0,0);}
.m14_c00443{transform:matrix(0.199830,0.002798,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199830,0.002798,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199830,0.002798,-0.003500,0.249976,0,0);}
.m99_c00443{transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);}
.m80_c00443{transform:matrix(0.200640,0.002809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200640,0.002809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200640,0.002809,-0.003500,0.249976,0,0);}
.m100_c00443{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.200975,0.002814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200975,0.002814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200975,0.002814,-0.003500,0.249976,0,0);}
.ma8_c00443{transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201250,0.002818,-0.003500,0.249976,0,0);}
.m31_c00443{transform:matrix(0.201290,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201290,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201290,0.002818,-0.003500,0.249976,0,0);}
.mf0_c00443{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m72_c00443{transform:matrix(0.201670,0.002823,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201670,0.002823,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201670,0.002823,-0.003500,0.249976,0,0);}
.mfc_c00443{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.202745,0.002838,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202745,0.002838,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202745,0.002838,-0.003500,0.249976,0,0);}
.mfd_c00443{transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202920,0.000000,0.000000,0.250000,0,0);}
.mda_c00443{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.md1_c00443{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m87_c00443{transform:matrix(0.204245,0.002859,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204245,0.002859,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204245,0.002859,-0.003500,0.249976,0,0);}
.m6d_c00443{transform:matrix(0.204365,0.002861,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204365,0.002861,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204365,0.002861,-0.003500,0.249976,0,0);}
.md5_c00443{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205280,0.002874,-0.003500,0.249976,0,0);}
.m75_c00443{transform:matrix(0.205680,0.002880,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205680,0.002880,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205680,0.002880,-0.003500,0.249976,0,0);}
.mef_c00443{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.mb0_c00443{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.206920,0.002897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206920,0.002897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206920,0.002897,-0.003500,0.249976,0,0);}
.mde_c00443{transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207435,0.000000,0.000000,0.250000,0,0);}
.mc4_c00443{transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207585,0.000000,0.000000,0.250000,0,0);}
.mff_c00443{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.mf4_c00443{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.mec_c00443{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.mcf_c00443{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.md8_c00443{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.mfe_c00443{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.209929,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209929,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209929,0.002939,-0.003500,0.249976,0,0);}
.mb6_c00443{transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210005,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{transform:matrix(0.211824,0.002966,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211824,0.002966,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211824,0.002966,-0.003500,0.249976,0,0);}
.ma0_c00443{transform:matrix(0.212134,0.002970,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212134,0.002970,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212134,0.002970,-0.003500,0.249976,0,0);}
.mbb_c00443{transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212340,0.000000,0.000000,0.250000,0,0);}
.mb3_c00443{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m73_c00443{transform:matrix(0.213024,0.002982,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213024,0.002982,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213024,0.002982,-0.003500,0.249976,0,0);}
.m60_c00443{transform:matrix(0.213094,0.002983,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213094,0.002983,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213094,0.002983,-0.003500,0.249976,0,0);}
.mb1_c00443{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.213524,0.002989,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213524,0.002989,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213524,0.002989,-0.003500,0.249976,0,0);}
.m7a_c00443{transform:matrix(0.213539,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213539,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213539,0.002990,-0.003500,0.249976,0,0);}
.m38_c00443{transform:matrix(0.214074,0.002997,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214074,0.002997,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214074,0.002997,-0.003500,0.249976,0,0);}
.md9_c00443{transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);}
.mca_c00443{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{transform:matrix(0.214589,0.003004,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214589,0.003004,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214589,0.003004,-0.003500,0.249976,0,0);}
.mee_c00443{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.215034,0.003010,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215034,0.003010,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215034,0.003010,-0.003500,0.249976,0,0);}
.m34_c00443{transform:matrix(0.215134,0.003012,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215134,0.003012,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215134,0.003012,-0.003500,0.249976,0,0);}
.mcc_c00443{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.maf_c00443{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.215749,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215749,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215749,0.003020,-0.003500,0.249976,0,0);}
.md_c00443{transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);}
.m1e_c00443{transform:matrix(0.215894,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215894,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215894,0.003023,-0.003500,0.249976,0,0);}
.ma1_c00443{transform:matrix(0.215939,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215939,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215939,0.003023,-0.003500,0.249976,0,0);}
.m9b_c00443{transform:matrix(0.216484,0.003031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216484,0.003031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216484,0.003031,-0.003500,0.249976,0,0);}
.me2_c00443{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);}
.m79_c00443{transform:matrix(0.217849,0.003050,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217849,0.003050,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217849,0.003050,-0.003500,0.249976,0,0);}
.m70_c00443{transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);}
.mb4_c00443{transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);}
.m9d_c00443{transform:matrix(0.220318,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220318,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220318,0.003084,-0.003500,0.249976,0,0);}
.mba_c00443{transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.221678,0.003103,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221678,0.003103,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221678,0.003103,-0.003500,0.249976,0,0);}
.m8_c00443{transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);}
.m65_c00443{transform:matrix(0.222093,0.003109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222093,0.003109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222093,0.003109,-0.003500,0.249976,0,0);}
.m33_c00443{transform:matrix(0.222288,0.003112,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222288,0.003112,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222288,0.003112,-0.003500,0.249976,0,0);}
.m6a_c00443{transform:matrix(0.223773,0.003133,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223773,0.003133,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223773,0.003133,-0.003500,0.249976,0,0);}
.mcb_c00443{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.mc8_c00443{transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);}
.md0_c00443{transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224420,0.000000,0.000000,0.250000,0,0);}
.mf8_c00443{transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226990,0.000000,0.000000,0.250000,0,0);}
.me4_c00443{transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);}
.mdf_c00443{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00443{transform:matrix(0.227998,0.003192,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227998,0.003192,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227998,0.003192,-0.003500,0.249976,0,0);}
.m61_c00443{transform:matrix(0.228618,0.003201,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228618,0.003201,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228618,0.003201,-0.003500,0.249976,0,0);}
.maa_c00443{transform:matrix(0.229573,0.003214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229573,0.003214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229573,0.003214,-0.003500,0.249976,0,0);}
.mf9_c00443{transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229695,0.000000,0.000000,0.250000,0,0);}
.mdd_c00443{transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);}
.mcd_c00443{transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00443{transform:matrix(0.231022,0.003234,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231022,0.003234,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231022,0.003234,-0.003500,0.249976,0,0);}
.mf2_c00443{transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231765,0.000000,0.000000,0.250000,0,0);}
.mc5_c00443{transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);}
.m7d_c00443{transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233122,0.003264,-0.003500,0.249976,0,0);}
.mf6_c00443{transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.239267,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239267,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239267,0.003350,-0.003500,0.249976,0,0);}
.mc9_c00443{transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);}
.m64_c00443{transform:matrix(0.243711,0.003412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243711,0.003412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243711,0.003412,-0.003500,0.249976,0,0);}
.mf7_c00443{transform:matrix(0.244530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244530,0.000000,0.000000,0.250000,0,0);}
.mb9_c00443{transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00443{transform:matrix(0.249031,0.003486,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249031,0.003486,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249031,0.003486,-0.003500,0.249976,0,0);}
.me1_c00443{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.262764,0.003679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262764,0.003679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262764,0.003679,-0.003500,0.249976,0,0);}
.m84_c00443{transform:matrix(0.264774,0.003707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264774,0.003707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264774,0.003707,-0.003500,0.249976,0,0);}
.mb5_c00443{transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.270468,0.003787,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270468,0.003787,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270468,0.003787,-0.003500,0.249976,0,0);}
.mb7_c00443{transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.275178,0.003852,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275178,0.003852,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275178,0.003852,-0.003500,0.249976,0,0);}
.meb_c00443{transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);}
.m93_c00443{transform:matrix(0.298491,0.004179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.298491,0.004179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.298491,0.004179,-0.003500,0.249976,0,0);}
.m9c_c00443{transform:matrix(0.311060,0.004355,-0.003500,0.249976,0,0);-ms-transform:matrix(0.311060,0.004355,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.311060,0.004355,-0.003500,0.249976,0,0);}
.mbc_c00443{transform:matrix(0.316405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316405,0.000000,0.000000,0.250000,0,0);}
.ma3_c00443{transform:matrix(0.329968,0.004620,-0.003500,0.249976,0,0);-ms-transform:matrix(0.329968,0.004620,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.329968,0.004620,-0.003500,0.249976,0,0);}
.md6_c00443{transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.352960,0.004941,-0.003500,0.249976,0,0);-ms-transform:matrix(0.352960,0.004941,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.352960,0.004941,-0.003500,0.249976,0,0);}
.ma4_c00443{transform:matrix(0.368309,0.005156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.368309,0.005156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.368309,0.005156,-0.003500,0.249976,0,0);}
.m78_c00443{transform:matrix(0.379238,0.005309,-0.003500,0.249976,0,0);-ms-transform:matrix(0.379238,0.005309,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.379238,0.005309,-0.003500,0.249976,0,0);}
.m10_c00443{transform:matrix(0.410580,0.005748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.410580,0.005748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.410580,0.005748,-0.003500,0.249976,0,0);}
.m7_c00443{transform:matrix(0.469234,0.006569,-0.003500,0.249976,0,0);-ms-transform:matrix(0.469234,0.006569,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.469234,0.006569,-0.003500,0.249976,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
._0_c00443{width:15.357112px;}
.fc0_c00443{color:transparent;}
.fs0_c00443{font-size:26.250000px;}
.fsd_c00443{font-size:53.555248px;}
.fs13_c00443{font-size:55.650000px;}
.fsf_c00443{font-size:57.750000px;}
.fs9_c00443{font-size:57.755659px;}
.fs11_c00443{font-size:58.800000px;}
.fsb_c00443{font-size:58.805762px;}
.fsa_c00443{font-size:59.855865px;}
.fs12_c00443{font-size:60.900000px;}
.fsc_c00443{font-size:60.905968px;}
.fse_c00443{font-size:61.950000px;}
.fs4_c00443{font-size:63.006174px;}
.fs2_c00443{font-size:64.056277px;}
.fs3_c00443{font-size:65.106379px;}
.fs7_c00443{font-size:66.156482px;}
.fs8_c00443{font-size:67.206585px;}
.fs10_c00443{font-size:68.250000px;}
.fs5_c00443{font-size:68.256688px;}
.fs6_c00443{font-size:69.306791px;}
.fs1_c00443{font-size:75.600000px;}
.y0_c00443{bottom:0.000000px;}
.yd0_c00443{bottom:28.297500px;}
.ycf_c00443{bottom:43.272000px;}
.yce_c00443{bottom:43.485000px;}
.ycd_c00443{bottom:44.331000px;}
.ycc_c00443{bottom:44.539500px;}
.ycb_c00443{bottom:45.345000px;}
.yca_c00443{bottom:46.045500px;}
.yc9_c00443{bottom:46.230000px;}
.yc8_c00443{bottom:46.444500px;}
.yc7_c00443{bottom:62.440500px;}
.yc6_c00443{bottom:78.997500px;}
.yc5_c00443{bottom:92.827500px;}
.yc4_c00443{bottom:93.180000px;}
.yc3_c00443{bottom:93.880500px;}
.yc2_c00443{bottom:94.150500px;}
.yc1_c00443{bottom:94.491000px;}
.yc0_c00443{bottom:94.693500px;}
.ybf_c00443{bottom:94.917000px;}
.ybe_c00443{bottom:95.308500px;}
.ybd_c00443{bottom:95.994000px;}
.ybc_c00443{bottom:96.391500px;}
.ybb_c00443{bottom:112.509000px;}
.yba_c00443{bottom:128.269500px;}
.yb9_c00443{bottom:146.227500px;}
.yb8_c00443{bottom:160.540500px;}
.yb7_c00443{bottom:161.394000px;}
.yb6_c00443{bottom:162.078000px;}
.yb5_c00443{bottom:163.344000px;}
.yb4_c00443{bottom:163.602000px;}
.yb3_c00443{bottom:164.704500px;}
.yb2_c00443{bottom:165.783000px;}
.yb1_c00443{bottom:180.229500px;}
.yb0_c00443{bottom:194.715666px;}
.yaf_c00443{bottom:195.530823px;}
.yae_c00443{bottom:196.188585px;}
.yad_c00443{bottom:196.479729px;}
.yac_c00443{bottom:197.364165px;}
.yab_c00443{bottom:197.644284px;}
.yaa_c00443{bottom:198.116889px;}
.ya9_c00443{bottom:198.373950px;}
.ya8_c00443{bottom:198.951324px;}
.ya7_c00443{bottom:211.909218px;}
.ya6_c00443{bottom:212.107392px;}
.ya5_c00443{bottom:212.717607px;}
.ya4_c00443{bottom:213.015072px;}
.ya3_c00443{bottom:214.812228px;}
.ya2_c00443{bottom:215.261349px;}
.ya1_c00443{bottom:215.638107px;}
.ya0_c00443{bottom:215.848752px;}
.y9f_c00443{bottom:216.504960px;}
.y9e_c00443{bottom:229.716951px;}
.y9d_c00443{bottom:230.242185px;}
.y9c_c00443{bottom:230.868225px;}
.y9b_c00443{bottom:231.538311px;}
.y9a_c00443{bottom:231.965376px;}
.y99_c00443{bottom:232.211463px;}
.y98_c00443{bottom:232.549146px;}
.y97_c00443{bottom:232.751388px;}
.y96_c00443{bottom:232.977690px;}
.y95_c00443{bottom:247.085952px;}
.y94_c00443{bottom:247.263516px;}
.y93_c00443{bottom:248.186505px;}
.y92_c00443{bottom:248.666172px;}
.y91_c00443{bottom:248.822511px;}
.y90_c00443{bottom:249.454737px;}
.y8f_c00443{bottom:249.990126px;}
.y8e_c00443{bottom:264.094440px;}
.y8d_c00443{bottom:264.373125px;}
.y8c_c00443{bottom:265.161228px;}
.y8b_c00443{bottom:265.372449px;}
.y8a_c00443{bottom:265.686672px;}
.y89_c00443{bottom:266.217462px;}
.y88_c00443{bottom:266.567223px;}
.y87_c00443{bottom:267.002604px;}
.y86_c00443{bottom:280.541769px;}
.y85_c00443{bottom:280.836585px;}
.y84_c00443{bottom:281.306685px;}
.y83_c00443{bottom:281.536128px;}
.y82_c00443{bottom:281.888934px;}
.y81_c00443{bottom:282.855651px;}
.y80_c00443{bottom:283.474257px;}
.y7f_c00443{bottom:296.858730px;}
.y7e_c00443{bottom:297.046764px;}
.y7d_c00443{bottom:297.560949px;}
.y7c_c00443{bottom:297.927735px;}
.y7b_c00443{bottom:298.703622px;}
.y7a_c00443{bottom:299.107242px;}
.y79_c00443{bottom:299.862822px;}
.y78_c00443{bottom:300.756372px;}
.y77_c00443{bottom:314.333025px;}
.y76_c00443{bottom:315.046020px;}
.y75_c00443{bottom:315.284442px;}
.y74_c00443{bottom:315.522222px;}
.y73_c00443{bottom:316.448991px;}
.y72_c00443{bottom:316.675293px;}
.y71_c00443{bottom:317.462673px;}
.y70_c00443{bottom:317.766594px;}
.y6f_c00443{bottom:331.740600px;}
.y6e_c00443{bottom:332.716113px;}
.y6d_c00443{bottom:332.984472px;}
.y6c_c00443{bottom:333.304785px;}
.y6b_c00443{bottom:333.593157px;}
.y6a_c00443{bottom:334.515435px;}
.y69_c00443{bottom:334.779048px;}
.y68_c00443{bottom:347.833677px;}
.y67_c00443{bottom:348.849636px;}
.y66_c00443{bottom:349.027590px;}
.y65_c00443{bottom:349.760847px;}
.y64_c00443{bottom:350.172447px;}
.y63_c00443{bottom:350.445594px;}
.y62_c00443{bottom:351.144075px;}
.y61_c00443{bottom:351.787515px;}
.y60_c00443{bottom:352.043799px;}
.y5f_c00443{bottom:352.330848px;}
.y5e_c00443{bottom:365.491830px;}
.y5d_c00443{bottom:365.828313px;}
.y5c_c00443{bottom:366.421878px;}
.y5b_c00443{bottom:366.969390px;}
.y5a_c00443{bottom:367.303101px;}
.y59_c00443{bottom:367.968255px;}
.y58_c00443{bottom:368.247849px;}
.y57_c00443{bottom:368.802921px;}
.y56_c00443{bottom:381.216726px;}
.y55_c00443{bottom:381.386337px;}
.y54_c00443{bottom:381.772779px;}
.y53_c00443{bottom:382.682253px;}
.y52_c00443{bottom:382.863480px;}
.y51_c00443{bottom:383.526441px;}
.y50_c00443{bottom:383.912148px;}
.y4f_c00443{bottom:384.195546px;}
.y4e_c00443{bottom:398.892795px;}
.y4d_c00443{bottom:399.976170px;}
.y4c_c00443{bottom:400.524633px;}
.y4b_c00443{bottom:401.348997px;}
.y4a_c00443{bottom:401.609751px;}
.y49_c00443{bottom:402.447267px;}
.y48_c00443{bottom:402.721362px;}
.y47_c00443{bottom:403.912788px;}
.y46_c00443{bottom:415.985505px;}
.y45_c00443{bottom:416.407020px;}
.y44_c00443{bottom:416.678469px;}
.y43_c00443{bottom:417.703935px;}
.y42_c00443{bottom:418.012299px;}
.y41_c00443{bottom:418.814928px;}
.y40_c00443{bottom:419.090346px;}
.y3f_c00443{bottom:419.477718px;}
.y3e_c00443{bottom:419.842842px;}
.y3d_c00443{bottom:432.641334px;}
.y3c_c00443{bottom:433.388379px;}
.y3b_c00443{bottom:433.837062px;}
.y3a_c00443{bottom:434.373030px;}
.y39_c00443{bottom:435.492810px;}
.y38_c00443{bottom:436.508127px;}
.y37_c00443{bottom:436.854783px;}
.y1_c00443{bottom:439.830000px;}
.y36_c00443{bottom:449.949801px;}
.y35_c00443{bottom:450.415026px;}
.y34_c00443{bottom:450.697098px;}
.y33_c00443{bottom:452.079357px;}
.y32_c00443{bottom:452.526537px;}
.y31_c00443{bottom:453.269919px;}
.y30_c00443{bottom:453.690981px;}
.y2f_c00443{bottom:454.406838px;}
.y2e_c00443{bottom:466.327473px;}
.y2d_c00443{bottom:467.518059px;}
.y2c_c00443{bottom:467.974416px;}
.y2b_c00443{bottom:469.416390px;}
.y2a_c00443{bottom:470.877774px;}
.y29_c00443{bottom:482.263413px;}
.y28_c00443{bottom:482.610900px;}
.y27_c00443{bottom:483.091722px;}
.y26_c00443{bottom:483.531204px;}
.y25_c00443{bottom:483.846027px;}
.y24_c00443{bottom:484.096614px;}
.y23_c00443{bottom:484.808961px;}
.y22_c00443{bottom:485.022012px;}
.y21_c00443{bottom:485.726271px;}
.y20_c00443{bottom:500.046054px;}
.y1f_c00443{bottom:500.509266px;}
.y1e_c00443{bottom:501.352122px;}
.y1d_c00443{bottom:502.119975px;}
.y1c_c00443{bottom:502.393602px;}
.y1b_c00443{bottom:503.633298px;}
.y1a_c00443{bottom:504.033624px;}
.y19_c00443{bottom:504.469362px;}
.y18_c00443{bottom:504.897540px;}
.y17_c00443{bottom:517.859655px;}
.y16_c00443{bottom:518.104263px;}
.y15_c00443{bottom:519.356388px;}
.y14_c00443{bottom:520.751544px;}
.y13_c00443{bottom:521.128809px;}
.y12_c00443{bottom:521.640012px;}
.y11_c00443{bottom:534.369012px;}
.y10_c00443{bottom:534.550230px;}
.yf_c00443{bottom:535.271805px;}
.ye_c00443{bottom:536.136561px;}
.yd_c00443{bottom:537.096267px;}
.yc_c00443{bottom:537.394545px;}
.yb_c00443{bottom:538.652067px;}
.ya_c00443{bottom:551.944638px;}
.y9_c00443{bottom:552.208041px;}
.y8_c00443{bottom:553.029225px;}
.y7_c00443{bottom:553.720566px;}
.y6_c00443{bottom:553.966896px;}
.y5_c00443{bottom:554.927289px;}
.y4_c00443{bottom:555.172968px;}
.y3_c00443{bottom:555.933000px;}
.y2_c00443{bottom:565.768500px;}
.h1_c00443{height:26.250000px;}
.he_c00443{height:53.555248px;}
.h14_c00443{height:55.650000px;}
.h10_c00443{height:57.750000px;}
.ha_c00443{height:57.755659px;}
.h12_c00443{height:58.800000px;}
.hc_c00443{height:58.805762px;}
.hb_c00443{height:59.855865px;}
.h13_c00443{height:60.900000px;}
.hd_c00443{height:60.905968px;}
.hf_c00443{height:61.950000px;}
.h5_c00443{height:63.006174px;}
.h3_c00443{height:64.056277px;}
.h4_c00443{height:65.106379px;}
.h8_c00443{height:66.156482px;}
.h9_c00443{height:67.206585px;}
.h11_c00443{height:68.250000px;}
.h6_c00443{height:68.256688px;}
.h7_c00443{height:69.306791px;}
.h2_c00443{height:75.600000px;}
.h0_c00443{height:608.250000px;}
.w0_c00443{width:359.100000px;}
.w1_c00443{width:359.250000px;}
.x0_c00443{left:0.000000px;}
.x85_c00443{left:22.555500px;}
.x83_c00443{left:23.760000px;}
.x80_c00443{left:24.840000px;}
.x7a_c00443{left:26.190000px;}
.x1_c00443{left:27.270000px;}
.x69_c00443{left:29.875041px;}
.x61_c00443{left:32.250762px;}
.x5a_c00443{left:33.311430px;}
.x4b_c00443{left:34.999662px;}
.x43_c00443{left:36.288933px;}
.x32_c00443{left:37.330722px;}
.x27_c00443{left:39.200817px;}
.x12_c00443{left:41.144730px;}
.x4_c00443{left:42.483000px;}
.x73_c00443{left:45.090000px;}
.x6a_c00443{left:48.718566px;}
.x51_c00443{left:53.283378px;}
.x4c_c00443{left:55.503162px;}
.x33_c00443{left:58.984113px;}
.x7d_c00443{left:60.750000px;}
.x37_c00443{left:62.239872px;}
.x6b_c00443{left:65.522028px;}
.x18_c00443{left:67.384530px;}
.x62_c00443{left:68.493270px;}
.x71_c00443{left:70.558656px;}
.x4d_c00443{left:73.809162px;}
.x48_c00443{left:75.158826px;}
.x13_c00443{left:77.659230px;}
.x6e_c00443{left:80.826819px;}
.x5d_c00443{left:84.372375px;}
.x38_c00443{left:88.087515px;}
.x77_c00443{left:90.775500px;}
.x6c_c00443{left:93.607305px;}
.x19_c00443{left:94.650774px;}
.x5_c00443{left:96.771000px;}
.x2c_c00443{left:101.599083px;}
.x6f_c00443{left:103.022895px;}
.x14_c00443{left:104.606730px;}
.x39_c00443{left:106.474263px;}
.x81_c00443{left:107.730000px;}
.x6_c00443{left:114.319500px;}
.x28_c00443{left:116.151441px;}
.x1a_c00443{left:119.709081px;}
.xc_c00443{left:120.771354px;}
.x34_c00443{left:122.397828px;}
.x20_c00443{left:123.791892px;}
.x55_c00443{left:125.200758px;}
.x66_c00443{left:128.664684px;}
.xd_c00443{left:139.397829px;}
.x63_c00443{left:141.891828px;}
.x2d_c00443{left:142.909773px;}
.x56_c00443{left:144.044283px;}
.x3f_c00443{left:146.646810px;}
.x6d_c00443{left:149.726880px;}
.x5b_c00443{left:151.106430px;}
.x78_c00443{left:155.589000px;}
.x44_c00443{left:157.262994px;}
.x3a_c00443{left:159.947007px;}
.x52_c00443{left:162.637878px;}
.x5e_c00443{left:164.890122px;}
.x49_c00443{left:166.477326px;}
.x2e_c00443{left:167.778387px;}
.x4e_c00443{left:169.660662px;}
.x74_c00443{left:171.450000px;}
.x2_c00443{left:173.880000px;}
.x3b_c00443{left:180.472713px;}
.x53_c00443{left:181.806378px;}
.x7_c00443{left:182.919000px;}
.x64_c00443{left:185.639046px;}
.x21_c00443{left:188.605122px;}
.x79_c00443{left:190.620000px;}
.x29_c00443{left:192.037128px;}
.x5f_c00443{left:194.269941px;}
.x86_c00443{left:195.628500px;}
.x1b_c00443{left:197.220918px;}
.x40_c00443{left:198.328749px;}
.xe_c00443{left:199.375149px;}
.x8_c00443{left:200.514000px;}
.x15_c00443{left:204.260730px;}
.x4a_c00443{left:205.585326px;}
.x22_c00443{left:211.326567px;}
.x1c_c00443{left:214.300935px;}
.x2a_c00443{left:216.060948px;}
.x4f_c00443{left:218.571162px;}
.x57_c00443{left:221.279946px;}
.x41_c00443{left:224.430687px;}
.x35_c00443{left:225.876930px;}
.x7e_c00443{left:229.371000px;}
.x84_c00443{left:230.850000px;}
.x7b_c00443{left:232.470000px;}
.x5c_c00443{left:235.356930px;}
.x23_c00443{left:239.922264px;}
.x58_c00443{left:241.050492px;}
.x2f_c00443{left:244.542582px;}
.x82_c00443{left:246.240000px;}
.x3c_c00443{left:248.790747px;}
.x9_c00443{left:249.895500px;}
.x54_c00443{left:251.485878px;}
.xf_c00443{left:253.427637px;}
.x45_c00443{left:256.388652px;}
.x67_c00443{left:258.560817px;}
.x30_c00443{left:260.189700px;}
.x1d_c00443{left:262.289091px;}
.x3d_c00443{left:266.893995px;}
.x3_c00443{left:271.890000px;}
.x68_c00443{left:273.387237px;}
.x65_c00443{left:274.483524px;}
.x42_c00443{left:275.988126px;}
.x60_c00443{left:277.190772px;}
.x2b_c00443{left:278.705559px;}
.x24_c00443{left:279.886944px;}
.x50_c00443{left:283.657662px;}
.x31_c00443{left:286.025751px;}
.x70_c00443{left:288.440583px;}
.x46_c00443{left:291.493122px;}
.x16_c00443{left:293.698230px;}
.x3e_c00443{left:294.966096px;}
.x10_c00443{left:298.538877px;}
.x36_c00443{left:300.676851px;}
.x47_c00443{left:306.930273px;}
.xa_c00443{left:308.551500px;}
.x11_c00443{left:309.875562px;}
.x17_c00443{left:311.170230px;}
.x1e_c00443{left:314.991621px;}
.x75_c00443{left:316.980000px;}
.x59_c00443{left:320.368218px;}
.x25_c00443{left:323.661792px;}
.xb_c00443{left:327.366000px;}
.x7c_c00443{left:329.400000px;}
.x72_c00443{left:331.864656px;}
.x76_c00443{left:336.420000px;}
.x1f_c00443{left:343.898802px;}
.x7f_c00443{left:349.687500px;}
.x26_c00443{left:355.233615px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
._0_c00443{width:13.650766pt;}
.fs0_c00443{font-size:23.333333pt;}
.fsd_c00443{font-size:47.604665pt;}
.fs13_c00443{font-size:49.466667pt;}
.fsf_c00443{font-size:51.333333pt;}
.fs9_c00443{font-size:51.338364pt;}
.fs11_c00443{font-size:52.266667pt;}
.fsb_c00443{font-size:52.271789pt;}
.fsa_c00443{font-size:53.205213pt;}
.fs12_c00443{font-size:54.133333pt;}
.fsc_c00443{font-size:54.138638pt;}
.fse_c00443{font-size:55.066667pt;}
.fs4_c00443{font-size:56.005488pt;}
.fs2_c00443{font-size:56.938913pt;}
.fs3_c00443{font-size:57.872337pt;}
.fs7_c00443{font-size:58.805762pt;}
.fs8_c00443{font-size:59.739187pt;}
.fs10_c00443{font-size:60.666667pt;}
.fs5_c00443{font-size:60.672612pt;}
.fs6_c00443{font-size:61.606037pt;}
.fs1_c00443{font-size:67.200000pt;}
.y0_c00443{bottom:0.000000pt;}
.yd0_c00443{bottom:25.153333pt;}
.ycf_c00443{bottom:38.464000pt;}
.yce_c00443{bottom:38.653333pt;}
.ycd_c00443{bottom:39.405333pt;}
.ycc_c00443{bottom:39.590667pt;}
.ycb_c00443{bottom:40.306667pt;}
.yca_c00443{bottom:40.929333pt;}
.yc9_c00443{bottom:41.093333pt;}
.yc8_c00443{bottom:41.284000pt;}
.yc7_c00443{bottom:55.502667pt;}
.yc6_c00443{bottom:70.220000pt;}
.yc5_c00443{bottom:82.513333pt;}
.yc4_c00443{bottom:82.826667pt;}
.yc3_c00443{bottom:83.449333pt;}
.yc2_c00443{bottom:83.689333pt;}
.yc1_c00443{bottom:83.992000pt;}
.yc0_c00443{bottom:84.172000pt;}
.ybf_c00443{bottom:84.370667pt;}
.ybe_c00443{bottom:84.718667pt;}
.ybd_c00443{bottom:85.328000pt;}
.ybc_c00443{bottom:85.681333pt;}
.ybb_c00443{bottom:100.008000pt;}
.yba_c00443{bottom:114.017333pt;}
.yb9_c00443{bottom:129.980000pt;}
.yb8_c00443{bottom:142.702667pt;}
.yb7_c00443{bottom:143.461333pt;}
.yb6_c00443{bottom:144.069333pt;}
.yb5_c00443{bottom:145.194667pt;}
.yb4_c00443{bottom:145.424000pt;}
.yb3_c00443{bottom:146.404000pt;}
.yb2_c00443{bottom:147.362667pt;}
.yb1_c00443{bottom:160.204000pt;}
.yb0_c00443{bottom:173.080592pt;}
.yaf_c00443{bottom:173.805176pt;}
.yae_c00443{bottom:174.389853pt;}
.yad_c00443{bottom:174.648648pt;}
.yac_c00443{bottom:175.434813pt;}
.yab_c00443{bottom:175.683808pt;}
.yaa_c00443{bottom:176.103901pt;}
.ya9_c00443{bottom:176.332400pt;}
.ya8_c00443{bottom:176.845621pt;}
.ya7_c00443{bottom:188.363749pt;}
.ya6_c00443{bottom:188.539904pt;}
.ya5_c00443{bottom:189.082317pt;}
.ya4_c00443{bottom:189.346731pt;}
.ya3_c00443{bottom:190.944203pt;}
.ya2_c00443{bottom:191.343421pt;}
.ya1_c00443{bottom:191.678317pt;}
.ya0_c00443{bottom:191.865557pt;}
.y9f_c00443{bottom:192.448853pt;}
.y9e_c00443{bottom:204.192845pt;}
.y9d_c00443{bottom:204.659720pt;}
.y9c_c00443{bottom:205.216200pt;}
.y9b_c00443{bottom:205.811832pt;}
.y9a_c00443{bottom:206.191445pt;}
.y99_c00443{bottom:206.410189pt;}
.y98_c00443{bottom:206.710352pt;}
.y97_c00443{bottom:206.890123pt;}
.y96_c00443{bottom:207.091280pt;}
.y95_c00443{bottom:219.631957pt;}
.y94_c00443{bottom:219.789792pt;}
.y93_c00443{bottom:220.610227pt;}
.y92_c00443{bottom:221.036597pt;}
.y91_c00443{bottom:221.175565pt;}
.y90_c00443{bottom:221.737544pt;}
.y8f_c00443{bottom:222.213445pt;}
.y8e_c00443{bottom:234.750613pt;}
.y8d_c00443{bottom:234.998333pt;}
.y8c_c00443{bottom:235.698869pt;}
.y8b_c00443{bottom:235.886621pt;}
.y8a_c00443{bottom:236.165931pt;}
.y89_c00443{bottom:236.637744pt;}
.y88_c00443{bottom:236.948643pt;}
.y87_c00443{bottom:237.335648pt;}
.y86_c00443{bottom:249.370461pt;}
.y85_c00443{bottom:249.632520pt;}
.y84_c00443{bottom:250.050387pt;}
.y83_c00443{bottom:250.254336pt;}
.y82_c00443{bottom:250.567941pt;}
.y81_c00443{bottom:251.427245pt;}
.y80_c00443{bottom:251.977117pt;}
.y7f_c00443{bottom:263.874427pt;}
.y7e_c00443{bottom:264.041568pt;}
.y7d_c00443{bottom:264.498621pt;}
.y7c_c00443{bottom:264.824653pt;}
.y7b_c00443{bottom:265.514331pt;}
.y7a_c00443{bottom:265.873104pt;}
.y79_c00443{bottom:266.544731pt;}
.y78_c00443{bottom:267.338997pt;}
.y77_c00443{bottom:279.407133pt;}
.y76_c00443{bottom:280.040907pt;}
.y75_c00443{bottom:280.252837pt;}
.y74_c00443{bottom:280.464197pt;}
.y73_c00443{bottom:281.287992pt;}
.y72_c00443{bottom:281.489149pt;}
.y71_c00443{bottom:282.189043pt;}
.y70_c00443{bottom:282.459195pt;}
.y6f_c00443{bottom:294.880533pt;}
.y6e_c00443{bottom:295.747656pt;}
.y6d_c00443{bottom:295.986197pt;}
.y6c_c00443{bottom:296.270920pt;}
.y6b_c00443{bottom:296.527251pt;}
.y6a_c00443{bottom:297.347053pt;}
.y69_c00443{bottom:297.581376pt;}
.y68_c00443{bottom:309.185491pt;}
.y67_c00443{bottom:310.088565pt;}
.y66_c00443{bottom:310.246747pt;}
.y65_c00443{bottom:310.898531pt;}
.y64_c00443{bottom:311.264397pt;}
.y63_c00443{bottom:311.507195pt;}
.y62_c00443{bottom:312.128067pt;}
.y61_c00443{bottom:312.700013pt;}
.y60_c00443{bottom:312.927821pt;}
.y5f_c00443{bottom:313.182976pt;}
.y5e_c00443{bottom:324.881627pt;}
.y5d_c00443{bottom:325.180723pt;}
.y5c_c00443{bottom:325.708336pt;}
.y5b_c00443{bottom:326.195013pt;}
.y5a_c00443{bottom:326.491645pt;}
.y59_c00443{bottom:327.082893pt;}
.y58_c00443{bottom:327.331421pt;}
.y57_c00443{bottom:327.824819pt;}
.y56_c00443{bottom:338.859312pt;}
.y55_c00443{bottom:339.010077pt;}
.y54_c00443{bottom:339.353581pt;}
.y53_c00443{bottom:340.162003pt;}
.y52_c00443{bottom:340.323093pt;}
.y51_c00443{bottom:340.912392pt;}
.y50_c00443{bottom:341.255243pt;}
.y4f_c00443{bottom:341.507152pt;}
.y4e_c00443{bottom:354.571373pt;}
.y4d_c00443{bottom:355.534373pt;}
.y4c_c00443{bottom:356.021896pt;}
.y4b_c00443{bottom:356.754664pt;}
.y4a_c00443{bottom:356.986445pt;}
.y49_c00443{bottom:357.730904pt;}
.y48_c00443{bottom:357.974544pt;}
.y47_c00443{bottom:359.033589pt;}
.y46_c00443{bottom:369.764893pt;}
.y45_c00443{bottom:370.139573pt;}
.y44_c00443{bottom:370.380861pt;}
.y43_c00443{bottom:371.292387pt;}
.y42_c00443{bottom:371.566488pt;}
.y41_c00443{bottom:372.279936pt;}
.y40_c00443{bottom:372.524752pt;}
.y3f_c00443{bottom:372.869083pt;}
.y3e_c00443{bottom:373.193637pt;}
.y3d_c00443{bottom:384.570075pt;}
.y3c_c00443{bottom:385.234115pt;}
.y3b_c00443{bottom:385.632944pt;}
.y3a_c00443{bottom:386.109360pt;}
.y39_c00443{bottom:387.104720pt;}
.y38_c00443{bottom:388.007224pt;}
.y37_c00443{bottom:388.315363pt;}
.y1_c00443{bottom:390.960000pt;}
.y36_c00443{bottom:399.955379pt;}
.y35_c00443{bottom:400.368912pt;}
.y34_c00443{bottom:400.619643pt;}
.y33_c00443{bottom:401.848317pt;}
.y32_c00443{bottom:402.245811pt;}
.y31_c00443{bottom:402.906595pt;}
.y30_c00443{bottom:403.280872pt;}
.y2f_c00443{bottom:403.917189pt;}
.y2e_c00443{bottom:414.513309pt;}
.y2d_c00443{bottom:415.571608pt;}
.y2c_c00443{bottom:415.977259pt;}
.y2b_c00443{bottom:417.259013pt;}
.y2a_c00443{bottom:418.558021pt;}
.y29_c00443{bottom:428.678589pt;}
.y28_c00443{bottom:428.987467pt;}
.y27_c00443{bottom:429.414864pt;}
.y26_c00443{bottom:429.805515pt;}
.y25_c00443{bottom:430.085357pt;}
.y24_c00443{bottom:430.308101pt;}
.y23_c00443{bottom:430.941299pt;}
.y22_c00443{bottom:431.130677pt;}
.y21_c00443{bottom:431.756685pt;}
.y20_c00443{bottom:444.485381pt;}
.y1f_c00443{bottom:444.897125pt;}
.y1e_c00443{bottom:445.646331pt;}
.y1d_c00443{bottom:446.328867pt;}
.y1c_c00443{bottom:446.572091pt;}
.y1b_c00443{bottom:447.674043pt;}
.y1a_c00443{bottom:448.029888pt;}
.y19_c00443{bottom:448.417211pt;}
.y18_c00443{bottom:448.797813pt;}
.y17_c00443{bottom:460.319693pt;}
.y16_c00443{bottom:460.537123pt;}
.y15_c00443{bottom:461.650123pt;}
.y14_c00443{bottom:462.890261pt;}
.y13_c00443{bottom:463.225608pt;}
.y12_c00443{bottom:463.680011pt;}
.y11_c00443{bottom:474.994677pt;}
.y10_c00443{bottom:475.155760pt;}
.yf_c00443{bottom:475.797160pt;}
.ye_c00443{bottom:476.565832pt;}
.yd_c00443{bottom:477.418904pt;}
.yc_c00443{bottom:477.684040pt;}
.yb_c00443{bottom:478.801837pt;}
.ya_c00443{bottom:490.617456pt;}
.y9_c00443{bottom:490.851592pt;}
.y8_c00443{bottom:491.581533pt;}
.y7_c00443{bottom:492.196059pt;}
.y6_c00443{bottom:492.415019pt;}
.y5_c00443{bottom:493.268701pt;}
.y4_c00443{bottom:493.487083pt;}
.y3_c00443{bottom:494.162667pt;}
.y2_c00443{bottom:502.905333pt;}
.h1_c00443{height:23.333333pt;}
.he_c00443{height:47.604665pt;}
.h14_c00443{height:49.466667pt;}
.h10_c00443{height:51.333333pt;}
.ha_c00443{height:51.338364pt;}
.h12_c00443{height:52.266667pt;}
.hc_c00443{height:52.271789pt;}
.hb_c00443{height:53.205213pt;}
.h13_c00443{height:54.133333pt;}
.hd_c00443{height:54.138638pt;}
.hf_c00443{height:55.066667pt;}
.h5_c00443{height:56.005488pt;}
.h3_c00443{height:56.938913pt;}
.h4_c00443{height:57.872337pt;}
.h8_c00443{height:58.805762pt;}
.h9_c00443{height:59.739187pt;}
.h11_c00443{height:60.666667pt;}
.h6_c00443{height:60.672612pt;}
.h7_c00443{height:61.606037pt;}
.h2_c00443{height:67.200000pt;}
.h0_c00443{height:540.666667pt;}
.w0_c00443{width:319.200000pt;}
.w1_c00443{width:319.333333pt;}
.x0_c00443{left:0.000000pt;}
.x85_c00443{left:20.049333pt;}
.x83_c00443{left:21.120000pt;}
.x80_c00443{left:22.080000pt;}
.x7a_c00443{left:23.280000pt;}
.x1_c00443{left:24.240000pt;}
.x69_c00443{left:26.555592pt;}
.x61_c00443{left:28.667344pt;}
.x5a_c00443{left:29.610160pt;}
.x4b_c00443{left:31.110811pt;}
.x43_c00443{left:32.256829pt;}
.x32_c00443{left:33.182864pt;}
.x27_c00443{left:34.845171pt;}
.x12_c00443{left:36.573093pt;}
.x4_c00443{left:37.762667pt;}
.x73_c00443{left:40.080000pt;}
.x6a_c00443{left:43.305392pt;}
.x51_c00443{left:47.363003pt;}
.x4c_c00443{left:49.336144pt;}
.x33_c00443{left:52.430323pt;}
.x7d_c00443{left:54.000000pt;}
.x37_c00443{left:55.324331pt;}
.x6b_c00443{left:58.241803pt;}
.x18_c00443{left:59.897360pt;}
.x62_c00443{left:60.882907pt;}
.x71_c00443{left:62.718805pt;}
.x4d_c00443{left:65.608144pt;}
.x48_c00443{left:66.807845pt;}
.x13_c00443{left:69.030427pt;}
.x6e_c00443{left:71.846061pt;}
.x5d_c00443{left:74.997667pt;}
.x38_c00443{left:78.300013pt;}
.x77_c00443{left:80.689333pt;}
.x6c_c00443{left:83.206493pt;}
.x19_c00443{left:84.134021pt;}
.x5_c00443{left:86.018667pt;}
.x2c_c00443{left:90.310296pt;}
.x6f_c00443{left:91.575907pt;}
.x14_c00443{left:92.983760pt;}
.x39_c00443{left:94.643789pt;}
.x81_c00443{left:95.760000pt;}
.x6_c00443{left:101.617333pt;}
.x28_c00443{left:103.245725pt;}
.x1a_c00443{left:106.408072pt;}
.xc_c00443{left:107.352315pt;}
.x34_c00443{left:108.798069pt;}
.x20_c00443{left:110.037237pt;}
.x55_c00443{left:111.289563pt;}
.x66_c00443{left:114.368608pt;}
.xd_c00443{left:123.909181pt;}
.x63_c00443{left:126.126069pt;}
.x2d_c00443{left:127.030909pt;}
.x56_c00443{left:128.039363pt;}
.x3f_c00443{left:130.352720pt;}
.x6d_c00443{left:133.090560pt;}
.x5b_c00443{left:134.316827pt;}
.x78_c00443{left:138.301333pt;}
.x44_c00443{left:139.789328pt;}
.x3a_c00443{left:142.175117pt;}
.x52_c00443{left:144.567003pt;}
.x5e_c00443{left:146.568997pt;}
.x49_c00443{left:147.979845pt;}
.x2e_c00443{left:149.136344pt;}
.x4e_c00443{left:150.809477pt;}
.x74_c00443{left:152.400000pt;}
.x2_c00443{left:154.560000pt;}
.x3b_c00443{left:160.420189pt;}
.x53_c00443{left:161.605669pt;}
.x7_c00443{left:162.594667pt;}
.x64_c00443{left:165.012485pt;}
.x21_c00443{left:167.648997pt;}
.x79_c00443{left:169.440000pt;}
.x29_c00443{left:170.699669pt;}
.x5f_c00443{left:172.684392pt;}
.x86_c00443{left:173.892000pt;}
.x1b_c00443{left:175.307483pt;}
.x40_c00443{left:176.292221pt;}
.xe_c00443{left:177.222355pt;}
.x8_c00443{left:178.234667pt;}
.x15_c00443{left:181.565093pt;}
.x4a_c00443{left:182.742512pt;}
.x22_c00443{left:187.845837pt;}
.x1c_c00443{left:190.489720pt;}
.x2a_c00443{left:192.054176pt;}
.x4f_c00443{left:194.285477pt;}
.x57_c00443{left:196.693285pt;}
.x41_c00443{left:199.493944pt;}
.x35_c00443{left:200.779493pt;}
.x7e_c00443{left:203.885333pt;}
.x84_c00443{left:205.200000pt;}
.x7b_c00443{left:206.640000pt;}
.x5c_c00443{left:209.206160pt;}
.x23_c00443{left:213.264235pt;}
.x58_c00443{left:214.267104pt;}
.x2f_c00443{left:217.371184pt;}
.x82_c00443{left:218.880000pt;}
.x3c_c00443{left:221.147331pt;}
.x9_c00443{left:222.129333pt;}
.x54_c00443{left:223.543003pt;}
.xf_c00443{left:225.269011pt;}
.x45_c00443{left:227.901024pt;}
.x67_c00443{left:229.831837pt;}
.x30_c00443{left:231.279733pt;}
.x1d_c00443{left:233.145859pt;}
.x3d_c00443{left:237.239107pt;}
.x3_c00443{left:241.680000pt;}
.x68_c00443{left:243.010877pt;}
.x65_c00443{left:243.985355pt;}
.x42_c00443{left:245.322779pt;}
.x60_c00443{left:246.391797pt;}
.x2b_c00443{left:247.738275pt;}
.x24_c00443{left:248.788395pt;}
.x50_c00443{left:252.140144pt;}
.x31_c00443{left:254.245112pt;}
.x70_c00443{left:256.391629pt;}
.x46_c00443{left:259.104997pt;}
.x16_c00443{left:261.065093pt;}
.x3e_c00443{left:262.192085pt;}
.x10_c00443{left:265.367891pt;}
.x36_c00443{left:267.268312pt;}
.x47_c00443{left:272.826909pt;}
.xa_c00443{left:274.268000pt;}
.x11_c00443{left:275.444944pt;}
.x17_c00443{left:276.595760pt;}
.x1e_c00443{left:279.992552pt;}
.x75_c00443{left:281.760000pt;}
.x59_c00443{left:284.771749pt;}
.x25_c00443{left:287.699371pt;}
.xb_c00443{left:290.992000pt;}
.x7c_c00443{left:292.800000pt;}
.x72_c00443{left:294.990805pt;}
.x76_c00443{left:299.040000pt;}
.x1f_c00443{left:305.687824pt;}
.x7f_c00443{left:310.833333pt;}
.x26_c00443{left:315.763213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00444 {
    display:none;
  }
  .loading-indicator_c00444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00444 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00444 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00444" -> "#page-container .classname_c00444")
 */
.pf_c00444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00444 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00444 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00444 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00444 {overflow:visible;}
  }
}
.c_c00444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00444 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00444:after { /* webkit #35443 */
  content: '';
}
.t_c00444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00444 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00444 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00444 { /* info for Javascript */
  display:none;
}
.l_c00444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00444:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00444 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00444.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00444{transform:matrix(0.104745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104745,0.000000,0.000000,0.250000,0,0);}
.md0_c00444{transform:matrix(0.109441,-0.001423,0.003250,0.249979,0,0);-ms-transform:matrix(0.109441,-0.001423,0.003250,0.249979,0,0);-webkit-transform:matrix(0.109441,-0.001423,0.003250,0.249979,0,0);}
.m42_c00444{transform:matrix(0.125965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125965,0.000000,0.000000,0.250000,0,0);}
.med_c00444{transform:matrix(0.137845,-0.001654,0.003000,0.249982,0,0);-ms-transform:matrix(0.137845,-0.001654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137845,-0.001654,0.003000,0.249982,0,0);}
.me8_c00444{transform:matrix(0.141145,-0.001694,0.003000,0.249982,0,0);-ms-transform:matrix(0.141145,-0.001694,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141145,-0.001694,0.003000,0.249982,0,0);}
.m24_c00444{transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);}
.mef_c00444{transform:matrix(0.154809,-0.001858,0.003000,0.249982,0,0);-ms-transform:matrix(0.154809,-0.001858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154809,-0.001858,0.003000,0.249982,0,0);}
.mb7_c00444{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.155945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155945,0.000000,0.000000,0.250000,0,0);}
.mea_c00444{transform:matrix(0.157139,-0.001886,0.003000,0.249982,0,0);-ms-transform:matrix(0.157139,-0.001886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157139,-0.001886,0.003000,0.249982,0,0);}
.m2c_c00444{transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);}
.mbf_c00444{transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);}
.mb8_c00444{transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160635,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.161691,-0.004366,0.006748,0.249909,0,0);-ms-transform:matrix(0.161691,-0.004366,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161691,-0.004366,0.006748,0.249909,0,0);}
.mb2_c00444{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);}
.mcc_c00444{transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);-ms-transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163181,-0.002121,0.003250,0.249979,0,0);}
.m1d_c00444{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-ms-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);}
.m8d_c00444{transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);-ms-transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);}
.m39_c00444{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.168609,-0.004552,0.006748,0.249909,0,0);-ms-transform:matrix(0.168609,-0.004552,0.006748,0.249909,0,0);-webkit-transform:matrix(0.168609,-0.004552,0.006748,0.249909,0,0);}
.m20_c00444{transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170080,0.000000,0.000000,0.250000,0,0);}
.mf4_c00444{transform:matrix(0.170103,-0.002041,0.003000,0.249982,0,0);-ms-transform:matrix(0.170103,-0.002041,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170103,-0.002041,0.003000,0.249982,0,0);}
.mb6_c00444{transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.171393,-0.004628,0.006748,0.249909,0,0);-ms-transform:matrix(0.171393,-0.004628,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171393,-0.004628,0.006748,0.249909,0,0);}
.m80_c00444{transform:matrix(0.172327,-0.004653,0.006748,0.249909,0,0);-ms-transform:matrix(0.172327,-0.004653,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172327,-0.004653,0.006748,0.249909,0,0);}
.m7b_c00444{transform:matrix(0.172477,-0.004657,0.006748,0.249909,0,0);-ms-transform:matrix(0.172477,-0.004657,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172477,-0.004657,0.006748,0.249909,0,0);}
.m47_c00444{transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);}
.m97_c00444{transform:matrix(0.172857,-0.004667,0.006748,0.249909,0,0);-ms-transform:matrix(0.172857,-0.004667,0.006748,0.249909,0,0);-webkit-transform:matrix(0.172857,-0.004667,0.006748,0.249909,0,0);}
.meb_c00444{transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173513,-0.002082,0.003000,0.249982,0,0);}
.m55_c00444{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00444{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.173927,-0.004696,0.006748,0.249909,0,0);-ms-transform:matrix(0.173927,-0.004696,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173927,-0.004696,0.006748,0.249909,0,0);}
.mc4_c00444{transform:matrix(0.174935,-0.002274,0.003250,0.249979,0,0);-ms-transform:matrix(0.174935,-0.002274,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174935,-0.002274,0.003250,0.249979,0,0);}
.m38_c00444{transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.175706,-0.004744,0.006748,0.249909,0,0);-ms-transform:matrix(0.175706,-0.004744,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175706,-0.004744,0.006748,0.249909,0,0);}
.m1b_c00444{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m94_c00444{transform:matrix(0.175916,-0.004750,0.006748,0.249909,0,0);-ms-transform:matrix(0.175916,-0.004750,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175916,-0.004750,0.006748,0.249909,0,0);}
.m68_c00444{transform:matrix(0.176351,-0.004761,0.006748,0.249909,0,0);-ms-transform:matrix(0.176351,-0.004761,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176351,-0.004761,0.006748,0.249909,0,0);}
.me1_c00444{transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176462,-0.002118,0.003000,0.249982,0,0);}
.m3b_c00444{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.176706,-0.004771,0.006748,0.249909,0,0);-ms-transform:matrix(0.176706,-0.004771,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176706,-0.004771,0.006748,0.249909,0,0);}
.m95_c00444{transform:matrix(0.177005,-0.004779,0.006748,0.249909,0,0);-ms-transform:matrix(0.177005,-0.004779,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177005,-0.004779,0.006748,0.249909,0,0);}
.m2_c00444{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.178340,-0.004815,0.006748,0.249909,0,0);-ms-transform:matrix(0.178340,-0.004815,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178340,-0.004815,0.006748,0.249909,0,0);}
.mc6_c00444{transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);-ms-transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178600,-0.002322,0.003250,0.249979,0,0);}
.m22_c00444{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.179030,-0.004834,0.006748,0.249909,0,0);-ms-transform:matrix(0.179030,-0.004834,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179030,-0.004834,0.006748,0.249909,0,0);}
.ma5_c00444{transform:matrix(0.179441,-0.003230,0.004499,0.249960,0,0);-ms-transform:matrix(0.179441,-0.003230,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179441,-0.003230,0.004499,0.249960,0,0);}
.m4f_c00444{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.me6_c00444{transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179942,-0.002159,0.003000,0.249982,0,0);}
.m7a_c00444{transform:matrix(0.180024,-0.004861,0.006748,0.249909,0,0);-ms-transform:matrix(0.180024,-0.004861,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180024,-0.004861,0.006748,0.249909,0,0);}
.m3e_c00444{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mcf_c00444{transform:matrix(0.180745,-0.002350,0.003250,0.249979,0,0);-ms-transform:matrix(0.180745,-0.002350,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180745,-0.002350,0.003250,0.249979,0,0);}
.m30_c00444{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00444{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.182923,-0.004939,0.006748,0.249909,0,0);-ms-transform:matrix(0.182923,-0.004939,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182923,-0.004939,0.006748,0.249909,0,0);}
.m33_c00444{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.me9_c00444{transform:matrix(0.183037,-0.002196,0.003000,0.249982,0,0);-ms-transform:matrix(0.183037,-0.002196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183037,-0.002196,0.003000,0.249982,0,0);}
.m4_c00444{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183430,0.000000,0.000000,0.250000,0,0);}
.m9f_c00444{transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);-ms-transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);}
.m4a_c00444{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m92_c00444{transform:matrix(0.184528,-0.004982,0.006748,0.249909,0,0);-ms-transform:matrix(0.184528,-0.004982,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184528,-0.004982,0.006748,0.249909,0,0);}
.m5d_c00444{transform:matrix(0.184598,-0.004984,0.006748,0.249909,0,0);-ms-transform:matrix(0.184598,-0.004984,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184598,-0.004984,0.006748,0.249909,0,0);}
.m99_c00444{transform:matrix(0.184998,-0.004995,0.006748,0.249909,0,0);-ms-transform:matrix(0.184998,-0.004995,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184998,-0.004995,0.006748,0.249909,0,0);}
.m87_c00444{transform:matrix(0.185078,-0.004997,0.006748,0.249909,0,0);-ms-transform:matrix(0.185078,-0.004997,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185078,-0.004997,0.006748,0.249909,0,0);}
.m49_c00444{transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);}
.ma2_c00444{transform:matrix(0.185765,-0.003344,0.004499,0.249960,0,0);-ms-transform:matrix(0.185765,-0.003344,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185765,-0.003344,0.004499,0.249960,0,0);}
.m3_c00444{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.186082,-0.005024,0.006748,0.249909,0,0);-ms-transform:matrix(0.186082,-0.005024,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186082,-0.005024,0.006748,0.249909,0,0);}
.m73_c00444{transform:matrix(0.186107,-0.005025,0.006748,0.249909,0,0);-ms-transform:matrix(0.186107,-0.005025,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186107,-0.005025,0.006748,0.249909,0,0);}
.mec_c00444{transform:matrix(0.186312,-0.002236,0.003000,0.249982,0,0);-ms-transform:matrix(0.186312,-0.002236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186312,-0.002236,0.003000,0.249982,0,0);}
.m8e_c00444{transform:matrix(0.186312,-0.005030,0.006748,0.249909,0,0);-ms-transform:matrix(0.186312,-0.005030,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186312,-0.005030,0.006748,0.249909,0,0);}
.md3_c00444{transform:matrix(0.186384,-0.002423,0.003250,0.249979,0,0);-ms-transform:matrix(0.186384,-0.002423,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186384,-0.002423,0.003250,0.249979,0,0);}
.m5e_c00444{transform:matrix(0.186667,-0.005040,0.006748,0.249909,0,0);-ms-transform:matrix(0.186667,-0.005040,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186667,-0.005040,0.006748,0.249909,0,0);}
.mb1_c00444{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.187032,-0.005050,0.006748,0.249909,0,0);-ms-transform:matrix(0.187032,-0.005050,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187032,-0.005050,0.006748,0.249909,0,0);}
.m56_c00444{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);}
.mc3_c00444{transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187779,-0.002441,0.003250,0.249979,0,0);}
.m1c_c00444{transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.188120,-0.003386,0.004499,0.249960,0,0);-ms-transform:matrix(0.188120,-0.003386,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188120,-0.003386,0.004499,0.249960,0,0);}
.m3d_c00444{transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188395,0.000000,0.000000,0.250000,0,0);}
.mc5_c00444{transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);-ms-transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188454,-0.002450,0.003250,0.249979,0,0);}
.m6f_c00444{transform:matrix(0.188521,-0.005090,0.006748,0.249909,0,0);-ms-transform:matrix(0.188521,-0.005090,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188521,-0.005090,0.006748,0.249909,0,0);}
.m0_c00444{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00444{transform:matrix(0.189059,-0.003403,0.004499,0.249960,0,0);-ms-transform:matrix(0.189059,-0.003403,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189059,-0.003403,0.004499,0.249960,0,0);}
.md5_c00444{transform:matrix(0.189219,-0.002460,0.003250,0.249979,0,0);-ms-transform:matrix(0.189219,-0.002460,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189219,-0.002460,0.003250,0.249979,0,0);}
.m6d_c00444{transform:matrix(0.189241,-0.005110,0.006748,0.249909,0,0);-ms-transform:matrix(0.189241,-0.005110,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189241,-0.005110,0.006748,0.249909,0,0);}
.mf2_c00444{transform:matrix(0.189721,-0.002277,0.003000,0.249982,0,0);-ms-transform:matrix(0.189721,-0.002277,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189721,-0.002277,0.003000,0.249982,0,0);}
.m74_c00444{transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-ms-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190201,-0.005135,0.006748,0.249909,0,0);}
.mcd_c00444{transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190579,-0.002478,0.003250,0.249979,0,0);}
.m51_c00444{transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.190790,-0.005151,0.006748,0.249909,0,0);-ms-transform:matrix(0.190790,-0.005151,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190790,-0.005151,0.006748,0.249909,0,0);}
.m8_c00444{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.mbc_c00444{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.191810,-0.005179,0.006748,0.249909,0,0);-ms-transform:matrix(0.191810,-0.005179,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191810,-0.005179,0.006748,0.249909,0,0);}
.mb5_c00444{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.mb3_c00444{transform:matrix(0.192415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192415,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(0.192800,-0.005206,0.006748,0.249909,0,0);-ms-transform:matrix(0.192800,-0.005206,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192800,-0.005206,0.006748,0.249909,0,0);}
.m88_c00444{transform:matrix(0.192920,-0.005209,0.006748,0.249909,0,0);-ms-transform:matrix(0.192920,-0.005209,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192920,-0.005209,0.006748,0.249909,0,0);}
.m76_c00444{transform:matrix(0.194179,-0.005243,0.006748,0.249909,0,0);-ms-transform:matrix(0.194179,-0.005243,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194179,-0.005243,0.006748,0.249909,0,0);}
.mc9_c00444{transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);-ms-transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194314,-0.002526,0.003250,0.249979,0,0);}
.m21_c00444{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.195809,-0.005287,0.006748,0.249909,0,0);-ms-transform:matrix(0.195809,-0.005287,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195809,-0.005287,0.006748,0.249909,0,0);}
.m96_c00444{transform:matrix(0.195904,-0.005289,0.006748,0.249909,0,0);-ms-transform:matrix(0.195904,-0.005289,0.006748,0.249909,0,0);-webkit-transform:matrix(0.195904,-0.005289,0.006748,0.249909,0,0);}
.m37_c00444{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.196778,-0.005313,0.006748,0.249909,0,0);-ms-transform:matrix(0.196778,-0.005313,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196778,-0.005313,0.006748,0.249909,0,0);}
.m41_c00444{transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196880,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.mae_c00444{transform:matrix(0.197778,-0.003560,0.004499,0.249960,0,0);-ms-transform:matrix(0.197778,-0.003560,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197778,-0.003560,0.004499,0.249960,0,0);}
.m79_c00444{transform:matrix(0.197918,-0.005344,0.006748,0.249909,0,0);-ms-transform:matrix(0.197918,-0.005344,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197918,-0.005344,0.006748,0.249909,0,0);}
.mdf_c00444{transform:matrix(0.197991,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.197991,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197991,-0.002376,0.003000,0.249982,0,0);}
.mbb_c00444{transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198110,0.000000,0.000000,0.250000,0,0);}
.mf3_c00444{transform:matrix(0.199651,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199651,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199651,-0.002396,0.003000,0.249982,0,0);}
.m46_c00444{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mc0_c00444{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00444{transform:matrix(0.201487,-0.003627,0.004499,0.249960,0,0);-ms-transform:matrix(0.201487,-0.003627,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201487,-0.003627,0.004499,0.249960,0,0);}
.m7d_c00444{transform:matrix(0.201492,-0.005440,0.006748,0.249909,0,0);-ms-transform:matrix(0.201492,-0.005440,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201492,-0.005440,0.006748,0.249909,0,0);}
.m7_c00444{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m98_c00444{transform:matrix(0.201821,-0.005449,0.006748,0.249909,0,0);-ms-transform:matrix(0.201821,-0.005449,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201821,-0.005449,0.006748,0.249909,0,0);}
.m82_c00444{transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);-ms-transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202471,-0.005467,0.006748,0.249909,0,0);}
.mda_c00444{transform:matrix(0.202568,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202568,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202568,-0.002633,0.003250,0.249979,0,0);}
.m10_c00444{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.m52_c00444{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.203181,-0.005486,0.006748,0.249909,0,0);-ms-transform:matrix(0.203181,-0.005486,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203181,-0.005486,0.006748,0.249909,0,0);}
.ma4_c00444{transform:matrix(0.203222,-0.003658,0.004499,0.249960,0,0);-ms-transform:matrix(0.203222,-0.003658,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203222,-0.003658,0.004499,0.249960,0,0);}
.m63_c00444{transform:matrix(0.203281,-0.005489,0.006748,0.249909,0,0);-ms-transform:matrix(0.203281,-0.005489,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203281,-0.005489,0.006748,0.249909,0,0);}
.ma3_c00444{transform:matrix(0.203587,-0.003665,0.004499,0.249960,0,0);-ms-transform:matrix(0.203587,-0.003665,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203587,-0.003665,0.004499,0.249960,0,0);}
.m53_c00444{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.mba_c00444{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00444{transform:matrix(0.204623,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204623,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204623,-0.002660,0.003250,0.249979,0,0);}
.m6a_c00444{transform:matrix(0.204870,-0.005531,0.006748,0.249909,0,0);-ms-transform:matrix(0.204870,-0.005531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204870,-0.005531,0.006748,0.249909,0,0);}
.m9c_c00444{transform:matrix(0.204957,-0.003689,0.004499,0.249960,0,0);-ms-transform:matrix(0.204957,-0.003689,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204957,-0.003689,0.004499,0.249960,0,0);}
.m93_c00444{transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-ms-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205125,-0.005538,0.006748,0.249909,0,0);}
.m1a_c00444{transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205170,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);}
.mdc_c00444{transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205483,-0.002671,0.003250,0.249979,0,0);}
.mf_c00444{transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205740,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.205750,-0.005555,0.006748,0.249909,0,0);-ms-transform:matrix(0.205750,-0.005555,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205750,-0.005555,0.006748,0.249909,0,0);}
.m3a_c00444{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.me4_c00444{transform:matrix(0.207060,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207060,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207060,-0.002485,0.003000,0.249982,0,0);}
.me3_c00444{transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);-ms-transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207155,-0.002486,0.003000,0.249982,0,0);}
.mb4_c00444{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m5b_c00444{transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);-ms-transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207339,-0.005598,0.006748,0.249909,0,0);}
.m17_c00444{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.ma1_c00444{transform:matrix(0.209416,-0.003769,0.004499,0.249960,0,0);-ms-transform:matrix(0.209416,-0.003769,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209416,-0.003769,0.004499,0.249960,0,0);}
.md9_c00444{transform:matrix(0.209532,-0.002724,0.003250,0.249979,0,0);-ms-transform:matrix(0.209532,-0.002724,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209532,-0.002724,0.003250,0.249979,0,0);}
.m54_c00444{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.mf0_c00444{transform:matrix(0.209870,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209870,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209870,-0.002518,0.003000,0.249982,0,0);}
.m5a_c00444{transform:matrix(0.209899,-0.005667,0.006748,0.249909,0,0);-ms-transform:matrix(0.209899,-0.005667,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209899,-0.005667,0.006748,0.249909,0,0);}
.m19_c00444{transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210285,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.211438,-0.005709,0.006748,0.249909,0,0);-ms-transform:matrix(0.211438,-0.005709,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211438,-0.005709,0.006748,0.249909,0,0);}
.m4d_c00444{transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211780,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.213192,-0.005756,0.006748,0.249909,0,0);-ms-transform:matrix(0.213192,-0.005756,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213192,-0.005756,0.006748,0.249909,0,0);}
.md_c00444{transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.216121,-0.005835,0.006748,0.249909,0,0);-ms-transform:matrix(0.216121,-0.005835,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216121,-0.005835,0.006748,0.249909,0,0);}
.m2e_c00444{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.mf5_c00444{transform:matrix(0.216574,-0.002599,0.003000,0.249982,0,0);-ms-transform:matrix(0.216574,-0.002599,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216574,-0.002599,0.003000,0.249982,0,0);}
.mca_c00444{transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);-ms-transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216932,-0.002820,0.003250,0.249979,0,0);}
.m9d_c00444{transform:matrix(0.217745,-0.003919,0.004499,0.249960,0,0);-ms-transform:matrix(0.217745,-0.003919,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217745,-0.003919,0.004499,0.249960,0,0);}
.mbe_c00444{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.218515,-0.005900,0.006748,0.249909,0,0);-ms-transform:matrix(0.218515,-0.005900,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218515,-0.005900,0.006748,0.249909,0,0);}
.m48_c00444{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00444{transform:matrix(0.219015,-0.003942,0.004499,0.249960,0,0);-ms-transform:matrix(0.219015,-0.003942,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219015,-0.003942,0.004499,0.249960,0,0);}
.ma_c00444{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mf1_c00444{transform:matrix(0.220914,-0.002651,0.003000,0.249982,0,0);-ms-transform:matrix(0.220914,-0.002651,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220914,-0.002651,0.003000,0.249982,0,0);}
.mbd_c00444{transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221405,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.221870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221870,0.000000,0.000000,0.250000,0,0);}
.me2_c00444{transform:matrix(0.222959,-0.002676,0.003000,0.249982,0,0);-ms-transform:matrix(0.222959,-0.002676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222959,-0.002676,0.003000,0.249982,0,0);}
.mcb_c00444{transform:matrix(0.223181,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223181,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223181,-0.002901,0.003250,0.249979,0,0);}
.m4e_c00444{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.mad_c00444{transform:matrix(0.224849,-0.004047,0.004499,0.249960,0,0);-ms-transform:matrix(0.224849,-0.004047,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224849,-0.004047,0.004499,0.249960,0,0);}
.mc7_c00444{transform:matrix(0.226151,-0.002940,0.003250,0.249979,0,0);-ms-transform:matrix(0.226151,-0.002940,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226151,-0.002940,0.003250,0.249979,0,0);}
.ma8_c00444{transform:matrix(0.226803,-0.004082,0.004499,0.249960,0,0);-ms-transform:matrix(0.226803,-0.004082,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226803,-0.004082,0.004499,0.249960,0,0);}
.md6_c00444{transform:matrix(0.227676,-0.002960,0.003250,0.249979,0,0);-ms-transform:matrix(0.227676,-0.002960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227676,-0.002960,0.003250,0.249979,0,0);}
.m86_c00444{transform:matrix(0.228322,-0.006165,0.006748,0.249909,0,0);-ms-transform:matrix(0.228322,-0.006165,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228322,-0.006165,0.006748,0.249909,0,0);}
.me_c00444{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.mdd_c00444{transform:matrix(0.229006,-0.002977,0.003250,0.249979,0,0);-ms-transform:matrix(0.229006,-0.002977,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229006,-0.002977,0.003250,0.249979,0,0);}
.mdb_c00444{transform:matrix(0.229161,-0.002979,0.003250,0.249979,0,0);-ms-transform:matrix(0.229161,-0.002979,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229161,-0.002979,0.003250,0.249979,0,0);}
.m8a_c00444{transform:matrix(0.229206,-0.006189,0.006748,0.249909,0,0);-ms-transform:matrix(0.229206,-0.006189,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229206,-0.006189,0.006748,0.249909,0,0);}
.m2d_c00444{transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229580,0.000000,0.000000,0.250000,0,0);}
.mce_c00444{transform:matrix(0.230331,-0.002994,0.003250,0.249979,0,0);-ms-transform:matrix(0.230331,-0.002994,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230331,-0.002994,0.003250,0.249979,0,0);}
.md2_c00444{transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);-ms-transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230361,-0.002995,0.003250,0.249979,0,0);}
.m29_c00444{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.mab_c00444{transform:matrix(0.232302,-0.004181,0.004499,0.249960,0,0);-ms-transform:matrix(0.232302,-0.004181,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232302,-0.004181,0.004499,0.249960,0,0);}
.m40_c00444{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00444{transform:matrix(0.235322,-0.004236,0.004499,0.249960,0,0);-ms-transform:matrix(0.235322,-0.004236,0.004499,0.249960,0,0);-webkit-transform:matrix(0.235322,-0.004236,0.004499,0.249960,0,0);}
.md1_c00444{transform:matrix(0.236785,-0.003078,0.003250,0.249979,0,0);-ms-transform:matrix(0.236785,-0.003078,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236785,-0.003078,0.003250,0.249979,0,0);}
.m57_c00444{transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{transform:matrix(0.237358,-0.006409,0.006748,0.249909,0,0);-ms-transform:matrix(0.237358,-0.006409,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237358,-0.006409,0.006748,0.249909,0,0);}
.m67_c00444{transform:matrix(0.238108,-0.006429,0.006748,0.249909,0,0);-ms-transform:matrix(0.238108,-0.006429,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238108,-0.006429,0.006748,0.249909,0,0);}
.ma7_c00444{transform:matrix(0.238201,-0.004288,0.004499,0.249960,0,0);-ms-transform:matrix(0.238201,-0.004288,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238201,-0.004288,0.004499,0.249960,0,0);}
.m85_c00444{transform:matrix(0.239363,-0.006463,0.006748,0.249909,0,0);-ms-transform:matrix(0.239363,-0.006463,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239363,-0.006463,0.006748,0.249909,0,0);}
.mac_c00444{transform:matrix(0.239821,-0.004317,0.004499,0.249960,0,0);-ms-transform:matrix(0.239821,-0.004317,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239821,-0.004317,0.004499,0.249960,0,0);}
.maf_c00444{transform:matrix(0.240221,-0.004324,0.004499,0.249960,0,0);-ms-transform:matrix(0.240221,-0.004324,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240221,-0.004324,0.004499,0.249960,0,0);}
.m69_c00444{transform:matrix(0.240282,-0.006488,0.006748,0.249909,0,0);-ms-transform:matrix(0.240282,-0.006488,0.006748,0.249909,0,0);-webkit-transform:matrix(0.240282,-0.006488,0.006748,0.249909,0,0);}
.m84_c00444{transform:matrix(0.241897,-0.006531,0.006748,0.249909,0,0);-ms-transform:matrix(0.241897,-0.006531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241897,-0.006531,0.006748,0.249909,0,0);}
.m3f_c00444{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.ma9_c00444{transform:matrix(0.244780,-0.004406,0.004499,0.249960,0,0);-ms-transform:matrix(0.244780,-0.004406,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244780,-0.004406,0.004499,0.249960,0,0);}
.m2b_c00444{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m83_c00444{transform:matrix(0.249669,-0.006741,0.006748,0.249909,0,0);-ms-transform:matrix(0.249669,-0.006741,0.006748,0.249909,0,0);-webkit-transform:matrix(0.249669,-0.006741,0.006748,0.249909,0,0);}
.maa_c00444{transform:matrix(0.251439,-0.004526,0.004499,0.249960,0,0);-ms-transform:matrix(0.251439,-0.004526,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251439,-0.004526,0.004499,0.249960,0,0);}
.m6b_c00444{transform:matrix(0.251593,-0.006793,0.006748,0.249909,0,0);-ms-transform:matrix(0.251593,-0.006793,0.006748,0.249909,0,0);-webkit-transform:matrix(0.251593,-0.006793,0.006748,0.249909,0,0);}
.mc_c00444{transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);}
.mee_c00444{transform:matrix(0.255162,-0.003062,0.003000,0.249982,0,0);-ms-transform:matrix(0.255162,-0.003062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255162,-0.003062,0.003000,0.249982,0,0);}
.m2f_c00444{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.md4_c00444{transform:matrix(0.256808,-0.003339,0.003250,0.249979,0,0);-ms-transform:matrix(0.256808,-0.003339,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256808,-0.003339,0.003250,0.249979,0,0);}
.m64_c00444{transform:matrix(0.258661,-0.006984,0.006748,0.249909,0,0);-ms-transform:matrix(0.258661,-0.006984,0.006748,0.249909,0,0);-webkit-transform:matrix(0.258661,-0.006984,0.006748,0.249909,0,0);}
.m66_c00444{transform:matrix(0.261430,-0.007059,0.006748,0.249909,0,0);-ms-transform:matrix(0.261430,-0.007059,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261430,-0.007059,0.006748,0.249909,0,0);}
.me5_c00444{transform:matrix(0.266226,-0.003195,0.003000,0.249982,0,0);-ms-transform:matrix(0.266226,-0.003195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266226,-0.003195,0.003000,0.249982,0,0);}
.md8_c00444{transform:matrix(0.276337,-0.003592,0.003250,0.249979,0,0);-ms-transform:matrix(0.276337,-0.003592,0.003250,0.249979,0,0);-webkit-transform:matrix(0.276337,-0.003592,0.003250,0.249979,0,0);}
.m65_c00444{transform:matrix(0.283182,-0.007646,0.006748,0.249909,0,0);-ms-transform:matrix(0.283182,-0.007646,0.006748,0.249909,0,0);-webkit-transform:matrix(0.283182,-0.007646,0.006748,0.249909,0,0);}
.md7_c00444{transform:matrix(0.300355,-0.003905,0.003250,0.249979,0,0);-ms-transform:matrix(0.300355,-0.003905,0.003250,0.249979,0,0);-webkit-transform:matrix(0.300355,-0.003905,0.003250,0.249979,0,0);}
.mf6_c00444{transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);}
.me0_c00444{transform:matrix(0.328091,-0.003937,0.003000,0.249982,0,0);-ms-transform:matrix(0.328091,-0.003937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328091,-0.003937,0.003000,0.249982,0,0);}
.m26_c00444{transform:matrix(0.355670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355670,0.000000,0.000000,0.250000,0,0);}
.mc8_c00444{transform:matrix(0.423919,-0.005511,0.003250,0.249979,0,0);-ms-transform:matrix(0.423919,-0.005511,0.003250,0.249979,0,0);-webkit-transform:matrix(0.423919,-0.005511,0.003250,0.249979,0,0);}
.m58_c00444{transform:matrix(0.431543,-0.011652,0.006748,0.249909,0,0);-ms-transform:matrix(0.431543,-0.011652,0.006748,0.249909,0,0);-webkit-transform:matrix(0.431543,-0.011652,0.006748,0.249909,0,0);}
.mc1_c00444{transform:matrix(0.458311,-0.005958,0.003250,0.249979,0,0);-ms-transform:matrix(0.458311,-0.005958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.458311,-0.005958,0.003250,0.249979,0,0);}
.m9_c00444{transform:matrix(0.464385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464385,0.000000,0.000000,0.250000,0,0);}
.me7_c00444{transform:matrix(0.666807,-0.008002,0.003000,0.249982,0,0);-ms-transform:matrix(0.666807,-0.008002,0.003000,0.249982,0,0);-webkit-transform:matrix(0.666807,-0.008002,0.003000,0.249982,0,0);}
.mde_c00444{transform:matrix(0.907555,-0.010891,0.003000,0.249982,0,0);-ms-transform:matrix(0.907555,-0.010891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.907555,-0.010891,0.003000,0.249982,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:0.000000px;}
.fc0_c00444{color:transparent;}
.fs1a_c00444{font-size:22.050000px;}
.fsb_c00444{font-size:50.418367px;}
.fs15_c00444{font-size:55.654702px;}
.fs12_c00444{font-size:55.659015px;}
.fsf_c00444{font-size:55.670281px;}
.fs6_c00444{font-size:57.750000px;}
.fsd_c00444{font-size:58.821429px;}
.fs8_c00444{font-size:59.850000px;}
.fs17_c00444{font-size:59.854309px;}
.fs3_c00444{font-size:60.900000px;}
.fs16_c00444{font-size:60.905146px;}
.fs11_c00444{font-size:60.909865px;}
.fs10_c00444{font-size:60.922194px;}
.fs2_c00444{font-size:61.950000px;}
.fs4_c00444{font-size:63.000000px;}
.fs19_c00444{font-size:63.004536px;}
.fs14_c00444{font-size:63.005323px;}
.fse_c00444{font-size:63.022959px;}
.fs7_c00444{font-size:64.050000px;}
.fsa_c00444{font-size:65.123725px;}
.fs0_c00444{font-size:66.150000px;}
.fsc_c00444{font-size:66.174107px;}
.fs1_c00444{font-size:67.200000px;}
.fs18_c00444{font-size:67.204838px;}
.fs9_c00444{font-size:67.224490px;}
.fs5_c00444{font-size:69.300000px;}
.fs13_c00444{font-size:69.305856px;}
.y0_c00444{bottom:0.000000px;}
.ye6_c00444{bottom:5.670000px;}
.ydf_c00444{bottom:31.985508px;}
.ye1_c00444{bottom:31.985934px;}
.ye0_c00444{bottom:31.986030px;}
.ye2_c00444{bottom:31.986198px;}
.ye5_c00444{bottom:31.986270px;}
.ye4_c00444{bottom:31.986288px;}
.ye3_c00444{bottom:31.986600px;}
.yd7_c00444{bottom:45.900552px;}
.yd8_c00444{bottom:47.035740px;}
.yd9_c00444{bottom:47.325774px;}
.yda_c00444{bottom:48.161772px;}
.ydb_c00444{bottom:48.486258px;}
.ydc_c00444{bottom:49.285338px;}
.ydd_c00444{bottom:50.029212px;}
.yde_c00444{bottom:50.361048px;}
.yce_c00444{bottom:64.261500px;}
.ycf_c00444{bottom:64.883310px;}
.yd0_c00444{bottom:65.365926px;}
.yd1_c00444{bottom:65.521590px;}
.yd2_c00444{bottom:65.802786px;}
.yd3_c00444{bottom:66.344406px;}
.yd4_c00444{bottom:66.587622px;}
.yd5_c00444{bottom:67.157268px;}
.yd6_c00444{bottom:67.432650px;}
.ycd_c00444{bottom:83.099519px;}
.ycc_c00444{bottom:83.099688px;}
.ycb_c00444{bottom:83.100017px;}
.yca_c00444{bottom:83.100545px;}
.yc9_c00444{bottom:83.101043px;}
.yc8_c00444{bottom:83.101071px;}
.yc0_c00444{bottom:97.196015px;}
.yc1_c00444{bottom:97.620909px;}
.yc2_c00444{bottom:98.028411px;}
.yc3_c00444{bottom:98.894598px;}
.yc4_c00444{bottom:99.101790px;}
.yc5_c00444{bottom:99.778802px;}
.yc6_c00444{bottom:100.130166px;}
.yc7_c00444{bottom:101.192879px;}
.yb9_c00444{bottom:115.657791px;}
.ybd_c00444{bottom:115.657896px;}
.yba_c00444{bottom:115.658072px;}
.ybc_c00444{bottom:115.658145px;}
.ybe_c00444{bottom:115.658147px;}
.ybb_c00444{bottom:115.658163px;}
.ybf_c00444{bottom:115.658277px;}
.yb8_c00444{bottom:115.658310px;}
.yb1_c00444{bottom:131.221500px;}
.yb2_c00444{bottom:131.688739px;}
.yb3_c00444{bottom:132.393041px;}
.yb4_c00444{bottom:132.775962px;}
.yb5_c00444{bottom:133.401152px;}
.yb6_c00444{bottom:134.113720px;}
.yb7_c00444{bottom:134.402106px;}
.yb0_c00444{bottom:149.806500px;}
.yaf_c00444{bottom:166.657500px;}
.ya7_c00444{bottom:180.630312px;}
.ya8_c00444{bottom:181.005861px;}
.ya9_c00444{bottom:181.313829px;}
.yaa_c00444{bottom:182.246655px;}
.yab_c00444{bottom:183.292170px;}
.yac_c00444{bottom:183.959166px;}
.yad_c00444{bottom:184.276515px;}
.yae_c00444{bottom:184.655775px;}
.ya2_c00444{bottom:199.772328px;}
.ya3_c00444{bottom:199.772832px;}
.ya4_c00444{bottom:199.773438px;}
.ya5_c00444{bottom:199.774023px;}
.ya6_c00444{bottom:199.774260px;}
.y99_c00444{bottom:215.194500px;}
.y9a_c00444{bottom:215.607627px;}
.y9b_c00444{bottom:216.511695px;}
.y9c_c00444{bottom:216.871362px;}
.y9d_c00444{bottom:217.668618px;}
.y9e_c00444{bottom:218.123892px;}
.y9f_c00444{bottom:218.517579px;}
.ya0_c00444{bottom:219.134691px;}
.ya1_c00444{bottom:219.763008px;}
.y94_c00444{bottom:232.959683px;}
.y95_c00444{bottom:233.708643px;}
.y96_c00444{bottom:234.264395px;}
.y97_c00444{bottom:234.590118px;}
.y98_c00444{bottom:235.410170px;}
.y93_c00444{bottom:251.152398px;}
.y92_c00444{bottom:251.153141px;}
.y90_c00444{bottom:251.153237px;}
.y91_c00444{bottom:251.153745px;}
.y8f_c00444{bottom:251.153774px;}
.y8e_c00444{bottom:251.154339px;}
.y8d_c00444{bottom:251.154714px;}
.y8c_c00444{bottom:251.155247px;}
.y8a_c00444{bottom:251.155842px;}
.y8b_c00444{bottom:251.155989px;}
.y81_c00444{bottom:268.347737px;}
.y82_c00444{bottom:268.889598px;}
.y83_c00444{bottom:269.526074px;}
.y84_c00444{bottom:269.834357px;}
.y85_c00444{bottom:270.494385px;}
.y86_c00444{bottom:270.915126px;}
.y87_c00444{bottom:271.300499px;}
.y88_c00444{bottom:271.583894px;}
.y89_c00444{bottom:272.263992px;}
.y78_c00444{bottom:284.286440px;}
.y79_c00444{bottom:284.663889px;}
.y7a_c00444{bottom:285.018099px;}
.y7b_c00444{bottom:285.630690px;}
.y7c_c00444{bottom:286.646115px;}
.y7d_c00444{bottom:287.986076px;}
.y7e_c00444{bottom:288.314861px;}
.y7f_c00444{bottom:289.341015px;}
.y80_c00444{bottom:289.805105px;}
.y71_c00444{bottom:303.430082px;}
.y72_c00444{bottom:303.430678px;}
.y73_c00444{bottom:303.431173px;}
.y75_c00444{bottom:303.431556px;}
.y77_c00444{bottom:303.431655px;}
.y74_c00444{bottom:303.431790px;}
.y76_c00444{bottom:303.431928px;}
.y6b_c00444{bottom:318.313965px;}
.y6c_c00444{bottom:319.249457px;}
.y6d_c00444{bottom:319.804227px;}
.y6e_c00444{bottom:320.255442px;}
.y6f_c00444{bottom:321.107004px;}
.y70_c00444{bottom:322.114971px;}
.y63_c00444{bottom:333.713688px;}
.y64_c00444{bottom:333.968253px;}
.y65_c00444{bottom:335.317002px;}
.y66_c00444{bottom:336.313966px;}
.y67_c00444{bottom:337.650649px;}
.y68_c00444{bottom:338.044868px;}
.y69_c00444{bottom:339.244731px;}
.y6a_c00444{bottom:339.646116px;}
.y5c_c00444{bottom:349.114620px;}
.y5d_c00444{bottom:349.787218px;}
.y5e_c00444{bottom:351.616290px;}
.y5f_c00444{bottom:352.143579px;}
.y60_c00444{bottom:352.953183px;}
.y61_c00444{bottom:354.441501px;}
.y62_c00444{bottom:355.095632px;}
.y57_c00444{bottom:366.138000px;}
.y58_c00444{bottom:368.215083px;}
.y59_c00444{bottom:369.732051px;}
.y5a_c00444{bottom:372.557777px;}
.y5b_c00444{bottom:372.925881px;}
.y56_c00444{bottom:384.772500px;}
.y4d_c00444{bottom:401.221500px;}
.y4e_c00444{bottom:401.833500px;}
.y4f_c00444{bottom:402.051000px;}
.y50_c00444{bottom:402.927000px;}
.y51_c00444{bottom:403.131000px;}
.y52_c00444{bottom:403.423500px;}
.y53_c00444{bottom:404.206500px;}
.y54_c00444{bottom:405.192000px;}
.y55_c00444{bottom:405.520500px;}
.y43_c00444{bottom:416.886000px;}
.y44_c00444{bottom:417.606000px;}
.y45_c00444{bottom:417.997500px;}
.y46_c00444{bottom:418.956000px;}
.y47_c00444{bottom:419.289000px;}
.y48_c00444{bottom:420.100500px;}
.y49_c00444{bottom:420.475500px;}
.y4a_c00444{bottom:421.248000px;}
.y4b_c00444{bottom:421.501500px;}
.y4c_c00444{bottom:422.235000px;}
.y3a_c00444{bottom:433.626000px;}
.y3b_c00444{bottom:433.819500px;}
.y3c_c00444{bottom:434.386500px;}
.y3d_c00444{bottom:435.148500px;}
.y3e_c00444{bottom:435.462000px;}
.y3f_c00444{bottom:436.423500px;}
.y40_c00444{bottom:437.373000px;}
.y41_c00444{bottom:437.853000px;}
.y42_c00444{bottom:438.796500px;}
.y31_c00444{bottom:450.096000px;}
.y32_c00444{bottom:450.358500px;}
.y33_c00444{bottom:451.536000px;}
.y34_c00444{bottom:452.304000px;}
.y35_c00444{bottom:453.069000px;}
.y36_c00444{bottom:453.262500px;}
.y37_c00444{bottom:454.173000px;}
.y38_c00444{bottom:454.458000px;}
.y39_c00444{bottom:455.461500px;}
.y28_c00444{bottom:467.914500px;}
.y29_c00444{bottom:468.877500px;}
.y2a_c00444{bottom:469.264500px;}
.y2b_c00444{bottom:469.573500px;}
.y2c_c00444{bottom:470.517000px;}
.y2d_c00444{bottom:470.871000px;}
.y2e_c00444{bottom:471.813000px;}
.y2f_c00444{bottom:472.149000px;}
.y30_c00444{bottom:473.211000px;}
.y1e_c00444{bottom:483.040500px;}
.y1f_c00444{bottom:483.579000px;}
.y20_c00444{bottom:484.173000px;}
.y21_c00444{bottom:484.870500px;}
.y22_c00444{bottom:486.252000px;}
.y23_c00444{bottom:486.606000px;}
.y24_c00444{bottom:487.153500px;}
.y25_c00444{bottom:488.013000px;}
.y26_c00444{bottom:489.295500px;}
.y27_c00444{bottom:489.886500px;}
.y17_c00444{bottom:498.162000px;}
.y18_c00444{bottom:499.002000px;}
.y19_c00444{bottom:499.947000px;}
.y1a_c00444{bottom:502.315500px;}
.y1b_c00444{bottom:504.004500px;}
.y1c_c00444{bottom:505.477500px;}
.y1d_c00444{bottom:506.130000px;}
.y13_c00444{bottom:517.867500px;}
.y14_c00444{bottom:518.863500px;}
.y15_c00444{bottom:521.503500px;}
.y16_c00444{bottom:523.687500px;}
.ya_c00444{bottom:534.876000px;}
.yb_c00444{bottom:535.383000px;}
.yc_c00444{bottom:535.710000px;}
.yd_c00444{bottom:536.449500px;}
.ye_c00444{bottom:537.747000px;}
.yf_c00444{bottom:539.181000px;}
.y10_c00444{bottom:539.515500px;}
.y11_c00444{bottom:541.219500px;}
.y12_c00444{bottom:541.674000px;}
.y2_c00444{bottom:551.889000px;}
.y3_c00444{bottom:552.879000px;}
.y4_c00444{bottom:554.121000px;}
.y5_c00444{bottom:554.560500px;}
.y6_c00444{bottom:555.685500px;}
.y7_c00444{bottom:556.153500px;}
.y8_c00444{bottom:557.254500px;}
.y9_c00444{bottom:558.340500px;}
.y1_c00444{bottom:569.428500px;}
.h1b_c00444{height:22.050000px;}
.hc_c00444{height:50.418367px;}
.h16_c00444{height:55.654702px;}
.h13_c00444{height:55.659015px;}
.h10_c00444{height:55.670281px;}
.h7_c00444{height:57.750000px;}
.he_c00444{height:58.821429px;}
.h9_c00444{height:59.850000px;}
.h18_c00444{height:59.854309px;}
.h4_c00444{height:60.900000px;}
.h17_c00444{height:60.905146px;}
.h12_c00444{height:60.909865px;}
.h11_c00444{height:60.922194px;}
.h3_c00444{height:61.950000px;}
.h5_c00444{height:63.000000px;}
.h1a_c00444{height:63.004536px;}
.h15_c00444{height:63.005323px;}
.hf_c00444{height:63.022959px;}
.h8_c00444{height:64.050000px;}
.hb_c00444{height:65.123725px;}
.h1_c00444{height:66.150000px;}
.hd_c00444{height:66.174107px;}
.h2_c00444{height:67.200000px;}
.h19_c00444{height:67.204838px;}
.ha_c00444{height:67.224490px;}
.h6_c00444{height:69.300000px;}
.h14_c00444{height:69.305856px;}
.h0_c00444{height:608.250000px;}
.w0_c00444{width:359.100000px;}
.w1_c00444{width:359.250000px;}
.x0_c00444{left:0.000000px;}
.x2_c00444{left:12.231000px;}
.x33_c00444{left:13.708500px;}
.x2a_c00444{left:16.666500px;}
.x67_c00444{left:18.090000px;}
.x12_c00444{left:19.515000px;}
.x63_c00444{left:21.330000px;}
.x34_c00444{left:23.403000px;}
.x2b_c00444{left:29.131500px;}
.xa_c00444{left:32.665500px;}
.x44_c00444{left:36.025500px;}
.x58_c00444{left:37.535853px;}
.x16_c00444{left:38.542500px;}
.x6f_c00444{left:43.592292px;}
.xb_c00444{left:45.772500px;}
.x54_c00444{left:49.032769px;}
.x42_c00444{left:50.220000px;}
.x3_c00444{left:51.829500px;}
.x1c_c00444{left:54.723000px;}
.x13_c00444{left:57.801000px;}
.x5e_c00444{left:59.359500px;}
.x22_c00444{left:63.826500px;}
.x17_c00444{left:67.176000px;}
.x73_c00444{left:69.538500px;}
.x39_c00444{left:72.334500px;}
.xc_c00444{left:75.325500px;}
.x59_c00444{left:77.239810px;}
.x1d_c00444{left:80.536500px;}
.x50_c00444{left:81.831219px;}
.x23_c00444{left:84.177000px;}
.x2c_c00444{left:85.221000px;}
.x61_c00444{left:88.026219px;}
.x35_c00444{left:89.872500px;}
.x55_c00444{left:91.452999px;}
.x24_c00444{left:100.407000px;}
.x4_c00444{left:101.505000px;}
.x69_c00444{left:103.776000px;}
.x36_c00444{left:105.553500px;}
.x48_c00444{left:108.740271px;}
.x62_c00444{left:109.900293px;}
.x4e_c00444{left:111.931896px;}
.x45_c00444{left:112.954500px;}
.x5_c00444{left:119.085000px;}
.x2d_c00444{left:121.768500px;}
.x3a_c00444{left:122.817000px;}
.x43_c00444{left:125.820000px;}
.xd_c00444{left:127.221000px;}
.x49_c00444{left:129.047838px;}
.x4a_c00444{left:130.638585px;}
.x1e_c00444{left:131.689500px;}
.x6a_c00444{left:133.231500px;}
.x70_c00444{left:134.644122px;}
.x18_c00444{left:138.936000px;}
.x3b_c00444{left:140.329500px;}
.x4f_c00444{left:141.986616px;}
.x1f_c00444{left:144.793500px;}
.x74_c00444{left:146.161500px;}
.x25_c00444{left:150.079500px;}
.x37_c00444{left:153.627000px;}
.x1_c00444{left:154.710000px;}
.x56_c00444{left:155.948356px;}
.x2e_c00444{left:158.197500px;}
.x14_c00444{left:159.364500px;}
.x6_c00444{left:164.079000px;}
.x5a_c00444{left:166.103070px;}
.x2f_c00444{left:167.401500px;}
.x26_c00444{left:168.694500px;}
.x5f_c00444{left:173.859000px;}
.x64_c00444{left:179.550000px;}
.x6b_c00444{left:181.323000px;}
.x7_c00444{left:182.826000px;}
.xe_c00444{left:184.594500px;}
.x5d_c00444{left:187.891710px;}
.x19_c00444{left:190.126500px;}
.x4b_c00444{left:191.375766px;}
.x20_c00444{left:196.902000px;}
.xf_c00444{left:197.985000px;}
.x3f_c00444{left:199.180500px;}
.x38_c00444{left:201.133500px;}
.x3c_c00444{left:202.738500px;}
.x65_c00444{left:208.170000px;}
.x4c_c00444{left:209.312196px;}
.x30_c00444{left:210.756000px;}
.x52_c00444{left:214.416646px;}
.x27_c00444{left:218.293500px;}
.x5b_c00444{left:222.012813px;}
.x31_c00444{left:224.340000px;}
.x8_c00444{left:226.855500px;}
.x57_c00444{left:228.657427px;}
.x51_c00444{left:233.626284px;}
.x1a_c00444{left:234.762000px;}
.x28_c00444{left:235.945500px;}
.x6d_c00444{left:237.889681px;}
.x68_c00444{left:239.760000px;}
.x15_c00444{left:243.355500px;}
.x21_c00444{left:244.395000px;}
.x66_c00444{left:246.240000px;}
.x1b_c00444{left:254.512500px;}
.x3d_c00444{left:256.729500px;}
.x6c_c00444{left:258.319500px;}
.x40_c00444{left:260.742000px;}
.x75_c00444{left:261.917406px;}
.x4d_c00444{left:263.870067px;}
.x10_c00444{left:266.151000px;}
.x9_c00444{left:270.312000px;}
.x32_c00444{left:272.137500px;}
.x46_c00444{left:273.795000px;}
.x6e_c00444{left:276.233155px;}
.x41_c00444{left:281.265000px;}
.x72_c00444{left:283.253034px;}
.x11_c00444{left:284.350500px;}
.x47_c00444{left:287.428500px;}
.x53_c00444{left:288.902700px;}
.x60_c00444{left:290.214000px;}
.x29_c00444{left:291.841500px;}
.x5c_c00444{left:293.589477px;}
.x3e_c00444{left:295.345500px;}
.x71_c00444{left:298.740477px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.fs1a_c00444{font-size:19.600000pt;}
.fsb_c00444{font-size:44.816327pt;}
.fs15_c00444{font-size:49.470846pt;}
.fs12_c00444{font-size:49.474680pt;}
.fsf_c00444{font-size:49.484694pt;}
.fs6_c00444{font-size:51.333333pt;}
.fsd_c00444{font-size:52.285714pt;}
.fs8_c00444{font-size:53.200000pt;}
.fs17_c00444{font-size:53.203830pt;}
.fs3_c00444{font-size:54.133333pt;}
.fs16_c00444{font-size:54.137907pt;}
.fs11_c00444{font-size:54.142102pt;}
.fs10_c00444{font-size:54.153061pt;}
.fs2_c00444{font-size:55.066667pt;}
.fs4_c00444{font-size:56.000000pt;}
.fs19_c00444{font-size:56.004032pt;}
.fs14_c00444{font-size:56.004732pt;}
.fse_c00444{font-size:56.020408pt;}
.fs7_c00444{font-size:56.933333pt;}
.fsa_c00444{font-size:57.887755pt;}
.fs0_c00444{font-size:58.800000pt;}
.fsc_c00444{font-size:58.821429pt;}
.fs1_c00444{font-size:59.733333pt;}
.fs18_c00444{font-size:59.737634pt;}
.fs9_c00444{font-size:59.755102pt;}
.fs5_c00444{font-size:61.600000pt;}
.fs13_c00444{font-size:61.605205pt;}
.y0_c00444{bottom:0.000000pt;}
.ye6_c00444{bottom:5.040000pt;}
.ydf_c00444{bottom:28.431563pt;}
.ye1_c00444{bottom:28.431941pt;}
.ye0_c00444{bottom:28.432027pt;}
.ye2_c00444{bottom:28.432176pt;}
.ye5_c00444{bottom:28.432240pt;}
.ye4_c00444{bottom:28.432256pt;}
.ye3_c00444{bottom:28.432533pt;}
.yd7_c00444{bottom:40.800491pt;}
.yd8_c00444{bottom:41.809547pt;}
.yd9_c00444{bottom:42.067355pt;}
.yda_c00444{bottom:42.810464pt;}
.ydb_c00444{bottom:43.098896pt;}
.ydc_c00444{bottom:43.809189pt;}
.ydd_c00444{bottom:44.470411pt;}
.yde_c00444{bottom:44.765376pt;}
.yce_c00444{bottom:57.121333pt;}
.ycf_c00444{bottom:57.674053pt;}
.yd0_c00444{bottom:58.103045pt;}
.yd1_c00444{bottom:58.241413pt;}
.yd2_c00444{bottom:58.491365pt;}
.yd3_c00444{bottom:58.972805pt;}
.yd4_c00444{bottom:59.188997pt;}
.yd5_c00444{bottom:59.695349pt;}
.yd6_c00444{bottom:59.940133pt;}
.ycd_c00444{bottom:73.866239pt;}
.ycc_c00444{bottom:73.866389pt;}
.ycb_c00444{bottom:73.866681pt;}
.yca_c00444{bottom:73.867151pt;}
.yc9_c00444{bottom:73.867593pt;}
.yc8_c00444{bottom:73.867619pt;}
.yc0_c00444{bottom:86.396457pt;}
.yc1_c00444{bottom:86.774141pt;}
.yc2_c00444{bottom:87.136365pt;}
.yc3_c00444{bottom:87.906309pt;}
.yc4_c00444{bottom:88.090480pt;}
.yc5_c00444{bottom:88.692268pt;}
.yc6_c00444{bottom:89.004592pt;}
.yc7_c00444{bottom:89.949225pt;}
.yb9_c00444{bottom:102.806925pt;}
.ybd_c00444{bottom:102.807019pt;}
.yba_c00444{bottom:102.807175pt;}
.ybc_c00444{bottom:102.807240pt;}
.ybe_c00444{bottom:102.807241pt;}
.ybb_c00444{bottom:102.807256pt;}
.ybf_c00444{bottom:102.807357pt;}
.yb8_c00444{bottom:102.807387pt;}
.yb1_c00444{bottom:116.641333pt;}
.yb2_c00444{bottom:117.056657pt;}
.yb3_c00444{bottom:117.682703pt;}
.yb4_c00444{bottom:118.023077pt;}
.yb5_c00444{bottom:118.578801pt;}
.yb6_c00444{bottom:119.212196pt;}
.yb7_c00444{bottom:119.468539pt;}
.yb0_c00444{bottom:133.161333pt;}
.yaf_c00444{bottom:148.140000pt;}
.ya7_c00444{bottom:160.560277pt;}
.ya8_c00444{bottom:160.894099pt;}
.ya9_c00444{bottom:161.167848pt;}
.yaa_c00444{bottom:161.997027pt;}
.yab_c00444{bottom:162.926373pt;}
.yac_c00444{bottom:163.519259pt;}
.yad_c00444{bottom:163.801347pt;}
.yae_c00444{bottom:164.138467pt;}
.ya2_c00444{bottom:177.575403pt;}
.ya3_c00444{bottom:177.575851pt;}
.ya4_c00444{bottom:177.576389pt;}
.ya5_c00444{bottom:177.576909pt;}
.ya6_c00444{bottom:177.577120pt;}
.y99_c00444{bottom:191.284000pt;}
.y9a_c00444{bottom:191.651224pt;}
.y9b_c00444{bottom:192.454840pt;}
.y9c_c00444{bottom:192.774544pt;}
.y9d_c00444{bottom:193.483216pt;}
.y9e_c00444{bottom:193.887904pt;}
.y9f_c00444{bottom:194.237848pt;}
.ya0_c00444{bottom:194.786392pt;}
.ya1_c00444{bottom:195.344896pt;}
.y94_c00444{bottom:207.075273pt;}
.y95_c00444{bottom:207.741016pt;}
.y96_c00444{bottom:208.235017pt;}
.y97_c00444{bottom:208.524549pt;}
.y98_c00444{bottom:209.253484pt;}
.y93_c00444{bottom:223.246576pt;}
.y92_c00444{bottom:223.247236pt;}
.y90_c00444{bottom:223.247321pt;}
.y91_c00444{bottom:223.247773pt;}
.y8f_c00444{bottom:223.247799pt;}
.y8e_c00444{bottom:223.248301pt;}
.y8d_c00444{bottom:223.248635pt;}
.y8c_c00444{bottom:223.249108pt;}
.y8a_c00444{bottom:223.249637pt;}
.y8b_c00444{bottom:223.249768pt;}
.y81_c00444{bottom:238.531321pt;}
.y82_c00444{bottom:239.012976pt;}
.y83_c00444{bottom:239.578732pt;}
.y84_c00444{bottom:239.852761pt;}
.y85_c00444{bottom:240.439453pt;}
.y86_c00444{bottom:240.813445pt;}
.y87_c00444{bottom:241.155999pt;}
.y88_c00444{bottom:241.407905pt;}
.y89_c00444{bottom:242.012437pt;}
.y78_c00444{bottom:252.699057pt;}
.y79_c00444{bottom:253.034568pt;}
.y7a_c00444{bottom:253.349421pt;}
.y7b_c00444{bottom:253.893947pt;}
.y7c_c00444{bottom:254.796547pt;}
.y7d_c00444{bottom:255.987623pt;}
.y7e_c00444{bottom:256.279876pt;}
.y7f_c00444{bottom:257.192013pt;}
.y80_c00444{bottom:257.604537pt;}
.y71_c00444{bottom:269.715628pt;}
.y72_c00444{bottom:269.716159pt;}
.y73_c00444{bottom:269.716599pt;}
.y75_c00444{bottom:269.716939pt;}
.y77_c00444{bottom:269.717027pt;}
.y74_c00444{bottom:269.717147pt;}
.y76_c00444{bottom:269.717269pt;}
.y6b_c00444{bottom:282.945747pt;}
.y6c_c00444{bottom:283.777295pt;}
.y6d_c00444{bottom:284.270424pt;}
.y6e_c00444{bottom:284.671504pt;}
.y6f_c00444{bottom:285.428448pt;}
.y70_c00444{bottom:286.324419pt;}
.y63_c00444{bottom:296.634389pt;}
.y64_c00444{bottom:296.860669pt;}
.y65_c00444{bottom:298.059557pt;}
.y66_c00444{bottom:298.945748pt;}
.y67_c00444{bottom:300.133911pt;}
.y68_c00444{bottom:300.484327pt;}
.y69_c00444{bottom:301.550872pt;}
.y6a_c00444{bottom:301.907659pt;}
.y5c_c00444{bottom:310.324107pt;}
.y5d_c00444{bottom:310.921972pt;}
.y5e_c00444{bottom:312.547813pt;}
.y5f_c00444{bottom:313.016515pt;}
.y60_c00444{bottom:313.736163pt;}
.y61_c00444{bottom:315.059112pt;}
.y62_c00444{bottom:315.640561pt;}
.y57_c00444{bottom:325.456000pt;}
.y58_c00444{bottom:327.302296pt;}
.y59_c00444{bottom:328.650712pt;}
.y5a_c00444{bottom:331.162468pt;}
.y5b_c00444{bottom:331.489672pt;}
.y56_c00444{bottom:342.020000pt;}
.y4d_c00444{bottom:356.641333pt;}
.y4e_c00444{bottom:357.185333pt;}
.y4f_c00444{bottom:357.378667pt;}
.y50_c00444{bottom:358.157333pt;}
.y51_c00444{bottom:358.338667pt;}
.y52_c00444{bottom:358.598667pt;}
.y53_c00444{bottom:359.294667pt;}
.y54_c00444{bottom:360.170667pt;}
.y55_c00444{bottom:360.462667pt;}
.y43_c00444{bottom:370.565333pt;}
.y44_c00444{bottom:371.205333pt;}
.y45_c00444{bottom:371.553333pt;}
.y46_c00444{bottom:372.405333pt;}
.y47_c00444{bottom:372.701333pt;}
.y48_c00444{bottom:373.422667pt;}
.y49_c00444{bottom:373.756000pt;}
.y4a_c00444{bottom:374.442667pt;}
.y4b_c00444{bottom:374.668000pt;}
.y4c_c00444{bottom:375.320000pt;}
.y3a_c00444{bottom:385.445333pt;}
.y3b_c00444{bottom:385.617333pt;}
.y3c_c00444{bottom:386.121333pt;}
.y3d_c00444{bottom:386.798667pt;}
.y3e_c00444{bottom:387.077333pt;}
.y3f_c00444{bottom:387.932000pt;}
.y40_c00444{bottom:388.776000pt;}
.y41_c00444{bottom:389.202667pt;}
.y42_c00444{bottom:390.041333pt;}
.y31_c00444{bottom:400.085333pt;}
.y32_c00444{bottom:400.318667pt;}
.y33_c00444{bottom:401.365333pt;}
.y34_c00444{bottom:402.048000pt;}
.y35_c00444{bottom:402.728000pt;}
.y36_c00444{bottom:402.900000pt;}
.y37_c00444{bottom:403.709333pt;}
.y38_c00444{bottom:403.962667pt;}
.y39_c00444{bottom:404.854667pt;}
.y28_c00444{bottom:415.924000pt;}
.y29_c00444{bottom:416.780000pt;}
.y2a_c00444{bottom:417.124000pt;}
.y2b_c00444{bottom:417.398667pt;}
.y2c_c00444{bottom:418.237333pt;}
.y2d_c00444{bottom:418.552000pt;}
.y2e_c00444{bottom:419.389333pt;}
.y2f_c00444{bottom:419.688000pt;}
.y30_c00444{bottom:420.632000pt;}
.y1e_c00444{bottom:429.369333pt;}
.y1f_c00444{bottom:429.848000pt;}
.y20_c00444{bottom:430.376000pt;}
.y21_c00444{bottom:430.996000pt;}
.y22_c00444{bottom:432.224000pt;}
.y23_c00444{bottom:432.538667pt;}
.y24_c00444{bottom:433.025333pt;}
.y25_c00444{bottom:433.789333pt;}
.y26_c00444{bottom:434.929333pt;}
.y27_c00444{bottom:435.454667pt;}
.y17_c00444{bottom:442.810667pt;}
.y18_c00444{bottom:443.557333pt;}
.y19_c00444{bottom:444.397333pt;}
.y1a_c00444{bottom:446.502667pt;}
.y1b_c00444{bottom:448.004000pt;}
.y1c_c00444{bottom:449.313333pt;}
.y1d_c00444{bottom:449.893333pt;}
.y13_c00444{bottom:460.326667pt;}
.y14_c00444{bottom:461.212000pt;}
.y15_c00444{bottom:463.558667pt;}
.y16_c00444{bottom:465.500000pt;}
.ya_c00444{bottom:475.445333pt;}
.yb_c00444{bottom:475.896000pt;}
.yc_c00444{bottom:476.186667pt;}
.yd_c00444{bottom:476.844000pt;}
.ye_c00444{bottom:477.997333pt;}
.yf_c00444{bottom:479.272000pt;}
.y10_c00444{bottom:479.569333pt;}
.y11_c00444{bottom:481.084000pt;}
.y12_c00444{bottom:481.488000pt;}
.y2_c00444{bottom:490.568000pt;}
.y3_c00444{bottom:491.448000pt;}
.y4_c00444{bottom:492.552000pt;}
.y5_c00444{bottom:492.942667pt;}
.y6_c00444{bottom:493.942667pt;}
.y7_c00444{bottom:494.358667pt;}
.y8_c00444{bottom:495.337333pt;}
.y9_c00444{bottom:496.302667pt;}
.y1_c00444{bottom:506.158667pt;}
.h1b_c00444{height:19.600000pt;}
.hc_c00444{height:44.816327pt;}
.h16_c00444{height:49.470846pt;}
.h13_c00444{height:49.474680pt;}
.h10_c00444{height:49.484694pt;}
.h7_c00444{height:51.333333pt;}
.he_c00444{height:52.285714pt;}
.h9_c00444{height:53.200000pt;}
.h18_c00444{height:53.203830pt;}
.h4_c00444{height:54.133333pt;}
.h17_c00444{height:54.137907pt;}
.h12_c00444{height:54.142102pt;}
.h11_c00444{height:54.153061pt;}
.h3_c00444{height:55.066667pt;}
.h5_c00444{height:56.000000pt;}
.h1a_c00444{height:56.004032pt;}
.h15_c00444{height:56.004732pt;}
.hf_c00444{height:56.020408pt;}
.h8_c00444{height:56.933333pt;}
.hb_c00444{height:57.887755pt;}
.h1_c00444{height:58.800000pt;}
.hd_c00444{height:58.821429pt;}
.h2_c00444{height:59.733333pt;}
.h19_c00444{height:59.737634pt;}
.ha_c00444{height:59.755102pt;}
.h6_c00444{height:61.600000pt;}
.h14_c00444{height:61.605205pt;}
.h0_c00444{height:540.666667pt;}
.w0_c00444{width:319.200000pt;}
.w1_c00444{width:319.333333pt;}
.x0_c00444{left:0.000000pt;}
.x2_c00444{left:10.872000pt;}
.x33_c00444{left:12.185333pt;}
.x2a_c00444{left:14.814667pt;}
.x67_c00444{left:16.080000pt;}
.x12_c00444{left:17.346667pt;}
.x63_c00444{left:18.960000pt;}
.x34_c00444{left:20.802667pt;}
.x2b_c00444{left:25.894667pt;}
.xa_c00444{left:29.036000pt;}
.x44_c00444{left:32.022667pt;}
.x58_c00444{left:33.365203pt;}
.x16_c00444{left:34.260000pt;}
.x6f_c00444{left:38.748704pt;}
.xb_c00444{left:40.686667pt;}
.x54_c00444{left:43.584684pt;}
.x42_c00444{left:44.640000pt;}
.x3_c00444{left:46.070667pt;}
.x1c_c00444{left:48.642667pt;}
.x13_c00444{left:51.378667pt;}
.x5e_c00444{left:52.764000pt;}
.x22_c00444{left:56.734667pt;}
.x17_c00444{left:59.712000pt;}
.x73_c00444{left:61.812000pt;}
.x39_c00444{left:64.297333pt;}
.xc_c00444{left:66.956000pt;}
.x59_c00444{left:68.657609pt;}
.x1d_c00444{left:71.588000pt;}
.x50_c00444{left:72.738861pt;}
.x23_c00444{left:74.824000pt;}
.x2c_c00444{left:75.752000pt;}
.x61_c00444{left:78.245528pt;}
.x35_c00444{left:79.886667pt;}
.x55_c00444{left:81.291555pt;}
.x24_c00444{left:89.250667pt;}
.x4_c00444{left:90.226667pt;}
.x69_c00444{left:92.245333pt;}
.x36_c00444{left:93.825333pt;}
.x48_c00444{left:96.658019pt;}
.x62_c00444{left:97.689149pt;}
.x4e_c00444{left:99.495019pt;}
.x45_c00444{left:100.404000pt;}
.x5_c00444{left:105.853333pt;}
.x2d_c00444{left:108.238667pt;}
.x3a_c00444{left:109.170667pt;}
.x43_c00444{left:111.840000pt;}
.xd_c00444{left:113.085333pt;}
.x49_c00444{left:114.709189pt;}
.x4a_c00444{left:116.123187pt;}
.x1e_c00444{left:117.057333pt;}
.x6a_c00444{left:118.428000pt;}
.x70_c00444{left:119.683664pt;}
.x18_c00444{left:123.498667pt;}
.x3b_c00444{left:124.737333pt;}
.x4f_c00444{left:126.210325pt;}
.x1f_c00444{left:128.705333pt;}
.x74_c00444{left:129.921333pt;}
.x25_c00444{left:133.404000pt;}
.x37_c00444{left:136.557333pt;}
.x1_c00444{left:137.520000pt;}
.x56_c00444{left:138.620761pt;}
.x2e_c00444{left:140.620000pt;}
.x14_c00444{left:141.657333pt;}
.x6_c00444{left:145.848000pt;}
.x5a_c00444{left:147.647173pt;}
.x2f_c00444{left:148.801333pt;}
.x26_c00444{left:149.950667pt;}
.x5f_c00444{left:154.541333pt;}
.x64_c00444{left:159.600000pt;}
.x6b_c00444{left:161.176000pt;}
.x7_c00444{left:162.512000pt;}
.xe_c00444{left:164.084000pt;}
.x5d_c00444{left:167.014853pt;}
.x19_c00444{left:169.001333pt;}
.x4b_c00444{left:170.111792pt;}
.x20_c00444{left:175.024000pt;}
.xf_c00444{left:175.986667pt;}
.x3f_c00444{left:177.049333pt;}
.x38_c00444{left:178.785333pt;}
.x3c_c00444{left:180.212000pt;}
.x65_c00444{left:185.040000pt;}
.x4c_c00444{left:186.055285pt;}
.x30_c00444{left:187.338667pt;}
.x52_c00444{left:190.592575pt;}
.x27_c00444{left:194.038667pt;}
.x5b_c00444{left:197.344723pt;}
.x31_c00444{left:199.413333pt;}
.x8_c00444{left:201.649333pt;}
.x57_c00444{left:203.251047pt;}
.x51_c00444{left:207.667808pt;}
.x1a_c00444{left:208.677333pt;}
.x28_c00444{left:209.729333pt;}
.x6d_c00444{left:211.457495pt;}
.x68_c00444{left:213.120000pt;}
.x15_c00444{left:216.316000pt;}
.x21_c00444{left:217.240000pt;}
.x66_c00444{left:218.880000pt;}
.x1b_c00444{left:226.233333pt;}
.x3d_c00444{left:228.204000pt;}
.x6c_c00444{left:229.617333pt;}
.x40_c00444{left:231.770667pt;}
.x75_c00444{left:232.815472pt;}
.x4d_c00444{left:234.551171pt;}
.x10_c00444{left:236.578667pt;}
.x9_c00444{left:240.277333pt;}
.x32_c00444{left:241.900000pt;}
.x46_c00444{left:243.373333pt;}
.x6e_c00444{left:245.540583pt;}
.x41_c00444{left:250.013333pt;}
.x72_c00444{left:251.780475pt;}
.x11_c00444{left:252.756000pt;}
.x47_c00444{left:255.492000pt;}
.x53_c00444{left:256.802400pt;}
.x60_c00444{left:257.968000pt;}
.x29_c00444{left:259.414667pt;}
.x5c_c00444{left:260.968424pt;}
.x3e_c00444{left:262.529333pt;}
.x71_c00444{left:265.547091pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00445 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00445 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00445 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00445 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00445.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00445{transform:matrix(0.012903,0.000245,-0.004749,0.249955,0,0);-ms-transform:matrix(0.012903,0.000245,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.012903,0.000245,-0.004749,0.249955,0,0);}
.m97_c00445{transform:matrix(0.023371,0.000444,-0.004749,0.249955,0,0);-ms-transform:matrix(0.023371,0.000444,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.023371,0.000444,-0.004749,0.249955,0,0);}
.m8_c00445{transform:matrix(0.126382,0.002401,-0.004749,0.249955,0,0);-ms-transform:matrix(0.126382,0.002401,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.126382,0.002401,-0.004749,0.249955,0,0);}
.m29_c00445{transform:matrix(0.135750,0.002579,-0.004749,0.249955,0,0);-ms-transform:matrix(0.135750,0.002579,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.135750,0.002579,-0.004749,0.249955,0,0);}
.mf0_c00445{transform:matrix(0.142984,0.002717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.142984,0.002717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.142984,0.002717,-0.004749,0.249955,0,0);}
.m92_c00445{transform:matrix(0.143204,0.002721,-0.004749,0.249955,0,0);-ms-transform:matrix(0.143204,0.002721,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.143204,0.002721,-0.004749,0.249955,0,0);}
.m96_c00445{transform:matrix(0.145434,0.002763,-0.004749,0.249955,0,0);-ms-transform:matrix(0.145434,0.002763,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.145434,0.002763,-0.004749,0.249955,0,0);}
.m5_c00445{transform:matrix(0.146269,0.002779,-0.004749,0.249955,0,0);-ms-transform:matrix(0.146269,0.002779,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.146269,0.002779,-0.004749,0.249955,0,0);}
.me4_c00445{transform:matrix(0.148983,0.002831,-0.004749,0.249955,0,0);-ms-transform:matrix(0.148983,0.002831,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.148983,0.002831,-0.004749,0.249955,0,0);}
.m46_c00445{transform:matrix(0.150838,0.002866,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150838,0.002866,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150838,0.002866,-0.004749,0.249955,0,0);}
.mcb_c00445{transform:matrix(0.151813,0.002884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151813,0.002884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151813,0.002884,-0.004749,0.249955,0,0);}
.mcd_c00445{transform:matrix(0.152472,0.002897,-0.004749,0.249955,0,0);-ms-transform:matrix(0.152472,0.002897,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.152472,0.002897,-0.004749,0.249955,0,0);}
.m7a_c00445{transform:matrix(0.152672,0.002901,-0.004749,0.249955,0,0);-ms-transform:matrix(0.152672,0.002901,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.152672,0.002901,-0.004749,0.249955,0,0);}
.mc1_c00445{transform:matrix(0.153087,0.002909,-0.004749,0.249955,0,0);-ms-transform:matrix(0.153087,0.002909,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.153087,0.002909,-0.004749,0.249955,0,0);}
.m43_c00445{transform:matrix(0.155517,0.002955,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155517,0.002955,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155517,0.002955,-0.004749,0.249955,0,0);}
.m1b_c00445{transform:matrix(0.156782,0.002979,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156782,0.002979,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156782,0.002979,-0.004749,0.249955,0,0);}
.m1a_c00445{transform:matrix(0.156997,0.002983,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156997,0.002983,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156997,0.002983,-0.004749,0.249955,0,0);}
.m76_c00445{transform:matrix(0.158076,0.003003,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158076,0.003003,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158076,0.003003,-0.004749,0.249955,0,0);}
.m52_c00445{transform:matrix(0.158096,0.003004,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158096,0.003004,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158096,0.003004,-0.004749,0.249955,0,0);}
.maf_c00445{transform:matrix(0.158291,0.003008,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158291,0.003008,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158291,0.003008,-0.004749,0.249955,0,0);}
.mc3_c00445{transform:matrix(0.158306,0.003008,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158306,0.003008,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158306,0.003008,-0.004749,0.249955,0,0);}
.mae_c00445{transform:matrix(0.159116,0.003023,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159116,0.003023,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159116,0.003023,-0.004749,0.249955,0,0);}
.m1e_c00445{transform:matrix(0.159166,0.003024,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159166,0.003024,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159166,0.003024,-0.004749,0.249955,0,0);}
.m7c_c00445{transform:matrix(0.159476,0.003030,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159476,0.003030,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159476,0.003030,-0.004749,0.249955,0,0);}
.mdd_c00445{transform:matrix(0.159486,0.003030,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159486,0.003030,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159486,0.003030,-0.004749,0.249955,0,0);}
.m2b_c00445{transform:matrix(0.159791,0.003036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159791,0.003036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159791,0.003036,-0.004749,0.249955,0,0);}
.m5e_c00445{transform:matrix(0.160276,0.003045,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160276,0.003045,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160276,0.003045,-0.004749,0.249955,0,0);}
.mb1_c00445{transform:matrix(0.160611,0.003052,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160611,0.003052,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160611,0.003052,-0.004749,0.249955,0,0);}
.mb3_c00445{transform:matrix(0.161001,0.003059,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161001,0.003059,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161001,0.003059,-0.004749,0.249955,0,0);}
.m7d_c00445{transform:matrix(0.161006,0.003059,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161006,0.003059,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161006,0.003059,-0.004749,0.249955,0,0);}
.mc6_c00445{transform:matrix(0.161131,0.003061,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161131,0.003061,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161131,0.003061,-0.004749,0.249955,0,0);}
.mca_c00445{transform:matrix(0.161976,0.003078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161976,0.003078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161976,0.003078,-0.004749,0.249955,0,0);}
.mbb_c00445{transform:matrix(0.162141,0.003081,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162141,0.003081,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162141,0.003081,-0.004749,0.249955,0,0);}
.m38_c00445{transform:matrix(0.162681,0.003091,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162681,0.003091,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162681,0.003091,-0.004749,0.249955,0,0);}
.ma0_c00445{transform:matrix(0.162821,0.003094,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162821,0.003094,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162821,0.003094,-0.004749,0.249955,0,0);}
.me8_c00445{transform:matrix(0.162886,0.003095,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162886,0.003095,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162886,0.003095,-0.004749,0.249955,0,0);}
.m5d_c00445{transform:matrix(0.162911,0.003095,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162911,0.003095,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162911,0.003095,-0.004749,0.249955,0,0);}
.mb2_c00445{transform:matrix(0.163306,0.003103,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163306,0.003103,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163306,0.003103,-0.004749,0.249955,0,0);}
.m65_c00445{transform:matrix(0.164020,0.003116,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164020,0.003116,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164020,0.003116,-0.004749,0.249955,0,0);}
.m9f_c00445{transform:matrix(0.164045,0.003117,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164045,0.003117,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164045,0.003117,-0.004749,0.249955,0,0);}
.m99_c00445{transform:matrix(0.165265,0.003140,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165265,0.003140,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165265,0.003140,-0.004749,0.249955,0,0);}
.m82_c00445{transform:matrix(0.165400,0.003143,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165400,0.003143,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165400,0.003143,-0.004749,0.249955,0,0);}
.m2_c00445{transform:matrix(0.165615,0.003147,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165615,0.003147,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165615,0.003147,-0.004749,0.249955,0,0);}
.m1_c00445{transform:matrix(0.165820,0.003151,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165820,0.003151,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165820,0.003151,-0.004749,0.249955,0,0);}
.m3c_c00445{transform:matrix(0.166060,0.003155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166060,0.003155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166060,0.003155,-0.004749,0.249955,0,0);}
.mec_c00445{transform:matrix(0.166310,0.003160,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166310,0.003160,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166310,0.003160,-0.004749,0.249955,0,0);}
.m3_c00445{transform:matrix(0.166655,0.003166,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166655,0.003166,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166655,0.003166,-0.004749,0.249955,0,0);}
.me1_c00445{transform:matrix(0.166860,0.003170,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166860,0.003170,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166860,0.003170,-0.004749,0.249955,0,0);}
.m2d_c00445{transform:matrix(0.167085,0.003175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167085,0.003175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167085,0.003175,-0.004749,0.249955,0,0);}
.m8a_c00445{transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167095,0.003175,-0.004749,0.249955,0,0);}
.m47_c00445{transform:matrix(0.167385,0.003180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167385,0.003180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167385,0.003180,-0.004749,0.249955,0,0);}
.m23_c00445{transform:matrix(0.167540,0.003183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167540,0.003183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167540,0.003183,-0.004749,0.249955,0,0);}
.m15_c00445{transform:matrix(0.167915,0.003190,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167915,0.003190,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167915,0.003190,-0.004749,0.249955,0,0);}
.md7_c00445{transform:matrix(0.168165,0.003195,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168165,0.003195,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168165,0.003195,-0.004749,0.249955,0,0);}
.ma2_c00445{transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169064,0.003212,-0.004749,0.249955,0,0);}
.m30_c00445{transform:matrix(0.170344,0.003237,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170344,0.003237,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170344,0.003237,-0.004749,0.249955,0,0);}
.m55_c00445{transform:matrix(0.170669,0.003243,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170669,0.003243,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170669,0.003243,-0.004749,0.249955,0,0);}
.m67_c00445{transform:matrix(0.171019,0.003249,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171019,0.003249,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171019,0.003249,-0.004749,0.249955,0,0);}
.mee_c00445{transform:matrix(0.171389,0.003256,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171389,0.003256,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171389,0.003256,-0.004749,0.249955,0,0);}
.m83_c00445{transform:matrix(0.171544,0.003259,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171544,0.003259,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171544,0.003259,-0.004749,0.249955,0,0);}
.me6_c00445{transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171954,0.003267,-0.004749,0.249955,0,0);}
.md0_c00445{transform:matrix(0.173174,0.003290,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173174,0.003290,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173174,0.003290,-0.004749,0.249955,0,0);}
.m7_c00445{transform:matrix(0.173449,0.003296,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173449,0.003296,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173449,0.003296,-0.004749,0.249955,0,0);}
.mbe_c00445{transform:matrix(0.173504,0.003297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173504,0.003297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173504,0.003297,-0.004749,0.249955,0,0);}
.ma9_c00445{transform:matrix(0.173689,0.003300,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173689,0.003300,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173689,0.003300,-0.004749,0.249955,0,0);}
.m12_c00445{transform:matrix(0.173769,0.003302,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173769,0.003302,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173769,0.003302,-0.004749,0.249955,0,0);}
.m50_c00445{transform:matrix(0.174194,0.003310,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174194,0.003310,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174194,0.003310,-0.004749,0.249955,0,0);}
.m16_c00445{transform:matrix(0.174304,0.003312,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174304,0.003312,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174304,0.003312,-0.004749,0.249955,0,0);}
.m22_c00445{transform:matrix(0.174319,0.003312,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174319,0.003312,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174319,0.003312,-0.004749,0.249955,0,0);}
.m4a_c00445{transform:matrix(0.174588,0.003317,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174588,0.003317,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174588,0.003317,-0.004749,0.249955,0,0);}
.me5_c00445{transform:matrix(0.174698,0.003319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174698,0.003319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174698,0.003319,-0.004749,0.249955,0,0);}
.m8d_c00445{transform:matrix(0.175178,0.003328,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175178,0.003328,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175178,0.003328,-0.004749,0.249955,0,0);}
.mb9_c00445{transform:matrix(0.175248,0.003330,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175248,0.003330,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175248,0.003330,-0.004749,0.249955,0,0);}
.m44_c00445{transform:matrix(0.175698,0.003338,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175698,0.003338,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175698,0.003338,-0.004749,0.249955,0,0);}
.m13_c00445{transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);}
.m19_c00445{transform:matrix(0.175873,0.003342,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175873,0.003342,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175873,0.003342,-0.004749,0.249955,0,0);}
.mc0_c00445{transform:matrix(0.176628,0.003356,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176628,0.003356,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176628,0.003356,-0.004749,0.249955,0,0);}
.m9b_c00445{transform:matrix(0.177083,0.003365,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177083,0.003365,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177083,0.003365,-0.004749,0.249955,0,0);}
.m45_c00445{transform:matrix(0.177423,0.003371,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177423,0.003371,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177423,0.003371,-0.004749,0.249955,0,0);}
.mc2_c00445{transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178298,0.003388,-0.004749,0.249955,0,0);}
.m9c_c00445{transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178328,0.003388,-0.004749,0.249955,0,0);}
.m80_c00445{transform:matrix(0.178343,0.003389,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178343,0.003389,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178343,0.003389,-0.004749,0.249955,0,0);}
.m69_c00445{transform:matrix(0.178833,0.003398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178833,0.003398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178833,0.003398,-0.004749,0.249955,0,0);}
.me2_c00445{transform:matrix(0.178958,0.003400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178958,0.003400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178958,0.003400,-0.004749,0.249955,0,0);}
.mb_c00445{transform:matrix(0.179008,0.003401,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179008,0.003401,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179008,0.003401,-0.004749,0.249955,0,0);}
.mef_c00445{transform:matrix(0.179748,0.003415,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179748,0.003415,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179748,0.003415,-0.004749,0.249955,0,0);}
.m98_c00445{transform:matrix(0.179858,0.003417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179858,0.003417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179858,0.003417,-0.004749,0.249955,0,0);}
.m24_c00445{transform:matrix(0.179923,0.003419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179923,0.003419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179923,0.003419,-0.004749,0.249955,0,0);}
.m86_c00445{transform:matrix(0.180092,0.003422,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180092,0.003422,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180092,0.003422,-0.004749,0.249955,0,0);}
.m57_c00445{transform:matrix(0.180227,0.003424,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180227,0.003424,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180227,0.003424,-0.004749,0.249955,0,0);}
.m2f_c00445{transform:matrix(0.181072,0.003440,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181072,0.003440,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181072,0.003440,-0.004749,0.249955,0,0);}
.m32_c00445{transform:matrix(0.181442,0.003447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181442,0.003447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181442,0.003447,-0.004749,0.249955,0,0);}
.m0_c00445{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.m9d_c00445{transform:matrix(0.181977,0.003458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181977,0.003458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181977,0.003458,-0.004749,0.249955,0,0);}
.m39_c00445{transform:matrix(0.181992,0.003458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181992,0.003458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181992,0.003458,-0.004749,0.249955,0,0);}
.m3b_c00445{transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182617,0.003470,-0.004749,0.249955,0,0);}
.m48_c00445{transform:matrix(0.182732,0.003472,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182732,0.003472,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182732,0.003472,-0.004749,0.249955,0,0);}
.m6_c00445{transform:matrix(0.182862,0.003474,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182862,0.003474,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182862,0.003474,-0.004749,0.249955,0,0);}
.m7b_c00445{transform:matrix(0.183932,0.003495,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183932,0.003495,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183932,0.003495,-0.004749,0.249955,0,0);}
.m54_c00445{transform:matrix(0.184167,0.003499,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184167,0.003499,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184167,0.003499,-0.004749,0.249955,0,0);}
.m1f_c00445{transform:matrix(0.184277,0.003501,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184277,0.003501,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184277,0.003501,-0.004749,0.249955,0,0);}
.m34_c00445{transform:matrix(0.184747,0.003510,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184747,0.003510,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184747,0.003510,-0.004749,0.249955,0,0);}
.m20_c00445{transform:matrix(0.184977,0.003515,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184977,0.003515,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184977,0.003515,-0.004749,0.249955,0,0);}
.m4c_c00445{transform:matrix(0.185522,0.003525,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185522,0.003525,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185522,0.003525,-0.004749,0.249955,0,0);}
.m77_c00445{transform:matrix(0.185736,0.003529,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185736,0.003529,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185736,0.003529,-0.004749,0.249955,0,0);}
.m4_c00445{transform:matrix(0.185866,0.003531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185866,0.003531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185866,0.003531,-0.004749,0.249955,0,0);}
.m31_c00445{transform:matrix(0.186371,0.003541,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186371,0.003541,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186371,0.003541,-0.004749,0.249955,0,0);}
.m61_c00445{transform:matrix(0.186806,0.003549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186806,0.003549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186806,0.003549,-0.004749,0.249955,0,0);}
.m1d_c00445{transform:matrix(0.187091,0.003555,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187091,0.003555,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187091,0.003555,-0.004749,0.249955,0,0);}
.m4f_c00445{transform:matrix(0.187316,0.003559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187316,0.003559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187316,0.003559,-0.004749,0.249955,0,0);}
.mc7_c00445{transform:matrix(0.188026,0.003572,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188026,0.003572,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188026,0.003572,-0.004749,0.249955,0,0);}
.md3_c00445{transform:matrix(0.188271,0.003577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188271,0.003577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188271,0.003577,-0.004749,0.249955,0,0);}
.mda_c00445{transform:matrix(0.188631,0.003584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188631,0.003584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188631,0.003584,-0.004749,0.249955,0,0);}
.m49_c00445{transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188756,0.003586,-0.004749,0.249955,0,0);}
.m26_c00445{transform:matrix(0.188831,0.003588,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188831,0.003588,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188831,0.003588,-0.004749,0.249955,0,0);}
.mde_c00445{transform:matrix(0.189016,0.003591,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189016,0.003591,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189016,0.003591,-0.004749,0.249955,0,0);}
.m4d_c00445{transform:matrix(0.189601,0.003602,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189601,0.003602,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189601,0.003602,-0.004749,0.249955,0,0);}
.mce_c00445{transform:matrix(0.189776,0.003606,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189776,0.003606,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189776,0.003606,-0.004749,0.249955,0,0);}
.m9a_c00445{transform:matrix(0.189881,0.003608,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189881,0.003608,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189881,0.003608,-0.004749,0.249955,0,0);}
.m1c_c00445{transform:matrix(0.190176,0.003613,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190176,0.003613,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190176,0.003613,-0.004749,0.249955,0,0);}
.m89_c00445{transform:matrix(0.190416,0.003618,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190416,0.003618,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190416,0.003618,-0.004749,0.249955,0,0);}
.m68_c00445{transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);}
.m2e_c00445{transform:matrix(0.191155,0.003632,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191155,0.003632,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191155,0.003632,-0.004749,0.249955,0,0);}
.med_c00445{transform:matrix(0.191390,0.003636,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191390,0.003636,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191390,0.003636,-0.004749,0.249955,0,0);}
.m37_c00445{transform:matrix(0.191500,0.003639,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191500,0.003639,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191500,0.003639,-0.004749,0.249955,0,0);}
.ma8_c00445{transform:matrix(0.191565,0.003640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191565,0.003640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191565,0.003640,-0.004749,0.249955,0,0);}
.m41_c00445{transform:matrix(0.191815,0.003644,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191815,0.003644,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191815,0.003644,-0.004749,0.249955,0,0);}
.ma4_c00445{transform:matrix(0.191925,0.003647,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191925,0.003647,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191925,0.003647,-0.004749,0.249955,0,0);}
.m36_c00445{transform:matrix(0.192245,0.003653,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192245,0.003653,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192245,0.003653,-0.004749,0.249955,0,0);}
.m6b_c00445{transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192920,0.003665,-0.004749,0.249955,0,0);}
.mab_c00445{transform:matrix(0.194870,0.003703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194870,0.003703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194870,0.003703,-0.004749,0.249955,0,0);}
.m62_c00445{transform:matrix(0.195060,0.003706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195060,0.003706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195060,0.003706,-0.004749,0.249955,0,0);}
.md5_c00445{transform:matrix(0.195270,0.003710,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195270,0.003710,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195270,0.003710,-0.004749,0.249955,0,0);}
.mc8_c00445{transform:matrix(0.195325,0.003711,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195325,0.003711,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195325,0.003711,-0.004749,0.249955,0,0);}
.m42_c00445{transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195415,0.003713,-0.004749,0.249955,0,0);}
.md9_c00445{transform:matrix(0.195445,0.003713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195445,0.003713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195445,0.003713,-0.004749,0.249955,0,0);}
.m17_c00445{transform:matrix(0.195625,0.003717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195625,0.003717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195625,0.003717,-0.004749,0.249955,0,0);}
.m5b_c00445{transform:matrix(0.195640,0.003717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195640,0.003717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195640,0.003717,-0.004749,0.249955,0,0);}
.m7f_c00445{transform:matrix(0.195800,0.003720,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195800,0.003720,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195800,0.003720,-0.004749,0.249955,0,0);}
.m81_c00445{transform:matrix(0.196195,0.003728,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196195,0.003728,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196195,0.003728,-0.004749,0.249955,0,0);}
.m84_c00445{transform:matrix(0.196445,0.003732,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196445,0.003732,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196445,0.003732,-0.004749,0.249955,0,0);}
.md6_c00445{transform:matrix(0.196550,0.003734,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196550,0.003734,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196550,0.003734,-0.004749,0.249955,0,0);}
.m3f_c00445{transform:matrix(0.196575,0.003735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196575,0.003735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196575,0.003735,-0.004749,0.249955,0,0);}
.m28_c00445{transform:matrix(0.196709,0.003737,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196709,0.003737,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196709,0.003737,-0.004749,0.249955,0,0);}
.mcc_c00445{transform:matrix(0.196749,0.003738,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196749,0.003738,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196749,0.003738,-0.004749,0.249955,0,0);}
.mdc_c00445{transform:matrix(0.196849,0.003740,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196849,0.003740,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196849,0.003740,-0.004749,0.249955,0,0);}
.mb8_c00445{transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196944,0.003742,-0.004749,0.249955,0,0);}
.mbf_c00445{transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197129,0.003745,-0.004749,0.249955,0,0);}
.m3a_c00445{transform:matrix(0.197329,0.003749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197329,0.003749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197329,0.003749,-0.004749,0.249955,0,0);}
.m53_c00445{transform:matrix(0.197524,0.003753,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197524,0.003753,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197524,0.003753,-0.004749,0.249955,0,0);}
.m56_c00445{transform:matrix(0.197814,0.003758,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197814,0.003758,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197814,0.003758,-0.004749,0.249955,0,0);}
.m4e_c00445{transform:matrix(0.197829,0.003759,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197829,0.003759,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197829,0.003759,-0.004749,0.249955,0,0);}
.m2c_c00445{transform:matrix(0.198739,0.003776,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198739,0.003776,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198739,0.003776,-0.004749,0.249955,0,0);}
.m14_c00445{transform:matrix(0.198834,0.003778,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198834,0.003778,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198834,0.003778,-0.004749,0.249955,0,0);}
.m5f_c00445{transform:matrix(0.198854,0.003778,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198854,0.003778,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198854,0.003778,-0.004749,0.249955,0,0);}
.m6f_c00445{transform:matrix(0.199109,0.003783,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199109,0.003783,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199109,0.003783,-0.004749,0.249955,0,0);}
.ma5_c00445{transform:matrix(0.200404,0.003808,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200404,0.003808,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200404,0.003808,-0.004749,0.249955,0,0);}
.mea_c00445{transform:matrix(0.200594,0.003811,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200594,0.003811,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200594,0.003811,-0.004749,0.249955,0,0);}
.m5c_c00445{transform:matrix(0.200754,0.003814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200754,0.003814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200754,0.003814,-0.004749,0.249955,0,0);}
.m74_c00445{transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200759,0.003814,-0.004749,0.249955,0,0);}
.m64_c00445{transform:matrix(0.201184,0.003822,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201184,0.003822,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201184,0.003822,-0.004749,0.249955,0,0);}
.mac_c00445{transform:matrix(0.201364,0.003826,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201364,0.003826,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201364,0.003826,-0.004749,0.249955,0,0);}
.md_c00445{transform:matrix(0.201479,0.003828,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201479,0.003828,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201479,0.003828,-0.004749,0.249955,0,0);}
.m8b_c00445{transform:matrix(0.201839,0.003835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201839,0.003835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201839,0.003835,-0.004749,0.249955,0,0);}
.m72_c00445{transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202119,0.003840,-0.004749,0.249955,0,0);}
.m9e_c00445{transform:matrix(0.202588,0.003849,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202588,0.003849,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202588,0.003849,-0.004749,0.249955,0,0);}
.m66_c00445{transform:matrix(0.203043,0.003858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203043,0.003858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203043,0.003858,-0.004749,0.249955,0,0);}
.m3d_c00445{transform:matrix(0.203578,0.003868,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203578,0.003868,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203578,0.003868,-0.004749,0.249955,0,0);}
.m5a_c00445{transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203823,0.003873,-0.004749,0.249955,0,0);}
.m25_c00445{transform:matrix(0.203913,0.003874,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203913,0.003874,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203913,0.003874,-0.004749,0.249955,0,0);}
.mf_c00445{transform:matrix(0.204038,0.003877,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204038,0.003877,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204038,0.003877,-0.004749,0.249955,0,0);}
.mb0_c00445{transform:matrix(0.204053,0.003877,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204053,0.003877,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204053,0.003877,-0.004749,0.249955,0,0);}
.ma6_c00445{transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204423,0.003884,-0.004749,0.249955,0,0);}
.me3_c00445{transform:matrix(0.204828,0.003892,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204828,0.003892,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204828,0.003892,-0.004749,0.249955,0,0);}
.md1_c00445{transform:matrix(0.205238,0.003900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205238,0.003900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205238,0.003900,-0.004749,0.249955,0,0);}
.mc9_c00445{transform:matrix(0.207048,0.003934,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207048,0.003934,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207048,0.003934,-0.004749,0.249955,0,0);}
.meb_c00445{transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);}
.me_c00445{transform:matrix(0.207907,0.003950,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207907,0.003950,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207907,0.003950,-0.004749,0.249955,0,0);}
.m71_c00445{transform:matrix(0.208117,0.003954,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208117,0.003954,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208117,0.003954,-0.004749,0.249955,0,0);}
.m2a_c00445{transform:matrix(0.208372,0.003959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208372,0.003959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208372,0.003959,-0.004749,0.249955,0,0);}
.ma_c00445{transform:matrix(0.208597,0.003963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208597,0.003963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208597,0.003963,-0.004749,0.249955,0,0);}
.me9_c00445{transform:matrix(0.209172,0.003974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209172,0.003974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209172,0.003974,-0.004749,0.249955,0,0);}
.m6a_c00445{transform:matrix(0.210077,0.003991,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210077,0.003991,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210077,0.003991,-0.004749,0.249955,0,0);}
.mb4_c00445{transform:matrix(0.210562,0.004001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210562,0.004001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210562,0.004001,-0.004749,0.249955,0,0);}
.m88_c00445{transform:matrix(0.210857,0.004006,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210857,0.004006,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210857,0.004006,-0.004749,0.249955,0,0);}
.m18_c00445{transform:matrix(0.210902,0.004007,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210902,0.004007,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210902,0.004007,-0.004749,0.249955,0,0);}
.m11_c00445{transform:matrix(0.211712,0.004023,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211712,0.004023,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211712,0.004023,-0.004749,0.249955,0,0);}
.mba_c00445{transform:matrix(0.211752,0.004023,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211752,0.004023,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211752,0.004023,-0.004749,0.249955,0,0);}
.ma7_c00445{transform:matrix(0.211902,0.004026,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211902,0.004026,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211902,0.004026,-0.004749,0.249955,0,0);}
.mb7_c00445{transform:matrix(0.213996,0.004066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213996,0.004066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213996,0.004066,-0.004749,0.249955,0,0);}
.m70_c00445{transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214426,0.004074,-0.004749,0.249955,0,0);}
.m6c_c00445{transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214791,0.004081,-0.004749,0.249955,0,0);}
.md4_c00445{transform:matrix(0.214801,0.004081,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214801,0.004081,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214801,0.004081,-0.004749,0.249955,0,0);}
.mdf_c00445{transform:matrix(0.214876,0.004083,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214876,0.004083,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214876,0.004083,-0.004749,0.249955,0,0);}
.m63_c00445{transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214951,0.004084,-0.004749,0.249955,0,0);}
.m8f_c00445{transform:matrix(0.216666,0.004117,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216666,0.004117,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216666,0.004117,-0.004749,0.249955,0,0);}
.m60_c00445{transform:matrix(0.217251,0.004128,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217251,0.004128,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217251,0.004128,-0.004749,0.249955,0,0);}
.m78_c00445{transform:matrix(0.218076,0.004143,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218076,0.004143,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218076,0.004143,-0.004749,0.249955,0,0);}
.m73_c00445{transform:matrix(0.218286,0.004147,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218286,0.004147,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218286,0.004147,-0.004749,0.249955,0,0);}
.ma1_c00445{transform:matrix(0.221000,0.004199,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221000,0.004199,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221000,0.004199,-0.004749,0.249955,0,0);}
.m85_c00445{transform:matrix(0.221395,0.004207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221395,0.004207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221395,0.004207,-0.004749,0.249955,0,0);}
.mc_c00445{transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);}
.m35_c00445{transform:matrix(0.221640,0.004211,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221640,0.004211,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221640,0.004211,-0.004749,0.249955,0,0);}
.m91_c00445{transform:matrix(0.221790,0.004214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221790,0.004214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221790,0.004214,-0.004749,0.249955,0,0);}
.m3e_c00445{transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221945,0.004217,-0.004749,0.249955,0,0);}
.m40_c00445{transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222705,0.004231,-0.004749,0.249955,0,0);}
.mb6_c00445{transform:matrix(0.222865,0.004234,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222865,0.004234,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222865,0.004234,-0.004749,0.249955,0,0);}
.m93_c00445{transform:matrix(0.223770,0.004252,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223770,0.004252,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223770,0.004252,-0.004749,0.249955,0,0);}
.m21_c00445{transform:matrix(0.224774,0.004271,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224774,0.004271,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224774,0.004271,-0.004749,0.249955,0,0);}
.mb5_c00445{transform:matrix(0.226639,0.004306,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226639,0.004306,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226639,0.004306,-0.004749,0.249955,0,0);}
.m87_c00445{transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);}
.m94_c00445{transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);}
.mad_c00445{transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229384,0.004358,-0.004749,0.249955,0,0);}
.m58_c00445{transform:matrix(0.229824,0.004367,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229824,0.004367,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229824,0.004367,-0.004749,0.249955,0,0);}
.me0_c00445{transform:matrix(0.231518,0.004399,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231518,0.004399,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231518,0.004399,-0.004749,0.249955,0,0);}
.md2_c00445{transform:matrix(0.232848,0.004424,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232848,0.004424,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232848,0.004424,-0.004749,0.249955,0,0);}
.ma3_c00445{transform:matrix(0.234618,0.004458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234618,0.004458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234618,0.004458,-0.004749,0.249955,0,0);}
.m95_c00445{transform:matrix(0.236557,0.004495,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236557,0.004495,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236557,0.004495,-0.004749,0.249955,0,0);}
.m8c_c00445{transform:matrix(0.236702,0.004497,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236702,0.004497,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236702,0.004497,-0.004749,0.249955,0,0);}
.md8_c00445{transform:matrix(0.238037,0.004523,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238037,0.004523,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238037,0.004523,-0.004749,0.249955,0,0);}
.m51_c00445{transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242896,0.004615,-0.004749,0.249955,0,0);}
.m90_c00445{transform:matrix(0.243221,0.004621,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243221,0.004621,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243221,0.004621,-0.004749,0.249955,0,0);}
.m9_c00445{transform:matrix(0.243541,0.004627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243541,0.004627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243541,0.004627,-0.004749,0.249955,0,0);}
.m59_c00445{transform:matrix(0.243706,0.004630,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243706,0.004630,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243706,0.004630,-0.004749,0.249955,0,0);}
.m4b_c00445{transform:matrix(0.244346,0.004643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244346,0.004643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244346,0.004643,-0.004749,0.249955,0,0);}
.mc4_c00445{transform:matrix(0.245061,0.004656,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245061,0.004656,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245061,0.004656,-0.004749,0.249955,0,0);}
.mdb_c00445{transform:matrix(0.247500,0.004703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247500,0.004703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247500,0.004703,-0.004749,0.249955,0,0);}
.me7_c00445{transform:matrix(0.247720,0.004707,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247720,0.004707,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247720,0.004707,-0.004749,0.249955,0,0);}
.maa_c00445{transform:matrix(0.248435,0.004720,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248435,0.004720,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248435,0.004720,-0.004749,0.249955,0,0);}
.mbc_c00445{transform:matrix(0.259673,0.004934,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259673,0.004934,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259673,0.004934,-0.004749,0.249955,0,0);}
.m10_c00445{transform:matrix(0.262733,0.004992,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262733,0.004992,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262733,0.004992,-0.004749,0.249955,0,0);}
.m7e_c00445{transform:matrix(0.308969,0.005870,-0.004749,0.249955,0,0);-ms-transform:matrix(0.308969,0.005870,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.308969,0.005870,-0.004749,0.249955,0,0);}
.m27_c00445{transform:matrix(0.316808,0.006019,-0.004749,0.249955,0,0);-ms-transform:matrix(0.316808,0.006019,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.316808,0.006019,-0.004749,0.249955,0,0);}
.m6d_c00445{transform:matrix(0.335454,0.006374,-0.004749,0.249955,0,0);-ms-transform:matrix(0.335454,0.006374,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.335454,0.006374,-0.004749,0.249955,0,0);}
.m75_c00445{transform:matrix(0.339324,0.006447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.339324,0.006447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.339324,0.006447,-0.004749,0.249955,0,0);}
.m79_c00445{transform:matrix(0.340034,0.006461,-0.004749,0.249955,0,0);-ms-transform:matrix(0.340034,0.006461,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.340034,0.006461,-0.004749,0.249955,0,0);}
.mc5_c00445{transform:matrix(0.341463,0.006488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.341463,0.006488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.341463,0.006488,-0.004749,0.249955,0,0);}
.mbd_c00445{transform:matrix(0.356956,0.006782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.356956,0.006782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.356956,0.006782,-0.004749,0.249955,0,0);}
.m8e_c00445{transform:matrix(0.367314,0.006979,-0.004749,0.249955,0,0);-ms-transform:matrix(0.367314,0.006979,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.367314,0.006979,-0.004749,0.249955,0,0);}
.mcf_c00445{transform:matrix(0.539798,0.010256,-0.004749,0.249955,0,0);-ms-transform:matrix(0.539798,0.010256,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.539798,0.010256,-0.004749,0.249955,0,0);}
.m33_c00445{transform:matrix(0.743056,0.014118,-0.004749,0.249955,0,0);-ms-transform:matrix(0.743056,0.014118,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.743056,0.014118,-0.004749,0.249955,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:0.000000px;}
.fc0_c00445{color:transparent;}
.fsa_c00445{font-size:57.760423px;}
.fs9_c00445{font-size:59.860802px;}
.fs5_c00445{font-size:60.910991px;}
.fs2_c00445{font-size:61.961181px;}
.fs8_c00445{font-size:63.011370px;}
.fs7_c00445{font-size:64.061560px;}
.fs4_c00445{font-size:65.111749px;}
.fs3_c00445{font-size:66.161939px;}
.fs6_c00445{font-size:67.212129px;}
.fsb_c00445{font-size:69.312508px;}
.fs0_c00445{font-size:73.500000px;}
.fs1_c00445{font-size:73.513266px;}
.y0_c00445{bottom:0.000000px;}
.yf5_c00445{bottom:27.667734px;}
.yf1_c00445{bottom:27.667888px;}
.yee_c00445{bottom:27.667936px;}
.yef_c00445{bottom:27.667992px;}
.yf2_c00445{bottom:27.668034px;}
.yf4_c00445{bottom:27.668464px;}
.yf3_c00445{bottom:27.668469px;}
.yf0_c00445{bottom:27.668529px;}
.yed_c00445{bottom:41.236191px;}
.yec_c00445{bottom:41.660916px;}
.yeb_c00445{bottom:42.271789px;}
.yea_c00445{bottom:42.644550px;}
.ye9_c00445{bottom:42.927310px;}
.ye8_c00445{bottom:43.771288px;}
.ye7_c00445{bottom:44.074925px;}
.ye6_c00445{bottom:44.462394px;}
.ye5_c00445{bottom:44.723224px;}
.ye4_c00445{bottom:45.541870px;}
.ye3_c00445{bottom:59.183412px;}
.ye2_c00445{bottom:60.103264px;}
.ye1_c00445{bottom:60.408513px;}
.ye0_c00445{bottom:60.770775px;}
.ydf_c00445{bottom:61.322844px;}
.yde_c00445{bottom:61.585203px;}
.ydd_c00445{bottom:62.015607px;}
.ydc_c00445{bottom:74.937468px;}
.ydb_c00445{bottom:79.124679px;}
.yda_c00445{bottom:79.569069px;}
.yd4_c00445{bottom:95.281242px;}
.yd3_c00445{bottom:95.281251px;}
.yd7_c00445{bottom:95.281275px;}
.yd8_c00445{bottom:95.281660px;}
.yd5_c00445{bottom:95.281777px;}
.yd6_c00445{bottom:95.282005px;}
.yd9_c00445{bottom:95.282100px;}
.yd2_c00445{bottom:110.261073px;}
.yd1_c00445{bottom:110.617204px;}
.yd0_c00445{bottom:110.976150px;}
.ycf_c00445{bottom:111.323671px;}
.yce_c00445{bottom:111.594565px;}
.ycd_c00445{bottom:111.773187px;}
.ycc_c00445{bottom:112.672293px;}
.ycb_c00445{bottom:112.934652px;}
.yca_c00445{bottom:113.323011px;}
.yc9_c00445{bottom:125.795571px;}
.yc8_c00445{bottom:126.766416px;}
.yc7_c00445{bottom:127.028710px;}
.yc6_c00445{bottom:128.328883px;}
.yc5_c00445{bottom:128.714946px;}
.yc4_c00445{bottom:129.047134px;}
.yc3_c00445{bottom:129.248067px;}
.yc2_c00445{bottom:130.066581px;}
.yc1_c00445{bottom:143.891316px;}
.yc0_c00445{bottom:144.627460px;}
.ybf_c00445{bottom:144.945495px;}
.ybe_c00445{bottom:146.002894px;}
.ybd_c00445{bottom:146.228626px;}
.ybc_c00445{bottom:146.513742px;}
.ybb_c00445{bottom:146.706223px;}
.yba_c00445{bottom:147.619521px;}
.yb9_c00445{bottom:160.923873px;}
.yb8_c00445{bottom:161.614078px;}
.yb7_c00445{bottom:161.954728px;}
.yb6_c00445{bottom:162.509572px;}
.yb5_c00445{bottom:162.736872px;}
.yb4_c00445{bottom:163.753663px;}
.yb3_c00445{bottom:164.087310px;}
.yb2_c00445{bottom:164.361577px;}
.yb1_c00445{bottom:177.911701px;}
.yb0_c00445{bottom:179.044660px;}
.yaf_c00445{bottom:179.394304px;}
.yae_c00445{bottom:179.909031px;}
.yad_c00445{bottom:180.311235px;}
.yac_c00445{bottom:180.968052px;}
.yab_c00445{bottom:181.918009px;}
.yaa_c00445{bottom:194.007049px;}
.ya9_c00445{bottom:195.156312px;}
.ya8_c00445{bottom:195.636996px;}
.ya7_c00445{bottom:196.306287px;}
.ya6_c00445{bottom:196.878766px;}
.ya5_c00445{bottom:198.536376px;}
.ya4_c00445{bottom:198.903444px;}
.ya3_c00445{bottom:199.468627px;}
.ya2_c00445{bottom:211.195527px;}
.ya1_c00445{bottom:211.760938px;}
.ya0_c00445{bottom:212.577864px;}
.y9f_c00445{bottom:213.977490px;}
.y9e_c00445{bottom:214.566546px;}
.y9d_c00445{bottom:215.128879px;}
.y9c_c00445{bottom:215.942413px;}
.y9b_c00445{bottom:227.173855px;}
.y9a_c00445{bottom:227.537430px;}
.y99_c00445{bottom:228.893745px;}
.y98_c00445{bottom:229.180768px;}
.y97_c00445{bottom:230.402079px;}
.y96_c00445{bottom:230.775030px;}
.y95_c00445{bottom:231.344659px;}
.y94_c00445{bottom:232.526383px;}
.y93_c00445{bottom:232.957417px;}
.y92_c00445{bottom:245.472030px;}
.y91_c00445{bottom:245.787588px;}
.y90_c00445{bottom:246.074653px;}
.y8f_c00445{bottom:247.439730px;}
.y8e_c00445{bottom:247.777396px;}
.y8d_c00445{bottom:248.278066px;}
.y8c_c00445{bottom:249.698332px;}
.y8b_c00445{bottom:261.396405px;}
.y8a_c00445{bottom:262.072146px;}
.y89_c00445{bottom:263.525700px;}
.y88_c00445{bottom:263.890978px;}
.y87_c00445{bottom:264.644356px;}
.y86_c00445{bottom:265.063065px;}
.y85_c00445{bottom:265.407823px;}
.y84_c00445{bottom:265.825962px;}
.y83_c00445{bottom:266.443428px;}
.y82_c00445{bottom:278.964837px;}
.y81_c00445{bottom:279.923146px;}
.y80_c00445{bottom:280.209459px;}
.y7f_c00445{bottom:280.554303px;}
.y7e_c00445{bottom:280.850761px;}
.y7d_c00445{bottom:281.118795px;}
.y7c_c00445{bottom:282.202044px;}
.y7b_c00445{bottom:282.538128px;}
.y7a_c00445{bottom:283.456527px;}
.y79_c00445{bottom:296.202759px;}
.y78_c00445{bottom:297.208611px;}
.y77_c00445{bottom:297.408529px;}
.y76_c00445{bottom:298.282015px;}
.y75_c00445{bottom:299.275762px;}
.y74_c00445{bottom:299.479168px;}
.y73_c00445{bottom:300.197539px;}
.y72_c00445{bottom:312.006903px;}
.y71_c00445{bottom:312.320586px;}
.y70_c00445{bottom:313.402923px;}
.y6f_c00445{bottom:314.068404px;}
.y6e_c00445{bottom:314.319954px;}
.y6d_c00445{bottom:315.138874px;}
.y6c_c00445{bottom:315.683349px;}
.y6b_c00445{bottom:316.226341px;}
.y6a_c00445{bottom:317.068927px;}
.y69_c00445{bottom:317.480824px;}
.y68_c00445{bottom:329.621880px;}
.y67_c00445{bottom:330.301440px;}
.y66_c00445{bottom:331.358287px;}
.y65_c00445{bottom:331.625209px;}
.y64_c00445{bottom:332.412998px;}
.y63_c00445{bottom:333.156030px;}
.y62_c00445{bottom:334.224545px;}
.y61_c00445{bottom:348.582067px;}
.y60_c00445{bottom:349.101195px;}
.y5f_c00445{bottom:350.512691px;}
.y5e_c00445{bottom:350.809149px;}
.y5d_c00445{bottom:351.362754px;}
.y5c_c00445{bottom:352.587615px;}
.y54_c00445{bottom:367.450581px;}
.y55_c00445{bottom:367.450758px;}
.y56_c00445{bottom:367.450953px;}
.y5a_c00445{bottom:367.451109px;}
.y57_c00445{bottom:367.451249px;}
.y59_c00445{bottom:367.451265px;}
.y5b_c00445{bottom:367.451340px;}
.y58_c00445{bottom:367.451424px;}
.y53_c00445{bottom:379.615362px;}
.y52_c00445{bottom:380.968533px;}
.y51_c00445{bottom:381.872234px;}
.y50_c00445{bottom:382.220909px;}
.y4f_c00445{bottom:383.232491px;}
.y4e_c00445{bottom:384.564507px;}
.y4d_c00445{bottom:385.806263px;}
.y4c_c00445{bottom:396.859484px;}
.y4b_c00445{bottom:398.283772px;}
.y4a_c00445{bottom:399.224636px;}
.y49_c00445{bottom:400.616743px;}
.y48_c00445{bottom:400.967805px;}
.y47_c00445{bottom:401.556153px;}
.y46_c00445{bottom:402.830040px;}
.y45_c00445{bottom:403.354443px;}
.y44_c00445{bottom:403.632963px;}
.y43_c00445{bottom:415.088009px;}
.y42_c00445{bottom:415.357350px;}
.y41_c00445{bottom:416.391410px;}
.y40_c00445{bottom:416.845428px;}
.y3f_c00445{bottom:417.914016px;}
.y3e_c00445{bottom:418.473558px;}
.y3d_c00445{bottom:419.622792px;}
.y3c_c00445{bottom:420.647628px;}
.y3b_c00445{bottom:430.769624px;}
.y3a_c00445{bottom:431.320089px;}
.y39_c00445{bottom:433.563373px;}
.y38_c00445{bottom:434.681629px;}
.y37_c00445{bottom:435.939561px;}
.y36_c00445{bottom:437.121808px;}
.y34_c00445{bottom:452.368764px;}
.y35_c00445{bottom:452.368927px;}
.y33_c00445{bottom:465.600144px;}
.y32_c00445{bottom:465.999913px;}
.y31_c00445{bottom:466.697565px;}
.y30_c00445{bottom:468.047097px;}
.y2f_c00445{bottom:468.355039px;}
.y2e_c00445{bottom:469.709502px;}
.y2d_c00445{bottom:470.082652px;}
.y2c_c00445{bottom:470.356252px;}
.y2b_c00445{bottom:470.874667px;}
.y2a_c00445{bottom:482.717130px;}
.y29_c00445{bottom:482.838792px;}
.y28_c00445{bottom:483.898090px;}
.y27_c00445{bottom:485.000901px;}
.y26_c00445{bottom:486.094192px;}
.y25_c00445{bottom:486.439321px;}
.y24_c00445{bottom:487.075237px;}
.y23_c00445{bottom:498.700246px;}
.y22_c00445{bottom:499.354659px;}
.y21_c00445{bottom:500.707509px;}
.y20_c00445{bottom:501.154168px;}
.y1f_c00445{bottom:501.547312px;}
.y1e_c00445{bottom:502.179883px;}
.y1d_c00445{bottom:502.490232px;}
.y1c_c00445{bottom:502.892154px;}
.y1b_c00445{bottom:503.816338px;}
.y1a_c00445{bottom:515.365235px;}
.y19_c00445{bottom:516.648438px;}
.y18_c00445{bottom:516.940137px;}
.y17_c00445{bottom:517.288087px;}
.y16_c00445{bottom:518.120699px;}
.y15_c00445{bottom:518.446551px;}
.y14_c00445{bottom:519.370450px;}
.y13_c00445{bottom:519.643044px;}
.y12_c00445{bottom:520.289049px;}
.y11_c00445{bottom:533.928265px;}
.y10_c00445{bottom:534.359126px;}
.yf_c00445{bottom:535.323183px;}
.ye_c00445{bottom:535.621682px;}
.yd_c00445{bottom:536.554536px;}
.yc_c00445{bottom:536.823106px;}
.yb_c00445{bottom:538.110403px;}
.ya_c00445{bottom:549.914605px;}
.y9_c00445{bottom:550.843449px;}
.y8_c00445{bottom:551.269353px;}
.y7_c00445{bottom:552.742176px;}
.y6_c00445{bottom:553.106349px;}
.y5_c00445{bottom:553.352161px;}
.y4_c00445{bottom:554.116873px;}
.y3_c00445{bottom:554.761771px;}
.y2_c00445{bottom:555.394500px;}
.y1_c00445{bottom:566.598000px;}
.hb_c00445{height:57.760423px;}
.ha_c00445{height:59.860802px;}
.h6_c00445{height:60.910991px;}
.h3_c00445{height:61.961181px;}
.h9_c00445{height:63.011370px;}
.h8_c00445{height:64.061560px;}
.h5_c00445{height:65.111749px;}
.h4_c00445{height:66.161939px;}
.h7_c00445{height:67.212129px;}
.hc_c00445{height:69.312508px;}
.h1_c00445{height:73.500000px;}
.h2_c00445{height:73.513266px;}
.h0_c00445{height:608.250000px;}
.w0_c00445{width:359.100000px;}
.w1_c00445{width:359.250000px;}
.x0_c00445{left:0.000000px;}
.x6c_c00445{left:48.139167px;}
.x63_c00445{left:49.253121px;}
.x59_c00445{left:50.293627px;}
.x4d_c00445{left:51.400165px;}
.x33_c00445{left:52.658683px;}
.x23_c00445{left:54.030810px;}
.x2_c00445{left:55.119000px;}
.x6f_c00445{left:56.854299px;}
.x34_c00445{left:64.237572px;}
.x79_c00445{left:70.733450px;}
.x3d_c00445{left:73.173873px;}
.x49_c00445{left:74.576970px;}
.x76_c00445{left:75.939653px;}
.x2b_c00445{left:78.259480px;}
.x24_c00445{left:81.315810px;}
.x35_c00445{left:86.072491px;}
.x3_c00445{left:88.420500px;}
.x11_c00445{left:90.476727px;}
.x25_c00445{left:95.715810px;}
.x2d_c00445{left:97.987738px;}
.x69_c00445{left:100.030216px;}
.x4e_c00445{left:102.714039px;}
.x12_c00445{left:105.613512px;}
.x1f_c00445{left:108.864664px;}
.x45_c00445{left:111.548356px;}
.x26_c00445{left:115.355310px;}
.x4f_c00445{left:117.289435px;}
.x6a_c00445{left:118.973268px;}
.x41_c00445{left:120.201282px;}
.x74_c00445{left:121.231371px;}
.x4_c00445{left:122.362500px;}
.x2c_c00445{left:125.556594px;}
.x18_c00445{left:128.312595px;}
.x5a_c00445{left:133.810791px;}
.xb_c00445{left:135.631825px;}
.x36_c00445{left:139.140447px;}
.x7a_c00445{left:144.186455px;}
.x19_c00445{left:145.594437px;}
.x2e_c00445{left:147.969948px;}
.x42_c00445{left:150.996880px;}
.xc_c00445{left:152.452294px;}
.x6b_c00445{left:155.640429px;}
.x13_c00445{left:156.924981px;}
.x5_c00445{left:162.610500px;}
.x37_c00445{left:163.630110px;}
.x5f_c00445{left:165.123153px;}
.x77_c00445{left:166.400325px;}
.x43_c00445{left:167.468694px;}
.x20_c00445{left:169.644333px;}
.x2f_c00445{left:172.286095px;}
.x6_c00445{left:175.548000px;}
.x38_c00445{left:178.237213px;}
.x1a_c00445{left:180.704092px;}
.x4a_c00445{left:181.765993px;}
.x5b_c00445{left:183.146172px;}
.x60_c00445{left:184.752153px;}
.x27_c00445{left:186.642810px;}
.x50_c00445{left:188.309190px;}
.x57_c00445{left:192.580537px;}
.x7_c00445{left:194.715000px;}
.x46_c00445{left:196.619481px;}
.x1_c00445{left:201.420000px;}
.x1b_c00445{left:202.580520px;}
.x3e_c00445{left:203.606955px;}
.x67_c00445{left:207.680841px;}
.xd_c00445{left:210.711100px;}
.x54_c00445{left:212.018541px;}
.x3c_c00445{left:215.866398px;}
.x64_c00445{left:217.410400px;}
.x30_c00445{left:218.734561px;}
.x14_c00445{left:221.292706px;}
.x70_c00445{left:223.446944px;}
.x1c_c00445{left:227.431504px;}
.xe_c00445{left:229.343655px;}
.x21_c00445{left:230.925001px;}
.x39_c00445{left:236.263713px;}
.x31_c00445{left:238.444551px;}
.x15_c00445{left:240.632577px;}
.x44_c00445{left:245.864676px;}
.x55_c00445{left:247.132725px;}
.x61_c00445{left:249.031653px;}
.x51_c00445{left:250.709118px;}
.x71_c00445{left:252.399291px;}
.x3f_c00445{left:255.186565px;}
.x16_c00445{left:256.853890px;}
.x65_c00445{left:258.274131px;}
.x5c_c00445{left:263.442722px;}
.x52_c00445{left:265.021986px;}
.x78_c00445{left:266.328906px;}
.x6d_c00445{left:268.190897px;}
.x47_c00445{left:270.161377px;}
.x8_c00445{left:272.232000px;}
.x28_c00445{left:273.878310px;}
.x3a_c00445{left:275.436979px;}
.x4b_c00445{left:278.186317px;}
.x5d_c00445{left:280.367877px;}
.x72_c00445{left:282.347781px;}
.x32_c00445{left:283.391631px;}
.x66_c00445{left:286.532089px;}
.xf_c00445{left:289.639603px;}
.x58_c00445{left:293.599947px;}
.x9_c00445{left:294.648000px;}
.x22_c00445{left:296.555755px;}
.x5e_c00445{left:298.950589px;}
.x56_c00445{left:300.334222px;}
.x1d_c00445{left:302.582929px;}
.x48_c00445{left:307.902090px;}
.x29_c00445{left:310.596810px;}
.x73_c00445{left:311.990214px;}
.x10_c00445{left:316.581142px;}
.x68_c00445{left:322.691175px;}
.x75_c00445{left:324.577259px;}
.x17_c00445{left:328.181758px;}
.x7b_c00445{left:329.708901px;}
.x2a_c00445{left:331.637310px;}
.x6e_c00445{left:332.950827px;}
.x3b_c00445{left:334.762336px;}
.x53_c00445{left:336.836797px;}
.x1e_c00445{left:338.921113px;}
.x40_c00445{left:340.792459px;}
.xa_c00445{left:343.534500px;}
.x62_c00445{left:354.658653px;}
.x4c_c00445{left:355.767799px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.fsa_c00445{font-size:51.342598pt;}
.fs9_c00445{font-size:53.209602pt;}
.fs5_c00445{font-size:54.143104pt;}
.fs2_c00445{font-size:55.076605pt;}
.fs8_c00445{font-size:56.010107pt;}
.fs7_c00445{font-size:56.943609pt;}
.fs4_c00445{font-size:57.877111pt;}
.fs3_c00445{font-size:58.810612pt;}
.fs6_c00445{font-size:59.744114pt;}
.fsb_c00445{font-size:61.611118pt;}
.fs0_c00445{font-size:65.333333pt;}
.fs1_c00445{font-size:65.345125pt;}
.y0_c00445{bottom:0.000000pt;}
.yf5_c00445{bottom:24.593541pt;}
.yf1_c00445{bottom:24.593679pt;}
.yee_c00445{bottom:24.593721pt;}
.yef_c00445{bottom:24.593771pt;}
.yf2_c00445{bottom:24.593808pt;}
.yf4_c00445{bottom:24.594191pt;}
.yf3_c00445{bottom:24.594195pt;}
.yf0_c00445{bottom:24.594248pt;}
.yed_c00445{bottom:36.654392pt;}
.yec_c00445{bottom:37.031925pt;}
.yeb_c00445{bottom:37.574924pt;}
.yea_c00445{bottom:37.906267pt;}
.ye9_c00445{bottom:38.157609pt;}
.ye8_c00445{bottom:38.907812pt;}
.ye7_c00445{bottom:39.177711pt;}
.ye6_c00445{bottom:39.522128pt;}
.ye5_c00445{bottom:39.753977pt;}
.ye4_c00445{bottom:40.481663pt;}
.ye3_c00445{bottom:52.607477pt;}
.ye2_c00445{bottom:53.425124pt;}
.ye1_c00445{bottom:53.696456pt;}
.ye0_c00445{bottom:54.018467pt;}
.ydf_c00445{bottom:54.509195pt;}
.yde_c00445{bottom:54.742403pt;}
.ydd_c00445{bottom:55.124984pt;}
.ydc_c00445{bottom:66.611083pt;}
.ydb_c00445{bottom:70.333048pt;}
.yda_c00445{bottom:70.728061pt;}
.yd4_c00445{bottom:84.694437pt;}
.yd3_c00445{bottom:84.694445pt;}
.yd7_c00445{bottom:84.694467pt;}
.yd8_c00445{bottom:84.694809pt;}
.yd5_c00445{bottom:84.694913pt;}
.yd6_c00445{bottom:84.695116pt;}
.yd9_c00445{bottom:84.695200pt;}
.yd2_c00445{bottom:98.009843pt;}
.yd1_c00445{bottom:98.326404pt;}
.yd0_c00445{bottom:98.645467pt;}
.ycf_c00445{bottom:98.954375pt;}
.yce_c00445{bottom:99.195169pt;}
.ycd_c00445{bottom:99.353944pt;}
.ycc_c00445{bottom:100.153149pt;}
.ycb_c00445{bottom:100.386357pt;}
.yca_c00445{bottom:100.731565pt;}
.yc9_c00445{bottom:111.818285pt;}
.yc8_c00445{bottom:112.681259pt;}
.yc7_c00445{bottom:112.914409pt;}
.yc6_c00445{bottom:114.070119pt;}
.yc5_c00445{bottom:114.413285pt;}
.yc4_c00445{bottom:114.708564pt;}
.yc3_c00445{bottom:114.887171pt;}
.yc2_c00445{bottom:115.614739pt;}
.yc1_c00445{bottom:127.903392pt;}
.yc0_c00445{bottom:128.557743pt;}
.ybf_c00445{bottom:128.840440pt;}
.ybe_c00445{bottom:129.780351pt;}
.ybd_c00445{bottom:129.981001pt;}
.ybc_c00445{bottom:130.234437pt;}
.ybb_c00445{bottom:130.405532pt;}
.yba_c00445{bottom:131.217352pt;}
.yb9_c00445{bottom:143.043443pt;}
.yb8_c00445{bottom:143.656959pt;}
.yb7_c00445{bottom:143.959759pt;}
.yb6_c00445{bottom:144.452953pt;}
.yb5_c00445{bottom:144.654997pt;}
.yb4_c00445{bottom:145.558812pt;}
.yb3_c00445{bottom:145.855387pt;}
.yb2_c00445{bottom:146.099180pt;}
.yb1_c00445{bottom:158.143735pt;}
.yb0_c00445{bottom:159.150809pt;}
.yaf_c00445{bottom:159.461604pt;}
.yae_c00445{bottom:159.919139pt;}
.yad_c00445{bottom:160.276653pt;}
.yac_c00445{bottom:160.860491pt;}
.yab_c00445{bottom:161.704897pt;}
.yaa_c00445{bottom:172.450711pt;}
.ya9_c00445{bottom:173.472277pt;}
.ya8_c00445{bottom:173.899552pt;}
.ya7_c00445{bottom:174.494477pt;}
.ya6_c00445{bottom:175.003348pt;}
.ya5_c00445{bottom:176.476779pt;}
.ya4_c00445{bottom:176.803061pt;}
.ya3_c00445{bottom:177.305447pt;}
.ya2_c00445{bottom:187.729357pt;}
.ya1_c00445{bottom:188.231945pt;}
.ya0_c00445{bottom:188.958101pt;}
.y9f_c00445{bottom:190.202213pt;}
.y9e_c00445{bottom:190.725819pt;}
.y9d_c00445{bottom:191.225671pt;}
.y9c_c00445{bottom:191.948812pt;}
.y9b_c00445{bottom:201.932316pt;}
.y9a_c00445{bottom:202.255493pt;}
.y99_c00445{bottom:203.461107pt;}
.y98_c00445{bottom:203.716239pt;}
.y97_c00445{bottom:204.801848pt;}
.y96_c00445{bottom:205.133360pt;}
.y95_c00445{bottom:205.639697pt;}
.y94_c00445{bottom:206.690119pt;}
.y93_c00445{bottom:207.073260pt;}
.y92_c00445{bottom:218.197360pt;}
.y91_c00445{bottom:218.477856pt;}
.y90_c00445{bottom:218.733025pt;}
.y8f_c00445{bottom:219.946427pt;}
.y8e_c00445{bottom:220.246575pt;}
.y8d_c00445{bottom:220.691615pt;}
.y8c_c00445{bottom:221.954073pt;}
.y8b_c00445{bottom:232.352360pt;}
.y8a_c00445{bottom:232.953019pt;}
.y89_c00445{bottom:234.245067pt;}
.y88_c00445{bottom:234.569759pt;}
.y87_c00445{bottom:235.239428pt;}
.y86_c00445{bottom:235.611613pt;}
.y85_c00445{bottom:235.918065pt;}
.y84_c00445{bottom:236.289744pt;}
.y83_c00445{bottom:236.838603pt;}
.y82_c00445{bottom:247.968744pt;}
.y81_c00445{bottom:248.820575pt;}
.y80_c00445{bottom:249.075075pt;}
.y7f_c00445{bottom:249.381603pt;}
.y7e_c00445{bottom:249.645121pt;}
.y7d_c00445{bottom:249.883373pt;}
.y7c_c00445{bottom:250.846261pt;}
.y7b_c00445{bottom:251.145003pt;}
.y7a_c00445{bottom:251.961357pt;}
.y79_c00445{bottom:263.291341pt;}
.y78_c00445{bottom:264.185432pt;}
.y77_c00445{bottom:264.363137pt;}
.y76_c00445{bottom:265.139569pt;}
.y75_c00445{bottom:266.022900pt;}
.y74_c00445{bottom:266.203705pt;}
.y73_c00445{bottom:266.842257pt;}
.y72_c00445{bottom:277.339469pt;}
.y71_c00445{bottom:277.618299pt;}
.y70_c00445{bottom:278.580376pt;}
.y6f_c00445{bottom:279.171915pt;}
.y6e_c00445{bottom:279.395515pt;}
.y6d_c00445{bottom:280.123444pt;}
.y6c_c00445{bottom:280.607421pt;}
.y6b_c00445{bottom:281.090081pt;}
.y6a_c00445{bottom:281.839047pt;}
.y69_c00445{bottom:282.205177pt;}
.y68_c00445{bottom:292.997227pt;}
.y67_c00445{bottom:293.601280pt;}
.y66_c00445{bottom:294.540700pt;}
.y65_c00445{bottom:294.777964pt;}
.y64_c00445{bottom:295.478220pt;}
.y63_c00445{bottom:296.138693pt;}
.y62_c00445{bottom:297.088484pt;}
.y61_c00445{bottom:309.850727pt;}
.y60_c00445{bottom:310.312173pt;}
.y5f_c00445{bottom:311.566836pt;}
.y5e_c00445{bottom:311.830355pt;}
.y5d_c00445{bottom:312.322448pt;}
.y5c_c00445{bottom:313.411213pt;}
.y54_c00445{bottom:326.622739pt;}
.y55_c00445{bottom:326.622896pt;}
.y56_c00445{bottom:326.623069pt;}
.y5a_c00445{bottom:326.623208pt;}
.y57_c00445{bottom:326.623332pt;}
.y59_c00445{bottom:326.623347pt;}
.y5b_c00445{bottom:326.623413pt;}
.y58_c00445{bottom:326.623488pt;}
.y53_c00445{bottom:337.435877pt;}
.y52_c00445{bottom:338.638696pt;}
.y51_c00445{bottom:339.441985pt;}
.y50_c00445{bottom:339.751919pt;}
.y4f_c00445{bottom:340.651103pt;}
.y4e_c00445{bottom:341.835117pt;}
.y4d_c00445{bottom:342.938900pt;}
.y4c_c00445{bottom:352.763985pt;}
.y4b_c00445{bottom:354.030020pt;}
.y4a_c00445{bottom:354.866343pt;}
.y49_c00445{bottom:356.103772pt;}
.y48_c00445{bottom:356.415827pt;}
.y47_c00445{bottom:356.938803pt;}
.y46_c00445{bottom:358.071147pt;}
.y45_c00445{bottom:358.537283pt;}
.y44_c00445{bottom:358.784856pt;}
.y43_c00445{bottom:368.967119pt;}
.y42_c00445{bottom:369.206533pt;}
.y41_c00445{bottom:370.125697pt;}
.y40_c00445{bottom:370.529269pt;}
.y3f_c00445{bottom:371.479125pt;}
.y3e_c00445{bottom:371.976496pt;}
.y3d_c00445{bottom:372.998037pt;}
.y3c_c00445{bottom:373.909003pt;}
.y3b_c00445{bottom:382.906332pt;}
.y3a_c00445{bottom:383.395635pt;}
.y39_c00445{bottom:385.389665pt;}
.y38_c00445{bottom:386.383671pt;}
.y37_c00445{bottom:387.501832pt;}
.y36_c00445{bottom:388.552719pt;}
.y34_c00445{bottom:402.105568pt;}
.y35_c00445{bottom:402.105713pt;}
.y33_c00445{bottom:413.866795pt;}
.y32_c00445{bottom:414.222145pt;}
.y31_c00445{bottom:414.842280pt;}
.y30_c00445{bottom:416.041864pt;}
.y2f_c00445{bottom:416.315591pt;}
.y2e_c00445{bottom:417.519557pt;}
.y2d_c00445{bottom:417.851247pt;}
.y2c_c00445{bottom:418.094447pt;}
.y2b_c00445{bottom:418.555260pt;}
.y2a_c00445{bottom:429.081893pt;}
.y29_c00445{bottom:429.190037pt;}
.y28_c00445{bottom:430.131636pt;}
.y27_c00445{bottom:431.111912pt;}
.y26_c00445{bottom:432.083727pt;}
.y25_c00445{bottom:432.390508pt;}
.y24_c00445{bottom:432.955767pt;}
.y23_c00445{bottom:443.289108pt;}
.y22_c00445{bottom:443.870808pt;}
.y21_c00445{bottom:445.073341pt;}
.y20_c00445{bottom:445.470372pt;}
.y1f_c00445{bottom:445.819833pt;}
.y1e_c00445{bottom:446.382119pt;}
.y1d_c00445{bottom:446.657984pt;}
.y1c_c00445{bottom:447.015248pt;}
.y1b_c00445{bottom:447.836745pt;}
.y1a_c00445{bottom:458.102431pt;}
.y19_c00445{bottom:459.243056pt;}
.y18_c00445{bottom:459.502344pt;}
.y17_c00445{bottom:459.811633pt;}
.y16_c00445{bottom:460.551732pt;}
.y15_c00445{bottom:460.841379pt;}
.y14_c00445{bottom:461.662623pt;}
.y13_c00445{bottom:461.904928pt;}
.y12_c00445{bottom:462.479155pt;}
.y11_c00445{bottom:474.602903pt;}
.y10_c00445{bottom:474.985889pt;}
.yf_c00445{bottom:475.842829pt;}
.ye_c00445{bottom:476.108161pt;}
.yd_c00445{bottom:476.937365pt;}
.yc_c00445{bottom:477.176095pt;}
.yb_c00445{bottom:478.320359pt;}
.ya_c00445{bottom:488.812983pt;}
.y9_c00445{bottom:489.638621pt;}
.y8_c00445{bottom:490.017203pt;}
.y7_c00445{bottom:491.326379pt;}
.y6_c00445{bottom:491.650088pt;}
.y5_c00445{bottom:491.868588pt;}
.y4_c00445{bottom:492.548332pt;}
.y3_c00445{bottom:493.121575pt;}
.y2_c00445{bottom:493.684000pt;}
.y1_c00445{bottom:503.642667pt;}
.hb_c00445{height:51.342598pt;}
.ha_c00445{height:53.209602pt;}
.h6_c00445{height:54.143104pt;}
.h3_c00445{height:55.076605pt;}
.h9_c00445{height:56.010107pt;}
.h8_c00445{height:56.943609pt;}
.h5_c00445{height:57.877111pt;}
.h4_c00445{height:58.810612pt;}
.h7_c00445{height:59.744114pt;}
.hc_c00445{height:61.611118pt;}
.h1_c00445{height:65.333333pt;}
.h2_c00445{height:65.345125pt;}
.h0_c00445{height:540.666667pt;}
.w0_c00445{width:319.200000pt;}
.w1_c00445{width:319.333333pt;}
.x0_c00445{left:0.000000pt;}
.x6c_c00445{left:42.790371pt;}
.x63_c00445{left:43.780552pt;}
.x59_c00445{left:44.705447pt;}
.x4d_c00445{left:45.689036pt;}
.x33_c00445{left:46.807719pt;}
.x23_c00445{left:48.027387pt;}
.x2_c00445{left:48.994667pt;}
.x6f_c00445{left:50.537155pt;}
.x34_c00445{left:57.100064pt;}
.x79_c00445{left:62.874177pt;}
.x3d_c00445{left:65.043443pt;}
.x49_c00445{left:66.290640pt;}
.x76_c00445{left:67.501913pt;}
.x2b_c00445{left:69.563983pt;}
.x24_c00445{left:72.280720pt;}
.x35_c00445{left:76.508881pt;}
.x3_c00445{left:78.596000pt;}
.x11_c00445{left:80.423757pt;}
.x25_c00445{left:85.080720pt;}
.x2d_c00445{left:87.100212pt;}
.x69_c00445{left:88.915748pt;}
.x4e_c00445{left:91.301368pt;}
.x12_c00445{left:93.878677pt;}
.x1f_c00445{left:96.768591pt;}
.x45_c00445{left:99.154095pt;}
.x26_c00445{left:102.538053pt;}
.x4f_c00445{left:104.257276pt;}
.x6a_c00445{left:105.754016pt;}
.x41_c00445{left:106.845584pt;}
.x74_c00445{left:107.761219pt;}
.x4_c00445{left:108.766667pt;}
.x2c_c00445{left:111.605861pt;}
.x18_c00445{left:114.055640pt;}
.x5a_c00445{left:118.942925pt;}
.xb_c00445{left:120.561623pt;}
.x36_c00445{left:123.680397pt;}
.x7a_c00445{left:128.165737pt;}
.x19_c00445{left:129.417277pt;}
.x2e_c00445{left:131.528843pt;}
.x42_c00445{left:134.219449pt;}
.xc_c00445{left:135.513151pt;}
.x6b_c00445{left:138.347048pt;}
.x13_c00445{left:139.488872pt;}
.x5_c00445{left:144.542667pt;}
.x37_c00445{left:145.448987pt;}
.x5f_c00445{left:146.776136pt;}
.x77_c00445{left:147.911400pt;}
.x43_c00445{left:148.861061pt;}
.x20_c00445{left:150.794963pt;}
.x2f_c00445{left:153.143196pt;}
.x6_c00445{left:156.042667pt;}
.x38_c00445{left:158.433079pt;}
.x1a_c00445{left:160.625860pt;}
.x4a_c00445{left:161.569772pt;}
.x5b_c00445{left:162.796597pt;}
.x60_c00445{left:164.224136pt;}
.x27_c00445{left:165.904720pt;}
.x50_c00445{left:167.385947pt;}
.x57_c00445{left:171.182700pt;}
.x7_c00445{left:173.080000pt;}
.x46_c00445{left:174.772872pt;}
.x1_c00445{left:179.040000pt;}
.x1b_c00445{left:180.071573pt;}
.x3e_c00445{left:180.983960pt;}
.x67_c00445{left:184.605192pt;}
.xd_c00445{left:187.298756pt;}
.x54_c00445{left:188.460925pt;}
.x3c_c00445{left:191.881243pt;}
.x64_c00445{left:193.253689pt;}
.x30_c00445{left:194.430721pt;}
.x14_c00445{left:196.704628pt;}
.x70_c00445{left:198.619505pt;}
.x1c_c00445{left:202.161337pt;}
.xe_c00445{left:203.861027pt;}
.x21_c00445{left:205.266668pt;}
.x39_c00445{left:210.012189pt;}
.x31_c00445{left:211.950712pt;}
.x15_c00445{left:213.895624pt;}
.x44_c00445{left:218.546379pt;}
.x55_c00445{left:219.673533pt;}
.x61_c00445{left:221.361469pt;}
.x51_c00445{left:222.852549pt;}
.x71_c00445{left:224.354925pt;}
.x3f_c00445{left:226.832503pt;}
.x16_c00445{left:228.314569pt;}
.x65_c00445{left:229.577005pt;}
.x5c_c00445{left:234.171308pt;}
.x52_c00445{left:235.575099pt;}
.x78_c00445{left:236.736805pt;}
.x6d_c00445{left:238.391908pt;}
.x47_c00445{left:240.143447pt;}
.x8_c00445{left:241.984000pt;}
.x28_c00445{left:243.447387pt;}
.x3a_c00445{left:244.832871pt;}
.x4b_c00445{left:247.276727pt;}
.x5d_c00445{left:249.215891pt;}
.x72_c00445{left:250.975805pt;}
.x32_c00445{left:251.903672pt;}
.x66_c00445{left:254.695191pt;}
.xf_c00445{left:257.457425pt;}
.x58_c00445{left:260.977731pt;}
.x9_c00445{left:261.909333pt;}
.x22_c00445{left:263.605116pt;}
.x5e_c00445{left:265.733857pt;}
.x56_c00445{left:266.963753pt;}
.x1d_c00445{left:268.962604pt;}
.x48_c00445{left:273.690747pt;}
.x29_c00445{left:276.086053pt;}
.x73_c00445{left:277.324635pt;}
.x10_c00445{left:281.405460pt;}
.x68_c00445{left:286.836600pt;}
.x75_c00445{left:288.513119pt;}
.x17_c00445{left:291.717119pt;}
.x7b_c00445{left:293.074579pt;}
.x2a_c00445{left:294.788720pt;}
.x6e_c00445{left:295.956291pt;}
.x3b_c00445{left:297.566521pt;}
.x53_c00445{left:299.410487pt;}
.x1e_c00445{left:301.263212pt;}
.x40_c00445{left:302.926631pt;}
.xa_c00445{left:305.364000pt;}
.x62_c00445{left:315.252136pt;}
.x4c_c00445{left:316.238044pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00446 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00446 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00446 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00446 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00446.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00446;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb2_c00446{transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020735,0.000000,0.000000,0.250000,0,0);}
.m59_c00446{transform:matrix(0.062895,-0.000818,0.003250,0.249979,0,0);-ms-transform:matrix(0.062895,-0.000818,0.003250,0.249979,0,0);-webkit-transform:matrix(0.062895,-0.000818,0.003250,0.249979,0,0);}
.m2b_c00446{transform:matrix(0.146283,-0.001902,0.003250,0.249979,0,0);-ms-transform:matrix(0.146283,-0.001902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146283,-0.001902,0.003250,0.249979,0,0);}
.m2c_c00446{transform:matrix(0.147618,-0.001919,0.003250,0.249979,0,0);-ms-transform:matrix(0.147618,-0.001919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147618,-0.001919,0.003250,0.249979,0,0);}
.m92_c00446{transform:matrix(0.153884,-0.003078,0.004999,0.249950,0,0);-ms-transform:matrix(0.153884,-0.003078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153884,-0.003078,0.004999,0.249950,0,0);}
.mc0_c00446{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.157987,-0.002054,0.003250,0.249979,0,0);-ms-transform:matrix(0.157987,-0.002054,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157987,-0.002054,0.003250,0.249979,0,0);}
.md4_c00446{transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00446{transform:matrix(0.158548,-0.003171,0.004999,0.249950,0,0);-ms-transform:matrix(0.158548,-0.003171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158548,-0.003171,0.004999,0.249950,0,0);}
.m46_c00446{transform:matrix(0.158652,-0.002062,0.003250,0.249979,0,0);-ms-transform:matrix(0.158652,-0.002062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158652,-0.002062,0.003250,0.249979,0,0);}
.m2a_c00446{transform:matrix(0.159297,-0.002071,0.003250,0.249979,0,0);-ms-transform:matrix(0.159297,-0.002071,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159297,-0.002071,0.003250,0.249979,0,0);}
.ma_c00446{transform:matrix(0.160856,-0.002091,0.003250,0.249979,0,0);-ms-transform:matrix(0.160856,-0.002091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160856,-0.002091,0.003250,0.249979,0,0);}
.m3_c00446{transform:matrix(0.161211,-0.002096,0.003250,0.249979,0,0);-ms-transform:matrix(0.161211,-0.002096,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161211,-0.002096,0.003250,0.249979,0,0);}
.ma9_c00446{transform:matrix(0.161213,-0.003224,0.004999,0.249950,0,0);-ms-transform:matrix(0.161213,-0.003224,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161213,-0.003224,0.004999,0.249950,0,0);}
.m32_c00446{transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);-ms-transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);}
.mc_c00446{transform:matrix(0.162261,-0.002109,0.003250,0.249979,0,0);-ms-transform:matrix(0.162261,-0.002109,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162261,-0.002109,0.003250,0.249979,0,0);}
.m5_c00446{transform:matrix(0.162346,-0.002111,0.003250,0.249979,0,0);-ms-transform:matrix(0.162346,-0.002111,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162346,-0.002111,0.003250,0.249979,0,0);}
.m41_c00446{transform:matrix(0.162871,-0.002117,0.003250,0.249979,0,0);-ms-transform:matrix(0.162871,-0.002117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162871,-0.002117,0.003250,0.249979,0,0);}
.m9f_c00446{transform:matrix(0.163557,-0.003271,0.004999,0.249950,0,0);-ms-transform:matrix(0.163557,-0.003271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163557,-0.003271,0.004999,0.249950,0,0);}
.mb7_c00446{transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.165116,-0.002147,0.003250,0.249979,0,0);-ms-transform:matrix(0.165116,-0.002147,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165116,-0.002147,0.003250,0.249979,0,0);}
.m94_c00446{transform:matrix(0.165347,-0.003307,0.004999,0.249950,0,0);-ms-transform:matrix(0.165347,-0.003307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165347,-0.003307,0.004999,0.249950,0,0);}
.m7e_c00446{transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);-ms-transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165612,-0.003312,0.004999,0.249950,0,0);}
.mc8_c00446{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00446{transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);-ms-transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165872,-0.003317,0.004999,0.249950,0,0);}
.m102_c00446{transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);}
.m91_c00446{transform:matrix(0.166492,-0.003330,0.004999,0.249950,0,0);-ms-transform:matrix(0.166492,-0.003330,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166492,-0.003330,0.004999,0.249950,0,0);}
.m3c_c00446{transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);-ms-transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167636,-0.002179,0.003250,0.249979,0,0);}
.m3a_c00446{transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);}
.mb0_c00446{transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);-ms-transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168856,-0.003377,0.004999,0.249950,0,0);}
.mb6_c00446{transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);}
.m103_c00446{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.m88_c00446{transform:matrix(0.169451,-0.003389,0.004999,0.249950,0,0);-ms-transform:matrix(0.169451,-0.003389,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169451,-0.003389,0.004999,0.249950,0,0);}
.m60_c00446{transform:matrix(0.169481,-0.003390,0.004999,0.249950,0,0);-ms-transform:matrix(0.169481,-0.003390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169481,-0.003390,0.004999,0.249950,0,0);}
.mc7_c00446{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.md7_c00446{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m83_c00446{transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);-ms-transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171101,-0.003422,0.004999,0.249950,0,0);}
.m2d_c00446{transform:matrix(0.172975,-0.002249,0.003250,0.249979,0,0);-ms-transform:matrix(0.172975,-0.002249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172975,-0.002249,0.003250,0.249979,0,0);}
.m89_c00446{transform:matrix(0.173270,-0.003465,0.004999,0.249950,0,0);-ms-transform:matrix(0.173270,-0.003465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173270,-0.003465,0.004999,0.249950,0,0);}
.m27_c00446{transform:matrix(0.173300,-0.002253,0.003250,0.249979,0,0);-ms-transform:matrix(0.173300,-0.002253,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173300,-0.002253,0.003250,0.249979,0,0);}
.m4d_c00446{transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173825,-0.002260,0.003250,0.249979,0,0);}
.m80_c00446{transform:matrix(0.174040,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174040,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174040,-0.003481,0.004999,0.249950,0,0);}
.m3b_c00446{transform:matrix(0.174435,-0.002268,0.003250,0.249979,0,0);-ms-transform:matrix(0.174435,-0.002268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174435,-0.002268,0.003250,0.249979,0,0);}
.mc4_c00446{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.ma3_c00446{transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);-ms-transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174760,-0.003495,0.004999,0.249950,0,0);}
.m1_c00446{transform:matrix(0.175750,-0.002285,0.003250,0.249979,0,0);-ms-transform:matrix(0.175750,-0.002285,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175750,-0.002285,0.003250,0.249979,0,0);}
.m57_c00446{transform:matrix(0.175780,-0.002285,0.003250,0.249979,0,0);-ms-transform:matrix(0.175780,-0.002285,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175780,-0.002285,0.003250,0.249979,0,0);}
.m47_c00446{transform:matrix(0.176205,-0.002291,0.003250,0.249979,0,0);-ms-transform:matrix(0.176205,-0.002291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176205,-0.002291,0.003250,0.249979,0,0);}
.me6_c00446{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00446{transform:matrix(0.177260,-0.003545,0.004999,0.249950,0,0);-ms-transform:matrix(0.177260,-0.003545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177260,-0.003545,0.004999,0.249950,0,0);}
.m68_c00446{transform:matrix(0.177724,-0.003554,0.004999,0.249950,0,0);-ms-transform:matrix(0.177724,-0.003554,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177724,-0.003554,0.004999,0.249950,0,0);}
.md6_c00446{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.178710,-0.002323,0.003250,0.249979,0,0);-ms-transform:matrix(0.178710,-0.002323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178710,-0.002323,0.003250,0.249979,0,0);}
.m74_c00446{transform:matrix(0.178959,-0.003579,0.004999,0.249950,0,0);-ms-transform:matrix(0.178959,-0.003579,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178959,-0.003579,0.004999,0.249950,0,0);}
.mfe_c00446{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.mb1_c00446{transform:matrix(0.179714,-0.003594,0.004999,0.249950,0,0);-ms-transform:matrix(0.179714,-0.003594,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179714,-0.003594,0.004999,0.249950,0,0);}
.mee_c00446{transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);}
.md8_c00446{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.mb8_c00446{transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180365,0.000000,0.000000,0.250000,0,0);}
.md5_c00446{transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180410,0.000000,0.000000,0.250000,0,0);}
.ma0_c00446{transform:matrix(0.180954,-0.003619,0.004999,0.249950,0,0);-ms-transform:matrix(0.180954,-0.003619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180954,-0.003619,0.004999,0.249950,0,0);}
.m1f_c00446{transform:matrix(0.181195,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181195,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181195,-0.002356,0.003250,0.249979,0,0);}
.mb5_c00446{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.m7a_c00446{transform:matrix(0.181549,-0.003631,0.004999,0.249950,0,0);-ms-transform:matrix(0.181549,-0.003631,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181549,-0.003631,0.004999,0.249950,0,0);}
.m4a_c00446{transform:matrix(0.182020,-0.002366,0.003250,0.249979,0,0);-ms-transform:matrix(0.182020,-0.002366,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182020,-0.002366,0.003250,0.249979,0,0);}
.m42_c00446{transform:matrix(0.182030,-0.002366,0.003250,0.249979,0,0);-ms-transform:matrix(0.182030,-0.002366,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182030,-0.002366,0.003250,0.249979,0,0);}
.m93_c00446{transform:matrix(0.182144,-0.003643,0.004999,0.249950,0,0);-ms-transform:matrix(0.182144,-0.003643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182144,-0.003643,0.004999,0.249950,0,0);}
.md3_c00446{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.mba_c00446{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m8b_c00446{transform:matrix(0.182878,-0.003658,0.004999,0.249950,0,0);-ms-transform:matrix(0.182878,-0.003658,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182878,-0.003658,0.004999,0.249950,0,0);}
.m2f_c00446{transform:matrix(0.183499,-0.002385,0.003250,0.249979,0,0);-ms-transform:matrix(0.183499,-0.002385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183499,-0.002385,0.003250,0.249979,0,0);}
.me8_c00446{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m5b_c00446{transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);-ms-transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184033,-0.003681,0.004999,0.249950,0,0);}
.ma4_c00446{transform:matrix(0.184698,-0.003694,0.004999,0.249950,0,0);-ms-transform:matrix(0.184698,-0.003694,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184698,-0.003694,0.004999,0.249950,0,0);}
.m44_c00446{transform:matrix(0.184884,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184884,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184884,-0.002403,0.003250,0.249979,0,0);}
.m50_c00446{transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);-ms-transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185069,-0.002406,0.003250,0.249979,0,0);}
.m43_c00446{transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185339,-0.002409,0.003250,0.249979,0,0);}
.m5e_c00446{transform:matrix(0.185853,-0.003717,0.004999,0.249950,0,0);-ms-transform:matrix(0.185853,-0.003717,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185853,-0.003717,0.004999,0.249950,0,0);}
.m90_c00446{transform:matrix(0.185928,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185928,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185928,-0.003719,0.004999,0.249950,0,0);}
.m2e_c00446{transform:matrix(0.186304,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186304,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186304,-0.002422,0.003250,0.249979,0,0);}
.m49_c00446{transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186314,-0.002422,0.003250,0.249979,0,0);}
.mac_c00446{transform:matrix(0.187253,-0.003745,0.004999,0.249950,0,0);-ms-transform:matrix(0.187253,-0.003745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187253,-0.003745,0.004999,0.249950,0,0);}
.mf4_c00446{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.188284,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188284,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188284,-0.002448,0.003250,0.249979,0,0);}
.m23_c00446{transform:matrix(0.188289,-0.002448,0.003250,0.249979,0,0);-ms-transform:matrix(0.188289,-0.002448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188289,-0.002448,0.003250,0.249979,0,0);}
.mad_c00446{transform:matrix(0.188362,-0.003767,0.004999,0.249950,0,0);-ms-transform:matrix(0.188362,-0.003767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188362,-0.003767,0.004999,0.249950,0,0);}
.m6c_c00446{transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);-ms-transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188502,-0.003770,0.004999,0.249950,0,0);}
.m40_c00446{transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);-ms-transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);}
.m28_c00446{transform:matrix(0.188614,-0.002452,0.003250,0.249979,0,0);-ms-transform:matrix(0.188614,-0.002452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188614,-0.002452,0.003250,0.249979,0,0);}
.m4e_c00446{transform:matrix(0.188869,-0.002455,0.003250,0.249979,0,0);-ms-transform:matrix(0.188869,-0.002455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188869,-0.002455,0.003250,0.249979,0,0);}
.me0_c00446{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m4f_c00446{transform:matrix(0.189034,-0.002457,0.003250,0.249979,0,0);-ms-transform:matrix(0.189034,-0.002457,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189034,-0.002457,0.003250,0.249979,0,0);}
.m1b_c00446{transform:matrix(0.189319,-0.002461,0.003250,0.249979,0,0);-ms-transform:matrix(0.189319,-0.002461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189319,-0.002461,0.003250,0.249979,0,0);}
.m75_c00446{transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);-ms-transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189707,-0.003794,0.004999,0.249950,0,0);}
.m95_c00446{transform:matrix(0.190502,-0.003810,0.004999,0.249950,0,0);-ms-transform:matrix(0.190502,-0.003810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190502,-0.003810,0.004999,0.249950,0,0);}
.me7_c00446{transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);}
.m7f_c00446{transform:matrix(0.190947,-0.003819,0.004999,0.249950,0,0);-ms-transform:matrix(0.190947,-0.003819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190947,-0.003819,0.004999,0.249950,0,0);}
.ma1_c00446{transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);-ms-transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191017,-0.003820,0.004999,0.249950,0,0);}
.maa_c00446{transform:matrix(0.191117,-0.003822,0.004999,0.249950,0,0);-ms-transform:matrix(0.191117,-0.003822,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191117,-0.003822,0.004999,0.249950,0,0);}
.m5c_c00446{transform:matrix(0.191177,-0.003824,0.004999,0.249950,0,0);-ms-transform:matrix(0.191177,-0.003824,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191177,-0.003824,0.004999,0.249950,0,0);}
.m10_c00446{transform:matrix(0.191769,-0.002493,0.003250,0.249979,0,0);-ms-transform:matrix(0.191769,-0.002493,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191769,-0.002493,0.003250,0.249979,0,0);}
.mdb_c00446{transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191780,0.000000,0.000000,0.250000,0,0);}
.md0_c00446{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m53_c00446{transform:matrix(0.192394,-0.002501,0.003250,0.249979,0,0);-ms-transform:matrix(0.192394,-0.002501,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192394,-0.002501,0.003250,0.249979,0,0);}
.ma8_c00446{transform:matrix(0.192581,-0.003852,0.004999,0.249950,0,0);-ms-transform:matrix(0.192581,-0.003852,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192581,-0.003852,0.004999,0.249950,0,0);}
.mbc_c00446{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m7d_c00446{transform:matrix(0.192841,-0.003857,0.004999,0.249950,0,0);-ms-transform:matrix(0.192841,-0.003857,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192841,-0.003857,0.004999,0.249950,0,0);}
.m79_c00446{transform:matrix(0.193006,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.193006,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193006,-0.003860,0.004999,0.249950,0,0);}
.m82_c00446{transform:matrix(0.193441,-0.003869,0.004999,0.249950,0,0);-ms-transform:matrix(0.193441,-0.003869,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193441,-0.003869,0.004999,0.249950,0,0);}
.mbd_c00446{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.193634,-0.002517,0.003250,0.249979,0,0);-ms-transform:matrix(0.193634,-0.002517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193634,-0.002517,0.003250,0.249979,0,0);}
.m5a_c00446{transform:matrix(0.193746,-0.003875,0.004999,0.249950,0,0);-ms-transform:matrix(0.193746,-0.003875,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193746,-0.003875,0.004999,0.249950,0,0);}
.m8a_c00446{transform:matrix(0.193811,-0.003876,0.004999,0.249950,0,0);-ms-transform:matrix(0.193811,-0.003876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193811,-0.003876,0.004999,0.249950,0,0);}
.m9_c00446{transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194024,-0.002522,0.003250,0.249979,0,0);}
.md9_c00446{transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.194184,-0.002524,0.003250,0.249979,0,0);-ms-transform:matrix(0.194184,-0.002524,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194184,-0.002524,0.003250,0.249979,0,0);}
.maf_c00446{transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);-ms-transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194291,-0.003886,0.004999,0.249950,0,0);}
.mb9_c00446{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.195039,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195039,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195039,-0.002536,0.003250,0.249979,0,0);}
.m104_c00446{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m71_c00446{transform:matrix(0.195606,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195606,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195606,-0.003912,0.004999,0.249950,0,0);}
.m3e_c00446{transform:matrix(0.196213,-0.002551,0.003250,0.249979,0,0);-ms-transform:matrix(0.196213,-0.002551,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196213,-0.002551,0.003250,0.249979,0,0);}
.mc1_c00446{transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196580,0.000000,0.000000,0.250000,0,0);}
.m96_c00446{transform:matrix(0.196731,-0.003935,0.004999,0.249950,0,0);-ms-transform:matrix(0.196731,-0.003935,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196731,-0.003935,0.004999,0.249950,0,0);}
.m72_c00446{transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);-ms-transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196941,-0.003939,0.004999,0.249950,0,0);}
.m8f_c00446{transform:matrix(0.196961,-0.003939,0.004999,0.249950,0,0);-ms-transform:matrix(0.196961,-0.003939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196961,-0.003939,0.004999,0.249950,0,0);}
.mda_c00446{transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);}
.mae_c00446{transform:matrix(0.197121,-0.003942,0.004999,0.249950,0,0);-ms-transform:matrix(0.197121,-0.003942,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197121,-0.003942,0.004999,0.249950,0,0);}
.m86_c00446{transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);-ms-transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197346,-0.003947,0.004999,0.249950,0,0);}
.m31_c00446{transform:matrix(0.197638,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197638,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197638,-0.002569,0.003250,0.249979,0,0);}
.m70_c00446{transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);-ms-transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198425,-0.003969,0.004999,0.249950,0,0);}
.ma6_c00446{transform:matrix(0.198970,-0.003979,0.004999,0.249950,0,0);-ms-transform:matrix(0.198970,-0.003979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198970,-0.003979,0.004999,0.249950,0,0);}
.m87_c00446{transform:matrix(0.199030,-0.003981,0.004999,0.249950,0,0);-ms-transform:matrix(0.199030,-0.003981,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199030,-0.003981,0.004999,0.249950,0,0);}
.m4_c00446{transform:matrix(0.199183,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199183,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199183,-0.002589,0.003250,0.249979,0,0);}
.m38_c00446{transform:matrix(0.199233,-0.002590,0.003250,0.249979,0,0);-ms-transform:matrix(0.199233,-0.002590,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199233,-0.002590,0.003250,0.249979,0,0);}
.mc2_c00446{transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200040,0.000000,0.000000,0.250000,0,0);}
.mf1_c00446{transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);}
.m7b_c00446{transform:matrix(0.201535,-0.004031,0.004999,0.249950,0,0);-ms-transform:matrix(0.201535,-0.004031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201535,-0.004031,0.004999,0.249950,0,0);}
.mef_c00446{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.mc9_c00446{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.202453,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202453,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202453,-0.002632,0.003250,0.249979,0,0);}
.m98_c00446{transform:matrix(0.202539,-0.004051,0.004999,0.249950,0,0);-ms-transform:matrix(0.202539,-0.004051,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202539,-0.004051,0.004999,0.249950,0,0);}
.m36_c00446{transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202563,-0.002633,0.003250,0.249979,0,0);}
.mfc_c00446{transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);}
.mbf_c00446{transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202935,0.000000,0.000000,0.250000,0,0);}
.m97_c00446{transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);-ms-transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203279,-0.004066,0.004999,0.249950,0,0);}
.m37_c00446{transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203398,-0.002644,0.003250,0.249979,0,0);}
.mb_c00446{transform:matrix(0.203438,-0.002645,0.003250,0.249979,0,0);-ms-transform:matrix(0.203438,-0.002645,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203438,-0.002645,0.003250,0.249979,0,0);}
.me9_c00446{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m65_c00446{transform:matrix(0.203904,-0.004078,0.004999,0.249950,0,0);-ms-transform:matrix(0.203904,-0.004078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203904,-0.004078,0.004999,0.249950,0,0);}
.m39_c00446{transform:matrix(0.203993,-0.002652,0.003250,0.249979,0,0);-ms-transform:matrix(0.203993,-0.002652,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203993,-0.002652,0.003250,0.249979,0,0);}
.m54_c00446{transform:matrix(0.204398,-0.002657,0.003250,0.249979,0,0);-ms-transform:matrix(0.204398,-0.002657,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204398,-0.002657,0.003250,0.249979,0,0);}
.m101_c00446{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.m81_c00446{transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);-ms-transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205269,-0.004105,0.004999,0.249950,0,0);}
.m56_c00446{transform:matrix(0.205273,-0.002669,0.003250,0.249979,0,0);-ms-transform:matrix(0.205273,-0.002669,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205273,-0.002669,0.003250,0.249979,0,0);}
.me3_c00446{transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205385,0.000000,0.000000,0.250000,0,0);}
.mc3_c00446{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.ma5_c00446{transform:matrix(0.205584,-0.004112,0.004999,0.249950,0,0);-ms-transform:matrix(0.205584,-0.004112,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205584,-0.004112,0.004999,0.249950,0,0);}
.m1c_c00446{transform:matrix(0.205853,-0.002676,0.003250,0.249979,0,0);-ms-transform:matrix(0.205853,-0.002676,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205853,-0.002676,0.003250,0.249979,0,0);}
.m7c_c00446{transform:matrix(0.205924,-0.004118,0.004999,0.249950,0,0);-ms-transform:matrix(0.205924,-0.004118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205924,-0.004118,0.004999,0.249950,0,0);}
.me2_c00446{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m52_c00446{transform:matrix(0.206128,-0.002680,0.003250,0.249979,0,0);-ms-transform:matrix(0.206128,-0.002680,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206128,-0.002680,0.003250,0.249979,0,0);}
.mb4_c00446{transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);}
.m9d_c00446{transform:matrix(0.206434,-0.004129,0.004999,0.249950,0,0);-ms-transform:matrix(0.206434,-0.004129,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206434,-0.004129,0.004999,0.249950,0,0);}
.mbb_c00446{transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206670,0.000000,0.000000,0.250000,0,0);}
.m84_c00446{transform:matrix(0.206694,-0.004134,0.004999,0.249950,0,0);-ms-transform:matrix(0.206694,-0.004134,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206694,-0.004134,0.004999,0.249950,0,0);}
.mc5_c00446{transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.206968,-0.002691,0.003250,0.249979,0,0);-ms-transform:matrix(0.206968,-0.002691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206968,-0.002691,0.003250,0.249979,0,0);}
.m6e_c00446{transform:matrix(0.208228,-0.004165,0.004999,0.249950,0,0);-ms-transform:matrix(0.208228,-0.004165,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208228,-0.004165,0.004999,0.249950,0,0);}
.m4b_c00446{transform:matrix(0.208437,-0.002710,0.003250,0.249979,0,0);-ms-transform:matrix(0.208437,-0.002710,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208437,-0.002710,0.003250,0.249979,0,0);}
.m99_c00446{transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);}
.m51_c00446{transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-ms-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208567,-0.002711,0.003250,0.249979,0,0);}
.m13_c00446{transform:matrix(0.208702,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208702,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208702,-0.002713,0.003250,0.249979,0,0);}
.mdf_c00446{transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);}
.m9e_c00446{transform:matrix(0.209063,-0.004181,0.004999,0.249950,0,0);-ms-transform:matrix(0.209063,-0.004181,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209063,-0.004181,0.004999,0.249950,0,0);}
.m6f_c00446{transform:matrix(0.209433,-0.004189,0.004999,0.249950,0,0);-ms-transform:matrix(0.209433,-0.004189,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209433,-0.004189,0.004999,0.249950,0,0);}
.m66_c00446{transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-ms-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210163,-0.004203,0.004999,0.249950,0,0);}
.m2_c00446{transform:matrix(0.210567,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210567,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210567,-0.002737,0.003250,0.249979,0,0);}
.m6d_c00446{transform:matrix(0.211243,-0.004225,0.004999,0.249950,0,0);-ms-transform:matrix(0.211243,-0.004225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211243,-0.004225,0.004999,0.249950,0,0);}
.mcc_c00446{transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211315,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.211747,-0.002753,0.003250,0.249979,0,0);-ms-transform:matrix(0.211747,-0.002753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211747,-0.002753,0.003250,0.249979,0,0);}
.m55_c00446{transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-ms-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211977,-0.002756,0.003250,0.249979,0,0);}
.me5_c00446{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m6a_c00446{transform:matrix(0.212882,-0.004258,0.004999,0.249950,0,0);-ms-transform:matrix(0.212882,-0.004258,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212882,-0.004258,0.004999,0.249950,0,0);}
.mbe_c00446{transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);}
.m8d_c00446{transform:matrix(0.213042,-0.004261,0.004999,0.249950,0,0);-ms-transform:matrix(0.213042,-0.004261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213042,-0.004261,0.004999,0.249950,0,0);}
.m8e_c00446{transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);-ms-transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213707,-0.004274,0.004999,0.249950,0,0);}
.m18_c00446{transform:matrix(0.213867,-0.002780,0.003250,0.249979,0,0);-ms-transform:matrix(0.213867,-0.002780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213867,-0.002780,0.003250,0.249979,0,0);}
.m100_c00446{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.214552,-0.002789,0.003250,0.249979,0,0);-ms-transform:matrix(0.214552,-0.002789,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214552,-0.002789,0.003250,0.249979,0,0);}
.m69_c00446{transform:matrix(0.214677,-0.004294,0.004999,0.249950,0,0);-ms-transform:matrix(0.214677,-0.004294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214677,-0.004294,0.004999,0.249950,0,0);}
.me1_c00446{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.215112,-0.002796,0.003250,0.249979,0,0);-ms-transform:matrix(0.215112,-0.002796,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215112,-0.002796,0.003250,0.249979,0,0);}
.mdc_c00446{transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);}
.m1d_c00446{transform:matrix(0.215352,-0.002800,0.003250,0.249979,0,0);-ms-transform:matrix(0.215352,-0.002800,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215352,-0.002800,0.003250,0.249979,0,0);}
.m9b_c00446{transform:matrix(0.215392,-0.004308,0.004999,0.249950,0,0);-ms-transform:matrix(0.215392,-0.004308,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215392,-0.004308,0.004999,0.249950,0,0);}
.m1e_c00446{transform:matrix(0.216022,-0.002808,0.003250,0.249979,0,0);-ms-transform:matrix(0.216022,-0.002808,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216022,-0.002808,0.003250,0.249979,0,0);}
.mcf_c00446{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.mff_c00446{transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);}
.mf5_c00446{transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);}
.ma2_c00446{transform:matrix(0.217721,-0.004354,0.004999,0.249950,0,0);-ms-transform:matrix(0.217721,-0.004354,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217721,-0.004354,0.004999,0.249950,0,0);}
.mf3_c00446{transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.218532,-0.002841,0.003250,0.249979,0,0);-ms-transform:matrix(0.218532,-0.002841,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218532,-0.002841,0.003250,0.249979,0,0);}
.mf0_c00446{transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);}
.mc6_c00446{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.219721,-0.002856,0.003250,0.249979,0,0);-ms-transform:matrix(0.219721,-0.002856,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219721,-0.002856,0.003250,0.249979,0,0);}
.m4c_c00446{transform:matrix(0.220481,-0.002866,0.003250,0.249979,0,0);-ms-transform:matrix(0.220481,-0.002866,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220481,-0.002866,0.003250,0.249979,0,0);}
.m21_c00446{transform:matrix(0.220776,-0.002870,0.003250,0.249979,0,0);-ms-transform:matrix(0.220776,-0.002870,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220776,-0.002870,0.003250,0.249979,0,0);}
.med_c00446{transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);}
.mca_c00446{transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);-ms-transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);}
.m9c_c00446{transform:matrix(0.222171,-0.004443,0.004999,0.249950,0,0);-ms-transform:matrix(0.222171,-0.004443,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222171,-0.004443,0.004999,0.249950,0,0);}
.m34_c00446{transform:matrix(0.222756,-0.002896,0.003250,0.249979,0,0);-ms-transform:matrix(0.222756,-0.002896,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222756,-0.002896,0.003250,0.249979,0,0);}
.m20_c00446{transform:matrix(0.223291,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223291,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223291,-0.002903,0.003250,0.249979,0,0);}
.m48_c00446{transform:matrix(0.223871,-0.002910,0.003250,0.249979,0,0);-ms-transform:matrix(0.223871,-0.002910,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223871,-0.002910,0.003250,0.249979,0,0);}
.mfd_c00446{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.me4_c00446{transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);}
.mf7_c00446{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.225591,-0.002933,0.003250,0.249979,0,0);-ms-transform:matrix(0.225591,-0.002933,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225591,-0.002933,0.003250,0.249979,0,0);}
.m12_c00446{transform:matrix(0.227121,-0.002953,0.003250,0.249979,0,0);-ms-transform:matrix(0.227121,-0.002953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227121,-0.002953,0.003250,0.249979,0,0);}
.mec_c00446{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m58_c00446{transform:matrix(0.228831,-0.002975,0.003250,0.249979,0,0);-ms-transform:matrix(0.228831,-0.002975,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228831,-0.002975,0.003250,0.249979,0,0);}
.m85_c00446{transform:matrix(0.228904,-0.004578,0.004999,0.249950,0,0);-ms-transform:matrix(0.228904,-0.004578,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228904,-0.004578,0.004999,0.249950,0,0);}
.m35_c00446{transform:matrix(0.230416,-0.002995,0.003250,0.249979,0,0);-ms-transform:matrix(0.230416,-0.002995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230416,-0.002995,0.003250,0.249979,0,0);}
.mf2_c00446{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.232175,-0.003018,0.003250,0.249979,0,0);-ms-transform:matrix(0.232175,-0.003018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232175,-0.003018,0.003250,0.249979,0,0);}
.mce_c00446{transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);}
.mab_c00446{transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);-ms-transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232254,-0.004645,0.004999,0.249950,0,0);}
.m73_c00446{transform:matrix(0.232668,-0.004653,0.004999,0.249950,0,0);-ms-transform:matrix(0.232668,-0.004653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232668,-0.004653,0.004999,0.249950,0,0);}
.m67_c00446{transform:matrix(0.235963,-0.004719,0.004999,0.249950,0,0);-ms-transform:matrix(0.235963,-0.004719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235963,-0.004719,0.004999,0.249950,0,0);}
.md_c00446{transform:matrix(0.236670,-0.003077,0.003250,0.249979,0,0);-ms-transform:matrix(0.236670,-0.003077,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236670,-0.003077,0.003250,0.249979,0,0);}
.mf6_c00446{transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);}
.m6b_c00446{transform:matrix(0.241722,-0.004834,0.004999,0.249950,0,0);-ms-transform:matrix(0.241722,-0.004834,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241722,-0.004834,0.004999,0.249950,0,0);}
.m15_c00446{transform:matrix(0.241805,-0.003143,0.003250,0.249979,0,0);-ms-transform:matrix(0.241805,-0.003143,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241805,-0.003143,0.003250,0.249979,0,0);}
.m24_c00446{transform:matrix(0.242659,-0.003155,0.003250,0.249979,0,0);-ms-transform:matrix(0.242659,-0.003155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242659,-0.003155,0.003250,0.249979,0,0);}
.mfa_c00446{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.243244,-0.003162,0.003250,0.249979,0,0);-ms-transform:matrix(0.243244,-0.003162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243244,-0.003162,0.003250,0.249979,0,0);}
.m78_c00446{transform:matrix(0.243266,-0.004865,0.004999,0.249950,0,0);-ms-transform:matrix(0.243266,-0.004865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243266,-0.004865,0.004999,0.249950,0,0);}
.mf8_c00446{transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);}
.mcb_c00446{transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);}
.mde_c00446{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.mdd_c00446{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.mf9_c00446{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.md1_c00446{transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);}
.m61_c00446{transform:matrix(0.257788,-0.005156,0.004999,0.249950,0,0);-ms-transform:matrix(0.257788,-0.005156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257788,-0.005156,0.004999,0.249950,0,0);}
.m1a_c00446{transform:matrix(0.262173,-0.003408,0.003250,0.249979,0,0);-ms-transform:matrix(0.262173,-0.003408,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262173,-0.003408,0.003250,0.249979,0,0);}
.mcd_c00446{transform:matrix(0.263345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263345,0.000000,0.000000,0.250000,0,0);}
.m64_c00446{transform:matrix(0.263912,-0.005278,0.004999,0.249950,0,0);-ms-transform:matrix(0.263912,-0.005278,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263912,-0.005278,0.004999,0.249950,0,0);}
.mb3_c00446{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m62_c00446{transform:matrix(0.267497,-0.005350,0.004999,0.249950,0,0);-ms-transform:matrix(0.267497,-0.005350,0.004999,0.249950,0,0);-webkit-transform:matrix(0.267497,-0.005350,0.004999,0.249950,0,0);}
.ma7_c00446{transform:matrix(0.268121,-0.005362,0.004999,0.249950,0,0);-ms-transform:matrix(0.268121,-0.005362,0.004999,0.249950,0,0);-webkit-transform:matrix(0.268121,-0.005362,0.004999,0.249950,0,0);}
.md2_c00446{transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);}
.meb_c00446{transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{transform:matrix(0.281626,-0.003661,0.003250,0.249979,0,0);-ms-transform:matrix(0.281626,-0.003661,0.003250,0.249979,0,0);-webkit-transform:matrix(0.281626,-0.003661,0.003250,0.249979,0,0);}
.mfb_c00446{transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);}
.m63_c00446{transform:matrix(0.292107,-0.005842,0.004999,0.249950,0,0);-ms-transform:matrix(0.292107,-0.005842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.292107,-0.005842,0.004999,0.249950,0,0);}
.m76_c00446{transform:matrix(0.295211,-0.005904,0.004999,0.249950,0,0);-ms-transform:matrix(0.295211,-0.005904,0.004999,0.249950,0,0);-webkit-transform:matrix(0.295211,-0.005904,0.004999,0.249950,0,0);}
.m5d_c00446{transform:matrix(0.352699,-0.007054,0.004999,0.249950,0,0);-ms-transform:matrix(0.352699,-0.007054,0.004999,0.249950,0,0);-webkit-transform:matrix(0.352699,-0.007054,0.004999,0.249950,0,0);}
.m77_c00446{transform:matrix(0.366637,-0.007333,0.004999,0.249950,0,0);-ms-transform:matrix(0.366637,-0.007333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.366637,-0.007333,0.004999,0.249950,0,0);}
.mea_c00446{transform:matrix(0.463360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463360,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:0.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:0.000000px;}
.fc0_c00446{color:transparent;}
.fs12_c00446{font-size:54.600000px;}
.fs13_c00446{font-size:55.650000px;}
.fs14_c00446{font-size:57.750000px;}
.fs3_c00446{font-size:57.754880px;}
.fsb_c00446{font-size:57.761549px;}
.fs15_c00446{font-size:58.800000px;}
.fs2_c00446{font-size:58.804968px;}
.fs10_c00446{font-size:59.850000px;}
.fs5_c00446{font-size:59.855057px;}
.fse_c00446{font-size:59.861969px;}
.fs11_c00446{font-size:60.900000px;}
.fs9_c00446{font-size:60.912179px;}
.fsc_c00446{font-size:61.962389px;}
.fs6_c00446{font-size:63.005323px;}
.fsa_c00446{font-size:63.012599px;}
.fsd_c00446{font-size:64.062809px;}
.fsf_c00446{font-size:65.100000px;}
.fs1_c00446{font-size:65.105501px;}
.fs7_c00446{font-size:66.155589px;}
.fs8_c00446{font-size:67.213439px;}
.fs4_c00446{font-size:68.255767px;}
.fs0_c00446{font-size:69.300000px;}
.y0_c00446{bottom:0.000000px;}
.ybb_c00446{bottom:23.875500px;}
.yba_c00446{bottom:42.309000px;}
.yb9_c00446{bottom:57.804000px;}
.yb8_c00446{bottom:74.449500px;}
.yb7_c00446{bottom:91.581000px;}
.yb6_c00446{bottom:108.894000px;}
.yb5_c00446{bottom:125.598000px;}
.yb4_c00446{bottom:142.069500px;}
.yb3_c00446{bottom:159.840000px;}
.yb2_c00446{bottom:175.173000px;}
.yb1_c00446{bottom:192.653730px;}
.ya9_c00446{bottom:209.340030px;}
.ya8_c00446{bottom:209.340420px;}
.yaa_c00446{bottom:209.340450px;}
.yab_c00446{bottom:209.340960px;}
.yad_c00446{bottom:209.341020px;}
.yaf_c00446{bottom:209.341350px;}
.yac_c00446{bottom:209.341380px;}
.yb0_c00446{bottom:209.341680px;}
.yae_c00446{bottom:209.341770px;}
.ya5_c00446{bottom:226.406520px;}
.ya4_c00446{bottom:226.406700px;}
.ya6_c00446{bottom:226.406730px;}
.ya7_c00446{bottom:226.406910px;}
.ya1_c00446{bottom:226.407030px;}
.ya2_c00446{bottom:226.407270px;}
.ya3_c00446{bottom:226.407420px;}
.y9a_c00446{bottom:243.663750px;}
.y9c_c00446{bottom:243.663840px;}
.y99_c00446{bottom:243.663960px;}
.y9d_c00446{bottom:243.664050px;}
.y9b_c00446{bottom:243.664230px;}
.y9e_c00446{bottom:243.664530px;}
.ya0_c00446{bottom:243.664920px;}
.y9f_c00446{bottom:243.665190px;}
.y95_c00446{bottom:260.946030px;}
.y96_c00446{bottom:260.946540px;}
.y94_c00446{bottom:260.946750px;}
.y92_c00446{bottom:260.946930px;}
.y97_c00446{bottom:260.947050px;}
.y98_c00446{bottom:260.947080px;}
.y93_c00446{bottom:260.947140px;}
.y91_c00446{bottom:260.947440px;}
.y90_c00446{bottom:260.947560px;}
.y8d_c00446{bottom:277.716060px;}
.y88_c00446{bottom:277.716150px;}
.y8e_c00446{bottom:277.716210px;}
.y8a_c00446{bottom:277.716240px;}
.y8f_c00446{bottom:277.716300px;}
.y89_c00446{bottom:277.716360px;}
.y8c_c00446{bottom:277.716540px;}
.y8b_c00446{bottom:277.716900px;}
.y87_c00446{bottom:295.568340px;}
.y85_c00446{bottom:295.568820px;}
.y81_c00446{bottom:295.568850px;}
.y86_c00446{bottom:295.569000px;}
.y82_c00446{bottom:295.569090px;}
.y80_c00446{bottom:295.569240px;}
.y84_c00446{bottom:295.569390px;}
.y83_c00446{bottom:295.569780px;}
.y7f_c00446{bottom:295.569960px;}
.y78_c00446{bottom:312.458610px;}
.y79_c00446{bottom:312.459150px;}
.y77_c00446{bottom:312.459270px;}
.y7a_c00446{bottom:312.459570px;}
.y7b_c00446{bottom:312.459810px;}
.y76_c00446{bottom:312.459840px;}
.y7c_c00446{bottom:312.460170px;}
.y7d_c00446{bottom:312.460290px;}
.y7e_c00446{bottom:312.460530px;}
.y6e_c00446{bottom:329.256330px;}
.y6f_c00446{bottom:329.257080px;}
.y70_c00446{bottom:329.257710px;}
.y71_c00446{bottom:329.257890px;}
.y73_c00446{bottom:329.257980px;}
.y72_c00446{bottom:329.258040px;}
.y75_c00446{bottom:329.258070px;}
.y74_c00446{bottom:329.258730px;}
.y6c_c00446{bottom:344.777100px;}
.y6d_c00446{bottom:344.777250px;}
.y6a_c00446{bottom:344.777700px;}
.y6b_c00446{bottom:344.777790px;}
.y69_c00446{bottom:344.778030px;}
.y66_c00446{bottom:344.778150px;}
.y68_c00446{bottom:344.778510px;}
.y65_c00446{bottom:344.778570px;}
.y67_c00446{bottom:344.778600px;}
.y5d_c00446{bottom:359.374500px;}
.y5e_c00446{bottom:359.849490px;}
.y5f_c00446{bottom:361.474680px;}
.y60_c00446{bottom:362.221890px;}
.y61_c00446{bottom:362.441400px;}
.y62_c00446{bottom:363.538560px;}
.y63_c00446{bottom:363.905790px;}
.y64_c00446{bottom:364.445790px;}
.y5a_c00446{bottom:377.819614px;}
.y59_c00446{bottom:377.819653px;}
.y5b_c00446{bottom:377.819685px;}
.y58_c00446{bottom:377.820202px;}
.y5c_c00446{bottom:377.820418px;}
.y57_c00446{bottom:377.820462px;}
.y56_c00446{bottom:377.820610px;}
.y4d_c00446{bottom:392.834722px;}
.y4e_c00446{bottom:393.018484px;}
.y4f_c00446{bottom:393.325080px;}
.y50_c00446{bottom:393.506248px;}
.y51_c00446{bottom:394.154467px;}
.y52_c00446{bottom:394.563360px;}
.y53_c00446{bottom:394.970613px;}
.y54_c00446{bottom:395.181583px;}
.y55_c00446{bottom:395.899879px;}
.y44_c00446{bottom:410.656216px;}
.y45_c00446{bottom:410.925990px;}
.y46_c00446{bottom:411.145249px;}
.y47_c00446{bottom:411.739444px;}
.y48_c00446{bottom:411.998295px;}
.y49_c00446{bottom:412.381675px;}
.y4a_c00446{bottom:412.892824px;}
.y4b_c00446{bottom:413.418055px;}
.y4c_c00446{bottom:413.542507px;}
.y3d_c00446{bottom:427.128513px;}
.y3e_c00446{bottom:427.756563px;}
.y3f_c00446{bottom:428.038128px;}
.y40_c00446{bottom:428.967517px;}
.y41_c00446{bottom:429.191727px;}
.y42_c00446{bottom:429.878418px;}
.y43_c00446{bottom:430.409740px;}
.y34_c00446{bottom:442.521877px;}
.y35_c00446{bottom:442.813575px;}
.y36_c00446{bottom:443.293434px;}
.y37_c00446{bottom:443.980150px;}
.y38_c00446{bottom:445.020732px;}
.y39_c00446{bottom:445.376098px;}
.y3a_c00446{bottom:446.322366px;}
.y3b_c00446{bottom:447.007815px;}
.y3c_c00446{bottom:447.478531px;}
.y2c_c00446{bottom:460.611315px;}
.y2d_c00446{bottom:461.161546px;}
.y2e_c00446{bottom:461.408710px;}
.y2f_c00446{bottom:462.013459px;}
.y30_c00446{bottom:462.542164px;}
.y31_c00446{bottom:463.208704px;}
.y32_c00446{bottom:463.855258px;}
.y33_c00446{bottom:463.999470px;}
.y24_c00446{bottom:478.971703px;}
.y25_c00446{bottom:479.355279px;}
.y26_c00446{bottom:479.563537px;}
.y27_c00446{bottom:480.227731px;}
.y28_c00446{bottom:480.567190px;}
.y29_c00446{bottom:481.229901px;}
.y2a_c00446{bottom:481.398451px;}
.y2b_c00446{bottom:481.959412px;}
.y1b_c00446{bottom:491.135631px;}
.y1c_c00446{bottom:491.448604px;}
.y1d_c00446{bottom:492.427846px;}
.y1e_c00446{bottom:493.587537px;}
.y1f_c00446{bottom:493.945120px;}
.y20_c00446{bottom:495.928590px;}
.y21_c00446{bottom:496.442514px;}
.y22_c00446{bottom:497.928060px;}
.y23_c00446{bottom:498.536778px;}
.y14_c00446{bottom:510.298939px;}
.y15_c00446{bottom:510.786465px;}
.y16_c00446{bottom:511.101721px;}
.y17_c00446{bottom:512.128828px;}
.y18_c00446{bottom:513.592555px;}
.y19_c00446{bottom:514.297953px;}
.y1a_c00446{bottom:514.638865px;}
.yc_c00446{bottom:526.773801px;}
.yd_c00446{bottom:527.548596px;}
.ye_c00446{bottom:527.939025px;}
.yf_c00446{bottom:529.126627px;}
.y10_c00446{bottom:529.375887px;}
.y11_c00446{bottom:530.669902px;}
.y12_c00446{bottom:531.065400px;}
.y13_c00446{bottom:531.485419px;}
.y2_c00446{bottom:545.671500px;}
.y3_c00446{bottom:546.376503px;}
.y4_c00446{bottom:546.544339px;}
.y5_c00446{bottom:546.798034px;}
.y6_c00446{bottom:547.334479px;}
.y7_c00446{bottom:547.664439px;}
.y8_c00446{bottom:548.026768px;}
.y9_c00446{bottom:548.314920px;}
.ya_c00446{bottom:549.045039px;}
.yb_c00446{bottom:549.310999px;}
.y1_c00446{bottom:559.710000px;}
.h13_c00446{height:54.600000px;}
.h14_c00446{height:55.650000px;}
.h15_c00446{height:57.750000px;}
.h4_c00446{height:57.754880px;}
.hc_c00446{height:57.761549px;}
.h16_c00446{height:58.800000px;}
.h3_c00446{height:58.804968px;}
.h11_c00446{height:59.850000px;}
.h6_c00446{height:59.855057px;}
.hf_c00446{height:59.861969px;}
.h12_c00446{height:60.900000px;}
.ha_c00446{height:60.912179px;}
.hd_c00446{height:61.962389px;}
.h7_c00446{height:63.005323px;}
.hb_c00446{height:63.012599px;}
.he_c00446{height:64.062809px;}
.h10_c00446{height:65.100000px;}
.h2_c00446{height:65.105501px;}
.h8_c00446{height:66.155589px;}
.h9_c00446{height:67.213439px;}
.h5_c00446{height:68.255767px;}
.h1_c00446{height:69.300000px;}
.h0_c00446{height:608.250000px;}
.w0_c00446{width:359.100000px;}
.w1_c00446{width:359.250000px;}
.x0_c00446{left:0.000000px;}
.x42_c00446{left:10.522470px;}
.x47_c00446{left:11.871330px;}
.x2_c00446{left:13.128000px;}
.x20_c00446{left:14.164626px;}
.x65_c00446{left:15.923910px;}
.x70_c00446{left:17.010000px;}
.x66_c00446{left:19.170000px;}
.x72_c00446{left:20.790000px;}
.x18_c00446{left:24.381180px;}
.x2b_c00446{left:30.742904px;}
.x73_c00446{left:32.130000px;}
.x5e_c00446{left:33.208020px;}
.x54_c00446{left:34.287180px;}
.x33_c00446{left:37.113449px;}
.x3e_c00446{left:38.863500px;}
.x50_c00446{left:41.577180px;}
.x13_c00446{left:43.391543px;}
.x21_c00446{left:48.979023px;}
.xc_c00446{left:52.262171px;}
.x25_c00446{left:53.813819px;}
.x19_c00446{left:57.007965px;}
.x38_c00446{left:59.275967px;}
.x14_c00446{left:63.141282px;}
.x67_c00446{left:64.260000px;}
.x2e_c00446{left:66.020573px;}
.x3_c00446{left:67.359000px;}
.x78_c00446{left:69.390000px;}
.xd_c00446{left:71.793396px;}
.x7b_c00446{left:73.170000px;}
.x5f_c00446{left:74.256930px;}
.x39_c00446{left:75.750896px;}
.x4c_c00446{left:76.955160px;}
.x4_c00446{left:80.269500px;}
.x51_c00446{left:82.085880px;}
.x74_c00446{left:83.430000px;}
.x3b_c00446{left:86.414582px;}
.x2f_c00446{left:89.525885px;}
.x6b_c00446{left:93.420000px;}
.x5a_c00446{left:94.510530px;}
.x1a_c00446{left:95.667924px;}
.x43_c00446{left:97.479240px;}
.x5_c00446{left:99.784500px;}
.x61_c00446{left:101.260920px;}
.x81_c00446{left:103.950000px;}
.x1b_c00446{left:107.594792px;}
.x7f_c00446{left:109.080000px;}
.x34_c00446{left:111.111879px;}
.x3c_c00446{left:113.146106px;}
.x26_c00446{left:114.614019px;}
.x57_c00446{left:115.844040px;}
.x68_c00446{left:118.260000px;}
.x6c_c00446{left:119.340000px;}
.x48_c00446{left:120.433710px;}
.x55_c00446{left:123.674910px;}
.x82_c00446{left:124.740000px;}
.x1_c00446{left:127.440000px;}
.x7c_c00446{left:130.140000px;}
.xe_c00446{left:131.180495px;}
.x35_c00446{left:134.600984px;}
.x5b_c00446{left:137.718810px;}
.x58_c00446{left:139.609050px;}
.x6_c00446{left:141.049500px;}
.xf_c00446{left:143.660864px;}
.x62_c00446{left:145.549620px;}
.x79_c00446{left:146.610000px;}
.x44_c00446{left:147.708840px;}
.x49_c00446{left:149.329260px;}
.x69_c00446{left:151.200000px;}
.x27_c00446{left:152.398532px;}
.x3d_c00446{left:156.078860px;}
.x52_c00446{left:157.431000px;}
.x22_c00446{left:159.167390px;}
.x7_c00446{left:166.431000px;}
.x4d_c00446{left:167.693430px;}
.x36_c00446{left:169.400381px;}
.x3a_c00446{left:171.838892px;}
.x1c_c00446{left:173.731686px;}
.x3f_c00446{left:181.233000px;}
.x30_c00446{left:185.650133px;}
.x4a_c00446{left:189.027630px;}
.x1d_c00446{left:190.875903px;}
.x40_c00446{left:192.208500px;}
.x8_c00446{left:194.302500px;}
.x45_c00446{left:196.857990px;}
.x63_c00446{left:197.940060px;}
.x28_c00446{left:199.977908px;}
.x4b_c00446{left:202.530030px;}
.x10_c00446{left:208.348475px;}
.x75_c00446{left:211.140000px;}
.x6d_c00446{left:214.110000px;}
.x9_c00446{left:216.468000px;}
.x59_c00446{left:217.655250px;}
.x15_c00446{left:218.853218px;}
.x60_c00446{left:222.516210px;}
.x4e_c00446{left:224.133990px;}
.x2c_c00446{left:225.637229px;}
.x5c_c00446{left:226.836420px;}
.x11_c00446{left:228.154181px;}
.x6e_c00446{left:233.550000px;}
.x23_c00446{left:234.766359px;}
.x1e_c00446{left:240.406964px;}
.x31_c00446{left:242.857874px;}
.x29_c00446{left:246.135303px;}
.x12_c00446{left:249.153770px;}
.x7d_c00446{left:250.560000px;}
.x7a_c00446{left:251.640000px;}
.x6a_c00446{left:253.530000px;}
.x76_c00446{left:254.610000px;}
.x2a_c00446{left:256.420667px;}
.x46_c00446{left:258.430620px;}
.x1f_c00446{left:260.688479px;}
.x16_c00446{left:262.959002px;}
.x41_c00446{left:265.428000px;}
.x4f_c00446{left:266.531940px;}
.xa_c00446{left:272.631000px;}
.x53_c00446{left:273.825060px;}
.x37_c00446{left:274.967130px;}
.x56_c00446{left:276.255930px;}
.x77_c00446{left:277.830000px;}
.x7e_c00446{left:278.910000px;}
.x17_c00446{left:284.220663px;}
.x24_c00446{left:285.764685px;}
.x32_c00446{left:287.190959px;}
.x2d_c00446{left:289.876556px;}
.x6f_c00446{left:291.060000px;}
.xb_c00446{left:293.089500px;}
.x64_c00446{left:294.349110px;}
.x5d_c00446{left:295.700460px;}
.x80_c00446{left:299.700000px;}
.x71_c00446{left:304.830000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs12_c00446{font-size:48.533333pt;}
.fs13_c00446{font-size:49.466667pt;}
.fs14_c00446{font-size:51.333333pt;}
.fs3_c00446{font-size:51.337671pt;}
.fsb_c00446{font-size:51.343599pt;}
.fs15_c00446{font-size:52.266667pt;}
.fs2_c00446{font-size:52.271083pt;}
.fs10_c00446{font-size:53.200000pt;}
.fs5_c00446{font-size:53.204495pt;}
.fse_c00446{font-size:53.210639pt;}
.fs11_c00446{font-size:54.133333pt;}
.fs9_c00446{font-size:54.144159pt;}
.fsc_c00446{font-size:55.077679pt;}
.fs6_c00446{font-size:56.004732pt;}
.fsa_c00446{font-size:56.011199pt;}
.fsd_c00446{font-size:56.944719pt;}
.fsf_c00446{font-size:57.866667pt;}
.fs1_c00446{font-size:57.871556pt;}
.fs7_c00446{font-size:58.804968pt;}
.fs8_c00446{font-size:59.745279pt;}
.fs4_c00446{font-size:60.671793pt;}
.fs0_c00446{font-size:61.600000pt;}
.y0_c00446{bottom:0.000000pt;}
.ybb_c00446{bottom:21.222667pt;}
.yba_c00446{bottom:37.608000pt;}
.yb9_c00446{bottom:51.381333pt;}
.yb8_c00446{bottom:66.177333pt;}
.yb7_c00446{bottom:81.405333pt;}
.yb6_c00446{bottom:96.794667pt;}
.yb5_c00446{bottom:111.642667pt;}
.yb4_c00446{bottom:126.284000pt;}
.yb3_c00446{bottom:142.080000pt;}
.yb2_c00446{bottom:155.709333pt;}
.yb1_c00446{bottom:171.247760pt;}
.ya9_c00446{bottom:186.080027pt;}
.ya8_c00446{bottom:186.080373pt;}
.yaa_c00446{bottom:186.080400pt;}
.yab_c00446{bottom:186.080853pt;}
.yad_c00446{bottom:186.080907pt;}
.yaf_c00446{bottom:186.081200pt;}
.yac_c00446{bottom:186.081227pt;}
.yb0_c00446{bottom:186.081493pt;}
.yae_c00446{bottom:186.081573pt;}
.ya5_c00446{bottom:201.250240pt;}
.ya4_c00446{bottom:201.250400pt;}
.ya6_c00446{bottom:201.250427pt;}
.ya7_c00446{bottom:201.250587pt;}
.ya1_c00446{bottom:201.250693pt;}
.ya2_c00446{bottom:201.250907pt;}
.ya3_c00446{bottom:201.251040pt;}
.y9a_c00446{bottom:216.590000pt;}
.y9c_c00446{bottom:216.590080pt;}
.y99_c00446{bottom:216.590187pt;}
.y9d_c00446{bottom:216.590267pt;}
.y9b_c00446{bottom:216.590427pt;}
.y9e_c00446{bottom:216.590693pt;}
.ya0_c00446{bottom:216.591040pt;}
.y9f_c00446{bottom:216.591280pt;}
.y95_c00446{bottom:231.952027pt;}
.y96_c00446{bottom:231.952480pt;}
.y94_c00446{bottom:231.952667pt;}
.y92_c00446{bottom:231.952827pt;}
.y97_c00446{bottom:231.952933pt;}
.y98_c00446{bottom:231.952960pt;}
.y93_c00446{bottom:231.953013pt;}
.y91_c00446{bottom:231.953280pt;}
.y90_c00446{bottom:231.953387pt;}
.y8d_c00446{bottom:246.858720pt;}
.y88_c00446{bottom:246.858800pt;}
.y8e_c00446{bottom:246.858853pt;}
.y8a_c00446{bottom:246.858880pt;}
.y8f_c00446{bottom:246.858933pt;}
.y89_c00446{bottom:246.858987pt;}
.y8c_c00446{bottom:246.859147pt;}
.y8b_c00446{bottom:246.859467pt;}
.y87_c00446{bottom:262.727413pt;}
.y85_c00446{bottom:262.727840pt;}
.y81_c00446{bottom:262.727867pt;}
.y86_c00446{bottom:262.728000pt;}
.y82_c00446{bottom:262.728080pt;}
.y80_c00446{bottom:262.728213pt;}
.y84_c00446{bottom:262.728347pt;}
.y83_c00446{bottom:262.728693pt;}
.y7f_c00446{bottom:262.728853pt;}
.y78_c00446{bottom:277.740987pt;}
.y79_c00446{bottom:277.741467pt;}
.y77_c00446{bottom:277.741573pt;}
.y7a_c00446{bottom:277.741840pt;}
.y7b_c00446{bottom:277.742053pt;}
.y76_c00446{bottom:277.742080pt;}
.y7c_c00446{bottom:277.742373pt;}
.y7d_c00446{bottom:277.742480pt;}
.y7e_c00446{bottom:277.742693pt;}
.y6e_c00446{bottom:292.672293pt;}
.y6f_c00446{bottom:292.672960pt;}
.y70_c00446{bottom:292.673520pt;}
.y71_c00446{bottom:292.673680pt;}
.y73_c00446{bottom:292.673760pt;}
.y72_c00446{bottom:292.673813pt;}
.y75_c00446{bottom:292.673840pt;}
.y74_c00446{bottom:292.674427pt;}
.y6c_c00446{bottom:306.468533pt;}
.y6d_c00446{bottom:306.468667pt;}
.y6a_c00446{bottom:306.469067pt;}
.y6b_c00446{bottom:306.469147pt;}
.y69_c00446{bottom:306.469360pt;}
.y66_c00446{bottom:306.469467pt;}
.y68_c00446{bottom:306.469787pt;}
.y65_c00446{bottom:306.469840pt;}
.y67_c00446{bottom:306.469867pt;}
.y5d_c00446{bottom:319.444000pt;}
.y5e_c00446{bottom:319.866213pt;}
.y5f_c00446{bottom:321.310827pt;}
.y60_c00446{bottom:321.975013pt;}
.y61_c00446{bottom:322.170133pt;}
.y62_c00446{bottom:323.145387pt;}
.y63_c00446{bottom:323.471813pt;}
.y64_c00446{bottom:323.951813pt;}
.y5a_c00446{bottom:335.839657pt;}
.y59_c00446{bottom:335.839692pt;}
.y5b_c00446{bottom:335.839720pt;}
.y58_c00446{bottom:335.840180pt;}
.y5c_c00446{bottom:335.840372pt;}
.y57_c00446{bottom:335.840411pt;}
.y56_c00446{bottom:335.840543pt;}
.y4d_c00446{bottom:349.186420pt;}
.y4e_c00446{bottom:349.349764pt;}
.y4f_c00446{bottom:349.622293pt;}
.y50_c00446{bottom:349.783332pt;}
.y51_c00446{bottom:350.359527pt;}
.y52_c00446{bottom:350.722987pt;}
.y53_c00446{bottom:351.084989pt;}
.y54_c00446{bottom:351.272519pt;}
.y55_c00446{bottom:351.911004pt;}
.y44_c00446{bottom:365.027748pt;}
.y45_c00446{bottom:365.267547pt;}
.y46_c00446{bottom:365.462444pt;}
.y47_c00446{bottom:365.990617pt;}
.y48_c00446{bottom:366.220707pt;}
.y49_c00446{bottom:366.561489pt;}
.y4a_c00446{bottom:367.015844pt;}
.y4b_c00446{bottom:367.482716pt;}
.y4c_c00446{bottom:367.593340pt;}
.y3d_c00446{bottom:379.669789pt;}
.y3e_c00446{bottom:380.228056pt;}
.y3f_c00446{bottom:380.478336pt;}
.y40_c00446{bottom:381.304460pt;}
.y41_c00446{bottom:381.503757pt;}
.y42_c00446{bottom:382.114149pt;}
.y43_c00446{bottom:382.586436pt;}
.y34_c00446{bottom:393.352780pt;}
.y35_c00446{bottom:393.612067pt;}
.y36_c00446{bottom:394.038608pt;}
.y37_c00446{bottom:394.649023pt;}
.y38_c00446{bottom:395.573984pt;}
.y39_c00446{bottom:395.889865pt;}
.y3a_c00446{bottom:396.730992pt;}
.y3b_c00446{bottom:397.340280pt;}
.y3c_c00446{bottom:397.758695pt;}
.y2c_c00446{bottom:409.432280pt;}
.y2d_c00446{bottom:409.921375pt;}
.y2e_c00446{bottom:410.141076pt;}
.y2f_c00446{bottom:410.678631pt;}
.y30_c00446{bottom:411.148591pt;}
.y31_c00446{bottom:411.741071pt;}
.y32_c00446{bottom:412.315785pt;}
.y33_c00446{bottom:412.443973pt;}
.y24_c00446{bottom:425.752625pt;}
.y25_c00446{bottom:426.093581pt;}
.y26_c00446{bottom:426.278700pt;}
.y27_c00446{bottom:426.869095pt;}
.y28_c00446{bottom:427.170836pt;}
.y29_c00446{bottom:427.759912pt;}
.y2a_c00446{bottom:427.909735pt;}
.y2b_c00446{bottom:428.408367pt;}
.y1b_c00446{bottom:436.565005pt;}
.y1c_c00446{bottom:436.843204pt;}
.y1d_c00446{bottom:437.713641pt;}
.y1e_c00446{bottom:438.744477pt;}
.y1f_c00446{bottom:439.062329pt;}
.y20_c00446{bottom:440.825413pt;}
.y21_c00446{bottom:441.282235pt;}
.y22_c00446{bottom:442.602720pt;}
.y23_c00446{bottom:443.143803pt;}
.y14_c00446{bottom:453.599057pt;}
.y15_c00446{bottom:454.032413pt;}
.y16_c00446{bottom:454.312641pt;}
.y17_c00446{bottom:455.225625pt;}
.y18_c00446{bottom:456.526716pt;}
.y19_c00446{bottom:457.153736pt;}
.y1a_c00446{bottom:457.456769pt;}
.yc_c00446{bottom:468.243379pt;}
.yd_c00446{bottom:468.932085pt;}
.ye_c00446{bottom:469.279133pt;}
.yf_c00446{bottom:470.334780pt;}
.y10_c00446{bottom:470.556344pt;}
.y11_c00446{bottom:471.706580pt;}
.y12_c00446{bottom:472.058133pt;}
.y13_c00446{bottom:472.431484pt;}
.y2_c00446{bottom:485.041333pt;}
.y3_c00446{bottom:485.668003pt;}
.y4_c00446{bottom:485.817191pt;}
.y5_c00446{bottom:486.042697pt;}
.y6_c00446{bottom:486.519537pt;}
.y7_c00446{bottom:486.812835pt;}
.y8_c00446{bottom:487.134905pt;}
.y9_c00446{bottom:487.391040pt;}
.ya_c00446{bottom:488.040035pt;}
.yb_c00446{bottom:488.276444pt;}
.y1_c00446{bottom:497.520000pt;}
.h13_c00446{height:48.533333pt;}
.h14_c00446{height:49.466667pt;}
.h15_c00446{height:51.333333pt;}
.h4_c00446{height:51.337671pt;}
.hc_c00446{height:51.343599pt;}
.h16_c00446{height:52.266667pt;}
.h3_c00446{height:52.271083pt;}
.h11_c00446{height:53.200000pt;}
.h6_c00446{height:53.204495pt;}
.hf_c00446{height:53.210639pt;}
.h12_c00446{height:54.133333pt;}
.ha_c00446{height:54.144159pt;}
.hd_c00446{height:55.077679pt;}
.h7_c00446{height:56.004732pt;}
.hb_c00446{height:56.011199pt;}
.he_c00446{height:56.944719pt;}
.h10_c00446{height:57.866667pt;}
.h2_c00446{height:57.871556pt;}
.h8_c00446{height:58.804968pt;}
.h9_c00446{height:59.745279pt;}
.h5_c00446{height:60.671793pt;}
.h1_c00446{height:61.600000pt;}
.h0_c00446{height:540.666667pt;}
.w0_c00446{width:319.200000pt;}
.w1_c00446{width:319.333333pt;}
.x0_c00446{left:0.000000pt;}
.x42_c00446{left:9.353307pt;}
.x47_c00446{left:10.552293pt;}
.x2_c00446{left:11.669333pt;}
.x20_c00446{left:12.590779pt;}
.x65_c00446{left:14.154587pt;}
.x70_c00446{left:15.120000pt;}
.x66_c00446{left:17.040000pt;}
.x72_c00446{left:18.480000pt;}
.x18_c00446{left:21.672160pt;}
.x2b_c00446{left:27.327025pt;}
.x73_c00446{left:28.560000pt;}
.x5e_c00446{left:29.518240pt;}
.x54_c00446{left:30.477493pt;}
.x33_c00446{left:32.989732pt;}
.x3e_c00446{left:34.545333pt;}
.x50_c00446{left:36.957493pt;}
.x13_c00446{left:38.570260pt;}
.x21_c00446{left:43.536909pt;}
.xc_c00446{left:46.455263pt;}
.x25_c00446{left:47.834505pt;}
.x19_c00446{left:50.673747pt;}
.x38_c00446{left:52.689748pt;}
.x14_c00446{left:56.125584pt;}
.x67_c00446{left:57.120000pt;}
.x2e_c00446{left:58.684953pt;}
.x3_c00446{left:59.874667pt;}
.x78_c00446{left:61.680000pt;}
.xd_c00446{left:63.816352pt;}
.x7b_c00446{left:65.040000pt;}
.x5f_c00446{left:66.006160pt;}
.x39_c00446{left:67.334129pt;}
.x4c_c00446{left:68.404587pt;}
.x4_c00446{left:71.350667pt;}
.x51_c00446{left:72.965227pt;}
.x74_c00446{left:74.160000pt;}
.x3b_c00446{left:76.812961pt;}
.x2f_c00446{left:79.578564pt;}
.x6b_c00446{left:83.040000pt;}
.x5a_c00446{left:84.009360pt;}
.x1a_c00446{left:85.038155pt;}
.x43_c00446{left:86.648213pt;}
.x5_c00446{left:88.697333pt;}
.x61_c00446{left:90.009707pt;}
.x81_c00446{left:92.400000pt;}
.x1b_c00446{left:95.639815pt;}
.x7f_c00446{left:96.960000pt;}
.x34_c00446{left:98.766115pt;}
.x3c_c00446{left:100.574316pt;}
.x26_c00446{left:101.879128pt;}
.x57_c00446{left:102.972480pt;}
.x68_c00446{left:105.120000pt;}
.x6c_c00446{left:106.080000pt;}
.x48_c00446{left:107.052187pt;}
.x55_c00446{left:109.933253pt;}
.x82_c00446{left:110.880000pt;}
.x1_c00446{left:113.280000pt;}
.x7c_c00446{left:115.680000pt;}
.xe_c00446{left:116.604884pt;}
.x35_c00446{left:119.645319pt;}
.x5b_c00446{left:122.416720pt;}
.x58_c00446{left:124.096933pt;}
.x6_c00446{left:125.377333pt;}
.xf_c00446{left:127.698545pt;}
.x62_c00446{left:129.377440pt;}
.x79_c00446{left:130.320000pt;}
.x44_c00446{left:131.296747pt;}
.x49_c00446{left:132.737120pt;}
.x69_c00446{left:134.400000pt;}
.x27_c00446{left:135.465361pt;}
.x3d_c00446{left:138.736764pt;}
.x52_c00446{left:139.938667pt;}
.x22_c00446{left:141.482124pt;}
.x7_c00446{left:147.938667pt;}
.x4d_c00446{left:149.060827pt;}
.x36_c00446{left:150.578116pt;}
.x3a_c00446{left:152.745681pt;}
.x1c_c00446{left:154.428165pt;}
.x3f_c00446{left:161.096000pt;}
.x30_c00446{left:165.022340pt;}
.x4a_c00446{left:168.024560pt;}
.x1d_c00446{left:169.667469pt;}
.x40_c00446{left:170.852000pt;}
.x8_c00446{left:172.713333pt;}
.x45_c00446{left:174.984880pt;}
.x63_c00446{left:175.946720pt;}
.x28_c00446{left:177.758140pt;}
.x4b_c00446{left:180.026693pt;}
.x10_c00446{left:185.198644pt;}
.x75_c00446{left:187.680000pt;}
.x6d_c00446{left:190.320000pt;}
.x9_c00446{left:192.416000pt;}
.x59_c00446{left:193.471333pt;}
.x15_c00446{left:194.536193pt;}
.x60_c00446{left:197.792187pt;}
.x4e_c00446{left:199.230213pt;}
.x2c_c00446{left:200.566425pt;}
.x5c_c00446{left:201.632373pt;}
.x11_c00446{left:202.803716pt;}
.x6e_c00446{left:207.600000pt;}
.x23_c00446{left:208.681208pt;}
.x1e_c00446{left:213.695079pt;}
.x31_c00446{left:215.873665pt;}
.x29_c00446{left:218.786936pt;}
.x12_c00446{left:221.470017pt;}
.x7d_c00446{left:222.720000pt;}
.x7a_c00446{left:223.680000pt;}
.x6a_c00446{left:225.360000pt;}
.x76_c00446{left:226.320000pt;}
.x2a_c00446{left:227.929481pt;}
.x46_c00446{left:229.716107pt;}
.x1f_c00446{left:231.723092pt;}
.x16_c00446{left:233.741335pt;}
.x41_c00446{left:235.936000pt;}
.x4f_c00446{left:236.917280pt;}
.xa_c00446{left:242.338667pt;}
.x53_c00446{left:243.400053pt;}
.x37_c00446{left:244.415227pt;}
.x56_c00446{left:245.560827pt;}
.x77_c00446{left:246.960000pt;}
.x7e_c00446{left:247.920000pt;}
.x17_c00446{left:252.640589pt;}
.x24_c00446{left:254.013053pt;}
.x32_c00446{left:255.280852pt;}
.x2d_c00446{left:257.668049pt;}
.x6f_c00446{left:258.720000pt;}
.xb_c00446{left:260.524000pt;}
.x64_c00446{left:261.643653pt;}
.x5d_c00446{left:262.844853pt;}
.x80_c00446{left:266.400000pt;}
.x71_c00446{left:270.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00447 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00447 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00447 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00447 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00447.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00447{transform:matrix(0.080620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080620,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.129080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129080,0.000000,0.000000,0.250000,0,0);}
.ma3_c00447{transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m9f_c00447{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.145965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145965,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146460,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00447{transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150380,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152215,0.000000,0.000000,0.250000,0,0);}
.m7a_c00447{transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153390,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);}
.mce_c00447{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);}
.m83_c00447{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m82_c00447{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157345,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m94_c00447{transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158780,0.000000,0.000000,0.250000,0,0);}
.md4_c00447{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.mae_c00447{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00447{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.m90_c00447{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m85_c00447{transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165745,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167440,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);}
.m9b_c00447{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m9c_c00447{transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);}
.m1e_c00447{transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.m84_c00447{transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173580,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173955,0.000000,0.000000,0.250000,0,0);}
.m98_c00447{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.m9e_c00447{transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);}
.m7d_c00447{transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174440,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m91_c00447{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00447{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m93_c00447{transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m9d_c00447{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179340,0.000000,0.000000,0.250000,0,0);}
.ma0_c00447{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180485,0.000000,0.000000,0.250000,0,0);}
.m7b_c00447{transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180510,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m74_c00447{transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.mcc_c00447{transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181615,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181940,0.000000,0.000000,0.250000,0,0);}
.mcd_c00447{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.ma6_c00447{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182995,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.m66_c00447{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.md1_c00447{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185110,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186190,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186570,0.000000,0.000000,0.250000,0,0);}
.maa_c00447{transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187470,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.mba_c00447{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.mbb_c00447{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.md5_c00447{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.mc6_c00447{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189730,0.000000,0.000000,0.250000,0,0);}
.m65_c00447{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.mb2_c00447{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.ma1_c00447{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.maf_c00447{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.mbd_c00447{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.mbc_c00447{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.mc0_c00447{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00447{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.md0_c00447{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.m8c_c00447{transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192965,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193680,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);}
.m7f_c00447{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00447{transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195290,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195840,0.000000,0.000000,0.250000,0,0);}
.mcf_c00447{transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00447{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.ma5_c00447{transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);}
.m81_c00447{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.mb4_c00447{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198620,0.000000,0.000000,0.250000,0,0);}
.mb3_c00447{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.mab_c00447{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.m24_c00447{transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199715,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200185,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00447{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00447{transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.m88_c00447{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.ma2_c00447{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203640,0.000000,0.000000,0.250000,0,0);}
.mb5_c00447{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207860,0.000000,0.000000,0.250000,0,0);}
.mc9_c00447{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.ma7_c00447{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m97_c00447{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00447{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);}
.m9a_c00447{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00447{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m59_c00447{transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);}
.mb8_c00447{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);}
.mc1_c00447{transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);}
.m56_c00447{transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);}
.mc2_c00447{transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217435,0.000000,0.000000,0.250000,0,0);}
.m8a_c00447{transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218135,0.000000,0.000000,0.250000,0,0);}
.m89_c00447{transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00447{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m2a_c00447{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.mb0_c00447{transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);}
.mc8_c00447{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.mca_c00447{transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);}
.ma4_c00447{transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);}
.m5c_c00447{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.mbe_c00447{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.mb9_c00447{transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);}
.m80_c00447{transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);}
.md2_c00447{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.mb1_c00447{transform:matrix(0.244695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244695,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m86_c00447{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.mad_c00447{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.mcb_c00447{transform:matrix(0.258870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258870,0.000000,0.000000,0.250000,0,0);}
.mac_c00447{transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289305,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.289430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289430,0.000000,0.000000,0.250000,0,0);}
.mc3_c00447{transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304440,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.md6_c00447{transform:matrix(0.315260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315260,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);}
.m87_c00447{transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);}
.mc4_c00447{transform:matrix(0.369405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369405,0.000000,0.000000,0.250000,0,0);}
.ma9_c00447{transform:matrix(0.372325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372325,0.000000,0.000000,0.250000,0,0);}
.md3_c00447{transform:matrix(0.516420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516420,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:0.000000px;}
.fc0_c00447{color:transparent;}
.fs7_c00447{font-size:58.800000px;}
.fs6_c00447{font-size:60.900000px;}
.fs0_c00447{font-size:61.950000px;}
.fs8_c00447{font-size:63.000000px;}
.fs3_c00447{font-size:64.050000px;}
.fs5_c00447{font-size:66.150000px;}
.fsa_c00447{font-size:67.200000px;}
.fs9_c00447{font-size:68.250000px;}
.fsb_c00447{font-size:69.300000px;}
.fs2_c00447{font-size:70.350000px;}
.fs4_c00447{font-size:71.400000px;}
.fs1_c00447{font-size:72.450000px;}
.y0_c00447{bottom:0.000000px;}
.y1e_c00447{bottom:14.023500px;}
.y1d_c00447{bottom:32.341500px;}
.y1c_c00447{bottom:48.414000px;}
.y1b_c00447{bottom:65.727000px;}
.y1a_c00447{bottom:83.442000px;}
.y19_c00447{bottom:100.722000px;}
.y18_c00447{bottom:117.855000px;}
.y17_c00447{bottom:135.811500px;}
.y16_c00447{bottom:152.410500px;}
.y15_c00447{bottom:170.643000px;}
.y14_c00447{bottom:188.322000px;}
.y13_c00447{bottom:205.447500px;}
.y12_c00447{bottom:222.480000px;}
.y11_c00447{bottom:239.893500px;}
.y10_c00447{bottom:256.908000px;}
.yf_c00447{bottom:273.931500px;}
.ye_c00447{bottom:291.600000px;}
.yd_c00447{bottom:308.743500px;}
.yc_c00447{bottom:325.756500px;}
.yb_c00447{bottom:342.883500px;}
.ya_c00447{bottom:360.049500px;}
.y9_c00447{bottom:377.172000px;}
.y8_c00447{bottom:394.330500px;}
.y7_c00447{bottom:411.874500px;}
.y6_c00447{bottom:429.708000px;}
.y5_c00447{bottom:445.567500px;}
.y4_c00447{bottom:463.446000px;}
.y3_c00447{bottom:480.730500px;}
.y2_c00447{bottom:496.848000px;}
.y1_c00447{bottom:514.152000px;}
.h9_c00447{height:58.800000px;}
.h8_c00447{height:60.900000px;}
.h2_c00447{height:61.950000px;}
.ha_c00447{height:63.000000px;}
.h5_c00447{height:64.050000px;}
.h7_c00447{height:66.150000px;}
.hc_c00447{height:67.200000px;}
.hb_c00447{height:68.250000px;}
.hd_c00447{height:69.300000px;}
.h4_c00447{height:70.350000px;}
.h6_c00447{height:71.400000px;}
.h3_c00447{height:72.450000px;}
.h1_c00447{height:609.000000px;}
.h0_c00447{height:609.120000px;}
.w0_c00447{width:359.100000px;}
.w1_c00447{width:359.250000px;}
.x0_c00447{left:0.000000px;}
.x6a_c00447{left:45.630000px;}
.x61_c00447{left:47.250000px;}
.x5a_c00447{left:48.330000px;}
.x42_c00447{left:49.410000px;}
.x1a_c00447{left:50.490000px;}
.x1_c00447{left:51.840000px;}
.x77_c00447{left:64.800000px;}
.x6d_c00447{left:65.880000px;}
.x34_c00447{left:70.200000px;}
.x3e_c00447{left:71.550000px;}
.x5e_c00447{left:74.790000px;}
.xe_c00447{left:76.410000px;}
.x15_c00447{left:79.380000px;}
.x50_c00447{left:85.320000px;}
.x4b_c00447{left:86.400000px;}
.x2e_c00447{left:90.450000px;}
.xf_c00447{left:91.800000px;}
.x5f_c00447{left:94.500000px;}
.x38_c00447{left:95.580000px;}
.x54_c00447{left:96.930000px;}
.x53_c00447{left:98.280000px;}
.x5b_c00447{left:102.330000px;}
.x1b_c00447{left:104.220000px;}
.x2a_c00447{left:106.110000px;}
.x55_c00447{left:110.160000px;}
.x6e_c00447{left:111.240000px;}
.x9_c00447{left:114.480000px;}
.x21_c00447{left:116.100000px;}
.x67_c00447{left:117.450000px;}
.x2_c00447{left:118.800000px;}
.x75_c00447{left:123.660000px;}
.x2f_c00447{left:126.360000px;}
.xa_c00447{left:128.250000px;}
.x56_c00447{left:130.410000px;}
.x64_c00447{left:132.030000px;}
.x1c_c00447{left:133.650000px;}
.x62_c00447{left:134.730000px;}
.x43_c00447{left:135.810000px;}
.x71_c00447{left:137.430000px;}
.x3_c00447{left:139.050000px;}
.x16_c00447{left:140.130000px;}
.x46_c00447{left:141.480000px;}
.x60_c00447{left:143.100000px;}
.x22_c00447{left:145.530000px;}
.x26_c00447{left:146.610000px;}
.x57_c00447{left:147.690000px;}
.x10_c00447{left:150.120000px;}
.xb_c00447{left:151.470000px;}
.x4c_c00447{left:153.630000px;}
.x17_c00447{left:158.760000px;}
.x47_c00447{left:162.540000px;}
.x2b_c00447{left:168.210000px;}
.x11_c00447{left:170.100000px;}
.x30_c00447{left:173.070000px;}
.x6f_c00447{left:174.960000px;}
.x48_c00447{left:179.550000px;}
.x35_c00447{left:180.630000px;}
.x6b_c00447{left:185.490000px;}
.x31_c00447{left:187.650000px;}
.x69_c00447{left:189.540000px;}
.x39_c00447{left:193.050000px;}
.x74_c00447{left:194.130000px;}
.x18_c00447{left:195.210000px;}
.x2c_c00447{left:197.640000px;}
.x4d_c00447{left:202.770000px;}
.x4_c00447{left:204.660000px;}
.x3f_c00447{left:206.280000px;}
.x68_c00447{left:208.170000px;}
.x44_c00447{left:209.520000px;}
.x27_c00447{left:211.680000px;}
.x3a_c00447{left:213.030000px;}
.x58_c00447{left:214.380000px;}
.x23_c00447{left:216.000000px;}
.x6c_c00447{left:220.050000px;}
.x4e_c00447{left:221.130000px;}
.x1d_c00447{left:222.480000px;}
.x40_c00447{left:224.100000px;}
.xc_c00447{left:226.800000px;}
.x51_c00447{left:228.420000px;}
.x5_c00447{left:230.850000px;}
.x45_c00447{left:232.470000px;}
.x36_c00447{left:234.900000px;}
.x3b_c00447{left:235.980000px;}
.x32_c00447{left:237.870000px;}
.x49_c00447{left:240.030000px;}
.x1e_c00447{left:241.650000px;}
.x65_c00447{left:243.540000px;}
.x70_c00447{left:246.240000px;}
.x19_c00447{left:248.400000px;}
.x28_c00447{left:251.370000px;}
.x12_c00447{left:255.420000px;}
.x24_c00447{left:263.790000px;}
.x5c_c00447{left:270.810000px;}
.x29_c00447{left:272.970000px;}
.x63_c00447{left:276.480000px;}
.x4a_c00447{left:278.640000px;}
.x1f_c00447{left:280.530000px;}
.x4f_c00447{left:282.690000px;}
.x72_c00447{left:284.310000px;}
.x3c_c00447{left:286.200000px;}
.x59_c00447{left:287.550000px;}
.x33_c00447{left:288.630000px;}
.x25_c00447{left:291.870000px;}
.xd_c00447{left:295.920000px;}
.x2d_c00447{left:297.540000px;}
.x37_c00447{left:300.780000px;}
.x3d_c00447{left:302.400000px;}
.x41_c00447{left:304.290000px;}
.x6_c00447{left:306.720000px;}
.x13_c00447{left:307.800000px;}
.x5d_c00447{left:310.230000px;}
.x66_c00447{left:312.930000px;}
.x20_c00447{left:316.170000px;}
.x76_c00447{left:319.140000px;}
.x52_c00447{left:320.760000px;}
.x73_c00447{left:322.380000px;}
.x14_c00447{left:323.730000px;}
.x7_c00447{left:325.890000px;}
.x8_c00447{left:344.250000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fs7_c00447{font-size:52.266667pt;}
.fs6_c00447{font-size:54.133333pt;}
.fs0_c00447{font-size:55.066667pt;}
.fs8_c00447{font-size:56.000000pt;}
.fs3_c00447{font-size:56.933333pt;}
.fs5_c00447{font-size:58.800000pt;}
.fsa_c00447{font-size:59.733333pt;}
.fs9_c00447{font-size:60.666667pt;}
.fsb_c00447{font-size:61.600000pt;}
.fs2_c00447{font-size:62.533333pt;}
.fs4_c00447{font-size:63.466667pt;}
.fs1_c00447{font-size:64.400000pt;}
.y0_c00447{bottom:0.000000pt;}
.y1e_c00447{bottom:12.465333pt;}
.y1d_c00447{bottom:28.748000pt;}
.y1c_c00447{bottom:43.034667pt;}
.y1b_c00447{bottom:58.424000pt;}
.y1a_c00447{bottom:74.170667pt;}
.y19_c00447{bottom:89.530667pt;}
.y18_c00447{bottom:104.760000pt;}
.y17_c00447{bottom:120.721333pt;}
.y16_c00447{bottom:135.476000pt;}
.y15_c00447{bottom:151.682667pt;}
.y14_c00447{bottom:167.397333pt;}
.y13_c00447{bottom:182.620000pt;}
.y12_c00447{bottom:197.760000pt;}
.y11_c00447{bottom:213.238667pt;}
.y10_c00447{bottom:228.362667pt;}
.yf_c00447{bottom:243.494667pt;}
.ye_c00447{bottom:259.200000pt;}
.yd_c00447{bottom:274.438667pt;}
.yc_c00447{bottom:289.561333pt;}
.yb_c00447{bottom:304.785333pt;}
.ya_c00447{bottom:320.044000pt;}
.y9_c00447{bottom:335.264000pt;}
.y8_c00447{bottom:350.516000pt;}
.y7_c00447{bottom:366.110667pt;}
.y6_c00447{bottom:381.962667pt;}
.y5_c00447{bottom:396.060000pt;}
.y4_c00447{bottom:411.952000pt;}
.y3_c00447{bottom:427.316000pt;}
.y2_c00447{bottom:441.642667pt;}
.y1_c00447{bottom:457.024000pt;}
.h9_c00447{height:52.266667pt;}
.h8_c00447{height:54.133333pt;}
.h2_c00447{height:55.066667pt;}
.ha_c00447{height:56.000000pt;}
.h5_c00447{height:56.933333pt;}
.h7_c00447{height:58.800000pt;}
.hc_c00447{height:59.733333pt;}
.hb_c00447{height:60.666667pt;}
.hd_c00447{height:61.600000pt;}
.h4_c00447{height:62.533333pt;}
.h6_c00447{height:63.466667pt;}
.h3_c00447{height:64.400000pt;}
.h1_c00447{height:541.333333pt;}
.h0_c00447{height:541.440000pt;}
.w0_c00447{width:319.200000pt;}
.w1_c00447{width:319.333333pt;}
.x0_c00447{left:0.000000pt;}
.x6a_c00447{left:40.560000pt;}
.x61_c00447{left:42.000000pt;}
.x5a_c00447{left:42.960000pt;}
.x42_c00447{left:43.920000pt;}
.x1a_c00447{left:44.880000pt;}
.x1_c00447{left:46.080000pt;}
.x77_c00447{left:57.600000pt;}
.x6d_c00447{left:58.560000pt;}
.x34_c00447{left:62.400000pt;}
.x3e_c00447{left:63.600000pt;}
.x5e_c00447{left:66.480000pt;}
.xe_c00447{left:67.920000pt;}
.x15_c00447{left:70.560000pt;}
.x50_c00447{left:75.840000pt;}
.x4b_c00447{left:76.800000pt;}
.x2e_c00447{left:80.400000pt;}
.xf_c00447{left:81.600000pt;}
.x5f_c00447{left:84.000000pt;}
.x38_c00447{left:84.960000pt;}
.x54_c00447{left:86.160000pt;}
.x53_c00447{left:87.360000pt;}
.x5b_c00447{left:90.960000pt;}
.x1b_c00447{left:92.640000pt;}
.x2a_c00447{left:94.320000pt;}
.x55_c00447{left:97.920000pt;}
.x6e_c00447{left:98.880000pt;}
.x9_c00447{left:101.760000pt;}
.x21_c00447{left:103.200000pt;}
.x67_c00447{left:104.400000pt;}
.x2_c00447{left:105.600000pt;}
.x75_c00447{left:109.920000pt;}
.x2f_c00447{left:112.320000pt;}
.xa_c00447{left:114.000000pt;}
.x56_c00447{left:115.920000pt;}
.x64_c00447{left:117.360000pt;}
.x1c_c00447{left:118.800000pt;}
.x62_c00447{left:119.760000pt;}
.x43_c00447{left:120.720000pt;}
.x71_c00447{left:122.160000pt;}
.x3_c00447{left:123.600000pt;}
.x16_c00447{left:124.560000pt;}
.x46_c00447{left:125.760000pt;}
.x60_c00447{left:127.200000pt;}
.x22_c00447{left:129.360000pt;}
.x26_c00447{left:130.320000pt;}
.x57_c00447{left:131.280000pt;}
.x10_c00447{left:133.440000pt;}
.xb_c00447{left:134.640000pt;}
.x4c_c00447{left:136.560000pt;}
.x17_c00447{left:141.120000pt;}
.x47_c00447{left:144.480000pt;}
.x2b_c00447{left:149.520000pt;}
.x11_c00447{left:151.200000pt;}
.x30_c00447{left:153.840000pt;}
.x6f_c00447{left:155.520000pt;}
.x48_c00447{left:159.600000pt;}
.x35_c00447{left:160.560000pt;}
.x6b_c00447{left:164.880000pt;}
.x31_c00447{left:166.800000pt;}
.x69_c00447{left:168.480000pt;}
.x39_c00447{left:171.600000pt;}
.x74_c00447{left:172.560000pt;}
.x18_c00447{left:173.520000pt;}
.x2c_c00447{left:175.680000pt;}
.x4d_c00447{left:180.240000pt;}
.x4_c00447{left:181.920000pt;}
.x3f_c00447{left:183.360000pt;}
.x68_c00447{left:185.040000pt;}
.x44_c00447{left:186.240000pt;}
.x27_c00447{left:188.160000pt;}
.x3a_c00447{left:189.360000pt;}
.x58_c00447{left:190.560000pt;}
.x23_c00447{left:192.000000pt;}
.x6c_c00447{left:195.600000pt;}
.x4e_c00447{left:196.560000pt;}
.x1d_c00447{left:197.760000pt;}
.x40_c00447{left:199.200000pt;}
.xc_c00447{left:201.600000pt;}
.x51_c00447{left:203.040000pt;}
.x5_c00447{left:205.200000pt;}
.x45_c00447{left:206.640000pt;}
.x36_c00447{left:208.800000pt;}
.x3b_c00447{left:209.760000pt;}
.x32_c00447{left:211.440000pt;}
.x49_c00447{left:213.360000pt;}
.x1e_c00447{left:214.800000pt;}
.x65_c00447{left:216.480000pt;}
.x70_c00447{left:218.880000pt;}
.x19_c00447{left:220.800000pt;}
.x28_c00447{left:223.440000pt;}
.x12_c00447{left:227.040000pt;}
.x24_c00447{left:234.480000pt;}
.x5c_c00447{left:240.720000pt;}
.x29_c00447{left:242.640000pt;}
.x63_c00447{left:245.760000pt;}
.x4a_c00447{left:247.680000pt;}
.x1f_c00447{left:249.360000pt;}
.x4f_c00447{left:251.280000pt;}
.x72_c00447{left:252.720000pt;}
.x3c_c00447{left:254.400000pt;}
.x59_c00447{left:255.600000pt;}
.x33_c00447{left:256.560000pt;}
.x25_c00447{left:259.440000pt;}
.xd_c00447{left:263.040000pt;}
.x2d_c00447{left:264.480000pt;}
.x37_c00447{left:267.360000pt;}
.x3d_c00447{left:268.800000pt;}
.x41_c00447{left:270.480000pt;}
.x6_c00447{left:272.640000pt;}
.x13_c00447{left:273.600000pt;}
.x5d_c00447{left:275.760000pt;}
.x66_c00447{left:278.160000pt;}
.x20_c00447{left:281.040000pt;}
.x76_c00447{left:283.680000pt;}
.x52_c00447{left:285.120000pt;}
.x73_c00447{left:286.560000pt;}
.x14_c00447{left:287.760000pt;}
.x7_c00447{left:289.680000pt;}
.x8_c00447{left:306.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00448 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00448{transform:matrix(0.028885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028885,0.000000,0.000000,0.250000,0,0);}
.me4_c00448{transform:matrix(0.036572,0.001134,-0.007746,0.249880,0,0);-ms-transform:matrix(0.036572,0.001134,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.036572,0.001134,-0.007746,0.249880,0,0);}
.m2_c00448{transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048065,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.122515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122515,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.124655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124655,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134960,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.140915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140915,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149205,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.150010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150010,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.155865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157855,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);}
.m9c_c00448{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.160930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160930,0.000000,0.000000,0.250000,0,0);}
.me5_c00448{transform:matrix(0.161598,0.003232,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161598,0.003232,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161598,0.003232,-0.004999,0.249950,0,0);}
.m4_c00448{transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.mb1_c00448{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167595,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167720,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168170,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168235,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.mc1_c00448{transform:matrix(0.168855,0.001857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168855,0.001857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168855,0.001857,-0.002750,0.249985,0,0);}
.m98_c00448{transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170320,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170490,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170970,0.000000,0.000000,0.250000,0,0);}
.mc8_c00448{transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171020,0.000000,0.000000,0.250000,0,0);}
.mc3_c00448{transform:matrix(0.171045,0.001881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171045,0.001881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171045,0.001881,-0.002750,0.249985,0,0);}
.mc4_c00448{transform:matrix(0.171595,0.001888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171595,0.001888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171595,0.001888,-0.002750,0.249985,0,0);}
.m33_c00448{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);}
.mbd_c00448{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176770,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00448{transform:matrix(0.178119,0.001959,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178119,0.001959,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178119,0.001959,-0.002750,0.249985,0,0);}
.m27_c00448{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178640,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179715,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180070,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180985,0.000000,0.000000,0.250000,0,0);}
.mb5_c00448{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m9e_c00448{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.182590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182590,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184220,0.000000,0.000000,0.250000,0,0);}
.me0_c00448{transform:matrix(0.184391,0.005716,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184391,0.005716,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184391,0.005716,-0.007746,0.249880,0,0);}
.me_c00448{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m96_c00448{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.mcf_c00448{transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.188070,0.005830,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188070,0.005830,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188070,0.005830,-0.007746,0.249880,0,0);}
.m56_c00448{transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188120,0.000000,0.000000,0.250000,0,0);}
.ma1_c00448{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m6b_c00448{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.mdd_c00448{transform:matrix(0.191103,0.005924,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191103,0.005924,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191103,0.005924,-0.007746,0.249880,0,0);}
.md5_c00448{transform:matrix(0.191553,0.005938,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191553,0.005938,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191553,0.005938,-0.007746,0.249880,0,0);}
.m7d_c00448{transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191865,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.md4_c00448{transform:matrix(0.192143,0.005956,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192143,0.005956,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192143,0.005956,-0.007746,0.249880,0,0);}
.m45_c00448{transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192205,0.000000,0.000000,0.250000,0,0);}
.mb9_c00448{transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193460,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.maf_c00448{transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194535,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.194895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194895,0.000000,0.000000,0.250000,0,0);}
.m84_c00448{transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195265,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.mb2_c00448{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.me8_c00448{transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);}
.m5c_c00448{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m90_c00448{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.m8c_c00448{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.mbc_c00448{transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.mb0_c00448{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.me9_c00448{transform:matrix(0.200620,0.004012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200620,0.004012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200620,0.004012,-0.004999,0.249950,0,0);}
.md2_c00448{transform:matrix(0.200993,0.006231,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200993,0.006231,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200993,0.006231,-0.007746,0.249880,0,0);}
.mc6_c00448{transform:matrix(0.201073,0.002212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201073,0.002212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201073,0.002212,-0.002750,0.249985,0,0);}
.mc7_c00448{transform:matrix(0.201118,0.002212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201118,0.002212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201118,0.002212,-0.002750,0.249985,0,0);}
.md3_c00448{transform:matrix(0.201163,0.006236,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201163,0.006236,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201163,0.006236,-0.007746,0.249880,0,0);}
.ma3_c00448{transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201870,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00448{transform:matrix(0.203288,0.002236,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203288,0.002236,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203288,0.002236,-0.002750,0.249985,0,0);}
.m9f_c00448{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203715,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.mdc_c00448{transform:matrix(0.203897,0.006321,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203897,0.006321,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203897,0.006321,-0.007746,0.249880,0,0);}
.m55_c00448{transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m7a_c00448{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206360,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206695,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.md7_c00448{transform:matrix(0.207770,0.006441,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207770,0.006441,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207770,0.006441,-0.007746,0.249880,0,0);}
.m95_c00448{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208830,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);}
.md1_c00448{transform:matrix(0.209909,0.006507,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209909,0.006507,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209909,0.006507,-0.007746,0.249880,0,0);}
.mcc_c00448{transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210465,0.000000,0.000000,0.250000,0,0);}
.mb4_c00448{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.mb6_c00448{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.mca_c00448{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.mbe_c00448{transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213570,0.000000,0.000000,0.250000,0,0);}
.mce_c00448{transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213910,0.000000,0.000000,0.250000,0,0);}
.mb8_c00448{transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215335,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.215480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215480,0.000000,0.000000,0.250000,0,0);}
.mdf_c00448{transform:matrix(0.215666,0.006686,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215666,0.006686,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215666,0.006686,-0.007746,0.249880,0,0);}
.m93_c00448{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.md9_c00448{transform:matrix(0.215841,0.006691,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215841,0.006691,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215841,0.006691,-0.007746,0.249880,0,0);}
.ma9_c00448{transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215895,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);}
.m7e_c00448{transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.mea_c00448{transform:matrix(0.220751,0.004415,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220751,0.004415,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220751,0.004415,-0.004999,0.249950,0,0);}
.mcd_c00448{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.mcb_c00448{transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222580,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223245,0.000000,0.000000,0.250000,0,0);}
.me7_c00448{transform:matrix(0.223470,0.004469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223470,0.004469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223470,0.004469,-0.004999,0.249950,0,0);}
.m9d_c00448{transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mde_c00448{transform:matrix(0.224312,0.006954,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224312,0.006954,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224312,0.006954,-0.007746,0.249880,0,0);}
.m35_c00448{transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225235,0.000000,0.000000,0.250000,0,0);}
.m78_c00448{transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225710,0.000000,0.000000,0.250000,0,0);}
.md6_c00448{transform:matrix(0.225876,0.007002,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225876,0.007002,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225876,0.007002,-0.007746,0.249880,0,0);}
.m4c_c00448{transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226085,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226560,0.000000,0.000000,0.250000,0,0);}
.m80_c00448{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.mda_c00448{transform:matrix(0.226751,0.007029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226751,0.007029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226751,0.007029,-0.007746,0.249880,0,0);}
.m6a_c00448{transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230995,0.000000,0.000000,0.250000,0,0);}
.mad_c00448{transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00448{transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.232745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232745,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.mb7_c00448{transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);}
.mb3_c00448{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.me6_c00448{transform:matrix(0.236043,0.004721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236043,0.004721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236043,0.004721,-0.004999,0.249950,0,0);}
.m17_c00448{transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.237645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237645,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.meb_c00448{transform:matrix(0.240467,0.004809,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240467,0.004809,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240467,0.004809,-0.004999,0.249950,0,0);}
.m68_c00448{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);}
.mec_c00448{transform:matrix(0.246246,0.004925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246246,0.004925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246246,0.004925,-0.004999,0.249950,0,0);}
.m72_c00448{transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);}
.mbf_c00448{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00448{transform:matrix(0.258636,0.008018,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258636,0.008018,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258636,0.008018,-0.007746,0.249880,0,0);}
.m29_c00448{transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);}
.mbb_c00448{transform:matrix(0.269630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269630,0.000000,0.000000,0.250000,0,0);}
.me1_c00448{transform:matrix(0.271035,0.008402,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271035,0.008402,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271035,0.008402,-0.007746,0.249880,0,0);}
.me3_c00448{transform:matrix(0.272784,0.008456,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272784,0.008456,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272784,0.008456,-0.007746,0.249880,0,0);}
.me2_c00448{transform:matrix(0.297877,0.009234,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297877,0.009234,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297877,0.009234,-0.007746,0.249880,0,0);}
.mc0_c00448{transform:matrix(0.303387,0.003337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.303387,0.003337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.303387,0.003337,-0.002750,0.249985,0,0);}
.md0_c00448{transform:matrix(0.303409,0.009406,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303409,0.009406,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303409,0.009406,-0.007746,0.249880,0,0);}
.m3_c00448{transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);}
.mae_c00448{transform:matrix(0.423935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423935,0.000000,0.000000,0.250000,0,0);}
.m91_c00448{transform:matrix(0.693880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693880,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
.fc0_c00448{color:transparent;}
.fs12_c00448{font-size:47.272698px;}
.fs11_c00448{font-size:50.424211px;}
.fsa_c00448{font-size:55.650000px;}
.fs7_c00448{font-size:57.750000px;}
.fs13_c00448{font-size:57.761549px;}
.fs8_c00448{font-size:58.800000px;}
.fsb_c00448{font-size:59.850000px;}
.fs3_c00448{font-size:60.900000px;}
.fs5_c00448{font-size:61.950000px;}
.fsc_c00448{font-size:64.050000px;}
.fs9_c00448{font-size:65.100000px;}
.fs10_c00448{font-size:65.131273px;}
.fsd_c00448{font-size:66.150000px;}
.fs6_c00448{font-size:67.200000px;}
.fse_c00448{font-size:68.250000px;}
.fs4_c00448{font-size:69.300000px;}
.fsf_c00448{font-size:69.304193px;}
.fs2_c00448{font-size:71.400000px;}
.fs1_c00448{font-size:74.550000px;}
.fs0_c00448{font-size:122.850000px;}
.y0_c00448{bottom:0.000000px;}
.y75_c00448{bottom:25.665600px;}
.y74_c00448{bottom:26.572740px;}
.y73_c00448{bottom:26.977560px;}
.y72_c00448{bottom:27.846450px;}
.y71_c00448{bottom:28.186590px;}
.y70_c00448{bottom:29.434500px;}
.y6f_c00448{bottom:30.206010px;}
.y6e_c00448{bottom:30.514500px;}
.y6d_c00448{bottom:41.426484px;}
.y6c_c00448{bottom:42.473907px;}
.y6b_c00448{bottom:43.109460px;}
.y68_c00448{bottom:43.778535px;}
.y6a_c00448{bottom:43.965720px;}
.y67_c00448{bottom:44.757565px;}
.y66_c00448{bottom:45.201270px;}
.y69_c00448{bottom:45.890939px;}
.y65_c00448{bottom:46.510418px;}
.y64_c00448{bottom:47.446200px;}
.y63_c00448{bottom:47.947100px;}
.y62_c00448{bottom:48.324613px;}
.y61_c00448{bottom:57.557755px;}
.y60_c00448{bottom:57.916968px;}
.y5f_c00448{bottom:59.590689px;}
.y5e_c00448{bottom:60.158780px;}
.y5d_c00448{bottom:61.573170px;}
.y5c_c00448{bottom:62.601425px;}
.y5b_c00448{bottom:64.277470px;}
.y5a_c00448{bottom:65.368919px;}
.y59_c00448{bottom:66.159000px;}
.y58_c00448{bottom:97.494000px;}
.y57_c00448{bottom:112.119210px;}
.y56_c00448{bottom:112.962706px;}
.y55_c00448{bottom:113.595152px;}
.y54_c00448{bottom:113.972573px;}
.y53_c00448{bottom:114.207153px;}
.y52_c00448{bottom:114.741225px;}
.y51_c00448{bottom:115.035602px;}
.y50_c00448{bottom:115.291500px;}
.y4f_c00448{bottom:131.230500px;}
.y4e_c00448{bottom:147.274500px;}
.y4d_c00448{bottom:148.084500px;}
.y4c_c00448{bottom:149.082000px;}
.y4b_c00448{bottom:149.335500px;}
.y4a_c00448{bottom:150.121500px;}
.y49_c00448{bottom:163.389000px;}
.y48_c00448{bottom:164.101500px;}
.y47_c00448{bottom:164.740500px;}
.y46_c00448{bottom:165.027000px;}
.y45_c00448{bottom:165.843000px;}
.y44_c00448{bottom:166.854000px;}
.y43_c00448{bottom:167.131500px;}
.y42_c00448{bottom:181.615500px;}
.y41_c00448{bottom:181.774500px;}
.y40_c00448{bottom:181.939500px;}
.y3f_c00448{bottom:182.695500px;}
.y3e_c00448{bottom:183.363000px;}
.y3d_c00448{bottom:183.883500px;}
.y3c_c00448{bottom:184.053000px;}
.y3b_c00448{bottom:184.681500px;}
.y3a_c00448{bottom:199.405500px;}
.y39_c00448{bottom:215.241000px;}
.y38_c00448{bottom:215.803500px;}
.y37_c00448{bottom:216.045000px;}
.y36_c00448{bottom:216.363000px;}
.y35_c00448{bottom:216.748500px;}
.y34_c00448{bottom:217.633500px;}
.y33_c00448{bottom:218.268000px;}
.y32_c00448{bottom:218.613000px;}
.y31_c00448{bottom:218.971500px;}
.y30_c00448{bottom:232.369500px;}
.y2f_c00448{bottom:232.633500px;}
.y2e_c00448{bottom:233.002500px;}
.y2d_c00448{bottom:233.581500px;}
.y2c_c00448{bottom:233.703000px;}
.y2b_c00448{bottom:234.418500px;}
.y2a_c00448{bottom:234.666000px;}
.y29_c00448{bottom:235.171500px;}
.y28_c00448{bottom:252.087000px;}
.y27_c00448{bottom:266.880000px;}
.y26_c00448{bottom:267.385500px;}
.y25_c00448{bottom:268.111500px;}
.y24_c00448{bottom:268.630500px;}
.y23_c00448{bottom:269.368500px;}
.y22_c00448{bottom:269.647500px;}
.y21_c00448{bottom:270.273000px;}
.y20_c00448{bottom:284.263500px;}
.y1f_c00448{bottom:284.470500px;}
.y1e_c00448{bottom:285.117000px;}
.y1d_c00448{bottom:285.358500px;}
.y1c_c00448{bottom:285.537000px;}
.y1b_c00448{bottom:286.335000px;}
.y1a_c00448{bottom:286.998000px;}
.y19_c00448{bottom:287.197500px;}
.y18_c00448{bottom:287.553000px;}
.y17_c00448{bottom:302.956500px;}
.y16_c00448{bottom:320.491500px;}
.y15_c00448{bottom:337.276500px;}
.y14_c00448{bottom:353.122500px;}
.y13_c00448{bottom:369.601500px;}
.y12_c00448{bottom:387.253500px;}
.y11_c00448{bottom:403.947000px;}
.y10_c00448{bottom:419.800500px;}
.yf_c00448{bottom:436.762500px;}
.ye_c00448{bottom:453.531000px;}
.yd_c00448{bottom:453.802500px;}
.yc_c00448{bottom:454.534500px;}
.yb_c00448{bottom:455.163000px;}
.ya_c00448{bottom:455.856000px;}
.y9_c00448{bottom:456.060000px;}
.y8_c00448{bottom:456.841500px;}
.y7_c00448{bottom:472.038000px;}
.y6_c00448{bottom:488.700000px;}
.y5_c00448{bottom:507.261000px;}
.y4_c00448{bottom:523.753500px;}
.y3_c00448{bottom:540.340500px;}
.y2_c00448{bottom:557.205000px;}
.y1_c00448{bottom:570.133500px;}
.h14_c00448{height:47.272698px;}
.h13_c00448{height:50.424211px;}
.hc_c00448{height:55.650000px;}
.h9_c00448{height:57.750000px;}
.h15_c00448{height:57.761549px;}
.ha_c00448{height:58.800000px;}
.hd_c00448{height:59.850000px;}
.h5_c00448{height:60.900000px;}
.h7_c00448{height:61.950000px;}
.he_c00448{height:64.050000px;}
.hb_c00448{height:65.100000px;}
.h12_c00448{height:65.131273px;}
.hf_c00448{height:66.150000px;}
.h8_c00448{height:67.200000px;}
.h10_c00448{height:68.250000px;}
.h6_c00448{height:69.300000px;}
.h11_c00448{height:69.304193px;}
.h4_c00448{height:71.400000px;}
.h3_c00448{height:74.550000px;}
.h2_c00448{height:122.850000px;}
.h1_c00448{height:609.000000px;}
.h0_c00448{height:609.120000px;}
.w0_c00448{width:359.100000px;}
.w1_c00448{width:359.250000px;}
.x0_c00448{left:0.000000px;}
.x74_c00448{left:2.700000px;}
.x52_c00448{left:4.320000px;}
.x57_c00448{left:7.560000px;}
.x3_c00448{left:8.910000px;}
.x67_c00448{left:9.988500px;}
.x31_c00448{left:12.960000px;}
.x47_c00448{left:14.850000px;}
.x71_c00448{left:17.131500px;}
.x41_c00448{left:18.630000px;}
.x4c_c00448{left:20.790000px;}
.x1c_c00448{left:23.490000px;}
.xe_c00448{left:25.920000px;}
.x6e_c00448{left:31.708500px;}
.x82_c00448{left:32.734500px;}
.x79_c00448{left:33.912000px;}
.x1d_c00448{left:35.370000px;}
.x37_c00448{left:39.150000px;}
.x3e_c00448{left:40.500000px;}
.xf_c00448{left:43.470000px;}
.x5d_c00448{left:45.090000px;}
.x68_c00448{left:47.788500px;}
.x26_c00448{left:49.410000px;}
.x9_c00448{left:53.730000px;}
.x48_c00448{left:55.890000px;}
.x63_c00448{left:58.998000px;}
.x5b_c00448{left:60.064500px;}
.x6b_c00448{left:62.242500px;}
.x4_c00448{left:63.450000px;}
.x5e_c00448{left:64.530000px;}
.x4d_c00448{left:65.610000px;}
.x16_c00448{left:66.690000px;}
.x27_c00448{left:68.850000px;}
.x32_c00448{left:70.470000px;}
.xa_c00448{left:71.820000px;}
.x2c_c00448{left:73.108500px;}
.x49_c00448{left:75.330000px;}
.x6c_c00448{left:76.335000px;}
.x5f_c00448{left:78.282000px;}
.x1e_c00448{left:83.430000px;}
.x4e_c00448{left:85.590000px;}
.x83_c00448{left:86.734500px;}
.x58_c00448{left:88.830000px;}
.x2d_c00448{left:90.051000px;}
.x53_c00448{left:92.070000px;}
.x33_c00448{left:93.150000px;}
.x75_c00448{left:95.580000px;}
.x72_c00448{left:97.059000px;}
.x10_c00448{left:99.360000px;}
.x1f_c00448{left:100.980000px;}
.x59_c00448{left:104.490000px;}
.x69_c00448{left:106.108500px;}
.x42_c00448{left:109.620000px;}
.x54_c00448{left:113.130000px;}
.x28_c00448{left:117.720000px;}
.x17_c00448{left:119.070000px;}
.x11_c00448{left:122.850000px;}
.x20_c00448{left:129.870000px;}
.x5_c00448{left:131.490000px;}
.x3f_c00448{left:132.570000px;}
.x1_c00448{left:134.460000px;}
.x38_c00448{left:138.240000px;}
.x60_c00448{left:143.287500px;}
.x5c_c00448{left:144.835500px;}
.x4f_c00448{left:146.610000px;}
.x2e_c00448{left:147.822000px;}
.x6a_c00448{left:149.308500px;}
.xb_c00448{left:151.470000px;}
.x61_c00448{left:154.302000px;}
.x7c_c00448{left:156.294000px;}
.x3c_c00448{left:159.030000px;}
.x7a_c00448{left:160.110000px;}
.x39_c00448{left:161.190000px;}
.x18_c00448{left:162.810000px;}
.x76_c00448{left:165.780000px;}
.x64_c00448{left:167.502000px;}
.x21_c00448{left:172.530000px;}
.x34_c00448{left:174.150000px;}
.x43_c00448{left:175.500000px;}
.xc_c00448{left:177.120000px;}
.x12_c00448{left:178.200000px;}
.x77_c00448{left:186.570000px;}
.x4a_c00448{left:188.460000px;}
.x13_c00448{left:191.700000px;}
.x50_c00448{left:192.780000px;}
.x55_c00448{left:194.400000px;}
.x6_c00448{left:195.480000px;}
.x44_c00448{left:196.830000px;}
.x35_c00448{left:198.180000px;}
.x2f_c00448{left:200.211000px;}
.x7d_c00448{left:201.919500px;}
.x40_c00448{left:204.120000px;}
.x22_c00448{left:205.470000px;}
.x62_c00448{left:206.952000px;}
.x4b_c00448{left:208.980000px;}
.x78_c00448{left:210.060000px;}
.x7b_c00448{left:212.490000px;}
.x65_c00448{left:217.720500px;}
.x7e_c00448{left:220.245000px;}
.x23_c00448{left:222.210000px;}
.x29_c00448{left:223.560000px;}
.x19_c00448{left:225.450000px;}
.x7_c00448{left:228.690000px;}
.xd_c00448{left:230.040000px;}
.x80_c00448{left:231.347548px;}
.x3a_c00448{left:233.010000px;}
.x66_c00448{left:235.000500px;}
.x73_c00448{left:236.092500px;}
.x6d_c00448{left:238.350000px;}
.x1a_c00448{left:239.490000px;}
.x2a_c00448{left:241.110000px;}
.x6f_c00448{left:243.394500px;}
.x5a_c00448{left:244.788000px;}
.x56_c00448{left:249.210000px;}
.x14_c00448{left:250.290000px;}
.x51_c00448{left:252.180000px;}
.x2_c00448{left:257.580000px;}
.x45_c00448{left:260.010000px;}
.x24_c00448{left:261.360000px;}
.x36_c00448{left:264.600000px;}
.x3d_c00448{left:268.110000px;}
.x1b_c00448{left:274.050000px;}
.x46_c00448{left:275.400000px;}
.x15_c00448{left:277.560000px;}
.x25_c00448{left:279.450000px;}
.x30_c00448{left:283.887000px;}
.x8_c00448{left:286.470000px;}
.x3b_c00448{left:291.330000px;}
.x7f_c00448{left:292.959105px;}
.x2b_c00448{left:294.030000px;}
.x81_c00448{left:296.810960px;}
.x70_c00448{left:298.248000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fs12_c00448{font-size:42.020176pt;}
.fs11_c00448{font-size:44.821521pt;}
.fsa_c00448{font-size:49.466667pt;}
.fs7_c00448{font-size:51.333333pt;}
.fs13_c00448{font-size:51.343599pt;}
.fs8_c00448{font-size:52.266667pt;}
.fsb_c00448{font-size:53.200000pt;}
.fs3_c00448{font-size:54.133333pt;}
.fs5_c00448{font-size:55.066667pt;}
.fsc_c00448{font-size:56.933333pt;}
.fs9_c00448{font-size:57.866667pt;}
.fs10_c00448{font-size:57.894465pt;}
.fsd_c00448{font-size:58.800000pt;}
.fs6_c00448{font-size:59.733333pt;}
.fse_c00448{font-size:60.666667pt;}
.fs4_c00448{font-size:61.600000pt;}
.fsf_c00448{font-size:61.603727pt;}
.fs2_c00448{font-size:63.466667pt;}
.fs1_c00448{font-size:66.266667pt;}
.fs0_c00448{font-size:109.200000pt;}
.y0_c00448{bottom:0.000000pt;}
.y75_c00448{bottom:22.813867pt;}
.y74_c00448{bottom:23.620213pt;}
.y73_c00448{bottom:23.980053pt;}
.y72_c00448{bottom:24.752400pt;}
.y71_c00448{bottom:25.054747pt;}
.y70_c00448{bottom:26.164000pt;}
.y6f_c00448{bottom:26.849787pt;}
.y6e_c00448{bottom:27.124000pt;}
.y6d_c00448{bottom:36.823541pt;}
.y6c_c00448{bottom:37.754584pt;}
.y6b_c00448{bottom:38.319520pt;}
.y68_c00448{bottom:38.914253pt;}
.y6a_c00448{bottom:39.080640pt;}
.y67_c00448{bottom:39.784503pt;}
.y66_c00448{bottom:40.178907pt;}
.y69_c00448{bottom:40.791945pt;}
.y65_c00448{bottom:41.342593pt;}
.y64_c00448{bottom:42.174400pt;}
.y63_c00448{bottom:42.619644pt;}
.y62_c00448{bottom:42.955212pt;}
.y61_c00448{bottom:51.162449pt;}
.y60_c00448{bottom:51.481749pt;}
.y5f_c00448{bottom:52.969501pt;}
.y5e_c00448{bottom:53.474471pt;}
.y5d_c00448{bottom:54.731707pt;}
.y5c_c00448{bottom:55.645711pt;}
.y5b_c00448{bottom:57.135529pt;}
.y5a_c00448{bottom:58.105705pt;}
.y59_c00448{bottom:58.808000pt;}
.y58_c00448{bottom:86.661333pt;}
.y57_c00448{bottom:99.661520pt;}
.y56_c00448{bottom:100.411295pt;}
.y55_c00448{bottom:100.973468pt;}
.y54_c00448{bottom:101.308953pt;}
.y53_c00448{bottom:101.517469pt;}
.y52_c00448{bottom:101.992200pt;}
.y51_c00448{bottom:102.253868pt;}
.y50_c00448{bottom:102.481333pt;}
.y4f_c00448{bottom:116.649333pt;}
.y4e_c00448{bottom:130.910667pt;}
.y4d_c00448{bottom:131.630667pt;}
.y4c_c00448{bottom:132.517333pt;}
.y4b_c00448{bottom:132.742667pt;}
.y4a_c00448{bottom:133.441333pt;}
.y49_c00448{bottom:145.234667pt;}
.y48_c00448{bottom:145.868000pt;}
.y47_c00448{bottom:146.436000pt;}
.y46_c00448{bottom:146.690667pt;}
.y45_c00448{bottom:147.416000pt;}
.y44_c00448{bottom:148.314667pt;}
.y43_c00448{bottom:148.561333pt;}
.y42_c00448{bottom:161.436000pt;}
.y41_c00448{bottom:161.577333pt;}
.y40_c00448{bottom:161.724000pt;}
.y3f_c00448{bottom:162.396000pt;}
.y3e_c00448{bottom:162.989333pt;}
.y3d_c00448{bottom:163.452000pt;}
.y3c_c00448{bottom:163.602667pt;}
.y3b_c00448{bottom:164.161333pt;}
.y3a_c00448{bottom:177.249333pt;}
.y39_c00448{bottom:191.325333pt;}
.y38_c00448{bottom:191.825333pt;}
.y37_c00448{bottom:192.040000pt;}
.y36_c00448{bottom:192.322667pt;}
.y35_c00448{bottom:192.665333pt;}
.y34_c00448{bottom:193.452000pt;}
.y33_c00448{bottom:194.016000pt;}
.y32_c00448{bottom:194.322667pt;}
.y31_c00448{bottom:194.641333pt;}
.y30_c00448{bottom:206.550667pt;}
.y2f_c00448{bottom:206.785333pt;}
.y2e_c00448{bottom:207.113333pt;}
.y2d_c00448{bottom:207.628000pt;}
.y2c_c00448{bottom:207.736000pt;}
.y2b_c00448{bottom:208.372000pt;}
.y2a_c00448{bottom:208.592000pt;}
.y29_c00448{bottom:209.041333pt;}
.y28_c00448{bottom:224.077333pt;}
.y27_c00448{bottom:237.226667pt;}
.y26_c00448{bottom:237.676000pt;}
.y25_c00448{bottom:238.321333pt;}
.y24_c00448{bottom:238.782667pt;}
.y23_c00448{bottom:239.438667pt;}
.y22_c00448{bottom:239.686667pt;}
.y21_c00448{bottom:240.242667pt;}
.y20_c00448{bottom:252.678667pt;}
.y1f_c00448{bottom:252.862667pt;}
.y1e_c00448{bottom:253.437333pt;}
.y1d_c00448{bottom:253.652000pt;}
.y1c_c00448{bottom:253.810667pt;}
.y1b_c00448{bottom:254.520000pt;}
.y1a_c00448{bottom:255.109333pt;}
.y19_c00448{bottom:255.286667pt;}
.y18_c00448{bottom:255.602667pt;}
.y17_c00448{bottom:269.294667pt;}
.y16_c00448{bottom:284.881333pt;}
.y15_c00448{bottom:299.801333pt;}
.y14_c00448{bottom:313.886667pt;}
.y13_c00448{bottom:328.534667pt;}
.y12_c00448{bottom:344.225333pt;}
.y11_c00448{bottom:359.064000pt;}
.y10_c00448{bottom:373.156000pt;}
.yf_c00448{bottom:388.233333pt;}
.ye_c00448{bottom:403.138667pt;}
.yd_c00448{bottom:403.380000pt;}
.yc_c00448{bottom:404.030667pt;}
.yb_c00448{bottom:404.589333pt;}
.ya_c00448{bottom:405.205333pt;}
.y9_c00448{bottom:405.386667pt;}
.y8_c00448{bottom:406.081333pt;}
.y7_c00448{bottom:419.589333pt;}
.y6_c00448{bottom:434.400000pt;}
.y5_c00448{bottom:450.898667pt;}
.y4_c00448{bottom:465.558667pt;}
.y3_c00448{bottom:480.302667pt;}
.y2_c00448{bottom:495.293333pt;}
.y1_c00448{bottom:506.785333pt;}
.h14_c00448{height:42.020176pt;}
.h13_c00448{height:44.821521pt;}
.hc_c00448{height:49.466667pt;}
.h9_c00448{height:51.333333pt;}
.h15_c00448{height:51.343599pt;}
.ha_c00448{height:52.266667pt;}
.hd_c00448{height:53.200000pt;}
.h5_c00448{height:54.133333pt;}
.h7_c00448{height:55.066667pt;}
.he_c00448{height:56.933333pt;}
.hb_c00448{height:57.866667pt;}
.h12_c00448{height:57.894465pt;}
.hf_c00448{height:58.800000pt;}
.h8_c00448{height:59.733333pt;}
.h10_c00448{height:60.666667pt;}
.h6_c00448{height:61.600000pt;}
.h11_c00448{height:61.603727pt;}
.h4_c00448{height:63.466667pt;}
.h3_c00448{height:66.266667pt;}
.h2_c00448{height:109.200000pt;}
.h1_c00448{height:541.333333pt;}
.h0_c00448{height:541.440000pt;}
.w0_c00448{width:319.200000pt;}
.w1_c00448{width:319.333333pt;}
.x0_c00448{left:0.000000pt;}
.x74_c00448{left:2.400000pt;}
.x52_c00448{left:3.840000pt;}
.x57_c00448{left:6.720000pt;}
.x3_c00448{left:7.920000pt;}
.x67_c00448{left:8.878667pt;}
.x31_c00448{left:11.520000pt;}
.x47_c00448{left:13.200000pt;}
.x71_c00448{left:15.228000pt;}
.x41_c00448{left:16.560000pt;}
.x4c_c00448{left:18.480000pt;}
.x1c_c00448{left:20.880000pt;}
.xe_c00448{left:23.040000pt;}
.x6e_c00448{left:28.185333pt;}
.x82_c00448{left:29.097333pt;}
.x79_c00448{left:30.144000pt;}
.x1d_c00448{left:31.440000pt;}
.x37_c00448{left:34.800000pt;}
.x3e_c00448{left:36.000000pt;}
.xf_c00448{left:38.640000pt;}
.x5d_c00448{left:40.080000pt;}
.x68_c00448{left:42.478667pt;}
.x26_c00448{left:43.920000pt;}
.x9_c00448{left:47.760000pt;}
.x48_c00448{left:49.680000pt;}
.x63_c00448{left:52.442667pt;}
.x5b_c00448{left:53.390667pt;}
.x6b_c00448{left:55.326667pt;}
.x4_c00448{left:56.400000pt;}
.x5e_c00448{left:57.360000pt;}
.x4d_c00448{left:58.320000pt;}
.x16_c00448{left:59.280000pt;}
.x27_c00448{left:61.200000pt;}
.x32_c00448{left:62.640000pt;}
.xa_c00448{left:63.840000pt;}
.x2c_c00448{left:64.985333pt;}
.x49_c00448{left:66.960000pt;}
.x6c_c00448{left:67.853333pt;}
.x5f_c00448{left:69.584000pt;}
.x1e_c00448{left:74.160000pt;}
.x4e_c00448{left:76.080000pt;}
.x83_c00448{left:77.097333pt;}
.x58_c00448{left:78.960000pt;}
.x2d_c00448{left:80.045333pt;}
.x53_c00448{left:81.840000pt;}
.x33_c00448{left:82.800000pt;}
.x75_c00448{left:84.960000pt;}
.x72_c00448{left:86.274667pt;}
.x10_c00448{left:88.320000pt;}
.x1f_c00448{left:89.760000pt;}
.x59_c00448{left:92.880000pt;}
.x69_c00448{left:94.318667pt;}
.x42_c00448{left:97.440000pt;}
.x54_c00448{left:100.560000pt;}
.x28_c00448{left:104.640000pt;}
.x17_c00448{left:105.840000pt;}
.x11_c00448{left:109.200000pt;}
.x20_c00448{left:115.440000pt;}
.x5_c00448{left:116.880000pt;}
.x3f_c00448{left:117.840000pt;}
.x1_c00448{left:119.520000pt;}
.x38_c00448{left:122.880000pt;}
.x60_c00448{left:127.366667pt;}
.x5c_c00448{left:128.742667pt;}
.x4f_c00448{left:130.320000pt;}
.x2e_c00448{left:131.397333pt;}
.x6a_c00448{left:132.718667pt;}
.xb_c00448{left:134.640000pt;}
.x61_c00448{left:137.157333pt;}
.x7c_c00448{left:138.928000pt;}
.x3c_c00448{left:141.360000pt;}
.x7a_c00448{left:142.320000pt;}
.x39_c00448{left:143.280000pt;}
.x18_c00448{left:144.720000pt;}
.x76_c00448{left:147.360000pt;}
.x64_c00448{left:148.890667pt;}
.x21_c00448{left:153.360000pt;}
.x34_c00448{left:154.800000pt;}
.x43_c00448{left:156.000000pt;}
.xc_c00448{left:157.440000pt;}
.x12_c00448{left:158.400000pt;}
.x77_c00448{left:165.840000pt;}
.x4a_c00448{left:167.520000pt;}
.x13_c00448{left:170.400000pt;}
.x50_c00448{left:171.360000pt;}
.x55_c00448{left:172.800000pt;}
.x6_c00448{left:173.760000pt;}
.x44_c00448{left:174.960000pt;}
.x35_c00448{left:176.160000pt;}
.x2f_c00448{left:177.965333pt;}
.x7d_c00448{left:179.484000pt;}
.x40_c00448{left:181.440000pt;}
.x22_c00448{left:182.640000pt;}
.x62_c00448{left:183.957333pt;}
.x4b_c00448{left:185.760000pt;}
.x78_c00448{left:186.720000pt;}
.x7b_c00448{left:188.880000pt;}
.x65_c00448{left:193.529333pt;}
.x7e_c00448{left:195.773333pt;}
.x23_c00448{left:197.520000pt;}
.x29_c00448{left:198.720000pt;}
.x19_c00448{left:200.400000pt;}
.x7_c00448{left:203.280000pt;}
.xd_c00448{left:204.480000pt;}
.x80_c00448{left:205.642265pt;}
.x3a_c00448{left:207.120000pt;}
.x66_c00448{left:208.889333pt;}
.x73_c00448{left:209.860000pt;}
.x6d_c00448{left:211.866667pt;}
.x1a_c00448{left:212.880000pt;}
.x2a_c00448{left:214.320000pt;}
.x6f_c00448{left:216.350667pt;}
.x5a_c00448{left:217.589333pt;}
.x56_c00448{left:221.520000pt;}
.x14_c00448{left:222.480000pt;}
.x51_c00448{left:224.160000pt;}
.x2_c00448{left:228.960000pt;}
.x45_c00448{left:231.120000pt;}
.x24_c00448{left:232.320000pt;}
.x36_c00448{left:235.200000pt;}
.x3d_c00448{left:238.320000pt;}
.x1b_c00448{left:243.600000pt;}
.x46_c00448{left:244.800000pt;}
.x15_c00448{left:246.720000pt;}
.x25_c00448{left:248.400000pt;}
.x30_c00448{left:252.344000pt;}
.x8_c00448{left:254.640000pt;}
.x3b_c00448{left:258.960000pt;}
.x7f_c00448{left:260.408093pt;}
.x2b_c00448{left:261.360000pt;}
.x81_c00448{left:263.831964pt;}
.x70_c00448{left:265.109333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00449 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00449 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00449 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00449 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c00449{transform:matrix(0.008605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008605,0.000000,0.000000,0.250000,0,0);}
.m70_c00449{transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);}
.m68_c00449{transform:matrix(0.016555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016555,0.000000,0.000000,0.250000,0,0);}
.mb4_c00449{transform:matrix(0.029873,-0.001495,0.012497,0.249687,0,0);-ms-transform:matrix(0.029873,-0.001495,0.012497,0.249687,0,0);-webkit-transform:matrix(0.029873,-0.001495,0.012497,0.249687,0,0);}
.mef_c00449{transform:matrix(0.041163,-0.000741,0.004499,0.249960,0,0);-ms-transform:matrix(0.041163,-0.000741,0.004499,0.249960,0,0);-webkit-transform:matrix(0.041163,-0.000741,0.004499,0.249960,0,0);}
.m55_c00449{transform:matrix(0.042335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042335,0.000000,0.000000,0.250000,0,0);}
.m90_c00449{transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083980,0.000000,0.000000,0.250000,0,0);}
.mc8_c00449{transform:matrix(0.095800,-0.002395,0.006248,0.249922,0,0);-ms-transform:matrix(0.095800,-0.002395,0.006248,0.249922,0,0);-webkit-transform:matrix(0.095800,-0.002395,0.006248,0.249922,0,0);}
.mf0_c00449{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.ma9_c00449{transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);}
.ma2_c00449{transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.146930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146930,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);}
.mad_c00449{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.maa_c00449{transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153940,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);}
.m82_c00449{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.mb7_c00449{transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);}
.mb1_c00449{transform:matrix(0.159490,-0.007983,0.012497,0.249687,0,0);-ms-transform:matrix(0.159490,-0.007983,0.012497,0.249687,0,0);-webkit-transform:matrix(0.159490,-0.007983,0.012497,0.249687,0,0);}
.m16_c00449{transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160095,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.mae_c00449{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.ma3_c00449{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m91_c00449{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m59_c00449{transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164180,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m75_c00449{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.mba_c00449{transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165190,0.000000,0.000000,0.250000,0,0);}
.m5c_c00449{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00449{transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167390,0.000000,0.000000,0.250000,0,0);}
.m5e_c00449{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m40_c00449{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00449{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m5d_c00449{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m98_c00449{transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);}
.mc0_c00449{transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173705,0.000000,0.000000,0.250000,0,0);}
.mac_c00449{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m86_c00449{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.mab_c00449{transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);}
.me1_c00449{transform:matrix(0.175815,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175815,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175815,-0.002637,0.003750,0.249972,0,0);}
.m14_c00449{transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175960,0.000000,0.000000,0.250000,0,0);}
.m50_c00449{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176630,0.000000,0.000000,0.250000,0,0);}
.me8_c00449{transform:matrix(0.177136,-0.003188,0.004499,0.249960,0,0);-ms-transform:matrix(0.177136,-0.003188,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177136,-0.003188,0.004499,0.249960,0,0);}
.m4a_c00449{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.md0_c00449{transform:matrix(0.178569,-0.004464,0.006248,0.249922,0,0);-ms-transform:matrix(0.178569,-0.004464,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178569,-0.004464,0.006248,0.249922,0,0);}
.m80_c00449{transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178670,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180620,0.000000,0.000000,0.250000,0,0);}
.m72_c00449{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m6b_c00449{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.m6a_c00449{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.m89_c00449{transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182215,0.000000,0.000000,0.250000,0,0);}
.mc3_c00449{transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);}
.m7a_c00449{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.m94_c00449{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.mea_c00449{transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);-ms-transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183745,-0.003307,0.004499,0.249960,0,0);}
.mb9_c00449{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m77_c00449{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m52_c00449{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.mc1_c00449{transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);}
.mb8_c00449{transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186415,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00449{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.md5_c00449{transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189319,-0.002840,0.003750,0.249972,0,0);}
.m69_c00449{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m95_c00449{transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190080,0.000000,0.000000,0.250000,0,0);}
.m9f_c00449{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190755,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m5b_c00449{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.mbe_c00449{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.mc2_c00449{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.mb5_c00449{transform:matrix(0.192159,-0.009618,0.012497,0.249687,0,0);-ms-transform:matrix(0.192159,-0.009618,0.012497,0.249687,0,0);-webkit-transform:matrix(0.192159,-0.009618,0.012497,0.249687,0,0);}
.m2b_c00449{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);}
.m8a_c00449{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.mbf_c00449{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.mcd_c00449{transform:matrix(0.194804,-0.004870,0.006248,0.249922,0,0);-ms-transform:matrix(0.194804,-0.004870,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194804,-0.004870,0.006248,0.249922,0,0);}
.m38_c00449{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.me7_c00449{transform:matrix(0.195333,-0.003516,0.004499,0.249960,0,0);-ms-transform:matrix(0.195333,-0.003516,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195333,-0.003516,0.004499,0.249960,0,0);}
.m15_c00449{transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);}
.me2_c00449{transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);-ms-transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195618,-0.002934,0.003750,0.249972,0,0);}
.m9_c00449{transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195945,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196860,0.000000,0.000000,0.250000,0,0);}
.m53_c00449{transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);}
.mbb_c00449{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.mee_c00449{transform:matrix(0.197448,-0.003554,0.004499,0.249960,0,0);-ms-transform:matrix(0.197448,-0.003554,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197448,-0.003554,0.004499,0.249960,0,0);}
.mcf_c00449{transform:matrix(0.198253,-0.004956,0.006248,0.249922,0,0);-ms-transform:matrix(0.198253,-0.004956,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198253,-0.004956,0.006248,0.249922,0,0);}
.m71_c00449{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.ma0_c00449{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.m87_c00449{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m54_c00449{transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);}
.m92_c00449{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.mb6_c00449{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.me4_c00449{transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);-ms-transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200652,-0.003010,0.003750,0.249972,0,0);}
.m3a_c00449{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m51_c00449{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.me3_c00449{transform:matrix(0.201317,-0.003020,0.003750,0.249972,0,0);-ms-transform:matrix(0.201317,-0.003020,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201317,-0.003020,0.003750,0.249972,0,0);}
.maf_c00449{transform:matrix(0.201378,-0.010079,0.012497,0.249687,0,0);-ms-transform:matrix(0.201378,-0.010079,0.012497,0.249687,0,0);-webkit-transform:matrix(0.201378,-0.010079,0.012497,0.249687,0,0);}
.m20_c00449{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.mb2_c00449{transform:matrix(0.202392,-0.010130,0.012497,0.249687,0,0);-ms-transform:matrix(0.202392,-0.010130,0.012497,0.249687,0,0);-webkit-transform:matrix(0.202392,-0.010130,0.012497,0.249687,0,0);}
.m8_c00449{transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m58_c00449{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.ma6_c00449{transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m9e_c00449{transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);}
.md6_c00449{transform:matrix(0.206622,-0.003099,0.003750,0.249972,0,0);-ms-transform:matrix(0.206622,-0.003099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206622,-0.003099,0.003750,0.249972,0,0);}
.m1e_c00449{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m84_c00449{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.me5_c00449{transform:matrix(0.209141,-0.003137,0.003750,0.249972,0,0);-ms-transform:matrix(0.209141,-0.003137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209141,-0.003137,0.003750,0.249972,0,0);}
.md3_c00449{transform:matrix(0.210039,-0.005251,0.006248,0.249922,0,0);-ms-transform:matrix(0.210039,-0.005251,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210039,-0.005251,0.006248,0.249922,0,0);}
.m65_c00449{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.med_c00449{transform:matrix(0.211021,-0.003798,0.004499,0.249960,0,0);-ms-transform:matrix(0.211021,-0.003798,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211021,-0.003798,0.004499,0.249960,0,0);}
.me9_c00449{transform:matrix(0.211301,-0.003803,0.004499,0.249960,0,0);-ms-transform:matrix(0.211301,-0.003803,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211301,-0.003803,0.004499,0.249960,0,0);}
.m6e_c00449{transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211480,0.000000,0.000000,0.250000,0,0);}
.m8c_c00449{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.mc6_c00449{transform:matrix(0.212064,-0.005302,0.006248,0.249922,0,0);-ms-transform:matrix(0.212064,-0.005302,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212064,-0.005302,0.006248,0.249922,0,0);}
.m29_c00449{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00449{transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);}
.md9_c00449{transform:matrix(0.214601,-0.003219,0.003750,0.249972,0,0);-ms-transform:matrix(0.214601,-0.003219,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214601,-0.003219,0.003750,0.249972,0,0);}
.m4f_c00449{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m88_c00449{transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);}
.mce_c00449{transform:matrix(0.215228,-0.005381,0.006248,0.249922,0,0);-ms-transform:matrix(0.215228,-0.005381,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215228,-0.005381,0.006248,0.249922,0,0);}
.m73_c00449{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m8b_c00449{transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217470,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.mda_c00449{transform:matrix(0.218110,-0.003272,0.003750,0.249972,0,0);-ms-transform:matrix(0.218110,-0.003272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218110,-0.003272,0.003750,0.249972,0,0);}
.m23_c00449{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m74_c00449{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.meb_c00449{transform:matrix(0.220709,-0.003973,0.004499,0.249960,0,0);-ms-transform:matrix(0.220709,-0.003973,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220709,-0.003973,0.004499,0.249960,0,0);}
.m61_c00449{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m7d_c00449{transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.md8_c00449{transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222720,-0.003341,0.003750,0.249972,0,0);}
.m93_c00449{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m76_c00449{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00449{transform:matrix(0.224120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224120,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.224640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224640,0.000000,0.000000,0.250000,0,0);}
.m8d_c00449{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.md1_c00449{transform:matrix(0.226049,-0.005651,0.006248,0.249922,0,0);-ms-transform:matrix(0.226049,-0.005651,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226049,-0.005651,0.006248,0.249922,0,0);}
.ma5_c00449{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00449{transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);}
.m9b_c00449{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.m83_c00449{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.m6f_c00449{transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.229605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229605,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00449{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m85_c00449{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m62_c00449{transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230810,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m78_c00449{transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);}
.mb0_c00449{transform:matrix(0.232179,-0.011621,0.012497,0.249687,0,0);-ms-transform:matrix(0.232179,-0.011621,0.012497,0.249687,0,0);-webkit-transform:matrix(0.232179,-0.011621,0.012497,0.249687,0,0);}
.m7c_c00449{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236535,0.000000,0.000000,0.250000,0,0);}
.md7_c00449{transform:matrix(0.236953,-0.003554,0.003750,0.249972,0,0);-ms-transform:matrix(0.236953,-0.003554,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236953,-0.003554,0.003750,0.249972,0,0);}
.ma4_c00449{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m63_c00449{transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00449{transform:matrix(0.240335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240335,0.000000,0.000000,0.250000,0,0);}
.m81_c00449{transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);}
.mec_c00449{transform:matrix(0.241046,-0.004339,0.004499,0.249960,0,0);-ms-transform:matrix(0.241046,-0.004339,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241046,-0.004339,0.004499,0.249960,0,0);}
.m64_c00449{transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242580,0.000000,0.000000,0.250000,0,0);}
.m9d_c00449{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.md2_c00449{transform:matrix(0.243289,-0.006082,0.006248,0.249922,0,0);-ms-transform:matrix(0.243289,-0.006082,0.006248,0.249922,0,0);-webkit-transform:matrix(0.243289,-0.006082,0.006248,0.249922,0,0);}
.m21_c00449{transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);}
.m96_c00449{transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);}
.m66_c00449{transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);}
.me6_c00449{transform:matrix(0.247462,-0.003712,0.003750,0.249972,0,0);-ms-transform:matrix(0.247462,-0.003712,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247462,-0.003712,0.003750,0.249972,0,0);}
.mc4_c00449{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m9a_c00449{transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);}
.m57_c00449{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m97_c00449{transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.254220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254220,0.000000,0.000000,0.250000,0,0);}
.mbd_c00449{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.mf1_c00449{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.mb3_c00449{transform:matrix(0.255905,-0.012808,0.012497,0.249687,0,0);-ms-transform:matrix(0.255905,-0.012808,0.012497,0.249687,0,0);-webkit-transform:matrix(0.255905,-0.012808,0.012497,0.249687,0,0);}
.m13_c00449{transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);}
.mdf_c00449{transform:matrix(0.259211,-0.003888,0.003750,0.249972,0,0);-ms-transform:matrix(0.259211,-0.003888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259211,-0.003888,0.003750,0.249972,0,0);}
.m3_c00449{transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00449{transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);}
.ma7_c00449{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.m7f_c00449{transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);}
.mc7_c00449{transform:matrix(0.288200,-0.007205,0.006248,0.249922,0,0);-ms-transform:matrix(0.288200,-0.007205,0.006248,0.249922,0,0);-webkit-transform:matrix(0.288200,-0.007205,0.006248,0.249922,0,0);}
.m47_c00449{transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);}
.md4_c00449{transform:matrix(0.299751,-0.007494,0.006248,0.249922,0,0);-ms-transform:matrix(0.299751,-0.007494,0.006248,0.249922,0,0);-webkit-transform:matrix(0.299751,-0.007494,0.006248,0.249922,0,0);}
.m30_c00449{transform:matrix(0.302465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302465,0.000000,0.000000,0.250000,0,0);}
.me0_c00449{transform:matrix(0.307710,-0.004616,0.003750,0.249972,0,0);-ms-transform:matrix(0.307710,-0.004616,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307710,-0.004616,0.003750,0.249972,0,0);}
.m99_c00449{transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);}
.mde_c00449{transform:matrix(0.308440,-0.004627,0.003750,0.249972,0,0);-ms-transform:matrix(0.308440,-0.004627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.308440,-0.004627,0.003750,0.249972,0,0);}
.m60_c00449{transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);}
.m79_c00449{transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);}
.m5f_c00449{transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323505,0.000000,0.000000,0.250000,0,0);}
.mdc_c00449{transform:matrix(0.334737,-0.005021,0.003750,0.249972,0,0);-ms-transform:matrix(0.334737,-0.005021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.334737,-0.005021,0.003750,0.249972,0,0);}
.mdd_c00449{transform:matrix(0.346101,-0.005192,0.003750,0.249972,0,0);-ms-transform:matrix(0.346101,-0.005192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.346101,-0.005192,0.003750,0.249972,0,0);}
.mca_c00449{transform:matrix(0.353300,-0.008832,0.006248,0.249922,0,0);-ms-transform:matrix(0.353300,-0.008832,0.006248,0.249922,0,0);-webkit-transform:matrix(0.353300,-0.008832,0.006248,0.249922,0,0);}
.mc9_c00449{transform:matrix(0.377307,-0.009433,0.006248,0.249922,0,0);-ms-transform:matrix(0.377307,-0.009433,0.006248,0.249922,0,0);-webkit-transform:matrix(0.377307,-0.009433,0.006248,0.249922,0,0);}
.ma1_c00449{transform:matrix(0.418840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418840,0.000000,0.000000,0.250000,0,0);}
.mdb_c00449{transform:matrix(0.536035,-0.008041,0.003750,0.249972,0,0);-ms-transform:matrix(0.536035,-0.008041,0.003750,0.249972,0,0);-webkit-transform:matrix(0.536035,-0.008041,0.003750,0.249972,0,0);}
.mc5_c00449{transform:matrix(0.610094,-0.015252,0.006248,0.249922,0,0);-ms-transform:matrix(0.610094,-0.015252,0.006248,0.249922,0,0);-webkit-transform:matrix(0.610094,-0.015252,0.006248,0.249922,0,0);}
.m56_c00449{transform:matrix(0.644820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644820,0.000000,0.000000,0.250000,0,0);}
.mcc_c00449{transform:matrix(0.766411,-0.019160,0.006248,0.249922,0,0);-ms-transform:matrix(0.766411,-0.019160,0.006248,0.249922,0,0);-webkit-transform:matrix(0.766411,-0.019160,0.006248,0.249922,0,0);}
.mcb_c00449{transform:matrix(0.834354,-0.020859,0.006248,0.249922,0,0);-ms-transform:matrix(0.834354,-0.020859,0.006248,0.249922,0,0);-webkit-transform:matrix(0.834354,-0.020859,0.006248,0.249922,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
.fc0_c00449{color:transparent;}
.fsf_c00449{font-size:12.603937px;}
.fs15_c00449{font-size:22.050000px;}
.fsd_c00449{font-size:32.558153px;}
.fs12_c00449{font-size:40.954607px;}
.fs4_c00449{font-size:55.650000px;}
.fs9_c00449{font-size:58.800000px;}
.fs10_c00449{font-size:58.818372px;}
.fsa_c00449{font-size:59.850000px;}
.fs1_c00449{font-size:60.900000px;}
.fs13_c00449{font-size:60.906851px;}
.fs14_c00449{font-size:60.909865px;}
.fs2_c00449{font-size:61.950000px;}
.fs11_c00449{font-size:61.956969px;}
.fs3_c00449{font-size:65.100000px;}
.fsc_c00449{font-size:65.116306px;}
.fs7_c00449{font-size:66.150000px;}
.fse_c00449{font-size:67.200000px;}
.fs6_c00449{font-size:68.250000px;}
.fs5_c00449{font-size:70.350000px;}
.fs8_c00449{font-size:72.450000px;}
.fsb_c00449{font-size:74.550000px;}
.fs0_c00449{font-size:75.600000px;}
.fs16_c00449{font-size:76.650000px;}
.y0_c00449{bottom:0.000000px;}
.y51_c00449{bottom:21.063000px;}
.y52_c00449{bottom:21.752040px;}
.y53_c00449{bottom:22.142784px;}
.y54_c00449{bottom:23.113218px;}
.y55_c00449{bottom:23.498670px;}
.y56_c00449{bottom:24.244977px;}
.y57_c00449{bottom:24.517542px;}
.y58_c00449{bottom:25.102578px;}
.y59_c00449{bottom:25.903128px;}
.y5b_c00449{bottom:31.476000px;}
.y4b_c00449{bottom:38.610810px;}
.y4c_c00449{bottom:39.052200px;}
.y4d_c00449{bottom:40.498665px;}
.y4e_c00449{bottom:41.647433px;}
.y4f_c00449{bottom:42.294210px;}
.y50_c00449{bottom:42.714968px;}
.y5a_c00449{bottom:46.710000px;}
.y46_c00449{bottom:55.896225px;}
.y47_c00449{bottom:57.125460px;}
.y48_c00449{bottom:58.636418px;}
.y49_c00449{bottom:59.112938px;}
.y4a_c00449{bottom:60.027713px;}
.y3f_c00449{bottom:72.091500px;}
.y40_c00449{bottom:72.877830px;}
.y41_c00449{bottom:73.068338px;}
.y42_c00449{bottom:73.553483px;}
.y43_c00449{bottom:73.752945px;}
.y44_c00449{bottom:73.943385px;}
.y45_c00449{bottom:75.817297px;}
.y37_c00449{bottom:89.373450px;}
.y38_c00449{bottom:89.764238px;}
.y39_c00449{bottom:90.851512px;}
.y3a_c00449{bottom:91.448925px;}
.y3b_c00449{bottom:91.911113px;}
.y3c_c00449{bottom:92.829525px;}
.y3d_c00449{bottom:93.121313px;}
.y3e_c00449{bottom:94.982438px;}
.y2e_c00449{bottom:95.289000px;}
.y2f_c00449{bottom:96.225450px;}
.y30_c00449{bottom:97.445475px;}
.y31_c00449{bottom:97.828575px;}
.y32_c00449{bottom:99.566513px;}
.y33_c00449{bottom:99.957563px;}
.y34_c00449{bottom:100.856887px;}
.y35_c00449{bottom:100.996388px;}
.y36_c00449{bottom:101.576025px;}
.y27_c00449{bottom:106.381500px;}
.y28_c00449{bottom:106.530000px;}
.y29_c00449{bottom:106.945500px;}
.y2a_c00449{bottom:107.566500px;}
.y2b_c00449{bottom:108.169500px;}
.y2c_c00449{bottom:108.394500px;}
.y2d_c00449{bottom:109.488000px;}
.y24_c00449{bottom:120.722640px;}
.y26_c00449{bottom:125.283000px;}
.y25_c00449{bottom:133.435492px;}
.y1f_c00449{bottom:140.707500px;}
.y20_c00449{bottom:144.054675px;}
.y21_c00449{bottom:147.759825px;}
.y22_c00449{bottom:149.062950px;}
.y23_c00449{bottom:151.779825px;}
.y1e_c00449{bottom:194.811000px;}
.y1d_c00449{bottom:212.359500px;}
.y1c_c00449{bottom:228.933000px;}
.y1b_c00449{bottom:245.671500px;}
.y1a_c00449{bottom:262.674000px;}
.y19_c00449{bottom:280.662000px;}
.y18_c00449{bottom:297.519000px;}
.y17_c00449{bottom:315.022500px;}
.y16_c00449{bottom:332.013000px;}
.y15_c00449{bottom:351.154500px;}
.y14_c00449{bottom:366.837000px;}
.y13_c00449{bottom:384.049500px;}
.y12_c00449{bottom:401.323500px;}
.y11_c00449{bottom:417.109500px;}
.y10_c00449{bottom:417.384000px;}
.yf_c00449{bottom:418.140000px;}
.ye_c00449{bottom:418.323000px;}
.yd_c00449{bottom:418.897500px;}
.yc_c00449{bottom:419.296500px;}
.yb_c00449{bottom:419.577000px;}
.ya_c00449{bottom:420.123000px;}
.y9_c00449{bottom:435.663000px;}
.y8_c00449{bottom:453.250500px;}
.y7_c00449{bottom:470.227500px;}
.y6_c00449{bottom:487.773000px;}
.y5_c00449{bottom:505.500000px;}
.y4_c00449{bottom:522.234000px;}
.y3_c00449{bottom:540.120000px;}
.y2_c00449{bottom:557.233500px;}
.y1_c00449{bottom:570.907500px;}
.h11_c00449{height:12.603937px;}
.h17_c00449{height:22.050000px;}
.hf_c00449{height:32.558153px;}
.h14_c00449{height:40.954607px;}
.h6_c00449{height:55.650000px;}
.hb_c00449{height:58.800000px;}
.h12_c00449{height:58.818372px;}
.hc_c00449{height:59.850000px;}
.h3_c00449{height:60.900000px;}
.h15_c00449{height:60.906851px;}
.h16_c00449{height:60.909865px;}
.h4_c00449{height:61.950000px;}
.h13_c00449{height:61.956969px;}
.h5_c00449{height:65.100000px;}
.he_c00449{height:65.116306px;}
.h9_c00449{height:66.150000px;}
.h10_c00449{height:67.200000px;}
.h8_c00449{height:68.250000px;}
.h7_c00449{height:70.350000px;}
.ha_c00449{height:72.450000px;}
.hd_c00449{height:74.550000px;}
.h2_c00449{height:75.600000px;}
.h18_c00449{height:76.650000px;}
.h1_c00449{height:609.000000px;}
.h0_c00449{height:609.120000px;}
.w0_c00449{width:359.100000px;}
.w1_c00449{width:359.250000px;}
.x0_c00449{left:0.000000px;}
.x83_c00449{left:45.819000px;}
.x74_c00449{left:47.110500px;}
.x70_c00449{left:48.330000px;}
.x69_c00449{left:49.411500px;}
.x64_c00449{left:51.301500px;}
.x5a_c00449{left:52.651500px;}
.x48_c00449{left:54.541500px;}
.x3b_c00449{left:56.161500px;}
.x2c_c00449{left:57.510000px;}
.x14_c00449{left:58.590000px;}
.x3_c00449{left:59.670000px;}
.x79_c00449{left:65.326162px;}
.x1a_c00449{left:67.500000px;}
.x67_c00449{left:69.121500px;}
.x7f_c00449{left:72.164265px;}
.x49_c00449{left:73.711500px;}
.x3e_c00449{left:79.921500px;}
.x2f_c00449{left:81.000000px;}
.x84_c00449{left:84.099000px;}
.x4a_c00449{left:86.131500px;}
.x1b_c00449{left:87.480000px;}
.x5e_c00449{left:89.911500px;}
.x15_c00449{left:92.070000px;}
.x30_c00449{left:93.690000px;}
.x44_c00449{left:95.311500px;}
.x4_c00449{left:96.660000px;}
.x6a_c00449{left:98.551500px;}
.x7d_c00449{left:100.623000px;}
.x22_c00449{left:102.600000px;}
.x4f_c00449{left:103.951500px;}
.x1c_c00449{left:105.030000px;}
.x25_c00449{left:106.110000px;}
.x55_c00449{left:108.001500px;}
.x35_c00449{left:111.159000px;}
.x31_c00449{left:113.670000px;}
.x2d_c00449{left:115.830000px;}
.x6c_c00449{left:117.027557px;}
.x5b_c00449{left:119.071500px;}
.x80_c00449{left:121.305885px;}
.x5_c00449{left:122.310000px;}
.xc_c00449{left:123.390000px;}
.x4b_c00449{left:130.141500px;}
.x2e_c00449{left:132.570000px;}
.x50_c00449{left:137.701500px;}
.x26_c00449{left:140.130000px;}
.x16_c00449{left:142.020000px;}
.x7a_c00449{left:145.561687px;}
.x1d_c00449{left:148.500000px;}
.x6_c00449{left:151.200000px;}
.x65_c00449{left:154.171500px;}
.xd_c00449{left:159.300000px;}
.x5f_c00449{left:160.651500px;}
.x17_c00449{left:168.210000px;}
.x7e_c00449{left:171.660000px;}
.x27_c00449{left:172.800000px;}
.xe_c00449{left:175.230000px;}
.x71_c00449{left:176.850000px;}
.x36_c00449{left:179.155500px;}
.x32_c00449{left:181.980000px;}
.x23_c00449{left:184.680000px;}
.x3f_c00449{left:188.731500px;}
.x45_c00449{left:189.811500px;}
.x6d_c00449{left:191.056454px;}
.x1_c00449{left:192.510000px;}
.x51_c00449{left:196.021500px;}
.x1e_c00449{left:197.910000px;}
.x7_c00449{left:200.610000px;}
.x66_c00449{left:202.231500px;}
.x28_c00449{left:203.580000px;}
.x81_c00449{left:206.488665px;}
.x6b_c00449{left:207.901500px;}
.x4c_c00449{left:209.791500px;}
.x7b_c00449{left:211.292250px;}
.x1f_c00449{left:213.840000px;}
.x8_c00449{left:215.460000px;}
.x6e_c00449{left:217.092891px;}
.x33_c00449{left:221.940000px;}
.x5c_c00449{left:223.831500px;}
.x7c_c00449{left:225.185137px;}
.x60_c00449{left:227.341500px;}
.x75_c00449{left:230.178000px;}
.x56_c00449{left:233.821500px;}
.x37_c00449{left:236.662500px;}
.x85_c00449{left:237.738000px;}
.x40_c00449{left:239.761500px;}
.x76_c00449{left:244.224000px;}
.xf_c00449{left:248.130000px;}
.x46_c00449{left:252.451500px;}
.x72_c00449{left:253.800000px;}
.x38_c00449{left:255.004500px;}
.x52_c00449{left:256.771500px;}
.x3c_c00449{left:258.121500px;}
.x77_c00449{left:259.866000px;}
.x10_c00449{left:261.630000px;}
.x82_c00449{left:262.654290px;}
.x57_c00449{left:263.791500px;}
.x29_c00449{left:265.140000px;}
.x41_c00449{left:266.221500px;}
.x53_c00449{left:269.461500px;}
.x24_c00449{left:271.620000px;}
.x9_c00449{left:275.400000px;}
.x11_c00449{left:277.560000px;}
.x47_c00449{left:280.531500px;}
.x2a_c00449{left:283.500000px;}
.x18_c00449{left:286.470000px;}
.x61_c00449{left:290.251500px;}
.xa_c00449{left:291.600000px;}
.x3d_c00449{left:294.031500px;}
.x78_c00449{left:295.839000px;}
.x5d_c00449{left:298.351500px;}
.x12_c00449{left:301.590000px;}
.x4d_c00449{left:304.021500px;}
.x20_c00449{left:305.370000px;}
.x34_c00449{left:308.340000px;}
.x19_c00449{left:309.690000px;}
.x13_c00449{left:314.280000px;}
.x21_c00449{left:317.250000px;}
.x73_c00449{left:318.870000px;}
.x42_c00449{left:320.761500px;}
.x86_c00449{left:322.650000px;}
.x63_c00449{left:325.081500px;}
.x68_c00449{left:329.401500px;}
.x39_c00449{left:330.586500px;}
.x58_c00449{left:331.831500px;}
.x62_c00449{left:333.181500px;}
.x4e_c00449{left:336.961500px;}
.x2b_c00449{left:338.850000px;}
.xb_c00449{left:339.930000px;}
.x59_c00449{left:343.981500px;}
.x6f_c00449{left:348.928659px;}
.x2_c00449{left:352.080000px;}
.x54_c00449{left:353.701500px;}
.x43_c00449{left:356.131500px;}
.x3a_c00449{left:358.021500px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fsf_c00449{font-size:11.203499pt;}
.fs15_c00449{font-size:19.600000pt;}
.fsd_c00449{font-size:28.940580pt;}
.fs12_c00449{font-size:36.404095pt;}
.fs4_c00449{font-size:49.466667pt;}
.fs9_c00449{font-size:52.266667pt;}
.fs10_c00449{font-size:52.282997pt;}
.fsa_c00449{font-size:53.200000pt;}
.fs1_c00449{font-size:54.133333pt;}
.fs13_c00449{font-size:54.139423pt;}
.fs14_c00449{font-size:54.142102pt;}
.fs2_c00449{font-size:55.066667pt;}
.fs11_c00449{font-size:55.072861pt;}
.fs3_c00449{font-size:57.866667pt;}
.fsc_c00449{font-size:57.881160pt;}
.fs7_c00449{font-size:58.800000pt;}
.fse_c00449{font-size:59.733333pt;}
.fs6_c00449{font-size:60.666667pt;}
.fs5_c00449{font-size:62.533333pt;}
.fs8_c00449{font-size:64.400000pt;}
.fsb_c00449{font-size:66.266667pt;}
.fs0_c00449{font-size:67.200000pt;}
.fs16_c00449{font-size:68.133333pt;}
.y0_c00449{bottom:0.000000pt;}
.y51_c00449{bottom:18.722667pt;}
.y52_c00449{bottom:19.335147pt;}
.y53_c00449{bottom:19.682475pt;}
.y54_c00449{bottom:20.545083pt;}
.y55_c00449{bottom:20.887707pt;}
.y56_c00449{bottom:21.551091pt;}
.y57_c00449{bottom:21.793371pt;}
.y58_c00449{bottom:22.313403pt;}
.y59_c00449{bottom:23.025003pt;}
.y5b_c00449{bottom:27.978667pt;}
.y4b_c00449{bottom:34.320720pt;}
.y4c_c00449{bottom:34.713067pt;}
.y4d_c00449{bottom:35.998813pt;}
.y4e_c00449{bottom:37.019940pt;}
.y4f_c00449{bottom:37.594853pt;}
.y50_c00449{bottom:37.968860pt;}
.y5a_c00449{bottom:41.520000pt;}
.y46_c00449{bottom:49.685533pt;}
.y47_c00449{bottom:50.778187pt;}
.y48_c00449{bottom:52.121260pt;}
.y49_c00449{bottom:52.544833pt;}
.y4a_c00449{bottom:53.357967pt;}
.y3f_c00449{bottom:64.081333pt;}
.y40_c00449{bottom:64.780293pt;}
.y41_c00449{bottom:64.949633pt;}
.y42_c00449{bottom:65.380873pt;}
.y43_c00449{bottom:65.558173pt;}
.y44_c00449{bottom:65.727453pt;}
.y45_c00449{bottom:67.393153pt;}
.y37_c00449{bottom:79.443067pt;}
.y38_c00449{bottom:79.790433pt;}
.y39_c00449{bottom:80.756900pt;}
.y3a_c00449{bottom:81.287933pt;}
.y3b_c00449{bottom:81.698767pt;}
.y3c_c00449{bottom:82.515133pt;}
.y3d_c00449{bottom:82.774500pt;}
.y3e_c00449{bottom:84.428833pt;}
.y2e_c00449{bottom:84.701333pt;}
.y2f_c00449{bottom:85.533733pt;}
.y30_c00449{bottom:86.618200pt;}
.y31_c00449{bottom:86.958733pt;}
.y32_c00449{bottom:88.503567pt;}
.y33_c00449{bottom:88.851167pt;}
.y34_c00449{bottom:89.650567pt;}
.y35_c00449{bottom:89.774567pt;}
.y36_c00449{bottom:90.289800pt;}
.y27_c00449{bottom:94.561333pt;}
.y28_c00449{bottom:94.693333pt;}
.y29_c00449{bottom:95.062667pt;}
.y2a_c00449{bottom:95.614667pt;}
.y2b_c00449{bottom:96.150667pt;}
.y2c_c00449{bottom:96.350667pt;}
.y2d_c00449{bottom:97.322667pt;}
.y24_c00449{bottom:107.309013pt;}
.y26_c00449{bottom:111.362667pt;}
.y25_c00449{bottom:118.609327pt;}
.y1f_c00449{bottom:125.073333pt;}
.y20_c00449{bottom:128.048600pt;}
.y21_c00449{bottom:131.342067pt;}
.y22_c00449{bottom:132.500400pt;}
.y23_c00449{bottom:134.915400pt;}
.y1e_c00449{bottom:173.165333pt;}
.y1d_c00449{bottom:188.764000pt;}
.y1c_c00449{bottom:203.496000pt;}
.y1b_c00449{bottom:218.374667pt;}
.y1a_c00449{bottom:233.488000pt;}
.y19_c00449{bottom:249.477333pt;}
.y18_c00449{bottom:264.461333pt;}
.y17_c00449{bottom:280.020000pt;}
.y16_c00449{bottom:295.122667pt;}
.y15_c00449{bottom:312.137333pt;}
.y14_c00449{bottom:326.077333pt;}
.y13_c00449{bottom:341.377333pt;}
.y12_c00449{bottom:356.732000pt;}
.y11_c00449{bottom:370.764000pt;}
.y10_c00449{bottom:371.008000pt;}
.yf_c00449{bottom:371.680000pt;}
.ye_c00449{bottom:371.842667pt;}
.yd_c00449{bottom:372.353333pt;}
.yc_c00449{bottom:372.708000pt;}
.yb_c00449{bottom:372.957333pt;}
.ya_c00449{bottom:373.442667pt;}
.y9_c00449{bottom:387.256000pt;}
.y8_c00449{bottom:402.889333pt;}
.y7_c00449{bottom:417.980000pt;}
.y6_c00449{bottom:433.576000pt;}
.y5_c00449{bottom:449.333333pt;}
.y4_c00449{bottom:464.208000pt;}
.y3_c00449{bottom:480.106667pt;}
.y2_c00449{bottom:495.318667pt;}
.y1_c00449{bottom:507.473333pt;}
.h11_c00449{height:11.203499pt;}
.h17_c00449{height:19.600000pt;}
.hf_c00449{height:28.940580pt;}
.h14_c00449{height:36.404095pt;}
.h6_c00449{height:49.466667pt;}
.hb_c00449{height:52.266667pt;}
.h12_c00449{height:52.282997pt;}
.hc_c00449{height:53.200000pt;}
.h3_c00449{height:54.133333pt;}
.h15_c00449{height:54.139423pt;}
.h16_c00449{height:54.142102pt;}
.h4_c00449{height:55.066667pt;}
.h13_c00449{height:55.072861pt;}
.h5_c00449{height:57.866667pt;}
.he_c00449{height:57.881160pt;}
.h9_c00449{height:58.800000pt;}
.h10_c00449{height:59.733333pt;}
.h8_c00449{height:60.666667pt;}
.h7_c00449{height:62.533333pt;}
.ha_c00449{height:64.400000pt;}
.hd_c00449{height:66.266667pt;}
.h2_c00449{height:67.200000pt;}
.h18_c00449{height:68.133333pt;}
.h1_c00449{height:541.333333pt;}
.h0_c00449{height:541.440000pt;}
.w0_c00449{width:319.200000pt;}
.w1_c00449{width:319.333333pt;}
.x0_c00449{left:0.000000pt;}
.x83_c00449{left:40.728000pt;}
.x74_c00449{left:41.876000pt;}
.x70_c00449{left:42.960000pt;}
.x69_c00449{left:43.921333pt;}
.x64_c00449{left:45.601333pt;}
.x5a_c00449{left:46.801333pt;}
.x48_c00449{left:48.481333pt;}
.x3b_c00449{left:49.921333pt;}
.x2c_c00449{left:51.120000pt;}
.x14_c00449{left:52.080000pt;}
.x3_c00449{left:53.040000pt;}
.x79_c00449{left:58.067700pt;}
.x1a_c00449{left:60.000000pt;}
.x67_c00449{left:61.441333pt;}
.x7f_c00449{left:64.146013pt;}
.x49_c00449{left:65.521333pt;}
.x3e_c00449{left:71.041333pt;}
.x2f_c00449{left:72.000000pt;}
.x84_c00449{left:74.754667pt;}
.x4a_c00449{left:76.561333pt;}
.x1b_c00449{left:77.760000pt;}
.x5e_c00449{left:79.921333pt;}
.x15_c00449{left:81.840000pt;}
.x30_c00449{left:83.280000pt;}
.x44_c00449{left:84.721333pt;}
.x4_c00449{left:85.920000pt;}
.x6a_c00449{left:87.601333pt;}
.x7d_c00449{left:89.442667pt;}
.x22_c00449{left:91.200000pt;}
.x4f_c00449{left:92.401333pt;}
.x1c_c00449{left:93.360000pt;}
.x25_c00449{left:94.320000pt;}
.x55_c00449{left:96.001333pt;}
.x35_c00449{left:98.808000pt;}
.x31_c00449{left:101.040000pt;}
.x2d_c00449{left:102.960000pt;}
.x6c_c00449{left:104.024495pt;}
.x5b_c00449{left:105.841333pt;}
.x80_c00449{left:107.827453pt;}
.x5_c00449{left:108.720000pt;}
.xc_c00449{left:109.680000pt;}
.x4b_c00449{left:115.681333pt;}
.x2e_c00449{left:117.840000pt;}
.x50_c00449{left:122.401333pt;}
.x26_c00449{left:124.560000pt;}
.x16_c00449{left:126.240000pt;}
.x7a_c00449{left:129.388167pt;}
.x1d_c00449{left:132.000000pt;}
.x6_c00449{left:134.400000pt;}
.x65_c00449{left:137.041333pt;}
.xd_c00449{left:141.600000pt;}
.x5f_c00449{left:142.801333pt;}
.x17_c00449{left:149.520000pt;}
.x7e_c00449{left:152.586667pt;}
.x27_c00449{left:153.600000pt;}
.xe_c00449{left:155.760000pt;}
.x71_c00449{left:157.200000pt;}
.x36_c00449{left:159.249333pt;}
.x32_c00449{left:161.760000pt;}
.x23_c00449{left:164.160000pt;}
.x3f_c00449{left:167.761333pt;}
.x45_c00449{left:168.721333pt;}
.x6d_c00449{left:169.827959pt;}
.x1_c00449{left:171.120000pt;}
.x51_c00449{left:174.241333pt;}
.x1e_c00449{left:175.920000pt;}
.x7_c00449{left:178.320000pt;}
.x66_c00449{left:179.761333pt;}
.x28_c00449{left:180.960000pt;}
.x81_c00449{left:183.545480pt;}
.x6b_c00449{left:184.801333pt;}
.x4c_c00449{left:186.481333pt;}
.x7b_c00449{left:187.815333pt;}
.x1f_c00449{left:190.080000pt;}
.x8_c00449{left:191.520000pt;}
.x6e_c00449{left:192.971459pt;}
.x33_c00449{left:197.280000pt;}
.x5c_c00449{left:198.961333pt;}
.x7c_c00449{left:200.164567pt;}
.x60_c00449{left:202.081333pt;}
.x75_c00449{left:204.602667pt;}
.x56_c00449{left:207.841333pt;}
.x37_c00449{left:210.366667pt;}
.x85_c00449{left:211.322667pt;}
.x40_c00449{left:213.121333pt;}
.x76_c00449{left:217.088000pt;}
.xf_c00449{left:220.560000pt;}
.x46_c00449{left:224.401333pt;}
.x72_c00449{left:225.600000pt;}
.x38_c00449{left:226.670667pt;}
.x52_c00449{left:228.241333pt;}
.x3c_c00449{left:229.441333pt;}
.x77_c00449{left:230.992000pt;}
.x10_c00449{left:232.560000pt;}
.x82_c00449{left:233.470480pt;}
.x57_c00449{left:234.481333pt;}
.x29_c00449{left:235.680000pt;}
.x41_c00449{left:236.641333pt;}
.x53_c00449{left:239.521333pt;}
.x24_c00449{left:241.440000pt;}
.x9_c00449{left:244.800000pt;}
.x11_c00449{left:246.720000pt;}
.x47_c00449{left:249.361333pt;}
.x2a_c00449{left:252.000000pt;}
.x18_c00449{left:254.640000pt;}
.x61_c00449{left:258.001333pt;}
.xa_c00449{left:259.200000pt;}
.x3d_c00449{left:261.361333pt;}
.x78_c00449{left:262.968000pt;}
.x5d_c00449{left:265.201333pt;}
.x12_c00449{left:268.080000pt;}
.x4d_c00449{left:270.241333pt;}
.x20_c00449{left:271.440000pt;}
.x34_c00449{left:274.080000pt;}
.x19_c00449{left:275.280000pt;}
.x13_c00449{left:279.360000pt;}
.x21_c00449{left:282.000000pt;}
.x73_c00449{left:283.440000pt;}
.x42_c00449{left:285.121333pt;}
.x86_c00449{left:286.800000pt;}
.x63_c00449{left:288.961333pt;}
.x68_c00449{left:292.801333pt;}
.x39_c00449{left:293.854667pt;}
.x58_c00449{left:294.961333pt;}
.x62_c00449{left:296.161333pt;}
.x4e_c00449{left:299.521333pt;}
.x2b_c00449{left:301.200000pt;}
.xb_c00449{left:302.160000pt;}
.x59_c00449{left:305.761333pt;}
.x6f_c00449{left:310.158808pt;}
.x2_c00449{left:312.960000pt;}
.x54_c00449{left:314.401333pt;}
.x43_c00449{left:316.561333pt;}
.x3a_c00449{left:318.241333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00450 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00450 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00450 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00450 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mad_c00450{transform:matrix(0.118945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118945,0.000000,0.000000,0.250000,0,0);}
.ma6_c00450{transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);}
.mb2_c00450{transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145760,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146570,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.146580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146580,0.000000,0.000000,0.250000,0,0);}
.mb7_c00450{transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146745,0.000000,0.000000,0.250000,0,0);}
.md9_c00450{transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147345,0.000000,0.000000,0.250000,0,0);}
.m99_c00450{transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149095,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149915,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150135,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152145,0.000000,0.000000,0.250000,0,0);}
.mab_c00450{transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152395,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152665,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.med_c00450{transform:matrix(0.154622,0.002938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154622,0.002938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154622,0.002938,-0.004749,0.249955,0,0);}
.m27_c00450{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.158810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158810,0.000000,0.000000,0.250000,0,0);}
.m52_c00450{transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);}
.mba_c00450{transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160590,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160885,0.000000,0.000000,0.250000,0,0);}
.m9a_c00450{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.ma1_c00450{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164660,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);}
.mdf_c00450{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m46_c00450{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.mc9_c00450{transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165560,0.000000,0.000000,0.250000,0,0);}
.mdb_c00450{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00450{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.mc2_c00450{transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166285,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00450{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.mec_c00450{transform:matrix(0.166550,0.003164,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166550,0.003164,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166550,0.003164,-0.004749,0.249955,0,0);}
.me9_c00450{transform:matrix(0.167530,0.003183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167530,0.003183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167530,0.003183,-0.004749,0.249955,0,0);}
.m3d_c00450{transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167990,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168890,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00450{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169310,0.000000,0.000000,0.250000,0,0);}
.m59_c00450{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.md5_c00450{transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169860,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.ma4_c00450{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.mbb_c00450{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.mb3_c00450{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.m50_c00450{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00450{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.mc0_c00450{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.ma9_c00450{transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);}
.m96_c00450{transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177455,0.000000,0.000000,0.250000,0,0);}
.md4_c00450{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.mcb_c00450{transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178080,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178085,0.000000,0.000000,0.250000,0,0);}
.m89_c00450{transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00450{transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179210,0.000000,0.000000,0.250000,0,0);}
.md0_c00450{transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179770,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.m76_c00450{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m87_c00450{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m5c_c00450{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.meb_c00450{transform:matrix(0.181177,0.003442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181177,0.003442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181177,0.003442,-0.004749,0.249955,0,0);}
.m2b_c00450{transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182330,0.000000,0.000000,0.250000,0,0);}
.mbe_c00450{transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182895,0.000000,0.000000,0.250000,0,0);}
.m85_c00450{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.mbf_c00450{transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);}
.m6e_c00450{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m7f_c00450{transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);}
.m65_c00450{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m79_c00450{transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);}
.me5_c00450{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185330,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186135,0.000000,0.000000,0.250000,0,0);}
.mcd_c00450{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m63_c00450{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.maf_c00450{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187540,0.000000,0.000000,0.250000,0,0);}
.mda_c00450{transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00450{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187965,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m7b_c00450{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.mcc_c00450{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00450{transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);}
.me0_c00450{transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);}
.m6a_c00450{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m71_c00450{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mdd_c00450{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.m9b_c00450{transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192330,0.000000,0.000000,0.250000,0,0);}
.ma2_c00450{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.mde_c00450{transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m93_c00450{transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);}
.mea_c00450{transform:matrix(0.193680,0.003680,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193680,0.003680,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193680,0.003680,-0.004749,0.249955,0,0);}
.m47_c00450{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m94_c00450{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.mcf_c00450{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.me2_c00450{transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00450{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.mbd_c00450{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195785,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00450{transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00450{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00450{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);}
.ma3_c00450{transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);}
.m8d_c00450{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m81_c00450{transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198295,0.000000,0.000000,0.250000,0,0);}
.m75_c00450{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.md7_c00450{transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);}
.m6c_c00450{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.md1_c00450{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199985,0.000000,0.000000,0.250000,0,0);}
.m61_c00450{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200260,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.mee_c00450{transform:matrix(0.201244,0.003824,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201244,0.003824,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201244,0.003824,-0.004749,0.249955,0,0);}
.m57_c00450{transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);}
.m9e_c00450{transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);}
.m92_c00450{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.mac_c00450{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.203055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203055,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203205,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.md6_c00450{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m67_c00450{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);}
.m62_c00450{transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205205,0.000000,0.000000,0.250000,0,0);}
.m97_c00450{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.m95_c00450{transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);}
.me3_c00450{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.me8_c00450{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206115,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.mb6_c00450{transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00450{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208730,0.000000,0.000000,0.250000,0,0);}
.mb0_c00450{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m86_c00450{transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);}
.m7d_c00450{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m84_c00450{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m83_c00450{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00450{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.mbc_c00450{transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212895,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212905,0.000000,0.000000,0.250000,0,0);}
.m60_c00450{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m7a_c00450{transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);}
.mc8_c00450{transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);}
.mc6_c00450{transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214290,0.000000,0.000000,0.250000,0,0);}
.m54_c00450{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.md3_c00450{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);}
.md2_c00450{transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);}
.m64_c00450{transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);}
.mc7_c00450{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217090,0.000000,0.000000,0.250000,0,0);}
.mc1_c00450{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00450{transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);}
.m6d_c00450{transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219290,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{transform:matrix(0.219460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219460,0.000000,0.000000,0.250000,0,0);}
.me7_c00450{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00450{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.m8b_c00450{transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);}
.m8a_c00450{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);}
.m80_c00450{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00450{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);}
.mb9_c00450{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.m5a_c00450{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m55_c00450{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);}
.maa_c00450{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m9f_c00450{transform:matrix(0.228440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228440,0.000000,0.000000,0.250000,0,0);}
.m5f_c00450{transform:matrix(0.228605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228605,0.000000,0.000000,0.250000,0,0);}
.m72_c00450{transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.mb8_c00450{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.mce_c00450{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.me4_c00450{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.me6_c00450{transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240465,0.000000,0.000000,0.250000,0,0);}
.m82_c00450{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.m68_c00450{transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);}
.m98_c00450{transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);}
.ma5_c00450{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m91_c00450{transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00450{transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267645,0.000000,0.000000,0.250000,0,0);}
.md8_c00450{transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.292785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292785,0.000000,0.000000,0.250000,0,0);}
.mae_c00450{transform:matrix(0.295280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295280,0.000000,0.000000,0.250000,0,0);}
.mca_c00450{transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.331365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331365,0.000000,0.000000,0.250000,0,0);}
.m90_c00450{transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351515,0.000000,0.000000,0.250000,0,0);}
.me1_c00450{transform:matrix(0.370640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370640,0.000000,0.000000,0.250000,0,0);}
.ma7_c00450{transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);}
.mb4_c00450{transform:matrix(0.431650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431650,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
.fc0_c00450{color:transparent;}
.fsa_c00450{font-size:58.800000px;}
.fs8_c00450{font-size:59.850000px;}
.fs4_c00450{font-size:60.900000px;}
.fs6_c00450{font-size:61.950000px;}
.fs3_c00450{font-size:63.000000px;}
.fs2_c00450{font-size:64.050000px;}
.fsb_c00450{font-size:65.100000px;}
.fs9_c00450{font-size:66.150000px;}
.fs1_c00450{font-size:68.250000px;}
.fs5_c00450{font-size:69.300000px;}
.fsc_c00450{font-size:69.312508px;}
.fs7_c00450{font-size:70.350000px;}
.fs0_c00450{font-size:76.650000px;}
.y0_c00450{bottom:0.000000px;}
.y88_c00450{bottom:24.145450px;}
.y87_c00450{bottom:24.533592px;}
.y86_c00450{bottom:25.585242px;}
.y85_c00450{bottom:26.590237px;}
.y84_c00450{bottom:28.033933px;}
.y83_c00450{bottom:28.623000px;}
.y82_c00450{bottom:43.930500px;}
.y81_c00450{bottom:59.275500px;}
.y80_c00450{bottom:59.571000px;}
.y7f_c00450{bottom:60.057000px;}
.y7e_c00450{bottom:60.390000px;}
.y7d_c00450{bottom:60.889500px;}
.y7c_c00450{bottom:61.122000px;}
.y7b_c00450{bottom:61.825500px;}
.y7a_c00450{bottom:62.026500px;}
.y79_c00450{bottom:62.377500px;}
.y78_c00450{bottom:76.722000px;}
.y77_c00450{bottom:77.070000px;}
.y76_c00450{bottom:77.628000px;}
.y75_c00450{bottom:77.923500px;}
.y74_c00450{bottom:79.005000px;}
.y73_c00450{bottom:80.467500px;}
.y72_c00450{bottom:93.274500px;}
.y71_c00450{bottom:93.751500px;}
.y70_c00450{bottom:94.339500px;}
.y6f_c00450{bottom:94.723500px;}
.y6e_c00450{bottom:95.406000px;}
.y6d_c00450{bottom:95.731500px;}
.y6c_c00450{bottom:96.016500px;}
.y6b_c00450{bottom:96.394500px;}
.y6a_c00450{bottom:111.795000px;}
.y69_c00450{bottom:126.975000px;}
.y68_c00450{bottom:127.371000px;}
.y67_c00450{bottom:127.881000px;}
.y66_c00450{bottom:129.160500px;}
.y65_c00450{bottom:130.006500px;}
.y64_c00450{bottom:130.416000px;}
.y63_c00450{bottom:144.961500px;}
.y62_c00450{bottom:145.258500px;}
.y61_c00450{bottom:145.411500px;}
.y60_c00450{bottom:146.175000px;}
.y5f_c00450{bottom:146.296500px;}
.y5e_c00450{bottom:147.181500px;}
.y5d_c00450{bottom:147.378000px;}
.y5c_c00450{bottom:147.571500px;}
.y5b_c00450{bottom:147.963000px;}
.y5a_c00450{bottom:162.970500px;}
.y59_c00450{bottom:178.564500px;}
.y58_c00450{bottom:178.765500px;}
.y57_c00450{bottom:179.613000px;}
.y56_c00450{bottom:179.889000px;}
.y55_c00450{bottom:180.498000px;}
.y54_c00450{bottom:180.727500px;}
.y53_c00450{bottom:181.276500px;}
.y52_c00450{bottom:181.443000px;}
.y51_c00450{bottom:196.698000px;}
.y50_c00450{bottom:212.518500px;}
.y4f_c00450{bottom:212.857500px;}
.y4e_c00450{bottom:213.628500px;}
.y4d_c00450{bottom:214.776000px;}
.y4c_c00450{bottom:215.166000px;}
.y4b_c00450{bottom:215.499000px;}
.y4a_c00450{bottom:217.084500px;}
.y49_c00450{bottom:229.587000px;}
.y48_c00450{bottom:229.870500px;}
.y47_c00450{bottom:230.797500px;}
.y46_c00450{bottom:231.684000px;}
.y45_c00450{bottom:232.288500px;}
.y44_c00450{bottom:233.098500px;}
.y43_c00450{bottom:233.434500px;}
.y42_c00450{bottom:233.823000px;}
.y41_c00450{bottom:247.438500px;}
.y40_c00450{bottom:247.698000px;}
.y3f_c00450{bottom:248.014500px;}
.y3e_c00450{bottom:248.994000px;}
.y3d_c00450{bottom:249.694500px;}
.y3c_c00450{bottom:250.576500px;}
.y3b_c00450{bottom:251.104500px;}
.y3a_c00450{bottom:264.246000px;}
.y39_c00450{bottom:264.445500px;}
.y38_c00450{bottom:264.861000px;}
.y37_c00450{bottom:265.027500px;}
.y36_c00450{bottom:265.561500px;}
.y35_c00450{bottom:265.779000px;}
.y34_c00450{bottom:266.031000px;}
.y33_c00450{bottom:266.677500px;}
.y32_c00450{bottom:267.301500px;}
.y31_c00450{bottom:281.755500px;}
.y30_c00450{bottom:282.546000px;}
.y2f_c00450{bottom:283.146000px;}
.y2e_c00450{bottom:284.004000px;}
.y2d_c00450{bottom:284.275500px;}
.y2c_c00450{bottom:285.931500px;}
.y2b_c00450{bottom:299.005500px;}
.y2a_c00450{bottom:299.193000px;}
.y29_c00450{bottom:299.683500px;}
.y28_c00450{bottom:299.887500px;}
.y27_c00450{bottom:300.429000px;}
.y26_c00450{bottom:300.669000px;}
.y25_c00450{bottom:301.845000px;}
.y24_c00450{bottom:302.401500px;}
.y23_c00450{bottom:317.032500px;}
.y22_c00450{bottom:317.914500px;}
.y21_c00450{bottom:318.283500px;}
.y20_c00450{bottom:318.597000px;}
.y1f_c00450{bottom:319.557000px;}
.y1e_c00450{bottom:319.845000px;}
.y1d_c00450{bottom:319.951500px;}
.y1c_c00450{bottom:334.570500px;}
.y1b_c00450{bottom:350.802000px;}
.y1a_c00450{bottom:368.745000px;}
.y19_c00450{bottom:384.532500px;}
.y18_c00450{bottom:400.999500px;}
.y17_c00450{bottom:417.396000px;}
.y16_c00450{bottom:417.637500px;}
.y15_c00450{bottom:418.144500px;}
.y14_c00450{bottom:418.675500px;}
.y13_c00450{bottom:418.851000px;}
.y12_c00450{bottom:419.076000px;}
.y11_c00450{bottom:419.697000px;}
.y10_c00450{bottom:419.863500px;}
.yf_c00450{bottom:420.121500px;}
.ye_c00450{bottom:435.048000px;}
.yd_c00450{bottom:452.629500px;}
.yc_c00450{bottom:452.916000px;}
.yb_c00450{bottom:453.220500px;}
.ya_c00450{bottom:453.711000px;}
.y9_c00450{bottom:454.645500px;}
.y8_c00450{bottom:454.951500px;}
.y7_c00450{bottom:470.367000px;}
.y6_c00450{bottom:487.056000px;}
.y5_c00450{bottom:504.112500px;}
.y4_c00450{bottom:522.502500px;}
.y3_c00450{bottom:538.501500px;}
.y2_c00450{bottom:555.783000px;}
.y1_c00450{bottom:568.491000px;}
.hc_c00450{height:58.800000px;}
.ha_c00450{height:59.850000px;}
.h6_c00450{height:60.900000px;}
.h8_c00450{height:61.950000px;}
.h5_c00450{height:63.000000px;}
.h4_c00450{height:64.050000px;}
.hd_c00450{height:65.100000px;}
.hb_c00450{height:66.150000px;}
.h3_c00450{height:68.250000px;}
.h7_c00450{height:69.300000px;}
.he_c00450{height:69.312508px;}
.h9_c00450{height:70.350000px;}
.h2_c00450{height:76.650000px;}
.h1_c00450{height:609.000000px;}
.h0_c00450{height:609.120000px;}
.w0_c00450{width:359.100000px;}
.w1_c00450{width:359.250000px;}
.x0_c00450{left:0.000000px;}
.x36_c00450{left:2.698500px;}
.x1e_c00450{left:8.640000px;}
.x2_c00450{left:9.990000px;}
.x31_c00450{left:11.068500px;}
.x57_c00450{left:12.507000px;}
.x73_c00450{left:13.867500px;}
.xb_c00450{left:15.930000px;}
.x25_c00450{left:17.949000px;}
.x4c_c00450{left:19.353000px;}
.x65_c00450{left:21.057000px;}
.x46_c00450{left:23.758500px;}
.x61_c00450{left:26.847000px;}
.x3_c00450{left:28.890000px;}
.x1f_c00450{left:31.050000px;}
.x26_c00450{left:34.909500px;}
.x58_c00450{left:38.404500px;}
.x32_c00450{left:40.498500px;}
.x4d_c00450{left:43.333500px;}
.x4_c00450{left:45.900000px;}
.x68_c00450{left:47.364000px;}
.x2d_c00450{left:49.563000px;}
.x11_c00450{left:51.030000px;}
.x16_c00450{left:53.730000px;}
.xc_c00450{left:56.430000px;}
.x76_c00450{left:59.794500px;}
.x59_c00450{left:60.841500px;}
.x33_c00450{left:63.448500px;}
.x69_c00450{left:64.912500px;}
.x54_c00450{left:68.211000px;}
.x3c_c00450{left:69.928500px;}
.x71_c00450{left:73.618500px;}
.x47_c00450{left:75.328500px;}
.x62_c00450{left:76.815000px;}
.x79_c00450{left:79.918500px;}
.x3d_c00450{left:81.538500px;}
.x1a_c00450{left:82.890000px;}
.x12_c00450{left:86.670000px;}
.x20_c00450{left:90.450000px;}
.x42_c00450{left:95.038500px;}
.x5d_c00450{left:96.271500px;}
.x63_c00450{left:97.611000px;}
.x60_c00450{left:98.817000px;}
.x37_c00450{left:99.898500px;}
.x6e_c00450{left:101.046000px;}
.x21_c00450{left:102.330000px;}
.x29_c00450{left:105.840000px;}
.x5_c00450{left:108.540000px;}
.x17_c00450{left:112.320000px;}
.x1b_c00450{left:113.670000px;}
.x43_c00450{left:115.018500px;}
.x77_c00450{left:118.437000px;}
.x48_c00450{left:120.688500px;}
.x4e_c00450{left:123.303000px;}
.x2e_c00450{left:126.493500px;}
.x27_c00450{left:131.002500px;}
.x6f_c00450{left:132.025500px;}
.x3e_c00450{left:134.458500px;}
.xd_c00450{left:135.810000px;}
.x6_c00450{left:138.240000px;}
.x1_c00450{left:142.560000px;}
.x7a_c00450{left:144.618000px;}
.x28_c00450{left:146.937000px;}
.x2a_c00450{left:148.770000px;}
.x13_c00450{left:150.120000px;}
.x50_c00450{left:152.392500px;}
.x5a_c00450{left:155.103000px;}
.x70_c00450{left:159.295500px;}
.x7_c00450{left:163.350000px;}
.xe_c00450{left:166.320000px;}
.x14_c00450{left:168.750000px;}
.x51_c00450{left:172.369500px;}
.x6a_c00450{left:174.286500px;}
.x38_c00450{left:176.038500px;}
.x1c_c00450{left:177.390000px;}
.x3f_c00450{left:179.008500px;}
.x4f_c00450{left:180.208500px;}
.x74_c00450{left:183.438000px;}
.x66_c00450{left:186.837000px;}
.x2f_c00450{left:190.798500px;}
.x44_c00450{left:192.238500px;}
.x49_c00450{left:195.748500px;}
.x40_c00450{left:197.098500px;}
.x39_c00450{left:198.718500px;}
.x8_c00450{left:200.880000px;}
.x75_c00450{left:203.179500px;}
.x34_c00450{left:204.928500px;}
.x5e_c00450{left:206.326500px;}
.x4a_c00450{left:210.328500px;}
.x5b_c00450{left:214.183500px;}
.x52_c00450{left:217.456500px;}
.xf_c00450{left:218.700000px;}
.x22_c00450{left:220.050000px;}
.x3a_c00450{left:223.558500px;}
.x35_c00450{left:228.958500px;}
.x67_c00450{left:231.387000px;}
.x55_c00450{left:233.401500px;}
.x4b_c00450{left:235.168500px;}
.x30_c00450{left:236.929500px;}
.x45_c00450{left:238.948500px;}
.x1d_c00450{left:240.030000px;}
.x2b_c00450{left:242.730000px;}
.x6b_c00450{left:243.742500px;}
.x23_c00450{left:245.970000px;}
.x18_c00450{left:247.050000px;}
.x41_c00450{left:248.668500px;}
.x5f_c00450{left:251.697000px;}
.x7b_c00450{left:252.862500px;}
.x15_c00450{left:254.070000px;}
.x2c_c00450{left:255.150000px;}
.x6c_c00450{left:257.718000px;}
.x10_c00450{left:259.740000px;}
.x9_c00450{left:262.710000px;}
.x24_c00450{left:268.110000px;}
.x56_c00450{left:271.203000px;}
.x78_c00450{left:272.274000px;}
.x64_c00450{left:273.381000px;}
.x53_c00450{left:275.305500px;}
.x3b_c00450{left:282.418500px;}
.x6d_c00450{left:284.761500px;}
.x19_c00450{left:288.900000px;}
.xa_c00450{left:290.790000px;}
.x5c_c00450{left:294.916500px;}
.x72_c00450{left:297.126000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.fsa_c00450{font-size:52.266667pt;}
.fs8_c00450{font-size:53.200000pt;}
.fs4_c00450{font-size:54.133333pt;}
.fs6_c00450{font-size:55.066667pt;}
.fs3_c00450{font-size:56.000000pt;}
.fs2_c00450{font-size:56.933333pt;}
.fsb_c00450{font-size:57.866667pt;}
.fs9_c00450{font-size:58.800000pt;}
.fs1_c00450{font-size:60.666667pt;}
.fs5_c00450{font-size:61.600000pt;}
.fsc_c00450{font-size:61.611118pt;}
.fs7_c00450{font-size:62.533333pt;}
.fs0_c00450{font-size:68.133333pt;}
.y0_c00450{bottom:0.000000pt;}
.y88_c00450{bottom:21.462623pt;}
.y87_c00450{bottom:21.807637pt;}
.y86_c00450{bottom:22.742437pt;}
.y85_c00450{bottom:23.635767pt;}
.y84_c00450{bottom:24.919052pt;}
.y83_c00450{bottom:25.442667pt;}
.y82_c00450{bottom:39.049333pt;}
.y81_c00450{bottom:52.689333pt;}
.y80_c00450{bottom:52.952000pt;}
.y7f_c00450{bottom:53.384000pt;}
.y7e_c00450{bottom:53.680000pt;}
.y7d_c00450{bottom:54.124000pt;}
.y7c_c00450{bottom:54.330667pt;}
.y7b_c00450{bottom:54.956000pt;}
.y7a_c00450{bottom:55.134667pt;}
.y79_c00450{bottom:55.446667pt;}
.y78_c00450{bottom:68.197333pt;}
.y77_c00450{bottom:68.506667pt;}
.y76_c00450{bottom:69.002667pt;}
.y75_c00450{bottom:69.265333pt;}
.y74_c00450{bottom:70.226667pt;}
.y73_c00450{bottom:71.526667pt;}
.y72_c00450{bottom:82.910667pt;}
.y71_c00450{bottom:83.334667pt;}
.y70_c00450{bottom:83.857333pt;}
.y6f_c00450{bottom:84.198667pt;}
.y6e_c00450{bottom:84.805333pt;}
.y6d_c00450{bottom:85.094667pt;}
.y6c_c00450{bottom:85.348000pt;}
.y6b_c00450{bottom:85.684000pt;}
.y6a_c00450{bottom:99.373333pt;}
.y69_c00450{bottom:112.866667pt;}
.y68_c00450{bottom:113.218667pt;}
.y67_c00450{bottom:113.672000pt;}
.y66_c00450{bottom:114.809333pt;}
.y65_c00450{bottom:115.561333pt;}
.y64_c00450{bottom:115.925333pt;}
.y63_c00450{bottom:128.854667pt;}
.y62_c00450{bottom:129.118667pt;}
.y61_c00450{bottom:129.254667pt;}
.y60_c00450{bottom:129.933333pt;}
.y5f_c00450{bottom:130.041333pt;}
.y5e_c00450{bottom:130.828000pt;}
.y5d_c00450{bottom:131.002667pt;}
.y5c_c00450{bottom:131.174667pt;}
.y5b_c00450{bottom:131.522667pt;}
.y5a_c00450{bottom:144.862667pt;}
.y59_c00450{bottom:158.724000pt;}
.y58_c00450{bottom:158.902667pt;}
.y57_c00450{bottom:159.656000pt;}
.y56_c00450{bottom:159.901333pt;}
.y55_c00450{bottom:160.442667pt;}
.y54_c00450{bottom:160.646667pt;}
.y53_c00450{bottom:161.134667pt;}
.y52_c00450{bottom:161.282667pt;}
.y51_c00450{bottom:174.842667pt;}
.y50_c00450{bottom:188.905333pt;}
.y4f_c00450{bottom:189.206667pt;}
.y4e_c00450{bottom:189.892000pt;}
.y4d_c00450{bottom:190.912000pt;}
.y4c_c00450{bottom:191.258667pt;}
.y4b_c00450{bottom:191.554667pt;}
.y4a_c00450{bottom:192.964000pt;}
.y49_c00450{bottom:204.077333pt;}
.y48_c00450{bottom:204.329333pt;}
.y47_c00450{bottom:205.153333pt;}
.y46_c00450{bottom:205.941333pt;}
.y45_c00450{bottom:206.478667pt;}
.y44_c00450{bottom:207.198667pt;}
.y43_c00450{bottom:207.497333pt;}
.y42_c00450{bottom:207.842667pt;}
.y41_c00450{bottom:219.945333pt;}
.y40_c00450{bottom:220.176000pt;}
.y3f_c00450{bottom:220.457333pt;}
.y3e_c00450{bottom:221.328000pt;}
.y3d_c00450{bottom:221.950667pt;}
.y3c_c00450{bottom:222.734667pt;}
.y3b_c00450{bottom:223.204000pt;}
.y3a_c00450{bottom:234.885333pt;}
.y39_c00450{bottom:235.062667pt;}
.y38_c00450{bottom:235.432000pt;}
.y37_c00450{bottom:235.580000pt;}
.y36_c00450{bottom:236.054667pt;}
.y35_c00450{bottom:236.248000pt;}
.y34_c00450{bottom:236.472000pt;}
.y33_c00450{bottom:237.046667pt;}
.y32_c00450{bottom:237.601333pt;}
.y31_c00450{bottom:250.449333pt;}
.y30_c00450{bottom:251.152000pt;}
.y2f_c00450{bottom:251.685333pt;}
.y2e_c00450{bottom:252.448000pt;}
.y2d_c00450{bottom:252.689333pt;}
.y2c_c00450{bottom:254.161333pt;}
.y2b_c00450{bottom:265.782667pt;}
.y2a_c00450{bottom:265.949333pt;}
.y29_c00450{bottom:266.385333pt;}
.y28_c00450{bottom:266.566667pt;}
.y27_c00450{bottom:267.048000pt;}
.y26_c00450{bottom:267.261333pt;}
.y25_c00450{bottom:268.306667pt;}
.y24_c00450{bottom:268.801333pt;}
.y23_c00450{bottom:281.806667pt;}
.y22_c00450{bottom:282.590667pt;}
.y21_c00450{bottom:282.918667pt;}
.y20_c00450{bottom:283.197333pt;}
.y1f_c00450{bottom:284.050667pt;}
.y1e_c00450{bottom:284.306667pt;}
.y1d_c00450{bottom:284.401333pt;}
.y1c_c00450{bottom:297.396000pt;}
.y1b_c00450{bottom:311.824000pt;}
.y1a_c00450{bottom:327.773333pt;}
.y19_c00450{bottom:341.806667pt;}
.y18_c00450{bottom:356.444000pt;}
.y17_c00450{bottom:371.018667pt;}
.y16_c00450{bottom:371.233333pt;}
.y15_c00450{bottom:371.684000pt;}
.y14_c00450{bottom:372.156000pt;}
.y13_c00450{bottom:372.312000pt;}
.y12_c00450{bottom:372.512000pt;}
.y11_c00450{bottom:373.064000pt;}
.y10_c00450{bottom:373.212000pt;}
.yf_c00450{bottom:373.441333pt;}
.ye_c00450{bottom:386.709333pt;}
.yd_c00450{bottom:402.337333pt;}
.yc_c00450{bottom:402.592000pt;}
.yb_c00450{bottom:402.862667pt;}
.ya_c00450{bottom:403.298667pt;}
.y9_c00450{bottom:404.129333pt;}
.y8_c00450{bottom:404.401333pt;}
.y7_c00450{bottom:418.104000pt;}
.y6_c00450{bottom:432.938667pt;}
.y5_c00450{bottom:448.100000pt;}
.y4_c00450{bottom:464.446667pt;}
.y3_c00450{bottom:478.668000pt;}
.y2_c00450{bottom:494.029333pt;}
.y1_c00450{bottom:505.325333pt;}
.hc_c00450{height:52.266667pt;}
.ha_c00450{height:53.200000pt;}
.h6_c00450{height:54.133333pt;}
.h8_c00450{height:55.066667pt;}
.h5_c00450{height:56.000000pt;}
.h4_c00450{height:56.933333pt;}
.hd_c00450{height:57.866667pt;}
.hb_c00450{height:58.800000pt;}
.h3_c00450{height:60.666667pt;}
.h7_c00450{height:61.600000pt;}
.he_c00450{height:61.611118pt;}
.h9_c00450{height:62.533333pt;}
.h2_c00450{height:68.133333pt;}
.h1_c00450{height:541.333333pt;}
.h0_c00450{height:541.440000pt;}
.w0_c00450{width:319.200000pt;}
.w1_c00450{width:319.333333pt;}
.x0_c00450{left:0.000000pt;}
.x36_c00450{left:2.398667pt;}
.x1e_c00450{left:7.680000pt;}
.x2_c00450{left:8.880000pt;}
.x31_c00450{left:9.838667pt;}
.x57_c00450{left:11.117333pt;}
.x73_c00450{left:12.326667pt;}
.xb_c00450{left:14.160000pt;}
.x25_c00450{left:15.954667pt;}
.x4c_c00450{left:17.202667pt;}
.x65_c00450{left:18.717333pt;}
.x46_c00450{left:21.118667pt;}
.x61_c00450{left:23.864000pt;}
.x3_c00450{left:25.680000pt;}
.x1f_c00450{left:27.600000pt;}
.x26_c00450{left:31.030667pt;}
.x58_c00450{left:34.137333pt;}
.x32_c00450{left:35.998667pt;}
.x4d_c00450{left:38.518667pt;}
.x4_c00450{left:40.800000pt;}
.x68_c00450{left:42.101333pt;}
.x2d_c00450{left:44.056000pt;}
.x11_c00450{left:45.360000pt;}
.x16_c00450{left:47.760000pt;}
.xc_c00450{left:50.160000pt;}
.x76_c00450{left:53.150667pt;}
.x59_c00450{left:54.081333pt;}
.x33_c00450{left:56.398667pt;}
.x69_c00450{left:57.700000pt;}
.x54_c00450{left:60.632000pt;}
.x3c_c00450{left:62.158667pt;}
.x71_c00450{left:65.438667pt;}
.x47_c00450{left:66.958667pt;}
.x62_c00450{left:68.280000pt;}
.x79_c00450{left:71.038667pt;}
.x3d_c00450{left:72.478667pt;}
.x1a_c00450{left:73.680000pt;}
.x12_c00450{left:77.040000pt;}
.x20_c00450{left:80.400000pt;}
.x42_c00450{left:84.478667pt;}
.x5d_c00450{left:85.574667pt;}
.x63_c00450{left:86.765333pt;}
.x60_c00450{left:87.837333pt;}
.x37_c00450{left:88.798667pt;}
.x6e_c00450{left:89.818667pt;}
.x21_c00450{left:90.960000pt;}
.x29_c00450{left:94.080000pt;}
.x5_c00450{left:96.480000pt;}
.x17_c00450{left:99.840000pt;}
.x1b_c00450{left:101.040000pt;}
.x43_c00450{left:102.238667pt;}
.x77_c00450{left:105.277333pt;}
.x48_c00450{left:107.278667pt;}
.x4e_c00450{left:109.602667pt;}
.x2e_c00450{left:112.438667pt;}
.x27_c00450{left:116.446667pt;}
.x6f_c00450{left:117.356000pt;}
.x3e_c00450{left:119.518667pt;}
.xd_c00450{left:120.720000pt;}
.x6_c00450{left:122.880000pt;}
.x1_c00450{left:126.720000pt;}
.x7a_c00450{left:128.549333pt;}
.x28_c00450{left:130.610667pt;}
.x2a_c00450{left:132.240000pt;}
.x13_c00450{left:133.440000pt;}
.x50_c00450{left:135.460000pt;}
.x5a_c00450{left:137.869333pt;}
.x70_c00450{left:141.596000pt;}
.x7_c00450{left:145.200000pt;}
.xe_c00450{left:147.840000pt;}
.x14_c00450{left:150.000000pt;}
.x51_c00450{left:153.217333pt;}
.x6a_c00450{left:154.921333pt;}
.x38_c00450{left:156.478667pt;}
.x1c_c00450{left:157.680000pt;}
.x3f_c00450{left:159.118667pt;}
.x4f_c00450{left:160.185333pt;}
.x74_c00450{left:163.056000pt;}
.x66_c00450{left:166.077333pt;}
.x2f_c00450{left:169.598667pt;}
.x44_c00450{left:170.878667pt;}
.x49_c00450{left:173.998667pt;}
.x40_c00450{left:175.198667pt;}
.x39_c00450{left:176.638667pt;}
.x8_c00450{left:178.560000pt;}
.x75_c00450{left:180.604000pt;}
.x34_c00450{left:182.158667pt;}
.x5e_c00450{left:183.401333pt;}
.x4a_c00450{left:186.958667pt;}
.x5b_c00450{left:190.385333pt;}
.x52_c00450{left:193.294667pt;}
.xf_c00450{left:194.400000pt;}
.x22_c00450{left:195.600000pt;}
.x3a_c00450{left:198.718667pt;}
.x35_c00450{left:203.518667pt;}
.x67_c00450{left:205.677333pt;}
.x55_c00450{left:207.468000pt;}
.x4b_c00450{left:209.038667pt;}
.x30_c00450{left:210.604000pt;}
.x45_c00450{left:212.398667pt;}
.x1d_c00450{left:213.360000pt;}
.x2b_c00450{left:215.760000pt;}
.x6b_c00450{left:216.660000pt;}
.x23_c00450{left:218.640000pt;}
.x18_c00450{left:219.600000pt;}
.x41_c00450{left:221.038667pt;}
.x5f_c00450{left:223.730667pt;}
.x7b_c00450{left:224.766667pt;}
.x15_c00450{left:225.840000pt;}
.x2c_c00450{left:226.800000pt;}
.x6c_c00450{left:229.082667pt;}
.x10_c00450{left:230.880000pt;}
.x9_c00450{left:233.520000pt;}
.x24_c00450{left:238.320000pt;}
.x56_c00450{left:241.069333pt;}
.x78_c00450{left:242.021333pt;}
.x64_c00450{left:243.005333pt;}
.x53_c00450{left:244.716000pt;}
.x3b_c00450{left:251.038667pt;}
.x6d_c00450{left:253.121333pt;}
.x19_c00450{left:256.800000pt;}
.xa_c00450{left:258.480000pt;}
.x5c_c00450{left:262.148000pt;}
.x72_c00450{left:264.112000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00451 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00451{transform:matrix(0.013885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013885,0.000000,0.000000,0.250000,0,0);}
.mc9_c00451{transform:matrix(0.066225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066225,0.000000,0.000000,0.250000,0,0);}
.me1_c00451{transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.129945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129945,0.000000,0.000000,0.250000,0,0);}
.mc8_c00451{transform:matrix(0.138260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00451{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.me2_c00451{transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141380,0.000000,0.000000,0.250000,0,0);}
.m99_c00451{transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151210,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151735,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.154245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154245,0.000000,0.000000,0.250000,0,0);}
.mc1_c00451{transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);}
.m45_c00451{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.156079,0.001873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156079,0.001873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156079,0.001873,-0.003000,0.249982,0,0);}
.m9f_c00451{transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);}
.m9d_c00451{transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);}
.ma5_c00451{transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158555,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.158685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158685,0.000000,0.000000,0.250000,0,0);}
.m90_c00451{transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159105,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.159174,0.001910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159174,0.001910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159174,0.001910,-0.003000,0.249982,0,0);}
.mec_c00451{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m6c_c00451{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.mb1_c00451{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00451{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m94_c00451{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.ma1_c00451{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m4b_c00451{transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);}
.m56_c00451{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.mb3_c00451{transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.165283,0.001983,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165283,0.001983,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165283,0.001983,-0.003000,0.249982,0,0);}
.m13_c00451{transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.165863,0.001990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165863,0.001990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165863,0.001990,-0.003000,0.249982,0,0);}
.m44_c00451{transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166765,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.170138,0.002042,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170138,0.002042,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170138,0.002042,-0.003000,0.249982,0,0);}
.md1_c00451{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m96_c00451{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.mab_c00451{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.m73_c00451{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m9b_c00451{transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.172993,0.002076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172993,0.002076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172993,0.002076,-0.003000,0.249982,0,0);}
.maa_c00451{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00451{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m6b_c00451{transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173805,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00451{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m93_c00451{transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m74_c00451{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m71_c00451{transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177230,0.000000,0.000000,0.250000,0,0);}
.mc4_c00451{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.mc5_c00451{transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.178155,0.002316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178155,0.002316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178155,0.002316,-0.003250,0.249979,0,0);}
.ma7_c00451{transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178280,0.000000,0.000000,0.250000,0,0);}
.m64_c00451{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.mbe_c00451{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m46_c00451{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m9a_c00451{transform:matrix(0.179580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{transform:matrix(0.179635,0.002335,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179635,0.002335,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179635,0.002335,-0.003250,0.249979,0,0);}
.m4_c00451{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.mbf_c00451{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.mbb_c00451{transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);}
.m9c_c00451{transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180495,0.000000,0.000000,0.250000,0,0);}
.m63_c00451{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m8a_c00451{transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180665,0.000000,0.000000,0.250000,0,0);}
.mb6_c00451{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.ma0_c00451{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.mef_c00451{transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181905,0.000000,0.000000,0.250000,0,0);}
.mc2_c00451{transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182260,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.m65_c00451{transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183085,0.000000,0.000000,0.250000,0,0);}
.m95_c00451{transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183520,0.000000,0.000000,0.250000,0,0);}
.m97_c00451{transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);}
.mb9_c00451{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.184929,0.002404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184929,0.002404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184929,0.002404,-0.003250,0.249979,0,0);}
.m70_c00451{transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);}
.md4_c00451{transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185395,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00451{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00451{transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);}
.mac_c00451{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m76_c00451{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.maf_c00451{transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);}
.mb4_c00451{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m4a_c00451{transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187060,0.000000,0.000000,0.250000,0,0);}
.mf1_c00451{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m98_c00451{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.187601,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187601,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187601,0.002251,-0.003000,0.249982,0,0);}
.mb2_c00451{transform:matrix(0.187640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187640,0.000000,0.000000,0.250000,0,0);}
.m91_c00451{transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);}
.m54_c00451{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.me0_c00451{transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188795,0.000000,0.000000,0.250000,0,0);}
.md0_c00451{transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00451{transform:matrix(0.189761,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189761,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189761,0.002277,-0.003000,0.249982,0,0);}
.me6_c00451{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.190804,0.002480,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190804,0.002480,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190804,0.002480,-0.003250,0.249979,0,0);}
.m29_c00451{transform:matrix(0.190964,0.002483,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190964,0.002483,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190964,0.002483,-0.003250,0.249979,0,0);}
.med_c00451{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m6a_c00451{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.191046,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191046,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191046,0.002293,-0.003000,0.249982,0,0);}
.meb_c00451{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.mb5_c00451{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m88_c00451{transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193205,0.000000,0.000000,0.250000,0,0);}
.m84_c00451{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m53_c00451{transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193880,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.194321,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194321,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194321,0.002332,-0.003000,0.249982,0,0);}
.m21_c00451{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m8e_c00451{transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195165,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);}
.mc7_c00451{transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);}
.mdf_c00451{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.m87_c00451{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197595,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.mb7_c00451{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00451{transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.me3_c00451{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m8b_c00451{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m86_c00451{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mc0_c00451{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202885,0.000000,0.000000,0.250000,0,0);}
.m5d_c00451{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00451{transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00451{transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);}
.m92_c00451{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204455,0.000000,0.000000,0.250000,0,0);}
.mc6_c00451{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.205573,0.002672,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205573,0.002672,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205573,0.002672,-0.003250,0.249979,0,0);}
.ma8_c00451{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);}
.m6e_c00451{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.mdc_c00451{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.mae_c00451{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m7a_c00451{transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00451{transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);}
.m81_c00451{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.208140,0.002498,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208140,0.002498,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208140,0.002498,-0.003000,0.249982,0,0);}
.m66_c00451{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m7e_c00451{transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);}
.m61_c00451{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.mad_c00451{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.mdb_c00451{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m9e_c00451{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.m5e_c00451{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209955,0.000000,0.000000,0.250000,0,0);}
.m72_c00451{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m8f_c00451{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.md8_c00451{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.mf0_c00451{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213545,0.000000,0.000000,0.250000,0,0);}
.m78_c00451{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m75_c00451{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.214607,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214607,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214607,0.002790,-0.003250,0.249979,0,0);}
.m27_c00451{transform:matrix(0.214807,0.002792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214807,0.002792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214807,0.002792,-0.003250,0.249979,0,0);}
.m7c_c00451{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.mea_c00451{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.m6d_c00451{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m60_c00451{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.m2f_c00451{transform:matrix(0.216152,0.002810,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216152,0.002810,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216152,0.002810,-0.003250,0.249979,0,0);}
.m80_c00451{transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216240,0.000000,0.000000,0.250000,0,0);}
.m3c_c00451{transform:matrix(0.216529,0.002598,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216529,0.002598,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216529,0.002598,-0.003000,0.249982,0,0);}
.mda_c00451{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.mcf_c00451{transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217185,0.000000,0.000000,0.250000,0,0);}
.mc3_c00451{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.mcb_c00451{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.mba_c00451{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.md7_c00451{transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);}
.m67_c00451{transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220260,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.220381,0.002865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220381,0.002865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220381,0.002865,-0.003250,0.249979,0,0);}
.m4c_c00451{transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00451{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.220769,0.002649,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220769,0.002649,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220769,0.002649,-0.003000,0.249982,0,0);}
.m79_c00451{transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221005,0.000000,0.000000,0.250000,0,0);}
.md3_c00451{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.mf3_c00451{transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.223726,0.002908,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223726,0.002908,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223726,0.002908,-0.003250,0.249979,0,0);}
.m77_c00451{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.m62_c00451{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);}
.m68_c00451{transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);}
.mee_c00451{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m31_c00451{transform:matrix(0.227901,0.002963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227901,0.002963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227901,0.002963,-0.003250,0.249979,0,0);}
.m24_c00451{transform:matrix(0.228586,0.002972,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228586,0.002972,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228586,0.002972,-0.003250,0.249979,0,0);}
.md9_c00451{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.mce_c00451{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.md2_c00451{transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);}
.m69_c00451{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m8c_c00451{transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);}
.m8d_c00451{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.232213,0.002787,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232213,0.002787,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232213,0.002787,-0.003000,0.249982,0,0);}
.m7_c00451{transform:matrix(0.232730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232730,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232855,0.000000,0.000000,0.250000,0,0);}
.m4d_c00451{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.me8_c00451{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.ma6_c00451{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.mbd_c00451{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.m7d_c00451{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.245630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245630,0.000000,0.000000,0.250000,0,0);}
.mbc_c00451{transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00451{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.mcc_c00451{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.mf2_c00451{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.251829,0.003274,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251829,0.003274,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251829,0.003274,-0.003250,0.249979,0,0);}
.me_c00451{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.mca_c00451{transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);}
.m89_c00451{transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261840,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{transform:matrix(0.268280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268280,0.000000,0.000000,0.250000,0,0);}
.mdd_c00451{transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);}
.m5c_c00451{transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276955,0.000000,0.000000,0.250000,0,0);}
.mf4_c00451{transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);}
.mde_c00451{transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);}
.md5_c00451{transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);}
.me4_c00451{transform:matrix(0.307330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307330,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.323195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323195,0.000000,0.000000,0.250000,0,0);}
.m82_c00451{transform:matrix(0.354080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354080,0.000000,0.000000,0.250000,0,0);}
.md6_c00451{transform:matrix(0.356125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356125,0.000000,0.000000,0.250000,0,0);}
.me5_c00451{transform:matrix(0.374825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374825,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.411640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411640,0.000000,0.000000,0.250000,0,0);}
.m85_c00451{transform:matrix(0.432805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432805,0.000000,0.000000,0.250000,0,0);}
.m83_c00451{transform:matrix(0.458135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458135,0.000000,0.000000,0.250000,0,0);}
.me7_c00451{transform:matrix(0.500140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500140,0.000000,0.000000,0.250000,0,0);}
.m2b_c00451{transform:matrix(0.814551,0.010589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.814551,0.010589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.814551,0.010589,-0.003250,0.249979,0,0);}
.mf5_c00451{transform:matrix(0.849235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849235,0.000000,0.000000,0.250000,0,0);}
.mf6_c00451{transform:matrix(2.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.175860,0.000000,0.000000,0.250000,0,0);}
.me9_c00451{transform:matrix(5.058640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.058640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.058640,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
.fc0_c00451{color:transparent;}
.fs15_c00451{font-size:17.850000px;}
.fs18_c00451{font-size:22.050000px;}
.fs12_c00451{font-size:24.150000px;}
.fs13_c00451{font-size:28.350000px;}
.fs17_c00451{font-size:56.700000px;}
.fs5_c00451{font-size:56.704791px;}
.fsc_c00451{font-size:57.750000px;}
.fs6_c00451{font-size:57.754880px;}
.fs2_c00451{font-size:58.800000px;}
.fsb_c00451{font-size:59.850000px;}
.fs8_c00451{font-size:59.854309px;}
.fs1_c00451{font-size:60.900000px;}
.fs3_c00451{font-size:61.950000px;}
.fs10_c00451{font-size:63.000000px;}
.fs4_c00451{font-size:64.050000px;}
.fsa_c00451{font-size:65.100000px;}
.fse_c00451{font-size:66.150000px;}
.fs7_c00451{font-size:66.154763px;}
.fsd_c00451{font-size:67.200000px;}
.fs14_c00451{font-size:68.250000px;}
.fsf_c00451{font-size:69.300000px;}
.fs9_c00451{font-size:70.350000px;}
.fs11_c00451{font-size:71.400000px;}
.fs16_c00451{font-size:81.900000px;}
.fs0_c00451{font-size:113.400000px;}
.y0_c00451{bottom:0.000000px;}
.y50_c00451{bottom:35.274000px;}
.y4f_c00451{bottom:51.571500px;}
.y59_c00451{bottom:61.560000px;}
.y4e_c00451{bottom:69.454500px;}
.y4d_c00451{bottom:85.305000px;}
.y4c_c00451{bottom:101.902500px;}
.y53_c00451{bottom:108.139500px;}
.y52_c00451{bottom:115.830000px;}
.y56_c00451{bottom:119.205000px;}
.y4b_c00451{bottom:119.326500px;}
.y51_c00451{bottom:128.250000px;}
.y4a_c00451{bottom:136.306500px;}
.y49_c00451{bottom:153.727500px;}
.y55_c00451{bottom:157.140000px;}
.y48_c00451{bottom:170.853000px;}
.y47_c00451{bottom:188.113500px;}
.y46_c00451{bottom:205.402500px;}
.y45_c00451{bottom:219.961500px;}
.y44_c00451{bottom:220.266000px;}
.y43_c00451{bottom:221.193000px;}
.y42_c00451{bottom:221.904000px;}
.y41_c00451{bottom:222.294000px;}
.y40_c00451{bottom:222.915000px;}
.y3f_c00451{bottom:223.561500px;}
.y3e_c00451{bottom:238.831500px;}
.y58_c00451{bottom:255.826500px;}
.y3d_c00451{bottom:257.035500px;}
.y57_c00451{bottom:271.882500px;}
.y3c_c00451{bottom:273.072000px;}
.y3b_c00451{bottom:290.299500px;}
.y3a_c00451{bottom:307.333500px;}
.y39_c00451{bottom:324.348000px;}
.y38_c00451{bottom:341.502000px;}
.y37_c00451{bottom:358.338000px;}
.y36_c00451{bottom:375.496500px;}
.y35_c00451{bottom:392.509500px;}
.y34_c00451{bottom:408.441000px;}
.y33_c00451{bottom:423.370872px;}
.y32_c00451{bottom:423.930888px;}
.y31_c00451{bottom:424.592298px;}
.y30_c00451{bottom:424.760616px;}
.y2f_c00451{bottom:425.366172px;}
.y2e_c00451{bottom:425.976174px;}
.y2d_c00451{bottom:426.601440px;}
.y2c_c00451{bottom:442.203054px;}
.y2b_c00451{bottom:442.595490px;}
.y2a_c00451{bottom:442.799682px;}
.y29_c00451{bottom:443.318046px;}
.y28_c00451{bottom:444.056838px;}
.y27_c00451{bottom:444.383502px;}
.y26_c00451{bottom:445.181460px;}
.y25_c00451{bottom:445.501500px;}
.y1c_c00451{bottom:459.861079px;}
.y1b_c00451{bottom:460.155900px;}
.y1a_c00451{bottom:460.412111px;}
.y19_c00451{bottom:461.254530px;}
.y18_c00451{bottom:461.850723px;}
.y17_c00451{bottom:462.048044px;}
.y16_c00451{bottom:462.511500px;}
.y15_c00451{bottom:478.089000px;}
.y24_c00451{bottom:492.607532px;}
.y23_c00451{bottom:493.347986px;}
.y22_c00451{bottom:493.565683px;}
.y21_c00451{bottom:493.825365px;}
.y20_c00451{bottom:494.723984px;}
.y1f_c00451{bottom:495.011862px;}
.y1e_c00451{bottom:495.327509px;}
.y1d_c00451{bottom:496.261500px;}
.y14_c00451{bottom:509.307000px;}
.y13_c00451{bottom:509.521500px;}
.y12_c00451{bottom:510.040500px;}
.y11_c00451{bottom:510.258000px;}
.y10_c00451{bottom:510.528000px;}
.yf_c00451{bottom:510.685500px;}
.ye_c00451{bottom:511.279500px;}
.yd_c00451{bottom:511.461000px;}
.yc_c00451{bottom:512.212500px;}
.yb_c00451{bottom:512.458500px;}
.y54_c00451{bottom:527.581500px;}
.ya_c00451{bottom:527.715000px;}
.y9_c00451{bottom:543.232500px;}
.y8_c00451{bottom:543.835500px;}
.y7_c00451{bottom:544.186500px;}
.y6_c00451{bottom:544.380000px;}
.y5_c00451{bottom:545.202000px;}
.y4_c00451{bottom:546.001500px;}
.y3_c00451{bottom:546.210000px;}
.y2_c00451{bottom:562.185000px;}
.y1_c00451{bottom:573.880500px;}
.h17_c00451{height:17.850000px;}
.h1a_c00451{height:22.050000px;}
.h14_c00451{height:24.150000px;}
.h15_c00451{height:28.350000px;}
.h19_c00451{height:56.700000px;}
.h7_c00451{height:56.704791px;}
.he_c00451{height:57.750000px;}
.h8_c00451{height:57.754880px;}
.h4_c00451{height:58.800000px;}
.hd_c00451{height:59.850000px;}
.ha_c00451{height:59.854309px;}
.h3_c00451{height:60.900000px;}
.h5_c00451{height:61.950000px;}
.h12_c00451{height:63.000000px;}
.h6_c00451{height:64.050000px;}
.hc_c00451{height:65.100000px;}
.h10_c00451{height:66.150000px;}
.h9_c00451{height:66.154763px;}
.hf_c00451{height:67.200000px;}
.h16_c00451{height:68.250000px;}
.h11_c00451{height:69.300000px;}
.hb_c00451{height:70.350000px;}
.h13_c00451{height:71.400000px;}
.h18_c00451{height:81.900000px;}
.h2_c00451{height:113.400000px;}
.h0_c00451{height:617.700000px;}
.h1_c00451{height:618.000000px;}
.w0_c00451{width:359.100000px;}
.w1_c00451{width:359.250000px;}
.x0_c00451{left:0.000000px;}
.x6f_c00451{left:42.930000px;}
.x6c_c00451{left:44.008500px;}
.x5d_c00451{left:45.358500px;}
.x51_c00451{left:47.520000px;}
.x4e_c00451{left:48.870000px;}
.x3d_c00451{left:50.490000px;}
.x38_c00451{left:51.570000px;}
.x2b_c00451{left:53.103000px;}
.x14_c00451{left:54.678000px;}
.x3_c00451{left:56.160000px;}
.x1d_c00451{left:59.400000px;}
.x6a_c00451{left:60.748500px;}
.x60_c00451{left:63.988500px;}
.x67_c00451{left:69.118500px;}
.x1e_c00451{left:72.360000px;}
.xb_c00451{left:74.113500px;}
.x32_c00451{left:75.870000px;}
.x15_c00451{left:77.076000px;}
.x10_c00451{left:79.648500px;}
.x4_c00451{left:84.780000px;}
.x33_c00451{left:87.480000px;}
.x48_c00451{left:88.560000px;}
.x52_c00451{left:91.800000px;}
.x4f_c00451{left:93.690000px;}
.x55_c00451{left:98.010000px;}
.x3e_c00451{left:101.790000px;}
.x1f_c00451{left:105.840000px;}
.x6e_c00451{left:107.728500px;}
.x49_c00451{left:109.620000px;}
.x4c_c00451{left:110.700000px;}
.x21_c00451{left:113.253000px;}
.x57_c00451{left:116.370000px;}
.x56_c00451{left:118.530000px;}
.x43_c00451{left:122.850000px;}
.x24_c00451{left:125.968500px;}
.x11_c00451{left:127.438500px;}
.x68_c00451{left:128.788500px;}
.x34_c00451{left:133.110000px;}
.x61_c00451{left:135.808500px;}
.x58_c00451{left:137.700000px;}
.x4d_c00451{left:141.480000px;}
.x63_c00451{left:143.908500px;}
.x16_c00451{left:145.392000px;}
.x5_c00451{left:146.610000px;}
.x35_c00451{left:147.960000px;}
.x25_c00451{left:150.249000px;}
.x2f_c00451{left:155.695182px;}
.x17_c00451{left:161.869500px;}
.x64_c00451{left:164.158500px;}
.x39_c00451{left:165.780000px;}
.x6_c00451{left:166.860000px;}
.x3f_c00451{left:169.290000px;}
.x26_c00451{left:172.393500px;}
.x22_c00451{left:174.292500px;}
.x4a_c00451{left:180.360000px;}
.x50_c00451{left:181.980000px;}
.x1_c00451{left:189.000000px;}
.x40_c00451{left:190.890000px;}
.x3a_c00451{left:192.510000px;}
.x44_c00451{left:200.880000px;}
.x30_c00451{left:206.158182px;}
.x5c_c00451{left:209.788500px;}
.x5e_c00451{left:211.408500px;}
.x45_c00451{left:213.300000px;}
.x18_c00451{left:215.922000px;}
.x7_c00451{left:217.350000px;}
.x31_c00451{left:220.184682px;}
.xc_c00451{left:221.539500px;}
.x72_c00451{left:223.830000px;}
.x12_c00451{left:228.148500px;}
.x53_c00451{left:229.500000px;}
.x8_c00451{left:230.850000px;}
.x3b_c00451{left:231.930000px;}
.x2c_c00451{left:235.057500px;}
.xd_c00451{left:239.088000px;}
.x27_c00451{left:241.518000px;}
.x41_c00451{left:247.320000px;}
.x36_c00451{left:251.640000px;}
.x54_c00451{left:253.530000px;}
.x19_c00451{left:254.740500px;}
.x59_c00451{left:256.230000px;}
.x13_c00451{left:258.118500px;}
.x62_c00451{left:259.468500px;}
.x28_c00451{left:261.493500px;}
.x5f_c00451{left:265.138500px;}
.x3c_c00451{left:268.110000px;}
.xe_c00451{left:270.943500px;}
.x1a_c00451{left:274.453500px;}
.x29_c00451{left:278.239500px;}
.x23_c00451{left:281.481000px;}
.x46_c00451{left:287.280000px;}
.x42_c00451{left:289.170000px;}
.x9_c00451{left:290.520000px;}
.x6b_c00451{left:293.758500px;}
.x2d_c00451{left:295.270500px;}
.x47_c00451{left:301.050000px;}
.x37_c00451{left:302.940000px;}
.x65_c00451{left:306.448500px;}
.x66_c00451{left:307.528500px;}
.x69_c00451{left:310.498500px;}
.x5a_c00451{left:312.660000px;}
.x73_c00451{left:314.820000px;}
.x71_c00451{left:316.170000px;}
.x4b_c00451{left:319.410000px;}
.x1b_c00451{left:321.700500px;}
.x5b_c00451{left:324.618000px;}
.xf_c00451{left:325.776000px;}
.x2e_c00451{left:327.973500px;}
.x6d_c00451{left:329.668500px;}
.xa_c00451{left:332.370000px;}
.x2a_c00451{left:335.197500px;}
.x1c_c00451{left:341.161500px;}
.x20_c00451{left:342.900000px;}
.x2_c00451{left:350.730000px;}
.x70_c00451{left:351.810000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs15_c00451{font-size:15.866667pt;}
.fs18_c00451{font-size:19.600000pt;}
.fs12_c00451{font-size:21.466667pt;}
.fs13_c00451{font-size:25.200000pt;}
.fs17_c00451{font-size:50.400000pt;}
.fs5_c00451{font-size:50.404259pt;}
.fsc_c00451{font-size:51.333333pt;}
.fs6_c00451{font-size:51.337671pt;}
.fs2_c00451{font-size:52.266667pt;}
.fsb_c00451{font-size:53.200000pt;}
.fs8_c00451{font-size:53.203830pt;}
.fs1_c00451{font-size:54.133333pt;}
.fs3_c00451{font-size:55.066667pt;}
.fs10_c00451{font-size:56.000000pt;}
.fs4_c00451{font-size:56.933333pt;}
.fsa_c00451{font-size:57.866667pt;}
.fse_c00451{font-size:58.800000pt;}
.fs7_c00451{font-size:58.804233pt;}
.fsd_c00451{font-size:59.733333pt;}
.fs14_c00451{font-size:60.666667pt;}
.fsf_c00451{font-size:61.600000pt;}
.fs9_c00451{font-size:62.533333pt;}
.fs11_c00451{font-size:63.466667pt;}
.fs16_c00451{font-size:72.800000pt;}
.fs0_c00451{font-size:100.800000pt;}
.y0_c00451{bottom:0.000000pt;}
.y50_c00451{bottom:31.354667pt;}
.y4f_c00451{bottom:45.841333pt;}
.y59_c00451{bottom:54.720000pt;}
.y4e_c00451{bottom:61.737333pt;}
.y4d_c00451{bottom:75.826667pt;}
.y4c_c00451{bottom:90.580000pt;}
.y53_c00451{bottom:96.124000pt;}
.y52_c00451{bottom:102.960000pt;}
.y56_c00451{bottom:105.960000pt;}
.y4b_c00451{bottom:106.068000pt;}
.y51_c00451{bottom:114.000000pt;}
.y4a_c00451{bottom:121.161333pt;}
.y49_c00451{bottom:136.646667pt;}
.y55_c00451{bottom:139.680000pt;}
.y48_c00451{bottom:151.869333pt;}
.y47_c00451{bottom:167.212000pt;}
.y46_c00451{bottom:182.580000pt;}
.y45_c00451{bottom:195.521333pt;}
.y44_c00451{bottom:195.792000pt;}
.y43_c00451{bottom:196.616000pt;}
.y42_c00451{bottom:197.248000pt;}
.y41_c00451{bottom:197.594667pt;}
.y40_c00451{bottom:198.146667pt;}
.y3f_c00451{bottom:198.721333pt;}
.y3e_c00451{bottom:212.294667pt;}
.y58_c00451{bottom:227.401333pt;}
.y3d_c00451{bottom:228.476000pt;}
.y57_c00451{bottom:241.673333pt;}
.y3c_c00451{bottom:242.730667pt;}
.y3b_c00451{bottom:258.044000pt;}
.y3a_c00451{bottom:273.185333pt;}
.y39_c00451{bottom:288.309333pt;}
.y38_c00451{bottom:303.557333pt;}
.y37_c00451{bottom:318.522667pt;}
.y36_c00451{bottom:333.774667pt;}
.y35_c00451{bottom:348.897333pt;}
.y34_c00451{bottom:363.058667pt;}
.y33_c00451{bottom:376.329664pt;}
.y32_c00451{bottom:376.827456pt;}
.y31_c00451{bottom:377.415376pt;}
.y30_c00451{bottom:377.564992pt;}
.y2f_c00451{bottom:378.103264pt;}
.y2e_c00451{bottom:378.645488pt;}
.y2d_c00451{bottom:379.201280pt;}
.y2c_c00451{bottom:393.069381pt;}
.y2b_c00451{bottom:393.418213pt;}
.y2a_c00451{bottom:393.599717pt;}
.y29_c00451{bottom:394.060485pt;}
.y28_c00451{bottom:394.717189pt;}
.y27_c00451{bottom:395.007557pt;}
.y26_c00451{bottom:395.716853pt;}
.y25_c00451{bottom:396.001333pt;}
.y1c_c00451{bottom:408.765404pt;}
.y1b_c00451{bottom:409.027467pt;}
.y1a_c00451{bottom:409.255209pt;}
.y19_c00451{bottom:410.004027pt;}
.y18_c00451{bottom:410.533976pt;}
.y17_c00451{bottom:410.709372pt;}
.y16_c00451{bottom:411.121333pt;}
.y15_c00451{bottom:424.968000pt;}
.y24_c00451{bottom:437.873361pt;}
.y23_c00451{bottom:438.531543pt;}
.y22_c00451{bottom:438.725052pt;}
.y21_c00451{bottom:438.955880pt;}
.y20_c00451{bottom:439.754652pt;}
.y1f_c00451{bottom:440.010544pt;}
.y1e_c00451{bottom:440.291119pt;}
.y1d_c00451{bottom:441.121333pt;}
.y14_c00451{bottom:452.717333pt;}
.y13_c00451{bottom:452.908000pt;}
.y12_c00451{bottom:453.369333pt;}
.y11_c00451{bottom:453.562667pt;}
.y10_c00451{bottom:453.802667pt;}
.yf_c00451{bottom:453.942667pt;}
.ye_c00451{bottom:454.470667pt;}
.yd_c00451{bottom:454.632000pt;}
.yc_c00451{bottom:455.300000pt;}
.yb_c00451{bottom:455.518667pt;}
.y54_c00451{bottom:468.961333pt;}
.ya_c00451{bottom:469.080000pt;}
.y9_c00451{bottom:482.873333pt;}
.y8_c00451{bottom:483.409333pt;}
.y7_c00451{bottom:483.721333pt;}
.y6_c00451{bottom:483.893333pt;}
.y5_c00451{bottom:484.624000pt;}
.y4_c00451{bottom:485.334667pt;}
.y3_c00451{bottom:485.520000pt;}
.y2_c00451{bottom:499.720000pt;}
.y1_c00451{bottom:510.116000pt;}
.h17_c00451{height:15.866667pt;}
.h1a_c00451{height:19.600000pt;}
.h14_c00451{height:21.466667pt;}
.h15_c00451{height:25.200000pt;}
.h19_c00451{height:50.400000pt;}
.h7_c00451{height:50.404259pt;}
.he_c00451{height:51.333333pt;}
.h8_c00451{height:51.337671pt;}
.h4_c00451{height:52.266667pt;}
.hd_c00451{height:53.200000pt;}
.ha_c00451{height:53.203830pt;}
.h3_c00451{height:54.133333pt;}
.h5_c00451{height:55.066667pt;}
.h12_c00451{height:56.000000pt;}
.h6_c00451{height:56.933333pt;}
.hc_c00451{height:57.866667pt;}
.h10_c00451{height:58.800000pt;}
.h9_c00451{height:58.804233pt;}
.hf_c00451{height:59.733333pt;}
.h16_c00451{height:60.666667pt;}
.h11_c00451{height:61.600000pt;}
.hb_c00451{height:62.533333pt;}
.h13_c00451{height:63.466667pt;}
.h18_c00451{height:72.800000pt;}
.h2_c00451{height:100.800000pt;}
.h0_c00451{height:549.066667pt;}
.h1_c00451{height:549.333333pt;}
.w0_c00451{width:319.200000pt;}
.w1_c00451{width:319.333333pt;}
.x0_c00451{left:0.000000pt;}
.x6f_c00451{left:38.160000pt;}
.x6c_c00451{left:39.118667pt;}
.x5d_c00451{left:40.318667pt;}
.x51_c00451{left:42.240000pt;}
.x4e_c00451{left:43.440000pt;}
.x3d_c00451{left:44.880000pt;}
.x38_c00451{left:45.840000pt;}
.x2b_c00451{left:47.202667pt;}
.x14_c00451{left:48.602667pt;}
.x3_c00451{left:49.920000pt;}
.x1d_c00451{left:52.800000pt;}
.x6a_c00451{left:53.998667pt;}
.x60_c00451{left:56.878667pt;}
.x67_c00451{left:61.438667pt;}
.x1e_c00451{left:64.320000pt;}
.xb_c00451{left:65.878667pt;}
.x32_c00451{left:67.440000pt;}
.x15_c00451{left:68.512000pt;}
.x10_c00451{left:70.798667pt;}
.x4_c00451{left:75.360000pt;}
.x33_c00451{left:77.760000pt;}
.x48_c00451{left:78.720000pt;}
.x52_c00451{left:81.600000pt;}
.x4f_c00451{left:83.280000pt;}
.x55_c00451{left:87.120000pt;}
.x3e_c00451{left:90.480000pt;}
.x1f_c00451{left:94.080000pt;}
.x6e_c00451{left:95.758667pt;}
.x49_c00451{left:97.440000pt;}
.x4c_c00451{left:98.400000pt;}
.x21_c00451{left:100.669333pt;}
.x57_c00451{left:103.440000pt;}
.x56_c00451{left:105.360000pt;}
.x43_c00451{left:109.200000pt;}
.x24_c00451{left:111.972000pt;}
.x11_c00451{left:113.278667pt;}
.x68_c00451{left:114.478667pt;}
.x34_c00451{left:118.320000pt;}
.x61_c00451{left:120.718667pt;}
.x58_c00451{left:122.400000pt;}
.x4d_c00451{left:125.760000pt;}
.x63_c00451{left:127.918667pt;}
.x16_c00451{left:129.237333pt;}
.x5_c00451{left:130.320000pt;}
.x35_c00451{left:131.520000pt;}
.x25_c00451{left:133.554667pt;}
.x2f_c00451{left:138.395717pt;}
.x17_c00451{left:143.884000pt;}
.x64_c00451{left:145.918667pt;}
.x39_c00451{left:147.360000pt;}
.x6_c00451{left:148.320000pt;}
.x3f_c00451{left:150.480000pt;}
.x26_c00451{left:153.238667pt;}
.x22_c00451{left:154.926667pt;}
.x4a_c00451{left:160.320000pt;}
.x50_c00451{left:161.760000pt;}
.x1_c00451{left:168.000000pt;}
.x40_c00451{left:169.680000pt;}
.x3a_c00451{left:171.120000pt;}
.x44_c00451{left:178.560000pt;}
.x30_c00451{left:183.251717pt;}
.x5c_c00451{left:186.478667pt;}
.x5e_c00451{left:187.918667pt;}
.x45_c00451{left:189.600000pt;}
.x18_c00451{left:191.930667pt;}
.x7_c00451{left:193.200000pt;}
.x31_c00451{left:195.719717pt;}
.xc_c00451{left:196.924000pt;}
.x72_c00451{left:198.960000pt;}
.x12_c00451{left:202.798667pt;}
.x53_c00451{left:204.000000pt;}
.x8_c00451{left:205.200000pt;}
.x3b_c00451{left:206.160000pt;}
.x2c_c00451{left:208.940000pt;}
.xd_c00451{left:212.522667pt;}
.x27_c00451{left:214.682667pt;}
.x41_c00451{left:219.840000pt;}
.x36_c00451{left:223.680000pt;}
.x54_c00451{left:225.360000pt;}
.x19_c00451{left:226.436000pt;}
.x59_c00451{left:227.760000pt;}
.x13_c00451{left:229.438667pt;}
.x62_c00451{left:230.638667pt;}
.x28_c00451{left:232.438667pt;}
.x5f_c00451{left:235.678667pt;}
.x3c_c00451{left:238.320000pt;}
.xe_c00451{left:240.838667pt;}
.x1a_c00451{left:243.958667pt;}
.x29_c00451{left:247.324000pt;}
.x23_c00451{left:250.205333pt;}
.x46_c00451{left:255.360000pt;}
.x42_c00451{left:257.040000pt;}
.x9_c00451{left:258.240000pt;}
.x6b_c00451{left:261.118667pt;}
.x2d_c00451{left:262.462667pt;}
.x47_c00451{left:267.600000pt;}
.x37_c00451{left:269.280000pt;}
.x65_c00451{left:272.398667pt;}
.x66_c00451{left:273.358667pt;}
.x69_c00451{left:275.998667pt;}
.x5a_c00451{left:277.920000pt;}
.x73_c00451{left:279.840000pt;}
.x71_c00451{left:281.040000pt;}
.x4b_c00451{left:283.920000pt;}
.x1b_c00451{left:285.956000pt;}
.x5b_c00451{left:288.549333pt;}
.xf_c00451{left:289.578667pt;}
.x2e_c00451{left:291.532000pt;}
.x6d_c00451{left:293.038667pt;}
.xa_c00451{left:295.440000pt;}
.x2a_c00451{left:297.953333pt;}
.x1c_c00451{left:303.254667pt;}
.x20_c00451{left:304.800000pt;}
.x2_c00451{left:311.760000pt;}
.x70_c00451{left:312.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00452 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c00452{transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014265,0.000000,0.000000,0.250000,0,0);}
.m65_c00452{transform:matrix(0.016595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016595,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021790,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.025725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025725,0.000000,0.000000,0.250000,0,0);}
.me2_c00452{transform:matrix(0.112260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112260,0.000000,0.000000,0.250000,0,0);}
.me5_c00452{transform:matrix(0.126835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126835,0.000000,0.000000,0.250000,0,0);}
.md3_c00452{transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);}
.me4_c00452{transform:matrix(0.131430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131430,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);}
.me3_c00452{transform:matrix(0.133110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133110,0.000000,0.000000,0.250000,0,0);}
.mdb_c00452{transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);}
.me8_c00452{transform:matrix(0.138570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138570,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140615,0.000000,0.000000,0.250000,0,0);}
.me9_c00452{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.m44_c00452{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.me1_c00452{transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);}
.m20_c00452{transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146560,0.000000,0.000000,0.250000,0,0);}
.m7c_c00452{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.me7_c00452{transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);}
.me6_c00452{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147910,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.153465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153465,0.000000,0.000000,0.250000,0,0);}
.m77_c00452{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m88_c00452{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.ma9_c00452{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00452{transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.mc9_c00452{transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);}
.md6_c00452{transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161635,0.000000,0.000000,0.250000,0,0);}
.mec_c00452{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m86_c00452{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m47_c00452{transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);}
.m96_c00452{transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162930,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00452{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md8_c00452{transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167215,0.000000,0.000000,0.250000,0,0);}
.mf2_c00452{transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167645,0.000000,0.000000,0.250000,0,0);}
.m54_c00452{transform:matrix(0.167830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167830,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00452{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168485,0.000000,0.000000,0.250000,0,0);}
.mc7_c00452{transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);}
.mcc_c00452{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.mcf_c00452{transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00452{transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170660,0.000000,0.000000,0.250000,0,0);}
.m85_c00452{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00452{transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);}
.m3e_c00452{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.mb0_c00452{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172420,0.000000,0.000000,0.250000,0,0);}
.maf_c00452{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.mea_c00452{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173815,0.000000,0.000000,0.250000,0,0);}
.mb7_c00452{transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173935,0.000000,0.000000,0.250000,0,0);}
.mb3_c00452{transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);}
.m61_c00452{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.mef_c00452{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.m82_c00452{transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00452{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.m74_c00452{transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175755,0.000000,0.000000,0.250000,0,0);}
.m4a_c00452{transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176480,0.000000,0.000000,0.250000,0,0);}
.m42_c00452{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00452{transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177045,0.000000,0.000000,0.250000,0,0);}
.m5a_c00452{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mc1_c00452{transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);}
.ma8_c00452{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.m63_c00452{transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);}
.m95_c00452{transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179355,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180645,0.000000,0.000000,0.250000,0,0);}
.m5b_c00452{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mbf_c00452{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.ma0_c00452{transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m41_c00452{transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);}
.m9b_c00452{transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183265,0.000000,0.000000,0.250000,0,0);}
.ma1_c00452{transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183615,0.000000,0.000000,0.250000,0,0);}
.m57_c00452{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m90_c00452{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.ma4_c00452{transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);}
.m5d_c00452{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m8b_c00452{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m71_c00452{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m7b_c00452{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.m68_c00452{transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187045,0.000000,0.000000,0.250000,0,0);}
.m7d_c00452{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.m83_c00452{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m75_c00452{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00452{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m4e_c00452{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m4f_c00452{transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);}
.mc6_c00452{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m9d_c00452{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m2e_c00452{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m99_c00452{transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189460,0.000000,0.000000,0.250000,0,0);}
.ma7_c00452{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.mac_c00452{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.mbe_c00452{transform:matrix(0.191365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191365,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.mbc_c00452{transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);}
.m48_c00452{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.mb5_c00452{transform:matrix(0.191605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191605,0.000000,0.000000,0.250000,0,0);}
.m2d_c00452{transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191620,0.000000,0.000000,0.250000,0,0);}
.m84_c00452{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191755,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.mee_c00452{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mba_c00452{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m89_c00452{transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);}
.mad_c00452{transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);}
.mb1_c00452{transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194390,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m9f_c00452{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.med_c00452{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m32_c00452{transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);}
.m9a_c00452{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.md2_c00452{transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);}
.md5_c00452{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00452{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);}
.m7f_c00452{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md7_c00452{transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197660,0.000000,0.000000,0.250000,0,0);}
.m8e_c00452{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m94_c00452{transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);}
.m35_c00452{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m80_c00452{transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.mda_c00452{transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);}
.m92_c00452{transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);}
.m46_c00452{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);}
.m91_c00452{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m37_c00452{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.mb4_c00452{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.m60_c00452{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mc4_c00452{transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200810,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201455,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m58_c00452{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00452{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.mf0_c00452{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m9c_c00452{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m81_c00452{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.mbd_c00452{transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00452{transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204360,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.md4_c00452{transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);}
.mdf_c00452{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00452{transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205720,0.000000,0.000000,0.250000,0,0);}
.m31_c00452{transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206185,0.000000,0.000000,0.250000,0,0);}
.m56_c00452{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m73_c00452{transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);}
.m64_c00452{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.me0_c00452{transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206855,0.000000,0.000000,0.250000,0,0);}
.m36_c00452{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00452{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m33_c00452{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m79_c00452{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.meb_c00452{transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208365,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m78_c00452{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.mbb_c00452{transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.md0_c00452{transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210905,0.000000,0.000000,0.250000,0,0);}
.m98_c00452{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00452{transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);}
.m97_c00452{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.mcd_c00452{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.mca_c00452{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m93_c00452{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.mab_c00452{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m59_c00452{transform:matrix(0.214040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214040,0.000000,0.000000,0.250000,0,0);}
.m76_c00452{transform:matrix(0.214230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214230,0.000000,0.000000,0.250000,0,0);}
.mae_c00452{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.mf3_c00452{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m45_c00452{transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216040,0.000000,0.000000,0.250000,0,0);}
.mde_c00452{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.md9_c00452{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m67_c00452{transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);}
.m72_c00452{transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217910,0.000000,0.000000,0.250000,0,0);}
.maa_c00452{transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);}
.mc5_c00452{transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219155,0.000000,0.000000,0.250000,0,0);}
.m4b_c00452{transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220070,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.m52_c00452{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.m6a_c00452{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m6d_c00452{transform:matrix(0.223355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223355,0.000000,0.000000,0.250000,0,0);}
.m50_c00452{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224805,0.000000,0.000000,0.250000,0,0);}
.m6c_c00452{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.m2b_c00452{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m55_c00452{transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);}
.m5c_c00452{transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227145,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.mce_c00452{transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);}
.mdd_c00452{transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);}
.m7a_c00452{transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);}
.m3d_c00452{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.md1_c00452{transform:matrix(0.232785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232785,0.000000,0.000000,0.250000,0,0);}
.mb8_c00452{transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233715,0.000000,0.000000,0.250000,0,0);}
.m4c_c00452{transform:matrix(0.235545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235545,0.000000,0.000000,0.250000,0,0);}
.m53_c00452{transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237510,0.000000,0.000000,0.250000,0,0);}
.m4d_c00452{transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);}
.m70_c00452{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.mf1_c00452{transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);}
.m69_c00452{transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00452{transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);}
.m6e_c00452{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m51_c00452{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m6f_c00452{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.ma2_c00452{transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);}
.mcb_c00452{transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00452{transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);}
.m6b_c00452{transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);}
.mb6_c00452{transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.284560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284560,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.368905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368905,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(1.070095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070095,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls0_c00452{letter-spacing:0.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
.fc0_c00452{color:transparent;}
.fsa_c00452{font-size:51.450000px;}
.fs8_c00452{font-size:55.650000px;}
.fsb_c00452{font-size:57.750000px;}
.fs3_c00452{font-size:58.800000px;}
.fs6_c00452{font-size:59.850000px;}
.fs2_c00452{font-size:60.900000px;}
.fs7_c00452{font-size:61.950000px;}
.fs10_c00452{font-size:63.000000px;}
.fsf_c00452{font-size:64.050000px;}
.fse_c00452{font-size:65.100000px;}
.fsd_c00452{font-size:66.150000px;}
.fs5_c00452{font-size:67.200000px;}
.fs9_c00452{font-size:68.250000px;}
.fs1_c00452{font-size:69.300000px;}
.fsc_c00452{font-size:70.350000px;}
.fs0_c00452{font-size:75.600000px;}
.fs4_c00452{font-size:81.900000px;}
.fs11_c00452{font-size:85.050000px;}
.y0_c00452{bottom:0.000000px;}
.y51_c00452{bottom:18.100500px;}
.y50_c00452{bottom:34.782000px;}
.y4f_c00452{bottom:35.041500px;}
.y4e_c00452{bottom:35.325000px;}
.y4d_c00452{bottom:36.184500px;}
.y4c_c00452{bottom:36.415500px;}
.y4b_c00452{bottom:37.380000px;}
.y4a_c00452{bottom:37.690500px;}
.y49_c00452{bottom:38.071500px;}
.y48_c00452{bottom:52.542000px;}
.y47_c00452{bottom:69.969000px;}
.y46_c00452{bottom:85.090500px;}
.y45_c00452{bottom:102.118500px;}
.y44_c00452{bottom:120.121500px;}
.y43_c00452{bottom:136.140000px;}
.y42_c00452{bottom:152.545500px;}
.y41_c00452{bottom:169.780500px;}
.y40_c00452{bottom:170.185500px;}
.y3f_c00452{bottom:170.565000px;}
.y3e_c00452{bottom:171.037500px;}
.y3d_c00452{bottom:171.942000px;}
.y3c_c00452{bottom:172.531500px;}
.y3b_c00452{bottom:187.332000px;}
.y3a_c00452{bottom:204.727500px;}
.y39_c00452{bottom:221.293500px;}
.y38_c00452{bottom:238.812000px;}
.y37_c00452{bottom:256.123500px;}
.y36_c00452{bottom:273.375000px;}
.y35_c00452{bottom:290.148000px;}
.y34_c00452{bottom:307.447500px;}
.y33_c00452{bottom:324.997500px;}
.y32_c00452{bottom:341.767500px;}
.y31_c00452{bottom:358.443000px;}
.y30_c00452{bottom:375.634500px;}
.y2f_c00452{bottom:388.810500px;}
.y2e_c00452{bottom:389.229000px;}
.y2d_c00452{bottom:390.189000px;}
.y2c_c00452{bottom:390.508500px;}
.y2b_c00452{bottom:391.285500px;}
.y2a_c00452{bottom:392.356500px;}
.y29_c00452{bottom:392.974500px;}
.y28_c00452{bottom:393.394500px;}
.y27_c00452{bottom:408.670500px;}
.y26_c00452{bottom:425.139000px;}
.y25_c00452{bottom:441.645000px;}
.y24_c00452{bottom:441.898500px;}
.y23_c00452{bottom:442.026000px;}
.y22_c00452{bottom:442.636500px;}
.y21_c00452{bottom:443.508000px;}
.y20_c00452{bottom:443.676000px;}
.y1f_c00452{bottom:444.310500px;}
.y1e_c00452{bottom:444.423000px;}
.y1d_c00452{bottom:458.446500px;}
.y1c_c00452{bottom:458.674500px;}
.y1b_c00452{bottom:459.190500px;}
.y1a_c00452{bottom:459.469500px;}
.y19_c00452{bottom:459.769500px;}
.y18_c00452{bottom:460.548000px;}
.y17_c00452{bottom:461.032500px;}
.y16_c00452{bottom:461.163000px;}
.y15_c00452{bottom:475.227000px;}
.y14_c00452{bottom:475.797000px;}
.y13_c00452{bottom:476.182500px;}
.y12_c00452{bottom:476.344500px;}
.y11_c00452{bottom:477.387000px;}
.y10_c00452{bottom:477.583500px;}
.yf_c00452{bottom:478.072500px;}
.ye_c00452{bottom:478.171500px;}
.yd_c00452{bottom:493.282500px;}
.yc_c00452{bottom:510.606000px;}
.yb_c00452{bottom:526.534500px;}
.ya_c00452{bottom:527.193000px;}
.y9_c00452{bottom:527.445000px;}
.y8_c00452{bottom:527.751000px;}
.y7_c00452{bottom:528.327000px;}
.y6_c00452{bottom:528.678000px;}
.y5_c00452{bottom:529.177500px;}
.y4_c00452{bottom:529.741500px;}
.y3_c00452{bottom:544.444500px;}
.y2_c00452{bottom:561.481500px;}
.y1_c00452{bottom:574.425000px;}
.hc_c00452{height:51.450000px;}
.ha_c00452{height:55.650000px;}
.hd_c00452{height:57.750000px;}
.h5_c00452{height:58.800000px;}
.h8_c00452{height:59.850000px;}
.h4_c00452{height:60.900000px;}
.h9_c00452{height:61.950000px;}
.h12_c00452{height:63.000000px;}
.h11_c00452{height:64.050000px;}
.h10_c00452{height:65.100000px;}
.hf_c00452{height:66.150000px;}
.h7_c00452{height:67.200000px;}
.hb_c00452{height:68.250000px;}
.h3_c00452{height:69.300000px;}
.he_c00452{height:70.350000px;}
.h2_c00452{height:75.600000px;}
.h6_c00452{height:81.900000px;}
.h13_c00452{height:85.050000px;}
.h0_c00452{height:617.700000px;}
.h1_c00452{height:618.000000px;}
.w0_c00452{width:359.100000px;}
.w1_c00452{width:359.250000px;}
.x0_c00452{left:0.000000px;}
.x20_c00452{left:2.698500px;}
.x19_c00452{left:3.778500px;}
.x26_c00452{left:5.145000px;}
.x11_c00452{left:6.868500px;}
.x2_c00452{left:12.960000px;}
.xb_c00452{left:14.850000px;}
.x47_c00452{left:15.928500px;}
.x59_c00452{left:17.008500px;}
.x2b_c00452{left:19.885500px;}
.x77_c00452{left:21.600000px;}
.x67_c00452{left:26.730000px;}
.x5d_c00452{left:27.808500px;}
.x2c_c00452{left:31.731000px;}
.x50_c00452{left:35.368500px;}
.xc_c00452{left:38.340000px;}
.x3c_c00452{left:40.582500px;}
.x4c_c00452{left:41.848500px;}
.x53_c00452{left:44.278500px;}
.x3e_c00452{left:53.728500px;}
.x12_c00452{left:58.198500px;}
.x48_c00452{left:60.208500px;}
.x51_c00452{left:62.098500px;}
.x6d_c00452{left:63.591000px;}
.x1a_c00452{left:64.798500px;}
.x64_c00452{left:69.388500px;}
.x54_c00452{left:72.898500px;}
.x79_c00452{left:74.250000px;}
.x2d_c00452{left:75.747000px;}
.x68_c00452{left:76.950000px;}
.x1b_c00452{left:78.568500px;}
.x65_c00452{left:79.648500px;}
.x42_c00452{left:80.728500px;}
.x27_c00452{left:83.584500px;}
.x7d_c00452{left:84.780000px;}
.x3_c00452{left:86.940000px;}
.xd_c00452{left:89.640000px;}
.x21_c00452{left:93.688500px;}
.x32_c00452{left:95.731500px;}
.x39_c00452{left:98.010000px;}
.x7a_c00452{left:100.710000px;}
.x6f_c00452{left:102.330000px;}
.x13_c00452{left:103.555500px;}
.x5e_c00452{left:105.298500px;}
.x55_c00452{left:106.378500px;}
.x75_c00452{left:108.270000px;}
.x4_c00452{left:110.430000px;}
.x72_c00452{left:113.670000px;}
.x61_c00452{left:118.798500px;}
.x5a_c00452{left:120.148500px;}
.x5_c00452{left:124.200000px;}
.x82_c00452{left:126.762000px;}
.x66_c00452{left:132.568500px;}
.x49_c00452{left:133.648500px;}
.x14_c00452{left:135.417000px;}
.x6_c00452{left:136.890000px;}
.x6e_c00452{left:138.975000px;}
.x3f_c00452{left:140.128500px;}
.x5b_c00452{left:141.208500px;}
.x7f_c00452{left:143.100000px;}
.x2e_c00452{left:146.526000px;}
.x1_c00452{left:149.310000px;}
.x1c_c00452{left:152.008500px;}
.x22_c00452{left:153.088500px;}
.x43_c00452{left:154.708500px;}
.x52_c00452{left:157.408500px;}
.x4d_c00452{left:160.108500px;}
.x69_c00452{left:163.350000px;}
.x56_c00452{left:166.588500px;}
.xe_c00452{left:171.720000px;}
.x23_c00452{left:173.068500px;}
.x80_c00452{left:174.420000px;}
.x6a_c00452{left:176.040000px;}
.x4e_c00452{left:177.118500px;}
.x44_c00452{left:179.278500px;}
.x62_c00452{left:181.168500px;}
.x7_c00452{left:182.250000px;}
.x7b_c00452{left:185.490000px;}
.x15_c00452{left:187.840500px;}
.x8_c00452{left:190.890000px;}
.x57_c00452{left:191.968500px;}
.x3a_c00452{left:194.940000px;}
.x73_c00452{left:197.370000px;}
.x2f_c00452{left:199.131000px;}
.x1d_c00452{left:202.498500px;}
.x28_c00452{left:204.043500px;}
.x5c_c00452{left:207.358500px;}
.x36_c00452{left:210.870000px;}
.x9_c00452{left:213.300000px;}
.x16_c00452{left:215.599500px;}
.x74_c00452{left:216.810000px;}
.x83_c00452{left:218.256000px;}
.x24_c00452{left:220.858500px;}
.x70_c00452{left:224.370000px;}
.xf_c00452{left:225.450000px;}
.x7c_c00452{left:227.070000px;}
.x5f_c00452{left:228.148500px;}
.x45_c00452{left:229.498500px;}
.x4a_c00452{left:230.578500px;}
.x37_c00452{left:231.930000px;}
.x84_c00452{left:235.548000px;}
.x17_c00452{left:238.546500px;}
.x29_c00452{left:242.641500px;}
.x33_c00452{left:243.966000px;}
.x30_c00452{left:246.102000px;}
.x6b_c00452{left:248.130000px;}
.x40_c00452{left:249.208500px;}
.x46_c00452{left:252.178500px;}
.x38_c00452{left:253.800000px;}
.x1e_c00452{left:255.418500px;}
.x34_c00452{left:256.698000px;}
.x25_c00452{left:260.548500px;}
.x3b_c00452{left:261.900000px;}
.x31_c00452{left:266.892000px;}
.x78_c00452{left:269.190000px;}
.x4b_c00452{left:271.078500px;}
.x4f_c00452{left:272.968500px;}
.x1f_c00452{left:274.048500px;}
.x58_c00452{left:275.668500px;}
.x41_c00452{left:278.638500px;}
.x6c_c00452{left:280.530000px;}
.x35_c00452{left:282.027000px;}
.x63_c00452{left:284.848500px;}
.x81_c00452{left:286.470000px;}
.xa_c00452{left:289.440000px;}
.x7e_c00452{left:291.600000px;}
.x60_c00452{left:293.488500px;}
.x10_c00452{left:297.000000px;}
.x18_c00452{left:298.467000px;}
.x2a_c00452{left:299.568000px;}
.x3d_c00452{left:300.816000px;}
.x71_c00452{left:302.130000px;}
.x76_c00452{left:305.370000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
.fsa_c00452{font-size:45.733333pt;}
.fs8_c00452{font-size:49.466667pt;}
.fsb_c00452{font-size:51.333333pt;}
.fs3_c00452{font-size:52.266667pt;}
.fs6_c00452{font-size:53.200000pt;}
.fs2_c00452{font-size:54.133333pt;}
.fs7_c00452{font-size:55.066667pt;}
.fs10_c00452{font-size:56.000000pt;}
.fsf_c00452{font-size:56.933333pt;}
.fse_c00452{font-size:57.866667pt;}
.fsd_c00452{font-size:58.800000pt;}
.fs5_c00452{font-size:59.733333pt;}
.fs9_c00452{font-size:60.666667pt;}
.fs1_c00452{font-size:61.600000pt;}
.fsc_c00452{font-size:62.533333pt;}
.fs0_c00452{font-size:67.200000pt;}
.fs4_c00452{font-size:72.800000pt;}
.fs11_c00452{font-size:75.600000pt;}
.y0_c00452{bottom:0.000000pt;}
.y51_c00452{bottom:16.089333pt;}
.y50_c00452{bottom:30.917333pt;}
.y4f_c00452{bottom:31.148000pt;}
.y4e_c00452{bottom:31.400000pt;}
.y4d_c00452{bottom:32.164000pt;}
.y4c_c00452{bottom:32.369333pt;}
.y4b_c00452{bottom:33.226667pt;}
.y4a_c00452{bottom:33.502667pt;}
.y49_c00452{bottom:33.841333pt;}
.y48_c00452{bottom:46.704000pt;}
.y47_c00452{bottom:62.194667pt;}
.y46_c00452{bottom:75.636000pt;}
.y45_c00452{bottom:90.772000pt;}
.y44_c00452{bottom:106.774667pt;}
.y43_c00452{bottom:121.013333pt;}
.y42_c00452{bottom:135.596000pt;}
.y41_c00452{bottom:150.916000pt;}
.y40_c00452{bottom:151.276000pt;}
.y3f_c00452{bottom:151.613333pt;}
.y3e_c00452{bottom:152.033333pt;}
.y3d_c00452{bottom:152.837333pt;}
.y3c_c00452{bottom:153.361333pt;}
.y3b_c00452{bottom:166.517333pt;}
.y3a_c00452{bottom:181.980000pt;}
.y39_c00452{bottom:196.705333pt;}
.y38_c00452{bottom:212.277333pt;}
.y37_c00452{bottom:227.665333pt;}
.y36_c00452{bottom:243.000000pt;}
.y35_c00452{bottom:257.909333pt;}
.y34_c00452{bottom:273.286667pt;}
.y33_c00452{bottom:288.886667pt;}
.y32_c00452{bottom:303.793333pt;}
.y31_c00452{bottom:318.616000pt;}
.y30_c00452{bottom:333.897333pt;}
.y2f_c00452{bottom:345.609333pt;}
.y2e_c00452{bottom:345.981333pt;}
.y2d_c00452{bottom:346.834667pt;}
.y2c_c00452{bottom:347.118667pt;}
.y2b_c00452{bottom:347.809333pt;}
.y2a_c00452{bottom:348.761333pt;}
.y29_c00452{bottom:349.310667pt;}
.y28_c00452{bottom:349.684000pt;}
.y27_c00452{bottom:363.262667pt;}
.y26_c00452{bottom:377.901333pt;}
.y25_c00452{bottom:392.573333pt;}
.y24_c00452{bottom:392.798667pt;}
.y23_c00452{bottom:392.912000pt;}
.y22_c00452{bottom:393.454667pt;}
.y21_c00452{bottom:394.229333pt;}
.y20_c00452{bottom:394.378667pt;}
.y1f_c00452{bottom:394.942667pt;}
.y1e_c00452{bottom:395.042667pt;}
.y1d_c00452{bottom:407.508000pt;}
.y1c_c00452{bottom:407.710667pt;}
.y1b_c00452{bottom:408.169333pt;}
.y1a_c00452{bottom:408.417333pt;}
.y19_c00452{bottom:408.684000pt;}
.y18_c00452{bottom:409.376000pt;}
.y17_c00452{bottom:409.806667pt;}
.y16_c00452{bottom:409.922667pt;}
.y15_c00452{bottom:422.424000pt;}
.y14_c00452{bottom:422.930667pt;}
.y13_c00452{bottom:423.273333pt;}
.y12_c00452{bottom:423.417333pt;}
.y11_c00452{bottom:424.344000pt;}
.y10_c00452{bottom:424.518667pt;}
.yf_c00452{bottom:424.953333pt;}
.ye_c00452{bottom:425.041333pt;}
.yd_c00452{bottom:438.473333pt;}
.yc_c00452{bottom:453.872000pt;}
.yb_c00452{bottom:468.030667pt;}
.ya_c00452{bottom:468.616000pt;}
.y9_c00452{bottom:468.840000pt;}
.y8_c00452{bottom:469.112000pt;}
.y7_c00452{bottom:469.624000pt;}
.y6_c00452{bottom:469.936000pt;}
.y5_c00452{bottom:470.380000pt;}
.y4_c00452{bottom:470.881333pt;}
.y3_c00452{bottom:483.950667pt;}
.y2_c00452{bottom:499.094667pt;}
.y1_c00452{bottom:510.600000pt;}
.hc_c00452{height:45.733333pt;}
.ha_c00452{height:49.466667pt;}
.hd_c00452{height:51.333333pt;}
.h5_c00452{height:52.266667pt;}
.h8_c00452{height:53.200000pt;}
.h4_c00452{height:54.133333pt;}
.h9_c00452{height:55.066667pt;}
.h12_c00452{height:56.000000pt;}
.h11_c00452{height:56.933333pt;}
.h10_c00452{height:57.866667pt;}
.hf_c00452{height:58.800000pt;}
.h7_c00452{height:59.733333pt;}
.hb_c00452{height:60.666667pt;}
.h3_c00452{height:61.600000pt;}
.he_c00452{height:62.533333pt;}
.h2_c00452{height:67.200000pt;}
.h6_c00452{height:72.800000pt;}
.h13_c00452{height:75.600000pt;}
.h0_c00452{height:549.066667pt;}
.h1_c00452{height:549.333333pt;}
.w0_c00452{width:319.200000pt;}
.w1_c00452{width:319.333333pt;}
.x0_c00452{left:0.000000pt;}
.x20_c00452{left:2.398667pt;}
.x19_c00452{left:3.358667pt;}
.x26_c00452{left:4.573333pt;}
.x11_c00452{left:6.105333pt;}
.x2_c00452{left:11.520000pt;}
.xb_c00452{left:13.200000pt;}
.x47_c00452{left:14.158667pt;}
.x59_c00452{left:15.118667pt;}
.x2b_c00452{left:17.676000pt;}
.x77_c00452{left:19.200000pt;}
.x67_c00452{left:23.760000pt;}
.x5d_c00452{left:24.718667pt;}
.x2c_c00452{left:28.205333pt;}
.x50_c00452{left:31.438667pt;}
.xc_c00452{left:34.080000pt;}
.x3c_c00452{left:36.073333pt;}
.x4c_c00452{left:37.198667pt;}
.x53_c00452{left:39.358667pt;}
.x3e_c00452{left:47.758667pt;}
.x12_c00452{left:51.732000pt;}
.x48_c00452{left:53.518667pt;}
.x51_c00452{left:55.198667pt;}
.x6d_c00452{left:56.525333pt;}
.x1a_c00452{left:57.598667pt;}
.x64_c00452{left:61.678667pt;}
.x54_c00452{left:64.798667pt;}
.x79_c00452{left:66.000000pt;}
.x2d_c00452{left:67.330667pt;}
.x68_c00452{left:68.400000pt;}
.x1b_c00452{left:69.838667pt;}
.x65_c00452{left:70.798667pt;}
.x42_c00452{left:71.758667pt;}
.x27_c00452{left:74.297333pt;}
.x7d_c00452{left:75.360000pt;}
.x3_c00452{left:77.280000pt;}
.xd_c00452{left:79.680000pt;}
.x21_c00452{left:83.278667pt;}
.x32_c00452{left:85.094667pt;}
.x39_c00452{left:87.120000pt;}
.x7a_c00452{left:89.520000pt;}
.x6f_c00452{left:90.960000pt;}
.x13_c00452{left:92.049333pt;}
.x5e_c00452{left:93.598667pt;}
.x55_c00452{left:94.558667pt;}
.x75_c00452{left:96.240000pt;}
.x4_c00452{left:98.160000pt;}
.x72_c00452{left:101.040000pt;}
.x61_c00452{left:105.598667pt;}
.x5a_c00452{left:106.798667pt;}
.x5_c00452{left:110.400000pt;}
.x82_c00452{left:112.677333pt;}
.x66_c00452{left:117.838667pt;}
.x49_c00452{left:118.798667pt;}
.x14_c00452{left:120.370667pt;}
.x6_c00452{left:121.680000pt;}
.x6e_c00452{left:123.533333pt;}
.x3f_c00452{left:124.558667pt;}
.x5b_c00452{left:125.518667pt;}
.x7f_c00452{left:127.200000pt;}
.x2e_c00452{left:130.245333pt;}
.x1_c00452{left:132.720000pt;}
.x1c_c00452{left:135.118667pt;}
.x22_c00452{left:136.078667pt;}
.x43_c00452{left:137.518667pt;}
.x52_c00452{left:139.918667pt;}
.x4d_c00452{left:142.318667pt;}
.x69_c00452{left:145.200000pt;}
.x56_c00452{left:148.078667pt;}
.xe_c00452{left:152.640000pt;}
.x23_c00452{left:153.838667pt;}
.x80_c00452{left:155.040000pt;}
.x6a_c00452{left:156.480000pt;}
.x4e_c00452{left:157.438667pt;}
.x44_c00452{left:159.358667pt;}
.x62_c00452{left:161.038667pt;}
.x7_c00452{left:162.000000pt;}
.x7b_c00452{left:164.880000pt;}
.x15_c00452{left:166.969333pt;}
.x8_c00452{left:169.680000pt;}
.x57_c00452{left:170.638667pt;}
.x3a_c00452{left:173.280000pt;}
.x73_c00452{left:175.440000pt;}
.x2f_c00452{left:177.005333pt;}
.x1d_c00452{left:179.998667pt;}
.x28_c00452{left:181.372000pt;}
.x5c_c00452{left:184.318667pt;}
.x36_c00452{left:187.440000pt;}
.x9_c00452{left:189.600000pt;}
.x16_c00452{left:191.644000pt;}
.x74_c00452{left:192.720000pt;}
.x83_c00452{left:194.005333pt;}
.x24_c00452{left:196.318667pt;}
.x70_c00452{left:199.440000pt;}
.xf_c00452{left:200.400000pt;}
.x7c_c00452{left:201.840000pt;}
.x5f_c00452{left:202.798667pt;}
.x45_c00452{left:203.998667pt;}
.x4a_c00452{left:204.958667pt;}
.x37_c00452{left:206.160000pt;}
.x84_c00452{left:209.376000pt;}
.x17_c00452{left:212.041333pt;}
.x29_c00452{left:215.681333pt;}
.x33_c00452{left:216.858667pt;}
.x30_c00452{left:218.757333pt;}
.x6b_c00452{left:220.560000pt;}
.x40_c00452{left:221.518667pt;}
.x46_c00452{left:224.158667pt;}
.x38_c00452{left:225.600000pt;}
.x1e_c00452{left:227.038667pt;}
.x34_c00452{left:228.176000pt;}
.x25_c00452{left:231.598667pt;}
.x3b_c00452{left:232.800000pt;}
.x31_c00452{left:237.237333pt;}
.x78_c00452{left:239.280000pt;}
.x4b_c00452{left:240.958667pt;}
.x4f_c00452{left:242.638667pt;}
.x1f_c00452{left:243.598667pt;}
.x58_c00452{left:245.038667pt;}
.x41_c00452{left:247.678667pt;}
.x6c_c00452{left:249.360000pt;}
.x35_c00452{left:250.690667pt;}
.x63_c00452{left:253.198667pt;}
.x81_c00452{left:254.640000pt;}
.xa_c00452{left:257.280000pt;}
.x7e_c00452{left:259.200000pt;}
.x60_c00452{left:260.878667pt;}
.x10_c00452{left:264.000000pt;}
.x18_c00452{left:265.304000pt;}
.x2a_c00452{left:266.282667pt;}
.x3d_c00452{left:267.392000pt;}
.x71_c00452{left:268.560000pt;}
.x76_c00452{left:271.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00453 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6d_c00453{transform:matrix(0.014955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014955,0.000000,0.000000,0.250000,0,0);}
.ma8_c00453{transform:matrix(0.018635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018635,0.000000,0.000000,0.250000,0,0);}
.maa_c00453{transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021730,0.000000,0.000000,0.250000,0,0);}
.mbb_c00453{transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127040,0.000000,0.000000,0.250000,0,0);}
.ma9_c00453{transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.mb6_c00453{transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);}
.mb9_c00453{transform:matrix(0.144545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144545,0.000000,0.000000,0.250000,0,0);}
.mcb_c00453{transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145315,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.mb8_c00453{transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147895,0.000000,0.000000,0.250000,0,0);}
.mb7_c00453{transform:matrix(0.152285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152285,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.153085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153085,0.000000,0.000000,0.250000,0,0);}
.mdc_c00453{transform:matrix(0.154255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154255,0.000000,0.000000,0.250000,0,0);}
.m62_c00453{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156260,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);}
.m60_c00453{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162640,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163115,0.000000,0.000000,0.250000,0,0);}
.m4e_c00453{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163870,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);}
.m85_c00453{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.mb4_c00453{transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164535,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mf8_c00453{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.mb5_c00453{transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168195,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);}
.mc2_c00453{transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00453{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171805,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172320,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173265,0.000000,0.000000,0.250000,0,0);}
.mee_c00453{transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173480,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00453{transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175495,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.ma7_c00453{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m97_c00453{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.me2_c00453{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.m73_c00453{transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00453{transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);}
.mce_c00453{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179880,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);}
.m84_c00453{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.m50_c00453{transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182440,0.000000,0.000000,0.250000,0,0);}
.m96_c00453{transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182545,0.000000,0.000000,0.250000,0,0);}
.med_c00453{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.mca_c00453{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m8f_c00453{transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);}
.me5_c00453{transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m67_c00453{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m7b_c00453{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me3_c00453{transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);}
.m78_c00453{transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185095,0.000000,0.000000,0.250000,0,0);}
.m99_c00453{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.mdd_c00453{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m63_c00453{transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185460,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.mb2_c00453{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m65_c00453{transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186890,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188285,0.000000,0.000000,0.250000,0,0);}
.m9f_c00453{transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189720,0.000000,0.000000,0.250000,0,0);}
.m51_c00453{transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189740,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);}
.m75_c00453{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m52_c00453{transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191715,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m6f_c00453{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m95_c00453{transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192705,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194930,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m71_c00453{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.m9e_c00453{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m88_c00453{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m77_c00453{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.me4_c00453{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);}
.m91_c00453{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m90_c00453{transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198245,0.000000,0.000000,0.250000,0,0);}
.m8a_c00453{transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198520,0.000000,0.000000,0.250000,0,0);}
.m7c_c00453{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.mdf_c00453{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.me0_c00453{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m83_c00453{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.me8_c00453{transform:matrix(0.201055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201055,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);}
.mf2_c00453{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.me1_c00453{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m7d_c00453{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m81_c00453{transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.203285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203285,0.000000,0.000000,0.250000,0,0);}
.m56_c00453{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.mbc_c00453{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.me7_c00453{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);}
.me9_c00453{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.m93_c00453{transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206810,0.000000,0.000000,0.250000,0,0);}
.m7a_c00453{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.mc5_c00453{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);}
.m58_c00453{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.md3_c00453{transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211095,0.000000,0.000000,0.250000,0,0);}
.mf1_c00453{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m9c_c00453{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.m69_c00453{transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00453{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212980,0.000000,0.000000,0.250000,0,0);}
.mc6_c00453{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00453{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m79_c00453{transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);}
.mc3_c00453{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m94_c00453{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m86_c00453{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m66_c00453{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);}
.ma2_c00453{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.m89_c00453{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217710,0.000000,0.000000,0.250000,0,0);}
.m5b_c00453{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.ma3_c00453{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.mde_c00453{transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218710,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);}
.mba_c00453{transform:matrix(0.219485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.mbe_c00453{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m68_c00453{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.mb1_c00453{transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221485,0.000000,0.000000,0.250000,0,0);}
.m7e_c00453{transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221570,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221990,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.md6_c00453{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222440,0.000000,0.000000,0.250000,0,0);}
.mae_c00453{transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223835,0.000000,0.000000,0.250000,0,0);}
.me6_c00453{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m5a_c00453{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m80_c00453{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00453{transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);}
.mbf_c00453{transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);}
.m8d_c00453{transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);}
.m6e_c00453{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231215,0.000000,0.000000,0.250000,0,0);}
.m1b_c00453{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.m8c_c00453{transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);}
.ma6_c00453{transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);}
.mc8_c00453{transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);}
.m74_c00453{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m8b_c00453{transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);}
.mbd_c00453{transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);}
.mf5_c00453{transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m55_c00453{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00453{transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240090,0.000000,0.000000,0.250000,0,0);}
.md2_c00453{transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);}
.mf4_c00453{transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240610,0.000000,0.000000,0.250000,0,0);}
.m6a_c00453{transform:matrix(0.241605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241605,0.000000,0.000000,0.250000,0,0);}
.ma0_c00453{transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);}
.mc9_c00453{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.mc0_c00453{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m92_c00453{transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);}
.mea_c00453{transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246435,0.000000,0.000000,0.250000,0,0);}
.mb0_c00453{transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);}
.mcf_c00453{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);}
.maf_c00453{transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);}
.md4_c00453{transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.m6b_c00453{transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);}
.mad_c00453{transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00453{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00453{transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);}
.mc4_c00453{transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);}
.m98_c00453{transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262170,0.000000,0.000000,0.250000,0,0);}
.mda_c00453{transform:matrix(0.262460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262460,0.000000,0.000000,0.250000,0,0);}
.md0_c00453{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.md5_c00453{transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);}
.m72_c00453{transform:matrix(0.265305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265305,0.000000,0.000000,0.250000,0,0);}
.mb3_c00453{transform:matrix(0.265940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265940,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);}
.m82_c00453{transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);}
.ma5_c00453{transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);}
.mf0_c00453{transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);}
.md7_c00453{transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);}
.m87_c00453{transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);}
.m9b_c00453{transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);}
.mec_c00453{transform:matrix(0.279440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279440,0.000000,0.000000,0.250000,0,0);}
.m9a_c00453{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.ma4_c00453{transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);}
.md8_c00453{transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);}
.mc7_c00453{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.md9_c00453{transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);}
.md1_c00453{transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);}
.mc1_c00453{transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349035,0.000000,0.000000,0.250000,0,0);}
.mcc_c00453{transform:matrix(0.354270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354270,0.000000,0.000000,0.250000,0,0);}
.mac_c00453{transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);}
.meb_c00453{transform:matrix(0.361115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361115,0.000000,0.000000,0.250000,0,0);}
.mf6_c00453{transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392775,0.000000,0.000000,0.250000,0,0);}
.mab_c00453{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.mef_c00453{transform:matrix(0.421065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421065,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.430420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430420,0.000000,0.000000,0.250000,0,0);}
.mf7_c00453{transform:matrix(0.563960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563960,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:0.000000px;}
._0_c00453{margin-left:-2.696268px;}
.fc0_c00453{color:transparent;}
.fs12_c00453{font-size:22.050000px;}
.fs11_c00453{font-size:26.250000px;}
.fsf_c00453{font-size:52.500000px;}
.fs10_c00453{font-size:54.600000px;}
.fsa_c00453{font-size:55.650000px;}
.fs7_c00453{font-size:57.750000px;}
.fs8_c00453{font-size:58.800000px;}
.fsd_c00453{font-size:59.850000px;}
.fse_c00453{font-size:60.900000px;}
.fs9_c00453{font-size:63.000000px;}
.fs1_c00453{font-size:64.050000px;}
.fs6_c00453{font-size:65.100000px;}
.fs4_c00453{font-size:66.150000px;}
.fs2_c00453{font-size:67.200000px;}
.fs5_c00453{font-size:69.300000px;}
.fs0_c00453{font-size:70.350000px;}
.fsb_c00453{font-size:72.450000px;}
.fs3_c00453{font-size:73.500000px;}
.fsc_c00453{font-size:82.950000px;}
.y0_c00453{bottom:0.000000px;}
.y44_c00453{bottom:23.881500px;}
.y3c_c00453{bottom:32.943000px;}
.y3d_c00453{bottom:33.280500px;}
.y3e_c00453{bottom:34.000500px;}
.y3f_c00453{bottom:34.263000px;}
.y40_c00453{bottom:34.671000px;}
.y41_c00453{bottom:35.271000px;}
.y42_c00453{bottom:35.452500px;}
.y43_c00453{bottom:36.019500px;}
.y3b_c00453{bottom:53.059500px;}
.y3a_c00453{bottom:68.581500px;}
.y32_c00453{bottom:85.593000px;}
.y33_c00453{bottom:86.245500px;}
.y34_c00453{bottom:86.955000px;}
.y35_c00453{bottom:87.681000px;}
.y36_c00453{bottom:87.850500px;}
.y37_c00453{bottom:88.615500px;}
.y38_c00453{bottom:88.857000px;}
.y39_c00453{bottom:89.163000px;}
.y2b_c00453{bottom:102.603000px;}
.y2c_c00453{bottom:103.677000px;}
.y2d_c00453{bottom:103.983000px;}
.y2e_c00453{bottom:104.568000px;}
.y2f_c00453{bottom:104.932500px;}
.y30_c00453{bottom:105.123000px;}
.y31_c00453{bottom:106.186500px;}
.y2a_c00453{bottom:120.234000px;}
.y1f_c00453{bottom:134.191500px;}
.y20_c00453{bottom:134.587500px;}
.y21_c00453{bottom:134.676000px;}
.y22_c00453{bottom:134.848500px;}
.y23_c00453{bottom:135.045000px;}
.y24_c00453{bottom:135.561000px;}
.y25_c00453{bottom:136.048500px;}
.y26_c00453{bottom:136.536000px;}
.y27_c00453{bottom:136.657500px;}
.y28_c00453{bottom:136.833000px;}
.y29_c00453{bottom:137.305500px;}
.y1e_c00453{bottom:152.187000px;}
.y1d_c00453{bottom:170.166000px;}
.y1c_c00453{bottom:189.097500px;}
.y45_c00453{bottom:197.370000px;}
.y1b_c00453{bottom:205.834500px;}
.y1a_c00453{bottom:222.451500px;}
.y19_c00453{bottom:239.316000px;}
.y18_c00453{bottom:255.337500px;}
.y17_c00453{bottom:272.256000px;}
.y16_c00453{bottom:289.411500px;}
.y15_c00453{bottom:306.367500px;}
.y10_c00453{bottom:323.466000px;}
.y11_c00453{bottom:323.904000px;}
.y12_c00453{bottom:325.638000px;}
.y13_c00453{bottom:326.743500px;}
.y14_c00453{bottom:327.970500px;}
.yf_c00453{bottom:340.615500px;}
.ye_c00453{bottom:357.927000px;}
.yd_c00453{bottom:374.817000px;}
.yc_c00453{bottom:391.798500px;}
.yb_c00453{bottom:408.748500px;}
.ya_c00453{bottom:425.308500px;}
.y9_c00453{bottom:442.647000px;}
.y8_c00453{bottom:459.567000px;}
.y7_c00453{bottom:476.278500px;}
.y6_c00453{bottom:492.925500px;}
.y5_c00453{bottom:509.491500px;}
.y4_c00453{bottom:526.674000px;}
.y3_c00453{bottom:544.111500px;}
.y2_c00453{bottom:561.565500px;}
.y1_c00453{bottom:574.426500px;}
.h14_c00453{height:22.050000px;}
.h13_c00453{height:26.250000px;}
.h11_c00453{height:52.500000px;}
.h12_c00453{height:54.600000px;}
.hc_c00453{height:55.650000px;}
.h9_c00453{height:57.750000px;}
.ha_c00453{height:58.800000px;}
.hf_c00453{height:59.850000px;}
.h10_c00453{height:60.900000px;}
.hb_c00453{height:63.000000px;}
.h3_c00453{height:64.050000px;}
.h8_c00453{height:65.100000px;}
.h6_c00453{height:66.150000px;}
.h4_c00453{height:67.200000px;}
.h7_c00453{height:69.300000px;}
.h2_c00453{height:70.350000px;}
.hd_c00453{height:72.450000px;}
.h5_c00453{height:73.500000px;}
.he_c00453{height:82.950000px;}
.h0_c00453{height:617.700000px;}
.h1_c00453{height:618.000000px;}
.w0_c00453{width:359.100000px;}
.w1_c00453{width:359.250000px;}
.x0_c00453{left:0.000000px;}
.x6f_c00453{left:36.450000px;}
.x5e_c00453{left:37.530000px;}
.x4f_c00453{left:39.420000px;}
.x3d_c00453{left:41.040000px;}
.x2a_c00453{left:42.120000px;}
.x14_c00453{left:43.470000px;}
.x2_c00453{left:44.820000px;}
.x49_c00453{left:47.250000px;}
.x45_c00453{left:48.870000px;}
.x20_c00453{left:57.510000px;}
.x76_c00453{left:61.287000px;}
.x38_c00453{left:63.720000px;}
.x2b_c00453{left:66.420000px;}
.x3_c00453{left:68.580000px;}
.x46_c00453{left:72.900000px;}
.x30_c00453{left:74.250000px;}
.x39_c00453{left:76.410000px;}
.x53_c00453{left:78.840000px;}
.x6b_c00453{left:80.880000px;}
.x42_c00453{left:86.940000px;}
.x5a_c00453{left:88.020000px;}
.x1a_c00453{left:90.450000px;}
.x79_c00453{left:91.797000px;}
.x23_c00453{left:95.850000px;}
.x47_c00453{left:98.010000px;}
.xf_c00453{left:100.440000px;}
.x61_c00453{left:102.330000px;}
.x5f_c00453{left:105.300000px;}
.x35_c00453{left:106.650000px;}
.x24_c00453{left:109.080000px;}
.x50_c00453{left:110.970000px;}
.x4a_c00453{left:112.320000px;}
.x4_c00453{left:115.290000px;}
.x1b_c00453{left:116.370000px;}
.x72_c00453{left:119.217000px;}
.x7b_c00453{left:123.861000px;}
.x2c_c00453{left:126.360000px;}
.x5_c00453{left:130.410000px;}
.x66_c00453{left:137.160000px;}
.x21_c00453{left:140.670000px;}
.x15_c00453{left:142.560000px;}
.x31_c00453{left:143.640000px;}
.x77_c00453{left:145.257000px;}
.xa_c00453{left:151.740000px;}
.x4b_c00453{left:153.090000px;}
.x1c_c00453{left:156.330000px;}
.x5c_c00453{left:157.950000px;}
.x62_c00453{left:159.570000px;}
.x36_c00453{left:162.270000px;}
.x54_c00453{left:163.350000px;}
.x57_c00453{left:164.970000px;}
.x10_c00453{left:167.130000px;}
.x6a_c00453{left:168.480000px;}
.x60_c00453{left:171.450000px;}
.x70_c00453{left:175.770000px;}
.x1_c00453{left:177.120000px;}
.x3e_c00453{left:180.360000px;}
.x55_c00453{left:181.980000px;}
.x7a_c00453{left:185.757000px;}
.x63_c00453{left:186.840000px;}
.x4c_c00453{left:190.890000px;}
.xb_c00453{left:194.130000px;}
.x3a_c00453{left:195.750000px;}
.x73_c00453{left:197.716500px;}
.x25_c00453{left:198.990000px;}
.x11_c00453{left:201.420000px;}
.x51_c00453{left:204.390000px;}
.x6_c00453{left:206.010000px;}
.x2d_c00453{left:207.360000px;}
.x5d_c00453{left:208.980000px;}
.x74_c00453{left:210.720000px;}
.x16_c00453{left:211.950000px;}
.x67_c00453{left:213.300000px;}
.x26_c00453{left:214.920000px;}
.xc_c00453{left:217.350000px;}
.x4d_c00453{left:218.430000px;}
.x7_c00453{left:220.590000px;}
.x2e_c00453{left:225.180000px;}
.x1d_c00453{left:227.340000px;}
.x32_c00453{left:230.040000px;}
.x52_c00453{left:232.740000px;}
.x78_c00453{left:235.167000px;}
.x3b_c00453{left:236.790000px;}
.x3f_c00453{left:239.760000px;}
.x1e_c00453{left:240.840000px;}
.x56_c00453{left:243.270000px;}
.x7c_c00453{left:244.771500px;}
.x40_c00453{left:246.780000px;}
.x6c_c00453{left:249.918000px;}
.x68_c00453{left:252.180000px;}
.xd_c00453{left:253.260000px;}
.x58_c00453{left:255.690000px;}
.x7d_c00453{left:257.580000px;}
.x64_c00453{left:261.360000px;}
.x17_c00453{left:264.600000px;}
.x37_c00453{left:265.950000px;}
.x33_c00453{left:267.030000px;}
.x43_c00453{left:268.110000px;}
.x75_c00453{left:269.622000px;}
.x5b_c00453{left:270.810000px;}
.x12_c00453{left:274.050000px;}
.x59_c00453{left:275.130000px;}
.x6d_c00453{left:276.916500px;}
.x8_c00453{left:278.100000px;}
.x27_c00453{left:281.610000px;}
.x22_c00453{left:282.690000px;}
.x7e_c00453{left:284.580000px;}
.x69_c00453{left:286.200000px;}
.x34_c00453{left:288.360000px;}
.x2f_c00453{left:290.250000px;}
.xe_c00453{left:292.410000px;}
.x44_c00453{left:293.490000px;}
.x71_c00453{left:294.570000px;}
.x18_c00453{left:296.460000px;}
.x65_c00453{left:297.810000px;}
.x28_c00453{left:299.430000px;}
.x48_c00453{left:301.860000px;}
.x19_c00453{left:309.960000px;}
.x4e_c00453{left:311.850000px;}
.x3c_c00453{left:313.200000px;}
.x41_c00453{left:317.250000px;}
.x1f_c00453{left:318.330000px;}
.x6e_c00453{left:319.821000px;}
.x29_c00453{left:321.300000px;}
.x9_c00453{left:323.190000px;}
.x13_c00453{left:325.890000px;}
.x7f_c00453{left:331.290000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
._0_c00453{margin-left:-2.396682pt;}
.fs12_c00453{font-size:19.600000pt;}
.fs11_c00453{font-size:23.333333pt;}
.fsf_c00453{font-size:46.666667pt;}
.fs10_c00453{font-size:48.533333pt;}
.fsa_c00453{font-size:49.466667pt;}
.fs7_c00453{font-size:51.333333pt;}
.fs8_c00453{font-size:52.266667pt;}
.fsd_c00453{font-size:53.200000pt;}
.fse_c00453{font-size:54.133333pt;}
.fs9_c00453{font-size:56.000000pt;}
.fs1_c00453{font-size:56.933333pt;}
.fs6_c00453{font-size:57.866667pt;}
.fs4_c00453{font-size:58.800000pt;}
.fs2_c00453{font-size:59.733333pt;}
.fs5_c00453{font-size:61.600000pt;}
.fs0_c00453{font-size:62.533333pt;}
.fsb_c00453{font-size:64.400000pt;}
.fs3_c00453{font-size:65.333333pt;}
.fsc_c00453{font-size:73.733333pt;}
.y0_c00453{bottom:0.000000pt;}
.y44_c00453{bottom:21.228000pt;}
.y3c_c00453{bottom:29.282667pt;}
.y3d_c00453{bottom:29.582667pt;}
.y3e_c00453{bottom:30.222667pt;}
.y3f_c00453{bottom:30.456000pt;}
.y40_c00453{bottom:30.818667pt;}
.y41_c00453{bottom:31.352000pt;}
.y42_c00453{bottom:31.513333pt;}
.y43_c00453{bottom:32.017333pt;}
.y3b_c00453{bottom:47.164000pt;}
.y3a_c00453{bottom:60.961333pt;}
.y32_c00453{bottom:76.082667pt;}
.y33_c00453{bottom:76.662667pt;}
.y34_c00453{bottom:77.293333pt;}
.y35_c00453{bottom:77.938667pt;}
.y36_c00453{bottom:78.089333pt;}
.y37_c00453{bottom:78.769333pt;}
.y38_c00453{bottom:78.984000pt;}
.y39_c00453{bottom:79.256000pt;}
.y2b_c00453{bottom:91.202667pt;}
.y2c_c00453{bottom:92.157333pt;}
.y2d_c00453{bottom:92.429333pt;}
.y2e_c00453{bottom:92.949333pt;}
.y2f_c00453{bottom:93.273333pt;}
.y30_c00453{bottom:93.442667pt;}
.y31_c00453{bottom:94.388000pt;}
.y2a_c00453{bottom:106.874667pt;}
.y1f_c00453{bottom:119.281333pt;}
.y20_c00453{bottom:119.633333pt;}
.y21_c00453{bottom:119.712000pt;}
.y22_c00453{bottom:119.865333pt;}
.y23_c00453{bottom:120.040000pt;}
.y24_c00453{bottom:120.498667pt;}
.y25_c00453{bottom:120.932000pt;}
.y26_c00453{bottom:121.365333pt;}
.y27_c00453{bottom:121.473333pt;}
.y28_c00453{bottom:121.629333pt;}
.y29_c00453{bottom:122.049333pt;}
.y1e_c00453{bottom:135.277333pt;}
.y1d_c00453{bottom:151.258667pt;}
.y1c_c00453{bottom:168.086667pt;}
.y45_c00453{bottom:175.440000pt;}
.y1b_c00453{bottom:182.964000pt;}
.y1a_c00453{bottom:197.734667pt;}
.y19_c00453{bottom:212.725333pt;}
.y18_c00453{bottom:226.966667pt;}
.y17_c00453{bottom:242.005333pt;}
.y16_c00453{bottom:257.254667pt;}
.y15_c00453{bottom:272.326667pt;}
.y10_c00453{bottom:287.525333pt;}
.y11_c00453{bottom:287.914667pt;}
.y12_c00453{bottom:289.456000pt;}
.y13_c00453{bottom:290.438667pt;}
.y14_c00453{bottom:291.529333pt;}
.yf_c00453{bottom:302.769333pt;}
.ye_c00453{bottom:318.157333pt;}
.yd_c00453{bottom:333.170667pt;}
.yc_c00453{bottom:348.265333pt;}
.yb_c00453{bottom:363.332000pt;}
.ya_c00453{bottom:378.052000pt;}
.y9_c00453{bottom:393.464000pt;}
.y8_c00453{bottom:408.504000pt;}
.y7_c00453{bottom:423.358667pt;}
.y6_c00453{bottom:438.156000pt;}
.y5_c00453{bottom:452.881333pt;}
.y4_c00453{bottom:468.154667pt;}
.y3_c00453{bottom:483.654667pt;}
.y2_c00453{bottom:499.169333pt;}
.y1_c00453{bottom:510.601333pt;}
.h14_c00453{height:19.600000pt;}
.h13_c00453{height:23.333333pt;}
.h11_c00453{height:46.666667pt;}
.h12_c00453{height:48.533333pt;}
.hc_c00453{height:49.466667pt;}
.h9_c00453{height:51.333333pt;}
.ha_c00453{height:52.266667pt;}
.hf_c00453{height:53.200000pt;}
.h10_c00453{height:54.133333pt;}
.hb_c00453{height:56.000000pt;}
.h3_c00453{height:56.933333pt;}
.h8_c00453{height:57.866667pt;}
.h6_c00453{height:58.800000pt;}
.h4_c00453{height:59.733333pt;}
.h7_c00453{height:61.600000pt;}
.h2_c00453{height:62.533333pt;}
.hd_c00453{height:64.400000pt;}
.h5_c00453{height:65.333333pt;}
.he_c00453{height:73.733333pt;}
.h0_c00453{height:549.066667pt;}
.h1_c00453{height:549.333333pt;}
.w0_c00453{width:319.200000pt;}
.w1_c00453{width:319.333333pt;}
.x0_c00453{left:0.000000pt;}
.x6f_c00453{left:32.400000pt;}
.x5e_c00453{left:33.360000pt;}
.x4f_c00453{left:35.040000pt;}
.x3d_c00453{left:36.480000pt;}
.x2a_c00453{left:37.440000pt;}
.x14_c00453{left:38.640000pt;}
.x2_c00453{left:39.840000pt;}
.x49_c00453{left:42.000000pt;}
.x45_c00453{left:43.440000pt;}
.x20_c00453{left:51.120000pt;}
.x76_c00453{left:54.477333pt;}
.x38_c00453{left:56.640000pt;}
.x2b_c00453{left:59.040000pt;}
.x3_c00453{left:60.960000pt;}
.x46_c00453{left:64.800000pt;}
.x30_c00453{left:66.000000pt;}
.x39_c00453{left:67.920000pt;}
.x53_c00453{left:70.080000pt;}
.x6b_c00453{left:71.893333pt;}
.x42_c00453{left:77.280000pt;}
.x5a_c00453{left:78.240000pt;}
.x1a_c00453{left:80.400000pt;}
.x79_c00453{left:81.597333pt;}
.x23_c00453{left:85.200000pt;}
.x47_c00453{left:87.120000pt;}
.xf_c00453{left:89.280000pt;}
.x61_c00453{left:90.960000pt;}
.x5f_c00453{left:93.600000pt;}
.x35_c00453{left:94.800000pt;}
.x24_c00453{left:96.960000pt;}
.x50_c00453{left:98.640000pt;}
.x4a_c00453{left:99.840000pt;}
.x4_c00453{left:102.480000pt;}
.x1b_c00453{left:103.440000pt;}
.x72_c00453{left:105.970667pt;}
.x7b_c00453{left:110.098667pt;}
.x2c_c00453{left:112.320000pt;}
.x5_c00453{left:115.920000pt;}
.x66_c00453{left:121.920000pt;}
.x21_c00453{left:125.040000pt;}
.x15_c00453{left:126.720000pt;}
.x31_c00453{left:127.680000pt;}
.x77_c00453{left:129.117333pt;}
.xa_c00453{left:134.880000pt;}
.x4b_c00453{left:136.080000pt;}
.x1c_c00453{left:138.960000pt;}
.x5c_c00453{left:140.400000pt;}
.x62_c00453{left:141.840000pt;}
.x36_c00453{left:144.240000pt;}
.x54_c00453{left:145.200000pt;}
.x57_c00453{left:146.640000pt;}
.x10_c00453{left:148.560000pt;}
.x6a_c00453{left:149.760000pt;}
.x60_c00453{left:152.400000pt;}
.x70_c00453{left:156.240000pt;}
.x1_c00453{left:157.440000pt;}
.x3e_c00453{left:160.320000pt;}
.x55_c00453{left:161.760000pt;}
.x7a_c00453{left:165.117333pt;}
.x63_c00453{left:166.080000pt;}
.x4c_c00453{left:169.680000pt;}
.xb_c00453{left:172.560000pt;}
.x3a_c00453{left:174.000000pt;}
.x73_c00453{left:175.748000pt;}
.x25_c00453{left:176.880000pt;}
.x11_c00453{left:179.040000pt;}
.x51_c00453{left:181.680000pt;}
.x6_c00453{left:183.120000pt;}
.x2d_c00453{left:184.320000pt;}
.x5d_c00453{left:185.760000pt;}
.x74_c00453{left:187.306667pt;}
.x16_c00453{left:188.400000pt;}
.x67_c00453{left:189.600000pt;}
.x26_c00453{left:191.040000pt;}
.xc_c00453{left:193.200000pt;}
.x4d_c00453{left:194.160000pt;}
.x7_c00453{left:196.080000pt;}
.x2e_c00453{left:200.160000pt;}
.x1d_c00453{left:202.080000pt;}
.x32_c00453{left:204.480000pt;}
.x52_c00453{left:206.880000pt;}
.x78_c00453{left:209.037333pt;}
.x3b_c00453{left:210.480000pt;}
.x3f_c00453{left:213.120000pt;}
.x1e_c00453{left:214.080000pt;}
.x56_c00453{left:216.240000pt;}
.x7c_c00453{left:217.574667pt;}
.x40_c00453{left:219.360000pt;}
.x6c_c00453{left:222.149333pt;}
.x68_c00453{left:224.160000pt;}
.xd_c00453{left:225.120000pt;}
.x58_c00453{left:227.280000pt;}
.x7d_c00453{left:228.960000pt;}
.x64_c00453{left:232.320000pt;}
.x17_c00453{left:235.200000pt;}
.x37_c00453{left:236.400000pt;}
.x33_c00453{left:237.360000pt;}
.x43_c00453{left:238.320000pt;}
.x75_c00453{left:239.664000pt;}
.x5b_c00453{left:240.720000pt;}
.x12_c00453{left:243.600000pt;}
.x59_c00453{left:244.560000pt;}
.x6d_c00453{left:246.148000pt;}
.x8_c00453{left:247.200000pt;}
.x27_c00453{left:250.320000pt;}
.x22_c00453{left:251.280000pt;}
.x7e_c00453{left:252.960000pt;}
.x69_c00453{left:254.400000pt;}
.x34_c00453{left:256.320000pt;}
.x2f_c00453{left:258.000000pt;}
.xe_c00453{left:259.920000pt;}
.x44_c00453{left:260.880000pt;}
.x71_c00453{left:261.840000pt;}
.x18_c00453{left:263.520000pt;}
.x65_c00453{left:264.720000pt;}
.x28_c00453{left:266.160000pt;}
.x48_c00453{left:268.320000pt;}
.x19_c00453{left:275.520000pt;}
.x4e_c00453{left:277.200000pt;}
.x3c_c00453{left:278.400000pt;}
.x41_c00453{left:282.000000pt;}
.x1f_c00453{left:282.960000pt;}
.x6e_c00453{left:284.285333pt;}
.x29_c00453{left:285.600000pt;}
.x9_c00453{left:287.280000pt;}
.x13_c00453{left:289.680000pt;}
.x7f_c00453{left:294.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00454 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.014745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014745,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{transform:matrix(0.021073,0.000274,-0.003250,0.249979,0,0);-ms-transform:matrix(0.021073,0.000274,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.021073,0.000274,-0.003250,0.249979,0,0);}
.m5d_c00454{transform:matrix(0.096587,0.001256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.096587,0.001256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.096587,0.001256,-0.003250,0.249979,0,0);}
.ma6_c00454{transform:matrix(0.119365,0.001552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.119365,0.001552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.119365,0.001552,-0.003250,0.249979,0,0);}
.m73_c00454{transform:matrix(0.133819,0.001740,-0.003250,0.249979,0,0);-ms-transform:matrix(0.133819,0.001740,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.133819,0.001740,-0.003250,0.249979,0,0);}
.md7_c00454{transform:matrix(0.143999,0.002160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.143999,0.002160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.143999,0.002160,-0.003750,0.249972,0,0);}
.mce_c00454{transform:matrix(0.146848,0.002203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146848,0.002203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146848,0.002203,-0.003750,0.249972,0,0);}
.md8_c00454{transform:matrix(0.147428,0.002211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147428,0.002211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147428,0.002211,-0.003750,0.249972,0,0);}
.m70_c00454{transform:matrix(0.149007,0.001937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149007,0.001937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149007,0.001937,-0.003250,0.249979,0,0);}
.m6f_c00454{transform:matrix(0.149237,0.001940,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149237,0.001940,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149237,0.001940,-0.003250,0.249979,0,0);}
.m4d_c00454{transform:matrix(0.149772,0.001947,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149772,0.001947,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149772,0.001947,-0.003250,0.249979,0,0);}
.m1_c00454{transform:matrix(0.152365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152365,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.154912,0.002014,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154912,0.002014,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154912,0.002014,-0.003250,0.249979,0,0);}
.m1c_c00454{transform:matrix(0.155337,0.002951,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155337,0.002951,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155337,0.002951,-0.004749,0.249955,0,0);}
.m4_c00454{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157785,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.158127,0.002056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158127,0.002056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158127,0.002056,-0.003250,0.249979,0,0);}
.m86_c00454{transform:matrix(0.158587,0.002062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158587,0.002062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158587,0.002062,-0.003250,0.249979,0,0);}
.me_c00454{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.mc2_c00454{transform:matrix(0.159002,0.002385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159002,0.002385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159002,0.002385,-0.003750,0.249972,0,0);}
.m9f_c00454{transform:matrix(0.159247,0.002070,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159247,0.002070,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159247,0.002070,-0.003250,0.249979,0,0);}
.mcf_c00454{transform:matrix(0.159262,0.002389,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159262,0.002389,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159262,0.002389,-0.003750,0.249972,0,0);}
.m24_c00454{transform:matrix(0.159337,0.002071,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159337,0.002071,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159337,0.002071,-0.003250,0.249979,0,0);}
.m90_c00454{transform:matrix(0.159502,0.002074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159502,0.002074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159502,0.002074,-0.003250,0.249979,0,0);}
.md5_c00454{transform:matrix(0.159812,0.002397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159812,0.002397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159812,0.002397,-0.003750,0.249972,0,0);}
.m14_c00454{transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159965,0.000000,0.000000,0.250000,0,0);}
.m8d_c00454{transform:matrix(0.161226,0.002096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161226,0.002096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161226,0.002096,-0.003250,0.249979,0,0);}
.m51_c00454{transform:matrix(0.163401,0.002124,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163401,0.002124,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163401,0.002124,-0.003250,0.249979,0,0);}
.m56_c00454{transform:matrix(0.164636,0.002140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164636,0.002140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164636,0.002140,-0.003250,0.249979,0,0);}
.mac_c00454{transform:matrix(0.165120,0.001816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165120,0.001816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165120,0.001816,-0.002750,0.249985,0,0);}
.m83_c00454{transform:matrix(0.165496,0.002151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165496,0.002151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165496,0.002151,-0.003250,0.249979,0,0);}
.m5_c00454{transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);}
.m84_c00454{transform:matrix(0.165636,0.002153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165636,0.002153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165636,0.002153,-0.003250,0.249979,0,0);}
.m3a_c00454{transform:matrix(0.166056,0.002159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166056,0.002159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166056,0.002159,-0.003250,0.249979,0,0);}
.m4c_c00454{transform:matrix(0.166271,0.002162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166271,0.002162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166271,0.002162,-0.003250,0.249979,0,0);}
.m92_c00454{transform:matrix(0.166326,0.002162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166326,0.002162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166326,0.002162,-0.003250,0.249979,0,0);}
.m4e_c00454{transform:matrix(0.167886,0.002183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167886,0.002183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167886,0.002183,-0.003250,0.249979,0,0);}
.m74_c00454{transform:matrix(0.167946,0.002183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167946,0.002183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167946,0.002183,-0.003250,0.249979,0,0);}
.m9c_c00454{transform:matrix(0.168351,0.002189,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168351,0.002189,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168351,0.002189,-0.003250,0.249979,0,0);}
.m41_c00454{transform:matrix(0.168591,0.002192,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168591,0.002192,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168591,0.002192,-0.003250,0.249979,0,0);}
.m69_c00454{transform:matrix(0.169286,0.002201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169286,0.002201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169286,0.002201,-0.003250,0.249979,0,0);}
.m79_c00454{transform:matrix(0.171236,0.002226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171236,0.002226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171236,0.002226,-0.003250,0.249979,0,0);}
.mbd_c00454{transform:matrix(0.171546,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171546,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171546,0.002573,-0.003750,0.249972,0,0);}
.mcc_c00454{transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);}
.ma5_c00454{transform:matrix(0.172150,0.002238,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172150,0.002238,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172150,0.002238,-0.003250,0.249979,0,0);}
.mb8_c00454{transform:matrix(0.172626,0.002589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172626,0.002589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172626,0.002589,-0.003750,0.249972,0,0);}
.m57_c00454{transform:matrix(0.172830,0.002247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172830,0.002247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172830,0.002247,-0.003250,0.249979,0,0);}
.mdb_c00454{transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172971,0.002595,-0.003750,0.249972,0,0);}
.m12_c00454{transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174280,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.174780,0.002272,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174780,0.002272,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174780,0.002272,-0.003250,0.249979,0,0);}
.mc9_c00454{transform:matrix(0.175020,0.002625,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175020,0.002625,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175020,0.002625,-0.003750,0.249972,0,0);}
.m67_c00454{transform:matrix(0.176255,0.002291,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176255,0.002291,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176255,0.002291,-0.003250,0.249979,0,0);}
.md_c00454{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m50_c00454{transform:matrix(0.178385,0.002319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178385,0.002319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178385,0.002319,-0.003250,0.249979,0,0);}
.m15_c00454{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.179955,0.002339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179955,0.002339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179955,0.002339,-0.003250,0.249979,0,0);}
.m25_c00454{transform:matrix(0.180020,0.002340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180020,0.002340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180020,0.002340,-0.003250,0.249979,0,0);}
.md4_c00454{transform:matrix(0.180090,0.002701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180090,0.002701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180090,0.002701,-0.003750,0.249972,0,0);}
.m6e_c00454{transform:matrix(0.180500,0.002346,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180500,0.002346,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180500,0.002346,-0.003250,0.249979,0,0);}
.m71_c00454{transform:matrix(0.180940,0.002352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180940,0.002352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180940,0.002352,-0.003250,0.249979,0,0);}
.mc_c00454{transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181150,0.002355,-0.003250,0.249979,0,0);}
.m80_c00454{transform:matrix(0.181215,0.002356,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181215,0.002356,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181215,0.002356,-0.003250,0.249979,0,0);}
.md6_c00454{transform:matrix(0.181630,0.002724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181630,0.002724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181630,0.002724,-0.003750,0.249972,0,0);}
.m8e_c00454{transform:matrix(0.181850,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181850,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181850,0.002364,-0.003250,0.249979,0,0);}
.m13_c00454{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.ma0_c00454{transform:matrix(0.182425,0.002372,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182425,0.002372,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182425,0.002372,-0.003250,0.249979,0,0);}
.mbc_c00454{transform:matrix(0.182779,0.002742,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182779,0.002742,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182779,0.002742,-0.003750,0.249972,0,0);}
.m8a_c00454{transform:matrix(0.183195,0.002382,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183195,0.002382,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183195,0.002382,-0.003250,0.249979,0,0);}
.m11_c00454{transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183510,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.183724,0.002388,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183724,0.002388,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183724,0.002388,-0.003250,0.249979,0,0);}
.m22_c00454{transform:matrix(0.183969,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183969,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183969,0.002392,-0.003250,0.249979,0,0);}
.m6_c00454{transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184440,0.000000,0.000000,0.250000,0,0);}
.mc8_c00454{transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184729,0.002771,-0.003750,0.249972,0,0);}
.mf_c00454{transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);}
.m98_c00454{transform:matrix(0.185504,0.002412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185504,0.002412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185504,0.002412,-0.003250,0.249979,0,0);}
.m6d_c00454{transform:matrix(0.185709,0.002414,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185709,0.002414,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185709,0.002414,-0.003250,0.249979,0,0);}
.m6c_c00454{transform:matrix(0.186084,0.002419,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186084,0.002419,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186084,0.002419,-0.003250,0.249979,0,0);}
.m62_c00454{transform:matrix(0.186384,0.002423,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186384,0.002423,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186384,0.002423,-0.003250,0.249979,0,0);}
.m5b_c00454{transform:matrix(0.186829,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186829,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186829,0.002429,-0.003250,0.249979,0,0);}
.m76_c00454{transform:matrix(0.187164,0.002433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187164,0.002433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187164,0.002433,-0.003250,0.249979,0,0);}
.mc7_c00454{transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);}
.m23_c00454{transform:matrix(0.187689,0.002440,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187689,0.002440,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187689,0.002440,-0.003250,0.249979,0,0);}
.mcd_c00454{transform:matrix(0.187884,0.002818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187884,0.002818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187884,0.002818,-0.003750,0.249972,0,0);}
.m97_c00454{transform:matrix(0.187969,0.002444,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187969,0.002444,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187969,0.002444,-0.003250,0.249979,0,0);}
.m3b_c00454{transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);}
.m1b_c00454{transform:matrix(0.188346,0.003579,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188346,0.003579,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188346,0.003579,-0.004749,0.249955,0,0);}
.m99_c00454{transform:matrix(0.188454,0.002450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188454,0.002450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188454,0.002450,-0.003250,0.249979,0,0);}
.m36_c00454{transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188634,0.002452,-0.003250,0.249979,0,0);}
.m3_c00454{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.190259,0.002473,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190259,0.002473,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190259,0.002473,-0.003250,0.249979,0,0);}
.m58_c00454{transform:matrix(0.190669,0.002479,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190669,0.002479,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190669,0.002479,-0.003250,0.249979,0,0);}
.m91_c00454{transform:matrix(0.190929,0.002482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190929,0.002482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190929,0.002482,-0.003250,0.249979,0,0);}
.mb_c00454{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.191889,0.002495,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191889,0.002495,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191889,0.002495,-0.003250,0.249979,0,0);}
.m7c_c00454{transform:matrix(0.192424,0.002502,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192424,0.002502,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192424,0.002502,-0.003250,0.249979,0,0);}
.m31_c00454{transform:matrix(0.193124,0.002511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193124,0.002511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193124,0.002511,-0.003250,0.249979,0,0);}
.m2c_c00454{transform:matrix(0.193219,0.002512,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193219,0.002512,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193219,0.002512,-0.003250,0.249979,0,0);}
.m6a_c00454{transform:matrix(0.194274,0.002526,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194274,0.002526,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194274,0.002526,-0.003250,0.249979,0,0);}
.m88_c00454{transform:matrix(0.195094,0.002536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195094,0.002536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195094,0.002536,-0.003250,0.249979,0,0);}
.m82_c00454{transform:matrix(0.195363,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195363,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195363,0.002540,-0.003250,0.249979,0,0);}
.m2b_c00454{transform:matrix(0.195848,0.002546,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195848,0.002546,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195848,0.002546,-0.003250,0.249979,0,0);}
.m1a_c00454{transform:matrix(0.196640,0.003736,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196640,0.003736,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196640,0.003736,-0.004749,0.249955,0,0);}
.m54_c00454{transform:matrix(0.196723,0.002557,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196723,0.002557,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196723,0.002557,-0.003250,0.249979,0,0);}
.m2d_c00454{transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196948,0.002560,-0.003250,0.249979,0,0);}
.m3c_c00454{transform:matrix(0.197008,0.002561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197008,0.002561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197008,0.002561,-0.003250,0.249979,0,0);}
.m38_c00454{transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);}
.m95_c00454{transform:matrix(0.197293,0.002565,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197293,0.002565,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197293,0.002565,-0.003250,0.249979,0,0);}
.m93_c00454{transform:matrix(0.197328,0.002565,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197328,0.002565,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197328,0.002565,-0.003250,0.249979,0,0);}
.m9e_c00454{transform:matrix(0.197523,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197523,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197523,0.002568,-0.003250,0.249979,0,0);}
.m28_c00454{transform:matrix(0.197668,0.002570,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197668,0.002570,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197668,0.002570,-0.003250,0.249979,0,0);}
.m37_c00454{transform:matrix(0.198328,0.002578,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198328,0.002578,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198328,0.002578,-0.003250,0.249979,0,0);}
.m1d_c00454{transform:matrix(0.198639,0.003774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198639,0.003774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198639,0.003774,-0.004749,0.249955,0,0);}
.mad_c00454{transform:matrix(0.198868,0.002188,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198868,0.002188,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198868,0.002188,-0.002750,0.249985,0,0);}
.m66_c00454{transform:matrix(0.199288,0.002591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199288,0.002591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199288,0.002591,-0.003250,0.249979,0,0);}
.m45_c00454{transform:matrix(0.199798,0.002597,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199798,0.002597,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199798,0.002597,-0.003250,0.249979,0,0);}
.m8_c00454{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00454{transform:matrix(0.200468,0.002606,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200468,0.002606,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200468,0.002606,-0.003250,0.249979,0,0);}
.m89_c00454{transform:matrix(0.200678,0.002609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200678,0.002609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200678,0.002609,-0.003250,0.249979,0,0);}
.m77_c00454{transform:matrix(0.200793,0.002610,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200793,0.002610,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200793,0.002610,-0.003250,0.249979,0,0);}
.m40_c00454{transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);}
.md1_c00454{transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201272,0.003019,-0.003750,0.249972,0,0);}
.m47_c00454{transform:matrix(0.201303,0.002617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201303,0.002617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201303,0.002617,-0.003250,0.249979,0,0);}
.m16_c00454{transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);}
.mb9_c00454{transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201992,0.003030,-0.003750,0.249972,0,0);}
.mae_c00454{transform:matrix(0.202323,0.002226,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202323,0.002226,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202323,0.002226,-0.002750,0.249985,0,0);}
.m5f_c00454{transform:matrix(0.203078,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203078,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203078,0.002640,-0.003250,0.249979,0,0);}
.ma3_c00454{transform:matrix(0.203138,0.002641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203138,0.002641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203138,0.002641,-0.003250,0.249979,0,0);}
.m64_c00454{transform:matrix(0.203203,0.002642,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203203,0.002642,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203203,0.002642,-0.003250,0.249979,0,0);}
.m2_c00454{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m6b_c00454{transform:matrix(0.203648,0.002647,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203648,0.002647,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203648,0.002647,-0.003250,0.249979,0,0);}
.md3_c00454{transform:matrix(0.203952,0.003059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203952,0.003059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203952,0.003059,-0.003750,0.249972,0,0);}
.m48_c00454{transform:matrix(0.204118,0.002654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204118,0.002654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204118,0.002654,-0.003250,0.249979,0,0);}
.m1e_c00454{transform:matrix(0.204143,0.003879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204143,0.003879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204143,0.003879,-0.004749,0.249955,0,0);}
.mba_c00454{transform:matrix(0.204632,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204632,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204632,0.003069,-0.003750,0.249972,0,0);}
.m65_c00454{transform:matrix(0.205153,0.002667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205153,0.002667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205153,0.002667,-0.003250,0.249979,0,0);}
.ma_c00454{transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);}
.m5e_c00454{transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205433,0.002671,-0.003250,0.249979,0,0);}
.m85_c00454{transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);}
.m2f_c00454{transform:matrix(0.205583,0.002673,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205583,0.002673,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205583,0.002673,-0.003250,0.249979,0,0);}
.m1f_c00454{transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);}
.m26_c00454{transform:matrix(0.205818,0.002676,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205818,0.002676,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205818,0.002676,-0.003250,0.249979,0,0);}
.md2_c00454{transform:matrix(0.205862,0.003088,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205862,0.003088,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205862,0.003088,-0.003750,0.249972,0,0);}
.m59_c00454{transform:matrix(0.206948,0.002690,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206948,0.002690,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206948,0.002690,-0.003250,0.249979,0,0);}
.mc4_c00454{transform:matrix(0.207772,0.003117,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207772,0.003117,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207772,0.003117,-0.003750,0.249972,0,0);}
.m75_c00454{transform:matrix(0.207857,0.002702,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207857,0.002702,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207857,0.002702,-0.003250,0.249979,0,0);}
.m7_c00454{transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207995,0.000000,0.000000,0.250000,0,0);}
.mbb_c00454{transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);}
.m2e_c00454{transform:matrix(0.208777,0.002714,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208777,0.002714,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208777,0.002714,-0.003250,0.249979,0,0);}
.ma1_c00454{transform:matrix(0.208812,0.002715,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208812,0.002715,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208812,0.002715,-0.003250,0.249979,0,0);}
.ma4_c00454{transform:matrix(0.209497,0.002723,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209497,0.002723,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209497,0.002723,-0.003250,0.249979,0,0);}
.m42_c00454{transform:matrix(0.209882,0.002728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209882,0.002728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209882,0.002728,-0.003250,0.249979,0,0);}
.m53_c00454{transform:matrix(0.210232,0.002733,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210232,0.002733,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210232,0.002733,-0.003250,0.249979,0,0);}
.mc3_c00454{transform:matrix(0.211576,0.003174,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211576,0.003174,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211576,0.003174,-0.003750,0.249972,0,0);}
.m60_c00454{transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);}
.m96_c00454{transform:matrix(0.212477,0.002762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212477,0.002762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212477,0.002762,-0.003250,0.249979,0,0);}
.m32_c00454{transform:matrix(0.213252,0.002772,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213252,0.002772,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213252,0.002772,-0.003250,0.249979,0,0);}
.mc1_c00454{transform:matrix(0.213701,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213701,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213701,0.003206,-0.003750,0.249972,0,0);}
.m34_c00454{transform:matrix(0.214127,0.002784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214127,0.002784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214127,0.002784,-0.003250,0.249979,0,0);}
.m7e_c00454{transform:matrix(0.214927,0.002794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214927,0.002794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214927,0.002794,-0.003250,0.249979,0,0);}
.m78_c00454{transform:matrix(0.215317,0.002799,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215317,0.002799,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215317,0.002799,-0.003250,0.249979,0,0);}
.m5a_c00454{transform:matrix(0.215447,0.002801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215447,0.002801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215447,0.002801,-0.003250,0.249979,0,0);}
.m3f_c00454{transform:matrix(0.216207,0.002811,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216207,0.002811,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216207,0.002811,-0.003250,0.249979,0,0);}
.m9b_c00454{transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217587,0.002829,-0.003250,0.249979,0,0);}
.mbe_c00454{transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);}
.mca_c00454{transform:matrix(0.218775,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218775,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218775,0.003282,-0.003750,0.249972,0,0);}
.m87_c00454{transform:matrix(0.218976,0.002847,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218976,0.002847,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218976,0.002847,-0.003250,0.249979,0,0);}
.m3e_c00454{transform:matrix(0.219196,0.002850,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219196,0.002850,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219196,0.002850,-0.003250,0.249979,0,0);}
.m61_c00454{transform:matrix(0.219716,0.002856,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219716,0.002856,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219716,0.002856,-0.003250,0.249979,0,0);}
.m17_c00454{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.mc6_c00454{transform:matrix(0.220260,0.003304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220260,0.003304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220260,0.003304,-0.003750,0.249972,0,0);}
.m94_c00454{transform:matrix(0.220391,0.002865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220391,0.002865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220391,0.002865,-0.003250,0.249979,0,0);}
.m30_c00454{transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220501,0.002867,-0.003250,0.249979,0,0);}
.mc5_c00454{transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220685,0.003310,-0.003750,0.249972,0,0);}
.m44_c00454{transform:matrix(0.221001,0.002873,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221001,0.002873,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221001,0.002873,-0.003250,0.249979,0,0);}
.mb7_c00454{transform:matrix(0.221575,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221575,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221575,0.003324,-0.003750,0.249972,0,0);}
.m9a_c00454{transform:matrix(0.222186,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222186,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222186,0.002888,-0.003250,0.249979,0,0);}
.m33_c00454{transform:matrix(0.222196,0.002889,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222196,0.002889,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222196,0.002889,-0.003250,0.249979,0,0);}
.m18_c00454{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m7a_c00454{transform:matrix(0.226416,0.002943,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226416,0.002943,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226416,0.002943,-0.003250,0.249979,0,0);}
.m27_c00454{transform:matrix(0.227756,0.002961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227756,0.002961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227756,0.002961,-0.003250,0.249979,0,0);}
.ma2_c00454{transform:matrix(0.228271,0.002968,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228271,0.002968,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228271,0.002968,-0.003250,0.249979,0,0);}
.m63_c00454{transform:matrix(0.229661,0.002986,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229661,0.002986,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229661,0.002986,-0.003250,0.249979,0,0);}
.m2a_c00454{transform:matrix(0.230820,0.003001,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230820,0.003001,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230820,0.003001,-0.003250,0.249979,0,0);}
.mb1_c00454{transform:matrix(0.230826,0.002539,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230826,0.002539,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230826,0.002539,-0.002750,0.249985,0,0);}
.m10_c00454{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.235685,0.003064,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235685,0.003064,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235685,0.003064,-0.003250,0.249979,0,0);}
.ma9_c00454{transform:matrix(0.236190,0.003070,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236190,0.003070,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236190,0.003070,-0.003250,0.249979,0,0);}
.mcb_c00454{transform:matrix(0.237058,0.003556,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237058,0.003556,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237058,0.003556,-0.003750,0.249972,0,0);}
.ma8_c00454{transform:matrix(0.237650,0.003089,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237650,0.003089,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237650,0.003089,-0.003250,0.249979,0,0);}
.m7d_c00454{transform:matrix(0.237795,0.003091,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237795,0.003091,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237795,0.003091,-0.003250,0.249979,0,0);}
.m39_c00454{transform:matrix(0.239670,0.003116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239670,0.003116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239670,0.003116,-0.003250,0.249979,0,0);}
.mc0_c00454{transform:matrix(0.240798,0.003612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240798,0.003612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240798,0.003612,-0.003750,0.249972,0,0);}
.m20_c00454{transform:matrix(0.240812,0.004575,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240812,0.004575,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240812,0.004575,-0.004749,0.249955,0,0);}
.mab_c00454{transform:matrix(0.242075,0.003147,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242075,0.003147,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242075,0.003147,-0.003250,0.249979,0,0);}
.mbf_c00454{transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242408,0.003636,-0.003750,0.249972,0,0);}
.m7b_c00454{transform:matrix(0.243014,0.003159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243014,0.003159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243014,0.003159,-0.003250,0.249979,0,0);}
.m19_c00454{transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.246434,0.003204,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246434,0.003204,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246434,0.003204,-0.003250,0.249979,0,0);}
.m55_c00454{transform:matrix(0.252354,0.003281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252354,0.003281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252354,0.003281,-0.003250,0.249979,0,0);}
.m8b_c00454{transform:matrix(0.252519,0.003283,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252519,0.003283,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252519,0.003283,-0.003250,0.249979,0,0);}
.m35_c00454{transform:matrix(0.255203,0.003318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255203,0.003318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255203,0.003318,-0.003250,0.249979,0,0);}
.maa_c00454{transform:matrix(0.258478,0.003360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258478,0.003360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258478,0.003360,-0.003250,0.249979,0,0);}
.m46_c00454{transform:matrix(0.259803,0.003377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259803,0.003377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259803,0.003377,-0.003250,0.249979,0,0);}
.mb0_c00454{transform:matrix(0.269034,0.002959,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269034,0.002959,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269034,0.002959,-0.002750,0.249985,0,0);}
.mda_c00454{transform:matrix(0.271664,0.004075,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271664,0.004075,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271664,0.004075,-0.003750,0.249972,0,0);}
.mb5_c00454{transform:matrix(0.272749,0.004091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272749,0.004091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272749,0.004091,-0.003750,0.249972,0,0);}
.m68_c00454{transform:matrix(0.273222,0.003552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273222,0.003552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273222,0.003552,-0.003250,0.249979,0,0);}
.m4b_c00454{transform:matrix(0.273307,0.003553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273307,0.003553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273307,0.003553,-0.003250,0.249979,0,0);}
.mb2_c00454{transform:matrix(0.280488,0.004207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280488,0.004207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280488,0.004207,-0.003750,0.249972,0,0);}
.m3d_c00454{transform:matrix(0.284371,0.003697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284371,0.003697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284371,0.003697,-0.003250,0.249979,0,0);}
.maf_c00454{transform:matrix(0.296462,0.003261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296462,0.003261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296462,0.003261,-0.002750,0.249985,0,0);}
.md9_c00454{transform:matrix(0.300566,0.004508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300566,0.004508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300566,0.004508,-0.003750,0.249972,0,0);}
.m43_c00454{transform:matrix(0.304769,0.003962,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304769,0.003962,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304769,0.003962,-0.003250,0.249979,0,0);}
.m29_c00454{transform:matrix(0.306964,0.003991,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306964,0.003991,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306964,0.003991,-0.003250,0.249979,0,0);}
.mb4_c00454{transform:matrix(0.311935,0.004679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.311935,0.004679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.311935,0.004679,-0.003750,0.249972,0,0);}
.mb3_c00454{transform:matrix(0.366429,0.005496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.366429,0.005496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.366429,0.005496,-0.003750,0.249972,0,0);}
.m4a_c00454{transform:matrix(0.533060,0.006930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.533060,0.006930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.533060,0.006930,-0.003250,0.249979,0,0);}
.mb6_c00454{transform:matrix(0.540524,0.008108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.540524,0.008108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.540524,0.008108,-0.003750,0.249972,0,0);}
.md0_c00454{transform:matrix(0.714550,0.010718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.714550,0.010718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.714550,0.010718,-0.003750,0.249972,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
.fc0_c00454{color:transparent;}
.fs14_c00454{font-size:37.804252px;}
.fsa_c00454{font-size:58.804968px;}
.fse_c00454{font-size:59.855057px;}
.fs8_c00454{font-size:60.905146px;}
.fs12_c00454{font-size:63.005323px;}
.fs16_c00454{font-size:63.007087px;}
.fs4_c00454{font-size:63.011370px;}
.fs3_c00454{font-size:64.050000px;}
.fs9_c00454{font-size:64.055412px;}
.fsc_c00454{font-size:65.105501px;}
.fsd_c00454{font-size:66.155589px;}
.fs6_c00454{font-size:67.205678px;}
.fs17_c00454{font-size:67.207560px;}
.fs1_c00454{font-size:68.250000px;}
.fs7_c00454{font-size:68.255767px;}
.fs15_c00454{font-size:68.257678px;}
.fsf_c00454{font-size:69.305856px;}
.fs2_c00454{font-size:71.400000px;}
.fsb_c00454{font-size:71.406033px;}
.fs13_c00454{font-size:72.454383px;}
.fs10_c00454{font-size:73.506210px;}
.fs18_c00454{font-size:73.508268px;}
.fs5_c00454{font-size:76.656477px;}
.fs11_c00454{font-size:77.706565px;}
.fs0_c00454{font-size:81.900000px;}
.y0_c00454{bottom:0.000000px;}
.yce_c00454{bottom:32.679780px;}
.ycd_c00454{bottom:32.952075px;}
.ycc_c00454{bottom:33.655672px;}
.ycb_c00454{bottom:34.036215px;}
.yca_c00454{bottom:34.347795px;}
.yc9_c00454{bottom:34.768635px;}
.yc8_c00454{bottom:35.948017px;}
.yc7_c00454{bottom:36.442545px;}
.yc6_c00454{bottom:46.777275px;}
.yc5_c00454{bottom:48.474900px;}
.yc4_c00454{bottom:49.211325px;}
.yc3_c00454{bottom:50.588317px;}
.yc2_c00454{bottom:50.932650px;}
.yc1_c00454{bottom:51.610237px;}
.yc0_c00454{bottom:52.232205px;}
.ybf_c00454{bottom:52.920757px;}
.ybe_c00454{bottom:66.378262px;}
.ybd_c00454{bottom:67.044157px;}
.ybc_c00454{bottom:68.088615px;}
.ybb_c00454{bottom:68.788725px;}
.yba_c00454{bottom:70.246747px;}
.yb9_c00454{bottom:70.429320px;}
.yb8_c00454{bottom:71.278327px;}
.yb7_c00454{bottom:82.741470px;}
.yb6_c00454{bottom:82.974982px;}
.yb5_c00454{bottom:83.602275px;}
.yb4_c00454{bottom:85.619047px;}
.yb3_c00454{bottom:86.741287px;}
.yb2_c00454{bottom:87.228682px;}
.yb1_c00454{bottom:100.263187px;}
.yb0_c00454{bottom:100.730167px;}
.yaf_c00454{bottom:100.952760px;}
.yae_c00454{bottom:101.769735px;}
.yad_c00454{bottom:102.043312px;}
.yac_c00454{bottom:102.433312px;}
.yab_c00454{bottom:102.887602px;}
.yaa_c00454{bottom:103.140465px;}
.ya9_c00454{bottom:117.040170px;}
.ya8_c00454{bottom:118.016175px;}
.ya7_c00454{bottom:118.891312px;}
.ya6_c00454{bottom:119.505742px;}
.ya5_c00454{bottom:120.423000px;}
.ya4_c00454{bottom:132.932193px;}
.ya3_c00454{bottom:133.407096px;}
.ya2_c00454{bottom:133.505354px;}
.ya1_c00454{bottom:134.390133px;}
.ya0_c00454{bottom:135.275242px;}
.y9f_c00454{bottom:136.083000px;}
.y9e_c00454{bottom:150.555955px;}
.y9d_c00454{bottom:150.831610px;}
.y9c_c00454{bottom:151.274317px;}
.y9b_c00454{bottom:151.800451px;}
.y9a_c00454{bottom:152.345131px;}
.y99_c00454{bottom:152.418769px;}
.y98_c00454{bottom:152.715213px;}
.y97_c00454{bottom:153.048262px;}
.y96_c00454{bottom:153.598969px;}
.y95_c00454{bottom:167.061621px;}
.y94_c00454{bottom:167.563003px;}
.y93_c00454{bottom:168.336894px;}
.y92_c00454{bottom:169.116691px;}
.y91_c00454{bottom:169.946494px;}
.y90_c00454{bottom:170.668059px;}
.y8f_c00454{bottom:171.150726px;}
.y8e_c00454{bottom:183.522682px;}
.y8d_c00454{bottom:184.106376px;}
.y8c_c00454{bottom:184.941294px;}
.y8b_c00454{bottom:185.774476px;}
.y8a_c00454{bottom:186.045724px;}
.y89_c00454{bottom:186.746578px;}
.y88_c00454{bottom:187.422475px;}
.y87_c00454{bottom:187.621231px;}
.y86_c00454{bottom:201.744715px;}
.y85_c00454{bottom:202.153242px;}
.y84_c00454{bottom:203.044201px;}
.y83_c00454{bottom:203.402059px;}
.y82_c00454{bottom:204.178210px;}
.y81_c00454{bottom:204.463350px;}
.y80_c00454{bottom:205.175497px;}
.y7f_c00454{bottom:217.949209px;}
.y7e_c00454{bottom:218.378004px;}
.y7d_c00454{bottom:218.559964px;}
.y7c_c00454{bottom:219.479011px;}
.y7b_c00454{bottom:219.702621px;}
.y7a_c00454{bottom:220.817610px;}
.y79_c00454{bottom:221.057892px;}
.y78_c00454{bottom:222.185847px;}
.y77_c00454{bottom:233.508744px;}
.y76_c00454{bottom:234.996649px;}
.y75_c00454{bottom:236.253634px;}
.y74_c00454{bottom:236.739916px;}
.y73_c00454{bottom:237.049656px;}
.y72_c00454{bottom:239.522560px;}
.y71_c00454{bottom:240.008374px;}
.y70_c00454{bottom:240.821137px;}
.y6f_c00454{bottom:253.661926px;}
.y6e_c00454{bottom:253.819773px;}
.y6d_c00454{bottom:255.077316px;}
.y6c_c00454{bottom:255.356189px;}
.y6b_c00454{bottom:256.124260px;}
.y6a_c00454{bottom:256.361010px;}
.y69_c00454{bottom:256.747844px;}
.y68_c00454{bottom:269.987713px;}
.y67_c00454{bottom:271.215094px;}
.y66_c00454{bottom:271.482774px;}
.y65_c00454{bottom:272.414262px;}
.y64_c00454{bottom:273.132468px;}
.y63_c00454{bottom:274.031396px;}
.y62_c00454{bottom:286.295226px;}
.y61_c00454{bottom:286.904616px;}
.y60_c00454{bottom:287.920962px;}
.y5f_c00454{bottom:289.962408px;}
.y5e_c00454{bottom:303.468186px;}
.y5d_c00454{bottom:304.478493px;}
.y5c_c00454{bottom:305.572117px;}
.y5b_c00454{bottom:306.911305px;}
.y5a_c00454{bottom:307.244553px;}
.y59_c00454{bottom:308.551850px;}
.y58_c00454{bottom:308.865584px;}
.y57_c00454{bottom:321.243791px;}
.y56_c00454{bottom:321.961489px;}
.y55_c00454{bottom:322.696385px;}
.y54_c00454{bottom:323.045758px;}
.y53_c00454{bottom:323.879598px;}
.y52_c00454{bottom:324.484939px;}
.y51_c00454{bottom:325.336112px;}
.y50_c00454{bottom:339.520899px;}
.y4f_c00454{bottom:339.521211px;}
.y4d_c00454{bottom:339.521325px;}
.y4e_c00454{bottom:339.521662px;}
.y4c_c00454{bottom:339.522025px;}
.y4b_c00454{bottom:339.522426px;}
.y49_c00454{bottom:356.008168px;}
.y4a_c00454{bottom:356.008698px;}
.y48_c00454{bottom:356.008870px;}
.y47_c00454{bottom:356.009142px;}
.y46_c00454{bottom:356.009653px;}
.y45_c00454{bottom:356.010214px;}
.y44_c00454{bottom:370.270030px;}
.y43_c00454{bottom:371.499762px;}
.y42_c00454{bottom:373.069357px;}
.y41_c00454{bottom:373.701574px;}
.y40_c00454{bottom:373.958583px;}
.y3f_c00454{bottom:374.482678px;}
.y3e_c00454{bottom:389.080335px;}
.y3d_c00454{bottom:390.079417px;}
.y3c_c00454{bottom:390.705192px;}
.y3b_c00454{bottom:391.256769px;}
.y3a_c00454{bottom:391.519356px;}
.y39_c00454{bottom:391.762657px;}
.y38_c00454{bottom:404.499961px;}
.y37_c00454{bottom:404.918997px;}
.y36_c00454{bottom:406.209616px;}
.y35_c00454{bottom:407.065291px;}
.y34_c00454{bottom:407.440557px;}
.y33_c00454{bottom:407.760765px;}
.y32_c00454{bottom:408.504180px;}
.y31_c00454{bottom:421.101169px;}
.y30_c00454{bottom:421.962325px;}
.y2f_c00454{bottom:422.416291px;}
.y2e_c00454{bottom:423.153709px;}
.y2d_c00454{bottom:423.588430px;}
.y2c_c00454{bottom:423.784782px;}
.y2b_c00454{bottom:424.434202px;}
.y2a_c00454{bottom:424.976556px;}
.y29_c00454{bottom:438.488122px;}
.y28_c00454{bottom:439.253716px;}
.y27_c00454{bottom:439.337340px;}
.y26_c00454{bottom:440.021145px;}
.y25_c00454{bottom:440.120272px;}
.y24_c00454{bottom:440.722795px;}
.y23_c00454{bottom:440.884620px;}
.y22_c00454{bottom:441.445525px;}
.y21_c00454{bottom:458.925582px;}
.y20_c00454{bottom:458.926014px;}
.y1f_c00454{bottom:458.926615px;}
.y1e_c00454{bottom:458.927076px;}
.y1d_c00454{bottom:458.927539px;}
.y1a_c00454{bottom:473.751474px;}
.y1c_c00454{bottom:473.751481px;}
.y19_c00454{bottom:473.751535px;}
.y1b_c00454{bottom:473.751712px;}
.y18_c00454{bottom:489.803916px;}
.y17_c00454{bottom:491.050219px;}
.y16_c00454{bottom:491.275074px;}
.y15_c00454{bottom:492.106651px;}
.y14_c00454{bottom:492.481500px;}
.y13_c00454{bottom:505.181505px;}
.y12_c00454{bottom:505.684445px;}
.y11_c00454{bottom:507.419524px;}
.y10_c00454{bottom:508.332123px;}
.yf_c00454{bottom:508.699574px;}
.ye_c00454{bottom:509.819566px;}
.yd_c00454{bottom:510.028500px;}
.yc_c00454{bottom:522.946500px;}
.yb_c00454{bottom:523.047000px;}
.ya_c00454{bottom:523.597500px;}
.y9_c00454{bottom:523.956000px;}
.y8_c00454{bottom:524.443500px;}
.y7_c00454{bottom:524.901000px;}
.y6_c00454{bottom:525.313500px;}
.y5_c00454{bottom:525.762000px;}
.y4_c00454{bottom:525.963000px;}
.y3_c00454{bottom:540.457500px;}
.y2_c00454{bottom:558.505500px;}
.y1_c00454{bottom:572.662500px;}
.h16_c00454{height:37.804252px;}
.hc_c00454{height:58.804968px;}
.h10_c00454{height:59.855057px;}
.ha_c00454{height:60.905146px;}
.h14_c00454{height:63.005323px;}
.h18_c00454{height:63.007087px;}
.h6_c00454{height:63.011370px;}
.h5_c00454{height:64.050000px;}
.hb_c00454{height:64.055412px;}
.he_c00454{height:65.105501px;}
.hf_c00454{height:66.155589px;}
.h8_c00454{height:67.205678px;}
.h19_c00454{height:67.207560px;}
.h3_c00454{height:68.250000px;}
.h9_c00454{height:68.255767px;}
.h17_c00454{height:68.257678px;}
.h11_c00454{height:69.305856px;}
.h4_c00454{height:71.400000px;}
.hd_c00454{height:71.406033px;}
.h15_c00454{height:72.454383px;}
.h12_c00454{height:73.506210px;}
.h1a_c00454{height:73.508268px;}
.h7_c00454{height:76.656477px;}
.h13_c00454{height:77.706565px;}
.h2_c00454{height:81.900000px;}
.h0_c00454{height:617.700000px;}
.h1_c00454{height:618.000000px;}
.w0_c00454{width:359.100000px;}
.w1_c00454{width:359.250000px;}
.x0_c00454{left:0.000000px;}
.x17_c00454{left:4.711500px;}
.x61_c00454{left:10.126500px;}
.x69_c00454{left:11.578500px;}
.x65_c00454{left:12.814102px;}
.x3d_c00454{left:14.377314px;}
.x3_c00454{left:15.660000px;}
.x58_c00454{left:27.058882px;}
.x1c_c00454{left:30.138000px;}
.xa_c00454{left:34.830000px;}
.x67_c00454{left:37.652257px;}
.x4_c00454{left:39.690000px;}
.x5c_c00454{left:41.914122px;}
.x6c_c00454{left:43.041450px;}
.x71_c00454{left:44.109982px;}
.x36_c00454{left:45.709094px;}
.xb_c00454{left:54.000000px;}
.x55_c00454{left:55.948758px;}
.x1d_c00454{left:58.972500px;}
.x37_c00454{left:60.862814px;}
.x26_c00454{left:62.232777px;}
.x4c_c00454{left:63.697260px;}
.x5_c00454{left:66.690000px;}
.x6a_c00454{left:68.947935px;}
.x6d_c00454{left:71.302980px;}
.x21_c00454{left:72.903777px;}
.x11_c00454{left:74.650500px;}
.x27_c00454{left:75.719453px;}
.x63_c00454{left:77.155500px;}
.x2f_c00454{left:81.652359px;}
.x5d_c00454{left:84.378418px;}
.x6_c00454{left:87.210000px;}
.x18_c00454{left:93.994500px;}
.x34_c00454{left:96.542352px;}
.x38_c00454{left:98.069883px;}
.x2c_c00454{left:100.542990px;}
.x6e_c00454{left:102.072240px;}
.x1_c00454{left:103.950000px;}
.x30_c00454{left:105.094943px;}
.xc_c00454{left:112.320000px;}
.x2d_c00454{left:114.608315px;}
.x42_c00454{left:117.217209px;}
.x56_c00454{left:118.314002px;}
.x7_c00454{left:120.960000px;}
.x1e_c00454{left:122.940000px;}
.x28_c00454{left:125.991116px;}
.x49_c00454{left:130.058276px;}
.x5e_c00454{left:133.206883px;}
.x29_c00454{left:134.308733px;}
.x59_c00454{left:136.979035px;}
.x1f_c00454{left:140.236500px;}
.x19_c00454{left:142.026000px;}
.x2_c00454{left:144.990000px;}
.x3b_c00454{left:147.157131px;}
.x6b_c00454{left:149.945790px;}
.x12_c00454{left:153.757500px;}
.x22_c00454{left:156.340375px;}
.x3e_c00454{left:157.552737px;}
.x31_c00454{left:158.567856px;}
.x46_c00454{left:159.927093px;}
.x39_c00454{left:163.358166px;}
.xd_c00454{left:164.700000px;}
.x23_c00454{left:166.331373px;}
.x4d_c00454{left:170.767184px;}
.x8_c00454{left:173.070000px;}
.x64_c00454{left:176.460000px;}
.x3f_c00454{left:179.349879px;}
.xe_c00454{left:184.140000px;}
.x43_c00454{left:187.687710px;}
.x4e_c00454{left:189.478025px;}
.x2a_c00454{left:191.294474px;}
.x5a_c00454{left:192.530092px;}
.x72_c00454{left:196.932982px;}
.x13_c00454{left:198.091500px;}
.x3c_c00454{left:201.431796px;}
.x51_c00454{left:207.734076px;}
.x24_c00454{left:211.154439px;}
.x6f_c00454{left:213.810517px;}
.x57_c00454{left:215.796932px;}
.x35_c00454{left:221.531352px;}
.x40_c00454{left:225.263085px;}
.x14_c00454{left:230.716500px;}
.x66_c00454{left:231.813720px;}
.x1a_c00454{left:233.346000px;}
.x20_c00454{left:236.106000px;}
.x4f_c00454{left:237.814854px;}
.x32_c00454{left:239.266217px;}
.xf_c00454{left:241.920000px;}
.x5f_c00454{left:244.224976px;}
.x44_c00454{left:245.269725px;}
.x68_c00454{left:246.829830px;}
.x5b_c00454{left:248.214649px;}
.x3a_c00454{left:251.655584px;}
.x9_c00454{left:253.800000px;}
.x4a_c00454{left:258.053433px;}
.x1b_c00454{left:259.816500px;}
.x2b_c00454{left:262.042890px;}
.x33_c00454{left:265.498703px;}
.x60_c00454{left:267.160269px;}
.x41_c00454{left:270.084330px;}
.x4b_c00454{left:271.234109px;}
.x52_c00454{left:273.352218px;}
.x47_c00454{left:276.097592px;}
.x25_c00454{left:278.929886px;}
.x15_c00454{left:280.720500px;}
.x48_c00454{left:283.349355px;}
.x53_c00454{left:286.310543px;}
.x16_c00454{left:289.840500px;}
.x70_c00454{left:290.977417px;}
.x2e_c00454{left:292.202994px;}
.x50_c00454{left:295.028682px;}
.x62_c00454{left:296.563500px;}
.x45_c00454{left:298.404572px;}
.x10_c00454{left:305.640000px;}
.x54_c00454{left:316.986653px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.fs14_c00454{font-size:33.603780pt;}
.fsa_c00454{font-size:52.271083pt;}
.fse_c00454{font-size:53.204495pt;}
.fs8_c00454{font-size:54.137907pt;}
.fs12_c00454{font-size:56.004732pt;}
.fs16_c00454{font-size:56.006300pt;}
.fs4_c00454{font-size:56.010107pt;}
.fs3_c00454{font-size:56.933333pt;}
.fs9_c00454{font-size:56.938144pt;}
.fsc_c00454{font-size:57.871556pt;}
.fsd_c00454{font-size:58.804968pt;}
.fs6_c00454{font-size:59.738381pt;}
.fs17_c00454{font-size:59.740053pt;}
.fs1_c00454{font-size:60.666667pt;}
.fs7_c00454{font-size:60.671793pt;}
.fs15_c00454{font-size:60.673491pt;}
.fsf_c00454{font-size:61.605205pt;}
.fs2_c00454{font-size:63.466667pt;}
.fsb_c00454{font-size:63.472029pt;}
.fs13_c00454{font-size:64.403896pt;}
.fs10_c00454{font-size:65.338854pt;}
.fs18_c00454{font-size:65.340683pt;}
.fs5_c00454{font-size:68.139090pt;}
.fs11_c00454{font-size:69.072503pt;}
.fs0_c00454{font-size:72.800000pt;}
.y0_c00454{bottom:0.000000pt;}
.yce_c00454{bottom:29.048693pt;}
.ycd_c00454{bottom:29.290733pt;}
.ycc_c00454{bottom:29.916153pt;}
.ycb_c00454{bottom:30.254413pt;}
.yca_c00454{bottom:30.531373pt;}
.yc9_c00454{bottom:30.905453pt;}
.yc8_c00454{bottom:31.953793pt;}
.yc7_c00454{bottom:32.393373pt;}
.yc6_c00454{bottom:41.579800pt;}
.yc5_c00454{bottom:43.088800pt;}
.yc4_c00454{bottom:43.743400pt;}
.yc3_c00454{bottom:44.967393pt;}
.yc2_c00454{bottom:45.273467pt;}
.yc1_c00454{bottom:45.875767pt;}
.yc0_c00454{bottom:46.428627pt;}
.ybf_c00454{bottom:47.040673pt;}
.ybe_c00454{bottom:59.002900pt;}
.ybd_c00454{bottom:59.594807pt;}
.ybc_c00454{bottom:60.523213pt;}
.ybb_c00454{bottom:61.145533pt;}
.yba_c00454{bottom:62.441553pt;}
.yb9_c00454{bottom:62.603840pt;}
.yb8_c00454{bottom:63.358513pt;}
.yb7_c00454{bottom:73.547973pt;}
.yb6_c00454{bottom:73.755540pt;}
.yb5_c00454{bottom:74.313133pt;}
.yb4_c00454{bottom:76.105820pt;}
.yb3_c00454{bottom:77.103367pt;}
.yb2_c00454{bottom:77.536607pt;}
.yb1_c00454{bottom:89.122833pt;}
.yb0_c00454{bottom:89.537927pt;}
.yaf_c00454{bottom:89.735787pt;}
.yae_c00454{bottom:90.461987pt;}
.yad_c00454{bottom:90.705167pt;}
.yac_c00454{bottom:91.051833pt;}
.yab_c00454{bottom:91.455647pt;}
.yaa_c00454{bottom:91.680413pt;}
.ya9_c00454{bottom:104.035707pt;}
.ya8_c00454{bottom:104.903267pt;}
.ya7_c00454{bottom:105.681167pt;}
.ya6_c00454{bottom:106.227327pt;}
.ya5_c00454{bottom:107.042667pt;}
.ya4_c00454{bottom:118.161949pt;}
.ya3_c00454{bottom:118.584085pt;}
.ya2_c00454{bottom:118.671425pt;}
.ya1_c00454{bottom:119.457896pt;}
.ya0_c00454{bottom:120.244660pt;}
.y9f_c00454{bottom:120.962667pt;}
.y9e_c00454{bottom:133.827516pt;}
.y9d_c00454{bottom:134.072543pt;}
.y9c_c00454{bottom:134.466060pt;}
.y9b_c00454{bottom:134.933735pt;}
.y9a_c00454{bottom:135.417895pt;}
.y99_c00454{bottom:135.483351pt;}
.y98_c00454{bottom:135.746856pt;}
.y97_c00454{bottom:136.042900pt;}
.y96_c00454{bottom:136.532417pt;}
.y95_c00454{bottom:148.499219pt;}
.y94_c00454{bottom:148.944892pt;}
.y93_c00454{bottom:149.632795pt;}
.y92_c00454{bottom:150.325948pt;}
.y91_c00454{bottom:151.063551pt;}
.y90_c00454{bottom:151.704941pt;}
.y8f_c00454{bottom:152.133979pt;}
.y8e_c00454{bottom:163.131273pt;}
.y8d_c00454{bottom:163.650112pt;}
.y8c_c00454{bottom:164.392261pt;}
.y8b_c00454{bottom:165.132868pt;}
.y8a_c00454{bottom:165.373977pt;}
.y89_c00454{bottom:165.996959pt;}
.y88_c00454{bottom:166.597756pt;}
.y87_c00454{bottom:166.774428pt;}
.y86_c00454{bottom:179.328636pt;}
.y85_c00454{bottom:179.691771pt;}
.y84_c00454{bottom:180.483735pt;}
.y83_c00454{bottom:180.801831pt;}
.y82_c00454{bottom:181.491743pt;}
.y81_c00454{bottom:181.745200pt;}
.y80_c00454{bottom:182.378220pt;}
.y7f_c00454{bottom:193.732631pt;}
.y7e_c00454{bottom:194.113781pt;}
.y7d_c00454{bottom:194.275524pt;}
.y7c_c00454{bottom:195.092455pt;}
.y7b_c00454{bottom:195.291219pt;}
.y7a_c00454{bottom:196.282320pt;}
.y79_c00454{bottom:196.495904pt;}
.y78_c00454{bottom:197.498531pt;}
.y77_c00454{bottom:207.563328pt;}
.y76_c00454{bottom:208.885911pt;}
.y75_c00454{bottom:210.003231pt;}
.y74_c00454{bottom:210.435481pt;}
.y73_c00454{bottom:210.710805pt;}
.y72_c00454{bottom:212.908943pt;}
.y71_c00454{bottom:213.340777pt;}
.y70_c00454{bottom:214.063233pt;}
.y6f_c00454{bottom:225.477268pt;}
.y6e_c00454{bottom:225.617576pt;}
.y6d_c00454{bottom:226.735392pt;}
.y6c_c00454{bottom:226.983279pt;}
.y6b_c00454{bottom:227.666009pt;}
.y6a_c00454{bottom:227.876453pt;}
.y69_c00454{bottom:228.220305pt;}
.y68_c00454{bottom:239.989079pt;}
.y67_c00454{bottom:241.080084pt;}
.y66_c00454{bottom:241.318021pt;}
.y65_c00454{bottom:242.146011pt;}
.y64_c00454{bottom:242.784416pt;}
.y63_c00454{bottom:243.583463pt;}
.y62_c00454{bottom:254.484645pt;}
.y61_c00454{bottom:255.026325pt;}
.y60_c00454{bottom:255.929744pt;}
.y5f_c00454{bottom:257.744363pt;}
.y5e_c00454{bottom:269.749499pt;}
.y5d_c00454{bottom:270.647549pt;}
.y5c_c00454{bottom:271.619660pt;}
.y5b_c00454{bottom:272.810049pt;}
.y5a_c00454{bottom:273.106269pt;}
.y59_c00454{bottom:274.268311pt;}
.y58_c00454{bottom:274.547185pt;}
.y57_c00454{bottom:285.550036pt;}
.y56_c00454{bottom:286.187991pt;}
.y55_c00454{bottom:286.841231pt;}
.y54_c00454{bottom:287.151785pt;}
.y53_c00454{bottom:287.892976pt;}
.y52_c00454{bottom:288.431057pt;}
.y51_c00454{bottom:289.187655pt;}
.y50_c00454{bottom:301.796355pt;}
.y4f_c00454{bottom:301.796632pt;}
.y4d_c00454{bottom:301.796733pt;}
.y4e_c00454{bottom:301.797033pt;}
.y4c_c00454{bottom:301.797356pt;}
.y4b_c00454{bottom:301.797712pt;}
.y49_c00454{bottom:316.451705pt;}
.y4a_c00454{bottom:316.452176pt;}
.y48_c00454{bottom:316.452329pt;}
.y47_c00454{bottom:316.452571pt;}
.y46_c00454{bottom:316.453025pt;}
.y45_c00454{bottom:316.453524pt;}
.y44_c00454{bottom:329.128916pt;}
.y43_c00454{bottom:330.222011pt;}
.y42_c00454{bottom:331.617207pt;}
.y41_c00454{bottom:332.179177pt;}
.y40_c00454{bottom:332.407629pt;}
.y3f_c00454{bottom:332.873492pt;}
.y3e_c00454{bottom:345.849187pt;}
.y3d_c00454{bottom:346.737260pt;}
.y3c_c00454{bottom:347.293504pt;}
.y3b_c00454{bottom:347.783795pt;}
.y3a_c00454{bottom:348.017205pt;}
.y39_c00454{bottom:348.233473pt;}
.y38_c00454{bottom:359.555521pt;}
.y37_c00454{bottom:359.927997pt;}
.y36_c00454{bottom:361.075215pt;}
.y35_c00454{bottom:361.835815pt;}
.y34_c00454{bottom:362.169384pt;}
.y33_c00454{bottom:362.454013pt;}
.y32_c00454{bottom:363.114827pt;}
.y31_c00454{bottom:374.312151pt;}
.y30_c00454{bottom:375.077623pt;}
.y2f_c00454{bottom:375.481148pt;}
.y2e_c00454{bottom:376.136631pt;}
.y2d_c00454{bottom:376.523049pt;}
.y2c_c00454{bottom:376.697584pt;}
.y2b_c00454{bottom:377.274847pt;}
.y2a_c00454{bottom:377.756939pt;}
.y29_c00454{bottom:389.767220pt;}
.y28_c00454{bottom:390.447748pt;}
.y27_c00454{bottom:390.522080pt;}
.y26_c00454{bottom:391.129907pt;}
.y25_c00454{bottom:391.218020pt;}
.y24_c00454{bottom:391.753596pt;}
.y23_c00454{bottom:391.897440pt;}
.y22_c00454{bottom:392.396023pt;}
.y21_c00454{bottom:407.933851pt;}
.y20_c00454{bottom:407.934235pt;}
.y1f_c00454{bottom:407.934769pt;}
.y1e_c00454{bottom:407.935179pt;}
.y1d_c00454{bottom:407.935591pt;}
.y1a_c00454{bottom:421.112421pt;}
.y1c_c00454{bottom:421.112428pt;}
.y19_c00454{bottom:421.112476pt;}
.y1b_c00454{bottom:421.112633pt;}
.y18_c00454{bottom:435.381259pt;}
.y17_c00454{bottom:436.489084pt;}
.y16_c00454{bottom:436.688955pt;}
.y15_c00454{bottom:437.428135pt;}
.y14_c00454{bottom:437.761333pt;}
.y13_c00454{bottom:449.050227pt;}
.y12_c00454{bottom:449.497284pt;}
.y11_c00454{bottom:451.039577pt;}
.y10_c00454{bottom:451.850776pt;}
.yf_c00454{bottom:452.177399pt;}
.ye_c00454{bottom:453.172948pt;}
.yd_c00454{bottom:453.358667pt;}
.yc_c00454{bottom:464.841333pt;}
.yb_c00454{bottom:464.930667pt;}
.ya_c00454{bottom:465.420000pt;}
.y9_c00454{bottom:465.738667pt;}
.y8_c00454{bottom:466.172000pt;}
.y7_c00454{bottom:466.578667pt;}
.y6_c00454{bottom:466.945333pt;}
.y5_c00454{bottom:467.344000pt;}
.y4_c00454{bottom:467.522667pt;}
.y3_c00454{bottom:480.406667pt;}
.y2_c00454{bottom:496.449333pt;}
.y1_c00454{bottom:509.033333pt;}
.h16_c00454{height:33.603780pt;}
.hc_c00454{height:52.271083pt;}
.h10_c00454{height:53.204495pt;}
.ha_c00454{height:54.137907pt;}
.h14_c00454{height:56.004732pt;}
.h18_c00454{height:56.006300pt;}
.h6_c00454{height:56.010107pt;}
.h5_c00454{height:56.933333pt;}
.hb_c00454{height:56.938144pt;}
.he_c00454{height:57.871556pt;}
.hf_c00454{height:58.804968pt;}
.h8_c00454{height:59.738381pt;}
.h19_c00454{height:59.740053pt;}
.h3_c00454{height:60.666667pt;}
.h9_c00454{height:60.671793pt;}
.h17_c00454{height:60.673491pt;}
.h11_c00454{height:61.605205pt;}
.h4_c00454{height:63.466667pt;}
.hd_c00454{height:63.472029pt;}
.h15_c00454{height:64.403896pt;}
.h12_c00454{height:65.338854pt;}
.h1a_c00454{height:65.340683pt;}
.h7_c00454{height:68.139090pt;}
.h13_c00454{height:69.072503pt;}
.h2_c00454{height:72.800000pt;}
.h0_c00454{height:549.066667pt;}
.h1_c00454{height:549.333333pt;}
.w0_c00454{width:319.200000pt;}
.w1_c00454{width:319.333333pt;}
.x0_c00454{left:0.000000pt;}
.x17_c00454{left:4.188000pt;}
.x61_c00454{left:9.001333pt;}
.x69_c00454{left:10.292000pt;}
.x65_c00454{left:11.390313pt;}
.x3d_c00454{left:12.779835pt;}
.x3_c00454{left:13.920000pt;}
.x58_c00454{left:24.052340pt;}
.x1c_c00454{left:26.789333pt;}
.xa_c00454{left:30.960000pt;}
.x67_c00454{left:33.468673pt;}
.x4_c00454{left:35.280000pt;}
.x5c_c00454{left:37.256997pt;}
.x6c_c00454{left:38.259067pt;}
.x71_c00454{left:39.208873pt;}
.x36_c00454{left:40.630305pt;}
.xb_c00454{left:48.000000pt;}
.x55_c00454{left:49.732229pt;}
.x1d_c00454{left:52.420000pt;}
.x37_c00454{left:54.100279pt;}
.x26_c00454{left:55.318024pt;}
.x4c_c00454{left:56.619787pt;}
.x5_c00454{left:59.280000pt;}
.x6a_c00454{left:61.287053pt;}
.x6d_c00454{left:63.380427pt;}
.x21_c00454{left:64.803357pt;}
.x11_c00454{left:66.356000pt;}
.x27_c00454{left:67.306180pt;}
.x63_c00454{left:68.582667pt;}
.x2f_c00454{left:72.579875pt;}
.x5d_c00454{left:75.003039pt;}
.x6_c00454{left:77.520000pt;}
.x18_c00454{left:83.550667pt;}
.x34_c00454{left:85.815424pt;}
.x38_c00454{left:87.173229pt;}
.x2c_c00454{left:89.371547pt;}
.x6e_c00454{left:90.730880pt;}
.x1_c00454{left:92.400000pt;}
.x30_c00454{left:93.417727pt;}
.xc_c00454{left:99.840000pt;}
.x2d_c00454{left:101.874057pt;}
.x42_c00454{left:104.193075pt;}
.x56_c00454{left:105.168001pt;}
.x7_c00454{left:107.520000pt;}
.x1e_c00454{left:109.280000pt;}
.x28_c00454{left:111.992103pt;}
.x49_c00454{left:115.607356pt;}
.x5e_c00454{left:118.406119pt;}
.x29_c00454{left:119.385540pt;}
.x59_c00454{left:121.759143pt;}
.x1f_c00454{left:124.654667pt;}
.x19_c00454{left:126.245333pt;}
.x2_c00454{left:128.880000pt;}
.x3b_c00454{left:130.806339pt;}
.x6b_c00454{left:133.285147pt;}
.x12_c00454{left:136.673333pt;}
.x22_c00454{left:138.969223pt;}
.x3e_c00454{left:140.046877pt;}
.x31_c00454{left:140.949205pt;}
.x46_c00454{left:142.157416pt;}
.x39_c00454{left:145.207259pt;}
.xd_c00454{left:146.400000pt;}
.x23_c00454{left:147.850109pt;}
.x4d_c00454{left:151.793052pt;}
.x8_c00454{left:153.840000pt;}
.x64_c00454{left:156.853333pt;}
.x3f_c00454{left:159.422115pt;}
.xe_c00454{left:163.680000pt;}
.x43_c00454{left:166.833520pt;}
.x4e_c00454{left:168.424911pt;}
.x2a_c00454{left:170.039532pt;}
.x5a_c00454{left:171.137860pt;}
.x72_c00454{left:175.051540pt;}
.x13_c00454{left:176.081333pt;}
.x3c_c00454{left:179.050485pt;}
.x51_c00454{left:184.652512pt;}
.x24_c00454{left:187.692835pt;}
.x6f_c00454{left:190.053793pt;}
.x57_c00454{left:191.819495pt;}
.x35_c00454{left:196.916757pt;}
.x40_c00454{left:200.233853pt;}
.x14_c00454{left:205.081333pt;}
.x66_c00454{left:206.056640pt;}
.x1a_c00454{left:207.418667pt;}
.x20_c00454{left:209.872000pt;}
.x4f_c00454{left:211.390981pt;}
.x32_c00454{left:212.681081pt;}
.xf_c00454{left:215.040000pt;}
.x5f_c00454{left:217.088868pt;}
.x44_c00454{left:218.017533pt;}
.x68_c00454{left:219.404293pt;}
.x5b_c00454{left:220.635244pt;}
.x3a_c00454{left:223.693852pt;}
.x9_c00454{left:225.600000pt;}
.x4a_c00454{left:229.380829pt;}
.x1b_c00454{left:230.948000pt;}
.x2b_c00454{left:232.927013pt;}
.x33_c00454{left:235.998847pt;}
.x60_c00454{left:237.475795pt;}
.x41_c00454{left:240.074960pt;}
.x4b_c00454{left:241.096985pt;}
.x52_c00454{left:242.979749pt;}
.x47_c00454{left:245.420081pt;}
.x25_c00454{left:247.937676pt;}
.x15_c00454{left:249.529333pt;}
.x48_c00454{left:251.866093pt;}
.x53_c00454{left:254.498260pt;}
.x16_c00454{left:257.636000pt;}
.x70_c00454{left:258.646593pt;}
.x2e_c00454{left:259.735995pt;}
.x50_c00454{left:262.247717pt;}
.x62_c00454{left:263.612000pt;}
.x45_c00454{left:265.248508pt;}
.x10_c00454{left:271.680000pt;}
.x54_c00454{left:281.765913pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00455 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00455 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00455 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00455 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);}
.me9_c00455{transform:matrix(0.115176,-0.002073,0.004499,0.249960,0,0);-ms-transform:matrix(0.115176,-0.002073,0.004499,0.249960,0,0);-webkit-transform:matrix(0.115176,-0.002073,0.004499,0.249960,0,0);}
.med_c00455{transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);}
.me7_c00455{transform:matrix(0.120096,-0.002162,0.004499,0.249960,0,0);-ms-transform:matrix(0.120096,-0.002162,0.004499,0.249960,0,0);-webkit-transform:matrix(0.120096,-0.002162,0.004499,0.249960,0,0);}
.me8_c00455{transform:matrix(0.120805,-0.002174,0.004499,0.249960,0,0);-ms-transform:matrix(0.120805,-0.002174,0.004499,0.249960,0,0);-webkit-transform:matrix(0.120805,-0.002174,0.004499,0.249960,0,0);}
.m8e_c00455{transform:matrix(0.127335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127335,0.000000,0.000000,0.250000,0,0);}
.meb_c00455{transform:matrix(0.131129,-0.002360,0.004499,0.249960,0,0);-ms-transform:matrix(0.131129,-0.002360,0.004499,0.249960,0,0);-webkit-transform:matrix(0.131129,-0.002360,0.004499,0.249960,0,0);}
.me5_c00455{transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);}
.me6_c00455{transform:matrix(0.134628,-0.002423,0.004499,0.249960,0,0);-ms-transform:matrix(0.134628,-0.002423,0.004499,0.249960,0,0);-webkit-transform:matrix(0.134628,-0.002423,0.004499,0.249960,0,0);}
.mea_c00455{transform:matrix(0.138398,-0.002491,0.004499,0.249960,0,0);-ms-transform:matrix(0.138398,-0.002491,0.004499,0.249960,0,0);-webkit-transform:matrix(0.138398,-0.002491,0.004499,0.249960,0,0);}
.m68_c00455{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m61_c00455{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.mcf_c00455{transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149405,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);}
.mc0_c00455{transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155205,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156880,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157030,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157870,0.000000,0.000000,0.250000,0,0);}
.m6e_c00455{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.mb8_c00455{transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159695,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160320,0.000000,0.000000,0.250000,0,0);}
.mee_c00455{transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160890,0.000000,0.000000,0.250000,0,0);}
.mcb_c00455{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161595,0.000000,0.000000,0.250000,0,0);}
.mca_c00455{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m69_c00455{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00455{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.md0_c00455{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.mc3_c00455{transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);}
.mc4_c00455{transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.mc8_c00455{transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mc1_c00455{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m66_c00455{transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170465,0.000000,0.000000,0.250000,0,0);}
.maa_c00455{transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);}
.mbb_c00455{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.mbd_c00455{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00455{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00455{transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173340,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173840,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.m71_c00455{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174545,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.m5c_c00455{transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);}
.mce_c00455{transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177220,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177955,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178035,0.000000,0.000000,0.250000,0,0);}
.m62_c00455{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00455{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.mb4_c00455{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.md5_c00455{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.mba_c00455{transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);}
.md4_c00455{transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181285,0.000000,0.000000,0.250000,0,0);}
.m73_c00455{transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181520,0.000000,0.000000,0.250000,0,0);}
.m70_c00455{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.mb2_c00455{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.mc6_c00455{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.mc9_c00455{transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00455{transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184985,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m7e_c00455{transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186905,0.000000,0.000000,0.250000,0,0);}
.ma1_c00455{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m96_c00455{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.md3_c00455{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.mda_c00455{transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.ma7_c00455{transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190045,0.000000,0.000000,0.250000,0,0);}
.m6a_c00455{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.mde_c00455{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.m5d_c00455{transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193690,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);}
.m76_c00455{transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193995,0.000000,0.000000,0.250000,0,0);}
.mcd_c00455{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m8a_c00455{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.mb6_c00455{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195185,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196335,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);}
.m91_c00455{transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200505,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.m6d_c00455{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201570,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.ma2_c00455{transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201880,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m74_c00455{transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202430,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.m75_c00455{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203630,0.000000,0.000000,0.250000,0,0);}
.m98_c00455{transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203680,0.000000,0.000000,0.250000,0,0);}
.mb5_c00455{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m54_c00455{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.me4_c00455{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m64_c00455{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.ma4_c00455{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00455{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mdd_c00455{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.md2_c00455{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m80_c00455{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.mb1_c00455{transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.me3_c00455{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.mc5_c00455{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m92_c00455{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m50_c00455{transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);}
.m72_c00455{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.m9f_c00455{transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mdb_c00455{transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211105,0.000000,0.000000,0.250000,0,0);}
.ma9_c00455{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.mae_c00455{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.m78_c00455{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.ma8_c00455{transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);}
.m57_c00455{transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212795,0.000000,0.000000,0.250000,0,0);}
.mab_c00455{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213705,0.000000,0.000000,0.250000,0,0);}
.m7a_c00455{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m56_c00455{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215765,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215780,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216155,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217585,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.md1_c00455{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.ma6_c00455{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.mb3_c00455{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);}
.m88_c00455{transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);}
.mac_c00455{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.mbc_c00455{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.md6_c00455{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.m9a_c00455{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.md9_c00455{transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222660,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.223670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223670,0.000000,0.000000,0.250000,0,0);}
.ma0_c00455{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);}
.m55_c00455{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.mc2_c00455{transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);}
.mb0_c00455{transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);}
.m82_c00455{transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);}
.m77_c00455{transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00455{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230865,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232330,0.000000,0.000000,0.250000,0,0);}
.mdc_c00455{transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232470,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.mbf_c00455{transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233520,0.000000,0.000000,0.250000,0,0);}
.m94_c00455{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m58_c00455{transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234365,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.ma5_c00455{transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);}
.m8f_c00455{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);}
.m9d_c00455{transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);}
.m84_c00455{transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);}
.mad_c00455{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243690,0.000000,0.000000,0.250000,0,0);}
.maf_c00455{transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);}
.me2_c00455{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.260230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260230,0.000000,0.000000,0.250000,0,0);}
.mc7_c00455{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);}
.md8_c00455{transform:matrix(0.273645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273645,0.000000,0.000000,0.250000,0,0);}
.md7_c00455{transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);}
.m7c_c00455{transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);}
.mbe_c00455{transform:matrix(0.289455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289455,0.000000,0.000000,0.250000,0,0);}
.me0_c00455{transform:matrix(0.293455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293455,0.000000,0.000000,0.250000,0,0);}
.m8d_c00455{transform:matrix(0.301835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301835,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);}
.me1_c00455{transform:matrix(0.331580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331580,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335870,0.000000,0.000000,0.250000,0,0);}
.m7d_c00455{transform:matrix(0.360365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360365,0.000000,0.000000,0.250000,0,0);}
.mef_c00455{transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);}
.mf0_c00455{transform:matrix(0.787110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787110,0.000000,0.000000,0.250000,0,0);}
.mec_c00455{transform:matrix(4.397300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.397300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.397300,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
.fc0_c00455{color:transparent;}
.fs10_c00455{font-size:22.050000px;}
.fsd_c00455{font-size:55.650000px;}
.fsb_c00455{font-size:57.750000px;}
.fsc_c00455{font-size:58.800000px;}
.fs2_c00455{font-size:59.850000px;}
.fs5_c00455{font-size:60.900000px;}
.fs4_c00455{font-size:61.950000px;}
.fs1_c00455{font-size:63.000000px;}
.fs7_c00455{font-size:64.050000px;}
.fs3_c00455{font-size:65.100000px;}
.fsa_c00455{font-size:66.150000px;}
.fs6_c00455{font-size:67.200000px;}
.fs8_c00455{font-size:68.250000px;}
.fse_c00455{font-size:69.300000px;}
.fs9_c00455{font-size:71.400000px;}
.fs0_c00455{font-size:91.350000px;}
.fsf_c00455{font-size:107.117349px;}
.y0_c00455{bottom:0.000000px;}
.y27_c00455{bottom:34.564500px;}
.y28_c00455{bottom:36.410814px;}
.y29_c00455{bottom:37.358271px;}
.y2a_c00455{bottom:37.576404px;}
.y2b_c00455{bottom:37.735299px;}
.y2c_c00455{bottom:38.910177px;}
.y26_c00455{bottom:52.257000px;}
.y25_c00455{bottom:69.199500px;}
.y24_c00455{bottom:85.024500px;}
.y2d_c00455{bottom:93.690000px;}
.y23_c00455{bottom:102.627000px;}
.y22_c00455{bottom:119.464500px;}
.y21_c00455{bottom:136.204500px;}
.y20_c00455{bottom:153.655500px;}
.y1f_c00455{bottom:170.841000px;}
.y1e_c00455{bottom:187.090500px;}
.y1d_c00455{bottom:188.559000px;}
.y1c_c00455{bottom:189.049500px;}
.y1b_c00455{bottom:189.963000px;}
.y1a_c00455{bottom:191.032500px;}
.y19_c00455{bottom:191.421000px;}
.y18_c00455{bottom:191.973000px;}
.y17_c00455{bottom:205.008000px;}
.y16_c00455{bottom:221.746500px;}
.y15_c00455{bottom:238.450500px;}
.y14_c00455{bottom:254.815500px;}
.y13_c00455{bottom:272.137500px;}
.y12_c00455{bottom:288.879000px;}
.y11_c00455{bottom:305.641500px;}
.y10_c00455{bottom:322.651500px;}
.yf_c00455{bottom:339.366000px;}
.ye_c00455{bottom:356.080500px;}
.yd_c00455{bottom:373.680000px;}
.yc_c00455{bottom:390.123000px;}
.yb_c00455{bottom:407.259000px;}
.ya_c00455{bottom:424.663500px;}
.y9_c00455{bottom:441.358500px;}
.y8_c00455{bottom:458.790000px;}
.y7_c00455{bottom:475.200000px;}
.y6_c00455{bottom:492.724500px;}
.y5_c00455{bottom:508.801500px;}
.y4_c00455{bottom:525.706500px;}
.y3_c00455{bottom:542.671500px;}
.y2_c00455{bottom:559.912500px;}
.y1_c00455{bottom:569.851500px;}
.h12_c00455{height:22.050000px;}
.hf_c00455{height:55.650000px;}
.hd_c00455{height:57.750000px;}
.he_c00455{height:58.800000px;}
.h4_c00455{height:59.850000px;}
.h7_c00455{height:60.900000px;}
.h6_c00455{height:61.950000px;}
.h3_c00455{height:63.000000px;}
.h9_c00455{height:64.050000px;}
.h5_c00455{height:65.100000px;}
.hc_c00455{height:66.150000px;}
.h8_c00455{height:67.200000px;}
.ha_c00455{height:68.250000px;}
.h10_c00455{height:69.300000px;}
.hb_c00455{height:71.400000px;}
.h2_c00455{height:91.350000px;}
.h11_c00455{height:107.117349px;}
.h0_c00455{height:617.700000px;}
.h1_c00455{height:618.000000px;}
.w0_c00455{width:359.100000px;}
.w1_c00455{width:359.250000px;}
.x0_c00455{left:0.000000px;}
.x74_c00455{left:40.501500px;}
.x79_c00455{left:42.121500px;}
.x2b_c00455{left:43.200000px;}
.x58_c00455{left:44.820000px;}
.x48_c00455{left:45.900000px;}
.x30_c00455{left:47.790000px;}
.xb_c00455{left:48.870000px;}
.x4_c00455{left:50.760000px;}
.x11_c00455{left:59.400000px;}
.x6f_c00455{left:62.371500px;}
.x49_c00455{left:64.530000px;}
.x18_c00455{left:67.770000px;}
.x77_c00455{left:69.931500px;}
.x59_c00455{left:71.820000px;}
.x65_c00455{left:73.009500px;}
.x5_c00455{left:76.140000px;}
.x3a_c00455{left:77.760000px;}
.x1d_c00455{left:81.000000px;}
.x12_c00455{left:82.350000px;}
.xc_c00455{left:86.130000px;}
.x5f_c00455{left:87.750000px;}
.x62_c00455{left:92.340000px;}
.x6d_c00455{left:93.421500px;}
.x66_c00455{left:94.582500px;}
.x33_c00455{left:98.550000px;}
.x63_c00455{left:104.490000px;}
.x24_c00455{left:105.570000px;}
.xd_c00455{left:107.730000px;}
.x7a_c00455{left:110.431500px;}
.x1_c00455{left:111.510000px;}
.x40_c00455{left:115.020000px;}
.x44_c00455{left:116.100000px;}
.x34_c00455{left:117.720000px;}
.x19_c00455{left:120.690000px;}
.x68_c00455{left:123.391500px;}
.x50_c00455{left:126.630000px;}
.x4d_c00455{left:128.790000px;}
.x6b_c00455{left:130.411500px;}
.x25_c00455{left:131.490000px;}
.x1e_c00455{left:133.110000px;}
.x1a_c00455{left:134.460000px;}
.x35_c00455{left:136.080000px;}
.x3b_c00455{left:140.940000px;}
.x64_c00455{left:143.100000px;}
.x5c_c00455{left:145.530000px;}
.x5a_c00455{left:149.040000px;}
.x31_c00455{left:152.010000px;}
.x5b_c00455{left:153.090000px;}
.x6_c00455{left:154.440000px;}
.x13_c00455{left:156.870000px;}
.x6c_c00455{left:159.031500px;}
.x5d_c00455{left:161.730000px;}
.x3c_c00455{left:163.890000px;}
.xe_c00455{left:167.130000px;}
.x2c_c00455{left:171.180000px;}
.x2_c00455{left:176.310000px;}
.x41_c00455{left:178.740000px;}
.x69_c00455{left:181.441500px;}
.x14_c00455{left:182.520000px;}
.x78_c00455{left:184.681500px;}
.xf_c00455{left:186.840000px;}
.x60_c00455{left:197.100000px;}
.x2d_c00455{left:199.260000px;}
.x72_c00455{left:200.881500px;}
.x7_c00455{left:203.040000px;}
.x45_c00455{left:205.470000px;}
.x7b_c00455{left:206.482500px;}
.x26_c00455{left:208.170000px;}
.x36_c00455{left:210.600000px;}
.x1b_c00455{left:213.570000px;}
.x3d_c00455{left:214.920000px;}
.x4e_c00455{left:217.890000px;}
.x42_c00455{left:219.510000px;}
.x8_c00455{left:221.130000px;}
.x1f_c00455{left:227.610000px;}
.x2e_c00455{left:228.690000px;}
.x27_c00455{left:231.660000px;}
.x32_c00455{left:237.060000px;}
.x6e_c00455{left:238.951500px;}
.x15_c00455{left:243.540000px;}
.x20_c00455{left:247.590000px;}
.x73_c00455{left:250.021500px;}
.x75_c00455{left:251.371500px;}
.x54_c00455{left:252.990000px;}
.x46_c00455{left:254.340000px;}
.x10_c00455{left:255.690000px;}
.x28_c00455{left:257.310000px;}
.x37_c00455{left:262.170000px;}
.x5e_c00455{left:264.330000px;}
.x21_c00455{left:267.030000px;}
.x2f_c00455{left:268.380000px;}
.x16_c00455{left:269.460000px;}
.x51_c00455{left:271.080000px;}
.x4f_c00455{left:272.160000px;}
.x47_c00455{left:273.240000px;}
.x56_c00455{left:275.130000px;}
.x9_c00455{left:277.830000px;}
.x43_c00455{left:279.180000px;}
.x3e_c00455{left:281.610000px;}
.x17_c00455{left:284.040000px;}
.x4a_c00455{left:285.930000px;}
.x1c_c00455{left:287.820000px;}
.x52_c00455{left:289.980000px;}
.x7c_c00455{left:292.699500px;}
.x38_c00455{left:298.890000px;}
.xa_c00455{left:300.510000px;}
.x70_c00455{left:301.861500px;}
.x4b_c00455{left:303.750000px;}
.x53_c00455{left:305.910000px;}
.x55_c00455{left:309.960000px;}
.x29_c00455{left:312.390000px;}
.x67_c00455{left:313.585500px;}
.x39_c00455{left:316.170000px;}
.x22_c00455{left:318.060000px;}
.x61_c00455{left:319.410000px;}
.x4c_c00455{left:321.030000px;}
.x76_c00455{left:322.381500px;}
.x71_c00455{left:324.811500px;}
.x6a_c00455{left:326.701500px;}
.x2a_c00455{left:328.860000px;}
.x57_c00455{left:330.480000px;}
.x23_c00455{left:332.370000px;}
.x3f_c00455{left:336.150000px;}
.x3_c00455{left:338.850000px;}
.x7f_c00455{left:352.620000px;}
.x7d_c00455{left:355.320000px;}
.x7e_c00455{left:356.940000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fs10_c00455{font-size:19.600000pt;}
.fsd_c00455{font-size:49.466667pt;}
.fsb_c00455{font-size:51.333333pt;}
.fsc_c00455{font-size:52.266667pt;}
.fs2_c00455{font-size:53.200000pt;}
.fs5_c00455{font-size:54.133333pt;}
.fs4_c00455{font-size:55.066667pt;}
.fs1_c00455{font-size:56.000000pt;}
.fs7_c00455{font-size:56.933333pt;}
.fs3_c00455{font-size:57.866667pt;}
.fsa_c00455{font-size:58.800000pt;}
.fs6_c00455{font-size:59.733333pt;}
.fs8_c00455{font-size:60.666667pt;}
.fse_c00455{font-size:61.600000pt;}
.fs9_c00455{font-size:63.466667pt;}
.fs0_c00455{font-size:81.200000pt;}
.fsf_c00455{font-size:95.215421pt;}
.y0_c00455{bottom:0.000000pt;}
.y27_c00455{bottom:30.724000pt;}
.y28_c00455{bottom:32.365168pt;}
.y29_c00455{bottom:33.207352pt;}
.y2a_c00455{bottom:33.401248pt;}
.y2b_c00455{bottom:33.542488pt;}
.y2c_c00455{bottom:34.586824pt;}
.y26_c00455{bottom:46.450667pt;}
.y25_c00455{bottom:61.510667pt;}
.y24_c00455{bottom:75.577333pt;}
.y2d_c00455{bottom:83.280000pt;}
.y23_c00455{bottom:91.224000pt;}
.y22_c00455{bottom:106.190667pt;}
.y21_c00455{bottom:121.070667pt;}
.y20_c00455{bottom:136.582667pt;}
.y1f_c00455{bottom:151.858667pt;}
.y1e_c00455{bottom:166.302667pt;}
.y1d_c00455{bottom:167.608000pt;}
.y1c_c00455{bottom:168.044000pt;}
.y1b_c00455{bottom:168.856000pt;}
.y1a_c00455{bottom:169.806667pt;}
.y19_c00455{bottom:170.152000pt;}
.y18_c00455{bottom:170.642667pt;}
.y17_c00455{bottom:182.229333pt;}
.y16_c00455{bottom:197.108000pt;}
.y15_c00455{bottom:211.956000pt;}
.y14_c00455{bottom:226.502667pt;}
.y13_c00455{bottom:241.900000pt;}
.y12_c00455{bottom:256.781333pt;}
.y11_c00455{bottom:271.681333pt;}
.y10_c00455{bottom:286.801333pt;}
.yf_c00455{bottom:301.658667pt;}
.ye_c00455{bottom:316.516000pt;}
.yd_c00455{bottom:332.160000pt;}
.yc_c00455{bottom:346.776000pt;}
.yb_c00455{bottom:362.008000pt;}
.ya_c00455{bottom:377.478667pt;}
.y9_c00455{bottom:392.318667pt;}
.y8_c00455{bottom:407.813333pt;}
.y7_c00455{bottom:422.400000pt;}
.y6_c00455{bottom:437.977333pt;}
.y5_c00455{bottom:452.268000pt;}
.y4_c00455{bottom:467.294667pt;}
.y3_c00455{bottom:482.374667pt;}
.y2_c00455{bottom:497.700000pt;}
.y1_c00455{bottom:506.534667pt;}
.h12_c00455{height:19.600000pt;}
.hf_c00455{height:49.466667pt;}
.hd_c00455{height:51.333333pt;}
.he_c00455{height:52.266667pt;}
.h4_c00455{height:53.200000pt;}
.h7_c00455{height:54.133333pt;}
.h6_c00455{height:55.066667pt;}
.h3_c00455{height:56.000000pt;}
.h9_c00455{height:56.933333pt;}
.h5_c00455{height:57.866667pt;}
.hc_c00455{height:58.800000pt;}
.h8_c00455{height:59.733333pt;}
.ha_c00455{height:60.666667pt;}
.h10_c00455{height:61.600000pt;}
.hb_c00455{height:63.466667pt;}
.h2_c00455{height:81.200000pt;}
.h11_c00455{height:95.215421pt;}
.h0_c00455{height:549.066667pt;}
.h1_c00455{height:549.333333pt;}
.w0_c00455{width:319.200000pt;}
.w1_c00455{width:319.333333pt;}
.x0_c00455{left:0.000000pt;}
.x74_c00455{left:36.001333pt;}
.x79_c00455{left:37.441333pt;}
.x2b_c00455{left:38.400000pt;}
.x58_c00455{left:39.840000pt;}
.x48_c00455{left:40.800000pt;}
.x30_c00455{left:42.480000pt;}
.xb_c00455{left:43.440000pt;}
.x4_c00455{left:45.120000pt;}
.x11_c00455{left:52.800000pt;}
.x6f_c00455{left:55.441333pt;}
.x49_c00455{left:57.360000pt;}
.x18_c00455{left:60.240000pt;}
.x77_c00455{left:62.161333pt;}
.x59_c00455{left:63.840000pt;}
.x65_c00455{left:64.897333pt;}
.x5_c00455{left:67.680000pt;}
.x3a_c00455{left:69.120000pt;}
.x1d_c00455{left:72.000000pt;}
.x12_c00455{left:73.200000pt;}
.xc_c00455{left:76.560000pt;}
.x5f_c00455{left:78.000000pt;}
.x62_c00455{left:82.080000pt;}
.x6d_c00455{left:83.041333pt;}
.x66_c00455{left:84.073333pt;}
.x33_c00455{left:87.600000pt;}
.x63_c00455{left:92.880000pt;}
.x24_c00455{left:93.840000pt;}
.xd_c00455{left:95.760000pt;}
.x7a_c00455{left:98.161333pt;}
.x1_c00455{left:99.120000pt;}
.x40_c00455{left:102.240000pt;}
.x44_c00455{left:103.200000pt;}
.x34_c00455{left:104.640000pt;}
.x19_c00455{left:107.280000pt;}
.x68_c00455{left:109.681333pt;}
.x50_c00455{left:112.560000pt;}
.x4d_c00455{left:114.480000pt;}
.x6b_c00455{left:115.921333pt;}
.x25_c00455{left:116.880000pt;}
.x1e_c00455{left:118.320000pt;}
.x1a_c00455{left:119.520000pt;}
.x35_c00455{left:120.960000pt;}
.x3b_c00455{left:125.280000pt;}
.x64_c00455{left:127.200000pt;}
.x5c_c00455{left:129.360000pt;}
.x5a_c00455{left:132.480000pt;}
.x31_c00455{left:135.120000pt;}
.x5b_c00455{left:136.080000pt;}
.x6_c00455{left:137.280000pt;}
.x13_c00455{left:139.440000pt;}
.x6c_c00455{left:141.361333pt;}
.x5d_c00455{left:143.760000pt;}
.x3c_c00455{left:145.680000pt;}
.xe_c00455{left:148.560000pt;}
.x2c_c00455{left:152.160000pt;}
.x2_c00455{left:156.720000pt;}
.x41_c00455{left:158.880000pt;}
.x69_c00455{left:161.281333pt;}
.x14_c00455{left:162.240000pt;}
.x78_c00455{left:164.161333pt;}
.xf_c00455{left:166.080000pt;}
.x60_c00455{left:175.200000pt;}
.x2d_c00455{left:177.120000pt;}
.x72_c00455{left:178.561333pt;}
.x7_c00455{left:180.480000pt;}
.x45_c00455{left:182.640000pt;}
.x7b_c00455{left:183.540000pt;}
.x26_c00455{left:185.040000pt;}
.x36_c00455{left:187.200000pt;}
.x1b_c00455{left:189.840000pt;}
.x3d_c00455{left:191.040000pt;}
.x4e_c00455{left:193.680000pt;}
.x42_c00455{left:195.120000pt;}
.x8_c00455{left:196.560000pt;}
.x1f_c00455{left:202.320000pt;}
.x2e_c00455{left:203.280000pt;}
.x27_c00455{left:205.920000pt;}
.x32_c00455{left:210.720000pt;}
.x6e_c00455{left:212.401333pt;}
.x15_c00455{left:216.480000pt;}
.x20_c00455{left:220.080000pt;}
.x73_c00455{left:222.241333pt;}
.x75_c00455{left:223.441333pt;}
.x54_c00455{left:224.880000pt;}
.x46_c00455{left:226.080000pt;}
.x10_c00455{left:227.280000pt;}
.x28_c00455{left:228.720000pt;}
.x37_c00455{left:233.040000pt;}
.x5e_c00455{left:234.960000pt;}
.x21_c00455{left:237.360000pt;}
.x2f_c00455{left:238.560000pt;}
.x16_c00455{left:239.520000pt;}
.x51_c00455{left:240.960000pt;}
.x4f_c00455{left:241.920000pt;}
.x47_c00455{left:242.880000pt;}
.x56_c00455{left:244.560000pt;}
.x9_c00455{left:246.960000pt;}
.x43_c00455{left:248.160000pt;}
.x3e_c00455{left:250.320000pt;}
.x17_c00455{left:252.480000pt;}
.x4a_c00455{left:254.160000pt;}
.x1c_c00455{left:255.840000pt;}
.x52_c00455{left:257.760000pt;}
.x7c_c00455{left:260.177333pt;}
.x38_c00455{left:265.680000pt;}
.xa_c00455{left:267.120000pt;}
.x70_c00455{left:268.321333pt;}
.x4b_c00455{left:270.000000pt;}
.x53_c00455{left:271.920000pt;}
.x55_c00455{left:275.520000pt;}
.x29_c00455{left:277.680000pt;}
.x67_c00455{left:278.742667pt;}
.x39_c00455{left:281.040000pt;}
.x22_c00455{left:282.720000pt;}
.x61_c00455{left:283.920000pt;}
.x4c_c00455{left:285.360000pt;}
.x76_c00455{left:286.561333pt;}
.x71_c00455{left:288.721333pt;}
.x6a_c00455{left:290.401333pt;}
.x2a_c00455{left:292.320000pt;}
.x57_c00455{left:293.760000pt;}
.x23_c00455{left:295.440000pt;}
.x3f_c00455{left:298.800000pt;}
.x3_c00455{left:301.200000pt;}
.x7f_c00455{left:313.440000pt;}
.x7d_c00455{left:315.840000pt;}
.x7e_c00455{left:317.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00456 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00456 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00456 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00456 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00456{transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012510,0.000000,0.000000,0.250000,0,0);}
.mac_c00456{transform:matrix(0.015620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015620,0.000000,0.000000,0.250000,0,0);}
.m83_c00456{transform:matrix(0.039465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039465,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{transform:matrix(0.075085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075085,0.000000,0.000000,0.250000,0,0);}
.mcc_c00456{transform:matrix(0.094620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094620,0.000000,0.000000,0.250000,0,0);}
.ma4_c00456{transform:matrix(0.121890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121890,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.125045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125045,0.000000,0.000000,0.250000,0,0);}
.mc6_c00456{transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00456{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00456{transform:matrix(0.138845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138845,0.000000,0.000000,0.250000,0,0);}
.ma6_c00456{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.md0_c00456{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.md3_c00456{transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146385,0.000000,0.000000,0.250000,0,0);}
.mc9_c00456{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00456{transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147355,0.000000,0.000000,0.250000,0,0);}
.m79_c00456{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153140,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154790,0.000000,0.000000,0.250000,0,0);}
.ma9_c00456{transform:matrix(0.155510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155510,0.000000,0.000000,0.250000,0,0);}
.m5c_c00456{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.mab_c00456{transform:matrix(0.158585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158585,0.000000,0.000000,0.250000,0,0);}
.me9_c00456{transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);}
.me5_c00456{transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.maa_c00456{transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163185,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m56_c00456{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mef_c00456{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m7c_c00456{transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165105,0.000000,0.000000,0.250000,0,0);}
.mcf_c00456{transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);}
.mc8_c00456{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.mbf_c00456{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169115,0.000000,0.000000,0.250000,0,0);}
.m47_c00456{transform:matrix(0.169265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169265,0.000000,0.000000,0.250000,0,0);}
.m74_c00456{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.m7f_c00456{transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169540,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.mae_c00456{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170180,0.000000,0.000000,0.250000,0,0);}
.m7e_c00456{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m81_c00456{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172285,0.000000,0.000000,0.250000,0,0);}
.ma7_c00456{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m75_c00456{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173615,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174715,0.000000,0.000000,0.250000,0,0);}
.mca_c00456{transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176710,0.000000,0.000000,0.250000,0,0);}
.m3c_c00456{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.ma3_c00456{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.md4_c00456{transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);}
.m31_c00456{transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178345,0.000000,0.000000,0.250000,0,0);}
.m7a_c00456{transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178355,0.000000,0.000000,0.250000,0,0);}
.m21_c00456{transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);}
.m5f_c00456{transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179135,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.mce_c00456{transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);}
.mb4_c00456{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.m7b_c00456{transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);}
.mb7_c00456{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.m37_c00456{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.mc2_c00456{transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183340,0.000000,0.000000,0.250000,0,0);}
.me7_c00456{transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);}
.maf_c00456{transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);}
.m8e_c00456{transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00456{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.md7_c00456{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m8f_c00456{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m96_c00456{transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185370,0.000000,0.000000,0.250000,0,0);}
.m5b_c00456{transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00456{transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185895,0.000000,0.000000,0.250000,0,0);}
.m53_c00456{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.mb5_c00456{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.me6_c00456{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00456{transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);}
.m9e_c00456{transform:matrix(0.186815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186815,0.000000,0.000000,0.250000,0,0);}
.m90_c00456{transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187180,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);}
.m9b_c00456{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.mde_c00456{transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188185,0.000000,0.000000,0.250000,0,0);}
.m99_c00456{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.me8_c00456{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.me2_c00456{transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189235,0.000000,0.000000,0.250000,0,0);}
.m64_c00456{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.mc3_c00456{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.mcb_c00456{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00456{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191805,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192380,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194985,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.md8_c00456{transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196120,0.000000,0.000000,0.250000,0,0);}
.m65_c00456{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.mda_c00456{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.m76_c00456{transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);}
.mb3_c00456{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m93_c00456{transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199680,0.000000,0.000000,0.250000,0,0);}
.m7d_c00456{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00456{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.mb2_c00456{transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);}
.mdb_c00456{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.m2d_c00456{transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200610,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m80_c00456{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mb8_c00456{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.med_c00456{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m9a_c00456{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m62_c00456{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.m70_c00456{transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00456{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00456{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.ma1_c00456{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);}
.m29_c00456{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m23_c00456{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.m94_c00456{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.mbe_c00456{transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);}
.m30_c00456{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.m6e_c00456{transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.ma0_c00456{transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207055,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.mad_c00456{transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);}
.mbd_c00456{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208705,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.mbc_c00456{transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209060,0.000000,0.000000,0.250000,0,0);}
.m60_c00456{transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209510,0.000000,0.000000,0.250000,0,0);}
.mc1_c00456{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.m8d_c00456{transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);}
.m6f_c00456{transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210885,0.000000,0.000000,0.250000,0,0);}
.m5d_c00456{transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211765,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00456{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212785,0.000000,0.000000,0.250000,0,0);}
.m98_c00456{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.m8b_c00456{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m63_c00456{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m86_c00456{transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215355,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);}
.m77_c00456{transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);}
.m6c_c00456{transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);}
.md6_c00456{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.mec_c00456{transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219060,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00456{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m6b_c00456{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.me0_c00456{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.mc0_c00456{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224165,0.000000,0.000000,0.250000,0,0);}
.m95_c00456{transform:matrix(0.224240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00456{transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);}
.m50_c00456{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.ma2_c00456{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);}
.m78_c00456{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.mcd_c00456{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.me1_c00456{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.m6d_c00456{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.md5_c00456{transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);}
.mdd_c00456{transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234865,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235310,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);}
.m4e_c00456{transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236910,0.000000,0.000000,0.250000,0,0);}
.m38_c00456{transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);}
.m58_c00456{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.mdf_c00456{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{transform:matrix(0.241035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241035,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241385,0.000000,0.000000,0.250000,0,0);}
.mea_c00456{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m5e_c00456{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.md2_c00456{transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);}
.m59_c00456{transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);}
.meb_c00456{transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);}
.m2b_c00456{transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);}
.me4_c00456{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m49_c00456{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.mdc_c00456{transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);}
.ma5_c00456{transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252990,0.000000,0.000000,0.250000,0,0);}
.mba_c00456{transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);}
.md1_c00456{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m92_c00456{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m97_c00456{transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);}
.me3_c00456{transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);}
.m84_c00456{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m54_c00456{transform:matrix(0.260755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260755,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);}
.m87_c00456{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.m52_c00456{transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);}
.mf0_c00456{transform:matrix(0.279820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279820,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{transform:matrix(0.303110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00456{transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.318390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318390,0.000000,0.000000,0.250000,0,0);}
.md9_c00456{transform:matrix(0.331495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331495,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);}
.mee_c00456{transform:matrix(0.362405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362405,0.000000,0.000000,0.250000,0,0);}
.mc4_c00456{transform:matrix(0.374430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374430,0.000000,0.000000,0.250000,0,0);}
.m6a_c00456{transform:matrix(0.470845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470845,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{transform:matrix(0.565155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565155,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
.fc0_c00456{color:transparent;}
.fse_c00456{font-size:55.650000px;}
.fs7_c00456{font-size:57.750000px;}
.fsf_c00456{font-size:58.800000px;}
.fs4_c00456{font-size:59.850000px;}
.fs9_c00456{font-size:60.900000px;}
.fs6_c00456{font-size:61.950000px;}
.fs1_c00456{font-size:63.000000px;}
.fs3_c00456{font-size:65.100000px;}
.fsd_c00456{font-size:66.150000px;}
.fsb_c00456{font-size:67.200000px;}
.fs5_c00456{font-size:68.250000px;}
.fs8_c00456{font-size:70.350000px;}
.fs2_c00456{font-size:71.400000px;}
.fsa_c00456{font-size:79.800000px;}
.fsc_c00456{font-size:80.850000px;}
.fs0_c00456{font-size:122.850000px;}
.y0_c00456{bottom:0.000000px;}
.y30_c00456{bottom:32.508000px;}
.y2f_c00456{bottom:48.396000px;}
.y2e_c00456{bottom:64.825500px;}
.y2d_c00456{bottom:81.079500px;}
.y2c_c00456{bottom:98.484000px;}
.y2b_c00456{bottom:114.982500px;}
.y22_c00456{bottom:132.034500px;}
.y23_c00456{bottom:132.370500px;}
.y24_c00456{bottom:133.236000px;}
.y25_c00456{bottom:133.414500px;}
.y26_c00456{bottom:134.400000px;}
.y27_c00456{bottom:134.586000px;}
.y28_c00456{bottom:135.061500px;}
.y29_c00456{bottom:135.360000px;}
.y2a_c00456{bottom:135.942000px;}
.y21_c00456{bottom:151.038000px;}
.y20_c00456{bottom:167.106000px;}
.y1f_c00456{bottom:183.103500px;}
.y1e_c00456{bottom:201.246000px;}
.y1d_c00456{bottom:218.242500px;}
.y1c_c00456{bottom:235.899000px;}
.y1b_c00456{bottom:253.189500px;}
.y13_c00456{bottom:267.841500px;}
.y14_c00456{bottom:267.970500px;}
.y15_c00456{bottom:268.261500px;}
.y16_c00456{bottom:269.004000px;}
.y17_c00456{bottom:269.595000px;}
.y18_c00456{bottom:270.121500px;}
.y19_c00456{bottom:270.291000px;}
.y1a_c00456{bottom:270.528000px;}
.y12_c00456{bottom:286.668000px;}
.y11_c00456{bottom:303.508500px;}
.y10_c00456{bottom:320.845500px;}
.yf_c00456{bottom:338.295000px;}
.ye_c00456{bottom:354.199500px;}
.yd_c00456{bottom:370.695000px;}
.yc_c00456{bottom:387.939000px;}
.yb_c00456{bottom:404.365500px;}
.ya_c00456{bottom:421.131000px;}
.y9_c00456{bottom:440.101500px;}
.y8_c00456{bottom:456.274500px;}
.y7_c00456{bottom:473.041500px;}
.y6_c00456{bottom:489.010500px;}
.y5_c00456{bottom:506.302500px;}
.y4_c00456{bottom:523.096500px;}
.y3_c00456{bottom:540.415500px;}
.y2_c00456{bottom:556.693500px;}
.y1_c00456{bottom:571.186500px;}
.h10_c00456{height:55.650000px;}
.h9_c00456{height:57.750000px;}
.h11_c00456{height:58.800000px;}
.h6_c00456{height:59.850000px;}
.hb_c00456{height:60.900000px;}
.h8_c00456{height:61.950000px;}
.h3_c00456{height:63.000000px;}
.h5_c00456{height:65.100000px;}
.hf_c00456{height:66.150000px;}
.hd_c00456{height:67.200000px;}
.h7_c00456{height:68.250000px;}
.ha_c00456{height:70.350000px;}
.h4_c00456{height:71.400000px;}
.hc_c00456{height:79.800000px;}
.he_c00456{height:80.850000px;}
.h2_c00456{height:122.850000px;}
.h0_c00456{height:617.700000px;}
.h1_c00456{height:618.000000px;}
.w0_c00456{width:359.100000px;}
.w1_c00456{width:359.250000px;}
.x0_c00456{left:0.000000px;}
.x1b_c00456{left:2.160000px;}
.x38_c00456{left:12.420000px;}
.x2_c00456{left:13.500000px;}
.x3c_c00456{left:14.580000px;}
.x73_c00456{left:19.440000px;}
.x9_c00456{left:21.600000px;}
.x65_c00456{left:29.158500px;}
.x14_c00456{left:31.320000px;}
.x62_c00456{left:34.018500px;}
.x3d_c00456{left:35.640000px;}
.x6e_c00456{left:37.258500px;}
.x6c_c00456{left:38.461500px;}
.x29_c00456{left:39.690000px;}
.x56_c00456{left:41.971500px;}
.x71_c00456{left:44.550000px;}
.x25_c00456{left:46.170000px;}
.x4c_c00456{left:48.060000px;}
.x33_c00456{left:50.490000px;}
.x44_c00456{left:59.400000px;}
.x5a_c00456{left:62.368500px;}
.x10_c00456{left:63.450000px;}
.x72_c00456{left:64.800000px;}
.x3_c00456{left:65.880000px;}
.x34_c00456{left:68.040000px;}
.x4d_c00456{left:71.280000px;}
.x51_c00456{left:73.980000px;}
.x2a_c00456{left:75.870000px;}
.x74_c00456{left:77.490000px;}
.x20_c00456{left:79.380000px;}
.x15_c00456{left:82.080000px;}
.x48_c00456{left:83.160000px;}
.x39_c00456{left:85.860000px;}
.x66_c00456{left:89.908500px;}
.x5c_c00456{left:91.798500px;}
.x76_c00456{left:93.960000px;}
.x26_c00456{left:97.740000px;}
.x6d_c00456{left:100.321500px;}
.x30_c00456{left:102.870000px;}
.xa_c00456{left:105.840000px;}
.x3e_c00456{left:107.460000px;}
.x5b_c00456{left:109.078500px;}
.x69_c00456{left:113.128500px;}
.x77_c00456{left:114.480000px;}
.x16_c00456{left:115.830000px;}
.x2b_c00456{left:117.180000px;}
.x57_c00456{left:121.498500px;}
.x11_c00456{left:123.120000px;}
.x1c_c00456{left:124.740000px;}
.x35_c00456{left:126.090000px;}
.x17_c00456{left:131.220000px;}
.x49_c00456{left:133.110000px;}
.x6a_c00456{left:135.808500px;}
.x45_c00456{left:136.890000px;}
.x21_c00456{left:138.240000px;}
.x78_c00456{left:139.320000px;}
.x3f_c00456{left:140.400000px;}
.x1_c00456{left:143.370000px;}
.xb_c00456{left:146.340000px;}
.x7a_c00456{left:147.690000px;}
.x1d_c00456{left:149.040000px;}
.x42_c00456{left:152.280000px;}
.x52_c00456{left:154.170000px;}
.x3a_c00456{left:155.250000px;}
.x2c_c00456{left:156.600000px;}
.x12_c00456{left:157.680000px;}
.x4e_c00456{left:160.650000px;}
.xc_c00456{left:162.540000px;}
.x60_c00456{left:163.888500px;}
.x6f_c00456{left:167.128500px;}
.x4_c00456{left:170.640000px;}
.x3b_c00456{left:172.260000px;}
.x6b_c00456{left:173.608500px;}
.x53_c00456{left:176.040000px;}
.x67_c00456{left:177.658500px;}
.x5d_c00456{left:178.738500px;}
.x70_c00456{left:179.818500px;}
.x40_c00456{left:182.790000px;}
.x27_c00456{left:184.410000px;}
.x79_c00456{left:186.570000px;}
.x31_c00456{left:189.000000px;}
.x2d_c00456{left:194.130000px;}
.x18_c00456{left:197.370000px;}
.x5_c00456{left:198.990000px;}
.x41_c00456{left:201.420000px;}
.x2e_c00456{left:204.390000px;}
.x46_c00456{left:207.090000px;}
.x58_c00456{left:209.248500px;}
.x22_c00456{left:212.490000px;}
.xd_c00456{left:214.650000px;}
.x36_c00456{left:216.540000px;}
.x1e_c00456{left:224.910000px;}
.x6_c00456{left:227.340000px;}
.x19_c00456{left:229.500000px;}
.x54_c00456{left:230.580000px;}
.x47_c00456{left:231.930000px;}
.x63_c00456{left:233.008500px;}
.x7b_c00456{left:237.600000px;}
.x5e_c00456{left:239.218500px;}
.x28_c00456{left:245.430000px;}
.x4a_c00456{left:246.510000px;}
.x75_c00456{left:248.400000px;}
.x64_c00456{left:249.478500px;}
.x32_c00456{left:251.370000px;}
.x55_c00456{left:254.880000px;}
.x4f_c00456{left:258.660000px;}
.x2f_c00456{left:262.170000px;}
.xe_c00456{left:264.330000px;}
.x1a_c00456{left:268.110000px;}
.x13_c00456{left:269.460000px;}
.x1f_c00456{left:272.160000px;}
.x68_c00456{left:273.778500px;}
.x50_c00456{left:274.860000px;}
.x7_c00456{left:276.210000px;}
.xf_c00456{left:277.560000px;}
.x59_c00456{left:281.068500px;}
.x4b_c00456{left:283.230000px;}
.x23_c00456{left:284.310000px;}
.x61_c00456{left:288.358500px;}
.x5f_c00456{left:289.438500px;}
.x37_c00456{left:290.790000px;}
.x43_c00456{left:291.870000px;}
.x24_c00456{left:293.760000px;}
.x8_c00456{left:294.840000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fse_c00456{font-size:49.466667pt;}
.fs7_c00456{font-size:51.333333pt;}
.fsf_c00456{font-size:52.266667pt;}
.fs4_c00456{font-size:53.200000pt;}
.fs9_c00456{font-size:54.133333pt;}
.fs6_c00456{font-size:55.066667pt;}
.fs1_c00456{font-size:56.000000pt;}
.fs3_c00456{font-size:57.866667pt;}
.fsd_c00456{font-size:58.800000pt;}
.fsb_c00456{font-size:59.733333pt;}
.fs5_c00456{font-size:60.666667pt;}
.fs8_c00456{font-size:62.533333pt;}
.fs2_c00456{font-size:63.466667pt;}
.fsa_c00456{font-size:70.933333pt;}
.fsc_c00456{font-size:71.866667pt;}
.fs0_c00456{font-size:109.200000pt;}
.y0_c00456{bottom:0.000000pt;}
.y30_c00456{bottom:28.896000pt;}
.y2f_c00456{bottom:43.018667pt;}
.y2e_c00456{bottom:57.622667pt;}
.y2d_c00456{bottom:72.070667pt;}
.y2c_c00456{bottom:87.541333pt;}
.y2b_c00456{bottom:102.206667pt;}
.y22_c00456{bottom:117.364000pt;}
.y23_c00456{bottom:117.662667pt;}
.y24_c00456{bottom:118.432000pt;}
.y25_c00456{bottom:118.590667pt;}
.y26_c00456{bottom:119.466667pt;}
.y27_c00456{bottom:119.632000pt;}
.y28_c00456{bottom:120.054667pt;}
.y29_c00456{bottom:120.320000pt;}
.y2a_c00456{bottom:120.837333pt;}
.y21_c00456{bottom:134.256000pt;}
.y20_c00456{bottom:148.538667pt;}
.y1f_c00456{bottom:162.758667pt;}
.y1e_c00456{bottom:178.885333pt;}
.y1d_c00456{bottom:193.993333pt;}
.y1c_c00456{bottom:209.688000pt;}
.y1b_c00456{bottom:225.057333pt;}
.y13_c00456{bottom:238.081333pt;}
.y14_c00456{bottom:238.196000pt;}
.y15_c00456{bottom:238.454667pt;}
.y16_c00456{bottom:239.114667pt;}
.y17_c00456{bottom:239.640000pt;}
.y18_c00456{bottom:240.108000pt;}
.y19_c00456{bottom:240.258667pt;}
.y1a_c00456{bottom:240.469333pt;}
.y12_c00456{bottom:254.816000pt;}
.y11_c00456{bottom:269.785333pt;}
.y10_c00456{bottom:285.196000pt;}
.yf_c00456{bottom:300.706667pt;}
.ye_c00456{bottom:314.844000pt;}
.yd_c00456{bottom:329.506667pt;}
.yc_c00456{bottom:344.834667pt;}
.yb_c00456{bottom:359.436000pt;}
.ya_c00456{bottom:374.338667pt;}
.y9_c00456{bottom:391.201333pt;}
.y8_c00456{bottom:405.577333pt;}
.y7_c00456{bottom:420.481333pt;}
.y6_c00456{bottom:434.676000pt;}
.y5_c00456{bottom:450.046667pt;}
.y4_c00456{bottom:464.974667pt;}
.y3_c00456{bottom:480.369333pt;}
.y2_c00456{bottom:494.838667pt;}
.y1_c00456{bottom:507.721333pt;}
.h10_c00456{height:49.466667pt;}
.h9_c00456{height:51.333333pt;}
.h11_c00456{height:52.266667pt;}
.h6_c00456{height:53.200000pt;}
.hb_c00456{height:54.133333pt;}
.h8_c00456{height:55.066667pt;}
.h3_c00456{height:56.000000pt;}
.h5_c00456{height:57.866667pt;}
.hf_c00456{height:58.800000pt;}
.hd_c00456{height:59.733333pt;}
.h7_c00456{height:60.666667pt;}
.ha_c00456{height:62.533333pt;}
.h4_c00456{height:63.466667pt;}
.hc_c00456{height:70.933333pt;}
.he_c00456{height:71.866667pt;}
.h2_c00456{height:109.200000pt;}
.h0_c00456{height:549.066667pt;}
.h1_c00456{height:549.333333pt;}
.w0_c00456{width:319.200000pt;}
.w1_c00456{width:319.333333pt;}
.x0_c00456{left:0.000000pt;}
.x1b_c00456{left:1.920000pt;}
.x38_c00456{left:11.040000pt;}
.x2_c00456{left:12.000000pt;}
.x3c_c00456{left:12.960000pt;}
.x73_c00456{left:17.280000pt;}
.x9_c00456{left:19.200000pt;}
.x65_c00456{left:25.918667pt;}
.x14_c00456{left:27.840000pt;}
.x62_c00456{left:30.238667pt;}
.x3d_c00456{left:31.680000pt;}
.x6e_c00456{left:33.118667pt;}
.x6c_c00456{left:34.188000pt;}
.x29_c00456{left:35.280000pt;}
.x56_c00456{left:37.308000pt;}
.x71_c00456{left:39.600000pt;}
.x25_c00456{left:41.040000pt;}
.x4c_c00456{left:42.720000pt;}
.x33_c00456{left:44.880000pt;}
.x44_c00456{left:52.800000pt;}
.x5a_c00456{left:55.438667pt;}
.x10_c00456{left:56.400000pt;}
.x72_c00456{left:57.600000pt;}
.x3_c00456{left:58.560000pt;}
.x34_c00456{left:60.480000pt;}
.x4d_c00456{left:63.360000pt;}
.x51_c00456{left:65.760000pt;}
.x2a_c00456{left:67.440000pt;}
.x74_c00456{left:68.880000pt;}
.x20_c00456{left:70.560000pt;}
.x15_c00456{left:72.960000pt;}
.x48_c00456{left:73.920000pt;}
.x39_c00456{left:76.320000pt;}
.x66_c00456{left:79.918667pt;}
.x5c_c00456{left:81.598667pt;}
.x76_c00456{left:83.520000pt;}
.x26_c00456{left:86.880000pt;}
.x6d_c00456{left:89.174667pt;}
.x30_c00456{left:91.440000pt;}
.xa_c00456{left:94.080000pt;}
.x3e_c00456{left:95.520000pt;}
.x5b_c00456{left:96.958667pt;}
.x69_c00456{left:100.558667pt;}
.x77_c00456{left:101.760000pt;}
.x16_c00456{left:102.960000pt;}
.x2b_c00456{left:104.160000pt;}
.x57_c00456{left:107.998667pt;}
.x11_c00456{left:109.440000pt;}
.x1c_c00456{left:110.880000pt;}
.x35_c00456{left:112.080000pt;}
.x17_c00456{left:116.640000pt;}
.x49_c00456{left:118.320000pt;}
.x6a_c00456{left:120.718667pt;}
.x45_c00456{left:121.680000pt;}
.x21_c00456{left:122.880000pt;}
.x78_c00456{left:123.840000pt;}
.x3f_c00456{left:124.800000pt;}
.x1_c00456{left:127.440000pt;}
.xb_c00456{left:130.080000pt;}
.x7a_c00456{left:131.280000pt;}
.x1d_c00456{left:132.480000pt;}
.x42_c00456{left:135.360000pt;}
.x52_c00456{left:137.040000pt;}
.x3a_c00456{left:138.000000pt;}
.x2c_c00456{left:139.200000pt;}
.x12_c00456{left:140.160000pt;}
.x4e_c00456{left:142.800000pt;}
.xc_c00456{left:144.480000pt;}
.x60_c00456{left:145.678667pt;}
.x6f_c00456{left:148.558667pt;}
.x4_c00456{left:151.680000pt;}
.x3b_c00456{left:153.120000pt;}
.x6b_c00456{left:154.318667pt;}
.x53_c00456{left:156.480000pt;}
.x67_c00456{left:157.918667pt;}
.x5d_c00456{left:158.878667pt;}
.x70_c00456{left:159.838667pt;}
.x40_c00456{left:162.480000pt;}
.x27_c00456{left:163.920000pt;}
.x79_c00456{left:165.840000pt;}
.x31_c00456{left:168.000000pt;}
.x2d_c00456{left:172.560000pt;}
.x18_c00456{left:175.440000pt;}
.x5_c00456{left:176.880000pt;}
.x41_c00456{left:179.040000pt;}
.x2e_c00456{left:181.680000pt;}
.x46_c00456{left:184.080000pt;}
.x58_c00456{left:185.998667pt;}
.x22_c00456{left:188.880000pt;}
.xd_c00456{left:190.800000pt;}
.x36_c00456{left:192.480000pt;}
.x1e_c00456{left:199.920000pt;}
.x6_c00456{left:202.080000pt;}
.x19_c00456{left:204.000000pt;}
.x54_c00456{left:204.960000pt;}
.x47_c00456{left:206.160000pt;}
.x63_c00456{left:207.118667pt;}
.x7b_c00456{left:211.200000pt;}
.x5e_c00456{left:212.638667pt;}
.x28_c00456{left:218.160000pt;}
.x4a_c00456{left:219.120000pt;}
.x75_c00456{left:220.800000pt;}
.x64_c00456{left:221.758667pt;}
.x32_c00456{left:223.440000pt;}
.x55_c00456{left:226.560000pt;}
.x4f_c00456{left:229.920000pt;}
.x2f_c00456{left:233.040000pt;}
.xe_c00456{left:234.960000pt;}
.x1a_c00456{left:238.320000pt;}
.x13_c00456{left:239.520000pt;}
.x1f_c00456{left:241.920000pt;}
.x68_c00456{left:243.358667pt;}
.x50_c00456{left:244.320000pt;}
.x7_c00456{left:245.520000pt;}
.xf_c00456{left:246.720000pt;}
.x59_c00456{left:249.838667pt;}
.x4b_c00456{left:251.760000pt;}
.x23_c00456{left:252.720000pt;}
.x61_c00456{left:256.318667pt;}
.x5f_c00456{left:257.278667pt;}
.x37_c00456{left:258.480000pt;}
.x43_c00456{left:259.440000pt;}
.x24_c00456{left:261.120000pt;}
.x8_c00456{left:262.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00457 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00457 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00457 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00457 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);}
.ma1_c00457{transform:matrix(0.016045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00457{transform:matrix(0.031592,0.000411,-0.003250,0.249979,0,0);-ms-transform:matrix(0.031592,0.000411,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.031592,0.000411,-0.003250,0.249979,0,0);}
.mc1_c00457{transform:matrix(0.069605,0.001462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.069605,0.001462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.069605,0.001462,-0.005249,0.249945,0,0);}
.mb4_c00457{transform:matrix(0.073454,0.001543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.073454,0.001543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.073454,0.001543,-0.005249,0.249945,0,0);}
.m6c_c00457{transform:matrix(0.104330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104330,0.000000,0.000000,0.250000,0,0);}
.m9d_c00457{transform:matrix(0.120120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120120,0.000000,0.000000,0.250000,0,0);}
.m88_c00457{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00457{transform:matrix(0.126642,0.002659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.126642,0.002659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.126642,0.002659,-0.005249,0.249945,0,0);}
.ma2_c00457{transform:matrix(0.132592,0.001459,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132592,0.001459,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132592,0.001459,-0.002750,0.249985,0,0);}
.m69_c00457{transform:matrix(0.133505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133505,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.136235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136235,0.000000,0.000000,0.250000,0,0);}
.me6_c00457{transform:matrix(0.136795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136795,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{transform:matrix(0.137205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137205,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{transform:matrix(0.140845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140845,0.000000,0.000000,0.250000,0,0);}
.md8_c00457{transform:matrix(0.141515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141515,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{transform:matrix(0.142270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00457{transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142645,0.000000,0.000000,0.250000,0,0);}
.m9b_c00457{transform:matrix(0.142790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142790,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.143420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143420,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.mb1_c00457{transform:matrix(0.145798,0.001895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145798,0.001895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145798,0.001895,-0.003250,0.249979,0,0);}
.mcc_c00457{transform:matrix(0.147712,0.003102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147712,0.003102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147712,0.003102,-0.005249,0.249945,0,0);}
.m47_c00457{transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156830,0.000000,0.000000,0.250000,0,0);}
.m24_c00457{transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157460,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157780,0.000000,0.000000,0.250000,0,0);}
.mab_c00457{transform:matrix(0.158965,0.001749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158965,0.001749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158965,0.001749,-0.002750,0.249985,0,0);}
.mc9_c00457{transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159985,0.003360,-0.005249,0.249945,0,0);}
.m21_c00457{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m59_c00457{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m9f_c00457{transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160620,0.000000,0.000000,0.250000,0,0);}
.m7c_c00457{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m96_c00457{transform:matrix(0.163384,0.002287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163384,0.002287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163384,0.002287,-0.003500,0.249976,0,0);}
.m5a_c00457{transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163520,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163960,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{transform:matrix(0.164445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164445,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00457{transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166355,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);}
.me2_c00457{transform:matrix(0.169306,0.002878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169306,0.002878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169306,0.002878,-0.004249,0.249964,0,0);}
.m3f_c00457{transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00457{transform:matrix(0.169550,0.001865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169550,0.001865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169550,0.001865,-0.002750,0.249985,0,0);}
.m83_c00457{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m68_c00457{transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00457{transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00457{transform:matrix(0.171947,0.003611,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171947,0.003611,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171947,0.003611,-0.005249,0.249945,0,0);}
.m86_c00457{transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.mcb_c00457{transform:matrix(0.172692,0.003627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172692,0.003627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172692,0.003627,-0.005249,0.249945,0,0);}
.m25_c00457{transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173360,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174315,0.000000,0.000000,0.250000,0,0);}
.m85_c00457{transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174805,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00457{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175590,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175615,0.000000,0.000000,0.250000,0,0);}
.m9c_c00457{transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.176140,0.002290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176140,0.002290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176140,0.002290,-0.003250,0.249979,0,0);}
.m3_c00457{transform:matrix(0.176840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176840,0.000000,0.000000,0.250000,0,0);}
.mb0_c00457{transform:matrix(0.176890,0.002300,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176890,0.002300,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176890,0.002300,-0.003250,0.249979,0,0);}
.ma5_c00457{transform:matrix(0.176904,0.001946,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176904,0.001946,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176904,0.001946,-0.002750,0.249985,0,0);}
.m1d_c00457{transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177205,0.000000,0.000000,0.250000,0,0);}
.m8f_c00457{transform:matrix(0.177456,0.010313,-0.014505,0.249579,0,0);-ms-transform:matrix(0.177456,0.010313,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.177456,0.010313,-0.014505,0.249579,0,0);}
.m48_c00457{transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.177770,0.010331,-0.014505,0.249579,0,0);-ms-transform:matrix(0.177770,0.010331,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.177770,0.010331,-0.014505,0.249579,0,0);}
.m9a_c00457{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m5b_c00457{transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179005,0.000000,0.000000,0.250000,0,0);}
.maa_c00457{transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179939,0.001979,-0.002750,0.249985,0,0);}
.m7_c00457{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181915,0.000000,0.000000,0.250000,0,0);}
.m51_c00457{transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182610,0.000000,0.000000,0.250000,0,0);}
.me3_c00457{transform:matrix(0.184173,0.003131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184173,0.003131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184173,0.003131,-0.004249,0.249964,0,0);}
.m8c_c00457{transform:matrix(0.184184,0.010704,-0.014505,0.249579,0,0);-ms-transform:matrix(0.184184,0.010704,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.184184,0.010704,-0.014505,0.249579,0,0);}
.m54_c00457{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m5e_c00457{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m93_c00457{transform:matrix(0.184652,0.002585,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184652,0.002585,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184652,0.002585,-0.003500,0.249976,0,0);}
.m36_c00457{transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);}
.m73_c00457{transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.ma3_c00457{transform:matrix(0.185444,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185444,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185444,0.002040,-0.002750,0.249985,0,0);}
.m4d_c00457{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m87_c00457{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00457{transform:matrix(0.185809,0.003902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185809,0.003902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185809,0.003902,-0.005249,0.249945,0,0);}
.mdd_c00457{transform:matrix(0.186868,0.003177,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186868,0.003177,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186868,0.003177,-0.004249,0.249964,0,0);}
.m35_c00457{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m62_c00457{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m64_c00457{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.me0_c00457{transform:matrix(0.188628,0.003207,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188628,0.003207,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188628,0.003207,-0.004249,0.249964,0,0);}
.m9e_c00457{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.me4_c00457{transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);}
.ma7_c00457{transform:matrix(0.190408,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190408,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190408,0.002094,-0.002750,0.249985,0,0);}
.m49_c00457{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.191184,0.002485,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191184,0.002485,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191184,0.002485,-0.003250,0.249979,0,0);}
.m65_c00457{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m79_c00457{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.md9_c00457{transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00457{transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194080,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00457{transform:matrix(0.195017,0.004095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195017,0.004095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195017,0.004095,-0.005249,0.249945,0,0);}
.m5c_c00457{transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195520,0.000000,0.000000,0.250000,0,0);}
.m67_c00457{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196270,0.000000,0.000000,0.250000,0,0);}
.me1_c00457{transform:matrix(0.196762,0.003345,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196762,0.003345,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196762,0.003345,-0.004249,0.249964,0,0);}
.m71_c00457{transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);}
.m61_c00457{transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);}
.m34_c00457{transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198210,0.000000,0.000000,0.250000,0,0);}
.m66_c00457{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.me5_c00457{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00457{transform:matrix(0.199713,0.011607,-0.014505,0.249579,0,0);-ms-transform:matrix(0.199713,0.011607,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.199713,0.011607,-0.014505,0.249579,0,0);}
.m99_c00457{transform:matrix(0.200135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200135,0.000000,0.000000,0.250000,0,0);}
.mae_c00457{transform:matrix(0.201243,0.002616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201243,0.002616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201243,0.002616,-0.003250,0.249979,0,0);}
.m6_c00457{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.202463,0.002632,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202463,0.002632,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202463,0.002632,-0.003250,0.249979,0,0);}
.mc3_c00457{transform:matrix(0.202985,0.004263,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202985,0.004263,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202985,0.004263,-0.005249,0.249945,0,0);}
.ma0_c00457{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.md2_c00457{transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);}
.m12_c00457{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.md1_c00457{transform:matrix(0.205440,0.004314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205440,0.004314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205440,0.004314,-0.005249,0.249945,0,0);}
.m1b_c00457{transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205570,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.205978,0.002678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205978,0.002678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205978,0.002678,-0.003250,0.249979,0,0);}
.m2b_c00457{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.207847,0.002702,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207847,0.002702,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207847,0.002702,-0.003250,0.249979,0,0);}
.mac_c00457{transform:matrix(0.208377,0.002292,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208377,0.002292,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208377,0.002292,-0.002750,0.249985,0,0);}
.m16_c00457{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.mdf_c00457{transform:matrix(0.210560,0.003580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210560,0.003580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210560,0.003580,-0.004249,0.249964,0,0);}
.ma6_c00457{transform:matrix(0.213117,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213117,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213117,0.002344,-0.002750,0.249985,0,0);}
.m1f_c00457{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m40_c00457{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.mde_c00457{transform:matrix(0.214014,0.003638,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214014,0.003638,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214014,0.003638,-0.004249,0.249964,0,0);}
.m13_c00457{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m6e_c00457{transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.mbc_c00457{transform:matrix(0.219617,0.004612,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219617,0.004612,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219617,0.004612,-0.005249,0.249945,0,0);}
.m17_c00457{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.md7_c00457{transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221340,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.221735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221735,0.000000,0.000000,0.250000,0,0);}
.mc8_c00457{transform:matrix(0.221876,0.004659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221876,0.004659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221876,0.004659,-0.005249,0.249945,0,0);}
.md6_c00457{transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);}
.me7_c00457{transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223855,0.000000,0.000000,0.250000,0,0);}
.md3_c00457{transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224290,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.md5_c00457{transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);}
.mda_c00457{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.m95_c00457{transform:matrix(0.228363,0.003197,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228363,0.003197,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228363,0.003197,-0.003500,0.249976,0,0);}
.m63_c00457{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m76_c00457{transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.mcf_c00457{transform:matrix(0.232324,0.004879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232324,0.004879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232324,0.004879,-0.005249,0.249945,0,0);}
.m7f_c00457{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00457{transform:matrix(0.232972,0.003262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232972,0.003262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232972,0.003262,-0.003500,0.249976,0,0);}
.m7e_c00457{transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233415,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.234170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234170,0.000000,0.000000,0.250000,0,0);}
.m84_c00457{transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);}
.m57_c00457{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.m8a_c00457{transform:matrix(0.239870,0.013940,-0.014505,0.249579,0,0);-ms-transform:matrix(0.239870,0.013940,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.239870,0.013940,-0.014505,0.249579,0,0);}
.md4_c00457{transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240005,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.240080,0.013953,-0.014505,0.249579,0,0);-ms-transform:matrix(0.240080,0.013953,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.240080,0.013953,-0.014505,0.249579,0,0);}
.mc2_c00457{transform:matrix(0.242981,0.005103,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242981,0.005103,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242981,0.005103,-0.005249,0.249945,0,0);}
.m14_c00457{transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);}
.mc6_c00457{transform:matrix(0.244231,0.005129,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244231,0.005129,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244231,0.005129,-0.005249,0.249945,0,0);}
.m4a_c00457{transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244485,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.mb8_c00457{transform:matrix(0.245491,0.005155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245491,0.005155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245491,0.005155,-0.005249,0.249945,0,0);}
.mca_c00457{transform:matrix(0.246661,0.005180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246661,0.005180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246661,0.005180,-0.005249,0.249945,0,0);}
.m6b_c00457{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mc0_c00457{transform:matrix(0.251505,0.005282,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251505,0.005282,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251505,0.005282,-0.005249,0.249945,0,0);}
.m38_c00457{transform:matrix(0.254728,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254728,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254728,0.003311,-0.003250,0.249979,0,0);}
.m81_c00457{transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);}
.m52_c00457{transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);}
.m3d_c00457{transform:matrix(0.257403,0.003346,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257403,0.003346,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257403,0.003346,-0.003250,0.249979,0,0);}
.md0_c00457{transform:matrix(0.257528,0.005408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257528,0.005408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257528,0.005408,-0.005249,0.249945,0,0);}
.md_c00457{transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258945,0.000000,0.000000,0.250000,0,0);}
.mbb_c00457{transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);}
.m50_c00457{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m8b_c00457{transform:matrix(0.261908,0.015221,-0.014505,0.249579,0,0);-ms-transform:matrix(0.261908,0.015221,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.261908,0.015221,-0.014505,0.249579,0,0);}
.m26_c00457{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00457{transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);}
.mbf_c00457{transform:matrix(0.264657,0.005558,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264657,0.005558,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264657,0.005558,-0.005249,0.249945,0,0);}
.m27_c00457{transform:matrix(0.265850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265850,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);}
.m91_c00457{transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);}
.m7a_c00457{transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);}
.m44_c00457{transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);}
.m58_c00457{transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);}
.mc4_c00457{transform:matrix(0.280008,0.005880,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280008,0.005880,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280008,0.005880,-0.005249,0.249945,0,0);}
.mc5_c00457{transform:matrix(0.282843,0.005940,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282843,0.005940,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282843,0.005940,-0.005249,0.249945,0,0);}
.m78_c00457{transform:matrix(0.287410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287410,0.000000,0.000000,0.250000,0,0);}
.maf_c00457{transform:matrix(0.293735,0.003819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293735,0.003819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293735,0.003819,-0.003250,0.249979,0,0);}
.mad_c00457{transform:matrix(0.296057,0.003257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296057,0.003257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296057,0.003257,-0.002750,0.249985,0,0);}
.m1c_c00457{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m98_c00457{transform:matrix(0.319085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319085,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.319865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319865,0.000000,0.000000,0.250000,0,0);}
.mc7_c00457{transform:matrix(0.323659,0.006797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.323659,0.006797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.323659,0.006797,-0.005249,0.249945,0,0);}
.mdb_c00457{transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);}
.m23_c00457{transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{transform:matrix(0.331685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331685,0.000000,0.000000,0.250000,0,0);}
.mba_c00457{transform:matrix(0.336996,0.007077,-0.005249,0.249945,0,0);-ms-transform:matrix(0.336996,0.007077,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.336996,0.007077,-0.005249,0.249945,0,0);}
.m70_c00457{transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);}
.ma9_c00457{transform:matrix(0.342134,0.003763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342134,0.003763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342134,0.003763,-0.002750,0.249985,0,0);}
.m5f_c00457{transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342950,0.000000,0.000000,0.250000,0,0);}
.m92_c00457{transform:matrix(0.353215,0.004945,-0.003500,0.249976,0,0);-ms-transform:matrix(0.353215,0.004945,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.353215,0.004945,-0.003500,0.249976,0,0);}
.mbe_c00457{transform:matrix(0.365544,0.007676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.365544,0.007676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.365544,0.007676,-0.005249,0.249945,0,0);}
.mce_c00457{transform:matrix(0.366739,0.007702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.366739,0.007702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.366739,0.007702,-0.005249,0.249945,0,0);}
.ma8_c00457{transform:matrix(0.369258,0.004062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.369258,0.004062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.369258,0.004062,-0.002750,0.249985,0,0);}
.m39_c00457{transform:matrix(0.379458,0.004933,-0.003250,0.249979,0,0);-ms-transform:matrix(0.379458,0.004933,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.379458,0.004933,-0.003250,0.249979,0,0);}
.m1e_c00457{transform:matrix(0.390095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390095,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);}
.mb7_c00457{transform:matrix(0.420677,0.008834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.420677,0.008834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.420677,0.008834,-0.005249,0.249945,0,0);}
.m4f_c00457{transform:matrix(0.465795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465795,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.675785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675785,0.000000,0.000000,0.250000,0,0);}
.m97_c00457{transform:matrix(0.708840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708840,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.793430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793430,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);}
.mb6_c00457{transform:matrix(0.877172,0.018421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.877172,0.018421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.877172,0.018421,-0.005249,0.249945,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:0.000000px;}
.fc0_c00457{color:transparent;}
.fs1f_c00457{font-size:18.900000px;}
.fs10_c00457{font-size:22.050000px;}
.fs8_c00457{font-size:28.352395px;}
.fs11_c00457{font-size:35.700000px;}
.fs16_c00457{font-size:36.758102px;}
.fs1b_c00457{font-size:37.800000px;}
.fs18_c00457{font-size:55.662269px;}
.fs1c_c00457{font-size:58.800000px;}
.fsc_c00457{font-size:60.900000px;}
.fs4_c00457{font-size:66.150000px;}
.fse_c00457{font-size:67.178761px;}
.fs3_c00457{font-size:67.200000px;}
.fs14_c00457{font-size:67.204065px;}
.fs7_c00457{font-size:67.205678px;}
.fsf_c00457{font-size:67.206585px;}
.fs17_c00457{font-size:67.214816px;}
.fs2_c00457{font-size:68.250000px;}
.fs1d_c00457{font-size:69.310013px;}
.fs12_c00457{font-size:71.400000px;}
.fs1a_c00457{font-size:71.415742px;}
.fs6_c00457{font-size:72.450000px;}
.fs9_c00457{font-size:73.500000px;}
.fsb_c00457{font-size:74.550000px;}
.fs1_c00457{font-size:76.650000px;}
.fs15_c00457{font-size:76.656477px;}
.fsa_c00457{font-size:79.800000px;}
.fs19_c00457{font-size:79.817594px;}
.fsd_c00457{font-size:80.850000px;}
.fs13_c00457{font-size:80.854891px;}
.fs5_c00457{font-size:82.950000px;}
.fs0_c00457{font-size:116.550000px;}
.fs21_c00457{font-size:150.150000px;}
.fs1e_c00457{font-size:159.600000px;}
.fs20_c00457{font-size:250.950000px;}
.y0_c00457{bottom:0.000000px;}
.y70_c00457{bottom:2.700000px;}
.y6c_c00457{bottom:28.565611px;}
.y6b_c00457{bottom:28.834662px;}
.y6a_c00457{bottom:29.693247px;}
.y69_c00457{bottom:30.677011px;}
.y68_c00457{bottom:31.567344px;}
.y67_c00457{bottom:32.044627px;}
.y66_c00457{bottom:32.962500px;}
.y64_c00457{bottom:37.800000px;}
.y63_c00457{bottom:46.731127px;}
.y62_c00457{bottom:48.683490px;}
.y61_c00457{bottom:48.926472px;}
.y60_c00457{bottom:50.210656px;}
.y5f_c00457{bottom:62.953992px;}
.y5e_c00457{bottom:63.577566px;}
.y5d_c00457{bottom:64.297049px;}
.y5c_c00457{bottom:64.500609px;}
.y5b_c00457{bottom:64.669520px;}
.y5a_c00457{bottom:65.175617px;}
.y59_c00457{bottom:65.371683px;}
.y58_c00457{bottom:66.143348px;}
.y57_c00457{bottom:80.940821px;}
.y56_c00457{bottom:81.892081px;}
.y55_c00457{bottom:82.466587px;}
.y54_c00457{bottom:83.223751px;}
.y53_c00457{bottom:84.254034px;}
.y50_c00457{bottom:98.862830px;}
.y4f_c00457{bottom:98.863276px;}
.y51_c00457{bottom:98.863455px;}
.y52_c00457{bottom:98.863732px;}
.y4c_c00457{bottom:98.863788px;}
.y4e_c00457{bottom:98.863890px;}
.y4d_c00457{bottom:98.864216px;}
.y4b_c00457{bottom:103.208160px;}
.y4a_c00457{bottom:103.710522px;}
.y49_c00457{bottom:104.306691px;}
.y48_c00457{bottom:104.788767px;}
.y47_c00457{bottom:106.947714px;}
.y46_c00457{bottom:107.588518px;}
.y45_c00457{bottom:108.002208px;}
.y44_c00457{bottom:108.543000px;}
.y6f_c00457{bottom:114.480000px;}
.y65_c00457{bottom:116.484000px;}
.y43_c00457{bottom:129.641556px;}
.y42_c00457{bottom:130.418982px;}
.y41_c00457{bottom:131.195453px;}
.y40_c00457{bottom:133.150171px;}
.y3f_c00457{bottom:133.381500px;}
.y6e_c00457{bottom:138.510000px;}
.y3e_c00457{bottom:147.628678px;}
.y3d_c00457{bottom:148.831575px;}
.y3c_c00457{bottom:149.241883px;}
.y6d_c00457{bottom:149.580000px;}
.y3b_c00457{bottom:150.011259px;}
.y3a_c00457{bottom:150.158648px;}
.y39_c00457{bottom:151.201007px;}
.y38_c00457{bottom:165.413919px;}
.y37_c00457{bottom:165.708065px;}
.y36_c00457{bottom:166.520788px;}
.y35_c00457{bottom:166.660313px;}
.y34_c00457{bottom:168.006300px;}
.y33_c00457{bottom:168.481500px;}
.y32_c00457{bottom:184.576500px;}
.y2f_c00457{bottom:200.058582px;}
.y2e_c00457{bottom:200.860173px;}
.y2d_c00457{bottom:202.236702px;}
.y2c_c00457{bottom:203.019183px;}
.y2b_c00457{bottom:203.208372px;}
.y2a_c00457{bottom:203.581500px;}
.y31_c00457{bottom:210.330000px;}
.y29_c00457{bottom:213.019512px;}
.y28_c00457{bottom:215.550342px;}
.y27_c00457{bottom:221.618940px;}
.y26_c00457{bottom:223.557561px;}
.y25_c00457{bottom:225.177849px;}
.y24_c00457{bottom:226.103877px;}
.y23_c00457{bottom:227.698500px;}
.y22_c00457{bottom:234.427500px;}
.y21_c00457{bottom:234.535500px;}
.y20_c00457{bottom:234.916500px;}
.y1f_c00457{bottom:235.584000px;}
.y1e_c00457{bottom:236.095500px;}
.y1d_c00457{bottom:236.698500px;}
.y1c_c00457{bottom:237.331500px;}
.y1b_c00457{bottom:252.079500px;}
.y1a_c00457{bottom:268.741500px;}
.y19_c00457{bottom:286.003500px;}
.y18_c00457{bottom:302.596500px;}
.y17_c00457{bottom:319.554000px;}
.y16_c00457{bottom:335.439000px;}
.y15_c00457{bottom:353.626500px;}
.y14_c00457{bottom:372.306000px;}
.y13_c00457{bottom:387.415500px;}
.y12_c00457{bottom:403.062000px;}
.y11_c00457{bottom:404.458644px;}
.y10_c00457{bottom:419.624691px;}
.yf_c00457{bottom:419.824371px;}
.ye_c00457{bottom:420.610826px;}
.yd_c00457{bottom:421.657722px;}
.yc_c00457{bottom:421.934993px;}
.yb_c00457{bottom:422.521104px;}
.ya_c00457{bottom:423.093000px;}
.y30_c00457{bottom:429.300000px;}
.y9_c00457{bottom:438.619500px;}
.y8_c00457{bottom:455.140500px;}
.y7_c00457{bottom:471.298500px;}
.y6_c00457{bottom:488.739000px;}
.y5_c00457{bottom:504.846000px;}
.y4_c00457{bottom:523.153500px;}
.y3_c00457{bottom:540.240000px;}
.y2_c00457{bottom:556.924500px;}
.y1_c00457{bottom:570.787500px;}
.h21_c00457{height:18.900000px;}
.h12_c00457{height:22.050000px;}
.ha_c00457{height:28.352395px;}
.h13_c00457{height:35.700000px;}
.h18_c00457{height:36.758102px;}
.h1d_c00457{height:37.800000px;}
.h1a_c00457{height:55.662269px;}
.h1e_c00457{height:58.800000px;}
.he_c00457{height:60.900000px;}
.h6_c00457{height:66.150000px;}
.h10_c00457{height:67.178761px;}
.h5_c00457{height:67.200000px;}
.h16_c00457{height:67.204065px;}
.h9_c00457{height:67.205678px;}
.h11_c00457{height:67.206585px;}
.h19_c00457{height:67.214816px;}
.h4_c00457{height:68.250000px;}
.h1f_c00457{height:69.310013px;}
.h14_c00457{height:71.400000px;}
.h1c_c00457{height:71.415742px;}
.h8_c00457{height:72.450000px;}
.hb_c00457{height:73.500000px;}
.hd_c00457{height:74.550000px;}
.h3_c00457{height:76.650000px;}
.h17_c00457{height:76.656477px;}
.hc_c00457{height:79.800000px;}
.h1b_c00457{height:79.817594px;}
.hf_c00457{height:80.850000px;}
.h15_c00457{height:80.854891px;}
.h7_c00457{height:82.950000px;}
.h2_c00457{height:116.550000px;}
.h23_c00457{height:150.150000px;}
.h20_c00457{height:159.600000px;}
.h22_c00457{height:250.950000px;}
.h0_c00457{height:617.700000px;}
.h1_c00457{height:618.000000px;}
.w0_c00457{width:359.100000px;}
.w1_c00457{width:359.250000px;}
.x0_c00457{left:0.000000px;}
.x6f_c00457{left:39.458427px;}
.x6d_c00457{left:40.491552px;}
.x57_c00457{left:42.211500px;}
.x53_c00457{left:43.855500px;}
.x41_c00457{left:45.090000px;}
.x3b_c00457{left:46.440000px;}
.x1f_c00457{left:47.520000px;}
.xe_c00457{left:48.870000px;}
.x2_c00457{left:50.220000px;}
.x15_c00457{left:58.860000px;}
.x6a_c00457{left:64.933500px;}
.x30_c00457{left:68.310000px;}
.x46_c00457{left:70.200000px;}
.x1_c00457{left:71.550000px;}
.x2c_c00457{left:73.440000px;}
.x32_c00457{left:75.330000px;}
.x4f_c00457{left:78.030000px;}
.x1a_c00457{left:80.190000px;}
.x25_c00457{left:81.540000px;}
.x58_c00457{left:85.584081px;}
.x6b_c00457{left:90.685500px;}
.x3_c00457{left:92.340000px;}
.x76_c00457{left:94.230000px;}
.x33_c00457{left:97.200000px;}
.x3c_c00457{left:99.360000px;}
.x54_c00457{left:101.346000px;}
.xf_c00457{left:102.600000px;}
.x49_c00457{left:107.460000px;}
.x4_c00457{left:109.080000px;}
.x16_c00457{left:110.160000px;}
.x2d_c00457{left:112.320000px;}
.x59_c00457{left:113.464209px;}
.x8_c00457{left:114.480000px;}
.x17_c00457{left:118.260000px;}
.x42_c00457{left:122.310000px;}
.x5d_c00457{left:125.010000px;}
.x1b_c00457{left:126.360000px;}
.x38_c00457{left:129.600000px;}
.x20_c00457{left:131.220000px;}
.x4a_c00457{left:132.570000px;}
.x21_c00457{left:137.700000px;}
.x5e_c00457{left:138.780000px;}
.x47_c00457{left:140.400000px;}
.x50_c00457{left:143.370000px;}
.x43_c00457{left:146.610000px;}
.x77_c00457{left:147.690000px;}
.x9_c00457{left:150.930000px;}
.x39_c00457{left:153.090000px;}
.x55_c00457{left:156.190500px;}
.x26_c00457{left:158.220000px;}
.x2e_c00457{left:160.920000px;}
.x2b_c00457{left:162.549673px;}
.x10_c00457{left:166.860000px;}
.x5_c00457{left:168.210000px;}
.x6e_c00457{left:170.930539px;}
.x34_c00457{left:173.610000px;}
.x48_c00457{left:175.230000px;}
.x1c_c00457{left:176.850000px;}
.x2f_c00457{left:178.740000px;}
.x31_c00457{left:180.360000px;}
.x3d_c00457{left:182.520000px;}
.x4b_c00457{left:184.410000px;}
.x35_c00457{left:186.840000px;}
.x71_c00457{left:190.535383px;}
.x65_c00457{left:192.631587px;}
.x6_c00457{left:194.400000px;}
.x5f_c00457{left:196.290000px;}
.x18_c00457{left:201.420000px;}
.xa_c00457{left:202.770000px;}
.x60_c00457{left:205.470000px;}
.x62_c00457{left:207.786000px;}
.x72_c00457{left:209.089789px;}
.x44_c00457{left:210.600000px;}
.x22_c00457{left:213.300000px;}
.xb_c00457{left:217.080000px;}
.x27_c00457{left:218.970000px;}
.x63_c00457{left:220.470000px;}
.x66_c00457{left:224.204394px;}
.x45_c00457{left:230.310000px;}
.x4c_c00457{left:232.200000px;}
.xc_c00457{left:234.360000px;}
.x51_c00457{left:236.520000px;}
.x29_c00457{left:238.797000px;}
.x4d_c00457{left:240.840000px;}
.x23_c00457{left:242.730000px;}
.x3e_c00457{left:246.510000px;}
.x1d_c00457{left:247.590000px;}
.x5a_c00457{left:251.243598px;}
.x36_c00457{left:253.260000px;}
.x11_c00457{left:257.580000px;}
.x70_c00457{left:260.329741px;}
.x3a_c00457{left:261.900000px;}
.x56_c00457{left:263.325000px;}
.x61_c00457{left:266.490000px;}
.x68_c00457{left:269.589000px;}
.x73_c00457{left:274.435992px;}
.x37_c00457{left:276.210000px;}
.x78_c00457{left:277.830000px;}
.x7a_c00457{left:283.030500px;}
.x14_c00457{left:290.250000px;}
.x12_c00457{left:294.300000px;}
.x4e_c00457{left:296.730000px;}
.x28_c00457{left:297.810000px;}
.x2a_c00457{left:299.293500px;}
.x19_c00457{left:301.050000px;}
.x3f_c00457{left:305.100000px;}
.x13_c00457{left:306.180000px;}
.x52_c00457{left:307.800000px;}
.x1e_c00457{left:312.930000px;}
.x7_c00457{left:315.630000px;}
.x67_c00457{left:316.783864px;}
.x24_c00457{left:317.790000px;}
.x6c_c00457{left:318.973500px;}
.x64_c00457{left:321.094500px;}
.x40_c00457{left:322.920000px;}
.xd_c00457{left:326.700000px;}
.x79_c00457{left:327.780000px;}
.x69_c00457{left:329.391000px;}
.x74_c00457{left:331.141899px;}
.x75_c00457{left:332.370000px;}
.x5b_c00457{left:355.050000px;}
.x7b_c00457{left:356.130000px;}
.x5c_c00457{left:357.480000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs1f_c00457{font-size:16.800000pt;}
.fs10_c00457{font-size:19.600000pt;}
.fs8_c00457{font-size:25.202129pt;}
.fs11_c00457{font-size:31.733333pt;}
.fs16_c00457{font-size:32.673869pt;}
.fs1b_c00457{font-size:33.600000pt;}
.fs18_c00457{font-size:49.477573pt;}
.fs1c_c00457{font-size:52.266667pt;}
.fsc_c00457{font-size:54.133333pt;}
.fs4_c00457{font-size:58.800000pt;}
.fse_c00457{font-size:59.714455pt;}
.fs3_c00457{font-size:59.733333pt;}
.fs14_c00457{font-size:59.736947pt;}
.fs7_c00457{font-size:59.738381pt;}
.fsf_c00457{font-size:59.739187pt;}
.fs17_c00457{font-size:59.746503pt;}
.fs2_c00457{font-size:60.666667pt;}
.fs1d_c00457{font-size:61.608901pt;}
.fs12_c00457{font-size:63.466667pt;}
.fs1a_c00457{font-size:63.480660pt;}
.fs6_c00457{font-size:64.400000pt;}
.fs9_c00457{font-size:65.333333pt;}
.fsb_c00457{font-size:66.266667pt;}
.fs1_c00457{font-size:68.133333pt;}
.fs15_c00457{font-size:68.139090pt;}
.fsa_c00457{font-size:70.933333pt;}
.fs19_c00457{font-size:70.948972pt;}
.fsd_c00457{font-size:71.866667pt;}
.fs13_c00457{font-size:71.871014pt;}
.fs5_c00457{font-size:73.733333pt;}
.fs0_c00457{font-size:103.600000pt;}
.fs21_c00457{font-size:133.466667pt;}
.fs1e_c00457{font-size:141.866667pt;}
.fs20_c00457{font-size:223.066667pt;}
.y0_c00457{bottom:0.000000pt;}
.y70_c00457{bottom:2.400000pt;}
.y6c_c00457{bottom:25.391655pt;}
.y6b_c00457{bottom:25.630811pt;}
.y6a_c00457{bottom:26.393997pt;}
.y69_c00457{bottom:27.268455pt;}
.y68_c00457{bottom:28.059861pt;}
.y67_c00457{bottom:28.484113pt;}
.y66_c00457{bottom:29.300000pt;}
.y64_c00457{bottom:33.600000pt;}
.y63_c00457{bottom:41.538780pt;}
.y62_c00457{bottom:43.274213pt;}
.y61_c00457{bottom:43.490197pt;}
.y60_c00457{bottom:44.631695pt;}
.y5f_c00457{bottom:55.959104pt;}
.y5e_c00457{bottom:56.513392pt;}
.y5d_c00457{bottom:57.152932pt;}
.y5c_c00457{bottom:57.333875pt;}
.y5b_c00457{bottom:57.484017pt;}
.y5a_c00457{bottom:57.933881pt;}
.y59_c00457{bottom:58.108163pt;}
.y58_c00457{bottom:58.794087pt;}
.y57_c00457{bottom:71.947396pt;}
.y56_c00457{bottom:72.792961pt;}
.y55_c00457{bottom:73.303633pt;}
.y54_c00457{bottom:73.976668pt;}
.y53_c00457{bottom:74.892475pt;}
.y50_c00457{bottom:87.878071pt;}
.y4f_c00457{bottom:87.878468pt;}
.y51_c00457{bottom:87.878627pt;}
.y52_c00457{bottom:87.878873pt;}
.y4c_c00457{bottom:87.878923pt;}
.y4e_c00457{bottom:87.879013pt;}
.y4d_c00457{bottom:87.879303pt;}
.y4b_c00457{bottom:91.740587pt;}
.y4a_c00457{bottom:92.187131pt;}
.y49_c00457{bottom:92.717059pt;}
.y48_c00457{bottom:93.145571pt;}
.y47_c00457{bottom:95.064635pt;}
.y46_c00457{bottom:95.634239pt;}
.y45_c00457{bottom:96.001963pt;}
.y44_c00457{bottom:96.482667pt;}
.y6f_c00457{bottom:101.760000pt;}
.y65_c00457{bottom:103.541333pt;}
.y43_c00457{bottom:115.236939pt;}
.y42_c00457{bottom:115.927984pt;}
.y41_c00457{bottom:116.618180pt;}
.y40_c00457{bottom:118.355708pt;}
.y3f_c00457{bottom:118.561333pt;}
.y6e_c00457{bottom:123.120000pt;}
.y3e_c00457{bottom:131.225492pt;}
.y3d_c00457{bottom:132.294733pt;}
.y3c_c00457{bottom:132.659452pt;}
.y6d_c00457{bottom:132.960000pt;}
.y3b_c00457{bottom:133.343341pt;}
.y3a_c00457{bottom:133.474353pt;}
.y39_c00457{bottom:134.400895pt;}
.y38_c00457{bottom:147.034595pt;}
.y37_c00457{bottom:147.296057pt;}
.y36_c00457{bottom:148.018479pt;}
.y35_c00457{bottom:148.142500pt;}
.y34_c00457{bottom:149.338933pt;}
.y33_c00457{bottom:149.761333pt;}
.y32_c00457{bottom:164.068000pt;}
.y2f_c00457{bottom:177.829851pt;}
.y2e_c00457{bottom:178.542376pt;}
.y2d_c00457{bottom:179.765957pt;}
.y2c_c00457{bottom:180.461496pt;}
.y2b_c00457{bottom:180.629664pt;}
.y2a_c00457{bottom:180.961333pt;}
.y31_c00457{bottom:186.960000pt;}
.y29_c00457{bottom:189.350677pt;}
.y28_c00457{bottom:191.600304pt;}
.y27_c00457{bottom:196.994613pt;}
.y26_c00457{bottom:198.717832pt;}
.y25_c00457{bottom:200.158088pt;}
.y24_c00457{bottom:200.981224pt;}
.y23_c00457{bottom:202.398667pt;}
.y22_c00457{bottom:208.380000pt;}
.y21_c00457{bottom:208.476000pt;}
.y20_c00457{bottom:208.814667pt;}
.y1f_c00457{bottom:209.408000pt;}
.y1e_c00457{bottom:209.862667pt;}
.y1d_c00457{bottom:210.398667pt;}
.y1c_c00457{bottom:210.961333pt;}
.y1b_c00457{bottom:224.070667pt;}
.y1a_c00457{bottom:238.881333pt;}
.y19_c00457{bottom:254.225333pt;}
.y18_c00457{bottom:268.974667pt;}
.y17_c00457{bottom:284.048000pt;}
.y16_c00457{bottom:298.168000pt;}
.y15_c00457{bottom:314.334667pt;}
.y14_c00457{bottom:330.938667pt;}
.y13_c00457{bottom:344.369333pt;}
.y12_c00457{bottom:358.277333pt;}
.y11_c00457{bottom:359.518795pt;}
.y10_c00457{bottom:372.999725pt;}
.yf_c00457{bottom:373.177219pt;}
.ye_c00457{bottom:373.876289pt;}
.yd_c00457{bottom:374.806864pt;}
.yc_c00457{bottom:375.053327pt;}
.yb_c00457{bottom:375.574315pt;}
.ya_c00457{bottom:376.082667pt;}
.y30_c00457{bottom:381.600000pt;}
.y9_c00457{bottom:389.884000pt;}
.y8_c00457{bottom:404.569333pt;}
.y7_c00457{bottom:418.932000pt;}
.y6_c00457{bottom:434.434667pt;}
.y5_c00457{bottom:448.752000pt;}
.y4_c00457{bottom:465.025333pt;}
.y3_c00457{bottom:480.213333pt;}
.y2_c00457{bottom:495.044000pt;}
.y1_c00457{bottom:507.366667pt;}
.h21_c00457{height:16.800000pt;}
.h12_c00457{height:19.600000pt;}
.ha_c00457{height:25.202129pt;}
.h13_c00457{height:31.733333pt;}
.h18_c00457{height:32.673869pt;}
.h1d_c00457{height:33.600000pt;}
.h1a_c00457{height:49.477573pt;}
.h1e_c00457{height:52.266667pt;}
.he_c00457{height:54.133333pt;}
.h6_c00457{height:58.800000pt;}
.h10_c00457{height:59.714455pt;}
.h5_c00457{height:59.733333pt;}
.h16_c00457{height:59.736947pt;}
.h9_c00457{height:59.738381pt;}
.h11_c00457{height:59.739187pt;}
.h19_c00457{height:59.746503pt;}
.h4_c00457{height:60.666667pt;}
.h1f_c00457{height:61.608901pt;}
.h14_c00457{height:63.466667pt;}
.h1c_c00457{height:63.480660pt;}
.h8_c00457{height:64.400000pt;}
.hb_c00457{height:65.333333pt;}
.hd_c00457{height:66.266667pt;}
.h3_c00457{height:68.133333pt;}
.h17_c00457{height:68.139090pt;}
.hc_c00457{height:70.933333pt;}
.h1b_c00457{height:70.948972pt;}
.hf_c00457{height:71.866667pt;}
.h15_c00457{height:71.871014pt;}
.h7_c00457{height:73.733333pt;}
.h2_c00457{height:103.600000pt;}
.h23_c00457{height:133.466667pt;}
.h20_c00457{height:141.866667pt;}
.h22_c00457{height:223.066667pt;}
.h0_c00457{height:549.066667pt;}
.h1_c00457{height:549.333333pt;}
.w0_c00457{width:319.200000pt;}
.w1_c00457{width:319.333333pt;}
.x0_c00457{left:0.000000pt;}
.x6f_c00457{left:35.074157pt;}
.x6d_c00457{left:35.992491pt;}
.x57_c00457{left:37.521333pt;}
.x53_c00457{left:38.982667pt;}
.x41_c00457{left:40.080000pt;}
.x3b_c00457{left:41.280000pt;}
.x1f_c00457{left:42.240000pt;}
.xe_c00457{left:43.440000pt;}
.x2_c00457{left:44.640000pt;}
.x15_c00457{left:52.320000pt;}
.x6a_c00457{left:57.718667pt;}
.x30_c00457{left:60.720000pt;}
.x46_c00457{left:62.400000pt;}
.x1_c00457{left:63.600000pt;}
.x2c_c00457{left:65.280000pt;}
.x32_c00457{left:66.960000pt;}
.x4f_c00457{left:69.360000pt;}
.x1a_c00457{left:71.280000pt;}
.x25_c00457{left:72.480000pt;}
.x58_c00457{left:76.074739pt;}
.x6b_c00457{left:80.609333pt;}
.x3_c00457{left:82.080000pt;}
.x76_c00457{left:83.760000pt;}
.x33_c00457{left:86.400000pt;}
.x3c_c00457{left:88.320000pt;}
.x54_c00457{left:90.085333pt;}
.xf_c00457{left:91.200000pt;}
.x49_c00457{left:95.520000pt;}
.x4_c00457{left:96.960000pt;}
.x16_c00457{left:97.920000pt;}
.x2d_c00457{left:99.840000pt;}
.x59_c00457{left:100.857075pt;}
.x8_c00457{left:101.760000pt;}
.x17_c00457{left:105.120000pt;}
.x42_c00457{left:108.720000pt;}
.x5d_c00457{left:111.120000pt;}
.x1b_c00457{left:112.320000pt;}
.x38_c00457{left:115.200000pt;}
.x20_c00457{left:116.640000pt;}
.x4a_c00457{left:117.840000pt;}
.x21_c00457{left:122.400000pt;}
.x5e_c00457{left:123.360000pt;}
.x47_c00457{left:124.800000pt;}
.x50_c00457{left:127.440000pt;}
.x43_c00457{left:130.320000pt;}
.x77_c00457{left:131.280000pt;}
.x9_c00457{left:134.160000pt;}
.x39_c00457{left:136.080000pt;}
.x55_c00457{left:138.836000pt;}
.x26_c00457{left:140.640000pt;}
.x2e_c00457{left:143.040000pt;}
.x2b_c00457{left:144.488599pt;}
.x10_c00457{left:148.320000pt;}
.x5_c00457{left:149.520000pt;}
.x6e_c00457{left:151.938257pt;}
.x34_c00457{left:154.320000pt;}
.x48_c00457{left:155.760000pt;}
.x1c_c00457{left:157.200000pt;}
.x2f_c00457{left:158.880000pt;}
.x31_c00457{left:160.320000pt;}
.x3d_c00457{left:162.240000pt;}
.x4b_c00457{left:163.920000pt;}
.x35_c00457{left:166.080000pt;}
.x71_c00457{left:169.364785pt;}
.x65_c00457{left:171.228077pt;}
.x6_c00457{left:172.800000pt;}
.x5f_c00457{left:174.480000pt;}
.x18_c00457{left:179.040000pt;}
.xa_c00457{left:180.240000pt;}
.x60_c00457{left:182.640000pt;}
.x62_c00457{left:184.698667pt;}
.x72_c00457{left:185.857591pt;}
.x44_c00457{left:187.200000pt;}
.x22_c00457{left:189.600000pt;}
.xb_c00457{left:192.960000pt;}
.x27_c00457{left:194.640000pt;}
.x63_c00457{left:195.973333pt;}
.x66_c00457{left:199.292795pt;}
.x45_c00457{left:204.720000pt;}
.x4c_c00457{left:206.400000pt;}
.xc_c00457{left:208.320000pt;}
.x51_c00457{left:210.240000pt;}
.x29_c00457{left:212.264000pt;}
.x4d_c00457{left:214.080000pt;}
.x23_c00457{left:215.760000pt;}
.x3e_c00457{left:219.120000pt;}
.x1d_c00457{left:220.080000pt;}
.x5a_c00457{left:223.327643pt;}
.x36_c00457{left:225.120000pt;}
.x11_c00457{left:228.960000pt;}
.x70_c00457{left:231.404215pt;}
.x3a_c00457{left:232.800000pt;}
.x56_c00457{left:234.066667pt;}
.x61_c00457{left:236.880000pt;}
.x68_c00457{left:239.634667pt;}
.x73_c00457{left:243.943104pt;}
.x37_c00457{left:245.520000pt;}
.x78_c00457{left:246.960000pt;}
.x7a_c00457{left:251.582667pt;}
.x14_c00457{left:258.000000pt;}
.x12_c00457{left:261.600000pt;}
.x4e_c00457{left:263.760000pt;}
.x28_c00457{left:264.720000pt;}
.x2a_c00457{left:266.038667pt;}
.x19_c00457{left:267.600000pt;}
.x3f_c00457{left:271.200000pt;}
.x13_c00457{left:272.160000pt;}
.x52_c00457{left:273.600000pt;}
.x1e_c00457{left:278.160000pt;}
.x7_c00457{left:280.560000pt;}
.x67_c00457{left:281.585657pt;}
.x24_c00457{left:282.480000pt;}
.x6c_c00457{left:283.532000pt;}
.x64_c00457{left:285.417333pt;}
.x40_c00457{left:287.040000pt;}
.xd_c00457{left:290.400000pt;}
.x79_c00457{left:291.360000pt;}
.x69_c00457{left:292.792000pt;}
.x74_c00457{left:294.348355pt;}
.x75_c00457{left:295.440000pt;}
.x5b_c00457{left:315.600000pt;}
.x7b_c00457{left:316.560000pt;}
.x5c_c00457{left:317.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00458 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00458 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00458 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00458 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00458{transform:matrix(0.091946,-0.002666,0.007247,0.249895,0,0);-ms-transform:matrix(0.091946,-0.002666,0.007247,0.249895,0,0);-webkit-transform:matrix(0.091946,-0.002666,0.007247,0.249895,0,0);}
.m74_c00458{transform:matrix(0.116201,-0.003370,0.007247,0.249895,0,0);-ms-transform:matrix(0.116201,-0.003370,0.007247,0.249895,0,0);-webkit-transform:matrix(0.116201,-0.003370,0.007247,0.249895,0,0);}
.m64_c00458{transform:matrix(0.124213,-0.003602,0.007247,0.249895,0,0);-ms-transform:matrix(0.124213,-0.003602,0.007247,0.249895,0,0);-webkit-transform:matrix(0.124213,-0.003602,0.007247,0.249895,0,0);}
.m90_c00458{transform:matrix(0.131700,-0.001976,0.003750,0.249972,0,0);-ms-transform:matrix(0.131700,-0.001976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.131700,-0.001976,0.003750,0.249972,0,0);}
.m42_c00458{transform:matrix(0.134673,-0.003906,0.007247,0.249895,0,0);-ms-transform:matrix(0.134673,-0.003906,0.007247,0.249895,0,0);-webkit-transform:matrix(0.134673,-0.003906,0.007247,0.249895,0,0);}
.m21_c00458{transform:matrix(0.141473,-0.005098,0.009003,0.249838,0,0);-ms-transform:matrix(0.141473,-0.005098,0.009003,0.249838,0,0);-webkit-transform:matrix(0.141473,-0.005098,0.009003,0.249838,0,0);}
.m49_c00458{transform:matrix(0.143460,-0.004160,0.007247,0.249895,0,0);-ms-transform:matrix(0.143460,-0.004160,0.007247,0.249895,0,0);-webkit-transform:matrix(0.143460,-0.004160,0.007247,0.249895,0,0);}
.m24_c00458{transform:matrix(0.144391,-0.005203,0.009003,0.249838,0,0);-ms-transform:matrix(0.144391,-0.005203,0.009003,0.249838,0,0);-webkit-transform:matrix(0.144391,-0.005203,0.009003,0.249838,0,0);}
.m44_c00458{transform:matrix(0.145399,-0.004217,0.007247,0.249895,0,0);-ms-transform:matrix(0.145399,-0.004217,0.007247,0.249895,0,0);-webkit-transform:matrix(0.145399,-0.004217,0.007247,0.249895,0,0);}
.m4f_c00458{transform:matrix(0.146279,-0.004242,0.007247,0.249895,0,0);-ms-transform:matrix(0.146279,-0.004242,0.007247,0.249895,0,0);-webkit-transform:matrix(0.146279,-0.004242,0.007247,0.249895,0,0);}
.m91_c00458{transform:matrix(0.146808,-0.002202,0.003750,0.249972,0,0);-ms-transform:matrix(0.146808,-0.002202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146808,-0.002202,0.003750,0.249972,0,0);}
.m4_c00458{transform:matrix(0.146934,-0.004555,0.007746,0.249880,0,0);-ms-transform:matrix(0.146934,-0.004555,0.007746,0.249880,0,0);-webkit-transform:matrix(0.146934,-0.004555,0.007746,0.249880,0,0);}
.m4e_c00458{transform:matrix(0.147778,-0.004286,0.007247,0.249895,0,0);-ms-transform:matrix(0.147778,-0.004286,0.007247,0.249895,0,0);-webkit-transform:matrix(0.147778,-0.004286,0.007247,0.249895,0,0);}
.m0_c00458{transform:matrix(0.148214,-0.004595,0.007746,0.249880,0,0);-ms-transform:matrix(0.148214,-0.004595,0.007746,0.249880,0,0);-webkit-transform:matrix(0.148214,-0.004595,0.007746,0.249880,0,0);}
.m2_c00458{transform:matrix(0.151852,-0.004707,0.007746,0.249880,0,0);-ms-transform:matrix(0.151852,-0.004707,0.007746,0.249880,0,0);-webkit-transform:matrix(0.151852,-0.004707,0.007746,0.249880,0,0);}
.m7e_c00458{transform:matrix(0.151916,-0.004406,0.007247,0.249895,0,0);-ms-transform:matrix(0.151916,-0.004406,0.007247,0.249895,0,0);-webkit-transform:matrix(0.151916,-0.004406,0.007247,0.249895,0,0);}
.m67_c00458{transform:matrix(0.158029,-0.004583,0.007247,0.249895,0,0);-ms-transform:matrix(0.158029,-0.004583,0.007247,0.249895,0,0);-webkit-transform:matrix(0.158029,-0.004583,0.007247,0.249895,0,0);}
.m5f_c00458{transform:matrix(0.158238,-0.004589,0.007247,0.249895,0,0);-ms-transform:matrix(0.158238,-0.004589,0.007247,0.249895,0,0);-webkit-transform:matrix(0.158238,-0.004589,0.007247,0.249895,0,0);}
.m47_c00458{transform:matrix(0.159303,-0.004620,0.007247,0.249895,0,0);-ms-transform:matrix(0.159303,-0.004620,0.007247,0.249895,0,0);-webkit-transform:matrix(0.159303,-0.004620,0.007247,0.249895,0,0);}
.m76_c00458{transform:matrix(0.160458,-0.004653,0.007247,0.249895,0,0);-ms-transform:matrix(0.160458,-0.004653,0.007247,0.249895,0,0);-webkit-transform:matrix(0.160458,-0.004653,0.007247,0.249895,0,0);}
.m3f_c00458{transform:matrix(0.161817,-0.004693,0.007247,0.249895,0,0);-ms-transform:matrix(0.161817,-0.004693,0.007247,0.249895,0,0);-webkit-transform:matrix(0.161817,-0.004693,0.007247,0.249895,0,0);}
.m3_c00458{transform:matrix(0.162907,-0.005050,0.007746,0.249880,0,0);-ms-transform:matrix(0.162907,-0.005050,0.007746,0.249880,0,0);-webkit-transform:matrix(0.162907,-0.005050,0.007746,0.249880,0,0);}
.m7c_c00458{transform:matrix(0.163216,-0.004733,0.007247,0.249895,0,0);-ms-transform:matrix(0.163216,-0.004733,0.007247,0.249895,0,0);-webkit-transform:matrix(0.163216,-0.004733,0.007247,0.249895,0,0);}
.m9_c00458{transform:matrix(0.164326,-0.005094,0.007746,0.249880,0,0);-ms-transform:matrix(0.164326,-0.005094,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164326,-0.005094,0.007746,0.249880,0,0);}
.m20_c00458{transform:matrix(0.164643,-0.005933,0.009003,0.249838,0,0);-ms-transform:matrix(0.164643,-0.005933,0.009003,0.249838,0,0);-webkit-transform:matrix(0.164643,-0.005933,0.009003,0.249838,0,0);}
.m48_c00458{transform:matrix(0.165241,-0.004792,0.007247,0.249895,0,0);-ms-transform:matrix(0.165241,-0.004792,0.007247,0.249895,0,0);-webkit-transform:matrix(0.165241,-0.004792,0.007247,0.249895,0,0);}
.m77_c00458{transform:matrix(0.165555,-0.004801,0.007247,0.249895,0,0);-ms-transform:matrix(0.165555,-0.004801,0.007247,0.249895,0,0);-webkit-transform:matrix(0.165555,-0.004801,0.007247,0.249895,0,0);}
.m52_c00458{transform:matrix(0.166855,-0.004839,0.007247,0.249895,0,0);-ms-transform:matrix(0.166855,-0.004839,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166855,-0.004839,0.007247,0.249895,0,0);}
.m43_c00458{transform:matrix(0.166930,-0.004841,0.007247,0.249895,0,0);-ms-transform:matrix(0.166930,-0.004841,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166930,-0.004841,0.007247,0.249895,0,0);}
.m25_c00458{transform:matrix(0.168001,-0.006054,0.009003,0.249838,0,0);-ms-transform:matrix(0.168001,-0.006054,0.009003,0.249838,0,0);-webkit-transform:matrix(0.168001,-0.006054,0.009003,0.249838,0,0);}
.m5e_c00458{transform:matrix(0.169994,-0.004930,0.007247,0.249895,0,0);-ms-transform:matrix(0.169994,-0.004930,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169994,-0.004930,0.007247,0.249895,0,0);}
.m1_c00458{transform:matrix(0.172447,-0.005346,0.007746,0.249880,0,0);-ms-transform:matrix(0.172447,-0.005346,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172447,-0.005346,0.007746,0.249880,0,0);}
.m60_c00458{transform:matrix(0.172597,-0.005005,0.007247,0.249895,0,0);-ms-transform:matrix(0.172597,-0.005005,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172597,-0.005005,0.007247,0.249895,0,0);}
.m92_c00458{transform:matrix(0.172711,-0.002591,0.003750,0.249972,0,0);-ms-transform:matrix(0.172711,-0.002591,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172711,-0.002591,0.003750,0.249972,0,0);}
.m8_c00458{transform:matrix(0.173122,-0.005367,0.007746,0.249880,0,0);-ms-transform:matrix(0.173122,-0.005367,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173122,-0.005367,0.007746,0.249880,0,0);}
.m8e_c00458{transform:matrix(0.175135,-0.002627,0.003750,0.249972,0,0);-ms-transform:matrix(0.175135,-0.002627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175135,-0.002627,0.003750,0.249972,0,0);}
.m65_c00458{transform:matrix(0.175906,-0.005101,0.007247,0.249895,0,0);-ms-transform:matrix(0.175906,-0.005101,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175906,-0.005101,0.007247,0.249895,0,0);}
.m39_c00458{transform:matrix(0.176980,-0.006378,0.009003,0.249838,0,0);-ms-transform:matrix(0.176980,-0.006378,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176980,-0.006378,0.009003,0.249838,0,0);}
.m4d_c00458{transform:matrix(0.178105,-0.005165,0.007247,0.249895,0,0);-ms-transform:matrix(0.178105,-0.005165,0.007247,0.249895,0,0);-webkit-transform:matrix(0.178105,-0.005165,0.007247,0.249895,0,0);}
.m5c_c00458{transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);-ms-transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179924,-0.005218,0.007247,0.249895,0,0);}
.m46_c00458{transform:matrix(0.180399,-0.005232,0.007247,0.249895,0,0);-ms-transform:matrix(0.180399,-0.005232,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180399,-0.005232,0.007247,0.249895,0,0);}
.m3e_c00458{transform:matrix(0.180424,-0.005232,0.007247,0.249895,0,0);-ms-transform:matrix(0.180424,-0.005232,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180424,-0.005232,0.007247,0.249895,0,0);}
.m69_c00458{transform:matrix(0.181844,-0.005273,0.007247,0.249895,0,0);-ms-transform:matrix(0.181844,-0.005273,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181844,-0.005273,0.007247,0.249895,0,0);}
.m53_c00458{transform:matrix(0.182888,-0.005304,0.007247,0.249895,0,0);-ms-transform:matrix(0.182888,-0.005304,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182888,-0.005304,0.007247,0.249895,0,0);}
.m84_c00458{transform:matrix(0.184957,-0.005364,0.007247,0.249895,0,0);-ms-transform:matrix(0.184957,-0.005364,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184957,-0.005364,0.007247,0.249895,0,0);}
.m27_c00458{transform:matrix(0.185630,-0.006689,0.009003,0.249838,0,0);-ms-transform:matrix(0.185630,-0.006689,0.009003,0.249838,0,0);-webkit-transform:matrix(0.185630,-0.006689,0.009003,0.249838,0,0);}
.m5b_c00458{transform:matrix(0.186462,-0.005407,0.007247,0.249895,0,0);-ms-transform:matrix(0.186462,-0.005407,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186462,-0.005407,0.007247,0.249895,0,0);}
.m8b_c00458{transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);-ms-transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187479,-0.002812,0.003750,0.249972,0,0);}
.m5a_c00458{transform:matrix(0.188106,-0.005455,0.007247,0.249895,0,0);-ms-transform:matrix(0.188106,-0.005455,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188106,-0.005455,0.007247,0.249895,0,0);}
.m35_c00458{transform:matrix(0.188273,-0.006785,0.009003,0.249838,0,0);-ms-transform:matrix(0.188273,-0.006785,0.009003,0.249838,0,0);-webkit-transform:matrix(0.188273,-0.006785,0.009003,0.249838,0,0);}
.m50_c00458{transform:matrix(0.188336,-0.005462,0.007247,0.249895,0,0);-ms-transform:matrix(0.188336,-0.005462,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188336,-0.005462,0.007247,0.249895,0,0);}
.m38_c00458{transform:matrix(0.188468,-0.006792,0.009003,0.249838,0,0);-ms-transform:matrix(0.188468,-0.006792,0.009003,0.249838,0,0);-webkit-transform:matrix(0.188468,-0.006792,0.009003,0.249838,0,0);}
.m62_c00458{transform:matrix(0.188501,-0.005467,0.007247,0.249895,0,0);-ms-transform:matrix(0.188501,-0.005467,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188501,-0.005467,0.007247,0.249895,0,0);}
.m7d_c00458{transform:matrix(0.189036,-0.005482,0.007247,0.249895,0,0);-ms-transform:matrix(0.189036,-0.005482,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189036,-0.005482,0.007247,0.249895,0,0);}
.m2e_c00458{transform:matrix(0.189207,-0.006818,0.009003,0.249838,0,0);-ms-transform:matrix(0.189207,-0.006818,0.009003,0.249838,0,0);-webkit-transform:matrix(0.189207,-0.006818,0.009003,0.249838,0,0);}
.m28_c00458{transform:matrix(0.189557,-0.006831,0.009003,0.249838,0,0);-ms-transform:matrix(0.189557,-0.006831,0.009003,0.249838,0,0);-webkit-transform:matrix(0.189557,-0.006831,0.009003,0.249838,0,0);}
.m81_c00458{transform:matrix(0.189660,-0.005500,0.007247,0.249895,0,0);-ms-transform:matrix(0.189660,-0.005500,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189660,-0.005500,0.007247,0.249895,0,0);}
.m8d_c00458{transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);}
.m58_c00458{transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);-ms-transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);}
.m68_c00458{transform:matrix(0.192114,-0.005571,0.007247,0.249895,0,0);-ms-transform:matrix(0.192114,-0.005571,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192114,-0.005571,0.007247,0.249895,0,0);}
.m57_c00458{transform:matrix(0.192269,-0.005576,0.007247,0.249895,0,0);-ms-transform:matrix(0.192269,-0.005576,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192269,-0.005576,0.007247,0.249895,0,0);}
.m8f_c00458{transform:matrix(0.193358,-0.002900,0.003750,0.249972,0,0);-ms-transform:matrix(0.193358,-0.002900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193358,-0.002900,0.003750,0.249972,0,0);}
.m1d_c00458{transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);-ms-transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);}
.m6f_c00458{transform:matrix(0.193439,-0.005610,0.007247,0.249895,0,0);-ms-transform:matrix(0.193439,-0.005610,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193439,-0.005610,0.007247,0.249895,0,0);}
.m7b_c00458{transform:matrix(0.195358,-0.005665,0.007247,0.249895,0,0);-ms-transform:matrix(0.195358,-0.005665,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195358,-0.005665,0.007247,0.249895,0,0);}
.m88_c00458{transform:matrix(0.195523,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195523,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195523,-0.002933,0.003750,0.249972,0,0);}
.m72_c00458{transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);-ms-transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);}
.m3d_c00458{transform:matrix(0.197467,-0.007116,0.009003,0.249838,0,0);-ms-transform:matrix(0.197467,-0.007116,0.009003,0.249838,0,0);-webkit-transform:matrix(0.197467,-0.007116,0.009003,0.249838,0,0);}
.m3b_c00458{transform:matrix(0.197567,-0.007120,0.009003,0.249838,0,0);-ms-transform:matrix(0.197567,-0.007120,0.009003,0.249838,0,0);-webkit-transform:matrix(0.197567,-0.007120,0.009003,0.249838,0,0);}
.m61_c00458{transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);-ms-transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);}
.m15_c00458{transform:matrix(0.197977,-0.005741,0.007247,0.249895,0,0);-ms-transform:matrix(0.197977,-0.005741,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197977,-0.005741,0.007247,0.249895,0,0);}
.m1a_c00458{transform:matrix(0.198201,-0.007142,0.009003,0.249838,0,0);-ms-transform:matrix(0.198201,-0.007142,0.009003,0.249838,0,0);-webkit-transform:matrix(0.198201,-0.007142,0.009003,0.249838,0,0);}
.m32_c00458{transform:matrix(0.198571,-0.007156,0.009003,0.249838,0,0);-ms-transform:matrix(0.198571,-0.007156,0.009003,0.249838,0,0);-webkit-transform:matrix(0.198571,-0.007156,0.009003,0.249838,0,0);}
.m6d_c00458{transform:matrix(0.198836,-0.005766,0.007247,0.249895,0,0);-ms-transform:matrix(0.198836,-0.005766,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198836,-0.005766,0.007247,0.249895,0,0);}
.m93_c00458{transform:matrix(0.199108,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199108,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199108,-0.002987,0.003750,0.249972,0,0);}
.m8a_c00458{transform:matrix(0.199313,-0.002990,0.003750,0.249972,0,0);-ms-transform:matrix(0.199313,-0.002990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199313,-0.002990,0.003750,0.249972,0,0);}
.m1b_c00458{transform:matrix(0.199715,-0.007197,0.009003,0.249838,0,0);-ms-transform:matrix(0.199715,-0.007197,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199715,-0.007197,0.009003,0.249838,0,0);}
.m86_c00458{transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);}
.m2a_c00458{transform:matrix(0.202384,-0.007293,0.009003,0.249838,0,0);-ms-transform:matrix(0.202384,-0.007293,0.009003,0.249838,0,0);-webkit-transform:matrix(0.202384,-0.007293,0.009003,0.249838,0,0);}
.m83_c00458{transform:matrix(0.202405,-0.005870,0.007247,0.249895,0,0);-ms-transform:matrix(0.202405,-0.005870,0.007247,0.249895,0,0);-webkit-transform:matrix(0.202405,-0.005870,0.007247,0.249895,0,0);}
.m4a_c00458{transform:matrix(0.202720,-0.005879,0.007247,0.249895,0,0);-ms-transform:matrix(0.202720,-0.005879,0.007247,0.249895,0,0);-webkit-transform:matrix(0.202720,-0.005879,0.007247,0.249895,0,0);}
.m11_c00458{transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);-ms-transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205838,-0.005969,0.007247,0.249895,0,0);}
.m71_c00458{transform:matrix(0.206043,-0.005975,0.007247,0.249895,0,0);-ms-transform:matrix(0.206043,-0.005975,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206043,-0.005975,0.007247,0.249895,0,0);}
.m66_c00458{transform:matrix(0.206263,-0.005982,0.007247,0.249895,0,0);-ms-transform:matrix(0.206263,-0.005982,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206263,-0.005982,0.007247,0.249895,0,0);}
.m6a_c00458{transform:matrix(0.206303,-0.005983,0.007247,0.249895,0,0);-ms-transform:matrix(0.206303,-0.005983,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206303,-0.005983,0.007247,0.249895,0,0);}
.m29_c00458{transform:matrix(0.206776,-0.007451,0.009003,0.249838,0,0);-ms-transform:matrix(0.206776,-0.007451,0.009003,0.249838,0,0);-webkit-transform:matrix(0.206776,-0.007451,0.009003,0.249838,0,0);}
.m1c_c00458{transform:matrix(0.207240,-0.007468,0.009003,0.249838,0,0);-ms-transform:matrix(0.207240,-0.007468,0.009003,0.249838,0,0);-webkit-transform:matrix(0.207240,-0.007468,0.009003,0.249838,0,0);}
.mf_c00458{transform:matrix(0.208717,-0.006053,0.007247,0.249895,0,0);-ms-transform:matrix(0.208717,-0.006053,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208717,-0.006053,0.007247,0.249895,0,0);}
.m2c_c00458{transform:matrix(0.209054,-0.007533,0.009003,0.249838,0,0);-ms-transform:matrix(0.209054,-0.007533,0.009003,0.249838,0,0);-webkit-transform:matrix(0.209054,-0.007533,0.009003,0.249838,0,0);}
.m89_c00458{transform:matrix(0.209771,-0.003147,0.003750,0.249972,0,0);-ms-transform:matrix(0.209771,-0.003147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209771,-0.003147,0.003750,0.249972,0,0);}
.m10_c00458{transform:matrix(0.210561,-0.006106,0.007247,0.249895,0,0);-ms-transform:matrix(0.210561,-0.006106,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210561,-0.006106,0.007247,0.249895,0,0);}
.m41_c00458{transform:matrix(0.211216,-0.006125,0.007247,0.249895,0,0);-ms-transform:matrix(0.211216,-0.006125,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211216,-0.006125,0.007247,0.249895,0,0);}
.m80_c00458{transform:matrix(0.211441,-0.006132,0.007247,0.249895,0,0);-ms-transform:matrix(0.211441,-0.006132,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211441,-0.006132,0.007247,0.249895,0,0);}
.m6_c00458{transform:matrix(0.211533,-0.006558,0.007746,0.249880,0,0);-ms-transform:matrix(0.211533,-0.006558,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211533,-0.006558,0.007746,0.249880,0,0);}
.m54_c00458{transform:matrix(0.211971,-0.006147,0.007247,0.249895,0,0);-ms-transform:matrix(0.211971,-0.006147,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211971,-0.006147,0.007247,0.249895,0,0);}
.m3a_c00458{transform:matrix(0.212102,-0.007643,0.009003,0.249838,0,0);-ms-transform:matrix(0.212102,-0.007643,0.009003,0.249838,0,0);-webkit-transform:matrix(0.212102,-0.007643,0.009003,0.249838,0,0);}
.m51_c00458{transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);-ms-transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);}
.m36_c00458{transform:matrix(0.213302,-0.007687,0.009003,0.249838,0,0);-ms-transform:matrix(0.213302,-0.007687,0.009003,0.249838,0,0);-webkit-transform:matrix(0.213302,-0.007687,0.009003,0.249838,0,0);}
.m4b_c00458{transform:matrix(0.214155,-0.006210,0.007247,0.249895,0,0);-ms-transform:matrix(0.214155,-0.006210,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214155,-0.006210,0.007247,0.249895,0,0);}
.md_c00458{transform:matrix(0.214252,-0.006642,0.007746,0.249880,0,0);-ms-transform:matrix(0.214252,-0.006642,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214252,-0.006642,0.007746,0.249880,0,0);}
.m2b_c00458{transform:matrix(0.214980,-0.007747,0.009003,0.249838,0,0);-ms-transform:matrix(0.214980,-0.007747,0.009003,0.249838,0,0);-webkit-transform:matrix(0.214980,-0.007747,0.009003,0.249838,0,0);}
.m37_c00458{transform:matrix(0.215215,-0.007756,0.009003,0.249838,0,0);-ms-transform:matrix(0.215215,-0.007756,0.009003,0.249838,0,0);-webkit-transform:matrix(0.215215,-0.007756,0.009003,0.249838,0,0);}
.m85_c00458{transform:matrix(0.215656,-0.003235,0.003750,0.249972,0,0);-ms-transform:matrix(0.215656,-0.003235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215656,-0.003235,0.003750,0.249972,0,0);}
.m1f_c00458{transform:matrix(0.217589,-0.007841,0.009003,0.249838,0,0);-ms-transform:matrix(0.217589,-0.007841,0.009003,0.249838,0,0);-webkit-transform:matrix(0.217589,-0.007841,0.009003,0.249838,0,0);}
.m3c_c00458{transform:matrix(0.218123,-0.007860,0.009003,0.249838,0,0);-ms-transform:matrix(0.218123,-0.007860,0.009003,0.249838,0,0);-webkit-transform:matrix(0.218123,-0.007860,0.009003,0.249838,0,0);}
.m8c_c00458{transform:matrix(0.218645,-0.003280,0.003750,0.249972,0,0);-ms-transform:matrix(0.218645,-0.003280,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218645,-0.003280,0.003750,0.249972,0,0);}
.m7_c00458{transform:matrix(0.219555,-0.006806,0.007746,0.249880,0,0);-ms-transform:matrix(0.219555,-0.006806,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219555,-0.006806,0.007746,0.249880,0,0);}
.m82_c00458{transform:matrix(0.219558,-0.006367,0.007247,0.249895,0,0);-ms-transform:matrix(0.219558,-0.006367,0.007247,0.249895,0,0);-webkit-transform:matrix(0.219558,-0.006367,0.007247,0.249895,0,0);}
.m5_c00458{transform:matrix(0.219819,-0.006814,0.007746,0.249880,0,0);-ms-transform:matrix(0.219819,-0.006814,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219819,-0.006814,0.007746,0.249880,0,0);}
.m2d_c00458{transform:matrix(0.220277,-0.007938,0.009003,0.249838,0,0);-ms-transform:matrix(0.220277,-0.007938,0.009003,0.249838,0,0);-webkit-transform:matrix(0.220277,-0.007938,0.009003,0.249838,0,0);}
.m1e_c00458{transform:matrix(0.222111,-0.008004,0.009003,0.249838,0,0);-ms-transform:matrix(0.222111,-0.008004,0.009003,0.249838,0,0);-webkit-transform:matrix(0.222111,-0.008004,0.009003,0.249838,0,0);}
.m5d_c00458{transform:matrix(0.222262,-0.006446,0.007247,0.249895,0,0);-ms-transform:matrix(0.222262,-0.006446,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222262,-0.006446,0.007247,0.249895,0,0);}
.m75_c00458{transform:matrix(0.222801,-0.006461,0.007247,0.249895,0,0);-ms-transform:matrix(0.222801,-0.006461,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222801,-0.006461,0.007247,0.249895,0,0);}
.m6b_c00458{transform:matrix(0.223186,-0.006472,0.007247,0.249895,0,0);-ms-transform:matrix(0.223186,-0.006472,0.007247,0.249895,0,0);-webkit-transform:matrix(0.223186,-0.006472,0.007247,0.249895,0,0);}
.m12_c00458{transform:matrix(0.223496,-0.006481,0.007247,0.249895,0,0);-ms-transform:matrix(0.223496,-0.006481,0.007247,0.249895,0,0);-webkit-transform:matrix(0.223496,-0.006481,0.007247,0.249895,0,0);}
.m19_c00458{transform:matrix(0.223680,-0.008061,0.009003,0.249838,0,0);-ms-transform:matrix(0.223680,-0.008061,0.009003,0.249838,0,0);-webkit-transform:matrix(0.223680,-0.008061,0.009003,0.249838,0,0);}
.m59_c00458{transform:matrix(0.223816,-0.006491,0.007247,0.249895,0,0);-ms-transform:matrix(0.223816,-0.006491,0.007247,0.249895,0,0);-webkit-transform:matrix(0.223816,-0.006491,0.007247,0.249895,0,0);}
.mb_c00458{transform:matrix(0.225087,-0.006978,0.007746,0.249880,0,0);-ms-transform:matrix(0.225087,-0.006978,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225087,-0.006978,0.007746,0.249880,0,0);}
.m34_c00458{transform:matrix(0.225923,-0.008141,0.009003,0.249838,0,0);-ms-transform:matrix(0.225923,-0.008141,0.009003,0.249838,0,0);-webkit-transform:matrix(0.225923,-0.008141,0.009003,0.249838,0,0);}
.m78_c00458{transform:matrix(0.225940,-0.006552,0.007247,0.249895,0,0);-ms-transform:matrix(0.225940,-0.006552,0.007247,0.249895,0,0);-webkit-transform:matrix(0.225940,-0.006552,0.007247,0.249895,0,0);}
.m16_c00458{transform:matrix(0.226240,-0.006561,0.007247,0.249895,0,0);-ms-transform:matrix(0.226240,-0.006561,0.007247,0.249895,0,0);-webkit-transform:matrix(0.226240,-0.006561,0.007247,0.249895,0,0);}
.m2f_c00458{transform:matrix(0.228432,-0.008232,0.009003,0.249838,0,0);-ms-transform:matrix(0.228432,-0.008232,0.009003,0.249838,0,0);-webkit-transform:matrix(0.228432,-0.008232,0.009003,0.249838,0,0);}
.m87_c00458{transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);-ms-transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229564,-0.003443,0.003750,0.249972,0,0);}
.m55_c00458{transform:matrix(0.229623,-0.006659,0.007247,0.249895,0,0);-ms-transform:matrix(0.229623,-0.006659,0.007247,0.249895,0,0);-webkit-transform:matrix(0.229623,-0.006659,0.007247,0.249895,0,0);}
.mc_c00458{transform:matrix(0.230454,-0.007144,0.007746,0.249880,0,0);-ms-transform:matrix(0.230454,-0.007144,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230454,-0.007144,0.007746,0.249880,0,0);}
.m6e_c00458{transform:matrix(0.232112,-0.006731,0.007247,0.249895,0,0);-ms-transform:matrix(0.232112,-0.006731,0.007247,0.249895,0,0);-webkit-transform:matrix(0.232112,-0.006731,0.007247,0.249895,0,0);}
.ma_c00458{transform:matrix(0.236656,-0.007336,0.007746,0.249880,0,0);-ms-transform:matrix(0.236656,-0.007336,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236656,-0.007336,0.007746,0.249880,0,0);}
.m23_c00458{transform:matrix(0.244032,-0.008794,0.009003,0.249838,0,0);-ms-transform:matrix(0.244032,-0.008794,0.009003,0.249838,0,0);-webkit-transform:matrix(0.244032,-0.008794,0.009003,0.249838,0,0);}
.m33_c00458{transform:matrix(0.244341,-0.008805,0.009003,0.249838,0,0);-ms-transform:matrix(0.244341,-0.008805,0.009003,0.249838,0,0);-webkit-transform:matrix(0.244341,-0.008805,0.009003,0.249838,0,0);}
.m63_c00458{transform:matrix(0.244732,-0.007097,0.007247,0.249895,0,0);-ms-transform:matrix(0.244732,-0.007097,0.007247,0.249895,0,0);-webkit-transform:matrix(0.244732,-0.007097,0.007247,0.249895,0,0);}
.m45_c00458{transform:matrix(0.245932,-0.007132,0.007247,0.249895,0,0);-ms-transform:matrix(0.245932,-0.007132,0.007247,0.249895,0,0);-webkit-transform:matrix(0.245932,-0.007132,0.007247,0.249895,0,0);}
.m6c_c00458{transform:matrix(0.247436,-0.007176,0.007247,0.249895,0,0);-ms-transform:matrix(0.247436,-0.007176,0.007247,0.249895,0,0);-webkit-transform:matrix(0.247436,-0.007176,0.007247,0.249895,0,0);}
.m7f_c00458{transform:matrix(0.248930,-0.007219,0.007247,0.249895,0,0);-ms-transform:matrix(0.248930,-0.007219,0.007247,0.249895,0,0);-webkit-transform:matrix(0.248930,-0.007219,0.007247,0.249895,0,0);}
.m14_c00458{transform:matrix(0.249345,-0.007231,0.007247,0.249895,0,0);-ms-transform:matrix(0.249345,-0.007231,0.007247,0.249895,0,0);-webkit-transform:matrix(0.249345,-0.007231,0.007247,0.249895,0,0);}
.m31_c00458{transform:matrix(0.256464,-0.009242,0.009003,0.249838,0,0);-ms-transform:matrix(0.256464,-0.009242,0.009003,0.249838,0,0);-webkit-transform:matrix(0.256464,-0.009242,0.009003,0.249838,0,0);}
.m40_c00458{transform:matrix(0.258911,-0.007508,0.007247,0.249895,0,0);-ms-transform:matrix(0.258911,-0.007508,0.007247,0.249895,0,0);-webkit-transform:matrix(0.258911,-0.007508,0.007247,0.249895,0,0);}
.m56_c00458{transform:matrix(0.268457,-0.007785,0.007247,0.249895,0,0);-ms-transform:matrix(0.268457,-0.007785,0.007247,0.249895,0,0);-webkit-transform:matrix(0.268457,-0.007785,0.007247,0.249895,0,0);}
.m73_c00458{transform:matrix(0.269852,-0.007826,0.007247,0.249895,0,0);-ms-transform:matrix(0.269852,-0.007826,0.007247,0.249895,0,0);-webkit-transform:matrix(0.269852,-0.007826,0.007247,0.249895,0,0);}
.me_c00458{transform:matrix(0.288037,-0.008929,0.007746,0.249880,0,0);-ms-transform:matrix(0.288037,-0.008929,0.007746,0.249880,0,0);-webkit-transform:matrix(0.288037,-0.008929,0.007746,0.249880,0,0);}
.m22_c00458{transform:matrix(0.309329,-0.011147,0.009003,0.249838,0,0);-ms-transform:matrix(0.309329,-0.011147,0.009003,0.249838,0,0);-webkit-transform:matrix(0.309329,-0.011147,0.009003,0.249838,0,0);}
.m26_c00458{transform:matrix(0.315870,-0.011383,0.009003,0.249838,0,0);-ms-transform:matrix(0.315870,-0.011383,0.009003,0.249838,0,0);-webkit-transform:matrix(0.315870,-0.011383,0.009003,0.249838,0,0);}
.m17_c00458{transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00458{transform:matrix(0.347739,-0.010084,0.007247,0.249895,0,0);-ms-transform:matrix(0.347739,-0.010084,0.007247,0.249895,0,0);-webkit-transform:matrix(0.347739,-0.010084,0.007247,0.249895,0,0);}
.m70_c00458{transform:matrix(0.356505,-0.010339,0.007247,0.249895,0,0);-ms-transform:matrix(0.356505,-0.010339,0.007247,0.249895,0,0);-webkit-transform:matrix(0.356505,-0.010339,0.007247,0.249895,0,0);}
.m30_c00458{transform:matrix(0.380303,-0.013705,0.009003,0.249838,0,0);-ms-transform:matrix(0.380303,-0.013705,0.009003,0.249838,0,0);-webkit-transform:matrix(0.380303,-0.013705,0.009003,0.249838,0,0);}
.m18_c00458{transform:matrix(0.382347,-0.013778,0.009003,0.249838,0,0);-ms-transform:matrix(0.382347,-0.013778,0.009003,0.249838,0,0);-webkit-transform:matrix(0.382347,-0.013778,0.009003,0.249838,0,0);}
.m13_c00458{transform:matrix(0.386872,-0.011219,0.007247,0.249895,0,0);-ms-transform:matrix(0.386872,-0.011219,0.007247,0.249895,0,0);-webkit-transform:matrix(0.386872,-0.011219,0.007247,0.249895,0,0);}
.m79_c00458{transform:matrix(0.390941,-0.011337,0.007247,0.249895,0,0);-ms-transform:matrix(0.390941,-0.011337,0.007247,0.249895,0,0);-webkit-transform:matrix(0.390941,-0.011337,0.007247,0.249895,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
.fc0_c00458{color:transparent;}
.fs3_c00458{font-size:22.050000px;}
.fs1_c00458{font-size:57.777742px;}
.fs12_c00458{font-size:58.806615px;}
.fs7_c00458{font-size:61.928221px;}
.fsb_c00458{font-size:63.026486px;}
.fsf_c00458{font-size:64.076927px;}
.fs11_c00458{font-size:65.127369px;}
.fs6_c00458{font-size:66.126744px;}
.fse_c00458{font-size:66.177810px;}
.fs4_c00458{font-size:67.176375px;}
.fs10_c00458{font-size:67.228252px;}
.fs8_c00458{font-size:68.226006px;}
.fsc_c00458{font-size:68.278693px;}
.fs13_c00458{font-size:70.357914px;}
.fs2_c00458{font-size:70.379576px;}
.fsd_c00458{font-size:74.581342px;}
.fs0_c00458{font-size:79.838335px;}
.fs9_c00458{font-size:86.136197px;}
.fs5_c00458{font-size:89.218623px;}
.fsa_c00458{font-size:89.287522px;}
.y0_c00458{bottom:0.000000px;}
.y8e_c00458{bottom:40.500105px;}
.y91_c00458{bottom:40.500690px;}
.y8f_c00458{bottom:40.500788px;}
.y92_c00458{bottom:40.501267px;}
.y90_c00458{bottom:40.501402px;}
.y93_c00458{bottom:40.501545px;}
.y94_c00458{bottom:40.502205px;}
.y86_c00458{bottom:50.850000px;}
.y87_c00458{bottom:51.121552px;}
.y88_c00458{bottom:51.833543px;}
.y89_c00458{bottom:52.076565px;}
.y8a_c00458{bottom:53.017087px;}
.y8b_c00458{bottom:53.980020px;}
.y8c_c00458{bottom:54.353070px;}
.y8d_c00458{bottom:54.787050px;}
.y7f_c00458{bottom:68.799796px;}
.y80_c00458{bottom:69.443131px;}
.y81_c00458{bottom:71.150679px;}
.y82_c00458{bottom:71.575102px;}
.y83_c00458{bottom:72.018190px;}
.y84_c00458{bottom:73.476327px;}
.y85_c00458{bottom:74.487024px;}
.y76_c00458{bottom:84.208591px;}
.y77_c00458{bottom:86.163684px;}
.y78_c00458{bottom:86.759757px;}
.y79_c00458{bottom:87.997726px;}
.y7a_c00458{bottom:88.707738px;}
.y7b_c00458{bottom:90.457549px;}
.y7c_c00458{bottom:90.918283px;}
.y7d_c00458{bottom:92.066694px;}
.y7e_c00458{bottom:92.734492px;}
.y6d_c00458{bottom:100.420539px;}
.y6e_c00458{bottom:101.506998px;}
.y6f_c00458{bottom:104.180074px;}
.y70_c00458{bottom:105.631267px;}
.y71_c00458{bottom:106.771422px;}
.y72_c00458{bottom:107.592100px;}
.y73_c00458{bottom:109.107319px;}
.y74_c00458{bottom:109.382952px;}
.y75_c00458{bottom:111.011760px;}
.y66_c00458{bottom:116.357461px;}
.y67_c00458{bottom:117.635719px;}
.y68_c00458{bottom:120.182470px;}
.y69_c00458{bottom:121.015389px;}
.y6a_c00458{bottom:123.466800px;}
.y6b_c00458{bottom:124.341190px;}
.y6c_c00458{bottom:126.354243px;}
.y5e_c00458{bottom:133.882069px;}
.y5f_c00458{bottom:134.827026px;}
.y60_c00458{bottom:136.358551px;}
.y61_c00458{bottom:137.276431px;}
.y62_c00458{bottom:139.178328px;}
.y63_c00458{bottom:141.823162px;}
.y64_c00458{bottom:142.995822px;}
.y65_c00458{bottom:144.315346px;}
.y57_c00458{bottom:150.928909px;}
.y58_c00458{bottom:151.936882px;}
.y59_c00458{bottom:153.756745px;}
.y5a_c00458{bottom:155.738286px;}
.y5b_c00458{bottom:156.510702px;}
.y5c_c00458{bottom:157.796598px;}
.y5d_c00458{bottom:159.760827px;}
.y51_c00458{bottom:168.482393px;}
.y52_c00458{bottom:170.116045px;}
.y53_c00458{bottom:170.596002px;}
.y54_c00458{bottom:171.376595px;}
.y55_c00458{bottom:173.357230px;}
.y56_c00458{bottom:176.442606px;}
.y48_c00458{bottom:184.406965px;}
.y49_c00458{bottom:184.989928px;}
.y4a_c00458{bottom:185.188892px;}
.y4b_c00458{bottom:185.997929px;}
.y4c_c00458{bottom:187.143444px;}
.y4d_c00458{bottom:187.635976px;}
.y4e_c00458{bottom:187.993713px;}
.y4f_c00458{bottom:188.210997px;}
.y50_c00458{bottom:189.074649px;}
.y3f_c00458{bottom:199.543500px;}
.y40_c00458{bottom:201.003229px;}
.y41_c00458{bottom:201.290460px;}
.y42_c00458{bottom:202.154587px;}
.y43_c00458{bottom:202.652793px;}
.y44_c00458{bottom:203.686832px;}
.y45_c00458{bottom:204.118221px;}
.y46_c00458{bottom:205.370934px;}
.y47_c00458{bottom:205.905418px;}
.y39_c00458{bottom:219.554516px;}
.y3a_c00458{bottom:222.564557px;}
.y3b_c00458{bottom:225.708585px;}
.y3c_c00458{bottom:226.679114px;}
.y3d_c00458{bottom:228.936462px;}
.y3e_c00458{bottom:229.685537px;}
.y31_c00458{bottom:236.552973px;}
.y32_c00458{bottom:237.643098px;}
.y33_c00458{bottom:238.114410px;}
.y34_c00458{bottom:239.824104px;}
.y35_c00458{bottom:240.555750px;}
.y36_c00458{bottom:242.491070px;}
.y37_c00458{bottom:243.231261px;}
.y38_c00458{bottom:244.889007px;}
.y2a_c00458{bottom:253.554644px;}
.y2b_c00458{bottom:255.338480px;}
.y2c_c00458{bottom:257.475449px;}
.y2d_c00458{bottom:258.146399px;}
.y2e_c00458{bottom:259.159331px;}
.y2f_c00458{bottom:261.087562px;}
.y30_c00458{bottom:262.538070px;}
.y21_c00458{bottom:267.328275px;}
.y22_c00458{bottom:268.465461px;}
.y23_c00458{bottom:270.947679px;}
.y24_c00458{bottom:272.205920px;}
.y25_c00458{bottom:272.860359px;}
.y26_c00458{bottom:273.768923px;}
.y27_c00458{bottom:274.632437px;}
.y28_c00458{bottom:274.902653px;}
.y29_c00458{bottom:275.030916px;}
.y19_c00458{bottom:287.853000px;}
.y1a_c00458{bottom:288.927276px;}
.y1b_c00458{bottom:291.690186px;}
.y1c_c00458{bottom:293.666208px;}
.y1d_c00458{bottom:294.606078px;}
.y1e_c00458{bottom:295.160442px;}
.y1f_c00458{bottom:296.180016px;}
.y20_c00458{bottom:296.824290px;}
.y10_c00458{bottom:438.762000px;}
.y18_c00458{bottom:438.883500px;}
.y11_c00458{bottom:440.547414px;}
.y12_c00458{bottom:441.128182px;}
.y13_c00458{bottom:443.700468px;}
.y14_c00458{bottom:444.247089px;}
.y15_c00458{bottom:445.633304px;}
.y16_c00458{bottom:446.141122px;}
.y17_c00458{bottom:447.064671px;}
.y8_c00458{bottom:494.100783px;}
.y9_c00458{bottom:495.107435px;}
.ya_c00458{bottom:495.516330px;}
.yb_c00458{bottom:496.006068px;}
.yc_c00458{bottom:497.566806px;}
.yd_c00458{bottom:498.033239px;}
.ye_c00458{bottom:499.404140px;}
.yf_c00458{bottom:500.085144px;}
.y1_c00458{bottom:504.103500px;}
.y2_c00458{bottom:505.179510px;}
.y3_c00458{bottom:507.430993px;}
.y4_c00458{bottom:508.210845px;}
.y5_c00458{bottom:509.725629px;}
.y6_c00458{bottom:510.955926px;}
.y7_c00458{bottom:512.612396px;}
.h5_c00458{height:22.050000px;}
.h3_c00458{height:57.777742px;}
.h14_c00458{height:58.806615px;}
.h9_c00458{height:61.928221px;}
.hd_c00458{height:63.026486px;}
.h11_c00458{height:64.076927px;}
.h13_c00458{height:65.127369px;}
.h8_c00458{height:66.126744px;}
.h10_c00458{height:66.177810px;}
.h6_c00458{height:67.176375px;}
.h12_c00458{height:67.228252px;}
.ha_c00458{height:68.226006px;}
.he_c00458{height:68.278693px;}
.h15_c00458{height:70.357914px;}
.h4_c00458{height:70.379576px;}
.hf_c00458{height:74.581342px;}
.h2_c00458{height:79.838335px;}
.hb_c00458{height:86.136197px;}
.h7_c00458{height:89.218623px;}
.hc_c00458{height:89.287522px;}
.h0_c00458{height:617.700000px;}
.h1_c00458{height:618.000000px;}
.w0_c00458{width:359.100000px;}
.w1_c00458{width:359.250000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:15.538500px;}
.x17_c00458{left:16.582500px;}
.x28_c00458{left:17.754449px;}
.x2b_c00458{left:19.172745px;}
.x34_c00458{left:22.628503px;}
.x54_c00458{left:24.807000px;}
.x55_c00458{left:42.910500px;}
.x40_c00458{left:44.758209px;}
.x18_c00458{left:46.393659px;}
.x4a_c00458{left:48.294650px;}
.x2_c00458{left:50.248500px;}
.x1d_c00458{left:57.754179px;}
.x35_c00458{left:59.089249px;}
.x58_c00458{left:61.022850px;}
.x8_c00458{left:63.312477px;}
.x29_c00458{left:64.998239px;}
.x2f_c00458{left:68.902500px;}
.x36_c00458{left:71.540947px;}
.x24_c00458{left:72.838566px;}
.xf_c00458{left:77.386500px;}
.x30_c00458{left:78.807000px;}
.x9_c00458{left:82.799022px;}
.x3b_c00458{left:84.098838px;}
.x41_c00458{left:88.510097px;}
.x4e_c00458{left:90.628533px;}
.x10_c00458{left:97.413000px;}
.x2c_c00458{left:100.452965px;}
.xa_c00458{left:106.104230px;}
.x16_c00458{left:109.350000px;}
.x42_c00458{left:114.725529px;}
.x2a_c00458{left:116.772534px;}
.x3_c00458{left:122.877000px;}
.x31_c00458{left:125.784000px;}
.x51_c00458{left:130.732515px;}
.x46_c00458{left:137.783579px;}
.x25_c00458{left:139.550909px;}
.x59_c00458{left:140.681760px;}
.x1e_c00458{left:146.288570px;}
.x4_c00458{left:148.033500px;}
.x52_c00458{left:150.958713px;}
.x3e_c00458{left:158.187606px;}
.x26_c00458{left:160.501464px;}
.x4b_c00458{left:162.866921px;}
.x43_c00458{left:169.074590px;}
.x3c_c00458{left:170.357813px;}
.x53_c00458{left:172.035585px;}
.x32_c00458{left:176.316000px;}
.x19_c00458{left:177.899022px;}
.xb_c00458{left:180.425247px;}
.x11_c00458{left:186.112500px;}
.x1f_c00458{left:191.156076px;}
.x37_c00458{left:193.709470px;}
.x5_c00458{left:196.897500px;}
.x47_c00458{left:200.624352px;}
.xc_c00458{left:202.639629px;}
.x12_c00458{left:204.961500px;}
.x4f_c00458{left:209.436371px;}
.x2d_c00458{left:211.550756px;}
.x20_c00458{left:214.521444px;}
.x5a_c00458{left:216.289770px;}
.x4c_c00458{left:217.332872px;}
.x1a_c00458{left:219.364016px;}
.x48_c00458{left:223.062371px;}
.x38_c00458{left:224.463541px;}
.x56_c00458{left:233.475000px;}
.x6_c00458{left:236.584500px;}
.x33_c00458{left:237.943500px;}
.x50_c00458{left:242.255172px;}
.x44_c00458{left:244.641952px;}
.x1b_c00458{left:247.657194px;}
.x13_c00458{left:252.762000px;}
.x57_c00458{left:258.345000px;}
.x39_c00458{left:260.391570px;}
.x1c_c00458{left:265.535798px;}
.x3d_c00458{left:266.758917px;}
.xd_c00458{left:267.930857px;}
.x14_c00458{left:270.273000px;}
.x2e_c00458{left:272.485044px;}
.x49_c00458{left:274.669907px;}
.x3f_c00458{left:276.499467px;}
.x21_c00458{left:277.728390px;}
.x22_c00458{left:287.392028px;}
.x7_c00458{left:290.019000px;}
.x23_c00458{left:291.992274px;}
.x27_c00458{left:297.567990px;}
.xe_c00458{left:300.360400px;}
.x15_c00458{left:302.119500px;}
.x4d_c00458{left:312.319101px;}
.x3a_c00458{left:314.399928px;}
.x45_c00458{left:315.825555px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs3_c00458{font-size:19.600000pt;}
.fs1_c00458{font-size:51.357993pt;}
.fs12_c00458{font-size:52.272546pt;}
.fs7_c00458{font-size:55.047307pt;}
.fsb_c00458{font-size:56.023543pt;}
.fsf_c00458{font-size:56.957269pt;}
.fs11_c00458{font-size:57.890994pt;}
.fs6_c00458{font-size:58.779328pt;}
.fse_c00458{font-size:58.824720pt;}
.fs4_c00458{font-size:59.712333pt;}
.fs10_c00458{font-size:59.758446pt;}
.fs8_c00458{font-size:60.645339pt;}
.fsc_c00458{font-size:60.692172pt;}
.fs13_c00458{font-size:62.540368pt;}
.fs2_c00458{font-size:62.559623pt;}
.fsd_c00458{font-size:66.294526pt;}
.fs0_c00458{font-size:70.967409pt;}
.fs9_c00458{font-size:76.565509pt;}
.fs5_c00458{font-size:79.305443pt;}
.fsa_c00458{font-size:79.366686pt;}
.y0_c00458{bottom:0.000000pt;}
.y8e_c00458{bottom:36.000093pt;}
.y91_c00458{bottom:36.000613pt;}
.y8f_c00458{bottom:36.000700pt;}
.y92_c00458{bottom:36.001127pt;}
.y90_c00458{bottom:36.001247pt;}
.y93_c00458{bottom:36.001373pt;}
.y94_c00458{bottom:36.001960pt;}
.y86_c00458{bottom:45.200000pt;}
.y87_c00458{bottom:45.441380pt;}
.y88_c00458{bottom:46.074260pt;}
.y89_c00458{bottom:46.290280pt;}
.y8a_c00458{bottom:47.126300pt;}
.y8b_c00458{bottom:47.982240pt;}
.y8c_c00458{bottom:48.313840pt;}
.y8d_c00458{bottom:48.699600pt;}
.y7f_c00458{bottom:61.155375pt;}
.y80_c00458{bottom:61.727228pt;}
.y81_c00458{bottom:63.245048pt;}
.y82_c00458{bottom:63.622313pt;}
.y83_c00458{bottom:64.016169pt;}
.y84_c00458{bottom:65.312291pt;}
.y85_c00458{bottom:66.210688pt;}
.y76_c00458{bottom:74.852081pt;}
.y77_c00458{bottom:76.589941pt;}
.y78_c00458{bottom:77.119784pt;}
.y79_c00458{bottom:78.220201pt;}
.y7a_c00458{bottom:78.851323pt;}
.y7b_c00458{bottom:80.406711pt;}
.y7c_c00458{bottom:80.816252pt;}
.y7d_c00458{bottom:81.837061pt;}
.y7e_c00458{bottom:82.430660pt;}
.y6d_c00458{bottom:89.262701pt;}
.y6e_c00458{bottom:90.228443pt;}
.y6f_c00458{bottom:92.604511pt;}
.y70_c00458{bottom:93.894460pt;}
.y71_c00458{bottom:94.907931pt;}
.y72_c00458{bottom:95.637423pt;}
.y73_c00458{bottom:96.984284pt;}
.y74_c00458{bottom:97.229291pt;}
.y75_c00458{bottom:98.677120pt;}
.y66_c00458{bottom:103.428855pt;}
.y67_c00458{bottom:104.565084pt;}
.y68_c00458{bottom:106.828863pt;}
.y69_c00458{bottom:107.569235pt;}
.y6a_c00458{bottom:109.748267pt;}
.y6b_c00458{bottom:110.525503pt;}
.y6c_c00458{bottom:112.314883pt;}
.y5e_c00458{bottom:119.006284pt;}
.y5f_c00458{bottom:119.846245pt;}
.y60_c00458{bottom:121.207601pt;}
.y61_c00458{bottom:122.023495pt;}
.y62_c00458{bottom:123.714069pt;}
.y63_c00458{bottom:126.065033pt;}
.y64_c00458{bottom:127.107397pt;}
.y65_c00458{bottom:128.280308pt;}
.y57_c00458{bottom:134.159031pt;}
.y58_c00458{bottom:135.055007pt;}
.y59_c00458{bottom:136.672663pt;}
.y5a_c00458{bottom:138.434032pt;}
.y5b_c00458{bottom:139.120624pt;}
.y5c_c00458{bottom:140.263643pt;}
.y5d_c00458{bottom:142.009624pt;}
.y51_c00458{bottom:149.762127pt;}
.y52_c00458{bottom:151.214263pt;}
.y53_c00458{bottom:151.640891pt;}
.y54_c00458{bottom:152.334751pt;}
.y55_c00458{bottom:154.095316pt;}
.y56_c00458{bottom:156.837872pt;}
.y48_c00458{bottom:163.917303pt;}
.y49_c00458{bottom:164.435492pt;}
.y4a_c00458{bottom:164.612348pt;}
.y4b_c00458{bottom:165.331492pt;}
.y4c_c00458{bottom:166.349728pt;}
.y4d_c00458{bottom:166.787535pt;}
.y4e_c00458{bottom:167.105523pt;}
.y4f_c00458{bottom:167.298664pt;}
.y50_c00458{bottom:168.066355pt;}
.y3f_c00458{bottom:177.372000pt;}
.y40_c00458{bottom:178.669537pt;}
.y41_c00458{bottom:178.924853pt;}
.y42_c00458{bottom:179.692967pt;}
.y43_c00458{bottom:180.135816pt;}
.y44_c00458{bottom:181.054961pt;}
.y45_c00458{bottom:181.438419pt;}
.y46_c00458{bottom:182.551941pt;}
.y47_c00458{bottom:183.027039pt;}
.y39_c00458{bottom:195.159569pt;}
.y3a_c00458{bottom:197.835161pt;}
.y3b_c00458{bottom:200.629853pt;}
.y3c_c00458{bottom:201.492545pt;}
.y3d_c00458{bottom:203.499077pt;}
.y3e_c00458{bottom:204.164921pt;}
.y31_c00458{bottom:210.269309pt;}
.y32_c00458{bottom:211.238309pt;}
.y33_c00458{bottom:211.657253pt;}
.y34_c00458{bottom:213.176981pt;}
.y35_c00458{bottom:213.827333pt;}
.y36_c00458{bottom:215.547617pt;}
.y37_c00458{bottom:216.205565pt;}
.y38_c00458{bottom:217.679117pt;}
.y2a_c00458{bottom:225.381905pt;}
.y2b_c00458{bottom:226.967537pt;}
.y2c_c00458{bottom:228.867065pt;}
.y2d_c00458{bottom:229.463465pt;}
.y2e_c00458{bottom:230.363849pt;}
.y2f_c00458{bottom:232.077833pt;}
.y30_c00458{bottom:233.367173pt;}
.y21_c00458{bottom:237.625133pt;}
.y22_c00458{bottom:238.635965pt;}
.y23_c00458{bottom:240.842381pt;}
.y24_c00458{bottom:241.960817pt;}
.y25_c00458{bottom:242.542541pt;}
.y26_c00458{bottom:243.350153pt;}
.y27_c00458{bottom:244.117721pt;}
.y28_c00458{bottom:244.357913pt;}
.y29_c00458{bottom:244.471925pt;}
.y19_c00458{bottom:255.869333pt;}
.y1a_c00458{bottom:256.824245pt;}
.y1b_c00458{bottom:259.280165pt;}
.y1c_c00458{bottom:261.036629pt;}
.y1d_c00458{bottom:261.872069pt;}
.y1e_c00458{bottom:262.364837pt;}
.y1f_c00458{bottom:263.271125pt;}
.y20_c00458{bottom:263.843813pt;}
.y10_c00458{bottom:390.010667pt;}
.y18_c00458{bottom:390.118667pt;}
.y11_c00458{bottom:391.597701pt;}
.y12_c00458{bottom:392.113940pt;}
.y13_c00458{bottom:394.400416pt;}
.y14_c00458{bottom:394.886301pt;}
.y15_c00458{bottom:396.118492pt;}
.y16_c00458{bottom:396.569887pt;}
.y17_c00458{bottom:397.390819pt;}
.y8_c00458{bottom:439.200696pt;}
.y9_c00458{bottom:440.095497pt;}
.ya_c00458{bottom:440.458960pt;}
.yb_c00458{bottom:440.894283pt;}
.yc_c00458{bottom:442.281605pt;}
.yd_c00458{bottom:442.696212pt;}
.ye_c00458{bottom:443.914791pt;}
.yf_c00458{bottom:444.520128pt;}
.y1_c00458{bottom:448.092000pt;}
.y2_c00458{bottom:449.048453pt;}
.y3_c00458{bottom:451.049772pt;}
.y4_c00458{bottom:451.742973pt;}
.y5_c00458{bottom:453.089448pt;}
.y6_c00458{bottom:454.183045pt;}
.y7_c00458{bottom:455.655463pt;}
.h5_c00458{height:19.600000pt;}
.h3_c00458{height:51.357993pt;}
.h14_c00458{height:52.272546pt;}
.h9_c00458{height:55.047307pt;}
.hd_c00458{height:56.023543pt;}
.h11_c00458{height:56.957269pt;}
.h13_c00458{height:57.890994pt;}
.h8_c00458{height:58.779328pt;}
.h10_c00458{height:58.824720pt;}
.h6_c00458{height:59.712333pt;}
.h12_c00458{height:59.758446pt;}
.ha_c00458{height:60.645339pt;}
.he_c00458{height:60.692172pt;}
.h15_c00458{height:62.540368pt;}
.h4_c00458{height:62.559623pt;}
.hf_c00458{height:66.294526pt;}
.h2_c00458{height:70.967409pt;}
.hb_c00458{height:76.565509pt;}
.h7_c00458{height:79.305443pt;}
.hc_c00458{height:79.366686pt;}
.h0_c00458{height:549.066667pt;}
.h1_c00458{height:549.333333pt;}
.w0_c00458{width:319.200000pt;}
.w1_c00458{width:319.333333pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:13.812000pt;}
.x17_c00458{left:14.740000pt;}
.x28_c00458{left:15.781732pt;}
.x2b_c00458{left:17.042440pt;}
.x34_c00458{left:20.114225pt;}
.x54_c00458{left:22.050667pt;}
.x55_c00458{left:38.142667pt;}
.x40_c00458{left:39.785075pt;}
.x18_c00458{left:41.238808pt;}
.x4a_c00458{left:42.928577pt;}
.x2_c00458{left:44.665333pt;}
.x1d_c00458{left:51.337048pt;}
.x35_c00458{left:52.523777pt;}
.x58_c00458{left:54.242533pt;}
.x8_c00458{left:56.277757pt;}
.x29_c00458{left:57.776212pt;}
.x2f_c00458{left:61.246667pt;}
.x36_c00458{left:63.591953pt;}
.x24_c00458{left:64.745392pt;}
.xf_c00458{left:68.788000pt;}
.x30_c00458{left:70.050667pt;}
.x9_c00458{left:73.599131pt;}
.x3b_c00458{left:74.754523pt;}
.x41_c00458{left:78.675641pt;}
.x4e_c00458{left:80.558696pt;}
.x10_c00458{left:86.589333pt;}
.x2c_c00458{left:89.291524pt;}
.xa_c00458{left:94.314871pt;}
.x16_c00458{left:97.200000pt;}
.x42_c00458{left:101.978248pt;}
.x2a_c00458{left:103.797808pt;}
.x3_c00458{left:109.224000pt;}
.x31_c00458{left:111.808000pt;}
.x51_c00458{left:116.206680pt;}
.x46_c00458{left:122.474292pt;}
.x25_c00458{left:124.045252pt;}
.x59_c00458{left:125.050453pt;}
.x1e_c00458{left:130.034284pt;}
.x4_c00458{left:131.585333pt;}
.x52_c00458{left:134.185523pt;}
.x3e_c00458{left:140.611205pt;}
.x26_c00458{left:142.667968pt;}
.x4b_c00458{left:144.770596pt;}
.x43_c00458{left:150.288524pt;}
.x3c_c00458{left:151.429167pt;}
.x53_c00458{left:152.920520pt;}
.x32_c00458{left:156.725333pt;}
.x19_c00458{left:158.132464pt;}
.xb_c00458{left:160.377997pt;}
.x11_c00458{left:165.433333pt;}
.x1f_c00458{left:169.916512pt;}
.x37_c00458{left:172.186196pt;}
.x5_c00458{left:175.020000pt;}
.x47_c00458{left:178.332757pt;}
.xc_c00458{left:180.124115pt;}
.x12_c00458{left:182.188000pt;}
.x4f_c00458{left:186.165663pt;}
.x2d_c00458{left:188.045116pt;}
.x20_c00458{left:190.685728pt;}
.x5a_c00458{left:192.257573pt;}
.x4c_c00458{left:193.184775pt;}
.x1a_c00458{left:194.990236pt;}
.x48_c00458{left:198.277663pt;}
.x38_c00458{left:199.523148pt;}
.x56_c00458{left:207.533333pt;}
.x6_c00458{left:210.297333pt;}
.x33_c00458{left:211.505333pt;}
.x50_c00458{left:215.337931pt;}
.x44_c00458{left:217.459513pt;}
.x1b_c00458{left:220.139728pt;}
.x13_c00458{left:224.677333pt;}
.x57_c00458{left:229.640000pt;}
.x39_c00458{left:231.459173pt;}
.x1c_c00458{left:236.031820pt;}
.x3d_c00458{left:237.119037pt;}
.xd_c00458{left:238.160761pt;}
.x14_c00458{left:240.242667pt;}
.x2e_c00458{left:242.208928pt;}
.x49_c00458{left:244.151028pt;}
.x3f_c00458{left:245.777304pt;}
.x21_c00458{left:246.869680pt;}
.x22_c00458{left:255.459580pt;}
.x7_c00458{left:257.794667pt;}
.x23_c00458{left:259.548688pt;}
.x27_c00458{left:264.504880pt;}
.xe_c00458{left:266.987023pt;}
.x15_c00458{left:268.550667pt;}
.x4d_c00458{left:277.616979pt;}
.x3a_c00458{left:279.466603pt;}
.x45_c00458{left:280.733827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00459 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00459 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00459 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00459 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00459{transform:matrix(0.019835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019835,0.000000,0.000000,0.250000,0,0);}
.m80_c00459{transform:matrix(0.027673,0.000304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.027673,0.000304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.027673,0.000304,-0.002750,0.249985,0,0);}
.m86_c00459{transform:matrix(0.076165,0.000838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.076165,0.000838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.076165,0.000838,-0.002750,0.249985,0,0);}
.mc3_c00459{transform:matrix(0.076740,0.000844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.076740,0.000844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.076740,0.000844,-0.002750,0.249985,0,0);}
.m22_c00459{transform:matrix(0.116785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116785,0.000000,0.000000,0.250000,0,0);}
.mc1_c00459{transform:matrix(0.136867,0.001506,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136867,0.001506,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136867,0.001506,-0.002750,0.249985,0,0);}
.m6e_c00459{transform:matrix(0.141906,0.001561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141906,0.001561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141906,0.001561,-0.002750,0.249985,0,0);}
.ma9_c00459{transform:matrix(0.146061,0.001607,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146061,0.001607,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146061,0.001607,-0.002750,0.249985,0,0);}
.m36_c00459{transform:matrix(0.147243,0.002209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147243,0.002209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147243,0.002209,-0.003750,0.249972,0,0);}
.m6b_c00459{transform:matrix(0.147481,0.001622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147481,0.001622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147481,0.001622,-0.002750,0.249985,0,0);}
.m83_c00459{transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);}
.mba_c00459{transform:matrix(0.149311,0.001642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149311,0.001642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149311,0.001642,-0.002750,0.249985,0,0);}
.m3f_c00459{transform:matrix(0.149607,0.001945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149607,0.001945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149607,0.001945,-0.003250,0.249979,0,0);}
.m3b_c00459{transform:matrix(0.150642,0.001958,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150642,0.001958,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150642,0.001958,-0.003250,0.249979,0,0);}
.mea_c00459{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00459{transform:matrix(0.153111,0.001684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153111,0.001684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153111,0.001684,-0.002750,0.249985,0,0);}
.m29_c00459{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.maa_c00459{transform:matrix(0.155231,0.001708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155231,0.001708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155231,0.001708,-0.002750,0.249985,0,0);}
.m56_c00459{transform:matrix(0.155576,0.001711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155576,0.001711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155576,0.001711,-0.002750,0.249985,0,0);}
.ma8_c00459{transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156801,0.001725,-0.002750,0.249985,0,0);}
.me2_c00459{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.mce_c00459{transform:matrix(0.159270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159270,0.000000,0.000000,0.250000,0,0);}
.m89_c00459{transform:matrix(0.160545,0.001766,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160545,0.001766,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160545,0.001766,-0.002750,0.249985,0,0);}
.med_c00459{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m77_c00459{transform:matrix(0.160625,0.001767,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160625,0.001767,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160625,0.001767,-0.002750,0.249985,0,0);}
.m59_c00459{transform:matrix(0.161555,0.001777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161555,0.001777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161555,0.001777,-0.002750,0.249985,0,0);}
.m74_c00459{transform:matrix(0.162040,0.001782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162040,0.001782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162040,0.001782,-0.002750,0.249985,0,0);}
.mac_c00459{transform:matrix(0.162445,0.001787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162445,0.001787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162445,0.001787,-0.002750,0.249985,0,0);}
.m66_c00459{transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162500,0.001788,-0.002750,0.249985,0,0);}
.m82_c00459{transform:matrix(0.163465,0.001798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163465,0.001798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163465,0.001798,-0.002750,0.249985,0,0);}
.m92_c00459{transform:matrix(0.163820,0.001802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163820,0.001802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163820,0.001802,-0.002750,0.249985,0,0);}
.mef_c00459{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.164271,0.002136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164271,0.002136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164271,0.002136,-0.003250,0.249979,0,0);}
.mca_c00459{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.m46_c00459{transform:matrix(0.166041,0.002159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166041,0.002159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166041,0.002159,-0.003250,0.249979,0,0);}
.m93_c00459{transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);}
.m3c_c00459{transform:matrix(0.166671,0.002167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166671,0.002167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166671,0.002167,-0.003250,0.249979,0,0);}
.mdc_c00459{transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);}
.md4_c00459{transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168740,0.000000,0.000000,0.250000,0,0);}
.m5b_c00459{transform:matrix(0.169000,0.001859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169000,0.001859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169000,0.001859,-0.002750,0.249985,0,0);}
.m98_c00459{transform:matrix(0.169075,0.001860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169075,0.001860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169075,0.001860,-0.002750,0.249985,0,0);}
.md3_c00459{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.169541,0.002204,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169541,0.002204,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169541,0.002204,-0.003250,0.249979,0,0);}
.m61_c00459{transform:matrix(0.169905,0.001869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169905,0.001869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169905,0.001869,-0.002750,0.249985,0,0);}
.m87_c00459{transform:matrix(0.170635,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170635,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170635,0.001877,-0.002750,0.249985,0,0);}
.mb5_c00459{transform:matrix(0.170885,0.001880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170885,0.001880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170885,0.001880,-0.002750,0.249985,0,0);}
.mc0_c00459{transform:matrix(0.171285,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171285,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171285,0.001884,-0.002750,0.249985,0,0);}
.me7_c00459{transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);}
.m3d_c00459{transform:matrix(0.172305,0.002240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172305,0.002240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172305,0.002240,-0.003250,0.249979,0,0);}
.mde_c00459{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172690,0.000000,0.000000,0.250000,0,0);}
.m67_c00459{transform:matrix(0.173140,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173140,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173140,0.001905,-0.002750,0.249985,0,0);}
.m45_c00459{transform:matrix(0.173215,0.002252,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173215,0.002252,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173215,0.002252,-0.003250,0.249979,0,0);}
.m18_c00459{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.ma7_c00459{transform:matrix(0.173470,0.001908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173470,0.001908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173470,0.001908,-0.002750,0.249985,0,0);}
.me3_c00459{transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m64_c00459{transform:matrix(0.175414,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175414,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175414,0.001930,-0.002750,0.249985,0,0);}
.meb_c00459{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.mb2_c00459{transform:matrix(0.176204,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176204,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176204,0.001938,-0.002750,0.249985,0,0);}
.mb_c00459{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m5a_c00459{transform:matrix(0.176339,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176339,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176339,0.001940,-0.002750,0.249985,0,0);}
.ma2_c00459{transform:matrix(0.176819,0.001945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176819,0.001945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176819,0.001945,-0.002750,0.249985,0,0);}
.mad_c00459{transform:matrix(0.177239,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177239,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177239,0.001950,-0.002750,0.249985,0,0);}
.m17_c00459{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.mec_c00459{transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177410,0.000000,0.000000,0.250000,0,0);}
.mb6_c00459{transform:matrix(0.177609,0.001954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177609,0.001954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177609,0.001954,-0.002750,0.249985,0,0);}
.m42_c00459{transform:matrix(0.177635,0.002309,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177635,0.002309,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177635,0.002309,-0.003250,0.249979,0,0);}
.m5e_c00459{transform:matrix(0.177784,0.001956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177784,0.001956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177784,0.001956,-0.002750,0.249985,0,0);}
.m5d_c00459{transform:matrix(0.178234,0.001961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178234,0.001961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178234,0.001961,-0.002750,0.249985,0,0);}
.m79_c00459{transform:matrix(0.178619,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178619,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178619,0.001965,-0.002750,0.249985,0,0);}
.mbd_c00459{transform:matrix(0.179329,0.001973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179329,0.001973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179329,0.001973,-0.002750,0.249985,0,0);}
.me6_c00459{transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179695,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180110,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{transform:matrix(0.181199,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181199,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181199,0.001993,-0.002750,0.249985,0,0);}
.m6d_c00459{transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);}
.mc9_c00459{transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181920,0.000000,0.000000,0.250000,0,0);}
.m7e_c00459{transform:matrix(0.181989,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181989,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181989,0.002002,-0.002750,0.249985,0,0);}
.m0_c00459{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.me_c00459{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.ma3_c00459{transform:matrix(0.183254,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183254,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183254,0.002016,-0.002750,0.249985,0,0);}
.m1e_c00459{transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);}
.mee_c00459{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{transform:matrix(0.184519,0.002030,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184519,0.002030,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184519,0.002030,-0.002750,0.249985,0,0);}
.m1b_c00459{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00459{transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185314,0.002038,-0.002750,0.249985,0,0);}
.mcc_c00459{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.me9_c00459{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.me8_c00459{transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);}
.m75_c00459{transform:matrix(0.186279,0.002049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186279,0.002049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186279,0.002049,-0.002750,0.249985,0,0);}
.mc_c00459{transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);}
.mbf_c00459{transform:matrix(0.186659,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186659,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186659,0.002053,-0.002750,0.249985,0,0);}
.m8c_c00459{transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186814,0.002055,-0.002750,0.249985,0,0);}
.m5c_c00459{transform:matrix(0.187124,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187124,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187124,0.002058,-0.002750,0.249985,0,0);}
.md2_c00459{transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187330,0.000000,0.000000,0.250000,0,0);}
.me0_c00459{transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187440,0.000000,0.000000,0.250000,0,0);}
.md1_c00459{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m41_c00459{transform:matrix(0.187794,0.002441,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187794,0.002441,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187794,0.002441,-0.003250,0.249979,0,0);}
.ma5_c00459{transform:matrix(0.188039,0.002068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188039,0.002068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188039,0.002068,-0.002750,0.249985,0,0);}
.m8d_c00459{transform:matrix(0.188164,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188164,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188164,0.002070,-0.002750,0.249985,0,0);}
.mcf_c00459{transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);}
.m96_c00459{transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191258,0.002104,-0.002750,0.249985,0,0);}
.m19_c00459{transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.191868,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191868,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191868,0.002111,-0.002750,0.249985,0,0);}
.m76_c00459{transform:matrix(0.191913,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191913,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191913,0.002111,-0.002750,0.249985,0,0);}
.m40_c00459{transform:matrix(0.191914,0.002495,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191914,0.002495,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191914,0.002495,-0.003250,0.249979,0,0);}
.m8e_c00459{transform:matrix(0.192218,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192218,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192218,0.002114,-0.002750,0.249985,0,0);}
.m73_c00459{transform:matrix(0.192628,0.002119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192628,0.002119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192628,0.002119,-0.002750,0.249985,0,0);}
.m9_c00459{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.193188,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193188,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193188,0.002125,-0.002750,0.249985,0,0);}
.m63_c00459{transform:matrix(0.193383,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193383,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193383,0.002127,-0.002750,0.249985,0,0);}
.mbe_c00459{transform:matrix(0.193403,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193403,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193403,0.002127,-0.002750,0.249985,0,0);}
.mb7_c00459{transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);}
.me1_c00459{transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{transform:matrix(0.193843,0.002132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193843,0.002132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193843,0.002132,-0.002750,0.249985,0,0);}
.m39_c00459{transform:matrix(0.193889,0.002521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193889,0.002521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193889,0.002521,-0.003250,0.249979,0,0);}
.m6a_c00459{transform:matrix(0.194353,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194353,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194353,0.002138,-0.002750,0.249985,0,0);}
.m8f_c00459{transform:matrix(0.194598,0.002141,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194598,0.002141,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194598,0.002141,-0.002750,0.249985,0,0);}
.m68_c00459{transform:matrix(0.195288,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195288,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195288,0.002148,-0.002750,0.249985,0,0);}
.m69_c00459{transform:matrix(0.195438,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195438,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195438,0.002150,-0.002750,0.249985,0,0);}
.m81_c00459{transform:matrix(0.195468,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195468,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195468,0.002150,-0.002750,0.249985,0,0);}
.m57_c00459{transform:matrix(0.197773,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197773,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197773,0.002176,-0.002750,0.249985,0,0);}
.m9f_c00459{transform:matrix(0.198163,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198163,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198163,0.002180,-0.002750,0.249985,0,0);}
.me4_c00459{transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199040,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.199068,0.002588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199068,0.002588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199068,0.002588,-0.003250,0.249979,0,0);}
.m8b_c00459{transform:matrix(0.199193,0.002191,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199193,0.002191,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199193,0.002191,-0.002750,0.249985,0,0);}
.m37_c00459{transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199368,0.002991,-0.003750,0.249972,0,0);}
.m6f_c00459{transform:matrix(0.200098,0.002201,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200098,0.002201,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200098,0.002201,-0.002750,0.249985,0,0);}
.m3_c00459{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.mc8_c00459{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.200403,0.002605,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200403,0.002605,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200403,0.002605,-0.003250,0.249979,0,0);}
.m99_c00459{transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);}
.m33_c00459{transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);}
.md7_c00459{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.mab_c00459{transform:matrix(0.201318,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201318,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201318,0.002214,-0.002750,0.249985,0,0);}
.mc5_c00459{transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201713,0.002219,-0.002750,0.249985,0,0);}
.m7_c00459{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md6_c00459{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.mb0_c00459{transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202303,0.002225,-0.002750,0.249985,0,0);}
.m2c_c00459{transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202490,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);}
.m7c_c00459{transform:matrix(0.203593,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203593,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203593,0.002240,-0.002750,0.249985,0,0);}
.ma4_c00459{transform:matrix(0.203673,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203673,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203673,0.002240,-0.002750,0.249985,0,0);}
.m11_c00459{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);}
.m10_c00459{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.205443,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205443,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205443,0.002260,-0.002750,0.249985,0,0);}
.m43_c00459{transform:matrix(0.205703,0.002674,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205703,0.002674,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205703,0.002674,-0.003250,0.249979,0,0);}
.m7a_c00459{transform:matrix(0.205833,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205833,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205833,0.002264,-0.002750,0.249985,0,0);}
.m9a_c00459{transform:matrix(0.206023,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206023,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206023,0.002266,-0.002750,0.249985,0,0);}
.ma0_c00459{transform:matrix(0.206153,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206153,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206153,0.002268,-0.002750,0.249985,0,0);}
.m25_c00459{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m72_c00459{transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);}
.mb1_c00459{transform:matrix(0.207062,0.002278,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207062,0.002278,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207062,0.002278,-0.002750,0.249985,0,0);}
.m6c_c00459{transform:matrix(0.207227,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207227,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207227,0.002280,-0.002750,0.249985,0,0);}
.m78_c00459{transform:matrix(0.207327,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207327,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207327,0.002281,-0.002750,0.249985,0,0);}
.m4d_c00459{transform:matrix(0.207577,0.002699,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207577,0.002699,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207577,0.002699,-0.003250,0.249979,0,0);}
.mcb_c00459{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.208807,0.002714,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208807,0.002714,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208807,0.002714,-0.003250,0.249979,0,0);}
.m58_c00459{transform:matrix(0.209567,0.002305,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209567,0.002305,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209567,0.002305,-0.002750,0.249985,0,0);}
.m20_c00459{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.mc6_c00459{transform:matrix(0.209942,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209942,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209942,0.002309,-0.002750,0.249985,0,0);}
.m7d_c00459{transform:matrix(0.211157,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211157,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211157,0.002323,-0.002750,0.249985,0,0);}
.m34_c00459{transform:matrix(0.211411,0.003171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211411,0.003171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211411,0.003171,-0.003750,0.249972,0,0);}
.m95_c00459{transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211667,0.002328,-0.002750,0.249985,0,0);}
.md0_c00459{transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212970,0.000000,0.000000,0.250000,0,0);}
.mb8_c00459{transform:matrix(0.213012,0.002343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213012,0.002343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213012,0.002343,-0.002750,0.249985,0,0);}
.m8a_c00459{transform:matrix(0.213147,0.002345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213147,0.002345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213147,0.002345,-0.002750,0.249985,0,0);}
.m88_c00459{transform:matrix(0.213922,0.002353,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213922,0.002353,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213922,0.002353,-0.002750,0.249985,0,0);}
.md_c00459{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.214182,0.002784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214182,0.002784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214182,0.002784,-0.003250,0.249979,0,0);}
.ma6_c00459{transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214317,0.002357,-0.002750,0.249985,0,0);}
.m28_c00459{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.mdd_c00459{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m94_c00459{transform:matrix(0.217352,0.002391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217352,0.002391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217352,0.002391,-0.002750,0.249985,0,0);}
.md5_c00459{transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217815,0.000000,0.000000,0.250000,0,0);}
.mdf_c00459{transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218045,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218080,0.000000,0.000000,0.250000,0,0);}
.me5_c00459{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.218972,0.002409,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218972,0.002409,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218972,0.002409,-0.002750,0.249985,0,0);}
.m52_c00459{transform:matrix(0.219977,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219977,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219977,0.002420,-0.002750,0.249985,0,0);}
.mc2_c00459{transform:matrix(0.220827,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220827,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220827,0.002429,-0.002750,0.249985,0,0);}
.maf_c00459{transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);}
.m90_c00459{transform:matrix(0.223291,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223291,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223291,0.002456,-0.002750,0.249985,0,0);}
.m47_c00459{transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);}
.mbc_c00459{transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);}
.m1a_c00459{transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.224516,0.002470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224516,0.002470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224516,0.002470,-0.002750,0.249985,0,0);}
.md9_c00459{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.ma1_c00459{transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);}
.mb9_c00459{transform:matrix(0.229041,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229041,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229041,0.002519,-0.002750,0.249985,0,0);}
.m24_c00459{transform:matrix(0.229060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229060,0.000000,0.000000,0.250000,0,0);}
.mbb_c00459{transform:matrix(0.229131,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229131,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229131,0.002520,-0.002750,0.249985,0,0);}
.mda_c00459{transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);}
.mc4_c00459{transform:matrix(0.230451,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230451,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230451,0.002535,-0.002750,0.249985,0,0);}
.m2a_c00459{transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232685,0.000000,0.000000,0.250000,0,0);}
.m91_c00459{transform:matrix(0.233926,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233926,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233926,0.002573,-0.002750,0.249985,0,0);}
.m4_c00459{transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.234979,0.003525,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234979,0.003525,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234979,0.003525,-0.003750,0.249972,0,0);}
.m4b_c00459{transform:matrix(0.235625,0.003063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235625,0.003063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235625,0.003063,-0.003250,0.249979,0,0);}
.m4e_c00459{transform:matrix(0.235980,0.003068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235980,0.003068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235980,0.003068,-0.003250,0.249979,0,0);}
.mdb_c00459{transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236855,0.000000,0.000000,0.250000,0,0);}
.mae_c00459{transform:matrix(0.241495,0.002656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241495,0.002656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241495,0.002656,-0.002750,0.249985,0,0);}
.mb4_c00459{transform:matrix(0.242220,0.002664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242220,0.002664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242220,0.002664,-0.002750,0.249985,0,0);}
.md8_c00459{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m85_c00459{transform:matrix(0.244400,0.002688,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244400,0.002688,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244400,0.002688,-0.002750,0.249985,0,0);}
.m2e_c00459{transform:matrix(0.244820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244820,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.m7f_c00459{transform:matrix(0.247870,0.002727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247870,0.002727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247870,0.002727,-0.002750,0.249985,0,0);}
.m9c_c00459{transform:matrix(0.247985,0.002728,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247985,0.002728,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247985,0.002728,-0.002750,0.249985,0,0);}
.mcd_c00459{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.m31_c00459{transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.259719,0.002857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259719,0.002857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259719,0.002857,-0.002750,0.249985,0,0);}
.m97_c00459{transform:matrix(0.260459,0.002865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260459,0.002865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260459,0.002865,-0.002750,0.249985,0,0);}
.m60_c00459{transform:matrix(0.261559,0.002877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261559,0.002877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261559,0.002877,-0.002750,0.249985,0,0);}
.m21_c00459{transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.274763,0.003022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274763,0.003022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274763,0.003022,-0.002750,0.249985,0,0);}
.m27_c00459{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.mc7_c00459{transform:matrix(0.288498,0.003173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288498,0.003173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288498,0.003173,-0.002750,0.249985,0,0);}
.m2d_c00459{transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);}
.m30_c00459{transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.316014,0.004740,-0.003750,0.249972,0,0);-ms-transform:matrix(0.316014,0.004740,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.316014,0.004740,-0.003750,0.249972,0,0);}
.m9b_c00459{transform:matrix(0.320771,0.003528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.320771,0.003528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.320771,0.003528,-0.002750,0.249985,0,0);}
.m35_c00459{transform:matrix(0.339582,0.005094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.339582,0.005094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.339582,0.005094,-0.003750,0.249972,0,0);}
.m9e_c00459{transform:matrix(0.347429,0.003822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.347429,0.003822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.347429,0.003822,-0.002750,0.249985,0,0);}
.m84_c00459{transform:matrix(0.360248,0.003963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360248,0.003963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360248,0.003963,-0.002750,0.249985,0,0);}
.m12_c00459{transform:matrix(0.492695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00459{transform:matrix(0.493430,0.005428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.493430,0.005428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.493430,0.005428,-0.002750,0.249985,0,0);}
.mf1_c00459{transform:matrix(1.502665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502665,0.000000,0.000000,0.250000,0,0);}
.mf0_c00459{transform:matrix(1.789465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.789465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.789465,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:0.000000px;}
.fc0_c00459{color:transparent;}
.fs19_c00459{font-size:23.100000px;}
.fs3_c00459{font-size:50.400000px;}
.fs5_c00459{font-size:52.500000px;}
.fs16_c00459{font-size:55.650000px;}
.fs4_c00459{font-size:57.750000px;}
.fsa_c00459{font-size:57.753494px;}
.fs9_c00459{font-size:57.754880px;}
.fs12_c00459{font-size:59.853621px;}
.fs15_c00459{font-size:63.000000px;}
.fs8_c00459{font-size:63.005323px;}
.fs0_c00459{font-size:64.050000px;}
.fse_c00459{font-size:64.053875px;}
.fs14_c00459{font-size:65.100000px;}
.fs10_c00459{font-size:65.103938px;}
.fs17_c00459{font-size:66.150000px;}
.fsd_c00459{font-size:66.154002px;}
.fs2_c00459{font-size:67.200000px;}
.fsb_c00459{font-size:67.204065px;}
.fs18_c00459{font-size:68.250000px;}
.fsf_c00459{font-size:68.254129px;}
.fs13_c00459{font-size:69.304193px;}
.fs7_c00459{font-size:69.305856px;}
.fsc_c00459{font-size:70.354256px;}
.fs6_c00459{font-size:71.408032px;}
.fs11_c00459{font-size:72.454383px;}
.fs1_c00459{font-size:73.500000px;}
.y0_c00459{bottom:0.000000px;}
.yba_c00459{bottom:33.808500px;}
.yb9_c00459{bottom:50.502000px;}
.yb8_c00459{bottom:67.323000px;}
.yb7_c00459{bottom:83.304000px;}
.yb6_c00459{bottom:100.126500px;}
.yb4_c00459{bottom:116.959645px;}
.yb3_c00459{bottom:116.959749px;}
.yb5_c00459{bottom:116.959911px;}
.yb2_c00459{bottom:116.959999px;}
.yab_c00459{bottom:133.269799px;}
.yac_c00459{bottom:133.270432px;}
.yad_c00459{bottom:133.270932px;}
.yaf_c00459{bottom:133.271058px;}
.yae_c00459{bottom:133.271308px;}
.yb0_c00459{bottom:133.271644px;}
.yb1_c00459{bottom:133.271947px;}
.ya2_c00459{bottom:151.671520px;}
.ya3_c00459{bottom:151.672003px;}
.ya4_c00459{bottom:151.672170px;}
.ya5_c00459{bottom:151.672696px;}
.ya6_c00459{bottom:151.673253px;}
.ya8_c00459{bottom:151.673362px;}
.ya7_c00459{bottom:151.673466px;}
.ya9_c00459{bottom:151.673649px;}
.yaa_c00459{bottom:151.674148px;}
.ya0_c00459{bottom:168.674835px;}
.y9f_c00459{bottom:168.675148px;}
.ya1_c00459{bottom:168.675571px;}
.y9e_c00459{bottom:168.675656px;}
.y9d_c00459{bottom:168.675699px;}
.y9c_c00459{bottom:168.675933px;}
.y9b_c00459{bottom:168.675977px;}
.y9a_c00459{bottom:183.357342px;}
.y99_c00459{bottom:184.311601px;}
.y98_c00459{bottom:184.825713px;}
.y97_c00459{bottom:185.464806px;}
.y96_c00459{bottom:185.873697px;}
.y95_c00459{bottom:186.314637px;}
.y94_c00459{bottom:187.101441px;}
.y93_c00459{bottom:201.014316px;}
.y92_c00459{bottom:201.572478px;}
.y91_c00459{bottom:201.732908px;}
.y90_c00459{bottom:202.448859px;}
.y8f_c00459{bottom:203.141117px;}
.y8e_c00459{bottom:203.681492px;}
.y8d_c00459{bottom:203.841723px;}
.y8c_c00459{bottom:217.893832px;}
.y8b_c00459{bottom:218.076987px;}
.y8a_c00459{bottom:218.708806px;}
.y89_c00459{bottom:218.954421px;}
.y88_c00459{bottom:219.315419px;}
.y87_c00459{bottom:220.245134px;}
.y86_c00459{bottom:220.665539px;}
.y85_c00459{bottom:221.122188px;}
.y84_c00459{bottom:234.782601px;}
.y83_c00459{bottom:235.065120px;}
.y82_c00459{bottom:235.848009px;}
.y81_c00459{bottom:236.036910px;}
.y80_c00459{bottom:237.042980px;}
.y7f_c00459{bottom:237.293099px;}
.y7e_c00459{bottom:237.552803px;}
.y7d_c00459{bottom:238.404977px;}
.y7b_c00459{bottom:252.601010px;}
.y77_c00459{bottom:252.601301px;}
.y78_c00459{bottom:252.601424px;}
.y7a_c00459{bottom:252.601443px;}
.y76_c00459{bottom:252.601688px;}
.y7c_c00459{bottom:252.601733px;}
.y79_c00459{bottom:252.601830px;}
.y75_c00459{bottom:252.602391px;}
.y74_c00459{bottom:268.905333px;}
.y73_c00459{bottom:269.363684px;}
.y72_c00459{bottom:269.613882px;}
.y71_c00459{bottom:270.065730px;}
.y70_c00459{bottom:270.645599px;}
.y6f_c00459{bottom:270.872562px;}
.y6e_c00459{bottom:271.060863px;}
.y6d_c00459{bottom:271.244939px;}
.y6c_c00459{bottom:271.343998px;}
.y6b_c00459{bottom:285.276282px;}
.y6a_c00459{bottom:285.365316px;}
.y69_c00459{bottom:285.926712px;}
.y68_c00459{bottom:286.378251px;}
.y67_c00459{bottom:287.200925px;}
.y66_c00459{bottom:287.423790px;}
.y65_c00459{bottom:288.086166px;}
.y63_c00459{bottom:303.750000px;}
.y64_c00459{bottom:303.750377px;}
.y61_c00459{bottom:303.750548px;}
.y62_c00459{bottom:303.750551px;}
.y60_c00459{bottom:303.750891px;}
.y5c_c00459{bottom:303.751139px;}
.y5d_c00459{bottom:303.751412px;}
.y5e_c00459{bottom:303.751578px;}
.y5f_c00459{bottom:303.751624px;}
.y53_c00459{bottom:320.518052px;}
.y5a_c00459{bottom:320.518186px;}
.y56_c00459{bottom:320.518251px;}
.y55_c00459{bottom:320.518295px;}
.y57_c00459{bottom:320.518481px;}
.y59_c00459{bottom:320.518484px;}
.y58_c00459{bottom:320.518497px;}
.y52_c00459{bottom:320.518635px;}
.y54_c00459{bottom:320.518788px;}
.y5b_c00459{bottom:320.518803px;}
.y4d_c00459{bottom:337.526924px;}
.y4c_c00459{bottom:337.527254px;}
.y4e_c00459{bottom:337.527480px;}
.y4a_c00459{bottom:337.527698px;}
.y4b_c00459{bottom:337.527804px;}
.y4f_c00459{bottom:337.527827px;}
.y50_c00459{bottom:337.528190px;}
.y51_c00459{bottom:337.528686px;}
.y48_c00459{bottom:354.652275px;}
.y49_c00459{bottom:354.652292px;}
.y47_c00459{bottom:354.652648px;}
.y46_c00459{bottom:354.652976px;}
.y45_c00459{bottom:354.653243px;}
.y43_c00459{bottom:354.653313px;}
.y42_c00459{bottom:354.653640px;}
.y44_c00459{bottom:354.653706px;}
.y41_c00459{bottom:369.806945px;}
.y40_c00459{bottom:370.243023px;}
.y3f_c00459{bottom:370.412561px;}
.y3e_c00459{bottom:371.000489px;}
.y3d_c00459{bottom:371.689842px;}
.y3c_c00459{bottom:372.206193px;}
.y3b_c00459{bottom:372.601500px;}
.y36_c00459{bottom:389.544871px;}
.y35_c00459{bottom:389.545143px;}
.y3a_c00459{bottom:389.545195px;}
.y37_c00459{bottom:389.545500px;}
.y39_c00459{bottom:389.545557px;}
.y38_c00459{bottom:389.545608px;}
.y34_c00459{bottom:389.545854px;}
.y33_c00459{bottom:404.310523px;}
.y32_c00459{bottom:404.806732px;}
.y31_c00459{bottom:405.323011px;}
.y30_c00459{bottom:405.978936px;}
.y2f_c00459{bottom:406.428063px;}
.y2e_c00459{bottom:406.662670px;}
.y2d_c00459{bottom:407.159503px;}
.y2c_c00459{bottom:421.307460px;}
.y2b_c00459{bottom:421.689562px;}
.y2a_c00459{bottom:422.195509px;}
.y29_c00459{bottom:422.626479px;}
.y28_c00459{bottom:423.280021px;}
.y27_c00459{bottom:423.578976px;}
.y26_c00459{bottom:424.178542px;}
.y25_c00459{bottom:424.441500px;}
.y24_c00459{bottom:437.523870px;}
.y23_c00459{bottom:438.381593px;}
.y22_c00459{bottom:439.519215px;}
.y21_c00459{bottom:439.725922px;}
.y20_c00459{bottom:439.905022px;}
.y1f_c00459{bottom:441.005700px;}
.y1e_c00459{bottom:441.338542px;}
.y1d_c00459{bottom:441.723000px;}
.y1c_c00459{bottom:454.027500px;}
.y1b_c00459{bottom:454.447500px;}
.y1a_c00459{bottom:455.647500px;}
.y19_c00459{bottom:456.841500px;}
.y18_c00459{bottom:457.771500px;}
.y17_c00459{bottom:458.119500px;}
.y16_c00459{bottom:459.274500px;}
.ybb_c00459{bottom:461.160000px;}
.y15_c00459{bottom:471.199500px;}
.y14_c00459{bottom:471.660000px;}
.y13_c00459{bottom:472.080000px;}
.y12_c00459{bottom:472.390500px;}
.y11_c00459{bottom:473.617500px;}
.y10_c00459{bottom:474.063000px;}
.yf_c00459{bottom:475.312500px;}
.ye_c00459{bottom:475.740000px;}
.yd_c00459{bottom:490.773000px;}
.yc_c00459{bottom:506.692500px;}
.yb_c00459{bottom:521.541000px;}
.ya_c00459{bottom:521.860500px;}
.y9_c00459{bottom:522.562500px;}
.y8_c00459{bottom:523.003500px;}
.y7_c00459{bottom:523.833000px;}
.y6_c00459{bottom:524.229000px;}
.y5_c00459{bottom:524.506500px;}
.y4_c00459{bottom:524.881500px;}
.y3_c00459{bottom:540.873000px;}
.y2_c00459{bottom:557.740500px;}
.y1_c00459{bottom:573.861000px;}
.h1b_c00459{height:23.100000px;}
.h5_c00459{height:50.400000px;}
.h7_c00459{height:52.500000px;}
.h18_c00459{height:55.650000px;}
.h6_c00459{height:57.750000px;}
.hc_c00459{height:57.753494px;}
.hb_c00459{height:57.754880px;}
.h14_c00459{height:59.853621px;}
.h17_c00459{height:63.000000px;}
.ha_c00459{height:63.005323px;}
.h2_c00459{height:64.050000px;}
.h10_c00459{height:64.053875px;}
.h16_c00459{height:65.100000px;}
.h12_c00459{height:65.103938px;}
.h19_c00459{height:66.150000px;}
.hf_c00459{height:66.154002px;}
.h4_c00459{height:67.200000px;}
.hd_c00459{height:67.204065px;}
.h1a_c00459{height:68.250000px;}
.h11_c00459{height:68.254129px;}
.h15_c00459{height:69.304193px;}
.h9_c00459{height:69.305856px;}
.he_c00459{height:70.354256px;}
.h8_c00459{height:71.408032px;}
.h13_c00459{height:72.454383px;}
.h3_c00459{height:73.500000px;}
.h0_c00459{height:617.700000px;}
.h1_c00459{height:618.000000px;}
.w0_c00459{width:359.100000px;}
.w1_c00459{width:359.250000px;}
.x0_c00459{left:0.000000px;}
.x58_c00459{left:29.066824px;}
.x70_c00459{left:32.657626px;}
.x73_c00459{left:34.278436px;}
.x78_c00459{left:35.910000px;}
.x62_c00459{left:37.395897px;}
.x41_c00459{left:38.607774px;}
.x47_c00459{left:39.687042px;}
.x1f_c00459{left:40.843500px;}
.x12_c00459{left:42.768000px;}
.x4_c00459{left:45.090000px;}
.x3c_c00459{left:49.546500px;}
.x63_c00459{left:51.962397px;}
.x1_c00459{left:53.190000px;}
.x59_c00459{left:57.397638px;}
.x5b_c00459{left:59.665386px;}
.x31_c00459{left:60.898500px;}
.x5_c00459{left:63.450000px;}
.x20_c00459{left:67.578000px;}
.xc_c00459{left:69.120000px;}
.x13_c00459{left:71.638500px;}
.x3a_c00459{left:73.712007px;}
.x42_c00459{left:75.869279px;}
.x4d_c00459{left:81.269497px;}
.x51_c00459{left:82.346709px;}
.x36_c00459{left:86.319128px;}
.x2c_c00459{left:90.838500px;}
.x14_c00459{left:92.979000px;}
.x6b_c00459{left:95.303605px;}
.x56_c00459{left:99.225669px;}
.x64_c00459{left:101.087397px;}
.x27_c00459{left:102.996000px;}
.x32_c00459{left:107.019000px;}
.x6_c00459{left:108.810000px;}
.x52_c00459{left:110.698641px;}
.x74_c00459{left:112.583407px;}
.x67_c00459{left:114.073549px;}
.x2_c00459{left:115.290000px;}
.x4e_c00459{left:117.182337px;}
.x43_c00459{left:119.611575px;}
.x28_c00459{left:121.288500px;}
.x15_c00459{left:123.484500px;}
.x75_c00459{left:125.003409px;}
.x19_c00459{left:129.060000px;}
.x4f_c00459{left:130.142404px;}
.x7_c00459{left:131.760000px;}
.x5e_c00459{left:135.931488px;}
.x7b_c00459{left:137.700000px;}
.x68_c00459{left:139.653147px;}
.x6c_c00459{left:141.746232px;}
.xd_c00459{left:142.830000px;}
.x21_c00459{left:145.627500px;}
.x37_c00459{left:148.377227px;}
.x7c_c00459{left:149.850000px;}
.x48_c00459{left:153.634819px;}
.x6a_c00459{left:154.707310px;}
.x5a_c00459{left:157.001743px;}
.xe_c00459{left:159.030000px;}
.x6d_c00459{left:160.106959px;}
.x2d_c00459{left:164.217000px;}
.x29_c00459{left:170.218500px;}
.x7d_c00459{left:171.720000px;}
.x22_c00459{left:173.448000px;}
.x3_c00459{left:175.230000px;}
.x5f_c00459{left:177.792573px;}
.x33_c00459{left:180.288000px;}
.x8_c00459{left:181.980000px;}
.x49_c00459{left:185.497181px;}
.x16_c00459{left:187.281000px;}
.x2e_c00459{left:189.937500px;}
.x44_c00459{left:193.596018px;}
.x3d_c00459{left:195.093000px;}
.x7a_c00459{left:197.100000px;}
.x50_c00459{left:199.266270px;}
.x4a_c00459{left:201.967677px;}
.x60_c00459{left:205.564462px;}
.x38_c00459{left:208.065287px;}
.x69_c00459{left:211.758687px;}
.xf_c00459{left:212.760000px;}
.x6e_c00459{left:215.730691px;}
.x7e_c00459{left:217.620000px;}
.x17_c00459{left:221.239500px;}
.x61_c00459{left:224.483550px;}
.x1a_c00459{left:226.260000px;}
.x65_c00459{left:229.106397px;}
.x45_c00459{left:230.857523px;}
.x5c_c00459{left:231.935725px;}
.x2a_c00459{left:233.070000px;}
.x53_c00459{left:235.716255px;}
.x1b_c00459{left:240.570000px;}
.x10_c00459{left:241.650000px;}
.x66_c00459{left:243.690897px;}
.x4b_c00459{left:245.439941px;}
.x3e_c00459{left:248.541000px;}
.x23_c00459{left:250.177500px;}
.x34_c00459{left:252.358500px;}
.x39_c00459{left:255.049515px;}
.x9_c00459{left:257.580000px;}
.x71_c00459{left:258.661483px;}
.x3f_c00459{left:263.953500px;}
.x2f_c00459{left:265.779000px;}
.x46_c00459{left:267.850494px;}
.x24_c00459{left:269.547000px;}
.x3b_c00459{left:271.367411px;}
.xa_c00459{left:273.780000px;}
.x18_c00459{left:275.227500px;}
.x4c_c00459{left:276.762236px;}
.x76_c00459{left:278.370000px;}
.x35_c00459{left:281.751000px;}
.x57_c00459{left:286.359669px;}
.x79_c00459{left:288.630000px;}
.x1c_c00459{left:294.300000px;}
.x25_c00459{left:295.807500px;}
.x54_c00459{left:297.819262px;}
.x11_c00459{left:299.970000px;}
.x5d_c00459{left:301.599657px;}
.x40_c00459{left:303.597000px;}
.x77_c00459{left:310.230000px;}
.x1d_c00459{left:312.120000px;}
.x55_c00459{left:314.559792px;}
.x6f_c00459{left:315.635286px;}
.x2b_c00459{left:318.343500px;}
.xb_c00459{left:320.490000px;}
.x30_c00459{left:322.960500px;}
.x26_c00459{left:324.595500px;}
.x1e_c00459{left:328.320000px;}
.x72_c00459{left:333.726075px;}
.x80_c00459{left:352.620000px;}
.x7f_c00459{left:355.590000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs19_c00459{font-size:20.533333pt;}
.fs3_c00459{font-size:44.800000pt;}
.fs5_c00459{font-size:46.666667pt;}
.fs16_c00459{font-size:49.466667pt;}
.fs4_c00459{font-size:51.333333pt;}
.fsa_c00459{font-size:51.336439pt;}
.fs9_c00459{font-size:51.337671pt;}
.fs12_c00459{font-size:53.203219pt;}
.fs15_c00459{font-size:56.000000pt;}
.fs8_c00459{font-size:56.004732pt;}
.fs0_c00459{font-size:56.933333pt;}
.fse_c00459{font-size:56.936778pt;}
.fs14_c00459{font-size:57.866667pt;}
.fs10_c00459{font-size:57.870167pt;}
.fs17_c00459{font-size:58.800000pt;}
.fsd_c00459{font-size:58.803557pt;}
.fs2_c00459{font-size:59.733333pt;}
.fsb_c00459{font-size:59.736947pt;}
.fs18_c00459{font-size:60.666667pt;}
.fsf_c00459{font-size:60.670337pt;}
.fs13_c00459{font-size:61.603727pt;}
.fs7_c00459{font-size:61.605205pt;}
.fsc_c00459{font-size:62.537116pt;}
.fs6_c00459{font-size:63.473806pt;}
.fs11_c00459{font-size:64.403896pt;}
.fs1_c00459{font-size:65.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.yba_c00459{bottom:30.052000pt;}
.yb9_c00459{bottom:44.890667pt;}
.yb8_c00459{bottom:59.842667pt;}
.yb7_c00459{bottom:74.048000pt;}
.yb6_c00459{bottom:89.001333pt;}
.yb4_c00459{bottom:103.964129pt;}
.yb3_c00459{bottom:103.964221pt;}
.yb5_c00459{bottom:103.964365pt;}
.yb2_c00459{bottom:103.964444pt;}
.yab_c00459{bottom:118.462044pt;}
.yac_c00459{bottom:118.462607pt;}
.yad_c00459{bottom:118.463051pt;}
.yaf_c00459{bottom:118.463163pt;}
.yae_c00459{bottom:118.463385pt;}
.yb0_c00459{bottom:118.463684pt;}
.yb1_c00459{bottom:118.463953pt;}
.ya2_c00459{bottom:134.819129pt;}
.ya3_c00459{bottom:134.819559pt;}
.ya4_c00459{bottom:134.819707pt;}
.ya5_c00459{bottom:134.820175pt;}
.ya6_c00459{bottom:134.820669pt;}
.ya8_c00459{bottom:134.820767pt;}
.ya7_c00459{bottom:134.820859pt;}
.ya9_c00459{bottom:134.821021pt;}
.yaa_c00459{bottom:134.821465pt;}
.ya0_c00459{bottom:149.933187pt;}
.y9f_c00459{bottom:149.933465pt;}
.ya1_c00459{bottom:149.933841pt;}
.y9e_c00459{bottom:149.933916pt;}
.y9d_c00459{bottom:149.933955pt;}
.y9c_c00459{bottom:149.934163pt;}
.y9b_c00459{bottom:149.934201pt;}
.y9a_c00459{bottom:162.984304pt;}
.y99_c00459{bottom:163.832535pt;}
.y98_c00459{bottom:164.289523pt;}
.y97_c00459{bottom:164.857605pt;}
.y96_c00459{bottom:165.221064pt;}
.y95_c00459{bottom:165.613011pt;}
.y94_c00459{bottom:166.312392pt;}
.y93_c00459{bottom:178.679392pt;}
.y92_c00459{bottom:179.175536pt;}
.y91_c00459{bottom:179.318140pt;}
.y90_c00459{bottom:179.954541pt;}
.y8f_c00459{bottom:180.569881pt;}
.y8e_c00459{bottom:181.050215pt;}
.y8d_c00459{bottom:181.192643pt;}
.y8c_c00459{bottom:193.683407pt;}
.y8b_c00459{bottom:193.846211pt;}
.y8a_c00459{bottom:194.407828pt;}
.y89_c00459{bottom:194.626152pt;}
.y88_c00459{bottom:194.947039pt;}
.y87_c00459{bottom:195.773452pt;}
.y86_c00459{bottom:196.147145pt;}
.y85_c00459{bottom:196.553056pt;}
.y84_c00459{bottom:208.695645pt;}
.y83_c00459{bottom:208.946773pt;}
.y82_c00459{bottom:209.642675pt;}
.y81_c00459{bottom:209.810587pt;}
.y80_c00459{bottom:210.704871pt;}
.y7f_c00459{bottom:210.927199pt;}
.y7e_c00459{bottom:211.158047pt;}
.y7d_c00459{bottom:211.915535pt;}
.y7b_c00459{bottom:224.534231pt;}
.y77_c00459{bottom:224.534489pt;}
.y78_c00459{bottom:224.534599pt;}
.y7a_c00459{bottom:224.534616pt;}
.y76_c00459{bottom:224.534833pt;}
.y7c_c00459{bottom:224.534873pt;}
.y79_c00459{bottom:224.534960pt;}
.y75_c00459{bottom:224.535459pt;}
.y74_c00459{bottom:239.026963pt;}
.y73_c00459{bottom:239.434385pt;}
.y72_c00459{bottom:239.656784pt;}
.y71_c00459{bottom:240.058427pt;}
.y70_c00459{bottom:240.573865pt;}
.y6f_c00459{bottom:240.775611pt;}
.y6e_c00459{bottom:240.942989pt;}
.y6d_c00459{bottom:241.106612pt;}
.y6c_c00459{bottom:241.194665pt;}
.y6b_c00459{bottom:253.578917pt;}
.y6a_c00459{bottom:253.658059pt;}
.y69_c00459{bottom:254.157077pt;}
.y68_c00459{bottom:254.558445pt;}
.y67_c00459{bottom:255.289711pt;}
.y66_c00459{bottom:255.487813pt;}
.y65_c00459{bottom:256.076592pt;}
.y63_c00459{bottom:270.000000pt;}
.y64_c00459{bottom:270.000335pt;}
.y61_c00459{bottom:270.000487pt;}
.y62_c00459{bottom:270.000489pt;}
.y60_c00459{bottom:270.000792pt;}
.y5c_c00459{bottom:270.001012pt;}
.y5d_c00459{bottom:270.001255pt;}
.y5e_c00459{bottom:270.001403pt;}
.y5f_c00459{bottom:270.001444pt;}
.y53_c00459{bottom:284.904935pt;}
.y5a_c00459{bottom:284.905055pt;}
.y56_c00459{bottom:284.905112pt;}
.y55_c00459{bottom:284.905151pt;}
.y57_c00459{bottom:284.905316pt;}
.y59_c00459{bottom:284.905319pt;}
.y58_c00459{bottom:284.905331pt;}
.y52_c00459{bottom:284.905453pt;}
.y54_c00459{bottom:284.905589pt;}
.y5b_c00459{bottom:284.905603pt;}
.y4d_c00459{bottom:300.023932pt;}
.y4c_c00459{bottom:300.024225pt;}
.y4e_c00459{bottom:300.024427pt;}
.y4a_c00459{bottom:300.024620pt;}
.y4b_c00459{bottom:300.024715pt;}
.y4f_c00459{bottom:300.024735pt;}
.y50_c00459{bottom:300.025057pt;}
.y51_c00459{bottom:300.025499pt;}
.y48_c00459{bottom:315.246467pt;}
.y49_c00459{bottom:315.246481pt;}
.y47_c00459{bottom:315.246799pt;}
.y46_c00459{bottom:315.247089pt;}
.y45_c00459{bottom:315.247327pt;}
.y43_c00459{bottom:315.247389pt;}
.y42_c00459{bottom:315.247680pt;}
.y44_c00459{bottom:315.247739pt;}
.y41_c00459{bottom:328.717284pt;}
.y40_c00459{bottom:329.104909pt;}
.y3f_c00459{bottom:329.255609pt;}
.y3e_c00459{bottom:329.778212pt;}
.y3d_c00459{bottom:330.390971pt;}
.y3c_c00459{bottom:330.849949pt;}
.y3b_c00459{bottom:331.201333pt;}
.y36_c00459{bottom:346.262108pt;}
.y35_c00459{bottom:346.262349pt;}
.y3a_c00459{bottom:346.262396pt;}
.y37_c00459{bottom:346.262667pt;}
.y39_c00459{bottom:346.262717pt;}
.y38_c00459{bottom:346.262763pt;}
.y34_c00459{bottom:346.262981pt;}
.y33_c00459{bottom:359.387132pt;}
.y32_c00459{bottom:359.828207pt;}
.y31_c00459{bottom:360.287121pt;}
.y30_c00459{bottom:360.870165pt;}
.y2f_c00459{bottom:361.269389pt;}
.y2e_c00459{bottom:361.477929pt;}
.y2d_c00459{bottom:361.919559pt;}
.y2c_c00459{bottom:374.495520pt;}
.y2b_c00459{bottom:374.835167pt;}
.y2a_c00459{bottom:375.284897pt;}
.y29_c00459{bottom:375.667981pt;}
.y28_c00459{bottom:376.248908pt;}
.y27_c00459{bottom:376.514645pt;}
.y26_c00459{bottom:377.047593pt;}
.y25_c00459{bottom:377.281333pt;}
.y24_c00459{bottom:388.910107pt;}
.y23_c00459{bottom:389.672527pt;}
.y22_c00459{bottom:390.683747pt;}
.y21_c00459{bottom:390.867487pt;}
.y20_c00459{bottom:391.026687pt;}
.y1f_c00459{bottom:392.005067pt;}
.y1e_c00459{bottom:392.300927pt;}
.y1d_c00459{bottom:392.642667pt;}
.y1c_c00459{bottom:403.580000pt;}
.y1b_c00459{bottom:403.953333pt;}
.y1a_c00459{bottom:405.020000pt;}
.y19_c00459{bottom:406.081333pt;}
.y18_c00459{bottom:406.908000pt;}
.y17_c00459{bottom:407.217333pt;}
.y16_c00459{bottom:408.244000pt;}
.ybb_c00459{bottom:409.920000pt;}
.y15_c00459{bottom:418.844000pt;}
.y14_c00459{bottom:419.253333pt;}
.y13_c00459{bottom:419.626667pt;}
.y12_c00459{bottom:419.902667pt;}
.y11_c00459{bottom:420.993333pt;}
.y10_c00459{bottom:421.389333pt;}
.yf_c00459{bottom:422.500000pt;}
.ye_c00459{bottom:422.880000pt;}
.yd_c00459{bottom:436.242667pt;}
.yc_c00459{bottom:450.393333pt;}
.yb_c00459{bottom:463.592000pt;}
.ya_c00459{bottom:463.876000pt;}
.y9_c00459{bottom:464.500000pt;}
.y8_c00459{bottom:464.892000pt;}
.y7_c00459{bottom:465.629333pt;}
.y6_c00459{bottom:465.981333pt;}
.y5_c00459{bottom:466.228000pt;}
.y4_c00459{bottom:466.561333pt;}
.y3_c00459{bottom:480.776000pt;}
.y2_c00459{bottom:495.769333pt;}
.y1_c00459{bottom:510.098667pt;}
.h1b_c00459{height:20.533333pt;}
.h5_c00459{height:44.800000pt;}
.h7_c00459{height:46.666667pt;}
.h18_c00459{height:49.466667pt;}
.h6_c00459{height:51.333333pt;}
.hc_c00459{height:51.336439pt;}
.hb_c00459{height:51.337671pt;}
.h14_c00459{height:53.203219pt;}
.h17_c00459{height:56.000000pt;}
.ha_c00459{height:56.004732pt;}
.h2_c00459{height:56.933333pt;}
.h10_c00459{height:56.936778pt;}
.h16_c00459{height:57.866667pt;}
.h12_c00459{height:57.870167pt;}
.h19_c00459{height:58.800000pt;}
.hf_c00459{height:58.803557pt;}
.h4_c00459{height:59.733333pt;}
.hd_c00459{height:59.736947pt;}
.h1a_c00459{height:60.666667pt;}
.h11_c00459{height:60.670337pt;}
.h15_c00459{height:61.603727pt;}
.h9_c00459{height:61.605205pt;}
.he_c00459{height:62.537116pt;}
.h8_c00459{height:63.473806pt;}
.h13_c00459{height:64.403896pt;}
.h3_c00459{height:65.333333pt;}
.h0_c00459{height:549.066667pt;}
.h1_c00459{height:549.333333pt;}
.w0_c00459{width:319.200000pt;}
.w1_c00459{width:319.333333pt;}
.x0_c00459{left:0.000000pt;}
.x58_c00459{left:25.837177pt;}
.x70_c00459{left:29.029001pt;}
.x73_c00459{left:30.469721pt;}
.x78_c00459{left:31.920000pt;}
.x62_c00459{left:33.240797pt;}
.x41_c00459{left:34.318021pt;}
.x47_c00459{left:35.277371pt;}
.x1f_c00459{left:36.305333pt;}
.x12_c00459{left:38.016000pt;}
.x4_c00459{left:40.080000pt;}
.x3c_c00459{left:44.041333pt;}
.x63_c00459{left:46.188797pt;}
.x1_c00459{left:47.280000pt;}
.x59_c00459{left:51.020123pt;}
.x5b_c00459{left:53.035899pt;}
.x31_c00459{left:54.132000pt;}
.x5_c00459{left:56.400000pt;}
.x20_c00459{left:60.069333pt;}
.xc_c00459{left:61.440000pt;}
.x13_c00459{left:63.678667pt;}
.x3a_c00459{left:65.521784pt;}
.x42_c00459{left:67.439359pt;}
.x4d_c00459{left:72.239553pt;}
.x51_c00459{left:73.197075pt;}
.x36_c00459{left:76.728113pt;}
.x2c_c00459{left:80.745333pt;}
.x14_c00459{left:82.648000pt;}
.x6b_c00459{left:84.714316pt;}
.x56_c00459{left:88.200595pt;}
.x64_c00459{left:89.855464pt;}
.x27_c00459{left:91.552000pt;}
.x32_c00459{left:95.128000pt;}
.x6_c00459{left:96.720000pt;}
.x52_c00459{left:98.398792pt;}
.x74_c00459{left:100.074140pt;}
.x67_c00459{left:101.398711pt;}
.x2_c00459{left:102.480000pt;}
.x4e_c00459{left:104.162077pt;}
.x43_c00459{left:106.321400pt;}
.x28_c00459{left:107.812000pt;}
.x15_c00459{left:109.764000pt;}
.x75_c00459{left:111.114141pt;}
.x19_c00459{left:114.720000pt;}
.x4f_c00459{left:115.682137pt;}
.x7_c00459{left:117.120000pt;}
.x5e_c00459{left:120.827989pt;}
.x7b_c00459{left:122.400000pt;}
.x68_c00459{left:124.136131pt;}
.x6c_c00459{left:125.996651pt;}
.xd_c00459{left:126.960000pt;}
.x21_c00459{left:129.446667pt;}
.x37_c00459{left:131.890868pt;}
.x7c_c00459{left:133.200000pt;}
.x48_c00459{left:136.564284pt;}
.x6a_c00459{left:137.517609pt;}
.x5a_c00459{left:139.557105pt;}
.xe_c00459{left:141.360000pt;}
.x6d_c00459{left:142.317297pt;}
.x2d_c00459{left:145.970667pt;}
.x29_c00459{left:151.305333pt;}
.x7d_c00459{left:152.640000pt;}
.x22_c00459{left:154.176000pt;}
.x3_c00459{left:155.760000pt;}
.x5f_c00459{left:158.037843pt;}
.x33_c00459{left:160.256000pt;}
.x8_c00459{left:161.760000pt;}
.x49_c00459{left:164.886383pt;}
.x16_c00459{left:166.472000pt;}
.x2e_c00459{left:168.833333pt;}
.x44_c00459{left:172.085349pt;}
.x3d_c00459{left:173.416000pt;}
.x7a_c00459{left:175.200000pt;}
.x50_c00459{left:177.125573pt;}
.x4a_c00459{left:179.526824pt;}
.x60_c00459{left:182.723967pt;}
.x38_c00459{left:184.946921pt;}
.x69_c00459{left:188.229944pt;}
.xf_c00459{left:189.120000pt;}
.x6e_c00459{left:191.760615pt;}
.x7e_c00459{left:193.440000pt;}
.x17_c00459{left:196.657333pt;}
.x61_c00459{left:199.540933pt;}
.x1a_c00459{left:201.120000pt;}
.x65_c00459{left:203.650131pt;}
.x45_c00459{left:205.206687pt;}
.x5c_c00459{left:206.165089pt;}
.x2a_c00459{left:207.173333pt;}
.x53_c00459{left:209.525560pt;}
.x1b_c00459{left:213.840000pt;}
.x10_c00459{left:214.800000pt;}
.x66_c00459{left:216.614131pt;}
.x4b_c00459{left:218.168836pt;}
.x3e_c00459{left:220.925333pt;}
.x23_c00459{left:222.380000pt;}
.x34_c00459{left:224.318667pt;}
.x39_c00459{left:226.710680pt;}
.x9_c00459{left:228.960000pt;}
.x71_c00459{left:229.921319pt;}
.x3f_c00459{left:234.625333pt;}
.x2f_c00459{left:236.248000pt;}
.x46_c00459{left:238.089328pt;}
.x24_c00459{left:239.597333pt;}
.x3b_c00459{left:241.215476pt;}
.xa_c00459{left:243.360000pt;}
.x18_c00459{left:244.646667pt;}
.x4c_c00459{left:246.010876pt;}
.x76_c00459{left:247.440000pt;}
.x35_c00459{left:250.445333pt;}
.x57_c00459{left:254.541928pt;}
.x79_c00459{left:256.560000pt;}
.x1c_c00459{left:261.600000pt;}
.x25_c00459{left:262.940000pt;}
.x54_c00459{left:264.728233pt;}
.x11_c00459{left:266.640000pt;}
.x5d_c00459{left:268.088584pt;}
.x40_c00459{left:269.864000pt;}
.x77_c00459{left:275.760000pt;}
.x1d_c00459{left:277.440000pt;}
.x55_c00459{left:279.608704pt;}
.x6f_c00459{left:280.564699pt;}
.x2b_c00459{left:282.972000pt;}
.xb_c00459{left:284.880000pt;}
.x30_c00459{left:287.076000pt;}
.x26_c00459{left:288.529333pt;}
.x1e_c00459{left:291.840000pt;}
.x72_c00459{left:296.645400pt;}
.x80_c00459{left:313.440000pt;}
.x7f_c00459{left:316.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00460 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00460 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00460 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00460 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc5_c00460{transform:matrix(0.014016,-0.000336,0.005998,0.249928,0,0);-ms-transform:matrix(0.014016,-0.000336,0.005998,0.249928,0,0);-webkit-transform:matrix(0.014016,-0.000336,0.005998,0.249928,0,0);}
.mc_c00460{transform:matrix(0.018846,-0.000377,0.004999,0.249950,0,0);-ms-transform:matrix(0.018846,-0.000377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.018846,-0.000377,0.004999,0.249950,0,0);}
.m0_c00460{transform:matrix(0.047246,-0.000945,0.004999,0.249950,0,0);-ms-transform:matrix(0.047246,-0.000945,0.004999,0.249950,0,0);-webkit-transform:matrix(0.047246,-0.000945,0.004999,0.249950,0,0);}
.md_c00460{transform:matrix(0.111213,-0.002224,0.004999,0.249950,0,0);-ms-transform:matrix(0.111213,-0.002224,0.004999,0.249950,0,0);-webkit-transform:matrix(0.111213,-0.002224,0.004999,0.249950,0,0);}
.m1_c00460{transform:matrix(0.141127,-0.002823,0.004999,0.249950,0,0);-ms-transform:matrix(0.141127,-0.002823,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141127,-0.002823,0.004999,0.249950,0,0);}
.m93_c00460{transform:matrix(0.144231,-0.002885,0.004999,0.249950,0,0);-ms-transform:matrix(0.144231,-0.002885,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144231,-0.002885,0.004999,0.249950,0,0);}
.m12_c00460{transform:matrix(0.148690,-0.002974,0.004999,0.249950,0,0);-ms-transform:matrix(0.148690,-0.002974,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148690,-0.002974,0.004999,0.249950,0,0);}
.m2d_c00460{transform:matrix(0.152445,-0.003049,0.004999,0.249950,0,0);-ms-transform:matrix(0.152445,-0.003049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152445,-0.003049,0.004999,0.249950,0,0);}
.me7_c00460{transform:matrix(0.154650,-0.003712,0.005998,0.249928,0,0);-ms-transform:matrix(0.154650,-0.003712,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154650,-0.003712,0.005998,0.249928,0,0);}
.m4_c00460{transform:matrix(0.157274,-0.003145,0.004999,0.249950,0,0);-ms-transform:matrix(0.157274,-0.003145,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157274,-0.003145,0.004999,0.249950,0,0);}
.m8c_c00460{transform:matrix(0.158948,-0.003179,0.004999,0.249950,0,0);-ms-transform:matrix(0.158948,-0.003179,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158948,-0.003179,0.004999,0.249950,0,0);}
.m38_c00460{transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);-ms-transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);}
.me0_c00460{transform:matrix(0.161668,-0.003880,0.005998,0.249928,0,0);-ms-transform:matrix(0.161668,-0.003880,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161668,-0.003880,0.005998,0.249928,0,0);}
.m8f_c00460{transform:matrix(0.161858,-0.003237,0.004999,0.249950,0,0);-ms-transform:matrix(0.161858,-0.003237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161858,-0.003237,0.004999,0.249950,0,0);}
.mb1_c00460{transform:matrix(0.161983,-0.003888,0.005998,0.249928,0,0);-ms-transform:matrix(0.161983,-0.003888,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161983,-0.003888,0.005998,0.249928,0,0);}
.m3_c00460{transform:matrix(0.162498,-0.003250,0.004999,0.249950,0,0);-ms-transform:matrix(0.162498,-0.003250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162498,-0.003250,0.004999,0.249950,0,0);}
.m34_c00460{transform:matrix(0.162712,-0.003254,0.004999,0.249950,0,0);-ms-transform:matrix(0.162712,-0.003254,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162712,-0.003254,0.004999,0.249950,0,0);}
.m1e_c00460{transform:matrix(0.163267,-0.003265,0.004999,0.249950,0,0);-ms-transform:matrix(0.163267,-0.003265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163267,-0.003265,0.004999,0.249950,0,0);}
.ma9_c00460{transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163522,-0.003270,0.004999,0.249950,0,0);}
.m9c_c00460{transform:matrix(0.166682,-0.003334,0.004999,0.249950,0,0);-ms-transform:matrix(0.166682,-0.003334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166682,-0.003334,0.004999,0.249950,0,0);}
.m33_c00460{transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);-ms-transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166717,-0.003334,0.004999,0.249950,0,0);}
.m77_c00460{transform:matrix(0.167074,-0.002673,0.003999,0.249968,0,0);-ms-transform:matrix(0.167074,-0.002673,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167074,-0.002673,0.003999,0.249968,0,0);}
.m3f_c00460{transform:matrix(0.168596,-0.003372,0.004999,0.249950,0,0);-ms-transform:matrix(0.168596,-0.003372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168596,-0.003372,0.004999,0.249950,0,0);}
.m37_c00460{transform:matrix(0.168616,-0.003372,0.004999,0.249950,0,0);-ms-transform:matrix(0.168616,-0.003372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168616,-0.003372,0.004999,0.249950,0,0);}
.m78_c00460{transform:matrix(0.169668,-0.002715,0.003999,0.249968,0,0);-ms-transform:matrix(0.169668,-0.002715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169668,-0.002715,0.003999,0.249968,0,0);}
.mca_c00460{transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);-ms-transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);-webkit-transform:matrix(0.169671,-0.004072,0.005998,0.249928,0,0);}
.m95_c00460{transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);-ms-transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169686,-0.003394,0.004999,0.249950,0,0);}
.m13_c00460{transform:matrix(0.169806,-0.003396,0.004999,0.249950,0,0);-ms-transform:matrix(0.169806,-0.003396,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169806,-0.003396,0.004999,0.249950,0,0);}
.m50_c00460{transform:matrix(0.170296,-0.003406,0.004999,0.249950,0,0);-ms-transform:matrix(0.170296,-0.003406,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170296,-0.003406,0.004999,0.249950,0,0);}
.m89_c00460{transform:matrix(0.171021,-0.003420,0.004999,0.249950,0,0);-ms-transform:matrix(0.171021,-0.003420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171021,-0.003420,0.004999,0.249950,0,0);}
.m56_c00460{transform:matrix(0.171546,-0.003431,0.004999,0.249950,0,0);-ms-transform:matrix(0.171546,-0.003431,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171546,-0.003431,0.004999,0.249950,0,0);}
.mbf_c00460{transform:matrix(0.171576,-0.004118,0.005998,0.249928,0,0);-ms-transform:matrix(0.171576,-0.004118,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171576,-0.004118,0.005998,0.249928,0,0);}
.m45_c00460{transform:matrix(0.171721,-0.003434,0.004999,0.249950,0,0);-ms-transform:matrix(0.171721,-0.003434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171721,-0.003434,0.004999,0.249950,0,0);}
.m14_c00460{transform:matrix(0.172700,-0.003454,0.004999,0.249950,0,0);-ms-transform:matrix(0.172700,-0.003454,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172700,-0.003454,0.004999,0.249950,0,0);}
.m3b_c00460{transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);-ms-transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172795,-0.003456,0.004999,0.249950,0,0);}
.m30_c00460{transform:matrix(0.172985,-0.003460,0.004999,0.249950,0,0);-ms-transform:matrix(0.172985,-0.003460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172985,-0.003460,0.004999,0.249950,0,0);}
.m9f_c00460{transform:matrix(0.173655,-0.003473,0.004999,0.249950,0,0);-ms-transform:matrix(0.173655,-0.003473,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173655,-0.003473,0.004999,0.249950,0,0);}
.mcd_c00460{transform:matrix(0.173750,-0.004170,0.005998,0.249928,0,0);-ms-transform:matrix(0.173750,-0.004170,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173750,-0.004170,0.005998,0.249928,0,0);}
.m99_c00460{transform:matrix(0.174175,-0.003484,0.004999,0.249950,0,0);-ms-transform:matrix(0.174175,-0.003484,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174175,-0.003484,0.004999,0.249950,0,0);}
.m40_c00460{transform:matrix(0.174215,-0.003484,0.004999,0.249950,0,0);-ms-transform:matrix(0.174215,-0.003484,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174215,-0.003484,0.004999,0.249950,0,0);}
.m8b_c00460{transform:matrix(0.174615,-0.003492,0.004999,0.249950,0,0);-ms-transform:matrix(0.174615,-0.003492,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174615,-0.003492,0.004999,0.249950,0,0);}
.m8e_c00460{transform:matrix(0.176135,-0.003523,0.004999,0.249950,0,0);-ms-transform:matrix(0.176135,-0.003523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176135,-0.003523,0.004999,0.249950,0,0);}
.me9_c00460{transform:matrix(0.176409,-0.004234,0.005998,0.249928,0,0);-ms-transform:matrix(0.176409,-0.004234,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176409,-0.004234,0.005998,0.249928,0,0);}
.m92_c00460{transform:matrix(0.176705,-0.003534,0.004999,0.249950,0,0);-ms-transform:matrix(0.176705,-0.003534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176705,-0.003534,0.004999,0.249950,0,0);}
.m3d_c00460{transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);-ms-transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177130,-0.003543,0.004999,0.249950,0,0);}
.m73_c00460{transform:matrix(0.177863,-0.002490,0.003500,0.249976,0,0);-ms-transform:matrix(0.177863,-0.002490,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177863,-0.002490,0.003500,0.249976,0,0);}
.m1f_c00460{transform:matrix(0.178064,-0.003561,0.004999,0.249950,0,0);-ms-transform:matrix(0.178064,-0.003561,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178064,-0.003561,0.004999,0.249950,0,0);}
.mb4_c00460{transform:matrix(0.178394,-0.004281,0.005998,0.249928,0,0);-ms-transform:matrix(0.178394,-0.004281,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178394,-0.004281,0.005998,0.249928,0,0);}
.mc4_c00460{transform:matrix(0.178669,-0.004288,0.005998,0.249928,0,0);-ms-transform:matrix(0.178669,-0.004288,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178669,-0.004288,0.005998,0.249928,0,0);}
.m17_c00460{transform:matrix(0.179374,-0.003587,0.004999,0.249950,0,0);-ms-transform:matrix(0.179374,-0.003587,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179374,-0.003587,0.004999,0.249950,0,0);}
.m84_c00460{transform:matrix(0.180124,-0.003602,0.004999,0.249950,0,0);-ms-transform:matrix(0.180124,-0.003602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180124,-0.003602,0.004999,0.249950,0,0);}
.ma2_c00460{transform:matrix(0.180449,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180449,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180449,-0.003609,0.004999,0.249950,0,0);}
.m2b_c00460{transform:matrix(0.180454,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180454,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180454,-0.003609,0.004999,0.249950,0,0);}
.m9_c00460{transform:matrix(0.180889,-0.003618,0.004999,0.249950,0,0);-ms-transform:matrix(0.180889,-0.003618,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180889,-0.003618,0.004999,0.249950,0,0);}
.m24_c00460{transform:matrix(0.181454,-0.003629,0.004999,0.249950,0,0);-ms-transform:matrix(0.181454,-0.003629,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181454,-0.003629,0.004999,0.249950,0,0);}
.m8_c00460{transform:matrix(0.181834,-0.003637,0.004999,0.249950,0,0);-ms-transform:matrix(0.181834,-0.003637,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181834,-0.003637,0.004999,0.249950,0,0);}
.m39_c00460{transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181934,-0.003639,0.004999,0.249950,0,0);}
.ma8_c00460{transform:matrix(0.182024,-0.003640,0.004999,0.249950,0,0);-ms-transform:matrix(0.182024,-0.003640,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182024,-0.003640,0.004999,0.249950,0,0);}
.md1_c00460{transform:matrix(0.182213,-0.004373,0.005998,0.249928,0,0);-ms-transform:matrix(0.182213,-0.004373,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182213,-0.004373,0.005998,0.249928,0,0);}
.m11_c00460{transform:matrix(0.183293,-0.003666,0.004999,0.249950,0,0);-ms-transform:matrix(0.183293,-0.003666,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183293,-0.003666,0.004999,0.249950,0,0);}
.m85_c00460{transform:matrix(0.184108,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184108,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184108,-0.003682,0.004999,0.249950,0,0);}
.m3a_c00460{transform:matrix(0.184653,-0.003693,0.004999,0.249950,0,0);-ms-transform:matrix(0.184653,-0.003693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184653,-0.003693,0.004999,0.249950,0,0);}
.mb6_c00460{transform:matrix(0.185032,-0.004441,0.005998,0.249928,0,0);-ms-transform:matrix(0.185032,-0.004441,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185032,-0.004441,0.005998,0.249928,0,0);}
.m42_c00460{transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);-ms-transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185108,-0.003702,0.004999,0.249950,0,0);}
.m3e_c00460{transform:matrix(0.185568,-0.003711,0.004999,0.249950,0,0);-ms-transform:matrix(0.185568,-0.003711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185568,-0.003711,0.004999,0.249950,0,0);}
.m61_c00460{transform:matrix(0.186058,-0.003721,0.004999,0.249950,0,0);-ms-transform:matrix(0.186058,-0.003721,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186058,-0.003721,0.004999,0.249950,0,0);}
.md4_c00460{transform:matrix(0.186546,-0.004477,0.005998,0.249928,0,0);-ms-transform:matrix(0.186546,-0.004477,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186546,-0.004477,0.005998,0.249928,0,0);}
.m75_c00460{transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);-ms-transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);}
.mf_c00460{transform:matrix(0.186823,-0.003736,0.004999,0.249950,0,0);-ms-transform:matrix(0.186823,-0.003736,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186823,-0.003736,0.004999,0.249950,0,0);}
.mc3_c00460{transform:matrix(0.186836,-0.004484,0.005998,0.249928,0,0);-ms-transform:matrix(0.186836,-0.004484,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186836,-0.004484,0.005998,0.249928,0,0);}
.m76_c00460{transform:matrix(0.187646,-0.003002,0.003999,0.249968,0,0);-ms-transform:matrix(0.187646,-0.003002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187646,-0.003002,0.003999,0.249968,0,0);}
.m22_c00460{transform:matrix(0.187732,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187732,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187732,-0.003755,0.004999,0.249950,0,0);}
.m20_c00460{transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188022,-0.003760,0.004999,0.249950,0,0);}
.m86_c00460{transform:matrix(0.188057,-0.003761,0.004999,0.249950,0,0);-ms-transform:matrix(0.188057,-0.003761,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188057,-0.003761,0.004999,0.249950,0,0);}
.m25_c00460{transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189152,-0.003783,0.004999,0.249950,0,0);}
.mc9_c00460{transform:matrix(0.189330,-0.004544,0.005998,0.249928,0,0);-ms-transform:matrix(0.189330,-0.004544,0.005998,0.249928,0,0);-webkit-transform:matrix(0.189330,-0.004544,0.005998,0.249928,0,0);}
.m2e_c00460{transform:matrix(0.189602,-0.003792,0.004999,0.249950,0,0);-ms-transform:matrix(0.189602,-0.003792,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189602,-0.003792,0.004999,0.249950,0,0);}
.mc2_c00460{transform:matrix(0.190030,-0.004561,0.005998,0.249928,0,0);-ms-transform:matrix(0.190030,-0.004561,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190030,-0.004561,0.005998,0.249928,0,0);}
.m79_c00460{transform:matrix(0.190446,-0.003047,0.003999,0.249968,0,0);-ms-transform:matrix(0.190446,-0.003047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190446,-0.003047,0.003999,0.249968,0,0);}
.m2a_c00460{transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);-ms-transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191232,-0.003825,0.004999,0.249950,0,0);}
.ma3_c00460{transform:matrix(0.191577,-0.003832,0.004999,0.249950,0,0);-ms-transform:matrix(0.191577,-0.003832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191577,-0.003832,0.004999,0.249950,0,0);}
.m10_c00460{transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191627,-0.003833,0.004999,0.249950,0,0);}
.m2f_c00460{transform:matrix(0.191902,-0.003838,0.004999,0.249950,0,0);-ms-transform:matrix(0.191902,-0.003838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191902,-0.003838,0.004999,0.249950,0,0);}
.m3c_c00460{transform:matrix(0.192252,-0.003845,0.004999,0.249950,0,0);-ms-transform:matrix(0.192252,-0.003845,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192252,-0.003845,0.004999,0.249950,0,0);}
.m6c_c00460{transform:matrix(0.192371,-0.002693,0.003500,0.249976,0,0);-ms-transform:matrix(0.192371,-0.002693,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192371,-0.002693,0.003500,0.249976,0,0);}
.m8d_c00460{transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);-ms-transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192626,-0.003853,0.004999,0.249950,0,0);}
.m15_c00460{transform:matrix(0.193551,-0.003871,0.004999,0.249950,0,0);-ms-transform:matrix(0.193551,-0.003871,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193551,-0.003871,0.004999,0.249950,0,0);}
.m28_c00460{transform:matrix(0.193871,-0.003877,0.004999,0.249950,0,0);-ms-transform:matrix(0.193871,-0.003877,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193871,-0.003877,0.004999,0.249950,0,0);}
.mc0_c00460{transform:matrix(0.194614,-0.004671,0.005998,0.249928,0,0);-ms-transform:matrix(0.194614,-0.004671,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194614,-0.004671,0.005998,0.249928,0,0);}
.mb2_c00460{transform:matrix(0.194799,-0.004675,0.005998,0.249928,0,0);-ms-transform:matrix(0.194799,-0.004675,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194799,-0.004675,0.005998,0.249928,0,0);}
.m4f_c00460{transform:matrix(0.195261,-0.003905,0.004999,0.249950,0,0);-ms-transform:matrix(0.195261,-0.003905,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195261,-0.003905,0.004999,0.249950,0,0);}
.mb0_c00460{transform:matrix(0.195279,-0.004687,0.005998,0.249928,0,0);-ms-transform:matrix(0.195279,-0.004687,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195279,-0.004687,0.005998,0.249928,0,0);}
.m62_c00460{transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-ms-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195351,-0.003907,0.004999,0.249950,0,0);}
.mab_c00460{transform:matrix(0.195694,-0.004697,0.005998,0.249928,0,0);-ms-transform:matrix(0.195694,-0.004697,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195694,-0.004697,0.005998,0.249928,0,0);}
.m51_c00460{transform:matrix(0.196231,-0.003925,0.004999,0.249950,0,0);-ms-transform:matrix(0.196231,-0.003925,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196231,-0.003925,0.004999,0.249950,0,0);}
.mbb_c00460{transform:matrix(0.197438,-0.004739,0.005998,0.249928,0,0);-ms-transform:matrix(0.197438,-0.004739,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197438,-0.004739,0.005998,0.249928,0,0);}
.mcb_c00460{transform:matrix(0.197723,-0.004745,0.005998,0.249928,0,0);-ms-transform:matrix(0.197723,-0.004745,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197723,-0.004745,0.005998,0.249928,0,0);}
.m6f_c00460{transform:matrix(0.197851,-0.002770,0.003500,0.249976,0,0);-ms-transform:matrix(0.197851,-0.002770,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197851,-0.002770,0.003500,0.249976,0,0);}
.m7_c00460{transform:matrix(0.198700,-0.003974,0.004999,0.249950,0,0);-ms-transform:matrix(0.198700,-0.003974,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198700,-0.003974,0.004999,0.249950,0,0);}
.mcc_c00460{transform:matrix(0.198833,-0.004772,0.005998,0.249928,0,0);-ms-transform:matrix(0.198833,-0.004772,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198833,-0.004772,0.005998,0.249928,0,0);}
.m1a_c00460{transform:matrix(0.198840,-0.003977,0.004999,0.249950,0,0);-ms-transform:matrix(0.198840,-0.003977,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198840,-0.003977,0.004999,0.249950,0,0);}
.ma0_c00460{transform:matrix(0.199055,-0.003981,0.004999,0.249950,0,0);-ms-transform:matrix(0.199055,-0.003981,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199055,-0.003981,0.004999,0.249950,0,0);}
.m29_c00460{transform:matrix(0.199360,-0.003987,0.004999,0.249950,0,0);-ms-transform:matrix(0.199360,-0.003987,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199360,-0.003987,0.004999,0.249950,0,0);}
.m8a_c00460{transform:matrix(0.199795,-0.003996,0.004999,0.249950,0,0);-ms-transform:matrix(0.199795,-0.003996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199795,-0.003996,0.004999,0.249950,0,0);}
.mb_c00460{transform:matrix(0.199815,-0.003996,0.004999,0.249950,0,0);-ms-transform:matrix(0.199815,-0.003996,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199815,-0.003996,0.004999,0.249950,0,0);}
.m32_c00460{transform:matrix(0.199865,-0.003997,0.004999,0.249950,0,0);-ms-transform:matrix(0.199865,-0.003997,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199865,-0.003997,0.004999,0.249950,0,0);}
.m94_c00460{transform:matrix(0.199885,-0.003998,0.004999,0.249950,0,0);-ms-transform:matrix(0.199885,-0.003998,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199885,-0.003998,0.004999,0.249950,0,0);}
.m88_c00460{transform:matrix(0.199975,-0.004000,0.004999,0.249950,0,0);-ms-transform:matrix(0.199975,-0.004000,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199975,-0.004000,0.004999,0.249950,0,0);}
.m9e_c00460{transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);-ms-transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200470,-0.004009,0.004999,0.249950,0,0);}
.ma_c00460{transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);-ms-transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201455,-0.004029,0.004999,0.249950,0,0);}
.m21_c00460{transform:matrix(0.201510,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201510,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201510,-0.004030,0.004999,0.249950,0,0);}
.m5c_c00460{transform:matrix(0.202190,-0.004044,0.004999,0.249950,0,0);-ms-transform:matrix(0.202190,-0.004044,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202190,-0.004044,0.004999,0.249950,0,0);}
.m9d_c00460{transform:matrix(0.202829,-0.004057,0.004999,0.249950,0,0);-ms-transform:matrix(0.202829,-0.004057,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202829,-0.004057,0.004999,0.249950,0,0);}
.maa_c00460{transform:matrix(0.203344,-0.004067,0.004999,0.249950,0,0);-ms-transform:matrix(0.203344,-0.004067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203344,-0.004067,0.004999,0.249950,0,0);}
.m35_c00460{transform:matrix(0.203614,-0.004072,0.004999,0.249950,0,0);-ms-transform:matrix(0.203614,-0.004072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203614,-0.004072,0.004999,0.249950,0,0);}
.m9a_c00460{transform:matrix(0.203634,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203634,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203634,-0.004073,0.004999,0.249950,0,0);}
.m1c_c00460{transform:matrix(0.203714,-0.004074,0.004999,0.249950,0,0);-ms-transform:matrix(0.203714,-0.004074,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203714,-0.004074,0.004999,0.249950,0,0);}
.mdb_c00460{transform:matrix(0.203971,-0.004895,0.005998,0.249928,0,0);-ms-transform:matrix(0.203971,-0.004895,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203971,-0.004895,0.005998,0.249928,0,0);}
.mde_c00460{transform:matrix(0.204196,-0.004901,0.005998,0.249928,0,0);-ms-transform:matrix(0.204196,-0.004901,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204196,-0.004901,0.005998,0.249928,0,0);}
.m7e_c00460{transform:matrix(0.204199,-0.004084,0.004999,0.249950,0,0);-ms-transform:matrix(0.204199,-0.004084,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204199,-0.004084,0.004999,0.249950,0,0);}
.mb3_c00460{transform:matrix(0.204441,-0.004907,0.005998,0.249928,0,0);-ms-transform:matrix(0.204441,-0.004907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204441,-0.004907,0.005998,0.249928,0,0);}
.mc6_c00460{transform:matrix(0.204701,-0.004913,0.005998,0.249928,0,0);-ms-transform:matrix(0.204701,-0.004913,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204701,-0.004913,0.005998,0.249928,0,0);}
.m26_c00460{transform:matrix(0.204914,-0.004098,0.004999,0.249950,0,0);-ms-transform:matrix(0.204914,-0.004098,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204914,-0.004098,0.004999,0.249950,0,0);}
.m52_c00460{transform:matrix(0.205159,-0.004103,0.004999,0.249950,0,0);-ms-transform:matrix(0.205159,-0.004103,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205159,-0.004103,0.004999,0.249950,0,0);}
.m19_c00460{transform:matrix(0.205679,-0.004114,0.004999,0.249950,0,0);-ms-transform:matrix(0.205679,-0.004114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205679,-0.004114,0.004999,0.249950,0,0);}
.m4c_c00460{transform:matrix(0.205689,-0.004114,0.004999,0.249950,0,0);-ms-transform:matrix(0.205689,-0.004114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205689,-0.004114,0.004999,0.249950,0,0);}
.m87_c00460{transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);}
.md3_c00460{transform:matrix(0.205866,-0.004941,0.005998,0.249928,0,0);-ms-transform:matrix(0.205866,-0.004941,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205866,-0.004941,0.005998,0.249928,0,0);}
.mc8_c00460{transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);-ms-transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205981,-0.004944,0.005998,0.249928,0,0);}
.m31_c00460{transform:matrix(0.206119,-0.004122,0.004999,0.249950,0,0);-ms-transform:matrix(0.206119,-0.004122,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206119,-0.004122,0.004999,0.249950,0,0);}
.mdd_c00460{transform:matrix(0.207160,-0.004972,0.005998,0.249928,0,0);-ms-transform:matrix(0.207160,-0.004972,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207160,-0.004972,0.005998,0.249928,0,0);}
.m23_c00460{transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);-ms-transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207783,-0.004156,0.004999,0.249950,0,0);}
.m55_c00460{transform:matrix(0.207918,-0.004158,0.004999,0.249950,0,0);-ms-transform:matrix(0.207918,-0.004158,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207918,-0.004158,0.004999,0.249950,0,0);}
.m27_c00460{transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208563,-0.004171,0.004999,0.249950,0,0);}
.m44_c00460{transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);-ms-transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208658,-0.004173,0.004999,0.249950,0,0);}
.ma1_c00460{transform:matrix(0.208748,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208748,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208748,-0.004175,0.004999,0.249950,0,0);}
.m9b_c00460{transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);-ms-transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208948,-0.004179,0.004999,0.249950,0,0);}
.m6a_c00460{transform:matrix(0.209899,-0.002939,0.003500,0.249976,0,0);-ms-transform:matrix(0.209899,-0.002939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209899,-0.002939,0.003500,0.249976,0,0);}
.m16_c00460{transform:matrix(0.211368,-0.004227,0.004999,0.249950,0,0);-ms-transform:matrix(0.211368,-0.004227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211368,-0.004227,0.004999,0.249950,0,0);}
.m4d_c00460{transform:matrix(0.211798,-0.004236,0.004999,0.249950,0,0);-ms-transform:matrix(0.211798,-0.004236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211798,-0.004236,0.004999,0.249950,0,0);}
.md5_c00460{transform:matrix(0.211809,-0.005083,0.005998,0.249928,0,0);-ms-transform:matrix(0.211809,-0.005083,0.005998,0.249928,0,0);-webkit-transform:matrix(0.211809,-0.005083,0.005998,0.249928,0,0);}
.m98_c00460{transform:matrix(0.212203,-0.004244,0.004999,0.249950,0,0);-ms-transform:matrix(0.212203,-0.004244,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212203,-0.004244,0.004999,0.249950,0,0);}
.maf_c00460{transform:matrix(0.212644,-0.005103,0.005998,0.249928,0,0);-ms-transform:matrix(0.212644,-0.005103,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212644,-0.005103,0.005998,0.249928,0,0);}
.m5a_c00460{transform:matrix(0.213747,-0.004275,0.004999,0.249950,0,0);-ms-transform:matrix(0.213747,-0.004275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213747,-0.004275,0.004999,0.249950,0,0);}
.m1d_c00460{transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);-ms-transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214062,-0.004281,0.004999,0.249950,0,0);}
.m36_c00460{transform:matrix(0.214157,-0.004283,0.004999,0.249950,0,0);-ms-transform:matrix(0.214157,-0.004283,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214157,-0.004283,0.004999,0.249950,0,0);}
.m7b_c00460{transform:matrix(0.214682,-0.004294,0.004999,0.249950,0,0);-ms-transform:matrix(0.214682,-0.004294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214682,-0.004294,0.004999,0.249950,0,0);}
.m58_c00460{transform:matrix(0.214752,-0.004295,0.004999,0.249950,0,0);-ms-transform:matrix(0.214752,-0.004295,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214752,-0.004295,0.004999,0.249950,0,0);}
.m6e_c00460{transform:matrix(0.215079,-0.003011,0.003500,0.249976,0,0);-ms-transform:matrix(0.215079,-0.003011,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215079,-0.003011,0.003500,0.249976,0,0);}
.mef_c00460{transform:matrix(0.215353,-0.005168,0.005998,0.249928,0,0);-ms-transform:matrix(0.215353,-0.005168,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215353,-0.005168,0.005998,0.249928,0,0);}
.m5b_c00460{transform:matrix(0.215432,-0.004309,0.004999,0.249950,0,0);-ms-transform:matrix(0.215432,-0.004309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215432,-0.004309,0.004999,0.249950,0,0);}
.mce_c00460{transform:matrix(0.215633,-0.005175,0.005998,0.249928,0,0);-ms-transform:matrix(0.215633,-0.005175,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215633,-0.005175,0.005998,0.249928,0,0);}
.m48_c00460{transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216342,-0.004327,0.004999,0.249950,0,0);}
.me_c00460{transform:matrix(0.216352,-0.004327,0.004999,0.249950,0,0);-ms-transform:matrix(0.216352,-0.004327,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216352,-0.004327,0.004999,0.249950,0,0);}
.mbc_c00460{transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);-ms-transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216573,-0.005198,0.005998,0.249928,0,0);}
.mb5_c00460{transform:matrix(0.216838,-0.005204,0.005998,0.249928,0,0);-ms-transform:matrix(0.216838,-0.005204,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216838,-0.005204,0.005998,0.249928,0,0);}
.ma6_c00460{transform:matrix(0.216857,-0.004337,0.004999,0.249950,0,0);-ms-transform:matrix(0.216857,-0.004337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216857,-0.004337,0.004999,0.249950,0,0);}
.ma4_c00460{transform:matrix(0.217172,-0.004343,0.004999,0.249950,0,0);-ms-transform:matrix(0.217172,-0.004343,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217172,-0.004343,0.004999,0.249950,0,0);}
.md9_c00460{transform:matrix(0.217202,-0.005213,0.005998,0.249928,0,0);-ms-transform:matrix(0.217202,-0.005213,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217202,-0.005213,0.005998,0.249928,0,0);}
.m5e_c00460{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00460{transform:matrix(0.217547,-0.005221,0.005998,0.249928,0,0);-ms-transform:matrix(0.217547,-0.005221,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217547,-0.005221,0.005998,0.249928,0,0);}
.m65_c00460{transform:matrix(0.217611,-0.004352,0.004999,0.249950,0,0);-ms-transform:matrix(0.217611,-0.004352,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217611,-0.004352,0.004999,0.249950,0,0);}
.m18_c00460{transform:matrix(0.217711,-0.004354,0.004999,0.249950,0,0);-ms-transform:matrix(0.217711,-0.004354,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217711,-0.004354,0.004999,0.249950,0,0);}
.m5f_c00460{transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);-ms-transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217731,-0.004355,0.004999,0.249950,0,0);}
.m4b_c00460{transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);-ms-transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217776,-0.004356,0.004999,0.249950,0,0);}
.m60_c00460{transform:matrix(0.218581,-0.004372,0.004999,0.249950,0,0);-ms-transform:matrix(0.218581,-0.004372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218581,-0.004372,0.004999,0.249950,0,0);}
.mb7_c00460{transform:matrix(0.219072,-0.005258,0.005998,0.249928,0,0);-ms-transform:matrix(0.219072,-0.005258,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219072,-0.005258,0.005998,0.249928,0,0);}
.m7c_c00460{transform:matrix(0.219591,-0.004392,0.004999,0.249950,0,0);-ms-transform:matrix(0.219591,-0.004392,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219591,-0.004392,0.004999,0.249950,0,0);}
.mda_c00460{transform:matrix(0.219707,-0.005273,0.005998,0.249928,0,0);-ms-transform:matrix(0.219707,-0.005273,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219707,-0.005273,0.005998,0.249928,0,0);}
.m6_c00460{transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);-ms-transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);}
.mb8_c00460{transform:matrix(0.220252,-0.005286,0.005998,0.249928,0,0);-ms-transform:matrix(0.220252,-0.005286,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220252,-0.005286,0.005998,0.249928,0,0);}
.m74_c00460{transform:matrix(0.220698,-0.003090,0.003500,0.249976,0,0);-ms-transform:matrix(0.220698,-0.003090,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220698,-0.003090,0.003500,0.249976,0,0);}
.md0_c00460{transform:matrix(0.220896,-0.005302,0.005998,0.249928,0,0);-ms-transform:matrix(0.220896,-0.005302,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220896,-0.005302,0.005998,0.249928,0,0);}
.mc1_c00460{transform:matrix(0.220921,-0.005302,0.005998,0.249928,0,0);-ms-transform:matrix(0.220921,-0.005302,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220921,-0.005302,0.005998,0.249928,0,0);}
.m7f_c00460{transform:matrix(0.221351,-0.004427,0.004999,0.249950,0,0);-ms-transform:matrix(0.221351,-0.004427,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221351,-0.004427,0.004999,0.249950,0,0);}
.m1b_c00460{transform:matrix(0.222775,-0.004456,0.004999,0.249950,0,0);-ms-transform:matrix(0.222775,-0.004456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222775,-0.004456,0.004999,0.249950,0,0);}
.mdf_c00460{transform:matrix(0.223436,-0.005362,0.005998,0.249928,0,0);-ms-transform:matrix(0.223436,-0.005362,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223436,-0.005362,0.005998,0.249928,0,0);}
.mdc_c00460{transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);-ms-transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223486,-0.005364,0.005998,0.249928,0,0);}
.m4e_c00460{transform:matrix(0.223595,-0.004472,0.004999,0.249950,0,0);-ms-transform:matrix(0.223595,-0.004472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223595,-0.004472,0.004999,0.249950,0,0);}
.m5d_c00460{transform:matrix(0.223995,-0.004480,0.004999,0.249950,0,0);-ms-transform:matrix(0.223995,-0.004480,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223995,-0.004480,0.004999,0.249950,0,0);}
.mbe_c00460{transform:matrix(0.224025,-0.005377,0.005998,0.249928,0,0);-ms-transform:matrix(0.224025,-0.005377,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224025,-0.005377,0.005998,0.249928,0,0);}
.m5_c00460{transform:matrix(0.226665,-0.004533,0.004999,0.249950,0,0);-ms-transform:matrix(0.226665,-0.004533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226665,-0.004533,0.004999,0.249950,0,0);}
.m2c_c00460{transform:matrix(0.229299,-0.004586,0.004999,0.249950,0,0);-ms-transform:matrix(0.229299,-0.004586,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229299,-0.004586,0.004999,0.249950,0,0);}
.m70_c00460{transform:matrix(0.229363,-0.003211,0.003500,0.249976,0,0);-ms-transform:matrix(0.229363,-0.003211,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229363,-0.003211,0.003500,0.249976,0,0);}
.mcf_c00460{transform:matrix(0.229834,-0.005516,0.005998,0.249928,0,0);-ms-transform:matrix(0.229834,-0.005516,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229834,-0.005516,0.005998,0.249928,0,0);}
.md7_c00460{transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);-ms-transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229859,-0.005517,0.005998,0.249928,0,0);}
.mb9_c00460{transform:matrix(0.230494,-0.005532,0.005998,0.249928,0,0);-ms-transform:matrix(0.230494,-0.005532,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230494,-0.005532,0.005998,0.249928,0,0);}
.m69_c00460{transform:matrix(0.230752,-0.003231,0.003500,0.249976,0,0);-ms-transform:matrix(0.230752,-0.003231,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230752,-0.003231,0.003500,0.249976,0,0);}
.m57_c00460{transform:matrix(0.230954,-0.004619,0.004999,0.249950,0,0);-ms-transform:matrix(0.230954,-0.004619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230954,-0.004619,0.004999,0.249950,0,0);}
.mf0_c00460{transform:matrix(0.231538,-0.005557,0.005998,0.249928,0,0);-ms-transform:matrix(0.231538,-0.005557,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231538,-0.005557,0.005998,0.249928,0,0);}
.m6d_c00460{transform:matrix(0.231752,-0.003245,0.003500,0.249976,0,0);-ms-transform:matrix(0.231752,-0.003245,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231752,-0.003245,0.003500,0.249976,0,0);}
.mba_c00460{transform:matrix(0.232098,-0.005570,0.005998,0.249928,0,0);-ms-transform:matrix(0.232098,-0.005570,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232098,-0.005570,0.005998,0.249928,0,0);}
.m83_c00460{transform:matrix(0.235263,-0.004705,0.004999,0.249950,0,0);-ms-transform:matrix(0.235263,-0.004705,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235263,-0.004705,0.004999,0.249950,0,0);}
.m43_c00460{transform:matrix(0.235693,-0.004714,0.004999,0.249950,0,0);-ms-transform:matrix(0.235693,-0.004714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235693,-0.004714,0.004999,0.249950,0,0);}
.m7d_c00460{transform:matrix(0.236548,-0.004731,0.004999,0.249950,0,0);-ms-transform:matrix(0.236548,-0.004731,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236548,-0.004731,0.004999,0.249950,0,0);}
.m80_c00460{transform:matrix(0.236878,-0.004738,0.004999,0.249950,0,0);-ms-transform:matrix(0.236878,-0.004738,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236878,-0.004738,0.004999,0.249950,0,0);}
.me1_c00460{transform:matrix(0.237642,-0.005703,0.005998,0.249928,0,0);-ms-transform:matrix(0.237642,-0.005703,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237642,-0.005703,0.005998,0.249928,0,0);}
.md2_c00460{transform:matrix(0.238266,-0.005718,0.005998,0.249928,0,0);-ms-transform:matrix(0.238266,-0.005718,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238266,-0.005718,0.005998,0.249928,0,0);}
.m67_c00460{transform:matrix(0.238302,-0.003336,0.003500,0.249976,0,0);-ms-transform:matrix(0.238302,-0.003336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238302,-0.003336,0.003500,0.249976,0,0);}
.m91_c00460{transform:matrix(0.239512,-0.004790,0.004999,0.249950,0,0);-ms-transform:matrix(0.239512,-0.004790,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239512,-0.004790,0.004999,0.249950,0,0);}
.m7a_c00460{transform:matrix(0.240132,-0.004803,0.004999,0.249950,0,0);-ms-transform:matrix(0.240132,-0.004803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240132,-0.004803,0.004999,0.249950,0,0);}
.md6_c00460{transform:matrix(0.240621,-0.005775,0.005998,0.249928,0,0);-ms-transform:matrix(0.240621,-0.005775,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240621,-0.005775,0.005998,0.249928,0,0);}
.med_c00460{transform:matrix(0.241630,-0.005799,0.005998,0.249928,0,0);-ms-transform:matrix(0.241630,-0.005799,0.005998,0.249928,0,0);-webkit-transform:matrix(0.241630,-0.005799,0.005998,0.249928,0,0);}
.m59_c00460{transform:matrix(0.242387,-0.004848,0.004999,0.249950,0,0);-ms-transform:matrix(0.242387,-0.004848,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242387,-0.004848,0.004999,0.249950,0,0);}
.m64_c00460{transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);-ms-transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243136,-0.004863,0.004999,0.249950,0,0);}
.md8_c00460{transform:matrix(0.243295,-0.005839,0.005998,0.249928,0,0);-ms-transform:matrix(0.243295,-0.005839,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243295,-0.005839,0.005998,0.249928,0,0);}
.m6b_c00460{transform:matrix(0.243901,-0.003415,0.003500,0.249976,0,0);-ms-transform:matrix(0.243901,-0.003415,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243901,-0.003415,0.003500,0.249976,0,0);}
.m81_c00460{transform:matrix(0.244326,-0.004887,0.004999,0.249950,0,0);-ms-transform:matrix(0.244326,-0.004887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244326,-0.004887,0.004999,0.249950,0,0);}
.m47_c00460{transform:matrix(0.244606,-0.004892,0.004999,0.249950,0,0);-ms-transform:matrix(0.244606,-0.004892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244606,-0.004892,0.004999,0.249950,0,0);}
.mbd_c00460{transform:matrix(0.246179,-0.005908,0.005998,0.249928,0,0);-ms-transform:matrix(0.246179,-0.005908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246179,-0.005908,0.005998,0.249928,0,0);}
.m54_c00460{transform:matrix(0.251875,-0.005037,0.004999,0.249950,0,0);-ms-transform:matrix(0.251875,-0.005037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251875,-0.005037,0.004999,0.249950,0,0);}
.m41_c00460{transform:matrix(0.252465,-0.005049,0.004999,0.249950,0,0);-ms-transform:matrix(0.252465,-0.005049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252465,-0.005049,0.004999,0.249950,0,0);}
.m63_c00460{transform:matrix(0.253764,-0.005075,0.004999,0.249950,0,0);-ms-transform:matrix(0.253764,-0.005075,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253764,-0.005075,0.004999,0.249950,0,0);}
.mea_c00460{transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-ms-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);}
.meb_c00460{transform:matrix(0.255836,-0.006140,0.005998,0.249928,0,0);-ms-transform:matrix(0.255836,-0.006140,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255836,-0.006140,0.005998,0.249928,0,0);}
.mac_c00460{transform:matrix(0.258026,-0.006193,0.005998,0.249928,0,0);-ms-transform:matrix(0.258026,-0.006193,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258026,-0.006193,0.005998,0.249928,0,0);}
.me8_c00460{transform:matrix(0.258850,-0.006212,0.005998,0.249928,0,0);-ms-transform:matrix(0.258850,-0.006212,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258850,-0.006212,0.005998,0.249928,0,0);}
.mee_c00460{transform:matrix(0.262130,-0.006291,0.005998,0.249928,0,0);-ms-transform:matrix(0.262130,-0.006291,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262130,-0.006291,0.005998,0.249928,0,0);}
.m53_c00460{transform:matrix(0.266932,-0.005339,0.004999,0.249950,0,0);-ms-transform:matrix(0.266932,-0.005339,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266932,-0.005339,0.004999,0.249950,0,0);}
.me6_c00460{transform:matrix(0.272262,-0.006534,0.005998,0.249928,0,0);-ms-transform:matrix(0.272262,-0.006534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.272262,-0.006534,0.005998,0.249928,0,0);}
.m72_c00460{transform:matrix(0.272353,-0.003813,0.003500,0.249976,0,0);-ms-transform:matrix(0.272353,-0.003813,0.003500,0.249976,0,0);-webkit-transform:matrix(0.272353,-0.003813,0.003500,0.249976,0,0);}
.m4a_c00460{transform:matrix(0.276655,-0.005533,0.004999,0.249950,0,0);-ms-transform:matrix(0.276655,-0.005533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.276655,-0.005533,0.004999,0.249950,0,0);}
.m66_c00460{transform:matrix(0.279343,-0.003911,0.003500,0.249976,0,0);-ms-transform:matrix(0.279343,-0.003911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279343,-0.003911,0.003500,0.249976,0,0);}
.me5_c00460{transform:matrix(0.281859,-0.006765,0.005998,0.249928,0,0);-ms-transform:matrix(0.281859,-0.006765,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281859,-0.006765,0.005998,0.249928,0,0);}
.me3_c00460{transform:matrix(0.283533,-0.006805,0.005998,0.249928,0,0);-ms-transform:matrix(0.283533,-0.006805,0.005998,0.249928,0,0);-webkit-transform:matrix(0.283533,-0.006805,0.005998,0.249928,0,0);}
.m97_c00460{transform:matrix(0.284108,-0.005682,0.004999,0.249950,0,0);-ms-transform:matrix(0.284108,-0.005682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.284108,-0.005682,0.004999,0.249950,0,0);}
.m49_c00460{transform:matrix(0.294906,-0.005898,0.004999,0.249950,0,0);-ms-transform:matrix(0.294906,-0.005898,0.004999,0.249950,0,0);-webkit-transform:matrix(0.294906,-0.005898,0.004999,0.249950,0,0);}
.mec_c00460{transform:matrix(0.295555,-0.007093,0.005998,0.249928,0,0);-ms-transform:matrix(0.295555,-0.007093,0.005998,0.249928,0,0);-webkit-transform:matrix(0.295555,-0.007093,0.005998,0.249928,0,0);}
.m46_c00460{transform:matrix(0.297910,-0.005958,0.004999,0.249950,0,0);-ms-transform:matrix(0.297910,-0.005958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.297910,-0.005958,0.004999,0.249950,0,0);}
.m90_c00460{transform:matrix(0.298255,-0.005965,0.004999,0.249950,0,0);-ms-transform:matrix(0.298255,-0.005965,0.004999,0.249950,0,0);-webkit-transform:matrix(0.298255,-0.005965,0.004999,0.249950,0,0);}
.m82_c00460{transform:matrix(0.300380,-0.006008,0.004999,0.249950,0,0);-ms-transform:matrix(0.300380,-0.006008,0.004999,0.249950,0,0);-webkit-transform:matrix(0.300380,-0.006008,0.004999,0.249950,0,0);}
.m71_c00460{transform:matrix(0.315289,-0.004414,0.003500,0.249976,0,0);-ms-transform:matrix(0.315289,-0.004414,0.003500,0.249976,0,0);-webkit-transform:matrix(0.315289,-0.004414,0.003500,0.249976,0,0);}
.m2_c00460{transform:matrix(0.319841,-0.006397,0.004999,0.249950,0,0);-ms-transform:matrix(0.319841,-0.006397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.319841,-0.006397,0.004999,0.249950,0,0);}
.ma7_c00460{transform:matrix(0.337278,-0.006746,0.004999,0.249950,0,0);-ms-transform:matrix(0.337278,-0.006746,0.004999,0.249950,0,0);-webkit-transform:matrix(0.337278,-0.006746,0.004999,0.249950,0,0);}
.ma5_c00460{transform:matrix(0.344906,-0.006898,0.004999,0.249950,0,0);-ms-transform:matrix(0.344906,-0.006898,0.004999,0.249950,0,0);-webkit-transform:matrix(0.344906,-0.006898,0.004999,0.249950,0,0);}
.mae_c00460{transform:matrix(0.365045,-0.008761,0.005998,0.249928,0,0);-ms-transform:matrix(0.365045,-0.008761,0.005998,0.249928,0,0);-webkit-transform:matrix(0.365045,-0.008761,0.005998,0.249928,0,0);}
.m96_c00460{transform:matrix(0.366197,-0.007324,0.004999,0.249950,0,0);-ms-transform:matrix(0.366197,-0.007324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.366197,-0.007324,0.004999,0.249950,0,0);}
.me4_c00460{transform:matrix(0.371278,-0.008911,0.005998,0.249928,0,0);-ms-transform:matrix(0.371278,-0.008911,0.005998,0.249928,0,0);-webkit-transform:matrix(0.371278,-0.008911,0.005998,0.249928,0,0);}
.me2_c00460{transform:matrix(0.375192,-0.009005,0.005998,0.249928,0,0);-ms-transform:matrix(0.375192,-0.009005,0.005998,0.249928,0,0);-webkit-transform:matrix(0.375192,-0.009005,0.005998,0.249928,0,0);}
.m68_c00460{transform:matrix(0.379928,-0.005319,0.003500,0.249976,0,0);-ms-transform:matrix(0.379928,-0.005319,0.003500,0.249976,0,0);-webkit-transform:matrix(0.379928,-0.005319,0.003500,0.249976,0,0);}
.mad_c00460{transform:matrix(0.455779,-0.010939,0.005998,0.249928,0,0);-ms-transform:matrix(0.455779,-0.010939,0.005998,0.249928,0,0);-webkit-transform:matrix(0.455779,-0.010939,0.005998,0.249928,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:0.000000px;}
.fc0_c00460{color:transparent;}
.fsb_c00460{font-size:34.650000px;}
.fs16_c00460{font-size:51.464815px;}
.fsc_c00460{font-size:55.655453px;}
.fsa_c00460{font-size:57.761549px;}
.fs15_c00460{font-size:58.816932px;}
.fs8_c00460{font-size:59.861969px;}
.fs12_c00460{font-size:59.867234px;}
.fs9_c00460{font-size:60.912179px;}
.fs13_c00460{font-size:60.917537px;}
.fsd_c00460{font-size:61.956071px;}
.fs4_c00460{font-size:61.962389px;}
.fs14_c00460{font-size:61.967839px;}
.fs1_c00460{font-size:63.012599px;}
.fs2_c00460{font-size:64.062809px;}
.fs5_c00460{font-size:65.113019px;}
.fs11_c00460{font-size:65.118746px;}
.fs6_c00460{font-size:66.163229px;}
.fs7_c00460{font-size:67.213439px;}
.fs10_c00460{font-size:68.269653px;}
.fse_c00460{font-size:69.308870px;}
.fsf_c00460{font-size:69.313859px;}
.fs3_c00460{font-size:72.464489px;}
.fs0_c00460{font-size:89.267848px;}
.y0_c00460{bottom:0.000000px;}
.yef_c00460{bottom:31.249716px;}
.yf0_c00460{bottom:31.249728px;}
.yee_c00460{bottom:31.249896px;}
.yed_c00460{bottom:31.250064px;}
.yf1_c00460{bottom:31.250208px;}
.yec_c00460{bottom:31.250652px;}
.yeb_c00460{bottom:31.251204px;}
.yea_c00460{bottom:45.666336px;}
.ye7_c00460{bottom:45.666372px;}
.ye5_c00460{bottom:45.666396px;}
.ye4_c00460{bottom:45.666420px;}
.ye1_c00460{bottom:45.666516px;}
.ye6_c00460{bottom:45.666576px;}
.ye8_c00460{bottom:45.666708px;}
.ye2_c00460{bottom:45.666912px;}
.ye9_c00460{bottom:45.666936px;}
.ye3_c00460{bottom:45.666984px;}
.yda_c00460{bottom:64.505592px;}
.ydb_c00460{bottom:65.245176px;}
.ydc_c00460{bottom:66.012264px;}
.ydd_c00460{bottom:66.436980px;}
.yde_c00460{bottom:66.633516px;}
.ydf_c00460{bottom:67.049316px;}
.ye0_c00460{bottom:67.322808px;}
.yd4_c00460{bottom:80.707608px;}
.yd2_c00460{bottom:80.708160px;}
.yd3_c00460{bottom:80.708232px;}
.yd5_c00460{bottom:80.708292px;}
.yd9_c00460{bottom:80.708316px;}
.yd6_c00460{bottom:80.708508px;}
.yd7_c00460{bottom:80.708592px;}
.yd8_c00460{bottom:80.709000px;}
.ycf_c00460{bottom:97.531716px;}
.yd1_c00460{bottom:97.531812px;}
.yd0_c00460{bottom:97.531848px;}
.ycd_c00460{bottom:97.532232px;}
.yce_c00460{bottom:97.532376px;}
.ycc_c00460{bottom:97.532580px;}
.yca_c00460{bottom:97.532664px;}
.yc9_c00460{bottom:97.532772px;}
.ycb_c00460{bottom:97.533072px;}
.yc8_c00460{bottom:97.533384px;}
.yc7_c00460{bottom:114.153216px;}
.yc1_c00460{bottom:114.153228px;}
.yc3_c00460{bottom:114.153288px;}
.yc4_c00460{bottom:114.153552px;}
.yc5_c00460{bottom:114.153576px;}
.yc2_c00460{bottom:114.153588px;}
.yc0_c00460{bottom:114.153612px;}
.yc6_c00460{bottom:114.153828px;}
.ybf_c00460{bottom:114.153924px;}
.yb7_c00460{bottom:128.246160px;}
.yb8_c00460{bottom:129.074688px;}
.yb9_c00460{bottom:129.651468px;}
.yba_c00460{bottom:129.947832px;}
.ybb_c00460{bottom:130.922712px;}
.ybc_c00460{bottom:131.129628px;}
.ybd_c00460{bottom:131.563668px;}
.ybe_c00460{bottom:132.079140px;}
.yb0_c00460{bottom:146.615808px;}
.yb1_c00460{bottom:147.762120px;}
.yb2_c00460{bottom:149.706192px;}
.yb3_c00460{bottom:150.872556px;}
.yb4_c00460{bottom:151.249224px;}
.yb5_c00460{bottom:152.445504px;}
.yb6_c00460{bottom:153.127560px;}
.yad_c00460{bottom:157.962000px;}
.yae_c00460{bottom:161.002668px;}
.yaf_c00460{bottom:163.513128px;}
.ya4_c00460{bottom:178.465440px;}
.ya5_c00460{bottom:179.161770px;}
.ya6_c00460{bottom:180.686550px;}
.ya7_c00460{bottom:182.362380px;}
.ya8_c00460{bottom:182.670720px;}
.ya9_c00460{bottom:183.968160px;}
.yaa_c00460{bottom:184.311270px;}
.yab_c00460{bottom:184.818540px;}
.yac_c00460{bottom:185.304990px;}
.y9c_c00460{bottom:197.903610px;}
.y9d_c00460{bottom:198.965610px;}
.y9e_c00460{bottom:199.253370px;}
.y9f_c00460{bottom:199.664790px;}
.ya0_c00460{bottom:200.972640px;}
.ya1_c00460{bottom:201.352770px;}
.ya2_c00460{bottom:201.727800px;}
.ya3_c00460{bottom:203.030670px;}
.y92_c00460{bottom:214.109310px;}
.y93_c00460{bottom:214.391340px;}
.y94_c00460{bottom:215.150310px;}
.y95_c00460{bottom:215.613540px;}
.y96_c00460{bottom:216.002580px;}
.y97_c00460{bottom:217.327080px;}
.y98_c00460{bottom:217.749990px;}
.y99_c00460{bottom:218.368020px;}
.y9a_c00460{bottom:218.842950px;}
.y9b_c00460{bottom:220.058910px;}
.y8a_c00460{bottom:232.198200px;}
.y8b_c00460{bottom:232.525710px;}
.y8c_c00460{bottom:232.751130px;}
.y8d_c00460{bottom:233.468910px;}
.y8e_c00460{bottom:234.077730px;}
.y8f_c00460{bottom:234.440370px;}
.y90_c00460{bottom:235.300410px;}
.y91_c00460{bottom:236.100030px;}
.y83_c00460{bottom:248.943420px;}
.y84_c00460{bottom:249.229020px;}
.y85_c00460{bottom:250.779480px;}
.y86_c00460{bottom:251.372820px;}
.y87_c00460{bottom:251.870280px;}
.y88_c00460{bottom:253.187820px;}
.y89_c00460{bottom:253.539060px;}
.y7c_c00460{bottom:265.416000px;}
.y7d_c00460{bottom:265.701930px;}
.y7e_c00460{bottom:267.138270px;}
.y7f_c00460{bottom:268.175280px;}
.y80_c00460{bottom:269.109840px;}
.y81_c00460{bottom:269.531820px;}
.y82_c00460{bottom:270.541200px;}
.y77_c00460{bottom:283.773000px;}
.y78_c00460{bottom:284.321496px;}
.y79_c00460{bottom:285.337200px;}
.y7a_c00460{bottom:286.330680px;}
.y7b_c00460{bottom:287.605200px;}
.y70_c00460{bottom:301.321434px;}
.y71_c00460{bottom:302.001285px;}
.y72_c00460{bottom:302.705610px;}
.y73_c00460{bottom:303.162981px;}
.y74_c00460{bottom:304.094301px;}
.y75_c00460{bottom:304.454448px;}
.y76_c00460{bottom:304.753626px;}
.y68_c00460{bottom:318.873000px;}
.y69_c00460{bottom:319.152636px;}
.y6a_c00460{bottom:319.787508px;}
.y6b_c00460{bottom:320.283066px;}
.y6c_c00460{bottom:320.619444px;}
.y6d_c00460{bottom:321.073380px;}
.y6e_c00460{bottom:322.021215px;}
.y6f_c00460{bottom:322.335501px;}
.y61_c00460{bottom:334.266000px;}
.y62_c00460{bottom:335.724150px;}
.y63_c00460{bottom:337.732980px;}
.y64_c00460{bottom:338.165220px;}
.y65_c00460{bottom:338.505900px;}
.y66_c00460{bottom:339.100650px;}
.y67_c00460{bottom:339.429540px;}
.y5a_c00460{bottom:350.964570px;}
.y5b_c00460{bottom:351.708720px;}
.y5c_c00460{bottom:352.188090px;}
.y5d_c00460{bottom:354.130320px;}
.y5e_c00460{bottom:355.291170px;}
.y5f_c00460{bottom:356.716860px;}
.y51_c00460{bottom:366.897000px;}
.y52_c00460{bottom:367.599960px;}
.y53_c00460{bottom:368.072610px;}
.y54_c00460{bottom:369.327450px;}
.y55_c00460{bottom:369.828510px;}
.y56_c00460{bottom:371.549100px;}
.y57_c00460{bottom:371.977650px;}
.y58_c00460{bottom:372.681690px;}
.y59_c00460{bottom:373.176660px;}
.y4b_c00460{bottom:381.221340px;}
.y4c_c00460{bottom:382.846590px;}
.y4d_c00460{bottom:383.525340px;}
.y4e_c00460{bottom:386.227740px;}
.y4f_c00460{bottom:389.182890px;}
.y50_c00460{bottom:389.620320px;}
.y43_c00460{bottom:402.000180px;}
.y44_c00460{bottom:402.764550px;}
.y45_c00460{bottom:403.663290px;}
.y46_c00460{bottom:405.145620px;}
.y47_c00460{bottom:405.417180px;}
.y48_c00460{bottom:405.867180px;}
.y49_c00460{bottom:406.853460px;}
.y4a_c00460{bottom:407.175360px;}
.y3c_c00460{bottom:417.935940px;}
.y3d_c00460{bottom:418.451220px;}
.y3e_c00460{bottom:419.662200px;}
.y3f_c00460{bottom:420.259500px;}
.y40_c00460{bottom:421.393590px;}
.y41_c00460{bottom:422.454630px;}
.y42_c00460{bottom:423.877800px;}
.y34_c00460{bottom:435.757500px;}
.y35_c00460{bottom:436.597380px;}
.y36_c00460{bottom:437.142600px;}
.y37_c00460{bottom:437.803950px;}
.y38_c00460{bottom:438.993630px;}
.y39_c00460{bottom:439.317480px;}
.y3a_c00460{bottom:439.903320px;}
.y3b_c00460{bottom:440.267880px;}
.y2d_c00460{bottom:452.769240px;}
.y2e_c00460{bottom:453.390540px;}
.y2f_c00460{bottom:454.165710px;}
.y30_c00460{bottom:454.648950px;}
.y31_c00460{bottom:455.646810px;}
.y32_c00460{bottom:456.172560px;}
.y33_c00460{bottom:457.322250px;}
.y25_c00460{bottom:468.977190px;}
.y26_c00460{bottom:469.315230px;}
.y27_c00460{bottom:470.550660px;}
.y28_c00460{bottom:470.977140px;}
.y29_c00460{bottom:472.358640px;}
.y2a_c00460{bottom:472.653210px;}
.y2b_c00460{bottom:473.256600px;}
.y2c_c00460{bottom:474.900480px;}
.y1d_c00460{bottom:486.258990px;}
.y1e_c00460{bottom:486.882720px;}
.y1f_c00460{bottom:487.854690px;}
.y20_c00460{bottom:488.151870px;}
.y21_c00460{bottom:488.603850px;}
.y22_c00460{bottom:489.335670px;}
.y23_c00460{bottom:489.828510px;}
.y24_c00460{bottom:491.189100px;}
.y17_c00460{bottom:503.273250px;}
.y18_c00460{bottom:503.887590px;}
.y19_c00460{bottom:505.657290px;}
.y1a_c00460{bottom:506.129820px;}
.y1b_c00460{bottom:507.760890px;}
.y1c_c00460{bottom:508.409190px;}
.y10_c00460{bottom:520.017300px;}
.y11_c00460{bottom:520.998390px;}
.y12_c00460{bottom:522.773250px;}
.y13_c00460{bottom:523.047540px;}
.y14_c00460{bottom:523.979070px;}
.y15_c00460{bottom:524.481240px;}
.y16_c00460{bottom:525.812760px;}
.yd_c00460{bottom:537.298650px;}
.ye_c00460{bottom:540.455280px;}
.yf_c00460{bottom:541.493070px;}
.y60_c00460{bottom:542.833500px;}
.y4_c00460{bottom:554.849880px;}
.y5_c00460{bottom:555.350730px;}
.y6_c00460{bottom:555.689700px;}
.y7_c00460{bottom:556.785390px;}
.y8_c00460{bottom:557.304450px;}
.y9_c00460{bottom:557.675970px;}
.ya_c00460{bottom:558.293730px;}
.yb_c00460{bottom:558.573330px;}
.yc_c00460{bottom:559.230690px;}
.y1_c00460{bottom:566.730000px;}
.y2_c00460{bottom:569.253450px;}
.y3_c00460{bottom:571.099770px;}
.hd_c00460{height:34.650000px;}
.h18_c00460{height:51.464815px;}
.he_c00460{height:55.655453px;}
.hc_c00460{height:57.761549px;}
.h17_c00460{height:58.816932px;}
.ha_c00460{height:59.861969px;}
.h14_c00460{height:59.867234px;}
.hb_c00460{height:60.912179px;}
.h15_c00460{height:60.917537px;}
.hf_c00460{height:61.956071px;}
.h6_c00460{height:61.962389px;}
.h16_c00460{height:61.967839px;}
.h3_c00460{height:63.012599px;}
.h4_c00460{height:64.062809px;}
.h7_c00460{height:65.113019px;}
.h13_c00460{height:65.118746px;}
.h8_c00460{height:66.163229px;}
.h9_c00460{height:67.213439px;}
.h12_c00460{height:68.269653px;}
.h10_c00460{height:69.308870px;}
.h11_c00460{height:69.313859px;}
.h5_c00460{height:72.464489px;}
.h2_c00460{height:89.267848px;}
.h0_c00460{height:617.700000px;}
.h1_c00460{height:618.000000px;}
.w0_c00460{width:359.100000px;}
.w1_c00460{width:359.250000px;}
.x0_c00460{left:0.000000px;}
.x48_c00460{left:10.524000px;}
.x4_c00460{left:17.454870px;}
.x62_c00460{left:18.462300px;}
.xf_c00460{left:19.748160px;}
.x7e_c00460{left:21.476340px;}
.x1_c00460{left:24.051000px;}
.x73_c00460{left:28.081776px;}
.x59_c00460{left:31.317000px;}
.x21_c00460{left:33.488790px;}
.x4e_c00460{left:36.610500px;}
.x5d_c00460{left:37.721820px;}
.x32_c00460{left:42.133620px;}
.x16_c00460{left:43.769730px;}
.x1b_c00460{left:44.816610px;}
.x6a_c00460{left:45.994980px;}
.x45_c00460{left:47.520090px;}
.x5_c00460{left:48.724860px;}
.x26_c00460{left:49.904220px;}
.x56_c00460{left:51.237000px;}
.x79_c00460{left:56.441844px;}
.x37_c00460{left:57.469860px;}
.x2c_c00460{left:61.161450px;}
.x10_c00460{left:62.425110px;}
.x3e_c00460{left:63.493830px;}
.x63_c00460{left:65.785410px;}
.x46_c00460{left:67.512000px;}
.x6_c00460{left:69.875040px;}
.x66_c00460{left:72.576690px;}
.x82_c00460{left:80.748120px;}
.x3b_c00460{left:82.604040px;}
.x64_c00460{left:86.846070px;}
.x1c_c00460{left:88.988340px;}
.x27_c00460{left:90.688530px;}
.x22_c00460{left:92.334120px;}
.x83_c00460{left:93.981252px;}
.x5e_c00460{left:96.586500px;}
.x33_c00460{left:99.831480px;}
.x1d_c00460{left:102.496800px;}
.x38_c00460{left:104.732790px;}
.x6b_c00460{left:107.002890px;}
.x53_c00460{left:108.995898px;}
.x70_c00460{left:111.189384px;}
.x23_c00460{left:112.607700px;}
.x3f_c00460{left:113.705820px;}
.x57_c00460{left:114.718500px;}
.x28_c00460{left:116.126040px;}
.x4f_c00460{left:117.355500px;}
.x17_c00460{left:120.700110px;}
.x1e_c00460{left:123.069990px;}
.x2d_c00460{left:124.641210px;}
.x74_c00460{left:127.200336px;}
.x34_c00460{left:128.270910px;}
.x71_c00460{left:130.917132px;}
.x40_c00460{left:133.731810px;}
.x7_c00460{left:138.390030px;}
.x11_c00460{left:139.613490px;}
.x18_c00460{left:141.250380px;}
.x80_c00460{left:143.406912px;}
.x6d_c00460{left:145.257000px;}
.x47_c00460{left:148.417020px;}
.x2_c00460{left:150.223500px;}
.x12_c00460{left:151.527270px;}
.x5a_c00460{left:154.984500px;}
.x1f_c00460{left:156.359670px;}
.x5f_c00460{left:157.389390px;}
.x3c_c00460{left:159.800880px;}
.x77_c00460{left:162.312732px;}
.x5b_c00460{left:163.638930px;}
.x65_c00460{left:164.719950px;}
.x29_c00460{left:168.645090px;}
.x8_c00460{left:170.870640px;}
.x7a_c00460{left:172.036872px;}
.x50_c00460{left:173.806500px;}
.xd_c00460{left:175.125690px;}
.x58_c00460{left:176.811000px;}
.x20_c00460{left:178.750770px;}
.x35_c00460{left:182.274330px;}
.x49_c00460{left:183.873000px;}
.x2e_c00460{left:187.276470px;}
.x84_c00460{left:188.778828px;}
.x13_c00460{left:192.026340px;}
.x9_c00460{left:194.098500px;}
.x2a_c00460{left:196.283130px;}
.x67_c00460{left:198.162180px;}
.x7b_c00460{left:199.315068px;}
.x41_c00460{left:202.579440px;}
.x2f_c00460{left:204.294300px;}
.x4a_c00460{left:205.485000px;}
.x72_c00460{left:209.738160px;}
.x60_c00460{left:211.120680px;}
.x19_c00460{left:212.149620px;}
.x14_c00460{left:213.833520px;}
.x85_c00460{left:215.786880px;}
.x68_c00460{left:217.889070px;}
.x42_c00460{left:219.730230px;}
.x24_c00460{left:221.178540px;}
.x4b_c00460{left:222.519000px;}
.x54_c00460{left:225.661281px;}
.xe_c00460{left:227.015190px;}
.x5c_c00460{left:229.515930px;}
.xa_c00460{left:232.714590px;}
.x30_c00460{left:235.161930px;}
.x6c_c00460{left:238.295280px;}
.x1a_c00460{left:240.362940px;}
.x51_c00460{left:241.509000px;}
.x3_c00460{left:242.539500px;}
.x3d_c00460{left:244.233060px;}
.x55_c00460{left:245.638008px;}
.x43_c00460{left:247.879410px;}
.xb_c00460{left:250.221000px;}
.x4c_c00460{left:252.256500px;}
.x31_c00460{left:254.365320px;}
.x2b_c00460{left:256.768830px;}
.x6e_c00460{left:259.979796px;}
.x61_c00460{left:261.080670px;}
.x7c_c00460{left:262.243284px;}
.x52_c00460{left:263.958000px;}
.x78_c00460{left:266.292600px;}
.x44_c00460{left:267.675930px;}
.x4d_c00460{left:268.701000px;}
.x15_c00460{left:271.706040px;}
.x39_c00460{left:272.719680px;}
.x7f_c00460{left:277.502652px;}
.x86_c00460{left:283.846548px;}
.x75_c00460{left:284.926128px;}
.x69_c00460{left:286.483950px;}
.x6f_c00460{left:288.398796px;}
.x3a_c00460{left:289.640010px;}
.xc_c00460{left:291.267270px;}
.x81_c00460{left:298.431156px;}
.x25_c00460{left:299.470980px;}
.x36_c00460{left:300.557460px;}
.x7d_c00460{left:307.615920px;}
.x76_c00460{left:323.547876px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fsb_c00460{font-size:30.800000pt;}
.fs16_c00460{font-size:45.746503pt;}
.fsc_c00460{font-size:49.471514pt;}
.fsa_c00460{font-size:51.343599pt;}
.fs15_c00460{font-size:52.281717pt;}
.fs8_c00460{font-size:53.210639pt;}
.fs12_c00460{font-size:53.215319pt;}
.fs9_c00460{font-size:54.144159pt;}
.fs13_c00460{font-size:54.148921pt;}
.fsd_c00460{font-size:55.072063pt;}
.fs4_c00460{font-size:55.077679pt;}
.fs14_c00460{font-size:55.082524pt;}
.fs1_c00460{font-size:56.011199pt;}
.fs2_c00460{font-size:56.944719pt;}
.fs5_c00460{font-size:57.878239pt;}
.fs11_c00460{font-size:57.883330pt;}
.fs6_c00460{font-size:58.811759pt;}
.fs7_c00460{font-size:59.745279pt;}
.fs10_c00460{font-size:60.684136pt;}
.fse_c00460{font-size:61.607884pt;}
.fsf_c00460{font-size:61.612319pt;}
.fs3_c00460{font-size:64.412879pt;}
.fs0_c00460{font-size:79.349198pt;}
.y0_c00460{bottom:0.000000pt;}
.yef_c00460{bottom:27.777525pt;}
.yf0_c00460{bottom:27.777536pt;}
.yee_c00460{bottom:27.777685pt;}
.yed_c00460{bottom:27.777835pt;}
.yf1_c00460{bottom:27.777963pt;}
.yec_c00460{bottom:27.778357pt;}
.yeb_c00460{bottom:27.778848pt;}
.yea_c00460{bottom:40.592299pt;}
.ye7_c00460{bottom:40.592331pt;}
.ye5_c00460{bottom:40.592352pt;}
.ye4_c00460{bottom:40.592373pt;}
.ye1_c00460{bottom:40.592459pt;}
.ye6_c00460{bottom:40.592512pt;}
.ye8_c00460{bottom:40.592629pt;}
.ye2_c00460{bottom:40.592811pt;}
.ye9_c00460{bottom:40.592832pt;}
.ye3_c00460{bottom:40.592875pt;}
.yda_c00460{bottom:57.338304pt;}
.ydb_c00460{bottom:57.995712pt;}
.ydc_c00460{bottom:58.677568pt;}
.ydd_c00460{bottom:59.055093pt;}
.yde_c00460{bottom:59.229792pt;}
.ydf_c00460{bottom:59.599392pt;}
.ye0_c00460{bottom:59.842496pt;}
.yd4_c00460{bottom:71.740096pt;}
.yd2_c00460{bottom:71.740587pt;}
.yd3_c00460{bottom:71.740651pt;}
.yd5_c00460{bottom:71.740704pt;}
.yd9_c00460{bottom:71.740725pt;}
.yd6_c00460{bottom:71.740896pt;}
.yd7_c00460{bottom:71.740971pt;}
.yd8_c00460{bottom:71.741333pt;}
.ycf_c00460{bottom:86.694859pt;}
.yd1_c00460{bottom:86.694944pt;}
.yd0_c00460{bottom:86.694976pt;}
.ycd_c00460{bottom:86.695317pt;}
.yce_c00460{bottom:86.695445pt;}
.ycc_c00460{bottom:86.695627pt;}
.yca_c00460{bottom:86.695701pt;}
.yc9_c00460{bottom:86.695797pt;}
.ycb_c00460{bottom:86.696064pt;}
.yc8_c00460{bottom:86.696341pt;}
.yc7_c00460{bottom:101.469525pt;}
.yc1_c00460{bottom:101.469536pt;}
.yc3_c00460{bottom:101.469589pt;}
.yc4_c00460{bottom:101.469824pt;}
.yc5_c00460{bottom:101.469845pt;}
.yc2_c00460{bottom:101.469856pt;}
.yc0_c00460{bottom:101.469877pt;}
.yc6_c00460{bottom:101.470069pt;}
.ybf_c00460{bottom:101.470155pt;}
.yb7_c00460{bottom:113.996587pt;}
.yb8_c00460{bottom:114.733056pt;}
.yb9_c00460{bottom:115.245749pt;}
.yba_c00460{bottom:115.509184pt;}
.ybb_c00460{bottom:116.375744pt;}
.ybc_c00460{bottom:116.559669pt;}
.ybd_c00460{bottom:116.945483pt;}
.ybe_c00460{bottom:117.403680pt;}
.yb0_c00460{bottom:130.325163pt;}
.yb1_c00460{bottom:131.344107pt;}
.yb2_c00460{bottom:133.072171pt;}
.yb3_c00460{bottom:134.108939pt;}
.yb4_c00460{bottom:134.443755pt;}
.yb5_c00460{bottom:135.507115pt;}
.yb6_c00460{bottom:136.113387pt;}
.yad_c00460{bottom:140.410667pt;}
.yae_c00460{bottom:143.113483pt;}
.yaf_c00460{bottom:145.345003pt;}
.ya4_c00460{bottom:158.635947pt;}
.ya5_c00460{bottom:159.254907pt;}
.ya6_c00460{bottom:160.610267pt;}
.ya7_c00460{bottom:162.099893pt;}
.ya8_c00460{bottom:162.373973pt;}
.ya9_c00460{bottom:163.527253pt;}
.yaa_c00460{bottom:163.832240pt;}
.yab_c00460{bottom:164.283147pt;}
.yac_c00460{bottom:164.715547pt;}
.y9c_c00460{bottom:175.914320pt;}
.y9d_c00460{bottom:176.858320pt;}
.y9e_c00460{bottom:177.114107pt;}
.y9f_c00460{bottom:177.479813pt;}
.ya0_c00460{bottom:178.642347pt;}
.ya1_c00460{bottom:178.980240pt;}
.ya2_c00460{bottom:179.313600pt;}
.ya3_c00460{bottom:180.471707pt;}
.y92_c00460{bottom:190.319387pt;}
.y93_c00460{bottom:190.570080pt;}
.y94_c00460{bottom:191.244720pt;}
.y95_c00460{bottom:191.656480pt;}
.y96_c00460{bottom:192.002293pt;}
.y97_c00460{bottom:193.179627pt;}
.y98_c00460{bottom:193.555547pt;}
.y99_c00460{bottom:194.104907pt;}
.y9a_c00460{bottom:194.527067pt;}
.y9b_c00460{bottom:195.607920pt;}
.y8a_c00460{bottom:206.398400pt;}
.y8b_c00460{bottom:206.689520pt;}
.y8c_c00460{bottom:206.889893pt;}
.y8d_c00460{bottom:207.527920pt;}
.y8e_c00460{bottom:208.069093pt;}
.y8f_c00460{bottom:208.391440pt;}
.y90_c00460{bottom:209.155920pt;}
.y91_c00460{bottom:209.866693pt;}
.y83_c00460{bottom:221.283040pt;}
.y84_c00460{bottom:221.536907pt;}
.y85_c00460{bottom:222.915093pt;}
.y86_c00460{bottom:223.442507pt;}
.y87_c00460{bottom:223.884693pt;}
.y88_c00460{bottom:225.055840pt;}
.y89_c00460{bottom:225.368053pt;}
.y7c_c00460{bottom:235.925333pt;}
.y7d_c00460{bottom:236.179493pt;}
.y7e_c00460{bottom:237.456240pt;}
.y7f_c00460{bottom:238.378027pt;}
.y80_c00460{bottom:239.208747pt;}
.y81_c00460{bottom:239.583840pt;}
.y82_c00460{bottom:240.481067pt;}
.y77_c00460{bottom:252.242667pt;}
.y78_c00460{bottom:252.730219pt;}
.y79_c00460{bottom:253.633067pt;}
.y7a_c00460{bottom:254.516160pt;}
.y7b_c00460{bottom:255.649067pt;}
.y70_c00460{bottom:267.841275pt;}
.y71_c00460{bottom:268.445587pt;}
.y72_c00460{bottom:269.071653pt;}
.y73_c00460{bottom:269.478205pt;}
.y74_c00460{bottom:270.306045pt;}
.y75_c00460{bottom:270.626176pt;}
.y76_c00460{bottom:270.892112pt;}
.y68_c00460{bottom:283.442667pt;}
.y69_c00460{bottom:283.691232pt;}
.y6a_c00460{bottom:284.255563pt;}
.y6b_c00460{bottom:284.696059pt;}
.y6c_c00460{bottom:284.995061pt;}
.y6d_c00460{bottom:285.398560pt;}
.y6e_c00460{bottom:286.241080pt;}
.y6f_c00460{bottom:286.520445pt;}
.y61_c00460{bottom:297.125333pt;}
.y62_c00460{bottom:298.421467pt;}
.y63_c00460{bottom:300.207093pt;}
.y64_c00460{bottom:300.591307pt;}
.y65_c00460{bottom:300.894133pt;}
.y66_c00460{bottom:301.422800pt;}
.y67_c00460{bottom:301.715147pt;}
.y5a_c00460{bottom:311.968507pt;}
.y5b_c00460{bottom:312.629973pt;}
.y5c_c00460{bottom:313.056080pt;}
.y5d_c00460{bottom:314.782507pt;}
.y5e_c00460{bottom:315.814373pt;}
.y5f_c00460{bottom:317.081653pt;}
.y51_c00460{bottom:326.130667pt;}
.y52_c00460{bottom:326.755520pt;}
.y53_c00460{bottom:327.175653pt;}
.y54_c00460{bottom:328.291067pt;}
.y55_c00460{bottom:328.736453pt;}
.y56_c00460{bottom:330.265867pt;}
.y57_c00460{bottom:330.646800pt;}
.y58_c00460{bottom:331.272613pt;}
.y59_c00460{bottom:331.712587pt;}
.y4b_c00460{bottom:338.863413pt;}
.y4c_c00460{bottom:340.308080pt;}
.y4d_c00460{bottom:340.911413pt;}
.y4e_c00460{bottom:343.313547pt;}
.y4f_c00460{bottom:345.940347pt;}
.y50_c00460{bottom:346.329173pt;}
.y43_c00460{bottom:357.333493pt;}
.y44_c00460{bottom:358.012933pt;}
.y45_c00460{bottom:358.811813pt;}
.y46_c00460{bottom:360.129440pt;}
.y47_c00460{bottom:360.370827pt;}
.y48_c00460{bottom:360.770827pt;}
.y49_c00460{bottom:361.647520pt;}
.y4a_c00460{bottom:361.933653pt;}
.y3c_c00460{bottom:371.498613pt;}
.y3d_c00460{bottom:371.956640pt;}
.y3e_c00460{bottom:373.033067pt;}
.y3f_c00460{bottom:373.564000pt;}
.y40_c00460{bottom:374.572080pt;}
.y41_c00460{bottom:375.515227pt;}
.y42_c00460{bottom:376.780267pt;}
.y34_c00460{bottom:387.340000pt;}
.y35_c00460{bottom:388.086560pt;}
.y36_c00460{bottom:388.571200pt;}
.y37_c00460{bottom:389.159067pt;}
.y38_c00460{bottom:390.216560pt;}
.y39_c00460{bottom:390.504427pt;}
.y3a_c00460{bottom:391.025173pt;}
.y3b_c00460{bottom:391.349227pt;}
.y2d_c00460{bottom:402.461547pt;}
.y2e_c00460{bottom:403.013813pt;}
.y2f_c00460{bottom:403.702853pt;}
.y30_c00460{bottom:404.132400pt;}
.y31_c00460{bottom:405.019387pt;}
.y32_c00460{bottom:405.486720pt;}
.y33_c00460{bottom:406.508667pt;}
.y25_c00460{bottom:416.868613pt;}
.y26_c00460{bottom:417.169093pt;}
.y27_c00460{bottom:418.267253pt;}
.y28_c00460{bottom:418.646347pt;}
.y29_c00460{bottom:419.874347pt;}
.y2a_c00460{bottom:420.136187pt;}
.y2b_c00460{bottom:420.672533pt;}
.y2c_c00460{bottom:422.133760pt;}
.y1d_c00460{bottom:432.230213pt;}
.y1e_c00460{bottom:432.784640pt;}
.y1f_c00460{bottom:433.648613pt;}
.y20_c00460{bottom:433.912773pt;}
.y21_c00460{bottom:434.314533pt;}
.y22_c00460{bottom:434.965040pt;}
.y23_c00460{bottom:435.403120pt;}
.y24_c00460{bottom:436.612533pt;}
.y17_c00460{bottom:447.354000pt;}
.y18_c00460{bottom:447.900080pt;}
.y19_c00460{bottom:449.473147pt;}
.y1a_c00460{bottom:449.893173pt;}
.y1b_c00460{bottom:451.343013pt;}
.y1c_c00460{bottom:451.919280pt;}
.y10_c00460{bottom:462.237600pt;}
.y11_c00460{bottom:463.109680pt;}
.y12_c00460{bottom:464.687333pt;}
.y13_c00460{bottom:464.931147pt;}
.y14_c00460{bottom:465.759173pt;}
.y15_c00460{bottom:466.205547pt;}
.y16_c00460{bottom:467.389120pt;}
.yd_c00460{bottom:477.598800pt;}
.ye_c00460{bottom:480.404693pt;}
.yf_c00460{bottom:481.327173pt;}
.y60_c00460{bottom:482.518667pt;}
.y4_c00460{bottom:493.199893pt;}
.y5_c00460{bottom:493.645093pt;}
.y6_c00460{bottom:493.946400pt;}
.y7_c00460{bottom:494.920347pt;}
.y8_c00460{bottom:495.381733pt;}
.y9_c00460{bottom:495.711973pt;}
.ya_c00460{bottom:496.261093pt;}
.yb_c00460{bottom:496.509627pt;}
.yc_c00460{bottom:497.093947pt;}
.y1_c00460{bottom:503.760000pt;}
.y2_c00460{bottom:506.003067pt;}
.y3_c00460{bottom:507.644240pt;}
.hd_c00460{height:30.800000pt;}
.h18_c00460{height:45.746503pt;}
.he_c00460{height:49.471514pt;}
.hc_c00460{height:51.343599pt;}
.h17_c00460{height:52.281717pt;}
.ha_c00460{height:53.210639pt;}
.h14_c00460{height:53.215319pt;}
.hb_c00460{height:54.144159pt;}
.h15_c00460{height:54.148921pt;}
.hf_c00460{height:55.072063pt;}
.h6_c00460{height:55.077679pt;}
.h16_c00460{height:55.082524pt;}
.h3_c00460{height:56.011199pt;}
.h4_c00460{height:56.944719pt;}
.h7_c00460{height:57.878239pt;}
.h13_c00460{height:57.883330pt;}
.h8_c00460{height:58.811759pt;}
.h9_c00460{height:59.745279pt;}
.h12_c00460{height:60.684136pt;}
.h10_c00460{height:61.607884pt;}
.h11_c00460{height:61.612319pt;}
.h5_c00460{height:64.412879pt;}
.h2_c00460{height:79.349198pt;}
.h0_c00460{height:549.066667pt;}
.h1_c00460{height:549.333333pt;}
.w0_c00460{width:319.200000pt;}
.w1_c00460{width:319.333333pt;}
.x0_c00460{left:0.000000pt;}
.x48_c00460{left:9.354667pt;}
.x4_c00460{left:15.515440pt;}
.x62_c00460{left:16.410933pt;}
.xf_c00460{left:17.553920pt;}
.x7e_c00460{left:19.090080pt;}
.x1_c00460{left:21.378667pt;}
.x73_c00460{left:24.961579pt;}
.x59_c00460{left:27.837333pt;}
.x21_c00460{left:29.767813pt;}
.x4e_c00460{left:32.542667pt;}
.x5d_c00460{left:33.530507pt;}
.x32_c00460{left:37.452107pt;}
.x16_c00460{left:38.906427pt;}
.x1b_c00460{left:39.836987pt;}
.x6a_c00460{left:40.884427pt;}
.x45_c00460{left:42.240080pt;}
.x5_c00460{left:43.310987pt;}
.x26_c00460{left:44.359307pt;}
.x56_c00460{left:45.544000pt;}
.x79_c00460{left:50.170528pt;}
.x37_c00460{left:51.084320pt;}
.x2c_c00460{left:54.365733pt;}
.x10_c00460{left:55.488987pt;}
.x3e_c00460{left:56.438960pt;}
.x63_c00460{left:58.475920pt;}
.x46_c00460{left:60.010667pt;}
.x6_c00460{left:62.111147pt;}
.x66_c00460{left:64.512613pt;}
.x82_c00460{left:71.776107pt;}
.x3b_c00460{left:73.425813pt;}
.x64_c00460{left:77.196507pt;}
.x1c_c00460{left:79.100747pt;}
.x27_c00460{left:80.612027pt;}
.x22_c00460{left:82.074773pt;}
.x83_c00460{left:83.538891pt;}
.x5e_c00460{left:85.854667pt;}
.x33_c00460{left:88.739093pt;}
.x1d_c00460{left:91.108267pt;}
.x38_c00460{left:93.095813pt;}
.x6b_c00460{left:95.113680pt;}
.x53_c00460{left:96.885243pt;}
.x70_c00460{left:98.835008pt;}
.x23_c00460{left:100.095733pt;}
.x3f_c00460{left:101.071840pt;}
.x57_c00460{left:101.972000pt;}
.x28_c00460{left:103.223147pt;}
.x4f_c00460{left:104.316000pt;}
.x17_c00460{left:107.288987pt;}
.x1e_c00460{left:109.395547pt;}
.x2d_c00460{left:110.792187pt;}
.x74_c00460{left:113.066965pt;}
.x34_c00460{left:114.018587pt;}
.x71_c00460{left:116.370784pt;}
.x40_c00460{left:118.872720pt;}
.x7_c00460{left:123.013360pt;}
.x11_c00460{left:124.100880pt;}
.x18_c00460{left:125.555893pt;}
.x80_c00460{left:127.472811pt;}
.x6d_c00460{left:129.117333pt;}
.x47_c00460{left:131.926240pt;}
.x2_c00460{left:133.532000pt;}
.x12_c00460{left:134.690907pt;}
.x5a_c00460{left:137.764000pt;}
.x1f_c00460{left:138.986373pt;}
.x5f_c00460{left:139.901680pt;}
.x3c_c00460{left:142.045227pt;}
.x77_c00460{left:144.277984pt;}
.x5b_c00460{left:145.456827pt;}
.x65_c00460{left:146.417733pt;}
.x29_c00460{left:149.906747pt;}
.x8_c00460{left:151.885013pt;}
.x7a_c00460{left:152.921664pt;}
.x50_c00460{left:154.494667pt;}
.xd_c00460{left:155.667280pt;}
.x58_c00460{left:157.165333pt;}
.x20_c00460{left:158.889573pt;}
.x35_c00460{left:162.021627pt;}
.x49_c00460{left:163.442667pt;}
.x2e_c00460{left:166.467973pt;}
.x84_c00460{left:167.803403pt;}
.x13_c00460{left:170.690080pt;}
.x9_c00460{left:172.532000pt;}
.x2a_c00460{left:174.473893pt;}
.x67_c00460{left:176.144160pt;}
.x7b_c00460{left:177.168949pt;}
.x41_c00460{left:180.070613pt;}
.x2f_c00460{left:181.594933pt;}
.x4a_c00460{left:182.653333pt;}
.x72_c00460{left:186.433920pt;}
.x60_c00460{left:187.662827pt;}
.x19_c00460{left:188.577440pt;}
.x14_c00460{left:190.074240pt;}
.x85_c00460{left:191.810560pt;}
.x68_c00460{left:193.679173pt;}
.x42_c00460{left:195.315760pt;}
.x24_c00460{left:196.603147pt;}
.x4b_c00460{left:197.794667pt;}
.x54_c00460{left:200.587805pt;}
.xe_c00460{left:201.791280pt;}
.x5c_c00460{left:204.014160pt;}
.xa_c00460{left:206.857413pt;}
.x30_c00460{left:209.032827pt;}
.x6c_c00460{left:211.818027pt;}
.x1a_c00460{left:213.655947pt;}
.x51_c00460{left:214.674667pt;}
.x3_c00460{left:215.590667pt;}
.x3d_c00460{left:217.096053pt;}
.x55_c00460{left:218.344896pt;}
.x43_c00460{left:220.337253pt;}
.xb_c00460{left:222.418667pt;}
.x4c_c00460{left:224.228000pt;}
.x31_c00460{left:226.102507pt;}
.x2b_c00460{left:228.238960pt;}
.x6e_c00460{left:231.093152pt;}
.x61_c00460{left:232.071707pt;}
.x7c_c00460{left:233.105141pt;}
.x52_c00460{left:234.629333pt;}
.x78_c00460{left:236.704533pt;}
.x44_c00460{left:237.934160pt;}
.x4d_c00460{left:238.845333pt;}
.x15_c00460{left:241.516480pt;}
.x39_c00460{left:242.417493pt;}
.x7f_c00460{left:246.669024pt;}
.x86_c00460{left:252.308043pt;}
.x75_c00460{left:253.267669pt;}
.x69_c00460{left:254.652400pt;}
.x6f_c00460{left:256.354485pt;}
.x3a_c00460{left:257.457787pt;}
.xc_c00460{left:258.904240pt;}
.x81_c00460{left:265.272139pt;}
.x25_c00460{left:266.196427pt;}
.x36_c00460{left:267.162187pt;}
.x7d_c00460{left:273.436373pt;}
.x76_c00460{left:287.598112pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00461 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00461 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00461 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00461 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00461{transform:matrix(0.083680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083680,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.149210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149210,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163180,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180190,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180860,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.187795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187795,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189340,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192340,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223720,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m13_c00461{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.280390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280390,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);}
.m14_c00461{transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00461{transform:matrix(0.318880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318880,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{transform:matrix(0.345725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345725,0.000000,0.000000,0.250000,0,0);}
.m15_c00461{transform:matrix(0.362700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.415810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415810,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.467275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467275,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{transform:matrix(0.574110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574110,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.608665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608665,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.713350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713350,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.751565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751565,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
.fc0_c00461{color:transparent;}
.fs2_c00461{font-size:22.050000px;}
.fs3_c00461{font-size:24.150000px;}
.fs4_c00461{font-size:25.200000px;}
.fs5_c00461{font-size:37.800000px;}
.fs1_c00461{font-size:67.200000px;}
.fs0_c00461{font-size:81.900000px;}
.y0_c00461{bottom:0.000000px;}
.y15_c00461{bottom:30.297000px;}
.y14_c00461{bottom:34.401000px;}
.y13_c00461{bottom:40.890000px;}
.y12_c00461{bottom:81.183000px;}
.y11_c00461{bottom:232.602000px;}
.y10_c00461{bottom:542.271000px;}
.yf_c00461{bottom:542.586000px;}
.ye_c00461{bottom:542.805000px;}
.yd_c00461{bottom:543.693000px;}
.yc_c00461{bottom:544.099500px;}
.yb_c00461{bottom:544.567500px;}
.ya_c00461{bottom:544.855500px;}
.y9_c00461{bottom:545.403000px;}
.y8_c00461{bottom:555.880500px;}
.y7_c00461{bottom:556.207500px;}
.y6_c00461{bottom:557.188500px;}
.y5_c00461{bottom:557.514000px;}
.y4_c00461{bottom:558.840000px;}
.y3_c00461{bottom:560.161500px;}
.y2_c00461{bottom:560.523000px;}
.y1_c00461{bottom:573.955500px;}
.h4_c00461{height:22.050000px;}
.h5_c00461{height:24.150000px;}
.h6_c00461{height:25.200000px;}
.h7_c00461{height:37.800000px;}
.h3_c00461{height:67.200000px;}
.h2_c00461{height:81.900000px;}
.h0_c00461{height:617.700000px;}
.h1_c00461{height:618.000000px;}
.w0_c00461{width:359.100000px;}
.w1_c00461{width:359.250000px;}
.x0_c00461{left:0.000000px;}
.x16_c00461{left:35.370000px;}
.x2_c00461{left:46.275000px;}
.x3_c00461{left:67.521000px;}
.x11_c00461{left:83.430000px;}
.x8_c00461{left:88.684500px;}
.x17_c00461{left:97.740000px;}
.x9_c00461{left:110.814000px;}
.x10_c00461{left:114.480000px;}
.x18_c00461{left:143.100000px;}
.x1_c00461{left:145.260000px;}
.xa_c00461{left:146.781000px;}
.x19_c00461{left:168.750000px;}
.xb_c00461{left:178.047000px;}
.x1a_c00461{left:200.340000px;}
.xf_c00461{left:209.520000px;}
.x4_c00461{left:223.302000px;}
.x13_c00461{left:225.450000px;}
.x5_c00461{left:242.466000px;}
.xc_c00461{left:246.349500px;}
.xd_c00461{left:263.154000px;}
.x12_c00461{left:265.950000px;}
.x1b_c00461{left:277.560000px;}
.x14_c00461{left:280.260000px;}
.xe_c00461{left:287.383500px;}
.x15_c00461{left:295.380000px;}
.x6_c00461{left:300.169500px;}
.x7_c00461{left:319.384500px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
.fs2_c00461{font-size:19.600000pt;}
.fs3_c00461{font-size:21.466667pt;}
.fs4_c00461{font-size:22.400000pt;}
.fs5_c00461{font-size:33.600000pt;}
.fs1_c00461{font-size:59.733333pt;}
.fs0_c00461{font-size:72.800000pt;}
.y0_c00461{bottom:0.000000pt;}
.y15_c00461{bottom:26.930667pt;}
.y14_c00461{bottom:30.578667pt;}
.y13_c00461{bottom:36.346667pt;}
.y12_c00461{bottom:72.162667pt;}
.y11_c00461{bottom:206.757333pt;}
.y10_c00461{bottom:482.018667pt;}
.yf_c00461{bottom:482.298667pt;}
.ye_c00461{bottom:482.493333pt;}
.yd_c00461{bottom:483.282667pt;}
.yc_c00461{bottom:483.644000pt;}
.yb_c00461{bottom:484.060000pt;}
.ya_c00461{bottom:484.316000pt;}
.y9_c00461{bottom:484.802667pt;}
.y8_c00461{bottom:494.116000pt;}
.y7_c00461{bottom:494.406667pt;}
.y6_c00461{bottom:495.278667pt;}
.y5_c00461{bottom:495.568000pt;}
.y4_c00461{bottom:496.746667pt;}
.y3_c00461{bottom:497.921333pt;}
.y2_c00461{bottom:498.242667pt;}
.y1_c00461{bottom:510.182667pt;}
.h4_c00461{height:19.600000pt;}
.h5_c00461{height:21.466667pt;}
.h6_c00461{height:22.400000pt;}
.h7_c00461{height:33.600000pt;}
.h3_c00461{height:59.733333pt;}
.h2_c00461{height:72.800000pt;}
.h0_c00461{height:549.066667pt;}
.h1_c00461{height:549.333333pt;}
.w0_c00461{width:319.200000pt;}
.w1_c00461{width:319.333333pt;}
.x0_c00461{left:0.000000pt;}
.x16_c00461{left:31.440000pt;}
.x2_c00461{left:41.133333pt;}
.x3_c00461{left:60.018667pt;}
.x11_c00461{left:74.160000pt;}
.x8_c00461{left:78.830667pt;}
.x17_c00461{left:86.880000pt;}
.x9_c00461{left:98.501333pt;}
.x10_c00461{left:101.760000pt;}
.x18_c00461{left:127.200000pt;}
.x1_c00461{left:129.120000pt;}
.xa_c00461{left:130.472000pt;}
.x19_c00461{left:150.000000pt;}
.xb_c00461{left:158.264000pt;}
.x1a_c00461{left:178.080000pt;}
.xf_c00461{left:186.240000pt;}
.x4_c00461{left:198.490667pt;}
.x13_c00461{left:200.400000pt;}
.x5_c00461{left:215.525333pt;}
.xc_c00461{left:218.977333pt;}
.xd_c00461{left:233.914667pt;}
.x12_c00461{left:236.400000pt;}
.x1b_c00461{left:246.720000pt;}
.x14_c00461{left:249.120000pt;}
.xe_c00461{left:255.452000pt;}
.x15_c00461{left:262.560000pt;}
.x6_c00461{left:266.817333pt;}
.x7_c00461{left:283.897333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00462{transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.104300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{transform:matrix(0.111665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111665,0.000000,0.000000,0.250000,0,0);}
.m32_c00462{transform:matrix(0.124605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124605,0.000000,0.000000,0.250000,0,0);}
.mca_c00462{transform:matrix(0.126030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126030,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.133960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133960,0.000000,0.000000,0.250000,0,0);}
.mbd_c00462{transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134320,0.000000,0.000000,0.250000,0,0);}
.mb1_c00462{transform:matrix(0.139460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139460,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.140315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140315,0.000000,0.000000,0.250000,0,0);}
.me2_c00462{transform:matrix(0.140810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140810,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142870,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145905,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146730,0.000000,0.000000,0.250000,0,0);}
.m76_c00462{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.m77_c00462{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00462{transform:matrix(0.151780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00462{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m51_c00462{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m81_c00462{transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157190,0.000000,0.000000,0.250000,0,0);}
.m6e_c00462{transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00462{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158580,0.000000,0.000000,0.250000,0,0);}
.m87_c00462{transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158980,0.000000,0.000000,0.250000,0,0);}
.ma8_c00462{transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159045,0.000000,0.000000,0.250000,0,0);}
.ma5_c00462{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m8d_c00462{transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);}
.m4d_c00462{transform:matrix(0.161590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161590,0.000000,0.000000,0.250000,0,0);}
.me1_c00462{transform:matrix(0.161960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00462{transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);}
.m83_c00462{transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);}
.mcb_c00462{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.ma9_c00462{transform:matrix(0.165130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165130,0.000000,0.000000,0.250000,0,0);}
.mb8_c00462{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);}
.m33_c00462{transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166460,0.000000,0.000000,0.250000,0,0);}
.mbe_c00462{transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166520,0.000000,0.000000,0.250000,0,0);}
.mae_c00462{transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166995,0.000000,0.000000,0.250000,0,0);}
.mcd_c00462{transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167145,0.000000,0.000000,0.250000,0,0);}
.m63_c00462{transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);}
.maf_c00462{transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167820,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m18_c00462{transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170160,0.000000,0.000000,0.250000,0,0);}
.m84_c00462{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m78_c00462{transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170980,0.000000,0.000000,0.250000,0,0);}
.m9e_c00462{transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171005,0.000000,0.000000,0.250000,0,0);}
.m53_c00462{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00462{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m4f_c00462{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m99_c00462{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176135,0.000000,0.000000,0.250000,0,0);}
.m9c_c00462{transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177940,0.000000,0.000000,0.250000,0,0);}
.maa_c00462{transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);}
.mc5_c00462{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m43_c00462{transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);}
.mde_c00462{transform:matrix(0.181305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00462{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.me0_c00462{transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.mbf_c00462{transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00462{transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);}
.mad_c00462{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.ma6_c00462{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m59_c00462{transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184435,0.000000,0.000000,0.250000,0,0);}
.mcc_c00462{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.mab_c00462{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.mb4_c00462{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.m98_c00462{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00462{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);}
.m8e_c00462{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m92_c00462{transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188995,0.000000,0.000000,0.250000,0,0);}
.md3_c00462{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m69_c00462{transform:matrix(0.189160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.m89_c00462{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.mc0_c00462{transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);}
.m6c_c00462{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.m19_c00462{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m49_c00462{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m9d_c00462{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.ma2_c00462{transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191505,0.000000,0.000000,0.250000,0,0);}
.me3_c00462{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.m79_c00462{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00462{transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192465,0.000000,0.000000,0.250000,0,0);}
.md4_c00462{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m26_c00462{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.md5_c00462{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.md1_c00462{transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194105,0.000000,0.000000,0.250000,0,0);}
.m64_c00462{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00462{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m27_c00462{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.m97_c00462{transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195585,0.000000,0.000000,0.250000,0,0);}
.m82_c00462{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m1c_c00462{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.md7_c00462{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m4b_c00462{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m9b_c00462{transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);}
.m48_c00462{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00462{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m91_c00462{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197255,0.000000,0.000000,0.250000,0,0);}
.m94_c00462{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.mbc_c00462{transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);}
.mc8_c00462{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{transform:matrix(0.197985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197985,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.m90_c00462{transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.m56_c00462{transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);}
.m95_c00462{transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);}
.m9f_c00462{transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);}
.m86_c00462{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m6a_c00462{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m28_c00462{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m60_c00462{transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201585,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);}
.m66_c00462{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m67_c00462{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.mb9_c00462{transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);}
.md8_c00462{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.mac_c00462{transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204995,0.000000,0.000000,0.250000,0,0);}
.mc7_c00462{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.ma7_c00462{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m7c_c00462{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m9a_c00462{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.mc2_c00462{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.mce_c00462{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.md2_c00462{transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m58_c00462{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m72_c00462{transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);}
.m1e_c00462{transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);}
.m75_c00462{transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212290,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.mdf_c00462{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m85_c00462{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.m68_c00462{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);}
.m80_c00462{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214305,0.000000,0.000000,0.250000,0,0);}
.m70_c00462{transform:matrix(0.215070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215070,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);}
.md9_c00462{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.me4_c00462{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m34_c00462{transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);}
.m65_c00462{transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219280,0.000000,0.000000,0.250000,0,0);}
.mb7_c00462{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m5d_c00462{transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);}
.m93_c00462{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m41_c00462{transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219770,0.000000,0.000000,0.250000,0,0);}
.mb6_c00462{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.221345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221345,0.000000,0.000000,0.250000,0,0);}
.mc3_c00462{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m96_c00462{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.222865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222865,0.000000,0.000000,0.250000,0,0);}
.md6_c00462{transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223135,0.000000,0.000000,0.250000,0,0);}
.m7f_c00462{transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);}
.mb5_c00462{transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.mbb_c00462{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00462{transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225540,0.000000,0.000000,0.250000,0,0);}
.md0_c00462{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.ma3_c00462{transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);}
.m5b_c00462{transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);}
.m5e_c00462{transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);}
.mda_c00462{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m74_c00462{transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238420,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.mdb_c00462{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);}
.mc4_c00462{transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);}
.m8b_c00462{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00462{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.mcf_c00462{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00462{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.mc1_c00462{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m55_c00462{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.m5f_c00462{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m52_c00462{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);}
.m7b_c00462{transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00462{transform:matrix(0.272310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272310,0.000000,0.000000,0.250000,0,0);}
.m88_c00462{transform:matrix(0.272655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272655,0.000000,0.000000,0.250000,0,0);}
.m3e_c00462{transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);}
.mdd_c00462{transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);}
.mc9_c00462{transform:matrix(0.284825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00462{transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);}
.mdc_c00462{transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);}
.m6d_c00462{transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);}
.mc6_c00462{transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);}
.mba_c00462{transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304595,0.000000,0.000000,0.250000,0,0);}
.ma0_c00462{transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);}
.m61_c00462{transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);}
.mb3_c00462{transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);}
.m73_c00462{transform:matrix(0.370170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370170,0.000000,0.000000,0.250000,0,0);}
.m62_c00462{transform:matrix(0.445430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445430,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.540460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540460,0.000000,0.000000,0.250000,0,0);}
.m71_c00462{transform:matrix(0.572325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572325,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:0.000000px;}
.fc0_c00462{color:transparent;}
.fs9_c00462{font-size:48.300000px;}
.fs8_c00462{font-size:55.650000px;}
.fsd_c00462{font-size:59.850000px;}
.fs5_c00462{font-size:60.900000px;}
.fsc_c00462{font-size:61.950000px;}
.fs7_c00462{font-size:65.100000px;}
.fs1_c00462{font-size:66.150000px;}
.fs3_c00462{font-size:67.200000px;}
.fs4_c00462{font-size:68.250000px;}
.fs6_c00462{font-size:69.300000px;}
.fsb_c00462{font-size:70.350000px;}
.fs0_c00462{font-size:71.400000px;}
.fsa_c00462{font-size:72.450000px;}
.fs2_c00462{font-size:76.650000px;}
.y0_c00462{bottom:0.000000px;}
.yc7_c00462{bottom:25.384500px;}
.yc8_c00462{bottom:26.620500px;}
.yc9_c00462{bottom:28.347000px;}
.yca_c00462{bottom:29.074500px;}
.ycb_c00462{bottom:29.427000px;}
.ycc_c00462{bottom:29.757000px;}
.ycd_c00462{bottom:30.750000px;}
.yc6_c00462{bottom:45.327000px;}
.yc5_c00462{bottom:63.300000px;}
.ybe_c00462{bottom:78.027000px;}
.ybf_c00462{bottom:78.922500px;}
.yc0_c00462{bottom:79.396500px;}
.yc1_c00462{bottom:79.846500px;}
.yc2_c00462{bottom:80.794500px;}
.yc3_c00462{bottom:81.394500px;}
.yc4_c00462{bottom:81.580500px;}
.yb7_c00462{bottom:96.118500px;}
.yb8_c00462{bottom:96.859500px;}
.yb9_c00462{bottom:97.675500px;}
.yba_c00462{bottom:97.908000px;}
.ybb_c00462{bottom:98.151000px;}
.ybc_c00462{bottom:99.028500px;}
.ybd_c00462{bottom:99.226500px;}
.yb1_c00462{bottom:111.778500px;}
.yb2_c00462{bottom:112.297500px;}
.yb3_c00462{bottom:113.760000px;}
.yb4_c00462{bottom:114.408000px;}
.yb5_c00462{bottom:115.221000px;}
.yb6_c00462{bottom:116.259000px;}
.ya9_c00462{bottom:129.867000px;}
.yaa_c00462{bottom:130.224000px;}
.yab_c00462{bottom:130.627500px;}
.yac_c00462{bottom:130.902000px;}
.yad_c00462{bottom:131.397000px;}
.yae_c00462{bottom:131.952000px;}
.yaf_c00462{bottom:132.180000px;}
.yb0_c00462{bottom:133.657500px;}
.ya2_c00462{bottom:146.335500px;}
.ya3_c00462{bottom:146.883000px;}
.ya4_c00462{bottom:147.120000px;}
.ya5_c00462{bottom:148.042500px;}
.ya6_c00462{bottom:148.927500px;}
.ya7_c00462{bottom:149.070000px;}
.ya8_c00462{bottom:149.346000px;}
.y99_c00462{bottom:163.345500px;}
.y9a_c00462{bottom:163.765500px;}
.y9b_c00462{bottom:164.179500px;}
.y9c_c00462{bottom:164.532000px;}
.y9d_c00462{bottom:165.217500px;}
.y9e_c00462{bottom:166.269000px;}
.y9f_c00462{bottom:166.647000px;}
.ya0_c00462{bottom:166.995000px;}
.ya1_c00462{bottom:167.631000px;}
.y91_c00462{bottom:180.894000px;}
.y92_c00462{bottom:181.402500px;}
.y93_c00462{bottom:181.995000px;}
.y94_c00462{bottom:182.850000px;}
.y95_c00462{bottom:183.162000px;}
.y96_c00462{bottom:183.400500px;}
.y97_c00462{bottom:183.997500px;}
.y98_c00462{bottom:184.125000px;}
.y90_c00462{bottom:200.049000px;}
.y8a_c00462{bottom:214.915500px;}
.y8b_c00462{bottom:215.949000px;}
.y8c_c00462{bottom:216.646500px;}
.y8d_c00462{bottom:217.201500px;}
.y8e_c00462{bottom:217.551000px;}
.y8f_c00462{bottom:217.720500px;}
.y89_c00462{bottom:233.683500px;}
.y83_c00462{bottom:248.667000px;}
.y84_c00462{bottom:250.186500px;}
.y85_c00462{bottom:250.432500px;}
.y86_c00462{bottom:251.190000px;}
.y87_c00462{bottom:252.180000px;}
.y88_c00462{bottom:252.334500px;}
.y7b_c00462{bottom:266.488500px;}
.y7c_c00462{bottom:267.022500px;}
.y7d_c00462{bottom:267.148500px;}
.y7e_c00462{bottom:267.981000px;}
.y7f_c00462{bottom:268.302000px;}
.y80_c00462{bottom:269.020500px;}
.y81_c00462{bottom:269.431500px;}
.y82_c00462{bottom:269.992500px;}
.y75_c00462{bottom:282.411000px;}
.y76_c00462{bottom:282.967500px;}
.y77_c00462{bottom:283.464000px;}
.y78_c00462{bottom:283.830000px;}
.y79_c00462{bottom:284.956500px;}
.y7a_c00462{bottom:285.843000px;}
.y6c_c00462{bottom:299.973000px;}
.y6d_c00462{bottom:300.826500px;}
.y6e_c00462{bottom:301.188000px;}
.y6f_c00462{bottom:302.550000px;}
.y70_c00462{bottom:302.935500px;}
.y71_c00462{bottom:303.414000px;}
.y72_c00462{bottom:304.209000px;}
.y73_c00462{bottom:305.116500px;}
.y74_c00462{bottom:305.691000px;}
.y67_c00462{bottom:318.060000px;}
.y68_c00462{bottom:318.738000px;}
.y69_c00462{bottom:320.113500px;}
.y6a_c00462{bottom:320.875500px;}
.y6b_c00462{bottom:321.405000px;}
.y62_c00462{bottom:334.801500px;}
.y63_c00462{bottom:335.890500px;}
.y64_c00462{bottom:336.619500px;}
.y65_c00462{bottom:338.062500px;}
.y66_c00462{bottom:338.508000px;}
.y5c_c00462{bottom:351.811500px;}
.y5d_c00462{bottom:352.963500px;}
.y5e_c00462{bottom:354.004500px;}
.y5f_c00462{bottom:355.219500px;}
.y60_c00462{bottom:355.684500px;}
.y61_c00462{bottom:356.584500px;}
.y53_c00462{bottom:367.473000px;}
.y54_c00462{bottom:368.110500px;}
.y55_c00462{bottom:368.830500px;}
.y56_c00462{bottom:369.133500px;}
.y57_c00462{bottom:370.038000px;}
.y58_c00462{bottom:371.077500px;}
.y59_c00462{bottom:371.296500px;}
.y5a_c00462{bottom:372.117000px;}
.y5b_c00462{bottom:372.594000px;}
.y4a_c00462{bottom:385.023000px;}
.y4b_c00462{bottom:385.521000px;}
.y4c_c00462{bottom:385.992000px;}
.y4d_c00462{bottom:386.728500px;}
.y4e_c00462{bottom:387.303000px;}
.y4f_c00462{bottom:387.610500px;}
.y50_c00462{bottom:387.874500px;}
.y51_c00462{bottom:388.870500px;}
.y52_c00462{bottom:389.242500px;}
.y43_c00462{bottom:401.766000px;}
.y44_c00462{bottom:402.499500px;}
.y45_c00462{bottom:402.747000px;}
.y46_c00462{bottom:403.518000px;}
.y47_c00462{bottom:405.000000px;}
.y48_c00462{bottom:405.940500px;}
.y49_c00462{bottom:406.464000px;}
.y3c_c00462{bottom:419.044500px;}
.y3d_c00462{bottom:419.316000px;}
.y3e_c00462{bottom:420.123000px;}
.y3f_c00462{bottom:420.483000px;}
.y40_c00462{bottom:420.625500px;}
.y41_c00462{bottom:421.860000px;}
.y42_c00462{bottom:422.977500px;}
.y35_c00462{bottom:435.784500px;}
.y36_c00462{bottom:436.147500px;}
.y37_c00462{bottom:437.388000px;}
.y38_c00462{bottom:438.285000px;}
.y39_c00462{bottom:438.484500px;}
.y3a_c00462{bottom:439.279500px;}
.y3b_c00462{bottom:439.516500px;}
.y2e_c00462{bottom:452.524500px;}
.y2f_c00462{bottom:453.016500px;}
.y30_c00462{bottom:453.496500px;}
.y31_c00462{bottom:454.576500px;}
.y32_c00462{bottom:455.859000px;}
.y33_c00462{bottom:456.070500px;}
.y34_c00462{bottom:456.373500px;}
.y26_c00462{bottom:470.073000px;}
.y27_c00462{bottom:470.742000px;}
.y28_c00462{bottom:471.061500px;}
.y29_c00462{bottom:472.399500px;}
.y2a_c00462{bottom:472.621500px;}
.y2b_c00462{bottom:473.416500px;}
.y2c_c00462{bottom:473.655000px;}
.y2d_c00462{bottom:474.199500px;}
.y1f_c00462{bottom:486.543000px;}
.y20_c00462{bottom:487.005000px;}
.y21_c00462{bottom:488.037000px;}
.y22_c00462{bottom:488.370000px;}
.y23_c00462{bottom:489.390000px;}
.y24_c00462{bottom:491.487000px;}
.y25_c00462{bottom:491.883000px;}
.y18_c00462{bottom:504.634500px;}
.y19_c00462{bottom:505.372500px;}
.y1a_c00462{bottom:506.179500px;}
.y1b_c00462{bottom:506.772000px;}
.y1c_c00462{bottom:507.048000px;}
.y1d_c00462{bottom:507.820500px;}
.y1e_c00462{bottom:508.287000px;}
.y10_c00462{bottom:520.566000px;}
.y11_c00462{bottom:521.406000px;}
.y12_c00462{bottom:521.824500px;}
.y13_c00462{bottom:524.055000px;}
.y14_c00462{bottom:524.461500px;}
.y15_c00462{bottom:525.052500px;}
.y16_c00462{bottom:525.355500px;}
.y17_c00462{bottom:526.068000px;}
.ya_c00462{bottom:537.844500px;}
.yb_c00462{bottom:540.142500px;}
.yc_c00462{bottom:540.741000px;}
.yd_c00462{bottom:541.491000px;}
.ye_c00462{bottom:541.929000px;}
.yf_c00462{bottom:542.176500px;}
.y2_c00462{bottom:554.316000px;}
.y3_c00462{bottom:554.775000px;}
.y4_c00462{bottom:555.727500px;}
.y5_c00462{bottom:556.588500px;}
.y6_c00462{bottom:557.008500px;}
.y7_c00462{bottom:557.620500px;}
.y8_c00462{bottom:559.032000px;}
.y9_c00462{bottom:559.593000px;}
.y1_c00462{bottom:574.303500px;}
.hb_c00462{height:48.300000px;}
.ha_c00462{height:55.650000px;}
.hf_c00462{height:59.850000px;}
.h7_c00462{height:60.900000px;}
.he_c00462{height:61.950000px;}
.h9_c00462{height:65.100000px;}
.h3_c00462{height:66.150000px;}
.h5_c00462{height:67.200000px;}
.h6_c00462{height:68.250000px;}
.h8_c00462{height:69.300000px;}
.hd_c00462{height:70.350000px;}
.h2_c00462{height:71.400000px;}
.hc_c00462{height:72.450000px;}
.h4_c00462{height:76.650000px;}
.h0_c00462{height:617.700000px;}
.h1_c00462{height:618.000000px;}
.w0_c00462{width:359.100000px;}
.w1_c00462{width:359.250000px;}
.x0_c00462{left:0.000000px;}
.x67_c00462{left:16.131000px;}
.x28_c00462{left:17.503500px;}
.xb_c00462{left:18.600000px;}
.x3_c00462{left:20.298000px;}
.x5e_c00462{left:21.523500px;}
.x6f_c00462{left:22.530000px;}
.x2f_c00462{left:38.808000px;}
.x29_c00462{left:40.152000px;}
.x4_c00462{left:42.141000px;}
.x1d_c00462{left:43.716000px;}
.x50_c00462{left:45.103500px;}
.x61_c00462{left:47.377500px;}
.x6c_c00462{left:48.877500px;}
.x25_c00462{left:51.237000px;}
.x3a_c00462{left:53.044500px;}
.x3f_c00462{left:55.311000px;}
.x5d_c00462{left:58.329000px;}
.x11_c00462{left:60.895500px;}
.x64_c00462{left:62.529000px;}
.x17_c00462{left:63.909000px;}
.x6e_c00462{left:66.157500px;}
.x4b_c00462{left:69.043500px;}
.x54_c00462{left:71.715000px;}
.x62_c00462{left:74.980500px;}
.x35_c00462{left:78.511500px;}
.x12_c00462{left:81.823500px;}
.x3b_c00462{left:84.438000px;}
.x51_c00462{left:86.166000px;}
.x5_c00462{left:87.504000px;}
.x47_c00462{left:89.071500px;}
.x30_c00462{left:92.566500px;}
.x40_c00462{left:95.340000px;}
.x1e_c00462{left:98.028000px;}
.x41_c00462{left:112.189500px;}
.x5b_c00462{left:113.286000px;}
.x18_c00462{left:114.330000px;}
.x1f_c00462{left:115.540500px;}
.x31_c00462{left:116.559000px;}
.x2a_c00462{left:117.657000px;}
.x36_c00462{left:123.882000px;}
.x32_c00462{left:126.015000px;}
.x6_c00462{left:128.509500px;}
.x3c_c00462{left:133.563000px;}
.x48_c00462{left:134.673000px;}
.x52_c00462{left:139.776000px;}
.x55_c00462{left:141.091500px;}
.x63_c00462{left:144.102000px;}
.x46_c00462{left:145.999500px;}
.x6a_c00462{left:147.025500px;}
.x7_c00462{left:148.539000px;}
.x19_c00462{left:151.389000px;}
.xc_c00462{left:153.780000px;}
.x1_c00462{left:154.980000px;}
.x65_c00462{left:159.204000px;}
.x42_c00462{left:162.480000px;}
.x22_c00462{left:164.538000px;}
.x6b_c00462{left:166.462500px;}
.x1a_c00462{left:168.669000px;}
.x70_c00462{left:170.664000px;}
.x3d_c00462{left:171.891000px;}
.x2b_c00462{left:173.733000px;}
.x4c_c00462{left:174.823500px;}
.x68_c00462{left:176.466000px;}
.x8_c00462{left:177.703500px;}
.x53_c00462{left:182.019000px;}
.x5f_c00462{left:184.518000px;}
.x2c_c00462{left:186.219000px;}
.xd_c00462{left:188.985000px;}
.x13_c00462{left:193.353000px;}
.x4d_c00462{left:200.872500px;}
.x71_c00462{left:207.007500px;}
.x33_c00462{left:208.354500px;}
.x3e_c00462{left:209.982000px;}
.x37_c00462{left:211.089000px;}
.x58_c00462{left:212.671500px;}
.x14_c00462{left:213.714000px;}
.x1b_c00462{left:216.996000px;}
.x43_c00462{left:220.231500px;}
.x49_c00462{left:224.856000px;}
.x23_c00462{left:228.036000px;}
.x60_c00462{left:230.340000px;}
.xe_c00462{left:233.142000px;}
.x2d_c00462{left:235.899000px;}
.x2_c00462{left:239.490000px;}
.x26_c00462{left:242.104500px;}
.x15_c00462{left:243.229500px;}
.x9_c00462{left:244.896000px;}
.x1c_c00462{left:246.178500px;}
.x2e_c00462{left:250.744500px;}
.x4a_c00462{left:252.667500px;}
.xf_c00462{left:258.876000px;}
.x27_c00462{left:261.025500px;}
.x56_c00462{left:262.063500px;}
.x38_c00462{left:266.422500px;}
.x66_c00462{left:267.753000px;}
.xa_c00462{left:271.614000px;}
.x10_c00462{left:273.396000px;}
.x5c_c00462{left:274.434000px;}
.x24_c00462{left:276.963000px;}
.x44_c00462{left:278.026500px;}
.x20_c00462{left:279.595500px;}
.x34_c00462{left:282.874500px;}
.x6d_c00462{left:285.127500px;}
.x5a_c00462{left:287.017500px;}
.x59_c00462{left:288.792000px;}
.x4e_c00462{left:290.470500px;}
.x16_c00462{left:293.986500px;}
.x39_c00462{left:297.211500px;}
.x21_c00462{left:300.403500px;}
.x45_c00462{left:304.531500px;}
.x69_c00462{left:307.698000px;}
.x57_c00462{left:308.757000px;}
.x4f_c00462{left:320.730000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.fs9_c00462{font-size:42.933333pt;}
.fs8_c00462{font-size:49.466667pt;}
.fsd_c00462{font-size:53.200000pt;}
.fs5_c00462{font-size:54.133333pt;}
.fsc_c00462{font-size:55.066667pt;}
.fs7_c00462{font-size:57.866667pt;}
.fs1_c00462{font-size:58.800000pt;}
.fs3_c00462{font-size:59.733333pt;}
.fs4_c00462{font-size:60.666667pt;}
.fs6_c00462{font-size:61.600000pt;}
.fsb_c00462{font-size:62.533333pt;}
.fs0_c00462{font-size:63.466667pt;}
.fsa_c00462{font-size:64.400000pt;}
.fs2_c00462{font-size:68.133333pt;}
.y0_c00462{bottom:0.000000pt;}
.yc7_c00462{bottom:22.564000pt;}
.yc8_c00462{bottom:23.662667pt;}
.yc9_c00462{bottom:25.197333pt;}
.yca_c00462{bottom:25.844000pt;}
.ycb_c00462{bottom:26.157333pt;}
.ycc_c00462{bottom:26.450667pt;}
.ycd_c00462{bottom:27.333333pt;}
.yc6_c00462{bottom:40.290667pt;}
.yc5_c00462{bottom:56.266667pt;}
.ybe_c00462{bottom:69.357333pt;}
.ybf_c00462{bottom:70.153333pt;}
.yc0_c00462{bottom:70.574667pt;}
.yc1_c00462{bottom:70.974667pt;}
.yc2_c00462{bottom:71.817333pt;}
.yc3_c00462{bottom:72.350667pt;}
.yc4_c00462{bottom:72.516000pt;}
.yb7_c00462{bottom:85.438667pt;}
.yb8_c00462{bottom:86.097333pt;}
.yb9_c00462{bottom:86.822667pt;}
.yba_c00462{bottom:87.029333pt;}
.ybb_c00462{bottom:87.245333pt;}
.ybc_c00462{bottom:88.025333pt;}
.ybd_c00462{bottom:88.201333pt;}
.yb1_c00462{bottom:99.358667pt;}
.yb2_c00462{bottom:99.820000pt;}
.yb3_c00462{bottom:101.120000pt;}
.yb4_c00462{bottom:101.696000pt;}
.yb5_c00462{bottom:102.418667pt;}
.yb6_c00462{bottom:103.341333pt;}
.ya9_c00462{bottom:115.437333pt;}
.yaa_c00462{bottom:115.754667pt;}
.yab_c00462{bottom:116.113333pt;}
.yac_c00462{bottom:116.357333pt;}
.yad_c00462{bottom:116.797333pt;}
.yae_c00462{bottom:117.290667pt;}
.yaf_c00462{bottom:117.493333pt;}
.yb0_c00462{bottom:118.806667pt;}
.ya2_c00462{bottom:130.076000pt;}
.ya3_c00462{bottom:130.562667pt;}
.ya4_c00462{bottom:130.773333pt;}
.ya5_c00462{bottom:131.593333pt;}
.ya6_c00462{bottom:132.380000pt;}
.ya7_c00462{bottom:132.506667pt;}
.ya8_c00462{bottom:132.752000pt;}
.y99_c00462{bottom:145.196000pt;}
.y9a_c00462{bottom:145.569333pt;}
.y9b_c00462{bottom:145.937333pt;}
.y9c_c00462{bottom:146.250667pt;}
.y9d_c00462{bottom:146.860000pt;}
.y9e_c00462{bottom:147.794667pt;}
.y9f_c00462{bottom:148.130667pt;}
.ya0_c00462{bottom:148.440000pt;}
.ya1_c00462{bottom:149.005333pt;}
.y91_c00462{bottom:160.794667pt;}
.y92_c00462{bottom:161.246667pt;}
.y93_c00462{bottom:161.773333pt;}
.y94_c00462{bottom:162.533333pt;}
.y95_c00462{bottom:162.810667pt;}
.y96_c00462{bottom:163.022667pt;}
.y97_c00462{bottom:163.553333pt;}
.y98_c00462{bottom:163.666667pt;}
.y90_c00462{bottom:177.821333pt;}
.y8a_c00462{bottom:191.036000pt;}
.y8b_c00462{bottom:191.954667pt;}
.y8c_c00462{bottom:192.574667pt;}
.y8d_c00462{bottom:193.068000pt;}
.y8e_c00462{bottom:193.378667pt;}
.y8f_c00462{bottom:193.529333pt;}
.y89_c00462{bottom:207.718667pt;}
.y83_c00462{bottom:221.037333pt;}
.y84_c00462{bottom:222.388000pt;}
.y85_c00462{bottom:222.606667pt;}
.y86_c00462{bottom:223.280000pt;}
.y87_c00462{bottom:224.160000pt;}
.y88_c00462{bottom:224.297333pt;}
.y7b_c00462{bottom:236.878667pt;}
.y7c_c00462{bottom:237.353333pt;}
.y7d_c00462{bottom:237.465333pt;}
.y7e_c00462{bottom:238.205333pt;}
.y7f_c00462{bottom:238.490667pt;}
.y80_c00462{bottom:239.129333pt;}
.y81_c00462{bottom:239.494667pt;}
.y82_c00462{bottom:239.993333pt;}
.y75_c00462{bottom:251.032000pt;}
.y76_c00462{bottom:251.526667pt;}
.y77_c00462{bottom:251.968000pt;}
.y78_c00462{bottom:252.293333pt;}
.y79_c00462{bottom:253.294667pt;}
.y7a_c00462{bottom:254.082667pt;}
.y6c_c00462{bottom:266.642667pt;}
.y6d_c00462{bottom:267.401333pt;}
.y6e_c00462{bottom:267.722667pt;}
.y6f_c00462{bottom:268.933333pt;}
.y70_c00462{bottom:269.276000pt;}
.y71_c00462{bottom:269.701333pt;}
.y72_c00462{bottom:270.408000pt;}
.y73_c00462{bottom:271.214667pt;}
.y74_c00462{bottom:271.725333pt;}
.y67_c00462{bottom:282.720000pt;}
.y68_c00462{bottom:283.322667pt;}
.y69_c00462{bottom:284.545333pt;}
.y6a_c00462{bottom:285.222667pt;}
.y6b_c00462{bottom:285.693333pt;}
.y62_c00462{bottom:297.601333pt;}
.y63_c00462{bottom:298.569333pt;}
.y64_c00462{bottom:299.217333pt;}
.y65_c00462{bottom:300.500000pt;}
.y66_c00462{bottom:300.896000pt;}
.y5c_c00462{bottom:312.721333pt;}
.y5d_c00462{bottom:313.745333pt;}
.y5e_c00462{bottom:314.670667pt;}
.y5f_c00462{bottom:315.750667pt;}
.y60_c00462{bottom:316.164000pt;}
.y61_c00462{bottom:316.964000pt;}
.y53_c00462{bottom:326.642667pt;}
.y54_c00462{bottom:327.209333pt;}
.y55_c00462{bottom:327.849333pt;}
.y56_c00462{bottom:328.118667pt;}
.y57_c00462{bottom:328.922667pt;}
.y58_c00462{bottom:329.846667pt;}
.y59_c00462{bottom:330.041333pt;}
.y5a_c00462{bottom:330.770667pt;}
.y5b_c00462{bottom:331.194667pt;}
.y4a_c00462{bottom:342.242667pt;}
.y4b_c00462{bottom:342.685333pt;}
.y4c_c00462{bottom:343.104000pt;}
.y4d_c00462{bottom:343.758667pt;}
.y4e_c00462{bottom:344.269333pt;}
.y4f_c00462{bottom:344.542667pt;}
.y50_c00462{bottom:344.777333pt;}
.y51_c00462{bottom:345.662667pt;}
.y52_c00462{bottom:345.993333pt;}
.y43_c00462{bottom:357.125333pt;}
.y44_c00462{bottom:357.777333pt;}
.y45_c00462{bottom:357.997333pt;}
.y46_c00462{bottom:358.682667pt;}
.y47_c00462{bottom:360.000000pt;}
.y48_c00462{bottom:360.836000pt;}
.y49_c00462{bottom:361.301333pt;}
.y3c_c00462{bottom:372.484000pt;}
.y3d_c00462{bottom:372.725333pt;}
.y3e_c00462{bottom:373.442667pt;}
.y3f_c00462{bottom:373.762667pt;}
.y40_c00462{bottom:373.889333pt;}
.y41_c00462{bottom:374.986667pt;}
.y42_c00462{bottom:375.980000pt;}
.y35_c00462{bottom:387.364000pt;}
.y36_c00462{bottom:387.686667pt;}
.y37_c00462{bottom:388.789333pt;}
.y38_c00462{bottom:389.586667pt;}
.y39_c00462{bottom:389.764000pt;}
.y3a_c00462{bottom:390.470667pt;}
.y3b_c00462{bottom:390.681333pt;}
.y2e_c00462{bottom:402.244000pt;}
.y2f_c00462{bottom:402.681333pt;}
.y30_c00462{bottom:403.108000pt;}
.y31_c00462{bottom:404.068000pt;}
.y32_c00462{bottom:405.208000pt;}
.y33_c00462{bottom:405.396000pt;}
.y34_c00462{bottom:405.665333pt;}
.y26_c00462{bottom:417.842667pt;}
.y27_c00462{bottom:418.437333pt;}
.y28_c00462{bottom:418.721333pt;}
.y29_c00462{bottom:419.910667pt;}
.y2a_c00462{bottom:420.108000pt;}
.y2b_c00462{bottom:420.814667pt;}
.y2c_c00462{bottom:421.026667pt;}
.y2d_c00462{bottom:421.510667pt;}
.y1f_c00462{bottom:432.482667pt;}
.y20_c00462{bottom:432.893333pt;}
.y21_c00462{bottom:433.810667pt;}
.y22_c00462{bottom:434.106667pt;}
.y23_c00462{bottom:435.013333pt;}
.y24_c00462{bottom:436.877333pt;}
.y25_c00462{bottom:437.229333pt;}
.y18_c00462{bottom:448.564000pt;}
.y19_c00462{bottom:449.220000pt;}
.y1a_c00462{bottom:449.937333pt;}
.y1b_c00462{bottom:450.464000pt;}
.y1c_c00462{bottom:450.709333pt;}
.y1d_c00462{bottom:451.396000pt;}
.y1e_c00462{bottom:451.810667pt;}
.y10_c00462{bottom:462.725333pt;}
.y11_c00462{bottom:463.472000pt;}
.y12_c00462{bottom:463.844000pt;}
.y13_c00462{bottom:465.826667pt;}
.y14_c00462{bottom:466.188000pt;}
.y15_c00462{bottom:466.713333pt;}
.y16_c00462{bottom:466.982667pt;}
.y17_c00462{bottom:467.616000pt;}
.ya_c00462{bottom:478.084000pt;}
.yb_c00462{bottom:480.126667pt;}
.yc_c00462{bottom:480.658667pt;}
.yd_c00462{bottom:481.325333pt;}
.ye_c00462{bottom:481.714667pt;}
.yf_c00462{bottom:481.934667pt;}
.y2_c00462{bottom:492.725333pt;}
.y3_c00462{bottom:493.133333pt;}
.y4_c00462{bottom:493.980000pt;}
.y5_c00462{bottom:494.745333pt;}
.y6_c00462{bottom:495.118667pt;}
.y7_c00462{bottom:495.662667pt;}
.y8_c00462{bottom:496.917333pt;}
.y9_c00462{bottom:497.416000pt;}
.y1_c00462{bottom:510.492000pt;}
.hb_c00462{height:42.933333pt;}
.ha_c00462{height:49.466667pt;}
.hf_c00462{height:53.200000pt;}
.h7_c00462{height:54.133333pt;}
.he_c00462{height:55.066667pt;}
.h9_c00462{height:57.866667pt;}
.h3_c00462{height:58.800000pt;}
.h5_c00462{height:59.733333pt;}
.h6_c00462{height:60.666667pt;}
.h8_c00462{height:61.600000pt;}
.hd_c00462{height:62.533333pt;}
.h2_c00462{height:63.466667pt;}
.hc_c00462{height:64.400000pt;}
.h4_c00462{height:68.133333pt;}
.h0_c00462{height:549.066667pt;}
.h1_c00462{height:549.333333pt;}
.w0_c00462{width:319.200000pt;}
.w1_c00462{width:319.333333pt;}
.x0_c00462{left:0.000000pt;}
.x67_c00462{left:14.338667pt;}
.x28_c00462{left:15.558667pt;}
.xb_c00462{left:16.533333pt;}
.x3_c00462{left:18.042667pt;}
.x5e_c00462{left:19.132000pt;}
.x6f_c00462{left:20.026667pt;}
.x2f_c00462{left:34.496000pt;}
.x29_c00462{left:35.690667pt;}
.x4_c00462{left:37.458667pt;}
.x1d_c00462{left:38.858667pt;}
.x50_c00462{left:40.092000pt;}
.x61_c00462{left:42.113333pt;}
.x6c_c00462{left:43.446667pt;}
.x25_c00462{left:45.544000pt;}
.x3a_c00462{left:47.150667pt;}
.x3f_c00462{left:49.165333pt;}
.x5d_c00462{left:51.848000pt;}
.x11_c00462{left:54.129333pt;}
.x64_c00462{left:55.581333pt;}
.x17_c00462{left:56.808000pt;}
.x6e_c00462{left:58.806667pt;}
.x4b_c00462{left:61.372000pt;}
.x54_c00462{left:63.746667pt;}
.x62_c00462{left:66.649333pt;}
.x35_c00462{left:69.788000pt;}
.x12_c00462{left:72.732000pt;}
.x3b_c00462{left:75.056000pt;}
.x51_c00462{left:76.592000pt;}
.x5_c00462{left:77.781333pt;}
.x47_c00462{left:79.174667pt;}
.x30_c00462{left:82.281333pt;}
.x40_c00462{left:84.746667pt;}
.x1e_c00462{left:87.136000pt;}
.x41_c00462{left:99.724000pt;}
.x5b_c00462{left:100.698667pt;}
.x18_c00462{left:101.626667pt;}
.x1f_c00462{left:102.702667pt;}
.x31_c00462{left:103.608000pt;}
.x2a_c00462{left:104.584000pt;}
.x36_c00462{left:110.117333pt;}
.x32_c00462{left:112.013333pt;}
.x6_c00462{left:114.230667pt;}
.x3c_c00462{left:118.722667pt;}
.x48_c00462{left:119.709333pt;}
.x52_c00462{left:124.245333pt;}
.x55_c00462{left:125.414667pt;}
.x63_c00462{left:128.090667pt;}
.x46_c00462{left:129.777333pt;}
.x6a_c00462{left:130.689333pt;}
.x7_c00462{left:132.034667pt;}
.x19_c00462{left:134.568000pt;}
.xc_c00462{left:136.693333pt;}
.x1_c00462{left:137.760000pt;}
.x65_c00462{left:141.514667pt;}
.x42_c00462{left:144.426667pt;}
.x22_c00462{left:146.256000pt;}
.x6b_c00462{left:147.966667pt;}
.x1a_c00462{left:149.928000pt;}
.x70_c00462{left:151.701333pt;}
.x3d_c00462{left:152.792000pt;}
.x2b_c00462{left:154.429333pt;}
.x4c_c00462{left:155.398667pt;}
.x68_c00462{left:156.858667pt;}
.x8_c00462{left:157.958667pt;}
.x53_c00462{left:161.794667pt;}
.x5f_c00462{left:164.016000pt;}
.x2c_c00462{left:165.528000pt;}
.xd_c00462{left:167.986667pt;}
.x13_c00462{left:171.869333pt;}
.x4d_c00462{left:178.553333pt;}
.x71_c00462{left:184.006667pt;}
.x33_c00462{left:185.204000pt;}
.x3e_c00462{left:186.650667pt;}
.x37_c00462{left:187.634667pt;}
.x58_c00462{left:189.041333pt;}
.x14_c00462{left:189.968000pt;}
.x1b_c00462{left:192.885333pt;}
.x43_c00462{left:195.761333pt;}
.x49_c00462{left:199.872000pt;}
.x23_c00462{left:202.698667pt;}
.x60_c00462{left:204.746667pt;}
.xe_c00462{left:207.237333pt;}
.x2d_c00462{left:209.688000pt;}
.x2_c00462{left:212.880000pt;}
.x26_c00462{left:215.204000pt;}
.x15_c00462{left:216.204000pt;}
.x9_c00462{left:217.685333pt;}
.x1c_c00462{left:218.825333pt;}
.x2e_c00462{left:222.884000pt;}
.x4a_c00462{left:224.593333pt;}
.xf_c00462{left:230.112000pt;}
.x27_c00462{left:232.022667pt;}
.x56_c00462{left:232.945333pt;}
.x38_c00462{left:236.820000pt;}
.x66_c00462{left:238.002667pt;}
.xa_c00462{left:241.434667pt;}
.x10_c00462{left:243.018667pt;}
.x5c_c00462{left:243.941333pt;}
.x24_c00462{left:246.189333pt;}
.x44_c00462{left:247.134667pt;}
.x20_c00462{left:248.529333pt;}
.x34_c00462{left:251.444000pt;}
.x6d_c00462{left:253.446667pt;}
.x5a_c00462{left:255.126667pt;}
.x59_c00462{left:256.704000pt;}
.x4e_c00462{left:258.196000pt;}
.x16_c00462{left:261.321333pt;}
.x39_c00462{left:264.188000pt;}
.x21_c00462{left:267.025333pt;}
.x45_c00462{left:270.694667pt;}
.x69_c00462{left:273.509333pt;}
.x57_c00462{left:274.450667pt;}
.x4f_c00462{left:285.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00463{transform:matrix(0.022728,0.000295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.022728,0.000295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.022728,0.000295,-0.003250,0.249979,0,0);}
.mc2_c00463{transform:matrix(0.040177,0.000522,-0.003250,0.249979,0,0);-ms-transform:matrix(0.040177,0.000522,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.040177,0.000522,-0.003250,0.249979,0,0);}
.mad_c00463{transform:matrix(0.107881,0.001402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.107881,0.001402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.107881,0.001402,-0.003250,0.249979,0,0);}
.m67_c00463{transform:matrix(0.115267,0.001729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.115267,0.001729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.115267,0.001729,-0.003750,0.249972,0,0);}
.m47_c00463{transform:matrix(0.125708,0.001760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.125708,0.001760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.125708,0.001760,-0.003500,0.249976,0,0);}
.m27_c00463{transform:matrix(0.140884,0.002113,-0.003750,0.249972,0,0);-ms-transform:matrix(0.140884,0.002113,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.140884,0.002113,-0.003750,0.249972,0,0);}
.me3_c00463{transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143870,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.144523,0.001445,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144523,0.001445,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144523,0.001445,-0.002500,0.249988,0,0);}
.m2_c00463{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.154687,0.001547,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154687,0.001547,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154687,0.001547,-0.002500,0.249988,0,0);}
.mf1_c00463{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154805,0.000000,0.000000,0.250000,0,0);}
.m86_c00463{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158410,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{transform:matrix(0.160937,0.001609,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160937,0.001609,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160937,0.001609,-0.002500,0.249988,0,0);}
.m84_c00463{transform:matrix(0.161239,0.002257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161239,0.002257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161239,0.002257,-0.003500,0.249976,0,0);}
.m8_c00463{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00463{transform:matrix(0.162339,0.002273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162339,0.002273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162339,0.002273,-0.003500,0.249976,0,0);}
.m97_c00463{transform:matrix(0.164256,0.002135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164256,0.002135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164256,0.002135,-0.003250,0.249979,0,0);}
.mdf_c00463{transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165490,0.000000,0.000000,0.250000,0,0);}
.ma5_c00463{transform:matrix(0.165651,0.002153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165651,0.002153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165651,0.002153,-0.003250,0.249979,0,0);}
.m6b_c00463{transform:matrix(0.168653,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168653,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168653,0.002361,-0.003500,0.249976,0,0);}
.m3_c00463{transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00463{transform:matrix(0.169041,0.002198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169041,0.002198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169041,0.002198,-0.003250,0.249979,0,0);}
.m11_c00463{transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.169555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169555,0.000000,0.000000,0.250000,0,0);}
.m95_c00463{transform:matrix(0.169571,0.002204,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169571,0.002204,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169571,0.002204,-0.003250,0.249979,0,0);}
.m65_c00463{transform:matrix(0.170311,0.002555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170311,0.002555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170311,0.002555,-0.003750,0.249972,0,0);}
.m21_c00463{transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);}
.mb5_c00463{transform:matrix(0.172095,0.002237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172095,0.002237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172095,0.002237,-0.003250,0.249979,0,0);}
.m2b_c00463{transform:matrix(0.172116,0.002582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172116,0.002582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172116,0.002582,-0.003750,0.249972,0,0);}
.mb6_c00463{transform:matrix(0.173670,0.002258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173670,0.002258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173670,0.002258,-0.003250,0.249979,0,0);}
.m71_c00463{transform:matrix(0.174498,0.002443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174498,0.002443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174498,0.002443,-0.003500,0.249976,0,0);}
.m36_c00463{transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175210,0.002628,-0.003750,0.249972,0,0);}
.m1f_c00463{transform:matrix(0.176427,0.002823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176427,0.002823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176427,0.002823,-0.003999,0.249968,0,0);}
.m24_c00463{transform:matrix(0.177195,0.002658,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177195,0.002658,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177195,0.002658,-0.003750,0.249972,0,0);}
.mfc_c00463{transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);}
.mef_c00463{transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);}
.m1e_c00463{transform:matrix(0.177502,0.002840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177502,0.002840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177502,0.002840,-0.003999,0.249968,0,0);}
.m96_c00463{transform:matrix(0.177550,0.002308,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177550,0.002308,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177550,0.002308,-0.003250,0.249979,0,0);}
.m94_c00463{transform:matrix(0.177555,0.002308,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177555,0.002308,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177555,0.002308,-0.003250,0.249979,0,0);}
.m70_c00463{transform:matrix(0.178178,0.002494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178178,0.002494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178178,0.002494,-0.003500,0.249976,0,0);}
.mfb_c00463{transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);}
.m76_c00463{transform:matrix(0.178428,0.002498,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178428,0.002498,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178428,0.002498,-0.003500,0.249976,0,0);}
.m29_c00463{transform:matrix(0.178620,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178620,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178620,0.002679,-0.003750,0.249972,0,0);}
.mf0_c00463{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m42_c00463{transform:matrix(0.179681,0.001797,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179681,0.001797,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179681,0.001797,-0.002500,0.249988,0,0);}
.m6_c00463{transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);}
.me2_c00463{transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180820,0.000000,0.000000,0.250000,0,0);}
.m99_c00463{transform:matrix(0.180925,0.002352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180925,0.002352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180925,0.002352,-0.003250,0.249979,0,0);}
.m23_c00463{transform:matrix(0.181075,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181075,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181075,0.002716,-0.003750,0.249972,0,0);}
.m1_c00463{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00463{transform:matrix(0.182770,0.002376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182770,0.002376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182770,0.002376,-0.003250,0.249979,0,0);}
.m4d_c00463{transform:matrix(0.182807,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182807,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182807,0.002559,-0.003500,0.249976,0,0);}
.mcd_c00463{transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.183319,0.002750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183319,0.002750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183319,0.002750,-0.003750,0.249972,0,0);}
.m9d_c00463{transform:matrix(0.183564,0.002386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183564,0.002386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183564,0.002386,-0.003250,0.249979,0,0);}
.m64_c00463{transform:matrix(0.183689,0.002755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183689,0.002755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183689,0.002755,-0.003750,0.249972,0,0);}
.m45_c00463{transform:matrix(0.183842,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183842,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183842,0.002574,-0.003500,0.249976,0,0);}
.m3d_c00463{transform:matrix(0.184031,0.001840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184031,0.001840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184031,0.001840,-0.002500,0.249988,0,0);}
.m7f_c00463{transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);}
.me0_c00463{transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00463{transform:matrix(0.185139,0.002407,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185139,0.002407,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185139,0.002407,-0.003250,0.249979,0,0);}
.m7_c00463{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185205,0.000000,0.000000,0.250000,0,0);}
.m60_c00463{transform:matrix(0.185337,0.002595,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185337,0.002595,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185337,0.002595,-0.003500,0.249976,0,0);}
.m17_c00463{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186155,0.000000,0.000000,0.250000,0,0);}
.m98_c00463{transform:matrix(0.186229,0.002421,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186229,0.002421,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186229,0.002421,-0.003250,0.249979,0,0);}
.m6e_c00463{transform:matrix(0.187087,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187087,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187087,0.002619,-0.003500,0.249976,0,0);}
.ma2_c00463{transform:matrix(0.187454,0.002437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187454,0.002437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187454,0.002437,-0.003250,0.249979,0,0);}
.m6d_c00463{transform:matrix(0.187782,0.002629,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187782,0.002629,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187782,0.002629,-0.003500,0.249976,0,0);}
.m19_c00463{transform:matrix(0.187901,0.003006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187901,0.003006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187901,0.003006,-0.003999,0.249968,0,0);}
.m39_c00463{transform:matrix(0.187939,0.002819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187939,0.002819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187939,0.002819,-0.003750,0.249972,0,0);}
.m5d_c00463{transform:matrix(0.188002,0.002632,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188002,0.002632,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188002,0.002632,-0.003500,0.249976,0,0);}
.me6_c00463{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.ma8_c00463{transform:matrix(0.188409,0.002449,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188409,0.002449,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188409,0.002449,-0.003250,0.249979,0,0);}
.m73_c00463{transform:matrix(0.188811,0.002643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188811,0.002643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188811,0.002643,-0.003500,0.249976,0,0);}
.m5a_c00463{transform:matrix(0.189136,0.002648,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189136,0.002648,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189136,0.002648,-0.003500,0.249976,0,0);}
.m37_c00463{transform:matrix(0.189304,0.002840,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189304,0.002840,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189304,0.002840,-0.003750,0.249972,0,0);}
.m4_c00463{transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189405,0.000000,0.000000,0.250000,0,0);}
.m5b_c00463{transform:matrix(0.189556,0.002654,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189556,0.002654,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189556,0.002654,-0.003500,0.249976,0,0);}
.m4a_c00463{transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);}
.m62_c00463{transform:matrix(0.190414,0.002856,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190414,0.002856,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190414,0.002856,-0.003750,0.249972,0,0);}
.m1c_c00463{transform:matrix(0.190566,0.003049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190566,0.003049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190566,0.003049,-0.003999,0.249968,0,0);}
.m46_c00463{transform:matrix(0.190631,0.002669,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190631,0.002669,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190631,0.002669,-0.003500,0.249976,0,0);}
.m74_c00463{transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190641,0.002669,-0.003500,0.249976,0,0);}
.md_c00463{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.me5_c00463{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.191445,0.001914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191445,0.001914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191445,0.001914,-0.002500,0.249988,0,0);}
.m10_c00463{transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.me9_c00463{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.mcf_c00463{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.m61_c00463{transform:matrix(0.194641,0.002725,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194641,0.002725,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194641,0.002725,-0.003500,0.249976,0,0);}
.mbe_c00463{transform:matrix(0.194839,0.002533,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194839,0.002533,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194839,0.002533,-0.003250,0.249979,0,0);}
.m92_c00463{transform:matrix(0.194999,0.002535,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194999,0.002535,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194999,0.002535,-0.003250,0.249979,0,0);}
.ma7_c00463{transform:matrix(0.195478,0.002541,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195478,0.002541,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195478,0.002541,-0.003250,0.249979,0,0);}
.m4b_c00463{transform:matrix(0.196046,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196046,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196046,0.002745,-0.003500,0.249976,0,0);}
.m20_c00463{transform:matrix(0.196075,0.003137,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196075,0.003137,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196075,0.003137,-0.003999,0.249968,0,0);}
.m52_c00463{transform:matrix(0.196346,0.002749,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196346,0.002749,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196346,0.002749,-0.003500,0.249976,0,0);}
.m26_c00463{transform:matrix(0.196373,0.002946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196373,0.002946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196373,0.002946,-0.003750,0.249972,0,0);}
.m72_c00463{transform:matrix(0.196416,0.002750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196416,0.002750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196416,0.002750,-0.003500,0.249976,0,0);}
.md4_c00463{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196961,0.002757,-0.003500,0.249976,0,0);}
.m54_c00463{transform:matrix(0.197126,0.002760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197126,0.002760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197126,0.002760,-0.003500,0.249976,0,0);}
.md0_c00463{transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);}
.m31_c00463{transform:matrix(0.197353,0.002960,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197353,0.002960,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197353,0.002960,-0.003750,0.249972,0,0);}
.m7d_c00463{transform:matrix(0.197391,0.002763,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197391,0.002763,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197391,0.002763,-0.003500,0.249976,0,0);}
.ma6_c00463{transform:matrix(0.197598,0.002569,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197598,0.002569,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197598,0.002569,-0.003250,0.249979,0,0);}
.md3_c00463{transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197630,0.000000,0.000000,0.250000,0,0);}
.m75_c00463{transform:matrix(0.197916,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197916,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197916,0.002771,-0.003500,0.249976,0,0);}
.mbd_c00463{transform:matrix(0.198193,0.002577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198193,0.002577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198193,0.002577,-0.003250,0.249979,0,0);}
.m5f_c00463{transform:matrix(0.198516,0.002779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198516,0.002779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198516,0.002779,-0.003500,0.249976,0,0);}
.md1_c00463{transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198645,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199420,0.000000,0.000000,0.250000,0,0);}
.m93_c00463{transform:matrix(0.199653,0.002595,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199653,0.002595,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199653,0.002595,-0.003250,0.249979,0,0);}
.m8f_c00463{transform:matrix(0.199683,0.002596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199683,0.002596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199683,0.002596,-0.003250,0.249979,0,0);}
.m81_c00463{transform:matrix(0.200110,0.002802,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200110,0.002802,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200110,0.002802,-0.003500,0.249976,0,0);}
.mf3_c00463{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.mf4_c00463{transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200615,0.000000,0.000000,0.250000,0,0);}
.m49_c00463{transform:matrix(0.200615,0.002809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200615,0.002809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200615,0.002809,-0.003500,0.249976,0,0);}
.m85_c00463{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.mbc_c00463{transform:matrix(0.200963,0.002613,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200963,0.002613,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200963,0.002613,-0.003250,0.249979,0,0);}
.mf7_c00463{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m79_c00463{transform:matrix(0.201395,0.002820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201395,0.002820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201395,0.002820,-0.003500,0.249976,0,0);}
.mf6_c00463{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.m1d_c00463{transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201699,0.003227,-0.003999,0.249968,0,0);}
.mbb_c00463{transform:matrix(0.201823,0.002624,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201823,0.002624,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201823,0.002624,-0.003250,0.249979,0,0);}
.me7_c00463{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.m78_c00463{transform:matrix(0.202325,0.002833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202325,0.002833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202325,0.002833,-0.003500,0.249976,0,0);}
.ma3_c00463{transform:matrix(0.202593,0.002634,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202593,0.002634,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202593,0.002634,-0.003250,0.249979,0,0);}
.m3f_c00463{transform:matrix(0.202700,0.002027,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202700,0.002027,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202700,0.002027,-0.002500,0.249988,0,0);}
.me1_c00463{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.md2_c00463{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.mf9_c00463{transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203045,0.000000,0.000000,0.250000,0,0);}
.m1a_c00463{transform:matrix(0.203469,0.003256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203469,0.003256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203469,0.003256,-0.003999,0.249968,0,0);}
.m5c_c00463{transform:matrix(0.203775,0.002853,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203775,0.002853,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203775,0.002853,-0.003500,0.249976,0,0);}
.m9_c00463{transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204680,0.000000,0.000000,0.250000,0,0);}
.mde_c00463{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.m4f_c00463{transform:matrix(0.205150,0.002872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205150,0.002872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205150,0.002872,-0.003500,0.249976,0,0);}
.mba_c00463{transform:matrix(0.205483,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205483,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205483,0.002671,-0.003250,0.249979,0,0);}
.mc5_c00463{transform:matrix(0.206013,0.002678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206013,0.002678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206013,0.002678,-0.003250,0.249979,0,0);}
.m56_c00463{transform:matrix(0.206360,0.002889,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206360,0.002889,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206360,0.002889,-0.003500,0.249976,0,0);}
.md7_c00463{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.207197,0.003108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207197,0.003108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207197,0.003108,-0.003750,0.249972,0,0);}
.maa_c00463{transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);}
.m25_c00463{transform:matrix(0.207547,0.003113,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207547,0.003113,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207547,0.003113,-0.003750,0.249972,0,0);}
.m7e_c00463{transform:matrix(0.207875,0.002910,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207875,0.002910,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207875,0.002910,-0.003500,0.249976,0,0);}
.m4c_c00463{transform:matrix(0.207940,0.002911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207940,0.002911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207940,0.002911,-0.003500,0.249976,0,0);}
.m50_c00463{transform:matrix(0.208050,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208050,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208050,0.002913,-0.003500,0.249976,0,0);}
.m8a_c00463{transform:matrix(0.208872,0.002715,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208872,0.002715,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208872,0.002715,-0.003250,0.249979,0,0);}
.ma4_c00463{transform:matrix(0.208972,0.002717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208972,0.002717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208972,0.002717,-0.003250,0.249979,0,0);}
.mce_c00463{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m57_c00463{transform:matrix(0.209459,0.002932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209459,0.002932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209459,0.002932,-0.003500,0.249976,0,0);}
.mb7_c00463{transform:matrix(0.209837,0.002728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209837,0.002728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209837,0.002728,-0.003250,0.249979,0,0);}
.m88_c00463{transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.210276,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210276,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210276,0.003154,-0.003750,0.249972,0,0);}
.m1b_c00463{transform:matrix(0.210408,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210408,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210408,0.003367,-0.003999,0.249968,0,0);}
.m68_c00463{transform:matrix(0.210731,0.003161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210731,0.003161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210731,0.003161,-0.003750,0.249972,0,0);}
.m33_c00463{transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);}
.m6f_c00463{transform:matrix(0.211959,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211959,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211959,0.002967,-0.003500,0.249976,0,0);}
.m89_c00463{transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);}
.m6c_c00463{transform:matrix(0.212054,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212054,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212054,0.002969,-0.003500,0.249976,0,0);}
.me8_c00463{transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212465,0.000000,0.000000,0.250000,0,0);}
.mf5_c00463{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m77_c00463{transform:matrix(0.212864,0.002980,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212864,0.002980,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212864,0.002980,-0.003500,0.249976,0,0);}
.m13_c00463{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m83_c00463{transform:matrix(0.213874,0.002994,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213874,0.002994,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213874,0.002994,-0.003500,0.249976,0,0);}
.m6a_c00463{transform:matrix(0.214264,0.003000,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214264,0.003000,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214264,0.003000,-0.003500,0.249976,0,0);}
.m9c_c00463{transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);}
.mdc_c00463{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.mc7_c00463{transform:matrix(0.214902,0.002794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214902,0.002794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214902,0.002794,-0.003250,0.249979,0,0);}
.m9b_c00463{transform:matrix(0.215012,0.002795,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215012,0.002795,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215012,0.002795,-0.003250,0.249979,0,0);}
.m2c_c00463{transform:matrix(0.215146,0.003227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215146,0.003227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215146,0.003227,-0.003750,0.249972,0,0);}
.mb9_c00463{transform:matrix(0.215337,0.002799,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215337,0.002799,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215337,0.002799,-0.003250,0.249979,0,0);}
.me4_c00463{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.215761,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215761,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215761,0.003236,-0.003750,0.249972,0,0);}
.m7b_c00463{transform:matrix(0.215844,0.003022,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215844,0.003022,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215844,0.003022,-0.003500,0.249976,0,0);}
.mb8_c00463{transform:matrix(0.216272,0.002812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216272,0.002812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216272,0.002812,-0.003250,0.249979,0,0);}
.m41_c00463{transform:matrix(0.216314,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216314,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216314,0.002163,-0.002500,0.249988,0,0);}
.m9e_c00463{transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217087,0.002822,-0.003250,0.249979,0,0);}
.m9a_c00463{transform:matrix(0.218047,0.002835,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218047,0.002835,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218047,0.002835,-0.003250,0.249979,0,0);}
.m58_c00463{transform:matrix(0.218204,0.003055,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218204,0.003055,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218204,0.003055,-0.003500,0.249976,0,0);}
.m16_c00463{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m55_c00463{transform:matrix(0.219968,0.003080,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219968,0.003080,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219968,0.003080,-0.003500,0.249976,0,0);}
.m87_c00463{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.mee_c00463{transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.220930,0.003314,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220930,0.003314,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220930,0.003314,-0.003750,0.249972,0,0);}
.m9f_c00463{transform:matrix(0.221081,0.002874,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221081,0.002874,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221081,0.002874,-0.003250,0.249979,0,0);}
.mea_c00463{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.mf8_c00463{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.222455,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222455,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222455,0.003337,-0.003750,0.249972,0,0);}
.ma0_c00463{transform:matrix(0.222506,0.002893,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222506,0.002893,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222506,0.002893,-0.003250,0.249979,0,0);}
.meb_c00463{transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);}
.m63_c00463{transform:matrix(0.222755,0.003341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222755,0.003341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222755,0.003341,-0.003750,0.249972,0,0);}
.m7c_c00463{transform:matrix(0.224098,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224098,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224098,0.003137,-0.003500,0.249976,0,0);}
.m2e_c00463{transform:matrix(0.224670,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224670,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224670,0.003370,-0.003750,0.249972,0,0);}
.mbf_c00463{transform:matrix(0.225301,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225301,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225301,0.002929,-0.003250,0.249979,0,0);}
.mb_c00463{transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.227164,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227164,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227164,0.002272,-0.002500,0.249988,0,0);}
.md8_c00463{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m51_c00463{transform:matrix(0.229398,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229398,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229398,0.003212,-0.003500,0.249976,0,0);}
.mc8_c00463{transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);}
.m53_c00463{transform:matrix(0.231462,0.003240,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231462,0.003240,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231462,0.003240,-0.003500,0.249976,0,0);}
.md6_c00463{transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233180,0.000000,0.000000,0.250000,0,0);}
.m90_c00463{transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);}
.mcb_c00463{transform:matrix(0.234050,0.003043,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234050,0.003043,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234050,0.003043,-0.003250,0.249979,0,0);}
.m38_c00463{transform:matrix(0.236143,0.003542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236143,0.003542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236143,0.003542,-0.003750,0.249972,0,0);}
.m8b_c00463{transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);}
.m59_c00463{transform:matrix(0.240061,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240061,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240061,0.003361,-0.003500,0.249976,0,0);}
.mec_c00463{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240955,0.000000,0.000000,0.250000,0,0);}
.md9_c00463{transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241110,0.000000,0.000000,0.250000,0,0);}
.mca_c00463{transform:matrix(0.242595,0.003154,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242595,0.003154,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242595,0.003154,-0.003250,0.249979,0,0);}
.m2d_c00463{transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243808,0.003657,-0.003750,0.249972,0,0);}
.m4e_c00463{transform:matrix(0.244011,0.003416,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244011,0.003416,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244011,0.003416,-0.003500,0.249976,0,0);}
.m80_c00463{transform:matrix(0.247446,0.003464,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247446,0.003464,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247446,0.003464,-0.003500,0.249976,0,0);}
.mdb_c00463{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.m7a_c00463{transform:matrix(0.249966,0.003500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249966,0.003500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249966,0.003500,-0.003500,0.249976,0,0);}
.m8c_c00463{transform:matrix(0.250204,0.003253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250204,0.003253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250204,0.003253,-0.003250,0.249979,0,0);}
.mb4_c00463{transform:matrix(0.250214,0.003253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250214,0.003253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250214,0.003253,-0.003250,0.249979,0,0);}
.mda_c00463{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.mfa_c00463{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.mcc_c00463{transform:matrix(0.251939,0.003275,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251939,0.003275,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251939,0.003275,-0.003250,0.249979,0,0);}
.mc9_c00463{transform:matrix(0.252709,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252709,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252709,0.003285,-0.003250,0.249979,0,0);}
.m3a_c00463{transform:matrix(0.253257,0.003799,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253257,0.003799,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253257,0.003799,-0.003750,0.249972,0,0);}
.mab_c00463{transform:matrix(0.262438,0.003412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262438,0.003412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262438,0.003412,-0.003250,0.249979,0,0);}
.mf2_c00463{transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00463{transform:matrix(0.265373,0.003450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265373,0.003450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265373,0.003450,-0.003250,0.249979,0,0);}
.mb2_c00463{transform:matrix(0.265573,0.003452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265573,0.003452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265573,0.003452,-0.003250,0.249979,0,0);}
.m69_c00463{transform:matrix(0.270835,0.004063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270835,0.004063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270835,0.004063,-0.003750,0.249972,0,0);}
.md5_c00463{transform:matrix(0.279980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279980,0.000000,0.000000,0.250000,0,0);}
.m66_c00463{transform:matrix(0.282728,0.004241,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282728,0.004241,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282728,0.004241,-0.003750,0.249972,0,0);}
.m82_c00463{transform:matrix(0.282922,0.003961,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282922,0.003961,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282922,0.003961,-0.003500,0.249976,0,0);}
.mdd_c00463{transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);}
.m8e_c00463{transform:matrix(0.286746,0.003728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286746,0.003728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286746,0.003728,-0.003250,0.249979,0,0);}
.m34_c00463{transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);}
.mc3_c00463{transform:matrix(0.299450,0.003893,-0.003250,0.249979,0,0);-ms-transform:matrix(0.299450,0.003893,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.299450,0.003893,-0.003250,0.249979,0,0);}
.m8d_c00463{transform:matrix(0.321968,0.004186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321968,0.004186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321968,0.004186,-0.003250,0.249979,0,0);}
.med_c00463{transform:matrix(0.340715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340715,0.000000,0.000000,0.250000,0,0);}
.m35_c00463{transform:matrix(0.341277,0.005119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.341277,0.005119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.341277,0.005119,-0.003750,0.249972,0,0);}
.m91_c00463{transform:matrix(0.351895,0.004575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351895,0.004575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351895,0.004575,-0.003250,0.249979,0,0);}
.m3b_c00463{transform:matrix(0.361404,0.005421,-0.003750,0.249972,0,0);-ms-transform:matrix(0.361404,0.005421,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.361404,0.005421,-0.003750,0.249972,0,0);}
.mb3_c00463{transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);-ms-transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);}
.mb1_c00463{transform:matrix(0.457336,0.005945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.457336,0.005945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.457336,0.005945,-0.003250,0.249979,0,0);}
.mc0_c00463{transform:matrix(0.459116,0.005969,-0.003250,0.249979,0,0);-ms-transform:matrix(0.459116,0.005969,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.459116,0.005969,-0.003250,0.249979,0,0);}
.mb0_c00463{transform:matrix(0.462006,0.006006,-0.003250,0.249979,0,0);-ms-transform:matrix(0.462006,0.006006,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.462006,0.006006,-0.003250,0.249979,0,0);}
.mac_c00463{transform:matrix(0.493588,0.006417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.493588,0.006417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.493588,0.006417,-0.003250,0.249979,0,0);}
.mae_c00463{transform:matrix(0.540609,0.007028,-0.003250,0.249979,0,0);-ms-transform:matrix(0.540609,0.007028,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.540609,0.007028,-0.003250,0.249979,0,0);}
.maf_c00463{transform:matrix(0.560858,0.007291,-0.003250,0.249979,0,0);-ms-transform:matrix(0.560858,0.007291,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.560858,0.007291,-0.003250,0.249979,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._0_c00463{width:1009.424133px;}
.fc0_c00463{color:transparent;}
.fs14_c00463{font-size:33.602839px;}
.fs12_c00463{font-size:38.853283px;}
.fs15_c00463{font-size:54.604614px;}
.fs17_c00463{font-size:57.750000px;}
.fsf_c00463{font-size:57.754880px;}
.fs6_c00463{font-size:57.756497px;}
.fsd_c00463{font-size:58.805762px;}
.fs7_c00463{font-size:58.806615px;}
.fsb_c00463{font-size:59.855865px;}
.fs16_c00463{font-size:60.900000px;}
.fsa_c00463{font-size:60.905968px;}
.fs5_c00463{font-size:60.906851px;}
.fse_c00463{font-size:61.950000px;}
.fs4_c00463{font-size:61.957929px;}
.fs11_c00463{font-size:63.005323px;}
.fs9_c00463{font-size:63.006174px;}
.fs18_c00463{font-size:64.050000px;}
.fs2_c00463{font-size:66.150000px;}
.fs8_c00463{font-size:66.153307px;}
.fsc_c00463{font-size:66.156482px;}
.fs3_c00463{font-size:67.200000px;}
.fs13_c00463{font-size:70.355944px;}
.fs10_c00463{font-size:71.406033px;}
.fs1_c00463{font-size:72.450000px;}
.fs0_c00463{font-size:80.850000px;}
.y0_c00463{bottom:0.000000px;}
.ycf_c00463{bottom:33.808500px;}
.yce_c00463{bottom:50.760000px;}
.ycd_c00463{bottom:66.576000px;}
.ycc_c00463{bottom:84.510000px;}
.ycb_c00463{bottom:100.228500px;}
.yca_c00463{bottom:117.321000px;}
.ybb_c00463{bottom:134.584212px;}
.yb9_c00463{bottom:134.584455px;}
.yba_c00463{bottom:134.584854px;}
.yb8_c00463{bottom:134.585097px;}
.yb7_c00463{bottom:134.585189px;}
.yb6_c00463{bottom:134.585709px;}
.yb5_c00463{bottom:150.696756px;}
.yb4_c00463{bottom:151.529939px;}
.yb3_c00463{bottom:151.764999px;}
.yb2_c00463{bottom:152.661041px;}
.yb1_c00463{bottom:152.952936px;}
.yb0_c00463{bottom:154.155575px;}
.yaf_c00463{bottom:154.434660px;}
.yaa_c00463{bottom:169.848065px;}
.yab_c00463{bottom:169.848303px;}
.ya9_c00463{bottom:169.848345px;}
.ya8_c00463{bottom:169.848557px;}
.yac_c00463{bottom:169.848602px;}
.yae_c00463{bottom:169.849049px;}
.yad_c00463{bottom:169.849200px;}
.ya7_c00463{bottom:186.206898px;}
.ya3_c00463{bottom:186.206952px;}
.ya2_c00463{bottom:186.207173px;}
.ya5_c00463{bottom:186.207240px;}
.ya4_c00463{bottom:186.207381px;}
.y9f_c00463{bottom:186.207386px;}
.ya6_c00463{bottom:186.207539px;}
.ya1_c00463{bottom:186.207603px;}
.ya0_c00463{bottom:186.207785px;}
.y9e_c00463{bottom:201.505160px;}
.y9d_c00463{bottom:202.298225px;}
.y9c_c00463{bottom:202.565063px;}
.y9b_c00463{bottom:203.263533px;}
.y9a_c00463{bottom:203.491800px;}
.y99_c00463{bottom:203.762148px;}
.y98_c00463{bottom:204.400559px;}
.y97_c00463{bottom:205.197348px;}
.y96_c00463{bottom:219.481788px;}
.y95_c00463{bottom:220.039959px;}
.y94_c00463{bottom:220.790784px;}
.y93_c00463{bottom:221.139164px;}
.y92_c00463{bottom:222.374811px;}
.y91_c00463{bottom:222.568830px;}
.y90_c00463{bottom:222.774353px;}
.y8f_c00463{bottom:223.560995px;}
.y8e_c00463{bottom:235.434308px;}
.y8d_c00463{bottom:236.227100px;}
.y8c_c00463{bottom:236.427248px;}
.y8b_c00463{bottom:236.719280px;}
.y8a_c00463{bottom:237.582116px;}
.y89_c00463{bottom:237.848895px;}
.y88_c00463{bottom:238.915935px;}
.y87_c00463{bottom:239.221500px;}
.yc9_c00463{bottom:252.605556px;}
.yc8_c00463{bottom:253.161111px;}
.yc7_c00463{bottom:253.455969px;}
.yc6_c00463{bottom:253.621415px;}
.yc5_c00463{bottom:254.484189px;}
.yc4_c00463{bottom:254.680190px;}
.yc3_c00463{bottom:255.031301px;}
.yc2_c00463{bottom:255.810192px;}
.yc1_c00463{bottom:256.229607px;}
.yc0_c00463{bottom:262.341779px;}
.ybf_c00463{bottom:262.418219px;}
.ybe_c00463{bottom:263.025273px;}
.ybd_c00463{bottom:264.061269px;}
.ybc_c00463{bottom:265.950000px;}
.y86_c00463{bottom:269.071500px;}
.y85_c00463{bottom:286.312332px;}
.y84_c00463{bottom:287.159913px;}
.y83_c00463{bottom:287.405634px;}
.y82_c00463{bottom:288.029376px;}
.y81_c00463{bottom:288.724875px;}
.y80_c00463{bottom:288.993339px;}
.y7f_c00463{bottom:289.847640px;}
.y7e_c00463{bottom:290.248446px;}
.y7d_c00463{bottom:303.859614px;}
.y7c_c00463{bottom:304.212294px;}
.y7b_c00463{bottom:305.153418px;}
.y7a_c00463{bottom:305.684838px;}
.y79_c00463{bottom:306.297342px;}
.y78_c00463{bottom:306.763809px;}
.y77_c00463{bottom:307.259607px;}
.y76_c00463{bottom:320.664684px;}
.y75_c00463{bottom:321.738372px;}
.y74_c00463{bottom:322.509513px;}
.y73_c00463{bottom:323.518836px;}
.y72_c00463{bottom:324.271140px;}
.y71_c00463{bottom:337.614387px;}
.y70_c00463{bottom:338.710314px;}
.y6f_c00463{bottom:339.098814px;}
.y6e_c00463{bottom:339.984153px;}
.y6d_c00463{bottom:340.985958px;}
.y6c_c00463{bottom:341.258139px;}
.y6b_c00463{bottom:341.553000px;}
.y6a_c00463{bottom:354.597803px;}
.y69_c00463{bottom:355.326892px;}
.y68_c00463{bottom:355.651095px;}
.y67_c00463{bottom:356.598862px;}
.y66_c00463{bottom:356.833740px;}
.y65_c00463{bottom:357.213428px;}
.y64_c00463{bottom:357.395587px;}
.y63_c00463{bottom:358.563000px;}
.y62_c00463{bottom:371.683377px;}
.y61_c00463{bottom:371.943618px;}
.y60_c00463{bottom:372.944628px;}
.y5f_c00463{bottom:373.166352px;}
.y5e_c00463{bottom:373.331802px;}
.y5d_c00463{bottom:373.516491px;}
.y5c_c00463{bottom:374.149773px;}
.y5b_c00463{bottom:375.297228px;}
.y5a_c00463{bottom:388.464213px;}
.y59_c00463{bottom:388.674021px;}
.y58_c00463{bottom:389.974548px;}
.y57_c00463{bottom:390.601881px;}
.y56_c00463{bottom:390.781083px;}
.y55_c00463{bottom:391.340391px;}
.y54_c00463{bottom:391.541736px;}
.y53_c00463{bottom:392.579613px;}
.y52_c00463{bottom:404.740503px;}
.y51_c00463{bottom:406.198587px;}
.y50_c00463{bottom:407.088075px;}
.y4f_c00463{bottom:407.933589px;}
.y4e_c00463{bottom:408.987849px;}
.y4d_c00463{bottom:409.863396px;}
.y4c_c00463{bottom:422.865948px;}
.y4b_c00463{bottom:423.761556px;}
.y4a_c00463{bottom:424.494540px;}
.y49_c00463{bottom:425.266122px;}
.y48_c00463{bottom:425.567913px;}
.y47_c00463{bottom:426.623709px;}
.y46_c00463{bottom:426.873000px;}
.y45_c00463{bottom:438.613815px;}
.y44_c00463{bottom:438.902700px;}
.y43_c00463{bottom:439.296900px;}
.y42_c00463{bottom:439.399005px;}
.y41_c00463{bottom:439.861275px;}
.y40_c00463{bottom:440.428275px;}
.y3f_c00463{bottom:440.558010px;}
.y3e_c00463{bottom:441.084645px;}
.y3d_c00463{bottom:441.451500px;}
.y3c_c00463{bottom:456.284917px;}
.y3b_c00463{bottom:457.611315px;}
.y3a_c00463{bottom:457.878937px;}
.y39_c00463{bottom:459.013500px;}
.y38_c00463{bottom:459.447412px;}
.y37_c00463{bottom:459.794242px;}
.y36_c00463{bottom:459.969262px;}
.y35_c00463{bottom:460.346475px;}
.y34_c00463{bottom:473.950500px;}
.y33_c00463{bottom:474.213803px;}
.y32_c00463{bottom:474.887490px;}
.y31_c00463{bottom:475.148962px;}
.y30_c00463{bottom:475.724175px;}
.y2f_c00463{bottom:476.045048px;}
.y2e_c00463{bottom:476.264858px;}
.y2d_c00463{bottom:477.381458px;}
.y2c_c00463{bottom:477.629700px;}
.y2b_c00463{bottom:490.452532px;}
.y2a_c00463{bottom:490.691572px;}
.y29_c00463{bottom:491.160293px;}
.y28_c00463{bottom:491.244960px;}
.y27_c00463{bottom:492.198172px;}
.y26_c00463{bottom:492.951203px;}
.y25_c00463{bottom:493.428675px;}
.y24_c00463{bottom:493.732515px;}
.y23_c00463{bottom:494.053455px;}
.y22_c00463{bottom:494.373000px;}
.y21_c00463{bottom:507.377784px;}
.y20_c00463{bottom:507.938688px;}
.y1f_c00463{bottom:508.691232px;}
.y1e_c00463{bottom:509.023824px;}
.y1d_c00463{bottom:509.719536px;}
.y1c_c00463{bottom:510.173424px;}
.y1b_c00463{bottom:510.475848px;}
.y1a_c00463{bottom:511.383000px;}
.y19_c00463{bottom:524.166000px;}
.y18_c00463{bottom:524.433000px;}
.y17_c00463{bottom:525.235500px;}
.y16_c00463{bottom:526.000500px;}
.y15_c00463{bottom:526.356000px;}
.y14_c00463{bottom:527.163000px;}
.y13_c00463{bottom:527.685000px;}
.y12_c00463{bottom:528.123000px;}
.y11_c00463{bottom:541.287000px;}
.y10_c00463{bottom:541.582500px;}
.yf_c00463{bottom:541.869000px;}
.ye_c00463{bottom:542.719500px;}
.yd_c00463{bottom:543.268500px;}
.yc_c00463{bottom:543.960000px;}
.yb_c00463{bottom:544.141500px;}
.ya_c00463{bottom:544.864500px;}
.y9_c00463{bottom:558.205500px;}
.y8_c00463{bottom:558.496500px;}
.y7_c00463{bottom:559.567500px;}
.y6_c00463{bottom:559.819500px;}
.y5_c00463{bottom:560.760000px;}
.y4_c00463{bottom:560.959500px;}
.y3_c00463{bottom:561.232500px;}
.y2_c00463{bottom:561.871500px;}
.y1_c00463{bottom:571.282500px;}
.h16_c00463{height:33.602839px;}
.h14_c00463{height:38.853283px;}
.h17_c00463{height:54.604614px;}
.h19_c00463{height:57.750000px;}
.h11_c00463{height:57.754880px;}
.h8_c00463{height:57.756497px;}
.hf_c00463{height:58.805762px;}
.h9_c00463{height:58.806615px;}
.hd_c00463{height:59.855865px;}
.h18_c00463{height:60.900000px;}
.hc_c00463{height:60.905968px;}
.h7_c00463{height:60.906851px;}
.h10_c00463{height:61.950000px;}
.h6_c00463{height:61.957929px;}
.h13_c00463{height:63.005323px;}
.hb_c00463{height:63.006174px;}
.h1a_c00463{height:64.050000px;}
.h4_c00463{height:66.150000px;}
.ha_c00463{height:66.153307px;}
.he_c00463{height:66.156482px;}
.h5_c00463{height:67.200000px;}
.h15_c00463{height:70.355944px;}
.h12_c00463{height:71.406033px;}
.h3_c00463{height:72.450000px;}
.h2_c00463{height:80.850000px;}
.h0_c00463{height:617.700000px;}
.h1_c00463{height:618.000000px;}
.w0_c00463{width:359.100000px;}
.w1_c00463{width:359.250000px;}
.x0_c00463{left:0.000000px;}
.x55_c00463{left:34.141932px;}
.x7d_c00463{left:36.990000px;}
.x58_c00463{left:38.166111px;}
.x4a_c00463{left:39.511500px;}
.x38_c00463{left:40.603500px;}
.x25_c00463{left:41.741175px;}
.x2_c00463{left:43.312500px;}
.x87_c00463{left:44.550000px;}
.x74_c00463{left:46.141500px;}
.x71_c00463{left:51.842676px;}
.x39_c00463{left:58.410000px;}
.x26_c00463{left:59.490945px;}
.x4e_c00463{left:60.585000px;}
.x5f_c00463{left:62.220000px;}
.x1e_c00463{left:64.075500px;}
.x59_c00463{left:66.795111px;}
.x2d_c00463{left:68.144767px;}
.x11_c00463{left:72.225000px;}
.x56_c00463{left:75.450087px;}
.x32_c00463{left:77.610000px;}
.x81_c00463{left:79.380000px;}
.x2e_c00463{left:80.612947px;}
.x6c_c00463{left:82.626858px;}
.x1f_c00463{left:85.471500px;}
.x3d_c00463{left:89.159172px;}
.x64_c00463{left:90.867536px;}
.x3_c00463{left:92.508000px;}
.xa_c00463{left:94.620000px;}
.x17_c00463{left:99.429000px;}
.x70_c00463{left:101.258870px;}
.x65_c00463{left:104.599685px;}
.x20_c00463{left:105.727500px;}
.xb_c00463{left:107.562000px;}
.x41_c00463{left:109.248411px;}
.x4_c00463{left:113.497500px;}
.x18_c00463{left:118.330500px;}
.x42_c00463{left:122.665722px;}
.x77_c00463{left:124.374300px;}
.x5a_c00463{left:127.816611px;}
.x5_c00463{left:128.884500px;}
.x33_c00463{left:130.273500px;}
.x85_c00463{left:131.760000px;}
.x3a_c00463{left:133.824000px;}
.x2f_c00463{left:136.463302px;}
.x21_c00463{left:137.559000px;}
.x27_c00463{left:139.232138px;}
.x6d_c00463{left:141.760842px;}
.x34_c00463{left:143.247000px;}
.x60_c00463{left:144.300000px;}
.x19_c00463{left:146.698500px;}
.x3e_c00463{left:147.745896px;}
.x69_c00463{left:148.876721px;}
.x4f_c00463{left:151.584000px;}
.x88_c00463{left:152.820000px;}
.x28_c00463{left:154.886363px;}
.xc_c00463{left:156.963000px;}
.x82_c00463{left:159.030000px;}
.x12_c00463{left:160.806000px;}
.x78_c00463{left:163.459293px;}
.x53_c00463{left:165.352101px;}
.x7a_c00463{left:167.940000px;}
.x4b_c00463{left:170.454000px;}
.x43_c00463{left:171.880029px;}
.x1_c00463{left:173.070000px;}
.x5d_c00463{left:174.420000px;}
.x29_c00463{left:177.778200px;}
.x72_c00463{left:183.344386px;}
.x13_c00463{left:184.507500px;}
.x22_c00463{left:187.761000px;}
.x1a_c00463{left:190.180500px;}
.x47_c00463{left:191.290599px;}
.x3f_c00463{left:194.744271px;}
.xd_c00463{left:196.123500px;}
.x86_c00463{left:198.450000px;}
.x35_c00463{left:199.947000px;}
.x6_c00463{left:201.264000px;}
.x48_c00463{left:203.965767px;}
.x6e_c00463{left:205.217067px;}
.x7e_c00463{left:207.630000px;}
.x57_c00463{left:209.660346px;}
.x1b_c00463{left:210.967500px;}
.x44_c00463{left:213.688941px;}
.x50_c00463{left:214.822500px;}
.x30_c00463{left:217.502017px;}
.x2a_c00463{left:218.826308px;}
.x7_c00463{left:220.696500px;}
.x66_c00463{left:223.138604px;}
.x79_c00463{left:225.094993px;}
.x73_c00463{left:227.628874px;}
.x61_c00463{left:231.193500px;}
.x4c_c00463{left:233.638500px;}
.x14_c00463{left:235.525500px;}
.x2b_c00463{left:237.458078px;}
.x5b_c00463{left:241.224111px;}
.x51_c00463{left:242.572500px;}
.x40_c00463{left:244.133499px;}
.x36_c00463{left:246.174000px;}
.x7b_c00463{left:248.940000px;}
.x23_c00463{left:251.308500px;}
.x5e_c00463{left:252.990000px;}
.x4d_c00463{left:255.252000px;}
.xe_c00463{left:256.866000px;}
.x1c_c00463{left:258.001500px;}
.x7f_c00463{left:260.010000px;}
.x6a_c00463{left:261.486221px;}
.x3b_c00463{left:262.849500px;}
.x7c_c00463{left:264.330000px;}
.x83_c00463{left:265.680000px;}
.x62_c00463{left:269.053500px;}
.x75_c00463{left:271.120500px;}
.x67_c00463{left:273.162297px;}
.xf_c00463{left:277.381500px;}
.x80_c00463{left:283.230000px;}
.x2c_c00463{left:285.571298px;}
.x15_c00463{left:288.981000px;}
.x1d_c00463{left:293.058000px;}
.x37_c00463{left:295.804500px;}
.x54_c00463{left:297.125601px;}
.x10_c00463{left:298.441500px;}
.x45_c00463{left:300.368223px;}
.x8_c00463{left:303.046500px;}
.x24_c00463{left:304.137000px;}
.x16_c00463{left:306.805500px;}
.x68_c00463{left:310.328322px;}
.x84_c00463{left:311.850000px;}
.x46_c00463{left:314.390034px;}
.x6f_c00463{left:315.926768px;}
.x49_c00463{left:317.929842px;}
.x5c_c00463{left:319.317111px;}
.x52_c00463{left:320.853000px;}
.x6b_c00463{left:322.491221px;}
.x76_c00463{left:323.697000px;}
.x9_c00463{left:325.485000px;}
.x3c_c00463{left:326.821500px;}
.x63_c00463{left:330.037500px;}
.x31_c00463{left:331.371727px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._0_c00463{width:897.265896pt;}
.fs14_c00463{font-size:29.869190pt;}
.fs12_c00463{font-size:34.536251pt;}
.fs15_c00463{font-size:48.537434pt;}
.fs17_c00463{font-size:51.333333pt;}
.fsf_c00463{font-size:51.337671pt;}
.fs6_c00463{font-size:51.339108pt;}
.fsd_c00463{font-size:52.271789pt;}
.fs7_c00463{font-size:52.272546pt;}
.fsb_c00463{font-size:53.205213pt;}
.fs16_c00463{font-size:54.133333pt;}
.fsa_c00463{font-size:54.138638pt;}
.fs5_c00463{font-size:54.139423pt;}
.fse_c00463{font-size:55.066667pt;}
.fs4_c00463{font-size:55.073715pt;}
.fs11_c00463{font-size:56.004732pt;}
.fs9_c00463{font-size:56.005488pt;}
.fs18_c00463{font-size:56.933333pt;}
.fs2_c00463{font-size:58.800000pt;}
.fs8_c00463{font-size:58.802940pt;}
.fsc_c00463{font-size:58.805762pt;}
.fs3_c00463{font-size:59.733333pt;}
.fs13_c00463{font-size:62.538617pt;}
.fs10_c00463{font-size:63.472029pt;}
.fs1_c00463{font-size:64.400000pt;}
.fs0_c00463{font-size:71.866667pt;}
.y0_c00463{bottom:0.000000pt;}
.ycf_c00463{bottom:30.052000pt;}
.yce_c00463{bottom:45.120000pt;}
.ycd_c00463{bottom:59.178667pt;}
.ycc_c00463{bottom:75.120000pt;}
.ycb_c00463{bottom:89.092000pt;}
.yca_c00463{bottom:104.285333pt;}
.ybb_c00463{bottom:119.630411pt;}
.yb9_c00463{bottom:119.630627pt;}
.yba_c00463{bottom:119.630981pt;}
.yb8_c00463{bottom:119.631197pt;}
.yb7_c00463{bottom:119.631279pt;}
.yb6_c00463{bottom:119.631741pt;}
.yb5_c00463{bottom:133.952672pt;}
.yb4_c00463{bottom:134.693279pt;}
.yb3_c00463{bottom:134.902221pt;}
.yb2_c00463{bottom:135.698703pt;}
.yb1_c00463{bottom:135.958165pt;}
.yb0_c00463{bottom:137.027177pt;}
.yaf_c00463{bottom:137.275253pt;}
.yaa_c00463{bottom:150.976057pt;}
.yab_c00463{bottom:150.976269pt;}
.ya9_c00463{bottom:150.976307pt;}
.ya8_c00463{bottom:150.976495pt;}
.yac_c00463{bottom:150.976535pt;}
.yae_c00463{bottom:150.976932pt;}
.yad_c00463{bottom:150.977067pt;}
.ya7_c00463{bottom:165.517243pt;}
.ya3_c00463{bottom:165.517291pt;}
.ya2_c00463{bottom:165.517487pt;}
.ya5_c00463{bottom:165.517547pt;}
.ya4_c00463{bottom:165.517672pt;}
.y9f_c00463{bottom:165.517676pt;}
.ya6_c00463{bottom:165.517812pt;}
.ya1_c00463{bottom:165.517869pt;}
.ya0_c00463{bottom:165.518031pt;}
.y9e_c00463{bottom:179.115697pt;}
.y9d_c00463{bottom:179.820644pt;}
.y9c_c00463{bottom:180.057833pt;}
.y9b_c00463{bottom:180.678696pt;}
.y9a_c00463{bottom:180.881600pt;}
.y99_c00463{bottom:181.121909pt;}
.y98_c00463{bottom:181.689385pt;}
.y97_c00463{bottom:182.397643pt;}
.y96_c00463{bottom:195.094923pt;}
.y95_c00463{bottom:195.591075pt;}
.y94_c00463{bottom:196.258475pt;}
.y93_c00463{bottom:196.568145pt;}
.y92_c00463{bottom:197.666499pt;}
.y91_c00463{bottom:197.838960pt;}
.y90_c00463{bottom:198.021647pt;}
.y8f_c00463{bottom:198.720884pt;}
.y8e_c00463{bottom:209.274940pt;}
.y8d_c00463{bottom:209.979644pt;}
.y8c_c00463{bottom:210.157553pt;}
.y8b_c00463{bottom:210.417137pt;}
.y8a_c00463{bottom:211.184103pt;}
.y89_c00463{bottom:211.421240pt;}
.y88_c00463{bottom:212.369720pt;}
.y87_c00463{bottom:212.641333pt;}
.yc9_c00463{bottom:224.538272pt;}
.yc8_c00463{bottom:225.032099pt;}
.yc7_c00463{bottom:225.294195pt;}
.yc6_c00463{bottom:225.441257pt;}
.yc5_c00463{bottom:226.208168pt;}
.yc4_c00463{bottom:226.382391pt;}
.yc3_c00463{bottom:226.694489pt;}
.yc2_c00463{bottom:227.386837pt;}
.yc1_c00463{bottom:227.759651pt;}
.yc0_c00463{bottom:233.192692pt;}
.ybf_c00463{bottom:233.260639pt;}
.ybe_c00463{bottom:233.800243pt;}
.ybd_c00463{bottom:234.721128pt;}
.ybc_c00463{bottom:236.400000pt;}
.y86_c00463{bottom:239.174667pt;}
.y85_c00463{bottom:254.499851pt;}
.y84_c00463{bottom:255.253256pt;}
.y83_c00463{bottom:255.471675pt;}
.y82_c00463{bottom:256.026112pt;}
.y81_c00463{bottom:256.644333pt;}
.y80_c00463{bottom:256.882968pt;}
.y7f_c00463{bottom:257.642347pt;}
.y7e_c00463{bottom:257.998619pt;}
.y7d_c00463{bottom:270.097435pt;}
.y7c_c00463{bottom:270.410928pt;}
.y7b_c00463{bottom:271.247483pt;}
.y7a_c00463{bottom:271.719856pt;}
.y79_c00463{bottom:272.264304pt;}
.y78_c00463{bottom:272.678941pt;}
.y77_c00463{bottom:273.119651pt;}
.y76_c00463{bottom:285.035275pt;}
.y75_c00463{bottom:285.989664pt;}
.y74_c00463{bottom:286.675123pt;}
.y73_c00463{bottom:287.572299pt;}
.y72_c00463{bottom:288.241013pt;}
.y71_c00463{bottom:300.101677pt;}
.y70_c00463{bottom:301.075835pt;}
.y6f_c00463{bottom:301.421168pt;}
.y6e_c00463{bottom:302.208136pt;}
.y6d_c00463{bottom:303.098629pt;}
.y6c_c00463{bottom:303.340568pt;}
.y6b_c00463{bottom:303.602667pt;}
.y6a_c00463{bottom:315.198047pt;}
.y69_c00463{bottom:315.846127pt;}
.y68_c00463{bottom:316.134307pt;}
.y67_c00463{bottom:316.976767pt;}
.y66_c00463{bottom:317.185547pt;}
.y65_c00463{bottom:317.523047pt;}
.y64_c00463{bottom:317.684967pt;}
.y63_c00463{bottom:318.722667pt;}
.y62_c00463{bottom:330.385224pt;}
.y61_c00463{bottom:330.616549pt;}
.y60_c00463{bottom:331.506336pt;}
.y5f_c00463{bottom:331.703424pt;}
.y5e_c00463{bottom:331.850491pt;}
.y5d_c00463{bottom:332.014659pt;}
.y5c_c00463{bottom:332.577576pt;}
.y5b_c00463{bottom:333.597536pt;}
.y5a_c00463{bottom:345.301523pt;}
.y59_c00463{bottom:345.488019pt;}
.y58_c00463{bottom:346.644043pt;}
.y57_c00463{bottom:347.201672pt;}
.y56_c00463{bottom:347.360963pt;}
.y55_c00463{bottom:347.858125pt;}
.y54_c00463{bottom:348.037099pt;}
.y53_c00463{bottom:348.959656pt;}
.y52_c00463{bottom:359.769336pt;}
.y51_c00463{bottom:361.065411pt;}
.y50_c00463{bottom:361.856067pt;}
.y4f_c00463{bottom:362.607635pt;}
.y4e_c00463{bottom:363.544755pt;}
.y4d_c00463{bottom:364.323019pt;}
.y4c_c00463{bottom:375.880843pt;}
.y4b_c00463{bottom:376.676939pt;}
.y4a_c00463{bottom:377.328480pt;}
.y49_c00463{bottom:378.014331pt;}
.y48_c00463{bottom:378.282589pt;}
.y47_c00463{bottom:379.221075pt;}
.y46_c00463{bottom:379.442667pt;}
.y45_c00463{bottom:389.878947pt;}
.y44_c00463{bottom:390.135733pt;}
.y43_c00463{bottom:390.486133pt;}
.y42_c00463{bottom:390.576893pt;}
.y41_c00463{bottom:390.987800pt;}
.y40_c00463{bottom:391.491800pt;}
.y3f_c00463{bottom:391.607120pt;}
.y3e_c00463{bottom:392.075240pt;}
.y3d_c00463{bottom:392.401333pt;}
.y3c_c00463{bottom:405.586593pt;}
.y3b_c00463{bottom:406.765613pt;}
.y3a_c00463{bottom:407.003500pt;}
.y39_c00463{bottom:408.012000pt;}
.y38_c00463{bottom:408.397700pt;}
.y37_c00463{bottom:408.705993pt;}
.y36_c00463{bottom:408.861567pt;}
.y35_c00463{bottom:409.196867pt;}
.y34_c00463{bottom:421.289333pt;}
.y33_c00463{bottom:421.523380pt;}
.y32_c00463{bottom:422.122213pt;}
.y31_c00463{bottom:422.354633pt;}
.y30_c00463{bottom:422.865933pt;}
.y2f_c00463{bottom:423.151153pt;}
.y2e_c00463{bottom:423.346540pt;}
.y2d_c00463{bottom:424.339073pt;}
.y2c_c00463{bottom:424.559733pt;}
.y2b_c00463{bottom:435.957807pt;}
.y2a_c00463{bottom:436.170287pt;}
.y29_c00463{bottom:436.586927pt;}
.y28_c00463{bottom:436.662187pt;}
.y27_c00463{bottom:437.509487pt;}
.y26_c00463{bottom:438.178847pt;}
.y25_c00463{bottom:438.603267pt;}
.y24_c00463{bottom:438.873347pt;}
.y23_c00463{bottom:439.158627pt;}
.y22_c00463{bottom:439.442667pt;}
.y21_c00463{bottom:451.002475pt;}
.y20_c00463{bottom:451.501056pt;}
.y1f_c00463{bottom:452.169984pt;}
.y1e_c00463{bottom:452.465621pt;}
.y1d_c00463{bottom:453.084032pt;}
.y1c_c00463{bottom:453.487488pt;}
.y1b_c00463{bottom:453.756309pt;}
.y1a_c00463{bottom:454.562667pt;}
.y19_c00463{bottom:465.925333pt;}
.y18_c00463{bottom:466.162667pt;}
.y17_c00463{bottom:466.876000pt;}
.y16_c00463{bottom:467.556000pt;}
.y15_c00463{bottom:467.872000pt;}
.y14_c00463{bottom:468.589333pt;}
.y13_c00463{bottom:469.053333pt;}
.y12_c00463{bottom:469.442667pt;}
.y11_c00463{bottom:481.144000pt;}
.y10_c00463{bottom:481.406667pt;}
.yf_c00463{bottom:481.661333pt;}
.ye_c00463{bottom:482.417333pt;}
.yd_c00463{bottom:482.905333pt;}
.yc_c00463{bottom:483.520000pt;}
.yb_c00463{bottom:483.681333pt;}
.ya_c00463{bottom:484.324000pt;}
.y9_c00463{bottom:496.182667pt;}
.y8_c00463{bottom:496.441333pt;}
.y7_c00463{bottom:497.393333pt;}
.y6_c00463{bottom:497.617333pt;}
.y5_c00463{bottom:498.453333pt;}
.y4_c00463{bottom:498.630667pt;}
.y3_c00463{bottom:498.873333pt;}
.y2_c00463{bottom:499.441333pt;}
.y1_c00463{bottom:507.806667pt;}
.h16_c00463{height:29.869190pt;}
.h14_c00463{height:34.536251pt;}
.h17_c00463{height:48.537434pt;}
.h19_c00463{height:51.333333pt;}
.h11_c00463{height:51.337671pt;}
.h8_c00463{height:51.339108pt;}
.hf_c00463{height:52.271789pt;}
.h9_c00463{height:52.272546pt;}
.hd_c00463{height:53.205213pt;}
.h18_c00463{height:54.133333pt;}
.hc_c00463{height:54.138638pt;}
.h7_c00463{height:54.139423pt;}
.h10_c00463{height:55.066667pt;}
.h6_c00463{height:55.073715pt;}
.h13_c00463{height:56.004732pt;}
.hb_c00463{height:56.005488pt;}
.h1a_c00463{height:56.933333pt;}
.h4_c00463{height:58.800000pt;}
.ha_c00463{height:58.802940pt;}
.he_c00463{height:58.805762pt;}
.h5_c00463{height:59.733333pt;}
.h15_c00463{height:62.538617pt;}
.h12_c00463{height:63.472029pt;}
.h3_c00463{height:64.400000pt;}
.h2_c00463{height:71.866667pt;}
.h0_c00463{height:549.066667pt;}
.h1_c00463{height:549.333333pt;}
.w0_c00463{width:319.200000pt;}
.w1_c00463{width:319.333333pt;}
.x0_c00463{left:0.000000pt;}
.x55_c00463{left:30.348384pt;}
.x7d_c00463{left:32.880000pt;}
.x58_c00463{left:33.925432pt;}
.x4a_c00463{left:35.121333pt;}
.x38_c00463{left:36.092000pt;}
.x25_c00463{left:37.103267pt;}
.x2_c00463{left:38.500000pt;}
.x87_c00463{left:39.600000pt;}
.x74_c00463{left:41.014667pt;}
.x71_c00463{left:46.082379pt;}
.x39_c00463{left:51.920000pt;}
.x26_c00463{left:52.880840pt;}
.x4e_c00463{left:53.853333pt;}
.x5f_c00463{left:55.306667pt;}
.x1e_c00463{left:56.956000pt;}
.x59_c00463{left:59.373432pt;}
.x2d_c00463{left:60.573127pt;}
.x11_c00463{left:64.200000pt;}
.x56_c00463{left:67.066744pt;}
.x32_c00463{left:68.986667pt;}
.x81_c00463{left:70.560000pt;}
.x2e_c00463{left:71.655953pt;}
.x6c_c00463{left:73.446096pt;}
.x1f_c00463{left:75.974667pt;}
.x3d_c00463{left:79.252597pt;}
.x64_c00463{left:80.771143pt;}
.x3_c00463{left:82.229333pt;}
.xa_c00463{left:84.106667pt;}
.x17_c00463{left:88.381333pt;}
.x70_c00463{left:90.007884pt;}
.x65_c00463{left:92.977497pt;}
.x20_c00463{left:93.980000pt;}
.xb_c00463{left:95.610667pt;}
.x41_c00463{left:97.109699pt;}
.x4_c00463{left:100.886667pt;}
.x18_c00463{left:105.182667pt;}
.x42_c00463{left:109.036197pt;}
.x77_c00463{left:110.554933pt;}
.x5a_c00463{left:113.614765pt;}
.x5_c00463{left:114.564000pt;}
.x33_c00463{left:115.798667pt;}
.x85_c00463{left:117.120000pt;}
.x3a_c00463{left:118.954667pt;}
.x2f_c00463{left:121.300713pt;}
.x21_c00463{left:122.274667pt;}
.x27_c00463{left:123.761900pt;}
.x6d_c00463{left:126.009637pt;}
.x34_c00463{left:127.330667pt;}
.x60_c00463{left:128.266667pt;}
.x19_c00463{left:130.398667pt;}
.x3e_c00463{left:131.329685pt;}
.x69_c00463{left:132.334863pt;}
.x4f_c00463{left:134.741333pt;}
.x88_c00463{left:135.840000pt;}
.x28_c00463{left:137.676767pt;}
.xc_c00463{left:139.522667pt;}
.x82_c00463{left:141.360000pt;}
.x12_c00463{left:142.938667pt;}
.x78_c00463{left:145.297149pt;}
.x53_c00463{left:146.979645pt;}
.x7a_c00463{left:149.280000pt;}
.x4b_c00463{left:151.514667pt;}
.x43_c00463{left:152.782248pt;}
.x1_c00463{left:153.840000pt;}
.x5d_c00463{left:155.040000pt;}
.x29_c00463{left:158.025067pt;}
.x72_c00463{left:162.972788pt;}
.x13_c00463{left:164.006667pt;}
.x22_c00463{left:166.898667pt;}
.x1a_c00463{left:169.049333pt;}
.x47_c00463{left:170.036088pt;}
.x3f_c00463{left:173.106019pt;}
.xd_c00463{left:174.332000pt;}
.x86_c00463{left:176.400000pt;}
.x35_c00463{left:177.730667pt;}
.x6_c00463{left:178.901333pt;}
.x48_c00463{left:181.302904pt;}
.x6e_c00463{left:182.415171pt;}
.x7e_c00463{left:184.560000pt;}
.x57_c00463{left:186.364752pt;}
.x1b_c00463{left:187.526667pt;}
.x44_c00463{left:189.945725pt;}
.x50_c00463{left:190.953333pt;}
.x30_c00463{left:193.335127pt;}
.x2a_c00463{left:194.512273pt;}
.x7_c00463{left:196.174667pt;}
.x66_c00463{left:198.345425pt;}
.x79_c00463{left:200.084439pt;}
.x73_c00463{left:202.336777pt;}
.x61_c00463{left:205.505333pt;}
.x4c_c00463{left:207.678667pt;}
.x14_c00463{left:209.356000pt;}
.x2b_c00463{left:211.073847pt;}
.x5b_c00463{left:214.421432pt;}
.x51_c00463{left:215.620000pt;}
.x40_c00463{left:217.007555pt;}
.x36_c00463{left:218.821333pt;}
.x7b_c00463{left:221.280000pt;}
.x23_c00463{left:223.385333pt;}
.x5e_c00463{left:224.880000pt;}
.x4d_c00463{left:226.890667pt;}
.xe_c00463{left:228.325333pt;}
.x1c_c00463{left:229.334667pt;}
.x7f_c00463{left:231.120000pt;}
.x6a_c00463{left:232.432196pt;}
.x3b_c00463{left:233.644000pt;}
.x7c_c00463{left:234.960000pt;}
.x83_c00463{left:236.160000pt;}
.x62_c00463{left:239.158667pt;}
.x75_c00463{left:240.996000pt;}
.x67_c00463{left:242.810931pt;}
.xf_c00463{left:246.561333pt;}
.x80_c00463{left:251.760000pt;}
.x2c_c00463{left:253.841153pt;}
.x15_c00463{left:256.872000pt;}
.x1d_c00463{left:260.496000pt;}
.x37_c00463{left:262.937333pt;}
.x54_c00463{left:264.111645pt;}
.x10_c00463{left:265.281333pt;}
.x45_c00463{left:266.993976pt;}
.x8_c00463{left:269.374667pt;}
.x24_c00463{left:270.344000pt;}
.x16_c00463{left:272.716000pt;}
.x68_c00463{left:275.847397pt;}
.x84_c00463{left:277.200000pt;}
.x46_c00463{left:279.457808pt;}
.x6f_c00463{left:280.823793pt;}
.x49_c00463{left:282.604304pt;}
.x5c_c00463{left:283.837432pt;}
.x52_c00463{left:285.202667pt;}
.x6b_c00463{left:286.658863pt;}
.x76_c00463{left:287.730667pt;}
.x9_c00463{left:289.320000pt;}
.x3c_c00463{left:290.508000pt;}
.x63_c00463{left:293.366667pt;}
.x31_c00463{left:294.552647pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m80_c00464{transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);-ms-transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015199,-0.000182,0.003000,0.249982,0,0);}
.m0_c00464{transform:matrix(0.116430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116430,0.000000,0.000000,0.250000,0,0);}
.mae_c00464{transform:matrix(0.132150,-0.001586,0.003000,0.249982,0,0);-ms-transform:matrix(0.132150,-0.001586,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132150,-0.001586,0.003000,0.249982,0,0);}
.m69_c00464{transform:matrix(0.139516,-0.001953,0.003500,0.249976,0,0);-ms-transform:matrix(0.139516,-0.001953,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139516,-0.001953,0.003500,0.249976,0,0);}
.md_c00464{transform:matrix(0.141621,-0.001983,0.003500,0.249976,0,0);-ms-transform:matrix(0.141621,-0.001983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.141621,-0.001983,0.003500,0.249976,0,0);}
.m6d_c00464{transform:matrix(0.142541,-0.001996,0.003500,0.249976,0,0);-ms-transform:matrix(0.142541,-0.001996,0.003500,0.249976,0,0);-webkit-transform:matrix(0.142541,-0.001996,0.003500,0.249976,0,0);}
.m66_c00464{transform:matrix(0.142676,-0.001997,0.003500,0.249976,0,0);-ms-transform:matrix(0.142676,-0.001997,0.003500,0.249976,0,0);-webkit-transform:matrix(0.142676,-0.001997,0.003500,0.249976,0,0);}
.mb2_c00464{transform:matrix(0.142790,-0.001713,0.003000,0.249982,0,0);-ms-transform:matrix(0.142790,-0.001713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142790,-0.001713,0.003000,0.249982,0,0);}
.m7f_c00464{transform:matrix(0.146384,-0.001757,0.003000,0.249982,0,0);-ms-transform:matrix(0.146384,-0.001757,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146384,-0.001757,0.003000,0.249982,0,0);}
.m52_c00464{transform:matrix(0.146836,-0.002056,0.003500,0.249976,0,0);-ms-transform:matrix(0.146836,-0.002056,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146836,-0.002056,0.003500,0.249976,0,0);}
.mbd_c00464{transform:matrix(0.148999,-0.001788,0.003000,0.249982,0,0);-ms-transform:matrix(0.148999,-0.001788,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148999,-0.001788,0.003000,0.249982,0,0);}
.m6c_c00464{transform:matrix(0.151605,-0.002122,0.003500,0.249976,0,0);-ms-transform:matrix(0.151605,-0.002122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151605,-0.002122,0.003500,0.249976,0,0);}
.m5b_c00464{transform:matrix(0.153550,-0.002150,0.003500,0.249976,0,0);-ms-transform:matrix(0.153550,-0.002150,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153550,-0.002150,0.003500,0.249976,0,0);}
.mab_c00464{transform:matrix(0.154314,-0.001852,0.003000,0.249982,0,0);-ms-transform:matrix(0.154314,-0.001852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154314,-0.001852,0.003000,0.249982,0,0);}
.mf_c00464{transform:matrix(0.155555,-0.002178,0.003500,0.249976,0,0);-ms-transform:matrix(0.155555,-0.002178,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155555,-0.002178,0.003500,0.249976,0,0);}
.ma5_c00464{transform:matrix(0.156459,-0.001878,0.003000,0.249982,0,0);-ms-transform:matrix(0.156459,-0.001878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156459,-0.001878,0.003000,0.249982,0,0);}
.m24_c00464{transform:matrix(0.157985,-0.002212,0.003500,0.249976,0,0);-ms-transform:matrix(0.157985,-0.002212,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157985,-0.002212,0.003500,0.249976,0,0);}
.m14_c00464{transform:matrix(0.158284,-0.002216,0.003500,0.249976,0,0);-ms-transform:matrix(0.158284,-0.002216,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158284,-0.002216,0.003500,0.249976,0,0);}
.m63_c00464{transform:matrix(0.158584,-0.002220,0.003500,0.249976,0,0);-ms-transform:matrix(0.158584,-0.002220,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158584,-0.002220,0.003500,0.249976,0,0);}
.m71_c00464{transform:matrix(0.163954,-0.002295,0.003500,0.249976,0,0);-ms-transform:matrix(0.163954,-0.002295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163954,-0.002295,0.003500,0.249976,0,0);}
.m5d_c00464{transform:matrix(0.164099,-0.002297,0.003500,0.249976,0,0);-ms-transform:matrix(0.164099,-0.002297,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164099,-0.002297,0.003500,0.249976,0,0);}
.mad_c00464{transform:matrix(0.164203,-0.001970,0.003000,0.249982,0,0);-ms-transform:matrix(0.164203,-0.001970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164203,-0.001970,0.003000,0.249982,0,0);}
.m7e_c00464{transform:matrix(0.164388,-0.001973,0.003000,0.249982,0,0);-ms-transform:matrix(0.164388,-0.001973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164388,-0.001973,0.003000,0.249982,0,0);}
.m55_c00464{transform:matrix(0.164764,-0.002307,0.003500,0.249976,0,0);-ms-transform:matrix(0.164764,-0.002307,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164764,-0.002307,0.003500,0.249976,0,0);}
.m61_c00464{transform:matrix(0.165239,-0.002313,0.003500,0.249976,0,0);-ms-transform:matrix(0.165239,-0.002313,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165239,-0.002313,0.003500,0.249976,0,0);}
.m60_c00464{transform:matrix(0.165859,-0.002322,0.003500,0.249976,0,0);-ms-transform:matrix(0.165859,-0.002322,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165859,-0.002322,0.003500,0.249976,0,0);}
.m9_c00464{transform:matrix(0.165879,-0.002322,0.003500,0.249976,0,0);-ms-transform:matrix(0.165879,-0.002322,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165879,-0.002322,0.003500,0.249976,0,0);}
.mbb_c00464{transform:matrix(0.165888,-0.001991,0.003000,0.249982,0,0);-ms-transform:matrix(0.165888,-0.001991,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165888,-0.001991,0.003000,0.249982,0,0);}
.m25_c00464{transform:matrix(0.166629,-0.002333,0.003500,0.249976,0,0);-ms-transform:matrix(0.166629,-0.002333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166629,-0.002333,0.003500,0.249976,0,0);}
.mb1_c00464{transform:matrix(0.167268,-0.002007,0.003000,0.249982,0,0);-ms-transform:matrix(0.167268,-0.002007,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167268,-0.002007,0.003000,0.249982,0,0);}
.m95_c00464{transform:matrix(0.168278,-0.002019,0.003000,0.249982,0,0);-ms-transform:matrix(0.168278,-0.002019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168278,-0.002019,0.003000,0.249982,0,0);}
.mb_c00464{transform:matrix(0.168398,-0.002358,0.003500,0.249976,0,0);-ms-transform:matrix(0.168398,-0.002358,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168398,-0.002358,0.003500,0.249976,0,0);}
.m3c_c00464{transform:matrix(0.168533,-0.002359,0.003500,0.249976,0,0);-ms-transform:matrix(0.168533,-0.002359,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168533,-0.002359,0.003500,0.249976,0,0);}
.m74_c00464{transform:matrix(0.168818,-0.002363,0.003500,0.249976,0,0);-ms-transform:matrix(0.168818,-0.002363,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168818,-0.002363,0.003500,0.249976,0,0);}
.m1e_c00464{transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);-ms-transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169133,-0.002368,0.003500,0.249976,0,0);}
.m8a_c00464{transform:matrix(0.169753,-0.002037,0.003000,0.249982,0,0);-ms-transform:matrix(0.169753,-0.002037,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169753,-0.002037,0.003000,0.249982,0,0);}
.m38_c00464{transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);-ms-transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170093,-0.002381,0.003500,0.249976,0,0);}
.m39_c00464{transform:matrix(0.170493,-0.002387,0.003500,0.249976,0,0);-ms-transform:matrix(0.170493,-0.002387,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170493,-0.002387,0.003500,0.249976,0,0);}
.med_c00464{transform:matrix(0.171008,-0.005130,0.007497,0.249888,0,0);-ms-transform:matrix(0.171008,-0.005130,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171008,-0.005130,0.007497,0.249888,0,0);}
.ma2_c00464{transform:matrix(0.171238,-0.002055,0.003000,0.249982,0,0);-ms-transform:matrix(0.171238,-0.002055,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171238,-0.002055,0.003000,0.249982,0,0);}
.m4f_c00464{transform:matrix(0.172008,-0.002408,0.003500,0.249976,0,0);-ms-transform:matrix(0.172008,-0.002408,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172008,-0.002408,0.003500,0.249976,0,0);}
.m8c_c00464{transform:matrix(0.172293,-0.002068,0.003000,0.249982,0,0);-ms-transform:matrix(0.172293,-0.002068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172293,-0.002068,0.003000,0.249982,0,0);}
.mef_c00464{transform:matrix(0.172622,-0.005179,0.007497,0.249888,0,0);-ms-transform:matrix(0.172622,-0.005179,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172622,-0.005179,0.007497,0.249888,0,0);}
.m10_c00464{transform:matrix(0.172803,-0.002419,0.003500,0.249976,0,0);-ms-transform:matrix(0.172803,-0.002419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172803,-0.002419,0.003500,0.249976,0,0);}
.mdc_c00464{transform:matrix(0.173306,-0.004506,0.006498,0.249916,0,0);-ms-transform:matrix(0.173306,-0.004506,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173306,-0.004506,0.006498,0.249916,0,0);}
.mf3_c00464{transform:matrix(0.173852,-0.005216,0.007497,0.249888,0,0);-ms-transform:matrix(0.173852,-0.005216,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173852,-0.005216,0.007497,0.249888,0,0);}
.m13_c00464{transform:matrix(0.174293,-0.002440,0.003500,0.249976,0,0);-ms-transform:matrix(0.174293,-0.002440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174293,-0.002440,0.003500,0.249976,0,0);}
.ma_c00464{transform:matrix(0.174338,-0.002441,0.003500,0.249976,0,0);-ms-transform:matrix(0.174338,-0.002441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174338,-0.002441,0.003500,0.249976,0,0);}
.m6e_c00464{transform:matrix(0.174638,-0.002445,0.003500,0.249976,0,0);-ms-transform:matrix(0.174638,-0.002445,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174638,-0.002445,0.003500,0.249976,0,0);}
.meb_c00464{transform:matrix(0.174876,-0.005246,0.007497,0.249888,0,0);-ms-transform:matrix(0.174876,-0.005246,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174876,-0.005246,0.007497,0.249888,0,0);}
.mc3_c00464{transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175362,-0.002104,0.003000,0.249982,0,0);}
.mde_c00464{transform:matrix(0.175811,-0.005274,0.007497,0.249888,0,0);-ms-transform:matrix(0.175811,-0.005274,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175811,-0.005274,0.007497,0.249888,0,0);}
.mca_c00464{transform:matrix(0.175992,-0.002112,0.003000,0.249982,0,0);-ms-transform:matrix(0.175992,-0.002112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175992,-0.002112,0.003000,0.249982,0,0);}
.m6b_c00464{transform:matrix(0.176458,-0.002470,0.003500,0.249976,0,0);-ms-transform:matrix(0.176458,-0.002470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176458,-0.002470,0.003500,0.249976,0,0);}
.mb5_c00464{transform:matrix(0.176692,-0.002120,0.003000,0.249982,0,0);-ms-transform:matrix(0.176692,-0.002120,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176692,-0.002120,0.003000,0.249982,0,0);}
.m51_c00464{transform:matrix(0.177153,-0.002480,0.003500,0.249976,0,0);-ms-transform:matrix(0.177153,-0.002480,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177153,-0.002480,0.003500,0.249976,0,0);}
.m6f_c00464{transform:matrix(0.177338,-0.002483,0.003500,0.249976,0,0);-ms-transform:matrix(0.177338,-0.002483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177338,-0.002483,0.003500,0.249976,0,0);}
.maf_c00464{transform:matrix(0.177657,-0.002132,0.003000,0.249982,0,0);-ms-transform:matrix(0.177657,-0.002132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177657,-0.002132,0.003000,0.249982,0,0);}
.m2e_c00464{transform:matrix(0.178088,-0.002493,0.003500,0.249976,0,0);-ms-transform:matrix(0.178088,-0.002493,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178088,-0.002493,0.003500,0.249976,0,0);}
.me_c00464{transform:matrix(0.178123,-0.002494,0.003500,0.249976,0,0);-ms-transform:matrix(0.178123,-0.002494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178123,-0.002494,0.003500,0.249976,0,0);}
.m2a_c00464{transform:matrix(0.178323,-0.002497,0.003500,0.249976,0,0);-ms-transform:matrix(0.178323,-0.002497,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178323,-0.002497,0.003500,0.249976,0,0);}
.m12_c00464{transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);-ms-transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178388,-0.002497,0.003500,0.249976,0,0);}
.m87_c00464{transform:matrix(0.178617,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178617,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178617,-0.002143,0.003000,0.249982,0,0);}
.m15_c00464{transform:matrix(0.178982,-0.002506,0.003500,0.249976,0,0);-ms-transform:matrix(0.178982,-0.002506,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178982,-0.002506,0.003500,0.249976,0,0);}
.m17_c00464{transform:matrix(0.180242,-0.002523,0.003500,0.249976,0,0);-ms-transform:matrix(0.180242,-0.002523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180242,-0.002523,0.003500,0.249976,0,0);}
.m1a_c00464{transform:matrix(0.180257,-0.002524,0.003500,0.249976,0,0);-ms-transform:matrix(0.180257,-0.002524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180257,-0.002524,0.003500,0.249976,0,0);}
.m32_c00464{transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);-ms-transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180282,-0.002524,0.003500,0.249976,0,0);}
.mc6_c00464{transform:matrix(0.180417,-0.002165,0.003000,0.249982,0,0);-ms-transform:matrix(0.180417,-0.002165,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180417,-0.002165,0.003000,0.249982,0,0);}
.m58_c00464{transform:matrix(0.180577,-0.002528,0.003500,0.249976,0,0);-ms-transform:matrix(0.180577,-0.002528,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180577,-0.002528,0.003500,0.249976,0,0);}
.mcc_c00464{transform:matrix(0.180892,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180892,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180892,-0.002171,0.003000,0.249982,0,0);}
.m8d_c00464{transform:matrix(0.180912,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180912,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180912,-0.002171,0.003000,0.249982,0,0);}
.m64_c00464{transform:matrix(0.180972,-0.002534,0.003500,0.249976,0,0);-ms-transform:matrix(0.180972,-0.002534,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180972,-0.002534,0.003500,0.249976,0,0);}
.m5_c00464{transform:matrix(0.181212,-0.002537,0.003500,0.249976,0,0);-ms-transform:matrix(0.181212,-0.002537,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181212,-0.002537,0.003500,0.249976,0,0);}
.m94_c00464{transform:matrix(0.181682,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181682,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181682,-0.002180,0.003000,0.249982,0,0);}
.m2_c00464{transform:matrix(0.182372,-0.002553,0.003500,0.249976,0,0);-ms-transform:matrix(0.182372,-0.002553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182372,-0.002553,0.003500,0.249976,0,0);}
.m4d_c00464{transform:matrix(0.182707,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182707,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182707,-0.002558,0.003500,0.249976,0,0);}
.mbc_c00464{transform:matrix(0.182802,-0.002194,0.003000,0.249982,0,0);-ms-transform:matrix(0.182802,-0.002194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182802,-0.002194,0.003000,0.249982,0,0);}
.m42_c00464{transform:matrix(0.182942,-0.002561,0.003500,0.249976,0,0);-ms-transform:matrix(0.182942,-0.002561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182942,-0.002561,0.003500,0.249976,0,0);}
.m7a_c00464{transform:matrix(0.183092,-0.002563,0.003500,0.249976,0,0);-ms-transform:matrix(0.183092,-0.002563,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183092,-0.002563,0.003500,0.249976,0,0);}
.m1b_c00464{transform:matrix(0.183372,-0.002567,0.003500,0.249976,0,0);-ms-transform:matrix(0.183372,-0.002567,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183372,-0.002567,0.003500,0.249976,0,0);}
.m19_c00464{transform:matrix(0.183877,-0.002574,0.003500,0.249976,0,0);-ms-transform:matrix(0.183877,-0.002574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183877,-0.002574,0.003500,0.249976,0,0);}
.mf5_c00464{transform:matrix(0.184137,-0.005524,0.007497,0.249888,0,0);-ms-transform:matrix(0.184137,-0.005524,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184137,-0.005524,0.007497,0.249888,0,0);}
.m9f_c00464{transform:matrix(0.184332,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184332,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184332,-0.002212,0.003000,0.249982,0,0);}
.m48_c00464{transform:matrix(0.184337,-0.002581,0.003500,0.249976,0,0);-ms-transform:matrix(0.184337,-0.002581,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184337,-0.002581,0.003500,0.249976,0,0);}
.m3e_c00464{transform:matrix(0.184792,-0.002587,0.003500,0.249976,0,0);-ms-transform:matrix(0.184792,-0.002587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184792,-0.002587,0.003500,0.249976,0,0);}
.m53_c00464{transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184842,-0.002588,0.003500,0.249976,0,0);}
.m99_c00464{transform:matrix(0.184897,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184897,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184897,-0.002219,0.003000,0.249982,0,0);}
.ma4_c00464{transform:matrix(0.185042,-0.002221,0.003000,0.249982,0,0);-ms-transform:matrix(0.185042,-0.002221,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185042,-0.002221,0.003000,0.249982,0,0);}
.m21_c00464{transform:matrix(0.185157,-0.002592,0.003500,0.249976,0,0);-ms-transform:matrix(0.185157,-0.002592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185157,-0.002592,0.003500,0.249976,0,0);}
.m26_c00464{transform:matrix(0.185337,-0.002595,0.003500,0.249976,0,0);-ms-transform:matrix(0.185337,-0.002595,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185337,-0.002595,0.003500,0.249976,0,0);}
.m75_c00464{transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);-ms-transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);}
.mf6_c00464{transform:matrix(0.185731,-0.005572,0.007497,0.249888,0,0);-ms-transform:matrix(0.185731,-0.005572,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185731,-0.005572,0.007497,0.249888,0,0);}
.m8_c00464{transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-ms-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186057,-0.002605,0.003500,0.249976,0,0);}
.m16_c00464{transform:matrix(0.186202,-0.002607,0.003500,0.249976,0,0);-ms-transform:matrix(0.186202,-0.002607,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186202,-0.002607,0.003500,0.249976,0,0);}
.m79_c00464{transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-ms-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186322,-0.002609,0.003500,0.249976,0,0);}
.ma0_c00464{transform:matrix(0.186502,-0.002238,0.003000,0.249982,0,0);-ms-transform:matrix(0.186502,-0.002238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186502,-0.002238,0.003000,0.249982,0,0);}
.mb4_c00464{transform:matrix(0.186552,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186552,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186552,-0.002239,0.003000,0.249982,0,0);}
.m72_c00464{transform:matrix(0.186687,-0.002614,0.003500,0.249976,0,0);-ms-transform:matrix(0.186687,-0.002614,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186687,-0.002614,0.003500,0.249976,0,0);}
.mba_c00464{transform:matrix(0.186857,-0.002242,0.003000,0.249982,0,0);-ms-transform:matrix(0.186857,-0.002242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186857,-0.002242,0.003000,0.249982,0,0);}
.m83_c00464{transform:matrix(0.186967,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.186967,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186967,-0.002244,0.003000,0.249982,0,0);}
.mce_c00464{transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186987,-0.002244,0.003000,0.249982,0,0);}
.m6_c00464{transform:matrix(0.186992,-0.002618,0.003500,0.249976,0,0);-ms-transform:matrix(0.186992,-0.002618,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186992,-0.002618,0.003500,0.249976,0,0);}
.m49_c00464{transform:matrix(0.187137,-0.002620,0.003500,0.249976,0,0);-ms-transform:matrix(0.187137,-0.002620,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187137,-0.002620,0.003500,0.249976,0,0);}
.mb7_c00464{transform:matrix(0.187312,-0.002248,0.003000,0.249982,0,0);-ms-transform:matrix(0.187312,-0.002248,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187312,-0.002248,0.003000,0.249982,0,0);}
.m4_c00464{transform:matrix(0.187382,-0.002623,0.003500,0.249976,0,0);-ms-transform:matrix(0.187382,-0.002623,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187382,-0.002623,0.003500,0.249976,0,0);}
.m82_c00464{transform:matrix(0.187407,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187407,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187407,-0.002249,0.003000,0.249982,0,0);}
.m68_c00464{transform:matrix(0.187452,-0.002624,0.003500,0.249976,0,0);-ms-transform:matrix(0.187452,-0.002624,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187452,-0.002624,0.003500,0.249976,0,0);}
.m50_c00464{transform:matrix(0.187602,-0.002626,0.003500,0.249976,0,0);-ms-transform:matrix(0.187602,-0.002626,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187602,-0.002626,0.003500,0.249976,0,0);}
.ma7_c00464{transform:matrix(0.187636,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187636,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187636,-0.002252,0.003000,0.249982,0,0);}
.m54_c00464{transform:matrix(0.188167,-0.002634,0.003500,0.249976,0,0);-ms-transform:matrix(0.188167,-0.002634,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188167,-0.002634,0.003500,0.249976,0,0);}
.maa_c00464{transform:matrix(0.188491,-0.002262,0.003000,0.249982,0,0);-ms-transform:matrix(0.188491,-0.002262,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188491,-0.002262,0.003000,0.249982,0,0);}
.m2d_c00464{transform:matrix(0.188722,-0.002642,0.003500,0.249976,0,0);-ms-transform:matrix(0.188722,-0.002642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188722,-0.002642,0.003500,0.249976,0,0);}
.m23_c00464{transform:matrix(0.189196,-0.002649,0.003500,0.249976,0,0);-ms-transform:matrix(0.189196,-0.002649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189196,-0.002649,0.003500,0.249976,0,0);}
.mbe_c00464{transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189251,-0.002271,0.003000,0.249982,0,0);}
.m18_c00464{transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);-ms-transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);}
.m56_c00464{transform:matrix(0.189556,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189556,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189556,-0.002654,0.003500,0.249976,0,0);}
.m5a_c00464{transform:matrix(0.189601,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189601,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189601,-0.002654,0.003500,0.249976,0,0);}
.m9d_c00464{transform:matrix(0.190226,-0.002283,0.003000,0.249982,0,0);-ms-transform:matrix(0.190226,-0.002283,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190226,-0.002283,0.003000,0.249982,0,0);}
.m3_c00464{transform:matrix(0.190576,-0.002668,0.003500,0.249976,0,0);-ms-transform:matrix(0.190576,-0.002668,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190576,-0.002668,0.003500,0.249976,0,0);}
.mc7_c00464{transform:matrix(0.191466,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191466,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191466,-0.002298,0.003000,0.249982,0,0);}
.m5c_c00464{transform:matrix(0.191831,-0.002686,0.003500,0.249976,0,0);-ms-transform:matrix(0.191831,-0.002686,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191831,-0.002686,0.003500,0.249976,0,0);}
.md7_c00464{transform:matrix(0.191970,-0.004991,0.006498,0.249916,0,0);-ms-transform:matrix(0.191970,-0.004991,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191970,-0.004991,0.006498,0.249916,0,0);}
.mdb_c00464{transform:matrix(0.192025,-0.004993,0.006498,0.249916,0,0);-ms-transform:matrix(0.192025,-0.004993,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192025,-0.004993,0.006498,0.249916,0,0);}
.m59_c00464{transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);-ms-transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192291,-0.002692,0.003500,0.249976,0,0);}
.mf0_c00464{transform:matrix(0.192503,-0.005775,0.007497,0.249888,0,0);-ms-transform:matrix(0.192503,-0.005775,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192503,-0.005775,0.007497,0.249888,0,0);}
.mb6_c00464{transform:matrix(0.193776,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193776,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193776,-0.002325,0.003000,0.249982,0,0);}
.m73_c00464{transform:matrix(0.194341,-0.002721,0.003500,0.249976,0,0);-ms-transform:matrix(0.194341,-0.002721,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194341,-0.002721,0.003500,0.249976,0,0);}
.m62_c00464{transform:matrix(0.195091,-0.002731,0.003500,0.249976,0,0);-ms-transform:matrix(0.195091,-0.002731,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195091,-0.002731,0.003500,0.249976,0,0);}
.m1f_c00464{transform:matrix(0.195191,-0.002733,0.003500,0.249976,0,0);-ms-transform:matrix(0.195191,-0.002733,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195191,-0.002733,0.003500,0.249976,0,0);}
.m40_c00464{transform:matrix(0.195326,-0.002735,0.003500,0.249976,0,0);-ms-transform:matrix(0.195326,-0.002735,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195326,-0.002735,0.003500,0.249976,0,0);}
.md8_c00464{transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);-ms-transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);}
.m98_c00464{transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);}
.mc0_c00464{transform:matrix(0.196216,-0.002355,0.003000,0.249982,0,0);-ms-transform:matrix(0.196216,-0.002355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196216,-0.002355,0.003000,0.249982,0,0);}
.m8e_c00464{transform:matrix(0.196466,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196466,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196466,-0.002358,0.003000,0.249982,0,0);}
.mee_c00464{transform:matrix(0.196806,-0.005904,0.007497,0.249888,0,0);-ms-transform:matrix(0.196806,-0.005904,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196806,-0.005904,0.007497,0.249888,0,0);}
.m44_c00464{transform:matrix(0.197391,-0.002763,0.003500,0.249976,0,0);-ms-transform:matrix(0.197391,-0.002763,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197391,-0.002763,0.003500,0.249976,0,0);}
.m3d_c00464{transform:matrix(0.197416,-0.002764,0.003500,0.249976,0,0);-ms-transform:matrix(0.197416,-0.002764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197416,-0.002764,0.003500,0.249976,0,0);}
.mac_c00464{transform:matrix(0.197421,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197421,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197421,-0.002369,0.003000,0.249982,0,0);}
.mc_c00464{transform:matrix(0.197496,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197496,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197496,-0.002765,0.003500,0.249976,0,0);}
.m5e_c00464{transform:matrix(0.197701,-0.002768,0.003500,0.249976,0,0);-ms-transform:matrix(0.197701,-0.002768,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197701,-0.002768,0.003500,0.249976,0,0);}
.mb8_c00464{transform:matrix(0.198141,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198141,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198141,-0.002378,0.003000,0.249982,0,0);}
.m93_c00464{transform:matrix(0.198401,-0.002381,0.003000,0.249982,0,0);-ms-transform:matrix(0.198401,-0.002381,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198401,-0.002381,0.003000,0.249982,0,0);}
.me7_c00464{transform:matrix(0.198476,-0.005954,0.007497,0.249888,0,0);-ms-transform:matrix(0.198476,-0.005954,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198476,-0.005954,0.007497,0.249888,0,0);}
.mc5_c00464{transform:matrix(0.198546,-0.002383,0.003000,0.249982,0,0);-ms-transform:matrix(0.198546,-0.002383,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198546,-0.002383,0.003000,0.249982,0,0);}
.m27_c00464{transform:matrix(0.198771,-0.002783,0.003500,0.249976,0,0);-ms-transform:matrix(0.198771,-0.002783,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198771,-0.002783,0.003500,0.249976,0,0);}
.md4_c00464{transform:matrix(0.199131,-0.002390,0.003000,0.249982,0,0);-ms-transform:matrix(0.199131,-0.002390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199131,-0.002390,0.003000,0.249982,0,0);}
.mf2_c00464{transform:matrix(0.199310,-0.005979,0.007497,0.249888,0,0);-ms-transform:matrix(0.199310,-0.005979,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199310,-0.005979,0.007497,0.249888,0,0);}
.ma1_c00464{transform:matrix(0.199901,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199901,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199901,-0.002399,0.003000,0.249982,0,0);}
.m81_c00464{transform:matrix(0.199911,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199911,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199911,-0.002399,0.003000,0.249982,0,0);}
.mdf_c00464{transform:matrix(0.200130,-0.006004,0.007497,0.249888,0,0);-ms-transform:matrix(0.200130,-0.006004,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200130,-0.006004,0.007497,0.249888,0,0);}
.m90_c00464{transform:matrix(0.200131,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200131,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200131,-0.002402,0.003000,0.249982,0,0);}
.m57_c00464{transform:matrix(0.200330,-0.002805,0.003500,0.249976,0,0);-ms-transform:matrix(0.200330,-0.002805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200330,-0.002805,0.003500,0.249976,0,0);}
.m43_c00464{transform:matrix(0.200480,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200480,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200480,-0.002807,0.003500,0.249976,0,0);}
.mf4_c00464{transform:matrix(0.200765,-0.006023,0.007497,0.249888,0,0);-ms-transform:matrix(0.200765,-0.006023,0.007497,0.249888,0,0);-webkit-transform:matrix(0.200765,-0.006023,0.007497,0.249888,0,0);}
.m85_c00464{transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200966,-0.002412,0.003000,0.249982,0,0);}
.m67_c00464{transform:matrix(0.201360,-0.002819,0.003500,0.249976,0,0);-ms-transform:matrix(0.201360,-0.002819,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201360,-0.002819,0.003500,0.249976,0,0);}
.mcb_c00464{transform:matrix(0.201620,-0.002419,0.003000,0.249982,0,0);-ms-transform:matrix(0.201620,-0.002419,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201620,-0.002419,0.003000,0.249982,0,0);}
.m34_c00464{transform:matrix(0.201710,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201710,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201710,-0.002824,0.003500,0.249976,0,0);}
.m91_c00464{transform:matrix(0.202200,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202200,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202200,-0.002426,0.003000,0.249982,0,0);}
.mec_c00464{transform:matrix(0.202344,-0.006070,0.007497,0.249888,0,0);-ms-transform:matrix(0.202344,-0.006070,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202344,-0.006070,0.007497,0.249888,0,0);}
.m2f_c00464{transform:matrix(0.202455,-0.002834,0.003500,0.249976,0,0);-ms-transform:matrix(0.202455,-0.002834,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202455,-0.002834,0.003500,0.249976,0,0);}
.m9b_c00464{transform:matrix(0.202965,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202965,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202965,-0.002436,0.003000,0.249982,0,0);}
.m7d_c00464{transform:matrix(0.203030,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.203030,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203030,-0.002436,0.003000,0.249982,0,0);}
.mb3_c00464{transform:matrix(0.203145,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203145,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203145,-0.002438,0.003000,0.249982,0,0);}
.m7_c00464{transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);-ms-transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203295,-0.002846,0.003500,0.249976,0,0);}
.m20_c00464{transform:matrix(0.204115,-0.002858,0.003500,0.249976,0,0);-ms-transform:matrix(0.204115,-0.002858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204115,-0.002858,0.003500,0.249976,0,0);}
.m1d_c00464{transform:matrix(0.204120,-0.002858,0.003500,0.249976,0,0);-ms-transform:matrix(0.204120,-0.002858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204120,-0.002858,0.003500,0.249976,0,0);}
.ma3_c00464{transform:matrix(0.204340,-0.002452,0.003000,0.249982,0,0);-ms-transform:matrix(0.204340,-0.002452,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204340,-0.002452,0.003000,0.249982,0,0);}
.md9_c00464{transform:matrix(0.204381,-0.005314,0.006498,0.249916,0,0);-ms-transform:matrix(0.204381,-0.005314,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204381,-0.005314,0.006498,0.249916,0,0);}
.m9a_c00464{transform:matrix(0.204525,-0.002454,0.003000,0.249982,0,0);-ms-transform:matrix(0.204525,-0.002454,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204525,-0.002454,0.003000,0.249982,0,0);}
.md5_c00464{transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);}
.ma8_c00464{transform:matrix(0.205125,-0.002462,0.003000,0.249982,0,0);-ms-transform:matrix(0.205125,-0.002462,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205125,-0.002462,0.003000,0.249982,0,0);}
.mc2_c00464{transform:matrix(0.205445,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205445,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205445,-0.002465,0.003000,0.249982,0,0);}
.mc9_c00464{transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205485,-0.002466,0.003000,0.249982,0,0);}
.m1c_c00464{transform:matrix(0.206280,-0.002888,0.003500,0.249976,0,0);-ms-transform:matrix(0.206280,-0.002888,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206280,-0.002888,0.003500,0.249976,0,0);}
.m4c_c00464{transform:matrix(0.206685,-0.002894,0.003500,0.249976,0,0);-ms-transform:matrix(0.206685,-0.002894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206685,-0.002894,0.003500,0.249976,0,0);}
.m9c_c00464{transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207115,-0.002485,0.003000,0.249982,0,0);}
.m5f_c00464{transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);-ms-transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207355,-0.002903,0.003500,0.249976,0,0);}
.m92_c00464{transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207700,-0.002492,0.003000,0.249982,0,0);}
.m2c_c00464{transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);-ms-transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207705,-0.002908,0.003500,0.249976,0,0);}
.md0_c00464{transform:matrix(0.208170,-0.002498,0.003000,0.249982,0,0);-ms-transform:matrix(0.208170,-0.002498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208170,-0.002498,0.003000,0.249982,0,0);}
.m11_c00464{transform:matrix(0.208240,-0.002915,0.003500,0.249976,0,0);-ms-transform:matrix(0.208240,-0.002915,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208240,-0.002915,0.003500,0.249976,0,0);}
.me0_c00464{transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);-ms-transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208431,-0.006253,0.007497,0.249888,0,0);}
.mb0_c00464{transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208590,-0.002503,0.003000,0.249982,0,0);}
.m9e_c00464{transform:matrix(0.209025,-0.002508,0.003000,0.249982,0,0);-ms-transform:matrix(0.209025,-0.002508,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209025,-0.002508,0.003000,0.249982,0,0);}
.mea_c00464{transform:matrix(0.209196,-0.006276,0.007497,0.249888,0,0);-ms-transform:matrix(0.209196,-0.006276,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209196,-0.006276,0.007497,0.249888,0,0);}
.m36_c00464{transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);-ms-transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209219,-0.002929,0.003500,0.249976,0,0);}
.m76_c00464{transform:matrix(0.209354,-0.002931,0.003500,0.249976,0,0);-ms-transform:matrix(0.209354,-0.002931,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209354,-0.002931,0.003500,0.249976,0,0);}
.m8b_c00464{transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209460,-0.002514,0.003000,0.249982,0,0);}
.m7c_c00464{transform:matrix(0.209674,-0.002935,0.003500,0.249976,0,0);-ms-transform:matrix(0.209674,-0.002935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209674,-0.002935,0.003500,0.249976,0,0);}
.m3f_c00464{transform:matrix(0.209919,-0.002939,0.003500,0.249976,0,0);-ms-transform:matrix(0.209919,-0.002939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209919,-0.002939,0.003500,0.249976,0,0);}
.m47_c00464{transform:matrix(0.210549,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210549,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210549,-0.002948,0.003500,0.249976,0,0);}
.m65_c00464{transform:matrix(0.210834,-0.002952,0.003500,0.249976,0,0);-ms-transform:matrix(0.210834,-0.002952,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210834,-0.002952,0.003500,0.249976,0,0);}
.m4a_c00464{transform:matrix(0.210844,-0.002952,0.003500,0.249976,0,0);-ms-transform:matrix(0.210844,-0.002952,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210844,-0.002952,0.003500,0.249976,0,0);}
.m45_c00464{transform:matrix(0.211539,-0.002962,0.003500,0.249976,0,0);-ms-transform:matrix(0.211539,-0.002962,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211539,-0.002962,0.003500,0.249976,0,0);}
.m96_c00464{transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211680,-0.002540,0.003000,0.249982,0,0);}
.m22_c00464{transform:matrix(0.211684,-0.002964,0.003500,0.249976,0,0);-ms-transform:matrix(0.211684,-0.002964,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211684,-0.002964,0.003500,0.249976,0,0);}
.m4e_c00464{transform:matrix(0.211944,-0.002967,0.003500,0.249976,0,0);-ms-transform:matrix(0.211944,-0.002967,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211944,-0.002967,0.003500,0.249976,0,0);}
.m28_c00464{transform:matrix(0.212604,-0.002976,0.003500,0.249976,0,0);-ms-transform:matrix(0.212604,-0.002976,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212604,-0.002976,0.003500,0.249976,0,0);}
.mf1_c00464{transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);-ms-transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212739,-0.006382,0.007497,0.249888,0,0);}
.m31_c00464{transform:matrix(0.213899,-0.002995,0.003500,0.249976,0,0);-ms-transform:matrix(0.213899,-0.002995,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213899,-0.002995,0.003500,0.249976,0,0);}
.me1_c00464{transform:matrix(0.213989,-0.006420,0.007497,0.249888,0,0);-ms-transform:matrix(0.213989,-0.006420,0.007497,0.249888,0,0);-webkit-transform:matrix(0.213989,-0.006420,0.007497,0.249888,0,0);}
.m86_c00464{transform:matrix(0.214525,-0.002574,0.003000,0.249982,0,0);-ms-transform:matrix(0.214525,-0.002574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214525,-0.002574,0.003000,0.249982,0,0);}
.me4_c00464{transform:matrix(0.214918,-0.006448,0.007497,0.249888,0,0);-ms-transform:matrix(0.214918,-0.006448,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214918,-0.006448,0.007497,0.249888,0,0);}
.m29_c00464{transform:matrix(0.215519,-0.003017,0.003500,0.249976,0,0);-ms-transform:matrix(0.215519,-0.003017,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215519,-0.003017,0.003500,0.249976,0,0);}
.m33_c00464{transform:matrix(0.215659,-0.003019,0.003500,0.249976,0,0);-ms-transform:matrix(0.215659,-0.003019,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215659,-0.003019,0.003500,0.249976,0,0);}
.mc8_c00464{transform:matrix(0.216224,-0.002595,0.003000,0.249982,0,0);-ms-transform:matrix(0.216224,-0.002595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216224,-0.002595,0.003000,0.249982,0,0);}
.m97_c00464{transform:matrix(0.216359,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216359,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216359,-0.002596,0.003000,0.249982,0,0);}
.mb9_c00464{transform:matrix(0.216454,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216454,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216454,-0.002597,0.003000,0.249982,0,0);}
.m41_c00464{transform:matrix(0.216759,-0.003035,0.003500,0.249976,0,0);-ms-transform:matrix(0.216759,-0.003035,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216759,-0.003035,0.003500,0.249976,0,0);}
.m6a_c00464{transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);-ms-transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217594,-0.003046,0.003500,0.249976,0,0);}
.mc1_c00464{transform:matrix(0.217614,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217614,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217614,-0.002611,0.003000,0.249982,0,0);}
.m88_c00464{transform:matrix(0.218214,-0.002619,0.003000,0.249982,0,0);-ms-transform:matrix(0.218214,-0.002619,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218214,-0.002619,0.003000,0.249982,0,0);}
.m4b_c00464{transform:matrix(0.218689,-0.003062,0.003500,0.249976,0,0);-ms-transform:matrix(0.218689,-0.003062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218689,-0.003062,0.003500,0.249976,0,0);}
.mbf_c00464{transform:matrix(0.219019,-0.002628,0.003000,0.249982,0,0);-ms-transform:matrix(0.219019,-0.002628,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219019,-0.002628,0.003000,0.249982,0,0);}
.mcf_c00464{transform:matrix(0.221349,-0.002656,0.003000,0.249982,0,0);-ms-transform:matrix(0.221349,-0.002656,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221349,-0.002656,0.003000,0.249982,0,0);}
.md3_c00464{transform:matrix(0.221559,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221559,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221559,-0.002659,0.003000,0.249982,0,0);}
.mc4_c00464{transform:matrix(0.222624,-0.002671,0.003000,0.249982,0,0);-ms-transform:matrix(0.222624,-0.002671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222624,-0.002671,0.003000,0.249982,0,0);}
.m70_c00464{transform:matrix(0.222853,-0.003120,0.003500,0.249976,0,0);-ms-transform:matrix(0.222853,-0.003120,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222853,-0.003120,0.003500,0.249976,0,0);}
.m37_c00464{transform:matrix(0.223898,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223898,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223898,-0.003135,0.003500,0.249976,0,0);}
.ma6_c00464{transform:matrix(0.224109,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224109,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224109,-0.002689,0.003000,0.249982,0,0);}
.m3b_c00464{transform:matrix(0.224408,-0.003142,0.003500,0.249976,0,0);-ms-transform:matrix(0.224408,-0.003142,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224408,-0.003142,0.003500,0.249976,0,0);}
.mda_c00464{transform:matrix(0.225384,-0.005860,0.006498,0.249916,0,0);-ms-transform:matrix(0.225384,-0.005860,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225384,-0.005860,0.006498,0.249916,0,0);}
.m1_c00464{transform:matrix(0.226343,-0.003169,0.003500,0.249976,0,0);-ms-transform:matrix(0.226343,-0.003169,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226343,-0.003169,0.003500,0.249976,0,0);}
.m89_c00464{transform:matrix(0.226374,-0.002716,0.003000,0.249982,0,0);-ms-transform:matrix(0.226374,-0.002716,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226374,-0.002716,0.003000,0.249982,0,0);}
.md1_c00464{transform:matrix(0.226684,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226684,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226684,-0.002720,0.003000,0.249982,0,0);}
.m3a_c00464{transform:matrix(0.226963,-0.003177,0.003500,0.249976,0,0);-ms-transform:matrix(0.226963,-0.003177,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226963,-0.003177,0.003500,0.249976,0,0);}
.m30_c00464{transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);-ms-transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);}
.ma9_c00464{transform:matrix(0.230388,-0.002765,0.003000,0.249982,0,0);-ms-transform:matrix(0.230388,-0.002765,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230388,-0.002765,0.003000,0.249982,0,0);}
.md2_c00464{transform:matrix(0.233468,-0.002802,0.003000,0.249982,0,0);-ms-transform:matrix(0.233468,-0.002802,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233468,-0.002802,0.003000,0.249982,0,0);}
.m78_c00464{transform:matrix(0.233537,-0.003270,0.003500,0.249976,0,0);-ms-transform:matrix(0.233537,-0.003270,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233537,-0.003270,0.003500,0.249976,0,0);}
.m35_c00464{transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);-ms-transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237022,-0.003318,0.003500,0.249976,0,0);}
.m7b_c00464{transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);-ms-transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238727,-0.003342,0.003500,0.249976,0,0);}
.mcd_c00464{transform:matrix(0.238918,-0.002867,0.003000,0.249982,0,0);-ms-transform:matrix(0.238918,-0.002867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238918,-0.002867,0.003000,0.249982,0,0);}
.me9_c00464{transform:matrix(0.239682,-0.007190,0.007497,0.249888,0,0);-ms-transform:matrix(0.239682,-0.007190,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239682,-0.007190,0.007497,0.249888,0,0);}
.me2_c00464{transform:matrix(0.240812,-0.007224,0.007497,0.249888,0,0);-ms-transform:matrix(0.240812,-0.007224,0.007497,0.249888,0,0);-webkit-transform:matrix(0.240812,-0.007224,0.007497,0.249888,0,0);}
.mdd_c00464{transform:matrix(0.241137,-0.007234,0.007497,0.249888,0,0);-ms-transform:matrix(0.241137,-0.007234,0.007497,0.249888,0,0);-webkit-transform:matrix(0.241137,-0.007234,0.007497,0.249888,0,0);}
.m2b_c00464{transform:matrix(0.244546,-0.003424,0.003500,0.249976,0,0);-ms-transform:matrix(0.244546,-0.003424,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244546,-0.003424,0.003500,0.249976,0,0);}
.m8f_c00464{transform:matrix(0.246257,-0.002955,0.003000,0.249982,0,0);-ms-transform:matrix(0.246257,-0.002955,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246257,-0.002955,0.003000,0.249982,0,0);}
.m46_c00464{transform:matrix(0.248196,-0.003475,0.003500,0.249976,0,0);-ms-transform:matrix(0.248196,-0.003475,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248196,-0.003475,0.003500,0.249976,0,0);}
.me5_c00464{transform:matrix(0.249123,-0.007474,0.007497,0.249888,0,0);-ms-transform:matrix(0.249123,-0.007474,0.007497,0.249888,0,0);-webkit-transform:matrix(0.249123,-0.007474,0.007497,0.249888,0,0);}
.md6_c00464{transform:matrix(0.254859,-0.006626,0.006498,0.249916,0,0);-ms-transform:matrix(0.254859,-0.006626,0.006498,0.249916,0,0);-webkit-transform:matrix(0.254859,-0.006626,0.006498,0.249916,0,0);}
.m84_c00464{transform:matrix(0.257396,-0.003089,0.003000,0.249982,0,0);-ms-transform:matrix(0.257396,-0.003089,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257396,-0.003089,0.003000,0.249982,0,0);}
.me8_c00464{transform:matrix(0.294787,-0.008844,0.007497,0.249888,0,0);-ms-transform:matrix(0.294787,-0.008844,0.007497,0.249888,0,0);-webkit-transform:matrix(0.294787,-0.008844,0.007497,0.249888,0,0);}
.me3_c00464{transform:matrix(0.339772,-0.010193,0.007497,0.249888,0,0);-ms-transform:matrix(0.339772,-0.010193,0.007497,0.249888,0,0);-webkit-transform:matrix(0.339772,-0.010193,0.007497,0.249888,0,0);}
.me6_c00464{transform:matrix(0.370633,-0.011119,0.007497,0.249888,0,0);-ms-transform:matrix(0.370633,-0.011119,0.007497,0.249888,0,0);-webkit-transform:matrix(0.370633,-0.011119,0.007497,0.249888,0,0);}
.m77_c00464{transform:matrix(0.938143,-0.013134,0.003500,0.249976,0,0);-ms-transform:matrix(0.938143,-0.013134,0.003500,0.249976,0,0);-webkit-transform:matrix(0.938143,-0.013134,0.003500,0.249976,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
.fc0_c00464{color:transparent;}
.fs14_c00464{font-size:57.775982px;}
.fs6_c00464{font-size:58.805762px;}
.fs13_c00464{font-size:58.826454px;}
.fs11_c00464{font-size:59.854309px;}
.fs10_c00464{font-size:60.904385px;}
.fsb_c00464{font-size:60.905968px;}
.fs4_c00464{font-size:61.956071px;}
.fs12_c00464{font-size:61.970936px;}
.fse_c00464{font-size:63.004536px;}
.fs8_c00464{font-size:63.006174px;}
.fsc_c00464{font-size:64.054611px;}
.fs1_c00464{font-size:64.056277px;}
.fs15_c00464{font-size:64.078816px;}
.fs7_c00464{font-size:65.106379px;}
.fsf_c00464{font-size:66.154763px;}
.fs5_c00464{font-size:66.156482px;}
.fsa_c00464{font-size:67.206585px;}
.fsd_c00464{font-size:68.254914px;}
.fs9_c00464{font-size:68.256688px;}
.fs16_c00464{font-size:68.280706px;}
.fs3_c00464{font-size:71.406997px;}
.fs2_c00464{font-size:72.457100px;}
.fs0_c00464{font-size:112.350000px;}
.y0_c00464{bottom:0.000000px;}
.yf4_c00464{bottom:34.005330px;}
.yf5_c00464{bottom:35.213280px;}
.yf6_c00464{bottom:36.528345px;}
.yf7_c00464{bottom:37.590060px;}
.yf8_c00464{bottom:39.236520px;}
.yf9_c00464{bottom:40.500570px;}
.yed_c00464{bottom:52.100880px;}
.yee_c00464{bottom:52.680675px;}
.yef_c00464{bottom:53.167935px;}
.yf0_c00464{bottom:54.504495px;}
.yf1_c00464{bottom:54.804390px;}
.yf2_c00464{bottom:56.097480px;}
.yf3_c00464{bottom:56.603595px;}
.ye6_c00464{bottom:66.429885px;}
.ye7_c00464{bottom:68.060385px;}
.ye8_c00464{bottom:69.850320px;}
.ye9_c00464{bottom:72.123630px;}
.yea_c00464{bottom:72.959550px;}
.yeb_c00464{bottom:74.534565px;}
.yec_c00464{bottom:76.129050px;}
.ye0_c00464{bottom:85.063500px;}
.ye1_c00464{bottom:87.280920px;}
.ye2_c00464{bottom:87.962220px;}
.ye3_c00464{bottom:89.654130px;}
.ye4_c00464{bottom:90.255465px;}
.ye5_c00464{bottom:92.461140px;}
.yd9_c00464{bottom:101.800500px;}
.yda_c00464{bottom:102.886962px;}
.ydb_c00464{bottom:104.400201px;}
.ydc_c00464{bottom:105.112614px;}
.ydd_c00464{bottom:106.194786px;}
.yde_c00464{bottom:108.095295px;}
.ydf_c00464{bottom:109.339785px;}
.yd1_c00464{bottom:119.610102px;}
.yd2_c00464{bottom:120.346392px;}
.yd3_c00464{bottom:120.572070px;}
.yd4_c00464{bottom:120.765798px;}
.yd5_c00464{bottom:122.128488px;}
.yd6_c00464{bottom:122.913384px;}
.yd7_c00464{bottom:123.271392px;}
.yd8_c00464{bottom:124.160628px;}
.yc9_c00464{bottom:136.624146px;}
.yca_c00464{bottom:137.115414px;}
.ycb_c00464{bottom:138.683166px;}
.ycc_c00464{bottom:139.610106px;}
.ycd_c00464{bottom:140.102598px;}
.yce_c00464{bottom:140.501394px;}
.ycf_c00464{bottom:142.082058px;}
.yd0_c00464{bottom:142.569666px;}
.yc2_c00464{bottom:156.055686px;}
.yc3_c00464{bottom:156.557742px;}
.yc4_c00464{bottom:156.781260px;}
.yc5_c00464{bottom:157.357572px;}
.yc6_c00464{bottom:158.085390px;}
.yc7_c00464{bottom:158.338272px;}
.yc8_c00464{bottom:159.086910px;}
.yb9_c00464{bottom:171.714534px;}
.yba_c00464{bottom:172.146828px;}
.ybb_c00464{bottom:172.482312px;}
.ybc_c00464{bottom:173.339598px;}
.ybd_c00464{bottom:174.139542px;}
.ybe_c00464{bottom:174.566268px;}
.ybf_c00464{bottom:175.447578px;}
.yc0_c00464{bottom:175.757382px;}
.yc1_c00464{bottom:176.643720px;}
.yb1_c00464{bottom:188.185410px;}
.yb2_c00464{bottom:189.252306px;}
.yb3_c00464{bottom:189.453672px;}
.yb4_c00464{bottom:190.049184px;}
.yb5_c00464{bottom:190.430754px;}
.yb6_c00464{bottom:191.767272px;}
.yb7_c00464{bottom:192.329838px;}
.yb8_c00464{bottom:193.318656px;}
.ya8_c00464{bottom:205.196448px;}
.ya9_c00464{bottom:205.713618px;}
.yaa_c00464{bottom:206.309184px;}
.yab_c00464{bottom:207.147816px;}
.yac_c00464{bottom:207.506808px;}
.yad_c00464{bottom:208.123782px;}
.yae_c00464{bottom:208.388538px;}
.yaf_c00464{bottom:209.294466px;}
.yb0_c00464{bottom:209.704320px;}
.ya6_c00464{bottom:224.621322px;}
.ya5_c00464{bottom:224.621394px;}
.ya2_c00464{bottom:224.621502px;}
.ya4_c00464{bottom:224.621532px;}
.ya7_c00464{bottom:224.621664px;}
.ya3_c00464{bottom:224.621868px;}
.ya1_c00464{bottom:224.622180px;}
.ya0_c00464{bottom:224.622438px;}
.y9a_c00464{bottom:239.220930px;}
.y9b_c00464{bottom:240.219594px;}
.y9c_c00464{bottom:241.000902px;}
.y9d_c00464{bottom:241.349214px;}
.y9e_c00464{bottom:242.276820px;}
.y9f_c00464{bottom:243.592782px;}
.y92_c00464{bottom:257.309148px;}
.y93_c00464{bottom:257.532996px;}
.y94_c00464{bottom:258.048120px;}
.y95_c00464{bottom:258.514842px;}
.y96_c00464{bottom:259.120758px;}
.y97_c00464{bottom:259.710546px;}
.y98_c00464{bottom:260.406390px;}
.y99_c00464{bottom:260.556150px;}
.y8a_c00464{bottom:273.779820px;}
.y8b_c00464{bottom:274.091886px;}
.y8c_c00464{bottom:275.214456px;}
.y8d_c00464{bottom:275.919054px;}
.y8e_c00464{bottom:276.113790px;}
.y8f_c00464{bottom:276.400848px;}
.y90_c00464{bottom:276.976428px;}
.y91_c00464{bottom:277.312668px;}
.y83_c00464{bottom:291.060702px;}
.y84_c00464{bottom:292.186632px;}
.y85_c00464{bottom:292.519950px;}
.y86_c00464{bottom:293.215146px;}
.y87_c00464{bottom:293.501688px;}
.y88_c00464{bottom:293.698884px;}
.y89_c00464{bottom:294.337926px;}
.y7f_c00464{bottom:308.881500px;}
.y80_c00464{bottom:309.111054px;}
.y81_c00464{bottom:309.464664px;}
.y82_c00464{bottom:312.084618px;}
.y79_c00464{bottom:327.479697px;}
.y7c_c00464{bottom:327.479748px;}
.y7b_c00464{bottom:327.479970px;}
.y7d_c00464{bottom:327.480045px;}
.y7e_c00464{bottom:327.480084px;}
.y7a_c00464{bottom:327.480093px;}
.y78_c00464{bottom:327.480438px;}
.y77_c00464{bottom:327.480600px;}
.y6d_c00464{bottom:343.152018px;}
.y6e_c00464{bottom:343.502934px;}
.y6f_c00464{bottom:343.977297px;}
.y70_c00464{bottom:344.589294px;}
.y71_c00464{bottom:344.978643px;}
.y72_c00464{bottom:345.456429px;}
.y73_c00464{bottom:345.611274px;}
.y74_c00464{bottom:346.088766px;}
.y75_c00464{bottom:346.721754px;}
.y76_c00464{bottom:346.880043px;}
.y63_c00464{bottom:359.353959px;}
.y64_c00464{bottom:359.795811px;}
.y65_c00464{bottom:360.082578px;}
.y66_c00464{bottom:360.379005px;}
.y67_c00464{bottom:360.824763px;}
.y68_c00464{bottom:361.816023px;}
.y69_c00464{bottom:362.080773px;}
.y6a_c00464{bottom:362.911425px;}
.y6b_c00464{bottom:363.190392px;}
.y6c_c00464{bottom:363.711483px;}
.y5b_c00464{bottom:375.552861px;}
.y5c_c00464{bottom:375.949923px;}
.y5d_c00464{bottom:376.290300px;}
.y5e_c00464{bottom:377.416707px;}
.y5f_c00464{bottom:378.072840px;}
.y60_c00464{bottom:378.806604px;}
.y61_c00464{bottom:379.427154px;}
.y62_c00464{bottom:379.698162px;}
.y53_c00464{bottom:393.642588px;}
.y54_c00464{bottom:394.008423px;}
.y55_c00464{bottom:394.228122px;}
.y56_c00464{bottom:394.661502px;}
.y57_c00464{bottom:395.124447px;}
.y58_c00464{bottom:395.654106px;}
.y59_c00464{bottom:396.376167px;}
.y5a_c00464{bottom:396.518754px;}
.y4b_c00464{bottom:409.305459px;}
.y4c_c00464{bottom:409.789362px;}
.y4d_c00464{bottom:410.322405px;}
.y4e_c00464{bottom:411.096381px;}
.y4f_c00464{bottom:411.399642px;}
.y50_c00464{bottom:412.091466px;}
.y51_c00464{bottom:412.318413px;}
.y52_c00464{bottom:413.187771px;}
.y42_c00464{bottom:428.073060px;}
.y41_c00464{bottom:428.073141px;}
.y43_c00464{bottom:428.073699px;}
.y44_c00464{bottom:428.074158px;}
.y4a_c00464{bottom:428.074443px;}
.y48_c00464{bottom:428.074608px;}
.y46_c00464{bottom:428.074794px;}
.y45_c00464{bottom:428.074815px;}
.y49_c00464{bottom:428.074905px;}
.y47_c00464{bottom:428.074950px;}
.y3b_c00464{bottom:443.326017px;}
.y3c_c00464{bottom:443.834565px;}
.y3d_c00464{bottom:444.658206px;}
.y3e_c00464{bottom:444.871812px;}
.y3f_c00464{bottom:445.558290px;}
.y40_c00464{bottom:445.948356px;}
.y31_c00464{bottom:460.336437px;}
.y32_c00464{bottom:460.689516px;}
.y33_c00464{bottom:461.111193px;}
.y34_c00464{bottom:461.332254px;}
.y35_c00464{bottom:461.670126px;}
.y36_c00464{bottom:462.505026px;}
.y37_c00464{bottom:462.664191px;}
.y38_c00464{bottom:463.169745px;}
.y39_c00464{bottom:463.324992px;}
.y3a_c00464{bottom:463.568916px;}
.y29_c00464{bottom:477.080280px;}
.y2a_c00464{bottom:477.427557px;}
.y2b_c00464{bottom:478.009605px;}
.y2c_c00464{bottom:478.172736px;}
.y2d_c00464{bottom:479.000205px;}
.y2e_c00464{bottom:479.294139px;}
.y2f_c00464{bottom:479.688144px;}
.y30_c00464{bottom:479.902581px;}
.y21_c00464{bottom:493.826253px;}
.y22_c00464{bottom:495.036123px;}
.y23_c00464{bottom:495.451062px;}
.y24_c00464{bottom:495.757713px;}
.y25_c00464{bottom:496.542702px;}
.y26_c00464{bottom:496.894317px;}
.y27_c00464{bottom:497.506065px;}
.y28_c00464{bottom:497.813535px;}
.y1b_c00464{bottom:510.566403px;}
.y1c_c00464{bottom:511.469028px;}
.y1d_c00464{bottom:511.881651px;}
.y1e_c00464{bottom:512.300688px;}
.y1f_c00464{bottom:513.222957px;}
.y20_c00464{bottom:513.608985px;}
.y12_c00464{bottom:527.847486px;}
.y13_c00464{bottom:527.990436px;}
.y14_c00464{bottom:528.233415px;}
.y15_c00464{bottom:528.885132px;}
.y16_c00464{bottom:529.620213px;}
.y17_c00464{bottom:530.025171px;}
.y18_c00464{bottom:530.161788px;}
.y19_c00464{bottom:530.835423px;}
.y1a_c00464{bottom:530.994000px;}
.y8_c00464{bottom:544.859673px;}
.y9_c00464{bottom:545.150256px;}
.ya_c00464{bottom:545.323143px;}
.yb_c00464{bottom:545.780763px;}
.yc_c00464{bottom:546.021006px;}
.yd_c00464{bottom:546.640896px;}
.ye_c00464{bottom:546.796191px;}
.yf_c00464{bottom:546.977292px;}
.y10_c00464{bottom:547.233519px;}
.y11_c00464{bottom:547.782735px;}
.y2_c00464{bottom:561.873000px;}
.y3_c00464{bottom:562.960800px;}
.y4_c00464{bottom:563.244951px;}
.y5_c00464{bottom:563.664762px;}
.y6_c00464{bottom:564.749559px;}
.y7_c00464{bottom:565.135287px;}
.y1_c00464{bottom:576.577500px;}
.h16_c00464{height:57.775982px;}
.h8_c00464{height:58.805762px;}
.h15_c00464{height:58.826454px;}
.h13_c00464{height:59.854309px;}
.h12_c00464{height:60.904385px;}
.hd_c00464{height:60.905968px;}
.h6_c00464{height:61.956071px;}
.h14_c00464{height:61.970936px;}
.h10_c00464{height:63.004536px;}
.ha_c00464{height:63.006174px;}
.he_c00464{height:64.054611px;}
.h3_c00464{height:64.056277px;}
.h17_c00464{height:64.078816px;}
.h9_c00464{height:65.106379px;}
.h11_c00464{height:66.154763px;}
.h7_c00464{height:66.156482px;}
.hc_c00464{height:67.206585px;}
.hf_c00464{height:68.254914px;}
.hb_c00464{height:68.256688px;}
.h18_c00464{height:68.280706px;}
.h5_c00464{height:71.406997px;}
.h4_c00464{height:72.457100px;}
.h2_c00464{height:112.350000px;}
.h0_c00464{height:617.700000px;}
.h1_c00464{height:618.000000px;}
.w0_c00464{width:359.100000px;}
.w1_c00464{width:359.250000px;}
.x0_c00464{left:0.000000px;}
.x74_c00464{left:16.891500px;}
.x8_c00464{left:18.239367px;}
.x2_c00464{left:19.632000px;}
.x6a_c00464{left:20.976582px;}
.x7d_c00464{left:22.186830px;}
.x7a_c00464{left:27.595710px;}
.x12_c00464{left:32.282742px;}
.x55_c00464{left:35.560734px;}
.x32_c00464{left:37.798392px;}
.x60_c00464{left:39.689976px;}
.x58_c00464{left:40.697070px;}
.x9_c00464{left:44.674980px;}
.x40_c00464{left:45.734028px;}
.x29_c00464{left:48.948036px;}
.x24_c00464{left:51.145680px;}
.x13_c00464{left:52.531809px;}
.x38_c00464{left:53.900469px;}
.x7e_c00464{left:56.326650px;}
.x61_c00464{left:57.511050px;}
.x75_c00464{left:58.678500px;}
.xa_c00464{left:60.346131px;}
.x2f_c00464{left:61.439907px;}
.x6f_c00464{left:65.723880px;}
.x45_c00464{left:67.042803px;}
.x33_c00464{left:68.311356px;}
.x53_c00464{left:71.008431px;}
.x3c_c00464{left:72.211872px;}
.x1a_c00464{left:77.600877px;}
.x68_c00464{left:79.505586px;}
.x4b_c00464{left:82.179699px;}
.x2a_c00464{left:84.104523px;}
.x46_c00464{left:86.823030px;}
.x64_c00464{left:89.833920px;}
.x39_c00464{left:91.974969px;}
.x77_c00464{left:95.166000px;}
.x3_c00464{left:97.332000px;}
.xb_c00464{left:101.927874px;}
.x25_c00464{left:104.079906px;}
.x1b_c00464{left:105.144999px;}
.x14_c00464{left:106.798821px;}
.x3d_c00464{left:111.633531px;}
.x1e_c00464{left:114.880698px;}
.x47_c00464{left:116.519610px;}
.x4_c00464{left:117.628500px;}
.x26_c00464{left:118.947036px;}
.x5c_c00464{left:120.308430px;}
.x7b_c00464{left:122.593110px;}
.xc_c00464{left:123.803298px;}
.x4c_c00464{left:129.215850px;}
.x2b_c00464{left:130.565304px;}
.x1c_c00464{left:133.040100px;}
.x34_c00464{left:135.548523px;}
.x1f_c00464{left:139.268169px;}
.x65_c00464{left:142.217400px;}
.x41_c00464{left:143.538663px;}
.x5f_c00464{left:144.673896px;}
.x5_c00464{left:147.615000px;}
.x1_c00464{left:149.040000px;}
.x3e_c00464{left:153.702795px;}
.x62_c00464{left:155.527662px;}
.x20_c00464{left:157.313913px;}
.x4d_c00464{left:159.169770px;}
.x59_c00464{left:162.456678px;}
.x6b_c00464{left:163.552014px;}
.x66_c00464{left:164.632320px;}
.x15_c00464{left:168.092043px;}
.x73_c00464{left:169.797456px;}
.x5d_c00464{left:170.801430px;}
.x78_c00464{left:174.273000px;}
.x5a_c00464{left:175.434210px;}
.xd_c00464{left:180.190671px;}
.x7f_c00464{left:181.215795px;}
.x48_c00464{left:182.608686px;}
.x63_c00464{left:185.770518px;}
.x42_c00464{left:187.297554px;}
.x56_c00464{left:189.469044px;}
.x35_c00464{left:191.713527px;}
.xe_c00464{left:194.283759px;}
.x4e_c00464{left:195.869274px;}
.x71_c00464{left:197.656524px;}
.x2c_c00464{left:200.167257px;}
.x16_c00464{left:201.839988px;}
.x21_c00464{left:203.525481px;}
.x30_c00464{left:205.031418px;}
.x4f_c00464{left:207.786942px;}
.x7c_c00464{left:208.968585px;}
.xf_c00464{left:210.755952px;}
.x17_c00464{left:213.205803px;}
.x36_c00464{left:216.015294px;}
.x3a_c00464{left:218.336469px;}
.x1d_c00464{left:220.274382px;}
.x57_c00464{left:224.029716px;}
.x6_c00464{left:225.100500px;}
.x70_c00464{left:227.478306px;}
.x81_c00464{left:230.948130px;}
.x5b_c00464{left:232.943640px;}
.x10_c00464{left:233.987418px;}
.x43_c00464{left:236.172861px;}
.x31_c00464{left:237.501321px;}
.x6c_c00464{left:240.425388px;}
.x50_c00464{left:244.465446px;}
.x69_c00464{left:250.454274px;}
.x7_c00464{left:252.652500px;}
.x2d_c00464{left:255.577311px;}
.x27_c00464{left:256.874853px;}
.x6d_c00464{left:258.616290px;}
.x22_c00464{left:260.227608px;}
.x37_c00464{left:266.510685px;}
.x79_c00464{left:267.840000px;}
.x18_c00464{left:269.359878px;}
.x49_c00464{left:274.240905px;}
.x28_c00464{left:276.371172px;}
.x23_c00464{left:278.331852px;}
.x3f_c00464{left:280.408608px;}
.x82_c00464{left:281.490690px;}
.x19_c00464{left:282.615756px;}
.x11_c00464{left:283.933518px;}
.x54_c00464{left:285.712500px;}
.x80_c00464{left:287.080560px;}
.x2e_c00464{left:288.804735px;}
.x5e_c00464{left:290.417430px;}
.x72_c00464{left:291.626238px;}
.x51_c00464{left:293.108118px;}
.x44_c00464{left:295.569021px;}
.x3b_c00464{left:296.643969px;}
.x67_c00464{left:302.001732px;}
.x52_c00464{left:305.271786px;}
.x76_c00464{left:306.864000px;}
.x4a_c00464{left:308.996922px;}
.x6e_c00464{left:310.724658px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fs14_c00464{font-size:51.356428pt;}
.fs6_c00464{font-size:52.271789pt;}
.fs13_c00464{font-size:52.290181pt;}
.fs11_c00464{font-size:53.203830pt;}
.fs10_c00464{font-size:54.137231pt;}
.fsb_c00464{font-size:54.138638pt;}
.fs4_c00464{font-size:55.072063pt;}
.fs12_c00464{font-size:55.085276pt;}
.fse_c00464{font-size:56.004032pt;}
.fs8_c00464{font-size:56.005488pt;}
.fsc_c00464{font-size:56.937432pt;}
.fs1_c00464{font-size:56.938913pt;}
.fs15_c00464{font-size:56.958948pt;}
.fs7_c00464{font-size:57.872337pt;}
.fsf_c00464{font-size:58.804233pt;}
.fs5_c00464{font-size:58.805762pt;}
.fsa_c00464{font-size:59.739187pt;}
.fsd_c00464{font-size:60.671035pt;}
.fs9_c00464{font-size:60.672612pt;}
.fs16_c00464{font-size:60.693961pt;}
.fs3_c00464{font-size:63.472886pt;}
.fs2_c00464{font-size:64.406311pt;}
.fs0_c00464{font-size:99.866667pt;}
.y0_c00464{bottom:0.000000pt;}
.yf4_c00464{bottom:30.226960pt;}
.yf5_c00464{bottom:31.300693pt;}
.yf6_c00464{bottom:32.469640pt;}
.yf7_c00464{bottom:33.413387pt;}
.yf8_c00464{bottom:34.876907pt;}
.yf9_c00464{bottom:36.000507pt;}
.yed_c00464{bottom:46.311893pt;}
.yee_c00464{bottom:46.827267pt;}
.yef_c00464{bottom:47.260387pt;}
.yf0_c00464{bottom:48.448440pt;}
.yf1_c00464{bottom:48.715013pt;}
.yf2_c00464{bottom:49.864427pt;}
.yf3_c00464{bottom:50.314307pt;}
.ye6_c00464{bottom:59.048787pt;}
.ye7_c00464{bottom:60.498120pt;}
.ye8_c00464{bottom:62.089173pt;}
.ye9_c00464{bottom:64.109893pt;}
.yea_c00464{bottom:64.852933pt;}
.yeb_c00464{bottom:66.252947pt;}
.yec_c00464{bottom:67.670267pt;}
.ye0_c00464{bottom:75.612000pt;}
.ye1_c00464{bottom:77.583040pt;}
.ye2_c00464{bottom:78.188640pt;}
.ye3_c00464{bottom:79.692560pt;}
.ye4_c00464{bottom:80.227080pt;}
.ye5_c00464{bottom:82.187680pt;}
.yd9_c00464{bottom:90.489333pt;}
.yda_c00464{bottom:91.455077pt;}
.ydb_c00464{bottom:92.800179pt;}
.ydc_c00464{bottom:93.433435pt;}
.ydd_c00464{bottom:94.395365pt;}
.yde_c00464{bottom:96.084707pt;}
.ydf_c00464{bottom:97.190920pt;}
.yd1_c00464{bottom:106.320091pt;}
.yd2_c00464{bottom:106.974571pt;}
.yd3_c00464{bottom:107.175173pt;}
.yd4_c00464{bottom:107.347376pt;}
.yd5_c00464{bottom:108.558656pt;}
.yd6_c00464{bottom:109.256341pt;}
.yd7_c00464{bottom:109.574571pt;}
.yd8_c00464{bottom:110.365003pt;}
.yc9_c00464{bottom:121.443685pt;}
.yca_c00464{bottom:121.880368pt;}
.ycb_c00464{bottom:123.273925pt;}
.ycc_c00464{bottom:124.097872pt;}
.ycd_c00464{bottom:124.535643pt;}
.yce_c00464{bottom:124.890128pt;}
.ycf_c00464{bottom:126.295163pt;}
.yd0_c00464{bottom:126.728592pt;}
.yc2_c00464{bottom:138.716165pt;}
.yc3_c00464{bottom:139.162437pt;}
.yc4_c00464{bottom:139.361120pt;}
.yc5_c00464{bottom:139.873397pt;}
.yc6_c00464{bottom:140.520347pt;}
.yc7_c00464{bottom:140.745131pt;}
.yc8_c00464{bottom:141.410587pt;}
.yb9_c00464{bottom:152.635141pt;}
.yba_c00464{bottom:153.019403pt;}
.ybb_c00464{bottom:153.317611pt;}
.ybc_c00464{bottom:154.079643pt;}
.ybd_c00464{bottom:154.790704pt;}
.ybe_c00464{bottom:155.170016pt;}
.ybf_c00464{bottom:155.953403pt;}
.yc0_c00464{bottom:156.228784pt;}
.yc1_c00464{bottom:157.016640pt;}
.yb1_c00464{bottom:167.275920pt;}
.yb2_c00464{bottom:168.224272pt;}
.yb3_c00464{bottom:168.403264pt;}
.yb4_c00464{bottom:168.932608pt;}
.yb5_c00464{bottom:169.271781pt;}
.yb6_c00464{bottom:170.459797pt;}
.yb7_c00464{bottom:170.959856pt;}
.yb8_c00464{bottom:171.838805pt;}
.ya8_c00464{bottom:182.396843pt;}
.ya9_c00464{bottom:182.856549pt;}
.yaa_c00464{bottom:183.385941pt;}
.yab_c00464{bottom:184.131392pt;}
.yac_c00464{bottom:184.450496pt;}
.yad_c00464{bottom:184.998917pt;}
.yae_c00464{bottom:185.234256pt;}
.yaf_c00464{bottom:186.039525pt;}
.yb0_c00464{bottom:186.403840pt;}
.ya6_c00464{bottom:199.663397pt;}
.ya5_c00464{bottom:199.663461pt;}
.ya2_c00464{bottom:199.663557pt;}
.ya4_c00464{bottom:199.663584pt;}
.ya7_c00464{bottom:199.663701pt;}
.ya3_c00464{bottom:199.663883pt;}
.ya1_c00464{bottom:199.664160pt;}
.ya0_c00464{bottom:199.664389pt;}
.y9a_c00464{bottom:212.640827pt;}
.y9b_c00464{bottom:213.528528pt;}
.y9c_c00464{bottom:214.223024pt;}
.y9d_c00464{bottom:214.532635pt;}
.y9e_c00464{bottom:215.357173pt;}
.y9f_c00464{bottom:216.526917pt;}
.y92_c00464{bottom:228.719243pt;}
.y93_c00464{bottom:228.918219pt;}
.y94_c00464{bottom:229.376107pt;}
.y95_c00464{bottom:229.790971pt;}
.y96_c00464{bottom:230.329563pt;}
.y97_c00464{bottom:230.853819pt;}
.y98_c00464{bottom:231.472347pt;}
.y99_c00464{bottom:231.605467pt;}
.y8a_c00464{bottom:243.359840pt;}
.y8b_c00464{bottom:243.637232pt;}
.y8c_c00464{bottom:244.635072pt;}
.y8d_c00464{bottom:245.261381pt;}
.y8e_c00464{bottom:245.434480pt;}
.y8f_c00464{bottom:245.689643pt;}
.y90_c00464{bottom:246.201269pt;}
.y91_c00464{bottom:246.500149pt;}
.y83_c00464{bottom:258.720624pt;}
.y84_c00464{bottom:259.721451pt;}
.y85_c00464{bottom:260.017733pt;}
.y86_c00464{bottom:260.635685pt;}
.y87_c00464{bottom:260.890389pt;}
.y88_c00464{bottom:261.065675pt;}
.y89_c00464{bottom:261.633712pt;}
.y7f_c00464{bottom:274.561333pt;}
.y80_c00464{bottom:274.765381pt;}
.y81_c00464{bottom:275.079701pt;}
.y82_c00464{bottom:277.408549pt;}
.y79_c00464{bottom:291.093064pt;}
.y7c_c00464{bottom:291.093109pt;}
.y7b_c00464{bottom:291.093307pt;}
.y7d_c00464{bottom:291.093373pt;}
.y7e_c00464{bottom:291.093408pt;}
.y7a_c00464{bottom:291.093416pt;}
.y78_c00464{bottom:291.093723pt;}
.y77_c00464{bottom:291.093867pt;}
.y6d_c00464{bottom:305.024016pt;}
.y6e_c00464{bottom:305.335941pt;}
.y6f_c00464{bottom:305.757597pt;}
.y70_c00464{bottom:306.301595pt;}
.y71_c00464{bottom:306.647683pt;}
.y72_c00464{bottom:307.072381pt;}
.y73_c00464{bottom:307.210021pt;}
.y74_c00464{bottom:307.634459pt;}
.y75_c00464{bottom:308.197115pt;}
.y76_c00464{bottom:308.337816pt;}
.y63_c00464{bottom:319.425741pt;}
.y64_c00464{bottom:319.818499pt;}
.y65_c00464{bottom:320.073403pt;}
.y66_c00464{bottom:320.336893pt;}
.y67_c00464{bottom:320.733123pt;}
.y68_c00464{bottom:321.614243pt;}
.y69_c00464{bottom:321.849576pt;}
.y6a_c00464{bottom:322.587933pt;}
.y6b_c00464{bottom:322.835904pt;}
.y6c_c00464{bottom:323.299096pt;}
.y5b_c00464{bottom:333.824765pt;}
.y5c_c00464{bottom:334.177709pt;}
.y5d_c00464{bottom:334.480267pt;}
.y5e_c00464{bottom:335.481517pt;}
.y5f_c00464{bottom:336.064747pt;}
.y60_c00464{bottom:336.716981pt;}
.y61_c00464{bottom:337.268581pt;}
.y62_c00464{bottom:337.509477pt;}
.y53_c00464{bottom:349.904523pt;}
.y54_c00464{bottom:350.229709pt;}
.y55_c00464{bottom:350.424997pt;}
.y56_c00464{bottom:350.810224pt;}
.y57_c00464{bottom:351.221731pt;}
.y58_c00464{bottom:351.692539pt;}
.y59_c00464{bottom:352.334371pt;}
.y5a_c00464{bottom:352.461115pt;}
.y4b_c00464{bottom:363.827075pt;}
.y4c_c00464{bottom:364.257211pt;}
.y4d_c00464{bottom:364.731027pt;}
.y4e_c00464{bottom:365.419005pt;}
.y4f_c00464{bottom:365.688571pt;}
.y50_c00464{bottom:366.303525pt;}
.y51_c00464{bottom:366.505256pt;}
.y52_c00464{bottom:367.278019pt;}
.y42_c00464{bottom:380.509387pt;}
.y41_c00464{bottom:380.509459pt;}
.y43_c00464{bottom:380.509955pt;}
.y44_c00464{bottom:380.510363pt;}
.y4a_c00464{bottom:380.510616pt;}
.y48_c00464{bottom:380.510763pt;}
.y46_c00464{bottom:380.510928pt;}
.y45_c00464{bottom:380.510947pt;}
.y49_c00464{bottom:380.511027pt;}
.y47_c00464{bottom:380.511067pt;}
.y3b_c00464{bottom:394.067571pt;}
.y3c_c00464{bottom:394.519613pt;}
.y3d_c00464{bottom:395.251739pt;}
.y3e_c00464{bottom:395.441611pt;}
.y3f_c00464{bottom:396.051813pt;}
.y40_c00464{bottom:396.398539pt;}
.y31_c00464{bottom:409.187944pt;}
.y32_c00464{bottom:409.501792pt;}
.y33_c00464{bottom:409.876616pt;}
.y34_c00464{bottom:410.073115pt;}
.y35_c00464{bottom:410.373445pt;}
.y36_c00464{bottom:411.115579pt;}
.y37_c00464{bottom:411.257059pt;}
.y38_c00464{bottom:411.706440pt;}
.y39_c00464{bottom:411.844437pt;}
.y3a_c00464{bottom:412.061259pt;}
.y29_c00464{bottom:424.071360pt;}
.y2a_c00464{bottom:424.380051pt;}
.y2b_c00464{bottom:424.897427pt;}
.y2c_c00464{bottom:425.042432pt;}
.y2d_c00464{bottom:425.777960pt;}
.y2e_c00464{bottom:426.039235pt;}
.y2f_c00464{bottom:426.389461pt;}
.y30_c00464{bottom:426.580072pt;}
.y21_c00464{bottom:438.956669pt;}
.y22_c00464{bottom:440.032109pt;}
.y23_c00464{bottom:440.400944pt;}
.y24_c00464{bottom:440.673523pt;}
.y25_c00464{bottom:441.371291pt;}
.y26_c00464{bottom:441.683837pt;}
.y27_c00464{bottom:442.227613pt;}
.y28_c00464{bottom:442.500920pt;}
.y1b_c00464{bottom:453.836803pt;}
.y1c_c00464{bottom:454.639136pt;}
.y1d_c00464{bottom:455.005912pt;}
.y1e_c00464{bottom:455.378389pt;}
.y1f_c00464{bottom:456.198184pt;}
.y20_c00464{bottom:456.541320pt;}
.y12_c00464{bottom:469.197765pt;}
.y13_c00464{bottom:469.324832pt;}
.y14_c00464{bottom:469.540813pt;}
.y15_c00464{bottom:470.120117pt;}
.y16_c00464{bottom:470.773523pt;}
.y17_c00464{bottom:471.133485pt;}
.y18_c00464{bottom:471.254923pt;}
.y19_c00464{bottom:471.853709pt;}
.y1a_c00464{bottom:471.994667pt;}
.y8_c00464{bottom:484.319709pt;}
.y9_c00464{bottom:484.578005pt;}
.ya_c00464{bottom:484.731683pt;}
.yb_c00464{bottom:485.138456pt;}
.yc_c00464{bottom:485.352005pt;}
.yd_c00464{bottom:485.903019pt;}
.ye_c00464{bottom:486.041059pt;}
.yf_c00464{bottom:486.202037pt;}
.y10_c00464{bottom:486.429795pt;}
.y11_c00464{bottom:486.917987pt;}
.y2_c00464{bottom:499.442667pt;}
.y3_c00464{bottom:500.409600pt;}
.y4_c00464{bottom:500.662179pt;}
.y5_c00464{bottom:501.035344pt;}
.y6_c00464{bottom:501.999608pt;}
.y7_c00464{bottom:502.342477pt;}
.y1_c00464{bottom:512.513333pt;}
.h16_c00464{height:51.356428pt;}
.h8_c00464{height:52.271789pt;}
.h15_c00464{height:52.290181pt;}
.h13_c00464{height:53.203830pt;}
.h12_c00464{height:54.137231pt;}
.hd_c00464{height:54.138638pt;}
.h6_c00464{height:55.072063pt;}
.h14_c00464{height:55.085276pt;}
.h10_c00464{height:56.004032pt;}
.ha_c00464{height:56.005488pt;}
.he_c00464{height:56.937432pt;}
.h3_c00464{height:56.938913pt;}
.h17_c00464{height:56.958948pt;}
.h9_c00464{height:57.872337pt;}
.h11_c00464{height:58.804233pt;}
.h7_c00464{height:58.805762pt;}
.hc_c00464{height:59.739187pt;}
.hf_c00464{height:60.671035pt;}
.hb_c00464{height:60.672612pt;}
.h18_c00464{height:60.693961pt;}
.h5_c00464{height:63.472886pt;}
.h4_c00464{height:64.406311pt;}
.h2_c00464{height:99.866667pt;}
.h0_c00464{height:549.066667pt;}
.h1_c00464{height:549.333333pt;}
.w0_c00464{width:319.200000pt;}
.w1_c00464{width:319.333333pt;}
.x0_c00464{left:0.000000pt;}
.x74_c00464{left:15.014667pt;}
.x8_c00464{left:16.212771pt;}
.x2_c00464{left:17.450667pt;}
.x6a_c00464{left:18.645851pt;}
.x7d_c00464{left:19.721627pt;}
.x7a_c00464{left:24.529520pt;}
.x12_c00464{left:28.695771pt;}
.x55_c00464{left:31.609541pt;}
.x32_c00464{left:33.598571pt;}
.x60_c00464{left:35.279979pt;}
.x58_c00464{left:36.175173pt;}
.x9_c00464{left:39.711093pt;}
.x40_c00464{left:40.652469pt;}
.x29_c00464{left:43.509365pt;}
.x24_c00464{left:45.462827pt;}
.x13_c00464{left:46.694941pt;}
.x38_c00464{left:47.911528pt;}
.x7e_c00464{left:50.068133pt;}
.x61_c00464{left:51.120933pt;}
.x75_c00464{left:52.158667pt;}
.xa_c00464{left:53.641005pt;}
.x2f_c00464{left:54.613251pt;}
.x6f_c00464{left:58.421227pt;}
.x45_c00464{left:59.593603pt;}
.x33_c00464{left:60.721205pt;}
.x53_c00464{left:63.118605pt;}
.x3c_c00464{left:64.188331pt;}
.x1a_c00464{left:68.978557pt;}
.x68_c00464{left:70.671632pt;}
.x4b_c00464{left:73.048621pt;}
.x2a_c00464{left:74.759576pt;}
.x46_c00464{left:77.176027pt;}
.x64_c00464{left:79.852373pt;}
.x39_c00464{left:81.755528pt;}
.x77_c00464{left:84.592000pt;}
.x3_c00464{left:86.517333pt;}
.xb_c00464{left:90.602555pt;}
.x25_c00464{left:92.515472pt;}
.x1b_c00464{left:93.462221pt;}
.x14_c00464{left:94.932285pt;}
.x3d_c00464{left:99.229805pt;}
.x1e_c00464{left:102.116176pt;}
.x47_c00464{left:103.572987pt;}
.x4_c00464{left:104.558667pt;}
.x26_c00464{left:105.730699pt;}
.x5c_c00464{left:106.940827pt;}
.x7b_c00464{left:108.971653pt;}
.xc_c00464{left:110.047376pt;}
.x4c_c00464{left:114.858533pt;}
.x2b_c00464{left:116.058048pt;}
.x1c_c00464{left:118.257867pt;}
.x34_c00464{left:120.487576pt;}
.x1f_c00464{left:123.793928pt;}
.x65_c00464{left:126.415467pt;}
.x41_c00464{left:127.589923pt;}
.x5f_c00464{left:128.599019pt;}
.x5_c00464{left:131.213333pt;}
.x1_c00464{left:132.480000pt;}
.x3e_c00464{left:136.624707pt;}
.x62_c00464{left:138.246811pt;}
.x20_c00464{left:139.834589pt;}
.x4d_c00464{left:141.484240pt;}
.x59_c00464{left:144.405936pt;}
.x6b_c00464{left:145.379568pt;}
.x66_c00464{left:146.339840pt;}
.x15_c00464{left:149.415149pt;}
.x73_c00464{left:150.931072pt;}
.x5d_c00464{left:151.823493pt;}
.x78_c00464{left:154.909333pt;}
.x5a_c00464{left:155.941520pt;}
.xd_c00464{left:160.169485pt;}
.x7f_c00464{left:161.080707pt;}
.x48_c00464{left:162.318832pt;}
.x63_c00464{left:165.129349pt;}
.x42_c00464{left:166.486715pt;}
.x56_c00464{left:168.416928pt;}
.x35_c00464{left:170.412024pt;}
.xe_c00464{left:172.696675pt;}
.x4e_c00464{left:174.106021pt;}
.x71_c00464{left:175.694688pt;}
.x2c_c00464{left:177.926451pt;}
.x16_c00464{left:179.413323pt;}
.x21_c00464{left:180.911539pt;}
.x30_c00464{left:182.250149pt;}
.x4f_c00464{left:184.699504pt;}
.x7c_c00464{left:185.749853pt;}
.xf_c00464{left:187.338624pt;}
.x17_c00464{left:189.516269pt;}
.x36_c00464{left:192.013595pt;}
.x3a_c00464{left:194.076861pt;}
.x1d_c00464{left:195.799451pt;}
.x57_c00464{left:199.137525pt;}
.x6_c00464{left:200.089333pt;}
.x70_c00464{left:202.202939pt;}
.x81_c00464{left:205.287227pt;}
.x5b_c00464{left:207.061013pt;}
.x10_c00464{left:207.988816pt;}
.x43_c00464{left:209.931432pt;}
.x31_c00464{left:211.112285pt;}
.x6c_c00464{left:213.711456pt;}
.x50_c00464{left:217.302619pt;}
.x69_c00464{left:222.626021pt;}
.x7_c00464{left:224.580000pt;}
.x2d_c00464{left:227.179832pt;}
.x27_c00464{left:228.333203pt;}
.x6d_c00464{left:229.881147pt;}
.x22_c00464{left:231.313429pt;}
.x37_c00464{left:236.898387pt;}
.x79_c00464{left:238.080000pt;}
.x18_c00464{left:239.431003pt;}
.x49_c00464{left:243.769693pt;}
.x28_c00464{left:245.663264pt;}
.x23_c00464{left:247.406091pt;}
.x3f_c00464{left:249.252096pt;}
.x82_c00464{left:250.213947pt;}
.x19_c00464{left:251.214005pt;}
.x11_c00464{left:252.385349pt;}
.x54_c00464{left:253.966667pt;}
.x80_c00464{left:255.182720pt;}
.x2e_c00464{left:256.715320pt;}
.x5e_c00464{left:258.148827pt;}
.x72_c00464{left:259.223323pt;}
.x51_c00464{left:260.540549pt;}
.x44_c00464{left:262.728019pt;}
.x3b_c00464{left:263.683528pt;}
.x67_c00464{left:268.445984pt;}
.x52_c00464{left:271.352699pt;}
.x76_c00464{left:272.768000pt;}
.x4a_c00464{left:274.663931pt;}
.x6e_c00464{left:276.199696pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00465{transform:matrix(0.007360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007360,0.000000,0.000000,0.250000,0,0);}
.m17_c00465{transform:matrix(0.120770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120770,0.000000,0.000000,0.250000,0,0);}
.m34_c00465{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.m38_c00465{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.mb2_c00465{transform:matrix(0.128670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00465{transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141190,0.000000,0.000000,0.250000,0,0);}
.m90_c00465{transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142955,0.000000,0.000000,0.250000,0,0);}
.m65_c00465{transform:matrix(0.148740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148740,0.000000,0.000000,0.250000,0,0);}
.m97_c00465{transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148865,0.000000,0.000000,0.250000,0,0);}
.mca_c00465{transform:matrix(0.151945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151945,0.000000,0.000000,0.250000,0,0);}
.m32_c00465{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m73_c00465{transform:matrix(0.153110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00465{transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154305,0.000000,0.000000,0.250000,0,0);}
.m7a_c00465{transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);}
.m3e_c00465{transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);}
.m46_c00465{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m21_c00465{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m70_c00465{transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);}
.mb5_c00465{transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160515,0.000000,0.000000,0.250000,0,0);}
.m41_c00465{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.mbb_c00465{transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);}
.ma2_c00465{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.mb3_c00465{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.me8_c00465{transform:matrix(0.163780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163780,0.000000,0.000000,0.250000,0,0);}
.m2f_c00465{transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164810,0.000000,0.000000,0.250000,0,0);}
.meb_c00465{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.ma6_c00465{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m98_c00465{transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00465{transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167585,0.000000,0.000000,0.250000,0,0);}
.m87_c00465{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m4c_c00465{transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169190,0.000000,0.000000,0.250000,0,0);}
.m3f_c00465{transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.mc3_c00465{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00465{transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);}
.m86_c00465{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172595,0.000000,0.000000,0.250000,0,0);}
.m80_c00465{transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173210,0.000000,0.000000,0.250000,0,0);}
.m40_c00465{transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173260,0.000000,0.000000,0.250000,0,0);}
.m1b_c00465{transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);}
.m77_c00465{transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173435,0.000000,0.000000,0.250000,0,0);}
.m3d_c00465{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.mb0_c00465{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.mbf_c00465{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m7c_c00465{transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00465{transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175540,0.000000,0.000000,0.250000,0,0);}
.m35_c00465{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m6d_c00465{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m31_c00465{transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176715,0.000000,0.000000,0.250000,0,0);}
.me7_c00465{transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);}
.me9_c00465{transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177385,0.000000,0.000000,0.250000,0,0);}
.ma4_c00465{transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177820,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);}
.m63_c00465{transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177945,0.000000,0.000000,0.250000,0,0);}
.mee_c00465{transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);}
.m79_c00465{transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178405,0.000000,0.000000,0.250000,0,0);}
.m1e_c00465{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m72_c00465{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m55_c00465{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m7e_c00465{transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178965,0.000000,0.000000,0.250000,0,0);}
.md7_c00465{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m8a_c00465{transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179315,0.000000,0.000000,0.250000,0,0);}
.m5b_c00465{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.mb9_c00465{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.m4a_c00465{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00465{transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180890,0.000000,0.000000,0.250000,0,0);}
.m7b_c00465{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.m78_c00465{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m9c_c00465{transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182630,0.000000,0.000000,0.250000,0,0);}
.m84_c00465{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.mb7_c00465{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00465{transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182935,0.000000,0.000000,0.250000,0,0);}
.m3a_c00465{transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);}
.me1_c00465{transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183080,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183180,0.000000,0.000000,0.250000,0,0);}
.m53_c00465{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.m44_c00465{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.m19_c00465{transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);}
.mbe_c00465{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m8f_c00465{transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);}
.m51_c00465{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m95_c00465{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.mec_c00465{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.mba_c00465{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.maf_c00465{transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);}
.m67_c00465{transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186980,0.000000,0.000000,0.250000,0,0);}
.m96_c00465{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.ma5_c00465{transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187405,0.000000,0.000000,0.250000,0,0);}
.m36_c00465{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m37_c00465{transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187515,0.000000,0.000000,0.250000,0,0);}
.m4b_c00465{transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);}
.mc2_c00465{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m5c_c00465{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.m99_c00465{transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188780,0.000000,0.000000,0.250000,0,0);}
.mb1_c00465{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00465{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m49_c00465{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m62_c00465{transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00465{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m7f_c00465{transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);}
.m15_c00465{transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193005,0.000000,0.000000,0.250000,0,0);}
.mb6_c00465{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m60_c00465{transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m88_c00465{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.md9_c00465{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00465{transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195770,0.000000,0.000000,0.250000,0,0);}
.mb8_c00465{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.mc0_c00465{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m5a_c00465{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m39_c00465{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.m48_c00465{transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);}
.m18_c00465{transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197215,0.000000,0.000000,0.250000,0,0);}
.m9b_c00465{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00465{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.mc1_c00465{transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197610,0.000000,0.000000,0.250000,0,0);}
.m23_c00465{transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197960,0.000000,0.000000,0.250000,0,0);}
.me3_c00465{transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198180,0.000000,0.000000,0.250000,0,0);}
.m89_c00465{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.me_c00465{transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);}
.m47_c00465{transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);}
.mc6_c00465{transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200720,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m85_c00465{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.m9a_c00465{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.mea_c00465{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.mda_c00465{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m7d_c00465{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m74_c00465{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.m71_c00465{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.mab_c00465{transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203980,0.000000,0.000000,0.250000,0,0);}
.mc7_c00465{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m27_c00465{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m76_c00465{transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206620,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00465{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.me2_c00465{transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207380,0.000000,0.000000,0.250000,0,0);}
.m6f_c00465{transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);}
.m64_c00465{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00465{transform:matrix(0.208920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208920,0.000000,0.000000,0.250000,0,0);}
.mce_c00465{transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);}
.m22_c00465{transform:matrix(0.209470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209470,0.000000,0.000000,0.250000,0,0);}
.m59_c00465{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.md5_c00465{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m20_c00465{transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);}
.m66_c00465{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.m2b_c00465{transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212385,0.000000,0.000000,0.250000,0,0);}
.m94_c00465{transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);}
.m69_c00465{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.mdb_c00465{transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);}
.m6e_c00465{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m6b_c00465{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m2e_c00465{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m26_c00465{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m57_c00465{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.mc5_c00465{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.me6_c00465{transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);}
.m5e_c00465{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.mbc_c00465{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.md4_c00465{transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00465{transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);}
.mde_c00465{transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);}
.mb4_c00465{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m25_c00465{transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);}
.m52_c00465{transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);}
.me5_c00465{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m6c_c00465{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m50_c00465{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.224060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224060,0.000000,0.000000,0.250000,0,0);}
.m6a_c00465{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.ma1_c00465{transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);}
.mcc_c00465{transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);}
.m33_c00465{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m2d_c00465{transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00465{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.me4_c00465{transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);}
.md3_c00465{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.m54_c00465{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.m91_c00465{transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);}
.ma0_c00465{transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);}
.md2_c00465{transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234010,0.000000,0.000000,0.250000,0,0);}
.m28_c00465{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.md0_c00465{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m93_c00465{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.md6_c00465{transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);}
.m56_c00465{transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);}
.m61_c00465{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.maa_c00465{transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);}
.m8b_c00465{transform:matrix(0.241910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241910,0.000000,0.000000,0.250000,0,0);}
.md1_c00465{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.mcf_c00465{transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00465{transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243330,0.000000,0.000000,0.250000,0,0);}
.m45_c00465{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m68_c00465{transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);}
.m16_c00465{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.mdd_c00465{transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);}
.m4e_c00465{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.mcd_c00465{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.mdc_c00465{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me0_c00465{transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);}
.m9f_c00465{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00465{transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);}
.mcb_c00465{transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);}
.m5d_c00465{transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);}
.ma9_c00465{transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);}
.m81_c00465{transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00465{transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);}
.m92_c00465{transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);}
.m29_c00465{transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);}
.m82_c00465{transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);}
.m75_c00465{transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);}
.m58_c00465{transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);}
.md8_c00465{transform:matrix(0.287375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287375,0.000000,0.000000,0.250000,0,0);}
.m83_c00465{transform:matrix(0.321200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321200,0.000000,0.000000,0.250000,0,0);}
.mac_c00465{transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);}
.mae_c00465{transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330685,0.000000,0.000000,0.250000,0,0);}
.mbd_c00465{transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.340350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340350,0.000000,0.000000,0.250000,0,0);}
.mc9_c00465{transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);}
.m3c_c00465{transform:matrix(0.373710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373710,0.000000,0.000000,0.250000,0,0);}
.mad_c00465{transform:matrix(0.378435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378435,0.000000,0.000000,0.250000,0,0);}
.mc8_c00465{transform:matrix(0.416315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416315,0.000000,0.000000,0.250000,0,0);}
.med_c00465{transform:matrix(0.679075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679075,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:transparent;}
.fsd_c00465{font-size:22.050000px;}
.fs8_c00465{font-size:23.100000px;}
.fsa_c00465{font-size:51.450000px;}
.fs7_c00465{font-size:55.650000px;}
.fsb_c00465{font-size:57.750000px;}
.fs5_c00465{font-size:59.850000px;}
.fs2_c00465{font-size:61.950000px;}
.fs1_c00465{font-size:63.000000px;}
.fsc_c00465{font-size:65.100000px;}
.fs6_c00465{font-size:66.150000px;}
.fs4_c00465{font-size:68.250000px;}
.fs0_c00465{font-size:69.300000px;}
.fs3_c00465{font-size:70.350000px;}
.fs9_c00465{font-size:71.400000px;}
.y0_c00465{bottom:0.000000px;}
.y2a_c00465{bottom:38.071500px;}
.y29_c00465{bottom:54.130500px;}
.y28_c00465{bottom:72.865500px;}
.y27_c00465{bottom:88.926000px;}
.y26_c00465{bottom:106.438500px;}
.y25_c00465{bottom:122.547000px;}
.y24_c00465{bottom:139.408500px;}
.y23_c00465{bottom:157.021500px;}
.y22_c00465{bottom:174.853500px;}
.y20_c00465{bottom:191.433000px;}
.y1f_c00465{bottom:209.104500px;}
.y21_c00465{bottom:213.840000px;}
.y1e_c00465{bottom:225.184500px;}
.y1d_c00465{bottom:242.824500px;}
.y1c_c00465{bottom:258.580500px;}
.y1b_c00465{bottom:276.331500px;}
.y1a_c00465{bottom:293.100000px;}
.y19_c00465{bottom:308.916000px;}
.y18_c00465{bottom:327.388500px;}
.y17_c00465{bottom:343.510500px;}
.y16_c00465{bottom:361.267500px;}
.y15_c00465{bottom:378.150000px;}
.y14_c00465{bottom:394.803000px;}
.y13_c00465{bottom:412.204500px;}
.y12_c00465{bottom:427.590000px;}
.y11_c00465{bottom:427.878000px;}
.y10_c00465{bottom:428.437500px;}
.yf_c00465{bottom:428.881500px;}
.ye_c00465{bottom:429.354000px;}
.yd_c00465{bottom:429.648000px;}
.yc_c00465{bottom:429.811500px;}
.yb_c00465{bottom:430.414500px;}
.ya_c00465{bottom:430.651500px;}
.y9_c00465{bottom:445.515000px;}
.y8_c00465{bottom:462.853500px;}
.y7_c00465{bottom:479.406000px;}
.y6_c00465{bottom:496.890000px;}
.y5_c00465{bottom:513.042000px;}
.y4_c00465{bottom:529.921500px;}
.y3_c00465{bottom:547.113000px;}
.y2_c00465{bottom:564.823500px;}
.y1_c00465{bottom:577.800000px;}
.hf_c00465{height:22.050000px;}
.ha_c00465{height:23.100000px;}
.hc_c00465{height:51.450000px;}
.h9_c00465{height:55.650000px;}
.hd_c00465{height:57.750000px;}
.h7_c00465{height:59.850000px;}
.h4_c00465{height:61.950000px;}
.h3_c00465{height:63.000000px;}
.he_c00465{height:65.100000px;}
.h8_c00465{height:66.150000px;}
.h6_c00465{height:68.250000px;}
.h2_c00465{height:69.300000px;}
.h5_c00465{height:70.350000px;}
.hb_c00465{height:71.400000px;}
.h0_c00465{height:617.700000px;}
.h1_c00465{height:618.000000px;}
.w0_c00465{width:359.100000px;}
.w1_c00465{width:359.250000px;}
.x0_c00465{left:0.000000px;}
.x68_c00465{left:32.670000px;}
.x6e_c00465{left:34.560000px;}
.x72_c00465{left:36.180000px;}
.x6a_c00465{left:37.260000px;}
.x62_c00465{left:39.153000px;}
.x46_c00465{left:40.233000px;}
.x7_c00465{left:41.310000px;}
.xe_c00465{left:42.390000px;}
.x2_c00465{left:53.190000px;}
.x64_c00465{left:58.860000px;}
.x8_c00465{left:62.370000px;}
.x4c_c00465{left:66.693000px;}
.x41_c00465{left:70.743000px;}
.x29_c00465{left:72.630000px;}
.x3b_c00465{left:75.063000px;}
.x1b_c00465{left:83.160000px;}
.x65_c00465{left:86.130000px;}
.x32_c00465{left:88.023000px;}
.x37_c00465{left:92.073000px;}
.x26_c00465{left:93.420000px;}
.x21_c00465{left:94.770000px;}
.x12_c00465{left:96.390000px;}
.x3_c00465{left:98.280000px;}
.x75_c00465{left:99.360000px;}
.x1c_c00465{left:104.220000px;}
.xf_c00465{left:106.110000px;}
.x22_c00465{left:108.540000px;}
.x9_c00465{left:110.700000px;}
.x5f_c00465{left:112.323000px;}
.x13_c00465{left:115.020000px;}
.x2d_c00465{left:118.123500px;}
.x6c_c00465{left:120.690000px;}
.x48_c00465{left:122.313000px;}
.x3c_c00465{left:123.933000px;}
.x4d_c00465{left:127.983000px;}
.x2a_c00465{left:129.600000px;}
.x2e_c00465{left:132.975000px;}
.x5c_c00465{left:141.213000px;}
.x14_c00465{left:142.290000px;}
.x77_c00465{left:143.640000px;}
.x38_c00465{left:145.803000px;}
.x10_c00465{left:147.420000px;}
.x63_c00465{left:148.773000px;}
.x33_c00465{left:150.663000px;}
.x78_c00465{left:154.170000px;}
.x2b_c00465{left:156.060000px;}
.x27_c00465{left:158.760000px;}
.x56_c00465{left:161.193000px;}
.x15_c00465{left:163.890000px;}
.x1d_c00465{left:165.240000px;}
.x1_c00465{left:172.800000px;}
.x28_c00465{left:174.420000px;}
.x51_c00465{left:177.123000px;}
.x59_c00465{left:178.203000px;}
.x1e_c00465{left:179.280000px;}
.x23_c00465{left:180.360000px;}
.x60_c00465{left:184.953000px;}
.xa_c00465{left:186.030000px;}
.x16_c00465{left:187.110000px;}
.x47_c00465{left:189.543000px;}
.x42_c00465{left:191.433000px;}
.x76_c00465{left:193.050000px;}
.x4_c00465{left:195.210000px;}
.x4e_c00465{left:196.293000px;}
.x3d_c00465{left:199.533000px;}
.x34_c00465{left:201.423000px;}
.x2f_c00465{left:202.642500px;}
.x57_c00465{left:204.393000px;}
.x6f_c00465{left:205.470000px;}
.x17_c00465{left:207.630000px;}
.x52_c00465{left:208.713000px;}
.x39_c00465{left:210.333000px;}
.x4f_c00465{left:211.413000px;}
.x79_c00465{left:214.380000px;}
.x3e_c00465{left:216.273000px;}
.x5d_c00465{left:218.163000px;}
.x53_c00465{left:220.593000px;}
.xb_c00465{left:223.560000px;}
.x69_c00465{left:226.260000px;}
.x3a_c00465{left:228.423000px;}
.x18_c00465{left:231.120000px;}
.x66_c00465{left:233.820000px;}
.x5a_c00465{left:236.523000px;}
.x49_c00465{left:238.143000px;}
.x30_c00465{left:243.007500px;}
.x54_c00465{left:244.083000px;}
.x11_c00465{left:245.970000px;}
.x70_c00465{left:248.130000px;}
.x73_c00465{left:249.480000px;}
.x7a_c00465{left:250.560000px;}
.x43_c00465{left:252.453000px;}
.x4a_c00465{left:255.153000px;}
.x24_c00465{left:258.120000px;}
.x35_c00465{left:261.093000px;}
.x1f_c00465{left:262.980000px;}
.x61_c00465{left:266.493000px;}
.x71_c00465{left:270.000000px;}
.x5_c00465{left:272.970000px;}
.x4b_c00465{left:274.863000px;}
.x50_c00465{left:276.213000px;}
.x36_c00465{left:278.373000px;}
.x5e_c00465{left:282.693000px;}
.x58_c00465{left:284.043000px;}
.xc_c00465{left:285.120000px;}
.x19_c00465{left:286.470000px;}
.x44_c00465{left:287.823000px;}
.x3f_c00465{left:291.063000px;}
.x74_c00465{left:292.410000px;}
.x20_c00465{left:293.490000px;}
.x6d_c00465{left:295.650000px;}
.x6_c00465{left:297.000000px;}
.x5b_c00465{left:298.083000px;}
.x2c_c00465{left:303.480000px;}
.x1a_c00465{left:306.180000px;}
.x55_c00465{left:307.263000px;}
.xd_c00465{left:309.690000px;}
.x40_c00465{left:312.933000px;}
.x45_c00465{left:315.093000px;}
.x31_c00465{left:320.076000px;}
.x67_c00465{left:323.730000px;}
.x6b_c00465{left:326.160000px;}
.x25_c00465{left:348.030000px;}
.x7b_c00465{left:353.970000px;}
.x7c_c00465{left:356.400000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fsd_c00465{font-size:19.600000pt;}
.fs8_c00465{font-size:20.533333pt;}
.fsa_c00465{font-size:45.733333pt;}
.fs7_c00465{font-size:49.466667pt;}
.fsb_c00465{font-size:51.333333pt;}
.fs5_c00465{font-size:53.200000pt;}
.fs2_c00465{font-size:55.066667pt;}
.fs1_c00465{font-size:56.000000pt;}
.fsc_c00465{font-size:57.866667pt;}
.fs6_c00465{font-size:58.800000pt;}
.fs4_c00465{font-size:60.666667pt;}
.fs0_c00465{font-size:61.600000pt;}
.fs3_c00465{font-size:62.533333pt;}
.fs9_c00465{font-size:63.466667pt;}
.y0_c00465{bottom:0.000000pt;}
.y2a_c00465{bottom:33.841333pt;}
.y29_c00465{bottom:48.116000pt;}
.y28_c00465{bottom:64.769333pt;}
.y27_c00465{bottom:79.045333pt;}
.y26_c00465{bottom:94.612000pt;}
.y25_c00465{bottom:108.930667pt;}
.y24_c00465{bottom:123.918667pt;}
.y23_c00465{bottom:139.574667pt;}
.y22_c00465{bottom:155.425333pt;}
.y20_c00465{bottom:170.162667pt;}
.y1f_c00465{bottom:185.870667pt;}
.y21_c00465{bottom:190.080000pt;}
.y1e_c00465{bottom:200.164000pt;}
.y1d_c00465{bottom:215.844000pt;}
.y1c_c00465{bottom:229.849333pt;}
.y1b_c00465{bottom:245.628000pt;}
.y1a_c00465{bottom:260.533333pt;}
.y19_c00465{bottom:274.592000pt;}
.y18_c00465{bottom:291.012000pt;}
.y17_c00465{bottom:305.342667pt;}
.y16_c00465{bottom:321.126667pt;}
.y15_c00465{bottom:336.133333pt;}
.y14_c00465{bottom:350.936000pt;}
.y13_c00465{bottom:366.404000pt;}
.y12_c00465{bottom:380.080000pt;}
.y11_c00465{bottom:380.336000pt;}
.y10_c00465{bottom:380.833333pt;}
.yf_c00465{bottom:381.228000pt;}
.ye_c00465{bottom:381.648000pt;}
.yd_c00465{bottom:381.909333pt;}
.yc_c00465{bottom:382.054667pt;}
.yb_c00465{bottom:382.590667pt;}
.ya_c00465{bottom:382.801333pt;}
.y9_c00465{bottom:396.013333pt;}
.y8_c00465{bottom:411.425333pt;}
.y7_c00465{bottom:426.138667pt;}
.y6_c00465{bottom:441.680000pt;}
.y5_c00465{bottom:456.037333pt;}
.y4_c00465{bottom:471.041333pt;}
.y3_c00465{bottom:486.322667pt;}
.y2_c00465{bottom:502.065333pt;}
.y1_c00465{bottom:513.600000pt;}
.hf_c00465{height:19.600000pt;}
.ha_c00465{height:20.533333pt;}
.hc_c00465{height:45.733333pt;}
.h9_c00465{height:49.466667pt;}
.hd_c00465{height:51.333333pt;}
.h7_c00465{height:53.200000pt;}
.h4_c00465{height:55.066667pt;}
.h3_c00465{height:56.000000pt;}
.he_c00465{height:57.866667pt;}
.h8_c00465{height:58.800000pt;}
.h6_c00465{height:60.666667pt;}
.h2_c00465{height:61.600000pt;}
.h5_c00465{height:62.533333pt;}
.hb_c00465{height:63.466667pt;}
.h0_c00465{height:549.066667pt;}
.h1_c00465{height:549.333333pt;}
.w0_c00465{width:319.200000pt;}
.w1_c00465{width:319.333333pt;}
.x0_c00465{left:0.000000pt;}
.x68_c00465{left:29.040000pt;}
.x6e_c00465{left:30.720000pt;}
.x72_c00465{left:32.160000pt;}
.x6a_c00465{left:33.120000pt;}
.x62_c00465{left:34.802667pt;}
.x46_c00465{left:35.762667pt;}
.x7_c00465{left:36.720000pt;}
.xe_c00465{left:37.680000pt;}
.x2_c00465{left:47.280000pt;}
.x64_c00465{left:52.320000pt;}
.x8_c00465{left:55.440000pt;}
.x4c_c00465{left:59.282667pt;}
.x41_c00465{left:62.882667pt;}
.x29_c00465{left:64.560000pt;}
.x3b_c00465{left:66.722667pt;}
.x1b_c00465{left:73.920000pt;}
.x65_c00465{left:76.560000pt;}
.x32_c00465{left:78.242667pt;}
.x37_c00465{left:81.842667pt;}
.x26_c00465{left:83.040000pt;}
.x21_c00465{left:84.240000pt;}
.x12_c00465{left:85.680000pt;}
.x3_c00465{left:87.360000pt;}
.x75_c00465{left:88.320000pt;}
.x1c_c00465{left:92.640000pt;}
.xf_c00465{left:94.320000pt;}
.x22_c00465{left:96.480000pt;}
.x9_c00465{left:98.400000pt;}
.x5f_c00465{left:99.842667pt;}
.x13_c00465{left:102.240000pt;}
.x2d_c00465{left:104.998667pt;}
.x6c_c00465{left:107.280000pt;}
.x48_c00465{left:108.722667pt;}
.x3c_c00465{left:110.162667pt;}
.x4d_c00465{left:113.762667pt;}
.x2a_c00465{left:115.200000pt;}
.x2e_c00465{left:118.200000pt;}
.x5c_c00465{left:125.522667pt;}
.x14_c00465{left:126.480000pt;}
.x77_c00465{left:127.680000pt;}
.x38_c00465{left:129.602667pt;}
.x10_c00465{left:131.040000pt;}
.x63_c00465{left:132.242667pt;}
.x33_c00465{left:133.922667pt;}
.x78_c00465{left:137.040000pt;}
.x2b_c00465{left:138.720000pt;}
.x27_c00465{left:141.120000pt;}
.x56_c00465{left:143.282667pt;}
.x15_c00465{left:145.680000pt;}
.x1d_c00465{left:146.880000pt;}
.x1_c00465{left:153.600000pt;}
.x28_c00465{left:155.040000pt;}
.x51_c00465{left:157.442667pt;}
.x59_c00465{left:158.402667pt;}
.x1e_c00465{left:159.360000pt;}
.x23_c00465{left:160.320000pt;}
.x60_c00465{left:164.402667pt;}
.xa_c00465{left:165.360000pt;}
.x16_c00465{left:166.320000pt;}
.x47_c00465{left:168.482667pt;}
.x42_c00465{left:170.162667pt;}
.x76_c00465{left:171.600000pt;}
.x4_c00465{left:173.520000pt;}
.x4e_c00465{left:174.482667pt;}
.x3d_c00465{left:177.362667pt;}
.x34_c00465{left:179.042667pt;}
.x2f_c00465{left:180.126667pt;}
.x57_c00465{left:181.682667pt;}
.x6f_c00465{left:182.640000pt;}
.x17_c00465{left:184.560000pt;}
.x52_c00465{left:185.522667pt;}
.x39_c00465{left:186.962667pt;}
.x4f_c00465{left:187.922667pt;}
.x79_c00465{left:190.560000pt;}
.x3e_c00465{left:192.242667pt;}
.x5d_c00465{left:193.922667pt;}
.x53_c00465{left:196.082667pt;}
.xb_c00465{left:198.720000pt;}
.x69_c00465{left:201.120000pt;}
.x3a_c00465{left:203.042667pt;}
.x18_c00465{left:205.440000pt;}
.x66_c00465{left:207.840000pt;}
.x5a_c00465{left:210.242667pt;}
.x49_c00465{left:211.682667pt;}
.x30_c00465{left:216.006667pt;}
.x54_c00465{left:216.962667pt;}
.x11_c00465{left:218.640000pt;}
.x70_c00465{left:220.560000pt;}
.x73_c00465{left:221.760000pt;}
.x7a_c00465{left:222.720000pt;}
.x43_c00465{left:224.402667pt;}
.x4a_c00465{left:226.802667pt;}
.x24_c00465{left:229.440000pt;}
.x35_c00465{left:232.082667pt;}
.x1f_c00465{left:233.760000pt;}
.x61_c00465{left:236.882667pt;}
.x71_c00465{left:240.000000pt;}
.x5_c00465{left:242.640000pt;}
.x4b_c00465{left:244.322667pt;}
.x50_c00465{left:245.522667pt;}
.x36_c00465{left:247.442667pt;}
.x5e_c00465{left:251.282667pt;}
.x58_c00465{left:252.482667pt;}
.xc_c00465{left:253.440000pt;}
.x19_c00465{left:254.640000pt;}
.x44_c00465{left:255.842667pt;}
.x3f_c00465{left:258.722667pt;}
.x74_c00465{left:259.920000pt;}
.x20_c00465{left:260.880000pt;}
.x6d_c00465{left:262.800000pt;}
.x6_c00465{left:264.000000pt;}
.x5b_c00465{left:264.962667pt;}
.x2c_c00465{left:269.760000pt;}
.x1a_c00465{left:272.160000pt;}
.x55_c00465{left:273.122667pt;}
.xd_c00465{left:275.280000pt;}
.x40_c00465{left:278.162667pt;}
.x45_c00465{left:280.082667pt;}
.x31_c00465{left:284.512000pt;}
.x67_c00465{left:287.760000pt;}
.x6b_c00465{left:289.920000pt;}
.x25_c00465{left:309.360000pt;}
.x7b_c00465{left:314.640000pt;}
.x7c_c00465{left:316.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00466{transform:matrix(0.022164,-0.000244,0.002750,0.249985,0,0);-ms-transform:matrix(0.022164,-0.000244,0.002750,0.249985,0,0);-webkit-transform:matrix(0.022164,-0.000244,0.002750,0.249985,0,0);}
.m0_c00466{transform:matrix(0.026070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026070,0.000000,0.000000,0.250000,0,0);}
.m91_c00466{transform:matrix(0.027973,-0.000308,0.002750,0.249985,0,0);-ms-transform:matrix(0.027973,-0.000308,0.002750,0.249985,0,0);-webkit-transform:matrix(0.027973,-0.000308,0.002750,0.249985,0,0);}
.m3_c00466{transform:matrix(0.120815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120815,0.000000,0.000000,0.250000,0,0);}
.mc1_c00466{transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);}
.me5_c00466{transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144910,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m87_c00466{transform:matrix(0.149876,-0.001649,0.002750,0.249985,0,0);-ms-transform:matrix(0.149876,-0.001649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149876,-0.001649,0.002750,0.249985,0,0);}
.m22_c00466{transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150565,0.000000,0.000000,0.250000,0,0);}
.m85_c00466{transform:matrix(0.151551,-0.001667,0.002750,0.249985,0,0);-ms-transform:matrix(0.151551,-0.001667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151551,-0.001667,0.002750,0.249985,0,0);}
.mc_c00466{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.mb3_c00466{transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155745,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m80_c00466{transform:matrix(0.157790,-0.001736,0.002750,0.249985,0,0);-ms-transform:matrix(0.157790,-0.001736,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157790,-0.001736,0.002750,0.249985,0,0);}
.m31_c00466{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m88_c00466{transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);-ms-transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161690,-0.001779,0.002750,0.249985,0,0);}
.ma9_c00466{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.m5f_c00466{transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);}
.m73_c00466{transform:matrix(0.163135,-0.001794,0.002750,0.249985,0,0);-ms-transform:matrix(0.163135,-0.001794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163135,-0.001794,0.002750,0.249985,0,0);}
.m93_c00466{transform:matrix(0.163180,-0.001795,0.002750,0.249985,0,0);-ms-transform:matrix(0.163180,-0.001795,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163180,-0.001795,0.002750,0.249985,0,0);}
.maf_c00466{transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163545,0.000000,0.000000,0.250000,0,0);}
.ma4_c00466{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m28_c00466{transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166655,0.000000,0.000000,0.250000,0,0);}
.m24_c00466{transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);}
.m21_c00466{transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168320,0.000000,0.000000,0.250000,0,0);}
.m36_c00466{transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169765,0.000000,0.000000,0.250000,0,0);}
.mba_c00466{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m5a_c00466{transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171540,0.000000,0.000000,0.250000,0,0);}
.m37_c00466{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.md6_c00466{transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);}
.m86_c00466{transform:matrix(0.173020,-0.001903,0.002750,0.249985,0,0);-ms-transform:matrix(0.173020,-0.001903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173020,-0.001903,0.002750,0.249985,0,0);}
.mc8_c00466{transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);}
.mb2_c00466{transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173235,0.000000,0.000000,0.250000,0,0);}
.m60_c00466{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m71_c00466{transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);-ms-transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173634,-0.001910,0.002750,0.249985,0,0);}
.m72_c00466{transform:matrix(0.174199,-0.001916,0.002750,0.249985,0,0);-ms-transform:matrix(0.174199,-0.001916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174199,-0.001916,0.002750,0.249985,0,0);}
.mc2_c00466{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.175530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175530,0.000000,0.000000,0.250000,0,0);}
.m9a_c00466{transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m4d_c00466{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m77_c00466{transform:matrix(0.176859,-0.001945,0.002750,0.249985,0,0);-ms-transform:matrix(0.176859,-0.001945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176859,-0.001945,0.002750,0.249985,0,0);}
.m89_c00466{transform:matrix(0.177214,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177214,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177214,-0.001949,0.002750,0.249985,0,0);}
.mf_c00466{transform:matrix(0.177320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177320,0.000000,0.000000,0.250000,0,0);}
.m6b_c00466{transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);-ms-transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);}
.m6e_c00466{transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177649,-0.001954,0.002750,0.249985,0,0);}
.m3e_c00466{transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177810,0.000000,0.000000,0.250000,0,0);}
.maa_c00466{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);}
.mb7_c00466{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.m7d_c00466{transform:matrix(0.178844,-0.001967,0.002750,0.249985,0,0);-ms-transform:matrix(0.178844,-0.001967,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178844,-0.001967,0.002750,0.249985,0,0);}
.m7e_c00466{transform:matrix(0.179154,-0.001971,0.002750,0.249985,0,0);-ms-transform:matrix(0.179154,-0.001971,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179154,-0.001971,0.002750,0.249985,0,0);}
.m9c_c00466{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00466{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m45_c00466{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m82_c00466{transform:matrix(0.182049,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182049,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182049,-0.002003,0.002750,0.249985,0,0);}
.m56_c00466{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m43_c00466{transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182355,0.000000,0.000000,0.250000,0,0);}
.ma1_c00466{transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182640,0.000000,0.000000,0.250000,0,0);}
.m7a_c00466{transform:matrix(0.182744,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182744,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182744,-0.002010,0.002750,0.249985,0,0);}
.mc0_c00466{transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);}
.me3_c00466{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.m38_c00466{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m39_c00466{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183465,0.000000,0.000000,0.250000,0,0);}
.m48_c00466{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.mb0_c00466{transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184130,0.000000,0.000000,0.250000,0,0);}
.mb1_c00466{transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184485,0.000000,0.000000,0.250000,0,0);}
.me6_c00466{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m97_c00466{transform:matrix(0.185079,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185079,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185079,-0.002036,0.002750,0.249985,0,0);}
.m32_c00466{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00466{transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186830,0.000000,0.000000,0.250000,0,0);}
.mda_c00466{transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187065,0.000000,0.000000,0.250000,0,0);}
.md7_c00466{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.mb5_c00466{transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187295,0.000000,0.000000,0.250000,0,0);}
.m90_c00466{transform:matrix(0.187339,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187339,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187339,-0.002061,0.002750,0.249985,0,0);}
.mc3_c00466{transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);}
.m76_c00466{transform:matrix(0.187639,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187639,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187639,-0.002064,0.002750,0.249985,0,0);}
.m17_c00466{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m4e_c00466{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m35_c00466{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00466{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.ma5_c00466{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m7f_c00466{transform:matrix(0.190203,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190203,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190203,-0.002092,0.002750,0.249985,0,0);}
.m41_c00466{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m68_c00466{transform:matrix(0.193033,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.193033,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193033,-0.002123,0.002750,0.249985,0,0);}
.md0_c00466{transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193265,0.000000,0.000000,0.250000,0,0);}
.m8c_c00466{transform:matrix(0.193413,-0.002128,0.002750,0.249985,0,0);-ms-transform:matrix(0.193413,-0.002128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193413,-0.002128,0.002750,0.249985,0,0);}
.md4_c00466{transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193445,0.000000,0.000000,0.250000,0,0);}
.m5c_c00466{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.me7_c00466{transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);}
.m83_c00466{transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194433,-0.002139,0.002750,0.249985,0,0);}
.m46_c00466{transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);}
.mb6_c00466{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m74_c00466{transform:matrix(0.195258,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195258,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195258,-0.002148,0.002750,0.249985,0,0);}
.mbf_c00466{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m52_c00466{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00466{transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00466{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.m23_c00466{transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196790,0.000000,0.000000,0.250000,0,0);}
.mce_c00466{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m81_c00466{transform:matrix(0.197078,-0.002168,0.002750,0.249985,0,0);-ms-transform:matrix(0.197078,-0.002168,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197078,-0.002168,0.002750,0.249985,0,0);}
.m27_c00466{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.mb8_c00466{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m92_c00466{transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197788,-0.002176,0.002750,0.249985,0,0);}
.m12_c00466{transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198190,0.000000,0.000000,0.250000,0,0);}
.m3f_c00466{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m8a_c00466{transform:matrix(0.198318,-0.002181,0.002750,0.249985,0,0);-ms-transform:matrix(0.198318,-0.002181,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198318,-0.002181,0.002750,0.249985,0,0);}
.m7b_c00466{transform:matrix(0.198358,-0.002182,0.002750,0.249985,0,0);-ms-transform:matrix(0.198358,-0.002182,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198358,-0.002182,0.002750,0.249985,0,0);}
.m6a_c00466{transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198798,-0.002187,0.002750,0.249985,0,0);}
.m59_c00466{transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198860,0.000000,0.000000,0.250000,0,0);}
.m84_c00466{transform:matrix(0.199108,-0.002190,0.002750,0.249985,0,0);-ms-transform:matrix(0.199108,-0.002190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199108,-0.002190,0.002750,0.249985,0,0);}
.mca_c00466{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mbd_c00466{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.mbb_c00466{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.me4_c00466{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.mae_c00466{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.m51_c00466{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.me2_c00466{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.md8_c00466{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m4f_c00466{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.ma2_c00466{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m69_c00466{transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);}
.mc5_c00466{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203160,0.000000,0.000000,0.250000,0,0);}
.mad_c00466{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00466{transform:matrix(0.203318,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203318,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203318,-0.002236,0.002750,0.249985,0,0);}
.m6c_c00466{transform:matrix(0.204438,-0.002249,0.002750,0.249985,0,0);-ms-transform:matrix(0.204438,-0.002249,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204438,-0.002249,0.002750,0.249985,0,0);}
.m49_c00466{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m42_c00466{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m96_c00466{transform:matrix(0.206028,-0.002266,0.002750,0.249985,0,0);-ms-transform:matrix(0.206028,-0.002266,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206028,-0.002266,0.002750,0.249985,0,0);}
.m44_c00466{transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206635,0.000000,0.000000,0.250000,0,0);}
.m78_c00466{transform:matrix(0.206952,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206952,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206952,-0.002276,0.002750,0.249985,0,0);}
.m6f_c00466{transform:matrix(0.207482,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207482,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207482,-0.002282,0.002750,0.249985,0,0);}
.m50_c00466{transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208190,0.000000,0.000000,0.250000,0,0);}
.m1c_c00466{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00466{transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208635,0.000000,0.000000,0.250000,0,0);}
.m57_c00466{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00466{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.m62_c00466{transform:matrix(0.209652,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209652,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209652,-0.002306,0.002750,0.249985,0,0);}
.m1f_c00466{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00466{transform:matrix(0.210157,-0.002312,0.002750,0.249985,0,0);-ms-transform:matrix(0.210157,-0.002312,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210157,-0.002312,0.002750,0.249985,0,0);}
.m14_c00466{transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.m65_c00466{transform:matrix(0.211907,-0.002331,0.002750,0.249985,0,0);-ms-transform:matrix(0.211907,-0.002331,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211907,-0.002331,0.002750,0.249985,0,0);}
.m5b_c00466{transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212070,0.000000,0.000000,0.250000,0,0);}
.m54_c00466{transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);}
.ma0_c00466{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.md3_c00466{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.m40_c00466{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m5e_c00466{transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);}
.ma3_c00466{transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);}
.m9b_c00466{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00466{transform:matrix(0.214882,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214882,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214882,-0.002364,0.002750,0.249985,0,0);}
.m26_c00466{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.mcf_c00466{transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00466{transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215360,0.000000,0.000000,0.250000,0,0);}
.m58_c00466{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.m55_c00466{transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);}
.m75_c00466{transform:matrix(0.217602,-0.002394,0.002750,0.249985,0,0);-ms-transform:matrix(0.217602,-0.002394,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217602,-0.002394,0.002750,0.249985,0,0);}
.m99_c00466{transform:matrix(0.217752,-0.002395,0.002750,0.249985,0,0);-ms-transform:matrix(0.217752,-0.002395,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217752,-0.002395,0.002750,0.249985,0,0);}
.m79_c00466{transform:matrix(0.218612,-0.002405,0.002750,0.249985,0,0);-ms-transform:matrix(0.218612,-0.002405,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218612,-0.002405,0.002750,0.249985,0,0);}
.m70_c00466{transform:matrix(0.219307,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219307,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219307,-0.002412,0.002750,0.249985,0,0);}
.mb_c00466{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00466{transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);}
.m2c_c00466{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00466{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m63_c00466{transform:matrix(0.221757,-0.002439,0.002750,0.249985,0,0);-ms-transform:matrix(0.221757,-0.002439,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221757,-0.002439,0.002750,0.249985,0,0);}
.md2_c00466{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223010,0.000000,0.000000,0.250000,0,0);}
.md9_c00466{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m9d_c00466{transform:matrix(0.224455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224455,0.000000,0.000000,0.250000,0,0);}
.m4b_c00466{transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);}
.m67_c00466{transform:matrix(0.225481,-0.002480,0.002750,0.249985,0,0);-ms-transform:matrix(0.225481,-0.002480,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225481,-0.002480,0.002750,0.249985,0,0);}
.m3c_c00466{transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);}
.m9f_c00466{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.m1b_c00466{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.mde_c00466{transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);}
.md1_c00466{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.me0_c00466{transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);}
.m9e_c00466{transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230310,0.000000,0.000000,0.250000,0,0);}
.mcd_c00466{transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00466{transform:matrix(0.230591,-0.002537,0.002750,0.249985,0,0);-ms-transform:matrix(0.230591,-0.002537,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230591,-0.002537,0.002750,0.249985,0,0);}
.mdf_c00466{transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);}
.m98_c00466{transform:matrix(0.233351,-0.002567,0.002750,0.249985,0,0);-ms-transform:matrix(0.233351,-0.002567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233351,-0.002567,0.002750,0.249985,0,0);}
.m34_c00466{transform:matrix(0.233435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233435,0.000000,0.000000,0.250000,0,0);}
.m20_c00466{transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);}
.md5_c00466{transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);}
.m47_c00466{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m25_c00466{transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);}
.m61_c00466{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.mdb_c00466{transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238340,0.000000,0.000000,0.250000,0,0);}
.m8b_c00466{transform:matrix(0.239086,-0.002630,0.002750,0.249985,0,0);-ms-transform:matrix(0.239086,-0.002630,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239086,-0.002630,0.002750,0.249985,0,0);}
.m53_c00466{transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);}
.m66_c00466{transform:matrix(0.242985,-0.002673,0.002750,0.249985,0,0);-ms-transform:matrix(0.242985,-0.002673,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242985,-0.002673,0.002750,0.249985,0,0);}
.me_c00466{transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);}
.mbc_c00466{transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);}
.mc4_c00466{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m33_c00466{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00466{transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);}
.mdc_c00466{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.ma6_c00466{transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00466{transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00466{transform:matrix(0.267840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267840,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);}
.mac_c00466{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00466{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.mcc_c00466{transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00466{transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);}
.m95_c00466{transform:matrix(0.284148,-0.003126,0.002750,0.249985,0,0);-ms-transform:matrix(0.284148,-0.003126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284148,-0.003126,0.002750,0.249985,0,0);}
.mc7_c00466{transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);}
.me1_c00466{transform:matrix(0.294065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294065,0.000000,0.000000,0.250000,0,0);}
.m64_c00466{transform:matrix(0.294377,-0.003238,0.002750,0.249985,0,0);-ms-transform:matrix(0.294377,-0.003238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294377,-0.003238,0.002750,0.249985,0,0);}
.m4a_c00466{transform:matrix(0.298785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298785,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);}
.m94_c00466{transform:matrix(0.311106,-0.003422,0.002750,0.249985,0,0);-ms-transform:matrix(0.311106,-0.003422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.311106,-0.003422,0.002750,0.249985,0,0);}
.m3a_c00466{transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);}
.mab_c00466{transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);}
.ma7_c00466{transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);}
.mcb_c00466{transform:matrix(0.362590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362590,0.000000,0.000000,0.250000,0,0);}
.m3b_c00466{transform:matrix(0.406230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406230,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.439690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439690,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{transform:matrix(0.457300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457300,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:0.000000px;}
.fc0_c00466{color:transparent;}
.fs12_c00466{font-size:51.450000px;}
.fse_c00466{font-size:54.603303px;}
.fs9_c00466{font-size:57.753494px;}
.fs8_c00466{font-size:58.800000px;}
.fs4_c00466{font-size:59.850000px;}
.fs5_c00466{font-size:60.900000px;}
.fsa_c00466{font-size:60.903684px;}
.fs7_c00466{font-size:61.950000px;}
.fsf_c00466{font-size:61.953748px;}
.fs0_c00466{font-size:63.000000px;}
.fs3_c00466{font-size:64.050000px;}
.fsb_c00466{font-size:64.053875px;}
.fs10_c00466{font-size:65.100000px;}
.fs1_c00466{font-size:66.150000px;}
.fsc_c00466{font-size:67.204065px;}
.fs11_c00466{font-size:68.250000px;}
.fs6_c00466{font-size:69.300000px;}
.fsd_c00466{font-size:69.304193px;}
.fs2_c00466{font-size:70.350000px;}
.y0_c00466{bottom:0.000000px;}
.y73_c00466{bottom:36.925500px;}
.y72_c00466{bottom:55.792500px;}
.y6c_c00466{bottom:69.660000px;}
.y6d_c00466{bottom:70.720500px;}
.y6e_c00466{bottom:70.965000px;}
.y6f_c00466{bottom:71.623500px;}
.y70_c00466{bottom:72.327000px;}
.y71_c00466{bottom:73.687500px;}
.y6b_c00466{bottom:88.392000px;}
.y64_c00466{bottom:102.331500px;}
.y65_c00466{bottom:102.984000px;}
.y66_c00466{bottom:103.260000px;}
.y67_c00466{bottom:104.733000px;}
.y68_c00466{bottom:105.082500px;}
.y69_c00466{bottom:105.783000px;}
.y6a_c00466{bottom:106.434000px;}
.y5e_c00466{bottom:120.151500px;}
.y5f_c00466{bottom:121.113000px;}
.y60_c00466{bottom:121.584000px;}
.y61_c00466{bottom:123.090000px;}
.y62_c00466{bottom:123.633000px;}
.y63_c00466{bottom:124.336500px;}
.y5d_c00466{bottom:138.738000px;}
.y5c_c00466{bottom:155.745000px;}
.y5b_c00466{bottom:172.936500px;}
.y51_c00466{bottom:189.271500px;}
.y52_c00466{bottom:189.763500px;}
.y53_c00466{bottom:189.898500px;}
.y54_c00466{bottom:190.239000px;}
.y55_c00466{bottom:190.459500px;}
.y56_c00466{bottom:190.660500px;}
.y57_c00466{bottom:191.130000px;}
.y58_c00466{bottom:191.343000px;}
.y59_c00466{bottom:191.968500px;}
.y5a_c00466{bottom:192.466500px;}
.y50_c00466{bottom:207.954000px;}
.y4f_c00466{bottom:225.094500px;}
.y48_c00466{bottom:239.751672px;}
.y49_c00466{bottom:239.935895px;}
.y4a_c00466{bottom:240.705438px;}
.y4b_c00466{bottom:240.977903px;}
.y4c_c00466{bottom:241.400237px;}
.y4d_c00466{bottom:241.590366px;}
.y4e_c00466{bottom:242.537796px;}
.y45_c00466{bottom:259.452710px;}
.y47_c00466{bottom:259.452818px;}
.y46_c00466{bottom:259.453404px;}
.y41_c00466{bottom:275.445864px;}
.y40_c00466{bottom:275.446137px;}
.y3f_c00466{bottom:275.446247px;}
.y43_c00466{bottom:275.446382px;}
.y42_c00466{bottom:275.446415px;}
.y44_c00466{bottom:275.447132px;}
.y3d_c00466{bottom:292.880504px;}
.y3e_c00466{bottom:292.880787px;}
.y39_c00466{bottom:292.880870px;}
.y3a_c00466{bottom:292.881019px;}
.y3c_c00466{bottom:292.881120px;}
.y38_c00466{bottom:292.881293px;}
.y36_c00466{bottom:292.881388px;}
.y3b_c00466{bottom:292.881573px;}
.y37_c00466{bottom:292.881819px;}
.y35_c00466{bottom:309.619337px;}
.y34_c00466{bottom:309.619563px;}
.y33_c00466{bottom:309.620243px;}
.y32_c00466{bottom:309.620276px;}
.y31_c00466{bottom:309.620368px;}
.y2e_c00466{bottom:309.620434px;}
.y2f_c00466{bottom:309.620538px;}
.y30_c00466{bottom:309.620655px;}
.y28_c00466{bottom:327.341430px;}
.y29_c00466{bottom:327.341530px;}
.y2c_c00466{bottom:327.341661px;}
.y2b_c00466{bottom:327.341678px;}
.y2a_c00466{bottom:327.341680px;}
.y27_c00466{bottom:327.341717px;}
.y26_c00466{bottom:327.342123px;}
.y25_c00466{bottom:327.342126px;}
.y2d_c00466{bottom:327.342168px;}
.y21_c00466{bottom:344.210117px;}
.y24_c00466{bottom:344.210124px;}
.y23_c00466{bottom:344.210217px;}
.y22_c00466{bottom:344.210533px;}
.y20_c00466{bottom:344.210750px;}
.y1f_c00466{bottom:344.210976px;}
.y1e_c00466{bottom:344.211549px;}
.y1d_c00466{bottom:344.211642px;}
.y16_c00466{bottom:358.831500px;}
.y17_c00466{bottom:359.007142px;}
.y18_c00466{bottom:359.912349px;}
.y19_c00466{bottom:360.103040px;}
.y1a_c00466{bottom:360.474339px;}
.y1b_c00466{bottom:361.029795px;}
.y1c_c00466{bottom:361.653594px;}
.yd_c00466{bottom:375.570000px;}
.ye_c00466{bottom:375.927000px;}
.yf_c00466{bottom:376.221000px;}
.y10_c00466{bottom:376.959000px;}
.y11_c00466{bottom:377.274000px;}
.y12_c00466{bottom:377.950500px;}
.y13_c00466{bottom:378.105000px;}
.y14_c00466{bottom:378.322500px;}
.y15_c00466{bottom:378.741000px;}
.yc_c00466{bottom:394.308000px;}
.yb_c00466{bottom:410.874000px;}
.ya_c00466{bottom:428.251500px;}
.y9_c00466{bottom:444.381000px;}
.y8_c00466{bottom:462.172500px;}
.y7_c00466{bottom:478.521000px;}
.y6_c00466{bottom:495.897000px;}
.y5_c00466{bottom:512.967000px;}
.y4_c00466{bottom:529.797000px;}
.y3_c00466{bottom:546.687000px;}
.y2_c00466{bottom:563.158500px;}
.y1_c00466{bottom:579.712500px;}
.h14_c00466{height:51.450000px;}
.h10_c00466{height:54.603303px;}
.hb_c00466{height:57.753494px;}
.ha_c00466{height:58.800000px;}
.h6_c00466{height:59.850000px;}
.h7_c00466{height:60.900000px;}
.hc_c00466{height:60.903684px;}
.h9_c00466{height:61.950000px;}
.h11_c00466{height:61.953748px;}
.h2_c00466{height:63.000000px;}
.h5_c00466{height:64.050000px;}
.hd_c00466{height:64.053875px;}
.h12_c00466{height:65.100000px;}
.h3_c00466{height:66.150000px;}
.he_c00466{height:67.204065px;}
.h13_c00466{height:68.250000px;}
.h8_c00466{height:69.300000px;}
.hf_c00466{height:69.304193px;}
.h4_c00466{height:70.350000px;}
.h0_c00466{height:617.700000px;}
.h1_c00466{height:618.000000px;}
.w0_c00466{width:359.100000px;}
.w1_c00466{width:359.250000px;}
.x0_c00466{left:0.000000px;}
.x3_c00466{left:11.070000px;}
.x20_c00466{left:12.150000px;}
.x63_c00466{left:13.230000px;}
.x44_c00466{left:16.027500px;}
.x5c_c00466{left:18.489517px;}
.x5e_c00466{left:20.790000px;}
.x37_c00466{left:27.810000px;}
.x1_c00466{left:31.860000px;}
.x5d_c00466{left:35.237017px;}
.x21_c00466{left:38.340000px;}
.x3c_c00466{left:40.500000px;}
.x14_c00466{left:45.360000px;}
.xa_c00466{left:47.250000px;}
.x19_c00466{left:49.410000px;}
.x22_c00466{left:51.300000px;}
.x32_c00466{left:52.380000px;}
.x29_c00466{left:54.270000px;}
.x5f_c00466{left:55.890000px;}
.x73_c00466{left:59.133000px;}
.x69_c00466{left:61.020000px;}
.x2e_c00466{left:62.370000px;}
.x4b_c00466{left:65.072775px;}
.x38_c00466{left:66.690000px;}
.x1a_c00466{left:68.310000px;}
.x4_c00466{left:69.930000px;}
.x40_c00466{left:71.157000px;}
.x15_c00466{left:72.360000px;}
.x6c_c00466{left:77.610000px;}
.x58_c00466{left:79.919358px;}
.x10_c00466{left:82.080000px;}
.x60_c00466{left:86.670000px;}
.x54_c00466{left:88.290602px;}
.x51_c00466{left:90.182726px;}
.x33_c00466{left:92.610000px;}
.x23_c00466{left:93.690000px;}
.x4c_c00466{left:95.584971px;}
.x67_c00466{left:98.550000px;}
.x5_c00466{left:101.790000px;}
.xb_c00466{left:105.840000px;}
.x6d_c00466{left:109.008000px;}
.x4d_c00466{left:111.515402px;}
.x16_c00466{left:113.400000px;}
.x61_c00466{left:115.020000px;}
.x2f_c00466{left:119.610000px;}
.x3d_c00466{left:122.310000px;}
.x6_c00466{left:125.010000px;}
.xc_c00466{left:129.600000px;}
.x45_c00466{left:131.622000px;}
.x68_c00466{left:133.920000px;}
.x41_c00466{left:138.313500px;}
.x48_c00466{left:140.407857px;}
.x24_c00466{left:141.750000px;}
.x2a_c00466{left:145.260000px;}
.x2_c00466{left:146.880000px;}
.x1b_c00466{left:149.310000px;}
.x39_c00466{left:150.660000px;}
.xd_c00466{left:152.010000px;}
.x71_c00466{left:153.276000px;}
.x74_c00466{left:158.493000px;}
.x11_c00466{left:162.810000px;}
.x46_c00466{left:165.376500px;}
.x1c_c00466{left:167.400000px;}
.x6a_c00466{left:170.370000px;}
.x25_c00466{left:171.990000px;}
.x75_c00466{left:173.613000px;}
.x4e_c00466{left:177.668904px;}
.x7_c00466{left:179.820000px;}
.x62_c00466{left:182.790000px;}
.x55_c00466{left:184.416234px;}
.x49_c00466{left:186.310417px;}
.x12_c00466{left:189.270000px;}
.x3e_c00466{left:191.160000px;}
.x64_c00466{left:192.780000px;}
.x5b_c00466{left:194.406108px;}
.x26_c00466{left:198.720000px;}
.x52_c00466{left:201.158657px;}
.x72_c00466{left:203.502000px;}
.x1d_c00466{left:206.280000px;}
.x6e_c00466{left:209.421000px;}
.x30_c00466{left:211.410000px;}
.x34_c00466{left:214.110000px;}
.x27_c00466{left:215.460000px;}
.x3a_c00466{left:217.350000px;}
.x2b_c00466{left:219.510000px;}
.x1e_c00466{left:221.400000px;}
.xe_c00466{left:223.020000px;}
.x59_c00466{left:225.186430px;}
.x35_c00466{left:227.340000px;}
.x17_c00466{left:228.960000px;}
.x4f_c00466{left:230.052240px;}
.x5a_c00466{left:231.937239px;}
.x4a_c00466{left:236.263456px;}
.x66_c00466{left:238.275000px;}
.x18_c00466{left:242.460000px;}
.x8_c00466{left:243.810000px;}
.x6f_c00466{left:245.629500px;}
.x13_c00466{left:248.400000px;}
.x2c_c00466{left:253.260000px;}
.x1f_c00466{left:258.120000px;}
.x56_c00466{left:261.101024px;}
.x42_c00466{left:262.308000px;}
.xf_c00466{left:263.520000px;}
.x36_c00466{left:265.680000px;}
.x70_c00466{left:269.923500px;}
.x47_c00466{left:272.581500px;}
.x53_c00466{left:274.333017px;}
.x3b_c00466{left:276.480000px;}
.x3f_c00466{left:280.260000px;}
.x76_c00466{left:282.153000px;}
.x31_c00466{left:283.770000px;}
.x57_c00466{left:285.402461px;}
.x9_c00466{left:287.280000px;}
.x65_c00466{left:289.440000px;}
.x28_c00466{left:290.520000px;}
.x50_c00466{left:292.695313px;}
.x2d_c00466{left:294.300000px;}
.x43_c00466{left:300.376500px;}
.x6b_c00466{left:302.940000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs12_c00466{font-size:45.733333pt;}
.fse_c00466{font-size:48.536270pt;}
.fs9_c00466{font-size:51.336439pt;}
.fs8_c00466{font-size:52.266667pt;}
.fs4_c00466{font-size:53.200000pt;}
.fs5_c00466{font-size:54.133333pt;}
.fsa_c00466{font-size:54.136608pt;}
.fs7_c00466{font-size:55.066667pt;}
.fsf_c00466{font-size:55.069998pt;}
.fs0_c00466{font-size:56.000000pt;}
.fs3_c00466{font-size:56.933333pt;}
.fsb_c00466{font-size:56.936778pt;}
.fs10_c00466{font-size:57.866667pt;}
.fs1_c00466{font-size:58.800000pt;}
.fsc_c00466{font-size:59.736947pt;}
.fs11_c00466{font-size:60.666667pt;}
.fs6_c00466{font-size:61.600000pt;}
.fsd_c00466{font-size:61.603727pt;}
.fs2_c00466{font-size:62.533333pt;}
.y0_c00466{bottom:0.000000pt;}
.y73_c00466{bottom:32.822667pt;}
.y72_c00466{bottom:49.593333pt;}
.y6c_c00466{bottom:61.920000pt;}
.y6d_c00466{bottom:62.862667pt;}
.y6e_c00466{bottom:63.080000pt;}
.y6f_c00466{bottom:63.665333pt;}
.y70_c00466{bottom:64.290667pt;}
.y71_c00466{bottom:65.500000pt;}
.y6b_c00466{bottom:78.570667pt;}
.y64_c00466{bottom:90.961333pt;}
.y65_c00466{bottom:91.541333pt;}
.y66_c00466{bottom:91.786667pt;}
.y67_c00466{bottom:93.096000pt;}
.y68_c00466{bottom:93.406667pt;}
.y69_c00466{bottom:94.029333pt;}
.y6a_c00466{bottom:94.608000pt;}
.y5e_c00466{bottom:106.801333pt;}
.y5f_c00466{bottom:107.656000pt;}
.y60_c00466{bottom:108.074667pt;}
.y61_c00466{bottom:109.413333pt;}
.y62_c00466{bottom:109.896000pt;}
.y63_c00466{bottom:110.521333pt;}
.y5d_c00466{bottom:123.322667pt;}
.y5c_c00466{bottom:138.440000pt;}
.y5b_c00466{bottom:153.721333pt;}
.y51_c00466{bottom:168.241333pt;}
.y52_c00466{bottom:168.678667pt;}
.y53_c00466{bottom:168.798667pt;}
.y54_c00466{bottom:169.101333pt;}
.y55_c00466{bottom:169.297333pt;}
.y56_c00466{bottom:169.476000pt;}
.y57_c00466{bottom:169.893333pt;}
.y58_c00466{bottom:170.082667pt;}
.y59_c00466{bottom:170.638667pt;}
.y5a_c00466{bottom:171.081333pt;}
.y50_c00466{bottom:184.848000pt;}
.y4f_c00466{bottom:200.084000pt;}
.y48_c00466{bottom:213.112597pt;}
.y49_c00466{bottom:213.276351pt;}
.y4a_c00466{bottom:213.960389pt;}
.y4b_c00466{bottom:214.202580pt;}
.y4c_c00466{bottom:214.577988pt;}
.y4d_c00466{bottom:214.746992pt;}
.y4e_c00466{bottom:215.589152pt;}
.y45_c00466{bottom:230.624631pt;}
.y47_c00466{bottom:230.624727pt;}
.y46_c00466{bottom:230.625248pt;}
.y41_c00466{bottom:244.840768pt;}
.y40_c00466{bottom:244.841011pt;}
.y3f_c00466{bottom:244.841108pt;}
.y43_c00466{bottom:244.841228pt;}
.y42_c00466{bottom:244.841257pt;}
.y44_c00466{bottom:244.841895pt;}
.y3d_c00466{bottom:260.338225pt;}
.y3e_c00466{bottom:260.338477pt;}
.y39_c00466{bottom:260.338551pt;}
.y3a_c00466{bottom:260.338684pt;}
.y3c_c00466{bottom:260.338773pt;}
.y38_c00466{bottom:260.338927pt;}
.y36_c00466{bottom:260.339012pt;}
.y3b_c00466{bottom:260.339176pt;}
.y37_c00466{bottom:260.339395pt;}
.y35_c00466{bottom:275.217188pt;}
.y34_c00466{bottom:275.217389pt;}
.y33_c00466{bottom:275.217993pt;}
.y32_c00466{bottom:275.218023pt;}
.y31_c00466{bottom:275.218105pt;}
.y2e_c00466{bottom:275.218164pt;}
.y2f_c00466{bottom:275.218256pt;}
.y30_c00466{bottom:275.218360pt;}
.y28_c00466{bottom:290.970160pt;}
.y29_c00466{bottom:290.970249pt;}
.y2c_c00466{bottom:290.970365pt;}
.y2b_c00466{bottom:290.970380pt;}
.y2a_c00466{bottom:290.970383pt;}
.y27_c00466{bottom:290.970415pt;}
.y26_c00466{bottom:290.970776pt;}
.y25_c00466{bottom:290.970779pt;}
.y2d_c00466{bottom:290.970816pt;}
.y21_c00466{bottom:305.964548pt;}
.y24_c00466{bottom:305.964555pt;}
.y23_c00466{bottom:305.964637pt;}
.y22_c00466{bottom:305.964919pt;}
.y20_c00466{bottom:305.965111pt;}
.y1f_c00466{bottom:305.965312pt;}
.y1e_c00466{bottom:305.965821pt;}
.y1d_c00466{bottom:305.965904pt;}
.y16_c00466{bottom:318.961333pt;}
.y17_c00466{bottom:319.117460pt;}
.y18_c00466{bottom:319.922088pt;}
.y19_c00466{bottom:320.091591pt;}
.y1a_c00466{bottom:320.421635pt;}
.y1b_c00466{bottom:320.915373pt;}
.y1c_c00466{bottom:321.469861pt;}
.yd_c00466{bottom:333.840000pt;}
.ye_c00466{bottom:334.157333pt;}
.yf_c00466{bottom:334.418667pt;}
.y10_c00466{bottom:335.074667pt;}
.y11_c00466{bottom:335.354667pt;}
.y12_c00466{bottom:335.956000pt;}
.y13_c00466{bottom:336.093333pt;}
.y14_c00466{bottom:336.286667pt;}
.y15_c00466{bottom:336.658667pt;}
.yc_c00466{bottom:350.496000pt;}
.yb_c00466{bottom:365.221333pt;}
.ya_c00466{bottom:380.668000pt;}
.y9_c00466{bottom:395.005333pt;}
.y8_c00466{bottom:410.820000pt;}
.y7_c00466{bottom:425.352000pt;}
.y6_c00466{bottom:440.797333pt;}
.y5_c00466{bottom:455.970667pt;}
.y4_c00466{bottom:470.930667pt;}
.y3_c00466{bottom:485.944000pt;}
.y2_c00466{bottom:500.585333pt;}
.y1_c00466{bottom:515.300000pt;}
.h14_c00466{height:45.733333pt;}
.h10_c00466{height:48.536270pt;}
.hb_c00466{height:51.336439pt;}
.ha_c00466{height:52.266667pt;}
.h6_c00466{height:53.200000pt;}
.h7_c00466{height:54.133333pt;}
.hc_c00466{height:54.136608pt;}
.h9_c00466{height:55.066667pt;}
.h11_c00466{height:55.069998pt;}
.h2_c00466{height:56.000000pt;}
.h5_c00466{height:56.933333pt;}
.hd_c00466{height:56.936778pt;}
.h12_c00466{height:57.866667pt;}
.h3_c00466{height:58.800000pt;}
.he_c00466{height:59.736947pt;}
.h13_c00466{height:60.666667pt;}
.h8_c00466{height:61.600000pt;}
.hf_c00466{height:61.603727pt;}
.h4_c00466{height:62.533333pt;}
.h0_c00466{height:549.066667pt;}
.h1_c00466{height:549.333333pt;}
.w0_c00466{width:319.200000pt;}
.w1_c00466{width:319.333333pt;}
.x0_c00466{left:0.000000pt;}
.x3_c00466{left:9.840000pt;}
.x20_c00466{left:10.800000pt;}
.x63_c00466{left:11.760000pt;}
.x44_c00466{left:14.246667pt;}
.x5c_c00466{left:16.435127pt;}
.x5e_c00466{left:18.480000pt;}
.x37_c00466{left:24.720000pt;}
.x1_c00466{left:28.320000pt;}
.x5d_c00466{left:31.321793pt;}
.x21_c00466{left:34.080000pt;}
.x3c_c00466{left:36.000000pt;}
.x14_c00466{left:40.320000pt;}
.xa_c00466{left:42.000000pt;}
.x19_c00466{left:43.920000pt;}
.x22_c00466{left:45.600000pt;}
.x32_c00466{left:46.560000pt;}
.x29_c00466{left:48.240000pt;}
.x5f_c00466{left:49.680000pt;}
.x73_c00466{left:52.562667pt;}
.x69_c00466{left:54.240000pt;}
.x2e_c00466{left:55.440000pt;}
.x4b_c00466{left:57.842467pt;}
.x38_c00466{left:59.280000pt;}
.x1a_c00466{left:60.720000pt;}
.x4_c00466{left:62.160000pt;}
.x40_c00466{left:63.250667pt;}
.x15_c00466{left:64.320000pt;}
.x6c_c00466{left:68.986667pt;}
.x58_c00466{left:71.039429pt;}
.x10_c00466{left:72.960000pt;}
.x60_c00466{left:77.040000pt;}
.x54_c00466{left:78.480535pt;}
.x51_c00466{left:80.162423pt;}
.x33_c00466{left:82.320000pt;}
.x23_c00466{left:83.280000pt;}
.x4c_c00466{left:84.964419pt;}
.x67_c00466{left:87.600000pt;}
.x5_c00466{left:90.480000pt;}
.xb_c00466{left:94.080000pt;}
.x6d_c00466{left:96.896000pt;}
.x4d_c00466{left:99.124801pt;}
.x16_c00466{left:100.800000pt;}
.x61_c00466{left:102.240000pt;}
.x2f_c00466{left:106.320000pt;}
.x3d_c00466{left:108.720000pt;}
.x6_c00466{left:111.120000pt;}
.xc_c00466{left:115.200000pt;}
.x45_c00466{left:116.997333pt;}
.x68_c00466{left:119.040000pt;}
.x41_c00466{left:122.945333pt;}
.x48_c00466{left:124.806984pt;}
.x24_c00466{left:126.000000pt;}
.x2a_c00466{left:129.120000pt;}
.x2_c00466{left:130.560000pt;}
.x1b_c00466{left:132.720000pt;}
.x39_c00466{left:133.920000pt;}
.xd_c00466{left:135.120000pt;}
.x71_c00466{left:136.245333pt;}
.x74_c00466{left:140.882667pt;}
.x11_c00466{left:144.720000pt;}
.x46_c00466{left:147.001333pt;}
.x1c_c00466{left:148.800000pt;}
.x6a_c00466{left:151.440000pt;}
.x25_c00466{left:152.880000pt;}
.x75_c00466{left:154.322667pt;}
.x4e_c00466{left:157.927915pt;}
.x7_c00466{left:159.840000pt;}
.x62_c00466{left:162.480000pt;}
.x55_c00466{left:163.925541pt;}
.x49_c00466{left:165.609260pt;}
.x12_c00466{left:168.240000pt;}
.x3e_c00466{left:169.920000pt;}
.x64_c00466{left:171.360000pt;}
.x5b_c00466{left:172.805429pt;}
.x26_c00466{left:176.640000pt;}
.x52_c00466{left:178.807695pt;}
.x72_c00466{left:180.890667pt;}
.x1d_c00466{left:183.360000pt;}
.x6e_c00466{left:186.152000pt;}
.x30_c00466{left:187.920000pt;}
.x34_c00466{left:190.320000pt;}
.x27_c00466{left:191.520000pt;}
.x3a_c00466{left:193.200000pt;}
.x2b_c00466{left:195.120000pt;}
.x1e_c00466{left:196.800000pt;}
.xe_c00466{left:198.240000pt;}
.x59_c00466{left:200.165716pt;}
.x35_c00466{left:202.080000pt;}
.x17_c00466{left:203.520000pt;}
.x4f_c00466{left:204.490880pt;}
.x5a_c00466{left:206.166435pt;}
.x4a_c00466{left:210.011961pt;}
.x66_c00466{left:211.800000pt;}
.x18_c00466{left:215.520000pt;}
.x8_c00466{left:216.720000pt;}
.x6f_c00466{left:218.337333pt;}
.x13_c00466{left:220.800000pt;}
.x2c_c00466{left:225.120000pt;}
.x1f_c00466{left:229.440000pt;}
.x56_c00466{left:232.089799pt;}
.x42_c00466{left:233.162667pt;}
.xf_c00466{left:234.240000pt;}
.x36_c00466{left:236.160000pt;}
.x70_c00466{left:239.932000pt;}
.x47_c00466{left:242.294667pt;}
.x53_c00466{left:243.851571pt;}
.x3b_c00466{left:245.760000pt;}
.x3f_c00466{left:249.120000pt;}
.x76_c00466{left:250.802667pt;}
.x31_c00466{left:252.240000pt;}
.x57_c00466{left:253.691076pt;}
.x9_c00466{left:255.360000pt;}
.x65_c00466{left:257.280000pt;}
.x28_c00466{left:258.240000pt;}
.x50_c00466{left:260.173612pt;}
.x2d_c00466{left:261.600000pt;}
.x43_c00466{left:267.001333pt;}
.x6b_c00466{left:269.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a_c00467{transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022165,0.000000,0.000000,0.250000,0,0);}
.mdd_c00467{transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.102220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102220,0.000000,0.000000,0.250000,0,0);}
.mba_c00467{transform:matrix(0.124845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124845,0.000000,0.000000,0.250000,0,0);}
.m43_c00467{transform:matrix(0.124960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124960,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.135240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135240,0.000000,0.000000,0.250000,0,0);}
.m66_c00467{transform:matrix(0.137145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137145,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.137660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137660,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.139415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139415,0.000000,0.000000,0.250000,0,0);}
.m67_c00467{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m7b_c00467{transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);}
.me9_c00467{transform:matrix(0.147535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147535,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153735,0.000000,0.000000,0.250000,0,0);}
.m3e_c00467{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.md4_c00467{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.mb7_c00467{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m1e_c00467{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157095,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.mb9_c00467{transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);}
.ma2_c00467{transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00467{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m91_c00467{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.md5_c00467{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m7e_c00467{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.mb4_c00467{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.mb8_c00467{transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161970,0.000000,0.000000,0.250000,0,0);}
.m99_c00467{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.md8_c00467{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.m81_c00467{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00467{transform:matrix(0.163495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163495,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164185,0.000000,0.000000,0.250000,0,0);}
.m90_c00467{transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164610,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.m55_c00467{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m9d_c00467{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m9c_c00467{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.md6_c00467{transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);}
.m3f_c00467{transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m85_c00467{transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168060,0.000000,0.000000,0.250000,0,0);}
.m50_c00467{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m89_c00467{transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168505,0.000000,0.000000,0.250000,0,0);}
.mb6_c00467{transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168920,0.000000,0.000000,0.250000,0,0);}
.mae_c00467{transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);}
.ma3_c00467{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.mbd_c00467{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m6f_c00467{transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169610,0.000000,0.000000,0.250000,0,0);}
.mb2_c00467{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m86_c00467{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.m88_c00467{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00467{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.m37_c00467{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m59_c00467{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m97_c00467{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.m38_c00467{transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);}
.m8c_c00467{transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);}
.mad_c00467{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.m96_c00467{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m83_c00467{transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172990,0.000000,0.000000,0.250000,0,0);}
.mc1_c00467{transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173135,0.000000,0.000000,0.250000,0,0);}
.m65_c00467{transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173245,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m46_c00467{transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);}
.md3_c00467{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.me6_c00467{transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174330,0.000000,0.000000,0.250000,0,0);}
.m76_c00467{transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);}
.md0_c00467{transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);}
.m93_c00467{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.mbf_c00467{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.mce_c00467{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.mbc_c00467{transform:matrix(0.175670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175670,0.000000,0.000000,0.250000,0,0);}
.m36_c00467{transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175805,0.000000,0.000000,0.250000,0,0);}
.m63_c00467{transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175895,0.000000,0.000000,0.250000,0,0);}
.m7f_c00467{transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176160,0.000000,0.000000,0.250000,0,0);}
.mcc_c00467{transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.m95_c00467{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);}
.me7_c00467{transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178870,0.000000,0.000000,0.250000,0,0);}
.ma4_c00467{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m44_c00467{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m9b_c00467{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.mcb_c00467{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.m53_c00467{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.md1_c00467{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m71_c00467{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m40_c00467{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m82_c00467{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.ma1_c00467{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.ma0_c00467{transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);}
.m4b_c00467{transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183420,0.000000,0.000000,0.250000,0,0);}
.m27_c00467{transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183595,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00467{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00467{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.mb0_c00467{transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184870,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m78_c00467{transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185980,0.000000,0.000000,0.250000,0,0);}
.m4d_c00467{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.me2_c00467{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.mc4_c00467{transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187955,0.000000,0.000000,0.250000,0,0);}
.maf_c00467{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.me4_c00467{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m9e_c00467{transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);}
.m20_c00467{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m6e_c00467{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m1d_c00467{transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190770,0.000000,0.000000,0.250000,0,0);}
.m77_c00467{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00467{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m45_c00467{transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191335,0.000000,0.000000,0.250000,0,0);}
.m7a_c00467{transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);}
.m9a_c00467{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m4a_c00467{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.m4c_c00467{transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);}
.mdf_c00467{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m2c_c00467{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m94_c00467{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.m4e_c00467{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.mb1_c00467{transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194555,0.000000,0.000000,0.250000,0,0);}
.m8f_c00467{transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194720,0.000000,0.000000,0.250000,0,0);}
.m60_c00467{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.m57_c00467{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m98_c00467{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.m39_c00467{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m6a_c00467{transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);}
.m2f_c00467{transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195940,0.000000,0.000000,0.250000,0,0);}
.m56_c00467{transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195960,0.000000,0.000000,0.250000,0,0);}
.m30_c00467{transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);}
.m75_c00467{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mc6_c00467{transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);}
.m35_c00467{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.mdb_c00467{transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196830,0.000000,0.000000,0.250000,0,0);}
.m32_c00467{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m49_c00467{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m41_c00467{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.mca_c00467{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.mb3_c00467{transform:matrix(0.199010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199010,0.000000,0.000000,0.250000,0,0);}
.mab_c00467{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.m54_c00467{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.mb5_c00467{transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);}
.m48_c00467{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m5b_c00467{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.m6d_c00467{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.me0_c00467{transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.mbe_c00467{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00467{transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201980,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m42_c00467{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m9f_c00467{transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202280,0.000000,0.000000,0.250000,0,0);}
.m64_c00467{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.me_c00467{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m61_c00467{transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);}
.mc3_c00467{transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.me5_c00467{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.maa_c00467{transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203495,0.000000,0.000000,0.250000,0,0);}
.mc5_c00467{transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203545,0.000000,0.000000,0.250000,0,0);}
.m6c_c00467{transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203790,0.000000,0.000000,0.250000,0,0);}
.m87_c00467{transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204720,0.000000,0.000000,0.250000,0,0);}
.m5d_c00467{transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);}
.m80_c00467{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.m79_c00467{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.md_c00467{transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206520,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207680,0.000000,0.000000,0.250000,0,0);}
.md9_c00467{transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);}
.m74_c00467{transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);}
.md7_c00467{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m6b_c00467{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m84_c00467{transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209790,0.000000,0.000000,0.250000,0,0);}
.m34_c00467{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.me8_c00467{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m92_c00467{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.mcf_c00467{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.mc0_c00467{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00467{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00467{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m47_c00467{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00467{transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213330,0.000000,0.000000,0.250000,0,0);}
.m21_c00467{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m33_c00467{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.mde_c00467{transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);}
.m8d_c00467{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m7c_c00467{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.ma9_c00467{transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);}
.m5a_c00467{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m72_c00467{transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219580,0.000000,0.000000,0.250000,0,0);}
.mcd_c00467{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00467{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00467{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m73_c00467{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.mac_c00467{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.md2_c00467{transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222465,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.ma5_c00467{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);}
.mc7_c00467{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.mc2_c00467{transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224695,0.000000,0.000000,0.250000,0,0);}
.ma6_c00467{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.m70_c00467{transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);}
.m69_c00467{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.m52_c00467{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m62_c00467{transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);}
.mda_c00467{transform:matrix(0.236935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236935,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238680,0.000000,0.000000,0.250000,0,0);}
.m3d_c00467{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.me1_c00467{transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);}
.m3c_c00467{transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240930,0.000000,0.000000,0.250000,0,0);}
.m5f_c00467{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m58_c00467{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00467{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.m51_c00467{transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);}
.m31_c00467{transform:matrix(0.257945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257945,0.000000,0.000000,0.250000,0,0);}
.m8e_c00467{transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);}
.me3_c00467{transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);}
.m68_c00467{transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);}
.mea_c00467{transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);}
.m29_c00467{transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);}
.mc8_c00467{transform:matrix(0.510550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510550,0.000000,0.000000,0.250000,0,0);}
.mdc_c00467{transform:matrix(1.127320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127320,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:0.000000px;}
.fc0_c00467{color:transparent;}
.fs10_c00467{font-size:16.800000px;}
.fsa_c00467{font-size:57.750000px;}
.fsf_c00467{font-size:59.850000px;}
.fs3_c00467{font-size:60.900000px;}
.fsc_c00467{font-size:61.950000px;}
.fs8_c00467{font-size:63.000000px;}
.fs9_c00467{font-size:64.050000px;}
.fsd_c00467{font-size:65.100000px;}
.fs4_c00467{font-size:66.150000px;}
.fs5_c00467{font-size:67.200000px;}
.fs7_c00467{font-size:68.250000px;}
.fs2_c00467{font-size:69.300000px;}
.fsb_c00467{font-size:70.350000px;}
.fs6_c00467{font-size:71.400000px;}
.fse_c00467{font-size:72.450000px;}
.fs1_c00467{font-size:76.650000px;}
.fs0_c00467{font-size:122.850000px;}
.y0_c00467{bottom:0.000000px;}
.y26_c00467{bottom:36.556500px;}
.y20_c00467{bottom:52.378500px;}
.y21_c00467{bottom:53.667000px;}
.y22_c00467{bottom:54.240000px;}
.y23_c00467{bottom:54.973500px;}
.y24_c00467{bottom:55.833000px;}
.y25_c00467{bottom:56.326500px;}
.y1f_c00467{bottom:69.996000px;}
.y1e_c00467{bottom:86.866500px;}
.y1d_c00467{bottom:103.998000px;}
.y1c_c00467{bottom:121.155000px;}
.y1b_c00467{bottom:137.476500px;}
.y1a_c00467{bottom:154.722000px;}
.y19_c00467{bottom:172.035000px;}
.y18_c00467{bottom:189.559500px;}
.y17_c00467{bottom:207.109500px;}
.y16_c00467{bottom:223.101000px;}
.y15_c00467{bottom:240.565500px;}
.y14_c00467{bottom:257.625000px;}
.y13_c00467{bottom:274.243500px;}
.y12_c00467{bottom:290.959500px;}
.y11_c00467{bottom:308.071500px;}
.y10_c00467{bottom:324.807000px;}
.y27_c00467{bottom:328.320000px;}
.yf_c00467{bottom:342.286500px;}
.ye_c00467{bottom:359.151000px;}
.yd_c00467{bottom:376.041000px;}
.yc_c00467{bottom:392.848500px;}
.yb_c00467{bottom:409.815000px;}
.ya_c00467{bottom:426.990000px;}
.y9_c00467{bottom:444.637500px;}
.y8_c00467{bottom:462.126000px;}
.y7_c00467{bottom:478.207500px;}
.y6_c00467{bottom:495.654000px;}
.y5_c00467{bottom:512.682000px;}
.y4_c00467{bottom:530.280000px;}
.y3_c00467{bottom:545.577000px;}
.y2_c00467{bottom:563.160000px;}
.y1_c00467{bottom:576.720000px;}
.h12_c00467{height:16.800000px;}
.hc_c00467{height:57.750000px;}
.h11_c00467{height:59.850000px;}
.h5_c00467{height:60.900000px;}
.he_c00467{height:61.950000px;}
.ha_c00467{height:63.000000px;}
.hb_c00467{height:64.050000px;}
.hf_c00467{height:65.100000px;}
.h6_c00467{height:66.150000px;}
.h7_c00467{height:67.200000px;}
.h9_c00467{height:68.250000px;}
.h4_c00467{height:69.300000px;}
.hd_c00467{height:70.350000px;}
.h8_c00467{height:71.400000px;}
.h10_c00467{height:72.450000px;}
.h3_c00467{height:76.650000px;}
.h2_c00467{height:122.850000px;}
.h0_c00467{height:617.700000px;}
.h1_c00467{height:618.000000px;}
.w0_c00467{width:359.100000px;}
.w1_c00467{width:359.250000px;}
.x0_c00467{left:0.000000px;}
.x70_c00467{left:44.280000px;}
.x33_c00467{left:45.630000px;}
.x2_c00467{left:46.710000px;}
.x6a_c00467{left:54.270000px;}
.x24_c00467{left:59.130000px;}
.x67_c00467{left:63.990000px;}
.x34_c00467{left:67.230000px;}
.x57_c00467{left:68.580000px;}
.x25_c00467{left:71.550000px;}
.x46_c00467{left:73.710000px;}
.x2d_c00467{left:75.060000px;}
.x9_c00467{left:79.920000px;}
.x6e_c00467{left:81.000000px;}
.x35_c00467{left:82.620000px;}
.x5e_c00467{left:88.560000px;}
.x74_c00467{left:90.180000px;}
.x19_c00467{left:91.260000px;}
.x26_c00467{left:93.150000px;}
.x40_c00467{left:96.930000px;}
.xe_c00467{left:99.090000px;}
.x58_c00467{left:101.250000px;}
.x21_c00467{left:102.870000px;}
.x3_c00467{left:106.110000px;}
.x5f_c00467{left:108.270000px;}
.x50_c00467{left:109.350000px;}
.x62_c00467{left:110.970000px;}
.x22_c00467{left:115.560000px;}
.x68_c00467{left:117.180000px;}
.x4b_c00467{left:120.690000px;}
.xf_c00467{left:122.310000px;}
.x2e_c00467{left:124.200000px;}
.x1a_c00467{left:126.630000px;}
.x6b_c00467{left:127.710000px;}
.x4_c00467{left:129.600000px;}
.x27_c00467{left:132.030000px;}
.x3c_c00467{left:134.730000px;}
.x47_c00467{left:138.510000px;}
.x36_c00467{left:140.670000px;}
.xa_c00467{left:142.830000px;}
.x28_c00467{left:145.260000px;}
.x14_c00467{left:146.880000px;}
.x1b_c00467{left:148.770000px;}
.x60_c00467{left:151.470000px;}
.x59_c00467{left:159.300000px;}
.x48_c00467{left:160.380000px;}
.x37_c00467{left:162.270000px;}
.x41_c00467{left:165.780000px;}
.x29_c00467{left:169.290000px;}
.x2f_c00467{left:171.720000px;}
.x1c_c00467{left:173.610000px;}
.x52_c00467{left:175.230000px;}
.x10_c00467{left:176.850000px;}
.x1_c00467{left:179.010000px;}
.x42_c00467{left:180.360000px;}
.x4c_c00467{left:181.980000px;}
.x71_c00467{left:184.680000px;}
.x5_c00467{left:186.030000px;}
.x6c_c00467{left:189.810000px;}
.x30_c00467{left:193.590000px;}
.x1d_c00467{left:195.750000px;}
.x15_c00467{left:197.910000px;}
.x11_c00467{left:200.610000px;}
.x53_c00467{left:204.660000px;}
.x61_c00467{left:206.280000px;}
.x75_c00467{left:207.630000px;}
.x38_c00467{left:208.980000px;}
.x16_c00467{left:210.330000px;}
.x69_c00467{left:212.760000px;}
.x6_c00467{left:217.890000px;}
.x63_c00467{left:220.320000px;}
.x43_c00467{left:221.670000px;}
.x3d_c00467{left:222.750000px;}
.xb_c00467{left:224.910000px;}
.x31_c00467{left:226.260000px;}
.x2a_c00467{left:227.610000px;}
.x6d_c00467{left:228.690000px;}
.x54_c00467{left:230.040000px;}
.x4e_c00467{left:231.120000px;}
.x17_c00467{left:238.950000px;}
.xc_c00467{left:244.350000px;}
.x55_c00467{left:246.780000px;}
.x3a_c00467{left:247.860000px;}
.x12_c00467{left:249.210000px;}
.x1e_c00467{left:253.260000px;}
.x5c_c00467{left:258.390000px;}
.x64_c00467{left:260.010000px;}
.x51_c00467{left:261.900000px;}
.x6f_c00467{left:264.600000px;}
.x7_c00467{left:265.950000px;}
.x1f_c00467{left:267.030000px;}
.x13_c00467{left:270.000000px;}
.x2b_c00467{left:271.350000px;}
.x32_c00467{left:272.430000px;}
.x4f_c00467{left:275.400000px;}
.x3e_c00467{left:276.480000px;}
.x5d_c00467{left:279.990000px;}
.x65_c00467{left:281.610000px;}
.x2c_c00467{left:284.850000px;}
.x44_c00467{left:286.470000px;}
.x73_c00467{left:287.761500px;}
.x56_c00467{left:295.110000px;}
.x4a_c00467{left:297.270000px;}
.x3f_c00467{left:299.430000px;}
.x49_c00467{left:301.050000px;}
.x66_c00467{left:303.750000px;}
.x5a_c00467{left:305.100000px;}
.x3b_c00467{left:308.340000px;}
.x45_c00467{left:311.310000px;}
.x18_c00467{left:316.170000px;}
.x23_c00467{left:319.140000px;}
.x39_c00467{left:320.490000px;}
.x5b_c00467{left:321.840000px;}
.x4d_c00467{left:324.810000px;}
.x8_c00467{left:329.130000px;}
.xd_c00467{left:331.560000px;}
.x20_c00467{left:334.530000px;}
.x72_c00467{left:337.770000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs10_c00467{font-size:14.933333pt;}
.fsa_c00467{font-size:51.333333pt;}
.fsf_c00467{font-size:53.200000pt;}
.fs3_c00467{font-size:54.133333pt;}
.fsc_c00467{font-size:55.066667pt;}
.fs8_c00467{font-size:56.000000pt;}
.fs9_c00467{font-size:56.933333pt;}
.fsd_c00467{font-size:57.866667pt;}
.fs4_c00467{font-size:58.800000pt;}
.fs5_c00467{font-size:59.733333pt;}
.fs7_c00467{font-size:60.666667pt;}
.fs2_c00467{font-size:61.600000pt;}
.fsb_c00467{font-size:62.533333pt;}
.fs6_c00467{font-size:63.466667pt;}
.fse_c00467{font-size:64.400000pt;}
.fs1_c00467{font-size:68.133333pt;}
.fs0_c00467{font-size:109.200000pt;}
.y0_c00467{bottom:0.000000pt;}
.y26_c00467{bottom:32.494667pt;}
.y20_c00467{bottom:46.558667pt;}
.y21_c00467{bottom:47.704000pt;}
.y22_c00467{bottom:48.213333pt;}
.y23_c00467{bottom:48.865333pt;}
.y24_c00467{bottom:49.629333pt;}
.y25_c00467{bottom:50.068000pt;}
.y1f_c00467{bottom:62.218667pt;}
.y1e_c00467{bottom:77.214667pt;}
.y1d_c00467{bottom:92.442667pt;}
.y1c_c00467{bottom:107.693333pt;}
.y1b_c00467{bottom:122.201333pt;}
.y1a_c00467{bottom:137.530667pt;}
.y19_c00467{bottom:152.920000pt;}
.y18_c00467{bottom:168.497333pt;}
.y17_c00467{bottom:184.097333pt;}
.y16_c00467{bottom:198.312000pt;}
.y15_c00467{bottom:213.836000pt;}
.y14_c00467{bottom:229.000000pt;}
.y13_c00467{bottom:243.772000pt;}
.y12_c00467{bottom:258.630667pt;}
.y11_c00467{bottom:273.841333pt;}
.y10_c00467{bottom:288.717333pt;}
.y27_c00467{bottom:291.840000pt;}
.yf_c00467{bottom:304.254667pt;}
.ye_c00467{bottom:319.245333pt;}
.yd_c00467{bottom:334.258667pt;}
.yc_c00467{bottom:349.198667pt;}
.yb_c00467{bottom:364.280000pt;}
.ya_c00467{bottom:379.546667pt;}
.y9_c00467{bottom:395.233333pt;}
.y8_c00467{bottom:410.778667pt;}
.y7_c00467{bottom:425.073333pt;}
.y6_c00467{bottom:440.581333pt;}
.y5_c00467{bottom:455.717333pt;}
.y4_c00467{bottom:471.360000pt;}
.y3_c00467{bottom:484.957333pt;}
.y2_c00467{bottom:500.586667pt;}
.y1_c00467{bottom:512.640000pt;}
.h12_c00467{height:14.933333pt;}
.hc_c00467{height:51.333333pt;}
.h11_c00467{height:53.200000pt;}
.h5_c00467{height:54.133333pt;}
.he_c00467{height:55.066667pt;}
.ha_c00467{height:56.000000pt;}
.hb_c00467{height:56.933333pt;}
.hf_c00467{height:57.866667pt;}
.h6_c00467{height:58.800000pt;}
.h7_c00467{height:59.733333pt;}
.h9_c00467{height:60.666667pt;}
.h4_c00467{height:61.600000pt;}
.hd_c00467{height:62.533333pt;}
.h8_c00467{height:63.466667pt;}
.h10_c00467{height:64.400000pt;}
.h3_c00467{height:68.133333pt;}
.h2_c00467{height:109.200000pt;}
.h0_c00467{height:549.066667pt;}
.h1_c00467{height:549.333333pt;}
.w0_c00467{width:319.200000pt;}
.w1_c00467{width:319.333333pt;}
.x0_c00467{left:0.000000pt;}
.x70_c00467{left:39.360000pt;}
.x33_c00467{left:40.560000pt;}
.x2_c00467{left:41.520000pt;}
.x6a_c00467{left:48.240000pt;}
.x24_c00467{left:52.560000pt;}
.x67_c00467{left:56.880000pt;}
.x34_c00467{left:59.760000pt;}
.x57_c00467{left:60.960000pt;}
.x25_c00467{left:63.600000pt;}
.x46_c00467{left:65.520000pt;}
.x2d_c00467{left:66.720000pt;}
.x9_c00467{left:71.040000pt;}
.x6e_c00467{left:72.000000pt;}
.x35_c00467{left:73.440000pt;}
.x5e_c00467{left:78.720000pt;}
.x74_c00467{left:80.160000pt;}
.x19_c00467{left:81.120000pt;}
.x26_c00467{left:82.800000pt;}
.x40_c00467{left:86.160000pt;}
.xe_c00467{left:88.080000pt;}
.x58_c00467{left:90.000000pt;}
.x21_c00467{left:91.440000pt;}
.x3_c00467{left:94.320000pt;}
.x5f_c00467{left:96.240000pt;}
.x50_c00467{left:97.200000pt;}
.x62_c00467{left:98.640000pt;}
.x22_c00467{left:102.720000pt;}
.x68_c00467{left:104.160000pt;}
.x4b_c00467{left:107.280000pt;}
.xf_c00467{left:108.720000pt;}
.x2e_c00467{left:110.400000pt;}
.x1a_c00467{left:112.560000pt;}
.x6b_c00467{left:113.520000pt;}
.x4_c00467{left:115.200000pt;}
.x27_c00467{left:117.360000pt;}
.x3c_c00467{left:119.760000pt;}
.x47_c00467{left:123.120000pt;}
.x36_c00467{left:125.040000pt;}
.xa_c00467{left:126.960000pt;}
.x28_c00467{left:129.120000pt;}
.x14_c00467{left:130.560000pt;}
.x1b_c00467{left:132.240000pt;}
.x60_c00467{left:134.640000pt;}
.x59_c00467{left:141.600000pt;}
.x48_c00467{left:142.560000pt;}
.x37_c00467{left:144.240000pt;}
.x41_c00467{left:147.360000pt;}
.x29_c00467{left:150.480000pt;}
.x2f_c00467{left:152.640000pt;}
.x1c_c00467{left:154.320000pt;}
.x52_c00467{left:155.760000pt;}
.x10_c00467{left:157.200000pt;}
.x1_c00467{left:159.120000pt;}
.x42_c00467{left:160.320000pt;}
.x4c_c00467{left:161.760000pt;}
.x71_c00467{left:164.160000pt;}
.x5_c00467{left:165.360000pt;}
.x6c_c00467{left:168.720000pt;}
.x30_c00467{left:172.080000pt;}
.x1d_c00467{left:174.000000pt;}
.x15_c00467{left:175.920000pt;}
.x11_c00467{left:178.320000pt;}
.x53_c00467{left:181.920000pt;}
.x61_c00467{left:183.360000pt;}
.x75_c00467{left:184.560000pt;}
.x38_c00467{left:185.760000pt;}
.x16_c00467{left:186.960000pt;}
.x69_c00467{left:189.120000pt;}
.x6_c00467{left:193.680000pt;}
.x63_c00467{left:195.840000pt;}
.x43_c00467{left:197.040000pt;}
.x3d_c00467{left:198.000000pt;}
.xb_c00467{left:199.920000pt;}
.x31_c00467{left:201.120000pt;}
.x2a_c00467{left:202.320000pt;}
.x6d_c00467{left:203.280000pt;}
.x54_c00467{left:204.480000pt;}
.x4e_c00467{left:205.440000pt;}
.x17_c00467{left:212.400000pt;}
.xc_c00467{left:217.200000pt;}
.x55_c00467{left:219.360000pt;}
.x3a_c00467{left:220.320000pt;}
.x12_c00467{left:221.520000pt;}
.x1e_c00467{left:225.120000pt;}
.x5c_c00467{left:229.680000pt;}
.x64_c00467{left:231.120000pt;}
.x51_c00467{left:232.800000pt;}
.x6f_c00467{left:235.200000pt;}
.x7_c00467{left:236.400000pt;}
.x1f_c00467{left:237.360000pt;}
.x13_c00467{left:240.000000pt;}
.x2b_c00467{left:241.200000pt;}
.x32_c00467{left:242.160000pt;}
.x4f_c00467{left:244.800000pt;}
.x3e_c00467{left:245.760000pt;}
.x5d_c00467{left:248.880000pt;}
.x65_c00467{left:250.320000pt;}
.x2c_c00467{left:253.200000pt;}
.x44_c00467{left:254.640000pt;}
.x73_c00467{left:255.788000pt;}
.x56_c00467{left:262.320000pt;}
.x4a_c00467{left:264.240000pt;}
.x3f_c00467{left:266.160000pt;}
.x49_c00467{left:267.600000pt;}
.x66_c00467{left:270.000000pt;}
.x5a_c00467{left:271.200000pt;}
.x3b_c00467{left:274.080000pt;}
.x45_c00467{left:276.720000pt;}
.x18_c00467{left:281.040000pt;}
.x23_c00467{left:283.680000pt;}
.x39_c00467{left:284.880000pt;}
.x5b_c00467{left:286.080000pt;}
.x4d_c00467{left:288.720000pt;}
.x8_c00467{left:292.560000pt;}
.xd_c00467{left:294.720000pt;}
.x20_c00467{left:297.360000pt;}
.x72_c00467{left:300.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00468{transform:matrix(0.017595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017595,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.146440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146440,0.000000,0.000000,0.250000,0,0);}
.m46_c00468{transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);}
.m4a_c00468{transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);}
.m99_c00468{transform:matrix(0.150755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150755,0.000000,0.000000,0.250000,0,0);}
.m96_c00468{transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);}
.me0_c00468{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.mdf_c00468{transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155760,0.000000,0.000000,0.250000,0,0);}
.m40_c00468{transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155840,0.000000,0.000000,0.250000,0,0);}
.m6f_c00468{transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);}
.m78_c00468{transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156560,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.mb7_c00468{transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);}
.mec_c00468{transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159265,0.000000,0.000000,0.250000,0,0);}
.ma2_c00468{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m55_c00468{transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00468{transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);}
.ma7_c00468{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.m66_c00468{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m1f_c00468{transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163395,0.000000,0.000000,0.250000,0,0);}
.mb0_c00468{transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163445,0.000000,0.000000,0.250000,0,0);}
.m2a_c00468{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.mdb_c00468{transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164885,0.000000,0.000000,0.250000,0,0);}
.m41_c00468{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m37_c00468{transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165215,0.000000,0.000000,0.250000,0,0);}
.m51_c00468{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.md8_c00468{transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165565,0.000000,0.000000,0.250000,0,0);}
.md0_c00468{transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);}
.m1c_c00468{transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167110,0.000000,0.000000,0.250000,0,0);}
.mca_c00468{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.m94_c00468{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m27_c00468{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.mde_c00468{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.mcb_c00468{transform:matrix(0.170215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170215,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);}
.m47_c00468{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m34_c00468{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.m77_c00468{transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170680,0.000000,0.000000,0.250000,0,0);}
.ma6_c00468{transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);}
.mb2_c00468{transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m7e_c00468{transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172765,0.000000,0.000000,0.250000,0,0);}
.m69_c00468{transform:matrix(0.173330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173330,0.000000,0.000000,0.250000,0,0);}
.m56_c00468{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.me6_c00468{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m6d_c00468{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.mc4_c00468{transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);}
.me9_c00468{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m35_c00468{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m63_c00468{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m50_c00468{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00468{transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177405,0.000000,0.000000,0.250000,0,0);}
.m5f_c00468{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m57_c00468{transform:matrix(0.177830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00468{transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177970,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m18_c00468{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.m93_c00468{transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);}
.m4f_c00468{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.m95_c00468{transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179560,0.000000,0.000000,0.250000,0,0);}
.m21_c00468{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.mad_c00468{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00468{transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179940,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179955,0.000000,0.000000,0.250000,0,0);}
.m2b_c00468{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);}
.m62_c00468{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.mc7_c00468{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m19_c00468{transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180920,0.000000,0.000000,0.250000,0,0);}
.m54_c00468{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m12_c00468{transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181295,0.000000,0.000000,0.250000,0,0);}
.mb1_c00468{transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);}
.me1_c00468{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m65_c00468{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m43_c00468{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.mda_c00468{transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182890,0.000000,0.000000,0.250000,0,0);}
.m1a_c00468{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.m92_c00468{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00468{transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183505,0.000000,0.000000,0.250000,0,0);}
.m9d_c00468{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00468{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00468{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.mcf_c00468{transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184735,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.mba_c00468{transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);}
.mdc_c00468{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m15_c00468{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.m72_c00468{transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185265,0.000000,0.000000,0.250000,0,0);}
.m6e_c00468{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.mb3_c00468{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.ma5_c00468{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m80_c00468{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.mdd_c00468{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.mbd_c00468{transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);}
.m74_c00468{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.ma9_c00468{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m71_c00468{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m25_c00468{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m26_c00468{transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188690,0.000000,0.000000,0.250000,0,0);}
.md2_c00468{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m64_c00468{transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);}
.m88_c00468{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m53_c00468{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m17_c00468{transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191590,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);}
.m4b_c00468{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m83_c00468{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00468{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00468{transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);}
.m1e_c00468{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.me5_c00468{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m23_c00468{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.md3_c00468{transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195065,0.000000,0.000000,0.250000,0,0);}
.m16_c00468{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.m39_c00468{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.m61_c00468{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m6c_c00468{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00468{transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195935,0.000000,0.000000,0.250000,0,0);}
.m90_c00468{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.mab_c00468{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.m7f_c00468{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m9e_c00468{transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);}
.m91_c00468{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m73_c00468{transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);}
.m22_c00468{transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);}
.mc9_c00468{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.m76_c00468{transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198605,0.000000,0.000000,0.250000,0,0);}
.mbe_c00468{transform:matrix(0.198765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198765,0.000000,0.000000,0.250000,0,0);}
.m2e_c00468{transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200090,0.000000,0.000000,0.250000,0,0);}
.m7a_c00468{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m58_c00468{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.m8e_c00468{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.mc0_c00468{transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);}
.m45_c00468{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.mbb_c00468{transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);}
.m38_c00468{transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);}
.m82_c00468{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m3a_c00468{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00468{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00468{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.m36_c00468{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.mac_c00468{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m68_c00468{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m29_c00468{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00468{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.m14_c00468{transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205420,0.000000,0.000000,0.250000,0,0);}
.m48_c00468{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.ma0_c00468{transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206005,0.000000,0.000000,0.250000,0,0);}
.maa_c00468{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.m7c_c00468{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00468{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m44_c00468{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00468{transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207755,0.000000,0.000000,0.250000,0,0);}
.mc1_c00468{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.mc5_c00468{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00468{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.mce_c00468{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m9f_c00468{transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208565,0.000000,0.000000,0.250000,0,0);}
.m81_c00468{transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208690,0.000000,0.000000,0.250000,0,0);}
.m59_c00468{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.mc3_c00468{transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210390,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.md6_c00468{transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);}
.mbc_c00468{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.med_c00468{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.m60_c00468{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.mc8_c00468{transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211860,0.000000,0.000000,0.250000,0,0);}
.m8f_c00468{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m89_c00468{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m2c_c00468{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m52_c00468{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.me7_c00468{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.meb_c00468{transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213130,0.000000,0.000000,0.250000,0,0);}
.m32_c00468{transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213220,0.000000,0.000000,0.250000,0,0);}
.m7b_c00468{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.m5d_c00468{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m9a_c00468{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m87_c00468{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.mb5_c00468{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215810,0.000000,0.000000,0.250000,0,0);}
.mbf_c00468{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m79_c00468{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m75_c00468{transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218790,0.000000,0.000000,0.250000,0,0);}
.m3f_c00468{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.mae_c00468{transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220840,0.000000,0.000000,0.250000,0,0);}
.m28_c00468{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00468{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m97_c00468{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.me2_c00468{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.md7_c00468{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.m8a_c00468{transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);}
.md1_c00468{transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);}
.m5b_c00468{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.mb9_c00468{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m5c_c00468{transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229765,0.000000,0.000000,0.250000,0,0);}
.md5_c00468{transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);}
.m33_c00468{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.md9_c00468{transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);}
.md4_c00468{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.mcc_c00468{transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235040,0.000000,0.000000,0.250000,0,0);}
.me8_c00468{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m85_c00468{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00468{transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237340,0.000000,0.000000,0.250000,0,0);}
.mea_c00468{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.mcd_c00468{transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238190,0.000000,0.000000,0.250000,0,0);}
.m67_c00468{transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00468{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.mb4_c00468{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.m5e_c00468{transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);}
.m8d_c00468{transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257380,0.000000,0.000000,0.250000,0,0);}
.m86_c00468{transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258545,0.000000,0.000000,0.250000,0,0);}
.m8c_c00468{transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278365,0.000000,0.000000,0.250000,0,0);}
.m98_c00468{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.me3_c00468{transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00468{transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);}
.maf_c00468{transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310840,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.315060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315060,0.000000,0.000000,0.250000,0,0);}
.m6b_c00468{transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344665,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);}
.me4_c00468{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m8b_c00468{transform:matrix(0.374505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374505,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.380825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380825,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.448395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448395,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.459600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459600,0.000000,0.000000,0.250000,0,0);}
.m70_c00468{transform:matrix(0.472105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472105,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:0.000000px;}
.fc0_c00468{color:transparent;}
.fs1_c00468{font-size:44.100000px;}
.fsf_c00468{font-size:55.650000px;}
.fsd_c00468{font-size:57.750000px;}
.fsa_c00468{font-size:58.800000px;}
.fsc_c00468{font-size:59.850000px;}
.fs8_c00468{font-size:60.900000px;}
.fs6_c00468{font-size:61.950000px;}
.fs3_c00468{font-size:63.000000px;}
.fs7_c00468{font-size:64.050000px;}
.fs2_c00468{font-size:65.100000px;}
.fs9_c00468{font-size:66.150000px;}
.fs4_c00468{font-size:67.200000px;}
.fsb_c00468{font-size:68.250000px;}
.fse_c00468{font-size:69.300000px;}
.fs5_c00468{font-size:70.350000px;}
.fs0_c00468{font-size:96.600000px;}
.y0_c00468{bottom:0.000000px;}
.y3a_c00468{bottom:16.747500px;}
.y39_c00468{bottom:32.457000px;}
.y38_c00468{bottom:50.760000px;}
.y37_c00468{bottom:66.249000px;}
.y36_c00468{bottom:84.780000px;}
.y35_c00468{bottom:101.668500px;}
.y34_c00468{bottom:118.689000px;}
.y33_c00468{bottom:134.431500px;}
.y32_c00468{bottom:149.494500px;}
.y31_c00468{bottom:150.249000px;}
.y30_c00468{bottom:150.562500px;}
.y2f_c00468{bottom:151.048500px;}
.y2e_c00468{bottom:151.233000px;}
.y2d_c00468{bottom:152.196000px;}
.y2c_c00468{bottom:152.821500px;}
.y4_c00468{bottom:167.670000px;}
.y2b_c00468{bottom:169.384500px;}
.y2a_c00468{bottom:185.406000px;}
.y29_c00468{bottom:202.891500px;}
.y28_c00468{bottom:219.456000px;}
.y3_c00468{bottom:220.590000px;}
.y27_c00468{bottom:236.709000px;}
.y26_c00468{bottom:253.864500px;}
.y25_c00468{bottom:271.119000px;}
.y24_c00468{bottom:287.715000px;}
.y23_c00468{bottom:304.476000px;}
.y22_c00468{bottom:321.756000px;}
.y21_c00468{bottom:338.307000px;}
.y20_c00468{bottom:355.197000px;}
.y1f_c00468{bottom:371.724000px;}
.y1e_c00468{bottom:388.452000px;}
.y1d_c00468{bottom:403.668000px;}
.y1c_c00468{bottom:403.819500px;}
.y1b_c00468{bottom:404.574000px;}
.y1a_c00468{bottom:404.701500px;}
.y19_c00468{bottom:405.046500px;}
.y18_c00468{bottom:405.414000px;}
.y17_c00468{bottom:406.050000px;}
.y16_c00468{bottom:406.510500px;}
.y15_c00468{bottom:406.623000px;}
.y14_c00468{bottom:421.632000px;}
.y13_c00468{bottom:438.414000px;}
.y2_c00468{bottom:440.370000px;}
.y12_c00468{bottom:455.644500px;}
.y1_c00468{bottom:457.380000px;}
.y11_c00468{bottom:470.655000px;}
.y10_c00468{bottom:471.472500px;}
.yf_c00468{bottom:471.690000px;}
.ye_c00468{bottom:472.422000px;}
.yd_c00468{bottom:473.287500px;}
.yc_c00468{bottom:473.550000px;}
.yb_c00468{bottom:474.123000px;}
.ya_c00468{bottom:489.919500px;}
.y9_c00468{bottom:506.415000px;}
.y8_c00468{bottom:523.303500px;}
.y7_c00468{bottom:540.069000px;}
.y6_c00468{bottom:557.055000px;}
.y5_c00468{bottom:574.548000px;}
.h3_c00468{height:44.100000px;}
.h11_c00468{height:55.650000px;}
.hf_c00468{height:57.750000px;}
.hc_c00468{height:58.800000px;}
.he_c00468{height:59.850000px;}
.ha_c00468{height:60.900000px;}
.h8_c00468{height:61.950000px;}
.h5_c00468{height:63.000000px;}
.h9_c00468{height:64.050000px;}
.h4_c00468{height:65.100000px;}
.hb_c00468{height:66.150000px;}
.h6_c00468{height:67.200000px;}
.hd_c00468{height:68.250000px;}
.h10_c00468{height:69.300000px;}
.h7_c00468{height:70.350000px;}
.h2_c00468{height:96.600000px;}
.h0_c00468{height:617.700000px;}
.h1_c00468{height:618.000000px;}
.w0_c00468{width:359.100000px;}
.w1_c00468{width:359.250000px;}
.x0_c00468{left:0.000000px;}
.x41_c00468{left:14.040000px;}
.x1_c00468{left:15.120000px;}
.x70_c00468{left:16.470000px;}
.x22_c00468{left:18.361500px;}
.x6d_c00468{left:19.708500px;}
.x53_c00468{left:21.330000px;}
.xa_c00468{left:23.490000px;}
.x26_c00468{left:25.651500px;}
.x77_c00468{left:33.210000px;}
.x19_c00468{left:34.290000px;}
.x57_c00468{left:37.260000px;}
.x3e_c00468{left:38.880000px;}
.x11_c00468{left:42.660000px;}
.x6e_c00468{left:49.408500px;}
.x4b_c00468{left:54.540000px;}
.x39_c00468{left:57.241500px;}
.xb_c00468{left:61.290000px;}
.x1e_c00468{left:62.493000px;}
.x58_c00468{left:64.530000px;}
.x4_c00468{left:66.690000px;}
.x63_c00468{left:68.578500px;}
.x5e_c00468{left:71.010000px;}
.x16_c00468{left:73.170000px;}
.x5c_c00468{left:76.680000px;}
.x66_c00468{left:80.188500px;}
.x4c_c00468{left:82.890000px;}
.x1f_c00468{left:84.360000px;}
.xc_c00468{left:86.130000px;}
.x3c_c00468{left:87.211500px;}
.x2c_c00468{left:88.561500px;}
.x42_c00468{left:89.640000px;}
.x3f_c00468{left:91.530000px;}
.x5_c00468{left:94.230000px;}
.x12_c00468{left:96.930000px;}
.x2d_c00468{left:101.251500px;}
.x3d_c00468{left:102.601500px;}
.x27_c00468{left:104.491500px;}
.x71_c00468{left:107.190000px;}
.x2_c00468{left:111.240000px;}
.x36_c00468{left:113.131500px;}
.x67_c00468{left:115.558500px;}
.x2e_c00468{left:120.961500px;}
.x1a_c00468{left:122.850000px;}
.xd_c00468{left:125.010000px;}
.x4d_c00468{left:127.170000px;}
.x3a_c00468{left:130.951500px;}
.x43_c00468{left:133.650000px;}
.x6f_c00468{left:135.268500px;}
.x2f_c00468{left:137.161500px;}
.x17_c00468{left:138.510000px;}
.x37_c00468{left:140.671500px;}
.x47_c00468{left:143.640000px;}
.x1b_c00468{left:146.610000px;}
.x50_c00468{left:148.770000px;}
.x3_c00468{left:150.660000px;}
.xe_c00468{left:154.710000px;}
.x20_c00468{left:156.472500px;}
.x32_c00468{left:158.356500px;}
.x74_c00468{left:159.840000px;}
.x60_c00468{left:162.118500px;}
.x6_c00468{left:164.430000px;}
.x23_c00468{left:169.021500px;}
.x6a_c00468{left:171.718500px;}
.x54_c00468{left:173.610000px;}
.x48_c00468{left:176.310000px;}
.x55_c00468{left:179.280000px;}
.x1c_c00468{left:183.060000px;}
.x68_c00468{left:186.838500px;}
.x33_c00468{left:189.687000px;}
.x7_c00468{left:191.700000px;}
.x28_c00468{left:193.591500px;}
.x3b_c00468{left:197.911500px;}
.x59_c00468{left:199.260000px;}
.x34_c00468{left:201.283500px;}
.x29_c00468{left:203.581500px;}
.x18_c00468{left:206.280000px;}
.x4e_c00468{left:208.710000px;}
.x56_c00468{left:212.220000px;}
.x30_c00468{left:213.571500px;}
.x8_c00468{left:215.730000px;}
.x13_c00468{left:217.890000px;}
.xf_c00468{left:221.400000px;}
.x5d_c00468{left:222.480000px;}
.x1d_c00468{left:226.530000px;}
.x61_c00468{left:228.798000px;}
.x51_c00468{left:233.280000px;}
.x9_c00468{left:234.630000px;}
.x75_c00468{left:237.870000px;}
.x14_c00468{left:241.650000px;}
.x24_c00468{left:242.731500px;}
.x10_c00468{left:244.350000px;}
.x6b_c00468{left:246.238500px;}
.x5a_c00468{left:248.130000px;}
.x52_c00468{left:250.560000px;}
.x76_c00468{left:253.260000px;}
.x4f_c00468{left:256.230000px;}
.x44_c00468{left:258.390000px;}
.x72_c00468{left:264.870000px;}
.x5b_c00468{left:266.220000px;}
.x25_c00468{left:270.271500px;}
.x2a_c00468{left:271.351500px;}
.x6c_c00468{left:272.428500px;}
.x31_c00468{left:273.511500px;}
.x49_c00468{left:276.480000px;}
.x45_c00468{left:277.560000px;}
.x69_c00468{left:278.638500px;}
.x73_c00468{left:281.070000px;}
.x35_c00468{left:283.665000px;}
.x2b_c00468{left:285.931500px;}
.x4a_c00468{left:287.280000px;}
.x5f_c00468{left:288.630000px;}
.x38_c00468{left:289.711500px;}
.x62_c00468{left:291.676500px;}
.x65_c00468{left:293.488500px;}
.x46_c00468{left:294.840000px;}
.x15_c00468{left:297.270000px;}
.x40_c00468{left:301.050000px;}
.x21_c00468{left:303.651000px;}
.x64_c00468{left:305.638500px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs1_c00468{font-size:39.200000pt;}
.fsf_c00468{font-size:49.466667pt;}
.fsd_c00468{font-size:51.333333pt;}
.fsa_c00468{font-size:52.266667pt;}
.fsc_c00468{font-size:53.200000pt;}
.fs8_c00468{font-size:54.133333pt;}
.fs6_c00468{font-size:55.066667pt;}
.fs3_c00468{font-size:56.000000pt;}
.fs7_c00468{font-size:56.933333pt;}
.fs2_c00468{font-size:57.866667pt;}
.fs9_c00468{font-size:58.800000pt;}
.fs4_c00468{font-size:59.733333pt;}
.fsb_c00468{font-size:60.666667pt;}
.fse_c00468{font-size:61.600000pt;}
.fs5_c00468{font-size:62.533333pt;}
.fs0_c00468{font-size:85.866667pt;}
.y0_c00468{bottom:0.000000pt;}
.y3a_c00468{bottom:14.886667pt;}
.y39_c00468{bottom:28.850667pt;}
.y38_c00468{bottom:45.120000pt;}
.y37_c00468{bottom:58.888000pt;}
.y36_c00468{bottom:75.360000pt;}
.y35_c00468{bottom:90.372000pt;}
.y34_c00468{bottom:105.501333pt;}
.y33_c00468{bottom:119.494667pt;}
.y32_c00468{bottom:132.884000pt;}
.y31_c00468{bottom:133.554667pt;}
.y30_c00468{bottom:133.833333pt;}
.y2f_c00468{bottom:134.265333pt;}
.y2e_c00468{bottom:134.429333pt;}
.y2d_c00468{bottom:135.285333pt;}
.y2c_c00468{bottom:135.841333pt;}
.y4_c00468{bottom:149.040000pt;}
.y2b_c00468{bottom:150.564000pt;}
.y2a_c00468{bottom:164.805333pt;}
.y29_c00468{bottom:180.348000pt;}
.y28_c00468{bottom:195.072000pt;}
.y3_c00468{bottom:196.080000pt;}
.y27_c00468{bottom:210.408000pt;}
.y26_c00468{bottom:225.657333pt;}
.y25_c00468{bottom:240.994667pt;}
.y24_c00468{bottom:255.746667pt;}
.y23_c00468{bottom:270.645333pt;}
.y22_c00468{bottom:286.005333pt;}
.y21_c00468{bottom:300.717333pt;}
.y20_c00468{bottom:315.730667pt;}
.y1f_c00468{bottom:330.421333pt;}
.y1e_c00468{bottom:345.290667pt;}
.y1d_c00468{bottom:358.816000pt;}
.y1c_c00468{bottom:358.950667pt;}
.y1b_c00468{bottom:359.621333pt;}
.y1a_c00468{bottom:359.734667pt;}
.y19_c00468{bottom:360.041333pt;}
.y18_c00468{bottom:360.368000pt;}
.y17_c00468{bottom:360.933333pt;}
.y16_c00468{bottom:361.342667pt;}
.y15_c00468{bottom:361.442667pt;}
.y14_c00468{bottom:374.784000pt;}
.y13_c00468{bottom:389.701333pt;}
.y2_c00468{bottom:391.440000pt;}
.y12_c00468{bottom:405.017333pt;}
.y1_c00468{bottom:406.560000pt;}
.y11_c00468{bottom:418.360000pt;}
.y10_c00468{bottom:419.086667pt;}
.yf_c00468{bottom:419.280000pt;}
.ye_c00468{bottom:419.930667pt;}
.yd_c00468{bottom:420.700000pt;}
.yc_c00468{bottom:420.933333pt;}
.yb_c00468{bottom:421.442667pt;}
.ya_c00468{bottom:435.484000pt;}
.y9_c00468{bottom:450.146667pt;}
.y8_c00468{bottom:465.158667pt;}
.y7_c00468{bottom:480.061333pt;}
.y6_c00468{bottom:495.160000pt;}
.y5_c00468{bottom:510.709333pt;}
.h3_c00468{height:39.200000pt;}
.h11_c00468{height:49.466667pt;}
.hf_c00468{height:51.333333pt;}
.hc_c00468{height:52.266667pt;}
.he_c00468{height:53.200000pt;}
.ha_c00468{height:54.133333pt;}
.h8_c00468{height:55.066667pt;}
.h5_c00468{height:56.000000pt;}
.h9_c00468{height:56.933333pt;}
.h4_c00468{height:57.866667pt;}
.hb_c00468{height:58.800000pt;}
.h6_c00468{height:59.733333pt;}
.hd_c00468{height:60.666667pt;}
.h10_c00468{height:61.600000pt;}
.h7_c00468{height:62.533333pt;}
.h2_c00468{height:85.866667pt;}
.h0_c00468{height:549.066667pt;}
.h1_c00468{height:549.333333pt;}
.w0_c00468{width:319.200000pt;}
.w1_c00468{width:319.333333pt;}
.x0_c00468{left:0.000000pt;}
.x41_c00468{left:12.480000pt;}
.x1_c00468{left:13.440000pt;}
.x70_c00468{left:14.640000pt;}
.x22_c00468{left:16.321333pt;}
.x6d_c00468{left:17.518667pt;}
.x53_c00468{left:18.960000pt;}
.xa_c00468{left:20.880000pt;}
.x26_c00468{left:22.801333pt;}
.x77_c00468{left:29.520000pt;}
.x19_c00468{left:30.480000pt;}
.x57_c00468{left:33.120000pt;}
.x3e_c00468{left:34.560000pt;}
.x11_c00468{left:37.920000pt;}
.x6e_c00468{left:43.918667pt;}
.x4b_c00468{left:48.480000pt;}
.x39_c00468{left:50.881333pt;}
.xb_c00468{left:54.480000pt;}
.x1e_c00468{left:55.549333pt;}
.x58_c00468{left:57.360000pt;}
.x4_c00468{left:59.280000pt;}
.x63_c00468{left:60.958667pt;}
.x5e_c00468{left:63.120000pt;}
.x16_c00468{left:65.040000pt;}
.x5c_c00468{left:68.160000pt;}
.x66_c00468{left:71.278667pt;}
.x4c_c00468{left:73.680000pt;}
.x1f_c00468{left:74.986667pt;}
.xc_c00468{left:76.560000pt;}
.x3c_c00468{left:77.521333pt;}
.x2c_c00468{left:78.721333pt;}
.x42_c00468{left:79.680000pt;}
.x3f_c00468{left:81.360000pt;}
.x5_c00468{left:83.760000pt;}
.x12_c00468{left:86.160000pt;}
.x2d_c00468{left:90.001333pt;}
.x3d_c00468{left:91.201333pt;}
.x27_c00468{left:92.881333pt;}
.x71_c00468{left:95.280000pt;}
.x2_c00468{left:98.880000pt;}
.x36_c00468{left:100.561333pt;}
.x67_c00468{left:102.718667pt;}
.x2e_c00468{left:107.521333pt;}
.x1a_c00468{left:109.200000pt;}
.xd_c00468{left:111.120000pt;}
.x4d_c00468{left:113.040000pt;}
.x3a_c00468{left:116.401333pt;}
.x43_c00468{left:118.800000pt;}
.x6f_c00468{left:120.238667pt;}
.x2f_c00468{left:121.921333pt;}
.x17_c00468{left:123.120000pt;}
.x37_c00468{left:125.041333pt;}
.x47_c00468{left:127.680000pt;}
.x1b_c00468{left:130.320000pt;}
.x50_c00468{left:132.240000pt;}
.x3_c00468{left:133.920000pt;}
.xe_c00468{left:137.520000pt;}
.x20_c00468{left:139.086667pt;}
.x32_c00468{left:140.761333pt;}
.x74_c00468{left:142.080000pt;}
.x60_c00468{left:144.105333pt;}
.x6_c00468{left:146.160000pt;}
.x23_c00468{left:150.241333pt;}
.x6a_c00468{left:152.638667pt;}
.x54_c00468{left:154.320000pt;}
.x48_c00468{left:156.720000pt;}
.x55_c00468{left:159.360000pt;}
.x1c_c00468{left:162.720000pt;}
.x68_c00468{left:166.078667pt;}
.x33_c00468{left:168.610667pt;}
.x7_c00468{left:170.400000pt;}
.x28_c00468{left:172.081333pt;}
.x3b_c00468{left:175.921333pt;}
.x59_c00468{left:177.120000pt;}
.x34_c00468{left:178.918667pt;}
.x29_c00468{left:180.961333pt;}
.x18_c00468{left:183.360000pt;}
.x4e_c00468{left:185.520000pt;}
.x56_c00468{left:188.640000pt;}
.x30_c00468{left:189.841333pt;}
.x8_c00468{left:191.760000pt;}
.x13_c00468{left:193.680000pt;}
.xf_c00468{left:196.800000pt;}
.x5d_c00468{left:197.760000pt;}
.x1d_c00468{left:201.360000pt;}
.x61_c00468{left:203.376000pt;}
.x51_c00468{left:207.360000pt;}
.x9_c00468{left:208.560000pt;}
.x75_c00468{left:211.440000pt;}
.x14_c00468{left:214.800000pt;}
.x24_c00468{left:215.761333pt;}
.x10_c00468{left:217.200000pt;}
.x6b_c00468{left:218.878667pt;}
.x5a_c00468{left:220.560000pt;}
.x52_c00468{left:222.720000pt;}
.x76_c00468{left:225.120000pt;}
.x4f_c00468{left:227.760000pt;}
.x44_c00468{left:229.680000pt;}
.x72_c00468{left:235.440000pt;}
.x5b_c00468{left:236.640000pt;}
.x25_c00468{left:240.241333pt;}
.x2a_c00468{left:241.201333pt;}
.x6c_c00468{left:242.158667pt;}
.x31_c00468{left:243.121333pt;}
.x49_c00468{left:245.760000pt;}
.x45_c00468{left:246.720000pt;}
.x69_c00468{left:247.678667pt;}
.x73_c00468{left:249.840000pt;}
.x35_c00468{left:252.146667pt;}
.x2b_c00468{left:254.161333pt;}
.x4a_c00468{left:255.360000pt;}
.x5f_c00468{left:256.560000pt;}
.x38_c00468{left:257.521333pt;}
.x62_c00468{left:259.268000pt;}
.x65_c00468{left:260.878667pt;}
.x46_c00468{left:262.080000pt;}
.x15_c00468{left:264.240000pt;}
.x40_c00468{left:267.600000pt;}
.x21_c00468{left:269.912000pt;}
.x64_c00468{left:271.678667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00469{transform:matrix(0.008355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008355,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.095554,-0.001433,0.003750,0.249972,0,0);-ms-transform:matrix(0.095554,-0.001433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.095554,-0.001433,0.003750,0.249972,0,0);}
.mc4_c00469{transform:matrix(0.104808,-0.001572,0.003750,0.249972,0,0);-ms-transform:matrix(0.104808,-0.001572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.104808,-0.001572,0.003750,0.249972,0,0);}
.m48_c00469{transform:matrix(0.105973,-0.001590,0.003750,0.249972,0,0);-ms-transform:matrix(0.105973,-0.001590,0.003750,0.249972,0,0);-webkit-transform:matrix(0.105973,-0.001590,0.003750,0.249972,0,0);}
.m2_c00469{transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109480,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.110693,-0.001660,0.003750,0.249972,0,0);-ms-transform:matrix(0.110693,-0.001660,0.003750,0.249972,0,0);-webkit-transform:matrix(0.110693,-0.001660,0.003750,0.249972,0,0);}
.m18_c00469{transform:matrix(0.115702,-0.001736,0.003750,0.249972,0,0);-ms-transform:matrix(0.115702,-0.001736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.115702,-0.001736,0.003750,0.249972,0,0);}
.me8_c00469{transform:matrix(0.124940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124940,0.000000,0.000000,0.250000,0,0);}
.mcb_c00469{transform:matrix(0.127651,-0.001915,0.003750,0.249972,0,0);-ms-transform:matrix(0.127651,-0.001915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.127651,-0.001915,0.003750,0.249972,0,0);}
.m76_c00469{transform:matrix(0.141114,-0.002117,0.003750,0.249972,0,0);-ms-transform:matrix(0.141114,-0.002117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141114,-0.002117,0.003750,0.249972,0,0);}
.m32_c00469{transform:matrix(0.146444,-0.002197,0.003750,0.249972,0,0);-ms-transform:matrix(0.146444,-0.002197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146444,-0.002197,0.003750,0.249972,0,0);}
.md2_c00469{transform:matrix(0.148080,-0.002073,0.003500,0.249976,0,0);-ms-transform:matrix(0.148080,-0.002073,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148080,-0.002073,0.003500,0.249976,0,0);}
.m9e_c00469{transform:matrix(0.151153,-0.002267,0.003750,0.249972,0,0);-ms-transform:matrix(0.151153,-0.002267,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151153,-0.002267,0.003750,0.249972,0,0);}
.m11_c00469{transform:matrix(0.154143,-0.002312,0.003750,0.249972,0,0);-ms-transform:matrix(0.154143,-0.002312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154143,-0.002312,0.003750,0.249972,0,0);}
.m61_c00469{transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);-ms-transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154628,-0.002319,0.003750,0.249972,0,0);}
.m5f_c00469{transform:matrix(0.156622,-0.002349,0.003750,0.249972,0,0);-ms-transform:matrix(0.156622,-0.002349,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156622,-0.002349,0.003750,0.249972,0,0);}
.mc0_c00469{transform:matrix(0.157707,-0.002366,0.003750,0.249972,0,0);-ms-transform:matrix(0.157707,-0.002366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157707,-0.002366,0.003750,0.249972,0,0);}
.mce_c00469{transform:matrix(0.159037,-0.002386,0.003750,0.249972,0,0);-ms-transform:matrix(0.159037,-0.002386,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159037,-0.002386,0.003750,0.249972,0,0);}
.m78_c00469{transform:matrix(0.159177,-0.002388,0.003750,0.249972,0,0);-ms-transform:matrix(0.159177,-0.002388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159177,-0.002388,0.003750,0.249972,0,0);}
.me_c00469{transform:matrix(0.160212,-0.002403,0.003750,0.249972,0,0);-ms-transform:matrix(0.160212,-0.002403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160212,-0.002403,0.003750,0.249972,0,0);}
.m88_c00469{transform:matrix(0.160247,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160247,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160247,-0.002404,0.003750,0.249972,0,0);}
.m2e_c00469{transform:matrix(0.160252,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160252,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160252,-0.002404,0.003750,0.249972,0,0);}
.md8_c00469{transform:matrix(0.160564,-0.002248,0.003500,0.249976,0,0);-ms-transform:matrix(0.160564,-0.002248,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160564,-0.002248,0.003500,0.249976,0,0);}
.m14_c00469{transform:matrix(0.160622,-0.002409,0.003750,0.249972,0,0);-ms-transform:matrix(0.160622,-0.002409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160622,-0.002409,0.003750,0.249972,0,0);}
.m2d_c00469{transform:matrix(0.161917,-0.002429,0.003750,0.249972,0,0);-ms-transform:matrix(0.161917,-0.002429,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161917,-0.002429,0.003750,0.249972,0,0);}
.m54_c00469{transform:matrix(0.162422,-0.002436,0.003750,0.249972,0,0);-ms-transform:matrix(0.162422,-0.002436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162422,-0.002436,0.003750,0.249972,0,0);}
.me3_c00469{transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);-ms-transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162653,-0.001952,0.003000,0.249982,0,0);}
.me1_c00469{transform:matrix(0.162763,-0.001953,0.003000,0.249982,0,0);-ms-transform:matrix(0.162763,-0.001953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162763,-0.001953,0.003000,0.249982,0,0);}
.m4c_c00469{transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);-ms-transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163152,-0.002447,0.003750,0.249972,0,0);}
.m7a_c00469{transform:matrix(0.163282,-0.002449,0.003750,0.249972,0,0);-ms-transform:matrix(0.163282,-0.002449,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163282,-0.002449,0.003750,0.249972,0,0);}
.m10_c00469{transform:matrix(0.166036,-0.002491,0.003750,0.249972,0,0);-ms-transform:matrix(0.166036,-0.002491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166036,-0.002491,0.003750,0.249972,0,0);}
.m22_c00469{transform:matrix(0.166041,-0.002491,0.003750,0.249972,0,0);-ms-transform:matrix(0.166041,-0.002491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166041,-0.002491,0.003750,0.249972,0,0);}
.ma5_c00469{transform:matrix(0.166241,-0.002494,0.003750,0.249972,0,0);-ms-transform:matrix(0.166241,-0.002494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166241,-0.002494,0.003750,0.249972,0,0);}
.m55_c00469{transform:matrix(0.166266,-0.002494,0.003750,0.249972,0,0);-ms-transform:matrix(0.166266,-0.002494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166266,-0.002494,0.003750,0.249972,0,0);}
.mdb_c00469{transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);-ms-transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166463,-0.001998,0.003000,0.249982,0,0);}
.m2f_c00469{transform:matrix(0.166536,-0.002498,0.003750,0.249972,0,0);-ms-transform:matrix(0.166536,-0.002498,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166536,-0.002498,0.003750,0.249972,0,0);}
.m36_c00469{transform:matrix(0.166916,-0.002504,0.003750,0.249972,0,0);-ms-transform:matrix(0.166916,-0.002504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166916,-0.002504,0.003750,0.249972,0,0);}
.m31_c00469{transform:matrix(0.167251,-0.002509,0.003750,0.249972,0,0);-ms-transform:matrix(0.167251,-0.002509,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167251,-0.002509,0.003750,0.249972,0,0);}
.mac_c00469{transform:matrix(0.167701,-0.002516,0.003750,0.249972,0,0);-ms-transform:matrix(0.167701,-0.002516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167701,-0.002516,0.003750,0.249972,0,0);}
.m75_c00469{transform:matrix(0.167916,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167916,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167916,-0.002519,0.003750,0.249972,0,0);}
.m4f_c00469{transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167941,-0.002519,0.003750,0.249972,0,0);}
.mdd_c00469{transform:matrix(0.168998,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.168998,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168998,-0.002028,0.003000,0.249982,0,0);}
.ma2_c00469{transform:matrix(0.169121,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169121,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169121,-0.002537,0.003750,0.249972,0,0);}
.m68_c00469{transform:matrix(0.169216,-0.002538,0.003750,0.249972,0,0);-ms-transform:matrix(0.169216,-0.002538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169216,-0.002538,0.003750,0.249972,0,0);}
.m4a_c00469{transform:matrix(0.169221,-0.002538,0.003750,0.249972,0,0);-ms-transform:matrix(0.169221,-0.002538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169221,-0.002538,0.003750,0.249972,0,0);}
.mb0_c00469{transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);-ms-transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169546,-0.002543,0.003750,0.249972,0,0);}
.m33_c00469{transform:matrix(0.169616,-0.002544,0.003750,0.249972,0,0);-ms-transform:matrix(0.169616,-0.002544,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169616,-0.002544,0.003750,0.249972,0,0);}
.maf_c00469{transform:matrix(0.170086,-0.002551,0.003750,0.249972,0,0);-ms-transform:matrix(0.170086,-0.002551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170086,-0.002551,0.003750,0.249972,0,0);}
.m84_c00469{transform:matrix(0.170456,-0.002557,0.003750,0.249972,0,0);-ms-transform:matrix(0.170456,-0.002557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170456,-0.002557,0.003750,0.249972,0,0);}
.mdf_c00469{transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);-ms-transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170633,-0.002048,0.003000,0.249982,0,0);}
.md4_c00469{transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);-ms-transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);}
.m74_c00469{transform:matrix(0.171756,-0.002576,0.003750,0.249972,0,0);-ms-transform:matrix(0.171756,-0.002576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171756,-0.002576,0.003750,0.249972,0,0);}
.m3c_c00469{transform:matrix(0.171766,-0.002576,0.003750,0.249972,0,0);-ms-transform:matrix(0.171766,-0.002576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171766,-0.002576,0.003750,0.249972,0,0);}
.m52_c00469{transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);-ms-transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172146,-0.002582,0.003750,0.249972,0,0);}
.ma0_c00469{transform:matrix(0.172276,-0.002584,0.003750,0.249972,0,0);-ms-transform:matrix(0.172276,-0.002584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172276,-0.002584,0.003750,0.249972,0,0);}
.mdc_c00469{transform:matrix(0.172858,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172858,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172858,-0.002074,0.003000,0.249982,0,0);}
.m56_c00469{transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173151,-0.002597,0.003750,0.249972,0,0);}
.m30_c00469{transform:matrix(0.174125,-0.002612,0.003750,0.249972,0,0);-ms-transform:matrix(0.174125,-0.002612,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174125,-0.002612,0.003750,0.249972,0,0);}
.ma9_c00469{transform:matrix(0.174345,-0.002615,0.003750,0.249972,0,0);-ms-transform:matrix(0.174345,-0.002615,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174345,-0.002615,0.003750,0.249972,0,0);}
.m19_c00469{transform:matrix(0.175560,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175560,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175560,-0.002633,0.003750,0.249972,0,0);}
.mad_c00469{transform:matrix(0.175795,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175795,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175795,-0.002637,0.003750,0.249972,0,0);}
.m17_c00469{transform:matrix(0.175950,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175950,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175950,-0.002639,0.003750,0.249972,0,0);}
.m13_c00469{transform:matrix(0.175965,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175965,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175965,-0.002639,0.003750,0.249972,0,0);}
.md5_c00469{transform:matrix(0.176028,-0.002464,0.003500,0.249976,0,0);-ms-transform:matrix(0.176028,-0.002464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176028,-0.002464,0.003500,0.249976,0,0);}
.m1e_c00469{transform:matrix(0.176060,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176060,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176060,-0.002641,0.003750,0.249972,0,0);}
.m1d_c00469{transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176530,-0.002648,0.003750,0.249972,0,0);}
.m5_c00469{transform:matrix(0.176705,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176705,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176705,-0.002651,0.003750,0.249972,0,0);}
.m7e_c00469{transform:matrix(0.176875,-0.002653,0.003750,0.249972,0,0);-ms-transform:matrix(0.176875,-0.002653,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176875,-0.002653,0.003750,0.249972,0,0);}
.m7_c00469{transform:matrix(0.177085,-0.002656,0.003750,0.249972,0,0);-ms-transform:matrix(0.177085,-0.002656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177085,-0.002656,0.003750,0.249972,0,0);}
.m95_c00469{transform:matrix(0.177125,-0.002657,0.003750,0.249972,0,0);-ms-transform:matrix(0.177125,-0.002657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177125,-0.002657,0.003750,0.249972,0,0);}
.mae_c00469{transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177615,-0.002664,0.003750,0.249972,0,0);}
.me2_c00469{transform:matrix(0.177647,-0.002132,0.003000,0.249982,0,0);-ms-transform:matrix(0.177647,-0.002132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177647,-0.002132,0.003000,0.249982,0,0);}
.m9d_c00469{transform:matrix(0.178065,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178065,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178065,-0.002671,0.003750,0.249972,0,0);}
.m1f_c00469{transform:matrix(0.179130,-0.002687,0.003750,0.249972,0,0);-ms-transform:matrix(0.179130,-0.002687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179130,-0.002687,0.003750,0.249972,0,0);}
.m97_c00469{transform:matrix(0.179330,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179330,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179330,-0.002690,0.003750,0.249972,0,0);}
.m3f_c00469{transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-ms-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179425,-0.002691,0.003750,0.249972,0,0);}
.mb9_c00469{transform:matrix(0.179985,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.179985,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179985,-0.002700,0.003750,0.249972,0,0);}
.me6_c00469{transform:matrix(0.180132,-0.002162,0.003000,0.249982,0,0);-ms-transform:matrix(0.180132,-0.002162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180132,-0.002162,0.003000,0.249982,0,0);}
.m9_c00469{transform:matrix(0.180310,-0.002705,0.003750,0.249972,0,0);-ms-transform:matrix(0.180310,-0.002705,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180310,-0.002705,0.003750,0.249972,0,0);}
.m9a_c00469{transform:matrix(0.180585,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180585,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180585,-0.002709,0.003750,0.249972,0,0);}
.mbd_c00469{transform:matrix(0.181065,-0.002716,0.003750,0.249972,0,0);-ms-transform:matrix(0.181065,-0.002716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181065,-0.002716,0.003750,0.249972,0,0);}
.m29_c00469{transform:matrix(0.181115,-0.002717,0.003750,0.249972,0,0);-ms-transform:matrix(0.181115,-0.002717,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181115,-0.002717,0.003750,0.249972,0,0);}
.m3_c00469{transform:matrix(0.181145,-0.002717,0.003750,0.249972,0,0);-ms-transform:matrix(0.181145,-0.002717,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181145,-0.002717,0.003750,0.249972,0,0);}
.m28_c00469{transform:matrix(0.181235,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181235,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181235,-0.002719,0.003750,0.249972,0,0);}
.m3d_c00469{transform:matrix(0.181695,-0.002725,0.003750,0.249972,0,0);-ms-transform:matrix(0.181695,-0.002725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181695,-0.002725,0.003750,0.249972,0,0);}
.me7_c00469{transform:matrix(0.182012,-0.002184,0.003000,0.249982,0,0);-ms-transform:matrix(0.182012,-0.002184,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182012,-0.002184,0.003000,0.249982,0,0);}
.m82_c00469{transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);-ms-transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);}
.mab_c00469{transform:matrix(0.182210,-0.002733,0.003750,0.249972,0,0);-ms-transform:matrix(0.182210,-0.002733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182210,-0.002733,0.003750,0.249972,0,0);}
.m2a_c00469{transform:matrix(0.182284,-0.002734,0.003750,0.249972,0,0);-ms-transform:matrix(0.182284,-0.002734,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182284,-0.002734,0.003750,0.249972,0,0);}
.ma1_c00469{transform:matrix(0.182569,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182569,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182569,-0.002739,0.003750,0.249972,0,0);}
.ma6_c00469{transform:matrix(0.184404,-0.002766,0.003750,0.249972,0,0);-ms-transform:matrix(0.184404,-0.002766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184404,-0.002766,0.003750,0.249972,0,0);}
.mf_c00469{transform:matrix(0.184674,-0.002770,0.003750,0.249972,0,0);-ms-transform:matrix(0.184674,-0.002770,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184674,-0.002770,0.003750,0.249972,0,0);}
.m67_c00469{transform:matrix(0.185294,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185294,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185294,-0.002779,0.003750,0.249972,0,0);}
.m57_c00469{transform:matrix(0.185624,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185624,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185624,-0.002784,0.003750,0.249972,0,0);}
.mbf_c00469{transform:matrix(0.186054,-0.002791,0.003750,0.249972,0,0);-ms-transform:matrix(0.186054,-0.002791,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186054,-0.002791,0.003750,0.249972,0,0);}
.mc3_c00469{transform:matrix(0.186114,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186114,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186114,-0.002792,0.003750,0.249972,0,0);}
.m1a_c00469{transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186199,-0.002793,0.003750,0.249972,0,0);}
.m53_c00469{transform:matrix(0.186299,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186299,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186299,-0.002794,0.003750,0.249972,0,0);}
.m79_c00469{transform:matrix(0.186399,-0.002796,0.003750,0.249972,0,0);-ms-transform:matrix(0.186399,-0.002796,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186399,-0.002796,0.003750,0.249972,0,0);}
.m25_c00469{transform:matrix(0.186434,-0.002797,0.003750,0.249972,0,0);-ms-transform:matrix(0.186434,-0.002797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186434,-0.002797,0.003750,0.249972,0,0);}
.m87_c00469{transform:matrix(0.186544,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186544,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186544,-0.002798,0.003750,0.249972,0,0);}
.m66_c00469{transform:matrix(0.187754,-0.002816,0.003750,0.249972,0,0);-ms-transform:matrix(0.187754,-0.002816,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187754,-0.002816,0.003750,0.249972,0,0);}
.mc_c00469{transform:matrix(0.188149,-0.002822,0.003750,0.249972,0,0);-ms-transform:matrix(0.188149,-0.002822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188149,-0.002822,0.003750,0.249972,0,0);}
.mde_c00469{transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);-ms-transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188171,-0.002258,0.003000,0.249982,0,0);}
.m12_c00469{transform:matrix(0.188499,-0.002827,0.003750,0.249972,0,0);-ms-transform:matrix(0.188499,-0.002827,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188499,-0.002827,0.003750,0.249972,0,0);}
.m85_c00469{transform:matrix(0.188894,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188894,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188894,-0.002833,0.003750,0.249972,0,0);}
.m5e_c00469{transform:matrix(0.188974,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.188974,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188974,-0.002835,0.003750,0.249972,0,0);}
.mc1_c00469{transform:matrix(0.189069,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189069,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189069,-0.002836,0.003750,0.249972,0,0);}
.mcf_c00469{transform:matrix(0.189874,-0.002848,0.003750,0.249972,0,0);-ms-transform:matrix(0.189874,-0.002848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189874,-0.002848,0.003750,0.249972,0,0);}
.mbe_c00469{transform:matrix(0.190039,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190039,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190039,-0.002851,0.003750,0.249972,0,0);}
.m80_c00469{transform:matrix(0.190119,-0.002852,0.003750,0.249972,0,0);-ms-transform:matrix(0.190119,-0.002852,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190119,-0.002852,0.003750,0.249972,0,0);}
.m45_c00469{transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);}
.m77_c00469{transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190654,-0.002860,0.003750,0.249972,0,0);}
.ma4_c00469{transform:matrix(0.190784,-0.002862,0.003750,0.249972,0,0);-ms-transform:matrix(0.190784,-0.002862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190784,-0.002862,0.003750,0.249972,0,0);}
.m20_c00469{transform:matrix(0.190859,-0.002863,0.003750,0.249972,0,0);-ms-transform:matrix(0.190859,-0.002863,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190859,-0.002863,0.003750,0.249972,0,0);}
.m26_c00469{transform:matrix(0.191883,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191883,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191883,-0.002878,0.003750,0.249972,0,0);}
.m8d_c00469{transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);}
.m4d_c00469{transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);}
.mcd_c00469{transform:matrix(0.192808,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192808,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192808,-0.002892,0.003750,0.249972,0,0);}
.m63_c00469{transform:matrix(0.193408,-0.002901,0.003750,0.249972,0,0);-ms-transform:matrix(0.193408,-0.002901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193408,-0.002901,0.003750,0.249972,0,0);}
.m98_c00469{transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193858,-0.002908,0.003750,0.249972,0,0);}
.maa_c00469{transform:matrix(0.194023,-0.002910,0.003750,0.249972,0,0);-ms-transform:matrix(0.194023,-0.002910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194023,-0.002910,0.003750,0.249972,0,0);}
.m4_c00469{transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194338,-0.002915,0.003750,0.249972,0,0);}
.mb8_c00469{transform:matrix(0.194403,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194403,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194403,-0.002916,0.003750,0.249972,0,0);}
.m83_c00469{transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194638,-0.002920,0.003750,0.249972,0,0);}
.md3_c00469{transform:matrix(0.194946,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194946,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194946,-0.002729,0.003500,0.249976,0,0);}
.m5d_c00469{transform:matrix(0.195093,-0.002926,0.003750,0.249972,0,0);-ms-transform:matrix(0.195093,-0.002926,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195093,-0.002926,0.003750,0.249972,0,0);}
.m94_c00469{transform:matrix(0.195313,-0.002930,0.003750,0.249972,0,0);-ms-transform:matrix(0.195313,-0.002930,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195313,-0.002930,0.003750,0.249972,0,0);}
.m3e_c00469{transform:matrix(0.195728,-0.002936,0.003750,0.249972,0,0);-ms-transform:matrix(0.195728,-0.002936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195728,-0.002936,0.003750,0.249972,0,0);}
.m65_c00469{transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);-ms-transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195843,-0.002938,0.003750,0.249972,0,0);}
.m37_c00469{transform:matrix(0.195873,-0.002938,0.003750,0.249972,0,0);-ms-transform:matrix(0.195873,-0.002938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195873,-0.002938,0.003750,0.249972,0,0);}
.m7f_c00469{transform:matrix(0.196118,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196118,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196118,-0.002942,0.003750,0.249972,0,0);}
.ma3_c00469{transform:matrix(0.197328,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197328,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197328,-0.002960,0.003750,0.249972,0,0);}
.m21_c00469{transform:matrix(0.197928,-0.002969,0.003750,0.249972,0,0);-ms-transform:matrix(0.197928,-0.002969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197928,-0.002969,0.003750,0.249972,0,0);}
.m59_c00469{transform:matrix(0.197938,-0.002969,0.003750,0.249972,0,0);-ms-transform:matrix(0.197938,-0.002969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197938,-0.002969,0.003750,0.249972,0,0);}
.m5c_c00469{transform:matrix(0.198108,-0.002972,0.003750,0.249972,0,0);-ms-transform:matrix(0.198108,-0.002972,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198108,-0.002972,0.003750,0.249972,0,0);}
.m51_c00469{transform:matrix(0.198143,-0.002972,0.003750,0.249972,0,0);-ms-transform:matrix(0.198143,-0.002972,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198143,-0.002972,0.003750,0.249972,0,0);}
.mb7_c00469{transform:matrix(0.198193,-0.002973,0.003750,0.249972,0,0);-ms-transform:matrix(0.198193,-0.002973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198193,-0.002973,0.003750,0.249972,0,0);}
.m35_c00469{transform:matrix(0.198753,-0.002981,0.003750,0.249972,0,0);-ms-transform:matrix(0.198753,-0.002981,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198753,-0.002981,0.003750,0.249972,0,0);}
.m49_c00469{transform:matrix(0.199213,-0.002988,0.003750,0.249972,0,0);-ms-transform:matrix(0.199213,-0.002988,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199213,-0.002988,0.003750,0.249972,0,0);}
.mda_c00469{transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);}
.md0_c00469{transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);-ms-transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);}
.m89_c00469{transform:matrix(0.200372,-0.003006,0.003750,0.249972,0,0);-ms-transform:matrix(0.200372,-0.003006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200372,-0.003006,0.003750,0.249972,0,0);}
.mba_c00469{transform:matrix(0.200432,-0.003006,0.003750,0.249972,0,0);-ms-transform:matrix(0.200432,-0.003006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200432,-0.003006,0.003750,0.249972,0,0);}
.ma7_c00469{transform:matrix(0.200622,-0.003009,0.003750,0.249972,0,0);-ms-transform:matrix(0.200622,-0.003009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200622,-0.003009,0.003750,0.249972,0,0);}
.m73_c00469{transform:matrix(0.200692,-0.003010,0.003750,0.249972,0,0);-ms-transform:matrix(0.200692,-0.003010,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200692,-0.003010,0.003750,0.249972,0,0);}
.m27_c00469{transform:matrix(0.200842,-0.003013,0.003750,0.249972,0,0);-ms-transform:matrix(0.200842,-0.003013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200842,-0.003013,0.003750,0.249972,0,0);}
.m34_c00469{transform:matrix(0.201252,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201252,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201252,-0.003019,0.003750,0.249972,0,0);}
.m41_c00469{transform:matrix(0.201592,-0.003024,0.003750,0.249972,0,0);-ms-transform:matrix(0.201592,-0.003024,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201592,-0.003024,0.003750,0.249972,0,0);}
.m8a_c00469{transform:matrix(0.201802,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201802,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201802,-0.003027,0.003750,0.249972,0,0);}
.mc8_c00469{transform:matrix(0.202047,-0.003031,0.003750,0.249972,0,0);-ms-transform:matrix(0.202047,-0.003031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202047,-0.003031,0.003750,0.249972,0,0);}
.m96_c00469{transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202627,-0.003039,0.003750,0.249972,0,0);}
.m9f_c00469{transform:matrix(0.203942,-0.003059,0.003750,0.249972,0,0);-ms-transform:matrix(0.203942,-0.003059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203942,-0.003059,0.003750,0.249972,0,0);}
.m5a_c00469{transform:matrix(0.203967,-0.003060,0.003750,0.249972,0,0);-ms-transform:matrix(0.203967,-0.003060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203967,-0.003060,0.003750,0.249972,0,0);}
.m40_c00469{transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);}
.m60_c00469{transform:matrix(0.204287,-0.003064,0.003750,0.249972,0,0);-ms-transform:matrix(0.204287,-0.003064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204287,-0.003064,0.003750,0.249972,0,0);}
.m6c_c00469{transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204887,-0.003073,0.003750,0.249972,0,0);}
.m47_c00469{transform:matrix(0.206087,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206087,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206087,-0.003091,0.003750,0.249972,0,0);}
.m6f_c00469{transform:matrix(0.206202,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206202,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206202,-0.003093,0.003750,0.249972,0,0);}
.m2c_c00469{transform:matrix(0.207227,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207227,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207227,-0.003108,0.003750,0.249972,0,0);}
.mb6_c00469{transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207582,-0.003114,0.003750,0.249972,0,0);}
.m9b_c00469{transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);-ms-transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);}
.mc9_c00469{transform:matrix(0.208212,-0.003123,0.003750,0.249972,0,0);-ms-transform:matrix(0.208212,-0.003123,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208212,-0.003123,0.003750,0.249972,0,0);}
.m8_c00469{transform:matrix(0.208272,-0.003124,0.003750,0.249972,0,0);-ms-transform:matrix(0.208272,-0.003124,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208272,-0.003124,0.003750,0.249972,0,0);}
.me5_c00469{transform:matrix(0.208925,-0.002507,0.003000,0.249982,0,0);-ms-transform:matrix(0.208925,-0.002507,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208925,-0.002507,0.003000,0.249982,0,0);}
.m92_c00469{transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);}
.m6a_c00469{transform:matrix(0.210001,-0.003150,0.003750,0.249972,0,0);-ms-transform:matrix(0.210001,-0.003150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210001,-0.003150,0.003750,0.249972,0,0);}
.md1_c00469{transform:matrix(0.210431,-0.003156,0.003750,0.249972,0,0);-ms-transform:matrix(0.210431,-0.003156,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210431,-0.003156,0.003750,0.249972,0,0);}
.m7d_c00469{transform:matrix(0.210561,-0.003158,0.003750,0.249972,0,0);-ms-transform:matrix(0.210561,-0.003158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210561,-0.003158,0.003750,0.249972,0,0);}
.m58_c00469{transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);-ms-transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210751,-0.003161,0.003750,0.249972,0,0);}
.m8b_c00469{transform:matrix(0.210986,-0.003165,0.003750,0.249972,0,0);-ms-transform:matrix(0.210986,-0.003165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210986,-0.003165,0.003750,0.249972,0,0);}
.m39_c00469{transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);-ms-transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211041,-0.003166,0.003750,0.249972,0,0);}
.mbb_c00469{transform:matrix(0.211211,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211211,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211211,-0.003168,0.003750,0.249972,0,0);}
.m5b_c00469{transform:matrix(0.211266,-0.003169,0.003750,0.249972,0,0);-ms-transform:matrix(0.211266,-0.003169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211266,-0.003169,0.003750,0.249972,0,0);}
.m4b_c00469{transform:matrix(0.211386,-0.003171,0.003750,0.249972,0,0);-ms-transform:matrix(0.211386,-0.003171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211386,-0.003171,0.003750,0.249972,0,0);}
.mb_c00469{transform:matrix(0.211491,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211491,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211491,-0.003172,0.003750,0.249972,0,0);}
.md7_c00469{transform:matrix(0.211659,-0.002963,0.003500,0.249976,0,0);-ms-transform:matrix(0.211659,-0.002963,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211659,-0.002963,0.003500,0.249976,0,0);}
.m3a_c00469{transform:matrix(0.211806,-0.003177,0.003750,0.249972,0,0);-ms-transform:matrix(0.211806,-0.003177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211806,-0.003177,0.003750,0.249972,0,0);}
.m62_c00469{transform:matrix(0.212236,-0.003184,0.003750,0.249972,0,0);-ms-transform:matrix(0.212236,-0.003184,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212236,-0.003184,0.003750,0.249972,0,0);}
.mb3_c00469{transform:matrix(0.212691,-0.003190,0.003750,0.249972,0,0);-ms-transform:matrix(0.212691,-0.003190,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212691,-0.003190,0.003750,0.249972,0,0);}
.md6_c00469{transform:matrix(0.213309,-0.002986,0.003500,0.249976,0,0);-ms-transform:matrix(0.213309,-0.002986,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213309,-0.002986,0.003500,0.249976,0,0);}
.m64_c00469{transform:matrix(0.213441,-0.003202,0.003750,0.249972,0,0);-ms-transform:matrix(0.213441,-0.003202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213441,-0.003202,0.003750,0.249972,0,0);}
.m8f_c00469{transform:matrix(0.215066,-0.003226,0.003750,0.249972,0,0);-ms-transform:matrix(0.215066,-0.003226,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215066,-0.003226,0.003750,0.249972,0,0);}
.m6b_c00469{transform:matrix(0.215821,-0.003237,0.003750,0.249972,0,0);-ms-transform:matrix(0.215821,-0.003237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215821,-0.003237,0.003750,0.249972,0,0);}
.m69_c00469{transform:matrix(0.216281,-0.003244,0.003750,0.249972,0,0);-ms-transform:matrix(0.216281,-0.003244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216281,-0.003244,0.003750,0.249972,0,0);}
.mb5_c00469{transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216911,-0.003254,0.003750,0.249972,0,0);}
.m90_c00469{transform:matrix(0.216991,-0.003255,0.003750,0.249972,0,0);-ms-transform:matrix(0.216991,-0.003255,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216991,-0.003255,0.003750,0.249972,0,0);}
.m6d_c00469{transform:matrix(0.217231,-0.003258,0.003750,0.249972,0,0);-ms-transform:matrix(0.217231,-0.003258,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217231,-0.003258,0.003750,0.249972,0,0);}
.mc6_c00469{transform:matrix(0.217341,-0.003260,0.003750,0.249972,0,0);-ms-transform:matrix(0.217341,-0.003260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217341,-0.003260,0.003750,0.249972,0,0);}
.m50_c00469{transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);-ms-transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);}
.m81_c00469{transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217681,-0.003265,0.003750,0.249972,0,0);}
.m99_c00469{transform:matrix(0.219030,-0.003285,0.003750,0.249972,0,0);-ms-transform:matrix(0.219030,-0.003285,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219030,-0.003285,0.003750,0.249972,0,0);}
.m1b_c00469{transform:matrix(0.219325,-0.003290,0.003750,0.249972,0,0);-ms-transform:matrix(0.219325,-0.003290,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219325,-0.003290,0.003750,0.249972,0,0);}
.m86_c00469{transform:matrix(0.220025,-0.003300,0.003750,0.249972,0,0);-ms-transform:matrix(0.220025,-0.003300,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220025,-0.003300,0.003750,0.249972,0,0);}
.me0_c00469{transform:matrix(0.220684,-0.002648,0.003000,0.249982,0,0);-ms-transform:matrix(0.220684,-0.002648,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220684,-0.002648,0.003000,0.249982,0,0);}
.m4e_c00469{transform:matrix(0.220720,-0.003311,0.003750,0.249972,0,0);-ms-transform:matrix(0.220720,-0.003311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220720,-0.003311,0.003750,0.249972,0,0);}
.m93_c00469{transform:matrix(0.221095,-0.003316,0.003750,0.249972,0,0);-ms-transform:matrix(0.221095,-0.003316,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221095,-0.003316,0.003750,0.249972,0,0);}
.m42_c00469{transform:matrix(0.221275,-0.003319,0.003750,0.249972,0,0);-ms-transform:matrix(0.221275,-0.003319,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221275,-0.003319,0.003750,0.249972,0,0);}
.mc7_c00469{transform:matrix(0.221360,-0.003320,0.003750,0.249972,0,0);-ms-transform:matrix(0.221360,-0.003320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221360,-0.003320,0.003750,0.249972,0,0);}
.mb4_c00469{transform:matrix(0.221585,-0.003324,0.003750,0.249972,0,0);-ms-transform:matrix(0.221585,-0.003324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221585,-0.003324,0.003750,0.249972,0,0);}
.md_c00469{transform:matrix(0.222085,-0.003331,0.003750,0.249972,0,0);-ms-transform:matrix(0.222085,-0.003331,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222085,-0.003331,0.003750,0.249972,0,0);}
.m6e_c00469{transform:matrix(0.223110,-0.003347,0.003750,0.249972,0,0);-ms-transform:matrix(0.223110,-0.003347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223110,-0.003347,0.003750,0.249972,0,0);}
.md9_c00469{transform:matrix(0.223268,-0.003126,0.003500,0.249976,0,0);-ms-transform:matrix(0.223268,-0.003126,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223268,-0.003126,0.003500,0.249976,0,0);}
.m7b_c00469{transform:matrix(0.224470,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224470,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224470,-0.003367,0.003750,0.249972,0,0);}
.m7c_c00469{transform:matrix(0.227364,-0.003410,0.003750,0.249972,0,0);-ms-transform:matrix(0.227364,-0.003410,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227364,-0.003410,0.003750,0.249972,0,0);}
.mb1_c00469{transform:matrix(0.229069,-0.003436,0.003750,0.249972,0,0);-ms-transform:matrix(0.229069,-0.003436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229069,-0.003436,0.003750,0.249972,0,0);}
.m3b_c00469{transform:matrix(0.230534,-0.003458,0.003750,0.249972,0,0);-ms-transform:matrix(0.230534,-0.003458,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230534,-0.003458,0.003750,0.249972,0,0);}
.ma8_c00469{transform:matrix(0.231054,-0.003466,0.003750,0.249972,0,0);-ms-transform:matrix(0.231054,-0.003466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231054,-0.003466,0.003750,0.249972,0,0);}
.m6_c00469{transform:matrix(0.232599,-0.003489,0.003750,0.249972,0,0);-ms-transform:matrix(0.232599,-0.003489,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232599,-0.003489,0.003750,0.249972,0,0);}
.mca_c00469{transform:matrix(0.233904,-0.003509,0.003750,0.249972,0,0);-ms-transform:matrix(0.233904,-0.003509,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233904,-0.003509,0.003750,0.249972,0,0);}
.m91_c00469{transform:matrix(0.235304,-0.003530,0.003750,0.249972,0,0);-ms-transform:matrix(0.235304,-0.003530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235304,-0.003530,0.003750,0.249972,0,0);}
.m8c_c00469{transform:matrix(0.235449,-0.003532,0.003750,0.249972,0,0);-ms-transform:matrix(0.235449,-0.003532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235449,-0.003532,0.003750,0.249972,0,0);}
.mbc_c00469{transform:matrix(0.235464,-0.003532,0.003750,0.249972,0,0);-ms-transform:matrix(0.235464,-0.003532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235464,-0.003532,0.003750,0.249972,0,0);}
.m71_c00469{transform:matrix(0.236908,-0.003554,0.003750,0.249972,0,0);-ms-transform:matrix(0.236908,-0.003554,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236908,-0.003554,0.003750,0.249972,0,0);}
.m16_c00469{transform:matrix(0.237703,-0.003566,0.003750,0.249972,0,0);-ms-transform:matrix(0.237703,-0.003566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237703,-0.003566,0.003750,0.249972,0,0);}
.m70_c00469{transform:matrix(0.238918,-0.003584,0.003750,0.249972,0,0);-ms-transform:matrix(0.238918,-0.003584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238918,-0.003584,0.003750,0.249972,0,0);}
.mb2_c00469{transform:matrix(0.239458,-0.003592,0.003750,0.249972,0,0);-ms-transform:matrix(0.239458,-0.003592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239458,-0.003592,0.003750,0.249972,0,0);}
.m38_c00469{transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-ms-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);}
.m72_c00469{transform:matrix(0.242948,-0.003644,0.003750,0.249972,0,0);-ms-transform:matrix(0.242948,-0.003644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242948,-0.003644,0.003750,0.249972,0,0);}
.mcc_c00469{transform:matrix(0.253157,-0.003797,0.003750,0.249972,0,0);-ms-transform:matrix(0.253157,-0.003797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253157,-0.003797,0.003750,0.249972,0,0);}
.ma_c00469{transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);-ms-transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);}
.me4_c00469{transform:matrix(0.257781,-0.003093,0.003000,0.249982,0,0);-ms-transform:matrix(0.257781,-0.003093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257781,-0.003093,0.003000,0.249982,0,0);}
.m44_c00469{transform:matrix(0.288403,-0.004326,0.003750,0.249972,0,0);-ms-transform:matrix(0.288403,-0.004326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288403,-0.004326,0.003750,0.249972,0,0);}
.m15_c00469{transform:matrix(0.293672,-0.004405,0.003750,0.249972,0,0);-ms-transform:matrix(0.293672,-0.004405,0.003750,0.249972,0,0);-webkit-transform:matrix(0.293672,-0.004405,0.003750,0.249972,0,0);}
.m24_c00469{transform:matrix(0.313905,-0.004709,0.003750,0.249972,0,0);-ms-transform:matrix(0.313905,-0.004709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313905,-0.004709,0.003750,0.249972,0,0);}
.m1c_c00469{transform:matrix(0.324668,-0.004870,0.003750,0.249972,0,0);-ms-transform:matrix(0.324668,-0.004870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.324668,-0.004870,0.003750,0.249972,0,0);}
.m43_c00469{transform:matrix(0.328898,-0.004933,0.003750,0.249972,0,0);-ms-transform:matrix(0.328898,-0.004933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.328898,-0.004933,0.003750,0.249972,0,0);}
.m23_c00469{transform:matrix(0.358620,-0.005379,0.003750,0.249972,0,0);-ms-transform:matrix(0.358620,-0.005379,0.003750,0.249972,0,0);-webkit-transform:matrix(0.358620,-0.005379,0.003750,0.249972,0,0);}
.m9c_c00469{transform:matrix(0.363659,-0.005455,0.003750,0.249972,0,0);-ms-transform:matrix(0.363659,-0.005455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.363659,-0.005455,0.003750,0.249972,0,0);}
.mc2_c00469{transform:matrix(0.436726,-0.006551,0.003750,0.249972,0,0);-ms-transform:matrix(0.436726,-0.006551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.436726,-0.006551,0.003750,0.249972,0,0);}
.m8e_c00469{transform:matrix(0.469732,-0.007046,0.003750,0.249972,0,0);-ms-transform:matrix(0.469732,-0.007046,0.003750,0.249972,0,0);-webkit-transform:matrix(0.469732,-0.007046,0.003750,0.249972,0,0);}
.mc5_c00469{transform:matrix(0.748771,-0.011232,0.003750,0.249972,0,0);-ms-transform:matrix(0.748771,-0.011232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.748771,-0.011232,0.003750,0.249972,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
._0_c00469{width:24.329483px;}
.fc0_c00469{color:transparent;}
.fs13_c00469{font-size:24.150000px;}
.fsc_c00469{font-size:57.756497px;}
.fsf_c00469{font-size:58.806615px;}
.fs6_c00469{font-size:59.856733px;}
.fs9_c00469{font-size:60.906851px;}
.fsd_c00469{font-size:61.956969px;}
.fse_c00469{font-size:63.007087px;}
.fs10_c00469{font-size:64.056277px;}
.fsa_c00469{font-size:64.057205px;}
.fs11_c00469{font-size:65.104687px;}
.fs7_c00469{font-size:65.107323px;}
.fs8_c00469{font-size:66.157441px;}
.fs12_c00469{font-size:67.204838px;}
.fs4_c00469{font-size:67.207560px;}
.fs1_c00469{font-size:68.257678px;}
.fs2_c00469{font-size:69.307796px;}
.fsb_c00469{font-size:70.357914px;}
.fs3_c00469{font-size:71.408032px;}
.fs5_c00469{font-size:72.458150px;}
.fs0_c00469{font-size:116.550000px;}
.y0_c00469{bottom:0.000000px;}
.ye2_c00469{bottom:33.481116px;}
.ye3_c00469{bottom:33.828570px;}
.ye4_c00469{bottom:34.798710px;}
.ye5_c00469{bottom:35.324610px;}
.ye6_c00469{bottom:36.189912px;}
.ye7_c00469{bottom:36.481194px;}
.ye8_c00469{bottom:37.377276px;}
.ydb_c00469{bottom:49.141500px;}
.ydc_c00469{bottom:49.744140px;}
.ydd_c00469{bottom:49.912602px;}
.yde_c00469{bottom:50.284716px;}
.ydf_c00469{bottom:50.742150px;}
.ye0_c00469{bottom:51.325314px;}
.ye1_c00469{bottom:51.565128px;}
.yd3_c00469{bottom:66.151500px;}
.yd4_c00469{bottom:66.375339px;}
.yd5_c00469{bottom:67.105173px;}
.yd6_c00469{bottom:67.974384px;}
.yd7_c00469{bottom:68.827635px;}
.yd8_c00469{bottom:68.942190px;}
.yd9_c00469{bottom:69.481932px;}
.yda_c00469{bottom:69.690504px;}
.yce_c00469{bottom:84.521415px;}
.yd0_c00469{bottom:84.521752px;}
.ycf_c00469{bottom:84.522075px;}
.yd1_c00469{bottom:84.522435px;}
.yd2_c00469{bottom:84.522660px;}
.yc8_c00469{bottom:101.170365px;}
.yc6_c00469{bottom:101.170417px;}
.ycb_c00469{bottom:101.170507px;}
.ycd_c00469{bottom:101.170545px;}
.ycc_c00469{bottom:101.170567px;}
.yc7_c00469{bottom:101.171055px;}
.yc9_c00469{bottom:101.171070px;}
.yca_c00469{bottom:101.171152px;}
.ybf_c00469{bottom:116.402910px;}
.yc4_c00469{bottom:116.402940px;}
.yc5_c00469{bottom:116.403315px;}
.yc2_c00469{bottom:116.403352px;}
.yc3_c00469{bottom:116.403457px;}
.yc0_c00469{bottom:116.403465px;}
.yc1_c00469{bottom:116.403592px;}
.ybc_c00469{bottom:138.109117px;}
.ybb_c00469{bottom:138.109380px;}
.yba_c00469{bottom:138.109425px;}
.ybd_c00469{bottom:138.109605px;}
.yb9_c00469{bottom:138.109665px;}
.ybe_c00469{bottom:138.110220px;}
.yb3_c00469{bottom:150.631800px;}
.yb4_c00469{bottom:151.769715px;}
.yb5_c00469{bottom:152.316285px;}
.yb6_c00469{bottom:153.312585px;}
.yb7_c00469{bottom:153.644640px;}
.yb8_c00469{bottom:154.374225px;}
.yab_c00469{bottom:169.208295px;}
.yaa_c00469{bottom:169.208362px;}
.yac_c00469{bottom:169.208700px;}
.yad_c00469{bottom:169.208932px;}
.yae_c00469{bottom:169.209315px;}
.yb0_c00469{bottom:169.209480px;}
.yb1_c00469{bottom:169.209607px;}
.yaf_c00469{bottom:169.209675px;}
.yb2_c00469{bottom:169.210290px;}
.ya7_c00469{bottom:186.111900px;}
.ya6_c00469{bottom:186.112095px;}
.ya8_c00469{bottom:186.112305px;}
.ya2_c00469{bottom:186.112388px;}
.ya4_c00469{bottom:186.112552px;}
.ya5_c00469{bottom:186.112590px;}
.ya3_c00469{bottom:186.112597px;}
.ya9_c00469{bottom:186.112792px;}
.ya0_c00469{bottom:203.521155px;}
.ya1_c00469{bottom:203.521275px;}
.y9f_c00469{bottom:203.521845px;}
.y9e_c00469{bottom:203.522040px;}
.y9d_c00469{bottom:203.522625px;}
.y99_c00469{bottom:220.487422px;}
.y9a_c00469{bottom:220.487460px;}
.y9b_c00469{bottom:220.488052px;}
.y9c_c00469{bottom:220.488690px;}
.y97_c00469{bottom:237.375165px;}
.y92_c00469{bottom:237.375225px;}
.y96_c00469{bottom:237.375382px;}
.y93_c00469{bottom:237.375457px;}
.y98_c00469{bottom:237.375525px;}
.y95_c00469{bottom:237.375645px;}
.y94_c00469{bottom:237.376140px;}
.y8c_c00469{bottom:253.972215px;}
.y8d_c00469{bottom:253.972620px;}
.y8b_c00469{bottom:253.972710px;}
.y8e_c00469{bottom:253.972807px;}
.y91_c00469{bottom:253.973160px;}
.y90_c00469{bottom:253.973205px;}
.y8f_c00469{bottom:253.973317px;}
.y83_c00469{bottom:270.612217px;}
.y84_c00469{bottom:270.612555px;}
.y86_c00469{bottom:270.612593px;}
.y89_c00469{bottom:270.612712px;}
.y88_c00469{bottom:270.612757px;}
.y8a_c00469{bottom:270.612990px;}
.y85_c00469{bottom:270.613260px;}
.y87_c00469{bottom:270.613297px;}
.y7d_c00469{bottom:287.352217px;}
.y7e_c00469{bottom:287.352405px;}
.y7c_c00469{bottom:287.352630px;}
.y7b_c00469{bottom:287.352975px;}
.y7f_c00469{bottom:287.352982px;}
.y80_c00469{bottom:287.353560px;}
.y81_c00469{bottom:287.353620px;}
.y82_c00469{bottom:287.353747px;}
.y77_c00469{bottom:303.924412px;}
.y76_c00469{bottom:303.924607px;}
.y78_c00469{bottom:303.924690px;}
.y75_c00469{bottom:303.924930px;}
.y73_c00469{bottom:303.925215px;}
.y79_c00469{bottom:303.925327px;}
.y74_c00469{bottom:303.925470px;}
.y7a_c00469{bottom:303.926032px;}
.y72_c00469{bottom:321.344430px;}
.y6f_c00469{bottom:321.344542px;}
.y6e_c00469{bottom:321.344932px;}
.y70_c00469{bottom:321.344970px;}
.y71_c00469{bottom:321.345052px;}
.y6d_c00469{bottom:321.345127px;}
.y6b_c00469{bottom:321.345330px;}
.y6c_c00469{bottom:321.345540px;}
.y6a_c00469{bottom:338.418127px;}
.y64_c00469{bottom:338.418405px;}
.y69_c00469{bottom:338.418622px;}
.y67_c00469{bottom:338.418675px;}
.y65_c00469{bottom:338.418937px;}
.y66_c00469{bottom:338.419147px;}
.y68_c00469{bottom:338.419290px;}
.y5e_c00469{bottom:355.108605px;}
.y5c_c00469{bottom:355.108762px;}
.y5f_c00469{bottom:355.108815px;}
.y60_c00469{bottom:355.109242px;}
.y5d_c00469{bottom:355.109340px;}
.y61_c00469{bottom:355.109752px;}
.y63_c00469{bottom:355.110007px;}
.y62_c00469{bottom:355.110480px;}
.y54_c00469{bottom:371.238120px;}
.y55_c00469{bottom:371.477700px;}
.y56_c00469{bottom:371.737822px;}
.y57_c00469{bottom:371.934600px;}
.y58_c00469{bottom:372.660585px;}
.y59_c00469{bottom:372.930457px;}
.y5a_c00469{bottom:373.625835px;}
.y5b_c00469{bottom:374.272012px;}
.y4d_c00469{bottom:387.978555px;}
.y4e_c00469{bottom:388.537792px;}
.y4f_c00469{bottom:389.093580px;}
.y50_c00469{bottom:389.404447px;}
.y51_c00469{bottom:389.939332px;}
.y52_c00469{bottom:390.500820px;}
.y53_c00469{bottom:390.776092px;}
.y4b_c00469{bottom:405.800527px;}
.y4a_c00469{bottom:405.800572px;}
.y49_c00469{bottom:405.800812px;}
.y47_c00469{bottom:405.800925px;}
.y4c_c00469{bottom:405.801015px;}
.y48_c00469{bottom:405.801435px;}
.y43_c00469{bottom:423.468360px;}
.y3f_c00469{bottom:423.468930px;}
.y44_c00469{bottom:423.468937px;}
.y40_c00469{bottom:423.469035px;}
.y42_c00469{bottom:423.469072px;}
.y41_c00469{bottom:423.469095px;}
.y46_c00469{bottom:423.469230px;}
.y45_c00469{bottom:423.469365px;}
.y37_c00469{bottom:440.307532px;}
.y3c_c00469{bottom:440.307885px;}
.y39_c00469{bottom:440.308042px;}
.y38_c00469{bottom:440.308065px;}
.y3a_c00469{bottom:440.308170px;}
.y3b_c00469{bottom:440.308507px;}
.y3d_c00469{bottom:440.308567px;}
.y3e_c00469{bottom:440.308882px;}
.y2e_c00469{bottom:456.930067px;}
.y2f_c00469{bottom:456.930750px;}
.y34_c00469{bottom:456.930802px;}
.y33_c00469{bottom:456.930825px;}
.y35_c00469{bottom:456.930840px;}
.y36_c00469{bottom:456.930967px;}
.y30_c00469{bottom:456.931177px;}
.y32_c00469{bottom:456.931192px;}
.y31_c00469{bottom:456.931687px;}
.y2b_c00469{bottom:473.818005px;}
.y2d_c00469{bottom:473.818297px;}
.y2a_c00469{bottom:473.818477px;}
.y2c_c00469{bottom:473.818620px;}
.y27_c00469{bottom:473.818725px;}
.y26_c00469{bottom:473.818897px;}
.y28_c00469{bottom:473.818912px;}
.y29_c00469{bottom:473.819040px;}
.ye9_c00469{bottom:475.470000px;}
.y1f_c00469{bottom:489.775515px;}
.y20_c00469{bottom:490.113750px;}
.y21_c00469{bottom:490.945920px;}
.y22_c00469{bottom:491.243587px;}
.y23_c00469{bottom:491.840332px;}
.y24_c00469{bottom:492.261832px;}
.y25_c00469{bottom:492.977775px;}
.y18_c00469{bottom:506.247862px;}
.y19_c00469{bottom:507.041970px;}
.y1a_c00469{bottom:507.220410px;}
.y1b_c00469{bottom:507.879397px;}
.y1c_c00469{bottom:508.040850px;}
.y1d_c00469{bottom:508.585230px;}
.y1e_c00469{bottom:509.322637px;}
.y10_c00469{bottom:522.720682px;}
.y11_c00469{bottom:523.232175px;}
.y12_c00469{bottom:523.950090px;}
.y13_c00469{bottom:524.581597px;}
.y14_c00469{bottom:524.830920px;}
.y15_c00469{bottom:525.458377px;}
.y16_c00469{bottom:525.730230px;}
.y17_c00469{bottom:526.587315px;}
.y8_c00469{bottom:539.731207px;}
.y9_c00469{bottom:539.968628px;}
.ya_c00469{bottom:540.794827px;}
.yb_c00469{bottom:541.063005px;}
.yc_c00469{bottom:541.810943px;}
.yd_c00469{bottom:541.963927px;}
.ye_c00469{bottom:542.596267px;}
.yf_c00469{bottom:542.997405px;}
.y2_c00469{bottom:556.473000px;}
.y3_c00469{bottom:557.052825px;}
.y4_c00469{bottom:557.749537px;}
.y5_c00469{bottom:558.903833px;}
.y6_c00469{bottom:559.236022px;}
.y7_c00469{bottom:560.090527px;}
.y1_c00469{bottom:571.612500px;}
.h15_c00469{height:24.150000px;}
.he_c00469{height:57.756497px;}
.h11_c00469{height:58.806615px;}
.h8_c00469{height:59.856733px;}
.hb_c00469{height:60.906851px;}
.hf_c00469{height:61.956969px;}
.h10_c00469{height:63.007087px;}
.h12_c00469{height:64.056277px;}
.hc_c00469{height:64.057205px;}
.h13_c00469{height:65.104687px;}
.h9_c00469{height:65.107323px;}
.ha_c00469{height:66.157441px;}
.h14_c00469{height:67.204838px;}
.h6_c00469{height:67.207560px;}
.h3_c00469{height:68.257678px;}
.h4_c00469{height:69.307796px;}
.hd_c00469{height:70.357914px;}
.h5_c00469{height:71.408032px;}
.h7_c00469{height:72.458150px;}
.h2_c00469{height:116.550000px;}
.h0_c00469{height:617.700000px;}
.h1_c00469{height:618.000000px;}
.w0_c00469{width:359.100000px;}
.w1_c00469{width:359.250000px;}
.x0_c00469{left:0.000000px;}
.x7f_c00469{left:42.268500px;}
.x60_c00469{left:44.282910px;}
.x6c_c00469{left:45.842850px;}
.x58_c00469{left:46.987342px;}
.x23_c00469{left:48.603255px;}
.x4_c00469{left:49.837500px;}
.x1_c00469{left:52.650000px;}
.x3e_c00469{left:58.425330px;}
.x24_c00469{left:61.294613px;}
.x7b_c00469{left:64.155000px;}
.x40_c00469{left:65.616825px;}
.xa_c00469{left:70.098067px;}
.x59_c00469{left:71.559877px;}
.x31_c00469{left:72.906300px;}
.x1d_c00469{left:77.388863px;}
.x4f_c00469{left:79.929630px;}
.x71_c00469{left:84.784417px;}
.x11_c00469{left:86.089155px;}
.x29_c00469{left:87.488767px;}
.x5_c00469{left:88.492500px;}
.x5c_c00469{left:90.462525px;}
.x67_c00469{left:91.807605px;}
.x5a_c00469{left:92.891670px;}
.x46_c00469{left:94.780185px;}
.x3a_c00469{left:95.885820px;}
.x6d_c00469{left:98.017380px;}
.x61_c00469{left:99.909420px;}
.x2d_c00469{left:101.260650px;}
.x18_c00469{left:106.289497px;}
.x78_c00469{left:107.733195px;}
.x4b_c00469{left:110.713312px;}
.x3f_c00469{left:111.958927px;}
.x7c_c00469{left:116.286000px;}
.x2_c00469{left:118.260000px;}
.x6e_c00469{left:119.619240px;}
.x2e_c00469{left:120.973583px;}
.x79_c00469{left:122.314980px;}
.x5f_c00469{left:124.483365px;}
.x37_c00469{left:126.643342px;}
.x25_c00469{left:127.722053px;}
.x32_c00469{left:130.423237px;}
.x62_c00469{left:132.313710px;}
.x6_c00469{left:134.940000px;}
.x12_c00469{left:137.350920px;}
.xb_c00469{left:138.981172px;}
.x41_c00469{left:140.684722px;}
.x38_c00469{left:142.305375px;}
.x1e_c00469{left:146.769990px;}
.x33_c00469{left:149.325990px;}
.x47_c00469{left:153.107302px;}
.x50_c00469{left:154.188847px;}
.x5b_c00469{left:156.618502px;}
.x2a_c00469{left:157.967107px;}
.xc_c00469{left:161.360685px;}
.x68_c00469{left:163.366192px;}
.x19_c00469{left:166.018875px;}
.x3b_c00469{left:168.066060px;}
.x73_c00469{left:170.383620px;}
.x1f_c00469{left:171.615615px;}
.x80_c00469{left:175.656000px;}
.x1a_c00469{left:177.582555px;}
.x3_c00469{left:179.280000px;}
.x55_c00469{left:181.193490px;}
.x13_c00469{left:182.452095px;}
.x51_c00469{left:185.782957px;}
.x2f_c00469{left:188.211203px;}
.x74_c00469{left:190.635165px;}
.x63_c00469{left:192.529755px;}
.x42_c00469{left:193.610625px;}
.x4c_c00469{left:197.392320px;}
.x5e_c00469{left:199.013197px;}
.x14_c00469{left:200.273865px;}
.x56_c00469{left:201.445035px;}
.x52_c00469{left:203.605462px;}
.x26_c00469{left:209.811525px;}
.x34_c00469{left:210.892350px;}
.x7_c00469{left:211.893000px;}
.x64_c00469{left:214.401682px;}
.x1b_c00469{left:216.475140px;}
.x20_c00469{left:221.300843px;}
.xd_c00469{left:223.725998px;}
.x35_c00469{left:224.934000px;}
.x75_c00469{left:226.548742px;}
.x39_c00469{left:227.905635px;}
.x27_c00469{left:228.984345px;}
.x8_c00469{left:234.039000px;}
.xe_c00469{left:236.425560px;}
.x7d_c00469{left:239.319000px;}
.x65_c00469{left:240.594577px;}
.x2b_c00469{left:243.027255px;}
.x15_c00469{left:245.105040px;}
.x54_c00469{left:247.621875px;}
.x48_c00469{left:249.238425px;}
.x76_c00469{left:253.011705px;}
.x6f_c00469{left:254.364547px;}
.x21_c00469{left:256.402418px;}
.x3c_c00469{left:259.361655px;}
.x43_c00469{left:261.388357px;}
.x4d_c00469{left:263.009580px;}
.x16_c00469{left:264.528833px;}
.x5d_c00469{left:265.982512px;}
.x1c_c00469{left:269.136427px;}
.x53_c00469{left:272.463442px;}
.x44_c00469{left:276.240187px;}
.x69_c00469{left:280.829107px;}
.x3d_c00469{left:282.314190px;}
.x7e_c00469{left:286.054500px;}
.xf_c00469{left:289.083922px;}
.x9_c00469{left:291.006000px;}
.x45_c00469{left:292.712400px;}
.x49_c00469{left:294.604140px;}
.x57_c00469{left:297.846225px;}
.x7a_c00469{left:298.915192px;}
.x6a_c00469{left:300.542040px;}
.x28_c00469{left:303.242040px;}
.x4e_c00469{left:307.024980px;}
.x30_c00469{left:310.263652px;}
.x2c_c00469{left:311.345123px;}
.x77_c00469{left:313.227750px;}
.x22_c00469{left:316.034595px;}
.x4a_c00469{left:319.176675px;}
.x10_c00469{left:322.527930px;}
.x36_c00469{left:324.575910px;}
.x17_c00469{left:325.768755px;}
.x70_c00469{left:328.622242px;}
.x66_c00469{left:332.674777px;}
.x6b_c00469{left:334.295122px;}
.x72_c00469{left:336.722595px;}
.x81_c00469{left:355.050000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
._0_c00469{width:21.626207pt;}
.fs13_c00469{font-size:21.466667pt;}
.fsc_c00469{font-size:51.339108pt;}
.fsf_c00469{font-size:52.272546pt;}
.fs6_c00469{font-size:53.205985pt;}
.fs9_c00469{font-size:54.139423pt;}
.fsd_c00469{font-size:55.072861pt;}
.fse_c00469{font-size:56.006300pt;}
.fs10_c00469{font-size:56.938913pt;}
.fsa_c00469{font-size:56.939738pt;}
.fs11_c00469{font-size:57.870833pt;}
.fs7_c00469{font-size:57.873176pt;}
.fs8_c00469{font-size:58.806615pt;}
.fs12_c00469{font-size:59.737634pt;}
.fs4_c00469{font-size:59.740053pt;}
.fs1_c00469{font-size:60.673491pt;}
.fs2_c00469{font-size:61.606930pt;}
.fsb_c00469{font-size:62.540368pt;}
.fs3_c00469{font-size:63.473806pt;}
.fs5_c00469{font-size:64.407245pt;}
.fs0_c00469{font-size:103.600000pt;}
.y0_c00469{bottom:0.000000pt;}
.ye2_c00469{bottom:29.760992pt;}
.ye3_c00469{bottom:30.069840pt;}
.ye4_c00469{bottom:30.932187pt;}
.ye5_c00469{bottom:31.399653pt;}
.ye6_c00469{bottom:32.168811pt;}
.ye7_c00469{bottom:32.427728pt;}
.ye8_c00469{bottom:33.224245pt;}
.ydb_c00469{bottom:43.681333pt;}
.ydc_c00469{bottom:44.217013pt;}
.ydd_c00469{bottom:44.366757pt;}
.yde_c00469{bottom:44.697525pt;}
.ydf_c00469{bottom:45.104133pt;}
.ye0_c00469{bottom:45.622501pt;}
.ye1_c00469{bottom:45.835669pt;}
.yd3_c00469{bottom:58.801333pt;}
.yd4_c00469{bottom:59.000301pt;}
.yd5_c00469{bottom:59.649043pt;}
.yd6_c00469{bottom:60.421675pt;}
.yd7_c00469{bottom:61.180120pt;}
.yd8_c00469{bottom:61.281947pt;}
.yd9_c00469{bottom:61.761717pt;}
.yda_c00469{bottom:61.947115pt;}
.yce_c00469{bottom:75.130147pt;}
.yd0_c00469{bottom:75.130447pt;}
.ycf_c00469{bottom:75.130733pt;}
.yd1_c00469{bottom:75.131053pt;}
.yd2_c00469{bottom:75.131253pt;}
.yc8_c00469{bottom:89.929213pt;}
.yc6_c00469{bottom:89.929260pt;}
.ycb_c00469{bottom:89.929340pt;}
.ycd_c00469{bottom:89.929373pt;}
.ycc_c00469{bottom:89.929393pt;}
.yc7_c00469{bottom:89.929827pt;}
.yc9_c00469{bottom:89.929840pt;}
.yca_c00469{bottom:89.929913pt;}
.ybf_c00469{bottom:103.469253pt;}
.yc4_c00469{bottom:103.469280pt;}
.yc5_c00469{bottom:103.469613pt;}
.yc2_c00469{bottom:103.469647pt;}
.yc3_c00469{bottom:103.469740pt;}
.yc0_c00469{bottom:103.469747pt;}
.yc1_c00469{bottom:103.469860pt;}
.ybc_c00469{bottom:122.763660pt;}
.ybb_c00469{bottom:122.763893pt;}
.yba_c00469{bottom:122.763933pt;}
.ybd_c00469{bottom:122.764093pt;}
.yb9_c00469{bottom:122.764147pt;}
.ybe_c00469{bottom:122.764640pt;}
.yb3_c00469{bottom:133.894933pt;}
.yb4_c00469{bottom:134.906413pt;}
.yb5_c00469{bottom:135.392253pt;}
.yb6_c00469{bottom:136.277853pt;}
.yb7_c00469{bottom:136.573013pt;}
.yb8_c00469{bottom:137.221533pt;}
.yab_c00469{bottom:150.407373pt;}
.yaa_c00469{bottom:150.407433pt;}
.yac_c00469{bottom:150.407733pt;}
.yad_c00469{bottom:150.407940pt;}
.yae_c00469{bottom:150.408280pt;}
.yb0_c00469{bottom:150.408427pt;}
.yb1_c00469{bottom:150.408540pt;}
.yaf_c00469{bottom:150.408600pt;}
.yb2_c00469{bottom:150.409147pt;}
.ya7_c00469{bottom:165.432800pt;}
.ya6_c00469{bottom:165.432973pt;}
.ya8_c00469{bottom:165.433160pt;}
.ya2_c00469{bottom:165.433233pt;}
.ya4_c00469{bottom:165.433380pt;}
.ya5_c00469{bottom:165.433413pt;}
.ya3_c00469{bottom:165.433420pt;}
.ya9_c00469{bottom:165.433593pt;}
.ya0_c00469{bottom:180.907693pt;}
.ya1_c00469{bottom:180.907800pt;}
.y9f_c00469{bottom:180.908307pt;}
.y9e_c00469{bottom:180.908480pt;}
.y9d_c00469{bottom:180.909000pt;}
.y99_c00469{bottom:195.988820pt;}
.y9a_c00469{bottom:195.988853pt;}
.y9b_c00469{bottom:195.989380pt;}
.y9c_c00469{bottom:195.989947pt;}
.y97_c00469{bottom:211.000147pt;}
.y92_c00469{bottom:211.000200pt;}
.y96_c00469{bottom:211.000340pt;}
.y93_c00469{bottom:211.000407pt;}
.y98_c00469{bottom:211.000467pt;}
.y95_c00469{bottom:211.000573pt;}
.y94_c00469{bottom:211.001013pt;}
.y8c_c00469{bottom:225.753080pt;}
.y8d_c00469{bottom:225.753440pt;}
.y8b_c00469{bottom:225.753520pt;}
.y8e_c00469{bottom:225.753607pt;}
.y91_c00469{bottom:225.753920pt;}
.y90_c00469{bottom:225.753960pt;}
.y8f_c00469{bottom:225.754060pt;}
.y83_c00469{bottom:240.544193pt;}
.y84_c00469{bottom:240.544493pt;}
.y86_c00469{bottom:240.544527pt;}
.y89_c00469{bottom:240.544633pt;}
.y88_c00469{bottom:240.544673pt;}
.y8a_c00469{bottom:240.544880pt;}
.y85_c00469{bottom:240.545120pt;}
.y87_c00469{bottom:240.545153pt;}
.y7d_c00469{bottom:255.424193pt;}
.y7e_c00469{bottom:255.424360pt;}
.y7c_c00469{bottom:255.424560pt;}
.y7b_c00469{bottom:255.424867pt;}
.y7f_c00469{bottom:255.424873pt;}
.y80_c00469{bottom:255.425387pt;}
.y81_c00469{bottom:255.425440pt;}
.y82_c00469{bottom:255.425553pt;}
.y77_c00469{bottom:270.155033pt;}
.y76_c00469{bottom:270.155207pt;}
.y78_c00469{bottom:270.155280pt;}
.y75_c00469{bottom:270.155493pt;}
.y73_c00469{bottom:270.155747pt;}
.y79_c00469{bottom:270.155847pt;}
.y74_c00469{bottom:270.155973pt;}
.y7a_c00469{bottom:270.156473pt;}
.y72_c00469{bottom:285.639493pt;}
.y6f_c00469{bottom:285.639593pt;}
.y6e_c00469{bottom:285.639940pt;}
.y70_c00469{bottom:285.639973pt;}
.y71_c00469{bottom:285.640047pt;}
.y6d_c00469{bottom:285.640113pt;}
.y6b_c00469{bottom:285.640293pt;}
.y6c_c00469{bottom:285.640480pt;}
.y6a_c00469{bottom:300.816113pt;}
.y64_c00469{bottom:300.816360pt;}
.y69_c00469{bottom:300.816553pt;}
.y67_c00469{bottom:300.816600pt;}
.y65_c00469{bottom:300.816833pt;}
.y66_c00469{bottom:300.817020pt;}
.y68_c00469{bottom:300.817147pt;}
.y5e_c00469{bottom:315.652093pt;}
.y5c_c00469{bottom:315.652233pt;}
.y5f_c00469{bottom:315.652280pt;}
.y60_c00469{bottom:315.652660pt;}
.y5d_c00469{bottom:315.652747pt;}
.y61_c00469{bottom:315.653113pt;}
.y63_c00469{bottom:315.653340pt;}
.y62_c00469{bottom:315.653760pt;}
.y54_c00469{bottom:329.989440pt;}
.y55_c00469{bottom:330.202400pt;}
.y56_c00469{bottom:330.433620pt;}
.y57_c00469{bottom:330.608533pt;}
.y58_c00469{bottom:331.253853pt;}
.y59_c00469{bottom:331.493740pt;}
.y5a_c00469{bottom:332.111853pt;}
.y5b_c00469{bottom:332.686233pt;}
.y4d_c00469{bottom:344.869827pt;}
.y4e_c00469{bottom:345.366927pt;}
.y4f_c00469{bottom:345.860960pt;}
.y50_c00469{bottom:346.137287pt;}
.y51_c00469{bottom:346.612740pt;}
.y52_c00469{bottom:347.111840pt;}
.y53_c00469{bottom:347.356527pt;}
.y4b_c00469{bottom:360.711580pt;}
.y4a_c00469{bottom:360.711620pt;}
.y49_c00469{bottom:360.711833pt;}
.y47_c00469{bottom:360.711933pt;}
.y4c_c00469{bottom:360.712013pt;}
.y48_c00469{bottom:360.712387pt;}
.y43_c00469{bottom:376.416320pt;}
.y3f_c00469{bottom:376.416827pt;}
.y44_c00469{bottom:376.416833pt;}
.y40_c00469{bottom:376.416920pt;}
.y42_c00469{bottom:376.416953pt;}
.y41_c00469{bottom:376.416973pt;}
.y46_c00469{bottom:376.417093pt;}
.y45_c00469{bottom:376.417213pt;}
.y37_c00469{bottom:391.384473pt;}
.y3c_c00469{bottom:391.384787pt;}
.y39_c00469{bottom:391.384927pt;}
.y38_c00469{bottom:391.384947pt;}
.y3a_c00469{bottom:391.385040pt;}
.y3b_c00469{bottom:391.385340pt;}
.y3d_c00469{bottom:391.385393pt;}
.y3e_c00469{bottom:391.385673pt;}
.y2e_c00469{bottom:406.160060pt;}
.y2f_c00469{bottom:406.160667pt;}
.y34_c00469{bottom:406.160713pt;}
.y33_c00469{bottom:406.160733pt;}
.y35_c00469{bottom:406.160747pt;}
.y36_c00469{bottom:406.160860pt;}
.y30_c00469{bottom:406.161047pt;}
.y32_c00469{bottom:406.161060pt;}
.y31_c00469{bottom:406.161500pt;}
.y2b_c00469{bottom:421.171560pt;}
.y2d_c00469{bottom:421.171820pt;}
.y2a_c00469{bottom:421.171980pt;}
.y2c_c00469{bottom:421.172107pt;}
.y27_c00469{bottom:421.172200pt;}
.y26_c00469{bottom:421.172353pt;}
.y28_c00469{bottom:421.172367pt;}
.y29_c00469{bottom:421.172480pt;}
.ye9_c00469{bottom:422.640000pt;}
.y1f_c00469{bottom:435.356013pt;}
.y20_c00469{bottom:435.656667pt;}
.y21_c00469{bottom:436.396373pt;}
.y22_c00469{bottom:436.660967pt;}
.y23_c00469{bottom:437.191407pt;}
.y24_c00469{bottom:437.566073pt;}
.y25_c00469{bottom:438.202467pt;}
.y18_c00469{bottom:449.998100pt;}
.y19_c00469{bottom:450.703973pt;}
.y1a_c00469{bottom:450.862587pt;}
.y1b_c00469{bottom:451.448353pt;}
.y1c_c00469{bottom:451.591867pt;}
.y1d_c00469{bottom:452.075760pt;}
.y1e_c00469{bottom:452.731233pt;}
.y10_c00469{bottom:464.640607pt;}
.y11_c00469{bottom:465.095267pt;}
.y12_c00469{bottom:465.733413pt;}
.y13_c00469{bottom:466.294753pt;}
.y14_c00469{bottom:466.516373pt;}
.y15_c00469{bottom:467.074113pt;}
.y16_c00469{bottom:467.315760pt;}
.y17_c00469{bottom:468.077613pt;}
.y8_c00469{bottom:479.761073pt;}
.y9_c00469{bottom:479.972113pt;}
.ya_c00469{bottom:480.706513pt;}
.yb_c00469{bottom:480.944893pt;}
.yc_c00469{bottom:481.609727pt;}
.yd_c00469{bottom:481.745713pt;}
.ye_c00469{bottom:482.307793pt;}
.yf_c00469{bottom:482.664360pt;}
.y2_c00469{bottom:494.642667pt;}
.y3_c00469{bottom:495.158067pt;}
.y4_c00469{bottom:495.777367pt;}
.y5_c00469{bottom:496.803407pt;}
.y6_c00469{bottom:497.098687pt;}
.y7_c00469{bottom:497.858247pt;}
.y1_c00469{bottom:508.100000pt;}
.h15_c00469{height:21.466667pt;}
.he_c00469{height:51.339108pt;}
.h11_c00469{height:52.272546pt;}
.h8_c00469{height:53.205985pt;}
.hb_c00469{height:54.139423pt;}
.hf_c00469{height:55.072861pt;}
.h10_c00469{height:56.006300pt;}
.h12_c00469{height:56.938913pt;}
.hc_c00469{height:56.939738pt;}
.h13_c00469{height:57.870833pt;}
.h9_c00469{height:57.873176pt;}
.ha_c00469{height:58.806615pt;}
.h14_c00469{height:59.737634pt;}
.h6_c00469{height:59.740053pt;}
.h3_c00469{height:60.673491pt;}
.h4_c00469{height:61.606930pt;}
.hd_c00469{height:62.540368pt;}
.h5_c00469{height:63.473806pt;}
.h7_c00469{height:64.407245pt;}
.h2_c00469{height:103.600000pt;}
.h0_c00469{height:549.066667pt;}
.h1_c00469{height:549.333333pt;}
.w0_c00469{width:319.200000pt;}
.w1_c00469{width:319.333333pt;}
.x0_c00469{left:0.000000pt;}
.x7f_c00469{left:37.572000pt;}
.x60_c00469{left:39.362587pt;}
.x6c_c00469{left:40.749200pt;}
.x58_c00469{left:41.766527pt;}
.x23_c00469{left:43.202893pt;}
.x4_c00469{left:44.300000pt;}
.x1_c00469{left:46.800000pt;}
.x3e_c00469{left:51.933627pt;}
.x24_c00469{left:54.484100pt;}
.x7b_c00469{left:57.026667pt;}
.x40_c00469{left:58.326067pt;}
.xa_c00469{left:62.309393pt;}
.x59_c00469{left:63.608780pt;}
.x31_c00469{left:64.805600pt;}
.x1d_c00469{left:68.790100pt;}
.x4f_c00469{left:71.048560pt;}
.x71_c00469{left:75.363927pt;}
.x11_c00469{left:76.523693pt;}
.x29_c00469{left:77.767793pt;}
.x5_c00469{left:78.660000pt;}
.x5c_c00469{left:80.411133pt;}
.x67_c00469{left:81.606760pt;}
.x5a_c00469{left:82.570373pt;}
.x46_c00469{left:84.249053pt;}
.x3a_c00469{left:85.231840pt;}
.x6d_c00469{left:87.126560pt;}
.x61_c00469{left:88.808373pt;}
.x2d_c00469{left:90.009467pt;}
.x18_c00469{left:94.479553pt;}
.x78_c00469{left:95.762840pt;}
.x4b_c00469{left:98.411833pt;}
.x3f_c00469{left:99.519047pt;}
.x7c_c00469{left:103.365333pt;}
.x2_c00469{left:105.120000pt;}
.x6e_c00469{left:106.328213pt;}
.x2e_c00469{left:107.532073pt;}
.x79_c00469{left:108.724427pt;}
.x5f_c00469{left:110.651880pt;}
.x37_c00469{left:112.571860pt;}
.x25_c00469{left:113.530713pt;}
.x32_c00469{left:115.931767pt;}
.x62_c00469{left:117.612187pt;}
.x6_c00469{left:119.946667pt;}
.x12_c00469{left:122.089707pt;}
.xb_c00469{left:123.538820pt;}
.x41_c00469{left:125.053087pt;}
.x38_c00469{left:126.493667pt;}
.x1e_c00469{left:130.462213pt;}
.x33_c00469{left:132.734213pt;}
.x47_c00469{left:136.095380pt;}
.x50_c00469{left:137.056753pt;}
.x5b_c00469{left:139.216447pt;}
.x2a_c00469{left:140.415207pt;}
.xc_c00469{left:143.431720pt;}
.x68_c00469{left:145.214393pt;}
.x19_c00469{left:147.572333pt;}
.x3b_c00469{left:149.392053pt;}
.x73_c00469{left:151.452107pt;}
.x1f_c00469{left:152.547213pt;}
.x80_c00469{left:156.138667pt;}
.x1a_c00469{left:157.851160pt;}
.x3_c00469{left:159.360000pt;}
.x55_c00469{left:161.060880pt;}
.x13_c00469{left:162.179640pt;}
.x51_c00469{left:165.140407pt;}
.x2f_c00469{left:167.298847pt;}
.x74_c00469{left:169.453480pt;}
.x63_c00469{left:171.137560pt;}
.x42_c00469{left:172.098333pt;}
.x4c_c00469{left:175.459840pt;}
.x5e_c00469{left:176.900620pt;}
.x14_c00469{left:178.021213pt;}
.x56_c00469{left:179.062253pt;}
.x52_c00469{left:180.982633pt;}
.x26_c00469{left:186.499133pt;}
.x34_c00469{left:187.459867pt;}
.x7_c00469{left:188.349333pt;}
.x64_c00469{left:190.579273pt;}
.x1b_c00469{left:192.422347pt;}
.x20_c00469{left:196.711860pt;}
.xd_c00469{left:198.867553pt;}
.x35_c00469{left:199.941333pt;}
.x75_c00469{left:201.376660pt;}
.x39_c00469{left:202.582787pt;}
.x27_c00469{left:203.541640pt;}
.x8_c00469{left:208.034667pt;}
.xe_c00469{left:210.156053pt;}
.x7d_c00469{left:212.728000pt;}
.x65_c00469{left:213.861847pt;}
.x2b_c00469{left:216.024227pt;}
.x15_c00469{left:217.871147pt;}
.x54_c00469{left:220.108333pt;}
.x48_c00469{left:221.545267pt;}
.x76_c00469{left:224.899293pt;}
.x6f_c00469{left:226.101820pt;}
.x21_c00469{left:227.913260pt;}
.x3c_c00469{left:230.543693pt;}
.x43_c00469{left:232.345207pt;}
.x4d_c00469{left:233.786293pt;}
.x16_c00469{left:235.136740pt;}
.x5d_c00469{left:236.428900pt;}
.x1c_c00469{left:239.232380pt;}
.x53_c00469{left:242.189727pt;}
.x44_c00469{left:245.546833pt;}
.x69_c00469{left:249.625873pt;}
.x3d_c00469{left:250.945947pt;}
.x7e_c00469{left:254.270667pt;}
.xf_c00469{left:256.963487pt;}
.x9_c00469{left:258.672000pt;}
.x45_c00469{left:260.188800pt;}
.x49_c00469{left:261.870347pt;}
.x57_c00469{left:264.752200pt;}
.x7a_c00469{left:265.702393pt;}
.x6a_c00469{left:267.148480pt;}
.x28_c00469{left:269.548480pt;}
.x4e_c00469{left:272.911093pt;}
.x30_c00469{left:275.789913pt;}
.x2c_c00469{left:276.751220pt;}
.x77_c00469{left:278.424667pt;}
.x22_c00469{left:280.919640pt;}
.x4a_c00469{left:283.712600pt;}
.x10_c00469{left:286.691493pt;}
.x36_c00469{left:288.511920pt;}
.x17_c00469{left:289.572227pt;}
.x70_c00469{left:292.108660pt;}
.x66_c00469{left:295.710913pt;}
.x6b_c00469{left:297.151220pt;}
.x72_c00469{left:299.308973pt;}
.x81_c00469{left:315.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00470{transform:matrix(0.019655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019655,0.000000,0.000000,0.250000,0,0);}
.ma2_c00470{transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143060,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);}
.mb3_c00470{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.mdf_c00470{transform:matrix(0.150021,0.004201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.150021,0.004201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.150021,0.004201,-0.006997,0.249902,0,0);}
.ma7_c00470{transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151335,0.000000,0.000000,0.250000,0,0);}
.mbd_c00470{transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.m57_c00470{transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.159060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159060,0.000000,0.000000,0.250000,0,0);}
.mc1_c00470{transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);}
.mce_c00470{transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159335,0.000000,0.000000,0.250000,0,0);}
.m80_c00470{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.md2_c00470{transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161170,0.000000,0.000000,0.250000,0,0);}
.m81_c00470{transform:matrix(0.161840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161840,0.000000,0.000000,0.250000,0,0);}
.md0_c00470{transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162495,0.000000,0.000000,0.250000,0,0);}
.mdb_c00470{transform:matrix(0.163331,0.004573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.163331,0.004573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.163331,0.004573,-0.006997,0.249902,0,0);}
.m6_c00470{transform:matrix(0.163805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163805,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164190,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164605,0.000000,0.000000,0.250000,0,0);}
.m82_c00470{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.ma1_c00470{transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166315,0.000000,0.000000,0.250000,0,0);}
.m6e_c00470{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.md1_c00470{transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166730,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m96_c00470{transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169415,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.m51_c00470{transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170045,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170285,0.000000,0.000000,0.250000,0,0);}
.m71_c00470{transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.m97_c00470{transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173920,0.000000,0.000000,0.250000,0,0);}
.m72_c00470{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.mc0_c00470{transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);}
.m5b_c00470{transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174490,0.000000,0.000000,0.250000,0,0);}
.mcc_c00470{transform:matrix(0.174958,0.007180,-0.010252,0.249790,0,0);-ms-transform:matrix(0.174958,0.007180,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.174958,0.007180,-0.010252,0.249790,0,0);}
.m99_c00470{transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175220,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.ma6_c00470{transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177590,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178230,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00470{transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178785,0.000000,0.000000,0.250000,0,0);}
.mb0_c00470{transform:matrix(0.179230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179230,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.md3_c00470{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m8d_c00470{transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180865,0.000000,0.000000,0.250000,0,0);}
.ma9_c00470{transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181005,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182480,0.000000,0.000000,0.250000,0,0);}
.me0_c00470{transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);}
.mb7_c00470{transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183890,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.mb1_c00470{transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184920,0.000000,0.000000,0.250000,0,0);}
.mdd_c00470{transform:matrix(0.185047,0.005181,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185047,0.005181,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185047,0.005181,-0.006997,0.249902,0,0);}
.m64_c00470{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.ma8_c00470{transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185260,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);}
.m63_c00470{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.m95_c00470{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m70_c00470{transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.maf_c00470{transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188020,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.mad_c00470{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.mcf_c00470{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m7f_c00470{transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192065,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.ma0_c00470{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m7e_c00470{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193605,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193885,0.000000,0.000000,0.250000,0,0);}
.m84_c00470{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);}
.mb8_c00470{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.m90_c00470{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.m65_c00470{transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194920,0.000000,0.000000,0.250000,0,0);}
.m73_c00470{transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);}
.mb6_c00470{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m49_c00470{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.m77_c00470{transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195995,0.000000,0.000000,0.250000,0,0);}
.ma5_c00470{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.mc8_c00470{transform:matrix(0.196829,0.008078,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196829,0.008078,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196829,0.008078,-0.010252,0.249790,0,0);}
.m1b_c00470{transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197010,0.000000,0.000000,0.250000,0,0);}
.m68_c00470{transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198145,0.000000,0.000000,0.250000,0,0);}
.m56_c00470{transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198230,0.000000,0.000000,0.250000,0,0);}
.m55_c00470{transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198415,0.000000,0.000000,0.250000,0,0);}
.mbe_c00470{transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00470{transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);}
.m8f_c00470{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200370,0.000000,0.000000,0.250000,0,0);}
.m75_c00470{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m3d_c00470{transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200885,0.000000,0.000000,0.250000,0,0);}
.m9d_c00470{transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201185,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m40_c00470{transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203835,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.mbc_c00470{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.mcd_c00470{transform:matrix(0.204163,0.008379,-0.010252,0.249790,0,0);-ms-transform:matrix(0.204163,0.008379,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.204163,0.008379,-0.010252,0.249790,0,0);}
.m4d_c00470{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m92_c00470{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.me1_c00470{transform:matrix(0.205200,0.005746,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205200,0.005746,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205200,0.005746,-0.006997,0.249902,0,0);}
.m6c_c00470{transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);}
.m85_c00470{transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206235,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206285,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.m93_c00470{transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);}
.m53_c00470{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m62_c00470{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.m59_c00470{transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);}
.md6_c00470{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.mde_c00470{transform:matrix(0.207419,0.005808,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207419,0.005808,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207419,0.005808,-0.006997,0.249902,0,0);}
.m7d_c00470{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.mb2_c00470{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00470{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);}
.m5e_c00470{transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00470{transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212705,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m69_c00470{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);}
.m9c_c00470{transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214165,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215340,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215680,0.000000,0.000000,0.250000,0,0);}
.m79_c00470{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);}
.mcb_c00470{transform:matrix(0.217152,0.008912,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217152,0.008912,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217152,0.008912,-0.010252,0.249790,0,0);}
.m3_c00470{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.mc5_c00470{transform:matrix(0.218221,0.008956,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218221,0.008956,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218221,0.008956,-0.010252,0.249790,0,0);}
.mc9_c00470{transform:matrix(0.218271,0.008958,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218271,0.008958,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218271,0.008958,-0.010252,0.249790,0,0);}
.m74_c00470{transform:matrix(0.218455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218455,0.000000,0.000000,0.250000,0,0);}
.m34_c00470{transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);}
.mca_c00470{transform:matrix(0.219265,0.008999,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219265,0.008999,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219265,0.008999,-0.010252,0.249790,0,0);}
.m8b_c00470{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.mda_c00470{transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);}
.mae_c00470{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.mdc_c00470{transform:matrix(0.222113,0.006219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222113,0.006219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222113,0.006219,-0.006997,0.249902,0,0);}
.mb4_c00470{transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222860,0.000000,0.000000,0.250000,0,0);}
.md5_c00470{transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222870,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.mc3_c00470{transform:matrix(0.225485,0.009254,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225485,0.009254,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225485,0.009254,-0.010252,0.249790,0,0);}
.m2_c00470{transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225770,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00470{transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226195,0.000000,0.000000,0.250000,0,0);}
.mc4_c00470{transform:matrix(0.227004,0.009316,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227004,0.009316,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227004,0.009316,-0.010252,0.249790,0,0);}
.m33_c00470{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m91_c00470{transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.mc6_c00470{transform:matrix(0.230751,0.009470,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230751,0.009470,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230751,0.009470,-0.010252,0.249790,0,0);}
.m9a_c00470{transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230820,0.000000,0.000000,0.250000,0,0);}
.mba_c00470{transform:matrix(0.231540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231540,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234490,0.000000,0.000000,0.250000,0,0);}
.maa_c00470{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00470{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.m89_c00470{transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.239460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239460,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m67_c00470{transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m25_c00470{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.me2_c00470{transform:matrix(0.244804,0.006855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244804,0.006855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244804,0.006855,-0.006997,0.249902,0,0);}
.m16_c00470{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.md8_c00470{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.mbb_c00470{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.mac_c00470{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.m9e_c00470{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00470{transform:matrix(0.258697,0.010617,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258697,0.010617,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258697,0.010617,-0.010252,0.249790,0,0);}
.m9_c00470{transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);}
.md7_c00470{transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);}
.m8a_c00470{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272585,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.md9_c00470{transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);}
.mc2_c00470{transform:matrix(0.288497,0.011840,-0.010252,0.249790,0,0);-ms-transform:matrix(0.288497,0.011840,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.288497,0.011840,-0.010252,0.249790,0,0);}
.m2f_c00470{transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);}
.mb5_c00470{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.m4b_c00470{transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);}
.mab_c00470{transform:matrix(0.311490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311490,0.000000,0.000000,0.250000,0,0);}
.m27_c00470{transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);}
.md4_c00470{transform:matrix(0.389990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389990,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435820,0.000000,0.000000,0.250000,0,0);}
.ma3_c00470{transform:matrix(0.440495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440495,0.000000,0.000000,0.250000,0,0);}
.m8c_c00470{transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:0.000000px;}
.fc0_c00470{color:transparent;}
.fs12_c00470{font-size:54.600000px;}
.fsf_c00470{font-size:55.641151px;}
.fs8_c00470{font-size:58.800000px;}
.fs3_c00470{font-size:59.850000px;}
.fs6_c00470{font-size:61.950000px;}
.fsb_c00470{font-size:63.000000px;}
.fs10_c00470{font-size:64.039815px;}
.fsa_c00470{font-size:64.050000px;}
.fs2_c00470{font-size:65.100000px;}
.fs5_c00470{font-size:66.150000px;}
.fs13_c00470{font-size:66.175926px;}
.fs9_c00470{font-size:67.200000px;}
.fs4_c00470{font-size:68.250000px;}
.fse_c00470{font-size:69.300000px;}
.fs7_c00470{font-size:71.400000px;}
.fs11_c00470{font-size:72.450000px;}
.fsc_c00470{font-size:74.550000px;}
.fsd_c00470{font-size:75.600000px;}
.fs0_c00470{font-size:77.700000px;}
.fs1_c00470{font-size:79.800000px;}
.y0_c00470{bottom:0.000000px;}
.y32_c00470{bottom:28.497576px;}
.y31_c00470{bottom:29.663706px;}
.y30_c00470{bottom:30.375144px;}
.y2f_c00470{bottom:30.881454px;}
.y2e_c00470{bottom:31.979502px;}
.y2d_c00470{bottom:33.918348px;}
.y2c_c00470{bottom:35.815572px;}
.y2b_c00470{bottom:36.457500px;}
.y2a_c00470{bottom:49.255500px;}
.y29_c00470{bottom:66.084000px;}
.y28_c00470{bottom:81.514051px;}
.y27_c00470{bottom:82.471227px;}
.y26_c00470{bottom:83.375979px;}
.y25_c00470{bottom:83.968662px;}
.y24_c00470{bottom:84.601738px;}
.y23_c00470{bottom:85.056303px;}
.y22_c00470{bottom:100.094875px;}
.y21_c00470{bottom:100.838226px;}
.y20_c00470{bottom:101.890798px;}
.y1f_c00470{bottom:105.315549px;}
.y1e_c00470{bottom:107.019775px;}
.y1d_c00470{bottom:110.707500px;}
.y1c_c00470{bottom:114.402000px;}
.y1b_c00470{bottom:131.937000px;}
.y1a_c00470{bottom:150.985500px;}
.y19_c00470{bottom:168.217500px;}
.y18_c00470{bottom:182.613000px;}
.y17_c00470{bottom:202.296000px;}
.y16_c00470{bottom:219.094500px;}
.y15_c00470{bottom:236.662500px;}
.y14_c00470{bottom:252.690000px;}
.y13_c00470{bottom:270.064500px;}
.y12_c00470{bottom:287.079000px;}
.y11_c00470{bottom:304.441500px;}
.y10_c00470{bottom:321.489000px;}
.yf_c00470{bottom:338.640000px;}
.ye_c00470{bottom:354.903000px;}
.yd_c00470{bottom:371.073000px;}
.yc_c00470{bottom:387.570000px;}
.yb_c00470{bottom:405.610500px;}
.ya_c00470{bottom:421.203000px;}
.y9_c00470{bottom:439.156500px;}
.y8_c00470{bottom:456.195000px;}
.y7_c00470{bottom:472.962000px;}
.y6_c00470{bottom:490.066500px;}
.y5_c00470{bottom:506.103000px;}
.y4_c00470{bottom:524.140500px;}
.y3_c00470{bottom:540.460500px;}
.y2_c00470{bottom:556.927500px;}
.y1_c00470{bottom:571.284000px;}
.h14_c00470{height:54.600000px;}
.h11_c00470{height:55.641151px;}
.ha_c00470{height:58.800000px;}
.h5_c00470{height:59.850000px;}
.h8_c00470{height:61.950000px;}
.hd_c00470{height:63.000000px;}
.h12_c00470{height:64.039815px;}
.hc_c00470{height:64.050000px;}
.h4_c00470{height:65.100000px;}
.h7_c00470{height:66.150000px;}
.h15_c00470{height:66.175926px;}
.hb_c00470{height:67.200000px;}
.h6_c00470{height:68.250000px;}
.h10_c00470{height:69.300000px;}
.h9_c00470{height:71.400000px;}
.h13_c00470{height:72.450000px;}
.he_c00470{height:74.550000px;}
.hf_c00470{height:75.600000px;}
.h2_c00470{height:77.700000px;}
.h3_c00470{height:79.800000px;}
.h0_c00470{height:617.700000px;}
.h1_c00470{height:618.000000px;}
.w0_c00470{width:359.100000px;}
.w1_c00470{width:359.250000px;}
.x0_c00470{left:0.000000px;}
.x72_c00470{left:10.057956px;}
.x5f_c00470{left:11.070000px;}
.x33_c00470{left:12.690000px;}
.x3_c00470{left:13.770000px;}
.x10_c00470{left:15.120000px;}
.x66_c00470{left:17.010000px;}
.x46_c00470{left:28.080000px;}
.x5b_c00470{left:31.590000px;}
.x78_c00470{left:33.732000px;}
.x3e_c00470{left:36.180000px;}
.x1c_c00470{left:37.260000px;}
.x38_c00470{left:38.610000px;}
.x73_c00470{left:40.298443px;}
.x11_c00470{left:44.550000px;}
.x17_c00470{left:48.600000px;}
.x77_c00470{left:49.950000px;}
.x4c_c00470{left:51.300000px;}
.x30_c00470{left:53.190000px;}
.x2a_c00470{left:55.620000px;}
.x34_c00470{left:61.560000px;}
.x23_c00470{left:62.910000px;}
.x1d_c00470{left:65.340000px;}
.x39_c00470{left:69.120000px;}
.x24_c00470{left:71.010000px;}
.x18_c00470{left:73.980000px;}
.x4_c00470{left:80.190000px;}
.x47_c00470{left:82.620000px;}
.x53_c00470{left:84.780000px;}
.x4f_c00470{left:86.130000px;}
.xa_c00470{left:88.020000px;}
.x42_c00470{left:90.450000px;}
.x3f_c00470{left:92.340000px;}
.x58_c00470{left:93.420000px;}
.x5_c00470{left:96.120000px;}
.x48_c00470{left:97.470000px;}
.x59_c00470{left:102.060000px;}
.x68_c00470{left:103.950000px;}
.x4d_c00470{left:105.840000px;}
.x63_c00470{left:107.730000px;}
.x54_c00470{left:108.810000px;}
.x6d_c00470{left:110.700000px;}
.xb_c00470{left:112.590000px;}
.x43_c00470{left:114.480000px;}
.x3c_c00470{left:115.560000px;}
.x12_c00470{left:116.910000px;}
.x2b_c00470{left:117.990000px;}
.x40_c00470{left:122.310000px;}
.x6c_c00470{left:124.200000px;}
.x3a_c00470{left:125.550000px;}
.x4e_c00470{left:126.900000px;}
.x64_c00470{left:128.250000px;}
.x35_c00470{left:129.870000px;}
.x6f_c00470{left:131.191989px;}
.x25_c00470{left:133.110000px;}
.x50_c00470{left:135.540000px;}
.x13_c00470{left:137.970000px;}
.x75_c00470{left:140.400000px;}
.x49_c00470{left:142.560000px;}
.x1_c00470{left:146.070000px;}
.x26_c00470{left:150.930000px;}
.x1e_c00470{left:152.820000px;}
.x2c_c00470{left:153.900000px;}
.x6_c00470{left:157.680000px;}
.xc_c00470{left:159.570000px;}
.x31_c00470{left:164.160000px;}
.x65_c00470{left:167.670000px;}
.x4a_c00470{left:169.290000px;}
.x79_c00470{left:170.734500px;}
.x5c_c00470{left:172.260000px;}
.x61_c00470{left:173.340000px;}
.x44_c00470{left:174.960000px;}
.x36_c00470{left:177.660000px;}
.x74_c00470{left:182.035260px;}
.x1f_c00470{left:183.060000px;}
.x5d_c00470{left:186.300000px;}
.x19_c00470{left:187.380000px;}
.x60_c00470{left:190.620000px;}
.xd_c00470{left:192.240000px;}
.x51_c00470{left:193.590000px;}
.x2d_c00470{left:197.100000px;}
.x55_c00470{left:199.260000px;}
.x7_c00470{left:202.230000px;}
.x37_c00470{left:203.850000px;}
.x27_c00470{left:206.550000px;}
.x20_c00470{left:208.710000px;}
.x2e_c00470{left:210.870000px;}
.x14_c00470{left:212.490000px;}
.x70_c00470{left:214.638959px;}
.x32_c00470{left:218.160000px;}
.x45_c00470{left:219.780000px;}
.x5a_c00470{left:227.340000px;}
.x41_c00470{left:230.040000px;}
.x28_c00470{left:234.900000px;}
.x69_c00470{left:237.870000px;}
.x71_c00470{left:240.285786px;}
.xe_c00470{left:241.380000px;}
.x56_c00470{left:245.430000px;}
.x8_c00470{left:247.590000px;}
.x21_c00470{left:248.940000px;}
.x4b_c00470{left:252.990000px;}
.x1a_c00470{left:255.690000px;}
.x52_c00470{left:258.390000px;}
.xf_c00470{left:259.740000px;}
.x9_c00470{left:260.820000px;}
.x57_c00470{left:263.250000px;}
.x67_c00470{left:265.410000px;}
.x1b_c00470{left:267.030000px;}
.x15_c00470{left:268.650000px;}
.x3d_c00470{left:271.350000px;}
.x6b_c00470{left:274.320000px;}
.x3b_c00470{left:276.210000px;}
.x5e_c00470{left:279.180000px;}
.x29_c00470{left:282.150000px;}
.x6e_c00470{left:284.040000px;}
.x16_c00470{left:288.090000px;}
.x76_c00470{left:292.680000px;}
.x62_c00470{left:295.380000px;}
.x2f_c00470{left:297.540000px;}
.x22_c00470{left:298.620000px;}
.x2_c00470{left:300.510000px;}
.x6a_c00470{left:306.180000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fs12_c00470{font-size:48.533333pt;}
.fsf_c00470{font-size:49.458801pt;}
.fs8_c00470{font-size:52.266667pt;}
.fs3_c00470{font-size:53.200000pt;}
.fs6_c00470{font-size:55.066667pt;}
.fsb_c00470{font-size:56.000000pt;}
.fs10_c00470{font-size:56.924280pt;}
.fsa_c00470{font-size:56.933333pt;}
.fs2_c00470{font-size:57.866667pt;}
.fs5_c00470{font-size:58.800000pt;}
.fs13_c00470{font-size:58.823045pt;}
.fs9_c00470{font-size:59.733333pt;}
.fs4_c00470{font-size:60.666667pt;}
.fse_c00470{font-size:61.600000pt;}
.fs7_c00470{font-size:63.466667pt;}
.fs11_c00470{font-size:64.400000pt;}
.fsc_c00470{font-size:66.266667pt;}
.fsd_c00470{font-size:67.200000pt;}
.fs0_c00470{font-size:69.066667pt;}
.fs1_c00470{font-size:70.933333pt;}
.y0_c00470{bottom:0.000000pt;}
.y32_c00470{bottom:25.331179pt;}
.y31_c00470{bottom:26.367739pt;}
.y30_c00470{bottom:27.000128pt;}
.y2f_c00470{bottom:27.450181pt;}
.y2e_c00470{bottom:28.426224pt;}
.y2d_c00470{bottom:30.149643pt;}
.y2c_c00470{bottom:31.836064pt;}
.y2b_c00470{bottom:32.406667pt;}
.y2a_c00470{bottom:43.782667pt;}
.y29_c00470{bottom:58.741333pt;}
.y28_c00470{bottom:72.456935pt;}
.y27_c00470{bottom:73.307757pt;}
.y26_c00470{bottom:74.111981pt;}
.y25_c00470{bottom:74.638811pt;}
.y24_c00470{bottom:75.201545pt;}
.y23_c00470{bottom:75.605603pt;}
.y22_c00470{bottom:88.973223pt;}
.y21_c00470{bottom:89.633979pt;}
.y20_c00470{bottom:90.569599pt;}
.y1f_c00470{bottom:93.613821pt;}
.y1e_c00470{bottom:95.128689pt;}
.y1d_c00470{bottom:98.406667pt;}
.y1c_c00470{bottom:101.690667pt;}
.y1b_c00470{bottom:117.277333pt;}
.y1a_c00470{bottom:134.209333pt;}
.y19_c00470{bottom:149.526667pt;}
.y18_c00470{bottom:162.322667pt;}
.y17_c00470{bottom:179.818667pt;}
.y16_c00470{bottom:194.750667pt;}
.y15_c00470{bottom:210.366667pt;}
.y14_c00470{bottom:224.613333pt;}
.y13_c00470{bottom:240.057333pt;}
.y12_c00470{bottom:255.181333pt;}
.y11_c00470{bottom:270.614667pt;}
.y10_c00470{bottom:285.768000pt;}
.yf_c00470{bottom:301.013333pt;}
.ye_c00470{bottom:315.469333pt;}
.yd_c00470{bottom:329.842667pt;}
.yc_c00470{bottom:344.506667pt;}
.yb_c00470{bottom:360.542667pt;}
.ya_c00470{bottom:374.402667pt;}
.y9_c00470{bottom:390.361333pt;}
.y8_c00470{bottom:405.506667pt;}
.y7_c00470{bottom:420.410667pt;}
.y6_c00470{bottom:435.614667pt;}
.y5_c00470{bottom:449.869333pt;}
.y4_c00470{bottom:465.902667pt;}
.y3_c00470{bottom:480.409333pt;}
.y2_c00470{bottom:495.046667pt;}
.y1_c00470{bottom:507.808000pt;}
.h14_c00470{height:48.533333pt;}
.h11_c00470{height:49.458801pt;}
.ha_c00470{height:52.266667pt;}
.h5_c00470{height:53.200000pt;}
.h8_c00470{height:55.066667pt;}
.hd_c00470{height:56.000000pt;}
.h12_c00470{height:56.924280pt;}
.hc_c00470{height:56.933333pt;}
.h4_c00470{height:57.866667pt;}
.h7_c00470{height:58.800000pt;}
.h15_c00470{height:58.823045pt;}
.hb_c00470{height:59.733333pt;}
.h6_c00470{height:60.666667pt;}
.h10_c00470{height:61.600000pt;}
.h9_c00470{height:63.466667pt;}
.h13_c00470{height:64.400000pt;}
.he_c00470{height:66.266667pt;}
.hf_c00470{height:67.200000pt;}
.h2_c00470{height:69.066667pt;}
.h3_c00470{height:70.933333pt;}
.h0_c00470{height:549.066667pt;}
.h1_c00470{height:549.333333pt;}
.w0_c00470{width:319.200000pt;}
.w1_c00470{width:319.333333pt;}
.x0_c00470{left:0.000000pt;}
.x72_c00470{left:8.940405pt;}
.x5f_c00470{left:9.840000pt;}
.x33_c00470{left:11.280000pt;}
.x3_c00470{left:12.240000pt;}
.x10_c00470{left:13.440000pt;}
.x66_c00470{left:15.120000pt;}
.x46_c00470{left:24.960000pt;}
.x5b_c00470{left:28.080000pt;}
.x78_c00470{left:29.984000pt;}
.x3e_c00470{left:32.160000pt;}
.x1c_c00470{left:33.120000pt;}
.x38_c00470{left:34.320000pt;}
.x73_c00470{left:35.820839pt;}
.x11_c00470{left:39.600000pt;}
.x17_c00470{left:43.200000pt;}
.x77_c00470{left:44.400000pt;}
.x4c_c00470{left:45.600000pt;}
.x30_c00470{left:47.280000pt;}
.x2a_c00470{left:49.440000pt;}
.x34_c00470{left:54.720000pt;}
.x23_c00470{left:55.920000pt;}
.x1d_c00470{left:58.080000pt;}
.x39_c00470{left:61.440000pt;}
.x24_c00470{left:63.120000pt;}
.x18_c00470{left:65.760000pt;}
.x4_c00470{left:71.280000pt;}
.x47_c00470{left:73.440000pt;}
.x53_c00470{left:75.360000pt;}
.x4f_c00470{left:76.560000pt;}
.xa_c00470{left:78.240000pt;}
.x42_c00470{left:80.400000pt;}
.x3f_c00470{left:82.080000pt;}
.x58_c00470{left:83.040000pt;}
.x5_c00470{left:85.440000pt;}
.x48_c00470{left:86.640000pt;}
.x59_c00470{left:90.720000pt;}
.x68_c00470{left:92.400000pt;}
.x4d_c00470{left:94.080000pt;}
.x63_c00470{left:95.760000pt;}
.x54_c00470{left:96.720000pt;}
.x6d_c00470{left:98.400000pt;}
.xb_c00470{left:100.080000pt;}
.x43_c00470{left:101.760000pt;}
.x3c_c00470{left:102.720000pt;}
.x12_c00470{left:103.920000pt;}
.x2b_c00470{left:104.880000pt;}
.x40_c00470{left:108.720000pt;}
.x6c_c00470{left:110.400000pt;}
.x3a_c00470{left:111.600000pt;}
.x4e_c00470{left:112.800000pt;}
.x64_c00470{left:114.000000pt;}
.x35_c00470{left:115.440000pt;}
.x6f_c00470{left:116.615101pt;}
.x25_c00470{left:118.320000pt;}
.x50_c00470{left:120.480000pt;}
.x13_c00470{left:122.640000pt;}
.x75_c00470{left:124.800000pt;}
.x49_c00470{left:126.720000pt;}
.x1_c00470{left:129.840000pt;}
.x26_c00470{left:134.160000pt;}
.x1e_c00470{left:135.840000pt;}
.x2c_c00470{left:136.800000pt;}
.x6_c00470{left:140.160000pt;}
.xc_c00470{left:141.840000pt;}
.x31_c00470{left:145.920000pt;}
.x65_c00470{left:149.040000pt;}
.x4a_c00470{left:150.480000pt;}
.x79_c00470{left:151.764000pt;}
.x5c_c00470{left:153.120000pt;}
.x61_c00470{left:154.080000pt;}
.x44_c00470{left:155.520000pt;}
.x36_c00470{left:157.920000pt;}
.x74_c00470{left:161.809120pt;}
.x1f_c00470{left:162.720000pt;}
.x5d_c00470{left:165.600000pt;}
.x19_c00470{left:166.560000pt;}
.x60_c00470{left:169.440000pt;}
.xd_c00470{left:170.880000pt;}
.x51_c00470{left:172.080000pt;}
.x2d_c00470{left:175.200000pt;}
.x55_c00470{left:177.120000pt;}
.x7_c00470{left:179.760000pt;}
.x37_c00470{left:181.200000pt;}
.x27_c00470{left:183.600000pt;}
.x20_c00470{left:185.520000pt;}
.x2e_c00470{left:187.440000pt;}
.x14_c00470{left:188.880000pt;}
.x70_c00470{left:190.790185pt;}
.x32_c00470{left:193.920000pt;}
.x45_c00470{left:195.360000pt;}
.x5a_c00470{left:202.080000pt;}
.x41_c00470{left:204.480000pt;}
.x28_c00470{left:208.800000pt;}
.x69_c00470{left:211.440000pt;}
.x71_c00470{left:213.587365pt;}
.xe_c00470{left:214.560000pt;}
.x56_c00470{left:218.160000pt;}
.x8_c00470{left:220.080000pt;}
.x21_c00470{left:221.280000pt;}
.x4b_c00470{left:224.880000pt;}
.x1a_c00470{left:227.280000pt;}
.x52_c00470{left:229.680000pt;}
.xf_c00470{left:230.880000pt;}
.x9_c00470{left:231.840000pt;}
.x57_c00470{left:234.000000pt;}
.x67_c00470{left:235.920000pt;}
.x1b_c00470{left:237.360000pt;}
.x15_c00470{left:238.800000pt;}
.x3d_c00470{left:241.200000pt;}
.x6b_c00470{left:243.840000pt;}
.x3b_c00470{left:245.520000pt;}
.x5e_c00470{left:248.160000pt;}
.x29_c00470{left:250.800000pt;}
.x6e_c00470{left:252.480000pt;}
.x16_c00470{left:256.080000pt;}
.x76_c00470{left:260.160000pt;}
.x62_c00470{left:262.560000pt;}
.x2f_c00470{left:264.480000pt;}
.x22_c00470{left:265.440000pt;}
.x2_c00470{left:267.120000pt;}
.x6a_c00470{left:272.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00471 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00471 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00471 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00471 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00471{transform:matrix(0.018601,-0.000372,0.004999,0.249950,0,0);-ms-transform:matrix(0.018601,-0.000372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.018601,-0.000372,0.004999,0.249950,0,0);}
.mda_c00471{transform:matrix(0.022600,-0.000452,0.004999,0.249950,0,0);-ms-transform:matrix(0.022600,-0.000452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.022600,-0.000452,0.004999,0.249950,0,0);}
.m2_c00471{transform:matrix(0.030664,-0.000613,0.004999,0.249950,0,0);-ms-transform:matrix(0.030664,-0.000613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.030664,-0.000613,0.004999,0.249950,0,0);}
.maf_c00471{transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038720,0.000000,0.000000,0.250000,0,0);}
.mad_c00471{transform:matrix(0.077925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077925,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.082983,-0.001660,0.004999,0.249950,0,0);-ms-transform:matrix(0.082983,-0.001660,0.004999,0.249950,0,0);-webkit-transform:matrix(0.082983,-0.001660,0.004999,0.249950,0,0);}
.me8_c00471{transform:matrix(0.136758,-0.002735,0.004999,0.249950,0,0);-ms-transform:matrix(0.136758,-0.002735,0.004999,0.249950,0,0);-webkit-transform:matrix(0.136758,-0.002735,0.004999,0.249950,0,0);}
.mb0_c00471{transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139615,0.000000,0.000000,0.250000,0,0);}
.m93_c00471{transform:matrix(0.139667,-0.002793,0.004999,0.249950,0,0);-ms-transform:matrix(0.139667,-0.002793,0.004999,0.249950,0,0);-webkit-transform:matrix(0.139667,-0.002793,0.004999,0.249950,0,0);}
.mc8_c00471{transform:matrix(0.144046,-0.002017,0.003500,0.249976,0,0);-ms-transform:matrix(0.144046,-0.002017,0.003500,0.249976,0,0);-webkit-transform:matrix(0.144046,-0.002017,0.003500,0.249976,0,0);}
.m1a_c00471{transform:matrix(0.148145,-0.002963,0.004999,0.249950,0,0);-ms-transform:matrix(0.148145,-0.002963,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148145,-0.002963,0.004999,0.249950,0,0);}
.mcb_c00471{transform:matrix(0.148765,-0.002083,0.003500,0.249976,0,0);-ms-transform:matrix(0.148765,-0.002083,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148765,-0.002083,0.003500,0.249976,0,0);}
.m5b_c00471{transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);-ms-transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151230,-0.003025,0.004999,0.249950,0,0);}
.mb5_c00471{transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);}
.me4_c00471{transform:matrix(0.153619,-0.003072,0.004999,0.249950,0,0);-ms-transform:matrix(0.153619,-0.003072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153619,-0.003072,0.004999,0.249950,0,0);}
.m5e_c00471{transform:matrix(0.154309,-0.003086,0.004999,0.249950,0,0);-ms-transform:matrix(0.154309,-0.003086,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154309,-0.003086,0.004999,0.249950,0,0);}
.mb4_c00471{transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);}
.m5d_c00471{transform:matrix(0.155699,-0.003114,0.004999,0.249950,0,0);-ms-transform:matrix(0.155699,-0.003114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155699,-0.003114,0.004999,0.249950,0,0);}
.mb6_c00471{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.mc1_c00471{transform:matrix(0.156780,-0.002195,0.003500,0.249976,0,0);-ms-transform:matrix(0.156780,-0.002195,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156780,-0.002195,0.003500,0.249976,0,0);}
.m44_c00471{transform:matrix(0.157598,-0.003152,0.004999,0.249950,0,0);-ms-transform:matrix(0.157598,-0.003152,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157598,-0.003152,0.004999,0.249950,0,0);}
.mcc_c00471{transform:matrix(0.157770,-0.002209,0.003500,0.249976,0,0);-ms-transform:matrix(0.157770,-0.002209,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157770,-0.002209,0.003500,0.249976,0,0);}
.m1e_c00471{transform:matrix(0.158168,-0.003163,0.004999,0.249950,0,0);-ms-transform:matrix(0.158168,-0.003163,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158168,-0.003163,0.004999,0.249950,0,0);}
.mbd_c00471{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.m59_c00471{transform:matrix(0.159378,-0.003188,0.004999,0.249950,0,0);-ms-transform:matrix(0.159378,-0.003188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159378,-0.003188,0.004999,0.249950,0,0);}
.md3_c00471{transform:matrix(0.159949,-0.002239,0.003500,0.249976,0,0);-ms-transform:matrix(0.159949,-0.002239,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159949,-0.002239,0.003500,0.249976,0,0);}
.m70_c00471{transform:matrix(0.160168,-0.003203,0.004999,0.249950,0,0);-ms-transform:matrix(0.160168,-0.003203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160168,-0.003203,0.004999,0.249950,0,0);}
.mbb_c00471{transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160560,0.000000,0.000000,0.250000,0,0);}
.m4a_c00471{transform:matrix(0.161063,-0.003221,0.004999,0.249950,0,0);-ms-transform:matrix(0.161063,-0.003221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161063,-0.003221,0.004999,0.249950,0,0);}
.m5f_c00471{transform:matrix(0.161523,-0.003230,0.004999,0.249950,0,0);-ms-transform:matrix(0.161523,-0.003230,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161523,-0.003230,0.004999,0.249950,0,0);}
.mbc_c00471{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.me5_c00471{transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);-ms-transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161623,-0.003232,0.004999,0.249950,0,0);}
.md8_c00471{transform:matrix(0.161853,-0.003237,0.004999,0.249950,0,0);-ms-transform:matrix(0.161853,-0.003237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161853,-0.003237,0.004999,0.249950,0,0);}
.mc7_c00471{transform:matrix(0.162404,-0.002274,0.003500,0.249976,0,0);-ms-transform:matrix(0.162404,-0.002274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162404,-0.002274,0.003500,0.249976,0,0);}
.m72_c00471{transform:matrix(0.162408,-0.003248,0.004999,0.249950,0,0);-ms-transform:matrix(0.162408,-0.003248,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162408,-0.003248,0.004999,0.249950,0,0);}
.m73_c00471{transform:matrix(0.162797,-0.003256,0.004999,0.249950,0,0);-ms-transform:matrix(0.162797,-0.003256,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162797,-0.003256,0.004999,0.249950,0,0);}
.mfa_c00471{transform:matrix(0.163212,-0.004896,0.007497,0.249888,0,0);-ms-transform:matrix(0.163212,-0.004896,0.007497,0.249888,0,0);-webkit-transform:matrix(0.163212,-0.004896,0.007497,0.249888,0,0);}
.m96_c00471{transform:matrix(0.163367,-0.003267,0.004999,0.249950,0,0);-ms-transform:matrix(0.163367,-0.003267,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163367,-0.003267,0.004999,0.249950,0,0);}
.mba_c00471{transform:matrix(0.164115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164115,0.000000,0.000000,0.250000,0,0);}
.m41_c00471{transform:matrix(0.164457,-0.003289,0.004999,0.249950,0,0);-ms-transform:matrix(0.164457,-0.003289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164457,-0.003289,0.004999,0.249950,0,0);}
.m82_c00471{transform:matrix(0.165407,-0.003308,0.004999,0.249950,0,0);-ms-transform:matrix(0.165407,-0.003308,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165407,-0.003308,0.004999,0.249950,0,0);}
.m56_c00471{transform:matrix(0.165787,-0.003316,0.004999,0.249950,0,0);-ms-transform:matrix(0.165787,-0.003316,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165787,-0.003316,0.004999,0.249950,0,0);}
.m6d_c00471{transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);-ms-transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166092,-0.003322,0.004999,0.249950,0,0);}
.m55_c00471{transform:matrix(0.166267,-0.003325,0.004999,0.249950,0,0);-ms-transform:matrix(0.166267,-0.003325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166267,-0.003325,0.004999,0.249950,0,0);}
.m7f_c00471{transform:matrix(0.166912,-0.003338,0.004999,0.249950,0,0);-ms-transform:matrix(0.166912,-0.003338,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166912,-0.003338,0.004999,0.249950,0,0);}
.m92_c00471{transform:matrix(0.168451,-0.003369,0.004999,0.249950,0,0);-ms-transform:matrix(0.168451,-0.003369,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168451,-0.003369,0.004999,0.249950,0,0);}
.mb9_c00471{transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.169021,-0.003380,0.004999,0.249950,0,0);-ms-transform:matrix(0.169021,-0.003380,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169021,-0.003380,0.004999,0.249950,0,0);}
.mf4_c00471{transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);-ms-transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169089,-0.005073,0.007497,0.249888,0,0);}
.mc6_c00471{transform:matrix(0.169273,-0.002370,0.003500,0.249976,0,0);-ms-transform:matrix(0.169273,-0.002370,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169273,-0.002370,0.003500,0.249976,0,0);}
.mf0_c00471{transform:matrix(0.170069,-0.003742,0.005499,0.249940,0,0);-ms-transform:matrix(0.170069,-0.003742,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170069,-0.003742,0.005499,0.249940,0,0);}
.m46_c00471{transform:matrix(0.170166,-0.003403,0.004999,0.249950,0,0);-ms-transform:matrix(0.170166,-0.003403,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170166,-0.003403,0.004999,0.249950,0,0);}
.m19_c00471{transform:matrix(0.170711,-0.003414,0.004999,0.249950,0,0);-ms-transform:matrix(0.170711,-0.003414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170711,-0.003414,0.004999,0.249950,0,0);}
.m4d_c00471{transform:matrix(0.170911,-0.003418,0.004999,0.249950,0,0);-ms-transform:matrix(0.170911,-0.003418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170911,-0.003418,0.004999,0.249950,0,0);}
.m6e_c00471{transform:matrix(0.170996,-0.003420,0.004999,0.249950,0,0);-ms-transform:matrix(0.170996,-0.003420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170996,-0.003420,0.004999,0.249950,0,0);}
.mcf_c00471{transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);-ms-transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171298,-0.002398,0.003500,0.249976,0,0);}
.me3_c00471{transform:matrix(0.172371,-0.003447,0.004999,0.249950,0,0);-ms-transform:matrix(0.172371,-0.003447,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172371,-0.003447,0.004999,0.249950,0,0);}
.mb3_c00471{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m3c_c00471{transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173370,-0.003467,0.004999,0.249950,0,0);}
.md7_c00471{transform:matrix(0.173740,-0.003475,0.004999,0.249950,0,0);-ms-transform:matrix(0.173740,-0.003475,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173740,-0.003475,0.004999,0.249950,0,0);}
.m8c_c00471{transform:matrix(0.173885,-0.003478,0.004999,0.249950,0,0);-ms-transform:matrix(0.173885,-0.003478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173885,-0.003478,0.004999,0.249950,0,0);}
.me2_c00471{transform:matrix(0.174425,-0.003489,0.004999,0.249950,0,0);-ms-transform:matrix(0.174425,-0.003489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174425,-0.003489,0.004999,0.249950,0,0);}
.m6b_c00471{transform:matrix(0.175235,-0.003505,0.004999,0.249950,0,0);-ms-transform:matrix(0.175235,-0.003505,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175235,-0.003505,0.004999,0.249950,0,0);}
.m94_c00471{transform:matrix(0.175470,-0.003509,0.004999,0.249950,0,0);-ms-transform:matrix(0.175470,-0.003509,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175470,-0.003509,0.004999,0.249950,0,0);}
.mf1_c00471{transform:matrix(0.175747,-0.003866,0.005499,0.249940,0,0);-ms-transform:matrix(0.175747,-0.003866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175747,-0.003866,0.005499,0.249940,0,0);}
.mbf_c00471{transform:matrix(0.175753,-0.002461,0.003500,0.249976,0,0);-ms-transform:matrix(0.175753,-0.002461,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175753,-0.002461,0.003500,0.249976,0,0);}
.m60_c00471{transform:matrix(0.175895,-0.003518,0.004999,0.249950,0,0);-ms-transform:matrix(0.175895,-0.003518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175895,-0.003518,0.004999,0.249950,0,0);}
.m5c_c00471{transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);-ms-transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);}
.m3d_c00471{transform:matrix(0.176315,-0.003526,0.004999,0.249950,0,0);-ms-transform:matrix(0.176315,-0.003526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176315,-0.003526,0.004999,0.249950,0,0);}
.m24_c00471{transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176670,-0.003533,0.004999,0.249950,0,0);}
.m68_c00471{transform:matrix(0.176830,-0.003537,0.004999,0.249950,0,0);-ms-transform:matrix(0.176830,-0.003537,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176830,-0.003537,0.004999,0.249950,0,0);}
.m43_c00471{transform:matrix(0.176970,-0.003539,0.004999,0.249950,0,0);-ms-transform:matrix(0.176970,-0.003539,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176970,-0.003539,0.004999,0.249950,0,0);}
.m85_c00471{transform:matrix(0.177085,-0.003542,0.004999,0.249950,0,0);-ms-transform:matrix(0.177085,-0.003542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177085,-0.003542,0.004999,0.249950,0,0);}
.m9d_c00471{transform:matrix(0.177105,-0.003542,0.004999,0.249950,0,0);-ms-transform:matrix(0.177105,-0.003542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177105,-0.003542,0.004999,0.249950,0,0);}
.mf7_c00471{transform:matrix(0.177115,-0.005313,0.007497,0.249888,0,0);-ms-transform:matrix(0.177115,-0.005313,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177115,-0.005313,0.007497,0.249888,0,0);}
.m58_c00471{transform:matrix(0.177430,-0.003549,0.004999,0.249950,0,0);-ms-transform:matrix(0.177430,-0.003549,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177430,-0.003549,0.004999,0.249950,0,0);}
.m8a_c00471{transform:matrix(0.177549,-0.003551,0.004999,0.249950,0,0);-ms-transform:matrix(0.177549,-0.003551,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177549,-0.003551,0.004999,0.249950,0,0);}
.me7_c00471{transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177624,-0.003552,0.004999,0.249950,0,0);}
.m48_c00471{transform:matrix(0.178159,-0.003563,0.004999,0.249950,0,0);-ms-transform:matrix(0.178159,-0.003563,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178159,-0.003563,0.004999,0.249950,0,0);}
.m2a_c00471{transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);-ms-transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178519,-0.003570,0.004999,0.249950,0,0);}
.m21_c00471{transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);-ms-transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178764,-0.003575,0.004999,0.249950,0,0);}
.m47_c00471{transform:matrix(0.179204,-0.003584,0.004999,0.249950,0,0);-ms-transform:matrix(0.179204,-0.003584,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179204,-0.003584,0.004999,0.249950,0,0);}
.mb8_c00471{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m91_c00471{transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);-ms-transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179479,-0.003590,0.004999,0.249950,0,0);}
.me9_c00471{transform:matrix(0.179929,-0.003599,0.004999,0.249950,0,0);-ms-transform:matrix(0.179929,-0.003599,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179929,-0.003599,0.004999,0.249950,0,0);}
.mc0_c00471{transform:matrix(0.179997,-0.002520,0.003500,0.249976,0,0);-ms-transform:matrix(0.179997,-0.002520,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179997,-0.002520,0.003500,0.249976,0,0);}
.m88_c00471{transform:matrix(0.180089,-0.003602,0.004999,0.249950,0,0);-ms-transform:matrix(0.180089,-0.003602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180089,-0.003602,0.004999,0.249950,0,0);}
.m83_c00471{transform:matrix(0.180839,-0.003617,0.004999,0.249950,0,0);-ms-transform:matrix(0.180839,-0.003617,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180839,-0.003617,0.004999,0.249950,0,0);}
.m14_c00471{transform:matrix(0.181279,-0.003626,0.004999,0.249950,0,0);-ms-transform:matrix(0.181279,-0.003626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181279,-0.003626,0.004999,0.249950,0,0);}
.ma5_c00471{transform:matrix(0.181472,-0.002541,0.003500,0.249976,0,0);-ms-transform:matrix(0.181472,-0.002541,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181472,-0.002541,0.003500,0.249976,0,0);}
.mcd_c00471{transform:matrix(0.181587,-0.002542,0.003500,0.249976,0,0);-ms-transform:matrix(0.181587,-0.002542,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181587,-0.002542,0.003500,0.249976,0,0);}
.mac_c00471{transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182035,0.000000,0.000000,0.250000,0,0);}
.m62_c00471{transform:matrix(0.182224,-0.003644,0.004999,0.249950,0,0);-ms-transform:matrix(0.182224,-0.003644,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182224,-0.003644,0.004999,0.249950,0,0);}
.mf6_c00471{transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);-ms-transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182343,-0.005470,0.007497,0.249888,0,0);}
.m3b_c00471{transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);-ms-transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182384,-0.003648,0.004999,0.249950,0,0);}
.m8_c00471{transform:matrix(0.182638,-0.003653,0.004999,0.249950,0,0);-ms-transform:matrix(0.182638,-0.003653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182638,-0.003653,0.004999,0.249950,0,0);}
.m29_c00471{transform:matrix(0.182923,-0.003658,0.004999,0.249950,0,0);-ms-transform:matrix(0.182923,-0.003658,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182923,-0.003658,0.004999,0.249950,0,0);}
.m1d_c00471{transform:matrix(0.183058,-0.003661,0.004999,0.249950,0,0);-ms-transform:matrix(0.183058,-0.003661,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183058,-0.003661,0.004999,0.249950,0,0);}
.m6a_c00471{transform:matrix(0.183173,-0.003663,0.004999,0.249950,0,0);-ms-transform:matrix(0.183173,-0.003663,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183173,-0.003663,0.004999,0.249950,0,0);}
.m65_c00471{transform:matrix(0.183298,-0.003666,0.004999,0.249950,0,0);-ms-transform:matrix(0.183298,-0.003666,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183298,-0.003666,0.004999,0.249950,0,0);}
.m10_c00471{transform:matrix(0.183383,-0.003668,0.004999,0.249950,0,0);-ms-transform:matrix(0.183383,-0.003668,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183383,-0.003668,0.004999,0.249950,0,0);}
.mc5_c00471{transform:matrix(0.183552,-0.002570,0.003500,0.249976,0,0);-ms-transform:matrix(0.183552,-0.002570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183552,-0.002570,0.003500,0.249976,0,0);}
.m22_c00471{transform:matrix(0.184088,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184088,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184088,-0.003682,0.004999,0.249950,0,0);}
.m34_c00471{transform:matrix(0.184508,-0.003690,0.004999,0.249950,0,0);-ms-transform:matrix(0.184508,-0.003690,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184508,-0.003690,0.004999,0.249950,0,0);}
.m9e_c00471{transform:matrix(0.184568,-0.003691,0.004999,0.249950,0,0);-ms-transform:matrix(0.184568,-0.003691,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184568,-0.003691,0.004999,0.249950,0,0);}
.md5_c00471{transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184893,-0.003698,0.004999,0.249950,0,0);}
.m7d_c00471{transform:matrix(0.185053,-0.003701,0.004999,0.249950,0,0);-ms-transform:matrix(0.185053,-0.003701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185053,-0.003701,0.004999,0.249950,0,0);}
.m37_c00471{transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);-ms-transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185288,-0.003706,0.004999,0.249950,0,0);}
.m4e_c00471{transform:matrix(0.185468,-0.003709,0.004999,0.249950,0,0);-ms-transform:matrix(0.185468,-0.003709,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185468,-0.003709,0.004999,0.249950,0,0);}
.mfb_c00471{transform:matrix(0.185616,-0.005568,0.007497,0.249888,0,0);-ms-transform:matrix(0.185616,-0.005568,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185616,-0.005568,0.007497,0.249888,0,0);}
.mf2_c00471{transform:matrix(0.185950,-0.004091,0.005499,0.249940,0,0);-ms-transform:matrix(0.185950,-0.004091,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185950,-0.004091,0.005499,0.249940,0,0);}
.m12_c00471{transform:matrix(0.186008,-0.003720,0.004999,0.249950,0,0);-ms-transform:matrix(0.186008,-0.003720,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186008,-0.003720,0.004999,0.249950,0,0);}
.mbe_c00471{transform:matrix(0.186072,-0.002605,0.003500,0.249976,0,0);-ms-transform:matrix(0.186072,-0.002605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186072,-0.002605,0.003500,0.249976,0,0);}
.mc9_c00471{transform:matrix(0.186257,-0.002608,0.003500,0.249976,0,0);-ms-transform:matrix(0.186257,-0.002608,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186257,-0.002608,0.003500,0.249976,0,0);}
.m9_c00471{transform:matrix(0.186728,-0.003735,0.004999,0.249950,0,0);-ms-transform:matrix(0.186728,-0.003735,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186728,-0.003735,0.004999,0.249950,0,0);}
.maa_c00471{transform:matrix(0.187217,-0.002621,0.003500,0.249976,0,0);-ms-transform:matrix(0.187217,-0.002621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187217,-0.002621,0.003500,0.249976,0,0);}
.med_c00471{transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);-ms-transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187365,-0.004122,0.005499,0.249940,0,0);}
.m84_c00471{transform:matrix(0.187383,-0.003748,0.004999,0.249950,0,0);-ms-transform:matrix(0.187383,-0.003748,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187383,-0.003748,0.004999,0.249950,0,0);}
.m80_c00471{transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);}
.mf9_c00471{transform:matrix(0.187736,-0.005632,0.007497,0.249888,0,0);-ms-transform:matrix(0.187736,-0.005632,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187736,-0.005632,0.007497,0.249888,0,0);}
.mef_c00471{transform:matrix(0.188015,-0.004136,0.005499,0.249940,0,0);-ms-transform:matrix(0.188015,-0.004136,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188015,-0.004136,0.005499,0.249940,0,0);}
.m18_c00471{transform:matrix(0.188442,-0.003769,0.004999,0.249950,0,0);-ms-transform:matrix(0.188442,-0.003769,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188442,-0.003769,0.004999,0.249950,0,0);}
.m57_c00471{transform:matrix(0.188622,-0.003772,0.004999,0.249950,0,0);-ms-transform:matrix(0.188622,-0.003772,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188622,-0.003772,0.004999,0.249950,0,0);}
.m4f_c00471{transform:matrix(0.189257,-0.003785,0.004999,0.249950,0,0);-ms-transform:matrix(0.189257,-0.003785,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189257,-0.003785,0.004999,0.249950,0,0);}
.me6_c00471{transform:matrix(0.189432,-0.003789,0.004999,0.249950,0,0);-ms-transform:matrix(0.189432,-0.003789,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189432,-0.003789,0.004999,0.249950,0,0);}
.mec_c00471{transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);-ms-transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);}
.mb7_c00471{transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);}
.m4c_c00471{transform:matrix(0.189762,-0.003795,0.004999,0.249950,0,0);-ms-transform:matrix(0.189762,-0.003795,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189762,-0.003795,0.004999,0.249950,0,0);}
.mca_c00471{transform:matrix(0.189921,-0.002659,0.003500,0.249976,0,0);-ms-transform:matrix(0.189921,-0.002659,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189921,-0.002659,0.003500,0.249976,0,0);}
.m1c_c00471{transform:matrix(0.189987,-0.003800,0.004999,0.249950,0,0);-ms-transform:matrix(0.189987,-0.003800,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189987,-0.003800,0.004999,0.249950,0,0);}
.mdb_c00471{transform:matrix(0.190162,-0.003803,0.004999,0.249950,0,0);-ms-transform:matrix(0.190162,-0.003803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190162,-0.003803,0.004999,0.249950,0,0);}
.m53_c00471{transform:matrix(0.190192,-0.003804,0.004999,0.249950,0,0);-ms-transform:matrix(0.190192,-0.003804,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190192,-0.003804,0.004999,0.249950,0,0);}
.mdf_c00471{transform:matrix(0.190397,-0.003808,0.004999,0.249950,0,0);-ms-transform:matrix(0.190397,-0.003808,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190397,-0.003808,0.004999,0.249950,0,0);}
.md4_c00471{transform:matrix(0.190862,-0.003817,0.004999,0.249950,0,0);-ms-transform:matrix(0.190862,-0.003817,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190862,-0.003817,0.004999,0.249950,0,0);}
.m69_c00471{transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);-ms-transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191247,-0.003825,0.004999,0.249950,0,0);}
.mfc_c00471{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.mc4_c00471{transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);-ms-transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);}
.m50_c00471{transform:matrix(0.192367,-0.003847,0.004999,0.249950,0,0);-ms-transform:matrix(0.192367,-0.003847,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192367,-0.003847,0.004999,0.249950,0,0);}
.m7b_c00471{transform:matrix(0.192432,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192432,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192432,-0.003849,0.004999,0.249950,0,0);}
.m5a_c00471{transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);-ms-transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193011,-0.003860,0.004999,0.249950,0,0);}
.m71_c00471{transform:matrix(0.193541,-0.003871,0.004999,0.249950,0,0);-ms-transform:matrix(0.193541,-0.003871,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193541,-0.003871,0.004999,0.249950,0,0);}
.mb_c00471{transform:matrix(0.194096,-0.003882,0.004999,0.249950,0,0);-ms-transform:matrix(0.194096,-0.003882,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194096,-0.003882,0.004999,0.249950,0,0);}
.m42_c00471{transform:matrix(0.194766,-0.003895,0.004999,0.249950,0,0);-ms-transform:matrix(0.194766,-0.003895,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194766,-0.003895,0.004999,0.249950,0,0);}
.m35_c00471{transform:matrix(0.194806,-0.003896,0.004999,0.249950,0,0);-ms-transform:matrix(0.194806,-0.003896,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194806,-0.003896,0.004999,0.249950,0,0);}
.m97_c00471{transform:matrix(0.194856,-0.003897,0.004999,0.249950,0,0);-ms-transform:matrix(0.194856,-0.003897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194856,-0.003897,0.004999,0.249950,0,0);}
.m6c_c00471{transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195071,-0.003901,0.004999,0.249950,0,0);}
.m2c_c00471{transform:matrix(0.195281,-0.003906,0.004999,0.249950,0,0);-ms-transform:matrix(0.195281,-0.003906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195281,-0.003906,0.004999,0.249950,0,0);}
.m7e_c00471{transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195411,-0.003908,0.004999,0.249950,0,0);}
.ma6_c00471{transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195756,-0.002741,0.003500,0.249976,0,0);}
.md6_c00471{transform:matrix(0.196491,-0.003930,0.004999,0.249950,0,0);-ms-transform:matrix(0.196491,-0.003930,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196491,-0.003930,0.004999,0.249950,0,0);}
.ma9_c00471{transform:matrix(0.196606,-0.002752,0.003500,0.249976,0,0);-ms-transform:matrix(0.196606,-0.002752,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196606,-0.002752,0.003500,0.249976,0,0);}
.m40_c00471{transform:matrix(0.196671,-0.003933,0.004999,0.249950,0,0);-ms-transform:matrix(0.196671,-0.003933,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196671,-0.003933,0.004999,0.249950,0,0);}
.me1_c00471{transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);-ms-transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);}
.m3f_c00471{transform:matrix(0.197351,-0.003947,0.004999,0.249950,0,0);-ms-transform:matrix(0.197351,-0.003947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197351,-0.003947,0.004999,0.249950,0,0);}
.mce_c00471{transform:matrix(0.197646,-0.002767,0.003500,0.249976,0,0);-ms-transform:matrix(0.197646,-0.002767,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197646,-0.002767,0.003500,0.249976,0,0);}
.m54_c00471{transform:matrix(0.197815,-0.003956,0.004999,0.249950,0,0);-ms-transform:matrix(0.197815,-0.003956,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197815,-0.003956,0.004999,0.249950,0,0);}
.mf8_c00471{transform:matrix(0.197866,-0.005936,0.007497,0.249888,0,0);-ms-transform:matrix(0.197866,-0.005936,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197866,-0.005936,0.007497,0.249888,0,0);}
.m8b_c00471{transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);-ms-transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197965,-0.003959,0.004999,0.249950,0,0);}
.ma4_c00471{transform:matrix(0.198230,-0.003965,0.004999,0.249950,0,0);-ms-transform:matrix(0.198230,-0.003965,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198230,-0.003965,0.004999,0.249950,0,0);}
.m3_c00471{transform:matrix(0.198310,-0.003966,0.004999,0.249950,0,0);-ms-transform:matrix(0.198310,-0.003966,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198310,-0.003966,0.004999,0.249950,0,0);}
.ma8_c00471{transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);-ms-transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198341,-0.002777,0.003500,0.249976,0,0);}
.m4b_c00471{transform:matrix(0.199015,-0.003980,0.004999,0.249950,0,0);-ms-transform:matrix(0.199015,-0.003980,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199015,-0.003980,0.004999,0.249950,0,0);}
.md1_c00471{transform:matrix(0.199055,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199055,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199055,-0.002787,0.003500,0.249976,0,0);}
.m51_c00471{transform:matrix(0.199195,-0.003984,0.004999,0.249950,0,0);-ms-transform:matrix(0.199195,-0.003984,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199195,-0.003984,0.004999,0.249950,0,0);}
.m98_c00471{transform:matrix(0.199450,-0.003989,0.004999,0.249950,0,0);-ms-transform:matrix(0.199450,-0.003989,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199450,-0.003989,0.004999,0.249950,0,0);}
.mc_c00471{transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-ms-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199515,-0.003990,0.004999,0.249950,0,0);}
.mee_c00471{transform:matrix(0.199647,-0.004392,0.005499,0.249940,0,0);-ms-transform:matrix(0.199647,-0.004392,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199647,-0.004392,0.005499,0.249940,0,0);}
.m45_c00471{transform:matrix(0.199710,-0.003994,0.004999,0.249950,0,0);-ms-transform:matrix(0.199710,-0.003994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199710,-0.003994,0.004999,0.249950,0,0);}
.m28_c00471{transform:matrix(0.199920,-0.003998,0.004999,0.249950,0,0);-ms-transform:matrix(0.199920,-0.003998,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199920,-0.003998,0.004999,0.249950,0,0);}
.m99_c00471{transform:matrix(0.200450,-0.004009,0.004999,0.249950,0,0);-ms-transform:matrix(0.200450,-0.004009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200450,-0.004009,0.004999,0.249950,0,0);}
.m9b_c00471{transform:matrix(0.200705,-0.004014,0.004999,0.249950,0,0);-ms-transform:matrix(0.200705,-0.004014,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200705,-0.004014,0.004999,0.249950,0,0);}
.m49_c00471{transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200990,-0.004020,0.004999,0.249950,0,0);}
.m23_c00471{transform:matrix(0.201195,-0.004024,0.004999,0.249950,0,0);-ms-transform:matrix(0.201195,-0.004024,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201195,-0.004024,0.004999,0.249950,0,0);}
.m95_c00471{transform:matrix(0.201335,-0.004027,0.004999,0.249950,0,0);-ms-transform:matrix(0.201335,-0.004027,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201335,-0.004027,0.004999,0.249950,0,0);}
.m2d_c00471{transform:matrix(0.201595,-0.004032,0.004999,0.249950,0,0);-ms-transform:matrix(0.201595,-0.004032,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201595,-0.004032,0.004999,0.249950,0,0);}
.me0_c00471{transform:matrix(0.201870,-0.004037,0.004999,0.249950,0,0);-ms-transform:matrix(0.201870,-0.004037,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201870,-0.004037,0.004999,0.249950,0,0);}
.ma2_c00471{transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);-ms-transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202015,-0.004040,0.004999,0.249950,0,0);}
.m1b_c00471{transform:matrix(0.202684,-0.004054,0.004999,0.249950,0,0);-ms-transform:matrix(0.202684,-0.004054,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202684,-0.004054,0.004999,0.249950,0,0);}
.m3a_c00471{transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);-ms-transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202744,-0.004055,0.004999,0.249950,0,0);}
.m52_c00471{transform:matrix(0.202769,-0.004055,0.004999,0.249950,0,0);-ms-transform:matrix(0.202769,-0.004055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202769,-0.004055,0.004999,0.249950,0,0);}
.m33_c00471{transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);-ms-transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203334,-0.004067,0.004999,0.249950,0,0);}
.ma0_c00471{transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-ms-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203619,-0.004072,0.004999,0.249950,0,0);}
.m7_c00471{transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203659,-0.004073,0.004999,0.249950,0,0);}
.m36_c00471{transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);-ms-transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204089,-0.004082,0.004999,0.249950,0,0);}
.m9c_c00471{transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);-ms-transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204184,-0.004084,0.004999,0.249950,0,0);}
.m31_c00471{transform:matrix(0.204264,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204264,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204264,-0.004085,0.004999,0.249950,0,0);}
.m9f_c00471{transform:matrix(0.205029,-0.004101,0.004999,0.249950,0,0);-ms-transform:matrix(0.205029,-0.004101,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205029,-0.004101,0.004999,0.249950,0,0);}
.m63_c00471{transform:matrix(0.205419,-0.004108,0.004999,0.249950,0,0);-ms-transform:matrix(0.205419,-0.004108,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205419,-0.004108,0.004999,0.249950,0,0);}
.ma3_c00471{transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205784,-0.004116,0.004999,0.249950,0,0);}
.m74_c00471{transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);-ms-transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205804,-0.004116,0.004999,0.249950,0,0);}
.m8f_c00471{transform:matrix(0.206284,-0.004126,0.004999,0.249950,0,0);-ms-transform:matrix(0.206284,-0.004126,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206284,-0.004126,0.004999,0.249950,0,0);}
.m7a_c00471{transform:matrix(0.206469,-0.004129,0.004999,0.249950,0,0);-ms-transform:matrix(0.206469,-0.004129,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206469,-0.004129,0.004999,0.249950,0,0);}
.mdc_c00471{transform:matrix(0.207548,-0.004151,0.004999,0.249950,0,0);-ms-transform:matrix(0.207548,-0.004151,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207548,-0.004151,0.004999,0.249950,0,0);}
.mdd_c00471{transform:matrix(0.207718,-0.004154,0.004999,0.249950,0,0);-ms-transform:matrix(0.207718,-0.004154,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207718,-0.004154,0.004999,0.249950,0,0);}
.md_c00471{transform:matrix(0.208123,-0.004162,0.004999,0.249950,0,0);-ms-transform:matrix(0.208123,-0.004162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208123,-0.004162,0.004999,0.249950,0,0);}
.mf_c00471{transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208543,-0.004171,0.004999,0.249950,0,0);}
.m30_c00471{transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);-ms-transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209083,-0.004182,0.004999,0.249950,0,0);}
.mf5_c00471{transform:matrix(0.209451,-0.006284,0.007497,0.249888,0,0);-ms-transform:matrix(0.209451,-0.006284,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209451,-0.006284,0.007497,0.249888,0,0);}
.m11_c00471{transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);-ms-transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209538,-0.004191,0.004999,0.249950,0,0);}
.m90_c00471{transform:matrix(0.209733,-0.004195,0.004999,0.249950,0,0);-ms-transform:matrix(0.209733,-0.004195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209733,-0.004195,0.004999,0.249950,0,0);}
.m17_c00471{transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-ms-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);}
.m66_c00471{transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);-ms-transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210308,-0.004206,0.004999,0.249950,0,0);}
.m13_c00471{transform:matrix(0.210393,-0.004208,0.004999,0.249950,0,0);-ms-transform:matrix(0.210393,-0.004208,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210393,-0.004208,0.004999,0.249950,0,0);}
.m64_c00471{transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);-ms-transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211023,-0.004220,0.004999,0.249950,0,0);}
.meb_c00471{transform:matrix(0.211194,-0.004646,0.005499,0.249940,0,0);-ms-transform:matrix(0.211194,-0.004646,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211194,-0.004646,0.005499,0.249940,0,0);}
.m89_c00471{transform:matrix(0.211363,-0.004227,0.004999,0.249950,0,0);-ms-transform:matrix(0.211363,-0.004227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211363,-0.004227,0.004999,0.249950,0,0);}
.mf3_c00471{transform:matrix(0.212614,-0.004677,0.005499,0.249940,0,0);-ms-transform:matrix(0.212614,-0.004677,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212614,-0.004677,0.005499,0.249940,0,0);}
.m86_c00471{transform:matrix(0.212957,-0.004259,0.004999,0.249950,0,0);-ms-transform:matrix(0.212957,-0.004259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212957,-0.004259,0.004999,0.249950,0,0);}
.mde_c00471{transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);-ms-transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213532,-0.004271,0.004999,0.249950,0,0);}
.me_c00471{transform:matrix(0.214262,-0.004285,0.004999,0.249950,0,0);-ms-transform:matrix(0.214262,-0.004285,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214262,-0.004285,0.004999,0.249950,0,0);}
.m3e_c00471{transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-ms-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214422,-0.004288,0.004999,0.249950,0,0);}
.m79_c00471{transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);-ms-transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215372,-0.004307,0.004999,0.249950,0,0);}
.m2f_c00471{transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);-ms-transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215782,-0.004316,0.004999,0.249950,0,0);}
.m81_c00471{transform:matrix(0.217497,-0.004350,0.004999,0.249950,0,0);-ms-transform:matrix(0.217497,-0.004350,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217497,-0.004350,0.004999,0.249950,0,0);}
.md0_c00471{transform:matrix(0.218144,-0.003054,0.003500,0.249976,0,0);-ms-transform:matrix(0.218144,-0.003054,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218144,-0.003054,0.003500,0.249976,0,0);}
.m2b_c00471{transform:matrix(0.218276,-0.004366,0.004999,0.249950,0,0);-ms-transform:matrix(0.218276,-0.004366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218276,-0.004366,0.004999,0.249950,0,0);}
.m67_c00471{transform:matrix(0.218316,-0.004366,0.004999,0.249950,0,0);-ms-transform:matrix(0.218316,-0.004366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218316,-0.004366,0.004999,0.249950,0,0);}
.ma7_c00471{transform:matrix(0.219014,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.219014,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219014,-0.003066,0.003500,0.249976,0,0);}
.md9_c00471{transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-ms-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);}
.ma_c00471{transform:matrix(0.220546,-0.004411,0.004999,0.249950,0,0);-ms-transform:matrix(0.220546,-0.004411,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220546,-0.004411,0.004999,0.249950,0,0);}
.m75_c00471{transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);-ms-transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220761,-0.004415,0.004999,0.249950,0,0);}
.m9a_c00471{transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);-ms-transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221741,-0.004435,0.004999,0.249950,0,0);}
.m25_c00471{transform:matrix(0.222580,-0.004452,0.004999,0.249950,0,0);-ms-transform:matrix(0.222580,-0.004452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222580,-0.004452,0.004999,0.249950,0,0);}
.m8d_c00471{transform:matrix(0.223110,-0.004462,0.004999,0.249950,0,0);-ms-transform:matrix(0.223110,-0.004462,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223110,-0.004462,0.004999,0.249950,0,0);}
.m38_c00471{transform:matrix(0.224555,-0.004491,0.004999,0.249950,0,0);-ms-transform:matrix(0.224555,-0.004491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224555,-0.004491,0.004999,0.249950,0,0);}
.md2_c00471{transform:matrix(0.224613,-0.003145,0.003500,0.249976,0,0);-ms-transform:matrix(0.224613,-0.003145,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224613,-0.003145,0.003500,0.249976,0,0);}
.m32_c00471{transform:matrix(0.226065,-0.004521,0.004999,0.249950,0,0);-ms-transform:matrix(0.226065,-0.004521,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226065,-0.004521,0.004999,0.249950,0,0);}
.m78_c00471{transform:matrix(0.226840,-0.004537,0.004999,0.249950,0,0);-ms-transform:matrix(0.226840,-0.004537,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226840,-0.004537,0.004999,0.249950,0,0);}
.m27_c00471{transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);-ms-transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227260,-0.004545,0.004999,0.249950,0,0);}
.m39_c00471{transform:matrix(0.228534,-0.004571,0.004999,0.249950,0,0);-ms-transform:matrix(0.228534,-0.004571,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228534,-0.004571,0.004999,0.249950,0,0);}
.m26_c00471{transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);-ms-transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228549,-0.004571,0.004999,0.249950,0,0);}
.m87_c00471{transform:matrix(0.228674,-0.004573,0.004999,0.249950,0,0);-ms-transform:matrix(0.228674,-0.004573,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228674,-0.004573,0.004999,0.249950,0,0);}
.m8e_c00471{transform:matrix(0.229009,-0.004580,0.004999,0.249950,0,0);-ms-transform:matrix(0.229009,-0.004580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229009,-0.004580,0.004999,0.249950,0,0);}
.mea_c00471{transform:matrix(0.232914,-0.005124,0.005499,0.249940,0,0);-ms-transform:matrix(0.232914,-0.005124,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232914,-0.005124,0.005499,0.249940,0,0);}
.ma1_c00471{transform:matrix(0.234318,-0.004686,0.004999,0.249950,0,0);-ms-transform:matrix(0.234318,-0.004686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234318,-0.004686,0.004999,0.249950,0,0);}
.m4_c00471{transform:matrix(0.235318,-0.004706,0.004999,0.249950,0,0);-ms-transform:matrix(0.235318,-0.004706,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235318,-0.004706,0.004999,0.249950,0,0);}
.m20_c00471{transform:matrix(0.247191,-0.004944,0.004999,0.249950,0,0);-ms-transform:matrix(0.247191,-0.004944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247191,-0.004944,0.004999,0.249950,0,0);}
.mc3_c00471{transform:matrix(0.251395,-0.003520,0.003500,0.249976,0,0);-ms-transform:matrix(0.251395,-0.003520,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251395,-0.003520,0.003500,0.249976,0,0);}
.m61_c00471{transform:matrix(0.252744,-0.005055,0.004999,0.249950,0,0);-ms-transform:matrix(0.252744,-0.005055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252744,-0.005055,0.004999,0.249950,0,0);}
.mc2_c00471{transform:matrix(0.265974,-0.003724,0.003500,0.249976,0,0);-ms-transform:matrix(0.265974,-0.003724,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265974,-0.003724,0.003500,0.249976,0,0);}
.m7c_c00471{transform:matrix(0.286108,-0.005722,0.004999,0.249950,0,0);-ms-transform:matrix(0.286108,-0.005722,0.004999,0.249950,0,0);-webkit-transform:matrix(0.286108,-0.005722,0.004999,0.249950,0,0);}
.m16_c00471{transform:matrix(0.302190,-0.006044,0.004999,0.249950,0,0);-ms-transform:matrix(0.302190,-0.006044,0.004999,0.249950,0,0);-webkit-transform:matrix(0.302190,-0.006044,0.004999,0.249950,0,0);}
.m2e_c00471{transform:matrix(0.306174,-0.006123,0.004999,0.249950,0,0);-ms-transform:matrix(0.306174,-0.006123,0.004999,0.249950,0,0);-webkit-transform:matrix(0.306174,-0.006123,0.004999,0.249950,0,0);}
.m1f_c00471{transform:matrix(0.322555,-0.006451,0.004999,0.249950,0,0);-ms-transform:matrix(0.322555,-0.006451,0.004999,0.249950,0,0);-webkit-transform:matrix(0.322555,-0.006451,0.004999,0.249950,0,0);}
.m77_c00471{transform:matrix(0.327110,-0.006542,0.004999,0.249950,0,0);-ms-transform:matrix(0.327110,-0.006542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.327110,-0.006542,0.004999,0.249950,0,0);}
.m6f_c00471{transform:matrix(0.357224,-0.007144,0.004999,0.249950,0,0);-ms-transform:matrix(0.357224,-0.007144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.357224,-0.007144,0.004999,0.249950,0,0);}
.m15_c00471{transform:matrix(0.364437,-0.007289,0.004999,0.249950,0,0);-ms-transform:matrix(0.364437,-0.007289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.364437,-0.007289,0.004999,0.249950,0,0);}
.mab_c00471{transform:matrix(0.397995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397995,0.000000,0.000000,0.250000,0,0);}
.mb2_c00471{transform:matrix(0.401100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401100,0.000000,0.000000,0.250000,0,0);}
.mae_c00471{transform:matrix(0.417925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417925,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.486858,-0.009737,0.004999,0.249950,0,0);-ms-transform:matrix(0.486858,-0.009737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.486858,-0.009737,0.004999,0.249950,0,0);}
.m0_c00471{transform:matrix(0.552814,-0.011056,0.004999,0.249950,0,0);-ms-transform:matrix(0.552814,-0.011056,0.004999,0.249950,0,0);-webkit-transform:matrix(0.552814,-0.011056,0.004999,0.249950,0,0);}
.mb1_c00471{transform:matrix(0.674000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:0.000000px;}
.fc0_c00471{color:transparent;}
.fsb_c00471{font-size:22.050000px;}
.fs6_c00471{font-size:59.861969px;}
.fs5_c00471{font-size:60.912179px;}
.fs2_c00471{font-size:61.962389px;}
.fsa_c00471{font-size:63.006174px;}
.fs1_c00471{font-size:63.012599px;}
.fsf_c00471{font-size:64.056277px;}
.fs3_c00471{font-size:64.062809px;}
.fs7_c00471{font-size:65.113019px;}
.fs11_c00471{font-size:65.115752px;}
.fsc_c00471{font-size:67.200000px;}
.fs8_c00471{font-size:67.213439px;}
.fs12_c00471{font-size:67.230233px;}
.fs10_c00471{font-size:68.263649px;}
.fsd_c00471{font-size:71.406997px;}
.fs9_c00471{font-size:71.414279px;}
.fs4_c00471{font-size:72.464489px;}
.fse_c00471{font-size:74.557306px;}
.fs0_c00471{font-size:114.472888px;}
.y0_c00471{bottom:0.000000px;}
.yf1_c00471{bottom:24.042000px;}
.yf2_c00471{bottom:25.632345px;}
.yf3_c00471{bottom:25.988250px;}
.yf4_c00471{bottom:27.702750px;}
.yf5_c00471{bottom:28.449300px;}
.yf6_c00471{bottom:30.924120px;}
.yf7_c00471{bottom:31.690515px;}
.yf8_c00471{bottom:32.148030px;}
.ye7_c00471{bottom:41.046000px;}
.ye8_c00471{bottom:41.919477px;}
.ye9_c00471{bottom:42.406425px;}
.yea_c00471{bottom:42.999633px;}
.yeb_c00471{bottom:43.862418px;}
.yec_c00471{bottom:45.050121px;}
.yed_c00471{bottom:45.465954px;}
.yee_c00471{bottom:45.829251px;}
.yef_c00471{bottom:46.905051px;}
.yf0_c00471{bottom:47.327979px;}
.yde_c00471{bottom:58.326210px;}
.ydf_c00471{bottom:58.985280px;}
.ye0_c00471{bottom:60.719940px;}
.ye1_c00471{bottom:61.752090px;}
.ye2_c00471{bottom:62.253720px;}
.ye3_c00471{bottom:62.866890px;}
.ye4_c00471{bottom:63.450480px;}
.ye5_c00471{bottom:64.627740px;}
.ye6_c00471{bottom:65.115810px;}
.yd6_c00471{bottom:75.063000px;}
.yd7_c00471{bottom:75.233070px;}
.yd8_c00471{bottom:75.573420px;}
.yd9_c00471{bottom:76.361670px;}
.yda_c00471{bottom:76.729560px;}
.ydb_c00471{bottom:78.245250px;}
.ydc_c00471{bottom:79.294380px;}
.ydd_c00471{bottom:80.359680px;}
.yd0_c00471{bottom:92.074500px;}
.yd1_c00471{bottom:93.363540px;}
.yd2_c00471{bottom:93.954180px;}
.yd3_c00471{bottom:94.391370px;}
.yd4_c00471{bottom:95.590050px;}
.yd5_c00471{bottom:96.038280px;}
.yc9_c00471{bottom:108.542448px;}
.yca_c00471{bottom:109.706697px;}
.ycb_c00471{bottom:110.850822px;}
.ycc_c00471{bottom:111.102000px;}
.ycd_c00471{bottom:111.963624px;}
.yce_c00471{bottom:112.276872px;}
.ycf_c00471{bottom:113.405808px;}
.yc1_c00471{bottom:125.824560px;}
.yc2_c00471{bottom:126.986187px;}
.yc3_c00471{bottom:128.205429px;}
.yc4_c00471{bottom:128.579514px;}
.yc5_c00471{bottom:128.880627px;}
.yc6_c00471{bottom:130.541793px;}
.yc7_c00471{bottom:131.074029px;}
.yc8_c00471{bottom:131.387832px;}
.yba_c00471{bottom:142.833000px;}
.ybb_c00471{bottom:143.716701px;}
.ybc_c00471{bottom:144.095520px;}
.ybd_c00471{bottom:145.002678px;}
.ybe_c00471{bottom:145.377024px;}
.ybf_c00471{bottom:145.846500px;}
.yc0_c00471{bottom:146.103309px;}
.yb0_c00471{bottom:159.841500px;}
.yb1_c00471{bottom:160.239000px;}
.yb2_c00471{bottom:160.443000px;}
.yb3_c00471{bottom:160.806000px;}
.yb4_c00471{bottom:161.790000px;}
.yb5_c00471{bottom:162.406500px;}
.yb6_c00471{bottom:162.730500px;}
.yb7_c00471{bottom:163.581000px;}
.yb8_c00471{bottom:163.911000px;}
.yb9_c00471{bottom:164.373000px;}
.yaf_c00471{bottom:170.476500px;}
.ya9_c00471{bottom:177.933000px;}
.yaa_c00471{bottom:178.813698px;}
.yab_c00471{bottom:179.855865px;}
.yac_c00471{bottom:180.045957px;}
.yad_c00471{bottom:180.333363px;}
.yae_c00471{bottom:181.430088px;}
.ya3_c00471{bottom:194.872170px;}
.ya4_c00471{bottom:195.431430px;}
.ya5_c00471{bottom:195.763260px;}
.ya6_c00471{bottom:197.074920px;}
.ya7_c00471{bottom:197.824740px;}
.ya8_c00471{bottom:198.461490px;}
.y9c_c00471{bottom:212.694540px;}
.y9d_c00471{bottom:213.093180px;}
.y9e_c00471{bottom:213.745110px;}
.y9f_c00471{bottom:214.198170px;}
.ya0_c00471{bottom:214.690650px;}
.ya1_c00471{bottom:215.394450px;}
.ya2_c00471{bottom:215.638110px;}
.y9a_c00471{bottom:230.219220px;}
.y96_c00471{bottom:230.219580px;}
.y9b_c00471{bottom:230.219700px;}
.y97_c00471{bottom:230.219790px;}
.y98_c00471{bottom:230.219850px;}
.y99_c00471{bottom:230.220090px;}
.y8e_c00471{bottom:245.101620px;}
.y8f_c00471{bottom:245.469060px;}
.y90_c00471{bottom:245.965440px;}
.y91_c00471{bottom:246.631140px;}
.y92_c00471{bottom:247.026840px;}
.y93_c00471{bottom:248.127780px;}
.y94_c00471{bottom:248.363250px;}
.y95_c00471{bottom:249.630570px;}
.y86_c00471{bottom:261.842040px;}
.y87_c00471{bottom:262.732590px;}
.y88_c00471{bottom:263.001960px;}
.y89_c00471{bottom:263.792160px;}
.y8a_c00471{bottom:264.186750px;}
.y8b_c00471{bottom:264.432090px;}
.y8c_c00471{bottom:265.165620px;}
.y8d_c00471{bottom:265.360080px;}
.y7e_c00471{bottom:278.586210px;}
.y7f_c00471{bottom:279.780840px;}
.y80_c00471{bottom:280.228890px;}
.y81_c00471{bottom:280.497060px;}
.y82_c00471{bottom:281.717520px;}
.y83_c00471{bottom:282.013950px;}
.y84_c00471{bottom:282.387870px;}
.y85_c00471{bottom:283.603050px;}
.y78_c00471{bottom:295.599840px;}
.y79_c00471{bottom:297.369240px;}
.y7a_c00471{bottom:297.494790px;}
.y7b_c00471{bottom:298.316280px;}
.y7c_c00471{bottom:299.153040px;}
.y7d_c00471{bottom:299.517960px;}
.y6d_c00471{bottom:312.614370px;}
.y6e_c00471{bottom:312.951690px;}
.y6f_c00471{bottom:313.793460px;}
.y70_c00471{bottom:314.162700px;}
.y71_c00471{bottom:314.598300px;}
.y72_c00471{bottom:315.396120px;}
.y73_c00471{bottom:315.639630px;}
.y74_c00471{bottom:316.065870px;}
.y75_c00471{bottom:316.952070px;}
.y76_c00471{bottom:317.302020px;}
.y77_c00471{bottom:317.878350px;}
.y65_c00471{bottom:329.627520px;}
.y66_c00471{bottom:330.102960px;}
.y67_c00471{bottom:331.296240px;}
.y68_c00471{bottom:331.685190px;}
.y69_c00471{bottom:332.009460px;}
.y6a_c00471{bottom:333.316530px;}
.y6b_c00471{bottom:334.536900px;}
.y6c_c00471{bottom:334.974630px;}
.y5c_c00471{bottom:346.638810px;}
.y5d_c00471{bottom:347.314260px;}
.y5e_c00471{bottom:347.685780px;}
.y5f_c00471{bottom:348.113280px;}
.y60_c00471{bottom:349.365390px;}
.y61_c00471{bottom:349.743870px;}
.y62_c00471{bottom:350.020110px;}
.y63_c00471{bottom:350.432640px;}
.y64_c00471{bottom:351.450720px;}
.yf9_c00471{bottom:352.890000px;}
.y53_c00471{bottom:364.192170px;}
.y54_c00471{bottom:365.027070px;}
.y55_c00471{bottom:365.285580px;}
.y56_c00471{bottom:365.613420px;}
.y57_c00471{bottom:366.906690px;}
.y58_c00471{bottom:367.143240px;}
.y59_c00471{bottom:368.260380px;}
.y5a_c00471{bottom:368.758800px;}
.y5b_c00471{bottom:369.406620px;}
.y4c_c00471{bottom:380.665500px;}
.y4d_c00471{bottom:381.422880px;}
.y4e_c00471{bottom:382.556730px;}
.y4f_c00471{bottom:383.324280px;}
.y50_c00471{bottom:383.694120px;}
.y51_c00471{bottom:385.025460px;}
.y52_c00471{bottom:385.389900px;}
.y46_c00471{bottom:397.679340px;}
.y47_c00471{bottom:398.312370px;}
.y48_c00471{bottom:399.954840px;}
.y49_c00471{bottom:400.260480px;}
.y4a_c00471{bottom:401.529030px;}
.y4b_c00471{bottom:402.306090px;}
.y3d_c00471{bottom:415.232490px;}
.y3e_c00471{bottom:415.788120px;}
.y3f_c00471{bottom:416.113620px;}
.y40_c00471{bottom:416.373330px;}
.y41_c00471{bottom:416.822280px;}
.y42_c00471{bottom:417.754740px;}
.y43_c00471{bottom:418.262100px;}
.y44_c00471{bottom:418.594320px;}
.y45_c00471{bottom:419.433240px;}
.y37_c00471{bottom:432.516150px;}
.y38_c00471{bottom:433.144260px;}
.y39_c00471{bottom:434.175720px;}
.y3a_c00471{bottom:434.439840px;}
.y3b_c00471{bottom:435.379890px;}
.y3c_c00471{bottom:436.152120px;}
.y30_c00471{bottom:449.259570px;}
.y31_c00471{bottom:450.303300px;}
.y32_c00471{bottom:450.823050px;}
.y33_c00471{bottom:451.622100px;}
.y34_c00471{bottom:452.508900px;}
.y35_c00471{bottom:452.690610px;}
.y36_c00471{bottom:453.281760px;}
.y29_c00471{bottom:466.003500px;}
.y2a_c00471{bottom:466.761960px;}
.y2b_c00471{bottom:467.126400px;}
.y2c_c00471{bottom:468.166410px;}
.y2d_c00471{bottom:468.748920px;}
.y2e_c00471{bottom:469.941450px;}
.y2f_c00471{bottom:471.136920px;}
.y20_c00471{bottom:482.747580px;}
.y21_c00471{bottom:483.666810px;}
.y22_c00471{bottom:484.070100px;}
.y23_c00471{bottom:484.842360px;}
.y24_c00471{bottom:485.219190px;}
.y25_c00471{bottom:486.624750px;}
.y26_c00471{bottom:486.965100px;}
.y27_c00471{bottom:488.145840px;}
.y28_c00471{bottom:488.444070px;}
.y18_c00471{bottom:500.013630px;}
.y19_c00471{bottom:500.460600px;}
.y1a_c00471{bottom:501.342270px;}
.y1b_c00471{bottom:501.840450px;}
.y1c_c00471{bottom:502.099260px;}
.y1d_c00471{bottom:502.795110px;}
.y1e_c00471{bottom:502.929900px;}
.y1f_c00471{bottom:503.647800px;}
.y15_c00471{bottom:516.236580px;}
.y16_c00471{bottom:520.523940px;}
.y17_c00471{bottom:522.800610px;}
.yc_c00471{bottom:532.439670px;}
.yd_c00471{bottom:533.452380px;}
.ye_c00471{bottom:533.911500px;}
.yf_c00471{bottom:534.675150px;}
.y10_c00471{bottom:536.094540px;}
.y11_c00471{bottom:536.699940px;}
.y12_c00471{bottom:537.054420px;}
.y13_c00471{bottom:538.315830px;}
.y14_c00471{bottom:538.642590px;}
.y4_c00471{bottom:549.992460px;}
.y5_c00471{bottom:551.091840px;}
.y6_c00471{bottom:551.410320px;}
.y7_c00471{bottom:551.889570px;}
.y8_c00471{bottom:553.213290px;}
.y9_c00471{bottom:554.347470px;}
.ya_c00471{bottom:555.515850px;}
.yb_c00471{bottom:555.981570px;}
.y1_c00471{bottom:564.031500px;}
.y2_c00471{bottom:567.360150px;}
.y3_c00471{bottom:568.940190px;}
.hd_c00471{height:22.050000px;}
.h8_c00471{height:59.861969px;}
.h7_c00471{height:60.912179px;}
.h4_c00471{height:61.962389px;}
.hc_c00471{height:63.006174px;}
.h3_c00471{height:63.012599px;}
.h11_c00471{height:64.056277px;}
.h5_c00471{height:64.062809px;}
.h9_c00471{height:65.113019px;}
.h13_c00471{height:65.115752px;}
.he_c00471{height:67.200000px;}
.ha_c00471{height:67.213439px;}
.h14_c00471{height:67.230233px;}
.h12_c00471{height:68.263649px;}
.hf_c00471{height:71.406997px;}
.hb_c00471{height:71.414279px;}
.h6_c00471{height:72.464489px;}
.h10_c00471{height:74.557306px;}
.h2_c00471{height:114.472888px;}
.h0_c00471{height:617.700000px;}
.h1_c00471{height:618.000000px;}
.w0_c00471{width:359.100000px;}
.w1_c00471{width:359.250000px;}
.x0_c00471{left:0.000000px;}
.x77_c00471{left:42.387000px;}
.x70_c00471{left:43.993500px;}
.x68_c00471{left:46.096500px;}
.x3b_c00471{left:48.820620px;}
.x15_c00471{left:50.066610px;}
.x60_c00471{left:51.300000px;}
.x1d_c00471{left:52.385220px;}
.x4_c00471{left:54.560730px;}
.x12_c00471{left:63.495150px;}
.x72_c00471{left:69.379500px;}
.x4a_c00471{left:71.743020px;}
.x55_c00471{left:75.537150px;}
.x46_c00471{left:77.490930px;}
.x16_c00471{left:79.843080px;}
.x1_c00471{left:81.918000px;}
.x31_c00471{left:89.765820px;}
.x3c_c00471{left:90.891300px;}
.x40_c00471{left:92.754330px;}
.x23_c00471{left:96.891600px;}
.xb_c00471{left:98.054790px;}
.x5_c00471{left:104.502720px;}
.x41_c00471{left:106.355100px;}
.x6c_c00471{left:107.450835px;}
.x73_c00471{left:108.792000px;}
.x32_c00471{left:110.092440px;}
.x5c_c00471{left:112.530660px;}
.x44_c00471{left:114.720300px;}
.x4b_c00471{left:116.082420px;}
.x24_c00471{left:117.139410px;}
.x6_c00471{left:119.001150px;}
.x29_c00471{left:122.697960px;}
.x33_c00471{left:126.304230px;}
.x61_c00471{left:130.950000px;}
.x4c_c00471{left:135.519810px;}
.x47_c00471{left:137.154930px;}
.x17_c00471{left:138.632460px;}
.x7_c00471{left:140.787780px;}
.x62_c00471{left:142.830000px;}
.x56_c00471{left:143.845230px;}
.x74_c00471{left:145.057710px;}
.x50_c00471{left:148.487730px;}
.xc_c00471{left:151.240110px;}
.x34_c00471{left:154.378980px;}
.x51_c00471{left:155.440500px;}
.x1e_c00471{left:157.124220px;}
.x4d_c00471{left:158.425260px;}
.x71_c00471{left:159.837000px;}
.x59_c00471{left:165.134700px;}
.x57_c00471{left:167.081610px;}
.x78_c00471{left:170.406000px;}
.x18_c00471{left:171.869790px;}
.x6e_c00471{left:173.592147px;}
.x25_c00471{left:174.917220px;}
.x1f_c00471{left:175.965720px;}
.x37_c00471{left:180.604680px;}
.x6d_c00471{left:183.323901px;}
.x75_c00471{left:184.735440px;}
.x6f_c00471{left:186.818223px;}
.x19_c00471{left:189.162030px;}
.x7b_c00471{left:190.515000px;}
.x2e_c00471{left:191.619660px;}
.x3d_c00471{left:196.540530px;}
.x38_c00471{left:197.612370px;}
.x5d_c00471{left:199.947390px;}
.x8_c00471{left:200.971380px;}
.x5a_c00471{left:202.943760px;}
.x42_c00471{left:204.115050px;}
.x63_c00471{left:205.740000px;}
.x26_c00471{left:207.269010px;}
.x2a_c00471{left:210.546720px;}
.xd_c00471{left:212.980920px;}
.x3e_c00471{left:217.058340px;}
.x53_c00471{left:220.530420px;}
.x52_c00471{left:221.919000px;}
.x5f_c00471{left:223.753500px;}
.x69_c00471{left:227.812500px;}
.x64_c00471{left:230.040000px;}
.x58_c00471{left:231.807480px;}
.x65_c00471{left:233.436000px;}
.x1a_c00471{left:235.584180px;}
.x48_c00471{left:238.169430px;}
.xe_c00471{left:239.274330px;}
.x13_c00471{left:242.148870px;}
.x79_c00471{left:243.294000px;}
.x1b_c00471{left:244.574580px;}
.x20_c00471{left:246.243720px;}
.x2_c00471{left:248.350500px;}
.x5e_c00471{left:249.968400px;}
.x9_c00471{left:252.503310px;}
.xf_c00471{left:254.672400px;}
.x2f_c00471{left:258.805230px;}
.x7a_c00471{left:259.807500px;}
.x6a_c00471{left:261.346500px;}
.x21_c00471{left:263.261220px;}
.x35_c00471{left:265.039800px;}
.x39_c00471{left:268.092690px;}
.x2b_c00471{left:269.667630px;}
.x27_c00471{left:273.498150px;}
.x45_c00471{left:276.222960px;}
.x6b_c00471{left:279.690000px;}
.x2c_c00471{left:281.829360px;}
.x66_c00471{left:286.594500px;}
.x43_c00471{left:289.094730px;}
.x3f_c00471{left:291.053310px;}
.x1c_c00471{left:292.399350px;}
.x76_c00471{left:295.354680px;}
.x49_c00471{left:299.187930px;}
.x4e_c00471{left:300.739110px;}
.x5b_c00471{left:302.598690px;}
.x54_c00471{left:304.256940px;}
.xa_c00471{left:305.595180px;}
.x67_c00471{left:307.195500px;}
.x10_c00471{left:309.489600px;}
.x3a_c00471{left:311.297430px;}
.x30_c00471{left:313.923330px;}
.x36_c00471{left:317.490000px;}
.x2d_c00471{left:321.215790px;}
.x22_c00471{left:322.298220px;}
.x11_c00471{left:323.726760px;}
.x3_c00471{left:327.352500px;}
.x4f_c00471{left:331.056210px;}
.x14_c00471{left:336.999780px;}
.x28_c00471{left:339.949320px;}
.x7c_c00471{left:352.620000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
.fsb_c00471{font-size:19.600000pt;}
.fs6_c00471{font-size:53.210639pt;}
.fs5_c00471{font-size:54.144159pt;}
.fs2_c00471{font-size:55.077679pt;}
.fsa_c00471{font-size:56.005488pt;}
.fs1_c00471{font-size:56.011199pt;}
.fsf_c00471{font-size:56.938913pt;}
.fs3_c00471{font-size:56.944719pt;}
.fs7_c00471{font-size:57.878239pt;}
.fs11_c00471{font-size:57.880669pt;}
.fsc_c00471{font-size:59.733333pt;}
.fs8_c00471{font-size:59.745279pt;}
.fs12_c00471{font-size:59.760207pt;}
.fs10_c00471{font-size:60.678799pt;}
.fsd_c00471{font-size:63.472886pt;}
.fs9_c00471{font-size:63.479359pt;}
.fs4_c00471{font-size:64.412879pt;}
.fse_c00471{font-size:66.273160pt;}
.fs0_c00471{font-size:101.753678pt;}
.y0_c00471{bottom:0.000000pt;}
.yf1_c00471{bottom:21.370667pt;}
.yf2_c00471{bottom:22.784307pt;}
.yf3_c00471{bottom:23.100667pt;}
.yf4_c00471{bottom:24.624667pt;}
.yf5_c00471{bottom:25.288267pt;}
.yf6_c00471{bottom:27.488107pt;}
.yf7_c00471{bottom:28.169347pt;}
.yf8_c00471{bottom:28.576027pt;}
.ye7_c00471{bottom:36.485333pt;}
.ye8_c00471{bottom:37.261757pt;}
.ye9_c00471{bottom:37.694600pt;}
.yea_c00471{bottom:38.221896pt;}
.yeb_c00471{bottom:38.988816pt;}
.yec_c00471{bottom:40.044552pt;}
.yed_c00471{bottom:40.414181pt;}
.yee_c00471{bottom:40.737112pt;}
.yef_c00471{bottom:41.693379pt;}
.yf0_c00471{bottom:42.069315pt;}
.yde_c00471{bottom:51.845520pt;}
.ydf_c00471{bottom:52.431360pt;}
.ye0_c00471{bottom:53.973280pt;}
.ye1_c00471{bottom:54.890747pt;}
.ye2_c00471{bottom:55.336640pt;}
.ye3_c00471{bottom:55.881680pt;}
.ye4_c00471{bottom:56.400427pt;}
.ye5_c00471{bottom:57.446880pt;}
.ye6_c00471{bottom:57.880720pt;}
.yd6_c00471{bottom:66.722667pt;}
.yd7_c00471{bottom:66.873840pt;}
.yd8_c00471{bottom:67.176373pt;}
.yd9_c00471{bottom:67.877040pt;}
.yda_c00471{bottom:68.204053pt;}
.ydb_c00471{bottom:69.551333pt;}
.ydc_c00471{bottom:70.483893pt;}
.ydd_c00471{bottom:71.430827pt;}
.yd0_c00471{bottom:81.844000pt;}
.yd1_c00471{bottom:82.989813pt;}
.yd2_c00471{bottom:83.514827pt;}
.yd3_c00471{bottom:83.903440pt;}
.yd4_c00471{bottom:84.968933pt;}
.yd5_c00471{bottom:85.367360pt;}
.yc9_c00471{bottom:96.482176pt;}
.yca_c00471{bottom:97.517064pt;}
.ycb_c00471{bottom:98.534064pt;}
.ycc_c00471{bottom:98.757333pt;}
.ycd_c00471{bottom:99.523221pt;}
.yce_c00471{bottom:99.801664pt;}
.ycf_c00471{bottom:100.805163pt;}
.yc1_c00471{bottom:111.844053pt;}
.yc2_c00471{bottom:112.876611pt;}
.yc3_c00471{bottom:113.960381pt;}
.yc4_c00471{bottom:114.292901pt;}
.yc5_c00471{bottom:114.560557pt;}
.yc6_c00471{bottom:116.037149pt;}
.yc7_c00471{bottom:116.510248pt;}
.yc8_c00471{bottom:116.789184pt;}
.yba_c00471{bottom:126.962667pt;}
.ybb_c00471{bottom:127.748179pt;}
.ybc_c00471{bottom:128.084907pt;}
.ybd_c00471{bottom:128.891269pt;}
.ybe_c00471{bottom:129.224021pt;}
.ybf_c00471{bottom:129.641333pt;}
.yc0_c00471{bottom:129.869608pt;}
.yb0_c00471{bottom:142.081333pt;}
.yb1_c00471{bottom:142.434667pt;}
.yb2_c00471{bottom:142.616000pt;}
.yb3_c00471{bottom:142.938667pt;}
.yb4_c00471{bottom:143.813333pt;}
.yb5_c00471{bottom:144.361333pt;}
.yb6_c00471{bottom:144.649333pt;}
.yb7_c00471{bottom:145.405333pt;}
.yb8_c00471{bottom:145.698667pt;}
.yb9_c00471{bottom:146.109333pt;}
.yaf_c00471{bottom:151.534667pt;}
.ya9_c00471{bottom:158.162667pt;}
.yaa_c00471{bottom:158.945509pt;}
.yab_c00471{bottom:159.871880pt;}
.yac_c00471{bottom:160.040851pt;}
.yad_c00471{bottom:160.296323pt;}
.yae_c00471{bottom:161.271189pt;}
.ya3_c00471{bottom:173.219707pt;}
.ya4_c00471{bottom:173.716827pt;}
.ya5_c00471{bottom:174.011787pt;}
.ya6_c00471{bottom:175.177707pt;}
.ya7_c00471{bottom:175.844213pt;}
.ya8_c00471{bottom:176.410213pt;}
.y9c_c00471{bottom:189.061813pt;}
.y9d_c00471{bottom:189.416160pt;}
.y9e_c00471{bottom:189.995653pt;}
.y9f_c00471{bottom:190.398373pt;}
.ya0_c00471{bottom:190.836133pt;}
.ya1_c00471{bottom:191.461733pt;}
.ya2_c00471{bottom:191.678320pt;}
.y9a_c00471{bottom:204.639307pt;}
.y96_c00471{bottom:204.639627pt;}
.y9b_c00471{bottom:204.639733pt;}
.y97_c00471{bottom:204.639813pt;}
.y98_c00471{bottom:204.639867pt;}
.y99_c00471{bottom:204.640080pt;}
.y8e_c00471{bottom:217.868107pt;}
.y8f_c00471{bottom:218.194720pt;}
.y90_c00471{bottom:218.635947pt;}
.y91_c00471{bottom:219.227680pt;}
.y92_c00471{bottom:219.579413pt;}
.y93_c00471{bottom:220.558027pt;}
.y94_c00471{bottom:220.767333pt;}
.y95_c00471{bottom:221.893840pt;}
.y86_c00471{bottom:232.748480pt;}
.y87_c00471{bottom:233.540080pt;}
.y88_c00471{bottom:233.779520pt;}
.y89_c00471{bottom:234.481920pt;}
.y8a_c00471{bottom:234.832667pt;}
.y8b_c00471{bottom:235.050747pt;}
.y8c_c00471{bottom:235.702773pt;}
.y8d_c00471{bottom:235.875627pt;}
.y7e_c00471{bottom:247.632187pt;}
.y7f_c00471{bottom:248.694080pt;}
.y80_c00471{bottom:249.092347pt;}
.y81_c00471{bottom:249.330720pt;}
.y82_c00471{bottom:250.415573pt;}
.y83_c00471{bottom:250.679067pt;}
.y84_c00471{bottom:251.011440pt;}
.y85_c00471{bottom:252.091600pt;}
.y78_c00471{bottom:262.755413pt;}
.y79_c00471{bottom:264.328213pt;}
.y7a_c00471{bottom:264.439813pt;}
.y7b_c00471{bottom:265.170027pt;}
.y7c_c00471{bottom:265.913813pt;}
.y7d_c00471{bottom:266.238187pt;}
.y6d_c00471{bottom:277.879440pt;}
.y6e_c00471{bottom:278.179280pt;}
.y6f_c00471{bottom:278.927520pt;}
.y70_c00471{bottom:279.255733pt;}
.y71_c00471{bottom:279.642933pt;}
.y72_c00471{bottom:280.352107pt;}
.y73_c00471{bottom:280.568560pt;}
.y74_c00471{bottom:280.947440pt;}
.y75_c00471{bottom:281.735173pt;}
.y76_c00471{bottom:282.046240pt;}
.y77_c00471{bottom:282.558533pt;}
.y65_c00471{bottom:293.002240pt;}
.y66_c00471{bottom:293.424853pt;}
.y67_c00471{bottom:294.485547pt;}
.y68_c00471{bottom:294.831280pt;}
.y69_c00471{bottom:295.119520pt;}
.y6a_c00471{bottom:296.281360pt;}
.y6b_c00471{bottom:297.366133pt;}
.y6c_c00471{bottom:297.755227pt;}
.y5c_c00471{bottom:308.123387pt;}
.y5d_c00471{bottom:308.723787pt;}
.y5e_c00471{bottom:309.054027pt;}
.y5f_c00471{bottom:309.434027pt;}
.y60_c00471{bottom:310.547013pt;}
.y61_c00471{bottom:310.883440pt;}
.y62_c00471{bottom:311.128987pt;}
.y63_c00471{bottom:311.495680pt;}
.y64_c00471{bottom:312.400640pt;}
.yf9_c00471{bottom:313.680000pt;}
.y53_c00471{bottom:323.726373pt;}
.y54_c00471{bottom:324.468507pt;}
.y55_c00471{bottom:324.698293pt;}
.y56_c00471{bottom:324.989707pt;}
.y57_c00471{bottom:326.139280pt;}
.y58_c00471{bottom:326.349547pt;}
.y59_c00471{bottom:327.342560pt;}
.y5a_c00471{bottom:327.785600pt;}
.y5b_c00471{bottom:328.361440pt;}
.y4c_c00471{bottom:338.369333pt;}
.y4d_c00471{bottom:339.042560pt;}
.y4e_c00471{bottom:340.050427pt;}
.y4f_c00471{bottom:340.732693pt;}
.y50_c00471{bottom:341.061440pt;}
.y51_c00471{bottom:342.244853pt;}
.y52_c00471{bottom:342.568800pt;}
.y46_c00471{bottom:353.492747pt;}
.y47_c00471{bottom:354.055440pt;}
.y48_c00471{bottom:355.515413pt;}
.y49_c00471{bottom:355.787093pt;}
.y4a_c00471{bottom:356.914693pt;}
.y4b_c00471{bottom:357.605413pt;}
.y3d_c00471{bottom:369.095547pt;}
.y3e_c00471{bottom:369.589440pt;}
.y3f_c00471{bottom:369.878773pt;}
.y40_c00471{bottom:370.109627pt;}
.y41_c00471{bottom:370.508693pt;}
.y42_c00471{bottom:371.337547pt;}
.y43_c00471{bottom:371.788533pt;}
.y44_c00471{bottom:372.083840pt;}
.y45_c00471{bottom:372.829547pt;}
.y37_c00471{bottom:384.458800pt;}
.y38_c00471{bottom:385.017120pt;}
.y39_c00471{bottom:385.933973pt;}
.y3a_c00471{bottom:386.168747pt;}
.y3b_c00471{bottom:387.004347pt;}
.y3c_c00471{bottom:387.690773pt;}
.y30_c00471{bottom:399.341840pt;}
.y31_c00471{bottom:400.269600pt;}
.y32_c00471{bottom:400.731600pt;}
.y33_c00471{bottom:401.441867pt;}
.y34_c00471{bottom:402.230133pt;}
.y35_c00471{bottom:402.391653pt;}
.y36_c00471{bottom:402.917120pt;}
.y29_c00471{bottom:414.225333pt;}
.y2a_c00471{bottom:414.899520pt;}
.y2b_c00471{bottom:415.223467pt;}
.y2c_c00471{bottom:416.147920pt;}
.y2d_c00471{bottom:416.665707pt;}
.y2e_c00471{bottom:417.725733pt;}
.y2f_c00471{bottom:418.788373pt;}
.y20_c00471{bottom:429.108960pt;}
.y21_c00471{bottom:429.926053pt;}
.y22_c00471{bottom:430.284533pt;}
.y23_c00471{bottom:430.970987pt;}
.y24_c00471{bottom:431.305947pt;}
.y25_c00471{bottom:432.555333pt;}
.y26_c00471{bottom:432.857867pt;}
.y27_c00471{bottom:433.907413pt;}
.y28_c00471{bottom:434.172507pt;}
.y18_c00471{bottom:444.456560pt;}
.y19_c00471{bottom:444.853867pt;}
.y1a_c00471{bottom:445.637573pt;}
.y1b_c00471{bottom:446.080400pt;}
.y1c_c00471{bottom:446.310453pt;}
.y1d_c00471{bottom:446.928987pt;}
.y1e_c00471{bottom:447.048800pt;}
.y1f_c00471{bottom:447.686933pt;}
.y15_c00471{bottom:458.876960pt;}
.y16_c00471{bottom:462.687947pt;}
.y17_c00471{bottom:464.711653pt;}
.yc_c00471{bottom:473.279707pt;}
.yd_c00471{bottom:474.179893pt;}
.ye_c00471{bottom:474.588000pt;}
.yf_c00471{bottom:475.266800pt;}
.y10_c00471{bottom:476.528480pt;}
.y11_c00471{bottom:477.066613pt;}
.y12_c00471{bottom:477.381707pt;}
.y13_c00471{bottom:478.502960pt;}
.y14_c00471{bottom:478.793413pt;}
.y4_c00471{bottom:488.882187pt;}
.y5_c00471{bottom:489.859413pt;}
.y6_c00471{bottom:490.142507pt;}
.y7_c00471{bottom:490.568507pt;}
.y8_c00471{bottom:491.745147pt;}
.y9_c00471{bottom:492.753307pt;}
.ya_c00471{bottom:493.791867pt;}
.yb_c00471{bottom:494.205840pt;}
.y1_c00471{bottom:501.361333pt;}
.y2_c00471{bottom:504.320133pt;}
.y3_c00471{bottom:505.724613pt;}
.hd_c00471{height:19.600000pt;}
.h8_c00471{height:53.210639pt;}
.h7_c00471{height:54.144159pt;}
.h4_c00471{height:55.077679pt;}
.hc_c00471{height:56.005488pt;}
.h3_c00471{height:56.011199pt;}
.h11_c00471{height:56.938913pt;}
.h5_c00471{height:56.944719pt;}
.h9_c00471{height:57.878239pt;}
.h13_c00471{height:57.880669pt;}
.he_c00471{height:59.733333pt;}
.ha_c00471{height:59.745279pt;}
.h14_c00471{height:59.760207pt;}
.h12_c00471{height:60.678799pt;}
.hf_c00471{height:63.472886pt;}
.hb_c00471{height:63.479359pt;}
.h6_c00471{height:64.412879pt;}
.h10_c00471{height:66.273160pt;}
.h2_c00471{height:101.753678pt;}
.h0_c00471{height:549.066667pt;}
.h1_c00471{height:549.333333pt;}
.w0_c00471{width:319.200000pt;}
.w1_c00471{width:319.333333pt;}
.x0_c00471{left:0.000000pt;}
.x77_c00471{left:37.677333pt;}
.x70_c00471{left:39.105333pt;}
.x68_c00471{left:40.974667pt;}
.x3b_c00471{left:43.396107pt;}
.x15_c00471{left:44.503653pt;}
.x60_c00471{left:45.600000pt;}
.x1d_c00471{left:46.564640pt;}
.x4_c00471{left:48.498427pt;}
.x12_c00471{left:56.440133pt;}
.x72_c00471{left:61.670667pt;}
.x4a_c00471{left:63.771573pt;}
.x55_c00471{left:67.144133pt;}
.x46_c00471{left:68.880827pt;}
.x16_c00471{left:70.971627pt;}
.x1_c00471{left:72.816000pt;}
.x31_c00471{left:79.791840pt;}
.x3c_c00471{left:80.792267pt;}
.x40_c00471{left:82.448293pt;}
.x23_c00471{left:86.125867pt;}
.xb_c00471{left:87.159813pt;}
.x5_c00471{left:92.891307pt;}
.x41_c00471{left:94.537867pt;}
.x6c_c00471{left:95.511853pt;}
.x73_c00471{left:96.704000pt;}
.x32_c00471{left:97.859947pt;}
.x5c_c00471{left:100.027253pt;}
.x44_c00471{left:101.973600pt;}
.x4b_c00471{left:103.184373pt;}
.x24_c00471{left:104.123920pt;}
.x6_c00471{left:105.778800pt;}
.x29_c00471{left:109.064853pt;}
.x33_c00471{left:112.270427pt;}
.x61_c00471{left:116.400000pt;}
.x4c_c00471{left:120.462053pt;}
.x47_c00471{left:121.915493pt;}
.x17_c00471{left:123.228853pt;}
.x7_c00471{left:125.144693pt;}
.x62_c00471{left:126.960000pt;}
.x56_c00471{left:127.862427pt;}
.x74_c00471{left:128.940187pt;}
.x50_c00471{left:131.989093pt;}
.xc_c00471{left:134.435653pt;}
.x34_c00471{left:137.225760pt;}
.x51_c00471{left:138.169333pt;}
.x1e_c00471{left:139.665973pt;}
.x4d_c00471{left:140.822453pt;}
.x71_c00471{left:142.077333pt;}
.x59_c00471{left:146.786400pt;}
.x57_c00471{left:148.516987pt;}
.x78_c00471{left:151.472000pt;}
.x18_c00471{left:152.773147pt;}
.x6e_c00471{left:154.304131pt;}
.x25_c00471{left:155.481973pt;}
.x1f_c00471{left:156.413973pt;}
.x37_c00471{left:160.537493pt;}
.x6d_c00471{left:162.954579pt;}
.x75_c00471{left:164.209280pt;}
.x6f_c00471{left:166.060643pt;}
.x19_c00471{left:168.144027pt;}
.x7b_c00471{left:169.346667pt;}
.x2e_c00471{left:170.328587pt;}
.x3d_c00471{left:174.702693pt;}
.x38_c00471{left:175.655440pt;}
.x5d_c00471{left:177.731013pt;}
.x8_c00471{left:178.641227pt;}
.x5a_c00471{left:180.394453pt;}
.x42_c00471{left:181.435600pt;}
.x63_c00471{left:182.880000pt;}
.x26_c00471{left:184.239120pt;}
.x2a_c00471{left:187.152640pt;}
.xd_c00471{left:189.316373pt;}
.x3e_c00471{left:192.940747pt;}
.x53_c00471{left:196.027040pt;}
.x52_c00471{left:197.261333pt;}
.x5f_c00471{left:198.892000pt;}
.x69_c00471{left:202.500000pt;}
.x64_c00471{left:204.480000pt;}
.x58_c00471{left:206.051093pt;}
.x65_c00471{left:207.498667pt;}
.x1a_c00471{left:209.408160pt;}
.x48_c00471{left:211.706160pt;}
.xe_c00471{left:212.688293pt;}
.x13_c00471{left:215.243440pt;}
.x79_c00471{left:216.261333pt;}
.x1b_c00471{left:217.399627pt;}
.x20_c00471{left:218.883307pt;}
.x2_c00471{left:220.756000pt;}
.x5e_c00471{left:222.194133pt;}
.x9_c00471{left:224.447387pt;}
.xf_c00471{left:226.375467pt;}
.x2f_c00471{left:230.049093pt;}
.x7a_c00471{left:230.940000pt;}
.x6a_c00471{left:232.308000pt;}
.x21_c00471{left:234.009973pt;}
.x35_c00471{left:235.590933pt;}
.x39_c00471{left:238.304613pt;}
.x2b_c00471{left:239.704560pt;}
.x27_c00471{left:243.109467pt;}
.x45_c00471{left:245.531520pt;}
.x6b_c00471{left:248.613333pt;}
.x2c_c00471{left:250.514987pt;}
.x66_c00471{left:254.750667pt;}
.x43_c00471{left:256.973093pt;}
.x3f_c00471{left:258.714053pt;}
.x1c_c00471{left:259.910533pt;}
.x76_c00471{left:262.537493pt;}
.x49_c00471{left:265.944827pt;}
.x4e_c00471{left:267.323653pt;}
.x5b_c00471{left:268.976613pt;}
.x54_c00471{left:270.450613pt;}
.xa_c00471{left:271.640160pt;}
.x67_c00471{left:273.062667pt;}
.x10_c00471{left:275.101867pt;}
.x3a_c00471{left:276.708827pt;}
.x30_c00471{left:279.042960pt;}
.x36_c00471{left:282.213333pt;}
.x2d_c00471{left:285.525147pt;}
.x22_c00471{left:286.487307pt;}
.x11_c00471{left:287.757120pt;}
.x3_c00471{left:290.980000pt;}
.x4f_c00471{left:294.272187pt;}
.x14_c00471{left:299.555360pt;}
.x28_c00471{left:302.177173pt;}
.x7c_c00471{left:313.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00472 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00472 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00472 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00472 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00472{transform:matrix(0.020167,-0.000585,0.007247,0.249895,0,0);-ms-transform:matrix(0.020167,-0.000585,0.007247,0.249895,0,0);-webkit-transform:matrix(0.020167,-0.000585,0.007247,0.249895,0,0);}
.m98_c00472{transform:matrix(0.125451,-0.003136,0.006248,0.249922,0,0);-ms-transform:matrix(0.125451,-0.003136,0.006248,0.249922,0,0);-webkit-transform:matrix(0.125451,-0.003136,0.006248,0.249922,0,0);}
.m28_c00472{transform:matrix(0.127855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127855,0.000000,0.000000,0.250000,0,0);}
.m1b_c00472{transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);}
.mc0_c00472{transform:matrix(0.133678,-0.003342,0.006248,0.249922,0,0);-ms-transform:matrix(0.133678,-0.003342,0.006248,0.249922,0,0);-webkit-transform:matrix(0.133678,-0.003342,0.006248,0.249922,0,0);}
.m15_c00472{transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);}
.m7d_c00472{transform:matrix(0.137768,-0.004133,0.007497,0.249888,0,0);-ms-transform:matrix(0.137768,-0.004133,0.007497,0.249888,0,0);-webkit-transform:matrix(0.137768,-0.004133,0.007497,0.249888,0,0);}
.m34_c00472{transform:matrix(0.145940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145940,0.000000,0.000000,0.250000,0,0);}
.mc2_c00472{transform:matrix(0.145989,-0.003650,0.006248,0.249922,0,0);-ms-transform:matrix(0.145989,-0.003650,0.006248,0.249922,0,0);-webkit-transform:matrix(0.145989,-0.003650,0.006248,0.249922,0,0);}
.mbc_c00472{transform:matrix(0.148634,-0.003716,0.006248,0.249922,0,0);-ms-transform:matrix(0.148634,-0.003716,0.006248,0.249922,0,0);-webkit-transform:matrix(0.148634,-0.003716,0.006248,0.249922,0,0);}
.mc8_c00472{transform:matrix(0.149148,-0.003729,0.006248,0.249922,0,0);-ms-transform:matrix(0.149148,-0.003729,0.006248,0.249922,0,0);-webkit-transform:matrix(0.149148,-0.003729,0.006248,0.249922,0,0);}
.m40_c00472{transform:matrix(0.149835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149835,0.000000,0.000000,0.250000,0,0);}
.mda_c00472{transform:matrix(0.152311,-0.005489,0.009003,0.249838,0,0);-ms-transform:matrix(0.152311,-0.005489,0.009003,0.249838,0,0);-webkit-transform:matrix(0.152311,-0.005489,0.009003,0.249838,0,0);}
.m1c_c00472{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.154772,-0.003869,0.006248,0.249922,0,0);-ms-transform:matrix(0.154772,-0.003869,0.006248,0.249922,0,0);-webkit-transform:matrix(0.154772,-0.003869,0.006248,0.249922,0,0);}
.m17_c00472{transform:matrix(0.154785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154785,0.000000,0.000000,0.250000,0,0);}
.m72_c00472{transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);-ms-transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);-webkit-transform:matrix(0.156854,-0.004706,0.007497,0.249888,0,0);}
.m36_c00472{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.158530,-0.003963,0.006248,0.249922,0,0);-ms-transform:matrix(0.158530,-0.003963,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158530,-0.003963,0.006248,0.249922,0,0);}
.m16_c00472{transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159390,0.000000,0.000000,0.250000,0,0);}
.m7a_c00472{transform:matrix(0.159898,-0.004797,0.007497,0.249888,0,0);-ms-transform:matrix(0.159898,-0.004797,0.007497,0.249888,0,0);-webkit-transform:matrix(0.159898,-0.004797,0.007497,0.249888,0,0);}
.md0_c00472{transform:matrix(0.160848,-0.004986,0.007746,0.249880,0,0);-ms-transform:matrix(0.160848,-0.004986,0.007746,0.249880,0,0);-webkit-transform:matrix(0.160848,-0.004986,0.007746,0.249880,0,0);}
.md4_c00472{transform:matrix(0.162250,-0.005847,0.009003,0.249838,0,0);-ms-transform:matrix(0.162250,-0.005847,0.009003,0.249838,0,0);-webkit-transform:matrix(0.162250,-0.005847,0.009003,0.249838,0,0);}
.m71_c00472{transform:matrix(0.162472,-0.004874,0.007497,0.249888,0,0);-ms-transform:matrix(0.162472,-0.004874,0.007497,0.249888,0,0);-webkit-transform:matrix(0.162472,-0.004874,0.007497,0.249888,0,0);}
.m0_c00472{transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162570,0.000000,0.000000,0.250000,0,0);}
.mdd_c00472{transform:matrix(0.164238,-0.005919,0.009003,0.249838,0,0);-ms-transform:matrix(0.164238,-0.005919,0.009003,0.249838,0,0);-webkit-transform:matrix(0.164238,-0.005919,0.009003,0.249838,0,0);}
.m50_c00472{transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164395,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.164710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164710,0.000000,0.000000,0.250000,0,0);}
.md5_c00472{transform:matrix(0.166037,-0.005983,0.009003,0.249838,0,0);-ms-transform:matrix(0.166037,-0.005983,0.009003,0.249838,0,0);-webkit-transform:matrix(0.166037,-0.005983,0.009003,0.249838,0,0);}
.m11_c00472{transform:matrix(0.166365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166365,0.000000,0.000000,0.250000,0,0);}
.me6_c00472{transform:matrix(0.166442,-0.005998,0.009003,0.249838,0,0);-ms-transform:matrix(0.166442,-0.005998,0.009003,0.249838,0,0);-webkit-transform:matrix(0.166442,-0.005998,0.009003,0.249838,0,0);}
.m8a_c00472{transform:matrix(0.167094,-0.004512,0.006748,0.249909,0,0);-ms-transform:matrix(0.167094,-0.004512,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167094,-0.004512,0.006748,0.249909,0,0);}
.m52_c00472{transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167235,0.000000,0.000000,0.250000,0,0);}
.mb8_c00472{transform:matrix(0.167263,-0.004182,0.006248,0.249922,0,0);-ms-transform:matrix(0.167263,-0.004182,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167263,-0.004182,0.006248,0.249922,0,0);}
.m2e_c00472{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m88_c00472{transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);-ms-transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167550,-0.005026,0.007497,0.249888,0,0);}
.m87_c00472{transform:matrix(0.167600,-0.005028,0.007497,0.249888,0,0);-ms-transform:matrix(0.167600,-0.005028,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167600,-0.005028,0.007497,0.249888,0,0);}
.m4_c00472{transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);}
.m7e_c00472{transform:matrix(0.169119,-0.005074,0.007497,0.249888,0,0);-ms-transform:matrix(0.169119,-0.005074,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169119,-0.005074,0.007497,0.249888,0,0);}
.m67_c00472{transform:matrix(0.169569,-0.005087,0.007497,0.249888,0,0);-ms-transform:matrix(0.169569,-0.005087,0.007497,0.249888,0,0);-webkit-transform:matrix(0.169569,-0.005087,0.007497,0.249888,0,0);}
.m47_c00472{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170620,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);}
.mb3_c00472{transform:matrix(0.171251,-0.004281,0.006248,0.249922,0,0);-ms-transform:matrix(0.171251,-0.004281,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171251,-0.004281,0.006248,0.249922,0,0);}
.m92_c00472{transform:matrix(0.171771,-0.004294,0.006248,0.249922,0,0);-ms-transform:matrix(0.171771,-0.004294,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171771,-0.004294,0.006248,0.249922,0,0);}
.m9f_c00472{transform:matrix(0.172561,-0.004314,0.006248,0.249922,0,0);-ms-transform:matrix(0.172561,-0.004314,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172561,-0.004314,0.006248,0.249922,0,0);}
.m9_c00472{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.me3_c00472{transform:matrix(0.172648,-0.006222,0.009003,0.249838,0,0);-ms-transform:matrix(0.172648,-0.006222,0.009003,0.249838,0,0);-webkit-transform:matrix(0.172648,-0.006222,0.009003,0.249838,0,0);}
.md2_c00472{transform:matrix(0.172697,-0.005354,0.007746,0.249880,0,0);-ms-transform:matrix(0.172697,-0.005354,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172697,-0.005354,0.007746,0.249880,0,0);}
.m51_c00472{transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172710,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.172811,-0.004320,0.006248,0.249922,0,0);-ms-transform:matrix(0.172811,-0.004320,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172811,-0.004320,0.006248,0.249922,0,0);}
.m81_c00472{transform:matrix(0.173102,-0.005193,0.007497,0.249888,0,0);-ms-transform:matrix(0.173102,-0.005193,0.007497,0.249888,0,0);-webkit-transform:matrix(0.173102,-0.005193,0.007497,0.249888,0,0);}
.m35_c00472{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);}
.m43_c00472{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.175766,-0.005273,0.007497,0.249888,0,0);-ms-transform:matrix(0.175766,-0.005273,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175766,-0.005273,0.007497,0.249888,0,0);}
.md3_c00472{transform:matrix(0.176131,-0.006347,0.009003,0.249838,0,0);-ms-transform:matrix(0.176131,-0.006347,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176131,-0.006347,0.009003,0.249838,0,0);}
.m13_c00472{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.mbd_c00472{transform:matrix(0.176570,-0.004414,0.006248,0.249922,0,0);-ms-transform:matrix(0.176570,-0.004414,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176570,-0.004414,0.006248,0.249922,0,0);}
.m7_c00472{transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177380,0.000000,0.000000,0.250000,0,0);}
.m4d_c00472{transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);}
.m70_c00472{transform:matrix(0.179274,-0.005378,0.007497,0.249888,0,0);-ms-transform:matrix(0.179274,-0.005378,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179274,-0.005378,0.007497,0.249888,0,0);}
.m29_c00472{transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179490,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m49_c00472{transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179755,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179795,0.000000,0.000000,0.250000,0,0);}
.mc4_c00472{transform:matrix(0.180908,-0.004523,0.006248,0.249922,0,0);-ms-transform:matrix(0.180908,-0.004523,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180908,-0.004523,0.006248,0.249922,0,0);}
.ma0_c00472{transform:matrix(0.180958,-0.004524,0.006248,0.249922,0,0);-ms-transform:matrix(0.180958,-0.004524,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180958,-0.004524,0.006248,0.249922,0,0);}
.mb2_c00472{transform:matrix(0.180973,-0.004524,0.006248,0.249922,0,0);-ms-transform:matrix(0.180973,-0.004524,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180973,-0.004524,0.006248,0.249922,0,0);}
.m78_c00472{transform:matrix(0.180979,-0.005429,0.007497,0.249888,0,0);-ms-transform:matrix(0.180979,-0.005429,0.007497,0.249888,0,0);-webkit-transform:matrix(0.180979,-0.005429,0.007497,0.249888,0,0);}
.m1_c00472{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00472{transform:matrix(0.181773,-0.004544,0.006248,0.249922,0,0);-ms-transform:matrix(0.181773,-0.004544,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181773,-0.004544,0.006248,0.249922,0,0);}
.m82_c00472{transform:matrix(0.182043,-0.005461,0.007497,0.249888,0,0);-ms-transform:matrix(0.182043,-0.005461,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182043,-0.005461,0.007497,0.249888,0,0);}
.mca_c00472{transform:matrix(0.182358,-0.004559,0.006248,0.249922,0,0);-ms-transform:matrix(0.182358,-0.004559,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182358,-0.004559,0.006248,0.249922,0,0);}
.m9a_c00472{transform:matrix(0.182773,-0.004569,0.006248,0.249922,0,0);-ms-transform:matrix(0.182773,-0.004569,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182773,-0.004569,0.006248,0.249922,0,0);}
.m79_c00472{transform:matrix(0.183028,-0.005491,0.007497,0.249888,0,0);-ms-transform:matrix(0.183028,-0.005491,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183028,-0.005491,0.007497,0.249888,0,0);}
.m6c_c00472{transform:matrix(0.183158,-0.005495,0.007497,0.249888,0,0);-ms-transform:matrix(0.183158,-0.005495,0.007497,0.249888,0,0);-webkit-transform:matrix(0.183158,-0.005495,0.007497,0.249888,0,0);}
.m9d_c00472{transform:matrix(0.183283,-0.004582,0.006248,0.249922,0,0);-ms-transform:matrix(0.183283,-0.004582,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183283,-0.004582,0.006248,0.249922,0,0);}
.mb1_c00472{transform:matrix(0.183493,-0.004587,0.006248,0.249922,0,0);-ms-transform:matrix(0.183493,-0.004587,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183493,-0.004587,0.006248,0.249922,0,0);}
.m6f_c00472{transform:matrix(0.184047,-0.005521,0.007497,0.249888,0,0);-ms-transform:matrix(0.184047,-0.005521,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184047,-0.005521,0.007497,0.249888,0,0);}
.m93_c00472{transform:matrix(0.184277,-0.004607,0.006248,0.249922,0,0);-ms-transform:matrix(0.184277,-0.004607,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184277,-0.004607,0.006248,0.249922,0,0);}
.m8c_c00472{transform:matrix(0.184283,-0.004976,0.006748,0.249909,0,0);-ms-transform:matrix(0.184283,-0.004976,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184283,-0.004976,0.006748,0.249909,0,0);}
.m38_c00472{transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185585,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.185597,-0.005568,0.007497,0.249888,0,0);-ms-transform:matrix(0.185597,-0.005568,0.007497,0.249888,0,0);-webkit-transform:matrix(0.185597,-0.005568,0.007497,0.249888,0,0);}
.m1f_c00472{transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185940,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{transform:matrix(0.186127,-0.004653,0.006248,0.249922,0,0);-ms-transform:matrix(0.186127,-0.004653,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186127,-0.004653,0.006248,0.249922,0,0);}
.m74_c00472{transform:matrix(0.186266,-0.005588,0.007497,0.249888,0,0);-ms-transform:matrix(0.186266,-0.005588,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186266,-0.005588,0.007497,0.249888,0,0);}
.m2_c00472{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00472{transform:matrix(0.186327,-0.004658,0.006248,0.249922,0,0);-ms-transform:matrix(0.186327,-0.004658,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186327,-0.004658,0.006248,0.249922,0,0);}
.m22_c00472{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m7b_c00472{transform:matrix(0.186636,-0.005599,0.007497,0.249888,0,0);-ms-transform:matrix(0.186636,-0.005599,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186636,-0.005599,0.007497,0.249888,0,0);}
.m8b_c00472{transform:matrix(0.186682,-0.005040,0.006748,0.249909,0,0);-ms-transform:matrix(0.186682,-0.005040,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186682,-0.005040,0.006748,0.249909,0,0);}
.mc1_c00472{transform:matrix(0.186832,-0.004671,0.006248,0.249922,0,0);-ms-transform:matrix(0.186832,-0.004671,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186832,-0.004671,0.006248,0.249922,0,0);}
.mb7_c00472{transform:matrix(0.187321,-0.004683,0.006248,0.249922,0,0);-ms-transform:matrix(0.187321,-0.004683,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187321,-0.004683,0.006248,0.249922,0,0);}
.mde_c00472{transform:matrix(0.187443,-0.006755,0.009003,0.249838,0,0);-ms-transform:matrix(0.187443,-0.006755,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187443,-0.006755,0.009003,0.249838,0,0);}
.mdf_c00472{transform:matrix(0.187843,-0.006769,0.009003,0.249838,0,0);-ms-transform:matrix(0.187843,-0.006769,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187843,-0.006769,0.009003,0.249838,0,0);}
.md8_c00472{transform:matrix(0.188777,-0.006803,0.009003,0.249838,0,0);-ms-transform:matrix(0.188777,-0.006803,0.009003,0.249838,0,0);-webkit-transform:matrix(0.188777,-0.006803,0.009003,0.249838,0,0);}
.m2a_c00472{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.md7_c00472{transform:matrix(0.189112,-0.006815,0.009003,0.249838,0,0);-ms-transform:matrix(0.189112,-0.006815,0.009003,0.249838,0,0);-webkit-transform:matrix(0.189112,-0.006815,0.009003,0.249838,0,0);}
.m1e_c00472{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.189235,-0.005677,0.007497,0.249888,0,0);-ms-transform:matrix(0.189235,-0.005677,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189235,-0.005677,0.007497,0.249888,0,0);}
.m3a_c00472{transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189345,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.m25_c00472{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m6b_c00472{transform:matrix(0.189895,-0.005697,0.007497,0.249888,0,0);-ms-transform:matrix(0.189895,-0.005697,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189895,-0.005697,0.007497,0.249888,0,0);}
.mac_c00472{transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);-ms-transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190146,-0.004754,0.006248,0.249922,0,0);}
.m2d_c00472{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191320,0.000000,0.000000,0.250000,0,0);}
.maf_c00472{transform:matrix(0.191385,-0.004785,0.006248,0.249922,0,0);-ms-transform:matrix(0.191385,-0.004785,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191385,-0.004785,0.006248,0.249922,0,0);}
.m9c_c00472{transform:matrix(0.191715,-0.004793,0.006248,0.249922,0,0);-ms-transform:matrix(0.191715,-0.004793,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191715,-0.004793,0.006248,0.249922,0,0);}
.md9_c00472{transform:matrix(0.191756,-0.006910,0.009003,0.249838,0,0);-ms-transform:matrix(0.191756,-0.006910,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191756,-0.006910,0.009003,0.249838,0,0);}
.m48_c00472{transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);}
.ma8_c00472{transform:matrix(0.192170,-0.004804,0.006248,0.249922,0,0);-ms-transform:matrix(0.192170,-0.004804,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192170,-0.004804,0.006248,0.249922,0,0);}
.md6_c00472{transform:matrix(0.192340,-0.006931,0.009003,0.249838,0,0);-ms-transform:matrix(0.192340,-0.006931,0.009003,0.249838,0,0);-webkit-transform:matrix(0.192340,-0.006931,0.009003,0.249838,0,0);}
.m53_c00472{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192745,0.000000,0.000000,0.250000,0,0);}
.mc9_c00472{transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);-ms-transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193415,-0.004835,0.006248,0.249922,0,0);}
.me1_c00472{transform:matrix(0.193479,-0.006972,0.009003,0.249838,0,0);-ms-transform:matrix(0.193479,-0.006972,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193479,-0.006972,0.009003,0.249838,0,0);}
.mc3_c00472{transform:matrix(0.193844,-0.004846,0.006248,0.249922,0,0);-ms-transform:matrix(0.193844,-0.004846,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193844,-0.004846,0.006248,0.249922,0,0);}
.mb9_c00472{transform:matrix(0.194454,-0.004861,0.006248,0.249922,0,0);-ms-transform:matrix(0.194454,-0.004861,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194454,-0.004861,0.006248,0.249922,0,0);}
.m9e_c00472{transform:matrix(0.195529,-0.004888,0.006248,0.249922,0,0);-ms-transform:matrix(0.195529,-0.004888,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195529,-0.004888,0.006248,0.249922,0,0);}
.m6_c00472{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.mcf_c00472{transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);-ms-transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);}
.ma7_c00472{transform:matrix(0.195919,-0.004898,0.006248,0.249922,0,0);-ms-transform:matrix(0.195919,-0.004898,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195919,-0.004898,0.006248,0.249922,0,0);}
.m46_c00472{transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{transform:matrix(0.196352,-0.005891,0.007497,0.249888,0,0);-ms-transform:matrix(0.196352,-0.005891,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196352,-0.005891,0.007497,0.249888,0,0);}
.ma5_c00472{transform:matrix(0.196629,-0.004916,0.006248,0.249922,0,0);-ms-transform:matrix(0.196629,-0.004916,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196629,-0.004916,0.006248,0.249922,0,0);}
.me2_c00472{transform:matrix(0.196802,-0.007092,0.009003,0.249838,0,0);-ms-transform:matrix(0.196802,-0.007092,0.009003,0.249838,0,0);-webkit-transform:matrix(0.196802,-0.007092,0.009003,0.249838,0,0);}
.m12_c00472{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.mdc_c00472{transform:matrix(0.197192,-0.007106,0.009003,0.249838,0,0);-ms-transform:matrix(0.197192,-0.007106,0.009003,0.249838,0,0);-webkit-transform:matrix(0.197192,-0.007106,0.009003,0.249838,0,0);}
.ma9_c00472{transform:matrix(0.197558,-0.004939,0.006248,0.249922,0,0);-ms-transform:matrix(0.197558,-0.004939,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197558,-0.004939,0.006248,0.249922,0,0);}
.m4a_c00472{transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197645,0.000000,0.000000,0.250000,0,0);}
.mb6_c00472{transform:matrix(0.198753,-0.004969,0.006248,0.249922,0,0);-ms-transform:matrix(0.198753,-0.004969,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198753,-0.004969,0.006248,0.249922,0,0);}
.md1_c00472{transform:matrix(0.199924,-0.006198,0.007746,0.249880,0,0);-ms-transform:matrix(0.199924,-0.006198,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199924,-0.006198,0.007746,0.249880,0,0);}
.m6a_c00472{transform:matrix(0.199935,-0.005998,0.007497,0.249888,0,0);-ms-transform:matrix(0.199935,-0.005998,0.007497,0.249888,0,0);-webkit-transform:matrix(0.199935,-0.005998,0.007497,0.249888,0,0);}
.m4c_c00472{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m26_c00472{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200455,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200480,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);}
.mbe_c00472{transform:matrix(0.202067,-0.005052,0.006248,0.249922,0,0);-ms-transform:matrix(0.202067,-0.005052,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202067,-0.005052,0.006248,0.249922,0,0);}
.ma4_c00472{transform:matrix(0.202462,-0.005062,0.006248,0.249922,0,0);-ms-transform:matrix(0.202462,-0.005062,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202462,-0.005062,0.006248,0.249922,0,0);}
.m24_c00472{transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202795,0.000000,0.000000,0.250000,0,0);}
.m66_c00472{transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);-ms-transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);}
.mdb_c00472{transform:matrix(0.203113,-0.007319,0.009003,0.249838,0,0);-ms-transform:matrix(0.203113,-0.007319,0.009003,0.249838,0,0);-webkit-transform:matrix(0.203113,-0.007319,0.009003,0.249838,0,0);}
.m77_c00472{transform:matrix(0.203229,-0.006097,0.007497,0.249888,0,0);-ms-transform:matrix(0.203229,-0.006097,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203229,-0.006097,0.007497,0.249888,0,0);}
.mbb_c00472{transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);-ms-transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203536,-0.005088,0.006248,0.249922,0,0);}
.m7c_c00472{transform:matrix(0.203543,-0.006106,0.007497,0.249888,0,0);-ms-transform:matrix(0.203543,-0.006106,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203543,-0.006106,0.007497,0.249888,0,0);}
.m54_c00472{transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203965,0.000000,0.000000,0.250000,0,0);}
.mce_c00472{transform:matrix(0.204647,-0.006344,0.007746,0.249880,0,0);-ms-transform:matrix(0.204647,-0.006344,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204647,-0.006344,0.007746,0.249880,0,0);}
.m5a_c00472{transform:matrix(0.204989,-0.005945,0.007247,0.249895,0,0);-ms-transform:matrix(0.204989,-0.005945,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204989,-0.005945,0.007247,0.249895,0,0);}
.m61_c00472{transform:matrix(0.205808,-0.005968,0.007247,0.249895,0,0);-ms-transform:matrix(0.205808,-0.005968,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205808,-0.005968,0.007247,0.249895,0,0);}
.me5_c00472{transform:matrix(0.205826,-0.007417,0.009003,0.249838,0,0);-ms-transform:matrix(0.205826,-0.007417,0.009003,0.249838,0,0);-webkit-transform:matrix(0.205826,-0.007417,0.009003,0.249838,0,0);}
.mc_c00472{transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206355,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);}
.m9b_c00472{transform:matrix(0.208505,-0.005213,0.006248,0.249922,0,0);-ms-transform:matrix(0.208505,-0.005213,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208505,-0.005213,0.006248,0.249922,0,0);}
.m33_c00472{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.208712,-0.006053,0.007247,0.249895,0,0);-ms-transform:matrix(0.208712,-0.006053,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208712,-0.006053,0.007247,0.249895,0,0);}
.m58_c00472{transform:matrix(0.208747,-0.006054,0.007247,0.249895,0,0);-ms-transform:matrix(0.208747,-0.006054,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208747,-0.006054,0.007247,0.249895,0,0);}
.m2b_c00472{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{transform:matrix(0.210968,-0.005696,0.006748,0.249909,0,0);-ms-transform:matrix(0.210968,-0.005696,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210968,-0.005696,0.006748,0.249909,0,0);}
.ma3_c00472{transform:matrix(0.211819,-0.005295,0.006248,0.249922,0,0);-ms-transform:matrix(0.211819,-0.005295,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211819,-0.005295,0.006248,0.249922,0,0);}
.m7f_c00472{transform:matrix(0.212020,-0.006361,0.007497,0.249888,0,0);-ms-transform:matrix(0.212020,-0.006361,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212020,-0.006361,0.007497,0.249888,0,0);}
.m99_c00472{transform:matrix(0.212189,-0.005305,0.006248,0.249922,0,0);-ms-transform:matrix(0.212189,-0.005305,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212189,-0.005305,0.006248,0.249922,0,0);}
.m21_c00472{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.mbf_c00472{transform:matrix(0.212694,-0.005317,0.006248,0.249922,0,0);-ms-transform:matrix(0.212694,-0.005317,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212694,-0.005317,0.006248,0.249922,0,0);}
.mc7_c00472{transform:matrix(0.213468,-0.005337,0.006248,0.249922,0,0);-ms-transform:matrix(0.213468,-0.005337,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213468,-0.005337,0.006248,0.249922,0,0);}
.m75_c00472{transform:matrix(0.214988,-0.006450,0.007497,0.249888,0,0);-ms-transform:matrix(0.214988,-0.006450,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214988,-0.006450,0.007497,0.249888,0,0);}
.mcb_c00472{transform:matrix(0.215738,-0.005393,0.006248,0.249922,0,0);-ms-transform:matrix(0.215738,-0.005393,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215738,-0.005393,0.006248,0.249922,0,0);}
.m27_c00472{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m89_c00472{transform:matrix(0.216216,-0.005838,0.006748,0.249909,0,0);-ms-transform:matrix(0.216216,-0.005838,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216216,-0.005838,0.006748,0.249909,0,0);}
.m84_c00472{transform:matrix(0.219106,-0.006573,0.007497,0.249888,0,0);-ms-transform:matrix(0.219106,-0.006573,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219106,-0.006573,0.007497,0.249888,0,0);}
.m86_c00472{transform:matrix(0.219201,-0.006576,0.007497,0.249888,0,0);-ms-transform:matrix(0.219201,-0.006576,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219201,-0.006576,0.007497,0.249888,0,0);}
.mb5_c00472{transform:matrix(0.219251,-0.005481,0.006248,0.249922,0,0);-ms-transform:matrix(0.219251,-0.005481,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219251,-0.005481,0.006248,0.249922,0,0);}
.m6d_c00472{transform:matrix(0.219661,-0.006590,0.007497,0.249888,0,0);-ms-transform:matrix(0.219661,-0.006590,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219661,-0.006590,0.007497,0.249888,0,0);}
.m20_c00472{transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221315,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.221402,-0.006421,0.007247,0.249895,0,0);-ms-transform:matrix(0.221402,-0.006421,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221402,-0.006421,0.007247,0.249895,0,0);}
.m62_c00472{transform:matrix(0.221772,-0.006431,0.007247,0.249895,0,0);-ms-transform:matrix(0.221772,-0.006431,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221772,-0.006431,0.007247,0.249895,0,0);}
.m31_c00472{transform:matrix(0.221780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221780,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.221937,-0.006436,0.007247,0.249895,0,0);-ms-transform:matrix(0.221937,-0.006436,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221937,-0.006436,0.007247,0.249895,0,0);}
.mcd_c00472{transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);-ms-transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222128,-0.006886,0.007746,0.249880,0,0);}
.m3b_c00472{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.mab_c00472{transform:matrix(0.222675,-0.005567,0.006248,0.249922,0,0);-ms-transform:matrix(0.222675,-0.005567,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222675,-0.005567,0.006248,0.249922,0,0);}
.md_c00472{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.mba_c00472{transform:matrix(0.223965,-0.005599,0.006248,0.249922,0,0);-ms-transform:matrix(0.223965,-0.005599,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223965,-0.005599,0.006248,0.249922,0,0);}
.m8e_c00472{transform:matrix(0.224278,-0.006056,0.006748,0.249909,0,0);-ms-transform:matrix(0.224278,-0.006056,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224278,-0.006056,0.006748,0.249909,0,0);}
.maa_c00472{transform:matrix(0.224845,-0.005621,0.006248,0.249922,0,0);-ms-transform:matrix(0.224845,-0.005621,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224845,-0.005621,0.006248,0.249922,0,0);}
.m19_c00472{transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);}
.me4_c00472{transform:matrix(0.226218,-0.008152,0.009003,0.249838,0,0);-ms-transform:matrix(0.226218,-0.008152,0.009003,0.249838,0,0);-webkit-transform:matrix(0.226218,-0.008152,0.009003,0.249838,0,0);}
.mc6_c00472{transform:matrix(0.226514,-0.005663,0.006248,0.249922,0,0);-ms-transform:matrix(0.226514,-0.005663,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226514,-0.005663,0.006248,0.249922,0,0);}
.me0_c00472{transform:matrix(0.226808,-0.008173,0.009003,0.249838,0,0);-ms-transform:matrix(0.226808,-0.008173,0.009003,0.249838,0,0);-webkit-transform:matrix(0.226808,-0.008173,0.009003,0.249838,0,0);}
.m5e_c00472{transform:matrix(0.227769,-0.006605,0.007247,0.249895,0,0);-ms-transform:matrix(0.227769,-0.006605,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227769,-0.006605,0.007247,0.249895,0,0);}
.m6e_c00472{transform:matrix(0.227912,-0.006837,0.007497,0.249888,0,0);-ms-transform:matrix(0.227912,-0.006837,0.007497,0.249888,0,0);-webkit-transform:matrix(0.227912,-0.006837,0.007497,0.249888,0,0);}
.m91_c00472{transform:matrix(0.228404,-0.005710,0.006248,0.249922,0,0);-ms-transform:matrix(0.228404,-0.005710,0.006248,0.249922,0,0);-webkit-transform:matrix(0.228404,-0.005710,0.006248,0.249922,0,0);}
.m90_c00472{transform:matrix(0.229198,-0.005730,0.006248,0.249922,0,0);-ms-transform:matrix(0.229198,-0.005730,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229198,-0.005730,0.006248,0.249922,0,0);}
.m8f_c00472{transform:matrix(0.229351,-0.006192,0.006748,0.249909,0,0);-ms-transform:matrix(0.229351,-0.006192,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229351,-0.006192,0.006748,0.249909,0,0);}
.m83_c00472{transform:matrix(0.230047,-0.006901,0.007497,0.249888,0,0);-ms-transform:matrix(0.230047,-0.006901,0.007497,0.249888,0,0);-webkit-transform:matrix(0.230047,-0.006901,0.007497,0.249888,0,0);}
.m5c_c00472{transform:matrix(0.230203,-0.006676,0.007247,0.249895,0,0);-ms-transform:matrix(0.230203,-0.006676,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230203,-0.006676,0.007247,0.249895,0,0);}
.m5b_c00472{transform:matrix(0.230753,-0.006692,0.007247,0.249895,0,0);-ms-transform:matrix(0.230753,-0.006692,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230753,-0.006692,0.007247,0.249895,0,0);}
.m60_c00472{transform:matrix(0.232837,-0.006752,0.007247,0.249895,0,0);-ms-transform:matrix(0.232837,-0.006752,0.007247,0.249895,0,0);-webkit-transform:matrix(0.232837,-0.006752,0.007247,0.249895,0,0);}
.m95_c00472{transform:matrix(0.234112,-0.005853,0.006248,0.249922,0,0);-ms-transform:matrix(0.234112,-0.005853,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234112,-0.005853,0.006248,0.249922,0,0);}
.m3c_c00472{transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234585,0.000000,0.000000,0.250000,0,0);}
.m96_c00472{transform:matrix(0.235781,-0.005895,0.006248,0.249922,0,0);-ms-transform:matrix(0.235781,-0.005895,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235781,-0.005895,0.006248,0.249922,0,0);}
.mc5_c00472{transform:matrix(0.237561,-0.005939,0.006248,0.249922,0,0);-ms-transform:matrix(0.237561,-0.005939,0.006248,0.249922,0,0);-webkit-transform:matrix(0.237561,-0.005939,0.006248,0.249922,0,0);}
.m80_c00472{transform:matrix(0.240142,-0.007204,0.007497,0.249888,0,0);-ms-transform:matrix(0.240142,-0.007204,0.007497,0.249888,0,0);-webkit-transform:matrix(0.240142,-0.007204,0.007497,0.249888,0,0);}
.m69_c00472{transform:matrix(0.241676,-0.007250,0.007497,0.249888,0,0);-ms-transform:matrix(0.241676,-0.007250,0.007497,0.249888,0,0);-webkit-transform:matrix(0.241676,-0.007250,0.007497,0.249888,0,0);}
.m30_c00472{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m94_c00472{transform:matrix(0.242769,-0.006069,0.006248,0.249922,0,0);-ms-transform:matrix(0.242769,-0.006069,0.006248,0.249922,0,0);-webkit-transform:matrix(0.242769,-0.006069,0.006248,0.249922,0,0);}
.m97_c00472{transform:matrix(0.246348,-0.006159,0.006248,0.249922,0,0);-ms-transform:matrix(0.246348,-0.006159,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246348,-0.006159,0.006248,0.249922,0,0);}
.m59_c00472{transform:matrix(0.251894,-0.007305,0.007247,0.249895,0,0);-ms-transform:matrix(0.251894,-0.007305,0.007247,0.249895,0,0);-webkit-transform:matrix(0.251894,-0.007305,0.007247,0.249895,0,0);}
.m64_c00472{transform:matrix(0.256657,-0.007443,0.007247,0.249895,0,0);-ms-transform:matrix(0.256657,-0.007443,0.007247,0.249895,0,0);-webkit-transform:matrix(0.256657,-0.007443,0.007247,0.249895,0,0);}
.m2f_c00472{transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00472{transform:matrix(0.321496,-0.009966,0.007746,0.249880,0,0);-ms-transform:matrix(0.321496,-0.009966,0.007746,0.249880,0,0);-webkit-transform:matrix(0.321496,-0.009966,0.007746,0.249880,0,0);}
.m5f_c00472{transform:matrix(0.325263,-0.009433,0.007247,0.249895,0,0);-ms-transform:matrix(0.325263,-0.009433,0.007247,0.249895,0,0);-webkit-transform:matrix(0.325263,-0.009433,0.007247,0.249895,0,0);}
.m3_c00472{transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{transform:matrix(0.578294,-0.014457,0.006248,0.249922,0,0);-ms-transform:matrix(0.578294,-0.014457,0.006248,0.249922,0,0);-webkit-transform:matrix(0.578294,-0.014457,0.006248,0.249922,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:0.000000px;}
.fc0_c00472{color:transparent;}
.fsa_c00472{font-size:55.673396px;}
.fs10_c00472{font-size:58.818372px;}
.fs9_c00472{font-size:59.875162px;}
.fs2_c00472{font-size:60.900000px;}
.fs15_c00472{font-size:60.919028px;}
.fsb_c00472{font-size:60.927399px;}
.fs6_c00472{font-size:61.950000px;}
.fs13_c00472{font-size:61.969356px;}
.fs17_c00472{font-size:61.979760px;}
.fs19_c00472{font-size:62.977852px;}
.fs4_c00472{font-size:63.000000px;}
.fs12_c00472{font-size:63.019684px;}
.fsf_c00472{font-size:63.022959px;}
.fs11_c00472{font-size:65.120341px;}
.fs18_c00472{font-size:66.126744px;}
.fs8_c00472{font-size:66.150000px;}
.fse_c00472{font-size:66.179761px;}
.fs14_c00472{font-size:67.220997px;}
.fsd_c00472{font-size:67.230233px;}
.fs5_c00472{font-size:69.300000px;}
.fs16_c00472{font-size:69.321653px;}
.fsc_c00472{font-size:69.331178px;}
.fs1_c00472{font-size:70.350000px;}
.fs7_c00472{font-size:71.400000px;}
.fs3_c00472{font-size:79.800000px;}
.fs0_c00472{font-size:82.950000px;}
.y0_c00472{bottom:0.000000px;}
.ye4_c00472{bottom:34.578369px;}
.ye5_c00472{bottom:36.400572px;}
.ye6_c00472{bottom:37.833557px;}
.ye7_c00472{bottom:38.716362px;}
.ye8_c00472{bottom:39.733195px;}
.ye9_c00472{bottom:40.160646px;}
.ydd_c00472{bottom:51.318167px;}
.yde_c00472{bottom:53.162928px;}
.ydf_c00472{bottom:53.481177px;}
.ye0_c00472{bottom:55.281834px;}
.ye1_c00472{bottom:55.979271px;}
.ye2_c00472{bottom:57.916967px;}
.ye3_c00472{bottom:59.119385px;}
.yd6_c00472{bottom:67.522500px;}
.yd7_c00472{bottom:69.324372px;}
.yd8_c00472{bottom:70.006068px;}
.yd9_c00472{bottom:71.981118px;}
.yda_c00472{bottom:74.256570px;}
.ydb_c00472{bottom:75.793086px;}
.ydc_c00472{bottom:77.371884px;}
.ycf_c00472{bottom:85.054500px;}
.yd0_c00472{bottom:87.749314px;}
.yd1_c00472{bottom:88.922091px;}
.yd2_c00472{bottom:91.031099px;}
.yd3_c00472{bottom:91.641039px;}
.yd4_c00472{bottom:92.556578px;}
.yd5_c00472{bottom:94.003378px;}
.yc7_c00472{bottom:104.458162px;}
.yc8_c00472{bottom:105.597262px;}
.yc9_c00472{bottom:105.904200px;}
.yca_c00472{bottom:106.606500px;}
.ycb_c00472{bottom:107.747137px;}
.ycc_c00472{bottom:108.159450px;}
.ycd_c00472{bottom:109.203750px;}
.yce_c00472{bottom:109.646363px;}
.ybf_c00472{bottom:117.705113px;}
.yc0_c00472{bottom:118.557675px;}
.yc1_c00472{bottom:119.357775px;}
.yc2_c00472{bottom:120.393000px;}
.yc3_c00472{bottom:123.989662px;}
.yc4_c00472{bottom:125.031862px;}
.yc5_c00472{bottom:127.610062px;}
.yc6_c00472{bottom:128.059838px;}
.yb8_c00472{bottom:136.071300px;}
.yb9_c00472{bottom:136.634813px;}
.yba_c00472{bottom:138.057600px;}
.ybb_c00472{bottom:138.892800px;}
.ybc_c00472{bottom:139.964212px;}
.ybd_c00472{bottom:141.832462px;}
.ybe_c00472{bottom:144.502762px;}
.yaf_c00472{bottom:153.353587px;}
.yb0_c00472{bottom:153.898387px;}
.yb1_c00472{bottom:154.441500px;}
.yb2_c00472{bottom:155.948550px;}
.yb3_c00472{bottom:157.145587px;}
.yb4_c00472{bottom:158.590500px;}
.yb5_c00472{bottom:160.040475px;}
.yb6_c00472{bottom:160.554637px;}
.yb7_c00472{bottom:161.226975px;}
.ya8_c00472{bottom:172.253100px;}
.ya9_c00472{bottom:172.994437px;}
.yaa_c00472{bottom:174.601162px;}
.yab_c00472{bottom:175.926150px;}
.yac_c00472{bottom:176.342737px;}
.yad_c00472{bottom:177.732000px;}
.yae_c00472{bottom:177.982050px;}
.ya0_c00472{bottom:186.846337px;}
.ya1_c00472{bottom:188.186587px;}
.ya2_c00472{bottom:188.799075px;}
.ya3_c00472{bottom:190.128787px;}
.ya4_c00472{bottom:191.392725px;}
.ya5_c00472{bottom:192.608662px;}
.ya6_c00472{bottom:193.602112px;}
.ya7_c00472{bottom:194.829825px;}
.y9a_c00472{bottom:204.664500px;}
.y9b_c00472{bottom:205.356000px;}
.y9c_c00472{bottom:207.375300px;}
.y9d_c00472{bottom:208.907587px;}
.y9e_c00472{bottom:209.387550px;}
.y9f_c00472{bottom:210.737962px;}
.y92_c00472{bottom:221.680500px;}
.y93_c00472{bottom:223.376588px;}
.y94_c00472{bottom:224.480213px;}
.y95_c00472{bottom:225.277125px;}
.y96_c00472{bottom:225.649425px;}
.y97_c00472{bottom:227.484525px;}
.y98_c00472{bottom:227.768438px;}
.y99_c00472{bottom:228.470738px;}
.y8b_c00472{bottom:238.419000px;}
.y8c_c00472{bottom:240.211692px;}
.y8d_c00472{bottom:240.883708px;}
.y8e_c00472{bottom:242.444983px;}
.y8f_c00472{bottom:244.033434px;}
.y90_c00472{bottom:244.428309px;}
.y91_c00472{bottom:246.290539px;}
.y85_c00472{bottom:257.015895px;}
.y86_c00472{bottom:259.056450px;}
.y87_c00472{bottom:260.171535px;}
.y88_c00472{bottom:260.740410px;}
.y89_c00472{bottom:261.891300px;}
.y8a_c00472{bottom:262.248825px;}
.y7e_c00472{bottom:271.878285px;}
.y7f_c00472{bottom:273.991065px;}
.y80_c00472{bottom:274.668915px;}
.y81_c00472{bottom:275.712390px;}
.y82_c00472{bottom:277.345440px;}
.y83_c00472{bottom:279.193980px;}
.y84_c00472{bottom:279.848130px;}
.y78_c00472{bottom:290.780805px;}
.y79_c00472{bottom:292.044570px;}
.y7a_c00472{bottom:293.070840px;}
.y7b_c00472{bottom:293.832930px;}
.y7c_c00472{bottom:295.015560px;}
.y7d_c00472{bottom:295.523415px;}
.y71_c00472{bottom:306.452835px;}
.y72_c00472{bottom:307.758345px;}
.y73_c00472{bottom:309.562680px;}
.y74_c00472{bottom:310.606155px;}
.y75_c00472{bottom:311.173050px;}
.y76_c00472{bottom:312.373155px;}
.y77_c00472{bottom:313.775760px;}
.y69_c00472{bottom:322.932000px;}
.y6a_c00472{bottom:324.333885px;}
.y6b_c00472{bottom:325.119945px;}
.y6c_c00472{bottom:326.869995px;}
.y6d_c00472{bottom:328.077795px;}
.y6e_c00472{bottom:328.783170px;}
.y6f_c00472{bottom:329.528280px;}
.y70_c00472{bottom:331.058955px;}
.y61_c00472{bottom:339.661837px;}
.y62_c00472{bottom:340.380970px;}
.y63_c00472{bottom:341.099669px;}
.y64_c00472{bottom:341.607148px;}
.y65_c00472{bottom:343.626237px;}
.y66_c00472{bottom:344.413710px;}
.y67_c00472{bottom:346.583137px;}
.y68_c00472{bottom:347.784564px;}
.y59_c00472{bottom:356.407500px;}
.y5a_c00472{bottom:356.755065px;}
.y5b_c00472{bottom:358.611340px;}
.y5c_c00472{bottom:360.431555px;}
.y5d_c00472{bottom:361.195501px;}
.y5e_c00472{bottom:362.017999px;}
.y5f_c00472{bottom:363.490996px;}
.y60_c00472{bottom:364.039531px;}
.y51_c00472{bottom:373.696500px;}
.y52_c00472{bottom:375.459000px;}
.y53_c00472{bottom:376.053000px;}
.y54_c00472{bottom:376.738500px;}
.y55_c00472{bottom:377.988000px;}
.y56_c00472{bottom:378.450000px;}
.y57_c00472{bottom:380.104500px;}
.y58_c00472{bottom:380.604000px;}
.y4a_c00472{bottom:390.436500px;}
.y4b_c00472{bottom:390.988500px;}
.y4c_c00472{bottom:392.592000px;}
.y4d_c00472{bottom:393.813000px;}
.y4e_c00472{bottom:394.684500px;}
.y4f_c00472{bottom:396.585000px;}
.y50_c00472{bottom:397.927500px;}
.y42_c00472{bottom:407.443500px;}
.y43_c00472{bottom:407.896500px;}
.y44_c00472{bottom:408.442500px;}
.y45_c00472{bottom:409.867500px;}
.y46_c00472{bottom:410.415000px;}
.y47_c00472{bottom:411.952500px;}
.y48_c00472{bottom:412.621500px;}
.y49_c00472{bottom:414.136500px;}
.y3d_c00472{bottom:425.263500px;}
.y3e_c00472{bottom:426.733500px;}
.y3f_c00472{bottom:427.038000px;}
.y40_c00472{bottom:429.516000px;}
.y41_c00472{bottom:432.090000px;}
.y36_c00472{bottom:441.462000px;}
.y37_c00472{bottom:442.284000px;}
.y38_c00472{bottom:443.883000px;}
.y39_c00472{bottom:444.252000px;}
.y3a_c00472{bottom:445.414500px;}
.y3b_c00472{bottom:445.834500px;}
.y3c_c00472{bottom:446.940000px;}
.y2f_c00472{bottom:457.933500px;}
.y30_c00472{bottom:458.896500px;}
.y31_c00472{bottom:460.302000px;}
.y32_c00472{bottom:462.753000px;}
.y33_c00472{bottom:463.222500px;}
.y34_c00472{bottom:463.963500px;}
.y35_c00472{bottom:464.583000px;}
.y27_c00472{bottom:476.019000px;}
.y28_c00472{bottom:476.794500px;}
.y29_c00472{bottom:477.334500px;}
.y2a_c00472{bottom:477.834000px;}
.y2b_c00472{bottom:478.234500px;}
.y2c_c00472{bottom:478.797000px;}
.y2d_c00472{bottom:479.839500px;}
.y2e_c00472{bottom:481.378500px;}
.y20_c00472{bottom:492.490500px;}
.y21_c00472{bottom:493.371000px;}
.y22_c00472{bottom:495.216000px;}
.y23_c00472{bottom:495.781500px;}
.y24_c00472{bottom:496.798500px;}
.y25_c00472{bottom:497.482500px;}
.y26_c00472{bottom:498.276000px;}
.y18_c00472{bottom:506.811000px;}
.y19_c00472{bottom:507.406500px;}
.y1a_c00472{bottom:509.248500px;}
.y1b_c00472{bottom:509.587500px;}
.y1c_c00472{bottom:510.937500px;}
.y1d_c00472{bottom:511.620000px;}
.y1e_c00472{bottom:513.409500px;}
.y1f_c00472{bottom:513.981000px;}
.y12_c00472{bottom:526.779000px;}
.y13_c00472{bottom:527.890500px;}
.y14_c00472{bottom:529.141500px;}
.y15_c00472{bottom:529.840500px;}
.y16_c00472{bottom:531.802500px;}
.y17_c00472{bottom:532.263000px;}
.ya_c00472{bottom:543.520500px;}
.yb_c00472{bottom:544.384500px;}
.yc_c00472{bottom:545.005500px;}
.yd_c00472{bottom:546.996000px;}
.ye_c00472{bottom:547.867500px;}
.yf_c00472{bottom:549.190500px;}
.y10_c00472{bottom:549.676500px;}
.y11_c00472{bottom:550.168500px;}
.y2_c00472{bottom:559.722000px;}
.y3_c00472{bottom:560.245500px;}
.y4_c00472{bottom:562.194000px;}
.y5_c00472{bottom:562.525500px;}
.y6_c00472{bottom:562.978500px;}
.y7_c00472{bottom:564.553500px;}
.y8_c00472{bottom:565.093500px;}
.y9_c00472{bottom:566.745000px;}
.y1_c00472{bottom:576.172500px;}
.hc_c00472{height:55.673396px;}
.h12_c00472{height:58.818372px;}
.hb_c00472{height:59.875162px;}
.h4_c00472{height:60.900000px;}
.h17_c00472{height:60.919028px;}
.hd_c00472{height:60.927399px;}
.h8_c00472{height:61.950000px;}
.h15_c00472{height:61.969356px;}
.h19_c00472{height:61.979760px;}
.h1b_c00472{height:62.977852px;}
.h6_c00472{height:63.000000px;}
.h14_c00472{height:63.019684px;}
.h11_c00472{height:63.022959px;}
.h13_c00472{height:65.120341px;}
.h1a_c00472{height:66.126744px;}
.ha_c00472{height:66.150000px;}
.h10_c00472{height:66.179761px;}
.h16_c00472{height:67.220997px;}
.hf_c00472{height:67.230233px;}
.h7_c00472{height:69.300000px;}
.h18_c00472{height:69.321653px;}
.he_c00472{height:69.331178px;}
.h3_c00472{height:70.350000px;}
.h9_c00472{height:71.400000px;}
.h5_c00472{height:79.800000px;}
.h2_c00472{height:82.950000px;}
.h0_c00472{height:617.700000px;}
.h1_c00472{height:618.000000px;}
.w0_c00472{width:359.100000px;}
.w1_c00472{width:359.250000px;}
.x0_c00472{left:0.000000px;}
.x40_c00472{left:2.695500px;}
.x2_c00472{left:14.170500px;}
.x3b_c00472{left:15.270000px;}
.x4e_c00472{left:17.436210px;}
.x30_c00472{left:19.162500px;}
.x62_c00472{left:20.959050px;}
.x5d_c00472{left:26.128500px;}
.x43_c00472{left:28.145765px;}
.x3_c00472{left:33.574500px;}
.x36_c00472{left:35.185500px;}
.x31_c00472{left:37.308000px;}
.x6c_c00472{left:42.717188px;}
.xa_c00472{left:48.637500px;}
.x1a_c00472{left:51.855000px;}
.x29_c00472{left:53.455500px;}
.x32_c00472{left:59.164500px;}
.x11_c00472{left:62.659500px;}
.x6d_c00472{left:64.334700px;}
.x48_c00472{left:66.006450px;}
.x70_c00472{left:69.501225px;}
.x75_c00472{left:70.883448px;}
.x44_c00472{left:71.929026px;}
.xb_c00472{left:73.503000px;}
.x3c_c00472{left:78.226500px;}
.x20_c00472{left:79.510500px;}
.x56_c00472{left:80.523000px;}
.x71_c00472{left:82.859400px;}
.x2d_c00472{left:85.329000px;}
.x15_c00472{left:88.461000px;}
.x76_c00472{left:89.800512px;}
.x5f_c00472{left:91.668825px;}
.x4f_c00472{left:92.866710px;}
.x37_c00472{left:94.593000px;}
.x16_c00472{left:98.721000px;}
.x66_c00472{left:102.195150px;}
.x21_c00472{left:104.454000px;}
.x4_c00472{left:105.757500px;}
.x6a_c00472{left:107.334488px;}
.x7b_c00472{left:111.743183px;}
.x53_c00472{left:113.962815px;}
.x33_c00472{left:116.146500px;}
.x5_c00472{left:118.051500px;}
.x63_c00472{left:123.046650px;}
.x22_c00472{left:124.441500px;}
.x2a_c00472{left:129.601500px;}
.x4c_c00472{left:130.721370px;}
.x1b_c00472{left:132.052500px;}
.x6_c00472{left:134.823000px;}
.x60_c00472{left:135.971775px;}
.x34_c00472{left:138.057000px;}
.x17_c00472{left:139.618500px;}
.x41_c00472{left:141.456000px;}
.x1_c00472{left:143.370000px;}
.x77_c00472{left:144.608150px;}
.x12_c00472{left:147.463500px;}
.x79_c00472{left:149.207114px;}
.xc_c00472{left:153.109500px;}
.x50_c00472{left:154.347900px;}
.x1c_c00472{left:156.634500px;}
.x18_c00472{left:160.312500px;}
.x5a_c00472{left:161.826000px;}
.x57_c00472{left:163.237500px;}
.x54_c00472{left:167.096670px;}
.x3d_c00472{left:168.532500px;}
.x7a_c00472{left:170.975958px;}
.x38_c00472{left:172.077000px;}
.x49_c00472{left:175.546590px;}
.x5b_c00472{left:176.718000px;}
.x61_c00472{left:178.124025px;}
.x64_c00472{left:180.669038px;}
.x7c_c00472{left:183.277820px;}
.x2e_c00472{left:184.452000px;}
.xd_c00472{left:187.971000px;}
.x6e_c00472{left:189.512663px;}
.x7_c00472{left:193.129500px;}
.x55_c00472{left:194.216505px;}
.x42_c00472{left:196.161000px;}
.x4a_c00472{left:197.345700px;}
.x25_c00472{left:199.687500px;}
.x1d_c00472{left:200.835000px;}
.x2b_c00472{left:202.509000px;}
.x23_c00472{left:204.664500px;}
.x72_c00472{left:208.072500px;}
.x46_c00472{left:210.834000px;}
.x8_c00472{left:213.109500px;}
.x19_c00472{left:214.533000px;}
.x26_c00472{left:217.765500px;}
.x2c_c00472{left:222.492000px;}
.x35_c00472{left:226.318500px;}
.x4d_c00472{left:227.974530px;}
.x1e_c00472{left:230.599500px;}
.x13_c00472{left:232.744500px;}
.x67_c00472{left:234.232388px;}
.x47_c00472{left:235.671000px;}
.x58_c00472{left:236.694000px;}
.xe_c00472{left:240.885000px;}
.x39_c00472{left:242.458500px;}
.x3e_c00472{left:244.149000px;}
.x27_c00472{left:246.282000px;}
.x45_c00472{left:249.675202px;}
.x68_c00472{left:250.836413px;}
.x14_c00472{left:252.763500px;}
.x73_c00472{left:257.281500px;}
.x65_c00472{left:259.146938px;}
.xf_c00472{left:260.326500px;}
.x3f_c00472{left:262.000500px;}
.x1f_c00472{left:265.072500px;}
.x5e_c00472{left:269.067000px;}
.x28_c00472{left:270.082500px;}
.x69_c00472{left:272.506650px;}
.x9_c00472{left:274.252500px;}
.x51_c00472{left:278.708370px;}
.x10_c00472{left:280.017000px;}
.x24_c00472{left:281.599500px;}
.x6b_c00472{left:282.682350px;}
.x2f_c00472{left:287.433000px;}
.x5c_c00472{left:289.570500px;}
.x3a_c00472{left:292.189500px;}
.x78_c00472{left:294.201906px;}
.x4b_c00472{left:297.464715px;}
.x6f_c00472{left:299.546700px;}
.x52_c00472{left:302.064765px;}
.x74_c00472{left:303.952500px;}
.x59_c00472{left:305.665500px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fsa_c00472{font-size:49.487463pt;}
.fs10_c00472{font-size:52.282997pt;}
.fs9_c00472{font-size:53.222366pt;}
.fs2_c00472{font-size:54.133333pt;}
.fs15_c00472{font-size:54.150247pt;}
.fsb_c00472{font-size:54.157688pt;}
.fs6_c00472{font-size:55.066667pt;}
.fs13_c00472{font-size:55.083872pt;}
.fs17_c00472{font-size:55.093120pt;}
.fs19_c00472{font-size:55.980313pt;}
.fs4_c00472{font-size:56.000000pt;}
.fs12_c00472{font-size:56.017497pt;}
.fsf_c00472{font-size:56.020408pt;}
.fs11_c00472{font-size:57.884747pt;}
.fs18_c00472{font-size:58.779328pt;}
.fs8_c00472{font-size:58.800000pt;}
.fse_c00472{font-size:58.826454pt;}
.fs14_c00472{font-size:59.751997pt;}
.fsd_c00472{font-size:59.760207pt;}
.fs5_c00472{font-size:61.600000pt;}
.fs16_c00472{font-size:61.619247pt;}
.fsc_c00472{font-size:61.627714pt;}
.fs1_c00472{font-size:62.533333pt;}
.fs7_c00472{font-size:63.466667pt;}
.fs3_c00472{font-size:70.933333pt;}
.fs0_c00472{font-size:73.733333pt;}
.y0_c00472{bottom:0.000000pt;}
.ye4_c00472{bottom:30.736328pt;}
.ye5_c00472{bottom:32.356064pt;}
.ye6_c00472{bottom:33.629828pt;}
.ye7_c00472{bottom:34.414544pt;}
.ye8_c00472{bottom:35.318396pt;}
.ye9_c00472{bottom:35.698352pt;}
.ydd_c00472{bottom:45.616148pt;}
.yde_c00472{bottom:47.255936pt;}
.ydf_c00472{bottom:47.538824pt;}
.ye0_c00472{bottom:49.139408pt;}
.ye1_c00472{bottom:49.759352pt;}
.ye2_c00472{bottom:51.481748pt;}
.ye3_c00472{bottom:52.550564pt;}
.yd6_c00472{bottom:60.020000pt;}
.yd7_c00472{bottom:61.621664pt;}
.yd8_c00472{bottom:62.227616pt;}
.yd9_c00472{bottom:63.983216pt;}
.yda_c00472{bottom:66.005840pt;}
.ydb_c00472{bottom:67.371632pt;}
.ydc_c00472{bottom:68.775008pt;}
.ycf_c00472{bottom:75.604000pt;}
.yd0_c00472{bottom:77.999391pt;}
.yd1_c00472{bottom:79.041859pt;}
.yd2_c00472{bottom:80.916532pt;}
.yd3_c00472{bottom:81.458701pt;}
.yd4_c00472{bottom:82.272513pt;}
.yd5_c00472{bottom:83.558559pt;}
.yc7_c00472{bottom:92.851700pt;}
.yc8_c00472{bottom:93.864233pt;}
.yc9_c00472{bottom:94.137067pt;}
.yca_c00472{bottom:94.761333pt;}
.ycb_c00472{bottom:95.775233pt;}
.ycc_c00472{bottom:96.141733pt;}
.ycd_c00472{bottom:97.070000pt;}
.yce_c00472{bottom:97.463433pt;}
.ybf_c00472{bottom:104.626767pt;}
.yc0_c00472{bottom:105.384600pt;}
.yc1_c00472{bottom:106.095800pt;}
.yc2_c00472{bottom:107.016000pt;}
.yc3_c00472{bottom:110.213033pt;}
.yc4_c00472{bottom:111.139433pt;}
.yc5_c00472{bottom:113.431167pt;}
.yc6_c00472{bottom:113.830967pt;}
.yb8_c00472{bottom:120.952267pt;}
.yb9_c00472{bottom:121.453167pt;}
.yba_c00472{bottom:122.717867pt;}
.ybb_c00472{bottom:123.460267pt;}
.ybc_c00472{bottom:124.412633pt;}
.ybd_c00472{bottom:126.073300pt;}
.ybe_c00472{bottom:128.446900pt;}
.yaf_c00472{bottom:136.314300pt;}
.yb0_c00472{bottom:136.798567pt;}
.yb1_c00472{bottom:137.281333pt;}
.yb2_c00472{bottom:138.620933pt;}
.yb3_c00472{bottom:139.684967pt;}
.yb4_c00472{bottom:140.969333pt;}
.yb5_c00472{bottom:142.258200pt;}
.yb6_c00472{bottom:142.715233pt;}
.yb7_c00472{bottom:143.312867pt;}
.ya8_c00472{bottom:153.113867pt;}
.ya9_c00472{bottom:153.772833pt;}
.yaa_c00472{bottom:155.201033pt;}
.yab_c00472{bottom:156.378800pt;}
.yac_c00472{bottom:156.749100pt;}
.yad_c00472{bottom:157.984000pt;}
.yae_c00472{bottom:158.206267pt;}
.ya0_c00472{bottom:166.085633pt;}
.ya1_c00472{bottom:167.276967pt;}
.ya2_c00472{bottom:167.821400pt;}
.ya3_c00472{bottom:169.003367pt;}
.ya4_c00472{bottom:170.126867pt;}
.ya5_c00472{bottom:171.207700pt;}
.ya6_c00472{bottom:172.090767pt;}
.ya7_c00472{bottom:173.182067pt;}
.y9a_c00472{bottom:181.924000pt;}
.y9b_c00472{bottom:182.538667pt;}
.y9c_c00472{bottom:184.333600pt;}
.y9d_c00472{bottom:185.695633pt;}
.y9e_c00472{bottom:186.122267pt;}
.y9f_c00472{bottom:187.322633pt;}
.y92_c00472{bottom:197.049333pt;}
.y93_c00472{bottom:198.556967pt;}
.y94_c00472{bottom:199.537967pt;}
.y95_c00472{bottom:200.246333pt;}
.y96_c00472{bottom:200.577267pt;}
.y97_c00472{bottom:202.208467pt;}
.y98_c00472{bottom:202.460833pt;}
.y99_c00472{bottom:203.085100pt;}
.y8b_c00472{bottom:211.928000pt;}
.y8c_c00472{bottom:213.521504pt;}
.y8d_c00472{bottom:214.118852pt;}
.y8e_c00472{bottom:215.506652pt;}
.y8f_c00472{bottom:216.918608pt;}
.y90_c00472{bottom:217.269608pt;}
.y91_c00472{bottom:218.924924pt;}
.y85_c00472{bottom:228.458573pt;}
.y86_c00472{bottom:230.272400pt;}
.y87_c00472{bottom:231.263587pt;}
.y88_c00472{bottom:231.769253pt;}
.y89_c00472{bottom:232.792267pt;}
.y8a_c00472{bottom:233.110067pt;}
.y7e_c00472{bottom:241.669587pt;}
.y7f_c00472{bottom:243.547613pt;}
.y80_c00472{bottom:244.150147pt;}
.y81_c00472{bottom:245.077680pt;}
.y82_c00472{bottom:246.529280pt;}
.y83_c00472{bottom:248.172427pt;}
.y84_c00472{bottom:248.753893pt;}
.y78_c00472{bottom:258.471827pt;}
.y79_c00472{bottom:259.595173pt;}
.y7a_c00472{bottom:260.507413pt;}
.y7b_c00472{bottom:261.184827pt;}
.y7c_c00472{bottom:262.236053pt;}
.y7d_c00472{bottom:262.687480pt;}
.y71_c00472{bottom:272.402520pt;}
.y72_c00472{bottom:273.562973pt;}
.y73_c00472{bottom:275.166827pt;}
.y74_c00472{bottom:276.094360pt;}
.y75_c00472{bottom:276.598267pt;}
.y76_c00472{bottom:277.665027pt;}
.y77_c00472{bottom:278.911787pt;}
.y69_c00472{bottom:287.050667pt;}
.y6a_c00472{bottom:288.296787pt;}
.y6b_c00472{bottom:288.995507pt;}
.y6c_c00472{bottom:290.551107pt;}
.y6d_c00472{bottom:291.624707pt;}
.y6e_c00472{bottom:292.251707pt;}
.y6f_c00472{bottom:292.914027pt;}
.y70_c00472{bottom:294.274627pt;}
.y61_c00472{bottom:301.921633pt;}
.y62_c00472{bottom:302.560863pt;}
.y63_c00472{bottom:303.199705pt;}
.y64_c00472{bottom:303.650799pt;}
.y65_c00472{bottom:305.445544pt;}
.y66_c00472{bottom:306.145520pt;}
.y67_c00472{bottom:308.073900pt;}
.y68_c00472{bottom:309.141835pt;}
.y59_c00472{bottom:316.806667pt;}
.y5a_c00472{bottom:317.115613pt;}
.y5b_c00472{bottom:318.765636pt;}
.y5c_c00472{bottom:320.383604pt;}
.y5d_c00472{bottom:321.062668pt;}
.y5e_c00472{bottom:321.793777pt;}
.y5f_c00472{bottom:323.103108pt;}
.y60_c00472{bottom:323.590695pt;}
.y51_c00472{bottom:332.174667pt;}
.y52_c00472{bottom:333.741333pt;}
.y53_c00472{bottom:334.269333pt;}
.y54_c00472{bottom:334.878667pt;}
.y55_c00472{bottom:335.989333pt;}
.y56_c00472{bottom:336.400000pt;}
.y57_c00472{bottom:337.870667pt;}
.y58_c00472{bottom:338.314667pt;}
.y4a_c00472{bottom:347.054667pt;}
.y4b_c00472{bottom:347.545333pt;}
.y4c_c00472{bottom:348.970667pt;}
.y4d_c00472{bottom:350.056000pt;}
.y4e_c00472{bottom:350.830667pt;}
.y4f_c00472{bottom:352.520000pt;}
.y50_c00472{bottom:353.713333pt;}
.y42_c00472{bottom:362.172000pt;}
.y43_c00472{bottom:362.574667pt;}
.y44_c00472{bottom:363.060000pt;}
.y45_c00472{bottom:364.326667pt;}
.y46_c00472{bottom:364.813333pt;}
.y47_c00472{bottom:366.180000pt;}
.y48_c00472{bottom:366.774667pt;}
.y49_c00472{bottom:368.121333pt;}
.y3d_c00472{bottom:378.012000pt;}
.y3e_c00472{bottom:379.318667pt;}
.y3f_c00472{bottom:379.589333pt;}
.y40_c00472{bottom:381.792000pt;}
.y41_c00472{bottom:384.080000pt;}
.y36_c00472{bottom:392.410667pt;}
.y37_c00472{bottom:393.141333pt;}
.y38_c00472{bottom:394.562667pt;}
.y39_c00472{bottom:394.890667pt;}
.y3a_c00472{bottom:395.924000pt;}
.y3b_c00472{bottom:396.297333pt;}
.y3c_c00472{bottom:397.280000pt;}
.y2f_c00472{bottom:407.052000pt;}
.y30_c00472{bottom:407.908000pt;}
.y31_c00472{bottom:409.157333pt;}
.y32_c00472{bottom:411.336000pt;}
.y33_c00472{bottom:411.753333pt;}
.y34_c00472{bottom:412.412000pt;}
.y35_c00472{bottom:412.962667pt;}
.y27_c00472{bottom:423.128000pt;}
.y28_c00472{bottom:423.817333pt;}
.y29_c00472{bottom:424.297333pt;}
.y2a_c00472{bottom:424.741333pt;}
.y2b_c00472{bottom:425.097333pt;}
.y2c_c00472{bottom:425.597333pt;}
.y2d_c00472{bottom:426.524000pt;}
.y2e_c00472{bottom:427.892000pt;}
.y20_c00472{bottom:437.769333pt;}
.y21_c00472{bottom:438.552000pt;}
.y22_c00472{bottom:440.192000pt;}
.y23_c00472{bottom:440.694667pt;}
.y24_c00472{bottom:441.598667pt;}
.y25_c00472{bottom:442.206667pt;}
.y26_c00472{bottom:442.912000pt;}
.y18_c00472{bottom:450.498667pt;}
.y19_c00472{bottom:451.028000pt;}
.y1a_c00472{bottom:452.665333pt;}
.y1b_c00472{bottom:452.966667pt;}
.y1c_c00472{bottom:454.166667pt;}
.y1d_c00472{bottom:454.773333pt;}
.y1e_c00472{bottom:456.364000pt;}
.y1f_c00472{bottom:456.872000pt;}
.y12_c00472{bottom:468.248000pt;}
.y13_c00472{bottom:469.236000pt;}
.y14_c00472{bottom:470.348000pt;}
.y15_c00472{bottom:470.969333pt;}
.y16_c00472{bottom:472.713333pt;}
.y17_c00472{bottom:473.122667pt;}
.ya_c00472{bottom:483.129333pt;}
.yb_c00472{bottom:483.897333pt;}
.yc_c00472{bottom:484.449333pt;}
.yd_c00472{bottom:486.218667pt;}
.ye_c00472{bottom:486.993333pt;}
.yf_c00472{bottom:488.169333pt;}
.y10_c00472{bottom:488.601333pt;}
.y11_c00472{bottom:489.038667pt;}
.y2_c00472{bottom:497.530667pt;}
.y3_c00472{bottom:497.996000pt;}
.y4_c00472{bottom:499.728000pt;}
.y5_c00472{bottom:500.022667pt;}
.y6_c00472{bottom:500.425333pt;}
.y7_c00472{bottom:501.825333pt;}
.y8_c00472{bottom:502.305333pt;}
.y9_c00472{bottom:503.773333pt;}
.y1_c00472{bottom:512.153333pt;}
.hc_c00472{height:49.487463pt;}
.h12_c00472{height:52.282997pt;}
.hb_c00472{height:53.222366pt;}
.h4_c00472{height:54.133333pt;}
.h17_c00472{height:54.150247pt;}
.hd_c00472{height:54.157688pt;}
.h8_c00472{height:55.066667pt;}
.h15_c00472{height:55.083872pt;}
.h19_c00472{height:55.093120pt;}
.h1b_c00472{height:55.980313pt;}
.h6_c00472{height:56.000000pt;}
.h14_c00472{height:56.017497pt;}
.h11_c00472{height:56.020408pt;}
.h13_c00472{height:57.884747pt;}
.h1a_c00472{height:58.779328pt;}
.ha_c00472{height:58.800000pt;}
.h10_c00472{height:58.826454pt;}
.h16_c00472{height:59.751997pt;}
.hf_c00472{height:59.760207pt;}
.h7_c00472{height:61.600000pt;}
.h18_c00472{height:61.619247pt;}
.he_c00472{height:61.627714pt;}
.h3_c00472{height:62.533333pt;}
.h9_c00472{height:63.466667pt;}
.h5_c00472{height:70.933333pt;}
.h2_c00472{height:73.733333pt;}
.h0_c00472{height:549.066667pt;}
.h1_c00472{height:549.333333pt;}
.w0_c00472{width:319.200000pt;}
.w1_c00472{width:319.333333pt;}
.x0_c00472{left:0.000000pt;}
.x40_c00472{left:2.396000pt;}
.x2_c00472{left:12.596000pt;}
.x3b_c00472{left:13.573333pt;}
.x4e_c00472{left:15.498853pt;}
.x30_c00472{left:17.033333pt;}
.x62_c00472{left:18.630267pt;}
.x5d_c00472{left:23.225333pt;}
.x43_c00472{left:25.018457pt;}
.x3_c00472{left:29.844000pt;}
.x36_c00472{left:31.276000pt;}
.x31_c00472{left:33.162667pt;}
.x6c_c00472{left:37.970833pt;}
.xa_c00472{left:43.233333pt;}
.x1a_c00472{left:46.093333pt;}
.x29_c00472{left:47.516000pt;}
.x32_c00472{left:52.590667pt;}
.x11_c00472{left:55.697333pt;}
.x6d_c00472{left:57.186400pt;}
.x48_c00472{left:58.672400pt;}
.x70_c00472{left:61.778867pt;}
.x75_c00472{left:63.007509pt;}
.x44_c00472{left:63.936912pt;}
.xb_c00472{left:65.336000pt;}
.x3c_c00472{left:69.534667pt;}
.x20_c00472{left:70.676000pt;}
.x56_c00472{left:71.576000pt;}
.x71_c00472{left:73.652800pt;}
.x2d_c00472{left:75.848000pt;}
.x15_c00472{left:78.632000pt;}
.x76_c00472{left:79.822677pt;}
.x5f_c00472{left:81.483400pt;}
.x4f_c00472{left:82.548187pt;}
.x37_c00472{left:84.082667pt;}
.x16_c00472{left:87.752000pt;}
.x66_c00472{left:90.840133pt;}
.x21_c00472{left:92.848000pt;}
.x4_c00472{left:94.006667pt;}
.x6a_c00472{left:95.408433pt;}
.x7b_c00472{left:99.327273pt;}
.x53_c00472{left:101.300280pt;}
.x33_c00472{left:103.241333pt;}
.x5_c00472{left:104.934667pt;}
.x63_c00472{left:109.374800pt;}
.x22_c00472{left:110.614667pt;}
.x2a_c00472{left:115.201333pt;}
.x4c_c00472{left:116.196773pt;}
.x1b_c00472{left:117.380000pt;}
.x6_c00472{left:119.842667pt;}
.x60_c00472{left:120.863800pt;}
.x34_c00472{left:122.717333pt;}
.x17_c00472{left:124.105333pt;}
.x41_c00472{left:125.738667pt;}
.x1_c00472{left:127.440000pt;}
.x77_c00472{left:128.540577pt;}
.x12_c00472{left:131.078667pt;}
.x79_c00472{left:132.628545pt;}
.xc_c00472{left:136.097333pt;}
.x50_c00472{left:137.198133pt;}
.x1c_c00472{left:139.230667pt;}
.x18_c00472{left:142.500000pt;}
.x5a_c00472{left:143.845333pt;}
.x57_c00472{left:145.100000pt;}
.x54_c00472{left:148.530373pt;}
.x3d_c00472{left:149.806667pt;}
.x7a_c00472{left:151.978629pt;}
.x38_c00472{left:152.957333pt;}
.x49_c00472{left:156.041413pt;}
.x5b_c00472{left:157.082667pt;}
.x61_c00472{left:158.332467pt;}
.x64_c00472{left:160.594700pt;}
.x7c_c00472{left:162.913617pt;}
.x2e_c00472{left:163.957333pt;}
.xd_c00472{left:167.085333pt;}
.x6e_c00472{left:168.455700pt;}
.x7_c00472{left:171.670667pt;}
.x55_c00472{left:172.636893pt;}
.x42_c00472{left:174.365333pt;}
.x4a_c00472{left:175.418400pt;}
.x25_c00472{left:177.500000pt;}
.x1d_c00472{left:178.520000pt;}
.x2b_c00472{left:180.008000pt;}
.x23_c00472{left:181.924000pt;}
.x72_c00472{left:184.953333pt;}
.x46_c00472{left:187.408000pt;}
.x8_c00472{left:189.430667pt;}
.x19_c00472{left:190.696000pt;}
.x26_c00472{left:193.569333pt;}
.x2c_c00472{left:197.770667pt;}
.x35_c00472{left:201.172000pt;}
.x4d_c00472{left:202.644027pt;}
.x1e_c00472{left:204.977333pt;}
.x13_c00472{left:206.884000pt;}
.x67_c00472{left:208.206567pt;}
.x47_c00472{left:209.485333pt;}
.x58_c00472{left:210.394667pt;}
.xe_c00472{left:214.120000pt;}
.x39_c00472{left:215.518667pt;}
.x3e_c00472{left:217.021333pt;}
.x27_c00472{left:218.917333pt;}
.x45_c00472{left:221.933513pt;}
.x68_c00472{left:222.965700pt;}
.x14_c00472{left:224.678667pt;}
.x73_c00472{left:228.694667pt;}
.x65_c00472{left:230.352833pt;}
.xf_c00472{left:231.401333pt;}
.x3f_c00472{left:232.889333pt;}
.x1f_c00472{left:235.620000pt;}
.x5e_c00472{left:239.170667pt;}
.x28_c00472{left:240.073333pt;}
.x69_c00472{left:242.228133pt;}
.x9_c00472{left:243.780000pt;}
.x51_c00472{left:247.740773pt;}
.x10_c00472{left:248.904000pt;}
.x24_c00472{left:250.310667pt;}
.x6b_c00472{left:251.273200pt;}
.x2f_c00472{left:255.496000pt;}
.x5c_c00472{left:257.396000pt;}
.x3a_c00472{left:259.724000pt;}
.x78_c00472{left:261.512805pt;}
.x4b_c00472{left:264.413080pt;}
.x6f_c00472{left:266.263733pt;}
.x52_c00472{left:268.502013pt;}
.x74_c00472{left:270.180000pt;}
.x59_c00472{left:271.702667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00473{transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.073640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073640,0.000000,0.000000,0.250000,0,0);}
.m72_c00473{transform:matrix(0.103900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103900,0.000000,0.000000,0.250000,0,0);}
.mde_c00473{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);}
.m6a_c00473{transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129230,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m69_c00473{transform:matrix(0.145595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145595,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.147785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147785,0.000000,0.000000,0.250000,0,0);}
.mba_c00473{transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148380,0.000000,0.000000,0.250000,0,0);}
.m6d_c00473{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m61_c00473{transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151805,0.000000,0.000000,0.250000,0,0);}
.m36_c00473{transform:matrix(0.152351,0.001676,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152351,0.001676,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152351,0.001676,-0.002750,0.249985,0,0);}
.md0_c00473{transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152720,0.000000,0.000000,0.250000,0,0);}
.mc6_c00473{transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155485,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.156590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156590,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m57_c00473{transform:matrix(0.160495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160495,0.000000,0.000000,0.250000,0,0);}
.mb8_c00473{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00473{transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);}
.m3e_c00473{transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);}
.mbc_c00473{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.m43_c00473{transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162720,0.000000,0.000000,0.250000,0,0);}
.mc7_c00473{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m5b_c00473{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m2d_c00473{transform:matrix(0.165250,0.001818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165250,0.001818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165250,0.001818,-0.002750,0.249985,0,0);}
.mbb_c00473{transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166060,0.000000,0.000000,0.250000,0,0);}
.m75_c00473{transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167305,0.000000,0.000000,0.250000,0,0);}
.m28_c00473{transform:matrix(0.168245,0.001851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168245,0.001851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168245,0.001851,-0.002750,0.249985,0,0);}
.mab_c00473{transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168310,0.000000,0.000000,0.250000,0,0);}
.m9c_c00473{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.ma7_c00473{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.m29_c00473{transform:matrix(0.169040,0.001859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169040,0.001859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169040,0.001859,-0.002750,0.249985,0,0);}
.m3c_c00473{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.ma8_c00473{transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);}
.m51_c00473{transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);}
.mdd_c00473{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.md1_c00473{transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);}
.m37_c00473{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m38_c00473{transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171970,0.000000,0.000000,0.250000,0,0);}
.m41_c00473{transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172295,0.000000,0.000000,0.250000,0,0);}
.m71_c00473{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m50_c00473{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.md6_c00473{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mcd_c00473{transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176110,0.000000,0.000000,0.250000,0,0);}
.m1f_c00473{transform:matrix(0.176675,0.002297,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176675,0.002297,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176675,0.002297,-0.003250,0.249979,0,0);}
.m1c_c00473{transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176735,0.002298,-0.003250,0.249979,0,0);}
.m2f_c00473{transform:matrix(0.176774,0.001945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176774,0.001945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176774,0.001945,-0.002750,0.249985,0,0);}
.m15_c00473{transform:matrix(0.177377,0.002129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177377,0.002129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177377,0.002129,-0.003000,0.249982,0,0);}
.mae_c00473{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m6e_c00473{transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.179142,0.002150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179142,0.002150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179142,0.002150,-0.003000,0.249982,0,0);}
.m25_c00473{transform:matrix(0.179495,0.002333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179495,0.002333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179495,0.002333,-0.003250,0.249979,0,0);}
.mbe_c00473{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.mca_c00473{transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180315,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.180632,0.002168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180632,0.002168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180632,0.002168,-0.003000,0.249982,0,0);}
.mdb_c00473{transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);}
.m70_c00473{transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00473{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.mac_c00473{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.m95_c00473{transform:matrix(0.182185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182185,0.000000,0.000000,0.250000,0,0);}
.m2e_c00473{transform:matrix(0.182774,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182774,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182774,0.002011,-0.002750,0.249985,0,0);}
.mc5_c00473{transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182840,0.000000,0.000000,0.250000,0,0);}
.m8b_c00473{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m45_c00473{transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{transform:matrix(0.183499,0.002018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183499,0.002018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183499,0.002018,-0.002750,0.249985,0,0);}
.mce_c00473{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m8f_c00473{transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183770,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.183847,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183847,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183847,0.002206,-0.003000,0.249982,0,0);}
.m16_c00473{transform:matrix(0.185387,0.002225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185387,0.002225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185387,0.002225,-0.003000,0.249982,0,0);}
.m56_c00473{transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185545,0.000000,0.000000,0.250000,0,0);}
.ma9_c00473{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m93_c00473{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m89_c00473{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.mb4_c00473{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.m2a_c00473{transform:matrix(0.186719,0.002054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186719,0.002054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186719,0.002054,-0.002750,0.249985,0,0);}
.m27_c00473{transform:matrix(0.186739,0.002428,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186739,0.002428,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186739,0.002428,-0.003250,0.249979,0,0);}
.mc2_c00473{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.m7c_c00473{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m40_c00473{transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00473{transform:matrix(0.187260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187260,0.000000,0.000000,0.250000,0,0);}
.m58_c00473{transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.mc4_c00473{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.188721,0.002265,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188721,0.002265,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188721,0.002265,-0.003000,0.249982,0,0);}
.m54_c00473{transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188855,0.000000,0.000000,0.250000,0,0);}
.ma0_c00473{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.md9_c00473{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m44_c00473{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m7d_c00473{transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m2b_c00473{transform:matrix(0.190553,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190553,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190553,0.002096,-0.002750,0.249985,0,0);}
.m39_c00473{transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190915,0.000000,0.000000,0.250000,0,0);}
.m4e_c00473{transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191255,0.000000,0.000000,0.250000,0,0);}
.ma5_c00473{transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192715,0.000000,0.000000,0.250000,0,0);}
.mad_c00473{transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192790,0.000000,0.000000,0.250000,0,0);}
.m32_c00473{transform:matrix(0.192973,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192973,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192973,0.002123,-0.002750,0.249985,0,0);}
.mf_c00473{transform:matrix(0.193701,0.002324,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193701,0.002324,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193701,0.002324,-0.003000,0.249982,0,0);}
.m9a_c00473{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m84_c00473{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.195179,0.002537,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195179,0.002537,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195179,0.002537,-0.003250,0.249979,0,0);}
.mb1_c00473{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.m5a_c00473{transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196105,0.000000,0.000000,0.250000,0,0);}
.md5_c00473{transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196235,0.000000,0.000000,0.250000,0,0);}
.m67_c00473{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.m90_c00473{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m34_c00473{transform:matrix(0.197128,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197128,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197128,0.002168,-0.002750,0.249985,0,0);}
.mbf_c00473{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00473{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.md3_c00473{transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197880,0.000000,0.000000,0.250000,0,0);}
.maf_c00473{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m74_c00473{transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199055,0.000000,0.000000,0.250000,0,0);}
.m9b_c00473{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.mb7_c00473{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.m33_c00473{transform:matrix(0.199298,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199298,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199298,0.002192,-0.002750,0.249985,0,0);}
.m73_c00473{transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00473{transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200255,0.000000,0.000000,0.250000,0,0);}
.ma4_c00473{transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200895,0.000000,0.000000,0.250000,0,0);}
.mc1_c00473{transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200940,0.000000,0.000000,0.250000,0,0);}
.maa_c00473{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.mc8_c00473{transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201070,0.000000,0.000000,0.250000,0,0);}
.m9e_c00473{transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201165,0.000000,0.000000,0.250000,0,0);}
.m55_c00473{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.202238,0.002629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202238,0.002629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202238,0.002629,-0.003250,0.249979,0,0);}
.mda_c00473{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m80_c00473{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m78_c00473{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.mb2_c00473{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m9d_c00473{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m4f_c00473{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m85_c00473{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.md2_c00473{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.md4_c00473{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m94_c00473{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m35_c00473{transform:matrix(0.205473,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205473,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205473,0.002260,-0.002750,0.249985,0,0);}
.m20_c00473{transform:matrix(0.205698,0.002674,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205698,0.002674,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205698,0.002674,-0.003250,0.249979,0,0);}
.m92_c00473{transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205960,0.000000,0.000000,0.250000,0,0);}
.m87_c00473{transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208945,0.000000,0.000000,0.250000,0,0);}
.mb5_c00473{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00473{transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208995,0.000000,0.000000,0.250000,0,0);}
.m59_c00473{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00473{transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);}
.m86_c00473{transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210435,0.000000,0.000000,0.250000,0,0);}
.m5d_c00473{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.m7e_c00473{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.m66_c00473{transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210630,0.000000,0.000000,0.250000,0,0);}
.m53_c00473{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m4d_c00473{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mc3_c00473{transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210910,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.md7_c00473{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.211642,0.002751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211642,0.002751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211642,0.002751,-0.003250,0.249979,0,0);}
.m30_c00473{transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);}
.m8d_c00473{transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);}
.m97_c00473{transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212455,0.000000,0.000000,0.250000,0,0);}
.m99_c00473{transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212645,0.000000,0.000000,0.250000,0,0);}
.m88_c00473{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m81_c00473{transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);}
.m3f_c00473{transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);}
.m9f_c00473{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m8e_c00473{transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);}
.m68_c00473{transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215495,0.000000,0.000000,0.250000,0,0);}
.m79_c00473{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.m48_c00473{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.216584,0.002599,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216584,0.002599,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216584,0.002599,-0.003000,0.249982,0,0);}
.m96_c00473{transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217240,0.000000,0.000000,0.250000,0,0);}
.m8c_c00473{transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217310,0.000000,0.000000,0.250000,0,0);}
.ma1_c00473{transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217865,0.000000,0.000000,0.250000,0,0);}
.m31_c00473{transform:matrix(0.218012,0.002398,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218012,0.002398,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218012,0.002398,-0.002750,0.249985,0,0);}
.m91_c00473{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.mb3_c00473{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.md8_c00473{transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m47_c00473{transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);}
.mbd_c00473{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m63_c00473{transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);}
.m7f_c00473{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.m52_c00473{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m6f_c00473{transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);}
.m62_c00473{transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);}
.mc0_c00473{transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);}
.m6b_c00473{transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00473{transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.228339,0.002740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228339,0.002740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228339,0.002740,-0.003000,0.249982,0,0);}
.m13_c00473{transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);}
.m23_c00473{transform:matrix(0.229831,0.002988,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229831,0.002988,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229831,0.002988,-0.003250,0.249979,0,0);}
.m4b_c00473{transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00473{transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);}
.m3b_c00473{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);}
.m11_c00473{transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);}
.mc_c00473{transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235415,0.000000,0.000000,0.250000,0,0);}
.m46_c00473{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.m64_c00473{transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);}
.m49_c00473{transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);}
.m77_c00473{transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);}
.m65_c00473{transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.242819,0.003157,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242819,0.003157,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242819,0.003157,-0.003250,0.249979,0,0);}
.m8a_c00473{transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);}
.ma6_c00473{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m5f_c00473{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m26_c00473{transform:matrix(0.248444,0.003230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248444,0.003230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248444,0.003230,-0.003250,0.249979,0,0);}
.m24_c00473{transform:matrix(0.248994,0.003237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248994,0.003237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248994,0.003237,-0.003250,0.249979,0,0);}
.m42_c00473{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m83_c00473{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m98_c00473{transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);}
.mb0_c00473{transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);}
.m5e_c00473{transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);}
.m76_c00473{transform:matrix(0.256580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256580,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.258046,0.003097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258046,0.003097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258046,0.003097,-0.003000,0.249982,0,0);}
.m7b_c00473{transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);}
.m82_c00473{transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);}
.ma3_c00473{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00473{transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00473{transform:matrix(0.276650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276650,0.000000,0.000000,0.250000,0,0);}
.mcc_c00473{transform:matrix(0.333565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333565,0.000000,0.000000,0.250000,0,0);}
.m7a_c00473{transform:matrix(0.337505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337505,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.mcb_c00473{transform:matrix(0.397940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397940,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.430279,0.005594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.430279,0.005594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.430279,0.005594,-0.003250,0.249979,0,0);}
.m60_c00473{transform:matrix(0.527000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
.fc0_c00473{color:transparent;}
.fs10_c00473{font-size:58.800000px;}
.fse_c00473{font-size:59.850000px;}
.fsd_c00473{font-size:61.950000px;}
.fs6_c00473{font-size:61.955235px;}
.fsa_c00473{font-size:64.050000px;}
.fsf_c00473{font-size:65.100000px;}
.fsb_c00473{font-size:66.150000px;}
.fs8_c00473{font-size:66.154002px;}
.fs3_c00473{font-size:66.154763px;}
.fs2_c00473{font-size:67.200000px;}
.fs5_c00473{font-size:68.255767px;}
.fs12_c00473{font-size:69.300000px;}
.fs7_c00473{font-size:69.304193px;}
.fs11_c00473{font-size:70.350000px;}
.fs4_c00473{font-size:70.355065px;}
.fsc_c00473{font-size:72.450000px;}
.fs9_c00473{font-size:73.500000px;}
.fs1_c00473{font-size:86.100000px;}
.fs0_c00473{font-size:87.150000px;}
.y0_c00473{bottom:0.000000px;}
.y77_c00473{bottom:35.530500px;}
.y76_c00473{bottom:53.076000px;}
.y75_c00473{bottom:69.267000px;}
.y74_c00473{bottom:87.004500px;}
.y73_c00473{bottom:102.165000px;}
.y72_c00473{bottom:103.006500px;}
.y71_c00473{bottom:103.713000px;}
.y70_c00473{bottom:104.070000px;}
.y6f_c00473{bottom:104.343000px;}
.y6e_c00473{bottom:105.019500px;}
.y6d_c00473{bottom:105.204000px;}
.y6c_c00473{bottom:105.570000px;}
.y6b_c00473{bottom:118.353000px;}
.y6a_c00473{bottom:137.880000px;}
.y69_c00473{bottom:154.978500px;}
.y68_c00473{bottom:170.404500px;}
.y67_c00473{bottom:185.289000px;}
.y66_c00473{bottom:186.273000px;}
.y65_c00473{bottom:187.224000px;}
.y64_c00473{bottom:187.467000px;}
.y63_c00473{bottom:188.791500px;}
.y62_c00473{bottom:189.135000px;}
.y61_c00473{bottom:189.540000px;}
.y60_c00473{bottom:204.181500px;}
.y5f_c00473{bottom:221.191500px;}
.y5e_c00473{bottom:235.851000px;}
.y5d_c00473{bottom:237.021000px;}
.y5c_c00473{bottom:238.021500px;}
.y5b_c00473{bottom:238.783500px;}
.y5a_c00473{bottom:239.055000px;}
.y59_c00473{bottom:239.359500px;}
.y58_c00473{bottom:240.031500px;}
.y57_c00473{bottom:254.271000px;}
.y56_c00473{bottom:254.632500px;}
.y55_c00473{bottom:254.997000px;}
.y54_c00473{bottom:255.460500px;}
.y53_c00473{bottom:256.539000px;}
.y52_c00473{bottom:256.945500px;}
.y51_c00473{bottom:257.131500px;}
.y50_c00473{bottom:257.851500px;}
.y4f_c00473{bottom:271.482000px;}
.y4e_c00473{bottom:272.425500px;}
.y4d_c00473{bottom:272.692500px;}
.y4c_c00473{bottom:273.423000px;}
.y4b_c00473{bottom:274.143000px;}
.y4a_c00473{bottom:274.402500px;}
.y49_c00473{bottom:274.861500px;}
.y48_c00473{bottom:286.582500px;}
.y47_c00473{bottom:287.863500px;}
.y46_c00473{bottom:288.255000px;}
.y45_c00473{bottom:288.552000px;}
.y44_c00473{bottom:290.566500px;}
.y43_c00473{bottom:291.874500px;}
.y42_c00473{bottom:305.886000px;}
.y41_c00473{bottom:322.221000px;}
.y40_c00473{bottom:322.408500px;}
.y3f_c00473{bottom:322.921500px;}
.y3e_c00473{bottom:323.170500px;}
.y3d_c00473{bottom:323.935500px;}
.y3c_c00473{bottom:324.097500px;}
.y3b_c00473{bottom:324.813000px;}
.y3a_c00473{bottom:340.752000px;}
.y39_c00473{bottom:356.017500px;}
.y38_c00473{bottom:356.277000px;}
.y37_c00473{bottom:356.845500px;}
.y36_c00473{bottom:357.021000px;}
.y35_c00473{bottom:357.403500px;}
.y34_c00473{bottom:357.951000px;}
.y33_c00473{bottom:358.554000px;}
.y32_c00473{bottom:358.965000px;}
.y31_c00473{bottom:359.371500px;}
.y30_c00473{bottom:375.868500px;}
.y2f_c00473{bottom:390.993000px;}
.y2e_c00473{bottom:407.886000px;}
.y2d_c00473{bottom:423.841500px;}
.y2c_c00473{bottom:440.453977px;}
.y2b_c00473{bottom:441.263986px;}
.y2a_c00473{bottom:441.770181px;}
.y29_c00473{bottom:442.072132px;}
.y28_c00473{bottom:443.270353px;}
.y27_c00473{bottom:443.670690px;}
.y26_c00473{bottom:444.166392px;}
.y25_c00473{bottom:457.191442px;}
.y24_c00473{bottom:457.687531px;}
.y23_c00473{bottom:458.302222px;}
.y22_c00473{bottom:458.540004px;}
.y21_c00473{bottom:459.036291px;}
.y20_c00473{bottom:459.148524px;}
.y1f_c00473{bottom:459.823159px;}
.y1e_c00473{bottom:460.081500px;}
.y1d_c00473{bottom:475.520060px;}
.y1c_c00473{bottom:475.680915px;}
.y1b_c00473{bottom:476.436130px;}
.y1a_c00473{bottom:476.710534px;}
.y19_c00473{bottom:477.065005px;}
.y18_c00473{bottom:477.724593px;}
.y17_c00473{bottom:478.440613px;}
.y16_c00473{bottom:491.951874px;}
.y15_c00473{bottom:492.565480px;}
.y14_c00473{bottom:492.858058px;}
.y13_c00473{bottom:493.889589px;}
.y12_c00473{bottom:494.735557px;}
.y11_c00473{bottom:495.451500px;}
.y10_c00473{bottom:510.148080px;}
.yf_c00473{bottom:510.148260px;}
.ye_c00473{bottom:510.148626px;}
.yd_c00473{bottom:510.148854px;}
.yb_c00473{bottom:510.148884px;}
.yc_c00473{bottom:510.149100px;}
.ya_c00473{bottom:526.101810px;}
.y9_c00473{bottom:526.445466px;}
.y8_c00473{bottom:527.497764px;}
.y7_c00473{bottom:527.773686px;}
.y6_c00473{bottom:528.308682px;}
.y5_c00473{bottom:528.936972px;}
.y4_c00473{bottom:529.471500px;}
.y3_c00473{bottom:543.966000px;}
.y2_c00473{bottom:560.401500px;}
.y1_c00473{bottom:573.186000px;}
.h12_c00473{height:58.800000px;}
.h10_c00473{height:59.850000px;}
.hf_c00473{height:61.950000px;}
.h8_c00473{height:61.955235px;}
.hc_c00473{height:64.050000px;}
.h11_c00473{height:65.100000px;}
.hd_c00473{height:66.150000px;}
.ha_c00473{height:66.154002px;}
.h5_c00473{height:66.154763px;}
.h4_c00473{height:67.200000px;}
.h7_c00473{height:68.255767px;}
.h14_c00473{height:69.300000px;}
.h9_c00473{height:69.304193px;}
.h13_c00473{height:70.350000px;}
.h6_c00473{height:70.355065px;}
.he_c00473{height:72.450000px;}
.hb_c00473{height:73.500000px;}
.h3_c00473{height:86.100000px;}
.h2_c00473{height:87.150000px;}
.h0_c00473{height:617.700000px;}
.h1_c00473{height:618.000000px;}
.w0_c00473{width:359.100000px;}
.w1_c00473{width:359.250000px;}
.x0_c00473{left:0.000000px;}
.x7b_c00473{left:37.533000px;}
.x6d_c00473{left:38.610000px;}
.x64_c00473{left:39.762000px;}
.x4a_c00473{left:40.897500px;}
.x3d_c00473{left:42.930000px;}
.x37_c00473{left:44.010000px;}
.x19_c00473{left:45.745500px;}
.x3_c00473{left:46.980000px;}
.x6e_c00473{left:51.840000px;}
.x7c_c00473{left:56.703000px;}
.x61_c00473{left:60.480000px;}
.x2f_c00473{left:65.880000px;}
.x24_c00473{left:69.237000px;}
.x3e_c00473{left:71.550000px;}
.x42_c00473{left:75.433500px;}
.x14_c00473{left:78.033732px;}
.x6f_c00473{left:79.110000px;}
.x2a_c00473{left:80.285181px;}
.x62_c00473{left:82.350000px;}
.x73_c00473{left:84.108000px;}
.x5a_c00473{left:86.475000px;}
.x65_c00473{left:89.688000px;}
.xe_c00473{left:90.855000px;}
.x54_c00473{left:97.590000px;}
.x1a_c00473{left:100.818000px;}
.x34_c00473{left:103.680000px;}
.x67_c00473{left:105.030000px;}
.x43_c00473{left:107.014500px;}
.x2b_c00473{left:108.905741px;}
.x52_c00473{left:111.004500px;}
.x4b_c00473{left:112.426500px;}
.x4_c00473{left:114.210000px;}
.x49_c00473{left:118.260000px;}
.x38_c00473{left:120.690000px;}
.x30_c00473{left:122.310000px;}
.x5b_c00473{left:124.813500px;}
.x1_c00473{left:128.250000px;}
.x15_c00473{left:130.686810px;}
.x39_c00473{left:131.760000px;}
.x78_c00473{left:133.653000px;}
.x50_c00473{left:134.730000px;}
.x31_c00473{left:136.080000px;}
.x3f_c00473{left:138.240000px;}
.x25_c00473{left:140.770500px;}
.xf_c00473{left:143.212500px;}
.x8_c00473{left:147.690000px;}
.x68_c00473{left:148.770000px;}
.x1f_c00473{left:152.100987px;}
.x44_c00473{left:153.450000px;}
.x6c_c00473{left:157.950000px;}
.x9_c00473{left:159.840000px;}
.x3a_c00473{left:161.190000px;}
.x74_c00473{left:163.233000px;}
.x1b_c00473{left:165.892500px;}
.x40_c00473{left:170.640000px;}
.x5d_c00473{left:172.800000px;}
.x5c_c00473{left:175.578000px;}
.x35_c00473{left:177.390000px;}
.x20_c00473{left:179.367987px;}
.x69_c00473{left:181.440000px;}
.x5_c00473{left:184.410000px;}
.x26_c00473{left:185.887500px;}
.x10_c00473{left:187.795500px;}
.x75_c00473{left:192.922500px;}
.x2c_c00473{left:194.513919px;}
.x45_c00473{left:195.619500px;}
.x32_c00473{left:197.100000px;}
.x21_c00473{left:200.475987px;}
.x6a_c00473{left:203.310000px;}
.x4c_c00473{left:205.068000px;}
.x27_c00473{left:207.504000px;}
.x55_c00473{left:209.095500px;}
.x11_c00473{left:210.789000px;}
.x6_c00473{left:213.300000px;}
.x16_c00473{left:217.093248px;}
.x79_c00473{left:219.513000px;}
.x70_c00473{left:220.860000px;}
.x46_c00473{left:225.006000px;}
.x56_c00473{left:226.425000px;}
.x3b_c00473{left:227.610000px;}
.x4d_c00473{left:229.903500px;}
.x77_c00473{left:231.663000px;}
.x51_c00473{left:233.010000px;}
.x47_c00473{left:238.518000px;}
.x71_c00473{left:240.030000px;}
.xa_c00473{left:242.190000px;}
.x1c_c00473{left:245.241000px;}
.x41_c00473{left:248.130000px;}
.x63_c00473{left:250.020000px;}
.x2d_c00473{left:252.298022px;}
.x5e_c00473{left:254.340000px;}
.x7e_c00473{left:255.420000px;}
.xb_c00473{left:257.310000px;}
.x22_c00473{left:258.569487px;}
.x7_c00473{left:260.010000px;}
.x57_c00473{left:262.069500px;}
.x28_c00473{left:263.385000px;}
.x33_c00473{left:266.220000px;}
.x1d_c00473{left:267.747000px;}
.x23_c00473{left:270.942987px;}
.x72_c00473{left:273.240000px;}
.x17_c00473{left:280.007802px;}
.x4e_c00473{left:281.160000px;}
.x48_c00473{left:282.250500px;}
.x7a_c00473{left:284.043000px;}
.x6b_c00473{left:285.660000px;}
.x18_c00473{left:288.649044px;}
.x58_c00473{left:290.064000px;}
.x2_c00473{left:291.870000px;}
.x5f_c00473{left:295.110000px;}
.x12_c00473{left:298.480500px;}
.x4f_c00473{left:299.850000px;}
.x3c_c00473{left:302.400000px;}
.x29_c00473{left:308.484000px;}
.x2e_c00473{left:310.115108px;}
.x7d_c00473{left:312.123000px;}
.x60_c00473{left:313.200000px;}
.x1e_c00473{left:314.947500px;}
.xc_c00473{left:316.170000px;}
.x59_c00473{left:317.898000px;}
.x53_c00473{left:320.677500px;}
.x76_c00473{left:321.942000px;}
.x66_c00473{left:323.221500px;}
.x13_c00473{left:327.118500px;}
.xd_c00473{left:330.210000px;}
.x36_c00473{left:331.830000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
.fs10_c00473{font-size:52.266667pt;}
.fse_c00473{font-size:53.200000pt;}
.fsd_c00473{font-size:55.066667pt;}
.fs6_c00473{font-size:55.071320pt;}
.fsa_c00473{font-size:56.933333pt;}
.fsf_c00473{font-size:57.866667pt;}
.fsb_c00473{font-size:58.800000pt;}
.fs8_c00473{font-size:58.803557pt;}
.fs3_c00473{font-size:58.804233pt;}
.fs2_c00473{font-size:59.733333pt;}
.fs5_c00473{font-size:60.671793pt;}
.fs12_c00473{font-size:61.600000pt;}
.fs7_c00473{font-size:61.603727pt;}
.fs11_c00473{font-size:62.533333pt;}
.fs4_c00473{font-size:62.537836pt;}
.fsc_c00473{font-size:64.400000pt;}
.fs9_c00473{font-size:65.333333pt;}
.fs1_c00473{font-size:76.533333pt;}
.fs0_c00473{font-size:77.466667pt;}
.y0_c00473{bottom:0.000000pt;}
.y77_c00473{bottom:31.582667pt;}
.y76_c00473{bottom:47.178667pt;}
.y75_c00473{bottom:61.570667pt;}
.y74_c00473{bottom:77.337333pt;}
.y73_c00473{bottom:90.813333pt;}
.y72_c00473{bottom:91.561333pt;}
.y71_c00473{bottom:92.189333pt;}
.y70_c00473{bottom:92.506667pt;}
.y6f_c00473{bottom:92.749333pt;}
.y6e_c00473{bottom:93.350667pt;}
.y6d_c00473{bottom:93.514667pt;}
.y6c_c00473{bottom:93.840000pt;}
.y6b_c00473{bottom:105.202667pt;}
.y6a_c00473{bottom:122.560000pt;}
.y69_c00473{bottom:137.758667pt;}
.y68_c00473{bottom:151.470667pt;}
.y67_c00473{bottom:164.701333pt;}
.y66_c00473{bottom:165.576000pt;}
.y65_c00473{bottom:166.421333pt;}
.y64_c00473{bottom:166.637333pt;}
.y63_c00473{bottom:167.814667pt;}
.y62_c00473{bottom:168.120000pt;}
.y61_c00473{bottom:168.480000pt;}
.y60_c00473{bottom:181.494667pt;}
.y5f_c00473{bottom:196.614667pt;}
.y5e_c00473{bottom:209.645333pt;}
.y5d_c00473{bottom:210.685333pt;}
.y5c_c00473{bottom:211.574667pt;}
.y5b_c00473{bottom:212.252000pt;}
.y5a_c00473{bottom:212.493333pt;}
.y59_c00473{bottom:212.764000pt;}
.y58_c00473{bottom:213.361333pt;}
.y57_c00473{bottom:226.018667pt;}
.y56_c00473{bottom:226.340000pt;}
.y55_c00473{bottom:226.664000pt;}
.y54_c00473{bottom:227.076000pt;}
.y53_c00473{bottom:228.034667pt;}
.y52_c00473{bottom:228.396000pt;}
.y51_c00473{bottom:228.561333pt;}
.y50_c00473{bottom:229.201333pt;}
.y4f_c00473{bottom:241.317333pt;}
.y4e_c00473{bottom:242.156000pt;}
.y4d_c00473{bottom:242.393333pt;}
.y4c_c00473{bottom:243.042667pt;}
.y4b_c00473{bottom:243.682667pt;}
.y4a_c00473{bottom:243.913333pt;}
.y49_c00473{bottom:244.321333pt;}
.y48_c00473{bottom:254.740000pt;}
.y47_c00473{bottom:255.878667pt;}
.y46_c00473{bottom:256.226667pt;}
.y45_c00473{bottom:256.490667pt;}
.y44_c00473{bottom:258.281333pt;}
.y43_c00473{bottom:259.444000pt;}
.y42_c00473{bottom:271.898667pt;}
.y41_c00473{bottom:286.418667pt;}
.y40_c00473{bottom:286.585333pt;}
.y3f_c00473{bottom:287.041333pt;}
.y3e_c00473{bottom:287.262667pt;}
.y3d_c00473{bottom:287.942667pt;}
.y3c_c00473{bottom:288.086667pt;}
.y3b_c00473{bottom:288.722667pt;}
.y3a_c00473{bottom:302.890667pt;}
.y39_c00473{bottom:316.460000pt;}
.y38_c00473{bottom:316.690667pt;}
.y37_c00473{bottom:317.196000pt;}
.y36_c00473{bottom:317.352000pt;}
.y35_c00473{bottom:317.692000pt;}
.y34_c00473{bottom:318.178667pt;}
.y33_c00473{bottom:318.714667pt;}
.y32_c00473{bottom:319.080000pt;}
.y31_c00473{bottom:319.441333pt;}
.y30_c00473{bottom:334.105333pt;}
.y2f_c00473{bottom:347.549333pt;}
.y2e_c00473{bottom:362.565333pt;}
.y2d_c00473{bottom:376.748000pt;}
.y2c_c00473{bottom:391.514647pt;}
.y2b_c00473{bottom:392.234655pt;}
.y2a_c00473{bottom:392.684605pt;}
.y29_c00473{bottom:392.953007pt;}
.y28_c00473{bottom:394.018092pt;}
.y27_c00473{bottom:394.373947pt;}
.y26_c00473{bottom:394.814571pt;}
.y25_c00473{bottom:406.392393pt;}
.y24_c00473{bottom:406.833361pt;}
.y23_c00473{bottom:407.379753pt;}
.y22_c00473{bottom:407.591115pt;}
.y21_c00473{bottom:408.032259pt;}
.y20_c00473{bottom:408.132021pt;}
.y1f_c00473{bottom:408.731697pt;}
.y1e_c00473{bottom:408.961333pt;}
.y1d_c00473{bottom:422.684497pt;}
.y1c_c00473{bottom:422.827480pt;}
.y1b_c00473{bottom:423.498783pt;}
.y1a_c00473{bottom:423.742697pt;}
.y19_c00473{bottom:424.057783pt;}
.y18_c00473{bottom:424.644083pt;}
.y17_c00473{bottom:425.280545pt;}
.y16_c00473{bottom:437.290555pt;}
.y15_c00473{bottom:437.835983pt;}
.y14_c00473{bottom:438.096052pt;}
.y13_c00473{bottom:439.012968pt;}
.y12_c00473{bottom:439.764940pt;}
.y11_c00473{bottom:440.401333pt;}
.y10_c00473{bottom:453.464960pt;}
.yf_c00473{bottom:453.465120pt;}
.ye_c00473{bottom:453.465445pt;}
.yd_c00473{bottom:453.465648pt;}
.yb_c00473{bottom:453.465675pt;}
.yc_c00473{bottom:453.465867pt;}
.ya_c00473{bottom:467.646053pt;}
.y9_c00473{bottom:467.951525pt;}
.y8_c00473{bottom:468.886901pt;}
.y7_c00473{bottom:469.132165pt;}
.y6_c00473{bottom:469.607717pt;}
.y5_c00473{bottom:470.166197pt;}
.y4_c00473{bottom:470.641333pt;}
.y3_c00473{bottom:483.525333pt;}
.y2_c00473{bottom:498.134667pt;}
.y1_c00473{bottom:509.498667pt;}
.h12_c00473{height:52.266667pt;}
.h10_c00473{height:53.200000pt;}
.hf_c00473{height:55.066667pt;}
.h8_c00473{height:55.071320pt;}
.hc_c00473{height:56.933333pt;}
.h11_c00473{height:57.866667pt;}
.hd_c00473{height:58.800000pt;}
.ha_c00473{height:58.803557pt;}
.h5_c00473{height:58.804233pt;}
.h4_c00473{height:59.733333pt;}
.h7_c00473{height:60.671793pt;}
.h14_c00473{height:61.600000pt;}
.h9_c00473{height:61.603727pt;}
.h13_c00473{height:62.533333pt;}
.h6_c00473{height:62.537836pt;}
.he_c00473{height:64.400000pt;}
.hb_c00473{height:65.333333pt;}
.h3_c00473{height:76.533333pt;}
.h2_c00473{height:77.466667pt;}
.h0_c00473{height:549.066667pt;}
.h1_c00473{height:549.333333pt;}
.w0_c00473{width:319.200000pt;}
.w1_c00473{width:319.333333pt;}
.x0_c00473{left:0.000000pt;}
.x7b_c00473{left:33.362667pt;}
.x6d_c00473{left:34.320000pt;}
.x64_c00473{left:35.344000pt;}
.x4a_c00473{left:36.353333pt;}
.x3d_c00473{left:38.160000pt;}
.x37_c00473{left:39.120000pt;}
.x19_c00473{left:40.662667pt;}
.x3_c00473{left:41.760000pt;}
.x6e_c00473{left:46.080000pt;}
.x7c_c00473{left:50.402667pt;}
.x61_c00473{left:53.760000pt;}
.x2f_c00473{left:58.560000pt;}
.x24_c00473{left:61.544000pt;}
.x3e_c00473{left:63.600000pt;}
.x42_c00473{left:67.052000pt;}
.x14_c00473{left:69.363317pt;}
.x6f_c00473{left:70.320000pt;}
.x2a_c00473{left:71.364605pt;}
.x62_c00473{left:73.200000pt;}
.x73_c00473{left:74.762667pt;}
.x5a_c00473{left:76.866667pt;}
.x65_c00473{left:79.722667pt;}
.xe_c00473{left:80.760000pt;}
.x54_c00473{left:86.746667pt;}
.x1a_c00473{left:89.616000pt;}
.x34_c00473{left:92.160000pt;}
.x67_c00473{left:93.360000pt;}
.x43_c00473{left:95.124000pt;}
.x2b_c00473{left:96.805103pt;}
.x52_c00473{left:98.670667pt;}
.x4b_c00473{left:99.934667pt;}
.x4_c00473{left:101.520000pt;}
.x49_c00473{left:105.120000pt;}
.x38_c00473{left:107.280000pt;}
.x30_c00473{left:108.720000pt;}
.x5b_c00473{left:110.945333pt;}
.x1_c00473{left:114.000000pt;}
.x15_c00473{left:116.166053pt;}
.x39_c00473{left:117.120000pt;}
.x78_c00473{left:118.802667pt;}
.x50_c00473{left:119.760000pt;}
.x31_c00473{left:120.960000pt;}
.x3f_c00473{left:122.880000pt;}
.x25_c00473{left:125.129333pt;}
.xf_c00473{left:127.300000pt;}
.x8_c00473{left:131.280000pt;}
.x68_c00473{left:132.240000pt;}
.x1f_c00473{left:135.200877pt;}
.x44_c00473{left:136.400000pt;}
.x6c_c00473{left:140.400000pt;}
.x9_c00473{left:142.080000pt;}
.x3a_c00473{left:143.280000pt;}
.x74_c00473{left:145.096000pt;}
.x1b_c00473{left:147.460000pt;}
.x40_c00473{left:151.680000pt;}
.x5d_c00473{left:153.600000pt;}
.x5c_c00473{left:156.069333pt;}
.x35_c00473{left:157.680000pt;}
.x20_c00473{left:159.438211pt;}
.x69_c00473{left:161.280000pt;}
.x5_c00473{left:163.920000pt;}
.x26_c00473{left:165.233333pt;}
.x10_c00473{left:166.929333pt;}
.x75_c00473{left:171.486667pt;}
.x2c_c00473{left:172.901261pt;}
.x45_c00473{left:173.884000pt;}
.x32_c00473{left:175.200000pt;}
.x21_c00473{left:178.200877pt;}
.x6a_c00473{left:180.720000pt;}
.x4c_c00473{left:182.282667pt;}
.x27_c00473{left:184.448000pt;}
.x55_c00473{left:185.862667pt;}
.x11_c00473{left:187.368000pt;}
.x6_c00473{left:189.600000pt;}
.x16_c00473{left:192.971776pt;}
.x79_c00473{left:195.122667pt;}
.x70_c00473{left:196.320000pt;}
.x46_c00473{left:200.005333pt;}
.x56_c00473{left:201.266667pt;}
.x3b_c00473{left:202.320000pt;}
.x4d_c00473{left:204.358667pt;}
.x77_c00473{left:205.922667pt;}
.x51_c00473{left:207.120000pt;}
.x47_c00473{left:212.016000pt;}
.x71_c00473{left:213.360000pt;}
.xa_c00473{left:215.280000pt;}
.x1c_c00473{left:217.992000pt;}
.x41_c00473{left:220.560000pt;}
.x63_c00473{left:222.240000pt;}
.x2d_c00473{left:224.264908pt;}
.x5e_c00473{left:226.080000pt;}
.x7e_c00473{left:227.040000pt;}
.xb_c00473{left:228.720000pt;}
.x22_c00473{left:229.839544pt;}
.x7_c00473{left:231.120000pt;}
.x57_c00473{left:232.950667pt;}
.x28_c00473{left:234.120000pt;}
.x33_c00473{left:236.640000pt;}
.x1d_c00473{left:237.997333pt;}
.x23_c00473{left:240.838211pt;}
.x72_c00473{left:242.880000pt;}
.x17_c00473{left:248.895824pt;}
.x4e_c00473{left:249.920000pt;}
.x48_c00473{left:250.889333pt;}
.x7a_c00473{left:252.482667pt;}
.x6b_c00473{left:253.920000pt;}
.x18_c00473{left:256.576928pt;}
.x58_c00473{left:257.834667pt;}
.x2_c00473{left:259.440000pt;}
.x5f_c00473{left:262.320000pt;}
.x12_c00473{left:265.316000pt;}
.x4f_c00473{left:266.533333pt;}
.x3c_c00473{left:268.800000pt;}
.x29_c00473{left:274.208000pt;}
.x2e_c00473{left:275.657873pt;}
.x7d_c00473{left:277.442667pt;}
.x60_c00473{left:278.400000pt;}
.x1e_c00473{left:279.953333pt;}
.xc_c00473{left:281.040000pt;}
.x59_c00473{left:282.576000pt;}
.x53_c00473{left:285.046667pt;}
.x76_c00473{left:286.170667pt;}
.x66_c00473{left:287.308000pt;}
.x13_c00473{left:290.772000pt;}
.xd_c00473{left:293.520000pt;}
.x36_c00473{left:294.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00474 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00474 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00474 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00474 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00474{transform:matrix(0.112465,-0.002587,0.005748,0.249934,0,0);-ms-transform:matrix(0.112465,-0.002587,0.005748,0.249934,0,0);-webkit-transform:matrix(0.112465,-0.002587,0.005748,0.249934,0,0);}
.mcf_c00474{transform:matrix(0.117174,-0.002695,0.005748,0.249934,0,0);-ms-transform:matrix(0.117174,-0.002695,0.005748,0.249934,0,0);-webkit-transform:matrix(0.117174,-0.002695,0.005748,0.249934,0,0);}
.m3c_c00474{transform:matrix(0.125827,-0.002894,0.005748,0.249934,0,0);-ms-transform:matrix(0.125827,-0.002894,0.005748,0.249934,0,0);-webkit-transform:matrix(0.125827,-0.002894,0.005748,0.249934,0,0);}
.m5b_c00474{transform:matrix(0.137334,-0.003159,0.005748,0.249934,0,0);-ms-transform:matrix(0.137334,-0.003159,0.005748,0.249934,0,0);-webkit-transform:matrix(0.137334,-0.003159,0.005748,0.249934,0,0);}
.m36_c00474{transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);-ms-transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);-webkit-transform:matrix(0.137409,-0.003160,0.005748,0.249934,0,0);}
.m94_c00474{transform:matrix(0.144037,-0.003313,0.005748,0.249934,0,0);-ms-transform:matrix(0.144037,-0.003313,0.005748,0.249934,0,0);-webkit-transform:matrix(0.144037,-0.003313,0.005748,0.249934,0,0);}
.m8f_c00474{transform:matrix(0.146966,-0.003380,0.005748,0.249934,0,0);-ms-transform:matrix(0.146966,-0.003380,0.005748,0.249934,0,0);-webkit-transform:matrix(0.146966,-0.003380,0.005748,0.249934,0,0);}
.m1f_c00474{transform:matrix(0.152370,-0.003505,0.005748,0.249934,0,0);-ms-transform:matrix(0.152370,-0.003505,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152370,-0.003505,0.005748,0.249934,0,0);}
.me8_c00474{transform:matrix(0.152460,-0.003507,0.005748,0.249934,0,0);-ms-transform:matrix(0.152460,-0.003507,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152460,-0.003507,0.005748,0.249934,0,0);}
.m2b_c00474{transform:matrix(0.152515,-0.003508,0.005748,0.249934,0,0);-ms-transform:matrix(0.152515,-0.003508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152515,-0.003508,0.005748,0.249934,0,0);}
.m1c_c00474{transform:matrix(0.152705,-0.003512,0.005748,0.249934,0,0);-ms-transform:matrix(0.152705,-0.003512,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152705,-0.003512,0.005748,0.249934,0,0);}
.ma3_c00474{transform:matrix(0.154474,-0.003553,0.005748,0.249934,0,0);-ms-transform:matrix(0.154474,-0.003553,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154474,-0.003553,0.005748,0.249934,0,0);}
.m9f_c00474{transform:matrix(0.154594,-0.003556,0.005748,0.249934,0,0);-ms-transform:matrix(0.154594,-0.003556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154594,-0.003556,0.005748,0.249934,0,0);}
.m1a_c00474{transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);-ms-transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);}
.m12_c00474{transform:matrix(0.154724,-0.003559,0.005748,0.249934,0,0);-ms-transform:matrix(0.154724,-0.003559,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154724,-0.003559,0.005748,0.249934,0,0);}
.mcc_c00474{transform:matrix(0.155084,-0.003567,0.005748,0.249934,0,0);-ms-transform:matrix(0.155084,-0.003567,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155084,-0.003567,0.005748,0.249934,0,0);}
.mb5_c00474{transform:matrix(0.155314,-0.003572,0.005748,0.249934,0,0);-ms-transform:matrix(0.155314,-0.003572,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155314,-0.003572,0.005748,0.249934,0,0);}
.m93_c00474{transform:matrix(0.156289,-0.003595,0.005748,0.249934,0,0);-ms-transform:matrix(0.156289,-0.003595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156289,-0.003595,0.005748,0.249934,0,0);}
.m38_c00474{transform:matrix(0.157108,-0.003613,0.005748,0.249934,0,0);-ms-transform:matrix(0.157108,-0.003613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157108,-0.003613,0.005748,0.249934,0,0);}
.m4b_c00474{transform:matrix(0.157413,-0.003621,0.005748,0.249934,0,0);-ms-transform:matrix(0.157413,-0.003621,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157413,-0.003621,0.005748,0.249934,0,0);}
.m18_c00474{transform:matrix(0.157858,-0.003631,0.005748,0.249934,0,0);-ms-transform:matrix(0.157858,-0.003631,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157858,-0.003631,0.005748,0.249934,0,0);}
.m50_c00474{transform:matrix(0.158013,-0.003634,0.005748,0.249934,0,0);-ms-transform:matrix(0.158013,-0.003634,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158013,-0.003634,0.005748,0.249934,0,0);}
.mb1_c00474{transform:matrix(0.158458,-0.003645,0.005748,0.249934,0,0);-ms-transform:matrix(0.158458,-0.003645,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158458,-0.003645,0.005748,0.249934,0,0);}
.m82_c00474{transform:matrix(0.158748,-0.003651,0.005748,0.249934,0,0);-ms-transform:matrix(0.158748,-0.003651,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158748,-0.003651,0.005748,0.249934,0,0);}
.m79_c00474{transform:matrix(0.159058,-0.003658,0.005748,0.249934,0,0);-ms-transform:matrix(0.159058,-0.003658,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159058,-0.003658,0.005748,0.249934,0,0);}
.m4e_c00474{transform:matrix(0.159333,-0.003665,0.005748,0.249934,0,0);-ms-transform:matrix(0.159333,-0.003665,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159333,-0.003665,0.005748,0.249934,0,0);}
.m4a_c00474{transform:matrix(0.159398,-0.003666,0.005748,0.249934,0,0);-ms-transform:matrix(0.159398,-0.003666,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159398,-0.003666,0.005748,0.249934,0,0);}
.m7d_c00474{transform:matrix(0.159473,-0.003668,0.005748,0.249934,0,0);-ms-transform:matrix(0.159473,-0.003668,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159473,-0.003668,0.005748,0.249934,0,0);}
.ma8_c00474{transform:matrix(0.159503,-0.003669,0.005748,0.249934,0,0);-ms-transform:matrix(0.159503,-0.003669,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159503,-0.003669,0.005748,0.249934,0,0);}
.m59_c00474{transform:matrix(0.160223,-0.003685,0.005748,0.249934,0,0);-ms-transform:matrix(0.160223,-0.003685,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160223,-0.003685,0.005748,0.249934,0,0);}
.md6_c00474{transform:matrix(0.160538,-0.003692,0.005748,0.249934,0,0);-ms-transform:matrix(0.160538,-0.003692,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160538,-0.003692,0.005748,0.249934,0,0);}
.m40_c00474{transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);-ms-transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160727,-0.003697,0.005748,0.249934,0,0);}
.m7b_c00474{transform:matrix(0.161232,-0.003708,0.005748,0.249934,0,0);-ms-transform:matrix(0.161232,-0.003708,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161232,-0.003708,0.005748,0.249934,0,0);}
.ma0_c00474{transform:matrix(0.161287,-0.003710,0.005748,0.249934,0,0);-ms-transform:matrix(0.161287,-0.003710,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161287,-0.003710,0.005748,0.249934,0,0);}
.m1b_c00474{transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);-ms-transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161957,-0.003725,0.005748,0.249934,0,0);}
.mb3_c00474{transform:matrix(0.162317,-0.003733,0.005748,0.249934,0,0);-ms-transform:matrix(0.162317,-0.003733,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162317,-0.003733,0.005748,0.249934,0,0);}
.mbd_c00474{transform:matrix(0.162647,-0.003741,0.005748,0.249934,0,0);-ms-transform:matrix(0.162647,-0.003741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162647,-0.003741,0.005748,0.249934,0,0);}
.m19_c00474{transform:matrix(0.162662,-0.003741,0.005748,0.249934,0,0);-ms-transform:matrix(0.162662,-0.003741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162662,-0.003741,0.005748,0.249934,0,0);}
.mca_c00474{transform:matrix(0.162702,-0.003742,0.005748,0.249934,0,0);-ms-transform:matrix(0.162702,-0.003742,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162702,-0.003742,0.005748,0.249934,0,0);}
.m72_c00474{transform:matrix(0.162787,-0.003744,0.005748,0.249934,0,0);-ms-transform:matrix(0.162787,-0.003744,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162787,-0.003744,0.005748,0.249934,0,0);}
.m46_c00474{transform:matrix(0.163592,-0.003763,0.005748,0.249934,0,0);-ms-transform:matrix(0.163592,-0.003763,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163592,-0.003763,0.005748,0.249934,0,0);}
.m86_c00474{transform:matrix(0.164991,-0.003795,0.005748,0.249934,0,0);-ms-transform:matrix(0.164991,-0.003795,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164991,-0.003795,0.005748,0.249934,0,0);}
.m63_c00474{transform:matrix(0.165171,-0.003799,0.005748,0.249934,0,0);-ms-transform:matrix(0.165171,-0.003799,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165171,-0.003799,0.005748,0.249934,0,0);}
.m66_c00474{transform:matrix(0.167876,-0.003861,0.005748,0.249934,0,0);-ms-transform:matrix(0.167876,-0.003861,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167876,-0.003861,0.005748,0.249934,0,0);}
.m20_c00474{transform:matrix(0.168076,-0.003866,0.005748,0.249934,0,0);-ms-transform:matrix(0.168076,-0.003866,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168076,-0.003866,0.005748,0.249934,0,0);}
.m90_c00474{transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);-ms-transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168365,-0.003872,0.005748,0.249934,0,0);}
.m74_c00474{transform:matrix(0.168670,-0.003879,0.005748,0.249934,0,0);-ms-transform:matrix(0.168670,-0.003879,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168670,-0.003879,0.005748,0.249934,0,0);}
.m91_c00474{transform:matrix(0.168690,-0.003880,0.005748,0.249934,0,0);-ms-transform:matrix(0.168690,-0.003880,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168690,-0.003880,0.005748,0.249934,0,0);}
.m95_c00474{transform:matrix(0.169280,-0.003893,0.005748,0.249934,0,0);-ms-transform:matrix(0.169280,-0.003893,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169280,-0.003893,0.005748,0.249934,0,0);}
.m42_c00474{transform:matrix(0.169480,-0.003898,0.005748,0.249934,0,0);-ms-transform:matrix(0.169480,-0.003898,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169480,-0.003898,0.005748,0.249934,0,0);}
.m54_c00474{transform:matrix(0.169675,-0.003903,0.005748,0.249934,0,0);-ms-transform:matrix(0.169675,-0.003903,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169675,-0.003903,0.005748,0.249934,0,0);}
.m35_c00474{transform:matrix(0.170230,-0.003915,0.005748,0.249934,0,0);-ms-transform:matrix(0.170230,-0.003915,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170230,-0.003915,0.005748,0.249934,0,0);}
.maf_c00474{transform:matrix(0.170335,-0.003918,0.005748,0.249934,0,0);-ms-transform:matrix(0.170335,-0.003918,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170335,-0.003918,0.005748,0.249934,0,0);}
.mbb_c00474{transform:matrix(0.170420,-0.003920,0.005748,0.249934,0,0);-ms-transform:matrix(0.170420,-0.003920,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170420,-0.003920,0.005748,0.249934,0,0);}
.m9d_c00474{transform:matrix(0.170870,-0.003930,0.005748,0.249934,0,0);-ms-transform:matrix(0.170870,-0.003930,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170870,-0.003930,0.005748,0.249934,0,0);}
.m43_c00474{transform:matrix(0.170920,-0.003931,0.005748,0.249934,0,0);-ms-transform:matrix(0.170920,-0.003931,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170920,-0.003931,0.005748,0.249934,0,0);}
.m73_c00474{transform:matrix(0.171135,-0.003936,0.005748,0.249934,0,0);-ms-transform:matrix(0.171135,-0.003936,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171135,-0.003936,0.005748,0.249934,0,0);}
.mf0_c00474{transform:matrix(0.171173,-0.004964,0.007247,0.249895,0,0);-ms-transform:matrix(0.171173,-0.004964,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171173,-0.004964,0.007247,0.249895,0,0);}
.m0_c00474{transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171365,0.000000,0.000000,0.250000,0,0);}
.m83_c00474{transform:matrix(0.171415,-0.003943,0.005748,0.249934,0,0);-ms-transform:matrix(0.171415,-0.003943,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171415,-0.003943,0.005748,0.249934,0,0);}
.mb_c00474{transform:matrix(0.171880,-0.003953,0.005748,0.249934,0,0);-ms-transform:matrix(0.171880,-0.003953,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171880,-0.003953,0.005748,0.249934,0,0);}
.m7a_c00474{transform:matrix(0.172124,-0.003959,0.005748,0.249934,0,0);-ms-transform:matrix(0.172124,-0.003959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172124,-0.003959,0.005748,0.249934,0,0);}
.mc4_c00474{transform:matrix(0.172184,-0.003960,0.005748,0.249934,0,0);-ms-transform:matrix(0.172184,-0.003960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172184,-0.003960,0.005748,0.249934,0,0);}
.ma1_c00474{transform:matrix(0.172264,-0.003962,0.005748,0.249934,0,0);-ms-transform:matrix(0.172264,-0.003962,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172264,-0.003962,0.005748,0.249934,0,0);}
.m23_c00474{transform:matrix(0.173389,-0.003988,0.005748,0.249934,0,0);-ms-transform:matrix(0.173389,-0.003988,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173389,-0.003988,0.005748,0.249934,0,0);}
.m37_c00474{transform:matrix(0.173429,-0.003989,0.005748,0.249934,0,0);-ms-transform:matrix(0.173429,-0.003989,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173429,-0.003989,0.005748,0.249934,0,0);}
.meb_c00474{transform:matrix(0.173554,-0.003992,0.005748,0.249934,0,0);-ms-transform:matrix(0.173554,-0.003992,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173554,-0.003992,0.005748,0.249934,0,0);}
.m33_c00474{transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);-ms-transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173769,-0.003997,0.005748,0.249934,0,0);}
.m5e_c00474{transform:matrix(0.173794,-0.003997,0.005748,0.249934,0,0);-ms-transform:matrix(0.173794,-0.003997,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173794,-0.003997,0.005748,0.249934,0,0);}
.m51_c00474{transform:matrix(0.173854,-0.003999,0.005748,0.249934,0,0);-ms-transform:matrix(0.173854,-0.003999,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173854,-0.003999,0.005748,0.249934,0,0);}
.m13_c00474{transform:matrix(0.173939,-0.004001,0.005748,0.249934,0,0);-ms-transform:matrix(0.173939,-0.004001,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173939,-0.004001,0.005748,0.249934,0,0);}
.m9e_c00474{transform:matrix(0.174309,-0.004009,0.005748,0.249934,0,0);-ms-transform:matrix(0.174309,-0.004009,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174309,-0.004009,0.005748,0.249934,0,0);}
.m7f_c00474{transform:matrix(0.174394,-0.004011,0.005748,0.249934,0,0);-ms-transform:matrix(0.174394,-0.004011,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174394,-0.004011,0.005748,0.249934,0,0);}
.m61_c00474{transform:matrix(0.174589,-0.004016,0.005748,0.249934,0,0);-ms-transform:matrix(0.174589,-0.004016,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174589,-0.004016,0.005748,0.249934,0,0);}
.m15_c00474{transform:matrix(0.174659,-0.004017,0.005748,0.249934,0,0);-ms-transform:matrix(0.174659,-0.004017,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174659,-0.004017,0.005748,0.249934,0,0);}
.mac_c00474{transform:matrix(0.175039,-0.004026,0.005748,0.249934,0,0);-ms-transform:matrix(0.175039,-0.004026,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175039,-0.004026,0.005748,0.249934,0,0);}
.m48_c00474{transform:matrix(0.175054,-0.004026,0.005748,0.249934,0,0);-ms-transform:matrix(0.175054,-0.004026,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175054,-0.004026,0.005748,0.249934,0,0);}
.mad_c00474{transform:matrix(0.175514,-0.004037,0.005748,0.249934,0,0);-ms-transform:matrix(0.175514,-0.004037,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175514,-0.004037,0.005748,0.249934,0,0);}
.mc9_c00474{transform:matrix(0.175584,-0.004038,0.005748,0.249934,0,0);-ms-transform:matrix(0.175584,-0.004038,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175584,-0.004038,0.005748,0.249934,0,0);}
.m98_c00474{transform:matrix(0.175789,-0.004043,0.005748,0.249934,0,0);-ms-transform:matrix(0.175789,-0.004043,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175789,-0.004043,0.005748,0.249934,0,0);}
.m99_c00474{transform:matrix(0.176023,-0.004049,0.005748,0.249934,0,0);-ms-transform:matrix(0.176023,-0.004049,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176023,-0.004049,0.005748,0.249934,0,0);}
.m2d_c00474{transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);-ms-transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);}
.ma9_c00474{transform:matrix(0.177218,-0.004076,0.005748,0.249934,0,0);-ms-transform:matrix(0.177218,-0.004076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177218,-0.004076,0.005748,0.249934,0,0);}
.m49_c00474{transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);-ms-transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177343,-0.004079,0.005748,0.249934,0,0);}
.mcd_c00474{transform:matrix(0.177483,-0.004082,0.005748,0.249934,0,0);-ms-transform:matrix(0.177483,-0.004082,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177483,-0.004082,0.005748,0.249934,0,0);}
.m6a_c00474{transform:matrix(0.177668,-0.004086,0.005748,0.249934,0,0);-ms-transform:matrix(0.177668,-0.004086,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177668,-0.004086,0.005748,0.249934,0,0);}
.me1_c00474{transform:matrix(0.177933,-0.004092,0.005748,0.249934,0,0);-ms-transform:matrix(0.177933,-0.004092,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177933,-0.004092,0.005748,0.249934,0,0);}
.mf5_c00474{transform:matrix(0.177950,-0.005161,0.007247,0.249895,0,0);-ms-transform:matrix(0.177950,-0.005161,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177950,-0.005161,0.007247,0.249895,0,0);}
.m5_c00474{transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);-ms-transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178333,-0.004102,0.005748,0.249934,0,0);}
.m56_c00474{transform:matrix(0.178463,-0.004105,0.005748,0.249934,0,0);-ms-transform:matrix(0.178463,-0.004105,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178463,-0.004105,0.005748,0.249934,0,0);}
.mb2_c00474{transform:matrix(0.179548,-0.004130,0.005748,0.249934,0,0);-ms-transform:matrix(0.179548,-0.004130,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179548,-0.004130,0.005748,0.249934,0,0);}
.m3d_c00474{transform:matrix(0.179747,-0.004134,0.005748,0.249934,0,0);-ms-transform:matrix(0.179747,-0.004134,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179747,-0.004134,0.005748,0.249934,0,0);}
.m81_c00474{transform:matrix(0.180107,-0.004142,0.005748,0.249934,0,0);-ms-transform:matrix(0.180107,-0.004142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180107,-0.004142,0.005748,0.249934,0,0);}
.med_c00474{transform:matrix(0.180347,-0.004148,0.005748,0.249934,0,0);-ms-transform:matrix(0.180347,-0.004148,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180347,-0.004148,0.005748,0.249934,0,0);}
.m53_c00474{transform:matrix(0.180912,-0.004161,0.005748,0.249934,0,0);-ms-transform:matrix(0.180912,-0.004161,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180912,-0.004161,0.005748,0.249934,0,0);}
.m1e_c00474{transform:matrix(0.180927,-0.004161,0.005748,0.249934,0,0);-ms-transform:matrix(0.180927,-0.004161,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180927,-0.004161,0.005748,0.249934,0,0);}
.mcb_c00474{transform:matrix(0.181697,-0.004179,0.005748,0.249934,0,0);-ms-transform:matrix(0.181697,-0.004179,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181697,-0.004179,0.005748,0.249934,0,0);}
.mea_c00474{transform:matrix(0.181837,-0.004182,0.005748,0.249934,0,0);-ms-transform:matrix(0.181837,-0.004182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181837,-0.004182,0.005748,0.249934,0,0);}
.m9_c00474{transform:matrix(0.181847,-0.004182,0.005748,0.249934,0,0);-ms-transform:matrix(0.181847,-0.004182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181847,-0.004182,0.005748,0.249934,0,0);}
.m69_c00474{transform:matrix(0.182232,-0.004191,0.005748,0.249934,0,0);-ms-transform:matrix(0.182232,-0.004191,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182232,-0.004191,0.005748,0.249934,0,0);}
.ma_c00474{transform:matrix(0.182472,-0.004197,0.005748,0.249934,0,0);-ms-transform:matrix(0.182472,-0.004197,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182472,-0.004197,0.005748,0.249934,0,0);}
.mc6_c00474{transform:matrix(0.182477,-0.004197,0.005748,0.249934,0,0);-ms-transform:matrix(0.182477,-0.004197,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182477,-0.004197,0.005748,0.249934,0,0);}
.mab_c00474{transform:matrix(0.182657,-0.004201,0.005748,0.249934,0,0);-ms-transform:matrix(0.182657,-0.004201,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182657,-0.004201,0.005748,0.249934,0,0);}
.m92_c00474{transform:matrix(0.182717,-0.004202,0.005748,0.249934,0,0);-ms-transform:matrix(0.182717,-0.004202,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182717,-0.004202,0.005748,0.249934,0,0);}
.m45_c00474{transform:matrix(0.183262,-0.004215,0.005748,0.249934,0,0);-ms-transform:matrix(0.183262,-0.004215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183262,-0.004215,0.005748,0.249934,0,0);}
.m5c_c00474{transform:matrix(0.183277,-0.004215,0.005748,0.249934,0,0);-ms-transform:matrix(0.183277,-0.004215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183277,-0.004215,0.005748,0.249934,0,0);}
.m39_c00474{transform:matrix(0.183761,-0.004227,0.005748,0.249934,0,0);-ms-transform:matrix(0.183761,-0.004227,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183761,-0.004227,0.005748,0.249934,0,0);}
.m76_c00474{transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-ms-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);}
.m3f_c00474{transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);-ms-transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183986,-0.004232,0.005748,0.249934,0,0);}
.m9a_c00474{transform:matrix(0.184106,-0.004234,0.005748,0.249934,0,0);-ms-transform:matrix(0.184106,-0.004234,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184106,-0.004234,0.005748,0.249934,0,0);}
.m24_c00474{transform:matrix(0.184151,-0.004235,0.005748,0.249934,0,0);-ms-transform:matrix(0.184151,-0.004235,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184151,-0.004235,0.005748,0.249934,0,0);}
.mc5_c00474{transform:matrix(0.184156,-0.004236,0.005748,0.249934,0,0);-ms-transform:matrix(0.184156,-0.004236,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184156,-0.004236,0.005748,0.249934,0,0);}
.mee_c00474{transform:matrix(0.184596,-0.004246,0.005748,0.249934,0,0);-ms-transform:matrix(0.184596,-0.004246,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184596,-0.004246,0.005748,0.249934,0,0);}
.m6c_c00474{transform:matrix(0.184681,-0.004248,0.005748,0.249934,0,0);-ms-transform:matrix(0.184681,-0.004248,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184681,-0.004248,0.005748,0.249934,0,0);}
.m2f_c00474{transform:matrix(0.184696,-0.004248,0.005748,0.249934,0,0);-ms-transform:matrix(0.184696,-0.004248,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184696,-0.004248,0.005748,0.249934,0,0);}
.mec_c00474{transform:matrix(0.184726,-0.004249,0.005748,0.249934,0,0);-ms-transform:matrix(0.184726,-0.004249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184726,-0.004249,0.005748,0.249934,0,0);}
.m8_c00474{transform:matrix(0.184811,-0.004251,0.005748,0.249934,0,0);-ms-transform:matrix(0.184811,-0.004251,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184811,-0.004251,0.005748,0.249934,0,0);}
.m4f_c00474{transform:matrix(0.184911,-0.004253,0.005748,0.249934,0,0);-ms-transform:matrix(0.184911,-0.004253,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184911,-0.004253,0.005748,0.249934,0,0);}
.m21_c00474{transform:matrix(0.185271,-0.004261,0.005748,0.249934,0,0);-ms-transform:matrix(0.185271,-0.004261,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185271,-0.004261,0.005748,0.249934,0,0);}
.m14_c00474{transform:matrix(0.185571,-0.004268,0.005748,0.249934,0,0);-ms-transform:matrix(0.185571,-0.004268,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185571,-0.004268,0.005748,0.249934,0,0);}
.m3a_c00474{transform:matrix(0.185721,-0.004272,0.005748,0.249934,0,0);-ms-transform:matrix(0.185721,-0.004272,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185721,-0.004272,0.005748,0.249934,0,0);}
.m52_c00474{transform:matrix(0.186881,-0.004298,0.005748,0.249934,0,0);-ms-transform:matrix(0.186881,-0.004298,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186881,-0.004298,0.005748,0.249934,0,0);}
.m44_c00474{transform:matrix(0.187011,-0.004301,0.005748,0.249934,0,0);-ms-transform:matrix(0.187011,-0.004301,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187011,-0.004301,0.005748,0.249934,0,0);}
.mb0_c00474{transform:matrix(0.187185,-0.004305,0.005748,0.249934,0,0);-ms-transform:matrix(0.187185,-0.004305,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187185,-0.004305,0.005748,0.249934,0,0);}
.m7e_c00474{transform:matrix(0.187465,-0.004312,0.005748,0.249934,0,0);-ms-transform:matrix(0.187465,-0.004312,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187465,-0.004312,0.005748,0.249934,0,0);}
.mb6_c00474{transform:matrix(0.188070,-0.004326,0.005748,0.249934,0,0);-ms-transform:matrix(0.188070,-0.004326,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188070,-0.004326,0.005748,0.249934,0,0);}
.me_c00474{transform:matrix(0.188110,-0.004327,0.005748,0.249934,0,0);-ms-transform:matrix(0.188110,-0.004327,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188110,-0.004327,0.005748,0.249934,0,0);}
.mdc_c00474{transform:matrix(0.188340,-0.004332,0.005748,0.249934,0,0);-ms-transform:matrix(0.188340,-0.004332,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188340,-0.004332,0.005748,0.249934,0,0);}
.m65_c00474{transform:matrix(0.188785,-0.004342,0.005748,0.249934,0,0);-ms-transform:matrix(0.188785,-0.004342,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188785,-0.004342,0.005748,0.249934,0,0);}
.maa_c00474{transform:matrix(0.189060,-0.004348,0.005748,0.249934,0,0);-ms-transform:matrix(0.189060,-0.004348,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189060,-0.004348,0.005748,0.249934,0,0);}
.me4_c00474{transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-ms-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);}
.mf_c00474{transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);-ms-transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);}
.mc3_c00474{transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);-ms-transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189850,-0.004367,0.005748,0.249934,0,0);}
.mdf_c00474{transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);-ms-transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);}
.md2_c00474{transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-ms-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);}
.mb9_c00474{transform:matrix(0.190325,-0.004377,0.005748,0.249934,0,0);-ms-transform:matrix(0.190325,-0.004377,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190325,-0.004377,0.005748,0.249934,0,0);}
.m3e_c00474{transform:matrix(0.190710,-0.004386,0.005748,0.249934,0,0);-ms-transform:matrix(0.190710,-0.004386,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190710,-0.004386,0.005748,0.249934,0,0);}
.m80_c00474{transform:matrix(0.190959,-0.004392,0.005748,0.249934,0,0);-ms-transform:matrix(0.190959,-0.004392,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190959,-0.004392,0.005748,0.249934,0,0);}
.m4d_c00474{transform:matrix(0.191214,-0.004398,0.005748,0.249934,0,0);-ms-transform:matrix(0.191214,-0.004398,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191214,-0.004398,0.005748,0.249934,0,0);}
.m22_c00474{transform:matrix(0.191479,-0.004404,0.005748,0.249934,0,0);-ms-transform:matrix(0.191479,-0.004404,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191479,-0.004404,0.005748,0.249934,0,0);}
.mc_c00474{transform:matrix(0.191734,-0.004410,0.005748,0.249934,0,0);-ms-transform:matrix(0.191734,-0.004410,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191734,-0.004410,0.005748,0.249934,0,0);}
.mb7_c00474{transform:matrix(0.191964,-0.004415,0.005748,0.249934,0,0);-ms-transform:matrix(0.191964,-0.004415,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191964,-0.004415,0.005748,0.249934,0,0);}
.m2e_c00474{transform:matrix(0.193004,-0.004439,0.005748,0.249934,0,0);-ms-transform:matrix(0.193004,-0.004439,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193004,-0.004439,0.005748,0.249934,0,0);}
.m1d_c00474{transform:matrix(0.193384,-0.004448,0.005748,0.249934,0,0);-ms-transform:matrix(0.193384,-0.004448,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193384,-0.004448,0.005748,0.249934,0,0);}
.m31_c00474{transform:matrix(0.193489,-0.004450,0.005748,0.249934,0,0);-ms-transform:matrix(0.193489,-0.004450,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193489,-0.004450,0.005748,0.249934,0,0);}
.m87_c00474{transform:matrix(0.194019,-0.004462,0.005748,0.249934,0,0);-ms-transform:matrix(0.194019,-0.004462,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194019,-0.004462,0.005748,0.249934,0,0);}
.m60_c00474{transform:matrix(0.194609,-0.004476,0.005748,0.249934,0,0);-ms-transform:matrix(0.194609,-0.004476,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194609,-0.004476,0.005748,0.249934,0,0);}
.m34_c00474{transform:matrix(0.194679,-0.004478,0.005748,0.249934,0,0);-ms-transform:matrix(0.194679,-0.004478,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194679,-0.004478,0.005748,0.249934,0,0);}
.me7_c00474{transform:matrix(0.195018,-0.004485,0.005748,0.249934,0,0);-ms-transform:matrix(0.195018,-0.004485,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195018,-0.004485,0.005748,0.249934,0,0);}
.m47_c00474{transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);-ms-transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195053,-0.004486,0.005748,0.249934,0,0);}
.md7_c00474{transform:matrix(0.195163,-0.004489,0.005748,0.249934,0,0);-ms-transform:matrix(0.195163,-0.004489,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195163,-0.004489,0.005748,0.249934,0,0);}
.m2c_c00474{transform:matrix(0.196448,-0.004518,0.005748,0.249934,0,0);-ms-transform:matrix(0.196448,-0.004518,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196448,-0.004518,0.005748,0.249934,0,0);}
.ma5_c00474{transform:matrix(0.196718,-0.004525,0.005748,0.249934,0,0);-ms-transform:matrix(0.196718,-0.004525,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196718,-0.004525,0.005748,0.249934,0,0);}
.m55_c00474{transform:matrix(0.196738,-0.004525,0.005748,0.249934,0,0);-ms-transform:matrix(0.196738,-0.004525,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196738,-0.004525,0.005748,0.249934,0,0);}
.m6f_c00474{transform:matrix(0.197333,-0.004539,0.005748,0.249934,0,0);-ms-transform:matrix(0.197333,-0.004539,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197333,-0.004539,0.005748,0.249934,0,0);}
.mc1_c00474{transform:matrix(0.197498,-0.004542,0.005748,0.249934,0,0);-ms-transform:matrix(0.197498,-0.004542,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197498,-0.004542,0.005748,0.249934,0,0);}
.m3b_c00474{transform:matrix(0.198123,-0.004557,0.005748,0.249934,0,0);-ms-transform:matrix(0.198123,-0.004557,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198123,-0.004557,0.005748,0.249934,0,0);}
.md_c00474{transform:matrix(0.198308,-0.004561,0.005748,0.249934,0,0);-ms-transform:matrix(0.198308,-0.004561,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198308,-0.004561,0.005748,0.249934,0,0);}
.m1_c00474{transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);-ms-transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198737,-0.004571,0.005748,0.249934,0,0);}
.m7_c00474{transform:matrix(0.198792,-0.004572,0.005748,0.249934,0,0);-ms-transform:matrix(0.198792,-0.004572,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198792,-0.004572,0.005748,0.249934,0,0);}
.me0_c00474{transform:matrix(0.199022,-0.004578,0.005748,0.249934,0,0);-ms-transform:matrix(0.199022,-0.004578,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199022,-0.004578,0.005748,0.249934,0,0);}
.mf4_c00474{transform:matrix(0.199191,-0.005777,0.007247,0.249895,0,0);-ms-transform:matrix(0.199191,-0.005777,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199191,-0.005777,0.007247,0.249895,0,0);}
.md4_c00474{transform:matrix(0.199312,-0.004584,0.005748,0.249934,0,0);-ms-transform:matrix(0.199312,-0.004584,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199312,-0.004584,0.005748,0.249934,0,0);}
.m8a_c00474{transform:matrix(0.200092,-0.004602,0.005748,0.249934,0,0);-ms-transform:matrix(0.200092,-0.004602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200092,-0.004602,0.005748,0.249934,0,0);}
.ma2_c00474{transform:matrix(0.200367,-0.004608,0.005748,0.249934,0,0);-ms-transform:matrix(0.200367,-0.004608,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200367,-0.004608,0.005748,0.249934,0,0);}
.m4c_c00474{transform:matrix(0.200762,-0.004618,0.005748,0.249934,0,0);-ms-transform:matrix(0.200762,-0.004618,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200762,-0.004618,0.005748,0.249934,0,0);}
.me6_c00474{transform:matrix(0.201337,-0.004631,0.005748,0.249934,0,0);-ms-transform:matrix(0.201337,-0.004631,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201337,-0.004631,0.005748,0.249934,0,0);}
.m6b_c00474{transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);-ms-transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201422,-0.004633,0.005748,0.249934,0,0);}
.md3_c00474{transform:matrix(0.201432,-0.004633,0.005748,0.249934,0,0);-ms-transform:matrix(0.201432,-0.004633,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201432,-0.004633,0.005748,0.249934,0,0);}
.ma6_c00474{transform:matrix(0.201707,-0.004639,0.005748,0.249934,0,0);-ms-transform:matrix(0.201707,-0.004639,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201707,-0.004639,0.005748,0.249934,0,0);}
.mb8_c00474{transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);-ms-transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202601,-0.004660,0.005748,0.249934,0,0);}
.m96_c00474{transform:matrix(0.202661,-0.004661,0.005748,0.249934,0,0);-ms-transform:matrix(0.202661,-0.004661,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202661,-0.004661,0.005748,0.249934,0,0);}
.mbf_c00474{transform:matrix(0.203026,-0.004670,0.005748,0.249934,0,0);-ms-transform:matrix(0.203026,-0.004670,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203026,-0.004670,0.005748,0.249934,0,0);}
.m30_c00474{transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);-ms-transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203201,-0.004674,0.005748,0.249934,0,0);}
.m58_c00474{transform:matrix(0.203981,-0.004692,0.005748,0.249934,0,0);-ms-transform:matrix(0.203981,-0.004692,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203981,-0.004692,0.005748,0.249934,0,0);}
.m7c_c00474{transform:matrix(0.204096,-0.004694,0.005748,0.249934,0,0);-ms-transform:matrix(0.204096,-0.004694,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204096,-0.004694,0.005748,0.249934,0,0);}
.m2_c00474{transform:matrix(0.204251,-0.004698,0.005748,0.249934,0,0);-ms-transform:matrix(0.204251,-0.004698,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204251,-0.004698,0.005748,0.249934,0,0);}
.mba_c00474{transform:matrix(0.205531,-0.004727,0.005748,0.249934,0,0);-ms-transform:matrix(0.205531,-0.004727,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205531,-0.004727,0.005748,0.249934,0,0);}
.m5f_c00474{transform:matrix(0.206085,-0.004740,0.005748,0.249934,0,0);-ms-transform:matrix(0.206085,-0.004740,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206085,-0.004740,0.005748,0.249934,0,0);}
.mae_c00474{transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);-ms-transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);}
.m5d_c00474{transform:matrix(0.206925,-0.004759,0.005748,0.249934,0,0);-ms-transform:matrix(0.206925,-0.004759,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206925,-0.004759,0.005748,0.249934,0,0);}
.ma7_c00474{transform:matrix(0.207260,-0.004767,0.005748,0.249934,0,0);-ms-transform:matrix(0.207260,-0.004767,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207260,-0.004767,0.005748,0.249934,0,0);}
.mc8_c00474{transform:matrix(0.207320,-0.004768,0.005748,0.249934,0,0);-ms-transform:matrix(0.207320,-0.004768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207320,-0.004768,0.005748,0.249934,0,0);}
.me2_c00474{transform:matrix(0.207530,-0.004773,0.005748,0.249934,0,0);-ms-transform:matrix(0.207530,-0.004773,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207530,-0.004773,0.005748,0.249934,0,0);}
.mbe_c00474{transform:matrix(0.208425,-0.004794,0.005748,0.249934,0,0);-ms-transform:matrix(0.208425,-0.004794,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208425,-0.004794,0.005748,0.249934,0,0);}
.m68_c00474{transform:matrix(0.208645,-0.004799,0.005748,0.249934,0,0);-ms-transform:matrix(0.208645,-0.004799,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208645,-0.004799,0.005748,0.249934,0,0);}
.m71_c00474{transform:matrix(0.208745,-0.004801,0.005748,0.249934,0,0);-ms-transform:matrix(0.208745,-0.004801,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208745,-0.004801,0.005748,0.249934,0,0);}
.m77_c00474{transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);-ms-transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209545,-0.004820,0.005748,0.249934,0,0);}
.me9_c00474{transform:matrix(0.210654,-0.004845,0.005748,0.249934,0,0);-ms-transform:matrix(0.210654,-0.004845,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210654,-0.004845,0.005748,0.249934,0,0);}
.mdb_c00474{transform:matrix(0.210684,-0.004846,0.005748,0.249934,0,0);-ms-transform:matrix(0.210684,-0.004846,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210684,-0.004846,0.005748,0.249934,0,0);}
.mef_c00474{transform:matrix(0.210716,-0.006111,0.007247,0.249895,0,0);-ms-transform:matrix(0.210716,-0.006111,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210716,-0.006111,0.007247,0.249895,0,0);}
.m9b_c00474{transform:matrix(0.210739,-0.004847,0.005748,0.249934,0,0);-ms-transform:matrix(0.210739,-0.004847,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210739,-0.004847,0.005748,0.249934,0,0);}
.mce_c00474{transform:matrix(0.211774,-0.004871,0.005748,0.249934,0,0);-ms-transform:matrix(0.211774,-0.004871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211774,-0.004871,0.005748,0.249934,0,0);}
.m41_c00474{transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-ms-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);}
.mbc_c00474{transform:matrix(0.212354,-0.004884,0.005748,0.249934,0,0);-ms-transform:matrix(0.212354,-0.004884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212354,-0.004884,0.005748,0.249934,0,0);}
.m8d_c00474{transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);-ms-transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);}
.m75_c00474{transform:matrix(0.213439,-0.004909,0.005748,0.249934,0,0);-ms-transform:matrix(0.213439,-0.004909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213439,-0.004909,0.005748,0.249934,0,0);}
.m9c_c00474{transform:matrix(0.213698,-0.004915,0.005748,0.249934,0,0);-ms-transform:matrix(0.213698,-0.004915,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213698,-0.004915,0.005748,0.249934,0,0);}
.mda_c00474{transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);-ms-transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);}
.mdd_c00474{transform:matrix(0.215248,-0.004951,0.005748,0.249934,0,0);-ms-transform:matrix(0.215248,-0.004951,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215248,-0.004951,0.005748,0.249934,0,0);}
.me5_c00474{transform:matrix(0.215473,-0.004956,0.005748,0.249934,0,0);-ms-transform:matrix(0.215473,-0.004956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215473,-0.004956,0.005748,0.249934,0,0);}
.m32_c00474{transform:matrix(0.215688,-0.004961,0.005748,0.249934,0,0);-ms-transform:matrix(0.215688,-0.004961,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215688,-0.004961,0.005748,0.249934,0,0);}
.m62_c00474{transform:matrix(0.215848,-0.004965,0.005748,0.249934,0,0);-ms-transform:matrix(0.215848,-0.004965,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215848,-0.004965,0.005748,0.249934,0,0);}
.mf1_c00474{transform:matrix(0.216404,-0.006276,0.007247,0.249895,0,0);-ms-transform:matrix(0.216404,-0.006276,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216404,-0.006276,0.007247,0.249895,0,0);}
.m97_c00474{transform:matrix(0.216748,-0.004985,0.005748,0.249934,0,0);-ms-transform:matrix(0.216748,-0.004985,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216748,-0.004985,0.005748,0.249934,0,0);}
.mc2_c00474{transform:matrix(0.217462,-0.005002,0.005748,0.249934,0,0);-ms-transform:matrix(0.217462,-0.005002,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217462,-0.005002,0.005748,0.249934,0,0);}
.m64_c00474{transform:matrix(0.218002,-0.005014,0.005748,0.249934,0,0);-ms-transform:matrix(0.218002,-0.005014,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218002,-0.005014,0.005748,0.249934,0,0);}
.me3_c00474{transform:matrix(0.218917,-0.005035,0.005748,0.249934,0,0);-ms-transform:matrix(0.218917,-0.005035,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218917,-0.005035,0.005748,0.249934,0,0);}
.m2a_c00474{transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);-ms-transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);}
.md5_c00474{transform:matrix(0.221806,-0.005102,0.005748,0.249934,0,0);-ms-transform:matrix(0.221806,-0.005102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221806,-0.005102,0.005748,0.249934,0,0);}
.m16_c00474{transform:matrix(0.222386,-0.005115,0.005748,0.249934,0,0);-ms-transform:matrix(0.222386,-0.005115,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222386,-0.005115,0.005748,0.249934,0,0);}
.m88_c00474{transform:matrix(0.222996,-0.005129,0.005748,0.249934,0,0);-ms-transform:matrix(0.222996,-0.005129,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222996,-0.005129,0.005748,0.249934,0,0);}
.m67_c00474{transform:matrix(0.223376,-0.005138,0.005748,0.249934,0,0);-ms-transform:matrix(0.223376,-0.005138,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223376,-0.005138,0.005748,0.249934,0,0);}
.mb4_c00474{transform:matrix(0.224251,-0.005158,0.005748,0.249934,0,0);-ms-transform:matrix(0.224251,-0.005158,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224251,-0.005158,0.005748,0.249934,0,0);}
.md8_c00474{transform:matrix(0.226560,-0.005211,0.005748,0.249934,0,0);-ms-transform:matrix(0.226560,-0.005211,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226560,-0.005211,0.005748,0.249934,0,0);}
.m8c_c00474{transform:matrix(0.227320,-0.005228,0.005748,0.249934,0,0);-ms-transform:matrix(0.227320,-0.005228,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227320,-0.005228,0.005748,0.249934,0,0);}
.m5a_c00474{transform:matrix(0.228690,-0.005260,0.005748,0.249934,0,0);-ms-transform:matrix(0.228690,-0.005260,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228690,-0.005260,0.005748,0.249934,0,0);}
.mde_c00474{transform:matrix(0.229804,-0.005285,0.005748,0.249934,0,0);-ms-transform:matrix(0.229804,-0.005285,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229804,-0.005285,0.005748,0.249934,0,0);}
.m85_c00474{transform:matrix(0.231124,-0.005316,0.005748,0.249934,0,0);-ms-transform:matrix(0.231124,-0.005316,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231124,-0.005316,0.005748,0.249934,0,0);}
.m89_c00474{transform:matrix(0.233023,-0.005360,0.005748,0.249934,0,0);-ms-transform:matrix(0.233023,-0.005360,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233023,-0.005360,0.005748,0.249934,0,0);}
.ma4_c00474{transform:matrix(0.233488,-0.005370,0.005748,0.249934,0,0);-ms-transform:matrix(0.233488,-0.005370,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233488,-0.005370,0.005748,0.249934,0,0);}
.m57_c00474{transform:matrix(0.234478,-0.005393,0.005748,0.249934,0,0);-ms-transform:matrix(0.234478,-0.005393,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234478,-0.005393,0.005748,0.249934,0,0);}
.mf2_c00474{transform:matrix(0.235221,-0.006821,0.007247,0.249895,0,0);-ms-transform:matrix(0.235221,-0.006821,0.007247,0.249895,0,0);-webkit-transform:matrix(0.235221,-0.006821,0.007247,0.249895,0,0);}
.m8b_c00474{transform:matrix(0.235408,-0.005414,0.005748,0.249934,0,0);-ms-transform:matrix(0.235408,-0.005414,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235408,-0.005414,0.005748,0.249934,0,0);}
.mf3_c00474{transform:matrix(0.236745,-0.006866,0.007247,0.249895,0,0);-ms-transform:matrix(0.236745,-0.006866,0.007247,0.249895,0,0);-webkit-transform:matrix(0.236745,-0.006866,0.007247,0.249895,0,0);}
.m4_c00474{transform:matrix(0.237022,-0.005452,0.005748,0.249934,0,0);-ms-transform:matrix(0.237022,-0.005452,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237022,-0.005452,0.005748,0.249934,0,0);}
.m6_c00474{transform:matrix(0.243316,-0.005596,0.005748,0.249934,0,0);-ms-transform:matrix(0.243316,-0.005596,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243316,-0.005596,0.005748,0.249934,0,0);}
.m11_c00474{transform:matrix(0.245400,-0.005644,0.005748,0.249934,0,0);-ms-transform:matrix(0.245400,-0.005644,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245400,-0.005644,0.005748,0.249934,0,0);}
.mc0_c00474{transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);-ms-transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247335,-0.005689,0.005748,0.249934,0,0);}
.mc7_c00474{transform:matrix(0.248019,-0.005704,0.005748,0.249934,0,0);-ms-transform:matrix(0.248019,-0.005704,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248019,-0.005704,0.005748,0.249934,0,0);}
.md0_c00474{transform:matrix(0.249684,-0.005743,0.005748,0.249934,0,0);-ms-transform:matrix(0.249684,-0.005743,0.005748,0.249934,0,0);-webkit-transform:matrix(0.249684,-0.005743,0.005748,0.249934,0,0);}
.m78_c00474{transform:matrix(0.250204,-0.005755,0.005748,0.249934,0,0);-ms-transform:matrix(0.250204,-0.005755,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250204,-0.005755,0.005748,0.249934,0,0);}
.m10_c00474{transform:matrix(0.253233,-0.005824,0.005748,0.249934,0,0);-ms-transform:matrix(0.253233,-0.005824,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253233,-0.005824,0.005748,0.249934,0,0);}
.m28_c00474{transform:matrix(0.253658,-0.005834,0.005748,0.249934,0,0);-ms-transform:matrix(0.253658,-0.005834,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253658,-0.005834,0.005748,0.249934,0,0);}
.m8e_c00474{transform:matrix(0.254828,-0.005861,0.005748,0.249934,0,0);-ms-transform:matrix(0.254828,-0.005861,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254828,-0.005861,0.005748,0.249934,0,0);}
.m29_c00474{transform:matrix(0.255088,-0.005867,0.005748,0.249934,0,0);-ms-transform:matrix(0.255088,-0.005867,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255088,-0.005867,0.005748,0.249934,0,0);}
.m6d_c00474{transform:matrix(0.264525,-0.006084,0.005748,0.249934,0,0);-ms-transform:matrix(0.264525,-0.006084,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264525,-0.006084,0.005748,0.249934,0,0);}
.m25_c00474{transform:matrix(0.265030,-0.006096,0.005748,0.249934,0,0);-ms-transform:matrix(0.265030,-0.006096,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265030,-0.006096,0.005748,0.249934,0,0);}
.m3_c00474{transform:matrix(0.272693,-0.006272,0.005748,0.249934,0,0);-ms-transform:matrix(0.272693,-0.006272,0.005748,0.249934,0,0);-webkit-transform:matrix(0.272693,-0.006272,0.005748,0.249934,0,0);}
.m70_c00474{transform:matrix(0.288189,-0.006628,0.005748,0.249934,0,0);-ms-transform:matrix(0.288189,-0.006628,0.005748,0.249934,0,0);-webkit-transform:matrix(0.288189,-0.006628,0.005748,0.249934,0,0);}
.m84_c00474{transform:matrix(0.327693,-0.007537,0.005748,0.249934,0,0);-ms-transform:matrix(0.327693,-0.007537,0.005748,0.249934,0,0);-webkit-transform:matrix(0.327693,-0.007537,0.005748,0.249934,0,0);}
.m17_c00474{transform:matrix(0.333932,-0.007680,0.005748,0.249934,0,0);-ms-transform:matrix(0.333932,-0.007680,0.005748,0.249934,0,0);-webkit-transform:matrix(0.333932,-0.007680,0.005748,0.249934,0,0);}
.m27_c00474{transform:matrix(0.352677,-0.008112,0.005748,0.249934,0,0);-ms-transform:matrix(0.352677,-0.008112,0.005748,0.249934,0,0);-webkit-transform:matrix(0.352677,-0.008112,0.005748,0.249934,0,0);}
.m26_c00474{transform:matrix(0.362069,-0.008328,0.005748,0.249934,0,0);-ms-transform:matrix(0.362069,-0.008328,0.005748,0.249934,0,0);-webkit-transform:matrix(0.362069,-0.008328,0.005748,0.249934,0,0);}
.md1_c00474{transform:matrix(0.436390,-0.010037,0.005748,0.249934,0,0);-ms-transform:matrix(0.436390,-0.010037,0.005748,0.249934,0,0);-webkit-transform:matrix(0.436390,-0.010037,0.005748,0.249934,0,0);}
.md9_c00474{transform:matrix(0.492960,-0.011338,0.005748,0.249934,0,0);-ms-transform:matrix(0.492960,-0.011338,0.005748,0.249934,0,0);-webkit-transform:matrix(0.492960,-0.011338,0.005748,0.249934,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:0.000000px;}
.fc0_c00474{color:transparent;}
.fse_c00474{font-size:58.815551px;}
.fs7_c00474{font-size:59.865828px;}
.fsf_c00474{font-size:59.875162px;}
.fs5_c00474{font-size:60.916106px;}
.fsc_c00474{font-size:61.966384px;}
.fs2_c00474{font-size:63.016661px;}
.fsd_c00474{font-size:64.066939px;}
.fs8_c00474{font-size:65.117217px;}
.fsb_c00474{font-size:66.167494px;}
.fs4_c00474{font-size:67.217772px;}
.fs1_c00474{font-size:68.268050px;}
.fs3_c00474{font-size:69.318327px;}
.fs6_c00474{font-size:70.368605px;}
.fsa_c00474{font-size:72.469160px;}
.fs9_c00474{font-size:73.519438px;}
.fs0_c00474{font-size:74.550000px;}
.y0_c00474{bottom:0.000000px;}
.yf1_c00474{bottom:32.953500px;}
.yf2_c00474{bottom:33.550929px;}
.yf3_c00474{bottom:34.154056px;}
.yf4_c00474{bottom:35.990061px;}
.yf5_c00474{bottom:36.704549px;}
.yf6_c00474{bottom:38.852230px;}
.yf7_c00474{bottom:40.968288px;}
.ye9_c00474{bottom:51.177186px;}
.yea_c00474{bottom:52.274913px;}
.yeb_c00474{bottom:53.039268px;}
.yec_c00474{bottom:53.368845px;}
.yed_c00474{bottom:53.863478px;}
.yee_c00474{bottom:54.649412px;}
.yef_c00474{bottom:55.858136px;}
.yf0_c00474{bottom:57.007575px;}
.ye1_c00474{bottom:67.650059px;}
.ye2_c00474{bottom:68.288123px;}
.ye3_c00474{bottom:69.536603px;}
.ye4_c00474{bottom:71.061996px;}
.ye5_c00474{bottom:71.444552px;}
.ye6_c00474{bottom:73.252688px;}
.ye7_c00474{bottom:73.791939px;}
.ye8_c00474{bottom:75.988650px;}
.ydb_c00474{bottom:84.392699px;}
.ydc_c00474{bottom:85.940064px;}
.ydd_c00474{bottom:86.458302px;}
.yde_c00474{bottom:88.059639px;}
.ydf_c00474{bottom:89.126145px;}
.ye0_c00474{bottom:90.636633px;}
.yd3_c00474{bottom:100.331514px;}
.yd4_c00474{bottom:101.658747px;}
.yd5_c00474{bottom:102.458513px;}
.yd6_c00474{bottom:103.895048px;}
.yd7_c00474{bottom:105.672321px;}
.yd8_c00474{bottom:106.413029px;}
.yd9_c00474{bottom:107.013422px;}
.yda_c00474{bottom:108.219072px;}
.ycc_c00474{bottom:118.962872px;}
.ycd_c00474{bottom:120.295295px;}
.yce_c00474{bottom:120.973365px;}
.ycf_c00474{bottom:121.565810px;}
.yd0_c00474{bottom:123.565608px;}
.yd1_c00474{bottom:125.080494px;}
.yd2_c00474{bottom:125.348583px;}
.yc4_c00474{bottom:134.091443px;}
.yc5_c00474{bottom:136.058955px;}
.yc6_c00474{bottom:136.618290px;}
.yc7_c00474{bottom:137.094197px;}
.yc8_c00474{bottom:138.256280px;}
.yc9_c00474{bottom:139.853754px;}
.yca_c00474{bottom:140.273036px;}
.ycb_c00474{bottom:142.343553px;}
.ybc_c00474{bottom:153.800834px;}
.ybd_c00474{bottom:154.506123px;}
.ybe_c00474{bottom:155.056187px;}
.ybf_c00474{bottom:156.290168px;}
.yc0_c00474{bottom:157.284884px;}
.yc1_c00474{bottom:158.978559px;}
.yc2_c00474{bottom:160.140266px;}
.yc3_c00474{bottom:160.530911px;}
.yb5_c00474{bottom:168.924350px;}
.yb6_c00474{bottom:169.723736px;}
.yb7_c00474{bottom:170.556186px;}
.yb8_c00474{bottom:171.746589px;}
.yb9_c00474{bottom:173.311692px;}
.yba_c00474{bottom:175.220225px;}
.ybb_c00474{bottom:176.305965px;}
.yae_c00474{bottom:185.670138px;}
.yaf_c00474{bottom:187.058532px;}
.yb0_c00474{bottom:187.722390px;}
.yb1_c00474{bottom:189.683124px;}
.yb2_c00474{bottom:190.421390px;}
.yb3_c00474{bottom:192.963657px;}
.yb4_c00474{bottom:193.619978px;}
.ya6_c00474{bottom:202.415864px;}
.ya7_c00474{bottom:203.444114px;}
.ya8_c00474{bottom:203.846486px;}
.ya9_c00474{bottom:204.668202px;}
.yaa_c00474{bottom:205.585941px;}
.yab_c00474{bottom:206.757302px;}
.yac_c00474{bottom:208.598523px;}
.yad_c00474{bottom:209.599883px;}
.y9f_c00474{bottom:220.779555px;}
.ya0_c00474{bottom:222.319083px;}
.ya1_c00474{bottom:222.840861px;}
.ya2_c00474{bottom:223.325690px;}
.ya3_c00474{bottom:224.015379px;}
.ya4_c00474{bottom:224.469572px;}
.ya5_c00474{bottom:226.512420px;}
.y97_c00474{bottom:238.332470px;}
.y98_c00474{bottom:238.643951px;}
.y99_c00474{bottom:239.944145px;}
.y9a_c00474{bottom:241.133744px;}
.y9b_c00474{bottom:241.697018px;}
.y9c_c00474{bottom:242.268917px;}
.y9d_c00474{bottom:243.399156px;}
.y9e_c00474{bottom:244.118136px;}
.y90_c00474{bottom:255.078778px;}
.y91_c00474{bottom:256.241092px;}
.y92_c00474{bottom:256.730814px;}
.y93_c00474{bottom:257.609843px;}
.y94_c00474{bottom:259.036053px;}
.y95_c00474{bottom:260.002610px;}
.y96_c00474{bottom:260.425952px;}
.y89_c00474{bottom:270.747105px;}
.y8a_c00474{bottom:272.814400px;}
.y8b_c00474{bottom:274.075170px;}
.y8c_c00474{bottom:274.627717px;}
.y8d_c00474{bottom:275.686860px;}
.y8e_c00474{bottom:276.261210px;}
.y8f_c00474{bottom:277.556030px;}
.y80_c00474{bottom:288.569947px;}
.y81_c00474{bottom:289.623957px;}
.y82_c00474{bottom:290.260344px;}
.y83_c00474{bottom:291.587490px;}
.y84_c00474{bottom:292.011943px;}
.y85_c00474{bottom:292.397136px;}
.y86_c00474{bottom:293.074578px;}
.y87_c00474{bottom:293.477400px;}
.y88_c00474{bottom:294.847740px;}
.y77_c00474{bottom:305.046949px;}
.y78_c00474{bottom:306.505965px;}
.y79_c00474{bottom:307.816119px;}
.y7a_c00474{bottom:308.247300px;}
.y7b_c00474{bottom:308.680206px;}
.y7c_c00474{bottom:309.321294px;}
.y7d_c00474{bottom:310.211410px;}
.y7e_c00474{bottom:310.717660px;}
.y7f_c00474{bottom:311.298358px;}
.y71_c00474{bottom:322.598703px;}
.y72_c00474{bottom:324.411986px;}
.y73_c00474{bottom:325.800978px;}
.y74_c00474{bottom:326.326936px;}
.y75_c00474{bottom:327.189384px;}
.y76_c00474{bottom:327.798590px;}
.y6a_c00474{bottom:338.810112px;}
.y6b_c00474{bottom:339.895572px;}
.y6c_c00474{bottom:341.750837px;}
.y6d_c00474{bottom:342.231132px;}
.y6e_c00474{bottom:344.651255px;}
.y6f_c00474{bottom:346.847597px;}
.y70_c00474{bottom:348.380307px;}
.y65_c00474{bottom:355.289406px;}
.y66_c00474{bottom:356.796215px;}
.y67_c00474{bottom:358.061958px;}
.y68_c00474{bottom:359.106491px;}
.y69_c00474{bottom:362.294714px;}
.y5b_c00474{bottom:372.019274px;}
.y5c_c00474{bottom:372.974376px;}
.y5d_c00474{bottom:373.554261px;}
.y5e_c00474{bottom:374.482664px;}
.y5f_c00474{bottom:375.786042px;}
.y60_c00474{bottom:376.353578px;}
.y61_c00474{bottom:377.653214px;}
.y62_c00474{bottom:378.789681px;}
.y63_c00474{bottom:379.420811px;}
.y64_c00474{bottom:380.253434px;}
.y54_c00474{bottom:389.575465px;}
.y55_c00474{bottom:390.775652px;}
.y56_c00474{bottom:391.923815px;}
.y57_c00474{bottom:392.650135px;}
.y58_c00474{bottom:393.542685px;}
.y59_c00474{bottom:395.495411px;}
.y5a_c00474{bottom:396.202758px;}
.y4d_c00474{bottom:405.775725px;}
.y4e_c00474{bottom:407.060133px;}
.y4f_c00474{bottom:408.816819px;}
.y50_c00474{bottom:409.274572px;}
.y51_c00474{bottom:410.014254px;}
.y52_c00474{bottom:410.501901px;}
.y53_c00474{bottom:411.521114px;}
.y45_c00474{bottom:424.135567px;}
.y46_c00474{bottom:424.533981px;}
.y47_c00474{bottom:425.057901px;}
.y48_c00474{bottom:425.455038px;}
.y49_c00474{bottom:426.413307px;}
.y4a_c00474{bottom:427.686215px;}
.y4b_c00474{bottom:428.246122px;}
.y4c_c00474{bottom:429.062927px;}
.y3e_c00474{bottom:439.799592px;}
.y3f_c00474{bottom:441.545082px;}
.y40_c00474{bottom:441.990360px;}
.y41_c00474{bottom:443.373531px;}
.y42_c00474{bottom:444.326432px;}
.y43_c00474{bottom:444.576120px;}
.y44_c00474{bottom:445.087296px;}
.y35_c00474{bottom:456.544165px;}
.y36_c00474{bottom:457.241341px;}
.y37_c00474{bottom:458.207687px;}
.y38_c00474{bottom:458.589981px;}
.y39_c00474{bottom:459.742453px;}
.y3a_c00474{bottom:460.216725px;}
.y3b_c00474{bottom:460.664155px;}
.y3c_c00474{bottom:461.086608px;}
.y3d_c00474{bottom:463.027957px;}
.y2c_c00474{bottom:474.907566px;}
.y2d_c00474{bottom:475.254403px;}
.y2e_c00474{bottom:476.031712px;}
.y2f_c00474{bottom:476.360953px;}
.y30_c00474{bottom:477.139263px;}
.y31_c00474{bottom:478.207963px;}
.y32_c00474{bottom:478.640401px;}
.y33_c00474{bottom:479.633920px;}
.y34_c00474{bottom:480.478095px;}
.y23_c00474{bottom:490.846017px;}
.y24_c00474{bottom:491.295355px;}
.y25_c00474{bottom:492.520564px;}
.y26_c00474{bottom:492.961984px;}
.y27_c00474{bottom:494.827736px;}
.y28_c00474{bottom:495.124666px;}
.y29_c00474{bottom:495.390805px;}
.y2a_c00474{bottom:496.217531px;}
.y2b_c00474{bottom:496.632075px;}
.y19_c00474{bottom:508.401601px;}
.y1a_c00474{bottom:508.871652px;}
.y1b_c00474{bottom:509.902026px;}
.y1c_c00474{bottom:510.323584px;}
.y1d_c00474{bottom:510.697479px;}
.y1e_c00474{bottom:511.182969px;}
.y1f_c00474{bottom:511.366759px;}
.y20_c00474{bottom:512.579647px;}
.y21_c00474{bottom:513.067345px;}
.y22_c00474{bottom:514.196033px;}
.y13_c00474{bottom:525.146454px;}
.y14_c00474{bottom:525.727896px;}
.y15_c00474{bottom:527.030835px;}
.y16_c00474{bottom:529.382632px;}
.y17_c00474{bottom:530.180635px;}
.y18_c00474{bottom:531.463702px;}
.yb_c00474{bottom:542.431593px;}
.yc_c00474{bottom:543.056573px;}
.yd_c00474{bottom:543.582065px;}
.ye_c00474{bottom:545.110132px;}
.yf_c00474{bottom:545.547522px;}
.y10_c00474{bottom:545.903313px;}
.y11_c00474{bottom:546.946602px;}
.y12_c00474{bottom:548.053393px;}
.y2_c00474{bottom:558.094500px;}
.y3_c00474{bottom:558.629422px;}
.y4_c00474{bottom:559.126223px;}
.y5_c00474{bottom:559.644792px;}
.y6_c00474{bottom:560.027569px;}
.y7_c00474{bottom:561.227928px;}
.y8_c00474{bottom:561.562026px;}
.y9_c00474{bottom:563.182698px;}
.ya_c00474{bottom:563.636200px;}
.y1_c00474{bottom:575.667000px;}
.h10_c00474{height:58.815551px;}
.h9_c00474{height:59.865828px;}
.h11_c00474{height:59.875162px;}
.h7_c00474{height:60.916106px;}
.he_c00474{height:61.966384px;}
.h4_c00474{height:63.016661px;}
.hf_c00474{height:64.066939px;}
.ha_c00474{height:65.117217px;}
.hd_c00474{height:66.167494px;}
.h6_c00474{height:67.217772px;}
.h3_c00474{height:68.268050px;}
.h5_c00474{height:69.318327px;}
.h8_c00474{height:70.368605px;}
.hc_c00474{height:72.469160px;}
.hb_c00474{height:73.519438px;}
.h2_c00474{height:74.550000px;}
.h0_c00474{height:617.700000px;}
.h1_c00474{height:618.000000px;}
.w0_c00474{width:359.100000px;}
.w1_c00474{width:359.250000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:15.123000px;}
.x43_c00474{left:16.195535px;}
.x52_c00474{left:17.364681px;}
.x5f_c00474{left:18.664014px;}
.x69_c00474{left:19.978248px;}
.x7d_c00474{left:21.961550px;}
.x74_c00474{left:23.868606px;}
.x27_c00474{left:32.641077px;}
.x1f_c00474{left:35.597894px;}
.x17_c00474{left:36.990089px;}
.x3_c00474{left:38.380500px;}
.x78_c00474{left:40.053272px;}
.x12_c00474{left:41.332896px;}
.x7f_c00474{left:42.655500px;}
.xb_c00474{left:45.792405px;}
.x4a_c00474{left:47.419998px;}
.x44_c00474{left:49.108481px;}
.x63_c00474{left:55.671585px;}
.x4_c00474{left:59.980500px;}
.x40_c00474{left:62.174676px;}
.x37_c00474{left:63.593852px;}
.x66_c00474{left:65.462931px;}
.x3b_c00474{left:69.194543px;}
.x56_c00474{left:70.638810px;}
.xc_c00474{left:72.098234px;}
.x71_c00474{left:73.339338px;}
.x4e_c00474{left:74.893079px;}
.x6a_c00474{left:76.245986px;}
.x77_c00474{left:78.078096px;}
.x79_c00474{left:80.305854px;}
.x5_c00474{left:82.527000px;}
.x38_c00474{left:84.514784px;}
.x18_c00474{left:86.030331px;}
.x28_c00474{left:87.994907px;}
.x51_c00474{left:90.247649px;}
.x20_c00474{left:91.282170px;}
.x57_c00474{left:92.909828px;}
.x5c_c00474{left:95.050349px;}
.x75_c00474{left:97.227998px;}
.x6_c00474{left:99.169500px;}
.x13_c00474{left:100.527242px;}
.x2e_c00474{left:104.304546px;}
.x19_c00474{left:106.120763px;}
.x60_c00474{left:108.286014px;}
.x21_c00474{left:111.322619px;}
.x48_c00474{left:115.120187px;}
.x6b_c00474{left:117.301328px;}
.x6c_c00474{left:118.486764px;}
.x33_c00474{left:119.667258px;}
.x1a_c00474{left:123.943090px;}
.x7e_c00474{left:125.314943px;}
.x29_c00474{left:126.924098px;}
.x61_c00474{left:129.365514px;}
.x58_c00474{left:132.890259px;}
.x39_c00474{left:134.922407px;}
.x7a_c00474{left:141.857538px;}
.x1_c00474{left:143.370000px;}
.x4f_c00474{left:144.534870px;}
.x45_c00474{left:146.037095px;}
.x1b_c00474{left:147.074160px;}
.xd_c00474{left:148.519512px;}
.x7_c00474{left:151.359000px;}
.x49_c00474{left:152.443409px;}
.x2f_c00474{left:154.412046px;}
.x1c_c00474{left:155.848074px;}
.x6d_c00474{left:158.276936px;}
.x62_c00474{left:159.352014px;}
.x3c_c00474{left:161.428904px;}
.x8_c00474{left:165.885000px;}
.x41_c00474{left:168.581828px;}
.xe_c00474{left:170.407530px;}
.x53_c00474{left:172.645074px;}
.x64_c00474{left:174.013992px;}
.x30_c00474{left:175.032546px;}
.x5d_c00474{left:178.505178px;}
.x2a_c00474{left:180.371289px;}
.x4b_c00474{left:183.259997px;}
.x34_c00474{left:185.547294px;}
.xf_c00474{left:188.225772px;}
.x3d_c00474{left:192.218679px;}
.x31_c00474{left:194.486046px;}
.x22_c00474{left:196.161585px;}
.x59_c00474{left:197.705243px;}
.x7b_c00474{left:200.178809px;}
.x2b_c00474{left:201.978772px;}
.x72_c00474{left:204.107801px;}
.x5e_c00474{left:205.719420px;}
.x14_c00474{left:207.412191px;}
.x23_c00474{left:209.658896px;}
.x3e_c00474{left:212.507196px;}
.x1d_c00474{left:213.606730px;}
.x54_c00474{left:215.040642px;}
.x7c_c00474{left:217.556100px;}
.x24_c00474{left:221.752172px;}
.x50_c00474{left:223.144782px;}
.x6e_c00474{left:226.042331px;}
.x35_c00474{left:230.892864px;}
.x4d_c00474{left:232.318341px;}
.x76_c00474{left:233.601195px;}
.x9_c00474{left:236.349000px;}
.x55_c00474{left:237.989573px;}
.x10_c00474{left:240.372360px;}
.x5a_c00474{left:241.621743px;}
.x15_c00474{left:243.674019px;}
.x4c_c00474{left:245.996678px;}
.x46_c00474{left:249.615812px;}
.x2c_c00474{left:251.635188px;}
.x3f_c00474{left:254.993730px;}
.xa_c00474{left:256.066500px;}
.x25_c00474{left:259.328034px;}
.x5b_c00474{left:260.876192px;}
.x67_c00474{left:262.306260px;}
.x73_c00474{left:264.687006px;}
.x36_c00474{left:267.106020px;}
.x42_c00474{left:270.925790px;}
.x6f_c00474{left:272.505692px;}
.x3a_c00474{left:274.331706px;}
.x65_c00474{left:275.549331px;}
.x26_c00474{left:278.199983px;}
.x68_c00474{left:284.186241px;}
.x70_c00474{left:288.119967px;}
.x1e_c00474{left:290.605284px;}
.x2d_c00474{left:293.819586px;}
.x11_c00474{left:295.736690px;}
.x32_c00474{left:297.260046px;}
.x80_c00474{left:298.426500px;}
.x47_c00474{left:300.076343px;}
.x16_c00474{left:302.004365px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fse_c00474{font-size:52.280489pt;}
.fs7_c00474{font-size:53.214070pt;}
.fsf_c00474{font-size:53.222366pt;}
.fs5_c00474{font-size:54.147650pt;}
.fsc_c00474{font-size:55.081230pt;}
.fs2_c00474{font-size:56.014810pt;}
.fsd_c00474{font-size:56.948390pt;}
.fs8_c00474{font-size:57.881970pt;}
.fsb_c00474{font-size:58.815551pt;}
.fs4_c00474{font-size:59.749131pt;}
.fs1_c00474{font-size:60.682711pt;}
.fs3_c00474{font-size:61.616291pt;}
.fs6_c00474{font-size:62.549871pt;}
.fsa_c00474{font-size:64.417032pt;}
.fs9_c00474{font-size:65.350612pt;}
.fs0_c00474{font-size:66.266667pt;}
.y0_c00474{bottom:0.000000pt;}
.yf1_c00474{bottom:29.292000pt;}
.yf2_c00474{bottom:29.823048pt;}
.yf3_c00474{bottom:30.359161pt;}
.yf4_c00474{bottom:31.991165pt;}
.yf5_c00474{bottom:32.626265pt;}
.yf6_c00474{bottom:34.535316pt;}
.yf7_c00474{bottom:36.416256pt;}
.ye9_c00474{bottom:45.490832pt;}
.yea_c00474{bottom:46.466589pt;}
.yeb_c00474{bottom:47.146016pt;}
.yec_c00474{bottom:47.438973pt;}
.yed_c00474{bottom:47.878647pt;}
.yee_c00474{bottom:48.577255pt;}
.yef_c00474{bottom:49.651676pt;}
.yf0_c00474{bottom:50.673400pt;}
.ye1_c00474{bottom:60.133385pt;}
.ye2_c00474{bottom:60.700553pt;}
.ye3_c00474{bottom:61.810313pt;}
.ye4_c00474{bottom:63.166219pt;}
.ye5_c00474{bottom:63.506268pt;}
.ye6_c00474{bottom:65.113500pt;}
.ye7_c00474{bottom:65.592835pt;}
.ye8_c00474{bottom:67.545467pt;}
.ydb_c00474{bottom:75.015732pt;}
.ydc_c00474{bottom:76.391168pt;}
.ydd_c00474{bottom:76.851824pt;}
.yde_c00474{bottom:78.275235pt;}
.ydf_c00474{bottom:79.223240pt;}
.ye0_c00474{bottom:80.565896pt;}
.yd3_c00474{bottom:89.183568pt;}
.yd4_c00474{bottom:90.363331pt;}
.yd5_c00474{bottom:91.074233pt;}
.yd6_c00474{bottom:92.351153pt;}
.yd7_c00474{bottom:93.930952pt;}
.yd8_c00474{bottom:94.589359pt;}
.yd9_c00474{bottom:95.123041pt;}
.yda_c00474{bottom:96.194731pt;}
.ycc_c00474{bottom:105.744775pt;}
.ycd_c00474{bottom:106.929151pt;}
.yce_c00474{bottom:107.531880pt;}
.ycf_c00474{bottom:108.058497pt;}
.yd0_c00474{bottom:109.836096pt;}
.yd1_c00474{bottom:111.182661pt;}
.yd2_c00474{bottom:111.420963pt;}
.yc4_c00474{bottom:119.192393pt;}
.yc5_c00474{bottom:120.941293pt;}
.yc6_c00474{bottom:121.438480pt;}
.yc7_c00474{bottom:121.861508pt;}
.yc8_c00474{bottom:122.894471pt;}
.yc9_c00474{bottom:124.314448pt;}
.yca_c00474{bottom:124.687143pt;}
.ycb_c00474{bottom:126.527603pt;}
.ybc_c00474{bottom:136.711852pt;}
.ybd_c00474{bottom:137.338776pt;}
.ybe_c00474{bottom:137.827721pt;}
.ybf_c00474{bottom:138.924593pt;}
.yc0_c00474{bottom:139.808785pt;}
.yc1_c00474{bottom:141.314275pt;}
.yc2_c00474{bottom:142.346903pt;}
.yc3_c00474{bottom:142.694143pt;}
.yb5_c00474{bottom:150.154977pt;}
.yb6_c00474{bottom:150.865543pt;}
.yb7_c00474{bottom:151.605499pt;}
.yb8_c00474{bottom:152.663635pt;}
.yb9_c00474{bottom:154.054837pt;}
.yba_c00474{bottom:155.751311pt;}
.ybb_c00474{bottom:156.716413pt;}
.yae_c00474{bottom:165.040123pt;}
.yaf_c00474{bottom:166.274251pt;}
.yb0_c00474{bottom:166.864347pt;}
.yb1_c00474{bottom:168.607221pt;}
.yb2_c00474{bottom:169.263457pt;}
.yb3_c00474{bottom:171.523251pt;}
.yb4_c00474{bottom:172.106647pt;}
.ya6_c00474{bottom:179.925212pt;}
.ya7_c00474{bottom:180.839212pt;}
.ya8_c00474{bottom:181.196876pt;}
.ya9_c00474{bottom:181.927291pt;}
.yaa_c00474{bottom:182.743059pt;}
.yab_c00474{bottom:183.784268pt;}
.yac_c00474{bottom:185.420909pt;}
.yad_c00474{bottom:186.311007pt;}
.y9f_c00474{bottom:196.248493pt;}
.ya0_c00474{bottom:197.616963pt;}
.ya1_c00474{bottom:198.080765pt;}
.ya2_c00474{bottom:198.511724pt;}
.ya3_c00474{bottom:199.124781pt;}
.ya4_c00474{bottom:199.528508pt;}
.ya5_c00474{bottom:201.344373pt;}
.y97_c00474{bottom:211.851084pt;}
.y98_c00474{bottom:212.127956pt;}
.y99_c00474{bottom:213.283684pt;}
.y9a_c00474{bottom:214.341105pt;}
.y9b_c00474{bottom:214.841793pt;}
.y9c_c00474{bottom:215.350148pt;}
.y9d_c00474{bottom:216.354805pt;}
.y9e_c00474{bottom:216.993899pt;}
.y90_c00474{bottom:226.736692pt;}
.y91_c00474{bottom:227.769860pt;}
.y92_c00474{bottom:228.205168pt;}
.y93_c00474{bottom:228.986527pt;}
.y94_c00474{bottom:230.254269pt;}
.y95_c00474{bottom:231.113431pt;}
.y96_c00474{bottom:231.489735pt;}
.y89_c00474{bottom:240.664093pt;}
.y8a_c00474{bottom:242.501689pt;}
.y8b_c00474{bottom:243.622373pt;}
.y8c_c00474{bottom:244.113527pt;}
.y8d_c00474{bottom:245.054987pt;}
.y8e_c00474{bottom:245.565520pt;}
.y8f_c00474{bottom:246.716471pt;}
.y80_c00474{bottom:256.506620pt;}
.y81_c00474{bottom:257.443517pt;}
.y82_c00474{bottom:258.009195pt;}
.y83_c00474{bottom:259.188880pt;}
.y84_c00474{bottom:259.566172pt;}
.y85_c00474{bottom:259.908565pt;}
.y86_c00474{bottom:260.510736pt;}
.y87_c00474{bottom:260.868800pt;}
.y88_c00474{bottom:262.086880pt;}
.y77_c00474{bottom:271.152844pt;}
.y78_c00474{bottom:272.449747pt;}
.y79_c00474{bottom:273.614328pt;}
.y7a_c00474{bottom:273.997600pt;}
.y7b_c00474{bottom:274.382405pt;}
.y7c_c00474{bottom:274.952261pt;}
.y7d_c00474{bottom:275.743476pt;}
.y7e_c00474{bottom:276.193476pt;}
.y7f_c00474{bottom:276.709652pt;}
.y71_c00474{bottom:286.754403pt;}
.y72_c00474{bottom:288.366209pt;}
.y73_c00474{bottom:289.600869pt;}
.y74_c00474{bottom:290.068388pt;}
.y75_c00474{bottom:290.835008pt;}
.y76_c00474{bottom:291.376524pt;}
.y6a_c00474{bottom:301.164544pt;}
.y6b_c00474{bottom:302.129397pt;}
.y6c_c00474{bottom:303.778521pt;}
.y6d_c00474{bottom:304.205451pt;}
.y6e_c00474{bottom:306.356671pt;}
.y6f_c00474{bottom:308.308975pt;}
.y70_c00474{bottom:309.671384pt;}
.y65_c00474{bottom:315.812805pt;}
.y66_c00474{bottom:317.152191pt;}
.y67_c00474{bottom:318.277296pt;}
.y68_c00474{bottom:319.205769pt;}
.y69_c00474{bottom:322.039745pt;}
.y5b_c00474{bottom:330.683799pt;}
.y5c_c00474{bottom:331.532779pt;}
.y5d_c00474{bottom:332.048232pt;}
.y5e_c00474{bottom:332.873479pt;}
.y5f_c00474{bottom:334.032037pt;}
.y60_c00474{bottom:334.536513pt;}
.y61_c00474{bottom:335.691745pt;}
.y62_c00474{bottom:336.701939pt;}
.y63_c00474{bottom:337.262943pt;}
.y64_c00474{bottom:338.003052pt;}
.y54_c00474{bottom:346.289303pt;}
.y55_c00474{bottom:347.356135pt;}
.y56_c00474{bottom:348.376724pt;}
.y57_c00474{bottom:349.022343pt;}
.y58_c00474{bottom:349.815720pt;}
.y59_c00474{bottom:351.551476pt;}
.y5a_c00474{bottom:352.180229pt;}
.y4d_c00474{bottom:360.689533pt;}
.y4e_c00474{bottom:361.831229pt;}
.y4f_c00474{bottom:363.392728pt;}
.y50_c00474{bottom:363.799620pt;}
.y51_c00474{bottom:364.457115pt;}
.y52_c00474{bottom:364.890579pt;}
.y53_c00474{bottom:365.796545pt;}
.y45_c00474{bottom:377.009393pt;}
.y46_c00474{bottom:377.363539pt;}
.y47_c00474{bottom:377.829245pt;}
.y48_c00474{bottom:378.182256pt;}
.y49_c00474{bottom:379.034051pt;}
.y4a_c00474{bottom:380.165524pt;}
.y4b_c00474{bottom:380.663220pt;}
.y4c_c00474{bottom:381.389268pt;}
.y3e_c00474{bottom:390.932971pt;}
.y3f_c00474{bottom:392.484517pt;}
.y40_c00474{bottom:392.880320pt;}
.y41_c00474{bottom:394.109805pt;}
.y42_c00474{bottom:394.956828pt;}
.y43_c00474{bottom:395.178773pt;}
.y44_c00474{bottom:395.633152pt;}
.y35_c00474{bottom:405.817036pt;}
.y36_c00474{bottom:406.436748pt;}
.y37_c00474{bottom:407.295721pt;}
.y38_c00474{bottom:407.635539pt;}
.y39_c00474{bottom:408.659959pt;}
.y3a_c00474{bottom:409.081533pt;}
.y3b_c00474{bottom:409.479249pt;}
.y3c_c00474{bottom:409.854763pt;}
.y3d_c00474{bottom:411.580407pt;}
.y2c_c00474{bottom:422.140059pt;}
.y2d_c00474{bottom:422.448359pt;}
.y2e_c00474{bottom:423.139300pt;}
.y2f_c00474{bottom:423.431959pt;}
.y30_c00474{bottom:424.123789pt;}
.y31_c00474{bottom:425.073745pt;}
.y32_c00474{bottom:425.458135pt;}
.y33_c00474{bottom:426.341263pt;}
.y34_c00474{bottom:427.091640pt;}
.y23_c00474{bottom:436.307571pt;}
.y24_c00474{bottom:436.706983pt;}
.y25_c00474{bottom:437.796057pt;}
.y26_c00474{bottom:438.188431pt;}
.y27_c00474{bottom:439.846876pt;}
.y28_c00474{bottom:440.110815pt;}
.y29_c00474{bottom:440.347383pt;}
.y2a_c00474{bottom:441.082249pt;}
.y2b_c00474{bottom:441.450733pt;}
.y19_c00474{bottom:451.912535pt;}
.y1a_c00474{bottom:452.330357pt;}
.y1b_c00474{bottom:453.246245pt;}
.y1c_c00474{bottom:453.620964pt;}
.y1d_c00474{bottom:453.953315pt;}
.y1e_c00474{bottom:454.384861pt;}
.y1f_c00474{bottom:454.548231pt;}
.y20_c00474{bottom:455.626353pt;}
.y21_c00474{bottom:456.059863pt;}
.y22_c00474{bottom:457.063140pt;}
.y13_c00474{bottom:466.796848pt;}
.y14_c00474{bottom:467.313685pt;}
.y15_c00474{bottom:468.471853pt;}
.y16_c00474{bottom:470.562340pt;}
.y17_c00474{bottom:471.271676pt;}
.y18_c00474{bottom:472.412180pt;}
.yb_c00474{bottom:482.161416pt;}
.yc_c00474{bottom:482.716953pt;}
.yd_c00474{bottom:483.184057pt;}
.ye_c00474{bottom:484.542340pt;}
.yf_c00474{bottom:484.931131pt;}
.y10_c00474{bottom:485.247389pt;}
.y11_c00474{bottom:486.174757pt;}
.y12_c00474{bottom:487.158572pt;}
.y2_c00474{bottom:496.084000pt;}
.y3_c00474{bottom:496.559487pt;}
.y4_c00474{bottom:497.001087pt;}
.y5_c00474{bottom:497.462037pt;}
.y6_c00474{bottom:497.802284pt;}
.y7_c00474{bottom:498.869269pt;}
.y8_c00474{bottom:499.166245pt;}
.y9_c00474{bottom:500.606843pt;}
.ya_c00474{bottom:501.009956pt;}
.y1_c00474{bottom:511.704000pt;}
.h10_c00474{height:52.280489pt;}
.h9_c00474{height:53.214070pt;}
.h11_c00474{height:53.222366pt;}
.h7_c00474{height:54.147650pt;}
.he_c00474{height:55.081230pt;}
.h4_c00474{height:56.014810pt;}
.hf_c00474{height:56.948390pt;}
.ha_c00474{height:57.881970pt;}
.hd_c00474{height:58.815551pt;}
.h6_c00474{height:59.749131pt;}
.h3_c00474{height:60.682711pt;}
.h5_c00474{height:61.616291pt;}
.h8_c00474{height:62.549871pt;}
.hc_c00474{height:64.417032pt;}
.hb_c00474{height:65.350612pt;}
.h2_c00474{height:66.266667pt;}
.h0_c00474{height:549.066667pt;}
.h1_c00474{height:549.333333pt;}
.w0_c00474{width:319.200000pt;}
.w1_c00474{width:319.333333pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:13.442667pt;}
.x43_c00474{left:14.396031pt;}
.x52_c00474{left:15.435272pt;}
.x5f_c00474{left:16.590235pt;}
.x69_c00474{left:17.758443pt;}
.x7d_c00474{left:19.521377pt;}
.x74_c00474{left:21.216539pt;}
.x27_c00474{left:29.014291pt;}
.x1f_c00474{left:31.642572pt;}
.x17_c00474{left:32.880079pt;}
.x3_c00474{left:34.116000pt;}
.x78_c00474{left:35.602908pt;}
.x12_c00474{left:36.740352pt;}
.x7f_c00474{left:37.916000pt;}
.xb_c00474{left:40.704360pt;}
.x4a_c00474{left:42.151109pt;}
.x44_c00474{left:43.651983pt;}
.x63_c00474{left:49.485853pt;}
.x4_c00474{left:53.316000pt;}
.x40_c00474{left:55.266379pt;}
.x37_c00474{left:56.527868pt;}
.x66_c00474{left:58.189272pt;}
.x3b_c00474{left:61.506260pt;}
.x56_c00474{left:62.790053pt;}
.xc_c00474{left:64.087319pt;}
.x71_c00474{left:65.190523pt;}
.x4e_c00474{left:66.571625pt;}
.x6a_c00474{left:67.774209pt;}
.x77_c00474{left:69.402752pt;}
.x79_c00474{left:71.382981pt;}
.x5_c00474{left:73.357333pt;}
.x38_c00474{left:75.124252pt;}
.x18_c00474{left:76.471405pt;}
.x28_c00474{left:78.217695pt;}
.x51_c00474{left:80.220132pt;}
.x20_c00474{left:81.139707pt;}
.x57_c00474{left:82.586513pt;}
.x5c_c00474{left:84.489199pt;}
.x75_c00474{left:86.424887pt;}
.x6_c00474{left:88.150667pt;}
.x13_c00474{left:89.357548pt;}
.x2e_c00474{left:92.715152pt;}
.x19_c00474{left:94.329567pt;}
.x60_c00474{left:96.254235pt;}
.x21_c00474{left:98.953439pt;}
.x48_c00474{left:102.329055pt;}
.x6b_c00474{left:104.267847pt;}
.x6c_c00474{left:105.321568pt;}
.x33_c00474{left:106.370896pt;}
.x1a_c00474{left:110.171636pt;}
.x7e_c00474{left:111.391060pt;}
.x29_c00474{left:112.821420pt;}
.x61_c00474{left:114.991568pt;}
.x58_c00474{left:118.124675pt;}
.x39_c00474{left:119.931028pt;}
.x7a_c00474{left:126.095589pt;}
.x1_c00474{left:127.440000pt;}
.x4f_c00474{left:128.475440pt;}
.x45_c00474{left:129.810751pt;}
.x1b_c00474{left:130.732587pt;}
.xd_c00474{left:132.017344pt;}
.x7_c00474{left:134.541333pt;}
.x49_c00474{left:135.505252pt;}
.x2f_c00474{left:137.255152pt;}
.x1c_c00474{left:138.531621pt;}
.x6d_c00474{left:140.690609pt;}
.x62_c00474{left:141.646235pt;}
.x3c_c00474{left:143.492359pt;}
.x8_c00474{left:147.453333pt;}
.x41_c00474{left:149.850513pt;}
.xe_c00474{left:151.473360pt;}
.x53_c00474{left:153.462288pt;}
.x64_c00474{left:154.679104pt;}
.x30_c00474{left:155.584485pt;}
.x5d_c00474{left:158.671269pt;}
.x2a_c00474{left:160.330035pt;}
.x4b_c00474{left:162.897775pt;}
.x34_c00474{left:164.930928pt;}
.xf_c00474{left:167.311797pt;}
.x3d_c00474{left:170.861048pt;}
.x31_c00474{left:172.876485pt;}
.x22_c00474{left:174.365853pt;}
.x59_c00474{left:175.737993pt;}
.x7b_c00474{left:177.936719pt;}
.x2b_c00474{left:179.536687pt;}
.x72_c00474{left:181.429156pt;}
.x5e_c00474{left:182.861707pt;}
.x14_c00474{left:184.366392pt;}
.x23_c00474{left:186.363463pt;}
.x3e_c00474{left:188.895285pt;}
.x1d_c00474{left:189.872649pt;}
.x54_c00474{left:191.147237pt;}
.x7c_c00474{left:193.383200pt;}
.x24_c00474{left:197.113041pt;}
.x50_c00474{left:198.350917pt;}
.x6e_c00474{left:200.926516pt;}
.x35_c00474{left:205.238101pt;}
.x4d_c00474{left:206.505192pt;}
.x76_c00474{left:207.645507pt;}
.x9_c00474{left:210.088000pt;}
.x55_c00474{left:211.546287pt;}
.x10_c00474{left:213.664320pt;}
.x5a_c00474{left:214.774883pt;}
.x15_c00474{left:216.599128pt;}
.x4c_c00474{left:218.663713pt;}
.x46_c00474{left:221.880721pt;}
.x2c_c00474{left:223.675723pt;}
.x3f_c00474{left:226.661093pt;}
.xa_c00474{left:227.614667pt;}
.x25_c00474{left:230.513808pt;}
.x5b_c00474{left:231.889948pt;}
.x67_c00474{left:233.161120pt;}
.x73_c00474{left:235.277339pt;}
.x36_c00474{left:237.427573pt;}
.x42_c00474{left:240.822924pt;}
.x6f_c00474{left:242.227281pt;}
.x3a_c00474{left:243.850405pt;}
.x65_c00474{left:244.932739pt;}
.x26_c00474{left:247.288873pt;}
.x68_c00474{left:252.609992pt;}
.x70_c00474{left:256.106637pt;}
.x1e_c00474{left:258.315808pt;}
.x2d_c00474{left:261.172965pt;}
.x11_c00474{left:262.877057pt;}
.x32_c00474{left:264.231152pt;}
.x80_c00474{left:265.268000pt;}
.x47_c00474{left:266.734527pt;}
.x16_c00474{left:268.448324pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00475 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00475 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00475 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00475 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00475{transform:matrix(0.012904,0.000155,-0.003000,0.249982,0,0);-ms-transform:matrix(0.012904,0.000155,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.012904,0.000155,-0.003000,0.249982,0,0);}
.mf8_c00475{transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);}
.mf5_c00475{transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);}
.mec_c00475{transform:matrix(0.061225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061225,0.000000,0.000000,0.250000,0,0);}
.m31_c00475{transform:matrix(0.100955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100955,0.000000,0.000000,0.250000,0,0);}
.m62_c00475{transform:matrix(0.134245,0.001611,-0.003000,0.249982,0,0);-ms-transform:matrix(0.134245,0.001611,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.134245,0.001611,-0.003000,0.249982,0,0);}
.m53_c00475{transform:matrix(0.139275,0.001671,-0.003000,0.249982,0,0);-ms-transform:matrix(0.139275,0.001671,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.139275,0.001671,-0.003000,0.249982,0,0);}
.mde_c00475{transform:matrix(0.143421,0.002008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143421,0.002008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143421,0.002008,-0.003500,0.249976,0,0);}
.m67_c00475{transform:matrix(0.148814,0.001786,-0.003000,0.249982,0,0);-ms-transform:matrix(0.148814,0.001786,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.148814,0.001786,-0.003000,0.249982,0,0);}
.m2_c00475{transform:matrix(0.149415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149415,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149855,0.000000,0.000000,0.250000,0,0);}
.mc5_c00475{transform:matrix(0.150055,0.002101,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150055,0.002101,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150055,0.002101,-0.003500,0.249976,0,0);}
.m7e_c00475{transform:matrix(0.151109,0.001813,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151109,0.001813,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151109,0.001813,-0.003000,0.249982,0,0);}
.m32_c00475{transform:matrix(0.152905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152905,0.000000,0.000000,0.250000,0,0);}
.m60_c00475{transform:matrix(0.154969,0.001860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154969,0.001860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154969,0.001860,-0.003000,0.249982,0,0);}
.mb7_c00475{transform:matrix(0.155045,0.002171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155045,0.002171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155045,0.002171,-0.003500,0.249976,0,0);}
.m68_c00475{transform:matrix(0.155239,0.001863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155239,0.001863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155239,0.001863,-0.003000,0.249982,0,0);}
.mb9_c00475{transform:matrix(0.155300,0.002174,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155300,0.002174,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155300,0.002174,-0.003500,0.249976,0,0);}
.mb0_c00475{transform:matrix(0.156030,0.002184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156030,0.002184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156030,0.002184,-0.003500,0.249976,0,0);}
.m7_c00475{transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157740,0.000000,0.000000,0.250000,0,0);}
.m71_c00475{transform:matrix(0.158479,0.001902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158479,0.001902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158479,0.001902,-0.003000,0.249982,0,0);}
.m2f_c00475{transform:matrix(0.159245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00475{transform:matrix(0.159469,0.001914,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159469,0.001914,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159469,0.001914,-0.003000,0.249982,0,0);}
.mb8_c00475{transform:matrix(0.160079,0.002241,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160079,0.002241,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160079,0.002241,-0.003500,0.249976,0,0);}
.m34_c00475{transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160385,0.000000,0.000000,0.250000,0,0);}
.m2e_c00475{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m99_c00475{transform:matrix(0.161324,0.002259,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161324,0.002259,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161324,0.002259,-0.003500,0.249976,0,0);}
.ma_c00475{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m4f_c00475{transform:matrix(0.162393,0.001949,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162393,0.001949,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162393,0.001949,-0.003000,0.249982,0,0);}
.m4_c00475{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m35_c00475{transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);}
.m5c_c00475{transform:matrix(0.165033,0.001980,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165033,0.001980,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165033,0.001980,-0.003000,0.249982,0,0);}
.m6f_c00475{transform:matrix(0.166023,0.001992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166023,0.001992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166023,0.001992,-0.003000,0.249982,0,0);}
.m27_c00475{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.mc_c00475{transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166430,0.000000,0.000000,0.250000,0,0);}
.mb3_c00475{transform:matrix(0.167099,0.002339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167099,0.002339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167099,0.002339,-0.003500,0.249976,0,0);}
.mae_c00475{transform:matrix(0.167789,0.002349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167789,0.002349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167789,0.002349,-0.003500,0.249976,0,0);}
.m0_c00475{transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168840,0.000000,0.000000,0.250000,0,0);}
.ma2_c00475{transform:matrix(0.170133,0.002382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170133,0.002382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170133,0.002382,-0.003500,0.249976,0,0);}
.m8c_c00475{transform:matrix(0.170513,0.002387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170513,0.002387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170513,0.002387,-0.003500,0.249976,0,0);}
.mb2_c00475{transform:matrix(0.171353,0.002399,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171353,0.002399,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171353,0.002399,-0.003500,0.249976,0,0);}
.m63_c00475{transform:matrix(0.171373,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171373,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171373,0.002056,-0.003000,0.249982,0,0);}
.m5e_c00475{transform:matrix(0.171738,0.002061,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171738,0.002061,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171738,0.002061,-0.003000,0.249982,0,0);}
.m89_c00475{transform:matrix(0.172368,0.002413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172368,0.002413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172368,0.002413,-0.003500,0.249976,0,0);}
.mc8_c00475{transform:matrix(0.172448,0.002414,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172448,0.002414,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172448,0.002414,-0.003500,0.249976,0,0);}
.m2c_c00475{transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172495,0.000000,0.000000,0.250000,0,0);}
.m73_c00475{transform:matrix(0.172888,0.002075,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172888,0.002075,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172888,0.002075,-0.003000,0.249982,0,0);}
.m3_c00475{transform:matrix(0.173280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173280,0.000000,0.000000,0.250000,0,0);}
.mb6_c00475{transform:matrix(0.173373,0.002427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173373,0.002427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173373,0.002427,-0.003500,0.249976,0,0);}
.m22_c00475{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m37_c00475{transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173745,0.000000,0.000000,0.250000,0,0);}
.m8a_c00475{transform:matrix(0.174073,0.002437,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174073,0.002437,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174073,0.002437,-0.003500,0.249976,0,0);}
.m88_c00475{transform:matrix(0.174428,0.002442,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174428,0.002442,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174428,0.002442,-0.003500,0.249976,0,0);}
.mb4_c00475{transform:matrix(0.175093,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175093,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175093,0.002451,-0.003500,0.249976,0,0);}
.m65_c00475{transform:matrix(0.175252,0.002103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175252,0.002103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175252,0.002103,-0.003000,0.249982,0,0);}
.m6d_c00475{transform:matrix(0.175292,0.002104,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175292,0.002104,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175292,0.002104,-0.003000,0.249982,0,0);}
.m14_c00475{transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);}
.m5b_c00475{transform:matrix(0.176267,0.002115,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176267,0.002115,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176267,0.002115,-0.003000,0.249982,0,0);}
.m7a_c00475{transform:matrix(0.176307,0.002116,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176307,0.002116,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176307,0.002116,-0.003000,0.249982,0,0);}
.m77_c00475{transform:matrix(0.176432,0.002117,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176432,0.002117,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176432,0.002117,-0.003000,0.249982,0,0);}
.m91_c00475{transform:matrix(0.176738,0.002474,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176738,0.002474,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176738,0.002474,-0.003500,0.249976,0,0);}
.m6e_c00475{transform:matrix(0.177057,0.002125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177057,0.002125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177057,0.002125,-0.003000,0.249982,0,0);}
.meb_c00475{transform:matrix(0.177088,0.002479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177088,0.002479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177088,0.002479,-0.003500,0.249976,0,0);}
.m5d_c00475{transform:matrix(0.177127,0.002126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177127,0.002126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177127,0.002126,-0.003000,0.249982,0,0);}
.m69_c00475{transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177327,0.002128,-0.003000,0.249982,0,0);}
.mab_c00475{transform:matrix(0.177863,0.002490,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177863,0.002490,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177863,0.002490,-0.003500,0.249976,0,0);}
.m4d_c00475{transform:matrix(0.178057,0.002137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178057,0.002137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178057,0.002137,-0.003000,0.249982,0,0);}
.m97_c00475{transform:matrix(0.178198,0.002495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178198,0.002495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178198,0.002495,-0.003500,0.249976,0,0);}
.mdb_c00475{transform:matrix(0.178258,0.002496,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178258,0.002496,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178258,0.002496,-0.003500,0.249976,0,0);}
.m79_c00475{transform:matrix(0.179057,0.002149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179057,0.002149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179057,0.002149,-0.003000,0.249982,0,0);}
.m50_c00475{transform:matrix(0.179947,0.002159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179947,0.002159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179947,0.002159,-0.003000,0.249982,0,0);}
.m7c_c00475{transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);}
.m98_c00475{transform:matrix(0.180377,0.002525,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180377,0.002525,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180377,0.002525,-0.003500,0.249976,0,0);}
.m6_c00475{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m5a_c00475{transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180892,0.002171,-0.003000,0.249982,0,0);}
.m8b_c00475{transform:matrix(0.180902,0.002533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180902,0.002533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180902,0.002533,-0.003500,0.249976,0,0);}
.m2d_c00475{transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);}
.mbc_c00475{transform:matrix(0.181637,0.002543,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181637,0.002543,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181637,0.002543,-0.003500,0.249976,0,0);}
.m96_c00475{transform:matrix(0.181752,0.002545,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181752,0.002545,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181752,0.002545,-0.003500,0.249976,0,0);}
.mbf_c00475{transform:matrix(0.181857,0.002546,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181857,0.002546,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181857,0.002546,-0.003500,0.249976,0,0);}
.mc3_c00475{transform:matrix(0.181917,0.002547,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181917,0.002547,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181917,0.002547,-0.003500,0.249976,0,0);}
.m81_c00475{transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182110,0.002367,-0.003250,0.249979,0,0);}
.m10_c00475{transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182320,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.m66_c00475{transform:matrix(0.182912,0.002195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182912,0.002195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182912,0.002195,-0.003000,0.249982,0,0);}
.m9d_c00475{transform:matrix(0.182922,0.002561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182922,0.002561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182922,0.002561,-0.003500,0.249976,0,0);}
.m8d_c00475{transform:matrix(0.183332,0.002567,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183332,0.002567,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183332,0.002567,-0.003500,0.249976,0,0);}
.md4_c00475{transform:matrix(0.183752,0.002573,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183752,0.002573,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183752,0.002573,-0.003500,0.249976,0,0);}
.m6a_c00475{transform:matrix(0.183772,0.002205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183772,0.002205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183772,0.002205,-0.003000,0.249982,0,0);}
.m8f_c00475{transform:matrix(0.184427,0.002582,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184427,0.002582,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184427,0.002582,-0.003500,0.249976,0,0);}
.m9a_c00475{transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184597,0.002584,-0.003500,0.249976,0,0);}
.ma4_c00475{transform:matrix(0.184947,0.002589,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184947,0.002589,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184947,0.002589,-0.003500,0.249976,0,0);}
.m83_c00475{transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185054,0.002406,-0.003250,0.249979,0,0);}
.m4b_c00475{transform:matrix(0.185167,0.002222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185167,0.002222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185167,0.002222,-0.003000,0.249982,0,0);}
.md7_c00475{transform:matrix(0.185697,0.002600,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185697,0.002600,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185697,0.002600,-0.003500,0.249976,0,0);}
.mc2_c00475{transform:matrix(0.185777,0.002601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185777,0.002601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185777,0.002601,-0.003500,0.249976,0,0);}
.m30_c00475{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186330,0.000000,0.000000,0.250000,0,0);}
.m5f_c00475{transform:matrix(0.186442,0.002237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186442,0.002237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186442,0.002237,-0.003000,0.249982,0,0);}
.m39_c00475{transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);}
.m7d_c00475{transform:matrix(0.187786,0.002253,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187786,0.002253,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187786,0.002253,-0.003000,0.249982,0,0);}
.m82_c00475{transform:matrix(0.187849,0.002442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187849,0.002442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187849,0.002442,-0.003250,0.249979,0,0);}
.m44_c00475{transform:matrix(0.187901,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187901,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187901,0.002255,-0.003000,0.249982,0,0);}
.m92_c00475{transform:matrix(0.188112,0.002634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188112,0.002634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188112,0.002634,-0.003500,0.249976,0,0);}
.mad_c00475{transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);}
.md_c00475{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.ma0_c00475{transform:matrix(0.188392,0.002637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188392,0.002637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188392,0.002637,-0.003500,0.249976,0,0);}
.m8_c00475{transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188715,0.000000,0.000000,0.250000,0,0);}
.m7b_c00475{transform:matrix(0.189136,0.002270,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189136,0.002270,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189136,0.002270,-0.003000,0.249982,0,0);}
.m64_c00475{transform:matrix(0.189396,0.002273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189396,0.002273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189396,0.002273,-0.003000,0.249982,0,0);}
.m24_c00475{transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);}
.m36_c00475{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.mb5_c00475{transform:matrix(0.189881,0.002658,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189881,0.002658,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189881,0.002658,-0.003500,0.249976,0,0);}
.mc9_c00475{transform:matrix(0.189886,0.002658,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189886,0.002658,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189886,0.002658,-0.003500,0.249976,0,0);}
.md2_c00475{transform:matrix(0.190221,0.002663,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190221,0.002663,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190221,0.002663,-0.003500,0.249976,0,0);}
.m43_c00475{transform:matrix(0.190596,0.002287,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190596,0.002287,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190596,0.002287,-0.003000,0.249982,0,0);}
.m9b_c00475{transform:matrix(0.190941,0.002673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190941,0.002673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190941,0.002673,-0.003500,0.249976,0,0);}
.m8e_c00475{transform:matrix(0.191091,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191091,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191091,0.002675,-0.003500,0.249976,0,0);}
.mea_c00475{transform:matrix(0.191426,0.002680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191426,0.002680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191426,0.002680,-0.003500,0.249976,0,0);}
.md9_c00475{transform:matrix(0.191966,0.002688,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191966,0.002688,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191966,0.002688,-0.003500,0.249976,0,0);}
.m61_c00475{transform:matrix(0.191991,0.002304,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191991,0.002304,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191991,0.002304,-0.003000,0.249982,0,0);}
.m15_c00475{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.md3_c00475{transform:matrix(0.192856,0.002700,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192856,0.002700,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192856,0.002700,-0.003500,0.249976,0,0);}
.m74_c00475{transform:matrix(0.192941,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192941,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192941,0.002315,-0.003000,0.249982,0,0);}
.m70_c00475{transform:matrix(0.193296,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193296,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193296,0.002320,-0.003000,0.249982,0,0);}
.m19_c00475{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m45_c00475{transform:matrix(0.194181,0.002330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194181,0.002330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194181,0.002330,-0.003000,0.249982,0,0);}
.m3b_c00475{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.md8_c00475{transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194426,0.002722,-0.003500,0.249976,0,0);}
.mac_c00475{transform:matrix(0.194636,0.002725,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194636,0.002725,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194636,0.002725,-0.003500,0.249976,0,0);}
.mf_c00475{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.m2a_c00475{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.maf_c00475{transform:matrix(0.195866,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195866,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195866,0.002742,-0.003500,0.249976,0,0);}
.mc4_c00475{transform:matrix(0.195976,0.002744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195976,0.002744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195976,0.002744,-0.003500,0.249976,0,0);}
.m93_c00475{transform:matrix(0.196296,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196296,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196296,0.002748,-0.003500,0.249976,0,0);}
.m3f_c00475{transform:matrix(0.196343,0.003534,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196343,0.003534,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196343,0.003534,-0.004499,0.249960,0,0);}
.m4e_c00475{transform:matrix(0.196871,0.002362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196871,0.002362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196871,0.002362,-0.003000,0.249982,0,0);}
.m3a_c00475{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m9f_c00475{transform:matrix(0.198026,0.002772,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198026,0.002772,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198026,0.002772,-0.003500,0.249976,0,0);}
.m4c_c00475{transform:matrix(0.198201,0.002378,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198201,0.002378,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198201,0.002378,-0.003000,0.249982,0,0);}
.m80_c00475{transform:matrix(0.198208,0.002577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198208,0.002577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198208,0.002577,-0.003250,0.249979,0,0);}
.m11_c00475{transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198305,0.000000,0.000000,0.250000,0,0);}
.m90_c00475{transform:matrix(0.198416,0.002778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198416,0.002778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198416,0.002778,-0.003500,0.249976,0,0);}
.ma7_c00475{transform:matrix(0.198501,0.002779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198501,0.002779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198501,0.002779,-0.003500,0.249976,0,0);}
.m1d_c00475{transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198515,0.000000,0.000000,0.250000,0,0);}
.mda_c00475{transform:matrix(0.199470,0.002793,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199470,0.002793,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199470,0.002793,-0.003500,0.249976,0,0);}
.m25_c00475{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.me7_c00475{transform:matrix(0.200035,0.002800,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200035,0.002800,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200035,0.002800,-0.003500,0.249976,0,0);}
.mb_c00475{transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200335,0.000000,0.000000,0.250000,0,0);}
.mef_c00475{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.mcd_c00475{transform:matrix(0.200625,0.002809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200625,0.002809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200625,0.002809,-0.003500,0.249976,0,0);}
.m2b_c00475{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m26_c00475{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.mdc_c00475{transform:matrix(0.202270,0.002832,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202270,0.002832,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202270,0.002832,-0.003500,0.249976,0,0);}
.m72_c00475{transform:matrix(0.202415,0.002429,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202415,0.002429,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202415,0.002429,-0.003000,0.249982,0,0);}
.m84_c00475{transform:matrix(0.202568,0.002633,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202568,0.002633,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202568,0.002633,-0.003250,0.249979,0,0);}
.m1e_c00475{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.ma5_c00475{transform:matrix(0.203130,0.002844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203130,0.002844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203130,0.002844,-0.003500,0.249976,0,0);}
.m78_c00475{transform:matrix(0.203545,0.002443,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203545,0.002443,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203545,0.002443,-0.003000,0.249982,0,0);}
.m6b_c00475{transform:matrix(0.203720,0.002445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203720,0.002445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203720,0.002445,-0.003000,0.249982,0,0);}
.m75_c00475{transform:matrix(0.203825,0.002446,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203825,0.002446,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203825,0.002446,-0.003000,0.249982,0,0);}
.m28_c00475{transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);}
.m9c_c00475{transform:matrix(0.204205,0.002859,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204205,0.002859,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204205,0.002859,-0.003500,0.249976,0,0);}
.m95_c00475{transform:matrix(0.204325,0.002861,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204325,0.002861,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204325,0.002861,-0.003500,0.249976,0,0);}
.m52_c00475{transform:matrix(0.204825,0.002458,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204825,0.002458,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204825,0.002458,-0.003000,0.249982,0,0);}
.md6_c00475{transform:matrix(0.204875,0.002868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204875,0.002868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204875,0.002868,-0.003500,0.249976,0,0);}
.m48_c00475{transform:matrix(0.205785,0.002469,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205785,0.002469,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205785,0.002469,-0.003000,0.249982,0,0);}
.m86_c00475{transform:matrix(0.205958,0.002677,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205958,0.002677,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205958,0.002677,-0.003250,0.249979,0,0);}
.m18_c00475{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.me8_c00475{transform:matrix(0.206670,0.002893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206670,0.002893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206670,0.002893,-0.003500,0.249976,0,0);}
.m59_c00475{transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206920,0.002483,-0.003000,0.249982,0,0);}
.m1c_c00475{transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206980,0.000000,0.000000,0.250000,0,0);}
.mce_c00475{transform:matrix(0.207020,0.002898,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207020,0.002898,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207020,0.002898,-0.003500,0.249976,0,0);}
.mbd_c00475{transform:matrix(0.207025,0.002898,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207025,0.002898,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207025,0.002898,-0.003500,0.249976,0,0);}
.mb1_c00475{transform:matrix(0.207965,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207965,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207965,0.002912,-0.003500,0.249976,0,0);}
.ma6_c00475{transform:matrix(0.208125,0.002914,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208125,0.002914,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208125,0.002914,-0.003500,0.249976,0,0);}
.me_c00475{transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208330,0.000000,0.000000,0.250000,0,0);}
.m46_c00475{transform:matrix(0.208785,0.002505,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208785,0.002505,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208785,0.002505,-0.003000,0.249982,0,0);}
.m38_c00475{transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);}
.md0_c00475{transform:matrix(0.209874,0.002938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209874,0.002938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209874,0.002938,-0.003500,0.249976,0,0);}
.m1f_c00475{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m7f_c00475{transform:matrix(0.210960,0.002532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210960,0.002532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210960,0.002532,-0.003000,0.249982,0,0);}
.m3e_c00475{transform:matrix(0.210961,0.003797,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210961,0.003797,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210961,0.003797,-0.004499,0.249960,0,0);}
.ma3_c00475{transform:matrix(0.210964,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210964,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210964,0.002954,-0.003500,0.249976,0,0);}
.mc7_c00475{transform:matrix(0.211904,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211904,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211904,0.002967,-0.003500,0.249976,0,0);}
.ma1_c00475{transform:matrix(0.212284,0.002972,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212284,0.002972,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212284,0.002972,-0.003500,0.249976,0,0);}
.m3d_c00475{transform:matrix(0.213250,0.003839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213250,0.003839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213250,0.003839,-0.004499,0.249960,0,0);}
.m76_c00475{transform:matrix(0.213880,0.002567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213880,0.002567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213880,0.002567,-0.003000,0.249982,0,0);}
.md1_c00475{transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213934,0.002995,-0.003500,0.249976,0,0);}
.m9e_c00475{transform:matrix(0.213969,0.002996,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213969,0.002996,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213969,0.002996,-0.003500,0.249976,0,0);}
.me5_c00475{transform:matrix(0.214774,0.003007,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214774,0.003007,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214774,0.003007,-0.003500,0.249976,0,0);}
.m29_c00475{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.me6_c00475{transform:matrix(0.215069,0.003011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215069,0.003011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215069,0.003011,-0.003500,0.249976,0,0);}
.mcf_c00475{transform:matrix(0.215394,0.003016,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215394,0.003016,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215394,0.003016,-0.003500,0.249976,0,0);}
.mba_c00475{transform:matrix(0.215704,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215704,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215704,0.003020,-0.003500,0.249976,0,0);}
.m1b_c00475{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.mdd_c00475{transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);}
.me9_c00475{transform:matrix(0.217149,0.003040,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217149,0.003040,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217149,0.003040,-0.003500,0.249976,0,0);}
.m51_c00475{transform:matrix(0.217854,0.002614,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217854,0.002614,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217854,0.002614,-0.003000,0.249982,0,0);}
.me0_c00475{transform:matrix(0.217879,0.003050,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217879,0.003050,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217879,0.003050,-0.003500,0.249976,0,0);}
.m49_c00475{transform:matrix(0.217884,0.002615,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217884,0.002615,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217884,0.002615,-0.003000,0.249982,0,0);}
.maa_c00475{transform:matrix(0.217979,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217979,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217979,0.003052,-0.003500,0.249976,0,0);}
.m17_c00475{transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);}
.m40_c00475{transform:matrix(0.219209,0.003946,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219209,0.003946,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219209,0.003946,-0.004499,0.249960,0,0);}
.m23_c00475{transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);}
.ma8_c00475{transform:matrix(0.219783,0.003077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219783,0.003077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219783,0.003077,-0.003500,0.249976,0,0);}
.m16_c00475{transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);}
.ma9_c00475{transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);}
.mbe_c00475{transform:matrix(0.220773,0.003091,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220773,0.003091,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220773,0.003091,-0.003500,0.249976,0,0);}
.m94_c00475{transform:matrix(0.221313,0.003098,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221313,0.003098,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221313,0.003098,-0.003500,0.249976,0,0);}
.m47_c00475{transform:matrix(0.221644,0.002660,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221644,0.002660,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221644,0.002660,-0.003000,0.249982,0,0);}
.mcb_c00475{transform:matrix(0.222143,0.003110,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222143,0.003110,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222143,0.003110,-0.003500,0.249976,0,0);}
.m21_c00475{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.mc6_c00475{transform:matrix(0.222758,0.003119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222758,0.003119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222758,0.003119,-0.003500,0.249976,0,0);}
.mcc_c00475{transform:matrix(0.222818,0.003119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222818,0.003119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222818,0.003119,-0.003500,0.249976,0,0);}
.m3c_c00475{transform:matrix(0.223319,0.004020,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223319,0.004020,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223319,0.004020,-0.004499,0.249960,0,0);}
.m1a_c00475{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m57_c00475{transform:matrix(0.225639,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225639,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225639,0.002708,-0.003000,0.249982,0,0);}
.m41_c00475{transform:matrix(0.225993,0.004068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225993,0.004068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225993,0.004068,-0.004499,0.249960,0,0);}
.m33_c00475{transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);}
.mca_c00475{transform:matrix(0.226843,0.003176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226843,0.003176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226843,0.003176,-0.003500,0.249976,0,0);}
.mbb_c00475{transform:matrix(0.227508,0.003185,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227508,0.003185,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227508,0.003185,-0.003500,0.249976,0,0);}
.m42_c00475{transform:matrix(0.227693,0.004098,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227693,0.004098,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227693,0.004098,-0.004499,0.249960,0,0);}
.mdf_c00475{transform:matrix(0.228788,0.003203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228788,0.003203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228788,0.003203,-0.003500,0.249976,0,0);}
.md5_c00475{transform:matrix(0.228978,0.003206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228978,0.003206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228978,0.003206,-0.003500,0.249976,0,0);}
.mc0_c00475{transform:matrix(0.229193,0.003209,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229193,0.003209,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229193,0.003209,-0.003500,0.249976,0,0);}
.m4a_c00475{transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229473,0.002754,-0.003000,0.249982,0,0);}
.m85_c00475{transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231205,0.003006,-0.003250,0.249979,0,0);}
.m55_c00475{transform:matrix(0.233503,0.002802,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233503,0.002802,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233503,0.002802,-0.003000,0.249982,0,0);}
.me1_c00475{transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);}
.mc1_c00475{transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);}
.me3_c00475{transform:matrix(0.242226,0.003391,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242226,0.003391,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242226,0.003391,-0.003500,0.249976,0,0);}
.me4_c00475{transform:matrix(0.243911,0.003415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243911,0.003415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243911,0.003415,-0.003500,0.249976,0,0);}
.m20_c00475{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.med_c00475{transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);}
.me2_c00475{transform:matrix(0.265144,0.003712,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265144,0.003712,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265144,0.003712,-0.003500,0.249976,0,0);}
.m58_c00475{transform:matrix(0.269316,0.003232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269316,0.003232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269316,0.003232,-0.003000,0.249982,0,0);}
.m56_c00475{transform:matrix(0.269411,0.003233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269411,0.003233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269411,0.003233,-0.003000,0.249982,0,0);}
.m87_c00475{transform:matrix(0.276822,0.003599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276822,0.003599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276822,0.003599,-0.003250,0.249979,0,0);}
.mf0_c00475{transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00475{transform:matrix(0.378780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378780,0.000000,0.000000,0.250000,0,0);}
.mee_c00475{transform:matrix(0.542105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542105,0.000000,0.000000,0.250000,0,0);}
.mf7_c00475{transform:matrix(0.544560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544560,0.000000,0.000000,0.250000,0,0);}
.mf2_c00475{transform:matrix(0.547915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547915,0.000000,0.000000,0.250000,0,0);}
.mf6_c00475{transform:matrix(0.601125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601125,0.000000,0.000000,0.250000,0,0);}
.mf3_c00475{transform:matrix(0.871330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.871330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.871330,0.000000,0.000000,0.250000,0,0);}
.mf4_c00475{transform:matrix(1.347830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.347830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.347830,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:0.000000px;}
.fc0_c00475{color:transparent;}
.fs18_c00475{font-size:22.050000px;}
.fs17_c00475{font-size:55.655453px;}
.fs6_c00475{font-size:55.659015px;}
.fs14_c00475{font-size:57.755659px;}
.fs4_c00475{font-size:59.850000px;}
.fs7_c00475{font-size:59.854309px;}
.fs11_c00475{font-size:59.855865px;}
.fsd_c00475{font-size:60.905146px;}
.fs12_c00475{font-size:60.905968px;}
.fs2_c00475{font-size:61.950000px;}
.fs13_c00475{font-size:61.956071px;}
.fs3_c00475{font-size:63.000000px;}
.fs16_c00475{font-size:64.056277px;}
.fsf_c00475{font-size:65.106379px;}
.fs9_c00475{font-size:66.154763px;}
.fs10_c00475{font-size:66.156482px;}
.fsb_c00475{font-size:67.204838px;}
.fs5_c00475{font-size:68.250000px;}
.fs8_c00475{font-size:68.254914px;}
.fs15_c00475{font-size:68.256688px;}
.fsc_c00475{font-size:69.304989px;}
.fs1_c00475{font-size:70.350000px;}
.fse_c00475{font-size:70.356894px;}
.fsa_c00475{font-size:71.405141px;}
.fs0_c00475{font-size:73.500000px;}
.y0_c00475{bottom:0.000000px;}
.yd1_c00475{bottom:39.388932px;}
.yd0_c00475{bottom:39.389109px;}
.yd2_c00475{bottom:39.389556px;}
.ycf_c00475{bottom:39.389568px;}
.yce_c00475{bottom:39.389745px;}
.ycd_c00475{bottom:39.390024px;}
.ycc_c00475{bottom:39.390099px;}
.ycb_c00475{bottom:56.226252px;}
.yca_c00475{bottom:56.425626px;}
.yc9_c00475{bottom:57.409329px;}
.yc8_c00475{bottom:57.621051px;}
.yc7_c00475{bottom:58.305483px;}
.yc6_c00475{bottom:70.933107px;}
.yc5_c00475{bottom:71.162385px;}
.yc4_c00475{bottom:71.354997px;}
.yc3_c00475{bottom:72.130821px;}
.yc2_c00475{bottom:72.538221px;}
.yc1_c00475{bottom:73.593954px;}
.yc0_c00475{bottom:74.266836px;}
.ybf_c00475{bottom:74.776338px;}
.ybd_c00475{bottom:90.736851px;}
.ybc_c00475{bottom:90.737388px;}
.ybe_c00475{bottom:90.737472px;}
.yba_c00475{bottom:90.737823px;}
.ybb_c00475{bottom:90.737964px;}
.yb9_c00475{bottom:90.738018px;}
.yb8_c00475{bottom:90.738057px;}
.yb7_c00475{bottom:105.461943px;}
.yb6_c00475{bottom:106.221639px;}
.yb5_c00475{bottom:106.606254px;}
.yb4_c00475{bottom:107.246334px;}
.yb3_c00475{bottom:107.430483px;}
.yb2_c00475{bottom:108.240495px;}
.yb1_c00475{bottom:108.531639px;}
.yb0_c00475{bottom:122.470665px;}
.yaf_c00475{bottom:122.775588px;}
.yae_c00475{bottom:123.070671px;}
.yad_c00475{bottom:124.102449px;}
.yac_c00475{bottom:124.337142px;}
.yab_c00475{bottom:124.951524px;}
.yaa_c00475{bottom:125.186763px;}
.ya9_c00475{bottom:125.540724px;}
.ya4_c00475{bottom:139.736241px;}
.ya5_c00475{bottom:139.736424px;}
.ya3_c00475{bottom:139.736517px;}
.ya2_c00475{bottom:139.736616px;}
.ya1_c00475{bottom:139.736634px;}
.ya8_c00475{bottom:139.736769px;}
.ya7_c00475{bottom:139.736946px;}
.ya6_c00475{bottom:139.737105px;}
.ya0_c00475{bottom:154.586082px;}
.y9f_c00475{bottom:155.030298px;}
.y9e_c00475{bottom:155.349045px;}
.y9d_c00475{bottom:156.205536px;}
.y9c_c00475{bottom:156.575025px;}
.y9b_c00475{bottom:157.211544px;}
.y9a_c00475{bottom:157.541229px;}
.y99_c00475{bottom:158.062671px;}
.y98_c00475{bottom:159.743658px;}
.y97_c00475{bottom:160.103574px;}
.y96_c00475{bottom:172.676799px;}
.y95_c00475{bottom:173.058390px;}
.y94_c00475{bottom:173.988606px;}
.y93_c00475{bottom:174.626313px;}
.y92_c00475{bottom:174.827745px;}
.y91_c00475{bottom:176.574357px;}
.y90_c00475{bottom:189.937425px;}
.y8f_c00475{bottom:191.071320px;}
.y8e_c00475{bottom:191.286381px;}
.y8d_c00475{bottom:192.193434px;}
.y8c_c00475{bottom:193.037130px;}
.y8b_c00475{bottom:193.585335px;}
.y8a_c00475{bottom:206.731377px;}
.y89_c00475{bottom:207.095535px;}
.y88_c00475{bottom:207.835851px;}
.y87_c00475{bottom:208.204860px;}
.y86_c00475{bottom:209.011059px;}
.y85_c00475{bottom:209.841711px;}
.y84_c00475{bottom:210.136437px;}
.y83_c00475{bottom:210.865845px;}
.y82_c00475{bottom:223.895010px;}
.y81_c00475{bottom:224.996658px;}
.y80_c00475{bottom:225.428784px;}
.y7f_c00475{bottom:226.206600px;}
.y7e_c00475{bottom:227.334474px;}
.y7d_c00475{bottom:227.791251px;}
.y7c_c00475{bottom:228.418548px;}
.y7b_c00475{bottom:240.690345px;}
.y7a_c00475{bottom:241.550595px;}
.y79_c00475{bottom:242.448810px;}
.y78_c00475{bottom:242.865936px;}
.y77_c00475{bottom:243.697323px;}
.y76_c00475{bottom:244.040178px;}
.y75_c00475{bottom:244.620789px;}
.y74_c00475{bottom:257.731458px;}
.y73_c00475{bottom:258.037827px;}
.y72_c00475{bottom:259.065357px;}
.y71_c00475{bottom:259.905273px;}
.y70_c00475{bottom:260.547390px;}
.y6f_c00475{bottom:261.091500px;}
.y6e_c00475{bottom:274.320681px;}
.y6d_c00475{bottom:275.117938px;}
.y6c_c00475{bottom:275.292561px;}
.y6b_c00475{bottom:276.088493px;}
.y6a_c00475{bottom:276.430757px;}
.y69_c00475{bottom:276.918841px;}
.y68_c00475{bottom:277.143462px;}
.y67_c00475{bottom:277.831500px;}
.y66_c00475{bottom:291.289260px;}
.y65_c00475{bottom:291.512100px;}
.y64_c00475{bottom:292.407132px;}
.y63_c00475{bottom:293.048598px;}
.y62_c00475{bottom:293.631258px;}
.y61_c00475{bottom:294.315744px;}
.y60_c00475{bottom:294.558024px;}
.y5f_c00475{bottom:307.782456px;}
.y5e_c00475{bottom:308.062644px;}
.y5d_c00475{bottom:308.260470px;}
.y5c_c00475{bottom:308.933172px;}
.y5b_c00475{bottom:309.447402px;}
.y5a_c00475{bottom:309.699960px;}
.y59_c00475{bottom:310.619784px;}
.y58_c00475{bottom:310.868976px;}
.y57_c00475{bottom:311.572458px;}
.y55_c00475{bottom:326.546952px;}
.y56_c00475{bottom:326.547168px;}
.y54_c00475{bottom:326.547216px;}
.y51_c00475{bottom:326.547492px;}
.y50_c00475{bottom:326.547516px;}
.y53_c00475{bottom:326.547918px;}
.y52_c00475{bottom:326.548146px;}
.y4f_c00475{bottom:342.091800px;}
.y4e_c00475{bottom:342.309288px;}
.y4d_c00475{bottom:342.733698px;}
.y4c_c00475{bottom:343.197432px;}
.y4b_c00475{bottom:343.855014px;}
.y4a_c00475{bottom:344.792184px;}
.y49_c00475{bottom:345.023340px;}
.y48_c00475{bottom:345.195510px;}
.y47_c00475{bottom:345.596766px;}
.yd5_c00475{bottom:346.410000px;}
.y46_c00475{bottom:359.732292px;}
.y45_c00475{bottom:360.297666px;}
.y44_c00475{bottom:360.597528px;}
.y43_c00475{bottom:360.999324px;}
.y42_c00475{bottom:361.335534px;}
.y41_c00475{bottom:361.537836px;}
.y40_c00475{bottom:361.956726px;}
.y3f_c00475{bottom:362.609904px;}
.y3e_c00475{bottom:375.477294px;}
.y3d_c00475{bottom:376.293684px;}
.y3c_c00475{bottom:376.828608px;}
.y3b_c00475{bottom:377.020440px;}
.y3a_c00475{bottom:377.987250px;}
.y39_c00475{bottom:379.082796px;}
.y38_c00475{bottom:391.996920px;}
.y37_c00475{bottom:392.944728px;}
.y36_c00475{bottom:393.689424px;}
.y35_c00475{bottom:394.073778px;}
.y34_c00475{bottom:394.834128px;}
.y33_c00475{bottom:396.362094px;}
.y32_c00475{bottom:409.751628px;}
.y31_c00475{bottom:410.380098px;}
.y30_c00475{bottom:410.483652px;}
.y2f_c00475{bottom:410.953614px;}
.y2e_c00475{bottom:411.977850px;}
.y2d_c00475{bottom:412.211076px;}
.y2c_c00475{bottom:412.551366px;}
.y2b_c00475{bottom:412.758744px;}
.y2a_c00475{bottom:413.101500px;}
.y29_c00475{bottom:426.331071px;}
.y28_c00475{bottom:426.942027px;}
.y27_c00475{bottom:428.134185px;}
.y26_c00475{bottom:428.614461px;}
.y25_c00475{bottom:429.543963px;}
.y24_c00475{bottom:430.043409px;}
.y23_c00475{bottom:430.924500px;}
.y22_c00475{bottom:443.457000px;}
.y21_c00475{bottom:443.647500px;}
.y20_c00475{bottom:444.538500px;}
.y1f_c00475{bottom:445.692000px;}
.y1e_c00475{bottom:445.959000px;}
.y1d_c00475{bottom:446.104500px;}
.y1c_c00475{bottom:446.721000px;}
.y1b_c00475{bottom:447.096000px;}
.y1a_c00475{bottom:447.393000px;}
.y19_c00475{bottom:461.319000px;}
.y18_c00475{bottom:477.300000px;}
.y17_c00475{bottom:477.529500px;}
.yd3_c00475{bottom:477.630000px;}
.y16_c00475{bottom:478.306500px;}
.y15_c00475{bottom:479.197500px;}
.y14_c00475{bottom:479.476500px;}
.y13_c00475{bottom:479.719500px;}
.y12_c00475{bottom:480.367500px;}
.y11_c00475{bottom:480.600000px;}
.y10_c00475{bottom:495.034500px;}
.yf_c00475{bottom:495.282000px;}
.ye_c00475{bottom:495.940500px;}
.yd_c00475{bottom:497.146500px;}
.yc_c00475{bottom:497.370000px;}
.yb_c00475{bottom:497.880000px;}
.yd4_c00475{bottom:503.820000px;}
.ya_c00475{bottom:512.053500px;}
.y9_c00475{bottom:529.779000px;}
.y8_c00475{bottom:544.522500px;}
.y7_c00475{bottom:544.861500px;}
.y6_c00475{bottom:545.641500px;}
.y5_c00475{bottom:545.859000px;}
.y4_c00475{bottom:546.553500px;}
.y3_c00475{bottom:547.561500px;}
.y2_c00475{bottom:563.140500px;}
.y1_c00475{bottom:575.640000px;}
.h1a_c00475{height:22.050000px;}
.h19_c00475{height:55.655453px;}
.h8_c00475{height:55.659015px;}
.h16_c00475{height:57.755659px;}
.h6_c00475{height:59.850000px;}
.h9_c00475{height:59.854309px;}
.h13_c00475{height:59.855865px;}
.hf_c00475{height:60.905146px;}
.h14_c00475{height:60.905968px;}
.h4_c00475{height:61.950000px;}
.h15_c00475{height:61.956071px;}
.h5_c00475{height:63.000000px;}
.h18_c00475{height:64.056277px;}
.h11_c00475{height:65.106379px;}
.hb_c00475{height:66.154763px;}
.h12_c00475{height:66.156482px;}
.hd_c00475{height:67.204838px;}
.h7_c00475{height:68.250000px;}
.ha_c00475{height:68.254914px;}
.h17_c00475{height:68.256688px;}
.he_c00475{height:69.304989px;}
.h3_c00475{height:70.350000px;}
.h10_c00475{height:70.356894px;}
.hc_c00475{height:71.405141px;}
.h2_c00475{height:73.500000px;}
.h0_c00475{height:617.700000px;}
.h1_c00475{height:618.000000px;}
.w0_c00475{width:359.100000px;}
.w1_c00475{width:359.250000px;}
.x0_c00475{left:0.000000px;}
.x78_c00475{left:31.955880px;}
.x6d_c00475{left:33.075465px;}
.x61_c00475{left:34.386231px;}
.x59_c00475{left:35.478000px;}
.x49_c00475{left:36.866784px;}
.x3e_c00475{left:37.891206px;}
.x30_c00475{left:38.941500px;}
.x9_c00475{left:40.072500px;}
.x2_c00475{left:41.580000px;}
.x7c_c00475{left:45.360945px;}
.x6e_c00475{left:51.067953px;}
.x79_c00475{left:52.751880px;}
.x80_c00475{left:55.352673px;}
.x55_c00475{left:56.547834px;}
.x2a_c00475{left:59.283000px;}
.xf_c00475{left:60.481500px;}
.x36_c00475{left:67.345500px;}
.x4d_c00475{left:68.582292px;}
.x62_c00475{left:73.072185px;}
.x5c_c00475{left:74.395500px;}
.x75_c00475{left:78.417318px;}
.x4a_c00475{left:80.901744px;}
.x72_c00475{left:82.625592px;}
.x25_c00475{left:84.240000px;}
.x10_c00475{left:85.591500px;}
.x1b_c00475{left:86.803500px;}
.x31_c00475{left:87.891000px;}
.x3_c00475{left:92.610000px;}
.x63_c00475{left:95.954370px;}
.x43_c00475{left:98.992020px;}
.x66_c00475{left:102.430104px;}
.x50_c00475{left:104.330334px;}
.x5a_c00475{left:105.682500px;}
.x1c_c00475{left:107.053500px;}
.x7a_c00475{left:110.609880px;}
.x16_c00475{left:112.861500px;}
.x32_c00475{left:115.638000px;}
.xa_c00475{left:117.577500px;}
.x5d_c00475{left:120.261000px;}
.x3f_c00475{left:122.185698px;}
.x7b_c00475{left:123.763380px;}
.x2b_c00475{left:125.446500px;}
.x7d_c00475{left:129.069846px;}
.x11_c00475{left:130.951500px;}
.x37_c00475{left:132.420000px;}
.x20_c00475{left:133.782000px;}
.x2c_c00475{left:135.103500px;}
.x44_c00475{left:137.024970px;}
.x3b_c00475{left:139.983894px;}
.x7e_c00475{left:141.490782px;}
.x26_c00475{left:142.830000px;}
.x17_c00475{left:144.451500px;}
.x73_c00475{left:146.622129px;}
.x4_c00475{left:147.960000px;}
.x12_c00475{left:150.931500px;}
.x2d_c00475{left:152.935500px;}
.x81_c00475{left:154.183035px;}
.x45_c00475{left:155.383686px;}
.x21_c00475{left:157.011000px;}
.x67_c00475{left:158.607135px;}
.x56_c00475{left:162.143334px;}
.x7f_c00475{left:165.432195px;}
.x33_c00475{left:167.277000px;}
.x27_c00475{left:168.480000px;}
.x51_c00475{left:169.980750px;}
.xb_c00475{left:171.015000px;}
.x1_c00475{left:173.610000px;}
.x6f_c00475{left:177.708327px;}
.x64_c00475{left:179.132694px;}
.x5e_c00475{left:180.255000px;}
.x5_c00475{left:184.140000px;}
.x46_c00475{left:185.901546px;}
.xc_c00475{left:187.759500px;}
.x3c_c00475{left:190.719576px;}
.x34_c00475{left:193.959000px;}
.x40_c00475{left:196.502298px;}
.x69_c00475{left:198.593874px;}
.x18_c00475{left:201.421500px;}
.x82_c00475{left:203.598216px;}
.x74_c00475{left:207.107994px;}
.x6_c00475{left:209.250000px;}
.x41_c00475{left:211.238118px;}
.x19_c00475{left:212.491500px;}
.x6a_c00475{left:213.955374px;}
.x57_c00475{left:215.598834px;}
.x1d_c00475{left:216.729000px;}
.x28_c00475{left:218.430000px;}
.x4b_c00475{left:221.309052px;}
.x47_c00475{left:222.384978px;}
.x52_c00475{left:224.753436px;}
.x70_c00475{left:228.026106px;}
.x2e_c00475{left:229.852500px;}
.x22_c00475{left:231.259500px;}
.x13_c00475{left:233.551500px;}
.x68_c00475{left:236.978043px;}
.x65_c00475{left:239.004354px;}
.x5b_c00475{left:244.213500px;}
.x76_c00475{left:245.843670px;}
.xd_c00475{left:247.762500px;}
.x7_c00475{left:250.290000px;}
.x42_c00475{left:252.439632px;}
.x5f_c00475{left:253.650000px;}
.x38_c00475{left:256.936500px;}
.x14_c00475{left:259.201500px;}
.x39_c00475{left:265.566000px;}
.x77_c00475{left:269.338506px;}
.x71_c00475{left:270.879015px;}
.x53_c00475{left:272.810784px;}
.xe_c00475{left:273.885000px;}
.x60_c00475{left:275.533500px;}
.x1e_c00475{left:276.631500px;}
.x4e_c00475{left:278.657532px;}
.x6b_c00475{left:284.712108px;}
.x54_c00475{left:286.920942px;}
.x29_c00475{left:289.170000px;}
.x58_c00475{left:290.184834px;}
.x35_c00475{left:294.132000px;}
.x23_c00475{left:296.053500px;}
.x1f_c00475{left:299.077500px;}
.x48_c00475{left:300.988914px;}
.x2f_c00475{left:302.023500px;}
.x4c_c00475{left:306.319026px;}
.x1a_c00475{left:308.071500px;}
.x4f_c00475{left:310.519122px;}
.x6c_c00475{left:311.968608px;}
.x83_c00475{left:313.227699px;}
.x24_c00475{left:315.223500px;}
.x3a_c00475{left:317.938500px;}
.x8_c00475{left:320.220000px;}
.x15_c00475{left:324.541500px;}
.x3d_c00475{left:329.286108px;}
.x85_c00475{left:347.490000px;}
.x86_c00475{left:350.460000px;}
.x84_c00475{left:352.350000px;}
.x87_c00475{left:355.860000px;}
.x88_c00475{left:356.940000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs18_c00475{font-size:19.600000pt;}
.fs17_c00475{font-size:49.471514pt;}
.fs6_c00475{font-size:49.474680pt;}
.fs14_c00475{font-size:51.338364pt;}
.fs4_c00475{font-size:53.200000pt;}
.fs7_c00475{font-size:53.203830pt;}
.fs11_c00475{font-size:53.205213pt;}
.fsd_c00475{font-size:54.137907pt;}
.fs12_c00475{font-size:54.138638pt;}
.fs2_c00475{font-size:55.066667pt;}
.fs13_c00475{font-size:55.072063pt;}
.fs3_c00475{font-size:56.000000pt;}
.fs16_c00475{font-size:56.938913pt;}
.fsf_c00475{font-size:57.872337pt;}
.fs9_c00475{font-size:58.804233pt;}
.fs10_c00475{font-size:58.805762pt;}
.fsb_c00475{font-size:59.737634pt;}
.fs5_c00475{font-size:60.666667pt;}
.fs8_c00475{font-size:60.671035pt;}
.fs15_c00475{font-size:60.672612pt;}
.fsc_c00475{font-size:61.604435pt;}
.fs1_c00475{font-size:62.533333pt;}
.fse_c00475{font-size:62.539461pt;}
.fsa_c00475{font-size:63.471236pt;}
.fs0_c00475{font-size:65.333333pt;}
.y0_c00475{bottom:0.000000pt;}
.yd1_c00475{bottom:35.012384pt;}
.yd0_c00475{bottom:35.012541pt;}
.yd2_c00475{bottom:35.012939pt;}
.ycf_c00475{bottom:35.012949pt;}
.yce_c00475{bottom:35.013107pt;}
.ycd_c00475{bottom:35.013355pt;}
.ycc_c00475{bottom:35.013421pt;}
.ycb_c00475{bottom:49.978891pt;}
.yca_c00475{bottom:50.156112pt;}
.yc9_c00475{bottom:51.030515pt;}
.yc8_c00475{bottom:51.218712pt;}
.yc7_c00475{bottom:51.827096pt;}
.yc6_c00475{bottom:63.051651pt;}
.yc5_c00475{bottom:63.255453pt;}
.yc4_c00475{bottom:63.426664pt;}
.yc3_c00475{bottom:64.116285pt;}
.yc2_c00475{bottom:64.478419pt;}
.yc1_c00475{bottom:65.416848pt;}
.yc0_c00475{bottom:66.014965pt;}
.ybf_c00475{bottom:66.467856pt;}
.ybd_c00475{bottom:80.654979pt;}
.ybc_c00475{bottom:80.655456pt;}
.ybe_c00475{bottom:80.655531pt;}
.yba_c00475{bottom:80.655843pt;}
.ybb_c00475{bottom:80.655968pt;}
.yb9_c00475{bottom:80.656016pt;}
.yb8_c00475{bottom:80.656051pt;}
.yb7_c00475{bottom:93.743949pt;}
.yb6_c00475{bottom:94.419235pt;}
.yb5_c00475{bottom:94.761115pt;}
.yb4_c00475{bottom:95.330075pt;}
.yb3_c00475{bottom:95.493763pt;}
.yb2_c00475{bottom:96.213773pt;}
.yb1_c00475{bottom:96.472568pt;}
.yb0_c00475{bottom:108.862813pt;}
.yaf_c00475{bottom:109.133856pt;}
.yae_c00475{bottom:109.396152pt;}
.yad_c00475{bottom:110.313288pt;}
.yac_c00475{bottom:110.521904pt;}
.yab_c00475{bottom:111.068021pt;}
.yaa_c00475{bottom:111.277123pt;}
.ya9_c00475{bottom:111.591755pt;}
.ya4_c00475{bottom:124.209992pt;}
.ya5_c00475{bottom:124.210155pt;}
.ya3_c00475{bottom:124.210237pt;}
.ya2_c00475{bottom:124.210325pt;}
.ya1_c00475{bottom:124.210341pt;}
.ya8_c00475{bottom:124.210461pt;}
.ya7_c00475{bottom:124.210619pt;}
.ya6_c00475{bottom:124.210760pt;}
.ya0_c00475{bottom:137.409851pt;}
.y9f_c00475{bottom:137.804709pt;}
.y9e_c00475{bottom:138.088040pt;}
.y9d_c00475{bottom:138.849365pt;}
.y9c_c00475{bottom:139.177800pt;}
.y9b_c00475{bottom:139.743595pt;}
.y9a_c00475{bottom:140.036648pt;}
.y99_c00475{bottom:140.500152pt;}
.y98_c00475{bottom:141.994363pt;}
.y97_c00475{bottom:142.314288pt;}
.y96_c00475{bottom:153.490488pt;}
.y95_c00475{bottom:153.829680pt;}
.y94_c00475{bottom:154.656539pt;}
.y93_c00475{bottom:155.223389pt;}
.y92_c00475{bottom:155.402440pt;}
.y91_c00475{bottom:156.954984pt;}
.y90_c00475{bottom:168.833267pt;}
.y8f_c00475{bottom:169.841173pt;}
.y8e_c00475{bottom:170.032339pt;}
.y8d_c00475{bottom:170.838608pt;}
.y8c_c00475{bottom:171.588560pt;}
.y8b_c00475{bottom:172.075853pt;}
.y8a_c00475{bottom:183.761224pt;}
.y89_c00475{bottom:184.084920pt;}
.y88_c00475{bottom:184.742979pt;}
.y87_c00475{bottom:185.070987pt;}
.y86_c00475{bottom:185.787608pt;}
.y85_c00475{bottom:186.525965pt;}
.y84_c00475{bottom:186.787944pt;}
.y83_c00475{bottom:187.436307pt;}
.y82_c00475{bottom:199.017787pt;}
.y81_c00475{bottom:199.997029pt;}
.y80_c00475{bottom:200.381141pt;}
.y7f_c00475{bottom:201.072533pt;}
.y7e_c00475{bottom:202.075088pt;}
.y7d_c00475{bottom:202.481112pt;}
.y7c_c00475{bottom:203.038709pt;}
.y7b_c00475{bottom:213.946973pt;}
.y7a_c00475{bottom:214.711640pt;}
.y79_c00475{bottom:215.510053pt;}
.y78_c00475{bottom:215.880832pt;}
.y77_c00475{bottom:216.619843pt;}
.y76_c00475{bottom:216.924603pt;}
.y75_c00475{bottom:217.440701pt;}
.y74_c00475{bottom:229.094629pt;}
.y73_c00475{bottom:229.366957pt;}
.y72_c00475{bottom:230.280317pt;}
.y71_c00475{bottom:231.026909pt;}
.y70_c00475{bottom:231.597680pt;}
.y6f_c00475{bottom:232.081333pt;}
.y6e_c00475{bottom:243.840605pt;}
.y6d_c00475{bottom:244.549279pt;}
.y6c_c00475{bottom:244.704499pt;}
.y6b_c00475{bottom:245.411993pt;}
.y6a_c00475{bottom:245.716228pt;}
.y69_c00475{bottom:246.150081pt;}
.y68_c00475{bottom:246.349744pt;}
.y67_c00475{bottom:246.961333pt;}
.y66_c00475{bottom:258.923787pt;}
.y65_c00475{bottom:259.121867pt;}
.y64_c00475{bottom:259.917451pt;}
.y63_c00475{bottom:260.487643pt;}
.y62_c00475{bottom:261.005563pt;}
.y61_c00475{bottom:261.613995pt;}
.y60_c00475{bottom:261.829355pt;}
.y5f_c00475{bottom:273.584405pt;}
.y5e_c00475{bottom:273.833461pt;}
.y5d_c00475{bottom:274.009307pt;}
.y5c_c00475{bottom:274.607264pt;}
.y5b_c00475{bottom:275.064357pt;}
.y5a_c00475{bottom:275.288853pt;}
.y59_c00475{bottom:276.106475pt;}
.y58_c00475{bottom:276.327979pt;}
.y57_c00475{bottom:276.953296pt;}
.y55_c00475{bottom:290.263957pt;}
.y56_c00475{bottom:290.264149pt;}
.y54_c00475{bottom:290.264192pt;}
.y51_c00475{bottom:290.264437pt;}
.y50_c00475{bottom:290.264459pt;}
.y53_c00475{bottom:290.264816pt;}
.y52_c00475{bottom:290.265019pt;}
.y4f_c00475{bottom:304.081600pt;}
.y4e_c00475{bottom:304.274923pt;}
.y4d_c00475{bottom:304.652176pt;}
.y4c_c00475{bottom:305.064384pt;}
.y4b_c00475{bottom:305.648901pt;}
.y4a_c00475{bottom:306.481941pt;}
.y49_c00475{bottom:306.687413pt;}
.y48_c00475{bottom:306.840453pt;}
.y47_c00475{bottom:307.197125pt;}
.yd5_c00475{bottom:307.920000pt;}
.y46_c00475{bottom:319.762037pt;}
.y45_c00475{bottom:320.264592pt;}
.y44_c00475{bottom:320.531136pt;}
.y43_c00475{bottom:320.888288pt;}
.y42_c00475{bottom:321.187141pt;}
.y41_c00475{bottom:321.366965pt;}
.y40_c00475{bottom:321.739312pt;}
.y3f_c00475{bottom:322.319915pt;}
.y3e_c00475{bottom:333.757595pt;}
.y3d_c00475{bottom:334.483275pt;}
.y3c_c00475{bottom:334.958763pt;}
.y3b_c00475{bottom:335.129280pt;}
.y3a_c00475{bottom:335.988667pt;}
.y39_c00475{bottom:336.962485pt;}
.y38_c00475{bottom:348.441707pt;}
.y37_c00475{bottom:349.284203pt;}
.y36_c00475{bottom:349.946155pt;}
.y35_c00475{bottom:350.287803pt;}
.y34_c00475{bottom:350.963669pt;}
.y33_c00475{bottom:352.321861pt;}
.y32_c00475{bottom:364.223669pt;}
.y31_c00475{bottom:364.782309pt;}
.y30_c00475{bottom:364.874357pt;}
.y2f_c00475{bottom:365.292101pt;}
.y2e_c00475{bottom:366.202533pt;}
.y2d_c00475{bottom:366.409845pt;}
.y2c_c00475{bottom:366.712325pt;}
.y2b_c00475{bottom:366.896661pt;}
.y2a_c00475{bottom:367.201333pt;}
.y29_c00475{bottom:378.960952pt;}
.y28_c00475{bottom:379.504024pt;}
.y27_c00475{bottom:380.563720pt;}
.y26_c00475{bottom:380.990632pt;}
.y25_c00475{bottom:381.816856pt;}
.y24_c00475{bottom:382.260808pt;}
.y23_c00475{bottom:383.044000pt;}
.y22_c00475{bottom:394.184000pt;}
.y21_c00475{bottom:394.353333pt;}
.y20_c00475{bottom:395.145333pt;}
.y1f_c00475{bottom:396.170667pt;}
.y1e_c00475{bottom:396.408000pt;}
.y1d_c00475{bottom:396.537333pt;}
.y1c_c00475{bottom:397.085333pt;}
.y1b_c00475{bottom:397.418667pt;}
.y1a_c00475{bottom:397.682667pt;}
.y19_c00475{bottom:410.061333pt;}
.y18_c00475{bottom:424.266667pt;}
.y17_c00475{bottom:424.470667pt;}
.yd3_c00475{bottom:424.560000pt;}
.y16_c00475{bottom:425.161333pt;}
.y15_c00475{bottom:425.953333pt;}
.y14_c00475{bottom:426.201333pt;}
.y13_c00475{bottom:426.417333pt;}
.y12_c00475{bottom:426.993333pt;}
.y11_c00475{bottom:427.200000pt;}
.y10_c00475{bottom:440.030667pt;}
.yf_c00475{bottom:440.250667pt;}
.ye_c00475{bottom:440.836000pt;}
.yd_c00475{bottom:441.908000pt;}
.yc_c00475{bottom:442.106667pt;}
.yb_c00475{bottom:442.560000pt;}
.yd4_c00475{bottom:447.840000pt;}
.ya_c00475{bottom:455.158667pt;}
.y9_c00475{bottom:470.914667pt;}
.y8_c00475{bottom:484.020000pt;}
.y7_c00475{bottom:484.321333pt;}
.y6_c00475{bottom:485.014667pt;}
.y5_c00475{bottom:485.208000pt;}
.y4_c00475{bottom:485.825333pt;}
.y3_c00475{bottom:486.721333pt;}
.y2_c00475{bottom:500.569333pt;}
.y1_c00475{bottom:511.680000pt;}
.h1a_c00475{height:19.600000pt;}
.h19_c00475{height:49.471514pt;}
.h8_c00475{height:49.474680pt;}
.h16_c00475{height:51.338364pt;}
.h6_c00475{height:53.200000pt;}
.h9_c00475{height:53.203830pt;}
.h13_c00475{height:53.205213pt;}
.hf_c00475{height:54.137907pt;}
.h14_c00475{height:54.138638pt;}
.h4_c00475{height:55.066667pt;}
.h15_c00475{height:55.072063pt;}
.h5_c00475{height:56.000000pt;}
.h18_c00475{height:56.938913pt;}
.h11_c00475{height:57.872337pt;}
.hb_c00475{height:58.804233pt;}
.h12_c00475{height:58.805762pt;}
.hd_c00475{height:59.737634pt;}
.h7_c00475{height:60.666667pt;}
.ha_c00475{height:60.671035pt;}
.h17_c00475{height:60.672612pt;}
.he_c00475{height:61.604435pt;}
.h3_c00475{height:62.533333pt;}
.h10_c00475{height:62.539461pt;}
.hc_c00475{height:63.471236pt;}
.h2_c00475{height:65.333333pt;}
.h0_c00475{height:549.066667pt;}
.h1_c00475{height:549.333333pt;}
.w0_c00475{width:319.200000pt;}
.w1_c00475{width:319.333333pt;}
.x0_c00475{left:0.000000pt;}
.x78_c00475{left:28.405227pt;}
.x6d_c00475{left:29.400413pt;}
.x61_c00475{left:30.565539pt;}
.x59_c00475{left:31.536000pt;}
.x49_c00475{left:32.770475pt;}
.x3e_c00475{left:33.681072pt;}
.x30_c00475{left:34.614667pt;}
.x9_c00475{left:35.620000pt;}
.x2_c00475{left:36.960000pt;}
.x7c_c00475{left:40.320840pt;}
.x6e_c00475{left:45.393736pt;}
.x79_c00475{left:46.890560pt;}
.x80_c00475{left:49.202376pt;}
.x55_c00475{left:50.264741pt;}
.x2a_c00475{left:52.696000pt;}
.xf_c00475{left:53.761333pt;}
.x36_c00475{left:59.862667pt;}
.x4d_c00475{left:60.962037pt;}
.x62_c00475{left:64.953053pt;}
.x5c_c00475{left:66.129333pt;}
.x75_c00475{left:69.704283pt;}
.x4a_c00475{left:71.912661pt;}
.x72_c00475{left:73.444971pt;}
.x25_c00475{left:74.880000pt;}
.x10_c00475{left:76.081333pt;}
.x1b_c00475{left:77.158667pt;}
.x31_c00475{left:78.125333pt;}
.x3_c00475{left:82.320000pt;}
.x63_c00475{left:85.292773pt;}
.x43_c00475{left:87.992907pt;}
.x66_c00475{left:91.048981pt;}
.x50_c00475{left:92.738075pt;}
.x5a_c00475{left:93.940000pt;}
.x1c_c00475{left:95.158667pt;}
.x7a_c00475{left:98.319893pt;}
.x16_c00475{left:100.321333pt;}
.x32_c00475{left:102.789333pt;}
.xa_c00475{left:104.513333pt;}
.x5d_c00475{left:106.898667pt;}
.x3f_c00475{left:108.609509pt;}
.x7b_c00475{left:110.011893pt;}
.x2b_c00475{left:111.508000pt;}
.x7d_c00475{left:114.728752pt;}
.x11_c00475{left:116.401333pt;}
.x37_c00475{left:117.706667pt;}
.x20_c00475{left:118.917333pt;}
.x2c_c00475{left:120.092000pt;}
.x44_c00475{left:121.799973pt;}
.x3b_c00475{left:124.430128pt;}
.x7e_c00475{left:125.769584pt;}
.x26_c00475{left:126.960000pt;}
.x17_c00475{left:128.401333pt;}
.x73_c00475{left:130.330781pt;}
.x4_c00475{left:131.520000pt;}
.x12_c00475{left:134.161333pt;}
.x2d_c00475{left:135.942667pt;}
.x81_c00475{left:137.051587pt;}
.x45_c00475{left:138.118832pt;}
.x21_c00475{left:139.565333pt;}
.x67_c00475{left:140.984120pt;}
.x56_c00475{left:144.127408pt;}
.x7f_c00475{left:147.050840pt;}
.x33_c00475{left:148.690667pt;}
.x27_c00475{left:149.760000pt;}
.x51_c00475{left:151.094000pt;}
.xb_c00475{left:152.013333pt;}
.x1_c00475{left:154.320000pt;}
.x6f_c00475{left:157.962957pt;}
.x64_c00475{left:159.229061pt;}
.x5e_c00475{left:160.226667pt;}
.x5_c00475{left:163.680000pt;}
.x46_c00475{left:165.245819pt;}
.xc_c00475{left:166.897333pt;}
.x3c_c00475{left:169.528512pt;}
.x34_c00475{left:172.408000pt;}
.x40_c00475{left:174.668709pt;}
.x69_c00475{left:176.527888pt;}
.x18_c00475{left:179.041333pt;}
.x82_c00475{left:180.976192pt;}
.x74_c00475{left:184.095995pt;}
.x6_c00475{left:186.000000pt;}
.x41_c00475{left:187.767216pt;}
.x19_c00475{left:188.881333pt;}
.x6a_c00475{left:190.182555pt;}
.x57_c00475{left:191.643408pt;}
.x1d_c00475{left:192.648000pt;}
.x28_c00475{left:194.160000pt;}
.x4b_c00475{left:196.719157pt;}
.x47_c00475{left:197.675536pt;}
.x52_c00475{left:199.780832pt;}
.x70_c00475{left:202.689872pt;}
.x2e_c00475{left:204.313333pt;}
.x22_c00475{left:205.564000pt;}
.x13_c00475{left:207.601333pt;}
.x68_c00475{left:210.647149pt;}
.x65_c00475{left:212.448315pt;}
.x5b_c00475{left:217.078667pt;}
.x76_c00475{left:218.527707pt;}
.xd_c00475{left:220.233333pt;}
.x7_c00475{left:222.480000pt;}
.x42_c00475{left:224.390784pt;}
.x5f_c00475{left:225.466667pt;}
.x38_c00475{left:228.388000pt;}
.x14_c00475{left:230.401333pt;}
.x39_c00475{left:236.058667pt;}
.x77_c00475{left:239.412005pt;}
.x71_c00475{left:240.781347pt;}
.x53_c00475{left:242.498475pt;}
.xe_c00475{left:243.453333pt;}
.x60_c00475{left:244.918667pt;}
.x1e_c00475{left:245.894667pt;}
.x4e_c00475{left:247.695584pt;}
.x6b_c00475{left:253.077429pt;}
.x54_c00475{left:255.040837pt;}
.x29_c00475{left:257.040000pt;}
.x58_c00475{left:257.942075pt;}
.x35_c00475{left:261.450667pt;}
.x23_c00475{left:263.158667pt;}
.x1f_c00475{left:265.846667pt;}
.x48_c00475{left:267.545701pt;}
.x2f_c00475{left:268.465333pt;}
.x4c_c00475{left:272.283579pt;}
.x1a_c00475{left:273.841333pt;}
.x4f_c00475{left:276.016997pt;}
.x6c_c00475{left:277.305429pt;}
.x83_c00475{left:278.424621pt;}
.x24_c00475{left:280.198667pt;}
.x3a_c00475{left:282.612000pt;}
.x8_c00475{left:284.640000pt;}
.x15_c00475{left:288.481333pt;}
.x3d_c00475{left:292.698763pt;}
.x85_c00475{left:308.880000pt;}
.x86_c00475{left:311.520000pt;}
.x84_c00475{left:313.200000pt;}
.x87_c00475{left:316.320000pt;}
.x88_c00475{left:317.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00476 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00476 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00476 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00476 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc6_c00476{transform:matrix(0.099779,-0.001497,0.003750,0.249972,0,0);-ms-transform:matrix(0.099779,-0.001497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.099779,-0.001497,0.003750,0.249972,0,0);}
.m78_c00476{transform:matrix(0.109363,-0.001640,0.003750,0.249972,0,0);-ms-transform:matrix(0.109363,-0.001640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.109363,-0.001640,0.003750,0.249972,0,0);}
.mc9_c00476{transform:matrix(0.135230,-0.002028,0.003750,0.249972,0,0);-ms-transform:matrix(0.135230,-0.002028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.135230,-0.002028,0.003750,0.249972,0,0);}
.meb_c00476{transform:matrix(0.136245,-0.002044,0.003750,0.249972,0,0);-ms-transform:matrix(0.136245,-0.002044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136245,-0.002044,0.003750,0.249972,0,0);}
.ma9_c00476{transform:matrix(0.136880,-0.002053,0.003750,0.249972,0,0);-ms-transform:matrix(0.136880,-0.002053,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136880,-0.002053,0.003750,0.249972,0,0);}
.m4d_c00476{transform:matrix(0.141844,-0.002128,0.003750,0.249972,0,0);-ms-transform:matrix(0.141844,-0.002128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141844,-0.002128,0.003750,0.249972,0,0);}
.ma4_c00476{transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);-ms-transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146524,-0.002198,0.003750,0.249972,0,0);}
.mf0_c00476{transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);-ms-transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152793,-0.002292,0.003750,0.249972,0,0);}
.m41_c00476{transform:matrix(0.153573,-0.002304,0.003750,0.249972,0,0);-ms-transform:matrix(0.153573,-0.002304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153573,-0.002304,0.003750,0.249972,0,0);}
.m14_c00476{transform:matrix(0.157097,-0.002356,0.003750,0.249972,0,0);-ms-transform:matrix(0.157097,-0.002356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157097,-0.002356,0.003750,0.249972,0,0);}
.m67_c00476{transform:matrix(0.158032,-0.002370,0.003750,0.249972,0,0);-ms-transform:matrix(0.158032,-0.002370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158032,-0.002370,0.003750,0.249972,0,0);}
.m12_c00476{transform:matrix(0.158782,-0.002382,0.003750,0.249972,0,0);-ms-transform:matrix(0.158782,-0.002382,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158782,-0.002382,0.003750,0.249972,0,0);}
.m0_c00476{transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);}
.md6_c00476{transform:matrix(0.160572,-0.002409,0.003750,0.249972,0,0);-ms-transform:matrix(0.160572,-0.002409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160572,-0.002409,0.003750,0.249972,0,0);}
.m52_c00476{transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);-ms-transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);}
.mba_c00476{transform:matrix(0.161187,-0.002418,0.003750,0.249972,0,0);-ms-transform:matrix(0.161187,-0.002418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161187,-0.002418,0.003750,0.249972,0,0);}
.m6c_c00476{transform:matrix(0.162342,-0.002435,0.003750,0.249972,0,0);-ms-transform:matrix(0.162342,-0.002435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162342,-0.002435,0.003750,0.249972,0,0);}
.mb4_c00476{transform:matrix(0.162897,-0.002443,0.003750,0.249972,0,0);-ms-transform:matrix(0.162897,-0.002443,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162897,-0.002443,0.003750,0.249972,0,0);}
.mcc_c00476{transform:matrix(0.164222,-0.002463,0.003750,0.249972,0,0);-ms-transform:matrix(0.164222,-0.002463,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164222,-0.002463,0.003750,0.249972,0,0);}
.m95_c00476{transform:matrix(0.164397,-0.002466,0.003750,0.249972,0,0);-ms-transform:matrix(0.164397,-0.002466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164397,-0.002466,0.003750,0.249972,0,0);}
.m66_c00476{transform:matrix(0.165871,-0.002488,0.003750,0.249972,0,0);-ms-transform:matrix(0.165871,-0.002488,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165871,-0.002488,0.003750,0.249972,0,0);}
.m76_c00476{transform:matrix(0.166186,-0.002493,0.003750,0.249972,0,0);-ms-transform:matrix(0.166186,-0.002493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166186,-0.002493,0.003750,0.249972,0,0);}
.ma_c00476{transform:matrix(0.166216,-0.002493,0.003750,0.249972,0,0);-ms-transform:matrix(0.166216,-0.002493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166216,-0.002493,0.003750,0.249972,0,0);}
.m81_c00476{transform:matrix(0.166361,-0.002495,0.003750,0.249972,0,0);-ms-transform:matrix(0.166361,-0.002495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166361,-0.002495,0.003750,0.249972,0,0);}
.m6d_c00476{transform:matrix(0.167651,-0.002515,0.003750,0.249972,0,0);-ms-transform:matrix(0.167651,-0.002515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167651,-0.002515,0.003750,0.249972,0,0);}
.ma7_c00476{transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);-ms-transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168111,-0.002522,0.003750,0.249972,0,0);}
.m32_c00476{transform:matrix(0.169166,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169166,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169166,-0.002537,0.003750,0.249972,0,0);}
.mbc_c00476{transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);-ms-transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);}
.m5f_c00476{transform:matrix(0.170211,-0.002553,0.003750,0.249972,0,0);-ms-transform:matrix(0.170211,-0.002553,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170211,-0.002553,0.003750,0.249972,0,0);}
.m24_c00476{transform:matrix(0.170326,-0.002555,0.003750,0.249972,0,0);-ms-transform:matrix(0.170326,-0.002555,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170326,-0.002555,0.003750,0.249972,0,0);}
.m33_c00476{transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);-ms-transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170821,-0.002562,0.003750,0.249972,0,0);}
.me8_c00476{transform:matrix(0.170936,-0.002564,0.003750,0.249972,0,0);-ms-transform:matrix(0.170936,-0.002564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170936,-0.002564,0.003750,0.249972,0,0);}
.m47_c00476{transform:matrix(0.171601,-0.002574,0.003750,0.249972,0,0);-ms-transform:matrix(0.171601,-0.002574,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171601,-0.002574,0.003750,0.249972,0,0);}
.med_c00476{transform:matrix(0.171991,-0.002580,0.003750,0.249972,0,0);-ms-transform:matrix(0.171991,-0.002580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171991,-0.002580,0.003750,0.249972,0,0);}
.m59_c00476{transform:matrix(0.172501,-0.002588,0.003750,0.249972,0,0);-ms-transform:matrix(0.172501,-0.002588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172501,-0.002588,0.003750,0.249972,0,0);}
.m97_c00476{transform:matrix(0.172851,-0.002593,0.003750,0.249972,0,0);-ms-transform:matrix(0.172851,-0.002593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172851,-0.002593,0.003750,0.249972,0,0);}
.m64_c00476{transform:matrix(0.173425,-0.002601,0.003750,0.249972,0,0);-ms-transform:matrix(0.173425,-0.002601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173425,-0.002601,0.003750,0.249972,0,0);}
.m8b_c00476{transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173505,-0.002603,0.003750,0.249972,0,0);}
.m10_c00476{transform:matrix(0.173770,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173770,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173770,-0.002607,0.003750,0.249972,0,0);}
.m36_c00476{transform:matrix(0.173830,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173830,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173830,-0.002607,0.003750,0.249972,0,0);}
.m7b_c00476{transform:matrix(0.173905,-0.002609,0.003750,0.249972,0,0);-ms-transform:matrix(0.173905,-0.002609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173905,-0.002609,0.003750,0.249972,0,0);}
.md3_c00476{transform:matrix(0.174040,-0.002611,0.003750,0.249972,0,0);-ms-transform:matrix(0.174040,-0.002611,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174040,-0.002611,0.003750,0.249972,0,0);}
.m57_c00476{transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);}
.m21_c00476{transform:matrix(0.174590,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174590,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174590,-0.002619,0.003750,0.249972,0,0);}
.mec_c00476{transform:matrix(0.174750,-0.002621,0.003750,0.249972,0,0);-ms-transform:matrix(0.174750,-0.002621,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174750,-0.002621,0.003750,0.249972,0,0);}
.m50_c00476{transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);-ms-transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175415,-0.002631,0.003750,0.249972,0,0);}
.mc1_c00476{transform:matrix(0.175545,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175545,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175545,-0.002633,0.003750,0.249972,0,0);}
.m7e_c00476{transform:matrix(0.177080,-0.002656,0.003750,0.249972,0,0);-ms-transform:matrix(0.177080,-0.002656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177080,-0.002656,0.003750,0.249972,0,0);}
.m1a_c00476{transform:matrix(0.177275,-0.002659,0.003750,0.249972,0,0);-ms-transform:matrix(0.177275,-0.002659,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177275,-0.002659,0.003750,0.249972,0,0);}
.m5e_c00476{transform:matrix(0.177400,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177400,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177400,-0.002661,0.003750,0.249972,0,0);}
.m18_c00476{transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177700,-0.002666,0.003750,0.249972,0,0);}
.mc3_c00476{transform:matrix(0.178010,-0.002670,0.003750,0.249972,0,0);-ms-transform:matrix(0.178010,-0.002670,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178010,-0.002670,0.003750,0.249972,0,0);}
.m98_c00476{transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178040,-0.002671,0.003750,0.249972,0,0);}
.ma6_c00476{transform:matrix(0.178345,-0.002675,0.003750,0.249972,0,0);-ms-transform:matrix(0.178345,-0.002675,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178345,-0.002675,0.003750,0.249972,0,0);}
.m34_c00476{transform:matrix(0.178945,-0.002684,0.003750,0.249972,0,0);-ms-transform:matrix(0.178945,-0.002684,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178945,-0.002684,0.003750,0.249972,0,0);}
.mef_c00476{transform:matrix(0.179175,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179175,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179175,-0.002688,0.003750,0.249972,0,0);}
.me9_c00476{transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180015,-0.002700,0.003750,0.249972,0,0);}
.m6b_c00476{transform:matrix(0.180235,-0.002704,0.003750,0.249972,0,0);-ms-transform:matrix(0.180235,-0.002704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180235,-0.002704,0.003750,0.249972,0,0);}
.m38_c00476{transform:matrix(0.180300,-0.002704,0.003750,0.249972,0,0);-ms-transform:matrix(0.180300,-0.002704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180300,-0.002704,0.003750,0.249972,0,0);}
.m8f_c00476{transform:matrix(0.180495,-0.002707,0.003750,0.249972,0,0);-ms-transform:matrix(0.180495,-0.002707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180495,-0.002707,0.003750,0.249972,0,0);}
.m53_c00476{transform:matrix(0.180620,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180620,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180620,-0.002709,0.003750,0.249972,0,0);}
.m45_c00476{transform:matrix(0.180855,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180855,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180855,-0.002713,0.003750,0.249972,0,0);}
.m60_c00476{transform:matrix(0.180905,-0.002714,0.003750,0.249972,0,0);-ms-transform:matrix(0.180905,-0.002714,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180905,-0.002714,0.003750,0.249972,0,0);}
.md0_c00476{transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181230,-0.002718,0.003750,0.249972,0,0);}
.m9d_c00476{transform:matrix(0.181445,-0.002722,0.003750,0.249972,0,0);-ms-transform:matrix(0.181445,-0.002722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181445,-0.002722,0.003750,0.249972,0,0);}
.maa_c00476{transform:matrix(0.182145,-0.002732,0.003750,0.249972,0,0);-ms-transform:matrix(0.182145,-0.002732,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182145,-0.002732,0.003750,0.249972,0,0);}
.mea_c00476{transform:matrix(0.182314,-0.002735,0.003750,0.249972,0,0);-ms-transform:matrix(0.182314,-0.002735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182314,-0.002735,0.003750,0.249972,0,0);}
.me1_c00476{transform:matrix(0.182329,-0.002735,0.003750,0.249972,0,0);-ms-transform:matrix(0.182329,-0.002735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182329,-0.002735,0.003750,0.249972,0,0);}
.m62_c00476{transform:matrix(0.182359,-0.002735,0.003750,0.249972,0,0);-ms-transform:matrix(0.182359,-0.002735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182359,-0.002735,0.003750,0.249972,0,0);}
.mb6_c00476{transform:matrix(0.182604,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182604,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182604,-0.002739,0.003750,0.249972,0,0);}
.ma8_c00476{transform:matrix(0.182659,-0.002740,0.003750,0.249972,0,0);-ms-transform:matrix(0.182659,-0.002740,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182659,-0.002740,0.003750,0.249972,0,0);}
.mc7_c00476{transform:matrix(0.182749,-0.002741,0.003750,0.249972,0,0);-ms-transform:matrix(0.182749,-0.002741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182749,-0.002741,0.003750,0.249972,0,0);}
.m6f_c00476{transform:matrix(0.182844,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182844,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182844,-0.002743,0.003750,0.249972,0,0);}
.m20_c00476{transform:matrix(0.183839,-0.002758,0.003750,0.249972,0,0);-ms-transform:matrix(0.183839,-0.002758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183839,-0.002758,0.003750,0.249972,0,0);}
.mcd_c00476{transform:matrix(0.184234,-0.002764,0.003750,0.249972,0,0);-ms-transform:matrix(0.184234,-0.002764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184234,-0.002764,0.003750,0.249972,0,0);}
.maf_c00476{transform:matrix(0.184794,-0.002772,0.003750,0.249972,0,0);-ms-transform:matrix(0.184794,-0.002772,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184794,-0.002772,0.003750,0.249972,0,0);}
.m15_c00476{transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);-ms-transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184949,-0.002774,0.003750,0.249972,0,0);}
.md2_c00476{transform:matrix(0.185039,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185039,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185039,-0.002776,0.003750,0.249972,0,0);}
.m16_c00476{transform:matrix(0.185134,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185134,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185134,-0.002777,0.003750,0.249972,0,0);}
.m96_c00476{transform:matrix(0.185139,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185139,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185139,-0.002777,0.003750,0.249972,0,0);}
.mc5_c00476{transform:matrix(0.185889,-0.002788,0.003750,0.249972,0,0);-ms-transform:matrix(0.185889,-0.002788,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185889,-0.002788,0.003750,0.249972,0,0);}
.m49_c00476{transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);-ms-transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);}
.m51_c00476{transform:matrix(0.186074,-0.002791,0.003750,0.249972,0,0);-ms-transform:matrix(0.186074,-0.002791,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186074,-0.002791,0.003750,0.249972,0,0);}
.m61_c00476{transform:matrix(0.186569,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186569,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186569,-0.002799,0.003750,0.249972,0,0);}
.mab_c00476{transform:matrix(0.187384,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187384,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187384,-0.002811,0.003750,0.249972,0,0);}
.m8e_c00476{transform:matrix(0.187504,-0.002813,0.003750,0.249972,0,0);-ms-transform:matrix(0.187504,-0.002813,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187504,-0.002813,0.003750,0.249972,0,0);}
.m58_c00476{transform:matrix(0.187694,-0.002815,0.003750,0.249972,0,0);-ms-transform:matrix(0.187694,-0.002815,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187694,-0.002815,0.003750,0.249972,0,0);}
.mb0_c00476{transform:matrix(0.187934,-0.002819,0.003750,0.249972,0,0);-ms-transform:matrix(0.187934,-0.002819,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187934,-0.002819,0.003750,0.249972,0,0);}
.m9a_c00476{transform:matrix(0.188039,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188039,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188039,-0.002821,0.003750,0.249972,0,0);}
.mb9_c00476{transform:matrix(0.188144,-0.002822,0.003750,0.249972,0,0);-ms-transform:matrix(0.188144,-0.002822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188144,-0.002822,0.003750,0.249972,0,0);}
.m72_c00476{transform:matrix(0.188394,-0.002826,0.003750,0.249972,0,0);-ms-transform:matrix(0.188394,-0.002826,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188394,-0.002826,0.003750,0.249972,0,0);}
.ma5_c00476{transform:matrix(0.188859,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188859,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188859,-0.002833,0.003750,0.249972,0,0);}
.mb2_c00476{transform:matrix(0.189134,-0.002837,0.003750,0.249972,0,0);-ms-transform:matrix(0.189134,-0.002837,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189134,-0.002837,0.003750,0.249972,0,0);}
.m5b_c00476{transform:matrix(0.189659,-0.002845,0.003750,0.249972,0,0);-ms-transform:matrix(0.189659,-0.002845,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189659,-0.002845,0.003750,0.249972,0,0);}
.m19_c00476{transform:matrix(0.189839,-0.002848,0.003750,0.249972,0,0);-ms-transform:matrix(0.189839,-0.002848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189839,-0.002848,0.003750,0.249972,0,0);}
.mae_c00476{transform:matrix(0.190034,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190034,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190034,-0.002851,0.003750,0.249972,0,0);}
.mb5_c00476{transform:matrix(0.190134,-0.002852,0.003750,0.249972,0,0);-ms-transform:matrix(0.190134,-0.002852,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190134,-0.002852,0.003750,0.249972,0,0);}
.mc2_c00476{transform:matrix(0.190229,-0.002853,0.003750,0.249972,0,0);-ms-transform:matrix(0.190229,-0.002853,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190229,-0.002853,0.003750,0.249972,0,0);}
.m56_c00476{transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190604,-0.002859,0.003750,0.249972,0,0);}
.m25_c00476{transform:matrix(0.190679,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190679,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190679,-0.002860,0.003750,0.249972,0,0);}
.m1f_c00476{transform:matrix(0.190889,-0.002863,0.003750,0.249972,0,0);-ms-transform:matrix(0.190889,-0.002863,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190889,-0.002863,0.003750,0.249972,0,0);}
.mb3_c00476{transform:matrix(0.190934,-0.002864,0.003750,0.249972,0,0);-ms-transform:matrix(0.190934,-0.002864,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190934,-0.002864,0.003750,0.249972,0,0);}
.m80_c00476{transform:matrix(0.191054,-0.002866,0.003750,0.249972,0,0);-ms-transform:matrix(0.191054,-0.002866,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191054,-0.002866,0.003750,0.249972,0,0);}
.mce_c00476{transform:matrix(0.191148,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191148,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191148,-0.002867,0.003750,0.249972,0,0);}
.m8c_c00476{transform:matrix(0.191453,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191453,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191453,-0.002872,0.003750,0.249972,0,0);}
.m4e_c00476{transform:matrix(0.191668,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191668,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191668,-0.002875,0.003750,0.249972,0,0);}
.m48_c00476{transform:matrix(0.191723,-0.002876,0.003750,0.249972,0,0);-ms-transform:matrix(0.191723,-0.002876,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191723,-0.002876,0.003750,0.249972,0,0);}
.mcf_c00476{transform:matrix(0.192133,-0.002882,0.003750,0.249972,0,0);-ms-transform:matrix(0.192133,-0.002882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192133,-0.002882,0.003750,0.249972,0,0);}
.mcb_c00476{transform:matrix(0.192433,-0.002887,0.003750,0.249972,0,0);-ms-transform:matrix(0.192433,-0.002887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192433,-0.002887,0.003750,0.249972,0,0);}
.m87_c00476{transform:matrix(0.192528,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192528,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192528,-0.002888,0.003750,0.249972,0,0);}
.m4c_c00476{transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192658,-0.002890,0.003750,0.249972,0,0);}
.m27_c00476{transform:matrix(0.192733,-0.002891,0.003750,0.249972,0,0);-ms-transform:matrix(0.192733,-0.002891,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192733,-0.002891,0.003750,0.249972,0,0);}
.m7d_c00476{transform:matrix(0.192858,-0.002893,0.003750,0.249972,0,0);-ms-transform:matrix(0.192858,-0.002893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192858,-0.002893,0.003750,0.249972,0,0);}
.m5a_c00476{transform:matrix(0.193448,-0.002902,0.003750,0.249972,0,0);-ms-transform:matrix(0.193448,-0.002902,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193448,-0.002902,0.003750,0.249972,0,0);}
.m55_c00476{transform:matrix(0.194058,-0.002911,0.003750,0.249972,0,0);-ms-transform:matrix(0.194058,-0.002911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194058,-0.002911,0.003750,0.249972,0,0);}
.m4a_c00476{transform:matrix(0.194358,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194358,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194358,-0.002915,0.003750,0.249972,0,0);}
.m23_c00476{transform:matrix(0.194648,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194648,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194648,-0.002920,0.003750,0.249972,0,0);}
.mb1_c00476{transform:matrix(0.194733,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194733,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194733,-0.002921,0.003750,0.249972,0,0);}
.m54_c00476{transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);-ms-transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194788,-0.002922,0.003750,0.249972,0,0);}
.m6e_c00476{transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195258,-0.002929,0.003750,0.249972,0,0);}
.m71_c00476{transform:matrix(0.196033,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.196033,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196033,-0.002940,0.003750,0.249972,0,0);}
.m1b_c00476{transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);}
.m7c_c00476{transform:matrix(0.196563,-0.002948,0.003750,0.249972,0,0);-ms-transform:matrix(0.196563,-0.002948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196563,-0.002948,0.003750,0.249972,0,0);}
.mac_c00476{transform:matrix(0.196738,-0.002951,0.003750,0.249972,0,0);-ms-transform:matrix(0.196738,-0.002951,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196738,-0.002951,0.003750,0.249972,0,0);}
.mad_c00476{transform:matrix(0.197188,-0.002958,0.003750,0.249972,0,0);-ms-transform:matrix(0.197188,-0.002958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197188,-0.002958,0.003750,0.249972,0,0);}
.m84_c00476{transform:matrix(0.197273,-0.002959,0.003750,0.249972,0,0);-ms-transform:matrix(0.197273,-0.002959,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197273,-0.002959,0.003750,0.249972,0,0);}
.m75_c00476{transform:matrix(0.197408,-0.002961,0.003750,0.249972,0,0);-ms-transform:matrix(0.197408,-0.002961,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197408,-0.002961,0.003750,0.249972,0,0);}
.m5d_c00476{transform:matrix(0.197513,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197513,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197513,-0.002963,0.003750,0.249972,0,0);}
.m46_c00476{transform:matrix(0.197543,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197543,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197543,-0.002963,0.003750,0.249972,0,0);}
.m44_c00476{transform:matrix(0.198358,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198358,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198358,-0.002975,0.003750,0.249972,0,0);}
.md4_c00476{transform:matrix(0.198578,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198578,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198578,-0.002979,0.003750,0.249972,0,0);}
.m86_c00476{transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);-ms-transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199053,-0.002986,0.003750,0.249972,0,0);}
.md8_c00476{transform:matrix(0.199183,-0.002988,0.003750,0.249972,0,0);-ms-transform:matrix(0.199183,-0.002988,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199183,-0.002988,0.003750,0.249972,0,0);}
.mca_c00476{transform:matrix(0.199358,-0.002990,0.003750,0.249972,0,0);-ms-transform:matrix(0.199358,-0.002990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199358,-0.002990,0.003750,0.249972,0,0);}
.m74_c00476{transform:matrix(0.199438,-0.002992,0.003750,0.249972,0,0);-ms-transform:matrix(0.199438,-0.002992,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199438,-0.002992,0.003750,0.249972,0,0);}
.m89_c00476{transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);-ms-transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199513,-0.002993,0.003750,0.249972,0,0);}
.ma2_c00476{transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);}
.mee_c00476{transform:matrix(0.199858,-0.002998,0.003750,0.249972,0,0);-ms-transform:matrix(0.199858,-0.002998,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199858,-0.002998,0.003750,0.249972,0,0);}
.m4b_c00476{transform:matrix(0.200542,-0.003008,0.003750,0.249972,0,0);-ms-transform:matrix(0.200542,-0.003008,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200542,-0.003008,0.003750,0.249972,0,0);}
.md7_c00476{transform:matrix(0.201262,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201262,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201262,-0.003019,0.003750,0.249972,0,0);}
.me3_c00476{transform:matrix(0.202287,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202287,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202287,-0.003034,0.003750,0.249972,0,0);}
.me6_c00476{transform:matrix(0.202557,-0.003038,0.003750,0.249972,0,0);-ms-transform:matrix(0.202557,-0.003038,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202557,-0.003038,0.003750,0.249972,0,0);}
.m40_c00476{transform:matrix(0.202697,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202697,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202697,-0.003040,0.003750,0.249972,0,0);}
.m31_c00476{transform:matrix(0.202842,-0.003043,0.003750,0.249972,0,0);-ms-transform:matrix(0.202842,-0.003043,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202842,-0.003043,0.003750,0.249972,0,0);}
.mbb_c00476{transform:matrix(0.203762,-0.003056,0.003750,0.249972,0,0);-ms-transform:matrix(0.203762,-0.003056,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203762,-0.003056,0.003750,0.249972,0,0);}
.me2_c00476{transform:matrix(0.203767,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203767,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203767,-0.003057,0.003750,0.249972,0,0);}
.mde_c00476{transform:matrix(0.203982,-0.003060,0.003750,0.249972,0,0);-ms-transform:matrix(0.203982,-0.003060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203982,-0.003060,0.003750,0.249972,0,0);}
.m94_c00476{transform:matrix(0.204087,-0.003061,0.003750,0.249972,0,0);-ms-transform:matrix(0.204087,-0.003061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204087,-0.003061,0.003750,0.249972,0,0);}
.m9f_c00476{transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);-ms-transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204642,-0.003070,0.003750,0.249972,0,0);}
.m17_c00476{transform:matrix(0.205037,-0.003076,0.003750,0.249972,0,0);-ms-transform:matrix(0.205037,-0.003076,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205037,-0.003076,0.003750,0.249972,0,0);}
.m26_c00476{transform:matrix(0.205657,-0.003085,0.003750,0.249972,0,0);-ms-transform:matrix(0.205657,-0.003085,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205657,-0.003085,0.003750,0.249972,0,0);}
.m77_c00476{transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206217,-0.003093,0.003750,0.249972,0,0);}
.m9c_c00476{transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);-ms-transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206862,-0.003103,0.003750,0.249972,0,0);}
.m91_c00476{transform:matrix(0.207247,-0.003109,0.003750,0.249972,0,0);-ms-transform:matrix(0.207247,-0.003109,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207247,-0.003109,0.003750,0.249972,0,0);}
.m7a_c00476{transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207542,-0.003113,0.003750,0.249972,0,0);}
.m79_c00476{transform:matrix(0.207547,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207547,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207547,-0.003113,0.003750,0.249972,0,0);}
.m3f_c00476{transform:matrix(0.207902,-0.003119,0.003750,0.249972,0,0);-ms-transform:matrix(0.207902,-0.003119,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207902,-0.003119,0.003750,0.249972,0,0);}
.m99_c00476{transform:matrix(0.208202,-0.003123,0.003750,0.249972,0,0);-ms-transform:matrix(0.208202,-0.003123,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208202,-0.003123,0.003750,0.249972,0,0);}
.m93_c00476{transform:matrix(0.208217,-0.003123,0.003750,0.249972,0,0);-ms-transform:matrix(0.208217,-0.003123,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208217,-0.003123,0.003750,0.249972,0,0);}
.m7f_c00476{transform:matrix(0.209091,-0.003136,0.003750,0.249972,0,0);-ms-transform:matrix(0.209091,-0.003136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209091,-0.003136,0.003750,0.249972,0,0);}
.m2_c00476{transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209351,-0.003140,0.003750,0.249972,0,0);}
.m68_c00476{transform:matrix(0.209486,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209486,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209486,-0.003142,0.003750,0.249972,0,0);}
.m13_c00476{transform:matrix(0.209841,-0.003148,0.003750,0.249972,0,0);-ms-transform:matrix(0.209841,-0.003148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209841,-0.003148,0.003750,0.249972,0,0);}
.m39_c00476{transform:matrix(0.210146,-0.003152,0.003750,0.249972,0,0);-ms-transform:matrix(0.210146,-0.003152,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210146,-0.003152,0.003750,0.249972,0,0);}
.m4f_c00476{transform:matrix(0.210376,-0.003156,0.003750,0.249972,0,0);-ms-transform:matrix(0.210376,-0.003156,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210376,-0.003156,0.003750,0.249972,0,0);}
.mc0_c00476{transform:matrix(0.210681,-0.003160,0.003750,0.249972,0,0);-ms-transform:matrix(0.210681,-0.003160,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210681,-0.003160,0.003750,0.249972,0,0);}
.mc8_c00476{transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);}
.mb_c00476{transform:matrix(0.211361,-0.003170,0.003750,0.249972,0,0);-ms-transform:matrix(0.211361,-0.003170,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211361,-0.003170,0.003750,0.249972,0,0);}
.mf_c00476{transform:matrix(0.211466,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211466,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211466,-0.003172,0.003750,0.249972,0,0);}
.m2a_c00476{transform:matrix(0.211661,-0.003175,0.003750,0.249972,0,0);-ms-transform:matrix(0.211661,-0.003175,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211661,-0.003175,0.003750,0.249972,0,0);}
.m37_c00476{transform:matrix(0.211946,-0.003179,0.003750,0.249972,0,0);-ms-transform:matrix(0.211946,-0.003179,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211946,-0.003179,0.003750,0.249972,0,0);}
.m2e_c00476{transform:matrix(0.211971,-0.003180,0.003750,0.249972,0,0);-ms-transform:matrix(0.211971,-0.003180,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211971,-0.003180,0.003750,0.249972,0,0);}
.m8a_c00476{transform:matrix(0.213106,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213106,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213106,-0.003197,0.003750,0.249972,0,0);}
.m5_c00476{transform:matrix(0.213476,-0.003202,0.003750,0.249972,0,0);-ms-transform:matrix(0.213476,-0.003202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213476,-0.003202,0.003750,0.249972,0,0);}
.mbd_c00476{transform:matrix(0.213911,-0.003209,0.003750,0.249972,0,0);-ms-transform:matrix(0.213911,-0.003209,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213911,-0.003209,0.003750,0.249972,0,0);}
.m3e_c00476{transform:matrix(0.214546,-0.003218,0.003750,0.249972,0,0);-ms-transform:matrix(0.214546,-0.003218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214546,-0.003218,0.003750,0.249972,0,0);}
.m3a_c00476{transform:matrix(0.214881,-0.003223,0.003750,0.249972,0,0);-ms-transform:matrix(0.214881,-0.003223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214881,-0.003223,0.003750,0.249972,0,0);}
.mbf_c00476{transform:matrix(0.215446,-0.003232,0.003750,0.249972,0,0);-ms-transform:matrix(0.215446,-0.003232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215446,-0.003232,0.003750,0.249972,0,0);}
.m1e_c00476{transform:matrix(0.216156,-0.003242,0.003750,0.249972,0,0);-ms-transform:matrix(0.216156,-0.003242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216156,-0.003242,0.003750,0.249972,0,0);}
.m65_c00476{transform:matrix(0.216811,-0.003252,0.003750,0.249972,0,0);-ms-transform:matrix(0.216811,-0.003252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216811,-0.003252,0.003750,0.249972,0,0);}
.m11_c00476{transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);-ms-transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216876,-0.003253,0.003750,0.249972,0,0);}
.m3c_c00476{transform:matrix(0.216956,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216956,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216956,-0.003254,0.003750,0.249972,0,0);}
.m82_c00476{transform:matrix(0.217026,-0.003255,0.003750,0.249972,0,0);-ms-transform:matrix(0.217026,-0.003255,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217026,-0.003255,0.003750,0.249972,0,0);}
.m69_c00476{transform:matrix(0.217591,-0.003264,0.003750,0.249972,0,0);-ms-transform:matrix(0.217591,-0.003264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217591,-0.003264,0.003750,0.249972,0,0);}
.m22_c00476{transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);-ms-transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217696,-0.003265,0.003750,0.249972,0,0);}
.m1d_c00476{transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-ms-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);}
.mc4_c00476{transform:matrix(0.218140,-0.003272,0.003750,0.249972,0,0);-ms-transform:matrix(0.218140,-0.003272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218140,-0.003272,0.003750,0.249972,0,0);}
.m88_c00476{transform:matrix(0.218255,-0.003274,0.003750,0.249972,0,0);-ms-transform:matrix(0.218255,-0.003274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218255,-0.003274,0.003750,0.249972,0,0);}
.me_c00476{transform:matrix(0.218800,-0.003282,0.003750,0.249972,0,0);-ms-transform:matrix(0.218800,-0.003282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218800,-0.003282,0.003750,0.249972,0,0);}
.m29_c00476{transform:matrix(0.219280,-0.003289,0.003750,0.249972,0,0);-ms-transform:matrix(0.219280,-0.003289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219280,-0.003289,0.003750,0.249972,0,0);}
.m30_c00476{transform:matrix(0.219515,-0.003293,0.003750,0.249972,0,0);-ms-transform:matrix(0.219515,-0.003293,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219515,-0.003293,0.003750,0.249972,0,0);}
.m85_c00476{transform:matrix(0.220835,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220835,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220835,-0.003313,0.003750,0.249972,0,0);}
.ma3_c00476{transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221110,-0.003317,0.003750,0.249972,0,0);}
.m6a_c00476{transform:matrix(0.221180,-0.003318,0.003750,0.249972,0,0);-ms-transform:matrix(0.221180,-0.003318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221180,-0.003318,0.003750,0.249972,0,0);}
.me5_c00476{transform:matrix(0.221375,-0.003321,0.003750,0.249972,0,0);-ms-transform:matrix(0.221375,-0.003321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221375,-0.003321,0.003750,0.249972,0,0);}
.m35_c00476{transform:matrix(0.221550,-0.003323,0.003750,0.249972,0,0);-ms-transform:matrix(0.221550,-0.003323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221550,-0.003323,0.003750,0.249972,0,0);}
.m63_c00476{transform:matrix(0.221660,-0.003325,0.003750,0.249972,0,0);-ms-transform:matrix(0.221660,-0.003325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221660,-0.003325,0.003750,0.249972,0,0);}
.m8d_c00476{transform:matrix(0.221670,-0.003325,0.003750,0.249972,0,0);-ms-transform:matrix(0.221670,-0.003325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221670,-0.003325,0.003750,0.249972,0,0);}
.mdb_c00476{transform:matrix(0.221675,-0.003325,0.003750,0.249972,0,0);-ms-transform:matrix(0.221675,-0.003325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221675,-0.003325,0.003750,0.249972,0,0);}
.mbe_c00476{transform:matrix(0.221815,-0.003327,0.003750,0.249972,0,0);-ms-transform:matrix(0.221815,-0.003327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221815,-0.003327,0.003750,0.249972,0,0);}
.m70_c00476{transform:matrix(0.221910,-0.003329,0.003750,0.249972,0,0);-ms-transform:matrix(0.221910,-0.003329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221910,-0.003329,0.003750,0.249972,0,0);}
.m5c_c00476{transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);-ms-transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222625,-0.003339,0.003750,0.249972,0,0);}
.m28_c00476{transform:matrix(0.223020,-0.003345,0.003750,0.249972,0,0);-ms-transform:matrix(0.223020,-0.003345,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223020,-0.003345,0.003750,0.249972,0,0);}
.m3d_c00476{transform:matrix(0.223710,-0.003356,0.003750,0.249972,0,0);-ms-transform:matrix(0.223710,-0.003356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223710,-0.003356,0.003750,0.249972,0,0);}
.m92_c00476{transform:matrix(0.225080,-0.003376,0.003750,0.249972,0,0);-ms-transform:matrix(0.225080,-0.003376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225080,-0.003376,0.003750,0.249972,0,0);}
.m2d_c00476{transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);-ms-transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);}
.m9b_c00476{transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);-ms-transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);}
.me0_c00476{transform:matrix(0.225560,-0.003383,0.003750,0.249972,0,0);-ms-transform:matrix(0.225560,-0.003383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225560,-0.003383,0.003750,0.249972,0,0);}
.m6_c00476{transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);-ms-transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226085,-0.003391,0.003750,0.249972,0,0);}
.me4_c00476{transform:matrix(0.227389,-0.003411,0.003750,0.249972,0,0);-ms-transform:matrix(0.227389,-0.003411,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227389,-0.003411,0.003750,0.249972,0,0);}
.ma1_c00476{transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);-ms-transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);}
.mdd_c00476{transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);-ms-transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228369,-0.003426,0.003750,0.249972,0,0);}
.m2c_c00476{transform:matrix(0.228384,-0.003426,0.003750,0.249972,0,0);-ms-transform:matrix(0.228384,-0.003426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228384,-0.003426,0.003750,0.249972,0,0);}
.mdf_c00476{transform:matrix(0.228429,-0.003426,0.003750,0.249972,0,0);-ms-transform:matrix(0.228429,-0.003426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228429,-0.003426,0.003750,0.249972,0,0);}
.m42_c00476{transform:matrix(0.228994,-0.003435,0.003750,0.249972,0,0);-ms-transform:matrix(0.228994,-0.003435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228994,-0.003435,0.003750,0.249972,0,0);}
.m2f_c00476{transform:matrix(0.229079,-0.003436,0.003750,0.249972,0,0);-ms-transform:matrix(0.229079,-0.003436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229079,-0.003436,0.003750,0.249972,0,0);}
.m83_c00476{transform:matrix(0.230489,-0.003457,0.003750,0.249972,0,0);-ms-transform:matrix(0.230489,-0.003457,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230489,-0.003457,0.003750,0.249972,0,0);}
.m1c_c00476{transform:matrix(0.230649,-0.003460,0.003750,0.249972,0,0);-ms-transform:matrix(0.230649,-0.003460,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230649,-0.003460,0.003750,0.249972,0,0);}
.ma0_c00476{transform:matrix(0.230994,-0.003465,0.003750,0.249972,0,0);-ms-transform:matrix(0.230994,-0.003465,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230994,-0.003465,0.003750,0.249972,0,0);}
.m4_c00476{transform:matrix(0.232639,-0.003490,0.003750,0.249972,0,0);-ms-transform:matrix(0.232639,-0.003490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232639,-0.003490,0.003750,0.249972,0,0);}
.m90_c00476{transform:matrix(0.233604,-0.003504,0.003750,0.249972,0,0);-ms-transform:matrix(0.233604,-0.003504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233604,-0.003504,0.003750,0.249972,0,0);}
.mdc_c00476{transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);-ms-transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235519,-0.003533,0.003750,0.249972,0,0);}
.me7_c00476{transform:matrix(0.237268,-0.003559,0.003750,0.249972,0,0);-ms-transform:matrix(0.237268,-0.003559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237268,-0.003559,0.003750,0.249972,0,0);}
.m9e_c00476{transform:matrix(0.237348,-0.003560,0.003750,0.249972,0,0);-ms-transform:matrix(0.237348,-0.003560,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237348,-0.003560,0.003750,0.249972,0,0);}
.md1_c00476{transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);}
.m1_c00476{transform:matrix(0.238323,-0.003575,0.003750,0.249972,0,0);-ms-transform:matrix(0.238323,-0.003575,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238323,-0.003575,0.003750,0.249972,0,0);}
.md_c00476{transform:matrix(0.241283,-0.003619,0.003750,0.249972,0,0);-ms-transform:matrix(0.241283,-0.003619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241283,-0.003619,0.003750,0.249972,0,0);}
.m3b_c00476{transform:matrix(0.242443,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242443,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242443,-0.003637,0.003750,0.249972,0,0);}
.m2b_c00476{transform:matrix(0.242458,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242458,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242458,-0.003637,0.003750,0.249972,0,0);}
.m8_c00476{transform:matrix(0.245842,-0.003688,0.003750,0.249972,0,0);-ms-transform:matrix(0.245842,-0.003688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245842,-0.003688,0.003750,0.249972,0,0);}
.mc_c00476{transform:matrix(0.248962,-0.003734,0.003750,0.249972,0,0);-ms-transform:matrix(0.248962,-0.003734,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248962,-0.003734,0.003750,0.249972,0,0);}
.md5_c00476{transform:matrix(0.252882,-0.003793,0.003750,0.249972,0,0);-ms-transform:matrix(0.252882,-0.003793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252882,-0.003793,0.003750,0.249972,0,0);}
.m9_c00476{transform:matrix(0.254431,-0.003816,0.003750,0.249972,0,0);-ms-transform:matrix(0.254431,-0.003816,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254431,-0.003816,0.003750,0.249972,0,0);}
.m3_c00476{transform:matrix(0.256516,-0.003848,0.003750,0.249972,0,0);-ms-transform:matrix(0.256516,-0.003848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256516,-0.003848,0.003750,0.249972,0,0);}
.m43_c00476{transform:matrix(0.259481,-0.003892,0.003750,0.249972,0,0);-ms-transform:matrix(0.259481,-0.003892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259481,-0.003892,0.003750,0.249972,0,0);}
.mb7_c00476{transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);-ms-transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);}
.mb8_c00476{transform:matrix(0.279399,-0.004191,0.003750,0.249972,0,0);-ms-transform:matrix(0.279399,-0.004191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279399,-0.004191,0.003750,0.249972,0,0);}
.m73_c00476{transform:matrix(0.284683,-0.004270,0.003750,0.249972,0,0);-ms-transform:matrix(0.284683,-0.004270,0.003750,0.249972,0,0);-webkit-transform:matrix(0.284683,-0.004270,0.003750,0.249972,0,0);}
.mda_c00476{transform:matrix(0.337497,-0.005062,0.003750,0.249972,0,0);-ms-transform:matrix(0.337497,-0.005062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.337497,-0.005062,0.003750,0.249972,0,0);}
.m7_c00476{transform:matrix(0.338287,-0.005074,0.003750,0.249972,0,0);-ms-transform:matrix(0.338287,-0.005074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.338287,-0.005074,0.003750,0.249972,0,0);}
.md9_c00476{transform:matrix(0.357490,-0.005362,0.003750,0.249972,0,0);-ms-transform:matrix(0.357490,-0.005362,0.003750,0.249972,0,0);-webkit-transform:matrix(0.357490,-0.005362,0.003750,0.249972,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:0.000000px;}
.fc0_c00476{color:transparent;}
.fsd_c00476{font-size:55.656260px;}
.fs2_c00476{font-size:57.756497px;}
.fs5_c00476{font-size:58.806615px;}
.fs9_c00476{font-size:59.856733px;}
.fs1_c00476{font-size:60.906851px;}
.fs8_c00476{font-size:61.956969px;}
.fs4_c00476{font-size:63.007087px;}
.fs7_c00476{font-size:64.057205px;}
.fs3_c00476{font-size:65.107323px;}
.fsb_c00476{font-size:66.157441px;}
.fsa_c00476{font-size:67.207560px;}
.fsc_c00476{font-size:69.307796px;}
.fse_c00476{font-size:70.357914px;}
.fs6_c00476{font-size:71.408032px;}
.fs0_c00476{font-size:78.750000px;}
.y0_c00476{bottom:0.000000px;}
.yeb_c00476{bottom:34.220887px;}
.yec_c00476{bottom:34.813605px;}
.yed_c00476{bottom:35.420265px;}
.yee_c00476{bottom:35.906265px;}
.yef_c00476{bottom:36.213765px;}
.yf0_c00476{bottom:37.264492px;}
.yf1_c00476{bottom:37.794735px;}
.yf2_c00476{bottom:38.756865px;}
.yf3_c00476{bottom:39.126030px;}
.ye4_c00476{bottom:53.393115px;}
.ye5_c00476{bottom:53.830275px;}
.ye6_c00476{bottom:54.475815px;}
.ye7_c00476{bottom:54.773392px;}
.ye8_c00476{bottom:55.654807px;}
.ye9_c00476{bottom:56.150205px;}
.yea_c00476{bottom:56.405677px;}
.yde_c00476{bottom:69.864592px;}
.ydf_c00476{bottom:70.945402px;}
.ye0_c00476{bottom:71.120812px;}
.ye1_c00476{bottom:72.039037px;}
.ye2_c00476{bottom:72.352125px;}
.ye3_c00476{bottom:73.077907px;}
.yd6_c00476{bottom:85.529512px;}
.yd7_c00476{bottom:85.873515px;}
.yd8_c00476{bottom:87.266932px;}
.yd9_c00476{bottom:87.616425px;}
.yda_c00476{bottom:88.992705px;}
.ydb_c00476{bottom:89.365582px;}
.ydc_c00476{bottom:90.408067px;}
.ydd_c00476{bottom:90.610245px;}
.ycf_c00476{bottom:104.970937px;}
.yd0_c00476{bottom:106.088557px;}
.yd1_c00476{bottom:107.269987px;}
.yd2_c00476{bottom:107.680275px;}
.yd3_c00476{bottom:108.259492px;}
.yd4_c00476{bottom:108.434047px;}
.yd5_c00476{bottom:109.097145px;}
.yc8_c00476{bottom:119.282572px;}
.yc9_c00476{bottom:119.639842px;}
.yca_c00476{bottom:120.908572px;}
.ycb_c00476{bottom:122.079600px;}
.ycc_c00476{bottom:122.477655px;}
.ycd_c00476{bottom:123.297615px;}
.yce_c00476{bottom:123.596010px;}
.yc3_c00476{bottom:137.914830px;}
.yc4_c00476{bottom:138.587242px;}
.yc5_c00476{bottom:139.784872px;}
.yc6_c00476{bottom:140.207175px;}
.yc7_c00476{bottom:140.920267px;}
.ybc_c00476{bottom:153.308475px;}
.ybd_c00476{bottom:153.638857px;}
.ybe_c00476{bottom:154.835220px;}
.ybf_c00476{bottom:155.259330px;}
.yc0_c00476{bottom:157.024387px;}
.yc1_c00476{bottom:158.168745px;}
.yc2_c00476{bottom:158.710207px;}
.yb5_c00476{bottom:170.864880px;}
.yb6_c00476{bottom:172.023735px;}
.yb7_c00476{bottom:172.217580px;}
.yb8_c00476{bottom:172.877962px;}
.yb9_c00476{bottom:173.882010px;}
.yba_c00476{bottom:175.053495px;}
.ybb_c00476{bottom:175.523587px;}
.yaf_c00476{bottom:187.605615px;}
.yb0_c00476{bottom:189.257467px;}
.yb1_c00476{bottom:190.478295px;}
.yb2_c00476{bottom:191.934202px;}
.yb3_c00476{bottom:192.652905px;}
.yb4_c00476{bottom:192.864315px;}
.ya6_c00476{bottom:204.345007px;}
.ya7_c00476{bottom:204.729015px;}
.ya8_c00476{bottom:205.239360px;}
.ya9_c00476{bottom:205.817047px;}
.yaa_c00476{bottom:206.188357px;}
.yab_c00476{bottom:207.505042px;}
.yac_c00476{bottom:207.809370px;}
.yad_c00476{bottom:208.144065px;}
.yae_c00476{bottom:209.534070px;}
.y9e_c00476{bottom:222.166530px;}
.y9f_c00476{bottom:222.960420px;}
.ya0_c00476{bottom:223.325122px;}
.ya1_c00476{bottom:224.377087px;}
.ya2_c00476{bottom:224.803620px;}
.ya3_c00476{bottom:225.443520px;}
.ya4_c00476{bottom:225.759442px;}
.ya5_c00476{bottom:226.143180px;}
.y96_c00476{bottom:239.449792px;}
.y97_c00476{bottom:240.098040px;}
.y98_c00476{bottom:240.405315px;}
.y99_c00476{bottom:241.444965px;}
.y9a_c00476{bottom:241.943452px;}
.y9b_c00476{bottom:242.456835px;}
.y9c_c00476{bottom:243.186465px;}
.y9d_c00476{bottom:243.531420px;}
.y8f_c00476{bottom:256.191802px;}
.y90_c00476{bottom:256.499175px;}
.y91_c00476{bottom:257.353065px;}
.y92_c00476{bottom:257.632732px;}
.y93_c00476{bottom:259.125540px;}
.y94_c00476{bottom:260.280907px;}
.y95_c00476{bottom:260.531430px;}
.y88_c00476{bottom:273.202500px;}
.y89_c00476{bottom:273.537817px;}
.y8a_c00476{bottom:274.170832px;}
.y8b_c00476{bottom:275.060887px;}
.y8c_c00476{bottom:275.471107px;}
.y8d_c00476{bottom:276.434895px;}
.y8e_c00476{bottom:276.779347px;}
.y80_c00476{bottom:289.407067px;}
.y81_c00476{bottom:289.848840px;}
.y82_c00476{bottom:291.465225px;}
.y83_c00476{bottom:292.578210px;}
.y84_c00476{bottom:292.900657px;}
.y85_c00476{bottom:293.295097px;}
.y86_c00476{bottom:293.673397px;}
.y87_c00476{bottom:294.555547px;}
.y78_c00476{bottom:307.227465px;}
.y79_c00476{bottom:307.554525px;}
.y7a_c00476{bottom:308.509935px;}
.y7b_c00476{bottom:308.861655px;}
.y7c_c00476{bottom:310.262527px;}
.y7d_c00476{bottom:311.354827px;}
.y7e_c00476{bottom:311.758432px;}
.y7f_c00476{bottom:312.214327px;}
.y6f_c00476{bottom:325.049340px;}
.y70_c00476{bottom:325.390057px;}
.y71_c00476{bottom:325.657762px;}
.y72_c00476{bottom:325.925040px;}
.y73_c00476{bottom:326.613652px;}
.y74_c00476{bottom:326.917605px;}
.y75_c00476{bottom:327.722610px;}
.y76_c00476{bottom:328.180327px;}
.y77_c00476{bottom:328.797007px;}
.y67_c00476{bottom:340.447095px;}
.y68_c00476{bottom:341.983605px;}
.y69_c00476{bottom:342.488175px;}
.y6a_c00476{bottom:342.752017px;}
.y6b_c00476{bottom:344.068312px;}
.y6c_c00476{bottom:344.733570px;}
.y6d_c00476{bottom:345.216127px;}
.y6e_c00476{bottom:346.330335px;}
.y5f_c00476{bottom:356.918722px;}
.y60_c00476{bottom:357.827985px;}
.y61_c00476{bottom:359.181817px;}
.y62_c00476{bottom:359.785837px;}
.y63_c00476{bottom:360.743467px;}
.y64_c00476{bottom:361.312777px;}
.y65_c00476{bottom:362.304487px;}
.y66_c00476{bottom:363.185917px;}
.y56_c00476{bottom:373.924837px;}
.y57_c00476{bottom:374.318797px;}
.y58_c00476{bottom:374.968875px;}
.y59_c00476{bottom:375.350947px;}
.y5a_c00476{bottom:375.558742px;}
.y5b_c00476{bottom:376.322190px;}
.y5c_c00476{bottom:376.843477px;}
.y5d_c00476{bottom:377.253592px;}
.y5e_c00476{bottom:377.510745px;}
.y4d_c00476{bottom:391.482600px;}
.y4e_c00476{bottom:392.827965px;}
.y4f_c00476{bottom:393.409432px;}
.y50_c00476{bottom:393.786203px;}
.y51_c00476{bottom:394.950300px;}
.y52_c00476{bottom:395.734125px;}
.y53_c00476{bottom:396.892942px;}
.y54_c00476{bottom:397.314105px;}
.y55_c00476{bottom:397.664077px;}
.y47_c00476{bottom:407.951842px;}
.y48_c00476{bottom:408.745657px;}
.y49_c00476{bottom:409.815487px;}
.y4a_c00476{bottom:410.824905px;}
.y4b_c00476{bottom:411.194827px;}
.y4c_c00476{bottom:411.882630px;}
.y41_c00476{bottom:424.425877px;}
.y42_c00476{bottom:425.325218px;}
.y43_c00476{bottom:427.084155px;}
.y44_c00476{bottom:427.910475px;}
.y45_c00476{bottom:428.207137px;}
.y46_c00476{bottom:429.371670px;}
.y3b_c00476{bottom:441.438765px;}
.y3c_c00476{bottom:442.223752px;}
.y3d_c00476{bottom:443.762978px;}
.y3e_c00476{bottom:445.271452px;}
.y3f_c00476{bottom:446.064510px;}
.y40_c00476{bottom:446.650672px;}
.y33_c00476{bottom:458.449132px;}
.y34_c00476{bottom:458.888460px;}
.y35_c00476{bottom:459.160440px;}
.y36_c00476{bottom:460.073295px;}
.y37_c00476{bottom:460.427693px;}
.y38_c00476{bottom:461.273347px;}
.y39_c00476{bottom:462.400583px;}
.y3a_c00476{bottom:462.775523px;}
.y2b_c00476{bottom:475.192492px;}
.y2c_c00476{bottom:475.669485px;}
.y2d_c00476{bottom:476.039558px;}
.y2e_c00476{bottom:477.352538px;}
.y2f_c00476{bottom:478.342530px;}
.y30_c00476{bottom:478.717770px;}
.y31_c00476{bottom:479.949090px;}
.y32_c00476{bottom:480.178688px;}
.y22_c00476{bottom:492.475740px;}
.y23_c00476{bottom:493.078350px;}
.y24_c00476{bottom:493.441987px;}
.y25_c00476{bottom:493.947345px;}
.y26_c00476{bottom:494.373593px;}
.y27_c00476{bottom:495.140745px;}
.y28_c00476{bottom:495.627915px;}
.y29_c00476{bottom:495.890295px;}
.y2a_c00476{bottom:497.211405px;}
.y19_c00476{bottom:508.946258px;}
.y1a_c00476{bottom:509.311635px;}
.y1b_c00476{bottom:510.250875px;}
.y1c_c00476{bottom:511.727865px;}
.y1d_c00476{bottom:512.284763px;}
.y1e_c00476{bottom:512.574547px;}
.y1f_c00476{bottom:513.257400px;}
.y20_c00476{bottom:513.616148px;}
.y21_c00476{bottom:514.247775px;}
.y13_c00476{bottom:526.498613px;}
.y14_c00476{bottom:526.740323px;}
.y15_c00476{bottom:528.088928px;}
.y16_c00476{bottom:528.650093px;}
.y17_c00476{bottom:529.393613px;}
.y18_c00476{bottom:530.584545px;}
.yb_c00476{bottom:542.972692px;}
.yc_c00476{bottom:543.556500px;}
.yd_c00476{bottom:544.647608px;}
.ye_c00476{bottom:546.098160px;}
.yf_c00476{bottom:546.336053px;}
.y10_c00476{bottom:547.463287px;}
.y11_c00476{bottom:548.063745px;}
.y12_c00476{bottom:548.431838px;}
.y2_c00476{bottom:560.523000px;}
.y3_c00476{bottom:561.341550px;}
.y4_c00476{bottom:561.617107px;}
.y5_c00476{bottom:562.583978px;}
.y6_c00476{bottom:562.783688px;}
.y7_c00476{bottom:563.638013px;}
.y8_c00476{bottom:563.756048px;}
.y9_c00476{bottom:564.764633px;}
.ya_c00476{bottom:564.963060px;}
.y1_c00476{bottom:575.911500px;}
.hf_c00476{height:55.656260px;}
.h4_c00476{height:57.756497px;}
.h7_c00476{height:58.806615px;}
.hb_c00476{height:59.856733px;}
.h3_c00476{height:60.906851px;}
.ha_c00476{height:61.956969px;}
.h6_c00476{height:63.007087px;}
.h9_c00476{height:64.057205px;}
.h5_c00476{height:65.107323px;}
.hd_c00476{height:66.157441px;}
.hc_c00476{height:67.207560px;}
.he_c00476{height:69.307796px;}
.h10_c00476{height:70.357914px;}
.h8_c00476{height:71.408032px;}
.h2_c00476{height:78.750000px;}
.h0_c00476{height:617.700000px;}
.h1_c00476{height:618.000000px;}
.w0_c00476{width:359.100000px;}
.w1_c00476{width:359.250000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:7.992000px;}
.x66_c00476{left:12.869302px;}
.xa_c00476{left:15.836460px;}
.x28_c00476{left:16.973190px;}
.x5c_c00476{left:18.064590px;}
.x62_c00476{left:19.111942px;}
.x18_c00476{left:20.418772px;}
.x12_c00476{left:24.713513px;}
.x81_c00476{left:29.082000px;}
.x58_c00476{left:35.626890px;}
.x13_c00476{left:37.426748px;}
.x19_c00476{left:39.676125px;}
.x2f_c00476{left:40.987597px;}
.x29_c00476{left:42.071182px;}
.xb_c00476{left:43.654462px;}
.x45_c00476{left:45.279322px;}
.x21_c00476{left:49.902870px;}
.x30_c00476{left:56.118922px;}
.x36_c00476{left:57.760785px;}
.x4d_c00476{left:59.142247px;}
.x2a_c00476{left:61.541512px;}
.x3_c00476{left:62.562000px;}
.x72_c00476{left:64.181752px;}
.x39_c00476{left:66.647205px;}
.x22_c00476{left:70.144470px;}
.x3c_c00476{left:73.893472px;}
.x56_c00476{left:76.061490px;}
.x41_c00476{left:77.653530px;}
.x4_c00476{left:80.932500px;}
.x60_c00476{left:82.558590px;}
.x51_c00476{left:87.394215px;}
.x1a_c00476{left:89.089155px;}
.x67_c00476{left:90.108802px;}
.x46_c00476{left:91.718520px;}
.x78_c00476{left:94.396920px;}
.xc_c00476{left:95.590283px;}
.x23_c00476{left:98.233710px;}
.x42_c00476{left:104.115262px;}
.x31_c00476{left:106.873650px;}
.x14_c00476{left:108.429495px;}
.x52_c00476{left:110.329807px;}
.x75_c00476{left:111.479512px;}
.x6b_c00476{left:115.820580px;}
.x70_c00476{left:116.916090px;}
.x47_c00476{left:118.990425px;}
.x4e_c00476{left:120.691290px;}
.x24_c00476{left:121.949152px;}
.x32_c00476{left:126.599272px;}
.x2b_c00476{left:130.669372px;}
.x48_c00476{left:133.843650px;}
.x15_c00476{left:137.938717px;}
.x82_c00476{left:139.835527px;}
.x57_c00476{left:142.232490px;}
.x64_c00476{left:143.238517px;}
.x1_c00476{left:144.450000px;}
.x4f_c00476{left:148.156410px;}
.x3d_c00476{left:150.316620px;}
.x5_c00476{left:158.704500px;}
.x68_c00476{left:160.239802px;}
.xd_c00476{left:164.687573px;}
.x1b_c00476{left:166.850497px;}
.x61_c00476{left:169.243590px;}
.x6e_c00476{left:170.631007px;}
.x73_c00476{left:172.177252px;}
.x33_c00476{left:173.574157px;}
.xe_c00476{left:176.046060px;}
.x16_c00476{left:177.104377px;}
.x2c_c00476{left:182.765745px;}
.x5d_c00476{left:184.964077px;}
.x59_c00476{left:186.053617px;}
.x49_c00476{left:188.340960px;}
.x7d_c00476{left:189.728797px;}
.x25_c00476{left:191.667525px;}
.x1c_c00476{left:196.175242px;}
.x76_c00476{left:198.681097px;}
.x6c_c00476{left:201.082950px;}
.x2d_c00476{left:202.480552px;}
.x71_c00476{left:205.179975px;}
.x26_c00476{left:206.258872px;}
.x7f_c00476{left:207.528705px;}
.x3a_c00476{left:210.291247px;}
.x1d_c00476{left:211.393320px;}
.x53_c00476{left:212.412097px;}
.x6_c00476{left:215.659500px;}
.x37_c00476{left:218.131155px;}
.x74_c00476{left:219.716752px;}
.x3e_c00476{left:222.412200px;}
.x7_c00476{left:223.528500px;}
.x4a_c00476{left:225.594022px;}
.x3b_c00476{left:226.768005px;}
.xf_c00476{left:229.690223px;}
.x69_c00476{left:231.335302px;}
.x54_c00476{left:234.380302px;}
.x34_c00476{left:236.220345px;}
.x7e_c00476{left:238.114297px;}
.x17_c00476{left:239.796120px;}
.x5e_c00476{left:242.673135px;}
.x77_c00476{left:244.243050px;}
.x7a_c00476{left:245.416680px;}
.x1e_c00476{left:247.314660px;}
.x3f_c00476{left:248.874105px;}
.x79_c00476{left:250.762920px;}
.x65_c00476{left:252.136897px;}
.x4b_c00476{left:254.835450px;}
.x35_c00476{left:257.015400px;}
.x10_c00476{left:258.318157px;}
.x38_c00476{left:259.899157px;}
.x43_c00476{left:262.432635px;}
.x1f_c00476{left:266.230035px;}
.x2e_c00476{left:267.264660px;}
.x5a_c00476{left:269.176882px;}
.x80_c00476{left:270.189540px;}
.x4c_c00476{left:273.179220px;}
.x63_c00476{left:274.312770px;}
.x11_c00476{left:275.856083px;}
.x6a_c00476{left:277.979302px;}
.x27_c00476{left:279.629565px;}
.x44_c00476{left:281.608132px;}
.x55_c00476{left:285.055492px;}
.x5f_c00476{left:289.080345px;}
.x8_c00476{left:290.767500px;}
.x6d_c00476{left:291.857505px;}
.x5b_c00476{left:294.468735px;}
.x6f_c00476{left:296.191470px;}
.x40_c00476{left:298.028347px;}
.x20_c00476{left:299.436532px;}
.x83_c00476{left:301.579237px;}
.x50_c00476{left:302.712187px;}
.x9_c00476{left:303.996000px;}
.x7b_c00476{left:306.713835px;}
.x7c_c00476{left:318.591975px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fsd_c00476{font-size:49.472231pt;}
.fs2_c00476{font-size:51.339108pt;}
.fs5_c00476{font-size:52.272546pt;}
.fs9_c00476{font-size:53.205985pt;}
.fs1_c00476{font-size:54.139423pt;}
.fs8_c00476{font-size:55.072861pt;}
.fs4_c00476{font-size:56.006300pt;}
.fs7_c00476{font-size:56.939738pt;}
.fs3_c00476{font-size:57.873176pt;}
.fsb_c00476{font-size:58.806615pt;}
.fsa_c00476{font-size:59.740053pt;}
.fsc_c00476{font-size:61.606930pt;}
.fse_c00476{font-size:62.540368pt;}
.fs6_c00476{font-size:63.473806pt;}
.fs0_c00476{font-size:70.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.yeb_c00476{bottom:30.418567pt;}
.yec_c00476{bottom:30.945427pt;}
.yed_c00476{bottom:31.484680pt;}
.yee_c00476{bottom:31.916680pt;}
.yef_c00476{bottom:32.190013pt;}
.yf0_c00476{bottom:33.123993pt;}
.yf1_c00476{bottom:33.595320pt;}
.yf2_c00476{bottom:34.450547pt;}
.yf3_c00476{bottom:34.778693pt;}
.ye4_c00476{bottom:47.460547pt;}
.ye5_c00476{bottom:47.849133pt;}
.ye6_c00476{bottom:48.422947pt;}
.ye7_c00476{bottom:48.687460pt;}
.ye8_c00476{bottom:49.470940pt;}
.ye9_c00476{bottom:49.911293pt;}
.yea_c00476{bottom:50.138380pt;}
.yde_c00476{bottom:62.101860pt;}
.ydf_c00476{bottom:63.062580pt;}
.ye0_c00476{bottom:63.218500pt;}
.ye1_c00476{bottom:64.034700pt;}
.ye2_c00476{bottom:64.313000pt;}
.ye3_c00476{bottom:64.958140pt;}
.yd6_c00476{bottom:76.026233pt;}
.yd7_c00476{bottom:76.332013pt;}
.yd8_c00476{bottom:77.570607pt;}
.yd9_c00476{bottom:77.881267pt;}
.yda_c00476{bottom:79.104627pt;}
.ydb_c00476{bottom:79.436073pt;}
.ydc_c00476{bottom:80.362727pt;}
.ydd_c00476{bottom:80.542440pt;}
.ycf_c00476{bottom:93.307500pt;}
.yd0_c00476{bottom:94.300940pt;}
.yd1_c00476{bottom:95.351100pt;}
.yd2_c00476{bottom:95.715800pt;}
.yd3_c00476{bottom:96.230660pt;}
.yd4_c00476{bottom:96.385820pt;}
.yd5_c00476{bottom:96.975240pt;}
.yc8_c00476{bottom:106.028953pt;}
.yc9_c00476{bottom:106.346527pt;}
.yca_c00476{bottom:107.474287pt;}
.ycb_c00476{bottom:108.515200pt;}
.ycc_c00476{bottom:108.869027pt;}
.ycd_c00476{bottom:109.597880pt;}
.yce_c00476{bottom:109.863120pt;}
.yc3_c00476{bottom:122.590960pt;}
.yc4_c00476{bottom:123.188660pt;}
.yc5_c00476{bottom:124.253220pt;}
.yc6_c00476{bottom:124.628600pt;}
.yc7_c00476{bottom:125.262460pt;}
.ybc_c00476{bottom:136.274200pt;}
.ybd_c00476{bottom:136.567873pt;}
.ybe_c00476{bottom:137.631307pt;}
.ybf_c00476{bottom:138.008293pt;}
.yc0_c00476{bottom:139.577233pt;}
.yc1_c00476{bottom:140.594440pt;}
.yc2_c00476{bottom:141.075740pt;}
.yb5_c00476{bottom:151.879893pt;}
.yb6_c00476{bottom:152.909987pt;}
.yb7_c00476{bottom:153.082293pt;}
.yb8_c00476{bottom:153.669300pt;}
.yb9_c00476{bottom:154.561787pt;}
.yba_c00476{bottom:155.603107pt;}
.ybb_c00476{bottom:156.020967pt;}
.yaf_c00476{bottom:166.760547pt;}
.yb0_c00476{bottom:168.228860pt;}
.yb1_c00476{bottom:169.314040pt;}
.yb2_c00476{bottom:170.608180pt;}
.yb3_c00476{bottom:171.247027pt;}
.yb4_c00476{bottom:171.434947pt;}
.ya6_c00476{bottom:181.640007pt;}
.ya7_c00476{bottom:181.981347pt;}
.ya8_c00476{bottom:182.434987pt;}
.ya9_c00476{bottom:182.948487pt;}
.yaa_c00476{bottom:183.278540pt;}
.yab_c00476{bottom:184.448927pt;}
.yac_c00476{bottom:184.719440pt;}
.yad_c00476{bottom:185.016947pt;}
.yae_c00476{bottom:186.252507pt;}
.y9e_c00476{bottom:197.481360pt;}
.y9f_c00476{bottom:198.187040pt;}
.ya0_c00476{bottom:198.511220pt;}
.ya1_c00476{bottom:199.446300pt;}
.ya2_c00476{bottom:199.825440pt;}
.ya3_c00476{bottom:200.394240pt;}
.ya4_c00476{bottom:200.675060pt;}
.ya5_c00476{bottom:201.016160pt;}
.y96_c00476{bottom:212.844260pt;}
.y97_c00476{bottom:213.420480pt;}
.y98_c00476{bottom:213.693613pt;}
.y99_c00476{bottom:214.617747pt;}
.y9a_c00476{bottom:215.060847pt;}
.y9b_c00476{bottom:215.517187pt;}
.y9c_c00476{bottom:216.165747pt;}
.y9d_c00476{bottom:216.472373pt;}
.y8f_c00476{bottom:227.726047pt;}
.y90_c00476{bottom:227.999267pt;}
.y91_c00476{bottom:228.758280pt;}
.y92_c00476{bottom:229.006873pt;}
.y93_c00476{bottom:230.333813pt;}
.y94_c00476{bottom:231.360807pt;}
.y95_c00476{bottom:231.583493pt;}
.y88_c00476{bottom:242.846667pt;}
.y89_c00476{bottom:243.144727pt;}
.y8a_c00476{bottom:243.707407pt;}
.y8b_c00476{bottom:244.498567pt;}
.y8c_c00476{bottom:244.863207pt;}
.y8d_c00476{bottom:245.719907pt;}
.y8e_c00476{bottom:246.026087pt;}
.y80_c00476{bottom:257.250727pt;}
.y81_c00476{bottom:257.643413pt;}
.y82_c00476{bottom:259.080200pt;}
.y83_c00476{bottom:260.069520pt;}
.y84_c00476{bottom:260.356140pt;}
.y85_c00476{bottom:260.706753pt;}
.y86_c00476{bottom:261.043020pt;}
.y87_c00476{bottom:261.827153pt;}
.y78_c00476{bottom:273.091080pt;}
.y79_c00476{bottom:273.381800pt;}
.y7a_c00476{bottom:274.231053pt;}
.y7b_c00476{bottom:274.543693pt;}
.y7c_c00476{bottom:275.788913pt;}
.y7d_c00476{bottom:276.759847pt;}
.y7e_c00476{bottom:277.118607pt;}
.y7f_c00476{bottom:277.523847pt;}
.y6f_c00476{bottom:288.932747pt;}
.y70_c00476{bottom:289.235607pt;}
.y71_c00476{bottom:289.473567pt;}
.y72_c00476{bottom:289.711147pt;}
.y73_c00476{bottom:290.323247pt;}
.y74_c00476{bottom:290.593427pt;}
.y75_c00476{bottom:291.308987pt;}
.y76_c00476{bottom:291.715847pt;}
.y77_c00476{bottom:292.264007pt;}
.y67_c00476{bottom:302.619640pt;}
.y68_c00476{bottom:303.985427pt;}
.y69_c00476{bottom:304.433933pt;}
.y6a_c00476{bottom:304.668460pt;}
.y6b_c00476{bottom:305.838500pt;}
.y6c_c00476{bottom:306.429840pt;}
.y6d_c00476{bottom:306.858780pt;}
.y6e_c00476{bottom:307.849187pt;}
.y5f_c00476{bottom:317.261087pt;}
.y60_c00476{bottom:318.069320pt;}
.y61_c00476{bottom:319.272727pt;}
.y62_c00476{bottom:319.809633pt;}
.y63_c00476{bottom:320.660860pt;}
.y64_c00476{bottom:321.166913pt;}
.y65_c00476{bottom:322.048433pt;}
.y66_c00476{bottom:322.831927pt;}
.y56_c00476{bottom:332.377633pt;}
.y57_c00476{bottom:332.727820pt;}
.y58_c00476{bottom:333.305667pt;}
.y59_c00476{bottom:333.645287pt;}
.y5a_c00476{bottom:333.829993pt;}
.y5b_c00476{bottom:334.508613pt;}
.y5c_c00476{bottom:334.971980pt;}
.y5d_c00476{bottom:335.336527pt;}
.y5e_c00476{bottom:335.565107pt;}
.y4d_c00476{bottom:347.984533pt;}
.y4e_c00476{bottom:349.180413pt;}
.y4f_c00476{bottom:349.697273pt;}
.y50_c00476{bottom:350.032180pt;}
.y51_c00476{bottom:351.066933pt;}
.y52_c00476{bottom:351.763667pt;}
.y53_c00476{bottom:352.793727pt;}
.y54_c00476{bottom:353.168093pt;}
.y55_c00476{bottom:353.479180pt;}
.y47_c00476{bottom:362.623860pt;}
.y48_c00476{bottom:363.329473pt;}
.y49_c00476{bottom:364.280433pt;}
.y4a_c00476{bottom:365.177693pt;}
.y4b_c00476{bottom:365.506513pt;}
.y4c_c00476{bottom:366.117893pt;}
.y41_c00476{bottom:377.267447pt;}
.y42_c00476{bottom:378.066860pt;}
.y43_c00476{bottom:379.630360pt;}
.y44_c00476{bottom:380.364867pt;}
.y45_c00476{bottom:380.628567pt;}
.y46_c00476{bottom:381.663707pt;}
.y3b_c00476{bottom:392.390013pt;}
.y3c_c00476{bottom:393.087780pt;}
.y3d_c00476{bottom:394.455980pt;}
.y3e_c00476{bottom:395.796847pt;}
.y3f_c00476{bottom:396.501787pt;}
.y40_c00476{bottom:397.022820pt;}
.y33_c00476{bottom:407.510340pt;}
.y34_c00476{bottom:407.900853pt;}
.y35_c00476{bottom:408.142613pt;}
.y36_c00476{bottom:408.954040pt;}
.y37_c00476{bottom:409.269060pt;}
.y38_c00476{bottom:410.020753pt;}
.y39_c00476{bottom:411.022740pt;}
.y3a_c00476{bottom:411.356020pt;}
.y2b_c00476{bottom:422.393327pt;}
.y2c_c00476{bottom:422.817320pt;}
.y2d_c00476{bottom:423.146273pt;}
.y2e_c00476{bottom:424.313367pt;}
.y2f_c00476{bottom:425.193360pt;}
.y30_c00476{bottom:425.526907pt;}
.y31_c00476{bottom:426.621413pt;}
.y32_c00476{bottom:426.825500pt;}
.y22_c00476{bottom:437.756213pt;}
.y23_c00476{bottom:438.291867pt;}
.y24_c00476{bottom:438.615100pt;}
.y25_c00476{bottom:439.064307pt;}
.y26_c00476{bottom:439.443193pt;}
.y27_c00476{bottom:440.125107pt;}
.y28_c00476{bottom:440.558147pt;}
.y29_c00476{bottom:440.791373pt;}
.y2a_c00476{bottom:441.965693pt;}
.y19_c00476{bottom:452.396673pt;}
.y1a_c00476{bottom:452.721453pt;}
.y1b_c00476{bottom:453.556333pt;}
.y1c_c00476{bottom:454.869213pt;}
.y1d_c00476{bottom:455.364233pt;}
.y1e_c00476{bottom:455.621820pt;}
.y1f_c00476{bottom:456.228800pt;}
.y20_c00476{bottom:456.547687pt;}
.y21_c00476{bottom:457.109133pt;}
.y13_c00476{bottom:467.998767pt;}
.y14_c00476{bottom:468.213620pt;}
.y15_c00476{bottom:469.412380pt;}
.y16_c00476{bottom:469.911193pt;}
.y17_c00476{bottom:470.572100pt;}
.y18_c00476{bottom:471.630707pt;}
.yb_c00476{bottom:482.642393pt;}
.yc_c00476{bottom:483.161333pt;}
.yd_c00476{bottom:484.131207pt;}
.ye_c00476{bottom:485.420587pt;}
.yf_c00476{bottom:485.632047pt;}
.y10_c00476{bottom:486.634033pt;}
.y11_c00476{bottom:487.167773pt;}
.y12_c00476{bottom:487.494967pt;}
.y2_c00476{bottom:498.242667pt;}
.y3_c00476{bottom:498.970267pt;}
.y4_c00476{bottom:499.215207pt;}
.y5_c00476{bottom:500.074647pt;}
.y6_c00476{bottom:500.252167pt;}
.y7_c00476{bottom:501.011567pt;}
.y8_c00476{bottom:501.116487pt;}
.y9_c00476{bottom:502.013007pt;}
.ya_c00476{bottom:502.189387pt;}
.y1_c00476{bottom:511.921333pt;}
.hf_c00476{height:49.472231pt;}
.h4_c00476{height:51.339108pt;}
.h7_c00476{height:52.272546pt;}
.hb_c00476{height:53.205985pt;}
.h3_c00476{height:54.139423pt;}
.ha_c00476{height:55.072861pt;}
.h6_c00476{height:56.006300pt;}
.h9_c00476{height:56.939738pt;}
.h5_c00476{height:57.873176pt;}
.hd_c00476{height:58.806615pt;}
.hc_c00476{height:59.740053pt;}
.he_c00476{height:61.606930pt;}
.h10_c00476{height:62.540368pt;}
.h8_c00476{height:63.473806pt;}
.h2_c00476{height:70.000000pt;}
.h0_c00476{height:549.066667pt;}
.h1_c00476{height:549.333333pt;}
.w0_c00476{width:319.200000pt;}
.w1_c00476{width:319.333333pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:7.104000pt;}
.x66_c00476{left:11.439380pt;}
.xa_c00476{left:14.076853pt;}
.x28_c00476{left:15.087280pt;}
.x5c_c00476{left:16.057413pt;}
.x62_c00476{left:16.988393pt;}
.x18_c00476{left:18.150020pt;}
.x12_c00476{left:21.967567pt;}
.x81_c00476{left:25.850667pt;}
.x58_c00476{left:31.668347pt;}
.x13_c00476{left:33.268220pt;}
.x19_c00476{left:35.267667pt;}
.x2f_c00476{left:36.433420pt;}
.x29_c00476{left:37.396607pt;}
.xb_c00476{left:38.803967pt;}
.x45_c00476{left:40.248287pt;}
.x21_c00476{left:44.358107pt;}
.x30_c00476{left:49.883487pt;}
.x36_c00476{left:51.342920pt;}
.x4d_c00476{left:52.570887pt;}
.x2a_c00476{left:54.703567pt;}
.x3_c00476{left:55.610667pt;}
.x72_c00476{left:57.050447pt;}
.x39_c00476{left:59.241960pt;}
.x22_c00476{left:62.350640pt;}
.x3c_c00476{left:65.683087pt;}
.x56_c00476{left:67.610213pt;}
.x41_c00476{left:69.025360pt;}
.x4_c00476{left:71.940000pt;}
.x60_c00476{left:73.385413pt;}
.x51_c00476{left:77.683747pt;}
.x1a_c00476{left:79.190360pt;}
.x67_c00476{left:80.096713pt;}
.x46_c00476{left:81.527573pt;}
.x78_c00476{left:83.908373pt;}
.xc_c00476{left:84.969140pt;}
.x23_c00476{left:87.318853pt;}
.x42_c00476{left:92.546900pt;}
.x31_c00476{left:94.998800pt;}
.x14_c00476{left:96.381773pt;}
.x52_c00476{left:98.070940pt;}
.x75_c00476{left:99.092900pt;}
.x6b_c00476{left:102.951627pt;}
.x70_c00476{left:103.925413pt;}
.x47_c00476{left:105.769267pt;}
.x4e_c00476{left:107.281147pt;}
.x24_c00476{left:108.399247pt;}
.x32_c00476{left:112.532687pt;}
.x2b_c00476{left:116.150553pt;}
.x48_c00476{left:118.972133pt;}
.x15_c00476{left:122.612193pt;}
.x82_c00476{left:124.298247pt;}
.x57_c00476{left:126.428880pt;}
.x64_c00476{left:127.323127pt;}
.x1_c00476{left:128.400000pt;}
.x4f_c00476{left:131.694587pt;}
.x3d_c00476{left:133.614773pt;}
.x5_c00476{left:141.070667pt;}
.x68_c00476{left:142.435380pt;}
.xd_c00476{left:146.388953pt;}
.x1b_c00476{left:148.311553pt;}
.x61_c00476{left:150.438747pt;}
.x6e_c00476{left:151.672007pt;}
.x73_c00476{left:153.046447pt;}
.x33_c00476{left:154.288140pt;}
.xe_c00476{left:156.485387pt;}
.x16_c00476{left:157.426113pt;}
.x2c_c00476{left:162.458440pt;}
.x5d_c00476{left:164.412513pt;}
.x59_c00476{left:165.380993pt;}
.x49_c00476{left:167.414187pt;}
.x7d_c00476{left:168.647820pt;}
.x25_c00476{left:170.371133pt;}
.x1c_c00476{left:174.377993pt;}
.x76_c00476{left:176.605420pt;}
.x6c_c00476{left:178.740400pt;}
.x2d_c00476{left:179.982713pt;}
.x71_c00476{left:182.382200pt;}
.x26_c00476{left:183.341220pt;}
.x7f_c00476{left:184.469960pt;}
.x3a_c00476{left:186.925553pt;}
.x1d_c00476{left:187.905173pt;}
.x53_c00476{left:188.810753pt;}
.x6_c00476{left:191.697333pt;}
.x37_c00476{left:193.894360pt;}
.x74_c00476{left:195.303780pt;}
.x3e_c00476{left:197.699733pt;}
.x7_c00476{left:198.692000pt;}
.x4a_c00476{left:200.528020pt;}
.x3b_c00476{left:201.571560pt;}
.xf_c00476{left:204.169087pt;}
.x69_c00476{left:205.631380pt;}
.x54_c00476{left:208.338047pt;}
.x34_c00476{left:209.973640pt;}
.x7e_c00476{left:211.657153pt;}
.x17_c00476{left:213.152107pt;}
.x5e_c00476{left:215.709453pt;}
.x77_c00476{left:217.104933pt;}
.x7a_c00476{left:218.148160pt;}
.x1e_c00476{left:219.835253pt;}
.x3f_c00476{left:221.221427pt;}
.x79_c00476{left:222.900373pt;}
.x65_c00476{left:224.121687pt;}
.x4b_c00476{left:226.520400pt;}
.x35_c00476{left:228.458133pt;}
.x10_c00476{left:229.616140pt;}
.x38_c00476{left:231.021473pt;}
.x43_c00476{left:233.273453pt;}
.x1f_c00476{left:236.648920pt;}
.x2e_c00476{left:237.568587pt;}
.x5a_c00476{left:239.268340pt;}
.x80_c00476{left:240.168480pt;}
.x4c_c00476{left:242.825973pt;}
.x63_c00476{left:243.833573pt;}
.x11_c00476{left:245.205407pt;}
.x6a_c00476{left:247.092713pt;}
.x27_c00476{left:248.559613pt;}
.x44_c00476{left:250.318340pt;}
.x55_c00476{left:253.382660pt;}
.x5f_c00476{left:256.960307pt;}
.x8_c00476{left:258.460000pt;}
.x6d_c00476{left:259.428893pt;}
.x5b_c00476{left:261.749987pt;}
.x6f_c00476{left:263.281307pt;}
.x40_c00476{left:264.914087pt;}
.x20_c00476{left:266.165807pt;}
.x83_c00476{left:268.070433pt;}
.x50_c00476{left:269.077500pt;}
.x9_c00476{left:270.218667pt;}
.x7b_c00476{left:272.634520pt;}
.x7c_c00476{left:283.192867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00477 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00477 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00477 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00477 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00477{transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011545,0.000000,0.000000,0.250000,0,0);}
.md9_c00477{transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012905,0.000000,0.000000,0.250000,0,0);}
.m93_c00477{transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022555,0.000000,0.000000,0.250000,0,0);}
.m55_c00477{transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113690,0.000000,0.000000,0.250000,0,0);}
.mde_c00477{transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);}
.mc4_c00477{transform:matrix(0.129155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129155,0.000000,0.000000,0.250000,0,0);}
.mca_c00477{transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141985,0.000000,0.000000,0.250000,0,0);}
.m35_c00477{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.m39_c00477{transform:matrix(0.147260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147260,0.000000,0.000000,0.250000,0,0);}
.m64_c00477{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.m85_c00477{transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150760,0.000000,0.000000,0.250000,0,0);}
.maa_c00477{transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);}
.mae_c00477{transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);}
.m2c_c00477{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.mc2_c00477{transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155970,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);}
.ma6_c00477{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.ma3_c00477{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00477{transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158490,0.000000,0.000000,0.250000,0,0);}
.m63_c00477{transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159785,0.000000,0.000000,0.250000,0,0);}
.md2_c00477{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m36_c00477{transform:matrix(0.162740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162740,0.000000,0.000000,0.250000,0,0);}
.m50_c00477{transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162960,0.000000,0.000000,0.250000,0,0);}
.m28_c00477{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.md6_c00477{transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);}
.md5_c00477{transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);}
.m30_c00477{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.mea_c00477{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.m6e_c00477{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.mac_c00477{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.m61_c00477{transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);}
.mb2_c00477{transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.167280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167280,0.000000,0.000000,0.250000,0,0);}
.m3c_c00477{transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167605,0.000000,0.000000,0.250000,0,0);}
.mc0_c00477{transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);}
.ma2_c00477{transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167885,0.000000,0.000000,0.250000,0,0);}
.m31_c00477{transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168835,0.000000,0.000000,0.250000,0,0);}
.mbf_c00477{transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);}
.mc8_c00477{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.mc3_c00477{transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172685,0.000000,0.000000,0.250000,0,0);}
.m9c_c00477{transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);}
.m8d_c00477{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m69_c00477{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00477{transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00477{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m3b_c00477{transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175920,0.000000,0.000000,0.250000,0,0);}
.m90_c00477{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177505,0.000000,0.000000,0.250000,0,0);}
.me1_c00477{transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177785,0.000000,0.000000,0.250000,0,0);}
.m5f_c00477{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m49_c00477{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.m47_c00477{transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);}
.m26_c00477{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m98_c00477{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.m9d_c00477{transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179785,0.000000,0.000000,0.250000,0,0);}
.m68_c00477{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m25_c00477{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.m32_c00477{transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180230,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m88_c00477{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181090,0.000000,0.000000,0.250000,0,0);}
.m38_c00477{transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);}
.m87_c00477{transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00477{transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);}
.me8_c00477{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m22_c00477{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.me9_c00477{transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183610,0.000000,0.000000,0.250000,0,0);}
.mbc_c00477{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m72_c00477{transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00477{transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00477{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m70_c00477{transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184845,0.000000,0.000000,0.250000,0,0);}
.m74_c00477{transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185180,0.000000,0.000000,0.250000,0,0);}
.m5e_c00477{transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);}
.m11_c00477{transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185280,0.000000,0.000000,0.250000,0,0);}
.m73_c00477{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.md8_c00477{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m82_c00477{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m4f_c00477{transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187035,0.000000,0.000000,0.250000,0,0);}
.m56_c00477{transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187055,0.000000,0.000000,0.250000,0,0);}
.m99_c00477{transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187155,0.000000,0.000000,0.250000,0,0);}
.ma1_c00477{transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188080,0.000000,0.000000,0.250000,0,0);}
.me2_c00477{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.mc9_c00477{transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);}
.m58_c00477{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m5c_c00477{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m4a_c00477{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);}
.m21_c00477{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.mc1_c00477{transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192360,0.000000,0.000000,0.250000,0,0);}
.m91_c00477{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.m2f_c00477{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.m75_c00477{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.m29_c00477{transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193560,0.000000,0.000000,0.250000,0,0);}
.m2b_c00477{transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193655,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193790,0.000000,0.000000,0.250000,0,0);}
.m1d_c00477{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00477{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m5d_c00477{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.m24_c00477{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m9b_c00477{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.meb_c00477{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.mab_c00477{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m1a_c00477{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.ma9_c00477{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.ma5_c00477{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.mbd_c00477{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00477{transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196415,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00477{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.md1_c00477{transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198160,0.000000,0.000000,0.250000,0,0);}
.m60_c00477{transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198165,0.000000,0.000000,0.250000,0,0);}
.m3e_c00477{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.m3a_c00477{transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);}
.md0_c00477{transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);}
.m7a_c00477{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m83_c00477{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m95_c00477{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.mb1_c00477{transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200230,0.000000,0.000000,0.250000,0,0);}
.m52_c00477{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00477{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00477{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m6f_c00477{transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);}
.me0_c00477{transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201240,0.000000,0.000000,0.250000,0,0);}
.m8c_c00477{transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201340,0.000000,0.000000,0.250000,0,0);}
.m84_c00477{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.mcf_c00477{transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201660,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201715,0.000000,0.000000,0.250000,0,0);}
.me3_c00477{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00477{transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);}
.mdb_c00477{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m23_c00477{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.mc7_c00477{transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203320,0.000000,0.000000,0.250000,0,0);}
.m6c_c00477{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.ma0_c00477{transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);}
.mb9_c00477{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205585,0.000000,0.000000,0.250000,0,0);}
.m65_c00477{transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205715,0.000000,0.000000,0.250000,0,0);}
.mdf_c00477{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.m9a_c00477{transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205990,0.000000,0.000000,0.250000,0,0);}
.m80_c00477{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.m81_c00477{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.mdc_c00477{transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.m67_c00477{transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208170,0.000000,0.000000,0.250000,0,0);}
.m89_c00477{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00477{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.me5_c00477{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m4b_c00477{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.md4_c00477{transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00477{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.mb6_c00477{transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212135,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m6d_c00477{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m92_c00477{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.m7f_c00477{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.mec_c00477{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);}
.m6b_c00477{transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214660,0.000000,0.000000,0.250000,0,0);}
.m9f_c00477{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m97_c00477{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.ma8_c00477{transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216090,0.000000,0.000000,0.250000,0,0);}
.m7b_c00477{transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216430,0.000000,0.000000,0.250000,0,0);}
.m96_c00477{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.m94_c00477{transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);}
.mad_c00477{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.m76_c00477{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00477{transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);}
.m62_c00477{transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);}
.m46_c00477{transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218810,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00477{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.m4d_c00477{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m3f_c00477{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.mcc_c00477{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.md3_c00477{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m44_c00477{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m48_c00477{transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222080,0.000000,0.000000,0.250000,0,0);}
.mce_c00477{transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);}
.mc6_c00477{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.m43_c00477{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.m71_c00477{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m7c_c00477{transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);}
.m59_c00477{transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227115,0.000000,0.000000,0.250000,0,0);}
.m4c_c00477{transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00477{transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228120,0.000000,0.000000,0.250000,0,0);}
.me6_c00477{transform:matrix(0.228645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228645,0.000000,0.000000,0.250000,0,0);}
.m27_c00477{transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);}
.m45_c00477{transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232220,0.000000,0.000000,0.250000,0,0);}
.m57_c00477{transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);}
.m54_c00477{transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.m51_c00477{transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);}
.m66_c00477{transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);}
.mdd_c00477{transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);}
.mba_c00477{transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236710,0.000000,0.000000,0.250000,0,0);}
.m8e_c00477{transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);}
.m42_c00477{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m78_c00477{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.mbb_c00477{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m41_c00477{transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);}
.me4_c00477{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.md7_c00477{transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242315,0.000000,0.000000,0.250000,0,0);}
.mb0_c00477{transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);}
.m34_c00477{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m86_c00477{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.me7_c00477{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.ma7_c00477{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m5b_c00477{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.mb5_c00477{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.maf_c00477{transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);}
.m37_c00477{transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);}
.m33_c00477{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.m2a_c00477{transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00477{transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);}
.m40_c00477{transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);}
.m79_c00477{transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);}
.m5a_c00477{transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);}
.m14_c00477{transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);}
.m4e_c00477{transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);}
.mb8_c00477{transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);}
.m77_c00477{transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352530,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
.fc0_c00477{color:transparent;}
.fsc_c00477{font-size:29.400000px;}
.fs0_c00477{font-size:59.850000px;}
.fs7_c00477{font-size:60.900000px;}
.fs9_c00477{font-size:61.950000px;}
.fsa_c00477{font-size:63.000000px;}
.fs2_c00477{font-size:65.100000px;}
.fs4_c00477{font-size:66.150000px;}
.fs1_c00477{font-size:67.200000px;}
.fsb_c00477{font-size:68.250000px;}
.fs3_c00477{font-size:69.300000px;}
.fs5_c00477{font-size:70.350000px;}
.fs6_c00477{font-size:71.400000px;}
.fs8_c00477{font-size:72.450000px;}
.y0_c00477{bottom:0.000000px;}
.y25_c00477{bottom:32.271000px;}
.y24_c00477{bottom:48.241500px;}
.y23_c00477{bottom:63.280500px;}
.y22_c00477{bottom:81.718500px;}
.y21_c00477{bottom:98.457000px;}
.y20_c00477{bottom:114.724500px;}
.y1f_c00477{bottom:131.856000px;}
.y1e_c00477{bottom:148.299000px;}
.y1d_c00477{bottom:166.686000px;}
.y1c_c00477{bottom:183.964500px;}
.y1b_c00477{bottom:201.244500px;}
.y1a_c00477{bottom:217.884000px;}
.y19_c00477{bottom:234.088500px;}
.y18_c00477{bottom:235.387500px;}
.y17_c00477{bottom:235.915500px;}
.y16_c00477{bottom:236.293500px;}
.y15_c00477{bottom:236.521500px;}
.y26_c00477{bottom:240.030000px;}
.y14_c00477{bottom:251.916000px;}
.y13_c00477{bottom:268.567500px;}
.y12_c00477{bottom:286.144500px;}
.y11_c00477{bottom:302.734500px;}
.y10_c00477{bottom:320.014500px;}
.yf_c00477{bottom:337.294500px;}
.ye_c00477{bottom:354.399000px;}
.yd_c00477{bottom:371.134500px;}
.yc_c00477{bottom:387.757500px;}
.yb_c00477{bottom:404.917500px;}
.ya_c00477{bottom:422.170500px;}
.y9_c00477{bottom:439.213500px;}
.y8_c00477{bottom:455.868000px;}
.y7_c00477{bottom:472.780500px;}
.y6_c00477{bottom:490.237500px;}
.y5_c00477{bottom:507.127500px;}
.y4_c00477{bottom:524.016000px;}
.y3_c00477{bottom:541.147500px;}
.y2_c00477{bottom:557.766000px;}
.y1_c00477{bottom:570.714000px;}
.he_c00477{height:29.400000px;}
.h2_c00477{height:59.850000px;}
.h9_c00477{height:60.900000px;}
.hb_c00477{height:61.950000px;}
.hc_c00477{height:63.000000px;}
.h4_c00477{height:65.100000px;}
.h6_c00477{height:66.150000px;}
.h3_c00477{height:67.200000px;}
.hd_c00477{height:68.250000px;}
.h5_c00477{height:69.300000px;}
.h7_c00477{height:70.350000px;}
.h8_c00477{height:71.400000px;}
.ha_c00477{height:72.450000px;}
.h0_c00477{height:617.700000px;}
.h1_c00477{height:618.000000px;}
.w0_c00477{width:359.100000px;}
.w1_c00477{width:359.250000px;}
.x0_c00477{left:0.000000px;}
.x6f_c00477{left:32.128500px;}
.x6a_c00477{left:33.208500px;}
.x56_c00477{left:34.290000px;}
.x3e_c00477{left:35.370000px;}
.x23_c00477{left:36.450000px;}
.xf_c00477{left:37.530000px;}
.x3_c00477{left:38.610000px;}
.x6c_c00477{left:46.168500px;}
.x70_c00477{left:51.028500px;}
.x38_c00477{left:54.270000px;}
.x65_c00477{left:55.618500px;}
.x15_c00477{left:57.780000px;}
.x5c_c00477{left:59.398500px;}
.x2d_c00477{left:62.640000px;}
.x3f_c00477{left:68.040000px;}
.x39_c00477{left:74.250000px;}
.x10_c00477{left:77.220000px;}
.x4c_c00477{left:79.650000px;}
.xc_c00477{left:81.270000px;}
.x52_c00477{left:83.430000px;}
.x16_c00477{left:87.750000px;}
.x4f_c00477{left:89.100000px;}
.x11_c00477{left:90.180000px;}
.x5d_c00477{left:91.258500px;}
.x5f_c00477{left:92.608500px;}
.x45_c00477{left:96.930000px;}
.x57_c00477{left:99.360000px;}
.x32_c00477{left:101.520000px;}
.x24_c00477{left:104.220000px;}
.x71_c00477{left:106.378500px;}
.x4_c00477{left:109.080000px;}
.x58_c00477{left:112.320000px;}
.x40_c00477{left:116.100000px;}
.x60_c00477{left:117.988500px;}
.x1_c00477{left:119.880000px;}
.x2e_c00477{left:120.960000px;}
.x33_c00477{left:122.850000px;}
.x72_c00477{left:125.278500px;}
.x28_c00477{left:127.440000px;}
.x49_c00477{left:129.060000px;}
.x4d_c00477{left:130.140000px;}
.x59_c00477{left:134.190000px;}
.x41_c00477{left:136.080000px;}
.xd_c00477{left:137.700000px;}
.x6b_c00477{left:139.048500px;}
.x1b_c00477{left:140.670000px;}
.x3a_c00477{left:142.020000px;}
.x5_c00477{left:144.180000px;}
.x1e_c00477{left:146.070000px;}
.x69_c00477{left:148.228500px;}
.x29_c00477{left:149.310000px;}
.x54_c00477{left:150.390000px;}
.xe_c00477{left:151.470000px;}
.x6_c00477{left:154.980000px;}
.x25_c00477{left:157.950000px;}
.x3b_c00477{left:163.350000px;}
.x2a_c00477{left:165.510000px;}
.x2_c00477{left:167.130000px;}
.x46_c00477{left:168.480000px;}
.x63_c00477{left:169.828500px;}
.x17_c00477{left:171.990000px;}
.x6d_c00477{left:173.608500px;}
.x53_c00477{left:176.040000px;}
.x50_c00477{left:179.820000px;}
.x12_c00477{left:180.900000px;}
.x34_c00477{left:184.680000px;}
.x42_c00477{left:186.030000px;}
.x1c_c00477{left:189.540000px;}
.x73_c00477{left:191.698500px;}
.x66_c00477{left:192.778500px;}
.x1f_c00477{left:194.670000px;}
.x7_c00477{left:197.100000px;}
.x5a_c00477{left:198.990000px;}
.x35_c00477{left:203.310000px;}
.x47_c00477{left:204.930000px;}
.x26_c00477{left:206.280000px;}
.x55_c00477{left:211.680000px;}
.x20_c00477{left:213.300000px;}
.x8_c00477{left:214.920000px;}
.x4a_c00477{left:216.810000px;}
.x74_c00477{left:217.888500px;}
.x21_c00477{left:227.880000px;}
.x18_c00477{left:232.200000px;}
.x2f_c00477{left:236.520000px;}
.x61_c00477{left:238.678500px;}
.x2b_c00477{left:240.300000px;}
.x48_c00477{left:242.730000px;}
.x27_c00477{left:247.320000px;}
.x76_c00477{left:249.748500px;}
.x13_c00477{left:251.100000px;}
.x30_c00477{left:252.180000px;}
.x9_c00477{left:254.610000px;}
.x3c_c00477{left:258.390000px;}
.x64_c00477{left:260.818500px;}
.x67_c00477{left:262.438500px;}
.x36_c00477{left:265.140000px;}
.x31_c00477{left:267.840000px;}
.x19_c00477{left:268.920000px;}
.x14_c00477{left:270.000000px;}
.x6e_c00477{left:271.348500px;}
.x37_c00477{left:274.860000px;}
.x5b_c00477{left:277.020000px;}
.xa_c00477{left:282.690000px;}
.x62_c00477{left:285.658500px;}
.x4e_c00477{left:289.170000px;}
.x43_c00477{left:290.520000px;}
.x51_c00477{left:293.490000px;}
.x5e_c00477{left:294.838500px;}
.x1a_c00477{left:296.460000px;}
.x2c_c00477{left:301.050000px;}
.xb_c00477{left:303.210000px;}
.x75_c00477{left:306.448500px;}
.x44_c00477{left:309.690000px;}
.x22_c00477{left:312.660000px;}
.x4b_c00477{left:317.790000px;}
.x1d_c00477{left:320.760000px;}
.x68_c00477{left:323.188500px;}
.x3d_c00477{left:325.890000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fsc_c00477{font-size:26.133333pt;}
.fs0_c00477{font-size:53.200000pt;}
.fs7_c00477{font-size:54.133333pt;}
.fs9_c00477{font-size:55.066667pt;}
.fsa_c00477{font-size:56.000000pt;}
.fs2_c00477{font-size:57.866667pt;}
.fs4_c00477{font-size:58.800000pt;}
.fs1_c00477{font-size:59.733333pt;}
.fsb_c00477{font-size:60.666667pt;}
.fs3_c00477{font-size:61.600000pt;}
.fs5_c00477{font-size:62.533333pt;}
.fs6_c00477{font-size:63.466667pt;}
.fs8_c00477{font-size:64.400000pt;}
.y0_c00477{bottom:0.000000pt;}
.y25_c00477{bottom:28.685333pt;}
.y24_c00477{bottom:42.881333pt;}
.y23_c00477{bottom:56.249333pt;}
.y22_c00477{bottom:72.638667pt;}
.y21_c00477{bottom:87.517333pt;}
.y20_c00477{bottom:101.977333pt;}
.y1f_c00477{bottom:117.205333pt;}
.y1e_c00477{bottom:131.821333pt;}
.y1d_c00477{bottom:148.165333pt;}
.y1c_c00477{bottom:163.524000pt;}
.y1b_c00477{bottom:178.884000pt;}
.y1a_c00477{bottom:193.674667pt;}
.y19_c00477{bottom:208.078667pt;}
.y18_c00477{bottom:209.233333pt;}
.y17_c00477{bottom:209.702667pt;}
.y16_c00477{bottom:210.038667pt;}
.y15_c00477{bottom:210.241333pt;}
.y26_c00477{bottom:213.360000pt;}
.y14_c00477{bottom:223.925333pt;}
.y13_c00477{bottom:238.726667pt;}
.y12_c00477{bottom:254.350667pt;}
.y11_c00477{bottom:269.097333pt;}
.y10_c00477{bottom:284.457333pt;}
.yf_c00477{bottom:299.817333pt;}
.ye_c00477{bottom:315.021333pt;}
.yd_c00477{bottom:329.897333pt;}
.yc_c00477{bottom:344.673333pt;}
.yb_c00477{bottom:359.926667pt;}
.ya_c00477{bottom:375.262667pt;}
.y9_c00477{bottom:390.412000pt;}
.y8_c00477{bottom:405.216000pt;}
.y7_c00477{bottom:420.249333pt;}
.y6_c00477{bottom:435.766667pt;}
.y5_c00477{bottom:450.780000pt;}
.y4_c00477{bottom:465.792000pt;}
.y3_c00477{bottom:481.020000pt;}
.y2_c00477{bottom:495.792000pt;}
.y1_c00477{bottom:507.301333pt;}
.he_c00477{height:26.133333pt;}
.h2_c00477{height:53.200000pt;}
.h9_c00477{height:54.133333pt;}
.hb_c00477{height:55.066667pt;}
.hc_c00477{height:56.000000pt;}
.h4_c00477{height:57.866667pt;}
.h6_c00477{height:58.800000pt;}
.h3_c00477{height:59.733333pt;}
.hd_c00477{height:60.666667pt;}
.h5_c00477{height:61.600000pt;}
.h7_c00477{height:62.533333pt;}
.h8_c00477{height:63.466667pt;}
.ha_c00477{height:64.400000pt;}
.h0_c00477{height:549.066667pt;}
.h1_c00477{height:549.333333pt;}
.w0_c00477{width:319.200000pt;}
.w1_c00477{width:319.333333pt;}
.x0_c00477{left:0.000000pt;}
.x6f_c00477{left:28.558667pt;}
.x6a_c00477{left:29.518667pt;}
.x56_c00477{left:30.480000pt;}
.x3e_c00477{left:31.440000pt;}
.x23_c00477{left:32.400000pt;}
.xf_c00477{left:33.360000pt;}
.x3_c00477{left:34.320000pt;}
.x6c_c00477{left:41.038667pt;}
.x70_c00477{left:45.358667pt;}
.x38_c00477{left:48.240000pt;}
.x65_c00477{left:49.438667pt;}
.x15_c00477{left:51.360000pt;}
.x5c_c00477{left:52.798667pt;}
.x2d_c00477{left:55.680000pt;}
.x3f_c00477{left:60.480000pt;}
.x39_c00477{left:66.000000pt;}
.x10_c00477{left:68.640000pt;}
.x4c_c00477{left:70.800000pt;}
.xc_c00477{left:72.240000pt;}
.x52_c00477{left:74.160000pt;}
.x16_c00477{left:78.000000pt;}
.x4f_c00477{left:79.200000pt;}
.x11_c00477{left:80.160000pt;}
.x5d_c00477{left:81.118667pt;}
.x5f_c00477{left:82.318667pt;}
.x45_c00477{left:86.160000pt;}
.x57_c00477{left:88.320000pt;}
.x32_c00477{left:90.240000pt;}
.x24_c00477{left:92.640000pt;}
.x71_c00477{left:94.558667pt;}
.x4_c00477{left:96.960000pt;}
.x58_c00477{left:99.840000pt;}
.x40_c00477{left:103.200000pt;}
.x60_c00477{left:104.878667pt;}
.x1_c00477{left:106.560000pt;}
.x2e_c00477{left:107.520000pt;}
.x33_c00477{left:109.200000pt;}
.x72_c00477{left:111.358667pt;}
.x28_c00477{left:113.280000pt;}
.x49_c00477{left:114.720000pt;}
.x4d_c00477{left:115.680000pt;}
.x59_c00477{left:119.280000pt;}
.x41_c00477{left:120.960000pt;}
.xd_c00477{left:122.400000pt;}
.x6b_c00477{left:123.598667pt;}
.x1b_c00477{left:125.040000pt;}
.x3a_c00477{left:126.240000pt;}
.x5_c00477{left:128.160000pt;}
.x1e_c00477{left:129.840000pt;}
.x69_c00477{left:131.758667pt;}
.x29_c00477{left:132.720000pt;}
.x54_c00477{left:133.680000pt;}
.xe_c00477{left:134.640000pt;}
.x6_c00477{left:137.760000pt;}
.x25_c00477{left:140.400000pt;}
.x3b_c00477{left:145.200000pt;}
.x2a_c00477{left:147.120000pt;}
.x2_c00477{left:148.560000pt;}
.x46_c00477{left:149.760000pt;}
.x63_c00477{left:150.958667pt;}
.x17_c00477{left:152.880000pt;}
.x6d_c00477{left:154.318667pt;}
.x53_c00477{left:156.480000pt;}
.x50_c00477{left:159.840000pt;}
.x12_c00477{left:160.800000pt;}
.x34_c00477{left:164.160000pt;}
.x42_c00477{left:165.360000pt;}
.x1c_c00477{left:168.480000pt;}
.x73_c00477{left:170.398667pt;}
.x66_c00477{left:171.358667pt;}
.x1f_c00477{left:173.040000pt;}
.x7_c00477{left:175.200000pt;}
.x5a_c00477{left:176.880000pt;}
.x35_c00477{left:180.720000pt;}
.x47_c00477{left:182.160000pt;}
.x26_c00477{left:183.360000pt;}
.x55_c00477{left:188.160000pt;}
.x20_c00477{left:189.600000pt;}
.x8_c00477{left:191.040000pt;}
.x4a_c00477{left:192.720000pt;}
.x74_c00477{left:193.678667pt;}
.x21_c00477{left:202.560000pt;}
.x18_c00477{left:206.400000pt;}
.x2f_c00477{left:210.240000pt;}
.x61_c00477{left:212.158667pt;}
.x2b_c00477{left:213.600000pt;}
.x48_c00477{left:215.760000pt;}
.x27_c00477{left:219.840000pt;}
.x76_c00477{left:221.998667pt;}
.x13_c00477{left:223.200000pt;}
.x30_c00477{left:224.160000pt;}
.x9_c00477{left:226.320000pt;}
.x3c_c00477{left:229.680000pt;}
.x64_c00477{left:231.838667pt;}
.x67_c00477{left:233.278667pt;}
.x36_c00477{left:235.680000pt;}
.x31_c00477{left:238.080000pt;}
.x19_c00477{left:239.040000pt;}
.x14_c00477{left:240.000000pt;}
.x6e_c00477{left:241.198667pt;}
.x37_c00477{left:244.320000pt;}
.x5b_c00477{left:246.240000pt;}
.xa_c00477{left:251.280000pt;}
.x62_c00477{left:253.918667pt;}
.x4e_c00477{left:257.040000pt;}
.x43_c00477{left:258.240000pt;}
.x51_c00477{left:260.880000pt;}
.x5e_c00477{left:262.078667pt;}
.x1a_c00477{left:263.520000pt;}
.x2c_c00477{left:267.600000pt;}
.xb_c00477{left:269.520000pt;}
.x75_c00477{left:272.398667pt;}
.x44_c00477{left:275.280000pt;}
.x22_c00477{left:277.920000pt;}
.x4b_c00477{left:282.480000pt;}
.x1d_c00477{left:285.120000pt;}
.x68_c00477{left:287.278667pt;}
.x3d_c00477{left:289.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00478 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00478 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00478 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00478 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m73_c00478{transform:matrix(0.019862,-0.000318,0.003999,0.249968,0,0);-ms-transform:matrix(0.019862,-0.000318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.019862,-0.000318,0.003999,0.249968,0,0);}
.m74_c00478{transform:matrix(0.067371,-0.001078,0.003999,0.249968,0,0);-ms-transform:matrix(0.067371,-0.001078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.067371,-0.001078,0.003999,0.249968,0,0);}
.m28_c00478{transform:matrix(0.096240,-0.002214,0.005748,0.249934,0,0);-ms-transform:matrix(0.096240,-0.002214,0.005748,0.249934,0,0);-webkit-transform:matrix(0.096240,-0.002214,0.005748,0.249934,0,0);}
.m4_c00478{transform:matrix(0.124372,-0.002861,0.005748,0.249934,0,0);-ms-transform:matrix(0.124372,-0.002861,0.005748,0.249934,0,0);-webkit-transform:matrix(0.124372,-0.002861,0.005748,0.249934,0,0);}
.m77_c00478{transform:matrix(0.127539,-0.002041,0.003999,0.249968,0,0);-ms-transform:matrix(0.127539,-0.002041,0.003999,0.249968,0,0);-webkit-transform:matrix(0.127539,-0.002041,0.003999,0.249968,0,0);}
.mc6_c00478{transform:matrix(0.129458,-0.002071,0.003999,0.249968,0,0);-ms-transform:matrix(0.129458,-0.002071,0.003999,0.249968,0,0);-webkit-transform:matrix(0.129458,-0.002071,0.003999,0.249968,0,0);}
.ma6_c00478{transform:matrix(0.130198,-0.002083,0.003999,0.249968,0,0);-ms-transform:matrix(0.130198,-0.002083,0.003999,0.249968,0,0);-webkit-transform:matrix(0.130198,-0.002083,0.003999,0.249968,0,0);}
.m94_c00478{transform:matrix(0.132433,-0.002119,0.003999,0.249968,0,0);-ms-transform:matrix(0.132433,-0.002119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.132433,-0.002119,0.003999,0.249968,0,0);}
.m2d_c00478{transform:matrix(0.142257,-0.003272,0.005748,0.249934,0,0);-ms-transform:matrix(0.142257,-0.003272,0.005748,0.249934,0,0);-webkit-transform:matrix(0.142257,-0.003272,0.005748,0.249934,0,0);}
.md5_c00478{transform:matrix(0.142427,-0.002279,0.003999,0.249968,0,0);-ms-transform:matrix(0.142427,-0.002279,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142427,-0.002279,0.003999,0.249968,0,0);}
.m8f_c00478{transform:matrix(0.143997,-0.002304,0.003999,0.249968,0,0);-ms-transform:matrix(0.143997,-0.002304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143997,-0.002304,0.003999,0.249968,0,0);}
.m2a_c00478{transform:matrix(0.147566,-0.003394,0.005748,0.249934,0,0);-ms-transform:matrix(0.147566,-0.003394,0.005748,0.249934,0,0);-webkit-transform:matrix(0.147566,-0.003394,0.005748,0.249934,0,0);}
.m67_c00478{transform:matrix(0.147766,-0.002364,0.003999,0.249968,0,0);-ms-transform:matrix(0.147766,-0.002364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147766,-0.002364,0.003999,0.249968,0,0);}
.m8a_c00478{transform:matrix(0.147911,-0.002367,0.003999,0.249968,0,0);-ms-transform:matrix(0.147911,-0.002367,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147911,-0.002367,0.003999,0.249968,0,0);}
.m96_c00478{transform:matrix(0.148241,-0.002372,0.003999,0.249968,0,0);-ms-transform:matrix(0.148241,-0.002372,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148241,-0.002372,0.003999,0.249968,0,0);}
.mde_c00478{transform:matrix(0.148361,-0.002374,0.003999,0.249968,0,0);-ms-transform:matrix(0.148361,-0.002374,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148361,-0.002374,0.003999,0.249968,0,0);}
.md9_c00478{transform:matrix(0.151116,-0.002418,0.003999,0.249968,0,0);-ms-transform:matrix(0.151116,-0.002418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151116,-0.002418,0.003999,0.249968,0,0);}
.m1b_c00478{transform:matrix(0.152560,-0.003509,0.005748,0.249934,0,0);-ms-transform:matrix(0.152560,-0.003509,0.005748,0.249934,0,0);-webkit-transform:matrix(0.152560,-0.003509,0.005748,0.249934,0,0);}
.mb0_c00478{transform:matrix(0.152785,-0.002445,0.003999,0.249968,0,0);-ms-transform:matrix(0.152785,-0.002445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152785,-0.002445,0.003999,0.249968,0,0);}
.m2e_c00478{transform:matrix(0.154169,-0.003546,0.005748,0.249934,0,0);-ms-transform:matrix(0.154169,-0.003546,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154169,-0.003546,0.005748,0.249934,0,0);}
.me_c00478{transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);-ms-transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154609,-0.003556,0.005748,0.249934,0,0);}
.m42_c00478{transform:matrix(0.155684,-0.003581,0.005748,0.249934,0,0);-ms-transform:matrix(0.155684,-0.003581,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155684,-0.003581,0.005748,0.249934,0,0);}
.m86_c00478{transform:matrix(0.156360,-0.002502,0.003999,0.249968,0,0);-ms-transform:matrix(0.156360,-0.002502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156360,-0.002502,0.003999,0.249968,0,0);}
.maa_c00478{transform:matrix(0.160319,-0.002565,0.003999,0.249968,0,0);-ms-transform:matrix(0.160319,-0.002565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160319,-0.002565,0.003999,0.249968,0,0);}
.m41_c00478{transform:matrix(0.160762,-0.003698,0.005748,0.249934,0,0);-ms-transform:matrix(0.160762,-0.003698,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160762,-0.003698,0.005748,0.249934,0,0);}
.ma7_c00478{transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);-ms-transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);}
.mb6_c00478{transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);-ms-transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);}
.m10_c00478{transform:matrix(0.161682,-0.003719,0.005748,0.249934,0,0);-ms-transform:matrix(0.161682,-0.003719,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161682,-0.003719,0.005748,0.249934,0,0);}
.m78_c00478{transform:matrix(0.162029,-0.002592,0.003999,0.249968,0,0);-ms-transform:matrix(0.162029,-0.002592,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162029,-0.002592,0.003999,0.249968,0,0);}
.mdd_c00478{transform:matrix(0.162124,-0.002594,0.003999,0.249968,0,0);-ms-transform:matrix(0.162124,-0.002594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162124,-0.002594,0.003999,0.249968,0,0);}
.m31_c00478{transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);-ms-transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162127,-0.003729,0.005748,0.249934,0,0);}
.me2_c00478{transform:matrix(0.163339,-0.002940,0.004499,0.249960,0,0);-ms-transform:matrix(0.163339,-0.002940,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163339,-0.002940,0.004499,0.249960,0,0);}
.m7d_c00478{transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);-ms-transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163944,-0.002623,0.003999,0.249968,0,0);}
.m7c_c00478{transform:matrix(0.164219,-0.002628,0.003999,0.249968,0,0);-ms-transform:matrix(0.164219,-0.002628,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164219,-0.002628,0.003999,0.249968,0,0);}
.mc3_c00478{transform:matrix(0.164394,-0.002630,0.003999,0.249968,0,0);-ms-transform:matrix(0.164394,-0.002630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164394,-0.002630,0.003999,0.249968,0,0);}
.mcd_c00478{transform:matrix(0.164639,-0.002634,0.003999,0.249968,0,0);-ms-transform:matrix(0.164639,-0.002634,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164639,-0.002634,0.003999,0.249968,0,0);}
.m6e_c00478{transform:matrix(0.164859,-0.002638,0.003999,0.249968,0,0);-ms-transform:matrix(0.164859,-0.002638,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164859,-0.002638,0.003999,0.249968,0,0);}
.m4b_c00478{transform:matrix(0.166096,-0.003820,0.005748,0.249934,0,0);-ms-transform:matrix(0.166096,-0.003820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166096,-0.003820,0.005748,0.249934,0,0);}
.m25_c00478{transform:matrix(0.166141,-0.003821,0.005748,0.249934,0,0);-ms-transform:matrix(0.166141,-0.003821,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166141,-0.003821,0.005748,0.249934,0,0);}
.m93_c00478{transform:matrix(0.166279,-0.002660,0.003999,0.249968,0,0);-ms-transform:matrix(0.166279,-0.002660,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166279,-0.002660,0.003999,0.249968,0,0);}
.mcb_c00478{transform:matrix(0.166369,-0.002662,0.003999,0.249968,0,0);-ms-transform:matrix(0.166369,-0.002662,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166369,-0.002662,0.003999,0.249968,0,0);}
.m61_c00478{transform:matrix(0.167054,-0.002673,0.003999,0.249968,0,0);-ms-transform:matrix(0.167054,-0.002673,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167054,-0.002673,0.003999,0.249968,0,0);}
.m80_c00478{transform:matrix(0.167174,-0.002675,0.003999,0.249968,0,0);-ms-transform:matrix(0.167174,-0.002675,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167174,-0.002675,0.003999,0.249968,0,0);}
.m95_c00478{transform:matrix(0.167789,-0.002685,0.003999,0.249968,0,0);-ms-transform:matrix(0.167789,-0.002685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167789,-0.002685,0.003999,0.249968,0,0);}
.m9b_c00478{transform:matrix(0.168213,-0.002691,0.003999,0.249968,0,0);-ms-transform:matrix(0.168213,-0.002691,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168213,-0.002691,0.003999,0.249968,0,0);}
.mc9_c00478{transform:matrix(0.168788,-0.002701,0.003999,0.249968,0,0);-ms-transform:matrix(0.168788,-0.002701,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168788,-0.002701,0.003999,0.249968,0,0);}
.m98_c00478{transform:matrix(0.169028,-0.002704,0.003999,0.249968,0,0);-ms-transform:matrix(0.169028,-0.002704,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169028,-0.002704,0.003999,0.249968,0,0);}
.m84_c00478{transform:matrix(0.169393,-0.002710,0.003999,0.249968,0,0);-ms-transform:matrix(0.169393,-0.002710,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169393,-0.002710,0.003999,0.249968,0,0);}
.m59_c00478{transform:matrix(0.170983,-0.002736,0.003999,0.249968,0,0);-ms-transform:matrix(0.170983,-0.002736,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170983,-0.002736,0.003999,0.249968,0,0);}
.m48_c00478{transform:matrix(0.172119,-0.003959,0.005748,0.249934,0,0);-ms-transform:matrix(0.172119,-0.003959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172119,-0.003959,0.005748,0.249934,0,0);}
.m1f_c00478{transform:matrix(0.172359,-0.003964,0.005748,0.249934,0,0);-ms-transform:matrix(0.172359,-0.003964,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172359,-0.003964,0.005748,0.249934,0,0);}
.md7_c00478{transform:matrix(0.172753,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172753,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172753,-0.002764,0.003999,0.249968,0,0);}
.mab_c00478{transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);-ms-transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172878,-0.002766,0.003999,0.249968,0,0);}
.m66_c00478{transform:matrix(0.173113,-0.002770,0.003999,0.249968,0,0);-ms-transform:matrix(0.173113,-0.002770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173113,-0.002770,0.003999,0.249968,0,0);}
.m6f_c00478{transform:matrix(0.173143,-0.002770,0.003999,0.249968,0,0);-ms-transform:matrix(0.173143,-0.002770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173143,-0.002770,0.003999,0.249968,0,0);}
.m2c_c00478{transform:matrix(0.173464,-0.003990,0.005748,0.249934,0,0);-ms-transform:matrix(0.173464,-0.003990,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173464,-0.003990,0.005748,0.249934,0,0);}
.mbd_c00478{transform:matrix(0.174023,-0.002784,0.003999,0.249968,0,0);-ms-transform:matrix(0.174023,-0.002784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174023,-0.002784,0.003999,0.249968,0,0);}
.mb9_c00478{transform:matrix(0.174358,-0.002790,0.003999,0.249968,0,0);-ms-transform:matrix(0.174358,-0.002790,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174358,-0.002790,0.003999,0.249968,0,0);}
.m7e_c00478{transform:matrix(0.175238,-0.002804,0.003999,0.249968,0,0);-ms-transform:matrix(0.175238,-0.002804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175238,-0.002804,0.003999,0.249968,0,0);}
.m60_c00478{transform:matrix(0.175293,-0.002805,0.003999,0.249968,0,0);-ms-transform:matrix(0.175293,-0.002805,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175293,-0.002805,0.003999,0.249968,0,0);}
.m6d_c00478{transform:matrix(0.175413,-0.002807,0.003999,0.249968,0,0);-ms-transform:matrix(0.175413,-0.002807,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175413,-0.002807,0.003999,0.249968,0,0);}
.m70_c00478{transform:matrix(0.175483,-0.002808,0.003999,0.249968,0,0);-ms-transform:matrix(0.175483,-0.002808,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175483,-0.002808,0.003999,0.249968,0,0);}
.mba_c00478{transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);-ms-transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);}
.ma8_c00478{transform:matrix(0.175748,-0.002812,0.003999,0.249968,0,0);-ms-transform:matrix(0.175748,-0.002812,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175748,-0.002812,0.003999,0.249968,0,0);}
.m9_c00478{transform:matrix(0.175903,-0.004046,0.005748,0.249934,0,0);-ms-transform:matrix(0.175903,-0.004046,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175903,-0.004046,0.005748,0.249934,0,0);}
.m44_c00478{transform:matrix(0.176073,-0.004050,0.005748,0.249934,0,0);-ms-transform:matrix(0.176073,-0.004050,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176073,-0.004050,0.005748,0.249934,0,0);}
.maf_c00478{transform:matrix(0.176277,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176277,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176277,-0.002820,0.003999,0.249968,0,0);}
.mad_c00478{transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-ms-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177117,-0.002834,0.003999,0.249968,0,0);}
.me0_c00478{transform:matrix(0.177377,-0.002838,0.003999,0.249968,0,0);-ms-transform:matrix(0.177377,-0.002838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177377,-0.002838,0.003999,0.249968,0,0);}
.ma2_c00478{transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);-ms-transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);}
.m1a_c00478{transform:matrix(0.178173,-0.004098,0.005748,0.249934,0,0);-ms-transform:matrix(0.178173,-0.004098,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178173,-0.004098,0.005748,0.249934,0,0);}
.m9e_c00478{transform:matrix(0.178312,-0.002853,0.003999,0.249968,0,0);-ms-transform:matrix(0.178312,-0.002853,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178312,-0.002853,0.003999,0.249968,0,0);}
.m68_c00478{transform:matrix(0.178442,-0.002855,0.003999,0.249968,0,0);-ms-transform:matrix(0.178442,-0.002855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178442,-0.002855,0.003999,0.249968,0,0);}
.m2f_c00478{transform:matrix(0.178863,-0.004114,0.005748,0.249934,0,0);-ms-transform:matrix(0.178863,-0.004114,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178863,-0.004114,0.005748,0.249934,0,0);}
.m5c_c00478{transform:matrix(0.179247,-0.002868,0.003999,0.249968,0,0);-ms-transform:matrix(0.179247,-0.002868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179247,-0.002868,0.003999,0.249968,0,0);}
.m87_c00478{transform:matrix(0.179497,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179497,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179497,-0.002872,0.003999,0.249968,0,0);}
.mcf_c00478{transform:matrix(0.179597,-0.002874,0.003999,0.249968,0,0);-ms-transform:matrix(0.179597,-0.002874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179597,-0.002874,0.003999,0.249968,0,0);}
.mbb_c00478{transform:matrix(0.179632,-0.002874,0.003999,0.249968,0,0);-ms-transform:matrix(0.179632,-0.002874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179632,-0.002874,0.003999,0.249968,0,0);}
.mb4_c00478{transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);-ms-transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180702,-0.002891,0.003999,0.249968,0,0);}
.m30_c00478{transform:matrix(0.180782,-0.004158,0.005748,0.249934,0,0);-ms-transform:matrix(0.180782,-0.004158,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180782,-0.004158,0.005748,0.249934,0,0);}
.mc8_c00478{transform:matrix(0.180797,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180797,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180797,-0.002893,0.003999,0.249968,0,0);}
.m82_c00478{transform:matrix(0.180812,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180812,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180812,-0.002893,0.003999,0.249968,0,0);}
.m69_c00478{transform:matrix(0.181087,-0.002897,0.003999,0.249968,0,0);-ms-transform:matrix(0.181087,-0.002897,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181087,-0.002897,0.003999,0.249968,0,0);}
.m9a_c00478{transform:matrix(0.181322,-0.002901,0.003999,0.249968,0,0);-ms-transform:matrix(0.181322,-0.002901,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181322,-0.002901,0.003999,0.249968,0,0);}
.m1c_c00478{transform:matrix(0.181327,-0.004171,0.005748,0.249934,0,0);-ms-transform:matrix(0.181327,-0.004171,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181327,-0.004171,0.005748,0.249934,0,0);}
.m4a_c00478{transform:matrix(0.181347,-0.004171,0.005748,0.249934,0,0);-ms-transform:matrix(0.181347,-0.004171,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181347,-0.004171,0.005748,0.249934,0,0);}
.mbc_c00478{transform:matrix(0.181572,-0.002905,0.003999,0.249968,0,0);-ms-transform:matrix(0.181572,-0.002905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181572,-0.002905,0.003999,0.249968,0,0);}
.m5e_c00478{transform:matrix(0.181827,-0.002909,0.003999,0.249968,0,0);-ms-transform:matrix(0.181827,-0.002909,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181827,-0.002909,0.003999,0.249968,0,0);}
.m6a_c00478{transform:matrix(0.182117,-0.002914,0.003999,0.249968,0,0);-ms-transform:matrix(0.182117,-0.002914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182117,-0.002914,0.003999,0.249968,0,0);}
.m38_c00478{transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-ms-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182602,-0.004200,0.005748,0.249934,0,0);}
.mc0_c00478{transform:matrix(0.183057,-0.002929,0.003999,0.249968,0,0);-ms-transform:matrix(0.183057,-0.002929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183057,-0.002929,0.003999,0.249968,0,0);}
.m57_c00478{transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);-ms-transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183212,-0.002931,0.003999,0.249968,0,0);}
.m55_c00478{transform:matrix(0.183616,-0.002938,0.003999,0.249968,0,0);-ms-transform:matrix(0.183616,-0.002938,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183616,-0.002938,0.003999,0.249968,0,0);}
.m88_c00478{transform:matrix(0.183741,-0.002940,0.003999,0.249968,0,0);-ms-transform:matrix(0.183741,-0.002940,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183741,-0.002940,0.003999,0.249968,0,0);}
.m81_c00478{transform:matrix(0.184061,-0.002945,0.003999,0.249968,0,0);-ms-transform:matrix(0.184061,-0.002945,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184061,-0.002945,0.003999,0.249968,0,0);}
.m22_c00478{transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);-ms-transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184431,-0.004242,0.005748,0.249934,0,0);}
.m8d_c00478{transform:matrix(0.184511,-0.002952,0.003999,0.249968,0,0);-ms-transform:matrix(0.184511,-0.002952,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184511,-0.002952,0.003999,0.249968,0,0);}
.m3e_c00478{transform:matrix(0.184791,-0.004250,0.005748,0.249934,0,0);-ms-transform:matrix(0.184791,-0.004250,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184791,-0.004250,0.005748,0.249934,0,0);}
.mae_c00478{transform:matrix(0.185001,-0.002960,0.003999,0.249968,0,0);-ms-transform:matrix(0.185001,-0.002960,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185001,-0.002960,0.003999,0.249968,0,0);}
.m46_c00478{transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);-ms-transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185396,-0.004264,0.005748,0.249934,0,0);}
.m6b_c00478{transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);-ms-transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185711,-0.002971,0.003999,0.249968,0,0);}
.m40_c00478{transform:matrix(0.185806,-0.004274,0.005748,0.249934,0,0);-ms-transform:matrix(0.185806,-0.004274,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185806,-0.004274,0.005748,0.249934,0,0);}
.m47_c00478{transform:matrix(0.186321,-0.004285,0.005748,0.249934,0,0);-ms-transform:matrix(0.186321,-0.004285,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186321,-0.004285,0.005748,0.249934,0,0);}
.mdf_c00478{transform:matrix(0.186346,-0.002982,0.003999,0.249968,0,0);-ms-transform:matrix(0.186346,-0.002982,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186346,-0.002982,0.003999,0.249968,0,0);}
.m19_c00478{transform:matrix(0.186631,-0.004293,0.005748,0.249934,0,0);-ms-transform:matrix(0.186631,-0.004293,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186631,-0.004293,0.005748,0.249934,0,0);}
.mb1_c00478{transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);-ms-transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186816,-0.002989,0.003999,0.249968,0,0);}
.m54_c00478{transform:matrix(0.186901,-0.002990,0.003999,0.249968,0,0);-ms-transform:matrix(0.186901,-0.002990,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186901,-0.002990,0.003999,0.249968,0,0);}
.m8c_c00478{transform:matrix(0.187071,-0.002993,0.003999,0.249968,0,0);-ms-transform:matrix(0.187071,-0.002993,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187071,-0.002993,0.003999,0.249968,0,0);}
.md8_c00478{transform:matrix(0.187236,-0.002996,0.003999,0.249968,0,0);-ms-transform:matrix(0.187236,-0.002996,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187236,-0.002996,0.003999,0.249968,0,0);}
.m49_c00478{transform:matrix(0.187375,-0.004310,0.005748,0.249934,0,0);-ms-transform:matrix(0.187375,-0.004310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187375,-0.004310,0.005748,0.249934,0,0);}
.ma4_c00478{transform:matrix(0.187956,-0.003007,0.003999,0.249968,0,0);-ms-transform:matrix(0.187956,-0.003007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187956,-0.003007,0.003999,0.249968,0,0);}
.m24_c00478{transform:matrix(0.188865,-0.004344,0.005748,0.249934,0,0);-ms-transform:matrix(0.188865,-0.004344,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188865,-0.004344,0.005748,0.249934,0,0);}
.me1_c00478{transform:matrix(0.189131,-0.003026,0.003999,0.249968,0,0);-ms-transform:matrix(0.189131,-0.003026,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189131,-0.003026,0.003999,0.249968,0,0);}
.m62_c00478{transform:matrix(0.189151,-0.003026,0.003999,0.249968,0,0);-ms-transform:matrix(0.189151,-0.003026,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189151,-0.003026,0.003999,0.249968,0,0);}
.m32_c00478{transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-ms-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189245,-0.004353,0.005748,0.249934,0,0);}
.m36_c00478{transform:matrix(0.189720,-0.004364,0.005748,0.249934,0,0);-ms-transform:matrix(0.189720,-0.004364,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189720,-0.004364,0.005748,0.249934,0,0);}
.m26_c00478{transform:matrix(0.189740,-0.004364,0.005748,0.249934,0,0);-ms-transform:matrix(0.189740,-0.004364,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189740,-0.004364,0.005748,0.249934,0,0);}
.mb2_c00478{transform:matrix(0.190421,-0.003047,0.003999,0.249968,0,0);-ms-transform:matrix(0.190421,-0.003047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190421,-0.003047,0.003999,0.249968,0,0);}
.me4_c00478{transform:matrix(0.190449,-0.003428,0.004499,0.249960,0,0);-ms-transform:matrix(0.190449,-0.003428,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190449,-0.003428,0.004499,0.249960,0,0);}
.m52_c00478{transform:matrix(0.190550,-0.004383,0.005748,0.249934,0,0);-ms-transform:matrix(0.190550,-0.004383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190550,-0.004383,0.005748,0.249934,0,0);}
.me8_c00478{transform:matrix(0.190664,-0.003432,0.004499,0.249960,0,0);-ms-transform:matrix(0.190664,-0.003432,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190664,-0.003432,0.004499,0.249960,0,0);}
.ma3_c00478{transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191011,-0.003056,0.003999,0.249968,0,0);}
.m9c_c00478{transform:matrix(0.191550,-0.003065,0.003999,0.249968,0,0);-ms-transform:matrix(0.191550,-0.003065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191550,-0.003065,0.003999,0.249968,0,0);}
.m7b_c00478{transform:matrix(0.191815,-0.003069,0.003999,0.249968,0,0);-ms-transform:matrix(0.191815,-0.003069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191815,-0.003069,0.003999,0.249968,0,0);}
.mc4_c00478{transform:matrix(0.192040,-0.003073,0.003999,0.249968,0,0);-ms-transform:matrix(0.192040,-0.003073,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192040,-0.003073,0.003999,0.249968,0,0);}
.mbf_c00478{transform:matrix(0.192260,-0.003076,0.003999,0.249968,0,0);-ms-transform:matrix(0.192260,-0.003076,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192260,-0.003076,0.003999,0.249968,0,0);}
.m34_c00478{transform:matrix(0.193419,-0.004449,0.005748,0.249934,0,0);-ms-transform:matrix(0.193419,-0.004449,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193419,-0.004449,0.005748,0.249934,0,0);}
.mb8_c00478{transform:matrix(0.193640,-0.003098,0.003999,0.249968,0,0);-ms-transform:matrix(0.193640,-0.003098,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193640,-0.003098,0.003999,0.249968,0,0);}
.mda_c00478{transform:matrix(0.194560,-0.003113,0.003999,0.249968,0,0);-ms-transform:matrix(0.194560,-0.003113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194560,-0.003113,0.003999,0.249968,0,0);}
.m8e_c00478{transform:matrix(0.194670,-0.003115,0.003999,0.249968,0,0);-ms-transform:matrix(0.194670,-0.003115,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194670,-0.003115,0.003999,0.249968,0,0);}
.mdb_c00478{transform:matrix(0.194735,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194735,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194735,-0.003116,0.003999,0.249968,0,0);}
.m92_c00478{transform:matrix(0.195190,-0.003123,0.003999,0.249968,0,0);-ms-transform:matrix(0.195190,-0.003123,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195190,-0.003123,0.003999,0.249968,0,0);}
.me7_c00478{transform:matrix(0.195418,-0.003518,0.004499,0.249960,0,0);-ms-transform:matrix(0.195418,-0.003518,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195418,-0.003518,0.004499,0.249960,0,0);}
.me6_c00478{transform:matrix(0.195598,-0.003521,0.004499,0.249960,0,0);-ms-transform:matrix(0.195598,-0.003521,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195598,-0.003521,0.004499,0.249960,0,0);}
.m33_c00478{transform:matrix(0.195698,-0.004501,0.005748,0.249934,0,0);-ms-transform:matrix(0.195698,-0.004501,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195698,-0.004501,0.005748,0.249934,0,0);}
.m7f_c00478{transform:matrix(0.195800,-0.003133,0.003999,0.249968,0,0);-ms-transform:matrix(0.195800,-0.003133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195800,-0.003133,0.003999,0.249968,0,0);}
.md4_c00478{transform:matrix(0.196700,-0.003147,0.003999,0.249968,0,0);-ms-transform:matrix(0.196700,-0.003147,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196700,-0.003147,0.003999,0.249968,0,0);}
.m72_c00478{transform:matrix(0.197180,-0.003155,0.003999,0.249968,0,0);-ms-transform:matrix(0.197180,-0.003155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197180,-0.003155,0.003999,0.249968,0,0);}
.m18_c00478{transform:matrix(0.198078,-0.004556,0.005748,0.249934,0,0);-ms-transform:matrix(0.198078,-0.004556,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198078,-0.004556,0.005748,0.249934,0,0);}
.mca_c00478{transform:matrix(0.198250,-0.003172,0.003999,0.249968,0,0);-ms-transform:matrix(0.198250,-0.003172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198250,-0.003172,0.003999,0.249968,0,0);}
.mac_c00478{transform:matrix(0.198470,-0.003176,0.003999,0.249968,0,0);-ms-transform:matrix(0.198470,-0.003176,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198470,-0.003176,0.003999,0.249968,0,0);}
.m23_c00478{transform:matrix(0.199632,-0.004592,0.005748,0.249934,0,0);-ms-transform:matrix(0.199632,-0.004592,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199632,-0.004592,0.005748,0.249934,0,0);}
.ma0_c00478{transform:matrix(0.200284,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200284,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200284,-0.003205,0.003999,0.249968,0,0);}
.m3_c00478{transform:matrix(0.200567,-0.004613,0.005748,0.249934,0,0);-ms-transform:matrix(0.200567,-0.004613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200567,-0.004613,0.005748,0.249934,0,0);}
.m8b_c00478{transform:matrix(0.200699,-0.003211,0.003999,0.249968,0,0);-ms-transform:matrix(0.200699,-0.003211,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200699,-0.003211,0.003999,0.249968,0,0);}
.mb3_c00478{transform:matrix(0.200769,-0.003212,0.003999,0.249968,0,0);-ms-transform:matrix(0.200769,-0.003212,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200769,-0.003212,0.003999,0.249968,0,0);}
.m1e_c00478{transform:matrix(0.201127,-0.004626,0.005748,0.249934,0,0);-ms-transform:matrix(0.201127,-0.004626,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201127,-0.004626,0.005748,0.249934,0,0);}
.m15_c00478{transform:matrix(0.202341,-0.004654,0.005748,0.249934,0,0);-ms-transform:matrix(0.202341,-0.004654,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202341,-0.004654,0.005748,0.249934,0,0);}
.m64_c00478{transform:matrix(0.203229,-0.003252,0.003999,0.249968,0,0);-ms-transform:matrix(0.203229,-0.003252,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203229,-0.003252,0.003999,0.249968,0,0);}
.m7a_c00478{transform:matrix(0.203569,-0.003257,0.003999,0.249968,0,0);-ms-transform:matrix(0.203569,-0.003257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203569,-0.003257,0.003999,0.249968,0,0);}
.m2b_c00478{transform:matrix(0.203801,-0.004687,0.005748,0.249934,0,0);-ms-transform:matrix(0.203801,-0.004687,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203801,-0.004687,0.005748,0.249934,0,0);}
.ma_c00478{transform:matrix(0.204346,-0.004700,0.005748,0.249934,0,0);-ms-transform:matrix(0.204346,-0.004700,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204346,-0.004700,0.005748,0.249934,0,0);}
.md6_c00478{transform:matrix(0.204499,-0.003272,0.003999,0.249968,0,0);-ms-transform:matrix(0.204499,-0.003272,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204499,-0.003272,0.003999,0.249968,0,0);}
.m11_c00478{transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);-ms-transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205046,-0.004716,0.005748,0.249934,0,0);}
.mc5_c00478{transform:matrix(0.205574,-0.003289,0.003999,0.249968,0,0);-ms-transform:matrix(0.205574,-0.003289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205574,-0.003289,0.003999,0.249968,0,0);}
.m6c_c00478{transform:matrix(0.205604,-0.003290,0.003999,0.249968,0,0);-ms-transform:matrix(0.205604,-0.003290,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205604,-0.003290,0.003999,0.249968,0,0);}
.m35_c00478{transform:matrix(0.205856,-0.004735,0.005748,0.249934,0,0);-ms-transform:matrix(0.205856,-0.004735,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205856,-0.004735,0.005748,0.249934,0,0);}
.m63_c00478{transform:matrix(0.205864,-0.003294,0.003999,0.249968,0,0);-ms-transform:matrix(0.205864,-0.003294,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205864,-0.003294,0.003999,0.249968,0,0);}
.md3_c00478{transform:matrix(0.206329,-0.003301,0.003999,0.249968,0,0);-ms-transform:matrix(0.206329,-0.003301,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206329,-0.003301,0.003999,0.249968,0,0);}
.m97_c00478{transform:matrix(0.206619,-0.003306,0.003999,0.249968,0,0);-ms-transform:matrix(0.206619,-0.003306,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206619,-0.003306,0.003999,0.249968,0,0);}
.me5_c00478{transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);-ms-transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206722,-0.003721,0.004499,0.249960,0,0);}
.md1_c00478{transform:matrix(0.206774,-0.003308,0.003999,0.249968,0,0);-ms-transform:matrix(0.206774,-0.003308,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206774,-0.003308,0.003999,0.249968,0,0);}
.m99_c00478{transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);-ms-transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);}
.m76_c00478{transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207458,-0.003319,0.003999,0.249968,0,0);}
.mcc_c00478{transform:matrix(0.207583,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207583,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207583,-0.003321,0.003999,0.249968,0,0);}
.m58_c00478{transform:matrix(0.207778,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207778,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207778,-0.003324,0.003999,0.249968,0,0);}
.mc7_c00478{transform:matrix(0.208008,-0.003328,0.003999,0.249968,0,0);-ms-transform:matrix(0.208008,-0.003328,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208008,-0.003328,0.003999,0.249968,0,0);}
.mc1_c00478{transform:matrix(0.208233,-0.003332,0.003999,0.249968,0,0);-ms-transform:matrix(0.208233,-0.003332,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208233,-0.003332,0.003999,0.249968,0,0);}
.m4f_c00478{transform:matrix(0.208270,-0.004790,0.005748,0.249934,0,0);-ms-transform:matrix(0.208270,-0.004790,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208270,-0.004790,0.005748,0.249934,0,0);}
.m3a_c00478{transform:matrix(0.208410,-0.004793,0.005748,0.249934,0,0);-ms-transform:matrix(0.208410,-0.004793,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208410,-0.004793,0.005748,0.249934,0,0);}
.ma1_c00478{transform:matrix(0.208913,-0.003343,0.003999,0.249968,0,0);-ms-transform:matrix(0.208913,-0.003343,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208913,-0.003343,0.003999,0.249968,0,0);}
.mc2_c00478{transform:matrix(0.209643,-0.003354,0.003999,0.249968,0,0);-ms-transform:matrix(0.209643,-0.003354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209643,-0.003354,0.003999,0.249968,0,0);}
.m17_c00478{transform:matrix(0.209650,-0.004822,0.005748,0.249934,0,0);-ms-transform:matrix(0.209650,-0.004822,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209650,-0.004822,0.005748,0.249934,0,0);}
.mf_c00478{transform:matrix(0.209685,-0.004823,0.005748,0.249934,0,0);-ms-transform:matrix(0.209685,-0.004823,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209685,-0.004823,0.005748,0.249934,0,0);}
.m7_c00478{transform:matrix(0.209855,-0.004827,0.005748,0.249934,0,0);-ms-transform:matrix(0.209855,-0.004827,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209855,-0.004827,0.005748,0.249934,0,0);}
.m56_c00478{transform:matrix(0.210293,-0.003365,0.003999,0.249968,0,0);-ms-transform:matrix(0.210293,-0.003365,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210293,-0.003365,0.003999,0.249968,0,0);}
.m14_c00478{transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-ms-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);}
.m8_c00478{transform:matrix(0.212734,-0.004893,0.005748,0.249934,0,0);-ms-transform:matrix(0.212734,-0.004893,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212734,-0.004893,0.005748,0.249934,0,0);}
.mbe_c00478{transform:matrix(0.213598,-0.003418,0.003999,0.249968,0,0);-ms-transform:matrix(0.213598,-0.003418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213598,-0.003418,0.003999,0.249968,0,0);}
.m5d_c00478{transform:matrix(0.214248,-0.003428,0.003999,0.249968,0,0);-ms-transform:matrix(0.214248,-0.003428,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214248,-0.003428,0.003999,0.249968,0,0);}
.m9d_c00478{transform:matrix(0.214343,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214343,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214343,-0.003429,0.003999,0.249968,0,0);}
.m65_c00478{transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);}
.m3c_c00478{transform:matrix(0.215333,-0.004953,0.005748,0.249934,0,0);-ms-transform:matrix(0.215333,-0.004953,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215333,-0.004953,0.005748,0.249934,0,0);}
.m4e_c00478{transform:matrix(0.215593,-0.004959,0.005748,0.249934,0,0);-ms-transform:matrix(0.215593,-0.004959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215593,-0.004959,0.005748,0.249934,0,0);}
.m50_c00478{transform:matrix(0.215638,-0.004960,0.005748,0.249934,0,0);-ms-transform:matrix(0.215638,-0.004960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215638,-0.004960,0.005748,0.249934,0,0);}
.me3_c00478{transform:matrix(0.215660,-0.003882,0.004499,0.249960,0,0);-ms-transform:matrix(0.215660,-0.003882,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215660,-0.003882,0.004499,0.249960,0,0);}
.m51_c00478{transform:matrix(0.216158,-0.004972,0.005748,0.249934,0,0);-ms-transform:matrix(0.216158,-0.004972,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216158,-0.004972,0.005748,0.249934,0,0);}
.mb5_c00478{transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);-ms-transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216977,-0.003472,0.003999,0.249968,0,0);}
.m3b_c00478{transform:matrix(0.218362,-0.005022,0.005748,0.249934,0,0);-ms-transform:matrix(0.218362,-0.005022,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218362,-0.005022,0.005748,0.249934,0,0);}
.m9f_c00478{transform:matrix(0.218977,-0.003504,0.003999,0.249968,0,0);-ms-transform:matrix(0.218977,-0.003504,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218977,-0.003504,0.003999,0.249968,0,0);}
.m39_c00478{transform:matrix(0.219192,-0.005041,0.005748,0.249934,0,0);-ms-transform:matrix(0.219192,-0.005041,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219192,-0.005041,0.005748,0.249934,0,0);}
.m53_c00478{transform:matrix(0.220722,-0.005077,0.005748,0.249934,0,0);-ms-transform:matrix(0.220722,-0.005077,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220722,-0.005077,0.005748,0.249934,0,0);}
.mce_c00478{transform:matrix(0.221082,-0.003537,0.003999,0.249968,0,0);-ms-transform:matrix(0.221082,-0.003537,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221082,-0.003537,0.003999,0.249968,0,0);}
.m3f_c00478{transform:matrix(0.222201,-0.005111,0.005748,0.249934,0,0);-ms-transform:matrix(0.222201,-0.005111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222201,-0.005111,0.005748,0.249934,0,0);}
.m71_c00478{transform:matrix(0.223011,-0.003568,0.003999,0.249968,0,0);-ms-transform:matrix(0.223011,-0.003568,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223011,-0.003568,0.003999,0.249968,0,0);}
.md_c00478{transform:matrix(0.223641,-0.005144,0.005748,0.249934,0,0);-ms-transform:matrix(0.223641,-0.005144,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223641,-0.005144,0.005748,0.249934,0,0);}
.m21_c00478{transform:matrix(0.226705,-0.005214,0.005748,0.249934,0,0);-ms-transform:matrix(0.226705,-0.005214,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226705,-0.005214,0.005748,0.249934,0,0);}
.mc_c00478{transform:matrix(0.226745,-0.005215,0.005748,0.249934,0,0);-ms-transform:matrix(0.226745,-0.005215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226745,-0.005215,0.005748,0.249934,0,0);}
.m20_c00478{transform:matrix(0.227480,-0.005232,0.005748,0.249934,0,0);-ms-transform:matrix(0.227480,-0.005232,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227480,-0.005232,0.005748,0.249934,0,0);}
.m89_c00478{transform:matrix(0.227551,-0.003641,0.003999,0.249968,0,0);-ms-transform:matrix(0.227551,-0.003641,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227551,-0.003641,0.003999,0.249968,0,0);}
.m3d_c00478{transform:matrix(0.227665,-0.005236,0.005748,0.249934,0,0);-ms-transform:matrix(0.227665,-0.005236,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227665,-0.005236,0.005748,0.249934,0,0);}
.m4d_c00478{transform:matrix(0.228335,-0.005252,0.005748,0.249934,0,0);-ms-transform:matrix(0.228335,-0.005252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228335,-0.005252,0.005748,0.249934,0,0);}
.m43_c00478{transform:matrix(0.228839,-0.005263,0.005748,0.249934,0,0);-ms-transform:matrix(0.228839,-0.005263,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228839,-0.005263,0.005748,0.249934,0,0);}
.m5a_c00478{transform:matrix(0.229451,-0.003671,0.003999,0.249968,0,0);-ms-transform:matrix(0.229451,-0.003671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229451,-0.003671,0.003999,0.249968,0,0);}
.md2_c00478{transform:matrix(0.229516,-0.003672,0.003999,0.249968,0,0);-ms-transform:matrix(0.229516,-0.003672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229516,-0.003672,0.003999,0.249968,0,0);}
.m85_c00478{transform:matrix(0.229986,-0.003680,0.003999,0.249968,0,0);-ms-transform:matrix(0.229986,-0.003680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229986,-0.003680,0.003999,0.249968,0,0);}
.m37_c00478{transform:matrix(0.231444,-0.005323,0.005748,0.249934,0,0);-ms-transform:matrix(0.231444,-0.005323,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231444,-0.005323,0.005748,0.249934,0,0);}
.m13_c00478{transform:matrix(0.231854,-0.005333,0.005748,0.249934,0,0);-ms-transform:matrix(0.231854,-0.005333,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231854,-0.005333,0.005748,0.249934,0,0);}
.m79_c00478{transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);-ms-transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233735,-0.003740,0.003999,0.249968,0,0);}
.me9_c00478{transform:matrix(0.235677,-0.004242,0.004499,0.249960,0,0);-ms-transform:matrix(0.235677,-0.004242,0.004499,0.249960,0,0);-webkit-transform:matrix(0.235677,-0.004242,0.004499,0.249960,0,0);}
.mdc_c00478{transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);-ms-transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236070,-0.003777,0.003999,0.249968,0,0);}
.m1d_c00478{transform:matrix(0.240216,-0.005525,0.005748,0.249934,0,0);-ms-transform:matrix(0.240216,-0.005525,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240216,-0.005525,0.005748,0.249934,0,0);}
.m4c_c00478{transform:matrix(0.240821,-0.005539,0.005748,0.249934,0,0);-ms-transform:matrix(0.240821,-0.005539,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240821,-0.005539,0.005748,0.249934,0,0);}
.ma5_c00478{transform:matrix(0.241334,-0.003861,0.003999,0.249968,0,0);-ms-transform:matrix(0.241334,-0.003861,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241334,-0.003861,0.003999,0.249968,0,0);}
.m91_c00478{transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);}
.m83_c00478{transform:matrix(0.242369,-0.003878,0.003999,0.249968,0,0);-ms-transform:matrix(0.242369,-0.003878,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242369,-0.003878,0.003999,0.249968,0,0);}
.md0_c00478{transform:matrix(0.247918,-0.003967,0.003999,0.249968,0,0);-ms-transform:matrix(0.247918,-0.003967,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247918,-0.003967,0.003999,0.249968,0,0);}
.m16_c00478{transform:matrix(0.253078,-0.005821,0.005748,0.249934,0,0);-ms-transform:matrix(0.253078,-0.005821,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253078,-0.005821,0.005748,0.249934,0,0);}
.m5b_c00478{transform:matrix(0.253088,-0.004049,0.003999,0.249968,0,0);-ms-transform:matrix(0.253088,-0.004049,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253088,-0.004049,0.003999,0.249968,0,0);}
.ma9_c00478{transform:matrix(0.253518,-0.004056,0.003999,0.249968,0,0);-ms-transform:matrix(0.253518,-0.004056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253518,-0.004056,0.003999,0.249968,0,0);}
.m45_c00478{transform:matrix(0.257607,-0.005925,0.005748,0.249934,0,0);-ms-transform:matrix(0.257607,-0.005925,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257607,-0.005925,0.005748,0.249934,0,0);}
.m6_c00478{transform:matrix(0.263240,-0.006055,0.005748,0.249934,0,0);-ms-transform:matrix(0.263240,-0.006055,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263240,-0.006055,0.005748,0.249934,0,0);}
.m75_c00478{transform:matrix(0.267916,-0.004287,0.003999,0.249968,0,0);-ms-transform:matrix(0.267916,-0.004287,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267916,-0.004287,0.003999,0.249968,0,0);}
.mb_c00478{transform:matrix(0.271653,-0.006248,0.005748,0.249934,0,0);-ms-transform:matrix(0.271653,-0.006248,0.005748,0.249934,0,0);-webkit-transform:matrix(0.271653,-0.006248,0.005748,0.249934,0,0);}
.m1_c00478{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m5f_c00478{transform:matrix(0.302291,-0.004837,0.003999,0.249968,0,0);-ms-transform:matrix(0.302291,-0.004837,0.003999,0.249968,0,0);-webkit-transform:matrix(0.302291,-0.004837,0.003999,0.249968,0,0);}
.m5_c00478{transform:matrix(0.304170,-0.006996,0.005748,0.249934,0,0);-ms-transform:matrix(0.304170,-0.006996,0.005748,0.249934,0,0);-webkit-transform:matrix(0.304170,-0.006996,0.005748,0.249934,0,0);}
.mb7_c00478{transform:matrix(0.308071,-0.004929,0.003999,0.249968,0,0);-ms-transform:matrix(0.308071,-0.004929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.308071,-0.004929,0.003999,0.249968,0,0);}
.m27_c00478{transform:matrix(0.308323,-0.007091,0.005748,0.249934,0,0);-ms-transform:matrix(0.308323,-0.007091,0.005748,0.249934,0,0);-webkit-transform:matrix(0.308323,-0.007091,0.005748,0.249934,0,0);}
.m29_c00478{transform:matrix(0.337241,-0.007757,0.005748,0.249934,0,0);-ms-transform:matrix(0.337241,-0.007757,0.005748,0.249934,0,0);-webkit-transform:matrix(0.337241,-0.007757,0.005748,0.249934,0,0);}
.m12_c00478{transform:matrix(0.357705,-0.008227,0.005748,0.249934,0,0);-ms-transform:matrix(0.357705,-0.008227,0.005748,0.249934,0,0);-webkit-transform:matrix(0.357705,-0.008227,0.005748,0.249934,0,0);}
.m90_c00478{transform:matrix(0.389715,-0.006235,0.003999,0.249968,0,0);-ms-transform:matrix(0.389715,-0.006235,0.003999,0.249968,0,0);-webkit-transform:matrix(0.389715,-0.006235,0.003999,0.249968,0,0);}
.m2_c00478{transform:matrix(0.392071,-0.009018,0.005748,0.249934,0,0);-ms-transform:matrix(0.392071,-0.009018,0.005748,0.249934,0,0);-webkit-transform:matrix(0.392071,-0.009018,0.005748,0.249934,0,0);}
.m0_c00478{transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:0.000000px;}
.fc0_c00478{color:transparent;}
.fs0_c00478{font-size:25.200000px;}
.fs16_c00478{font-size:57.757392px;}
.fs9_c00478{font-size:57.765273px;}
.fsc_c00478{font-size:59.865828px;}
.fsb_c00478{font-size:60.916106px;}
.fs14_c00478{font-size:61.957929px;}
.fs17_c00478{font-size:61.960035px;}
.fs4_c00478{font-size:63.016661px;}
.fs15_c00478{font-size:64.058198px;}
.fs8_c00478{font-size:64.066939px;}
.fsd_c00478{font-size:65.108332px;}
.fse_c00478{font-size:66.158467px;}
.fs6_c00478{font-size:66.167494px;}
.fsa_c00478{font-size:67.217772px;}
.fsf_c00478{font-size:68.258735px;}
.fs11_c00478{font-size:69.308870px;}
.fs12_c00478{font-size:70.359004px;}
.fs3_c00478{font-size:70.368605px;}
.fs10_c00478{font-size:71.409139px;}
.fs2_c00478{font-size:71.418883px;}
.fs5_c00478{font-size:72.469160px;}
.fs13_c00478{font-size:73.509407px;}
.fs7_c00478{font-size:73.519438px;}
.fs1_c00478{font-size:74.550000px;}
.y0_c00478{bottom:0.000000px;}
.ye3_c00478{bottom:30.513000px;}
.ye4_c00478{bottom:30.703458px;}
.ye5_c00478{bottom:31.214109px;}
.ye6_c00478{bottom:32.359746px;}
.ye7_c00478{bottom:32.977749px;}
.ye8_c00478{bottom:33.693276px;}
.ye9_c00478{bottom:34.053213px;}
.yea_c00478{bottom:35.611545px;}
.ydd_c00478{bottom:48.025632px;}
.yde_c00478{bottom:48.902208px;}
.ydf_c00478{bottom:49.843404px;}
.ye0_c00478{bottom:50.523840px;}
.ye1_c00478{bottom:51.753720px;}
.ye2_c00478{bottom:52.263312px;}
.yd6_c00478{bottom:64.498800px;}
.yd7_c00478{bottom:65.024940px;}
.yd8_c00478{bottom:66.779196px;}
.yd9_c00478{bottom:67.580928px;}
.yda_c00478{bottom:68.205960px;}
.ydb_c00478{bottom:68.576364px;}
.ydc_c00478{bottom:69.218892px;}
.ycf_c00478{bottom:80.973408px;}
.yd0_c00478{bottom:82.184640px;}
.yd1_c00478{bottom:82.545864px;}
.yd2_c00478{bottom:83.592792px;}
.yd3_c00478{bottom:85.018572px;}
.yd4_c00478{bottom:86.249052px;}
.yd5_c00478{bottom:87.067032px;}
.yc6_c00478{bottom:96.098580px;}
.yc7_c00478{bottom:96.434424px;}
.yc8_c00478{bottom:96.821604px;}
.yc9_c00478{bottom:98.497872px;}
.yca_c00478{bottom:100.136964px;}
.ycb_c00478{bottom:101.142144px;}
.ycc_c00478{bottom:101.487720px;}
.ycd_c00478{bottom:103.108584px;}
.yce_c00478{bottom:103.469616px;}
.yc0_c00478{bottom:114.729216px;}
.yc1_c00478{bottom:115.655352px;}
.yc2_c00478{bottom:116.991324px;}
.yc3_c00478{bottom:118.572504px;}
.yc4_c00478{bottom:120.269268px;}
.yc5_c00478{bottom:120.646164px;}
.yb9_c00478{bottom:131.472732px;}
.yba_c00478{bottom:131.988372px;}
.ybb_c00478{bottom:133.042692px;}
.ybc_c00478{bottom:133.576944px;}
.ybd_c00478{bottom:134.610012px;}
.ybe_c00478{bottom:137.305080px;}
.ybf_c00478{bottom:138.007128px;}
.yaf_c00478{bottom:148.752144px;}
.yb0_c00478{bottom:149.344080px;}
.yb1_c00478{bottom:150.605820px;}
.yb2_c00478{bottom:151.222956px;}
.yb3_c00478{bottom:151.580940px;}
.yb4_c00478{bottom:152.869920px;}
.yb5_c00478{bottom:153.374868px;}
.yb6_c00478{bottom:154.932348px;}
.yb7_c00478{bottom:155.286360px;}
.yb8_c00478{bottom:155.631540px;}
.ya7_c00478{bottom:167.109600px;}
.ya8_c00478{bottom:167.416560px;}
.ya9_c00478{bottom:167.809968px;}
.yaa_c00478{bottom:168.920136px;}
.yab_c00478{bottom:169.361064px;}
.yac_c00478{bottom:169.870896px;}
.yad_c00478{bottom:170.557824px;}
.yae_c00478{bottom:170.851680px;}
.y9f_c00478{bottom:183.856452px;}
.ya0_c00478{bottom:184.348116px;}
.ya1_c00478{bottom:184.633656px;}
.ya2_c00478{bottom:186.462432px;}
.ya3_c00478{bottom:187.076004px;}
.ya4_c00478{bottom:187.449648px;}
.ya5_c00478{bottom:188.062236px;}
.ya6_c00478{bottom:189.122340px;}
.y98_c00478{bottom:199.788636px;}
.y99_c00478{bottom:201.227292px;}
.y9a_c00478{bottom:201.616260px;}
.y9b_c00478{bottom:202.770024px;}
.y9c_c00478{bottom:203.356092px;}
.y9d_c00478{bottom:203.855112px;}
.y9e_c00478{bottom:205.000272px;}
.y8f_c00478{bottom:217.879512px;}
.y90_c00478{bottom:218.127840px;}
.y91_c00478{bottom:218.532744px;}
.y92_c00478{bottom:219.455592px;}
.y93_c00478{bottom:219.776796px;}
.y94_c00478{bottom:220.807764px;}
.y95_c00478{bottom:221.376444px;}
.y96_c00478{bottom:221.891388px;}
.y97_c00478{bottom:222.753252px;}
.y87_c00478{bottom:234.890328px;}
.y88_c00478{bottom:235.339008px;}
.y89_c00478{bottom:235.689360px;}
.y8a_c00478{bottom:236.454864px;}
.y8b_c00478{bottom:236.766144px;}
.y8c_c00478{bottom:237.755568px;}
.y8d_c00478{bottom:238.354800px;}
.y8e_c00478{bottom:238.844280px;}
.y81_c00478{bottom:252.172596px;}
.y82_c00478{bottom:252.980268px;}
.y83_c00478{bottom:253.818732px;}
.y84_c00478{bottom:254.466444px;}
.y85_c00478{bottom:254.678436px;}
.y86_c00478{bottom:255.594516px;}
.y79_c00478{bottom:268.921560px;}
.y7a_c00478{bottom:269.276472px;}
.y7b_c00478{bottom:269.717004px;}
.y7c_c00478{bottom:271.101732px;}
.y7d_c00478{bottom:271.580544px;}
.y7e_c00478{bottom:272.232312px;}
.y7f_c00478{bottom:272.531880px;}
.y80_c00478{bottom:273.394344px;}
.y72_c00478{bottom:285.658296px;}
.y73_c00478{bottom:286.429656px;}
.y74_c00478{bottom:287.971704px;}
.y75_c00478{bottom:288.151620px;}
.y76_c00478{bottom:289.140252px;}
.y77_c00478{bottom:290.565384px;}
.y78_c00478{bottom:291.633600px;}
.y6a_c00478{bottom:302.666892px;}
.y6b_c00478{bottom:303.027408px;}
.y6c_c00478{bottom:303.639612px;}
.y6d_c00478{bottom:304.611636px;}
.y6e_c00478{bottom:304.935780px;}
.y6f_c00478{bottom:305.429856px;}
.y70_c00478{bottom:306.537192px;}
.y71_c00478{bottom:307.222716px;}
.y64_c00478{bottom:319.948728px;}
.y65_c00478{bottom:321.092196px;}
.y66_c00478{bottom:322.345752px;}
.y67_c00478{bottom:322.827672px;}
.y68_c00478{bottom:323.802840px;}
.y69_c00478{bottom:324.076200px;}
.y5b_c00478{bottom:336.963996px;}
.y5c_c00478{bottom:338.274420px;}
.y5d_c00478{bottom:338.619288px;}
.y5e_c00478{bottom:339.616440px;}
.y5f_c00478{bottom:339.888972px;}
.y60_c00478{bottom:340.313568px;}
.y61_c00478{bottom:341.084400px;}
.y62_c00478{bottom:342.354936px;}
.y63_c00478{bottom:342.656208px;}
.y55_c00478{bottom:353.163000px;}
.y56_c00478{bottom:353.538576px;}
.y57_c00478{bottom:354.445944px;}
.y58_c00478{bottom:355.249632px;}
.y59_c00478{bottom:356.360568px;}
.y5a_c00478{bottom:357.819504px;}
.y50_c00478{bottom:370.395486px;}
.y51_c00478{bottom:371.012104px;}
.y52_c00478{bottom:374.005945px;}
.y53_c00478{bottom:375.446700px;}
.y54_c00478{bottom:376.918780px;}
.y49_c00478{bottom:387.138288px;}
.y4a_c00478{bottom:387.750192px;}
.y4b_c00478{bottom:388.108647px;}
.y4c_c00478{bottom:389.293623px;}
.y4d_c00478{bottom:389.764846px;}
.y4e_c00478{bottom:391.076478px;}
.y4f_c00478{bottom:391.949593px;}
.y41_c00478{bottom:404.425017px;}
.y42_c00478{bottom:405.269339px;}
.y43_c00478{bottom:405.665647px;}
.y44_c00478{bottom:405.933240px;}
.y45_c00478{bottom:407.180322px;}
.y46_c00478{bottom:408.266755px;}
.y47_c00478{bottom:408.411533px;}
.y48_c00478{bottom:409.370095px;}
.y39_c00478{bottom:421.436458px;}
.y3a_c00478{bottom:422.038537px;}
.y3b_c00478{bottom:423.085728px;}
.y3c_c00478{bottom:423.764877px;}
.y3d_c00478{bottom:424.219167px;}
.y3e_c00478{bottom:424.989291px;}
.y3f_c00478{bottom:425.509815px;}
.y40_c00478{bottom:426.047488px;}
.y32_c00478{bottom:437.912115px;}
.y33_c00478{bottom:438.422820px;}
.y34_c00478{bottom:438.861703px;}
.y35_c00478{bottom:439.793212px;}
.y36_c00478{bottom:440.395736px;}
.y37_c00478{bottom:441.805549px;}
.y38_c00478{bottom:442.651072px;}
.y2a_c00478{bottom:454.925334px;}
.y2b_c00478{bottom:455.719773px;}
.y2c_c00478{bottom:456.633556px;}
.y2d_c00478{bottom:457.065753px;}
.y2e_c00478{bottom:458.354166px;}
.y2f_c00478{bottom:458.858697px;}
.y30_c00478{bottom:459.188559px;}
.y31_c00478{bottom:460.064355px;}
.y24_c00478{bottom:471.133194px;}
.y25_c00478{bottom:472.260062px;}
.y26_c00478{bottom:472.745312px;}
.y27_c00478{bottom:473.153076px;}
.y28_c00478{bottom:475.876001px;}
.y29_c00478{bottom:478.006417px;}
.y1e_c00478{bottom:487.876633px;}
.y1f_c00478{bottom:488.137667px;}
.y20_c00478{bottom:489.540279px;}
.y21_c00478{bottom:491.186277px;}
.y22_c00478{bottom:493.402107px;}
.y23_c00478{bottom:494.038319px;}
.y18_c00478{bottom:505.432624px;}
.y19_c00478{bottom:507.050709px;}
.y1a_c00478{bottom:507.395467px;}
.y1b_c00478{bottom:509.128748px;}
.y1c_c00478{bottom:510.679108px;}
.y1d_c00478{bottom:511.104563px;}
.y10_c00478{bottom:522.177238px;}
.y11_c00478{bottom:523.131134px;}
.y12_c00478{bottom:523.549094px;}
.y13_c00478{bottom:525.047376px;}
.y14_c00478{bottom:525.225590px;}
.y15_c00478{bottom:525.837237px;}
.y16_c00478{bottom:527.280025px;}
.y17_c00478{bottom:527.773783px;}
.y9_c00478{bottom:539.998205px;}
.ya_c00478{bottom:540.222831px;}
.yb_c00478{bottom:540.577540px;}
.yc_c00478{bottom:541.549989px;}
.yd_c00478{bottom:542.377362px;}
.ye_c00478{bottom:542.800080px;}
.yf_c00478{bottom:544.569502px;}
.y3_c00478{bottom:555.667500px;}
.y4_c00478{bottom:556.408008px;}
.y5_c00478{bottom:560.065008px;}
.y6_c00478{bottom:560.413389px;}
.y7_c00478{bottom:561.550371px;}
.y8_c00478{bottom:561.940911px;}
.y2_c00478{bottom:572.397000px;}
.y1_c00478{bottom:584.959500px;}
.h2_c00478{height:25.200000px;}
.h18_c00478{height:57.757392px;}
.hb_c00478{height:57.765273px;}
.he_c00478{height:59.865828px;}
.hd_c00478{height:60.916106px;}
.h16_c00478{height:61.957929px;}
.h19_c00478{height:61.960035px;}
.h6_c00478{height:63.016661px;}
.h17_c00478{height:64.058198px;}
.ha_c00478{height:64.066939px;}
.hf_c00478{height:65.108332px;}
.h10_c00478{height:66.158467px;}
.h8_c00478{height:66.167494px;}
.hc_c00478{height:67.217772px;}
.h11_c00478{height:68.258735px;}
.h13_c00478{height:69.308870px;}
.h14_c00478{height:70.359004px;}
.h5_c00478{height:70.368605px;}
.h12_c00478{height:71.409139px;}
.h4_c00478{height:71.418883px;}
.h7_c00478{height:72.469160px;}
.h15_c00478{height:73.509407px;}
.h9_c00478{height:73.519438px;}
.h3_c00478{height:74.550000px;}
.h0_c00478{height:617.700000px;}
.h1_c00478{height:618.000000px;}
.w0_c00478{width:359.100000px;}
.w1_c00478{width:359.250000px;}
.x0_c00478{left:0.000000px;}
.x3_c00478{left:17.320500px;}
.x3d_c00478{left:18.862318px;}
.x55_c00478{left:20.126484px;}
.x6c_c00478{left:21.507912px;}
.x23_c00478{left:23.197452px;}
.x9_c00478{left:24.976251px;}
.x1a_c00478{left:28.864468px;}
.x7b_c00478{left:31.750500px;}
.x5c_c00478{left:34.772724px;}
.xa_c00478{left:37.483200px;}
.x4d_c00478{left:39.388860px;}
.x6d_c00478{left:40.692912px;}
.x41_c00478{left:41.779500px;}
.x68_c00478{left:44.426532px;}
.x2b_c00478{left:46.371061px;}
.x58_c00478{left:48.198852px;}
.x4_c00478{left:49.516500px;}
.x2f_c00478{left:53.674062px;}
.xb_c00478{left:57.211977px;}
.x5d_c00478{left:58.578840px;}
.xf_c00478{left:61.206144px;}
.x24_c00478{left:62.893177px;}
.x38_c00478{left:63.985989px;}
.x1f_c00478{left:65.113626px;}
.x56_c00478{left:66.934740px;}
.x2c_c00478{left:70.738356px;}
.x4e_c00478{left:73.431780px;}
.x7a_c00478{left:75.263004px;}
.x75_c00478{left:77.758260px;}
.x10_c00478{left:80.226592px;}
.x45_c00478{left:81.867924px;}
.x35_c00478{left:83.136016px;}
.x20_c00478{left:85.363177px;}
.x15_c00478{left:87.658284px;}
.x1b_c00478{left:92.653452px;}
.x76_c00478{left:94.145676px;}
.x6f_c00478{left:95.523348px;}
.x36_c00478{left:97.184793px;}
.x42_c00478{left:98.490000px;}
.x16_c00478{left:102.647784px;}
.x64_c00478{left:106.425180px;}
.x25_c00478{left:108.560817px;}
.xc_c00478{left:111.237687px;}
.x5e_c00478{left:112.880976px;}
.x30_c00478{left:115.256049px;}
.x59_c00478{left:117.939852px;}
.x39_c00478{left:120.400576px;}
.x2_c00478{left:123.390000px;}
.x51_c00478{left:124.670016px;}
.x4f_c00478{left:127.431552px;}
.x26_c00478{left:130.157800px;}
.x5f_c00478{left:131.737164px;}
.x52_c00478{left:132.820224px;}
.x6e_c00478{left:134.666412px;}
.x5a_c00478{left:137.394852px;}
.x77_c00478{left:141.761616px;}
.x3a_c00478{left:142.846111px;}
.x46_c00478{left:145.770312px;}
.x11_c00478{left:148.305645px;}
.x4a_c00478{left:152.255232px;}
.x31_c00478{left:155.224569px;}
.x12_c00478{left:156.380317px;}
.x1_c00478{left:157.680000px;}
.x47_c00478{left:158.771280px;}
.x65_c00478{left:161.374788px;}
.x37_c00478{left:162.824830px;}
.x1c_c00478{left:167.481177px;}
.x7c_c00478{left:168.681000px;}
.x73_c00478{left:171.546600px;}
.x50_c00478{left:172.850088px;}
.x69_c00478{left:174.409164px;}
.x3e_c00478{left:175.838818px;}
.x17_c00478{left:178.007784px;}
.x48_c00478{left:179.025672px;}
.xd_c00478{left:180.662656px;}
.x32_c00478{left:181.958260px;}
.x13_c00478{left:184.213473px;}
.x70_c00478{left:186.110316px;}
.x66_c00478{left:189.283056px;}
.x60_c00478{left:192.421704px;}
.x27_c00478{left:194.593251px;}
.x5b_c00478{left:199.233852px;}
.x3b_c00478{left:205.289475px;}
.x71_c00478{left:206.322912px;}
.x5_c00478{left:208.516500px;}
.x67_c00478{left:213.063660px;}
.x21_c00478{left:215.803176px;}
.x43_c00478{left:218.154000px;}
.x28_c00478{left:219.791976px;}
.x6a_c00478{left:221.419920px;}
.x6_c00478{left:223.663500px;}
.x61_c00478{left:225.901176px;}
.x33_c00478{left:227.252505px;}
.x7d_c00478{left:228.429000px;}
.x4b_c00478{left:233.195640px;}
.x2d_c00478{left:234.359193px;}
.x29_c00478{left:236.287114px;}
.x3f_c00478{left:238.480318px;}
.x53_c00478{left:242.513688px;}
.x18_c00478{left:245.414784px;}
.x3c_c00478{left:246.839872px;}
.x4c_c00478{left:248.405160px;}
.x14_c00478{left:249.814491px;}
.x72_c00478{left:252.764352px;}
.x62_c00478{left:256.209696px;}
.x34_c00478{left:257.844714px;}
.x78_c00478{left:262.485024px;}
.x19_c00478{left:263.912784px;}
.x1d_c00478{left:268.193488px;}
.x6b_c00478{left:271.922388px;}
.x7_c00478{left:273.097500px;}
.x49_c00478{left:276.228396px;}
.xe_c00478{left:278.931438px;}
.x2a_c00478{left:280.042116px;}
.x2e_c00478{left:281.365609px;}
.x57_c00478{left:283.171260px;}
.x8_c00478{left:290.077500px;}
.x54_c00478{left:291.085032px;}
.x74_c00478{left:294.971880px;}
.x1e_c00478{left:297.094644px;}
.x79_c00478{left:299.636448px;}
.x40_c00478{left:302.483818px;}
.x22_c00478{left:304.580140px;}
.x63_c00478{left:306.887880px;}
.x44_c00478{left:309.337500px;}
.x7e_c00478{left:315.003000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs0_c00478{font-size:22.400000pt;}
.fs16_c00478{font-size:51.339904pt;}
.fs9_c00478{font-size:51.346909pt;}
.fsc_c00478{font-size:53.214070pt;}
.fsb_c00478{font-size:54.147650pt;}
.fs14_c00478{font-size:55.073715pt;}
.fs17_c00478{font-size:55.075587pt;}
.fs4_c00478{font-size:56.014810pt;}
.fs15_c00478{font-size:56.940620pt;}
.fs8_c00478{font-size:56.948390pt;}
.fsd_c00478{font-size:57.874073pt;}
.fse_c00478{font-size:58.807526pt;}
.fs6_c00478{font-size:58.815551pt;}
.fsa_c00478{font-size:59.749131pt;}
.fsf_c00478{font-size:60.674432pt;}
.fs11_c00478{font-size:61.607884pt;}
.fs12_c00478{font-size:62.541337pt;}
.fs3_c00478{font-size:62.549871pt;}
.fs10_c00478{font-size:63.474790pt;}
.fs2_c00478{font-size:63.483451pt;}
.fs5_c00478{font-size:64.417032pt;}
.fs13_c00478{font-size:65.341695pt;}
.fs7_c00478{font-size:65.350612pt;}
.fs1_c00478{font-size:66.266667pt;}
.y0_c00478{bottom:0.000000pt;}
.ye3_c00478{bottom:27.122667pt;}
.ye4_c00478{bottom:27.291963pt;}
.ye5_c00478{bottom:27.745875pt;}
.ye6_c00478{bottom:28.764219pt;}
.ye7_c00478{bottom:29.313555pt;}
.ye8_c00478{bottom:29.949579pt;}
.ye9_c00478{bottom:30.269523pt;}
.yea_c00478{bottom:31.654707pt;}
.ydd_c00478{bottom:42.689451pt;}
.yde_c00478{bottom:43.468629pt;}
.ydf_c00478{bottom:44.305248pt;}
.ye0_c00478{bottom:44.910080pt;}
.ye1_c00478{bottom:46.003307pt;}
.ye2_c00478{bottom:46.456277pt;}
.yd6_c00478{bottom:57.332267pt;}
.yd7_c00478{bottom:57.799947pt;}
.yd8_c00478{bottom:59.359285pt;}
.yd9_c00478{bottom:60.071936pt;}
.yda_c00478{bottom:60.627520pt;}
.ydb_c00478{bottom:60.956768pt;}
.ydc_c00478{bottom:61.527904pt;}
.ycf_c00478{bottom:71.976363pt;}
.yd0_c00478{bottom:73.053013pt;}
.yd1_c00478{bottom:73.374101pt;}
.yd2_c00478{bottom:74.304704pt;}
.yd3_c00478{bottom:75.572064pt;}
.yd4_c00478{bottom:76.665824pt;}
.yd5_c00478{bottom:77.392917pt;}
.yc6_c00478{bottom:85.420960pt;}
.yc7_c00478{bottom:85.719488pt;}
.yc8_c00478{bottom:86.063648pt;}
.yc9_c00478{bottom:87.553664pt;}
.yca_c00478{bottom:89.010635pt;}
.ycb_c00478{bottom:89.904128pt;}
.ycc_c00478{bottom:90.211307pt;}
.ycd_c00478{bottom:91.652075pt;}
.yce_c00478{bottom:91.972992pt;}
.yc0_c00478{bottom:101.981525pt;}
.yc1_c00478{bottom:102.804757pt;}
.yc2_c00478{bottom:103.992288pt;}
.yc3_c00478{bottom:105.397781pt;}
.yc4_c00478{bottom:106.906016pt;}
.yc5_c00478{bottom:107.241035pt;}
.yb9_c00478{bottom:116.864651pt;}
.yba_c00478{bottom:117.322997pt;}
.ybb_c00478{bottom:118.260171pt;}
.ybc_c00478{bottom:118.735061pt;}
.ybd_c00478{bottom:119.653344pt;}
.ybe_c00478{bottom:122.048960pt;}
.ybf_c00478{bottom:122.673003pt;}
.yaf_c00478{bottom:132.224128pt;}
.yb0_c00478{bottom:132.750293pt;}
.yb1_c00478{bottom:133.871840pt;}
.yb2_c00478{bottom:134.420405pt;}
.yb3_c00478{bottom:134.738613pt;}
.yb4_c00478{bottom:135.884373pt;}
.yb5_c00478{bottom:136.333216pt;}
.yb6_c00478{bottom:137.717643pt;}
.yb7_c00478{bottom:138.032320pt;}
.yb8_c00478{bottom:138.339147pt;}
.ya7_c00478{bottom:148.541867pt;}
.ya8_c00478{bottom:148.814720pt;}
.ya9_c00478{bottom:149.164416pt;}
.yaa_c00478{bottom:150.151232pt;}
.yab_c00478{bottom:150.543168pt;}
.yac_c00478{bottom:150.996352pt;}
.yad_c00478{bottom:151.606955pt;}
.yae_c00478{bottom:151.868160pt;}
.y9f_c00478{bottom:163.427957pt;}
.ya0_c00478{bottom:163.864992pt;}
.ya1_c00478{bottom:164.118805pt;}
.ya2_c00478{bottom:165.744384pt;}
.ya3_c00478{bottom:166.289781pt;}
.ya4_c00478{bottom:166.621909pt;}
.ya5_c00478{bottom:167.166432pt;}
.ya6_c00478{bottom:168.108747pt;}
.y98_c00478{bottom:177.589899pt;}
.y99_c00478{bottom:178.868704pt;}
.y9a_c00478{bottom:179.214453pt;}
.y9b_c00478{bottom:180.240021pt;}
.y9c_c00478{bottom:180.760971pt;}
.y9d_c00478{bottom:181.204544pt;}
.y9e_c00478{bottom:182.222464pt;}
.y8f_c00478{bottom:193.670677pt;}
.y90_c00478{bottom:193.891413pt;}
.y91_c00478{bottom:194.251328pt;}
.y92_c00478{bottom:195.071637pt;}
.y93_c00478{bottom:195.357152pt;}
.y94_c00478{bottom:196.273568pt;}
.y95_c00478{bottom:196.779061pt;}
.y96_c00478{bottom:197.236789pt;}
.y97_c00478{bottom:198.002891pt;}
.y87_c00478{bottom:208.791403pt;}
.y88_c00478{bottom:209.190229pt;}
.y89_c00478{bottom:209.501653pt;}
.y8a_c00478{bottom:210.182101pt;}
.y8b_c00478{bottom:210.458795pt;}
.y8c_c00478{bottom:211.338283pt;}
.y8d_c00478{bottom:211.870933pt;}
.y8e_c00478{bottom:212.306027pt;}
.y81_c00478{bottom:224.153419pt;}
.y82_c00478{bottom:224.871349pt;}
.y83_c00478{bottom:225.616651pt;}
.y84_c00478{bottom:226.192395pt;}
.y85_c00478{bottom:226.380832pt;}
.y86_c00478{bottom:227.195125pt;}
.y79_c00478{bottom:239.041387pt;}
.y7a_c00478{bottom:239.356864pt;}
.y7b_c00478{bottom:239.748448pt;}
.y7c_c00478{bottom:240.979317pt;}
.y7d_c00478{bottom:241.404928pt;}
.y7e_c00478{bottom:241.984277pt;}
.y7f_c00478{bottom:242.250560pt;}
.y80_c00478{bottom:243.017195pt;}
.y72_c00478{bottom:253.918485pt;}
.y73_c00478{bottom:254.604139pt;}
.y74_c00478{bottom:255.974848pt;}
.y75_c00478{bottom:256.134773pt;}
.y76_c00478{bottom:257.013557pt;}
.y77_c00478{bottom:258.280341pt;}
.y78_c00478{bottom:259.229867pt;}
.y6a_c00478{bottom:269.037237pt;}
.y6b_c00478{bottom:269.357696pt;}
.y6c_c00478{bottom:269.901877pt;}
.y6d_c00478{bottom:270.765899pt;}
.y6e_c00478{bottom:271.054027pt;}
.y6f_c00478{bottom:271.493205pt;}
.y70_c00478{bottom:272.477504pt;}
.y71_c00478{bottom:273.086859pt;}
.y64_c00478{bottom:284.398869pt;}
.y65_c00478{bottom:285.415285pt;}
.y66_c00478{bottom:286.529557pt;}
.y67_c00478{bottom:286.957931pt;}
.y68_c00478{bottom:287.824747pt;}
.y69_c00478{bottom:288.067733pt;}
.y5b_c00478{bottom:299.523552pt;}
.y5c_c00478{bottom:300.688373pt;}
.y5d_c00478{bottom:300.994923pt;}
.y5e_c00478{bottom:301.881280pt;}
.y5f_c00478{bottom:302.123531pt;}
.y60_c00478{bottom:302.500949pt;}
.y61_c00478{bottom:303.186133pt;}
.y62_c00478{bottom:304.315499pt;}
.y63_c00478{bottom:304.583296pt;}
.y55_c00478{bottom:313.922667pt;}
.y56_c00478{bottom:314.256512pt;}
.y57_c00478{bottom:315.063061pt;}
.y58_c00478{bottom:315.777451pt;}
.y59_c00478{bottom:316.764949pt;}
.y5a_c00478{bottom:318.061781pt;}
.y50_c00478{bottom:329.240432pt;}
.y51_c00478{bottom:329.788537pt;}
.y52_c00478{bottom:332.449729pt;}
.y53_c00478{bottom:333.730400pt;}
.y54_c00478{bottom:335.038916pt;}
.y49_c00478{bottom:344.122923pt;}
.y4a_c00478{bottom:344.666837pt;}
.y4b_c00478{bottom:344.985464pt;}
.y4c_c00478{bottom:346.038776pt;}
.y4d_c00478{bottom:346.457641pt;}
.y4e_c00478{bottom:347.623536pt;}
.y4f_c00478{bottom:348.399639pt;}
.y41_c00478{bottom:359.488904pt;}
.y42_c00478{bottom:360.239412pt;}
.y43_c00478{bottom:360.591687pt;}
.y44_c00478{bottom:360.829547pt;}
.y45_c00478{bottom:361.938064pt;}
.y46_c00478{bottom:362.903783pt;}
.y47_c00478{bottom:363.032473pt;}
.y48_c00478{bottom:363.884529pt;}
.y39_c00478{bottom:374.610185pt;}
.y3a_c00478{bottom:375.145367pt;}
.y3b_c00478{bottom:376.076203pt;}
.y3c_c00478{bottom:376.679891pt;}
.y3d_c00478{bottom:377.083704pt;}
.y3e_c00478{bottom:377.768259pt;}
.y3f_c00478{bottom:378.230947pt;}
.y40_c00478{bottom:378.708879pt;}
.y32_c00478{bottom:389.255213pt;}
.y33_c00478{bottom:389.709173pt;}
.y34_c00478{bottom:390.099292pt;}
.y35_c00478{bottom:390.927300pt;}
.y36_c00478{bottom:391.462876pt;}
.y37_c00478{bottom:392.716044pt;}
.y38_c00478{bottom:393.467620pt;}
.y2a_c00478{bottom:404.378075pt;}
.y2b_c00478{bottom:405.084243pt;}
.y2c_c00478{bottom:405.896495pt;}
.y2d_c00478{bottom:406.280669pt;}
.y2e_c00478{bottom:407.425925pt;}
.y2f_c00478{bottom:407.874397pt;}
.y30_c00478{bottom:408.167608pt;}
.y31_c00478{bottom:408.946093pt;}
.y24_c00478{bottom:418.785061pt;}
.y25_c00478{bottom:419.786721pt;}
.y26_c00478{bottom:420.218055pt;}
.y27_c00478{bottom:420.580512pt;}
.y28_c00478{bottom:423.000889pt;}
.y29_c00478{bottom:424.894593pt;}
.y1e_c00478{bottom:433.668119pt;}
.y1f_c00478{bottom:433.900148pt;}
.y20_c00478{bottom:435.146915pt;}
.y21_c00478{bottom:436.610024pt;}
.y22_c00478{bottom:438.579651pt;}
.y23_c00478{bottom:439.145172pt;}
.y18_c00478{bottom:449.273444pt;}
.y19_c00478{bottom:450.711741pt;}
.y1a_c00478{bottom:451.018193pt;}
.y1b_c00478{bottom:452.558887pt;}
.y1c_c00478{bottom:453.936985pt;}
.y1d_c00478{bottom:454.315167pt;}
.y10_c00478{bottom:464.157545pt;}
.y11_c00478{bottom:465.005452pt;}
.y12_c00478{bottom:465.376972pt;}
.y13_c00478{bottom:466.708779pt;}
.y14_c00478{bottom:466.867191pt;}
.y15_c00478{bottom:467.410877pt;}
.y16_c00478{bottom:468.693356pt;}
.y17_c00478{bottom:469.132252pt;}
.y9_c00478{bottom:479.998404pt;}
.ya_c00478{bottom:480.198072pt;}
.yb_c00478{bottom:480.513369pt;}
.yc_c00478{bottom:481.377768pt;}
.yd_c00478{bottom:482.113211pt;}
.ye_c00478{bottom:482.488960pt;}
.yf_c00478{bottom:484.061780pt;}
.y3_c00478{bottom:493.926667pt;}
.y4_c00478{bottom:494.584896pt;}
.y5_c00478{bottom:497.835563pt;}
.y6_c00478{bottom:498.145235pt;}
.y7_c00478{bottom:499.155885pt;}
.y8_c00478{bottom:499.503032pt;}
.y2_c00478{bottom:508.797333pt;}
.y1_c00478{bottom:519.964000pt;}
.h2_c00478{height:22.400000pt;}
.h18_c00478{height:51.339904pt;}
.hb_c00478{height:51.346909pt;}
.he_c00478{height:53.214070pt;}
.hd_c00478{height:54.147650pt;}
.h16_c00478{height:55.073715pt;}
.h19_c00478{height:55.075587pt;}
.h6_c00478{height:56.014810pt;}
.h17_c00478{height:56.940620pt;}
.ha_c00478{height:56.948390pt;}
.hf_c00478{height:57.874073pt;}
.h10_c00478{height:58.807526pt;}
.h8_c00478{height:58.815551pt;}
.hc_c00478{height:59.749131pt;}
.h11_c00478{height:60.674432pt;}
.h13_c00478{height:61.607884pt;}
.h14_c00478{height:62.541337pt;}
.h5_c00478{height:62.549871pt;}
.h12_c00478{height:63.474790pt;}
.h4_c00478{height:63.483451pt;}
.h7_c00478{height:64.417032pt;}
.h15_c00478{height:65.341695pt;}
.h9_c00478{height:65.350612pt;}
.h3_c00478{height:66.266667pt;}
.h0_c00478{height:549.066667pt;}
.h1_c00478{height:549.333333pt;}
.w0_c00478{width:319.200000pt;}
.w1_c00478{width:319.333333pt;}
.x0_c00478{left:0.000000pt;}
.x3_c00478{left:15.396000pt;}
.x3d_c00478{left:16.766505pt;}
.x55_c00478{left:17.890208pt;}
.x6c_c00478{left:19.118144pt;}
.x23_c00478{left:20.619957pt;}
.x9_c00478{left:22.201112pt;}
.x1a_c00478{left:25.657305pt;}
.x7b_c00478{left:28.222667pt;}
.x5c_c00478{left:30.909088pt;}
.xa_c00478{left:33.318400pt;}
.x4d_c00478{left:35.012320pt;}
.x6d_c00478{left:36.171477pt;}
.x41_c00478{left:37.137333pt;}
.x68_c00478{left:39.490251pt;}
.x2b_c00478{left:41.218721pt;}
.x58_c00478{left:42.843424pt;}
.x4_c00478{left:44.014667pt;}
.x2f_c00478{left:47.710277pt;}
.xb_c00478{left:50.855091pt;}
.x5d_c00478{left:52.070080pt;}
.xf_c00478{left:54.405461pt;}
.x24_c00478{left:55.905047pt;}
.x38_c00478{left:56.876435pt;}
.x1f_c00478{left:57.878779pt;}
.x56_c00478{left:59.497547pt;}
.x2c_c00478{left:62.878539pt;}
.x4e_c00478{left:65.272693pt;}
.x7a_c00478{left:66.900448pt;}
.x75_c00478{left:69.118453pt;}
.x10_c00478{left:71.312527pt;}
.x45_c00478{left:72.771488pt;}
.x35_c00478{left:73.898681pt;}
.x20_c00478{left:75.878380pt;}
.x15_c00478{left:77.918475pt;}
.x1b_c00478{left:82.358624pt;}
.x76_c00478{left:83.685045pt;}
.x6f_c00478{left:84.909643pt;}
.x36_c00478{left:86.386483pt;}
.x42_c00478{left:87.546667pt;}
.x16_c00478{left:91.242475pt;}
.x64_c00478{left:94.600160pt;}
.x25_c00478{left:96.498504pt;}
.xc_c00478{left:98.877944pt;}
.x5e_c00478{left:100.338645pt;}
.x30_c00478{left:102.449821pt;}
.x59_c00478{left:104.835424pt;}
.x39_c00478{left:107.022735pt;}
.x2_c00478{left:109.680000pt;}
.x51_c00478{left:110.817792pt;}
.x4f_c00478{left:113.272491pt;}
.x26_c00478{left:115.695823pt;}
.x5f_c00478{left:117.099701pt;}
.x52_c00478{left:118.062421pt;}
.x6e_c00478{left:119.703477pt;}
.x5a_c00478{left:122.128757pt;}
.x77_c00478{left:126.010325pt;}
.x3a_c00478{left:126.974321pt;}
.x46_c00478{left:129.573611pt;}
.x11_c00478{left:131.827240pt;}
.x4a_c00478{left:135.337984pt;}
.x31_c00478{left:137.977395pt;}
.x12_c00478{left:139.004727pt;}
.x1_c00478{left:140.160000pt;}
.x47_c00478{left:141.130027pt;}
.x65_c00478{left:143.444256pt;}
.x37_c00478{left:144.733183pt;}
.x1c_c00478{left:148.872157pt;}
.x7c_c00478{left:149.938667pt;}
.x73_c00478{left:152.485867pt;}
.x50_c00478{left:153.644523pt;}
.x69_c00478{left:155.030368pt;}
.x3e_c00478{left:156.301172pt;}
.x17_c00478{left:158.229141pt;}
.x48_c00478{left:159.133931pt;}
.xd_c00478{left:160.589028pt;}
.x32_c00478{left:161.740676pt;}
.x13_c00478{left:163.745309pt;}
.x70_c00478{left:165.431392pt;}
.x66_c00478{left:168.251605pt;}
.x60_c00478{left:171.041515pt;}
.x27_c00478{left:172.971779pt;}
.x5b_c00478{left:177.096757pt;}
.x3b_c00478{left:182.479533pt;}
.x71_c00478{left:183.398144pt;}
.x5_c00478{left:185.348000pt;}
.x67_c00478{left:189.389920pt;}
.x21_c00478{left:191.825045pt;}
.x43_c00478{left:193.914667pt;}
.x28_c00478{left:195.370645pt;}
.x6a_c00478{left:196.817707pt;}
.x6_c00478{left:198.812000pt;}
.x61_c00478{left:200.801045pt;}
.x33_c00478{left:202.002227pt;}
.x7d_c00478{left:203.048000pt;}
.x4b_c00478{left:207.285013pt;}
.x2d_c00478{left:208.319283pt;}
.x29_c00478{left:210.032991pt;}
.x3f_c00478{left:211.982505pt;}
.x53_c00478{left:215.567723pt;}
.x18_c00478{left:218.146475pt;}
.x3c_c00478{left:219.413220pt;}
.x4c_c00478{left:220.804587pt;}
.x14_c00478{left:222.057325pt;}
.x72_c00478{left:224.679424pt;}
.x62_c00478{left:227.741952pt;}
.x34_c00478{left:229.195301pt;}
.x78_c00478{left:233.320021pt;}
.x19_c00478{left:234.589141pt;}
.x1d_c00478{left:238.394212pt;}
.x6b_c00478{left:241.708789pt;}
.x7_c00478{left:242.753333pt;}
.x49_c00478{left:245.536352pt;}
.xe_c00478{left:247.939056pt;}
.x2a_c00478{left:248.926325pt;}
.x2e_c00478{left:250.102764pt;}
.x57_c00478{left:251.707787pt;}
.x8_c00478{left:257.846667pt;}
.x54_c00478{left:258.742251pt;}
.x74_c00478{left:262.197227pt;}
.x1e_c00478{left:264.084128pt;}
.x79_c00478{left:266.343509pt;}
.x40_c00478{left:268.874505pt;}
.x22_c00478{left:270.737903pt;}
.x63_c00478{left:272.789227pt;}
.x44_c00478{left:274.966667pt;}
.x7e_c00478{left:280.002667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00479 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00479 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00479 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00479 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc5_c00479{transform:matrix(0.133510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133510,0.000000,0.000000,0.250000,0,0);}
.m6c_c00479{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m73_c00479{transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140340,0.000000,0.000000,0.250000,0,0);}
.m90_c00479{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.med_c00479{transform:matrix(0.148285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148285,0.000000,0.000000,0.250000,0,0);}
.me1_c00479{transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m67_c00479{transform:matrix(0.149270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149270,0.000000,0.000000,0.250000,0,0);}
.m26_c00479{transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149705,0.000000,0.000000,0.250000,0,0);}
.md6_c00479{transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);}
.me5_c00479{transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152510,0.000000,0.000000,0.250000,0,0);}
.md0_c00479{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.md2_c00479{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m6f_c00479{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m83_c00479{transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);}
.m5e_c00479{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m60_c00479{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.m72_c00479{transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155060,0.000000,0.000000,0.250000,0,0);}
.m66_c00479{transform:matrix(0.155085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155085,0.000000,0.000000,0.250000,0,0);}
.meb_c00479{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m13_c00479{transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155930,0.000000,0.000000,0.250000,0,0);}
.m21_c00479{transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);}
.m7d_c00479{transform:matrix(0.157255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157255,0.000000,0.000000,0.250000,0,0);}
.m82_c00479{transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157405,0.000000,0.000000,0.250000,0,0);}
.m5c_c00479{transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157510,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158655,0.000000,0.000000,0.250000,0,0);}
.me8_c00479{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00479{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.m36_c00479{transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160305,0.000000,0.000000,0.250000,0,0);}
.mdc_c00479{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);}
.mc6_c00479{transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00479{transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00479{transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162770,0.000000,0.000000,0.250000,0,0);}
.m9b_c00479{transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163020,0.000000,0.000000,0.250000,0,0);}
.m5d_c00479{transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163460,0.000000,0.000000,0.250000,0,0);}
.m65_c00479{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00479{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m61_c00479{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.mb4_c00479{transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165390,0.000000,0.000000,0.250000,0,0);}
.ma8_c00479{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m59_c00479{transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166015,0.000000,0.000000,0.250000,0,0);}
.m31_c00479{transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167005,0.000000,0.000000,0.250000,0,0);}
.me3_c00479{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.me7_c00479{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167590,0.000000,0.000000,0.250000,0,0);}
.md9_c00479{transform:matrix(0.167735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167735,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m6b_c00479{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m69_c00479{transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);}
.m3c_c00479{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.m80_c00479{transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);}
.m70_c00479{transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170615,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m93_c00479{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.me6_c00479{transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);}
.m79_c00479{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.mce_c00479{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.mae_c00479{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00479{transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);}
.m43_c00479{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.mc2_c00479{transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);}
.m2c_c00479{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.mda_c00479{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.m63_c00479{transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176660,0.000000,0.000000,0.250000,0,0);}
.m85_c00479{transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176955,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177085,0.000000,0.000000,0.250000,0,0);}
.ma3_c00479{transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177170,0.000000,0.000000,0.250000,0,0);}
.m7e_c00479{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m20_c00479{transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177585,0.000000,0.000000,0.250000,0,0);}
.m37_c00479{transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);}
.m9d_c00479{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.m86_c00479{transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00479{transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179045,0.000000,0.000000,0.250000,0,0);}
.mb5_c00479{transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179390,0.000000,0.000000,0.250000,0,0);}
.m18_c00479{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m12_c00479{transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179665,0.000000,0.000000,0.250000,0,0);}
.md8_c00479{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.mb7_c00479{transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180845,0.000000,0.000000,0.250000,0,0);}
.m46_c00479{transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180885,0.000000,0.000000,0.250000,0,0);}
.md7_c00479{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.me2_c00479{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m14_c00479{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182010,0.000000,0.000000,0.250000,0,0);}
.ma1_c00479{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m41_c00479{transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);}
.m71_c00479{transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00479{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.mb3_c00479{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.m5a_c00479{transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);}
.m91_c00479{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m3d_c00479{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.me9_c00479{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m24_c00479{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184930,0.000000,0.000000,0.250000,0,0);}
.m7a_c00479{transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185140,0.000000,0.000000,0.250000,0,0);}
.mdd_c00479{transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00479{transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185440,0.000000,0.000000,0.250000,0,0);}
.m81_c00479{transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185485,0.000000,0.000000,0.250000,0,0);}
.mca_c00479{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m40_c00479{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.mdf_c00479{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.mb6_c00479{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m6a_c00479{transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187590,0.000000,0.000000,0.250000,0,0);}
.m55_c00479{transform:matrix(0.189060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189060,0.000000,0.000000,0.250000,0,0);}
.m4e_c00479{transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189205,0.000000,0.000000,0.250000,0,0);}
.mc4_c00479{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m6d_c00479{transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);}
.mcc_c00479{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m52_c00479{transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190070,0.000000,0.000000,0.250000,0,0);}
.mc7_c00479{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.mac_c00479{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m97_c00479{transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191090,0.000000,0.000000,0.250000,0,0);}
.m30_c00479{transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191155,0.000000,0.000000,0.250000,0,0);}
.mc9_c00479{transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191490,0.000000,0.000000,0.250000,0,0);}
.mde_c00479{transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191940,0.000000,0.000000,0.250000,0,0);}
.m32_c00479{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m4b_c00479{transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191985,0.000000,0.000000,0.250000,0,0);}
.m62_c00479{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m76_c00479{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.m88_c00479{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.m5f_c00479{transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);}
.m38_c00479{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m3e_c00479{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m3b_c00479{transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m51_c00479{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.m57_c00479{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.ma7_c00479{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.mcd_c00479{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00479{transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);}
.m25_c00479{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.me4_c00479{transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);}
.md4_c00479{transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197720,0.000000,0.000000,0.250000,0,0);}
.m2e_c00479{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.mbf_c00479{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.md3_c00479{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.mec_c00479{transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198485,0.000000,0.000000,0.250000,0,0);}
.md5_c00479{transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198805,0.000000,0.000000,0.250000,0,0);}
.m99_c00479{transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199940,0.000000,0.000000,0.250000,0,0);}
.mc3_c00479{transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200465,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.m64_c00479{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m78_c00479{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.mbb_c00479{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m68_c00479{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m1e_c00479{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00479{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.mea_c00479{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00479{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.m4d_c00479{transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203735,0.000000,0.000000,0.250000,0,0);}
.m2d_c00479{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.mcb_c00479{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m87_c00479{transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204730,0.000000,0.000000,0.250000,0,0);}
.mb1_c00479{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00479{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.m9e_c00479{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00479{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00479{transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206320,0.000000,0.000000,0.250000,0,0);}
.mb0_c00479{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.m56_c00479{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.mad_c00479{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.me0_c00479{transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);}
.m7b_c00479{transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207340,0.000000,0.000000,0.250000,0,0);}
.m33_c00479{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.m39_c00479{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m23_c00479{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00479{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m28_c00479{transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208890,0.000000,0.000000,0.250000,0,0);}
.mba_c00479{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.mcf_c00479{transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210330,0.000000,0.000000,0.250000,0,0);}
.m8f_c00479{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m58_c00479{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00479{transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210805,0.000000,0.000000,0.250000,0,0);}
.m50_c00479{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m92_c00479{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m95_c00479{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.m2b_c00479{transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212430,0.000000,0.000000,0.250000,0,0);}
.mb8_c00479{transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);}
.mc1_c00479{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.maf_c00479{transform:matrix(0.214615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214615,0.000000,0.000000,0.250000,0,0);}
.m94_c00479{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);}
.m49_c00479{transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);}
.m29_c00479{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m8b_c00479{transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);}
.mbd_c00479{transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);}
.m84_c00479{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218520,0.000000,0.000000,0.250000,0,0);}
.ma0_c00479{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m9f_c00479{transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220355,0.000000,0.000000,0.250000,0,0);}
.m89_c00479{transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.221655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221655,0.000000,0.000000,0.250000,0,0);}
.mdb_c00479{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.maa_c00479{transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222315,0.000000,0.000000,0.250000,0,0);}
.m77_c00479{transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);}
.m98_c00479{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.m4c_c00479{transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);}
.ma9_c00479{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m74_c00479{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.mc0_c00479{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.ma5_c00479{transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00479{transform:matrix(0.226460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226460,0.000000,0.000000,0.250000,0,0);}
.md1_c00479{transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);}
.mc8_c00479{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m45_c00479{transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);}
.mbe_c00479{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.mab_c00479{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00479{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m75_c00479{transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230945,0.000000,0.000000,0.250000,0,0);}
.mb9_c00479{transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232115,0.000000,0.000000,0.250000,0,0);}
.mb2_c00479{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.m15_c00479{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.ma2_c00479{transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241195,0.000000,0.000000,0.250000,0,0);}
.m44_c00479{transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);}
.m53_c00479{transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);}
.m9a_c00479{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m9c_c00479{transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);}
.m19_c00479{transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);}
.m1b_c00479{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.m48_c00479{transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);}
.m42_c00479{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m8e_c00479{transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);}
.m8a_c00479{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m7c_c00479{transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);}
.m96_c00479{transform:matrix(0.259255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259255,0.000000,0.000000,0.250000,0,0);}
.m54_c00479{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.m47_c00479{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(1.034635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034635,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:0.000000px;}
.fc0_c00479{color:transparent;}
.fsc_c00479{font-size:55.650000px;}
.fsa_c00479{font-size:57.750000px;}
.fsb_c00479{font-size:58.800000px;}
.fs4_c00479{font-size:59.850000px;}
.fs7_c00479{font-size:60.900000px;}
.fs5_c00479{font-size:63.000000px;}
.fs2_c00479{font-size:64.050000px;}
.fs6_c00479{font-size:65.100000px;}
.fs8_c00479{font-size:66.150000px;}
.fs9_c00479{font-size:68.250000px;}
.fs3_c00479{font-size:69.300000px;}
.fs1_c00479{font-size:70.350000px;}
.fs0_c00479{font-size:77.700000px;}
.y0_c00479{bottom:0.000000px;}
.y28_c00479{bottom:36.268500px;}
.y27_c00479{bottom:53.431500px;}
.y26_c00479{bottom:69.483000px;}
.y25_c00479{bottom:87.361500px;}
.y24_c00479{bottom:103.651500px;}
.y23_c00479{bottom:120.483000px;}
.y22_c00479{bottom:136.981500px;}
.y21_c00479{bottom:154.563000px;}
.y20_c00479{bottom:171.246000px;}
.y1f_c00479{bottom:188.280000px;}
.y1e_c00479{bottom:205.857000px;}
.y1d_c00479{bottom:222.844500px;}
.y1c_c00479{bottom:239.730000px;}
.y1b_c00479{bottom:256.621500px;}
.y1a_c00479{bottom:273.480000px;}
.y19_c00479{bottom:289.918500px;}
.y29_c00479{bottom:306.405000px;}
.y18_c00479{bottom:307.683000px;}
.y17_c00479{bottom:323.935500px;}
.y16_c00479{bottom:341.478000px;}
.y15_c00479{bottom:358.228500px;}
.y14_c00479{bottom:375.238500px;}
.y13_c00479{bottom:391.482000px;}
.y12_c00479{bottom:408.112500px;}
.y11_c00479{bottom:425.293500px;}
.y10_c00479{bottom:442.074000px;}
.yf_c00479{bottom:442.236000px;}
.ye_c00479{bottom:442.425000px;}
.yd_c00479{bottom:442.897500px;}
.yc_c00479{bottom:443.485500px;}
.yb_c00479{bottom:443.695500px;}
.ya_c00479{bottom:444.394500px;}
.y9_c00479{bottom:444.691500px;}
.y8_c00479{bottom:459.600000px;}
.y7_c00479{bottom:476.340000px;}
.y6_c00479{bottom:493.501500px;}
.y5_c00479{bottom:509.973000px;}
.y4_c00479{bottom:526.983000px;}
.y3_c00479{bottom:544.309500px;}
.y2_c00479{bottom:560.817000px;}
.y1_c00479{bottom:574.554000px;}
.he_c00479{height:55.650000px;}
.hc_c00479{height:57.750000px;}
.hd_c00479{height:58.800000px;}
.h6_c00479{height:59.850000px;}
.h9_c00479{height:60.900000px;}
.h7_c00479{height:63.000000px;}
.h4_c00479{height:64.050000px;}
.h8_c00479{height:65.100000px;}
.ha_c00479{height:66.150000px;}
.hb_c00479{height:68.250000px;}
.h5_c00479{height:69.300000px;}
.h3_c00479{height:70.350000px;}
.h2_c00479{height:77.700000px;}
.h0_c00479{height:617.700000px;}
.h1_c00479{height:618.000000px;}
.w0_c00479{width:359.100000px;}
.w1_c00479{width:359.250000px;}
.x0_c00479{left:0.000000px;}
.x76_c00479{left:29.430000px;}
.x55_c00479{left:30.510000px;}
.x4f_c00479{left:32.400000px;}
.x32_c00479{left:34.452000px;}
.xf_c00479{left:36.180000px;}
.x2_c00479{left:38.880000px;}
.x8_c00479{left:41.580000px;}
.x77_c00479{left:42.660000px;}
.x16_c00479{left:45.090000px;}
.x79_c00479{left:47.790000px;}
.x5d_c00479{left:52.380000px;}
.x2a_c00479{left:54.810000px;}
.x68_c00479{left:55.890000px;}
.x40_c00479{left:58.590000px;}
.x3_c00479{left:61.830000px;}
.x33_c00479{left:64.146000px;}
.x6d_c00479{left:65.340000px;}
.x59_c00479{left:68.580000px;}
.x17_c00479{left:69.660000px;}
.x6a_c00479{left:71.550000px;}
.x1e_c00479{left:75.600000px;}
.x50_c00479{left:77.220000px;}
.x61_c00479{left:78.570000px;}
.x25_c00479{left:80.730000px;}
.x7c_c00479{left:82.620000px;}
.x38_c00479{left:87.750000px;}
.x3c_c00479{left:90.450000px;}
.x4a_c00479{left:93.150000px;}
.x10_c00479{left:94.770000px;}
.x2b_c00479{left:100.170000px;}
.x1f_c00479{left:101.790000px;}
.x74_c00479{left:106.110000px;}
.x7a_c00479{left:107.730000px;}
.x41_c00479{left:108.810000px;}
.x81_c00479{left:110.160000px;}
.x5a_c00479{left:115.020000px;}
.x39_c00479{left:117.450000px;}
.x45_c00479{left:118.530000px;}
.x18_c00479{left:120.420000px;}
.x4_c00479{left:121.500000px;}
.x5e_c00479{left:124.740000px;}
.x6b_c00479{left:125.820000px;}
.x42_c00479{left:126.900000px;}
.x2c_c00479{left:128.250000px;}
.x82_c00479{left:131.220000px;}
.x9_c00479{left:132.300000px;}
.x34_c00479{left:134.080500px;}
.x19_c00479{left:136.350000px;}
.x78_c00479{left:138.780000px;}
.x3d_c00479{left:140.130000px;}
.x46_c00479{left:142.020000px;}
.xa_c00479{left:147.690000px;}
.x5f_c00479{left:148.770000px;}
.x11_c00479{left:152.010000px;}
.x2d_c00479{left:153.630000px;}
.x35_c00479{left:155.143500px;}
.x71_c00479{left:156.330000px;}
.x4b_c00479{left:158.220000px;}
.x3e_c00479{left:161.460000px;}
.x62_c00479{left:163.620000px;}
.x5b_c00479{left:166.050000px;}
.x56_c00479{left:167.400000px;}
.x1_c00479{left:168.750000px;}
.x47_c00479{left:170.100000px;}
.x51_c00479{left:172.260000px;}
.x2e_c00479{left:173.880000px;}
.x7f_c00479{left:176.580000px;}
.x64_c00479{left:177.930000px;}
.x63_c00479{left:181.980000px;}
.x1a_c00479{left:183.060000px;}
.x20_c00479{left:186.030000px;}
.x3a_c00479{left:188.190000px;}
.x12_c00479{left:192.240000px;}
.x5_c00479{left:195.210000px;}
.x21_c00479{left:197.910000px;}
.x4c_c00479{left:198.990000px;}
.x73_c00479{left:200.070000px;}
.x1b_c00479{left:202.230000px;}
.x26_c00479{left:203.850000px;}
.x3b_c00479{left:208.170000px;}
.x13_c00479{left:209.520000px;}
.x6e_c00479{left:210.870000px;}
.x6_c00479{left:214.380000px;}
.x52_c00479{left:215.460000px;}
.x43_c00479{left:216.810000px;}
.x65_c00479{left:218.700000px;}
.x27_c00479{left:220.320000px;}
.xb_c00479{left:222.750000px;}
.x6c_c00479{left:228.150000px;}
.x22_c00479{left:234.090000px;}
.x6f_c00479{left:236.520000px;}
.x80_c00479{left:237.600000px;}
.x57_c00479{left:238.950000px;}
.x60_c00479{left:240.570000px;}
.x44_c00479{left:241.650000px;}
.x72_c00479{left:242.730000px;}
.x66_c00479{left:245.430000px;}
.xc_c00479{left:248.400000px;}
.x1c_c00479{left:250.560000px;}
.x2f_c00479{left:254.610000px;}
.x14_c00479{left:257.310000px;}
.x5c_c00479{left:258.390000px;}
.x53_c00479{left:260.280000px;}
.x36_c00479{left:261.294000px;}
.x4d_c00479{left:263.250000px;}
.x23_c00479{left:267.300000px;}
.x69_c00479{left:268.920000px;}
.x7_c00479{left:270.270000px;}
.xd_c00479{left:271.890000px;}
.x7d_c00479{left:273.240000px;}
.x28_c00479{left:274.320000px;}
.x48_c00479{left:277.830000px;}
.x15_c00479{left:279.450000px;}
.x75_c00479{left:282.690000px;}
.x30_c00479{left:283.770000px;}
.x3f_c00479{left:289.440000px;}
.x29_c00479{left:292.950000px;}
.x70_c00479{left:294.840000px;}
.x37_c00479{left:296.340000px;}
.x49_c00479{left:298.080000px;}
.x7e_c00479{left:299.430000px;}
.x58_c00479{left:305.910000px;}
.x31_c00479{left:307.260000px;}
.x54_c00479{left:311.580000px;}
.x24_c00479{left:312.930000px;}
.x7b_c00479{left:314.010000px;}
.x4e_c00479{left:316.440000px;}
.x1d_c00479{left:318.060000px;}
.xe_c00479{left:319.410000px;}
.x67_c00479{left:326.160000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fsc_c00479{font-size:49.466667pt;}
.fsa_c00479{font-size:51.333333pt;}
.fsb_c00479{font-size:52.266667pt;}
.fs4_c00479{font-size:53.200000pt;}
.fs7_c00479{font-size:54.133333pt;}
.fs5_c00479{font-size:56.000000pt;}
.fs2_c00479{font-size:56.933333pt;}
.fs6_c00479{font-size:57.866667pt;}
.fs8_c00479{font-size:58.800000pt;}
.fs9_c00479{font-size:60.666667pt;}
.fs3_c00479{font-size:61.600000pt;}
.fs1_c00479{font-size:62.533333pt;}
.fs0_c00479{font-size:69.066667pt;}
.y0_c00479{bottom:0.000000pt;}
.y28_c00479{bottom:32.238667pt;}
.y27_c00479{bottom:47.494667pt;}
.y26_c00479{bottom:61.762667pt;}
.y25_c00479{bottom:77.654667pt;}
.y24_c00479{bottom:92.134667pt;}
.y23_c00479{bottom:107.096000pt;}
.y22_c00479{bottom:121.761333pt;}
.y21_c00479{bottom:137.389333pt;}
.y20_c00479{bottom:152.218667pt;}
.y1f_c00479{bottom:167.360000pt;}
.y1e_c00479{bottom:182.984000pt;}
.y1d_c00479{bottom:198.084000pt;}
.y1c_c00479{bottom:213.093333pt;}
.y1b_c00479{bottom:228.108000pt;}
.y1a_c00479{bottom:243.093333pt;}
.y19_c00479{bottom:257.705333pt;}
.y29_c00479{bottom:272.360000pt;}
.y18_c00479{bottom:273.496000pt;}
.y17_c00479{bottom:287.942667pt;}
.y16_c00479{bottom:303.536000pt;}
.y15_c00479{bottom:318.425333pt;}
.y14_c00479{bottom:333.545333pt;}
.y13_c00479{bottom:347.984000pt;}
.y12_c00479{bottom:362.766667pt;}
.y11_c00479{bottom:378.038667pt;}
.y10_c00479{bottom:392.954667pt;}
.yf_c00479{bottom:393.098667pt;}
.ye_c00479{bottom:393.266667pt;}
.yd_c00479{bottom:393.686667pt;}
.yc_c00479{bottom:394.209333pt;}
.yb_c00479{bottom:394.396000pt;}
.ya_c00479{bottom:395.017333pt;}
.y9_c00479{bottom:395.281333pt;}
.y8_c00479{bottom:408.533333pt;}
.y7_c00479{bottom:423.413333pt;}
.y6_c00479{bottom:438.668000pt;}
.y5_c00479{bottom:453.309333pt;}
.y4_c00479{bottom:468.429333pt;}
.y3_c00479{bottom:483.830667pt;}
.y2_c00479{bottom:498.504000pt;}
.y1_c00479{bottom:510.714667pt;}
.he_c00479{height:49.466667pt;}
.hc_c00479{height:51.333333pt;}
.hd_c00479{height:52.266667pt;}
.h6_c00479{height:53.200000pt;}
.h9_c00479{height:54.133333pt;}
.h7_c00479{height:56.000000pt;}
.h4_c00479{height:56.933333pt;}
.h8_c00479{height:57.866667pt;}
.ha_c00479{height:58.800000pt;}
.hb_c00479{height:60.666667pt;}
.h5_c00479{height:61.600000pt;}
.h3_c00479{height:62.533333pt;}
.h2_c00479{height:69.066667pt;}
.h0_c00479{height:549.066667pt;}
.h1_c00479{height:549.333333pt;}
.w0_c00479{width:319.200000pt;}
.w1_c00479{width:319.333333pt;}
.x0_c00479{left:0.000000pt;}
.x76_c00479{left:26.160000pt;}
.x55_c00479{left:27.120000pt;}
.x4f_c00479{left:28.800000pt;}
.x32_c00479{left:30.624000pt;}
.xf_c00479{left:32.160000pt;}
.x2_c00479{left:34.560000pt;}
.x8_c00479{left:36.960000pt;}
.x77_c00479{left:37.920000pt;}
.x16_c00479{left:40.080000pt;}
.x79_c00479{left:42.480000pt;}
.x5d_c00479{left:46.560000pt;}
.x2a_c00479{left:48.720000pt;}
.x68_c00479{left:49.680000pt;}
.x40_c00479{left:52.080000pt;}
.x3_c00479{left:54.960000pt;}
.x33_c00479{left:57.018667pt;}
.x6d_c00479{left:58.080000pt;}
.x59_c00479{left:60.960000pt;}
.x17_c00479{left:61.920000pt;}
.x6a_c00479{left:63.600000pt;}
.x1e_c00479{left:67.200000pt;}
.x50_c00479{left:68.640000pt;}
.x61_c00479{left:69.840000pt;}
.x25_c00479{left:71.760000pt;}
.x7c_c00479{left:73.440000pt;}
.x38_c00479{left:78.000000pt;}
.x3c_c00479{left:80.400000pt;}
.x4a_c00479{left:82.800000pt;}
.x10_c00479{left:84.240000pt;}
.x2b_c00479{left:89.040000pt;}
.x1f_c00479{left:90.480000pt;}
.x74_c00479{left:94.320000pt;}
.x7a_c00479{left:95.760000pt;}
.x41_c00479{left:96.720000pt;}
.x81_c00479{left:97.920000pt;}
.x5a_c00479{left:102.240000pt;}
.x39_c00479{left:104.400000pt;}
.x45_c00479{left:105.360000pt;}
.x18_c00479{left:107.040000pt;}
.x4_c00479{left:108.000000pt;}
.x5e_c00479{left:110.880000pt;}
.x6b_c00479{left:111.840000pt;}
.x42_c00479{left:112.800000pt;}
.x2c_c00479{left:114.000000pt;}
.x82_c00479{left:116.640000pt;}
.x9_c00479{left:117.600000pt;}
.x34_c00479{left:119.182667pt;}
.x19_c00479{left:121.200000pt;}
.x78_c00479{left:123.360000pt;}
.x3d_c00479{left:124.560000pt;}
.x46_c00479{left:126.240000pt;}
.xa_c00479{left:131.280000pt;}
.x5f_c00479{left:132.240000pt;}
.x11_c00479{left:135.120000pt;}
.x2d_c00479{left:136.560000pt;}
.x35_c00479{left:137.905333pt;}
.x71_c00479{left:138.960000pt;}
.x4b_c00479{left:140.640000pt;}
.x3e_c00479{left:143.520000pt;}
.x62_c00479{left:145.440000pt;}
.x5b_c00479{left:147.600000pt;}
.x56_c00479{left:148.800000pt;}
.x1_c00479{left:150.000000pt;}
.x47_c00479{left:151.200000pt;}
.x51_c00479{left:153.120000pt;}
.x2e_c00479{left:154.560000pt;}
.x7f_c00479{left:156.960000pt;}
.x64_c00479{left:158.160000pt;}
.x63_c00479{left:161.760000pt;}
.x1a_c00479{left:162.720000pt;}
.x20_c00479{left:165.360000pt;}
.x3a_c00479{left:167.280000pt;}
.x12_c00479{left:170.880000pt;}
.x5_c00479{left:173.520000pt;}
.x21_c00479{left:175.920000pt;}
.x4c_c00479{left:176.880000pt;}
.x73_c00479{left:177.840000pt;}
.x1b_c00479{left:179.760000pt;}
.x26_c00479{left:181.200000pt;}
.x3b_c00479{left:185.040000pt;}
.x13_c00479{left:186.240000pt;}
.x6e_c00479{left:187.440000pt;}
.x6_c00479{left:190.560000pt;}
.x52_c00479{left:191.520000pt;}
.x43_c00479{left:192.720000pt;}
.x65_c00479{left:194.400000pt;}
.x27_c00479{left:195.840000pt;}
.xb_c00479{left:198.000000pt;}
.x6c_c00479{left:202.800000pt;}
.x22_c00479{left:208.080000pt;}
.x6f_c00479{left:210.240000pt;}
.x80_c00479{left:211.200000pt;}
.x57_c00479{left:212.400000pt;}
.x60_c00479{left:213.840000pt;}
.x44_c00479{left:214.800000pt;}
.x72_c00479{left:215.760000pt;}
.x66_c00479{left:218.160000pt;}
.xc_c00479{left:220.800000pt;}
.x1c_c00479{left:222.720000pt;}
.x2f_c00479{left:226.320000pt;}
.x14_c00479{left:228.720000pt;}
.x5c_c00479{left:229.680000pt;}
.x53_c00479{left:231.360000pt;}
.x36_c00479{left:232.261333pt;}
.x4d_c00479{left:234.000000pt;}
.x23_c00479{left:237.600000pt;}
.x69_c00479{left:239.040000pt;}
.x7_c00479{left:240.240000pt;}
.xd_c00479{left:241.680000pt;}
.x7d_c00479{left:242.880000pt;}
.x28_c00479{left:243.840000pt;}
.x48_c00479{left:246.960000pt;}
.x15_c00479{left:248.400000pt;}
.x75_c00479{left:251.280000pt;}
.x30_c00479{left:252.240000pt;}
.x3f_c00479{left:257.280000pt;}
.x29_c00479{left:260.400000pt;}
.x70_c00479{left:262.080000pt;}
.x37_c00479{left:263.413333pt;}
.x49_c00479{left:264.960000pt;}
.x7e_c00479{left:266.160000pt;}
.x58_c00479{left:271.920000pt;}
.x31_c00479{left:273.120000pt;}
.x54_c00479{left:276.960000pt;}
.x24_c00479{left:278.160000pt;}
.x7b_c00479{left:279.120000pt;}
.x4e_c00479{left:281.280000pt;}
.x1d_c00479{left:282.720000pt;}
.xe_c00479{left:283.920000pt;}
.x67_c00479{left:289.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00480 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00480 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00480 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00480 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00480{transform:matrix(0.014707,-0.000471,0.008004,0.249872,0,0);-ms-transform:matrix(0.014707,-0.000471,0.008004,0.249872,0,0);-webkit-transform:matrix(0.014707,-0.000471,0.008004,0.249872,0,0);}
.maf_c00480{transform:matrix(0.014949,-0.000434,0.007247,0.249895,0,0);-ms-transform:matrix(0.014949,-0.000434,0.007247,0.249895,0,0);-webkit-transform:matrix(0.014949,-0.000434,0.007247,0.249895,0,0);}
.m55_c00480{transform:matrix(0.019130,-0.000613,0.008004,0.249872,0,0);-ms-transform:matrix(0.019130,-0.000613,0.008004,0.249872,0,0);-webkit-transform:matrix(0.019130,-0.000613,0.008004,0.249872,0,0);}
.m36_c00480{transform:matrix(0.032378,-0.001037,0.008004,0.249872,0,0);-ms-transform:matrix(0.032378,-0.001037,0.008004,0.249872,0,0);-webkit-transform:matrix(0.032378,-0.001037,0.008004,0.249872,0,0);}
.m6f_c00480{transform:matrix(0.098944,-0.003169,0.008004,0.249872,0,0);-ms-transform:matrix(0.098944,-0.003169,0.008004,0.249872,0,0);-webkit-transform:matrix(0.098944,-0.003169,0.008004,0.249872,0,0);}
.m79_c00480{transform:matrix(0.119825,-0.003475,0.007247,0.249895,0,0);-ms-transform:matrix(0.119825,-0.003475,0.007247,0.249895,0,0);-webkit-transform:matrix(0.119825,-0.003475,0.007247,0.249895,0,0);}
.m1_c00480{transform:matrix(0.134750,-0.004177,0.007746,0.249880,0,0);-ms-transform:matrix(0.134750,-0.004177,0.007746,0.249880,0,0);-webkit-transform:matrix(0.134750,-0.004177,0.007746,0.249880,0,0);}
.m8e_c00480{transform:matrix(0.135358,-0.003925,0.007247,0.249895,0,0);-ms-transform:matrix(0.135358,-0.003925,0.007247,0.249895,0,0);-webkit-transform:matrix(0.135358,-0.003925,0.007247,0.249895,0,0);}
.m2c_c00480{transform:matrix(0.137719,-0.004269,0.007746,0.249880,0,0);-ms-transform:matrix(0.137719,-0.004269,0.007746,0.249880,0,0);-webkit-transform:matrix(0.137719,-0.004269,0.007746,0.249880,0,0);}
.mc_c00480{transform:matrix(0.142167,-0.004407,0.007746,0.249880,0,0);-ms-transform:matrix(0.142167,-0.004407,0.007746,0.249880,0,0);-webkit-transform:matrix(0.142167,-0.004407,0.007746,0.249880,0,0);}
.m2a_c00480{transform:matrix(0.149618,-0.004638,0.007746,0.249880,0,0);-ms-transform:matrix(0.149618,-0.004638,0.007746,0.249880,0,0);-webkit-transform:matrix(0.149618,-0.004638,0.007746,0.249880,0,0);}
.mc4_c00480{transform:matrix(0.149843,-0.005400,0.009003,0.249838,0,0);-ms-transform:matrix(0.149843,-0.005400,0.009003,0.249838,0,0);-webkit-transform:matrix(0.149843,-0.005400,0.009003,0.249838,0,0);}
.mbe_c00480{transform:matrix(0.152746,-0.004430,0.007247,0.249895,0,0);-ms-transform:matrix(0.152746,-0.004430,0.007247,0.249895,0,0);-webkit-transform:matrix(0.152746,-0.004430,0.007247,0.249895,0,0);}
.m22_c00480{transform:matrix(0.155016,-0.004805,0.007746,0.249880,0,0);-ms-transform:matrix(0.155016,-0.004805,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155016,-0.004805,0.007746,0.249880,0,0);}
.mc2_c00480{transform:matrix(0.155290,-0.004503,0.007247,0.249895,0,0);-ms-transform:matrix(0.155290,-0.004503,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155290,-0.004503,0.007247,0.249895,0,0);}
.m40_c00480{transform:matrix(0.155375,-0.004977,0.008004,0.249872,0,0);-ms-transform:matrix(0.155375,-0.004977,0.008004,0.249872,0,0);-webkit-transform:matrix(0.155375,-0.004977,0.008004,0.249872,0,0);}
.m5b_c00480{transform:matrix(0.155675,-0.004987,0.008004,0.249872,0,0);-ms-transform:matrix(0.155675,-0.004987,0.008004,0.249872,0,0);-webkit-transform:matrix(0.155675,-0.004987,0.008004,0.249872,0,0);}
.m19_c00480{transform:matrix(0.156590,-0.004854,0.007746,0.249880,0,0);-ms-transform:matrix(0.156590,-0.004854,0.007746,0.249880,0,0);-webkit-transform:matrix(0.156590,-0.004854,0.007746,0.249880,0,0);}
.m32_c00480{transform:matrix(0.158369,-0.005073,0.008004,0.249872,0,0);-ms-transform:matrix(0.158369,-0.005073,0.008004,0.249872,0,0);-webkit-transform:matrix(0.158369,-0.005073,0.008004,0.249872,0,0);}
.m29_c00480{transform:matrix(0.158504,-0.004914,0.007746,0.249880,0,0);-ms-transform:matrix(0.158504,-0.004914,0.007746,0.249880,0,0);-webkit-transform:matrix(0.158504,-0.004914,0.007746,0.249880,0,0);}
.md_c00480{transform:matrix(0.158999,-0.004929,0.007746,0.249880,0,0);-ms-transform:matrix(0.158999,-0.004929,0.007746,0.249880,0,0);-webkit-transform:matrix(0.158999,-0.004929,0.007746,0.249880,0,0);}
.m2e_c00480{transform:matrix(0.159063,-0.005095,0.008004,0.249872,0,0);-ms-transform:matrix(0.159063,-0.005095,0.008004,0.249872,0,0);-webkit-transform:matrix(0.159063,-0.005095,0.008004,0.249872,0,0);}
.m4_c00480{transform:matrix(0.159179,-0.004935,0.007746,0.249880,0,0);-ms-transform:matrix(0.159179,-0.004935,0.007746,0.249880,0,0);-webkit-transform:matrix(0.159179,-0.004935,0.007746,0.249880,0,0);}
.mce_c00480{transform:matrix(0.159736,-0.005756,0.009003,0.249838,0,0);-ms-transform:matrix(0.159736,-0.005756,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159736,-0.005756,0.009003,0.249838,0,0);}
.md0_c00480{transform:matrix(0.160406,-0.005780,0.009003,0.249838,0,0);-ms-transform:matrix(0.160406,-0.005780,0.009003,0.249838,0,0);-webkit-transform:matrix(0.160406,-0.005780,0.009003,0.249838,0,0);}
.me7_c00480{transform:matrix(0.160688,-0.004821,0.007497,0.249888,0,0);-ms-transform:matrix(0.160688,-0.004821,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160688,-0.004821,0.007497,0.249888,0,0);}
.mf_c00480{transform:matrix(0.161712,-0.005013,0.007746,0.249880,0,0);-ms-transform:matrix(0.161712,-0.005013,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161712,-0.005013,0.007746,0.249880,0,0);}
.mcd_c00480{transform:matrix(0.162110,-0.005842,0.009003,0.249838,0,0);-ms-transform:matrix(0.162110,-0.005842,0.009003,0.249838,0,0);-webkit-transform:matrix(0.162110,-0.005842,0.009003,0.249838,0,0);}
.ma7_c00480{transform:matrix(0.162147,-0.004702,0.007247,0.249895,0,0);-ms-transform:matrix(0.162147,-0.004702,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162147,-0.004702,0.007247,0.249895,0,0);}
.m96_c00480{transform:matrix(0.162172,-0.004703,0.007247,0.249895,0,0);-ms-transform:matrix(0.162172,-0.004703,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162172,-0.004703,0.007247,0.249895,0,0);}
.m58_c00480{transform:matrix(0.162647,-0.005210,0.008004,0.249872,0,0);-ms-transform:matrix(0.162647,-0.005210,0.008004,0.249872,0,0);-webkit-transform:matrix(0.162647,-0.005210,0.008004,0.249872,0,0);}
.mc0_c00480{transform:matrix(0.162852,-0.004723,0.007247,0.249895,0,0);-ms-transform:matrix(0.162852,-0.004723,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162852,-0.004723,0.007247,0.249895,0,0);}
.m8f_c00480{transform:matrix(0.162991,-0.004727,0.007247,0.249895,0,0);-ms-transform:matrix(0.162991,-0.004727,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162991,-0.004727,0.007247,0.249895,0,0);}
.m28_c00480{transform:matrix(0.164756,-0.005107,0.007746,0.249880,0,0);-ms-transform:matrix(0.164756,-0.005107,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164756,-0.005107,0.007746,0.249880,0,0);}
.md2_c00480{transform:matrix(0.165478,-0.005963,0.009003,0.249838,0,0);-ms-transform:matrix(0.165478,-0.005963,0.009003,0.249838,0,0);-webkit-transform:matrix(0.165478,-0.005963,0.009003,0.249838,0,0);}
.mde_c00480{transform:matrix(0.165845,-0.004975,0.007497,0.249888,0,0);-ms-transform:matrix(0.165845,-0.004975,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165845,-0.004975,0.007497,0.249888,0,0);}
.ma8_c00480{transform:matrix(0.166405,-0.004826,0.007247,0.249895,0,0);-ms-transform:matrix(0.166405,-0.004826,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166405,-0.004826,0.007247,0.249895,0,0);}
.m9e_c00480{transform:matrix(0.166475,-0.004828,0.007247,0.249895,0,0);-ms-transform:matrix(0.166475,-0.004828,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166475,-0.004828,0.007247,0.249895,0,0);}
.m13_c00480{transform:matrix(0.167225,-0.005184,0.007746,0.249880,0,0);-ms-transform:matrix(0.167225,-0.005184,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167225,-0.005184,0.007746,0.249880,0,0);}
.me9_c00480{transform:matrix(0.167984,-0.005040,0.007497,0.249888,0,0);-ms-transform:matrix(0.167984,-0.005040,0.007497,0.249888,0,0);-webkit-transform:matrix(0.167984,-0.005040,0.007497,0.249888,0,0);}
.m2_c00480{transform:matrix(0.168399,-0.005220,0.007746,0.249880,0,0);-ms-transform:matrix(0.168399,-0.005220,0.007746,0.249880,0,0);-webkit-transform:matrix(0.168399,-0.005220,0.007746,0.249880,0,0);}
.m33_c00480{transform:matrix(0.169003,-0.005414,0.008004,0.249872,0,0);-ms-transform:matrix(0.169003,-0.005414,0.008004,0.249872,0,0);-webkit-transform:matrix(0.169003,-0.005414,0.008004,0.249872,0,0);}
.m5_c00480{transform:matrix(0.169334,-0.005249,0.007746,0.249880,0,0);-ms-transform:matrix(0.169334,-0.005249,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169334,-0.005249,0.007746,0.249880,0,0);}
.mb2_c00480{transform:matrix(0.169559,-0.004917,0.007247,0.249895,0,0);-ms-transform:matrix(0.169559,-0.004917,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169559,-0.004917,0.007247,0.249895,0,0);}
.m5d_c00480{transform:matrix(0.172556,-0.005527,0.008004,0.249872,0,0);-ms-transform:matrix(0.172556,-0.005527,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172556,-0.005527,0.008004,0.249872,0,0);}
.m4d_c00480{transform:matrix(0.172636,-0.005530,0.008004,0.249872,0,0);-ms-transform:matrix(0.172636,-0.005530,0.008004,0.249872,0,0);-webkit-transform:matrix(0.172636,-0.005530,0.008004,0.249872,0,0);}
.m2b_c00480{transform:matrix(0.173107,-0.005366,0.007746,0.249880,0,0);-ms-transform:matrix(0.173107,-0.005366,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173107,-0.005366,0.007746,0.249880,0,0);}
.m17_c00480{transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);-ms-transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173362,-0.005374,0.007746,0.249880,0,0);}
.mda_c00480{transform:matrix(0.173367,-0.006247,0.009003,0.249838,0,0);-ms-transform:matrix(0.173367,-0.006247,0.009003,0.249838,0,0);-webkit-transform:matrix(0.173367,-0.006247,0.009003,0.249838,0,0);}
.mb1_c00480{transform:matrix(0.174232,-0.005053,0.007247,0.249895,0,0);-ms-transform:matrix(0.174232,-0.005053,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174232,-0.005053,0.007247,0.249895,0,0);}
.m1f_c00480{transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);-ms-transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);}
.m7b_c00480{transform:matrix(0.174517,-0.005061,0.007247,0.249895,0,0);-ms-transform:matrix(0.174517,-0.005061,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174517,-0.005061,0.007247,0.249895,0,0);}
.m1e_c00480{transform:matrix(0.175171,-0.005430,0.007746,0.249880,0,0);-ms-transform:matrix(0.175171,-0.005430,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175171,-0.005430,0.007746,0.249880,0,0);}
.mad_c00480{transform:matrix(0.175186,-0.005080,0.007247,0.249895,0,0);-ms-transform:matrix(0.175186,-0.005080,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175186,-0.005080,0.007247,0.249895,0,0);}
.m1c_c00480{transform:matrix(0.175426,-0.005438,0.007746,0.249880,0,0);-ms-transform:matrix(0.175426,-0.005438,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175426,-0.005438,0.007746,0.249880,0,0);}
.mc3_c00480{transform:matrix(0.175656,-0.006330,0.009003,0.249838,0,0);-ms-transform:matrix(0.175656,-0.006330,0.009003,0.249838,0,0);-webkit-transform:matrix(0.175656,-0.006330,0.009003,0.249838,0,0);}
.m71_c00480{transform:matrix(0.176071,-0.005106,0.007247,0.249895,0,0);-ms-transform:matrix(0.176071,-0.005106,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176071,-0.005106,0.007247,0.249895,0,0);}
.m26_c00480{transform:matrix(0.176420,-0.005469,0.007746,0.249880,0,0);-ms-transform:matrix(0.176420,-0.005469,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176420,-0.005469,0.007746,0.249880,0,0);}
.mbf_c00480{transform:matrix(0.176556,-0.005120,0.007247,0.249895,0,0);-ms-transform:matrix(0.176556,-0.005120,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176556,-0.005120,0.007247,0.249895,0,0);}
.m94_c00480{transform:matrix(0.176566,-0.005120,0.007247,0.249895,0,0);-ms-transform:matrix(0.176566,-0.005120,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176566,-0.005120,0.007247,0.249895,0,0);}
.m91_c00480{transform:matrix(0.176791,-0.005127,0.007247,0.249895,0,0);-ms-transform:matrix(0.176791,-0.005127,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176791,-0.005127,0.007247,0.249895,0,0);}
.ma4_c00480{transform:matrix(0.176851,-0.005129,0.007247,0.249895,0,0);-ms-transform:matrix(0.176851,-0.005129,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176851,-0.005129,0.007247,0.249895,0,0);}
.m46_c00480{transform:matrix(0.177044,-0.005671,0.008004,0.249872,0,0);-ms-transform:matrix(0.177044,-0.005671,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177044,-0.005671,0.008004,0.249872,0,0);}
.mdc_c00480{transform:matrix(0.177105,-0.005313,0.007497,0.249888,0,0);-ms-transform:matrix(0.177105,-0.005313,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177105,-0.005313,0.007497,0.249888,0,0);}
.m86_c00480{transform:matrix(0.177360,-0.005143,0.007247,0.249895,0,0);-ms-transform:matrix(0.177360,-0.005143,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177360,-0.005143,0.007247,0.249895,0,0);}
.m7d_c00480{transform:matrix(0.177790,-0.005156,0.007247,0.249895,0,0);-ms-transform:matrix(0.177790,-0.005156,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177790,-0.005156,0.007247,0.249895,0,0);}
.md4_c00480{transform:matrix(0.177840,-0.006409,0.009003,0.249838,0,0);-ms-transform:matrix(0.177840,-0.006409,0.009003,0.249838,0,0);-webkit-transform:matrix(0.177840,-0.006409,0.009003,0.249838,0,0);}
.m64_c00480{transform:matrix(0.177999,-0.005702,0.008004,0.249872,0,0);-ms-transform:matrix(0.177999,-0.005702,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177999,-0.005702,0.008004,0.249872,0,0);}
.m5a_c00480{transform:matrix(0.178159,-0.005707,0.008004,0.249872,0,0);-ms-transform:matrix(0.178159,-0.005707,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178159,-0.005707,0.008004,0.249872,0,0);}
.m60_c00480{transform:matrix(0.178229,-0.005709,0.008004,0.249872,0,0);-ms-transform:matrix(0.178229,-0.005709,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178229,-0.005709,0.008004,0.249872,0,0);}
.m4e_c00480{transform:matrix(0.178553,-0.005719,0.008004,0.249872,0,0);-ms-transform:matrix(0.178553,-0.005719,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178553,-0.005719,0.008004,0.249872,0,0);}
.m49_c00480{transform:matrix(0.179003,-0.005734,0.008004,0.249872,0,0);-ms-transform:matrix(0.179003,-0.005734,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179003,-0.005734,0.008004,0.249872,0,0);}
.m77_c00480{transform:matrix(0.179889,-0.005217,0.007247,0.249895,0,0);-ms-transform:matrix(0.179889,-0.005217,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179889,-0.005217,0.007247,0.249895,0,0);}
.m95_c00480{transform:matrix(0.180524,-0.005235,0.007247,0.249895,0,0);-ms-transform:matrix(0.180524,-0.005235,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180524,-0.005235,0.007247,0.249895,0,0);}
.mec_c00480{transform:matrix(0.181203,-0.005436,0.007497,0.249888,0,0);-ms-transform:matrix(0.181203,-0.005436,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181203,-0.005436,0.007497,0.249888,0,0);}
.mc1_c00480{transform:matrix(0.181294,-0.005258,0.007247,0.249895,0,0);-ms-transform:matrix(0.181294,-0.005258,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181294,-0.005258,0.007247,0.249895,0,0);}
.mc6_c00480{transform:matrix(0.181552,-0.006542,0.009003,0.249838,0,0);-ms-transform:matrix(0.181552,-0.006542,0.009003,0.249838,0,0);-webkit-transform:matrix(0.181552,-0.006542,0.009003,0.249838,0,0);}
.mbd_c00480{transform:matrix(0.181594,-0.005266,0.007247,0.249895,0,0);-ms-transform:matrix(0.181594,-0.005266,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181594,-0.005266,0.007247,0.249895,0,0);}
.m8b_c00480{transform:matrix(0.181959,-0.005277,0.007247,0.249895,0,0);-ms-transform:matrix(0.181959,-0.005277,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181959,-0.005277,0.007247,0.249895,0,0);}
.mbc_c00480{transform:matrix(0.183698,-0.005327,0.007247,0.249895,0,0);-ms-transform:matrix(0.183698,-0.005327,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183698,-0.005327,0.007247,0.249895,0,0);}
.m1a_c00480{transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);-ms-transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183877,-0.005700,0.007746,0.249880,0,0);}
.m3f_c00480{transform:matrix(0.184061,-0.005896,0.008004,0.249872,0,0);-ms-transform:matrix(0.184061,-0.005896,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184061,-0.005896,0.008004,0.249872,0,0);}
.m0_c00480{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.184446,-0.005718,0.007746,0.249880,0,0);-ms-transform:matrix(0.184446,-0.005718,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184446,-0.005718,0.007746,0.249880,0,0);}
.m7_c00480{transform:matrix(0.184451,-0.005718,0.007746,0.249880,0,0);-ms-transform:matrix(0.184451,-0.005718,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184451,-0.005718,0.007746,0.249880,0,0);}
.mb7_c00480{transform:matrix(0.184537,-0.005352,0.007247,0.249895,0,0);-ms-transform:matrix(0.184537,-0.005352,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184537,-0.005352,0.007247,0.249895,0,0);}
.me2_c00480{transform:matrix(0.184797,-0.005544,0.007497,0.249888,0,0);-ms-transform:matrix(0.184797,-0.005544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184797,-0.005544,0.007497,0.249888,0,0);}
.me1_c00480{transform:matrix(0.184802,-0.005544,0.007497,0.249888,0,0);-ms-transform:matrix(0.184802,-0.005544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184802,-0.005544,0.007497,0.249888,0,0);}
.m44_c00480{transform:matrix(0.184850,-0.005921,0.008004,0.249872,0,0);-ms-transform:matrix(0.184850,-0.005921,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184850,-0.005921,0.008004,0.249872,0,0);}
.m39_c00480{transform:matrix(0.185250,-0.005934,0.008004,0.249872,0,0);-ms-transform:matrix(0.185250,-0.005934,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185250,-0.005934,0.008004,0.249872,0,0);}
.m18_c00480{transform:matrix(0.185296,-0.005744,0.007746,0.249880,0,0);-ms-transform:matrix(0.185296,-0.005744,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185296,-0.005744,0.007746,0.249880,0,0);}
.ma9_c00480{transform:matrix(0.185787,-0.005388,0.007247,0.249895,0,0);-ms-transform:matrix(0.185787,-0.005388,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185787,-0.005388,0.007247,0.249895,0,0);}
.m30_c00480{transform:matrix(0.185870,-0.005954,0.008004,0.249872,0,0);-ms-transform:matrix(0.185870,-0.005954,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185870,-0.005954,0.008004,0.249872,0,0);}
.m87_c00480{transform:matrix(0.186532,-0.005409,0.007247,0.249895,0,0);-ms-transform:matrix(0.186532,-0.005409,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186532,-0.005409,0.007247,0.249895,0,0);}
.m57_c00480{transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);-ms-transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186894,-0.005987,0.008004,0.249872,0,0);}
.m23_c00480{transform:matrix(0.187295,-0.005806,0.007746,0.249880,0,0);-ms-transform:matrix(0.187295,-0.005806,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187295,-0.005806,0.007746,0.249880,0,0);}
.md6_c00480{transform:matrix(0.187413,-0.006754,0.009003,0.249838,0,0);-ms-transform:matrix(0.187413,-0.006754,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187413,-0.006754,0.009003,0.249838,0,0);}
.m34_c00480{transform:matrix(0.187654,-0.006011,0.008004,0.249872,0,0);-ms-transform:matrix(0.187654,-0.006011,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187654,-0.006011,0.008004,0.249872,0,0);}
.mc5_c00480{transform:matrix(0.187773,-0.006767,0.009003,0.249838,0,0);-ms-transform:matrix(0.187773,-0.006767,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187773,-0.006767,0.009003,0.249838,0,0);}
.m68_c00480{transform:matrix(0.187884,-0.006018,0.008004,0.249872,0,0);-ms-transform:matrix(0.187884,-0.006018,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187884,-0.006018,0.008004,0.249872,0,0);}
.mab_c00480{transform:matrix(0.187916,-0.005450,0.007247,0.249895,0,0);-ms-transform:matrix(0.187916,-0.005450,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187916,-0.005450,0.007247,0.249895,0,0);}
.m41_c00480{transform:matrix(0.188009,-0.006022,0.008004,0.249872,0,0);-ms-transform:matrix(0.188009,-0.006022,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188009,-0.006022,0.008004,0.249872,0,0);}
.me6_c00480{transform:matrix(0.188585,-0.005658,0.007497,0.249888,0,0);-ms-transform:matrix(0.188585,-0.005658,0.007497,0.249888,0,0);-webkit-transform:matrix(0.188585,-0.005658,0.007497,0.249888,0,0);}
.mb3_c00480{transform:matrix(0.189200,-0.005487,0.007247,0.249895,0,0);-ms-transform:matrix(0.189200,-0.005487,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189200,-0.005487,0.007247,0.249895,0,0);}
.m81_c00480{transform:matrix(0.189520,-0.005496,0.007247,0.249895,0,0);-ms-transform:matrix(0.189520,-0.005496,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189520,-0.005496,0.007247,0.249895,0,0);}
.m1d_c00480{transform:matrix(0.189884,-0.005886,0.007746,0.249880,0,0);-ms-transform:matrix(0.189884,-0.005886,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189884,-0.005886,0.007746,0.249880,0,0);}
.m88_c00480{transform:matrix(0.190070,-0.005512,0.007247,0.249895,0,0);-ms-transform:matrix(0.190070,-0.005512,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190070,-0.005512,0.007247,0.249895,0,0);}
.m92_c00480{transform:matrix(0.190295,-0.005519,0.007247,0.249895,0,0);-ms-transform:matrix(0.190295,-0.005519,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190295,-0.005519,0.007247,0.249895,0,0);}
.m12_c00480{transform:matrix(0.190304,-0.005899,0.007746,0.249880,0,0);-ms-transform:matrix(0.190304,-0.005899,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190304,-0.005899,0.007746,0.249880,0,0);}
.mdf_c00480{transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);-ms-transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190384,-0.005712,0.007497,0.249888,0,0);}
.md3_c00480{transform:matrix(0.190906,-0.006879,0.009003,0.249838,0,0);-ms-transform:matrix(0.190906,-0.006879,0.009003,0.249838,0,0);-webkit-transform:matrix(0.190906,-0.006879,0.009003,0.249838,0,0);}
.m78_c00480{transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);-ms-transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190930,-0.005537,0.007247,0.249895,0,0);}
.me5_c00480{transform:matrix(0.191349,-0.005740,0.007497,0.249888,0,0);-ms-transform:matrix(0.191349,-0.005740,0.007497,0.249888,0,0);-webkit-transform:matrix(0.191349,-0.005740,0.007497,0.249888,0,0);}
.m97_c00480{transform:matrix(0.191385,-0.005550,0.007247,0.249895,0,0);-ms-transform:matrix(0.191385,-0.005550,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191385,-0.005550,0.007247,0.249895,0,0);}
.m9d_c00480{transform:matrix(0.191494,-0.005553,0.007247,0.249895,0,0);-ms-transform:matrix(0.191494,-0.005553,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191494,-0.005553,0.007247,0.249895,0,0);}
.m24_c00480{transform:matrix(0.191538,-0.005938,0.007746,0.249880,0,0);-ms-transform:matrix(0.191538,-0.005938,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191538,-0.005938,0.007746,0.249880,0,0);}
.m9f_c00480{transform:matrix(0.191734,-0.005560,0.007247,0.249895,0,0);-ms-transform:matrix(0.191734,-0.005560,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191734,-0.005560,0.007247,0.249895,0,0);}
.m3b_c00480{transform:matrix(0.191817,-0.006144,0.008004,0.249872,0,0);-ms-transform:matrix(0.191817,-0.006144,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191817,-0.006144,0.008004,0.249872,0,0);}
.mcc_c00480{transform:matrix(0.191870,-0.006914,0.009003,0.249838,0,0);-ms-transform:matrix(0.191870,-0.006914,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191870,-0.006914,0.009003,0.249838,0,0);}
.ma6_c00480{transform:matrix(0.191874,-0.005564,0.007247,0.249895,0,0);-ms-transform:matrix(0.191874,-0.005564,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191874,-0.005564,0.007247,0.249895,0,0);}
.mdd_c00480{transform:matrix(0.192483,-0.005775,0.007497,0.249888,0,0);-ms-transform:matrix(0.192483,-0.005775,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192483,-0.005775,0.007497,0.249888,0,0);}
.mc8_c00480{transform:matrix(0.192790,-0.006947,0.009003,0.249838,0,0);-ms-transform:matrix(0.192790,-0.006947,0.009003,0.249838,0,0);-webkit-transform:matrix(0.192790,-0.006947,0.009003,0.249838,0,0);}
.m67_c00480{transform:matrix(0.192816,-0.006176,0.008004,0.249872,0,0);-ms-transform:matrix(0.192816,-0.006176,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192816,-0.006176,0.008004,0.249872,0,0);}
.maa_c00480{transform:matrix(0.193254,-0.005604,0.007247,0.249895,0,0);-ms-transform:matrix(0.193254,-0.005604,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193254,-0.005604,0.007247,0.249895,0,0);}
.md5_c00480{transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);-ms-transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);-webkit-transform:matrix(0.193404,-0.006970,0.009003,0.249838,0,0);}
.me3_c00480{transform:matrix(0.194308,-0.005829,0.007497,0.249888,0,0);-ms-transform:matrix(0.194308,-0.005829,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194308,-0.005829,0.007497,0.249888,0,0);}
.m14_c00480{transform:matrix(0.194961,-0.006044,0.007746,0.249880,0,0);-ms-transform:matrix(0.194961,-0.006044,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194961,-0.006044,0.007746,0.249880,0,0);}
.m35_c00480{transform:matrix(0.195025,-0.006247,0.008004,0.249872,0,0);-ms-transform:matrix(0.195025,-0.006247,0.008004,0.249872,0,0);-webkit-transform:matrix(0.195025,-0.006247,0.008004,0.249872,0,0);}
.m21_c00480{transform:matrix(0.195631,-0.006065,0.007746,0.249880,0,0);-ms-transform:matrix(0.195631,-0.006065,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195631,-0.006065,0.007746,0.249880,0,0);}
.m1b_c00480{transform:matrix(0.195691,-0.006066,0.007746,0.249880,0,0);-ms-transform:matrix(0.195691,-0.006066,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195691,-0.006066,0.007746,0.249880,0,0);}
.m6a_c00480{transform:matrix(0.195785,-0.006271,0.008004,0.249872,0,0);-ms-transform:matrix(0.195785,-0.006271,0.008004,0.249872,0,0);-webkit-transform:matrix(0.195785,-0.006271,0.008004,0.249872,0,0);}
.mb9_c00480{transform:matrix(0.197097,-0.005716,0.007247,0.249895,0,0);-ms-transform:matrix(0.197097,-0.005716,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197097,-0.005716,0.007247,0.249895,0,0);}
.m45_c00480{transform:matrix(0.197189,-0.006316,0.008004,0.249872,0,0);-ms-transform:matrix(0.197189,-0.006316,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197189,-0.006316,0.008004,0.249872,0,0);}
.m7e_c00480{transform:matrix(0.197307,-0.005722,0.007247,0.249895,0,0);-ms-transform:matrix(0.197307,-0.005722,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197307,-0.005722,0.007247,0.249895,0,0);}
.mae_c00480{transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);-ms-transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197752,-0.005735,0.007247,0.249895,0,0);}
.me4_c00480{transform:matrix(0.198276,-0.005948,0.007497,0.249888,0,0);-ms-transform:matrix(0.198276,-0.005948,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198276,-0.005948,0.007497,0.249888,0,0);}
.med_c00480{transform:matrix(0.198286,-0.005949,0.007497,0.249888,0,0);-ms-transform:matrix(0.198286,-0.005949,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198286,-0.005949,0.007497,0.249888,0,0);}
.ma2_c00480{transform:matrix(0.198327,-0.005751,0.007247,0.249895,0,0);-ms-transform:matrix(0.198327,-0.005751,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198327,-0.005751,0.007247,0.249895,0,0);}
.m66_c00480{transform:matrix(0.198743,-0.006366,0.008004,0.249872,0,0);-ms-transform:matrix(0.198743,-0.006366,0.008004,0.249872,0,0);-webkit-transform:matrix(0.198743,-0.006366,0.008004,0.249872,0,0);}
.mb_c00480{transform:matrix(0.199034,-0.006170,0.007746,0.249880,0,0);-ms-transform:matrix(0.199034,-0.006170,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199034,-0.006170,0.007746,0.249880,0,0);}
.m73_c00480{transform:matrix(0.199226,-0.005778,0.007247,0.249895,0,0);-ms-transform:matrix(0.199226,-0.005778,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199226,-0.005778,0.007247,0.249895,0,0);}
.m61_c00480{transform:matrix(0.199638,-0.006395,0.008004,0.249872,0,0);-ms-transform:matrix(0.199638,-0.006395,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199638,-0.006395,0.008004,0.249872,0,0);}
.m83_c00480{transform:matrix(0.200421,-0.005812,0.007247,0.249895,0,0);-ms-transform:matrix(0.200421,-0.005812,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200421,-0.005812,0.007247,0.249895,0,0);}
.m52_c00480{transform:matrix(0.200437,-0.006420,0.008004,0.249872,0,0);-ms-transform:matrix(0.200437,-0.006420,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200437,-0.006420,0.008004,0.249872,0,0);}
.mcb_c00480{transform:matrix(0.200810,-0.007236,0.009003,0.249838,0,0);-ms-transform:matrix(0.200810,-0.007236,0.009003,0.249838,0,0);-webkit-transform:matrix(0.200810,-0.007236,0.009003,0.249838,0,0);}
.m7a_c00480{transform:matrix(0.200926,-0.005827,0.007247,0.249895,0,0);-ms-transform:matrix(0.200926,-0.005827,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200926,-0.005827,0.007247,0.249895,0,0);}
.mea_c00480{transform:matrix(0.201100,-0.006033,0.007497,0.249888,0,0);-ms-transform:matrix(0.201100,-0.006033,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201100,-0.006033,0.007497,0.249888,0,0);}
.m6_c00480{transform:matrix(0.201293,-0.006240,0.007746,0.249880,0,0);-ms-transform:matrix(0.201293,-0.006240,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201293,-0.006240,0.007746,0.249880,0,0);}
.m6b_c00480{transform:matrix(0.201792,-0.006464,0.008004,0.249872,0,0);-ms-transform:matrix(0.201792,-0.006464,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201792,-0.006464,0.008004,0.249872,0,0);}
.m16_c00480{transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);-ms-transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202268,-0.006270,0.007746,0.249880,0,0);}
.mb4_c00480{transform:matrix(0.202535,-0.005874,0.007247,0.249895,0,0);-ms-transform:matrix(0.202535,-0.005874,0.007247,0.249895,0,0);-webkit-transform:matrix(0.202535,-0.005874,0.007247,0.249895,0,0);}
.ma3_c00480{transform:matrix(0.202560,-0.005874,0.007247,0.249895,0,0);-ms-transform:matrix(0.202560,-0.005874,0.007247,0.249895,0,0);-webkit-transform:matrix(0.202560,-0.005874,0.007247,0.249895,0,0);}
.m75_c00480{transform:matrix(0.203160,-0.005892,0.007247,0.249895,0,0);-ms-transform:matrix(0.203160,-0.005892,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203160,-0.005892,0.007247,0.249895,0,0);}
.m3d_c00480{transform:matrix(0.203226,-0.006510,0.008004,0.249872,0,0);-ms-transform:matrix(0.203226,-0.006510,0.008004,0.249872,0,0);-webkit-transform:matrix(0.203226,-0.006510,0.008004,0.249872,0,0);}
.m7c_c00480{transform:matrix(0.203564,-0.005903,0.007247,0.249895,0,0);-ms-transform:matrix(0.203564,-0.005903,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203564,-0.005903,0.007247,0.249895,0,0);}
.m62_c00480{transform:matrix(0.204090,-0.006537,0.008004,0.249872,0,0);-ms-transform:matrix(0.204090,-0.006537,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204090,-0.006537,0.008004,0.249872,0,0);}
.m90_c00480{transform:matrix(0.204154,-0.005920,0.007247,0.249895,0,0);-ms-transform:matrix(0.204154,-0.005920,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204154,-0.005920,0.007247,0.249895,0,0);}
.m42_c00480{transform:matrix(0.204235,-0.006542,0.008004,0.249872,0,0);-ms-transform:matrix(0.204235,-0.006542,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204235,-0.006542,0.008004,0.249872,0,0);}
.m31_c00480{transform:matrix(0.204630,-0.006555,0.008004,0.249872,0,0);-ms-transform:matrix(0.204630,-0.006555,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204630,-0.006555,0.008004,0.249872,0,0);}
.md1_c00480{transform:matrix(0.205117,-0.007392,0.009003,0.249838,0,0);-ms-transform:matrix(0.205117,-0.007392,0.009003,0.249838,0,0);-webkit-transform:matrix(0.205117,-0.007392,0.009003,0.249838,0,0);}
.m4b_c00480{transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);-ms-transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205530,-0.006584,0.008004,0.249872,0,0);}
.m69_c00480{transform:matrix(0.205829,-0.006593,0.008004,0.249872,0,0);-ms-transform:matrix(0.205829,-0.006593,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205829,-0.006593,0.008004,0.249872,0,0);}
.m43_c00480{transform:matrix(0.205944,-0.006597,0.008004,0.249872,0,0);-ms-transform:matrix(0.205944,-0.006597,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205944,-0.006597,0.008004,0.249872,0,0);}
.m5c_c00480{transform:matrix(0.206269,-0.006607,0.008004,0.249872,0,0);-ms-transform:matrix(0.206269,-0.006607,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206269,-0.006607,0.008004,0.249872,0,0);}
.m2f_c00480{transform:matrix(0.207589,-0.006649,0.008004,0.249872,0,0);-ms-transform:matrix(0.207589,-0.006649,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207589,-0.006649,0.008004,0.249872,0,0);}
.md9_c00480{transform:matrix(0.207830,-0.007489,0.009003,0.249838,0,0);-ms-transform:matrix(0.207830,-0.007489,0.009003,0.249838,0,0);-webkit-transform:matrix(0.207830,-0.007489,0.009003,0.249838,0,0);}
.m89_c00480{transform:matrix(0.207943,-0.006030,0.007247,0.249895,0,0);-ms-transform:matrix(0.207943,-0.006030,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207943,-0.006030,0.007247,0.249895,0,0);}
.mb5_c00480{transform:matrix(0.207968,-0.006031,0.007247,0.249895,0,0);-ms-transform:matrix(0.207968,-0.006031,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207968,-0.006031,0.007247,0.249895,0,0);}
.m51_c00480{transform:matrix(0.208178,-0.006668,0.008004,0.249872,0,0);-ms-transform:matrix(0.208178,-0.006668,0.008004,0.249872,0,0);-webkit-transform:matrix(0.208178,-0.006668,0.008004,0.249872,0,0);}
.m9c_c00480{transform:matrix(0.208937,-0.006059,0.007247,0.249895,0,0);-ms-transform:matrix(0.208937,-0.006059,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208937,-0.006059,0.007247,0.249895,0,0);}
.me8_c00480{transform:matrix(0.208961,-0.006269,0.007497,0.249888,0,0);-ms-transform:matrix(0.208961,-0.006269,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208961,-0.006269,0.007497,0.249888,0,0);}
.me_c00480{transform:matrix(0.209135,-0.006483,0.007746,0.249880,0,0);-ms-transform:matrix(0.209135,-0.006483,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209135,-0.006483,0.007746,0.249880,0,0);}
.m84_c00480{transform:matrix(0.209987,-0.006090,0.007247,0.249895,0,0);-ms-transform:matrix(0.209987,-0.006090,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209987,-0.006090,0.007247,0.249895,0,0);}
.m80_c00480{transform:matrix(0.210147,-0.006094,0.007247,0.249895,0,0);-ms-transform:matrix(0.210147,-0.006094,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210147,-0.006094,0.007247,0.249895,0,0);}
.m6c_c00480{transform:matrix(0.210612,-0.006746,0.008004,0.249872,0,0);-ms-transform:matrix(0.210612,-0.006746,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210612,-0.006746,0.008004,0.249872,0,0);}
.m8c_c00480{transform:matrix(0.210806,-0.006113,0.007247,0.249895,0,0);-ms-transform:matrix(0.210806,-0.006113,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210806,-0.006113,0.007247,0.249895,0,0);}
.m4a_c00480{transform:matrix(0.210892,-0.006755,0.008004,0.249872,0,0);-ms-transform:matrix(0.210892,-0.006755,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210892,-0.006755,0.008004,0.249872,0,0);}
.m48_c00480{transform:matrix(0.210957,-0.006757,0.008004,0.249872,0,0);-ms-transform:matrix(0.210957,-0.006757,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210957,-0.006757,0.008004,0.249872,0,0);}
.mac_c00480{transform:matrix(0.211431,-0.006132,0.007247,0.249895,0,0);-ms-transform:matrix(0.211431,-0.006132,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211431,-0.006132,0.007247,0.249895,0,0);}
.ma5_c00480{transform:matrix(0.211721,-0.006140,0.007247,0.249895,0,0);-ms-transform:matrix(0.211721,-0.006140,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211721,-0.006140,0.007247,0.249895,0,0);}
.m47_c00480{transform:matrix(0.212171,-0.006796,0.008004,0.249872,0,0);-ms-transform:matrix(0.212171,-0.006796,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212171,-0.006796,0.008004,0.249872,0,0);}
.mcf_c00480{transform:matrix(0.212432,-0.007655,0.009003,0.249838,0,0);-ms-transform:matrix(0.212432,-0.007655,0.009003,0.249838,0,0);-webkit-transform:matrix(0.212432,-0.007655,0.009003,0.249838,0,0);}
.m3a_c00480{transform:matrix(0.212531,-0.006808,0.008004,0.249872,0,0);-ms-transform:matrix(0.212531,-0.006808,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212531,-0.006808,0.008004,0.249872,0,0);}
.m5f_c00480{transform:matrix(0.212721,-0.006814,0.008004,0.249872,0,0);-ms-transform:matrix(0.212721,-0.006814,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212721,-0.006814,0.008004,0.249872,0,0);}
.mbb_c00480{transform:matrix(0.213245,-0.006184,0.007247,0.249895,0,0);-ms-transform:matrix(0.213245,-0.006184,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213245,-0.006184,0.007247,0.249895,0,0);}
.m27_c00480{transform:matrix(0.213837,-0.006629,0.007746,0.249880,0,0);-ms-transform:matrix(0.213837,-0.006629,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213837,-0.006629,0.007746,0.249880,0,0);}
.m25_c00480{transform:matrix(0.214202,-0.006640,0.007746,0.249880,0,0);-ms-transform:matrix(0.214202,-0.006640,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214202,-0.006640,0.007746,0.249880,0,0);}
.mb0_c00480{transform:matrix(0.214340,-0.006216,0.007247,0.249895,0,0);-ms-transform:matrix(0.214340,-0.006216,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214340,-0.006216,0.007247,0.249895,0,0);}
.me0_c00480{transform:matrix(0.214898,-0.006447,0.007497,0.249888,0,0);-ms-transform:matrix(0.214898,-0.006447,0.007497,0.249888,0,0);-webkit-transform:matrix(0.214898,-0.006447,0.007497,0.249888,0,0);}
.m4c_c00480{transform:matrix(0.215040,-0.006888,0.008004,0.249872,0,0);-ms-transform:matrix(0.215040,-0.006888,0.008004,0.249872,0,0);-webkit-transform:matrix(0.215040,-0.006888,0.008004,0.249872,0,0);}
.m56_c00480{transform:matrix(0.216734,-0.006942,0.008004,0.249872,0,0);-ms-transform:matrix(0.216734,-0.006942,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216734,-0.006942,0.008004,0.249872,0,0);}
.md7_c00480{transform:matrix(0.216894,-0.007816,0.009003,0.249838,0,0);-ms-transform:matrix(0.216894,-0.007816,0.009003,0.249838,0,0);-webkit-transform:matrix(0.216894,-0.007816,0.009003,0.249838,0,0);}
.mee_c00480{transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);-ms-transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217612,-0.006528,0.007497,0.249888,0,0);}
.m8a_c00480{transform:matrix(0.217778,-0.006316,0.007247,0.249895,0,0);-ms-transform:matrix(0.217778,-0.006316,0.007247,0.249895,0,0);-webkit-transform:matrix(0.217778,-0.006316,0.007247,0.249895,0,0);}
.md8_c00480{transform:matrix(0.220377,-0.007942,0.009003,0.249838,0,0);-ms-transform:matrix(0.220377,-0.007942,0.009003,0.249838,0,0);-webkit-transform:matrix(0.220377,-0.007942,0.009003,0.249838,0,0);}
.m59_c00480{transform:matrix(0.220692,-0.007069,0.008004,0.249872,0,0);-ms-transform:matrix(0.220692,-0.007069,0.008004,0.249872,0,0);-webkit-transform:matrix(0.220692,-0.007069,0.008004,0.249872,0,0);}
.meb_c00480{transform:matrix(0.221106,-0.006633,0.007497,0.249888,0,0);-ms-transform:matrix(0.221106,-0.006633,0.007497,0.249888,0,0);-webkit-transform:matrix(0.221106,-0.006633,0.007497,0.249888,0,0);}
.m70_c00480{transform:matrix(0.222471,-0.006452,0.007247,0.249895,0,0);-ms-transform:matrix(0.222471,-0.006452,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222471,-0.006452,0.007247,0.249895,0,0);}
.m54_c00480{transform:matrix(0.222726,-0.007134,0.008004,0.249872,0,0);-ms-transform:matrix(0.222726,-0.007134,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222726,-0.007134,0.008004,0.249872,0,0);}
.m10_c00480{transform:matrix(0.222773,-0.006906,0.007746,0.249880,0,0);-ms-transform:matrix(0.222773,-0.006906,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222773,-0.006906,0.007746,0.249880,0,0);}
.m9a_c00480{transform:matrix(0.223116,-0.006470,0.007247,0.249895,0,0);-ms-transform:matrix(0.223116,-0.006470,0.007247,0.249895,0,0);-webkit-transform:matrix(0.223116,-0.006470,0.007247,0.249895,0,0);}
.m76_c00480{transform:matrix(0.224031,-0.006497,0.007247,0.249895,0,0);-ms-transform:matrix(0.224031,-0.006497,0.007247,0.249895,0,0);-webkit-transform:matrix(0.224031,-0.006497,0.007247,0.249895,0,0);}
.m72_c00480{transform:matrix(0.224281,-0.006504,0.007247,0.249895,0,0);-ms-transform:matrix(0.224281,-0.006504,0.007247,0.249895,0,0);-webkit-transform:matrix(0.224281,-0.006504,0.007247,0.249895,0,0);}
.m65_c00480{transform:matrix(0.225150,-0.007212,0.008004,0.249872,0,0);-ms-transform:matrix(0.225150,-0.007212,0.008004,0.249872,0,0);-webkit-transform:matrix(0.225150,-0.007212,0.008004,0.249872,0,0);}
.m50_c00480{transform:matrix(0.225854,-0.007235,0.008004,0.249872,0,0);-ms-transform:matrix(0.225854,-0.007235,0.008004,0.249872,0,0);-webkit-transform:matrix(0.225854,-0.007235,0.008004,0.249872,0,0);}
.m99_c00480{transform:matrix(0.226025,-0.006555,0.007247,0.249895,0,0);-ms-transform:matrix(0.226025,-0.006555,0.007247,0.249895,0,0);-webkit-transform:matrix(0.226025,-0.006555,0.007247,0.249895,0,0);}
.m9b_c00480{transform:matrix(0.228299,-0.006621,0.007247,0.249895,0,0);-ms-transform:matrix(0.228299,-0.006621,0.007247,0.249895,0,0);-webkit-transform:matrix(0.228299,-0.006621,0.007247,0.249895,0,0);}
.mc7_c00480{transform:matrix(0.229211,-0.008260,0.009003,0.249838,0,0);-ms-transform:matrix(0.229211,-0.008260,0.009003,0.249838,0,0);-webkit-transform:matrix(0.229211,-0.008260,0.009003,0.249838,0,0);}
.m38_c00480{transform:matrix(0.230117,-0.007371,0.008004,0.249872,0,0);-ms-transform:matrix(0.230117,-0.007371,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230117,-0.007371,0.008004,0.249872,0,0);}
.m37_c00480{transform:matrix(0.230582,-0.007386,0.008004,0.249872,0,0);-ms-transform:matrix(0.230582,-0.007386,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230582,-0.007386,0.008004,0.249872,0,0);}
.m4f_c00480{transform:matrix(0.231007,-0.007400,0.008004,0.249872,0,0);-ms-transform:matrix(0.231007,-0.007400,0.008004,0.249872,0,0);-webkit-transform:matrix(0.231007,-0.007400,0.008004,0.249872,0,0);}
.m74_c00480{transform:matrix(0.231733,-0.006720,0.007247,0.249895,0,0);-ms-transform:matrix(0.231733,-0.006720,0.007247,0.249895,0,0);-webkit-transform:matrix(0.231733,-0.006720,0.007247,0.249895,0,0);}
.m8_c00480{transform:matrix(0.232488,-0.007207,0.007746,0.249880,0,0);-ms-transform:matrix(0.232488,-0.007207,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232488,-0.007207,0.007746,0.249880,0,0);}
.m5e_c00480{transform:matrix(0.233860,-0.007491,0.008004,0.249872,0,0);-ms-transform:matrix(0.233860,-0.007491,0.008004,0.249872,0,0);-webkit-transform:matrix(0.233860,-0.007491,0.008004,0.249872,0,0);}
.m3e_c00480{transform:matrix(0.234080,-0.007498,0.008004,0.249872,0,0);-ms-transform:matrix(0.234080,-0.007498,0.008004,0.249872,0,0);-webkit-transform:matrix(0.234080,-0.007498,0.008004,0.249872,0,0);}
.mb6_c00480{transform:matrix(0.240874,-0.006985,0.007247,0.249895,0,0);-ms-transform:matrix(0.240874,-0.006985,0.007247,0.249895,0,0);-webkit-transform:matrix(0.240874,-0.006985,0.007247,0.249895,0,0);}
.mba_c00480{transform:matrix(0.242488,-0.007032,0.007247,0.249895,0,0);-ms-transform:matrix(0.242488,-0.007032,0.007247,0.249895,0,0);-webkit-transform:matrix(0.242488,-0.007032,0.007247,0.249895,0,0);}
.m3c_c00480{transform:matrix(0.243395,-0.007796,0.008004,0.249872,0,0);-ms-transform:matrix(0.243395,-0.007796,0.008004,0.249872,0,0);-webkit-transform:matrix(0.243395,-0.007796,0.008004,0.249872,0,0);}
.mb8_c00480{transform:matrix(0.245357,-0.007115,0.007247,0.249895,0,0);-ms-transform:matrix(0.245357,-0.007115,0.007247,0.249895,0,0);-webkit-transform:matrix(0.245357,-0.007115,0.007247,0.249895,0,0);}
.m7f_c00480{transform:matrix(0.246097,-0.007137,0.007247,0.249895,0,0);-ms-transform:matrix(0.246097,-0.007137,0.007247,0.249895,0,0);-webkit-transform:matrix(0.246097,-0.007137,0.007247,0.249895,0,0);}
.m98_c00480{transform:matrix(0.246536,-0.007150,0.007247,0.249895,0,0);-ms-transform:matrix(0.246536,-0.007150,0.007247,0.249895,0,0);-webkit-transform:matrix(0.246536,-0.007150,0.007247,0.249895,0,0);}
.m82_c00480{transform:matrix(0.248236,-0.007199,0.007247,0.249895,0,0);-ms-transform:matrix(0.248236,-0.007199,0.007247,0.249895,0,0);-webkit-transform:matrix(0.248236,-0.007199,0.007247,0.249895,0,0);}
.ma_c00480{transform:matrix(0.251439,-0.007795,0.007746,0.249880,0,0);-ms-transform:matrix(0.251439,-0.007795,0.007746,0.249880,0,0);-webkit-transform:matrix(0.251439,-0.007795,0.007746,0.249880,0,0);}
.m8d_c00480{transform:matrix(0.251609,-0.007297,0.007247,0.249895,0,0);-ms-transform:matrix(0.251609,-0.007297,0.007247,0.249895,0,0);-webkit-transform:matrix(0.251609,-0.007297,0.007247,0.249895,0,0);}
.m63_c00480{transform:matrix(0.252396,-0.008085,0.008004,0.249872,0,0);-ms-transform:matrix(0.252396,-0.008085,0.008004,0.249872,0,0);-webkit-transform:matrix(0.252396,-0.008085,0.008004,0.249872,0,0);}
.ma1_c00480{transform:matrix(0.258067,-0.007484,0.007247,0.249895,0,0);-ms-transform:matrix(0.258067,-0.007484,0.007247,0.249895,0,0);-webkit-transform:matrix(0.258067,-0.007484,0.007247,0.249895,0,0);}
.m2d_c00480{transform:matrix(0.259307,-0.008306,0.008004,0.249872,0,0);-ms-transform:matrix(0.259307,-0.008306,0.008004,0.249872,0,0);-webkit-transform:matrix(0.259307,-0.008306,0.008004,0.249872,0,0);}
.m11_c00480{transform:matrix(0.259575,-0.008047,0.007746,0.249880,0,0);-ms-transform:matrix(0.259575,-0.008047,0.007746,0.249880,0,0);-webkit-transform:matrix(0.259575,-0.008047,0.007746,0.249880,0,0);}
.m85_c00480{transform:matrix(0.263044,-0.007628,0.007247,0.249895,0,0);-ms-transform:matrix(0.263044,-0.007628,0.007247,0.249895,0,0);-webkit-transform:matrix(0.263044,-0.007628,0.007247,0.249895,0,0);}
.m53_c00480{transform:matrix(0.265234,-0.008496,0.008004,0.249872,0,0);-ms-transform:matrix(0.265234,-0.008496,0.008004,0.249872,0,0);-webkit-transform:matrix(0.265234,-0.008496,0.008004,0.249872,0,0);}
.ma0_c00480{transform:matrix(0.266573,-0.007731,0.007247,0.249895,0,0);-ms-transform:matrix(0.266573,-0.007731,0.007247,0.249895,0,0);-webkit-transform:matrix(0.266573,-0.007731,0.007247,0.249895,0,0);}
.mdb_c00480{transform:matrix(0.266950,-0.008008,0.007497,0.249888,0,0);-ms-transform:matrix(0.266950,-0.008008,0.007497,0.249888,0,0);-webkit-transform:matrix(0.266950,-0.008008,0.007497,0.249888,0,0);}
.m3_c00480{transform:matrix(0.271739,-0.008424,0.007746,0.249880,0,0);-ms-transform:matrix(0.271739,-0.008424,0.007746,0.249880,0,0);-webkit-transform:matrix(0.271739,-0.008424,0.007746,0.249880,0,0);}
.m15_c00480{transform:matrix(0.273089,-0.008466,0.007746,0.249880,0,0);-ms-transform:matrix(0.273089,-0.008466,0.007746,0.249880,0,0);-webkit-transform:matrix(0.273089,-0.008466,0.007746,0.249880,0,0);}
.mc9_c00480{transform:matrix(0.275806,-0.009939,0.009003,0.249838,0,0);-ms-transform:matrix(0.275806,-0.009939,0.009003,0.249838,0,0);-webkit-transform:matrix(0.275806,-0.009939,0.009003,0.249838,0,0);}
.m93_c00480{transform:matrix(0.311814,-0.009043,0.007247,0.249895,0,0);-ms-transform:matrix(0.311814,-0.009043,0.007247,0.249895,0,0);-webkit-transform:matrix(0.311814,-0.009043,0.007247,0.249895,0,0);}
.m6d_c00480{transform:matrix(0.335758,-0.010755,0.008004,0.249872,0,0);-ms-transform:matrix(0.335758,-0.010755,0.008004,0.249872,0,0);-webkit-transform:matrix(0.335758,-0.010755,0.008004,0.249872,0,0);}
.mca_c00480{transform:matrix(0.338825,-0.012210,0.009003,0.249838,0,0);-ms-transform:matrix(0.338825,-0.012210,0.009003,0.249838,0,0);-webkit-transform:matrix(0.338825,-0.012210,0.009003,0.249838,0,0);}
.m9_c00480{transform:matrix(0.621152,-0.019256,0.007746,0.249880,0,0);-ms-transform:matrix(0.621152,-0.019256,0.007746,0.249880,0,0);-webkit-transform:matrix(0.621152,-0.019256,0.007746,0.249880,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:0.000000px;}
.fc0_c00480{color:transparent;}
.fs6_c00480{font-size:57.721840px;}
.fsf_c00480{font-size:58.824720px;}
.fs8_c00480{font-size:59.820816px;}
.fs9_c00480{font-size:60.870304px;}
.fs15_c00480{font-size:60.878590px;}
.fsa_c00480{font-size:62.969280px;}
.fsd_c00480{font-size:63.026486px;}
.fs18_c00480{font-size:63.028344px;}
.fsb_c00480{font-size:64.018768px;}
.fs7_c00480{font-size:65.068256px;}
.fs14_c00480{font-size:65.077113px;}
.fs10_c00480{font-size:65.127369px;}
.fsc_c00480{font-size:66.117744px;}
.fs16_c00480{font-size:66.179761px;}
.fs5_c00480{font-size:67.167232px;}
.fs11_c00480{font-size:67.228252px;}
.fs2_c00480{font-size:67.232282px;}
.fs13_c00480{font-size:68.226006px;}
.fse_c00480{font-size:68.278693px;}
.fs17_c00480{font-size:68.280706px;}
.fs4_c00480{font-size:68.282786px;}
.fs3_c00480{font-size:69.333291px;}
.fs12_c00480{font-size:70.379576px;}
.fs1_c00480{font-size:70.383795px;}
.fs0_c00480{font-size:73.500000px;}
.y0_c00480{bottom:0.000000px;}
.yeb_c00480{bottom:33.478545px;}
.yec_c00480{bottom:35.884980px;}
.yed_c00480{bottom:36.593055px;}
.yee_c00480{bottom:38.308740px;}
.yef_c00480{bottom:38.787240px;}
.yf0_c00480{bottom:39.626130px;}
.yf1_c00480{bottom:42.098055px;}
.ye4_c00480{bottom:49.680990px;}
.ye5_c00480{bottom:51.052425px;}
.ye6_c00480{bottom:52.573020px;}
.ye7_c00480{bottom:54.478935px;}
.ye8_c00480{bottom:55.107090px;}
.ye9_c00480{bottom:56.510085px;}
.yea_c00480{bottom:57.381300px;}
.yde_c00480{bottom:65.893500px;}
.ydf_c00480{bottom:68.646510px;}
.ye0_c00480{bottom:69.307740px;}
.ye1_c00480{bottom:70.826625px;}
.ye2_c00480{bottom:71.509635px;}
.ye3_c00480{bottom:73.324170px;}
.yd6_c00480{bottom:82.648580px;}
.yd7_c00480{bottom:84.525971px;}
.yd8_c00480{bottom:85.168139px;}
.yd9_c00480{bottom:86.386136px;}
.yda_c00480{bottom:87.326802px;}
.ydb_c00480{bottom:88.682688px;}
.ydc_c00480{bottom:89.186873px;}
.ydd_c00480{bottom:92.416262px;}
.yce_c00480{bottom:99.649697px;}
.ycf_c00480{bottom:100.762326px;}
.yd0_c00480{bottom:103.209255px;}
.yd1_c00480{bottom:103.989353px;}
.yd2_c00480{bottom:104.963756px;}
.yd3_c00480{bottom:106.764939px;}
.yd4_c00480{bottom:107.395578px;}
.yd5_c00480{bottom:109.804356px;}
.yc6_c00480{bottom:116.923500px;}
.yc7_c00480{bottom:118.889532px;}
.yc8_c00480{bottom:119.639592px;}
.yc9_c00480{bottom:121.331898px;}
.yca_c00480{bottom:122.100696px;}
.ycb_c00480{bottom:125.089704px;}
.ycc_c00480{bottom:125.359650px;}
.ycd_c00480{bottom:127.371798px;}
.ybf_c00480{bottom:133.054233px;}
.yc0_c00480{bottom:134.232521px;}
.yc1_c00480{bottom:135.432665px;}
.yc2_c00480{bottom:136.195224px;}
.yc3_c00480{bottom:139.132136px;}
.yc4_c00480{bottom:141.763667px;}
.yc5_c00480{bottom:142.778717px;}
.yb7_c00480{bottom:149.796915px;}
.yb8_c00480{bottom:151.769514px;}
.yb9_c00480{bottom:153.261338px;}
.yba_c00480{bottom:153.829169px;}
.ybb_c00480{bottom:154.509957px;}
.ybc_c00480{bottom:157.378538px;}
.ybd_c00480{bottom:158.134638px;}
.ybe_c00480{bottom:158.996150px;}
.yb0_c00480{bottom:168.163575px;}
.yb1_c00480{bottom:169.953560px;}
.yb2_c00480{bottom:172.215780px;}
.yb3_c00480{bottom:172.442187px;}
.yb4_c00480{bottom:174.153723px;}
.yb5_c00480{bottom:174.990842px;}
.yb6_c00480{bottom:176.599223px;}
.ya8_c00480{bottom:184.373944px;}
.ya9_c00480{bottom:186.748370px;}
.yaa_c00480{bottom:188.298074px;}
.yab_c00480{bottom:188.918925px;}
.yac_c00480{bottom:189.442823px;}
.yad_c00480{bottom:190.930326px;}
.yae_c00480{bottom:191.821467px;}
.yaf_c00480{bottom:193.759772px;}
.ya0_c00480{bottom:201.387722px;}
.ya1_c00480{bottom:202.479419px;}
.ya2_c00480{bottom:203.180226px;}
.ya3_c00480{bottom:203.742539px;}
.ya4_c00480{bottom:205.052940px;}
.ya5_c00480{bottom:205.668428px;}
.ya6_c00480{bottom:208.048734px;}
.ya7_c00480{bottom:209.696741px;}
.y9a_c00480{bottom:219.215523px;}
.y9b_c00480{bottom:221.507210px;}
.y9c_c00480{bottom:223.834958px;}
.y9d_c00480{bottom:224.204084px;}
.y9e_c00480{bottom:225.573249px;}
.y9f_c00480{bottom:225.937851px;}
.y91_c00480{bottom:235.420137px;}
.y92_c00480{bottom:236.094605px;}
.y93_c00480{bottom:237.693156px;}
.y94_c00480{bottom:238.096758px;}
.y95_c00480{bottom:239.846642px;}
.y96_c00480{bottom:241.303649px;}
.y97_c00480{bottom:241.845881px;}
.y98_c00480{bottom:243.018255px;}
.y99_c00480{bottom:244.248678px;}
.y89_c00480{bottom:252.709914px;}
.y8a_c00480{bottom:253.601780px;}
.y8b_c00480{bottom:254.121161px;}
.y8c_c00480{bottom:255.572427px;}
.y8d_c00480{bottom:257.739344px;}
.y8e_c00480{bottom:258.690999px;}
.y8f_c00480{bottom:259.223430px;}
.y90_c00480{bottom:261.376818px;}
.y82_c00480{bottom:269.725995px;}
.y83_c00480{bottom:271.088980px;}
.y84_c00480{bottom:272.232813px;}
.y85_c00480{bottom:273.451292px;}
.y86_c00480{bottom:273.847403px;}
.y87_c00480{bottom:274.826892px;}
.y88_c00480{bottom:276.979925px;}
.y7a_c00480{bottom:287.012278px;}
.y7b_c00480{bottom:288.052511px;}
.y7c_c00480{bottom:288.817791px;}
.y7d_c00480{bottom:289.230142px;}
.y7e_c00480{bottom:289.742222px;}
.y7f_c00480{bottom:291.152109px;}
.y80_c00480{bottom:291.517305px;}
.y81_c00480{bottom:292.447022px;}
.y73_c00480{bottom:304.842000px;}
.y74_c00480{bottom:305.461440px;}
.y75_c00480{bottom:306.997295px;}
.y76_c00480{bottom:308.548113px;}
.y77_c00480{bottom:309.761720px;}
.y78_c00480{bottom:311.538172px;}
.y79_c00480{bottom:311.836496px;}
.y6f_c00480{bottom:320.844202px;}
.y70_c00480{bottom:324.713676px;}
.y71_c00480{bottom:327.372648px;}
.y72_c00480{bottom:329.271852px;}
.y68_c00480{bottom:337.300492px;}
.y69_c00480{bottom:339.650922px;}
.y6a_c00480{bottom:340.073416px;}
.y6b_c00480{bottom:342.027906px;}
.y6c_c00480{bottom:342.791215px;}
.y6d_c00480{bottom:345.099309px;}
.y6e_c00480{bottom:346.684365px;}
.y62_c00480{bottom:353.764813px;}
.y63_c00480{bottom:355.677078px;}
.y64_c00480{bottom:356.591784px;}
.y65_c00480{bottom:359.213679px;}
.y66_c00480{bottom:360.916538px;}
.y67_c00480{bottom:363.070821px;}
.y59_c00480{bottom:370.494879px;}
.y5a_c00480{bottom:372.076651px;}
.y5b_c00480{bottom:373.435872px;}
.y5c_c00480{bottom:374.376495px;}
.y5d_c00480{bottom:376.767314px;}
.y5e_c00480{bottom:377.335018px;}
.y5f_c00480{bottom:378.315945px;}
.y60_c00480{bottom:379.763404px;}
.y61_c00480{bottom:380.327461px;}
.y4f_c00480{bottom:387.496369px;}
.y50_c00480{bottom:388.410478px;}
.y51_c00480{bottom:389.782564px;}
.y52_c00480{bottom:391.078213px;}
.y53_c00480{bottom:391.497481px;}
.y54_c00480{bottom:393.443043px;}
.y55_c00480{bottom:394.340112px;}
.y56_c00480{bottom:395.730294px;}
.y57_c00480{bottom:396.812205px;}
.y58_c00480{bottom:397.789599px;}
.y46_c00480{bottom:404.490300px;}
.y47_c00480{bottom:405.383983px;}
.y48_c00480{bottom:406.158838px;}
.y49_c00480{bottom:406.621192px;}
.y4a_c00480{bottom:408.163713px;}
.y4b_c00480{bottom:408.753669px;}
.y4c_c00480{bottom:409.287517px;}
.y4d_c00480{bottom:410.863750px;}
.y4e_c00480{bottom:412.206118px;}
.y40_c00480{bottom:420.959920px;}
.y41_c00480{bottom:422.616118px;}
.y42_c00480{bottom:423.711706px;}
.y43_c00480{bottom:424.276876px;}
.y44_c00480{bottom:426.679594px;}
.y45_c00480{bottom:429.474868px;}
.y38_c00480{bottom:437.961810px;}
.y39_c00480{bottom:439.326001px;}
.y3a_c00480{bottom:439.728099px;}
.y3b_c00480{bottom:440.274117px;}
.y3c_c00480{bottom:442.299399px;}
.y3d_c00480{bottom:443.053455px;}
.y3e_c00480{bottom:445.623325px;}
.y3f_c00480{bottom:446.561371px;}
.y2e_c00480{bottom:455.235000px;}
.y2f_c00480{bottom:457.610616px;}
.y30_c00480{bottom:458.138760px;}
.y31_c00480{bottom:459.573912px;}
.y32_c00480{bottom:460.213752px;}
.y33_c00480{bottom:461.457288px;}
.y34_c00480{bottom:462.598584px;}
.y35_c00480{bottom:463.160472px;}
.y36_c00480{bottom:463.808136px;}
.y37_c00480{bottom:464.766216px;}
.y27_c00480{bottom:471.134831px;}
.y28_c00480{bottom:473.098076px;}
.y29_c00480{bottom:474.419489px;}
.y2a_c00480{bottom:476.045832px;}
.y2b_c00480{bottom:477.159401px;}
.y2c_c00480{bottom:478.121265px;}
.y2d_c00480{bottom:482.485242px;}
.y20_c00480{bottom:488.409581px;}
.y21_c00480{bottom:489.644574px;}
.y22_c00480{bottom:491.918285px;}
.y23_c00480{bottom:493.554340px;}
.y24_c00480{bottom:494.399804px;}
.y25_c00480{bottom:495.773646px;}
.y26_c00480{bottom:497.522651px;}
.y18_c00480{bottom:505.428116px;}
.y19_c00480{bottom:506.071894px;}
.y1a_c00480{bottom:506.857431px;}
.y1b_c00480{bottom:507.706185px;}
.y1c_c00480{bottom:510.205609px;}
.y1d_c00480{bottom:511.314849px;}
.y1e_c00480{bottom:513.716808px;}
.y1f_c00480{bottom:514.649078px;}
.yf_c00480{bottom:522.195541px;}
.y10_c00480{bottom:523.824938px;}
.y11_c00480{bottom:524.358618px;}
.y12_c00480{bottom:525.436082px;}
.y13_c00480{bottom:525.976470px;}
.y14_c00480{bottom:528.797385px;}
.y15_c00480{bottom:529.491657px;}
.y16_c00480{bottom:530.736315px;}
.y17_c00480{bottom:531.420671px;}
.ya_c00480{bottom:539.204160px;}
.yb_c00480{bottom:541.610690px;}
.yc_c00480{bottom:542.120012px;}
.yd_c00480{bottom:546.962772px;}
.ye_c00480{bottom:547.502028px;}
.y2_c00480{bottom:557.022000px;}
.y3_c00480{bottom:557.861976px;}
.y4_c00480{bottom:560.239986px;}
.y5_c00480{bottom:560.674482px;}
.y6_c00480{bottom:561.302465px;}
.y7_c00480{bottom:562.869747px;}
.y8_c00480{bottom:564.267398px;}
.y9_c00480{bottom:565.752375px;}
.y1_c00480{bottom:575.226000px;}
.h8_c00480{height:57.721840px;}
.h11_c00480{height:58.824720px;}
.ha_c00480{height:59.820816px;}
.hb_c00480{height:60.870304px;}
.h17_c00480{height:60.878590px;}
.hc_c00480{height:62.969280px;}
.hf_c00480{height:63.026486px;}
.h1a_c00480{height:63.028344px;}
.hd_c00480{height:64.018768px;}
.h9_c00480{height:65.068256px;}
.h16_c00480{height:65.077113px;}
.h12_c00480{height:65.127369px;}
.he_c00480{height:66.117744px;}
.h18_c00480{height:66.179761px;}
.h7_c00480{height:67.167232px;}
.h13_c00480{height:67.228252px;}
.h4_c00480{height:67.232282px;}
.h15_c00480{height:68.226006px;}
.h10_c00480{height:68.278693px;}
.h19_c00480{height:68.280706px;}
.h6_c00480{height:68.282786px;}
.h5_c00480{height:69.333291px;}
.h14_c00480{height:70.379576px;}
.h3_c00480{height:70.383795px;}
.h2_c00480{height:73.500000px;}
.h0_c00480{height:617.700000px;}
.h1_c00480{height:618.000000px;}
.w0_c00480{width:359.100000px;}
.w1_c00480{width:359.250000px;}
.x0_c00480{left:0.000000px;}
.xa_c00480{left:17.348667px;}
.x1e_c00480{left:18.678564px;}
.x17_c00480{left:21.138858px;}
.x23_c00480{left:22.967685px;}
.x4e_c00480{left:24.866618px;}
.x59_c00480{left:26.556702px;}
.x2_c00480{left:28.447500px;}
.x78_c00480{left:30.078000px;}
.x83_c00480{left:32.575500px;}
.x18_c00480{left:40.646649px;}
.x5f_c00480{left:44.697885px;}
.x3c_c00480{left:47.862462px;}
.x52_c00480{left:48.999000px;}
.x3_c00480{left:55.543500px;}
.x1f_c00480{left:58.517064px;}
.x7c_c00480{left:59.602486px;}
.x56_c00480{left:60.719835px;}
.x2f_c00480{left:63.261461px;}
.x19_c00480{left:64.436661px;}
.xf_c00480{left:66.074246px;}
.x41_c00480{left:67.580148px;}
.x24_c00480{left:70.847852px;}
.x5a_c00480{left:73.563810px;}
.x7f_c00480{left:74.674386px;}
.x30_c00480{left:76.235906px;}
.x47_c00480{left:78.548721px;}
.x10_c00480{left:81.788304px;}
.x79_c00480{left:84.635388px;}
.x57_c00480{left:89.075988px;}
.x1a_c00480{left:90.169080px;}
.x74_c00480{left:92.294624px;}
.x31_c00480{left:93.843857px;}
.x49_c00480{left:94.852967px;}
.x60_c00480{left:96.248384px;}
.xb_c00480{left:97.545632px;}
.x38_c00480{left:99.195435px;}
.x25_c00480{left:103.060854px;}
.x42_c00480{left:105.283554px;}
.x4a_c00480{left:107.621253px;}
.x61_c00480{left:109.285644px;}
.x35_c00480{left:111.810821px;}
.x11_c00480{left:113.493875px;}
.xc_c00480{left:114.508143px;}
.x71_c00480{left:117.235985px;}
.x29_c00480{left:118.919258px;}
.x5b_c00480{left:121.950918px;}
.x53_c00480{left:123.319500px;}
.x80_c00480{left:124.878294px;}
.x4f_c00480{left:126.607220px;}
.x12_c00480{left:129.375887px;}
.x85_c00480{left:130.797075px;}
.x4_c00480{left:132.253500px;}
.x67_c00480{left:133.321306px;}
.x3d_c00480{left:141.331421px;}
.x26_c00480{left:142.737078px;}
.x7d_c00480{left:144.447448px;}
.x5_c00480{left:146.269500px;}
.x1_c00480{left:148.770000px;}
.x6c_c00480{left:150.247007px;}
.x68_c00480{left:151.956631px;}
.x39_c00480{left:154.234904px;}
.x6d_c00480{left:157.329398px;}
.x32_c00480{left:159.131118px;}
.x2a_c00480{left:163.722909px;}
.x6_c00480{left:166.527000px;}
.x27_c00480{left:169.892162px;}
.x7a_c00480{left:173.745189px;}
.x3a_c00480{left:175.275033px;}
.x54_c00480{left:176.796000px;}
.x48_c00480{left:179.497466px;}
.x33_c00480{left:183.421073px;}
.x20_c00480{left:184.638564px;}
.x81_c00480{left:186.900494px;}
.x4b_c00480{left:189.938759px;}
.x64_c00480{left:191.033081px;}
.x75_c00480{left:192.270438px;}
.x28_c00480{left:193.364408px;}
.x50_c00480{left:196.504799px;}
.x43_c00480{left:197.720157px;}
.x1b_c00480{left:199.506291px;}
.x82_c00480{left:200.516877px;}
.x65_c00480{left:204.227472px;}
.x36_c00480{left:207.461649px;}
.x6e_c00480{left:210.808743px;}
.x13_c00480{left:212.333168px;}
.x44_c00480{left:213.476367px;}
.x7_c00480{left:217.084500px;}
.x55_c00480{left:218.644500px;}
.x84_c00480{left:219.780000px;}
.x86_c00480{left:221.321520px;}
.x2b_c00480{left:222.519554px;}
.x69_c00480{left:224.096779px;}
.x5c_c00480{left:225.915917px;}
.x3e_c00480{left:227.405522px;}
.x72_c00480{left:228.510189px;}
.x62_c00480{left:230.231141px;}
.x14_c00480{left:232.743261px;}
.x7e_c00480{left:234.015358px;}
.x6f_c00480{left:236.982981px;}
.x45_c00480{left:240.681128px;}
.x5d_c00480{left:243.654395px;}
.x6b_c00480{left:245.161676px;}
.x51_c00480{left:246.429714px;}
.x73_c00480{left:248.939948px;}
.x3b_c00480{left:250.561829px;}
.x66_c00480{left:253.148407px;}
.x21_c00480{left:256.229064px;}
.x2c_c00480{left:258.149388px;}
.x4c_c00480{left:259.793576px;}
.x8_c00480{left:262.170000px;}
.x76_c00480{left:263.392951px;}
.x34_c00480{left:266.224829px;}
.x63_c00480{left:268.069466px;}
.x15_c00480{left:269.357867px;}
.x58_c00480{left:271.283606px;}
.x1c_c00480{left:272.290781px;}
.x6a_c00480{left:274.039494px;}
.xd_c00480{left:275.908619px;}
.x46_c00480{left:280.858269px;}
.x70_c00480{left:287.267631px;}
.x16_c00480{left:289.496507px;}
.x77_c00480{left:290.836601px;}
.xe_c00480{left:293.885177px;}
.x2d_c00480{left:295.910090px;}
.x37_c00480{left:297.536367px;}
.x1d_c00480{left:300.523514px;}
.x3f_c00480{left:302.239710px;}
.x87_c00480{left:305.152320px;}
.x4d_c00480{left:307.778505px;}
.x9_c00480{left:310.072500px;}
.x22_c00480{left:312.648564px;}
.x5e_c00480{left:315.424307px;}
.x7b_c00480{left:320.018269px;}
.x2e_c00480{left:325.820150px;}
.x40_c00480{left:331.816143px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs6_c00480{font-size:51.308302pt;}
.fsf_c00480{font-size:52.288640pt;}
.fs8_c00480{font-size:53.174059pt;}
.fs9_c00480{font-size:54.106937pt;}
.fs15_c00480{font-size:54.114302pt;}
.fsa_c00480{font-size:55.972693pt;}
.fsd_c00480{font-size:56.023543pt;}
.fs18_c00480{font-size:56.025194pt;}
.fsb_c00480{font-size:56.905572pt;}
.fs7_c00480{font-size:57.838450pt;}
.fs14_c00480{font-size:57.846323pt;}
.fs10_c00480{font-size:57.890994pt;}
.fsc_c00480{font-size:58.771328pt;}
.fs16_c00480{font-size:58.826454pt;}
.fs5_c00480{font-size:59.704206pt;}
.fs11_c00480{font-size:59.758446pt;}
.fs2_c00480{font-size:59.762028pt;}
.fs13_c00480{font-size:60.645339pt;}
.fse_c00480{font-size:60.692172pt;}
.fs17_c00480{font-size:60.693961pt;}
.fs4_c00480{font-size:60.695810pt;}
.fs3_c00480{font-size:61.629592pt;}
.fs12_c00480{font-size:62.559623pt;}
.fs1_c00480{font-size:62.563373pt;}
.fs0_c00480{font-size:65.333333pt;}
.y0_c00480{bottom:0.000000pt;}
.yeb_c00480{bottom:29.758707pt;}
.yec_c00480{bottom:31.897760pt;}
.yed_c00480{bottom:32.527160pt;}
.yee_c00480{bottom:34.052213pt;}
.yef_c00480{bottom:34.477547pt;}
.yf0_c00480{bottom:35.223227pt;}
.yf1_c00480{bottom:37.420493pt;}
.ye4_c00480{bottom:44.160880pt;}
.ye5_c00480{bottom:45.379933pt;}
.ye6_c00480{bottom:46.731573pt;}
.ye7_c00480{bottom:48.425720pt;}
.ye8_c00480{bottom:48.984080pt;}
.ye9_c00480{bottom:50.231187pt;}
.yea_c00480{bottom:51.005600pt;}
.yde_c00480{bottom:58.572000pt;}
.ydf_c00480{bottom:61.019120pt;}
.ye0_c00480{bottom:61.606880pt;}
.ye1_c00480{bottom:62.957000pt;}
.ye2_c00480{bottom:63.564120pt;}
.ye3_c00480{bottom:65.177040pt;}
.yd6_c00480{bottom:73.465404pt;}
.yd7_c00480{bottom:75.134196pt;}
.yd8_c00480{bottom:75.705012pt;}
.yd9_c00480{bottom:76.787676pt;}
.yda_c00480{bottom:77.623824pt;}
.ydb_c00480{bottom:78.829056pt;}
.ydc_c00480{bottom:79.277220pt;}
.ydd_c00480{bottom:82.147788pt;}
.yce_c00480{bottom:88.577508pt;}
.ycf_c00480{bottom:89.566512pt;}
.yd0_c00480{bottom:91.741560pt;}
.yd1_c00480{bottom:92.434980pt;}
.yd2_c00480{bottom:93.301116pt;}
.yd3_c00480{bottom:94.902168pt;}
.yd4_c00480{bottom:95.462736pt;}
.yd5_c00480{bottom:97.603872pt;}
.yc6_c00480{bottom:103.932000pt;}
.yc7_c00480{bottom:105.679584pt;}
.yc8_c00480{bottom:106.346304pt;}
.yc9_c00480{bottom:107.850576pt;}
.yca_c00480{bottom:108.533952pt;}
.ycb_c00480{bottom:111.190848pt;}
.ycc_c00480{bottom:111.430800pt;}
.ycd_c00480{bottom:113.219376pt;}
.ybf_c00480{bottom:118.270429pt;}
.yc0_c00480{bottom:119.317796pt;}
.yc1_c00480{bottom:120.384591pt;}
.yc2_c00480{bottom:121.062421pt;}
.yc3_c00480{bottom:123.673009pt;}
.yc4_c00480{bottom:126.012148pt;}
.yc5_c00480{bottom:126.914415pt;}
.yb7_c00480{bottom:133.152813pt;}
.yb8_c00480{bottom:134.906235pt;}
.yb9_c00480{bottom:136.232300pt;}
.yba_c00480{bottom:136.737039pt;}
.ybb_c00480{bottom:137.342184pt;}
.ybc_c00480{bottom:139.892033pt;}
.ybd_c00480{bottom:140.564123pt;}
.ybe_c00480{bottom:141.329911pt;}
.yb0_c00480{bottom:149.478733pt;}
.yb1_c00480{bottom:151.069831pt;}
.yb2_c00480{bottom:153.080693pt;}
.yb3_c00480{bottom:153.281944pt;}
.yb4_c00480{bottom:154.803309pt;}
.yb5_c00480{bottom:155.547415pt;}
.yb6_c00480{bottom:156.977087pt;}
.ya8_c00480{bottom:163.887951pt;}
.ya9_c00480{bottom:165.998551pt;}
.yaa_c00480{bottom:167.376065pt;}
.yab_c00480{bottom:167.927933pt;}
.yac_c00480{bottom:168.393620pt;}
.yad_c00480{bottom:169.715845pt;}
.yae_c00480{bottom:170.507971pt;}
.yaf_c00480{bottom:172.230908pt;}
.ya0_c00480{bottom:179.011308pt;}
.ya1_c00480{bottom:179.981705pt;}
.ya2_c00480{bottom:180.604645pt;}
.ya3_c00480{bottom:181.104479pt;}
.ya4_c00480{bottom:182.269280pt;}
.ya5_c00480{bottom:182.816380pt;}
.ya6_c00480{bottom:184.932208pt;}
.ya7_c00480{bottom:186.397103pt;}
.y9a_c00480{bottom:194.858243pt;}
.y9b_c00480{bottom:196.895297pt;}
.y9c_c00480{bottom:198.964407pt;}
.y9d_c00480{bottom:199.292519pt;}
.y9e_c00480{bottom:200.509555pt;}
.y9f_c00480{bottom:200.833645pt;}
.y91_c00480{bottom:209.262344pt;}
.y92_c00480{bottom:209.861871pt;}
.y93_c00480{bottom:211.282805pt;}
.y94_c00480{bottom:211.641563pt;}
.y95_c00480{bottom:213.197015pt;}
.y96_c00480{bottom:214.492132pt;}
.y97_c00480{bottom:214.974116pt;}
.y98_c00480{bottom:216.016227pt;}
.y99_c00480{bottom:217.109936pt;}
.y89_c00480{bottom:224.631035pt;}
.y8a_c00480{bottom:225.423804pt;}
.y8b_c00480{bottom:225.885476pt;}
.y8c_c00480{bottom:227.175491pt;}
.y8d_c00480{bottom:229.101639pt;}
.y8e_c00480{bottom:229.947555pt;}
.y8f_c00480{bottom:230.420827pt;}
.y90_c00480{bottom:232.334949pt;}
.y82_c00480{bottom:239.756440pt;}
.y83_c00480{bottom:240.967983pt;}
.y84_c00480{bottom:241.984723pt;}
.y85_c00480{bottom:243.067815pt;}
.y86_c00480{bottom:243.419913pt;}
.y87_c00480{bottom:244.290571pt;}
.y88_c00480{bottom:246.204377pt;}
.y7a_c00480{bottom:255.122025pt;}
.y7b_c00480{bottom:256.046676pt;}
.y7c_c00480{bottom:256.726925pt;}
.y7d_c00480{bottom:257.093460pt;}
.y7e_c00480{bottom:257.548641pt;}
.y7f_c00480{bottom:258.801875pt;}
.y80_c00480{bottom:259.126493pt;}
.y81_c00480{bottom:259.952908pt;}
.y73_c00480{bottom:270.970667pt;}
.y74_c00480{bottom:271.521280pt;}
.y75_c00480{bottom:272.886484pt;}
.y76_c00480{bottom:274.264989pt;}
.y77_c00480{bottom:275.343751pt;}
.y78_c00480{bottom:276.922820pt;}
.y79_c00480{bottom:277.187996pt;}
.y6f_c00480{bottom:285.194847pt;}
.y70_c00480{bottom:288.634379pt;}
.y71_c00480{bottom:290.997909pt;}
.y72_c00480{bottom:292.686091pt;}
.y68_c00480{bottom:299.822660pt;}
.y69_c00480{bottom:301.911931pt;}
.y6a_c00480{bottom:302.287481pt;}
.y6b_c00480{bottom:304.024805pt;}
.y6c_c00480{bottom:304.703303pt;}
.y6d_c00480{bottom:306.754941pt;}
.y6e_c00480{bottom:308.163880pt;}
.y62_c00480{bottom:314.457612pt;}
.y63_c00480{bottom:316.157403pt;}
.y64_c00480{bottom:316.970475pt;}
.y65_c00480{bottom:319.301048pt;}
.y66_c00480{bottom:320.814700pt;}
.y67_c00480{bottom:322.729619pt;}
.y59_c00480{bottom:329.328781pt;}
.y5a_c00480{bottom:330.734801pt;}
.y5b_c00480{bottom:331.942997pt;}
.y5c_c00480{bottom:332.779107pt;}
.y5d_c00480{bottom:334.904279pt;}
.y5e_c00480{bottom:335.408905pt;}
.y5f_c00480{bottom:336.280840pt;}
.y60_c00480{bottom:337.567471pt;}
.y61_c00480{bottom:338.068855pt;}
.y4f_c00480{bottom:344.441217pt;}
.y50_c00480{bottom:345.253759pt;}
.y51_c00480{bottom:346.473391pt;}
.y52_c00480{bottom:347.625079pt;}
.y53_c00480{bottom:347.997761pt;}
.y54_c00480{bottom:349.727149pt;}
.y55_c00480{bottom:350.524544pt;}
.y56_c00480{bottom:351.760261pt;}
.y57_c00480{bottom:352.721960pt;}
.y58_c00480{bottom:353.590755pt;}
.y46_c00480{bottom:359.546933pt;}
.y47_c00480{bottom:360.341319pt;}
.y48_c00480{bottom:361.030079pt;}
.y49_c00480{bottom:361.441060pt;}
.y4a_c00480{bottom:362.812189pt;}
.y4b_c00480{bottom:363.336595pt;}
.y4c_c00480{bottom:363.811127pt;}
.y4d_c00480{bottom:365.212223pt;}
.y4e_c00480{bottom:366.405439pt;}
.y40_c00480{bottom:374.186596pt;}
.y41_c00480{bottom:375.658772pt;}
.y42_c00480{bottom:376.632628pt;}
.y43_c00480{bottom:377.135001pt;}
.y44_c00480{bottom:379.270751pt;}
.y45_c00480{bottom:381.755439pt;}
.y38_c00480{bottom:389.299387pt;}
.y39_c00480{bottom:390.512001pt;}
.y3a_c00480{bottom:390.869421pt;}
.y3b_c00480{bottom:391.354771pt;}
.y3c_c00480{bottom:393.155021pt;}
.y3d_c00480{bottom:393.825293pt;}
.y3e_c00480{bottom:396.109623pt;}
.y3f_c00480{bottom:396.943441pt;}
.y2e_c00480{bottom:404.653333pt;}
.y2f_c00480{bottom:406.764992pt;}
.y30_c00480{bottom:407.234453pt;}
.y31_c00480{bottom:408.510144pt;}
.y32_c00480{bottom:409.078891pt;}
.y33_c00480{bottom:410.184256pt;}
.y34_c00480{bottom:411.198741pt;}
.y35_c00480{bottom:411.698197pt;}
.y36_c00480{bottom:412.273899pt;}
.y37_c00480{bottom:413.125525pt;}
.y27_c00480{bottom:418.786516pt;}
.y28_c00480{bottom:420.531623pt;}
.y29_c00480{bottom:421.706212pt;}
.y2a_c00480{bottom:423.151851pt;}
.y2b_c00480{bottom:424.141689pt;}
.y2c_c00480{bottom:424.996680pt;}
.y2d_c00480{bottom:428.875771pt;}
.y20_c00480{bottom:434.141849pt;}
.y21_c00480{bottom:435.239621pt;}
.y22_c00480{bottom:437.260697pt;}
.y23_c00480{bottom:438.714969pt;}
.y24_c00480{bottom:439.466492pt;}
.y25_c00480{bottom:440.687685pt;}
.y26_c00480{bottom:442.242356pt;}
.y18_c00480{bottom:449.269436pt;}
.y19_c00480{bottom:449.841684pt;}
.y1a_c00480{bottom:450.539939pt;}
.y1b_c00480{bottom:451.294387pt;}
.y1c_c00480{bottom:453.516097pt;}
.y1d_c00480{bottom:454.502088pt;}
.y1e_c00480{bottom:456.637163pt;}
.y1f_c00480{bottom:457.465847pt;}
.yf_c00480{bottom:464.173815pt;}
.y10_c00480{bottom:465.622167pt;}
.y11_c00480{bottom:466.096549pt;}
.y12_c00480{bottom:467.054295pt;}
.y13_c00480{bottom:467.534640pt;}
.y14_c00480{bottom:470.042120pt;}
.y15_c00480{bottom:470.659251pt;}
.y16_c00480{bottom:471.765613pt;}
.y17_c00480{bottom:472.373929pt;}
.ya_c00480{bottom:479.292587pt;}
.yb_c00480{bottom:481.431724pt;}
.yc_c00480{bottom:481.884455pt;}
.yd_c00480{bottom:486.189131pt;}
.ye_c00480{bottom:486.668469pt;}
.y2_c00480{bottom:495.130667pt;}
.y3_c00480{bottom:495.877312pt;}
.y4_c00480{bottom:497.991099pt;}
.y5_c00480{bottom:498.377317pt;}
.y6_c00480{bottom:498.935524pt;}
.y7_c00480{bottom:500.328664pt;}
.y8_c00480{bottom:501.571020pt;}
.y9_c00480{bottom:502.891000pt;}
.y1_c00480{bottom:511.312000pt;}
.h8_c00480{height:51.308302pt;}
.h11_c00480{height:52.288640pt;}
.ha_c00480{height:53.174059pt;}
.hb_c00480{height:54.106937pt;}
.h17_c00480{height:54.114302pt;}
.hc_c00480{height:55.972693pt;}
.hf_c00480{height:56.023543pt;}
.h1a_c00480{height:56.025194pt;}
.hd_c00480{height:56.905572pt;}
.h9_c00480{height:57.838450pt;}
.h16_c00480{height:57.846323pt;}
.h12_c00480{height:57.890994pt;}
.he_c00480{height:58.771328pt;}
.h18_c00480{height:58.826454pt;}
.h7_c00480{height:59.704206pt;}
.h13_c00480{height:59.758446pt;}
.h4_c00480{height:59.762028pt;}
.h15_c00480{height:60.645339pt;}
.h10_c00480{height:60.692172pt;}
.h19_c00480{height:60.693961pt;}
.h6_c00480{height:60.695810pt;}
.h5_c00480{height:61.629592pt;}
.h14_c00480{height:62.559623pt;}
.h3_c00480{height:62.563373pt;}
.h2_c00480{height:65.333333pt;}
.h0_c00480{height:549.066667pt;}
.h1_c00480{height:549.333333pt;}
.w0_c00480{width:319.200000pt;}
.w1_c00480{width:319.333333pt;}
.x0_c00480{left:0.000000pt;}
.xa_c00480{left:15.421037pt;}
.x1e_c00480{left:16.603168pt;}
.x17_c00480{left:18.790096pt;}
.x23_c00480{left:20.415720pt;}
.x4e_c00480{left:22.103660pt;}
.x59_c00480{left:23.605957pt;}
.x2_c00480{left:25.286667pt;}
.x78_c00480{left:26.736000pt;}
.x83_c00480{left:28.956000pt;}
.x18_c00480{left:36.130355pt;}
.x5f_c00480{left:39.731453pt;}
.x3c_c00480{left:42.544411pt;}
.x52_c00480{left:43.554667pt;}
.x3_c00480{left:49.372000pt;}
.x1f_c00480{left:52.015168pt;}
.x7c_c00480{left:52.979988pt;}
.x56_c00480{left:53.973187pt;}
.x2f_c00480{left:56.232409pt;}
.x19_c00480{left:57.277032pt;}
.xf_c00480{left:58.732663pt;}
.x41_c00480{left:60.071243pt;}
.x24_c00480{left:62.975868pt;}
.x5a_c00480{left:65.390053pt;}
.x7f_c00480{left:66.377232pt;}
.x30_c00480{left:67.765249pt;}
.x47_c00480{left:69.821085pt;}
.x10_c00480{left:72.700715pt;}
.x79_c00480{left:75.231456pt;}
.x57_c00480{left:79.178656pt;}
.x1a_c00480{left:80.150293pt;}
.x74_c00480{left:82.039665pt;}
.x31_c00480{left:83.416761pt;}
.x49_c00480{left:84.313748pt;}
.x60_c00480{left:85.554119pt;}
.xb_c00480{left:86.707228pt;}
.x38_c00480{left:88.173720pt;}
.x25_c00480{left:91.609648pt;}
.x42_c00480{left:93.585381pt;}
.x4a_c00480{left:95.663336pt;}
.x61_c00480{left:97.142795pt;}
.x35_c00480{left:99.387396pt;}
.x11_c00480{left:100.883444pt;}
.xc_c00480{left:101.785016pt;}
.x71_c00480{left:104.209764pt;}
.x29_c00480{left:105.706007pt;}
.x5b_c00480{left:108.400816pt;}
.x53_c00480{left:109.617333pt;}
.x80_c00480{left:111.002928pt;}
.x4f_c00480{left:112.539751pt;}
.x12_c00480{left:115.000788pt;}
.x85_c00480{left:116.264067pt;}
.x4_c00480{left:117.558667pt;}
.x67_c00480{left:118.507828pt;}
.x3d_c00480{left:125.627929pt;}
.x26_c00480{left:126.877403pt;}
.x7d_c00480{left:128.397732pt;}
.x5_c00480{left:130.017333pt;}
.x1_c00480{left:132.240000pt;}
.x6c_c00480{left:133.552895pt;}
.x68_c00480{left:135.072561pt;}
.x39_c00480{left:137.097692pt;}
.x6d_c00480{left:139.848353pt;}
.x32_c00480{left:141.449883pt;}
.x2a_c00480{left:145.531475pt;}
.x6_c00480{left:148.024000pt;}
.x27_c00480{left:151.015255pt;}
.x7a_c00480{left:154.440168pt;}
.x3a_c00480{left:155.800029pt;}
.x54_c00480{left:157.152000pt;}
.x48_c00480{left:159.553303pt;}
.x33_c00480{left:163.040953pt;}
.x20_c00480{left:164.123168pt;}
.x81_c00480{left:166.133772pt;}
.x4b_c00480{left:168.834452pt;}
.x64_c00480{left:169.807183pt;}
.x75_c00480{left:170.907056pt;}
.x28_c00480{left:171.879473pt;}
.x50_c00480{left:174.670932pt;}
.x43_c00480{left:175.751251pt;}
.x1b_c00480{left:177.338925pt;}
.x82_c00480{left:178.237224pt;}
.x65_c00480{left:181.535531pt;}
.x36_c00480{left:184.410355pt;}
.x6e_c00480{left:187.385549pt;}
.x13_c00480{left:188.740593pt;}
.x44_c00480{left:189.756771pt;}
.x7_c00480{left:192.964000pt;}
.x55_c00480{left:194.350667pt;}
.x84_c00480{left:195.360000pt;}
.x86_c00480{left:196.730240pt;}
.x2b_c00480{left:197.795159pt;}
.x69_c00480{left:199.197137pt;}
.x5c_c00480{left:200.814148pt;}
.x3e_c00480{left:202.138241pt;}
.x72_c00480{left:203.120168pt;}
.x62_c00480{left:204.649903pt;}
.x14_c00480{left:206.882899pt;}
.x7e_c00480{left:208.013652pt;}
.x6f_c00480{left:210.651539pt;}
.x45_c00480{left:213.938780pt;}
.x5d_c00480{left:216.581684pt;}
.x6b_c00480{left:217.921489pt;}
.x51_c00480{left:219.048635pt;}
.x73_c00480{left:221.279953pt;}
.x3b_c00480{left:222.721625pt;}
.x66_c00480{left:225.020807pt;}
.x21_c00480{left:227.759168pt;}
.x2c_c00480{left:229.466123pt;}
.x4c_c00480{left:230.927623pt;}
.x8_c00480{left:233.040000pt;}
.x76_c00480{left:234.127068pt;}
.x34_c00480{left:236.644292pt;}
.x63_c00480{left:238.283969pt;}
.x15_c00480{left:239.429215pt;}
.x58_c00480{left:241.140983pt;}
.x1c_c00480{left:242.036249pt;}
.x6a_c00480{left:243.590661pt;}
.xd_c00480{left:245.252105pt;}
.x46_c00480{left:249.651795pt;}
.x70_c00480{left:255.349005pt;}
.x16_c00480{left:257.330228pt;}
.x77_c00480{left:258.521423pt;}
.xe_c00480{left:261.231268pt;}
.x2d_c00480{left:263.031191pt;}
.x37_c00480{left:264.476771pt;}
.x1d_c00480{left:267.132012pt;}
.x3f_c00480{left:268.657520pt;}
.x87_c00480{left:271.246507pt;}
.x4d_c00480{left:273.580893pt;}
.x9_c00480{left:275.620000pt;}
.x22_c00480{left:277.909835pt;}
.x5e_c00480{left:280.377161pt;}
.x7b_c00480{left:284.460684pt;}
.x2e_c00480{left:289.617911pt;}
.x40_c00480{left:294.947683pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00481 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00481 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00481 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00481 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00481{transform:matrix(0.008430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008430,0.000000,0.000000,0.250000,0,0);}
.m41_c00481{transform:matrix(0.008815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008815,0.000000,0.000000,0.250000,0,0);}
.m90_c00481{transform:matrix(0.009855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009855,0.000000,0.000000,0.250000,0,0);}
.mc2_c00481{transform:matrix(0.012855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012855,0.000000,0.000000,0.250000,0,0);}
.md3_c00481{transform:matrix(0.031874,0.000606,-0.004749,0.249955,0,0);-ms-transform:matrix(0.031874,0.000606,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.031874,0.000606,-0.004749,0.249955,0,0);}
.m8c_c00481{transform:matrix(0.033060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033060,0.000000,0.000000,0.250000,0,0);}
.m39_c00481{transform:matrix(0.105415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105415,0.000000,0.000000,0.250000,0,0);}
.mc3_c00481{transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);}
.m42_c00481{transform:matrix(0.109570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109570,0.000000,0.000000,0.250000,0,0);}
.m8d_c00481{transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);}
.maa_c00481{transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);}
.m2f_c00481{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.m40_c00481{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.mbc_c00481{transform:matrix(0.144345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144345,0.000000,0.000000,0.250000,0,0);}
.m63_c00481{transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);}
.mbe_c00481{transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00481{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00481{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m29_c00481{transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);}
.m69_c00481{transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);}
.m89_c00481{transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00481{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m86_c00481{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m97_c00481{transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154735,0.000000,0.000000,0.250000,0,0);}
.m83_c00481{transform:matrix(0.155160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155160,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.156630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156630,0.000000,0.000000,0.250000,0,0);}
.me6_c00481{transform:matrix(0.157057,0.002670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157057,0.002670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157057,0.002670,-0.004249,0.249964,0,0);}
.m62_c00481{transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);}
.m26_c00481{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.m31_c00481{transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160210,0.000000,0.000000,0.250000,0,0);}
.m44_c00481{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m17_c00481{transform:matrix(0.162865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162865,0.000000,0.000000,0.250000,0,0);}
.m4a_c00481{transform:matrix(0.163860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163860,0.000000,0.000000,0.250000,0,0);}
.m16_c00481{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m5d_c00481{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00481{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00481{transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166280,0.000000,0.000000,0.250000,0,0);}
.m3e_c00481{transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);}
.mcd_c00481{transform:matrix(0.167010,0.003173,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167010,0.003173,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167010,0.003173,-0.004749,0.249955,0,0);}
.me1_c00481{transform:matrix(0.167596,0.002849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167596,0.002849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167596,0.002849,-0.004249,0.249964,0,0);}
.m0_c00481{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);}
.m46_c00481{transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169370,0.000000,0.000000,0.250000,0,0);}
.m95_c00481{transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00481{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m68_c00481{transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172335,0.000000,0.000000,0.250000,0,0);}
.m6f_c00481{transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172390,0.000000,0.000000,0.250000,0,0);}
.m78_c00481{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00481{transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);}
.m6b_c00481{transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);}
.m61_c00481{transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);}
.m1e_c00481{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.mdc_c00481{transform:matrix(0.174460,0.002966,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174460,0.002966,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174460,0.002966,-0.004249,0.249964,0,0);}
.m1f_c00481{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175335,0.000000,0.000000,0.250000,0,0);}
.ma7_c00481{transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);}
.m33_c00481{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.mc7_c00481{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.mda_c00481{transform:matrix(0.177099,0.003011,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177099,0.003011,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177099,0.003011,-0.004249,0.249964,0,0);}
.mb2_c00481{transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177130,0.000000,0.000000,0.250000,0,0);}
.m75_c00481{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m74_c00481{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178630,0.000000,0.000000,0.250000,0,0);}
.m82_c00481{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00481{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m87_c00481{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.maf_c00481{transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180035,0.000000,0.000000,0.250000,0,0);}
.m72_c00481{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00481{transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);}
.m3d_c00481{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.mcf_c00481{transform:matrix(0.180667,0.003433,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180667,0.003433,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180667,0.003433,-0.004749,0.249955,0,0);}
.m24_c00481{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m32_c00481{transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180990,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.181310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181310,0.000000,0.000000,0.250000,0,0);}
.m15_c00481{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.m28_c00481{transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181665,0.000000,0.000000,0.250000,0,0);}
.mba_c00481{transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);}
.m60_c00481{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181790,0.000000,0.000000,0.250000,0,0);}
.ma8_c00481{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m92_c00481{transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);}
.m22_c00481{transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182845,0.000000,0.000000,0.250000,0,0);}
.ma3_c00481{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00481{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.mc6_c00481{transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183385,0.000000,0.000000,0.250000,0,0);}
.mb4_c00481{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00481{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.m48_c00481{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m79_c00481{transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);}
.mbb_c00481{transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185415,0.000000,0.000000,0.250000,0,0);}
.m6c_c00481{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00481{transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185985,0.000000,0.000000,0.250000,0,0);}
.mbd_c00481{transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186055,0.000000,0.000000,0.250000,0,0);}
.mdb_c00481{transform:matrix(0.186578,0.003172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186578,0.003172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186578,0.003172,-0.004249,0.249964,0,0);}
.md0_c00481{transform:matrix(0.186616,0.003546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186616,0.003546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186616,0.003546,-0.004749,0.249955,0,0);}
.m23_c00481{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m27_c00481{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m52_c00481{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189105,0.000000,0.000000,0.250000,0,0);}
.m93_c00481{transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189220,0.000000,0.000000,0.250000,0,0);}
.m18_c00481{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.m25_c00481{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m7d_c00481{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.m7a_c00481{transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190240,0.000000,0.000000,0.250000,0,0);}
.m59_c00481{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00481{transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190445,0.000000,0.000000,0.250000,0,0);}
.m1b_c00481{transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);}
.m55_c00481{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.mcc_c00481{transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191086,0.003631,-0.004749,0.249955,0,0);}
.m30_c00481{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m1a_c00481{transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192765,0.000000,0.000000,0.250000,0,0);}
.m64_c00481{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.mb0_c00481{transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);}
.mc4_c00481{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.ma5_c00481{transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);}
.mab_c00481{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.m76_c00481{transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194055,0.000000,0.000000,0.250000,0,0);}
.m50_c00481{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m84_c00481{transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00481{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00481{transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195180,0.000000,0.000000,0.250000,0,0);}
.me0_c00481{transform:matrix(0.195672,0.003326,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195672,0.003326,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195672,0.003326,-0.004249,0.249964,0,0);}
.md6_c00481{transform:matrix(0.195747,0.003328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195747,0.003328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195747,0.003328,-0.004249,0.249964,0,0);}
.m13_c00481{transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196245,0.000000,0.000000,0.250000,0,0);}
.m3b_c00481{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.mb6_c00481{transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197285,0.000000,0.000000,0.250000,0,0);}
.m49_c00481{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m8e_c00481{transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);}
.me7_c00481{transform:matrix(0.198781,0.003379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198781,0.003379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198781,0.003379,-0.004249,0.249964,0,0);}
.m73_c00481{transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);}
.mb5_c00481{transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199090,0.000000,0.000000,0.250000,0,0);}
.mce_c00481{transform:matrix(0.199679,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199679,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199679,0.003794,-0.004749,0.249955,0,0);}
.me5_c00481{transform:matrix(0.199691,0.003395,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199691,0.003395,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199691,0.003395,-0.004249,0.249964,0,0);}
.m20_c00481{transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);}
.m9a_c00481{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m45_c00481{transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);}
.m35_c00481{transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200510,0.000000,0.000000,0.250000,0,0);}
.m5b_c00481{transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200680,0.000000,0.000000,0.250000,0,0);}
.mc8_c00481{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00481{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.m21_c00481{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.md7_c00481{transform:matrix(0.202951,0.003450,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202951,0.003450,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202951,0.003450,-0.004249,0.249964,0,0);}
.m5c_c00481{transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203145,0.000000,0.000000,0.250000,0,0);}
.m4e_c00481{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.me2_c00481{transform:matrix(0.203256,0.003455,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203256,0.003455,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203256,0.003455,-0.004249,0.249964,0,0);}
.m70_c00481{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00481{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m9d_c00481{transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);}
.m38_c00481{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m65_c00481{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.m6e_c00481{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.me4_c00481{transform:matrix(0.205620,0.003496,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205620,0.003496,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205620,0.003496,-0.004249,0.249964,0,0);}
.mb3_c00481{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00481{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m99_c00481{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m5a_c00481{transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206885,0.000000,0.000000,0.250000,0,0);}
.mdf_c00481{transform:matrix(0.206970,0.003518,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206970,0.003518,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206970,0.003518,-0.004249,0.249964,0,0);}
.m47_c00481{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00481{transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207540,0.000000,0.000000,0.250000,0,0);}
.m71_c00481{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m51_c00481{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00481{transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);}
.mca_c00481{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.m56_c00481{transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);}
.m96_c00481{transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00481{transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211745,0.000000,0.000000,0.250000,0,0);}
.m53_c00481{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.mdd_c00481{transform:matrix(0.212259,0.003608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212259,0.003608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212259,0.003608,-0.004249,0.249964,0,0);}
.me3_c00481{transform:matrix(0.213669,0.003632,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213669,0.003632,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213669,0.003632,-0.004249,0.249964,0,0);}
.m7e_c00481{transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214405,0.000000,0.000000,0.250000,0,0);}
.md9_c00481{transform:matrix(0.216269,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216269,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216269,0.003677,-0.004249,0.249964,0,0);}
.m85_c00481{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.ma4_c00481{transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216655,0.000000,0.000000,0.250000,0,0);}
.mae_c00481{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00481{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.m4d_c00481{transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219035,0.000000,0.000000,0.250000,0,0);}
.mde_c00481{transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);}
.mb9_c00481{transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);}
.mc5_c00481{transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);}
.m9e_c00481{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m57_c00481{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m88_c00481{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.ma1_c00481{transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);}
.mb1_c00481{transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);}
.m54_c00481{transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00481{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00481{transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);}
.m7c_c00481{transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);}
.md8_c00481{transform:matrix(0.225802,0.003839,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225802,0.003839,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225802,0.003839,-0.004249,0.249964,0,0);}
.m77_c00481{transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226130,0.000000,0.000000,0.250000,0,0);}
.m9c_c00481{transform:matrix(0.226730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226730,0.000000,0.000000,0.250000,0,0);}
.mac_c00481{transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);}
.m91_c00481{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.m37_c00481{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m98_c00481{transform:matrix(0.232920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232920,0.000000,0.000000,0.250000,0,0);}
.m66_c00481{transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234605,0.000000,0.000000,0.250000,0,0);}
.mb8_c00481{transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);}
.md5_c00481{transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);}
.m34_c00481{transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);}
.m3a_c00481{transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239770,0.000000,0.000000,0.250000,0,0);}
.m4c_c00481{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m80_c00481{transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);}
.m58_c00481{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.mad_c00481{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m9f_c00481{transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);}
.m67_c00481{transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);}
.m94_c00481{transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.261455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261455,0.000000,0.000000,0.250000,0,0);}
.md2_c00481{transform:matrix(0.262223,0.004982,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262223,0.004982,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262223,0.004982,-0.004749,0.249955,0,0);}
.m7b_c00481{transform:matrix(0.265540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265540,0.000000,0.000000,0.250000,0,0);}
.m8a_c00481{transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);}
.md1_c00481{transform:matrix(0.266212,0.005058,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266212,0.005058,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266212,0.005058,-0.004749,0.249955,0,0);}
.md4_c00481{transform:matrix(0.285229,0.004849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285229,0.004849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285229,0.004849,-0.004249,0.249964,0,0);}
.m8b_c00481{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m2c_c00481{transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);}
.m2b_c00481{transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);}
.m81_c00481{transform:matrix(0.354375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354375,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.430310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430310,0.000000,0.000000,0.250000,0,0);}
.m43_c00481{transform:matrix(0.441510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441510,0.000000,0.000000,0.250000,0,0);}
.mc0_c00481{transform:matrix(0.458025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458025,0.000000,0.000000,0.250000,0,0);}
.m36_c00481{transform:matrix(0.463725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463725,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:0.000000px;}
.fc0_c00481{color:transparent;}
.fsd_c00481{font-size:52.500000px;}
.fs5_c00481{font-size:57.750000px;}
.fs6_c00481{font-size:58.800000px;}
.fs10_c00481{font-size:58.808496px;}
.fsc_c00481{font-size:60.900000px;}
.fs11_c00481{font-size:60.908799px;}
.fs9_c00481{font-size:61.950000px;}
.fs4_c00481{font-size:63.000000px;}
.fse_c00481{font-size:64.050000px;}
.fs7_c00481{font-size:65.100000px;}
.fsf_c00481{font-size:66.161939px;}
.fs2_c00481{font-size:67.200000px;}
.fs3_c00481{font-size:68.250000px;}
.fsa_c00481{font-size:69.300000px;}
.fs8_c00481{font-size:72.450000px;}
.fs1_c00481{font-size:73.500000px;}
.fsb_c00481{font-size:74.550000px;}
.fs0_c00481{font-size:77.700000px;}
.y0_c00481{bottom:0.000000px;}
.ye6_c00481{bottom:33.656274px;}
.ye5_c00481{bottom:34.022370px;}
.ye4_c00481{bottom:35.719164px;}
.ye3_c00481{bottom:36.134923px;}
.ye2_c00481{bottom:38.108100px;}
.ye1_c00481{bottom:39.464021px;}
.ye0_c00481{bottom:39.958537px;}
.ydf_c00481{bottom:54.119242px;}
.yde_c00481{bottom:54.119582px;}
.ydb_c00481{bottom:54.119667px;}
.ydd_c00481{bottom:54.119759px;}
.yda_c00481{bottom:54.120006px;}
.ydc_c00481{bottom:54.120138px;}
.yd9_c00481{bottom:54.120320px;}
.yd8_c00481{bottom:68.587615px;}
.yd7_c00481{bottom:69.565133px;}
.yd6_c00481{bottom:70.519801px;}
.yd5_c00481{bottom:70.835211px;}
.yd4_c00481{bottom:71.993217px;}
.yd3_c00481{bottom:73.173000px;}
.yd2_c00481{bottom:83.813685px;}
.yd1_c00481{bottom:84.274758px;}
.yd0_c00481{bottom:84.756294px;}
.ycf_c00481{bottom:85.124514px;}
.yce_c00481{bottom:86.011748px;}
.ycd_c00481{bottom:87.434268px;}
.ycc_c00481{bottom:88.664556px;}
.ycb_c00481{bottom:89.644500px;}
.yca_c00481{bottom:102.880500px;}
.yc9_c00481{bottom:103.174500px;}
.yc8_c00481{bottom:104.272500px;}
.yc7_c00481{bottom:104.596500px;}
.yc6_c00481{bottom:105.279000px;}
.yc5_c00481{bottom:105.646500px;}
.yc4_c00481{bottom:106.267500px;}
.yc3_c00481{bottom:106.878000px;}
.yc2_c00481{bottom:107.196000px;}
.yc1_c00481{bottom:122.494500px;}
.yc0_c00481{bottom:135.187500px;}
.ybf_c00481{bottom:135.736500px;}
.ybe_c00481{bottom:136.122000px;}
.ybd_c00481{bottom:137.958000px;}
.ybc_c00481{bottom:140.679000px;}
.ybb_c00481{bottom:153.876000px;}
.yba_c00481{bottom:154.842000px;}
.yb9_c00481{bottom:155.074500px;}
.yb8_c00481{bottom:156.111000px;}
.yb7_c00481{bottom:157.048500px;}
.yb6_c00481{bottom:157.957500px;}
.yb5_c00481{bottom:170.305500px;}
.yb4_c00481{bottom:170.635500px;}
.yb3_c00481{bottom:171.838500px;}
.yb2_c00481{bottom:172.770000px;}
.yb1_c00481{bottom:173.151000px;}
.yb0_c00481{bottom:174.697500px;}
.yaf_c00481{bottom:185.859000px;}
.yae_c00481{bottom:186.978000px;}
.yad_c00481{bottom:187.747500px;}
.yac_c00481{bottom:188.002500px;}
.yab_c00481{bottom:189.144000px;}
.yaa_c00481{bottom:190.188000px;}
.ya9_c00481{bottom:190.596000px;}
.ya8_c00481{bottom:190.984500px;}
.ya7_c00481{bottom:191.977500px;}
.ya6_c00481{bottom:204.688500px;}
.ya5_c00481{bottom:205.524000px;}
.ya4_c00481{bottom:206.286000px;}
.ya3_c00481{bottom:207.289500px;}
.ya2_c00481{bottom:207.844500px;}
.ya1_c00481{bottom:209.233500px;}
.ya0_c00481{bottom:210.334500px;}
.y9f_c00481{bottom:221.161500px;}
.y9e_c00481{bottom:221.956500px;}
.y9d_c00481{bottom:222.159000px;}
.y9c_c00481{bottom:222.766500px;}
.y9b_c00481{bottom:224.488500px;}
.y9a_c00481{bottom:225.562500px;}
.y99_c00481{bottom:225.927000px;}
.y98_c00481{bottom:227.344500px;}
.y97_c00481{bottom:239.991000px;}
.y96_c00481{bottom:240.421500px;}
.y95_c00481{bottom:241.227000px;}
.y94_c00481{bottom:241.500000px;}
.y93_c00481{bottom:243.537000px;}
.y92_c00481{bottom:254.331000px;}
.y91_c00481{bottom:254.728500px;}
.y90_c00481{bottom:255.573000px;}
.y8f_c00481{bottom:255.976500px;}
.y8e_c00481{bottom:256.839000px;}
.y8d_c00481{bottom:258.345000px;}
.y8c_c00481{bottom:260.284500px;}
.y8b_c00481{bottom:272.241000px;}
.y8a_c00481{bottom:272.427000px;}
.y89_c00481{bottom:273.658500px;}
.y88_c00481{bottom:273.982500px;}
.y87_c00481{bottom:274.189500px;}
.y86_c00481{bottom:274.906500px;}
.y85_c00481{bottom:275.271000px;}
.y84_c00481{bottom:275.893500px;}
.y83_c00481{bottom:276.075000px;}
.y82_c00481{bottom:276.753000px;}
.y81_c00481{bottom:289.062000px;}
.y80_c00481{bottom:289.294500px;}
.y7f_c00481{bottom:290.224500px;}
.y7e_c00481{bottom:290.730000px;}
.y7d_c00481{bottom:291.856500px;}
.y7c_c00481{bottom:292.512000px;}
.y7b_c00481{bottom:293.431500px;}
.y7a_c00481{bottom:294.043500px;}
.y79_c00481{bottom:294.333000px;}
.y78_c00481{bottom:294.843000px;}
.y77_c00481{bottom:306.228000px;}
.y76_c00481{bottom:306.525000px;}
.y75_c00481{bottom:307.507500px;}
.y74_c00481{bottom:307.930500px;}
.y73_c00481{bottom:308.425500px;}
.y72_c00481{bottom:309.631500px;}
.y71_c00481{bottom:310.063500px;}
.y70_c00481{bottom:310.923000px;}
.y6f_c00481{bottom:311.311500px;}
.y6e_c00481{bottom:324.612000px;}
.y6d_c00481{bottom:325.930500px;}
.y6c_c00481{bottom:326.619000px;}
.y6b_c00481{bottom:326.908500px;}
.y6a_c00481{bottom:327.778500px;}
.y69_c00481{bottom:341.029500px;}
.y68_c00481{bottom:341.815500px;}
.y67_c00481{bottom:342.015000px;}
.y66_c00481{bottom:343.279500px;}
.y65_c00481{bottom:343.633500px;}
.y64_c00481{bottom:344.463000px;}
.y63_c00481{bottom:344.790000px;}
.y62_c00481{bottom:357.736500px;}
.y61_c00481{bottom:358.090500px;}
.y60_c00481{bottom:358.936500px;}
.y5f_c00481{bottom:359.385000px;}
.y5e_c00481{bottom:360.483000px;}
.y5d_c00481{bottom:361.524000px;}
.y5c_c00481{bottom:362.103000px;}
.y5b_c00481{bottom:362.613000px;}
.y5a_c00481{bottom:374.817000px;}
.y59_c00481{bottom:375.295500px;}
.y58_c00481{bottom:375.681000px;}
.y57_c00481{bottom:377.053500px;}
.y56_c00481{bottom:377.473500px;}
.y55_c00481{bottom:378.658500px;}
.y54_c00481{bottom:378.999000px;}
.y53_c00481{bottom:380.166000px;}
.y52_c00481{bottom:390.172500px;}
.y51_c00481{bottom:391.780500px;}
.y50_c00481{bottom:393.141000px;}
.y4f_c00481{bottom:394.605000px;}
.y4e_c00481{bottom:395.226000px;}
.y4d_c00481{bottom:396.096000px;}
.y4c_c00481{bottom:407.305500px;}
.y4b_c00481{bottom:407.787000px;}
.y4a_c00481{bottom:408.097500px;}
.y49_c00481{bottom:408.898500px;}
.y48_c00481{bottom:409.729500px;}
.y47_c00481{bottom:410.302500px;}
.y46_c00481{bottom:412.510500px;}
.y45_c00481{bottom:413.103000px;}
.y44_c00481{bottom:425.749500px;}
.y43_c00481{bottom:426.991500px;}
.y42_c00481{bottom:427.339500px;}
.y41_c00481{bottom:428.778000px;}
.y40_c00481{bottom:430.513500px;}
.y3f_c00481{bottom:430.923000px;}
.y3e_c00481{bottom:442.149000px;}
.y3d_c00481{bottom:442.461000px;}
.y3c_c00481{bottom:443.025000px;}
.y3b_c00481{bottom:443.262000px;}
.y3a_c00481{bottom:443.421000px;}
.y39_c00481{bottom:444.369000px;}
.y38_c00481{bottom:444.763500px;}
.y37_c00481{bottom:445.708500px;}
.y36_c00481{bottom:446.011500px;}
.y35_c00481{bottom:446.580000px;}
.y34_c00481{bottom:459.069000px;}
.y33_c00481{bottom:460.312500px;}
.y32_c00481{bottom:460.708500px;}
.y31_c00481{bottom:461.467500px;}
.y30_c00481{bottom:461.841000px;}
.y2f_c00481{bottom:462.891000px;}
.y2e_c00481{bottom:463.482000px;}
.y2d_c00481{bottom:463.720500px;}
.y2c_c00481{bottom:464.671500px;}
.y2b_c00481{bottom:475.050000px;}
.y2a_c00481{bottom:475.597500px;}
.y29_c00481{bottom:476.943000px;}
.y28_c00481{bottom:478.041000px;}
.y27_c00481{bottom:478.441500px;}
.y26_c00481{bottom:478.816500px;}
.y25_c00481{bottom:480.063000px;}
.y24_c00481{bottom:492.807000px;}
.y23_c00481{bottom:493.347000px;}
.y22_c00481{bottom:493.999500px;}
.y21_c00481{bottom:494.391000px;}
.y20_c00481{bottom:494.601000px;}
.y1f_c00481{bottom:494.850000px;}
.y1e_c00481{bottom:495.310500px;}
.y1d_c00481{bottom:496.260000px;}
.y1c_c00481{bottom:509.001000px;}
.y1b_c00481{bottom:509.943000px;}
.y1a_c00481{bottom:510.123000px;}
.y19_c00481{bottom:511.273500px;}
.y18_c00481{bottom:512.302500px;}
.y17_c00481{bottom:512.716500px;}
.y16_c00481{bottom:513.543000px;}
.y15_c00481{bottom:525.426000px;}
.y14_c00481{bottom:526.053000px;}
.y13_c00481{bottom:527.580000px;}
.y12_c00481{bottom:527.968500px;}
.y11_c00481{bottom:529.173000px;}
.y10_c00481{bottom:530.199000px;}
.yf_c00481{bottom:531.096000px;}
.ye_c00481{bottom:543.759000px;}
.yd_c00481{bottom:544.543500px;}
.yc_c00481{bottom:545.337000px;}
.yb_c00481{bottom:546.007500px;}
.ya_c00481{bottom:546.673500px;}
.y9_c00481{bottom:547.834500px;}
.y8_c00481{bottom:559.333500px;}
.y7_c00481{bottom:559.743000px;}
.y6_c00481{bottom:560.331000px;}
.y5_c00481{bottom:561.918000px;}
.y4_c00481{bottom:562.486500px;}
.y3_c00481{bottom:564.106500px;}
.y2_c00481{bottom:564.846000px;}
.y1_c00481{bottom:575.662500px;}
.hf_c00481{height:52.500000px;}
.h7_c00481{height:57.750000px;}
.h8_c00481{height:58.800000px;}
.h12_c00481{height:58.808496px;}
.he_c00481{height:60.900000px;}
.h13_c00481{height:60.908799px;}
.hb_c00481{height:61.950000px;}
.h6_c00481{height:63.000000px;}
.h10_c00481{height:64.050000px;}
.h9_c00481{height:65.100000px;}
.h11_c00481{height:66.161939px;}
.h4_c00481{height:67.200000px;}
.h5_c00481{height:68.250000px;}
.hc_c00481{height:69.300000px;}
.ha_c00481{height:72.450000px;}
.h3_c00481{height:73.500000px;}
.hd_c00481{height:74.550000px;}
.h2_c00481{height:77.700000px;}
.h0_c00481{height:617.700000px;}
.h1_c00481{height:618.000000px;}
.w0_c00481{width:359.100000px;}
.w1_c00481{width:359.250000px;}
.x0_c00481{left:0.000000px;}
.x7c_c00481{left:25.177500px;}
.x71_c00481{left:26.241000px;}
.x6a_c00481{left:27.265500px;}
.x60_c00481{left:28.707000px;}
.x1d_c00481{left:29.788500px;}
.x30_c00481{left:30.918000px;}
.x3b_c00481{left:32.839500px;}
.x9_c00481{left:34.344000px;}
.x16_c00481{left:37.056000px;}
.x2_c00481{left:38.616000px;}
.xf_c00481{left:39.705000px;}
.x52_c00481{left:52.710000px;}
.x38_c00481{left:54.057000px;}
.x4e_c00481{left:56.259000px;}
.x3c_c00481{left:61.018500px;}
.x31_c00481{left:64.320000px;}
.x57_c00481{left:68.610000px;}
.x43_c00481{left:74.338500px;}
.x3_c00481{left:75.591000px;}
.x72_c00481{left:76.744500px;}
.x29_c00481{left:80.226000px;}
.x32_c00481{left:82.167000px;}
.x79_c00481{left:83.470500px;}
.x10_c00481{left:84.517500px;}
.x46_c00481{left:86.701500px;}
.x17_c00481{left:88.669500px;}
.x62_c00481{left:89.725500px;}
.x2a_c00481{left:91.584000px;}
.x6b_c00481{left:93.111000px;}
.x7d_c00481{left:94.576500px;}
.x50_c00481{left:97.353000px;}
.x53_c00481{left:100.494000px;}
.xa_c00481{left:102.675000px;}
.x24_c00481{left:103.680000px;}
.x63_c00481{left:105.567000px;}
.x1e_c00481{left:108.903000px;}
.x80_c00481{left:111.306453px;}
.x6c_c00481{left:112.560000px;}
.x18_c00481{left:114.522000px;}
.x51_c00481{left:118.074000px;}
.x2b_c00481{left:119.713500px;}
.x25_c00481{left:123.414000px;}
.x54_c00481{left:124.536000px;}
.x5a_c00481{left:126.700500px;}
.x73_c00481{left:128.803500px;}
.x11_c00481{left:135.829500px;}
.x33_c00481{left:137.752500px;}
.xb_c00481{left:141.846000px;}
.x26_c00481{left:144.477000px;}
.x1f_c00481{left:147.312000px;}
.x4a_c00481{left:150.205500px;}
.x64_c00481{left:152.289000px;}
.x66_c00481{left:153.453000px;}
.x4_c00481{left:156.597000px;}
.x47_c00481{left:159.298500px;}
.x34_c00481{left:160.984500px;}
.x6d_c00481{left:162.252000px;}
.x3d_c00481{left:166.149000px;}
.x20_c00481{left:168.057000px;}
.x2c_c00481{left:169.704000px;}
.x44_c00481{left:173.655000px;}
.x1_c00481{left:177.120000px;}
.x19_c00481{left:178.809000px;}
.xc_c00481{left:181.249500px;}
.x5e_c00481{left:183.016500px;}
.x5_c00481{left:184.995000px;}
.x74_c00481{left:186.363000px;}
.x2d_c00481{left:187.504500px;}
.x55_c00481{left:191.547000px;}
.x3e_c00481{left:193.419000px;}
.x78_c00481{left:195.028500px;}
.x12_c00481{left:196.032000px;}
.x81_c00481{left:197.102206px;}
.x75_c00481{left:199.303500px;}
.x70_c00481{left:201.205500px;}
.x27_c00481{left:202.282500px;}
.x5b_c00481{left:207.166500px;}
.x4b_c00481{left:211.176000px;}
.x39_c00481{left:212.802000px;}
.x13_c00481{left:215.475000px;}
.x35_c00481{left:216.757500px;}
.x21_c00481{left:218.280000px;}
.x5f_c00481{left:220.495500px;}
.x77_c00481{left:221.938500px;}
.x2e_c00481{left:223.668000px;}
.x36_c00481{left:226.135500px;}
.xd_c00481{left:227.937000px;}
.x3a_c00481{left:230.221500px;}
.x67_c00481{left:231.424500px;}
.x3f_c00481{left:232.995000px;}
.x4c_c00481{left:236.091000px;}
.x7e_c00481{left:237.405000px;}
.x45_c00481{left:238.438500px;}
.x37_c00481{left:240.117000px;}
.x2f_c00481{left:242.503500px;}
.x48_c00481{left:244.642500px;}
.x1a_c00481{left:250.714500px;}
.x65_c00481{left:253.609500px;}
.x76_c00481{left:254.880000px;}
.x4f_c00481{left:259.849500px;}
.x1b_c00481{left:261.969000px;}
.x49_c00481{left:262.999500px;}
.x6_c00481{left:264.337500px;}
.x6e_c00481{left:265.398000px;}
.x68_c00481{left:269.550000px;}
.x40_c00481{left:271.110000px;}
.x22_c00481{left:272.601000px;}
.xe_c00481{left:274.111500px;}
.x61_c00481{left:281.958000px;}
.x4d_c00481{left:283.090500px;}
.x41_c00481{left:285.903000px;}
.x7a_c00481{left:289.168500px;}
.x7f_c00481{left:290.827930px;}
.x14_c00481{left:291.843000px;}
.x7_c00481{left:293.772000px;}
.x58_c00481{left:294.855000px;}
.x56_c00481{left:297.039000px;}
.x28_c00481{left:301.887000px;}
.x5c_c00481{left:304.380000px;}
.x59_c00481{left:305.908500px;}
.x42_c00481{left:308.854500px;}
.x69_c00481{left:311.346000px;}
.x8_c00481{left:314.272500px;}
.x5d_c00481{left:315.970500px;}
.x23_c00481{left:317.649000px;}
.x6f_c00481{left:318.709500px;}
.x1c_c00481{left:320.823000px;}
.x15_c00481{left:323.178000px;}
.x7b_c00481{left:338.779500px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fsd_c00481{font-size:46.666667pt;}
.fs5_c00481{font-size:51.333333pt;}
.fs6_c00481{font-size:52.266667pt;}
.fs10_c00481{font-size:52.274219pt;}
.fsc_c00481{font-size:54.133333pt;}
.fs11_c00481{font-size:54.141155pt;}
.fs9_c00481{font-size:55.066667pt;}
.fs4_c00481{font-size:56.000000pt;}
.fse_c00481{font-size:56.933333pt;}
.fs7_c00481{font-size:57.866667pt;}
.fsf_c00481{font-size:58.810612pt;}
.fs2_c00481{font-size:59.733333pt;}
.fs3_c00481{font-size:60.666667pt;}
.fsa_c00481{font-size:61.600000pt;}
.fs8_c00481{font-size:64.400000pt;}
.fs1_c00481{font-size:65.333333pt;}
.fsb_c00481{font-size:66.266667pt;}
.fs0_c00481{font-size:69.066667pt;}
.y0_c00481{bottom:0.000000pt;}
.ye6_c00481{bottom:29.916688pt;}
.ye5_c00481{bottom:30.242107pt;}
.ye4_c00481{bottom:31.750368pt;}
.ye3_c00481{bottom:32.119932pt;}
.ye2_c00481{bottom:33.873867pt;}
.ye1_c00481{bottom:35.079129pt;}
.ye0_c00481{bottom:35.518700pt;}
.ydf_c00481{bottom:48.105993pt;}
.yde_c00481{bottom:48.106295pt;}
.ydb_c00481{bottom:48.106371pt;}
.ydd_c00481{bottom:48.106452pt;}
.yda_c00481{bottom:48.106672pt;}
.ydc_c00481{bottom:48.106789pt;}
.yd9_c00481{bottom:48.106951pt;}
.yd8_c00481{bottom:60.966769pt;}
.yd7_c00481{bottom:61.835673pt;}
.yd6_c00481{bottom:62.684268pt;}
.yd5_c00481{bottom:62.964632pt;}
.yd4_c00481{bottom:63.993971pt;}
.yd3_c00481{bottom:65.042667pt;}
.yd2_c00481{bottom:74.501053pt;}
.yd1_c00481{bottom:74.910896pt;}
.yd0_c00481{bottom:75.338928pt;}
.ycf_c00481{bottom:75.666235pt;}
.yce_c00481{bottom:76.454887pt;}
.ycd_c00481{bottom:77.719349pt;}
.ycc_c00481{bottom:78.812939pt;}
.ycb_c00481{bottom:79.684000pt;}
.yca_c00481{bottom:91.449333pt;}
.yc9_c00481{bottom:91.710667pt;}
.yc8_c00481{bottom:92.686667pt;}
.yc7_c00481{bottom:92.974667pt;}
.yc6_c00481{bottom:93.581333pt;}
.yc5_c00481{bottom:93.908000pt;}
.yc4_c00481{bottom:94.460000pt;}
.yc3_c00481{bottom:95.002667pt;}
.yc2_c00481{bottom:95.285333pt;}
.yc1_c00481{bottom:108.884000pt;}
.yc0_c00481{bottom:120.166667pt;}
.ybf_c00481{bottom:120.654667pt;}
.ybe_c00481{bottom:120.997333pt;}
.ybd_c00481{bottom:122.629333pt;}
.ybc_c00481{bottom:125.048000pt;}
.ybb_c00481{bottom:136.778667pt;}
.yba_c00481{bottom:137.637333pt;}
.yb9_c00481{bottom:137.844000pt;}
.yb8_c00481{bottom:138.765333pt;}
.yb7_c00481{bottom:139.598667pt;}
.yb6_c00481{bottom:140.406667pt;}
.yb5_c00481{bottom:151.382667pt;}
.yb4_c00481{bottom:151.676000pt;}
.yb3_c00481{bottom:152.745333pt;}
.yb2_c00481{bottom:153.573333pt;}
.yb1_c00481{bottom:153.912000pt;}
.yb0_c00481{bottom:155.286667pt;}
.yaf_c00481{bottom:165.208000pt;}
.yae_c00481{bottom:166.202667pt;}
.yad_c00481{bottom:166.886667pt;}
.yac_c00481{bottom:167.113333pt;}
.yab_c00481{bottom:168.128000pt;}
.yaa_c00481{bottom:169.056000pt;}
.ya9_c00481{bottom:169.418667pt;}
.ya8_c00481{bottom:169.764000pt;}
.ya7_c00481{bottom:170.646667pt;}
.ya6_c00481{bottom:181.945333pt;}
.ya5_c00481{bottom:182.688000pt;}
.ya4_c00481{bottom:183.365333pt;}
.ya3_c00481{bottom:184.257333pt;}
.ya2_c00481{bottom:184.750667pt;}
.ya1_c00481{bottom:185.985333pt;}
.ya0_c00481{bottom:186.964000pt;}
.y9f_c00481{bottom:196.588000pt;}
.y9e_c00481{bottom:197.294667pt;}
.y9d_c00481{bottom:197.474667pt;}
.y9c_c00481{bottom:198.014667pt;}
.y9b_c00481{bottom:199.545333pt;}
.y9a_c00481{bottom:200.500000pt;}
.y99_c00481{bottom:200.824000pt;}
.y98_c00481{bottom:202.084000pt;}
.y97_c00481{bottom:213.325333pt;}
.y96_c00481{bottom:213.708000pt;}
.y95_c00481{bottom:214.424000pt;}
.y94_c00481{bottom:214.666667pt;}
.y93_c00481{bottom:216.477333pt;}
.y92_c00481{bottom:226.072000pt;}
.y91_c00481{bottom:226.425333pt;}
.y90_c00481{bottom:227.176000pt;}
.y8f_c00481{bottom:227.534667pt;}
.y8e_c00481{bottom:228.301333pt;}
.y8d_c00481{bottom:229.640000pt;}
.y8c_c00481{bottom:231.364000pt;}
.y8b_c00481{bottom:241.992000pt;}
.y8a_c00481{bottom:242.157333pt;}
.y89_c00481{bottom:243.252000pt;}
.y88_c00481{bottom:243.540000pt;}
.y87_c00481{bottom:243.724000pt;}
.y86_c00481{bottom:244.361333pt;}
.y85_c00481{bottom:244.685333pt;}
.y84_c00481{bottom:245.238667pt;}
.y83_c00481{bottom:245.400000pt;}
.y82_c00481{bottom:246.002667pt;}
.y81_c00481{bottom:256.944000pt;}
.y80_c00481{bottom:257.150667pt;}
.y7f_c00481{bottom:257.977333pt;}
.y7e_c00481{bottom:258.426667pt;}
.y7d_c00481{bottom:259.428000pt;}
.y7c_c00481{bottom:260.010667pt;}
.y7b_c00481{bottom:260.828000pt;}
.y7a_c00481{bottom:261.372000pt;}
.y79_c00481{bottom:261.629333pt;}
.y78_c00481{bottom:262.082667pt;}
.y77_c00481{bottom:272.202667pt;}
.y76_c00481{bottom:272.466667pt;}
.y75_c00481{bottom:273.340000pt;}
.y74_c00481{bottom:273.716000pt;}
.y73_c00481{bottom:274.156000pt;}
.y72_c00481{bottom:275.228000pt;}
.y71_c00481{bottom:275.612000pt;}
.y70_c00481{bottom:276.376000pt;}
.y6f_c00481{bottom:276.721333pt;}
.y6e_c00481{bottom:288.544000pt;}
.y6d_c00481{bottom:289.716000pt;}
.y6c_c00481{bottom:290.328000pt;}
.y6b_c00481{bottom:290.585333pt;}
.y6a_c00481{bottom:291.358667pt;}
.y69_c00481{bottom:303.137333pt;}
.y68_c00481{bottom:303.836000pt;}
.y67_c00481{bottom:304.013333pt;}
.y66_c00481{bottom:305.137333pt;}
.y65_c00481{bottom:305.452000pt;}
.y64_c00481{bottom:306.189333pt;}
.y63_c00481{bottom:306.480000pt;}
.y62_c00481{bottom:317.988000pt;}
.y61_c00481{bottom:318.302667pt;}
.y60_c00481{bottom:319.054667pt;}
.y5f_c00481{bottom:319.453333pt;}
.y5e_c00481{bottom:320.429333pt;}
.y5d_c00481{bottom:321.354667pt;}
.y5c_c00481{bottom:321.869333pt;}
.y5b_c00481{bottom:322.322667pt;}
.y5a_c00481{bottom:333.170667pt;}
.y59_c00481{bottom:333.596000pt;}
.y58_c00481{bottom:333.938667pt;}
.y57_c00481{bottom:335.158667pt;}
.y56_c00481{bottom:335.532000pt;}
.y55_c00481{bottom:336.585333pt;}
.y54_c00481{bottom:336.888000pt;}
.y53_c00481{bottom:337.925333pt;}
.y52_c00481{bottom:346.820000pt;}
.y51_c00481{bottom:348.249333pt;}
.y50_c00481{bottom:349.458667pt;}
.y4f_c00481{bottom:350.760000pt;}
.y4e_c00481{bottom:351.312000pt;}
.y4d_c00481{bottom:352.085333pt;}
.y4c_c00481{bottom:362.049333pt;}
.y4b_c00481{bottom:362.477333pt;}
.y4a_c00481{bottom:362.753333pt;}
.y49_c00481{bottom:363.465333pt;}
.y48_c00481{bottom:364.204000pt;}
.y47_c00481{bottom:364.713333pt;}
.y46_c00481{bottom:366.676000pt;}
.y45_c00481{bottom:367.202667pt;}
.y44_c00481{bottom:378.444000pt;}
.y43_c00481{bottom:379.548000pt;}
.y42_c00481{bottom:379.857333pt;}
.y41_c00481{bottom:381.136000pt;}
.y40_c00481{bottom:382.678667pt;}
.y3f_c00481{bottom:383.042667pt;}
.y3e_c00481{bottom:393.021333pt;}
.y3d_c00481{bottom:393.298667pt;}
.y3c_c00481{bottom:393.800000pt;}
.y3b_c00481{bottom:394.010667pt;}
.y3a_c00481{bottom:394.152000pt;}
.y39_c00481{bottom:394.994667pt;}
.y38_c00481{bottom:395.345333pt;}
.y37_c00481{bottom:396.185333pt;}
.y36_c00481{bottom:396.454667pt;}
.y35_c00481{bottom:396.960000pt;}
.y34_c00481{bottom:408.061333pt;}
.y33_c00481{bottom:409.166667pt;}
.y32_c00481{bottom:409.518667pt;}
.y31_c00481{bottom:410.193333pt;}
.y30_c00481{bottom:410.525333pt;}
.y2f_c00481{bottom:411.458667pt;}
.y2e_c00481{bottom:411.984000pt;}
.y2d_c00481{bottom:412.196000pt;}
.y2c_c00481{bottom:413.041333pt;}
.y2b_c00481{bottom:422.266667pt;}
.y2a_c00481{bottom:422.753333pt;}
.y29_c00481{bottom:423.949333pt;}
.y28_c00481{bottom:424.925333pt;}
.y27_c00481{bottom:425.281333pt;}
.y26_c00481{bottom:425.614667pt;}
.y25_c00481{bottom:426.722667pt;}
.y24_c00481{bottom:438.050667pt;}
.y23_c00481{bottom:438.530667pt;}
.y22_c00481{bottom:439.110667pt;}
.y21_c00481{bottom:439.458667pt;}
.y20_c00481{bottom:439.645333pt;}
.y1f_c00481{bottom:439.866667pt;}
.y1e_c00481{bottom:440.276000pt;}
.y1d_c00481{bottom:441.120000pt;}
.y1c_c00481{bottom:452.445333pt;}
.y1b_c00481{bottom:453.282667pt;}
.y1a_c00481{bottom:453.442667pt;}
.y19_c00481{bottom:454.465333pt;}
.y18_c00481{bottom:455.380000pt;}
.y17_c00481{bottom:455.748000pt;}
.y16_c00481{bottom:456.482667pt;}
.y15_c00481{bottom:467.045333pt;}
.y14_c00481{bottom:467.602667pt;}
.y13_c00481{bottom:468.960000pt;}
.y12_c00481{bottom:469.305333pt;}
.y11_c00481{bottom:470.376000pt;}
.y10_c00481{bottom:471.288000pt;}
.yf_c00481{bottom:472.085333pt;}
.ye_c00481{bottom:483.341333pt;}
.yd_c00481{bottom:484.038667pt;}
.yc_c00481{bottom:484.744000pt;}
.yb_c00481{bottom:485.340000pt;}
.ya_c00481{bottom:485.932000pt;}
.y9_c00481{bottom:486.964000pt;}
.y8_c00481{bottom:497.185333pt;}
.y7_c00481{bottom:497.549333pt;}
.y6_c00481{bottom:498.072000pt;}
.y5_c00481{bottom:499.482667pt;}
.y4_c00481{bottom:499.988000pt;}
.y3_c00481{bottom:501.428000pt;}
.y2_c00481{bottom:502.085333pt;}
.y1_c00481{bottom:511.700000pt;}
.hf_c00481{height:46.666667pt;}
.h7_c00481{height:51.333333pt;}
.h8_c00481{height:52.266667pt;}
.h12_c00481{height:52.274219pt;}
.he_c00481{height:54.133333pt;}
.h13_c00481{height:54.141155pt;}
.hb_c00481{height:55.066667pt;}
.h6_c00481{height:56.000000pt;}
.h10_c00481{height:56.933333pt;}
.h9_c00481{height:57.866667pt;}
.h11_c00481{height:58.810612pt;}
.h4_c00481{height:59.733333pt;}
.h5_c00481{height:60.666667pt;}
.hc_c00481{height:61.600000pt;}
.ha_c00481{height:64.400000pt;}
.h3_c00481{height:65.333333pt;}
.hd_c00481{height:66.266667pt;}
.h2_c00481{height:69.066667pt;}
.h0_c00481{height:549.066667pt;}
.h1_c00481{height:549.333333pt;}
.w0_c00481{width:319.200000pt;}
.w1_c00481{width:319.333333pt;}
.x0_c00481{left:0.000000pt;}
.x7c_c00481{left:22.380000pt;}
.x71_c00481{left:23.325333pt;}
.x6a_c00481{left:24.236000pt;}
.x60_c00481{left:25.517333pt;}
.x1d_c00481{left:26.478667pt;}
.x30_c00481{left:27.482667pt;}
.x3b_c00481{left:29.190667pt;}
.x9_c00481{left:30.528000pt;}
.x16_c00481{left:32.938667pt;}
.x2_c00481{left:34.325333pt;}
.xf_c00481{left:35.293333pt;}
.x52_c00481{left:46.853333pt;}
.x38_c00481{left:48.050667pt;}
.x4e_c00481{left:50.008000pt;}
.x3c_c00481{left:54.238667pt;}
.x31_c00481{left:57.173333pt;}
.x57_c00481{left:60.986667pt;}
.x43_c00481{left:66.078667pt;}
.x3_c00481{left:67.192000pt;}
.x72_c00481{left:68.217333pt;}
.x29_c00481{left:71.312000pt;}
.x32_c00481{left:73.037333pt;}
.x79_c00481{left:74.196000pt;}
.x10_c00481{left:75.126667pt;}
.x46_c00481{left:77.068000pt;}
.x17_c00481{left:78.817333pt;}
.x62_c00481{left:79.756000pt;}
.x2a_c00481{left:81.408000pt;}
.x6b_c00481{left:82.765333pt;}
.x7d_c00481{left:84.068000pt;}
.x50_c00481{left:86.536000pt;}
.x53_c00481{left:89.328000pt;}
.xa_c00481{left:91.266667pt;}
.x24_c00481{left:92.160000pt;}
.x63_c00481{left:93.837333pt;}
.x1e_c00481{left:96.802667pt;}
.x80_c00481{left:98.939069pt;}
.x6c_c00481{left:100.053333pt;}
.x18_c00481{left:101.797333pt;}
.x51_c00481{left:104.954667pt;}
.x2b_c00481{left:106.412000pt;}
.x25_c00481{left:109.701333pt;}
.x54_c00481{left:110.698667pt;}
.x5a_c00481{left:112.622667pt;}
.x73_c00481{left:114.492000pt;}
.x11_c00481{left:120.737333pt;}
.x33_c00481{left:122.446667pt;}
.xb_c00481{left:126.085333pt;}
.x26_c00481{left:128.424000pt;}
.x1f_c00481{left:130.944000pt;}
.x4a_c00481{left:133.516000pt;}
.x64_c00481{left:135.368000pt;}
.x66_c00481{left:136.402667pt;}
.x4_c00481{left:139.197333pt;}
.x47_c00481{left:141.598667pt;}
.x34_c00481{left:143.097333pt;}
.x6d_c00481{left:144.224000pt;}
.x3d_c00481{left:147.688000pt;}
.x20_c00481{left:149.384000pt;}
.x2c_c00481{left:150.848000pt;}
.x44_c00481{left:154.360000pt;}
.x1_c00481{left:157.440000pt;}
.x19_c00481{left:158.941333pt;}
.xc_c00481{left:161.110667pt;}
.x5e_c00481{left:162.681333pt;}
.x5_c00481{left:164.440000pt;}
.x74_c00481{left:165.656000pt;}
.x2d_c00481{left:166.670667pt;}
.x55_c00481{left:170.264000pt;}
.x3e_c00481{left:171.928000pt;}
.x78_c00481{left:173.358667pt;}
.x12_c00481{left:174.250667pt;}
.x81_c00481{left:175.201961pt;}
.x75_c00481{left:177.158667pt;}
.x70_c00481{left:178.849333pt;}
.x27_c00481{left:179.806667pt;}
.x5b_c00481{left:184.148000pt;}
.x4b_c00481{left:187.712000pt;}
.x39_c00481{left:189.157333pt;}
.x13_c00481{left:191.533333pt;}
.x35_c00481{left:192.673333pt;}
.x21_c00481{left:194.026667pt;}
.x5f_c00481{left:195.996000pt;}
.x77_c00481{left:197.278667pt;}
.x2e_c00481{left:198.816000pt;}
.x36_c00481{left:201.009333pt;}
.xd_c00481{left:202.610667pt;}
.x3a_c00481{left:204.641333pt;}
.x67_c00481{left:205.710667pt;}
.x3f_c00481{left:207.106667pt;}
.x4c_c00481{left:209.858667pt;}
.x7e_c00481{left:211.026667pt;}
.x45_c00481{left:211.945333pt;}
.x37_c00481{left:213.437333pt;}
.x2f_c00481{left:215.558667pt;}
.x48_c00481{left:217.460000pt;}
.x1a_c00481{left:222.857333pt;}
.x65_c00481{left:225.430667pt;}
.x76_c00481{left:226.560000pt;}
.x4f_c00481{left:230.977333pt;}
.x1b_c00481{left:232.861333pt;}
.x49_c00481{left:233.777333pt;}
.x6_c00481{left:234.966667pt;}
.x6e_c00481{left:235.909333pt;}
.x68_c00481{left:239.600000pt;}
.x40_c00481{left:240.986667pt;}
.x22_c00481{left:242.312000pt;}
.xe_c00481{left:243.654667pt;}
.x61_c00481{left:250.629333pt;}
.x4d_c00481{left:251.636000pt;}
.x41_c00481{left:254.136000pt;}
.x7a_c00481{left:257.038667pt;}
.x7f_c00481{left:258.513716pt;}
.x14_c00481{left:259.416000pt;}
.x7_c00481{left:261.130667pt;}
.x58_c00481{left:262.093333pt;}
.x56_c00481{left:264.034667pt;}
.x28_c00481{left:268.344000pt;}
.x5c_c00481{left:270.560000pt;}
.x59_c00481{left:271.918667pt;}
.x42_c00481{left:274.537333pt;}
.x69_c00481{left:276.752000pt;}
.x8_c00481{left:279.353333pt;}
.x5d_c00481{left:280.862667pt;}
.x23_c00481{left:282.354667pt;}
.x6f_c00481{left:283.297333pt;}
.x1c_c00481{left:285.176000pt;}
.x15_c00481{left:287.269333pt;}
.x7b_c00481{left:301.137333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00482 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00482 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00482 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00482 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00482{transform:matrix(0.010987,-0.000253,0.005748,0.249934,0,0);-ms-transform:matrix(0.010987,-0.000253,0.005748,0.249934,0,0);-webkit-transform:matrix(0.010987,-0.000253,0.005748,0.249934,0,0);}
.mcc_c00482{transform:matrix(0.097914,-0.002252,0.005748,0.249934,0,0);-ms-transform:matrix(0.097914,-0.002252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.097914,-0.002252,0.005748,0.249934,0,0);}
.m73_c00482{transform:matrix(0.114585,-0.002635,0.005748,0.249934,0,0);-ms-transform:matrix(0.114585,-0.002635,0.005748,0.249934,0,0);-webkit-transform:matrix(0.114585,-0.002635,0.005748,0.249934,0,0);}
.md8_c00482{transform:matrix(0.148926,-0.003425,0.005748,0.249934,0,0);-ms-transform:matrix(0.148926,-0.003425,0.005748,0.249934,0,0);-webkit-transform:matrix(0.148926,-0.003425,0.005748,0.249934,0,0);}
.m25_c00482{transform:matrix(0.151580,-0.003486,0.005748,0.249934,0,0);-ms-transform:matrix(0.151580,-0.003486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.151580,-0.003486,0.005748,0.249934,0,0);}
.m7e_c00482{transform:matrix(0.154934,-0.003563,0.005748,0.249934,0,0);-ms-transform:matrix(0.154934,-0.003563,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154934,-0.003563,0.005748,0.249934,0,0);}
.m5c_c00482{transform:matrix(0.155229,-0.003570,0.005748,0.249934,0,0);-ms-transform:matrix(0.155229,-0.003570,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155229,-0.003570,0.005748,0.249934,0,0);}
.m97_c00482{transform:matrix(0.156129,-0.003591,0.005748,0.249934,0,0);-ms-transform:matrix(0.156129,-0.003591,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156129,-0.003591,0.005748,0.249934,0,0);}
.m6_c00482{transform:matrix(0.156404,-0.003597,0.005748,0.249934,0,0);-ms-transform:matrix(0.156404,-0.003597,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156404,-0.003597,0.005748,0.249934,0,0);}
.m7_c00482{transform:matrix(0.156794,-0.003606,0.005748,0.249934,0,0);-ms-transform:matrix(0.156794,-0.003606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156794,-0.003606,0.005748,0.249934,0,0);}
.mf0_c00482{transform:matrix(0.157068,-0.003613,0.005748,0.249934,0,0);-ms-transform:matrix(0.157068,-0.003613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157068,-0.003613,0.005748,0.249934,0,0);}
.m9e_c00482{transform:matrix(0.157733,-0.003628,0.005748,0.249934,0,0);-ms-transform:matrix(0.157733,-0.003628,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157733,-0.003628,0.005748,0.249934,0,0);}
.m9a_c00482{transform:matrix(0.158623,-0.003648,0.005748,0.249934,0,0);-ms-transform:matrix(0.158623,-0.003648,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158623,-0.003648,0.005748,0.249934,0,0);}
.m49_c00482{transform:matrix(0.159008,-0.003657,0.005748,0.249934,0,0);-ms-transform:matrix(0.159008,-0.003657,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159008,-0.003657,0.005748,0.249934,0,0);}
.m10_c00482{transform:matrix(0.159093,-0.003659,0.005748,0.249934,0,0);-ms-transform:matrix(0.159093,-0.003659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159093,-0.003659,0.005748,0.249934,0,0);}
.m53_c00482{transform:matrix(0.159788,-0.003675,0.005748,0.249934,0,0);-ms-transform:matrix(0.159788,-0.003675,0.005748,0.249934,0,0);-webkit-transform:matrix(0.159788,-0.003675,0.005748,0.249934,0,0);}
.m13_c00482{transform:matrix(0.160338,-0.003688,0.005748,0.249934,0,0);-ms-transform:matrix(0.160338,-0.003688,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160338,-0.003688,0.005748,0.249934,0,0);}
.m2a_c00482{transform:matrix(0.161087,-0.003705,0.005748,0.249934,0,0);-ms-transform:matrix(0.161087,-0.003705,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161087,-0.003705,0.005748,0.249934,0,0);}
.m28_c00482{transform:matrix(0.161207,-0.003708,0.005748,0.249934,0,0);-ms-transform:matrix(0.161207,-0.003708,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161207,-0.003708,0.005748,0.249934,0,0);}
.m12_c00482{transform:matrix(0.163147,-0.003752,0.005748,0.249934,0,0);-ms-transform:matrix(0.163147,-0.003752,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163147,-0.003752,0.005748,0.249934,0,0);}
.m24_c00482{transform:matrix(0.163507,-0.003761,0.005748,0.249934,0,0);-ms-transform:matrix(0.163507,-0.003761,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163507,-0.003761,0.005748,0.249934,0,0);}
.m32_c00482{transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);-ms-transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163677,-0.003765,0.005748,0.249934,0,0);}
.m58_c00482{transform:matrix(0.164521,-0.003784,0.005748,0.249934,0,0);-ms-transform:matrix(0.164521,-0.003784,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164521,-0.003784,0.005748,0.249934,0,0);}
.m5a_c00482{transform:matrix(0.165621,-0.003809,0.005748,0.249934,0,0);-ms-transform:matrix(0.165621,-0.003809,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165621,-0.003809,0.005748,0.249934,0,0);}
.m4d_c00482{transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);-ms-transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165831,-0.003814,0.005748,0.249934,0,0);}
.m7a_c00482{transform:matrix(0.165906,-0.003816,0.005748,0.249934,0,0);-ms-transform:matrix(0.165906,-0.003816,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165906,-0.003816,0.005748,0.249934,0,0);}
.md9_c00482{transform:matrix(0.166111,-0.003821,0.005748,0.249934,0,0);-ms-transform:matrix(0.166111,-0.003821,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166111,-0.003821,0.005748,0.249934,0,0);}
.m2e_c00482{transform:matrix(0.166266,-0.003824,0.005748,0.249934,0,0);-ms-transform:matrix(0.166266,-0.003824,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166266,-0.003824,0.005748,0.249934,0,0);}
.m2b_c00482{transform:matrix(0.166321,-0.003825,0.005748,0.249934,0,0);-ms-transform:matrix(0.166321,-0.003825,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166321,-0.003825,0.005748,0.249934,0,0);}
.mce_c00482{transform:matrix(0.166996,-0.003841,0.005748,0.249934,0,0);-ms-transform:matrix(0.166996,-0.003841,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166996,-0.003841,0.005748,0.249934,0,0);}
.m33_c00482{transform:matrix(0.167226,-0.003846,0.005748,0.249934,0,0);-ms-transform:matrix(0.167226,-0.003846,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167226,-0.003846,0.005748,0.249934,0,0);}
.mbb_c00482{transform:matrix(0.167386,-0.003850,0.005748,0.249934,0,0);-ms-transform:matrix(0.167386,-0.003850,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167386,-0.003850,0.005748,0.249934,0,0);}
.med_c00482{transform:matrix(0.167641,-0.003856,0.005748,0.249934,0,0);-ms-transform:matrix(0.167641,-0.003856,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167641,-0.003856,0.005748,0.249934,0,0);}
.m35_c00482{transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);-ms-transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167676,-0.003857,0.005748,0.249934,0,0);}
.mec_c00482{transform:matrix(0.167811,-0.003860,0.005748,0.249934,0,0);-ms-transform:matrix(0.167811,-0.003860,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167811,-0.003860,0.005748,0.249934,0,0);}
.mdf_c00482{transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);-ms-transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167901,-0.003862,0.005748,0.249934,0,0);}
.mef_c00482{transform:matrix(0.168151,-0.003867,0.005748,0.249934,0,0);-ms-transform:matrix(0.168151,-0.003867,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168151,-0.003867,0.005748,0.249934,0,0);}
.m20_c00482{transform:matrix(0.168685,-0.003880,0.005748,0.249934,0,0);-ms-transform:matrix(0.168685,-0.003880,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168685,-0.003880,0.005748,0.249934,0,0);}
.mf_c00482{transform:matrix(0.168870,-0.003884,0.005748,0.249934,0,0);-ms-transform:matrix(0.168870,-0.003884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168870,-0.003884,0.005748,0.249934,0,0);}
.m39_c00482{transform:matrix(0.169385,-0.003896,0.005748,0.249934,0,0);-ms-transform:matrix(0.169385,-0.003896,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169385,-0.003896,0.005748,0.249934,0,0);}
.m76_c00482{transform:matrix(0.169440,-0.003897,0.005748,0.249934,0,0);-ms-transform:matrix(0.169440,-0.003897,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169440,-0.003897,0.005748,0.249934,0,0);}
.m42_c00482{transform:matrix(0.169470,-0.003898,0.005748,0.249934,0,0);-ms-transform:matrix(0.169470,-0.003898,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169470,-0.003898,0.005748,0.249934,0,0);}
.m40_c00482{transform:matrix(0.169755,-0.003904,0.005748,0.249934,0,0);-ms-transform:matrix(0.169755,-0.003904,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169755,-0.003904,0.005748,0.249934,0,0);}
.m11_c00482{transform:matrix(0.169950,-0.003909,0.005748,0.249934,0,0);-ms-transform:matrix(0.169950,-0.003909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169950,-0.003909,0.005748,0.249934,0,0);}
.m7b_c00482{transform:matrix(0.170035,-0.003911,0.005748,0.249934,0,0);-ms-transform:matrix(0.170035,-0.003911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170035,-0.003911,0.005748,0.249934,0,0);}
.m84_c00482{transform:matrix(0.170105,-0.003912,0.005748,0.249934,0,0);-ms-transform:matrix(0.170105,-0.003912,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170105,-0.003912,0.005748,0.249934,0,0);}
.m5_c00482{transform:matrix(0.171295,-0.003940,0.005748,0.249934,0,0);-ms-transform:matrix(0.171295,-0.003940,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171295,-0.003940,0.005748,0.249934,0,0);}
.m61_c00482{transform:matrix(0.171535,-0.003945,0.005748,0.249934,0,0);-ms-transform:matrix(0.171535,-0.003945,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171535,-0.003945,0.005748,0.249934,0,0);}
.meb_c00482{transform:matrix(0.171640,-0.003948,0.005748,0.249934,0,0);-ms-transform:matrix(0.171640,-0.003948,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171640,-0.003948,0.005748,0.249934,0,0);}
.m1_c00482{transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);-ms-transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);}
.m4e_c00482{transform:matrix(0.171725,-0.003950,0.005748,0.249934,0,0);-ms-transform:matrix(0.171725,-0.003950,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171725,-0.003950,0.005748,0.249934,0,0);}
.md2_c00482{transform:matrix(0.171875,-0.003953,0.005748,0.249934,0,0);-ms-transform:matrix(0.171875,-0.003953,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171875,-0.003953,0.005748,0.249934,0,0);}
.m59_c00482{transform:matrix(0.172609,-0.003970,0.005748,0.249934,0,0);-ms-transform:matrix(0.172609,-0.003970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172609,-0.003970,0.005748,0.249934,0,0);}
.m3b_c00482{transform:matrix(0.173294,-0.003986,0.005748,0.249934,0,0);-ms-transform:matrix(0.173294,-0.003986,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173294,-0.003986,0.005748,0.249934,0,0);}
.m66_c00482{transform:matrix(0.173734,-0.003996,0.005748,0.249934,0,0);-ms-transform:matrix(0.173734,-0.003996,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173734,-0.003996,0.005748,0.249934,0,0);}
.m77_c00482{transform:matrix(0.174314,-0.004009,0.005748,0.249934,0,0);-ms-transform:matrix(0.174314,-0.004009,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174314,-0.004009,0.005748,0.249934,0,0);}
.m4a_c00482{transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);-ms-transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174339,-0.004010,0.005748,0.249934,0,0);}
.m98_c00482{transform:matrix(0.174399,-0.004011,0.005748,0.249934,0,0);-ms-transform:matrix(0.174399,-0.004011,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174399,-0.004011,0.005748,0.249934,0,0);}
.m89_c00482{transform:matrix(0.174414,-0.004012,0.005748,0.249934,0,0);-ms-transform:matrix(0.174414,-0.004012,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174414,-0.004012,0.005748,0.249934,0,0);}
.mb8_c00482{transform:matrix(0.174754,-0.004019,0.005748,0.249934,0,0);-ms-transform:matrix(0.174754,-0.004019,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174754,-0.004019,0.005748,0.249934,0,0);}
.mda_c00482{transform:matrix(0.175204,-0.004030,0.005748,0.249934,0,0);-ms-transform:matrix(0.175204,-0.004030,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175204,-0.004030,0.005748,0.249934,0,0);}
.mb0_c00482{transform:matrix(0.175484,-0.004036,0.005748,0.249934,0,0);-ms-transform:matrix(0.175484,-0.004036,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175484,-0.004036,0.005748,0.249934,0,0);}
.m27_c00482{transform:matrix(0.175888,-0.004045,0.005748,0.249934,0,0);-ms-transform:matrix(0.175888,-0.004045,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175888,-0.004045,0.005748,0.249934,0,0);}
.m45_c00482{transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);-ms-transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176303,-0.004055,0.005748,0.249934,0,0);}
.m4c_c00482{transform:matrix(0.177048,-0.004072,0.005748,0.249934,0,0);-ms-transform:matrix(0.177048,-0.004072,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177048,-0.004072,0.005748,0.249934,0,0);}
.me8_c00482{transform:matrix(0.177118,-0.004074,0.005748,0.249934,0,0);-ms-transform:matrix(0.177118,-0.004074,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177118,-0.004074,0.005748,0.249934,0,0);}
.m30_c00482{transform:matrix(0.177208,-0.004076,0.005748,0.249934,0,0);-ms-transform:matrix(0.177208,-0.004076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177208,-0.004076,0.005748,0.249934,0,0);}
.m63_c00482{transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);-ms-transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177393,-0.004080,0.005748,0.249934,0,0);}
.m36_c00482{transform:matrix(0.177588,-0.004085,0.005748,0.249934,0,0);-ms-transform:matrix(0.177588,-0.004085,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177588,-0.004085,0.005748,0.249934,0,0);}
.mb6_c00482{transform:matrix(0.177603,-0.004085,0.005748,0.249934,0,0);-ms-transform:matrix(0.177603,-0.004085,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177603,-0.004085,0.005748,0.249934,0,0);}
.m68_c00482{transform:matrix(0.177633,-0.004086,0.005748,0.249934,0,0);-ms-transform:matrix(0.177633,-0.004086,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177633,-0.004086,0.005748,0.249934,0,0);}
.m5e_c00482{transform:matrix(0.177728,-0.004088,0.005748,0.249934,0,0);-ms-transform:matrix(0.177728,-0.004088,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177728,-0.004088,0.005748,0.249934,0,0);}
.m7f_c00482{transform:matrix(0.177813,-0.004090,0.005748,0.249934,0,0);-ms-transform:matrix(0.177813,-0.004090,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177813,-0.004090,0.005748,0.249934,0,0);}
.mac_c00482{transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);-ms-transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177908,-0.004092,0.005748,0.249934,0,0);}
.m51_c00482{transform:matrix(0.177988,-0.004094,0.005748,0.249934,0,0);-ms-transform:matrix(0.177988,-0.004094,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177988,-0.004094,0.005748,0.249934,0,0);}
.m26_c00482{transform:matrix(0.178203,-0.004099,0.005748,0.249934,0,0);-ms-transform:matrix(0.178203,-0.004099,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178203,-0.004099,0.005748,0.249934,0,0);}
.m31_c00482{transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);-ms-transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178278,-0.004100,0.005748,0.249934,0,0);}
.m34_c00482{transform:matrix(0.178353,-0.004102,0.005748,0.249934,0,0);-ms-transform:matrix(0.178353,-0.004102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178353,-0.004102,0.005748,0.249934,0,0);}
.m8b_c00482{transform:matrix(0.178748,-0.004111,0.005748,0.249934,0,0);-ms-transform:matrix(0.178748,-0.004111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178748,-0.004111,0.005748,0.249934,0,0);}
.m2d_c00482{transform:matrix(0.178923,-0.004115,0.005748,0.249934,0,0);-ms-transform:matrix(0.178923,-0.004115,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178923,-0.004115,0.005748,0.249934,0,0);}
.mc4_c00482{transform:matrix(0.179073,-0.004119,0.005748,0.249934,0,0);-ms-transform:matrix(0.179073,-0.004119,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179073,-0.004119,0.005748,0.249934,0,0);}
.m2_c00482{transform:matrix(0.179298,-0.004124,0.005748,0.249934,0,0);-ms-transform:matrix(0.179298,-0.004124,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179298,-0.004124,0.005748,0.249934,0,0);}
.m80_c00482{transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);-ms-transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179523,-0.004129,0.005748,0.249934,0,0);}
.m8c_c00482{transform:matrix(0.179982,-0.004140,0.005748,0.249934,0,0);-ms-transform:matrix(0.179982,-0.004140,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179982,-0.004140,0.005748,0.249934,0,0);}
.mba_c00482{transform:matrix(0.180082,-0.004142,0.005748,0.249934,0,0);-ms-transform:matrix(0.180082,-0.004142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180082,-0.004142,0.005748,0.249934,0,0);}
.ma8_c00482{transform:matrix(0.180812,-0.004159,0.005748,0.249934,0,0);-ms-transform:matrix(0.180812,-0.004159,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180812,-0.004159,0.005748,0.249934,0,0);}
.m55_c00482{transform:matrix(0.181242,-0.004169,0.005748,0.249934,0,0);-ms-transform:matrix(0.181242,-0.004169,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181242,-0.004169,0.005748,0.249934,0,0);}
.m9c_c00482{transform:matrix(0.181307,-0.004170,0.005748,0.249934,0,0);-ms-transform:matrix(0.181307,-0.004170,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181307,-0.004170,0.005748,0.249934,0,0);}
.m41_c00482{transform:matrix(0.181922,-0.004184,0.005748,0.249934,0,0);-ms-transform:matrix(0.181922,-0.004184,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181922,-0.004184,0.005748,0.249934,0,0);}
.mb9_c00482{transform:matrix(0.182197,-0.004191,0.005748,0.249934,0,0);-ms-transform:matrix(0.182197,-0.004191,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182197,-0.004191,0.005748,0.249934,0,0);}
.mb7_c00482{transform:matrix(0.182277,-0.004192,0.005748,0.249934,0,0);-ms-transform:matrix(0.182277,-0.004192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182277,-0.004192,0.005748,0.249934,0,0);}
.m2c_c00482{transform:matrix(0.182307,-0.004193,0.005748,0.249934,0,0);-ms-transform:matrix(0.182307,-0.004193,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182307,-0.004193,0.005748,0.249934,0,0);}
.md_c00482{transform:matrix(0.182567,-0.004199,0.005748,0.249934,0,0);-ms-transform:matrix(0.182567,-0.004199,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182567,-0.004199,0.005748,0.249934,0,0);}
.mbc_c00482{transform:matrix(0.182612,-0.004200,0.005748,0.249934,0,0);-ms-transform:matrix(0.182612,-0.004200,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182612,-0.004200,0.005748,0.249934,0,0);}
.m29_c00482{transform:matrix(0.182667,-0.004201,0.005748,0.249934,0,0);-ms-transform:matrix(0.182667,-0.004201,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182667,-0.004201,0.005748,0.249934,0,0);}
.m9f_c00482{transform:matrix(0.182692,-0.004202,0.005748,0.249934,0,0);-ms-transform:matrix(0.182692,-0.004202,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182692,-0.004202,0.005748,0.249934,0,0);}
.ma1_c00482{transform:matrix(0.182907,-0.004207,0.005748,0.249934,0,0);-ms-transform:matrix(0.182907,-0.004207,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182907,-0.004207,0.005748,0.249934,0,0);}
.m3d_c00482{transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);-ms-transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183052,-0.004210,0.005748,0.249934,0,0);}
.m6e_c00482{transform:matrix(0.183117,-0.004212,0.005748,0.249934,0,0);-ms-transform:matrix(0.183117,-0.004212,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183117,-0.004212,0.005748,0.249934,0,0);}
.mc0_c00482{transform:matrix(0.183252,-0.004215,0.005748,0.249934,0,0);-ms-transform:matrix(0.183252,-0.004215,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183252,-0.004215,0.005748,0.249934,0,0);}
.ma_c00482{transform:matrix(0.183322,-0.004216,0.005748,0.249934,0,0);-ms-transform:matrix(0.183322,-0.004216,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183322,-0.004216,0.005748,0.249934,0,0);}
.m23_c00482{transform:matrix(0.183676,-0.004225,0.005748,0.249934,0,0);-ms-transform:matrix(0.183676,-0.004225,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183676,-0.004225,0.005748,0.249934,0,0);}
.m78_c00482{transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-ms-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183946,-0.004231,0.005748,0.249934,0,0);}
.m57_c00482{transform:matrix(0.184071,-0.004234,0.005748,0.249934,0,0);-ms-transform:matrix(0.184071,-0.004234,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184071,-0.004234,0.005748,0.249934,0,0);}
.m88_c00482{transform:matrix(0.184346,-0.004240,0.005748,0.249934,0,0);-ms-transform:matrix(0.184346,-0.004240,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184346,-0.004240,0.005748,0.249934,0,0);}
.m16_c00482{transform:matrix(0.185051,-0.004256,0.005748,0.249934,0,0);-ms-transform:matrix(0.185051,-0.004256,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185051,-0.004256,0.005748,0.249934,0,0);}
.m3e_c00482{transform:matrix(0.185106,-0.004257,0.005748,0.249934,0,0);-ms-transform:matrix(0.185106,-0.004257,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185106,-0.004257,0.005748,0.249934,0,0);}
.m69_c00482{transform:matrix(0.185686,-0.004271,0.005748,0.249934,0,0);-ms-transform:matrix(0.185686,-0.004271,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185686,-0.004271,0.005748,0.249934,0,0);}
.ma3_c00482{transform:matrix(0.185746,-0.004272,0.005748,0.249934,0,0);-ms-transform:matrix(0.185746,-0.004272,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185746,-0.004272,0.005748,0.249934,0,0);}
.m4_c00482{transform:matrix(0.185931,-0.004276,0.005748,0.249934,0,0);-ms-transform:matrix(0.185931,-0.004276,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185931,-0.004276,0.005748,0.249934,0,0);}
.m99_c00482{transform:matrix(0.186081,-0.004280,0.005748,0.249934,0,0);-ms-transform:matrix(0.186081,-0.004280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186081,-0.004280,0.005748,0.249934,0,0);}
.m74_c00482{transform:matrix(0.186791,-0.004296,0.005748,0.249934,0,0);-ms-transform:matrix(0.186791,-0.004296,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186791,-0.004296,0.005748,0.249934,0,0);}
.md6_c00482{transform:matrix(0.187315,-0.004308,0.005748,0.249934,0,0);-ms-transform:matrix(0.187315,-0.004308,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187315,-0.004308,0.005748,0.249934,0,0);}
.me5_c00482{transform:matrix(0.188235,-0.004329,0.005748,0.249934,0,0);-ms-transform:matrix(0.188235,-0.004329,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188235,-0.004329,0.005748,0.249934,0,0);}
.m9b_c00482{transform:matrix(0.188290,-0.004331,0.005748,0.249934,0,0);-ms-transform:matrix(0.188290,-0.004331,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188290,-0.004331,0.005748,0.249934,0,0);}
.mc1_c00482{transform:matrix(0.188525,-0.004336,0.005748,0.249934,0,0);-ms-transform:matrix(0.188525,-0.004336,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188525,-0.004336,0.005748,0.249934,0,0);}
.m85_c00482{transform:matrix(0.188830,-0.004343,0.005748,0.249934,0,0);-ms-transform:matrix(0.188830,-0.004343,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188830,-0.004343,0.005748,0.249934,0,0);}
.m82_c00482{transform:matrix(0.189150,-0.004350,0.005748,0.249934,0,0);-ms-transform:matrix(0.189150,-0.004350,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189150,-0.004350,0.005748,0.249934,0,0);}
.ma7_c00482{transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);-ms-transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189760,-0.004364,0.005748,0.249934,0,0);}
.m14_c00482{transform:matrix(0.189780,-0.004365,0.005748,0.249934,0,0);-ms-transform:matrix(0.189780,-0.004365,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189780,-0.004365,0.005748,0.249934,0,0);}
.mf1_c00482{transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);-ms-transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);}
.m83_c00482{transform:matrix(0.189900,-0.004368,0.005748,0.249934,0,0);-ms-transform:matrix(0.189900,-0.004368,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189900,-0.004368,0.005748,0.249934,0,0);}
.m60_c00482{transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);-ms-transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189930,-0.004368,0.005748,0.249934,0,0);}
.m2f_c00482{transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-ms-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189940,-0.004369,0.005748,0.249934,0,0);}
.m37_c00482{transform:matrix(0.190135,-0.004373,0.005748,0.249934,0,0);-ms-transform:matrix(0.190135,-0.004373,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190135,-0.004373,0.005748,0.249934,0,0);}
.mcf_c00482{transform:matrix(0.190580,-0.004383,0.005748,0.249934,0,0);-ms-transform:matrix(0.190580,-0.004383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190580,-0.004383,0.005748,0.249934,0,0);}
.m91_c00482{transform:matrix(0.190845,-0.004389,0.005748,0.249934,0,0);-ms-transform:matrix(0.190845,-0.004389,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190845,-0.004389,0.005748,0.249934,0,0);}
.mbd_c00482{transform:matrix(0.191779,-0.004411,0.005748,0.249934,0,0);-ms-transform:matrix(0.191779,-0.004411,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191779,-0.004411,0.005748,0.249934,0,0);}
.m5d_c00482{transform:matrix(0.191809,-0.004412,0.005748,0.249934,0,0);-ms-transform:matrix(0.191809,-0.004412,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191809,-0.004412,0.005748,0.249934,0,0);}
.m17_c00482{transform:matrix(0.191939,-0.004415,0.005748,0.249934,0,0);-ms-transform:matrix(0.191939,-0.004415,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191939,-0.004415,0.005748,0.249934,0,0);}
.mb4_c00482{transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);-ms-transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192299,-0.004423,0.005748,0.249934,0,0);}
.m56_c00482{transform:matrix(0.193739,-0.004456,0.005748,0.249934,0,0);-ms-transform:matrix(0.193739,-0.004456,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193739,-0.004456,0.005748,0.249934,0,0);}
.m38_c00482{transform:matrix(0.194309,-0.004469,0.005748,0.249934,0,0);-ms-transform:matrix(0.194309,-0.004469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194309,-0.004469,0.005748,0.249934,0,0);}
.m72_c00482{transform:matrix(0.195028,-0.004486,0.005748,0.249934,0,0);-ms-transform:matrix(0.195028,-0.004486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195028,-0.004486,0.005748,0.249934,0,0);}
.md7_c00482{transform:matrix(0.195238,-0.004490,0.005748,0.249934,0,0);-ms-transform:matrix(0.195238,-0.004490,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195238,-0.004490,0.005748,0.249934,0,0);}
.m9d_c00482{transform:matrix(0.195683,-0.004501,0.005748,0.249934,0,0);-ms-transform:matrix(0.195683,-0.004501,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195683,-0.004501,0.005748,0.249934,0,0);}
.md3_c00482{transform:matrix(0.195943,-0.004507,0.005748,0.249934,0,0);-ms-transform:matrix(0.195943,-0.004507,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195943,-0.004507,0.005748,0.249934,0,0);}
.m5b_c00482{transform:matrix(0.195968,-0.004507,0.005748,0.249934,0,0);-ms-transform:matrix(0.195968,-0.004507,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195968,-0.004507,0.005748,0.249934,0,0);}
.m4f_c00482{transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);-ms-transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195983,-0.004508,0.005748,0.249934,0,0);}
.mdd_c00482{transform:matrix(0.196153,-0.004512,0.005748,0.249934,0,0);-ms-transform:matrix(0.196153,-0.004512,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196153,-0.004512,0.005748,0.249934,0,0);}
.m1f_c00482{transform:matrix(0.196508,-0.004520,0.005748,0.249934,0,0);-ms-transform:matrix(0.196508,-0.004520,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196508,-0.004520,0.005748,0.249934,0,0);}
.m87_c00482{transform:matrix(0.196928,-0.004529,0.005748,0.249934,0,0);-ms-transform:matrix(0.196928,-0.004529,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196928,-0.004529,0.005748,0.249934,0,0);}
.mc5_c00482{transform:matrix(0.196943,-0.004530,0.005748,0.249934,0,0);-ms-transform:matrix(0.196943,-0.004530,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196943,-0.004530,0.005748,0.249934,0,0);}
.m7d_c00482{transform:matrix(0.197408,-0.004540,0.005748,0.249934,0,0);-ms-transform:matrix(0.197408,-0.004540,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197408,-0.004540,0.005748,0.249934,0,0);}
.m52_c00482{transform:matrix(0.197503,-0.004543,0.005748,0.249934,0,0);-ms-transform:matrix(0.197503,-0.004543,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197503,-0.004543,0.005748,0.249934,0,0);}
.me9_c00482{transform:matrix(0.198178,-0.004558,0.005748,0.249934,0,0);-ms-transform:matrix(0.198178,-0.004558,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198178,-0.004558,0.005748,0.249934,0,0);}
.m22_c00482{transform:matrix(0.198253,-0.004560,0.005748,0.249934,0,0);-ms-transform:matrix(0.198253,-0.004560,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198253,-0.004560,0.005748,0.249934,0,0);}
.m79_c00482{transform:matrix(0.198647,-0.004569,0.005748,0.249934,0,0);-ms-transform:matrix(0.198647,-0.004569,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198647,-0.004569,0.005748,0.249934,0,0);}
.m6b_c00482{transform:matrix(0.198672,-0.004569,0.005748,0.249934,0,0);-ms-transform:matrix(0.198672,-0.004569,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198672,-0.004569,0.005748,0.249934,0,0);}
.m9_c00482{transform:matrix(0.200267,-0.004606,0.005748,0.249934,0,0);-ms-transform:matrix(0.200267,-0.004606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200267,-0.004606,0.005748,0.249934,0,0);}
.me1_c00482{transform:matrix(0.200777,-0.004618,0.005748,0.249934,0,0);-ms-transform:matrix(0.200777,-0.004618,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200777,-0.004618,0.005748,0.249934,0,0);}
.m75_c00482{transform:matrix(0.200987,-0.004623,0.005748,0.249934,0,0);-ms-transform:matrix(0.200987,-0.004623,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200987,-0.004623,0.005748,0.249934,0,0);}
.m15_c00482{transform:matrix(0.202277,-0.004652,0.005748,0.249934,0,0);-ms-transform:matrix(0.202277,-0.004652,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202277,-0.004652,0.005748,0.249934,0,0);}
.m71_c00482{transform:matrix(0.202991,-0.004669,0.005748,0.249934,0,0);-ms-transform:matrix(0.202991,-0.004669,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202991,-0.004669,0.005748,0.249934,0,0);}
.mb_c00482{transform:matrix(0.203401,-0.004678,0.005748,0.249934,0,0);-ms-transform:matrix(0.203401,-0.004678,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203401,-0.004678,0.005748,0.249934,0,0);}
.m3a_c00482{transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-ms-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203506,-0.004681,0.005748,0.249934,0,0);}
.mea_c00482{transform:matrix(0.203716,-0.004685,0.005748,0.249934,0,0);-ms-transform:matrix(0.203716,-0.004685,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203716,-0.004685,0.005748,0.249934,0,0);}
.m44_c00482{transform:matrix(0.203776,-0.004687,0.005748,0.249934,0,0);-ms-transform:matrix(0.203776,-0.004687,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203776,-0.004687,0.005748,0.249934,0,0);}
.m96_c00482{transform:matrix(0.203861,-0.004689,0.005748,0.249934,0,0);-ms-transform:matrix(0.203861,-0.004689,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203861,-0.004689,0.005748,0.249934,0,0);}
.mab_c00482{transform:matrix(0.204121,-0.004695,0.005748,0.249934,0,0);-ms-transform:matrix(0.204121,-0.004695,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204121,-0.004695,0.005748,0.249934,0,0);}
.mad_c00482{transform:matrix(0.204841,-0.004711,0.005748,0.249934,0,0);-ms-transform:matrix(0.204841,-0.004711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204841,-0.004711,0.005748,0.249934,0,0);}
.mc3_c00482{transform:matrix(0.205116,-0.004718,0.005748,0.249934,0,0);-ms-transform:matrix(0.205116,-0.004718,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205116,-0.004718,0.005748,0.249934,0,0);}
.m3f_c00482{transform:matrix(0.205546,-0.004728,0.005748,0.249934,0,0);-ms-transform:matrix(0.205546,-0.004728,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205546,-0.004728,0.005748,0.249934,0,0);}
.m46_c00482{transform:matrix(0.205571,-0.004728,0.005748,0.249934,0,0);-ms-transform:matrix(0.205571,-0.004728,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205571,-0.004728,0.005748,0.249934,0,0);}
.m81_c00482{transform:matrix(0.206485,-0.004749,0.005748,0.249934,0,0);-ms-transform:matrix(0.206485,-0.004749,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206485,-0.004749,0.005748,0.249934,0,0);}
.me0_c00482{transform:matrix(0.206490,-0.004749,0.005748,0.249934,0,0);-ms-transform:matrix(0.206490,-0.004749,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206490,-0.004749,0.005748,0.249934,0,0);}
.m6a_c00482{transform:matrix(0.206615,-0.004752,0.005748,0.249934,0,0);-ms-transform:matrix(0.206615,-0.004752,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206615,-0.004752,0.005748,0.249934,0,0);}
.m43_c00482{transform:matrix(0.206755,-0.004755,0.005748,0.249934,0,0);-ms-transform:matrix(0.206755,-0.004755,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206755,-0.004755,0.005748,0.249934,0,0);}
.m54_c00482{transform:matrix(0.206955,-0.004760,0.005748,0.249934,0,0);-ms-transform:matrix(0.206955,-0.004760,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206955,-0.004760,0.005748,0.249934,0,0);}
.mee_c00482{transform:matrix(0.207115,-0.004764,0.005748,0.249934,0,0);-ms-transform:matrix(0.207115,-0.004764,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207115,-0.004764,0.005748,0.249934,0,0);}
.m8d_c00482{transform:matrix(0.207285,-0.004768,0.005748,0.249934,0,0);-ms-transform:matrix(0.207285,-0.004768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207285,-0.004768,0.005748,0.249934,0,0);}
.maf_c00482{transform:matrix(0.207535,-0.004773,0.005748,0.249934,0,0);-ms-transform:matrix(0.207535,-0.004773,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207535,-0.004773,0.005748,0.249934,0,0);}
.m70_c00482{transform:matrix(0.208435,-0.004794,0.005748,0.249934,0,0);-ms-transform:matrix(0.208435,-0.004794,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208435,-0.004794,0.005748,0.249934,0,0);}
.m8a_c00482{transform:matrix(0.209050,-0.004808,0.005748,0.249934,0,0);-ms-transform:matrix(0.209050,-0.004808,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209050,-0.004808,0.005748,0.249934,0,0);}
.ma2_c00482{transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);-ms-transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209320,-0.004814,0.005748,0.249934,0,0);}
.mae_c00482{transform:matrix(0.209440,-0.004817,0.005748,0.249934,0,0);-ms-transform:matrix(0.209440,-0.004817,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209440,-0.004817,0.005748,0.249934,0,0);}
.maa_c00482{transform:matrix(0.210749,-0.004847,0.005748,0.249934,0,0);-ms-transform:matrix(0.210749,-0.004847,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210749,-0.004847,0.005748,0.249934,0,0);}
.m1b_c00482{transform:matrix(0.210909,-0.004851,0.005748,0.249934,0,0);-ms-transform:matrix(0.210909,-0.004851,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210909,-0.004851,0.005748,0.249934,0,0);}
.me6_c00482{transform:matrix(0.211384,-0.004862,0.005748,0.249934,0,0);-ms-transform:matrix(0.211384,-0.004862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211384,-0.004862,0.005748,0.249934,0,0);}
.m50_c00482{transform:matrix(0.212804,-0.004894,0.005748,0.249934,0,0);-ms-transform:matrix(0.212804,-0.004894,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212804,-0.004894,0.005748,0.249934,0,0);}
.mc9_c00482{transform:matrix(0.213639,-0.004914,0.005748,0.249934,0,0);-ms-transform:matrix(0.213639,-0.004914,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213639,-0.004914,0.005748,0.249934,0,0);}
.mdb_c00482{transform:matrix(0.213773,-0.004917,0.005748,0.249934,0,0);-ms-transform:matrix(0.213773,-0.004917,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213773,-0.004917,0.005748,0.249934,0,0);}
.m21_c00482{transform:matrix(0.214383,-0.004931,0.005748,0.249934,0,0);-ms-transform:matrix(0.214383,-0.004931,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214383,-0.004931,0.005748,0.249934,0,0);}
.mbe_c00482{transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);-ms-transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);}
.mc8_c00482{transform:matrix(0.214603,-0.004936,0.005748,0.249934,0,0);-ms-transform:matrix(0.214603,-0.004936,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214603,-0.004936,0.005748,0.249934,0,0);}
.m7c_c00482{transform:matrix(0.214648,-0.004937,0.005748,0.249934,0,0);-ms-transform:matrix(0.214648,-0.004937,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214648,-0.004937,0.005748,0.249934,0,0);}
.m3c_c00482{transform:matrix(0.215313,-0.004952,0.005748,0.249934,0,0);-ms-transform:matrix(0.215313,-0.004952,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215313,-0.004952,0.005748,0.249934,0,0);}
.mcd_c00482{transform:matrix(0.215808,-0.004964,0.005748,0.249934,0,0);-ms-transform:matrix(0.215808,-0.004964,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215808,-0.004964,0.005748,0.249934,0,0);}
.m95_c00482{transform:matrix(0.216018,-0.004968,0.005748,0.249934,0,0);-ms-transform:matrix(0.216018,-0.004968,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216018,-0.004968,0.005748,0.249934,0,0);}
.ma0_c00482{transform:matrix(0.217552,-0.005004,0.005748,0.249934,0,0);-ms-transform:matrix(0.217552,-0.005004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217552,-0.005004,0.005748,0.249934,0,0);}
.m90_c00482{transform:matrix(0.217682,-0.005007,0.005748,0.249934,0,0);-ms-transform:matrix(0.217682,-0.005007,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217682,-0.005007,0.005748,0.249934,0,0);}
.m18_c00482{transform:matrix(0.218817,-0.005033,0.005748,0.249934,0,0);-ms-transform:matrix(0.218817,-0.005033,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218817,-0.005033,0.005748,0.249934,0,0);}
.mc6_c00482{transform:matrix(0.219262,-0.005043,0.005748,0.249934,0,0);-ms-transform:matrix(0.219262,-0.005043,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219262,-0.005043,0.005748,0.249934,0,0);}
.mc2_c00482{transform:matrix(0.219447,-0.005047,0.005748,0.249934,0,0);-ms-transform:matrix(0.219447,-0.005047,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219447,-0.005047,0.005748,0.249934,0,0);}
.md0_c00482{transform:matrix(0.219787,-0.005055,0.005748,0.249934,0,0);-ms-transform:matrix(0.219787,-0.005055,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219787,-0.005055,0.005748,0.249934,0,0);}
.m8f_c00482{transform:matrix(0.219807,-0.005056,0.005748,0.249934,0,0);-ms-transform:matrix(0.219807,-0.005056,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219807,-0.005056,0.005748,0.249934,0,0);}
.m6f_c00482{transform:matrix(0.219827,-0.005056,0.005748,0.249934,0,0);-ms-transform:matrix(0.219827,-0.005056,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219827,-0.005056,0.005748,0.249934,0,0);}
.md1_c00482{transform:matrix(0.221077,-0.005085,0.005748,0.249934,0,0);-ms-transform:matrix(0.221077,-0.005085,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221077,-0.005085,0.005748,0.249934,0,0);}
.mdc_c00482{transform:matrix(0.221231,-0.005088,0.005748,0.249934,0,0);-ms-transform:matrix(0.221231,-0.005088,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221231,-0.005088,0.005748,0.249934,0,0);}
.ma4_c00482{transform:matrix(0.221761,-0.005101,0.005748,0.249934,0,0);-ms-transform:matrix(0.221761,-0.005101,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221761,-0.005101,0.005748,0.249934,0,0);}
.m62_c00482{transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);-ms-transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221841,-0.005102,0.005748,0.249934,0,0);}
.mbf_c00482{transform:matrix(0.221941,-0.005105,0.005748,0.249934,0,0);-ms-transform:matrix(0.221941,-0.005105,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221941,-0.005105,0.005748,0.249934,0,0);}
.me2_c00482{transform:matrix(0.221986,-0.005106,0.005748,0.249934,0,0);-ms-transform:matrix(0.221986,-0.005106,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221986,-0.005106,0.005748,0.249934,0,0);}
.ma9_c00482{transform:matrix(0.223196,-0.005134,0.005748,0.249934,0,0);-ms-transform:matrix(0.223196,-0.005134,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223196,-0.005134,0.005748,0.249934,0,0);}
.mb2_c00482{transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);-ms-transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223561,-0.005142,0.005748,0.249934,0,0);}
.m4b_c00482{transform:matrix(0.224581,-0.005165,0.005748,0.249934,0,0);-ms-transform:matrix(0.224581,-0.005165,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224581,-0.005165,0.005748,0.249934,0,0);}
.mcb_c00482{transform:matrix(0.225055,-0.005176,0.005748,0.249934,0,0);-ms-transform:matrix(0.225055,-0.005176,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225055,-0.005176,0.005748,0.249934,0,0);}
.m1a_c00482{transform:matrix(0.225135,-0.005178,0.005748,0.249934,0,0);-ms-transform:matrix(0.225135,-0.005178,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225135,-0.005178,0.005748,0.249934,0,0);}
.mde_c00482{transform:matrix(0.225475,-0.005186,0.005748,0.249934,0,0);-ms-transform:matrix(0.225475,-0.005186,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225475,-0.005186,0.005748,0.249934,0,0);}
.mb5_c00482{transform:matrix(0.226130,-0.005201,0.005748,0.249934,0,0);-ms-transform:matrix(0.226130,-0.005201,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226130,-0.005201,0.005748,0.249934,0,0);}
.mc_c00482{transform:matrix(0.228015,-0.005244,0.005748,0.249934,0,0);-ms-transform:matrix(0.228015,-0.005244,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228015,-0.005244,0.005748,0.249934,0,0);}
.m1e_c00482{transform:matrix(0.228440,-0.005254,0.005748,0.249934,0,0);-ms-transform:matrix(0.228440,-0.005254,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228440,-0.005254,0.005748,0.249934,0,0);}
.m0_c00482{transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229135,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);-ms-transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229479,-0.005278,0.005748,0.249934,0,0);}
.mb1_c00482{transform:matrix(0.229664,-0.005282,0.005748,0.249934,0,0);-ms-transform:matrix(0.229664,-0.005282,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229664,-0.005282,0.005748,0.249934,0,0);}
.m19_c00482{transform:matrix(0.229969,-0.005289,0.005748,0.249934,0,0);-ms-transform:matrix(0.229969,-0.005289,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229969,-0.005289,0.005748,0.249934,0,0);}
.m94_c00482{transform:matrix(0.231894,-0.005334,0.005748,0.249934,0,0);-ms-transform:matrix(0.231894,-0.005334,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231894,-0.005334,0.005748,0.249934,0,0);}
.m5f_c00482{transform:matrix(0.231934,-0.005334,0.005748,0.249934,0,0);-ms-transform:matrix(0.231934,-0.005334,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231934,-0.005334,0.005748,0.249934,0,0);}
.m67_c00482{transform:matrix(0.232189,-0.005340,0.005748,0.249934,0,0);-ms-transform:matrix(0.232189,-0.005340,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232189,-0.005340,0.005748,0.249934,0,0);}
.me4_c00482{transform:matrix(0.232863,-0.005356,0.005748,0.249934,0,0);-ms-transform:matrix(0.232863,-0.005356,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232863,-0.005356,0.005748,0.249934,0,0);}
.m8e_c00482{transform:matrix(0.234393,-0.005391,0.005748,0.249934,0,0);-ms-transform:matrix(0.234393,-0.005391,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234393,-0.005391,0.005748,0.249934,0,0);}
.m86_c00482{transform:matrix(0.235963,-0.005427,0.005748,0.249934,0,0);-ms-transform:matrix(0.235963,-0.005427,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235963,-0.005427,0.005748,0.249934,0,0);}
.mca_c00482{transform:matrix(0.238302,-0.005481,0.005748,0.249934,0,0);-ms-transform:matrix(0.238302,-0.005481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.238302,-0.005481,0.005748,0.249934,0,0);}
.me3_c00482{transform:matrix(0.240451,-0.005530,0.005748,0.249934,0,0);-ms-transform:matrix(0.240451,-0.005530,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240451,-0.005530,0.005748,0.249934,0,0);}
.me_c00482{transform:matrix(0.240746,-0.005537,0.005748,0.249934,0,0);-ms-transform:matrix(0.240746,-0.005537,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240746,-0.005537,0.005748,0.249934,0,0);}
.m6d_c00482{transform:matrix(0.242356,-0.005574,0.005748,0.249934,0,0);-ms-transform:matrix(0.242356,-0.005574,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242356,-0.005574,0.005748,0.249934,0,0);}
.m1c_c00482{transform:matrix(0.242486,-0.005577,0.005748,0.249934,0,0);-ms-transform:matrix(0.242486,-0.005577,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242486,-0.005577,0.005748,0.249934,0,0);}
.m92_c00482{transform:matrix(0.251783,-0.005791,0.005748,0.249934,0,0);-ms-transform:matrix(0.251783,-0.005791,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251783,-0.005791,0.005748,0.249934,0,0);}
.mc7_c00482{transform:matrix(0.252513,-0.005808,0.005748,0.249934,0,0);-ms-transform:matrix(0.252513,-0.005808,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252513,-0.005808,0.005748,0.249934,0,0);}
.m93_c00482{transform:matrix(0.252563,-0.005809,0.005748,0.249934,0,0);-ms-transform:matrix(0.252563,-0.005809,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252563,-0.005809,0.005748,0.249934,0,0);}
.md4_c00482{transform:matrix(0.253183,-0.005823,0.005748,0.249934,0,0);-ms-transform:matrix(0.253183,-0.005823,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253183,-0.005823,0.005748,0.249934,0,0);}
.m48_c00482{transform:matrix(0.254468,-0.005853,0.005748,0.249934,0,0);-ms-transform:matrix(0.254468,-0.005853,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254468,-0.005853,0.005748,0.249934,0,0);}
.md5_c00482{transform:matrix(0.255123,-0.005868,0.005748,0.249934,0,0);-ms-transform:matrix(0.255123,-0.005868,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255123,-0.005868,0.005748,0.249934,0,0);}
.ma6_c00482{transform:matrix(0.262501,-0.006038,0.005748,0.249934,0,0);-ms-transform:matrix(0.262501,-0.006038,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262501,-0.006038,0.005748,0.249934,0,0);}
.m64_c00482{transform:matrix(0.274352,-0.006310,0.005748,0.249934,0,0);-ms-transform:matrix(0.274352,-0.006310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.274352,-0.006310,0.005748,0.249934,0,0);}
.m6c_c00482{transform:matrix(0.279416,-0.006427,0.005748,0.249934,0,0);-ms-transform:matrix(0.279416,-0.006427,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279416,-0.006427,0.005748,0.249934,0,0);}
.ma5_c00482{transform:matrix(0.294487,-0.006773,0.005748,0.249934,0,0);-ms-transform:matrix(0.294487,-0.006773,0.005748,0.249934,0,0);-webkit-transform:matrix(0.294487,-0.006773,0.005748,0.249934,0,0);}
.m47_c00482{transform:matrix(0.353252,-0.008125,0.005748,0.249934,0,0);-ms-transform:matrix(0.353252,-0.008125,0.005748,0.249934,0,0);-webkit-transform:matrix(0.353252,-0.008125,0.005748,0.249934,0,0);}
.m65_c00482{transform:matrix(0.364424,-0.008382,0.005748,0.249934,0,0);-ms-transform:matrix(0.364424,-0.008382,0.005748,0.249934,0,0);-webkit-transform:matrix(0.364424,-0.008382,0.005748,0.249934,0,0);}
.m3_c00482{transform:matrix(0.413826,-0.009518,0.005748,0.249934,0,0);-ms-transform:matrix(0.413826,-0.009518,0.005748,0.249934,0,0);-webkit-transform:matrix(0.413826,-0.009518,0.005748,0.249934,0,0);}
.me7_c00482{transform:matrix(0.556418,-0.012798,0.005748,0.249934,0,0);-ms-transform:matrix(0.556418,-0.012798,0.005748,0.249934,0,0);-webkit-transform:matrix(0.556418,-0.012798,0.005748,0.249934,0,0);}
.mb3_c00482{transform:matrix(0.808451,-0.018594,0.005748,0.249934,0,0);-ms-transform:matrix(0.808451,-0.018594,0.005748,0.249934,0,0);-webkit-transform:matrix(0.808451,-0.018594,0.005748,0.249934,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:0.000000px;}
._0_c00482{width:16.694757px;}
.fc0_c00482{color:transparent;}
.fs0_c00482{font-size:49.350000px;}
.fsb_c00482{font-size:59.865828px;}
.fs4_c00482{font-size:60.916106px;}
.fs2_c00482{font-size:61.966384px;}
.fsd_c00482{font-size:63.016661px;}
.fsc_c00482{font-size:64.066939px;}
.fs5_c00482{font-size:66.167494px;}
.fs8_c00482{font-size:67.217772px;}
.fs9_c00482{font-size:68.268050px;}
.fs7_c00482{font-size:69.318327px;}
.fs3_c00482{font-size:70.368605px;}
.fsa_c00482{font-size:71.418883px;}
.fs1_c00482{font-size:72.469160px;}
.fs6_c00482{font-size:73.519438px;}
.fse_c00482{font-size:74.569716px;}
.y0_c00482{bottom:0.000000px;}
.yf0_c00482{bottom:35.769522px;}
.yf1_c00482{bottom:36.326887px;}
.yf2_c00482{bottom:37.532908px;}
.yf3_c00482{bottom:38.267746px;}
.yf4_c00482{bottom:38.467441px;}
.yf5_c00482{bottom:39.254092px;}
.yf6_c00482{bottom:39.572683px;}
.ye8_c00482{bottom:51.708084px;}
.ye9_c00482{bottom:52.455181px;}
.yea_c00482{bottom:54.053671px;}
.yeb_c00482{bottom:54.413566px;}
.yec_c00482{bottom:55.003737px;}
.yed_c00482{bottom:56.487736px;}
.yee_c00482{bottom:56.947528px;}
.yef_c00482{bottom:57.841909px;}
.ydf_c00482{bottom:70.341963px;}
.ye0_c00482{bottom:71.117488px;}
.ye1_c00482{bottom:71.388561px;}
.ye2_c00482{bottom:72.772560px;}
.ye3_c00482{bottom:73.239424px;}
.ye4_c00482{bottom:73.725006px;}
.ye5_c00482{bottom:74.589837px;}
.ye6_c00482{bottom:75.630243px;}
.ye7_c00482{bottom:76.639339px;}
.yd8_c00482{bottom:86.276301px;}
.yd9_c00482{bottom:86.960209px;}
.yda_c00482{bottom:87.320458px;}
.ydb_c00482{bottom:88.482474px;}
.ydc_c00482{bottom:90.471252px;}
.ydd_c00482{bottom:90.768604px;}
.yde_c00482{bottom:92.140855px;}
.yce_c00482{bottom:102.756430px;}
.ycf_c00482{bottom:103.240282px;}
.yd0_c00482{bottom:104.741515px;}
.yd1_c00482{bottom:104.860309px;}
.yd2_c00482{bottom:105.761725px;}
.yd3_c00482{bottom:106.107378px;}
.yd4_c00482{bottom:107.472274px;}
.yd5_c00482{bottom:107.887837px;}
.yd6_c00482{bottom:109.733515px;}
.yd7_c00482{bottom:110.062782px;}
.yc6_c00482{bottom:118.695708px;}
.yc7_c00482{bottom:119.555302px;}
.yc8_c00482{bottom:120.878139px;}
.yc9_c00482{bottom:121.528527px;}
.yca_c00482{bottom:123.577609px;}
.ycb_c00482{bottom:123.940431px;}
.ycc_c00482{bottom:125.716902px;}
.ycd_c00482{bottom:126.493048px;}
.ybf_c00482{bottom:135.706638px;}
.yc0_c00482{bottom:136.202766px;}
.yc1_c00482{bottom:137.030473px;}
.yc2_c00482{bottom:139.241470px;}
.yc3_c00482{bottom:140.291662px;}
.yc4_c00482{bottom:141.770662px;}
.yc5_c00482{bottom:143.071195px;}
.yb9_c00482{bottom:153.262953px;}
.yba_c00482{bottom:154.618035px;}
.ybb_c00482{bottom:156.394458px;}
.ybc_c00482{bottom:157.580413px;}
.ybd_c00482{bottom:158.676933px;}
.ybe_c00482{bottom:159.938059px;}
.yb2_c00482{bottom:172.162704px;}
.yb3_c00482{bottom:172.751373px;}
.yb4_c00482{bottom:174.132547px;}
.yb5_c00482{bottom:175.133031px;}
.yb6_c00482{bottom:176.060761px;}
.yb7_c00482{bottom:176.436208px;}
.yb8_c00482{bottom:176.883270px;}
.yab_c00482{bottom:187.558639px;}
.yac_c00482{bottom:188.945229px;}
.yad_c00482{bottom:189.411565px;}
.yae_c00482{bottom:190.930462px;}
.yaf_c00482{bottom:191.586756px;}
.yb0_c00482{bottom:193.430056px;}
.yb1_c00482{bottom:193.800690px;}
.ya4_c00482{bottom:205.651897px;}
.ya5_c00482{bottom:206.308266px;}
.ya6_c00482{bottom:206.683743px;}
.ya7_c00482{bottom:207.950290px;}
.ya8_c00482{bottom:208.586109px;}
.ya9_c00482{bottom:208.883650px;}
.yaa_c00482{bottom:209.756863px;}
.y9c_c00482{bottom:221.587375px;}
.y9d_c00482{bottom:222.285414px;}
.y9e_c00482{bottom:223.612560px;}
.y9f_c00482{bottom:224.788216px;}
.ya0_c00482{bottom:225.086917px;}
.ya1_c00482{bottom:225.621391px;}
.ya2_c00482{bottom:226.093213px;}
.ya3_c00482{bottom:228.123331px;}
.y93_c00482{bottom:238.337523px;}
.y94_c00482{bottom:239.531844px;}
.y95_c00482{bottom:240.508224px;}
.y96_c00482{bottom:240.864502px;}
.y97_c00482{bottom:242.090907px;}
.y98_c00482{bottom:243.460875px;}
.y99_c00482{bottom:243.788037px;}
.y9a_c00482{bottom:244.293657px;}
.y9b_c00482{bottom:245.424933px;}
.y8b_c00482{bottom:256.426887px;}
.y8c_c00482{bottom:256.763964px;}
.y8d_c00482{bottom:257.128197px;}
.y8e_c00482{bottom:257.871603px;}
.y8f_c00482{bottom:258.334294px;}
.y90_c00482{bottom:259.498969px;}
.y91_c00482{bottom:259.733464px;}
.y92_c00482{bottom:260.880886px;}
.y83_c00482{bottom:272.364196px;}
.y84_c00482{bottom:273.094450px;}
.y85_c00482{bottom:274.004128px;}
.y86_c00482{bottom:275.485300px;}
.y87_c00482{bottom:276.094932px;}
.y88_c00482{bottom:278.353896px;}
.y89_c00482{bottom:278.718367px;}
.y8a_c00482{bottom:279.398841px;}
.y7a_c00482{bottom:290.186574px;}
.y7b_c00482{bottom:290.906716px;}
.y7c_c00482{bottom:291.117963px;}
.y7d_c00482{bottom:291.424584px;}
.y7e_c00482{bottom:292.339978px;}
.y7f_c00482{bottom:292.762902px;}
.y80_c00482{bottom:293.910057px;}
.y81_c00482{bottom:294.235605px;}
.y82_c00482{bottom:294.882663px;}
.y72_c00482{bottom:307.743604px;}
.y73_c00482{bottom:308.682276px;}
.y74_c00482{bottom:309.631419px;}
.y75_c00482{bottom:310.640375px;}
.y76_c00482{bottom:310.989327px;}
.y77_c00482{bottom:311.891338px;}
.y78_c00482{bottom:312.482989px;}
.y79_c00482{bottom:312.831942px;}
.y6a_c00482{bottom:324.758457px;}
.y6b_c00482{bottom:325.408635px;}
.y6c_c00482{bottom:326.158497px;}
.y6d_c00482{bottom:327.656048px;}
.y6e_c00482{bottom:328.383917px;}
.y6f_c00482{bottom:329.156393px;}
.y70_c00482{bottom:330.955461px;}
.y71_c00482{bottom:331.464057px;}
.y61_c00482{bottom:341.232401px;}
.y62_c00482{bottom:341.741621px;}
.y63_c00482{bottom:342.325050px;}
.y64_c00482{bottom:342.747641px;}
.y65_c00482{bottom:344.068887px;}
.y66_c00482{bottom:344.437761px;}
.y67_c00482{bottom:345.971804px;}
.y68_c00482{bottom:346.269953px;}
.y69_c00482{bottom:346.665288px;}
.y57_c00482{bottom:357.973847px;}
.y58_c00482{bottom:359.154456px;}
.y59_c00482{bottom:359.413985px;}
.y5a_c00482{bottom:359.989574px;}
.y5b_c00482{bottom:360.772955px;}
.y5c_c00482{bottom:361.453760px;}
.y5d_c00482{bottom:361.758815px;}
.y5e_c00482{bottom:362.369528px;}
.y5f_c00482{bottom:362.889413px;}
.y60_c00482{bottom:363.122495px;}
.y50_c00482{bottom:373.911608px;}
.y51_c00482{bottom:374.557893px;}
.y52_c00482{bottom:375.099546px;}
.y53_c00482{bottom:376.539614px;}
.y54_c00482{bottom:378.175544px;}
.y55_c00482{bottom:380.063913px;}
.y56_c00482{bottom:381.291284px;}
.y4a_c00482{bottom:391.193820px;}
.y4b_c00482{bottom:392.820927px;}
.y4c_c00482{bottom:394.006547px;}
.y4d_c00482{bottom:395.222612px;}
.y4e_c00482{bottom:395.582060px;}
.y4f_c00482{bottom:397.342265px;}
.y45_c00482{bottom:407.939178px;}
.y46_c00482{bottom:408.777603px;}
.y47_c00482{bottom:410.591712px;}
.y48_c00482{bottom:411.102201px;}
.y49_c00482{bottom:415.834911px;}
.y3d_c00482{bottom:424.408641px;}
.y3e_c00482{bottom:425.362284px;}
.y3f_c00482{bottom:426.894795px;}
.y40_c00482{bottom:427.359342px;}
.y41_c00482{bottom:428.403914px;}
.y42_c00482{bottom:428.715636px;}
.y43_c00482{bottom:429.085097px;}
.y44_c00482{bottom:430.015071px;}
.y35_c00482{bottom:442.234312px;}
.y36_c00482{bottom:443.229294px;}
.y37_c00482{bottom:443.686812px;}
.y38_c00482{bottom:444.896854px;}
.y39_c00482{bottom:445.533602px;}
.y3a_c00482{bottom:445.779699px;}
.y3b_c00482{bottom:446.116851px;}
.y3c_c00482{bottom:447.047758px;}
.y2d_c00482{bottom:458.707227px;}
.y2e_c00482{bottom:459.712502px;}
.y2f_c00482{bottom:460.853885px;}
.y30_c00482{bottom:462.129048px;}
.y31_c00482{bottom:462.365747px;}
.y32_c00482{bottom:462.785200px;}
.y33_c00482{bottom:464.159142px;}
.y34_c00482{bottom:464.542973px;}
.y25_c00482{bottom:475.722419px;}
.y26_c00482{bottom:476.228416px;}
.y27_c00482{bottom:476.635426px;}
.y28_c00482{bottom:477.730919px;}
.y29_c00482{bottom:478.142414px;}
.y2a_c00482{bottom:479.405760px;}
.y2b_c00482{bottom:479.660820px;}
.y2c_c00482{bottom:480.135317px;}
.y1e_c00482{bottom:492.192802px;}
.y1f_c00482{bottom:492.425458px;}
.y20_c00482{bottom:494.336215px;}
.y21_c00482{bottom:495.396459px;}
.y22_c00482{bottom:495.729150px;}
.y23_c00482{bottom:497.344356px;}
.y24_c00482{bottom:498.121797px;}
.y17_c00482{bottom:510.560462px;}
.y18_c00482{bottom:510.828930px;}
.y19_c00482{bottom:511.650038px;}
.y1a_c00482{bottom:512.759870px;}
.y1b_c00482{bottom:512.958598px;}
.y1c_c00482{bottom:514.112910px;}
.y1d_c00482{bottom:515.201985px;}
.y10_c00482{bottom:526.497764px;}
.y11_c00482{bottom:527.431176px;}
.y12_c00482{bottom:527.957583px;}
.y13_c00482{bottom:529.616791px;}
.y14_c00482{bottom:530.006374px;}
.y15_c00482{bottom:531.269928px;}
.y16_c00482{bottom:533.097890px;}
.y9_c00482{bottom:543.513130px;}
.ya_c00482{bottom:545.436932px;}
.yb_c00482{bottom:546.084897px;}
.yc_c00482{bottom:547.130311px;}
.yd_c00482{bottom:548.399627px;}
.ye_c00482{bottom:549.118902px;}
.yf_c00482{bottom:550.297242px;}
.y2_c00482{bottom:560.527500px;}
.y3_c00482{bottom:561.428433px;}
.y4_c00482{bottom:563.422119px;}
.y5_c00482{bottom:564.751197px;}
.y6_c00482{bottom:565.403075px;}
.y7_c00482{bottom:566.741364px;}
.y8_c00482{bottom:567.110652px;}
.y1_c00482{bottom:579.154500px;}
.h2_c00482{height:49.350000px;}
.hd_c00482{height:59.865828px;}
.h6_c00482{height:60.916106px;}
.h4_c00482{height:61.966384px;}
.hf_c00482{height:63.016661px;}
.he_c00482{height:64.066939px;}
.h7_c00482{height:66.167494px;}
.ha_c00482{height:67.217772px;}
.hb_c00482{height:68.268050px;}
.h9_c00482{height:69.318327px;}
.h5_c00482{height:70.368605px;}
.hc_c00482{height:71.418883px;}
.h3_c00482{height:72.469160px;}
.h8_c00482{height:73.519438px;}
.h10_c00482{height:74.569716px;}
.h0_c00482{height:617.700000px;}
.h1_c00482{height:618.000000px;}
.w0_c00482{width:359.100000px;}
.w1_c00482{width:359.250000px;}
.x0_c00482{left:0.000000px;}
.x1a_c00482{left:3.526989px;}
.x2_c00482{left:14.644500px;}
.x3a_c00482{left:16.287765px;}
.x37_c00482{left:17.878826px;}
.x51_c00482{left:19.306581px;}
.x6d_c00482{left:20.400302px;}
.x66_c00482{left:21.421215px;}
.x7c_c00482{left:22.625772px;}
.x69_c00482{left:25.922177px;}
.x14_c00482{left:30.705455px;}
.x52_c00482{left:38.007720px;}
.x1f_c00482{left:39.330906px;}
.x3b_c00482{left:41.124540px;}
.x34_c00482{left:43.609217px;}
.x4d_c00482{left:46.962552px;}
.x59_c00482{left:49.456361px;}
.x63_c00482{left:51.529137px;}
.x74_c00482{left:52.777451px;}
.x3_c00482{left:53.815500px;}
.x76_c00482{left:54.915771px;}
.x53_c00482{left:58.281066px;}
.x20_c00482{left:59.702321px;}
.x4a_c00482{left:60.702351px;}
.x25_c00482{left:62.117619px;}
.x42_c00482{left:64.536882px;}
.x2b_c00482{left:66.946585px;}
.x75_c00482{left:69.941244px;}
.x6a_c00482{left:71.604398px;}
.x44_c00482{left:73.802415px;}
.xf_c00482{left:75.146201px;}
.x61_c00482{left:79.143476px;}
.x15_c00482{left:82.066235px;}
.x5e_c00482{left:84.456515px;}
.x38_c00482{left:85.686273px;}
.x3e_c00482{left:88.458192px;}
.x2c_c00482{left:91.014793px;}
.x9_c00482{left:94.574160px;}
.x72_c00482{left:97.014086px;}
.x6e_c00482{left:98.388366px;}
.x54_c00482{left:99.607827px;}
.x1b_c00482{left:100.960232px;}
.x35_c00482{left:104.082488px;}
.x5a_c00482{left:107.158361px;}
.x21_c00482{left:114.510116px;}
.x26_c00482{left:116.441103px;}
.xa_c00482{left:121.572039px;}
.x55_c00482{left:125.271260px;}
.x64_c00482{left:128.219435px;}
.x77_c00482{left:130.137996px;}
.x30_c00482{left:133.444239px;}
.x22_c00482{left:135.076530px;}
.x73_c00482{left:136.281395px;}
.x4e_c00482{left:138.906204px;}
.x4_c00482{left:140.497500px;}
.x67_c00482{left:141.847901px;}
.x10_c00482{left:144.284114px;}
.x6b_c00482{left:147.832875px;}
.x1c_c00482{left:149.145836px;}
.x16_c00482{left:151.461413px;}
.x1_c00482{left:152.820000px;}
.x2d_c00482{left:154.718159px;}
.x3f_c00482{left:156.352850px;}
.x5b_c00482{left:158.273861px;}
.x11_c00482{left:160.504734px;}
.x45_c00482{left:162.794810px;}
.x17_c00482{left:163.886414px;}
.xb_c00482{left:165.132539px;}
.x49_c00482{left:170.052533px;}
.x5c_c00482{left:171.260861px;}
.x78_c00482{left:173.440997px;}
.x27_c00482{left:177.168397px;}
.x7d_c00482{left:178.682354px;}
.x3c_c00482{left:180.208415px;}
.x65_c00482{left:183.790317px;}
.x39_c00482{left:185.735462px;}
.x28_c00482{left:188.438415px;}
.x40_c00482{left:190.390196px;}
.x46_c00482{left:193.705395px;}
.x6f_c00482{left:194.810792px;}
.x5_c00482{left:198.283500px;}
.x2e_c00482{left:201.193937px;}
.x56_c00482{left:203.070230px;}
.x31_c00482{left:205.257017px;}
.x29_c00482{left:208.437346px;}
.x23_c00482{left:210.947240px;}
.x12_c00482{left:213.158027px;}
.x5d_c00482{left:215.012861px;}
.xc_c00482{left:218.036331px;}
.x32_c00482{left:220.115207px;}
.x5f_c00482{left:221.931129px;}
.x43_c00482{left:223.091382px;}
.x6_c00482{left:226.626000px;}
.x68_c00482{left:229.666863px;}
.x24_c00482{left:234.644361px;}
.x18_c00482{left:235.998506px;}
.x1d_c00482{left:237.686871px;}
.x7b_c00482{left:238.925367px;}
.x7e_c00482{left:240.294255px;}
.x58_c00482{left:245.695194px;}
.xd_c00482{left:248.004141px;}
.x4f_c00482{left:249.207080px;}
.x3d_c00482{left:252.849912px;}
.x4b_c00482{left:256.528865px;}
.x79_c00482{left:260.061998px;}
.x41_c00482{left:262.206164px;}
.x50_c00482{left:263.226614px;}
.x47_c00482{left:265.661583px;}
.x57_c00482{left:266.791544px;}
.x2f_c00482{left:267.876543px;}
.x70_c00482{left:271.249529px;}
.x1e_c00482{left:273.054699px;}
.x62_c00482{left:274.135976px;}
.x60_c00482{left:276.470892px;}
.x36_c00482{left:278.867370px;}
.x6c_c00482{left:279.889659px;}
.x33_c00482{left:281.963036px;}
.x7_c00482{left:284.812500px;}
.x48_c00482{left:286.012652px;}
.x13_c00482{left:289.306767px;}
.x2a_c00482{left:292.105176px;}
.x4c_c00482{left:294.580109px;}
.xe_c00482{left:297.083003px;}
.x71_c00482{left:298.991855px;}
.x8_c00482{left:300.868500px;}
.x19_c00482{left:304.034442px;}
.x7a_c00482{left:305.958567px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
._0_c00482{width:14.839784pt;}
.fs0_c00482{font-size:43.866667pt;}
.fsb_c00482{font-size:53.214070pt;}
.fs4_c00482{font-size:54.147650pt;}
.fs2_c00482{font-size:55.081230pt;}
.fsd_c00482{font-size:56.014810pt;}
.fsc_c00482{font-size:56.948390pt;}
.fs5_c00482{font-size:58.815551pt;}
.fs8_c00482{font-size:59.749131pt;}
.fs9_c00482{font-size:60.682711pt;}
.fs7_c00482{font-size:61.616291pt;}
.fs3_c00482{font-size:62.549871pt;}
.fsa_c00482{font-size:63.483451pt;}
.fs1_c00482{font-size:64.417032pt;}
.fs6_c00482{font-size:65.350612pt;}
.fse_c00482{font-size:66.284192pt;}
.y0_c00482{bottom:0.000000pt;}
.yf0_c00482{bottom:31.795131pt;}
.yf1_c00482{bottom:32.290567pt;}
.yf2_c00482{bottom:33.362585pt;}
.yf3_c00482{bottom:34.015775pt;}
.yf4_c00482{bottom:34.193281pt;}
.yf5_c00482{bottom:34.892527pt;}
.yf6_c00482{bottom:35.175719pt;}
.ye8_c00482{bottom:45.962741pt;}
.ye9_c00482{bottom:46.626828pt;}
.yea_c00482{bottom:48.047708pt;}
.yeb_c00482{bottom:48.367615pt;}
.yec_c00482{bottom:48.892211pt;}
.yed_c00482{bottom:50.211321pt;}
.yee_c00482{bottom:50.620025pt;}
.yef_c00482{bottom:51.415031pt;}
.ydf_c00482{bottom:62.526189pt;}
.ye0_c00482{bottom:63.215545pt;}
.ye1_c00482{bottom:63.456499pt;}
.ye2_c00482{bottom:64.686720pt;}
.ye3_c00482{bottom:65.101711pt;}
.ye4_c00482{bottom:65.533339pt;}
.ye5_c00482{bottom:66.302077pt;}
.ye6_c00482{bottom:67.226883pt;}
.ye7_c00482{bottom:68.123857pt;}
.yd8_c00482{bottom:76.690045pt;}
.yd9_c00482{bottom:77.297964pt;}
.yda_c00482{bottom:77.618185pt;}
.ydb_c00482{bottom:78.651088pt;}
.ydc_c00482{bottom:80.418891pt;}
.ydd_c00482{bottom:80.683204pt;}
.yde_c00482{bottom:81.902983pt;}
.yce_c00482{bottom:91.339049pt;}
.ycf_c00482{bottom:91.769140pt;}
.yd0_c00482{bottom:93.103569pt;}
.yd1_c00482{bottom:93.209164pt;}
.yd2_c00482{bottom:94.010423pt;}
.yd3_c00482{bottom:94.317669pt;}
.yd4_c00482{bottom:95.530911pt;}
.yd5_c00482{bottom:95.900300pt;}
.yd6_c00482{bottom:97.540903pt;}
.yd7_c00482{bottom:97.833584pt;}
.yc6_c00482{bottom:105.507296pt;}
.yc7_c00482{bottom:106.271380pt;}
.yc8_c00482{bottom:107.447235pt;}
.yc9_c00482{bottom:108.025357pt;}
.yca_c00482{bottom:109.846764pt;}
.ycb_c00482{bottom:110.169272pt;}
.ycc_c00482{bottom:111.748357pt;}
.ycd_c00482{bottom:112.438265pt;}
.ybf_c00482{bottom:120.628123pt;}
.yc0_c00482{bottom:121.069125pt;}
.yc1_c00482{bottom:121.804865pt;}
.yc2_c00482{bottom:123.770196pt;}
.yc3_c00482{bottom:124.703700pt;}
.yc4_c00482{bottom:126.018367pt;}
.yc5_c00482{bottom:127.174396pt;}
.yb9_c00482{bottom:136.233736pt;}
.yba_c00482{bottom:137.438253pt;}
.ybb_c00482{bottom:139.017296pt;}
.ybc_c00482{bottom:140.071479pt;}
.ybd_c00482{bottom:141.046163pt;}
.ybe_c00482{bottom:142.167164pt;}
.yb2_c00482{bottom:153.033515pt;}
.yb3_c00482{bottom:153.556776pt;}
.yb4_c00482{bottom:154.784487pt;}
.yb5_c00482{bottom:155.673805pt;}
.yb6_c00482{bottom:156.498455pt;}
.yb7_c00482{bottom:156.832185pt;}
.yb8_c00482{bottom:157.229573pt;}
.yab_c00482{bottom:166.718791pt;}
.yac_c00482{bottom:167.951315pt;}
.yad_c00482{bottom:168.365836pt;}
.yae_c00482{bottom:169.715967pt;}
.yaf_c00482{bottom:170.299339pt;}
.yb0_c00482{bottom:171.937828pt;}
.yb1_c00482{bottom:172.267280pt;}
.ya4_c00482{bottom:182.801687pt;}
.ya5_c00482{bottom:183.385125pt;}
.ya6_c00482{bottom:183.718883pt;}
.ya7_c00482{bottom:184.844703pt;}
.ya8_c00482{bottom:185.409875pt;}
.ya9_c00482{bottom:185.674356pt;}
.yaa_c00482{bottom:186.450545pt;}
.y9c_c00482{bottom:196.966556pt;}
.y9d_c00482{bottom:197.587035pt;}
.y9e_c00482{bottom:198.766720pt;}
.y9f_c00482{bottom:199.811748pt;}
.ya0_c00482{bottom:200.077260pt;}
.ya1_c00482{bottom:200.552348pt;}
.ya2_c00482{bottom:200.971745pt;}
.ya3_c00482{bottom:202.776295pt;}
.y93_c00482{bottom:211.855576pt;}
.y94_c00482{bottom:212.917195pt;}
.y95_c00482{bottom:213.785088pt;}
.y96_c00482{bottom:214.101780pt;}
.y97_c00482{bottom:215.191917pt;}
.y98_c00482{bottom:216.409667pt;}
.y99_c00482{bottom:216.700477pt;}
.y9a_c00482{bottom:217.149917pt;}
.y9b_c00482{bottom:218.155496pt;}
.y8b_c00482{bottom:227.935011pt;}
.y8c_c00482{bottom:228.234635pt;}
.y8d_c00482{bottom:228.558397pt;}
.y8e_c00482{bottom:229.219203pt;}
.y8f_c00482{bottom:229.630484pt;}
.y90_c00482{bottom:230.665751pt;}
.y91_c00482{bottom:230.874191pt;}
.y92_c00482{bottom:231.894121pt;}
.y83_c00482{bottom:242.101508pt;}
.y84_c00482{bottom:242.750623pt;}
.y85_c00482{bottom:243.559225pt;}
.y86_c00482{bottom:244.875823pt;}
.y87_c00482{bottom:245.417717pt;}
.y88_c00482{bottom:247.425685pt;}
.y89_c00482{bottom:247.749660pt;}
.y8a_c00482{bottom:248.354525pt;}
.y7a_c00482{bottom:257.943621pt;}
.y7b_c00482{bottom:258.583748pt;}
.y7c_c00482{bottom:258.771523pt;}
.y7d_c00482{bottom:259.044075pt;}
.y7e_c00482{bottom:259.857759pt;}
.y7f_c00482{bottom:260.233691pt;}
.y80_c00482{bottom:261.253384pt;}
.y81_c00482{bottom:261.542760pt;}
.y82_c00482{bottom:262.117923pt;}
.y72_c00482{bottom:273.549871pt;}
.y73_c00482{bottom:274.384245pt;}
.y74_c00482{bottom:275.227928pt;}
.y75_c00482{bottom:276.124777pt;}
.y76_c00482{bottom:276.434957pt;}
.y77_c00482{bottom:277.236745pt;}
.y78_c00482{bottom:277.762657pt;}
.y79_c00482{bottom:278.072837pt;}
.y6a_c00482{bottom:288.674184pt;}
.y6b_c00482{bottom:289.252120pt;}
.y6c_c00482{bottom:289.918664pt;}
.y6d_c00482{bottom:291.249820pt;}
.y6e_c00482{bottom:291.896815pt;}
.y6f_c00482{bottom:292.583460pt;}
.y70_c00482{bottom:294.182632pt;}
.y71_c00482{bottom:294.634717pt;}
.y61_c00482{bottom:303.317689pt;}
.y62_c00482{bottom:303.770329pt;}
.y63_c00482{bottom:304.288933pt;}
.y64_c00482{bottom:304.664569pt;}
.y65_c00482{bottom:305.839011pt;}
.y66_c00482{bottom:306.166899pt;}
.y67_c00482{bottom:307.530492pt;}
.y68_c00482{bottom:307.795513pt;}
.y69_c00482{bottom:308.146923pt;}
.y57_c00482{bottom:318.198975pt;}
.y58_c00482{bottom:319.248405pt;}
.y59_c00482{bottom:319.479097pt;}
.y5a_c00482{bottom:319.990732pt;}
.y5b_c00482{bottom:320.687071pt;}
.y5c_c00482{bottom:321.292231pt;}
.y5d_c00482{bottom:321.563391pt;}
.y5e_c00482{bottom:322.106247pt;}
.y5f_c00482{bottom:322.568367pt;}
.y60_c00482{bottom:322.775551pt;}
.y50_c00482{bottom:332.365873pt;}
.y51_c00482{bottom:332.940349pt;}
.y52_c00482{bottom:333.421819pt;}
.y53_c00482{bottom:334.701879pt;}
.y54_c00482{bottom:336.156039pt;}
.y55_c00482{bottom:337.834589pt;}
.y56_c00482{bottom:338.925585pt;}
.y4a_c00482{bottom:347.727840pt;}
.y4b_c00482{bottom:349.174157pt;}
.y4c_c00482{bottom:350.228041pt;}
.y4d_c00482{bottom:351.308988pt;}
.y4e_c00482{bottom:351.628497pt;}
.y4f_c00482{bottom:353.193124pt;}
.y45_c00482{bottom:362.612603pt;}
.y46_c00482{bottom:363.357869pt;}
.y47_c00482{bottom:364.970411pt;}
.y48_c00482{bottom:365.424179pt;}
.y49_c00482{bottom:369.631032pt;}
.y3d_c00482{bottom:377.252125pt;}
.y3e_c00482{bottom:378.099808pt;}
.y3f_c00482{bottom:379.462040pt;}
.y40_c00482{bottom:379.874971pt;}
.y41_c00482{bottom:380.803479pt;}
.y42_c00482{bottom:381.080565pt;}
.y43_c00482{bottom:381.408975pt;}
.y44_c00482{bottom:382.235619pt;}
.y35_c00482{bottom:393.097167pt;}
.y36_c00482{bottom:393.981595pt;}
.y37_c00482{bottom:394.388277pt;}
.y38_c00482{bottom:395.463871pt;}
.y39_c00482{bottom:396.029868pt;}
.y3a_c00482{bottom:396.248621pt;}
.y3b_c00482{bottom:396.548312pt;}
.y3c_c00482{bottom:397.375785pt;}
.y2d_c00482{bottom:407.739757pt;}
.y2e_c00482{bottom:408.633335pt;}
.y2f_c00482{bottom:409.647897pt;}
.y30_c00482{bottom:410.781376pt;}
.y31_c00482{bottom:410.991775pt;}
.y32_c00482{bottom:411.364623pt;}
.y33_c00482{bottom:412.585904pt;}
.y34_c00482{bottom:412.927087pt;}
.y25_c00482{bottom:422.864372pt;}
.y26_c00482{bottom:423.314148pt;}
.y27_c00482{bottom:423.675935pt;}
.y28_c00482{bottom:424.649705pt;}
.y29_c00482{bottom:425.015479pt;}
.y2a_c00482{bottom:426.138453pt;}
.y2b_c00482{bottom:426.365173pt;}
.y2c_c00482{bottom:426.786948pt;}
.y1e_c00482{bottom:437.504713pt;}
.y1f_c00482{bottom:437.711519pt;}
.y20_c00482{bottom:439.409969pt;}
.y21_c00482{bottom:440.352408pt;}
.y22_c00482{bottom:440.648133pt;}
.y23_c00482{bottom:442.083872pt;}
.y24_c00482{bottom:442.774931pt;}
.y17_c00482{bottom:453.831521pt;}
.y18_c00482{bottom:454.070160pt;}
.y19_c00482{bottom:454.800033pt;}
.y1a_c00482{bottom:455.786551pt;}
.y1b_c00482{bottom:455.963199pt;}
.y1c_c00482{bottom:456.989253pt;}
.y1d_c00482{bottom:457.957320pt;}
.y10_c00482{bottom:467.998012pt;}
.y11_c00482{bottom:468.827712pt;}
.y12_c00482{bottom:469.295629pt;}
.y13_c00482{bottom:470.770481pt;}
.y14_c00482{bottom:471.116777pt;}
.y15_c00482{bottom:472.239936pt;}
.y16_c00482{bottom:473.864791pt;}
.y9_c00482{bottom:483.122783pt;}
.ya_c00482{bottom:484.832828pt;}
.yb_c00482{bottom:485.408797pt;}
.yc_c00482{bottom:486.338055pt;}
.yd_c00482{bottom:487.466335pt;}
.ye_c00482{bottom:488.105691pt;}
.yf_c00482{bottom:489.153104pt;}
.y2_c00482{bottom:498.246667pt;}
.y3_c00482{bottom:499.047496pt;}
.y4_c00482{bottom:500.819661pt;}
.y5_c00482{bottom:502.001064pt;}
.y6_c00482{bottom:502.580511pt;}
.y7_c00482{bottom:503.770101pt;}
.y8_c00482{bottom:504.098357pt;}
.y1_c00482{bottom:514.804000pt;}
.h2_c00482{height:43.866667pt;}
.hd_c00482{height:53.214070pt;}
.h6_c00482{height:54.147650pt;}
.h4_c00482{height:55.081230pt;}
.hf_c00482{height:56.014810pt;}
.he_c00482{height:56.948390pt;}
.h7_c00482{height:58.815551pt;}
.ha_c00482{height:59.749131pt;}
.hb_c00482{height:60.682711pt;}
.h9_c00482{height:61.616291pt;}
.h5_c00482{height:62.549871pt;}
.hc_c00482{height:63.483451pt;}
.h3_c00482{height:64.417032pt;}
.h8_c00482{height:65.350612pt;}
.h10_c00482{height:66.284192pt;}
.h0_c00482{height:549.066667pt;}
.h1_c00482{height:549.333333pt;}
.w0_c00482{width:319.200000pt;}
.w1_c00482{width:319.333333pt;}
.x0_c00482{left:0.000000pt;}
.x1a_c00482{left:3.135101pt;}
.x2_c00482{left:13.017333pt;}
.x3a_c00482{left:14.478013pt;}
.x37_c00482{left:15.892289pt;}
.x51_c00482{left:17.161405pt;}
.x6d_c00482{left:18.133601pt;}
.x66_c00482{left:19.041080pt;}
.x7c_c00482{left:20.111797pt;}
.x69_c00482{left:23.041935pt;}
.x14_c00482{left:27.293737pt;}
.x52_c00482{left:33.784640pt;}
.x1f_c00482{left:34.960805pt;}
.x3b_c00482{left:36.555147pt;}
.x34_c00482{left:38.763748pt;}
.x4d_c00482{left:41.744491pt;}
.x59_c00482{left:43.961209pt;}
.x63_c00482{left:45.803677pt;}
.x74_c00482{left:46.913289pt;}
.x3_c00482{left:47.836000pt;}
.x76_c00482{left:48.814019pt;}
.x53_c00482{left:51.805392pt;}
.x20_c00482{left:53.068729pt;}
.x4a_c00482{left:53.957645pt;}
.x25_c00482{left:55.215661pt;}
.x42_c00482{left:57.366117pt;}
.x2b_c00482{left:59.508076pt;}
.x75_c00482{left:62.169995pt;}
.x6a_c00482{left:63.648353pt;}
.x44_c00482{left:65.602147pt;}
.xf_c00482{left:66.796623pt;}
.x61_c00482{left:70.349756pt;}
.x15_c00482{left:72.947764pt;}
.x5e_c00482{left:75.072457pt;}
.x38_c00482{left:76.165576pt;}
.x3e_c00482{left:78.629504pt;}
.x2c_c00482{left:80.902039pt;}
.x9_c00482{left:84.065920pt;}
.x72_c00482{left:86.234743pt;}
.x6e_c00482{left:87.456325pt;}
.x54_c00482{left:88.540291pt;}
.x1b_c00482{left:89.742428pt;}
.x35_c00482{left:92.517767pt;}
.x5a_c00482{left:95.251876pt;}
.x21_c00482{left:101.786769pt;}
.x26_c00482{left:103.503203pt;}
.xa_c00482{left:108.064035pt;}
.x55_c00482{left:111.352231pt;}
.x64_c00482{left:113.972831pt;}
.x77_c00482{left:115.678219pt;}
.x30_c00482{left:118.617101pt;}
.x22_c00482{left:120.068027pt;}
.x73_c00482{left:121.139017pt;}
.x4e_c00482{left:123.472181pt;}
.x4_c00482{left:124.886667pt;}
.x67_c00482{left:126.087023pt;}
.x10_c00482{left:128.252545pt;}
.x6b_c00482{left:131.407000pt;}
.x1c_c00482{left:132.574076pt;}
.x16_c00482{left:134.632367pt;}
.x1_c00482{left:135.840000pt;}
.x2d_c00482{left:137.527252pt;}
.x3f_c00482{left:138.980311pt;}
.x5b_c00482{left:140.687876pt;}
.x11_c00482{left:142.670875pt;}
.x45_c00482{left:144.706497pt;}
.x17_c00482{left:145.676812pt;}
.xb_c00482{left:146.784479pt;}
.x49_c00482{left:151.157807pt;}
.x5c_c00482{left:152.231876pt;}
.x78_c00482{left:154.169775pt;}
.x27_c00482{left:157.483020pt;}
.x7d_c00482{left:158.828759pt;}
.x3c_c00482{left:160.185257pt;}
.x65_c00482{left:163.369171pt;}
.x39_c00482{left:165.098188pt;}
.x28_c00482{left:167.500813pt;}
.x40_c00482{left:169.235729pt;}
.x46_c00482{left:172.182573pt;}
.x6f_c00482{left:173.165148pt;}
.x5_c00482{left:176.252000pt;}
.x2e_c00482{left:178.839055pt;}
.x56_c00482{left:180.506871pt;}
.x31_c00482{left:182.450681pt;}
.x29_c00482{left:185.277641pt;}
.x23_c00482{left:187.508657pt;}
.x12_c00482{left:189.473801pt;}
.x5d_c00482{left:191.122543pt;}
.xc_c00482{left:193.810072pt;}
.x32_c00482{left:195.657961pt;}
.x5f_c00482{left:197.272115pt;}
.x43_c00482{left:198.303451pt;}
.x6_c00482{left:201.445333pt;}
.x68_c00482{left:204.148323pt;}
.x24_c00482{left:208.572765pt;}
.x18_c00482{left:209.776449pt;}
.x1d_c00482{left:211.277219pt;}
.x7b_c00482{left:212.378104pt;}
.x7e_c00482{left:213.594893pt;}
.x58_c00482{left:218.395728pt;}
.xd_c00482{left:220.448125pt;}
.x4f_c00482{left:221.517404pt;}
.x3d_c00482{left:224.755477pt;}
.x4b_c00482{left:228.025657pt;}
.x79_c00482{left:231.166220pt;}
.x41_c00482{left:233.072145pt;}
.x50_c00482{left:233.979212pt;}
.x47_c00482{left:236.143629pt;}
.x57_c00482{left:237.148039pt;}
.x2f_c00482{left:238.112483pt;}
.x70_c00482{left:241.110692pt;}
.x1e_c00482{left:242.715288pt;}
.x62_c00482{left:243.676423pt;}
.x60_c00482{left:245.751904pt;}
.x36_c00482{left:247.882107pt;}
.x6c_c00482{left:248.790808pt;}
.x33_c00482{left:250.633809pt;}
.x7_c00482{left:253.166667pt;}
.x48_c00482{left:254.233468pt;}
.x13_c00482{left:257.161571pt;}
.x2a_c00482{left:259.649045pt;}
.x4c_c00482{left:261.848985pt;}
.xe_c00482{left:264.073780pt;}
.x71_c00482{left:265.770537pt;}
.x8_c00482{left:267.438667pt;}
.x19_c00482{left:270.252837pt;}
.x7a_c00482{left:271.963171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00483 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00483 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00483 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00483 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00483{transform:matrix(0.012495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012495,0.000000,0.000000,0.250000,0,0);}
.m4e_c00483{transform:matrix(0.019490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019490,0.000000,0.000000,0.250000,0,0);}
.m7b_c00483{transform:matrix(0.055765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055765,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098720,0.000000,0.000000,0.250000,0,0);}
.m4d_c00483{transform:matrix(0.098810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098810,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.mf0_c00483{transform:matrix(0.137480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137480,0.000000,0.000000,0.250000,0,0);}
.mba_c00483{transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);}
.mec_c00483{transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149285,0.000000,0.000000,0.250000,0,0);}
.mc9_c00483{transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);}
.m32_c00483{transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);}
.m97_c00483{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m1a_c00483{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m37_c00483{transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153805,0.000000,0.000000,0.250000,0,0);}
.mac_c00483{transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153965,0.000000,0.000000,0.250000,0,0);}
.m1e_c00483{transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154730,0.000000,0.000000,0.250000,0,0);}
.mc7_c00483{transform:matrix(0.154965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154965,0.000000,0.000000,0.250000,0,0);}
.mc8_c00483{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m36_c00483{transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155935,0.000000,0.000000,0.250000,0,0);}
.ma5_c00483{transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156340,0.000000,0.000000,0.250000,0,0);}
.m22_c00483{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m35_c00483{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00483{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{transform:matrix(0.160170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160170,0.000000,0.000000,0.250000,0,0);}
.m96_c00483{transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);}
.mae_c00483{transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);}
.m85_c00483{transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163105,0.000000,0.000000,0.250000,0,0);}
.m84_c00483{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.mc2_c00483{transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164035,0.000000,0.000000,0.250000,0,0);}
.m5e_c00483{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.mbb_c00483{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m21_c00483{transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165305,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m29_c00483{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00483{transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166085,0.000000,0.000000,0.250000,0,0);}
.m6e_c00483{transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166255,0.000000,0.000000,0.250000,0,0);}
.m70_c00483{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m92_c00483{transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);}
.med_c00483{transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167985,0.000000,0.000000,0.250000,0,0);}
.m49_c00483{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);}
.mef_c00483{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.ma9_c00483{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.me2_c00483{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169205,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.me4_c00483{transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169545,0.000000,0.000000,0.250000,0,0);}
.m18_c00483{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.ma2_c00483{transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170380,0.000000,0.000000,0.250000,0,0);}
.m3e_c00483{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m67_c00483{transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171240,0.000000,0.000000,0.250000,0,0);}
.m5b_c00483{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m55_c00483{transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);}
.m86_c00483{transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173230,0.000000,0.000000,0.250000,0,0);}
.mdf_c00483{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00483{transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174295,0.000000,0.000000,0.250000,0,0);}
.mde_c00483{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.m69_c00483{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00483{transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174665,0.000000,0.000000,0.250000,0,0);}
.m8e_c00483{transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174895,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175145,0.000000,0.000000,0.250000,0,0);}
.mca_c00483{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.ma1_c00483{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.maf_c00483{transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176035,0.000000,0.000000,0.250000,0,0);}
.m95_c00483{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00483{transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m15_c00483{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m26_c00483{transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00483{transform:matrix(0.177310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177310,0.000000,0.000000,0.250000,0,0);}
.m90_c00483{transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177395,0.000000,0.000000,0.250000,0,0);}
.md6_c00483{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.ma7_c00483{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.m5f_c00483{transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178310,0.000000,0.000000,0.250000,0,0);}
.m43_c00483{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.m63_c00483{transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);}
.m91_c00483{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m99_c00483{transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179070,0.000000,0.000000,0.250000,0,0);}
.me9_c00483{transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179120,0.000000,0.000000,0.250000,0,0);}
.m8a_c00483{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);}
.mab_c00483{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m56_c00483{transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);}
.m53_c00483{transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181065,0.000000,0.000000,0.250000,0,0);}
.me0_c00483{transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);}
.m59_c00483{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.mdb_c00483{transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182395,0.000000,0.000000,0.250000,0,0);}
.m48_c00483{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m57_c00483{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m64_c00483{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00483{transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);}
.m13_c00483{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m1b_c00483{transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184780,0.000000,0.000000,0.250000,0,0);}
.m1c_c00483{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.ma4_c00483{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m94_c00483{transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00483{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.md7_c00483{transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186835,0.000000,0.000000,0.250000,0,0);}
.mea_c00483{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.ma0_c00483{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m2d_c00483{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m72_c00483{transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188270,0.000000,0.000000,0.250000,0,0);}
.m3c_c00483{transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188345,0.000000,0.000000,0.250000,0,0);}
.maa_c00483{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m3d_c00483{transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);}
.m3a_c00483{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m33_c00483{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.m7c_c00483{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.ma8_c00483{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.me7_c00483{transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);}
.mee_c00483{transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190155,0.000000,0.000000,0.250000,0,0);}
.mc3_c00483{transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190870,0.000000,0.000000,0.250000,0,0);}
.mb9_c00483{transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190890,0.000000,0.000000,0.250000,0,0);}
.me3_c00483{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00483{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m4a_c00483{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m98_c00483{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m82_c00483{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.m5c_c00483{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.md9_c00483{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m31_c00483{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.meb_c00483{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.m5a_c00483{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.mb2_c00483{transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);}
.md5_c00483{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.mb7_c00483{transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);}
.mc0_c00483{transform:matrix(0.194685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00483{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.mbd_c00483{transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);}
.m8f_c00483{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m7f_c00483{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.md4_c00483{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m75_c00483{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.m23_c00483{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m68_c00483{transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);}
.mb4_c00483{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.md8_c00483{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m1d_c00483{transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);}
.m60_c00483{transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.m7d_c00483{transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198130,0.000000,0.000000,0.250000,0,0);}
.m5d_c00483{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.mc1_c00483{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.mb3_c00483{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.me5_c00483{transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200035,0.000000,0.000000,0.250000,0,0);}
.m45_c00483{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200910,0.000000,0.000000,0.250000,0,0);}
.m80_c00483{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.m2b_c00483{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00483{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00483{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202505,0.000000,0.000000,0.250000,0,0);}
.m93_c00483{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m41_c00483{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.me8_c00483{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m62_c00483{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m61_c00483{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.mbf_c00483{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.m6a_c00483{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m7a_c00483{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.m46_c00483{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m6d_c00483{transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204990,0.000000,0.000000,0.250000,0,0);}
.me1_c00483{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.mce_c00483{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m4c_c00483{transform:matrix(0.206445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206445,0.000000,0.000000,0.250000,0,0);}
.m3b_c00483{transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207280,0.000000,0.000000,0.250000,0,0);}
.m47_c00483{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m17_c00483{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.m51_c00483{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208110,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.m89_c00483{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m52_c00483{transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);}
.mda_c00483{transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);}
.mc4_c00483{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.m6c_c00483{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m44_c00483{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m83_c00483{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m24_c00483{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m65_c00483{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m28_c00483{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.m77_c00483{transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m9e_c00483{transform:matrix(0.213090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213090,0.000000,0.000000,0.250000,0,0);}
.m71_c00483{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00483{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.mb5_c00483{transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213695,0.000000,0.000000,0.250000,0,0);}
.m2a_c00483{transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);}
.m25_c00483{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.m20_c00483{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.md3_c00483{transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215240,0.000000,0.000000,0.250000,0,0);}
.md2_c00483{transform:matrix(0.215535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215535,0.000000,0.000000,0.250000,0,0);}
.mdc_c00483{transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215955,0.000000,0.000000,0.250000,0,0);}
.m9d_c00483{transform:matrix(0.215995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215995,0.000000,0.000000,0.250000,0,0);}
.mb0_c00483{transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216255,0.000000,0.000000,0.250000,0,0);}
.md1_c00483{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00483{transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219505,0.000000,0.000000,0.250000,0,0);}
.m42_c00483{transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219815,0.000000,0.000000,0.250000,0,0);}
.m66_c00483{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.m79_c00483{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.mcd_c00483{transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);}
.m6f_c00483{transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);}
.m4b_c00483{transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224570,0.000000,0.000000,0.250000,0,0);}
.m7e_c00483{transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224685,0.000000,0.000000,0.250000,0,0);}
.m81_c00483{transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);}
.mad_c00483{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m27_c00483{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228595,0.000000,0.000000,0.250000,0,0);}
.md0_c00483{transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);}
.mb6_c00483{transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230005,0.000000,0.000000,0.250000,0,0);}
.m78_c00483{transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);}
.m88_c00483{transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m3f_c00483{transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);}
.m54_c00483{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m2c_c00483{transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);}
.mdd_c00483{transform:matrix(0.238010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238010,0.000000,0.000000,0.250000,0,0);}
.m58_c00483{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.me6_c00483{transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00483{transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);}
.m87_c00483{transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);}
.m76_c00483{transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);}
.m9c_c00483{transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00483{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m50_c00483{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00483{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.mcf_c00483{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00483{transform:matrix(0.299485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299485,0.000000,0.000000,0.250000,0,0);}
.m73_c00483{transform:matrix(0.316420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316420,0.000000,0.000000,0.250000,0,0);}
.mf1_c00483{transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);}
.m30_c00483{transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);}
.mb8_c00483{transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00483{transform:matrix(0.369590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369590,0.000000,0.000000,0.250000,0,0);}
.m74_c00483{transform:matrix(0.665180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665180,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:0.000000px;}
.fc0_c00483{color:transparent;}
.fse_c00483{font-size:22.050000px;}
.fsa_c00483{font-size:57.750000px;}
.fs8_c00483{font-size:58.800000px;}
.fs5_c00483{font-size:59.850000px;}
.fs9_c00483{font-size:60.900000px;}
.fs7_c00483{font-size:61.950000px;}
.fs2_c00483{font-size:63.000000px;}
.fs3_c00483{font-size:64.050000px;}
.fs1_c00483{font-size:65.100000px;}
.fsb_c00483{font-size:66.150000px;}
.fsc_c00483{font-size:67.200000px;}
.fs4_c00483{font-size:68.250000px;}
.fsd_c00483{font-size:70.350000px;}
.fs6_c00483{font-size:71.400000px;}
.fs0_c00483{font-size:73.500000px;}
.y0_c00483{bottom:0.000000px;}
.y4c_c00483{bottom:35.220000px;}
.y4b_c00483{bottom:51.775500px;}
.y4a_c00483{bottom:68.647500px;}
.y49_c00483{bottom:85.651500px;}
.y48_c00483{bottom:102.901500px;}
.y47_c00483{bottom:118.666500px;}
.y46_c00483{bottom:133.819500px;}
.y45_c00483{bottom:134.616000px;}
.y44_c00483{bottom:135.192000px;}
.y43_c00483{bottom:135.471000px;}
.y42_c00483{bottom:136.135500px;}
.y41_c00483{bottom:136.393500px;}
.y40_c00483{bottom:137.161500px;}
.y3f_c00483{bottom:151.717500px;}
.y3e_c00483{bottom:152.278500px;}
.y3d_c00483{bottom:152.784000px;}
.y3c_c00483{bottom:152.995500px;}
.y3b_c00483{bottom:153.268500px;}
.y3a_c00483{bottom:153.849000px;}
.y39_c00483{bottom:153.985500px;}
.y38_c00483{bottom:154.443000px;}
.y37_c00483{bottom:169.413000px;}
.y36_c00483{bottom:185.319000px;}
.y35_c00483{bottom:185.767500px;}
.y34_c00483{bottom:186.256500px;}
.y33_c00483{bottom:186.453000px;}
.y32_c00483{bottom:186.720000px;}
.y31_c00483{bottom:187.365000px;}
.y30_c00483{bottom:187.645500px;}
.y2f_c00483{bottom:188.305500px;}
.y2e_c00483{bottom:188.733000px;}
.y2d_c00483{bottom:203.014500px;}
.y2c_c00483{bottom:203.193000px;}
.y2b_c00483{bottom:203.952000px;}
.y2a_c00483{bottom:204.462000px;}
.y29_c00483{bottom:204.697500px;}
.y28_c00483{bottom:205.132500px;}
.y27_c00483{bottom:205.311000px;}
.y26_c00483{bottom:205.743000px;}
.y25_c00483{bottom:219.627000px;}
.y24_c00483{bottom:220.785000px;}
.y23_c00483{bottom:221.079000px;}
.y22_c00483{bottom:222.075000px;}
.y21_c00483{bottom:223.047000px;}
.y20_c00483{bottom:223.401000px;}
.y1f_c00483{bottom:223.833000px;}
.y1e_c00483{bottom:236.094000px;}
.y1d_c00483{bottom:236.295000px;}
.y1c_c00483{bottom:236.634000px;}
.y1b_c00483{bottom:237.718500px;}
.y1a_c00483{bottom:237.883500px;}
.y19_c00483{bottom:238.203000px;}
.y18_c00483{bottom:238.560000px;}
.y17_c00483{bottom:239.073000px;}
.y16_c00483{bottom:239.248500px;}
.y15_c00483{bottom:239.760000px;}
.y14_c00483{bottom:255.178500px;}
.y13_c00483{bottom:271.242000px;}
.y12_c00483{bottom:288.304500px;}
.y11_c00483{bottom:305.850000px;}
.y10_c00483{bottom:322.542000px;}
.yf_c00483{bottom:339.459000px;}
.ye_c00483{bottom:356.415000px;}
.yd_c00483{bottom:373.428000px;}
.yc_c00483{bottom:390.217500px;}
.yb_c00483{bottom:407.091000px;}
.ya_c00483{bottom:423.895500px;}
.y9_c00483{bottom:441.220500px;}
.y8_c00483{bottom:457.420500px;}
.y7_c00483{bottom:474.282000px;}
.y6_c00483{bottom:491.712000px;}
.y4d_c00483{bottom:494.370000px;}
.y5_c00483{bottom:507.937500px;}
.y4_c00483{bottom:525.085500px;}
.y3_c00483{bottom:542.107500px;}
.y2_c00483{bottom:559.068000px;}
.y1_c00483{bottom:572.739000px;}
.h10_c00483{height:22.050000px;}
.hc_c00483{height:57.750000px;}
.ha_c00483{height:58.800000px;}
.h7_c00483{height:59.850000px;}
.hb_c00483{height:60.900000px;}
.h9_c00483{height:61.950000px;}
.h4_c00483{height:63.000000px;}
.h5_c00483{height:64.050000px;}
.h3_c00483{height:65.100000px;}
.hd_c00483{height:66.150000px;}
.he_c00483{height:67.200000px;}
.h6_c00483{height:68.250000px;}
.hf_c00483{height:70.350000px;}
.h8_c00483{height:71.400000px;}
.h2_c00483{height:73.500000px;}
.h0_c00483{height:617.700000px;}
.h1_c00483{height:618.000000px;}
.w0_c00483{width:359.100000px;}
.w1_c00483{width:359.250000px;}
.x0_c00483{left:0.000000px;}
.x7b_c00483{left:34.564500px;}
.x67_c00483{left:36.058500px;}
.x36_c00483{left:37.260000px;}
.x57_c00483{left:38.880000px;}
.x4c_c00483{left:39.960000px;}
.x2e_c00483{left:41.580000px;}
.x3_c00483{left:42.660000px;}
.x71_c00483{left:45.094500px;}
.x11_c00483{left:48.060000px;}
.xa_c00483{left:51.300000px;}
.x81_c00483{left:55.354500px;}
.x76_c00483{left:57.244500px;}
.x2f_c00483{left:60.750000px;}
.x23_c00483{left:61.830000px;}
.x5b_c00483{left:63.720000px;}
.x4_c00483{left:65.610000px;}
.x46_c00483{left:67.230000px;}
.x6c_c00483{left:68.682000px;}
.x12_c00483{left:70.470000px;}
.x3e_c00483{left:71.820000px;}
.x60_c00483{left:76.810500px;}
.x19_c00483{left:78.570000px;}
.x30_c00483{left:80.460000px;}
.x82_c00483{left:82.354500px;}
.x53_c00483{left:84.780000px;}
.x5_c00483{left:86.940000px;}
.x37_c00483{left:88.020000px;}
.x61_c00483{left:90.297000px;}
.x47_c00483{left:91.530000px;}
.x7e_c00483{left:95.854500px;}
.x68_c00483{left:97.072500px;}
.x1a_c00483{left:100.710000px;}
.x4d_c00483{left:107.460000px;}
.x21_c00483{left:108.540000px;}
.x58_c00483{left:110.970000px;}
.x79_c00483{left:112.054500px;}
.x24_c00483{left:113.940000px;}
.x3f_c00483{left:117.720000px;}
.x6d_c00483{left:119.482500px;}
.x54_c00483{left:122.850000px;}
.x4e_c00483{left:126.630000px;}
.x48_c00483{left:130.680000px;}
.x25_c00483{left:132.840000px;}
.x7a_c00483{left:133.924500px;}
.x13_c00483{left:138.780000px;}
.x2a_c00483{left:140.400000px;}
.x44_c00483{left:142.830000px;}
.x73_c00483{left:144.097500px;}
.x55_c00483{left:146.070000px;}
.x1b_c00483{left:147.150000px;}
.x4f_c00483{left:148.500000px;}
.x77_c00483{left:151.744500px;}
.x31_c00483{left:154.170000px;}
.xb_c00483{left:156.330000px;}
.x3a_c00483{left:157.410000px;}
.x7f_c00483{left:158.494500px;}
.x6_c00483{left:161.730000px;}
.x69_c00483{left:164.041500px;}
.x14_c00483{left:166.590000px;}
.xc_c00483{left:167.670000px;}
.x40_c00483{left:169.560000px;}
.x38_c00483{left:171.720000px;}
.x1_c00483{left:174.690000px;}
.x75_c00483{left:177.780000px;}
.x7c_c00483{left:179.014500px;}
.x26_c00483{left:181.170000px;}
.x32_c00483{left:182.790000px;}
.x15_c00483{left:188.190000px;}
.x2b_c00483{left:189.810000px;}
.x49_c00483{left:192.240000px;}
.x41_c00483{left:193.590000px;}
.x59_c00483{left:194.670000px;}
.x5c_c00483{left:198.180000px;}
.x5f_c00483{left:200.070000px;}
.x50_c00483{left:201.150000px;}
.x72_c00483{left:203.314500px;}
.x22_c00483{left:207.090000px;}
.x64_c00483{left:209.550000px;}
.x6e_c00483{left:211.243500px;}
.x3b_c00483{left:213.030000px;}
.x6a_c00483{left:215.064000px;}
.x27_c00483{left:219.780000px;}
.x84_c00483{left:221.940000px;}
.x1c_c00483{left:223.560000px;}
.x51_c00483{left:225.180000px;}
.x6f_c00483{left:226.354500px;}
.x65_c00483{left:227.956500px;}
.x39_c00483{left:230.310000px;}
.x56_c00483{left:232.200000px;}
.x16_c00483{left:233.550000px;}
.xd_c00483{left:236.520000px;}
.x78_c00483{left:238.954500px;}
.x7_c00483{left:240.840000px;}
.x33_c00483{left:243.000000px;}
.x1d_c00483{left:244.890000px;}
.x2c_c00483{left:248.400000px;}
.x5a_c00483{left:253.800000px;}
.xe_c00483{left:257.040000px;}
.x4a_c00483{left:259.740000px;}
.x70_c00483{left:263.931000px;}
.x42_c00483{left:267.840000px;}
.x17_c00483{left:268.920000px;}
.x8_c00483{left:270.270000px;}
.x7d_c00483{left:271.624500px;}
.x83_c00483{left:273.784500px;}
.x2d_c00483{left:276.750000px;}
.x62_c00483{left:278.001000px;}
.x3d_c00483{left:280.260000px;}
.x1e_c00483{left:282.690000px;}
.x74_c00483{left:284.977500px;}
.x43_c00483{left:287.550000px;}
.x5d_c00483{left:288.630000px;}
.x6b_c00483{left:290.988000px;}
.x9_c00483{left:293.490000px;}
.x1f_c00483{left:295.110000px;}
.xf_c00483{left:297.540000px;}
.x52_c00483{left:299.160000px;}
.x66_c00483{left:300.303000px;}
.x3c_c00483{left:301.320000px;}
.x28_c00483{left:302.400000px;}
.x45_c00483{left:304.290000px;}
.x80_c00483{left:305.914500px;}
.x4b_c00483{left:308.070000px;}
.x5e_c00483{left:310.770000px;}
.x29_c00483{left:312.120000px;}
.x34_c00483{left:313.470000px;}
.x2_c00483{left:315.630000px;}
.x10_c00483{left:316.980000px;}
.x63_c00483{left:319.552500px;}
.x18_c00483{left:321.300000px;}
.x20_c00483{left:322.920000px;}
.x35_c00483{left:326.970000px;}
.x85_c00483{left:353.970000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fse_c00483{font-size:19.600000pt;}
.fsa_c00483{font-size:51.333333pt;}
.fs8_c00483{font-size:52.266667pt;}
.fs5_c00483{font-size:53.200000pt;}
.fs9_c00483{font-size:54.133333pt;}
.fs7_c00483{font-size:55.066667pt;}
.fs2_c00483{font-size:56.000000pt;}
.fs3_c00483{font-size:56.933333pt;}
.fs1_c00483{font-size:57.866667pt;}
.fsb_c00483{font-size:58.800000pt;}
.fsc_c00483{font-size:59.733333pt;}
.fs4_c00483{font-size:60.666667pt;}
.fsd_c00483{font-size:62.533333pt;}
.fs6_c00483{font-size:63.466667pt;}
.fs0_c00483{font-size:65.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y4c_c00483{bottom:31.306667pt;}
.y4b_c00483{bottom:46.022667pt;}
.y4a_c00483{bottom:61.020000pt;}
.y49_c00483{bottom:76.134667pt;}
.y48_c00483{bottom:91.468000pt;}
.y47_c00483{bottom:105.481333pt;}
.y46_c00483{bottom:118.950667pt;}
.y45_c00483{bottom:119.658667pt;}
.y44_c00483{bottom:120.170667pt;}
.y43_c00483{bottom:120.418667pt;}
.y42_c00483{bottom:121.009333pt;}
.y41_c00483{bottom:121.238667pt;}
.y40_c00483{bottom:121.921333pt;}
.y3f_c00483{bottom:134.860000pt;}
.y3e_c00483{bottom:135.358667pt;}
.y3d_c00483{bottom:135.808000pt;}
.y3c_c00483{bottom:135.996000pt;}
.y3b_c00483{bottom:136.238667pt;}
.y3a_c00483{bottom:136.754667pt;}
.y39_c00483{bottom:136.876000pt;}
.y38_c00483{bottom:137.282667pt;}
.y37_c00483{bottom:150.589333pt;}
.y36_c00483{bottom:164.728000pt;}
.y35_c00483{bottom:165.126667pt;}
.y34_c00483{bottom:165.561333pt;}
.y33_c00483{bottom:165.736000pt;}
.y32_c00483{bottom:165.973333pt;}
.y31_c00483{bottom:166.546667pt;}
.y30_c00483{bottom:166.796000pt;}
.y2f_c00483{bottom:167.382667pt;}
.y2e_c00483{bottom:167.762667pt;}
.y2d_c00483{bottom:180.457333pt;}
.y2c_c00483{bottom:180.616000pt;}
.y2b_c00483{bottom:181.290667pt;}
.y2a_c00483{bottom:181.744000pt;}
.y29_c00483{bottom:181.953333pt;}
.y28_c00483{bottom:182.340000pt;}
.y27_c00483{bottom:182.498667pt;}
.y26_c00483{bottom:182.882667pt;}
.y25_c00483{bottom:195.224000pt;}
.y24_c00483{bottom:196.253333pt;}
.y23_c00483{bottom:196.514667pt;}
.y22_c00483{bottom:197.400000pt;}
.y21_c00483{bottom:198.264000pt;}
.y20_c00483{bottom:198.578667pt;}
.y1f_c00483{bottom:198.962667pt;}
.y1e_c00483{bottom:209.861333pt;}
.y1d_c00483{bottom:210.040000pt;}
.y1c_c00483{bottom:210.341333pt;}
.y1b_c00483{bottom:211.305333pt;}
.y1a_c00483{bottom:211.452000pt;}
.y19_c00483{bottom:211.736000pt;}
.y18_c00483{bottom:212.053333pt;}
.y17_c00483{bottom:212.509333pt;}
.y16_c00483{bottom:212.665333pt;}
.y15_c00483{bottom:213.120000pt;}
.y14_c00483{bottom:226.825333pt;}
.y13_c00483{bottom:241.104000pt;}
.y12_c00483{bottom:256.270667pt;}
.y11_c00483{bottom:271.866667pt;}
.y10_c00483{bottom:286.704000pt;}
.yf_c00483{bottom:301.741333pt;}
.ye_c00483{bottom:316.813333pt;}
.yd_c00483{bottom:331.936000pt;}
.yc_c00483{bottom:346.860000pt;}
.yb_c00483{bottom:361.858667pt;}
.ya_c00483{bottom:376.796000pt;}
.y9_c00483{bottom:392.196000pt;}
.y8_c00483{bottom:406.596000pt;}
.y7_c00483{bottom:421.584000pt;}
.y6_c00483{bottom:437.077333pt;}
.y4d_c00483{bottom:439.440000pt;}
.y5_c00483{bottom:451.500000pt;}
.y4_c00483{bottom:466.742667pt;}
.y3_c00483{bottom:481.873333pt;}
.y2_c00483{bottom:496.949333pt;}
.y1_c00483{bottom:509.101333pt;}
.h10_c00483{height:19.600000pt;}
.hc_c00483{height:51.333333pt;}
.ha_c00483{height:52.266667pt;}
.h7_c00483{height:53.200000pt;}
.hb_c00483{height:54.133333pt;}
.h9_c00483{height:55.066667pt;}
.h4_c00483{height:56.000000pt;}
.h5_c00483{height:56.933333pt;}
.h3_c00483{height:57.866667pt;}
.hd_c00483{height:58.800000pt;}
.he_c00483{height:59.733333pt;}
.h6_c00483{height:60.666667pt;}
.hf_c00483{height:62.533333pt;}
.h8_c00483{height:63.466667pt;}
.h2_c00483{height:65.333333pt;}
.h0_c00483{height:549.066667pt;}
.h1_c00483{height:549.333333pt;}
.w0_c00483{width:319.200000pt;}
.w1_c00483{width:319.333333pt;}
.x0_c00483{left:0.000000pt;}
.x7b_c00483{left:30.724000pt;}
.x67_c00483{left:32.052000pt;}
.x36_c00483{left:33.120000pt;}
.x57_c00483{left:34.560000pt;}
.x4c_c00483{left:35.520000pt;}
.x2e_c00483{left:36.960000pt;}
.x3_c00483{left:37.920000pt;}
.x71_c00483{left:40.084000pt;}
.x11_c00483{left:42.720000pt;}
.xa_c00483{left:45.600000pt;}
.x81_c00483{left:49.204000pt;}
.x76_c00483{left:50.884000pt;}
.x2f_c00483{left:54.000000pt;}
.x23_c00483{left:54.960000pt;}
.x5b_c00483{left:56.640000pt;}
.x4_c00483{left:58.320000pt;}
.x46_c00483{left:59.760000pt;}
.x6c_c00483{left:61.050667pt;}
.x12_c00483{left:62.640000pt;}
.x3e_c00483{left:63.840000pt;}
.x60_c00483{left:68.276000pt;}
.x19_c00483{left:69.840000pt;}
.x30_c00483{left:71.520000pt;}
.x82_c00483{left:73.204000pt;}
.x53_c00483{left:75.360000pt;}
.x5_c00483{left:77.280000pt;}
.x37_c00483{left:78.240000pt;}
.x61_c00483{left:80.264000pt;}
.x47_c00483{left:81.360000pt;}
.x7e_c00483{left:85.204000pt;}
.x68_c00483{left:86.286667pt;}
.x1a_c00483{left:89.520000pt;}
.x4d_c00483{left:95.520000pt;}
.x21_c00483{left:96.480000pt;}
.x58_c00483{left:98.640000pt;}
.x79_c00483{left:99.604000pt;}
.x24_c00483{left:101.280000pt;}
.x3f_c00483{left:104.640000pt;}
.x6d_c00483{left:106.206667pt;}
.x54_c00483{left:109.200000pt;}
.x4e_c00483{left:112.560000pt;}
.x48_c00483{left:116.160000pt;}
.x25_c00483{left:118.080000pt;}
.x7a_c00483{left:119.044000pt;}
.x13_c00483{left:123.360000pt;}
.x2a_c00483{left:124.800000pt;}
.x44_c00483{left:126.960000pt;}
.x73_c00483{left:128.086667pt;}
.x55_c00483{left:129.840000pt;}
.x1b_c00483{left:130.800000pt;}
.x4f_c00483{left:132.000000pt;}
.x77_c00483{left:134.884000pt;}
.x31_c00483{left:137.040000pt;}
.xb_c00483{left:138.960000pt;}
.x3a_c00483{left:139.920000pt;}
.x7f_c00483{left:140.884000pt;}
.x6_c00483{left:143.760000pt;}
.x69_c00483{left:145.814667pt;}
.x14_c00483{left:148.080000pt;}
.xc_c00483{left:149.040000pt;}
.x40_c00483{left:150.720000pt;}
.x38_c00483{left:152.640000pt;}
.x1_c00483{left:155.280000pt;}
.x75_c00483{left:158.026667pt;}
.x7c_c00483{left:159.124000pt;}
.x26_c00483{left:161.040000pt;}
.x32_c00483{left:162.480000pt;}
.x15_c00483{left:167.280000pt;}
.x2b_c00483{left:168.720000pt;}
.x49_c00483{left:170.880000pt;}
.x41_c00483{left:172.080000pt;}
.x59_c00483{left:173.040000pt;}
.x5c_c00483{left:176.160000pt;}
.x5f_c00483{left:177.840000pt;}
.x50_c00483{left:178.800000pt;}
.x72_c00483{left:180.724000pt;}
.x22_c00483{left:184.080000pt;}
.x64_c00483{left:186.266667pt;}
.x6e_c00483{left:187.772000pt;}
.x3b_c00483{left:189.360000pt;}
.x6a_c00483{left:191.168000pt;}
.x27_c00483{left:195.360000pt;}
.x84_c00483{left:197.280000pt;}
.x1c_c00483{left:198.720000pt;}
.x51_c00483{left:200.160000pt;}
.x6f_c00483{left:201.204000pt;}
.x65_c00483{left:202.628000pt;}
.x39_c00483{left:204.720000pt;}
.x56_c00483{left:206.400000pt;}
.x16_c00483{left:207.600000pt;}
.xd_c00483{left:210.240000pt;}
.x78_c00483{left:212.404000pt;}
.x7_c00483{left:214.080000pt;}
.x33_c00483{left:216.000000pt;}
.x1d_c00483{left:217.680000pt;}
.x2c_c00483{left:220.800000pt;}
.x5a_c00483{left:225.600000pt;}
.xe_c00483{left:228.480000pt;}
.x4a_c00483{left:230.880000pt;}
.x70_c00483{left:234.605333pt;}
.x42_c00483{left:238.080000pt;}
.x17_c00483{left:239.040000pt;}
.x8_c00483{left:240.240000pt;}
.x7d_c00483{left:241.444000pt;}
.x83_c00483{left:243.364000pt;}
.x2d_c00483{left:246.000000pt;}
.x62_c00483{left:247.112000pt;}
.x3d_c00483{left:249.120000pt;}
.x1e_c00483{left:251.280000pt;}
.x74_c00483{left:253.313333pt;}
.x43_c00483{left:255.600000pt;}
.x5d_c00483{left:256.560000pt;}
.x6b_c00483{left:258.656000pt;}
.x9_c00483{left:260.880000pt;}
.x1f_c00483{left:262.320000pt;}
.xf_c00483{left:264.480000pt;}
.x52_c00483{left:265.920000pt;}
.x66_c00483{left:266.936000pt;}
.x3c_c00483{left:267.840000pt;}
.x28_c00483{left:268.800000pt;}
.x45_c00483{left:270.480000pt;}
.x80_c00483{left:271.924000pt;}
.x4b_c00483{left:273.840000pt;}
.x5e_c00483{left:276.240000pt;}
.x29_c00483{left:277.440000pt;}
.x34_c00483{left:278.640000pt;}
.x2_c00483{left:280.560000pt;}
.x10_c00483{left:281.760000pt;}
.x63_c00483{left:284.046667pt;}
.x18_c00483{left:285.600000pt;}
.x20_c00483{left:287.040000pt;}
.x35_c00483{left:290.640000pt;}
.x85_c00483{left:314.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00484 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00484 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00484 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00484 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00484{transform:matrix(0.062455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062455,0.000000,0.000000,0.250000,0,0);}
.m95_c00484{transform:matrix(0.097415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097415,0.000000,0.000000,0.250000,0,0);}
.mac_c00484{transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099090,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.m92_c00484{transform:matrix(0.133965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133965,0.000000,0.000000,0.250000,0,0);}
.m8c_c00484{transform:matrix(0.136730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136730,0.000000,0.000000,0.250000,0,0);}
.m1a_c00484{transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);}
.mca_c00484{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m93_c00484{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m78_c00484{transform:matrix(0.144770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144770,0.000000,0.000000,0.250000,0,0);}
.ma8_c00484{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145160,0.000000,0.000000,0.250000,0,0);}
.m94_c00484{transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00484{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148670,0.000000,0.000000,0.250000,0,0);}
.maa_c00484{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00484{transform:matrix(0.150280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150280,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150310,0.000000,0.000000,0.250000,0,0);}
.m8d_c00484{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.ma6_c00484{transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);}
.m74_c00484{transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00484{transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);}
.me2_c00484{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m96_c00484{transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155235,0.000000,0.000000,0.250000,0,0);}
.m1d_c00484{transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156620,0.000000,0.000000,0.250000,0,0);}
.m91_c00484{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m34_c00484{transform:matrix(0.157295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157295,0.000000,0.000000,0.250000,0,0);}
.maf_c00484{transform:matrix(0.158485,0.001743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158485,0.001743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158485,0.001743,-0.002750,0.249985,0,0);}
.m59_c00484{transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159255,0.000000,0.000000,0.250000,0,0);}
.md4_c00484{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160065,0.000000,0.000000,0.250000,0,0);}
.mc0_c00484{transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);}
.ma1_c00484{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m47_c00484{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.mae_c00484{transform:matrix(0.163295,0.001796,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163295,0.001796,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163295,0.001796,-0.002750,0.249985,0,0);}
.m90_c00484{transform:matrix(0.163990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163990,0.000000,0.000000,0.250000,0,0);}
.m67_c00484{transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);}
.mc3_c00484{transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.mc2_c00484{transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165870,0.000000,0.000000,0.250000,0,0);}
.m9b_c00484{transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166130,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m9e_c00484{transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166565,0.000000,0.000000,0.250000,0,0);}
.md0_c00484{transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167555,0.000000,0.000000,0.250000,0,0);}
.mb0_c00484{transform:matrix(0.168095,0.001849,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168095,0.001849,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168095,0.001849,-0.002750,0.249985,0,0);}
.m9c_c00484{transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);}
.m6a_c00484{transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168455,0.000000,0.000000,0.250000,0,0);}
.m9d_c00484{transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169035,0.000000,0.000000,0.250000,0,0);}
.mc1_c00484{transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171140,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.172245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);}
.m45_c00484{transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173535,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173720,0.000000,0.000000,0.250000,0,0);}
.mb2_c00484{transform:matrix(0.174834,0.001923,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174834,0.001923,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174834,0.001923,-0.002750,0.249985,0,0);}
.md3_c00484{transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);}
.mbb_c00484{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.mc4_c00484{transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);}
.mbe_c00484{transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176665,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);}
.ma2_c00484{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m2b_c00484{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179610,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);}
.mcc_c00484{transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179965,0.000000,0.000000,0.250000,0,0);}
.m61_c00484{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.mdd_c00484{transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.mc5_c00484{transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181865,0.000000,0.000000,0.250000,0,0);}
.mab_c00484{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.m6f_c00484{transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);}
.m41_c00484{transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);}
.mce_c00484{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m70_c00484{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m68_c00484{transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.m64_c00484{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.md6_c00484{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);}
.me0_c00484{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.mbc_c00484{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.m7e_c00484{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00484{transform:matrix(0.185714,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185714,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185714,0.002043,-0.002750,0.249985,0,0);}
.mbd_c00484{transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186270,0.000000,0.000000,0.250000,0,0);}
.m5b_c00484{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.mb9_c00484{transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);}
.me3_c00484{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md2_c00484{transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);}
.md9_c00484{transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187570,0.000000,0.000000,0.250000,0,0);}
.md1_c00484{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.mdc_c00484{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m66_c00484{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189505,0.000000,0.000000,0.250000,0,0);}
.m60_c00484{transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189660,0.000000,0.000000,0.250000,0,0);}
.m9a_c00484{transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);}
.mbf_c00484{transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190145,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190220,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.mcf_c00484{transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192270,0.000000,0.000000,0.250000,0,0);}
.m63_c00484{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m43_c00484{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.mc8_c00484{transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);}
.m27_c00484{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.mad_c00484{transform:matrix(0.195198,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195198,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195198,0.002147,-0.002750,0.249985,0,0);}
.ma0_c00484{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me1_c00484{transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196190,0.000000,0.000000,0.250000,0,0);}
.mcd_c00484{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.mc9_c00484{transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197685,0.000000,0.000000,0.250000,0,0);}
.m5d_c00484{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m65_c00484{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.m75_c00484{transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199635,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.md5_c00484{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00484{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m24_c00484{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00484{transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);}
.m62_c00484{transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205145,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);}
.m46_c00484{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m55_c00484{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.md8_c00484{transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207915,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);}
.mde_c00484{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00484{transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210720,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.mcb_c00484{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.m6e_c00484{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m85_c00484{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.md7_c00484{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m48_c00484{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m69_c00484{transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216455,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216580,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217095,0.000000,0.000000,0.250000,0,0);}
.m8f_c00484{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.m86_c00484{transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219030,0.000000,0.000000,0.250000,0,0);}
.m82_c00484{transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219555,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220165,0.000000,0.000000,0.250000,0,0);}
.m51_c00484{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.222535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00484{transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222795,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);}
.m73_c00484{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m99_c00484{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m2c_c00484{transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m14_c00484{transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232030,0.000000,0.000000,0.250000,0,0);}
.m23_c00484{transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);}
.mba_c00484{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.m7c_c00484{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m56_c00484{transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);}
.m7a_c00484{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);}
.mc7_c00484{transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);}
.mb5_c00484{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m54_c00484{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.mb4_c00484{transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);}
.m89_c00484{transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.m8a_c00484{transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);}
.m88_c00484{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m8b_c00484{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);}
.m97_c00484{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m81_c00484{transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);}
.m7b_c00484{transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256200,0.000000,0.000000,0.250000,0,0);}
.m87_c00484{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.mda_c00484{transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.260305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260305,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);}
.m98_c00484{transform:matrix(0.266420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266420,0.000000,0.000000,0.250000,0,0);}
.mc6_c00484{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.mdb_c00484{transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.270406,0.004597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270406,0.004597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270406,0.004597,-0.004249,0.249964,0,0);}
.m12_c00484{transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);}
.m76_c00484{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.282300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282300,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);}
.m79_c00484{transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00484{transform:matrix(0.312215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312215,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.315699,0.005367,-0.004249,0.249964,0,0);-ms-transform:matrix(0.315699,0.005367,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.315699,0.005367,-0.004249,0.249964,0,0);}
.m15_c00484{transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323125,0.000000,0.000000,0.250000,0,0);}
.mb6_c00484{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.mb8_c00484{transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);}
.m77_c00484{transform:matrix(0.358555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358555,0.000000,0.000000,0.250000,0,0);}
.ma5_c00484{transform:matrix(0.389200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389200,0.000000,0.000000,0.250000,0,0);}
.ma4_c00484{transform:matrix(0.403015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403015,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.406430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406430,0.000000,0.000000,0.250000,0,0);}
.m28_c00484{transform:matrix(0.411315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411315,0.000000,0.000000,0.250000,0,0);}
.m5c_c00484{transform:matrix(0.411980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411980,0.000000,0.000000,0.250000,0,0);}
.mb3_c00484{transform:matrix(0.465455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465455,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.500710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500710,0.000000,0.000000,0.250000,0,0);}
.mb7_c00484{transform:matrix(0.569690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569690,0.000000,0.000000,0.250000,0,0);}
.m1e_c00484{transform:matrix(0.668270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668270,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00484{transform:matrix(0.850095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850095,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:0.000000px;}
.fc0_c00484{color:transparent;}
.fsa_c00484{font-size:30.454400px;}
.fsf_c00484{font-size:57.750000px;}
.fsc_c00484{font-size:58.800000px;}
.fse_c00484{font-size:60.900000px;}
.fs9_c00484{font-size:65.100000px;}
.fsd_c00484{font-size:66.150000px;}
.fs2_c00484{font-size:67.200000px;}
.fsb_c00484{font-size:68.250000px;}
.fs7_c00484{font-size:70.350000px;}
.fs11_c00484{font-size:71.400000px;}
.fs1_c00484{font-size:72.450000px;}
.fs14_c00484{font-size:73.500000px;}
.fs8_c00484{font-size:74.550000px;}
.fs5_c00484{font-size:75.600000px;}
.fs6_c00484{font-size:77.700000px;}
.fs3_c00484{font-size:78.750000px;}
.fs4_c00484{font-size:81.900000px;}
.fs13_c00484{font-size:81.904955px;}
.fs12_c00484{font-size:82.950000px;}
.fs10_c00484{font-size:86.100000px;}
.fs0_c00484{font-size:89.250000px;}
.y0_c00484{bottom:0.000000px;}
.y65_c00484{bottom:10.431000px;}
.y64_c00484{bottom:12.904500px;}
.y63_c00484{bottom:13.501500px;}
.y62_c00484{bottom:26.794500px;}
.y61_c00484{bottom:44.067000px;}
.y60_c00484{bottom:61.612500px;}
.y5f_c00484{bottom:78.750000px;}
.y5e_c00484{bottom:96.321000px;}
.y5d_c00484{bottom:112.860000px;}
.y5c_c00484{bottom:127.441853px;}
.y5b_c00484{bottom:127.632081px;}
.y5a_c00484{bottom:128.193642px;}
.y59_c00484{bottom:129.247629px;}
.y58_c00484{bottom:129.681282px;}
.y57_c00484{bottom:130.141500px;}
.y56_c00484{bottom:147.082500px;}
.y55_c00484{bottom:161.625000px;}
.y54_c00484{bottom:162.313500px;}
.y53_c00484{bottom:166.054500px;}
.y52_c00484{bottom:181.407000px;}
.y51_c00484{bottom:197.512500px;}
.y50_c00484{bottom:213.793500px;}
.y4f_c00484{bottom:214.095000px;}
.y4e_c00484{bottom:214.749000px;}
.y4d_c00484{bottom:215.299500px;}
.y4c_c00484{bottom:216.229500px;}
.y4b_c00484{bottom:216.540000px;}
.y4a_c00484{bottom:230.958000px;}
.y49_c00484{bottom:231.267000px;}
.y48_c00484{bottom:231.849000px;}
.y47_c00484{bottom:232.396500px;}
.y46_c00484{bottom:233.154000px;}
.y45_c00484{bottom:233.551500px;}
.y44_c00484{bottom:249.202500px;}
.y43_c00484{bottom:264.697500px;}
.y42_c00484{bottom:265.306500px;}
.y41_c00484{bottom:265.588500px;}
.y40_c00484{bottom:266.347500px;}
.y3f_c00484{bottom:266.713500px;}
.y3e_c00484{bottom:267.571500px;}
.y3d_c00484{bottom:282.675000px;}
.y3c_c00484{bottom:300.930000px;}
.y3b_c00484{bottom:319.323000px;}
.y3a_c00484{bottom:335.848500px;}
.y39_c00484{bottom:351.801000px;}
.y38_c00484{bottom:367.885500px;}
.y37_c00484{bottom:385.041000px;}
.y36_c00484{bottom:401.347500px;}
.y33_c00484{bottom:417.025500px;}
.y32_c00484{bottom:417.265500px;}
.y31_c00484{bottom:418.237500px;}
.y30_c00484{bottom:418.522500px;}
.y2f_c00484{bottom:419.211000px;}
.y2e_c00484{bottom:420.088500px;}
.y2d_c00484{bottom:420.228000px;}
.y2c_c00484{bottom:420.664500px;}
.y2b_c00484{bottom:433.755000px;}
.y2a_c00484{bottom:434.238000px;}
.y29_c00484{bottom:435.366000px;}
.y28_c00484{bottom:436.039500px;}
.y27_c00484{bottom:437.175000px;}
.y26_c00484{bottom:437.944500px;}
.y25_c00484{bottom:452.208000px;}
.y24_c00484{bottom:452.449500px;}
.y23_c00484{bottom:452.857500px;}
.y22_c00484{bottom:453.439500px;}
.y21_c00484{bottom:453.760500px;}
.y20_c00484{bottom:454.683000px;}
.y1f_c00484{bottom:468.847500px;}
.y1e_c00484{bottom:486.841500px;}
.y35_c00484{bottom:488.829937px;}
.y34_c00484{bottom:493.836000px;}
.y1d_c00484{bottom:501.916500px;}
.y1c_c00484{bottom:502.098000px;}
.y1b_c00484{bottom:502.983000px;}
.y1a_c00484{bottom:503.770500px;}
.y19_c00484{bottom:503.916000px;}
.y18_c00484{bottom:504.631500px;}
.y17_c00484{bottom:518.791500px;}
.y16_c00484{bottom:520.075500px;}
.y15_c00484{bottom:520.230000px;}
.y14_c00484{bottom:521.265000px;}
.y13_c00484{bottom:521.479500px;}
.y12_c00484{bottom:521.812500px;}
.y11_c00484{bottom:521.967000px;}
.y10_c00484{bottom:522.451500px;}
.yf_c00484{bottom:535.696500px;}
.ye_c00484{bottom:535.762500px;}
.yd_c00484{bottom:536.929500px;}
.yc_c00484{bottom:537.208500px;}
.yb_c00484{bottom:538.063500px;}
.ya_c00484{bottom:538.651500px;}
.y9_c00484{bottom:552.699000px;}
.y8_c00484{bottom:552.873000px;}
.y7_c00484{bottom:553.618500px;}
.y6_c00484{bottom:554.002500px;}
.y5_c00484{bottom:554.598000px;}
.y4_c00484{bottom:555.825000px;}
.y3_c00484{bottom:556.084500px;}
.y2_c00484{bottom:556.473000px;}
.y1_c00484{bottom:568.458000px;}
.hc_c00484{height:30.454400px;}
.h11_c00484{height:57.750000px;}
.he_c00484{height:58.800000px;}
.h10_c00484{height:60.900000px;}
.hb_c00484{height:65.100000px;}
.hf_c00484{height:66.150000px;}
.h4_c00484{height:67.200000px;}
.hd_c00484{height:68.250000px;}
.h9_c00484{height:70.350000px;}
.h13_c00484{height:71.400000px;}
.h3_c00484{height:72.450000px;}
.h16_c00484{height:73.500000px;}
.ha_c00484{height:74.550000px;}
.h7_c00484{height:75.600000px;}
.h8_c00484{height:77.700000px;}
.h5_c00484{height:78.750000px;}
.h6_c00484{height:81.900000px;}
.h15_c00484{height:81.904955px;}
.h14_c00484{height:82.950000px;}
.h12_c00484{height:86.100000px;}
.h2_c00484{height:89.250000px;}
.h0_c00484{height:617.700000px;}
.h1_c00484{height:618.000000px;}
.w0_c00484{width:359.100000px;}
.w1_c00484{width:359.250000px;}
.x0_c00484{left:0.000000px;}
.x37_c00484{left:8.100000px;}
.x64_c00484{left:9.844500px;}
.x3_c00484{left:13.567500px;}
.x6d_c00484{left:14.850000px;}
.x20_c00484{left:17.554500px;}
.x5d_c00484{left:20.520000px;}
.x4a_c00484{left:31.590000px;}
.x21_c00484{left:36.994500px;}
.x4_c00484{left:39.505500px;}
.x3b_c00484{left:45.630000px;}
.x31_c00484{left:46.635000px;}
.x10_c00484{left:50.367000px;}
.x45_c00484{left:51.840000px;}
.x40_c00484{left:52.920000px;}
.x71_c00484{left:54.000000px;}
.x6e_c00484{left:55.620000px;}
.x5_c00484{left:56.761500px;}
.x2c_c00484{left:61.114500px;}
.x11_c00484{left:62.217000px;}
.x38_c00484{left:64.260000px;}
.x1c_c00484{left:65.614500px;}
.xb_c00484{left:66.826500px;}
.x74_c00484{left:68.215500px;}
.x46_c00484{left:69.660000px;}
.x51_c00484{left:71.550000px;}
.x17_c00484{left:72.705000px;}
.x60_c00484{left:74.248500px;}
.x27_c00484{left:78.661500px;}
.x18_c00484{left:84.882000px;}
.x12_c00484{left:87.820500px;}
.x65_c00484{left:91.105500px;}
.x57_c00484{left:94.230000px;}
.x28_c00484{left:101.626500px;}
.x4b_c00484{left:103.140000px;}
.x13_c00484{left:104.313000px;}
.x22_c00484{left:105.844500px;}
.x4e_c00484{left:106.920000px;}
.x3c_c00484{left:109.890000px;}
.x1d_c00484{left:110.974500px;}
.x56_c00484{left:115.359000px;}
.x4c_c00484{left:116.370000px;}
.x5a_c00484{left:118.900500px;}
.x1_c00484{left:120.690000px;}
.x32_c00484{left:124.837500px;}
.x5e_c00484{left:126.900000px;}
.x41_c00484{left:128.520000px;}
.x2d_c00484{left:132.106500px;}
.x6_c00484{left:138.580500px;}
.x61_c00484{left:139.588500px;}
.x23_c00484{left:142.024500px;}
.x29_c00484{left:143.224500px;}
.xc_c00484{left:144.601500px;}
.x1e_c00484{left:146.614500px;}
.x19_c00484{left:150.466500px;}
.x52_c00484{left:153.090000px;}
.x6a_c00484{left:155.250000px;}
.x24_c00484{left:160.924500px;}
.x58_c00484{left:163.890000px;}
.x3d_c00484{left:168.750000px;}
.xd_c00484{left:169.951500px;}
.x47_c00484{left:171.180000px;}
.x2a_c00484{left:172.390500px;}
.x2e_c00484{left:174.228000px;}
.x7_c00484{left:178.275000px;}
.x4d_c00484{left:179.820000px;}
.x14_c00484{left:183.925500px;}
.x4f_c00484{left:187.650000px;}
.x2b_c00484{left:189.622500px;}
.x62_c00484{left:191.158500px;}
.x1f_c00484{left:193.594500px;}
.x15_c00484{left:195.828000px;}
.x6b_c00484{left:196.830000px;}
.x33_c00484{left:199.650000px;}
.x3e_c00484{left:201.150000px;}
.x67_c00484{left:202.770000px;}
.x8_c00484{left:203.914500px;}
.x72_c00484{left:208.710000px;}
.x25_c00484{left:213.844500px;}
.x63_c00484{left:216.808500px;}
.x42_c00484{left:217.890000px;}
.x39_c00484{left:219.240000px;}
.x5b_c00484{left:221.527500px;}
.x75_c00484{left:222.820500px;}
.x1a_c00484{left:224.182500px;}
.x6f_c00484{left:228.960000px;}
.x5f_c00484{left:232.200000px;}
.x53_c00484{left:233.280000px;}
.x26_c00484{left:234.904500px;}
.x3f_c00484{left:236.520000px;}
.x66_c00484{left:237.973500px;}
.x1b_c00484{left:239.346000px;}
.x50_c00484{left:243.270000px;}
.x2f_c00484{left:244.701000px;}
.x48_c00484{left:248.130000px;}
.x5c_c00484{left:249.583500px;}
.x68_c00484{left:251.640000px;}
.x9_c00484{left:253.591500px;}
.x54_c00484{left:255.420000px;}
.x36_c00484{left:256.499259px;}
.x35_c00484{left:260.523000px;}
.x73_c00484{left:264.060000px;}
.xa_c00484{left:265.162500px;}
.x43_c00484{left:266.490000px;}
.x3a_c00484{left:270.810000px;}
.x30_c00484{left:274.929000px;}
.xe_c00484{left:276.078000px;}
.x55_c00484{left:280.800000px;}
.xf_c00484{left:282.012000px;}
.x6c_c00484{left:284.850000px;}
.x59_c00484{left:289.170000px;}
.x49_c00484{left:290.790000px;}
.x34_c00484{left:292.830000px;}
.x16_c00484{left:294.652500px;}
.x69_c00484{left:298.350000px;}
.x70_c00484{left:299.430000px;}
.x2_c00484{left:310.500000px;}
.x44_c00484{left:321.030000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fsa_c00484{font-size:27.070578pt;}
.fsf_c00484{font-size:51.333333pt;}
.fsc_c00484{font-size:52.266667pt;}
.fse_c00484{font-size:54.133333pt;}
.fs9_c00484{font-size:57.866667pt;}
.fsd_c00484{font-size:58.800000pt;}
.fs2_c00484{font-size:59.733333pt;}
.fsb_c00484{font-size:60.666667pt;}
.fs7_c00484{font-size:62.533333pt;}
.fs11_c00484{font-size:63.466667pt;}
.fs1_c00484{font-size:64.400000pt;}
.fs14_c00484{font-size:65.333333pt;}
.fs8_c00484{font-size:66.266667pt;}
.fs5_c00484{font-size:67.200000pt;}
.fs6_c00484{font-size:69.066667pt;}
.fs3_c00484{font-size:70.000000pt;}
.fs4_c00484{font-size:72.800000pt;}
.fs13_c00484{font-size:72.804404pt;}
.fs12_c00484{font-size:73.733333pt;}
.fs10_c00484{font-size:76.533333pt;}
.fs0_c00484{font-size:79.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y65_c00484{bottom:9.272000pt;}
.y64_c00484{bottom:11.470667pt;}
.y63_c00484{bottom:12.001333pt;}
.y62_c00484{bottom:23.817333pt;}
.y61_c00484{bottom:39.170667pt;}
.y60_c00484{bottom:54.766667pt;}
.y5f_c00484{bottom:70.000000pt;}
.y5e_c00484{bottom:85.618667pt;}
.y5d_c00484{bottom:100.320000pt;}
.y5c_c00484{bottom:113.281647pt;}
.y5b_c00484{bottom:113.450739pt;}
.y5a_c00484{bottom:113.949904pt;}
.y59_c00484{bottom:114.886781pt;}
.y58_c00484{bottom:115.272251pt;}
.y57_c00484{bottom:115.681333pt;}
.y56_c00484{bottom:130.740000pt;}
.y55_c00484{bottom:143.666667pt;}
.y54_c00484{bottom:144.278667pt;}
.y53_c00484{bottom:147.604000pt;}
.y52_c00484{bottom:161.250667pt;}
.y51_c00484{bottom:175.566667pt;}
.y50_c00484{bottom:190.038667pt;}
.y4f_c00484{bottom:190.306667pt;}
.y4e_c00484{bottom:190.888000pt;}
.y4d_c00484{bottom:191.377333pt;}
.y4c_c00484{bottom:192.204000pt;}
.y4b_c00484{bottom:192.480000pt;}
.y4a_c00484{bottom:205.296000pt;}
.y49_c00484{bottom:205.570667pt;}
.y48_c00484{bottom:206.088000pt;}
.y47_c00484{bottom:206.574667pt;}
.y46_c00484{bottom:207.248000pt;}
.y45_c00484{bottom:207.601333pt;}
.y44_c00484{bottom:221.513333pt;}
.y43_c00484{bottom:235.286667pt;}
.y42_c00484{bottom:235.828000pt;}
.y41_c00484{bottom:236.078667pt;}
.y40_c00484{bottom:236.753333pt;}
.y3f_c00484{bottom:237.078667pt;}
.y3e_c00484{bottom:237.841333pt;}
.y3d_c00484{bottom:251.266667pt;}
.y3c_c00484{bottom:267.493333pt;}
.y3b_c00484{bottom:283.842667pt;}
.y3a_c00484{bottom:298.532000pt;}
.y39_c00484{bottom:312.712000pt;}
.y38_c00484{bottom:327.009333pt;}
.y37_c00484{bottom:342.258667pt;}
.y36_c00484{bottom:356.753333pt;}
.y33_c00484{bottom:370.689333pt;}
.y32_c00484{bottom:370.902667pt;}
.y31_c00484{bottom:371.766667pt;}
.y30_c00484{bottom:372.020000pt;}
.y2f_c00484{bottom:372.632000pt;}
.y2e_c00484{bottom:373.412000pt;}
.y2d_c00484{bottom:373.536000pt;}
.y2c_c00484{bottom:373.924000pt;}
.y2b_c00484{bottom:385.560000pt;}
.y2a_c00484{bottom:385.989333pt;}
.y29_c00484{bottom:386.992000pt;}
.y28_c00484{bottom:387.590667pt;}
.y27_c00484{bottom:388.600000pt;}
.y26_c00484{bottom:389.284000pt;}
.y25_c00484{bottom:401.962667pt;}
.y24_c00484{bottom:402.177333pt;}
.y23_c00484{bottom:402.540000pt;}
.y22_c00484{bottom:403.057333pt;}
.y21_c00484{bottom:403.342667pt;}
.y20_c00484{bottom:404.162667pt;}
.y1f_c00484{bottom:416.753333pt;}
.y1e_c00484{bottom:432.748000pt;}
.y35_c00484{bottom:434.515500pt;}
.y34_c00484{bottom:438.965333pt;}
.y1d_c00484{bottom:446.148000pt;}
.y1c_c00484{bottom:446.309333pt;}
.y1b_c00484{bottom:447.096000pt;}
.y1a_c00484{bottom:447.796000pt;}
.y19_c00484{bottom:447.925333pt;}
.y18_c00484{bottom:448.561333pt;}
.y17_c00484{bottom:461.148000pt;}
.y16_c00484{bottom:462.289333pt;}
.y15_c00484{bottom:462.426667pt;}
.y14_c00484{bottom:463.346667pt;}
.y13_c00484{bottom:463.537333pt;}
.y12_c00484{bottom:463.833333pt;}
.y11_c00484{bottom:463.970667pt;}
.y10_c00484{bottom:464.401333pt;}
.yf_c00484{bottom:476.174667pt;}
.ye_c00484{bottom:476.233333pt;}
.yd_c00484{bottom:477.270667pt;}
.yc_c00484{bottom:477.518667pt;}
.yb_c00484{bottom:478.278667pt;}
.ya_c00484{bottom:478.801333pt;}
.y9_c00484{bottom:491.288000pt;}
.y8_c00484{bottom:491.442667pt;}
.y7_c00484{bottom:492.105333pt;}
.y6_c00484{bottom:492.446667pt;}
.y5_c00484{bottom:492.976000pt;}
.y4_c00484{bottom:494.066667pt;}
.y3_c00484{bottom:494.297333pt;}
.y2_c00484{bottom:494.642667pt;}
.y1_c00484{bottom:505.296000pt;}
.hc_c00484{height:27.070578pt;}
.h11_c00484{height:51.333333pt;}
.he_c00484{height:52.266667pt;}
.h10_c00484{height:54.133333pt;}
.hb_c00484{height:57.866667pt;}
.hf_c00484{height:58.800000pt;}
.h4_c00484{height:59.733333pt;}
.hd_c00484{height:60.666667pt;}
.h9_c00484{height:62.533333pt;}
.h13_c00484{height:63.466667pt;}
.h3_c00484{height:64.400000pt;}
.h16_c00484{height:65.333333pt;}
.ha_c00484{height:66.266667pt;}
.h7_c00484{height:67.200000pt;}
.h8_c00484{height:69.066667pt;}
.h5_c00484{height:70.000000pt;}
.h6_c00484{height:72.800000pt;}
.h15_c00484{height:72.804404pt;}
.h14_c00484{height:73.733333pt;}
.h12_c00484{height:76.533333pt;}
.h2_c00484{height:79.333333pt;}
.h0_c00484{height:549.066667pt;}
.h1_c00484{height:549.333333pt;}
.w0_c00484{width:319.200000pt;}
.w1_c00484{width:319.333333pt;}
.x0_c00484{left:0.000000pt;}
.x37_c00484{left:7.200000pt;}
.x64_c00484{left:8.750667pt;}
.x3_c00484{left:12.060000pt;}
.x6d_c00484{left:13.200000pt;}
.x20_c00484{left:15.604000pt;}
.x5d_c00484{left:18.240000pt;}
.x4a_c00484{left:28.080000pt;}
.x21_c00484{left:32.884000pt;}
.x4_c00484{left:35.116000pt;}
.x3b_c00484{left:40.560000pt;}
.x31_c00484{left:41.453333pt;}
.x10_c00484{left:44.770667pt;}
.x45_c00484{left:46.080000pt;}
.x40_c00484{left:47.040000pt;}
.x71_c00484{left:48.000000pt;}
.x6e_c00484{left:49.440000pt;}
.x5_c00484{left:50.454667pt;}
.x2c_c00484{left:54.324000pt;}
.x11_c00484{left:55.304000pt;}
.x38_c00484{left:57.120000pt;}
.x1c_c00484{left:58.324000pt;}
.xb_c00484{left:59.401333pt;}
.x74_c00484{left:60.636000pt;}
.x46_c00484{left:61.920000pt;}
.x51_c00484{left:63.600000pt;}
.x17_c00484{left:64.626667pt;}
.x60_c00484{left:65.998667pt;}
.x27_c00484{left:69.921333pt;}
.x18_c00484{left:75.450667pt;}
.x12_c00484{left:78.062667pt;}
.x65_c00484{left:80.982667pt;}
.x57_c00484{left:83.760000pt;}
.x28_c00484{left:90.334667pt;}
.x4b_c00484{left:91.680000pt;}
.x13_c00484{left:92.722667pt;}
.x22_c00484{left:94.084000pt;}
.x4e_c00484{left:95.040000pt;}
.x3c_c00484{left:97.680000pt;}
.x1d_c00484{left:98.644000pt;}
.x56_c00484{left:102.541333pt;}
.x4c_c00484{left:103.440000pt;}
.x5a_c00484{left:105.689333pt;}
.x1_c00484{left:107.280000pt;}
.x32_c00484{left:110.966667pt;}
.x5e_c00484{left:112.800000pt;}
.x41_c00484{left:114.240000pt;}
.x2d_c00484{left:117.428000pt;}
.x6_c00484{left:123.182667pt;}
.x61_c00484{left:124.078667pt;}
.x23_c00484{left:126.244000pt;}
.x29_c00484{left:127.310667pt;}
.xc_c00484{left:128.534667pt;}
.x1e_c00484{left:130.324000pt;}
.x19_c00484{left:133.748000pt;}
.x52_c00484{left:136.080000pt;}
.x6a_c00484{left:138.000000pt;}
.x24_c00484{left:143.044000pt;}
.x58_c00484{left:145.680000pt;}
.x3d_c00484{left:150.000000pt;}
.xd_c00484{left:151.068000pt;}
.x47_c00484{left:152.160000pt;}
.x2a_c00484{left:153.236000pt;}
.x2e_c00484{left:154.869333pt;}
.x7_c00484{left:158.466667pt;}
.x4d_c00484{left:159.840000pt;}
.x14_c00484{left:163.489333pt;}
.x4f_c00484{left:166.800000pt;}
.x2b_c00484{left:168.553333pt;}
.x62_c00484{left:169.918667pt;}
.x1f_c00484{left:172.084000pt;}
.x15_c00484{left:174.069333pt;}
.x6b_c00484{left:174.960000pt;}
.x33_c00484{left:177.466667pt;}
.x3e_c00484{left:178.800000pt;}
.x67_c00484{left:180.240000pt;}
.x8_c00484{left:181.257333pt;}
.x72_c00484{left:185.520000pt;}
.x25_c00484{left:190.084000pt;}
.x63_c00484{left:192.718667pt;}
.x42_c00484{left:193.680000pt;}
.x39_c00484{left:194.880000pt;}
.x5b_c00484{left:196.913333pt;}
.x75_c00484{left:198.062667pt;}
.x1a_c00484{left:199.273333pt;}
.x6f_c00484{left:203.520000pt;}
.x5f_c00484{left:206.400000pt;}
.x53_c00484{left:207.360000pt;}
.x26_c00484{left:208.804000pt;}
.x3f_c00484{left:210.240000pt;}
.x66_c00484{left:211.532000pt;}
.x1b_c00484{left:212.752000pt;}
.x50_c00484{left:216.240000pt;}
.x2f_c00484{left:217.512000pt;}
.x48_c00484{left:220.560000pt;}
.x5c_c00484{left:221.852000pt;}
.x68_c00484{left:223.680000pt;}
.x9_c00484{left:225.414667pt;}
.x54_c00484{left:227.040000pt;}
.x36_c00484{left:227.999341pt;}
.x35_c00484{left:231.576000pt;}
.x73_c00484{left:234.720000pt;}
.xa_c00484{left:235.700000pt;}
.x43_c00484{left:236.880000pt;}
.x3a_c00484{left:240.720000pt;}
.x30_c00484{left:244.381333pt;}
.xe_c00484{left:245.402667pt;}
.x55_c00484{left:249.600000pt;}
.xf_c00484{left:250.677333pt;}
.x6c_c00484{left:253.200000pt;}
.x59_c00484{left:257.040000pt;}
.x49_c00484{left:258.480000pt;}
.x34_c00484{left:260.293333pt;}
.x16_c00484{left:261.913333pt;}
.x69_c00484{left:265.200000pt;}
.x70_c00484{left:266.160000pt;}
.x2_c00484{left:276.000000pt;}
.x44_c00484{left:285.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00485 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00485 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00485 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00485 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00485{transform:matrix(0.011032,-0.000243,0.005499,0.249940,0,0);-ms-transform:matrix(0.011032,-0.000243,0.005499,0.249940,0,0);-webkit-transform:matrix(0.011032,-0.000243,0.005499,0.249940,0,0);}
.m1_c00485{transform:matrix(0.011612,-0.000255,0.005499,0.249940,0,0);-ms-transform:matrix(0.011612,-0.000255,0.005499,0.249940,0,0);-webkit-transform:matrix(0.011612,-0.000255,0.005499,0.249940,0,0);}
.m82_c00485{transform:matrix(0.023869,-0.000525,0.005499,0.249940,0,0);-ms-transform:matrix(0.023869,-0.000525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.023869,-0.000525,0.005499,0.249940,0,0);}
.m9a_c00485{transform:matrix(0.076382,-0.001680,0.005499,0.249940,0,0);-ms-transform:matrix(0.076382,-0.001680,0.005499,0.249940,0,0);-webkit-transform:matrix(0.076382,-0.001680,0.005499,0.249940,0,0);}
.m9f_c00485{transform:matrix(0.108684,-0.002391,0.005499,0.249940,0,0);-ms-transform:matrix(0.108684,-0.002391,0.005499,0.249940,0,0);-webkit-transform:matrix(0.108684,-0.002391,0.005499,0.249940,0,0);}
.maf_c00485{transform:matrix(0.110898,-0.002440,0.005499,0.249940,0,0);-ms-transform:matrix(0.110898,-0.002440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.110898,-0.002440,0.005499,0.249940,0,0);}
.m52_c00485{transform:matrix(0.117747,-0.002590,0.005499,0.249940,0,0);-ms-transform:matrix(0.117747,-0.002590,0.005499,0.249940,0,0);-webkit-transform:matrix(0.117747,-0.002590,0.005499,0.249940,0,0);}
.m2e_c00485{transform:matrix(0.120376,-0.002648,0.005499,0.249940,0,0);-ms-transform:matrix(0.120376,-0.002648,0.005499,0.249940,0,0);-webkit-transform:matrix(0.120376,-0.002648,0.005499,0.249940,0,0);}
.md5_c00485{transform:matrix(0.120731,-0.002656,0.005499,0.249940,0,0);-ms-transform:matrix(0.120731,-0.002656,0.005499,0.249940,0,0);-webkit-transform:matrix(0.120731,-0.002656,0.005499,0.249940,0,0);}
.m89_c00485{transform:matrix(0.129254,-0.002844,0.005499,0.249940,0,0);-ms-transform:matrix(0.129254,-0.002844,0.005499,0.249940,0,0);-webkit-transform:matrix(0.129254,-0.002844,0.005499,0.249940,0,0);}
.me7_c00485{transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);}
.md9_c00485{transform:matrix(0.131208,-0.002887,0.005499,0.249940,0,0);-ms-transform:matrix(0.131208,-0.002887,0.005499,0.249940,0,0);-webkit-transform:matrix(0.131208,-0.002887,0.005499,0.249940,0,0);}
.md0_c00485{transform:matrix(0.134487,-0.002959,0.005499,0.249940,0,0);-ms-transform:matrix(0.134487,-0.002959,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134487,-0.002959,0.005499,0.249940,0,0);}
.m62_c00485{transform:matrix(0.136367,-0.003000,0.005499,0.249940,0,0);-ms-transform:matrix(0.136367,-0.003000,0.005499,0.249940,0,0);-webkit-transform:matrix(0.136367,-0.003000,0.005499,0.249940,0,0);}
.m18_c00485{transform:matrix(0.136657,-0.003006,0.005499,0.249940,0,0);-ms-transform:matrix(0.136657,-0.003006,0.005499,0.249940,0,0);-webkit-transform:matrix(0.136657,-0.003006,0.005499,0.249940,0,0);}
.m31_c00485{transform:matrix(0.137522,-0.003025,0.005499,0.249940,0,0);-ms-transform:matrix(0.137522,-0.003025,0.005499,0.249940,0,0);-webkit-transform:matrix(0.137522,-0.003025,0.005499,0.249940,0,0);}
.md7_c00485{transform:matrix(0.137637,-0.003028,0.005499,0.249940,0,0);-ms-transform:matrix(0.137637,-0.003028,0.005499,0.249940,0,0);-webkit-transform:matrix(0.137637,-0.003028,0.005499,0.249940,0,0);}
.m96_c00485{transform:matrix(0.137652,-0.003028,0.005499,0.249940,0,0);-ms-transform:matrix(0.137652,-0.003028,0.005499,0.249940,0,0);-webkit-transform:matrix(0.137652,-0.003028,0.005499,0.249940,0,0);}
.m59_c00485{transform:matrix(0.137772,-0.003031,0.005499,0.249940,0,0);-ms-transform:matrix(0.137772,-0.003031,0.005499,0.249940,0,0);-webkit-transform:matrix(0.137772,-0.003031,0.005499,0.249940,0,0);}
.m8_c00485{transform:matrix(0.139766,-0.003075,0.005499,0.249940,0,0);-ms-transform:matrix(0.139766,-0.003075,0.005499,0.249940,0,0);-webkit-transform:matrix(0.139766,-0.003075,0.005499,0.249940,0,0);}
.m60_c00485{transform:matrix(0.139951,-0.003079,0.005499,0.249940,0,0);-ms-transform:matrix(0.139951,-0.003079,0.005499,0.249940,0,0);-webkit-transform:matrix(0.139951,-0.003079,0.005499,0.249940,0,0);}
.m32_c00485{transform:matrix(0.140611,-0.003093,0.005499,0.249940,0,0);-ms-transform:matrix(0.140611,-0.003093,0.005499,0.249940,0,0);-webkit-transform:matrix(0.140611,-0.003093,0.005499,0.249940,0,0);}
.m42_c00485{transform:matrix(0.141491,-0.003113,0.005499,0.249940,0,0);-ms-transform:matrix(0.141491,-0.003113,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141491,-0.003113,0.005499,0.249940,0,0);}
.m5d_c00485{transform:matrix(0.144355,-0.003176,0.005499,0.249940,0,0);-ms-transform:matrix(0.144355,-0.003176,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144355,-0.003176,0.005499,0.249940,0,0);}
.m92_c00485{transform:matrix(0.145270,-0.003196,0.005499,0.249940,0,0);-ms-transform:matrix(0.145270,-0.003196,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145270,-0.003196,0.005499,0.249940,0,0);}
.m17_c00485{transform:matrix(0.145905,-0.003210,0.005499,0.249940,0,0);-ms-transform:matrix(0.145905,-0.003210,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145905,-0.003210,0.005499,0.249940,0,0);}
.md8_c00485{transform:matrix(0.148279,-0.003262,0.005499,0.249940,0,0);-ms-transform:matrix(0.148279,-0.003262,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148279,-0.003262,0.005499,0.249940,0,0);}
.m61_c00485{transform:matrix(0.148509,-0.003267,0.005499,0.249940,0,0);-ms-transform:matrix(0.148509,-0.003267,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148509,-0.003267,0.005499,0.249940,0,0);}
.m81_c00485{transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);-ms-transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150534,-0.003312,0.005499,0.249940,0,0);}
.m58_c00485{transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);-ms-transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150764,-0.003317,0.005499,0.249940,0,0);}
.m76_c00485{transform:matrix(0.152423,-0.003353,0.005499,0.249940,0,0);-ms-transform:matrix(0.152423,-0.003353,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152423,-0.003353,0.005499,0.249940,0,0);}
.m66_c00485{transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);-ms-transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152478,-0.003355,0.005499,0.249940,0,0);}
.me_c00485{transform:matrix(0.152618,-0.003358,0.005499,0.249940,0,0);-ms-transform:matrix(0.152618,-0.003358,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152618,-0.003358,0.005499,0.249940,0,0);}
.m36_c00485{transform:matrix(0.155337,-0.003417,0.005499,0.249940,0,0);-ms-transform:matrix(0.155337,-0.003417,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155337,-0.003417,0.005499,0.249940,0,0);}
.m9d_c00485{transform:matrix(0.156312,-0.003439,0.005499,0.249940,0,0);-ms-transform:matrix(0.156312,-0.003439,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156312,-0.003439,0.005499,0.249940,0,0);}
.m93_c00485{transform:matrix(0.156977,-0.003453,0.005499,0.249940,0,0);-ms-transform:matrix(0.156977,-0.003453,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156977,-0.003453,0.005499,0.249940,0,0);}
.m3b_c00485{transform:matrix(0.157167,-0.003458,0.005499,0.249940,0,0);-ms-transform:matrix(0.157167,-0.003458,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157167,-0.003458,0.005499,0.249940,0,0);}
.m63_c00485{transform:matrix(0.157327,-0.003461,0.005499,0.249940,0,0);-ms-transform:matrix(0.157327,-0.003461,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157327,-0.003461,0.005499,0.249940,0,0);}
.m97_c00485{transform:matrix(0.158052,-0.003477,0.005499,0.249940,0,0);-ms-transform:matrix(0.158052,-0.003477,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158052,-0.003477,0.005499,0.249940,0,0);}
.m6a_c00485{transform:matrix(0.158302,-0.003483,0.005499,0.249940,0,0);-ms-transform:matrix(0.158302,-0.003483,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158302,-0.003483,0.005499,0.249940,0,0);}
.m87_c00485{transform:matrix(0.158477,-0.003486,0.005499,0.249940,0,0);-ms-transform:matrix(0.158477,-0.003486,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158477,-0.003486,0.005499,0.249940,0,0);}
.m77_c00485{transform:matrix(0.158602,-0.003489,0.005499,0.249940,0,0);-ms-transform:matrix(0.158602,-0.003489,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158602,-0.003489,0.005499,0.249940,0,0);}
.m56_c00485{transform:matrix(0.159956,-0.003519,0.005499,0.249940,0,0);-ms-transform:matrix(0.159956,-0.003519,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159956,-0.003519,0.005499,0.249940,0,0);}
.m16_c00485{transform:matrix(0.160331,-0.003527,0.005499,0.249940,0,0);-ms-transform:matrix(0.160331,-0.003527,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160331,-0.003527,0.005499,0.249940,0,0);}
.m35_c00485{transform:matrix(0.160616,-0.003534,0.005499,0.249940,0,0);-ms-transform:matrix(0.160616,-0.003534,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160616,-0.003534,0.005499,0.249940,0,0);}
.m3_c00485{transform:matrix(0.161126,-0.003545,0.005499,0.249940,0,0);-ms-transform:matrix(0.161126,-0.003545,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161126,-0.003545,0.005499,0.249940,0,0);}
.m9_c00485{transform:matrix(0.161846,-0.003561,0.005499,0.249940,0,0);-ms-transform:matrix(0.161846,-0.003561,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161846,-0.003561,0.005499,0.249940,0,0);}
.m65_c00485{transform:matrix(0.162076,-0.003566,0.005499,0.249940,0,0);-ms-transform:matrix(0.162076,-0.003566,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162076,-0.003566,0.005499,0.249940,0,0);}
.mce_c00485{transform:matrix(0.162171,-0.003568,0.005499,0.249940,0,0);-ms-transform:matrix(0.162171,-0.003568,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162171,-0.003568,0.005499,0.249940,0,0);}
.md4_c00485{transform:matrix(0.162206,-0.003569,0.005499,0.249940,0,0);-ms-transform:matrix(0.162206,-0.003569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162206,-0.003569,0.005499,0.249940,0,0);}
.m3f_c00485{transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);-ms-transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);}
.m34_c00485{transform:matrix(0.162931,-0.003584,0.005499,0.249940,0,0);-ms-transform:matrix(0.162931,-0.003584,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162931,-0.003584,0.005499,0.249940,0,0);}
.mba_c00485{transform:matrix(0.163245,-0.003591,0.005499,0.249940,0,0);-ms-transform:matrix(0.163245,-0.003591,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163245,-0.003591,0.005499,0.249940,0,0);}
.m11_c00485{transform:matrix(0.164090,-0.003610,0.005499,0.249940,0,0);-ms-transform:matrix(0.164090,-0.003610,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164090,-0.003610,0.005499,0.249940,0,0);}
.mda_c00485{transform:matrix(0.164650,-0.003622,0.005499,0.249940,0,0);-ms-transform:matrix(0.164650,-0.003622,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164650,-0.003622,0.005499,0.249940,0,0);}
.mb3_c00485{transform:matrix(0.165760,-0.003647,0.005499,0.249940,0,0);-ms-transform:matrix(0.165760,-0.003647,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165760,-0.003647,0.005499,0.249940,0,0);}
.m99_c00485{transform:matrix(0.166300,-0.003659,0.005499,0.249940,0,0);-ms-transform:matrix(0.166300,-0.003659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166300,-0.003659,0.005499,0.249940,0,0);}
.mc2_c00485{transform:matrix(0.166505,-0.003663,0.005499,0.249940,0,0);-ms-transform:matrix(0.166505,-0.003663,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166505,-0.003663,0.005499,0.249940,0,0);}
.m1f_c00485{transform:matrix(0.166630,-0.003666,0.005499,0.249940,0,0);-ms-transform:matrix(0.166630,-0.003666,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166630,-0.003666,0.005499,0.249940,0,0);}
.m1d_c00485{transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);-ms-transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166940,-0.003673,0.005499,0.249940,0,0);}
.ma0_c00485{transform:matrix(0.167424,-0.003683,0.005499,0.249940,0,0);-ms-transform:matrix(0.167424,-0.003683,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167424,-0.003683,0.005499,0.249940,0,0);}
.m2_c00485{transform:matrix(0.168564,-0.003708,0.005499,0.249940,0,0);-ms-transform:matrix(0.168564,-0.003708,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168564,-0.003708,0.005499,0.249940,0,0);}
.m8a_c00485{transform:matrix(0.168999,-0.003718,0.005499,0.249940,0,0);-ms-transform:matrix(0.168999,-0.003718,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168999,-0.003718,0.005499,0.249940,0,0);}
.m10_c00485{transform:matrix(0.169384,-0.003726,0.005499,0.249940,0,0);-ms-transform:matrix(0.169384,-0.003726,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169384,-0.003726,0.005499,0.249940,0,0);}
.m5e_c00485{transform:matrix(0.169389,-0.003727,0.005499,0.249940,0,0);-ms-transform:matrix(0.169389,-0.003727,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169389,-0.003727,0.005499,0.249940,0,0);}
.m86_c00485{transform:matrix(0.170109,-0.003742,0.005499,0.249940,0,0);-ms-transform:matrix(0.170109,-0.003742,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170109,-0.003742,0.005499,0.249940,0,0);}
.me6_c00485{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m71_c00485{transform:matrix(0.170429,-0.003749,0.005499,0.249940,0,0);-ms-transform:matrix(0.170429,-0.003749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170429,-0.003749,0.005499,0.249940,0,0);}
.m6f_c00485{transform:matrix(0.170524,-0.003752,0.005499,0.249940,0,0);-ms-transform:matrix(0.170524,-0.003752,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170524,-0.003752,0.005499,0.249940,0,0);}
.m94_c00485{transform:matrix(0.170909,-0.003760,0.005499,0.249940,0,0);-ms-transform:matrix(0.170909,-0.003760,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170909,-0.003760,0.005499,0.249940,0,0);}
.m29_c00485{transform:matrix(0.171094,-0.003764,0.005499,0.249940,0,0);-ms-transform:matrix(0.171094,-0.003764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171094,-0.003764,0.005499,0.249940,0,0);}
.ma8_c00485{transform:matrix(0.171349,-0.003770,0.005499,0.249940,0,0);-ms-transform:matrix(0.171349,-0.003770,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171349,-0.003770,0.005499,0.249940,0,0);}
.ma3_c00485{transform:matrix(0.171823,-0.003780,0.005499,0.249940,0,0);-ms-transform:matrix(0.171823,-0.003780,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171823,-0.003780,0.005499,0.249940,0,0);}
.m38_c00485{transform:matrix(0.172323,-0.003791,0.005499,0.249940,0,0);-ms-transform:matrix(0.172323,-0.003791,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172323,-0.003791,0.005499,0.249940,0,0);}
.m67_c00485{transform:matrix(0.172368,-0.003792,0.005499,0.249940,0,0);-ms-transform:matrix(0.172368,-0.003792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172368,-0.003792,0.005499,0.249940,0,0);}
.ma6_c00485{transform:matrix(0.172903,-0.003804,0.005499,0.249940,0,0);-ms-transform:matrix(0.172903,-0.003804,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172903,-0.003804,0.005499,0.249940,0,0);}
.m12_c00485{transform:matrix(0.173168,-0.003810,0.005499,0.249940,0,0);-ms-transform:matrix(0.173168,-0.003810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173168,-0.003810,0.005499,0.249940,0,0);}
.m13_c00485{transform:matrix(0.173248,-0.003811,0.005499,0.249940,0,0);-ms-transform:matrix(0.173248,-0.003811,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173248,-0.003811,0.005499,0.249940,0,0);}
.mad_c00485{transform:matrix(0.173463,-0.003816,0.005499,0.249940,0,0);-ms-transform:matrix(0.173463,-0.003816,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173463,-0.003816,0.005499,0.249940,0,0);}
.m57_c00485{transform:matrix(0.173508,-0.003817,0.005499,0.249940,0,0);-ms-transform:matrix(0.173508,-0.003817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173508,-0.003817,0.005499,0.249940,0,0);}
.m5b_c00485{transform:matrix(0.174118,-0.003831,0.005499,0.249940,0,0);-ms-transform:matrix(0.174118,-0.003831,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174118,-0.003831,0.005499,0.249940,0,0);}
.m3d_c00485{transform:matrix(0.174223,-0.003833,0.005499,0.249940,0,0);-ms-transform:matrix(0.174223,-0.003833,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174223,-0.003833,0.005499,0.249940,0,0);}
.mb7_c00485{transform:matrix(0.175238,-0.003855,0.005499,0.249940,0,0);-ms-transform:matrix(0.175238,-0.003855,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175238,-0.003855,0.005499,0.249940,0,0);}
.mb4_c00485{transform:matrix(0.175667,-0.003865,0.005499,0.249940,0,0);-ms-transform:matrix(0.175667,-0.003865,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175667,-0.003865,0.005499,0.249940,0,0);}
.m95_c00485{transform:matrix(0.175887,-0.003870,0.005499,0.249940,0,0);-ms-transform:matrix(0.175887,-0.003870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175887,-0.003870,0.005499,0.249940,0,0);}
.m5f_c00485{transform:matrix(0.176272,-0.003878,0.005499,0.249940,0,0);-ms-transform:matrix(0.176272,-0.003878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176272,-0.003878,0.005499,0.249940,0,0);}
.ma2_c00485{transform:matrix(0.176277,-0.003878,0.005499,0.249940,0,0);-ms-transform:matrix(0.176277,-0.003878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176277,-0.003878,0.005499,0.249940,0,0);}
.m78_c00485{transform:matrix(0.177827,-0.003912,0.005499,0.249940,0,0);-ms-transform:matrix(0.177827,-0.003912,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177827,-0.003912,0.005499,0.249940,0,0);}
.m8d_c00485{transform:matrix(0.177837,-0.003912,0.005499,0.249940,0,0);-ms-transform:matrix(0.177837,-0.003912,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177837,-0.003912,0.005499,0.249940,0,0);}
.m28_c00485{transform:matrix(0.177977,-0.003915,0.005499,0.249940,0,0);-ms-transform:matrix(0.177977,-0.003915,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177977,-0.003915,0.005499,0.249940,0,0);}
.m53_c00485{transform:matrix(0.178257,-0.003922,0.005499,0.249940,0,0);-ms-transform:matrix(0.178257,-0.003922,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178257,-0.003922,0.005499,0.249940,0,0);}
.mc_c00485{transform:matrix(0.178362,-0.003924,0.005499,0.249940,0,0);-ms-transform:matrix(0.178362,-0.003924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178362,-0.003924,0.005499,0.249940,0,0);}
.m33_c00485{transform:matrix(0.179057,-0.003939,0.005499,0.249940,0,0);-ms-transform:matrix(0.179057,-0.003939,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179057,-0.003939,0.005499,0.249940,0,0);}
.mcf_c00485{transform:matrix(0.179242,-0.003943,0.005499,0.249940,0,0);-ms-transform:matrix(0.179242,-0.003943,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179242,-0.003943,0.005499,0.249940,0,0);}
.m37_c00485{transform:matrix(0.179622,-0.003952,0.005499,0.249940,0,0);-ms-transform:matrix(0.179622,-0.003952,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179622,-0.003952,0.005499,0.249940,0,0);}
.md1_c00485{transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);-ms-transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179826,-0.003956,0.005499,0.249940,0,0);}
.m21_c00485{transform:matrix(0.179881,-0.003957,0.005499,0.249940,0,0);-ms-transform:matrix(0.179881,-0.003957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179881,-0.003957,0.005499,0.249940,0,0);}
.m6e_c00485{transform:matrix(0.180886,-0.003979,0.005499,0.249940,0,0);-ms-transform:matrix(0.180886,-0.003979,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180886,-0.003979,0.005499,0.249940,0,0);}
.m3e_c00485{transform:matrix(0.180936,-0.003981,0.005499,0.249940,0,0);-ms-transform:matrix(0.180936,-0.003981,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180936,-0.003981,0.005499,0.249940,0,0);}
.m20_c00485{transform:matrix(0.181126,-0.003985,0.005499,0.249940,0,0);-ms-transform:matrix(0.181126,-0.003985,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181126,-0.003985,0.005499,0.249940,0,0);}
.m14_c00485{transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);-ms-transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181781,-0.003999,0.005499,0.249940,0,0);}
.m70_c00485{transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-ms-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181886,-0.004001,0.005499,0.249940,0,0);}
.m26_c00485{transform:matrix(0.182306,-0.004011,0.005499,0.249940,0,0);-ms-transform:matrix(0.182306,-0.004011,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182306,-0.004011,0.005499,0.249940,0,0);}
.m73_c00485{transform:matrix(0.182331,-0.004011,0.005499,0.249940,0,0);-ms-transform:matrix(0.182331,-0.004011,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182331,-0.004011,0.005499,0.249940,0,0);}
.m4e_c00485{transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);-ms-transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182831,-0.004022,0.005499,0.249940,0,0);}
.m8e_c00485{transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);-ms-transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183950,-0.004047,0.005499,0.249940,0,0);}
.m68_c00485{transform:matrix(0.184385,-0.004056,0.005499,0.249940,0,0);-ms-transform:matrix(0.184385,-0.004056,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184385,-0.004056,0.005499,0.249940,0,0);}
.mae_c00485{transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);-ms-transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);}
.m2b_c00485{transform:matrix(0.184845,-0.004067,0.005499,0.249940,0,0);-ms-transform:matrix(0.184845,-0.004067,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184845,-0.004067,0.005499,0.249940,0,0);}
.m2a_c00485{transform:matrix(0.184965,-0.004069,0.005499,0.249940,0,0);-ms-transform:matrix(0.184965,-0.004069,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184965,-0.004069,0.005499,0.249940,0,0);}
.mcc_c00485{transform:matrix(0.186140,-0.004095,0.005499,0.249940,0,0);-ms-transform:matrix(0.186140,-0.004095,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186140,-0.004095,0.005499,0.249940,0,0);}
.m5a_c00485{transform:matrix(0.186220,-0.004097,0.005499,0.249940,0,0);-ms-transform:matrix(0.186220,-0.004097,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186220,-0.004097,0.005499,0.249940,0,0);}
.ma4_c00485{transform:matrix(0.186605,-0.004105,0.005499,0.249940,0,0);-ms-transform:matrix(0.186605,-0.004105,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186605,-0.004105,0.005499,0.249940,0,0);}
.m9b_c00485{transform:matrix(0.187190,-0.004118,0.005499,0.249940,0,0);-ms-transform:matrix(0.187190,-0.004118,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187190,-0.004118,0.005499,0.249940,0,0);}
.ma1_c00485{transform:matrix(0.187565,-0.004126,0.005499,0.249940,0,0);-ms-transform:matrix(0.187565,-0.004126,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187565,-0.004126,0.005499,0.249940,0,0);}
.m1e_c00485{transform:matrix(0.188279,-0.004142,0.005499,0.249940,0,0);-ms-transform:matrix(0.188279,-0.004142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188279,-0.004142,0.005499,0.249940,0,0);}
.m85_c00485{transform:matrix(0.188404,-0.004145,0.005499,0.249940,0,0);-ms-transform:matrix(0.188404,-0.004145,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188404,-0.004145,0.005499,0.249940,0,0);}
.m24_c00485{transform:matrix(0.188604,-0.004149,0.005499,0.249940,0,0);-ms-transform:matrix(0.188604,-0.004149,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188604,-0.004149,0.005499,0.249940,0,0);}
.m64_c00485{transform:matrix(0.189284,-0.004164,0.005499,0.249940,0,0);-ms-transform:matrix(0.189284,-0.004164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189284,-0.004164,0.005499,0.249940,0,0);}
.m79_c00485{transform:matrix(0.189484,-0.004169,0.005499,0.249940,0,0);-ms-transform:matrix(0.189484,-0.004169,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189484,-0.004169,0.005499,0.249940,0,0);}
.m27_c00485{transform:matrix(0.189699,-0.004173,0.005499,0.249940,0,0);-ms-transform:matrix(0.189699,-0.004173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189699,-0.004173,0.005499,0.249940,0,0);}
.m7d_c00485{transform:matrix(0.190389,-0.004189,0.005499,0.249940,0,0);-ms-transform:matrix(0.190389,-0.004189,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190389,-0.004189,0.005499,0.249940,0,0);}
.m1a_c00485{transform:matrix(0.190619,-0.004194,0.005499,0.249940,0,0);-ms-transform:matrix(0.190619,-0.004194,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190619,-0.004194,0.005499,0.249940,0,0);}
.mb0_c00485{transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);-ms-transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190974,-0.004201,0.005499,0.249940,0,0);}
.mc0_c00485{transform:matrix(0.191289,-0.004208,0.005499,0.249940,0,0);-ms-transform:matrix(0.191289,-0.004208,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191289,-0.004208,0.005499,0.249940,0,0);}
.mc6_c00485{transform:matrix(0.191494,-0.004213,0.005499,0.249940,0,0);-ms-transform:matrix(0.191494,-0.004213,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191494,-0.004213,0.005499,0.249940,0,0);}
.md2_c00485{transform:matrix(0.191589,-0.004215,0.005499,0.249940,0,0);-ms-transform:matrix(0.191589,-0.004215,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191589,-0.004215,0.005499,0.249940,0,0);}
.mbb_c00485{transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);-ms-transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191894,-0.004222,0.005499,0.249940,0,0);}
.mc3_c00485{transform:matrix(0.191989,-0.004224,0.005499,0.249940,0,0);-ms-transform:matrix(0.191989,-0.004224,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191989,-0.004224,0.005499,0.249940,0,0);}
.m0_c00485{transform:matrix(0.192508,-0.004235,0.005499,0.249940,0,0);-ms-transform:matrix(0.192508,-0.004235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192508,-0.004235,0.005499,0.249940,0,0);}
.mb6_c00485{transform:matrix(0.192518,-0.004235,0.005499,0.249940,0,0);-ms-transform:matrix(0.192518,-0.004235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192518,-0.004235,0.005499,0.249940,0,0);}
.m50_c00485{transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);-ms-transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193003,-0.004246,0.005499,0.249940,0,0);}
.mb8_c00485{transform:matrix(0.193108,-0.004248,0.005499,0.249940,0,0);-ms-transform:matrix(0.193108,-0.004248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193108,-0.004248,0.005499,0.249940,0,0);}
.m8b_c00485{transform:matrix(0.193898,-0.004266,0.005499,0.249940,0,0);-ms-transform:matrix(0.193898,-0.004266,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193898,-0.004266,0.005499,0.249940,0,0);}
.m22_c00485{transform:matrix(0.194038,-0.004269,0.005499,0.249940,0,0);-ms-transform:matrix(0.194038,-0.004269,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194038,-0.004269,0.005499,0.249940,0,0);}
.m69_c00485{transform:matrix(0.194183,-0.004272,0.005499,0.249940,0,0);-ms-transform:matrix(0.194183,-0.004272,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194183,-0.004272,0.005499,0.249940,0,0);}
.m25_c00485{transform:matrix(0.194878,-0.004287,0.005499,0.249940,0,0);-ms-transform:matrix(0.194878,-0.004287,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194878,-0.004287,0.005499,0.249940,0,0);}
.m4f_c00485{transform:matrix(0.195493,-0.004301,0.005499,0.249940,0,0);-ms-transform:matrix(0.195493,-0.004301,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195493,-0.004301,0.005499,0.249940,0,0);}
.m5_c00485{transform:matrix(0.197307,-0.004341,0.005499,0.249940,0,0);-ms-transform:matrix(0.197307,-0.004341,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197307,-0.004341,0.005499,0.249940,0,0);}
.m83_c00485{transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);-ms-transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197477,-0.004344,0.005499,0.249940,0,0);}
.m75_c00485{transform:matrix(0.197592,-0.004347,0.005499,0.249940,0,0);-ms-transform:matrix(0.197592,-0.004347,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197592,-0.004347,0.005499,0.249940,0,0);}
.me2_c00485{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.198832,-0.004374,0.005499,0.249940,0,0);-ms-transform:matrix(0.198832,-0.004374,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198832,-0.004374,0.005499,0.249940,0,0);}
.ma_c00485{transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);-ms-transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);}
.m45_c00485{transform:matrix(0.199327,-0.004385,0.005499,0.249940,0,0);-ms-transform:matrix(0.199327,-0.004385,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199327,-0.004385,0.005499,0.249940,0,0);}
.mb5_c00485{transform:matrix(0.199657,-0.004392,0.005499,0.249940,0,0);-ms-transform:matrix(0.199657,-0.004392,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199657,-0.004392,0.005499,0.249940,0,0);}
.m9e_c00485{transform:matrix(0.199967,-0.004399,0.005499,0.249940,0,0);-ms-transform:matrix(0.199967,-0.004399,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199967,-0.004399,0.005499,0.249940,0,0);}
.m23_c00485{transform:matrix(0.202166,-0.004448,0.005499,0.249940,0,0);-ms-transform:matrix(0.202166,-0.004448,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202166,-0.004448,0.005499,0.249940,0,0);}
.mbd_c00485{transform:matrix(0.202621,-0.004458,0.005499,0.249940,0,0);-ms-transform:matrix(0.202621,-0.004458,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202621,-0.004458,0.005499,0.249940,0,0);}
.m80_c00485{transform:matrix(0.203551,-0.004478,0.005499,0.249940,0,0);-ms-transform:matrix(0.203551,-0.004478,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203551,-0.004478,0.005499,0.249940,0,0);}
.m72_c00485{transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);-ms-transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203861,-0.004485,0.005499,0.249940,0,0);}
.m91_c00485{transform:matrix(0.203981,-0.004488,0.005499,0.249940,0,0);-ms-transform:matrix(0.203981,-0.004488,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203981,-0.004488,0.005499,0.249940,0,0);}
.mb9_c00485{transform:matrix(0.204511,-0.004499,0.005499,0.249940,0,0);-ms-transform:matrix(0.204511,-0.004499,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204511,-0.004499,0.005499,0.249940,0,0);}
.maa_c00485{transform:matrix(0.205095,-0.004512,0.005499,0.249940,0,0);-ms-transform:matrix(0.205095,-0.004512,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205095,-0.004512,0.005499,0.249940,0,0);}
.ma7_c00485{transform:matrix(0.205315,-0.004517,0.005499,0.249940,0,0);-ms-transform:matrix(0.205315,-0.004517,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205315,-0.004517,0.005499,0.249940,0,0);}
.ma5_c00485{transform:matrix(0.205395,-0.004519,0.005499,0.249940,0,0);-ms-transform:matrix(0.205395,-0.004519,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205395,-0.004519,0.005499,0.249940,0,0);}
.m6b_c00485{transform:matrix(0.205680,-0.004525,0.005499,0.249940,0,0);-ms-transform:matrix(0.205680,-0.004525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205680,-0.004525,0.005499,0.249940,0,0);}
.m1b_c00485{transform:matrix(0.206240,-0.004537,0.005499,0.249940,0,0);-ms-transform:matrix(0.206240,-0.004537,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206240,-0.004537,0.005499,0.249940,0,0);}
.mdd_c00485{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m3a_c00485{transform:matrix(0.207135,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207135,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207135,-0.004557,0.005499,0.249940,0,0);}
.m47_c00485{transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);-ms-transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207365,-0.004562,0.005499,0.249940,0,0);}
.m46_c00485{transform:matrix(0.207690,-0.004569,0.005499,0.249940,0,0);-ms-transform:matrix(0.207690,-0.004569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207690,-0.004569,0.005499,0.249940,0,0);}
.m74_c00485{transform:matrix(0.207755,-0.004571,0.005499,0.249940,0,0);-ms-transform:matrix(0.207755,-0.004571,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207755,-0.004571,0.005499,0.249940,0,0);}
.me1_c00485{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m98_c00485{transform:matrix(0.209884,-0.004617,0.005499,0.249940,0,0);-ms-transform:matrix(0.209884,-0.004617,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209884,-0.004617,0.005499,0.249940,0,0);}
.me5_c00485{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.mc9_c00485{transform:matrix(0.211399,-0.004651,0.005499,0.249940,0,0);-ms-transform:matrix(0.211399,-0.004651,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211399,-0.004651,0.005499,0.249940,0,0);}
.m40_c00485{transform:matrix(0.211474,-0.004652,0.005499,0.249940,0,0);-ms-transform:matrix(0.211474,-0.004652,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211474,-0.004652,0.005499,0.249940,0,0);}
.mca_c00485{transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);-ms-transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211914,-0.004662,0.005499,0.249940,0,0);}
.m2f_c00485{transform:matrix(0.211989,-0.004664,0.005499,0.249940,0,0);-ms-transform:matrix(0.211989,-0.004664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211989,-0.004664,0.005499,0.249940,0,0);}
.mdf_c00485{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.ma9_c00485{transform:matrix(0.212179,-0.004668,0.005499,0.249940,0,0);-ms-transform:matrix(0.212179,-0.004668,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212179,-0.004668,0.005499,0.249940,0,0);}
.m44_c00485{transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);-ms-transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212604,-0.004677,0.005499,0.249940,0,0);}
.m4d_c00485{transform:matrix(0.214288,-0.004714,0.005499,0.249940,0,0);-ms-transform:matrix(0.214288,-0.004714,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214288,-0.004714,0.005499,0.249940,0,0);}
.m8c_c00485{transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);-ms-transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215583,-0.004743,0.005499,0.249940,0,0);}
.me4_c00485{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{transform:matrix(0.216343,-0.004760,0.005499,0.249940,0,0);-ms-transform:matrix(0.216343,-0.004760,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216343,-0.004760,0.005499,0.249940,0,0);}
.mc8_c00485{transform:matrix(0.216503,-0.004763,0.005499,0.249940,0,0);-ms-transform:matrix(0.216503,-0.004763,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216503,-0.004763,0.005499,0.249940,0,0);}
.mbf_c00485{transform:matrix(0.216538,-0.004764,0.005499,0.249940,0,0);-ms-transform:matrix(0.216538,-0.004764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216538,-0.004764,0.005499,0.249940,0,0);}
.mab_c00485{transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);-ms-transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216688,-0.004767,0.005499,0.249940,0,0);}
.m9c_c00485{transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);-ms-transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);}
.m55_c00485{transform:matrix(0.216987,-0.004774,0.005499,0.249940,0,0);-ms-transform:matrix(0.216987,-0.004774,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216987,-0.004774,0.005499,0.249940,0,0);}
.md6_c00485{transform:matrix(0.217627,-0.004788,0.005499,0.249940,0,0);-ms-transform:matrix(0.217627,-0.004788,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217627,-0.004788,0.005499,0.249940,0,0);}
.mbc_c00485{transform:matrix(0.220062,-0.004841,0.005499,0.249940,0,0);-ms-transform:matrix(0.220062,-0.004841,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220062,-0.004841,0.005499,0.249940,0,0);}
.m4a_c00485{transform:matrix(0.220502,-0.004851,0.005499,0.249940,0,0);-ms-transform:matrix(0.220502,-0.004851,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220502,-0.004851,0.005499,0.249940,0,0);}
.mb2_c00485{transform:matrix(0.220622,-0.004854,0.005499,0.249940,0,0);-ms-transform:matrix(0.220622,-0.004854,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220622,-0.004854,0.005499,0.249940,0,0);}
.md3_c00485{transform:matrix(0.221032,-0.004863,0.005499,0.249940,0,0);-ms-transform:matrix(0.221032,-0.004863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221032,-0.004863,0.005499,0.249940,0,0);}
.m30_c00485{transform:matrix(0.221196,-0.004866,0.005499,0.249940,0,0);-ms-transform:matrix(0.221196,-0.004866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221196,-0.004866,0.005499,0.249940,0,0);}
.m7_c00485{transform:matrix(0.221871,-0.004881,0.005499,0.249940,0,0);-ms-transform:matrix(0.221871,-0.004881,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221871,-0.004881,0.005499,0.249940,0,0);}
.mc1_c00485{transform:matrix(0.222041,-0.004885,0.005499,0.249940,0,0);-ms-transform:matrix(0.222041,-0.004885,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222041,-0.004885,0.005499,0.249940,0,0);}
.m2c_c00485{transform:matrix(0.222416,-0.004893,0.005499,0.249940,0,0);-ms-transform:matrix(0.222416,-0.004893,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222416,-0.004893,0.005499,0.249940,0,0);}
.mf_c00485{transform:matrix(0.222786,-0.004901,0.005499,0.249940,0,0);-ms-transform:matrix(0.222786,-0.004901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222786,-0.004901,0.005499,0.249940,0,0);}
.mc7_c00485{transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);-ms-transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222921,-0.004904,0.005499,0.249940,0,0);}
.m7c_c00485{transform:matrix(0.225870,-0.004969,0.005499,0.249940,0,0);-ms-transform:matrix(0.225870,-0.004969,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225870,-0.004969,0.005499,0.249940,0,0);}
.m1c_c00485{transform:matrix(0.226590,-0.004985,0.005499,0.249940,0,0);-ms-transform:matrix(0.226590,-0.004985,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226590,-0.004985,0.005499,0.249940,0,0);}
.m4c_c00485{transform:matrix(0.227365,-0.005002,0.005499,0.249940,0,0);-ms-transform:matrix(0.227365,-0.005002,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227365,-0.005002,0.005499,0.249940,0,0);}
.me3_c00485{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.m43_c00485{transform:matrix(0.229699,-0.005053,0.005499,0.249940,0,0);-ms-transform:matrix(0.229699,-0.005053,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229699,-0.005053,0.005499,0.249940,0,0);}
.m5c_c00485{transform:matrix(0.230909,-0.005080,0.005499,0.249940,0,0);-ms-transform:matrix(0.230909,-0.005080,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230909,-0.005080,0.005499,0.249940,0,0);}
.m7f_c00485{transform:matrix(0.231584,-0.005095,0.005499,0.249940,0,0);-ms-transform:matrix(0.231584,-0.005095,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231584,-0.005095,0.005499,0.249940,0,0);}
.md_c00485{transform:matrix(0.231614,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231614,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231614,-0.005096,0.005499,0.249940,0,0);}
.m7e_c00485{transform:matrix(0.232319,-0.005111,0.005499,0.249940,0,0);-ms-transform:matrix(0.232319,-0.005111,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232319,-0.005111,0.005499,0.249940,0,0);}
.mdb_c00485{transform:matrix(0.233563,-0.005138,0.005499,0.249940,0,0);-ms-transform:matrix(0.233563,-0.005138,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233563,-0.005138,0.005499,0.249940,0,0);}
.mac_c00485{transform:matrix(0.237618,-0.005228,0.005499,0.249940,0,0);-ms-transform:matrix(0.237618,-0.005228,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237618,-0.005228,0.005499,0.249940,0,0);}
.mc4_c00485{transform:matrix(0.238332,-0.005243,0.005499,0.249940,0,0);-ms-transform:matrix(0.238332,-0.005243,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238332,-0.005243,0.005499,0.249940,0,0);}
.m48_c00485{transform:matrix(0.241297,-0.005309,0.005499,0.249940,0,0);-ms-transform:matrix(0.241297,-0.005309,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241297,-0.005309,0.005499,0.249940,0,0);}
.mcd_c00485{transform:matrix(0.242136,-0.005327,0.005499,0.249940,0,0);-ms-transform:matrix(0.242136,-0.005327,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242136,-0.005327,0.005499,0.249940,0,0);}
.m39_c00485{transform:matrix(0.250304,-0.005507,0.005499,0.249940,0,0);-ms-transform:matrix(0.250304,-0.005507,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250304,-0.005507,0.005499,0.249940,0,0);}
.mcb_c00485{transform:matrix(0.251169,-0.005526,0.005499,0.249940,0,0);-ms-transform:matrix(0.251169,-0.005526,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251169,-0.005526,0.005499,0.249940,0,0);}
.m51_c00485{transform:matrix(0.253194,-0.005570,0.005499,0.249940,0,0);-ms-transform:matrix(0.253194,-0.005570,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253194,-0.005570,0.005499,0.249940,0,0);}
.m3c_c00485{transform:matrix(0.253514,-0.005577,0.005499,0.249940,0,0);-ms-transform:matrix(0.253514,-0.005577,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253514,-0.005577,0.005499,0.249940,0,0);}
.m90_c00485{transform:matrix(0.256138,-0.005635,0.005499,0.249940,0,0);-ms-transform:matrix(0.256138,-0.005635,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256138,-0.005635,0.005499,0.249940,0,0);}
.m41_c00485{transform:matrix(0.263416,-0.005795,0.005499,0.249940,0,0);-ms-transform:matrix(0.263416,-0.005795,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263416,-0.005795,0.005499,0.249940,0,0);}
.mbe_c00485{transform:matrix(0.271704,-0.005977,0.005499,0.249940,0,0);-ms-transform:matrix(0.271704,-0.005977,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271704,-0.005977,0.005499,0.249940,0,0);}
.m7a_c00485{transform:matrix(0.279612,-0.006151,0.005499,0.249940,0,0);-ms-transform:matrix(0.279612,-0.006151,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279612,-0.006151,0.005499,0.249940,0,0);}
.me0_c00485{transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{transform:matrix(0.285226,-0.006275,0.005499,0.249940,0,0);-ms-transform:matrix(0.285226,-0.006275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.285226,-0.006275,0.005499,0.249940,0,0);}
.m15_c00485{transform:matrix(0.292924,-0.006444,0.005499,0.249940,0,0);-ms-transform:matrix(0.292924,-0.006444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.292924,-0.006444,0.005499,0.249940,0,0);}
.m84_c00485{transform:matrix(0.293099,-0.006448,0.005499,0.249940,0,0);-ms-transform:matrix(0.293099,-0.006448,0.005499,0.249940,0,0);-webkit-transform:matrix(0.293099,-0.006448,0.005499,0.249940,0,0);}
.mb1_c00485{transform:matrix(0.293319,-0.006453,0.005499,0.249940,0,0);-ms-transform:matrix(0.293319,-0.006453,0.005499,0.249940,0,0);-webkit-transform:matrix(0.293319,-0.006453,0.005499,0.249940,0,0);}
.mde_c00485{transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);}
.m88_c00485{transform:matrix(0.295359,-0.006498,0.005499,0.249940,0,0);-ms-transform:matrix(0.295359,-0.006498,0.005499,0.249940,0,0);-webkit-transform:matrix(0.295359,-0.006498,0.005499,0.249940,0,0);}
.m4_c00485{transform:matrix(0.330145,-0.007263,0.005499,0.249940,0,0);-ms-transform:matrix(0.330145,-0.007263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.330145,-0.007263,0.005499,0.249940,0,0);}
.mc5_c00485{transform:matrix(0.342367,-0.007532,0.005499,0.249940,0,0);-ms-transform:matrix(0.342367,-0.007532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.342367,-0.007532,0.005499,0.249940,0,0);}
.m7b_c00485{transform:matrix(0.364432,-0.008017,0.005499,0.249940,0,0);-ms-transform:matrix(0.364432,-0.008017,0.005499,0.249940,0,0);-webkit-transform:matrix(0.364432,-0.008017,0.005499,0.249940,0,0);}
.m6d_c00485{transform:matrix(0.381598,-0.008395,0.005499,0.249940,0,0);-ms-transform:matrix(0.381598,-0.008395,0.005499,0.249940,0,0);-webkit-transform:matrix(0.381598,-0.008395,0.005499,0.249940,0,0);}
.m6_c00485{transform:matrix(0.413740,-0.009102,0.005499,0.249940,0,0);-ms-transform:matrix(0.413740,-0.009102,0.005499,0.249940,0,0);-webkit-transform:matrix(0.413740,-0.009102,0.005499,0.249940,0,0);}
.m54_c00485{transform:matrix(0.414535,-0.009120,0.005499,0.249940,0,0);-ms-transform:matrix(0.414535,-0.009120,0.005499,0.249940,0,0);-webkit-transform:matrix(0.414535,-0.009120,0.005499,0.249940,0,0);}
.m49_c00485{transform:matrix(0.421448,-0.009272,0.005499,0.249940,0,0);-ms-transform:matrix(0.421448,-0.009272,0.005499,0.249940,0,0);-webkit-transform:matrix(0.421448,-0.009272,0.005499,0.249940,0,0);}
.m8f_c00485{transform:matrix(0.445952,-0.009811,0.005499,0.249940,0,0);-ms-transform:matrix(0.445952,-0.009811,0.005499,0.249940,0,0);-webkit-transform:matrix(0.445952,-0.009811,0.005499,0.249940,0,0);}
.m6c_c00485{transform:matrix(0.572257,-0.012590,0.005499,0.249940,0,0);-ms-transform:matrix(0.572257,-0.012590,0.005499,0.249940,0,0);-webkit-transform:matrix(0.572257,-0.012590,0.005499,0.249940,0,0);}
.mb_c00485{transform:matrix(0.607218,-0.013359,0.005499,0.249940,0,0);-ms-transform:matrix(0.607218,-0.013359,0.005499,0.249940,0,0);-webkit-transform:matrix(0.607218,-0.013359,0.005499,0.249940,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
.fc0_c00485{color:transparent;}
.fs14_c00485{font-size:22.050000px;}
.fsa_c00485{font-size:57.763974px;}
.fs12_c00485{font-size:58.814228px;}
.fse_c00485{font-size:60.914736px;}
.fs13_c00485{font-size:61.950000px;}
.fs7_c00485{font-size:61.964990px;}
.fs5_c00485{font-size:65.115752px;}
.fs9_c00485{font-size:66.166006px;}
.fs6_c00485{font-size:67.216260px;}
.fs10_c00485{font-size:68.266515px;}
.fsb_c00485{font-size:71.417277px;}
.fsd_c00485{font-size:72.467531px;}
.fs0_c00485{font-size:73.517785px;}
.fs8_c00485{font-size:74.568039px;}
.fsc_c00485{font-size:75.618293px;}
.fsf_c00485{font-size:77.718801px;}
.fs2_c00485{font-size:78.769055px;}
.fs1_c00485{font-size:79.819309px;}
.fs3_c00485{font-size:80.869563px;}
.fs4_c00485{font-size:82.970071px;}
.fs11_c00485{font-size:90.321850px;}
.y0_c00485{bottom:0.000000px;}
.ydf_c00485{bottom:29.899500px;}
.yde_c00485{bottom:46.512288px;}
.ydd_c00485{bottom:46.512345px;}
.yd4_c00485{bottom:58.198284px;}
.yd5_c00485{bottom:58.853814px;}
.yd6_c00485{bottom:59.112666px;}
.yd7_c00485{bottom:59.361711px;}
.yd8_c00485{bottom:59.948280px;}
.yd9_c00485{bottom:60.161571px;}
.yda_c00485{bottom:60.430746px;}
.ydb_c00485{bottom:61.079802px;}
.ydc_c00485{bottom:61.653126px;}
.ycc_c00485{bottom:78.722364px;}
.ycd_c00485{bottom:79.299813px;}
.yce_c00485{bottom:79.481130px;}
.ycf_c00485{bottom:80.223267px;}
.yd0_c00485{bottom:80.380818px;}
.yd1_c00485{bottom:80.629656px;}
.yd2_c00485{bottom:81.229734px;}
.yd3_c00485{bottom:81.447174px;}
.yc6_c00485{bottom:95.466033px;}
.yc7_c00485{bottom:96.104010px;}
.yc8_c00485{bottom:96.223338px;}
.yc9_c00485{bottom:96.576717px;}
.yca_c00485{bottom:97.572297px;}
.ycb_c00485{bottom:98.661609px;}
.ybf_c00485{bottom:112.480041px;}
.yc0_c00485{bottom:112.778874px;}
.yc1_c00485{bottom:113.550051px;}
.yc2_c00485{bottom:113.799507px;}
.yc3_c00485{bottom:114.796872px;}
.yc4_c00485{bottom:115.257375px;}
.yc5_c00485{bottom:115.652319px;}
.yb6_c00485{bottom:129.767733px;}
.yb7_c00485{bottom:130.085409px;}
.yb8_c00485{bottom:130.855182px;}
.yb9_c00485{bottom:131.000949px;}
.yba_c00485{bottom:131.229036px;}
.ybb_c00485{bottom:131.429118px;}
.ybc_c00485{bottom:132.118551px;}
.ybd_c00485{bottom:132.342297px;}
.ybe_c00485{bottom:133.070571px;}
.yb1_c00485{bottom:143.811411px;}
.yb2_c00485{bottom:144.466578px;}
.yb3_c00485{bottom:145.392720px;}
.yb4_c00485{bottom:145.749747px;}
.yb5_c00485{bottom:145.940877px;}
.yaa_c00485{bottom:163.527096px;}
.yab_c00485{bottom:163.955601px;}
.yac_c00485{bottom:164.324367px;}
.yad_c00485{bottom:165.284175px;}
.yae_c00485{bottom:165.844260px;}
.yaf_c00485{bottom:166.037610px;}
.yb0_c00485{bottom:166.738224px;}
.ya3_c00485{bottom:180.809385px;}
.ya4_c00485{bottom:181.556013px;}
.ya5_c00485{bottom:181.821399px;}
.ya6_c00485{bottom:182.353263px;}
.ya7_c00485{bottom:183.030456px;}
.ya8_c00485{bottom:183.274470px;}
.ya9_c00485{bottom:183.566250px;}
.y9b_c00485{bottom:195.131217px;}
.y9c_c00485{bottom:196.804161px;}
.y9d_c00485{bottom:196.965303px;}
.y9e_c00485{bottom:199.341237px;}
.y9f_c00485{bottom:199.905078px;}
.ya0_c00485{bottom:201.076134px;}
.ya1_c00485{bottom:201.385401px;}
.ya2_c00485{bottom:201.452484px;}
.y94_c00485{bottom:212.676462px;}
.y95_c00485{bottom:213.017208px;}
.y96_c00485{bottom:214.151586px;}
.y97_c00485{bottom:214.923504px;}
.y98_c00485{bottom:215.522970px;}
.y99_c00485{bottom:215.798238px;}
.y9a_c00485{bottom:215.967156px;}
.y8f_c00485{bottom:234.148158px;}
.y8e_c00485{bottom:234.148650px;}
.y8d_c00485{bottom:234.148767px;}
.y90_c00485{bottom:234.148860px;}
.y93_c00485{bottom:234.149241px;}
.y92_c00485{bottom:234.149280px;}
.y91_c00485{bottom:234.149457px;}
.y84_c00485{bottom:245.359587px;}
.y85_c00485{bottom:246.250470px;}
.y86_c00485{bottom:246.487695px;}
.y87_c00485{bottom:246.817611px;}
.y88_c00485{bottom:247.088934px;}
.y89_c00485{bottom:248.456691px;}
.y8a_c00485{bottom:249.008382px;}
.y8b_c00485{bottom:249.268581px;}
.y8c_c00485{bottom:249.796770px;}
.y7b_c00485{bottom:265.882287px;}
.y7c_c00485{bottom:266.643564px;}
.y7d_c00485{bottom:266.797995px;}
.y7e_c00485{bottom:267.467649px;}
.y7f_c00485{bottom:267.794592px;}
.y80_c00485{bottom:268.294359px;}
.y81_c00485{bottom:269.333109px;}
.y82_c00485{bottom:269.554428px;}
.y83_c00485{bottom:269.907327px;}
.y75_c00485{bottom:281.279496px;}
.y76_c00485{bottom:281.651889px;}
.y77_c00485{bottom:283.173225px;}
.y78_c00485{bottom:283.672218px;}
.y79_c00485{bottom:284.083191px;}
.y7a_c00485{bottom:285.551904px;}
.y6e_c00485{bottom:296.402721px;}
.y6f_c00485{bottom:297.203064px;}
.y70_c00485{bottom:297.737154px;}
.y71_c00485{bottom:298.958610px;}
.y72_c00485{bottom:299.476611px;}
.y73_c00485{bottom:300.677439px;}
.y74_c00485{bottom:301.093173px;}
.y6a_c00485{bottom:313.686327px;}
.y6b_c00485{bottom:315.241374px;}
.y6c_c00485{bottom:316.562595px;}
.y6d_c00485{bottom:317.185638px;}
.ye0_c00485{bottom:326.430000px;}
.y61_c00485{bottom:330.159240px;}
.y62_c00485{bottom:330.829848px;}
.y63_c00485{bottom:331.588311px;}
.y64_c00485{bottom:331.876866px;}
.y65_c00485{bottom:332.593374px;}
.y66_c00485{bottom:332.960805px;}
.y67_c00485{bottom:333.868110px;}
.y68_c00485{bottom:334.193685px;}
.y69_c00485{bottom:335.098794px;}
.y5a_c00485{bottom:347.175822px;}
.y5b_c00485{bottom:348.326334px;}
.y5c_c00485{bottom:349.119027px;}
.y5d_c00485{bottom:350.913138px;}
.y5e_c00485{bottom:351.505554px;}
.y5f_c00485{bottom:352.154301px;}
.y60_c00485{bottom:353.312073px;}
.y50_c00485{bottom:366.617949px;}
.y51_c00485{bottom:367.007226px;}
.y52_c00485{bottom:367.216062px;}
.y53_c00485{bottom:367.738992px;}
.y54_c00485{bottom:367.831221px;}
.y55_c00485{bottom:368.066169px;}
.y56_c00485{bottom:368.567859px;}
.y57_c00485{bottom:368.751144px;}
.y58_c00485{bottom:369.430683px;}
.y59_c00485{bottom:369.751335px;}
.y48_c00485{bottom:384.171006px;}
.y49_c00485{bottom:384.678915px;}
.y4a_c00485{bottom:385.536111px;}
.y4b_c00485{bottom:385.970181px;}
.y4c_c00485{bottom:386.679450px;}
.y4d_c00485{bottom:386.958942px;}
.y4e_c00485{bottom:388.024728px;}
.y4f_c00485{bottom:388.376853px;}
.y41_c00485{bottom:401.454642px;}
.y42_c00485{bottom:402.355347px;}
.y43_c00485{bottom:402.695046px;}
.y44_c00485{bottom:402.997449px;}
.y45_c00485{bottom:403.878705px;}
.y46_c00485{bottom:404.260569px;}
.y47_c00485{bottom:404.986554px;}
.y3e_c00485{bottom:418.843959px;}
.y3d_c00485{bottom:418.844205px;}
.y3f_c00485{bottom:418.844214px;}
.y3c_c00485{bottom:418.844442px;}
.y40_c00485{bottom:418.844613px;}
.y3b_c00485{bottom:418.845114px;}
.y3a_c00485{bottom:418.845159px;}
.y32_c00485{bottom:433.325259px;}
.y33_c00485{bottom:434.036403px;}
.y34_c00485{bottom:434.409693px;}
.y35_c00485{bottom:435.215955px;}
.y36_c00485{bottom:436.035024px;}
.y37_c00485{bottom:437.006484px;}
.y38_c00485{bottom:437.392896px;}
.y39_c00485{bottom:437.700612px;}
.y2b_c00485{bottom:452.767932px;}
.y2c_c00485{bottom:452.994600px;}
.y2d_c00485{bottom:453.470742px;}
.y2e_c00485{bottom:453.910686px;}
.y2f_c00485{bottom:454.499847px;}
.y30_c00485{bottom:454.736985px;}
.y31_c00485{bottom:455.651565px;}
.y24_c00485{bottom:469.513233px;}
.y25_c00485{bottom:469.803918px;}
.y26_c00485{bottom:470.771979px;}
.y27_c00485{bottom:471.892473px;}
.y28_c00485{bottom:472.392012px;}
.y29_c00485{bottom:472.648227px;}
.y2a_c00485{bottom:473.761803px;}
.y1e_c00485{bottom:486.256059px;}
.y1f_c00485{bottom:487.198251px;}
.y20_c00485{bottom:488.153058px;}
.y21_c00485{bottom:488.585043px;}
.y22_c00485{bottom:489.114798px;}
.y23_c00485{bottom:489.693486px;}
.y19_c00485{bottom:499.762041px;}
.y1a_c00485{bottom:501.363771px;}
.y1b_c00485{bottom:502.223475px;}
.y1c_c00485{bottom:502.644960px;}
.y1d_c00485{bottom:504.563880px;}
.y12_c00485{bottom:516.504999px;}
.y13_c00485{bottom:517.624953px;}
.y14_c00485{bottom:517.942869px;}
.y15_c00485{bottom:518.796648px;}
.y16_c00485{bottom:519.167298px;}
.y17_c00485{bottom:520.256667px;}
.y18_c00485{bottom:521.031768px;}
.yb_c00485{bottom:534.054798px;}
.yc_c00485{bottom:534.396591px;}
.yd_c00485{bottom:535.162677px;}
.ye_c00485{bottom:535.721265px;}
.yf_c00485{bottom:535.959135px;}
.y10_c00485{bottom:536.628234px;}
.y11_c00485{bottom:536.821311px;}
.y5_c00485{bottom:554.892954px;}
.y3_c00485{bottom:554.893068px;}
.y4_c00485{bottom:554.893110px;}
.y6_c00485{bottom:554.893242px;}
.y7_c00485{bottom:554.893644px;}
.y8_c00485{bottom:554.893926px;}
.y9_c00485{bottom:554.894367px;}
.ya_c00485{bottom:554.894616px;}
.y1_c00485{bottom:569.977500px;}
.y2_c00485{bottom:573.808602px;}
.h16_c00485{height:22.050000px;}
.hc_c00485{height:57.763974px;}
.h14_c00485{height:58.814228px;}
.h10_c00485{height:60.914736px;}
.h15_c00485{height:61.950000px;}
.h9_c00485{height:61.964990px;}
.h7_c00485{height:65.115752px;}
.hb_c00485{height:66.166006px;}
.h8_c00485{height:67.216260px;}
.h12_c00485{height:68.266515px;}
.hd_c00485{height:71.417277px;}
.hf_c00485{height:72.467531px;}
.h2_c00485{height:73.517785px;}
.ha_c00485{height:74.568039px;}
.he_c00485{height:75.618293px;}
.h11_c00485{height:77.718801px;}
.h4_c00485{height:78.769055px;}
.h3_c00485{height:79.819309px;}
.h5_c00485{height:80.869563px;}
.h6_c00485{height:82.970071px;}
.h13_c00485{height:90.321850px;}
.h0_c00485{height:617.700000px;}
.h1_c00485{height:618.000000px;}
.w0_c00485{width:359.100000px;}
.w1_c00485{width:359.250000px;}
.x0_c00485{left:0.000000px;}
.x71_c00485{left:36.283260px;}
.x6c_c00485{left:37.595085px;}
.x66_c00485{left:38.991804px;}
.x59_c00485{left:40.203930px;}
.x4e_c00485{left:41.587725px;}
.x33_c00485{left:43.030905px;}
.x1b_c00485{left:44.448306px;}
.x3_c00485{left:45.599079px;}
.x49_c00485{left:46.995291px;}
.x4f_c00485{left:60.220050px;}
.x6d_c00485{left:62.502063px;}
.x1f_c00485{left:63.903990px;}
.x68_c00485{left:64.965195px;}
.x5d_c00485{left:68.247666px;}
.x63_c00485{left:72.209916px;}
.xb_c00485{left:76.861407px;}
.x38_c00485{left:78.435453px;}
.x41_c00485{left:81.533469px;}
.x4_c00485{left:85.029153px;}
.x4a_c00485{left:89.104563px;}
.x70_c00485{left:90.320190px;}
.x57_c00485{left:93.199959px;}
.x3c_c00485{left:95.018256px;}
.x39_c00485{left:97.478073px;}
.x2a_c00485{left:99.883962px;}
.x23_c00485{left:103.024071px;}
.x72_c00485{left:105.152892px;}
.x26_c00485{left:107.715981px;}
.x5f_c00485{left:109.485630px;}
.x11_c00485{left:110.717583px;}
.x76_c00485{left:112.492332px;}
.x5a_c00485{left:115.280763px;}
.x4b_c00485{left:117.201411px;}
.x42_c00485{left:126.104853px;}
.x12_c00485{left:129.397629px;}
.x3d_c00485{left:131.049756px;}
.x2f_c00485{left:132.486849px;}
.x34_c00485{left:134.072430px;}
.x50_c00485{left:136.261383px;}
.x17_c00485{left:139.057866px;}
.x69_c00485{left:141.301992px;}
.x43_c00485{left:143.109234px;}
.x3a_c00485{left:145.054590px;}
.xc_c00485{left:146.541270px;}
.x6e_c00485{left:147.572274px;}
.x5b_c00485{left:151.739385px;}
.x2b_c00485{left:153.626466px;}
.x27_c00485{left:155.142195px;}
.x5_c00485{left:158.216562px;}
.x78_c00485{left:160.110000px;}
.x51_c00485{left:161.193972px;}
.x35_c00485{left:163.011885px;}
.x2c_c00485{left:167.940396px;}
.x67_c00485{left:170.830311px;}
.x73_c00485{left:172.652727px;}
.x3b_c00485{left:174.865317px;}
.x6a_c00485{left:176.999346px;}
.x13_c00485{left:179.597640px;}
.x1_c00485{left:181.239000px;}
.x6_c00485{left:183.332706px;}
.x44_c00485{left:185.227854px;}
.x74_c00485{left:186.976692px;}
.x53_c00485{left:188.073114px;}
.x18_c00485{left:189.595410px;}
.xd_c00485{left:197.307546px;}
.x2d_c00485{left:199.808307px;}
.x14_c00485{left:201.425049px;}
.x20_c00485{left:203.177940px;}
.x45_c00485{left:206.840730px;}
.x24_c00485{left:208.603803px;}
.x75_c00485{left:209.611170px;}
.x1c_c00485{left:210.749544px;}
.x3e_c00485{left:212.600256px;}
.x19_c00485{left:214.415649px;}
.x30_c00485{left:216.986199px;}
.xe_c00485{left:218.897760px;}
.x7_c00485{left:221.141988px;}
.x47_c00485{left:222.403845px;}
.x54_c00485{left:226.479204px;}
.x36_c00485{left:228.897516px;}
.x6f_c00485{left:230.698056px;}
.x64_c00485{left:232.401129px;}
.x6b_c00485{left:234.463485px;}
.x21_c00485{left:236.457555px;}
.x3f_c00485{left:239.528256px;}
.x61_c00485{left:241.274760px;}
.x31_c00485{left:244.303017px;}
.x1d_c00485{left:248.608710px;}
.x22_c00485{left:253.492662px;}
.x52_c00485{left:255.161097px;}
.x8_c00485{left:259.491534px;}
.x48_c00485{left:261.365493px;}
.x62_c00485{left:263.417106px;}
.x15_c00485{left:265.471578px;}
.x40_c00485{left:269.016756px;}
.x58_c00485{left:270.769995px;}
.x4c_c00485{left:271.929108px;}
.x5c_c00485{left:275.159082px;}
.x9_c00485{left:277.315647px;}
.xf_c00485{left:279.666945px;}
.x28_c00485{left:283.221786px;}
.x25_c00485{left:284.760534px;}
.x65_c00485{left:286.348821px;}
.x60_c00485{left:287.499309px;}
.x79_c00485{left:288.900000px;}
.x1e_c00485{left:289.919970px;}
.x7b_c00485{left:292.140000px;}
.x4d_c00485{left:293.827560px;}
.x32_c00485{left:296.129625px;}
.x10_c00485{left:297.174669px;}
.x37_c00485{left:299.921439px;}
.x29_c00485{left:301.301766px;}
.x2e_c00485{left:303.512967px;}
.x55_c00485{left:306.370011px;}
.x16_c00485{left:311.072094px;}
.x5e_c00485{left:313.935654px;}
.x7a_c00485{left:317.790000px;}
.xa_c00485{left:322.416960px;}
.x77_c00485{left:324.218895px;}
.x1a_c00485{left:327.288057px;}
.x46_c00485{left:332.604057px;}
.x56_c00485{left:350.547756px;}
.x2_c00485{left:355.380000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs14_c00485{font-size:19.600000pt;}
.fsa_c00485{font-size:51.345754pt;}
.fs12_c00485{font-size:52.279314pt;}
.fse_c00485{font-size:54.146432pt;}
.fs13_c00485{font-size:55.066667pt;}
.fs7_c00485{font-size:55.079991pt;}
.fs5_c00485{font-size:57.880669pt;}
.fs9_c00485{font-size:58.814228pt;}
.fs6_c00485{font-size:59.747787pt;}
.fs10_c00485{font-size:60.681346pt;}
.fsb_c00485{font-size:63.482024pt;}
.fsd_c00485{font-size:64.415583pt;}
.fs0_c00485{font-size:65.349142pt;}
.fs8_c00485{font-size:66.282701pt;}
.fsc_c00485{font-size:67.216260pt;}
.fsf_c00485{font-size:69.083379pt;}
.fs2_c00485{font-size:70.016938pt;}
.fs1_c00485{font-size:70.950497pt;}
.fs3_c00485{font-size:71.884056pt;}
.fs4_c00485{font-size:73.751175pt;}
.fs11_c00485{font-size:80.286089pt;}
.y0_c00485{bottom:0.000000pt;}
.ydf_c00485{bottom:26.577333pt;}
.yde_c00485{bottom:41.344256pt;}
.ydd_c00485{bottom:41.344307pt;}
.yd4_c00485{bottom:51.731808pt;}
.yd5_c00485{bottom:52.314501pt;}
.yd6_c00485{bottom:52.544592pt;}
.yd7_c00485{bottom:52.765965pt;}
.yd8_c00485{bottom:53.287360pt;}
.yd9_c00485{bottom:53.476952pt;}
.yda_c00485{bottom:53.716219pt;}
.ydb_c00485{bottom:54.293157pt;}
.ydc_c00485{bottom:54.802779pt;}
.ycc_c00485{bottom:69.975435pt;}
.ycd_c00485{bottom:70.488723pt;}
.yce_c00485{bottom:70.649893pt;}
.ycf_c00485{bottom:71.309571pt;}
.yd0_c00485{bottom:71.449616pt;}
.yd1_c00485{bottom:71.670805pt;}
.yd2_c00485{bottom:72.204208pt;}
.yd3_c00485{bottom:72.397488pt;}
.yc6_c00485{bottom:84.858696pt;}
.yc7_c00485{bottom:85.425787pt;}
.yc8_c00485{bottom:85.531856pt;}
.yc9_c00485{bottom:85.845971pt;}
.yca_c00485{bottom:86.730931pt;}
.ycb_c00485{bottom:87.699208pt;}
.ybf_c00485{bottom:99.982259pt;}
.yc0_c00485{bottom:100.247888pt;}
.yc1_c00485{bottom:100.933379pt;}
.yc2_c00485{bottom:101.155117pt;}
.yc3_c00485{bottom:102.041664pt;}
.yc4_c00485{bottom:102.451000pt;}
.yc5_c00485{bottom:102.802061pt;}
.yb6_c00485{bottom:115.349096pt;}
.yb7_c00485{bottom:115.631475pt;}
.yb8_c00485{bottom:116.315717pt;}
.yb9_c00485{bottom:116.445288pt;}
.yba_c00485{bottom:116.648032pt;}
.ybb_c00485{bottom:116.825883pt;}
.ybc_c00485{bottom:117.438712pt;}
.ybd_c00485{bottom:117.637597pt;}
.ybe_c00485{bottom:118.284952pt;}
.yb1_c00485{bottom:127.832365pt;}
.yb2_c00485{bottom:128.414736pt;}
.yb3_c00485{bottom:129.237973pt;}
.yb4_c00485{bottom:129.555331pt;}
.yb5_c00485{bottom:129.725224pt;}
.yaa_c00485{bottom:145.357419pt;}
.yab_c00485{bottom:145.738312pt;}
.yac_c00485{bottom:146.066104pt;}
.yad_c00485{bottom:146.919267pt;}
.yae_c00485{bottom:147.417120pt;}
.yaf_c00485{bottom:147.588987pt;}
.yb0_c00485{bottom:148.211755pt;}
.ya3_c00485{bottom:160.719453pt;}
.ya4_c00485{bottom:161.383123pt;}
.ya5_c00485{bottom:161.619021pt;}
.ya6_c00485{bottom:162.091789pt;}
.ya7_c00485{bottom:162.693739pt;}
.ya8_c00485{bottom:162.910640pt;}
.ya9_c00485{bottom:163.170000pt;}
.y9b_c00485{bottom:173.449971pt;}
.y9c_c00485{bottom:174.937032pt;}
.y9d_c00485{bottom:175.080269pt;}
.y9e_c00485{bottom:177.192211pt;}
.y9f_c00485{bottom:177.693403pt;}
.ya0_c00485{bottom:178.734341pt;}
.ya1_c00485{bottom:179.009245pt;}
.ya2_c00485{bottom:179.068875pt;}
.y94_c00485{bottom:189.045744pt;}
.y95_c00485{bottom:189.348629pt;}
.y96_c00485{bottom:190.356965pt;}
.y97_c00485{bottom:191.043115pt;}
.y98_c00485{bottom:191.575973pt;}
.y99_c00485{bottom:191.820656pt;}
.y9a_c00485{bottom:191.970805pt;}
.y8f_c00485{bottom:208.131696pt;}
.y8e_c00485{bottom:208.132133pt;}
.y8d_c00485{bottom:208.132237pt;}
.y90_c00485{bottom:208.132320pt;}
.y93_c00485{bottom:208.132659pt;}
.y92_c00485{bottom:208.132693pt;}
.y91_c00485{bottom:208.132851pt;}
.y84_c00485{bottom:218.097411pt;}
.y85_c00485{bottom:218.889307pt;}
.y86_c00485{bottom:219.100173pt;}
.y87_c00485{bottom:219.393432pt;}
.y88_c00485{bottom:219.634608pt;}
.y89_c00485{bottom:220.850392pt;}
.y8a_c00485{bottom:221.340784pt;}
.y8b_c00485{bottom:221.572072pt;}
.y8c_c00485{bottom:222.041573pt;}
.y7b_c00485{bottom:236.339811pt;}
.y7c_c00485{bottom:237.016501pt;}
.y7d_c00485{bottom:237.153773pt;}
.y7e_c00485{bottom:237.749021pt;}
.y7f_c00485{bottom:238.039637pt;}
.y80_c00485{bottom:238.483875pt;}
.y81_c00485{bottom:239.407208pt;}
.y82_c00485{bottom:239.603936pt;}
.y83_c00485{bottom:239.917624pt;}
.y75_c00485{bottom:250.026219pt;}
.y76_c00485{bottom:250.357235pt;}
.y77_c00485{bottom:251.709533pt;}
.y78_c00485{bottom:252.153083pt;}
.y79_c00485{bottom:252.518392pt;}
.y7a_c00485{bottom:253.823915pt;}
.y6e_c00485{bottom:263.469085pt;}
.y6f_c00485{bottom:264.180501pt;}
.y70_c00485{bottom:264.655248pt;}
.y71_c00485{bottom:265.740987pt;}
.y72_c00485{bottom:266.201432pt;}
.y73_c00485{bottom:267.268835pt;}
.y74_c00485{bottom:267.638376pt;}
.y6a_c00485{bottom:278.832291pt;}
.y6b_c00485{bottom:280.214555pt;}
.y6c_c00485{bottom:281.388973pt;}
.y6d_c00485{bottom:281.942789pt;}
.ye0_c00485{bottom:290.160000pt;}
.y61_c00485{bottom:293.474880pt;}
.y62_c00485{bottom:294.070976pt;}
.y63_c00485{bottom:294.745165pt;}
.y64_c00485{bottom:295.001659pt;}
.y65_c00485{bottom:295.638555pt;}
.y66_c00485{bottom:295.965160pt;}
.y67_c00485{bottom:296.771653pt;}
.y68_c00485{bottom:297.061053pt;}
.y69_c00485{bottom:297.865595pt;}
.y5a_c00485{bottom:308.600731pt;}
.y5b_c00485{bottom:309.623408pt;}
.y5c_c00485{bottom:310.328024pt;}
.y5d_c00485{bottom:311.922789pt;}
.y5e_c00485{bottom:312.449381pt;}
.y5f_c00485{bottom:313.026045pt;}
.y60_c00485{bottom:314.055176pt;}
.y50_c00485{bottom:325.882621pt;}
.y51_c00485{bottom:326.228645pt;}
.y52_c00485{bottom:326.414277pt;}
.y53_c00485{bottom:326.879104pt;}
.y54_c00485{bottom:326.961085pt;}
.y55_c00485{bottom:327.169928pt;}
.y56_c00485{bottom:327.615875pt;}
.y57_c00485{bottom:327.778795pt;}
.y58_c00485{bottom:328.382829pt;}
.y59_c00485{bottom:328.667853pt;}
.y48_c00485{bottom:341.485339pt;}
.y49_c00485{bottom:341.936813pt;}
.y4a_c00485{bottom:342.698765pt;}
.y4b_c00485{bottom:343.084605pt;}
.y4c_c00485{bottom:343.715067pt;}
.y4d_c00485{bottom:343.963504pt;}
.y4e_c00485{bottom:344.910869pt;}
.y4f_c00485{bottom:345.223869pt;}
.y41_c00485{bottom:356.848571pt;}
.y42_c00485{bottom:357.649197pt;}
.y43_c00485{bottom:357.951152pt;}
.y44_c00485{bottom:358.219955pt;}
.y45_c00485{bottom:359.003293pt;}
.y46_c00485{bottom:359.342728pt;}
.y47_c00485{bottom:359.988048pt;}
.y3e_c00485{bottom:372.305741pt;}
.y3d_c00485{bottom:372.305960pt;}
.y3f_c00485{bottom:372.305968pt;}
.y3c_c00485{bottom:372.306171pt;}
.y40_c00485{bottom:372.306323pt;}
.y3b_c00485{bottom:372.306768pt;}
.y3a_c00485{bottom:372.306808pt;}
.y32_c00485{bottom:385.178008pt;}
.y33_c00485{bottom:385.810136pt;}
.y34_c00485{bottom:386.141949pt;}
.y35_c00485{bottom:386.858627pt;}
.y36_c00485{bottom:387.586688pt;}
.y37_c00485{bottom:388.450208pt;}
.y38_c00485{bottom:388.793685pt;}
.y39_c00485{bottom:389.067211pt;}
.y2b_c00485{bottom:402.460384pt;}
.y2c_c00485{bottom:402.661867pt;}
.y2d_c00485{bottom:403.085104pt;}
.y2e_c00485{bottom:403.476165pt;}
.y2f_c00485{bottom:403.999864pt;}
.y30_c00485{bottom:404.210653pt;}
.y31_c00485{bottom:405.023613pt;}
.y24_c00485{bottom:417.345096pt;}
.y25_c00485{bottom:417.603483pt;}
.y26_c00485{bottom:418.463981pt;}
.y27_c00485{bottom:419.459976pt;}
.y28_c00485{bottom:419.904011pt;}
.y29_c00485{bottom:420.131757pt;}
.y2a_c00485{bottom:421.121603pt;}
.y1e_c00485{bottom:432.227608pt;}
.y1f_c00485{bottom:433.065112pt;}
.y20_c00485{bottom:433.913829pt;}
.y21_c00485{bottom:434.297816pt;}
.y22_c00485{bottom:434.768709pt;}
.y23_c00485{bottom:435.283099pt;}
.y19_c00485{bottom:444.232925pt;}
.y1a_c00485{bottom:445.656685pt;}
.y1b_c00485{bottom:446.420867pt;}
.y1c_c00485{bottom:446.795520pt;}
.y1d_c00485{bottom:448.501227pt;}
.y12_c00485{bottom:459.115555pt;}
.y13_c00485{bottom:460.111069pt;}
.y14_c00485{bottom:460.393661pt;}
.y15_c00485{bottom:461.152576pt;}
.y16_c00485{bottom:461.482043pt;}
.y17_c00485{bottom:462.450371pt;}
.y18_c00485{bottom:463.139349pt;}
.yb_c00485{bottom:474.715376pt;}
.yc_c00485{bottom:475.019192pt;}
.yd_c00485{bottom:475.700157pt;}
.ye_c00485{bottom:476.196680pt;}
.yf_c00485{bottom:476.408120pt;}
.y10_c00485{bottom:477.002875pt;}
.y11_c00485{bottom:477.174499pt;}
.y5_c00485{bottom:493.238181pt;}
.y3_c00485{bottom:493.238283pt;}
.y4_c00485{bottom:493.238320pt;}
.y6_c00485{bottom:493.238437pt;}
.y7_c00485{bottom:493.238795pt;}
.y8_c00485{bottom:493.239045pt;}
.y9_c00485{bottom:493.239437pt;}
.ya_c00485{bottom:493.239659pt;}
.y1_c00485{bottom:506.646667pt;}
.y2_c00485{bottom:510.052091pt;}
.h16_c00485{height:19.600000pt;}
.hc_c00485{height:51.345754pt;}
.h14_c00485{height:52.279314pt;}
.h10_c00485{height:54.146432pt;}
.h15_c00485{height:55.066667pt;}
.h9_c00485{height:55.079991pt;}
.h7_c00485{height:57.880669pt;}
.hb_c00485{height:58.814228pt;}
.h8_c00485{height:59.747787pt;}
.h12_c00485{height:60.681346pt;}
.hd_c00485{height:63.482024pt;}
.hf_c00485{height:64.415583pt;}
.h2_c00485{height:65.349142pt;}
.ha_c00485{height:66.282701pt;}
.he_c00485{height:67.216260pt;}
.h11_c00485{height:69.083379pt;}
.h4_c00485{height:70.016938pt;}
.h3_c00485{height:70.950497pt;}
.h5_c00485{height:71.884056pt;}
.h6_c00485{height:73.751175pt;}
.h13_c00485{height:80.286089pt;}
.h0_c00485{height:549.066667pt;}
.h1_c00485{height:549.333333pt;}
.w0_c00485{width:319.200000pt;}
.w1_c00485{width:319.333333pt;}
.x0_c00485{left:0.000000pt;}
.x71_c00485{left:32.251787pt;}
.x6c_c00485{left:33.417853pt;}
.x66_c00485{left:34.659381pt;}
.x59_c00485{left:35.736827pt;}
.x4e_c00485{left:36.966867pt;}
.x33_c00485{left:38.249693pt;}
.x1b_c00485{left:39.509605pt;}
.x3_c00485{left:40.532515pt;}
.x49_c00485{left:41.773592pt;}
.x4f_c00485{left:53.528933pt;}
.x6d_c00485{left:55.557389pt;}
.x1f_c00485{left:56.803547pt;}
.x68_c00485{left:57.746840pt;}
.x5d_c00485{left:60.664592pt;}
.x63_c00485{left:64.186592pt;}
.xb_c00485{left:68.321251pt;}
.x38_c00485{left:69.720403pt;}
.x41_c00485{left:72.474195pt;}
.x4_c00485{left:75.581469pt;}
.x4a_c00485{left:79.204056pt;}
.x70_c00485{left:80.284613pt;}
.x57_c00485{left:82.844408pt;}
.x3c_c00485{left:84.460672pt;}
.x39_c00485{left:86.647176pt;}
.x2a_c00485{left:88.785744pt;}
.x23_c00485{left:91.576952pt;}
.x72_c00485{left:93.469237pt;}
.x26_c00485{left:95.747539pt;}
.x5f_c00485{left:97.320560pt;}
.x11_c00485{left:98.415629pt;}
.x76_c00485{left:99.993184pt;}
.x5a_c00485{left:102.471789pt;}
.x4b_c00485{left:104.179032pt;}
.x42_c00485{left:112.093203pt;}
.x12_c00485{left:115.020115pt;}
.x3d_c00485{left:116.488672pt;}
.x2f_c00485{left:117.766088pt;}
.x34_c00485{left:119.175493pt;}
.x50_c00485{left:121.121229pt;}
.x17_c00485{left:123.606992pt;}
.x69_c00485{left:125.601771pt;}
.x43_c00485{left:127.208208pt;}
.x3a_c00485{left:128.937413pt;}
.xc_c00485{left:130.258907pt;}
.x6e_c00485{left:131.175355pt;}
.x5b_c00485{left:134.879453pt;}
.x2b_c00485{left:136.556859pt;}
.x27_c00485{left:137.904173pt;}
.x5_c00485{left:140.636944pt;}
.x78_c00485{left:142.320000pt;}
.x51_c00485{left:143.283531pt;}
.x35_c00485{left:144.899453pt;}
.x2c_c00485{left:149.280352pt;}
.x67_c00485{left:151.849165pt;}
.x73_c00485{left:153.469091pt;}
.x3b_c00485{left:155.435837pt;}
.x6a_c00485{left:157.332752pt;}
.x13_c00485{left:159.642347pt;}
.x1_c00485{left:161.101333pt;}
.x6_c00485{left:162.962405pt;}
.x44_c00485{left:164.646981pt;}
.x74_c00485{left:166.201504pt;}
.x53_c00485{left:167.176101pt;}
.x18_c00485{left:168.529253pt;}
.xd_c00485{left:175.384485pt;}
.x2d_c00485{left:177.607384pt;}
.x14_c00485{left:179.044488pt;}
.x20_c00485{left:180.602613pt;}
.x45_c00485{left:183.858427pt;}
.x24_c00485{left:185.425603pt;}
.x75_c00485{left:186.321040pt;}
.x1c_c00485{left:187.332928pt;}
.x3e_c00485{left:188.978005pt;}
.x19_c00485{left:190.591688pt;}
.x30_c00485{left:192.876621pt;}
.xe_c00485{left:194.575787pt;}
.x7_c00485{left:196.570656pt;}
.x47_c00485{left:197.692307pt;}
.x54_c00485{left:201.314848pt;}
.x36_c00485{left:203.464459pt;}
.x6f_c00485{left:205.064939pt;}
.x64_c00485{left:206.578781pt;}
.x6b_c00485{left:208.411987pt;}
.x21_c00485{left:210.184493pt;}
.x3f_c00485{left:212.914005pt;}
.x61_c00485{left:214.466453pt;}
.x31_c00485{left:217.158237pt;}
.x1d_c00485{left:220.985520pt;}
.x22_c00485{left:225.326811pt;}
.x52_c00485{left:226.809864pt;}
.x8_c00485{left:230.659141pt;}
.x48_c00485{left:232.324883pt;}
.x62_c00485{left:234.148539pt;}
.x15_c00485{left:235.974736pt;}
.x40_c00485{left:239.126005pt;}
.x58_c00485{left:240.684440pt;}
.x4c_c00485{left:241.714763pt;}
.x5c_c00485{left:244.585851pt;}
.x9_c00485{left:246.502797pt;}
.xf_c00485{left:248.592840pt;}
.x28_c00485{left:251.752699pt;}
.x25_c00485{left:253.120475pt;}
.x65_c00485{left:254.532285pt;}
.x60_c00485{left:255.554941pt;}
.x79_c00485{left:256.800000pt;}
.x1e_c00485{left:257.706640pt;}
.x7b_c00485{left:259.680000pt;}
.x4d_c00485{left:261.180053pt;}
.x32_c00485{left:263.226333pt;}
.x10_c00485{left:264.155261pt;}
.x37_c00485{left:266.596835pt;}
.x29_c00485{left:267.823792pt;}
.x2e_c00485{left:269.789304pt;}
.x55_c00485{left:272.328899pt;}
.x16_c00485{left:276.508528pt;}
.x5e_c00485{left:279.053915pt;}
.x7a_c00485{left:282.480000pt;}
.xa_c00485{left:286.592853pt;}
.x77_c00485{left:288.194573pt;}
.x1a_c00485{left:290.922717pt;}
.x46_c00485{left:295.648051pt;}
.x56_c00485{left:311.598005pt;}
.x2_c00485{left:315.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00486 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00486 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00486 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00486 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00486{transform:matrix(0.079900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079900,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084145,0.000000,0.000000,0.250000,0,0);}
.m54_c00486{transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.123285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123285,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);}
.m33_c00486{transform:matrix(0.131770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131770,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);}
.m47_c00486{transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.147760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147760,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157205,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161240,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00486{transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167795,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);}
.m34_c00486{transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169620,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);}
.m40_c00486{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m52_c00486{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175120,0.000000,0.000000,0.250000,0,0);}
.m4f_c00486{transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175835,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176295,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m36_c00486{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m64_c00486{transform:matrix(0.177439,0.001952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177439,0.001952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177439,0.001952,-0.002750,0.249985,0,0);}
.m61_c00486{transform:matrix(0.177584,0.001953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177584,0.001953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177584,0.001953,-0.002750,0.249985,0,0);}
.ma_c00486{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m3f_c00486{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m57_c00486{transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179195,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179565,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180205,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m62_c00486{transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183464,0.002018,-0.002750,0.249985,0,0);}
.m14_c00486{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m50_c00486{transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185070,0.000000,0.000000,0.250000,0,0);}
.m5e_c00486{transform:matrix(0.185209,0.002037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185209,0.002037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185209,0.002037,-0.002750,0.249985,0,0);}
.m2e_c00486{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186540,0.000000,0.000000,0.250000,0,0);}
.m5d_c00486{transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187399,0.002061,-0.002750,0.249985,0,0);}
.m46_c00486{transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188155,0.000000,0.000000,0.250000,0,0);}
.m58_c00486{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m59_c00486{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m56_c00486{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189930,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00486{transform:matrix(0.190513,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190513,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190513,0.002096,-0.002750,0.249985,0,0);}
.m18_c00486{transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192590,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);}
.m63_c00486{transform:matrix(0.194333,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194333,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194333,0.002138,-0.002750,0.249985,0,0);}
.m17_c00486{transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194370,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195780,0.000000,0.000000,0.250000,0,0);}
.m5c_c00486{transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196895,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m48_c00486{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m60_c00486{transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202028,0.002222,-0.002750,0.249985,0,0);}
.m6_c00486{transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202035,0.000000,0.000000,0.250000,0,0);}
.m5a_c00486{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m22_c00486{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206840,0.000000,0.000000,0.250000,0,0);}
.m44_c00486{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210795,0.000000,0.000000,0.250000,0,0);}
.m4d_c00486{transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210940,0.000000,0.000000,0.250000,0,0);}
.m28_c00486{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m51_c00486{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216410,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);}
.m53_c00486{transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218765,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227215,0.000000,0.000000,0.250000,0,0);}
.m4e_c00486{transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231170,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00486{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);}
.m55_c00486{transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);}
.m1f_c00486{transform:matrix(0.337740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00486{transform:matrix(0.348420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348420,0.000000,0.000000,0.250000,0,0);}
.m4b_c00486{transform:matrix(0.476810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476810,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:transparent;}
.fs4_c00486{font-size:58.800000px;}
.fs7_c00486{font-size:60.900000px;}
.fs2_c00486{font-size:64.050000px;}
.fs5_c00486{font-size:66.150000px;}
.fs9_c00486{font-size:66.154002px;}
.fs3_c00486{font-size:69.300000px;}
.fs8_c00486{font-size:70.350000px;}
.fs1_c00486{font-size:73.500000px;}
.fs6_c00486{font-size:75.600000px;}
.fs0_c00486{font-size:114.450000px;}
.y0_c00486{bottom:0.000000px;}
.y54_c00486{bottom:29.606179px;}
.y53_c00486{bottom:29.849802px;}
.y52_c00486{bottom:30.437862px;}
.y51_c00486{bottom:31.129773px;}
.y50_c00486{bottom:31.358645px;}
.y4f_c00486{bottom:31.809771px;}
.y4e_c00486{bottom:32.135993px;}
.y4d_c00486{bottom:32.671500px;}
.y4c_c00486{bottom:47.089500px;}
.y4b_c00486{bottom:65.617500px;}
.y4a_c00486{bottom:81.739500px;}
.y49_c00486{bottom:402.102000px;}
.y48_c00486{bottom:402.948000px;}
.y47_c00486{bottom:403.224000px;}
.y46_c00486{bottom:403.789500px;}
.y45_c00486{bottom:404.175000px;}
.y44_c00486{bottom:404.895000px;}
.y43_c00486{bottom:405.270000px;}
.y42_c00486{bottom:418.690500px;}
.y41_c00486{bottom:419.020500px;}
.y40_c00486{bottom:419.346000px;}
.y3f_c00486{bottom:419.971500px;}
.y3e_c00486{bottom:420.168000px;}
.y3d_c00486{bottom:420.888000px;}
.y3c_c00486{bottom:421.176000px;}
.y3b_c00486{bottom:421.780500px;}
.y3a_c00486{bottom:422.283000px;}
.y39_c00486{bottom:435.366000px;}
.y38_c00486{bottom:435.594000px;}
.y37_c00486{bottom:436.219500px;}
.y36_c00486{bottom:437.040000px;}
.y35_c00486{bottom:437.967000px;}
.y34_c00486{bottom:438.268500px;}
.y33_c00486{bottom:439.023000px;}
.y32_c00486{bottom:452.218500px;}
.y31_c00486{bottom:452.524500px;}
.y30_c00486{bottom:453.046500px;}
.y2f_c00486{bottom:453.978000px;}
.y2e_c00486{bottom:454.195500px;}
.y2d_c00486{bottom:455.133000px;}
.y2c_c00486{bottom:455.764500px;}
.y2b_c00486{bottom:469.236000px;}
.y2a_c00486{bottom:469.524000px;}
.y29_c00486{bottom:470.170500px;}
.y28_c00486{bottom:470.626500px;}
.y27_c00486{bottom:470.794500px;}
.y26_c00486{bottom:471.019500px;}
.y25_c00486{bottom:471.183000px;}
.y24_c00486{bottom:471.946500px;}
.y23_c00486{bottom:472.774500px;}
.y22_c00486{bottom:486.940500px;}
.y21_c00486{bottom:487.770000px;}
.y20_c00486{bottom:487.980000px;}
.y1f_c00486{bottom:488.535000px;}
.y1e_c00486{bottom:488.610000px;}
.y1d_c00486{bottom:489.165000px;}
.y1c_c00486{bottom:489.768000px;}
.y1b_c00486{bottom:490.326000px;}
.y1a_c00486{bottom:503.818500px;}
.y19_c00486{bottom:504.490500px;}
.y18_c00486{bottom:505.318500px;}
.y17_c00486{bottom:506.584500px;}
.y16_c00486{bottom:507.219000px;}
.y15_c00486{bottom:507.604500px;}
.y14_c00486{bottom:520.627500px;}
.y13_c00486{bottom:520.908000px;}
.y12_c00486{bottom:521.052000px;}
.y11_c00486{bottom:521.853000px;}
.y10_c00486{bottom:522.906000px;}
.yf_c00486{bottom:523.594500px;}
.ye_c00486{bottom:523.846500px;}
.yd_c00486{bottom:524.074500px;}
.yc_c00486{bottom:537.888000px;}
.yb_c00486{bottom:538.075500px;}
.ya_c00486{bottom:538.927500px;}
.y9_c00486{bottom:539.070000px;}
.y8_c00486{bottom:539.803500px;}
.y7_c00486{bottom:540.543000px;}
.y6_c00486{bottom:555.288000px;}
.y5_c00486{bottom:556.221000px;}
.y4_c00486{bottom:557.268000px;}
.y3_c00486{bottom:557.838000px;}
.y2_c00486{bottom:558.363000px;}
.y1_c00486{bottom:569.700000px;}
.h6_c00486{height:58.800000px;}
.h9_c00486{height:60.900000px;}
.h4_c00486{height:64.050000px;}
.h7_c00486{height:66.150000px;}
.hb_c00486{height:66.154002px;}
.h5_c00486{height:69.300000px;}
.ha_c00486{height:70.350000px;}
.h3_c00486{height:73.500000px;}
.h8_c00486{height:75.600000px;}
.h2_c00486{height:114.450000px;}
.h0_c00486{height:617.700000px;}
.h1_c00486{height:618.000000px;}
.w0_c00486{width:359.100000px;}
.w1_c00486{width:359.250000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:11.983500px;}
.x36_c00486{left:15.390000px;}
.x3c_c00486{left:26.460000px;}
.xc_c00486{left:29.550000px;}
.x12_c00486{left:39.514500px;}
.x3_c00486{left:49.513500px;}
.x33_c00486{left:52.650000px;}
.x17_c00486{left:54.931500px;}
.x3d_c00486{left:56.700000px;}
.x23_c00486{left:60.298500px;}
.x37_c00486{left:62.370000px;}
.x26_c00486{left:69.811500px;}
.x1c_c00486{left:75.390000px;}
.x3e_c00486{left:76.950000px;}
.x7_c00486{left:79.524000px;}
.x13_c00486{left:84.888000px;}
.x4_c00486{left:90.271500px;}
.x27_c00486{left:92.974500px;}
.x30_c00486{left:95.709000px;}
.x2b_c00486{left:96.756000px;}
.xd_c00486{left:101.898000px;}
.x2c_c00486{left:118.888500px;}
.x31_c00486{left:125.397000px;}
.x38_c00486{left:131.220000px;}
.x24_c00486{left:132.394500px;}
.x1d_c00486{left:134.086500px;}
.x1_c00486{left:143.100000px;}
.x8_c00486{left:146.194500px;}
.x18_c00486{left:149.698500px;}
.x3f_c00486{left:150.930000px;}
.x39_c00486{left:156.870000px;}
.x9_c00486{left:159.165000px;}
.x1e_c00486{left:163.984500px;}
.x5_c00486{left:165.058500px;}
.x32_c00486{left:168.883500px;}
.x2d_c00486{left:174.289500px;}
.x14_c00486{left:175.342500px;}
.x1f_c00486{left:176.959500px;}
.xe_c00486{left:182.905500px;}
.x2e_c00486{left:189.369000px;}
.x19_c00486{left:192.379500px;}
.x1a_c00486{left:208.510500px;}
.x20_c00486{left:212.067000px;}
.x34_c00486{left:214.920000px;}
.x25_c00486{left:220.738500px;}
.x28_c00486{left:227.412000px;}
.x6_c00486{left:231.742500px;}
.x15_c00486{left:234.480000px;}
.xa_c00486{left:236.652000px;}
.xf_c00486{left:244.468500px;}
.xb_c00486{left:253.669500px;}
.x10_c00486{left:255.568500px;}
.x21_c00486{left:261.759000px;}
.x3a_c00486{left:266.760000px;}
.x40_c00486{left:267.988500px;}
.x1b_c00486{left:272.275500px;}
.x29_c00486{left:275.502000px;}
.x11_c00486{left:277.122000px;}
.x3b_c00486{left:281.070000px;}
.x16_c00486{left:282.523500px;}
.x22_c00486{left:283.909500px;}
.x2f_c00486{left:287.922000px;}
.x41_c00486{left:290.136000px;}
.x2a_c00486{left:293.052000px;}
.x35_c00486{left:312.120000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs4_c00486{font-size:52.266667pt;}
.fs7_c00486{font-size:54.133333pt;}
.fs2_c00486{font-size:56.933333pt;}
.fs5_c00486{font-size:58.800000pt;}
.fs9_c00486{font-size:58.803557pt;}
.fs3_c00486{font-size:61.600000pt;}
.fs8_c00486{font-size:62.533333pt;}
.fs1_c00486{font-size:65.333333pt;}
.fs6_c00486{font-size:67.200000pt;}
.fs0_c00486{font-size:101.733333pt;}
.y0_c00486{bottom:0.000000pt;}
.y54_c00486{bottom:26.316604pt;}
.y53_c00486{bottom:26.533157pt;}
.y52_c00486{bottom:27.055877pt;}
.y51_c00486{bottom:27.670909pt;}
.y50_c00486{bottom:27.874351pt;}
.y4f_c00486{bottom:28.275352pt;}
.y4e_c00486{bottom:28.565327pt;}
.y4d_c00486{bottom:29.041333pt;}
.y4c_c00486{bottom:41.857333pt;}
.y4b_c00486{bottom:58.326667pt;}
.y4a_c00486{bottom:72.657333pt;}
.y49_c00486{bottom:357.424000pt;}
.y48_c00486{bottom:358.176000pt;}
.y47_c00486{bottom:358.421333pt;}
.y46_c00486{bottom:358.924000pt;}
.y45_c00486{bottom:359.266667pt;}
.y44_c00486{bottom:359.906667pt;}
.y43_c00486{bottom:360.240000pt;}
.y42_c00486{bottom:372.169333pt;}
.y41_c00486{bottom:372.462667pt;}
.y40_c00486{bottom:372.752000pt;}
.y3f_c00486{bottom:373.308000pt;}
.y3e_c00486{bottom:373.482667pt;}
.y3d_c00486{bottom:374.122667pt;}
.y3c_c00486{bottom:374.378667pt;}
.y3b_c00486{bottom:374.916000pt;}
.y3a_c00486{bottom:375.362667pt;}
.y39_c00486{bottom:386.992000pt;}
.y38_c00486{bottom:387.194667pt;}
.y37_c00486{bottom:387.750667pt;}
.y36_c00486{bottom:388.480000pt;}
.y35_c00486{bottom:389.304000pt;}
.y34_c00486{bottom:389.572000pt;}
.y33_c00486{bottom:390.242667pt;}
.y32_c00486{bottom:401.972000pt;}
.y31_c00486{bottom:402.244000pt;}
.y30_c00486{bottom:402.708000pt;}
.y2f_c00486{bottom:403.536000pt;}
.y2e_c00486{bottom:403.729333pt;}
.y2d_c00486{bottom:404.562667pt;}
.y2c_c00486{bottom:405.124000pt;}
.y2b_c00486{bottom:417.098667pt;}
.y2a_c00486{bottom:417.354667pt;}
.y29_c00486{bottom:417.929333pt;}
.y28_c00486{bottom:418.334667pt;}
.y27_c00486{bottom:418.484000pt;}
.y26_c00486{bottom:418.684000pt;}
.y25_c00486{bottom:418.829333pt;}
.y24_c00486{bottom:419.508000pt;}
.y23_c00486{bottom:420.244000pt;}
.y22_c00486{bottom:432.836000pt;}
.y21_c00486{bottom:433.573333pt;}
.y20_c00486{bottom:433.760000pt;}
.y1f_c00486{bottom:434.253333pt;}
.y1e_c00486{bottom:434.320000pt;}
.y1d_c00486{bottom:434.813333pt;}
.y1c_c00486{bottom:435.349333pt;}
.y1b_c00486{bottom:435.845333pt;}
.y1a_c00486{bottom:447.838667pt;}
.y19_c00486{bottom:448.436000pt;}
.y18_c00486{bottom:449.172000pt;}
.y17_c00486{bottom:450.297333pt;}
.y16_c00486{bottom:450.861333pt;}
.y15_c00486{bottom:451.204000pt;}
.y14_c00486{bottom:462.780000pt;}
.y13_c00486{bottom:463.029333pt;}
.y12_c00486{bottom:463.157333pt;}
.y11_c00486{bottom:463.869333pt;}
.y10_c00486{bottom:464.805333pt;}
.yf_c00486{bottom:465.417333pt;}
.ye_c00486{bottom:465.641333pt;}
.yd_c00486{bottom:465.844000pt;}
.yc_c00486{bottom:478.122667pt;}
.yb_c00486{bottom:478.289333pt;}
.ya_c00486{bottom:479.046667pt;}
.y9_c00486{bottom:479.173333pt;}
.y8_c00486{bottom:479.825333pt;}
.y7_c00486{bottom:480.482667pt;}
.y6_c00486{bottom:493.589333pt;}
.y5_c00486{bottom:494.418667pt;}
.y4_c00486{bottom:495.349333pt;}
.y3_c00486{bottom:495.856000pt;}
.y2_c00486{bottom:496.322667pt;}
.y1_c00486{bottom:506.400000pt;}
.h6_c00486{height:52.266667pt;}
.h9_c00486{height:54.133333pt;}
.h4_c00486{height:56.933333pt;}
.h7_c00486{height:58.800000pt;}
.hb_c00486{height:58.803557pt;}
.h5_c00486{height:61.600000pt;}
.ha_c00486{height:62.533333pt;}
.h3_c00486{height:65.333333pt;}
.h8_c00486{height:67.200000pt;}
.h2_c00486{height:101.733333pt;}
.h0_c00486{height:549.066667pt;}
.h1_c00486{height:549.333333pt;}
.w0_c00486{width:319.200000pt;}
.w1_c00486{width:319.333333pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:10.652000pt;}
.x36_c00486{left:13.680000pt;}
.x3c_c00486{left:23.520000pt;}
.xc_c00486{left:26.266667pt;}
.x12_c00486{left:35.124000pt;}
.x3_c00486{left:44.012000pt;}
.x33_c00486{left:46.800000pt;}
.x17_c00486{left:48.828000pt;}
.x3d_c00486{left:50.400000pt;}
.x23_c00486{left:53.598667pt;}
.x37_c00486{left:55.440000pt;}
.x26_c00486{left:62.054667pt;}
.x1c_c00486{left:67.013333pt;}
.x3e_c00486{left:68.400000pt;}
.x7_c00486{left:70.688000pt;}
.x13_c00486{left:75.456000pt;}
.x4_c00486{left:80.241333pt;}
.x27_c00486{left:82.644000pt;}
.x30_c00486{left:85.074667pt;}
.x2b_c00486{left:86.005333pt;}
.xd_c00486{left:90.576000pt;}
.x2c_c00486{left:105.678667pt;}
.x31_c00486{left:111.464000pt;}
.x38_c00486{left:116.640000pt;}
.x24_c00486{left:117.684000pt;}
.x1d_c00486{left:119.188000pt;}
.x1_c00486{left:127.200000pt;}
.x8_c00486{left:129.950667pt;}
.x18_c00486{left:133.065333pt;}
.x3f_c00486{left:134.160000pt;}
.x39_c00486{left:139.440000pt;}
.x9_c00486{left:141.480000pt;}
.x1e_c00486{left:145.764000pt;}
.x5_c00486{left:146.718667pt;}
.x32_c00486{left:150.118667pt;}
.x2d_c00486{left:154.924000pt;}
.x14_c00486{left:155.860000pt;}
.x1f_c00486{left:157.297333pt;}
.xe_c00486{left:162.582667pt;}
.x2e_c00486{left:168.328000pt;}
.x19_c00486{left:171.004000pt;}
.x1a_c00486{left:185.342667pt;}
.x20_c00486{left:188.504000pt;}
.x34_c00486{left:191.040000pt;}
.x25_c00486{left:196.212000pt;}
.x28_c00486{left:202.144000pt;}
.x6_c00486{left:205.993333pt;}
.x15_c00486{left:208.426667pt;}
.xa_c00486{left:210.357333pt;}
.xf_c00486{left:217.305333pt;}
.xb_c00486{left:225.484000pt;}
.x10_c00486{left:227.172000pt;}
.x21_c00486{left:232.674667pt;}
.x3a_c00486{left:237.120000pt;}
.x40_c00486{left:238.212000pt;}
.x1b_c00486{left:242.022667pt;}
.x29_c00486{left:244.890667pt;}
.x11_c00486{left:246.330667pt;}
.x3b_c00486{left:249.840000pt;}
.x16_c00486{left:251.132000pt;}
.x22_c00486{left:252.364000pt;}
.x2f_c00486{left:255.930667pt;}
.x41_c00486{left:257.898667pt;}
.x2a_c00486{left:260.490667pt;}
.x35_c00486{left:277.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00487 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00487 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00487 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00487 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00487{transform:matrix(0.124345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124345,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124580,0.000000,0.000000,0.250000,0,0);}
.me9_c00487{transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);}
.m15_c00487{transform:matrix(0.137895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137895,0.000000,0.000000,0.250000,0,0);}
.m90_c00487{transform:matrix(0.142130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142130,0.000000,0.000000,0.250000,0,0);}
.m20_c00487{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{transform:matrix(0.145870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145870,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.146315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146315,0.000000,0.000000,0.250000,0,0);}
.m9c_c00487{transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147870,0.000000,0.000000,0.250000,0,0);}
.m29_c00487{transform:matrix(0.148335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148335,0.000000,0.000000,0.250000,0,0);}
.m93_c00487{transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151090,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.151630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00487{transform:matrix(0.152015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152015,0.000000,0.000000,0.250000,0,0);}
.m21_c00487{transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152405,0.000000,0.000000,0.250000,0,0);}
.mdb_c00487{transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00487{transform:matrix(0.154220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154220,0.000000,0.000000,0.250000,0,0);}
.mdc_c00487{transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);}
.m71_c00487{transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155560,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{transform:matrix(0.155670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155670,0.000000,0.000000,0.250000,0,0);}
.md6_c00487{transform:matrix(0.155705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155705,0.000000,0.000000,0.250000,0,0);}
.me1_c00487{transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156030,0.000000,0.000000,0.250000,0,0);}
.mb7_c00487{transform:matrix(0.157320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157320,0.000000,0.000000,0.250000,0,0);}
.md8_c00487{transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);}
.m9f_c00487{transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);}
.m83_c00487{transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158115,0.000000,0.000000,0.250000,0,0);}
.me0_c00487{transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159035,0.000000,0.000000,0.250000,0,0);}
.m82_c00487{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);}
.me7_c00487{transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160290,0.000000,0.000000,0.250000,0,0);}
.m8b_c00487{transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162190,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162420,0.000000,0.000000,0.250000,0,0);}
.mda_c00487{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m91_c00487{transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.ma6_c00487{transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00487{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.md9_c00487{transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166455,0.000000,0.000000,0.250000,0,0);}
.ma2_c00487{transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);}
.md7_c00487{transform:matrix(0.168965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168965,0.000000,0.000000,0.250000,0,0);}
.maf_c00487{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.maa_c00487{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170565,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171445,0.000000,0.000000,0.250000,0,0);}
.m6b_c00487{transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171785,0.000000,0.000000,0.250000,0,0);}
.m81_c00487{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m6c_c00487{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.md0_c00487{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.m6d_c00487{transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173380,0.000000,0.000000,0.250000,0,0);}
.m9d_c00487{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173545,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173715,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174705,0.000000,0.000000,0.250000,0,0);}
.m92_c00487{transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175035,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175160,0.000000,0.000000,0.250000,0,0);}
.mae_c00487{transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175685,0.000000,0.000000,0.250000,0,0);}
.m76_c00487{transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175955,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175995,0.000000,0.000000,0.250000,0,0);}
.m9e_c00487{transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);}
.m1e_c00487{transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177070,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177315,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177415,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178140,0.000000,0.000000,0.250000,0,0);}
.m72_c00487{transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00487{transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00487{transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182535,0.000000,0.000000,0.250000,0,0);}
.mb2_c00487{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m64_c00487{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m5c_c00487{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.m70_c00487{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185170,0.000000,0.000000,0.250000,0,0);}
.m7f_c00487{transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185210,0.000000,0.000000,0.250000,0,0);}
.mbf_c00487{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.m1a_c00487{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m74_c00487{transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186705,0.000000,0.000000,0.250000,0,0);}
.m89_c00487{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00487{transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188145,0.000000,0.000000,0.250000,0,0);}
.m75_c00487{transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188370,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.mb5_c00487{transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189410,0.000000,0.000000,0.250000,0,0);}
.mab_c00487{transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189445,0.000000,0.000000,0.250000,0,0);}
.ma5_c00487{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);}
.ma0_c00487{transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191010,0.000000,0.000000,0.250000,0,0);}
.m6e_c00487{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m78_c00487{transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191630,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191790,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192220,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192310,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00487{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.m95_c00487{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m63_c00487{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m80_c00487{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me2_c00487{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.mac_c00487{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.mbe_c00487{transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);}
.mdd_c00487{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197130,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197390,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.ma1_c00487{transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198835,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m99_c00487{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m6f_c00487{transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.me6_c00487{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.mb1_c00487{transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199745,0.000000,0.000000,0.250000,0,0);}
.m61_c00487{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);}
.mce_c00487{transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201035,0.000000,0.000000,0.250000,0,0);}
.m97_c00487{transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);}
.mb3_c00487{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mca_c00487{transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202145,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);}
.m60_c00487{transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202570,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.202835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202835,0.000000,0.000000,0.250000,0,0);}
.mc4_c00487{transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203080,0.000000,0.000000,0.250000,0,0);}
.mcd_c00487{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m94_c00487{transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203770,0.000000,0.000000,0.250000,0,0);}
.me8_c00487{transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205005,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205240,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206960,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00487{transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);}
.mc0_c00487{transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210840,0.000000,0.000000,0.250000,0,0);}
.mc5_c00487{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.ma9_c00487{transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00487{transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);}
.md4_c00487{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m68_c00487{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.mbd_c00487{transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213355,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213430,0.000000,0.000000,0.250000,0,0);}
.m69_c00487{transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214370,0.000000,0.000000,0.250000,0,0);}
.mcc_c00487{transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);}
.m56_c00487{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00487{transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215560,0.000000,0.000000,0.250000,0,0);}
.m5e_c00487{transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);}
.mb4_c00487{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.mba_c00487{transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216180,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216690,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);}
.mc6_c00487{transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);}
.md5_c00487{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);}
.m73_c00487{transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.mbc_c00487{transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);}
.m8d_c00487{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.mb6_c00487{transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219455,0.000000,0.000000,0.250000,0,0);}
.m88_c00487{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00487{transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220990,0.000000,0.000000,0.250000,0,0);}
.m62_c00487{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m30_c00487{transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);}
.mb8_c00487{transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221890,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.mad_c00487{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m59_c00487{transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224370,0.000000,0.000000,0.250000,0,0);}
.md1_c00487{transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);}
.m98_c00487{transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225615,0.000000,0.000000,0.250000,0,0);}
.m65_c00487{transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md3_c00487{transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00487{transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);}
.mc7_c00487{transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00487{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.m57_c00487{transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239620,0.000000,0.000000,0.250000,0,0);}
.mbb_c00487{transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);}
.mc2_c00487{transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);}
.mde_c00487{transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);}
.m5d_c00487{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00487{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00487{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m96_c00487{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m40_c00487{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.ma8_c00487{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.mb0_c00487{transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);}
.me5_c00487{transform:matrix(0.257715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00487{transform:matrix(0.258240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258240,0.000000,0.000000,0.250000,0,0);}
.m66_c00487{transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259835,0.000000,0.000000,0.250000,0,0);}
.m34_c00487{transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);}
.m87_c00487{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00487{transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);}
.m67_c00487{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.mc3_c00487{transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);}
.m79_c00487{transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);}
.mc1_c00487{transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);}
.me3_c00487{transform:matrix(0.295565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295565,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);}
.m7b_c00487{transform:matrix(0.318490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318490,0.000000,0.000000,0.250000,0,0);}
.me4_c00487{transform:matrix(0.331760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331760,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);}
.mdf_c00487{transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332310,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335325,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340295,0.000000,0.000000,0.250000,0,0);}
.mcf_c00487{transform:matrix(0.342265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342265,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344130,0.000000,0.000000,0.250000,0,0);}
.mc9_c00487{transform:matrix(0.370955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370955,0.000000,0.000000,0.250000,0,0);}
.m9a_c00487{transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);}
.m7c_c00487{transform:matrix(0.404005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404005,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.453355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453355,0.000000,0.000000,0.250000,0,0);}
.md2_c00487{transform:matrix(0.716660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716660,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:0.000000px;}
.fc0_c00487{color:transparent;}
.fs12_c00487{font-size:22.050000px;}
.fsb_c00487{font-size:48.300000px;}
.fs10_c00487{font-size:54.600000px;}
.fs7_c00487{font-size:59.850000px;}
.fs1_c00487{font-size:60.900000px;}
.fsa_c00487{font-size:61.950000px;}
.fs9_c00487{font-size:63.000000px;}
.fs0_c00487{font-size:67.200000px;}
.fs8_c00487{font-size:68.250000px;}
.fse_c00487{font-size:69.300000px;}
.fsf_c00487{font-size:70.350000px;}
.fs2_c00487{font-size:71.400000px;}
.fs11_c00487{font-size:72.450000px;}
.fs5_c00487{font-size:73.500000px;}
.fsc_c00487{font-size:74.550000px;}
.fs6_c00487{font-size:77.700000px;}
.fsd_c00487{font-size:78.750000px;}
.fs4_c00487{font-size:79.800000px;}
.fs3_c00487{font-size:84.000000px;}
.y0_c00487{bottom:0.000000px;}
.yd1_c00487{bottom:29.160000px;}
.yd2_c00487{bottom:29.452500px;}
.yd3_c00487{bottom:30.904500px;}
.yd4_c00487{bottom:31.576500px;}
.yd5_c00487{bottom:31.785000px;}
.yd6_c00487{bottom:32.154000px;}
.yd7_c00487{bottom:33.427500px;}
.yd8_c00487{bottom:33.907500px;}
.yc6_c00487{bottom:44.278500px;}
.yc7_c00487{bottom:45.079500px;}
.yc8_c00487{bottom:45.387000px;}
.yc9_c00487{bottom:45.660000px;}
.yca_c00487{bottom:46.291500px;}
.ycb_c00487{bottom:46.567500px;}
.ycc_c00487{bottom:46.920000px;}
.ycd_c00487{bottom:47.325000px;}
.yce_c00487{bottom:47.601000px;}
.ycf_c00487{bottom:48.148500px;}
.yd0_c00487{bottom:48.298500px;}
.ybf_c00487{bottom:62.910000px;}
.yc0_c00487{bottom:63.291000px;}
.yc1_c00487{bottom:63.534000px;}
.yc2_c00487{bottom:64.495500px;}
.yc3_c00487{bottom:65.331000px;}
.yc4_c00487{bottom:65.695500px;}
.yc5_c00487{bottom:66.172500px;}
.yba_c00487{bottom:78.037500px;}
.ybb_c00487{bottom:79.269000px;}
.ybc_c00487{bottom:81.211500px;}
.ybd_c00487{bottom:82.423500px;}
.ybe_c00487{bottom:83.547000px;}
.yb2_c00487{bottom:95.584500px;}
.yb3_c00487{bottom:96.144000px;}
.yb4_c00487{bottom:96.448500px;}
.yb5_c00487{bottom:96.990000px;}
.yb6_c00487{bottom:98.614500px;}
.yb7_c00487{bottom:100.429500px;}
.yb8_c00487{bottom:102.022500px;}
.yb9_c00487{bottom:102.520500px;}
.yac_c00487{bottom:113.937000px;}
.yad_c00487{bottom:114.388500px;}
.yae_c00487{bottom:115.530000px;}
.yaf_c00487{bottom:116.319000px;}
.yb0_c00487{bottom:116.578500px;}
.yb1_c00487{bottom:117.574500px;}
.ya5_c00487{bottom:131.220000px;}
.ya6_c00487{bottom:131.712000px;}
.ya7_c00487{bottom:132.391500px;}
.ya8_c00487{bottom:133.038000px;}
.ya9_c00487{bottom:133.380000px;}
.yaa_c00487{bottom:135.447000px;}
.yab_c00487{bottom:136.383000px;}
.y9d_c00487{bottom:147.687000px;}
.y9e_c00487{bottom:148.153500px;}
.y9f_c00487{bottom:148.714500px;}
.ya0_c00487{bottom:149.788500px;}
.ya1_c00487{bottom:150.051000px;}
.ya2_c00487{bottom:151.321500px;}
.ya3_c00487{bottom:151.663500px;}
.ya4_c00487{bottom:151.950000px;}
.y97_c00487{bottom:162.808500px;}
.y98_c00487{bottom:163.849500px;}
.y99_c00487{bottom:164.169000px;}
.y9a_c00487{bottom:165.846000px;}
.y9b_c00487{bottom:166.672500px;}
.y9c_c00487{bottom:167.833500px;}
.yd9_c00487{bottom:180.090000px;}
.y96_c00487{bottom:182.178000px;}
.y8e_c00487{bottom:197.349000px;}
.y8f_c00487{bottom:197.763000px;}
.y90_c00487{bottom:198.697500px;}
.y91_c00487{bottom:199.386000px;}
.y92_c00487{bottom:199.957500px;}
.y93_c00487{bottom:200.124000px;}
.y94_c00487{bottom:200.800500px;}
.y95_c00487{bottom:201.510000px;}
.y88_c00487{bottom:217.347000px;}
.y89_c00487{bottom:217.837500px;}
.y8a_c00487{bottom:218.857500px;}
.y8b_c00487{bottom:220.305000px;}
.y8c_c00487{bottom:220.884000px;}
.y8d_c00487{bottom:222.073500px;}
.y82_c00487{bottom:231.387000px;}
.y83_c00487{bottom:232.021500px;}
.y84_c00487{bottom:234.072000px;}
.y85_c00487{bottom:235.314000px;}
.y86_c00487{bottom:236.485500px;}
.y87_c00487{bottom:236.922000px;}
.y78_c00487{bottom:247.588500px;}
.y79_c00487{bottom:247.860000px;}
.y7a_c00487{bottom:248.694000px;}
.y7b_c00487{bottom:249.190500px;}
.y7c_c00487{bottom:249.457500px;}
.y7d_c00487{bottom:250.122000px;}
.y7e_c00487{bottom:250.440000px;}
.y7f_c00487{bottom:250.822500px;}
.y80_c00487{bottom:251.871000px;}
.y81_c00487{bottom:252.054000px;}
.y71_c00487{bottom:264.325500px;}
.y72_c00487{bottom:265.273500px;}
.y73_c00487{bottom:267.060000px;}
.y74_c00487{bottom:268.281000px;}
.y75_c00487{bottom:268.804500px;}
.y76_c00487{bottom:269.509500px;}
.y77_c00487{bottom:270.562500px;}
.y6d_c00487{bottom:282.957000px;}
.y6e_c00487{bottom:283.743000px;}
.y6f_c00487{bottom:285.345000px;}
.y70_c00487{bottom:286.686000px;}
.y67_c00487{bottom:299.428500px;}
.y68_c00487{bottom:301.228500px;}
.y69_c00487{bottom:301.719000px;}
.y6a_c00487{bottom:302.169000px;}
.y6b_c00487{bottom:302.884500px;}
.y6c_c00487{bottom:303.327000px;}
.y5f_c00487{bottom:315.631500px;}
.y60_c00487{bottom:316.405500px;}
.y61_c00487{bottom:317.926500px;}
.y62_c00487{bottom:318.933000px;}
.y63_c00487{bottom:319.141500px;}
.y64_c00487{bottom:319.507500px;}
.y65_c00487{bottom:320.182500px;}
.y66_c00487{bottom:320.533500px;}
.y58_c00487{bottom:335.337000px;}
.y59_c00487{bottom:335.829000px;}
.y5a_c00487{bottom:336.456000px;}
.y5b_c00487{bottom:337.123500px;}
.y5c_c00487{bottom:337.341000px;}
.y5d_c00487{bottom:338.158500px;}
.y5e_c00487{bottom:338.907000px;}
.y51_c00487{bottom:352.077000px;}
.y52_c00487{bottom:352.618500px;}
.y53_c00487{bottom:353.692500px;}
.y54_c00487{bottom:353.904000px;}
.y55_c00487{bottom:354.180000px;}
.y56_c00487{bottom:354.712500px;}
.y57_c00487{bottom:355.857000px;}
.y4b_c00487{bottom:368.817000px;}
.y4c_c00487{bottom:369.429000px;}
.y4d_c00487{bottom:370.558500px;}
.y4e_c00487{bottom:371.535000px;}
.y4f_c00487{bottom:372.097500px;}
.y50_c00487{bottom:372.616500px;}
.y43_c00487{bottom:383.130000px;}
.y44_c00487{bottom:383.296500px;}
.y45_c00487{bottom:384.346500px;}
.y46_c00487{bottom:385.206000px;}
.y47_c00487{bottom:386.031000px;}
.y48_c00487{bottom:387.058500px;}
.y49_c00487{bottom:387.373500px;}
.y4a_c00487{bottom:387.723000px;}
.y3b_c00487{bottom:403.110000px;}
.y3c_c00487{bottom:403.926000px;}
.y3d_c00487{bottom:404.209500px;}
.y3e_c00487{bottom:404.938500px;}
.y3f_c00487{bottom:405.226500px;}
.y40_c00487{bottom:405.667500px;}
.y41_c00487{bottom:405.853500px;}
.y42_c00487{bottom:406.281000px;}
.y3a_c00487{bottom:421.479000px;}
.y39_c00487{bottom:437.461500px;}
.y2e_c00487{bottom:453.871500px;}
.y2f_c00487{bottom:454.096500px;}
.y30_c00487{bottom:454.342500px;}
.y31_c00487{bottom:454.581000px;}
.y32_c00487{bottom:454.813500px;}
.y33_c00487{bottom:455.371500px;}
.y34_c00487{bottom:455.634000px;}
.y35_c00487{bottom:456.093000px;}
.y36_c00487{bottom:456.816000px;}
.y37_c00487{bottom:456.942000px;}
.y38_c00487{bottom:457.243500px;}
.y26_c00487{bottom:468.723000px;}
.y27_c00487{bottom:469.294500px;}
.y28_c00487{bottom:470.641500px;}
.y29_c00487{bottom:471.156000px;}
.y2a_c00487{bottom:471.441000px;}
.y2b_c00487{bottom:471.691500px;}
.y2c_c00487{bottom:472.629000px;}
.y2d_c00487{bottom:472.983000px;}
.y1f_c00487{bottom:484.659000px;}
.y20_c00487{bottom:486.205500px;}
.y21_c00487{bottom:487.326000px;}
.y22_c00487{bottom:487.690500px;}
.y23_c00487{bottom:488.200500px;}
.y24_c00487{bottom:489.454500px;}
.y25_c00487{bottom:490.230000px;}
.y19_c00487{bottom:501.939000px;}
.y1a_c00487{bottom:502.518000px;}
.y1b_c00487{bottom:504.288000px;}
.y1c_c00487{bottom:504.738000px;}
.y1d_c00487{bottom:506.092500px;}
.y1e_c00487{bottom:507.225000px;}
.y11_c00487{bottom:518.407500px;}
.y12_c00487{bottom:518.733000px;}
.y13_c00487{bottom:519.030000px;}
.y14_c00487{bottom:520.821000px;}
.y15_c00487{bottom:521.388000px;}
.y16_c00487{bottom:522.429000px;}
.y17_c00487{bottom:522.861000px;}
.y18_c00487{bottom:523.483500px;}
.ya_c00487{bottom:537.303000px;}
.yb_c00487{bottom:537.547500px;}
.yc_c00487{bottom:539.139000px;}
.yd_c00487{bottom:539.356500px;}
.ye_c00487{bottom:539.535000px;}
.yf_c00487{bottom:539.920500px;}
.y10_c00487{bottom:540.192000px;}
.y2_c00487{bottom:555.933000px;}
.y3_c00487{bottom:556.620000px;}
.y4_c00487{bottom:557.188500px;}
.y5_c00487{bottom:557.995500px;}
.y6_c00487{bottom:558.270000px;}
.y7_c00487{bottom:558.520500px;}
.y8_c00487{bottom:558.966000px;}
.y9_c00487{bottom:559.384500px;}
.y1_c00487{bottom:570.777000px;}
.h14_c00487{height:22.050000px;}
.hd_c00487{height:48.300000px;}
.h12_c00487{height:54.600000px;}
.h9_c00487{height:59.850000px;}
.h3_c00487{height:60.900000px;}
.hc_c00487{height:61.950000px;}
.hb_c00487{height:63.000000px;}
.h2_c00487{height:67.200000px;}
.ha_c00487{height:68.250000px;}
.h10_c00487{height:69.300000px;}
.h11_c00487{height:70.350000px;}
.h4_c00487{height:71.400000px;}
.h13_c00487{height:72.450000px;}
.h7_c00487{height:73.500000px;}
.he_c00487{height:74.550000px;}
.h8_c00487{height:77.700000px;}
.hf_c00487{height:78.750000px;}
.h6_c00487{height:79.800000px;}
.h5_c00487{height:84.000000px;}
.h0_c00487{height:617.700000px;}
.h1_c00487{height:618.000000px;}
.w0_c00487{width:359.100000px;}
.w1_c00487{width:359.250000px;}
.x0_c00487{left:0.000000px;}
.x70_c00487{left:38.284500px;}
.x5a_c00487{left:39.652500px;}
.x5e_c00487{left:40.803000px;}
.x3d_c00487{left:42.259500px;}
.x2c_c00487{left:43.738500px;}
.x2_c00487{left:44.746500px;}
.x16_c00487{left:46.008000px;}
.x6b_c00487{left:48.475500px;}
.x77_c00487{left:52.110000px;}
.x37_c00487{left:53.460000px;}
.x10_c00487{left:59.439000px;}
.x26_c00487{left:61.177500px;}
.xa_c00487{left:65.263500px;}
.x5b_c00487{left:67.255500px;}
.x57_c00487{left:68.526000px;}
.x11_c00487{left:73.575000px;}
.x17_c00487{left:76.446000px;}
.x21_c00487{left:79.890000px;}
.x40_c00487{left:81.190500px;}
.x3e_c00487{left:83.097000px;}
.x6d_c00487{left:86.574000px;}
.x4c_c00487{left:90.379500px;}
.x71_c00487{left:91.668000px;}
.x6c_c00487{left:94.101000px;}
.x68_c00487{left:95.424000px;}
.x3_c00487{left:97.623000px;}
.x32_c00487{left:101.418000px;}
.x2d_c00487{left:104.218500px;}
.x31_c00487{left:105.838500px;}
.x4f_c00487{left:111.549000px;}
.x38_c00487{left:115.249500px;}
.x27_c00487{left:116.280000px;}
.x1c_c00487{left:117.768000px;}
.x33_c00487{left:121.675500px;}
.x58_c00487{left:125.217000px;}
.x43_c00487{left:128.409000px;}
.x5c_c00487{left:129.559500px;}
.x64_c00487{left:130.833000px;}
.x75_c00487{left:134.388000px;}
.x4_c00487{left:141.376500px;}
.x50_c00487{left:142.591500px;}
.x67_c00487{left:144.928500px;}
.x65_c00487{left:147.933000px;}
.x61_c00487{left:156.805500px;}
.x41_c00487{left:157.867500px;}
.x12_c00487{left:158.886000px;}
.x69_c00487{left:160.419000px;}
.x49_c00487{left:162.424500px;}
.x22_c00487{left:164.113500px;}
.x39_c00487{left:165.802500px;}
.x18_c00487{left:169.624500px;}
.x1d_c00487{left:171.114000px;}
.x72_c00487{left:172.461000px;}
.x34_c00487{left:173.715000px;}
.x1_c00487{left:175.770000px;}
.x28_c00487{left:179.449500px;}
.x76_c00487{left:183.339000px;}
.x13_c00487{left:185.874000px;}
.x1e_c00487{left:188.494500px;}
.x73_c00487{left:190.837500px;}
.x19_c00487{left:193.339500px;}
.x4a_c00487{left:195.156000px;}
.x23_c00487{left:196.278000px;}
.xb_c00487{left:197.841000px;}
.x51_c00487{left:200.845500px;}
.x5_c00487{left:203.416500px;}
.x59_c00487{left:205.651500px;}
.x46_c00487{left:207.265500px;}
.x5f_c00487{left:209.517000px;}
.x4d_c00487{left:210.676500px;}
.x1f_c00487{left:212.800500px;}
.x24_c00487{left:214.072500px;}
.xc_c00487{left:215.905500px;}
.x47_c00487{left:217.678500px;}
.x52_c00487{left:220.747500px;}
.x6_c00487{left:224.487000px;}
.x35_c00487{left:225.811500px;}
.xd_c00487{left:230.727000px;}
.x6a_c00487{left:233.031000px;}
.x14_c00487{left:235.476000px;}
.x54_c00487{left:237.858000px;}
.x36_c00487{left:239.073000px;}
.x62_c00487{left:242.044500px;}
.x7_c00487{left:243.706500px;}
.x2e_c00487{left:251.638500px;}
.x6e_c00487{left:252.915000px;}
.x15_c00487{left:256.044000px;}
.x44_c00487{left:259.329000px;}
.x3f_c00487{left:261.007500px;}
.xe_c00487{left:262.881000px;}
.x1a_c00487{left:264.630000px;}
.x29_c00487{left:270.441000px;}
.x20_c00487{left:272.490000px;}
.x3a_c00487{left:274.809000px;}
.x63_c00487{left:276.921000px;}
.x8_c00487{left:277.993500px;}
.x2a_c00487{left:280.146000px;}
.x5d_c00487{left:281.611500px;}
.xf_c00487{left:285.564000px;}
.x48_c00487{left:287.289000px;}
.x25_c00487{left:288.325500px;}
.x6f_c00487{left:289.615500px;}
.x3b_c00487{left:293.370000px;}
.x2f_c00487{left:295.378500px;}
.x55_c00487{left:296.436000px;}
.x66_c00487{left:298.090500px;}
.x4e_c00487{left:301.899000px;}
.x2b_c00487{left:303.309000px;}
.x74_c00487{left:306.147000px;}
.x4b_c00487{left:308.763000px;}
.x9_c00487{left:310.146000px;}
.x42_c00487{left:312.570000px;}
.x3c_c00487{left:313.966500px;}
.x45_c00487{left:316.864500px;}
.x56_c00487{left:318.297000px;}
.x60_c00487{left:319.887000px;}
.x53_c00487{left:321.540000px;}
.x1b_c00487{left:324.258000px;}
.x30_c00487{left:331.288500px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs12_c00487{font-size:19.600000pt;}
.fsb_c00487{font-size:42.933333pt;}
.fs10_c00487{font-size:48.533333pt;}
.fs7_c00487{font-size:53.200000pt;}
.fs1_c00487{font-size:54.133333pt;}
.fsa_c00487{font-size:55.066667pt;}
.fs9_c00487{font-size:56.000000pt;}
.fs0_c00487{font-size:59.733333pt;}
.fs8_c00487{font-size:60.666667pt;}
.fse_c00487{font-size:61.600000pt;}
.fsf_c00487{font-size:62.533333pt;}
.fs2_c00487{font-size:63.466667pt;}
.fs11_c00487{font-size:64.400000pt;}
.fs5_c00487{font-size:65.333333pt;}
.fsc_c00487{font-size:66.266667pt;}
.fs6_c00487{font-size:69.066667pt;}
.fsd_c00487{font-size:70.000000pt;}
.fs4_c00487{font-size:70.933333pt;}
.fs3_c00487{font-size:74.666667pt;}
.y0_c00487{bottom:0.000000pt;}
.yd1_c00487{bottom:25.920000pt;}
.yd2_c00487{bottom:26.180000pt;}
.yd3_c00487{bottom:27.470667pt;}
.yd4_c00487{bottom:28.068000pt;}
.yd5_c00487{bottom:28.253333pt;}
.yd6_c00487{bottom:28.581333pt;}
.yd7_c00487{bottom:29.713333pt;}
.yd8_c00487{bottom:30.140000pt;}
.yc6_c00487{bottom:39.358667pt;}
.yc7_c00487{bottom:40.070667pt;}
.yc8_c00487{bottom:40.344000pt;}
.yc9_c00487{bottom:40.586667pt;}
.yca_c00487{bottom:41.148000pt;}
.ycb_c00487{bottom:41.393333pt;}
.ycc_c00487{bottom:41.706667pt;}
.ycd_c00487{bottom:42.066667pt;}
.yce_c00487{bottom:42.312000pt;}
.ycf_c00487{bottom:42.798667pt;}
.yd0_c00487{bottom:42.932000pt;}
.ybf_c00487{bottom:55.920000pt;}
.yc0_c00487{bottom:56.258667pt;}
.yc1_c00487{bottom:56.474667pt;}
.yc2_c00487{bottom:57.329333pt;}
.yc3_c00487{bottom:58.072000pt;}
.yc4_c00487{bottom:58.396000pt;}
.yc5_c00487{bottom:58.820000pt;}
.yba_c00487{bottom:69.366667pt;}
.ybb_c00487{bottom:70.461333pt;}
.ybc_c00487{bottom:72.188000pt;}
.ybd_c00487{bottom:73.265333pt;}
.ybe_c00487{bottom:74.264000pt;}
.yb2_c00487{bottom:84.964000pt;}
.yb3_c00487{bottom:85.461333pt;}
.yb4_c00487{bottom:85.732000pt;}
.yb5_c00487{bottom:86.213333pt;}
.yb6_c00487{bottom:87.657333pt;}
.yb7_c00487{bottom:89.270667pt;}
.yb8_c00487{bottom:90.686667pt;}
.yb9_c00487{bottom:91.129333pt;}
.yac_c00487{bottom:101.277333pt;}
.yad_c00487{bottom:101.678667pt;}
.yae_c00487{bottom:102.693333pt;}
.yaf_c00487{bottom:103.394667pt;}
.yb0_c00487{bottom:103.625333pt;}
.yb1_c00487{bottom:104.510667pt;}
.ya5_c00487{bottom:116.640000pt;}
.ya6_c00487{bottom:117.077333pt;}
.ya7_c00487{bottom:117.681333pt;}
.ya8_c00487{bottom:118.256000pt;}
.ya9_c00487{bottom:118.560000pt;}
.yaa_c00487{bottom:120.397333pt;}
.yab_c00487{bottom:121.229333pt;}
.y9d_c00487{bottom:131.277333pt;}
.y9e_c00487{bottom:131.692000pt;}
.y9f_c00487{bottom:132.190667pt;}
.ya0_c00487{bottom:133.145333pt;}
.ya1_c00487{bottom:133.378667pt;}
.ya2_c00487{bottom:134.508000pt;}
.ya3_c00487{bottom:134.812000pt;}
.ya4_c00487{bottom:135.066667pt;}
.y97_c00487{bottom:144.718667pt;}
.y98_c00487{bottom:145.644000pt;}
.y99_c00487{bottom:145.928000pt;}
.y9a_c00487{bottom:147.418667pt;}
.y9b_c00487{bottom:148.153333pt;}
.y9c_c00487{bottom:149.185333pt;}
.yd9_c00487{bottom:160.080000pt;}
.y96_c00487{bottom:161.936000pt;}
.y8e_c00487{bottom:175.421333pt;}
.y8f_c00487{bottom:175.789333pt;}
.y90_c00487{bottom:176.620000pt;}
.y91_c00487{bottom:177.232000pt;}
.y92_c00487{bottom:177.740000pt;}
.y93_c00487{bottom:177.888000pt;}
.y94_c00487{bottom:178.489333pt;}
.y95_c00487{bottom:179.120000pt;}
.y88_c00487{bottom:193.197333pt;}
.y89_c00487{bottom:193.633333pt;}
.y8a_c00487{bottom:194.540000pt;}
.y8b_c00487{bottom:195.826667pt;}
.y8c_c00487{bottom:196.341333pt;}
.y8d_c00487{bottom:197.398667pt;}
.y82_c00487{bottom:205.677333pt;}
.y83_c00487{bottom:206.241333pt;}
.y84_c00487{bottom:208.064000pt;}
.y85_c00487{bottom:209.168000pt;}
.y86_c00487{bottom:210.209333pt;}
.y87_c00487{bottom:210.597333pt;}
.y78_c00487{bottom:220.078667pt;}
.y79_c00487{bottom:220.320000pt;}
.y7a_c00487{bottom:221.061333pt;}
.y7b_c00487{bottom:221.502667pt;}
.y7c_c00487{bottom:221.740000pt;}
.y7d_c00487{bottom:222.330667pt;}
.y7e_c00487{bottom:222.613333pt;}
.y7f_c00487{bottom:222.953333pt;}
.y80_c00487{bottom:223.885333pt;}
.y81_c00487{bottom:224.048000pt;}
.y71_c00487{bottom:234.956000pt;}
.y72_c00487{bottom:235.798667pt;}
.y73_c00487{bottom:237.386667pt;}
.y74_c00487{bottom:238.472000pt;}
.y75_c00487{bottom:238.937333pt;}
.y76_c00487{bottom:239.564000pt;}
.y77_c00487{bottom:240.500000pt;}
.y6d_c00487{bottom:251.517333pt;}
.y6e_c00487{bottom:252.216000pt;}
.y6f_c00487{bottom:253.640000pt;}
.y70_c00487{bottom:254.832000pt;}
.y67_c00487{bottom:266.158667pt;}
.y68_c00487{bottom:267.758667pt;}
.y69_c00487{bottom:268.194667pt;}
.y6a_c00487{bottom:268.594667pt;}
.y6b_c00487{bottom:269.230667pt;}
.y6c_c00487{bottom:269.624000pt;}
.y5f_c00487{bottom:280.561333pt;}
.y60_c00487{bottom:281.249333pt;}
.y61_c00487{bottom:282.601333pt;}
.y62_c00487{bottom:283.496000pt;}
.y63_c00487{bottom:283.681333pt;}
.y64_c00487{bottom:284.006667pt;}
.y65_c00487{bottom:284.606667pt;}
.y66_c00487{bottom:284.918667pt;}
.y58_c00487{bottom:298.077333pt;}
.y59_c00487{bottom:298.514667pt;}
.y5a_c00487{bottom:299.072000pt;}
.y5b_c00487{bottom:299.665333pt;}
.y5c_c00487{bottom:299.858667pt;}
.y5d_c00487{bottom:300.585333pt;}
.y5e_c00487{bottom:301.250667pt;}
.y51_c00487{bottom:312.957333pt;}
.y52_c00487{bottom:313.438667pt;}
.y53_c00487{bottom:314.393333pt;}
.y54_c00487{bottom:314.581333pt;}
.y55_c00487{bottom:314.826667pt;}
.y56_c00487{bottom:315.300000pt;}
.y57_c00487{bottom:316.317333pt;}
.y4b_c00487{bottom:327.837333pt;}
.y4c_c00487{bottom:328.381333pt;}
.y4d_c00487{bottom:329.385333pt;}
.y4e_c00487{bottom:330.253333pt;}
.y4f_c00487{bottom:330.753333pt;}
.y50_c00487{bottom:331.214667pt;}
.y43_c00487{bottom:340.560000pt;}
.y44_c00487{bottom:340.708000pt;}
.y45_c00487{bottom:341.641333pt;}
.y46_c00487{bottom:342.405333pt;}
.y47_c00487{bottom:343.138667pt;}
.y48_c00487{bottom:344.052000pt;}
.y49_c00487{bottom:344.332000pt;}
.y4a_c00487{bottom:344.642667pt;}
.y3b_c00487{bottom:358.320000pt;}
.y3c_c00487{bottom:359.045333pt;}
.y3d_c00487{bottom:359.297333pt;}
.y3e_c00487{bottom:359.945333pt;}
.y3f_c00487{bottom:360.201333pt;}
.y40_c00487{bottom:360.593333pt;}
.y41_c00487{bottom:360.758667pt;}
.y42_c00487{bottom:361.138667pt;}
.y3a_c00487{bottom:374.648000pt;}
.y39_c00487{bottom:388.854667pt;}
.y2e_c00487{bottom:403.441333pt;}
.y2f_c00487{bottom:403.641333pt;}
.y30_c00487{bottom:403.860000pt;}
.y31_c00487{bottom:404.072000pt;}
.y32_c00487{bottom:404.278667pt;}
.y33_c00487{bottom:404.774667pt;}
.y34_c00487{bottom:405.008000pt;}
.y35_c00487{bottom:405.416000pt;}
.y36_c00487{bottom:406.058667pt;}
.y37_c00487{bottom:406.170667pt;}
.y38_c00487{bottom:406.438667pt;}
.y26_c00487{bottom:416.642667pt;}
.y27_c00487{bottom:417.150667pt;}
.y28_c00487{bottom:418.348000pt;}
.y29_c00487{bottom:418.805333pt;}
.y2a_c00487{bottom:419.058667pt;}
.y2b_c00487{bottom:419.281333pt;}
.y2c_c00487{bottom:420.114667pt;}
.y2d_c00487{bottom:420.429333pt;}
.y1f_c00487{bottom:430.808000pt;}
.y20_c00487{bottom:432.182667pt;}
.y21_c00487{bottom:433.178667pt;}
.y22_c00487{bottom:433.502667pt;}
.y23_c00487{bottom:433.956000pt;}
.y24_c00487{bottom:435.070667pt;}
.y25_c00487{bottom:435.760000pt;}
.y19_c00487{bottom:446.168000pt;}
.y1a_c00487{bottom:446.682667pt;}
.y1b_c00487{bottom:448.256000pt;}
.y1c_c00487{bottom:448.656000pt;}
.y1d_c00487{bottom:449.860000pt;}
.y1e_c00487{bottom:450.866667pt;}
.y11_c00487{bottom:460.806667pt;}
.y12_c00487{bottom:461.096000pt;}
.y13_c00487{bottom:461.360000pt;}
.y14_c00487{bottom:462.952000pt;}
.y15_c00487{bottom:463.456000pt;}
.y16_c00487{bottom:464.381333pt;}
.y17_c00487{bottom:464.765333pt;}
.y18_c00487{bottom:465.318667pt;}
.ya_c00487{bottom:477.602667pt;}
.yb_c00487{bottom:477.820000pt;}
.yc_c00487{bottom:479.234667pt;}
.yd_c00487{bottom:479.428000pt;}
.ye_c00487{bottom:479.586667pt;}
.yf_c00487{bottom:479.929333pt;}
.y10_c00487{bottom:480.170667pt;}
.y2_c00487{bottom:494.162667pt;}
.y3_c00487{bottom:494.773333pt;}
.y4_c00487{bottom:495.278667pt;}
.y5_c00487{bottom:495.996000pt;}
.y6_c00487{bottom:496.240000pt;}
.y7_c00487{bottom:496.462667pt;}
.y8_c00487{bottom:496.858667pt;}
.y9_c00487{bottom:497.230667pt;}
.y1_c00487{bottom:507.357333pt;}
.h14_c00487{height:19.600000pt;}
.hd_c00487{height:42.933333pt;}
.h12_c00487{height:48.533333pt;}
.h9_c00487{height:53.200000pt;}
.h3_c00487{height:54.133333pt;}
.hc_c00487{height:55.066667pt;}
.hb_c00487{height:56.000000pt;}
.h2_c00487{height:59.733333pt;}
.ha_c00487{height:60.666667pt;}
.h10_c00487{height:61.600000pt;}
.h11_c00487{height:62.533333pt;}
.h4_c00487{height:63.466667pt;}
.h13_c00487{height:64.400000pt;}
.h7_c00487{height:65.333333pt;}
.he_c00487{height:66.266667pt;}
.h8_c00487{height:69.066667pt;}
.hf_c00487{height:70.000000pt;}
.h6_c00487{height:70.933333pt;}
.h5_c00487{height:74.666667pt;}
.h0_c00487{height:549.066667pt;}
.h1_c00487{height:549.333333pt;}
.w0_c00487{width:319.200000pt;}
.w1_c00487{width:319.333333pt;}
.x0_c00487{left:0.000000pt;}
.x70_c00487{left:34.030667pt;}
.x5a_c00487{left:35.246667pt;}
.x5e_c00487{left:36.269333pt;}
.x3d_c00487{left:37.564000pt;}
.x2c_c00487{left:38.878667pt;}
.x2_c00487{left:39.774667pt;}
.x16_c00487{left:40.896000pt;}
.x6b_c00487{left:43.089333pt;}
.x77_c00487{left:46.320000pt;}
.x37_c00487{left:47.520000pt;}
.x10_c00487{left:52.834667pt;}
.x26_c00487{left:54.380000pt;}
.xa_c00487{left:58.012000pt;}
.x5b_c00487{left:59.782667pt;}
.x57_c00487{left:60.912000pt;}
.x11_c00487{left:65.400000pt;}
.x17_c00487{left:67.952000pt;}
.x21_c00487{left:71.013333pt;}
.x40_c00487{left:72.169333pt;}
.x3e_c00487{left:73.864000pt;}
.x6d_c00487{left:76.954667pt;}
.x4c_c00487{left:80.337333pt;}
.x71_c00487{left:81.482667pt;}
.x6c_c00487{left:83.645333pt;}
.x68_c00487{left:84.821333pt;}
.x3_c00487{left:86.776000pt;}
.x32_c00487{left:90.149333pt;}
.x2d_c00487{left:92.638667pt;}
.x31_c00487{left:94.078667pt;}
.x4f_c00487{left:99.154667pt;}
.x38_c00487{left:102.444000pt;}
.x27_c00487{left:103.360000pt;}
.x1c_c00487{left:104.682667pt;}
.x33_c00487{left:108.156000pt;}
.x58_c00487{left:111.304000pt;}
.x43_c00487{left:114.141333pt;}
.x5c_c00487{left:115.164000pt;}
.x64_c00487{left:116.296000pt;}
.x75_c00487{left:119.456000pt;}
.x4_c00487{left:125.668000pt;}
.x50_c00487{left:126.748000pt;}
.x67_c00487{left:128.825333pt;}
.x65_c00487{left:131.496000pt;}
.x61_c00487{left:139.382667pt;}
.x41_c00487{left:140.326667pt;}
.x12_c00487{left:141.232000pt;}
.x69_c00487{left:142.594667pt;}
.x49_c00487{left:144.377333pt;}
.x22_c00487{left:145.878667pt;}
.x39_c00487{left:147.380000pt;}
.x18_c00487{left:150.777333pt;}
.x1d_c00487{left:152.101333pt;}
.x72_c00487{left:153.298667pt;}
.x34_c00487{left:154.413333pt;}
.x1_c00487{left:156.240000pt;}
.x28_c00487{left:159.510667pt;}
.x76_c00487{left:162.968000pt;}
.x13_c00487{left:165.221333pt;}
.x1e_c00487{left:167.550667pt;}
.x73_c00487{left:169.633333pt;}
.x19_c00487{left:171.857333pt;}
.x4a_c00487{left:173.472000pt;}
.x23_c00487{left:174.469333pt;}
.xb_c00487{left:175.858667pt;}
.x51_c00487{left:178.529333pt;}
.x5_c00487{left:180.814667pt;}
.x59_c00487{left:182.801333pt;}
.x46_c00487{left:184.236000pt;}
.x5f_c00487{left:186.237333pt;}
.x4d_c00487{left:187.268000pt;}
.x1f_c00487{left:189.156000pt;}
.x24_c00487{left:190.286667pt;}
.xc_c00487{left:191.916000pt;}
.x47_c00487{left:193.492000pt;}
.x52_c00487{left:196.220000pt;}
.x6_c00487{left:199.544000pt;}
.x35_c00487{left:200.721333pt;}
.xd_c00487{left:205.090667pt;}
.x6a_c00487{left:207.138667pt;}
.x14_c00487{left:209.312000pt;}
.x54_c00487{left:211.429333pt;}
.x36_c00487{left:212.509333pt;}
.x62_c00487{left:215.150667pt;}
.x7_c00487{left:216.628000pt;}
.x2e_c00487{left:223.678667pt;}
.x6e_c00487{left:224.813333pt;}
.x15_c00487{left:227.594667pt;}
.x44_c00487{left:230.514667pt;}
.x3f_c00487{left:232.006667pt;}
.xe_c00487{left:233.672000pt;}
.x1a_c00487{left:235.226667pt;}
.x29_c00487{left:240.392000pt;}
.x20_c00487{left:242.213333pt;}
.x3a_c00487{left:244.274667pt;}
.x63_c00487{left:246.152000pt;}
.x8_c00487{left:247.105333pt;}
.x2a_c00487{left:249.018667pt;}
.x5d_c00487{left:250.321333pt;}
.xf_c00487{left:253.834667pt;}
.x48_c00487{left:255.368000pt;}
.x25_c00487{left:256.289333pt;}
.x6f_c00487{left:257.436000pt;}
.x3b_c00487{left:260.773333pt;}
.x2f_c00487{left:262.558667pt;}
.x55_c00487{left:263.498667pt;}
.x66_c00487{left:264.969333pt;}
.x4e_c00487{left:268.354667pt;}
.x2b_c00487{left:269.608000pt;}
.x74_c00487{left:272.130667pt;}
.x4b_c00487{left:274.456000pt;}
.x9_c00487{left:275.685333pt;}
.x42_c00487{left:277.840000pt;}
.x3c_c00487{left:279.081333pt;}
.x45_c00487{left:281.657333pt;}
.x56_c00487{left:282.930667pt;}
.x60_c00487{left:284.344000pt;}
.x53_c00487{left:285.813333pt;}
.x1b_c00487{left:288.229333pt;}
.x30_c00487{left:294.478667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00488 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00488 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00488 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00488 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00488{transform:matrix(0.026129,-0.000575,0.005499,0.249940,0,0);-ms-transform:matrix(0.026129,-0.000575,0.005499,0.249940,0,0);-webkit-transform:matrix(0.026129,-0.000575,0.005499,0.249940,0,0);}
.mf5_c00488{transform:matrix(0.129052,-0.002710,0.005249,0.249945,0,0);-ms-transform:matrix(0.129052,-0.002710,0.005249,0.249945,0,0);-webkit-transform:matrix(0.129052,-0.002710,0.005249,0.249945,0,0);}
.mf4_c00488{transform:matrix(0.132531,-0.002783,0.005249,0.249945,0,0);-ms-transform:matrix(0.132531,-0.002783,0.005249,0.249945,0,0);-webkit-transform:matrix(0.132531,-0.002783,0.005249,0.249945,0,0);}
.md2_c00488{transform:matrix(0.144001,-0.003744,0.006498,0.249916,0,0);-ms-transform:matrix(0.144001,-0.003744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.144001,-0.003744,0.006498,0.249916,0,0);}
.m57_c00488{transform:matrix(0.149046,-0.002683,0.004499,0.249960,0,0);-ms-transform:matrix(0.149046,-0.002683,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149046,-0.002683,0.004499,0.249960,0,0);}
.mcb_c00488{transform:matrix(0.151114,-0.003929,0.006498,0.249916,0,0);-ms-transform:matrix(0.151114,-0.003929,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151114,-0.003929,0.006498,0.249916,0,0);}
.md5_c00488{transform:matrix(0.151564,-0.003941,0.006498,0.249916,0,0);-ms-transform:matrix(0.151564,-0.003941,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151564,-0.003941,0.006498,0.249916,0,0);}
.md3_c00488{transform:matrix(0.153528,-0.003992,0.006498,0.249916,0,0);-ms-transform:matrix(0.153528,-0.003992,0.006498,0.249916,0,0);-webkit-transform:matrix(0.153528,-0.003992,0.006498,0.249916,0,0);}
.m19_c00488{transform:matrix(0.159092,-0.003500,0.005499,0.249940,0,0);-ms-transform:matrix(0.159092,-0.003500,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159092,-0.003500,0.005499,0.249940,0,0);}
.m83_c00488{transform:matrix(0.159916,-0.004158,0.006498,0.249916,0,0);-ms-transform:matrix(0.159916,-0.004158,0.006498,0.249916,0,0);-webkit-transform:matrix(0.159916,-0.004158,0.006498,0.249916,0,0);}
.mfa_c00488{transform:matrix(0.160570,-0.003372,0.005249,0.249945,0,0);-ms-transform:matrix(0.160570,-0.003372,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160570,-0.003372,0.005249,0.249945,0,0);}
.ma1_c00488{transform:matrix(0.161945,-0.004211,0.006498,0.249916,0,0);-ms-transform:matrix(0.161945,-0.004211,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161945,-0.004211,0.006498,0.249916,0,0);}
.m85_c00488{transform:matrix(0.163010,-0.004238,0.006498,0.249916,0,0);-ms-transform:matrix(0.163010,-0.004238,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163010,-0.004238,0.006498,0.249916,0,0);}
.mf6_c00488{transform:matrix(0.163359,-0.003431,0.005249,0.249945,0,0);-ms-transform:matrix(0.163359,-0.003431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163359,-0.003431,0.005249,0.249945,0,0);}
.m2a_c00488{transform:matrix(0.163454,-0.002942,0.004499,0.249960,0,0);-ms-transform:matrix(0.163454,-0.002942,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163454,-0.002942,0.004499,0.249960,0,0);}
.mf2_c00488{transform:matrix(0.163720,-0.004257,0.006498,0.249916,0,0);-ms-transform:matrix(0.163720,-0.004257,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163720,-0.004257,0.006498,0.249916,0,0);}
.m1f_c00488{transform:matrix(0.164355,-0.003616,0.005499,0.249940,0,0);-ms-transform:matrix(0.164355,-0.003616,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164355,-0.003616,0.005499,0.249940,0,0);}
.m97_c00488{transform:matrix(0.166169,-0.004320,0.006498,0.249916,0,0);-ms-transform:matrix(0.166169,-0.004320,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166169,-0.004320,0.006498,0.249916,0,0);}
.m1b_c00488{transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);-ms-transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);}
.m4f_c00488{transform:matrix(0.167633,-0.003017,0.004499,0.249960,0,0);-ms-transform:matrix(0.167633,-0.003017,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167633,-0.003017,0.004499,0.249960,0,0);}
.m8a_c00488{transform:matrix(0.168073,-0.004370,0.006498,0.249916,0,0);-ms-transform:matrix(0.168073,-0.004370,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168073,-0.004370,0.006498,0.249916,0,0);}
.mce_c00488{transform:matrix(0.168473,-0.004380,0.006498,0.249916,0,0);-ms-transform:matrix(0.168473,-0.004380,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168473,-0.004380,0.006498,0.249916,0,0);}
.mb7_c00488{transform:matrix(0.169353,-0.004403,0.006498,0.249916,0,0);-ms-transform:matrix(0.169353,-0.004403,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169353,-0.004403,0.006498,0.249916,0,0);}
.m61_c00488{transform:matrix(0.169917,-0.003059,0.004499,0.249960,0,0);-ms-transform:matrix(0.169917,-0.003059,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169917,-0.003059,0.004499,0.249960,0,0);}
.m35_c00488{transform:matrix(0.170107,-0.003062,0.004499,0.249960,0,0);-ms-transform:matrix(0.170107,-0.003062,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170107,-0.003062,0.004499,0.249960,0,0);}
.mee_c00488{transform:matrix(0.170502,-0.004433,0.006498,0.249916,0,0);-ms-transform:matrix(0.170502,-0.004433,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170502,-0.004433,0.006498,0.249916,0,0);}
.m1d_c00488{transform:matrix(0.171449,-0.003772,0.005499,0.249940,0,0);-ms-transform:matrix(0.171449,-0.003772,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171449,-0.003772,0.005499,0.249940,0,0);}
.m9e_c00488{transform:matrix(0.171672,-0.004463,0.006498,0.249916,0,0);-ms-transform:matrix(0.171672,-0.004463,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171672,-0.004463,0.006498,0.249916,0,0);}
.m93_c00488{transform:matrix(0.171897,-0.004469,0.006498,0.249916,0,0);-ms-transform:matrix(0.171897,-0.004469,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171897,-0.004469,0.006498,0.249916,0,0);}
.mc0_c00488{transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);-ms-transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172707,-0.004490,0.006498,0.249916,0,0);}
.ma4_c00488{transform:matrix(0.173176,-0.004503,0.006498,0.249916,0,0);-ms-transform:matrix(0.173176,-0.004503,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173176,-0.004503,0.006498,0.249916,0,0);}
.md0_c00488{transform:matrix(0.173521,-0.004512,0.006498,0.249916,0,0);-ms-transform:matrix(0.173521,-0.004512,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173521,-0.004512,0.006498,0.249916,0,0);}
.m20_c00488{transform:matrix(0.173908,-0.003826,0.005499,0.249940,0,0);-ms-transform:matrix(0.173908,-0.003826,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173908,-0.003826,0.005499,0.249940,0,0);}
.mb6_c00488{transform:matrix(0.173946,-0.004523,0.006498,0.249916,0,0);-ms-transform:matrix(0.173946,-0.004523,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173946,-0.004523,0.006498,0.249916,0,0);}
.m8e_c00488{transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);-ms-transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174241,-0.004530,0.006498,0.249916,0,0);}
.me8_c00488{transform:matrix(0.174276,-0.004531,0.006498,0.249916,0,0);-ms-transform:matrix(0.174276,-0.004531,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174276,-0.004531,0.006498,0.249916,0,0);}
.mac_c00488{transform:matrix(0.174391,-0.004534,0.006498,0.249916,0,0);-ms-transform:matrix(0.174391,-0.004534,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174391,-0.004534,0.006498,0.249916,0,0);}
.mad_c00488{transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);-ms-transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);}
.mc9_c00488{transform:matrix(0.174741,-0.004543,0.006498,0.249916,0,0);-ms-transform:matrix(0.174741,-0.004543,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174741,-0.004543,0.006498,0.249916,0,0);}
.m9c_c00488{transform:matrix(0.174856,-0.004546,0.006498,0.249916,0,0);-ms-transform:matrix(0.174856,-0.004546,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174856,-0.004546,0.006498,0.249916,0,0);}
.m30_c00488{transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);-ms-transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);}
.m5a_c00488{transform:matrix(0.175941,-0.003167,0.004499,0.249960,0,0);-ms-transform:matrix(0.175941,-0.003167,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175941,-0.003167,0.004499,0.249960,0,0);}
.m2b_c00488{transform:matrix(0.176176,-0.003171,0.004499,0.249960,0,0);-ms-transform:matrix(0.176176,-0.003171,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176176,-0.003171,0.004499,0.249960,0,0);}
.m82_c00488{transform:matrix(0.176180,-0.004581,0.006498,0.249916,0,0);-ms-transform:matrix(0.176180,-0.004581,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176180,-0.004581,0.006498,0.249916,0,0);}
.mae_c00488{transform:matrix(0.176185,-0.004581,0.006498,0.249916,0,0);-ms-transform:matrix(0.176185,-0.004581,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176185,-0.004581,0.006498,0.249916,0,0);}
.m98_c00488{transform:matrix(0.176225,-0.004582,0.006498,0.249916,0,0);-ms-transform:matrix(0.176225,-0.004582,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176225,-0.004582,0.006498,0.249916,0,0);}
.m4c_c00488{transform:matrix(0.176281,-0.003173,0.004499,0.249960,0,0);-ms-transform:matrix(0.176281,-0.003173,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176281,-0.003173,0.004499,0.249960,0,0);}
.m75_c00488{transform:matrix(0.176576,-0.003178,0.004499,0.249960,0,0);-ms-transform:matrix(0.176576,-0.003178,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176576,-0.003178,0.004499,0.249960,0,0);}
.mc6_c00488{transform:matrix(0.177690,-0.004620,0.006498,0.249916,0,0);-ms-transform:matrix(0.177690,-0.004620,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177690,-0.004620,0.006498,0.249916,0,0);}
.m17_c00488{transform:matrix(0.178552,-0.003928,0.005499,0.249940,0,0);-ms-transform:matrix(0.178552,-0.003928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178552,-0.003928,0.005499,0.249940,0,0);}
.md1_c00488{transform:matrix(0.179234,-0.004660,0.006498,0.249916,0,0);-ms-transform:matrix(0.179234,-0.004660,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179234,-0.004660,0.006498,0.249916,0,0);}
.mb2_c00488{transform:matrix(0.179454,-0.004666,0.006498,0.249916,0,0);-ms-transform:matrix(0.179454,-0.004666,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179454,-0.004666,0.006498,0.249916,0,0);}
.m67_c00488{transform:matrix(0.179591,-0.003233,0.004499,0.249960,0,0);-ms-transform:matrix(0.179591,-0.003233,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179591,-0.003233,0.004499,0.249960,0,0);}
.mc1_c00488{transform:matrix(0.179679,-0.004672,0.006498,0.249916,0,0);-ms-transform:matrix(0.179679,-0.004672,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179679,-0.004672,0.006498,0.249916,0,0);}
.m27_c00488{transform:matrix(0.180121,-0.003242,0.004499,0.249960,0,0);-ms-transform:matrix(0.180121,-0.003242,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180121,-0.003242,0.004499,0.249960,0,0);}
.m16_c00488{transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-ms-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180551,-0.003972,0.005499,0.249940,0,0);}
.mfc_c00488{transform:matrix(0.181395,-0.003809,0.005249,0.249945,0,0);-ms-transform:matrix(0.181395,-0.003809,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181395,-0.003809,0.005249,0.249945,0,0);}
.me0_c00488{transform:matrix(0.181819,-0.004727,0.006498,0.249916,0,0);-ms-transform:matrix(0.181819,-0.004727,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181819,-0.004727,0.006498,0.249916,0,0);}
.m2d_c00488{transform:matrix(0.181891,-0.003274,0.004499,0.249960,0,0);-ms-transform:matrix(0.181891,-0.003274,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181891,-0.003274,0.004499,0.249960,0,0);}
.me2_c00488{transform:matrix(0.182053,-0.004733,0.006498,0.249916,0,0);-ms-transform:matrix(0.182053,-0.004733,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182053,-0.004733,0.006498,0.249916,0,0);}
.m37_c00488{transform:matrix(0.182310,-0.003282,0.004499,0.249960,0,0);-ms-transform:matrix(0.182310,-0.003282,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182310,-0.003282,0.004499,0.249960,0,0);}
.mc4_c00488{transform:matrix(0.183193,-0.004763,0.006498,0.249916,0,0);-ms-transform:matrix(0.183193,-0.004763,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183193,-0.004763,0.006498,0.249916,0,0);}
.md7_c00488{transform:matrix(0.183593,-0.004773,0.006498,0.249916,0,0);-ms-transform:matrix(0.183593,-0.004773,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183593,-0.004773,0.006498,0.249916,0,0);}
.mdc_c00488{transform:matrix(0.183953,-0.004783,0.006498,0.249916,0,0);-ms-transform:matrix(0.183953,-0.004783,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183953,-0.004783,0.006498,0.249916,0,0);}
.m56_c00488{transform:matrix(0.184025,-0.003312,0.004499,0.249960,0,0);-ms-transform:matrix(0.184025,-0.003312,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184025,-0.003312,0.004499,0.249960,0,0);}
.mb1_c00488{transform:matrix(0.184528,-0.004798,0.006498,0.249916,0,0);-ms-transform:matrix(0.184528,-0.004798,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184528,-0.004798,0.006498,0.249916,0,0);}
.ma7_c00488{transform:matrix(0.184618,-0.004800,0.006498,0.249916,0,0);-ms-transform:matrix(0.184618,-0.004800,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184618,-0.004800,0.006498,0.249916,0,0);}
.md6_c00488{transform:matrix(0.184972,-0.004809,0.006498,0.249916,0,0);-ms-transform:matrix(0.184972,-0.004809,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184972,-0.004809,0.006498,0.249916,0,0);}
.ma2_c00488{transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);-ms-transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185032,-0.004811,0.006498,0.249916,0,0);}
.m6f_c00488{transform:matrix(0.185280,-0.003335,0.004499,0.249960,0,0);-ms-transform:matrix(0.185280,-0.003335,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185280,-0.003335,0.004499,0.249960,0,0);}
.m50_c00488{transform:matrix(0.185820,-0.003345,0.004499,0.249960,0,0);-ms-transform:matrix(0.185820,-0.003345,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185820,-0.003345,0.004499,0.249960,0,0);}
.mef_c00488{transform:matrix(0.186052,-0.004837,0.006498,0.249916,0,0);-ms-transform:matrix(0.186052,-0.004837,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186052,-0.004837,0.006498,0.249916,0,0);}
.m84_c00488{transform:matrix(0.186092,-0.004838,0.006498,0.249916,0,0);-ms-transform:matrix(0.186092,-0.004838,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186092,-0.004838,0.006498,0.249916,0,0);}
.m54_c00488{transform:matrix(0.186330,-0.003354,0.004499,0.249960,0,0);-ms-transform:matrix(0.186330,-0.003354,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186330,-0.003354,0.004499,0.249960,0,0);}
.m36_c00488{transform:matrix(0.187045,-0.003367,0.004499,0.249960,0,0);-ms-transform:matrix(0.187045,-0.003367,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187045,-0.003367,0.004499,0.249960,0,0);}
.m53_c00488{transform:matrix(0.187110,-0.003368,0.004499,0.249960,0,0);-ms-transform:matrix(0.187110,-0.003368,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187110,-0.003368,0.004499,0.249960,0,0);}
.m8f_c00488{transform:matrix(0.187172,-0.004866,0.006498,0.249916,0,0);-ms-transform:matrix(0.187172,-0.004866,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187172,-0.004866,0.006498,0.249916,0,0);}
.m28_c00488{transform:matrix(0.187210,-0.003370,0.004499,0.249960,0,0);-ms-transform:matrix(0.187210,-0.003370,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187210,-0.003370,0.004499,0.249960,0,0);}
.m96_c00488{transform:matrix(0.187242,-0.004868,0.006498,0.249916,0,0);-ms-transform:matrix(0.187242,-0.004868,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187242,-0.004868,0.006498,0.249916,0,0);}
.m59_c00488{transform:matrix(0.187700,-0.003379,0.004499,0.249960,0,0);-ms-transform:matrix(0.187700,-0.003379,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187700,-0.003379,0.004499,0.249960,0,0);}
.m77_c00488{transform:matrix(0.187740,-0.003379,0.004499,0.249960,0,0);-ms-transform:matrix(0.187740,-0.003379,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187740,-0.003379,0.004499,0.249960,0,0);}
.m91_c00488{transform:matrix(0.187921,-0.004886,0.006498,0.249916,0,0);-ms-transform:matrix(0.187921,-0.004886,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187921,-0.004886,0.006498,0.249916,0,0);}
.m26_c00488{transform:matrix(0.188060,-0.003385,0.004499,0.249960,0,0);-ms-transform:matrix(0.188060,-0.003385,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188060,-0.003385,0.004499,0.249960,0,0);}
.mc7_c00488{transform:matrix(0.188606,-0.004904,0.006498,0.249916,0,0);-ms-transform:matrix(0.188606,-0.004904,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188606,-0.004904,0.006498,0.249916,0,0);}
.m94_c00488{transform:matrix(0.188616,-0.004904,0.006498,0.249916,0,0);-ms-transform:matrix(0.188616,-0.004904,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188616,-0.004904,0.006498,0.249916,0,0);}
.m70_c00488{transform:matrix(0.188844,-0.003399,0.004499,0.249960,0,0);-ms-transform:matrix(0.188844,-0.003399,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188844,-0.003399,0.004499,0.249960,0,0);}
.m58_c00488{transform:matrix(0.188919,-0.003401,0.004499,0.249960,0,0);-ms-transform:matrix(0.188919,-0.003401,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188919,-0.003401,0.004499,0.249960,0,0);}
.mab_c00488{transform:matrix(0.189116,-0.004917,0.006498,0.249916,0,0);-ms-transform:matrix(0.189116,-0.004917,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189116,-0.004917,0.006498,0.249916,0,0);}
.m3c_c00488{transform:matrix(0.189214,-0.003406,0.004499,0.249960,0,0);-ms-transform:matrix(0.189214,-0.003406,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189214,-0.003406,0.004499,0.249960,0,0);}
.mc5_c00488{transform:matrix(0.189251,-0.004921,0.006498,0.249916,0,0);-ms-transform:matrix(0.189251,-0.004921,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189251,-0.004921,0.006498,0.249916,0,0);}
.m22_c00488{transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);-ms-transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189494,-0.004169,0.005499,0.249940,0,0);}
.m4_c00488{transform:matrix(0.189664,-0.004173,0.005499,0.249940,0,0);-ms-transform:matrix(0.189664,-0.004173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189664,-0.004173,0.005499,0.249940,0,0);}
.m1a_c00488{transform:matrix(0.189829,-0.004176,0.005499,0.249940,0,0);-ms-transform:matrix(0.189829,-0.004176,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189829,-0.004176,0.005499,0.249940,0,0);}
.m81_c00488{transform:matrix(0.191130,-0.004969,0.006498,0.249916,0,0);-ms-transform:matrix(0.191130,-0.004969,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191130,-0.004969,0.006498,0.249916,0,0);}
.m9f_c00488{transform:matrix(0.191235,-0.004972,0.006498,0.249916,0,0);-ms-transform:matrix(0.191235,-0.004972,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191235,-0.004972,0.006498,0.249916,0,0);}
.md4_c00488{transform:matrix(0.191305,-0.004974,0.006498,0.249916,0,0);-ms-transform:matrix(0.191305,-0.004974,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191305,-0.004974,0.006498,0.249916,0,0);}
.m90_c00488{transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-ms-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);}
.m63_c00488{transform:matrix(0.191329,-0.003444,0.004499,0.249960,0,0);-ms-transform:matrix(0.191329,-0.003444,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191329,-0.003444,0.004499,0.249960,0,0);}
.mc8_c00488{transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-ms-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191690,-0.004984,0.006498,0.249916,0,0);}
.m9d_c00488{transform:matrix(0.191935,-0.004990,0.006498,0.249916,0,0);-ms-transform:matrix(0.191935,-0.004990,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191935,-0.004990,0.006498,0.249916,0,0);}
.md9_c00488{transform:matrix(0.191980,-0.004991,0.006498,0.249916,0,0);-ms-transform:matrix(0.191980,-0.004991,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191980,-0.004991,0.006498,0.249916,0,0);}
.m2_c00488{transform:matrix(0.192094,-0.004226,0.005499,0.249940,0,0);-ms-transform:matrix(0.192094,-0.004226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192094,-0.004226,0.005499,0.249940,0,0);}
.m71_c00488{transform:matrix(0.192099,-0.003458,0.004499,0.249960,0,0);-ms-transform:matrix(0.192099,-0.003458,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192099,-0.003458,0.004499,0.249960,0,0);}
.m18_c00488{transform:matrix(0.192119,-0.004227,0.005499,0.249940,0,0);-ms-transform:matrix(0.192119,-0.004227,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192119,-0.004227,0.005499,0.249940,0,0);}
.m8b_c00488{transform:matrix(0.192180,-0.004997,0.006498,0.249916,0,0);-ms-transform:matrix(0.192180,-0.004997,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192180,-0.004997,0.006498,0.249916,0,0);}
.m21_c00488{transform:matrix(0.192253,-0.004230,0.005499,0.249940,0,0);-ms-transform:matrix(0.192253,-0.004230,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192253,-0.004230,0.005499,0.249940,0,0);}
.m52_c00488{transform:matrix(0.192649,-0.003468,0.004499,0.249960,0,0);-ms-transform:matrix(0.192649,-0.003468,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192649,-0.003468,0.004499,0.249960,0,0);}
.m6_c00488{transform:matrix(0.193243,-0.004251,0.005499,0.249940,0,0);-ms-transform:matrix(0.193243,-0.004251,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193243,-0.004251,0.005499,0.249940,0,0);}
.mf7_c00488{transform:matrix(0.193262,-0.004059,0.005249,0.249945,0,0);-ms-transform:matrix(0.193262,-0.004059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193262,-0.004059,0.005249,0.249945,0,0);}
.m6e_c00488{transform:matrix(0.193379,-0.003481,0.004499,0.249960,0,0);-ms-transform:matrix(0.193379,-0.003481,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193379,-0.003481,0.004499,0.249960,0,0);}
.ma_c00488{transform:matrix(0.193988,-0.004268,0.005499,0.249940,0,0);-ms-transform:matrix(0.193988,-0.004268,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193988,-0.004268,0.005499,0.249940,0,0);}
.m29_c00488{transform:matrix(0.194204,-0.003496,0.004499,0.249960,0,0);-ms-transform:matrix(0.194204,-0.003496,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194204,-0.003496,0.004499,0.249960,0,0);}
.mca_c00488{transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);-ms-transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194294,-0.005052,0.006498,0.249916,0,0);}
.m5e_c00488{transform:matrix(0.194299,-0.003497,0.004499,0.249960,0,0);-ms-transform:matrix(0.194299,-0.003497,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194299,-0.003497,0.004499,0.249960,0,0);}
.m3d_c00488{transform:matrix(0.194558,-0.003502,0.004499,0.249960,0,0);-ms-transform:matrix(0.194558,-0.003502,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194558,-0.003502,0.004499,0.249960,0,0);}
.m51_c00488{transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);-ms-transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194628,-0.003503,0.004499,0.249960,0,0);}
.mba_c00488{transform:matrix(0.194704,-0.005062,0.006498,0.249916,0,0);-ms-transform:matrix(0.194704,-0.005062,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194704,-0.005062,0.006498,0.249916,0,0);}
.ma0_c00488{transform:matrix(0.194849,-0.005066,0.006498,0.249916,0,0);-ms-transform:matrix(0.194849,-0.005066,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194849,-0.005066,0.006498,0.249916,0,0);}
.mcf_c00488{transform:matrix(0.195149,-0.005074,0.006498,0.249916,0,0);-ms-transform:matrix(0.195149,-0.005074,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195149,-0.005074,0.006498,0.249916,0,0);}
.ma6_c00488{transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);-ms-transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195394,-0.005080,0.006498,0.249916,0,0);}
.m89_c00488{transform:matrix(0.195824,-0.005091,0.006498,0.249916,0,0);-ms-transform:matrix(0.195824,-0.005091,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195824,-0.005091,0.006498,0.249916,0,0);}
.maa_c00488{transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);-ms-transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);}
.m9a_c00488{transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);-ms-transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196574,-0.005111,0.006498,0.249916,0,0);}
.me4_c00488{transform:matrix(0.196699,-0.005114,0.006498,0.249916,0,0);-ms-transform:matrix(0.196699,-0.005114,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196699,-0.005114,0.006498,0.249916,0,0);}
.md8_c00488{transform:matrix(0.197373,-0.005132,0.006498,0.249916,0,0);-ms-transform:matrix(0.197373,-0.005132,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197373,-0.005132,0.006498,0.249916,0,0);}
.mc2_c00488{transform:matrix(0.197713,-0.005141,0.006498,0.249916,0,0);-ms-transform:matrix(0.197713,-0.005141,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197713,-0.005141,0.006498,0.249916,0,0);}
.m55_c00488{transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);-ms-transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198238,-0.003568,0.004499,0.249960,0,0);}
.m6d_c00488{transform:matrix(0.198738,-0.003577,0.004499,0.249960,0,0);-ms-transform:matrix(0.198738,-0.003577,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198738,-0.003577,0.004499,0.249960,0,0);}
.mb0_c00488{transform:matrix(0.199563,-0.005189,0.006498,0.249916,0,0);-ms-transform:matrix(0.199563,-0.005189,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199563,-0.005189,0.006498,0.249916,0,0);}
.meb_c00488{transform:matrix(0.199902,-0.005197,0.006498,0.249916,0,0);-ms-transform:matrix(0.199902,-0.005197,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199902,-0.005197,0.006498,0.249916,0,0);}
.mb9_c00488{transform:matrix(0.200262,-0.005207,0.006498,0.249916,0,0);-ms-transform:matrix(0.200262,-0.005207,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200262,-0.005207,0.006498,0.249916,0,0);}
.m38_c00488{transform:matrix(0.200408,-0.003607,0.004499,0.249960,0,0);-ms-transform:matrix(0.200408,-0.003607,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200408,-0.003607,0.004499,0.249960,0,0);}
.m31_c00488{transform:matrix(0.200832,-0.003615,0.004499,0.249960,0,0);-ms-transform:matrix(0.200832,-0.003615,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200832,-0.003615,0.004499,0.249960,0,0);}
.m5b_c00488{transform:matrix(0.200847,-0.003615,0.004499,0.249960,0,0);-ms-transform:matrix(0.200847,-0.003615,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200847,-0.003615,0.004499,0.249960,0,0);}
.m41_c00488{transform:matrix(0.200927,-0.003617,0.004499,0.249960,0,0);-ms-transform:matrix(0.200927,-0.003617,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200927,-0.003617,0.004499,0.249960,0,0);}
.m3_c00488{transform:matrix(0.201241,-0.004427,0.005499,0.249940,0,0);-ms-transform:matrix(0.201241,-0.004427,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201241,-0.004427,0.005499,0.249940,0,0);}
.m2f_c00488{transform:matrix(0.201367,-0.003625,0.004499,0.249960,0,0);-ms-transform:matrix(0.201367,-0.003625,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201367,-0.003625,0.004499,0.249960,0,0);}
.m23_c00488{transform:matrix(0.201676,-0.004437,0.005499,0.249940,0,0);-ms-transform:matrix(0.201676,-0.004437,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201676,-0.004437,0.005499,0.249940,0,0);}
.mb3_c00488{transform:matrix(0.201707,-0.005244,0.006498,0.249916,0,0);-ms-transform:matrix(0.201707,-0.005244,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201707,-0.005244,0.006498,0.249916,0,0);}
.m10_c00488{transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);-ms-transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202151,-0.004447,0.005499,0.249940,0,0);}
.m46_c00488{transform:matrix(0.202547,-0.003646,0.004499,0.249960,0,0);-ms-transform:matrix(0.202547,-0.003646,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202547,-0.003646,0.004499,0.249960,0,0);}
.mdf_c00488{transform:matrix(0.202642,-0.005269,0.006498,0.249916,0,0);-ms-transform:matrix(0.202642,-0.005269,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202642,-0.005269,0.006498,0.249916,0,0);}
.mfb_c00488{transform:matrix(0.202750,-0.004258,0.005249,0.249945,0,0);-ms-transform:matrix(0.202750,-0.004258,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202750,-0.004258,0.005249,0.249945,0,0);}
.m40_c00488{transform:matrix(0.203377,-0.003661,0.004499,0.249960,0,0);-ms-transform:matrix(0.203377,-0.003661,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203377,-0.003661,0.004499,0.249960,0,0);}
.mbf_c00488{transform:matrix(0.203511,-0.005291,0.006498,0.249916,0,0);-ms-transform:matrix(0.203511,-0.005291,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203511,-0.005291,0.006498,0.249916,0,0);}
.m49_c00488{transform:matrix(0.203977,-0.003672,0.004499,0.249960,0,0);-ms-transform:matrix(0.203977,-0.003672,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203977,-0.003672,0.004499,0.249960,0,0);}
.m11_c00488{transform:matrix(0.205760,-0.004527,0.005499,0.249940,0,0);-ms-transform:matrix(0.205760,-0.004527,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205760,-0.004527,0.005499,0.249940,0,0);}
.m88_c00488{transform:matrix(0.206095,-0.005358,0.006498,0.249916,0,0);-ms-transform:matrix(0.206095,-0.005358,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206095,-0.005358,0.006498,0.249916,0,0);}
.mdb_c00488{transform:matrix(0.206380,-0.005366,0.006498,0.249916,0,0);-ms-transform:matrix(0.206380,-0.005366,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206380,-0.005366,0.006498,0.249916,0,0);}
.m80_c00488{transform:matrix(0.206612,-0.003719,0.004499,0.249960,0,0);-ms-transform:matrix(0.206612,-0.003719,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206612,-0.003719,0.004499,0.249960,0,0);}
.m4b_c00488{transform:matrix(0.206667,-0.003720,0.004499,0.249960,0,0);-ms-transform:matrix(0.206667,-0.003720,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206667,-0.003720,0.004499,0.249960,0,0);}
.m9b_c00488{transform:matrix(0.206780,-0.005376,0.006498,0.249916,0,0);-ms-transform:matrix(0.206780,-0.005376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206780,-0.005376,0.006498,0.249916,0,0);}
.me6_c00488{transform:matrix(0.206835,-0.005378,0.006498,0.249916,0,0);-ms-transform:matrix(0.206835,-0.005378,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206835,-0.005378,0.006498,0.249916,0,0);}
.me1_c00488{transform:matrix(0.207045,-0.005383,0.006498,0.249916,0,0);-ms-transform:matrix(0.207045,-0.005383,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207045,-0.005383,0.006498,0.249916,0,0);}
.m3b_c00488{transform:matrix(0.207391,-0.003733,0.004499,0.249960,0,0);-ms-transform:matrix(0.207391,-0.003733,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207391,-0.003733,0.004499,0.249960,0,0);}
.mcc_c00488{transform:matrix(0.207725,-0.005401,0.006498,0.249916,0,0);-ms-transform:matrix(0.207725,-0.005401,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207725,-0.005401,0.006498,0.249916,0,0);}
.m3e_c00488{transform:matrix(0.208961,-0.003761,0.004499,0.249960,0,0);-ms-transform:matrix(0.208961,-0.003761,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208961,-0.003761,0.004499,0.249960,0,0);}
.m5f_c00488{transform:matrix(0.209581,-0.003772,0.004499,0.249960,0,0);-ms-transform:matrix(0.209581,-0.003772,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209581,-0.003772,0.004499,0.249960,0,0);}
.m4d_c00488{transform:matrix(0.209956,-0.003779,0.004499,0.249960,0,0);-ms-transform:matrix(0.209956,-0.003779,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209956,-0.003779,0.004499,0.249960,0,0);}
.m3f_c00488{transform:matrix(0.210326,-0.003786,0.004499,0.249960,0,0);-ms-transform:matrix(0.210326,-0.003786,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210326,-0.003786,0.004499,0.249960,0,0);}
.m2e_c00488{transform:matrix(0.210406,-0.003787,0.004499,0.249960,0,0);-ms-transform:matrix(0.210406,-0.003787,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210406,-0.003787,0.004499,0.249960,0,0);}
.ma3_c00488{transform:matrix(0.211244,-0.005492,0.006498,0.249916,0,0);-ms-transform:matrix(0.211244,-0.005492,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211244,-0.005492,0.006498,0.249916,0,0);}
.md_c00488{transform:matrix(0.211529,-0.004654,0.005499,0.249940,0,0);-ms-transform:matrix(0.211529,-0.004654,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211529,-0.004654,0.005499,0.249940,0,0);}
.m0_c00488{transform:matrix(0.211589,-0.004655,0.005499,0.249940,0,0);-ms-transform:matrix(0.211589,-0.004655,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211589,-0.004655,0.005499,0.249940,0,0);}
.ma5_c00488{transform:matrix(0.212148,-0.005516,0.006498,0.249916,0,0);-ms-transform:matrix(0.212148,-0.005516,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212148,-0.005516,0.006498,0.249916,0,0);}
.m1c_c00488{transform:matrix(0.212838,-0.004682,0.005499,0.249940,0,0);-ms-transform:matrix(0.212838,-0.004682,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212838,-0.004682,0.005499,0.249940,0,0);}
.m6a_c00488{transform:matrix(0.213120,-0.003836,0.004499,0.249960,0,0);-ms-transform:matrix(0.213120,-0.003836,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213120,-0.003836,0.004499,0.249960,0,0);}
.m8c_c00488{transform:matrix(0.213388,-0.005548,0.006498,0.249916,0,0);-ms-transform:matrix(0.213388,-0.005548,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213388,-0.005548,0.006498,0.249916,0,0);}
.ma8_c00488{transform:matrix(0.213673,-0.005555,0.006498,0.249916,0,0);-ms-transform:matrix(0.213673,-0.005555,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213673,-0.005555,0.006498,0.249916,0,0);}
.m15_c00488{transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);-ms-transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);}
.m48_c00488{transform:matrix(0.213895,-0.003850,0.004499,0.249960,0,0);-ms-transform:matrix(0.213895,-0.003850,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213895,-0.003850,0.004499,0.249960,0,0);}
.m34_c00488{transform:matrix(0.213985,-0.003852,0.004499,0.249960,0,0);-ms-transform:matrix(0.213985,-0.003852,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213985,-0.003852,0.004499,0.249960,0,0);}
.mb8_c00488{transform:matrix(0.214068,-0.005566,0.006498,0.249916,0,0);-ms-transform:matrix(0.214068,-0.005566,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214068,-0.005566,0.006498,0.249916,0,0);}
.me3_c00488{transform:matrix(0.214892,-0.005587,0.006498,0.249916,0,0);-ms-transform:matrix(0.214892,-0.005587,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214892,-0.005587,0.006498,0.249916,0,0);}
.m4e_c00488{transform:matrix(0.215090,-0.003872,0.004499,0.249960,0,0);-ms-transform:matrix(0.215090,-0.003872,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215090,-0.003872,0.004499,0.249960,0,0);}
.mda_c00488{transform:matrix(0.215212,-0.005596,0.006498,0.249916,0,0);-ms-transform:matrix(0.215212,-0.005596,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215212,-0.005596,0.006498,0.249916,0,0);}
.m6b_c00488{transform:matrix(0.215230,-0.003874,0.004499,0.249960,0,0);-ms-transform:matrix(0.215230,-0.003874,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215230,-0.003874,0.004499,0.249960,0,0);}
.m6c_c00488{transform:matrix(0.215600,-0.003881,0.004499,0.249960,0,0);-ms-transform:matrix(0.215600,-0.003881,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215600,-0.003881,0.004499,0.249960,0,0);}
.m3a_c00488{transform:matrix(0.215675,-0.003882,0.004499,0.249960,0,0);-ms-transform:matrix(0.215675,-0.003882,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215675,-0.003882,0.004499,0.249960,0,0);}
.m8d_c00488{transform:matrix(0.215922,-0.005614,0.006498,0.249916,0,0);-ms-transform:matrix(0.215922,-0.005614,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215922,-0.005614,0.006498,0.249916,0,0);}
.m76_c00488{transform:matrix(0.216015,-0.003888,0.004499,0.249960,0,0);-ms-transform:matrix(0.216015,-0.003888,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216015,-0.003888,0.004499,0.249960,0,0);}
.m5c_c00488{transform:matrix(0.216185,-0.003891,0.004499,0.249960,0,0);-ms-transform:matrix(0.216185,-0.003891,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216185,-0.003891,0.004499,0.249960,0,0);}
.m72_c00488{transform:matrix(0.216525,-0.003897,0.004499,0.249960,0,0);-ms-transform:matrix(0.216525,-0.003897,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216525,-0.003897,0.004499,0.249960,0,0);}
.m13_c00488{transform:matrix(0.216703,-0.004767,0.005499,0.249940,0,0);-ms-transform:matrix(0.216703,-0.004767,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216703,-0.004767,0.005499,0.249940,0,0);}
.m4a_c00488{transform:matrix(0.216845,-0.003903,0.004499,0.249960,0,0);-ms-transform:matrix(0.216845,-0.003903,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216845,-0.003903,0.004499,0.249960,0,0);}
.m92_c00488{transform:matrix(0.217586,-0.005657,0.006498,0.249916,0,0);-ms-transform:matrix(0.217586,-0.005657,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217586,-0.005657,0.006498,0.249916,0,0);}
.m43_c00488{transform:matrix(0.217640,-0.003918,0.004499,0.249960,0,0);-ms-transform:matrix(0.217640,-0.003918,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217640,-0.003918,0.004499,0.249960,0,0);}
.m25_c00488{transform:matrix(0.217680,-0.003918,0.004499,0.249960,0,0);-ms-transform:matrix(0.217680,-0.003918,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217680,-0.003918,0.004499,0.249960,0,0);}
.m5_c00488{transform:matrix(0.218572,-0.004809,0.005499,0.249940,0,0);-ms-transform:matrix(0.218572,-0.004809,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218572,-0.004809,0.005499,0.249940,0,0);}
.m74_c00488{transform:matrix(0.218950,-0.003941,0.004499,0.249960,0,0);-ms-transform:matrix(0.218950,-0.003941,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218950,-0.003941,0.004499,0.249960,0,0);}
.mf_c00488{transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);-ms-transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219302,-0.004825,0.005499,0.249940,0,0);}
.mcd_c00488{transform:matrix(0.219816,-0.005715,0.006498,0.249916,0,0);-ms-transform:matrix(0.219816,-0.005715,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219816,-0.005715,0.006498,0.249916,0,0);}
.m95_c00488{transform:matrix(0.219836,-0.005716,0.006498,0.249916,0,0);-ms-transform:matrix(0.219836,-0.005716,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219836,-0.005716,0.006498,0.249916,0,0);}
.mf0_c00488{transform:matrix(0.219921,-0.005718,0.006498,0.249916,0,0);-ms-transform:matrix(0.219921,-0.005718,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219921,-0.005718,0.006498,0.249916,0,0);}
.mbd_c00488{transform:matrix(0.220251,-0.005727,0.006498,0.249916,0,0);-ms-transform:matrix(0.220251,-0.005727,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220251,-0.005727,0.006498,0.249916,0,0);}
.m45_c00488{transform:matrix(0.220904,-0.003976,0.004499,0.249960,0,0);-ms-transform:matrix(0.220904,-0.003976,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220904,-0.003976,0.004499,0.249960,0,0);}
.mb4_c00488{transform:matrix(0.221090,-0.005748,0.006498,0.249916,0,0);-ms-transform:matrix(0.221090,-0.005748,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221090,-0.005748,0.006498,0.249916,0,0);}
.mbc_c00488{transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);-ms-transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);}
.m99_c00488{transform:matrix(0.223345,-0.005807,0.006498,0.249916,0,0);-ms-transform:matrix(0.223345,-0.005807,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223345,-0.005807,0.006498,0.249916,0,0);}
.mf9_c00488{transform:matrix(0.224046,-0.004705,0.005249,0.249945,0,0);-ms-transform:matrix(0.224046,-0.004705,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224046,-0.004705,0.005249,0.249945,0,0);}
.mbe_c00488{transform:matrix(0.224264,-0.005831,0.006498,0.249916,0,0);-ms-transform:matrix(0.224264,-0.005831,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224264,-0.005831,0.006498,0.249916,0,0);}
.mc_c00488{transform:matrix(0.224336,-0.004935,0.005499,0.249940,0,0);-ms-transform:matrix(0.224336,-0.004935,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224336,-0.004935,0.005499,0.249940,0,0);}
.m65_c00488{transform:matrix(0.225888,-0.004066,0.004499,0.249960,0,0);-ms-transform:matrix(0.225888,-0.004066,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225888,-0.004066,0.004499,0.249960,0,0);}
.m64_c00488{transform:matrix(0.226753,-0.004082,0.004499,0.249960,0,0);-ms-transform:matrix(0.226753,-0.004082,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226753,-0.004082,0.004499,0.249960,0,0);}
.m2c_c00488{transform:matrix(0.227208,-0.004090,0.004499,0.249960,0,0);-ms-transform:matrix(0.227208,-0.004090,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227208,-0.004090,0.004499,0.249960,0,0);}
.mf1_c00488{transform:matrix(0.227223,-0.005908,0.006498,0.249916,0,0);-ms-transform:matrix(0.227223,-0.005908,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227223,-0.005908,0.006498,0.249916,0,0);}
.maf_c00488{transform:matrix(0.227343,-0.005911,0.006498,0.249916,0,0);-ms-transform:matrix(0.227343,-0.005911,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227343,-0.005911,0.006498,0.249916,0,0);}
.m5d_c00488{transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);-ms-transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228073,-0.004105,0.004499,0.249960,0,0);}
.m62_c00488{transform:matrix(0.229938,-0.004139,0.004499,0.249960,0,0);-ms-transform:matrix(0.229938,-0.004139,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229938,-0.004139,0.004499,0.249960,0,0);}
.m1e_c00488{transform:matrix(0.230149,-0.005063,0.005499,0.249940,0,0);-ms-transform:matrix(0.230149,-0.005063,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230149,-0.005063,0.005499,0.249940,0,0);}
.mdd_c00488{transform:matrix(0.230657,-0.005997,0.006498,0.249916,0,0);-ms-transform:matrix(0.230657,-0.005997,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230657,-0.005997,0.006498,0.249916,0,0);}
.me7_c00488{transform:matrix(0.230747,-0.005999,0.006498,0.249916,0,0);-ms-transform:matrix(0.230747,-0.005999,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230747,-0.005999,0.006498,0.249916,0,0);}
.m73_c00488{transform:matrix(0.233237,-0.004198,0.004499,0.249960,0,0);-ms-transform:matrix(0.233237,-0.004198,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233237,-0.004198,0.004499,0.249960,0,0);}
.m8_c00488{transform:matrix(0.234168,-0.005152,0.005499,0.249940,0,0);-ms-transform:matrix(0.234168,-0.005152,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234168,-0.005152,0.005499,0.249940,0,0);}
.m44_c00488{transform:matrix(0.234447,-0.004220,0.004499,0.249960,0,0);-ms-transform:matrix(0.234447,-0.004220,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234447,-0.004220,0.004499,0.249960,0,0);}
.m1_c00488{transform:matrix(0.236278,-0.005198,0.005499,0.249940,0,0);-ms-transform:matrix(0.236278,-0.005198,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236278,-0.005198,0.005499,0.249940,0,0);}
.m42_c00488{transform:matrix(0.240391,-0.004327,0.004499,0.249960,0,0);-ms-transform:matrix(0.240391,-0.004327,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240391,-0.004327,0.004499,0.249960,0,0);}
.me9_c00488{transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);-ms-transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);-webkit-transform:matrix(0.241388,-0.006276,0.006498,0.249916,0,0);}
.med_c00488{transform:matrix(0.242708,-0.006310,0.006498,0.249916,0,0);-ms-transform:matrix(0.242708,-0.006310,0.006498,0.249916,0,0);-webkit-transform:matrix(0.242708,-0.006310,0.006498,0.249916,0,0);}
.me5_c00488{transform:matrix(0.244028,-0.006345,0.006498,0.249916,0,0);-ms-transform:matrix(0.244028,-0.006345,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244028,-0.006345,0.006498,0.249916,0,0);}
.mbb_c00488{transform:matrix(0.244587,-0.006359,0.006498,0.249916,0,0);-ms-transform:matrix(0.244587,-0.006359,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244587,-0.006359,0.006498,0.249916,0,0);}
.m7d_c00488{transform:matrix(0.244860,-0.004407,0.004499,0.249960,0,0);-ms-transform:matrix(0.244860,-0.004407,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244860,-0.004407,0.004499,0.249960,0,0);}
.m7e_c00488{transform:matrix(0.245870,-0.004426,0.004499,0.249960,0,0);-ms-transform:matrix(0.245870,-0.004426,0.004499,0.249960,0,0);-webkit-transform:matrix(0.245870,-0.004426,0.004499,0.249960,0,0);}
.mb5_c00488{transform:matrix(0.249261,-0.006481,0.006498,0.249916,0,0);-ms-transform:matrix(0.249261,-0.006481,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249261,-0.006481,0.006498,0.249916,0,0);}
.mf3_c00488{transform:matrix(0.250905,-0.006524,0.006498,0.249916,0,0);-ms-transform:matrix(0.250905,-0.006524,0.006498,0.249916,0,0);-webkit-transform:matrix(0.250905,-0.006524,0.006498,0.249916,0,0);}
.me_c00488{transform:matrix(0.252644,-0.005558,0.005499,0.249940,0,0);-ms-transform:matrix(0.252644,-0.005558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252644,-0.005558,0.005499,0.249940,0,0);}
.mde_c00488{transform:matrix(0.253864,-0.006600,0.006498,0.249916,0,0);-ms-transform:matrix(0.253864,-0.006600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.253864,-0.006600,0.006498,0.249916,0,0);}
.m7b_c00488{transform:matrix(0.255044,-0.004591,0.004499,0.249960,0,0);-ms-transform:matrix(0.255044,-0.004591,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255044,-0.004591,0.004499,0.249960,0,0);}
.m14_c00488{transform:matrix(0.256413,-0.005641,0.005499,0.249940,0,0);-ms-transform:matrix(0.256413,-0.005641,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256413,-0.005641,0.005499,0.249940,0,0);}
.m78_c00488{transform:matrix(0.256423,-0.004616,0.004499,0.249960,0,0);-ms-transform:matrix(0.256423,-0.004616,0.004499,0.249960,0,0);-webkit-transform:matrix(0.256423,-0.004616,0.004499,0.249960,0,0);}
.m39_c00488{transform:matrix(0.260293,-0.004685,0.004499,0.249960,0,0);-ms-transform:matrix(0.260293,-0.004685,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260293,-0.004685,0.004499,0.249960,0,0);}
.m7c_c00488{transform:matrix(0.260318,-0.004686,0.004499,0.249960,0,0);-ms-transform:matrix(0.260318,-0.004686,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260318,-0.004686,0.004499,0.249960,0,0);}
.mb_c00488{transform:matrix(0.261647,-0.005756,0.005499,0.249940,0,0);-ms-transform:matrix(0.261647,-0.005756,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261647,-0.005756,0.005499,0.249940,0,0);}
.m12_c00488{transform:matrix(0.264001,-0.005808,0.005499,0.249940,0,0);-ms-transform:matrix(0.264001,-0.005808,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264001,-0.005808,0.005499,0.249940,0,0);}
.m33_c00488{transform:matrix(0.264577,-0.004762,0.004499,0.249960,0,0);-ms-transform:matrix(0.264577,-0.004762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264577,-0.004762,0.004499,0.249960,0,0);}
.m9_c00488{transform:matrix(0.264671,-0.005823,0.005499,0.249940,0,0);-ms-transform:matrix(0.264671,-0.005823,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264671,-0.005823,0.005499,0.249940,0,0);}
.m87_c00488{transform:matrix(0.274997,-0.007150,0.006498,0.249916,0,0);-ms-transform:matrix(0.274997,-0.007150,0.006498,0.249916,0,0);-webkit-transform:matrix(0.274997,-0.007150,0.006498,0.249916,0,0);}
.m66_c00488{transform:matrix(0.276045,-0.004969,0.004499,0.249960,0,0);-ms-transform:matrix(0.276045,-0.004969,0.004499,0.249960,0,0);-webkit-transform:matrix(0.276045,-0.004969,0.004499,0.249960,0,0);}
.m60_c00488{transform:matrix(0.279450,-0.005030,0.004499,0.249960,0,0);-ms-transform:matrix(0.279450,-0.005030,0.004499,0.249960,0,0);-webkit-transform:matrix(0.279450,-0.005030,0.004499,0.249960,0,0);}
.mec_c00488{transform:matrix(0.281530,-0.007320,0.006498,0.249916,0,0);-ms-transform:matrix(0.281530,-0.007320,0.006498,0.249916,0,0);-webkit-transform:matrix(0.281530,-0.007320,0.006498,0.249916,0,0);}
.ma9_c00488{transform:matrix(0.283994,-0.007384,0.006498,0.249916,0,0);-ms-transform:matrix(0.283994,-0.007384,0.006498,0.249916,0,0);-webkit-transform:matrix(0.283994,-0.007384,0.006498,0.249916,0,0);}
.m68_c00488{transform:matrix(0.295242,-0.005314,0.004499,0.249960,0,0);-ms-transform:matrix(0.295242,-0.005314,0.004499,0.249960,0,0);-webkit-transform:matrix(0.295242,-0.005314,0.004499,0.249960,0,0);}
.mf8_c00488{transform:matrix(0.298089,-0.006260,0.005249,0.249945,0,0);-ms-transform:matrix(0.298089,-0.006260,0.005249,0.249945,0,0);-webkit-transform:matrix(0.298089,-0.006260,0.005249,0.249945,0,0);}
.m47_c00488{transform:matrix(0.304086,-0.005474,0.004499,0.249960,0,0);-ms-transform:matrix(0.304086,-0.005474,0.004499,0.249960,0,0);-webkit-transform:matrix(0.304086,-0.005474,0.004499,0.249960,0,0);}
.mea_c00488{transform:matrix(0.305112,-0.007933,0.006498,0.249916,0,0);-ms-transform:matrix(0.305112,-0.007933,0.006498,0.249916,0,0);-webkit-transform:matrix(0.305112,-0.007933,0.006498,0.249916,0,0);}
.m7f_c00488{transform:matrix(0.309725,-0.005575,0.004499,0.249960,0,0);-ms-transform:matrix(0.309725,-0.005575,0.004499,0.249960,0,0);-webkit-transform:matrix(0.309725,-0.005575,0.004499,0.249960,0,0);}
.m69_c00488{transform:matrix(0.327802,-0.005900,0.004499,0.249960,0,0);-ms-transform:matrix(0.327802,-0.005900,0.004499,0.249960,0,0);-webkit-transform:matrix(0.327802,-0.005900,0.004499,0.249960,0,0);}
.mc3_c00488{transform:matrix(0.335222,-0.008716,0.006498,0.249916,0,0);-ms-transform:matrix(0.335222,-0.008716,0.006498,0.249916,0,0);-webkit-transform:matrix(0.335222,-0.008716,0.006498,0.249916,0,0);}
.m79_c00488{transform:matrix(0.335536,-0.006040,0.004499,0.249960,0,0);-ms-transform:matrix(0.335536,-0.006040,0.004499,0.249960,0,0);-webkit-transform:matrix(0.335536,-0.006040,0.004499,0.249960,0,0);}
.m7a_c00488{transform:matrix(0.336900,-0.006064,0.004499,0.249960,0,0);-ms-transform:matrix(0.336900,-0.006064,0.004499,0.249960,0,0);-webkit-transform:matrix(0.336900,-0.006064,0.004499,0.249960,0,0);}
.m32_c00488{transform:matrix(0.412973,-0.007434,0.004499,0.249960,0,0);-ms-transform:matrix(0.412973,-0.007434,0.004499,0.249960,0,0);-webkit-transform:matrix(0.412973,-0.007434,0.004499,0.249960,0,0);}
.m7_c00488{transform:matrix(0.466587,-0.010265,0.005499,0.249940,0,0);-ms-transform:matrix(0.466587,-0.010265,0.005499,0.249940,0,0);-webkit-transform:matrix(0.466587,-0.010265,0.005499,0.249940,0,0);}
.m86_c00488{transform:matrix(0.564784,-0.014684,0.006498,0.249916,0,0);-ms-transform:matrix(0.564784,-0.014684,0.006498,0.249916,0,0);-webkit-transform:matrix(0.564784,-0.014684,0.006498,0.249916,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:0.000000px;}
.fc0_c00488{color:transparent;}
.fs16_c00488{font-size:53.568097px;}
.fs12_c00488{font-size:55.668807px;}
.fsc_c00488{font-size:57.759355px;}
.fs15_c00488{font-size:58.819871px;}
.fs8_c00488{font-size:59.859695px;}
.fs1_c00488{font-size:59.864482px;}
.fs7_c00488{font-size:60.909865px;}
.fs17_c00488{font-size:60.920581px;}
.fs11_c00488{font-size:61.970936px;}
.fsb_c00488{font-size:63.010205px;}
.fse_c00488{font-size:63.021290px;}
.fs0_c00488{font-size:64.065498px;}
.fsf_c00488{font-size:64.071645px;}
.fs6_c00488{font-size:65.110545px;}
.fs14_c00488{font-size:65.122000px;}
.fs5_c00488{font-size:66.160715px;}
.fs3_c00488{font-size:66.166006px;}
.fsd_c00488{font-size:67.222710px;}
.fs9_c00488{font-size:68.261056px;}
.fs2_c00488{font-size:68.266515px;}
.fs10_c00488{font-size:69.323419px;}
.fs18_c00488{font-size:70.365510px;}
.fs4_c00488{font-size:71.411566px;}
.fs13_c00488{font-size:71.424129px;}
.fsa_c00488{font-size:72.461736px;}
.y0_c00488{bottom:0.000000px;}
.yf6_c00488{bottom:28.624500px;}
.yf7_c00488{bottom:29.225142px;}
.yf8_c00488{bottom:29.492167px;}
.yf9_c00488{bottom:29.963029px;}
.yfa_c00488{bottom:31.109913px;}
.yfb_c00488{bottom:32.550376px;}
.yfc_c00488{bottom:33.133788px;}
.yfd_c00488{bottom:33.893411px;}
.yfe_c00488{bottom:34.159838px;}
.yef_c00488{bottom:46.089030px;}
.yf0_c00488{bottom:46.494603px;}
.yf1_c00488{bottom:47.038230px;}
.yf2_c00488{bottom:47.399385px;}
.yf3_c00488{bottom:48.158604px;}
.yf4_c00488{bottom:50.195622px;}
.yf5_c00488{bottom:51.165948px;}
.ye6_c00488{bottom:61.492530px;}
.ye7_c00488{bottom:62.260926px;}
.ye8_c00488{bottom:62.784252px;}
.ye9_c00488{bottom:64.369965px;}
.yea_c00488{bottom:64.890561px;}
.yeb_c00488{bottom:66.129405px;}
.yec_c00488{bottom:66.730002px;}
.yed_c00488{bottom:67.475547px;}
.yee_c00488{bottom:69.119247px;}
.yde_c00488{bottom:79.318671px;}
.ydf_c00488{bottom:79.626057px;}
.ye0_c00488{bottom:83.428710px;}
.ye1_c00488{bottom:84.070116px;}
.ye2_c00488{bottom:84.493749px;}
.ye3_c00488{bottom:85.215330px;}
.ye4_c00488{bottom:85.763925px;}
.ye5_c00488{bottom:87.334722px;}
.yd8_c00488{bottom:98.489784px;}
.yd9_c00488{bottom:99.417834px;}
.yda_c00488{bottom:99.920052px;}
.ydb_c00488{bottom:101.238744px;}
.ydc_c00488{bottom:101.942184px;}
.ydd_c00488{bottom:103.318848px;}
.yce_c00488{bottom:112.815021px;}
.ycf_c00488{bottom:113.840010px;}
.yd0_c00488{bottom:115.085820px;}
.yd1_c00488{bottom:115.316916px;}
.yd2_c00488{bottom:117.400233px;}
.yd3_c00488{bottom:117.790404px;}
.yd4_c00488{bottom:118.396776px;}
.yd5_c00488{bottom:119.283474px;}
.yd6_c00488{bottom:120.104838px;}
.yd7_c00488{bottom:120.469449px;}
.yc5_c00488{bottom:132.522768px;}
.yc6_c00488{bottom:132.955158px;}
.yc7_c00488{bottom:133.704057px;}
.yc8_c00488{bottom:134.890086px;}
.yc9_c00488{bottom:135.070911px;}
.yca_c00488{bottom:135.435801px;}
.ycb_c00488{bottom:136.703787px;}
.ycc_c00488{bottom:136.926381px;}
.ycd_c00488{bottom:137.285751px;}
.ybb_c00488{bottom:147.111312px;}
.ybc_c00488{bottom:147.559071px;}
.ybd_c00488{bottom:148.565811px;}
.ybe_c00488{bottom:149.435157px;}
.ybf_c00488{bottom:149.894832px;}
.yc0_c00488{bottom:150.832554px;}
.yc1_c00488{bottom:152.086392px;}
.yc2_c00488{bottom:152.357088px;}
.yc3_c00488{bottom:152.808084px;}
.yc4_c00488{bottom:153.751851px;}
.yb4_c00488{bottom:165.747636px;}
.yb5_c00488{bottom:166.959489px;}
.yb6_c00488{bottom:168.294507px;}
.yb7_c00488{bottom:168.585597px;}
.yb8_c00488{bottom:169.002993px;}
.yb9_c00488{bottom:169.503141px;}
.yba_c00488{bottom:170.841084px;}
.yae_c00488{bottom:182.225499px;}
.yaf_c00488{bottom:183.482340px;}
.yb0_c00488{bottom:184.610490px;}
.yb1_c00488{bottom:186.918234px;}
.yb2_c00488{bottom:188.425554px;}
.yb3_c00488{bottom:188.926785px;}
.ya5_c00488{bottom:200.317404px;}
.ya6_c00488{bottom:201.030606px;}
.ya7_c00488{bottom:201.343521px;}
.ya8_c00488{bottom:202.471290px;}
.ya9_c00488{bottom:202.851681px;}
.yaa_c00488{bottom:204.170424px;}
.yab_c00488{bottom:204.484275px;}
.yac_c00488{bottom:204.848298px;}
.yad_c00488{bottom:205.710378px;}
.y9f_c00488{bottom:216.524787px;}
.ya0_c00488{bottom:217.227465px;}
.ya1_c00488{bottom:219.318141px;}
.ya2_c00488{bottom:220.921425px;}
.ya3_c00488{bottom:221.264709px;}
.ya4_c00488{bottom:221.838981px;}
.y98_c00488{bottom:235.157100px;}
.y99_c00488{bottom:235.737567px;}
.y9a_c00488{bottom:236.734815px;}
.y9b_c00488{bottom:236.994816px;}
.y9c_c00488{bottom:238.455732px;}
.y9d_c00488{bottom:239.018073px;}
.y9e_c00488{bottom:239.302932px;}
.y91_c00488{bottom:250.825056px;}
.y92_c00488{bottom:251.430504px;}
.y93_c00488{bottom:251.775639px;}
.y94_c00488{bottom:253.373739px;}
.y95_c00488{bottom:254.302575px;}
.y96_c00488{bottom:255.708429px;}
.y97_c00488{bottom:256.009212px;}
.y88_c00488{bottom:266.492982px;}
.y89_c00488{bottom:268.283043px;}
.y8a_c00488{bottom:268.665906px;}
.y8b_c00488{bottom:268.954545px;}
.y8c_c00488{bottom:269.483970px;}
.y8d_c00488{bottom:270.446490px;}
.y8e_c00488{bottom:271.957467px;}
.y8f_c00488{bottom:272.658141px;}
.y90_c00488{bottom:273.486228px;}
.y82_c00488{bottom:284.047500px;}
.y83_c00488{bottom:284.959437px;}
.y84_c00488{bottom:286.169022px;}
.y85_c00488{bottom:286.780269px;}
.y86_c00488{bottom:287.960331px;}
.y87_c00488{bottom:290.315346px;}
.y79_c00488{bottom:301.027512px;}
.y7a_c00488{bottom:302.037618px;}
.y7b_c00488{bottom:302.365539px;}
.y7c_c00488{bottom:302.921616px;}
.y7d_c00488{bottom:303.392820px;}
.y7e_c00488{bottom:304.527306px;}
.y7f_c00488{bottom:304.946460px;}
.y80_c00488{bottom:306.533868px;}
.y81_c00488{bottom:306.798708px;}
.y71_c00488{bottom:319.658385px;}
.y72_c00488{bottom:319.971561px;}
.y73_c00488{bottom:321.023091px;}
.y74_c00488{bottom:321.413667px;}
.y75_c00488{bottom:322.660161px;}
.y76_c00488{bottom:323.189160px;}
.y77_c00488{bottom:323.626164px;}
.y78_c00488{bottom:325.050894px;}
.y69_c00488{bottom:335.863392px;}
.y6a_c00488{bottom:337.231932px;}
.y6b_c00488{bottom:337.554447px;}
.y6c_c00488{bottom:338.306004px;}
.y6d_c00488{bottom:339.284607px;}
.y6e_c00488{bottom:339.778479px;}
.y6f_c00488{bottom:341.391282px;}
.y70_c00488{bottom:342.543282px;}
.y63_c00488{bottom:353.143167px;}
.y64_c00488{bottom:354.558555px;}
.y65_c00488{bottom:355.077792px;}
.y66_c00488{bottom:356.200983px;}
.y67_c00488{bottom:357.611199px;}
.y68_c00488{bottom:358.687692px;}
.y5b_c00488{bottom:369.078309px;}
.y5c_c00488{bottom:369.738408px;}
.y5d_c00488{bottom:370.349166px;}
.y5e_c00488{bottom:372.215967px;}
.y5f_c00488{bottom:373.278021px;}
.y60_c00488{bottom:373.739526px;}
.y61_c00488{bottom:375.545724px;}
.y62_c00488{bottom:375.881553px;}
.y54_c00488{bottom:385.821087px;}
.y55_c00488{bottom:386.728365px;}
.y56_c00488{bottom:388.672500px;}
.y57_c00488{bottom:389.364615px;}
.y58_c00488{bottom:390.199056px;}
.y59_c00488{bottom:390.713400px;}
.y5a_c00488{bottom:392.207805px;}
.y4d_c00488{bottom:402.564852px;}
.y4e_c00488{bottom:403.401342px;}
.y4f_c00488{bottom:404.548119px;}
.y50_c00488{bottom:405.194940px;}
.y51_c00488{bottom:405.985482px;}
.y52_c00488{bottom:407.521629px;}
.y53_c00488{bottom:408.183087px;}
.y46_c00488{bottom:421.191555px;}
.y47_c00488{bottom:421.531212px;}
.y48_c00488{bottom:422.325285px;}
.y49_c00488{bottom:422.538309px;}
.y4a_c00488{bottom:423.668112px;}
.y4b_c00488{bottom:424.028379px;}
.y4c_c00488{bottom:424.422480px;}
.y3f_c00488{bottom:437.126706px;}
.y40_c00488{bottom:437.461527px;}
.y41_c00488{bottom:437.988927px;}
.y42_c00488{bottom:438.696015px;}
.y43_c00488{bottom:439.705296px;}
.y44_c00488{bottom:440.040765px;}
.y45_c00488{bottom:441.243720px;}
.y36_c00488{bottom:454.946883px;}
.y37_c00488{bottom:455.489475px;}
.y38_c00488{bottom:455.875350px;}
.y39_c00488{bottom:456.150951px;}
.y3a_c00488{bottom:457.085463px;}
.y3b_c00488{bottom:457.276869px;}
.y3c_c00488{bottom:457.504299px;}
.y3d_c00488{bottom:458.063979px;}
.y3e_c00488{bottom:458.796396px;}
.y2e_c00488{bottom:471.420705px;}
.y2f_c00488{bottom:472.469682px;}
.y30_c00488{bottom:472.830483px;}
.y31_c00488{bottom:473.749401px;}
.y32_c00488{bottom:474.327741px;}
.y33_c00488{bottom:474.595338px;}
.y34_c00488{bottom:475.859073px;}
.y35_c00488{bottom:476.165199px;}
.y26_c00488{bottom:488.164500px;}
.y27_c00488{bottom:489.495492px;}
.y28_c00488{bottom:489.778020px;}
.y29_c00488{bottom:490.458744px;}
.y2a_c00488{bottom:491.342238px;}
.y2b_c00488{bottom:491.833800px;}
.y2c_c00488{bottom:492.416460px;}
.y2d_c00488{bottom:492.986646px;}
.y1c_c00488{bottom:505.701162px;}
.y1d_c00488{bottom:506.207280px;}
.y1e_c00488{bottom:506.616471px;}
.y1f_c00488{bottom:507.362982px;}
.y20_c00488{bottom:507.659784px;}
.y21_c00488{bottom:508.021593px;}
.y22_c00488{bottom:508.484223px;}
.y23_c00488{bottom:509.456124px;}
.y24_c00488{bottom:509.821185px;}
.y25_c00488{bottom:510.952545px;}
.y14_c00488{bottom:521.367729px;}
.y15_c00488{bottom:522.953475px;}
.y16_c00488{bottom:523.318158px;}
.y17_c00488{bottom:524.534469px;}
.y18_c00488{bottom:524.803044px;}
.y19_c00488{bottom:526.014075px;}
.y1a_c00488{bottom:526.460595px;}
.y1b_c00488{bottom:526.927920px;}
.yb_c00488{bottom:540.535674px;}
.yc_c00488{bottom:541.318167px;}
.yd_c00488{bottom:541.873182px;}
.ye_c00488{bottom:542.039418px;}
.yf_c00488{bottom:542.626035px;}
.y10_c00488{bottom:542.906448px;}
.y11_c00488{bottom:543.282117px;}
.y12_c00488{bottom:543.478587px;}
.y13_c00488{bottom:544.128063px;}
.y3_c00488{bottom:555.392232px;}
.y4_c00488{bottom:556.432788px;}
.y5_c00488{bottom:557.656395px;}
.y6_c00488{bottom:558.458361px;}
.y7_c00488{bottom:558.987417px;}
.y8_c00488{bottom:559.677216px;}
.y9_c00488{bottom:560.996094px;}
.ya_c00488{bottom:561.625569px;}
.y1_c00488{bottom:571.938000px;}
.y2_c00488{bottom:574.545099px;}
.h18_c00488{height:53.568097px;}
.h14_c00488{height:55.668807px;}
.he_c00488{height:57.759355px;}
.h17_c00488{height:58.819871px;}
.ha_c00488{height:59.859695px;}
.h3_c00488{height:59.864482px;}
.h9_c00488{height:60.909865px;}
.h19_c00488{height:60.920581px;}
.h13_c00488{height:61.970936px;}
.hd_c00488{height:63.010205px;}
.h10_c00488{height:63.021290px;}
.h2_c00488{height:64.065498px;}
.h11_c00488{height:64.071645px;}
.h8_c00488{height:65.110545px;}
.h16_c00488{height:65.122000px;}
.h7_c00488{height:66.160715px;}
.h5_c00488{height:66.166006px;}
.hf_c00488{height:67.222710px;}
.hb_c00488{height:68.261056px;}
.h4_c00488{height:68.266515px;}
.h12_c00488{height:69.323419px;}
.h1a_c00488{height:70.365510px;}
.h6_c00488{height:71.411566px;}
.h15_c00488{height:71.424129px;}
.hc_c00488{height:72.461736px;}
.h0_c00488{height:617.700000px;}
.h1_c00488{height:618.000000px;}
.w0_c00488{width:359.100000px;}
.w1_c00488{width:359.250000px;}
.x0_c00488{left:0.000000px;}
.x21_c00488{left:9.688500px;}
.x3_c00488{left:15.337719px;}
.x33_c00488{left:16.426065px;}
.x73_c00488{left:17.456556px;}
.x58_c00488{left:18.712977px;}
.x81_c00488{left:23.739000px;}
.x78_c00488{left:27.961983px;}
.x4e_c00488{left:31.836666px;}
.x34_c00488{left:36.110916px;}
.x7f_c00488{left:39.351513px;}
.x3a_c00488{left:40.381452px;}
.x19_c00488{left:43.366824px;}
.x2e_c00488{left:51.427479px;}
.x60_c00488{left:52.557441px;}
.x3d_c00488{left:53.747013px;}
.x5f_c00488{left:59.417367px;}
.x4_c00488{left:62.635719px;}
.x82_c00488{left:65.056500px;}
.x1a_c00488{left:66.059304px;}
.x35_c00488{left:67.161483px;}
.x45_c00488{left:68.614575px;}
.x6b_c00488{left:69.687231px;}
.x66_c00488{left:70.692333px;}
.x4b_c00488{left:72.448734px;}
.x29_c00488{left:74.140791px;}
.xb_c00488{left:75.969030px;}
.x2f_c00488{left:77.116356px;}
.x52_c00488{left:79.139793px;}
.x6e_c00488{left:80.485242px;}
.x22_c00488{left:83.632500px;}
.x12_c00488{left:84.891174px;}
.x4f_c00488{left:87.170667px;}
.x76_c00488{left:88.533114px;}
.x49_c00488{left:90.066162px;}
.x2a_c00488{left:94.185291px;}
.x30_c00488{left:95.511855px;}
.x3b_c00488{left:97.084029px;}
.x74_c00488{left:98.153565px;}
.x23_c00488{left:99.328500px;}
.x13_c00488{left:100.717311px;}
.x59_c00488{left:102.286977px;}
.x3e_c00488{left:105.869760px;}
.x1b_c00488{left:107.563467px;}
.x36_c00488{left:108.778239px;}
.x3c_c00488{left:112.253109px;}
.x5a_c00488{left:113.388477px;}
.x61_c00488{left:114.871626px;}
.x4c_c00488{left:117.197901px;}
.x5_c00488{left:118.254219px;}
.x56_c00488{left:121.054500px;}
.x1c_c00488{left:124.055919px;}
.x80_c00488{left:126.905925px;}
.x53_c00488{left:128.041647px;}
.x67_c00488{left:130.059636px;}
.xc_c00488{left:131.400486px;}
.x5b_c00488{left:133.750977px;}
.x3f_c00488{left:135.302154px;}
.x24_c00488{left:137.146500px;}
.x6f_c00488{left:138.298266px;}
.x83_c00488{left:142.092000px;}
.x1_c00488{left:143.730000px;}
.x2b_c00488{left:145.236291px;}
.x46_c00488{left:146.400678px;}
.x72_c00488{left:148.724169px;}
.x68_c00488{left:150.116802px;}
.x14_c00488{left:153.616656px;}
.x6_c00488{left:154.707219px;}
.x64_c00488{left:156.653379px;}
.x31_c00488{left:157.849230px;}
.x79_c00488{left:159.092265px;}
.x42_c00488{left:163.383603px;}
.x15_c00488{left:165.278892px;}
.x57_c00488{left:166.441500px;}
.x37_c00488{left:168.183819px;}
.x1d_c00488{left:169.784412px;}
.x40_c00488{left:171.218562px;}
.x50_c00488{left:173.284101px;}
.xd_c00488{left:176.482896px;}
.x7d_c00488{left:177.561720px;}
.x7_c00488{left:178.755219px;}
.x54_c00488{left:182.065731px;}
.x25_c00488{left:186.229500px;}
.x38_c00488{left:187.904670px;}
.x77_c00488{left:189.630870px;}
.x47_c00488{left:190.648899px;}
.x2c_c00488{left:192.232791px;}
.x7a_c00488{left:195.840918px;}
.xe_c00488{left:198.028653px;}
.x51_c00488{left:201.089088px;}
.x8_c00488{left:210.109719px;}
.x26_c00488{left:213.538500px;}
.x16_c00488{left:217.938237px;}
.x43_c00488{left:219.560028px;}
.x7b_c00488{left:220.707468px;}
.x62_c00488{left:222.454089px;}
.x1e_c00488{left:223.784664px;}
.xf_c00488{left:226.973895px;}
.x5c_c00488{left:228.885477px;}
.x70_c00488{left:233.615715px;}
.x69_c00488{left:236.001402px;}
.x17_c00488{left:237.347808px;}
.x84_c00488{left:238.467000px;}
.x7c_c00488{left:239.613486px;}
.x41_c00488{left:241.055040px;}
.x10_c00488{left:242.111898px;}
.x1f_c00488{left:244.061946px;}
.x27_c00488{left:245.908500px;}
.x6d_c00488{left:248.780667px;}
.x4a_c00488{left:250.821300px;}
.x75_c00488{left:252.630519px;}
.x65_c00488{left:254.036589px;}
.x5d_c00488{left:255.834477px;}
.x18_c00488{left:257.634846px;}
.x39_c00488{left:258.653439px;}
.x2_c00488{left:262.234500px;}
.x71_c00488{left:265.010172px;}
.x9_c00488{left:270.058719px;}
.x32_c00488{left:271.823859px;}
.x63_c00488{left:275.417856px;}
.x28_c00488{left:277.585500px;}
.x2d_c00488{left:279.447291px;}
.x7e_c00488{left:280.720725px;}
.x44_c00488{left:281.825805px;}
.x48_c00488{left:285.122193px;}
.x5e_c00488{left:287.683977px;}
.x55_c00488{left:290.248899px;}
.x11_c00488{left:292.029765px;}
.x4d_c00488{left:293.749839px;}
.x6c_c00488{left:296.581548px;}
.xa_c00488{left:298.671219px;}
.x6a_c00488{left:300.478602px;}
.x20_c00488{left:306.947490px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs16_c00488{font-size:47.616086pt;}
.fs12_c00488{font-size:49.483384pt;}
.fsc_c00488{font-size:51.341649pt;}
.fs15_c00488{font-size:52.284330pt;}
.fs8_c00488{font-size:53.208618pt;}
.fs1_c00488{font-size:53.212873pt;}
.fs7_c00488{font-size:54.142102pt;}
.fs17_c00488{font-size:54.151627pt;}
.fs11_c00488{font-size:55.085276pt;}
.fsb_c00488{font-size:56.009071pt;}
.fse_c00488{font-size:56.018925pt;}
.fs0_c00488{font-size:56.947110pt;}
.fsf_c00488{font-size:56.952574pt;}
.fs6_c00488{font-size:57.876040pt;}
.fs14_c00488{font-size:57.886222pt;}
.fs5_c00488{font-size:58.809525pt;}
.fs3_c00488{font-size:58.814228pt;}
.fsd_c00488{font-size:59.753520pt;}
.fs9_c00488{font-size:60.676494pt;}
.fs2_c00488{font-size:60.681346pt;}
.fs10_c00488{font-size:61.620817pt;}
.fs18_c00488{font-size:62.547120pt;}
.fs4_c00488{font-size:63.476947pt;}
.fs13_c00488{font-size:63.488115pt;}
.fsa_c00488{font-size:64.410432pt;}
.y0_c00488{bottom:0.000000pt;}
.yf6_c00488{bottom:25.444000pt;}
.yf7_c00488{bottom:25.977904pt;}
.yf8_c00488{bottom:26.215260pt;}
.yf9_c00488{bottom:26.633804pt;}
.yfa_c00488{bottom:27.653256pt;}
.yfb_c00488{bottom:28.933668pt;}
.yfc_c00488{bottom:29.452256pt;}
.yfd_c00488{bottom:30.127476pt;}
.yfe_c00488{bottom:30.364300pt;}
.yef_c00488{bottom:40.968027pt;}
.yf0_c00488{bottom:41.328536pt;}
.yf1_c00488{bottom:41.811760pt;}
.yf2_c00488{bottom:42.132787pt;}
.yf3_c00488{bottom:42.807648pt;}
.yf4_c00488{bottom:44.618331pt;}
.yf5_c00488{bottom:45.480843pt;}
.ye6_c00488{bottom:54.660027pt;}
.ye7_c00488{bottom:55.343045pt;}
.ye8_c00488{bottom:55.808224pt;}
.ye9_c00488{bottom:57.217747pt;}
.yea_c00488{bottom:57.680499pt;}
.yeb_c00488{bottom:58.781693pt;}
.yec_c00488{bottom:59.315557pt;}
.yed_c00488{bottom:59.978264pt;}
.yee_c00488{bottom:61.439331pt;}
.yde_c00488{bottom:70.505485pt;}
.ydf_c00488{bottom:70.778717pt;}
.ye0_c00488{bottom:74.158853pt;}
.ye1_c00488{bottom:74.728992pt;}
.ye2_c00488{bottom:75.105555pt;}
.ye3_c00488{bottom:75.746960pt;}
.ye4_c00488{bottom:76.234600pt;}
.ye5_c00488{bottom:77.630864pt;}
.yd8_c00488{bottom:87.546475pt;}
.yd9_c00488{bottom:88.371408pt;}
.yda_c00488{bottom:88.817824pt;}
.ydb_c00488{bottom:89.989995pt;}
.ydc_c00488{bottom:90.615275pt;}
.ydd_c00488{bottom:91.838976pt;}
.yce_c00488{bottom:100.280019pt;}
.ycf_c00488{bottom:101.191120pt;}
.yd0_c00488{bottom:102.298507pt;}
.yd1_c00488{bottom:102.503925pt;}
.yd2_c00488{bottom:104.355763pt;}
.yd3_c00488{bottom:104.702581pt;}
.yd4_c00488{bottom:105.241579pt;}
.yd5_c00488{bottom:106.029755pt;}
.yd6_c00488{bottom:106.759856pt;}
.yd7_c00488{bottom:107.083955pt;}
.yc5_c00488{bottom:117.798016pt;}
.yc6_c00488{bottom:118.182363pt;}
.yc7_c00488{bottom:118.848051pt;}
.yc8_c00488{bottom:119.902299pt;}
.yc9_c00488{bottom:120.063032pt;}
.yca_c00488{bottom:120.387379pt;}
.ycb_c00488{bottom:121.514477pt;}
.ycc_c00488{bottom:121.712339pt;}
.ycd_c00488{bottom:122.031779pt;}
.ybb_c00488{bottom:130.765611pt;}
.ybc_c00488{bottom:131.163619pt;}
.ybd_c00488{bottom:132.058499pt;}
.ybe_c00488{bottom:132.831251pt;}
.ybf_c00488{bottom:133.239851pt;}
.yc0_c00488{bottom:134.073381pt;}
.yc1_c00488{bottom:135.187904pt;}
.yc2_c00488{bottom:135.428523pt;}
.yc3_c00488{bottom:135.829408pt;}
.yc4_c00488{bottom:136.668312pt;}
.yb4_c00488{bottom:147.331232pt;}
.yb5_c00488{bottom:148.408435pt;}
.yb6_c00488{bottom:149.595117pt;}
.yb7_c00488{bottom:149.853864pt;}
.yb8_c00488{bottom:150.224883pt;}
.yb9_c00488{bottom:150.669459pt;}
.yba_c00488{bottom:151.858741pt;}
.yae_c00488{bottom:161.978221pt;}
.yaf_c00488{bottom:163.095413pt;}
.yb0_c00488{bottom:164.098213pt;}
.yb1_c00488{bottom:166.149541pt;}
.yb2_c00488{bottom:167.489381pt;}
.yb3_c00488{bottom:167.934920pt;}
.ya5_c00488{bottom:178.059915pt;}
.ya6_c00488{bottom:178.693872pt;}
.ya7_c00488{bottom:178.972019pt;}
.ya8_c00488{bottom:179.974480pt;}
.ya9_c00488{bottom:180.312605pt;}
.yaa_c00488{bottom:181.484821pt;}
.yab_c00488{bottom:181.763800pt;}
.yac_c00488{bottom:182.087376pt;}
.yad_c00488{bottom:182.853669pt;}
.y9f_c00488{bottom:192.466477pt;}
.ya0_c00488{bottom:193.091080pt;}
.ya1_c00488{bottom:194.949459pt;}
.ya2_c00488{bottom:196.374600pt;}
.ya3_c00488{bottom:196.679741pt;}
.ya4_c00488{bottom:197.190205pt;}
.y98_c00488{bottom:209.028533pt;}
.y99_c00488{bottom:209.544504pt;}
.y9a_c00488{bottom:210.430947pt;}
.y9b_c00488{bottom:210.662059pt;}
.y9c_c00488{bottom:211.960651pt;}
.y9d_c00488{bottom:212.460509pt;}
.y9e_c00488{bottom:212.713717pt;}
.y91_c00488{bottom:222.955605pt;}
.y92_c00488{bottom:223.493781pt;}
.y93_c00488{bottom:223.800568pt;}
.y94_c00488{bottom:225.221101pt;}
.y95_c00488{bottom:226.046733pt;}
.y96_c00488{bottom:227.296381pt;}
.y97_c00488{bottom:227.563744pt;}
.y88_c00488{bottom:236.882651pt;}
.y89_c00488{bottom:238.473816pt;}
.y8a_c00488{bottom:238.814139pt;}
.y8b_c00488{bottom:239.070707pt;}
.y8c_c00488{bottom:239.541307pt;}
.y8d_c00488{bottom:240.396880pt;}
.y8e_c00488{bottom:241.739971pt;}
.y8f_c00488{bottom:242.362792pt;}
.y90_c00488{bottom:243.098869pt;}
.y82_c00488{bottom:252.486667pt;}
.y83_c00488{bottom:253.297277pt;}
.y84_c00488{bottom:254.372464pt;}
.y85_c00488{bottom:254.915795pt;}
.y86_c00488{bottom:255.964739pt;}
.y87_c00488{bottom:258.058085pt;}
.y79_c00488{bottom:267.580011pt;}
.y7a_c00488{bottom:268.477883pt;}
.y7b_c00488{bottom:268.769368pt;}
.y7c_c00488{bottom:269.263659pt;}
.y7d_c00488{bottom:269.682507pt;}
.y7e_c00488{bottom:270.690939pt;}
.y7f_c00488{bottom:271.063520pt;}
.y80_c00488{bottom:272.474549pt;}
.y81_c00488{bottom:272.709963pt;}
.y71_c00488{bottom:284.140787pt;}
.y72_c00488{bottom:284.419165pt;}
.y73_c00488{bottom:285.353859pt;}
.y74_c00488{bottom:285.701037pt;}
.y75_c00488{bottom:286.809032pt;}
.y76_c00488{bottom:287.279253pt;}
.y77_c00488{bottom:287.667701pt;}
.y78_c00488{bottom:288.934128pt;}
.y69_c00488{bottom:298.545237pt;}
.y6a_c00488{bottom:299.761717pt;}
.y6b_c00488{bottom:300.048397pt;}
.y6c_c00488{bottom:300.716448pt;}
.y6d_c00488{bottom:301.586317pt;}
.y6e_c00488{bottom:302.025315pt;}
.y6f_c00488{bottom:303.458917pt;}
.y70_c00488{bottom:304.482917pt;}
.y63_c00488{bottom:313.905037pt;}
.y64_c00488{bottom:315.163160pt;}
.y65_c00488{bottom:315.624704pt;}
.y66_c00488{bottom:316.623096pt;}
.y67_c00488{bottom:317.876621pt;}
.y68_c00488{bottom:318.833504pt;}
.y5b_c00488{bottom:328.069608pt;}
.y5c_c00488{bottom:328.656363pt;}
.y5d_c00488{bottom:329.199259pt;}
.y5e_c00488{bottom:330.858637pt;}
.y5f_c00488{bottom:331.802685pt;}
.y60_c00488{bottom:332.212912pt;}
.y61_c00488{bottom:333.818421pt;}
.y62_c00488{bottom:334.116936pt;}
.y54_c00488{bottom:342.952077pt;}
.y55_c00488{bottom:343.758547pt;}
.y56_c00488{bottom:345.486667pt;}
.y57_c00488{bottom:346.101880pt;}
.y58_c00488{bottom:346.843605pt;}
.y59_c00488{bottom:347.300800pt;}
.y5a_c00488{bottom:348.629160pt;}
.y4d_c00488{bottom:357.835424pt;}
.y4e_c00488{bottom:358.578971pt;}
.y4f_c00488{bottom:359.598328pt;}
.y50_c00488{bottom:360.173280pt;}
.y51_c00488{bottom:360.875984pt;}
.y52_c00488{bottom:362.241448pt;}
.y53_c00488{bottom:362.829411pt;}
.y46_c00488{bottom:374.392493pt;}
.y47_c00488{bottom:374.694411pt;}
.y48_c00488{bottom:375.400253pt;}
.y49_c00488{bottom:375.589608pt;}
.y4a_c00488{bottom:376.593877pt;}
.y4b_c00488{bottom:376.914115pt;}
.y4c_c00488{bottom:377.264427pt;}
.y3f_c00488{bottom:388.557072pt;}
.y40_c00488{bottom:388.854691pt;}
.y41_c00488{bottom:389.323491pt;}
.y42_c00488{bottom:389.952013pt;}
.y43_c00488{bottom:390.849152pt;}
.y44_c00488{bottom:391.147347pt;}
.y45_c00488{bottom:392.216640pt;}
.y36_c00488{bottom:404.397229pt;}
.y37_c00488{bottom:404.879533pt;}
.y38_c00488{bottom:405.222533pt;}
.y39_c00488{bottom:405.467512pt;}
.y3a_c00488{bottom:406.298189pt;}
.y3b_c00488{bottom:406.468328pt;}
.y3c_c00488{bottom:406.670488pt;}
.y3d_c00488{bottom:407.167981pt;}
.y3e_c00488{bottom:407.819019pt;}
.y2e_c00488{bottom:419.040627pt;}
.y2f_c00488{bottom:419.973051pt;}
.y30_c00488{bottom:420.293763pt;}
.y31_c00488{bottom:421.110579pt;}
.y32_c00488{bottom:421.624659pt;}
.y33_c00488{bottom:421.862523pt;}
.y34_c00488{bottom:422.985843pt;}
.y35_c00488{bottom:423.257955pt;}
.y26_c00488{bottom:433.924000pt;}
.y27_c00488{bottom:435.107104pt;}
.y28_c00488{bottom:435.358240pt;}
.y29_c00488{bottom:435.963328pt;}
.y2a_c00488{bottom:436.748656pt;}
.y2b_c00488{bottom:437.185600pt;}
.y2c_c00488{bottom:437.703520pt;}
.y2d_c00488{bottom:438.210352pt;}
.y1c_c00488{bottom:449.512144pt;}
.y1d_c00488{bottom:449.962027pt;}
.y1e_c00488{bottom:450.325752pt;}
.y1f_c00488{bottom:450.989317pt;}
.y20_c00488{bottom:451.253141pt;}
.y21_c00488{bottom:451.574749pt;}
.y22_c00488{bottom:451.985976pt;}
.y23_c00488{bottom:452.849888pt;}
.y24_c00488{bottom:453.174387pt;}
.y25_c00488{bottom:454.180040pt;}
.y14_c00488{bottom:463.437981pt;}
.y15_c00488{bottom:464.847533pt;}
.y16_c00488{bottom:465.171696pt;}
.y17_c00488{bottom:466.252861pt;}
.y18_c00488{bottom:466.491595pt;}
.y19_c00488{bottom:467.568067pt;}
.y1a_c00488{bottom:467.964973pt;}
.y1b_c00488{bottom:468.380373pt;}
.yb_c00488{bottom:480.476155pt;}
.yc_c00488{bottom:481.171704pt;}
.yd_c00488{bottom:481.665051pt;}
.ye_c00488{bottom:481.812816pt;}
.yf_c00488{bottom:482.334253pt;}
.y10_c00488{bottom:482.583509pt;}
.y11_c00488{bottom:482.917437pt;}
.y12_c00488{bottom:483.092077pt;}
.y13_c00488{bottom:483.669389pt;}
.y3_c00488{bottom:493.681984pt;}
.y4_c00488{bottom:494.606923pt;}
.y5_c00488{bottom:495.694573pt;}
.y6_c00488{bottom:496.407432pt;}
.y7_c00488{bottom:496.877704pt;}
.y8_c00488{bottom:497.490859pt;}
.y9_c00488{bottom:498.663195pt;}
.ya_c00488{bottom:499.222728pt;}
.y1_c00488{bottom:508.389333pt;}
.y2_c00488{bottom:510.706755pt;}
.h18_c00488{height:47.616086pt;}
.h14_c00488{height:49.483384pt;}
.he_c00488{height:51.341649pt;}
.h17_c00488{height:52.284330pt;}
.ha_c00488{height:53.208618pt;}
.h3_c00488{height:53.212873pt;}
.h9_c00488{height:54.142102pt;}
.h19_c00488{height:54.151627pt;}
.h13_c00488{height:55.085276pt;}
.hd_c00488{height:56.009071pt;}
.h10_c00488{height:56.018925pt;}
.h2_c00488{height:56.947110pt;}
.h11_c00488{height:56.952574pt;}
.h8_c00488{height:57.876040pt;}
.h16_c00488{height:57.886222pt;}
.h7_c00488{height:58.809525pt;}
.h5_c00488{height:58.814228pt;}
.hf_c00488{height:59.753520pt;}
.hb_c00488{height:60.676494pt;}
.h4_c00488{height:60.681346pt;}
.h12_c00488{height:61.620817pt;}
.h1a_c00488{height:62.547120pt;}
.h6_c00488{height:63.476947pt;}
.h15_c00488{height:63.488115pt;}
.hc_c00488{height:64.410432pt;}
.h0_c00488{height:549.066667pt;}
.h1_c00488{height:549.333333pt;}
.w0_c00488{width:319.200000pt;}
.w1_c00488{width:319.333333pt;}
.x0_c00488{left:0.000000pt;}
.x21_c00488{left:8.612000pt;}
.x3_c00488{left:13.633528pt;}
.x33_c00488{left:14.600947pt;}
.x73_c00488{left:15.516939pt;}
.x58_c00488{left:16.633757pt;}
.x81_c00488{left:21.101333pt;}
.x78_c00488{left:24.855096pt;}
.x4e_c00488{left:28.299259pt;}
.x34_c00488{left:32.098592pt;}
.x7f_c00488{left:34.979123pt;}
.x3a_c00488{left:35.894624pt;}
.x19_c00488{left:38.548288pt;}
.x2e_c00488{left:45.713315pt;}
.x60_c00488{left:46.717725pt;}
.x3d_c00488{left:47.775123pt;}
.x5f_c00488{left:52.815437pt;}
.x4_c00488{left:55.676195pt;}
.x82_c00488{left:57.828000pt;}
.x1a_c00488{left:58.719381pt;}
.x35_c00488{left:59.699096pt;}
.x45_c00488{left:60.990733pt;}
.x6b_c00488{left:61.944205pt;}
.x66_c00488{left:62.837629pt;}
.x4b_c00488{left:64.398875pt;}
.x29_c00488{left:65.902925pt;}
.xb_c00488{left:67.528027pt;}
.x2f_c00488{left:68.547872pt;}
.x52_c00488{left:70.346483pt;}
.x6e_c00488{left:71.542437pt;}
.x22_c00488{left:74.340000pt;}
.x12_c00488{left:75.458821pt;}
.x4f_c00488{left:77.485037pt;}
.x76_c00488{left:78.696101pt;}
.x49_c00488{left:80.058811pt;}
.x2a_c00488{left:83.720259pt;}
.x30_c00488{left:84.899427pt;}
.x3b_c00488{left:86.296915pt;}
.x74_c00488{left:87.247613pt;}
.x23_c00488{left:88.292000pt;}
.x13_c00488{left:89.526499pt;}
.x59_c00488{left:90.921757pt;}
.x3e_c00488{left:94.106453pt;}
.x1b_c00488{left:95.611971pt;}
.x36_c00488{left:96.691768pt;}
.x3c_c00488{left:99.780541pt;}
.x5a_c00488{left:100.789757pt;}
.x61_c00488{left:102.108112pt;}
.x4c_c00488{left:104.175912pt;}
.x5_c00488{left:105.114861pt;}
.x56_c00488{left:107.604000pt;}
.x1c_c00488{left:110.271928pt;}
.x80_c00488{left:112.805267pt;}
.x53_c00488{left:113.814797pt;}
.x67_c00488{left:115.608565pt;}
.xc_c00488{left:116.800432pt;}
.x5b_c00488{left:118.889757pt;}
.x3f_c00488{left:120.268581pt;}
.x24_c00488{left:121.908000pt;}
.x6f_c00488{left:122.931792pt;}
.x83_c00488{left:126.304000pt;}
.x1_c00488{left:127.760000pt;}
.x2b_c00488{left:129.098925pt;}
.x46_c00488{left:130.133936pt;}
.x72_c00488{left:132.199261pt;}
.x68_c00488{left:133.437157pt;}
.x14_c00488{left:136.548139pt;}
.x6_c00488{left:137.517528pt;}
.x64_c00488{left:139.247448pt;}
.x31_c00488{left:140.310427pt;}
.x79_c00488{left:141.415347pt;}
.x42_c00488{left:145.229869pt;}
.x15_c00488{left:146.914571pt;}
.x57_c00488{left:147.948000pt;}
.x37_c00488{left:149.496728pt;}
.x1d_c00488{left:150.919477pt;}
.x40_c00488{left:152.194277pt;}
.x50_c00488{left:154.030312pt;}
.xd_c00488{left:156.873685pt;}
.x7d_c00488{left:157.832640pt;}
.x7_c00488{left:158.893528pt;}
.x54_c00488{left:161.836205pt;}
.x25_c00488{left:165.537333pt;}
.x38_c00488{left:167.026373pt;}
.x77_c00488{left:168.560773pt;}
.x47_c00488{left:169.465688pt;}
.x2c_c00488{left:170.873592pt;}
.x7a_c00488{left:174.080816pt;}
.xe_c00488{left:176.025469pt;}
.x51_c00488{left:178.745856pt;}
.x8_c00488{left:186.764195pt;}
.x26_c00488{left:189.812000pt;}
.x16_c00488{left:193.722877pt;}
.x43_c00488{left:195.164469pt;}
.x7b_c00488{left:196.184416pt;}
.x62_c00488{left:197.736968pt;}
.x1e_c00488{left:198.919701pt;}
.xf_c00488{left:201.754573pt;}
.x5c_c00488{left:203.453757pt;}
.x70_c00488{left:207.658413pt;}
.x69_c00488{left:209.779024pt;}
.x17_c00488{left:210.975829pt;}
.x84_c00488{left:211.970667pt;}
.x7c_c00488{left:212.989765pt;}
.x41_c00488{left:214.271147pt;}
.x10_c00488{left:215.210576pt;}
.x1f_c00488{left:216.943952pt;}
.x27_c00488{left:218.585333pt;}
.x6d_c00488{left:221.138371pt;}
.x4a_c00488{left:222.952267pt;}
.x75_c00488{left:224.560461pt;}
.x65_c00488{left:225.810301pt;}
.x5d_c00488{left:227.408424pt;}
.x18_c00488{left:229.008752pt;}
.x39_c00488{left:229.914168pt;}
.x2_c00488{left:233.097333pt;}
.x71_c00488{left:235.564597pt;}
.x9_c00488{left:240.052195pt;}
.x32_c00488{left:241.621208pt;}
.x63_c00488{left:244.815872pt;}
.x28_c00488{left:246.742667pt;}
.x2d_c00488{left:248.397592pt;}
.x7e_c00488{left:249.529533pt;}
.x44_c00488{left:250.511827pt;}
.x48_c00488{left:253.441949pt;}
.x5e_c00488{left:255.719091pt;}
.x55_c00488{left:257.999021pt;}
.x11_c00488{left:259.582013pt;}
.x4d_c00488{left:261.110968pt;}
.x6c_c00488{left:263.628043pt;}
.xa_c00488{left:265.485528pt;}
.x6a_c00488{left:267.092091pt;}
.x20_c00488{left:272.842213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00489 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00489 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00489 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00489 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00489{transform:matrix(0.012119,0.000145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.012119,0.000145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.012119,0.000145,-0.003000,0.249982,0,0);}
.m62_c00489{transform:matrix(0.033513,0.000402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.033513,0.000402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.033513,0.000402,-0.003000,0.249982,0,0);}
.m31_c00489{transform:matrix(0.120371,0.001444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.120371,0.001444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.120371,0.001444,-0.003000,0.249982,0,0);}
.md1_c00489{transform:matrix(0.122482,0.002082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.122482,0.002082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.122482,0.002082,-0.004249,0.249964,0,0);}
.mb5_c00489{transform:matrix(0.137840,0.002343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.137840,0.002343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.137840,0.002343,-0.004249,0.249964,0,0);}
.m88_c00489{transform:matrix(0.138189,0.002073,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138189,0.002073,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138189,0.002073,-0.003750,0.249972,0,0);}
.md0_c00489{transform:matrix(0.138835,0.002360,-0.004249,0.249964,0,0);-ms-transform:matrix(0.138835,0.002360,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.138835,0.002360,-0.004249,0.249964,0,0);}
.mc9_c00489{transform:matrix(0.141999,0.002414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141999,0.002414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141999,0.002414,-0.004249,0.249964,0,0);}
.md6_c00489{transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);}
.mb1_c00489{transform:matrix(0.145744,0.002478,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145744,0.002478,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145744,0.002478,-0.004249,0.249964,0,0);}
.m2f_c00489{transform:matrix(0.147984,0.001776,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147984,0.001776,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147984,0.001776,-0.003000,0.249982,0,0);}
.md2_c00489{transform:matrix(0.148883,0.002531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148883,0.002531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148883,0.002531,-0.004249,0.249964,0,0);}
.md_c00489{transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);}
.ma6_c00489{transform:matrix(0.151667,0.001972,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151667,0.001972,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151667,0.001972,-0.003250,0.249979,0,0);}
.mb0_c00489{transform:matrix(0.151938,0.002583,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151938,0.002583,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151938,0.002583,-0.004249,0.249964,0,0);}
.me5_c00489{transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151985,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.154907,0.001549,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154907,0.001549,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154907,0.001549,-0.002500,0.249988,0,0);}
.m8e_c00489{transform:matrix(0.156012,0.002340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156012,0.002340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156012,0.002340,-0.003750,0.249972,0,0);}
.mbf_c00489{transform:matrix(0.156737,0.002665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156737,0.002665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156737,0.002665,-0.004249,0.249964,0,0);}
.m82_c00489{transform:matrix(0.157032,0.002355,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157032,0.002355,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157032,0.002355,-0.003750,0.249972,0,0);}
.mc3_c00489{transform:matrix(0.157642,0.002680,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157642,0.002680,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157642,0.002680,-0.004249,0.249964,0,0);}
.m9_c00489{transform:matrix(0.158385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158385,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.159184,0.001910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159184,0.001910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159184,0.001910,-0.003000,0.249982,0,0);}
.mc4_c00489{transform:matrix(0.159307,0.002708,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159307,0.002708,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159307,0.002708,-0.004249,0.249964,0,0);}
.m0_c00489{transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159810,0.000000,0.000000,0.250000,0,0);}
.ma8_c00489{transform:matrix(0.161191,0.002095,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161191,0.002095,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161191,0.002095,-0.003250,0.249979,0,0);}
.m5d_c00489{transform:matrix(0.161433,0.001937,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161433,0.001937,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161433,0.001937,-0.003000,0.249982,0,0);}
.m14_c00489{transform:matrix(0.161647,0.001616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161647,0.001616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161647,0.001616,-0.002500,0.249988,0,0);}
.m1e_c00489{transform:matrix(0.162668,0.001952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162668,0.001952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162668,0.001952,-0.003000,0.249982,0,0);}
.mc7_c00489{transform:matrix(0.163206,0.002775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163206,0.002775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163206,0.002775,-0.004249,0.249964,0,0);}
.me8_c00489{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.mea_c00489{transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164005,0.000000,0.000000,0.250000,0,0);}
.ma7_c00489{transform:matrix(0.164381,0.002137,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164381,0.002137,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164381,0.002137,-0.003250,0.249979,0,0);}
.m34_c00489{transform:matrix(0.164388,0.001973,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164388,0.001973,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164388,0.001973,-0.003000,0.249982,0,0);}
.mac_c00489{transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165706,0.002154,-0.003250,0.249979,0,0);}
.m36_c00489{transform:matrix(0.165818,0.001990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165818,0.001990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165818,0.001990,-0.003000,0.249982,0,0);}
.m64_c00489{transform:matrix(0.165858,0.001990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165858,0.001990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165858,0.001990,-0.003000,0.249982,0,0);}
.me7_c00489{transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.167048,0.002005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167048,0.002005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167048,0.002005,-0.003000,0.249982,0,0);}
.m87_c00489{transform:matrix(0.167091,0.002506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167091,0.002506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167091,0.002506,-0.003750,0.249972,0,0);}
.me6_c00489{transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);}
.m66_c00489{transform:matrix(0.167263,0.002007,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167263,0.002007,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167263,0.002007,-0.003000,0.249982,0,0);}
.m3_c00489{transform:matrix(0.168033,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168033,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168033,0.002016,-0.003000,0.249982,0,0);}
.m4f_c00489{transform:matrix(0.168268,0.002019,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168268,0.002019,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168268,0.002019,-0.003000,0.249982,0,0);}
.me3_c00489{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.mae_c00489{transform:matrix(0.168701,0.002868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168701,0.002868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168701,0.002868,-0.004249,0.249964,0,0);}
.m44_c00489{transform:matrix(0.169013,0.002028,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169013,0.002028,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169013,0.002028,-0.003000,0.249982,0,0);}
.m2e_c00489{transform:matrix(0.169153,0.002030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169153,0.002030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169153,0.002030,-0.003000,0.249982,0,0);}
.m46_c00489{transform:matrix(0.169388,0.002033,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169388,0.002033,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169388,0.002033,-0.003000,0.249982,0,0);}
.mdb_c00489{transform:matrix(0.169561,0.002883,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169561,0.002883,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169561,0.002883,-0.004249,0.249964,0,0);}
.m35_c00489{transform:matrix(0.169928,0.002039,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169928,0.002039,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169928,0.002039,-0.003000,0.249982,0,0);}
.m47_c00489{transform:matrix(0.170003,0.002040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170003,0.002040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170003,0.002040,-0.003000,0.249982,0,0);}
.ma1_c00489{transform:matrix(0.170091,0.002551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170091,0.002551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170091,0.002551,-0.003750,0.249972,0,0);}
.m67_c00489{transform:matrix(0.170413,0.002045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170413,0.002045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170413,0.002045,-0.003000,0.249982,0,0);}
.m5c_c00489{transform:matrix(0.170608,0.002047,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170608,0.002047,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170608,0.002047,-0.003000,0.249982,0,0);}
.ma5_c00489{transform:matrix(0.171036,0.002223,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171036,0.002223,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171036,0.002223,-0.003250,0.249979,0,0);}
.m78_c00489{transform:matrix(0.171411,0.002571,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171411,0.002571,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171411,0.002571,-0.003750,0.249972,0,0);}
.ma2_c00489{transform:matrix(0.171501,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171501,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171501,0.002573,-0.003750,0.249972,0,0);}
.m69_c00489{transform:matrix(0.172788,0.002073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172788,0.002073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172788,0.002073,-0.003000,0.249982,0,0);}
.m83_c00489{transform:matrix(0.172956,0.002594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172956,0.002594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172956,0.002594,-0.003750,0.249972,0,0);}
.m41_c00489{transform:matrix(0.173917,0.002087,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173917,0.002087,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173917,0.002087,-0.003000,0.249982,0,0);}
.ma9_c00489{transform:matrix(0.173935,0.002261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173935,0.002261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173935,0.002261,-0.003250,0.249979,0,0);}
.m27_c00489{transform:matrix(0.174442,0.002093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174442,0.002093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174442,0.002093,-0.003000,0.249982,0,0);}
.m8a_c00489{transform:matrix(0.174785,0.002622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174785,0.002622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174785,0.002622,-0.003750,0.249972,0,0);}
.m86_c00489{transform:matrix(0.176495,0.002647,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176495,0.002647,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176495,0.002647,-0.003750,0.249972,0,0);}
.m98_c00489{transform:matrix(0.176970,0.002655,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176970,0.002655,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176970,0.002655,-0.003750,0.249972,0,0);}
.mdd_c00489{transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177005,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);}
.m68_c00489{transform:matrix(0.177642,0.002132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177642,0.002132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177642,0.002132,-0.003000,0.249982,0,0);}
.maf_c00489{transform:matrix(0.177724,0.003021,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177724,0.003021,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177724,0.003021,-0.004249,0.249964,0,0);}
.m40_c00489{transform:matrix(0.177962,0.002136,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177962,0.002136,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177962,0.002136,-0.003000,0.249982,0,0);}
.m13_c00489{transform:matrix(0.177996,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177996,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177996,0.001780,-0.002500,0.249988,0,0);}
.m9d_c00489{transform:matrix(0.178150,0.002672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178150,0.002672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178150,0.002672,-0.003750,0.249972,0,0);}
.mc8_c00489{transform:matrix(0.178189,0.003029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178189,0.003029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178189,0.003029,-0.004249,0.249964,0,0);}
.m58_c00489{transform:matrix(0.178237,0.002139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178237,0.002139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178237,0.002139,-0.003000,0.249982,0,0);}
.mde_c00489{transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178565,0.000000,0.000000,0.250000,0,0);}
.md7_c00489{transform:matrix(0.178809,0.003040,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178809,0.003040,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178809,0.003040,-0.004249,0.249964,0,0);}
.mc2_c00489{transform:matrix(0.179314,0.003048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179314,0.003048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179314,0.003048,-0.004249,0.249964,0,0);}
.m51_c00489{transform:matrix(0.179477,0.002154,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179477,0.002154,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179477,0.002154,-0.003000,0.249982,0,0);}
.m97_c00489{transform:matrix(0.179895,0.002698,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179895,0.002698,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179895,0.002698,-0.003750,0.249972,0,0);}
.m2b_c00489{transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179897,0.002159,-0.003000,0.249982,0,0);}
.mbc_c00489{transform:matrix(0.180039,0.003061,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180039,0.003061,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180039,0.003061,-0.004249,0.249964,0,0);}
.md3_c00489{transform:matrix(0.180744,0.003073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180744,0.003073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180744,0.003073,-0.004249,0.249964,0,0);}
.m4c_c00489{transform:matrix(0.180882,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180882,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180882,0.002171,-0.003000,0.249982,0,0);}
.m4d_c00489{transform:matrix(0.180967,0.002172,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180967,0.002172,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180967,0.002172,-0.003000,0.249982,0,0);}
.mc0_c00489{transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181009,0.003077,-0.004249,0.249964,0,0);}
.m92_c00489{transform:matrix(0.181795,0.002727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181795,0.002727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181795,0.002727,-0.003750,0.249972,0,0);}
.m71_c00489{transform:matrix(0.182364,0.002735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182364,0.002735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182364,0.002735,-0.003750,0.249972,0,0);}
.m99_c00489{transform:matrix(0.183069,0.002746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183069,0.002746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183069,0.002746,-0.003750,0.249972,0,0);}
.m1f_c00489{transform:matrix(0.183577,0.002203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183577,0.002203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183577,0.002203,-0.003000,0.249982,0,0);}
.m6e_c00489{transform:matrix(0.184139,0.002762,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184139,0.002762,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184139,0.002762,-0.003750,0.249972,0,0);}
.mab_c00489{transform:matrix(0.184154,0.002394,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184154,0.002394,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184154,0.002394,-0.003250,0.249979,0,0);}
.m49_c00489{transform:matrix(0.184752,0.002217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184752,0.002217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184752,0.002217,-0.003000,0.249982,0,0);}
.m32_c00489{transform:matrix(0.184787,0.002217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184787,0.002217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184787,0.002217,-0.003000,0.249982,0,0);}
.m11_c00489{transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);}
.m10_c00489{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{transform:matrix(0.185242,0.002223,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185242,0.002223,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185242,0.002223,-0.003000,0.249982,0,0);}
.mb4_c00489{transform:matrix(0.186238,0.003166,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186238,0.003166,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186238,0.003166,-0.004249,0.249964,0,0);}
.mb3_c00489{transform:matrix(0.186293,0.003167,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186293,0.003167,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186293,0.003167,-0.004249,0.249964,0,0);}
.m30_c00489{transform:matrix(0.186562,0.002239,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186562,0.002239,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186562,0.002239,-0.003000,0.249982,0,0);}
.mc6_c00489{transform:matrix(0.186938,0.003178,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186938,0.003178,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186938,0.003178,-0.004249,0.249964,0,0);}
.mc1_c00489{transform:matrix(0.187128,0.003181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187128,0.003181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187128,0.003181,-0.004249,0.249964,0,0);}
.m28_c00489{transform:matrix(0.187277,0.002247,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187277,0.002247,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187277,0.002247,-0.003000,0.249982,0,0);}
.mbd_c00489{transform:matrix(0.187533,0.003188,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187533,0.003188,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187533,0.003188,-0.004249,0.249964,0,0);}
.m1b_c00489{transform:matrix(0.187656,0.002252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187656,0.002252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187656,0.002252,-0.003000,0.249982,0,0);}
.m16_c00489{transform:matrix(0.188266,0.001883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188266,0.001883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188266,0.001883,-0.002500,0.249988,0,0);}
.m17_c00489{transform:matrix(0.188356,0.001884,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188356,0.001884,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188356,0.001884,-0.002500,0.249988,0,0);}
.m48_c00489{transform:matrix(0.188426,0.002261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188426,0.002261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188426,0.002261,-0.003000,0.249982,0,0);}
.m5e_c00489{transform:matrix(0.188451,0.002261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188451,0.002261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188451,0.002261,-0.003000,0.249982,0,0);}
.m72_c00489{transform:matrix(0.188919,0.002834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188919,0.002834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188919,0.002834,-0.003750,0.249972,0,0);}
.ma0_c00489{transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189314,0.002840,-0.003750,0.249972,0,0);}
.m1c_c00489{transform:matrix(0.190116,0.002281,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190116,0.002281,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190116,0.002281,-0.003000,0.249982,0,0);}
.m93_c00489{transform:matrix(0.190364,0.002855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190364,0.002855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190364,0.002855,-0.003750,0.249972,0,0);}
.mce_c00489{transform:matrix(0.191702,0.003259,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191702,0.003259,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191702,0.003259,-0.004249,0.249964,0,0);}
.ma4_c00489{transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);}
.m33_c00489{transform:matrix(0.191936,0.002303,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191936,0.002303,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191936,0.002303,-0.003000,0.249982,0,0);}
.m24_c00489{transform:matrix(0.192126,0.002306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192126,0.002306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192126,0.002306,-0.003000,0.249982,0,0);}
.m65_c00489{transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192196,0.002306,-0.003000,0.249982,0,0);}
.m2d_c00489{transform:matrix(0.192381,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192381,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192381,0.002309,-0.003000,0.249982,0,0);}
.mbe_c00489{transform:matrix(0.192717,0.003276,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192717,0.003276,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192717,0.003276,-0.004249,0.249964,0,0);}
.m5b_c00489{transform:matrix(0.192871,0.002314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192871,0.002314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192871,0.002314,-0.003000,0.249982,0,0);}
.m9f_c00489{transform:matrix(0.193198,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193198,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193198,0.002898,-0.003750,0.249972,0,0);}
.m8f_c00489{transform:matrix(0.193213,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193213,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193213,0.002898,-0.003750,0.249972,0,0);}
.mc_c00489{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.mb2_c00489{transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);}
.ma3_c00489{transform:matrix(0.193783,0.002907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193783,0.002907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193783,0.002907,-0.003750,0.249972,0,0);}
.m45_c00489{transform:matrix(0.194646,0.002336,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194646,0.002336,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194646,0.002336,-0.003000,0.249982,0,0);}
.me4_c00489{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m96_c00489{transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195843,0.002938,-0.003750,0.249972,0,0);}
.m50_c00489{transform:matrix(0.196151,0.002354,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196151,0.002354,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196151,0.002354,-0.003000,0.249982,0,0);}
.m22_c00489{transform:matrix(0.196266,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196266,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196266,0.002355,-0.003000,0.249982,0,0);}
.m2a_c00489{transform:matrix(0.196271,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196271,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196271,0.002355,-0.003000,0.249982,0,0);}
.m23_c00489{transform:matrix(0.196646,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196646,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196646,0.002360,-0.003000,0.249982,0,0);}
.m26_c00489{transform:matrix(0.197076,0.002365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197076,0.002365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197076,0.002365,-0.003000,0.249982,0,0);}
.m9b_c00489{transform:matrix(0.197688,0.002965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197688,0.002965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197688,0.002965,-0.003750,0.249972,0,0);}
.m6b_c00489{transform:matrix(0.197828,0.002967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197828,0.002967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197828,0.002967,-0.003750,0.249972,0,0);}
.m7a_c00489{transform:matrix(0.197833,0.002967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197833,0.002967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197833,0.002967,-0.003750,0.249972,0,0);}
.mc5_c00489{transform:matrix(0.198286,0.003371,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198286,0.003371,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198286,0.003371,-0.004249,0.249964,0,0);}
.m73_c00489{transform:matrix(0.198548,0.002978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198548,0.002978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198548,0.002978,-0.003750,0.249972,0,0);}
.m61_c00489{transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199336,0.002392,-0.003000,0.249982,0,0);}
.m79_c00489{transform:matrix(0.199898,0.002998,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199898,0.002998,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199898,0.002998,-0.003750,0.249972,0,0);}
.mb_c00489{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.m7d_c00489{transform:matrix(0.200022,0.003000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200022,0.003000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200022,0.003000,-0.003750,0.249972,0,0);}
.m74_c00489{transform:matrix(0.200242,0.003004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200242,0.003004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200242,0.003004,-0.003750,0.249972,0,0);}
.m3a_c00489{transform:matrix(0.200576,0.002407,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200576,0.002407,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200576,0.002407,-0.003000,0.249982,0,0);}
.m54_c00489{transform:matrix(0.200856,0.002410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200856,0.002410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200856,0.002410,-0.003000,0.249982,0,0);}
.m8b_c00489{transform:matrix(0.201392,0.003021,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201392,0.003021,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201392,0.003021,-0.003750,0.249972,0,0);}
.m1_c00489{transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);}
.m6_c00489{transform:matrix(0.201850,0.002422,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201850,0.002422,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201850,0.002422,-0.003000,0.249982,0,0);}
.m77_c00489{transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202167,0.003033,-0.003750,0.249972,0,0);}
.m6f_c00489{transform:matrix(0.202372,0.003036,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202372,0.003036,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202372,0.003036,-0.003750,0.249972,0,0);}
.me9_c00489{transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202435,0.000000,0.000000,0.250000,0,0);}
.m9a_c00489{transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202807,0.003042,-0.003750,0.249972,0,0);}
.m3f_c00489{transform:matrix(0.203005,0.002436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203005,0.002436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203005,0.002436,-0.003000,0.249982,0,0);}
.m53_c00489{transform:matrix(0.204185,0.002450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204185,0.002450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204185,0.002450,-0.003000,0.249982,0,0);}
.m5a_c00489{transform:matrix(0.204610,0.002455,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204610,0.002455,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204610,0.002455,-0.003000,0.249982,0,0);}
.m81_c00489{transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);}
.m4_c00489{transform:matrix(0.204765,0.002457,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204765,0.002457,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204765,0.002457,-0.003000,0.249982,0,0);}
.m94_c00489{transform:matrix(0.205042,0.003076,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205042,0.003076,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205042,0.003076,-0.003750,0.249972,0,0);}
.m70_c00489{transform:matrix(0.205457,0.003082,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205457,0.003082,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205457,0.003082,-0.003750,0.249972,0,0);}
.meb_c00489{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.m3e_c00489{transform:matrix(0.205860,0.002470,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205860,0.002470,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205860,0.002470,-0.003000,0.249982,0,0);}
.m56_c00489{transform:matrix(0.206480,0.002478,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206480,0.002478,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206480,0.002478,-0.003000,0.249982,0,0);}
.m8c_c00489{transform:matrix(0.206612,0.003099,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206612,0.003099,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206612,0.003099,-0.003750,0.249972,0,0);}
.mdf_c00489{transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00489{transform:matrix(0.208140,0.003538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208140,0.003538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208140,0.003538,-0.004249,0.249964,0,0);}
.m80_c00489{transform:matrix(0.208647,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208647,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208647,0.003130,-0.003750,0.249972,0,0);}
.m1d_c00489{transform:matrix(0.209195,0.002510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209195,0.002510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209195,0.002510,-0.003000,0.249982,0,0);}
.m8d_c00489{transform:matrix(0.209331,0.003140,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209331,0.003140,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209331,0.003140,-0.003750,0.249972,0,0);}
.me0_c00489{transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210335,0.002524,-0.003000,0.249982,0,0);}
.m12_c00489{transform:matrix(0.210604,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210604,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210604,0.002106,-0.002500,0.249988,0,0);}
.m52_c00489{transform:matrix(0.211715,0.002541,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211715,0.002541,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211715,0.002541,-0.003000,0.249982,0,0);}
.m3d_c00489{transform:matrix(0.211845,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211845,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211845,0.002542,-0.003000,0.249982,0,0);}
.m15_c00489{transform:matrix(0.212044,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212044,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212044,0.002120,-0.002500,0.249988,0,0);}
.me2_c00489{transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);}
.m9e_c00489{transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);}
.mcf_c00489{transform:matrix(0.213739,0.003634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213739,0.003634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213739,0.003634,-0.004249,0.249964,0,0);}
.m9c_c00489{transform:matrix(0.214656,0.003220,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214656,0.003220,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214656,0.003220,-0.003750,0.249972,0,0);}
.m85_c00489{transform:matrix(0.216591,0.003249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216591,0.003249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216591,0.003249,-0.003750,0.249972,0,0);}
.m89_c00489{transform:matrix(0.217546,0.003263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217546,0.003263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217546,0.003263,-0.003750,0.249972,0,0);}
.m5_c00489{transform:matrix(0.218244,0.002619,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218244,0.002619,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218244,0.002619,-0.003000,0.249982,0,0);}
.m21_c00489{transform:matrix(0.218449,0.002621,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218449,0.002621,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218449,0.002621,-0.003000,0.249982,0,0);}
.mb9_c00489{transform:matrix(0.218733,0.003718,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218733,0.003718,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218733,0.003718,-0.004249,0.249964,0,0);}
.mba_c00489{transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);}
.m6d_c00489{transform:matrix(0.219125,0.003287,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219125,0.003287,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219125,0.003287,-0.003750,0.249972,0,0);}
.m2_c00489{transform:matrix(0.220209,0.002643,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220209,0.002643,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220209,0.002643,-0.003000,0.249982,0,0);}
.m84_c00489{transform:matrix(0.221970,0.003330,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221970,0.003330,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221970,0.003330,-0.003750,0.249972,0,0);}
.mb8_c00489{transform:matrix(0.224133,0.003810,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224133,0.003810,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224133,0.003810,-0.004249,0.249964,0,0);}
.m42_c00489{transform:matrix(0.224139,0.002690,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224139,0.002690,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224139,0.002690,-0.003000,0.249982,0,0);}
.m76_c00489{transform:matrix(0.224515,0.003368,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224515,0.003368,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224515,0.003368,-0.003750,0.249972,0,0);}
.m7e_c00489{transform:matrix(0.224570,0.003369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224570,0.003369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224570,0.003369,-0.003750,0.249972,0,0);}
.me1_c00489{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.225820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225820,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.227129,0.002726,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227129,0.002726,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227129,0.002726,-0.003000,0.249982,0,0);}
.mad_c00489{transform:matrix(0.227191,0.002953,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227191,0.002953,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227191,0.002953,-0.003250,0.249979,0,0);}
.m39_c00489{transform:matrix(0.227274,0.002727,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227274,0.002727,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227274,0.002727,-0.003000,0.249982,0,0);}
.maa_c00489{transform:matrix(0.228881,0.002975,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228881,0.002975,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228881,0.002975,-0.003250,0.249979,0,0);}
.mb6_c00489{transform:matrix(0.229422,0.003900,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229422,0.003900,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229422,0.003900,-0.004249,0.249964,0,0);}
.m3b_c00489{transform:matrix(0.231558,0.002779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231558,0.002779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231558,0.002779,-0.003000,0.249982,0,0);}
.mbb_c00489{transform:matrix(0.232341,0.003950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232341,0.003950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232341,0.003950,-0.004249,0.249964,0,0);}
.m20_c00489{transform:matrix(0.232373,0.002788,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232373,0.002788,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232373,0.002788,-0.003000,0.249982,0,0);}
.m4e_c00489{transform:matrix(0.233428,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233428,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233428,0.002801,-0.003000,0.249982,0,0);}
.m75_c00489{transform:matrix(0.233899,0.003508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233899,0.003508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233899,0.003508,-0.003750,0.249972,0,0);}
.m6c_c00489{transform:matrix(0.235169,0.003528,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235169,0.003528,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235169,0.003528,-0.003750,0.249972,0,0);}
.mcd_c00489{transform:matrix(0.235341,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235341,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235341,0.004001,-0.004249,0.249964,0,0);}
.m3c_c00489{transform:matrix(0.235603,0.002827,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235603,0.002827,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235603,0.002827,-0.003000,0.249982,0,0);}
.m7c_c00489{transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);}
.m4b_c00489{transform:matrix(0.236538,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236538,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236538,0.002838,-0.003000,0.249982,0,0);}
.m37_c00489{transform:matrix(0.237668,0.002852,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237668,0.002852,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237668,0.002852,-0.003000,0.249982,0,0);}
.mcc_c00489{transform:matrix(0.238271,0.004051,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238271,0.004051,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238271,0.004051,-0.004249,0.249964,0,0);}
.mf_c00489{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m7f_c00489{transform:matrix(0.240363,0.003605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240363,0.003605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240363,0.003605,-0.003750,0.249972,0,0);}
.mdc_c00489{transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);}
.m7b_c00489{transform:matrix(0.240858,0.003613,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240858,0.003613,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240858,0.003613,-0.003750,0.249972,0,0);}
.m38_c00489{transform:matrix(0.241958,0.002903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241958,0.002903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241958,0.002903,-0.003000,0.249982,0,0);}
.md5_c00489{transform:matrix(0.246239,0.004186,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246239,0.004186,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246239,0.004186,-0.004249,0.249964,0,0);}
.m55_c00489{transform:matrix(0.246732,0.002961,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246732,0.002961,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246732,0.002961,-0.003000,0.249982,0,0);}
.m90_c00489{transform:matrix(0.247067,0.003706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247067,0.003706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247067,0.003706,-0.003750,0.249972,0,0);}
.m29_c00489{transform:matrix(0.247417,0.002969,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247417,0.002969,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247417,0.002969,-0.003000,0.249982,0,0);}
.m5f_c00489{transform:matrix(0.248662,0.002984,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248662,0.002984,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248662,0.002984,-0.003000,0.249982,0,0);}
.m4a_c00489{transform:matrix(0.249202,0.002990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249202,0.002990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249202,0.002990,-0.003000,0.249982,0,0);}
.md4_c00489{transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253958,0.004317,-0.004249,0.249964,0,0);}
.m95_c00489{transform:matrix(0.255326,0.003830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255326,0.003830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255326,0.003830,-0.003750,0.249972,0,0);}
.m59_c00489{transform:matrix(0.257011,0.003084,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257011,0.003084,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257011,0.003084,-0.003000,0.249982,0,0);}
.mcb_c00489{transform:matrix(0.257808,0.004383,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257808,0.004383,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257808,0.004383,-0.004249,0.249964,0,0);}
.m60_c00489{transform:matrix(0.259316,0.003112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259316,0.003112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259316,0.003112,-0.003000,0.249982,0,0);}
.md8_c00489{transform:matrix(0.260007,0.004420,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260007,0.004420,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260007,0.004420,-0.004249,0.249964,0,0);}
.m25_c00489{transform:matrix(0.265156,0.003182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265156,0.003182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265156,0.003182,-0.003000,0.249982,0,0);}
.m8_c00489{transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);}
.m91_c00489{transform:matrix(0.339537,0.005093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.339537,0.005093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.339537,0.005093,-0.003750,0.249972,0,0);}
.m63_c00489{transform:matrix(0.344950,0.004139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.344950,0.004139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.344950,0.004139,-0.003000,0.249982,0,0);}
.m6a_c00489{transform:matrix(0.345891,0.005188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.345891,0.005188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.345891,0.005188,-0.003750,0.249972,0,0);}
.mca_c00489{transform:matrix(0.417185,0.007092,-0.004249,0.249964,0,0);-ms-transform:matrix(0.417185,0.007092,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.417185,0.007092,-0.004249,0.249964,0,0);}
.md9_c00489{transform:matrix(0.464798,0.007902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.464798,0.007902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.464798,0.007902,-0.004249,0.249964,0,0);}
.mda_c00489{transform:matrix(0.830725,0.014122,-0.004249,0.249964,0,0);-ms-transform:matrix(0.830725,0.014122,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.830725,0.014122,-0.004249,0.249964,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:0.000000px;}
.fc0_c00489{color:transparent;}
.fsf_c00489{font-size:55.656260px;}
.fs7_c00489{font-size:58.804233px;}
.fsd_c00489{font-size:58.806615px;}
.fs16_c00489{font-size:58.808496px;}
.fs12_c00489{font-size:59.856733px;}
.fs19_c00489{font-size:59.858648px;}
.fs1c_c00489{font-size:60.900000px;}
.fsa_c00489{font-size:60.904385px;}
.fs4_c00489{font-size:61.954460px;}
.fs1b_c00489{font-size:61.958951px;}
.fs1_c00489{font-size:63.004536px;}
.fse_c00489{font-size:63.007087px;}
.fs11_c00489{font-size:64.057205px;}
.fs13_c00489{font-size:65.107323px;}
.fs8_c00489{font-size:66.154763px;}
.fs14_c00489{font-size:66.155589px;}
.fs5_c00489{font-size:67.204838px;}
.fs2_c00489{font-size:68.250000px;}
.fs3_c00489{font-size:68.253412px;}
.fs9_c00489{font-size:68.254914px;}
.fs10_c00489{font-size:68.257678px;}
.fsc_c00489{font-size:69.304989px;}
.fsb_c00489{font-size:70.355065px;}
.fs17_c00489{font-size:70.360165px;}
.fs1a_c00489{font-size:72.460468px;}
.fs1d_c00489{font-size:73.500000px;}
.fs6_c00489{font-size:74.555367px;}
.fs18_c00489{font-size:74.560772px;}
.fs0_c00489{font-size:75.600000px;}
.fs15_c00489{font-size:75.610923px;}
.y0_c00489{bottom:0.000000px;}
.yd7_c00489{bottom:34.252500px;}
.yd6_c00489{bottom:51.303000px;}
.yd2_c00489{bottom:67.484925px;}
.yd3_c00489{bottom:67.485241px;}
.yd4_c00489{bottom:67.485415px;}
.yd5_c00489{bottom:67.485460px;}
.yce_c00489{bottom:82.254717px;}
.ycd_c00489{bottom:82.255233px;}
.ycf_c00489{bottom:82.255444px;}
.yd0_c00489{bottom:82.255465px;}
.ycc_c00489{bottom:82.255636px;}
.yd1_c00489{bottom:82.255816px;}
.ycb_c00489{bottom:82.255975px;}
.yca_c00489{bottom:82.256439px;}
.yc9_c00489{bottom:99.619204px;}
.yc8_c00489{bottom:99.619758px;}
.yc5_c00489{bottom:99.620275px;}
.yc6_c00489{bottom:99.620343px;}
.yc7_c00489{bottom:99.620479px;}
.yc4_c00489{bottom:99.620757px;}
.ybe_c00489{bottom:116.946345px;}
.yc1_c00489{bottom:116.946792px;}
.yc0_c00489{bottom:116.946856px;}
.ybf_c00489{bottom:116.946909px;}
.yc2_c00489{bottom:116.946958px;}
.yc3_c00489{bottom:116.947042px;}
.yb8_c00489{bottom:134.131751px;}
.yb9_c00489{bottom:134.131989px;}
.yb7_c00489{bottom:134.132253px;}
.ybd_c00489{bottom:134.132376px;}
.yba_c00489{bottom:134.132490px;}
.ybb_c00489{bottom:134.132562px;}
.ybc_c00489{bottom:134.132805px;}
.yb5_c00489{bottom:153.158244px;}
.yb2_c00489{bottom:153.158392px;}
.yb4_c00489{bottom:153.158437px;}
.yb6_c00489{bottom:153.158539px;}
.yb3_c00489{bottom:153.158799px;}
.yb0_c00489{bottom:153.159055px;}
.yb1_c00489{bottom:153.159093px;}
.yaf_c00489{bottom:166.712601px;}
.yae_c00489{bottom:166.912827px;}
.yad_c00489{bottom:168.263562px;}
.yac_c00489{bottom:169.025936px;}
.yab_c00489{bottom:169.246230px;}
.yaa_c00489{bottom:169.939600px;}
.ya9_c00489{bottom:170.862369px;}
.ya8_c00489{bottom:171.453000px;}
.ya7_c00489{bottom:185.495046px;}
.ya6_c00489{bottom:185.757497px;}
.ya5_c00489{bottom:186.604343px;}
.ya4_c00489{bottom:186.800201px;}
.ya3_c00489{bottom:187.671616px;}
.ya2_c00489{bottom:188.064892px;}
.ya1_c00489{bottom:188.323794px;}
.ya0_c00489{bottom:188.439605px;}
.y9f_c00489{bottom:188.731500px;}
.y9e_c00489{bottom:202.184152px;}
.y9d_c00489{bottom:202.464375px;}
.y9c_c00489{bottom:202.978545px;}
.y9b_c00489{bottom:203.228497px;}
.y9a_c00489{bottom:203.689710px;}
.y99_c00489{bottom:204.191505px;}
.y98_c00489{bottom:204.921757px;}
.y97_c00489{bottom:205.730160px;}
.y96_c00489{bottom:218.917447px;}
.y95_c00489{bottom:219.236805px;}
.y94_c00489{bottom:220.312620px;}
.y93_c00489{bottom:221.025982px;}
.y92_c00489{bottom:222.417487px;}
.y91_c00489{bottom:222.694845px;}
.y90_c00489{bottom:223.014000px;}
.y8f_c00489{bottom:235.137007px;}
.y8e_c00489{bottom:236.583045px;}
.y8d_c00489{bottom:237.032242px;}
.y8c_c00489{bottom:237.454500px;}
.y8b_c00489{bottom:237.712087px;}
.y8a_c00489{bottom:238.950165px;}
.y89_c00489{bottom:240.024203px;}
.y88_c00489{bottom:252.568485px;}
.y87_c00489{bottom:253.556393px;}
.y86_c00489{bottom:254.329132px;}
.y85_c00489{bottom:255.386430px;}
.y84_c00489{bottom:255.649657px;}
.y83_c00489{bottom:256.764622px;}
.y82_c00489{bottom:268.947833px;}
.y81_c00489{bottom:270.089280px;}
.y80_c00489{bottom:271.298707px;}
.y7f_c00489{bottom:271.656277px;}
.y7e_c00489{bottom:272.020170px;}
.y7d_c00489{bottom:272.892360px;}
.y7c_c00489{bottom:273.147855px;}
.y7b_c00489{bottom:273.506595px;}
.y7a_c00489{bottom:286.578157px;}
.y79_c00489{bottom:287.731553px;}
.y78_c00489{bottom:288.789938px;}
.y77_c00489{bottom:289.140577px;}
.y76_c00489{bottom:289.806323px;}
.y75_c00489{bottom:290.008717px;}
.y74_c00489{bottom:290.517150px;}
.y73_c00489{bottom:302.866283px;}
.y72_c00489{bottom:303.220973px;}
.y71_c00489{bottom:303.545813px;}
.y70_c00489{bottom:304.738658px;}
.y6f_c00489{bottom:305.610780px;}
.y6e_c00489{bottom:305.888070px;}
.y6d_c00489{bottom:306.627165px;}
.y6c_c00489{bottom:307.260930px;}
.y6b_c00489{bottom:320.174272px;}
.y6a_c00489{bottom:320.591445px;}
.y69_c00489{bottom:321.664807px;}
.y68_c00489{bottom:322.017247px;}
.y67_c00489{bottom:322.353352px;}
.y66_c00489{bottom:323.147130px;}
.y65_c00489{bottom:323.912850px;}
.y64_c00489{bottom:324.276000px;}
.y63_c00489{bottom:337.704990px;}
.y62_c00489{bottom:338.754372px;}
.y61_c00489{bottom:339.278172px;}
.y60_c00489{bottom:340.208790px;}
.y5f_c00489{bottom:340.815882px;}
.y5e_c00489{bottom:341.181396px;}
.y5d_c00489{bottom:341.384460px;}
.y5c_c00489{bottom:341.539884px;}
.y5b_c00489{bottom:355.292016px;}
.y5a_c00489{bottom:355.542204px;}
.y59_c00489{bottom:355.931358px;}
.y58_c00489{bottom:356.686566px;}
.y57_c00489{bottom:357.194862px;}
.y56_c00489{bottom:357.623610px;}
.y55_c00489{bottom:358.554228px;}
.y54_c00489{bottom:373.422900px;}
.y53_c00489{bottom:373.423344px;}
.y4f_c00489{bottom:373.423722px;}
.y50_c00489{bottom:373.423836px;}
.y51_c00489{bottom:373.424010px;}
.y52_c00489{bottom:373.424046px;}
.y4e_c00489{bottom:388.851924px;}
.y4d_c00489{bottom:389.206056px;}
.y4c_c00489{bottom:390.277674px;}
.y4b_c00489{bottom:390.565962px;}
.y4a_c00489{bottom:391.330386px;}
.y49_c00489{bottom:391.503096px;}
.y48_c00489{bottom:392.306700px;}
.y47_c00489{bottom:403.931394px;}
.y46_c00489{bottom:405.246750px;}
.y45_c00489{bottom:405.593988px;}
.y44_c00489{bottom:406.203792px;}
.y43_c00489{bottom:407.411430px;}
.y42_c00489{bottom:408.868434px;}
.y41_c00489{bottom:409.859448px;}
.y40_c00489{bottom:422.474412px;}
.y3f_c00489{bottom:423.006144px;}
.y3e_c00489{bottom:423.663378px;}
.y3d_c00489{bottom:424.081830px;}
.y3c_c00489{bottom:424.330146px;}
.y3b_c00489{bottom:424.600068px;}
.y3a_c00489{bottom:425.533404px;}
.y39_c00489{bottom:425.937312px;}
.y38_c00489{bottom:426.142932px;}
.y37_c00489{bottom:427.138728px;}
.y33_c00489{bottom:439.627248px;}
.y32_c00489{bottom:439.627254px;}
.y30_c00489{bottom:439.627284px;}
.y34_c00489{bottom:439.627326px;}
.y31_c00489{bottom:439.627416px;}
.y35_c00489{bottom:439.627560px;}
.y36_c00489{bottom:439.628160px;}
.y2f_c00489{bottom:455.866182px;}
.y2e_c00489{bottom:456.838362px;}
.y2d_c00489{bottom:457.185996px;}
.y2c_c00489{bottom:457.399794px;}
.y2b_c00489{bottom:458.356968px;}
.y2a_c00489{bottom:458.727132px;}
.y29_c00489{bottom:459.385428px;}
.y28_c00489{bottom:459.807552px;}
.y27_c00489{bottom:473.007066px;}
.y26_c00489{bottom:473.594604px;}
.y25_c00489{bottom:473.970312px;}
.y24_c00489{bottom:474.516930px;}
.y23_c00489{bottom:475.985988px;}
.y22_c00489{bottom:476.506200px;}
.y21_c00489{bottom:477.900048px;}
.y20_c00489{bottom:490.236600px;}
.y1f_c00489{bottom:490.703412px;}
.y1e_c00489{bottom:491.435034px;}
.y1d_c00489{bottom:492.065556px;}
.y1c_c00489{bottom:492.587574px;}
.y1b_c00489{bottom:493.647540px;}
.y1a_c00489{bottom:494.365722px;}
.y19_c00489{bottom:494.642010px;}
.y18_c00489{bottom:507.593850px;}
.y17_c00489{bottom:507.874848px;}
.y16_c00489{bottom:508.789356px;}
.y15_c00489{bottom:509.223606px;}
.y14_c00489{bottom:510.085698px;}
.y13_c00489{bottom:510.390150px;}
.y12_c00489{bottom:510.571500px;}
.y11_c00489{bottom:525.213345px;}
.y10_c00489{bottom:525.429285px;}
.yf_c00489{bottom:525.893715px;}
.ye_c00489{bottom:526.506750px;}
.yd_c00489{bottom:526.711515px;}
.yc_c00489{bottom:527.168055px;}
.yb_c00489{bottom:527.697555px;}
.ya_c00489{bottom:527.851500px;}
.y9_c00489{bottom:543.111000px;}
.y8_c00489{bottom:557.931804px;}
.y7_c00489{bottom:559.031910px;}
.y6_c00489{bottom:559.437144px;}
.y5_c00489{bottom:560.079042px;}
.y4_c00489{bottom:560.483628px;}
.y3_c00489{bottom:560.723676px;}
.y2_c00489{bottom:561.601500px;}
.y1_c00489{bottom:573.210000px;}
.h11_c00489{height:55.656260px;}
.h9_c00489{height:58.804233px;}
.hf_c00489{height:58.806615px;}
.h18_c00489{height:58.808496px;}
.h14_c00489{height:59.856733px;}
.h1b_c00489{height:59.858648px;}
.h1e_c00489{height:60.900000px;}
.hc_c00489{height:60.904385px;}
.h6_c00489{height:61.954460px;}
.h1d_c00489{height:61.958951px;}
.h3_c00489{height:63.004536px;}
.h10_c00489{height:63.007087px;}
.h13_c00489{height:64.057205px;}
.h15_c00489{height:65.107323px;}
.ha_c00489{height:66.154763px;}
.h16_c00489{height:66.155589px;}
.h7_c00489{height:67.204838px;}
.h4_c00489{height:68.250000px;}
.h5_c00489{height:68.253412px;}
.hb_c00489{height:68.254914px;}
.h12_c00489{height:68.257678px;}
.he_c00489{height:69.304989px;}
.hd_c00489{height:70.355065px;}
.h19_c00489{height:70.360165px;}
.h1c_c00489{height:72.460468px;}
.h1f_c00489{height:73.500000px;}
.h8_c00489{height:74.555367px;}
.h1a_c00489{height:74.560772px;}
.h2_c00489{height:75.600000px;}
.h17_c00489{height:75.610923px;}
.h0_c00489{height:617.700000px;}
.h1_c00489{height:618.000000px;}
.w0_c00489{width:359.100000px;}
.w1_c00489{width:359.250000px;}
.x0_c00489{left:0.000000px;}
.x48_c00489{left:32.957298px;}
.x7a_c00489{left:40.499391px;}
.x66_c00489{left:42.246000px;}
.x4a_c00489{left:43.645500px;}
.x11_c00489{left:45.775500px;}
.x19_c00489{left:47.644500px;}
.x2_c00489{left:48.987000px;}
.x12_c00489{left:61.170000px;}
.x5e_c00489{left:62.703413px;}
.x9_c00489{left:63.720000px;}
.x56_c00489{left:66.226830px;}
.x4b_c00489{left:67.855500px;}
.x77_c00489{left:69.932430px;}
.x7b_c00489{left:71.283791px;}
.x67_c00489{left:73.608000px;}
.x28_c00489{left:77.040588px;}
.x5f_c00489{left:79.993643px;}
.x57_c00489{left:82.159582px;}
.x51_c00489{left:83.778855px;}
.x7d_c00489{left:86.670000px;}
.x1a_c00489{left:88.128000px;}
.x38_c00489{left:93.436332px;}
.xa_c00489{left:94.770000px;}
.x6c_c00489{left:96.667659px;}
.x6f_c00489{left:97.747100px;}
.x41_c00489{left:100.978644px;}
.x30_c00489{left:105.103776px;}
.x5b_c00489{left:106.469032px;}
.x3d_c00489{left:107.841552px;}
.x1d_c00489{left:108.905262px;}
.x13_c00489{left:114.120000px;}
.x75_c00489{left:115.840802px;}
.x31_c00489{left:117.238056px;}
.x4c_c00489{left:118.903500px;}
.x22_c00489{left:120.146214px;}
.x3_c00489{left:122.139000px;}
.x29_c00489{left:124.022454px;}
.x52_c00489{left:129.951157px;}
.x69_c00489{left:131.815500px;}
.x49_c00489{left:135.380574px;}
.x2f_c00489{left:137.701758px;}
.x32_c00489{left:141.020634px;}
.x4_c00489{left:142.143000px;}
.x23_c00489{left:147.494910px;}
.x45_c00489{left:149.455404px;}
.x2a_c00489{left:150.493824px;}
.x54_c00489{left:152.375287px;}
.x63_c00489{left:153.802418px;}
.x7c_c00489{left:156.886526px;}
.x42_c00489{left:158.222388px;}
.x14_c00489{left:159.774000px;}
.xb_c00489{left:160.920000px;}
.x39_c00489{left:162.845844px;}
.x76_c00489{left:165.527658px;}
.x60_c00489{left:166.959338px;}
.x70_c00489{left:169.577357px;}
.x4d_c00489{left:171.822000px;}
.x5_c00489{left:175.858500px;}
.x15_c00489{left:180.250500px;}
.x1_c00489{left:182.520000px;}
.x6a_c00489{left:185.560500px;}
.x46_c00489{left:188.562936px;}
.xc_c00489{left:190.350000px;}
.x7e_c00489{left:191.430000px;}
.x4e_c00489{left:194.229000px;}
.x1b_c00489{left:196.156500px;}
.x43_c00489{left:198.725220px;}
.x3e_c00489{left:202.083918px;}
.xd_c00489{left:203.310000px;}
.x59_c00489{left:205.657477px;}
.x1e_c00489{left:207.732510px;}
.x33_c00489{left:211.787886px;}
.x6d_c00489{left:215.483982px;}
.x73_c00489{left:216.565371px;}
.x4f_c00489{left:217.725000px;}
.x2b_c00489{left:218.881686px;}
.x3a_c00489{left:220.351134px;}
.xe_c00489{left:222.210000px;}
.x24_c00489{left:224.784912px;}
.x34_c00489{left:226.355004px;}
.x6_c00489{left:229.350000px;}
.x6b_c00489{left:230.406000px;}
.x2c_c00489{left:234.197826px;}
.x64_c00489{left:240.467723px;}
.x16_c00489{left:241.554000px;}
.x5c_c00489{left:245.772870px;}
.x1f_c00489{left:247.149120px;}
.x3b_c00489{left:249.415002px;}
.x35_c00489{left:250.974528px;}
.x25_c00489{left:253.584000px;}
.x58_c00489{left:257.428972px;}
.x2d_c00489{left:259.041732px;}
.x78_c00489{left:261.930893px;}
.x7_c00489{left:263.119500px;}
.x3c_c00489{left:265.974720px;}
.x44_c00489{left:267.580620px;}
.x68_c00489{left:271.015500px;}
.x1c_c00489{left:272.365500px;}
.x26_c00489{left:273.391344px;}
.x47_c00489{left:276.550374px;}
.xf_c00489{left:277.560000px;}
.x61_c00489{left:278.736150px;}
.x79_c00489{left:280.023120px;}
.x3f_c00489{left:284.509428px;}
.x7f_c00489{left:286.200000px;}
.x17_c00489{left:287.997000px;}
.x36_c00489{left:289.616706px;}
.x55_c00489{left:290.625218px;}
.x20_c00489{left:292.865424px;}
.x10_c00489{left:295.650000px;}
.x65_c00489{left:297.128055px;}
.x62_c00489{left:298.726358px;}
.x74_c00489{left:302.438183px;}
.x27_c00489{left:304.350252px;}
.x71_c00489{left:307.569239px;}
.x18_c00489{left:309.591000px;}
.x40_c00489{left:311.770104px;}
.x50_c00489{left:317.094000px;}
.x53_c00489{left:318.700800px;}
.x37_c00489{left:320.925834px;}
.x21_c00489{left:322.015020px;}
.x5a_c00489{left:323.033977px;}
.x6e_c00489{left:325.119153px;}
.x72_c00489{left:327.011849px;}
.x2e_c00489{left:328.430058px;}
.x5d_c00489{left:330.872827px;}
.x8_c00489{left:354.795000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fsf_c00489{font-size:49.472231pt;}
.fs7_c00489{font-size:52.270430pt;}
.fsd_c00489{font-size:52.272546pt;}
.fs16_c00489{font-size:52.274219pt;}
.fs12_c00489{font-size:53.205985pt;}
.fs19_c00489{font-size:53.207687pt;}
.fs1c_c00489{font-size:54.133333pt;}
.fsa_c00489{font-size:54.137231pt;}
.fs4_c00489{font-size:55.070631pt;}
.fs1b_c00489{font-size:55.074623pt;}
.fs1_c00489{font-size:56.004032pt;}
.fse_c00489{font-size:56.006300pt;}
.fs11_c00489{font-size:56.939738pt;}
.fs13_c00489{font-size:57.873176pt;}
.fs8_c00489{font-size:58.804233pt;}
.fs14_c00489{font-size:58.804968pt;}
.fs5_c00489{font-size:59.737634pt;}
.fs2_c00489{font-size:60.666667pt;}
.fs3_c00489{font-size:60.669700pt;}
.fs9_c00489{font-size:60.671035pt;}
.fs10_c00489{font-size:60.673491pt;}
.fsc_c00489{font-size:61.604435pt;}
.fsb_c00489{font-size:62.537836pt;}
.fs17_c00489{font-size:62.542369pt;}
.fs1a_c00489{font-size:64.409305pt;}
.fs1d_c00489{font-size:65.333333pt;}
.fs6_c00489{font-size:66.271438pt;}
.fs18_c00489{font-size:66.276242pt;}
.fs0_c00489{font-size:67.200000pt;}
.fs15_c00489{font-size:67.209710pt;}
.y0_c00489{bottom:0.000000pt;}
.yd7_c00489{bottom:30.446667pt;}
.yd6_c00489{bottom:45.602667pt;}
.yd2_c00489{bottom:59.986600pt;}
.yd3_c00489{bottom:59.986881pt;}
.yd4_c00489{bottom:59.987036pt;}
.yd5_c00489{bottom:59.987076pt;}
.yce_c00489{bottom:73.115304pt;}
.ycd_c00489{bottom:73.115763pt;}
.ycf_c00489{bottom:73.115951pt;}
.yd0_c00489{bottom:73.115969pt;}
.ycc_c00489{bottom:73.116121pt;}
.yd1_c00489{bottom:73.116281pt;}
.ycb_c00489{bottom:73.116423pt;}
.yca_c00489{bottom:73.116835pt;}
.yc9_c00489{bottom:88.550404pt;}
.yc8_c00489{bottom:88.550896pt;}
.yc5_c00489{bottom:88.551356pt;}
.yc6_c00489{bottom:88.551416pt;}
.yc7_c00489{bottom:88.551537pt;}
.yc4_c00489{bottom:88.551784pt;}
.ybe_c00489{bottom:103.952307pt;}
.yc1_c00489{bottom:103.952704pt;}
.yc0_c00489{bottom:103.952761pt;}
.ybf_c00489{bottom:103.952808pt;}
.yc2_c00489{bottom:103.952852pt;}
.yc3_c00489{bottom:103.952927pt;}
.yb8_c00489{bottom:119.228223pt;}
.yb9_c00489{bottom:119.228435pt;}
.yb7_c00489{bottom:119.228669pt;}
.ybd_c00489{bottom:119.228779pt;}
.yba_c00489{bottom:119.228880pt;}
.ybb_c00489{bottom:119.228944pt;}
.ybc_c00489{bottom:119.229160pt;}
.yb5_c00489{bottom:136.140661pt;}
.yb2_c00489{bottom:136.140793pt;}
.yb4_c00489{bottom:136.140833pt;}
.yb6_c00489{bottom:136.140924pt;}
.yb3_c00489{bottom:136.141155pt;}
.yb0_c00489{bottom:136.141383pt;}
.yb1_c00489{bottom:136.141416pt;}
.yaf_c00489{bottom:148.188979pt;}
.yae_c00489{bottom:148.366957pt;}
.yad_c00489{bottom:149.567611pt;}
.yac_c00489{bottom:150.245276pt;}
.yab_c00489{bottom:150.441093pt;}
.yaa_c00489{bottom:151.057423pt;}
.ya9_c00489{bottom:151.877661pt;}
.ya8_c00489{bottom:152.402667pt;}
.ya7_c00489{bottom:164.884485pt;}
.ya6_c00489{bottom:165.117775pt;}
.ya5_c00489{bottom:165.870527pt;}
.ya4_c00489{bottom:166.044623pt;}
.ya3_c00489{bottom:166.819215pt;}
.ya2_c00489{bottom:167.168793pt;}
.ya1_c00489{bottom:167.398928pt;}
.ya0_c00489{bottom:167.501871pt;}
.y9f_c00489{bottom:167.761333pt;}
.y9e_c00489{bottom:179.719247pt;}
.y9d_c00489{bottom:179.968333pt;}
.y9c_c00489{bottom:180.425373pt;}
.y9b_c00489{bottom:180.647553pt;}
.y9a_c00489{bottom:181.057520pt;}
.y99_c00489{bottom:181.503560pt;}
.y98_c00489{bottom:182.152673pt;}
.y97_c00489{bottom:182.871253pt;}
.y96_c00489{bottom:194.593287pt;}
.y95_c00489{bottom:194.877160pt;}
.y94_c00489{bottom:195.833440pt;}
.y93_c00489{bottom:196.467540pt;}
.y92_c00489{bottom:197.704433pt;}
.y91_c00489{bottom:197.950973pt;}
.y90_c00489{bottom:198.234667pt;}
.y8f_c00489{bottom:209.010673pt;}
.y8e_c00489{bottom:210.296040pt;}
.y8d_c00489{bottom:210.695327pt;}
.y8c_c00489{bottom:211.070667pt;}
.y8b_c00489{bottom:211.299633pt;}
.y8a_c00489{bottom:212.400147pt;}
.y89_c00489{bottom:213.354847pt;}
.y88_c00489{bottom:224.505320pt;}
.y87_c00489{bottom:225.383460pt;}
.y86_c00489{bottom:226.070340pt;}
.y85_c00489{bottom:227.010160pt;}
.y84_c00489{bottom:227.244140pt;}
.y83_c00489{bottom:228.235220pt;}
.y82_c00489{bottom:239.064740pt;}
.y81_c00489{bottom:240.079360pt;}
.y80_c00489{bottom:241.154407pt;}
.y7f_c00489{bottom:241.472247pt;}
.y7e_c00489{bottom:241.795707pt;}
.y7d_c00489{bottom:242.570987pt;}
.y7c_c00489{bottom:242.798093pt;}
.y7b_c00489{bottom:243.116973pt;}
.y7a_c00489{bottom:254.736140pt;}
.y79_c00489{bottom:255.761380pt;}
.y78_c00489{bottom:256.702167pt;}
.y77_c00489{bottom:257.013847pt;}
.y76_c00489{bottom:257.605620pt;}
.y75_c00489{bottom:257.785527pt;}
.y74_c00489{bottom:258.237467pt;}
.y73_c00489{bottom:269.214473pt;}
.y72_c00489{bottom:269.529753pt;}
.y71_c00489{bottom:269.818500pt;}
.y70_c00489{bottom:270.878807pt;}
.y6f_c00489{bottom:271.654027pt;}
.y6e_c00489{bottom:271.900507pt;}
.y6d_c00489{bottom:272.557480pt;}
.y6c_c00489{bottom:273.120827pt;}
.y6b_c00489{bottom:284.599353pt;}
.y6a_c00489{bottom:284.970173pt;}
.y69_c00489{bottom:285.924273pt;}
.y68_c00489{bottom:286.237553pt;}
.y67_c00489{bottom:286.536313pt;}
.y66_c00489{bottom:287.241893pt;}
.y65_c00489{bottom:287.922533pt;}
.y64_c00489{bottom:288.245333pt;}
.y63_c00489{bottom:300.182213pt;}
.y62_c00489{bottom:301.114997pt;}
.y61_c00489{bottom:301.580597pt;}
.y60_c00489{bottom:302.407813pt;}
.y5f_c00489{bottom:302.947451pt;}
.y5e_c00489{bottom:303.272352pt;}
.y5d_c00489{bottom:303.452853pt;}
.y5c_c00489{bottom:303.591008pt;}
.y5b_c00489{bottom:315.815125pt;}
.y5a_c00489{bottom:316.037515pt;}
.y59_c00489{bottom:316.383429pt;}
.y58_c00489{bottom:317.054725pt;}
.y57_c00489{bottom:317.506544pt;}
.y56_c00489{bottom:317.887653pt;}
.y55_c00489{bottom:318.714869pt;}
.y54_c00489{bottom:331.931467pt;}
.y53_c00489{bottom:331.931861pt;}
.y4f_c00489{bottom:331.932197pt;}
.y50_c00489{bottom:331.932299pt;}
.y51_c00489{bottom:331.932453pt;}
.y52_c00489{bottom:331.932485pt;}
.y4e_c00489{bottom:345.646155pt;}
.y4d_c00489{bottom:345.960939pt;}
.y4c_c00489{bottom:346.913488pt;}
.y4b_c00489{bottom:347.169744pt;}
.y4a_c00489{bottom:347.849232pt;}
.y49_c00489{bottom:348.002752pt;}
.y48_c00489{bottom:348.717067pt;}
.y47_c00489{bottom:359.050128pt;}
.y46_c00489{bottom:360.219333pt;}
.y45_c00489{bottom:360.527989pt;}
.y44_c00489{bottom:361.070037pt;}
.y43_c00489{bottom:362.143493pt;}
.y42_c00489{bottom:363.438608pt;}
.y41_c00489{bottom:364.319509pt;}
.y40_c00489{bottom:375.532811pt;}
.y3f_c00489{bottom:376.005461pt;}
.y3e_c00489{bottom:376.589669pt;}
.y3d_c00489{bottom:376.961627pt;}
.y3c_c00489{bottom:377.182352pt;}
.y3b_c00489{bottom:377.422283pt;}
.y3a_c00489{bottom:378.251915pt;}
.y39_c00489{bottom:378.610944pt;}
.y38_c00489{bottom:378.793717pt;}
.y37_c00489{bottom:379.678869pt;}
.y33_c00489{bottom:390.779776pt;}
.y32_c00489{bottom:390.779781pt;}
.y30_c00489{bottom:390.779808pt;}
.y34_c00489{bottom:390.779845pt;}
.y31_c00489{bottom:390.779925pt;}
.y35_c00489{bottom:390.780053pt;}
.y36_c00489{bottom:390.780587pt;}
.y2f_c00489{bottom:405.214384pt;}
.y2e_c00489{bottom:406.078544pt;}
.y2d_c00489{bottom:406.387552pt;}
.y2c_c00489{bottom:406.577595pt;}
.y2b_c00489{bottom:407.428416pt;}
.y2a_c00489{bottom:407.757451pt;}
.y29_c00489{bottom:408.342603pt;}
.y28_c00489{bottom:408.717824pt;}
.y27_c00489{bottom:420.450725pt;}
.y26_c00489{bottom:420.972981pt;}
.y25_c00489{bottom:421.306944pt;}
.y24_c00489{bottom:421.792827pt;}
.y23_c00489{bottom:423.098656pt;}
.y22_c00489{bottom:423.561067pt;}
.y21_c00489{bottom:424.800043pt;}
.y20_c00489{bottom:435.765867pt;}
.y1f_c00489{bottom:436.180811pt;}
.y1e_c00489{bottom:436.831141pt;}
.y1d_c00489{bottom:437.391605pt;}
.y1c_c00489{bottom:437.855621pt;}
.y1b_c00489{bottom:438.797813pt;}
.y1a_c00489{bottom:439.436197pt;}
.y19_c00489{bottom:439.681787pt;}
.y18_c00489{bottom:451.194533pt;}
.y17_c00489{bottom:451.444309pt;}
.y16_c00489{bottom:452.257205pt;}
.y15_c00489{bottom:452.643205pt;}
.y14_c00489{bottom:453.409509pt;}
.y13_c00489{bottom:453.680133pt;}
.y12_c00489{bottom:453.841333pt;}
.y11_c00489{bottom:466.856307pt;}
.y10_c00489{bottom:467.048253pt;}
.yf_c00489{bottom:467.461080pt;}
.ye_c00489{bottom:468.006000pt;}
.yd_c00489{bottom:468.188013pt;}
.yc_c00489{bottom:468.593827pt;}
.yb_c00489{bottom:469.064493pt;}
.ya_c00489{bottom:469.201333pt;}
.y9_c00489{bottom:482.765333pt;}
.y8_c00489{bottom:495.939381pt;}
.y7_c00489{bottom:496.917253pt;}
.y6_c00489{bottom:497.277461pt;}
.y5_c00489{bottom:497.848037pt;}
.y4_c00489{bottom:498.207669pt;}
.y3_c00489{bottom:498.421045pt;}
.y2_c00489{bottom:499.201333pt;}
.y1_c00489{bottom:509.520000pt;}
.h11_c00489{height:49.472231pt;}
.h9_c00489{height:52.270430pt;}
.hf_c00489{height:52.272546pt;}
.h18_c00489{height:52.274219pt;}
.h14_c00489{height:53.205985pt;}
.h1b_c00489{height:53.207687pt;}
.h1e_c00489{height:54.133333pt;}
.hc_c00489{height:54.137231pt;}
.h6_c00489{height:55.070631pt;}
.h1d_c00489{height:55.074623pt;}
.h3_c00489{height:56.004032pt;}
.h10_c00489{height:56.006300pt;}
.h13_c00489{height:56.939738pt;}
.h15_c00489{height:57.873176pt;}
.ha_c00489{height:58.804233pt;}
.h16_c00489{height:58.804968pt;}
.h7_c00489{height:59.737634pt;}
.h4_c00489{height:60.666667pt;}
.h5_c00489{height:60.669700pt;}
.hb_c00489{height:60.671035pt;}
.h12_c00489{height:60.673491pt;}
.he_c00489{height:61.604435pt;}
.hd_c00489{height:62.537836pt;}
.h19_c00489{height:62.542369pt;}
.h1c_c00489{height:64.409305pt;}
.h1f_c00489{height:65.333333pt;}
.h8_c00489{height:66.271438pt;}
.h1a_c00489{height:66.276242pt;}
.h2_c00489{height:67.200000pt;}
.h17_c00489{height:67.209710pt;}
.h0_c00489{height:549.066667pt;}
.h1_c00489{height:549.333333pt;}
.w0_c00489{width:319.200000pt;}
.w1_c00489{width:319.333333pt;}
.x0_c00489{left:0.000000pt;}
.x48_c00489{left:29.295376pt;}
.x7a_c00489{left:35.999459pt;}
.x66_c00489{left:37.552000pt;}
.x4a_c00489{left:38.796000pt;}
.x11_c00489{left:40.689333pt;}
.x19_c00489{left:42.350667pt;}
.x2_c00489{left:43.544000pt;}
.x12_c00489{left:54.373333pt;}
.x5e_c00489{left:55.736367pt;}
.x9_c00489{left:56.640000pt;}
.x56_c00489{left:58.868293pt;}
.x4b_c00489{left:60.316000pt;}
.x77_c00489{left:62.162160pt;}
.x7b_c00489{left:63.363369pt;}
.x67_c00489{left:65.429333pt;}
.x28_c00489{left:68.480523pt;}
.x5f_c00489{left:71.105460pt;}
.x57_c00489{left:73.030740pt;}
.x51_c00489{left:74.470093pt;}
.x7d_c00489{left:77.040000pt;}
.x1a_c00489{left:78.336000pt;}
.x38_c00489{left:83.054517pt;}
.xa_c00489{left:84.240000pt;}
.x6c_c00489{left:85.926808pt;}
.x6f_c00489{left:86.886311pt;}
.x41_c00489{left:89.758795pt;}
.x30_c00489{left:93.425579pt;}
.x5b_c00489{left:94.639140pt;}
.x3d_c00489{left:95.859157pt;}
.x1d_c00489{left:96.804677pt;}
.x13_c00489{left:101.440000pt;}
.x75_c00489{left:102.969601pt;}
.x31_c00489{left:104.211605pt;}
.x4c_c00489{left:105.692000pt;}
.x22_c00489{left:106.796635pt;}
.x3_c00489{left:108.568000pt;}
.x29_c00489{left:110.242181pt;}
.x52_c00489{left:115.512140pt;}
.x69_c00489{left:117.169333pt;}
.x49_c00489{left:120.338288pt;}
.x2f_c00489{left:122.401563pt;}
.x32_c00489{left:125.351675pt;}
.x4_c00489{left:126.349333pt;}
.x23_c00489{left:131.106587pt;}
.x45_c00489{left:132.849248pt;}
.x2a_c00489{left:133.772288pt;}
.x54_c00489{left:135.444700pt;}
.x63_c00489{left:136.713260pt;}
.x7c_c00489{left:139.454689pt;}
.x42_c00489{left:140.642123pt;}
.x14_c00489{left:142.021333pt;}
.xb_c00489{left:143.040000pt;}
.x39_c00489{left:144.751861pt;}
.x76_c00489{left:147.135696pt;}
.x60_c00489{left:148.408300pt;}
.x70_c00489{left:150.735428pt;}
.x4d_c00489{left:152.730667pt;}
.x5_c00489{left:156.318667pt;}
.x15_c00489{left:160.222667pt;}
.x1_c00489{left:162.240000pt;}
.x6a_c00489{left:164.942667pt;}
.x46_c00489{left:167.611499pt;}
.xc_c00489{left:169.200000pt;}
.x7e_c00489{left:170.160000pt;}
.x4e_c00489{left:172.648000pt;}
.x1b_c00489{left:174.361333pt;}
.x43_c00489{left:176.644640pt;}
.x3e_c00489{left:179.630149pt;}
.xd_c00489{left:180.720000pt;}
.x59_c00489{left:182.806647pt;}
.x1e_c00489{left:184.651120pt;}
.x33_c00489{left:188.255899pt;}
.x6d_c00489{left:191.541317pt;}
.x73_c00489{left:192.502552pt;}
.x4f_c00489{left:193.533333pt;}
.x2b_c00489{left:194.561499pt;}
.x3a_c00489{left:195.867675pt;}
.xe_c00489{left:197.520000pt;}
.x24_c00489{left:199.808811pt;}
.x34_c00489{left:201.204448pt;}
.x6_c00489{left:203.866667pt;}
.x6b_c00489{left:204.805333pt;}
.x2c_c00489{left:208.175845pt;}
.x64_c00489{left:213.749087pt;}
.x16_c00489{left:214.714667pt;}
.x5c_c00489{left:218.464773pt;}
.x1f_c00489{left:219.688107pt;}
.x3b_c00489{left:221.702224pt;}
.x35_c00489{left:223.088469pt;}
.x25_c00489{left:225.408000pt;}
.x58_c00489{left:228.825753pt;}
.x2d_c00489{left:230.259317pt;}
.x78_c00489{left:232.827460pt;}
.x7_c00489{left:233.884000pt;}
.x3c_c00489{left:236.421973pt;}
.x44_c00489{left:237.849440pt;}
.x68_c00489{left:240.902667pt;}
.x1c_c00489{left:242.102667pt;}
.x26_c00489{left:243.014528pt;}
.x47_c00489{left:245.822555pt;}
.xf_c00489{left:246.720000pt;}
.x61_c00489{left:247.765467pt;}
.x79_c00489{left:248.909440pt;}
.x3f_c00489{left:252.897269pt;}
.x7f_c00489{left:254.400000pt;}
.x17_c00489{left:255.997333pt;}
.x36_c00489{left:257.437072pt;}
.x55_c00489{left:258.333527pt;}
.x20_c00489{left:260.324821pt;}
.x10_c00489{left:262.800000pt;}
.x65_c00489{left:264.113827pt;}
.x62_c00489{left:265.534540pt;}
.x74_c00489{left:268.833940pt;}
.x27_c00489{left:270.533557pt;}
.x71_c00489{left:273.394879pt;}
.x18_c00489{left:275.192000pt;}
.x40_c00489{left:277.128981pt;}
.x50_c00489{left:281.861333pt;}
.x53_c00489{left:283.289600pt;}
.x37_c00489{left:285.267408pt;}
.x21_c00489{left:286.235573pt;}
.x5a_c00489{left:287.141313pt;}
.x6e_c00489{left:288.994803pt;}
.x72_c00489{left:290.677199pt;}
.x2e_c00489{left:291.937829pt;}
.x5d_c00489{left:294.109180pt;}
.x8_c00489{left:315.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00490 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00490 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00490 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00490 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00490{transform:matrix(0.040288,-0.001331,0.008254,0.249864,0,0);-ms-transform:matrix(0.040288,-0.001331,0.008254,0.249864,0,0);-webkit-transform:matrix(0.040288,-0.001331,0.008254,0.249864,0,0);}
.mf9_c00490{transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);}
.m8a_c00490{transform:matrix(0.104749,-0.003565,0.008504,0.249855,0,0);-ms-transform:matrix(0.104749,-0.003565,0.008504,0.249855,0,0);-webkit-transform:matrix(0.104749,-0.003565,0.008504,0.249855,0,0);}
.m6c_c00490{transform:matrix(0.133188,-0.002664,0.004999,0.249950,0,0);-ms-transform:matrix(0.133188,-0.002664,0.004999,0.249950,0,0);-webkit-transform:matrix(0.133188,-0.002664,0.004999,0.249950,0,0);}
.m71_c00490{transform:matrix(0.144191,-0.002884,0.004999,0.249950,0,0);-ms-transform:matrix(0.144191,-0.002884,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144191,-0.002884,0.004999,0.249950,0,0);}
.m6a_c00490{transform:matrix(0.144676,-0.002894,0.004999,0.249950,0,0);-ms-transform:matrix(0.144676,-0.002894,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144676,-0.002894,0.004999,0.249950,0,0);}
.m33_c00490{transform:matrix(0.146920,-0.004853,0.008254,0.249864,0,0);-ms-transform:matrix(0.146920,-0.004853,0.008254,0.249864,0,0);-webkit-transform:matrix(0.146920,-0.004853,0.008254,0.249864,0,0);}
.m5d_c00490{transform:matrix(0.147680,-0.002954,0.004999,0.249950,0,0);-ms-transform:matrix(0.147680,-0.002954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147680,-0.002954,0.004999,0.249950,0,0);}
.m2f_c00490{transform:matrix(0.149144,-0.004927,0.008254,0.249864,0,0);-ms-transform:matrix(0.149144,-0.004927,0.008254,0.249864,0,0);-webkit-transform:matrix(0.149144,-0.004927,0.008254,0.249864,0,0);}
.m6d_c00490{transform:matrix(0.152769,-0.003055,0.004999,0.249950,0,0);-ms-transform:matrix(0.152769,-0.003055,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152769,-0.003055,0.004999,0.249950,0,0);}
.m2d_c00490{transform:matrix(0.155135,-0.005125,0.008254,0.249864,0,0);-ms-transform:matrix(0.155135,-0.005125,0.008254,0.249864,0,0);-webkit-transform:matrix(0.155135,-0.005125,0.008254,0.249864,0,0);}
.m9_c00490{transform:matrix(0.156824,-0.005180,0.008254,0.249864,0,0);-ms-transform:matrix(0.156824,-0.005180,0.008254,0.249864,0,0);-webkit-transform:matrix(0.156824,-0.005180,0.008254,0.249864,0,0);}
.m5e_c00490{transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);-ms-transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157049,-0.003141,0.004999,0.249950,0,0);}
.m4b_c00490{transform:matrix(0.159178,-0.003184,0.004999,0.249950,0,0);-ms-transform:matrix(0.159178,-0.003184,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159178,-0.003184,0.004999,0.249950,0,0);}
.m70_c00490{transform:matrix(0.159393,-0.003188,0.004999,0.249950,0,0);-ms-transform:matrix(0.159393,-0.003188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159393,-0.003188,0.004999,0.249950,0,0);}
.m99_c00490{transform:matrix(0.160112,-0.005449,0.008504,0.249855,0,0);-ms-transform:matrix(0.160112,-0.005449,0.008504,0.249855,0,0);-webkit-transform:matrix(0.160112,-0.005449,0.008504,0.249855,0,0);}
.m72_c00490{transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);-ms-transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160233,-0.003205,0.004999,0.249950,0,0);}
.ma4_c00490{transform:matrix(0.160467,-0.005461,0.008504,0.249855,0,0);-ms-transform:matrix(0.160467,-0.005461,0.008504,0.249855,0,0);-webkit-transform:matrix(0.160467,-0.005461,0.008504,0.249855,0,0);}
.mbd_c00490{transform:matrix(0.161247,-0.005488,0.008504,0.249855,0,0);-ms-transform:matrix(0.161247,-0.005488,0.008504,0.249855,0,0);-webkit-transform:matrix(0.161247,-0.005488,0.008504,0.249855,0,0);}
.m68_c00490{transform:matrix(0.161713,-0.003234,0.004999,0.249950,0,0);-ms-transform:matrix(0.161713,-0.003234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161713,-0.003234,0.004999,0.249950,0,0);}
.ma8_c00490{transform:matrix(0.161836,-0.005508,0.008504,0.249855,0,0);-ms-transform:matrix(0.161836,-0.005508,0.008504,0.249855,0,0);-webkit-transform:matrix(0.161836,-0.005508,0.008504,0.249855,0,0);}
.m7e_c00490{transform:matrix(0.162126,-0.005518,0.008504,0.249855,0,0);-ms-transform:matrix(0.162126,-0.005518,0.008504,0.249855,0,0);-webkit-transform:matrix(0.162126,-0.005518,0.008504,0.249855,0,0);}
.mf4_c00490{transform:matrix(0.162586,-0.005533,0.008504,0.249855,0,0);-ms-transform:matrix(0.162586,-0.005533,0.008504,0.249855,0,0);-webkit-transform:matrix(0.162586,-0.005533,0.008504,0.249855,0,0);}
.m43_c00490{transform:matrix(0.163072,-0.003261,0.004999,0.249950,0,0);-ms-transform:matrix(0.163072,-0.003261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163072,-0.003261,0.004999,0.249950,0,0);}
.me9_c00490{transform:matrix(0.163700,-0.005571,0.008504,0.249855,0,0);-ms-transform:matrix(0.163700,-0.005571,0.008504,0.249855,0,0);-webkit-transform:matrix(0.163700,-0.005571,0.008504,0.249855,0,0);}
.m14_c00490{transform:matrix(0.165240,-0.005458,0.008254,0.249864,0,0);-ms-transform:matrix(0.165240,-0.005458,0.008254,0.249864,0,0);-webkit-transform:matrix(0.165240,-0.005458,0.008254,0.249864,0,0);}
.m1d_c00490{transform:matrix(0.165645,-0.005472,0.008254,0.249864,0,0);-ms-transform:matrix(0.165645,-0.005472,0.008254,0.249864,0,0);-webkit-transform:matrix(0.165645,-0.005472,0.008254,0.249864,0,0);}
.m90_c00490{transform:matrix(0.166254,-0.005658,0.008504,0.249855,0,0);-ms-transform:matrix(0.166254,-0.005658,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166254,-0.005658,0.008504,0.249855,0,0);}
.mb2_c00490{transform:matrix(0.166414,-0.005664,0.008504,0.249855,0,0);-ms-transform:matrix(0.166414,-0.005664,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166414,-0.005664,0.008504,0.249855,0,0);}
.m9e_c00490{transform:matrix(0.166688,-0.005673,0.008504,0.249855,0,0);-ms-transform:matrix(0.166688,-0.005673,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166688,-0.005673,0.008504,0.249855,0,0);}
.m1b_c00490{transform:matrix(0.167024,-0.005517,0.008254,0.249864,0,0);-ms-transform:matrix(0.167024,-0.005517,0.008254,0.249864,0,0);-webkit-transform:matrix(0.167024,-0.005517,0.008254,0.249864,0,0);}
.mf1_c00490{transform:matrix(0.167058,-0.005686,0.008504,0.249855,0,0);-ms-transform:matrix(0.167058,-0.005686,0.008504,0.249855,0,0);-webkit-transform:matrix(0.167058,-0.005686,0.008504,0.249855,0,0);}
.m76_c00490{transform:matrix(0.167721,-0.003354,0.004999,0.249950,0,0);-ms-transform:matrix(0.167721,-0.003354,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167721,-0.003354,0.004999,0.249950,0,0);}
.m7a_c00490{transform:matrix(0.167808,-0.005711,0.008504,0.249855,0,0);-ms-transform:matrix(0.167808,-0.005711,0.008504,0.249855,0,0);-webkit-transform:matrix(0.167808,-0.005711,0.008504,0.249855,0,0);}
.ma5_c00490{transform:matrix(0.167848,-0.005713,0.008504,0.249855,0,0);-ms-transform:matrix(0.167848,-0.005713,0.008504,0.249855,0,0);-webkit-transform:matrix(0.167848,-0.005713,0.008504,0.249855,0,0);}
.m5c_c00490{transform:matrix(0.168331,-0.003367,0.004999,0.249950,0,0);-ms-transform:matrix(0.168331,-0.003367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168331,-0.003367,0.004999,0.249950,0,0);}
.mf8_c00490{transform:matrix(0.168957,-0.005750,0.008504,0.249855,0,0);-ms-transform:matrix(0.168957,-0.005750,0.008504,0.249855,0,0);-webkit-transform:matrix(0.168957,-0.005750,0.008504,0.249855,0,0);}
.m45_c00490{transform:matrix(0.169386,-0.003388,0.004999,0.249950,0,0);-ms-transform:matrix(0.169386,-0.003388,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169386,-0.003388,0.004999,0.249950,0,0);}
.m35_c00490{transform:matrix(0.169617,-0.005603,0.008254,0.249864,0,0);-ms-transform:matrix(0.169617,-0.005603,0.008254,0.249864,0,0);-webkit-transform:matrix(0.169617,-0.005603,0.008254,0.249864,0,0);}
.m11_c00490{transform:matrix(0.169662,-0.005604,0.008254,0.249864,0,0);-ms-transform:matrix(0.169662,-0.005604,0.008254,0.249864,0,0);-webkit-transform:matrix(0.169662,-0.005604,0.008254,0.249864,0,0);}
.mbb_c00490{transform:matrix(0.170122,-0.005790,0.008504,0.249855,0,0);-ms-transform:matrix(0.170122,-0.005790,0.008504,0.249855,0,0);-webkit-transform:matrix(0.170122,-0.005790,0.008504,0.249855,0,0);}
.m69_c00490{transform:matrix(0.170216,-0.003404,0.004999,0.249950,0,0);-ms-transform:matrix(0.170216,-0.003404,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170216,-0.003404,0.004999,0.249950,0,0);}
.m34_c00490{transform:matrix(0.170247,-0.005624,0.008254,0.249864,0,0);-ms-transform:matrix(0.170247,-0.005624,0.008254,0.249864,0,0);-webkit-transform:matrix(0.170247,-0.005624,0.008254,0.249864,0,0);}
.m3a_c00490{transform:matrix(0.170612,-0.005636,0.008254,0.249864,0,0);-ms-transform:matrix(0.170612,-0.005636,0.008254,0.249864,0,0);-webkit-transform:matrix(0.170612,-0.005636,0.008254,0.249864,0,0);}
.m6f_c00490{transform:matrix(0.170621,-0.003412,0.004999,0.249950,0,0);-ms-transform:matrix(0.170621,-0.003412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170621,-0.003412,0.004999,0.249950,0,0);}
.m59_c00490{transform:matrix(0.171491,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171491,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171491,-0.003430,0.004999,0.249950,0,0);}
.ma6_c00490{transform:matrix(0.172120,-0.005858,0.008504,0.249855,0,0);-ms-transform:matrix(0.172120,-0.005858,0.008504,0.249855,0,0);-webkit-transform:matrix(0.172120,-0.005858,0.008504,0.249855,0,0);}
.m53_c00490{transform:matrix(0.173170,-0.003463,0.004999,0.249950,0,0);-ms-transform:matrix(0.173170,-0.003463,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173170,-0.003463,0.004999,0.249950,0,0);}
.m36_c00490{transform:matrix(0.173555,-0.005733,0.008254,0.249864,0,0);-ms-transform:matrix(0.173555,-0.005733,0.008254,0.249864,0,0);-webkit-transform:matrix(0.173555,-0.005733,0.008254,0.249864,0,0);}
.m24_c00490{transform:matrix(0.173745,-0.005739,0.008254,0.249864,0,0);-ms-transform:matrix(0.173745,-0.005739,0.008254,0.249864,0,0);-webkit-transform:matrix(0.173745,-0.005739,0.008254,0.249864,0,0);}
.m7b_c00490{transform:matrix(0.173899,-0.005918,0.008504,0.249855,0,0);-ms-transform:matrix(0.173899,-0.005918,0.008504,0.249855,0,0);-webkit-transform:matrix(0.173899,-0.005918,0.008504,0.249855,0,0);}
.m39_c00490{transform:matrix(0.174320,-0.005758,0.008254,0.249864,0,0);-ms-transform:matrix(0.174320,-0.005758,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174320,-0.005758,0.008254,0.249864,0,0);}
.m1c_c00490{transform:matrix(0.174740,-0.005772,0.008254,0.249864,0,0);-ms-transform:matrix(0.174740,-0.005772,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174740,-0.005772,0.008254,0.249864,0,0);}
.ma_c00490{transform:matrix(0.174780,-0.005774,0.008254,0.249864,0,0);-ms-transform:matrix(0.174780,-0.005774,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174780,-0.005774,0.008254,0.249864,0,0);}
.m30_c00490{transform:matrix(0.174930,-0.005778,0.008254,0.249864,0,0);-ms-transform:matrix(0.174930,-0.005778,0.008254,0.249864,0,0);-webkit-transform:matrix(0.174930,-0.005778,0.008254,0.249864,0,0);}
.meb_c00490{transform:matrix(0.175084,-0.005959,0.008504,0.249855,0,0);-ms-transform:matrix(0.175084,-0.005959,0.008504,0.249855,0,0);-webkit-transform:matrix(0.175084,-0.005959,0.008504,0.249855,0,0);}
.mc2_c00490{transform:matrix(0.175089,-0.005959,0.008504,0.249855,0,0);-ms-transform:matrix(0.175089,-0.005959,0.008504,0.249855,0,0);-webkit-transform:matrix(0.175089,-0.005959,0.008504,0.249855,0,0);}
.m5b_c00490{transform:matrix(0.175290,-0.003506,0.004999,0.249950,0,0);-ms-transform:matrix(0.175290,-0.003506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175290,-0.003506,0.004999,0.249950,0,0);}
.m52_c00490{transform:matrix(0.175320,-0.003506,0.004999,0.249950,0,0);-ms-transform:matrix(0.175320,-0.003506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175320,-0.003506,0.004999,0.249950,0,0);}
.m3_c00490{transform:matrix(0.175579,-0.005800,0.008254,0.249864,0,0);-ms-transform:matrix(0.175579,-0.005800,0.008254,0.249864,0,0);-webkit-transform:matrix(0.175579,-0.005800,0.008254,0.249864,0,0);}
.m67_c00490{transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);-ms-transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175930,-0.003519,0.004999,0.249950,0,0);}
.mf0_c00490{transform:matrix(0.176233,-0.005998,0.008504,0.249855,0,0);-ms-transform:matrix(0.176233,-0.005998,0.008504,0.249855,0,0);-webkit-transform:matrix(0.176233,-0.005998,0.008504,0.249855,0,0);}
.mb9_c00490{transform:matrix(0.176463,-0.006006,0.008504,0.249855,0,0);-ms-transform:matrix(0.176463,-0.006006,0.008504,0.249855,0,0);-webkit-transform:matrix(0.176463,-0.006006,0.008504,0.249855,0,0);}
.mb4_c00490{transform:matrix(0.176653,-0.006012,0.008504,0.249855,0,0);-ms-transform:matrix(0.176653,-0.006012,0.008504,0.249855,0,0);-webkit-transform:matrix(0.176653,-0.006012,0.008504,0.249855,0,0);}
.m49_c00490{transform:matrix(0.177939,-0.003559,0.004999,0.249950,0,0);-ms-transform:matrix(0.177939,-0.003559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177939,-0.003559,0.004999,0.249950,0,0);}
.ma0_c00490{transform:matrix(0.179101,-0.006096,0.008504,0.249855,0,0);-ms-transform:matrix(0.179101,-0.006096,0.008504,0.249855,0,0);-webkit-transform:matrix(0.179101,-0.006096,0.008504,0.249855,0,0);}
.mc5_c00490{transform:matrix(0.179341,-0.006104,0.008504,0.249855,0,0);-ms-transform:matrix(0.179341,-0.006104,0.008504,0.249855,0,0);-webkit-transform:matrix(0.179341,-0.006104,0.008504,0.249855,0,0);}
.m10_c00490{transform:matrix(0.179992,-0.005946,0.008254,0.249864,0,0);-ms-transform:matrix(0.179992,-0.005946,0.008254,0.249864,0,0);-webkit-transform:matrix(0.179992,-0.005946,0.008254,0.249864,0,0);}
.me2_c00490{transform:matrix(0.180126,-0.006130,0.008504,0.249855,0,0);-ms-transform:matrix(0.180126,-0.006130,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180126,-0.006130,0.008504,0.249855,0,0);}
.m7c_c00490{transform:matrix(0.180481,-0.006142,0.008504,0.249855,0,0);-ms-transform:matrix(0.180481,-0.006142,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180481,-0.006142,0.008504,0.249855,0,0);}
.m21_c00490{transform:matrix(0.180731,-0.005970,0.008254,0.249864,0,0);-ms-transform:matrix(0.180731,-0.005970,0.008254,0.249864,0,0);-webkit-transform:matrix(0.180731,-0.005970,0.008254,0.249864,0,0);}
.m7f_c00490{transform:matrix(0.180875,-0.006156,0.008504,0.249855,0,0);-ms-transform:matrix(0.180875,-0.006156,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180875,-0.006156,0.008504,0.249855,0,0);}
.m44_c00490{transform:matrix(0.181319,-0.003626,0.004999,0.249950,0,0);-ms-transform:matrix(0.181319,-0.003626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181319,-0.003626,0.004999,0.249950,0,0);}
.mf2_c00490{transform:matrix(0.182185,-0.006200,0.008504,0.249855,0,0);-ms-transform:matrix(0.182185,-0.006200,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182185,-0.006200,0.008504,0.249855,0,0);}
.m47_c00490{transform:matrix(0.182194,-0.003644,0.004999,0.249950,0,0);-ms-transform:matrix(0.182194,-0.003644,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182194,-0.003644,0.004999,0.249950,0,0);}
.m42_c00490{transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);-ms-transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182828,-0.003657,0.004999,0.249950,0,0);}
.m4f_c00490{transform:matrix(0.183108,-0.003662,0.004999,0.249950,0,0);-ms-transform:matrix(0.183108,-0.003662,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183108,-0.003662,0.004999,0.249950,0,0);}
.m88_c00490{transform:matrix(0.183289,-0.006238,0.008504,0.249855,0,0);-ms-transform:matrix(0.183289,-0.006238,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183289,-0.006238,0.008504,0.249855,0,0);}
.mb3_c00490{transform:matrix(0.183404,-0.006242,0.008504,0.249855,0,0);-ms-transform:matrix(0.183404,-0.006242,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183404,-0.006242,0.008504,0.249855,0,0);}
.m65_c00490{transform:matrix(0.183873,-0.003677,0.004999,0.249950,0,0);-ms-transform:matrix(0.183873,-0.003677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183873,-0.003677,0.004999,0.249950,0,0);}
.mc8_c00490{transform:matrix(0.184018,-0.006263,0.008504,0.249855,0,0);-ms-transform:matrix(0.184018,-0.006263,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184018,-0.006263,0.008504,0.249855,0,0);}
.m0_c00490{transform:matrix(0.184230,-0.006086,0.008254,0.249864,0,0);-ms-transform:matrix(0.184230,-0.006086,0.008254,0.249864,0,0);-webkit-transform:matrix(0.184230,-0.006086,0.008254,0.249864,0,0);}
.me0_c00490{transform:matrix(0.184558,-0.006281,0.008504,0.249855,0,0);-ms-transform:matrix(0.184558,-0.006281,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184558,-0.006281,0.008504,0.249855,0,0);}
.m91_c00490{transform:matrix(0.184608,-0.006283,0.008504,0.249855,0,0);-ms-transform:matrix(0.184608,-0.006283,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184608,-0.006283,0.008504,0.249855,0,0);}
.m19_c00490{transform:matrix(0.184994,-0.006111,0.008254,0.249864,0,0);-ms-transform:matrix(0.184994,-0.006111,0.008254,0.249864,0,0);-webkit-transform:matrix(0.184994,-0.006111,0.008254,0.249864,0,0);}
.mbe_c00490{transform:matrix(0.185098,-0.006300,0.008504,0.249855,0,0);-ms-transform:matrix(0.185098,-0.006300,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185098,-0.006300,0.008504,0.249855,0,0);}
.mc0_c00490{transform:matrix(0.185797,-0.006323,0.008504,0.249855,0,0);-ms-transform:matrix(0.185797,-0.006323,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185797,-0.006323,0.008504,0.249855,0,0);}
.m27_c00490{transform:matrix(0.186388,-0.006157,0.008254,0.249864,0,0);-ms-transform:matrix(0.186388,-0.006157,0.008254,0.249864,0,0);-webkit-transform:matrix(0.186388,-0.006157,0.008254,0.249864,0,0);}
.m75_c00490{transform:matrix(0.186848,-0.003737,0.004999,0.249950,0,0);-ms-transform:matrix(0.186848,-0.003737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186848,-0.003737,0.004999,0.249950,0,0);}
.mbf_c00490{transform:matrix(0.187017,-0.006365,0.008504,0.249855,0,0);-ms-transform:matrix(0.187017,-0.006365,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187017,-0.006365,0.008504,0.249855,0,0);}
.mc_c00490{transform:matrix(0.187058,-0.006179,0.008254,0.249864,0,0);-ms-transform:matrix(0.187058,-0.006179,0.008254,0.249864,0,0);-webkit-transform:matrix(0.187058,-0.006179,0.008254,0.249864,0,0);}
.m4d_c00490{transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);}
.m8e_c00490{transform:matrix(0.187147,-0.006369,0.008504,0.249855,0,0);-ms-transform:matrix(0.187147,-0.006369,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187147,-0.006369,0.008504,0.249855,0,0);}
.m80_c00490{transform:matrix(0.187302,-0.006375,0.008504,0.249855,0,0);-ms-transform:matrix(0.187302,-0.006375,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187302,-0.006375,0.008504,0.249855,0,0);}
.me1_c00490{transform:matrix(0.188766,-0.006424,0.008504,0.249855,0,0);-ms-transform:matrix(0.188766,-0.006424,0.008504,0.249855,0,0);-webkit-transform:matrix(0.188766,-0.006424,0.008504,0.249855,0,0);}
.me4_c00490{transform:matrix(0.189270,-0.006442,0.008504,0.249855,0,0);-ms-transform:matrix(0.189270,-0.006442,0.008504,0.249855,0,0);-webkit-transform:matrix(0.189270,-0.006442,0.008504,0.249855,0,0);}
.m1a_c00490{transform:matrix(0.189577,-0.006262,0.008254,0.249864,0,0);-ms-transform:matrix(0.189577,-0.006262,0.008254,0.249864,0,0);-webkit-transform:matrix(0.189577,-0.006262,0.008254,0.249864,0,0);}
.m9c_c00490{transform:matrix(0.190170,-0.006472,0.008504,0.249855,0,0);-ms-transform:matrix(0.190170,-0.006472,0.008504,0.249855,0,0);-webkit-transform:matrix(0.190170,-0.006472,0.008504,0.249855,0,0);}
.m18_c00490{transform:matrix(0.190436,-0.006291,0.008254,0.249864,0,0);-ms-transform:matrix(0.190436,-0.006291,0.008254,0.249864,0,0);-webkit-transform:matrix(0.190436,-0.006291,0.008254,0.249864,0,0);}
.m23_c00490{transform:matrix(0.190841,-0.006304,0.008254,0.249864,0,0);-ms-transform:matrix(0.190841,-0.006304,0.008254,0.249864,0,0);-webkit-transform:matrix(0.190841,-0.006304,0.008254,0.249864,0,0);}
.mb7_c00490{transform:matrix(0.191059,-0.006503,0.008504,0.249855,0,0);-ms-transform:matrix(0.191059,-0.006503,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191059,-0.006503,0.008504,0.249855,0,0);}
.maa_c00490{transform:matrix(0.191644,-0.006522,0.008504,0.249855,0,0);-ms-transform:matrix(0.191644,-0.006522,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191644,-0.006522,0.008504,0.249855,0,0);}
.me8_c00490{transform:matrix(0.191804,-0.006528,0.008504,0.249855,0,0);-ms-transform:matrix(0.191804,-0.006528,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191804,-0.006528,0.008504,0.249855,0,0);}
.mb0_c00490{transform:matrix(0.191899,-0.006531,0.008504,0.249855,0,0);-ms-transform:matrix(0.191899,-0.006531,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191899,-0.006531,0.008504,0.249855,0,0);}
.m3d_c00490{transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192302,-0.003846,0.004999,0.249950,0,0);}
.m2c_c00490{transform:matrix(0.192945,-0.006374,0.008254,0.249864,0,0);-ms-transform:matrix(0.192945,-0.006374,0.008254,0.249864,0,0);-webkit-transform:matrix(0.192945,-0.006374,0.008254,0.249864,0,0);}
.m17_c00490{transform:matrix(0.193884,-0.006405,0.008254,0.249864,0,0);-ms-transform:matrix(0.193884,-0.006405,0.008254,0.249864,0,0);-webkit-transform:matrix(0.193884,-0.006405,0.008254,0.249864,0,0);}
.m2e_c00490{transform:matrix(0.193954,-0.006407,0.008254,0.249864,0,0);-ms-transform:matrix(0.193954,-0.006407,0.008254,0.249864,0,0);-webkit-transform:matrix(0.193954,-0.006407,0.008254,0.249864,0,0);}
.m6e_c00490{transform:matrix(0.194721,-0.003894,0.004999,0.249950,0,0);-ms-transform:matrix(0.194721,-0.003894,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194721,-0.003894,0.004999,0.249950,0,0);}
.m13_c00490{transform:matrix(0.194799,-0.006435,0.008254,0.249864,0,0);-ms-transform:matrix(0.194799,-0.006435,0.008254,0.249864,0,0);-webkit-transform:matrix(0.194799,-0.006435,0.008254,0.249864,0,0);}
.me_c00490{transform:matrix(0.194989,-0.006441,0.008254,0.249864,0,0);-ms-transform:matrix(0.194989,-0.006441,0.008254,0.249864,0,0);-webkit-transform:matrix(0.194989,-0.006441,0.008254,0.249864,0,0);}
.ma3_c00490{transform:matrix(0.196027,-0.006672,0.008504,0.249855,0,0);-ms-transform:matrix(0.196027,-0.006672,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196027,-0.006672,0.008504,0.249855,0,0);}
.ma1_c00490{transform:matrix(0.196061,-0.006673,0.008504,0.249855,0,0);-ms-transform:matrix(0.196061,-0.006673,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196061,-0.006673,0.008504,0.249855,0,0);}
.m96_c00490{transform:matrix(0.196106,-0.006674,0.008504,0.249855,0,0);-ms-transform:matrix(0.196106,-0.006674,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196106,-0.006674,0.008504,0.249855,0,0);}
.m22_c00490{transform:matrix(0.196323,-0.006485,0.008254,0.249864,0,0);-ms-transform:matrix(0.196323,-0.006485,0.008254,0.249864,0,0);-webkit-transform:matrix(0.196323,-0.006485,0.008254,0.249864,0,0);}
.m15_c00490{transform:matrix(0.196593,-0.006494,0.008254,0.249864,0,0);-ms-transform:matrix(0.196593,-0.006494,0.008254,0.249864,0,0);-webkit-transform:matrix(0.196593,-0.006494,0.008254,0.249864,0,0);}
.m41_c00490{transform:matrix(0.196851,-0.003937,0.004999,0.249950,0,0);-ms-transform:matrix(0.196851,-0.003937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196851,-0.003937,0.004999,0.249950,0,0);}
.m94_c00490{transform:matrix(0.196911,-0.006702,0.008504,0.249855,0,0);-ms-transform:matrix(0.196911,-0.006702,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196911,-0.006702,0.008504,0.249855,0,0);}
.m9d_c00490{transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);-ms-transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197061,-0.006707,0.008504,0.249855,0,0);}
.mc4_c00490{transform:matrix(0.197611,-0.006725,0.008504,0.249855,0,0);-ms-transform:matrix(0.197611,-0.006725,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197611,-0.006725,0.008504,0.249855,0,0);}
.m83_c00490{transform:matrix(0.198050,-0.006740,0.008504,0.249855,0,0);-ms-transform:matrix(0.198050,-0.006740,0.008504,0.249855,0,0);-webkit-transform:matrix(0.198050,-0.006740,0.008504,0.249855,0,0);}
.m48_c00490{transform:matrix(0.198120,-0.003962,0.004999,0.249950,0,0);-ms-transform:matrix(0.198120,-0.003962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198120,-0.003962,0.004999,0.249950,0,0);}
.m6b_c00490{transform:matrix(0.198665,-0.003973,0.004999,0.249950,0,0);-ms-transform:matrix(0.198665,-0.003973,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198665,-0.003973,0.004999,0.249950,0,0);}
.m4e_c00490{transform:matrix(0.198830,-0.003977,0.004999,0.249950,0,0);-ms-transform:matrix(0.198830,-0.003977,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198830,-0.003977,0.004999,0.249950,0,0);}
.mb8_c00490{transform:matrix(0.199330,-0.006784,0.008504,0.249855,0,0);-ms-transform:matrix(0.199330,-0.006784,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199330,-0.006784,0.008504,0.249855,0,0);}
.mc1_c00490{transform:matrix(0.199569,-0.006792,0.008504,0.249855,0,0);-ms-transform:matrix(0.199569,-0.006792,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199569,-0.006792,0.008504,0.249855,0,0);}
.mef_c00490{transform:matrix(0.199609,-0.006794,0.008504,0.249855,0,0);-ms-transform:matrix(0.199609,-0.006794,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199609,-0.006794,0.008504,0.249855,0,0);}
.m29_c00490{transform:matrix(0.199841,-0.006601,0.008254,0.249864,0,0);-ms-transform:matrix(0.199841,-0.006601,0.008254,0.249864,0,0);-webkit-transform:matrix(0.199841,-0.006601,0.008254,0.249864,0,0);}
.m8f_c00490{transform:matrix(0.200284,-0.006816,0.008504,0.249855,0,0);-ms-transform:matrix(0.200284,-0.006816,0.008504,0.249855,0,0);-webkit-transform:matrix(0.200284,-0.006816,0.008504,0.249855,0,0);}
.ma9_c00490{transform:matrix(0.200354,-0.006819,0.008504,0.249855,0,0);-ms-transform:matrix(0.200354,-0.006819,0.008504,0.249855,0,0);-webkit-transform:matrix(0.200354,-0.006819,0.008504,0.249855,0,0);}
.m4a_c00490{transform:matrix(0.201020,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.201020,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201020,-0.004020,0.004999,0.249950,0,0);}
.mec_c00490{transform:matrix(0.201129,-0.006845,0.008504,0.249855,0,0);-ms-transform:matrix(0.201129,-0.006845,0.008504,0.249855,0,0);-webkit-transform:matrix(0.201129,-0.006845,0.008504,0.249855,0,0);}
.m8d_c00490{transform:matrix(0.201298,-0.006851,0.008504,0.249855,0,0);-ms-transform:matrix(0.201298,-0.006851,0.008504,0.249855,0,0);-webkit-transform:matrix(0.201298,-0.006851,0.008504,0.249855,0,0);}
.m55_c00490{transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);-ms-transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201625,-0.004032,0.004999,0.249950,0,0);}
.m95_c00490{transform:matrix(0.202613,-0.006896,0.008504,0.249855,0,0);-ms-transform:matrix(0.202613,-0.006896,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202613,-0.006896,0.008504,0.249855,0,0);}
.mce_c00490{transform:matrix(0.202773,-0.006901,0.008504,0.249855,0,0);-ms-transform:matrix(0.202773,-0.006901,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202773,-0.006901,0.008504,0.249855,0,0);}
.m9b_c00490{transform:matrix(0.202908,-0.006906,0.008504,0.249855,0,0);-ms-transform:matrix(0.202908,-0.006906,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202908,-0.006906,0.008504,0.249855,0,0);}
.m38_c00490{transform:matrix(0.202939,-0.006704,0.008254,0.249864,0,0);-ms-transform:matrix(0.202939,-0.006704,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202939,-0.006704,0.008254,0.249864,0,0);}
.md_c00490{transform:matrix(0.202964,-0.006705,0.008254,0.249864,0,0);-ms-transform:matrix(0.202964,-0.006705,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202964,-0.006705,0.008254,0.249864,0,0);}
.m12_c00490{transform:matrix(0.203269,-0.006715,0.008254,0.249864,0,0);-ms-transform:matrix(0.203269,-0.006715,0.008254,0.249864,0,0);-webkit-transform:matrix(0.203269,-0.006715,0.008254,0.249864,0,0);}
.m87_c00490{transform:matrix(0.203912,-0.006940,0.008504,0.249855,0,0);-ms-transform:matrix(0.203912,-0.006940,0.008504,0.249855,0,0);-webkit-transform:matrix(0.203912,-0.006940,0.008504,0.249855,0,0);}
.mf3_c00490{transform:matrix(0.204182,-0.006949,0.008504,0.249855,0,0);-ms-transform:matrix(0.204182,-0.006949,0.008504,0.249855,0,0);-webkit-transform:matrix(0.204182,-0.006949,0.008504,0.249855,0,0);}
.mf7_c00490{transform:matrix(0.204452,-0.006958,0.008504,0.249855,0,0);-ms-transform:matrix(0.204452,-0.006958,0.008504,0.249855,0,0);-webkit-transform:matrix(0.204452,-0.006958,0.008504,0.249855,0,0);}
.m5a_c00490{transform:matrix(0.204664,-0.004093,0.004999,0.249950,0,0);-ms-transform:matrix(0.204664,-0.004093,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204664,-0.004093,0.004999,0.249950,0,0);}
.ma2_c00490{transform:matrix(0.205001,-0.006977,0.008504,0.249855,0,0);-ms-transform:matrix(0.205001,-0.006977,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205001,-0.006977,0.008504,0.249855,0,0);}
.m7_c00490{transform:matrix(0.205338,-0.006783,0.008254,0.249864,0,0);-ms-transform:matrix(0.205338,-0.006783,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205338,-0.006783,0.008254,0.249864,0,0);}
.m1e_c00490{transform:matrix(0.205868,-0.006800,0.008254,0.249864,0,0);-ms-transform:matrix(0.205868,-0.006800,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205868,-0.006800,0.008254,0.249864,0,0);}
.m4c_c00490{transform:matrix(0.206149,-0.004123,0.004999,0.249950,0,0);-ms-transform:matrix(0.206149,-0.004123,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206149,-0.004123,0.004999,0.249950,0,0);}
.m2b_c00490{transform:matrix(0.206267,-0.006814,0.008254,0.249864,0,0);-ms-transform:matrix(0.206267,-0.006814,0.008254,0.249864,0,0);-webkit-transform:matrix(0.206267,-0.006814,0.008254,0.249864,0,0);}
.m6_c00490{transform:matrix(0.206707,-0.006828,0.008254,0.249864,0,0);-ms-transform:matrix(0.206707,-0.006828,0.008254,0.249864,0,0);-webkit-transform:matrix(0.206707,-0.006828,0.008254,0.249864,0,0);}
.ma7_c00490{transform:matrix(0.207295,-0.007055,0.008504,0.249855,0,0);-ms-transform:matrix(0.207295,-0.007055,0.008504,0.249855,0,0);-webkit-transform:matrix(0.207295,-0.007055,0.008504,0.249855,0,0);}
.mcd_c00490{transform:matrix(0.209134,-0.007118,0.008504,0.249855,0,0);-ms-transform:matrix(0.209134,-0.007118,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209134,-0.007118,0.008504,0.249855,0,0);}
.m51_c00490{transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);-ms-transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);}
.m89_c00490{transform:matrix(0.209339,-0.007125,0.008504,0.249855,0,0);-ms-transform:matrix(0.209339,-0.007125,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209339,-0.007125,0.008504,0.249855,0,0);}
.m73_c00490{transform:matrix(0.209963,-0.004199,0.004999,0.249950,0,0);-ms-transform:matrix(0.209963,-0.004199,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209963,-0.004199,0.004999,0.249950,0,0);}
.m77_c00490{transform:matrix(0.210643,-0.004213,0.004999,0.249950,0,0);-ms-transform:matrix(0.210643,-0.004213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210643,-0.004213,0.004999,0.249950,0,0);}
.mee_c00490{transform:matrix(0.211018,-0.007182,0.008504,0.249855,0,0);-ms-transform:matrix(0.211018,-0.007182,0.008504,0.249855,0,0);-webkit-transform:matrix(0.211018,-0.007182,0.008504,0.249855,0,0);}
.mc3_c00490{transform:matrix(0.211113,-0.007185,0.008504,0.249855,0,0);-ms-transform:matrix(0.211113,-0.007185,0.008504,0.249855,0,0);-webkit-transform:matrix(0.211113,-0.007185,0.008504,0.249855,0,0);}
.m64_c00490{transform:matrix(0.211463,-0.004229,0.004999,0.249950,0,0);-ms-transform:matrix(0.211463,-0.004229,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211463,-0.004229,0.004999,0.249950,0,0);}
.m79_c00490{transform:matrix(0.211777,-0.007208,0.008504,0.249855,0,0);-ms-transform:matrix(0.211777,-0.007208,0.008504,0.249855,0,0);-webkit-transform:matrix(0.211777,-0.007208,0.008504,0.249855,0,0);}
.m63_c00490{transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-ms-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212488,-0.004250,0.004999,0.249950,0,0);}
.m20_c00490{transform:matrix(0.213004,-0.007036,0.008254,0.249864,0,0);-ms-transform:matrix(0.213004,-0.007036,0.008254,0.249864,0,0);-webkit-transform:matrix(0.213004,-0.007036,0.008254,0.249864,0,0);}
.m8_c00490{transform:matrix(0.213144,-0.007041,0.008254,0.249864,0,0);-ms-transform:matrix(0.213144,-0.007041,0.008254,0.249864,0,0);-webkit-transform:matrix(0.213144,-0.007041,0.008254,0.249864,0,0);}
.mb6_c00490{transform:matrix(0.213381,-0.007262,0.008504,0.249855,0,0);-ms-transform:matrix(0.213381,-0.007262,0.008504,0.249855,0,0);-webkit-transform:matrix(0.213381,-0.007262,0.008504,0.249855,0,0);}
.m5f_c00490{transform:matrix(0.213437,-0.004269,0.004999,0.249950,0,0);-ms-transform:matrix(0.213437,-0.004269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213437,-0.004269,0.004999,0.249950,0,0);}
.m7d_c00490{transform:matrix(0.213806,-0.007277,0.008504,0.249855,0,0);-ms-transform:matrix(0.213806,-0.007277,0.008504,0.249855,0,0);-webkit-transform:matrix(0.213806,-0.007277,0.008504,0.249855,0,0);}
.me3_c00490{transform:matrix(0.213926,-0.007281,0.008504,0.249855,0,0);-ms-transform:matrix(0.213926,-0.007281,0.008504,0.249855,0,0);-webkit-transform:matrix(0.213926,-0.007281,0.008504,0.249855,0,0);}
.md7_c00490{transform:matrix(0.214076,-0.007286,0.008504,0.249855,0,0);-ms-transform:matrix(0.214076,-0.007286,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214076,-0.007286,0.008504,0.249855,0,0);}
.mca_c00490{transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);-ms-transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);}
.m97_c00490{transform:matrix(0.215970,-0.007350,0.008504,0.249855,0,0);-ms-transform:matrix(0.215970,-0.007350,0.008504,0.249855,0,0);-webkit-transform:matrix(0.215970,-0.007350,0.008504,0.249855,0,0);}
.md4_c00490{transform:matrix(0.217029,-0.007386,0.008504,0.249855,0,0);-ms-transform:matrix(0.217029,-0.007386,0.008504,0.249855,0,0);-webkit-transform:matrix(0.217029,-0.007386,0.008504,0.249855,0,0);}
.m93_c00490{transform:matrix(0.217999,-0.007419,0.008504,0.249855,0,0);-ms-transform:matrix(0.217999,-0.007419,0.008504,0.249855,0,0);-webkit-transform:matrix(0.217999,-0.007419,0.008504,0.249855,0,0);}
.m50_c00490{transform:matrix(0.218586,-0.004372,0.004999,0.249950,0,0);-ms-transform:matrix(0.218586,-0.004372,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218586,-0.004372,0.004999,0.249950,0,0);}
.m3b_c00490{transform:matrix(0.218841,-0.007229,0.008254,0.249864,0,0);-ms-transform:matrix(0.218841,-0.007229,0.008254,0.249864,0,0);-webkit-transform:matrix(0.218841,-0.007229,0.008254,0.249864,0,0);}
.m46_c00490{transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);-ms-transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219761,-0.004395,0.004999,0.249950,0,0);}
.mf_c00490{transform:matrix(0.219785,-0.007260,0.008254,0.249864,0,0);-ms-transform:matrix(0.219785,-0.007260,0.008254,0.249864,0,0);-webkit-transform:matrix(0.219785,-0.007260,0.008254,0.249864,0,0);}
.mdf_c00490{transform:matrix(0.219793,-0.007480,0.008504,0.249855,0,0);-ms-transform:matrix(0.219793,-0.007480,0.008504,0.249855,0,0);-webkit-transform:matrix(0.219793,-0.007480,0.008504,0.249855,0,0);}
.mba_c00490{transform:matrix(0.219868,-0.007483,0.008504,0.249855,0,0);-ms-transform:matrix(0.219868,-0.007483,0.008504,0.249855,0,0);-webkit-transform:matrix(0.219868,-0.007483,0.008504,0.249855,0,0);}
.m3f_c00490{transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-ms-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);}
.m57_c00490{transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);-ms-transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220046,-0.004401,0.004999,0.249950,0,0);}
.md9_c00490{transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);-ms-transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);-webkit-transform:matrix(0.220392,-0.007501,0.008504,0.249855,0,0);}
.mea_c00490{transform:matrix(0.220402,-0.007501,0.008504,0.249855,0,0);-ms-transform:matrix(0.220402,-0.007501,0.008504,0.249855,0,0);-webkit-transform:matrix(0.220402,-0.007501,0.008504,0.249855,0,0);}
.m61_c00490{transform:matrix(0.220691,-0.004414,0.004999,0.249950,0,0);-ms-transform:matrix(0.220691,-0.004414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220691,-0.004414,0.004999,0.249950,0,0);}
.m9f_c00490{transform:matrix(0.220932,-0.007519,0.008504,0.249855,0,0);-ms-transform:matrix(0.220932,-0.007519,0.008504,0.249855,0,0);-webkit-transform:matrix(0.220932,-0.007519,0.008504,0.249855,0,0);}
.m28_c00490{transform:matrix(0.221044,-0.007302,0.008254,0.249864,0,0);-ms-transform:matrix(0.221044,-0.007302,0.008254,0.249864,0,0);-webkit-transform:matrix(0.221044,-0.007302,0.008254,0.249864,0,0);}
.m92_c00490{transform:matrix(0.221092,-0.007525,0.008504,0.249855,0,0);-ms-transform:matrix(0.221092,-0.007525,0.008504,0.249855,0,0);-webkit-transform:matrix(0.221092,-0.007525,0.008504,0.249855,0,0);}
.m9a_c00490{transform:matrix(0.221137,-0.007526,0.008504,0.249855,0,0);-ms-transform:matrix(0.221137,-0.007526,0.008504,0.249855,0,0);-webkit-transform:matrix(0.221137,-0.007526,0.008504,0.249855,0,0);}
.me5_c00490{transform:matrix(0.221397,-0.007535,0.008504,0.249855,0,0);-ms-transform:matrix(0.221397,-0.007535,0.008504,0.249855,0,0);-webkit-transform:matrix(0.221397,-0.007535,0.008504,0.249855,0,0);}
.m98_c00490{transform:matrix(0.221452,-0.007537,0.008504,0.249855,0,0);-ms-transform:matrix(0.221452,-0.007537,0.008504,0.249855,0,0);-webkit-transform:matrix(0.221452,-0.007537,0.008504,0.249855,0,0);}
.md3_c00490{transform:matrix(0.221892,-0.007552,0.008504,0.249855,0,0);-ms-transform:matrix(0.221892,-0.007552,0.008504,0.249855,0,0);-webkit-transform:matrix(0.221892,-0.007552,0.008504,0.249855,0,0);}
.md2_c00490{transform:matrix(0.222681,-0.007579,0.008504,0.249855,0,0);-ms-transform:matrix(0.222681,-0.007579,0.008504,0.249855,0,0);-webkit-transform:matrix(0.222681,-0.007579,0.008504,0.249855,0,0);}
.md5_c00490{transform:matrix(0.223601,-0.007610,0.008504,0.249855,0,0);-ms-transform:matrix(0.223601,-0.007610,0.008504,0.249855,0,0);-webkit-transform:matrix(0.223601,-0.007610,0.008504,0.249855,0,0);}
.m60_c00490{transform:matrix(0.224330,-0.004487,0.004999,0.249950,0,0);-ms-transform:matrix(0.224330,-0.004487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224330,-0.004487,0.004999,0.249950,0,0);}
.m2_c00490{transform:matrix(0.224558,-0.007418,0.008254,0.249864,0,0);-ms-transform:matrix(0.224558,-0.007418,0.008254,0.249864,0,0);-webkit-transform:matrix(0.224558,-0.007418,0.008254,0.249864,0,0);}
.m8c_c00490{transform:matrix(0.224955,-0.007656,0.008504,0.249855,0,0);-ms-transform:matrix(0.224955,-0.007656,0.008504,0.249855,0,0);-webkit-transform:matrix(0.224955,-0.007656,0.008504,0.249855,0,0);}
.mc6_c00490{transform:matrix(0.225649,-0.007680,0.008504,0.249855,0,0);-ms-transform:matrix(0.225649,-0.007680,0.008504,0.249855,0,0);-webkit-transform:matrix(0.225649,-0.007680,0.008504,0.249855,0,0);}
.m74_c00490{transform:matrix(0.226090,-0.004522,0.004999,0.249950,0,0);-ms-transform:matrix(0.226090,-0.004522,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226090,-0.004522,0.004999,0.249950,0,0);}
.mcb_c00490{transform:matrix(0.226794,-0.007719,0.008504,0.249855,0,0);-ms-transform:matrix(0.226794,-0.007719,0.008504,0.249855,0,0);-webkit-transform:matrix(0.226794,-0.007719,0.008504,0.249855,0,0);}
.m2a_c00490{transform:matrix(0.226951,-0.007497,0.008254,0.249864,0,0);-ms-transform:matrix(0.226951,-0.007497,0.008254,0.249864,0,0);-webkit-transform:matrix(0.226951,-0.007497,0.008254,0.249864,0,0);}
.m84_c00490{transform:matrix(0.227608,-0.007746,0.008504,0.249855,0,0);-ms-transform:matrix(0.227608,-0.007746,0.008504,0.249855,0,0);-webkit-transform:matrix(0.227608,-0.007746,0.008504,0.249855,0,0);}
.m40_c00490{transform:matrix(0.228209,-0.004564,0.004999,0.249950,0,0);-ms-transform:matrix(0.228209,-0.004564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228209,-0.004564,0.004999,0.249950,0,0);}
.m56_c00490{transform:matrix(0.228404,-0.004568,0.004999,0.249950,0,0);-ms-transform:matrix(0.228404,-0.004568,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228404,-0.004568,0.004999,0.249950,0,0);}
.m16_c00490{transform:matrix(0.229915,-0.007595,0.008254,0.249864,0,0);-ms-transform:matrix(0.229915,-0.007595,0.008254,0.249864,0,0);-webkit-transform:matrix(0.229915,-0.007595,0.008254,0.249864,0,0);}
.m58_c00490{transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-ms-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230689,-0.004614,0.004999,0.249950,0,0);}
.m4_c00490{transform:matrix(0.230914,-0.007628,0.008254,0.249864,0,0);-ms-transform:matrix(0.230914,-0.007628,0.008254,0.249864,0,0);-webkit-transform:matrix(0.230914,-0.007628,0.008254,0.249864,0,0);}
.m5_c00490{transform:matrix(0.231844,-0.007658,0.008254,0.249864,0,0);-ms-transform:matrix(0.231844,-0.007658,0.008254,0.249864,0,0);-webkit-transform:matrix(0.231844,-0.007658,0.008254,0.249864,0,0);}
.mad_c00490{transform:matrix(0.232460,-0.007912,0.008504,0.249855,0,0);-ms-transform:matrix(0.232460,-0.007912,0.008504,0.249855,0,0);-webkit-transform:matrix(0.232460,-0.007912,0.008504,0.249855,0,0);}
.med_c00490{transform:matrix(0.232710,-0.007920,0.008504,0.249855,0,0);-ms-transform:matrix(0.232710,-0.007920,0.008504,0.249855,0,0);-webkit-transform:matrix(0.232710,-0.007920,0.008504,0.249855,0,0);}
.m8b_c00490{transform:matrix(0.233940,-0.007962,0.008504,0.249855,0,0);-ms-transform:matrix(0.233940,-0.007962,0.008504,0.249855,0,0);-webkit-transform:matrix(0.233940,-0.007962,0.008504,0.249855,0,0);}
.m54_c00490{transform:matrix(0.234503,-0.004690,0.004999,0.249950,0,0);-ms-transform:matrix(0.234503,-0.004690,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234503,-0.004690,0.004999,0.249950,0,0);}
.mde_c00490{transform:matrix(0.234774,-0.007990,0.008504,0.249855,0,0);-ms-transform:matrix(0.234774,-0.007990,0.008504,0.249855,0,0);-webkit-transform:matrix(0.234774,-0.007990,0.008504,0.249855,0,0);}
.mb1_c00490{transform:matrix(0.235209,-0.008005,0.008504,0.249855,0,0);-ms-transform:matrix(0.235209,-0.008005,0.008504,0.249855,0,0);-webkit-transform:matrix(0.235209,-0.008005,0.008504,0.249855,0,0);}
.m37_c00490{transform:matrix(0.236206,-0.007803,0.008254,0.249864,0,0);-ms-transform:matrix(0.236206,-0.007803,0.008254,0.249864,0,0);-webkit-transform:matrix(0.236206,-0.007803,0.008254,0.249864,0,0);}
.mdb_c00490{transform:matrix(0.237218,-0.008073,0.008504,0.249855,0,0);-ms-transform:matrix(0.237218,-0.008073,0.008504,0.249855,0,0);-webkit-transform:matrix(0.237218,-0.008073,0.008504,0.249855,0,0);}
.mdd_c00490{transform:matrix(0.237448,-0.008081,0.008504,0.249855,0,0);-ms-transform:matrix(0.237448,-0.008081,0.008504,0.249855,0,0);-webkit-transform:matrix(0.237448,-0.008081,0.008504,0.249855,0,0);}
.m66_c00490{transform:matrix(0.237992,-0.004760,0.004999,0.249950,0,0);-ms-transform:matrix(0.237992,-0.004760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237992,-0.004760,0.004999,0.249950,0,0);}
.mb5_c00490{transform:matrix(0.238667,-0.008123,0.008504,0.249855,0,0);-ms-transform:matrix(0.238667,-0.008123,0.008504,0.249855,0,0);-webkit-transform:matrix(0.238667,-0.008123,0.008504,0.249855,0,0);}
.mc7_c00490{transform:matrix(0.238962,-0.008133,0.008504,0.249855,0,0);-ms-transform:matrix(0.238962,-0.008133,0.008504,0.249855,0,0);-webkit-transform:matrix(0.238962,-0.008133,0.008504,0.249855,0,0);}
.m81_c00490{transform:matrix(0.239336,-0.008146,0.008504,0.249855,0,0);-ms-transform:matrix(0.239336,-0.008146,0.008504,0.249855,0,0);-webkit-transform:matrix(0.239336,-0.008146,0.008504,0.249855,0,0);}
.mbc_c00490{transform:matrix(0.242465,-0.008252,0.008504,0.249855,0,0);-ms-transform:matrix(0.242465,-0.008252,0.008504,0.249855,0,0);-webkit-transform:matrix(0.242465,-0.008252,0.008504,0.249855,0,0);}
.m31_c00490{transform:matrix(0.242598,-0.008014,0.008254,0.249864,0,0);-ms-transform:matrix(0.242598,-0.008014,0.008254,0.249864,0,0);-webkit-transform:matrix(0.242598,-0.008014,0.008254,0.249864,0,0);}
.maf_c00490{transform:matrix(0.243954,-0.008303,0.008504,0.249855,0,0);-ms-transform:matrix(0.243954,-0.008303,0.008504,0.249855,0,0);-webkit-transform:matrix(0.243954,-0.008303,0.008504,0.249855,0,0);}
.mae_c00490{transform:matrix(0.244019,-0.008305,0.008504,0.249855,0,0);-ms-transform:matrix(0.244019,-0.008305,0.008504,0.249855,0,0);-webkit-transform:matrix(0.244019,-0.008305,0.008504,0.249855,0,0);}
.mac_c00490{transform:matrix(0.244753,-0.008330,0.008504,0.249855,0,0);-ms-transform:matrix(0.244753,-0.008330,0.008504,0.249855,0,0);-webkit-transform:matrix(0.244753,-0.008330,0.008504,0.249855,0,0);}
.m62_c00490{transform:matrix(0.245551,-0.004911,0.004999,0.249950,0,0);-ms-transform:matrix(0.245551,-0.004911,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245551,-0.004911,0.004999,0.249950,0,0);}
.m32_c00490{transform:matrix(0.246421,-0.008140,0.008254,0.249864,0,0);-ms-transform:matrix(0.246421,-0.008140,0.008254,0.249864,0,0);-webkit-transform:matrix(0.246421,-0.008140,0.008254,0.249864,0,0);}
.me7_c00490{transform:matrix(0.247157,-0.008412,0.008504,0.249855,0,0);-ms-transform:matrix(0.247157,-0.008412,0.008504,0.249855,0,0);-webkit-transform:matrix(0.247157,-0.008412,0.008504,0.249855,0,0);}
.m78_c00490{transform:matrix(0.247705,-0.004954,0.004999,0.249950,0,0);-ms-transform:matrix(0.247705,-0.004954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247705,-0.004954,0.004999,0.249950,0,0);}
.me6_c00490{transform:matrix(0.248101,-0.008444,0.008504,0.249855,0,0);-ms-transform:matrix(0.248101,-0.008444,0.008504,0.249855,0,0);-webkit-transform:matrix(0.248101,-0.008444,0.008504,0.249855,0,0);}
.mcc_c00490{transform:matrix(0.248386,-0.008454,0.008504,0.249855,0,0);-ms-transform:matrix(0.248386,-0.008454,0.008504,0.249855,0,0);-webkit-transform:matrix(0.248386,-0.008454,0.008504,0.249855,0,0);}
.m85_c00490{transform:matrix(0.249326,-0.008486,0.008504,0.249855,0,0);-ms-transform:matrix(0.249326,-0.008486,0.008504,0.249855,0,0);-webkit-transform:matrix(0.249326,-0.008486,0.008504,0.249855,0,0);}
.m86_c00490{transform:matrix(0.249580,-0.008494,0.008504,0.249855,0,0);-ms-transform:matrix(0.249580,-0.008494,0.008504,0.249855,0,0);-webkit-transform:matrix(0.249580,-0.008494,0.008504,0.249855,0,0);}
.m3e_c00490{transform:matrix(0.251510,-0.005030,0.004999,0.249950,0,0);-ms-transform:matrix(0.251510,-0.005030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251510,-0.005030,0.004999,0.249950,0,0);}
.mab_c00490{transform:matrix(0.255457,-0.008694,0.008504,0.249855,0,0);-ms-transform:matrix(0.255457,-0.008694,0.008504,0.249855,0,0);-webkit-transform:matrix(0.255457,-0.008694,0.008504,0.249855,0,0);}
.mf6_c00490{transform:matrix(0.256691,-0.008736,0.008504,0.249855,0,0);-ms-transform:matrix(0.256691,-0.008736,0.008504,0.249855,0,0);-webkit-transform:matrix(0.256691,-0.008736,0.008504,0.249855,0,0);}
.m3c_c00490{transform:matrix(0.262518,-0.005250,0.004999,0.249950,0,0);-ms-transform:matrix(0.262518,-0.005250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262518,-0.005250,0.004999,0.249950,0,0);}
.mda_c00490{transform:matrix(0.265821,-0.009047,0.008504,0.249855,0,0);-ms-transform:matrix(0.265821,-0.009047,0.008504,0.249855,0,0);-webkit-transform:matrix(0.265821,-0.009047,0.008504,0.249855,0,0);}
.mdc_c00490{transform:matrix(0.266301,-0.009063,0.008504,0.249855,0,0);-ms-transform:matrix(0.266301,-0.009063,0.008504,0.249855,0,0);-webkit-transform:matrix(0.266301,-0.009063,0.008504,0.249855,0,0);}
.md6_c00490{transform:matrix(0.269239,-0.009163,0.008504,0.249855,0,0);-ms-transform:matrix(0.269239,-0.009163,0.008504,0.249855,0,0);-webkit-transform:matrix(0.269239,-0.009163,0.008504,0.249855,0,0);}
.mb_c00490{transform:matrix(0.272256,-0.008993,0.008254,0.249864,0,0);-ms-transform:matrix(0.272256,-0.008993,0.008254,0.249864,0,0);-webkit-transform:matrix(0.272256,-0.008993,0.008254,0.249864,0,0);}
.md8_c00490{transform:matrix(0.272777,-0.009284,0.008504,0.249855,0,0);-ms-transform:matrix(0.272777,-0.009284,0.008504,0.249855,0,0);-webkit-transform:matrix(0.272777,-0.009284,0.008504,0.249855,0,0);}
.m26_c00490{transform:matrix(0.276559,-0.009136,0.008254,0.249864,0,0);-ms-transform:matrix(0.276559,-0.009136,0.008254,0.249864,0,0);-webkit-transform:matrix(0.276559,-0.009136,0.008254,0.249864,0,0);}
.mf5_c00490{transform:matrix(0.307707,-0.010473,0.008504,0.249855,0,0);-ms-transform:matrix(0.307707,-0.010473,0.008504,0.249855,0,0);-webkit-transform:matrix(0.307707,-0.010473,0.008504,0.249855,0,0);}
.m82_c00490{transform:matrix(0.322173,-0.010965,0.008504,0.249855,0,0);-ms-transform:matrix(0.322173,-0.010965,0.008504,0.249855,0,0);-webkit-transform:matrix(0.322173,-0.010965,0.008504,0.249855,0,0);}
.m25_c00490{transform:matrix(0.323219,-0.010677,0.008254,0.249864,0,0);-ms-transform:matrix(0.323219,-0.010677,0.008254,0.249864,0,0);-webkit-transform:matrix(0.323219,-0.010677,0.008254,0.249864,0,0);}
.m1f_c00490{transform:matrix(0.359179,-0.011865,0.008254,0.249864,0,0);-ms-transform:matrix(0.359179,-0.011865,0.008254,0.249864,0,0);-webkit-transform:matrix(0.359179,-0.011865,0.008254,0.249864,0,0);}
.md1_c00490{transform:matrix(0.451938,-0.015381,0.008504,0.249855,0,0);-ms-transform:matrix(0.451938,-0.015381,0.008504,0.249855,0,0);-webkit-transform:matrix(0.451938,-0.015381,0.008504,0.249855,0,0);}
.md0_c00490{transform:matrix(0.533081,-0.018143,0.008504,0.249855,0,0);-ms-transform:matrix(0.533081,-0.018143,0.008504,0.249855,0,0);-webkit-transform:matrix(0.533081,-0.018143,0.008504,0.249855,0,0);}
.mcf_c00490{transform:matrix(0.544215,-0.018522,0.008504,0.249855,0,0);-ms-transform:matrix(0.544215,-0.018522,0.008504,0.249855,0,0);-webkit-transform:matrix(0.544215,-0.018522,0.008504,0.249855,0,0);}
.mc9_c00490{transform:matrix(0.641783,-0.021842,0.008504,0.249855,0,0);-ms-transform:matrix(0.641783,-0.021842,0.008504,0.249855,0,0);-webkit-transform:matrix(0.641783,-0.021842,0.008504,0.249855,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:0.000000px;}
._0_c00490{width:4.242079px;}
.fc0_c00490{color:transparent;}
.fs1a_c00490{font-size:22.050000px;}
.fs18_c00490{font-size:51.428309px;}
.fs15_c00490{font-size:55.626539px;}
.fsf_c00490{font-size:57.725653px;}
.fsa_c00490{font-size:57.761549px;}
.fs10_c00490{font-size:58.775211px;}
.fs1_c00490{font-size:59.822762px;}
.fs17_c00490{font-size:59.824768px;}
.fs7_c00490{font-size:59.861969px;}
.fs12_c00490{font-size:60.874325px;}
.fs9_c00490{font-size:61.962389px;}
.fs2_c00490{font-size:62.971328px;}
.fs19_c00490{font-size:62.973440px;}
.fsc_c00490{font-size:63.012599px;}
.fs3_c00490{font-size:64.020851px;}
.fs11_c00490{font-size:64.022997px;}
.fs4_c00490{font-size:65.070373px;}
.fs16_c00490{font-size:65.072555px;}
.fs13_c00490{font-size:66.122112px;}
.fs8_c00490{font-size:66.163229px;}
.fs6_c00490{font-size:67.169417px;}
.fs14_c00490{font-size:67.171669px;}
.fs5_c00490{font-size:71.367506px;}
.fse_c00490{font-size:71.369899px;}
.fsb_c00490{font-size:71.414279px;}
.fs0_c00490{font-size:72.417028px;}
.fsd_c00490{font-size:76.665328px;}
.y0_c00490{bottom:0.000000px;}
.yf2_c00490{bottom:32.263439px;}
.yf3_c00490{bottom:33.413284px;}
.yf4_c00490{bottom:34.104012px;}
.yf5_c00490{bottom:35.553977px;}
.yf6_c00490{bottom:36.148317px;}
.yf7_c00490{bottom:36.747809px;}
.yf8_c00490{bottom:38.116820px;}
.yf9_c00490{bottom:38.576499px;}
.yfa_c00490{bottom:40.632668px;}
.yea_c00490{bottom:50.347980px;}
.yeb_c00490{bottom:51.063862px;}
.yec_c00490{bottom:51.984826px;}
.yed_c00490{bottom:53.837567px;}
.yee_c00490{bottom:54.716295px;}
.yef_c00490{bottom:57.404681px;}
.yf0_c00490{bottom:57.871971px;}
.yf1_c00490{bottom:59.868891px;}
.ye1_c00490{bottom:66.541914px;}
.ye2_c00490{bottom:67.672651px;}
.ye3_c00490{bottom:68.949252px;}
.ye4_c00490{bottom:69.675997px;}
.ye5_c00490{bottom:71.044342px;}
.ye6_c00490{bottom:72.229504px;}
.ye7_c00490{bottom:72.940471px;}
.ye8_c00490{bottom:74.980832px;}
.ye9_c00490{bottom:77.275903px;}
.yda_c00490{bottom:83.279061px;}
.ydb_c00490{bottom:83.715525px;}
.ydc_c00490{bottom:84.249732px;}
.ydd_c00490{bottom:87.112695px;}
.yde_c00490{bottom:89.668730px;}
.ydf_c00490{bottom:90.083142px;}
.ye0_c00490{bottom:92.147523px;}
.yd3_c00490{bottom:100.553027px;}
.yd4_c00490{bottom:102.278367px;}
.yd5_c00490{bottom:103.440038px;}
.yd6_c00490{bottom:105.629289px;}
.yd7_c00490{bottom:106.409569px;}
.yd8_c00490{bottom:109.119471px;}
.yd9_c00490{bottom:109.665935px;}
.ycf_c00490{bottom:118.087091px;}
.yd0_c00490{bottom:119.274768px;}
.yd1_c00490{bottom:123.770973px;}
.yd2_c00490{bottom:127.013589px;}
.yfb_c00490{bottom:127.710000px;}
.yc5_c00490{bottom:135.089005px;}
.yc6_c00490{bottom:136.122235px;}
.yc7_c00490{bottom:137.051309px;}
.yc8_c00490{bottom:137.663391px;}
.yc9_c00490{bottom:139.753433px;}
.yca_c00490{bottom:140.270711px;}
.ycb_c00490{bottom:140.877693px;}
.ycc_c00490{bottom:142.928731px;}
.ycd_c00490{bottom:143.658537px;}
.yce_c00490{bottom:144.236716px;}
.ybd_c00490{bottom:152.636379px;}
.ybe_c00490{bottom:153.660537px;}
.ybf_c00490{bottom:154.158954px;}
.yc0_c00490{bottom:155.105584px;}
.yc1_c00490{bottom:158.438232px;}
.yc2_c00490{bottom:159.217262px;}
.yc3_c00490{bottom:161.124720px;}
.yc4_c00490{bottom:162.883958px;}
.yb4_c00490{bottom:168.833240px;}
.yb5_c00490{bottom:170.140514px;}
.yb6_c00490{bottom:170.921151px;}
.yb7_c00490{bottom:171.942746px;}
.yb8_c00490{bottom:173.254457px;}
.yb9_c00490{bottom:173.744366px;}
.yba_c00490{bottom:176.285796px;}
.ybb_c00490{bottom:177.552294px;}
.ybc_c00490{bottom:179.148237px;}
.yad_c00490{bottom:185.565528px;}
.yae_c00490{bottom:186.324452px;}
.yaf_c00490{bottom:189.696221px;}
.yb0_c00490{bottom:190.819226px;}
.yb1_c00490{bottom:191.990147px;}
.yb2_c00490{bottom:194.288408px;}
.yb3_c00490{bottom:194.946073px;}
.ya5_c00490{bottom:203.101830px;}
.ya6_c00490{bottom:205.648668px;}
.ya7_c00490{bottom:206.279385px;}
.ya8_c00490{bottom:207.050709px;}
.ya9_c00490{bottom:209.322606px;}
.yaa_c00490{bottom:209.742030px;}
.yab_c00490{bottom:210.457968px;}
.yac_c00490{bottom:212.075535px;}
.y9f_c00490{bottom:219.837201px;}
.ya0_c00490{bottom:221.092800px;}
.ya1_c00490{bottom:221.898930px;}
.ya2_c00490{bottom:223.941993px;}
.ya3_c00490{bottom:226.239416px;}
.ya4_c00490{bottom:229.435490px;}
.y98_c00490{bottom:237.379415px;}
.y99_c00490{bottom:240.129488px;}
.y9a_c00490{bottom:241.434035px;}
.y9b_c00490{bottom:243.693494px;}
.y9c_c00490{bottom:244.314816px;}
.y9d_c00490{bottom:245.775081px;}
.y9e_c00490{bottom:246.714164px;}
.y91_c00490{bottom:255.726202px;}
.y92_c00490{bottom:257.548535px;}
.y93_c00490{bottom:258.371623px;}
.y94_c00490{bottom:260.267039px;}
.y95_c00490{bottom:260.698754px;}
.y96_c00490{bottom:263.622686px;}
.y97_c00490{bottom:264.484330px;}
.y89_c00490{bottom:272.459934px;}
.y8a_c00490{bottom:274.864461px;}
.y8b_c00490{bottom:275.524706px;}
.y8c_c00490{bottom:276.996143px;}
.y8d_c00490{bottom:277.265775px;}
.y8e_c00490{bottom:280.009263px;}
.y8f_c00490{bottom:281.413004px;}
.y90_c00490{bottom:281.975799px;}
.y83_c00490{bottom:289.998480px;}
.y84_c00490{bottom:292.168356px;}
.y85_c00490{bottom:292.654251px;}
.y86_c00490{bottom:294.298287px;}
.y87_c00490{bottom:295.870778px;}
.y88_c00490{bottom:297.305717px;}
.y7b_c00490{bottom:306.735000px;}
.y7c_c00490{bottom:307.645503px;}
.y7d_c00490{bottom:308.325690px;}
.y7e_c00490{bottom:310.095135px;}
.y7f_c00490{bottom:311.516913px;}
.y80_c00490{bottom:312.642483px;}
.y81_c00490{bottom:313.527741px;}
.y82_c00490{bottom:314.606493px;}
.y73_c00490{bottom:323.452890px;}
.y74_c00490{bottom:324.134280px;}
.y75_c00490{bottom:324.809310px;}
.y76_c00490{bottom:326.429130px;}
.y77_c00490{bottom:328.336230px;}
.y78_c00490{bottom:329.125470px;}
.y79_c00490{bottom:329.969340px;}
.y7a_c00490{bottom:334.186200px;}
.y6a_c00490{bottom:339.388410px;}
.y6b_c00490{bottom:340.648350px;}
.y6c_c00490{bottom:341.960220px;}
.y6d_c00490{bottom:342.503010px;}
.y6e_c00490{bottom:344.361810px;}
.y6f_c00490{bottom:344.817960px;}
.y70_c00490{bottom:346.705860px;}
.y71_c00490{bottom:348.038970px;}
.y72_c00490{bottom:348.552660px;}
.y61_c00490{bottom:356.125830px;}
.y62_c00490{bottom:357.269820px;}
.y63_c00490{bottom:357.627000px;}
.y64_c00490{bottom:360.682770px;}
.y65_c00490{bottom:361.105650px;}
.y66_c00490{bottom:362.138310px;}
.y67_c00490{bottom:362.899080px;}
.y68_c00490{bottom:365.079510px;}
.y69_c00490{bottom:365.538420px;}
.y5b_c00490{bottom:373.413600px;}
.y5c_c00490{bottom:375.927210px;}
.y5d_c00490{bottom:377.683080px;}
.y5e_c00490{bottom:379.748460px;}
.y5f_c00490{bottom:381.588270px;}
.y60_c00490{bottom:382.181820px;}
.y55_c00490{bottom:390.689970px;}
.y56_c00490{bottom:391.270890px;}
.y57_c00490{bottom:393.469170px;}
.y58_c00490{bottom:394.276200px;}
.y59_c00490{bottom:395.897670px;}
.y5a_c00490{bottom:396.860880px;}
.y4d_c00490{bottom:407.707590px;}
.y4e_c00490{bottom:408.738900px;}
.y4f_c00490{bottom:411.316500px;}
.y50_c00490{bottom:411.996240px;}
.y51_c00490{bottom:413.516100px;}
.y52_c00490{bottom:414.075690px;}
.y53_c00490{bottom:415.632690px;}
.y54_c00490{bottom:416.211960px;}
.y44_c00490{bottom:425.526600px;}
.y45_c00490{bottom:426.761370px;}
.y46_c00490{bottom:427.398720px;}
.y47_c00490{bottom:428.082720px;}
.y48_c00490{bottom:429.029100px;}
.y49_c00490{bottom:430.729050px;}
.y4a_c00490{bottom:432.136980px;}
.y4b_c00490{bottom:432.524910px;}
.y4c_c00490{bottom:433.408620px;}
.y3e_c00490{bottom:445.233000px;}
.y3f_c00490{bottom:447.051990px;}
.y40_c00490{bottom:447.421500px;}
.y41_c00490{bottom:448.334670px;}
.y42_c00490{bottom:449.608710px;}
.y43_c00490{bottom:450.735900px;}
.y36_c00490{bottom:458.785458px;}
.y37_c00490{bottom:459.621963px;}
.y38_c00490{bottom:460.677523px;}
.y39_c00490{bottom:462.163932px;}
.y3a_c00490{bottom:462.574390px;}
.y3b_c00490{bottom:462.953929px;}
.y3c_c00490{bottom:463.489758px;}
.y3d_c00490{bottom:465.406866px;}
.y2f_c00490{bottom:475.521651px;}
.y30_c00490{bottom:477.156488px;}
.y31_c00490{bottom:478.925298px;}
.y32_c00490{bottom:479.613753px;}
.y33_c00490{bottom:480.154153px;}
.y34_c00490{bottom:482.255388px;}
.y35_c00490{bottom:482.801022px;}
.y25_c00490{bottom:493.334536px;}
.y26_c00490{bottom:494.193024px;}
.y27_c00490{bottom:494.743131px;}
.y28_c00490{bottom:495.877779px;}
.y29_c00490{bottom:496.521180px;}
.y2a_c00490{bottom:497.072709px;}
.y2b_c00490{bottom:499.029318px;}
.y2c_c00490{bottom:499.493925px;}
.y2d_c00490{bottom:500.716980px;}
.y2e_c00490{bottom:501.231699px;}
.y1d_c00490{bottom:509.526454px;}
.y1e_c00490{bottom:510.129081px;}
.y1f_c00490{bottom:512.210682px;}
.y20_c00490{bottom:512.881708px;}
.y21_c00490{bottom:515.631514px;}
.y22_c00490{bottom:516.039610px;}
.y23_c00490{bottom:516.699140px;}
.y24_c00490{bottom:517.524673px;}
.y13_c00490{bottom:526.803381px;}
.y14_c00490{bottom:528.190884px;}
.y15_c00490{bottom:529.732769px;}
.y16_c00490{bottom:530.343463px;}
.y17_c00490{bottom:530.883409px;}
.y18_c00490{bottom:532.972120px;}
.y19_c00490{bottom:533.343019px;}
.y1a_c00490{bottom:533.967129px;}
.y1b_c00490{bottom:534.475035px;}
.y1c_c00490{bottom:535.135540px;}
.ya_c00490{bottom:543.798225px;}
.yb_c00490{bottom:544.238838px;}
.yc_c00490{bottom:545.485621px;}
.yd_c00490{bottom:545.786532px;}
.ye_c00490{bottom:546.391395px;}
.yf_c00490{bottom:547.566552px;}
.y10_c00490{bottom:548.857507px;}
.y11_c00490{bottom:549.849978px;}
.y12_c00490{bottom:551.458782px;}
.y3_c00490{bottom:560.534377px;}
.y4_c00490{bottom:562.265977px;}
.y5_c00490{bottom:562.589788px;}
.y6_c00490{bottom:563.567629px;}
.y7_c00490{bottom:565.005573px;}
.y8_c00490{bottom:565.502994px;}
.y9_c00490{bottom:566.950626px;}
.y1_c00490{bottom:578.695500px;}
.y2_c00490{bottom:582.556599px;}
.h1c_c00490{height:22.050000px;}
.h1a_c00490{height:51.428309px;}
.h17_c00490{height:55.626539px;}
.h11_c00490{height:57.725653px;}
.hc_c00490{height:57.761549px;}
.h12_c00490{height:58.775211px;}
.h3_c00490{height:59.822762px;}
.h19_c00490{height:59.824768px;}
.h9_c00490{height:59.861969px;}
.h14_c00490{height:60.874325px;}
.hb_c00490{height:61.962389px;}
.h4_c00490{height:62.971328px;}
.h1b_c00490{height:62.973440px;}
.he_c00490{height:63.012599px;}
.h5_c00490{height:64.020851px;}
.h13_c00490{height:64.022997px;}
.h6_c00490{height:65.070373px;}
.h18_c00490{height:65.072555px;}
.h15_c00490{height:66.122112px;}
.ha_c00490{height:66.163229px;}
.h8_c00490{height:67.169417px;}
.h16_c00490{height:67.171669px;}
.h7_c00490{height:71.367506px;}
.h10_c00490{height:71.369899px;}
.hd_c00490{height:71.414279px;}
.h2_c00490{height:72.417028px;}
.hf_c00490{height:76.665328px;}
.h0_c00490{height:617.700000px;}
.h1_c00490{height:618.000000px;}
.w0_c00490{width:359.100000px;}
.w1_c00490{width:359.250000px;}
.x0_c00490{left:0.000000px;}
.x2f_c00490{left:12.862500px;}
.x61_c00490{left:17.796788px;}
.x3_c00490{left:19.068112px;}
.x36_c00490{left:20.370210px;}
.x56_c00490{left:21.513189px;}
.x64_c00490{left:22.989824px;}
.x75_c00490{left:24.036162px;}
.x73_c00490{left:27.525900px;}
.xa_c00490{left:34.930284px;}
.x76_c00490{left:36.155214px;}
.x4c_c00490{left:37.457340px;}
.x3c_c00490{left:39.846600px;}
.x65_c00490{left:42.423552px;}
.x4f_c00490{left:44.719500px;}
.x1d_c00490{left:49.105077px;}
.x2c_c00490{left:51.135144px;}
.x37_c00490{left:52.577970px;}
.x4d_c00490{left:54.777270px;}
.x68_c00490{left:56.194434px;}
.x48_c00490{left:58.239000px;}
.x10_c00490{left:59.332047px;}
.x43_c00490{left:63.684240px;}
.x6c_c00490{left:64.935639px;}
.x1e_c00490{left:68.710173px;}
.x50_c00490{left:71.472221px;}
.x59_c00490{left:75.010511px;}
.x69_c00490{left:76.178010px;}
.x26_c00490{left:79.274513px;}
.x4_c00490{left:80.843482px;}
.x7e_c00490{left:86.268303px;}
.x54_c00490{left:88.642586px;}
.x57_c00490{left:90.136149px;}
.x6d_c00490{left:91.207055px;}
.x5_c00490{left:92.371825px;}
.x19_c00490{left:95.321616px;}
.x41_c00490{left:96.867150px;}
.x5d_c00490{left:97.893854px;}
.x5a_c00490{left:99.194802px;}
.x32_c00490{left:101.926980px;}
.x11_c00490{left:104.646700px;}
.x1f_c00490{left:109.189842px;}
.x3d_c00490{left:113.145960px;}
.xb_c00490{left:114.580860px;}
.x63_c00490{left:115.694025px;}
.x7b_c00490{left:118.651385px;}
.x12_c00490{left:122.589146px;}
.x6_c00490{left:127.241668px;}
.x66_c00490{left:128.798888px;}
.x77_c00490{left:130.417925px;}
.x20_c00490{left:132.164160px;}
.x5e_c00490{left:134.108652px;}
.x6a_c00490{left:135.964005px;}
.x13_c00490{left:138.435238px;}
.x3e_c00490{left:140.067090px;}
.x7c_c00490{left:142.398714px;}
.x51_c00490{left:143.448173px;}
.x27_c00490{left:144.719484px;}
.x78_c00490{left:146.042165px;}
.x6b_c00490{left:148.507305px;}
.x1_c00490{left:149.509500px;}
.x21_c00490{left:151.857717px;}
.x38_c00490{left:154.370550px;}
.xc_c00490{left:158.057961px;}
.x44_c00490{left:163.036920px;}
.x2d_c00490{left:164.491336px;}
.x30_c00490{left:167.946000px;}
.x28_c00490{left:170.193039px;}
.x7f_c00490{left:174.308172px;}
.x7_c00490{left:178.537794px;}
.x49_c00490{left:180.885180px;}
.x6e_c00490{left:183.706184px;}
.x52_c00490{left:185.223356px;}
.x33_c00490{left:187.274700px;}
.x29_c00490{left:190.185491px;}
.x1a_c00490{left:192.930419px;}
.x3f_c00490{left:194.129790px;}
.x8_c00490{left:196.275462px;}
.x14_c00490{left:199.804277px;}
.x39_c00490{left:201.852150px;}
.x1b_c00490{left:204.557987px;}
.xd_c00490{left:205.812622px;}
.x15_c00490{left:210.714508px;}
.x42_c00490{left:212.674560px;}
.x45_c00490{left:214.293060px;}
.x53_c00490{left:218.295251px;}
.x3a_c00490{left:219.327450px;}
.x22_c00490{left:221.670879px;}
.x1c_c00490{left:223.388398px;}
.x40_c00490{left:226.233870px;}
.x7d_c00490{left:227.626223px;}
.x16_c00490{left:229.063047px;}
.x31_c00490{left:231.648000px;}
.x34_c00490{left:232.686210px;}
.x71_c00490{left:234.440924px;}
.x4a_c00490{left:236.414640px;}
.x23_c00490{left:238.233525px;}
.xe_c00490{left:242.533149px;}
.x17_c00490{left:243.984615px;}
.x35_c00490{left:245.179950px;}
.x67_c00490{left:246.448608px;}
.x9_c00490{left:247.910298px;}
.x55_c00490{left:248.979462px;}
.x79_c00490{left:252.360417px;}
.x5b_c00490{left:253.483359px;}
.x5f_c00490{left:254.561859px;}
.x6f_c00490{left:258.233477px;}
.x74_c00490{left:260.989985px;}
.x18_c00490{left:263.389546px;}
.x2_c00490{left:266.395497px;}
.x2a_c00490{left:267.919089px;}
.x72_c00490{left:269.786969px;}
.x2e_c00490{left:273.262578px;}
.x46_c00490{left:276.570870px;}
.x5c_c00490{left:278.800517px;}
.x60_c00490{left:280.611497px;}
.x24_c00490{left:281.889060px;}
.x62_c00490{left:284.168526px;}
.x3b_c00490{left:286.074930px;}
.x2b_c00490{left:288.115386px;}
.x47_c00490{left:289.687440px;}
.x4b_c00490{left:290.714430px;}
.x58_c00490{left:293.089050px;}
.x4e_c00490{left:295.230450px;}
.x25_c00490{left:300.241212px;}
.xf_c00490{left:302.044371px;}
.x80_c00490{left:303.706308px;}
.x70_c00490{left:307.058784px;}
.x7a_c00490{left:314.329056px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._0_c00490{width:3.770737pt;}
.fs1a_c00490{font-size:19.600000pt;}
.fs18_c00490{font-size:45.714053pt;}
.fs15_c00490{font-size:49.445812pt;}
.fsf_c00490{font-size:51.311692pt;}
.fsa_c00490{font-size:51.343599pt;}
.fs10_c00490{font-size:52.244632pt;}
.fs1_c00490{font-size:53.175788pt;}
.fs17_c00490{font-size:53.177571pt;}
.fs7_c00490{font-size:53.210639pt;}
.fs12_c00490{font-size:54.110511pt;}
.fs9_c00490{font-size:55.077679pt;}
.fs2_c00490{font-size:55.974514pt;}
.fs19_c00490{font-size:55.976391pt;}
.fsc_c00490{font-size:56.011199pt;}
.fs3_c00490{font-size:56.907423pt;}
.fs11_c00490{font-size:56.909331pt;}
.fs4_c00490{font-size:57.840331pt;}
.fs16_c00490{font-size:57.842271pt;}
.fs13_c00490{font-size:58.775211pt;}
.fs8_c00490{font-size:58.811759pt;}
.fs6_c00490{font-size:59.706148pt;}
.fs14_c00490{font-size:59.708150pt;}
.fs5_c00490{font-size:63.437783pt;}
.fse_c00490{font-size:63.439910pt;}
.fsb_c00490{font-size:63.479359pt;}
.fs0_c00490{font-size:64.370691pt;}
.fsd_c00490{font-size:68.146959pt;}
.y0_c00490{bottom:0.000000pt;}
.yf2_c00490{bottom:28.678612pt;}
.yf3_c00490{bottom:29.700697pt;}
.yf4_c00490{bottom:30.314677pt;}
.yf5_c00490{bottom:31.603535pt;}
.yf6_c00490{bottom:32.131837pt;}
.yf7_c00490{bottom:32.664719pt;}
.yf8_c00490{bottom:33.881617pt;}
.yf9_c00490{bottom:34.290221pt;}
.yfa_c00490{bottom:36.117927pt;}
.yea_c00490{bottom:44.753760pt;}
.yeb_c00490{bottom:45.390100pt;}
.yec_c00490{bottom:46.208735pt;}
.yed_c00490{bottom:47.855615pt;}
.yee_c00490{bottom:48.636707pt;}
.yef_c00490{bottom:51.026383pt;}
.yf0_c00490{bottom:51.441752pt;}
.yf1_c00490{bottom:53.216792pt;}
.ye1_c00490{bottom:59.148368pt;}
.ye2_c00490{bottom:60.153468pt;}
.ye3_c00490{bottom:61.288224pt;}
.ye4_c00490{bottom:61.934220pt;}
.ye5_c00490{bottom:63.150527pt;}
.ye6_c00490{bottom:64.204004pt;}
.ye7_c00490{bottom:64.835975pt;}
.ye8_c00490{bottom:66.649628pt;}
.ye9_c00490{bottom:68.689692pt;}
.yda_c00490{bottom:74.025832pt;}
.ydb_c00490{bottom:74.413800pt;}
.ydc_c00490{bottom:74.888651pt;}
.ydd_c00490{bottom:77.433507pt;}
.yde_c00490{bottom:79.705537pt;}
.ydf_c00490{bottom:80.073904pt;}
.ye0_c00490{bottom:81.908909pt;}
.yd3_c00490{bottom:89.380468pt;}
.yd4_c00490{bottom:90.914104pt;}
.yd5_c00490{bottom:91.946700pt;}
.yd6_c00490{bottom:93.892701pt;}
.yd7_c00490{bottom:94.586284pt;}
.yd8_c00490{bottom:96.995085pt;}
.yd9_c00490{bottom:97.480831pt;}
.ycf_c00490{bottom:104.966303pt;}
.yd0_c00490{bottom:106.022016pt;}
.yd1_c00490{bottom:110.018643pt;}
.yd2_c00490{bottom:112.900968pt;}
.yfb_c00490{bottom:113.520000pt;}
.yc5_c00490{bottom:120.079116pt;}
.yc6_c00490{bottom:120.997543pt;}
.yc7_c00490{bottom:121.823385pt;}
.yc8_c00490{bottom:122.367459pt;}
.yc9_c00490{bottom:124.225273pt;}
.yca_c00490{bottom:124.685076pt;}
.ycb_c00490{bottom:125.224616pt;}
.ycc_c00490{bottom:127.047761pt;}
.ycd_c00490{bottom:127.696477pt;}
.yce_c00490{bottom:128.210415pt;}
.ybd_c00490{bottom:135.676781pt;}
.ybe_c00490{bottom:136.587144pt;}
.ybf_c00490{bottom:137.030181pt;}
.yc0_c00490{bottom:137.871631pt;}
.yc1_c00490{bottom:140.833984pt;}
.yc2_c00490{bottom:141.526455pt;}
.yc3_c00490{bottom:143.221973pt;}
.yc4_c00490{bottom:144.785740pt;}
.yb4_c00490{bottom:150.073991pt;}
.yb5_c00490{bottom:151.236012pt;}
.yb6_c00490{bottom:151.929912pt;}
.yb7_c00490{bottom:152.837996pt;}
.yb8_c00490{bottom:154.003961pt;}
.yb9_c00490{bottom:154.439436pt;}
.yba_c00490{bottom:156.698485pt;}
.ybb_c00490{bottom:157.824261pt;}
.ybc_c00490{bottom:159.242877pt;}
.yad_c00490{bottom:164.947136pt;}
.yae_c00490{bottom:165.621735pt;}
.yaf_c00490{bottom:168.618863pt;}
.yb0_c00490{bottom:169.617089pt;}
.yb1_c00490{bottom:170.657908pt;}
.yb2_c00490{bottom:172.700807pt;}
.yb3_c00490{bottom:173.285399pt;}
.ya5_c00490{bottom:180.534960pt;}
.ya6_c00490{bottom:182.798816pt;}
.ya7_c00490{bottom:183.359453pt;}
.ya8_c00490{bottom:184.045075pt;}
.ya9_c00490{bottom:186.064539pt;}
.yaa_c00490{bottom:186.437360pt;}
.yab_c00490{bottom:187.073749pt;}
.yac_c00490{bottom:188.511587pt;}
.y9f_c00490{bottom:195.410845pt;}
.ya0_c00490{bottom:196.526933pt;}
.ya1_c00490{bottom:197.243493pt;}
.ya2_c00490{bottom:199.059549pt;}
.ya3_c00490{bottom:201.101703pt;}
.ya4_c00490{bottom:203.942657pt;}
.y98_c00490{bottom:211.003924pt;}
.y99_c00490{bottom:213.448433pt;}
.y9a_c00490{bottom:214.608031pt;}
.y9b_c00490{bottom:216.616439pt;}
.y9c_c00490{bottom:217.168725pt;}
.y9d_c00490{bottom:218.466739pt;}
.y9e_c00490{bottom:219.301479pt;}
.y91_c00490{bottom:227.312180pt;}
.y92_c00490{bottom:228.932031pt;}
.y93_c00490{bottom:229.663665pt;}
.y94_c00490{bottom:231.348479pt;}
.y95_c00490{bottom:231.732225pt;}
.y96_c00490{bottom:234.331276pt;}
.y97_c00490{bottom:235.097183pt;}
.y89_c00490{bottom:242.186608pt;}
.y8a_c00490{bottom:244.323965pt;}
.y8b_c00490{bottom:244.910849pt;}
.y8c_c00490{bottom:246.218793pt;}
.y8d_c00490{bottom:246.458467pt;}
.y8e_c00490{bottom:248.897123pt;}
.y8f_c00490{bottom:250.144892pt;}
.y90_c00490{bottom:250.645155pt;}
.y83_c00490{bottom:257.776427pt;}
.y84_c00490{bottom:259.705205pt;}
.y85_c00490{bottom:260.137112pt;}
.y86_c00490{bottom:261.598477pt;}
.y87_c00490{bottom:262.996247pt;}
.y88_c00490{bottom:264.271748pt;}
.y7b_c00490{bottom:272.653333pt;}
.y7c_c00490{bottom:273.462669pt;}
.y7d_c00490{bottom:274.067280pt;}
.y7e_c00490{bottom:275.640120pt;}
.y7f_c00490{bottom:276.903923pt;}
.y80_c00490{bottom:277.904429pt;}
.y81_c00490{bottom:278.691325pt;}
.y82_c00490{bottom:279.650216pt;}
.y73_c00490{bottom:287.513680pt;}
.y74_c00490{bottom:288.119360pt;}
.y75_c00490{bottom:288.719387pt;}
.y76_c00490{bottom:290.159227pt;}
.y77_c00490{bottom:291.854427pt;}
.y78_c00490{bottom:292.555973pt;}
.y79_c00490{bottom:293.306080pt;}
.y7a_c00490{bottom:297.054400pt;}
.y6a_c00490{bottom:301.678587pt;}
.y6b_c00490{bottom:302.798533pt;}
.y6c_c00490{bottom:303.964640pt;}
.y6d_c00490{bottom:304.447120pt;}
.y6e_c00490{bottom:306.099387pt;}
.y6f_c00490{bottom:306.504853pt;}
.y70_c00490{bottom:308.182987pt;}
.y71_c00490{bottom:309.367973pt;}
.y72_c00490{bottom:309.824587pt;}
.y61_c00490{bottom:316.556293pt;}
.y62_c00490{bottom:317.573173pt;}
.y63_c00490{bottom:317.890667pt;}
.y64_c00490{bottom:320.606907pt;}
.y65_c00490{bottom:320.982800pt;}
.y66_c00490{bottom:321.900720pt;}
.y67_c00490{bottom:322.576960pt;}
.y68_c00490{bottom:324.515120pt;}
.y69_c00490{bottom:324.923040pt;}
.y5b_c00490{bottom:331.923200pt;}
.y5c_c00490{bottom:334.157520pt;}
.y5d_c00490{bottom:335.718293pt;}
.y5e_c00490{bottom:337.554187pt;}
.y5f_c00490{bottom:339.189573pt;}
.y60_c00490{bottom:339.717173pt;}
.y55_c00490{bottom:347.279973pt;}
.y56_c00490{bottom:347.796347pt;}
.y57_c00490{bottom:349.750373pt;}
.y58_c00490{bottom:350.467733pt;}
.y59_c00490{bottom:351.909040pt;}
.y5a_c00490{bottom:352.765227pt;}
.y4d_c00490{bottom:362.406747pt;}
.y4e_c00490{bottom:363.323467pt;}
.y4f_c00490{bottom:365.614667pt;}
.y50_c00490{bottom:366.218880pt;}
.y51_c00490{bottom:367.569867pt;}
.y52_c00490{bottom:368.067280pt;}
.y53_c00490{bottom:369.451280pt;}
.y54_c00490{bottom:369.966187pt;}
.y44_c00490{bottom:378.245867pt;}
.y45_c00490{bottom:379.343440pt;}
.y46_c00490{bottom:379.909973pt;}
.y47_c00490{bottom:380.517973pt;}
.y48_c00490{bottom:381.359200pt;}
.y49_c00490{bottom:382.870267pt;}
.y4a_c00490{bottom:384.121760pt;}
.y4b_c00490{bottom:384.466587pt;}
.y4c_c00490{bottom:385.252107pt;}
.y3e_c00490{bottom:395.762667pt;}
.y3f_c00490{bottom:397.379547pt;}
.y40_c00490{bottom:397.708000pt;}
.y41_c00490{bottom:398.519707pt;}
.y42_c00490{bottom:399.652187pt;}
.y43_c00490{bottom:400.654133pt;}
.y36_c00490{bottom:407.809296pt;}
.y37_c00490{bottom:408.552856pt;}
.y38_c00490{bottom:409.491132pt;}
.y39_c00490{bottom:410.812384pt;}
.y3a_c00490{bottom:411.177236pt;}
.y3b_c00490{bottom:411.514604pt;}
.y3c_c00490{bottom:411.990896pt;}
.y3d_c00490{bottom:413.694992pt;}
.y2f_c00490{bottom:422.685912pt;}
.y30_c00490{bottom:424.139100pt;}
.y31_c00490{bottom:425.711376pt;}
.y32_c00490{bottom:426.323336pt;}
.y33_c00490{bottom:426.803692pt;}
.y34_c00490{bottom:428.671456pt;}
.y35_c00490{bottom:429.156464pt;}
.y25_c00490{bottom:438.519588pt;}
.y26_c00490{bottom:439.282688pt;}
.y27_c00490{bottom:439.771672pt;}
.y28_c00490{bottom:440.780248pt;}
.y29_c00490{bottom:441.352160pt;}
.y2a_c00490{bottom:441.842408pt;}
.y2b_c00490{bottom:443.581616pt;}
.y2c_c00490{bottom:443.994600pt;}
.y2d_c00490{bottom:445.081760pt;}
.y2e_c00490{bottom:445.539288pt;}
.y1d_c00490{bottom:452.912404pt;}
.y1e_c00490{bottom:453.448072pt;}
.y1f_c00490{bottom:455.298384pt;}
.y20_c00490{bottom:455.894852pt;}
.y21_c00490{bottom:458.339124pt;}
.y22_c00490{bottom:458.701876pt;}
.y23_c00490{bottom:459.288124pt;}
.y24_c00490{bottom:460.021932pt;}
.y13_c00490{bottom:468.269672pt;}
.y14_c00490{bottom:469.503008pt;}
.y15_c00490{bottom:470.873572pt;}
.y16_c00490{bottom:471.416412pt;}
.y17_c00490{bottom:471.896364pt;}
.y18_c00490{bottom:473.752996pt;}
.y19_c00490{bottom:474.082684pt;}
.y1a_c00490{bottom:474.637448pt;}
.y1b_c00490{bottom:475.088920pt;}
.y1c_c00490{bottom:475.676036pt;}
.ya_c00490{bottom:483.376200pt;}
.yb_c00490{bottom:483.767856pt;}
.yc_c00490{bottom:484.876108pt;}
.yd_c00490{bottom:485.143584pt;}
.ye_c00490{bottom:485.681240pt;}
.yf_c00490{bottom:486.725824pt;}
.y10_c00490{bottom:487.873340pt;}
.y11_c00490{bottom:488.755536pt;}
.y12_c00490{bottom:490.185584pt;}
.y3_c00490{bottom:498.252780pt;}
.y4_c00490{bottom:499.791980pt;}
.y5_c00490{bottom:500.079812pt;}
.y6_c00490{bottom:500.949004pt;}
.y7_c00490{bottom:502.227176pt;}
.y8_c00490{bottom:502.669328pt;}
.y9_c00490{bottom:503.956112pt;}
.y1_c00490{bottom:514.396000pt;}
.y2_c00490{bottom:517.828088pt;}
.h1c_c00490{height:19.600000pt;}
.h1a_c00490{height:45.714053pt;}
.h17_c00490{height:49.445812pt;}
.h11_c00490{height:51.311692pt;}
.hc_c00490{height:51.343599pt;}
.h12_c00490{height:52.244632pt;}
.h3_c00490{height:53.175788pt;}
.h19_c00490{height:53.177571pt;}
.h9_c00490{height:53.210639pt;}
.h14_c00490{height:54.110511pt;}
.hb_c00490{height:55.077679pt;}
.h4_c00490{height:55.974514pt;}
.h1b_c00490{height:55.976391pt;}
.he_c00490{height:56.011199pt;}
.h5_c00490{height:56.907423pt;}
.h13_c00490{height:56.909331pt;}
.h6_c00490{height:57.840331pt;}
.h18_c00490{height:57.842271pt;}
.h15_c00490{height:58.775211pt;}
.ha_c00490{height:58.811759pt;}
.h8_c00490{height:59.706148pt;}
.h16_c00490{height:59.708150pt;}
.h7_c00490{height:63.437783pt;}
.h10_c00490{height:63.439910pt;}
.hd_c00490{height:63.479359pt;}
.h2_c00490{height:64.370691pt;}
.hf_c00490{height:68.146959pt;}
.h0_c00490{height:549.066667pt;}
.h1_c00490{height:549.333333pt;}
.w0_c00490{width:319.200000pt;}
.w1_c00490{width:319.333333pt;}
.x0_c00490{left:0.000000pt;}
.x2f_c00490{left:11.433333pt;}
.x61_c00490{left:15.819367pt;}
.x3_c00490{left:16.949433pt;}
.x36_c00490{left:18.106853pt;}
.x56_c00490{left:19.122835pt;}
.x64_c00490{left:20.435399pt;}
.x75_c00490{left:21.365477pt;}
.x73_c00490{left:24.467467pt;}
.xa_c00490{left:31.049141pt;}
.x76_c00490{left:32.137968pt;}
.x4c_c00490{left:33.295413pt;}
.x3c_c00490{left:35.419200pt;}
.x65_c00490{left:37.709824pt;}
.x4f_c00490{left:39.750667pt;}
.x1d_c00490{left:43.648957pt;}
.x2c_c00490{left:45.453461pt;}
.x37_c00490{left:46.735973pt;}
.x4d_c00490{left:48.690907pt;}
.x68_c00490{left:49.950608pt;}
.x48_c00490{left:51.768000pt;}
.x10_c00490{left:52.739597pt;}
.x43_c00490{left:56.608213pt;}
.x6c_c00490{left:57.720568pt;}
.x1e_c00490{left:61.075709pt;}
.x50_c00490{left:63.530863pt;}
.x59_c00490{left:66.676009pt;}
.x69_c00490{left:67.713787pt;}
.x26_c00490{left:70.466233pt;}
.x4_c00490{left:71.860873pt;}
.x7e_c00490{left:76.682936pt;}
.x54_c00490{left:78.793409pt;}
.x57_c00490{left:80.121021pt;}
.x6d_c00490{left:81.072937pt;}
.x5_c00490{left:82.108289pt;}
.x19_c00490{left:84.730325pt;}
.x41_c00490{left:86.104133pt;}
.x5d_c00490{left:87.016759pt;}
.x5a_c00490{left:88.173157pt;}
.x32_c00490{left:90.601760pt;}
.x11_c00490{left:93.019289pt;}
.x1f_c00490{left:97.057637pt;}
.x3d_c00490{left:100.574187pt;}
.xb_c00490{left:101.849653pt;}
.x63_c00490{left:102.839133pt;}
.x7b_c00490{left:105.467897pt;}
.x12_c00490{left:108.968129pt;}
.x6_c00490{left:113.103705pt;}
.x66_c00490{left:114.487900pt;}
.x77_c00490{left:115.927044pt;}
.x20_c00490{left:117.479253pt;}
.x5e_c00490{left:119.207691pt;}
.x6a_c00490{left:120.856893pt;}
.x13_c00490{left:123.053545pt;}
.x3e_c00490{left:124.504080pt;}
.x7c_c00490{left:126.576635pt;}
.x51_c00490{left:127.509487pt;}
.x27_c00490{left:128.639541pt;}
.x78_c00490{left:129.815257pt;}
.x6b_c00490{left:132.006493pt;}
.x1_c00490{left:132.897333pt;}
.x21_c00490{left:134.984637pt;}
.x38_c00490{left:137.218267pt;}
.xc_c00490{left:140.495965pt;}
.x44_c00490{left:144.921707pt;}
.x2d_c00490{left:146.214521pt;}
.x30_c00490{left:149.285333pt;}
.x28_c00490{left:151.282701pt;}
.x7f_c00490{left:154.940597pt;}
.x7_c00490{left:158.700261pt;}
.x49_c00490{left:160.786827pt;}
.x6e_c00490{left:163.294385pt;}
.x52_c00490{left:164.642983pt;}
.x33_c00490{left:166.466400pt;}
.x29_c00490{left:169.053769pt;}
.x1a_c00490{left:171.493705pt;}
.x3f_c00490{left:172.559813pt;}
.x8_c00490{left:174.467077pt;}
.x14_c00490{left:177.603801pt;}
.x39_c00490{left:179.424133pt;}
.x1b_c00490{left:181.829321pt;}
.xd_c00490{left:182.944553pt;}
.x15_c00490{left:187.301785pt;}
.x42_c00490{left:189.044053pt;}
.x45_c00490{left:190.482720pt;}
.x53_c00490{left:194.040223pt;}
.x3a_c00490{left:194.957733pt;}
.x22_c00490{left:197.040781pt;}
.x1c_c00490{left:198.567465pt;}
.x40_c00490{left:201.096773pt;}
.x7d_c00490{left:202.334420pt;}
.x16_c00490{left:203.611597pt;}
.x31_c00490{left:205.909333pt;}
.x34_c00490{left:206.832187pt;}
.x71_c00490{left:208.391932pt;}
.x4a_c00490{left:210.146347pt;}
.x23_c00490{left:211.763133pt;}
.xe_c00490{left:215.585021pt;}
.x17_c00490{left:216.875213pt;}
.x35_c00490{left:217.937733pt;}
.x67_c00490{left:219.065429pt;}
.x9_c00490{left:220.364709pt;}
.x55_c00490{left:221.315077pt;}
.x79_c00490{left:224.320371pt;}
.x5b_c00490{left:225.318541pt;}
.x5f_c00490{left:226.277208pt;}
.x6f_c00490{left:229.540868pt;}
.x74_c00490{left:231.991097pt;}
.x18_c00490{left:234.124041pt;}
.x2_c00490{left:236.795997pt;}
.x2a_c00490{left:238.150301pt;}
.x72_c00490{left:239.810639pt;}
.x2e_c00490{left:242.900069pt;}
.x46_c00490{left:245.840773pt;}
.x5c_c00490{left:247.822681pt;}
.x60_c00490{left:249.432441pt;}
.x24_c00490{left:250.568053pt;}
.x62_c00490{left:252.594245pt;}
.x3b_c00490{left:254.288827pt;}
.x2b_c00490{left:256.102565pt;}
.x47_c00490{left:257.499947pt;}
.x4b_c00490{left:258.412827pt;}
.x58_c00490{left:260.523600pt;}
.x4e_c00490{left:262.427067pt;}
.x25_c00490{left:266.881077pt;}
.xf_c00490{left:268.483885pt;}
.x80_c00490{left:269.961163pt;}
.x70_c00490{left:272.941141pt;}
.x7a_c00490{left:279.403605pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00491 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00491 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00491 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00491 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00491{transform:matrix(0.084394,0.001350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.084394,0.001350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.084394,0.001350,-0.003999,0.249968,0,0);}
.m53_c00491{transform:matrix(0.114472,0.002289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.114472,0.002289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.114472,0.002289,-0.004999,0.249950,0,0);}
.m47_c00491{transform:matrix(0.128244,0.002565,-0.004999,0.249950,0,0);-ms-transform:matrix(0.128244,0.002565,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.128244,0.002565,-0.004999,0.249950,0,0);}
.m43_c00491{transform:matrix(0.130969,0.002619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.130969,0.002619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.130969,0.002619,-0.004999,0.249950,0,0);}
.me_c00491{transform:matrix(0.133263,0.002132,-0.003999,0.249968,0,0);-ms-transform:matrix(0.133263,0.002132,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.133263,0.002132,-0.003999,0.249968,0,0);}
.mae_c00491{transform:matrix(0.135472,0.001897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.135472,0.001897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.135472,0.001897,-0.003500,0.249976,0,0);}
.maf_c00491{transform:matrix(0.144561,0.002024,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144561,0.002024,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144561,0.002024,-0.003500,0.249976,0,0);}
.m78_c00491{transform:matrix(0.145241,0.002905,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145241,0.002905,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145241,0.002905,-0.004999,0.249950,0,0);}
.m1f_c00491{transform:matrix(0.146996,0.002352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146996,0.002352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146996,0.002352,-0.003999,0.249968,0,0);}
.mb3_c00491{transform:matrix(0.148640,0.002081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148640,0.002081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148640,0.002081,-0.003500,0.249976,0,0);}
.m42_c00491{transform:matrix(0.151705,0.003034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151705,0.003034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151705,0.003034,-0.004999,0.249950,0,0);}
.m28_c00491{transform:matrix(0.153519,0.003070,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153519,0.003070,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153519,0.003070,-0.004999,0.249950,0,0);}
.mb6_c00491{transform:matrix(0.153635,0.002151,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153635,0.002151,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153635,0.002151,-0.003500,0.249976,0,0);}
.maa_c00491{transform:matrix(0.154275,0.002160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154275,0.002160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154275,0.002160,-0.003500,0.249976,0,0);}
.m3_c00491{transform:matrix(0.154510,0.002472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154510,0.002472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154510,0.002472,-0.003999,0.249968,0,0);}
.m23_c00491{transform:matrix(0.154744,0.003095,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154744,0.003095,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154744,0.003095,-0.004999,0.249950,0,0);}
.mc2_c00491{transform:matrix(0.154855,0.002168,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154855,0.002168,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154855,0.002168,-0.003500,0.249976,0,0);}
.me4_c00491{transform:matrix(0.155120,0.002172,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155120,0.002172,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155120,0.002172,-0.003500,0.249976,0,0);}
.m4_c00491{transform:matrix(0.155995,0.002496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155995,0.002496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155995,0.002496,-0.003999,0.249968,0,0);}
.md4_c00491{transform:matrix(0.156315,0.002188,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156315,0.002188,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156315,0.002188,-0.003500,0.249976,0,0);}
.m98_c00491{transform:matrix(0.157345,0.002203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157345,0.002203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157345,0.002203,-0.003500,0.249976,0,0);}
.me6_c00491{transform:matrix(0.157495,0.002205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157495,0.002205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157495,0.002205,-0.003500,0.249976,0,0);}
.mf4_c00491{transform:matrix(0.158944,0.002225,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158944,0.002225,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158944,0.002225,-0.003500,0.249976,0,0);}
.mbd_c00491{transform:matrix(0.158994,0.002226,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158994,0.002226,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158994,0.002226,-0.003500,0.249976,0,0);}
.mb0_c00491{transform:matrix(0.159039,0.002227,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159039,0.002227,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159039,0.002227,-0.003500,0.249976,0,0);}
.m0_c00491{transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159595,0.000000,0.000000,0.250000,0,0);}
.m4d_c00491{transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161193,0.003224,-0.004999,0.249950,0,0);}
.m24_c00491{transform:matrix(0.161813,0.003236,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161813,0.003236,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161813,0.003236,-0.004999,0.249950,0,0);}
.m34_c00491{transform:matrix(0.162802,0.003256,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162802,0.003256,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162802,0.003256,-0.004999,0.249950,0,0);}
.mcd_c00491{transform:matrix(0.163049,0.002283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163049,0.002283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163049,0.002283,-0.003500,0.249976,0,0);}
.m40_c00491{transform:matrix(0.163157,0.003263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163157,0.003263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163157,0.003263,-0.004999,0.249950,0,0);}
.mb2_c00491{transform:matrix(0.164624,0.002305,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164624,0.002305,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164624,0.002305,-0.003500,0.249976,0,0);}
.mb7_c00491{transform:matrix(0.165264,0.002314,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165264,0.002314,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165264,0.002314,-0.003500,0.249976,0,0);}
.m7c_c00491{transform:matrix(0.165332,0.003307,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165332,0.003307,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165332,0.003307,-0.004999,0.249950,0,0);}
.mce_c00491{transform:matrix(0.165644,0.002319,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165644,0.002319,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165644,0.002319,-0.003500,0.249976,0,0);}
.m26_c00491{transform:matrix(0.165717,0.003314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165717,0.003314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165717,0.003314,-0.004999,0.249950,0,0);}
.m51_c00491{transform:matrix(0.165722,0.003314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165722,0.003314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165722,0.003314,-0.004999,0.249950,0,0);}
.m44_c00491{transform:matrix(0.167302,0.003346,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167302,0.003346,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167302,0.003346,-0.004999,0.249950,0,0);}
.m20_c00491{transform:matrix(0.167362,0.003347,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167362,0.003347,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167362,0.003347,-0.004999,0.249950,0,0);}
.ma6_c00491{transform:matrix(0.167369,0.002343,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167369,0.002343,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167369,0.002343,-0.003500,0.249976,0,0);}
.m70_c00491{transform:matrix(0.167701,0.003354,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167701,0.003354,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167701,0.003354,-0.004999,0.249950,0,0);}
.md_c00491{transform:matrix(0.167839,0.002685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167839,0.002685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167839,0.002685,-0.003999,0.249968,0,0);}
.m56_c00491{transform:matrix(0.168136,0.003363,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168136,0.003363,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168136,0.003363,-0.004999,0.249950,0,0);}
.mc8_c00491{transform:matrix(0.168354,0.002357,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168354,0.002357,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168354,0.002357,-0.003500,0.249976,0,0);}
.mdb_c00491{transform:matrix(0.168438,0.002358,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168438,0.002358,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168438,0.002358,-0.003500,0.249976,0,0);}
.mf0_c00491{transform:matrix(0.169258,0.002370,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169258,0.002370,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169258,0.002370,-0.003500,0.249976,0,0);}
.m45_c00491{transform:matrix(0.169586,0.003392,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169586,0.003392,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169586,0.003392,-0.004999,0.249950,0,0);}
.m31_c00491{transform:matrix(0.169611,0.003392,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169611,0.003392,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169611,0.003392,-0.004999,0.249950,0,0);}
.m2d_c00491{transform:matrix(0.169866,0.003397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169866,0.003397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169866,0.003397,-0.004999,0.249950,0,0);}
.m18_c00491{transform:matrix(0.170298,0.002725,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170298,0.002725,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170298,0.002725,-0.003999,0.249968,0,0);}
.m4e_c00491{transform:matrix(0.170401,0.003408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170401,0.003408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170401,0.003408,-0.004999,0.249950,0,0);}
.mc3_c00491{transform:matrix(0.170653,0.002389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170653,0.002389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170653,0.002389,-0.003500,0.249976,0,0);}
.m54_c00491{transform:matrix(0.170811,0.003416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170811,0.003416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170811,0.003416,-0.004999,0.249950,0,0);}
.mc5_c00491{transform:matrix(0.171768,0.002405,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171768,0.002405,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171768,0.002405,-0.003500,0.249976,0,0);}
.m22_c00491{transform:matrix(0.172106,0.003442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172106,0.003442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172106,0.003442,-0.004999,0.249950,0,0);}
.mbc_c00491{transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);}
.m8a_c00491{transform:matrix(0.172486,0.003450,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172486,0.003450,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172486,0.003450,-0.004999,0.249950,0,0);}
.m5_c00491{transform:matrix(0.172703,0.002763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172703,0.002763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172703,0.002763,-0.003999,0.249968,0,0);}
.m91_c00491{transform:matrix(0.172933,0.002421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172933,0.002421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172933,0.002421,-0.003500,0.249976,0,0);}
.md1_c00491{transform:matrix(0.173058,0.002423,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173058,0.002423,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173058,0.002423,-0.003500,0.249976,0,0);}
.md5_c00491{transform:matrix(0.173968,0.002436,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173968,0.002436,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173968,0.002436,-0.003500,0.249976,0,0);}
.m38_c00491{transform:matrix(0.174050,0.003481,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174050,0.003481,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174050,0.003481,-0.004999,0.249950,0,0);}
.mc9_c00491{transform:matrix(0.174088,0.002437,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174088,0.002437,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174088,0.002437,-0.003500,0.249976,0,0);}
.m90_c00491{transform:matrix(0.174318,0.002440,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174318,0.002440,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174318,0.002440,-0.003500,0.249976,0,0);}
.mc4_c00491{transform:matrix(0.174628,0.002445,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174628,0.002445,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174628,0.002445,-0.003500,0.249976,0,0);}
.m4c_c00491{transform:matrix(0.174675,0.003494,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174675,0.003494,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174675,0.003494,-0.004999,0.249950,0,0);}
.md7_c00491{transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174773,0.002447,-0.003500,0.249976,0,0);}
.m2c_c00491{transform:matrix(0.174805,0.003496,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174805,0.003496,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174805,0.003496,-0.004999,0.249950,0,0);}
.m25_c00491{transform:matrix(0.174990,0.003500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174990,0.003500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174990,0.003500,-0.004999,0.249950,0,0);}
.m33_c00491{transform:matrix(0.175490,0.003510,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175490,0.003510,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175490,0.003510,-0.004999,0.249950,0,0);}
.md0_c00491{transform:matrix(0.175833,0.002462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175833,0.002462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175833,0.002462,-0.003500,0.249976,0,0);}
.ma3_c00491{transform:matrix(0.176318,0.002468,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176318,0.002468,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176318,0.002468,-0.003500,0.249976,0,0);}
.ma7_c00491{transform:matrix(0.176378,0.002469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176378,0.002469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176378,0.002469,-0.003500,0.249976,0,0);}
.m6e_c00491{transform:matrix(0.176410,0.003528,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176410,0.003528,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176410,0.003528,-0.004999,0.249950,0,0);}
.me7_c00491{transform:matrix(0.176413,0.002470,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176413,0.002470,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176413,0.002470,-0.003500,0.249976,0,0);}
.mab_c00491{transform:matrix(0.176528,0.002471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176528,0.002471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176528,0.002471,-0.003500,0.249976,0,0);}
.m49_c00491{transform:matrix(0.176745,0.003535,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176745,0.003535,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176745,0.003535,-0.004999,0.249950,0,0);}
.mf_c00491{transform:matrix(0.176777,0.002828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176777,0.002828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176777,0.002828,-0.003999,0.249968,0,0);}
.m1d_c00491{transform:matrix(0.177387,0.002838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177387,0.002838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177387,0.002838,-0.003999,0.249968,0,0);}
.m8b_c00491{transform:matrix(0.178044,0.003561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178044,0.003561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178044,0.003561,-0.004999,0.249950,0,0);}
.ma_c00491{transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);}
.m9b_c00491{transform:matrix(0.178732,0.002502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178732,0.002502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178732,0.002502,-0.003500,0.249976,0,0);}
.md3_c00491{transform:matrix(0.179002,0.002506,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179002,0.002506,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179002,0.002506,-0.003500,0.249976,0,0);}
.m7_c00491{transform:matrix(0.179132,0.002866,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179132,0.002866,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179132,0.002866,-0.003999,0.249968,0,0);}
.m7a_c00491{transform:matrix(0.179269,0.003585,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179269,0.003585,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179269,0.003585,-0.004999,0.249950,0,0);}
.md2_c00491{transform:matrix(0.179312,0.002510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179312,0.002510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179312,0.002510,-0.003500,0.249976,0,0);}
.m65_c00491{transform:matrix(0.179829,0.003597,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179829,0.003597,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179829,0.003597,-0.004999,0.249950,0,0);}
.m8c_c00491{transform:matrix(0.179909,0.003598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179909,0.003598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179909,0.003598,-0.004999,0.249950,0,0);}
.m3e_c00491{transform:matrix(0.179929,0.003599,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179929,0.003599,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179929,0.003599,-0.004999,0.249950,0,0);}
.mac_c00491{transform:matrix(0.180122,0.002522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180122,0.002522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180122,0.002522,-0.003500,0.249976,0,0);}
.m76_c00491{transform:matrix(0.180299,0.003606,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180299,0.003606,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180299,0.003606,-0.004999,0.249950,0,0);}
.m21_c00491{transform:matrix(0.180434,0.003609,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180434,0.003609,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180434,0.003609,-0.004999,0.249950,0,0);}
.mcb_c00491{transform:matrix(0.181062,0.002535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181062,0.002535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181062,0.002535,-0.003500,0.249976,0,0);}
.me9_c00491{transform:matrix(0.181117,0.002536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181117,0.002536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181117,0.002536,-0.003500,0.249976,0,0);}
.m7f_c00491{transform:matrix(0.181119,0.003622,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181119,0.003622,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181119,0.003622,-0.004999,0.249950,0,0);}
.m1_c00491{transform:matrix(0.181122,0.002898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181122,0.002898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181122,0.002898,-0.003999,0.249968,0,0);}
.m46_c00491{transform:matrix(0.181319,0.003626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181319,0.003626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181319,0.003626,-0.004999,0.249950,0,0);}
.m6f_c00491{transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181739,0.003635,-0.004999,0.249950,0,0);}
.m3c_c00491{transform:matrix(0.182074,0.003641,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182074,0.003641,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182074,0.003641,-0.004999,0.249950,0,0);}
.m13_c00491{transform:matrix(0.182087,0.002913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182087,0.002913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182087,0.002913,-0.003999,0.249968,0,0);}
.me8_c00491{transform:matrix(0.182107,0.002550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182107,0.002550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182107,0.002550,-0.003500,0.249976,0,0);}
.m74_c00491{transform:matrix(0.182628,0.003653,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182628,0.003653,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182628,0.003653,-0.004999,0.249950,0,0);}
.me5_c00491{transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183182,0.002565,-0.003500,0.249976,0,0);}
.mf3_c00491{transform:matrix(0.183217,0.002565,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183217,0.002565,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183217,0.002565,-0.003500,0.249976,0,0);}
.m9a_c00491{transform:matrix(0.183352,0.002567,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183352,0.002567,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183352,0.002567,-0.003500,0.249976,0,0);}
.m41_c00491{transform:matrix(0.183363,0.003667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183363,0.003667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183363,0.003667,-0.004999,0.249950,0,0);}
.m79_c00491{transform:matrix(0.183383,0.003668,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183383,0.003668,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183383,0.003668,-0.004999,0.249950,0,0);}
.ma4_c00491{transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);}
.m4a_c00491{transform:matrix(0.183688,0.003674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183688,0.003674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183688,0.003674,-0.004999,0.249950,0,0);}
.mb9_c00491{transform:matrix(0.183712,0.002572,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183712,0.002572,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183712,0.002572,-0.003500,0.249976,0,0);}
.ma8_c00491{transform:matrix(0.183792,0.002573,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183792,0.002573,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183792,0.002573,-0.003500,0.249976,0,0);}
.m4f_c00491{transform:matrix(0.184123,0.003682,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184123,0.003682,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184123,0.003682,-0.004999,0.249950,0,0);}
.mb4_c00491{transform:matrix(0.184842,0.002588,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184842,0.002588,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184842,0.002588,-0.003500,0.249976,0,0);}
.m9e_c00491{transform:matrix(0.184897,0.002589,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184897,0.002589,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184897,0.002589,-0.003500,0.249976,0,0);}
.m30_c00491{transform:matrix(0.184973,0.003699,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184973,0.003699,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184973,0.003699,-0.004999,0.249950,0,0);}
.m8d_c00491{transform:matrix(0.185978,0.003720,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185978,0.003720,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185978,0.003720,-0.004999,0.249950,0,0);}
.mdc_c00491{transform:matrix(0.186142,0.002606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186142,0.002606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186142,0.002606,-0.003500,0.249976,0,0);}
.mc6_c00491{transform:matrix(0.186807,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186807,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186807,0.002615,-0.003500,0.249976,0,0);}
.m71_c00491{transform:matrix(0.187048,0.003741,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187048,0.003741,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187048,0.003741,-0.004999,0.249950,0,0);}
.m85_c00491{transform:matrix(0.187098,0.003742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187098,0.003742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187098,0.003742,-0.004999,0.249950,0,0);}
.m77_c00491{transform:matrix(0.187712,0.003754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187712,0.003754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187712,0.003754,-0.004999,0.249950,0,0);}
.mbb_c00491{transform:matrix(0.187732,0.002628,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187732,0.002628,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187732,0.002628,-0.003500,0.249976,0,0);}
.m92_c00491{transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188152,0.002634,-0.003500,0.249976,0,0);}
.m35_c00491{transform:matrix(0.188477,0.003770,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188477,0.003770,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188477,0.003770,-0.004999,0.249950,0,0);}
.mb8_c00491{transform:matrix(0.188866,0.002644,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188866,0.002644,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188866,0.002644,-0.003500,0.249976,0,0);}
.mf1_c00491{transform:matrix(0.188881,0.002644,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188881,0.002644,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188881,0.002644,-0.003500,0.249976,0,0);}
.m48_c00491{transform:matrix(0.189227,0.003785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189227,0.003785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189227,0.003785,-0.004999,0.249950,0,0);}
.m69_c00491{transform:matrix(0.190042,0.003801,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190042,0.003801,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190042,0.003801,-0.004999,0.249950,0,0);}
.m2a_c00491{transform:matrix(0.190102,0.003802,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190102,0.003802,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190102,0.003802,-0.004999,0.249950,0,0);}
.mc1_c00491{transform:matrix(0.190376,0.002665,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190376,0.002665,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190376,0.002665,-0.003500,0.249976,0,0);}
.mca_c00491{transform:matrix(0.190861,0.002672,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190861,0.002672,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190861,0.002672,-0.003500,0.249976,0,0);}
.mdd_c00491{transform:matrix(0.191056,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191056,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191056,0.002675,-0.003500,0.249976,0,0);}
.m99_c00491{transform:matrix(0.191401,0.002680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191401,0.002680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191401,0.002680,-0.003500,0.249976,0,0);}
.ma5_c00491{transform:matrix(0.191661,0.002683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191661,0.002683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191661,0.002683,-0.003500,0.249976,0,0);}
.m3b_c00491{transform:matrix(0.191672,0.003833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191672,0.003833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191672,0.003833,-0.004999,0.249950,0,0);}
.m9f_c00491{transform:matrix(0.191726,0.002684,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191726,0.002684,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191726,0.002684,-0.003500,0.249976,0,0);}
.m8_c00491{transform:matrix(0.191765,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191765,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191765,0.003068,-0.003999,0.249968,0,0);}
.m55_c00491{transform:matrix(0.191877,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191877,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191877,0.003838,-0.004999,0.249950,0,0);}
.mba_c00491{transform:matrix(0.192096,0.002689,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192096,0.002689,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192096,0.002689,-0.003500,0.249976,0,0);}
.m32_c00491{transform:matrix(0.192651,0.003853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192651,0.003853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192651,0.003853,-0.004999,0.249950,0,0);}
.m3a_c00491{transform:matrix(0.192716,0.003854,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192716,0.003854,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192716,0.003854,-0.004999,0.249950,0,0);}
.m37_c00491{transform:matrix(0.192846,0.003857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192846,0.003857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192846,0.003857,-0.004999,0.249950,0,0);}
.m2e_c00491{transform:matrix(0.193881,0.003878,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193881,0.003878,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193881,0.003878,-0.004999,0.249950,0,0);}
.m2f_c00491{transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);}
.mea_c00491{transform:matrix(0.194561,0.002724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194561,0.002724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194561,0.002724,-0.003500,0.249976,0,0);}
.mcc_c00491{transform:matrix(0.195186,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195186,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195186,0.002733,-0.003500,0.249976,0,0);}
.ma9_c00491{transform:matrix(0.195611,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195611,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195611,0.002739,-0.003500,0.249976,0,0);}
.m96_c00491{transform:matrix(0.195806,0.002741,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195806,0.002741,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195806,0.002741,-0.003500,0.249976,0,0);}
.ma0_c00491{transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195911,0.002743,-0.003500,0.249976,0,0);}
.mb1_c00491{transform:matrix(0.195926,0.002743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195926,0.002743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195926,0.002743,-0.003500,0.249976,0,0);}
.mbe_c00491{transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);}
.m2b_c00491{transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196491,0.003930,-0.004999,0.249950,0,0);}
.m81_c00491{transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196576,0.003932,-0.004999,0.249950,0,0);}
.md9_c00491{transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197206,0.002761,-0.003500,0.249976,0,0);}
.me3_c00491{transform:matrix(0.197281,0.002762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197281,0.002762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197281,0.002762,-0.003500,0.249976,0,0);}
.mf2_c00491{transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197601,0.002766,-0.003500,0.249976,0,0);}
.m9c_c00491{transform:matrix(0.197696,0.002768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197696,0.002768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197696,0.002768,-0.003500,0.249976,0,0);}
.m6_c00491{transform:matrix(0.197970,0.003168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197970,0.003168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197970,0.003168,-0.003999,0.249968,0,0);}
.m3f_c00491{transform:matrix(0.198115,0.003962,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198115,0.003962,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198115,0.003962,-0.004999,0.249950,0,0);}
.m15_c00491{transform:matrix(0.198850,0.003182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198850,0.003182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198850,0.003182,-0.003999,0.249968,0,0);}
.m7e_c00491{transform:matrix(0.199035,0.003981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199035,0.003981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199035,0.003981,-0.004999,0.249950,0,0);}
.m68_c00491{transform:matrix(0.199040,0.003981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199040,0.003981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199040,0.003981,-0.004999,0.249950,0,0);}
.m12_c00491{transform:matrix(0.199259,0.003188,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199259,0.003188,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199259,0.003188,-0.003999,0.249968,0,0);}
.mcf_c00491{transform:matrix(0.199670,0.002795,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199670,0.002795,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199670,0.002795,-0.003500,0.249976,0,0);}
.mb5_c00491{transform:matrix(0.200390,0.002805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200390,0.002805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200390,0.002805,-0.003500,0.249976,0,0);}
.m75_c00491{transform:matrix(0.200410,0.004008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200410,0.004008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200410,0.004008,-0.004999,0.249950,0,0);}
.md8_c00491{transform:matrix(0.201365,0.002819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201365,0.002819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201365,0.002819,-0.003500,0.249976,0,0);}
.m61_c00491{transform:matrix(0.201665,0.004033,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201665,0.004033,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201665,0.004033,-0.004999,0.249950,0,0);}
.ma2_c00491{transform:matrix(0.202120,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202120,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202120,0.002830,-0.003500,0.249976,0,0);}
.mda_c00491{transform:matrix(0.202370,0.002833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202370,0.002833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202370,0.002833,-0.003500,0.249976,0,0);}
.m52_c00491{transform:matrix(0.202599,0.004052,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202599,0.004052,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202599,0.004052,-0.004999,0.249950,0,0);}
.m3d_c00491{transform:matrix(0.202669,0.004053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202669,0.004053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202669,0.004053,-0.004999,0.249950,0,0);}
.m97_c00491{transform:matrix(0.203260,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203260,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203260,0.002846,-0.003500,0.249976,0,0);}
.m29_c00491{transform:matrix(0.205589,0.004112,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205589,0.004112,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205589,0.004112,-0.004999,0.249950,0,0);}
.m6b_c00491{transform:matrix(0.206204,0.004124,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206204,0.004124,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206204,0.004124,-0.004999,0.249950,0,0);}
.m19_c00491{transform:matrix(0.206249,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206249,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206249,0.003300,-0.003999,0.249968,0,0);}
.me2_c00491{transform:matrix(0.206355,0.002889,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206355,0.002889,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206355,0.002889,-0.003500,0.249976,0,0);}
.m1e_c00491{transform:matrix(0.206389,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206389,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206389,0.003302,-0.003999,0.249968,0,0);}
.m8e_c00491{transform:matrix(0.206574,0.004131,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206574,0.004131,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206574,0.004131,-0.004999,0.249950,0,0);}
.mdf_c00491{transform:matrix(0.207325,0.002903,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207325,0.002903,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207325,0.002903,-0.003500,0.249976,0,0);}
.m9_c00491{transform:matrix(0.207458,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207458,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207458,0.003319,-0.003999,0.249968,0,0);}
.m9d_c00491{transform:matrix(0.207910,0.002911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207910,0.002911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207910,0.002911,-0.003500,0.249976,0,0);}
.m72_c00491{transform:matrix(0.208253,0.004165,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208253,0.004165,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208253,0.004165,-0.004999,0.249950,0,0);}
.m7b_c00491{transform:matrix(0.208458,0.004169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208458,0.004169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208458,0.004169,-0.004999,0.249950,0,0);}
.m95_c00491{transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);}
.m39_c00491{transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);}
.m73_c00491{transform:matrix(0.208768,0.004175,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208768,0.004175,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208768,0.004175,-0.004999,0.249950,0,0);}
.m82_c00491{transform:matrix(0.209003,0.004180,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209003,0.004180,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209003,0.004180,-0.004999,0.249950,0,0);}
.m14_c00491{transform:matrix(0.209008,0.003344,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209008,0.003344,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209008,0.003344,-0.003999,0.249968,0,0);}
.mc7_c00491{transform:matrix(0.209434,0.002932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209434,0.002932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209434,0.002932,-0.003500,0.249976,0,0);}
.m67_c00491{transform:matrix(0.209458,0.004189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209458,0.004189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209458,0.004189,-0.004999,0.249950,0,0);}
.med_c00491{transform:matrix(0.209564,0.002934,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209564,0.002934,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209564,0.002934,-0.003500,0.249976,0,0);}
.m84_c00491{transform:matrix(0.209663,0.004193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209663,0.004193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209663,0.004193,-0.004999,0.249950,0,0);}
.m86_c00491{transform:matrix(0.209963,0.004199,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209963,0.004199,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209963,0.004199,-0.004999,0.249950,0,0);}
.m11_c00491{transform:matrix(0.210023,0.003360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210023,0.003360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210023,0.003360,-0.003999,0.249968,0,0);}
.me1_c00491{transform:matrix(0.210114,0.002942,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210114,0.002942,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210114,0.002942,-0.003500,0.249976,0,0);}
.meb_c00491{transform:matrix(0.210209,0.002943,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210209,0.002943,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210209,0.002943,-0.003500,0.249976,0,0);}
.m80_c00491{transform:matrix(0.210263,0.004205,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210263,0.004205,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210263,0.004205,-0.004999,0.249950,0,0);}
.m87_c00491{transform:matrix(0.210468,0.004209,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210468,0.004209,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210468,0.004209,-0.004999,0.249950,0,0);}
.mad_c00491{transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);}
.m6c_c00491{transform:matrix(0.212058,0.004241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212058,0.004241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212058,0.004241,-0.004999,0.249950,0,0);}
.m1a_c00491{transform:matrix(0.212508,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212508,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212508,0.003400,-0.003999,0.249968,0,0);}
.m83_c00491{transform:matrix(0.212777,0.004256,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212777,0.004256,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212777,0.004256,-0.004999,0.249950,0,0);}
.m4b_c00491{transform:matrix(0.213417,0.004268,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213417,0.004268,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213417,0.004268,-0.004999,0.249950,0,0);}
.mc_c00491{transform:matrix(0.213488,0.003416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213488,0.003416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213488,0.003416,-0.003999,0.249968,0,0);}
.m89_c00491{transform:matrix(0.216537,0.004331,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216537,0.004331,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216537,0.004331,-0.004999,0.249950,0,0);}
.me0_c00491{transform:matrix(0.217694,0.003048,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217694,0.003048,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217694,0.003048,-0.003500,0.249976,0,0);}
.mec_c00491{transform:matrix(0.218119,0.003054,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218119,0.003054,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218119,0.003054,-0.003500,0.249976,0,0);}
.m10_c00491{transform:matrix(0.218562,0.003497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218562,0.003497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218562,0.003497,-0.003999,0.249968,0,0);}
.mee_c00491{transform:matrix(0.220163,0.003082,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220163,0.003082,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220163,0.003082,-0.003500,0.249976,0,0);}
.md6_c00491{transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220603,0.003088,-0.003500,0.249976,0,0);}
.m16_c00491{transform:matrix(0.221257,0.003540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221257,0.003540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221257,0.003540,-0.003999,0.249968,0,0);}
.m7d_c00491{transform:matrix(0.221581,0.004432,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221581,0.004432,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221581,0.004432,-0.004999,0.249950,0,0);}
.m64_c00491{transform:matrix(0.223330,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223330,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223330,0.004467,-0.004999,0.249950,0,0);}
.m17_c00491{transform:matrix(0.223391,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223391,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223391,0.003574,-0.003999,0.249968,0,0);}
.m6d_c00491{transform:matrix(0.224145,0.004483,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224145,0.004483,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224145,0.004483,-0.004999,0.249950,0,0);}
.m94_c00491{transform:matrix(0.224273,0.003140,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224273,0.003140,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224273,0.003140,-0.003500,0.249976,0,0);}
.m6a_c00491{transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);}
.mef_c00491{transform:matrix(0.226023,0.003164,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226023,0.003164,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226023,0.003164,-0.003500,0.249976,0,0);}
.m93_c00491{transform:matrix(0.226118,0.003166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226118,0.003166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226118,0.003166,-0.003500,0.249976,0,0);}
.m36_c00491{transform:matrix(0.228414,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228414,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228414,0.004568,-0.004999,0.249950,0,0);}
.ma1_c00491{transform:matrix(0.230542,0.003228,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230542,0.003228,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230542,0.003228,-0.003500,0.249976,0,0);}
.mde_c00491{transform:matrix(0.231217,0.003237,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231217,0.003237,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231217,0.003237,-0.003500,0.249976,0,0);}
.mbf_c00491{transform:matrix(0.231762,0.003245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231762,0.003245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231762,0.003245,-0.003500,0.249976,0,0);}
.m62_c00491{transform:matrix(0.232219,0.004644,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232219,0.004644,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232219,0.004644,-0.004999,0.249950,0,0);}
.m63_c00491{transform:matrix(0.234943,0.004699,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234943,0.004699,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234943,0.004699,-0.004999,0.249950,0,0);}
.m88_c00491{transform:matrix(0.236438,0.004729,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236438,0.004729,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236438,0.004729,-0.004999,0.249950,0,0);}
.m59_c00491{transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);}
.m66_c00491{transform:matrix(0.242437,0.004849,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242437,0.004849,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242437,0.004849,-0.004999,0.249950,0,0);}
.m50_c00491{transform:matrix(0.258713,0.005174,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258713,0.005174,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258713,0.005174,-0.004999,0.249950,0,0);}
.m1c_c00491{transform:matrix(0.260802,0.004173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260802,0.004173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260802,0.004173,-0.003999,0.249968,0,0);}
.m8f_c00491{transform:matrix(0.267004,0.003738,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267004,0.003738,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267004,0.003738,-0.003500,0.249976,0,0);}
.m27_c00491{transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);}
.mb_c00491{transform:matrix(0.276740,0.004428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276740,0.004428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276740,0.004428,-0.003999,0.249968,0,0);}
.m5d_c00491{transform:matrix(0.283728,0.005675,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283728,0.005675,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283728,0.005675,-0.004999,0.249950,0,0);}
.m5f_c00491{transform:matrix(0.300635,0.006013,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300635,0.006013,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300635,0.006013,-0.004999,0.249950,0,0);}
.m5c_c00491{transform:matrix(0.301350,0.006027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.301350,0.006027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.301350,0.006027,-0.004999,0.249950,0,0);}
.m5a_c00491{transform:matrix(0.307139,0.006143,-0.004999,0.249950,0,0);-ms-transform:matrix(0.307139,0.006143,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.307139,0.006143,-0.004999,0.249950,0,0);}
.m60_c00491{transform:matrix(0.319361,0.006387,-0.004999,0.249950,0,0);-ms-transform:matrix(0.319361,0.006387,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.319361,0.006387,-0.004999,0.249950,0,0);}
.m58_c00491{transform:matrix(0.319461,0.006389,-0.004999,0.249950,0,0);-ms-transform:matrix(0.319461,0.006389,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.319461,0.006389,-0.004999,0.249950,0,0);}
.m5b_c00491{transform:matrix(0.326650,0.006533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.326650,0.006533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.326650,0.006533,-0.004999,0.249950,0,0);}
.mc0_c00491{transform:matrix(0.331003,0.004634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.331003,0.004634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.331003,0.004634,-0.003500,0.249976,0,0);}
.m57_c00491{transform:matrix(0.350480,0.007010,-0.004999,0.249950,0,0);-ms-transform:matrix(0.350480,0.007010,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.350480,0.007010,-0.004999,0.249950,0,0);}
.m5e_c00491{transform:matrix(0.355294,0.007106,-0.004999,0.249950,0,0);-ms-transform:matrix(0.355294,0.007106,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.355294,0.007106,-0.004999,0.249950,0,0);}
.m2_c00491{transform:matrix(0.664120,0.010626,-0.003999,0.249968,0,0);-ms-transform:matrix(0.664120,0.010626,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.664120,0.010626,-0.003999,0.249968,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:0.000000px;}
.fc0_c00491{color:transparent;}
.fs9_c00491{font-size:38.857769px;}
.fsa_c00491{font-size:57.761549px;}
.fs14_c00491{font-size:58.805762px;}
.fsb_c00491{font-size:59.861969px;}
.fsf_c00491{font-size:61.956071px;}
.fse_c00491{font-size:61.962389px;}
.fs13_c00491{font-size:64.056277px;}
.fs3_c00491{font-size:64.058198px;}
.fsd_c00491{font-size:64.062809px;}
.fs8_c00491{font-size:65.113019px;}
.fs6_c00491{font-size:66.163229px;}
.fs11_c00491{font-size:67.206585px;}
.fsc_c00491{font-size:67.213439px;}
.fs10_c00491{font-size:68.256688px;}
.fs1_c00491{font-size:68.258735px;}
.fs5_c00491{font-size:68.263649px;}
.fs12_c00491{font-size:69.306791px;}
.fs2_c00491{font-size:69.308870px;}
.fs7_c00491{font-size:70.364069px;}
.fs4_c00491{font-size:71.414279px;}
.fs0_c00491{font-size:80.850000px;}
.y0_c00491{bottom:0.000000px;}
.yf4_c00491{bottom:38.721618px;}
.yf3_c00491{bottom:38.721717px;}
.yec_c00491{bottom:38.722281px;}
.yf0_c00491{bottom:38.722392px;}
.yf2_c00491{bottom:38.722416px;}
.yef_c00491{bottom:38.722431px;}
.yed_c00491{bottom:38.722806px;}
.yf1_c00491{bottom:38.722833px;}
.yee_c00491{bottom:38.722908px;}
.ye9_c00491{bottom:55.246368px;}
.ye8_c00491{bottom:55.246404px;}
.ye7_c00491{bottom:55.246722px;}
.yeb_c00491{bottom:55.246893px;}
.yea_c00491{bottom:55.246929px;}
.ye6_c00491{bottom:55.246941px;}
.ye5_c00491{bottom:55.247517px;}
.ye4_c00491{bottom:55.247976px;}
.ye3_c00491{bottom:71.728299px;}
.ye2_c00491{bottom:72.557295px;}
.ye1_c00491{bottom:72.891210px;}
.ye0_c00491{bottom:73.010667px;}
.ydf_c00491{bottom:74.032647px;}
.yde_c00491{bottom:74.773500px;}
.ydd_c00491{bottom:86.124381px;}
.ydc_c00491{bottom:86.524425px;}
.ydb_c00491{bottom:86.816064px;}
.yda_c00491{bottom:87.667914px;}
.yd9_c00491{bottom:87.972498px;}
.yd8_c00491{bottom:88.903524px;}
.yd7_c00491{bottom:89.276868px;}
.yd6_c00491{bottom:90.168594px;}
.yd3_c00491{bottom:105.746337px;}
.ycf_c00491{bottom:105.746388px;}
.yd0_c00491{bottom:105.746529px;}
.yd1_c00491{bottom:105.746571px;}
.yd5_c00491{bottom:105.746862px;}
.yd2_c00491{bottom:105.746874px;}
.yd4_c00491{bottom:105.746880px;}
.yce_c00491{bottom:122.063160px;}
.ycd_c00491{bottom:122.305101px;}
.ycc_c00491{bottom:122.807904px;}
.ycb_c00491{bottom:123.616950px;}
.yca_c00491{bottom:124.028193px;}
.yc9_c00491{bottom:124.210515px;}
.yc8_c00491{bottom:125.008326px;}
.yc7_c00491{bottom:125.541306px;}
.yc6_c00491{bottom:138.434502px;}
.yc5_c00491{bottom:138.717981px;}
.yc4_c00491{bottom:139.287816px;}
.yc3_c00491{bottom:139.530765px;}
.yc2_c00491{bottom:139.893603px;}
.yc1_c00491{bottom:140.255916px;}
.yc0_c00491{bottom:140.660187px;}
.ybf_c00491{bottom:140.820522px;}
.ybe_c00491{bottom:141.704748px;}
.ybd_c00491{bottom:142.283025px;}
.ybc_c00491{bottom:155.587314px;}
.ybb_c00491{bottom:156.597120px;}
.yba_c00491{bottom:156.880746px;}
.yb9_c00491{bottom:157.855251px;}
.yb8_c00491{bottom:158.109498px;}
.yb7_c00491{bottom:158.744685px;}
.yb6_c00491{bottom:159.565029px;}
.yb5_c00491{bottom:172.799157px;}
.yb4_c00491{bottom:173.369406px;}
.yb3_c00491{bottom:173.698170px;}
.yb2_c00491{bottom:174.257415px;}
.yb1_c00491{bottom:174.630801px;}
.yb0_c00491{bottom:176.109921px;}
.yaf_c00491{bottom:176.384940px;}
.yae_c00491{bottom:176.614245px;}
.yad_c00491{bottom:177.117036px;}
.yac_c00491{bottom:189.904926px;}
.yab_c00491{bottom:190.172490px;}
.yaa_c00491{bottom:190.831668px;}
.ya9_c00491{bottom:191.155824px;}
.ya8_c00491{bottom:192.508659px;}
.ya7_c00491{bottom:192.776160px;}
.ya6_c00491{bottom:193.651161px;}
.ya5_c00491{bottom:193.857420px;}
.ya4_c00491{bottom:206.443185px;}
.ya3_c00491{bottom:207.156030px;}
.ya2_c00491{bottom:208.201593px;}
.ya1_c00491{bottom:209.722428px;}
.ya0_c00491{bottom:210.295302px;}
.y9f_c00491{bottom:210.413742px;}
.y9e_c00491{bottom:211.139679px;}
.y9d_c00491{bottom:224.078034px;}
.y9c_c00491{bottom:224.595369px;}
.y9b_c00491{bottom:224.906310px;}
.y9a_c00491{bottom:225.712311px;}
.y99_c00491{bottom:226.051932px;}
.y98_c00491{bottom:227.393880px;}
.y97_c00491{bottom:227.617428px;}
.y96_c00491{bottom:227.972889px;}
.y95_c00491{bottom:228.693081px;}
.y94_c00491{bottom:240.351552px;}
.y93_c00491{bottom:240.741018px;}
.y92_c00491{bottom:241.144953px;}
.y91_c00491{bottom:241.984764px;}
.y90_c00491{bottom:242.910885px;}
.y8f_c00491{bottom:243.232374px;}
.y8e_c00491{bottom:244.083000px;}
.y8d_c00491{bottom:258.600090px;}
.y8c_c00491{bottom:260.507010px;}
.y8b_c00491{bottom:260.814030px;}
.y8a_c00491{bottom:261.117060px;}
.y89_c00491{bottom:261.850650px;}
.y88_c00491{bottom:274.573020px;}
.y87_c00491{bottom:275.243640px;}
.y86_c00491{bottom:275.922180px;}
.y85_c00491{bottom:276.625470px;}
.y84_c00491{bottom:277.023300px;}
.y83_c00491{bottom:277.874310px;}
.y82_c00491{bottom:278.217000px;}
.y81_c00491{bottom:278.863680px;}
.y80_c00491{bottom:291.207240px;}
.y7f_c00491{bottom:291.515250px;}
.y7e_c00491{bottom:292.157730px;}
.y7d_c00491{bottom:293.488650px;}
.y7c_c00491{bottom:293.816190px;}
.y7b_c00491{bottom:294.793980px;}
.y7a_c00491{bottom:295.340580px;}
.y79_c00491{bottom:308.817900px;}
.y78_c00491{bottom:309.988140px;}
.y77_c00491{bottom:310.551960px;}
.y76_c00491{bottom:311.182500px;}
.y75_c00491{bottom:311.531610px;}
.y74_c00491{bottom:312.624630px;}
.y73_c00491{bottom:325.336920px;}
.y72_c00491{bottom:326.286930px;}
.y71_c00491{bottom:327.626760px;}
.y70_c00491{bottom:328.632930px;}
.y6f_c00491{bottom:328.977870px;}
.y6e_c00491{bottom:329.637540px;}
.y6d_c00491{bottom:342.352500px;}
.y6c_c00491{bottom:342.688260px;}
.y6b_c00491{bottom:343.993950px;}
.y6a_c00491{bottom:344.896980px;}
.y69_c00491{bottom:345.678210px;}
.y68_c00491{bottom:345.986550px;}
.y67_c00491{bottom:346.650030px;}
.y66_c00491{bottom:359.059710px;}
.y65_c00491{bottom:360.089730px;}
.y64_c00491{bottom:360.279120px;}
.y63_c00491{bottom:360.425400px;}
.y62_c00491{bottom:361.719240px;}
.y61_c00491{bottom:362.469210px;}
.y60_c00491{bottom:362.752740px;}
.y5f_c00491{bottom:363.124890px;}
.y57_c00491{bottom:379.366320px;}
.y5c_c00491{bottom:379.366440px;}
.y58_c00491{bottom:379.366740px;}
.y5d_c00491{bottom:379.366770px;}
.y59_c00491{bottom:379.366830px;}
.y5b_c00491{bottom:379.366860px;}
.y5a_c00491{bottom:379.366890px;}
.y5e_c00491{bottom:379.367460px;}
.y56_c00491{bottom:393.373050px;}
.y55_c00491{bottom:393.706290px;}
.y54_c00491{bottom:394.455540px;}
.y53_c00491{bottom:394.622130px;}
.y52_c00491{bottom:395.440470px;}
.y51_c00491{bottom:395.931840px;}
.y50_c00491{bottom:396.240150px;}
.y4f_c00491{bottom:397.134270px;}
.y4e_c00491{bottom:397.692960px;}
.y4d_c00491{bottom:408.847380px;}
.y4c_c00491{bottom:409.504470px;}
.y4b_c00491{bottom:409.854960px;}
.y4a_c00491{bottom:410.904840px;}
.y49_c00491{bottom:411.687540px;}
.y48_c00491{bottom:412.140720px;}
.y47_c00491{bottom:412.528020px;}
.y46_c00491{bottom:413.353920px;}
.y45_c00491{bottom:427.147710px;}
.y44_c00491{bottom:427.641150px;}
.y43_c00491{bottom:428.125680px;}
.y42_c00491{bottom:428.726610px;}
.y41_c00491{bottom:430.075950px;}
.y40_c00491{bottom:430.408860px;}
.y3f_c00491{bottom:431.252580px;}
.y3e_c00491{bottom:432.528210px;}
.y3d_c00491{bottom:443.043150px;}
.y3c_c00491{bottom:444.058980px;}
.y3b_c00491{bottom:445.086540px;}
.y3a_c00491{bottom:445.476180px;}
.y39_c00491{bottom:446.602950px;}
.y38_c00491{bottom:447.013980px;}
.y37_c00491{bottom:447.558090px;}
.y36_c00491{bottom:448.188960px;}
.y35_c00491{bottom:460.889880px;}
.y34_c00491{bottom:461.243640px;}
.y33_c00491{bottom:461.829270px;}
.y32_c00491{bottom:462.381720px;}
.y31_c00491{bottom:462.998880px;}
.y30_c00491{bottom:464.206200px;}
.y2f_c00491{bottom:464.565810px;}
.y2e_c00491{bottom:465.474930px;}
.y2d_c00491{bottom:478.741710px;}
.y2c_c00491{bottom:479.025480px;}
.y2b_c00491{bottom:479.210970px;}
.y2a_c00491{bottom:480.475770px;}
.y29_c00491{bottom:480.661500px;}
.y28_c00491{bottom:481.140030px;}
.y27_c00491{bottom:482.221500px;}
.y26_c00491{bottom:494.129280px;}
.y25_c00491{bottom:494.573280px;}
.y24_c00491{bottom:495.702180px;}
.y23_c00491{bottom:496.235700px;}
.y22_c00491{bottom:497.873070px;}
.y21_c00491{bottom:499.169790px;}
.y20_c00491{bottom:499.503000px;}
.y1f_c00491{bottom:512.208960px;}
.y1e_c00491{bottom:513.279564px;}
.y1d_c00491{bottom:513.625236px;}
.y1c_c00491{bottom:514.791252px;}
.y1b_c00491{bottom:515.005212px;}
.y1a_c00491{bottom:516.117948px;}
.y19_c00491{bottom:517.046520px;}
.y11_c00491{bottom:529.929012px;}
.y13_c00491{bottom:529.929096px;}
.y17_c00491{bottom:529.929108px;}
.y18_c00491{bottom:529.929192px;}
.y14_c00491{bottom:529.929372px;}
.y12_c00491{bottom:529.929420px;}
.y16_c00491{bottom:529.929564px;}
.y15_c00491{bottom:529.929720px;}
.y10_c00491{bottom:546.919980px;}
.yf_c00491{bottom:547.153644px;}
.ye_c00491{bottom:547.684524px;}
.yd_c00491{bottom:548.093376px;}
.yc_c00491{bottom:548.955000px;}
.yb_c00491{bottom:549.226944px;}
.ya_c00491{bottom:549.422028px;}
.y9_c00491{bottom:549.989940px;}
.y8_c00491{bottom:562.412160px;}
.y7_c00491{bottom:562.714728px;}
.y6_c00491{bottom:563.669544px;}
.y5_c00491{bottom:564.006600px;}
.y4_c00491{bottom:564.320544px;}
.y3_c00491{bottom:565.742712px;}
.y2_c00491{bottom:566.733000px;}
.y1_c00491{bottom:577.801500px;}
.hb_c00491{height:38.857769px;}
.hc_c00491{height:57.761549px;}
.h16_c00491{height:58.805762px;}
.hd_c00491{height:59.861969px;}
.h11_c00491{height:61.956071px;}
.h10_c00491{height:61.962389px;}
.h15_c00491{height:64.056277px;}
.h5_c00491{height:64.058198px;}
.hf_c00491{height:64.062809px;}
.ha_c00491{height:65.113019px;}
.h8_c00491{height:66.163229px;}
.h13_c00491{height:67.206585px;}
.he_c00491{height:67.213439px;}
.h12_c00491{height:68.256688px;}
.h3_c00491{height:68.258735px;}
.h7_c00491{height:68.263649px;}
.h14_c00491{height:69.306791px;}
.h4_c00491{height:69.308870px;}
.h9_c00491{height:70.364069px;}
.h6_c00491{height:71.414279px;}
.h2_c00491{height:80.850000px;}
.h0_c00491{height:617.700000px;}
.h1_c00491{height:618.000000px;}
.w0_c00491{width:359.100000px;}
.w1_c00491{width:359.250000px;}
.x0_c00491{left:0.000000px;}
.x7b_c00491{left:36.717927px;}
.x6c_c00491{left:37.885149px;}
.x5b_c00491{left:39.029340px;}
.x4e_c00491{left:40.065450px;}
.x46_c00491{left:41.117850px;}
.x2_c00491{left:42.174000px;}
.x9_c00491{left:43.316472px;}
.x5d_c00491{left:48.148500px;}
.x1d_c00491{left:50.317500px;}
.x69_c00491{left:52.181883px;}
.x82_c00491{left:54.541074px;}
.x11_c00491{left:64.533516px;}
.x47_c00491{left:65.952840px;}
.x1e_c00491{left:66.978000px;}
.x3b_c00491{left:70.765620px;}
.x53_c00491{left:72.684900px;}
.x2d_c00491{left:75.159450px;}
.x4f_c00491{left:78.901290px;}
.x64_c00491{left:81.130686px;}
.xa_c00491{left:83.874768px;}
.x6d_c00491{left:86.748477px;}
.x65_c00491{left:88.090392px;}
.x40_c00491{left:91.265610px;}
.x29_c00491{left:92.645460px;}
.x19_c00491{left:94.287204px;}
.x6f_c00491{left:96.485970px;}
.xb_c00491{left:97.849224px;}
.x31_c00491{left:99.618750px;}
.x58_c00491{left:101.141520px;}
.x3_c00491{left:104.067000px;}
.x4b_c00491{left:105.378750px;}
.x12_c00491{left:106.658292px;}
.x41_c00491{left:108.819630px;}
.x61_c00491{left:110.507118px;}
.x2a_c00491{left:112.651770px;}
.x24_c00491{left:114.099390px;}
.xc_c00491{left:117.283848px;}
.x36_c00491{left:119.137470px;}
.x7c_c00491{left:120.774645px;}
.x66_c00491{left:121.829985px;}
.x5c_c00491{left:122.943030px;}
.x2e_c00491{left:125.392440px;}
.x6a_c00491{left:128.323812px;}
.x54_c00491{left:130.202850px;}
.x1f_c00491{left:131.814000px;}
.x3c_c00491{left:134.038380px;}
.x83_c00491{left:136.899702px;}
.x32_c00491{left:137.978220px;}
.x84_c00491{left:139.869996px;}
.x70_c00491{left:141.856470px;}
.x74_c00491{left:142.898676px;}
.x25_c00491{left:145.979070px;}
.x37_c00491{left:147.498750px;}
.x55_c00491{left:149.430990px;}
.x33_c00491{left:153.123120px;}
.x13_c00491{left:154.184460px;}
.x1a_c00491{left:156.143736px;}
.x26_c00491{left:158.341800px;}
.x3d_c00491{left:159.882390px;}
.x51_c00491{left:161.886600px;}
.x1b_c00491{left:168.015852px;}
.x7f_c00491{left:171.587646px;}
.x42_c00491{left:172.821720px;}
.x79_c00491{left:174.812127px;}
.x14_c00491{left:177.137340px;}
.xd_c00491{left:178.824816px;}
.x1_c00491{left:181.440000px;}
.x75_c00491{left:183.227676px;}
.x2f_c00491{left:184.732140px;}
.x43_c00491{left:190.105620px;}
.x4_c00491{left:192.952500px;}
.x52_c00491{left:195.029580px;}
.x38_c00491{left:196.387650px;}
.x5e_c00491{left:198.022500px;}
.x3e_c00491{left:202.975260px;}
.x30_c00491{left:205.264560px;}
.x80_c00491{left:206.436129px;}
.xe_c00491{left:208.035252px;}
.x76_c00491{left:209.107176px;}
.x67_c00491{left:211.278726px;}
.x5_c00491{left:212.574000px;}
.x20_c00491{left:213.682500px;}
.x44_c00491{left:218.460960px;}
.x48_c00491{left:221.035320px;}
.x59_c00491{left:223.132770px;}
.x56_c00491{left:227.756700px;}
.x71_c00491{left:229.624470px;}
.x49_c00491{left:230.750280px;}
.x7a_c00491{left:232.601127px;}
.x6_c00491{left:233.640000px;}
.x77_c00491{left:235.024176px;}
.x50_c00491{left:237.157770px;}
.x21_c00491{left:240.358500px;}
.x15_c00491{left:241.944924px;}
.x4a_c00491{left:243.371040px;}
.x2b_c00491{left:244.703550px;}
.xf_c00491{left:245.903952px;}
.x62_c00491{left:248.754390px;}
.x72_c00491{left:249.883470px;}
.x1c_c00491{left:251.993664px;}
.x27_c00491{left:255.015960px;}
.x5f_c00491{left:258.009000px;}
.x16_c00491{left:259.227840px;}
.x10_c00491{left:262.570980px;}
.x34_c00491{left:263.833710px;}
.x57_c00491{left:265.507950px;}
.x3f_c00491{left:268.730580px;}
.x81_c00491{left:270.151011px;}
.x68_c00491{left:272.780643px;}
.x28_c00491{left:273.931350px;}
.x2c_c00491{left:277.211340px;}
.x7d_c00491{left:279.350919px;}
.x39_c00491{left:283.963170px;}
.x35_c00491{left:286.254810px;}
.x6e_c00491{left:287.676642px;}
.x7_c00491{left:293.316000px;}
.x63_c00491{left:294.735807px;}
.x22_c00491{left:296.803500px;}
.x45_c00491{left:298.126320px;}
.x6b_c00491{left:301.980897px;}
.x4c_c00491{left:304.771200px;}
.x7e_c00491{left:305.996541px;}
.x5a_c00491{left:307.472520px;}
.x8_c00491{left:312.226500px;}
.x78_c00491{left:313.328676px;}
.x60_c00491{left:314.680500px;}
.x17_c00491{left:317.555268px;}
.x23_c00491{left:319.003500px;}
.x73_c00491{left:322.012470px;}
.x3a_c00491{left:324.995940px;}
.x4d_c00491{left:327.111420px;}
.x18_c00491{left:328.896672px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs9_c00491{font-size:34.540239pt;}
.fsa_c00491{font-size:51.343599pt;}
.fs14_c00491{font-size:52.271789pt;}
.fsb_c00491{font-size:53.210639pt;}
.fsf_c00491{font-size:55.072063pt;}
.fse_c00491{font-size:55.077679pt;}
.fs13_c00491{font-size:56.938913pt;}
.fs3_c00491{font-size:56.940620pt;}
.fsd_c00491{font-size:56.944719pt;}
.fs8_c00491{font-size:57.878239pt;}
.fs6_c00491{font-size:58.811759pt;}
.fs11_c00491{font-size:59.739187pt;}
.fsc_c00491{font-size:59.745279pt;}
.fs10_c00491{font-size:60.672612pt;}
.fs1_c00491{font-size:60.674432pt;}
.fs5_c00491{font-size:60.678799pt;}
.fs12_c00491{font-size:61.606037pt;}
.fs2_c00491{font-size:61.607884pt;}
.fs7_c00491{font-size:62.545839pt;}
.fs4_c00491{font-size:63.479359pt;}
.fs0_c00491{font-size:71.866667pt;}
.y0_c00491{bottom:0.000000pt;}
.yf4_c00491{bottom:34.419216pt;}
.yf3_c00491{bottom:34.419304pt;}
.yec_c00491{bottom:34.419805pt;}
.yf0_c00491{bottom:34.419904pt;}
.yf2_c00491{bottom:34.419925pt;}
.yef_c00491{bottom:34.419939pt;}
.yed_c00491{bottom:34.420272pt;}
.yf1_c00491{bottom:34.420296pt;}
.yee_c00491{bottom:34.420363pt;}
.ye9_c00491{bottom:49.107883pt;}
.ye8_c00491{bottom:49.107915pt;}
.ye7_c00491{bottom:49.108197pt;}
.yeb_c00491{bottom:49.108349pt;}
.yea_c00491{bottom:49.108381pt;}
.ye6_c00491{bottom:49.108392pt;}
.ye5_c00491{bottom:49.108904pt;}
.ye4_c00491{bottom:49.109312pt;}
.ye3_c00491{bottom:63.758488pt;}
.ye2_c00491{bottom:64.495373pt;}
.ye1_c00491{bottom:64.792187pt;}
.ye0_c00491{bottom:64.898371pt;}
.ydf_c00491{bottom:65.806797pt;}
.yde_c00491{bottom:66.465333pt;}
.ydd_c00491{bottom:76.555005pt;}
.ydc_c00491{bottom:76.910600pt;}
.ydb_c00491{bottom:77.169835pt;}
.yda_c00491{bottom:77.927035pt;}
.yd9_c00491{bottom:78.197776pt;}
.yd8_c00491{bottom:79.025355pt;}
.yd7_c00491{bottom:79.357216pt;}
.yd6_c00491{bottom:80.149861pt;}
.yd3_c00491{bottom:93.996744pt;}
.ycf_c00491{bottom:93.996789pt;}
.yd0_c00491{bottom:93.996915pt;}
.yd1_c00491{bottom:93.996952pt;}
.yd5_c00491{bottom:93.997211pt;}
.yd2_c00491{bottom:93.997221pt;}
.yd4_c00491{bottom:93.997227pt;}
.yce_c00491{bottom:108.500587pt;}
.ycd_c00491{bottom:108.715645pt;}
.ycc_c00491{bottom:109.162581pt;}
.ycb_c00491{bottom:109.881733pt;}
.yca_c00491{bottom:110.247283pt;}
.yc9_c00491{bottom:110.409347pt;}
.yc8_c00491{bottom:111.118512pt;}
.yc7_c00491{bottom:111.592272pt;}
.yc6_c00491{bottom:123.052891pt;}
.yc5_c00491{bottom:123.304872pt;}
.yc4_c00491{bottom:123.811392pt;}
.yc3_c00491{bottom:124.027347pt;}
.yc2_c00491{bottom:124.349869pt;}
.yc1_c00491{bottom:124.671925pt;}
.yc0_c00491{bottom:125.031277pt;}
.ybf_c00491{bottom:125.173797pt;}
.ybe_c00491{bottom:125.959776pt;}
.ybd_c00491{bottom:126.473800pt;}
.ybc_c00491{bottom:138.299835pt;}
.ybb_c00491{bottom:139.197440pt;}
.yba_c00491{bottom:139.449552pt;}
.yb9_c00491{bottom:140.315779pt;}
.yb8_c00491{bottom:140.541776pt;}
.yb7_c00491{bottom:141.106387pt;}
.yb6_c00491{bottom:141.835581pt;}
.yb5_c00491{bottom:153.599251pt;}
.yb4_c00491{bottom:154.106139pt;}
.yb3_c00491{bottom:154.398373pt;}
.yb2_c00491{bottom:154.895480pt;}
.yb1_c00491{bottom:155.227379pt;}
.yb0_c00491{bottom:156.542152pt;}
.yaf_c00491{bottom:156.786613pt;}
.yae_c00491{bottom:156.990440pt;}
.yad_c00491{bottom:157.437365pt;}
.yac_c00491{bottom:168.804379pt;}
.yab_c00491{bottom:169.042213pt;}
.yaa_c00491{bottom:169.628149pt;}
.ya9_c00491{bottom:169.916288pt;}
.ya8_c00491{bottom:171.118808pt;}
.ya7_c00491{bottom:171.356587pt;}
.ya6_c00491{bottom:172.134365pt;}
.ya5_c00491{bottom:172.317707pt;}
.ya4_c00491{bottom:183.505053pt;}
.ya3_c00491{bottom:184.138693pt;}
.ya2_c00491{bottom:185.068083pt;}
.ya1_c00491{bottom:186.419936pt;}
.ya0_c00491{bottom:186.929157pt;}
.y9f_c00491{bottom:187.034437pt;}
.y9e_c00491{bottom:187.679715pt;}
.y9d_c00491{bottom:199.180475pt;}
.y9c_c00491{bottom:199.640328pt;}
.y9b_c00491{bottom:199.916720pt;}
.y9a_c00491{bottom:200.633165pt;}
.y99_c00491{bottom:200.935051pt;}
.y98_c00491{bottom:202.127893pt;}
.y97_c00491{bottom:202.326603pt;}
.y96_c00491{bottom:202.642568pt;}
.y95_c00491{bottom:203.282739pt;}
.y94_c00491{bottom:213.645824pt;}
.y93_c00491{bottom:213.992016pt;}
.y92_c00491{bottom:214.351069pt;}
.y91_c00491{bottom:215.097568pt;}
.y90_c00491{bottom:215.920787pt;}
.y8f_c00491{bottom:216.206555pt;}
.y8e_c00491{bottom:216.962667pt;}
.y8d_c00491{bottom:229.866747pt;}
.y8c_c00491{bottom:231.561787pt;}
.y8b_c00491{bottom:231.834693pt;}
.y8a_c00491{bottom:232.104053pt;}
.y89_c00491{bottom:232.756133pt;}
.y88_c00491{bottom:244.064907pt;}
.y87_c00491{bottom:244.661013pt;}
.y86_c00491{bottom:245.264160pt;}
.y85_c00491{bottom:245.889307pt;}
.y84_c00491{bottom:246.242933pt;}
.y83_c00491{bottom:246.999387pt;}
.y82_c00491{bottom:247.304000pt;}
.y81_c00491{bottom:247.878827pt;}
.y80_c00491{bottom:258.850880pt;}
.y7f_c00491{bottom:259.124667pt;}
.y7e_c00491{bottom:259.695760pt;}
.y7d_c00491{bottom:260.878800pt;}
.y7c_c00491{bottom:261.169947pt;}
.y7b_c00491{bottom:262.039093pt;}
.y7a_c00491{bottom:262.524960pt;}
.y79_c00491{bottom:274.504800pt;}
.y78_c00491{bottom:275.545013pt;}
.y77_c00491{bottom:276.046187pt;}
.y76_c00491{bottom:276.606667pt;}
.y75_c00491{bottom:276.916987pt;}
.y74_c00491{bottom:277.888560pt;}
.y73_c00491{bottom:289.188373pt;}
.y72_c00491{bottom:290.032827pt;}
.y71_c00491{bottom:291.223787pt;}
.y70_c00491{bottom:292.118160pt;}
.y6f_c00491{bottom:292.424773pt;}
.y6e_c00491{bottom:293.011147pt;}
.y6d_c00491{bottom:304.313333pt;}
.y6c_c00491{bottom:304.611787pt;}
.y6b_c00491{bottom:305.772400pt;}
.y6a_c00491{bottom:306.575093pt;}
.y69_c00491{bottom:307.269520pt;}
.y68_c00491{bottom:307.543600pt;}
.y67_c00491{bottom:308.133360pt;}
.y66_c00491{bottom:319.164187pt;}
.y65_c00491{bottom:320.079760pt;}
.y64_c00491{bottom:320.248107pt;}
.y63_c00491{bottom:320.378133pt;}
.y62_c00491{bottom:321.528213pt;}
.y61_c00491{bottom:322.194853pt;}
.y60_c00491{bottom:322.446880pt;}
.y5f_c00491{bottom:322.777680pt;}
.y57_c00491{bottom:337.214507pt;}
.y5c_c00491{bottom:337.214613pt;}
.y58_c00491{bottom:337.214880pt;}
.y5d_c00491{bottom:337.214907pt;}
.y59_c00491{bottom:337.214960pt;}
.y5b_c00491{bottom:337.214987pt;}
.y5a_c00491{bottom:337.215013pt;}
.y5e_c00491{bottom:337.215520pt;}
.y56_c00491{bottom:349.664933pt;}
.y55_c00491{bottom:349.961147pt;}
.y54_c00491{bottom:350.627147pt;}
.y53_c00491{bottom:350.775227pt;}
.y52_c00491{bottom:351.502640pt;}
.y51_c00491{bottom:351.939413pt;}
.y50_c00491{bottom:352.213467pt;}
.y4f_c00491{bottom:353.008240pt;}
.y4e_c00491{bottom:353.504853pt;}
.y4d_c00491{bottom:363.419893pt;}
.y4c_c00491{bottom:364.003973pt;}
.y4b_c00491{bottom:364.315520pt;}
.y4a_c00491{bottom:365.248747pt;}
.y49_c00491{bottom:365.944480pt;}
.y48_c00491{bottom:366.347307pt;}
.y47_c00491{bottom:366.691573pt;}
.y46_c00491{bottom:367.425707pt;}
.y45_c00491{bottom:379.686853pt;}
.y44_c00491{bottom:380.125467pt;}
.y43_c00491{bottom:380.556160pt;}
.y42_c00491{bottom:381.090320pt;}
.y41_c00491{bottom:382.289733pt;}
.y40_c00491{bottom:382.585653pt;}
.y3f_c00491{bottom:383.335627pt;}
.y3e_c00491{bottom:384.469520pt;}
.y3d_c00491{bottom:393.816133pt;}
.y3c_c00491{bottom:394.719093pt;}
.y3b_c00491{bottom:395.632480pt;}
.y3a_c00491{bottom:395.978827pt;}
.y39_c00491{bottom:396.980400pt;}
.y38_c00491{bottom:397.345760pt;}
.y37_c00491{bottom:397.829413pt;}
.y36_c00491{bottom:398.390187pt;}
.y35_c00491{bottom:409.679893pt;}
.y34_c00491{bottom:409.994347pt;}
.y33_c00491{bottom:410.514907pt;}
.y32_c00491{bottom:411.005973pt;}
.y31_c00491{bottom:411.554560pt;}
.y30_c00491{bottom:412.627733pt;}
.y2f_c00491{bottom:412.947387pt;}
.y2e_c00491{bottom:413.755493pt;}
.y2d_c00491{bottom:425.548187pt;}
.y2c_c00491{bottom:425.800427pt;}
.y2b_c00491{bottom:425.965307pt;}
.y2a_c00491{bottom:427.089573pt;}
.y29_c00491{bottom:427.254667pt;}
.y28_c00491{bottom:427.680027pt;}
.y27_c00491{bottom:428.641333pt;}
.y26_c00491{bottom:439.226027pt;}
.y25_c00491{bottom:439.620693pt;}
.y24_c00491{bottom:440.624160pt;}
.y23_c00491{bottom:441.098400pt;}
.y22_c00491{bottom:442.553840pt;}
.y21_c00491{bottom:443.706480pt;}
.y20_c00491{bottom:444.002667pt;}
.y1f_c00491{bottom:455.296853pt;}
.y1e_c00491{bottom:456.248501pt;}
.y1d_c00491{bottom:456.555765pt;}
.y1c_c00491{bottom:457.592224pt;}
.y1b_c00491{bottom:457.782411pt;}
.y1a_c00491{bottom:458.771509pt;}
.y19_c00491{bottom:459.596907pt;}
.y11_c00491{bottom:471.048011pt;}
.y13_c00491{bottom:471.048085pt;}
.y17_c00491{bottom:471.048096pt;}
.y18_c00491{bottom:471.048171pt;}
.y14_c00491{bottom:471.048331pt;}
.y12_c00491{bottom:471.048373pt;}
.y16_c00491{bottom:471.048501pt;}
.y15_c00491{bottom:471.048640pt;}
.y10_c00491{bottom:486.151093pt;}
.yf_c00491{bottom:486.358795pt;}
.ye_c00491{bottom:486.830688pt;}
.yd_c00491{bottom:487.194112pt;}
.yc_c00491{bottom:487.960000pt;}
.yb_c00491{bottom:488.201728pt;}
.ya_c00491{bottom:488.375136pt;}
.y9_c00491{bottom:488.879947pt;}
.y8_c00491{bottom:499.921920pt;}
.y7_c00491{bottom:500.190869pt;}
.y6_c00491{bottom:501.039595pt;}
.y5_c00491{bottom:501.339200pt;}
.y4_c00491{bottom:501.618261pt;}
.y3_c00491{bottom:502.882411pt;}
.y2_c00491{bottom:503.762667pt;}
.y1_c00491{bottom:513.601333pt;}
.hb_c00491{height:34.540239pt;}
.hc_c00491{height:51.343599pt;}
.h16_c00491{height:52.271789pt;}
.hd_c00491{height:53.210639pt;}
.h11_c00491{height:55.072063pt;}
.h10_c00491{height:55.077679pt;}
.h15_c00491{height:56.938913pt;}
.h5_c00491{height:56.940620pt;}
.hf_c00491{height:56.944719pt;}
.ha_c00491{height:57.878239pt;}
.h8_c00491{height:58.811759pt;}
.h13_c00491{height:59.739187pt;}
.he_c00491{height:59.745279pt;}
.h12_c00491{height:60.672612pt;}
.h3_c00491{height:60.674432pt;}
.h7_c00491{height:60.678799pt;}
.h14_c00491{height:61.606037pt;}
.h4_c00491{height:61.607884pt;}
.h9_c00491{height:62.545839pt;}
.h6_c00491{height:63.479359pt;}
.h2_c00491{height:71.866667pt;}
.h0_c00491{height:549.066667pt;}
.h1_c00491{height:549.333333pt;}
.w0_c00491{width:319.200000pt;}
.w1_c00491{width:319.333333pt;}
.x0_c00491{left:0.000000pt;}
.x7b_c00491{left:32.638157pt;}
.x6c_c00491{left:33.675688pt;}
.x5b_c00491{left:34.692747pt;}
.x4e_c00491{left:35.613733pt;}
.x46_c00491{left:36.549200pt;}
.x2_c00491{left:37.488000pt;}
.x9_c00491{left:38.503531pt;}
.x5d_c00491{left:42.798667pt;}
.x1d_c00491{left:44.726667pt;}
.x69_c00491{left:46.383896pt;}
.x82_c00491{left:48.480955pt;}
.x11_c00491{left:57.363125pt;}
.x47_c00491{left:58.624747pt;}
.x1e_c00491{left:59.536000pt;}
.x3b_c00491{left:62.902773pt;}
.x53_c00491{left:64.608800pt;}
.x2d_c00491{left:66.808400pt;}
.x4f_c00491{left:70.134480pt;}
.x64_c00491{left:72.116165pt;}
.xa_c00491{left:74.555349pt;}
.x6d_c00491{left:77.109757pt;}
.x65_c00491{left:78.302571pt;}
.x40_c00491{left:81.124987pt;}
.x29_c00491{left:82.351520pt;}
.x19_c00491{left:83.810848pt;}
.x6f_c00491{left:85.765307pt;}
.xb_c00491{left:86.977088pt;}
.x31_c00491{left:88.550000pt;}
.x58_c00491{left:89.903573pt;}
.x3_c00491{left:92.504000pt;}
.x4b_c00491{left:93.670000pt;}
.x12_c00491{left:94.807371pt;}
.x41_c00491{left:96.728560pt;}
.x61_c00491{left:98.228549pt;}
.x2a_c00491{left:100.134907pt;}
.x24_c00491{left:101.421680pt;}
.xc_c00491{left:104.252309pt;}
.x36_c00491{left:105.899973pt;}
.x7c_c00491{left:107.355240pt;}
.x66_c00491{left:108.293320pt;}
.x5c_c00491{left:109.282693pt;}
.x2e_c00491{left:111.459947pt;}
.x6a_c00491{left:114.065611pt;}
.x54_c00491{left:115.735867pt;}
.x1f_c00491{left:117.168000pt;}
.x3c_c00491{left:119.145227pt;}
.x83_c00491{left:121.688624pt;}
.x32_c00491{left:122.647307pt;}
.x84_c00491{left:124.328885pt;}
.x70_c00491{left:126.094640pt;}
.x74_c00491{left:127.021045pt;}
.x25_c00491{left:129.759173pt;}
.x37_c00491{left:131.110000pt;}
.x55_c00491{left:132.827547pt;}
.x33_c00491{left:136.109440pt;}
.x13_c00491{left:137.052853pt;}
.x1a_c00491{left:138.794432pt;}
.x26_c00491{left:140.748267pt;}
.x3d_c00491{left:142.117680pt;}
.x51_c00491{left:143.899200pt;}
.x1b_c00491{left:149.347424pt;}
.x7f_c00491{left:152.522352pt;}
.x42_c00491{left:153.619307pt;}
.x79_c00491{left:155.388557pt;}
.x14_c00491{left:157.455413pt;}
.xd_c00491{left:158.955392pt;}
.x1_c00491{left:161.280000pt;}
.x75_c00491{left:162.869045pt;}
.x2f_c00491{left:164.206347pt;}
.x43_c00491{left:168.982773pt;}
.x4_c00491{left:171.513333pt;}
.x52_c00491{left:173.359627pt;}
.x38_c00491{left:174.566800pt;}
.x5e_c00491{left:176.020000pt;}
.x3e_c00491{left:180.422453pt;}
.x30_c00491{left:182.457387pt;}
.x80_c00491{left:183.498781pt;}
.xe_c00491{left:184.920224pt;}
.x76_c00491{left:185.873045pt;}
.x67_c00491{left:187.803312pt;}
.x5_c00491{left:188.954667pt;}
.x20_c00491{left:189.940000pt;}
.x44_c00491{left:194.187520pt;}
.x48_c00491{left:196.475840pt;}
.x59_c00491{left:198.340240pt;}
.x56_c00491{left:202.450400pt;}
.x71_c00491{left:204.110640pt;}
.x49_c00491{left:205.111360pt;}
.x7a_c00491{left:206.756557pt;}
.x6_c00491{left:207.680000pt;}
.x77_c00491{left:208.910379pt;}
.x50_c00491{left:210.806907pt;}
.x21_c00491{left:213.652000pt;}
.x15_c00491{left:215.062155pt;}
.x4a_c00491{left:216.329813pt;}
.x2b_c00491{left:217.514267pt;}
.xf_c00491{left:218.581291pt;}
.x62_c00491{left:221.115013pt;}
.x72_c00491{left:222.118640pt;}
.x1c_c00491{left:223.994368pt;}
.x27_c00491{left:226.680853pt;}
.x5f_c00491{left:229.341333pt;}
.x16_c00491{left:230.424747pt;}
.x10_c00491{left:233.396427pt;}
.x34_c00491{left:234.518853pt;}
.x57_c00491{left:236.007067pt;}
.x3f_c00491{left:238.871627pt;}
.x81_c00491{left:240.134232pt;}
.x68_c00491{left:242.471683pt;}
.x28_c00491{left:243.494533pt;}
.x2c_c00491{left:246.410080pt;}
.x7d_c00491{left:248.311928pt;}
.x39_c00491{left:252.411707pt;}
.x35_c00491{left:254.448720pt;}
.x6e_c00491{left:255.712571pt;}
.x7_c00491{left:260.725333pt;}
.x63_c00491{left:261.987384pt;}
.x22_c00491{left:263.825333pt;}
.x45_c00491{left:265.001173pt;}
.x6b_c00491{left:268.427464pt;}
.x4c_c00491{left:270.907733pt;}
.x7e_c00491{left:271.996925pt;}
.x5a_c00491{left:273.308907pt;}
.x8_c00491{left:277.534667pt;}
.x78_c00491{left:278.514379pt;}
.x60_c00491{left:279.716000pt;}
.x17_c00491{left:282.271349pt;}
.x23_c00491{left:283.558667pt;}
.x73_c00491{left:286.233307pt;}
.x3a_c00491{left:288.885280pt;}
.x4d_c00491{left:290.765707pt;}
.x18_c00491{left:292.352597pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00492 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00492 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00492 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00492 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00492{transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011455,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{transform:matrix(0.072435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072435,0.000000,0.000000,0.250000,0,0);}
.me2_c00492{transform:matrix(0.118108,-0.001299,0.002750,0.249985,0,0);-ms-transform:matrix(0.118108,-0.001299,0.002750,0.249985,0,0);-webkit-transform:matrix(0.118108,-0.001299,0.002750,0.249985,0,0);}
.m2e_c00492{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.mc8_c00492{transform:matrix(0.141871,-0.001561,0.002750,0.249985,0,0);-ms-transform:matrix(0.141871,-0.001561,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141871,-0.001561,0.002750,0.249985,0,0);}
.m81_c00492{transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147905,0.000000,0.000000,0.250000,0,0);}
.m7c_c00492{transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149010,0.000000,0.000000,0.250000,0,0);}
.m58_c00492{transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150855,0.000000,0.000000,0.250000,0,0);}
.m52_c00492{transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151665,0.000000,0.000000,0.250000,0,0);}
.mcf_c00492{transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);-ms-transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152376,-0.001676,0.002750,0.249985,0,0);}
.md2_c00492{transform:matrix(0.153676,-0.001690,0.002750,0.249985,0,0);-ms-transform:matrix(0.153676,-0.001690,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153676,-0.001690,0.002750,0.249985,0,0);}
.m65_c00492{transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156310,0.000000,0.000000,0.250000,0,0);}
.md7_c00492{transform:matrix(0.156441,-0.001721,0.002750,0.249985,0,0);-ms-transform:matrix(0.156441,-0.001721,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156441,-0.001721,0.002750,0.249985,0,0);}
.m77_c00492{transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157585,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160015,0.000000,0.000000,0.250000,0,0);}
.m64_c00492{transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160380,0.000000,0.000000,0.250000,0,0);}
.m99_c00492{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.md5_c00492{transform:matrix(0.161990,-0.001782,0.002750,0.249985,0,0);-ms-transform:matrix(0.161990,-0.001782,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161990,-0.001782,0.002750,0.249985,0,0);}
.m16_c00492{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162655,0.000000,0.000000,0.250000,0,0);}
.meb_c00492{transform:matrix(0.163605,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163605,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163605,-0.001800,0.002750,0.249985,0,0);}
.m42_c00492{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.me9_c00492{transform:matrix(0.164515,-0.001810,0.002750,0.249985,0,0);-ms-transform:matrix(0.164515,-0.001810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164515,-0.001810,0.002750,0.249985,0,0);}
.m84_c00492{transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164685,0.000000,0.000000,0.250000,0,0);}
.md6_c00492{transform:matrix(0.165045,-0.001815,0.002750,0.249985,0,0);-ms-transform:matrix(0.165045,-0.001815,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165045,-0.001815,0.002750,0.249985,0,0);}
.m4e_c00492{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.mc2_c00492{transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);-ms-transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166795,-0.001835,0.002750,0.249985,0,0);}
.m24_c00492{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168910,0.000000,0.000000,0.250000,0,0);}
.m63_c00492{transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m60_c00492{transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169960,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170905,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);}
.md8_c00492{transform:matrix(0.171305,-0.001884,0.002750,0.249985,0,0);-ms-transform:matrix(0.171305,-0.001884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171305,-0.001884,0.002750,0.249985,0,0);}
.med_c00492{transform:matrix(0.171475,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171475,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171475,-0.001886,0.002750,0.249985,0,0);}
.m21_c00492{transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171835,0.000000,0.000000,0.250000,0,0);}
.m88_c00492{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.m66_c00492{transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171990,0.000000,0.000000,0.250000,0,0);}
.mea_c00492{transform:matrix(0.172055,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172055,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172055,-0.001893,0.002750,0.249985,0,0);}
.mb_c00492{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.m6d_c00492{transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172280,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);}
.m62_c00492{transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172920,0.000000,0.000000,0.250000,0,0);}
.m79_c00492{transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172970,0.000000,0.000000,0.250000,0,0);}
.mcc_c00492{transform:matrix(0.172985,-0.001903,0.002750,0.249985,0,0);-ms-transform:matrix(0.172985,-0.001903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172985,-0.001903,0.002750,0.249985,0,0);}
.m12_c00492{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00492{transform:matrix(0.173170,-0.001905,0.002750,0.249985,0,0);-ms-transform:matrix(0.173170,-0.001905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173170,-0.001905,0.002750,0.249985,0,0);}
.m6e_c00492{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.md9_c00492{transform:matrix(0.175074,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175074,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175074,-0.001926,0.002750,0.249985,0,0);}
.mbc_c00492{transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175109,-0.001926,0.002750,0.249985,0,0);}
.m36_c00492{transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175445,0.000000,0.000000,0.250000,0,0);}
.m5c_c00492{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m61_c00492{transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177015,0.000000,0.000000,0.250000,0,0);}
.m9e_c00492{transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179040,0.000000,0.000000,0.250000,0,0);}
.m5f_c00492{transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179090,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m83_c00492{transform:matrix(0.179935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179935,0.000000,0.000000,0.250000,0,0);}
.md4_c00492{transform:matrix(0.180579,-0.001986,0.002750,0.249985,0,0);-ms-transform:matrix(0.180579,-0.001986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180579,-0.001986,0.002750,0.249985,0,0);}
.m22_c00492{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.md0_c00492{transform:matrix(0.181104,-0.001992,0.002750,0.249985,0,0);-ms-transform:matrix(0.181104,-0.001992,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181104,-0.001992,0.002750,0.249985,0,0);}
.m94_c00492{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.m73_c00492{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.md1_c00492{transform:matrix(0.183549,-0.002019,0.002750,0.249985,0,0);-ms-transform:matrix(0.183549,-0.002019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183549,-0.002019,0.002750,0.249985,0,0);}
.mc7_c00492{transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184074,-0.002025,0.002750,0.249985,0,0);}
.me0_c00492{transform:matrix(0.184094,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184094,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184094,-0.002025,0.002750,0.249985,0,0);}
.mb2_c00492{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00492{transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184710,0.000000,0.000000,0.250000,0,0);}
.mbf_c00492{transform:matrix(0.185059,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185059,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185059,-0.002036,0.002750,0.249985,0,0);}
.m80_c00492{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00492{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.mec_c00492{transform:matrix(0.186244,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186244,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186244,-0.002049,0.002750,0.249985,0,0);}
.m82_c00492{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.mb0_c00492{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m7f_c00492{transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);}
.mca_c00492{transform:matrix(0.187144,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187144,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187144,-0.002059,0.002750,0.249985,0,0);}
.m85_c00492{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.md3_c00492{transform:matrix(0.187499,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187499,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187499,-0.002062,0.002750,0.249985,0,0);}
.m6f_c00492{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00492{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188520,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m8c_c00492{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.mb3_c00492{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.mb5_c00492{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.mad_c00492{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m7e_c00492{transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);}
.m92_c00492{transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191710,0.000000,0.000000,0.250000,0,0);}
.mc1_c00492{transform:matrix(0.191978,-0.002112,0.002750,0.249985,0,0);-ms-transform:matrix(0.191978,-0.002112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191978,-0.002112,0.002750,0.249985,0,0);}
.m5d_c00492{transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192405,0.000000,0.000000,0.250000,0,0);}
.mdb_c00492{transform:matrix(0.192438,-0.002117,0.002750,0.249985,0,0);-ms-transform:matrix(0.192438,-0.002117,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192438,-0.002117,0.002750,0.249985,0,0);}
.m70_c00492{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m87_c00492{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.ma5_c00492{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);}
.mc9_c00492{transform:matrix(0.193158,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193158,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193158,-0.002125,0.002750,0.249985,0,0);}
.m23_c00492{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.m33_c00492{transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);}
.mce_c00492{transform:matrix(0.193483,-0.002128,0.002750,0.249985,0,0);-ms-transform:matrix(0.193483,-0.002128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193483,-0.002128,0.002750,0.249985,0,0);}
.m20_c00492{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m78_c00492{transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194085,0.000000,0.000000,0.250000,0,0);}
.m6b_c00492{transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00492{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.maa_c00492{transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194890,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);}
.ma6_c00492{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.mbb_c00492{transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);}
.m30_c00492{transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195930,0.000000,0.000000,0.250000,0,0);}
.m71_c00492{transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196035,0.000000,0.000000,0.250000,0,0);}
.m6a_c00492{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196430,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197035,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m4a_c00492{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00492{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.m76_c00492{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.mdd_c00492{transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198638,-0.002185,0.002750,0.249985,0,0);}
.m40_c00492{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.me8_c00492{transform:matrix(0.198808,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198808,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198808,-0.002187,0.002750,0.249985,0,0);}
.mb4_c00492{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);}
.m8e_c00492{transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199265,0.000000,0.000000,0.250000,0,0);}
.m68_c00492{transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00492{transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199685,0.000000,0.000000,0.250000,0,0);}
.m7a_c00492{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.mb9_c00492{transform:matrix(0.199833,-0.002198,0.002750,0.249985,0,0);-ms-transform:matrix(0.199833,-0.002198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199833,-0.002198,0.002750,0.249985,0,0);}
.mc3_c00492{transform:matrix(0.200138,-0.002202,0.002750,0.249985,0,0);-ms-transform:matrix(0.200138,-0.002202,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200138,-0.002202,0.002750,0.249985,0,0);}
.m13_c00492{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.mae_c00492{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.mcb_c00492{transform:matrix(0.201698,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201698,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201698,-0.002219,0.002750,0.249985,0,0);}
.m18_c00492{transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202410,0.000000,0.000000,0.250000,0,0);}
.me5_c00492{transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202518,-0.002228,0.002750,0.249985,0,0);}
.m50_c00492{transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202815,0.000000,0.000000,0.250000,0,0);}
.m9b_c00492{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00492{transform:matrix(0.203183,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203183,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203183,-0.002235,0.002750,0.249985,0,0);}
.m9f_c00492{transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203260,0.000000,0.000000,0.250000,0,0);}
.ma9_c00492{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m89_c00492{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m95_c00492{transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);}
.m59_c00492{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m53_c00492{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.205605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205605,0.000000,0.000000,0.250000,0,0);}
.m72_c00492{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.m9c_c00492{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00492{transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205880,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me1_c00492{transform:matrix(0.206183,-0.002268,0.002750,0.249985,0,0);-ms-transform:matrix(0.206183,-0.002268,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206183,-0.002268,0.002750,0.249985,0,0);}
.me4_c00492{transform:matrix(0.206363,-0.002270,0.002750,0.249985,0,0);-ms-transform:matrix(0.206363,-0.002270,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206363,-0.002270,0.002750,0.249985,0,0);}
.m9d_c00492{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m97_c00492{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m55_c00492{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.mb8_c00492{transform:matrix(0.207247,-0.002280,0.002750,0.249985,0,0);-ms-transform:matrix(0.207247,-0.002280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207247,-0.002280,0.002750,0.249985,0,0);}
.m3f_c00492{transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);}
.mc5_c00492{transform:matrix(0.207392,-0.002281,0.002750,0.249985,0,0);-ms-transform:matrix(0.207392,-0.002281,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207392,-0.002281,0.002750,0.249985,0,0);}
.m6c_c00492{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m51_c00492{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.m5a_c00492{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);}
.maf_c00492{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.ma0_c00492{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m8d_c00492{transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210570,0.000000,0.000000,0.250000,0,0);}
.me6_c00492{transform:matrix(0.210997,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.210997,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210997,-0.002321,0.002750,0.249985,0,0);}
.m3c_c00492{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.me7_c00492{transform:matrix(0.211727,-0.002329,0.002750,0.249985,0,0);-ms-transform:matrix(0.211727,-0.002329,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211727,-0.002329,0.002750,0.249985,0,0);}
.m69_c00492{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.mbe_c00492{transform:matrix(0.212397,-0.002336,0.002750,0.249985,0,0);-ms-transform:matrix(0.212397,-0.002336,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212397,-0.002336,0.002750,0.249985,0,0);}
.m74_c00492{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.mab_c00492{transform:matrix(0.212790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212790,0.000000,0.000000,0.250000,0,0);}
.ma2_c00492{transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);}
.mba_c00492{transform:matrix(0.214447,-0.002359,0.002750,0.249985,0,0);-ms-transform:matrix(0.214447,-0.002359,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214447,-0.002359,0.002750,0.249985,0,0);}
.m93_c00492{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.mb7_c00492{transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);-ms-transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);}
.m38_c00492{transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214740,0.000000,0.000000,0.250000,0,0);}
.m98_c00492{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.m4c_c00492{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.mda_c00492{transform:matrix(0.219022,-0.002409,0.002750,0.249985,0,0);-ms-transform:matrix(0.219022,-0.002409,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219022,-0.002409,0.002750,0.249985,0,0);}
.m8f_c00492{transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219615,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.m4f_c00492{transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220120,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.mdc_c00492{transform:matrix(0.220492,-0.002425,0.002750,0.249985,0,0);-ms-transform:matrix(0.220492,-0.002425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220492,-0.002425,0.002750,0.249985,0,0);}
.m91_c00492{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m90_c00492{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m5b_c00492{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.ma1_c00492{transform:matrix(0.223015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223015,0.000000,0.000000,0.250000,0,0);}
.m8b_c00492{transform:matrix(0.223070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223070,0.000000,0.000000,0.250000,0,0);}
.mb6_c00492{transform:matrix(0.223122,-0.002454,0.002750,0.249985,0,0);-ms-transform:matrix(0.223122,-0.002454,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223122,-0.002454,0.002750,0.249985,0,0);}
.m86_c00492{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m56_c00492{transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m67_c00492{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00492{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.m54_c00492{transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);}
.mac_c00492{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231010,0.000000,0.000000,0.250000,0,0);}
.mb1_c00492{transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);}
.mc0_c00492{transform:matrix(0.233266,-0.002566,0.002750,0.249985,0,0);-ms-transform:matrix(0.233266,-0.002566,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233266,-0.002566,0.002750,0.249985,0,0);}
.me3_c00492{transform:matrix(0.233416,-0.002568,0.002750,0.249985,0,0);-ms-transform:matrix(0.233416,-0.002568,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233416,-0.002568,0.002750,0.249985,0,0);}
.m7b_c00492{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m96_c00492{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.mbd_c00492{transform:matrix(0.239765,-0.002637,0.002750,0.249985,0,0);-ms-transform:matrix(0.239765,-0.002637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239765,-0.002637,0.002750,0.249985,0,0);}
.mc6_c00492{transform:matrix(0.241110,-0.002652,0.002750,0.249985,0,0);-ms-transform:matrix(0.241110,-0.002652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241110,-0.002652,0.002750,0.249985,0,0);}
.mdf_c00492{transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);-ms-transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242640,-0.002669,0.002750,0.249985,0,0);}
.m57_c00492{transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);}
.mde_c00492{transform:matrix(0.254760,-0.002802,0.002750,0.249985,0,0);-ms-transform:matrix(0.254760,-0.002802,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254760,-0.002802,0.002750,0.249985,0,0);}
.ma3_c00492{transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);}
.ma8_c00492{transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.266745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266745,0.000000,0.000000,0.250000,0,0);}
.mee_c00492{transform:matrix(0.305160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305160,0.000000,0.000000,0.250000,0,0);}
.ma7_c00492{transform:matrix(0.520785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520785,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:0.000000px;}
.fc0_c00492{color:transparent;}
.fs0_c00492{font-size:24.150000px;}
.fsb_c00492{font-size:55.650000px;}
.fsa_c00492{font-size:58.800000px;}
.fs3_c00492{font-size:59.850000px;}
.fs9_c00492{font-size:60.900000px;}
.fsd_c00492{font-size:60.903684px;}
.fs7_c00492{font-size:61.950000px;}
.fsc_c00492{font-size:61.953748px;}
.fs5_c00492{font-size:63.000000px;}
.fs10_c00492{font-size:63.003811px;}
.fs4_c00492{font-size:64.050000px;}
.fse_c00492{font-size:65.103938px;}
.fs2_c00492{font-size:66.150000px;}
.fs6_c00492{font-size:67.200000px;}
.fs8_c00492{font-size:68.250000px;}
.fsf_c00492{font-size:69.304193px;}
.fs11_c00492{font-size:72.454383px;}
.fs1_c00492{font-size:74.550000px;}
.y0_c00492{bottom:0.000000px;}
.y68_c00492{bottom:36.263397px;}
.y64_c00492{bottom:36.263535px;}
.y65_c00492{bottom:36.263906px;}
.y67_c00492{bottom:36.263930px;}
.y66_c00492{bottom:36.264156px;}
.y69_c00492{bottom:45.360000px;}
.y63_c00492{bottom:52.203848px;}
.y5d_c00492{bottom:52.204046px;}
.y60_c00492{bottom:52.204320px;}
.y5f_c00492{bottom:52.204533px;}
.y62_c00492{bottom:52.204541px;}
.y61_c00492{bottom:52.204587px;}
.y5e_c00492{bottom:52.204749px;}
.y5c_c00492{bottom:69.417492px;}
.y5b_c00492{bottom:69.417959px;}
.y59_c00492{bottom:69.418475px;}
.y5a_c00492{bottom:69.418545px;}
.y51_c00492{bottom:84.507840px;}
.y52_c00492{bottom:84.799256px;}
.y53_c00492{bottom:85.238681px;}
.y54_c00492{bottom:85.670169px;}
.y55_c00492{bottom:86.372367px;}
.y56_c00492{bottom:86.521020px;}
.y57_c00492{bottom:86.859308px;}
.y58_c00492{bottom:87.899678px;}
.y47_c00492{bottom:101.788650px;}
.y48_c00492{bottom:102.513000px;}
.y49_c00492{bottom:102.667556px;}
.y4a_c00492{bottom:103.018032px;}
.y4b_c00492{bottom:103.261556px;}
.y4c_c00492{bottom:103.603601px;}
.y4d_c00492{bottom:104.030835px;}
.y4e_c00492{bottom:104.265482px;}
.y4f_c00492{bottom:104.601174px;}
.y50_c00492{bottom:104.851265px;}
.y40_c00492{bottom:118.260930px;}
.y41_c00492{bottom:118.878063px;}
.y42_c00492{bottom:119.326533px;}
.y43_c00492{bottom:119.884398px;}
.y44_c00492{bottom:120.083306px;}
.y45_c00492{bottom:120.392813px;}
.y46_c00492{bottom:120.981038px;}
.y38_c00492{bottom:134.731331px;}
.y39_c00492{bottom:135.258770px;}
.y3a_c00492{bottom:135.868221px;}
.y3b_c00492{bottom:136.313681px;}
.y3c_c00492{bottom:137.634786px;}
.y3d_c00492{bottom:138.052485px;}
.y3e_c00492{bottom:138.369021px;}
.y3f_c00492{bottom:139.241549px;}
.y31_c00492{bottom:153.361500px;}
.y32_c00492{bottom:154.403805px;}
.y33_c00492{bottom:154.567304px;}
.y34_c00492{bottom:155.344784px;}
.y35_c00492{bottom:155.755370px;}
.y36_c00492{bottom:155.986881px;}
.y37_c00492{bottom:156.287066px;}
.y30_c00492{bottom:173.242500px;}
.y2f_c00492{bottom:189.130500px;}
.y2e_c00492{bottom:205.575000px;}
.y2d_c00492{bottom:222.166500px;}
.y2c_c00492{bottom:239.445000px;}
.y2b_c00492{bottom:256.332000px;}
.y2a_c00492{bottom:273.474000px;}
.y29_c00492{bottom:290.482500px;}
.y28_c00492{bottom:307.978500px;}
.y27_c00492{bottom:324.792000px;}
.y26_c00492{bottom:341.388000px;}
.y1d_c00492{bottom:356.131500px;}
.y1e_c00492{bottom:356.623500px;}
.y1f_c00492{bottom:356.863500px;}
.y20_c00492{bottom:357.411000px;}
.y21_c00492{bottom:357.627000px;}
.y22_c00492{bottom:357.975000px;}
.y23_c00492{bottom:358.656000px;}
.y24_c00492{bottom:359.340000px;}
.y25_c00492{bottom:359.563500px;}
.y15_c00492{bottom:374.221500px;}
.y16_c00492{bottom:374.434500px;}
.y17_c00492{bottom:375.079500px;}
.y18_c00492{bottom:375.364500px;}
.y19_c00492{bottom:375.558000px;}
.y1a_c00492{bottom:376.015500px;}
.y1b_c00492{bottom:376.491000px;}
.y1c_c00492{bottom:377.367000px;}
.y14_c00492{bottom:392.712000px;}
.y13_c00492{bottom:409.153500px;}
.y12_c00492{bottom:425.746500px;}
.y11_c00492{bottom:443.175000px;}
.y10_c00492{bottom:459.646500px;}
.yf_c00492{bottom:477.073500px;}
.ye_c00492{bottom:494.352000px;}
.y6_c00492{bottom:509.761500px;}
.y7_c00492{bottom:510.355500px;}
.y8_c00492{bottom:510.544500px;}
.y9_c00492{bottom:510.738000px;}
.ya_c00492{bottom:511.386000px;}
.yb_c00492{bottom:512.301000px;}
.yc_c00492{bottom:512.404500px;}
.yd_c00492{bottom:512.913000px;}
.y5_c00492{bottom:528.081000px;}
.y4_c00492{bottom:545.383500px;}
.y3_c00492{bottom:561.858000px;}
.y2_c00492{bottom:574.956000px;}
.y1_c00492{bottom:590.220000px;}
.h2_c00492{height:24.150000px;}
.hd_c00492{height:55.650000px;}
.hc_c00492{height:58.800000px;}
.h5_c00492{height:59.850000px;}
.hb_c00492{height:60.900000px;}
.hf_c00492{height:60.903684px;}
.h9_c00492{height:61.950000px;}
.he_c00492{height:61.953748px;}
.h7_c00492{height:63.000000px;}
.h12_c00492{height:63.003811px;}
.h6_c00492{height:64.050000px;}
.h10_c00492{height:65.103938px;}
.h4_c00492{height:66.150000px;}
.h8_c00492{height:67.200000px;}
.ha_c00492{height:68.250000px;}
.h11_c00492{height:69.304193px;}
.h13_c00492{height:72.454383px;}
.h3_c00492{height:74.550000px;}
.h0_c00492{height:617.700000px;}
.h1_c00492{height:618.000000px;}
.w0_c00492{width:359.100000px;}
.w1_c00492{width:359.250000px;}
.x0_c00492{left:0.000000px;}
.x4_c00492{left:17.010000px;}
.x1e_c00492{left:18.088500px;}
.x5d_c00492{left:19.708500px;}
.x7e_c00492{left:21.062810px;}
.x7c_c00492{left:22.412637px;}
.x74_c00492{left:26.027546px;}
.x2a_c00492{left:30.238500px;}
.xa_c00492{left:33.750000px;}
.x43_c00492{left:37.383000px;}
.x11_c00492{left:41.580000px;}
.x32_c00492{left:42.928500px;}
.x49_c00492{left:44.008500px;}
.x2e_c00492{left:45.358500px;}
.x3e_c00492{left:46.438500px;}
.x6c_c00492{left:52.037066px;}
.x55_c00492{left:53.188500px;}
.x4f_c00492{left:56.968500px;}
.xb_c00492{left:59.130000px;}
.x1f_c00492{left:61.558500px;}
.x63_c00492{left:63.178500px;}
.x1_c00492{left:64.800000px;}
.x5e_c00492{left:67.228500px;}
.x18_c00492{left:70.867500px;}
.x61_c00492{left:73.708500px;}
.x3f_c00492{left:75.328500px;}
.x50_c00492{left:76.948500px;}
.x20_c00492{left:80.188500px;}
.x2_c00492{left:82.080000px;}
.x5a_c00492{left:83.698500px;}
.x39_c00492{left:84.778500px;}
.x19_c00492{left:88.092000px;}
.x5f_c00492{left:89.908500px;}
.x75_c00492{left:91.877546px;}
.x5_c00492{left:93.690000px;}
.x12_c00492{left:96.120000px;}
.x3a_c00492{left:97.198500px;}
.x5b_c00492{left:98.818500px;}
.x21_c00492{left:101.788500px;}
.x33_c00492{left:103.678500px;}
.x1a_c00492{left:105.705000px;}
.x62_c00492{left:107.458500px;}
.x2b_c00492{left:108.808500px;}
.x4a_c00492{left:110.428500px;}
.xc_c00492{left:113.940000px;}
.x34_c00492{left:115.828500px;}
.x6d_c00492{left:117.934436px;}
.x44_c00492{left:121.834500px;}
.x13_c00492{left:123.930000px;}
.x6a_c00492{left:128.928000px;}
.x58_c00492{left:130.138500px;}
.x6_c00492{left:133.110000px;}
.x64_c00492{left:134.188500px;}
.x35_c00492{left:135.808500px;}
.x2f_c00492{left:137.428500px;}
.x7d_c00492{left:138.519195px;}
.x14_c00492{left:139.860000px;}
.xd_c00492{left:140.940000px;}
.x45_c00492{left:142.906500px;}
.x22_c00492{left:144.718500px;}
.x60_c00492{left:146.608500px;}
.x3_c00492{left:148.770000px;}
.x68_c00492{left:151.470000px;}
.x36_c00492{left:153.628500px;}
.x15_c00492{left:159.570000px;}
.x3b_c00492{left:161.458500px;}
.x40_c00492{left:163.078500px;}
.xe_c00492{left:164.160000px;}
.x71_c00492{left:166.413501px;}
.x23_c00492{left:169.828500px;}
.x46_c00492{left:171.856500px;}
.x7a_c00492{left:173.962002px;}
.x69_c00492{left:175.230000px;}
.x51_c00492{left:176.308500px;}
.x7f_c00492{left:179.561483px;}
.x41_c00492{left:181.438500px;}
.x72_c00492{left:184.496001px;}
.x7b_c00492{left:186.384870px;}
.x24_c00492{left:187.918500px;}
.x27_c00492{left:189.808500px;}
.x76_c00492{left:191.023046px;}
.x56_c00492{left:193.588500px;}
.x7_c00492{left:198.990000px;}
.x6e_c00492{left:200.530398px;}
.x5c_c00492{left:201.688500px;}
.x52_c00492{left:203.038500px;}
.x37_c00492{left:204.388500px;}
.x3c_c00492{left:206.818500px;}
.x16_c00492{left:207.900000px;}
.x4b_c00492{left:210.598500px;}
.x73_c00492{left:212.633001px;}
.x57_c00492{left:214.108500px;}
.x25_c00492{left:215.998500px;}
.x65_c00492{left:217.888500px;}
.x42_c00492{left:218.968500px;}
.xf_c00492{left:225.180000px;}
.x6f_c00492{left:226.637963px;}
.x47_c00492{left:228.549000px;}
.x4c_c00492{left:229.768500px;}
.x66_c00492{left:231.388500px;}
.x53_c00492{left:233.548500px;}
.x6b_c00492{left:236.934000px;}
.x30_c00492{left:240.028500px;}
.x28_c00492{left:242.458500px;}
.x70_c00492{left:246.412874px;}
.x1b_c00492{left:247.704000px;}
.x67_c00492{left:249.208500px;}
.x77_c00492{left:251.194046px;}
.x1c_c00492{left:257.134500px;}
.x3d_c00492{left:258.658500px;}
.x17_c00492{left:264.330000px;}
.x29_c00492{left:265.408500px;}
.x26_c00492{left:266.758500px;}
.x10_c00492{left:268.920000px;}
.x8_c00492{left:270.000000px;}
.x4d_c00492{left:273.508500px;}
.x2c_c00492{left:278.908500px;}
.x78_c00492{left:281.711546px;}
.x48_c00492{left:285.537000px;}
.x80_c00492{left:286.756781px;}
.x2d_c00492{left:287.818500px;}
.x54_c00492{left:290.248500px;}
.x59_c00492{left:294.298500px;}
.x9_c00492{left:295.380000px;}
.x4e_c00492{left:297.268500px;}
.x31_c00492{left:300.508500px;}
.x1d_c00492{left:303.337500px;}
.x79_c00492{left:304.447046px;}
.x38_c00492{left:307.258500px;}
.x81_c00492{left:325.890000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs0_c00492{font-size:21.466667pt;}
.fsb_c00492{font-size:49.466667pt;}
.fsa_c00492{font-size:52.266667pt;}
.fs3_c00492{font-size:53.200000pt;}
.fs9_c00492{font-size:54.133333pt;}
.fsd_c00492{font-size:54.136608pt;}
.fs7_c00492{font-size:55.066667pt;}
.fsc_c00492{font-size:55.069998pt;}
.fs5_c00492{font-size:56.000000pt;}
.fs10_c00492{font-size:56.003388pt;}
.fs4_c00492{font-size:56.933333pt;}
.fse_c00492{font-size:57.870167pt;}
.fs2_c00492{font-size:58.800000pt;}
.fs6_c00492{font-size:59.733333pt;}
.fs8_c00492{font-size:60.666667pt;}
.fsf_c00492{font-size:61.603727pt;}
.fs11_c00492{font-size:64.403896pt;}
.fs1_c00492{font-size:66.266667pt;}
.y0_c00492{bottom:0.000000pt;}
.y68_c00492{bottom:32.234131pt;}
.y64_c00492{bottom:32.234253pt;}
.y65_c00492{bottom:32.234583pt;}
.y67_c00492{bottom:32.234604pt;}
.y66_c00492{bottom:32.234805pt;}
.y69_c00492{bottom:40.320000pt;}
.y63_c00492{bottom:46.403420pt;}
.y5d_c00492{bottom:46.403596pt;}
.y60_c00492{bottom:46.403840pt;}
.y5f_c00492{bottom:46.404029pt;}
.y62_c00492{bottom:46.404036pt;}
.y61_c00492{bottom:46.404077pt;}
.y5e_c00492{bottom:46.404221pt;}
.y5c_c00492{bottom:61.704437pt;}
.y5b_c00492{bottom:61.704852pt;}
.y59_c00492{bottom:61.705311pt;}
.y5a_c00492{bottom:61.705373pt;}
.y51_c00492{bottom:75.118080pt;}
.y52_c00492{bottom:75.377116pt;}
.y53_c00492{bottom:75.767716pt;}
.y54_c00492{bottom:76.151261pt;}
.y55_c00492{bottom:76.775437pt;}
.y56_c00492{bottom:76.907573pt;}
.y57_c00492{bottom:77.208273pt;}
.y58_c00492{bottom:78.133047pt;}
.y47_c00492{bottom:90.478800pt;}
.y48_c00492{bottom:91.122667pt;}
.y49_c00492{bottom:91.260049pt;}
.y4a_c00492{bottom:91.571584pt;}
.y4b_c00492{bottom:91.788049pt;}
.y4c_c00492{bottom:92.092089pt;}
.y4d_c00492{bottom:92.471853pt;}
.y4e_c00492{bottom:92.680428pt;}
.y4f_c00492{bottom:92.978821pt;}
.y50_c00492{bottom:93.201124pt;}
.y40_c00492{bottom:105.120827pt;}
.y41_c00492{bottom:105.669389pt;}
.y42_c00492{bottom:106.068029pt;}
.y43_c00492{bottom:106.563909pt;}
.y44_c00492{bottom:106.740716pt;}
.y45_c00492{bottom:107.015833pt;}
.y46_c00492{bottom:107.538700pt;}
.y38_c00492{bottom:119.761183pt;}
.y39_c00492{bottom:120.230017pt;}
.y3a_c00492{bottom:120.771752pt;}
.y3b_c00492{bottom:121.167716pt;}
.y3c_c00492{bottom:122.342032pt;}
.y3d_c00492{bottom:122.713320pt;}
.y3e_c00492{bottom:122.994685pt;}
.y3f_c00492{bottom:123.770265pt;}
.y31_c00492{bottom:136.321333pt;}
.y32_c00492{bottom:137.247827pt;}
.y33_c00492{bottom:137.393159pt;}
.y34_c00492{bottom:138.084252pt;}
.y35_c00492{bottom:138.449217pt;}
.y36_c00492{bottom:138.655005pt;}
.y37_c00492{bottom:138.921836pt;}
.y30_c00492{bottom:153.993333pt;}
.y2f_c00492{bottom:168.116000pt;}
.y2e_c00492{bottom:182.733333pt;}
.y2d_c00492{bottom:197.481333pt;}
.y2c_c00492{bottom:212.840000pt;}
.y2b_c00492{bottom:227.850667pt;}
.y2a_c00492{bottom:243.088000pt;}
.y29_c00492{bottom:258.206667pt;}
.y28_c00492{bottom:273.758667pt;}
.y27_c00492{bottom:288.704000pt;}
.y26_c00492{bottom:303.456000pt;}
.y1d_c00492{bottom:316.561333pt;}
.y1e_c00492{bottom:316.998667pt;}
.y1f_c00492{bottom:317.212000pt;}
.y20_c00492{bottom:317.698667pt;}
.y21_c00492{bottom:317.890667pt;}
.y22_c00492{bottom:318.200000pt;}
.y23_c00492{bottom:318.805333pt;}
.y24_c00492{bottom:319.413333pt;}
.y25_c00492{bottom:319.612000pt;}
.y15_c00492{bottom:332.641333pt;}
.y16_c00492{bottom:332.830667pt;}
.y17_c00492{bottom:333.404000pt;}
.y18_c00492{bottom:333.657333pt;}
.y19_c00492{bottom:333.829333pt;}
.y1a_c00492{bottom:334.236000pt;}
.y1b_c00492{bottom:334.658667pt;}
.y1c_c00492{bottom:335.437333pt;}
.y14_c00492{bottom:349.077333pt;}
.y13_c00492{bottom:363.692000pt;}
.y12_c00492{bottom:378.441333pt;}
.y11_c00492{bottom:393.933333pt;}
.y10_c00492{bottom:408.574667pt;}
.yf_c00492{bottom:424.065333pt;}
.ye_c00492{bottom:439.424000pt;}
.y6_c00492{bottom:453.121333pt;}
.y7_c00492{bottom:453.649333pt;}
.y8_c00492{bottom:453.817333pt;}
.y9_c00492{bottom:453.989333pt;}
.ya_c00492{bottom:454.565333pt;}
.yb_c00492{bottom:455.378667pt;}
.yc_c00492{bottom:455.470667pt;}
.yd_c00492{bottom:455.922667pt;}
.y5_c00492{bottom:469.405333pt;}
.y4_c00492{bottom:484.785333pt;}
.y3_c00492{bottom:499.429333pt;}
.y2_c00492{bottom:511.072000pt;}
.y1_c00492{bottom:524.640000pt;}
.h2_c00492{height:21.466667pt;}
.hd_c00492{height:49.466667pt;}
.hc_c00492{height:52.266667pt;}
.h5_c00492{height:53.200000pt;}
.hb_c00492{height:54.133333pt;}
.hf_c00492{height:54.136608pt;}
.h9_c00492{height:55.066667pt;}
.he_c00492{height:55.069998pt;}
.h7_c00492{height:56.000000pt;}
.h12_c00492{height:56.003388pt;}
.h6_c00492{height:56.933333pt;}
.h10_c00492{height:57.870167pt;}
.h4_c00492{height:58.800000pt;}
.h8_c00492{height:59.733333pt;}
.ha_c00492{height:60.666667pt;}
.h11_c00492{height:61.603727pt;}
.h13_c00492{height:64.403896pt;}
.h3_c00492{height:66.266667pt;}
.h0_c00492{height:549.066667pt;}
.h1_c00492{height:549.333333pt;}
.w0_c00492{width:319.200000pt;}
.w1_c00492{width:319.333333pt;}
.x0_c00492{left:0.000000pt;}
.x4_c00492{left:15.120000pt;}
.x1e_c00492{left:16.078667pt;}
.x5d_c00492{left:17.518667pt;}
.x7e_c00492{left:18.722497pt;}
.x7c_c00492{left:19.922344pt;}
.x74_c00492{left:23.135596pt;}
.x2a_c00492{left:26.878667pt;}
.xa_c00492{left:30.000000pt;}
.x43_c00492{left:33.229333pt;}
.x11_c00492{left:36.960000pt;}
.x32_c00492{left:38.158667pt;}
.x49_c00492{left:39.118667pt;}
.x2e_c00492{left:40.318667pt;}
.x3e_c00492{left:41.278667pt;}
.x6c_c00492{left:46.255169pt;}
.x55_c00492{left:47.278667pt;}
.x4f_c00492{left:50.638667pt;}
.xb_c00492{left:52.560000pt;}
.x1f_c00492{left:54.718667pt;}
.x63_c00492{left:56.158667pt;}
.x1_c00492{left:57.600000pt;}
.x5e_c00492{left:59.758667pt;}
.x18_c00492{left:62.993333pt;}
.x61_c00492{left:65.518667pt;}
.x3f_c00492{left:66.958667pt;}
.x50_c00492{left:68.398667pt;}
.x20_c00492{left:71.278667pt;}
.x2_c00492{left:72.960000pt;}
.x5a_c00492{left:74.398667pt;}
.x39_c00492{left:75.358667pt;}
.x19_c00492{left:78.304000pt;}
.x5f_c00492{left:79.918667pt;}
.x75_c00492{left:81.668929pt;}
.x5_c00492{left:83.280000pt;}
.x12_c00492{left:85.440000pt;}
.x3a_c00492{left:86.398667pt;}
.x5b_c00492{left:87.838667pt;}
.x21_c00492{left:90.478667pt;}
.x33_c00492{left:92.158667pt;}
.x1a_c00492{left:93.960000pt;}
.x62_c00492{left:95.518667pt;}
.x2b_c00492{left:96.718667pt;}
.x4a_c00492{left:98.158667pt;}
.xc_c00492{left:101.280000pt;}
.x34_c00492{left:102.958667pt;}
.x6d_c00492{left:104.830609pt;}
.x44_c00492{left:108.297333pt;}
.x13_c00492{left:110.160000pt;}
.x6a_c00492{left:114.602667pt;}
.x58_c00492{left:115.678667pt;}
.x6_c00492{left:118.320000pt;}
.x64_c00492{left:119.278667pt;}
.x35_c00492{left:120.718667pt;}
.x2f_c00492{left:122.158667pt;}
.x7d_c00492{left:123.128173pt;}
.x14_c00492{left:124.320000pt;}
.xd_c00492{left:125.280000pt;}
.x45_c00492{left:127.028000pt;}
.x22_c00492{left:128.638667pt;}
.x60_c00492{left:130.318667pt;}
.x3_c00492{left:132.240000pt;}
.x68_c00492{left:134.640000pt;}
.x36_c00492{left:136.558667pt;}
.x15_c00492{left:141.840000pt;}
.x3b_c00492{left:143.518667pt;}
.x40_c00492{left:144.958667pt;}
.xe_c00492{left:145.920000pt;}
.x71_c00492{left:147.923112pt;}
.x23_c00492{left:150.958667pt;}
.x46_c00492{left:152.761333pt;}
.x7a_c00492{left:154.632891pt;}
.x69_c00492{left:155.760000pt;}
.x51_c00492{left:156.718667pt;}
.x7f_c00492{left:159.610207pt;}
.x41_c00492{left:161.278667pt;}
.x72_c00492{left:163.996445pt;}
.x7b_c00492{left:165.675440pt;}
.x24_c00492{left:167.038667pt;}
.x27_c00492{left:168.718667pt;}
.x76_c00492{left:169.798263pt;}
.x56_c00492{left:172.078667pt;}
.x7_c00492{left:176.880000pt;}
.x6e_c00492{left:178.249243pt;}
.x5c_c00492{left:179.278667pt;}
.x52_c00492{left:180.478667pt;}
.x37_c00492{left:181.678667pt;}
.x3c_c00492{left:183.838667pt;}
.x16_c00492{left:184.800000pt;}
.x4b_c00492{left:187.198667pt;}
.x73_c00492{left:189.007112pt;}
.x57_c00492{left:190.318667pt;}
.x25_c00492{left:191.998667pt;}
.x65_c00492{left:193.678667pt;}
.x42_c00492{left:194.638667pt;}
.xf_c00492{left:200.160000pt;}
.x6f_c00492{left:201.455967pt;}
.x47_c00492{left:203.154667pt;}
.x4c_c00492{left:204.238667pt;}
.x66_c00492{left:205.678667pt;}
.x53_c00492{left:207.598667pt;}
.x6b_c00492{left:210.608000pt;}
.x30_c00492{left:213.358667pt;}
.x28_c00492{left:215.518667pt;}
.x70_c00492{left:219.033665pt;}
.x1b_c00492{left:220.181333pt;}
.x67_c00492{left:221.518667pt;}
.x77_c00492{left:223.283596pt;}
.x1c_c00492{left:228.564000pt;}
.x3d_c00492{left:229.918667pt;}
.x17_c00492{left:234.960000pt;}
.x29_c00492{left:235.918667pt;}
.x26_c00492{left:237.118667pt;}
.x10_c00492{left:239.040000pt;}
.x8_c00492{left:240.000000pt;}
.x4d_c00492{left:243.118667pt;}
.x2c_c00492{left:247.918667pt;}
.x78_c00492{left:250.410263pt;}
.x48_c00492{left:253.810667pt;}
.x80_c00492{left:254.894916pt;}
.x2d_c00492{left:255.838667pt;}
.x54_c00492{left:257.998667pt;}
.x59_c00492{left:261.598667pt;}
.x9_c00492{left:262.560000pt;}
.x4e_c00492{left:264.238667pt;}
.x31_c00492{left:267.118667pt;}
.x1d_c00492{left:269.633333pt;}
.x79_c00492{left:270.619596pt;}
.x38_c00492{left:273.118667pt;}
.x81_c00492{left:289.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00493 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00493 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00493 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00493 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c00493{transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014715,0.000000,0.000000,0.250000,0,0);}
.m68_c00493{transform:matrix(0.023090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023090,0.000000,0.000000,0.250000,0,0);}
.m6a_c00493{transform:matrix(0.075040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075040,0.000000,0.000000,0.250000,0,0);}
.mf8_c00493{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00493{transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129265,0.000000,0.000000,0.250000,0,0);}
.m67_c00493{transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);}
.mef_c00493{transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);}
.m6e_c00493{transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);}
.m84_c00493{transform:matrix(0.140505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140505,0.000000,0.000000,0.250000,0,0);}
.me9_c00493{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.mf3_c00493{transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141990,0.000000,0.000000,0.250000,0,0);}
.mf6_c00493{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.mad_c00493{transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150390,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.153990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153990,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.157215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157215,0.000000,0.000000,0.250000,0,0);}
.m3e_c00493{transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158030,0.000000,0.000000,0.250000,0,0);}
.m74_c00493{transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158860,0.000000,0.000000,0.250000,0,0);}
.m95_c00493{transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158945,0.000000,0.000000,0.250000,0,0);}
.m9d_c00493{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.m8c_c00493{transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);}
.ma8_c00493{transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160795,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161880,0.000000,0.000000,0.250000,0,0);}
.m77_c00493{transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162890,0.000000,0.000000,0.250000,0,0);}
.mb1_c00493{transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);}
.m92_c00493{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.mf2_c00493{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.mb4_c00493{transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166720,0.000000,0.000000,0.250000,0,0);}
.mca_c00493{transform:matrix(0.167330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167330,0.000000,0.000000,0.250000,0,0);}
.m79_c00493{transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167955,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168440,0.000000,0.000000,0.250000,0,0);}
.mc9_c00493{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m64_c00493{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m8e_c00493{transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169905,0.000000,0.000000,0.250000,0,0);}
.mae_c00493{transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170065,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.me4_c00493{transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171135,0.000000,0.000000,0.250000,0,0);}
.mb5_c00493{transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171710,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172255,0.000000,0.000000,0.250000,0,0);}
.mbb_c00493{transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172465,0.000000,0.000000,0.250000,0,0);}
.mc5_c00493{transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173035,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00493{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.mb0_c00493{transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);}
.mcf_c00493{transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.mda_c00493{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176595,0.000000,0.000000,0.250000,0,0);}
.m58_c00493{transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177035,0.000000,0.000000,0.250000,0,0);}
.m71_c00493{transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178305,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178440,0.000000,0.000000,0.250000,0,0);}
.m85_c00493{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m93_c00493{transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);}
.mac_c00493{transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m29_c00493{transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180720,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);}
.mf7_c00493{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.mab_c00493{transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182130,0.000000,0.000000,0.250000,0,0);}
.mec_c00493{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m52_c00493{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182705,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m61_c00493{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183470,0.000000,0.000000,0.250000,0,0);}
.m8a_c00493{transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183660,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.md0_c00493{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m98_c00493{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m90_c00493{transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185245,0.000000,0.000000,0.250000,0,0);}
.me1_c00493{transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185495,0.000000,0.000000,0.250000,0,0);}
.m4d_c00493{transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185615,0.000000,0.000000,0.250000,0,0);}
.m3a_c00493{transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185870,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);}
.m5c_c00493{transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186205,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);}
.mbe_c00493{transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186395,0.000000,0.000000,0.250000,0,0);}
.m72_c00493{transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187010,0.000000,0.000000,0.250000,0,0);}
.m59_c00493{transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);}
.m91_c00493{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m99_c00493{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.mb3_c00493{transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187595,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);}
.mc8_c00493{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.ma7_c00493{transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m8d_c00493{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m9b_c00493{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.maf_c00493{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189980,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190560,0.000000,0.000000,0.250000,0,0);}
.mc7_c00493{transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191510,0.000000,0.000000,0.250000,0,0);}
.mb8_c00493{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.md6_c00493{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.mdc_c00493{transform:matrix(0.191690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191690,0.000000,0.000000,0.250000,0,0);}
.m8b_c00493{transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);}
.m53_c00493{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.mcc_c00493{transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00493{transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193065,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.m96_c00493{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.mf5_c00493{transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194360,0.000000,0.000000,0.250000,0,0);}
.mf0_c00493{transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194405,0.000000,0.000000,0.250000,0,0);}
.md1_c00493{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.mcb_c00493{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.195310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195310,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195835,0.000000,0.000000,0.250000,0,0);}
.maa_c00493{transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);}
.md7_c00493{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.mb6_c00493{transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);}
.md8_c00493{transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198990,0.000000,0.000000,0.250000,0,0);}
.m54_c00493{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.mf4_c00493{transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199535,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m56_c00493{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.me8_c00493{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m70_c00493{transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);}
.mb2_c00493{transform:matrix(0.200395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200395,0.000000,0.000000,0.250000,0,0);}
.m89_c00493{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m6f_c00493{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m9a_c00493{transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202295,0.000000,0.000000,0.250000,0,0);}
.m5e_c00493{transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202440,0.000000,0.000000,0.250000,0,0);}
.mc0_c00493{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.mbf_c00493{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.md5_c00493{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.m7d_c00493{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00493{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.m62_c00493{transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203930,0.000000,0.000000,0.250000,0,0);}
.m97_c00493{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m7c_c00493{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.me0_c00493{transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204580,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205485,0.000000,0.000000,0.250000,0,0);}
.m55_c00493{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.ma9_c00493{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.mc3_c00493{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00493{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);}
.m7f_c00493{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m81_c00493{transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);}
.me3_c00493{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.ma2_c00493{transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);}
.mce_c00493{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00493{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.mf1_c00493{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m5d_c00493{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m6d_c00493{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.mee_c00493{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);}
.mdb_c00493{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00493{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.m6b_c00493{transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212080,0.000000,0.000000,0.250000,0,0);}
.me2_c00493{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.mba_c00493{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00493{transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);}
.m9c_c00493{transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212820,0.000000,0.000000,0.250000,0,0);}
.m83_c00493{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m4b_c00493{transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.mc4_c00493{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216265,0.000000,0.000000,0.250000,0,0);}
.m5a_c00493{transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216765,0.000000,0.000000,0.250000,0,0);}
.med_c00493{transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216940,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.md9_c00493{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217230,0.000000,0.000000,0.250000,0,0);}
.m8f_c00493{transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);}
.m5b_c00493{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.meb_c00493{transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);}
.m7a_c00493{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m73_c00493{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.ma6_c00493{transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219360,0.000000,0.000000,0.250000,0,0);}
.me7_c00493{transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);}
.m66_c00493{transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);}
.m78_c00493{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221135,0.000000,0.000000,0.250000,0,0);}
.md3_c00493{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221560,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);}
.ma3_c00493{transform:matrix(0.222615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222615,0.000000,0.000000,0.250000,0,0);}
.mbd_c00493{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.mdf_c00493{transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223130,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);}
.m88_c00493{transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225005,0.000000,0.000000,0.250000,0,0);}
.ma0_c00493{transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225055,0.000000,0.000000,0.250000,0,0);}
.m4c_c00493{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226140,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);}
.mc2_c00493{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.md2_c00493{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mea_c00493{transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.229095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229095,0.000000,0.000000,0.250000,0,0);}
.m57_c00493{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.md4_c00493{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229890,0.000000,0.000000,0.250000,0,0);}
.m9e_c00493{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.mde_c00493{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.m40_c00493{transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.242055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242055,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mdd_c00493{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m7b_c00493{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.me5_c00493{transform:matrix(0.255315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255315,0.000000,0.000000,0.250000,0,0);}
.m60_c00493{transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);}
.mbc_c00493{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.ma4_c00493{transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);}
.m87_c00493{transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);}
.me6_c00493{transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:0.000000px;}
.fc0_c00493{color:transparent;}
.fsa_c00493{font-size:56.700000px;}
.fs2_c00493{font-size:58.800000px;}
.fs3_c00493{font-size:59.850000px;}
.fs9_c00493{font-size:60.900000px;}
.fs4_c00493{font-size:61.950000px;}
.fsb_c00493{font-size:63.000000px;}
.fs1_c00493{font-size:64.050000px;}
.fs5_c00493{font-size:65.100000px;}
.fs7_c00493{font-size:66.150000px;}
.fs6_c00493{font-size:67.200000px;}
.fs0_c00493{font-size:68.250000px;}
.fs8_c00493{font-size:69.300000px;}
.y0_c00493{bottom:0.000000px;}
.y26_c00493{bottom:25.380000px;}
.y27_c00493{bottom:25.657500px;}
.y28_c00493{bottom:26.067000px;}
.y29_c00493{bottom:27.291000px;}
.y2a_c00493{bottom:27.568500px;}
.y2b_c00493{bottom:28.036500px;}
.y2c_c00493{bottom:28.351500px;}
.y2d_c00493{bottom:29.317500px;}
.y2e_c00493{bottom:29.596500px;}
.y2f_c00493{bottom:30.084000px;}
.y30_c00493{bottom:31.245000px;}
.y20_c00493{bottom:42.931500px;}
.y21_c00493{bottom:43.228500px;}
.y22_c00493{bottom:43.672500px;}
.y23_c00493{bottom:44.401500px;}
.y24_c00493{bottom:45.337500px;}
.y25_c00493{bottom:46.063500px;}
.y1f_c00493{bottom:61.345500px;}
.y1e_c00493{bottom:78.531000px;}
.y1d_c00493{bottom:95.836500px;}
.y1c_c00493{bottom:112.819500px;}
.y1b_c00493{bottom:129.475500px;}
.y1a_c00493{bottom:147.058500px;}
.y19_c00493{bottom:164.359500px;}
.y18_c00493{bottom:181.642500px;}
.y17_c00493{bottom:199.312500px;}
.y16_c00493{bottom:216.270000px;}
.y15_c00493{bottom:232.279500px;}
.y14_c00493{bottom:248.775000px;}
.y13_c00493{bottom:267.082500px;}
.y12_c00493{bottom:284.092500px;}
.y11_c00493{bottom:300.954000px;}
.y10_c00493{bottom:318.090000px;}
.yf_c00493{bottom:334.825500px;}
.ye_c00493{bottom:352.161000px;}
.yd_c00493{bottom:369.586500px;}
.yc_c00493{bottom:386.517000px;}
.yb_c00493{bottom:403.257000px;}
.ya_c00493{bottom:420.562500px;}
.y9_c00493{bottom:437.817000px;}
.y8_c00493{bottom:454.066500px;}
.y7_c00493{bottom:470.953500px;}
.y6_c00493{bottom:488.307000px;}
.y5_c00493{bottom:505.512000px;}
.y4_c00493{bottom:522.378000px;}
.y3_c00493{bottom:539.238000px;}
.y2_c00493{bottom:556.248000px;}
.y1_c00493{bottom:570.112500px;}
.hc_c00493{height:56.700000px;}
.h4_c00493{height:58.800000px;}
.h5_c00493{height:59.850000px;}
.hb_c00493{height:60.900000px;}
.h6_c00493{height:61.950000px;}
.hd_c00493{height:63.000000px;}
.h3_c00493{height:64.050000px;}
.h7_c00493{height:65.100000px;}
.h9_c00493{height:66.150000px;}
.h8_c00493{height:67.200000px;}
.h2_c00493{height:68.250000px;}
.ha_c00493{height:69.300000px;}
.h0_c00493{height:617.700000px;}
.h1_c00493{height:618.000000px;}
.w0_c00493{width:359.100000px;}
.w1_c00493{width:359.250000px;}
.x0_c00493{left:0.000000px;}
.x6a_c00493{left:44.280000px;}
.x10_c00493{left:45.360000px;}
.x2_c00493{left:46.710000px;}
.x77_c00493{left:57.226500px;}
.x38_c00493{left:59.670000px;}
.x49_c00493{left:61.830000px;}
.x73_c00493{left:64.260000px;}
.xa_c00493{left:67.230000px;}
.x6b_c00493{left:69.120000px;}
.x5a_c00493{left:71.280000px;}
.x3f_c00493{left:73.440000px;}
.x62_c00493{left:76.140000px;}
.x3_c00493{left:77.220000px;}
.x6c_c00493{left:82.620000px;}
.x3d_c00493{left:85.320000px;}
.x74_c00493{left:87.480000px;}
.x17_c00493{left:90.450000px;}
.x5b_c00493{left:91.800000px;}
.x4d_c00493{left:94.500000px;}
.xb_c00493{left:97.200000px;}
.x4_c00493{left:98.280000px;}
.x3e_c00493{left:101.520000px;}
.x6d_c00493{left:104.220000px;}
.x53_c00493{left:105.570000px;}
.x55_c00493{left:106.650000px;}
.x34_c00493{left:109.080000px;}
.x2a_c00493{left:114.480000px;}
.x70_c00493{left:116.100000px;}
.x2e_c00493{left:117.180000px;}
.xc_c00493{left:118.530000px;}
.x39_c00493{left:120.150000px;}
.x5_c00493{left:124.200000px;}
.x18_c00493{left:126.630000px;}
.x5f_c00493{left:128.250000px;}
.x4a_c00493{left:130.680000px;}
.x1e_c00493{left:132.570000px;}
.x71_c00493{left:136.350000px;}
.x78_c00493{left:138.895500px;}
.x35_c00493{left:144.720000px;}
.x40_c00493{left:146.610000px;}
.x11_c00493{left:148.230000px;}
.x3a_c00493{left:150.930000px;}
.x79_c00493{left:152.746500px;}
.x1f_c00493{left:154.170000px;}
.x24_c00493{left:156.330000px;}
.x66_c00493{left:159.030000px;}
.x63_c00493{left:160.380000px;}
.x36_c00493{left:161.730000px;}
.x5c_c00493{left:163.620000px;}
.x19_c00493{left:165.240000px;}
.x52_c00493{left:167.400000px;}
.x41_c00493{left:168.480000px;}
.x12_c00493{left:170.370000px;}
.x2f_c00493{left:172.530000px;}
.x56_c00493{left:173.880000px;}
.x44_c00493{left:176.310000px;}
.x1_c00493{left:177.660000px;}
.x6_c00493{left:180.090000px;}
.x46_c00493{left:183.600000px;}
.x6e_c00493{left:185.490000px;}
.x57_c00493{left:189.270000px;}
.x7a_c00493{left:191.929500px;}
.x3b_c00493{left:193.050000px;}
.x2b_c00493{left:195.210000px;}
.xd_c00493{left:197.640000px;}
.x30_c00493{left:199.530000px;}
.x20_c00493{left:201.420000px;}
.x25_c00493{left:206.010000px;}
.x54_c00493{left:210.060000px;}
.x60_c00493{left:211.680000px;}
.x1a_c00493{left:214.110000px;}
.x76_c00493{left:215.883000px;}
.x31_c00493{left:220.320000px;}
.x21_c00493{left:222.210000px;}
.x4b_c00493{left:224.100000px;}
.x64_c00493{left:225.720000px;}
.x50_c00493{left:226.800000px;}
.x47_c00493{left:228.150000px;}
.x1b_c00493{left:230.850000px;}
.x13_c00493{left:235.170000px;}
.x2c_c00493{left:236.790000px;}
.x5d_c00493{left:238.140000px;}
.x32_c00493{left:240.300000px;}
.x45_c00493{left:241.650000px;}
.x14_c00493{left:247.320000px;}
.x58_c00493{left:250.290000px;}
.x7_c00493{left:251.370000px;}
.x26_c00493{left:252.990000px;}
.x5e_c00493{left:254.340000px;}
.x67_c00493{left:256.500000px;}
.xe_c00493{left:258.390000px;}
.x6f_c00493{left:260.010000px;}
.x42_c00493{left:265.140000px;}
.x15_c00493{left:268.110000px;}
.x68_c00493{left:270.270000px;}
.x8_c00493{left:272.160000px;}
.x27_c00493{left:275.670000px;}
.x1c_c00493{left:277.560000px;}
.x7b_c00493{left:278.565000px;}
.x72_c00493{left:282.420000px;}
.x69_c00493{left:284.040000px;}
.x4c_c00493{left:287.280000px;}
.x61_c00493{left:290.790000px;}
.x22_c00493{left:291.870000px;}
.x28_c00493{left:294.570000px;}
.x1d_c00493{left:297.270000px;}
.x75_c00493{left:298.890000px;}
.x37_c00493{left:300.240000px;}
.x51_c00493{left:301.860000px;}
.x33_c00493{left:304.560000px;}
.x59_c00493{left:306.180000px;}
.x4e_c00493{left:310.230000px;}
.x43_c00493{left:312.930000px;}
.x65_c00493{left:316.710000px;}
.x2d_c00493{left:318.060000px;}
.x3c_c00493{left:319.140000px;}
.x9_c00493{left:320.220000px;}
.x4f_c00493{left:321.840000px;}
.x16_c00493{left:322.920000px;}
.x48_c00493{left:324.000000px;}
.x29_c00493{left:327.510000px;}
.xf_c00493{left:333.450000px;}
.x23_c00493{left:334.530000px;}
.x7c_c00493{left:336.597000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fsa_c00493{font-size:50.400000pt;}
.fs2_c00493{font-size:52.266667pt;}
.fs3_c00493{font-size:53.200000pt;}
.fs9_c00493{font-size:54.133333pt;}
.fs4_c00493{font-size:55.066667pt;}
.fsb_c00493{font-size:56.000000pt;}
.fs1_c00493{font-size:56.933333pt;}
.fs5_c00493{font-size:57.866667pt;}
.fs7_c00493{font-size:58.800000pt;}
.fs6_c00493{font-size:59.733333pt;}
.fs0_c00493{font-size:60.666667pt;}
.fs8_c00493{font-size:61.600000pt;}
.y0_c00493{bottom:0.000000pt;}
.y26_c00493{bottom:22.560000pt;}
.y27_c00493{bottom:22.806667pt;}
.y28_c00493{bottom:23.170667pt;}
.y29_c00493{bottom:24.258667pt;}
.y2a_c00493{bottom:24.505333pt;}
.y2b_c00493{bottom:24.921333pt;}
.y2c_c00493{bottom:25.201333pt;}
.y2d_c00493{bottom:26.060000pt;}
.y2e_c00493{bottom:26.308000pt;}
.y2f_c00493{bottom:26.741333pt;}
.y30_c00493{bottom:27.773333pt;}
.y20_c00493{bottom:38.161333pt;}
.y21_c00493{bottom:38.425333pt;}
.y22_c00493{bottom:38.820000pt;}
.y23_c00493{bottom:39.468000pt;}
.y24_c00493{bottom:40.300000pt;}
.y25_c00493{bottom:40.945333pt;}
.y1f_c00493{bottom:54.529333pt;}
.y1e_c00493{bottom:69.805333pt;}
.y1d_c00493{bottom:85.188000pt;}
.y1c_c00493{bottom:100.284000pt;}
.y1b_c00493{bottom:115.089333pt;}
.y1a_c00493{bottom:130.718667pt;}
.y19_c00493{bottom:146.097333pt;}
.y18_c00493{bottom:161.460000pt;}
.y17_c00493{bottom:177.166667pt;}
.y16_c00493{bottom:192.240000pt;}
.y15_c00493{bottom:206.470667pt;}
.y14_c00493{bottom:221.133333pt;}
.y13_c00493{bottom:237.406667pt;}
.y12_c00493{bottom:252.526667pt;}
.y11_c00493{bottom:267.514667pt;}
.y10_c00493{bottom:282.746667pt;}
.yf_c00493{bottom:297.622667pt;}
.ye_c00493{bottom:313.032000pt;}
.yd_c00493{bottom:328.521333pt;}
.yc_c00493{bottom:343.570667pt;}
.yb_c00493{bottom:358.450667pt;}
.ya_c00493{bottom:373.833333pt;}
.y9_c00493{bottom:389.170667pt;}
.y8_c00493{bottom:403.614667pt;}
.y7_c00493{bottom:418.625333pt;}
.y6_c00493{bottom:434.050667pt;}
.y5_c00493{bottom:449.344000pt;}
.y4_c00493{bottom:464.336000pt;}
.y3_c00493{bottom:479.322667pt;}
.y2_c00493{bottom:494.442667pt;}
.y1_c00493{bottom:506.766667pt;}
.hc_c00493{height:50.400000pt;}
.h4_c00493{height:52.266667pt;}
.h5_c00493{height:53.200000pt;}
.hb_c00493{height:54.133333pt;}
.h6_c00493{height:55.066667pt;}
.hd_c00493{height:56.000000pt;}
.h3_c00493{height:56.933333pt;}
.h7_c00493{height:57.866667pt;}
.h9_c00493{height:58.800000pt;}
.h8_c00493{height:59.733333pt;}
.h2_c00493{height:60.666667pt;}
.ha_c00493{height:61.600000pt;}
.h0_c00493{height:549.066667pt;}
.h1_c00493{height:549.333333pt;}
.w0_c00493{width:319.200000pt;}
.w1_c00493{width:319.333333pt;}
.x0_c00493{left:0.000000pt;}
.x6a_c00493{left:39.360000pt;}
.x10_c00493{left:40.320000pt;}
.x2_c00493{left:41.520000pt;}
.x77_c00493{left:50.868000pt;}
.x38_c00493{left:53.040000pt;}
.x49_c00493{left:54.960000pt;}
.x73_c00493{left:57.120000pt;}
.xa_c00493{left:59.760000pt;}
.x6b_c00493{left:61.440000pt;}
.x5a_c00493{left:63.360000pt;}
.x3f_c00493{left:65.280000pt;}
.x62_c00493{left:67.680000pt;}
.x3_c00493{left:68.640000pt;}
.x6c_c00493{left:73.440000pt;}
.x3d_c00493{left:75.840000pt;}
.x74_c00493{left:77.760000pt;}
.x17_c00493{left:80.400000pt;}
.x5b_c00493{left:81.600000pt;}
.x4d_c00493{left:84.000000pt;}
.xb_c00493{left:86.400000pt;}
.x4_c00493{left:87.360000pt;}
.x3e_c00493{left:90.240000pt;}
.x6d_c00493{left:92.640000pt;}
.x53_c00493{left:93.840000pt;}
.x55_c00493{left:94.800000pt;}
.x34_c00493{left:96.960000pt;}
.x2a_c00493{left:101.760000pt;}
.x70_c00493{left:103.200000pt;}
.x2e_c00493{left:104.160000pt;}
.xc_c00493{left:105.360000pt;}
.x39_c00493{left:106.800000pt;}
.x5_c00493{left:110.400000pt;}
.x18_c00493{left:112.560000pt;}
.x5f_c00493{left:114.000000pt;}
.x4a_c00493{left:116.160000pt;}
.x1e_c00493{left:117.840000pt;}
.x71_c00493{left:121.200000pt;}
.x78_c00493{left:123.462667pt;}
.x35_c00493{left:128.640000pt;}
.x40_c00493{left:130.320000pt;}
.x11_c00493{left:131.760000pt;}
.x3a_c00493{left:134.160000pt;}
.x79_c00493{left:135.774667pt;}
.x1f_c00493{left:137.040000pt;}
.x24_c00493{left:138.960000pt;}
.x66_c00493{left:141.360000pt;}
.x63_c00493{left:142.560000pt;}
.x36_c00493{left:143.760000pt;}
.x5c_c00493{left:145.440000pt;}
.x19_c00493{left:146.880000pt;}
.x52_c00493{left:148.800000pt;}
.x41_c00493{left:149.760000pt;}
.x12_c00493{left:151.440000pt;}
.x2f_c00493{left:153.360000pt;}
.x56_c00493{left:154.560000pt;}
.x44_c00493{left:156.720000pt;}
.x1_c00493{left:157.920000pt;}
.x6_c00493{left:160.080000pt;}
.x46_c00493{left:163.200000pt;}
.x6e_c00493{left:164.880000pt;}
.x57_c00493{left:168.240000pt;}
.x7a_c00493{left:170.604000pt;}
.x3b_c00493{left:171.600000pt;}
.x2b_c00493{left:173.520000pt;}
.xd_c00493{left:175.680000pt;}
.x30_c00493{left:177.360000pt;}
.x20_c00493{left:179.040000pt;}
.x25_c00493{left:183.120000pt;}
.x54_c00493{left:186.720000pt;}
.x60_c00493{left:188.160000pt;}
.x1a_c00493{left:190.320000pt;}
.x76_c00493{left:191.896000pt;}
.x31_c00493{left:195.840000pt;}
.x21_c00493{left:197.520000pt;}
.x4b_c00493{left:199.200000pt;}
.x64_c00493{left:200.640000pt;}
.x50_c00493{left:201.600000pt;}
.x47_c00493{left:202.800000pt;}
.x1b_c00493{left:205.200000pt;}
.x13_c00493{left:209.040000pt;}
.x2c_c00493{left:210.480000pt;}
.x5d_c00493{left:211.680000pt;}
.x32_c00493{left:213.600000pt;}
.x45_c00493{left:214.800000pt;}
.x14_c00493{left:219.840000pt;}
.x58_c00493{left:222.480000pt;}
.x7_c00493{left:223.440000pt;}
.x26_c00493{left:224.880000pt;}
.x5e_c00493{left:226.080000pt;}
.x67_c00493{left:228.000000pt;}
.xe_c00493{left:229.680000pt;}
.x6f_c00493{left:231.120000pt;}
.x42_c00493{left:235.680000pt;}
.x15_c00493{left:238.320000pt;}
.x68_c00493{left:240.240000pt;}
.x8_c00493{left:241.920000pt;}
.x27_c00493{left:245.040000pt;}
.x1c_c00493{left:246.720000pt;}
.x7b_c00493{left:247.613333pt;}
.x72_c00493{left:251.040000pt;}
.x69_c00493{left:252.480000pt;}
.x4c_c00493{left:255.360000pt;}
.x61_c00493{left:258.480000pt;}
.x22_c00493{left:259.440000pt;}
.x28_c00493{left:261.840000pt;}
.x1d_c00493{left:264.240000pt;}
.x75_c00493{left:265.680000pt;}
.x37_c00493{left:266.880000pt;}
.x51_c00493{left:268.320000pt;}
.x33_c00493{left:270.720000pt;}
.x59_c00493{left:272.160000pt;}
.x4e_c00493{left:275.760000pt;}
.x43_c00493{left:278.160000pt;}
.x65_c00493{left:281.520000pt;}
.x2d_c00493{left:282.720000pt;}
.x3c_c00493{left:283.680000pt;}
.x9_c00493{left:284.640000pt;}
.x4f_c00493{left:286.080000pt;}
.x16_c00493{left:287.040000pt;}
.x48_c00493{left:288.000000pt;}
.x29_c00493{left:291.120000pt;}
.xf_c00493{left:296.400000pt;}
.x23_c00493{left:297.360000pt;}
.x7c_c00493{left:299.197333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00494 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00494 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00494 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00494 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c00494{transform:matrix(0.124612,-0.001371,0.002750,0.249985,0,0);-ms-transform:matrix(0.124612,-0.001371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.124612,-0.001371,0.002750,0.249985,0,0);}
.m1b_c00494{transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.145849,-0.002188,0.003750,0.249972,0,0);-ms-transform:matrix(0.145849,-0.002188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145849,-0.002188,0.003750,0.249972,0,0);}
.m2d_c00494{transform:matrix(0.149458,-0.002242,0.003750,0.249972,0,0);-ms-transform:matrix(0.149458,-0.002242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149458,-0.002242,0.003750,0.249972,0,0);}
.m59_c00494{transform:matrix(0.151583,-0.002274,0.003750,0.249972,0,0);-ms-transform:matrix(0.151583,-0.002274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151583,-0.002274,0.003750,0.249972,0,0);}
.m19_c00494{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.md3_c00494{transform:matrix(0.153633,-0.002304,0.003750,0.249972,0,0);-ms-transform:matrix(0.153633,-0.002304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153633,-0.002304,0.003750,0.249972,0,0);}
.mbf_c00494{transform:matrix(0.154873,-0.002323,0.003750,0.249972,0,0);-ms-transform:matrix(0.154873,-0.002323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154873,-0.002323,0.003750,0.249972,0,0);}
.m2f_c00494{transform:matrix(0.156207,-0.002343,0.003750,0.249972,0,0);-ms-transform:matrix(0.156207,-0.002343,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156207,-0.002343,0.003750,0.249972,0,0);}
.m16_c00494{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.med_c00494{transform:matrix(0.156882,-0.002353,0.003750,0.249972,0,0);-ms-transform:matrix(0.156882,-0.002353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156882,-0.002353,0.003750,0.249972,0,0);}
.m8c_c00494{transform:matrix(0.157290,-0.001730,0.002750,0.249985,0,0);-ms-transform:matrix(0.157290,-0.001730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157290,-0.001730,0.002750,0.249985,0,0);}
.mea_c00494{transform:matrix(0.157892,-0.002368,0.003750,0.249972,0,0);-ms-transform:matrix(0.157892,-0.002368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157892,-0.002368,0.003750,0.249972,0,0);}
.m23_c00494{transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);-ms-transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158507,-0.002378,0.003750,0.249972,0,0);}
.mbc_c00494{transform:matrix(0.158772,-0.002382,0.003750,0.249972,0,0);-ms-transform:matrix(0.158772,-0.002382,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158772,-0.002382,0.003750,0.249972,0,0);}
.ma9_c00494{transform:matrix(0.158827,-0.002382,0.003750,0.249972,0,0);-ms-transform:matrix(0.158827,-0.002382,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158827,-0.002382,0.003750,0.249972,0,0);}
.mbb_c00494{transform:matrix(0.159367,-0.002391,0.003750,0.249972,0,0);-ms-transform:matrix(0.159367,-0.002391,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159367,-0.002391,0.003750,0.249972,0,0);}
.m27_c00494{transform:matrix(0.160457,-0.002407,0.003750,0.249972,0,0);-ms-transform:matrix(0.160457,-0.002407,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160457,-0.002407,0.003750,0.249972,0,0);}
.m5c_c00494{transform:matrix(0.161997,-0.002430,0.003750,0.249972,0,0);-ms-transform:matrix(0.161997,-0.002430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161997,-0.002430,0.003750,0.249972,0,0);}
.m9_c00494{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.162912,-0.002444,0.003750,0.249972,0,0);-ms-transform:matrix(0.162912,-0.002444,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162912,-0.002444,0.003750,0.249972,0,0);}
.mb9_c00494{transform:matrix(0.163532,-0.002453,0.003750,0.249972,0,0);-ms-transform:matrix(0.163532,-0.002453,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163532,-0.002453,0.003750,0.249972,0,0);}
.m1d_c00494{transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164845,0.000000,0.000000,0.250000,0,0);}
.me0_c00494{transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);-ms-transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164886,-0.002473,0.003750,0.249972,0,0);}
.m8e_c00494{transform:matrix(0.165865,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165865,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165865,-0.001825,0.002750,0.249985,0,0);}
.m2a_c00494{transform:matrix(0.166826,-0.002502,0.003750,0.249972,0,0);-ms-transform:matrix(0.166826,-0.002502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166826,-0.002502,0.003750,0.249972,0,0);}
.m3_c00494{transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166940,0.000000,0.000000,0.250000,0,0);}
.md7_c00494{transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167136,-0.002507,0.003750,0.249972,0,0);}
.m60_c00494{transform:matrix(0.167391,-0.002511,0.003750,0.249972,0,0);-ms-transform:matrix(0.167391,-0.002511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167391,-0.002511,0.003750,0.249972,0,0);}
.mdf_c00494{transform:matrix(0.167416,-0.002511,0.003750,0.249972,0,0);-ms-transform:matrix(0.167416,-0.002511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167416,-0.002511,0.003750,0.249972,0,0);}
.m97_c00494{transform:matrix(0.167650,-0.001844,0.002750,0.249985,0,0);-ms-transform:matrix(0.167650,-0.001844,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167650,-0.001844,0.002750,0.249985,0,0);}
.m1f_c00494{transform:matrix(0.167806,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167806,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167806,-0.002517,0.003750,0.249972,0,0);}
.mc1_c00494{transform:matrix(0.168066,-0.002521,0.003750,0.249972,0,0);-ms-transform:matrix(0.168066,-0.002521,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168066,-0.002521,0.003750,0.249972,0,0);}
.m53_c00494{transform:matrix(0.168791,-0.002532,0.003750,0.249972,0,0);-ms-transform:matrix(0.168791,-0.002532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168791,-0.002532,0.003750,0.249972,0,0);}
.m13_c00494{transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169970,0.000000,0.000000,0.250000,0,0);}
.md0_c00494{transform:matrix(0.171056,-0.002566,0.003750,0.249972,0,0);-ms-transform:matrix(0.171056,-0.002566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171056,-0.002566,0.003750,0.249972,0,0);}
.mec_c00494{transform:matrix(0.171226,-0.002568,0.003750,0.249972,0,0);-ms-transform:matrix(0.171226,-0.002568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171226,-0.002568,0.003750,0.249972,0,0);}
.mba_c00494{transform:matrix(0.171331,-0.002570,0.003750,0.249972,0,0);-ms-transform:matrix(0.171331,-0.002570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171331,-0.002570,0.003750,0.249972,0,0);}
.m55_c00494{transform:matrix(0.171376,-0.002571,0.003750,0.249972,0,0);-ms-transform:matrix(0.171376,-0.002571,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171376,-0.002571,0.003750,0.249972,0,0);}
.m8_c00494{transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.173016,-0.002595,0.003750,0.249972,0,0);-ms-transform:matrix(0.173016,-0.002595,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173016,-0.002595,0.003750,0.249972,0,0);}
.mae_c00494{transform:matrix(0.173131,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173131,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173131,-0.002597,0.003750,0.249972,0,0);}
.mb8_c00494{transform:matrix(0.173775,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173775,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173775,-0.002607,0.003750,0.249972,0,0);}
.me8_c00494{transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);-ms-transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173870,-0.002608,0.003750,0.249972,0,0);}
.m17_c00494{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00494{transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174525,-0.002618,0.003750,0.249972,0,0);}
.m44_c00494{transform:matrix(0.174830,-0.002622,0.003750,0.249972,0,0);-ms-transform:matrix(0.174830,-0.002622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174830,-0.002622,0.003750,0.249972,0,0);}
.m1c_c00494{transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175255,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{transform:matrix(0.175515,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175515,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175515,-0.002633,0.003750,0.249972,0,0);}
.mb1_c00494{transform:matrix(0.175690,-0.002635,0.003750,0.249972,0,0);-ms-transform:matrix(0.175690,-0.002635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175690,-0.002635,0.003750,0.249972,0,0);}
.m54_c00494{transform:matrix(0.175915,-0.002639,0.003750,0.249972,0,0);-ms-transform:matrix(0.175915,-0.002639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175915,-0.002639,0.003750,0.249972,0,0);}
.m6c_c00494{transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175980,0.000000,0.000000,0.250000,0,0);}
.mb7_c00494{transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);-ms-transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176400,-0.002646,0.003750,0.249972,0,0);}
.mb0_c00494{transform:matrix(0.176700,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176700,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176700,-0.002651,0.003750,0.249972,0,0);}
.m92_c00494{transform:matrix(0.177164,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177164,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177164,-0.001949,0.002750,0.249985,0,0);}
.m7b_c00494{transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);-ms-transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177329,-0.001951,0.002750,0.249985,0,0);}
.m5b_c00494{transform:matrix(0.177380,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177380,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177380,-0.002661,0.003750,0.249972,0,0);}
.m4a_c00494{transform:matrix(0.177600,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177600,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177600,-0.002664,0.003750,0.249972,0,0);}
.m32_c00494{transform:matrix(0.177715,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177715,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177715,-0.002666,0.003750,0.249972,0,0);}
.ma3_c00494{transform:matrix(0.177790,-0.002667,0.003750,0.249972,0,0);-ms-transform:matrix(0.177790,-0.002667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177790,-0.002667,0.003750,0.249972,0,0);}
.m91_c00494{transform:matrix(0.177834,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177834,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177834,-0.001956,0.002750,0.249985,0,0);}
.ma1_c00494{transform:matrix(0.178245,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178245,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178245,-0.002674,0.003750,0.249972,0,0);}
.m28_c00494{transform:matrix(0.178420,-0.002676,0.003750,0.249972,0,0);-ms-transform:matrix(0.178420,-0.002676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178420,-0.002676,0.003750,0.249972,0,0);}
.m65_c00494{transform:matrix(0.178460,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178460,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178460,-0.002677,0.003750,0.249972,0,0);}
.mcc_c00494{transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);}
.mc0_c00494{transform:matrix(0.179190,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179190,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179190,-0.002688,0.003750,0.249972,0,0);}
.m58_c00494{transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179360,-0.002690,0.003750,0.249972,0,0);}
.m99_c00494{transform:matrix(0.179774,-0.001978,0.002750,0.249985,0,0);-ms-transform:matrix(0.179774,-0.001978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179774,-0.001978,0.002750,0.249985,0,0);}
.m8b_c00494{transform:matrix(0.179949,-0.001979,0.002750,0.249985,0,0);-ms-transform:matrix(0.179949,-0.001979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179949,-0.001979,0.002750,0.249985,0,0);}
.m5d_c00494{transform:matrix(0.180080,-0.002701,0.003750,0.249972,0,0);-ms-transform:matrix(0.180080,-0.002701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180080,-0.002701,0.003750,0.249972,0,0);}
.mda_c00494{transform:matrix(0.180400,-0.002706,0.003750,0.249972,0,0);-ms-transform:matrix(0.180400,-0.002706,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180400,-0.002706,0.003750,0.249972,0,0);}
.m5a_c00494{transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180600,-0.002709,0.003750,0.249972,0,0);}
.ma_c00494{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.meb_c00494{transform:matrix(0.180995,-0.002715,0.003750,0.249972,0,0);-ms-transform:matrix(0.180995,-0.002715,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180995,-0.002715,0.003750,0.249972,0,0);}
.m2c_c00494{transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);-ms-transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182160,-0.002732,0.003750,0.249972,0,0);}
.m24_c00494{transform:matrix(0.182474,-0.002737,0.003750,0.249972,0,0);-ms-transform:matrix(0.182474,-0.002737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182474,-0.002737,0.003750,0.249972,0,0);}
.m6d_c00494{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.mcf_c00494{transform:matrix(0.182919,-0.002744,0.003750,0.249972,0,0);-ms-transform:matrix(0.182919,-0.002744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182919,-0.002744,0.003750,0.249972,0,0);}
.md5_c00494{transform:matrix(0.182994,-0.002745,0.003750,0.249972,0,0);-ms-transform:matrix(0.182994,-0.002745,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182994,-0.002745,0.003750,0.249972,0,0);}
.m9d_c00494{transform:matrix(0.183209,-0.002015,0.002750,0.249985,0,0);-ms-transform:matrix(0.183209,-0.002015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183209,-0.002015,0.002750,0.249985,0,0);}
.m8f_c00494{transform:matrix(0.183349,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183349,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183349,-0.002017,0.002750,0.249985,0,0);}
.mad_c00494{transform:matrix(0.183429,-0.002751,0.003750,0.249972,0,0);-ms-transform:matrix(0.183429,-0.002751,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183429,-0.002751,0.003750,0.249972,0,0);}
.m77_c00494{transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183834,-0.002022,0.002750,0.249985,0,0);}
.m8d_c00494{transform:matrix(0.184029,-0.002024,0.002750,0.249985,0,0);-ms-transform:matrix(0.184029,-0.002024,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184029,-0.002024,0.002750,0.249985,0,0);}
.m4f_c00494{transform:matrix(0.184059,-0.002761,0.003750,0.249972,0,0);-ms-transform:matrix(0.184059,-0.002761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184059,-0.002761,0.003750,0.249972,0,0);}
.mdb_c00494{transform:matrix(0.184064,-0.002761,0.003750,0.249972,0,0);-ms-transform:matrix(0.184064,-0.002761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184064,-0.002761,0.003750,0.249972,0,0);}
.mb2_c00494{transform:matrix(0.184179,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184179,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184179,-0.002763,0.003750,0.249972,0,0);}
.m8a_c00494{transform:matrix(0.184534,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184534,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184534,-0.002030,0.002750,0.249985,0,0);}
.m41_c00494{transform:matrix(0.184684,-0.002770,0.003750,0.249972,0,0);-ms-transform:matrix(0.184684,-0.002770,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184684,-0.002770,0.003750,0.249972,0,0);}
.m14_c00494{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185795,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185944,-0.002789,0.003750,0.249972,0,0);}
.m3a_c00494{transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);-ms-transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185994,-0.002790,0.003750,0.249972,0,0);}
.mab_c00494{transform:matrix(0.186159,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186159,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186159,-0.002792,0.003750,0.249972,0,0);}
.md1_c00494{transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);}
.m96_c00494{transform:matrix(0.186539,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186539,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186539,-0.002052,0.002750,0.249985,0,0);}
.mb6_c00494{transform:matrix(0.186559,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186559,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186559,-0.002798,0.003750,0.249972,0,0);}
.mc2_c00494{transform:matrix(0.186669,-0.002800,0.003750,0.249972,0,0);-ms-transform:matrix(0.186669,-0.002800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186669,-0.002800,0.003750,0.249972,0,0);}
.md9_c00494{transform:matrix(0.186704,-0.002801,0.003750,0.249972,0,0);-ms-transform:matrix(0.186704,-0.002801,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186704,-0.002801,0.003750,0.249972,0,0);}
.m1a_c00494{transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186840,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.186864,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186864,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186864,-0.002803,0.003750,0.249972,0,0);}
.m62_c00494{transform:matrix(0.187244,-0.002809,0.003750,0.249972,0,0);-ms-transform:matrix(0.187244,-0.002809,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187244,-0.002809,0.003750,0.249972,0,0);}
.m88_c00494{transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);}
.m51_c00494{transform:matrix(0.187439,-0.002812,0.003750,0.249972,0,0);-ms-transform:matrix(0.187439,-0.002812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187439,-0.002812,0.003750,0.249972,0,0);}
.m2_c00494{transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);-ms-transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187834,-0.002818,0.003750,0.249972,0,0);}
.m12_c00494{transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{transform:matrix(0.188134,-0.002822,0.003750,0.249972,0,0);-ms-transform:matrix(0.188134,-0.002822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188134,-0.002822,0.003750,0.249972,0,0);}
.mcb_c00494{transform:matrix(0.188484,-0.002827,0.003750,0.249972,0,0);-ms-transform:matrix(0.188484,-0.002827,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188484,-0.002827,0.003750,0.249972,0,0);}
.m25_c00494{transform:matrix(0.188699,-0.002830,0.003750,0.249972,0,0);-ms-transform:matrix(0.188699,-0.002830,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188699,-0.002830,0.003750,0.249972,0,0);}
.m4e_c00494{transform:matrix(0.190099,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190099,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190099,-0.002851,0.003750,0.249972,0,0);}
.m2e_c00494{transform:matrix(0.190504,-0.002858,0.003750,0.249972,0,0);-ms-transform:matrix(0.190504,-0.002858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190504,-0.002858,0.003750,0.249972,0,0);}
.mb5_c00494{transform:matrix(0.190614,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190614,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190614,-0.002859,0.003750,0.249972,0,0);}
.m84_c00494{transform:matrix(0.190763,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190763,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190763,-0.002098,0.002750,0.249985,0,0);}
.m38_c00494{transform:matrix(0.191104,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191104,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191104,-0.002867,0.003750,0.249972,0,0);}
.m10_c00494{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.md6_c00494{transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192218,-0.002883,0.003750,0.249972,0,0);}
.m94_c00494{transform:matrix(0.192733,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192733,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192733,-0.002120,0.002750,0.249985,0,0);}
.m82_c00494{transform:matrix(0.192748,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192748,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192748,-0.002120,0.002750,0.249985,0,0);}
.m7f_c00494{transform:matrix(0.192878,-0.002122,0.002750,0.249985,0,0);-ms-transform:matrix(0.192878,-0.002122,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192878,-0.002122,0.002750,0.249985,0,0);}
.mbe_c00494{transform:matrix(0.193338,-0.002900,0.003750,0.249972,0,0);-ms-transform:matrix(0.193338,-0.002900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193338,-0.002900,0.003750,0.249972,0,0);}
.m26_c00494{transform:matrix(0.193578,-0.002904,0.003750,0.249972,0,0);-ms-transform:matrix(0.193578,-0.002904,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193578,-0.002904,0.003750,0.249972,0,0);}
.maa_c00494{transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194308,-0.002915,0.003750,0.249972,0,0);}
.mc7_c00494{transform:matrix(0.194378,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194378,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194378,-0.002916,0.003750,0.249972,0,0);}
.md2_c00494{transform:matrix(0.194408,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194408,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194408,-0.002916,0.003750,0.249972,0,0);}
.m9b_c00494{transform:matrix(0.194613,-0.002141,0.002750,0.249985,0,0);-ms-transform:matrix(0.194613,-0.002141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194613,-0.002141,0.002750,0.249985,0,0);}
.m7d_c00494{transform:matrix(0.194828,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194828,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194828,-0.002143,0.002750,0.249985,0,0);}
.m76_c00494{transform:matrix(0.195748,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195748,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195748,-0.002153,0.002750,0.249985,0,0);}
.me4_c00494{transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);-ms-transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196073,-0.002941,0.003750,0.249972,0,0);}
.me9_c00494{transform:matrix(0.196128,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196128,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196128,-0.002942,0.003750,0.249972,0,0);}
.mc6_c00494{transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196413,-0.002946,0.003750,0.249972,0,0);}
.mde_c00494{transform:matrix(0.196523,-0.002948,0.003750,0.249972,0,0);-ms-transform:matrix(0.196523,-0.002948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196523,-0.002948,0.003750,0.249972,0,0);}
.m6e_c00494{transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197235,0.000000,0.000000,0.250000,0,0);}
.m72_c00494{transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198070,0.000000,0.000000,0.250000,0,0);}
.mdd_c00494{transform:matrix(0.198138,-0.002972,0.003750,0.249972,0,0);-ms-transform:matrix(0.198138,-0.002972,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198138,-0.002972,0.003750,0.249972,0,0);}
.mc5_c00494{transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198618,-0.002979,0.003750,0.249972,0,0);}
.m9c_c00494{transform:matrix(0.199378,-0.002193,0.002750,0.249985,0,0);-ms-transform:matrix(0.199378,-0.002193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199378,-0.002193,0.002750,0.249985,0,0);}
.m95_c00494{transform:matrix(0.199473,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199473,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199473,-0.002194,0.002750,0.249985,0,0);}
.m90_c00494{transform:matrix(0.199923,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199923,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199923,-0.002199,0.002750,0.249985,0,0);}
.ma5_c00494{transform:matrix(0.200027,-0.003000,0.003750,0.249972,0,0);-ms-transform:matrix(0.200027,-0.003000,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200027,-0.003000,0.003750,0.249972,0,0);}
.md4_c00494{transform:matrix(0.200052,-0.003001,0.003750,0.249972,0,0);-ms-transform:matrix(0.200052,-0.003001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200052,-0.003001,0.003750,0.249972,0,0);}
.mbd_c00494{transform:matrix(0.200157,-0.003002,0.003750,0.249972,0,0);-ms-transform:matrix(0.200157,-0.003002,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200157,-0.003002,0.003750,0.249972,0,0);}
.m56_c00494{transform:matrix(0.200727,-0.003011,0.003750,0.249972,0,0);-ms-transform:matrix(0.200727,-0.003011,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200727,-0.003011,0.003750,0.249972,0,0);}
.m63_c00494{transform:matrix(0.202917,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202917,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202917,-0.003044,0.003750,0.249972,0,0);}
.ma6_c00494{transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);-ms-transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203232,-0.003048,0.003750,0.249972,0,0);}
.m18_c00494{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203387,-0.003051,0.003750,0.249972,0,0);}
.m22_c00494{transform:matrix(0.203557,-0.003053,0.003750,0.249972,0,0);-ms-transform:matrix(0.203557,-0.003053,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203557,-0.003053,0.003750,0.249972,0,0);}
.m61_c00494{transform:matrix(0.203647,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203647,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203647,-0.003055,0.003750,0.249972,0,0);}
.mc3_c00494{transform:matrix(0.203782,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203782,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203782,-0.003057,0.003750,0.249972,0,0);}
.me1_c00494{transform:matrix(0.204107,-0.003062,0.003750,0.249972,0,0);-ms-transform:matrix(0.204107,-0.003062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204107,-0.003062,0.003750,0.249972,0,0);}
.mac_c00494{transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);}
.me2_c00494{transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204532,-0.003068,0.003750,0.249972,0,0);}
.md8_c00494{transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204547,-0.003068,0.003750,0.249972,0,0);}
.m57_c00494{transform:matrix(0.204787,-0.003072,0.003750,0.249972,0,0);-ms-transform:matrix(0.204787,-0.003072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204787,-0.003072,0.003750,0.249972,0,0);}
.mce_c00494{transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);}
.me3_c00494{transform:matrix(0.204952,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204952,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204952,-0.003074,0.003750,0.249972,0,0);}
.m79_c00494{transform:matrix(0.205188,-0.002257,0.002750,0.249985,0,0);-ms-transform:matrix(0.205188,-0.002257,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205188,-0.002257,0.002750,0.249985,0,0);}
.me5_c00494{transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);-ms-transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206117,-0.003092,0.003750,0.249972,0,0);}
.m47_c00494{transform:matrix(0.206172,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206172,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206172,-0.003093,0.003750,0.249972,0,0);}
.m78_c00494{transform:matrix(0.206737,-0.002274,0.002750,0.249985,0,0);-ms-transform:matrix(0.206737,-0.002274,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206737,-0.002274,0.002750,0.249985,0,0);}
.m98_c00494{transform:matrix(0.207112,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207112,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207112,-0.002278,0.002750,0.249985,0,0);}
.mca_c00494{transform:matrix(0.207172,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207172,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207172,-0.003108,0.003750,0.249972,0,0);}
.mb4_c00494{transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);-ms-transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207392,-0.003111,0.003750,0.249972,0,0);}
.mdc_c00494{transform:matrix(0.208112,-0.003122,0.003750,0.249972,0,0);-ms-transform:matrix(0.208112,-0.003122,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208112,-0.003122,0.003750,0.249972,0,0);}
.me6_c00494{transform:matrix(0.208627,-0.003129,0.003750,0.249972,0,0);-ms-transform:matrix(0.208627,-0.003129,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208627,-0.003129,0.003750,0.249972,0,0);}
.m42_c00494{transform:matrix(0.209001,-0.003135,0.003750,0.249972,0,0);-ms-transform:matrix(0.209001,-0.003135,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209001,-0.003135,0.003750,0.249972,0,0);}
.m46_c00494{transform:matrix(0.209081,-0.003136,0.003750,0.249972,0,0);-ms-transform:matrix(0.209081,-0.003136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209081,-0.003136,0.003750,0.249972,0,0);}
.mcd_c00494{transform:matrix(0.209311,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209311,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209311,-0.003140,0.003750,0.249972,0,0);}
.m6b_c00494{transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209515,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.209891,-0.003148,0.003750,0.249972,0,0);-ms-transform:matrix(0.209891,-0.003148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209891,-0.003148,0.003750,0.249972,0,0);}
.m6_c00494{transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.210221,-0.003153,0.003750,0.249972,0,0);-ms-transform:matrix(0.210221,-0.003153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210221,-0.003153,0.003750,0.249972,0,0);}
.m68_c00494{transform:matrix(0.210266,-0.003154,0.003750,0.249972,0,0);-ms-transform:matrix(0.210266,-0.003154,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210266,-0.003154,0.003750,0.249972,0,0);}
.m11_c00494{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.m40_c00494{transform:matrix(0.211026,-0.003165,0.003750,0.249972,0,0);-ms-transform:matrix(0.211026,-0.003165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211026,-0.003165,0.003750,0.249972,0,0);}
.mb3_c00494{transform:matrix(0.211641,-0.003175,0.003750,0.249972,0,0);-ms-transform:matrix(0.211641,-0.003175,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211641,-0.003175,0.003750,0.249972,0,0);}
.m71_c00494{transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);}
.ma7_c00494{transform:matrix(0.212386,-0.003186,0.003750,0.249972,0,0);-ms-transform:matrix(0.212386,-0.003186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212386,-0.003186,0.003750,0.249972,0,0);}
.m7a_c00494{transform:matrix(0.212637,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212637,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212637,-0.002339,0.002750,0.249985,0,0);}
.m66_c00494{transform:matrix(0.212766,-0.003191,0.003750,0.249972,0,0);-ms-transform:matrix(0.212766,-0.003191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212766,-0.003191,0.003750,0.249972,0,0);}
.m37_c00494{transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);-ms-transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213056,-0.003196,0.003750,0.249972,0,0);}
.m45_c00494{transform:matrix(0.213066,-0.003196,0.003750,0.249972,0,0);-ms-transform:matrix(0.213066,-0.003196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213066,-0.003196,0.003750,0.249972,0,0);}
.mc4_c00494{transform:matrix(0.213341,-0.003200,0.003750,0.249972,0,0);-ms-transform:matrix(0.213341,-0.003200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213341,-0.003200,0.003750,0.249972,0,0);}
.ma4_c00494{transform:matrix(0.213806,-0.003207,0.003750,0.249972,0,0);-ms-transform:matrix(0.213806,-0.003207,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213806,-0.003207,0.003750,0.249972,0,0);}
.ma2_c00494{transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);-ms-transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214121,-0.003212,0.003750,0.249972,0,0);}
.m3d_c00494{transform:matrix(0.214176,-0.003213,0.003750,0.249972,0,0);-ms-transform:matrix(0.214176,-0.003213,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214176,-0.003213,0.003750,0.249972,0,0);}
.m48_c00494{transform:matrix(0.214296,-0.003214,0.003750,0.249972,0,0);-ms-transform:matrix(0.214296,-0.003214,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214296,-0.003214,0.003750,0.249972,0,0);}
.m7c_c00494{transform:matrix(0.215247,-0.002368,0.002750,0.249985,0,0);-ms-transform:matrix(0.215247,-0.002368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215247,-0.002368,0.002750,0.249985,0,0);}
.mb_c00494{transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);}
.m4b_c00494{transform:matrix(0.216916,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216916,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216916,-0.003254,0.003750,0.249972,0,0);}
.m1_c00494{transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217045,0.000000,0.000000,0.250000,0,0);}
.m89_c00494{transform:matrix(0.217327,-0.002391,0.002750,0.249985,0,0);-ms-transform:matrix(0.217327,-0.002391,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217327,-0.002391,0.002750,0.249985,0,0);}
.m73_c00494{transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);}
.m83_c00494{transform:matrix(0.219292,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219292,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219292,-0.002412,0.002750,0.249985,0,0);}
.m9a_c00494{transform:matrix(0.219872,-0.002419,0.002750,0.249985,0,0);-ms-transform:matrix(0.219872,-0.002419,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219872,-0.002419,0.002750,0.249985,0,0);}
.m5_c00494{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.220935,-0.003314,0.003750,0.249972,0,0);-ms-transform:matrix(0.220935,-0.003314,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220935,-0.003314,0.003750,0.249972,0,0);}
.m43_c00494{transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);}
.m52_c00494{transform:matrix(0.221995,-0.003330,0.003750,0.249972,0,0);-ms-transform:matrix(0.221995,-0.003330,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221995,-0.003330,0.003750,0.249972,0,0);}
.mc_c00494{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00494{transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);}
.m50_c00494{transform:matrix(0.222950,-0.003344,0.003750,0.249972,0,0);-ms-transform:matrix(0.222950,-0.003344,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222950,-0.003344,0.003750,0.249972,0,0);}
.m93_c00494{transform:matrix(0.223441,-0.002458,0.002750,0.249985,0,0);-ms-transform:matrix(0.223441,-0.002458,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223441,-0.002458,0.002750,0.249985,0,0);}
.m4d_c00494{transform:matrix(0.224930,-0.003374,0.003750,0.249972,0,0);-ms-transform:matrix(0.224930,-0.003374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224930,-0.003374,0.003750,0.249972,0,0);}
.mc9_c00494{transform:matrix(0.225145,-0.003377,0.003750,0.249972,0,0);-ms-transform:matrix(0.225145,-0.003377,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225145,-0.003377,0.003750,0.249972,0,0);}
.m67_c00494{transform:matrix(0.225595,-0.003384,0.003750,0.249972,0,0);-ms-transform:matrix(0.225595,-0.003384,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225595,-0.003384,0.003750,0.249972,0,0);}
.m7_c00494{transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226295,0.000000,0.000000,0.250000,0,0);}
.m6a_c00494{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m87_c00494{transform:matrix(0.231611,-0.002548,0.002750,0.249985,0,0);-ms-transform:matrix(0.231611,-0.002548,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231611,-0.002548,0.002750,0.249985,0,0);}
.md_c00494{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.ma0_c00494{transform:matrix(0.232259,-0.003484,0.003750,0.249972,0,0);-ms-transform:matrix(0.232259,-0.003484,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232259,-0.003484,0.003750,0.249972,0,0);}
.m81_c00494{transform:matrix(0.232486,-0.002557,0.002750,0.249985,0,0);-ms-transform:matrix(0.232486,-0.002557,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232486,-0.002557,0.002750,0.249985,0,0);}
.m5e_c00494{transform:matrix(0.234879,-0.003523,0.003750,0.249972,0,0);-ms-transform:matrix(0.234879,-0.003523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234879,-0.003523,0.003750,0.249972,0,0);}
.m86_c00494{transform:matrix(0.235456,-0.002590,0.002750,0.249985,0,0);-ms-transform:matrix(0.235456,-0.002590,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235456,-0.002590,0.002750,0.249985,0,0);}
.m36_c00494{transform:matrix(0.235713,-0.003536,0.003750,0.249972,0,0);-ms-transform:matrix(0.235713,-0.003536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235713,-0.003536,0.003750,0.249972,0,0);}
.m3b_c00494{transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);-ms-transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);}
.m0_c00494{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.238426,-0.002623,0.002750,0.249985,0,0);-ms-transform:matrix(0.238426,-0.002623,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238426,-0.002623,0.002750,0.249985,0,0);}
.m3f_c00494{transform:matrix(0.239313,-0.003590,0.003750,0.249972,0,0);-ms-transform:matrix(0.239313,-0.003590,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239313,-0.003590,0.003750,0.249972,0,0);}
.m4c_c00494{transform:matrix(0.239793,-0.003597,0.003750,0.249972,0,0);-ms-transform:matrix(0.239793,-0.003597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239793,-0.003597,0.003750,0.249972,0,0);}
.m15_c00494{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.248880,-0.002738,0.002750,0.249985,0,0);-ms-transform:matrix(0.248880,-0.002738,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248880,-0.002738,0.002750,0.249985,0,0);}
.m64_c00494{transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);-ms-transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);}
.m7e_c00494{transform:matrix(0.258074,-0.002839,0.002750,0.249985,0,0);-ms-transform:matrix(0.258074,-0.002839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258074,-0.002839,0.002750,0.249985,0,0);}
.m85_c00494{transform:matrix(0.266314,-0.002929,0.002750,0.249985,0,0);-ms-transform:matrix(0.266314,-0.002929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266314,-0.002929,0.002750,0.249985,0,0);}
.m1e_c00494{transform:matrix(0.266475,-0.003997,0.003750,0.249972,0,0);-ms-transform:matrix(0.266475,-0.003997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266475,-0.003997,0.003750,0.249972,0,0);}
.maf_c00494{transform:matrix(0.276494,-0.004147,0.003750,0.249972,0,0);-ms-transform:matrix(0.276494,-0.004147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276494,-0.004147,0.003750,0.249972,0,0);}
.m9f_c00494{transform:matrix(0.297507,-0.004463,0.003750,0.249972,0,0);-ms-transform:matrix(0.297507,-0.004463,0.003750,0.249972,0,0);-webkit-transform:matrix(0.297507,-0.004463,0.003750,0.249972,0,0);}
.m6f_c00494{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m74_c00494{transform:matrix(0.305876,-0.003365,0.002750,0.249985,0,0);-ms-transform:matrix(0.305876,-0.003365,0.002750,0.249985,0,0);-webkit-transform:matrix(0.305876,-0.003365,0.002750,0.249985,0,0);}
.mc8_c00494{transform:matrix(0.341727,-0.005126,0.003750,0.249972,0,0);-ms-transform:matrix(0.341727,-0.005126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.341727,-0.005126,0.003750,0.249972,0,0);}
.me7_c00494{transform:matrix(0.345911,-0.005189,0.003750,0.249972,0,0);-ms-transform:matrix(0.345911,-0.005189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.345911,-0.005189,0.003750,0.249972,0,0);}
.m5f_c00494{transform:matrix(0.349411,-0.005241,0.003750,0.249972,0,0);-ms-transform:matrix(0.349411,-0.005241,0.003750,0.249972,0,0);-webkit-transform:matrix(0.349411,-0.005241,0.003750,0.249972,0,0);}
.m70_c00494{transform:matrix(0.350080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350080,0.000000,0.000000,0.250000,0,0);}
.m69_c00494{transform:matrix(0.570820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570820,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
.fc0_c00494{color:transparent;}
.fsd_c00494{font-size:55.656260px;}
.fs0_c00494{font-size:56.700000px;}
.fs3_c00494{font-size:57.750000px;}
.fs11_c00494{font-size:57.753494px;}
.fsb_c00494{font-size:57.756497px;}
.fs10_c00494{font-size:58.803557px;}
.fs9_c00494{font-size:58.806615px;}
.fs13_c00494{font-size:59.853621px;}
.fsa_c00494{font-size:59.856733px;}
.fs2_c00494{font-size:60.900000px;}
.fsf_c00494{font-size:60.903684px;}
.fs14_c00494{font-size:60.906851px;}
.fse_c00494{font-size:61.950000px;}
.fs15_c00494{font-size:63.007087px;}
.fs16_c00494{font-size:65.107323px;}
.fs12_c00494{font-size:66.154002px;}
.fs6_c00494{font-size:66.157441px;}
.fs4_c00494{font-size:67.200000px;}
.fs7_c00494{font-size:67.207560px;}
.fsc_c00494{font-size:68.257678px;}
.fs8_c00494{font-size:70.357914px;}
.fs5_c00494{font-size:72.450000px;}
.fs1_c00494{font-size:80.850000px;}
.y0_c00494{bottom:0.000000px;}
.yd7_c00494{bottom:26.719702px;}
.yd8_c00494{bottom:27.290910px;}
.yd9_c00494{bottom:27.447907px;}
.yda_c00494{bottom:28.176022px;}
.ydb_c00494{bottom:28.353930px;}
.ydc_c00494{bottom:28.557787px;}
.ydd_c00494{bottom:29.218695px;}
.yde_c00494{bottom:30.307207px;}
.yd2_c00494{bottom:44.808757px;}
.yd3_c00494{bottom:45.729412px;}
.yd4_c00494{bottom:46.031085px;}
.yd5_c00494{bottom:46.783365px;}
.yd6_c00494{bottom:47.671222px;}
.yc9_c00494{bottom:60.475200px;}
.yca_c00494{bottom:60.751515px;}
.ycb_c00494{bottom:61.209450px;}
.ycc_c00494{bottom:62.049990px;}
.ycd_c00494{bottom:63.017655px;}
.yce_c00494{bottom:64.188825px;}
.ycf_c00494{bottom:64.475992px;}
.yd0_c00494{bottom:65.312355px;}
.yd1_c00494{bottom:66.068400px;}
.yc1_c00494{bottom:78.566310px;}
.yc2_c00494{bottom:79.013115px;}
.yc3_c00494{bottom:79.277363px;}
.yc4_c00494{bottom:80.036378px;}
.yc5_c00494{bottom:80.241135px;}
.yc6_c00494{bottom:81.094778px;}
.yc7_c00494{bottom:81.975855px;}
.yc8_c00494{bottom:82.225245px;}
.yb8_c00494{bottom:94.770278px;}
.yb9_c00494{bottom:95.007548px;}
.yba_c00494{bottom:96.130958px;}
.ybb_c00494{bottom:96.563048px;}
.ybc_c00494{bottom:97.300230px;}
.ybd_c00494{bottom:97.792950px;}
.ybe_c00494{bottom:98.216543px;}
.ybf_c00494{bottom:99.532845px;}
.yc0_c00494{bottom:99.917250px;}
.yb2_c00494{bottom:112.319910px;}
.yb3_c00494{bottom:112.641975px;}
.yb4_c00494{bottom:113.667818px;}
.yb5_c00494{bottom:114.955680px;}
.yb6_c00494{bottom:116.253143px;}
.yb7_c00494{bottom:117.196365px;}
.yaa_c00494{bottom:131.174213px;}
.ya9_c00494{bottom:131.174558px;}
.yab_c00494{bottom:131.174618px;}
.yac_c00494{bottom:131.175128px;}
.yad_c00494{bottom:131.175682px;}
.yae_c00494{bottom:131.175810px;}
.yaf_c00494{bottom:131.176148px;}
.yb0_c00494{bottom:131.176275px;}
.yb1_c00494{bottom:131.176853px;}
.ya0_c00494{bottom:147.151043px;}
.ya1_c00494{bottom:147.922530px;}
.ya2_c00494{bottom:148.347668px;}
.ya3_c00494{bottom:148.666823px;}
.ya4_c00494{bottom:149.521575px;}
.ya5_c00494{bottom:149.772600px;}
.ya6_c00494{bottom:150.752415px;}
.ya7_c00494{bottom:151.206435px;}
.ya8_c00494{bottom:151.558110px;}
.y98_c00494{bottom:163.890795px;}
.y99_c00494{bottom:164.117033px;}
.y9a_c00494{bottom:164.571915px;}
.y9b_c00494{bottom:164.906723px;}
.y9c_c00494{bottom:165.884670px;}
.y9d_c00494{bottom:166.367122px;}
.y9e_c00494{bottom:166.991557px;}
.y9f_c00494{bottom:167.767755px;}
.y8f_c00494{bottom:180.631500px;}
.y90_c00494{bottom:181.923315px;}
.y91_c00494{bottom:182.085360px;}
.y92_c00494{bottom:182.903257px;}
.y93_c00494{bottom:183.110077px;}
.y94_c00494{bottom:183.462382px;}
.y95_c00494{bottom:183.770205px;}
.y96_c00494{bottom:184.256385px;}
.y97_c00494{bottom:184.523775px;}
.y8a_c00494{bottom:199.069242px;}
.y8b_c00494{bottom:199.069539px;}
.y8c_c00494{bottom:199.069613px;}
.y8d_c00494{bottom:199.070106px;}
.y8e_c00494{bottom:199.070187px;}
.y82_c00494{bottom:214.642967px;}
.y83_c00494{bottom:214.958481px;}
.y84_c00494{bottom:215.818181px;}
.y85_c00494{bottom:216.241589px;}
.y86_c00494{bottom:216.925541px;}
.y87_c00494{bottom:217.287264px;}
.y88_c00494{bottom:217.656593px;}
.y89_c00494{bottom:218.290920px;}
.y80_c00494{bottom:234.213611px;}
.y81_c00494{bottom:234.214208px;}
.y7f_c00494{bottom:234.214227px;}
.y7e_c00494{bottom:234.214664px;}
.y7c_c00494{bottom:234.215223px;}
.y7d_c00494{bottom:234.215387px;}
.y7a_c00494{bottom:234.215663px;}
.y7b_c00494{bottom:234.215736px;}
.y73_c00494{bottom:249.206729px;}
.y74_c00494{bottom:249.528237px;}
.y75_c00494{bottom:249.821369px;}
.y76_c00494{bottom:250.807937px;}
.y77_c00494{bottom:251.478326px;}
.y78_c00494{bottom:251.983646px;}
.y79_c00494{bottom:252.346220px;}
.y72_c00494{bottom:268.089499px;}
.y71_c00494{bottom:268.089669px;}
.y6f_c00494{bottom:268.089825px;}
.y70_c00494{bottom:268.090106px;}
.y6e_c00494{bottom:268.090441px;}
.y6d_c00494{bottom:268.090848px;}
.y6c_c00494{bottom:268.091301px;}
.y64_c00494{bottom:283.231500px;}
.y65_c00494{bottom:283.677066px;}
.y66_c00494{bottom:284.353929px;}
.y67_c00494{bottom:284.728578px;}
.y68_c00494{bottom:284.933492px;}
.y69_c00494{bottom:285.438392px;}
.y6a_c00494{bottom:285.643305px;}
.y6b_c00494{bottom:286.088195px;}
.y63_c00494{bottom:301.624500px;}
.y1_c00494{bottom:319.111500px;}
.y62_c00494{bottom:320.323500px;}
.y5c_c00494{bottom:334.517003px;}
.y5d_c00494{bottom:335.075947px;}
.y5e_c00494{bottom:335.836590px;}
.y5f_c00494{bottom:336.101333px;}
.y60_c00494{bottom:336.534503px;}
.y61_c00494{bottom:336.897458px;}
.y54_c00494{bottom:350.720610px;}
.y55_c00494{bottom:351.440835px;}
.y56_c00494{bottom:351.744960px;}
.y57_c00494{bottom:352.426838px;}
.y58_c00494{bottom:353.572920px;}
.y59_c00494{bottom:353.766360px;}
.y5a_c00494{bottom:354.052155px;}
.y5b_c00494{bottom:355.083323px;}
.y4c_c00494{bottom:367.998945px;}
.y4d_c00494{bottom:368.323988px;}
.y4e_c00494{bottom:368.946188px;}
.y4f_c00494{bottom:369.589732px;}
.y50_c00494{bottom:370.433040px;}
.y51_c00494{bottom:371.267347px;}
.y52_c00494{bottom:371.618190px;}
.y53_c00494{bottom:372.195922px;}
.y45_c00494{bottom:385.010775px;}
.y46_c00494{bottom:386.040443px;}
.y47_c00494{bottom:386.788635px;}
.y48_c00494{bottom:387.634860px;}
.y49_c00494{bottom:387.955012px;}
.y4a_c00494{bottom:388.377562px;}
.y4b_c00494{bottom:388.835100px;}
.y3c_c00494{bottom:401.753663px;}
.y3d_c00494{bottom:401.967195px;}
.y3e_c00494{bottom:402.118403px;}
.y3f_c00494{bottom:402.730725px;}
.y40_c00494{bottom:402.956092px;}
.y41_c00494{bottom:403.620847px;}
.y42_c00494{bottom:403.930583px;}
.y43_c00494{bottom:404.535517px;}
.y44_c00494{bottom:404.749770px;}
.y34_c00494{bottom:418.226662px;}
.y35_c00494{bottom:418.349985px;}
.y36_c00494{bottom:418.593713px;}
.y37_c00494{bottom:419.417025px;}
.y38_c00494{bottom:419.650103px;}
.y39_c00494{bottom:420.465757px;}
.y3a_c00494{bottom:420.786652px;}
.y3b_c00494{bottom:421.077630px;}
.y2f_c00494{bottom:437.526547px;}
.y30_c00494{bottom:437.526667px;}
.y31_c00494{bottom:437.527222px;}
.y32_c00494{bottom:437.527838px;}
.y33_c00494{bottom:437.528393px;}
.y27_c00494{bottom:453.058628px;}
.y28_c00494{bottom:453.818685px;}
.y29_c00494{bottom:454.039718px;}
.y2a_c00494{bottom:454.635367px;}
.y2b_c00494{bottom:454.784790px;}
.y2c_c00494{bottom:455.227695px;}
.y2d_c00494{bottom:455.717400px;}
.y2e_c00494{bottom:456.209790px;}
.y1f_c00494{bottom:470.069858px;}
.y20_c00494{bottom:470.803095px;}
.y21_c00494{bottom:471.082042px;}
.y22_c00494{bottom:471.854475px;}
.y23_c00494{bottom:472.074698px;}
.y24_c00494{bottom:472.267425px;}
.y25_c00494{bottom:472.926547px;}
.y26_c00494{bottom:473.155920px;}
.y17_c00494{bottom:486.003000px;}
.y18_c00494{bottom:486.586380px;}
.y19_c00494{bottom:487.323705px;}
.y1a_c00494{bottom:487.630988px;}
.y1b_c00494{bottom:488.068770px;}
.y1c_c00494{bottom:489.008325px;}
.y1d_c00494{bottom:489.267750px;}
.y1e_c00494{bottom:490.061640px;}
.y13_c00494{bottom:503.014500px;}
.y14_c00494{bottom:504.499500px;}
.y15_c00494{bottom:504.864000px;}
.y16_c00494{bottom:505.771500px;}
.ya_c00494{bottom:520.291500px;}
.yb_c00494{bottom:520.485000px;}
.yc_c00494{bottom:521.064000px;}
.yd_c00494{bottom:521.698500px;}
.ye_c00494{bottom:522.541500px;}
.yf_c00494{bottom:522.750000px;}
.y10_c00494{bottom:523.078500px;}
.y11_c00494{bottom:523.888500px;}
.y12_c00494{bottom:524.289000px;}
.y4_c00494{bottom:537.301500px;}
.y5_c00494{bottom:537.874500px;}
.y6_c00494{bottom:538.552500px;}
.y7_c00494{bottom:538.881000px;}
.y8_c00494{bottom:539.404500px;}
.y9_c00494{bottom:540.084000px;}
.y3_c00494{bottom:556.057500px;}
.y2_c00494{bottom:570.243000px;}
.hf_c00494{height:55.656260px;}
.h2_c00494{height:56.700000px;}
.h5_c00494{height:57.750000px;}
.h13_c00494{height:57.753494px;}
.hd_c00494{height:57.756497px;}
.h12_c00494{height:58.803557px;}
.hb_c00494{height:58.806615px;}
.h15_c00494{height:59.853621px;}
.hc_c00494{height:59.856733px;}
.h4_c00494{height:60.900000px;}
.h11_c00494{height:60.903684px;}
.h16_c00494{height:60.906851px;}
.h10_c00494{height:61.950000px;}
.h17_c00494{height:63.007087px;}
.h18_c00494{height:65.107323px;}
.h14_c00494{height:66.154002px;}
.h8_c00494{height:66.157441px;}
.h6_c00494{height:67.200000px;}
.h9_c00494{height:67.207560px;}
.he_c00494{height:68.257678px;}
.ha_c00494{height:70.357914px;}
.h7_c00494{height:72.450000px;}
.h3_c00494{height:80.850000px;}
.h0_c00494{height:617.700000px;}
.h1_c00494{height:618.000000px;}
.w0_c00494{width:359.100000px;}
.w1_c00494{width:359.250000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:17.280000px;}
.x24_c00494{left:22.007137px;}
.x5_c00494{left:23.220000px;}
.x68_c00494{left:24.293183px;}
.x5a_c00494{left:25.379078px;}
.x5c_c00494{left:30.982500px;}
.x31_c00494{left:32.293575px;}
.x1c_c00494{left:34.480500px;}
.x11_c00494{left:37.432500px;}
.x36_c00494{left:42.255503px;}
.x58_c00494{left:47.956049px;}
.x6_c00494{left:49.680000px;}
.x32_c00494{left:52.542975px;}
.x2_c00494{left:54.270000px;}
.x37_c00494{left:56.036835px;}
.x70_c00494{left:61.010183px;}
.x4b_c00494{left:62.100000px;}
.x62_c00494{left:64.191810px;}
.x44_c00494{left:67.894995px;}
.x1d_c00494{left:73.372500px;}
.xc_c00494{left:75.439500px;}
.x12_c00494{left:78.750000px;}
.x3f_c00494{left:81.959137px;}
.x63_c00494{left:83.911725px;}
.x45_c00494{left:86.869702px;}
.x25_c00494{left:88.693642px;}
.x2a_c00494{left:91.354950px;}
.x65_c00494{left:99.826635px;}
.x71_c00494{left:103.043033px;}
.x53_c00494{left:108.273548px;}
.x7_c00494{left:109.890000px;}
.x2b_c00494{left:111.391642px;}
.x26_c00494{left:114.091672px;}
.x5d_c00494{left:117.103500px;}
.x3_c00494{left:120.150000px;}
.x1e_c00494{left:122.527500px;}
.x13_c00494{left:124.113000px;}
.x76_c00494{left:125.161238px;}
.x5e_c00494{left:127.906500px;}
.x19_c00494{left:129.996000px;}
.x38_c00494{left:132.187403px;}
.x54_c00494{left:133.655117px;}
.xd_c00494{left:137.034000px;}
.x33_c00494{left:140.572935px;}
.x3b_c00494{left:141.601478px;}
.x1f_c00494{left:143.013000px;}
.x50_c00494{left:144.187317px;}
.x59_c00494{left:146.736387px;}
.x4_c00494{left:152.280000px;}
.x1a_c00494{left:156.001500px;}
.x51_c00494{left:157.025448px;}
.x69_c00494{left:161.198963px;}
.x2c_c00494{left:165.604905px;}
.xe_c00494{left:166.950000px;}
.x64_c00494{left:169.769137px;}
.x4c_c00494{left:170.910000px;}
.x20_c00494{left:172.198500px;}
.x40_c00494{left:174.881243px;}
.x2d_c00494{left:179.167215px;}
.x55_c00494{left:180.367776px;}
.x5f_c00494{left:182.433000px;}
.x14_c00494{left:184.303500px;}
.x77_c00494{left:187.816050px;}
.x4d_c00494{left:189.159000px;}
.x39_c00494{left:192.608025px;}
.x60_c00494{left:196.221000px;}
.x3c_c00494{left:198.016478px;}
.x15_c00494{left:199.162500px;}
.x46_c00494{left:201.131993px;}
.x79_c00494{left:202.704810px;}
.x27_c00494{left:204.274072px;}
.x49_c00494{left:206.394195px;}
.x34_c00494{left:208.552995px;}
.x72_c00494{left:210.024023px;}
.x47_c00494{left:213.227813px;}
.xf_c00494{left:214.521000px;}
.x6d_c00494{left:215.729505px;}
.x8_c00494{left:217.620000px;}
.x2e_c00494{left:219.396622px;}
.x1b_c00494{left:220.789500px;}
.x16_c00494{left:222.598500px;}
.x73_c00494{left:224.367443px;}
.x41_c00494{left:227.000955px;}
.x56_c00494{left:230.050799px;}
.x48_c00494{left:231.080543px;}
.x21_c00494{left:234.835500px;}
.x4a_c00494{left:239.393175px;}
.x30_c00494{left:241.676573px;}
.x6c_c00494{left:242.705085px;}
.x9_c00494{left:245.970000px;}
.x3d_c00494{left:247.529977px;}
.x42_c00494{left:248.890118px;}
.x66_c00494{left:250.140885px;}
.x22_c00494{left:252.130500px;}
.x4e_c00494{left:253.687500px;}
.x52_c00494{left:255.043376px;}
.x6a_c00494{left:257.060018px;}
.x35_c00494{left:259.646813px;}
.x78_c00494{left:261.809880px;}
.x2f_c00494{left:263.946300px;}
.x74_c00494{left:266.221815px;}
.xa_c00494{left:267.570000px;}
.x5b_c00494{left:271.903893px;}
.x6b_c00494{left:273.802275px;}
.x10_c00494{left:276.346500px;}
.x3e_c00494{left:278.032478px;}
.x17_c00494{left:280.431000px;}
.x28_c00494{left:281.768730px;}
.x43_c00494{left:285.005078px;}
.xb_c00494{left:287.280000px;}
.x6e_c00494{left:288.879720px;}
.x61_c00494{left:290.467500px;}
.x57_c00494{left:291.885273px;}
.x4f_c00494{left:294.132000px;}
.x3a_c00494{left:295.275690px;}
.x67_c00494{left:300.453120px;}
.x29_c00494{left:302.561467px;}
.x75_c00494{left:304.021980px;}
.x23_c00494{left:305.056500px;}
.x18_c00494{left:309.042000px;}
.x6f_c00494{left:310.205753px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fsd_c00494{font-size:49.472231pt;}
.fs0_c00494{font-size:50.400000pt;}
.fs3_c00494{font-size:51.333333pt;}
.fs11_c00494{font-size:51.336439pt;}
.fsb_c00494{font-size:51.339108pt;}
.fs10_c00494{font-size:52.269829pt;}
.fs9_c00494{font-size:52.272546pt;}
.fs13_c00494{font-size:53.203219pt;}
.fsa_c00494{font-size:53.205985pt;}
.fs2_c00494{font-size:54.133333pt;}
.fsf_c00494{font-size:54.136608pt;}
.fs14_c00494{font-size:54.139423pt;}
.fse_c00494{font-size:55.066667pt;}
.fs15_c00494{font-size:56.006300pt;}
.fs16_c00494{font-size:57.873176pt;}
.fs12_c00494{font-size:58.803557pt;}
.fs6_c00494{font-size:58.806615pt;}
.fs4_c00494{font-size:59.733333pt;}
.fs7_c00494{font-size:59.740053pt;}
.fsc_c00494{font-size:60.673491pt;}
.fs8_c00494{font-size:62.540368pt;}
.fs5_c00494{font-size:64.400000pt;}
.fs1_c00494{font-size:71.866667pt;}
.y0_c00494{bottom:0.000000pt;}
.yd7_c00494{bottom:23.750847pt;}
.yd8_c00494{bottom:24.258587pt;}
.yd9_c00494{bottom:24.398140pt;}
.yda_c00494{bottom:25.045353pt;}
.ydb_c00494{bottom:25.203493pt;}
.ydc_c00494{bottom:25.384700pt;}
.ydd_c00494{bottom:25.972173pt;}
.yde_c00494{bottom:26.939740pt;}
.yd2_c00494{bottom:39.830007pt;}
.yd3_c00494{bottom:40.648367pt;}
.yd4_c00494{bottom:40.916520pt;}
.yd5_c00494{bottom:41.585213pt;}
.yd6_c00494{bottom:42.374420pt;}
.yc9_c00494{bottom:53.755733pt;}
.yca_c00494{bottom:54.001347pt;}
.ycb_c00494{bottom:54.408400pt;}
.ycc_c00494{bottom:55.155547pt;}
.ycd_c00494{bottom:56.015693pt;}
.yce_c00494{bottom:57.056733pt;}
.ycf_c00494{bottom:57.311993pt;}
.yd0_c00494{bottom:58.055427pt;}
.yd1_c00494{bottom:58.727467pt;}
.yc1_c00494{bottom:69.836720pt;}
.yc2_c00494{bottom:70.233880pt;}
.yc3_c00494{bottom:70.468767pt;}
.yc4_c00494{bottom:71.143447pt;}
.yc5_c00494{bottom:71.325453pt;}
.yc6_c00494{bottom:72.084247pt;}
.yc7_c00494{bottom:72.867427pt;}
.yc8_c00494{bottom:73.089107pt;}
.yb8_c00494{bottom:84.240247pt;}
.yb9_c00494{bottom:84.451153pt;}
.yba_c00494{bottom:85.449740pt;}
.ybb_c00494{bottom:85.833820pt;}
.ybc_c00494{bottom:86.489093pt;}
.ybd_c00494{bottom:86.927067pt;}
.ybe_c00494{bottom:87.303593pt;}
.ybf_c00494{bottom:88.473640pt;}
.yc0_c00494{bottom:88.815333pt;}
.yb2_c00494{bottom:99.839920pt;}
.yb3_c00494{bottom:100.126200pt;}
.yb4_c00494{bottom:101.038060pt;}
.yb5_c00494{bottom:102.182827pt;}
.yb6_c00494{bottom:103.336127pt;}
.yb7_c00494{bottom:104.174547pt;}
.yaa_c00494{bottom:116.599300pt;}
.ya9_c00494{bottom:116.599607pt;}
.yab_c00494{bottom:116.599660pt;}
.yac_c00494{bottom:116.600113pt;}
.yad_c00494{bottom:116.600607pt;}
.yae_c00494{bottom:116.600720pt;}
.yaf_c00494{bottom:116.601020pt;}
.yb0_c00494{bottom:116.601133pt;}
.yb1_c00494{bottom:116.601647pt;}
.ya0_c00494{bottom:130.800927pt;}
.ya1_c00494{bottom:131.486693pt;}
.ya2_c00494{bottom:131.864593pt;}
.ya3_c00494{bottom:132.148287pt;}
.ya4_c00494{bottom:132.908067pt;}
.ya5_c00494{bottom:133.131200pt;}
.ya6_c00494{bottom:134.002147pt;}
.ya7_c00494{bottom:134.405720pt;}
.ya8_c00494{bottom:134.718320pt;}
.y98_c00494{bottom:145.680707pt;}
.y99_c00494{bottom:145.881807pt;}
.y9a_c00494{bottom:146.286147pt;}
.y9b_c00494{bottom:146.583753pt;}
.y9c_c00494{bottom:147.453040pt;}
.y9d_c00494{bottom:147.881887pt;}
.y9e_c00494{bottom:148.436940pt;}
.y9f_c00494{bottom:149.126893pt;}
.y8f_c00494{bottom:160.561333pt;}
.y90_c00494{bottom:161.709613pt;}
.y91_c00494{bottom:161.853653pt;}
.y92_c00494{bottom:162.580673pt;}
.y93_c00494{bottom:162.764513pt;}
.y94_c00494{bottom:163.077673pt;}
.y95_c00494{bottom:163.351293pt;}
.y96_c00494{bottom:163.783453pt;}
.y97_c00494{bottom:164.021133pt;}
.y8a_c00494{bottom:176.950437pt;}
.y8b_c00494{bottom:176.950701pt;}
.y8c_c00494{bottom:176.950767pt;}
.y8d_c00494{bottom:176.951205pt;}
.y8e_c00494{bottom:176.951277pt;}
.y82_c00494{bottom:190.793748pt;}
.y83_c00494{bottom:191.074205pt;}
.y84_c00494{bottom:191.838383pt;}
.y85_c00494{bottom:192.214745pt;}
.y86_c00494{bottom:192.822703pt;}
.y87_c00494{bottom:193.144235pt;}
.y88_c00494{bottom:193.472527pt;}
.y89_c00494{bottom:194.036373pt;}
.y80_c00494{bottom:208.189876pt;}
.y81_c00494{bottom:208.190407pt;}
.y7f_c00494{bottom:208.190424pt;}
.y7e_c00494{bottom:208.190812pt;}
.y7c_c00494{bottom:208.191309pt;}
.y7d_c00494{bottom:208.191455pt;}
.y7a_c00494{bottom:208.191700pt;}
.y7b_c00494{bottom:208.191765pt;}
.y73_c00494{bottom:221.517092pt;}
.y74_c00494{bottom:221.802877pt;}
.y75_c00494{bottom:222.063439pt;}
.y76_c00494{bottom:222.940388pt;}
.y77_c00494{bottom:223.536289pt;}
.y78_c00494{bottom:223.985463pt;}
.y79_c00494{bottom:224.307751pt;}
.y72_c00494{bottom:238.301777pt;}
.y71_c00494{bottom:238.301928pt;}
.y6f_c00494{bottom:238.302067pt;}
.y70_c00494{bottom:238.302316pt;}
.y6e_c00494{bottom:238.302615pt;}
.y6d_c00494{bottom:238.302976pt;}
.y6c_c00494{bottom:238.303379pt;}
.y64_c00494{bottom:251.761333pt;}
.y65_c00494{bottom:252.157392pt;}
.y66_c00494{bottom:252.759048pt;}
.y67_c00494{bottom:253.092069pt;}
.y68_c00494{bottom:253.274215pt;}
.y69_c00494{bottom:253.723015pt;}
.y6a_c00494{bottom:253.905160pt;}
.y6b_c00494{bottom:254.300617pt;}
.y63_c00494{bottom:268.110667pt;}
.y1_c00494{bottom:283.654667pt;}
.y62_c00494{bottom:284.732000pt;}
.y5c_c00494{bottom:297.348447pt;}
.y5d_c00494{bottom:297.845287pt;}
.y5e_c00494{bottom:298.521413pt;}
.y5f_c00494{bottom:298.756740pt;}
.y60_c00494{bottom:299.141780pt;}
.y61_c00494{bottom:299.464407pt;}
.y54_c00494{bottom:311.751653pt;}
.y55_c00494{bottom:312.391853pt;}
.y56_c00494{bottom:312.662187pt;}
.y57_c00494{bottom:313.268300pt;}
.y58_c00494{bottom:314.287040pt;}
.y59_c00494{bottom:314.458987pt;}
.y5a_c00494{bottom:314.713027pt;}
.y5b_c00494{bottom:315.629620pt;}
.y4c_c00494{bottom:327.110173pt;}
.y4d_c00494{bottom:327.399100pt;}
.y4e_c00494{bottom:327.952167pt;}
.y4f_c00494{bottom:328.524207pt;}
.y50_c00494{bottom:329.273813pt;}
.y51_c00494{bottom:330.015420pt;}
.y52_c00494{bottom:330.327280pt;}
.y53_c00494{bottom:330.840820pt;}
.y45_c00494{bottom:342.231800pt;}
.y46_c00494{bottom:343.147060pt;}
.y47_c00494{bottom:343.812120pt;}
.y48_c00494{bottom:344.564320pt;}
.y49_c00494{bottom:344.848900pt;}
.y4a_c00494{bottom:345.224500pt;}
.y4b_c00494{bottom:345.631200pt;}
.y3c_c00494{bottom:357.114367pt;}
.y3d_c00494{bottom:357.304173pt;}
.y3e_c00494{bottom:357.438580pt;}
.y3f_c00494{bottom:357.982867pt;}
.y40_c00494{bottom:358.183193pt;}
.y41_c00494{bottom:358.774087pt;}
.y42_c00494{bottom:359.049407pt;}
.y43_c00494{bottom:359.587127pt;}
.y44_c00494{bottom:359.777573pt;}
.y34_c00494{bottom:371.757033pt;}
.y35_c00494{bottom:371.866653pt;}
.y36_c00494{bottom:372.083300pt;}
.y37_c00494{bottom:372.815133pt;}
.y38_c00494{bottom:373.022313pt;}
.y39_c00494{bottom:373.747340pt;}
.y3a_c00494{bottom:374.032580pt;}
.y3b_c00494{bottom:374.291227pt;}
.y2f_c00494{bottom:388.912487pt;}
.y30_c00494{bottom:388.912593pt;}
.y31_c00494{bottom:388.913087pt;}
.y32_c00494{bottom:388.913633pt;}
.y33_c00494{bottom:388.914127pt;}
.y27_c00494{bottom:402.718780pt;}
.y28_c00494{bottom:403.394387pt;}
.y29_c00494{bottom:403.590860pt;}
.y2a_c00494{bottom:404.120327pt;}
.y2b_c00494{bottom:404.253147pt;}
.y2c_c00494{bottom:404.646840pt;}
.y2d_c00494{bottom:405.082133pt;}
.y2e_c00494{bottom:405.519813pt;}
.y1f_c00494{bottom:417.839873pt;}
.y20_c00494{bottom:418.491640pt;}
.y21_c00494{bottom:418.739593pt;}
.y22_c00494{bottom:419.426200pt;}
.y23_c00494{bottom:419.621953pt;}
.y24_c00494{bottom:419.793267pt;}
.y25_c00494{bottom:420.379153pt;}
.y26_c00494{bottom:420.583040pt;}
.y17_c00494{bottom:432.002667pt;}
.y18_c00494{bottom:432.521227pt;}
.y19_c00494{bottom:433.176627pt;}
.y1a_c00494{bottom:433.449767pt;}
.y1b_c00494{bottom:433.838907pt;}
.y1c_c00494{bottom:434.674067pt;}
.y1d_c00494{bottom:434.904667pt;}
.y1e_c00494{bottom:435.610347pt;}
.y13_c00494{bottom:447.124000pt;}
.y14_c00494{bottom:448.444000pt;}
.y15_c00494{bottom:448.768000pt;}
.y16_c00494{bottom:449.574667pt;}
.ya_c00494{bottom:462.481333pt;}
.yb_c00494{bottom:462.653333pt;}
.yc_c00494{bottom:463.168000pt;}
.yd_c00494{bottom:463.732000pt;}
.ye_c00494{bottom:464.481333pt;}
.yf_c00494{bottom:464.666667pt;}
.y10_c00494{bottom:464.958667pt;}
.y11_c00494{bottom:465.678667pt;}
.y12_c00494{bottom:466.034667pt;}
.y4_c00494{bottom:477.601333pt;}
.y5_c00494{bottom:478.110667pt;}
.y6_c00494{bottom:478.713333pt;}
.y7_c00494{bottom:479.005333pt;}
.y8_c00494{bottom:479.470667pt;}
.y9_c00494{bottom:480.074667pt;}
.y3_c00494{bottom:494.273333pt;}
.y2_c00494{bottom:506.882667pt;}
.hf_c00494{height:49.472231pt;}
.h2_c00494{height:50.400000pt;}
.h5_c00494{height:51.333333pt;}
.h13_c00494{height:51.336439pt;}
.hd_c00494{height:51.339108pt;}
.h12_c00494{height:52.269829pt;}
.hb_c00494{height:52.272546pt;}
.h15_c00494{height:53.203219pt;}
.hc_c00494{height:53.205985pt;}
.h4_c00494{height:54.133333pt;}
.h11_c00494{height:54.136608pt;}
.h16_c00494{height:54.139423pt;}
.h10_c00494{height:55.066667pt;}
.h17_c00494{height:56.006300pt;}
.h18_c00494{height:57.873176pt;}
.h14_c00494{height:58.803557pt;}
.h8_c00494{height:58.806615pt;}
.h6_c00494{height:59.733333pt;}
.h9_c00494{height:59.740053pt;}
.he_c00494{height:60.673491pt;}
.ha_c00494{height:62.540368pt;}
.h7_c00494{height:64.400000pt;}
.h3_c00494{height:71.866667pt;}
.h0_c00494{height:549.066667pt;}
.h1_c00494{height:549.333333pt;}
.w0_c00494{width:319.200000pt;}
.w1_c00494{width:319.333333pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:15.360000pt;}
.x24_c00494{left:19.561900pt;}
.x5_c00494{left:20.640000pt;}
.x68_c00494{left:21.593940pt;}
.x5a_c00494{left:22.559180pt;}
.x5c_c00494{left:27.540000pt;}
.x31_c00494{left:28.705400pt;}
.x1c_c00494{left:30.649333pt;}
.x11_c00494{left:33.273333pt;}
.x36_c00494{left:37.560447pt;}
.x58_c00494{left:42.627599pt;}
.x6_c00494{left:44.160000pt;}
.x32_c00494{left:46.704867pt;}
.x2_c00494{left:48.240000pt;}
.x37_c00494{left:49.810520pt;}
.x70_c00494{left:54.231273pt;}
.x4b_c00494{left:55.200000pt;}
.x62_c00494{left:57.059387pt;}
.x44_c00494{left:60.351107pt;}
.x1d_c00494{left:65.220000pt;}
.xc_c00494{left:67.057333pt;}
.x12_c00494{left:70.000000pt;}
.x3f_c00494{left:72.852567pt;}
.x63_c00494{left:74.588200pt;}
.x45_c00494{left:77.217513pt;}
.x25_c00494{left:78.838793pt;}
.x2a_c00494{left:81.204400pt;}
.x65_c00494{left:88.734787pt;}
.x71_c00494{left:91.593807pt;}
.x53_c00494{left:96.243153pt;}
.x7_c00494{left:97.680000pt;}
.x2b_c00494{left:99.014793pt;}
.x26_c00494{left:101.414820pt;}
.x5d_c00494{left:104.092000pt;}
.x3_c00494{left:106.800000pt;}
.x1e_c00494{left:108.913333pt;}
.x13_c00494{left:110.322667pt;}
.x76_c00494{left:111.254433pt;}
.x5e_c00494{left:113.694667pt;}
.x19_c00494{left:115.552000pt;}
.x38_c00494{left:117.499913pt;}
.x54_c00494{left:118.804548pt;}
.xd_c00494{left:121.808000pt;}
.x33_c00494{left:124.953720pt;}
.x3b_c00494{left:125.867980pt;}
.x1f_c00494{left:127.122667pt;}
.x50_c00494{left:128.166504pt;}
.x59_c00494{left:130.432344pt;}
.x4_c00494{left:135.360000pt;}
.x1a_c00494{left:138.668000pt;}
.x51_c00494{left:139.578176pt;}
.x69_c00494{left:143.287967pt;}
.x2c_c00494{left:147.204360pt;}
.xe_c00494{left:148.400000pt;}
.x64_c00494{left:150.905900pt;}
.x4c_c00494{left:151.920000pt;}
.x20_c00494{left:153.065333pt;}
.x40_c00494{left:155.449993pt;}
.x2d_c00494{left:159.259747pt;}
.x55_c00494{left:160.326912pt;}
.x5f_c00494{left:162.162667pt;}
.x14_c00494{left:163.825333pt;}
.x77_c00494{left:166.947600pt;}
.x4d_c00494{left:168.141333pt;}
.x39_c00494{left:171.207133pt;}
.x60_c00494{left:174.418667pt;}
.x3c_c00494{left:176.014647pt;}
.x15_c00494{left:177.033333pt;}
.x46_c00494{left:178.783993pt;}
.x79_c00494{left:180.182053pt;}
.x27_c00494{left:181.576953pt;}
.x49_c00494{left:183.461507pt;}
.x34_c00494{left:185.380440pt;}
.x72_c00494{left:186.688020pt;}
.x47_c00494{left:189.535833pt;}
.xf_c00494{left:190.685333pt;}
.x6d_c00494{left:191.759560pt;}
.x8_c00494{left:193.440000pt;}
.x2e_c00494{left:195.019220pt;}
.x1b_c00494{left:196.257333pt;}
.x16_c00494{left:197.865333pt;}
.x73_c00494{left:199.437727pt;}
.x41_c00494{left:201.778627pt;}
.x56_c00494{left:204.489599pt;}
.x48_c00494{left:205.404927pt;}
.x21_c00494{left:208.742667pt;}
.x4a_c00494{left:212.793933pt;}
.x30_c00494{left:214.823620pt;}
.x6c_c00494{left:215.737853pt;}
.x9_c00494{left:218.640000pt;}
.x3d_c00494{left:220.026647pt;}
.x42_c00494{left:221.235660pt;}
.x66_c00494{left:222.347453pt;}
.x22_c00494{left:224.116000pt;}
.x4e_c00494{left:225.500000pt;}
.x52_c00494{left:226.705223pt;}
.x6a_c00494{left:228.497793pt;}
.x35_c00494{left:230.797167pt;}
.x78_c00494{left:232.719893pt;}
.x2f_c00494{left:234.618933pt;}
.x74_c00494{left:236.641613pt;}
.xa_c00494{left:237.840000pt;}
.x5b_c00494{left:241.692349pt;}
.x6b_c00494{left:243.379800pt;}
.x10_c00494{left:245.641333pt;}
.x3e_c00494{left:247.139980pt;}
.x17_c00494{left:249.272000pt;}
.x28_c00494{left:250.461093pt;}
.x43_c00494{left:253.337847pt;}
.xb_c00494{left:255.360000pt;}
.x6e_c00494{left:256.781973pt;}
.x61_c00494{left:258.193333pt;}
.x57_c00494{left:259.453576pt;}
.x4f_c00494{left:261.450667pt;}
.x3a_c00494{left:262.467280pt;}
.x67_c00494{left:267.069440pt;}
.x29_c00494{left:268.943527pt;}
.x75_c00494{left:270.241760pt;}
.x23_c00494{left:271.161333pt;}
.x18_c00494{left:274.704000pt;}
.x6f_c00494{left:275.738447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00495 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00495 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00495 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00495 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.045728,0.000823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.045728,0.000823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.045728,0.000823,-0.004499,0.249960,0,0);}
.m3_c00495{transform:matrix(0.063880,0.001150,-0.004499,0.249960,0,0);-ms-transform:matrix(0.063880,0.001150,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.063880,0.001150,-0.004499,0.249960,0,0);}
.m47_c00495{transform:matrix(0.142586,0.001996,-0.003500,0.249976,0,0);-ms-transform:matrix(0.142586,0.001996,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.142586,0.001996,-0.003500,0.249976,0,0);}
.mcf_c00495{transform:matrix(0.149245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149245,0.000000,0.000000,0.250000,0,0);}
.m45_c00495{transform:matrix(0.151985,0.002128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151985,0.002128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151985,0.002128,-0.003500,0.249976,0,0);}
.m5a_c00495{transform:matrix(0.155180,0.002173,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155180,0.002173,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155180,0.002173,-0.003500,0.249976,0,0);}
.mdc_c00495{transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156090,0.000000,0.000000,0.250000,0,0);}
.ma9_c00495{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{transform:matrix(0.160084,0.002882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160084,0.002882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160084,0.002882,-0.004499,0.249960,0,0);}
.m56_c00495{transform:matrix(0.160144,0.002242,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160144,0.002242,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160144,0.002242,-0.003500,0.249976,0,0);}
.m1_c00495{transform:matrix(0.163434,0.002942,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163434,0.002942,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163434,0.002942,-0.004499,0.249960,0,0);}
.m49_c00495{transform:matrix(0.164204,0.002299,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164204,0.002299,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164204,0.002299,-0.003500,0.249976,0,0);}
.mc7_c00495{transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168330,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.169033,0.002366,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169033,0.002366,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169033,0.002366,-0.003500,0.249976,0,0);}
.md0_c00495{transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169095,0.000000,0.000000,0.250000,0,0);}
.m57_c00495{transform:matrix(0.169323,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169323,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169323,0.002371,-0.003500,0.249976,0,0);}
.m48_c00495{transform:matrix(0.170623,0.002389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170623,0.002389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170623,0.002389,-0.003500,0.249976,0,0);}
.m78_c00495{transform:matrix(0.171583,0.002402,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171583,0.002402,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171583,0.002402,-0.003500,0.249976,0,0);}
.mb_c00495{transform:matrix(0.173057,0.003115,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173057,0.003115,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173057,0.003115,-0.004499,0.249960,0,0);}
.m99_c00495{transform:matrix(0.173303,0.002426,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173303,0.002426,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173303,0.002426,-0.003500,0.249976,0,0);}
.m15_c00495{transform:matrix(0.175971,0.003167,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175971,0.003167,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175971,0.003167,-0.004499,0.249960,0,0);}
.m8b_c00495{transform:matrix(0.176043,0.002465,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176043,0.002465,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176043,0.002465,-0.003500,0.249976,0,0);}
.m70_c00495{transform:matrix(0.176343,0.002469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176343,0.002469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176343,0.002469,-0.003500,0.249976,0,0);}
.me4_c00495{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m8c_c00495{transform:matrix(0.177438,0.002484,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177438,0.002484,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177438,0.002484,-0.003500,0.249976,0,0);}
.m5_c00495{transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177621,0.003197,-0.004499,0.249960,0,0);}
.mc3_c00495{transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178210,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178371,0.003211,-0.004499,0.249960,0,0);}
.m6f_c00495{transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179882,0.002518,-0.003500,0.249976,0,0);}
.m92_c00495{transform:matrix(0.179992,0.002520,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179992,0.002520,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179992,0.002520,-0.003500,0.249976,0,0);}
.m4b_c00495{transform:matrix(0.180847,0.002532,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180847,0.002532,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180847,0.002532,-0.003500,0.249976,0,0);}
.m93_c00495{transform:matrix(0.181442,0.002540,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181442,0.002540,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181442,0.002540,-0.003500,0.249976,0,0);}
.me9_c00495{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.181582,0.002542,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181582,0.002542,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181582,0.002542,-0.003500,0.249976,0,0);}
.m83_c00495{transform:matrix(0.182592,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182592,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182592,0.002556,-0.003500,0.249976,0,0);}
.m2e_c00495{transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183905,0.003310,-0.004499,0.249960,0,0);}
.md7_c00495{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);}
.m79_c00495{transform:matrix(0.185097,0.002591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185097,0.002591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185097,0.002591,-0.003500,0.249976,0,0);}
.m74_c00495{transform:matrix(0.185462,0.002596,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185462,0.002596,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185462,0.002596,-0.003500,0.249976,0,0);}
.mb9_c00495{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{transform:matrix(0.185822,0.002602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185822,0.002602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185822,0.002602,-0.003500,0.249976,0,0);}
.m8d_c00495{transform:matrix(0.186277,0.002608,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186277,0.002608,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186277,0.002608,-0.003500,0.249976,0,0);}
.m5f_c00495{transform:matrix(0.186732,0.002614,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186732,0.002614,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186732,0.002614,-0.003500,0.249976,0,0);}
.mdf_c00495{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00495{transform:matrix(0.187192,0.002621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187192,0.002621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187192,0.002621,-0.003500,0.249976,0,0);}
.m2a_c00495{transform:matrix(0.187505,0.003375,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187505,0.003375,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187505,0.003375,-0.004499,0.249960,0,0);}
.ma6_c00495{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.m72_c00495{transform:matrix(0.188402,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188402,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188402,0.002638,-0.003500,0.249976,0,0);}
.m23_c00495{transform:matrix(0.188449,0.003392,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188449,0.003392,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188449,0.003392,-0.004499,0.249960,0,0);}
.mb8_c00495{transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189065,0.000000,0.000000,0.250000,0,0);}
.m67_c00495{transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189916,0.002659,-0.003500,0.249976,0,0);}
.m28_c00495{transform:matrix(0.189944,0.003419,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189944,0.003419,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189944,0.003419,-0.004499,0.249960,0,0);}
.m9d_c00495{transform:matrix(0.191816,0.002685,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191816,0.002685,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191816,0.002685,-0.003500,0.249976,0,0);}
.md_c00495{transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);}
.m96_c00495{transform:matrix(0.192876,0.002700,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192876,0.002700,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192876,0.002700,-0.003500,0.249976,0,0);}
.m7b_c00495{transform:matrix(0.193266,0.002706,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193266,0.002706,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193266,0.002706,-0.003500,0.249976,0,0);}
.mcb_c00495{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m9c_c00495{transform:matrix(0.194546,0.002724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194546,0.002724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194546,0.002724,-0.003500,0.249976,0,0);}
.ma3_c00495{transform:matrix(0.194736,0.002726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194736,0.002726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194736,0.002726,-0.003500,0.249976,0,0);}
.m22_c00495{transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);}
.m7a_c00495{transform:matrix(0.195691,0.002740,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195691,0.002740,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195691,0.002740,-0.003500,0.249976,0,0);}
.m19_c00495{transform:matrix(0.195823,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195823,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195823,0.003525,-0.004499,0.249960,0,0);}
.m76_c00495{transform:matrix(0.196076,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196076,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196076,0.002745,-0.003500,0.249976,0,0);}
.mbc_c00495{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m73_c00495{transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);}
.m11_c00495{transform:matrix(0.196448,0.003536,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196448,0.003536,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196448,0.003536,-0.004499,0.249960,0,0);}
.mc2_c00495{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m7d_c00495{transform:matrix(0.197176,0.002760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197176,0.002760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197176,0.002760,-0.003500,0.249976,0,0);}
.mbb_c00495{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{transform:matrix(0.198231,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198231,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198231,0.002775,-0.003500,0.249976,0,0);}
.m84_c00495{transform:matrix(0.198591,0.002780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198591,0.002780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198591,0.002780,-0.003500,0.249976,0,0);}
.mda_c00495{transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{transform:matrix(0.199533,0.003592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199533,0.003592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199533,0.003592,-0.004499,0.249960,0,0);}
.mca_c00495{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.199973,0.003600,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199973,0.003600,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199973,0.003600,-0.004499,0.249960,0,0);}
.m4_c00495{transform:matrix(0.200043,0.003601,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200043,0.003601,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200043,0.003601,-0.004499,0.249960,0,0);}
.meb_c00495{transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200220,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.200303,0.003605,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200303,0.003605,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200303,0.003605,-0.004499,0.249960,0,0);}
.m5e_c00495{transform:matrix(0.200420,0.002806,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200420,0.002806,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200420,0.002806,-0.003500,0.249976,0,0);}
.m40_c00495{transform:matrix(0.200790,0.002811,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200790,0.002811,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200790,0.002811,-0.003500,0.249976,0,0);}
.m27_c00495{transform:matrix(0.201502,0.003627,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201502,0.003627,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201502,0.003627,-0.004499,0.249960,0,0);}
.ma8_c00495{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.mbd_c00495{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m38_c00495{transform:matrix(0.201705,0.002824,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201705,0.002824,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201705,0.002824,-0.003500,0.249976,0,0);}
.m12_c00495{transform:matrix(0.202342,0.003642,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202342,0.003642,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202342,0.003642,-0.004499,0.249960,0,0);}
.me0_c00495{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m95_c00495{transform:matrix(0.202970,0.002842,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202970,0.002842,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202970,0.002842,-0.003500,0.249976,0,0);}
.m30_c00495{transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203222,0.003658,-0.004499,0.249960,0,0);}
.m8a_c00495{transform:matrix(0.203295,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203295,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203295,0.002846,-0.003500,0.249976,0,0);}
.mdd_c00495{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m9a_c00495{transform:matrix(0.203890,0.002854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203890,0.002854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203890,0.002854,-0.003500,0.249976,0,0);}
.md8_c00495{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.204312,0.003678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204312,0.003678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204312,0.003678,-0.004499,0.249960,0,0);}
.m98_c00495{transform:matrix(0.204970,0.002870,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204970,0.002870,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204970,0.002870,-0.003500,0.249976,0,0);}
.me_c00495{transform:matrix(0.205017,0.003690,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205017,0.003690,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205017,0.003690,-0.004499,0.249960,0,0);}
.ma_c00495{transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205717,0.003703,-0.004499,0.249960,0,0);}
.m64_c00495{transform:matrix(0.205725,0.002880,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205725,0.002880,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205725,0.002880,-0.003500,0.249976,0,0);}
.mec_c00495{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.207246,0.003730,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207246,0.003730,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207246,0.003730,-0.004499,0.249960,0,0);}
.m75_c00495{transform:matrix(0.207565,0.002906,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207565,0.002906,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207565,0.002906,-0.003500,0.249976,0,0);}
.m8_c00495{transform:matrix(0.207651,0.003738,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207651,0.003738,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207651,0.003738,-0.004499,0.249960,0,0);}
.ma7_c00495{transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);}
.m5d_c00495{transform:matrix(0.207835,0.002910,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207835,0.002910,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207835,0.002910,-0.003500,0.249976,0,0);}
.m6d_c00495{transform:matrix(0.208465,0.002919,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208465,0.002919,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208465,0.002919,-0.003500,0.249976,0,0);}
.mc9_c00495{transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208660,0.000000,0.000000,0.250000,0,0);}
.ma2_c00495{transform:matrix(0.208905,0.002925,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208905,0.002925,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208905,0.002925,-0.003500,0.249976,0,0);}
.m71_c00495{transform:matrix(0.209085,0.002927,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209085,0.002927,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209085,0.002927,-0.003500,0.249976,0,0);}
.m36_c00495{transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);}
.mc6_c00495{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);}
.m2c_c00495{transform:matrix(0.211561,0.003808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211561,0.003808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211561,0.003808,-0.004499,0.249960,0,0);}
.m3f_c00495{transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211724,0.002964,-0.003500,0.249976,0,0);}
.mbf_c00495{transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);}
.m63_c00495{transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212059,0.002969,-0.003500,0.249976,0,0);}
.mf_c00495{transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212186,0.003819,-0.004499,0.249960,0,0);}
.m9f_c00495{transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);}
.m3e_c00495{transform:matrix(0.212424,0.002974,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212424,0.002974,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212424,0.002974,-0.003500,0.249976,0,0);}
.m39_c00495{transform:matrix(0.212454,0.002974,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212454,0.002974,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212454,0.002974,-0.003500,0.249976,0,0);}
.md1_c00495{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.mea_c00495{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212876,0.003832,-0.004499,0.249960,0,0);}
.m5b_c00495{transform:matrix(0.213004,0.002982,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213004,0.002982,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213004,0.002982,-0.003500,0.249976,0,0);}
.m6e_c00495{transform:matrix(0.213069,0.002983,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213069,0.002983,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213069,0.002983,-0.003500,0.249976,0,0);}
.m94_c00495{transform:matrix(0.213559,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213559,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213559,0.002990,-0.003500,0.249976,0,0);}
.m1e_c00495{transform:matrix(0.214155,0.003855,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214155,0.003855,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214155,0.003855,-0.004499,0.249960,0,0);}
.maa_c00495{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m5c_c00495{transform:matrix(0.216114,0.003026,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216114,0.003026,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216114,0.003026,-0.003500,0.249976,0,0);}
.me3_c00495{transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216560,0.000000,0.000000,0.250000,0,0);}
.m50_c00495{transform:matrix(0.216979,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216979,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216979,0.003038,-0.003500,0.249976,0,0);}
.mc4_c00495{transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00495{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.218594,0.003060,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218594,0.003060,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218594,0.003060,-0.003500,0.249976,0,0);}
.m65_c00495{transform:matrix(0.219219,0.003069,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219219,0.003069,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219219,0.003069,-0.003500,0.249976,0,0);}
.m9e_c00495{transform:matrix(0.219408,0.003072,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219408,0.003072,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219408,0.003072,-0.003500,0.249976,0,0);}
.mcc_c00495{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m81_c00495{transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);}
.m14_c00495{transform:matrix(0.219929,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219929,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219929,0.003959,-0.004499,0.249960,0,0);}
.m51_c00495{transform:matrix(0.220303,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220303,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220303,0.003084,-0.003500,0.249976,0,0);}
.mac_c00495{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.221464,0.003986,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221464,0.003986,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221464,0.003986,-0.004499,0.249960,0,0);}
.m3a_c00495{transform:matrix(0.221493,0.003101,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221493,0.003101,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221493,0.003101,-0.003500,0.249976,0,0);}
.m41_c00495{transform:matrix(0.222253,0.003112,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222253,0.003112,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222253,0.003112,-0.003500,0.249976,0,0);}
.m2d_c00495{transform:matrix(0.222284,0.004001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222284,0.004001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222284,0.004001,-0.004499,0.249960,0,0);}
.m52_c00495{transform:matrix(0.222293,0.003112,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222293,0.003112,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222293,0.003112,-0.003500,0.249976,0,0);}
.m86_c00495{transform:matrix(0.222723,0.003118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222723,0.003118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222723,0.003118,-0.003500,0.249976,0,0);}
.mab_c00495{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.mdb_c00495{transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223660,0.000000,0.000000,0.250000,0,0);}
.mc1_c00495{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m4d_c00495{transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224538,0.003144,-0.003500,0.249976,0,0);}
.m77_c00495{transform:matrix(0.224778,0.003147,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224778,0.003147,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224778,0.003147,-0.003500,0.249976,0,0);}
.m4c_c00495{transform:matrix(0.226583,0.003172,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226583,0.003172,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226583,0.003172,-0.003500,0.249976,0,0);}
.m35_c00495{transform:matrix(0.226593,0.003172,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226593,0.003172,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226593,0.003172,-0.003500,0.249976,0,0);}
.m89_c00495{transform:matrix(0.226848,0.003176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226848,0.003176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226848,0.003176,-0.003500,0.249976,0,0);}
.m59_c00495{transform:matrix(0.227043,0.003179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227043,0.003179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227043,0.003179,-0.003500,0.249976,0,0);}
.m3b_c00495{transform:matrix(0.227913,0.003191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227913,0.003191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227913,0.003191,-0.003500,0.249976,0,0);}
.m7e_c00495{transform:matrix(0.228383,0.003197,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228383,0.003197,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228383,0.003197,-0.003500,0.249976,0,0);}
.mc5_c00495{transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228885,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{transform:matrix(0.229483,0.003213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229483,0.003213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229483,0.003213,-0.003500,0.249976,0,0);}
.m18_c00495{transform:matrix(0.229513,0.004131,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229513,0.004131,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229513,0.004131,-0.004499,0.249960,0,0);}
.m37_c00495{transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);}
.me5_c00495{transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);}
.m9b_c00495{transform:matrix(0.231202,0.003237,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231202,0.003237,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231202,0.003237,-0.003500,0.249976,0,0);}
.m6b_c00495{transform:matrix(0.231547,0.003242,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231547,0.003242,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231547,0.003242,-0.003500,0.249976,0,0);}
.m34_c00495{transform:matrix(0.231787,0.003245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231787,0.003245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231787,0.003245,-0.003500,0.249976,0,0);}
.m29_c00495{transform:matrix(0.232137,0.004178,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232137,0.004178,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232137,0.004178,-0.004499,0.249960,0,0);}
.md9_c00495{transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);}
.m43_c00495{transform:matrix(0.232197,0.003251,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232197,0.003251,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232197,0.003251,-0.003500,0.249976,0,0);}
.m32_c00495{transform:matrix(0.232727,0.003258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232727,0.003258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232727,0.003258,-0.003500,0.249976,0,0);}
.m42_c00495{transform:matrix(0.232857,0.003260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232857,0.003260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232857,0.003260,-0.003500,0.249976,0,0);}
.m6c_c00495{transform:matrix(0.232967,0.003262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232967,0.003262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232967,0.003262,-0.003500,0.249976,0,0);}
.m1f_c00495{transform:matrix(0.233237,0.004198,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233237,0.004198,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233237,0.004198,-0.004499,0.249960,0,0);}
.md6_c00495{transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);}
.m61_c00495{transform:matrix(0.233407,0.003268,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233407,0.003268,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233407,0.003268,-0.003500,0.249976,0,0);}
.mcd_c00495{transform:matrix(0.233595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233595,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.234252,0.004217,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234252,0.004217,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234252,0.004217,-0.004499,0.249960,0,0);}
.md4_c00495{transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234255,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.234517,0.003283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234517,0.003283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234517,0.003283,-0.003500,0.249976,0,0);}
.m24_c00495{transform:matrix(0.235097,0.004232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235097,0.004232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235097,0.004232,-0.004499,0.249960,0,0);}
.m33_c00495{transform:matrix(0.235712,0.003300,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235712,0.003300,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235712,0.003300,-0.003500,0.249976,0,0);}
.m88_c00495{transform:matrix(0.236947,0.003317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236947,0.003317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236947,0.003317,-0.003500,0.249976,0,0);}
.mce_c00495{transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);}
.mb1_c00495{transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);}
.me1_c00495{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{transform:matrix(0.240221,0.003363,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240221,0.003363,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240221,0.003363,-0.003500,0.249976,0,0);}
.mb6_c00495{transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240435,0.000000,0.000000,0.250000,0,0);}
.me2_c00495{transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);}
.m69_c00495{transform:matrix(0.240876,0.003372,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240876,0.003372,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240876,0.003372,-0.003500,0.249976,0,0);}
.m4f_c00495{transform:matrix(0.241076,0.003375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241076,0.003375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241076,0.003375,-0.003500,0.249976,0,0);}
.me7_c00495{transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);}
.m53_c00495{transform:matrix(0.241746,0.003384,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241746,0.003384,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241746,0.003384,-0.003500,0.249976,0,0);}
.ma0_c00495{transform:matrix(0.242861,0.003400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242861,0.003400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242861,0.003400,-0.003500,0.249976,0,0);}
.m6a_c00495{transform:matrix(0.244961,0.003429,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244961,0.003429,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244961,0.003429,-0.003500,0.249976,0,0);}
.m7f_c00495{transform:matrix(0.250490,0.003507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250490,0.003507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250490,0.003507,-0.003500,0.249976,0,0);}
.m1d_c00495{transform:matrix(0.250649,0.004512,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250649,0.004512,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250649,0.004512,-0.004499,0.249960,0,0);}
.md3_c00495{transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.252895,0.003541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252895,0.003541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252895,0.003541,-0.003500,0.249976,0,0);}
.mba_c00495{transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{transform:matrix(0.254040,0.003557,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254040,0.003557,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254040,0.003557,-0.003500,0.249976,0,0);}
.m7c_c00495{transform:matrix(0.254095,0.003557,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254095,0.003557,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254095,0.003557,-0.003500,0.249976,0,0);}
.me6_c00495{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);}
.md5_c00495{transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);}
.m97_c00495{transform:matrix(0.257930,0.003611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257930,0.003611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257930,0.003611,-0.003500,0.249976,0,0);}
.m20_c00495{transform:matrix(0.258763,0.004658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258763,0.004658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258763,0.004658,-0.004499,0.249960,0,0);}
.m68_c00495{transform:matrix(0.259100,0.003627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259100,0.003627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259100,0.003627,-0.003500,0.249976,0,0);}
.m8f_c00495{transform:matrix(0.259905,0.003639,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259905,0.003639,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259905,0.003639,-0.003500,0.249976,0,0);}
.m44_c00495{transform:matrix(0.261499,0.003661,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261499,0.003661,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261499,0.003661,-0.003500,0.249976,0,0);}
.ma5_c00495{transform:matrix(0.261924,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261924,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261924,0.003667,-0.003500,0.249976,0,0);}
.mb4_c00495{transform:matrix(0.262070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262070,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.262552,0.004726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262552,0.004726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262552,0.004726,-0.004499,0.249960,0,0);}
.me8_c00495{transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);}
.mc8_c00495{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.ma4_c00495{transform:matrix(0.264114,0.003698,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264114,0.003698,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264114,0.003698,-0.003500,0.249976,0,0);}
.maf_c00495{transform:matrix(0.264335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264335,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{transform:matrix(0.264874,0.003708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264874,0.003708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264874,0.003708,-0.003500,0.249976,0,0);}
.m2_c00495{transform:matrix(0.266647,0.004800,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266647,0.004800,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266647,0.004800,-0.004499,0.249960,0,0);}
.mde_c00495{transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00495{transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);}
.mb5_c00495{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.275303,0.003854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275303,0.003854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275303,0.003854,-0.003500,0.249976,0,0);}
.m7_c00495{transform:matrix(0.275815,0.004965,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275815,0.004965,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275815,0.004965,-0.004499,0.249960,0,0);}
.mb2_c00495{transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);}
.mb3_c00495{transform:matrix(0.282075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282075,0.000000,0.000000,0.250000,0,0);}
.mb0_c00495{transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);}
.m62_c00495{transform:matrix(0.287392,0.004023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287392,0.004023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287392,0.004023,-0.003500,0.249976,0,0);}
.m1b_c00495{transform:matrix(0.290298,0.005225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290298,0.005225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290298,0.005225,-0.004499,0.249960,0,0);}
.md2_c00495{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m82_c00495{transform:matrix(0.300066,0.004201,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300066,0.004201,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300066,0.004201,-0.003500,0.249976,0,0);}
.m60_c00495{transform:matrix(0.304710,0.004266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304710,0.004266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304710,0.004266,-0.003500,0.249976,0,0);}
.m8e_c00495{transform:matrix(0.343711,0.004812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.343711,0.004812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.343711,0.004812,-0.003500,0.249976,0,0);}
.m91_c00495{transform:matrix(0.346496,0.004851,-0.003500,0.249976,0,0);-ms-transform:matrix(0.346496,0.004851,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.346496,0.004851,-0.003500,0.249976,0,0);}
.m1a_c00495{transform:matrix(0.359767,0.006476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.359767,0.006476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.359767,0.006476,-0.004499,0.249960,0,0);}
.mad_c00495{transform:matrix(0.407565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407565,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.412055,0.005769,-0.003500,0.249976,0,0);-ms-transform:matrix(0.412055,0.005769,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.412055,0.005769,-0.003500,0.249976,0,0);}
.mae_c00495{transform:matrix(0.431230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431230,0.000000,0.000000,0.250000,0,0);}
.m85_c00495{transform:matrix(0.648366,0.009077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.648366,0.009077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.648366,0.009077,-0.003500,0.249976,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:0.000000px;}
.fc0_c00495{color:transparent;}
.fs12_c00495{font-size:45.150000px;}
.fs10_c00495{font-size:53.555248px;}
.fsd_c00495{font-size:54.605351px;}
.fs16_c00495{font-size:55.650000px;}
.fsb_c00495{font-size:55.655453px;}
.fs15_c00495{font-size:57.750000px;}
.fs14_c00495{font-size:58.800000px;}
.fs7_c00495{font-size:58.805762px;}
.fs17_c00495{font-size:59.850000px;}
.fsc_c00495{font-size:59.855865px;}
.fs4_c00495{font-size:59.859695px;}
.fs9_c00495{font-size:60.905968px;}
.fs6_c00495{font-size:60.909865px;}
.fs11_c00495{font-size:61.950000px;}
.fs8_c00495{font-size:61.956071px;}
.fs13_c00495{font-size:63.000000px;}
.fs2_c00495{font-size:63.010205px;}
.fsf_c00495{font-size:64.056277px;}
.fs3_c00495{font-size:64.060375px;}
.fse_c00495{font-size:66.156482px;}
.fs5_c00495{font-size:67.210886px;}
.fs1_c00495{font-size:68.261056px;}
.fsa_c00495{font-size:74.557306px;}
.fs0_c00495{font-size:75.612246px;}
.y0_c00495{bottom:0.000000px;}
.ybc_c00495{bottom:25.398000px;}
.ybb_c00495{bottom:26.074500px;}
.yba_c00495{bottom:26.383500px;}
.yb9_c00495{bottom:26.637000px;}
.yb8_c00495{bottom:27.255000px;}
.yb7_c00495{bottom:28.083000px;}
.yb6_c00495{bottom:44.907000px;}
.yb5_c00495{bottom:61.647000px;}
.yb4_c00495{bottom:78.505500px;}
.yb3_c00495{bottom:95.368500px;}
.yb2_c00495{bottom:108.777000px;}
.yb1_c00495{bottom:127.977000px;}
.yb0_c00495{bottom:128.277000px;}
.yaf_c00495{bottom:128.472000px;}
.yae_c00495{bottom:129.069000px;}
.yad_c00495{bottom:129.346500px;}
.yac_c00495{bottom:130.224000px;}
.yab_c00495{bottom:130.680000px;}
.yaa_c00495{bottom:146.641500px;}
.ya9_c00495{bottom:161.967000px;}
.ya8_c00495{bottom:178.997349px;}
.ya7_c00495{bottom:180.127368px;}
.ya6_c00495{bottom:180.499620px;}
.ya5_c00495{bottom:180.897123px;}
.ya4_c00495{bottom:181.793658px;}
.ya3_c00495{bottom:182.449560px;}
.ya2_c00495{bottom:182.777190px;}
.ya1_c00495{bottom:195.833172px;}
.ya0_c00495{bottom:196.468374px;}
.y9f_c00495{bottom:197.634411px;}
.y9e_c00495{bottom:197.884269px;}
.y9d_c00495{bottom:198.493980px;}
.y9c_c00495{bottom:198.964626px;}
.y9b_c00495{bottom:199.790379px;}
.y9a_c00495{bottom:213.577278px;}
.y99_c00495{bottom:214.158705px;}
.y98_c00495{bottom:215.478534px;}
.y97_c00495{bottom:216.873585px;}
.y96_c00495{bottom:217.342515px;}
.y95_c00495{bottom:229.889307px;}
.y94_c00495{bottom:230.086791px;}
.y93_c00495{bottom:230.842077px;}
.y92_c00495{bottom:231.118626px;}
.y91_c00495{bottom:231.525984px;}
.y90_c00495{bottom:232.565799px;}
.y8f_c00495{bottom:232.875780px;}
.y8e_c00495{bottom:233.363505px;}
.y8d_c00495{bottom:233.812548px;}
.y8c_c00495{bottom:247.408419px;}
.y8b_c00495{bottom:248.055069px;}
.y8a_c00495{bottom:248.342508px;}
.y89_c00495{bottom:248.996025px;}
.y88_c00495{bottom:249.985191px;}
.y87_c00495{bottom:250.262349px;}
.y86_c00495{bottom:250.823943px;}
.y85_c00495{bottom:264.157548px;}
.y84_c00495{bottom:264.606657px;}
.y83_c00495{bottom:265.274340px;}
.y82_c00495{bottom:265.747863px;}
.y81_c00495{bottom:266.499144px;}
.y80_c00495{bottom:266.737533px;}
.y7f_c00495{bottom:267.566163px;}
.y7e_c00495{bottom:281.674305px;}
.y7d_c00495{bottom:281.976801px;}
.y7c_c00495{bottom:282.748275px;}
.y7b_c00495{bottom:283.050141px;}
.y7a_c00495{bottom:284.013411px;}
.y79_c00495{bottom:284.848677px;}
.y78_c00495{bottom:298.246713px;}
.y77_c00495{bottom:299.097087px;}
.y76_c00495{bottom:299.879358px;}
.y75_c00495{bottom:300.181044px;}
.y74_c00495{bottom:300.473196px;}
.y73_c00495{bottom:300.838974px;}
.y72_c00495{bottom:301.070583px;}
.y71_c00495{bottom:301.860624px;}
.y70_c00495{bottom:314.620746px;}
.y6f_c00495{bottom:315.626289px;}
.y6e_c00495{bottom:316.775199px;}
.y6d_c00495{bottom:317.028753px;}
.y6c_c00495{bottom:318.333000px;}
.y6b_c00495{bottom:332.009763px;}
.y6a_c00495{bottom:332.720103px;}
.y69_c00495{bottom:333.282288px;}
.y68_c00495{bottom:333.587439px;}
.y67_c00495{bottom:334.583445px;}
.y66_c00495{bottom:335.011680px;}
.y65_c00495{bottom:335.871195px;}
.y64_c00495{bottom:349.118991px;}
.y63_c00495{bottom:349.638729px;}
.y62_c00495{bottom:349.758438px;}
.y61_c00495{bottom:350.737869px;}
.y60_c00495{bottom:351.349236px;}
.y5f_c00495{bottom:351.724335px;}
.y5e_c00495{bottom:352.469661px;}
.y5d_c00495{bottom:352.640373px;}
.y5c_c00495{bottom:352.883571px;}
.y5b_c00495{bottom:366.763923px;}
.y5a_c00495{bottom:367.865490px;}
.y59_c00495{bottom:368.022792px;}
.y58_c00495{bottom:368.532879px;}
.y57_c00495{bottom:368.876592px;}
.y56_c00495{bottom:369.466275px;}
.y55_c00495{bottom:369.893553px;}
.y54_c00495{bottom:383.302728px;}
.y53_c00495{bottom:383.642406px;}
.y52_c00495{bottom:384.416928px;}
.y51_c00495{bottom:385.285461px;}
.y50_c00495{bottom:386.423880px;}
.y4f_c00495{bottom:386.758404px;}
.y4e_c00495{bottom:387.446883px;}
.y4d_c00495{bottom:399.754983px;}
.y4c_c00495{bottom:400.904103px;}
.y4b_c00495{bottom:401.217864px;}
.y4a_c00495{bottom:402.170760px;}
.y49_c00495{bottom:402.457158px;}
.y48_c00495{bottom:402.646095px;}
.y47_c00495{bottom:403.107696px;}
.y46_c00495{bottom:417.027174px;}
.y45_c00495{bottom:417.338418px;}
.y44_c00495{bottom:418.059594px;}
.y43_c00495{bottom:419.330019px;}
.y42_c00495{bottom:419.624832px;}
.y41_c00495{bottom:420.492696px;}
.y40_c00495{bottom:421.200129px;}
.y3f_c00495{bottom:433.936086px;}
.y3e_c00495{bottom:434.169402px;}
.y3d_c00495{bottom:434.890158px;}
.y3c_c00495{bottom:435.790305px;}
.y3b_c00495{bottom:436.916712px;}
.y3a_c00495{bottom:437.225076px;}
.y39_c00495{bottom:437.941947px;}
.y38_c00495{bottom:451.363719px;}
.y37_c00495{bottom:451.734180px;}
.y36_c00495{bottom:452.762298px;}
.y35_c00495{bottom:453.080007px;}
.y34_c00495{bottom:453.817359px;}
.y33_c00495{bottom:454.683000px;}
.y32_c00495{bottom:467.713551px;}
.y31_c00495{bottom:468.362124px;}
.y30_c00495{bottom:468.726132px;}
.y2f_c00495{bottom:469.600203px;}
.y2e_c00495{bottom:469.880070px;}
.y2d_c00495{bottom:470.584170px;}
.y2c_c00495{bottom:470.978616px;}
.y2b_c00495{bottom:471.339399px;}
.y2a_c00495{bottom:471.946521px;}
.y29_c00495{bottom:484.673427px;}
.y28_c00495{bottom:485.263461px;}
.y27_c00495{bottom:485.502279px;}
.y26_c00495{bottom:485.773161px;}
.y25_c00495{bottom:486.277812px;}
.y24_c00495{bottom:487.060362px;}
.y23_c00495{bottom:488.148624px;}
.y22_c00495{bottom:501.533940px;}
.y21_c00495{bottom:502.473987px;}
.y20_c00495{bottom:502.740639px;}
.y1f_c00495{bottom:502.930506px;}
.y1e_c00495{bottom:503.924448px;}
.y1d_c00495{bottom:504.220065px;}
.y1c_c00495{bottom:504.968760px;}
.y1b_c00495{bottom:505.701231px;}
.y1a_c00495{bottom:518.916918px;}
.y19_c00495{bottom:519.137139px;}
.y18_c00495{bottom:519.722424px;}
.y17_c00495{bottom:520.417056px;}
.y16_c00495{bottom:520.645047px;}
.y15_c00495{bottom:521.150436px;}
.y14_c00495{bottom:521.902434px;}
.y13_c00495{bottom:536.291376px;}
.y12_c00495{bottom:536.505555px;}
.y11_c00495{bottom:537.047148px;}
.y10_c00495{bottom:537.279987px;}
.yf_c00495{bottom:537.941562px;}
.ye_c00495{bottom:538.245483px;}
.yd_c00495{bottom:538.634088px;}
.yc_c00495{bottom:539.185491px;}
.yb_c00495{bottom:552.624618px;}
.ya_c00495{bottom:552.904431px;}
.y9_c00495{bottom:553.249368px;}
.y8_c00495{bottom:554.224548px;}
.y7_c00495{bottom:555.472914px;}
.y6_c00495{bottom:555.881559px;}
.y5_c00495{bottom:556.740987px;}
.y4_c00495{bottom:564.560691px;}
.y3_c00495{bottom:565.930914px;}
.y2_c00495{bottom:567.422988px;}
.y1_c00495{bottom:567.870000px;}
.h14_c00495{height:45.150000px;}
.h12_c00495{height:53.555248px;}
.hf_c00495{height:54.605351px;}
.h18_c00495{height:55.650000px;}
.hd_c00495{height:55.655453px;}
.h17_c00495{height:57.750000px;}
.h16_c00495{height:58.800000px;}
.h9_c00495{height:58.805762px;}
.h19_c00495{height:59.850000px;}
.he_c00495{height:59.855865px;}
.h6_c00495{height:59.859695px;}
.hb_c00495{height:60.905968px;}
.h8_c00495{height:60.909865px;}
.h13_c00495{height:61.950000px;}
.ha_c00495{height:61.956071px;}
.h15_c00495{height:63.000000px;}
.h4_c00495{height:63.010205px;}
.h11_c00495{height:64.056277px;}
.h5_c00495{height:64.060375px;}
.h10_c00495{height:66.156482px;}
.h7_c00495{height:67.210886px;}
.h3_c00495{height:68.261056px;}
.hc_c00495{height:74.557306px;}
.h2_c00495{height:75.612246px;}
.h0_c00495{height:617.700000px;}
.h1_c00495{height:618.000000px;}
.w0_c00495{width:359.100000px;}
.w1_c00495{width:359.250000px;}
.x0_c00495{left:0.000000px;}
.x76_c00495{left:33.480000px;}
.x6e_c00495{left:34.722000px;}
.x5f_c00495{left:36.558630px;}
.x53_c00495{left:37.920798px;}
.x48_c00495{left:39.246372px;}
.x33_c00495{left:40.660020px;}
.x1f_c00495{left:42.217323px;}
.x5_c00495{left:43.348452px;}
.x2d_c00495{left:47.353500px;}
.x4d_c00495{left:53.298000px;}
.x42_c00495{left:58.507869px;}
.x71_c00495{left:59.670000px;}
.x69_c00495{left:63.450000px;}
.x78_c00495{left:67.770000px;}
.x5b_c00495{left:69.504336px;}
.x43_c00495{left:71.666058px;}
.x38_c00495{left:73.337718px;}
.x3c_c00495{left:80.273193px;}
.x26_c00495{left:82.690464px;}
.x34_c00495{left:84.868281px;}
.x39_c00495{left:86.833218px;}
.xc_c00495{left:88.392723px;}
.x18_c00495{left:91.333896px;}
.x4f_c00495{left:94.880022px;}
.x49_c00495{left:96.568074px;}
.x6_c00495{left:100.597530px;}
.x54_c00495{left:102.190701px;}
.x5c_c00495{left:104.341836px;}
.x27_c00495{left:106.735260px;}
.x7c_c00495{left:107.851500px;}
.x2e_c00495{left:109.185000px;}
.x13_c00495{left:111.149490px;}
.x6a_c00495{left:113.670000px;}
.x62_c00495{left:117.063078px;}
.x3f_c00495{left:118.088307px;}
.xd_c00495{left:120.818733px;}
.x72_c00495{left:123.930000px;}
.x20_c00495{left:125.933856px;}
.x7_c00495{left:127.801488px;}
.x44_c00495{left:128.975856px;}
.x28_c00495{left:132.983664px;}
.x50_c00495{left:137.550522px;}
.x35_c00495{left:139.142769px;}
.x19_c00495{left:141.264096px;}
.x73_c00495{left:143.100000px;}
.x40_c00495{left:144.568185px;}
.xe_c00495{left:146.205987px;}
.x1_c00495{left:152.305500px;}
.x63_c00495{left:155.148507px;}
.x14_c00495{left:157.065768px;}
.x51_c00495{left:158.418522px;}
.x1a_c00495{left:161.021676px;}
.x4e_c00495{left:164.569500px;}
.x3d_c00495{left:166.944060px;}
.x6f_c00495{left:168.103500px;}
.x60_c00495{left:169.700130px;}
.x64_c00495{left:170.745066px;}
.x6b_c00495{left:173.610000px;}
.x3a_c00495{left:175.354218px;}
.x2_c00495{left:177.139500px;}
.x58_c00495{left:178.314471px;}
.x29_c00495{left:179.936202px;}
.x79_c00495{left:181.710000px;}
.x2f_c00495{left:184.546500px;}
.x21_c00495{left:186.164283px;}
.x66_c00495{left:187.565022px;}
.x4a_c00495{left:191.548251px;}
.x6c_c00495{left:194.130000px;}
.x41_c00495{left:195.882399px;}
.x2a_c00495{left:198.568701px;}
.xf_c00495{left:201.299427px;}
.x7a_c00495{left:203.310000px;}
.x45_c00495{left:204.795906px;}
.x8_c00495{left:210.992970px;}
.x67_c00495{left:212.332665px;}
.x56_c00495{left:214.526919px;}
.x3e_c00495{left:218.051418px;}
.x10_c00495{left:220.737033px;}
.x75_c00495{left:222.210000px;}
.x22_c00495{left:225.037293px;}
.x1b_c00495{left:227.244240px;}
.x59_c00495{left:228.530664px;}
.x5d_c00495{left:229.852836px;}
.x52_c00495{left:235.844022px;}
.x36_c00495{left:236.907018px;}
.x1c_c00495{left:239.876415px;}
.x15_c00495{left:240.999852px;}
.x65_c00495{left:243.638529px;}
.x30_c00495{left:244.818150px;}
.x23_c00495{left:245.838156px;}
.x4b_c00495{left:249.321432px;}
.x5a_c00495{left:250.669479px;}
.x70_c00495{left:255.585000px;}
.x1d_c00495{left:257.691387px;}
.x55_c00495{left:258.807885px;}
.x3_c00495{left:260.032500px;}
.x7b_c00495{left:261.630000px;}
.x24_c00495{left:264.190803px;}
.x11_c00495{left:265.830393px;}
.x6d_c00495{left:268.110000px;}
.x9_c00495{left:276.006480px;}
.x74_c00495{left:277.830000px;}
.x3b_c00495{left:279.845718px;}
.x2b_c00495{left:281.188683px;}
.x12_c00495{left:283.647810px;}
.x77_c00495{left:286.200000px;}
.x68_c00495{left:287.690115px;}
.x46_c00495{left:289.307082px;}
.x31_c00495{left:292.871478px;}
.x16_c00495{left:294.189048px;}
.x4c_c00495{left:296.630760px;}
.xa_c00495{left:299.004222px;}
.x57_c00495{left:300.406116px;}
.x37_c00495{left:301.435212px;}
.x5e_c00495{left:303.555336px;}
.x61_c00495{left:305.504130px;}
.x32_c00495{left:308.465268px;}
.x25_c00495{left:309.557880px;}
.x17_c00495{left:314.176059px;}
.xb_c00495{left:317.633721px;}
.x1e_c00495{left:320.336262px;}
.x2c_c00495{left:324.389505px;}
.x47_c00495{left:329.324649px;}
.x4_c00495{left:336.156000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs12_c00495{font-size:40.133333pt;}
.fs10_c00495{font-size:47.604665pt;}
.fsd_c00495{font-size:48.538089pt;}
.fs16_c00495{font-size:49.466667pt;}
.fsb_c00495{font-size:49.471514pt;}
.fs15_c00495{font-size:51.333333pt;}
.fs14_c00495{font-size:52.266667pt;}
.fs7_c00495{font-size:52.271789pt;}
.fs17_c00495{font-size:53.200000pt;}
.fsc_c00495{font-size:53.205213pt;}
.fs4_c00495{font-size:53.208618pt;}
.fs9_c00495{font-size:54.138638pt;}
.fs6_c00495{font-size:54.142102pt;}
.fs11_c00495{font-size:55.066667pt;}
.fs8_c00495{font-size:55.072063pt;}
.fs13_c00495{font-size:56.000000pt;}
.fs2_c00495{font-size:56.009071pt;}
.fsf_c00495{font-size:56.938913pt;}
.fs3_c00495{font-size:56.942556pt;}
.fse_c00495{font-size:58.805762pt;}
.fs5_c00495{font-size:59.743009pt;}
.fs1_c00495{font-size:60.676494pt;}
.fsa_c00495{font-size:66.273160pt;}
.fs0_c00495{font-size:67.210886pt;}
.y0_c00495{bottom:0.000000pt;}
.ybc_c00495{bottom:22.576000pt;}
.ybb_c00495{bottom:23.177333pt;}
.yba_c00495{bottom:23.452000pt;}
.yb9_c00495{bottom:23.677333pt;}
.yb8_c00495{bottom:24.226667pt;}
.yb7_c00495{bottom:24.962667pt;}
.yb6_c00495{bottom:39.917333pt;}
.yb5_c00495{bottom:54.797333pt;}
.yb4_c00495{bottom:69.782667pt;}
.yb3_c00495{bottom:84.772000pt;}
.yb2_c00495{bottom:96.690667pt;}
.yb1_c00495{bottom:113.757333pt;}
.yb0_c00495{bottom:114.024000pt;}
.yaf_c00495{bottom:114.197333pt;}
.yae_c00495{bottom:114.728000pt;}
.yad_c00495{bottom:114.974667pt;}
.yac_c00495{bottom:115.754667pt;}
.yab_c00495{bottom:116.160000pt;}
.yaa_c00495{bottom:130.348000pt;}
.ya9_c00495{bottom:143.970667pt;}
.ya8_c00495{bottom:159.108755pt;}
.ya7_c00495{bottom:160.113216pt;}
.ya6_c00495{bottom:160.444107pt;}
.ya5_c00495{bottom:160.797443pt;}
.ya4_c00495{bottom:161.594363pt;}
.ya3_c00495{bottom:162.177387pt;}
.ya2_c00495{bottom:162.468613pt;}
.ya1_c00495{bottom:174.073931pt;}
.ya0_c00495{bottom:174.638555pt;}
.y9f_c00495{bottom:175.675032pt;}
.y9e_c00495{bottom:175.897128pt;}
.y9d_c00495{bottom:176.439093pt;}
.y9c_c00495{bottom:176.857445pt;}
.y9b_c00495{bottom:177.591448pt;}
.y9a_c00495{bottom:189.846469pt;}
.y99_c00495{bottom:190.363293pt;}
.y98_c00495{bottom:191.536475pt;}
.y97_c00495{bottom:192.776520pt;}
.y96_c00495{bottom:193.193347pt;}
.y95_c00495{bottom:204.346051pt;}
.y94_c00495{bottom:204.521592pt;}
.y93_c00495{bottom:205.192957pt;}
.y92_c00495{bottom:205.438779pt;}
.y91_c00495{bottom:205.800875pt;}
.y90_c00495{bottom:206.725155pt;}
.y8f_c00495{bottom:207.000693pt;}
.y8e_c00495{bottom:207.434227pt;}
.y8d_c00495{bottom:207.833376pt;}
.y8c_c00495{bottom:219.918595pt;}
.y8b_c00495{bottom:220.493395pt;}
.y8a_c00495{bottom:220.748896pt;}
.y89_c00495{bottom:221.329800pt;}
.y88_c00495{bottom:222.209059pt;}
.y87_c00495{bottom:222.455421pt;}
.y86_c00495{bottom:222.954616pt;}
.y85_c00495{bottom:234.806709pt;}
.y84_c00495{bottom:235.205917pt;}
.y83_c00495{bottom:235.799413pt;}
.y82_c00495{bottom:236.220323pt;}
.y81_c00495{bottom:236.888128pt;}
.y80_c00495{bottom:237.100029pt;}
.y7f_c00495{bottom:237.836589pt;}
.y7e_c00495{bottom:250.377160pt;}
.y7d_c00495{bottom:250.646045pt;}
.y7c_c00495{bottom:251.331800pt;}
.y7b_c00495{bottom:251.600125pt;}
.y7a_c00495{bottom:252.456365pt;}
.y79_c00495{bottom:253.198824pt;}
.y78_c00495{bottom:265.108189pt;}
.y77_c00495{bottom:265.864077pt;}
.y76_c00495{bottom:266.559429pt;}
.y75_c00495{bottom:266.827595pt;}
.y74_c00495{bottom:267.087285pt;}
.y73_c00495{bottom:267.412421pt;}
.y72_c00495{bottom:267.618296pt;}
.y71_c00495{bottom:268.320555pt;}
.y70_c00495{bottom:279.662885pt;}
.y6f_c00495{bottom:280.556701pt;}
.y6e_c00495{bottom:281.577955pt;}
.y6d_c00495{bottom:281.803336pt;}
.y6c_c00495{bottom:282.962667pt;}
.y6b_c00495{bottom:295.119789pt;}
.y6a_c00495{bottom:295.751203pt;}
.y69_c00495{bottom:296.250923pt;}
.y68_c00495{bottom:296.522168pt;}
.y67_c00495{bottom:297.407507pt;}
.y66_c00495{bottom:297.788160pt;}
.y65_c00495{bottom:298.552173pt;}
.y64_c00495{bottom:310.327992pt;}
.y63_c00495{bottom:310.789981pt;}
.y62_c00495{bottom:310.896389pt;}
.y61_c00495{bottom:311.766995pt;}
.y60_c00495{bottom:312.310432pt;}
.y5f_c00495{bottom:312.643853pt;}
.y5e_c00495{bottom:313.306365pt;}
.y5d_c00495{bottom:313.458109pt;}
.y5c_c00495{bottom:313.674285pt;}
.y5b_c00495{bottom:326.012376pt;}
.y5a_c00495{bottom:326.991547pt;}
.y59_c00495{bottom:327.131371pt;}
.y58_c00495{bottom:327.584781pt;}
.y57_c00495{bottom:327.890304pt;}
.y56_c00495{bottom:328.414467pt;}
.y55_c00495{bottom:328.794269pt;}
.y54_c00495{bottom:340.713536pt;}
.y53_c00495{bottom:341.015472pt;}
.y52_c00495{bottom:341.703936pt;}
.y51_c00495{bottom:342.475965pt;}
.y50_c00495{bottom:343.487893pt;}
.y4f_c00495{bottom:343.785248pt;}
.y4e_c00495{bottom:344.397229pt;}
.y4d_c00495{bottom:355.337763pt;}
.y4c_c00495{bottom:356.359203pt;}
.y4b_c00495{bottom:356.638101pt;}
.y4a_c00495{bottom:357.485120pt;}
.y49_c00495{bottom:357.739696pt;}
.y48_c00495{bottom:357.907640pt;}
.y47_c00495{bottom:358.317952pt;}
.y46_c00495{bottom:370.690821pt;}
.y45_c00495{bottom:370.967483pt;}
.y44_c00495{bottom:371.608528pt;}
.y43_c00495{bottom:372.737795pt;}
.y42_c00495{bottom:372.999851pt;}
.y41_c00495{bottom:373.771285pt;}
.y40_c00495{bottom:374.400115pt;}
.y3f_c00495{bottom:385.720965pt;}
.y3e_c00495{bottom:385.928357pt;}
.y3d_c00495{bottom:386.569029pt;}
.y3c_c00495{bottom:387.369160pt;}
.y3b_c00495{bottom:388.370411pt;}
.y3a_c00495{bottom:388.644512pt;}
.y39_c00495{bottom:389.281731pt;}
.y38_c00495{bottom:401.212195pt;}
.y37_c00495{bottom:401.541493pt;}
.y36_c00495{bottom:402.455376pt;}
.y35_c00495{bottom:402.737784pt;}
.y34_c00495{bottom:403.393208pt;}
.y33_c00495{bottom:404.162667pt;}
.y32_c00495{bottom:415.745379pt;}
.y31_c00495{bottom:416.321888pt;}
.y30_c00495{bottom:416.645451pt;}
.y2f_c00495{bottom:417.422403pt;}
.y2e_c00495{bottom:417.671173pt;}
.y2d_c00495{bottom:418.297040pt;}
.y2c_c00495{bottom:418.647659pt;}
.y2b_c00495{bottom:418.968355pt;}
.y2a_c00495{bottom:419.508019pt;}
.y29_c00495{bottom:430.820824pt;}
.y28_c00495{bottom:431.345299pt;}
.y27_c00495{bottom:431.557581pt;}
.y26_c00495{bottom:431.798365pt;}
.y25_c00495{bottom:432.246944pt;}
.y24_c00495{bottom:432.942544pt;}
.y23_c00495{bottom:433.909888pt;}
.y22_c00495{bottom:445.807947pt;}
.y21_c00495{bottom:446.643544pt;}
.y20_c00495{bottom:446.880568pt;}
.y1f_c00495{bottom:447.049339pt;}
.y1e_c00495{bottom:447.932843pt;}
.y1d_c00495{bottom:448.195613pt;}
.y1c_c00495{bottom:448.861120pt;}
.y1b_c00495{bottom:449.512205pt;}
.y1a_c00495{bottom:461.259483pt;}
.y19_c00495{bottom:461.455235pt;}
.y18_c00495{bottom:461.975488pt;}
.y17_c00495{bottom:462.592939pt;}
.y16_c00495{bottom:462.795597pt;}
.y15_c00495{bottom:463.244832pt;}
.y14_c00495{bottom:463.913275pt;}
.y13_c00495{bottom:476.703445pt;}
.y12_c00495{bottom:476.893827pt;}
.y11_c00495{bottom:477.375243pt;}
.y10_c00495{bottom:477.582211pt;}
.yf_c00495{bottom:478.170277pt;}
.ye_c00495{bottom:478.440429pt;}
.yd_c00495{bottom:478.785856pt;}
.yc_c00495{bottom:479.275992pt;}
.yb_c00495{bottom:491.221883pt;}
.ya_c00495{bottom:491.470605pt;}
.y9_c00495{bottom:491.777216pt;}
.y8_c00495{bottom:492.644043pt;}
.y7_c00495{bottom:493.753701pt;}
.y6_c00495{bottom:494.116941pt;}
.y5_c00495{bottom:494.880877pt;}
.y4_c00495{bottom:501.831725pt;}
.y3_c00495{bottom:503.049701pt;}
.y2_c00495{bottom:504.375989pt;}
.y1_c00495{bottom:504.773333pt;}
.h14_c00495{height:40.133333pt;}
.h12_c00495{height:47.604665pt;}
.hf_c00495{height:48.538089pt;}
.h18_c00495{height:49.466667pt;}
.hd_c00495{height:49.471514pt;}
.h17_c00495{height:51.333333pt;}
.h16_c00495{height:52.266667pt;}
.h9_c00495{height:52.271789pt;}
.h19_c00495{height:53.200000pt;}
.he_c00495{height:53.205213pt;}
.h6_c00495{height:53.208618pt;}
.hb_c00495{height:54.138638pt;}
.h8_c00495{height:54.142102pt;}
.h13_c00495{height:55.066667pt;}
.ha_c00495{height:55.072063pt;}
.h15_c00495{height:56.000000pt;}
.h4_c00495{height:56.009071pt;}
.h11_c00495{height:56.938913pt;}
.h5_c00495{height:56.942556pt;}
.h10_c00495{height:58.805762pt;}
.h7_c00495{height:59.743009pt;}
.h3_c00495{height:60.676494pt;}
.hc_c00495{height:66.273160pt;}
.h2_c00495{height:67.210886pt;}
.h0_c00495{height:549.066667pt;}
.h1_c00495{height:549.333333pt;}
.w0_c00495{width:319.200000pt;}
.w1_c00495{width:319.333333pt;}
.x0_c00495{left:0.000000pt;}
.x76_c00495{left:29.760000pt;}
.x6e_c00495{left:30.864000pt;}
.x5f_c00495{left:32.496560pt;}
.x53_c00495{left:33.707376pt;}
.x48_c00495{left:34.885664pt;}
.x33_c00495{left:36.142240pt;}
.x1f_c00495{left:37.526509pt;}
.x5_c00495{left:38.531957pt;}
.x2d_c00495{left:42.092000pt;}
.x4d_c00495{left:47.376000pt;}
.x42_c00495{left:52.006995pt;}
.x71_c00495{left:53.040000pt;}
.x69_c00495{left:56.400000pt;}
.x78_c00495{left:60.240000pt;}
.x5b_c00495{left:61.781632pt;}
.x43_c00495{left:63.703163pt;}
.x38_c00495{left:65.189083pt;}
.x3c_c00495{left:71.353949pt;}
.x26_c00495{left:73.502635pt;}
.x34_c00495{left:75.438472pt;}
.x39_c00495{left:77.185083pt;}
.xc_c00495{left:78.571309pt;}
.x18_c00495{left:81.185685pt;}
.x4f_c00495{left:84.337797pt;}
.x49_c00495{left:85.838288pt;}
.x6_c00495{left:89.420027pt;}
.x54_c00495{left:90.836179pt;}
.x5c_c00495{left:92.748299pt;}
.x27_c00495{left:94.875787pt;}
.x7c_c00495{left:95.868000pt;}
.x2e_c00495{left:97.053333pt;}
.x13_c00495{left:98.799547pt;}
.x6a_c00495{left:101.040000pt;}
.x62_c00495{left:104.056069pt;}
.x3f_c00495{left:104.967384pt;}
.xd_c00495{left:107.394429pt;}
.x72_c00495{left:110.160000pt;}
.x20_c00495{left:111.941205pt;}
.x7_c00495{left:113.601323pt;}
.x44_c00495{left:114.645205pt;}
.x28_c00495{left:118.207701pt;}
.x50_c00495{left:122.267131pt;}
.x35_c00495{left:123.682461pt;}
.x19_c00495{left:125.568085pt;}
.x73_c00495{left:127.200000pt;}
.x40_c00495{left:128.505053pt;}
.xe_c00495{left:129.960877pt;}
.x1_c00495{left:135.382667pt;}
.x63_c00495{left:137.909784pt;}
.x14_c00495{left:139.614016pt;}
.x51_c00495{left:140.816464pt;}
.x1a_c00495{left:143.130379pt;}
.x4e_c00495{left:146.284000pt;}
.x3d_c00495{left:148.394720pt;}
.x6f_c00495{left:149.425333pt;}
.x60_c00495{left:150.844560pt;}
.x64_c00495{left:151.773392pt;}
.x6b_c00495{left:154.320000pt;}
.x3a_c00495{left:155.870416pt;}
.x2_c00495{left:157.457333pt;}
.x58_c00495{left:158.501752pt;}
.x29_c00495{left:159.943291pt;}
.x79_c00495{left:161.520000pt;}
.x2f_c00495{left:164.041333pt;}
.x21_c00495{left:165.479363pt;}
.x66_c00495{left:166.724464pt;}
.x4a_c00495{left:170.265112pt;}
.x6c_c00495{left:172.560000pt;}
.x41_c00495{left:174.117688pt;}
.x2a_c00495{left:176.505512pt;}
.xf_c00495{left:178.932824pt;}
.x7a_c00495{left:180.720000pt;}
.x45_c00495{left:182.040805pt;}
.x8_c00495{left:187.549307pt;}
.x67_c00495{left:188.740147pt;}
.x56_c00495{left:190.690595pt;}
.x3e_c00495{left:193.823483pt;}
.x10_c00495{left:196.210696pt;}
.x75_c00495{left:197.520000pt;}
.x22_c00495{left:200.033149pt;}
.x1b_c00495{left:201.994880pt;}
.x59_c00495{left:203.138368pt;}
.x5d_c00495{left:204.313632pt;}
.x52_c00495{left:209.639131pt;}
.x36_c00495{left:210.584016pt;}
.x1c_c00495{left:213.223480pt;}
.x15_c00495{left:214.222091pt;}
.x65_c00495{left:216.567581pt;}
.x30_c00495{left:217.616133pt;}
.x23_c00495{left:218.522805pt;}
.x4b_c00495{left:221.619051pt;}
.x5a_c00495{left:222.817315pt;}
.x70_c00495{left:227.186667pt;}
.x1d_c00495{left:229.059011pt;}
.x55_c00495{left:230.051453pt;}
.x3_c00495{left:231.140000pt;}
.x7b_c00495{left:232.560000pt;}
.x24_c00495{left:234.836269pt;}
.x11_c00495{left:236.293683pt;}
.x6d_c00495{left:238.320000pt;}
.x9_c00495{left:245.339093pt;}
.x74_c00495{left:246.960000pt;}
.x3b_c00495{left:248.751749pt;}
.x2b_c00495{left:249.945496pt;}
.x12_c00495{left:252.131387pt;}
.x77_c00495{left:254.400000pt;}
.x68_c00495{left:255.724547pt;}
.x46_c00495{left:257.161851pt;}
.x31_c00495{left:260.330203pt;}
.x16_c00495{left:261.501376pt;}
.x4c_c00495{left:263.671787pt;}
.xa_c00495{left:265.781531pt;}
.x57_c00495{left:267.027659pt;}
.x37_c00495{left:267.942411pt;}
.x5e_c00495{left:269.826965pt;}
.x61_c00495{left:271.559227pt;}
.x32_c00495{left:274.191349pt;}
.x25_c00495{left:275.162560pt;}
.x17_c00495{left:279.267608pt;}
.xb_c00495{left:282.341085pt;}
.x1e_c00495{left:284.743344pt;}
.x2c_c00495{left:288.346227pt;}
.x47_c00495{left:292.733021pt;}
.x4_c00495{left:298.805333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00496 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00496 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00496 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00496 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_2c032c3220b341a30234f7d9.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00496{transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019140,0.000000,0.000000,0.250000,0,0);}
.m86_c00496{transform:matrix(0.049149,-0.000786,0.003999,0.249968,0,0);-ms-transform:matrix(0.049149,-0.000786,0.003999,0.249968,0,0);-webkit-transform:matrix(0.049149,-0.000786,0.003999,0.249968,0,0);}
.m2e_c00496{transform:matrix(0.105020,-0.001785,0.004249,0.249964,0,0);-ms-transform:matrix(0.105020,-0.001785,0.004249,0.249964,0,0);-webkit-transform:matrix(0.105020,-0.001785,0.004249,0.249964,0,0);}
.mdb_c00496{transform:matrix(0.134068,-0.002145,0.003999,0.249968,0,0);-ms-transform:matrix(0.134068,-0.002145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.134068,-0.002145,0.003999,0.249968,0,0);}
.m15_c00496{transform:matrix(0.139530,-0.002372,0.004249,0.249964,0,0);-ms-transform:matrix(0.139530,-0.002372,0.004249,0.249964,0,0);-webkit-transform:matrix(0.139530,-0.002372,0.004249,0.249964,0,0);}
.md3_c00496{transform:matrix(0.142672,-0.002283,0.003999,0.249968,0,0);-ms-transform:matrix(0.142672,-0.002283,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142672,-0.002283,0.003999,0.249968,0,0);}
.mf_c00496{transform:matrix(0.144670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144670,0.000000,0.000000,0.250000,0,0);}
.m6c_c00496{transform:matrix(0.147461,-0.002359,0.003999,0.249968,0,0);-ms-transform:matrix(0.147461,-0.002359,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147461,-0.002359,0.003999,0.249968,0,0);}
.m24_c00496{transform:matrix(0.149318,-0.002538,0.004249,0.249964,0,0);-ms-transform:matrix(0.149318,-0.002538,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149318,-0.002538,0.004249,0.249964,0,0);}
.m44_c00496{transform:matrix(0.150193,-0.002553,0.004249,0.249964,0,0);-ms-transform:matrix(0.150193,-0.002553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150193,-0.002553,0.004249,0.249964,0,0);}
.m89_c00496{transform:matrix(0.152216,-0.002435,0.003999,0.249968,0,0);-ms-transform:matrix(0.152216,-0.002435,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152216,-0.002435,0.003999,0.249968,0,0);}
.m1e_c00496{transform:matrix(0.152308,-0.002589,0.004249,0.249964,0,0);-ms-transform:matrix(0.152308,-0.002589,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152308,-0.002589,0.004249,0.249964,0,0);}
.m64_c00496{transform:matrix(0.152375,-0.002438,0.003999,0.249968,0,0);-ms-transform:matrix(0.152375,-0.002438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152375,-0.002438,0.003999,0.249968,0,0);}
.m30_c00496{transform:matrix(0.152963,-0.002600,0.004249,0.249964,0,0);-ms-transform:matrix(0.152963,-0.002600,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152963,-0.002600,0.004249,0.249964,0,0);}
.mcb_c00496{transform:matrix(0.153425,-0.002455,0.003999,0.249968,0,0);-ms-transform:matrix(0.153425,-0.002455,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153425,-0.002455,0.003999,0.249968,0,0);}
.md9_c00496{transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);-ms-transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);}
.mbd_c00496{transform:matrix(0.156805,-0.002509,0.003999,0.249968,0,0);-ms-transform:matrix(0.156805,-0.002509,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156805,-0.002509,0.003999,0.249968,0,0);}
.m32_c00496{transform:matrix(0.157042,-0.002670,0.004249,0.249964,0,0);-ms-transform:matrix(0.157042,-0.002670,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157042,-0.002670,0.004249,0.249964,0,0);}
.m43_c00496{transform:matrix(0.158222,-0.002690,0.004249,0.249964,0,0);-ms-transform:matrix(0.158222,-0.002690,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158222,-0.002690,0.004249,0.249964,0,0);}
.m8b_c00496{transform:matrix(0.158240,-0.002532,0.003999,0.249968,0,0);-ms-transform:matrix(0.158240,-0.002532,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158240,-0.002532,0.003999,0.249968,0,0);}
.m8_c00496{transform:matrix(0.158835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158835,0.000000,0.000000,0.250000,0,0);}
.mb0_c00496{transform:matrix(0.159865,-0.002558,0.003999,0.249968,0,0);-ms-transform:matrix(0.159865,-0.002558,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159865,-0.002558,0.003999,0.249968,0,0);}
.m1c_c00496{transform:matrix(0.160167,-0.002723,0.004249,0.249964,0,0);-ms-transform:matrix(0.160167,-0.002723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160167,-0.002723,0.004249,0.249964,0,0);}
.m0_c00496{transform:matrix(0.160405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160405,0.000000,0.000000,0.250000,0,0);}
.mcf_c00496{transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);-ms-transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161009,-0.002576,0.003999,0.249968,0,0);}
.mb_c00496{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.mc1_c00496{transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);-ms-transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161539,-0.002585,0.003999,0.249968,0,0);}
.m4e_c00496{transform:matrix(0.161627,-0.002748,0.004249,0.249964,0,0);-ms-transform:matrix(0.161627,-0.002748,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161627,-0.002748,0.004249,0.249964,0,0);}
.m5_c00496{transform:matrix(0.161890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161890,0.000000,0.000000,0.250000,0,0);}
.m56_c00496{transform:matrix(0.162794,-0.002605,0.003999,0.249968,0,0);-ms-transform:matrix(0.162794,-0.002605,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162794,-0.002605,0.003999,0.249968,0,0);}
.mb6_c00496{transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);-ms-transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162829,-0.002605,0.003999,0.249968,0,0);}
.md1_c00496{transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);-ms-transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164134,-0.002626,0.003999,0.249968,0,0);}
.m8e_c00496{transform:matrix(0.165334,-0.002645,0.003999,0.249968,0,0);-ms-transform:matrix(0.165334,-0.002645,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165334,-0.002645,0.003999,0.249968,0,0);}
.mb2_c00496{transform:matrix(0.165849,-0.002654,0.003999,0.249968,0,0);-ms-transform:matrix(0.165849,-0.002654,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165849,-0.002654,0.003999,0.249968,0,0);}
.m53_c00496{transform:matrix(0.166234,-0.002660,0.003999,0.249968,0,0);-ms-transform:matrix(0.166234,-0.002660,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166234,-0.002660,0.003999,0.249968,0,0);}
.m75_c00496{transform:matrix(0.166269,-0.002660,0.003999,0.249968,0,0);-ms-transform:matrix(0.166269,-0.002660,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166269,-0.002660,0.003999,0.249968,0,0);}
.m36_c00496{transform:matrix(0.167841,-0.002853,0.004249,0.249964,0,0);-ms-transform:matrix(0.167841,-0.002853,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167841,-0.002853,0.004249,0.249964,0,0);}
.mda_c00496{transform:matrix(0.167909,-0.002687,0.003999,0.249968,0,0);-ms-transform:matrix(0.167909,-0.002687,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167909,-0.002687,0.003999,0.249968,0,0);}
.m6a_c00496{transform:matrix(0.168233,-0.002692,0.003999,0.249968,0,0);-ms-transform:matrix(0.168233,-0.002692,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168233,-0.002692,0.003999,0.249968,0,0);}
.ma4_c00496{transform:matrix(0.168793,-0.002701,0.003999,0.249968,0,0);-ms-transform:matrix(0.168793,-0.002701,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168793,-0.002701,0.003999,0.249968,0,0);}
.mbb_c00496{transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);-ms-transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);}
.mb1_c00496{transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);-ms-transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169628,-0.002714,0.003999,0.249968,0,0);}
.m33_c00496{transform:matrix(0.169935,-0.002889,0.004249,0.249964,0,0);-ms-transform:matrix(0.169935,-0.002889,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169935,-0.002889,0.004249,0.249964,0,0);}
.md8_c00496{transform:matrix(0.170638,-0.002730,0.003999,0.249968,0,0);-ms-transform:matrix(0.170638,-0.002730,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170638,-0.002730,0.003999,0.249968,0,0);}
.m96_c00496{transform:matrix(0.171028,-0.002736,0.003999,0.249968,0,0);-ms-transform:matrix(0.171028,-0.002736,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171028,-0.002736,0.003999,0.249968,0,0);}
.m20_c00496{transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);-ms-transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171060,-0.002908,0.004249,0.249964,0,0);}
.m62_c00496{transform:matrix(0.171528,-0.002744,0.003999,0.249968,0,0);-ms-transform:matrix(0.171528,-0.002744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171528,-0.002744,0.003999,0.249968,0,0);}
.m21_c00496{transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);-ms-transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171630,-0.002918,0.004249,0.249964,0,0);}
.m54_c00496{transform:matrix(0.172008,-0.002752,0.003999,0.249968,0,0);-ms-transform:matrix(0.172008,-0.002752,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172008,-0.002752,0.003999,0.249968,0,0);}
.m41_c00496{transform:matrix(0.172330,-0.002930,0.004249,0.249964,0,0);-ms-transform:matrix(0.172330,-0.002930,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172330,-0.002930,0.004249,0.249964,0,0);}
.mb9_c00496{transform:matrix(0.172548,-0.002761,0.003999,0.249968,0,0);-ms-transform:matrix(0.172548,-0.002761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172548,-0.002761,0.003999,0.249968,0,0);}
.m4_c00496{transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172655,0.000000,0.000000,0.250000,0,0);}
.m78_c00496{transform:matrix(0.172728,-0.002764,0.003999,0.249968,0,0);-ms-transform:matrix(0.172728,-0.002764,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172728,-0.002764,0.003999,0.249968,0,0);}
.m2_c00496{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m73_c00496{transform:matrix(0.173533,-0.002777,0.003999,0.249968,0,0);-ms-transform:matrix(0.173533,-0.002777,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173533,-0.002777,0.003999,0.249968,0,0);}
.ma7_c00496{transform:matrix(0.174258,-0.002788,0.003999,0.249968,0,0);-ms-transform:matrix(0.174258,-0.002788,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174258,-0.002788,0.003999,0.249968,0,0);}
.m16_c00496{transform:matrix(0.174340,-0.002964,0.004249,0.249964,0,0);-ms-transform:matrix(0.174340,-0.002964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174340,-0.002964,0.004249,0.249964,0,0);}
.m65_c00496{transform:matrix(0.174523,-0.002792,0.003999,0.249968,0,0);-ms-transform:matrix(0.174523,-0.002792,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174523,-0.002792,0.003999,0.249968,0,0);}
.m61_c00496{transform:matrix(0.174653,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174653,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174653,-0.002794,0.003999,0.249968,0,0);}
.m7e_c00496{transform:matrix(0.174788,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174788,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174788,-0.002797,0.003999,0.249968,0,0);}
.m92_c00496{transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);-ms-transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174868,-0.002798,0.003999,0.249968,0,0);}
.m6_c00496{transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);}
.m47_c00496{transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);-ms-transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175315,-0.002980,0.004249,0.249964,0,0);}
.ma3_c00496{transform:matrix(0.175338,-0.002805,0.003999,0.249968,0,0);-ms-transform:matrix(0.175338,-0.002805,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175338,-0.002805,0.003999,0.249968,0,0);}
.m35_c00496{transform:matrix(0.175575,-0.002985,0.004249,0.249964,0,0);-ms-transform:matrix(0.175575,-0.002985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175575,-0.002985,0.004249,0.249964,0,0);}
.maf_c00496{transform:matrix(0.175778,-0.002812,0.003999,0.249968,0,0);-ms-transform:matrix(0.175778,-0.002812,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175778,-0.002812,0.003999,0.249968,0,0);}
.m72_c00496{transform:matrix(0.175832,-0.002813,0.003999,0.249968,0,0);-ms-transform:matrix(0.175832,-0.002813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175832,-0.002813,0.003999,0.249968,0,0);}
.m9f_c00496{transform:matrix(0.176292,-0.002821,0.003999,0.249968,0,0);-ms-transform:matrix(0.176292,-0.002821,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176292,-0.002821,0.003999,0.249968,0,0);}
.m9_c00496{transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176385,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.176852,-0.002830,0.003999,0.249968,0,0);-ms-transform:matrix(0.176852,-0.002830,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176852,-0.002830,0.003999,0.249968,0,0);}
.mb3_c00496{transform:matrix(0.176907,-0.002831,0.003999,0.249968,0,0);-ms-transform:matrix(0.176907,-0.002831,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176907,-0.002831,0.003999,0.249968,0,0);}
.mcc_c00496{transform:matrix(0.177202,-0.002835,0.003999,0.249968,0,0);-ms-transform:matrix(0.177202,-0.002835,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177202,-0.002835,0.003999,0.249968,0,0);}
.m2f_c00496{transform:matrix(0.177769,-0.003022,0.004249,0.249964,0,0);-ms-transform:matrix(0.177769,-0.003022,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177769,-0.003022,0.004249,0.249964,0,0);}
.mc7_c00496{transform:matrix(0.178377,-0.002854,0.003999,0.249968,0,0);-ms-transform:matrix(0.178377,-0.002854,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178377,-0.002854,0.003999,0.249968,0,0);}
.m12_c00496{transform:matrix(0.178914,-0.003042,0.004249,0.249964,0,0);-ms-transform:matrix(0.178914,-0.003042,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178914,-0.003042,0.004249,0.249964,0,0);}
.mc2_c00496{transform:matrix(0.179437,-0.002871,0.003999,0.249968,0,0);-ms-transform:matrix(0.179437,-0.002871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179437,-0.002871,0.003999,0.249968,0,0);}
.mb8_c00496{transform:matrix(0.179702,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179702,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179702,-0.002875,0.003999,0.249968,0,0);}
.md2_c00496{transform:matrix(0.179707,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179707,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179707,-0.002875,0.003999,0.249968,0,0);}
.m4c_c00496{transform:matrix(0.180204,-0.003063,0.004249,0.249964,0,0);-ms-transform:matrix(0.180204,-0.003063,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180204,-0.003063,0.004249,0.249964,0,0);}
.m34_c00496{transform:matrix(0.180559,-0.003070,0.004249,0.249964,0,0);-ms-transform:matrix(0.180559,-0.003070,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180559,-0.003070,0.004249,0.249964,0,0);}
.m49_c00496{transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);-ms-transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180879,-0.003075,0.004249,0.249964,0,0);}
.mca_c00496{transform:matrix(0.182142,-0.002914,0.003999,0.249968,0,0);-ms-transform:matrix(0.182142,-0.002914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182142,-0.002914,0.003999,0.249968,0,0);}
.m95_c00496{transform:matrix(0.182152,-0.002914,0.003999,0.249968,0,0);-ms-transform:matrix(0.182152,-0.002914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182152,-0.002914,0.003999,0.249968,0,0);}
.mb4_c00496{transform:matrix(0.182257,-0.002916,0.003999,0.249968,0,0);-ms-transform:matrix(0.182257,-0.002916,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182257,-0.002916,0.003999,0.249968,0,0);}
.m5a_c00496{transform:matrix(0.182437,-0.002919,0.003999,0.249968,0,0);-ms-transform:matrix(0.182437,-0.002919,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182437,-0.002919,0.003999,0.249968,0,0);}
.m7c_c00496{transform:matrix(0.182462,-0.002919,0.003999,0.249968,0,0);-ms-transform:matrix(0.182462,-0.002919,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182462,-0.002919,0.003999,0.249968,0,0);}
.m19_c00496{transform:matrix(0.182629,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182629,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182629,-0.003105,0.004249,0.249964,0,0);}
.m68_c00496{transform:matrix(0.183222,-0.002932,0.003999,0.249968,0,0);-ms-transform:matrix(0.183222,-0.002932,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183222,-0.002932,0.003999,0.249968,0,0);}
.m2d_c00496{transform:matrix(0.183743,-0.003124,0.004249,0.249964,0,0);-ms-transform:matrix(0.183743,-0.003124,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183743,-0.003124,0.004249,0.249964,0,0);}
.m45_c00496{transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);-ms-transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184173,-0.003131,0.004249,0.249964,0,0);}
.m6f_c00496{transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);-ms-transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184286,-0.002949,0.003999,0.249968,0,0);}
.mce_c00496{transform:matrix(0.184501,-0.002952,0.003999,0.249968,0,0);-ms-transform:matrix(0.184501,-0.002952,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184501,-0.002952,0.003999,0.249968,0,0);}
.m7_c00496{transform:matrix(0.184980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184980,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.185583,-0.003155,0.004249,0.249964,0,0);-ms-transform:matrix(0.185583,-0.003155,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185583,-0.003155,0.004249,0.249964,0,0);}
.m99_c00496{transform:matrix(0.186216,-0.002979,0.003999,0.249968,0,0);-ms-transform:matrix(0.186216,-0.002979,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186216,-0.002979,0.003999,0.249968,0,0);}
.md4_c00496{transform:matrix(0.186601,-0.002986,0.003999,0.249968,0,0);-ms-transform:matrix(0.186601,-0.002986,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186601,-0.002986,0.003999,0.249968,0,0);}
.m60_c00496{transform:matrix(0.186736,-0.002988,0.003999,0.249968,0,0);-ms-transform:matrix(0.186736,-0.002988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186736,-0.002988,0.003999,0.249968,0,0);}
.ma_c00496{transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186810,0.000000,0.000000,0.250000,0,0);}
.m74_c00496{transform:matrix(0.186856,-0.002990,0.003999,0.249968,0,0);-ms-transform:matrix(0.186856,-0.002990,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186856,-0.002990,0.003999,0.249968,0,0);}
.md5_c00496{transform:matrix(0.187101,-0.002994,0.003999,0.249968,0,0);-ms-transform:matrix(0.187101,-0.002994,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187101,-0.002994,0.003999,0.249968,0,0);}
.m4f_c00496{transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);-ms-transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187438,-0.003186,0.004249,0.249964,0,0);}
.mc5_c00496{transform:matrix(0.187636,-0.003002,0.003999,0.249968,0,0);-ms-transform:matrix(0.187636,-0.003002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187636,-0.003002,0.003999,0.249968,0,0);}
.m2b_c00496{transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);-ms-transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187883,-0.003194,0.004249,0.249964,0,0);}
.mc0_c00496{transform:matrix(0.188411,-0.003015,0.003999,0.249968,0,0);-ms-transform:matrix(0.188411,-0.003015,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188411,-0.003015,0.003999,0.249968,0,0);}
.m4d_c00496{transform:matrix(0.189603,-0.003223,0.004249,0.249964,0,0);-ms-transform:matrix(0.189603,-0.003223,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189603,-0.003223,0.004249,0.249964,0,0);}
.m80_c00496{transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);-ms-transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189876,-0.003038,0.003999,0.249968,0,0);}
.m79_c00496{transform:matrix(0.189961,-0.003039,0.003999,0.249968,0,0);-ms-transform:matrix(0.189961,-0.003039,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189961,-0.003039,0.003999,0.249968,0,0);}
.m8c_c00496{transform:matrix(0.189976,-0.003040,0.003999,0.249968,0,0);-ms-transform:matrix(0.189976,-0.003040,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189976,-0.003040,0.003999,0.249968,0,0);}
.ma9_c00496{transform:matrix(0.190116,-0.003042,0.003999,0.249968,0,0);-ms-transform:matrix(0.190116,-0.003042,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190116,-0.003042,0.003999,0.249968,0,0);}
.m7b_c00496{transform:matrix(0.190261,-0.003044,0.003999,0.249968,0,0);-ms-transform:matrix(0.190261,-0.003044,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190261,-0.003044,0.003999,0.249968,0,0);}
.m8a_c00496{transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-ms-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190936,-0.003055,0.003999,0.249968,0,0);}
.m4b_c00496{transform:matrix(0.191112,-0.003249,0.004249,0.249964,0,0);-ms-transform:matrix(0.191112,-0.003249,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191112,-0.003249,0.004249,0.249964,0,0);}
.m46_c00496{transform:matrix(0.191637,-0.003258,0.004249,0.249964,0,0);-ms-transform:matrix(0.191637,-0.003258,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191637,-0.003258,0.004249,0.249964,0,0);}
.md0_c00496{transform:matrix(0.192525,-0.003080,0.003999,0.249968,0,0);-ms-transform:matrix(0.192525,-0.003080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192525,-0.003080,0.003999,0.249968,0,0);}
.m48_c00496{transform:matrix(0.192687,-0.003276,0.004249,0.249964,0,0);-ms-transform:matrix(0.192687,-0.003276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192687,-0.003276,0.004249,0.249964,0,0);}
.m2c_c00496{transform:matrix(0.193737,-0.003294,0.004249,0.249964,0,0);-ms-transform:matrix(0.193737,-0.003294,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193737,-0.003294,0.004249,0.249964,0,0);}
.mc6_c00496{transform:matrix(0.194500,-0.003112,0.003999,0.249968,0,0);-ms-transform:matrix(0.194500,-0.003112,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194500,-0.003112,0.003999,0.249968,0,0);}
.mb7_c00496{transform:matrix(0.194510,-0.003112,0.003999,0.249968,0,0);-ms-transform:matrix(0.194510,-0.003112,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194510,-0.003112,0.003999,0.249968,0,0);}
.ma1_c00496{transform:matrix(0.194595,-0.003114,0.003999,0.249968,0,0);-ms-transform:matrix(0.194595,-0.003114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194595,-0.003114,0.003999,0.249968,0,0);}
.mc8_c00496{transform:matrix(0.194655,-0.003114,0.003999,0.249968,0,0);-ms-transform:matrix(0.194655,-0.003114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194655,-0.003114,0.003999,0.249968,0,0);}
.m3c_c00496{transform:matrix(0.195247,-0.003319,0.004249,0.249964,0,0);-ms-transform:matrix(0.195247,-0.003319,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195247,-0.003319,0.004249,0.249964,0,0);}
.m6b_c00496{transform:matrix(0.195865,-0.003134,0.003999,0.249968,0,0);-ms-transform:matrix(0.195865,-0.003134,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195865,-0.003134,0.003999,0.249968,0,0);}
.m58_c00496{transform:matrix(0.195870,-0.003134,0.003999,0.249968,0,0);-ms-transform:matrix(0.195870,-0.003134,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195870,-0.003134,0.003999,0.249968,0,0);}
.m28_c00496{transform:matrix(0.196232,-0.003336,0.004249,0.249964,0,0);-ms-transform:matrix(0.196232,-0.003336,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196232,-0.003336,0.004249,0.249964,0,0);}
.m7a_c00496{transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);-ms-transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196340,-0.003141,0.003999,0.249968,0,0);}
.m5b_c00496{transform:matrix(0.196985,-0.003152,0.003999,0.249968,0,0);-ms-transform:matrix(0.196985,-0.003152,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196985,-0.003152,0.003999,0.249968,0,0);}
.mc4_c00496{transform:matrix(0.197530,-0.003160,0.003999,0.249968,0,0);-ms-transform:matrix(0.197530,-0.003160,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197530,-0.003160,0.003999,0.249968,0,0);}
.m9e_c00496{transform:matrix(0.197540,-0.003161,0.003999,0.249968,0,0);-ms-transform:matrix(0.197540,-0.003161,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197540,-0.003161,0.003999,0.249968,0,0);}
.m9b_c00496{transform:matrix(0.197615,-0.003162,0.003999,0.249968,0,0);-ms-transform:matrix(0.197615,-0.003162,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197615,-0.003162,0.003999,0.249968,0,0);}
.m7d_c00496{transform:matrix(0.197725,-0.003164,0.003999,0.249968,0,0);-ms-transform:matrix(0.197725,-0.003164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197725,-0.003164,0.003999,0.249968,0,0);}
.m57_c00496{transform:matrix(0.197780,-0.003164,0.003999,0.249968,0,0);-ms-transform:matrix(0.197780,-0.003164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197780,-0.003164,0.003999,0.249968,0,0);}
.m38_c00496{transform:matrix(0.198451,-0.003374,0.004249,0.249964,0,0);-ms-transform:matrix(0.198451,-0.003374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198451,-0.003374,0.004249,0.249964,0,0);}
.maa_c00496{transform:matrix(0.198630,-0.003178,0.003999,0.249968,0,0);-ms-transform:matrix(0.198630,-0.003178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198630,-0.003178,0.003999,0.249968,0,0);}
.m1b_c00496{transform:matrix(0.198826,-0.003380,0.004249,0.249964,0,0);-ms-transform:matrix(0.198826,-0.003380,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198826,-0.003380,0.004249,0.249964,0,0);}
.m42_c00496{transform:matrix(0.198931,-0.003382,0.004249,0.249964,0,0);-ms-transform:matrix(0.198931,-0.003382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198931,-0.003382,0.004249,0.249964,0,0);}
.m52_c00496{transform:matrix(0.199409,-0.003191,0.003999,0.249968,0,0);-ms-transform:matrix(0.199409,-0.003191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199409,-0.003191,0.003999,0.249968,0,0);}
.m22_c00496{transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);-ms-transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199441,-0.003391,0.004249,0.249964,0,0);}
.m29_c00496{transform:matrix(0.199856,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199856,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199856,-0.003398,0.004249,0.249964,0,0);}
.m5c_c00496{transform:matrix(0.200169,-0.003203,0.003999,0.249968,0,0);-ms-transform:matrix(0.200169,-0.003203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200169,-0.003203,0.003999,0.249968,0,0);}
.m97_c00496{transform:matrix(0.200224,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200224,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200224,-0.003204,0.003999,0.249968,0,0);}
.m51_c00496{transform:matrix(0.200274,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200274,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200274,-0.003204,0.003999,0.249968,0,0);}
.m17_c00496{transform:matrix(0.200356,-0.003406,0.004249,0.249964,0,0);-ms-transform:matrix(0.200356,-0.003406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200356,-0.003406,0.004249,0.249964,0,0);}
.mba_c00496{transform:matrix(0.200424,-0.003207,0.003999,0.249968,0,0);-ms-transform:matrix(0.200424,-0.003207,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200424,-0.003207,0.003999,0.249968,0,0);}
.m27_c00496{transform:matrix(0.200586,-0.003410,0.004249,0.249964,0,0);-ms-transform:matrix(0.200586,-0.003410,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200586,-0.003410,0.004249,0.249964,0,0);}
.m5d_c00496{transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);-ms-transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200809,-0.003213,0.003999,0.249968,0,0);}
.md7_c00496{transform:matrix(0.200939,-0.003215,0.003999,0.249968,0,0);-ms-transform:matrix(0.200939,-0.003215,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200939,-0.003215,0.003999,0.249968,0,0);}
.ma0_c00496{transform:matrix(0.201019,-0.003216,0.003999,0.249968,0,0);-ms-transform:matrix(0.201019,-0.003216,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201019,-0.003216,0.003999,0.249968,0,0);}
.m9c_c00496{transform:matrix(0.201299,-0.003221,0.003999,0.249968,0,0);-ms-transform:matrix(0.201299,-0.003221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201299,-0.003221,0.003999,0.249968,0,0);}
.m8d_c00496{transform:matrix(0.202014,-0.003232,0.003999,0.249968,0,0);-ms-transform:matrix(0.202014,-0.003232,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202014,-0.003232,0.003999,0.249968,0,0);}
.m50_c00496{transform:matrix(0.202061,-0.003435,0.004249,0.249964,0,0);-ms-transform:matrix(0.202061,-0.003435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202061,-0.003435,0.004249,0.249964,0,0);}
.m55_c00496{transform:matrix(0.202079,-0.003233,0.003999,0.249968,0,0);-ms-transform:matrix(0.202079,-0.003233,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202079,-0.003233,0.003999,0.249968,0,0);}
.mb5_c00496{transform:matrix(0.202404,-0.003238,0.003999,0.249968,0,0);-ms-transform:matrix(0.202404,-0.003238,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202404,-0.003238,0.003999,0.249968,0,0);}
.md6_c00496{transform:matrix(0.202459,-0.003239,0.003999,0.249968,0,0);-ms-transform:matrix(0.202459,-0.003239,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202459,-0.003239,0.003999,0.249968,0,0);}
.m67_c00496{transform:matrix(0.203009,-0.003248,0.003999,0.249968,0,0);-ms-transform:matrix(0.203009,-0.003248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203009,-0.003248,0.003999,0.249968,0,0);}
.mad_c00496{transform:matrix(0.203224,-0.003252,0.003999,0.249968,0,0);-ms-transform:matrix(0.203224,-0.003252,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203224,-0.003252,0.003999,0.249968,0,0);}
.m88_c00496{transform:matrix(0.203549,-0.003257,0.003999,0.249968,0,0);-ms-transform:matrix(0.203549,-0.003257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203549,-0.003257,0.003999,0.249968,0,0);}
.ma5_c00496{transform:matrix(0.204214,-0.003267,0.003999,0.249968,0,0);-ms-transform:matrix(0.204214,-0.003267,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204214,-0.003267,0.003999,0.249968,0,0);}
.m98_c00496{transform:matrix(0.204469,-0.003272,0.003999,0.249968,0,0);-ms-transform:matrix(0.204469,-0.003272,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204469,-0.003272,0.003999,0.249968,0,0);}
.m9d_c00496{transform:matrix(0.204474,-0.003272,0.003999,0.249968,0,0);-ms-transform:matrix(0.204474,-0.003272,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204474,-0.003272,0.003999,0.249968,0,0);}
.m23_c00496{transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204690,-0.003480,0.004249,0.249964,0,0);}
.m2a_c00496{transform:matrix(0.204890,-0.003483,0.004249,0.249964,0,0);-ms-transform:matrix(0.204890,-0.003483,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204890,-0.003483,0.004249,0.249964,0,0);}
.m26_c00496{transform:matrix(0.206275,-0.003507,0.004249,0.249964,0,0);-ms-transform:matrix(0.206275,-0.003507,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206275,-0.003507,0.004249,0.249964,0,0);}
.me_c00496{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.mc9_c00496{transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);-ms-transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207388,-0.003318,0.003999,0.249968,0,0);}
.mcd_c00496{transform:matrix(0.207558,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207558,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207558,-0.003321,0.003999,0.249968,0,0);}
.ma6_c00496{transform:matrix(0.207918,-0.003327,0.003999,0.249968,0,0);-ms-transform:matrix(0.207918,-0.003327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207918,-0.003327,0.003999,0.249968,0,0);}
.m63_c00496{transform:matrix(0.210383,-0.003366,0.003999,0.249968,0,0);-ms-transform:matrix(0.210383,-0.003366,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210383,-0.003366,0.003999,0.249968,0,0);}
.m5f_c00496{transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);-ms-transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210803,-0.003373,0.003999,0.249968,0,0);}
.m40_c00496{transform:matrix(0.210860,-0.003585,0.004249,0.249964,0,0);-ms-transform:matrix(0.210860,-0.003585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210860,-0.003585,0.004249,0.249964,0,0);}
.m69_c00496{transform:matrix(0.211818,-0.003389,0.003999,0.249968,0,0);-ms-transform:matrix(0.211818,-0.003389,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211818,-0.003389,0.003999,0.249968,0,0);}
.m76_c00496{transform:matrix(0.211823,-0.003389,0.003999,0.249968,0,0);-ms-transform:matrix(0.211823,-0.003389,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211823,-0.003389,0.003999,0.249968,0,0);}
.m1a_c00496{transform:matrix(0.212369,-0.003610,0.004249,0.249964,0,0);-ms-transform:matrix(0.212369,-0.003610,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212369,-0.003610,0.004249,0.249964,0,0);}
.mab_c00496{transform:matrix(0.213043,-0.003409,0.003999,0.249968,0,0);-ms-transform:matrix(0.213043,-0.003409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213043,-0.003409,0.003999,0.249968,0,0);}
.m81_c00496{transform:matrix(0.213333,-0.003413,0.003999,0.249968,0,0);-ms-transform:matrix(0.213333,-0.003413,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213333,-0.003413,0.003999,0.249968,0,0);}
.mac_c00496{transform:matrix(0.215507,-0.003448,0.003999,0.249968,0,0);-ms-transform:matrix(0.215507,-0.003448,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215507,-0.003448,0.003999,0.249968,0,0);}
.m37_c00496{transform:matrix(0.216689,-0.003684,0.004249,0.249964,0,0);-ms-transform:matrix(0.216689,-0.003684,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216689,-0.003684,0.004249,0.249964,0,0);}
.mc3_c00496{transform:matrix(0.216832,-0.003469,0.003999,0.249968,0,0);-ms-transform:matrix(0.216832,-0.003469,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216832,-0.003469,0.003999,0.249968,0,0);}
.m25_c00496{transform:matrix(0.216929,-0.003688,0.004249,0.249964,0,0);-ms-transform:matrix(0.216929,-0.003688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216929,-0.003688,0.004249,0.249964,0,0);}
.mbc_c00496{transform:matrix(0.217507,-0.003480,0.003999,0.249968,0,0);-ms-transform:matrix(0.217507,-0.003480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217507,-0.003480,0.003999,0.249968,0,0);}
.m39_c00496{transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-ms-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217509,-0.003698,0.004249,0.249964,0,0);}
.m14_c00496{transform:matrix(0.217649,-0.003700,0.004249,0.249964,0,0);-ms-transform:matrix(0.217649,-0.003700,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217649,-0.003700,0.004249,0.249964,0,0);}
.m31_c00496{transform:matrix(0.218748,-0.003719,0.004249,0.249964,0,0);-ms-transform:matrix(0.218748,-0.003719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218748,-0.003719,0.004249,0.249964,0,0);}
.m77_c00496{transform:matrix(0.220467,-0.003527,0.003999,0.249968,0,0);-ms-transform:matrix(0.220467,-0.003527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220467,-0.003527,0.003999,0.249968,0,0);}
.m3d_c00496{transform:matrix(0.221463,-0.003765,0.004249,0.249964,0,0);-ms-transform:matrix(0.221463,-0.003765,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221463,-0.003765,0.004249,0.249964,0,0);}
.m59_c00496{transform:matrix(0.221977,-0.003552,0.003999,0.249968,0,0);-ms-transform:matrix(0.221977,-0.003552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221977,-0.003552,0.003999,0.249968,0,0);}
.m70_c00496{transform:matrix(0.222547,-0.003561,0.003999,0.249968,0,0);-ms-transform:matrix(0.222547,-0.003561,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222547,-0.003561,0.003999,0.249968,0,0);}
.m7f_c00496{transform:matrix(0.222846,-0.003566,0.003999,0.249968,0,0);-ms-transform:matrix(0.222846,-0.003566,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222846,-0.003566,0.003999,0.249968,0,0);}
.ma2_c00496{transform:matrix(0.223936,-0.003583,0.003999,0.249968,0,0);-ms-transform:matrix(0.223936,-0.003583,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223936,-0.003583,0.003999,0.249968,0,0);}
.m8f_c00496{transform:matrix(0.224956,-0.003599,0.003999,0.249968,0,0);-ms-transform:matrix(0.224956,-0.003599,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224956,-0.003599,0.003999,0.249968,0,0);}
.m9a_c00496{transform:matrix(0.229231,-0.003668,0.003999,0.249968,0,0);-ms-transform:matrix(0.229231,-0.003668,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229231,-0.003668,0.003999,0.249968,0,0);}
.m3f_c00496{transform:matrix(0.232681,-0.003956,0.004249,0.249964,0,0);-ms-transform:matrix(0.232681,-0.003956,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232681,-0.003956,0.004249,0.249964,0,0);}
.m1f_c00496{transform:matrix(0.233491,-0.003969,0.004249,0.249964,0,0);-ms-transform:matrix(0.233491,-0.003969,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233491,-0.003969,0.004249,0.249964,0,0);}
.m4a_c00496{transform:matrix(0.234631,-0.003989,0.004249,0.249964,0,0);-ms-transform:matrix(0.234631,-0.003989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234631,-0.003989,0.004249,0.249964,0,0);}
.mc_c00496{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m66_c00496{transform:matrix(0.235680,-0.003771,0.003999,0.249968,0,0);-ms-transform:matrix(0.235680,-0.003771,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235680,-0.003771,0.003999,0.249968,0,0);}
.m91_c00496{transform:matrix(0.240304,-0.003845,0.003999,0.249968,0,0);-ms-transform:matrix(0.240304,-0.003845,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240304,-0.003845,0.003999,0.249968,0,0);}
.m90_c00496{transform:matrix(0.242304,-0.003877,0.003999,0.249968,0,0);-ms-transform:matrix(0.242304,-0.003877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242304,-0.003877,0.003999,0.249968,0,0);}
.m3e_c00496{transform:matrix(0.245515,-0.004174,0.004249,0.249964,0,0);-ms-transform:matrix(0.245515,-0.004174,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245515,-0.004174,0.004249,0.249964,0,0);}
.m84_c00496{transform:matrix(0.245619,-0.003930,0.003999,0.249968,0,0);-ms-transform:matrix(0.245619,-0.003930,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245619,-0.003930,0.003999,0.249968,0,0);}
.m94_c00496{transform:matrix(0.249018,-0.003984,0.003999,0.249968,0,0);-ms-transform:matrix(0.249018,-0.003984,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249018,-0.003984,0.003999,0.249968,0,0);}
.m18_c00496{transform:matrix(0.252284,-0.004289,0.004249,0.249964,0,0);-ms-transform:matrix(0.252284,-0.004289,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252284,-0.004289,0.004249,0.249964,0,0);}
.m71_c00496{transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);-ms-transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);}
.m6e_c00496{transform:matrix(0.260722,-0.004172,0.003999,0.249968,0,0);-ms-transform:matrix(0.260722,-0.004172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260722,-0.004172,0.003999,0.249968,0,0);}
.m3b_c00496{transform:matrix(0.264312,-0.004493,0.004249,0.249964,0,0);-ms-transform:matrix(0.264312,-0.004493,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264312,-0.004493,0.004249,0.249964,0,0);}
.md_c00496{transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);}
.m83_c00496{transform:matrix(0.266661,-0.004267,0.003999,0.249968,0,0);-ms-transform:matrix(0.266661,-0.004267,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266661,-0.004267,0.003999,0.249968,0,0);}
.m5e_c00496{transform:matrix(0.268766,-0.004300,0.003999,0.249968,0,0);-ms-transform:matrix(0.268766,-0.004300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268766,-0.004300,0.003999,0.249968,0,0);}
.m82_c00496{transform:matrix(0.273100,-0.004370,0.003999,0.249968,0,0);-ms-transform:matrix(0.273100,-0.004370,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273100,-0.004370,0.003999,0.249968,0,0);}
.m6d_c00496{transform:matrix(0.285553,-0.004569,0.003999,0.249968,0,0);-ms-transform:matrix(0.285553,-0.004569,0.003999,0.249968,0,0);-webkit-transform:matrix(0.285553,-0.004569,0.003999,0.249968,0,0);}
.m11_c00496{transform:matrix(0.291208,-0.004951,0.004249,0.249964,0,0);-ms-transform:matrix(0.291208,-0.004951,0.004249,0.249964,0,0);-webkit-transform:matrix(0.291208,-0.004951,0.004249,0.249964,0,0);}
.m87_c00496{transform:matrix(0.298227,-0.004772,0.003999,0.249968,0,0);-ms-transform:matrix(0.298227,-0.004772,0.003999,0.249968,0,0);-webkit-transform:matrix(0.298227,-0.004772,0.003999,0.249968,0,0);}
.m93_c00496{transform:matrix(0.302336,-0.004837,0.003999,0.249968,0,0);-ms-transform:matrix(0.302336,-0.004837,0.003999,0.249968,0,0);-webkit-transform:matrix(0.302336,-0.004837,0.003999,0.249968,0,0);}
.m1d_c00496{transform:matrix(0.325448,-0.005533,0.004249,0.249964,0,0);-ms-transform:matrix(0.325448,-0.005533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.325448,-0.005533,0.004249,0.249964,0,0);}
.mae_c00496{transform:matrix(0.347755,-0.005564,0.003999,0.249968,0,0);-ms-transform:matrix(0.347755,-0.005564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.347755,-0.005564,0.003999,0.249968,0,0);}
.mbf_c00496{transform:matrix(0.353275,-0.005652,0.003999,0.249968,0,0);-ms-transform:matrix(0.353275,-0.005652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.353275,-0.005652,0.003999,0.249968,0,0);}
.m3a_c00496{transform:matrix(0.384129,-0.006530,0.004249,0.249964,0,0);-ms-transform:matrix(0.384129,-0.006530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.384129,-0.006530,0.004249,0.249964,0,0);}
.mbe_c00496{transform:matrix(0.428935,-0.006863,0.003999,0.249968,0,0);-ms-transform:matrix(0.428935,-0.006863,0.003999,0.249968,0,0);-webkit-transform:matrix(0.428935,-0.006863,0.003999,0.249968,0,0);}
.m85_c00496{transform:matrix(0.467145,-0.007474,0.003999,0.249968,0,0);-ms-transform:matrix(0.467145,-0.007474,0.003999,0.249968,0,0);-webkit-transform:matrix(0.467145,-0.007474,0.003999,0.249968,0,0);}
.m10_c00496{transform:matrix(0.729075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729075,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:0.000000px;}
.fc0_c00496{color:transparent;}
.fsf_c00496{font-size:47.256048px;}
.fs8_c00496{font-size:57.758344px;}
.fs4_c00496{font-size:59.858648px;}
.fsa_c00496{font-size:60.907795px;}
.fsb_c00496{font-size:63.008063px;}
.fs3_c00496{font-size:64.050000px;}
.fse_c00496{font-size:64.058198px;}
.fs6_c00496{font-size:64.059255px;}
.fsd_c00496{font-size:65.108332px;}
.fsc_c00496{font-size:66.158467px;}
.fs5_c00496{font-size:66.159558px;}
.fs2_c00496{font-size:67.200000px;}
.fs11_c00496{font-size:67.208601px;}
.fs9_c00496{font-size:67.209710px;}
.fs7_c00496{font-size:68.259861px;}
.fs1_c00496{font-size:69.300000px;}
.fs10_c00496{font-size:69.308870px;}
.fs0_c00496{font-size:79.800000px;}
.y0_c00496{bottom:0.000000px;}
.yda_c00496{bottom:30.070296px;}
.ydb_c00496{bottom:30.070896px;}
.yd9_c00496{bottom:30.070908px;}
.yd8_c00496{bottom:30.070944px;}
.yd7_c00496{bottom:30.071184px;}
.yd6_c00496{bottom:30.071652px;}
.yd5_c00496{bottom:30.072396px;}
.ycc_c00496{bottom:48.551328px;}
.ycf_c00496{bottom:48.551460px;}
.yd0_c00496{bottom:48.551520px;}
.ycd_c00496{bottom:48.551784px;}
.yce_c00496{bottom:48.551904px;}
.yd1_c00496{bottom:48.552252px;}
.yd2_c00496{bottom:48.552324px;}
.yd3_c00496{bottom:48.552696px;}
.yd4_c00496{bottom:48.552972px;}
.yc5_c00496{bottom:63.410472px;}
.yc6_c00496{bottom:64.655376px;}
.yc7_c00496{bottom:65.030964px;}
.yc8_c00496{bottom:65.718264px;}
.yc9_c00496{bottom:65.915976px;}
.yca_c00496{bottom:66.408276px;}
.ycb_c00496{bottom:66.577560px;}
.ybd_c00496{bottom:79.074456px;}
.ybe_c00496{bottom:80.021712px;}
.ybf_c00496{bottom:80.421120px;}
.yc0_c00496{bottom:81.451656px;}
.yc1_c00496{bottom:81.673488px;}
.yc2_c00496{bottom:82.713852px;}
.yc3_c00496{bottom:82.966248px;}
.yc4_c00496{bottom:83.735508px;}
.yb6_c00496{bottom:96.085176px;}
.yb7_c00496{bottom:96.624756px;}
.yb8_c00496{bottom:96.984348px;}
.yb9_c00496{bottom:98.000304px;}
.yba_c00496{bottom:99.092628px;}
.ybb_c00496{bottom:99.559824px;}
.ybc_c00496{bottom:101.048052px;}
.yae_c00496{bottom:112.829016px;}
.yaf_c00496{bottom:113.678340px;}
.yb0_c00496{bottom:113.873940px;}
.yb1_c00496{bottom:114.599832px;}
.yb2_c00496{bottom:114.994980px;}
.yb3_c00496{bottom:116.495772px;}
.yb4_c00496{bottom:116.975220px;}
.yb5_c00496{bottom:117.570552px;}
.ya5_c00496{bottom:130.379664px;}
.ya6_c00496{bottom:130.533108px;}
.ya7_c00496{bottom:131.302812px;}
.ya8_c00496{bottom:131.554128px;}
.ya9_c00496{bottom:132.217776px;}
.yaa_c00496{bottom:132.537696px;}
.yab_c00496{bottom:132.848712px;}
.yac_c00496{bottom:133.619592px;}
.yad_c00496{bottom:134.636748px;}
.y9e_c00496{bottom:149.013540px;}
.y9f_c00496{bottom:149.661060px;}
.ya0_c00496{bottom:150.243756px;}
.ya1_c00496{bottom:150.755316px;}
.ya2_c00496{bottom:151.033860px;}
.ya3_c00496{bottom:151.846848px;}
.ya4_c00496{bottom:152.163924px;}
.y97_c00496{bottom:164.947032px;}
.y98_c00496{bottom:165.297120px;}
.y99_c00496{bottom:166.218000px;}
.y9a_c00496{bottom:166.431096px;}
.y9b_c00496{bottom:166.945788px;}
.y9c_c00496{bottom:167.700636px;}
.y9d_c00496{bottom:168.313044px;}
.y90_c00496{bottom:182.231712px;}
.y91_c00496{bottom:183.803256px;}
.y92_c00496{bottom:184.065240px;}
.y93_c00496{bottom:184.866816px;}
.y94_c00496{bottom:185.547936px;}
.y95_c00496{bottom:185.794668px;}
.y96_c00496{bottom:186.365256px;}
.y88_c00496{bottom:198.704076px;}
.y89_c00496{bottom:199.031520px;}
.y8a_c00496{bottom:199.538520px;}
.y8b_c00496{bottom:199.829388px;}
.y8c_c00496{bottom:200.284020px;}
.y8d_c00496{bottom:200.996460px;}
.y8e_c00496{bottom:201.615420px;}
.y8f_c00496{bottom:201.926244px;}
.y83_c00496{bottom:216.259488px;}
.y84_c00496{bottom:216.695196px;}
.y85_c00496{bottom:217.854780px;}
.y86_c00496{bottom:220.704972px;}
.y87_c00496{bottom:222.234360px;}
.y7d_c00496{bottom:233.806008px;}
.y7e_c00496{bottom:234.542268px;}
.y7f_c00496{bottom:235.352604px;}
.y80_c00496{bottom:236.539200px;}
.y81_c00496{bottom:236.736744px;}
.y82_c00496{bottom:237.287040px;}
.y78_c00496{bottom:251.090352px;}
.y79_c00496{bottom:251.802552px;}
.y7a_c00496{bottom:252.322248px;}
.y7b_c00496{bottom:253.040952px;}
.y7c_c00496{bottom:253.732392px;}
.y72_c00496{bottom:268.103484px;}
.y73_c00496{bottom:268.799424px;}
.y74_c00496{bottom:269.137524px;}
.y75_c00496{bottom:269.703816px;}
.y76_c00496{bottom:269.879592px;}
.y77_c00496{bottom:270.449232px;}
.y6b_c00496{bottom:284.844912px;}
.y6c_c00496{bottom:285.804312px;}
.y6d_c00496{bottom:285.927060px;}
.y6e_c00496{bottom:286.378488px;}
.y6f_c00496{bottom:286.583160px;}
.y70_c00496{bottom:287.123544px;}
.y71_c00496{bottom:287.590236px;}
.y65_c00496{bottom:302.126508px;}
.y66_c00496{bottom:302.302380px;}
.y67_c00496{bottom:302.807340px;}
.y68_c00496{bottom:303.436092px;}
.y69_c00496{bottom:304.351428px;}
.y6a_c00496{bottom:304.791420px;}
.y5f_c00496{bottom:318.870108px;}
.y60_c00496{bottom:319.807872px;}
.y61_c00496{bottom:320.280684px;}
.y62_c00496{bottom:321.377484px;}
.y63_c00496{bottom:321.686820px;}
.y64_c00496{bottom:323.093124px;}
.y58_c00496{bottom:335.883000px;}
.y59_c00496{bottom:336.271968px;}
.y5a_c00496{bottom:337.351896px;}
.y5b_c00496{bottom:337.702728px;}
.y5c_c00496{bottom:338.307456px;}
.y5d_c00496{bottom:339.175032px;}
.y5e_c00496{bottom:339.399984px;}
.y51_c00496{bottom:351.543000px;}
.y52_c00496{bottom:352.686552px;}
.y53_c00496{bottom:352.981512px;}
.y54_c00496{bottom:353.314248px;}
.y55_c00496{bottom:353.650752px;}
.y56_c00496{bottom:355.055688px;}
.y57_c00496{bottom:355.427376px;}
.y4a_c00496{bottom:369.070599px;}
.y4b_c00496{bottom:371.072476px;}
.y4c_c00496{bottom:371.406322px;}
.y4d_c00496{bottom:372.164896px;}
.y4e_c00496{bottom:372.466791px;}
.y4f_c00496{bottom:372.899985px;}
.y50_c00496{bottom:373.753597px;}
.y41_c00496{bottom:386.622724px;}
.y42_c00496{bottom:387.125016px;}
.y43_c00496{bottom:387.695637px;}
.y44_c00496{bottom:388.017960px;}
.y45_c00496{bottom:388.796974px;}
.y46_c00496{bottom:389.079826px;}
.y47_c00496{bottom:389.620492px;}
.y48_c00496{bottom:389.873410px;}
.y49_c00496{bottom:390.490141px;}
.y39_c00496{bottom:402.556529px;}
.y3a_c00496{bottom:402.722150px;}
.y3b_c00496{bottom:403.456606px;}
.y3c_c00496{bottom:403.805541px;}
.y3d_c00496{bottom:404.563708px;}
.y3e_c00496{bottom:404.904458px;}
.y3f_c00496{bottom:405.789363px;}
.y40_c00496{bottom:406.931089px;}
.y32_c00496{bottom:419.837673px;}
.y33_c00496{bottom:420.111489px;}
.y34_c00496{bottom:420.338778px;}
.y35_c00496{bottom:420.954022px;}
.y36_c00496{bottom:421.578201px;}
.y37_c00496{bottom:421.919349px;}
.y38_c00496{bottom:422.799964px;}
.y2c_c00496{bottom:436.316386px;}
.y2d_c00496{bottom:437.904640px;}
.y2e_c00496{bottom:439.530603px;}
.y2f_c00496{bottom:440.780794px;}
.y30_c00496{bottom:441.729102px;}
.y31_c00496{bottom:441.971803px;}
.y27_c00496{bottom:454.672975px;}
.y28_c00496{bottom:455.223699px;}
.y29_c00496{bottom:455.942704px;}
.y2a_c00496{bottom:456.519775px;}
.y2b_c00496{bottom:457.588899px;}
.y1e_c00496{bottom:470.877348px;}
.y1f_c00496{bottom:471.300336px;}
.y20_c00496{bottom:471.598471px;}
.y21_c00496{bottom:471.840088px;}
.y22_c00496{bottom:472.569346px;}
.y23_c00496{bottom:473.068267px;}
.y24_c00496{bottom:473.472984px;}
.y25_c00496{bottom:473.812864px;}
.y26_c00496{bottom:474.429213px;}
.y19_c00496{bottom:487.081993px;}
.y1a_c00496{bottom:488.045578px;}
.y1b_c00496{bottom:490.013799px;}
.y1c_c00496{bottom:491.509636px;}
.y1d_c00496{bottom:491.991480px;}
.y11_c00496{bottom:504.637500px;}
.y12_c00496{bottom:505.761106px;}
.y13_c00496{bottom:506.239792px;}
.y14_c00496{bottom:506.763205px;}
.y15_c00496{bottom:507.542307px;}
.y16_c00496{bottom:507.745338px;}
.y17_c00496{bottom:508.337371px;}
.y18_c00496{bottom:508.796703px;}
.ye_c00496{bottom:521.649000px;}
.yf_c00496{bottom:523.353000px;}
.y10_c00496{bottom:524.178000px;}
.y8_c00496{bottom:538.653000px;}
.y9_c00496{bottom:539.137500px;}
.ya_c00496{bottom:540.204000px;}
.yb_c00496{bottom:541.104000px;}
.yc_c00496{bottom:541.875000px;}
.yd_c00496{bottom:542.643000px;}
.y2_c00496{bottom:555.663000px;}
.y3_c00496{bottom:555.906000px;}
.y4_c00496{bottom:557.676000px;}
.y5_c00496{bottom:558.178500px;}
.y6_c00496{bottom:558.919500px;}
.y7_c00496{bottom:559.879500px;}
.y1_c00496{bottom:571.750500px;}
.h11_c00496{height:47.256048px;}
.ha_c00496{height:57.758344px;}
.h6_c00496{height:59.858648px;}
.hc_c00496{height:60.907795px;}
.hd_c00496{height:63.008063px;}
.h5_c00496{height:64.050000px;}
.h10_c00496{height:64.058198px;}
.h8_c00496{height:64.059255px;}
.hf_c00496{height:65.108332px;}
.he_c00496{height:66.158467px;}
.h7_c00496{height:66.159558px;}
.h4_c00496{height:67.200000px;}
.h13_c00496{height:67.208601px;}
.hb_c00496{height:67.209710px;}
.h9_c00496{height:68.259861px;}
.h3_c00496{height:69.300000px;}
.h12_c00496{height:69.308870px;}
.h2_c00496{height:79.800000px;}
.h0_c00496{height:617.700000px;}
.h1_c00496{height:618.000000px;}
.w0_c00496{width:359.100000px;}
.w1_c00496{width:359.250000px;}
.x0_c00496{left:0.000000px;}
.x3d_c00496{left:16.942500px;}
.x18_c00496{left:19.677836px;}
.x3_c00496{left:21.255000px;}
.x10_c00496{left:26.676000px;}
.x30_c00496{left:29.682429px;}
.x61_c00496{left:31.786092px;}
.x4_c00496{left:37.471500px;}
.x2b_c00496{left:41.733878px;}
.x57_c00496{left:42.916200px;}
.x42_c00496{left:45.021000px;}
.x1d_c00496{left:49.857266px;}
.x9_c00496{left:55.264500px;}
.x33_c00496{left:56.329703px;}
.x2c_c00496{left:59.252076px;}
.x65_c00496{left:64.078464px;}
.x25_c00496{left:65.774088px;}
.x58_c00496{left:67.694088px;}
.x68_c00496{left:69.097284px;}
.x1e_c00496{left:71.189862px;}
.x19_c00496{left:73.181918px;}
.x5c_c00496{left:75.738372px;}
.x54_c00496{left:82.770420px;}
.x29_c00496{left:85.923749px;}
.x1f_c00496{left:88.491755px;}
.x31_c00496{left:89.880909px;}
.x11_c00496{left:92.770500px;}
.x6e_c00496{left:94.505616px;}
.x34_c00496{left:97.044768px;}
.xe_c00496{left:98.284500px;}
.x62_c00496{left:99.819672px;}
.x59_c00496{left:101.444616px;}
.x2d_c00496{left:106.563789px;}
.x4c_c00496{left:108.365988px;}
.x66_c00496{left:110.137512px;}
.x43_c00496{left:112.516500px;}
.x4d_c00496{left:119.507376px;}
.x12_c00496{left:120.928500px;}
.x69_c00496{left:122.560716px;}
.x51_c00496{left:124.368684px;}
.x26_c00496{left:125.720688px;}
.x3e_c00496{left:127.645500px;}
.x67_c00496{left:129.864240px;}
.xa_c00496{left:131.424000px;}
.x44_c00496{left:134.443500px;}
.xf_c00496{left:135.808500px;}
.x38_c00496{left:138.182666px;}
.x20_c00496{left:140.568407px;}
.x5a_c00496{left:143.560404px;}
.x5b_c00496{left:145.146384px;}
.x3f_c00496{left:148.677000px;}
.x55_c00496{left:150.295740px;}
.x13_c00496{left:151.717500px;}
.x1_c00496{left:152.820000px;}
.x5_c00496{left:155.422500px;}
.x39_c00496{left:157.820666px;}
.x4e_c00496{left:160.568664px;}
.x63_c00496{left:165.418728px;}
.x5d_c00496{left:167.010228px;}
.x6f_c00496{left:169.574340px;}
.x45_c00496{left:172.239000px;}
.x27_c00496{left:173.787768px;}
.x21_c00496{left:176.183217px;}
.x4f_c00496{left:179.174652px;}
.x2e_c00496{left:180.823338px;}
.x1a_c00496{left:182.516556px;}
.x64_c00496{left:186.170064px;}
.x6_c00496{left:188.928000px;}
.x5e_c00496{left:190.233216px;}
.xb_c00496{left:195.672000px;}
.x14_c00496{left:197.547000px;}
.x52_c00496{left:198.598812px;}
.x32_c00496{left:200.045022px;}
.x3a_c00496{left:202.442666px;}
.x22_c00496{left:205.109196px;}
.x15_c00496{left:209.490000px;}
.x6d_c00496{left:213.722928px;}
.x70_c00496{left:218.990988px;}
.x3b_c00496{left:220.201166px;}
.x48_c00496{left:221.884068px;}
.x6b_c00496{left:223.521576px;}
.x46_c00496{left:226.462500px;}
.x50_c00496{left:228.327588px;}
.x23_c00496{left:229.426946px;}
.x35_c00496{left:234.543281px;}
.x40_c00496{left:236.485500px;}
.x7_c00496{left:238.339500px;}
.x47_c00496{left:240.522000px;}
.x4a_c00496{left:242.892240px;}
.x16_c00496{left:244.315500px;}
.x3c_c00496{left:245.683166px;}
.x2f_c00496{left:248.599454px;}
.xc_c00496{left:250.752000px;}
.x36_c00496{left:252.598199px;}
.x2a_c00496{left:255.442604px;}
.x5f_c00496{left:258.018060px;}
.x41_c00496{left:259.716000px;}
.x53_c00496{left:261.798276px;}
.x28_c00496{left:262.890842px;}
.x1b_c00496{left:265.652654px;}
.x17_c00496{left:271.335000px;}
.x24_c00496{left:273.449690px;}
.x6c_c00496{left:280.248252px;}
.x6a_c00496{left:282.943512px;}
.x60_c00496{left:284.493264px;}
.x4b_c00496{left:286.895964px;}
.x1c_c00496{left:292.407695px;}
.x37_c00496{left:296.643443px;}
.x8_c00496{left:302.307000px;}
.xd_c00496{left:305.566500px;}
.x2_c00496{left:307.530000px;}
.x56_c00496{left:311.427036px;}
.x71_c00496{left:313.233108px;}
.x49_c00496{left:322.343784px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fsf_c00496{font-size:42.005376pt;}
.fs8_c00496{font-size:51.340750pt;}
.fs4_c00496{font-size:53.207687pt;}
.fsa_c00496{font-size:54.140262pt;}
.fsb_c00496{font-size:56.007168pt;}
.fs3_c00496{font-size:56.933333pt;}
.fse_c00496{font-size:56.940620pt;}
.fs6_c00496{font-size:56.941560pt;}
.fsd_c00496{font-size:57.874073pt;}
.fsc_c00496{font-size:58.807526pt;}
.fs5_c00496{font-size:58.808496pt;}
.fs2_c00496{font-size:59.733333pt;}
.fs11_c00496{font-size:59.740979pt;}
.fs9_c00496{font-size:59.741964pt;}
.fs7_c00496{font-size:60.675432pt;}
.fs1_c00496{font-size:61.600000pt;}
.fs10_c00496{font-size:61.607884pt;}
.fs0_c00496{font-size:70.933333pt;}
.y0_c00496{bottom:0.000000pt;}
.yda_c00496{bottom:26.729152pt;}
.ydb_c00496{bottom:26.729685pt;}
.yd9_c00496{bottom:26.729696pt;}
.yd8_c00496{bottom:26.729728pt;}
.yd7_c00496{bottom:26.729941pt;}
.yd6_c00496{bottom:26.730357pt;}
.yd5_c00496{bottom:26.731019pt;}
.ycc_c00496{bottom:43.156736pt;}
.ycf_c00496{bottom:43.156853pt;}
.yd0_c00496{bottom:43.156907pt;}
.ycd_c00496{bottom:43.157141pt;}
.yce_c00496{bottom:43.157248pt;}
.yd1_c00496{bottom:43.157557pt;}
.yd2_c00496{bottom:43.157621pt;}
.yd3_c00496{bottom:43.157952pt;}
.yd4_c00496{bottom:43.158197pt;}
.yc5_c00496{bottom:56.364864pt;}
.yc6_c00496{bottom:57.471445pt;}
.yc7_c00496{bottom:57.805301pt;}
.yc8_c00496{bottom:58.416235pt;}
.yc9_c00496{bottom:58.591979pt;}
.yca_c00496{bottom:59.029579pt;}
.ycb_c00496{bottom:59.180053pt;}
.ybd_c00496{bottom:70.288405pt;}
.ybe_c00496{bottom:71.130411pt;}
.ybf_c00496{bottom:71.485440pt;}
.yc0_c00496{bottom:72.401472pt;}
.yc1_c00496{bottom:72.598656pt;}
.yc2_c00496{bottom:73.523424pt;}
.yc3_c00496{bottom:73.747776pt;}
.yc4_c00496{bottom:74.431563pt;}
.yb6_c00496{bottom:85.409045pt;}
.yb7_c00496{bottom:85.888672pt;}
.yb8_c00496{bottom:86.208309pt;}
.yb9_c00496{bottom:87.111381pt;}
.yba_c00496{bottom:88.082336pt;}
.ybb_c00496{bottom:88.497621pt;}
.ybc_c00496{bottom:89.820491pt;}
.yae_c00496{bottom:100.292459pt;}
.yaf_c00496{bottom:101.047413pt;}
.yb0_c00496{bottom:101.221280pt;}
.yb1_c00496{bottom:101.866517pt;}
.yb2_c00496{bottom:102.217760pt;}
.yb3_c00496{bottom:103.551797pt;}
.yb4_c00496{bottom:103.977973pt;}
.yb5_c00496{bottom:104.507157pt;}
.ya5_c00496{bottom:115.893035pt;}
.ya6_c00496{bottom:116.029429pt;}
.ya7_c00496{bottom:116.713611pt;}
.ya8_c00496{bottom:116.937003pt;}
.ya9_c00496{bottom:117.526912pt;}
.yaa_c00496{bottom:117.811285pt;}
.yab_c00496{bottom:118.087744pt;}
.yac_c00496{bottom:118.772971pt;}
.yad_c00496{bottom:119.677109pt;}
.y9e_c00496{bottom:132.456480pt;}
.y9f_c00496{bottom:133.032053pt;}
.ya0_c00496{bottom:133.550005pt;}
.ya1_c00496{bottom:134.004725pt;}
.ya2_c00496{bottom:134.252320pt;}
.ya3_c00496{bottom:134.974976pt;}
.ya4_c00496{bottom:135.256821pt;}
.y97_c00496{bottom:146.619584pt;}
.y98_c00496{bottom:146.930773pt;}
.y99_c00496{bottom:147.749333pt;}
.y9a_c00496{bottom:147.938752pt;}
.y9b_c00496{bottom:148.396256pt;}
.y9c_c00496{bottom:149.067232pt;}
.y9d_c00496{bottom:149.611595pt;}
.y90_c00496{bottom:161.983744pt;}
.y91_c00496{bottom:163.380672pt;}
.y92_c00496{bottom:163.613547pt;}
.y93_c00496{bottom:164.326059pt;}
.y94_c00496{bottom:164.931499pt;}
.y95_c00496{bottom:165.150816pt;}
.y96_c00496{bottom:165.658005pt;}
.y88_c00496{bottom:176.625845pt;}
.y89_c00496{bottom:176.916907pt;}
.y8a_c00496{bottom:177.367573pt;}
.y8b_c00496{bottom:177.626123pt;}
.y8c_c00496{bottom:178.030240pt;}
.y8d_c00496{bottom:178.663520pt;}
.y8e_c00496{bottom:179.213707pt;}
.y8f_c00496{bottom:179.489995pt;}
.y83_c00496{bottom:192.230656pt;}
.y84_c00496{bottom:192.617952pt;}
.y85_c00496{bottom:193.648693pt;}
.y86_c00496{bottom:196.182197pt;}
.y87_c00496{bottom:197.541653pt;}
.y7d_c00496{bottom:207.827563pt;}
.y7e_c00496{bottom:208.482016pt;}
.y7f_c00496{bottom:209.202315pt;}
.y80_c00496{bottom:210.257067pt;}
.y81_c00496{bottom:210.432661pt;}
.y82_c00496{bottom:210.921813pt;}
.y78_c00496{bottom:223.191424pt;}
.y79_c00496{bottom:223.824491pt;}
.y7a_c00496{bottom:224.286443pt;}
.y7b_c00496{bottom:224.925291pt;}
.y7c_c00496{bottom:225.539904pt;}
.y72_c00496{bottom:238.314208pt;}
.y73_c00496{bottom:238.932821pt;}
.y74_c00496{bottom:239.233355pt;}
.y75_c00496{bottom:239.736725pt;}
.y76_c00496{bottom:239.892971pt;}
.y77_c00496{bottom:240.399317pt;}
.y6b_c00496{bottom:253.195477pt;}
.y6c_c00496{bottom:254.048277pt;}
.y6d_c00496{bottom:254.157387pt;}
.y6e_c00496{bottom:254.558656pt;}
.y6f_c00496{bottom:254.740587pt;}
.y70_c00496{bottom:255.220928pt;}
.y71_c00496{bottom:255.635765pt;}
.y65_c00496{bottom:268.556896pt;}
.y66_c00496{bottom:268.713227pt;}
.y67_c00496{bottom:269.162080pt;}
.y68_c00496{bottom:269.720971pt;}
.y69_c00496{bottom:270.534603pt;}
.y6a_c00496{bottom:270.925707pt;}
.y5f_c00496{bottom:283.440096pt;}
.y60_c00496{bottom:284.273664pt;}
.y61_c00496{bottom:284.693941pt;}
.y62_c00496{bottom:285.668875pt;}
.y63_c00496{bottom:285.943840pt;}
.y64_c00496{bottom:287.193888pt;}
.y58_c00496{bottom:298.562667pt;}
.y59_c00496{bottom:298.908416pt;}
.y5a_c00496{bottom:299.868352pt;}
.y5b_c00496{bottom:300.180203pt;}
.y5c_c00496{bottom:300.717739pt;}
.y5d_c00496{bottom:301.488917pt;}
.y5e_c00496{bottom:301.688875pt;}
.y51_c00496{bottom:312.482667pt;}
.y52_c00496{bottom:313.499157pt;}
.y53_c00496{bottom:313.761344pt;}
.y54_c00496{bottom:314.057109pt;}
.y55_c00496{bottom:314.356224pt;}
.y56_c00496{bottom:315.605056pt;}
.y57_c00496{bottom:315.935445pt;}
.y4a_c00496{bottom:328.062755pt;}
.y4b_c00496{bottom:329.842201pt;}
.y4c_c00496{bottom:330.138953pt;}
.y4d_c00496{bottom:330.813241pt;}
.y4e_c00496{bottom:331.081592pt;}
.y4f_c00496{bottom:331.466653pt;}
.y50_c00496{bottom:332.225420pt;}
.y41_c00496{bottom:343.664644pt;}
.y42_c00496{bottom:344.111125pt;}
.y43_c00496{bottom:344.618344pt;}
.y44_c00496{bottom:344.904853pt;}
.y45_c00496{bottom:345.597311pt;}
.y46_c00496{bottom:345.848735pt;}
.y47_c00496{bottom:346.329327pt;}
.y48_c00496{bottom:346.554143pt;}
.y49_c00496{bottom:347.102348pt;}
.y39_c00496{bottom:357.828025pt;}
.y3a_c00496{bottom:357.975244pt;}
.y3b_c00496{bottom:358.628095pt;}
.y3c_c00496{bottom:358.938259pt;}
.y3d_c00496{bottom:359.612185pt;}
.y3e_c00496{bottom:359.915073pt;}
.y3f_c00496{bottom:360.701656pt;}
.y40_c00496{bottom:361.716524pt;}
.y32_c00496{bottom:373.189043pt;}
.y33_c00496{bottom:373.432435pt;}
.y34_c00496{bottom:373.634469pt;}
.y35_c00496{bottom:374.181353pt;}
.y36_c00496{bottom:374.736179pt;}
.y37_c00496{bottom:375.039421pt;}
.y38_c00496{bottom:375.822191pt;}
.y2c_c00496{bottom:387.836788pt;}
.y2d_c00496{bottom:389.248569pt;}
.y2e_c00496{bottom:390.693869pt;}
.y2f_c00496{bottom:391.805151pt;}
.y30_c00496{bottom:392.648091pt;}
.y31_c00496{bottom:392.863825pt;}
.y27_c00496{bottom:404.153756pt;}
.y28_c00496{bottom:404.643288pt;}
.y29_c00496{bottom:405.282404pt;}
.y2a_c00496{bottom:405.795356pt;}
.y2b_c00496{bottom:406.745688pt;}
.y1e_c00496{bottom:418.557643pt;}
.y1f_c00496{bottom:418.933632pt;}
.y20_c00496{bottom:419.198641pt;}
.y21_c00496{bottom:419.413412pt;}
.y22_c00496{bottom:420.061641pt;}
.y23_c00496{bottom:420.505127pt;}
.y24_c00496{bottom:420.864875pt;}
.y25_c00496{bottom:421.166991pt;}
.y26_c00496{bottom:421.714856pt;}
.y19_c00496{bottom:432.961772pt;}
.y1a_c00496{bottom:433.818292pt;}
.y1b_c00496{bottom:435.567821pt;}
.y1c_c00496{bottom:436.897455pt;}
.y1d_c00496{bottom:437.325760pt;}
.y11_c00496{bottom:448.566667pt;}
.y12_c00496{bottom:449.565428pt;}
.y13_c00496{bottom:449.990927pt;}
.y14_c00496{bottom:450.456183pt;}
.y15_c00496{bottom:451.148717pt;}
.y16_c00496{bottom:451.329189pt;}
.y17_c00496{bottom:451.855441pt;}
.y18_c00496{bottom:452.263736pt;}
.ye_c00496{bottom:463.688000pt;}
.yf_c00496{bottom:465.202667pt;}
.y10_c00496{bottom:465.936000pt;}
.y8_c00496{bottom:478.802667pt;}
.y9_c00496{bottom:479.233333pt;}
.ya_c00496{bottom:480.181333pt;}
.yb_c00496{bottom:480.981333pt;}
.yc_c00496{bottom:481.666667pt;}
.yd_c00496{bottom:482.349333pt;}
.y2_c00496{bottom:493.922667pt;}
.y3_c00496{bottom:494.138667pt;}
.y4_c00496{bottom:495.712000pt;}
.y5_c00496{bottom:496.158667pt;}
.y6_c00496{bottom:496.817333pt;}
.y7_c00496{bottom:497.670667pt;}
.y1_c00496{bottom:508.222667pt;}
.h11_c00496{height:42.005376pt;}
.ha_c00496{height:51.340750pt;}
.h6_c00496{height:53.207687pt;}
.hc_c00496{height:54.140262pt;}
.hd_c00496{height:56.007168pt;}
.h5_c00496{height:56.933333pt;}
.h10_c00496{height:56.940620pt;}
.h8_c00496{height:56.941560pt;}
.hf_c00496{height:57.874073pt;}
.he_c00496{height:58.807526pt;}
.h7_c00496{height:58.808496pt;}
.h4_c00496{height:59.733333pt;}
.h13_c00496{height:59.740979pt;}
.hb_c00496{height:59.741964pt;}
.h9_c00496{height:60.675432pt;}
.h3_c00496{height:61.600000pt;}
.h12_c00496{height:61.607884pt;}
.h2_c00496{height:70.933333pt;}
.h0_c00496{height:549.066667pt;}
.h1_c00496{height:549.333333pt;}
.w0_c00496{width:319.200000pt;}
.w1_c00496{width:319.333333pt;}
.x0_c00496{left:0.000000pt;}
.x3d_c00496{left:15.060000pt;}
.x18_c00496{left:17.491409pt;}
.x3_c00496{left:18.893333pt;}
.x10_c00496{left:23.712000pt;}
.x30_c00496{left:26.384381pt;}
.x61_c00496{left:28.254304pt;}
.x4_c00496{left:33.308000pt;}
.x2b_c00496{left:37.096780pt;}
.x57_c00496{left:38.147733pt;}
.x42_c00496{left:40.018667pt;}
.x1d_c00496{left:44.317569pt;}
.x9_c00496{left:49.124000pt;}
.x33_c00496{left:50.070847pt;}
.x2c_c00496{left:52.668512pt;}
.x65_c00496{left:56.958635pt;}
.x25_c00496{left:58.465856pt;}
.x58_c00496{left:60.172523pt;}
.x68_c00496{left:61.419808pt;}
.x1e_c00496{left:63.279877pt;}
.x19_c00496{left:65.050593pt;}
.x5c_c00496{left:67.322997pt;}
.x54_c00496{left:73.573707pt;}
.x29_c00496{left:76.376665pt;}
.x1f_c00496{left:78.659337pt;}
.x31_c00496{left:79.894141pt;}
.x11_c00496{left:82.462667pt;}
.x6e_c00496{left:84.004992pt;}
.x34_c00496{left:86.262016pt;}
.xe_c00496{left:87.364000pt;}
.x62_c00496{left:88.728597pt;}
.x59_c00496{left:90.172992pt;}
.x2d_c00496{left:94.723368pt;}
.x4c_c00496{left:96.325323pt;}
.x66_c00496{left:97.900011pt;}
.x43_c00496{left:100.014667pt;}
.x4d_c00496{left:106.228779pt;}
.x12_c00496{left:107.492000pt;}
.x69_c00496{left:108.942859pt;}
.x51_c00496{left:110.549941pt;}
.x26_c00496{left:111.751723pt;}
.x3e_c00496{left:113.462667pt;}
.x67_c00496{left:115.434880pt;}
.xa_c00496{left:116.821333pt;}
.x44_c00496{left:119.505333pt;}
.xf_c00496{left:120.718667pt;}
.x38_c00496{left:122.829036pt;}
.x20_c00496{left:124.949695pt;}
.x5a_c00496{left:127.609248pt;}
.x5b_c00496{left:129.019008pt;}
.x3f_c00496{left:132.157333pt;}
.x55_c00496{left:133.596213pt;}
.x13_c00496{left:134.860000pt;}
.x1_c00496{left:135.840000pt;}
.x5_c00496{left:138.153333pt;}
.x39_c00496{left:140.285036pt;}
.x4e_c00496{left:142.727701pt;}
.x63_c00496{left:147.038869pt;}
.x5d_c00496{left:148.453536pt;}
.x6f_c00496{left:150.732747pt;}
.x45_c00496{left:153.101333pt;}
.x27_c00496{left:154.478016pt;}
.x21_c00496{left:156.607304pt;}
.x4f_c00496{left:159.266357pt;}
.x2e_c00496{left:160.731856pt;}
.x1a_c00496{left:162.236939pt;}
.x64_c00496{left:165.484501pt;}
.x6_c00496{left:167.936000pt;}
.x5e_c00496{left:169.096192pt;}
.xb_c00496{left:173.930667pt;}
.x14_c00496{left:175.597333pt;}
.x52_c00496{left:176.532277pt;}
.x32_c00496{left:177.817797pt;}
.x3a_c00496{left:179.949036pt;}
.x22_c00496{left:182.319285pt;}
.x15_c00496{left:186.213333pt;}
.x6d_c00496{left:189.975936pt;}
.x70_c00496{left:194.658656pt;}
.x3b_c00496{left:195.734369pt;}
.x48_c00496{left:197.230283pt;}
.x6b_c00496{left:198.685845pt;}
.x46_c00496{left:201.300000pt;}
.x50_c00496{left:202.957856pt;}
.x23_c00496{left:203.935063pt;}
.x35_c00496{left:208.482916pt;}
.x40_c00496{left:210.209333pt;}
.x7_c00496{left:211.857333pt;}
.x47_c00496{left:213.797333pt;}
.x4a_c00496{left:215.904213pt;}
.x16_c00496{left:217.169333pt;}
.x3c_c00496{left:218.385036pt;}
.x2f_c00496{left:220.977292pt;}
.xc_c00496{left:222.890667pt;}
.x36_c00496{left:224.531732pt;}
.x2a_c00496{left:227.060092pt;}
.x5f_c00496{left:229.349387pt;}
.x41_c00496{left:230.858667pt;}
.x53_c00496{left:232.709579pt;}
.x28_c00496{left:233.680748pt;}
.x1b_c00496{left:236.135692pt;}
.x17_c00496{left:241.186667pt;}
.x24_c00496{left:243.066391pt;}
.x6c_c00496{left:249.109557pt;}
.x6a_c00496{left:251.505344pt;}
.x60_c00496{left:252.882901pt;}
.x4b_c00496{left:255.018635pt;}
.x1c_c00496{left:259.917951pt;}
.x37_c00496{left:263.683060pt;}
.x8_c00496{left:268.717333pt;}
.xd_c00496{left:271.614667pt;}
.x2_c00496{left:273.360000pt;}
.x56_c00496{left:276.824032pt;}
.x71_c00496{left:278.429429pt;}
.x49_c00496{left:286.527808pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00497 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00497 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00497 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00497 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00497{transform:matrix(0.094260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094260,0.000000,0.000000,0.250000,0,0);}
.me1_c00497{transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);}
.m9c_c00497{transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144945,0.000000,0.000000,0.250000,0,0);}
.m63_c00497{transform:matrix(0.146840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146840,0.000000,0.000000,0.250000,0,0);}
.mdf_c00497{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152955,0.000000,0.000000,0.250000,0,0);}
.m9b_c00497{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.mae_c00497{transform:matrix(0.155965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155965,0.000000,0.000000,0.250000,0,0);}
.m92_c00497{transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00497{transform:matrix(0.160835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160835,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.161740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161740,0.000000,0.000000,0.250000,0,0);}
.md5_c00497{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00497{transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162230,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);}
.me0_c00497{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.m77_c00497{transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166040,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167415,0.000000,0.000000,0.250000,0,0);}
.md4_c00497{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.mdd_c00497{transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168270,0.000000,0.000000,0.250000,0,0);}
.m7b_c00497{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);}
.mac_c00497{transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);}
.mab_c00497{transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172070,0.000000,0.000000,0.250000,0,0);}
.md8_c00497{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.mba_c00497{transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174095,0.000000,0.000000,0.250000,0,0);}
.m25_c00497{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174470,0.000000,0.000000,0.250000,0,0);}
.ma7_c00497{transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175095,0.000000,0.000000,0.250000,0,0);}
.m4f_c00497{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.mdb_c00497{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m93_c00497{transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);}
.mbe_c00497{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m95_c00497{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.md3_c00497{transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177470,0.000000,0.000000,0.250000,0,0);}
.m72_c00497{transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);}
.mbd_c00497{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.ma4_c00497{transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178430,0.000000,0.000000,0.250000,0,0);}
.m4b_c00497{transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);}
.m39_c00497{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.mc5_c00497{transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);}
.m84_c00497{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.179705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179705,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180085,0.000000,0.000000,0.250000,0,0);}
.ma6_c00497{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m8c_c00497{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.ma9_c00497{transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181580,0.000000,0.000000,0.250000,0,0);}
.m46_c00497{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.m6b_c00497{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181870,0.000000,0.000000,0.250000,0,0);}
.m65_c00497{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m76_c00497{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);}
.m89_c00497{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m23_c00497{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.ma8_c00497{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.mb4_c00497{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m68_c00497{transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);}
.m3e_c00497{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00497{transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);}
.mb6_c00497{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.m7c_c00497{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m6d_c00497{transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189280,0.000000,0.000000,0.250000,0,0);}
.md1_c00497{transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);}
.mad_c00497{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m71_c00497{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.mde_c00497{transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190695,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.ma3_c00497{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191815,0.000000,0.000000,0.250000,0,0);}
.m52_c00497{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m61_c00497{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192470,0.000000,0.000000,0.250000,0,0);}
.md7_c00497{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m7f_c00497{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.m57_c00497{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.mbb_c00497{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.me3_c00497{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.mca_c00497{transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);}
.m33_c00497{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.mb9_c00497{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.mcc_c00497{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m5a_c00497{transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00497{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m4d_c00497{transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196820,0.000000,0.000000,0.250000,0,0);}
.m6f_c00497{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m43_c00497{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.m78_c00497{transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);}
.mc3_c00497{transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198785,0.000000,0.000000,0.250000,0,0);}
.maf_c00497{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.m83_c00497{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200735,0.000000,0.000000,0.250000,0,0);}
.m50_c00497{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201435,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.mc0_c00497{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00497{transform:matrix(0.202635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202635,0.000000,0.000000,0.250000,0,0);}
.m69_c00497{transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202695,0.000000,0.000000,0.250000,0,0);}
.m96_c00497{transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);}
.m59_c00497{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204335,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m80_c00497{transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00497{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.maa_c00497{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m58_c00497{transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);}
.mbf_c00497{transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208545,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);}
.mb8_c00497{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.m91_c00497{transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00497{transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);}
.md6_c00497{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210645,0.000000,0.000000,0.250000,0,0);}
.m55_c00497{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mbc_c00497{transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);}
.md9_c00497{transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212045,0.000000,0.000000,0.250000,0,0);}
.m8f_c00497{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.m8b_c00497{transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.ma1_c00497{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.m29_c00497{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00497{transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);}
.m64_c00497{transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213960,0.000000,0.000000,0.250000,0,0);}
.mc1_c00497{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m75_c00497{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m9f_c00497{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m79_c00497{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216290,0.000000,0.000000,0.250000,0,0);}
.ma5_c00497{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00497{transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);}
.ma0_c00497{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m5d_c00497{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.mc8_c00497{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218130,0.000000,0.000000,0.250000,0,0);}
.md2_c00497{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m8e_c00497{transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220005,0.000000,0.000000,0.250000,0,0);}
.mb3_c00497{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.mc2_c00497{transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00497{transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.mcd_c00497{transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221755,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.mce_c00497{transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);}
.m51_c00497{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223240,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);}
.m97_c00497{transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223870,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m98_c00497{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.mcf_c00497{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m73_c00497{transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225265,0.000000,0.000000,0.250000,0,0);}
.m5e_c00497{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.md0_c00497{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m66_c00497{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226795,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227635,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m6a_c00497{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.229770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229770,0.000000,0.000000,0.250000,0,0);}
.m9a_c00497{transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);}
.m87_c00497{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.mc9_c00497{transform:matrix(0.233535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233535,0.000000,0.000000,0.250000,0,0);}
.m7a_c00497{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m6c_c00497{transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);}
.m99_c00497{transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);}
.m47_c00497{transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236780,0.000000,0.000000,0.250000,0,0);}
.mda_c00497{transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.237795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237795,0.000000,0.000000,0.250000,0,0);}
.mc4_c00497{transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);}
.m86_c00497{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242195,0.000000,0.000000,0.250000,0,0);}
.m49_c00497{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00497{transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);}
.mb5_c00497{transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);}
.mb7_c00497{transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);}
.m42_c00497{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m62_c00497{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m54_c00497{transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);}
.m4c_c00497{transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m90_c00497{transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);}
.mc7_c00497{transform:matrix(0.263415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263415,0.000000,0.000000,0.250000,0,0);}
.m56_c00497{transform:matrix(0.269875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269875,0.000000,0.000000,0.250000,0,0);}
.m5c_c00497{transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);}
.mcb_c00497{transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);}
.mc6_c00497{transform:matrix(0.280305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280305,0.000000,0.000000,0.250000,0,0);}
.me4_c00497{transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281395,0.000000,0.000000,0.250000,0,0);}
.mb1_c00497{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00497{transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);}
.me2_c00497{transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);}
.m2c_c00497{transform:matrix(0.323430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323430,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);}
.m48_c00497{transform:matrix(0.345975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345975,0.000000,0.000000,0.250000,0,0);}
.m53_c00497{transform:matrix(0.368955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368955,0.000000,0.000000,0.250000,0,0);}
.m74_c00497{transform:matrix(0.462755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462755,0.000000,0.000000,0.250000,0,0);}
.m70_c00497{transform:matrix(0.476925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476925,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(1.727530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727530,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:0.000000px;}
.fc0_c00497{color:transparent;}
.fsd_c00497{font-size:18.900000px;}
.fsc_c00497{font-size:53.550000px;}
.fsa_c00497{font-size:56.700000px;}
.fs7_c00497{font-size:57.750000px;}
.fs3_c00497{font-size:58.800000px;}
.fs0_c00497{font-size:59.850000px;}
.fs4_c00497{font-size:60.900000px;}
.fs5_c00497{font-size:61.950000px;}
.fs2_c00497{font-size:63.000000px;}
.fs6_c00497{font-size:64.050000px;}
.fs9_c00497{font-size:65.100000px;}
.fsb_c00497{font-size:66.150000px;}
.fs8_c00497{font-size:67.200000px;}
.fs1_c00497{font-size:68.250000px;}
.y0_c00497{bottom:0.000000px;}
.yb4_c00497{bottom:30.997500px;}
.yb3_c00497{bottom:45.703500px;}
.yb2_c00497{bottom:46.156500px;}
.yb1_c00497{bottom:46.917000px;}
.yb0_c00497{bottom:47.854500px;}
.yaf_c00497{bottom:48.111000px;}
.yae_c00497{bottom:48.378000px;}
.yad_c00497{bottom:49.300500px;}
.yac_c00497{bottom:49.683000px;}
.yab_c00497{bottom:66.123000px;}
.yaa_c00497{bottom:83.124000px;}
.ya9_c00497{bottom:97.482000px;}
.ya8_c00497{bottom:97.678500px;}
.ya7_c00497{bottom:98.592000px;}
.ya6_c00497{bottom:98.935500px;}
.ya5_c00497{bottom:99.253500px;}
.ya4_c00497{bottom:99.681000px;}
.ya3_c00497{bottom:100.173000px;}
.ya2_c00497{bottom:114.252000px;}
.ya1_c00497{bottom:114.715500px;}
.ya0_c00497{bottom:115.428000px;}
.y9f_c00497{bottom:115.567500px;}
.y9e_c00497{bottom:116.485500px;}
.y9d_c00497{bottom:116.845500px;}
.y9c_c00497{bottom:117.184500px;}
.y9b_c00497{bottom:131.269500px;}
.y9a_c00497{bottom:132.067500px;}
.y99_c00497{bottom:132.363000px;}
.y98_c00497{bottom:133.039500px;}
.y97_c00497{bottom:133.740000px;}
.y96_c00497{bottom:134.064000px;}
.y95_c00497{bottom:134.491500px;}
.y94_c00497{bottom:135.274500px;}
.y93_c00497{bottom:148.672500px;}
.y92_c00497{bottom:150.220500px;}
.y91_c00497{bottom:150.829500px;}
.y90_c00497{bottom:151.203000px;}
.y8f_c00497{bottom:167.112000px;}
.y8e_c00497{bottom:184.651500px;}
.y8d_c00497{bottom:200.131500px;}
.y8c_c00497{bottom:200.355000px;}
.y8b_c00497{bottom:201.300000px;}
.y8a_c00497{bottom:201.963000px;}
.y89_c00497{bottom:203.013000px;}
.yb5_c00497{bottom:203.850000px;}
.y88_c00497{bottom:203.851500px;}
.y87_c00497{bottom:217.413000px;}
.y86_c00497{bottom:217.858500px;}
.y85_c00497{bottom:218.073000px;}
.y84_c00497{bottom:219.139500px;}
.y83_c00497{bottom:219.514500px;}
.y82_c00497{bottom:220.591500px;}
.y81_c00497{bottom:233.680500px;}
.y80_c00497{bottom:233.940000px;}
.y7f_c00497{bottom:234.610500px;}
.y7e_c00497{bottom:235.524000px;}
.y7d_c00497{bottom:235.806000px;}
.y7c_c00497{bottom:236.119500px;}
.y7b_c00497{bottom:236.491500px;}
.y7a_c00497{bottom:236.790000px;}
.y79_c00497{bottom:250.783500px;}
.y78_c00497{bottom:251.350500px;}
.y77_c00497{bottom:251.512500px;}
.y76_c00497{bottom:252.172500px;}
.y75_c00497{bottom:252.378000px;}
.y74_c00497{bottom:252.834000px;}
.y73_c00497{bottom:253.123500px;}
.y72_c00497{bottom:253.531500px;}
.y71_c00497{bottom:267.558000px;}
.y70_c00497{bottom:267.888000px;}
.y6f_c00497{bottom:268.480500px;}
.y6e_c00497{bottom:268.807500px;}
.y6d_c00497{bottom:269.850000px;}
.y6c_c00497{bottom:270.028500px;}
.y6b_c00497{bottom:270.811500px;}
.y6a_c00497{bottom:284.488500px;}
.y69_c00497{bottom:285.744000px;}
.y68_c00497{bottom:286.188000px;}
.y67_c00497{bottom:286.749000px;}
.y66_c00497{bottom:286.992000px;}
.y65_c00497{bottom:287.553000px;}
.y64_c00497{bottom:301.446000px;}
.y63_c00497{bottom:302.032500px;}
.y62_c00497{bottom:302.472000px;}
.y61_c00497{bottom:303.138000px;}
.y60_c00497{bottom:303.358500px;}
.y5f_c00497{bottom:304.102500px;}
.y5e_c00497{bottom:304.561500px;}
.y5d_c00497{bottom:318.409500px;}
.y5c_c00497{bottom:318.775500px;}
.y5b_c00497{bottom:319.044000px;}
.y5a_c00497{bottom:319.725000px;}
.y59_c00497{bottom:320.010000px;}
.y58_c00497{bottom:321.079500px;}
.y57_c00497{bottom:321.183000px;}
.y56_c00497{bottom:321.571500px;}
.y55_c00497{bottom:335.604000px;}
.y54_c00497{bottom:335.889000px;}
.y53_c00497{bottom:336.294000px;}
.y52_c00497{bottom:336.970500px;}
.y51_c00497{bottom:337.300500px;}
.y50_c00497{bottom:337.885500px;}
.y4f_c00497{bottom:338.580000px;}
.y4e_c00497{bottom:354.409500px;}
.y4d_c00497{bottom:369.769500px;}
.y4c_c00497{bottom:370.381500px;}
.y4b_c00497{bottom:370.572000px;}
.y4a_c00497{bottom:370.771500px;}
.y49_c00497{bottom:371.232000px;}
.y48_c00497{bottom:371.416500px;}
.y47_c00497{bottom:371.947500px;}
.y46_c00497{bottom:372.601500px;}
.y45_c00497{bottom:388.822500px;}
.y44_c00497{bottom:402.673500px;}
.y43_c00497{bottom:403.545000px;}
.y42_c00497{bottom:403.800000px;}
.y41_c00497{bottom:404.265000px;}
.y40_c00497{bottom:404.953500px;}
.y3f_c00497{bottom:405.550500px;}
.y3e_c00497{bottom:406.414500px;}
.y3d_c00497{bottom:406.980000px;}
.y3c_c00497{bottom:407.431500px;}
.y3b_c00497{bottom:420.139500px;}
.y3a_c00497{bottom:420.739500px;}
.y39_c00497{bottom:421.207500px;}
.y38_c00497{bottom:421.941000px;}
.y37_c00497{bottom:422.338500px;}
.y36_c00497{bottom:422.734500px;}
.y35_c00497{bottom:423.633000px;}
.y34_c00497{bottom:437.704500px;}
.y33_c00497{bottom:437.908500px;}
.y32_c00497{bottom:438.610500px;}
.y31_c00497{bottom:438.880500px;}
.y30_c00497{bottom:440.032500px;}
.y2f_c00497{bottom:440.371500px;}
.y2e_c00497{bottom:454.398000px;}
.y2d_c00497{bottom:454.764000px;}
.y2c_c00497{bottom:455.748000px;}
.y2b_c00497{bottom:456.648000px;}
.y2a_c00497{bottom:457.653000px;}
.y29_c00497{bottom:471.334500px;}
.y28_c00497{bottom:471.496500px;}
.y27_c00497{bottom:472.144500px;}
.y26_c00497{bottom:472.572000px;}
.y25_c00497{bottom:472.902000px;}
.y24_c00497{bottom:473.476500px;}
.y23_c00497{bottom:473.871000px;}
.y22_c00497{bottom:474.393000px;}
.y21_c00497{bottom:487.824000px;}
.y20_c00497{bottom:488.062500px;}
.y1f_c00497{bottom:488.329500px;}
.y1e_c00497{bottom:489.123000px;}
.y1d_c00497{bottom:489.880500px;}
.y1c_c00497{bottom:490.564500px;}
.y1b_c00497{bottom:491.130000px;}
.y1a_c00497{bottom:491.403000px;}
.y19_c00497{bottom:505.239000px;}
.y18_c00497{bottom:505.903500px;}
.y17_c00497{bottom:506.457000px;}
.y16_c00497{bottom:506.751000px;}
.y15_c00497{bottom:507.462000px;}
.y14_c00497{bottom:507.675000px;}
.y13_c00497{bottom:508.141500px;}
.y12_c00497{bottom:522.850500px;}
.y11_c00497{bottom:523.120500px;}
.y10_c00497{bottom:523.218000px;}
.yf_c00497{bottom:523.795500px;}
.ye_c00497{bottom:524.184000px;}
.yd_c00497{bottom:524.743500px;}
.yc_c00497{bottom:525.151500px;}
.yb_c00497{bottom:538.620000px;}
.ya_c00497{bottom:538.992000px;}
.y9_c00497{bottom:539.905500px;}
.y8_c00497{bottom:540.091500px;}
.y7_c00497{bottom:540.534000px;}
.y6_c00497{bottom:540.850500px;}
.y5_c00497{bottom:541.482000px;}
.y4_c00497{bottom:541.723500px;}
.y3_c00497{bottom:542.163000px;}
.y2_c00497{bottom:557.674500px;}
.y1_c00497{bottom:571.723500px;}
.hf_c00497{height:18.900000px;}
.he_c00497{height:53.550000px;}
.hc_c00497{height:56.700000px;}
.h9_c00497{height:57.750000px;}
.h5_c00497{height:58.800000px;}
.h2_c00497{height:59.850000px;}
.h6_c00497{height:60.900000px;}
.h7_c00497{height:61.950000px;}
.h4_c00497{height:63.000000px;}
.h8_c00497{height:64.050000px;}
.hb_c00497{height:65.100000px;}
.hd_c00497{height:66.150000px;}
.ha_c00497{height:67.200000px;}
.h3_c00497{height:68.250000px;}
.h0_c00497{height:617.700000px;}
.h1_c00497{height:618.000000px;}
.w0_c00497{width:359.100000px;}
.w1_c00497{width:359.250000px;}
.x0_c00497{left:0.000000px;}
.x6a_c00497{left:33.577500px;}
.x68_c00497{left:34.966500px;}
.x56_c00497{left:36.022500px;}
.x48_c00497{left:37.123500px;}
.x37_c00497{left:39.039000px;}
.x23_c00497{left:40.138500px;}
.x8_c00497{left:41.422500px;}
.x2_c00497{left:42.930000px;}
.x72_c00497{left:45.630000px;}
.x63_c00497{left:59.670000px;}
.x1c_c00497{left:61.662000px;}
.x6e_c00497{left:64.122000px;}
.x2d_c00497{left:66.526500px;}
.x4c_c00497{left:69.843000px;}
.x4f_c00497{left:72.465000px;}
.x9_c00497{left:75.229500px;}
.x5b_c00497{left:76.827000px;}
.x4d_c00497{left:78.426000px;}
.x17_c00497{left:79.771500px;}
.x11_c00497{left:82.230000px;}
.x24_c00497{left:83.602500px;}
.x6b_c00497{left:85.749000px;}
.x5f_c00497{left:91.924500px;}
.xa_c00497{left:93.814500px;}
.x49_c00497{left:94.947000px;}
.x57_c00497{left:96.300000px;}
.x18_c00497{left:97.582500px;}
.x3_c00497{left:100.710000px;}
.x38_c00497{left:102.673500px;}
.x1d_c00497{left:105.135000px;}
.x32_c00497{left:108.367500px;}
.x58_c00497{left:110.008500px;}
.x2a_c00497{left:112.159500px;}
.x6c_c00497{left:114.282000px;}
.x25_c00497{left:116.488500px;}
.x60_c00497{left:118.110000px;}
.x3d_c00497{left:119.880000px;}
.x45_c00497{left:124.740000px;}
.x50_c00497{left:129.706500px;}
.x4_c00497{left:131.490000px;}
.x74_c00497{left:133.492500px;}
.x6d_c00497{left:135.889500px;}
.x12_c00497{left:138.120000px;}
.xb_c00497{left:142.407000px;}
.x4a_c00497{left:143.751000px;}
.x40_c00497{left:146.193000px;}
.x53_c00497{left:150.261000px;}
.x5c_c00497{left:151.393500px;}
.x75_c00497{left:154.002000px;}
.x2e_c00497{left:155.092500px;}
.x19_c00497{left:156.775500px;}
.x1e_c00497{left:157.797000px;}
.x41_c00497{left:162.931500px;}
.x26_c00497{left:164.349000px;}
.xc_c00497{left:166.699500px;}
.x33_c00497{left:169.411500px;}
.x4b_c00497{left:171.294000px;}
.x76_c00497{left:173.709000px;}
.x2f_c00497{left:175.885500px;}
.x13_c00497{left:177.001500px;}
.x66_c00497{left:179.280000px;}
.x6f_c00497{left:180.282000px;}
.x1_c00497{left:181.980000px;}
.x54_c00497{left:187.203000px;}
.x59_c00497{left:190.153500px;}
.x27_c00497{left:191.865000px;}
.x70_c00497{left:192.919500px;}
.x39_c00497{left:193.944000px;}
.x51_c00497{left:197.980500px;}
.x67_c00497{left:199.260000px;}
.xd_c00497{left:200.721000px;}
.x42_c00497{left:204.765000px;}
.xe_c00497{left:215.025000px;}
.x1f_c00497{left:216.106500px;}
.x61_c00497{left:217.744500px;}
.x64_c00497{left:220.860000px;}
.x43_c00497{left:222.853500px;}
.x34_c00497{left:225.853500px;}
.x1a_c00497{left:227.460000px;}
.x30_c00497{left:229.900500px;}
.x52_c00497{left:231.750000px;}
.x14_c00497{left:234.784500px;}
.x3a_c00497{left:236.944500px;}
.x44_c00497{left:240.166500px;}
.x15_c00497{left:244.519500px;}
.x31_c00497{left:245.547000px;}
.x2b_c00497{left:246.673500px;}
.x5_c00497{left:248.400000px;}
.x46_c00497{left:252.450000px;}
.x5d_c00497{left:253.956000px;}
.x71_c00497{left:257.721000px;}
.x35_c00497{left:261.807000px;}
.x69_c00497{left:265.006500px;}
.x3b_c00497{left:266.028000px;}
.x4e_c00497{left:270.388500px;}
.x16_c00497{left:271.525500px;}
.x2c_c00497{left:272.797500px;}
.x6_c00497{left:274.590000px;}
.x20_c00497{left:277.129500px;}
.x65_c00497{left:278.370000px;}
.x28_c00497{left:281.469000px;}
.x1b_c00497{left:282.847500px;}
.xf_c00497{left:285.270000px;}
.x5a_c00497{left:286.305000px;}
.x78_c00497{left:289.440000px;}
.x55_c00497{left:291.775500px;}
.x29_c00497{left:294.964500px;}
.x21_c00497{left:297.702000px;}
.x3e_c00497{left:300.510000px;}
.x62_c00497{left:301.971000px;}
.x77_c00497{left:304.360500px;}
.x36_c00497{left:307.917000px;}
.x79_c00497{left:309.150000px;}
.x5e_c00497{left:310.650000px;}
.x73_c00497{left:312.390000px;}
.x10_c00497{left:313.885500px;}
.x22_c00497{left:316.014000px;}
.x47_c00497{left:319.140000px;}
.x7_c00497{left:322.110000px;}
.x3c_c00497{left:336.462000px;}
.x3f_c00497{left:338.310000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fsd_c00497{font-size:16.800000pt;}
.fsc_c00497{font-size:47.600000pt;}
.fsa_c00497{font-size:50.400000pt;}
.fs7_c00497{font-size:51.333333pt;}
.fs3_c00497{font-size:52.266667pt;}
.fs0_c00497{font-size:53.200000pt;}
.fs4_c00497{font-size:54.133333pt;}
.fs5_c00497{font-size:55.066667pt;}
.fs2_c00497{font-size:56.000000pt;}
.fs6_c00497{font-size:56.933333pt;}
.fs9_c00497{font-size:57.866667pt;}
.fsb_c00497{font-size:58.800000pt;}
.fs8_c00497{font-size:59.733333pt;}
.fs1_c00497{font-size:60.666667pt;}
.y0_c00497{bottom:0.000000pt;}
.yb4_c00497{bottom:27.553333pt;}
.yb3_c00497{bottom:40.625333pt;}
.yb2_c00497{bottom:41.028000pt;}
.yb1_c00497{bottom:41.704000pt;}
.yb0_c00497{bottom:42.537333pt;}
.yaf_c00497{bottom:42.765333pt;}
.yae_c00497{bottom:43.002667pt;}
.yad_c00497{bottom:43.822667pt;}
.yac_c00497{bottom:44.162667pt;}
.yab_c00497{bottom:58.776000pt;}
.yaa_c00497{bottom:73.888000pt;}
.ya9_c00497{bottom:86.650667pt;}
.ya8_c00497{bottom:86.825333pt;}
.ya7_c00497{bottom:87.637333pt;}
.ya6_c00497{bottom:87.942667pt;}
.ya5_c00497{bottom:88.225333pt;}
.ya4_c00497{bottom:88.605333pt;}
.ya3_c00497{bottom:89.042667pt;}
.ya2_c00497{bottom:101.557333pt;}
.ya1_c00497{bottom:101.969333pt;}
.ya0_c00497{bottom:102.602667pt;}
.y9f_c00497{bottom:102.726667pt;}
.y9e_c00497{bottom:103.542667pt;}
.y9d_c00497{bottom:103.862667pt;}
.y9c_c00497{bottom:104.164000pt;}
.y9b_c00497{bottom:116.684000pt;}
.y9a_c00497{bottom:117.393333pt;}
.y99_c00497{bottom:117.656000pt;}
.y98_c00497{bottom:118.257333pt;}
.y97_c00497{bottom:118.880000pt;}
.y96_c00497{bottom:119.168000pt;}
.y95_c00497{bottom:119.548000pt;}
.y94_c00497{bottom:120.244000pt;}
.y93_c00497{bottom:132.153333pt;}
.y92_c00497{bottom:133.529333pt;}
.y91_c00497{bottom:134.070667pt;}
.y90_c00497{bottom:134.402667pt;}
.y8f_c00497{bottom:148.544000pt;}
.y8e_c00497{bottom:164.134667pt;}
.y8d_c00497{bottom:177.894667pt;}
.y8c_c00497{bottom:178.093333pt;}
.y8b_c00497{bottom:178.933333pt;}
.y8a_c00497{bottom:179.522667pt;}
.y89_c00497{bottom:180.456000pt;}
.yb5_c00497{bottom:181.200000pt;}
.y88_c00497{bottom:181.201333pt;}
.y87_c00497{bottom:193.256000pt;}
.y86_c00497{bottom:193.652000pt;}
.y85_c00497{bottom:193.842667pt;}
.y84_c00497{bottom:194.790667pt;}
.y83_c00497{bottom:195.124000pt;}
.y82_c00497{bottom:196.081333pt;}
.y81_c00497{bottom:207.716000pt;}
.y80_c00497{bottom:207.946667pt;}
.y7f_c00497{bottom:208.542667pt;}
.y7e_c00497{bottom:209.354667pt;}
.y7d_c00497{bottom:209.605333pt;}
.y7c_c00497{bottom:209.884000pt;}
.y7b_c00497{bottom:210.214667pt;}
.y7a_c00497{bottom:210.480000pt;}
.y79_c00497{bottom:222.918667pt;}
.y78_c00497{bottom:223.422667pt;}
.y77_c00497{bottom:223.566667pt;}
.y76_c00497{bottom:224.153333pt;}
.y75_c00497{bottom:224.336000pt;}
.y74_c00497{bottom:224.741333pt;}
.y73_c00497{bottom:224.998667pt;}
.y72_c00497{bottom:225.361333pt;}
.y71_c00497{bottom:237.829333pt;}
.y70_c00497{bottom:238.122667pt;}
.y6f_c00497{bottom:238.649333pt;}
.y6e_c00497{bottom:238.940000pt;}
.y6d_c00497{bottom:239.866667pt;}
.y6c_c00497{bottom:240.025333pt;}
.y6b_c00497{bottom:240.721333pt;}
.y6a_c00497{bottom:252.878667pt;}
.y69_c00497{bottom:253.994667pt;}
.y68_c00497{bottom:254.389333pt;}
.y67_c00497{bottom:254.888000pt;}
.y66_c00497{bottom:255.104000pt;}
.y65_c00497{bottom:255.602667pt;}
.y64_c00497{bottom:267.952000pt;}
.y63_c00497{bottom:268.473333pt;}
.y62_c00497{bottom:268.864000pt;}
.y61_c00497{bottom:269.456000pt;}
.y60_c00497{bottom:269.652000pt;}
.y5f_c00497{bottom:270.313333pt;}
.y5e_c00497{bottom:270.721333pt;}
.y5d_c00497{bottom:283.030667pt;}
.y5c_c00497{bottom:283.356000pt;}
.y5b_c00497{bottom:283.594667pt;}
.y5a_c00497{bottom:284.200000pt;}
.y59_c00497{bottom:284.453333pt;}
.y58_c00497{bottom:285.404000pt;}
.y57_c00497{bottom:285.496000pt;}
.y56_c00497{bottom:285.841333pt;}
.y55_c00497{bottom:298.314667pt;}
.y54_c00497{bottom:298.568000pt;}
.y53_c00497{bottom:298.928000pt;}
.y52_c00497{bottom:299.529333pt;}
.y51_c00497{bottom:299.822667pt;}
.y50_c00497{bottom:300.342667pt;}
.y4f_c00497{bottom:300.960000pt;}
.y4e_c00497{bottom:315.030667pt;}
.y4d_c00497{bottom:328.684000pt;}
.y4c_c00497{bottom:329.228000pt;}
.y4b_c00497{bottom:329.397333pt;}
.y4a_c00497{bottom:329.574667pt;}
.y49_c00497{bottom:329.984000pt;}
.y48_c00497{bottom:330.148000pt;}
.y47_c00497{bottom:330.620000pt;}
.y46_c00497{bottom:331.201333pt;}
.y45_c00497{bottom:345.620000pt;}
.y44_c00497{bottom:357.932000pt;}
.y43_c00497{bottom:358.706667pt;}
.y42_c00497{bottom:358.933333pt;}
.y41_c00497{bottom:359.346667pt;}
.y40_c00497{bottom:359.958667pt;}
.y3f_c00497{bottom:360.489333pt;}
.y3e_c00497{bottom:361.257333pt;}
.y3d_c00497{bottom:361.760000pt;}
.y3c_c00497{bottom:362.161333pt;}
.y3b_c00497{bottom:373.457333pt;}
.y3a_c00497{bottom:373.990667pt;}
.y39_c00497{bottom:374.406667pt;}
.y38_c00497{bottom:375.058667pt;}
.y37_c00497{bottom:375.412000pt;}
.y36_c00497{bottom:375.764000pt;}
.y35_c00497{bottom:376.562667pt;}
.y34_c00497{bottom:389.070667pt;}
.y33_c00497{bottom:389.252000pt;}
.y32_c00497{bottom:389.876000pt;}
.y31_c00497{bottom:390.116000pt;}
.y30_c00497{bottom:391.140000pt;}
.y2f_c00497{bottom:391.441333pt;}
.y2e_c00497{bottom:403.909333pt;}
.y2d_c00497{bottom:404.234667pt;}
.y2c_c00497{bottom:405.109333pt;}
.y2b_c00497{bottom:405.909333pt;}
.y2a_c00497{bottom:406.802667pt;}
.y29_c00497{bottom:418.964000pt;}
.y28_c00497{bottom:419.108000pt;}
.y27_c00497{bottom:419.684000pt;}
.y26_c00497{bottom:420.064000pt;}
.y25_c00497{bottom:420.357333pt;}
.y24_c00497{bottom:420.868000pt;}
.y23_c00497{bottom:421.218667pt;}
.y22_c00497{bottom:421.682667pt;}
.y21_c00497{bottom:433.621333pt;}
.y20_c00497{bottom:433.833333pt;}
.y1f_c00497{bottom:434.070667pt;}
.y1e_c00497{bottom:434.776000pt;}
.y1d_c00497{bottom:435.449333pt;}
.y1c_c00497{bottom:436.057333pt;}
.y1b_c00497{bottom:436.560000pt;}
.y1a_c00497{bottom:436.802667pt;}
.y19_c00497{bottom:449.101333pt;}
.y18_c00497{bottom:449.692000pt;}
.y17_c00497{bottom:450.184000pt;}
.y16_c00497{bottom:450.445333pt;}
.y15_c00497{bottom:451.077333pt;}
.y14_c00497{bottom:451.266667pt;}
.y13_c00497{bottom:451.681333pt;}
.y12_c00497{bottom:464.756000pt;}
.y11_c00497{bottom:464.996000pt;}
.y10_c00497{bottom:465.082667pt;}
.yf_c00497{bottom:465.596000pt;}
.ye_c00497{bottom:465.941333pt;}
.yd_c00497{bottom:466.438667pt;}
.yc_c00497{bottom:466.801333pt;}
.yb_c00497{bottom:478.773333pt;}
.ya_c00497{bottom:479.104000pt;}
.y9_c00497{bottom:479.916000pt;}
.y8_c00497{bottom:480.081333pt;}
.y7_c00497{bottom:480.474667pt;}
.y6_c00497{bottom:480.756000pt;}
.y5_c00497{bottom:481.317333pt;}
.y4_c00497{bottom:481.532000pt;}
.y3_c00497{bottom:481.922667pt;}
.y2_c00497{bottom:495.710667pt;}
.y1_c00497{bottom:508.198667pt;}
.hf_c00497{height:16.800000pt;}
.he_c00497{height:47.600000pt;}
.hc_c00497{height:50.400000pt;}
.h9_c00497{height:51.333333pt;}
.h5_c00497{height:52.266667pt;}
.h2_c00497{height:53.200000pt;}
.h6_c00497{height:54.133333pt;}
.h7_c00497{height:55.066667pt;}
.h4_c00497{height:56.000000pt;}
.h8_c00497{height:56.933333pt;}
.hb_c00497{height:57.866667pt;}
.hd_c00497{height:58.800000pt;}
.ha_c00497{height:59.733333pt;}
.h3_c00497{height:60.666667pt;}
.h0_c00497{height:549.066667pt;}
.h1_c00497{height:549.333333pt;}
.w0_c00497{width:319.200000pt;}
.w1_c00497{width:319.333333pt;}
.x0_c00497{left:0.000000pt;}
.x6a_c00497{left:29.846667pt;}
.x68_c00497{left:31.081333pt;}
.x56_c00497{left:32.020000pt;}
.x48_c00497{left:32.998667pt;}
.x37_c00497{left:34.701333pt;}
.x23_c00497{left:35.678667pt;}
.x8_c00497{left:36.820000pt;}
.x2_c00497{left:38.160000pt;}
.x72_c00497{left:40.560000pt;}
.x63_c00497{left:53.040000pt;}
.x1c_c00497{left:54.810667pt;}
.x6e_c00497{left:56.997333pt;}
.x2d_c00497{left:59.134667pt;}
.x4c_c00497{left:62.082667pt;}
.x4f_c00497{left:64.413333pt;}
.x9_c00497{left:66.870667pt;}
.x5b_c00497{left:68.290667pt;}
.x4d_c00497{left:69.712000pt;}
.x17_c00497{left:70.908000pt;}
.x11_c00497{left:73.093333pt;}
.x24_c00497{left:74.313333pt;}
.x6b_c00497{left:76.221333pt;}
.x5f_c00497{left:81.710667pt;}
.xa_c00497{left:83.390667pt;}
.x49_c00497{left:84.397333pt;}
.x57_c00497{left:85.600000pt;}
.x18_c00497{left:86.740000pt;}
.x3_c00497{left:89.520000pt;}
.x38_c00497{left:91.265333pt;}
.x1d_c00497{left:93.453333pt;}
.x32_c00497{left:96.326667pt;}
.x58_c00497{left:97.785333pt;}
.x2a_c00497{left:99.697333pt;}
.x6c_c00497{left:101.584000pt;}
.x25_c00497{left:103.545333pt;}
.x60_c00497{left:104.986667pt;}
.x3d_c00497{left:106.560000pt;}
.x45_c00497{left:110.880000pt;}
.x50_c00497{left:115.294667pt;}
.x4_c00497{left:116.880000pt;}
.x74_c00497{left:118.660000pt;}
.x6d_c00497{left:120.790667pt;}
.x12_c00497{left:122.773333pt;}
.xb_c00497{left:126.584000pt;}
.x4a_c00497{left:127.778667pt;}
.x40_c00497{left:129.949333pt;}
.x53_c00497{left:133.565333pt;}
.x5c_c00497{left:134.572000pt;}
.x75_c00497{left:136.890667pt;}
.x2e_c00497{left:137.860000pt;}
.x19_c00497{left:139.356000pt;}
.x1e_c00497{left:140.264000pt;}
.x41_c00497{left:144.828000pt;}
.x26_c00497{left:146.088000pt;}
.xc_c00497{left:148.177333pt;}
.x33_c00497{left:150.588000pt;}
.x4b_c00497{left:152.261333pt;}
.x76_c00497{left:154.408000pt;}
.x2f_c00497{left:156.342667pt;}
.x13_c00497{left:157.334667pt;}
.x66_c00497{left:159.360000pt;}
.x6f_c00497{left:160.250667pt;}
.x1_c00497{left:161.760000pt;}
.x54_c00497{left:166.402667pt;}
.x59_c00497{left:169.025333pt;}
.x27_c00497{left:170.546667pt;}
.x70_c00497{left:171.484000pt;}
.x39_c00497{left:172.394667pt;}
.x51_c00497{left:175.982667pt;}
.x67_c00497{left:177.120000pt;}
.xd_c00497{left:178.418667pt;}
.x42_c00497{left:182.013333pt;}
.xe_c00497{left:191.133333pt;}
.x1f_c00497{left:192.094667pt;}
.x61_c00497{left:193.550667pt;}
.x64_c00497{left:196.320000pt;}
.x43_c00497{left:198.092000pt;}
.x34_c00497{left:200.758667pt;}
.x1a_c00497{left:202.186667pt;}
.x30_c00497{left:204.356000pt;}
.x52_c00497{left:206.000000pt;}
.x14_c00497{left:208.697333pt;}
.x3a_c00497{left:210.617333pt;}
.x44_c00497{left:213.481333pt;}
.x15_c00497{left:217.350667pt;}
.x31_c00497{left:218.264000pt;}
.x2b_c00497{left:219.265333pt;}
.x5_c00497{left:220.800000pt;}
.x46_c00497{left:224.400000pt;}
.x5d_c00497{left:225.738667pt;}
.x71_c00497{left:229.085333pt;}
.x35_c00497{left:232.717333pt;}
.x69_c00497{left:235.561333pt;}
.x3b_c00497{left:236.469333pt;}
.x4e_c00497{left:240.345333pt;}
.x16_c00497{left:241.356000pt;}
.x2c_c00497{left:242.486667pt;}
.x6_c00497{left:244.080000pt;}
.x20_c00497{left:246.337333pt;}
.x65_c00497{left:247.440000pt;}
.x28_c00497{left:250.194667pt;}
.x1b_c00497{left:251.420000pt;}
.xf_c00497{left:253.573333pt;}
.x5a_c00497{left:254.493333pt;}
.x78_c00497{left:257.280000pt;}
.x55_c00497{left:259.356000pt;}
.x29_c00497{left:262.190667pt;}
.x21_c00497{left:264.624000pt;}
.x3e_c00497{left:267.120000pt;}
.x62_c00497{left:268.418667pt;}
.x77_c00497{left:270.542667pt;}
.x36_c00497{left:273.704000pt;}
.x79_c00497{left:274.800000pt;}
.x5e_c00497{left:276.133333pt;}
.x73_c00497{left:277.680000pt;}
.x10_c00497{left:279.009333pt;}
.x22_c00497{left:280.901333pt;}
.x47_c00497{left:283.680000pt;}
.x7_c00497{left:286.320000pt;}
.x3c_c00497{left:299.077333pt;}
.x3f_c00497{left:300.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00498 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00498 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00498 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00498 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_28bbdde7aa22dd138ee0c6cc.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c00498{transform:matrix(0.018488,-0.000259,0.003500,0.249976,0,0);-ms-transform:matrix(0.018488,-0.000259,0.003500,0.249976,0,0);-webkit-transform:matrix(0.018488,-0.000259,0.003500,0.249976,0,0);}
.m1_c00498{transform:matrix(0.042022,-0.000462,0.002750,0.249985,0,0);-ms-transform:matrix(0.042022,-0.000462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.042022,-0.000462,0.002750,0.249985,0,0);}
.m7f_c00498{transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);}
.m5e_c00498{transform:matrix(0.137627,-0.001514,0.002750,0.249985,0,0);-ms-transform:matrix(0.137627,-0.001514,0.002750,0.249985,0,0);-webkit-transform:matrix(0.137627,-0.001514,0.002750,0.249985,0,0);}
.m0_c00498{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.mcb_c00498{transform:matrix(0.145693,-0.001894,0.003250,0.249979,0,0);-ms-transform:matrix(0.145693,-0.001894,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145693,-0.001894,0.003250,0.249979,0,0);}
.m72_c00498{transform:matrix(0.145796,-0.001604,0.002750,0.249985,0,0);-ms-transform:matrix(0.145796,-0.001604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145796,-0.001604,0.002750,0.249985,0,0);}
.m29_c00498{transform:matrix(0.146136,-0.001607,0.002750,0.249985,0,0);-ms-transform:matrix(0.146136,-0.001607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146136,-0.001607,0.002750,0.249985,0,0);}
.m98_c00498{transform:matrix(0.146556,-0.002052,0.003500,0.249976,0,0);-ms-transform:matrix(0.146556,-0.002052,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146556,-0.002052,0.003500,0.249976,0,0);}
.m80_c00498{transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147165,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{transform:matrix(0.148496,-0.001633,0.002750,0.249985,0,0);-ms-transform:matrix(0.148496,-0.001633,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148496,-0.001633,0.002750,0.249985,0,0);}
.m82_c00498{transform:matrix(0.149845,-0.002098,0.003500,0.249976,0,0);-ms-transform:matrix(0.149845,-0.002098,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149845,-0.002098,0.003500,0.249976,0,0);}
.ma0_c00498{transform:matrix(0.152325,-0.002133,0.003500,0.249976,0,0);-ms-transform:matrix(0.152325,-0.002133,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152325,-0.002133,0.003500,0.249976,0,0);}
.m1a_c00498{transform:matrix(0.152361,-0.001676,0.002750,0.249985,0,0);-ms-transform:matrix(0.152361,-0.001676,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152361,-0.001676,0.002750,0.249985,0,0);}
.m19_c00498{transform:matrix(0.155316,-0.001708,0.002750,0.249985,0,0);-ms-transform:matrix(0.155316,-0.001708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155316,-0.001708,0.002750,0.249985,0,0);}
.mc0_c00498{transform:matrix(0.155660,-0.002179,0.003500,0.249976,0,0);-ms-transform:matrix(0.155660,-0.002179,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155660,-0.002179,0.003500,0.249976,0,0);}
.m3b_c00498{transform:matrix(0.156381,-0.001720,0.002750,0.249985,0,0);-ms-transform:matrix(0.156381,-0.001720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156381,-0.001720,0.002750,0.249985,0,0);}
.m2a_c00498{transform:matrix(0.158045,-0.001738,0.002750,0.249985,0,0);-ms-transform:matrix(0.158045,-0.001738,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158045,-0.001738,0.002750,0.249985,0,0);}
.m28_c00498{transform:matrix(0.158880,-0.001748,0.002750,0.249985,0,0);-ms-transform:matrix(0.158880,-0.001748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158880,-0.001748,0.002750,0.249985,0,0);}
.m5c_c00498{transform:matrix(0.160695,-0.001768,0.002750,0.249985,0,0);-ms-transform:matrix(0.160695,-0.001768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160695,-0.001768,0.002750,0.249985,0,0);}
.mc6_c00498{transform:matrix(0.167174,-0.002340,0.003500,0.249976,0,0);-ms-transform:matrix(0.167174,-0.002340,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167174,-0.002340,0.003500,0.249976,0,0);}
.m9b_c00498{transform:matrix(0.167334,-0.002343,0.003500,0.249976,0,0);-ms-transform:matrix(0.167334,-0.002343,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167334,-0.002343,0.003500,0.249976,0,0);}
.mc2_c00498{transform:matrix(0.170358,-0.002385,0.003500,0.249976,0,0);-ms-transform:matrix(0.170358,-0.002385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170358,-0.002385,0.003500,0.249976,0,0);}
.mc3_c00498{transform:matrix(0.170903,-0.002393,0.003500,0.249976,0,0);-ms-transform:matrix(0.170903,-0.002393,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170903,-0.002393,0.003500,0.249976,0,0);}
.m5b_c00498{transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);}
.m38_c00498{transform:matrix(0.172365,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172365,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172365,-0.001896,0.002750,0.249985,0,0);}
.m17_c00498{transform:matrix(0.172785,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172785,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172785,-0.001901,0.002750,0.249985,0,0);}
.m27_c00498{transform:matrix(0.172850,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172850,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172850,-0.001901,0.002750,0.249985,0,0);}
.mb5_c00498{transform:matrix(0.173098,-0.002423,0.003500,0.249976,0,0);-ms-transform:matrix(0.173098,-0.002423,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173098,-0.002423,0.003500,0.249976,0,0);}
.m8b_c00498{transform:matrix(0.173153,-0.002424,0.003500,0.249976,0,0);-ms-transform:matrix(0.173153,-0.002424,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173153,-0.002424,0.003500,0.249976,0,0);}
.m3d_c00498{transform:matrix(0.173500,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173500,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173500,-0.001908,0.002750,0.249985,0,0);}
.m92_c00498{transform:matrix(0.173513,-0.002429,0.003500,0.249976,0,0);-ms-transform:matrix(0.173513,-0.002429,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173513,-0.002429,0.003500,0.249976,0,0);}
.m32_c00498{transform:matrix(0.174094,-0.001915,0.002750,0.249985,0,0);-ms-transform:matrix(0.174094,-0.001915,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174094,-0.001915,0.002750,0.249985,0,0);}
.m8_c00498{transform:matrix(0.174639,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174639,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174639,-0.001921,0.002750,0.249985,0,0);}
.m57_c00498{transform:matrix(0.175224,-0.001927,0.002750,0.249985,0,0);-ms-transform:matrix(0.175224,-0.001927,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175224,-0.001927,0.002750,0.249985,0,0);}
.m36_c00498{transform:matrix(0.175584,-0.001931,0.002750,0.249985,0,0);-ms-transform:matrix(0.175584,-0.001931,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175584,-0.001931,0.002750,0.249985,0,0);}
.m71_c00498{transform:matrix(0.175849,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175849,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175849,-0.001934,0.002750,0.249985,0,0);}
.m1c_c00498{transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);-ms-transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176909,-0.001946,0.002750,0.249985,0,0);}
.m1b_c00498{transform:matrix(0.177114,-0.001948,0.002750,0.249985,0,0);-ms-transform:matrix(0.177114,-0.001948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177114,-0.001948,0.002750,0.249985,0,0);}
.m65_c00498{transform:matrix(0.177444,-0.001952,0.002750,0.249985,0,0);-ms-transform:matrix(0.177444,-0.001952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177444,-0.001952,0.002750,0.249985,0,0);}
.mc5_c00498{transform:matrix(0.177488,-0.002485,0.003500,0.249976,0,0);-ms-transform:matrix(0.177488,-0.002485,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177488,-0.002485,0.003500,0.249976,0,0);}
.m9_c00498{transform:matrix(0.177494,-0.001952,0.002750,0.249985,0,0);-ms-transform:matrix(0.177494,-0.001952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177494,-0.001952,0.002750,0.249985,0,0);}
.m30_c00498{transform:matrix(0.177824,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177824,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177824,-0.001956,0.002750,0.249985,0,0);}
.m70_c00498{transform:matrix(0.177884,-0.001957,0.002750,0.249985,0,0);-ms-transform:matrix(0.177884,-0.001957,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177884,-0.001957,0.002750,0.249985,0,0);}
.m84_c00498{transform:matrix(0.178043,-0.002493,0.003500,0.249976,0,0);-ms-transform:matrix(0.178043,-0.002493,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178043,-0.002493,0.003500,0.249976,0,0);}
.mc7_c00498{transform:matrix(0.178395,-0.002319,0.003250,0.249979,0,0);-ms-transform:matrix(0.178395,-0.002319,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178395,-0.002319,0.003250,0.249979,0,0);}
.m76_c00498{transform:matrix(0.178774,-0.001967,0.002750,0.249985,0,0);-ms-transform:matrix(0.178774,-0.001967,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178774,-0.001967,0.002750,0.249985,0,0);}
.m10_c00498{transform:matrix(0.179284,-0.001972,0.002750,0.249985,0,0);-ms-transform:matrix(0.179284,-0.001972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179284,-0.001972,0.002750,0.249985,0,0);}
.m13_c00498{transform:matrix(0.179364,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179364,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179364,-0.001973,0.002750,0.249985,0,0);}
.m49_c00498{transform:matrix(0.179464,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179464,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179464,-0.001974,0.002750,0.249985,0,0);}
.m15_c00498{transform:matrix(0.179789,-0.001978,0.002750,0.249985,0,0);-ms-transform:matrix(0.179789,-0.001978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179789,-0.001978,0.002750,0.249985,0,0);}
.m75_c00498{transform:matrix(0.180104,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180104,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180104,-0.001981,0.002750,0.249985,0,0);}
.m7_c00498{transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);}
.m87_c00498{transform:matrix(0.180262,-0.002524,0.003500,0.249976,0,0);-ms-transform:matrix(0.180262,-0.002524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180262,-0.002524,0.003500,0.249976,0,0);}
.m4a_c00498{transform:matrix(0.180324,-0.001984,0.002750,0.249985,0,0);-ms-transform:matrix(0.180324,-0.001984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180324,-0.001984,0.002750,0.249985,0,0);}
.m73_c00498{transform:matrix(0.180899,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180899,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180899,-0.001990,0.002750,0.249985,0,0);}
.m59_c00498{transform:matrix(0.180984,-0.001991,0.002750,0.249985,0,0);-ms-transform:matrix(0.180984,-0.001991,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180984,-0.001991,0.002750,0.249985,0,0);}
.m60_c00498{transform:matrix(0.181604,-0.001998,0.002750,0.249985,0,0);-ms-transform:matrix(0.181604,-0.001998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181604,-0.001998,0.002750,0.249985,0,0);}
.mc1_c00498{transform:matrix(0.181737,-0.002544,0.003500,0.249976,0,0);-ms-transform:matrix(0.181737,-0.002544,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181737,-0.002544,0.003500,0.249976,0,0);}
.m58_c00498{transform:matrix(0.181784,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181784,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181784,-0.002000,0.002750,0.249985,0,0);}
.m88_c00498{transform:matrix(0.182757,-0.002559,0.003500,0.249976,0,0);-ms-transform:matrix(0.182757,-0.002559,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182757,-0.002559,0.003500,0.249976,0,0);}
.maf_c00498{transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);-ms-transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182927,-0.002561,0.003500,0.249976,0,0);}
.m74_c00498{transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182949,-0.002012,0.002750,0.249985,0,0);}
.maa_c00498{transform:matrix(0.183162,-0.002564,0.003500,0.249976,0,0);-ms-transform:matrix(0.183162,-0.002564,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183162,-0.002564,0.003500,0.249976,0,0);}
.mb9_c00498{transform:matrix(0.183202,-0.002565,0.003500,0.249976,0,0);-ms-transform:matrix(0.183202,-0.002565,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183202,-0.002565,0.003500,0.249976,0,0);}
.m2b_c00498{transform:matrix(0.183339,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183339,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183339,-0.002017,0.002750,0.249985,0,0);}
.mc_c00498{transform:matrix(0.184269,-0.002027,0.002750,0.249985,0,0);-ms-transform:matrix(0.184269,-0.002027,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184269,-0.002027,0.002750,0.249985,0,0);}
.ma8_c00498{transform:matrix(0.184457,-0.002582,0.003500,0.249976,0,0);-ms-transform:matrix(0.184457,-0.002582,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184457,-0.002582,0.003500,0.249976,0,0);}
.m3_c00498{transform:matrix(0.184484,-0.002029,0.002750,0.249985,0,0);-ms-transform:matrix(0.184484,-0.002029,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184484,-0.002029,0.002750,0.249985,0,0);}
.m25_c00498{transform:matrix(0.185354,-0.002039,0.002750,0.249985,0,0);-ms-transform:matrix(0.185354,-0.002039,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185354,-0.002039,0.002750,0.249985,0,0);}
.ma9_c00498{transform:matrix(0.185437,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185437,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185437,-0.002596,0.003500,0.249976,0,0);}
.m8c_c00498{transform:matrix(0.185857,-0.002602,0.003500,0.249976,0,0);-ms-transform:matrix(0.185857,-0.002602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185857,-0.002602,0.003500,0.249976,0,0);}
.m91_c00498{transform:matrix(0.185922,-0.002603,0.003500,0.249976,0,0);-ms-transform:matrix(0.185922,-0.002603,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185922,-0.002603,0.003500,0.249976,0,0);}
.m69_c00498{transform:matrix(0.186179,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186179,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186179,-0.002048,0.002750,0.249985,0,0);}
.m2d_c00498{transform:matrix(0.186764,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186764,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186764,-0.002054,0.002750,0.249985,0,0);}
.m8d_c00498{transform:matrix(0.187422,-0.002624,0.003500,0.249976,0,0);-ms-transform:matrix(0.187422,-0.002624,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187422,-0.002624,0.003500,0.249976,0,0);}
.m9a_c00498{transform:matrix(0.187517,-0.002625,0.003500,0.249976,0,0);-ms-transform:matrix(0.187517,-0.002625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187517,-0.002625,0.003500,0.249976,0,0);}
.mcd_c00498{transform:matrix(0.187769,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187769,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187769,-0.002441,0.003250,0.249979,0,0);}
.m77_c00498{transform:matrix(0.187809,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187809,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187809,-0.002066,0.002750,0.249985,0,0);}
.m7d_c00498{transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187870,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.188044,-0.002068,0.002750,0.249985,0,0);-ms-transform:matrix(0.188044,-0.002068,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188044,-0.002068,0.002750,0.249985,0,0);}
.m6_c00498{transform:matrix(0.188644,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188644,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188644,-0.002075,0.002750,0.249985,0,0);}
.m48_c00498{transform:matrix(0.188904,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188904,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188904,-0.002078,0.002750,0.249985,0,0);}
.ma7_c00498{transform:matrix(0.189076,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189076,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189076,-0.002647,0.003500,0.249976,0,0);}
.mb7_c00498{transform:matrix(0.189266,-0.002650,0.003500,0.249976,0,0);-ms-transform:matrix(0.189266,-0.002650,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189266,-0.002650,0.003500,0.249976,0,0);}
.m4b_c00498{transform:matrix(0.189279,-0.002082,0.002750,0.249985,0,0);-ms-transform:matrix(0.189279,-0.002082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189279,-0.002082,0.002750,0.249985,0,0);}
.mba_c00498{transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);-ms-transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189511,-0.002653,0.003500,0.249976,0,0);}
.m3a_c00498{transform:matrix(0.189544,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189544,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189544,-0.002085,0.002750,0.249985,0,0);}
.m5d_c00498{transform:matrix(0.189894,-0.002089,0.002750,0.249985,0,0);-ms-transform:matrix(0.189894,-0.002089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189894,-0.002089,0.002750,0.249985,0,0);}
.m9d_c00498{transform:matrix(0.190216,-0.002663,0.003500,0.249976,0,0);-ms-transform:matrix(0.190216,-0.002663,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190216,-0.002663,0.003500,0.249976,0,0);}
.mb4_c00498{transform:matrix(0.190381,-0.002665,0.003500,0.249976,0,0);-ms-transform:matrix(0.190381,-0.002665,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190381,-0.002665,0.003500,0.249976,0,0);}
.m31_c00498{transform:matrix(0.190998,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.190998,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190998,-0.002101,0.002750,0.249985,0,0);}
.m85_c00498{transform:matrix(0.192131,-0.002690,0.003500,0.249976,0,0);-ms-transform:matrix(0.192131,-0.002690,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192131,-0.002690,0.003500,0.249976,0,0);}
.m6f_c00498{transform:matrix(0.192673,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192673,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192673,-0.002119,0.002750,0.249985,0,0);}
.m2c_c00498{transform:matrix(0.193323,-0.002127,0.002750,0.249985,0,0);-ms-transform:matrix(0.193323,-0.002127,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193323,-0.002127,0.002750,0.249985,0,0);}
.m33_c00498{transform:matrix(0.193418,-0.002128,0.002750,0.249985,0,0);-ms-transform:matrix(0.193418,-0.002128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193418,-0.002128,0.002750,0.249985,0,0);}
.mae_c00498{transform:matrix(0.193456,-0.002708,0.003500,0.249976,0,0);-ms-transform:matrix(0.193456,-0.002708,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193456,-0.002708,0.003500,0.249976,0,0);}
.m11_c00498{transform:matrix(0.193738,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193738,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193738,-0.002131,0.002750,0.249985,0,0);}
.ma2_c00498{transform:matrix(0.193751,-0.002713,0.003500,0.249976,0,0);-ms-transform:matrix(0.193751,-0.002713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193751,-0.002713,0.003500,0.249976,0,0);}
.m8a_c00498{transform:matrix(0.194011,-0.002716,0.003500,0.249976,0,0);-ms-transform:matrix(0.194011,-0.002716,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194011,-0.002716,0.003500,0.249976,0,0);}
.m51_c00498{transform:matrix(0.194748,-0.002142,0.002750,0.249985,0,0);-ms-transform:matrix(0.194748,-0.002142,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194748,-0.002142,0.002750,0.249985,0,0);}
.m62_c00498{transform:matrix(0.194813,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194813,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194813,-0.002143,0.002750,0.249985,0,0);}
.m47_c00498{transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);}
.m44_c00498{transform:matrix(0.194988,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.194988,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194988,-0.002145,0.002750,0.249985,0,0);}
.m18_c00498{transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195138,-0.002147,0.002750,0.249985,0,0);}
.md_c00498{transform:matrix(0.195678,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195678,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195678,-0.002152,0.002750,0.249985,0,0);}
.m64_c00498{transform:matrix(0.195713,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195713,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195713,-0.002153,0.002750,0.249985,0,0);}
.mbd_c00498{transform:matrix(0.195796,-0.002741,0.003500,0.249976,0,0);-ms-transform:matrix(0.195796,-0.002741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195796,-0.002741,0.003500,0.249976,0,0);}
.mca_c00498{transform:matrix(0.195983,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.195983,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195983,-0.002548,0.003250,0.249979,0,0);}
.m6b_c00498{transform:matrix(0.196053,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196053,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196053,-0.002157,0.002750,0.249985,0,0);}
.m2f_c00498{transform:matrix(0.196748,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196748,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196748,-0.002164,0.002750,0.249985,0,0);}
.m2_c00498{transform:matrix(0.197528,-0.002173,0.002750,0.249985,0,0);-ms-transform:matrix(0.197528,-0.002173,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197528,-0.002173,0.002750,0.249985,0,0);}
.m45_c00498{transform:matrix(0.197758,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197758,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197758,-0.002175,0.002750,0.249985,0,0);}
.m9e_c00498{transform:matrix(0.197956,-0.002771,0.003500,0.249976,0,0);-ms-transform:matrix(0.197956,-0.002771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197956,-0.002771,0.003500,0.249976,0,0);}
.m6d_c00498{transform:matrix(0.198038,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.198038,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198038,-0.002178,0.002750,0.249985,0,0);}
.m7c_c00498{transform:matrix(0.198073,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198073,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198073,-0.002179,0.002750,0.249985,0,0);}
.m95_c00498{transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);-ms-transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198231,-0.002775,0.003500,0.249976,0,0);}
.mbf_c00498{transform:matrix(0.199340,-0.002791,0.003500,0.249976,0,0);-ms-transform:matrix(0.199340,-0.002791,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199340,-0.002791,0.003500,0.249976,0,0);}
.m9c_c00498{transform:matrix(0.199460,-0.002792,0.003500,0.249976,0,0);-ms-transform:matrix(0.199460,-0.002792,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199460,-0.002792,0.003500,0.249976,0,0);}
.m4_c00498{transform:matrix(0.199653,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199653,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199653,-0.002196,0.002750,0.249985,0,0);}
.m8f_c00498{transform:matrix(0.199675,-0.002795,0.003500,0.249976,0,0);-ms-transform:matrix(0.199675,-0.002795,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199675,-0.002795,0.003500,0.249976,0,0);}
.m5a_c00498{transform:matrix(0.199793,-0.002198,0.002750,0.249985,0,0);-ms-transform:matrix(0.199793,-0.002198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199793,-0.002198,0.002750,0.249985,0,0);}
.m66_c00498{transform:matrix(0.200333,-0.002204,0.002750,0.249985,0,0);-ms-transform:matrix(0.200333,-0.002204,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200333,-0.002204,0.002750,0.249985,0,0);}
.m9f_c00498{transform:matrix(0.200725,-0.002810,0.003500,0.249976,0,0);-ms-transform:matrix(0.200725,-0.002810,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200725,-0.002810,0.003500,0.249976,0,0);}
.m1d_c00498{transform:matrix(0.200913,-0.002210,0.002750,0.249985,0,0);-ms-transform:matrix(0.200913,-0.002210,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200913,-0.002210,0.002750,0.249985,0,0);}
.m54_c00498{transform:matrix(0.201518,-0.002217,0.002750,0.249985,0,0);-ms-transform:matrix(0.201518,-0.002217,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201518,-0.002217,0.002750,0.249985,0,0);}
.ma_c00498{transform:matrix(0.201858,-0.002220,0.002750,0.249985,0,0);-ms-transform:matrix(0.201858,-0.002220,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201858,-0.002220,0.002750,0.249985,0,0);}
.mad_c00498{transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201940,-0.002827,0.003500,0.249976,0,0);}
.m35_c00498{transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202133,-0.002223,0.002750,0.249985,0,0);}
.m39_c00498{transform:matrix(0.202503,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202503,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202503,-0.002228,0.002750,0.249985,0,0);}
.m4d_c00498{transform:matrix(0.202713,-0.002230,0.002750,0.249985,0,0);-ms-transform:matrix(0.202713,-0.002230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202713,-0.002230,0.002750,0.249985,0,0);}
.mbe_c00498{transform:matrix(0.202785,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202785,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202785,-0.002839,0.003500,0.249976,0,0);}
.m99_c00498{transform:matrix(0.202910,-0.002841,0.003500,0.249976,0,0);-ms-transform:matrix(0.202910,-0.002841,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202910,-0.002841,0.003500,0.249976,0,0);}
.m42_c00498{transform:matrix(0.203268,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203268,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203268,-0.002236,0.002750,0.249985,0,0);}
.mb6_c00498{transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);-ms-transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);}
.m37_c00498{transform:matrix(0.203838,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203838,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203838,-0.002242,0.002750,0.249985,0,0);}
.ma1_c00498{transform:matrix(0.204240,-0.002859,0.003500,0.249976,0,0);-ms-transform:matrix(0.204240,-0.002859,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204240,-0.002859,0.003500,0.249976,0,0);}
.m26_c00498{transform:matrix(0.204373,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204373,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204373,-0.002248,0.002750,0.249985,0,0);}
.mc8_c00498{transform:matrix(0.204633,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204633,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204633,-0.002660,0.003250,0.249979,0,0);}
.m97_c00498{transform:matrix(0.204950,-0.002869,0.003500,0.249976,0,0);-ms-transform:matrix(0.204950,-0.002869,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204950,-0.002869,0.003500,0.249976,0,0);}
.m7a_c00498{transform:matrix(0.205053,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205053,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205053,-0.002256,0.002750,0.249985,0,0);}
.m12_c00498{transform:matrix(0.205513,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205513,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205513,-0.002261,0.002750,0.249985,0,0);}
.m2e_c00498{transform:matrix(0.205843,-0.002264,0.002750,0.249985,0,0);-ms-transform:matrix(0.205843,-0.002264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205843,-0.002264,0.002750,0.249985,0,0);}
.mbb_c00498{transform:matrix(0.206835,-0.002896,0.003500,0.249976,0,0);-ms-transform:matrix(0.206835,-0.002896,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206835,-0.002896,0.003500,0.249976,0,0);}
.m21_c00498{transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);}
.mb2_c00498{transform:matrix(0.207130,-0.002900,0.003500,0.249976,0,0);-ms-transform:matrix(0.207130,-0.002900,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207130,-0.002900,0.003500,0.249976,0,0);}
.m86_c00498{transform:matrix(0.207365,-0.002903,0.003500,0.249976,0,0);-ms-transform:matrix(0.207365,-0.002903,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207365,-0.002903,0.003500,0.249976,0,0);}
.m46_c00498{transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);-ms-transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208592,-0.002295,0.002750,0.249985,0,0);}
.mbc_c00498{transform:matrix(0.209025,-0.002926,0.003500,0.249976,0,0);-ms-transform:matrix(0.209025,-0.002926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209025,-0.002926,0.003500,0.249976,0,0);}
.ma5_c00498{transform:matrix(0.209524,-0.002933,0.003500,0.249976,0,0);-ms-transform:matrix(0.209524,-0.002933,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209524,-0.002933,0.003500,0.249976,0,0);}
.m1e_c00498{transform:matrix(0.210212,-0.002312,0.002750,0.249985,0,0);-ms-transform:matrix(0.210212,-0.002312,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210212,-0.002312,0.002750,0.249985,0,0);}
.mb8_c00498{transform:matrix(0.210294,-0.002944,0.003500,0.249976,0,0);-ms-transform:matrix(0.210294,-0.002944,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210294,-0.002944,0.003500,0.249976,0,0);}
.m4f_c00498{transform:matrix(0.210302,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210302,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210302,-0.002313,0.002750,0.249985,0,0);}
.m8e_c00498{transform:matrix(0.210929,-0.002953,0.003500,0.249976,0,0);-ms-transform:matrix(0.210929,-0.002953,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210929,-0.002953,0.003500,0.249976,0,0);}
.m68_c00498{transform:matrix(0.211552,-0.002327,0.002750,0.249985,0,0);-ms-transform:matrix(0.211552,-0.002327,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211552,-0.002327,0.002750,0.249985,0,0);}
.mc4_c00498{transform:matrix(0.211889,-0.002966,0.003500,0.249976,0,0);-ms-transform:matrix(0.211889,-0.002966,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211889,-0.002966,0.003500,0.249976,0,0);}
.m41_c00498{transform:matrix(0.212527,-0.002338,0.002750,0.249985,0,0);-ms-transform:matrix(0.212527,-0.002338,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212527,-0.002338,0.002750,0.249985,0,0);}
.mb_c00498{transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);-ms-transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);}
.m67_c00498{transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);-ms-transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214612,-0.002361,0.002750,0.249985,0,0);}
.m22_c00498{transform:matrix(0.214872,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214872,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214872,-0.002364,0.002750,0.249985,0,0);}
.mcc_c00498{transform:matrix(0.215422,-0.002800,0.003250,0.249979,0,0);-ms-transform:matrix(0.215422,-0.002800,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215422,-0.002800,0.003250,0.249979,0,0);}
.m14_c00498{transform:matrix(0.215427,-0.002370,0.002750,0.249985,0,0);-ms-transform:matrix(0.215427,-0.002370,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215427,-0.002370,0.002750,0.249985,0,0);}
.m4c_c00498{transform:matrix(0.215777,-0.002374,0.002750,0.249985,0,0);-ms-transform:matrix(0.215777,-0.002374,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215777,-0.002374,0.002750,0.249985,0,0);}
.mac_c00498{transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216349,-0.003029,0.003500,0.249976,0,0);}
.m96_c00498{transform:matrix(0.217304,-0.003042,0.003500,0.249976,0,0);-ms-transform:matrix(0.217304,-0.003042,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217304,-0.003042,0.003500,0.249976,0,0);}
.m40_c00498{transform:matrix(0.217627,-0.002394,0.002750,0.249985,0,0);-ms-transform:matrix(0.217627,-0.002394,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217627,-0.002394,0.002750,0.249985,0,0);}
.m81_c00498{transform:matrix(0.217804,-0.003049,0.003500,0.249976,0,0);-ms-transform:matrix(0.217804,-0.003049,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217804,-0.003049,0.003500,0.249976,0,0);}
.m3f_c00498{transform:matrix(0.217942,-0.002397,0.002750,0.249985,0,0);-ms-transform:matrix(0.217942,-0.002397,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217942,-0.002397,0.002750,0.249985,0,0);}
.m7b_c00498{transform:matrix(0.219097,-0.002410,0.002750,0.249985,0,0);-ms-transform:matrix(0.219097,-0.002410,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219097,-0.002410,0.002750,0.249985,0,0);}
.mb3_c00498{transform:matrix(0.219673,-0.003075,0.003500,0.249976,0,0);-ms-transform:matrix(0.219673,-0.003075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219673,-0.003075,0.003500,0.249976,0,0);}
.m83_c00498{transform:matrix(0.219783,-0.003077,0.003500,0.249976,0,0);-ms-transform:matrix(0.219783,-0.003077,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219783,-0.003077,0.003500,0.249976,0,0);}
.m63_c00498{transform:matrix(0.222132,-0.002443,0.002750,0.249985,0,0);-ms-transform:matrix(0.222132,-0.002443,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222132,-0.002443,0.002750,0.249985,0,0);}
.m5_c00498{transform:matrix(0.222832,-0.002451,0.002750,0.249985,0,0);-ms-transform:matrix(0.222832,-0.002451,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222832,-0.002451,0.002750,0.249985,0,0);}
.m4e_c00498{transform:matrix(0.224301,-0.002467,0.002750,0.249985,0,0);-ms-transform:matrix(0.224301,-0.002467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224301,-0.002467,0.002750,0.249985,0,0);}
.m1f_c00498{transform:matrix(0.224806,-0.002473,0.002750,0.249985,0,0);-ms-transform:matrix(0.224806,-0.002473,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224806,-0.002473,0.002750,0.249985,0,0);}
.m5f_c00498{transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);-ms-transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);}
.m89_c00498{transform:matrix(0.226388,-0.003169,0.003500,0.249976,0,0);-ms-transform:matrix(0.226388,-0.003169,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226388,-0.003169,0.003500,0.249976,0,0);}
.m20_c00498{transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);}
.me_c00498{transform:matrix(0.226601,-0.002493,0.002750,0.249985,0,0);-ms-transform:matrix(0.226601,-0.002493,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226601,-0.002493,0.002750,0.249985,0,0);}
.m55_c00498{transform:matrix(0.227636,-0.002504,0.002750,0.249985,0,0);-ms-transform:matrix(0.227636,-0.002504,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227636,-0.002504,0.002750,0.249985,0,0);}
.m3e_c00498{transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);-ms-transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);}
.m23_c00498{transform:matrix(0.229091,-0.002520,0.002750,0.249985,0,0);-ms-transform:matrix(0.229091,-0.002520,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229091,-0.002520,0.002750,0.249985,0,0);}
.mc9_c00498{transform:matrix(0.229596,-0.002985,0.003250,0.249979,0,0);-ms-transform:matrix(0.229596,-0.002985,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229596,-0.002985,0.003250,0.249979,0,0);}
.ma6_c00498{transform:matrix(0.233267,-0.003266,0.003500,0.249976,0,0);-ms-transform:matrix(0.233267,-0.003266,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233267,-0.003266,0.003500,0.249976,0,0);}
.m78_c00498{transform:matrix(0.234176,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234176,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234176,-0.002576,0.002750,0.249985,0,0);}
.m6c_c00498{transform:matrix(0.234361,-0.002578,0.002750,0.249985,0,0);-ms-transform:matrix(0.234361,-0.002578,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234361,-0.002578,0.002750,0.249985,0,0);}
.m94_c00498{transform:matrix(0.236492,-0.003311,0.003500,0.249976,0,0);-ms-transform:matrix(0.236492,-0.003311,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236492,-0.003311,0.003500,0.249976,0,0);}
.m50_c00498{transform:matrix(0.239021,-0.002629,0.002750,0.249985,0,0);-ms-transform:matrix(0.239021,-0.002629,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239021,-0.002629,0.002750,0.249985,0,0);}
.mf_c00498{transform:matrix(0.239571,-0.002635,0.002750,0.249985,0,0);-ms-transform:matrix(0.239571,-0.002635,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239571,-0.002635,0.002750,0.249985,0,0);}
.m53_c00498{transform:matrix(0.240830,-0.002649,0.002750,0.249985,0,0);-ms-transform:matrix(0.240830,-0.002649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240830,-0.002649,0.002750,0.249985,0,0);}
.m90_c00498{transform:matrix(0.241761,-0.003385,0.003500,0.249976,0,0);-ms-transform:matrix(0.241761,-0.003385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241761,-0.003385,0.003500,0.249976,0,0);}
.m6e_c00498{transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);-ms-transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244905,-0.002694,0.002750,0.249985,0,0);}
.m56_c00498{transform:matrix(0.250525,-0.002756,0.002750,0.249985,0,0);-ms-transform:matrix(0.250525,-0.002756,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250525,-0.002756,0.002750,0.249985,0,0);}
.m79_c00498{transform:matrix(0.256429,-0.002821,0.002750,0.249985,0,0);-ms-transform:matrix(0.256429,-0.002821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256429,-0.002821,0.002750,0.249985,0,0);}
.m34_c00498{transform:matrix(0.261144,-0.002873,0.002750,0.249985,0,0);-ms-transform:matrix(0.261144,-0.002873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261144,-0.002873,0.002750,0.249985,0,0);}
.m43_c00498{transform:matrix(0.264169,-0.002906,0.002750,0.249985,0,0);-ms-transform:matrix(0.264169,-0.002906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264169,-0.002906,0.002750,0.249985,0,0);}
.m16_c00498{transform:matrix(0.265284,-0.002918,0.002750,0.249985,0,0);-ms-transform:matrix(0.265284,-0.002918,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265284,-0.002918,0.002750,0.249985,0,0);}
.mb1_c00498{transform:matrix(0.270389,-0.003785,0.003500,0.249976,0,0);-ms-transform:matrix(0.270389,-0.003785,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270389,-0.003785,0.003500,0.249976,0,0);}
.ma4_c00498{transform:matrix(0.276383,-0.003869,0.003500,0.249976,0,0);-ms-transform:matrix(0.276383,-0.003869,0.003500,0.249976,0,0);-webkit-transform:matrix(0.276383,-0.003869,0.003500,0.249976,0,0);}
.mb0_c00498{transform:matrix(0.277388,-0.003883,0.003500,0.249976,0,0);-ms-transform:matrix(0.277388,-0.003883,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277388,-0.003883,0.003500,0.249976,0,0);}
.m93_c00498{transform:matrix(0.302115,-0.004230,0.003500,0.249976,0,0);-ms-transform:matrix(0.302115,-0.004230,0.003500,0.249976,0,0);-webkit-transform:matrix(0.302115,-0.004230,0.003500,0.249976,0,0);}
.m61_c00498{transform:matrix(0.305856,-0.003364,0.002750,0.249985,0,0);-ms-transform:matrix(0.305856,-0.003364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.305856,-0.003364,0.002750,0.249985,0,0);}
.m7e_c00498{transform:matrix(0.355945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355945,0.000000,0.000000,0.250000,0,0);}
.ma3_c00498{transform:matrix(0.362220,-0.005071,0.003500,0.249976,0,0);-ms-transform:matrix(0.362220,-0.005071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.362220,-0.005071,0.003500,0.249976,0,0);}
.m6a_c00498{transform:matrix(0.372212,-0.004094,0.002750,0.249985,0,0);-ms-transform:matrix(0.372212,-0.004094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.372212,-0.004094,0.002750,0.249985,0,0);}
.m52_c00498{transform:matrix(0.638181,-0.007020,0.002750,0.249985,0,0);-ms-transform:matrix(0.638181,-0.007020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.638181,-0.007020,0.002750,0.249985,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
.fc0_c00498{color:transparent;}
.fs6_c00498{font-size:57.753494px;}
.fs9_c00498{font-size:59.853621px;}
.fs13_c00498{font-size:59.855865px;}
.fsc_c00498{font-size:60.903684px;}
.fsb_c00498{font-size:61.953748px;}
.fsf_c00498{font-size:61.956071px;}
.fs3_c00498{font-size:63.003811px;}
.fs11_c00498{font-size:63.006174px;}
.fsa_c00498{font-size:64.053875px;}
.fs10_c00498{font-size:64.056277px;}
.fs8_c00498{font-size:65.103938px;}
.fs15_c00498{font-size:65.105501px;}
.fs14_c00498{font-size:65.106379px;}
.fsd_c00498{font-size:66.150000px;}
.fs1_c00498{font-size:66.154002px;}
.fse_c00498{font-size:66.156482px;}
.fs4_c00498{font-size:67.204065px;}
.fs12_c00498{font-size:67.206585px;}
.fs2_c00498{font-size:69.304193px;}
.fs7_c00498{font-size:70.354256px;}
.fs5_c00498{font-size:71.404320px;}
.fs0_c00498{font-size:89.250000px;}
.y0_c00498{bottom:0.000000px;}
.yc5_c00498{bottom:30.243000px;}
.yc6_c00498{bottom:30.653085px;}
.yc7_c00498{bottom:31.607727px;}
.yc8_c00498{bottom:32.410951px;}
.yc9_c00498{bottom:32.776011px;}
.yca_c00498{bottom:33.012117px;}
.ycb_c00498{bottom:33.776361px;}
.ybe_c00498{bottom:46.966224px;}
.ybf_c00498{bottom:47.209212px;}
.yc0_c00498{bottom:47.971056px;}
.yc1_c00498{bottom:48.219957px;}
.yc2_c00498{bottom:48.893049px;}
.yc3_c00498{bottom:49.771158px;}
.yc4_c00498{bottom:50.503758px;}
.yb9_c00498{bottom:66.240504px;}
.yb8_c00498{bottom:66.240687px;}
.yba_c00498{bottom:66.241203px;}
.ybb_c00498{bottom:66.241380px;}
.ybd_c00498{bottom:66.241773px;}
.ybc_c00498{bottom:66.241956px;}
.yb1_c00498{bottom:81.259506px;}
.yb2_c00498{bottom:82.055541px;}
.yb3_c00498{bottom:82.936737px;}
.yb4_c00498{bottom:83.351193px;}
.yb5_c00498{bottom:83.968662px;}
.yb6_c00498{bottom:84.228273px;}
.yb7_c00498{bottom:84.853932px;}
.yaa_c00498{bottom:97.730142px;}
.yab_c00498{bottom:98.451024px;}
.yac_c00498{bottom:99.387456px;}
.yad_c00498{bottom:100.525002px;}
.yae_c00498{bottom:100.931430px;}
.yaf_c00498{bottom:101.656197px;}
.yb0_c00498{bottom:101.964225px;}
.ya1_c00498{bottom:114.473565px;}
.ya2_c00498{bottom:114.882870px;}
.ya3_c00498{bottom:115.202112px;}
.ya4_c00498{bottom:116.081124px;}
.ya5_c00498{bottom:116.967234px;}
.ya6_c00498{bottom:117.413328px;}
.ya7_c00498{bottom:117.842340px;}
.ya8_c00498{bottom:118.624401px;}
.ya9_c00498{bottom:119.011206px;}
.y9b_c00498{bottom:130.677660px;}
.y9c_c00498{bottom:131.903769px;}
.y9d_c00498{bottom:133.591011px;}
.y9e_c00498{bottom:133.949124px;}
.y9f_c00498{bottom:134.535972px;}
.ya0_c00498{bottom:135.894693px;}
.y94_c00498{bottom:148.767330px;}
.y95_c00498{bottom:150.044391px;}
.y96_c00498{bottom:150.502029px;}
.y97_c00498{bottom:150.788559px;}
.y98_c00498{bottom:152.058249px;}
.y99_c00498{bottom:152.845965px;}
.y9a_c00498{bottom:153.112275px;}
.y8d_c00498{bottom:166.588071px;}
.y8e_c00498{bottom:167.237766px;}
.y8f_c00498{bottom:167.932542px;}
.y90_c00498{bottom:168.879453px;}
.y91_c00498{bottom:169.161126px;}
.y92_c00498{bottom:169.832295px;}
.y93_c00498{bottom:170.067282px;}
.y85_c00498{bottom:183.600585px;}
.y86_c00498{bottom:184.278000px;}
.y87_c00498{bottom:184.900302px;}
.y88_c00498{bottom:185.046339px;}
.y89_c00498{bottom:185.649003px;}
.y8a_c00498{bottom:185.882226px;}
.y8b_c00498{bottom:186.698349px;}
.y8c_c00498{bottom:186.927519px;}
.y7f_c00498{bottom:199.533000px;}
.y80_c00498{bottom:200.575692px;}
.y81_c00498{bottom:200.958060px;}
.y82_c00498{bottom:201.702762px;}
.y83_c00498{bottom:202.556118px;}
.y84_c00498{bottom:202.912362px;}
.y7e_c00498{bottom:218.734500px;}
.y76_c00498{bottom:235.944749px;}
.y77_c00498{bottom:235.945272px;}
.y78_c00498{bottom:235.945779px;}
.y79_c00498{bottom:235.946273px;}
.y7a_c00498{bottom:235.946346px;}
.y7b_c00498{bottom:235.946866px;}
.y7d_c00498{bottom:235.946997px;}
.y7c_c00498{bottom:235.947480px;}
.y71_c00498{bottom:250.811350px;}
.y72_c00498{bottom:251.022994px;}
.y73_c00498{bottom:252.117893px;}
.y74_c00498{bottom:252.579177px;}
.y75_c00498{bottom:253.580808px;}
.y6b_c00498{bottom:270.079904px;}
.y70_c00498{bottom:270.080622px;}
.y6f_c00498{bottom:270.080625px;}
.y6c_c00498{bottom:270.080650px;}
.y6e_c00498{bottom:270.081152px;}
.y6d_c00498{bottom:270.081381px;}
.y67_c00498{bottom:287.616429px;}
.y68_c00498{bottom:287.616576px;}
.y66_c00498{bottom:287.616595px;}
.y69_c00498{bottom:287.616649px;}
.y65_c00498{bottom:287.617048px;}
.y6a_c00498{bottom:287.617271px;}
.y63_c00498{bottom:304.470622px;}
.y62_c00498{bottom:304.470669px;}
.y64_c00498{bottom:304.470916px;}
.y61_c00498{bottom:304.471302px;}
.y60_c00498{bottom:304.471305px;}
.y5e_c00498{bottom:304.471594px;}
.y5f_c00498{bottom:304.471652px;}
.y58_c00498{bottom:321.384670px;}
.y59_c00498{bottom:321.385404px;}
.y5a_c00498{bottom:321.385654px;}
.y5b_c00498{bottom:321.385845px;}
.y5d_c00498{bottom:321.385899px;}
.y5c_c00498{bottom:321.386155px;}
.y53_c00498{bottom:338.540490px;}
.y52_c00498{bottom:338.540689px;}
.y55_c00498{bottom:338.541131px;}
.y54_c00498{bottom:338.541147px;}
.y56_c00498{bottom:338.541501px;}
.y57_c00498{bottom:338.541618px;}
.y4d_c00498{bottom:352.607397px;}
.y4e_c00498{bottom:353.471315px;}
.y4f_c00498{bottom:354.637649px;}
.y50_c00498{bottom:355.872503px;}
.y51_c00498{bottom:356.243769px;}
.y45_c00498{bottom:369.887762px;}
.y46_c00498{bottom:370.426540px;}
.y47_c00498{bottom:371.085375px;}
.y48_c00498{bottom:371.317039px;}
.y49_c00498{bottom:372.138916px;}
.y4a_c00498{bottom:372.470973px;}
.y4b_c00498{bottom:373.095018px;}
.y4c_c00498{bottom:373.799232px;}
.y3e_c00498{bottom:387.168848px;}
.y3f_c00498{bottom:387.463806px;}
.y40_c00498{bottom:388.011275px;}
.y41_c00498{bottom:388.264213px;}
.y42_c00498{bottom:389.236871px;}
.y43_c00498{bottom:389.699179px;}
.y44_c00498{bottom:390.411854px;}
.y3d_c00498{bottom:405.877531px;}
.y3c_c00498{bottom:405.877548px;}
.y3a_c00498{bottom:405.877644px;}
.y39_c00498{bottom:405.877887px;}
.y3b_c00498{bottom:405.878195px;}
.y38_c00498{bottom:423.081937px;}
.y37_c00498{bottom:423.082270px;}
.y35_c00498{bottom:423.082753px;}
.y36_c00498{bottom:423.082767px;}
.y34_c00498{bottom:423.083207px;}
.y32_c00498{bottom:423.083512px;}
.y33_c00498{bottom:423.083553px;}
.y2d_c00498{bottom:439.628346px;}
.y2e_c00498{bottom:439.628660px;}
.y2c_c00498{bottom:439.628979px;}
.y2f_c00498{bottom:439.628997px;}
.y30_c00498{bottom:439.629521px;}
.y31_c00498{bottom:439.629608px;}
.y25_c00498{bottom:456.689011px;}
.y26_c00498{bottom:456.689265px;}
.y2b_c00498{bottom:456.689670px;}
.y2a_c00498{bottom:456.689943px;}
.y27_c00498{bottom:456.690012px;}
.y28_c00498{bottom:456.690325px;}
.y29_c00498{bottom:456.690442px;}
.y20_c00498{bottom:474.313110px;}
.y21_c00498{bottom:474.313361px;}
.y22_c00498{bottom:474.313477px;}
.y23_c00498{bottom:474.313908px;}
.y24_c00498{bottom:474.314069px;}
.y1a_c00498{bottom:488.156468px;}
.y1b_c00498{bottom:488.431929px;}
.y1c_c00498{bottom:488.654958px;}
.y1d_c00498{bottom:489.454631px;}
.y1e_c00498{bottom:489.710425px;}
.y1f_c00498{bottom:490.918835px;}
.y13_c00498{bottom:505.976967px;}
.y14_c00498{bottom:506.437674px;}
.y15_c00498{bottom:507.234987px;}
.y16_c00498{bottom:507.443265px;}
.y17_c00498{bottom:508.151832px;}
.y18_c00498{bottom:508.366083px;}
.y19_c00498{bottom:508.898229px;}
.yd_c00498{bottom:522.449300px;}
.ye_c00498{bottom:522.774576px;}
.yf_c00498{bottom:523.487829px;}
.y10_c00498{bottom:524.326663px;}
.y11_c00498{bottom:525.892064px;}
.y12_c00498{bottom:526.285615px;}
.y8_c00498{bottom:539.190077px;}
.y9_c00498{bottom:539.453130px;}
.ya_c00498{bottom:539.945185px;}
.yb_c00498{bottom:540.678136px;}
.yc_c00498{bottom:541.568321px;}
.y2_c00498{bottom:556.200000px;}
.y3_c00498{bottom:556.299347px;}
.y4_c00498{bottom:557.276312px;}
.y5_c00498{bottom:557.457795px;}
.y6_c00498{bottom:558.247931px;}
.y7_c00498{bottom:559.058526px;}
.y1_c00498{bottom:571.590000px;}
.h8_c00498{height:57.753494px;}
.hb_c00498{height:59.853621px;}
.h15_c00498{height:59.855865px;}
.he_c00498{height:60.903684px;}
.hd_c00498{height:61.953748px;}
.h11_c00498{height:61.956071px;}
.h5_c00498{height:63.003811px;}
.h13_c00498{height:63.006174px;}
.hc_c00498{height:64.053875px;}
.h12_c00498{height:64.056277px;}
.ha_c00498{height:65.103938px;}
.h17_c00498{height:65.105501px;}
.h16_c00498{height:65.106379px;}
.hf_c00498{height:66.150000px;}
.h3_c00498{height:66.154002px;}
.h10_c00498{height:66.156482px;}
.h6_c00498{height:67.204065px;}
.h14_c00498{height:67.206585px;}
.h4_c00498{height:69.304193px;}
.h9_c00498{height:70.354256px;}
.h7_c00498{height:71.404320px;}
.h2_c00498{height:89.250000px;}
.h0_c00498{height:617.700000px;}
.h1_c00498{height:618.000000px;}
.w0_c00498{width:359.100000px;}
.w1_c00498{width:359.250000px;}
.x0_c00498{left:0.000000px;}
.x4e_c00498{left:17.436510px;}
.x17_c00498{left:18.626729px;}
.x8_c00498{left:19.864818px;}
.x61_c00498{left:22.136019px;}
.x49_c00498{left:24.030000px;}
.x2_c00498{left:26.217000px;}
.x4b_c00498{left:33.402000px;}
.x3_c00498{left:35.248500px;}
.x46_c00498{left:40.493103px;}
.x9_c00498{left:41.733071px;}
.x1a_c00498{left:42.928508px;}
.x57_c00498{left:45.044151px;}
.x38_c00498{left:51.566715px;}
.x67_c00498{left:53.079000px;}
.x2c_c00498{left:54.449177px;}
.x11_c00498{left:57.602117px;}
.x14_c00498{left:60.642071px;}
.x3e_c00498{left:62.365933px;}
.x1f_c00498{left:63.989703px;}
.x43_c00498{left:65.064132px;}
.x58_c00498{left:66.346857px;}
.x4f_c00498{left:67.379703px;}
.x32_c00498{left:72.571854px;}
.x28_c00498{left:73.980125px;}
.x62_c00498{left:75.061893px;}
.x3f_c00498{left:77.216232px;}
.x4a_c00498{left:79.110000px;}
.xa_c00498{left:82.783125px;}
.x23_c00498{left:84.511156px;}
.x20_c00498{left:88.021107px;}
.xd_c00498{left:89.023389px;}
.x63_c00498{left:95.044299px;}
.x53_c00498{left:97.063680px;}
.x2d_c00498{left:98.386746px;}
.x65_c00498{left:99.790461px;}
.x24_c00498{left:100.981653px;}
.x1b_c00498{left:103.412817px;}
.x4c_c00498{left:107.880000px;}
.x2e_c00498{left:113.855570px;}
.x39_c00498{left:116.370052px;}
.x66_c00498{left:118.962234px;}
.x50_c00498{left:120.864459px;}
.x4_c00498{left:124.063500px;}
.x47_c00498{left:125.548882px;}
.x15_c00498{left:127.338845px;}
.x40_c00498{left:129.599568px;}
.x35_c00498{left:135.001119px;}
.x18_c00498{left:136.083435px;}
.x44_c00498{left:139.048575px;}
.x5_c00498{left:140.562000px;}
.x41_c00498{left:142.289602px;}
.xb_c00498{left:143.823449px;}
.xe_c00498{left:144.960431px;}
.x5f_c00498{left:146.501691px;}
.x16_c00498{left:148.683614px;}
.x1_c00498{left:151.470000px;}
.x29_c00498{left:155.253959px;}
.x25_c00498{left:158.494116px;}
.x36_c00498{left:162.002886px;}
.x1c_c00498{left:166.595957px;}
.x2f_c00498{left:168.660160px;}
.x55_c00498{left:171.138498px;}
.x26_c00498{left:176.314778px;}
.x60_c00498{left:178.356132px;}
.x2a_c00498{left:182.255725px;}
.x59_c00498{left:184.068219px;}
.x3c_c00498{left:187.384186px;}
.x4d_c00498{left:188.385000px;}
.x30_c00498{left:190.800687px;}
.x51_c00498{left:193.751988px;}
.x12_c00498{left:200.478549px;}
.x5c_c00498{left:203.964264px;}
.x21_c00498{left:205.747847px;}
.x45_c00498{left:208.172440px;}
.x6_c00498{left:212.392500px;}
.x48_c00498{left:214.113591px;}
.x52_c00498{left:215.371782px;}
.x68_c00498{left:216.381000px;}
.xc_c00498{left:218.066640px;}
.x56_c00498{left:220.846512px;}
.x33_c00498{left:222.671604px;}
.x37_c00498{left:225.726091px;}
.x5d_c00498{left:231.065886px;}
.x27_c00498{left:233.018642px;}
.x69_c00498{left:234.543000px;}
.x1d_c00498{left:238.150119px;}
.x22_c00498{left:241.390653px;}
.x5a_c00498{left:242.396400px;}
.x64_c00498{left:243.828447px;}
.x34_c00498{left:245.921833px;}
.xf_c00498{left:249.355844px;}
.x3a_c00498{left:259.478361px;}
.x13_c00498{left:262.604856px;}
.x2b_c00498{left:267.738170px;}
.x54_c00498{left:272.099766px;}
.x10_c00498{left:275.586689px;}
.x31_c00498{left:279.365793px;}
.x42_c00498{left:284.317779px;}
.x7_c00498{left:286.083000px;}
.x3b_c00498{left:288.640392px;}
.x19_c00498{left:291.883278px;}
.x1e_c00498{left:294.313917px;}
.x5e_c00498{left:299.907420px;}
.x3d_c00498{left:305.921025px;}
.x5b_c00498{left:320.314308px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fs6_c00498{font-size:51.336439pt;}
.fs9_c00498{font-size:53.203219pt;}
.fs13_c00498{font-size:53.205213pt;}
.fsc_c00498{font-size:54.136608pt;}
.fsb_c00498{font-size:55.069998pt;}
.fsf_c00498{font-size:55.072063pt;}
.fs3_c00498{font-size:56.003388pt;}
.fs11_c00498{font-size:56.005488pt;}
.fsa_c00498{font-size:56.936778pt;}
.fs10_c00498{font-size:56.938913pt;}
.fs8_c00498{font-size:57.870167pt;}
.fs15_c00498{font-size:57.871556pt;}
.fs14_c00498{font-size:57.872337pt;}
.fsd_c00498{font-size:58.800000pt;}
.fs1_c00498{font-size:58.803557pt;}
.fse_c00498{font-size:58.805762pt;}
.fs4_c00498{font-size:59.736947pt;}
.fs12_c00498{font-size:59.739187pt;}
.fs2_c00498{font-size:61.603727pt;}
.fs7_c00498{font-size:62.537116pt;}
.fs5_c00498{font-size:63.470506pt;}
.fs0_c00498{font-size:79.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.yc5_c00498{bottom:26.882667pt;}
.yc6_c00498{bottom:27.247187pt;}
.yc7_c00498{bottom:28.095757pt;}
.yc8_c00498{bottom:28.809735pt;}
.yc9_c00498{bottom:29.134232pt;}
.yca_c00498{bottom:29.344104pt;}
.ycb_c00498{bottom:30.023432pt;}
.ybe_c00498{bottom:41.747755pt;}
.ybf_c00498{bottom:41.963744pt;}
.yc0_c00498{bottom:42.640939pt;}
.yc1_c00498{bottom:42.862184pt;}
.yc2_c00498{bottom:43.460488pt;}
.yc3_c00498{bottom:44.241029pt;}
.yc4_c00498{bottom:44.892229pt;}
.yb9_c00498{bottom:58.880448pt;}
.yb8_c00498{bottom:58.880611pt;}
.yba_c00498{bottom:58.881069pt;}
.ybb_c00498{bottom:58.881227pt;}
.ybd_c00498{bottom:58.881576pt;}
.ybc_c00498{bottom:58.881739pt;}
.yb1_c00498{bottom:72.230672pt;}
.yb2_c00498{bottom:72.938259pt;}
.yb3_c00498{bottom:73.721544pt;}
.yb4_c00498{bottom:74.089949pt;}
.yb5_c00498{bottom:74.638811pt;}
.yb6_c00498{bottom:74.869576pt;}
.yb7_c00498{bottom:75.425717pt;}
.yaa_c00498{bottom:86.871237pt;}
.yab_c00498{bottom:87.512021pt;}
.yac_c00498{bottom:88.344405pt;}
.yad_c00498{bottom:89.355557pt;}
.yae_c00498{bottom:89.716827pt;}
.yaf_c00498{bottom:90.361064pt;}
.yb0_c00498{bottom:90.634867pt;}
.ya1_c00498{bottom:101.754280pt;}
.ya2_c00498{bottom:102.118107pt;}
.ya3_c00498{bottom:102.401877pt;}
.ya4_c00498{bottom:103.183221pt;}
.ya5_c00498{bottom:103.970875pt;}
.ya6_c00498{bottom:104.367403pt;}
.ya7_c00498{bottom:104.748747pt;}
.ya8_c00498{bottom:105.443912pt;}
.ya9_c00498{bottom:105.787739pt;}
.y9b_c00498{bottom:116.157920pt;}
.y9c_c00498{bottom:117.247795pt;}
.y9d_c00498{bottom:118.747565pt;}
.y9e_c00498{bottom:119.065888pt;}
.y9f_c00498{bottom:119.587531pt;}
.ya0_c00498{bottom:120.795283pt;}
.y94_c00498{bottom:132.237627pt;}
.y95_c00498{bottom:133.372792pt;}
.y96_c00498{bottom:133.779581pt;}
.y97_c00498{bottom:134.034275pt;}
.y98_c00498{bottom:135.162888pt;}
.y99_c00498{bottom:135.863080pt;}
.y9a_c00498{bottom:136.099800pt;}
.y8d_c00498{bottom:148.078285pt;}
.y8e_c00498{bottom:148.655792pt;}
.y8f_c00498{bottom:149.273371pt;}
.y90_c00498{bottom:150.115069pt;}
.y91_c00498{bottom:150.365445pt;}
.y92_c00498{bottom:150.962040pt;}
.y93_c00498{bottom:151.170917pt;}
.y85_c00498{bottom:163.200520pt;}
.y86_c00498{bottom:163.802667pt;}
.y87_c00498{bottom:164.355824pt;}
.y88_c00498{bottom:164.485635pt;}
.y89_c00498{bottom:165.021336pt;}
.y8a_c00498{bottom:165.228645pt;}
.y8b_c00498{bottom:165.954088pt;}
.y8c_c00498{bottom:166.157795pt;}
.y7f_c00498{bottom:177.362667pt;}
.y80_c00498{bottom:178.289504pt;}
.y81_c00498{bottom:178.629387pt;}
.y82_c00498{bottom:179.291344pt;}
.y83_c00498{bottom:180.049883pt;}
.y84_c00498{bottom:180.366544pt;}
.y7e_c00498{bottom:194.430667pt;}
.y76_c00498{bottom:209.728665pt;}
.y77_c00498{bottom:209.729131pt;}
.y78_c00498{bottom:209.729581pt;}
.y79_c00498{bottom:209.730020pt;}
.y7a_c00498{bottom:209.730085pt;}
.y7b_c00498{bottom:209.730548pt;}
.y7d_c00498{bottom:209.730664pt;}
.y7c_c00498{bottom:209.731093pt;}
.y71_c00498{bottom:222.943423pt;}
.y72_c00498{bottom:223.131551pt;}
.y73_c00498{bottom:224.104793pt;}
.y74_c00498{bottom:224.514824pt;}
.y75_c00498{bottom:225.405163pt;}
.y6b_c00498{bottom:240.071025pt;}
.y70_c00498{bottom:240.071664pt;}
.y6f_c00498{bottom:240.071667pt;}
.y6c_c00498{bottom:240.071689pt;}
.y6e_c00498{bottom:240.072135pt;}
.y6d_c00498{bottom:240.072339pt;}
.y67_c00498{bottom:255.659048pt;}
.y68_c00498{bottom:255.659179pt;}
.y66_c00498{bottom:255.659196pt;}
.y69_c00498{bottom:255.659244pt;}
.y65_c00498{bottom:255.659599pt;}
.y6a_c00498{bottom:255.659796pt;}
.y63_c00498{bottom:270.640553pt;}
.y62_c00498{bottom:270.640595pt;}
.y64_c00498{bottom:270.640815pt;}
.y61_c00498{bottom:270.641157pt;}
.y60_c00498{bottom:270.641160pt;}
.y5e_c00498{bottom:270.641417pt;}
.y5f_c00498{bottom:270.641468pt;}
.y58_c00498{bottom:285.675263pt;}
.y59_c00498{bottom:285.675915pt;}
.y5a_c00498{bottom:285.676137pt;}
.y5b_c00498{bottom:285.676307pt;}
.y5d_c00498{bottom:285.676355pt;}
.y5c_c00498{bottom:285.676583pt;}
.y53_c00498{bottom:300.924880pt;}
.y52_c00498{bottom:300.925057pt;}
.y55_c00498{bottom:300.925449pt;}
.y54_c00498{bottom:300.925464pt;}
.y56_c00498{bottom:300.925779pt;}
.y57_c00498{bottom:300.925883pt;}
.y4d_c00498{bottom:313.428797pt;}
.y4e_c00498{bottom:314.196724pt;}
.y4f_c00498{bottom:315.233465pt;}
.y50_c00498{bottom:316.331113pt;}
.y51_c00498{bottom:316.661128pt;}
.y45_c00498{bottom:328.789121pt;}
.y46_c00498{bottom:329.268036pt;}
.y47_c00498{bottom:329.853667pt;}
.y48_c00498{bottom:330.059591pt;}
.y49_c00498{bottom:330.790148pt;}
.y4a_c00498{bottom:331.085309pt;}
.y4b_c00498{bottom:331.640016pt;}
.y4c_c00498{bottom:332.265984pt;}
.y3e_c00498{bottom:344.150087pt;}
.y3f_c00498{bottom:344.412272pt;}
.y40_c00498{bottom:344.898911pt;}
.y41_c00498{bottom:345.123745pt;}
.y42_c00498{bottom:345.988329pt;}
.y43_c00498{bottom:346.399271pt;}
.y44_c00498{bottom:347.032759pt;}
.y3d_c00498{bottom:360.780028pt;}
.y3c_c00498{bottom:360.780043pt;}
.y3a_c00498{bottom:360.780128pt;}
.y39_c00498{bottom:360.780344pt;}
.y3b_c00498{bottom:360.780617pt;}
.y38_c00498{bottom:376.072833pt;}
.y37_c00498{bottom:376.073129pt;}
.y35_c00498{bottom:376.073559pt;}
.y36_c00498{bottom:376.073571pt;}
.y34_c00498{bottom:376.073961pt;}
.y32_c00498{bottom:376.074233pt;}
.y33_c00498{bottom:376.074269pt;}
.y2d_c00498{bottom:390.780752pt;}
.y2e_c00498{bottom:390.781031pt;}
.y2c_c00498{bottom:390.781315pt;}
.y2f_c00498{bottom:390.781331pt;}
.y30_c00498{bottom:390.781796pt;}
.y31_c00498{bottom:390.781873pt;}
.y25_c00498{bottom:405.945788pt;}
.y26_c00498{bottom:405.946013pt;}
.y2b_c00498{bottom:405.946373pt;}
.y2a_c00498{bottom:405.946616pt;}
.y27_c00498{bottom:405.946677pt;}
.y28_c00498{bottom:405.946956pt;}
.y29_c00498{bottom:405.947060pt;}
.y20_c00498{bottom:421.611653pt;}
.y21_c00498{bottom:421.611876pt;}
.y22_c00498{bottom:421.611980pt;}
.y23_c00498{bottom:421.612363pt;}
.y24_c00498{bottom:421.612505pt;}
.y1a_c00498{bottom:433.916860pt;}
.y1b_c00498{bottom:434.161715pt;}
.y1c_c00498{bottom:434.359963pt;}
.y1d_c00498{bottom:435.070783pt;}
.y1e_c00498{bottom:435.298156pt;}
.y1f_c00498{bottom:436.372297pt;}
.y13_c00498{bottom:449.757304pt;}
.y14_c00498{bottom:450.166821pt;}
.y15_c00498{bottom:450.875544pt;}
.y16_c00498{bottom:451.060680pt;}
.y17_c00498{bottom:451.690517pt;}
.y18_c00498{bottom:451.880963pt;}
.y19_c00498{bottom:452.353981pt;}
.yd_c00498{bottom:464.399377pt;}
.ye_c00498{bottom:464.688512pt;}
.yf_c00498{bottom:465.322515pt;}
.y10_c00498{bottom:466.068145pt;}
.y11_c00498{bottom:467.459612pt;}
.y12_c00498{bottom:467.809436pt;}
.y8_c00498{bottom:479.280068pt;}
.y9_c00498{bottom:479.513893pt;}
.ya_c00498{bottom:479.951276pt;}
.yb_c00498{bottom:480.602788pt;}
.yc_c00498{bottom:481.394063pt;}
.y2_c00498{bottom:494.400000pt;}
.y3_c00498{bottom:494.488308pt;}
.y4_c00498{bottom:495.356721pt;}
.y5_c00498{bottom:495.518040pt;}
.y6_c00498{bottom:496.220383pt;}
.y7_c00498{bottom:496.940912pt;}
.y1_c00498{bottom:508.080000pt;}
.h8_c00498{height:51.336439pt;}
.hb_c00498{height:53.203219pt;}
.h15_c00498{height:53.205213pt;}
.he_c00498{height:54.136608pt;}
.hd_c00498{height:55.069998pt;}
.h11_c00498{height:55.072063pt;}
.h5_c00498{height:56.003388pt;}
.h13_c00498{height:56.005488pt;}
.hc_c00498{height:56.936778pt;}
.h12_c00498{height:56.938913pt;}
.ha_c00498{height:57.870167pt;}
.h17_c00498{height:57.871556pt;}
.h16_c00498{height:57.872337pt;}
.hf_c00498{height:58.800000pt;}
.h3_c00498{height:58.803557pt;}
.h10_c00498{height:58.805762pt;}
.h6_c00498{height:59.736947pt;}
.h14_c00498{height:59.739187pt;}
.h4_c00498{height:61.603727pt;}
.h9_c00498{height:62.537116pt;}
.h7_c00498{height:63.470506pt;}
.h2_c00498{height:79.333333pt;}
.h0_c00498{height:549.066667pt;}
.h1_c00498{height:549.333333pt;}
.w0_c00498{width:319.200000pt;}
.w1_c00498{width:319.333333pt;}
.x0_c00498{left:0.000000pt;}
.x4e_c00498{left:15.499120pt;}
.x17_c00498{left:16.557092pt;}
.x8_c00498{left:17.657616pt;}
.x61_c00498{left:19.676461pt;}
.x49_c00498{left:21.360000pt;}
.x2_c00498{left:23.304000pt;}
.x4b_c00498{left:29.690667pt;}
.x3_c00498{left:31.332000pt;}
.x46_c00498{left:35.993869pt;}
.x9_c00498{left:37.096063pt;}
.x1a_c00498{left:38.158673pt;}
.x57_c00498{left:40.039245pt;}
.x38_c00498{left:45.837080pt;}
.x67_c00498{left:47.181333pt;}
.x2c_c00498{left:48.399268pt;}
.x11_c00498{left:51.201881pt;}
.x14_c00498{left:53.904063pt;}
.x3e_c00498{left:55.436385pt;}
.x1f_c00498{left:56.879736pt;}
.x43_c00498{left:57.834784pt;}
.x58_c00498{left:58.974984pt;}
.x4f_c00498{left:59.893069pt;}
.x32_c00498{left:64.508315pt;}
.x28_c00498{left:65.760111pt;}
.x62_c00498{left:66.721683pt;}
.x3f_c00498{left:68.636651pt;}
.x4a_c00498{left:70.320000pt;}
.xa_c00498{left:73.585000pt;}
.x23_c00498{left:75.121028pt;}
.x20_c00498{left:78.240984pt;}
.xd_c00498{left:79.131901pt;}
.x63_c00498{left:84.483821pt;}
.x53_c00498{left:86.278827pt;}
.x2d_c00498{left:87.454885pt;}
.x65_c00498{left:88.702632pt;}
.x24_c00498{left:89.761469pt;}
.x1b_c00498{left:91.922504pt;}
.x4c_c00498{left:95.893333pt;}
.x2e_c00498{left:101.204951pt;}
.x39_c00498{left:103.440047pt;}
.x66_c00498{left:105.744208pt;}
.x50_c00498{left:107.435075pt;}
.x4_c00498{left:110.278667pt;}
.x47_c00498{left:111.599007pt;}
.x15_c00498{left:113.190084pt;}
.x40_c00498{left:115.199616pt;}
.x35_c00498{left:120.000995pt;}
.x18_c00498{left:120.963053pt;}
.x44_c00498{left:123.598733pt;}
.x5_c00498{left:124.944000pt;}
.x41_c00498{left:126.479647pt;}
.xb_c00498{left:127.843065pt;}
.xe_c00498{left:128.853716pt;}
.x5f_c00498{left:130.223725pt;}
.x16_c00498{left:132.163212pt;}
.x1_c00498{left:134.640000pt;}
.x29_c00498{left:138.003519pt;}
.x25_c00498{left:140.883659pt;}
.x36_c00498{left:144.002565pt;}
.x1c_c00498{left:148.085295pt;}
.x2f_c00498{left:149.920143pt;}
.x55_c00498{left:152.123109pt;}
.x26_c00498{left:156.724247pt;}
.x60_c00498{left:158.538784pt;}
.x2a_c00498{left:162.005089pt;}
.x59_c00498{left:163.616195pt;}
.x3c_c00498{left:166.563721pt;}
.x4d_c00498{left:167.453333pt;}
.x30_c00498{left:169.600611pt;}
.x51_c00498{left:172.223989pt;}
.x12_c00498{left:178.203155pt;}
.x5c_c00498{left:181.301568pt;}
.x21_c00498{left:182.886975pt;}
.x45_c00498{left:185.042169pt;}
.x6_c00498{left:188.793333pt;}
.x48_c00498{left:190.323192pt;}
.x52_c00498{left:191.441584pt;}
.x68_c00498{left:192.338667pt;}
.xc_c00498{left:193.837013pt;}
.x56_c00498{left:196.308011pt;}
.x33_c00498{left:197.930315pt;}
.x37_c00498{left:200.645415pt;}
.x5d_c00498{left:205.391899pt;}
.x27_c00498{left:207.127681pt;}
.x69_c00498{left:208.482667pt;}
.x1d_c00498{left:211.688995pt;}
.x22_c00498{left:214.569469pt;}
.x5a_c00498{left:215.463467pt;}
.x64_c00498{left:216.736397pt;}
.x34_c00498{left:218.597185pt;}
.xf_c00498{left:221.649639pt;}
.x3a_c00498{left:230.647432pt;}
.x13_c00498{left:233.426539pt;}
.x2b_c00498{left:237.989484pt;}
.x54_c00498{left:241.866459pt;}
.x10_c00498{left:244.965945pt;}
.x31_c00498{left:248.325149pt;}
.x42_c00498{left:252.726915pt;}
.x7_c00498{left:254.296000pt;}
.x3b_c00498{left:256.569237pt;}
.x19_c00498{left:259.451803pt;}
.x1e_c00498{left:261.612371pt;}
.x5e_c00498{left:266.584373pt;}
.x3d_c00498{left:271.929800pt;}
.x5b_c00498{left:284.723829pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00499 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00499 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00499 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00499 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010910,0.000000,0.000000,0.250000,0,0);}
.mdb_c00499{transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00499{transform:matrix(0.139539,0.002093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.139539,0.002093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.139539,0.002093,-0.003750,0.249972,0,0);}
.m71_c00499{transform:matrix(0.149020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149020,0.000000,0.000000,0.250000,0,0);}
.m22_c00499{transform:matrix(0.149910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00499{transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);}
.maf_c00499{transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152815,0.000000,0.000000,0.250000,0,0);}
.m93_c00499{transform:matrix(0.152830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152830,0.000000,0.000000,0.250000,0,0);}
.mb7_c00499{transform:matrix(0.153953,0.002309,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153953,0.002309,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153953,0.002309,-0.003750,0.249972,0,0);}
.m69_c00499{transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154680,0.000000,0.000000,0.250000,0,0);}
.ma9_c00499{transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155590,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.156390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156390,0.000000,0.000000,0.250000,0,0);}
.mb6_c00499{transform:matrix(0.156762,0.002351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156762,0.002351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156762,0.002351,-0.003750,0.249972,0,0);}
.m94_c00499{transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157080,0.000000,0.000000,0.250000,0,0);}
.mb2_c00499{transform:matrix(0.157237,0.002359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157237,0.002359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157237,0.002359,-0.003750,0.249972,0,0);}
.m8f_c00499{transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160190,0.000000,0.000000,0.250000,0,0);}
.mb0_c00499{transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161390,0.000000,0.000000,0.250000,0,0);}
.m5d_c00499{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00499{transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162885,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163005,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);}
.md7_c00499{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00499{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.167481,0.002512,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167481,0.002512,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167481,0.002512,-0.003750,0.249972,0,0);}
.mb3_c00499{transform:matrix(0.167551,0.002513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167551,0.002513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167551,0.002513,-0.003750,0.249972,0,0);}
.m72_c00499{transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167730,0.000000,0.000000,0.250000,0,0);}
.ma0_c00499{transform:matrix(0.168930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168930,0.000000,0.000000,0.250000,0,0);}
.m9a_c00499{transform:matrix(0.169285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169285,0.000000,0.000000,0.250000,0,0);}
.mab_c00499{transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169360,0.000000,0.000000,0.250000,0,0);}
.mc0_c00499{transform:matrix(0.169461,0.002542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169461,0.002542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169461,0.002542,-0.003750,0.249972,0,0);}
.m51_c00499{transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169480,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00499{transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170730,0.000000,0.000000,0.250000,0,0);}
.ma4_c00499{transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170940,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171885,0.000000,0.000000,0.250000,0,0);}
.m9d_c00499{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.m6f_c00499{transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173165,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m90_c00499{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.m56_c00499{transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174285,0.000000,0.000000,0.250000,0,0);}
.m23_c00499{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.mc2_c00499{transform:matrix(0.174630,0.002619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174630,0.002619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174630,0.002619,-0.003750,0.249972,0,0);}
.mae_c00499{transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00499{transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176280,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177520,0.000000,0.000000,0.250000,0,0);}
.mb5_c00499{transform:matrix(0.177875,0.002668,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177875,0.002668,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177875,0.002668,-0.003750,0.249972,0,0);}
.m7f_c00499{transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177915,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m92_c00499{transform:matrix(0.179235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179235,0.000000,0.000000,0.250000,0,0);}
.m96_c00499{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m70_c00499{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.md9_c00499{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m95_c00499{transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180405,0.000000,0.000000,0.250000,0,0);}
.mc4_c00499{transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181055,0.002716,-0.003750,0.249972,0,0);}
.ma5_c00499{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m58_c00499{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182365,0.000000,0.000000,0.250000,0,0);}
.mac_c00499{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m52_c00499{transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182685,0.000000,0.000000,0.250000,0,0);}
.m32_c00499{transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182880,0.000000,0.000000,0.250000,0,0);}
.md3_c00499{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183240,0.000000,0.000000,0.250000,0,0);}
.mc7_c00499{transform:matrix(0.183559,0.002753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183559,0.002753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183559,0.002753,-0.003750,0.249972,0,0);}
.mc1_c00499{transform:matrix(0.183594,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183594,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183594,0.002754,-0.003750,0.249972,0,0);}
.m4c_c00499{transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183670,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.183935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183935,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00499{transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184015,0.000000,0.000000,0.250000,0,0);}
.m9c_c00499{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);}
.m54_c00499{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mad_c00499{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m55_c00499{transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186245,0.000000,0.000000,0.250000,0,0);}
.mb4_c00499{transform:matrix(0.187334,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187334,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187334,0.002810,-0.003750,0.249972,0,0);}
.m4a_c00499{transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188255,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m98_c00499{transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189385,0.000000,0.000000,0.250000,0,0);}
.m8a_c00499{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00499{transform:matrix(0.189574,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189574,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189574,0.002844,-0.003750,0.249972,0,0);}
.mc9_c00499{transform:matrix(0.189859,0.002848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189859,0.002848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189859,0.002848,-0.003750,0.249972,0,0);}
.maa_c00499{transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190565,0.000000,0.000000,0.250000,0,0);}
.m74_c00499{transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);}
.m7d_c00499{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m91_c00499{transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190945,0.000000,0.000000,0.250000,0,0);}
.m9f_c00499{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m8b_c00499{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.ma7_c00499{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m36_c00499{transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);}
.ma6_c00499{transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195320,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m77_c00499{transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195740,0.000000,0.000000,0.250000,0,0);}
.m1d_c00499{transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m57_c00499{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00499{transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196330,0.000000,0.000000,0.250000,0,0);}
.md5_c00499{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.m99_c00499{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m9b_c00499{transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198780,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199310,0.000000,0.000000,0.250000,0,0);}
.m85_c00499{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.m81_c00499{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m2a_c00499{transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202185,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.mba_c00499{transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202857,0.003043,-0.003750,0.249972,0,0);}
.m10_c00499{transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);}
.m61_c00499{transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202980,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.m53_c00499{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m59_c00499{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.mda_c00499{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.mbd_c00499{transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206167,0.003093,-0.003750,0.249972,0,0);}
.m3a_c00499{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m87_c00499{transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207605,0.000000,0.000000,0.250000,0,0);}
.mcc_c00499{transform:matrix(0.207677,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207677,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207677,0.003115,-0.003750,0.249972,0,0);}
.ma1_c00499{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m97_c00499{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mbf_c00499{transform:matrix(0.208552,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208552,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208552,0.003128,-0.003750,0.249972,0,0);}
.m39_c00499{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.mbe_c00499{transform:matrix(0.208991,0.003135,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208991,0.003135,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208991,0.003135,-0.003750,0.249972,0,0);}
.mc6_c00499{transform:matrix(0.209016,0.003135,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209016,0.003135,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209016,0.003135,-0.003750,0.249972,0,0);}
.m7c_c00499{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.mce_c00499{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.m7b_c00499{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.m3e_c00499{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);}
.ma2_c00499{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.md8_c00499{transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.mca_c00499{transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211971,0.003180,-0.003750,0.249972,0,0);}
.mc3_c00499{transform:matrix(0.212736,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212736,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212736,0.003191,-0.003750,0.249972,0,0);}
.m3d_c00499{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m40_c00499{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00499{transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216685,0.000000,0.000000,0.250000,0,0);}
.m64_c00499{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00499{transform:matrix(0.217231,0.003258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217231,0.003258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217231,0.003258,-0.003750,0.249972,0,0);}
.m3c_c00499{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m42_c00499{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218595,0.000000,0.000000,0.250000,0,0);}
.mc8_c00499{transform:matrix(0.218895,0.003283,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218895,0.003283,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218895,0.003283,-0.003750,0.249972,0,0);}
.m5b_c00499{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219265,0.000000,0.000000,0.250000,0,0);}
.m89_c00499{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.ma8_c00499{transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m49_c00499{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.md4_c00499{transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.223975,0.003360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223975,0.003360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223975,0.003360,-0.003750,0.249972,0,0);}
.m79_c00499{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.m73_c00499{transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224460,0.000000,0.000000,0.250000,0,0);}
.m8c_c00499{transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);}
.m82_c00499{transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225730,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225960,0.000000,0.000000,0.250000,0,0);}
.m60_c00499{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m76_c00499{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.md6_c00499{transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);}
.m83_c00499{transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);}
.mcd_c00499{transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);}
.m62_c00499{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m35_c00499{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m84_c00499{transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.md2_c00499{transform:matrix(0.239305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239305,0.000000,0.000000,0.250000,0,0);}
.md0_c00499{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.mcf_c00499{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.m66_c00499{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);}
.m5a_c00499{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m63_c00499{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);}
.md1_c00499{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m78_c00499{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.mbc_c00499{transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);}
.m34_c00499{transform:matrix(0.256650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256650,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.261115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261115,0.000000,0.000000,0.250000,0,0);}
.m6a_c00499{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);}
.m86_c00499{transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);}
.m43_c00499{transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.340885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340885,0.000000,0.000000,0.250000,0,0);}
.m44_c00499{transform:matrix(0.380840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380840,0.000000,0.000000,0.250000,0,0);}
.mde_c00499{transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402780,0.000000,0.000000,0.250000,0,0);}
.mbb_c00499{transform:matrix(0.636763,0.009551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.636763,0.009551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.636763,0.009551,-0.003750,0.249972,0,0);}
.m8d_c00499{transform:matrix(0.862085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862085,0.000000,0.000000,0.250000,0,0);}
.mdd_c00499{transform:matrix(1.047480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047480,0.000000,0.000000,0.250000,0,0);}
.mdc_c00499{transform:matrix(1.477350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.477350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.477350,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:transparent;}
.fs14_c00499{font-size:16.800000px;}
.fs15_c00499{font-size:22.050000px;}
.fs8_c00499{font-size:54.600000px;}
.fsb_c00499{font-size:55.650000px;}
.fs13_c00499{font-size:56.700000px;}
.fs12_c00499{font-size:57.756497px;}
.fs9_c00499{font-size:58.800000px;}
.fs1_c00499{font-size:60.900000px;}
.fs2_c00499{font-size:61.950000px;}
.fs7_c00499{font-size:63.000000px;}
.fsa_c00499{font-size:64.050000px;}
.fs10_c00499{font-size:64.057205px;}
.fs6_c00499{font-size:65.100000px;}
.fs11_c00499{font-size:65.107323px;}
.fse_c00499{font-size:66.150000px;}
.fs5_c00499{font-size:67.200000px;}
.fs4_c00499{font-size:68.250000px;}
.fsd_c00499{font-size:69.300000px;}
.fs3_c00499{font-size:71.400000px;}
.fsc_c00499{font-size:73.500000px;}
.fsf_c00499{font-size:73.508268px;}
.fs0_c00499{font-size:89.250000px;}
.y0_c00499{bottom:0.000000px;}
.y3f_c00499{bottom:30.687000px;}
.y3e_c00499{bottom:48.132000px;}
.y38_c00499{bottom:62.510175px;}
.y39_c00499{bottom:62.510647px;}
.y37_c00499{bottom:62.510857px;}
.y36_c00499{bottom:62.510917px;}
.y3d_c00499{bottom:62.511322px;}
.y3a_c00499{bottom:62.511337px;}
.y3c_c00499{bottom:62.511900px;}
.y3b_c00499{bottom:62.512027px;}
.y35_c00499{bottom:78.131017px;}
.y34_c00499{bottom:79.144477px;}
.y33_c00499{bottom:79.715122px;}
.y32_c00499{bottom:80.020350px;}
.y31_c00499{bottom:80.249722px;}
.y30_c00499{bottom:80.728492px;}
.y2f_c00499{bottom:94.694482px;}
.y2e_c00499{bottom:95.552017px;}
.y2d_c00499{bottom:95.801520px;}
.y2c_c00499{bottom:96.673755px;}
.y2b_c00499{bottom:97.124160px;}
.y2a_c00499{bottom:97.959120px;}
.y29_c00499{bottom:98.279880px;}
.y28_c00499{bottom:111.057937px;}
.y27_c00499{bottom:111.625005px;}
.y26_c00499{bottom:112.455277px;}
.y25_c00499{bottom:113.410920px;}
.y24_c00499{bottom:113.750467px;}
.y23_c00499{bottom:114.143160px;}
.y22_c00499{bottom:115.023000px;}
.y21_c00499{bottom:130.662000px;}
.y20_c00499{bottom:147.849000px;}
.y1f_c00499{bottom:164.985000px;}
.y1e_c00499{bottom:183.775500px;}
.y1d_c00499{bottom:199.650000px;}
.y1c_c00499{bottom:217.165500px;}
.y1b_c00499{bottom:233.398500px;}
.y1a_c00499{bottom:249.940500px;}
.y19_c00499{bottom:267.096000px;}
.y18_c00499{bottom:283.975500px;}
.y17_c00499{bottom:300.952500px;}
.y16_c00499{bottom:317.824500px;}
.y15_c00499{bottom:335.124000px;}
.y14_c00499{bottom:352.225500px;}
.y13_c00499{bottom:369.280500px;}
.y12_c00499{bottom:387.181500px;}
.y11_c00499{bottom:403.101000px;}
.y10_c00499{bottom:419.994000px;}
.yf_c00499{bottom:436.047000px;}
.ye_c00499{bottom:436.921500px;}
.yd_c00499{bottom:437.380500px;}
.yc_c00499{bottom:437.644500px;}
.yb_c00499{bottom:438.133500px;}
.ya_c00499{bottom:438.268500px;}
.y9_c00499{bottom:438.481500px;}
.y8_c00499{bottom:453.598500px;}
.y41_c00499{bottom:456.030000px;}
.y7_c00499{bottom:470.752500px;}
.y6_c00499{bottom:487.911000px;}
.y5_c00499{bottom:504.643500px;}
.y40_c00499{bottom:509.220000px;}
.y4_c00499{bottom:521.824500px;}
.y3_c00499{bottom:538.963500px;}
.y2_c00499{bottom:555.534000px;}
.y1_c00499{bottom:567.819000px;}
.h16_c00499{height:16.800000px;}
.h17_c00499{height:22.050000px;}
.ha_c00499{height:54.600000px;}
.hd_c00499{height:55.650000px;}
.h15_c00499{height:56.700000px;}
.h14_c00499{height:57.756497px;}
.hb_c00499{height:58.800000px;}
.h3_c00499{height:60.900000px;}
.h4_c00499{height:61.950000px;}
.h9_c00499{height:63.000000px;}
.hc_c00499{height:64.050000px;}
.h12_c00499{height:64.057205px;}
.h8_c00499{height:65.100000px;}
.h13_c00499{height:65.107323px;}
.h10_c00499{height:66.150000px;}
.h7_c00499{height:67.200000px;}
.h6_c00499{height:68.250000px;}
.hf_c00499{height:69.300000px;}
.h5_c00499{height:71.400000px;}
.he_c00499{height:73.500000px;}
.h11_c00499{height:73.508268px;}
.h2_c00499{height:89.250000px;}
.h0_c00499{height:617.700000px;}
.h1_c00499{height:618.000000px;}
.w0_c00499{width:359.100000px;}
.w1_c00499{width:359.250000px;}
.x0_c00499{left:0.000000px;}
.x70_c00499{left:37.670970px;}
.x49_c00499{left:38.883000px;}
.x3c_c00499{left:40.233000px;}
.x29_c00499{left:41.464500px;}
.xe_c00499{left:42.660000px;}
.x3_c00499{left:43.740000px;}
.x19_c00499{left:46.440000px;}
.x67_c00499{left:54.270000px;}
.x53_c00499{left:55.890000px;}
.x6f_c00499{left:61.126147px;}
.x20_c00499{left:63.180000px;}
.x5a_c00499{left:69.930000px;}
.x61_c00499{left:73.440000px;}
.x2a_c00499{left:76.281000px;}
.x4a_c00499{left:77.493000px;}
.x71_c00499{left:81.191580px;}
.x21_c00499{left:83.160000px;}
.x1a_c00499{left:84.780000px;}
.x57_c00499{left:85.860000px;}
.x44_c00499{left:89.373000px;}
.x38_c00499{left:92.073000px;}
.x13_c00499{left:96.660000px;}
.x25_c00499{left:98.280000px;}
.x4_c00499{left:99.900000px;}
.x72_c00499{left:101.984317px;}
.x14_c00499{left:105.570000px;}
.x45_c00499{left:107.463000px;}
.x4b_c00499{left:108.813000px;}
.x5b_c00499{left:112.590000px;}
.x1_c00499{left:113.670000px;}
.x3d_c00499{left:116.643000px;}
.xf_c00499{left:118.530000px;}
.x68_c00499{left:121.770000px;}
.x6a_c00499{left:123.520500px;}
.x2b_c00499{left:125.197500px;}
.xa_c00499{left:126.360000px;}
.x73_c00499{left:129.734482px;}
.x1b_c00499{left:132.030000px;}
.x5f_c00499{left:133.650000px;}
.x26_c00499{left:136.080000px;}
.x42_c00499{left:137.973000px;}
.x31_c00499{left:139.053000px;}
.x75_c00499{left:140.143815px;}
.x10_c00499{left:141.480000px;}
.x15_c00499{left:142.560000px;}
.x3e_c00499{left:144.723000px;}
.x6b_c00499{left:146.157000px;}
.x33_c00499{left:147.693000px;}
.x58_c00499{left:149.040000px;}
.x1c_c00499{left:152.010000px;}
.x2e_c00499{left:156.063000px;}
.xb_c00499{left:161.730000px;}
.x46_c00499{left:163.623000px;}
.x3f_c00499{left:165.513000px;}
.x4c_c00499{left:167.673000px;}
.x2_c00499{left:170.370000px;}
.x5c_c00499{left:172.260000px;}
.x22_c00499{left:174.150000px;}
.x47_c00499{left:177.123000px;}
.x16_c00499{left:178.200000px;}
.x54_c00499{left:179.820000px;}
.x74_c00499{left:181.580587px;}
.x5_c00499{left:183.060000px;}
.x34_c00499{left:184.143000px;}
.x32_c00499{left:185.493000px;}
.x76_c00499{left:188.208637px;}
.x5d_c00499{left:189.270000px;}
.x27_c00499{left:191.700000px;}
.x55_c00499{left:193.860000px;}
.x2c_c00499{left:197.524500px;}
.x23_c00499{left:198.990000px;}
.x39_c00499{left:200.073000px;}
.x50_c00499{left:201.963000px;}
.x5e_c00499{left:205.200000px;}
.x6c_c00499{left:209.866500px;}
.x6_c00499{left:210.870000px;}
.x60_c00499{left:212.220000px;}
.x64_c00499{left:216.000000px;}
.x28_c00499{left:217.350000px;}
.x1d_c00499{left:220.860000px;}
.x65_c00499{left:224.100000px;}
.x35_c00499{left:225.993000px;}
.x11_c00499{left:228.960000px;}
.x4d_c00499{left:230.043000px;}
.x7_c00499{left:232.740000px;}
.x36_c00499{left:234.363000px;}
.xc_c00499{left:236.790000px;}
.x56_c00499{left:237.870000px;}
.x48_c00499{left:238.953000px;}
.x24_c00499{left:240.570000px;}
.x17_c00499{left:242.190000px;}
.x77_c00499{left:244.375282px;}
.x4e_c00499{left:248.403000px;}
.x2f_c00499{left:254.883000px;}
.x8_c00499{left:257.580000px;}
.x62_c00499{left:260.010000px;}
.x78_c00499{left:264.088215px;}
.x6d_c00499{left:265.218000px;}
.x1e_c00499{left:267.300000px;}
.x52_c00499{left:270.003000px;}
.x51_c00499{left:273.243000px;}
.x40_c00499{left:278.103000px;}
.x43_c00499{left:281.073000px;}
.x30_c00499{left:282.693000px;}
.x2d_c00499{left:284.991000px;}
.x79_c00499{left:288.090000px;}
.xd_c00499{left:291.330000px;}
.x12_c00499{left:292.410000px;}
.x1f_c00499{left:293.490000px;}
.x3a_c00499{left:299.433000px;}
.x18_c00499{left:301.050000px;}
.x6e_c00499{left:303.022500px;}
.x41_c00499{left:304.833000px;}
.x59_c00499{left:307.800000px;}
.x4f_c00499{left:309.693000px;}
.x69_c00499{left:311.310000px;}
.x3b_c00499{left:319.953000px;}
.x66_c00499{left:323.460000px;}
.x37_c00499{left:325.893000px;}
.x63_c00499{left:328.590000px;}
.x9_c00499{left:331.830000px;}
.x7b_c00499{left:355.590000px;}
.x7a_c00499{left:358.560000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs14_c00499{font-size:14.933333pt;}
.fs15_c00499{font-size:19.600000pt;}
.fs8_c00499{font-size:48.533333pt;}
.fsb_c00499{font-size:49.466667pt;}
.fs13_c00499{font-size:50.400000pt;}
.fs12_c00499{font-size:51.339108pt;}
.fs9_c00499{font-size:52.266667pt;}
.fs1_c00499{font-size:54.133333pt;}
.fs2_c00499{font-size:55.066667pt;}
.fs7_c00499{font-size:56.000000pt;}
.fsa_c00499{font-size:56.933333pt;}
.fs10_c00499{font-size:56.939738pt;}
.fs6_c00499{font-size:57.866667pt;}
.fs11_c00499{font-size:57.873176pt;}
.fse_c00499{font-size:58.800000pt;}
.fs5_c00499{font-size:59.733333pt;}
.fs4_c00499{font-size:60.666667pt;}
.fsd_c00499{font-size:61.600000pt;}
.fs3_c00499{font-size:63.466667pt;}
.fsc_c00499{font-size:65.333333pt;}
.fsf_c00499{font-size:65.340683pt;}
.fs0_c00499{font-size:79.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y3f_c00499{bottom:27.277333pt;}
.y3e_c00499{bottom:42.784000pt;}
.y38_c00499{bottom:55.564600pt;}
.y39_c00499{bottom:55.565020pt;}
.y37_c00499{bottom:55.565207pt;}
.y36_c00499{bottom:55.565260pt;}
.y3d_c00499{bottom:55.565620pt;}
.y3a_c00499{bottom:55.565633pt;}
.y3c_c00499{bottom:55.566133pt;}
.y3b_c00499{bottom:55.566247pt;}
.y35_c00499{bottom:69.449793pt;}
.y34_c00499{bottom:70.350647pt;}
.y33_c00499{bottom:70.857887pt;}
.y32_c00499{bottom:71.129200pt;}
.y31_c00499{bottom:71.333087pt;}
.y30_c00499{bottom:71.758660pt;}
.y2f_c00499{bottom:84.172873pt;}
.y2e_c00499{bottom:84.935127pt;}
.y2d_c00499{bottom:85.156907pt;}
.y2c_c00499{bottom:85.932227pt;}
.y2b_c00499{bottom:86.332587pt;}
.y2a_c00499{bottom:87.074773pt;}
.y29_c00499{bottom:87.359893pt;}
.y28_c00499{bottom:98.718167pt;}
.y27_c00499{bottom:99.222227pt;}
.y26_c00499{bottom:99.960247pt;}
.y25_c00499{bottom:100.809707pt;}
.y24_c00499{bottom:101.111527pt;}
.y23_c00499{bottom:101.460587pt;}
.y22_c00499{bottom:102.242667pt;}
.y21_c00499{bottom:116.144000pt;}
.y20_c00499{bottom:131.421333pt;}
.y1f_c00499{bottom:146.653333pt;}
.y1e_c00499{bottom:163.356000pt;}
.y1d_c00499{bottom:177.466667pt;}
.y1c_c00499{bottom:193.036000pt;}
.y1b_c00499{bottom:207.465333pt;}
.y1a_c00499{bottom:222.169333pt;}
.y19_c00499{bottom:237.418667pt;}
.y18_c00499{bottom:252.422667pt;}
.y17_c00499{bottom:267.513333pt;}
.y16_c00499{bottom:282.510667pt;}
.y15_c00499{bottom:297.888000pt;}
.y14_c00499{bottom:313.089333pt;}
.y13_c00499{bottom:328.249333pt;}
.y12_c00499{bottom:344.161333pt;}
.y11_c00499{bottom:358.312000pt;}
.y10_c00499{bottom:373.328000pt;}
.yf_c00499{bottom:387.597333pt;}
.ye_c00499{bottom:388.374667pt;}
.yd_c00499{bottom:388.782667pt;}
.yc_c00499{bottom:389.017333pt;}
.yb_c00499{bottom:389.452000pt;}
.ya_c00499{bottom:389.572000pt;}
.y9_c00499{bottom:389.761333pt;}
.y8_c00499{bottom:403.198667pt;}
.y41_c00499{bottom:405.360000pt;}
.y7_c00499{bottom:418.446667pt;}
.y6_c00499{bottom:433.698667pt;}
.y5_c00499{bottom:448.572000pt;}
.y40_c00499{bottom:452.640000pt;}
.y4_c00499{bottom:463.844000pt;}
.y3_c00499{bottom:479.078667pt;}
.y2_c00499{bottom:493.808000pt;}
.y1_c00499{bottom:504.728000pt;}
.h16_c00499{height:14.933333pt;}
.h17_c00499{height:19.600000pt;}
.ha_c00499{height:48.533333pt;}
.hd_c00499{height:49.466667pt;}
.h15_c00499{height:50.400000pt;}
.h14_c00499{height:51.339108pt;}
.hb_c00499{height:52.266667pt;}
.h3_c00499{height:54.133333pt;}
.h4_c00499{height:55.066667pt;}
.h9_c00499{height:56.000000pt;}
.hc_c00499{height:56.933333pt;}
.h12_c00499{height:56.939738pt;}
.h8_c00499{height:57.866667pt;}
.h13_c00499{height:57.873176pt;}
.h10_c00499{height:58.800000pt;}
.h7_c00499{height:59.733333pt;}
.h6_c00499{height:60.666667pt;}
.hf_c00499{height:61.600000pt;}
.h5_c00499{height:63.466667pt;}
.he_c00499{height:65.333333pt;}
.h11_c00499{height:65.340683pt;}
.h2_c00499{height:79.333333pt;}
.h0_c00499{height:549.066667pt;}
.h1_c00499{height:549.333333pt;}
.w0_c00499{width:319.200000pt;}
.w1_c00499{width:319.333333pt;}
.x0_c00499{left:0.000000pt;}
.x70_c00499{left:33.485307pt;}
.x49_c00499{left:34.562667pt;}
.x3c_c00499{left:35.762667pt;}
.x29_c00499{left:36.857333pt;}
.xe_c00499{left:37.920000pt;}
.x3_c00499{left:38.880000pt;}
.x19_c00499{left:41.280000pt;}
.x67_c00499{left:48.240000pt;}
.x53_c00499{left:49.680000pt;}
.x6f_c00499{left:54.334353pt;}
.x20_c00499{left:56.160000pt;}
.x5a_c00499{left:62.160000pt;}
.x61_c00499{left:65.280000pt;}
.x2a_c00499{left:67.805333pt;}
.x4a_c00499{left:68.882667pt;}
.x71_c00499{left:72.170293pt;}
.x21_c00499{left:73.920000pt;}
.x1a_c00499{left:75.360000pt;}
.x57_c00499{left:76.320000pt;}
.x44_c00499{left:79.442667pt;}
.x38_c00499{left:81.842667pt;}
.x13_c00499{left:85.920000pt;}
.x25_c00499{left:87.360000pt;}
.x4_c00499{left:88.800000pt;}
.x72_c00499{left:90.652727pt;}
.x14_c00499{left:93.840000pt;}
.x45_c00499{left:95.522667pt;}
.x4b_c00499{left:96.722667pt;}
.x5b_c00499{left:100.080000pt;}
.x1_c00499{left:101.040000pt;}
.x3d_c00499{left:103.682667pt;}
.xf_c00499{left:105.360000pt;}
.x68_c00499{left:108.240000pt;}
.x6a_c00499{left:109.796000pt;}
.x2b_c00499{left:111.286667pt;}
.xa_c00499{left:112.320000pt;}
.x73_c00499{left:115.319540pt;}
.x1b_c00499{left:117.360000pt;}
.x5f_c00499{left:118.800000pt;}
.x26_c00499{left:120.960000pt;}
.x42_c00499{left:122.642667pt;}
.x31_c00499{left:123.602667pt;}
.x75_c00499{left:124.572280pt;}
.x10_c00499{left:125.760000pt;}
.x15_c00499{left:126.720000pt;}
.x3e_c00499{left:128.642667pt;}
.x6b_c00499{left:129.917333pt;}
.x33_c00499{left:131.282667pt;}
.x58_c00499{left:132.480000pt;}
.x1c_c00499{left:135.120000pt;}
.x2e_c00499{left:138.722667pt;}
.xb_c00499{left:143.760000pt;}
.x46_c00499{left:145.442667pt;}
.x3f_c00499{left:147.122667pt;}
.x4c_c00499{left:149.042667pt;}
.x2_c00499{left:151.440000pt;}
.x5c_c00499{left:153.120000pt;}
.x22_c00499{left:154.800000pt;}
.x47_c00499{left:157.442667pt;}
.x16_c00499{left:158.400000pt;}
.x54_c00499{left:159.840000pt;}
.x74_c00499{left:161.404967pt;}
.x5_c00499{left:162.720000pt;}
.x34_c00499{left:163.682667pt;}
.x32_c00499{left:164.882667pt;}
.x76_c00499{left:167.296567pt;}
.x5d_c00499{left:168.240000pt;}
.x27_c00499{left:170.400000pt;}
.x55_c00499{left:172.320000pt;}
.x2c_c00499{left:175.577333pt;}
.x23_c00499{left:176.880000pt;}
.x39_c00499{left:177.842667pt;}
.x50_c00499{left:179.522667pt;}
.x5e_c00499{left:182.400000pt;}
.x6c_c00499{left:186.548000pt;}
.x6_c00499{left:187.440000pt;}
.x60_c00499{left:188.640000pt;}
.x64_c00499{left:192.000000pt;}
.x28_c00499{left:193.200000pt;}
.x1d_c00499{left:196.320000pt;}
.x65_c00499{left:199.200000pt;}
.x35_c00499{left:200.882667pt;}
.x11_c00499{left:203.520000pt;}
.x4d_c00499{left:204.482667pt;}
.x7_c00499{left:206.880000pt;}
.x36_c00499{left:208.322667pt;}
.xc_c00499{left:210.480000pt;}
.x56_c00499{left:211.440000pt;}
.x48_c00499{left:212.402667pt;}
.x24_c00499{left:213.840000pt;}
.x17_c00499{left:215.280000pt;}
.x77_c00499{left:217.222473pt;}
.x4e_c00499{left:220.802667pt;}
.x2f_c00499{left:226.562667pt;}
.x8_c00499{left:228.960000pt;}
.x62_c00499{left:231.120000pt;}
.x78_c00499{left:234.745080pt;}
.x6d_c00499{left:235.749333pt;}
.x1e_c00499{left:237.600000pt;}
.x52_c00499{left:240.002667pt;}
.x51_c00499{left:242.882667pt;}
.x40_c00499{left:247.202667pt;}
.x43_c00499{left:249.842667pt;}
.x30_c00499{left:251.282667pt;}
.x2d_c00499{left:253.325333pt;}
.x79_c00499{left:256.080000pt;}
.xd_c00499{left:258.960000pt;}
.x12_c00499{left:259.920000pt;}
.x1f_c00499{left:260.880000pt;}
.x3a_c00499{left:266.162667pt;}
.x18_c00499{left:267.600000pt;}
.x6e_c00499{left:269.353333pt;}
.x41_c00499{left:270.962667pt;}
.x59_c00499{left:273.600000pt;}
.x4f_c00499{left:275.282667pt;}
.x69_c00499{left:276.720000pt;}
.x3b_c00499{left:284.402667pt;}
.x66_c00499{left:287.520000pt;}
.x37_c00499{left:289.682667pt;}
.x63_c00499{left:292.080000pt;}
.x9_c00499{left:294.960000pt;}
.x7b_c00499{left:316.080000pt;}
.x7a_c00499{left:318.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00001 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00001 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00001 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00001 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a0d_c00001{transform:matrix(0.003329,0.208078,-0.249968,0.003999,0,0);-ms-transform:matrix(0.003329,0.208078,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.003329,0.208078,-0.249968,0.003999,0,0);}
.m2a0a_c00001{transform:matrix(0.003553,0.208995,-0.249964,0.004249,0,0);-ms-transform:matrix(0.003553,0.208995,-0.249964,0.004249,0,0);-webkit-transform:matrix(0.003553,0.208995,-0.249964,0.004249,0,0);}
.m2a09_c00001{transform:matrix(0.004020,0.236481,-0.249964,0.004249,0,0);-ms-transform:matrix(0.004020,0.236481,-0.249964,0.004249,0,0);-webkit-transform:matrix(0.004020,0.236481,-0.249964,0.004249,0,0);}
.m2a08_c00001{transform:matrix(0.004068,0.239275,-0.249964,0.004249,0,0);-ms-transform:matrix(0.004068,0.239275,-0.249964,0.004249,0,0);-webkit-transform:matrix(0.004068,0.239275,-0.249964,0.004249,0,0);}
.m98c_c00001{transform:matrix(0.004827,-0.000184,0.009503,0.249819,0,0);-ms-transform:matrix(0.004827,-0.000184,0.009503,0.249819,0,0);-webkit-transform:matrix(0.004827,-0.000184,0.009503,0.249819,0,0);}
.m16c1_c00001{transform:matrix(0.007006,-0.000238,0.008504,0.249855,0,0);-ms-transform:matrix(0.007006,-0.000238,0.008504,0.249855,0,0);-webkit-transform:matrix(0.007006,-0.000238,0.008504,0.249855,0,0);}
.m1212_c00001{transform:matrix(0.010471,-0.000283,0.006748,0.249909,0,0);-ms-transform:matrix(0.010471,-0.000283,0.006748,0.249909,0,0);-webkit-transform:matrix(0.010471,-0.000283,0.006748,0.249909,0,0);}
.m2a10_c00001{transform:matrix(0.011244,0.468480,-0.249928,0.005998,0,0);-ms-transform:matrix(0.011244,0.468480,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.011244,0.468480,-0.249928,0.005998,0,0);}
.mcfc_c00001{transform:matrix(0.011360,-0.000329,0.007247,0.249895,0,0);-ms-transform:matrix(0.011360,-0.000329,0.007247,0.249895,0,0);-webkit-transform:matrix(0.011360,-0.000329,0.007247,0.249895,0,0);}
.m6c2_c00001{transform:matrix(0.011361,0.000284,-0.006248,0.249922,0,0);-ms-transform:matrix(0.011361,0.000284,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.011361,0.000284,-0.006248,0.249922,0,0);}
.mc6a_c00001{transform:matrix(0.011730,-0.000340,0.007247,0.249895,0,0);-ms-transform:matrix(0.011730,-0.000340,0.007247,0.249895,0,0);-webkit-transform:matrix(0.011730,-0.000340,0.007247,0.249895,0,0);}
.mb86_c00001{transform:matrix(0.011947,0.000658,-0.013757,0.249621,0,0);-ms-transform:matrix(0.011947,0.000658,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.011947,0.000658,-0.013757,0.249621,0,0);}
.m2498_c00001{transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012120,0.000000,0.000000,0.250000,0,0);}
.m21a6_c00001{transform:matrix(0.012360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012360,0.000000,0.000000,0.250000,0,0);}
.m25a5_c00001{transform:matrix(0.012759,-0.000140,0.002750,0.249985,0,0);-ms-transform:matrix(0.012759,-0.000140,0.002750,0.249985,0,0);-webkit-transform:matrix(0.012759,-0.000140,0.002750,0.249985,0,0);}
.m1cf0_c00001{transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013225,0.000000,0.000000,0.250000,0,0);}
.m20aa_c00001{transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013435,0.000000,0.000000,0.250000,0,0);}
.m1a7e_c00001{transform:matrix(0.013470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013470,0.000000,0.000000,0.250000,0,0);}
.m2a11_c00001{transform:matrix(0.013584,0.468413,-0.249895,0.007247,0,0);-ms-transform:matrix(0.013584,0.468413,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.013584,0.468413,-0.249895,0.007247,0,0);}
.m111f_c00001{transform:matrix(0.013940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013940,0.000000,0.000000,0.250000,0,0);}
.m224_c00001{transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014050,0.000000,0.000000,0.250000,0,0);}
.mcfd_c00001{transform:matrix(0.014479,-0.000420,0.007247,0.249895,0,0);-ms-transform:matrix(0.014479,-0.000420,0.007247,0.249895,0,0);-webkit-transform:matrix(0.014479,-0.000420,0.007247,0.249895,0,0);}
.m1cc4_c00001{transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014785,0.000000,0.000000,0.250000,0,0);}
.m1f13_c00001{transform:matrix(0.015130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015130,0.000000,0.000000,0.250000,0,0);}
.m198_c00001{transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015200,0.000000,0.000000,0.250000,0,0);}
.m2387_c00001{transform:matrix(0.015980,-0.000415,0.006498,0.249916,0,0);-ms-transform:matrix(0.015980,-0.000415,0.006498,0.249916,0,0);-webkit-transform:matrix(0.015980,-0.000415,0.006498,0.249916,0,0);}
.m4c4_c00001{transform:matrix(0.016284,0.000179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016284,0.000179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016284,0.000179,-0.002750,0.249985,0,0);}
.m1e9_c00001{transform:matrix(0.016485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016485,0.000000,0.000000,0.250000,0,0);}
.m225_c00001{transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016530,0.000000,0.000000,0.250000,0,0);}
.m2a0f_c00001{transform:matrix(0.017114,1.711394,-0.249988,0.002500,0,0);-ms-transform:matrix(0.017114,1.711394,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.017114,1.711394,-0.249988,0.002500,0,0);}
.m739_c00001{transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017315,0.000000,0.000000,0.250000,0,0);}
.m1aad_c00001{transform:matrix(0.017615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017615,0.000000,0.000000,0.250000,0,0);}
.m25f5_c00001{transform:matrix(0.018255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018255,0.000000,0.000000,0.250000,0,0);}
.m4f9_c00001{transform:matrix(0.018924,0.000208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.018924,0.000208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.018924,0.000208,-0.002750,0.249985,0,0);}
.m2678_c00001{transform:matrix(0.018935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018935,0.000000,0.000000,0.250000,0,0);}
.m2386_c00001{transform:matrix(0.019818,-0.000515,0.006498,0.249916,0,0);-ms-transform:matrix(0.019818,-0.000515,0.006498,0.249916,0,0);-webkit-transform:matrix(0.019818,-0.000515,0.006498,0.249916,0,0);}
.m1272_c00001{transform:matrix(0.020083,-0.000542,0.006748,0.249909,0,0);-ms-transform:matrix(0.020083,-0.000542,0.006748,0.249909,0,0);-webkit-transform:matrix(0.020083,-0.000542,0.006748,0.249909,0,0);}
.m1d5d_c00001{transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);}
.m91a_c00001{transform:matrix(0.020765,-0.000790,0.009503,0.249819,0,0);-ms-transform:matrix(0.020765,-0.000790,0.009503,0.249819,0,0);-webkit-transform:matrix(0.020765,-0.000790,0.009503,0.249819,0,0);}
.m118d_c00001{transform:matrix(0.020980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020980,0.000000,0.000000,0.250000,0,0);}
.m12cd_c00001{transform:matrix(0.021413,0.000535,-0.006248,0.249922,0,0);-ms-transform:matrix(0.021413,0.000535,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.021413,0.000535,-0.006248,0.249922,0,0);}
.m280_c00001{transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021430,0.000000,0.000000,0.250000,0,0);}
.m192c_c00001{transform:matrix(0.022380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022380,0.000000,0.000000,0.250000,0,0);}
.m167d_c00001{transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025975,0.000000,0.000000,0.250000,0,0);}
.m251a_c00001{transform:matrix(0.026305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026305,0.000000,0.000000,0.250000,0,0);}
.m262a_c00001{transform:matrix(0.026775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026775,0.000000,0.000000,0.250000,0,0);}
.m2086_c00001{transform:matrix(0.027247,-0.000845,0.007746,0.249880,0,0);-ms-transform:matrix(0.027247,-0.000845,0.007746,0.249880,0,0);-webkit-transform:matrix(0.027247,-0.000845,0.007746,0.249880,0,0);}
.m987_c00001{transform:matrix(0.027260,-0.001037,0.009503,0.249819,0,0);-ms-transform:matrix(0.027260,-0.001037,0.009503,0.249819,0,0);-webkit-transform:matrix(0.027260,-0.001037,0.009503,0.249819,0,0);}
.m2638_c00001{transform:matrix(0.028415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028415,0.000000,0.000000,0.250000,0,0);}
.m205f_c00001{transform:matrix(0.028506,-0.000884,0.007746,0.249880,0,0);-ms-transform:matrix(0.028506,-0.000884,0.007746,0.249880,0,0);-webkit-transform:matrix(0.028506,-0.000884,0.007746,0.249880,0,0);}
.m61b_c00001{transform:matrix(0.030872,-0.001422,0.011499,0.249735,0,0);-ms-transform:matrix(0.030872,-0.001422,0.011499,0.249735,0,0);-webkit-transform:matrix(0.030872,-0.001422,0.011499,0.249735,0,0);}
.m18cb_c00001{transform:matrix(0.030905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030905,0.000000,0.000000,0.250000,0,0);}
.m4c6_c00001{transform:matrix(0.030943,0.000340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.030943,0.000340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.030943,0.000340,-0.002750,0.249985,0,0);}
.m1195_c00001{transform:matrix(0.035175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035175,0.000000,0.000000,0.250000,0,0);}
.m48a_c00001{transform:matrix(0.035325,-0.001450,0.010252,0.249790,0,0);-ms-transform:matrix(0.035325,-0.001450,0.010252,0.249790,0,0);-webkit-transform:matrix(0.035325,-0.001450,0.010252,0.249790,0,0);}
.m619_c00001{transform:matrix(0.036327,-0.001673,0.011499,0.249735,0,0);-ms-transform:matrix(0.036327,-0.001673,0.011499,0.249735,0,0);-webkit-transform:matrix(0.036327,-0.001673,0.011499,0.249735,0,0);}
.m19_c00001{transform:matrix(0.036475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036475,0.000000,0.000000,0.250000,0,0);}
.m1432_c00001{transform:matrix(0.036633,-0.000952,0.006498,0.249916,0,0);-ms-transform:matrix(0.036633,-0.000952,0.006498,0.249916,0,0);-webkit-transform:matrix(0.036633,-0.000952,0.006498,0.249916,0,0);}
.m19f0_c00001{transform:matrix(0.036650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036650,0.000000,0.000000,0.250000,0,0);}
.md86_c00001{transform:matrix(0.037107,0.000482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.037107,0.000482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.037107,0.000482,-0.003250,0.249979,0,0);}
.m1376_c00001{transform:matrix(0.038075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038075,0.000000,0.000000,0.250000,0,0);}
.m2c3_c00001{transform:matrix(0.038280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038280,0.000000,0.000000,0.250000,0,0);}
.m1433_c00001{transform:matrix(0.038322,-0.000996,0.006498,0.249916,0,0);-ms-transform:matrix(0.038322,-0.000996,0.006498,0.249916,0,0);-webkit-transform:matrix(0.038322,-0.000996,0.006498,0.249916,0,0);}
.m28d6_c00001{transform:matrix(0.040707,0.000488,-0.003000,0.249982,0,0);-ms-transform:matrix(0.040707,0.000488,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.040707,0.000488,-0.003000,0.249982,0,0);}
.maaa_c00001{transform:matrix(0.041341,-0.001075,0.006498,0.249916,0,0);-ms-transform:matrix(0.041341,-0.001075,0.006498,0.249916,0,0);-webkit-transform:matrix(0.041341,-0.001075,0.006498,0.249916,0,0);}
.m1203_c00001{transform:matrix(0.044719,-0.000984,0.005499,0.249940,0,0);-ms-transform:matrix(0.044719,-0.000984,0.005499,0.249940,0,0);-webkit-transform:matrix(0.044719,-0.000984,0.005499,0.249940,0,0);}
.me6a_c00001{transform:matrix(0.045638,0.000821,-0.004499,0.249960,0,0);-ms-transform:matrix(0.045638,0.000821,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.045638,0.000821,-0.004499,0.249960,0,0);}
.m28c6_c00001{transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046285,0.000000,0.000000,0.250000,0,0);}
.maab_c00001{transform:matrix(0.046384,-0.001206,0.006498,0.249916,0,0);-ms-transform:matrix(0.046384,-0.001206,0.006498,0.249916,0,0);-webkit-transform:matrix(0.046384,-0.001206,0.006498,0.249916,0,0);}
.mba4_c00001{transform:matrix(0.047287,0.000567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.047287,0.000567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.047287,0.000567,-0.003000,0.249982,0,0);}
.m8db_c00001{transform:matrix(0.048169,-0.001591,0.008254,0.249864,0,0);-ms-transform:matrix(0.048169,-0.001591,0.008254,0.249864,0,0);-webkit-transform:matrix(0.048169,-0.001591,0.008254,0.249864,0,0);}
.m2738_c00001{transform:matrix(0.048550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048550,0.000000,0.000000,0.250000,0,0);}
.m444_c00001{transform:matrix(0.049761,-0.000945,0.004749,0.249955,0,0);-ms-transform:matrix(0.049761,-0.000945,0.004749,0.249955,0,0);-webkit-transform:matrix(0.049761,-0.000945,0.004749,0.249955,0,0);}
.m8dc_c00001{transform:matrix(0.049883,-0.001648,0.008254,0.249864,0,0);-ms-transform:matrix(0.049883,-0.001648,0.008254,0.249864,0,0);-webkit-transform:matrix(0.049883,-0.001648,0.008254,0.249864,0,0);}
.m61a_c00001{transform:matrix(0.049927,-0.002299,0.011499,0.249735,0,0);-ms-transform:matrix(0.049927,-0.002299,0.011499,0.249735,0,0);-webkit-transform:matrix(0.049927,-0.002299,0.011499,0.249735,0,0);}
.m491_c00001{transform:matrix(0.049958,-0.002050,0.010252,0.249790,0,0);-ms-transform:matrix(0.049958,-0.002050,0.010252,0.249790,0,0);-webkit-transform:matrix(0.049958,-0.002050,0.010252,0.249790,0,0);}
.m18ca_c00001{transform:matrix(0.049980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049980,0.000000,0.000000,0.250000,0,0);}
.m299f_c00001{transform:matrix(0.050154,-0.000802,0.003999,0.249968,0,0);-ms-transform:matrix(0.050154,-0.000802,0.003999,0.249968,0,0);-webkit-transform:matrix(0.050154,-0.000802,0.003999,0.249968,0,0);}
.m1b7d_c00001{transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050485,0.000000,0.000000,0.250000,0,0);}
.m29b0_c00001{transform:matrix(0.054890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054890,0.000000,0.000000,0.250000,0,0);}
.ma21_c00001{transform:matrix(0.055735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055735,0.000000,0.000000,0.250000,0,0);}
.m2465_c00001{transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);}
.m490_c00001{transform:matrix(0.055853,-0.002292,0.010252,0.249790,0,0);-ms-transform:matrix(0.055853,-0.002292,0.010252,0.249790,0,0);-webkit-transform:matrix(0.055853,-0.002292,0.010252,0.249790,0,0);}
.m1fb3_c00001{transform:matrix(0.056725,-0.002385,0.010501,0.249779,0,0);-ms-transform:matrix(0.056725,-0.002385,0.010501,0.249779,0,0);-webkit-transform:matrix(0.056725,-0.002385,0.010501,0.249779,0,0);}
.m4ab_c00001{transform:matrix(0.056997,-0.002339,0.010252,0.249790,0,0);-ms-transform:matrix(0.056997,-0.002339,0.010252,0.249790,0,0);-webkit-transform:matrix(0.056997,-0.002339,0.010252,0.249790,0,0);}
.m28ca_c00001{transform:matrix(0.058425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058425,0.000000,0.000000,0.250000,0,0);}
.m200c_c00001{transform:matrix(0.058927,-0.001473,0.006248,0.249922,0,0);-ms-transform:matrix(0.058927,-0.001473,0.006248,0.249922,0,0);-webkit-transform:matrix(0.058927,-0.001473,0.006248,0.249922,0,0);}
.m20f3_c00001{transform:matrix(0.059261,0.001482,-0.006248,0.249922,0,0);-ms-transform:matrix(0.059261,0.001482,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.059261,0.001482,-0.006248,0.249922,0,0);}
.m24bf_c00001{transform:matrix(0.059505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059505,0.000000,0.000000,0.250000,0,0);}
.m2a04_c00001{transform:matrix(0.060949,-0.001952,0.008004,0.249872,0,0);-ms-transform:matrix(0.060949,-0.001952,0.008004,0.249872,0,0);-webkit-transform:matrix(0.060949,-0.001952,0.008004,0.249872,0,0);}
.m26e5_c00001{transform:matrix(0.062700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062700,0.000000,0.000000,0.250000,0,0);}
.m254f_c00001{transform:matrix(0.062933,-0.000944,0.003750,0.249972,0,0);-ms-transform:matrix(0.062933,-0.000944,0.003750,0.249972,0,0);-webkit-transform:matrix(0.062933,-0.000944,0.003750,0.249972,0,0);}
.m122d_c00001{transform:matrix(0.064362,-0.001738,0.006748,0.249909,0,0);-ms-transform:matrix(0.064362,-0.001738,0.006748,0.249909,0,0);-webkit-transform:matrix(0.064362,-0.001738,0.006748,0.249909,0,0);}
.m993_c00001{transform:matrix(0.065343,-0.002486,0.009503,0.249819,0,0);-ms-transform:matrix(0.065343,-0.002486,0.009503,0.249819,0,0);-webkit-transform:matrix(0.065343,-0.002486,0.009503,0.249819,0,0);}
.m25ac_c00001{transform:matrix(0.068450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068450,0.000000,0.000000,0.250000,0,0);}
.m138_c00001{transform:matrix(0.069965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069965,0.000000,0.000000,0.250000,0,0);}
.m224e_c00001{transform:matrix(0.071324,-0.001498,0.005249,0.249945,0,0);-ms-transform:matrix(0.071324,-0.001498,0.005249,0.249945,0,0);-webkit-transform:matrix(0.071324,-0.001498,0.005249,0.249945,0,0);}
.m4c0_c00001{transform:matrix(0.072530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072530,0.000000,0.000000,0.250000,0,0);}
.m274b_c00001{transform:matrix(0.073595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073595,0.000000,0.000000,0.250000,0,0);}
.m1214_c00001{transform:matrix(0.073878,-0.001995,0.006748,0.249909,0,0);-ms-transform:matrix(0.073878,-0.001995,0.006748,0.249909,0,0);-webkit-transform:matrix(0.073878,-0.001995,0.006748,0.249909,0,0);}
.m1cbe_c00001{transform:matrix(0.073925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073925,0.000000,0.000000,0.250000,0,0);}
.m1810_c00001{transform:matrix(0.076275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076275,0.000000,0.000000,0.250000,0,0);}
.m270d_c00001{transform:matrix(0.076560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076560,0.000000,0.000000,0.250000,0,0);}
.m279e_c00001{transform:matrix(0.077815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077815,0.000000,0.000000,0.250000,0,0);}
.m2706_c00001{transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079615,0.000000,0.000000,0.250000,0,0);}
.m177e_c00001{transform:matrix(0.080493,-0.002093,0.006498,0.249916,0,0);-ms-transform:matrix(0.080493,-0.002093,0.006498,0.249916,0,0);-webkit-transform:matrix(0.080493,-0.002093,0.006498,0.249916,0,0);}
.m29a_c00001{transform:matrix(0.080859,-0.000970,0.003000,0.249982,0,0);-ms-transform:matrix(0.080859,-0.000970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.080859,-0.000970,0.003000,0.249982,0,0);}
.m16e7_c00001{transform:matrix(0.081363,-0.002115,0.006498,0.249916,0,0);-ms-transform:matrix(0.081363,-0.002115,0.006498,0.249916,0,0);-webkit-transform:matrix(0.081363,-0.002115,0.006498,0.249916,0,0);}
.m5cc_c00001{transform:matrix(0.083705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083705,0.000000,0.000000,0.250000,0,0);}
.m21b6_c00001{transform:matrix(0.086752,-0.001995,0.005748,0.249934,0,0);-ms-transform:matrix(0.086752,-0.001995,0.005748,0.249934,0,0);-webkit-transform:matrix(0.086752,-0.001995,0.005748,0.249934,0,0);}
.m48b_c00001{transform:matrix(0.087247,-0.003581,0.010252,0.249790,0,0);-ms-transform:matrix(0.087247,-0.003581,0.010252,0.249790,0,0);-webkit-transform:matrix(0.087247,-0.003581,0.010252,0.249790,0,0);}
.m24cb_c00001{transform:matrix(0.089155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089155,0.000000,0.000000,0.250000,0,0);}
.m2270_c00001{transform:matrix(0.089915,-0.001618,0.004499,0.249960,0,0);-ms-transform:matrix(0.089915,-0.001618,0.004499,0.249960,0,0);-webkit-transform:matrix(0.089915,-0.001618,0.004499,0.249960,0,0);}
.mb78_c00001{transform:matrix(0.090187,-0.002615,0.007247,0.249895,0,0);-ms-transform:matrix(0.090187,-0.002615,0.007247,0.249895,0,0);-webkit-transform:matrix(0.090187,-0.002615,0.007247,0.249895,0,0);}
.m26a_c00001{transform:matrix(0.090210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090210,0.000000,0.000000,0.250000,0,0);}
.m76b_c00001{transform:matrix(0.092769,0.002598,-0.006997,0.249902,0,0);-ms-transform:matrix(0.092769,0.002598,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.092769,0.002598,-0.006997,0.249902,0,0);}
.m721_c00001{transform:matrix(0.093046,0.002326,-0.006248,0.249922,0,0);-ms-transform:matrix(0.093046,0.002326,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.093046,0.002326,-0.006248,0.249922,0,0);}
.m2e8_c00001{transform:matrix(0.093642,-0.001217,0.003250,0.249979,0,0);-ms-transform:matrix(0.093642,-0.001217,0.003250,0.249979,0,0);-webkit-transform:matrix(0.093642,-0.001217,0.003250,0.249979,0,0);}
.m1d5e_c00001{transform:matrix(0.094760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094760,0.000000,0.000000,0.250000,0,0);}
.m2608_c00001{transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);}
.m213_c00001{transform:matrix(0.096510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096510,0.000000,0.000000,0.250000,0,0);}
.m4ad_c00001{transform:matrix(0.098107,-0.004026,0.010252,0.249790,0,0);-ms-transform:matrix(0.098107,-0.004026,0.010252,0.249790,0,0);-webkit-transform:matrix(0.098107,-0.004026,0.010252,0.249790,0,0);}
.m922_c00001{transform:matrix(0.098274,-0.003738,0.009503,0.249819,0,0);-ms-transform:matrix(0.098274,-0.003738,0.009503,0.249819,0,0);-webkit-transform:matrix(0.098274,-0.003738,0.009503,0.249819,0,0);}
.m179d_c00001{transform:matrix(0.098754,-0.001778,0.004499,0.249960,0,0);-ms-transform:matrix(0.098754,-0.001778,0.004499,0.249960,0,0);-webkit-transform:matrix(0.098754,-0.001778,0.004499,0.249960,0,0);}
.m2eb_c00001{transform:matrix(0.098962,-0.001287,0.003250,0.249979,0,0);-ms-transform:matrix(0.098962,-0.001287,0.003250,0.249979,0,0);-webkit-transform:matrix(0.098962,-0.001287,0.003250,0.249979,0,0);}
.m496_c00001{transform:matrix(0.099017,-0.004064,0.010252,0.249790,0,0);-ms-transform:matrix(0.099017,-0.004064,0.010252,0.249790,0,0);-webkit-transform:matrix(0.099017,-0.004064,0.010252,0.249790,0,0);}
.m29bc_c00001{transform:matrix(0.099215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099215,0.000000,0.000000,0.250000,0,0);}
.m2481_c00001{transform:matrix(0.099830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099830,0.000000,0.000000,0.250000,0,0);}
.m1fb1_c00001{transform:matrix(0.100975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100975,0.000000,0.000000,0.250000,0,0);}
.m2637_c00001{transform:matrix(0.101035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101035,0.000000,0.000000,0.250000,0,0);}
.m200d_c00001{transform:matrix(0.101711,-0.003153,0.007746,0.249880,0,0);-ms-transform:matrix(0.101711,-0.003153,0.007746,0.249880,0,0);-webkit-transform:matrix(0.101711,-0.003153,0.007746,0.249880,0,0);}
.m28a0_c00001{transform:matrix(0.101985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101985,0.000000,0.000000,0.250000,0,0);}
.me92_c00001{transform:matrix(0.101985,0.001428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.101985,0.001428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.101985,0.001428,-0.003500,0.249976,0,0);}
.m16c2_c00001{transform:matrix(0.103370,-0.003518,0.008504,0.249855,0,0);-ms-transform:matrix(0.103370,-0.003518,0.008504,0.249855,0,0);-webkit-transform:matrix(0.103370,-0.003518,0.008504,0.249855,0,0);}
.m1351_c00001{transform:matrix(0.104016,0.003016,-0.007247,0.249895,0,0);-ms-transform:matrix(0.104016,0.003016,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.104016,0.003016,-0.007247,0.249895,0,0);}
.m1aac_c00001{transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);}
.m42c_c00001{transform:matrix(0.105011,-0.001995,0.004749,0.249955,0,0);-ms-transform:matrix(0.105011,-0.001995,0.004749,0.249955,0,0);-webkit-transform:matrix(0.105011,-0.001995,0.004749,0.249955,0,0);}
.m2be_c00001{transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);}
.m17aa_c00001{transform:matrix(0.106220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106220,0.000000,0.000000,0.250000,0,0);}
.m22af_c00001{transform:matrix(0.106736,0.001708,-0.003999,0.249968,0,0);-ms-transform:matrix(0.106736,0.001708,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.106736,0.001708,-0.003999,0.249968,0,0);}
.m2247_c00001{transform:matrix(0.106751,-0.002242,0.005249,0.249945,0,0);-ms-transform:matrix(0.106751,-0.002242,0.005249,0.249945,0,0);-webkit-transform:matrix(0.106751,-0.002242,0.005249,0.249945,0,0);}
.m9ca_c00001{transform:matrix(0.108039,0.001513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.108039,0.001513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.108039,0.001513,-0.003500,0.249976,0,0);}
.m1487_c00001{transform:matrix(0.108876,0.003596,-0.008254,0.249864,0,0);-ms-transform:matrix(0.108876,0.003596,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.108876,0.003596,-0.008254,0.249864,0,0);}
.m17fd_c00001{transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);}
.m9c7_c00001{transform:matrix(0.109359,0.001531,-0.003500,0.249976,0,0);-ms-transform:matrix(0.109359,0.001531,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.109359,0.001531,-0.003500,0.249976,0,0);}
.m108d_c00001{transform:matrix(0.109770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109770,0.000000,0.000000,0.250000,0,0);}
.m1d35_c00001{transform:matrix(0.110520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110520,0.000000,0.000000,0.250000,0,0);}
.m862_c00001{transform:matrix(0.110552,-0.003095,0.006997,0.249902,0,0);-ms-transform:matrix(0.110552,-0.003095,0.006997,0.249902,0,0);-webkit-transform:matrix(0.110552,-0.003095,0.006997,0.249902,0,0);}
.m2246_c00001{transform:matrix(0.112835,-0.002370,0.005249,0.249945,0,0);-ms-transform:matrix(0.112835,-0.002370,0.005249,0.249945,0,0);-webkit-transform:matrix(0.112835,-0.002370,0.005249,0.249945,0,0);}
.m4b2_c00001{transform:matrix(0.113112,-0.003623,0.008004,0.249872,0,0);-ms-transform:matrix(0.113112,-0.003623,0.008004,0.249872,0,0);-webkit-transform:matrix(0.113112,-0.003623,0.008004,0.249872,0,0);}
.m1869_c00001{transform:matrix(0.114060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114060,0.000000,0.000000,0.250000,0,0);}
.mc9e_c00001{transform:matrix(0.114242,-0.003313,0.007247,0.249895,0,0);-ms-transform:matrix(0.114242,-0.003313,0.007247,0.249895,0,0);-webkit-transform:matrix(0.114242,-0.003313,0.007247,0.249895,0,0);}
.m1650_c00001{transform:matrix(0.114330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114330,0.000000,0.000000,0.250000,0,0);}
.maca_c00001{transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115520,0.000000,0.000000,0.250000,0,0);}
.m1fb2_c00001{transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116165,0.000000,0.000000,0.250000,0,0);}
.mc18_c00001{transform:matrix(0.116405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116405,0.000000,0.000000,0.250000,0,0);}
.m13ac_c00001{transform:matrix(0.116701,-0.003034,0.006498,0.249916,0,0);-ms-transform:matrix(0.116701,-0.003034,0.006498,0.249916,0,0);-webkit-transform:matrix(0.116701,-0.003034,0.006498,0.249916,0,0);}
.m144e_c00001{transform:matrix(0.116727,-0.003152,0.006748,0.249909,0,0);-ms-transform:matrix(0.116727,-0.003152,0.006748,0.249909,0,0);-webkit-transform:matrix(0.116727,-0.003152,0.006748,0.249909,0,0);}
.m1483_c00001{transform:matrix(0.118126,0.003902,-0.008254,0.249864,0,0);-ms-transform:matrix(0.118126,0.003902,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.118126,0.003902,-0.008254,0.249864,0,0);}
.m272f_c00001{transform:matrix(0.118145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118145,0.000000,0.000000,0.250000,0,0);}
.m21a5_c00001{transform:matrix(0.118560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118560,0.000000,0.000000,0.250000,0,0);}
.md5d_c00001{transform:matrix(0.118910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118910,0.000000,0.000000,0.250000,0,0);}
.md47_c00001{transform:matrix(0.119010,-0.003451,0.007247,0.249895,0,0);-ms-transform:matrix(0.119010,-0.003451,0.007247,0.249895,0,0);-webkit-transform:matrix(0.119010,-0.003451,0.007247,0.249895,0,0);}
.m475_c00001{transform:matrix(0.119726,-0.004075,0.008504,0.249855,0,0);-ms-transform:matrix(0.119726,-0.004075,0.008504,0.249855,0,0);-webkit-transform:matrix(0.119726,-0.004075,0.008504,0.249855,0,0);}
.m8e4_c00001{transform:matrix(0.119728,-0.004554,0.009503,0.249819,0,0);-ms-transform:matrix(0.119728,-0.004554,0.009503,0.249819,0,0);-webkit-transform:matrix(0.119728,-0.004554,0.009503,0.249819,0,0);}
.m186e_c00001{transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);}
.m2df_c00001{transform:matrix(0.121130,-0.001575,0.003250,0.249979,0,0);-ms-transform:matrix(0.121130,-0.001575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.121130,-0.001575,0.003250,0.249979,0,0);}
.ma26_c00001{transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121615,0.000000,0.000000,0.250000,0,0);}
.m1353_c00001{transform:matrix(0.122214,0.003544,-0.007247,0.249895,0,0);-ms-transform:matrix(0.122214,0.003544,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.122214,0.003544,-0.007247,0.249895,0,0);}
.m5cb_c00001{transform:matrix(0.122510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122510,0.000000,0.000000,0.250000,0,0);}
.m1fc0_c00001{transform:matrix(0.122836,-0.005164,0.010501,0.249779,0,0);-ms-transform:matrix(0.122836,-0.005164,0.010501,0.249779,0,0);-webkit-transform:matrix(0.122836,-0.005164,0.010501,0.249779,0,0);}
.m427_c00001{transform:matrix(0.122868,-0.002580,0.005249,0.249945,0,0);-ms-transform:matrix(0.122868,-0.002580,0.005249,0.249945,0,0);-webkit-transform:matrix(0.122868,-0.002580,0.005249,0.249945,0,0);}
.m1c02_c00001{transform:matrix(0.122930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122930,0.000000,0.000000,0.250000,0,0);}
.m15d1_c00001{transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124495,0.000000,0.000000,0.250000,0,0);}
.m8aa_c00001{transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);}
.m29f7_c00001{transform:matrix(0.125805,-0.004030,0.008004,0.249872,0,0);-ms-transform:matrix(0.125805,-0.004030,0.008004,0.249872,0,0);-webkit-transform:matrix(0.125805,-0.004030,0.008004,0.249872,0,0);}
.m495_c00001{transform:matrix(0.126139,-0.005177,0.010252,0.249790,0,0);-ms-transform:matrix(0.126139,-0.005177,0.010252,0.249790,0,0);-webkit-transform:matrix(0.126139,-0.005177,0.010252,0.249790,0,0);}
.m2852_c00001{transform:matrix(0.126330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126330,0.000000,0.000000,0.250000,0,0);}
.m2492_c00001{transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);}
.m971_c00001{transform:matrix(0.126703,-0.004820,0.009503,0.249819,0,0);-ms-transform:matrix(0.126703,-0.004820,0.009503,0.249819,0,0);-webkit-transform:matrix(0.126703,-0.004820,0.009503,0.249819,0,0);}
.m4b0_c00001{transform:matrix(0.126970,-0.004067,0.008004,0.249872,0,0);-ms-transform:matrix(0.126970,-0.004067,0.008004,0.249872,0,0);-webkit-transform:matrix(0.126970,-0.004067,0.008004,0.249872,0,0);}
.m937_c00001{transform:matrix(0.127428,-0.004847,0.009503,0.249819,0,0);-ms-transform:matrix(0.127428,-0.004847,0.009503,0.249819,0,0);-webkit-transform:matrix(0.127428,-0.004847,0.009503,0.249819,0,0);}
.m8b4_c00001{transform:matrix(0.127520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127520,0.000000,0.000000,0.250000,0,0);}
.m5aa_c00001{transform:matrix(0.127767,0.001405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.127767,0.001405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.127767,0.001405,-0.002750,0.249985,0,0);}
.m1f5_c00001{transform:matrix(0.128140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128140,0.000000,0.000000,0.250000,0,0);}
.m1e17_c00001{transform:matrix(0.128198,-0.003077,0.005998,0.249928,0,0);-ms-transform:matrix(0.128198,-0.003077,0.005998,0.249928,0,0);-webkit-transform:matrix(0.128198,-0.003077,0.005998,0.249928,0,0);}
.m29e3_c00001{transform:matrix(0.128341,-0.002182,0.004249,0.249964,0,0);-ms-transform:matrix(0.128341,-0.002182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.128341,-0.002182,0.004249,0.249964,0,0);}
.m1d2_c00001{transform:matrix(0.128434,-0.002055,0.003999,0.249968,0,0);-ms-transform:matrix(0.128434,-0.002055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.128434,-0.002055,0.003999,0.249968,0,0);}
.m5a4_c00001{transform:matrix(0.128697,0.001416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.128697,0.001416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.128697,0.001416,-0.002750,0.249985,0,0);}
.m759_c00001{transform:matrix(0.128730,0.003604,-0.006997,0.249902,0,0);-ms-transform:matrix(0.128730,0.003604,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.128730,0.003604,-0.006997,0.249902,0,0);}
.m1f5c_c00001{transform:matrix(0.128770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128770,0.000000,0.000000,0.250000,0,0);}
.m20fb_c00001{transform:matrix(0.128889,0.003609,-0.006997,0.249902,0,0);-ms-transform:matrix(0.128889,0.003609,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.128889,0.003609,-0.006997,0.249902,0,0);}
.m260d_c00001{transform:matrix(0.129185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129185,0.000000,0.000000,0.250000,0,0);}
.m4fa_c00001{transform:matrix(0.129267,0.001422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.129267,0.001422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.129267,0.001422,-0.002750,0.249985,0,0);}
.m29ff_c00001{transform:matrix(0.129474,-0.004147,0.008004,0.249872,0,0);-ms-transform:matrix(0.129474,-0.004147,0.008004,0.249872,0,0);-webkit-transform:matrix(0.129474,-0.004147,0.008004,0.249872,0,0);}
.m1f40_c00001{transform:matrix(0.129640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129640,0.000000,0.000000,0.250000,0,0);}
.m2782_c00001{transform:matrix(0.129980,-0.001950,0.003750,0.249972,0,0);-ms-transform:matrix(0.129980,-0.001950,0.003750,0.249972,0,0);-webkit-transform:matrix(0.129980,-0.001950,0.003750,0.249972,0,0);}
.m440_c00001{transform:matrix(0.130142,-0.002473,0.004749,0.249955,0,0);-ms-transform:matrix(0.130142,-0.002473,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130142,-0.002473,0.004749,0.249955,0,0);}
.m435_c00001{transform:matrix(0.130147,-0.002473,0.004749,0.249955,0,0);-ms-transform:matrix(0.130147,-0.002473,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130147,-0.002473,0.004749,0.249955,0,0);}
.m27ec_c00001{transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130165,0.000000,0.000000,0.250000,0,0);}
.mb2b_c00001{transform:matrix(0.130166,-0.005082,0.009752,0.249810,0,0);-ms-transform:matrix(0.130166,-0.005082,0.009752,0.249810,0,0);-webkit-transform:matrix(0.130166,-0.005082,0.009752,0.249810,0,0);}
.m43c_c00001{transform:matrix(0.130197,-0.002474,0.004749,0.249955,0,0);-ms-transform:matrix(0.130197,-0.002474,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130197,-0.002474,0.004749,0.249955,0,0);}
.m48d_c00001{transform:matrix(0.130270,-0.005346,0.010252,0.249790,0,0);-ms-transform:matrix(0.130270,-0.005346,0.010252,0.249790,0,0);-webkit-transform:matrix(0.130270,-0.005346,0.010252,0.249790,0,0);}
.m433_c00001{transform:matrix(0.130651,-0.002482,0.004749,0.249955,0,0);-ms-transform:matrix(0.130651,-0.002482,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130651,-0.002482,0.004749,0.249955,0,0);}
.m1ed_c00001{transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);}
.m1cc5_c00001{transform:matrix(0.131520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131520,0.000000,0.000000,0.250000,0,0);}
.m2384_c00001{transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131880,0.000000,0.000000,0.250000,0,0);}
.m28c9_c00001{transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131940,0.000000,0.000000,0.250000,0,0);}
.m439_c00001{transform:matrix(0.132211,-0.002512,0.004749,0.249955,0,0);-ms-transform:matrix(0.132211,-0.002512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.132211,-0.002512,0.004749,0.249955,0,0);}
.m192b_c00001{transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);}
.mc65_c00001{transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);}
.mad9_c00001{transform:matrix(0.132904,-0.005188,0.009752,0.249810,0,0);-ms-transform:matrix(0.132904,-0.005188,0.009752,0.249810,0,0);-webkit-transform:matrix(0.132904,-0.005188,0.009752,0.249810,0,0);}
.m409_c00001{transform:matrix(0.132941,-0.002792,0.005249,0.249945,0,0);-ms-transform:matrix(0.132941,-0.002792,0.005249,0.249945,0,0);-webkit-transform:matrix(0.132941,-0.002792,0.005249,0.249945,0,0);}
.m1acf_c00001{transform:matrix(0.132945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132945,0.000000,0.000000,0.250000,0,0);}
.m1942_c00001{transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);}
.m7e5_c00001{transform:matrix(0.133173,-0.003729,0.006997,0.249902,0,0);-ms-transform:matrix(0.133173,-0.003729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.133173,-0.003729,0.006997,0.249902,0,0);}
.m23d_c00001{transform:matrix(0.133735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133735,0.000000,0.000000,0.250000,0,0);}
.m2380_c00001{transform:matrix(0.133890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133890,0.000000,0.000000,0.250000,0,0);}
.m22f3_c00001{transform:matrix(0.133903,0.002410,-0.004499,0.249960,0,0);-ms-transform:matrix(0.133903,0.002410,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.133903,0.002410,-0.004499,0.249960,0,0);}
.mda4_c00001{transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);}
.m1e10_c00001{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m151b_c00001{transform:matrix(0.134212,0.004433,-0.008254,0.249864,0,0);-ms-transform:matrix(0.134212,0.004433,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.134212,0.004433,-0.008254,0.249864,0,0);}
.m43b_c00001{transform:matrix(0.134306,-0.002552,0.004749,0.249955,0,0);-ms-transform:matrix(0.134306,-0.002552,0.004749,0.249955,0,0);-webkit-transform:matrix(0.134306,-0.002552,0.004749,0.249955,0,0);}
.m1f1e_c00001{transform:matrix(0.134390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134390,0.000000,0.000000,0.250000,0,0);}
.m1f6d_c00001{transform:matrix(0.134545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134545,0.000000,0.000000,0.250000,0,0);}
.m451_c00001{transform:matrix(0.134681,-0.002559,0.004749,0.249955,0,0);-ms-transform:matrix(0.134681,-0.002559,0.004749,0.249955,0,0);-webkit-transform:matrix(0.134681,-0.002559,0.004749,0.249955,0,0);}
.m3e9_c00001{transform:matrix(0.134862,-0.003776,0.006997,0.249902,0,0);-ms-transform:matrix(0.134862,-0.003776,0.006997,0.249902,0,0);-webkit-transform:matrix(0.134862,-0.003776,0.006997,0.249902,0,0);}
.m2940_c00001{transform:matrix(0.134905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134905,0.000000,0.000000,0.250000,0,0);}
.m3e7_c00001{transform:matrix(0.134967,-0.003779,0.006997,0.249902,0,0);-ms-transform:matrix(0.134967,-0.003779,0.006997,0.249902,0,0);-webkit-transform:matrix(0.134967,-0.003779,0.006997,0.249902,0,0);}
.mbdb_c00001{transform:matrix(0.135097,0.001486,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135097,0.001486,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135097,0.001486,-0.002750,0.249985,0,0);}
.m487_c00001{transform:matrix(0.135129,-0.004054,0.007497,0.249888,0,0);-ms-transform:matrix(0.135129,-0.004054,0.007497,0.249888,0,0);-webkit-transform:matrix(0.135129,-0.004054,0.007497,0.249888,0,0);}
.m26b_c00001{transform:matrix(0.135430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135430,0.000000,0.000000,0.250000,0,0);}
.mbde_c00001{transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);}
.m1527_c00001{transform:matrix(0.135531,0.004477,-0.008254,0.249864,0,0);-ms-transform:matrix(0.135531,0.004477,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.135531,0.004477,-0.008254,0.249864,0,0);}
.mac3_c00001{transform:matrix(0.136051,-0.005311,0.009752,0.249810,0,0);-ms-transform:matrix(0.136051,-0.005311,0.009752,0.249810,0,0);-webkit-transform:matrix(0.136051,-0.005311,0.009752,0.249810,0,0);}
.m44f_c00001{transform:matrix(0.136165,-0.002587,0.004749,0.249955,0,0);-ms-transform:matrix(0.136165,-0.002587,0.004749,0.249955,0,0);-webkit-transform:matrix(0.136165,-0.002587,0.004749,0.249955,0,0);}
.m35_c00001{transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);}
.m2d1_c00001{transform:matrix(0.136252,-0.001499,0.002750,0.249985,0,0);-ms-transform:matrix(0.136252,-0.001499,0.002750,0.249985,0,0);-webkit-transform:matrix(0.136252,-0.001499,0.002750,0.249985,0,0);}
.m248f_c00001{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m7e8_c00001{transform:matrix(0.136327,-0.003817,0.006997,0.249902,0,0);-ms-transform:matrix(0.136327,-0.003817,0.006997,0.249902,0,0);-webkit-transform:matrix(0.136327,-0.003817,0.006997,0.249902,0,0);}
.m226b_c00001{transform:matrix(0.136423,-0.002456,0.004499,0.249960,0,0);-ms-transform:matrix(0.136423,-0.002456,0.004499,0.249960,0,0);-webkit-transform:matrix(0.136423,-0.002456,0.004499,0.249960,0,0);}
.m1379_c00001{transform:matrix(0.136619,-0.003552,0.006498,0.249916,0,0);-ms-transform:matrix(0.136619,-0.003552,0.006498,0.249916,0,0);-webkit-transform:matrix(0.136619,-0.003552,0.006498,0.249916,0,0);}
.m443_c00001{transform:matrix(0.136620,-0.002596,0.004749,0.249955,0,0);-ms-transform:matrix(0.136620,-0.002596,0.004749,0.249955,0,0);-webkit-transform:matrix(0.136620,-0.002596,0.004749,0.249955,0,0);}
.m13cd_c00001{transform:matrix(0.136664,-0.003553,0.006498,0.249916,0,0);-ms-transform:matrix(0.136664,-0.003553,0.006498,0.249916,0,0);-webkit-transform:matrix(0.136664,-0.003553,0.006498,0.249916,0,0);}
.m10c1_c00001{transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136670,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.136780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136780,0.000000,0.000000,0.250000,0,0);}
.m5b6_c00001{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m2a0c_c00001{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.ma34_c00001{transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);}
.m1858_c00001{transform:matrix(0.137305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137305,0.000000,0.000000,0.250000,0,0);}
.m8e5_c00001{transform:matrix(0.137356,-0.005225,0.009503,0.249819,0,0);-ms-transform:matrix(0.137356,-0.005225,0.009503,0.249819,0,0);-webkit-transform:matrix(0.137356,-0.005225,0.009503,0.249819,0,0);}
.m2028_c00001{transform:matrix(0.137379,-0.004259,0.007746,0.249880,0,0);-ms-transform:matrix(0.137379,-0.004259,0.007746,0.249880,0,0);-webkit-transform:matrix(0.137379,-0.004259,0.007746,0.249880,0,0);}
.m127c_c00001{transform:matrix(0.137410,-0.003710,0.006748,0.249909,0,0);-ms-transform:matrix(0.137410,-0.003710,0.006748,0.249909,0,0);-webkit-transform:matrix(0.137410,-0.003710,0.006748,0.249909,0,0);}
.m111_c00001{transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137445,0.000000,0.000000,0.250000,0,0);}
.m3e3_c00001{transform:matrix(0.137516,-0.003850,0.006997,0.249902,0,0);-ms-transform:matrix(0.137516,-0.003850,0.006997,0.249902,0,0);-webkit-transform:matrix(0.137516,-0.003850,0.006997,0.249902,0,0);}
.m1f04_c00001{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m476_c00001{transform:matrix(0.137750,-0.004688,0.008504,0.249855,0,0);-ms-transform:matrix(0.137750,-0.004688,0.008504,0.249855,0,0);-webkit-transform:matrix(0.137750,-0.004688,0.008504,0.249855,0,0);}
.m98d_c00001{transform:matrix(0.137920,-0.005246,0.009503,0.249819,0,0);-ms-transform:matrix(0.137920,-0.005246,0.009503,0.249819,0,0);-webkit-transform:matrix(0.137920,-0.005246,0.009503,0.249819,0,0);}
.m2292_c00001{transform:matrix(0.138030,-0.002623,0.004749,0.249955,0,0);-ms-transform:matrix(0.138030,-0.002623,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138030,-0.002623,0.004749,0.249955,0,0);}
.m8ad_c00001{transform:matrix(0.138085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138085,0.000000,0.000000,0.250000,0,0);}
.m9fd_c00001{transform:matrix(0.138210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138210,0.000000,0.000000,0.250000,0,0);}
.mf49_c00001{transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138405,0.000000,0.000000,0.250000,0,0);}
.m2926_c00001{transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);}
.mee_c00001{transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138655,0.000000,0.000000,0.250000,0,0);}
.m2658_c00001{transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138685,0.000000,0.000000,0.250000,0,0);}
.m483_c00001{transform:matrix(0.138688,-0.004161,0.007497,0.249888,0,0);-ms-transform:matrix(0.138688,-0.004161,0.007497,0.249888,0,0);-webkit-transform:matrix(0.138688,-0.004161,0.007497,0.249888,0,0);}
.m1028_c00001{transform:matrix(0.138715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138715,0.000000,0.000000,0.250000,0,0);}
.m474_c00001{transform:matrix(0.138785,-0.004723,0.008504,0.249855,0,0);-ms-transform:matrix(0.138785,-0.004723,0.008504,0.249855,0,0);-webkit-transform:matrix(0.138785,-0.004723,0.008504,0.249855,0,0);}
.m511_c00001{transform:matrix(0.139027,0.001529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139027,0.001529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139027,0.001529,-0.002750,0.249985,0,0);}
.m3e4_c00001{transform:matrix(0.139280,-0.003900,0.006997,0.249902,0,0);-ms-transform:matrix(0.139280,-0.003900,0.006997,0.249902,0,0);-webkit-transform:matrix(0.139280,-0.003900,0.006997,0.249902,0,0);}
.m989_c00001{transform:matrix(0.139404,-0.005303,0.009503,0.249819,0,0);-ms-transform:matrix(0.139404,-0.005303,0.009503,0.249819,0,0);-webkit-transform:matrix(0.139404,-0.005303,0.009503,0.249819,0,0);}
.m499_c00001{transform:matrix(0.139453,-0.005723,0.010252,0.249790,0,0);-ms-transform:matrix(0.139453,-0.005723,0.010252,0.249790,0,0);-webkit-transform:matrix(0.139453,-0.005723,0.010252,0.249790,0,0);}
.m1d89_c00001{transform:matrix(0.139565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139565,0.000000,0.000000,0.250000,0,0);}
.m1237_c00001{transform:matrix(0.139574,-0.003769,0.006748,0.249909,0,0);-ms-transform:matrix(0.139574,-0.003769,0.006748,0.249909,0,0);-webkit-transform:matrix(0.139574,-0.003769,0.006748,0.249909,0,0);}
.md6c_c00001{transform:matrix(0.140045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140045,0.000000,0.000000,0.250000,0,0);}
.m1ed6_c00001{transform:matrix(0.140273,-0.003647,0.006498,0.249916,0,0);-ms-transform:matrix(0.140273,-0.003647,0.006498,0.249916,0,0);-webkit-transform:matrix(0.140273,-0.003647,0.006498,0.249916,0,0);}
.m19cf_c00001{transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140390,0.000000,0.000000,0.250000,0,0);}
.m1fdf_c00001{transform:matrix(0.140401,-0.003510,0.006248,0.249922,0,0);-ms-transform:matrix(0.140401,-0.003510,0.006248,0.249922,0,0);-webkit-transform:matrix(0.140401,-0.003510,0.006248,0.249922,0,0);}
.m7e2_c00001{transform:matrix(0.140420,-0.003932,0.006997,0.249902,0,0);-ms-transform:matrix(0.140420,-0.003932,0.006997,0.249902,0,0);-webkit-transform:matrix(0.140420,-0.003932,0.006997,0.249902,0,0);}
.m6c9_c00001{transform:matrix(0.140431,0.003511,-0.006248,0.249922,0,0);-ms-transform:matrix(0.140431,0.003511,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.140431,0.003511,-0.006248,0.249922,0,0);}
.m2ae_c00001{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m428_c00001{transform:matrix(0.140489,-0.002950,0.005249,0.249945,0,0);-ms-transform:matrix(0.140489,-0.002950,0.005249,0.249945,0,0);-webkit-transform:matrix(0.140489,-0.002950,0.005249,0.249945,0,0);}
.m89b_c00001{transform:matrix(0.140540,-0.002670,0.004749,0.249955,0,0);-ms-transform:matrix(0.140540,-0.002670,0.004749,0.249955,0,0);-webkit-transform:matrix(0.140540,-0.002670,0.004749,0.249955,0,0);}
.m3e8_c00001{transform:matrix(0.140740,-0.003941,0.006997,0.249902,0,0);-ms-transform:matrix(0.140740,-0.003941,0.006997,0.249902,0,0);-webkit-transform:matrix(0.140740,-0.003941,0.006997,0.249902,0,0);}
.m29d4_c00001{transform:matrix(0.140795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140795,0.000000,0.000000,0.250000,0,0);}
.m665_c00001{transform:matrix(0.140831,-0.005780,0.010252,0.249790,0,0);-ms-transform:matrix(0.140831,-0.005780,0.010252,0.249790,0,0);-webkit-transform:matrix(0.140831,-0.005780,0.010252,0.249790,0,0);}
.m497_c00001{transform:matrix(0.140841,-0.005780,0.010252,0.249790,0,0);-ms-transform:matrix(0.140841,-0.005780,0.010252,0.249790,0,0);-webkit-transform:matrix(0.140841,-0.005780,0.010252,0.249790,0,0);}
.m29e7_c00001{transform:matrix(0.140940,-0.002396,0.004249,0.249964,0,0);-ms-transform:matrix(0.140940,-0.002396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140940,-0.002396,0.004249,0.249964,0,0);}
.mf12_c00001{transform:matrix(0.141187,0.002824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.141187,0.002824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.141187,0.002824,-0.004999,0.249950,0,0);}
.m97a_c00001{transform:matrix(0.141198,-0.005371,0.009503,0.249819,0,0);-ms-transform:matrix(0.141198,-0.005371,0.009503,0.249819,0,0);-webkit-transform:matrix(0.141198,-0.005371,0.009503,0.249819,0,0);}
.mac8_c00001{transform:matrix(0.141207,-0.005513,0.009752,0.249810,0,0);-ms-transform:matrix(0.141207,-0.005513,0.009752,0.249810,0,0);-webkit-transform:matrix(0.141207,-0.005513,0.009752,0.249810,0,0);}
.m1f6c_c00001{transform:matrix(0.141215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141215,0.000000,0.000000,0.250000,0,0);}
.mc7b_c00001{transform:matrix(0.141256,-0.004096,0.007247,0.249895,0,0);-ms-transform:matrix(0.141256,-0.004096,0.007247,0.249895,0,0);-webkit-transform:matrix(0.141256,-0.004096,0.007247,0.249895,0,0);}
.m25_c00001{transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141280,0.000000,0.000000,0.250000,0,0);}
.m969_c00001{transform:matrix(0.141358,-0.005377,0.009503,0.249819,0,0);-ms-transform:matrix(0.141358,-0.005377,0.009503,0.249819,0,0);-webkit-transform:matrix(0.141358,-0.005377,0.009503,0.249819,0,0);}
.m1fff_c00001{transform:matrix(0.141381,-0.003535,0.006248,0.249922,0,0);-ms-transform:matrix(0.141381,-0.003535,0.006248,0.249922,0,0);-webkit-transform:matrix(0.141381,-0.003535,0.006248,0.249922,0,0);}
.m489_c00001{transform:matrix(0.141531,-0.004246,0.007497,0.249888,0,0);-ms-transform:matrix(0.141531,-0.004246,0.007497,0.249888,0,0);-webkit-transform:matrix(0.141531,-0.004246,0.007497,0.249888,0,0);}
.m29e1_c00001{transform:matrix(0.141830,-0.002411,0.004249,0.249964,0,0);-ms-transform:matrix(0.141830,-0.002411,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141830,-0.002411,0.004249,0.249964,0,0);}
.m23a8_c00001{transform:matrix(0.141866,-0.003121,0.005499,0.249940,0,0);-ms-transform:matrix(0.141866,-0.003121,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141866,-0.003121,0.005499,0.249940,0,0);}
.m1281_c00001{transform:matrix(0.141893,-0.003831,0.006748,0.249909,0,0);-ms-transform:matrix(0.141893,-0.003831,0.006748,0.249909,0,0);-webkit-transform:matrix(0.141893,-0.003831,0.006748,0.249909,0,0);}
.m2888_c00001{transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141995,0.000000,0.000000,0.250000,0,0);}
.m9c8_c00001{transform:matrix(0.142006,0.001988,-0.003500,0.249976,0,0);-ms-transform:matrix(0.142006,0.001988,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.142006,0.001988,-0.003500,0.249976,0,0);}
.md40_c00001{transform:matrix(0.142015,-0.004118,0.007247,0.249895,0,0);-ms-transform:matrix(0.142015,-0.004118,0.007247,0.249895,0,0);-webkit-transform:matrix(0.142015,-0.004118,0.007247,0.249895,0,0);}
.m243c_c00001{transform:matrix(0.142146,-0.003127,0.005499,0.249940,0,0);-ms-transform:matrix(0.142146,-0.003127,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142146,-0.003127,0.005499,0.249940,0,0);}
.m77b_c00001{transform:matrix(0.142147,0.003269,-0.005748,0.249934,0,0);-ms-transform:matrix(0.142147,0.003269,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.142147,0.003269,-0.005748,0.249934,0,0);}
.m28bb_c00001{transform:matrix(0.142195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142195,0.000000,0.000000,0.250000,0,0);}
.m162f_c00001{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m1f14_c00001{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mb4d_c00001{transform:matrix(0.142561,-0.005565,0.009752,0.249810,0,0);-ms-transform:matrix(0.142561,-0.005565,0.009752,0.249810,0,0);-webkit-transform:matrix(0.142561,-0.005565,0.009752,0.249810,0,0);}
.m1f5d_c00001{transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142635,0.000000,0.000000,0.250000,0,0);}
.m5a6_c00001{transform:matrix(0.142641,0.001569,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142641,0.001569,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142641,0.001569,-0.002750,0.249985,0,0);}
.m17b5_c00001{transform:matrix(0.142710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142710,0.000000,0.000000,0.250000,0,0);}
.md76_c00001{transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);}
.m50c_c00001{transform:matrix(0.142791,0.001571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142791,0.001571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142791,0.001571,-0.002750,0.249985,0,0);}
.m453_c00001{transform:matrix(0.142904,-0.002715,0.004749,0.249955,0,0);-ms-transform:matrix(0.142904,-0.002715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.142904,-0.002715,0.004749,0.249955,0,0);}
.m1614_c00001{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m1e11_c00001{transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142985,0.000000,0.000000,0.250000,0,0);}
.m40c_c00001{transform:matrix(0.143003,-0.003003,0.005249,0.249945,0,0);-ms-transform:matrix(0.143003,-0.003003,0.005249,0.249945,0,0);-webkit-transform:matrix(0.143003,-0.003003,0.005249,0.249945,0,0);}
.m12cb_c00001{transform:matrix(0.143005,0.003575,-0.006248,0.249922,0,0);-ms-transform:matrix(0.143005,0.003575,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.143005,0.003575,-0.006248,0.249922,0,0);}
.m10b9_c00001{transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);}
.m10a5_c00001{transform:matrix(0.143265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143265,0.000000,0.000000,0.250000,0,0);}
.m10b5_c00001{transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143320,0.000000,0.000000,0.250000,0,0);}
.m1e13_c00001{transform:matrix(0.143329,-0.003440,0.005998,0.249928,0,0);-ms-transform:matrix(0.143329,-0.003440,0.005998,0.249928,0,0);-webkit-transform:matrix(0.143329,-0.003440,0.005998,0.249928,0,0);}
.mb63_c00001{transform:matrix(0.143381,-0.005597,0.009752,0.249810,0,0);-ms-transform:matrix(0.143381,-0.005597,0.009752,0.249810,0,0);-webkit-transform:matrix(0.143381,-0.005597,0.009752,0.249810,0,0);}
.m264_c00001{transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143405,0.000000,0.000000,0.250000,0,0);}
.m288c_c00001{transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143415,0.000000,0.000000,0.250000,0,0);}
.m44e_c00001{transform:matrix(0.143429,-0.002725,0.004749,0.249955,0,0);-ms-transform:matrix(0.143429,-0.002725,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143429,-0.002725,0.004749,0.249955,0,0);}
.m1f79_c00001{transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);}
.mad3_c00001{transform:matrix(0.143516,-0.005603,0.009752,0.249810,0,0);-ms-transform:matrix(0.143516,-0.005603,0.009752,0.249810,0,0);-webkit-transform:matrix(0.143516,-0.005603,0.009752,0.249810,0,0);}
.m24a_c00001{transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);}
.mc6f_c00001{transform:matrix(0.143795,-0.004170,0.007247,0.249895,0,0);-ms-transform:matrix(0.143795,-0.004170,0.007247,0.249895,0,0);-webkit-transform:matrix(0.143795,-0.004170,0.007247,0.249895,0,0);}
.m434_c00001{transform:matrix(0.143894,-0.002734,0.004749,0.249955,0,0);-ms-transform:matrix(0.143894,-0.002734,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143894,-0.002734,0.004749,0.249955,0,0);}
.m587_c00001{transform:matrix(0.143951,0.001583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143951,0.001583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143951,0.001583,-0.002750,0.249985,0,0);}
.m6b2_c00001{transform:matrix(0.143977,0.003311,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143977,0.003311,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143977,0.003311,-0.005748,0.249934,0,0);}
.m91f_c00001{transform:matrix(0.143991,-0.005477,0.009503,0.249819,0,0);-ms-transform:matrix(0.143991,-0.005477,0.009503,0.249819,0,0);-webkit-transform:matrix(0.143991,-0.005477,0.009503,0.249819,0,0);}
.m193d_c00001{transform:matrix(0.144110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144110,0.000000,0.000000,0.250000,0,0);}
.m21b_c00001{transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144170,0.000000,0.000000,0.250000,0,0);}
.m58f_c00001{transform:matrix(0.144181,0.001586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144181,0.001586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144181,0.001586,-0.002750,0.249985,0,0);}
.m1f9b_c00001{transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144205,0.000000,0.000000,0.250000,0,0);}
.md6a_c00001{transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144220,0.000000,0.000000,0.250000,0,0);}
.m534_c00001{transform:matrix(0.144231,0.001587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144231,0.001587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144231,0.001587,-0.002750,0.249985,0,0);}
.m7e_c00001{transform:matrix(0.144370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144370,0.000000,0.000000,0.250000,0,0);}
.m5e8_c00001{transform:matrix(0.144382,-0.006070,0.010501,0.249779,0,0);-ms-transform:matrix(0.144382,-0.006070,0.010501,0.249779,0,0);-webkit-transform:matrix(0.144382,-0.006070,0.010501,0.249779,0,0);}
.m1b84_c00001{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.ma35_c00001{transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);}
.m37c_c00001{transform:matrix(0.144753,-0.001882,0.003250,0.249979,0,0);-ms-transform:matrix(0.144753,-0.001882,0.003250,0.249979,0,0);-webkit-transform:matrix(0.144753,-0.001882,0.003250,0.249979,0,0);}
.m2d2_c00001{transform:matrix(0.144776,-0.001593,0.002750,0.249985,0,0);-ms-transform:matrix(0.144776,-0.001593,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144776,-0.001593,0.002750,0.249985,0,0);}
.m935_c00001{transform:matrix(0.144800,-0.005508,0.009503,0.249819,0,0);-ms-transform:matrix(0.144800,-0.005508,0.009503,0.249819,0,0);-webkit-transform:matrix(0.144800,-0.005508,0.009503,0.249819,0,0);}
.m14cf_c00001{transform:matrix(0.144966,0.004789,-0.008254,0.249864,0,0);-ms-transform:matrix(0.144966,0.004789,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.144966,0.004789,-0.008254,0.249864,0,0);}
.m1477_c00001{transform:matrix(0.145056,0.004792,-0.008254,0.249864,0,0);-ms-transform:matrix(0.145056,0.004792,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.145056,0.004792,-0.008254,0.249864,0,0);}
.m2485_c00001{transform:matrix(0.145105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145105,0.000000,0.000000,0.250000,0,0);}
.m902_c00001{transform:matrix(0.145115,-0.005520,0.009503,0.249819,0,0);-ms-transform:matrix(0.145115,-0.005520,0.009503,0.249819,0,0);-webkit-transform:matrix(0.145115,-0.005520,0.009503,0.249819,0,0);}
.m157_c00001{transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145165,0.000000,0.000000,0.250000,0,0);}
.m1d9b_c00001{transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);}
.m8b2_c00001{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m613_c00001{transform:matrix(0.145454,-0.006406,0.011000,0.249758,0,0);-ms-transform:matrix(0.145454,-0.006406,0.011000,0.249758,0,0);-webkit-transform:matrix(0.145454,-0.006406,0.011000,0.249758,0,0);}
.m2d6_c00001{transform:matrix(0.145536,-0.001601,0.002750,0.249985,0,0);-ms-transform:matrix(0.145536,-0.001601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145536,-0.001601,0.002750,0.249985,0,0);}
.m215e_c00001{transform:matrix(0.145598,0.004077,-0.006997,0.249902,0,0);-ms-transform:matrix(0.145598,0.004077,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.145598,0.004077,-0.006997,0.249902,0,0);}
.m212d_c00001{transform:matrix(0.145608,0.004077,-0.006997,0.249902,0,0);-ms-transform:matrix(0.145608,0.004077,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.145608,0.004077,-0.006997,0.249902,0,0);}
.m1bb_c00001{transform:matrix(0.145631,-0.002330,0.003999,0.249968,0,0);-ms-transform:matrix(0.145631,-0.002330,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145631,-0.002330,0.003999,0.249968,0,0);}
.mb0a_c00001{transform:matrix(0.145644,-0.005686,0.009752,0.249810,0,0);-ms-transform:matrix(0.145644,-0.005686,0.009752,0.249810,0,0);-webkit-transform:matrix(0.145644,-0.005686,0.009752,0.249810,0,0);}
.m3b7_c00001{transform:matrix(0.145653,-0.001893,0.003250,0.249979,0,0);-ms-transform:matrix(0.145653,-0.001893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145653,-0.001893,0.003250,0.249979,0,0);}
.m7bd_c00001{transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);-ms-transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);-webkit-transform:matrix(0.145663,-0.004079,0.006997,0.249902,0,0);}
.m9f3_c00001{transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145670,0.000000,0.000000,0.250000,0,0);}
.me1b_c00001{transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145720,0.000000,0.000000,0.250000,0,0);}
.m79d_c00001{transform:matrix(0.145771,0.003353,-0.005748,0.249934,0,0);-ms-transform:matrix(0.145771,0.003353,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.145771,0.003353,-0.005748,0.249934,0,0);}
.m17a4_c00001{transform:matrix(0.145801,-0.002624,0.004499,0.249960,0,0);-ms-transform:matrix(0.145801,-0.002624,0.004499,0.249960,0,0);-webkit-transform:matrix(0.145801,-0.002624,0.004499,0.249960,0,0);}
.m1b3c_c00001{transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);}
.m1fa4_c00001{transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145890,0.000000,0.000000,0.250000,0,0);}
.m22dd_c00001{transform:matrix(0.145981,0.002336,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145981,0.002336,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145981,0.002336,-0.003999,0.249968,0,0);}
.m1613_c00001{transform:matrix(0.146035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146035,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00001{transform:matrix(0.146128,-0.001900,0.003250,0.249979,0,0);-ms-transform:matrix(0.146128,-0.001900,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146128,-0.001900,0.003250,0.249979,0,0);}
.m365_c00001{transform:matrix(0.146238,-0.001901,0.003250,0.249979,0,0);-ms-transform:matrix(0.146238,-0.001901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146238,-0.001901,0.003250,0.249979,0,0);}
.ma42_c00001{transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146330,0.000000,0.000000,0.250000,0,0);}
.m1bb7_c00001{transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146355,0.000000,0.000000,0.250000,0,0);}
.mfbf_c00001{transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146540,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146565,0.000000,0.000000,0.250000,0,0);}
.m2885_c00001{transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146660,0.000000,0.000000,0.250000,0,0);}
.m19ab_c00001{transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146665,0.000000,0.000000,0.250000,0,0);}
.m2d0_c00001{transform:matrix(0.146666,-0.001613,0.002750,0.249985,0,0);-ms-transform:matrix(0.146666,-0.001613,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146666,-0.001613,0.002750,0.249985,0,0);}
.mf3_c00001{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m1b80_c00001{transform:matrix(0.146790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146790,0.000000,0.000000,0.250000,0,0);}
.m981_c00001{transform:matrix(0.146799,-0.005584,0.009503,0.249819,0,0);-ms-transform:matrix(0.146799,-0.005584,0.009503,0.249819,0,0);-webkit-transform:matrix(0.146799,-0.005584,0.009503,0.249819,0,0);}
.m2b3_c00001{transform:matrix(0.146865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146865,0.000000,0.000000,0.250000,0,0);}
.m102c_c00001{transform:matrix(0.146870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146870,0.000000,0.000000,0.250000,0,0);}
.m6ae_c00001{transform:matrix(0.146901,0.003379,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146901,0.003379,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146901,0.003379,-0.005748,0.249934,0,0);}
.m282f_c00001{transform:matrix(0.147088,-0.001912,0.003250,0.249979,0,0);-ms-transform:matrix(0.147088,-0.001912,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147088,-0.001912,0.003250,0.249979,0,0);}
.m1904_c00001{transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147245,0.000000,0.000000,0.250000,0,0);}
.m28b_c00001{transform:matrix(0.147395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147395,0.000000,0.000000,0.250000,0,0);}
.mbe6_c00001{transform:matrix(0.147396,0.001621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147396,0.001621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147396,0.001621,-0.002750,0.249985,0,0);}
.m246b_c00001{transform:matrix(0.147440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147440,0.000000,0.000000,0.250000,0,0);}
.m322_c00001{transform:matrix(0.147448,-0.001917,0.003250,0.249979,0,0);-ms-transform:matrix(0.147448,-0.001917,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147448,-0.001917,0.003250,0.249979,0,0);}
.m14de_c00001{transform:matrix(0.147460,0.004871,-0.008254,0.249864,0,0);-ms-transform:matrix(0.147460,0.004871,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.147460,0.004871,-0.008254,0.249864,0,0);}
.m7f_c00001{transform:matrix(0.147465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147465,0.000000,0.000000,0.250000,0,0);}
.meb7_c00001{transform:matrix(0.147501,0.002065,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147501,0.002065,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147501,0.002065,-0.003500,0.249976,0,0);}
.mf69_c00001{transform:matrix(0.147515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147515,0.000000,0.000000,0.250000,0,0);}
.m1f8b_c00001{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m1d9e_c00001{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m12ec_c00001{transform:matrix(0.147596,0.003985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.147596,0.003985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.147596,0.003985,-0.006748,0.249909,0,0);}
.m4aa_c00001{transform:matrix(0.147606,-0.006058,0.010252,0.249790,0,0);-ms-transform:matrix(0.147606,-0.006058,0.010252,0.249790,0,0);-webkit-transform:matrix(0.147606,-0.006058,0.010252,0.249790,0,0);}
.m1bf3_c00001{transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);}
.m465_c00001{transform:matrix(0.147979,-0.005036,0.008504,0.249855,0,0);-ms-transform:matrix(0.147979,-0.005036,0.008504,0.249855,0,0);-webkit-transform:matrix(0.147979,-0.005036,0.008504,0.249855,0,0);}
.m27e9_c00001{transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);}
.m2103_c00001{transform:matrix(0.148112,0.004147,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148112,0.004147,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148112,0.004147,-0.006997,0.249902,0,0);}
.m289_c00001{transform:matrix(0.148241,-0.001631,0.002750,0.249985,0,0);-ms-transform:matrix(0.148241,-0.001631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148241,-0.001631,0.002750,0.249985,0,0);}
.m164_c00001{transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148360,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);}
.m67e_c00001{transform:matrix(0.148465,-0.006093,0.010252,0.249790,0,0);-ms-transform:matrix(0.148465,-0.006093,0.010252,0.249790,0,0);-webkit-transform:matrix(0.148465,-0.006093,0.010252,0.249790,0,0);}
.m1f12_c00001{transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);}
.m19f1_c00001{transform:matrix(0.148540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148540,0.000000,0.000000,0.250000,0,0);}
.m4b1_c00001{transform:matrix(0.148574,-0.004759,0.008004,0.249872,0,0);-ms-transform:matrix(0.148574,-0.004759,0.008004,0.249872,0,0);-webkit-transform:matrix(0.148574,-0.004759,0.008004,0.249872,0,0);}
.m2414_c00001{transform:matrix(0.148644,-0.003270,0.005499,0.249940,0,0);-ms-transform:matrix(0.148644,-0.003270,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148644,-0.003270,0.005499,0.249940,0,0);}
.mab0_c00001{transform:matrix(0.148675,-0.003866,0.006498,0.249916,0,0);-ms-transform:matrix(0.148675,-0.003866,0.006498,0.249916,0,0);-webkit-transform:matrix(0.148675,-0.003866,0.006498,0.249916,0,0);}
.m442_c00001{transform:matrix(0.148678,-0.002825,0.004749,0.249955,0,0);-ms-transform:matrix(0.148678,-0.002825,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148678,-0.002825,0.004749,0.249955,0,0);}
.m10be_c00001{transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148690,0.000000,0.000000,0.250000,0,0);}
.m13b3_c00001{transform:matrix(0.148725,-0.003867,0.006498,0.249916,0,0);-ms-transform:matrix(0.148725,-0.003867,0.006498,0.249916,0,0);-webkit-transform:matrix(0.148725,-0.003867,0.006498,0.249916,0,0);}
.m14f7_c00001{transform:matrix(0.148759,0.004914,-0.008254,0.249864,0,0);-ms-transform:matrix(0.148759,0.004914,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.148759,0.004914,-0.008254,0.249864,0,0);}
.m817_c00001{transform:matrix(0.148762,-0.004165,0.006997,0.249902,0,0);-ms-transform:matrix(0.148762,-0.004165,0.006997,0.249902,0,0);-webkit-transform:matrix(0.148762,-0.004165,0.006997,0.249902,0,0);}
.mfd0_c00001{transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148765,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);}
.mbc4_c00001{transform:matrix(0.148816,0.001637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148816,0.001637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148816,0.001637,-0.002750,0.249985,0,0);}
.m2471_c00001{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m585_c00001{transform:matrix(0.148916,0.001638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148916,0.001638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148916,0.001638,-0.002750,0.249985,0,0);}
.m432_c00001{transform:matrix(0.148948,-0.002830,0.004749,0.249955,0,0);-ms-transform:matrix(0.148948,-0.002830,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148948,-0.002830,0.004749,0.249955,0,0);}
.m37d_c00001{transform:matrix(0.148967,-0.001937,0.003250,0.249979,0,0);-ms-transform:matrix(0.148967,-0.001937,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148967,-0.001937,0.003250,0.249979,0,0);}
.m903_c00001{transform:matrix(0.148972,-0.005667,0.009503,0.249819,0,0);-ms-transform:matrix(0.148972,-0.005667,0.009503,0.249819,0,0);-webkit-transform:matrix(0.148972,-0.005667,0.009503,0.249819,0,0);}
.m228d_c00001{transform:matrix(0.148979,-0.003278,0.005499,0.249940,0,0);-ms-transform:matrix(0.148979,-0.003278,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148979,-0.003278,0.005499,0.249940,0,0);}
.m206b_c00001{transform:matrix(0.149023,-0.004620,0.007746,0.249880,0,0);-ms-transform:matrix(0.149023,-0.004620,0.007746,0.249880,0,0);-webkit-transform:matrix(0.149023,-0.004620,0.007746,0.249880,0,0);}
.mdbf_c00001{transform:matrix(0.149140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149140,0.000000,0.000000,0.250000,0,0);}
.mb04_c00001{transform:matrix(0.149246,-0.005826,0.009752,0.249810,0,0);-ms-transform:matrix(0.149246,-0.005826,0.009752,0.249810,0,0);-webkit-transform:matrix(0.149246,-0.005826,0.009752,0.249810,0,0);}
.m89e_c00001{transform:matrix(0.149258,-0.002836,0.004749,0.249955,0,0);-ms-transform:matrix(0.149258,-0.002836,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149258,-0.002836,0.004749,0.249955,0,0);}
.m1739_c00001{transform:matrix(0.149350,-0.003883,0.006498,0.249916,0,0);-ms-transform:matrix(0.149350,-0.003883,0.006498,0.249916,0,0);-webkit-transform:matrix(0.149350,-0.003883,0.006498,0.249916,0,0);}
.m2f9_c00001{transform:matrix(0.149372,-0.001942,0.003250,0.249979,0,0);-ms-transform:matrix(0.149372,-0.001942,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149372,-0.001942,0.003250,0.249979,0,0);}
.me0b_c00001{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m1556_c00001{transform:matrix(0.149510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149510,0.000000,0.000000,0.250000,0,0);}
.m52e_c00001{transform:matrix(0.149521,0.001645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149521,0.001645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149521,0.001645,-0.002750,0.249985,0,0);}
.m9e2_c00001{transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);}
.m3ce_c00001{transform:matrix(0.149608,-0.004488,0.007497,0.249888,0,0);-ms-transform:matrix(0.149608,-0.004488,0.007497,0.249888,0,0);-webkit-transform:matrix(0.149608,-0.004488,0.007497,0.249888,0,0);}
.mec1_c00001{transform:matrix(0.149625,0.002095,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149625,0.002095,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149625,0.002095,-0.003500,0.249976,0,0);}
.m1d4e_c00001{transform:matrix(0.149655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149655,0.000000,0.000000,0.250000,0,0);}
.m560_c00001{transform:matrix(0.149661,0.001646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149661,0.001646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149661,0.001646,-0.002750,0.249985,0,0);}
.m2486_c00001{transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149685,0.000000,0.000000,0.250000,0,0);}
.m1121_c00001{transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149690,0.000000,0.000000,0.250000,0,0);}
.m840_c00001{transform:matrix(0.149691,-0.004191,0.006997,0.249902,0,0);-ms-transform:matrix(0.149691,-0.004191,0.006997,0.249902,0,0);-webkit-transform:matrix(0.149691,-0.004191,0.006997,0.249902,0,0);}
.m1c16_c00001{transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149695,0.000000,0.000000,0.250000,0,0);}
.m20a7_c00001{transform:matrix(0.149698,-0.004641,0.007746,0.249880,0,0);-ms-transform:matrix(0.149698,-0.004641,0.007746,0.249880,0,0);-webkit-transform:matrix(0.149698,-0.004641,0.007746,0.249880,0,0);}
.m193f_c00001{transform:matrix(0.149730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149730,0.000000,0.000000,0.250000,0,0);}
.m20cc_c00001{transform:matrix(0.149748,0.003744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149748,0.003744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149748,0.003744,-0.006248,0.249922,0,0);}
.m52b_c00001{transform:matrix(0.149756,0.001647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149756,0.001647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149756,0.001647,-0.002750,0.249985,0,0);}
.m15f0_c00001{transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149805,0.000000,0.000000,0.250000,0,0);}
.ma1e_c00001{transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149930,0.000000,0.000000,0.250000,0,0);}
.md67_c00001{transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149940,0.000000,0.000000,0.250000,0,0);}
.m2315_c00001{transform:matrix(0.150006,0.002700,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150006,0.002700,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150006,0.002700,-0.004499,0.249960,0,0);}
.m4d4_c00001{transform:matrix(0.150061,0.001651,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150061,0.001651,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150061,0.001651,-0.002750,0.249985,0,0);}
.m2697_c00001{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m819_c00001{transform:matrix(0.150076,-0.004202,0.006997,0.249902,0,0);-ms-transform:matrix(0.150076,-0.004202,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150076,-0.004202,0.006997,0.249902,0,0);}
.m1e1e_c00001{transform:matrix(0.150084,-0.003902,0.006498,0.249916,0,0);-ms-transform:matrix(0.150084,-0.003902,0.006498,0.249916,0,0);-webkit-transform:matrix(0.150084,-0.003902,0.006498,0.249916,0,0);}
.m12b_c00001{transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150110,0.000000,0.000000,0.250000,0,0);}
.m1982_c00001{transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150170,0.000000,0.000000,0.250000,0,0);}
.m1334_c00001{transform:matrix(0.150252,0.004357,-0.007247,0.249895,0,0);-ms-transform:matrix(0.150252,0.004357,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.150252,0.004357,-0.007247,0.249895,0,0);}
.m48c_c00001{transform:matrix(0.150288,-0.006168,0.010252,0.249790,0,0);-ms-transform:matrix(0.150288,-0.006168,0.010252,0.249790,0,0);-webkit-transform:matrix(0.150288,-0.006168,0.010252,0.249790,0,0);}
.ma24_c00001{transform:matrix(0.150295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150295,0.000000,0.000000,0.250000,0,0);}
.m1141_c00001{transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150355,0.000000,0.000000,0.250000,0,0);}
.md42_c00001{transform:matrix(0.150357,-0.004360,0.007247,0.249895,0,0);-ms-transform:matrix(0.150357,-0.004360,0.007247,0.249895,0,0);-webkit-transform:matrix(0.150357,-0.004360,0.007247,0.249895,0,0);}
.ma33_c00001{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m2561_c00001{transform:matrix(0.150420,-0.002106,0.003500,0.249976,0,0);-ms-transform:matrix(0.150420,-0.002106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150420,-0.002106,0.003500,0.249976,0,0);}
.m9c1_c00001{transform:matrix(0.150486,-0.005724,0.009503,0.249819,0,0);-ms-transform:matrix(0.150486,-0.005724,0.009503,0.249819,0,0);-webkit-transform:matrix(0.150486,-0.005724,0.009503,0.249819,0,0);}
.m7c1_c00001{transform:matrix(0.150501,-0.004214,0.006997,0.249902,0,0);-ms-transform:matrix(0.150501,-0.004214,0.006997,0.249902,0,0);-webkit-transform:matrix(0.150501,-0.004214,0.006997,0.249902,0,0);}
.md80_c00001{transform:matrix(0.150512,0.001957,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150512,0.001957,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150512,0.001957,-0.003250,0.249979,0,0);}
.m53f_c00001{transform:matrix(0.150526,0.001656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150526,0.001656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150526,0.001656,-0.002750,0.249985,0,0);}
.m65c_c00001{transform:matrix(0.150548,-0.006179,0.010252,0.249790,0,0);-ms-transform:matrix(0.150548,-0.006179,0.010252,0.249790,0,0);-webkit-transform:matrix(0.150548,-0.006179,0.010252,0.249790,0,0);}
.m1c3e_c00001{transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150610,0.000000,0.000000,0.250000,0,0);}
.m4e5_c00001{transform:matrix(0.150616,0.001657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150616,0.001657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150616,0.001657,-0.002750,0.249985,0,0);}
.m15b1_c00001{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150635,0.000000,0.000000,0.250000,0,0);}
.m12b3_c00001{transform:matrix(0.150653,0.003766,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150653,0.003766,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150653,0.003766,-0.006248,0.249922,0,0);}
.m1115_c00001{transform:matrix(0.150665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150665,0.000000,0.000000,0.250000,0,0);}
.m22fa_c00001{transform:matrix(0.150676,0.002712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150676,0.002712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150676,0.002712,-0.004499,0.249960,0,0);}
.m16e3_c00001{transform:matrix(0.150688,-0.005129,0.008504,0.249855,0,0);-ms-transform:matrix(0.150688,-0.005129,0.008504,0.249855,0,0);-webkit-transform:matrix(0.150688,-0.005129,0.008504,0.249855,0,0);}
.m23c6_c00001{transform:matrix(0.150689,-0.003315,0.005499,0.249940,0,0);-ms-transform:matrix(0.150689,-0.003315,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150689,-0.003315,0.005499,0.249940,0,0);}
.m718_c00001{transform:matrix(0.150728,0.003768,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150728,0.003768,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150728,0.003768,-0.006248,0.249922,0,0);}
.m925_c00001{transform:matrix(0.150736,-0.005734,0.009503,0.249819,0,0);-ms-transform:matrix(0.150736,-0.005734,0.009503,0.249819,0,0);-webkit-transform:matrix(0.150736,-0.005734,0.009503,0.249819,0,0);}
.m2613_c00001{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.me3a_c00001{transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150790,0.000000,0.000000,0.250000,0,0);}
.m193e_c00001{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m1fd6_c00001{transform:matrix(0.150808,-0.003770,0.006248,0.249922,0,0);-ms-transform:matrix(0.150808,-0.003770,0.006248,0.249922,0,0);-webkit-transform:matrix(0.150808,-0.003770,0.006248,0.249922,0,0);}
.m589_c00001{transform:matrix(0.150836,0.001659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150836,0.001659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150836,0.001659,-0.002750,0.249985,0,0);}
.m1d60_c00001{transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150860,0.000000,0.000000,0.250000,0,0);}
.m23dc_c00001{transform:matrix(0.150903,-0.003320,0.005499,0.249940,0,0);-ms-transform:matrix(0.150903,-0.003320,0.005499,0.249940,0,0);-webkit-transform:matrix(0.150903,-0.003320,0.005499,0.249940,0,0);}
.m1c25_c00001{transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150905,0.000000,0.000000,0.250000,0,0);}
.m977_c00001{transform:matrix(0.150911,-0.005740,0.009503,0.249819,0,0);-ms-transform:matrix(0.150911,-0.005740,0.009503,0.249819,0,0);-webkit-transform:matrix(0.150911,-0.005740,0.009503,0.249819,0,0);}
.m65e_c00001{transform:matrix(0.150918,-0.006194,0.010252,0.249790,0,0);-ms-transform:matrix(0.150918,-0.006194,0.010252,0.249790,0,0);-webkit-transform:matrix(0.150918,-0.006194,0.010252,0.249790,0,0);}
.m1cb7_c00001{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m1a2b_c00001{transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151005,0.000000,0.000000,0.250000,0,0);}
.m59f_c00001{transform:matrix(0.151026,0.001661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151026,0.001661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151026,0.001661,-0.002750,0.249985,0,0);}
.mc69_c00001{transform:matrix(0.151042,-0.004380,0.007247,0.249895,0,0);-ms-transform:matrix(0.151042,-0.004380,0.007247,0.249895,0,0);-webkit-transform:matrix(0.151042,-0.004380,0.007247,0.249895,0,0);}
.m477_c00001{transform:matrix(0.151063,-0.005141,0.008504,0.249855,0,0);-ms-transform:matrix(0.151063,-0.005141,0.008504,0.249855,0,0);-webkit-transform:matrix(0.151063,-0.005141,0.008504,0.249855,0,0);}
.m20cd_c00001{transform:matrix(0.151073,0.003777,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151073,0.003777,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151073,0.003777,-0.006248,0.249922,0,0);}
.m150e_c00001{transform:matrix(0.151083,0.004991,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151083,0.004991,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151083,0.004991,-0.008254,0.249864,0,0);}
.m1f5a_c00001{transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151120,0.000000,0.000000,0.250000,0,0);}
.m1b95_c00001{transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151135,0.000000,0.000000,0.250000,0,0);}
.m9bd_c00001{transform:matrix(0.151141,-0.005749,0.009503,0.249819,0,0);-ms-transform:matrix(0.151141,-0.005749,0.009503,0.249819,0,0);-webkit-transform:matrix(0.151141,-0.005749,0.009503,0.249819,0,0);}
.ma23_c00001{transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);}
.m13ff_c00001{transform:matrix(0.151214,-0.003932,0.006498,0.249916,0,0);-ms-transform:matrix(0.151214,-0.003932,0.006498,0.249916,0,0);-webkit-transform:matrix(0.151214,-0.003932,0.006498,0.249916,0,0);}
.m5fb_c00001{transform:matrix(0.151296,-0.006361,0.010501,0.249779,0,0);-ms-transform:matrix(0.151296,-0.006361,0.010501,0.249779,0,0);-webkit-transform:matrix(0.151296,-0.006361,0.010501,0.249779,0,0);}
.m2577_c00001{transform:matrix(0.151327,-0.001967,0.003250,0.249979,0,0);-ms-transform:matrix(0.151327,-0.001967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151327,-0.001967,0.003250,0.249979,0,0);}
.m1b4_c00001{transform:matrix(0.151332,-0.001967,0.003250,0.249979,0,0);-ms-transform:matrix(0.151332,-0.001967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151332,-0.001967,0.003250,0.249979,0,0);}
.md7d_c00001{transform:matrix(0.151382,0.001968,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151382,0.001968,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151382,0.001968,-0.003250,0.249979,0,0);}
.m1b3_c00001{transform:matrix(0.151392,-0.001968,0.003250,0.249979,0,0);-ms-transform:matrix(0.151392,-0.001968,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151392,-0.001968,0.003250,0.249979,0,0);}
.m250b_c00001{transform:matrix(0.151405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151405,0.000000,0.000000,0.250000,0,0);}
.m18b2_c00001{transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);}
.m321_c00001{transform:matrix(0.151442,-0.001969,0.003250,0.249979,0,0);-ms-transform:matrix(0.151442,-0.001969,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151442,-0.001969,0.003250,0.249979,0,0);}
.m975_c00001{transform:matrix(0.151500,-0.005763,0.009503,0.249819,0,0);-ms-transform:matrix(0.151500,-0.005763,0.009503,0.249819,0,0);-webkit-transform:matrix(0.151500,-0.005763,0.009503,0.249819,0,0);}
.m2230_c00001{transform:matrix(0.151502,-0.003182,0.005249,0.249945,0,0);-ms-transform:matrix(0.151502,-0.003182,0.005249,0.249945,0,0);-webkit-transform:matrix(0.151502,-0.003182,0.005249,0.249945,0,0);}
.m19a8_c00001{transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.151565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151565,0.000000,0.000000,0.250000,0,0);}
.m1f4f_c00001{transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151570,0.000000,0.000000,0.250000,0,0);}
.mba2_c00001{transform:matrix(0.151629,0.001820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151629,0.001820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151629,0.001820,-0.003000,0.249982,0,0);}
.m331_c00001{transform:matrix(0.151652,-0.001971,0.003250,0.249979,0,0);-ms-transform:matrix(0.151652,-0.001971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151652,-0.001971,0.003250,0.249979,0,0);}
.m106e_c00001{transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151785,0.000000,0.000000,0.250000,0,0);}
.m253f_c00001{transform:matrix(0.151798,-0.002277,0.003750,0.249972,0,0);-ms-transform:matrix(0.151798,-0.002277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151798,-0.002277,0.003750,0.249972,0,0);}
.mf2e_c00001{transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151885,0.000000,0.000000,0.250000,0,0);}
.m7ca_c00001{transform:matrix(0.151925,-0.004254,0.006997,0.249902,0,0);-ms-transform:matrix(0.151925,-0.004254,0.006997,0.249902,0,0);-webkit-transform:matrix(0.151925,-0.004254,0.006997,0.249902,0,0);}
.m494_c00001{transform:matrix(0.151937,-0.006236,0.010252,0.249790,0,0);-ms-transform:matrix(0.151937,-0.006236,0.010252,0.249790,0,0);-webkit-transform:matrix(0.151937,-0.006236,0.010252,0.249790,0,0);}
.m18f8_c00001{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m387_c00001{transform:matrix(0.151972,-0.001976,0.003250,0.249979,0,0);-ms-transform:matrix(0.151972,-0.001976,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151972,-0.001976,0.003250,0.249979,0,0);}
.m1efa_c00001{transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);}
.md6f_c00001{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m1802_c00001{transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152205,0.000000,0.000000,0.250000,0,0);}
.md62_c00001{transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152210,0.000000,0.000000,0.250000,0,0);}
.m216d_c00001{transform:matrix(0.152215,0.004262,-0.006997,0.249902,0,0);-ms-transform:matrix(0.152215,0.004262,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.152215,0.004262,-0.006997,0.249902,0,0);}
.m1998_c00001{transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152235,0.000000,0.000000,0.250000,0,0);}
.m12bb_c00001{transform:matrix(0.152237,0.003806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152237,0.003806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152237,0.003806,-0.006248,0.249922,0,0);}
.m99c_c00001{transform:matrix(0.152250,-0.005791,0.009503,0.249819,0,0);-ms-transform:matrix(0.152250,-0.005791,0.009503,0.249819,0,0);-webkit-transform:matrix(0.152250,-0.005791,0.009503,0.249819,0,0);}
.mb59_c00001{transform:matrix(0.152254,-0.005944,0.009752,0.249810,0,0);-ms-transform:matrix(0.152254,-0.005944,0.009752,0.249810,0,0);-webkit-transform:matrix(0.152254,-0.005944,0.009752,0.249810,0,0);}
.mcd7_c00001{transform:matrix(0.152296,-0.004417,0.007247,0.249895,0,0);-ms-transform:matrix(0.152296,-0.004417,0.007247,0.249895,0,0);-webkit-transform:matrix(0.152296,-0.004417,0.007247,0.249895,0,0);}
.m153b_c00001{transform:matrix(0.152302,0.005031,-0.008254,0.249864,0,0);-ms-transform:matrix(0.152302,0.005031,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.152302,0.005031,-0.008254,0.249864,0,0);}
.m12d9_c00001{transform:matrix(0.152304,0.004112,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152304,0.004112,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152304,0.004112,-0.006748,0.249909,0,0);}
.m61_c00001{transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152305,0.000000,0.000000,0.250000,0,0);}
.m1cae_c00001{transform:matrix(0.152330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152330,0.000000,0.000000,0.250000,0,0);}
.mcef_c00001{transform:matrix(0.152381,-0.004419,0.007247,0.249895,0,0);-ms-transform:matrix(0.152381,-0.004419,0.007247,0.249895,0,0);-webkit-transform:matrix(0.152381,-0.004419,0.007247,0.249895,0,0);}
.mc39_c00001{transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152385,0.000000,0.000000,0.250000,0,0);}
.m1651_c00001{transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152445,0.000000,0.000000,0.250000,0,0);}
.m1827_c00001{transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152480,0.000000,0.000000,0.250000,0,0);}
.m276c_c00001{transform:matrix(0.152498,-0.002287,0.003750,0.249972,0,0);-ms-transform:matrix(0.152498,-0.002287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152498,-0.002287,0.003750,0.249972,0,0);}
.m1fd7_c00001{transform:matrix(0.152512,-0.003813,0.006248,0.249922,0,0);-ms-transform:matrix(0.152512,-0.003813,0.006248,0.249922,0,0);-webkit-transform:matrix(0.152512,-0.003813,0.006248,0.249922,0,0);}
.m59b_c00001{transform:matrix(0.152536,0.001678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152536,0.001678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152536,0.001678,-0.002750,0.249985,0,0);}
.m30f_c00001{transform:matrix(0.152622,-0.001984,0.003250,0.249979,0,0);-ms-transform:matrix(0.152622,-0.001984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152622,-0.001984,0.003250,0.249979,0,0);}
.m641_c00001{transform:matrix(0.152662,-0.005196,0.008504,0.249855,0,0);-ms-transform:matrix(0.152662,-0.005196,0.008504,0.249855,0,0);-webkit-transform:matrix(0.152662,-0.005196,0.008504,0.249855,0,0);}
.mebb_c00001{transform:matrix(0.152685,0.002138,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152685,0.002138,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152685,0.002138,-0.003500,0.249976,0,0);}
.m1c2d_c00001{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m16ab_c00001{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.maa7_c00001{transform:matrix(0.152711,-0.005503,0.009003,0.249838,0,0);-ms-transform:matrix(0.152711,-0.005503,0.009003,0.249838,0,0);-webkit-transform:matrix(0.152711,-0.005503,0.009003,0.249838,0,0);}
.m1ddb_c00001{transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152730,0.000000,0.000000,0.250000,0,0);}
.m56a_c00001{transform:matrix(0.152791,0.001681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152791,0.001681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152791,0.001681,-0.002750,0.249985,0,0);}
.m287c_c00001{transform:matrix(0.152860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152860,0.000000,0.000000,0.250000,0,0);}
.maed_c00001{transform:matrix(0.152869,-0.005968,0.009752,0.249810,0,0);-ms-transform:matrix(0.152869,-0.005968,0.009752,0.249810,0,0);-webkit-transform:matrix(0.152869,-0.005968,0.009752,0.249810,0,0);}
.m332_c00001{transform:matrix(0.152877,-0.001987,0.003250,0.249979,0,0);-ms-transform:matrix(0.152877,-0.001987,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152877,-0.001987,0.003250,0.249979,0,0);}
.m2f_c00001{transform:matrix(0.152890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152890,0.000000,0.000000,0.250000,0,0);}
.m38a_c00001{transform:matrix(0.152907,-0.001988,0.003250,0.249979,0,0);-ms-transform:matrix(0.152907,-0.001988,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152907,-0.001988,0.003250,0.249979,0,0);}
.m3b1_c00001{transform:matrix(0.152952,-0.001988,0.003250,0.249979,0,0);-ms-transform:matrix(0.152952,-0.001988,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152952,-0.001988,0.003250,0.249979,0,0);}
.m1560_c00001{transform:matrix(0.152985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152985,0.000000,0.000000,0.250000,0,0);}
.m22d0_c00001{transform:matrix(0.152995,0.002448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152995,0.002448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152995,0.002448,-0.003999,0.249968,0,0);}
.m134d_c00001{transform:matrix(0.152996,0.004437,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152996,0.004437,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152996,0.004437,-0.007247,0.249895,0,0);}
.m2ff_c00001{transform:matrix(0.152997,-0.001989,0.003250,0.249979,0,0);-ms-transform:matrix(0.152997,-0.001989,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152997,-0.001989,0.003250,0.249979,0,0);}
.ma27_c00001{transform:matrix(0.153065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153065,0.000000,0.000000,0.250000,0,0);}
.m1c49_c00001{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m40d_c00001{transform:matrix(0.153086,-0.003215,0.005249,0.249945,0,0);-ms-transform:matrix(0.153086,-0.003215,0.005249,0.249945,0,0);-webkit-transform:matrix(0.153086,-0.003215,0.005249,0.249945,0,0);}
.m16d_c00001{transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153115,0.000000,0.000000,0.250000,0,0);}
.m1489_c00001{transform:matrix(0.153246,0.005062,-0.008254,0.249864,0,0);-ms-transform:matrix(0.153246,0.005062,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.153246,0.005062,-0.008254,0.249864,0,0);}
.m1108_c00001{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.m1ffc_c00001{transform:matrix(0.153367,-0.003834,0.006248,0.249922,0,0);-ms-transform:matrix(0.153367,-0.003834,0.006248,0.249922,0,0);-webkit-transform:matrix(0.153367,-0.003834,0.006248,0.249922,0,0);}
.m6af_c00001{transform:matrix(0.153369,0.003527,-0.005748,0.249934,0,0);-ms-transform:matrix(0.153369,0.003527,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.153369,0.003527,-0.005748,0.249934,0,0);}
.m40_c00001{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m2258_c00001{transform:matrix(0.153423,-0.002608,0.004249,0.249964,0,0);-ms-transform:matrix(0.153423,-0.002608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153423,-0.002608,0.004249,0.249964,0,0);}
.m703_c00001{transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);}
.m13c9_c00001{transform:matrix(0.153433,-0.003989,0.006498,0.249916,0,0);-ms-transform:matrix(0.153433,-0.003989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.153433,-0.003989,0.006498,0.249916,0,0);}
.m113e_c00001{transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153445,0.000000,0.000000,0.250000,0,0);}
.m2229_c00001{transform:matrix(0.153458,-0.003376,0.005499,0.249940,0,0);-ms-transform:matrix(0.153458,-0.003376,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153458,-0.003376,0.005499,0.249940,0,0);}
.m1045_c00001{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m26d5_c00001{transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153540,0.000000,0.000000,0.250000,0,0);}
.m1438_c00001{transform:matrix(0.153594,-0.004147,0.006748,0.249909,0,0);-ms-transform:matrix(0.153594,-0.004147,0.006748,0.249909,0,0);-webkit-transform:matrix(0.153594,-0.004147,0.006748,0.249909,0,0);}
.m179a_c00001{transform:matrix(0.153600,-0.002765,0.004499,0.249960,0,0);-ms-transform:matrix(0.153600,-0.002765,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153600,-0.002765,0.004499,0.249960,0,0);}
.m19b_c00001{transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153655,0.000000,0.000000,0.250000,0,0);}
.m1537_c00001{transform:matrix(0.153666,0.005076,-0.008254,0.249864,0,0);-ms-transform:matrix(0.153666,0.005076,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.153666,0.005076,-0.008254,0.249864,0,0);}
.m9b0_c00001{transform:matrix(0.153694,-0.005846,0.009503,0.249819,0,0);-ms-transform:matrix(0.153694,-0.005846,0.009503,0.249819,0,0);-webkit-transform:matrix(0.153694,-0.005846,0.009503,0.249819,0,0);}
.m2459_c00001{transform:matrix(0.153708,-0.003382,0.005499,0.249940,0,0);-ms-transform:matrix(0.153708,-0.003382,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153708,-0.003382,0.005499,0.249940,0,0);}
.m1337_c00001{transform:matrix(0.153710,0.004458,-0.007247,0.249895,0,0);-ms-transform:matrix(0.153710,0.004458,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.153710,0.004458,-0.007247,0.249895,0,0);}
.m1a0d_c00001{transform:matrix(0.153745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153745,0.000000,0.000000,0.250000,0,0);}
.m3c0_c00001{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);}
.m3ef_c00001{transform:matrix(0.153830,-0.004307,0.006997,0.249902,0,0);-ms-transform:matrix(0.153830,-0.004307,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153830,-0.004307,0.006997,0.249902,0,0);}
.m1a58_c00001{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.md25_c00001{transform:matrix(0.153945,-0.004464,0.007247,0.249895,0,0);-ms-transform:matrix(0.153945,-0.004464,0.007247,0.249895,0,0);-webkit-transform:matrix(0.153945,-0.004464,0.007247,0.249895,0,0);}
.m369_c00001{transform:matrix(0.153952,-0.002001,0.003250,0.249979,0,0);-ms-transform:matrix(0.153952,-0.002001,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153952,-0.002001,0.003250,0.249979,0,0);}
.m6cf_c00001{transform:matrix(0.153977,0.003849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153977,0.003849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153977,0.003849,-0.006248,0.249922,0,0);}
.m1838_c00001{transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153980,0.000000,0.000000,0.250000,0,0);}
.m64c_c00001{transform:matrix(0.153995,-0.006320,0.010252,0.249790,0,0);-ms-transform:matrix(0.153995,-0.006320,0.010252,0.249790,0,0);-webkit-transform:matrix(0.153995,-0.006320,0.010252,0.249790,0,0);}
.m144c_c00001{transform:matrix(0.154029,-0.004159,0.006748,0.249909,0,0);-ms-transform:matrix(0.154029,-0.004159,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154029,-0.004159,0.006748,0.249909,0,0);}
.m232_c00001{transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154035,0.000000,0.000000,0.250000,0,0);}
.mf2c_c00001{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);}
.mfa1_c00001{transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154170,0.000000,0.000000,0.250000,0,0);}
.mdf9_c00001{transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154205,0.000000,0.000000,0.250000,0,0);}
.m9f5_c00001{transform:matrix(0.154210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154210,0.000000,0.000000,0.250000,0,0);}
.m590_c00001{transform:matrix(0.154221,0.001696,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154221,0.001696,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154221,0.001696,-0.002750,0.249985,0,0);}
.m7cf_c00001{transform:matrix(0.154245,-0.004319,0.006997,0.249902,0,0);-ms-transform:matrix(0.154245,-0.004319,0.006997,0.249902,0,0);-webkit-transform:matrix(0.154245,-0.004319,0.006997,0.249902,0,0);}
.mf48_c00001{transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);}
.m26bd_c00001{transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154290,0.000000,0.000000,0.250000,0,0);}
.m12d6_c00001{transform:matrix(0.154324,0.004167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154324,0.004167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154324,0.004167,-0.006748,0.249909,0,0);}
.m15b6_c00001{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m799_c00001{transform:matrix(0.154354,0.003550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154354,0.003550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154354,0.003550,-0.005748,0.249934,0,0);}
.m1f47_c00001{transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);}
.mbe7_c00001{transform:matrix(0.154376,0.001698,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154376,0.001698,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154376,0.001698,-0.002750,0.249985,0,0);}
.m1cd0_c00001{transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154395,0.000000,0.000000,0.250000,0,0);}
.m47a_c00001{transform:matrix(0.154421,-0.005256,0.008504,0.249855,0,0);-ms-transform:matrix(0.154421,-0.005256,0.008504,0.249855,0,0);-webkit-transform:matrix(0.154421,-0.005256,0.008504,0.249855,0,0);}
.m95_c00001{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m9b1_c00001{transform:matrix(0.154483,-0.005876,0.009503,0.249819,0,0);-ms-transform:matrix(0.154483,-0.005876,0.009503,0.249819,0,0);-webkit-transform:matrix(0.154483,-0.005876,0.009503,0.249819,0,0);}
.m991_c00001{transform:matrix(0.154488,-0.005876,0.009503,0.249819,0,0);-ms-transform:matrix(0.154488,-0.005876,0.009503,0.249819,0,0);-webkit-transform:matrix(0.154488,-0.005876,0.009503,0.249819,0,0);}
.m19a_c00001{transform:matrix(0.154495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154495,0.000000,0.000000,0.250000,0,0);}
.m1c5d_c00001{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m1172_c00001{transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154530,0.000000,0.000000,0.250000,0,0);}
.m20af_c00001{transform:matrix(0.154542,0.003864,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154542,0.003864,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154542,0.003864,-0.006248,0.249922,0,0);}
.m324_c00001{transform:matrix(0.154567,-0.002009,0.003250,0.249979,0,0);-ms-transform:matrix(0.154567,-0.002009,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154567,-0.002009,0.003250,0.249979,0,0);}
.m1df7_c00001{transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154570,0.000000,0.000000,0.250000,0,0);}
.m153c_c00001{transform:matrix(0.154586,0.005106,-0.008254,0.249864,0,0);-ms-transform:matrix(0.154586,0.005106,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.154586,0.005106,-0.008254,0.249864,0,0);}
.m28ed_c00001{transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);}
.mafe_c00001{transform:matrix(0.154622,-0.006036,0.009752,0.249810,0,0);-ms-transform:matrix(0.154622,-0.006036,0.009752,0.249810,0,0);-webkit-transform:matrix(0.154622,-0.006036,0.009752,0.249810,0,0);}
.m155f_c00001{transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);}
.m1c2b_c00001{transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154630,0.000000,0.000000,0.250000,0,0);}
.m36b_c00001{transform:matrix(0.154637,-0.002010,0.003250,0.249979,0,0);-ms-transform:matrix(0.154637,-0.002010,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154637,-0.002010,0.003250,0.249979,0,0);}
.mb2d_c00001{transform:matrix(0.154637,-0.006037,0.009752,0.249810,0,0);-ms-transform:matrix(0.154637,-0.006037,0.009752,0.249810,0,0);-webkit-transform:matrix(0.154637,-0.006037,0.009752,0.249810,0,0);}
.m1b9b_c00001{transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154645,0.000000,0.000000,0.250000,0,0);}
.m14f4_c00001{transform:matrix(0.154646,0.005108,-0.008254,0.249864,0,0);-ms-transform:matrix(0.154646,0.005108,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.154646,0.005108,-0.008254,0.249864,0,0);}
.m6f5_c00001{transform:matrix(0.154652,0.003866,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154652,0.003866,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154652,0.003866,-0.006248,0.249922,0,0);}
.m315_c00001{transform:matrix(0.154657,-0.002011,0.003250,0.249979,0,0);-ms-transform:matrix(0.154657,-0.002011,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154657,-0.002011,0.003250,0.249979,0,0);}
.m1e84_c00001{transform:matrix(0.154658,-0.003402,0.005499,0.249940,0,0);-ms-transform:matrix(0.154658,-0.003402,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154658,-0.003402,0.005499,0.249940,0,0);}
.m1616_c00001{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.m1118_c00001{transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154695,0.000000,0.000000,0.250000,0,0);}
.m155e_c00001{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m131c_c00001{transform:matrix(0.154738,0.004023,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154738,0.004023,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154738,0.004023,-0.006498,0.249916,0,0);}
.medf_c00001{transform:matrix(0.154752,0.002012,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154752,0.002012,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154752,0.002012,-0.003250,0.249979,0,0);}
.m12ca_c00001{transform:matrix(0.154807,0.003870,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154807,0.003870,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154807,0.003870,-0.006248,0.249922,0,0);}
.m79a_c00001{transform:matrix(0.154824,0.003561,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154824,0.003561,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154824,0.003561,-0.005748,0.249934,0,0);}
.m1375_c00001{transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);}
.m12d_c00001{transform:matrix(0.154880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154880,0.000000,0.000000,0.250000,0,0);}
.m9b5_c00001{transform:matrix(0.154908,-0.005892,0.009503,0.249819,0,0);-ms-transform:matrix(0.154908,-0.005892,0.009503,0.249819,0,0);-webkit-transform:matrix(0.154908,-0.005892,0.009503,0.249819,0,0);}
.mad1_c00001{transform:matrix(0.154942,-0.006049,0.009752,0.249810,0,0);-ms-transform:matrix(0.154942,-0.006049,0.009752,0.249810,0,0);-webkit-transform:matrix(0.154942,-0.006049,0.009752,0.249810,0,0);}
.m106d_c00001{transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);}
.m290f_c00001{transform:matrix(0.154960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154960,0.000000,0.000000,0.250000,0,0);}
.m1e16_c00001{transform:matrix(0.154970,-0.003719,0.005998,0.249928,0,0);-ms-transform:matrix(0.154970,-0.003719,0.005998,0.249928,0,0);-webkit-transform:matrix(0.154970,-0.003719,0.005998,0.249928,0,0);}
.m41_c00001{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m68c_c00001{transform:matrix(0.154995,-0.006361,0.010252,0.249790,0,0);-ms-transform:matrix(0.154995,-0.006361,0.010252,0.249790,0,0);-webkit-transform:matrix(0.154995,-0.006361,0.010252,0.249790,0,0);}
.m7b9_c00001{transform:matrix(0.155004,-0.004340,0.006997,0.249902,0,0);-ms-transform:matrix(0.155004,-0.004340,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155004,-0.004340,0.006997,0.249902,0,0);}
.m781_c00001{transform:matrix(0.155009,0.003565,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155009,0.003565,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155009,0.003565,-0.005748,0.249934,0,0);}
.m57f_c00001{transform:matrix(0.155031,0.001705,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155031,0.001705,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155031,0.001705,-0.002750,0.249985,0,0);}
.m11af_c00001{transform:matrix(0.155042,-0.003411,0.005499,0.249940,0,0);-ms-transform:matrix(0.155042,-0.003411,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155042,-0.003411,0.005499,0.249940,0,0);}
.m20d2_c00001{transform:matrix(0.155047,0.003876,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155047,0.003876,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155047,0.003876,-0.006248,0.249922,0,0);}
.mf55_c00001{transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155065,0.000000,0.000000,0.250000,0,0);}
.m16f8_c00001{transform:matrix(0.155073,-0.004032,0.006498,0.249916,0,0);-ms-transform:matrix(0.155073,-0.004032,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155073,-0.004032,0.006498,0.249916,0,0);}
.mf05_c00001{transform:matrix(0.155087,0.002016,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155087,0.002016,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155087,0.002016,-0.003250,0.249979,0,0);}
.m17f5_c00001{transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155090,0.000000,0.000000,0.250000,0,0);}
.m997_c00001{transform:matrix(0.155098,-0.005900,0.009503,0.249819,0,0);-ms-transform:matrix(0.155098,-0.005900,0.009503,0.249819,0,0);-webkit-transform:matrix(0.155098,-0.005900,0.009503,0.249819,0,0);}
.m2512_c00001{transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);}
.m1a37_c00001{transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);}
.m2757_c00001{transform:matrix(0.155138,-0.002327,0.003750,0.249972,0,0);-ms-transform:matrix(0.155138,-0.002327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155138,-0.002327,0.003750,0.249972,0,0);}
.m822_c00001{transform:matrix(0.155164,-0.004345,0.006997,0.249902,0,0);-ms-transform:matrix(0.155164,-0.004345,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155164,-0.004345,0.006997,0.249902,0,0);}
.m14ad_c00001{transform:matrix(0.155175,0.005126,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155175,0.005126,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155175,0.005126,-0.008254,0.249864,0,0);}
.m1e57_c00001{transform:matrix(0.155183,-0.004035,0.006498,0.249916,0,0);-ms-transform:matrix(0.155183,-0.004035,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155183,-0.004035,0.006498,0.249916,0,0);}
.m21a2_c00001{transform:matrix(0.155216,0.003260,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155216,0.003260,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155216,0.003260,-0.005249,0.249945,0,0);}
.m47b_c00001{transform:matrix(0.155235,-0.005283,0.008504,0.249855,0,0);-ms-transform:matrix(0.155235,-0.005283,0.008504,0.249855,0,0);-webkit-transform:matrix(0.155235,-0.005283,0.008504,0.249855,0,0);}
.m1a40_c00001{transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155260,0.000000,0.000000,0.250000,0,0);}
.mad8_c00001{transform:matrix(0.155262,-0.006061,0.009752,0.249810,0,0);-ms-transform:matrix(0.155262,-0.006061,0.009752,0.249810,0,0);-webkit-transform:matrix(0.155262,-0.006061,0.009752,0.249810,0,0);}
.m126b_c00001{transform:matrix(0.155278,-0.004193,0.006748,0.249909,0,0);-ms-transform:matrix(0.155278,-0.004193,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155278,-0.004193,0.006748,0.249909,0,0);}
.m4eb_c00001{transform:matrix(0.155291,0.001708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155291,0.001708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155291,0.001708,-0.002750,0.249985,0,0);}
.m75e_c00001{transform:matrix(0.155304,0.004349,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155304,0.004349,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155304,0.004349,-0.006997,0.249902,0,0);}
.m9ae_c00001{transform:matrix(0.155328,-0.005908,0.009503,0.249819,0,0);-ms-transform:matrix(0.155328,-0.005908,0.009503,0.249819,0,0);-webkit-transform:matrix(0.155328,-0.005908,0.009503,0.249819,0,0);}
.m1dd4_c00001{transform:matrix(0.155330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155330,0.000000,0.000000,0.250000,0,0);}
.m1f19_c00001{transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155335,0.000000,0.000000,0.250000,0,0);}
.mbb_c00001{transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155365,0.000000,0.000000,0.250000,0,0);}
.mdba_c00001{transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155370,0.000000,0.000000,0.250000,0,0);}
.m14c9_c00001{transform:matrix(0.155400,0.005133,-0.008254,0.249864,0,0);-ms-transform:matrix(0.155400,0.005133,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.155400,0.005133,-0.008254,0.249864,0,0);}
.mc63_c00001{transform:matrix(0.155420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155420,0.000000,0.000000,0.250000,0,0);}
.m6fe_c00001{transform:matrix(0.155431,0.003886,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155431,0.003886,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155431,0.003886,-0.006248,0.249922,0,0);}
.m50a_c00001{transform:matrix(0.155441,0.001710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155441,0.001710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155441,0.001710,-0.002750,0.249985,0,0);}
.mc8f_c00001{transform:matrix(0.155460,-0.004508,0.007247,0.249895,0,0);-ms-transform:matrix(0.155460,-0.004508,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155460,-0.004508,0.007247,0.249895,0,0);}
.m4b4_c00001{transform:matrix(0.155490,-0.004981,0.008004,0.249872,0,0);-ms-transform:matrix(0.155490,-0.004981,0.008004,0.249872,0,0);-webkit-transform:matrix(0.155490,-0.004981,0.008004,0.249872,0,0);}
.m9f8_c00001{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m705_c00001{transform:matrix(0.155530,0.003733,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155530,0.003733,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155530,0.003733,-0.005998,0.249928,0,0);}
.m17c6_c00001{transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155545,0.000000,0.000000,0.250000,0,0);}
.m2056_c00001{transform:matrix(0.155550,-0.004822,0.007746,0.249880,0,0);-ms-transform:matrix(0.155550,-0.004822,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155550,-0.004822,0.007746,0.249880,0,0);}
.m5b1_c00001{transform:matrix(0.155581,0.001711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155581,0.001711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155581,0.001711,-0.002750,0.249985,0,0);}
.mc7d_c00001{transform:matrix(0.155630,-0.004513,0.007247,0.249895,0,0);-ms-transform:matrix(0.155630,-0.004513,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155630,-0.004513,0.007247,0.249895,0,0);}
.m40a_c00001{transform:matrix(0.155651,-0.003269,0.005249,0.249945,0,0);-ms-transform:matrix(0.155651,-0.003269,0.005249,0.249945,0,0);-webkit-transform:matrix(0.155651,-0.003269,0.005249,0.249945,0,0);}
.m1173_c00001{transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155695,0.000000,0.000000,0.250000,0,0);}
.m1f3d_c00001{transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155715,0.000000,0.000000,0.250000,0,0);}
.mbc_c00001{transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155740,0.000000,0.000000,0.250000,0,0);}
.mad7_c00001{transform:matrix(0.155746,-0.006080,0.009752,0.249810,0,0);-ms-transform:matrix(0.155746,-0.006080,0.009752,0.249810,0,0);-webkit-transform:matrix(0.155746,-0.006080,0.009752,0.249810,0,0);}
.m1347_c00001{transform:matrix(0.155750,0.004517,-0.007247,0.249895,0,0);-ms-transform:matrix(0.155750,0.004517,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.155750,0.004517,-0.007247,0.249895,0,0);}
.m1a84_c00001{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m1bf0_c00001{transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);}
.m2100_c00001{transform:matrix(0.155779,0.004362,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155779,0.004362,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155779,0.004362,-0.006997,0.249902,0,0);}
.m441_c00001{transform:matrix(0.155787,-0.002960,0.004749,0.249955,0,0);-ms-transform:matrix(0.155787,-0.002960,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155787,-0.002960,0.004749,0.249955,0,0);}
.mbfe_c00001{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m1b3e_c00001{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m1ec1_c00001{transform:matrix(0.155867,-0.004053,0.006498,0.249916,0,0);-ms-transform:matrix(0.155867,-0.004053,0.006498,0.249916,0,0);-webkit-transform:matrix(0.155867,-0.004053,0.006498,0.249916,0,0);}
.mae3_c00001{transform:matrix(0.155886,-0.006086,0.009752,0.249810,0,0);-ms-transform:matrix(0.155886,-0.006086,0.009752,0.249810,0,0);-webkit-transform:matrix(0.155886,-0.006086,0.009752,0.249810,0,0);}
.m12b1_c00001{transform:matrix(0.155901,0.003898,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155901,0.003898,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155901,0.003898,-0.006248,0.249922,0,0);}
.mcd5_c00001{transform:matrix(0.155904,-0.004521,0.007247,0.249895,0,0);-ms-transform:matrix(0.155904,-0.004521,0.007247,0.249895,0,0);-webkit-transform:matrix(0.155904,-0.004521,0.007247,0.249895,0,0);}
.m2098_c00001{transform:matrix(0.155910,-0.004833,0.007746,0.249880,0,0);-ms-transform:matrix(0.155910,-0.004833,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155910,-0.004833,0.007746,0.249880,0,0);}
.mded_c00001{transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155915,0.000000,0.000000,0.250000,0,0);}
.m2202_c00001{transform:matrix(0.155937,-0.002963,0.004749,0.249955,0,0);-ms-transform:matrix(0.155937,-0.002963,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155937,-0.002963,0.004749,0.249955,0,0);}
.m2e0_c00001{transform:matrix(0.155957,-0.002027,0.003250,0.249979,0,0);-ms-transform:matrix(0.155957,-0.002027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155957,-0.002027,0.003250,0.249979,0,0);}
.me8c_c00001{transform:matrix(0.155970,0.002184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155970,0.002184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155970,0.002184,-0.003500,0.249976,0,0);}
.m106f_c00001{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.m27d2_c00001{transform:matrix(0.156014,-0.001872,0.003000,0.249982,0,0);-ms-transform:matrix(0.156014,-0.001872,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156014,-0.001872,0.003000,0.249982,0,0);}
.m2252_c00001{transform:matrix(0.156022,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.156022,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156022,-0.002652,0.004249,0.249964,0,0);}
.mb50_c00001{transform:matrix(0.156031,-0.006091,0.009752,0.249810,0,0);-ms-transform:matrix(0.156031,-0.006091,0.009752,0.249810,0,0);-webkit-transform:matrix(0.156031,-0.006091,0.009752,0.249810,0,0);}
.m1be3_c00001{transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156045,0.000000,0.000000,0.250000,0,0);}
.m2412_c00001{transform:matrix(0.156087,-0.003434,0.005499,0.249940,0,0);-ms-transform:matrix(0.156087,-0.003434,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156087,-0.003434,0.005499,0.249940,0,0);}
.m130e_c00001{transform:matrix(0.156113,0.004215,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156113,0.004215,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156113,0.004215,-0.006748,0.249909,0,0);}
.m1ff_c00001{transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156115,0.000000,0.000000,0.250000,0,0);}
.m27f_c00001{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m1984_c00001{transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156140,0.000000,0.000000,0.250000,0,0);}
.m1887_c00001{transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156240,0.000000,0.000000,0.250000,0,0);}
.m2440_c00001{transform:matrix(0.156257,-0.003438,0.005499,0.249940,0,0);-ms-transform:matrix(0.156257,-0.003438,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156257,-0.003438,0.005499,0.249940,0,0);}
.m1111_c00001{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.mdbd_c00001{transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156305,0.000000,0.000000,0.250000,0,0);}
.m2724_c00001{transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156330,0.000000,0.000000,0.250000,0,0);}
.m6ac_c00001{transform:matrix(0.156379,0.003597,-0.005748,0.249934,0,0);-ms-transform:matrix(0.156379,0.003597,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.156379,0.003597,-0.005748,0.249934,0,0);}
.m46a_c00001{transform:matrix(0.156384,-0.005322,0.008504,0.249855,0,0);-ms-transform:matrix(0.156384,-0.005322,0.008504,0.249855,0,0);-webkit-transform:matrix(0.156384,-0.005322,0.008504,0.249855,0,0);}
.m1fdb_c00001{transform:matrix(0.156386,-0.003910,0.006248,0.249922,0,0);-ms-transform:matrix(0.156386,-0.003910,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156386,-0.003910,0.006248,0.249922,0,0);}
.mf4_c00001{transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156415,0.000000,0.000000,0.250000,0,0);}
.m1064_c00001{transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);}
.mccb_c00001{transform:matrix(0.156444,-0.004537,0.007247,0.249895,0,0);-ms-transform:matrix(0.156444,-0.004537,0.007247,0.249895,0,0);-webkit-transform:matrix(0.156444,-0.004537,0.007247,0.249895,0,0);}
.m212a_c00001{transform:matrix(0.156449,0.004381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156449,0.004381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156449,0.004381,-0.006997,0.249902,0,0);}
.m256e_c00001{transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);-ms-transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156452,-0.002034,0.003250,0.249979,0,0);}
.m1d8c_c00001{transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);}
.m96a_c00001{transform:matrix(0.156472,-0.005952,0.009503,0.249819,0,0);-ms-transform:matrix(0.156472,-0.005952,0.009503,0.249819,0,0);-webkit-transform:matrix(0.156472,-0.005952,0.009503,0.249819,0,0);}
.m1b4e_c00001{transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156505,0.000000,0.000000,0.250000,0,0);}
.m270b_c00001{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.m1d77_c00001{transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156530,0.000000,0.000000,0.250000,0,0);}
.m1ad2_c00001{transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156580,0.000000,0.000000,0.250000,0,0);}
.m2109_c00001{transform:matrix(0.156604,0.004385,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156604,0.004385,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156604,0.004385,-0.006997,0.249902,0,0);}
.m19d3_c00001{transform:matrix(0.156610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156610,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.156615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156615,0.000000,0.000000,0.250000,0,0);}
.m4ac_c00001{transform:matrix(0.156618,-0.006428,0.010252,0.249790,0,0);-ms-transform:matrix(0.156618,-0.006428,0.010252,0.249790,0,0);-webkit-transform:matrix(0.156618,-0.006428,0.010252,0.249790,0,0);}
.m26d_c00001{transform:matrix(0.156635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156635,0.000000,0.000000,0.250000,0,0);}
.m58d_c00001{transform:matrix(0.156651,0.001723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156651,0.001723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156651,0.001723,-0.002750,0.249985,0,0);}
.m28e_c00001{transform:matrix(0.156655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156655,0.000000,0.000000,0.250000,0,0);}
.mf2f_c00001{transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156710,0.000000,0.000000,0.250000,0,0);}
.m29d9_c00001{transform:matrix(0.156720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156720,0.000000,0.000000,0.250000,0,0);}
.m1232_c00001{transform:matrix(0.156753,-0.004232,0.006748,0.249909,0,0);-ms-transform:matrix(0.156753,-0.004232,0.006748,0.249909,0,0);-webkit-transform:matrix(0.156753,-0.004232,0.006748,0.249909,0,0);}
.mb36_c00001{transform:matrix(0.156756,-0.006120,0.009752,0.249810,0,0);-ms-transform:matrix(0.156756,-0.006120,0.009752,0.249810,0,0);-webkit-transform:matrix(0.156756,-0.006120,0.009752,0.249810,0,0);}
.m2389_c00001{transform:matrix(0.156782,-0.004076,0.006498,0.249916,0,0);-ms-transform:matrix(0.156782,-0.004076,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156782,-0.004076,0.006498,0.249916,0,0);}
.m1ad4_c00001{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.mdc5_c00001{transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156810,0.000000,0.000000,0.250000,0,0);}
.m1c1a_c00001{transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156855,0.000000,0.000000,0.250000,0,0);}
.m43e_c00001{transform:matrix(0.156857,-0.002980,0.004749,0.249955,0,0);-ms-transform:matrix(0.156857,-0.002980,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156857,-0.002980,0.004749,0.249955,0,0);}
.m10ea_c00001{transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156910,0.000000,0.000000,0.250000,0,0);}
.m73c_c00001{transform:matrix(0.156923,0.004394,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156923,0.004394,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156923,0.004394,-0.006997,0.249902,0,0);}
.mb43_c00001{transform:matrix(0.156930,-0.006126,0.009752,0.249810,0,0);-ms-transform:matrix(0.156930,-0.006126,0.009752,0.249810,0,0);-webkit-transform:matrix(0.156930,-0.006126,0.009752,0.249810,0,0);}
.m1738_c00001{transform:matrix(0.156932,-0.004080,0.006498,0.249916,0,0);-ms-transform:matrix(0.156932,-0.004080,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156932,-0.004080,0.006498,0.249916,0,0);}
.m1dd6_c00001{transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156940,0.000000,0.000000,0.250000,0,0);}
.m90d_c00001{transform:matrix(0.156956,-0.005970,0.009503,0.249819,0,0);-ms-transform:matrix(0.156956,-0.005970,0.009503,0.249819,0,0);-webkit-transform:matrix(0.156956,-0.005970,0.009503,0.249819,0,0);}
.mb6b_c00001{transform:matrix(0.156963,-0.005656,0.009003,0.249838,0,0);-ms-transform:matrix(0.156963,-0.005656,0.009003,0.249838,0,0);-webkit-transform:matrix(0.156963,-0.005656,0.009003,0.249838,0,0);}
.mcc1_c00001{transform:matrix(0.156964,-0.004552,0.007247,0.249895,0,0);-ms-transform:matrix(0.156964,-0.004552,0.007247,0.249895,0,0);-webkit-transform:matrix(0.156964,-0.004552,0.007247,0.249895,0,0);}
.ma0a_c00001{transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156965,0.000000,0.000000,0.250000,0,0);}
.m661_c00001{transform:matrix(0.156968,-0.006442,0.010252,0.249790,0,0);-ms-transform:matrix(0.156968,-0.006442,0.010252,0.249790,0,0);-webkit-transform:matrix(0.156968,-0.006442,0.010252,0.249790,0,0);}
.mb8e_c00001{transform:matrix(0.157007,0.002041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157007,0.002041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157007,0.002041,-0.003250,0.249979,0,0);}
.m1220_c00001{transform:matrix(0.157008,-0.004239,0.006748,0.249909,0,0);-ms-transform:matrix(0.157008,-0.004239,0.006748,0.249909,0,0);-webkit-transform:matrix(0.157008,-0.004239,0.006748,0.249909,0,0);}
.m2ee_c00001{transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);-ms-transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157017,-0.002041,0.003250,0.249979,0,0);}
.m1ad5_c00001{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m2796_c00001{transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157065,0.000000,0.000000,0.250000,0,0);}
.m2026_c00001{transform:matrix(0.157095,-0.004870,0.007746,0.249880,0,0);-ms-transform:matrix(0.157095,-0.004870,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157095,-0.004870,0.007746,0.249880,0,0);}
.m507_c00001{transform:matrix(0.157110,0.001728,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157110,0.001728,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157110,0.001728,-0.002750,0.249985,0,0);}
.m191_c00001{transform:matrix(0.157145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157145,0.000000,0.000000,0.250000,0,0);}
.m1202_c00001{transform:matrix(0.157152,-0.003457,0.005499,0.249940,0,0);-ms-transform:matrix(0.157152,-0.003457,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157152,-0.003457,0.005499,0.249940,0,0);}
.m160d_c00001{transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157155,0.000000,0.000000,0.250000,0,0);}
.m23d5_c00001{transform:matrix(0.157157,-0.003457,0.005499,0.249940,0,0);-ms-transform:matrix(0.157157,-0.003457,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157157,-0.003457,0.005499,0.249940,0,0);}
.m12dc_c00001{transform:matrix(0.157168,0.004244,-0.006748,0.249909,0,0);-ms-transform:matrix(0.157168,0.004244,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.157168,0.004244,-0.006748,0.249909,0,0);}
.mdf4_c00001{transform:matrix(0.157170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157230,0.000000,0.000000,0.250000,0,0);}
.m230_c00001{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m11f1_c00001{transform:matrix(0.157247,-0.003459,0.005499,0.249940,0,0);-ms-transform:matrix(0.157247,-0.003459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157247,-0.003459,0.005499,0.249940,0,0);}
.m1ac3_c00001{transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157285,0.000000,0.000000,0.250000,0,0);}
.m1c7c_c00001{transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157335,0.000000,0.000000,0.250000,0,0);}
.m217e_c00001{transform:matrix(0.157353,0.004406,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157353,0.004406,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157353,0.004406,-0.006997,0.249902,0,0);}
.me36_c00001{transform:matrix(0.157355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157355,0.000000,0.000000,0.250000,0,0);}
.m7c2_c00001{transform:matrix(0.157358,-0.004406,0.006997,0.249902,0,0);-ms-transform:matrix(0.157358,-0.004406,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157358,-0.004406,0.006997,0.249902,0,0);}
.m26c_c00001{transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157360,0.000000,0.000000,0.250000,0,0);}
.m1113_c00001{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.mbd_c00001{transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157415,0.000000,0.000000,0.250000,0,0);}
.m265e_c00001{transform:matrix(0.157455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157455,0.000000,0.000000,0.250000,0,0);}
.m13b6_c00001{transform:matrix(0.157457,-0.004094,0.006498,0.249916,0,0);-ms-transform:matrix(0.157457,-0.004094,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157457,-0.004094,0.006498,0.249916,0,0);}
.m980_c00001{transform:matrix(0.157471,-0.005990,0.009503,0.249819,0,0);-ms-transform:matrix(0.157471,-0.005990,0.009503,0.249819,0,0);-webkit-transform:matrix(0.157471,-0.005990,0.009503,0.249819,0,0);}
.m1a2_c00001{transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157490,0.000000,0.000000,0.250000,0,0);}
.mbaf_c00001{transform:matrix(0.157502,0.002363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157502,0.002363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157502,0.002363,-0.003750,0.249972,0,0);}
.m871_c00001{transform:matrix(0.157503,-0.004410,0.006997,0.249902,0,0);-ms-transform:matrix(0.157503,-0.004410,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157503,-0.004410,0.006997,0.249902,0,0);}
.med6_c00001{transform:matrix(0.157540,0.002206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157540,0.002206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157540,0.002206,-0.003500,0.249976,0,0);}
.m1db1_c00001{transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157555,0.000000,0.000000,0.250000,0,0);}
.m49b_c00001{transform:matrix(0.157557,-0.006466,0.010252,0.249790,0,0);-ms-transform:matrix(0.157557,-0.006466,0.010252,0.249790,0,0);-webkit-transform:matrix(0.157557,-0.006466,0.010252,0.249790,0,0);}
.mc3a_c00001{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.m1abb_c00001{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.m2e9_c00001{transform:matrix(0.157607,-0.002049,0.003250,0.249979,0,0);-ms-transform:matrix(0.157607,-0.002049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157607,-0.002049,0.003250,0.249979,0,0);}
.mb19_c00001{transform:matrix(0.157610,-0.006153,0.009752,0.249810,0,0);-ms-transform:matrix(0.157610,-0.006153,0.009752,0.249810,0,0);-webkit-transform:matrix(0.157610,-0.006153,0.009752,0.249810,0,0);}
.m125_c00001{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.maad_c00001{transform:matrix(0.157657,-0.004099,0.006498,0.249916,0,0);-ms-transform:matrix(0.157657,-0.004099,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157657,-0.004099,0.006498,0.249916,0,0);}
.m100f_c00001{transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157660,0.000000,0.000000,0.250000,0,0);}
.m1bec_c00001{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.mfb_c00001{transform:matrix(0.157735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157735,0.000000,0.000000,0.250000,0,0);}
.m1f03_c00001{transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157760,0.000000,0.000000,0.250000,0,0);}
.m51f_c00001{transform:matrix(0.157770,0.001735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157770,0.001735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157770,0.001735,-0.002750,0.249985,0,0);}
.m95b_c00001{transform:matrix(0.157781,-0.006002,0.009503,0.249819,0,0);-ms-transform:matrix(0.157781,-0.006002,0.009503,0.249819,0,0);-webkit-transform:matrix(0.157781,-0.006002,0.009503,0.249819,0,0);}
.m34f_c00001{transform:matrix(0.157782,-0.002051,0.003250,0.249979,0,0);-ms-transform:matrix(0.157782,-0.002051,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157782,-0.002051,0.003250,0.249979,0,0);}
.m81e_c00001{transform:matrix(0.157818,-0.004419,0.006997,0.249902,0,0);-ms-transform:matrix(0.157818,-0.004419,0.006997,0.249902,0,0);-webkit-transform:matrix(0.157818,-0.004419,0.006997,0.249902,0,0);}
.mbe4_c00001{transform:matrix(0.157835,0.001736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157835,0.001736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157835,0.001736,-0.002750,0.249985,0,0);}
.m102d_c00001{transform:matrix(0.157860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157860,0.000000,0.000000,0.250000,0,0);}
.m35b_c00001{transform:matrix(0.157862,-0.002052,0.003250,0.249979,0,0);-ms-transform:matrix(0.157862,-0.002052,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157862,-0.002052,0.003250,0.249979,0,0);}
.m8d7_c00001{transform:matrix(0.157865,-0.003789,0.005998,0.249928,0,0);-ms-transform:matrix(0.157865,-0.003789,0.005998,0.249928,0,0);-webkit-transform:matrix(0.157865,-0.003789,0.005998,0.249928,0,0);}
.m265b_c00001{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m2735_c00001{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m931_c00001{transform:matrix(0.157911,-0.006007,0.009503,0.249819,0,0);-ms-transform:matrix(0.157911,-0.006007,0.009503,0.249819,0,0);-webkit-transform:matrix(0.157911,-0.006007,0.009503,0.249819,0,0);}
.m263_c00001{transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157945,0.000000,0.000000,0.250000,0,0);}
.m2097_c00001{transform:matrix(0.157999,-0.004898,0.007746,0.249880,0,0);-ms-transform:matrix(0.157999,-0.004898,0.007746,0.249880,0,0);-webkit-transform:matrix(0.157999,-0.004898,0.007746,0.249880,0,0);}
.m1b2e_c00001{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m5b5_c00001{transform:matrix(0.158010,0.001738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158010,0.001738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158010,0.001738,-0.002750,0.249985,0,0);}
.m7a_c00001{transform:matrix(0.158020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158020,0.000000,0.000000,0.250000,0,0);}
.m126a_c00001{transform:matrix(0.158032,-0.004267,0.006748,0.249909,0,0);-ms-transform:matrix(0.158032,-0.004267,0.006748,0.249909,0,0);-webkit-transform:matrix(0.158032,-0.004267,0.006748,0.249909,0,0);}
.m21d2_c00001{transform:matrix(0.158033,-0.003635,0.005748,0.249934,0,0);-ms-transform:matrix(0.158033,-0.003635,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158033,-0.003635,0.005748,0.249934,0,0);}
.m1d32_c00001{transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158065,0.000000,0.000000,0.250000,0,0);}
.m297a_c00001{transform:matrix(0.158088,-0.003162,0.004999,0.249950,0,0);-ms-transform:matrix(0.158088,-0.003162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158088,-0.003162,0.004999,0.249950,0,0);}
.mc71_c00001{transform:matrix(0.158089,-0.004585,0.007247,0.249895,0,0);-ms-transform:matrix(0.158089,-0.004585,0.007247,0.249895,0,0);-webkit-transform:matrix(0.158089,-0.004585,0.007247,0.249895,0,0);}
.m24aa_c00001{transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158090,0.000000,0.000000,0.250000,0,0);}
.m118a_c00001{transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);}
.m654_c00001{transform:matrix(0.158107,-0.006489,0.010252,0.249790,0,0);-ms-transform:matrix(0.158107,-0.006489,0.010252,0.249790,0,0);-webkit-transform:matrix(0.158107,-0.006489,0.010252,0.249790,0,0);}
.mb16_c00001{transform:matrix(0.158125,-0.006173,0.009752,0.249810,0,0);-ms-transform:matrix(0.158125,-0.006173,0.009752,0.249810,0,0);-webkit-transform:matrix(0.158125,-0.006173,0.009752,0.249810,0,0);}
.m1966_c00001{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m2699_c00001{transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158145,0.000000,0.000000,0.250000,0,0);}
.m23da_c00001{transform:matrix(0.158162,-0.003480,0.005499,0.249940,0,0);-ms-transform:matrix(0.158162,-0.003480,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158162,-0.003480,0.005499,0.249940,0,0);}
.m1dd9_c00001{transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158195,0.000000,0.000000,0.250000,0,0);}
.m1b2d_c00001{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m100b_c00001{transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);}
.m11b5_c00001{transform:matrix(0.158227,-0.003481,0.005499,0.249940,0,0);-ms-transform:matrix(0.158227,-0.003481,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158227,-0.003481,0.005499,0.249940,0,0);}
.m256b_c00001{transform:matrix(0.158267,-0.002057,0.003250,0.249979,0,0);-ms-transform:matrix(0.158267,-0.002057,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158267,-0.002057,0.003250,0.249979,0,0);}
.mc9f_c00001{transform:matrix(0.158268,-0.004590,0.007247,0.249895,0,0);-ms-transform:matrix(0.158268,-0.004590,0.007247,0.249895,0,0);-webkit-transform:matrix(0.158268,-0.004590,0.007247,0.249895,0,0);}
.m1b26_c00001{transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);}
.m1b1d_c00001{transform:matrix(0.158290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158290,0.000000,0.000000,0.250000,0,0);}
.m1117_c00001{transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158315,0.000000,0.000000,0.250000,0,0);}
.m272_c00001{transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158320,0.000000,0.000000,0.250000,0,0);}
.m21c6_c00001{transform:matrix(0.158323,-0.003641,0.005748,0.249934,0,0);-ms-transform:matrix(0.158323,-0.003641,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158323,-0.003641,0.005748,0.249934,0,0);}
.m2488_c00001{transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158335,0.000000,0.000000,0.250000,0,0);}
.m846_c00001{transform:matrix(0.158363,-0.004434,0.006997,0.249902,0,0);-ms-transform:matrix(0.158363,-0.004434,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158363,-0.004434,0.006997,0.249902,0,0);}
.m1a6a_c00001{transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158435,0.000000,0.000000,0.250000,0,0);}
.m17b_c00001{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m21a7_c00001{transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158460,0.000000,0.000000,0.250000,0,0);}
.m15c0_c00001{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m52f_c00001{transform:matrix(0.158510,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158510,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158510,0.001744,-0.002750,0.249985,0,0);}
.m1abe_c00001{transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158530,0.000000,0.000000,0.250000,0,0);}
.mad4_c00001{transform:matrix(0.158539,-0.006189,0.009752,0.249810,0,0);-ms-transform:matrix(0.158539,-0.006189,0.009752,0.249810,0,0);-webkit-transform:matrix(0.158539,-0.006189,0.009752,0.249810,0,0);}
.m1539_c00001{transform:matrix(0.158549,0.005237,-0.008254,0.249864,0,0);-ms-transform:matrix(0.158549,0.005237,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.158549,0.005237,-0.008254,0.249864,0,0);}
.m229_c00001{transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158570,0.000000,0.000000,0.250000,0,0);}
.m1765_c00001{transform:matrix(0.158606,-0.004124,0.006498,0.249916,0,0);-ms-transform:matrix(0.158606,-0.004124,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158606,-0.004124,0.006498,0.249916,0,0);}
.m1ed3_c00001{transform:matrix(0.158631,-0.004124,0.006498,0.249916,0,0);-ms-transform:matrix(0.158631,-0.004124,0.006498,0.249916,0,0);-webkit-transform:matrix(0.158631,-0.004124,0.006498,0.249916,0,0);}
.mcfe_c00001{transform:matrix(0.158633,-0.004600,0.007247,0.249895,0,0);-ms-transform:matrix(0.158633,-0.004600,0.007247,0.249895,0,0);-webkit-transform:matrix(0.158633,-0.004600,0.007247,0.249895,0,0);}
.mdff_c00001{transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158635,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158660,0.000000,0.000000,0.250000,0,0);}
.m166a_c00001{transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158665,0.000000,0.000000,0.250000,0,0);}
.m2777_c00001{transform:matrix(0.158752,-0.002381,0.003750,0.249972,0,0);-ms-transform:matrix(0.158752,-0.002381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158752,-0.002381,0.003750,0.249972,0,0);}
.m4f6_c00001{transform:matrix(0.158770,0.001746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158770,0.001746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158770,0.001746,-0.002750,0.249985,0,0);}
.m4d7_c00001{transform:matrix(0.158815,0.001747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158815,0.001747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158815,0.001747,-0.002750,0.249985,0,0);}
.m101b_c00001{transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158820,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.158897,-0.001589,0.002500,0.249988,0,0);-ms-transform:matrix(0.158897,-0.001589,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158897,-0.001589,0.002500,0.249988,0,0);}
.m290_c00001{transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);}
.m11a7_c00001{transform:matrix(0.158922,-0.003496,0.005499,0.249940,0,0);-ms-transform:matrix(0.158922,-0.003496,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158922,-0.003496,0.005499,0.249940,0,0);}
.m17b7_c00001{transform:matrix(0.158955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158955,0.000000,0.000000,0.250000,0,0);}
.m10a2_c00001{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.m2343_c00001{transform:matrix(0.158979,0.002862,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158979,0.002862,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158979,0.002862,-0.004499,0.249960,0,0);}
.mb2e_c00001{transform:matrix(0.159004,-0.006207,0.009752,0.249810,0,0);-ms-transform:matrix(0.159004,-0.006207,0.009752,0.249810,0,0);-webkit-transform:matrix(0.159004,-0.006207,0.009752,0.249810,0,0);}
.m1d2d_c00001{transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159030,0.000000,0.000000,0.250000,0,0);}
.m7c5_c00001{transform:matrix(0.159043,-0.004453,0.006997,0.249902,0,0);-ms-transform:matrix(0.159043,-0.004453,0.006997,0.249902,0,0);-webkit-transform:matrix(0.159043,-0.004453,0.006997,0.249902,0,0);}
.mbc6_c00001{transform:matrix(0.159045,0.001749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159045,0.001749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159045,0.001749,-0.002750,0.249985,0,0);}
.mf53_c00001{transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159055,0.000000,0.000000,0.250000,0,0);}
.m2032_c00001{transform:matrix(0.159104,-0.004932,0.007746,0.249880,0,0);-ms-transform:matrix(0.159104,-0.004932,0.007746,0.249880,0,0);-webkit-transform:matrix(0.159104,-0.004932,0.007746,0.249880,0,0);}
.m218_c00001{transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159110,0.000000,0.000000,0.250000,0,0);}
.m1253_c00001{transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);-ms-transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);-webkit-transform:matrix(0.159127,-0.004296,0.006748,0.249909,0,0);}
.m766_c00001{transform:matrix(0.159138,0.004456,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159138,0.004456,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159138,0.004456,-0.006997,0.249902,0,0);}
.m294_c00001{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.m22a7_c00001{transform:matrix(0.159185,0.002547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159185,0.002547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159185,0.002547,-0.003999,0.249968,0,0);}
.mb53_c00001{transform:matrix(0.159194,-0.006215,0.009752,0.249810,0,0);-ms-transform:matrix(0.159194,-0.006215,0.009752,0.249810,0,0);-webkit-transform:matrix(0.159194,-0.006215,0.009752,0.249810,0,0);}
.m1e96_c00001{transform:matrix(0.159198,-0.003184,0.004999,0.249950,0,0);-ms-transform:matrix(0.159198,-0.003184,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159198,-0.003184,0.004999,0.249950,0,0);}
.m26d7_c00001{transform:matrix(0.159205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159205,0.000000,0.000000,0.250000,0,0);}
.m694_c00001{transform:matrix(0.159221,-0.006535,0.010252,0.249790,0,0);-ms-transform:matrix(0.159221,-0.006535,0.010252,0.249790,0,0);-webkit-transform:matrix(0.159221,-0.006535,0.010252,0.249790,0,0);}
.m11d2_c00001{transform:matrix(0.159271,-0.003504,0.005499,0.249940,0,0);-ms-transform:matrix(0.159271,-0.003504,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159271,-0.003504,0.005499,0.249940,0,0);}
.mb66_c00001{transform:matrix(0.159272,-0.005740,0.009003,0.249838,0,0);-ms-transform:matrix(0.159272,-0.005740,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159272,-0.005740,0.009003,0.249838,0,0);}
.mb25_c00001{transform:matrix(0.159279,-0.006218,0.009752,0.249810,0,0);-ms-transform:matrix(0.159279,-0.006218,0.009752,0.249810,0,0);-webkit-transform:matrix(0.159279,-0.006218,0.009752,0.249810,0,0);}
.m2968_c00001{transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159280,0.000000,0.000000,0.250000,0,0);}
.mf6_c00001{transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159290,0.000000,0.000000,0.250000,0,0);}
.m23d2_c00001{transform:matrix(0.159316,-0.003505,0.005499,0.249940,0,0);-ms-transform:matrix(0.159316,-0.003505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159316,-0.003505,0.005499,0.249940,0,0);}
.m1b27_c00001{transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159340,0.000000,0.000000,0.250000,0,0);}
.m20ce_c00001{transform:matrix(0.159355,0.003984,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159355,0.003984,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159355,0.003984,-0.006248,0.249922,0,0);}
.m202f_c00001{transform:matrix(0.159358,-0.004940,0.007746,0.249880,0,0);-ms-transform:matrix(0.159358,-0.004940,0.007746,0.249880,0,0);-webkit-transform:matrix(0.159358,-0.004940,0.007746,0.249880,0,0);}
.m976_c00001{transform:matrix(0.159400,-0.006063,0.009503,0.249819,0,0);-ms-transform:matrix(0.159400,-0.006063,0.009503,0.249819,0,0);-webkit-transform:matrix(0.159400,-0.006063,0.009503,0.249819,0,0);}
.m24e2_c00001{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m161d_c00001{transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159415,0.000000,0.000000,0.250000,0,0);}
.mcd_c00001{transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159435,0.000000,0.000000,0.250000,0,0);}
.m2960_c00001{transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159495,0.000000,0.000000,0.250000,0,0);}
.m116e_c00001{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.m228a_c00001{transform:matrix(0.159516,-0.003509,0.005499,0.249940,0,0);-ms-transform:matrix(0.159516,-0.003509,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159516,-0.003509,0.005499,0.249940,0,0);}
.m17b2_c00001{transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159555,0.000000,0.000000,0.250000,0,0);}
.md22_c00001{transform:matrix(0.159598,-0.004628,0.007247,0.249895,0,0);-ms-transform:matrix(0.159598,-0.004628,0.007247,0.249895,0,0);-webkit-transform:matrix(0.159598,-0.004628,0.007247,0.249895,0,0);}
.mdd4_c00001{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.m16c5_c00001{transform:matrix(0.159603,-0.005432,0.008504,0.249855,0,0);-ms-transform:matrix(0.159603,-0.005432,0.008504,0.249855,0,0);-webkit-transform:matrix(0.159603,-0.005432,0.008504,0.249855,0,0);}
.m187b_c00001{transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159630,0.000000,0.000000,0.250000,0,0);}
.m1c04_c00001{transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159640,0.000000,0.000000,0.250000,0,0);}
.m228b_c00001{transform:matrix(0.159646,-0.003512,0.005499,0.249940,0,0);-ms-transform:matrix(0.159646,-0.003512,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159646,-0.003512,0.005499,0.249940,0,0);}
.m275e_c00001{transform:matrix(0.159662,-0.002395,0.003750,0.249972,0,0);-ms-transform:matrix(0.159662,-0.002395,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159662,-0.002395,0.003750,0.249972,0,0);}
.m966_c00001{transform:matrix(0.159665,-0.006073,0.009503,0.249819,0,0);-ms-transform:matrix(0.159665,-0.006073,0.009503,0.249819,0,0);-webkit-transform:matrix(0.159665,-0.006073,0.009503,0.249819,0,0);}
.m10bc_c00001{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m979_c00001{transform:matrix(0.159764,-0.006077,0.009503,0.249819,0,0);-ms-transform:matrix(0.159764,-0.006077,0.009503,0.249819,0,0);-webkit-transform:matrix(0.159764,-0.006077,0.009503,0.249819,0,0);}
.m19d4_c00001{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.mf0_c00001{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m1607_c00001{transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159820,0.000000,0.000000,0.250000,0,0);}
.m19fd_c00001{transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159830,0.000000,0.000000,0.250000,0,0);}
.m76f_c00001{transform:matrix(0.159833,0.003676,-0.005748,0.249934,0,0);-ms-transform:matrix(0.159833,0.003676,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.159833,0.003676,-0.005748,0.249934,0,0);}
.m23f_c00001{transform:matrix(0.159835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159835,0.000000,0.000000,0.250000,0,0);}
.m17d7_c00001{transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159840,0.000000,0.000000,0.250000,0,0);}
.m50d_c00001{transform:matrix(0.159855,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159855,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159855,0.001758,-0.002750,0.249985,0,0);}
.m9a_c00001{transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159870,0.000000,0.000000,0.250000,0,0);}
.m280c_c00001{transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159885,0.000000,0.000000,0.250000,0,0);}
.me40_c00001{transform:matrix(0.159904,0.002878,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159904,0.002878,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159904,0.002878,-0.004499,0.249960,0,0);}
.m287a_c00001{transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159930,0.000000,0.000000,0.250000,0,0);}
.m1a74_c00001{transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159935,0.000000,0.000000,0.250000,0,0);}
.m1407_c00001{transform:matrix(0.159961,-0.004159,0.006498,0.249916,0,0);-ms-transform:matrix(0.159961,-0.004159,0.006498,0.249916,0,0);-webkit-transform:matrix(0.159961,-0.004159,0.006498,0.249916,0,0);}
.m116c_c00001{transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159970,0.000000,0.000000,0.250000,0,0);}
.m4f3_c00001{transform:matrix(0.159990,0.001760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159990,0.001760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159990,0.001760,-0.002750,0.249985,0,0);}
.m1c11_c00001{transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160010,0.000000,0.000000,0.250000,0,0);}
.m1c28_c00001{transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);}
.m506_c00001{transform:matrix(0.160080,0.001761,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160080,0.001761,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160080,0.001761,-0.002750,0.249985,0,0);}
.mf09_c00001{transform:matrix(0.160081,0.002081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160081,0.002081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160081,0.002081,-0.003250,0.249979,0,0);}
.m73_c00001{transform:matrix(0.160120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160120,0.000000,0.000000,0.250000,0,0);}
.me38_c00001{transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160130,0.000000,0.000000,0.250000,0,0);}
.m1f28_c00001{transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160140,0.000000,0.000000,0.250000,0,0);}
.m22a1_c00001{transform:matrix(0.160145,0.002562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160145,0.002562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160145,0.002562,-0.003999,0.249968,0,0);}
.m11c6_c00001{transform:matrix(0.160151,-0.003523,0.005499,0.249940,0,0);-ms-transform:matrix(0.160151,-0.003523,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160151,-0.003523,0.005499,0.249940,0,0);}
.m27ed_c00001{transform:matrix(0.160160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160160,0.000000,0.000000,0.250000,0,0);}
.m77f_c00001{transform:matrix(0.160168,0.003684,-0.005748,0.249934,0,0);-ms-transform:matrix(0.160168,0.003684,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.160168,0.003684,-0.005748,0.249934,0,0);}
.m11b1_c00001{transform:matrix(0.160206,-0.003525,0.005499,0.249940,0,0);-ms-transform:matrix(0.160206,-0.003525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160206,-0.003525,0.005499,0.249940,0,0);}
.md9f_c00001{transform:matrix(0.160218,0.001923,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160218,0.001923,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160218,0.001923,-0.003000,0.249982,0,0);}
.m11fb_c00001{transform:matrix(0.160226,-0.003525,0.005499,0.249940,0,0);-ms-transform:matrix(0.160226,-0.003525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160226,-0.003525,0.005499,0.249940,0,0);}
.m91e_c00001{transform:matrix(0.160229,-0.006095,0.009503,0.249819,0,0);-ms-transform:matrix(0.160229,-0.006095,0.009503,0.249819,0,0);-webkit-transform:matrix(0.160229,-0.006095,0.009503,0.249819,0,0);}
.m1991_c00001{transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160245,0.000000,0.000000,0.250000,0,0);}
.m1512_c00001{transform:matrix(0.160248,0.005293,-0.008254,0.249864,0,0);-ms-transform:matrix(0.160248,0.005293,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.160248,0.005293,-0.008254,0.249864,0,0);}
.m5b4_c00001{transform:matrix(0.160330,0.001764,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160330,0.001764,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160330,0.001764,-0.002750,0.249985,0,0);}
.m94a_c00001{transform:matrix(0.160344,-0.006099,0.009503,0.249819,0,0);-ms-transform:matrix(0.160344,-0.006099,0.009503,0.249819,0,0);-webkit-transform:matrix(0.160344,-0.006099,0.009503,0.249819,0,0);}
.madc_c00001{transform:matrix(0.160373,-0.006261,0.009752,0.249810,0,0);-ms-transform:matrix(0.160373,-0.006261,0.009752,0.249810,0,0);-webkit-transform:matrix(0.160373,-0.006261,0.009752,0.249810,0,0);}
.m1b8c_c00001{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.md28_c00001{transform:matrix(0.160403,-0.004652,0.007247,0.249895,0,0);-ms-transform:matrix(0.160403,-0.004652,0.007247,0.249895,0,0);-webkit-transform:matrix(0.160403,-0.004652,0.007247,0.249895,0,0);}
.me13_c00001{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.m113f_c00001{transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);}
.m26d8_c00001{transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);}
.m1617_c00001{transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160460,0.000000,0.000000,0.250000,0,0);}
.mbe1_c00001{transform:matrix(0.160465,0.001765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160465,0.001765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160465,0.001765,-0.002750,0.249985,0,0);}
.m184a_c00001{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m1ebf_c00001{transform:matrix(0.160476,-0.004172,0.006498,0.249916,0,0);-ms-transform:matrix(0.160476,-0.004172,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160476,-0.004172,0.006498,0.249916,0,0);}
.mf4b_c00001{transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160555,0.000000,0.000000,0.250000,0,0);}
.m1135_c00001{transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);}
.m21c8_c00001{transform:matrix(0.160578,-0.003693,0.005748,0.249934,0,0);-ms-transform:matrix(0.160578,-0.003693,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160578,-0.003693,0.005748,0.249934,0,0);}
.m398_c00001{transform:matrix(0.160581,-0.002088,0.003250,0.249979,0,0);-ms-transform:matrix(0.160581,-0.002088,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160581,-0.002088,0.003250,0.249979,0,0);}
.m74_c00001{transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160595,0.000000,0.000000,0.250000,0,0);}
.m298d_c00001{transform:matrix(0.160649,-0.002570,0.003999,0.249968,0,0);-ms-transform:matrix(0.160649,-0.002570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160649,-0.002570,0.003999,0.249968,0,0);}
.m1e54_c00001{transform:matrix(0.160661,-0.004177,0.006498,0.249916,0,0);-ms-transform:matrix(0.160661,-0.004177,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160661,-0.004177,0.006498,0.249916,0,0);}
.m1bef_c00001{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m74f_c00001{transform:matrix(0.160707,0.004500,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160707,0.004500,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160707,0.004500,-0.006997,0.249902,0,0);}
.m96f_c00001{transform:matrix(0.160709,-0.006113,0.009503,0.249819,0,0);-ms-transform:matrix(0.160709,-0.006113,0.009503,0.249819,0,0);-webkit-transform:matrix(0.160709,-0.006113,0.009503,0.249819,0,0);}
.m77_c00001{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m320_c00001{transform:matrix(0.160721,-0.002089,0.003250,0.249979,0,0);-ms-transform:matrix(0.160721,-0.002089,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160721,-0.002089,0.003250,0.249979,0,0);}
.m454_c00001{transform:matrix(0.160747,-0.005310,0.008254,0.249864,0,0);-ms-transform:matrix(0.160747,-0.005310,0.008254,0.249864,0,0);-webkit-transform:matrix(0.160747,-0.005310,0.008254,0.249864,0,0);}
.ma7e_c00001{transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160760,0.000000,0.000000,0.250000,0,0);}
.m1183_c00001{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m2832_c00001{transform:matrix(0.160791,-0.002090,0.003250,0.249979,0,0);-ms-transform:matrix(0.160791,-0.002090,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160791,-0.002090,0.003250,0.249979,0,0);}
.me39_c00001{transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160810,0.000000,0.000000,0.250000,0,0);}
.m13ab_c00001{transform:matrix(0.160811,-0.004181,0.006498,0.249916,0,0);-ms-transform:matrix(0.160811,-0.004181,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160811,-0.004181,0.006498,0.249916,0,0);}
.m222c_c00001{transform:matrix(0.160811,-0.003538,0.005499,0.249940,0,0);-ms-transform:matrix(0.160811,-0.003538,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160811,-0.003538,0.005499,0.249940,0,0);}
.m193c_c00001{transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160815,0.000000,0.000000,0.250000,0,0);}
.mcc3_c00001{transform:matrix(0.160827,-0.004664,0.007247,0.249895,0,0);-ms-transform:matrix(0.160827,-0.004664,0.007247,0.249895,0,0);-webkit-transform:matrix(0.160827,-0.004664,0.007247,0.249895,0,0);}
.mcd8_c00001{transform:matrix(0.160842,-0.004664,0.007247,0.249895,0,0);-ms-transform:matrix(0.160842,-0.004664,0.007247,0.249895,0,0);-webkit-transform:matrix(0.160842,-0.004664,0.007247,0.249895,0,0);}
.m1cac_c00001{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mff3_c00001{transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160905,0.000000,0.000000,0.250000,0,0);}
.m1676_c00001{transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);}
.mba6_c00001{transform:matrix(0.160953,0.001931,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160953,0.001931,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160953,0.001931,-0.003000,0.249982,0,0);}
.m1b82_c00001{transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160960,0.000000,0.000000,0.250000,0,0);}
.m1910_c00001{transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160965,0.000000,0.000000,0.250000,0,0);}
.m2b0_c00001{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m10fa_c00001{transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);}
.m978_c00001{transform:matrix(0.161014,-0.006125,0.009503,0.249819,0,0);-ms-transform:matrix(0.161014,-0.006125,0.009503,0.249819,0,0);-webkit-transform:matrix(0.161014,-0.006125,0.009503,0.249819,0,0);}
.m13b8_c00001{transform:matrix(0.161021,-0.004187,0.006498,0.249916,0,0);-ms-transform:matrix(0.161021,-0.004187,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161021,-0.004187,0.006498,0.249916,0,0);}
.m1732_c00001{transform:matrix(0.161026,-0.004187,0.006498,0.249916,0,0);-ms-transform:matrix(0.161026,-0.004187,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161026,-0.004187,0.006498,0.249916,0,0);}
.m149_c00001{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m920_c00001{transform:matrix(0.161069,-0.006127,0.009503,0.249819,0,0);-ms-transform:matrix(0.161069,-0.006127,0.009503,0.249819,0,0);-webkit-transform:matrix(0.161069,-0.006127,0.009503,0.249819,0,0);}
.m72_c00001{transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161070,0.000000,0.000000,0.250000,0,0);}
.mfee_c00001{transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161080,0.000000,0.000000,0.250000,0,0);}
.m162e_c00001{transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161085,0.000000,0.000000,0.250000,0,0);}
.m16fe_c00001{transform:matrix(0.161091,-0.004188,0.006498,0.249916,0,0);-ms-transform:matrix(0.161091,-0.004188,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161091,-0.004188,0.006498,0.249916,0,0);}
.ma6e_c00001{transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161095,0.000000,0.000000,0.250000,0,0);}
.m19de_c00001{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m1ad3_c00001{transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161115,0.000000,0.000000,0.250000,0,0);}
.m1d78_c00001{transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161145,0.000000,0.000000,0.250000,0,0);}
.m27c1_c00001{transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);}
.m2024_c00001{transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);-ms-transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);-webkit-transform:matrix(0.161193,-0.004997,0.007746,0.249880,0,0);}
.m573_c00001{transform:matrix(0.161215,0.001773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161215,0.001773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161215,0.001773,-0.002750,0.249985,0,0);}
.m2811_c00001{transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);}
.mf3c_c00001{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m1a59_c00001{transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161295,0.000000,0.000000,0.250000,0,0);}
.m2348_c00001{transform:matrix(0.161314,0.002904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161314,0.002904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161314,0.002904,-0.004499,0.249960,0,0);}
.m18c6_c00001{transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161320,0.000000,0.000000,0.250000,0,0);}
.m1f41_c00001{transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);}
.ma5f_c00001{transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161340,0.000000,0.000000,0.250000,0,0);}
.m6aa_c00001{transform:matrix(0.161345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161345,0.000000,0.000000,0.250000,0,0);}
.m23c7_c00001{transform:matrix(0.161351,-0.003550,0.005499,0.249940,0,0);-ms-transform:matrix(0.161351,-0.003550,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161351,-0.003550,0.005499,0.249940,0,0);}
.m24e_c00001{transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161355,0.000000,0.000000,0.250000,0,0);}
.m2d4_c00001{transform:matrix(0.161355,-0.001775,0.002750,0.249985,0,0);-ms-transform:matrix(0.161355,-0.001775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161355,-0.001775,0.002750,0.249985,0,0);}
.m579_c00001{transform:matrix(0.161415,0.001776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161415,0.001776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161415,0.001776,-0.002750,0.249985,0,0);}
.m3cd_c00001{transform:matrix(0.161417,-0.004843,0.007497,0.249888,0,0);-ms-transform:matrix(0.161417,-0.004843,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161417,-0.004843,0.007497,0.249888,0,0);}
.m2240_c00001{transform:matrix(0.161434,-0.003390,0.005249,0.249945,0,0);-ms-transform:matrix(0.161434,-0.003390,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161434,-0.003390,0.005249,0.249945,0,0);}
.m583_c00001{transform:matrix(0.161480,0.001776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161480,0.001776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161480,0.001776,-0.002750,0.249985,0,0);}
.mfe9_c00001{transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161510,0.000000,0.000000,0.250000,0,0);}
.m1668_c00001{transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161530,0.000000,0.000000,0.250000,0,0);}
.m452_c00001{transform:matrix(0.161536,-0.003069,0.004749,0.249955,0,0);-ms-transform:matrix(0.161536,-0.003069,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161536,-0.003069,0.004749,0.249955,0,0);}
.m1dd7_c00001{transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161540,0.000000,0.000000,0.250000,0,0);}
.m18b6_c00001{transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161560,0.000000,0.000000,0.250000,0,0);}
.md98_c00001{transform:matrix(0.161568,0.001939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161568,0.001939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161568,0.001939,-0.003000,0.249982,0,0);}
.m20c0_c00001{transform:matrix(0.161610,0.004040,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161610,0.004040,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161610,0.004040,-0.006248,0.249922,0,0);}
.m375_c00001{transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);-ms-transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161611,-0.002101,0.003250,0.249979,0,0);}
.m2963_c00001{transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);}
.m264a_c00001{transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161660,0.000000,0.000000,0.250000,0,0);}
.m13fc_c00001{transform:matrix(0.161710,-0.004204,0.006498,0.249916,0,0);-ms-transform:matrix(0.161710,-0.004204,0.006498,0.249916,0,0);-webkit-transform:matrix(0.161710,-0.004204,0.006498,0.249916,0,0);}
.m23ce_c00001{transform:matrix(0.161726,-0.003558,0.005499,0.249940,0,0);-ms-transform:matrix(0.161726,-0.003558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161726,-0.003558,0.005499,0.249940,0,0);}
.m7dd_c00001{transform:matrix(0.161727,-0.004528,0.006997,0.249902,0,0);-ms-transform:matrix(0.161727,-0.004528,0.006997,0.249902,0,0);-webkit-transform:matrix(0.161727,-0.004528,0.006997,0.249902,0,0);}
.m437_c00001{transform:matrix(0.161741,-0.003073,0.004749,0.249955,0,0);-ms-transform:matrix(0.161741,-0.003073,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161741,-0.003073,0.004749,0.249955,0,0);}
.m70f_c00001{transform:matrix(0.161747,0.003720,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161747,0.003720,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161747,0.003720,-0.005748,0.249934,0,0);}
.m1de8_c00001{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m227c_c00001{transform:matrix(0.161767,-0.003721,0.005748,0.249934,0,0);-ms-transform:matrix(0.161767,-0.003721,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161767,-0.003721,0.005748,0.249934,0,0);}
.m278_c00001{transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161780,0.000000,0.000000,0.250000,0,0);}
.m273_c00001{transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161790,0.000000,0.000000,0.250000,0,0);}
.m675_c00001{transform:matrix(0.161809,-0.006641,0.010252,0.249790,0,0);-ms-transform:matrix(0.161809,-0.006641,0.010252,0.249790,0,0);-webkit-transform:matrix(0.161809,-0.006641,0.010252,0.249790,0,0);}
.m23d9_c00001{transform:matrix(0.161816,-0.003560,0.005499,0.249940,0,0);-ms-transform:matrix(0.161816,-0.003560,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161816,-0.003560,0.005499,0.249940,0,0);}
.m9f9_c00001{transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161855,0.000000,0.000000,0.250000,0,0);}
.m1985_c00001{transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161885,0.000000,0.000000,0.250000,0,0);}
.m938_c00001{transform:matrix(0.161888,-0.006158,0.009503,0.249819,0,0);-ms-transform:matrix(0.161888,-0.006158,0.009503,0.249819,0,0);-webkit-transform:matrix(0.161888,-0.006158,0.009503,0.249819,0,0);}
.m18fc_c00001{transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161895,0.000000,0.000000,0.250000,0,0);}
.m1d66_c00001{transform:matrix(0.161910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161910,0.000000,0.000000,0.250000,0,0);}
.m11dd_c00001{transform:matrix(0.161911,-0.003562,0.005499,0.249940,0,0);-ms-transform:matrix(0.161911,-0.003562,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161911,-0.003562,0.005499,0.249940,0,0);}
.mef8_c00001{transform:matrix(0.161941,0.002105,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161941,0.002105,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161941,0.002105,-0.003250,0.249979,0,0);}
.m1d2e_c00001{transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161955,0.000000,0.000000,0.250000,0,0);}
.m226a_c00001{transform:matrix(0.161959,-0.002915,0.004499,0.249960,0,0);-ms-transform:matrix(0.161959,-0.002915,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161959,-0.002915,0.004499,0.249960,0,0);}
.m2430_c00001{transform:matrix(0.161961,-0.003563,0.005499,0.249940,0,0);-ms-transform:matrix(0.161961,-0.003563,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161961,-0.003563,0.005499,0.249940,0,0);}
.m228f_c00001{transform:matrix(0.161966,-0.003563,0.005499,0.249940,0,0);-ms-transform:matrix(0.161966,-0.003563,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161966,-0.003563,0.005499,0.249940,0,0);}
.m23a4_c00001{transform:matrix(0.161971,-0.003563,0.005499,0.249940,0,0);-ms-transform:matrix(0.161971,-0.003563,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161971,-0.003563,0.005499,0.249940,0,0);}
.m2882_c00001{transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162005,0.000000,0.000000,0.250000,0,0);}
.ma0f_c00001{transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162015,0.000000,0.000000,0.250000,0,0);}
.m99e_c00001{transform:matrix(0.162018,-0.006163,0.009503,0.249819,0,0);-ms-transform:matrix(0.162018,-0.006163,0.009503,0.249819,0,0);-webkit-transform:matrix(0.162018,-0.006163,0.009503,0.249819,0,0);}
.med9_c00001{transform:matrix(0.162019,0.002268,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162019,0.002268,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162019,0.002268,-0.003500,0.249976,0,0);}
.m246e_c00001{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m2105_c00001{transform:matrix(0.162041,0.004537,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162041,0.004537,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162041,0.004537,-0.006997,0.249902,0,0);}
.m2077_c00001{transform:matrix(0.162057,-0.005024,0.007746,0.249880,0,0);-ms-transform:matrix(0.162057,-0.005024,0.007746,0.249880,0,0);-webkit-transform:matrix(0.162057,-0.005024,0.007746,0.249880,0,0);}
.m1c15_c00001{transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);}
.m7f1_c00001{transform:matrix(0.162121,-0.004539,0.006997,0.249902,0,0);-ms-transform:matrix(0.162121,-0.004539,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162121,-0.004539,0.006997,0.249902,0,0);}
.m2231_c00001{transform:matrix(0.162124,-0.003405,0.005249,0.249945,0,0);-ms-transform:matrix(0.162124,-0.003405,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162124,-0.003405,0.005249,0.249945,0,0);}
.maf7_c00001{transform:matrix(0.162161,-0.006331,0.009752,0.249810,0,0);-ms-transform:matrix(0.162161,-0.006331,0.009752,0.249810,0,0);-webkit-transform:matrix(0.162161,-0.006331,0.009752,0.249810,0,0);}
.m1c2c_c00001{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.m19f4_c00001{transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162215,0.000000,0.000000,0.250000,0,0);}
.m1adc_c00001{transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162245,0.000000,0.000000,0.250000,0,0);}
.m2526_c00001{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.me5f_c00001{transform:matrix(0.162254,0.002921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162254,0.002921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162254,0.002921,-0.004499,0.249960,0,0);}
.m3ec_c00001{transform:matrix(0.162276,-0.004544,0.006997,0.249902,0,0);-ms-transform:matrix(0.162276,-0.004544,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162276,-0.004544,0.006997,0.249902,0,0);}
.m655_c00001{transform:matrix(0.162278,-0.006660,0.010252,0.249790,0,0);-ms-transform:matrix(0.162278,-0.006660,0.010252,0.249790,0,0);-webkit-transform:matrix(0.162278,-0.006660,0.010252,0.249790,0,0);}
.m1042_c00001{transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162305,0.000000,0.000000,0.250000,0,0);}
.mbcf_c00001{transform:matrix(0.162310,0.001785,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162310,0.001785,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162310,0.001785,-0.002750,0.249985,0,0);}
.m1e8a_c00001{transform:matrix(0.162316,-0.003571,0.005499,0.249940,0,0);-ms-transform:matrix(0.162316,-0.003571,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162316,-0.003571,0.005499,0.249940,0,0);}
.m62d_c00001{transform:matrix(0.162325,-0.006987,0.010751,0.249769,0,0);-ms-transform:matrix(0.162325,-0.006987,0.010751,0.249769,0,0);-webkit-transform:matrix(0.162325,-0.006987,0.010751,0.249769,0,0);}
.m13cb_c00001{transform:matrix(0.162325,-0.004220,0.006498,0.249916,0,0);-ms-transform:matrix(0.162325,-0.004220,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162325,-0.004220,0.006498,0.249916,0,0);}
.m1b47_c00001{transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162355,0.000000,0.000000,0.250000,0,0);}
.m508_c00001{transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);}
.m29e0_c00001{transform:matrix(0.162357,-0.002760,0.004249,0.249964,0,0);-ms-transform:matrix(0.162357,-0.002760,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162357,-0.002760,0.004249,0.249964,0,0);}
.m1142_c00001{transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);}
.m23a_c00001{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.mfc0_c00001{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.m1218_c00001{transform:matrix(0.162416,-0.004385,0.006748,0.249909,0,0);-ms-transform:matrix(0.162416,-0.004385,0.006748,0.249909,0,0);-webkit-transform:matrix(0.162416,-0.004385,0.006748,0.249909,0,0);}
.m284f_c00001{transform:matrix(0.162426,-0.002112,0.003250,0.249979,0,0);-ms-transform:matrix(0.162426,-0.002112,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162426,-0.002112,0.003250,0.249979,0,0);}
.m17dc_c00001{transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162430,0.000000,0.000000,0.250000,0,0);}
.m15b2_c00001{transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162435,0.000000,0.000000,0.250000,0,0);}
.m49c_c00001{transform:matrix(0.162438,-0.006667,0.010252,0.249790,0,0);-ms-transform:matrix(0.162438,-0.006667,0.010252,0.249790,0,0);-webkit-transform:matrix(0.162438,-0.006667,0.010252,0.249790,0,0);}
.m1abd_c00001{transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162440,0.000000,0.000000,0.250000,0,0);}
.m14dc_c00001{transform:matrix(0.162481,0.005367,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162481,0.005367,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162481,0.005367,-0.008254,0.249864,0,0);}
.mb2_c00001{transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);}
.m2989_c00001{transform:matrix(0.162494,-0.002600,0.003999,0.249968,0,0);-ms-transform:matrix(0.162494,-0.002600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162494,-0.002600,0.003999,0.249968,0,0);}
.m174d_c00001{transform:matrix(0.162500,-0.004225,0.006498,0.249916,0,0);-ms-transform:matrix(0.162500,-0.004225,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162500,-0.004225,0.006498,0.249916,0,0);}
.m121b_c00001{transform:matrix(0.162501,-0.004388,0.006748,0.249909,0,0);-ms-transform:matrix(0.162501,-0.004388,0.006748,0.249909,0,0);-webkit-transform:matrix(0.162501,-0.004388,0.006748,0.249909,0,0);}
.m15cd_c00001{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.m933_c00001{transform:matrix(0.162512,-0.006182,0.009503,0.249819,0,0);-ms-transform:matrix(0.162512,-0.006182,0.009503,0.249819,0,0);-webkit-transform:matrix(0.162512,-0.006182,0.009503,0.249819,0,0);}
.mbe3_c00001{transform:matrix(0.162545,0.001788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162545,0.001788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162545,0.001788,-0.002750,0.249985,0,0);}
.m948_c00001{transform:matrix(0.162582,-0.006184,0.009503,0.249819,0,0);-ms-transform:matrix(0.162582,-0.006184,0.009503,0.249819,0,0);-webkit-transform:matrix(0.162582,-0.006184,0.009503,0.249819,0,0);}
.m58e_c00001{transform:matrix(0.162655,0.001789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162655,0.001789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162655,0.001789,-0.002750,0.249985,0,0);}
.m3d6_c00001{transform:matrix(0.162656,-0.004554,0.006997,0.249902,0,0);-ms-transform:matrix(0.162656,-0.004554,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162656,-0.004554,0.006997,0.249902,0,0);}
.mbe0_c00001{transform:matrix(0.162695,0.001790,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162695,0.001790,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162695,0.001790,-0.002750,0.249985,0,0);}
.m1503_c00001{transform:matrix(0.162726,0.005375,-0.008254,0.249864,0,0);-ms-transform:matrix(0.162726,0.005375,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.162726,0.005375,-0.008254,0.249864,0,0);}
.m567_c00001{transform:matrix(0.162765,0.001790,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162765,0.001790,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162765,0.001790,-0.002750,0.249985,0,0);}
.m118b_c00001{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m338_c00001{transform:matrix(0.162846,-0.002117,0.003250,0.249979,0,0);-ms-transform:matrix(0.162846,-0.002117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162846,-0.002117,0.003250,0.249979,0,0);}
.ma71_c00001{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m17e6_c00001{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m1c4e_c00001{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.m11b6_c00001{transform:matrix(0.162926,-0.003584,0.005499,0.249940,0,0);-ms-transform:matrix(0.162926,-0.003584,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162926,-0.003584,0.005499,0.249940,0,0);}
.m8ea_c00001{transform:matrix(0.162927,-0.006197,0.009503,0.249819,0,0);-ms-transform:matrix(0.162927,-0.006197,0.009503,0.249819,0,0);-webkit-transform:matrix(0.162927,-0.006197,0.009503,0.249819,0,0);}
.m274c_c00001{transform:matrix(0.162935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162935,0.000000,0.000000,0.250000,0,0);}
.m1f3e_c00001{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m32d_c00001{transform:matrix(0.162976,-0.002119,0.003250,0.249979,0,0);-ms-transform:matrix(0.162976,-0.002119,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162976,-0.002119,0.003250,0.249979,0,0);}
.m243d_c00001{transform:matrix(0.162996,-0.003586,0.005499,0.249940,0,0);-ms-transform:matrix(0.162996,-0.003586,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162996,-0.003586,0.005499,0.249940,0,0);}
.md05_c00001{transform:matrix(0.162996,-0.004727,0.007247,0.249895,0,0);-ms-transform:matrix(0.162996,-0.004727,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162996,-0.004727,0.007247,0.249895,0,0);}
.m1b83_c00001{transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163015,0.000000,0.000000,0.250000,0,0);}
.m385_c00001{transform:matrix(0.163016,-0.002119,0.003250,0.249979,0,0);-ms-transform:matrix(0.163016,-0.002119,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163016,-0.002119,0.003250,0.249979,0,0);}
.mb1a_c00001{transform:matrix(0.163046,-0.006365,0.009752,0.249810,0,0);-ms-transform:matrix(0.163046,-0.006365,0.009752,0.249810,0,0);-webkit-transform:matrix(0.163046,-0.006365,0.009752,0.249810,0,0);}
.m1f8e_c00001{transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163065,0.000000,0.000000,0.250000,0,0);}
.m12a3_c00001{transform:matrix(0.163066,0.003587,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163066,0.003587,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163066,0.003587,-0.005499,0.249940,0,0);}
.m21b1_c00001{transform:matrix(0.163087,-0.003751,0.005748,0.249934,0,0);-ms-transform:matrix(0.163087,-0.003751,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163087,-0.003751,0.005748,0.249934,0,0);}
.m7da_c00001{transform:matrix(0.163091,-0.004567,0.006997,0.249902,0,0);-ms-transform:matrix(0.163091,-0.004567,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163091,-0.004567,0.006997,0.249902,0,0);}
.m2904_c00001{transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163095,0.000000,0.000000,0.250000,0,0);}
.mbc1_c00001{transform:matrix(0.163100,0.001794,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163100,0.001794,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163100,0.001794,-0.002750,0.249985,0,0);}
.m459_c00001{transform:matrix(0.163101,-0.005388,0.008254,0.249864,0,0);-ms-transform:matrix(0.163101,-0.005388,0.008254,0.249864,0,0);-webkit-transform:matrix(0.163101,-0.005388,0.008254,0.249864,0,0);}
.m2484_c00001{transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163110,0.000000,0.000000,0.250000,0,0);}
.m168e_c00001{transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00001{transform:matrix(0.163171,-0.002121,0.003250,0.249979,0,0);-ms-transform:matrix(0.163171,-0.002121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163171,-0.002121,0.003250,0.249979,0,0);}
.m23c_c00001{transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163190,0.000000,0.000000,0.250000,0,0);}
.m17e9_c00001{transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);}
.m1a6c_c00001{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m21a8_c00001{transform:matrix(0.163227,-0.003754,0.005748,0.249934,0,0);-ms-transform:matrix(0.163227,-0.003754,0.005748,0.249934,0,0);-webkit-transform:matrix(0.163227,-0.003754,0.005748,0.249934,0,0);}
.m137d_c00001{transform:matrix(0.163230,-0.004244,0.006498,0.249916,0,0);-ms-transform:matrix(0.163230,-0.004244,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163230,-0.004244,0.006498,0.249916,0,0);}
.meb5_c00001{transform:matrix(0.163254,0.002286,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163254,0.002286,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163254,0.002286,-0.003500,0.249976,0,0);}
.m21ff_c00001{transform:matrix(0.163256,-0.003102,0.004749,0.249955,0,0);-ms-transform:matrix(0.163256,-0.003102,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163256,-0.003102,0.004749,0.249955,0,0);}
.m1319_c00001{transform:matrix(0.163285,0.004245,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163285,0.004245,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163285,0.004245,-0.006498,0.249916,0,0);}
.mfc2_c00001{transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163285,0.000000,0.000000,0.250000,0,0);}
.m599_c00001{transform:matrix(0.163285,0.001796,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163285,0.001796,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163285,0.001796,-0.002750,0.249985,0,0);}
.m1443_c00001{transform:matrix(0.163295,-0.004409,0.006748,0.249909,0,0);-ms-transform:matrix(0.163295,-0.004409,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163295,-0.004409,0.006748,0.249909,0,0);}
.m9ec_c00001{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m288a_c00001{transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163315,0.000000,0.000000,0.250000,0,0);}
.m10c6_c00001{transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);}
.m11e3_c00001{transform:matrix(0.163355,-0.003594,0.005499,0.249940,0,0);-ms-transform:matrix(0.163355,-0.003594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163355,-0.003594,0.005499,0.249940,0,0);}
.m23c2_c00001{transform:matrix(0.163375,-0.003594,0.005499,0.249940,0,0);-ms-transform:matrix(0.163375,-0.003594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163375,-0.003594,0.005499,0.249940,0,0);}
.m7c0_c00001{transform:matrix(0.163426,-0.004576,0.006997,0.249902,0,0);-ms-transform:matrix(0.163426,-0.004576,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163426,-0.004576,0.006997,0.249902,0,0);}
.m182b_c00001{transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163430,0.000000,0.000000,0.250000,0,0);}
.m1330_c00001{transform:matrix(0.163436,0.004740,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163436,0.004740,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163436,0.004740,-0.007247,0.249895,0,0);}
.m12d3_c00001{transform:matrix(0.163445,0.004413,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163445,0.004413,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163445,0.004413,-0.006748,0.249909,0,0);}
.made_c00001{transform:matrix(0.163445,-0.006381,0.009752,0.249810,0,0);-ms-transform:matrix(0.163445,-0.006381,0.009752,0.249810,0,0);-webkit-transform:matrix(0.163445,-0.006381,0.009752,0.249810,0,0);}
.m384_c00001{transform:matrix(0.163466,-0.002125,0.003250,0.249979,0,0);-ms-transform:matrix(0.163466,-0.002125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163466,-0.002125,0.003250,0.249979,0,0);}
.m1013_c00001{transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163470,0.000000,0.000000,0.250000,0,0);}
.m1cca_c00001{transform:matrix(0.163485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163485,0.000000,0.000000,0.250000,0,0);}
.m52d_c00001{transform:matrix(0.163495,0.001798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163495,0.001798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163495,0.001798,-0.002750,0.249985,0,0);}
.m15c3_c00001{transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163505,0.000000,0.000000,0.250000,0,0);}
.m7a3_c00001{transform:matrix(0.163511,-0.004578,0.006997,0.249902,0,0);-ms-transform:matrix(0.163511,-0.004578,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163511,-0.004578,0.006997,0.249902,0,0);}
.m1eed_c00001{transform:matrix(0.163515,-0.004251,0.006498,0.249916,0,0);-ms-transform:matrix(0.163515,-0.004251,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163515,-0.004251,0.006498,0.249916,0,0);}
.m1b93_c00001{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m2f3_c00001{transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);-ms-transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163541,-0.002126,0.003250,0.249979,0,0);}
.m1196_c00001{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m272e_c00001{transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163555,0.000000,0.000000,0.250000,0,0);}
.m1a4f_c00001{transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163560,0.000000,0.000000,0.250000,0,0);}
.m13fd_c00001{transform:matrix(0.163565,-0.004253,0.006498,0.249916,0,0);-ms-transform:matrix(0.163565,-0.004253,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163565,-0.004253,0.006498,0.249916,0,0);}
.m279f_c00001{transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163570,0.000000,0.000000,0.250000,0,0);}
.m15d5_c00001{transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163585,0.000000,0.000000,0.250000,0,0);}
.m1185_c00001{transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);}
.m1df4_c00001{transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);}
.m1a61_c00001{transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163715,0.000000,0.000000,0.250000,0,0);}
.m1275_c00001{transform:matrix(0.163715,-0.004420,0.006748,0.249909,0,0);-ms-transform:matrix(0.163715,-0.004420,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163715,-0.004420,0.006748,0.249909,0,0);}
.mc35_c00001{transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163720,0.000000,0.000000,0.250000,0,0);}
.m1f7a_c00001{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.ma10_c00001{transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163730,0.000000,0.000000,0.250000,0,0);}
.mc3f_c00001{transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163735,0.000000,0.000000,0.250000,0,0);}
.m70d_c00001{transform:matrix(0.163742,0.003766,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163742,0.003766,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163742,0.003766,-0.005748,0.249934,0,0);}
.m1610_c00001{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1c31_c00001{transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163755,0.000000,0.000000,0.250000,0,0);}
.m10c3_c00001{transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163760,0.000000,0.000000,0.250000,0,0);}
.ma2f_c00001{transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163765,0.000000,0.000000,0.250000,0,0);}
.m13b0_c00001{transform:matrix(0.163775,-0.004258,0.006498,0.249916,0,0);-ms-transform:matrix(0.163775,-0.004258,0.006498,0.249916,0,0);-webkit-transform:matrix(0.163775,-0.004258,0.006498,0.249916,0,0);}
.m110d_c00001{transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);}
.m272b_c00001{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.m370_c00001{transform:matrix(0.163806,-0.002129,0.003250,0.249979,0,0);-ms-transform:matrix(0.163806,-0.002129,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163806,-0.002129,0.003250,0.249979,0,0);}
.m1fae_c00001{transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163830,0.000000,0.000000,0.250000,0,0);}
.m934_c00001{transform:matrix(0.163847,-0.006232,0.009503,0.249819,0,0);-ms-transform:matrix(0.163847,-0.006232,0.009503,0.249819,0,0);-webkit-transform:matrix(0.163847,-0.006232,0.009503,0.249819,0,0);}
.m22b3_c00001{transform:matrix(0.163854,0.002622,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163854,0.002622,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163854,0.002622,-0.003999,0.249968,0,0);}
.m479_c00001{transform:matrix(0.163855,-0.005577,0.008504,0.249855,0,0);-ms-transform:matrix(0.163855,-0.005577,0.008504,0.249855,0,0);-webkit-transform:matrix(0.163855,-0.005577,0.008504,0.249855,0,0);}
.m28d1_c00001{transform:matrix(0.163863,0.001966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163863,0.001966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163863,0.001966,-0.003000,0.249982,0,0);}
.m19af_c00001{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m1f23_c00001{transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163930,0.000000,0.000000,0.250000,0,0);}
.m1189_c00001{transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163940,0.000000,0.000000,0.250000,0,0);}
.m1e18_c00001{transform:matrix(0.163943,-0.003935,0.005998,0.249928,0,0);-ms-transform:matrix(0.163943,-0.003935,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163943,-0.003935,0.005998,0.249928,0,0);}
.m15ee_c00001{transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163945,0.000000,0.000000,0.250000,0,0);}
.m11e2_c00001{transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);-ms-transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163945,-0.003607,0.005499,0.249940,0,0);}
.m147f_c00001{transform:matrix(0.163961,0.005416,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163961,0.005416,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163961,0.005416,-0.008254,0.249864,0,0);}
.m688_c00001{transform:matrix(0.163962,-0.006729,0.010252,0.249790,0,0);-ms-transform:matrix(0.163962,-0.006729,0.010252,0.249790,0,0);-webkit-transform:matrix(0.163962,-0.006729,0.010252,0.249790,0,0);}
.m25e_c00001{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m1f8d_c00001{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m1f99_c00001{transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163985,0.000000,0.000000,0.250000,0,0);}
.m6b5_c00001{transform:matrix(0.163992,0.003772,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163992,0.003772,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163992,0.003772,-0.005748,0.249934,0,0);}
.m6d1_c00001{transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164049,0.004101,-0.006248,0.249922,0,0);}
.m1aa2_c00001{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m1d9c_c00001{transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164095,0.000000,0.000000,0.250000,0,0);}
.m882_c00001{transform:matrix(0.164096,-0.006242,0.009503,0.249819,0,0);-ms-transform:matrix(0.164096,-0.006242,0.009503,0.249819,0,0);-webkit-transform:matrix(0.164096,-0.006242,0.009503,0.249819,0,0);}
.md6b_c00001{transform:matrix(0.164105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164105,0.000000,0.000000,0.250000,0,0);}
.m12c9_c00001{transform:matrix(0.164119,0.004103,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164119,0.004103,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164119,0.004103,-0.006248,0.249922,0,0);}
.m26fb_c00001{transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);}
.m7f2_c00001{transform:matrix(0.164131,-0.004596,0.006997,0.249902,0,0);-ms-transform:matrix(0.164131,-0.004596,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164131,-0.004596,0.006997,0.249902,0,0);}
.m4f4_c00001{transform:matrix(0.164135,0.001805,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164135,0.001805,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164135,0.001805,-0.002750,0.249985,0,0);}
.m1071_c00001{transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164140,0.000000,0.000000,0.250000,0,0);}
.m23d7_c00001{transform:matrix(0.164140,-0.003611,0.005499,0.249940,0,0);-ms-transform:matrix(0.164140,-0.003611,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164140,-0.003611,0.005499,0.249940,0,0);}
.m4d3_c00001{transform:matrix(0.164145,0.001806,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164145,0.001806,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164145,0.001806,-0.002750,0.249985,0,0);}
.m1a92_c00001{transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164165,0.000000,0.000000,0.250000,0,0);}
.m203b_c00001{transform:matrix(0.164171,-0.005089,0.007746,0.249880,0,0);-ms-transform:matrix(0.164171,-0.005089,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164171,-0.005089,0.007746,0.249880,0,0);}
.m36c_c00001{transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);-ms-transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164236,-0.002135,0.003250,0.249979,0,0);}
.m12b8_c00001{transform:matrix(0.164244,0.004106,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164244,0.004106,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164244,0.004106,-0.006248,0.249922,0,0);}
.m2ac_c00001{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m25cd_c00001{transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164255,0.000000,0.000000,0.250000,0,0);}
.mf1d_c00001{transform:matrix(0.164257,0.003285,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164257,0.003285,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164257,0.003285,-0.004999,0.249950,0,0);}
.m298c_c00001{transform:matrix(0.164259,-0.002628,0.003999,0.249968,0,0);-ms-transform:matrix(0.164259,-0.002628,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164259,-0.002628,0.003999,0.249968,0,0);}
.m1654_c00001{transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164280,0.000000,0.000000,0.250000,0,0);}
.md41_c00001{transform:matrix(0.164281,-0.004764,0.007247,0.249895,0,0);-ms-transform:matrix(0.164281,-0.004764,0.007247,0.249895,0,0);-webkit-transform:matrix(0.164281,-0.004764,0.007247,0.249895,0,0);}
.m256a_c00001{transform:matrix(0.164291,-0.002136,0.003250,0.249979,0,0);-ms-transform:matrix(0.164291,-0.002136,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164291,-0.002136,0.003250,0.249979,0,0);}
.m37b_c00001{transform:matrix(0.164336,-0.002136,0.003250,0.249979,0,0);-ms-transform:matrix(0.164336,-0.002136,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164336,-0.002136,0.003250,0.249979,0,0);}
.mc73_c00001{transform:matrix(0.164341,-0.004766,0.007247,0.249895,0,0);-ms-transform:matrix(0.164341,-0.004766,0.007247,0.249895,0,0);-webkit-transform:matrix(0.164341,-0.004766,0.007247,0.249895,0,0);}
.m1940_c00001{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m2853_c00001{transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);}
.m26ee_c00001{transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00001{transform:matrix(0.164372,-0.003781,0.005748,0.249934,0,0);-ms-transform:matrix(0.164372,-0.003781,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164372,-0.003781,0.005748,0.249934,0,0);}
.m14d2_c00001{transform:matrix(0.164375,0.005430,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164375,0.005430,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164375,0.005430,-0.008254,0.249864,0,0);}
.m19f6_c00001{transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164380,0.000000,0.000000,0.250000,0,0);}
.m215_c00001{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m123d_c00001{transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-ms-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164405,-0.004439,0.006748,0.249909,0,0);}
.m10d4_c00001{transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164415,0.000000,0.000000,0.250000,0,0);}
.mef_c00001{transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164420,0.000000,0.000000,0.250000,0,0);}
.m1cf1_c00001{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m1415_c00001{transform:matrix(0.164434,-0.004275,0.006498,0.249916,0,0);-ms-transform:matrix(0.164434,-0.004275,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164434,-0.004275,0.006498,0.249916,0,0);}
.m18fb_c00001{transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164465,0.000000,0.000000,0.250000,0,0);}
.m815_c00001{transform:matrix(0.164466,-0.004605,0.006997,0.249902,0,0);-ms-transform:matrix(0.164466,-0.004605,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164466,-0.004605,0.006997,0.249902,0,0);}
.m1d76_c00001{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m21b4_c00001{transform:matrix(0.164491,-0.003783,0.005748,0.249934,0,0);-ms-transform:matrix(0.164491,-0.003783,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164491,-0.003783,0.005748,0.249934,0,0);}
.m183b_c00001{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m657_c00001{transform:matrix(0.164576,-0.006754,0.010252,0.249790,0,0);-ms-transform:matrix(0.164576,-0.006754,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164576,-0.006754,0.010252,0.249790,0,0);}
.m1362_c00001{transform:matrix(0.164581,0.004773,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164581,0.004773,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164581,0.004773,-0.007247,0.249895,0,0);}
.m311_c00001{transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);-ms-transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164581,-0.002140,0.003250,0.249979,0,0);}
.m296a_c00001{transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164595,0.000000,0.000000,0.250000,0,0);}
.mb2c_c00001{transform:matrix(0.164610,-0.006426,0.009752,0.249810,0,0);-ms-transform:matrix(0.164610,-0.006426,0.009752,0.249810,0,0);-webkit-transform:matrix(0.164610,-0.006426,0.009752,0.249810,0,0);}
.m21_c00001{transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164620,0.000000,0.000000,0.250000,0,0);}
.m1bdd_c00001{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m33b_c00001{transform:matrix(0.164626,-0.002140,0.003250,0.249979,0,0);-ms-transform:matrix(0.164626,-0.002140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164626,-0.002140,0.003250,0.249979,0,0);}
.md7a_c00001{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m51d_c00001{transform:matrix(0.164655,0.001811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164655,0.001811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164655,0.001811,-0.002750,0.249985,0,0);}
.m1b40_c00001{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m151c_c00001{transform:matrix(0.164675,0.005440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164675,0.005440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164675,0.005440,-0.008254,0.249864,0,0);}
.me8f_c00001{transform:matrix(0.164679,0.002306,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164679,0.002306,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164679,0.002306,-0.003500,0.249976,0,0);}
.m1d48_c00001{transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164715,0.000000,0.000000,0.250000,0,0);}
.m335_c00001{transform:matrix(0.164716,-0.002141,0.003250,0.249979,0,0);-ms-transform:matrix(0.164716,-0.002141,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164716,-0.002141,0.003250,0.249979,0,0);}
.m34_c00001{transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164745,0.000000,0.000000,0.250000,0,0);}
.m50b_c00001{transform:matrix(0.164765,0.001812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164765,0.001812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164765,0.001812,-0.002750,0.249985,0,0);}
.m399_c00001{transform:matrix(0.164766,-0.002142,0.003250,0.249979,0,0);-ms-transform:matrix(0.164766,-0.002142,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164766,-0.002142,0.003250,0.249979,0,0);}
.m14ce_c00001{transform:matrix(0.164785,0.005443,-0.008254,0.249864,0,0);-ms-transform:matrix(0.164785,0.005443,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.164785,0.005443,-0.008254,0.249864,0,0);}
.m1df9_c00001{transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164790,0.000000,0.000000,0.250000,0,0);}
.m18ce_c00001{transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164795,0.000000,0.000000,0.250000,0,0);}
.m2131_c00001{transform:matrix(0.164820,0.004615,-0.006997,0.249902,0,0);-ms-transform:matrix(0.164820,0.004615,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.164820,0.004615,-0.006997,0.249902,0,0);}
.m103e_c00001{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.me9a_c00001{transform:matrix(0.164889,0.002308,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164889,0.002308,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164889,0.002308,-0.003500,0.249976,0,0);}
.m2a0_c00001{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m26ed_c00001{transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164905,0.000000,0.000000,0.250000,0,0);}
.m4d2_c00001{transform:matrix(0.164905,0.001814,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164905,0.001814,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164905,0.001814,-0.002750,0.249985,0,0);}
.m15c1_c00001{transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164915,0.000000,0.000000,0.250000,0,0);}
.m15d7_c00001{transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164955,0.000000,0.000000,0.250000,0,0);}
.m9a1_c00001{transform:matrix(0.164971,-0.006275,0.009503,0.249819,0,0);-ms-transform:matrix(0.164971,-0.006275,0.009503,0.249819,0,0);-webkit-transform:matrix(0.164971,-0.006275,0.009503,0.249819,0,0);}
.m1bfe_c00001{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m1630_c00001{transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164990,0.000000,0.000000,0.250000,0,0);}
.m1937_c00001{transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165015,0.000000,0.000000,0.250000,0,0);}
.mc92_c00001{transform:matrix(0.165051,-0.004786,0.007247,0.249895,0,0);-ms-transform:matrix(0.165051,-0.004786,0.007247,0.249895,0,0);-webkit-transform:matrix(0.165051,-0.004786,0.007247,0.249895,0,0);}
.mac1_c00001{transform:matrix(0.165054,-0.006444,0.009752,0.249810,0,0);-ms-transform:matrix(0.165054,-0.006444,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165054,-0.006444,0.009752,0.249810,0,0);}
.m30_c00001{transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165070,0.000000,0.000000,0.250000,0,0);}
.m1bba_c00001{transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);}
.m2255_c00001{transform:matrix(0.165106,-0.002807,0.004249,0.249964,0,0);-ms-transform:matrix(0.165106,-0.002807,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165106,-0.002807,0.004249,0.249964,0,0);}
.m81b_c00001{transform:matrix(0.165115,-0.004623,0.006997,0.249902,0,0);-ms-transform:matrix(0.165115,-0.004623,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165115,-0.004623,0.006997,0.249902,0,0);}
.m1e24_c00001{transform:matrix(0.165129,-0.004293,0.006498,0.249916,0,0);-ms-transform:matrix(0.165129,-0.004293,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165129,-0.004293,0.006498,0.249916,0,0);}
.m4e_c00001{transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165145,0.000000,0.000000,0.250000,0,0);}
.m1766_c00001{transform:matrix(0.165174,-0.004295,0.006498,0.249916,0,0);-ms-transform:matrix(0.165174,-0.004295,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165174,-0.004295,0.006498,0.249916,0,0);}
.me4a_c00001{transform:matrix(0.165193,0.002973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165193,0.002973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165193,0.002973,-0.004499,0.249960,0,0);}
.m362_c00001{transform:matrix(0.165196,-0.002148,0.003250,0.249979,0,0);-ms-transform:matrix(0.165196,-0.002148,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165196,-0.002148,0.003250,0.249979,0,0);}
.m1636_c00001{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.mae_c00001{transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165210,0.000000,0.000000,0.250000,0,0);}
.m147a_c00001{transform:matrix(0.165225,0.005458,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165225,0.005458,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165225,0.005458,-0.008254,0.249864,0,0);}
.m47d_c00001{transform:matrix(0.165276,-0.004958,0.007497,0.249888,0,0);-ms-transform:matrix(0.165276,-0.004958,0.007497,0.249888,0,0);-webkit-transform:matrix(0.165276,-0.004958,0.007497,0.249888,0,0);}
.m1f2_c00001{transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165285,0.000000,0.000000,0.250000,0,0);}
.m40b_c00001{transform:matrix(0.165294,-0.003471,0.005249,0.249945,0,0);-ms-transform:matrix(0.165294,-0.003471,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165294,-0.003471,0.005249,0.249945,0,0);}
.m8a9_c00001{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.m143c_c00001{transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);-ms-transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165300,-0.004463,0.006748,0.249909,0,0);}
.m258_c00001{transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165315,0.000000,0.000000,0.250000,0,0);}
.m2e6_c00001{transform:matrix(0.165326,-0.002149,0.003250,0.249979,0,0);-ms-transform:matrix(0.165326,-0.002149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165326,-0.002149,0.003250,0.249979,0,0);}
.m16d2_c00001{transform:matrix(0.165334,-0.005627,0.008504,0.249855,0,0);-ms-transform:matrix(0.165334,-0.005627,0.008504,0.249855,0,0);-webkit-transform:matrix(0.165334,-0.005627,0.008504,0.249855,0,0);}
.m664_c00001{transform:matrix(0.165336,-0.006786,0.010252,0.249790,0,0);-ms-transform:matrix(0.165336,-0.006786,0.010252,0.249790,0,0);-webkit-transform:matrix(0.165336,-0.006786,0.010252,0.249790,0,0);}
.m4b9_c00001{transform:matrix(0.165345,-0.005296,0.008004,0.249872,0,0);-ms-transform:matrix(0.165345,-0.005296,0.008004,0.249872,0,0);-webkit-transform:matrix(0.165345,-0.005296,0.008004,0.249872,0,0);}
.m5ed_c00001{transform:matrix(0.165374,-0.006953,0.010501,0.249779,0,0);-ms-transform:matrix(0.165374,-0.006953,0.010501,0.249779,0,0);-webkit-transform:matrix(0.165374,-0.006953,0.010501,0.249779,0,0);}
.m12e9_c00001{transform:matrix(0.165415,0.004466,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165415,0.004466,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165415,0.004466,-0.006748,0.249909,0,0);}
.m1f3f_c00001{transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165420,0.000000,0.000000,0.250000,0,0);}
.m17f9_c00001{transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165430,0.000000,0.000000,0.250000,0,0);}
.m1df5_c00001{transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);}
.m1745_c00001{transform:matrix(0.165454,-0.004302,0.006498,0.249916,0,0);-ms-transform:matrix(0.165454,-0.004302,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165454,-0.004302,0.006498,0.249916,0,0);}
.m1606_c00001{transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165465,0.000000,0.000000,0.250000,0,0);}
.m91d_c00001{transform:matrix(0.165470,-0.006294,0.009503,0.249819,0,0);-ms-transform:matrix(0.165470,-0.006294,0.009503,0.249819,0,0);-webkit-transform:matrix(0.165470,-0.006294,0.009503,0.249819,0,0);}
.m21e6_c00001{transform:matrix(0.165482,-0.003310,0.004999,0.249950,0,0);-ms-transform:matrix(0.165482,-0.003310,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165482,-0.003310,0.004999,0.249950,0,0);}
.mc33_c00001{transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165505,0.000000,0.000000,0.250000,0,0);}
.m1c0d_c00001{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m11b0_c00001{transform:matrix(0.165525,-0.003642,0.005499,0.249940,0,0);-ms-transform:matrix(0.165525,-0.003642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165525,-0.003642,0.005499,0.249940,0,0);}
.m1d46_c00001{transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165535,0.000000,0.000000,0.250000,0,0);}
.m1065_c00001{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m1e50_c00001{transform:matrix(0.165549,-0.004304,0.006498,0.249916,0,0);-ms-transform:matrix(0.165549,-0.004304,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165549,-0.004304,0.006498,0.249916,0,0);}
.m33c_c00001{transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);-ms-transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165566,-0.002152,0.003250,0.249979,0,0);}
.m710_c00001{transform:matrix(0.165566,0.003808,-0.005748,0.249934,0,0);-ms-transform:matrix(0.165566,0.003808,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.165566,0.003808,-0.005748,0.249934,0,0);}
.m96e_c00001{transform:matrix(0.165580,-0.006298,0.009503,0.249819,0,0);-ms-transform:matrix(0.165580,-0.006298,0.009503,0.249819,0,0);-webkit-transform:matrix(0.165580,-0.006298,0.009503,0.249819,0,0);}
.m239_c00001{transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165585,0.000000,0.000000,0.250000,0,0);}
.m4e4_c00001{transform:matrix(0.165590,0.001821,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165590,0.001821,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165590,0.001821,-0.002750,0.249985,0,0);}
.m18d9_c00001{transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165595,0.000000,0.000000,0.250000,0,0);}
.m526_c00001{transform:matrix(0.165620,0.001822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165620,0.001822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165620,0.001822,-0.002750,0.249985,0,0);}
.mceb_c00001{transform:matrix(0.165635,-0.004803,0.007247,0.249895,0,0);-ms-transform:matrix(0.165635,-0.004803,0.007247,0.249895,0,0);-webkit-transform:matrix(0.165635,-0.004803,0.007247,0.249895,0,0);}
.ma86_c00001{transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);}
.m1b23_c00001{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m21d8_c00001{transform:matrix(0.165652,-0.003976,0.005998,0.249928,0,0);-ms-transform:matrix(0.165652,-0.003976,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165652,-0.003976,0.005998,0.249928,0,0);}
.m2524_c00001{transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);}
.m18f6_c00001{transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165660,0.000000,0.000000,0.250000,0,0);}
.mccf_c00001{transform:matrix(0.165665,-0.004804,0.007247,0.249895,0,0);-ms-transform:matrix(0.165665,-0.004804,0.007247,0.249895,0,0);-webkit-transform:matrix(0.165665,-0.004804,0.007247,0.249895,0,0);}
.m2527_c00001{transform:matrix(0.165715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165715,0.000000,0.000000,0.250000,0,0);}
.m438_c00001{transform:matrix(0.165715,-0.003149,0.004749,0.249955,0,0);-ms-transform:matrix(0.165715,-0.003149,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165715,-0.003149,0.004749,0.249955,0,0);}
.mad6_c00001{transform:matrix(0.165724,-0.006470,0.009752,0.249810,0,0);-ms-transform:matrix(0.165724,-0.006470,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165724,-0.006470,0.009752,0.249810,0,0);}
.m8d5_c00001{transform:matrix(0.165737,-0.003978,0.005998,0.249928,0,0);-ms-transform:matrix(0.165737,-0.003978,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165737,-0.003978,0.005998,0.249928,0,0);}
.mb3a_c00001{transform:matrix(0.165744,-0.006470,0.009752,0.249810,0,0);-ms-transform:matrix(0.165744,-0.006470,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165744,-0.006470,0.009752,0.249810,0,0);}
.m291_c00001{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m1f85_c00001{transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165755,0.000000,0.000000,0.250000,0,0);}
.ma36_c00001{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m7eb_c00001{transform:matrix(0.165775,-0.004642,0.006997,0.249902,0,0);-ms-transform:matrix(0.165775,-0.004642,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165775,-0.004642,0.006997,0.249902,0,0);}
.m2fe_c00001{transform:matrix(0.165776,-0.002155,0.003250,0.249979,0,0);-ms-transform:matrix(0.165776,-0.002155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165776,-0.002155,0.003250,0.249979,0,0);}
.m18aa_c00001{transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165790,0.000000,0.000000,0.250000,0,0);}
.m1839_c00001{transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165805,0.000000,0.000000,0.250000,0,0);}
.m364_c00001{transform:matrix(0.165821,-0.002156,0.003250,0.249979,0,0);-ms-transform:matrix(0.165821,-0.002156,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165821,-0.002156,0.003250,0.249979,0,0);}
.m1fdd_c00001{transform:matrix(0.165823,-0.004146,0.006248,0.249922,0,0);-ms-transform:matrix(0.165823,-0.004146,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165823,-0.004146,0.006248,0.249922,0,0);}
.m1ea0_c00001{transform:matrix(0.165824,-0.004311,0.006498,0.249916,0,0);-ms-transform:matrix(0.165824,-0.004311,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165824,-0.004311,0.006498,0.249916,0,0);}
.m1a98_c00001{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m50e_c00001{transform:matrix(0.165850,0.001824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165850,0.001824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165850,0.001824,-0.002750,0.249985,0,0);}
.ma49_c00001{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m18ee_c00001{transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165880,0.000000,0.000000,0.250000,0,0);}
.m653_c00001{transform:matrix(0.165895,-0.006809,0.010252,0.249790,0,0);-ms-transform:matrix(0.165895,-0.006809,0.010252,0.249790,0,0);-webkit-transform:matrix(0.165895,-0.006809,0.010252,0.249790,0,0);}
.m1bcd_c00001{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m1f3c_c00001{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m133_c00001{transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);}
.m16f1_c00001{transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);-ms-transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);}
.m212b_c00001{transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165925,0.004646,-0.006997,0.249902,0,0);}
.m800_c00001{transform:matrix(0.165925,-0.004646,0.006997,0.249902,0,0);-ms-transform:matrix(0.165925,-0.004646,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165925,-0.004646,0.006997,0.249902,0,0);}
.m25de_c00001{transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165930,0.000000,0.000000,0.250000,0,0);}
.m1462_c00001{transform:matrix(0.165955,0.006313,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165955,0.006313,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165955,0.006313,-0.009503,0.249819,0,0);}
.m3ea_c00001{transform:matrix(0.165960,-0.004647,0.006997,0.249902,0,0);-ms-transform:matrix(0.165960,-0.004647,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165960,-0.004647,0.006997,0.249902,0,0);}
.m261a_c00001{transform:matrix(0.165960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165960,0.000000,0.000000,0.250000,0,0);}
.m18b8_c00001{transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165970,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.165972,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.165972,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165972,-0.001660,0.002500,0.249988,0,0);}
.m1ab2_c00001{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m169_c00001{transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165985,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.165997,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.165997,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165997,-0.001660,0.002500,0.249988,0,0);}
.maeb_c00001{transform:matrix(0.165999,-0.006480,0.009752,0.249810,0,0);-ms-transform:matrix(0.165999,-0.006480,0.009752,0.249810,0,0);-webkit-transform:matrix(0.165999,-0.006480,0.009752,0.249810,0,0);}
.m1f49_c00001{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m21d9_c00001{transform:matrix(0.166012,-0.003984,0.005998,0.249928,0,0);-ms-transform:matrix(0.166012,-0.003984,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166012,-0.003984,0.005998,0.249928,0,0);}
.m1e14_c00001{transform:matrix(0.166022,-0.003985,0.005998,0.249928,0,0);-ms-transform:matrix(0.166022,-0.003985,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166022,-0.003985,0.005998,0.249928,0,0);}
.mc6b_c00001{transform:matrix(0.166030,-0.004815,0.007247,0.249895,0,0);-ms-transform:matrix(0.166030,-0.004815,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166030,-0.004815,0.007247,0.249895,0,0);}
.m2398_c00001{transform:matrix(0.166054,-0.004317,0.006498,0.249916,0,0);-ms-transform:matrix(0.166054,-0.004317,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166054,-0.004317,0.006498,0.249916,0,0);}
.m12ea_c00001{transform:matrix(0.166089,0.004484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166089,0.004484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166089,0.004484,-0.006748,0.249909,0,0);}
.ma20_c00001{transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166090,0.000000,0.000000,0.250000,0,0);}
.m407_c00001{transform:matrix(0.166103,-0.003488,0.005249,0.249945,0,0);-ms-transform:matrix(0.166103,-0.003488,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166103,-0.003488,0.005249,0.249945,0,0);}
.m17e1_c00001{transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166110,0.000000,0.000000,0.250000,0,0);}
.m656_c00001{transform:matrix(0.166120,-0.006818,0.010252,0.249790,0,0);-ms-transform:matrix(0.166120,-0.006818,0.010252,0.249790,0,0);-webkit-transform:matrix(0.166120,-0.006818,0.010252,0.249790,0,0);}
.m1136_c00001{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m1ff0_c00001{transform:matrix(0.166133,-0.004153,0.006248,0.249922,0,0);-ms-transform:matrix(0.166133,-0.004153,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166133,-0.004153,0.006248,0.249922,0,0);}
.m926_c00001{transform:matrix(0.166150,-0.006320,0.009503,0.249819,0,0);-ms-transform:matrix(0.166150,-0.006320,0.009503,0.249819,0,0);-webkit-transform:matrix(0.166150,-0.006320,0.009503,0.249819,0,0);}
.m13b1_c00001{transform:matrix(0.166159,-0.004320,0.006498,0.249916,0,0);-ms-transform:matrix(0.166159,-0.004320,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166159,-0.004320,0.006498,0.249916,0,0);}
.m1f18_c00001{transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166220,0.000000,0.000000,0.250000,0,0);}
.m1938_c00001{transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166230,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.m228c_c00001{transform:matrix(0.166250,-0.003657,0.005499,0.249940,0,0);-ms-transform:matrix(0.166250,-0.003657,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166250,-0.003657,0.005499,0.249940,0,0);}
.m1f21_c00001{transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166260,0.000000,0.000000,0.250000,0,0);}
.m37e_c00001{transform:matrix(0.166261,-0.002161,0.003250,0.249979,0,0);-ms-transform:matrix(0.166261,-0.002161,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166261,-0.002161,0.003250,0.249979,0,0);}
.m12a0_c00001{transform:matrix(0.166265,0.003658,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166265,0.003658,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166265,0.003658,-0.005499,0.249940,0,0);}
.m1b2c_c00001{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m1aa3_c00001{transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166290,0.000000,0.000000,0.250000,0,0);}
.mbff_c00001{transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166310,0.000000,0.000000,0.250000,0,0);}
.m679_c00001{transform:matrix(0.166315,-0.006826,0.010252,0.249790,0,0);-ms-transform:matrix(0.166315,-0.006826,0.010252,0.249790,0,0);-webkit-transform:matrix(0.166315,-0.006826,0.010252,0.249790,0,0);}
.m11cb_c00001{transform:matrix(0.166350,-0.003660,0.005499,0.249940,0,0);-ms-transform:matrix(0.166350,-0.003660,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166350,-0.003660,0.005499,0.249940,0,0);}
.m1d43_c00001{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m1a09_c00001{transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166380,0.000000,0.000000,0.250000,0,0);}
.m1df8_c00001{transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);}
.m1e81_c00001{transform:matrix(0.166389,-0.004326,0.006498,0.249916,0,0);-ms-transform:matrix(0.166389,-0.004326,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166389,-0.004326,0.006498,0.249916,0,0);}
.m27b9_c00001{transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);}
.m1538_c00001{transform:matrix(0.166419,0.005497,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166419,0.005497,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166419,0.005497,-0.008254,0.249864,0,0);}
.ma55_c00001{transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166420,0.000000,0.000000,0.250000,0,0);}
.m2299_c00001{transform:matrix(0.166465,-0.003163,0.004749,0.249955,0,0);-ms-transform:matrix(0.166465,-0.003163,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166465,-0.003163,0.004749,0.249955,0,0);}
.m223_c00001{transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166465,0.000000,0.000000,0.250000,0,0);}
.m4d1_c00001{transform:matrix(0.166480,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166480,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166480,0.001831,-0.002750,0.249985,0,0);}
.m94d_c00001{transform:matrix(0.166485,-0.006333,0.009503,0.249819,0,0);-ms-transform:matrix(0.166485,-0.006333,0.009503,0.249819,0,0);-webkit-transform:matrix(0.166485,-0.006333,0.009503,0.249819,0,0);}
.m20b8_c00001{transform:matrix(0.166488,0.004162,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166488,0.004162,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166488,0.004162,-0.006248,0.249922,0,0);}
.m20b2_c00001{transform:matrix(0.166493,0.004162,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166493,0.004162,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166493,0.004162,-0.006248,0.249922,0,0);}
.m1171_c00001{transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166495,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00001{transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166505,0.000000,0.000000,0.250000,0,0);}
.m2659_c00001{transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);}
.m1085_c00001{transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);}
.m2547_c00001{transform:matrix(0.166541,-0.002498,0.003750,0.249972,0,0);-ms-transform:matrix(0.166541,-0.002498,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166541,-0.002498,0.003750,0.249972,0,0);}
.m9ff_c00001{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m4ee_c00001{transform:matrix(0.166555,0.001832,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166555,0.001832,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166555,0.001832,-0.002750,0.249985,0,0);}
.mdab_c00001{transform:matrix(0.166585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166585,0.000000,0.000000,0.250000,0,0);}
.m2416_c00001{transform:matrix(0.166590,-0.003665,0.005499,0.249940,0,0);-ms-transform:matrix(0.166590,-0.003665,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166590,-0.003665,0.005499,0.249940,0,0);}
.md29_c00001{transform:matrix(0.166610,-0.004832,0.007247,0.249895,0,0);-ms-transform:matrix(0.166610,-0.004832,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166610,-0.004832,0.007247,0.249895,0,0);}
.m26d4_c00001{transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166645,0.000000,0.000000,0.250000,0,0);}
.m478_c00001{transform:matrix(0.166659,-0.005672,0.008504,0.249855,0,0);-ms-transform:matrix(0.166659,-0.005672,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166659,-0.005672,0.008504,0.249855,0,0);}
.m1484_c00001{transform:matrix(0.166684,0.005506,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166684,0.005506,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166684,0.005506,-0.008254,0.249864,0,0);}
.mdf0_c00001{transform:matrix(0.166695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166695,0.000000,0.000000,0.250000,0,0);}
.md1f_c00001{transform:matrix(0.166715,-0.004835,0.007247,0.249895,0,0);-ms-transform:matrix(0.166715,-0.004835,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166715,-0.004835,0.007247,0.249895,0,0);}
.m8e_c00001{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.mf7d_c00001{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m52c_c00001{transform:matrix(0.166740,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166740,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166740,0.001834,-0.002750,0.249985,0,0);}
.m183d_c00001{transform:matrix(0.166745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166745,0.000000,0.000000,0.250000,0,0);}
.m1e31_c00001{transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);-ms-transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166749,-0.004335,0.006498,0.249916,0,0);}
.m18d_c00001{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1fcf_c00001{transform:matrix(0.166753,-0.004169,0.006248,0.249922,0,0);-ms-transform:matrix(0.166753,-0.004169,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166753,-0.004169,0.006248,0.249922,0,0);}
.mad5_c00001{transform:matrix(0.166753,-0.006510,0.009752,0.249810,0,0);-ms-transform:matrix(0.166753,-0.006510,0.009752,0.249810,0,0);-webkit-transform:matrix(0.166753,-0.006510,0.009752,0.249810,0,0);}
.m2396_c00001{transform:matrix(0.166754,-0.004336,0.006498,0.249916,0,0);-ms-transform:matrix(0.166754,-0.004336,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166754,-0.004336,0.006498,0.249916,0,0);}
.m255_c00001{transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166755,0.000000,0.000000,0.250000,0,0);}
.mcb8_c00001{transform:matrix(0.166760,-0.004836,0.007247,0.249895,0,0);-ms-transform:matrix(0.166760,-0.004836,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166760,-0.004836,0.007247,0.249895,0,0);}
.m1625_c00001{transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166760,0.000000,0.000000,0.250000,0,0);}
.md93_c00001{transform:matrix(0.166763,0.002001,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166763,0.002001,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166763,0.002001,-0.003000,0.249982,0,0);}
.m1d4c_c00001{transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166785,0.000000,0.000000,0.250000,0,0);}
.m1fc3_c00001{transform:matrix(0.166808,-0.004170,0.006248,0.249922,0,0);-ms-transform:matrix(0.166808,-0.004170,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166808,-0.004170,0.006248,0.249922,0,0);}
.m4c7_c00001{transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);}
.m17f7_c00001{transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166815,0.000000,0.000000,0.250000,0,0);}
.ma2_c00001{transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166830,0.000000,0.000000,0.250000,0,0);}
.m75f_c00001{transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);}
.mc6_c00001{transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166845,0.000000,0.000000,0.250000,0,0);}
.m16f9_c00001{transform:matrix(0.166889,-0.004339,0.006498,0.249916,0,0);-ms-transform:matrix(0.166889,-0.004339,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166889,-0.004339,0.006498,0.249916,0,0);}
.m2254_c00001{transform:matrix(0.166906,-0.002837,0.004249,0.249964,0,0);-ms-transform:matrix(0.166906,-0.002837,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166906,-0.002837,0.004249,0.249964,0,0);}
.mb56_c00001{transform:matrix(0.166918,-0.006516,0.009752,0.249810,0,0);-ms-transform:matrix(0.166918,-0.006516,0.009752,0.249810,0,0);-webkit-transform:matrix(0.166918,-0.006516,0.009752,0.249810,0,0);}
.m1c8a_c00001{transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166930,0.000000,0.000000,0.250000,0,0);}
.m1c9a_c00001{transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166945,0.000000,0.000000,0.250000,0,0);}
.m2886_c00001{transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166955,0.000000,0.000000,0.250000,0,0);}
.m4ec_c00001{transform:matrix(0.166960,0.001837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166960,0.001837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166960,0.001837,-0.002750,0.249985,0,0);}
.m153e_c00001{transform:matrix(0.166964,0.005515,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166964,0.005515,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166964,0.005515,-0.008254,0.249864,0,0);}
.m16fa_c00001{transform:matrix(0.166969,-0.004341,0.006498,0.249916,0,0);-ms-transform:matrix(0.166969,-0.004341,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166969,-0.004341,0.006498,0.249916,0,0);}
.m21ec_c00001{transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);-ms-transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167015,-0.003173,0.004749,0.249955,0,0);}
.m894_c00001{transform:matrix(0.167030,-0.003174,0.004749,0.249955,0,0);-ms-transform:matrix(0.167030,-0.003174,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167030,-0.003174,0.004749,0.249955,0,0);}
.m181b_c00001{transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167040,0.000000,0.000000,0.250000,0,0);}
.m24fd_c00001{transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167045,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167055,0.000000,0.000000,0.250000,0,0);}
.m1e69_c00001{transform:matrix(0.167059,-0.004344,0.006498,0.249916,0,0);-ms-transform:matrix(0.167059,-0.004344,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167059,-0.004344,0.006498,0.249916,0,0);}
.ma8f_c00001{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m20d_c00001{transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167065,0.000000,0.000000,0.250000,0,0);}
.m182e_c00001{transform:matrix(0.167080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167080,0.000000,0.000000,0.250000,0,0);}
.md37_c00001{transform:matrix(0.167090,-0.004846,0.007247,0.249895,0,0);-ms-transform:matrix(0.167090,-0.004846,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167090,-0.004846,0.007247,0.249895,0,0);}
.m29_c00001{transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167090,0.000000,0.000000,0.250000,0,0);}
.m119a_c00001{transform:matrix(0.167095,-0.003676,0.005499,0.249940,0,0);-ms-transform:matrix(0.167095,-0.003676,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167095,-0.003676,0.005499,0.249940,0,0);}
.mac6_c00001{transform:matrix(0.167098,-0.006523,0.009752,0.249810,0,0);-ms-transform:matrix(0.167098,-0.006523,0.009752,0.249810,0,0);-webkit-transform:matrix(0.167098,-0.006523,0.009752,0.249810,0,0);}
.m163a_c00001{transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167115,0.000000,0.000000,0.250000,0,0);}
.m1022_c00001{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.m4e3_c00001{transform:matrix(0.167130,0.001838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167130,0.001838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167130,0.001838,-0.002750,0.249985,0,0);}
.mf33_c00001{transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167130,0.000000,0.000000,0.250000,0,0);}
.m1b90_c00001{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m5e5_c00001{transform:matrix(0.167156,-0.007530,0.011250,0.249747,0,0);-ms-transform:matrix(0.167156,-0.007530,0.011250,0.249747,0,0);-webkit-transform:matrix(0.167156,-0.007530,0.011250,0.249747,0,0);}
.m248_c00001{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m1cef_c00001{transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167190,0.000000,0.000000,0.250000,0,0);}
.m8b3_c00001{transform:matrix(0.167195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167195,0.000000,0.000000,0.250000,0,0);}
.m1e1d_c00001{transform:matrix(0.167203,-0.004347,0.006498,0.249916,0,0);-ms-transform:matrix(0.167203,-0.004347,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167203,-0.004347,0.006498,0.249916,0,0);}
.m1ac2_c00001{transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167210,0.000000,0.000000,0.250000,0,0);}
.m2850_c00001{transform:matrix(0.167211,-0.002174,0.003250,0.249979,0,0);-ms-transform:matrix(0.167211,-0.002174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167211,-0.002174,0.003250,0.249979,0,0);}
.m2d9_c00001{transform:matrix(0.167215,-0.001839,0.002750,0.249985,0,0);-ms-transform:matrix(0.167215,-0.001839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167215,-0.001839,0.002750,0.249985,0,0);}
.m152f_c00001{transform:matrix(0.167224,0.005524,-0.008254,0.249864,0,0);-ms-transform:matrix(0.167224,0.005524,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.167224,0.005524,-0.008254,0.249864,0,0);}
.mc8c_c00001{transform:matrix(0.167235,-0.004850,0.007247,0.249895,0,0);-ms-transform:matrix(0.167235,-0.004850,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167235,-0.004850,0.007247,0.249895,0,0);}
.m83_c00001{transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167265,0.000000,0.000000,0.250000,0,0);}
.m68e_c00001{transform:matrix(0.167269,-0.006865,0.010252,0.249790,0,0);-ms-transform:matrix(0.167269,-0.006865,0.010252,0.249790,0,0);-webkit-transform:matrix(0.167269,-0.006865,0.010252,0.249790,0,0);}
.m1166_c00001{transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167270,0.000000,0.000000,0.250000,0,0);}
.m2531_c00001{transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);}
.m16ca_c00001{transform:matrix(0.167308,-0.005694,0.008504,0.249855,0,0);-ms-transform:matrix(0.167308,-0.005694,0.008504,0.249855,0,0);-webkit-transform:matrix(0.167308,-0.005694,0.008504,0.249855,0,0);}
.m202b_c00001{transform:matrix(0.167330,-0.005187,0.007746,0.249880,0,0);-ms-transform:matrix(0.167330,-0.005187,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167330,-0.005187,0.007746,0.249880,0,0);}
.m62e_c00001{transform:matrix(0.167340,-0.007203,0.010751,0.249769,0,0);-ms-transform:matrix(0.167340,-0.007203,0.010751,0.249769,0,0);-webkit-transform:matrix(0.167340,-0.007203,0.010751,0.249769,0,0);}
.mb9a_c00001{transform:matrix(0.167348,0.002008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167348,0.002008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167348,0.002008,-0.003000,0.249982,0,0);}
.ma39_c00001{transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167360,0.000000,0.000000,0.250000,0,0);}
.m1271_c00001{transform:matrix(0.167454,-0.004521,0.006748,0.249909,0,0);-ms-transform:matrix(0.167454,-0.004521,0.006748,0.249909,0,0);-webkit-transform:matrix(0.167454,-0.004521,0.006748,0.249909,0,0);}
.m20fc_c00001{transform:matrix(0.167464,0.004689,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167464,0.004689,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167464,0.004689,-0.006997,0.249902,0,0);}
.m1b79_c00001{transform:matrix(0.167465,-0.003182,0.004749,0.249955,0,0);-ms-transform:matrix(0.167465,-0.003182,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167465,-0.003182,0.004749,0.249955,0,0);}
.m256f_c00001{transform:matrix(0.167476,-0.002177,0.003250,0.249979,0,0);-ms-transform:matrix(0.167476,-0.002177,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167476,-0.002177,0.003250,0.249979,0,0);}
.m81c_c00001{transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);-ms-transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167489,-0.004690,0.006997,0.249902,0,0);}
.m1b5c_c00001{transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167495,0.000000,0.000000,0.250000,0,0);}
.mb20_c00001{transform:matrix(0.167502,-0.006539,0.009752,0.249810,0,0);-ms-transform:matrix(0.167502,-0.006539,0.009752,0.249810,0,0);-webkit-transform:matrix(0.167502,-0.006539,0.009752,0.249810,0,0);}
.m1e86_c00001{transform:matrix(0.167504,-0.003685,0.005499,0.249940,0,0);-ms-transform:matrix(0.167504,-0.003685,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167504,-0.003685,0.005499,0.249940,0,0);}
.m998_c00001{transform:matrix(0.167514,-0.006372,0.009503,0.249819,0,0);-ms-transform:matrix(0.167514,-0.006372,0.009503,0.249819,0,0);-webkit-transform:matrix(0.167514,-0.006372,0.009503,0.249819,0,0);}
.m1bac_c00001{transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);}
.m525_c00001{transform:matrix(0.167540,0.001843,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167540,0.001843,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167540,0.001843,-0.002750,0.249985,0,0);}
.m16fb_c00001{transform:matrix(0.167578,-0.004357,0.006498,0.249916,0,0);-ms-transform:matrix(0.167578,-0.004357,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167578,-0.004357,0.006498,0.249916,0,0);}
.md5c_c00001{transform:matrix(0.167590,-0.004860,0.007247,0.249895,0,0);-ms-transform:matrix(0.167590,-0.004860,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167590,-0.004860,0.007247,0.249895,0,0);}
.m217d_c00001{transform:matrix(0.167604,0.004693,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167604,0.004693,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167604,0.004693,-0.006997,0.249902,0,0);}
.m1ff1_c00001{transform:matrix(0.167608,-0.004190,0.006248,0.249922,0,0);-ms-transform:matrix(0.167608,-0.004190,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167608,-0.004190,0.006248,0.249922,0,0);}
.m2123_c00001{transform:matrix(0.167614,0.004693,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167614,0.004693,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167614,0.004693,-0.006997,0.249902,0,0);}
.mb5c_c00001{transform:matrix(0.167622,-0.006544,0.009752,0.249810,0,0);-ms-transform:matrix(0.167622,-0.006544,0.009752,0.249810,0,0);-webkit-transform:matrix(0.167622,-0.006544,0.009752,0.249810,0,0);}
.m24f1_c00001{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m505_c00001{transform:matrix(0.167630,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167630,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167630,0.001844,-0.002750,0.249985,0,0);}
.mc23_c00001{transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);}
.m13da_c00001{transform:matrix(0.167638,-0.004359,0.006498,0.249916,0,0);-ms-transform:matrix(0.167638,-0.004359,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167638,-0.004359,0.006498,0.249916,0,0);}
.m7ea_c00001{transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);-ms-transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167654,-0.004694,0.006997,0.249902,0,0);}
.m12b9_c00001{transform:matrix(0.167663,0.004192,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167663,0.004192,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167663,0.004192,-0.006248,0.249922,0,0);}
.m99d_c00001{transform:matrix(0.167664,-0.006378,0.009503,0.249819,0,0);-ms-transform:matrix(0.167664,-0.006378,0.009503,0.249819,0,0);-webkit-transform:matrix(0.167664,-0.006378,0.009503,0.249819,0,0);}
.m15f3_c00001{transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167670,0.000000,0.000000,0.250000,0,0);}
.m2665_c00001{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m2605_c00001{transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);}
.m1feb_c00001{transform:matrix(0.167713,-0.004193,0.006248,0.249922,0,0);-ms-transform:matrix(0.167713,-0.004193,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167713,-0.004193,0.006248,0.249922,0,0);}
.m1b6f_c00001{transform:matrix(0.167730,-0.003187,0.004749,0.249955,0,0);-ms-transform:matrix(0.167730,-0.003187,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167730,-0.003187,0.004749,0.249955,0,0);}
.m77e_c00001{transform:matrix(0.167736,0.003858,-0.005748,0.249934,0,0);-ms-transform:matrix(0.167736,0.003858,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.167736,0.003858,-0.005748,0.249934,0,0);}
.m325_c00001{transform:matrix(0.167741,-0.002181,0.003250,0.249979,0,0);-ms-transform:matrix(0.167741,-0.002181,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167741,-0.002181,0.003250,0.249979,0,0);}
.m5bf_c00001{transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167745,0.000000,0.000000,0.250000,0,0);}
.m18e1_c00001{transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167760,0.000000,0.000000,0.250000,0,0);}
.ma0b_c00001{transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167780,0.000000,0.000000,0.250000,0,0);}
.m1709_c00001{transform:matrix(0.167788,-0.004362,0.006498,0.249916,0,0);-ms-transform:matrix(0.167788,-0.004362,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167788,-0.004362,0.006498,0.249916,0,0);}
.m216e_c00001{transform:matrix(0.167789,0.004698,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167789,0.004698,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167789,0.004698,-0.006997,0.249902,0,0);}
.m715_c00001{transform:matrix(0.167798,0.004195,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167798,0.004195,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167798,0.004195,-0.006248,0.249922,0,0);}
.m1e55_c00001{transform:matrix(0.167798,-0.004363,0.006498,0.249916,0,0);-ms-transform:matrix(0.167798,-0.004363,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167798,-0.004363,0.006498,0.249916,0,0);}
.m2401_c00001{transform:matrix(0.167809,-0.003692,0.005499,0.249940,0,0);-ms-transform:matrix(0.167809,-0.003692,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167809,-0.003692,0.005499,0.249940,0,0);}
.m1414_c00001{transform:matrix(0.167823,-0.004363,0.006498,0.249916,0,0);-ms-transform:matrix(0.167823,-0.004363,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167823,-0.004363,0.006498,0.249916,0,0);}
.m608_c00001{transform:matrix(0.167832,-0.007056,0.010501,0.249779,0,0);-ms-transform:matrix(0.167832,-0.007056,0.010501,0.249779,0,0);-webkit-transform:matrix(0.167832,-0.007056,0.010501,0.249779,0,0);}
.mb70_c00001{transform:matrix(0.167834,-0.004867,0.007247,0.249895,0,0);-ms-transform:matrix(0.167834,-0.004867,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167834,-0.004867,0.007247,0.249895,0,0);}
.m59_c00001{transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167840,0.000000,0.000000,0.250000,0,0);}
.m19ff_c00001{transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167865,0.000000,0.000000,0.250000,0,0);}
.m282d_c00001{transform:matrix(0.167871,-0.002182,0.003250,0.249979,0,0);-ms-transform:matrix(0.167871,-0.002182,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167871,-0.002182,0.003250,0.249979,0,0);}
.mbab_c00001{transform:matrix(0.167876,0.002518,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167876,0.002518,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167876,0.002518,-0.003750,0.249972,0,0);}
.m546_c00001{transform:matrix(0.167880,0.001847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167880,0.001847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167880,0.001847,-0.002750,0.249985,0,0);}
.m249a_c00001{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.md17_c00001{transform:matrix(0.167919,-0.004870,0.007247,0.249895,0,0);-ms-transform:matrix(0.167919,-0.004870,0.007247,0.249895,0,0);-webkit-transform:matrix(0.167919,-0.004870,0.007247,0.249895,0,0);}
.m155d_c00001{transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);}
.m4b6_c00001{transform:matrix(0.167934,-0.005379,0.008004,0.249872,0,0);-ms-transform:matrix(0.167934,-0.005379,0.008004,0.249872,0,0);-webkit-transform:matrix(0.167934,-0.005379,0.008004,0.249872,0,0);}
.m11f9_c00001{transform:matrix(0.167934,-0.003695,0.005499,0.249940,0,0);-ms-transform:matrix(0.167934,-0.003695,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167934,-0.003695,0.005499,0.249940,0,0);}
.ma15_c00001{transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167935,0.000000,0.000000,0.250000,0,0);}
.m111b_c00001{transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167940,0.000000,0.000000,0.250000,0,0);}
.m2581_c00001{transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167951,-0.002183,0.003250,0.249979,0,0);}
.m1ee7_c00001{transform:matrix(0.167963,-0.004367,0.006498,0.249916,0,0);-ms-transform:matrix(0.167963,-0.004367,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167963,-0.004367,0.006498,0.249916,0,0);}
.m1ca9_c00001{transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167965,0.000000,0.000000,0.250000,0,0);}
.m575_c00001{transform:matrix(0.167970,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167970,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167970,0.001848,-0.002750,0.249985,0,0);}
.m26f_c00001{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m1c3a_c00001{transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);}
.m13ce_c00001{transform:matrix(0.168018,-0.004368,0.006498,0.249916,0,0);-ms-transform:matrix(0.168018,-0.004368,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168018,-0.004368,0.006498,0.249916,0,0);}
.m2695_c00001{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.md3d_c00001{transform:matrix(0.168029,-0.004873,0.007247,0.249895,0,0);-ms-transform:matrix(0.168029,-0.004873,0.007247,0.249895,0,0);-webkit-transform:matrix(0.168029,-0.004873,0.007247,0.249895,0,0);}
.m108b_c00001{transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168030,0.000000,0.000000,0.250000,0,0);}
.m1e3d_c00001{transform:matrix(0.168053,-0.004369,0.006498,0.249916,0,0);-ms-transform:matrix(0.168053,-0.004369,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168053,-0.004369,0.006498,0.249916,0,0);}
.m1c39_c00001{transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168085,0.000000,0.000000,0.250000,0,0);}
.ma7b_c00001{transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168090,0.000000,0.000000,0.250000,0,0);}
.m1695_c00001{transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168095,0.000000,0.000000,0.250000,0,0);}
.m1d42_c00001{transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168115,0.000000,0.000000,0.250000,0,0);}
.m7d5_c00001{transform:matrix(0.168119,-0.004707,0.006997,0.249902,0,0);-ms-transform:matrix(0.168119,-0.004707,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168119,-0.004707,0.006997,0.249902,0,0);}
.m2851_c00001{transform:matrix(0.168126,-0.002186,0.003250,0.249979,0,0);-ms-transform:matrix(0.168126,-0.002186,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168126,-0.002186,0.003250,0.249979,0,0);}
.m5a2_c00001{transform:matrix(0.168155,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168155,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168155,0.001850,-0.002750,0.249985,0,0);}
.m253b_c00001{transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168165,0.000000,0.000000,0.250000,0,0);}
.m1912_c00001{transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168185,0.000000,0.000000,0.250000,0,0);}
.me0_c00001{transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168190,0.000000,0.000000,0.250000,0,0);}
.mce4_c00001{transform:matrix(0.168209,-0.004878,0.007247,0.249895,0,0);-ms-transform:matrix(0.168209,-0.004878,0.007247,0.249895,0,0);-webkit-transform:matrix(0.168209,-0.004878,0.007247,0.249895,0,0);}
.mdbe_c00001{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.m1e51_c00001{transform:matrix(0.168223,-0.004374,0.006498,0.249916,0,0);-ms-transform:matrix(0.168223,-0.004374,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168223,-0.004374,0.006498,0.249916,0,0);}
.ma32_c00001{transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);}
.m1e5a_c00001{transform:matrix(0.168248,-0.004374,0.006498,0.249916,0,0);-ms-transform:matrix(0.168248,-0.004374,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168248,-0.004374,0.006498,0.249916,0,0);}
.md16_c00001{transform:matrix(0.168249,-0.004879,0.007247,0.249895,0,0);-ms-transform:matrix(0.168249,-0.004879,0.007247,0.249895,0,0);-webkit-transform:matrix(0.168249,-0.004879,0.007247,0.249895,0,0);}
.m970_c00001{transform:matrix(0.168278,-0.006401,0.009503,0.249819,0,0);-ms-transform:matrix(0.168278,-0.006401,0.009503,0.249819,0,0);-webkit-transform:matrix(0.168278,-0.006401,0.009503,0.249819,0,0);}
.m17fb_c00001{transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168280,0.000000,0.000000,0.250000,0,0);}
.m1915_c00001{transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168285,0.000000,0.000000,0.250000,0,0);}
.m107_c00001{transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168290,0.000000,0.000000,0.250000,0,0);}
.m4e6_c00001{transform:matrix(0.168305,0.001851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168305,0.001851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168305,0.001851,-0.002750,0.249985,0,0);}
.m1f02_c00001{transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168305,0.000000,0.000000,0.250000,0,0);}
.m1edb_c00001{transform:matrix(0.168313,-0.004376,0.006498,0.249916,0,0);-ms-transform:matrix(0.168313,-0.004376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168313,-0.004376,0.006498,0.249916,0,0);}
.m1652_c00001{transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168335,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00001{transform:matrix(0.168341,-0.002188,0.003250,0.249979,0,0);-ms-transform:matrix(0.168341,-0.002188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168341,-0.002188,0.003250,0.249979,0,0);}
.ma1c_c00001{transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);}
.m255a_c00001{transform:matrix(0.168364,-0.002357,0.003500,0.249976,0,0);-ms-transform:matrix(0.168364,-0.002357,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168364,-0.002357,0.003500,0.249976,0,0);}
.m1a08_c00001{transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168365,0.000000,0.000000,0.250000,0,0);}
.m14cd_c00001{transform:matrix(0.168368,0.005562,-0.008254,0.249864,0,0);-ms-transform:matrix(0.168368,0.005562,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.168368,0.005562,-0.008254,0.249864,0,0);}
.m1ab3_c00001{transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168370,0.000000,0.000000,0.250000,0,0);}
.m95e_c00001{transform:matrix(0.168378,-0.006405,0.009503,0.249819,0,0);-ms-transform:matrix(0.168378,-0.006405,0.009503,0.249819,0,0);-webkit-transform:matrix(0.168378,-0.006405,0.009503,0.249819,0,0);}
.m281a_c00001{transform:matrix(0.168395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168395,0.000000,0.000000,0.250000,0,0);}
.md73_c00001{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m1fab_c00001{transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168410,0.000000,0.000000,0.250000,0,0);}
.m2f1_c00001{transform:matrix(0.168411,-0.002189,0.003250,0.249979,0,0);-ms-transform:matrix(0.168411,-0.002189,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168411,-0.002189,0.003250,0.249979,0,0);}
.m543_c00001{transform:matrix(0.168430,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168430,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168430,0.001853,-0.002750,0.249985,0,0);}
.m116a_c00001{transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168430,0.000000,0.000000,0.250000,0,0);}
.m1158_c00001{transform:matrix(0.168445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168445,0.000000,0.000000,0.250000,0,0);}
.m163c_c00001{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m13fe_c00001{transform:matrix(0.168478,-0.004380,0.006498,0.249916,0,0);-ms-transform:matrix(0.168478,-0.004380,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168478,-0.004380,0.006498,0.249916,0,0);}
.m263a_c00001{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m11cc_c00001{transform:matrix(0.168509,-0.003707,0.005499,0.249940,0,0);-ms-transform:matrix(0.168509,-0.003707,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168509,-0.003707,0.005499,0.249940,0,0);}
.m1db3_c00001{transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);}
.m744_c00001{transform:matrix(0.168514,0.004718,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168514,0.004718,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168514,0.004718,-0.006997,0.249902,0,0);}
.m17b0_c00001{transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168520,0.000000,0.000000,0.250000,0,0);}
.m162d_c00001{transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168530,0.000000,0.000000,0.250000,0,0);}
.m1ecc_c00001{transform:matrix(0.168563,-0.004383,0.006498,0.249916,0,0);-ms-transform:matrix(0.168563,-0.004383,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168563,-0.004383,0.006498,0.249916,0,0);}
.m19ec_c00001{transform:matrix(0.168568,-0.002697,0.003999,0.249968,0,0);-ms-transform:matrix(0.168568,-0.002697,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168568,-0.002697,0.003999,0.249968,0,0);}
.mee7_c00001{transform:matrix(0.168576,0.002191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168576,0.002191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168576,0.002191,-0.003250,0.249979,0,0);}
.m877_c00001{transform:matrix(0.168608,-0.006414,0.009503,0.249819,0,0);-ms-transform:matrix(0.168608,-0.006414,0.009503,0.249819,0,0);-webkit-transform:matrix(0.168608,-0.006414,0.009503,0.249819,0,0);}
.m25c_c00001{transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168620,0.000000,0.000000,0.250000,0,0);}
.m576_c00001{transform:matrix(0.168625,0.001855,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168625,0.001855,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168625,0.001855,-0.002750,0.249985,0,0);}
.m19d_c00001{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m288_c00001{transform:matrix(0.168645,-0.001855,0.002750,0.249985,0,0);-ms-transform:matrix(0.168645,-0.001855,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168645,-0.001855,0.002750,0.249985,0,0);}
.m15bd_c00001{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.mc2d_c00001{transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168665,0.000000,0.000000,0.250000,0,0);}
.m10a6_c00001{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m128b_c00001{transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168680,0.000000,0.000000,0.250000,0,0);}
.m195d_c00001{transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168690,0.000000,0.000000,0.250000,0,0);}
.m1820_c00001{transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168715,0.000000,0.000000,0.250000,0,0);}
.m485_c00001{transform:matrix(0.168719,-0.005062,0.007497,0.249888,0,0);-ms-transform:matrix(0.168719,-0.005062,0.007497,0.249888,0,0);-webkit-transform:matrix(0.168719,-0.005062,0.007497,0.249888,0,0);}
.m210f_c00001{transform:matrix(0.168744,0.004725,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168744,0.004725,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168744,0.004725,-0.006997,0.249902,0,0);}
.mc27_c00001{transform:matrix(0.168785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168785,0.000000,0.000000,0.250000,0,0);}
.m431_c00001{transform:matrix(0.168795,-0.003207,0.004749,0.249955,0,0);-ms-transform:matrix(0.168795,-0.003207,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168795,-0.003207,0.004749,0.249955,0,0);}
.m2521_c00001{transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);}
.m6bc_c00001{transform:matrix(0.168797,0.004220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168797,0.004220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168797,0.004220,-0.006248,0.249922,0,0);}
.mc21_c00001{transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);}
.m46c_c00001{transform:matrix(0.168807,-0.005745,0.008504,0.249855,0,0);-ms-transform:matrix(0.168807,-0.005745,0.008504,0.249855,0,0);-webkit-transform:matrix(0.168807,-0.005745,0.008504,0.249855,0,0);}
.m668_c00001{transform:matrix(0.168828,-0.006929,0.010252,0.249790,0,0);-ms-transform:matrix(0.168828,-0.006929,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168828,-0.006929,0.010252,0.249790,0,0);}
.m57a_c00001{transform:matrix(0.168830,0.001857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168830,0.001857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168830,0.001857,-0.002750,0.249985,0,0);}
.m64_c00001{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m69a_c00001{transform:matrix(0.168873,-0.006931,0.010252,0.249790,0,0);-ms-transform:matrix(0.168873,-0.006931,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168873,-0.006931,0.010252,0.249790,0,0);}
.m1124_c00001{transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);}
.me6_c00001{transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168905,0.000000,0.000000,0.250000,0,0);}
.mb13_c00001{transform:matrix(0.168926,-0.006595,0.009752,0.249810,0,0);-ms-transform:matrix(0.168926,-0.006595,0.009752,0.249810,0,0);-webkit-transform:matrix(0.168926,-0.006595,0.009752,0.249810,0,0);}
.m807_c00001{transform:matrix(0.168939,-0.004730,0.006997,0.249902,0,0);-ms-transform:matrix(0.168939,-0.004730,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168939,-0.004730,0.006997,0.249902,0,0);}
.m27fb_c00001{transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168940,0.000000,0.000000,0.250000,0,0);}
.m11e8_c00001{transform:matrix(0.168944,-0.003717,0.005499,0.249940,0,0);-ms-transform:matrix(0.168944,-0.003717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168944,-0.003717,0.005499,0.249940,0,0);}
.m336_c00001{transform:matrix(0.168951,-0.002196,0.003250,0.249979,0,0);-ms-transform:matrix(0.168951,-0.002196,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168951,-0.002196,0.003250,0.249979,0,0);}
.m2534_c00001{transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168960,0.000000,0.000000,0.250000,0,0);}
.m20d4_c00001{transform:matrix(0.168997,0.004225,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168997,0.004225,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168997,0.004225,-0.006248,0.249922,0,0);}
.m17ff_c00001{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m16b3_c00001{transform:matrix(0.169030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169030,0.000000,0.000000,0.250000,0,0);}
.m1eb6_c00001{transform:matrix(0.169033,-0.004395,0.006498,0.249916,0,0);-ms-transform:matrix(0.169033,-0.004395,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169033,-0.004395,0.006498,0.249916,0,0);}
.m210_c00001{transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169055,0.000000,0.000000,0.250000,0,0);}
.m1235_c00001{transform:matrix(0.169058,-0.004565,0.006748,0.249909,0,0);-ms-transform:matrix(0.169058,-0.004565,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169058,-0.004565,0.006748,0.249909,0,0);}
.mc19_c00001{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.m5d7_c00001{transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00001{transform:matrix(0.169083,-0.002705,0.003999,0.249968,0,0);-ms-transform:matrix(0.169083,-0.002705,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169083,-0.002705,0.003999,0.249968,0,0);}
.m238e_c00001{transform:matrix(0.169088,-0.004396,0.006498,0.249916,0,0);-ms-transform:matrix(0.169088,-0.004396,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169088,-0.004396,0.006498,0.249916,0,0);}
.m1595_c00001{transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169090,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00001{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m1d75_c00001{transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169110,0.000000,0.000000,0.250000,0,0);}
.m1ca2_c00001{transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169120,0.000000,0.000000,0.250000,0,0);}
.m26ec_c00001{transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169130,0.000000,0.000000,0.250000,0,0);}
.m163e_c00001{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m995_c00001{transform:matrix(0.169153,-0.006434,0.009503,0.249819,0,0);-ms-transform:matrix(0.169153,-0.006434,0.009503,0.249819,0,0);-webkit-transform:matrix(0.169153,-0.006434,0.009503,0.249819,0,0);}
.m509_c00001{transform:matrix(0.169165,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169165,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169165,0.001861,-0.002750,0.249985,0,0);}
.m1b4f_c00001{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m106b_c00001{transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169185,0.000000,0.000000,0.250000,0,0);}
.m204b_c00001{transform:matrix(0.169194,-0.005245,0.007746,0.249880,0,0);-ms-transform:matrix(0.169194,-0.005245,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169194,-0.005245,0.007746,0.249880,0,0);}
.m229c_c00001{transform:matrix(0.169204,-0.003215,0.004749,0.249955,0,0);-ms-transform:matrix(0.169204,-0.003215,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169204,-0.003215,0.004749,0.249955,0,0);}
.m5a1_c00001{transform:matrix(0.169225,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169225,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169225,0.001861,-0.002750,0.249985,0,0);}
.m1594_c00001{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.m1b18_c00001{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m1b30_c00001{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m696_c00001{transform:matrix(0.169307,-0.006949,0.010252,0.249790,0,0);-ms-transform:matrix(0.169307,-0.006949,0.010252,0.249790,0,0);-webkit-transform:matrix(0.169307,-0.006949,0.010252,0.249790,0,0);}
.m1440_c00001{transform:matrix(0.169318,-0.004572,0.006748,0.249909,0,0);-ms-transform:matrix(0.169318,-0.004572,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169318,-0.004572,0.006748,0.249909,0,0);}
.m554_c00001{transform:matrix(0.169325,0.001863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169325,0.001863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169325,0.001863,-0.002750,0.249985,0,0);}
.m2764_c00001{transform:matrix(0.169326,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169326,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169326,-0.002540,0.003750,0.249972,0,0);}
.mce7_c00001{transform:matrix(0.169339,-0.004911,0.007247,0.249895,0,0);-ms-transform:matrix(0.169339,-0.004911,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169339,-0.004911,0.007247,0.249895,0,0);}
.m155c_c00001{transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169340,0.000000,0.000000,0.250000,0,0);}
.m2875_c00001{transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169365,0.000000,0.000000,0.250000,0,0);}
.m1bd6_c00001{transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169380,0.000000,0.000000,0.250000,0,0);}
.mfbd_c00001{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m1a9f_c00001{transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169410,0.000000,0.000000,0.250000,0,0);}
.m240_c00001{transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169420,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.mc95_c00001{transform:matrix(0.169429,-0.004913,0.007247,0.249895,0,0);-ms-transform:matrix(0.169429,-0.004913,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169429,-0.004913,0.007247,0.249895,0,0);}
.m1c_c00001{transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169430,0.000000,0.000000,0.250000,0,0);}
.mada_c00001{transform:matrix(0.169441,-0.006615,0.009752,0.249810,0,0);-ms-transform:matrix(0.169441,-0.006615,0.009752,0.249810,0,0);-webkit-transform:matrix(0.169441,-0.006615,0.009752,0.249810,0,0);}
.mb37_c00001{transform:matrix(0.169456,-0.006615,0.009752,0.249810,0,0);-ms-transform:matrix(0.169456,-0.006615,0.009752,0.249810,0,0);-webkit-transform:matrix(0.169456,-0.006615,0.009752,0.249810,0,0);}
.m1cf8_c00001{transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169470,0.000000,0.000000,0.250000,0,0);}
.m70b_c00001{transform:matrix(0.169480,0.003898,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169480,0.003898,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169480,0.003898,-0.005748,0.249934,0,0);}
.m9d3_c00001{transform:matrix(0.169483,0.003051,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169483,0.003051,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169483,0.003051,-0.004499,0.249960,0,0);}
.m1116_c00001{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m25f_c00001{transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);}
.m119d_c00001{transform:matrix(0.169544,-0.003730,0.005499,0.249940,0,0);-ms-transform:matrix(0.169544,-0.003730,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169544,-0.003730,0.005499,0.249940,0,0);}
.maac_c00001{transform:matrix(0.169548,-0.004408,0.006498,0.249916,0,0);-ms-transform:matrix(0.169548,-0.004408,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169548,-0.004408,0.006498,0.249916,0,0);}
.m1783_c00001{transform:matrix(0.169563,-0.004409,0.006498,0.249916,0,0);-ms-transform:matrix(0.169563,-0.004409,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169563,-0.004409,0.006498,0.249916,0,0);}
.m1359_c00001{transform:matrix(0.169564,0.004917,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169564,0.004917,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169564,0.004917,-0.007247,0.249895,0,0);}
.m530_c00001{transform:matrix(0.169565,0.001865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169565,0.001865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169565,0.001865,-0.002750,0.249985,0,0);}
.mbef_c00001{transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169565,0.000000,0.000000,0.250000,0,0);}
.m114a_c00001{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m9f6_c00001{transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169605,0.000000,0.000000,0.250000,0,0);}
.m3a9_c00001{transform:matrix(0.169606,-0.002205,0.003250,0.249979,0,0);-ms-transform:matrix(0.169606,-0.002205,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169606,-0.002205,0.003250,0.249979,0,0);}
.m32f_c00001{transform:matrix(0.169616,-0.002205,0.003250,0.249979,0,0);-ms-transform:matrix(0.169616,-0.002205,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169616,-0.002205,0.003250,0.249979,0,0);}
.m1182_c00001{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m2565_c00001{transform:matrix(0.169641,-0.002205,0.003250,0.249979,0,0);-ms-transform:matrix(0.169641,-0.002205,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169641,-0.002205,0.003250,0.249979,0,0);}
.m1427_c00001{transform:matrix(0.169658,-0.004411,0.006498,0.249916,0,0);-ms-transform:matrix(0.169658,-0.004411,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169658,-0.004411,0.006498,0.249916,0,0);}
.m2157_c00001{transform:matrix(0.169664,0.004751,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169664,0.004751,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169664,0.004751,-0.006997,0.249902,0,0);}
.m707_c00001{transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169666,0.004072,-0.005998,0.249928,0,0);}
.m498_c00001{transform:matrix(0.169667,-0.006963,0.010252,0.249790,0,0);-ms-transform:matrix(0.169667,-0.006963,0.010252,0.249790,0,0);-webkit-transform:matrix(0.169667,-0.006963,0.010252,0.249790,0,0);}
.mb01_c00001{transform:matrix(0.169681,-0.006624,0.009752,0.249810,0,0);-ms-transform:matrix(0.169681,-0.006624,0.009752,0.249810,0,0);-webkit-transform:matrix(0.169681,-0.006624,0.009752,0.249810,0,0);}
.m1bde_c00001{transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169690,0.000000,0.000000,0.250000,0,0);}
.m2045_c00001{transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);-ms-transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169703,-0.005261,0.007746,0.249880,0,0);}
.m376_c00001{transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-ms-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169706,-0.002206,0.003250,0.249979,0,0);}
.mb5_c00001{transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169715,0.000000,0.000000,0.250000,0,0);}
.m1060_c00001{transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169720,0.000000,0.000000,0.250000,0,0);}
.m26f5_c00001{transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169730,0.000000,0.000000,0.250000,0,0);}
.m110a_c00001{transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169740,0.000000,0.000000,0.250000,0,0);}
.m868_c00001{transform:matrix(0.169743,-0.004753,0.006997,0.249902,0,0);-ms-transform:matrix(0.169743,-0.004753,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169743,-0.004753,0.006997,0.249902,0,0);}
.m12f6_c00001{transform:matrix(0.169748,0.004583,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169748,0.004583,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169748,0.004583,-0.006748,0.249909,0,0);}
.m13be_c00001{transform:matrix(0.169798,-0.004415,0.006498,0.249916,0,0);-ms-transform:matrix(0.169798,-0.004415,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169798,-0.004415,0.006498,0.249916,0,0);}
.m15bb_c00001{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.m269b_c00001{transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);}
.m49a_c00001{transform:matrix(0.169817,-0.006969,0.010252,0.249790,0,0);-ms-transform:matrix(0.169817,-0.006969,0.010252,0.249790,0,0);-webkit-transform:matrix(0.169817,-0.006969,0.010252,0.249790,0,0);}
.m1d18_c00001{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m160b_c00001{transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169830,0.000000,0.000000,0.250000,0,0);}
.m568_c00001{transform:matrix(0.169835,0.001868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169835,0.001868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169835,0.001868,-0.002750,0.249985,0,0);}
.m65_c00001{transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169835,0.000000,0.000000,0.250000,0,0);}
.mf66_c00001{transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169840,0.000000,0.000000,0.250000,0,0);}
.m1f00_c00001{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.m32e_c00001{transform:matrix(0.169846,-0.002208,0.003250,0.249979,0,0);-ms-transform:matrix(0.169846,-0.002208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169846,-0.002208,0.003250,0.249979,0,0);}
.me98_c00001{transform:matrix(0.169848,0.002378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169848,0.002378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169848,0.002378,-0.003500,0.249976,0,0);}
.m24d_c00001{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m1999_c00001{transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169915,0.000000,0.000000,0.250000,0,0);}
.m20e1_c00001{transform:matrix(0.169922,0.004248,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169922,0.004248,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169922,0.004248,-0.006248,0.249922,0,0);}
.m17f8_c00001{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.mbca_c00001{transform:matrix(0.169950,0.001869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169950,0.001869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169950,0.001869,-0.002750,0.249985,0,0);}
.m2325_c00001{transform:matrix(0.169952,0.003059,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169952,0.003059,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169952,0.003059,-0.004499,0.249960,0,0);}
.mc94_c00001{transform:matrix(0.169954,-0.004929,0.007247,0.249895,0,0);-ms-transform:matrix(0.169954,-0.004929,0.007247,0.249895,0,0);-webkit-transform:matrix(0.169954,-0.004929,0.007247,0.249895,0,0);}
.mf20_c00001{transform:matrix(0.169976,0.003400,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169976,0.003400,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169976,0.003400,-0.004999,0.249950,0,0);}
.m70e_c00001{transform:matrix(0.169980,0.003910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169980,0.003910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169980,0.003910,-0.005748,0.249934,0,0);}
.m586_c00001{transform:matrix(0.170005,0.001870,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170005,0.001870,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170005,0.001870,-0.002750,0.249985,0,0);}
.m142c_c00001{transform:matrix(0.170018,-0.004420,0.006498,0.249916,0,0);-ms-transform:matrix(0.170018,-0.004420,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170018,-0.004420,0.006498,0.249916,0,0);}
.m23d6_c00001{transform:matrix(0.170039,-0.003741,0.005499,0.249940,0,0);-ms-transform:matrix(0.170039,-0.003741,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170039,-0.003741,0.005499,0.249940,0,0);}
.m695_c00001{transform:matrix(0.170057,-0.006979,0.010252,0.249790,0,0);-ms-transform:matrix(0.170057,-0.006979,0.010252,0.249790,0,0);-webkit-transform:matrix(0.170057,-0.006979,0.010252,0.249790,0,0);}
.m1ffd_c00001{transform:matrix(0.170082,-0.004252,0.006248,0.249922,0,0);-ms-transform:matrix(0.170082,-0.004252,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170082,-0.004252,0.006248,0.249922,0,0);}
.mea7_c00001{transform:matrix(0.170093,0.002381,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170093,0.002381,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170093,0.002381,-0.003500,0.249976,0,0);}
.m272d_c00001{transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170095,0.000000,0.000000,0.250000,0,0);}
.m950_c00001{transform:matrix(0.170097,-0.006470,0.009503,0.249819,0,0);-ms-transform:matrix(0.170097,-0.006470,0.009503,0.249819,0,0);-webkit-transform:matrix(0.170097,-0.006470,0.009503,0.249819,0,0);}
.m2094_c00001{transform:matrix(0.170108,-0.005273,0.007746,0.249880,0,0);-ms-transform:matrix(0.170108,-0.005273,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170108,-0.005273,0.007746,0.249880,0,0);}
.m27b_c00001{transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170115,0.000000,0.000000,0.250000,0,0);}
.mea2_c00001{transform:matrix(0.170123,0.002382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170123,0.002382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170123,0.002382,-0.003500,0.249976,0,0);}
.m1fe4_c00001{transform:matrix(0.170137,-0.004253,0.006248,0.249922,0,0);-ms-transform:matrix(0.170137,-0.004253,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170137,-0.004253,0.006248,0.249922,0,0);}
.m3eb_c00001{transform:matrix(0.170163,-0.004765,0.006997,0.249902,0,0);-ms-transform:matrix(0.170163,-0.004765,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170163,-0.004765,0.006997,0.249902,0,0);}
.m5a3_c00001{transform:matrix(0.170165,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170165,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170165,0.001872,-0.002750,0.249985,0,0);}
.m1fec_c00001{transform:matrix(0.170167,-0.004254,0.006248,0.249922,0,0);-ms-transform:matrix(0.170167,-0.004254,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170167,-0.004254,0.006248,0.249922,0,0);}
.m319_c00001{transform:matrix(0.170186,-0.002212,0.003250,0.249979,0,0);-ms-transform:matrix(0.170186,-0.002212,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170186,-0.002212,0.003250,0.249979,0,0);}
.m10e7_c00001{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m1f4d_c00001{transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170210,0.000000,0.000000,0.250000,0,0);}
.m1a3e_c00001{transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170235,0.000000,0.000000,0.250000,0,0);}
.m1534_c00001{transform:matrix(0.170237,0.005623,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170237,0.005623,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170237,0.005623,-0.008254,0.249864,0,0);}
.m1f_c00001{transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);}
.m1d8b_c00001{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m10e_c00001{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m33d_c00001{transform:matrix(0.170251,-0.002213,0.003250,0.249979,0,0);-ms-transform:matrix(0.170251,-0.002213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170251,-0.002213,0.003250,0.249979,0,0);}
.m5a5_c00001{transform:matrix(0.170260,0.001873,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170260,0.001873,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170260,0.001873,-0.002750,0.249985,0,0);}
.m80_c00001{transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170270,0.000000,0.000000,0.250000,0,0);}
.mb17_c00001{transform:matrix(0.170270,-0.006647,0.009752,0.249810,0,0);-ms-transform:matrix(0.170270,-0.006647,0.009752,0.249810,0,0);-webkit-transform:matrix(0.170270,-0.006647,0.009752,0.249810,0,0);}
.m1773_c00001{transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);-ms-transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170272,-0.004427,0.006498,0.249916,0,0);}
.m1b8d_c00001{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m2662_c00001{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m12c_c00001{transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170315,0.000000,0.000000,0.250000,0,0);}
.m1811_c00001{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.mbf0_c00001{transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170340,0.000000,0.000000,0.250000,0,0);}
.m1092_c00001{transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);}
.mae4_c00001{transform:matrix(0.170360,-0.006651,0.009752,0.249810,0,0);-ms-transform:matrix(0.170360,-0.006651,0.009752,0.249810,0,0);-webkit-transform:matrix(0.170360,-0.006651,0.009752,0.249810,0,0);}
.m1243_c00001{transform:matrix(0.170363,-0.004600,0.006748,0.249909,0,0);-ms-transform:matrix(0.170363,-0.004600,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170363,-0.004600,0.006748,0.249909,0,0);}
.me93_c00001{transform:matrix(0.170373,0.002385,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170373,0.002385,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170373,0.002385,-0.003500,0.249976,0,0);}
.m1bb6_c00001{transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170395,0.000000,0.000000,0.250000,0,0);}
.m133b_c00001{transform:matrix(0.170398,0.004942,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170398,0.004942,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170398,0.004942,-0.007247,0.249895,0,0);}
.m17f6_c00001{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m6e0_c00001{transform:matrix(0.170412,0.004260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170412,0.004260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170412,0.004260,-0.006248,0.249922,0,0);}
.m383_c00001{transform:matrix(0.170421,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170421,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170421,-0.002215,0.003250,0.249979,0,0);}
.m6e6_c00001{transform:matrix(0.170422,0.004261,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170422,0.004261,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170422,0.004261,-0.006248,0.249922,0,0);}
.m2356_c00001{transform:matrix(0.170422,0.003068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170422,0.003068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170422,0.003068,-0.004499,0.249960,0,0);}
.m1601_c00001{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m11c5_c00001{transform:matrix(0.170439,-0.003750,0.005499,0.249940,0,0);-ms-transform:matrix(0.170439,-0.003750,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170439,-0.003750,0.005499,0.249940,0,0);}
.m44_c00001{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m126_c00001{transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170495,0.000000,0.000000,0.250000,0,0);}
.mdf8_c00001{transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170505,0.000000,0.000000,0.250000,0,0);}
.m4ce_c00001{transform:matrix(0.170525,0.001876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170525,0.001876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170525,0.001876,-0.002750,0.249985,0,0);}
.m1f1f_c00001{transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170540,0.000000,0.000000,0.250000,0,0);}
.mca5_c00001{transform:matrix(0.170548,-0.004946,0.007247,0.249895,0,0);-ms-transform:matrix(0.170548,-0.004946,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170548,-0.004946,0.007247,0.249895,0,0);}
.m19b4_c00001{transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170555,0.000000,0.000000,0.250000,0,0);}
.md07_c00001{transform:matrix(0.170558,-0.004946,0.007247,0.249895,0,0);-ms-transform:matrix(0.170558,-0.004946,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170558,-0.004946,0.007247,0.249895,0,0);}
.m180e_c00001{transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170560,0.000000,0.000000,0.250000,0,0);}
.mcaa_c00001{transform:matrix(0.170563,-0.004946,0.007247,0.249895,0,0);-ms-transform:matrix(0.170563,-0.004946,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170563,-0.004946,0.007247,0.249895,0,0);}
.m1308_c00001{transform:matrix(0.170573,0.004605,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170573,0.004605,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170573,0.004605,-0.006748,0.249909,0,0);}
.m9c3_c00001{transform:matrix(0.170583,0.002388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170583,0.002388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170583,0.002388,-0.003500,0.249976,0,0);}
.m131a_c00001{transform:matrix(0.170587,0.004435,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170587,0.004435,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170587,0.004435,-0.006498,0.249916,0,0);}
.m9f2_c00001{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.mc45_c00001{transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);}
.m7d8_c00001{transform:matrix(0.170613,-0.004777,0.006997,0.249902,0,0);-ms-transform:matrix(0.170613,-0.004777,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170613,-0.004777,0.006997,0.249902,0,0);}
.m38d_c00001{transform:matrix(0.170621,-0.002218,0.003250,0.249979,0,0);-ms-transform:matrix(0.170621,-0.002218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170621,-0.002218,0.003250,0.249979,0,0);}
.m1e5c_c00001{transform:matrix(0.170622,-0.004436,0.006498,0.249916,0,0);-ms-transform:matrix(0.170622,-0.004436,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170622,-0.004436,0.006498,0.249916,0,0);}
.mddd_c00001{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m19b8_c00001{transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170630,0.000000,0.000000,0.250000,0,0);}
.m87a_c00001{transform:matrix(0.170632,-0.006490,0.009503,0.249819,0,0);-ms-transform:matrix(0.170632,-0.006490,0.009503,0.249819,0,0);-webkit-transform:matrix(0.170632,-0.006490,0.009503,0.249819,0,0);}
.m123_c00001{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m184d_c00001{transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170645,0.000000,0.000000,0.250000,0,0);}
.m1540_c00001{transform:matrix(0.170652,0.005637,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170652,0.005637,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170652,0.005637,-0.008254,0.249864,0,0);}
.m2583_c00001{transform:matrix(0.170676,-0.002219,0.003250,0.249979,0,0);-ms-transform:matrix(0.170676,-0.002219,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170676,-0.002219,0.003250,0.249979,0,0);}
.m5b0_c00001{transform:matrix(0.170695,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170695,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170695,0.001878,-0.002750,0.249985,0,0);}
.m1017_c00001{transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170705,0.000000,0.000000,0.250000,0,0);}
.mdeb_c00001{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m2615_c00001{transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170740,0.000000,0.000000,0.250000,0,0);}
.m66c_c00001{transform:matrix(0.170746,-0.007008,0.010252,0.249790,0,0);-ms-transform:matrix(0.170746,-0.007008,0.010252,0.249790,0,0);-webkit-transform:matrix(0.170746,-0.007008,0.010252,0.249790,0,0);}
.m1cd6_c00001{transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170760,0.000000,0.000000,0.250000,0,0);}
.mc76_c00001{transform:matrix(0.170778,-0.004953,0.007247,0.249895,0,0);-ms-transform:matrix(0.170778,-0.004953,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170778,-0.004953,0.007247,0.249895,0,0);}
.m18ff_c00001{transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170780,0.000000,0.000000,0.250000,0,0);}
.m1ea5_c00001{transform:matrix(0.170782,-0.004440,0.006498,0.249916,0,0);-ms-transform:matrix(0.170782,-0.004440,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170782,-0.004440,0.006498,0.249916,0,0);}
.m11aa_c00001{transform:matrix(0.170794,-0.003757,0.005499,0.249940,0,0);-ms-transform:matrix(0.170794,-0.003757,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170794,-0.003757,0.005499,0.249940,0,0);}
.m1216_c00001{transform:matrix(0.170798,-0.004612,0.006748,0.249909,0,0);-ms-transform:matrix(0.170798,-0.004612,0.006748,0.249909,0,0);-webkit-transform:matrix(0.170798,-0.004612,0.006748,0.249909,0,0);}
.m164c_c00001{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m153f_c00001{transform:matrix(0.170802,0.005642,-0.008254,0.249864,0,0);-ms-transform:matrix(0.170802,0.005642,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.170802,0.005642,-0.008254,0.249864,0,0);}
.m21f0_c00001{transform:matrix(0.170809,-0.003245,0.004749,0.249955,0,0);-ms-transform:matrix(0.170809,-0.003245,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170809,-0.003245,0.004749,0.249955,0,0);}
.m1062_c00001{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.mc16_c00001{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.m1b48_c00001{transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170860,0.000000,0.000000,0.250000,0,0);}
.m1e65_c00001{transform:matrix(0.170862,-0.004442,0.006498,0.249916,0,0);-ms-transform:matrix(0.170862,-0.004442,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170862,-0.004442,0.006498,0.249916,0,0);}
.mc64_c00001{transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170865,0.000000,0.000000,0.250000,0,0);}
.m2568_c00001{transform:matrix(0.170896,-0.002222,0.003250,0.249979,0,0);-ms-transform:matrix(0.170896,-0.002222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170896,-0.002222,0.003250,0.249979,0,0);}
.m26bc_c00001{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m23d0_c00001{transform:matrix(0.170924,-0.003760,0.005499,0.249940,0,0);-ms-transform:matrix(0.170924,-0.003760,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170924,-0.003760,0.005499,0.249940,0,0);}
.m2250_c00001{transform:matrix(0.170930,-0.002906,0.004249,0.249964,0,0);-ms-transform:matrix(0.170930,-0.002906,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170930,-0.002906,0.004249,0.249964,0,0);}
.m972_c00001{transform:matrix(0.170941,-0.006502,0.009503,0.249819,0,0);-ms-transform:matrix(0.170941,-0.006502,0.009503,0.249819,0,0);-webkit-transform:matrix(0.170941,-0.006502,0.009503,0.249819,0,0);}
.me3_c00001{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m5ec_c00001{transform:matrix(0.170989,-0.007189,0.010501,0.249779,0,0);-ms-transform:matrix(0.170989,-0.007189,0.010501,0.249779,0,0);-webkit-transform:matrix(0.170989,-0.007189,0.010501,0.249779,0,0);}
.m62c_c00001{transform:matrix(0.171002,-0.007360,0.010751,0.249769,0,0);-ms-transform:matrix(0.171002,-0.007360,0.010751,0.249769,0,0);-webkit-transform:matrix(0.171002,-0.007360,0.010751,0.249769,0,0);}
.m62f_c00001{transform:matrix(0.171007,-0.007361,0.010751,0.249769,0,0);-ms-transform:matrix(0.171007,-0.007361,0.010751,0.249769,0,0);-webkit-transform:matrix(0.171007,-0.007361,0.010751,0.249769,0,0);}
.m1d57_c00001{transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171035,0.000000,0.000000,0.250000,0,0);}
.m259e_c00001{transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171040,-0.001881,0.002750,0.249985,0,0);}
.m1d55_c00001{transform:matrix(0.171040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171040,0.000000,0.000000,0.250000,0,0);}
.m9af_c00001{transform:matrix(0.171041,-0.006506,0.009503,0.249819,0,0);-ms-transform:matrix(0.171041,-0.006506,0.009503,0.249819,0,0);-webkit-transform:matrix(0.171041,-0.006506,0.009503,0.249819,0,0);}
.m79f_c00001{transform:matrix(0.171050,0.003934,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171050,0.003934,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171050,0.003934,-0.005748,0.249934,0,0);}
.mff9_c00001{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m1689_c00001{transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);}
.m20f6_c00001{transform:matrix(0.171068,0.004790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171068,0.004790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171068,0.004790,-0.006997,0.249902,0,0);}
.m6dc_c00001{transform:matrix(0.171072,0.004277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171072,0.004277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171072,0.004277,-0.006248,0.249922,0,0);}
.m17af_c00001{transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171080,0.000000,0.000000,0.250000,0,0);}
.m1251_c00001{transform:matrix(0.171088,-0.004619,0.006748,0.249909,0,0);-ms-transform:matrix(0.171088,-0.004619,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171088,-0.004619,0.006748,0.249909,0,0);}
.m1fac_c00001{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m237a_c00001{transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171107,0.003080,-0.004499,0.249960,0,0);}
.m25a8_c00001{transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-ms-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171125,-0.001882,0.002750,0.249985,0,0);}
.mdb9_c00001{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.m11ed_c00001{transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);-ms-transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171134,-0.003765,0.005499,0.249940,0,0);}
.m296_c00001{transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171145,0.000000,0.000000,0.250000,0,0);}
.m14a0_c00001{transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171152,0.005654,-0.008254,0.249864,0,0);}
.m2152_c00001{transform:matrix(0.171173,0.004793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171173,0.004793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171173,0.004793,-0.006997,0.249902,0,0);}
.ma25_c00001{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.mcdc_c00001{transform:matrix(0.171243,-0.004966,0.007247,0.249895,0,0);-ms-transform:matrix(0.171243,-0.004966,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171243,-0.004966,0.007247,0.249895,0,0);}
.m271a_c00001{transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171245,0.000000,0.000000,0.250000,0,0);}
.m24d7_c00001{transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171265,0.000000,0.000000,0.250000,0,0);}
.m1b86_c00001{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m23a6_c00001{transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);-ms-transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171279,-0.003768,0.005499,0.249940,0,0);}
.m12a4_c00001{transform:matrix(0.171284,0.003768,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171284,0.003768,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171284,0.003768,-0.005499,0.249940,0,0);}
.m15f_c00001{transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171285,0.000000,0.000000,0.250000,0,0);}
.m1771_c00001{transform:matrix(0.171292,-0.004454,0.006498,0.249916,0,0);-ms-transform:matrix(0.171292,-0.004454,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171292,-0.004454,0.006498,0.249916,0,0);}
.m1d50_c00001{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m17c2_c00001{transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171305,0.000000,0.000000,0.250000,0,0);}
.m24b7_c00001{transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171315,0.000000,0.000000,0.250000,0,0);}
.m1c07_c00001{transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171340,0.000000,0.000000,0.250000,0,0);}
.m21e8_c00001{transform:matrix(0.171341,-0.003427,0.004999,0.249950,0,0);-ms-transform:matrix(0.171341,-0.003427,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171341,-0.003427,0.004999,0.249950,0,0);}
.m82_c00001{transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171345,0.000000,0.000000,0.250000,0,0);}
.m20ad_c00001{transform:matrix(0.171356,0.004284,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171356,0.004284,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171356,0.004284,-0.006248,0.249922,0,0);}
.m207a_c00001{transform:matrix(0.171373,-0.005313,0.007746,0.249880,0,0);-ms-transform:matrix(0.171373,-0.005313,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171373,-0.005313,0.007746,0.249880,0,0);}
.m1e58_c00001{transform:matrix(0.171397,-0.004456,0.006498,0.249916,0,0);-ms-transform:matrix(0.171397,-0.004456,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171397,-0.004456,0.006498,0.249916,0,0);}
.m10ba_c00001{transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171405,0.000000,0.000000,0.250000,0,0);}
.macf_c00001{transform:matrix(0.171414,-0.006692,0.009752,0.249810,0,0);-ms-transform:matrix(0.171414,-0.006692,0.009752,0.249810,0,0);-webkit-transform:matrix(0.171414,-0.006692,0.009752,0.249810,0,0);}
.mc6c_c00001{transform:matrix(0.171418,-0.004971,0.007247,0.249895,0,0);-ms-transform:matrix(0.171418,-0.004971,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171418,-0.004971,0.007247,0.249895,0,0);}
.m1e19_c00001{transform:matrix(0.171431,-0.004114,0.005998,0.249928,0,0);-ms-transform:matrix(0.171431,-0.004114,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171431,-0.004114,0.005998,0.249928,0,0);}
.m6_c00001{transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171435,0.000000,0.000000,0.250000,0,0);}
.me88_c00001{transform:matrix(0.171438,0.002400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171438,0.002400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171438,0.002400,-0.003500,0.249976,0,0);}
.m21e9_c00001{transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171481,-0.003430,0.004999,0.249950,0,0);}
.m123f_c00001{transform:matrix(0.171488,-0.004630,0.006748,0.249909,0,0);-ms-transform:matrix(0.171488,-0.004630,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171488,-0.004630,0.006748,0.249909,0,0);}
.m128_c00001{transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171490,0.000000,0.000000,0.250000,0,0);}
.m1450_c00001{transform:matrix(0.171507,-0.004631,0.006748,0.249909,0,0);-ms-transform:matrix(0.171507,-0.004631,0.006748,0.249909,0,0);-webkit-transform:matrix(0.171507,-0.004631,0.006748,0.249909,0,0);}
.m5d8_c00001{transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171515,0.000000,0.000000,0.250000,0,0);}
.m1ad1_c00001{transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171530,0.000000,0.000000,0.250000,0,0);}
.md0a_c00001{transform:matrix(0.171538,-0.004975,0.007247,0.249895,0,0);-ms-transform:matrix(0.171538,-0.004975,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171538,-0.004975,0.007247,0.249895,0,0);}
.m959_c00001{transform:matrix(0.171546,-0.006525,0.009503,0.249819,0,0);-ms-transform:matrix(0.171546,-0.006525,0.009503,0.249819,0,0);-webkit-transform:matrix(0.171546,-0.006525,0.009503,0.249819,0,0);}
.mf3e_c00001{transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171560,0.000000,0.000000,0.250000,0,0);}
.md3a_c00001{transform:matrix(0.171563,-0.004975,0.007247,0.249895,0,0);-ms-transform:matrix(0.171563,-0.004975,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171563,-0.004975,0.007247,0.249895,0,0);}
.m2489_c00001{transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171565,0.000000,0.000000,0.250000,0,0);}
.m1be0_c00001{transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171570,0.000000,0.000000,0.250000,0,0);}
.m12d4_c00001{transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171572,0.004632,-0.006748,0.249909,0,0);}
.mdc8_c00001{transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171580,0.000000,0.000000,0.250000,0,0);}
.m3a6_c00001{transform:matrix(0.171586,-0.002231,0.003250,0.249979,0,0);-ms-transform:matrix(0.171586,-0.002231,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171586,-0.002231,0.003250,0.249979,0,0);}
.m18f_c00001{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m2863_c00001{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m1e90_c00001{transform:matrix(0.171611,-0.003432,0.004999,0.249950,0,0);-ms-transform:matrix(0.171611,-0.003432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171611,-0.003432,0.004999,0.249950,0,0);}
.m65b_c00001{transform:matrix(0.171616,-0.007043,0.010252,0.249790,0,0);-ms-transform:matrix(0.171616,-0.007043,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171616,-0.007043,0.010252,0.249790,0,0);}
.m13b5_c00001{transform:matrix(0.171617,-0.004462,0.006498,0.249916,0,0);-ms-transform:matrix(0.171617,-0.004462,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171617,-0.004462,0.006498,0.249916,0,0);}
.mad2_c00001{transform:matrix(0.171619,-0.006700,0.009752,0.249810,0,0);-ms-transform:matrix(0.171619,-0.006700,0.009752,0.249810,0,0);-webkit-transform:matrix(0.171619,-0.006700,0.009752,0.249810,0,0);}
.m1bf1_c00001{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m80b_c00001{transform:matrix(0.171628,-0.004806,0.006997,0.249902,0,0);-ms-transform:matrix(0.171628,-0.004806,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171628,-0.004806,0.006997,0.249902,0,0);}
.m839_c00001{transform:matrix(0.171638,-0.004806,0.006997,0.249902,0,0);-ms-transform:matrix(0.171638,-0.004806,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171638,-0.004806,0.006997,0.249902,0,0);}
.m164d_c00001{transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171640,0.000000,0.000000,0.250000,0,0);}
.m9f7_c00001{transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171655,0.000000,0.000000,0.250000,0,0);}
.m8c4_c00001{transform:matrix(0.171661,-0.004120,0.005998,0.249928,0,0);-ms-transform:matrix(0.171661,-0.004120,0.005998,0.249928,0,0);-webkit-transform:matrix(0.171661,-0.004120,0.005998,0.249928,0,0);}
.m1879_c00001{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m14df_c00001{transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171676,0.005671,-0.008254,0.249864,0,0);}
.md5a_c00001{transform:matrix(0.171713,-0.004980,0.007247,0.249895,0,0);-ms-transform:matrix(0.171713,-0.004980,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171713,-0.004980,0.007247,0.249895,0,0);}
.mc48_c00001{transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);}
.m1f06_c00001{transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171735,0.000000,0.000000,0.250000,0,0);}
.m2203_c00001{transform:matrix(0.171759,-0.003263,0.004749,0.249955,0,0);-ms-transform:matrix(0.171759,-0.003263,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171759,-0.003263,0.004749,0.249955,0,0);}
.m1b3d_c00001{transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171760,0.000000,0.000000,0.250000,0,0);}
.m514_c00001{transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171765,0.001889,-0.002750,0.249985,0,0);}
.m286e_c00001{transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171770,0.000000,0.000000,0.250000,0,0);}
.m158_c00001{transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171795,0.000000,0.000000,0.250000,0,0);}
.m146a_c00001{transform:matrix(0.171796,0.006535,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171796,0.006535,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171796,0.006535,-0.009503,0.249819,0,0);}
.m21c1_c00001{transform:matrix(0.171805,-0.003952,0.005748,0.249934,0,0);-ms-transform:matrix(0.171805,-0.003952,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171805,-0.003952,0.005748,0.249934,0,0);}
.m692_c00001{transform:matrix(0.171825,-0.007052,0.010252,0.249790,0,0);-ms-transform:matrix(0.171825,-0.007052,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171825,-0.007052,0.010252,0.249790,0,0);}
.m1900_c00001{transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171855,0.000000,0.000000,0.250000,0,0);}
.mcf3_c00001{transform:matrix(0.171858,-0.004984,0.007247,0.249895,0,0);-ms-transform:matrix(0.171858,-0.004984,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171858,-0.004984,0.007247,0.249895,0,0);}
.m174f_c00001{transform:matrix(0.171862,-0.004468,0.006498,0.249916,0,0);-ms-transform:matrix(0.171862,-0.004468,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171862,-0.004468,0.006498,0.249916,0,0);}
.m31_c00001{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m2fd_c00001{transform:matrix(0.171895,-0.002235,0.003250,0.249979,0,0);-ms-transform:matrix(0.171895,-0.002235,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171895,-0.002235,0.003250,0.249979,0,0);}
.m1b99_c00001{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.m1943_c00001{transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);}
.m1be2_c00001{transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171915,0.000000,0.000000,0.250000,0,0);}
.m22b_c00001{transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171920,0.000000,0.000000,0.250000,0,0);}
.m11a1_c00001{transform:matrix(0.171923,-0.003782,0.005499,0.249940,0,0);-ms-transform:matrix(0.171923,-0.003782,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171923,-0.003782,0.005499,0.249940,0,0);}
.m9fb_c00001{transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171930,0.000000,0.000000,0.250000,0,0);}
.m850_c00001{transform:matrix(0.171933,-0.004814,0.006997,0.249902,0,0);-ms-transform:matrix(0.171933,-0.004814,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171933,-0.004814,0.006997,0.249902,0,0);}
.m1e01_c00001{transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171935,0.000000,0.000000,0.250000,0,0);}
.m2067_c00001{transform:matrix(0.171937,-0.005330,0.007746,0.249880,0,0);-ms-transform:matrix(0.171937,-0.005330,0.007746,0.249880,0,0);-webkit-transform:matrix(0.171937,-0.005330,0.007746,0.249880,0,0);}
.m238a_c00001{transform:matrix(0.171952,-0.004471,0.006498,0.249916,0,0);-ms-transform:matrix(0.171952,-0.004471,0.006498,0.249916,0,0);-webkit-transform:matrix(0.171952,-0.004471,0.006498,0.249916,0,0);}
.m25bd_c00001{transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171965,0.000000,0.000000,0.250000,0,0);}
.m14c7_c00001{transform:matrix(0.171971,0.005681,-0.008254,0.249864,0,0);-ms-transform:matrix(0.171971,0.005681,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.171971,0.005681,-0.008254,0.249864,0,0);}
.mcf2_c00001{transform:matrix(0.171973,-0.004987,0.007247,0.249895,0,0);-ms-transform:matrix(0.171973,-0.004987,0.007247,0.249895,0,0);-webkit-transform:matrix(0.171973,-0.004987,0.007247,0.249895,0,0);}
.m1a27_c00001{transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171980,0.000000,0.000000,0.250000,0,0);}
.m7cc_c00001{transform:matrix(0.171983,-0.004816,0.006997,0.249902,0,0);-ms-transform:matrix(0.171983,-0.004816,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171983,-0.004816,0.006997,0.249902,0,0);}
.m21d5_c00001{transform:matrix(0.172020,-0.003956,0.005748,0.249934,0,0);-ms-transform:matrix(0.172020,-0.003956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172020,-0.003956,0.005748,0.249934,0,0);}
.mcd0_c00001{transform:matrix(0.172023,-0.004989,0.007247,0.249895,0,0);-ms-transform:matrix(0.172023,-0.004989,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172023,-0.004989,0.007247,0.249895,0,0);}
.m1816_c00001{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m1dc1_c00001{transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172035,0.000000,0.000000,0.250000,0,0);}
.m1140_c00001{transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172040,0.000000,0.000000,0.250000,0,0);}
.m1611_c00001{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m198a_c00001{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m9c9_c00001{transform:matrix(0.172083,0.002409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172083,0.002409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172083,0.002409,-0.003500,0.249976,0,0);}
.m14e2_c00001{transform:matrix(0.172091,0.005685,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172091,0.005685,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172091,0.005685,-0.008254,0.249864,0,0);}
.m1be1_c00001{transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172095,0.000000,0.000000,0.250000,0,0);}
.m21cd_c00001{transform:matrix(0.172109,-0.003959,0.005748,0.249934,0,0);-ms-transform:matrix(0.172109,-0.003959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172109,-0.003959,0.005748,0.249934,0,0);}
.m15a7_c00001{transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172110,0.000000,0.000000,0.250000,0,0);}
.m7c4_c00001{transform:matrix(0.172118,-0.004819,0.006997,0.249902,0,0);-ms-transform:matrix(0.172118,-0.004819,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172118,-0.004819,0.006997,0.249902,0,0);}
.m1bfd_c00001{transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172120,0.000000,0.000000,0.250000,0,0);}
.m2451_c00001{transform:matrix(0.172123,-0.003787,0.005499,0.249940,0,0);-ms-transform:matrix(0.172123,-0.003787,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172123,-0.003787,0.005499,0.249940,0,0);}
.m1c8c_c00001{transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172135,0.000000,0.000000,0.250000,0,0);}
.m1fca_c00001{transform:matrix(0.172136,-0.004303,0.006248,0.249922,0,0);-ms-transform:matrix(0.172136,-0.004303,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172136,-0.004303,0.006248,0.249922,0,0);}
.m166e_c00001{transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172140,0.000000,0.000000,0.250000,0,0);}
.m21b0_c00001{transform:matrix(0.172154,-0.003960,0.005748,0.249934,0,0);-ms-transform:matrix(0.172154,-0.003960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172154,-0.003960,0.005748,0.249934,0,0);}
.m188b_c00001{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.md66_c00001{transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172160,0.000000,0.000000,0.250000,0,0);}
.m1ebe_c00001{transform:matrix(0.172162,-0.004476,0.006498,0.249916,0,0);-ms-transform:matrix(0.172162,-0.004476,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172162,-0.004476,0.006498,0.249916,0,0);}
.m21c2_c00001{transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);-ms-transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172174,-0.003960,0.005748,0.249934,0,0);}
.m2b4_c00001{transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);}
.m117b_c00001{transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172190,0.000000,0.000000,0.250000,0,0);}
.m55e_c00001{transform:matrix(0.172200,0.001894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172200,0.001894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172200,0.001894,-0.002750,0.249985,0,0);}
.m106a_c00001{transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172205,0.000000,0.000000,0.250000,0,0);}
.m12c0_c00001{transform:matrix(0.172206,0.004305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172206,0.004305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172206,0.004305,-0.006248,0.249922,0,0);}
.m1681_c00001{transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172215,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.m1913_c00001{transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172230,0.000000,0.000000,0.250000,0,0);}
.mcd2_c00001{transform:matrix(0.172238,-0.004995,0.007247,0.249895,0,0);-ms-transform:matrix(0.172238,-0.004995,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172238,-0.004995,0.007247,0.249895,0,0);}
.m408_c00001{transform:matrix(0.172247,-0.003617,0.005249,0.249945,0,0);-ms-transform:matrix(0.172247,-0.003617,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172247,-0.003617,0.005249,0.249945,0,0);}
.m168f_c00001{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb7e_c00001{transform:matrix(0.172256,-0.005690,0.008254,0.249864,0,0);-ms-transform:matrix(0.172256,-0.005690,0.008254,0.249864,0,0);-webkit-transform:matrix(0.172256,-0.005690,0.008254,0.249864,0,0);}
.m12bd_c00001{transform:matrix(0.172256,0.004306,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172256,0.004306,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172256,0.004306,-0.006248,0.249922,0,0);}
.m1983_c00001{transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172260,0.000000,0.000000,0.250000,0,0);}
.m1f5b_c00001{transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172270,0.000000,0.000000,0.250000,0,0);}
.m17a7_c00001{transform:matrix(0.172277,-0.003101,0.004499,0.249960,0,0);-ms-transform:matrix(0.172277,-0.003101,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172277,-0.003101,0.004499,0.249960,0,0);}
.m60a_c00001{transform:matrix(0.172298,-0.007244,0.010501,0.249779,0,0);-ms-transform:matrix(0.172298,-0.007244,0.010501,0.249779,0,0);-webkit-transform:matrix(0.172298,-0.007244,0.010501,0.249779,0,0);}
.m2338_c00001{transform:matrix(0.172322,0.003102,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172322,0.003102,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172322,0.003102,-0.004499,0.249960,0,0);}
.m206d_c00001{transform:matrix(0.172332,-0.005342,0.007746,0.249880,0,0);-ms-transform:matrix(0.172332,-0.005342,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172332,-0.005342,0.007746,0.249880,0,0);}
.m9c0_c00001{transform:matrix(0.172350,-0.006556,0.009503,0.249819,0,0);-ms-transform:matrix(0.172350,-0.006556,0.009503,0.249819,0,0);-webkit-transform:matrix(0.172350,-0.006556,0.009503,0.249819,0,0);}
.mb5e_c00001{transform:matrix(0.172354,-0.006729,0.009752,0.249810,0,0);-ms-transform:matrix(0.172354,-0.006729,0.009752,0.249810,0,0);-webkit-transform:matrix(0.172354,-0.006729,0.009752,0.249810,0,0);}
.m1511_c00001{transform:matrix(0.172356,0.005693,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172356,0.005693,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172356,0.005693,-0.008254,0.249864,0,0);}
.m3ee_c00001{transform:matrix(0.172367,-0.004826,0.006997,0.249902,0,0);-ms-transform:matrix(0.172367,-0.004826,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172367,-0.004826,0.006997,0.249902,0,0);}
.m27f9_c00001{transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172370,0.000000,0.000000,0.250000,0,0);}
.m2454_c00001{transform:matrix(0.172373,-0.003792,0.005499,0.249940,0,0);-ms-transform:matrix(0.172373,-0.003792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172373,-0.003792,0.005499,0.249940,0,0);}
.mbbf_c00001{transform:matrix(0.172395,0.001896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172395,0.001896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172395,0.001896,-0.002750,0.249985,0,0);}
.m11cf_c00001{transform:matrix(0.172408,-0.003793,0.005499,0.249940,0,0);-ms-transform:matrix(0.172408,-0.003793,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172408,-0.003793,0.005499,0.249940,0,0);}
.m11bf_c00001{transform:matrix(0.172418,-0.003793,0.005499,0.249940,0,0);-ms-transform:matrix(0.172418,-0.003793,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172418,-0.003793,0.005499,0.249940,0,0);}
.m1698_c00001{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.md95_c00001{transform:matrix(0.172438,0.002069,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172438,0.002069,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172438,0.002069,-0.003000,0.249982,0,0);}
.mba1_c00001{transform:matrix(0.172458,0.002069,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172458,0.002069,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172458,0.002069,-0.003000,0.249982,0,0);}
.mcf1_c00001{transform:matrix(0.172462,-0.005001,0.007247,0.249895,0,0);-ms-transform:matrix(0.172462,-0.005001,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172462,-0.005001,0.007247,0.249895,0,0);}
.m2046_c00001{transform:matrix(0.172472,-0.005347,0.007746,0.249880,0,0);-ms-transform:matrix(0.172472,-0.005347,0.007746,0.249880,0,0);-webkit-transform:matrix(0.172472,-0.005347,0.007746,0.249880,0,0);}
.m1cb5_c00001{transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172485,0.000000,0.000000,0.250000,0,0);}
.mde9_c00001{transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);}
.m11b7_c00001{transform:matrix(0.172493,-0.003795,0.005499,0.249940,0,0);-ms-transform:matrix(0.172493,-0.003795,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172493,-0.003795,0.005499,0.249940,0,0);}
.m7bc_c00001{transform:matrix(0.172497,-0.004830,0.006997,0.249902,0,0);-ms-transform:matrix(0.172497,-0.004830,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172497,-0.004830,0.006997,0.249902,0,0);}
.m6f8_c00001{transform:matrix(0.172501,0.004313,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172501,0.004313,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172501,0.004313,-0.006248,0.249922,0,0);}
.m5f_c00001{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m19b1_c00001{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.mbd1_c00001{transform:matrix(0.172555,0.001898,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172555,0.001898,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172555,0.001898,-0.002750,0.249985,0,0);}
.m20e6_c00001{transform:matrix(0.172561,0.004314,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172561,0.004314,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172561,0.004314,-0.006248,0.249922,0,0);}
.m2725_c00001{transform:matrix(0.172565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172565,0.000000,0.000000,0.250000,0,0);}
.mf0d_c00001{transform:matrix(0.172567,0.003106,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172567,0.003106,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172567,0.003106,-0.004499,0.249960,0,0);}
.m1de9_c00001{transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172570,0.000000,0.000000,0.250000,0,0);}
.m9e7_c00001{transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172580,0.000000,0.000000,0.250000,0,0);}
.m660_c00001{transform:matrix(0.172585,-0.007083,0.010252,0.249790,0,0);-ms-transform:matrix(0.172585,-0.007083,0.010252,0.249790,0,0);-webkit-transform:matrix(0.172585,-0.007083,0.010252,0.249790,0,0);}
.m713_c00001{transform:matrix(0.172591,0.004315,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172591,0.004315,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172591,0.004315,-0.006248,0.249922,0,0);}
.m2687_c00001{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m40e_c00001{transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);-ms-transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);}
.m19cd_c00001{transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172605,0.000000,0.000000,0.250000,0,0);}
.m46f_c00001{transform:matrix(0.172610,-0.005875,0.008504,0.249855,0,0);-ms-transform:matrix(0.172610,-0.005875,0.008504,0.249855,0,0);-webkit-transform:matrix(0.172610,-0.005875,0.008504,0.249855,0,0);}
.m28fe_c00001{transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172615,0.000000,0.000000,0.250000,0,0);}
.m1ba8_c00001{transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);}
.md1e_c00001{transform:matrix(0.172637,-0.005006,0.007247,0.249895,0,0);-ms-transform:matrix(0.172637,-0.005006,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172637,-0.005006,0.007247,0.249895,0,0);}
.m1b33_c00001{transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172645,0.000000,0.000000,0.250000,0,0);}
.m67d_c00001{transform:matrix(0.172655,-0.007086,0.010252,0.249790,0,0);-ms-transform:matrix(0.172655,-0.007086,0.010252,0.249790,0,0);-webkit-transform:matrix(0.172655,-0.007086,0.010252,0.249790,0,0);}
.m14d1_c00001{transform:matrix(0.172666,0.005704,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172666,0.005704,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172666,0.005704,-0.008254,0.249864,0,0);}
.m20ec_c00001{transform:matrix(0.172671,0.004317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172671,0.004317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172671,0.004317,-0.006248,0.249922,0,0);}
.m864_c00001{transform:matrix(0.172677,-0.004835,0.006997,0.249902,0,0);-ms-transform:matrix(0.172677,-0.004835,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172677,-0.004835,0.006997,0.249902,0,0);}
.m1986_c00001{transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172680,0.000000,0.000000,0.250000,0,0);}
.m984_c00001{transform:matrix(0.172680,-0.006568,0.009503,0.249819,0,0);-ms-transform:matrix(0.172680,-0.006568,0.009503,0.249819,0,0);-webkit-transform:matrix(0.172680,-0.006568,0.009503,0.249819,0,0);}
.m378_c00001{transform:matrix(0.172690,-0.002245,0.003250,0.249979,0,0);-ms-transform:matrix(0.172690,-0.002245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172690,-0.002245,0.003250,0.249979,0,0);}
.m723_c00001{transform:matrix(0.172691,0.004317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172691,0.004317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172691,0.004317,-0.006248,0.249922,0,0);}
.md15_c00001{transform:matrix(0.172692,-0.005008,0.007247,0.249895,0,0);-ms-transform:matrix(0.172692,-0.005008,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172692,-0.005008,0.007247,0.249895,0,0);}
.m1f9a_c00001{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m1378_c00001{transform:matrix(0.172722,-0.004491,0.006498,0.249916,0,0);-ms-transform:matrix(0.172722,-0.004491,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172722,-0.004491,0.006498,0.249916,0,0);}
.m70_c00001{transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);}
.mb3c_c00001{transform:matrix(0.172733,-0.006743,0.009752,0.249810,0,0);-ms-transform:matrix(0.172733,-0.006743,0.009752,0.249810,0,0);-webkit-transform:matrix(0.172733,-0.006743,0.009752,0.249810,0,0);}
.m14f8_c00001{transform:matrix(0.172746,0.005706,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172746,0.005706,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172746,0.005706,-0.008254,0.249864,0,0);}
.m2838_c00001{transform:matrix(0.172750,-0.002246,0.003250,0.249979,0,0);-ms-transform:matrix(0.172750,-0.002246,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172750,-0.002246,0.003250,0.249979,0,0);}
.mf6b_c00001{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m19ad_c00001{transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);}
.m12a6_c00001{transform:matrix(0.172783,0.003801,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172783,0.003801,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172783,0.003801,-0.005499,0.249940,0,0);}
.m94c_c00001{transform:matrix(0.172790,-0.006573,0.009503,0.249819,0,0);-ms-transform:matrix(0.172790,-0.006573,0.009503,0.249819,0,0);-webkit-transform:matrix(0.172790,-0.006573,0.009503,0.249819,0,0);}
.m618_c00001{transform:matrix(0.172792,-0.007956,0.011499,0.249735,0,0);-ms-transform:matrix(0.172792,-0.007956,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172792,-0.007956,0.011499,0.249735,0,0);}
.m1f35_c00001{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m85b_c00001{transform:matrix(0.172802,-0.004838,0.006997,0.249902,0,0);-ms-transform:matrix(0.172802,-0.004838,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172802,-0.004838,0.006997,0.249902,0,0);}
.m16be_c00001{transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172805,0.000000,0.000000,0.250000,0,0);}
.m281_c00001{transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172820,0.000000,0.000000,0.250000,0,0);}
.m1188_c00001{transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);}
.m85f_c00001{transform:matrix(0.172857,-0.004840,0.006997,0.249902,0,0);-ms-transform:matrix(0.172857,-0.004840,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172857,-0.004840,0.006997,0.249902,0,0);}
.mbe9_c00001{transform:matrix(0.172870,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172870,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172870,0.001902,-0.002750,0.249985,0,0);}
.md00_c00001{transform:matrix(0.172872,-0.005013,0.007247,0.249895,0,0);-ms-transform:matrix(0.172872,-0.005013,0.007247,0.249895,0,0);-webkit-transform:matrix(0.172872,-0.005013,0.007247,0.249895,0,0);}
.m2223_c00001{transform:matrix(0.172874,-0.003976,0.005748,0.249934,0,0);-ms-transform:matrix(0.172874,-0.003976,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172874,-0.003976,0.005748,0.249934,0,0);}
.m318_c00001{transform:matrix(0.172880,-0.002247,0.003250,0.249979,0,0);-ms-transform:matrix(0.172880,-0.002247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172880,-0.002247,0.003250,0.249979,0,0);}
.m541_c00001{transform:matrix(0.172885,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172885,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172885,0.001902,-0.002750,0.249985,0,0);}
.ma19_c00001{transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);}
.m1bd3_c00001{transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172905,0.000000,0.000000,0.250000,0,0);}
.m874_c00001{transform:matrix(0.172912,-0.004842,0.006997,0.249902,0,0);-ms-transform:matrix(0.172912,-0.004842,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172912,-0.004842,0.006997,0.249902,0,0);}
.m1367_c00001{transform:matrix(0.172927,0.005015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172927,0.005015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172927,0.005015,-0.007247,0.249895,0,0);}
.m1ad6_c00001{transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172935,0.000000,0.000000,0.250000,0,0);}
.m1ff9_c00001{transform:matrix(0.172936,-0.004323,0.006248,0.249922,0,0);-ms-transform:matrix(0.172936,-0.004323,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172936,-0.004323,0.006248,0.249922,0,0);}
.m180c_c00001{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m3fa_c00001{transform:matrix(0.172957,-0.003632,0.005249,0.249945,0,0);-ms-transform:matrix(0.172957,-0.003632,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172957,-0.003632,0.005249,0.249945,0,0);}
.mec4_c00001{transform:matrix(0.172958,0.002421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172958,0.002421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172958,0.002421,-0.003500,0.249976,0,0);}
.m2d3_c00001{transform:matrix(0.172970,-0.001903,0.002750,0.249985,0,0);-ms-transform:matrix(0.172970,-0.001903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172970,-0.001903,0.002750,0.249985,0,0);}
.m1122_c00001{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.m297b_c00001{transform:matrix(0.172975,-0.003460,0.004999,0.249950,0,0);-ms-transform:matrix(0.172975,-0.003460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172975,-0.003460,0.004999,0.249950,0,0);}
.m188f_c00001{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m227d_c00001{transform:matrix(0.172999,-0.003979,0.005748,0.249934,0,0);-ms-transform:matrix(0.172999,-0.003979,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172999,-0.003979,0.005748,0.249934,0,0);}
.m1175_c00001{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m238d_c00001{transform:matrix(0.173002,-0.004498,0.006498,0.249916,0,0);-ms-transform:matrix(0.173002,-0.004498,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173002,-0.004498,0.006498,0.249916,0,0);}
.m260f_c00001{transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173005,0.000000,0.000000,0.250000,0,0);}
.mf56_c00001{transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173020,0.000000,0.000000,0.250000,0,0);}
.maff_c00001{transform:matrix(0.173033,-0.006755,0.009752,0.249810,0,0);-ms-transform:matrix(0.173033,-0.006755,0.009752,0.249810,0,0);-webkit-transform:matrix(0.173033,-0.006755,0.009752,0.249810,0,0);}
.m26be_c00001{transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173045,0.000000,0.000000,0.250000,0,0);}
.m9a0_c00001{transform:matrix(0.173050,-0.006582,0.009503,0.249819,0,0);-ms-transform:matrix(0.173050,-0.006582,0.009503,0.249819,0,0);-webkit-transform:matrix(0.173050,-0.006582,0.009503,0.249819,0,0);}
.m10b6_c00001{transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173055,0.000000,0.000000,0.250000,0,0);}
.m12a1_c00001{transform:matrix(0.173058,0.003807,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173058,0.003807,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173058,0.003807,-0.005499,0.249940,0,0);}
.m3e_c00001{transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173060,0.000000,0.000000,0.250000,0,0);}
.m1ab4_c00001{transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173065,0.000000,0.000000,0.250000,0,0);}
.m358_c00001{transform:matrix(0.173065,-0.002250,0.003250,0.249979,0,0);-ms-transform:matrix(0.173065,-0.002250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173065,-0.002250,0.003250,0.249979,0,0);}
.m23a9_c00001{transform:matrix(0.173068,-0.003807,0.005499,0.249940,0,0);-ms-transform:matrix(0.173068,-0.003807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173068,-0.003807,0.005499,0.249940,0,0);}
.m7c3_c00001{transform:matrix(0.173077,-0.004846,0.006997,0.249902,0,0);-ms-transform:matrix(0.173077,-0.004846,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173077,-0.004846,0.006997,0.249902,0,0);}
.m1040_c00001{transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);}
.m2694_c00001{transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m2174_c00001{transform:matrix(0.173112,0.004847,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173112,0.004847,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173112,0.004847,-0.006997,0.249902,0,0);}
.m17d9_c00001{transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);}
.m16d3_c00001{transform:matrix(0.173130,-0.005892,0.008504,0.249855,0,0);-ms-transform:matrix(0.173130,-0.005892,0.008504,0.249855,0,0);-webkit-transform:matrix(0.173130,-0.005892,0.008504,0.249855,0,0);}
.ma14_c00001{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.m5a0_c00001{transform:matrix(0.173145,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173145,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173145,0.001905,-0.002750,0.249985,0,0);}
.mf29_c00001{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m108a_c00001{transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173180,0.000000,0.000000,0.250000,0,0);}
.m1c79_c00001{transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);}
.m2426_c00001{transform:matrix(0.173188,-0.003810,0.005499,0.249940,0,0);-ms-transform:matrix(0.173188,-0.003810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173188,-0.003810,0.005499,0.249940,0,0);}
.m4e9_c00001{transform:matrix(0.173205,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173205,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173205,0.001905,-0.002750,0.249985,0,0);}
.m6c5_c00001{transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173216,0.004330,-0.006248,0.249922,0,0);}
.me3e_c00001{transform:matrix(0.173242,0.003118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173242,0.003118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173242,0.003118,-0.004499,0.249960,0,0);}
.m43_c00001{transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173270,0.000000,0.000000,0.250000,0,0);}
.m2806_c00001{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.mc81_c00001{transform:matrix(0.173292,-0.005025,0.007247,0.249895,0,0);-ms-transform:matrix(0.173292,-0.005025,0.007247,0.249895,0,0);-webkit-transform:matrix(0.173292,-0.005025,0.007247,0.249895,0,0);}
.m818_c00001{transform:matrix(0.173297,-0.004852,0.006997,0.249902,0,0);-ms-transform:matrix(0.173297,-0.004852,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173297,-0.004852,0.006997,0.249902,0,0);}
.m1993_c00001{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m2477_c00001{transform:matrix(0.173315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173315,0.000000,0.000000,0.250000,0,0);}
.m67b_c00001{transform:matrix(0.173319,-0.007113,0.010252,0.249790,0,0);-ms-transform:matrix(0.173319,-0.007113,0.010252,0.249790,0,0);-webkit-transform:matrix(0.173319,-0.007113,0.010252,0.249790,0,0);}
.mfab_c00001{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m6ca_c00001{transform:matrix(0.173321,0.004333,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173321,0.004333,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173321,0.004333,-0.006248,0.249922,0,0);}
.m22f6_c00001{transform:matrix(0.173337,0.003120,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173337,0.003120,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173337,0.003120,-0.004499,0.249960,0,0);}
.m183e_c00001{transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173365,0.000000,0.000000,0.250000,0,0);}
.m2149_c00001{transform:matrix(0.173372,0.004854,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173372,0.004854,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173372,0.004854,-0.006997,0.249902,0,0);}
.mcde_c00001{transform:matrix(0.173372,-0.005028,0.007247,0.249895,0,0);-ms-transform:matrix(0.173372,-0.005028,0.007247,0.249895,0,0);-webkit-transform:matrix(0.173372,-0.005028,0.007247,0.249895,0,0);}
.m43d_c00001{transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);-ms-transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173394,-0.003294,0.004749,0.249955,0,0);}
.m18ea_c00001{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.m1428_c00001{transform:matrix(0.173406,-0.004509,0.006498,0.249916,0,0);-ms-transform:matrix(0.173406,-0.004509,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173406,-0.004509,0.006498,0.249916,0,0);}
.m12bc_c00001{transform:matrix(0.173421,0.004336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173421,0.004336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173421,0.004336,-0.006248,0.249922,0,0);}
.m1139_c00001{transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173430,0.000000,0.000000,0.250000,0,0);}
.mc8e_c00001{transform:matrix(0.173442,-0.005030,0.007247,0.249895,0,0);-ms-transform:matrix(0.173442,-0.005030,0.007247,0.249895,0,0);-webkit-transform:matrix(0.173442,-0.005030,0.007247,0.249895,0,0);}
.mf4e_c00001{transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173445,0.000000,0.000000,0.250000,0,0);}
.m183f_c00001{transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173465,0.000000,0.000000,0.250000,0,0);}
.m2849_c00001{transform:matrix(0.173465,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173465,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173465,-0.002255,0.003250,0.249979,0,0);}
.m12b7_c00001{transform:matrix(0.173471,0.004337,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173471,0.004337,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173471,0.004337,-0.006248,0.249922,0,0);}
.m2b8_c00001{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m1c27_c00001{transform:matrix(0.173485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173485,0.000000,0.000000,0.250000,0,0);}
.m2b9_c00001{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m667_c00001{transform:matrix(0.173504,-0.007121,0.010252,0.249790,0,0);-ms-transform:matrix(0.173504,-0.007121,0.010252,0.249790,0,0);-webkit-transform:matrix(0.173504,-0.007121,0.010252,0.249790,0,0);}
.m542_c00001{transform:matrix(0.173505,0.001909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173505,0.001909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173505,0.001909,-0.002750,0.249985,0,0);}
.m927_c00001{transform:matrix(0.173510,-0.006600,0.009503,0.249819,0,0);-ms-transform:matrix(0.173510,-0.006600,0.009503,0.249819,0,0);-webkit-transform:matrix(0.173510,-0.006600,0.009503,0.249819,0,0);}
.m39f_c00001{transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);-ms-transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173510,-0.002256,0.003250,0.249979,0,0);}
.m1829_c00001{transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173515,0.000000,0.000000,0.250000,0,0);}
.m11db_c00001{transform:matrix(0.173518,-0.003817,0.005499,0.249940,0,0);-ms-transform:matrix(0.173518,-0.003817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173518,-0.003817,0.005499,0.249940,0,0);}
.me47_c00001{transform:matrix(0.173522,0.003123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173522,0.003123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173522,0.003123,-0.004499,0.249960,0,0);}
.m2667_c00001{transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173530,0.000000,0.000000,0.250000,0,0);}
.m11c1_c00001{transform:matrix(0.173538,-0.003818,0.005499,0.249940,0,0);-ms-transform:matrix(0.173538,-0.003818,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173538,-0.003818,0.005499,0.249940,0,0);}
.m1a04_c00001{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m1bd9_c00001{transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173555,0.000000,0.000000,0.250000,0,0);}
.m85c_c00001{transform:matrix(0.173572,-0.004860,0.006997,0.249902,0,0);-ms-transform:matrix(0.173572,-0.004860,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173572,-0.004860,0.006997,0.249902,0,0);}
.m2388_c00001{transform:matrix(0.173596,-0.004514,0.006498,0.249916,0,0);-ms-transform:matrix(0.173596,-0.004514,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173596,-0.004514,0.006498,0.249916,0,0);}
.m142d_c00001{transform:matrix(0.173601,-0.004514,0.006498,0.249916,0,0);-ms-transform:matrix(0.173601,-0.004514,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173601,-0.004514,0.006498,0.249916,0,0);}
.mbf9_c00001{transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);}
.m742_c00001{transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173632,0.004862,-0.006997,0.249902,0,0);}
.m2650_c00001{transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);}
.m22c_c00001{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.m10b7_c00001{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.m7ff_c00001{transform:matrix(0.173657,-0.004862,0.006997,0.249902,0,0);-ms-transform:matrix(0.173657,-0.004862,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173657,-0.004862,0.006997,0.249902,0,0);}
.m2666_c00001{transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);}
.mfd4_c00001{transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173670,0.000000,0.000000,0.250000,0,0);}
.me9b_c00001{transform:matrix(0.173673,0.002431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173673,0.002431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173673,0.002431,-0.003500,0.249976,0,0);}
.m1b8a_c00001{transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);}
.m22be_c00001{transform:matrix(0.173678,0.002779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173678,0.002779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173678,0.002779,-0.003999,0.249968,0,0);}
.m1aa0_c00001{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m3da_c00001{transform:matrix(0.173702,-0.004864,0.006997,0.249902,0,0);-ms-transform:matrix(0.173702,-0.004864,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173702,-0.004864,0.006997,0.249902,0,0);}
.mc87_c00001{transform:matrix(0.173712,-0.005038,0.007247,0.249895,0,0);-ms-transform:matrix(0.173712,-0.005038,0.007247,0.249895,0,0);-webkit-transform:matrix(0.173712,-0.005038,0.007247,0.249895,0,0);}
.m71b_c00001{transform:matrix(0.173716,0.004343,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173716,0.004343,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173716,0.004343,-0.006248,0.249922,0,0);}
.m152b_c00001{transform:matrix(0.173720,0.005739,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173720,0.005739,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173720,0.005739,-0.008254,0.249864,0,0);}
.m1468_c00001{transform:matrix(0.173729,0.006608,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173729,0.006608,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173729,0.006608,-0.009503,0.249819,0,0);}
.m1bb8_c00001{transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);}
.m1909_c00001{transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173760,0.000000,0.000000,0.250000,0,0);}
.md78_c00001{transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173770,0.000000,0.000000,0.250000,0,0);}
.m16f4_c00001{transform:matrix(0.173771,-0.004518,0.006498,0.249916,0,0);-ms-transform:matrix(0.173771,-0.004518,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173771,-0.004518,0.006498,0.249916,0,0);}
.m2297_c00001{transform:matrix(0.173774,-0.003302,0.004749,0.249955,0,0);-ms-transform:matrix(0.173774,-0.003302,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173774,-0.003302,0.004749,0.249955,0,0);}
.mc12_c00001{transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);}
.m53e_c00001{transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173789,0.001912,-0.002750,0.249985,0,0);}
.m1_c00001{transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173795,0.000000,0.000000,0.250000,0,0);}
.m21eb_c00001{transform:matrix(0.173800,-0.003476,0.004999,0.249950,0,0);-ms-transform:matrix(0.173800,-0.003476,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173800,-0.003476,0.004999,0.249950,0,0);}
.m1741_c00001{transform:matrix(0.173801,-0.004519,0.006498,0.249916,0,0);-ms-transform:matrix(0.173801,-0.004519,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173801,-0.004519,0.006498,0.249916,0,0);}
.m17ae_c00001{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m1638_c00001{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m1b9d_c00001{transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173835,0.000000,0.000000,0.250000,0,0);}
.m1336_c00001{transform:matrix(0.173852,0.005042,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173852,0.005042,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173852,0.005042,-0.007247,0.249895,0,0);}
.m1ee4_c00001{transform:matrix(0.173861,-0.004520,0.006498,0.249916,0,0);-ms-transform:matrix(0.173861,-0.004520,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173861,-0.004520,0.006498,0.249916,0,0);}
.ma45_c00001{transform:matrix(0.173870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173870,0.000000,0.000000,0.250000,0,0);}
.m282c_c00001{transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);-ms-transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173875,-0.002260,0.003250,0.249979,0,0);}
.m1d41_c00001{transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173890,0.000000,0.000000,0.250000,0,0);}
.m1725_c00001{transform:matrix(0.173891,-0.004521,0.006498,0.249916,0,0);-ms-transform:matrix(0.173891,-0.004521,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173891,-0.004521,0.006498,0.249916,0,0);}
.m12d5_c00001{transform:matrix(0.173922,0.004696,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173922,0.004696,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173922,0.004696,-0.006748,0.249909,0,0);}
.m1167_c00001{transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173930,0.000000,0.000000,0.250000,0,0);}
.m20a5_c00001{transform:matrix(0.173951,-0.005392,0.007746,0.249880,0,0);-ms-transform:matrix(0.173951,-0.005392,0.007746,0.249880,0,0);-webkit-transform:matrix(0.173951,-0.005392,0.007746,0.249880,0,0);}
.m26cd_c00001{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m1096_c00001{transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174035,0.000000,0.000000,0.250000,0,0);}
.m1b78_c00001{transform:matrix(0.174044,-0.003307,0.004749,0.249955,0,0);-ms-transform:matrix(0.174044,-0.003307,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174044,-0.003307,0.004749,0.249955,0,0);}
.m249b_c00001{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.m1ba9_c00001{transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174060,0.000000,0.000000,0.250000,0,0);}
.m285d_c00001{transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174065,0.000000,0.000000,0.250000,0,0);}
.m1123_c00001{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.m12e4_c00001{transform:matrix(0.174077,0.004700,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174077,0.004700,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174077,0.004700,-0.006748,0.249909,0,0);}
.mc4e_c00001{transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174085,0.000000,0.000000,0.250000,0,0);}
.m177c_c00001{transform:matrix(0.174091,-0.004526,0.006498,0.249916,0,0);-ms-transform:matrix(0.174091,-0.004526,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174091,-0.004526,0.006498,0.249916,0,0);}
.m1bda_c00001{transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174105,0.000000,0.000000,0.250000,0,0);}
.m1a01_c00001{transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174110,0.000000,0.000000,0.250000,0,0);}
.m2006_c00001{transform:matrix(0.174131,-0.004353,0.006248,0.249922,0,0);-ms-transform:matrix(0.174131,-0.004353,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174131,-0.004353,0.006248,0.249922,0,0);}
.m212f_c00001{transform:matrix(0.174132,0.004876,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174132,0.004876,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174132,0.004876,-0.006997,0.249902,0,0);}
.m4ca_c00001{transform:matrix(0.174134,0.001915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174134,0.001915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174134,0.001915,-0.002750,0.249985,0,0);}
.m1819_c00001{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m1abc_c00001{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.m1a8d_c00001{transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174170,0.000000,0.000000,0.250000,0,0);}
.mb05_c00001{transform:matrix(0.174177,-0.006800,0.009752,0.249810,0,0);-ms-transform:matrix(0.174177,-0.006800,0.009752,0.249810,0,0);-webkit-transform:matrix(0.174177,-0.006800,0.009752,0.249810,0,0);}
.m28ec_c00001{transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);}
.m2744_c00001{transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174190,0.000000,0.000000,0.250000,0,0);}
.ma7d_c00001{transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174195,0.000000,0.000000,0.250000,0,0);}
.m138d_c00001{transform:matrix(0.174196,-0.004529,0.006498,0.249916,0,0);-ms-transform:matrix(0.174196,-0.004529,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174196,-0.004529,0.006498,0.249916,0,0);}
.m2b1_c00001{transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174210,0.000000,0.000000,0.250000,0,0);}
.m1fa2_c00001{transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);}
.mec7_c00001{transform:matrix(0.174218,0.002439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174218,0.002439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174218,0.002439,-0.003500,0.249976,0,0);}
.m7c9_c00001{transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);-ms-transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174222,-0.004878,0.006997,0.249902,0,0);}
.mc9_c00001{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.ma93_c00001{transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174235,0.000000,0.000000,0.250000,0,0);}
.m6be_c00001{transform:matrix(0.174236,0.004356,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174236,0.004356,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174236,0.004356,-0.006248,0.249922,0,0);}
.m561_c00001{transform:matrix(0.174254,0.001917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174254,0.001917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174254,0.001917,-0.002750,0.249985,0,0);}
.mfb0_c00001{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.mca1_c00001{transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);-ms-transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174262,-0.005054,0.007247,0.249895,0,0);}
.m13f3_c00001{transform:matrix(0.174266,-0.004531,0.006498,0.249916,0,0);-ms-transform:matrix(0.174266,-0.004531,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174266,-0.004531,0.006498,0.249916,0,0);}
.m26ba_c00001{transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174270,0.000000,0.000000,0.250000,0,0);}
.m11cd_c00001{transform:matrix(0.174273,-0.003834,0.005499,0.249940,0,0);-ms-transform:matrix(0.174273,-0.003834,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174273,-0.003834,0.005499,0.249940,0,0);}
.m19c_c00001{transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174290,0.000000,0.000000,0.250000,0,0);}
.m13f6_c00001{transform:matrix(0.174321,-0.004532,0.006498,0.249916,0,0);-ms-transform:matrix(0.174321,-0.004532,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174321,-0.004532,0.006498,0.249916,0,0);}
.m867_c00001{transform:matrix(0.174327,-0.004881,0.006997,0.249902,0,0);-ms-transform:matrix(0.174327,-0.004881,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174327,-0.004881,0.006997,0.249902,0,0);}
.m26fa_c00001{transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174335,0.000000,0.000000,0.250000,0,0);}
.me08_c00001{transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174355,0.000000,0.000000,0.250000,0,0);}
.m1700_c00001{transform:matrix(0.174371,-0.004534,0.006498,0.249916,0,0);-ms-transform:matrix(0.174371,-0.004534,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174371,-0.004534,0.006498,0.249916,0,0);}
.m126c_c00001{transform:matrix(0.174371,-0.004708,0.006748,0.249909,0,0);-ms-transform:matrix(0.174371,-0.004708,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174371,-0.004708,0.006748,0.249909,0,0);}
.m528_c00001{transform:matrix(0.174379,0.001918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174379,0.001918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174379,0.001918,-0.002750,0.249985,0,0);}
.m1939_c00001{transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174380,0.000000,0.000000,0.250000,0,0);}
.m7c6_c00001{transform:matrix(0.174382,-0.004883,0.006997,0.249902,0,0);-ms-transform:matrix(0.174382,-0.004883,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174382,-0.004883,0.006997,0.249902,0,0);}
.m701_c00001{transform:matrix(0.174401,0.004360,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174401,0.004360,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174401,0.004360,-0.006248,0.249922,0,0);}
.mc37_c00001{transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174420,0.000000,0.000000,0.250000,0,0);}
.m16f6_c00001{transform:matrix(0.174421,-0.004535,0.006498,0.249916,0,0);-ms-transform:matrix(0.174421,-0.004535,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174421,-0.004535,0.006498,0.249916,0,0);}
.m2846_c00001{transform:matrix(0.174430,-0.002268,0.003250,0.249979,0,0);-ms-transform:matrix(0.174430,-0.002268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174430,-0.002268,0.003250,0.249979,0,0);}
.m6c4_c00001{transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174435,0.004361,-0.006248,0.249922,0,0);}
.m1e12_c00001{transform:matrix(0.174450,-0.004187,0.005998,0.249928,0,0);-ms-transform:matrix(0.174450,-0.004187,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174450,-0.004187,0.005998,0.249928,0,0);}
.m10d8_c00001{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m16bf_c00001{transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174495,0.000000,0.000000,0.250000,0,0);}
.m2058_c00001{transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);-ms-transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);-webkit-transform:matrix(0.174506,-0.005410,0.007746,0.249880,0,0);}
.m986_c00001{transform:matrix(0.174509,-0.006638,0.009503,0.249819,0,0);-ms-transform:matrix(0.174509,-0.006638,0.009503,0.249819,0,0);-webkit-transform:matrix(0.174509,-0.006638,0.009503,0.249819,0,0);}
.m161c_c00001{transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174510,0.000000,0.000000,0.250000,0,0);}
.m16a8_c00001{transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174515,0.000000,0.000000,0.250000,0,0);}
.m172f_c00001{transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);-ms-transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174546,-0.004538,0.006498,0.249916,0,0);}
.m22ba_c00001{transform:matrix(0.174548,0.002793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174548,0.002793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174548,0.002793,-0.003999,0.249968,0,0);}
.m181_c00001{transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174555,0.000000,0.000000,0.250000,0,0);}
.m27da_c00001{transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174560,0.000000,0.000000,0.250000,0,0);}
.mff_c00001{transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174570,0.000000,0.000000,0.250000,0,0);}
.m911_c00001{transform:matrix(0.174574,-0.006640,0.009503,0.249819,0,0);-ms-transform:matrix(0.174574,-0.006640,0.009503,0.249819,0,0);-webkit-transform:matrix(0.174574,-0.006640,0.009503,0.249819,0,0);}
.m1d7b_c00001{transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);}
.m21ad_c00001{transform:matrix(0.174609,-0.004016,0.005748,0.249934,0,0);-ms-transform:matrix(0.174609,-0.004016,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174609,-0.004016,0.005748,0.249934,0,0);}
.m271_c00001{transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174615,0.000000,0.000000,0.250000,0,0);}
.m15c5_c00001{transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174620,0.000000,0.000000,0.250000,0,0);}
.m18c2_c00001{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.md5e_c00001{transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174630,0.000000,0.000000,0.250000,0,0);}
.m39d_c00001{transform:matrix(0.174630,-0.002270,0.003250,0.249979,0,0);-ms-transform:matrix(0.174630,-0.002270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174630,-0.002270,0.003250,0.249979,0,0);}
.mb34_c00001{transform:matrix(0.174647,-0.006818,0.009752,0.249810,0,0);-ms-transform:matrix(0.174647,-0.006818,0.009752,0.249810,0,0);-webkit-transform:matrix(0.174647,-0.006818,0.009752,0.249810,0,0);}
.mba_c00001{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m1828_c00001{transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174655,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00001{transform:matrix(0.174660,-0.002271,0.003250,0.249979,0,0);-ms-transform:matrix(0.174660,-0.002271,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174660,-0.002271,0.003250,0.249979,0,0);}
.m11f5_c00001{transform:matrix(0.174663,-0.003843,0.005499,0.249940,0,0);-ms-transform:matrix(0.174663,-0.003843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174663,-0.003843,0.005499,0.249940,0,0);}
.m20d8_c00001{transform:matrix(0.174665,0.004367,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174665,0.004367,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174665,0.004367,-0.006248,0.249922,0,0);}
.m7c8_c00001{transform:matrix(0.174672,-0.004891,0.006997,0.249902,0,0);-ms-transform:matrix(0.174672,-0.004891,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174672,-0.004891,0.006997,0.249902,0,0);}
.m23f5_c00001{transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);-ms-transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174673,-0.003843,0.005499,0.249940,0,0);}
.me37_c00001{transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174685,0.000000,0.000000,0.250000,0,0);}
.m1ea2_c00001{transform:matrix(0.174691,-0.004542,0.006498,0.249916,0,0);-ms-transform:matrix(0.174691,-0.004542,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174691,-0.004542,0.006498,0.249916,0,0);}
.m14a6_c00001{transform:matrix(0.174700,0.005771,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174700,0.005771,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174700,0.005771,-0.008254,0.249864,0,0);}
.m2004_c00001{transform:matrix(0.174705,-0.004368,0.006248,0.249922,0,0);-ms-transform:matrix(0.174705,-0.004368,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174705,-0.004368,0.006248,0.249922,0,0);}
.m820_c00001{transform:matrix(0.174717,-0.004892,0.006997,0.249902,0,0);-ms-transform:matrix(0.174717,-0.004892,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174717,-0.004892,0.006997,0.249902,0,0);}
.m597_c00001{transform:matrix(0.174719,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174719,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174719,0.001922,-0.002750,0.249985,0,0);}
.m77c_c00001{transform:matrix(0.174724,0.004019,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174724,0.004019,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174724,0.004019,-0.005748,0.249934,0,0);}
.md33_c00001{transform:matrix(0.174727,-0.005067,0.007247,0.249895,0,0);-ms-transform:matrix(0.174727,-0.005067,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174727,-0.005067,0.007247,0.249895,0,0);}
.m1934_c00001{transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174730,0.000000,0.000000,0.250000,0,0);}
.ma30_c00001{transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174745,0.000000,0.000000,0.250000,0,0);}
.m15ba_c00001{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m3fb_c00001{transform:matrix(0.174756,-0.003670,0.005249,0.249945,0,0);-ms-transform:matrix(0.174756,-0.003670,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174756,-0.003670,0.005249,0.249945,0,0);}
.md3f_c00001{transform:matrix(0.174767,-0.005068,0.007247,0.249895,0,0);-ms-transform:matrix(0.174767,-0.005068,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174767,-0.005068,0.007247,0.249895,0,0);}
.ma43_c00001{transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174790,0.000000,0.000000,0.250000,0,0);}
.m1af0_c00001{transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174795,0.000000,0.000000,0.250000,0,0);}
.mc25_c00001{transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);}
.mdf2_c00001{transform:matrix(0.174815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174815,0.000000,0.000000,0.250000,0,0);}
.m724_c00001{transform:matrix(0.174815,0.004370,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174815,0.004370,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174815,0.004370,-0.006248,0.249922,0,0);}
.m177f_c00001{transform:matrix(0.174816,-0.004545,0.006498,0.249916,0,0);-ms-transform:matrix(0.174816,-0.004545,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174816,-0.004545,0.006498,0.249916,0,0);}
.m1830_c00001{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.mb2f_c00001{transform:matrix(0.174827,-0.006825,0.009752,0.249810,0,0);-ms-transform:matrix(0.174827,-0.006825,0.009752,0.249810,0,0);-webkit-transform:matrix(0.174827,-0.006825,0.009752,0.249810,0,0);}
.m292_c00001{transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174840,0.000000,0.000000,0.250000,0,0);}
.me1e_c00001{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m1946_c00001{transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174865,0.000000,0.000000,0.250000,0,0);}
.m165c_c00001{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m120e_c00001{transform:matrix(0.174876,-0.004722,0.006748,0.249909,0,0);-ms-transform:matrix(0.174876,-0.004722,0.006748,0.249909,0,0);-webkit-transform:matrix(0.174876,-0.004722,0.006748,0.249909,0,0);}
.m5e6_c00001{transform:matrix(0.174878,-0.007877,0.011250,0.249747,0,0);-ms-transform:matrix(0.174878,-0.007877,0.011250,0.249747,0,0);-webkit-transform:matrix(0.174878,-0.007877,0.011250,0.249747,0,0);}
.mc7a_c00001{transform:matrix(0.174886,-0.005072,0.007247,0.249895,0,0);-ms-transform:matrix(0.174886,-0.005072,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174886,-0.005072,0.007247,0.249895,0,0);}
.m18e2_c00001{transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174890,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00001{transform:matrix(0.174918,-0.002799,0.003999,0.249968,0,0);-ms-transform:matrix(0.174918,-0.002799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174918,-0.002799,0.003999,0.249968,0,0);}
.mccc_c00001{transform:matrix(0.174926,-0.005073,0.007247,0.249895,0,0);-ms-transform:matrix(0.174926,-0.005073,0.007247,0.249895,0,0);-webkit-transform:matrix(0.174926,-0.005073,0.007247,0.249895,0,0);}
.m21c7_c00001{transform:matrix(0.174929,-0.004023,0.005748,0.249934,0,0);-ms-transform:matrix(0.174929,-0.004023,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174929,-0.004023,0.005748,0.249934,0,0);}
.me16_c00001{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m290a_c00001{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m169b_c00001{transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174955,0.000000,0.000000,0.250000,0,0);}
.m958_c00001{transform:matrix(0.174968,-0.006655,0.009503,0.249819,0,0);-ms-transform:matrix(0.174968,-0.006655,0.009503,0.249819,0,0);-webkit-transform:matrix(0.174968,-0.006655,0.009503,0.249819,0,0);}
.m28dd_c00001{transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174970,0.000000,0.000000,0.250000,0,0);}
.m18b4_c00001{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.m1e1a_c00001{transform:matrix(0.174976,-0.004549,0.006498,0.249916,0,0);-ms-transform:matrix(0.174976,-0.004549,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174976,-0.004549,0.006498,0.249916,0,0);}
.m24_c00001{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m1a80_c00001{transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174985,0.000000,0.000000,0.250000,0,0);}
.m159c_c00001{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m1eff_c00001{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m96d_c00001{transform:matrix(0.175018,-0.006657,0.009503,0.249819,0,0);-ms-transform:matrix(0.175018,-0.006657,0.009503,0.249819,0,0);-webkit-transform:matrix(0.175018,-0.006657,0.009503,0.249819,0,0);}
.m1b9c_c00001{transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);}
.m1f39_c00001{transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175045,0.000000,0.000000,0.250000,0,0);}
.m422_c00001{transform:matrix(0.175051,-0.003676,0.005249,0.249945,0,0);-ms-transform:matrix(0.175051,-0.003676,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175051,-0.003676,0.005249,0.249945,0,0);}
.m243e_c00001{transform:matrix(0.175063,-0.003851,0.005499,0.249940,0,0);-ms-transform:matrix(0.175063,-0.003851,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175063,-0.003851,0.005499,0.249940,0,0);}
.m21e_c00001{transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175065,0.000000,0.000000,0.250000,0,0);}
.m1705_c00001{transform:matrix(0.175066,-0.004552,0.006498,0.249916,0,0);-ms-transform:matrix(0.175066,-0.004552,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175066,-0.004552,0.006498,0.249916,0,0);}
.m1cd8_c00001{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m2326_c00001{transform:matrix(0.175077,0.003151,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175077,0.003151,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175077,0.003151,-0.004499,0.249960,0,0);}
.mf54_c00001{transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175080,0.000000,0.000000,0.250000,0,0);}
.me43_c00001{transform:matrix(0.175082,0.003151,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175082,0.003151,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175082,0.003151,-0.004499,0.249960,0,0);}
.mfb5_c00001{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m1ba5_c00001{transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);}
.m9ef_c00001{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.m95c_c00001{transform:matrix(0.175108,-0.006661,0.009503,0.249819,0,0);-ms-transform:matrix(0.175108,-0.006661,0.009503,0.249819,0,0);-webkit-transform:matrix(0.175108,-0.006661,0.009503,0.249819,0,0);}
.m285c_c00001{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m13aa_c00001{transform:matrix(0.175121,-0.004553,0.006498,0.249916,0,0);-ms-transform:matrix(0.175121,-0.004553,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175121,-0.004553,0.006498,0.249916,0,0);}
.m18e_c00001{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m1787_c00001{transform:matrix(0.175151,-0.004554,0.006498,0.249916,0,0);-ms-transform:matrix(0.175151,-0.004554,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175151,-0.004554,0.006498,0.249916,0,0);}
.m295_c00001{transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);}
.m98_c00001{transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175165,0.000000,0.000000,0.250000,0,0);}
.m13c3_c00001{transform:matrix(0.175171,-0.004554,0.006498,0.249916,0,0);-ms-transform:matrix(0.175171,-0.004554,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175171,-0.004554,0.006498,0.249916,0,0);}
.m1240_c00001{transform:matrix(0.175171,-0.004730,0.006748,0.249909,0,0);-ms-transform:matrix(0.175171,-0.004730,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175171,-0.004730,0.006748,0.249909,0,0);}
.m50f_c00001{transform:matrix(0.175184,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175184,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175184,0.001927,-0.002750,0.249985,0,0);}
.m1447_c00001{transform:matrix(0.175186,-0.004730,0.006748,0.249909,0,0);-ms-transform:matrix(0.175186,-0.004730,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175186,-0.004730,0.006748,0.249909,0,0);}
.m1c29_c00001{transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175195,0.000000,0.000000,0.250000,0,0);}
.m1426_c00001{transform:matrix(0.175196,-0.004555,0.006498,0.249916,0,0);-ms-transform:matrix(0.175196,-0.004555,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175196,-0.004555,0.006498,0.249916,0,0);}
.m2460_c00001{transform:matrix(0.175198,-0.003854,0.005499,0.249940,0,0);-ms-transform:matrix(0.175198,-0.003854,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175198,-0.003854,0.005499,0.249940,0,0);}
.m16ae_c00001{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m30a_c00001{transform:matrix(0.175215,-0.002278,0.003250,0.249979,0,0);-ms-transform:matrix(0.175215,-0.002278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175215,-0.002278,0.003250,0.249979,0,0);}
.mbd3_c00001{transform:matrix(0.175219,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175219,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175219,0.001927,-0.002750,0.249985,0,0);}
.m301_c00001{transform:matrix(0.175225,-0.002278,0.003250,0.249979,0,0);-ms-transform:matrix(0.175225,-0.002278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175225,-0.002278,0.003250,0.249979,0,0);}
.m20d0_c00001{transform:matrix(0.175225,0.004381,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175225,0.004381,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175225,0.004381,-0.006248,0.249922,0,0);}
.m645_c00001{transform:matrix(0.175227,-0.007192,0.010252,0.249790,0,0);-ms-transform:matrix(0.175227,-0.007192,0.010252,0.249790,0,0);-webkit-transform:matrix(0.175227,-0.007192,0.010252,0.249790,0,0);}
.m15f8_c00001{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.mbdf_c00001{transform:matrix(0.175234,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175234,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175234,0.001928,-0.002750,0.249985,0,0);}
.m1d95_c00001{transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175240,0.000000,0.000000,0.250000,0,0);}
.m1412_c00001{transform:matrix(0.175241,-0.004556,0.006498,0.249916,0,0);-ms-transform:matrix(0.175241,-0.004556,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175241,-0.004556,0.006498,0.249916,0,0);}
.m1d7a_c00001{transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175245,0.000000,0.000000,0.250000,0,0);}
.mdfb_c00001{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m18e7_c00001{transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175260,0.000000,0.000000,0.250000,0,0);}
.m6ff_c00001{transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);}
.m4ba_c00001{transform:matrix(0.175265,-0.005614,0.008004,0.249872,0,0);-ms-transform:matrix(0.175265,-0.005614,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175265,-0.005614,0.008004,0.249872,0,0);}
.m1242_c00001{transform:matrix(0.175271,-0.004732,0.006748,0.249909,0,0);-ms-transform:matrix(0.175271,-0.004732,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175271,-0.004732,0.006748,0.249909,0,0);}
.m2523_c00001{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m662_c00001{transform:matrix(0.175277,-0.007194,0.010252,0.249790,0,0);-ms-transform:matrix(0.175277,-0.007194,0.010252,0.249790,0,0);-webkit-transform:matrix(0.175277,-0.007194,0.010252,0.249790,0,0);}
.mdb0_c00001{transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175280,0.000000,0.000000,0.250000,0,0);}
.m484_c00001{transform:matrix(0.175291,-0.005259,0.007497,0.249888,0,0);-ms-transform:matrix(0.175291,-0.005259,0.007497,0.249888,0,0);-webkit-transform:matrix(0.175291,-0.005259,0.007497,0.249888,0,0);}
.m21ae_c00001{transform:matrix(0.175309,-0.004032,0.005748,0.249934,0,0);-ms-transform:matrix(0.175309,-0.004032,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175309,-0.004032,0.005748,0.249934,0,0);}
.m28c0_c00001{transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175310,0.000000,0.000000,0.250000,0,0);}
.m12b6_c00001{transform:matrix(0.175320,0.004383,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175320,0.004383,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175320,0.004383,-0.006248,0.249922,0,0);}
.m2874_c00001{transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175340,0.000000,0.000000,0.250000,0,0);}
.maaf_c00001{transform:matrix(0.175341,-0.004559,0.006498,0.249916,0,0);-ms-transform:matrix(0.175341,-0.004559,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175341,-0.004559,0.006498,0.249916,0,0);}
.m1b87_c00001{transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);}
.m205_c00001{transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175355,0.000000,0.000000,0.250000,0,0);}
.m89c_c00001{transform:matrix(0.175373,-0.003332,0.004749,0.249955,0,0);-ms-transform:matrix(0.175373,-0.003332,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175373,-0.003332,0.004749,0.249955,0,0);}
.mfbe_c00001{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m2115_c00001{transform:matrix(0.175386,0.004911,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175386,0.004911,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175386,0.004911,-0.006997,0.249902,0,0);}
.m1179_c00001{transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175390,0.000000,0.000000,0.250000,0,0);}
.m12b4_c00001{transform:matrix(0.175395,0.004385,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175395,0.004385,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175395,0.004385,-0.006248,0.249922,0,0);}
.m13db_c00001{transform:matrix(0.175396,-0.004560,0.006498,0.249916,0,0);-ms-transform:matrix(0.175396,-0.004560,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175396,-0.004560,0.006498,0.249916,0,0);}
.m214_c00001{transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175410,0.000000,0.000000,0.250000,0,0);}
.me22_c00001{transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175420,0.000000,0.000000,0.250000,0,0);}
.m154c_c00001{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.m1a0a_c00001{transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175435,0.000000,0.000000,0.250000,0,0);}
.m577_c00001{transform:matrix(0.175454,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175454,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175454,0.001930,-0.002750,0.249985,0,0);}
.m33_c00001{transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175455,0.000000,0.000000,0.250000,0,0);}
.m2036_c00001{transform:matrix(0.175456,-0.005439,0.007746,0.249880,0,0);-ms-transform:matrix(0.175456,-0.005439,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175456,-0.005439,0.007746,0.249880,0,0);}
.m3d5_c00001{transform:matrix(0.175461,-0.004913,0.006997,0.249902,0,0);-ms-transform:matrix(0.175461,-0.004913,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175461,-0.004913,0.006997,0.249902,0,0);}
.m28c1_c00001{transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);}
.m1553_c00001{transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175490,0.000000,0.000000,0.250000,0,0);}
.m23a3_c00001{transform:matrix(0.175498,-0.003861,0.005499,0.249940,0,0);-ms-transform:matrix(0.175498,-0.003861,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175498,-0.003861,0.005499,0.249940,0,0);}
.m28ea_c00001{transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175505,0.000000,0.000000,0.250000,0,0);}
.mbce_c00001{transform:matrix(0.175514,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175514,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175514,0.001931,-0.002750,0.249985,0,0);}
.m287d_c00001{transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175515,0.000000,0.000000,0.250000,0,0);}
.m14d6_c00001{transform:matrix(0.175524,0.005798,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175524,0.005798,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175524,0.005798,-0.008254,0.249864,0,0);}
.m2071_c00001{transform:matrix(0.175531,-0.005441,0.007746,0.249880,0,0);-ms-transform:matrix(0.175531,-0.005441,0.007746,0.249880,0,0);-webkit-transform:matrix(0.175531,-0.005441,0.007746,0.249880,0,0);}
.mcad_c00001{transform:matrix(0.175541,-0.005091,0.007247,0.249895,0,0);-ms-transform:matrix(0.175541,-0.005091,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175541,-0.005091,0.007247,0.249895,0,0);}
.m4e2_c00001{transform:matrix(0.175549,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175549,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175549,0.001931,-0.002750,0.249985,0,0);}
.mb0f_c00001{transform:matrix(0.175556,-0.006854,0.009752,0.249810,0,0);-ms-transform:matrix(0.175556,-0.006854,0.009752,0.249810,0,0);-webkit-transform:matrix(0.175556,-0.006854,0.009752,0.249810,0,0);}
.m19fc_c00001{transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175565,0.000000,0.000000,0.250000,0,0);}
.ma03_c00001{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.mace_c00001{transform:matrix(0.175596,-0.006855,0.009752,0.249810,0,0);-ms-transform:matrix(0.175596,-0.006855,0.009752,0.249810,0,0);-webkit-transform:matrix(0.175596,-0.006855,0.009752,0.249810,0,0);}
.m222f_c00001{transform:matrix(0.175616,-0.003688,0.005249,0.249945,0,0);-ms-transform:matrix(0.175616,-0.003688,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175616,-0.003688,0.005249,0.249945,0,0);}
.m17_c00001{transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);-ms-transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175626,-0.001756,0.002500,0.249988,0,0);}
.m34b_c00001{transform:matrix(0.175630,-0.002283,0.003250,0.249979,0,0);-ms-transform:matrix(0.175630,-0.002283,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175630,-0.002283,0.003250,0.249979,0,0);}
.m1ecb_c00001{transform:matrix(0.175631,-0.004566,0.006498,0.249916,0,0);-ms-transform:matrix(0.175631,-0.004566,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175631,-0.004566,0.006498,0.249916,0,0);}
.mdc6_c00001{transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175640,0.000000,0.000000,0.250000,0,0);}
.m3b_c00001{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m8e3_c00001{transform:matrix(0.175663,-0.006682,0.009503,0.249819,0,0);-ms-transform:matrix(0.175663,-0.006682,0.009503,0.249819,0,0);-webkit-transform:matrix(0.175663,-0.006682,0.009503,0.249819,0,0);}
.m1031_c00001{transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175665,0.000000,0.000000,0.250000,0,0);}
.m2518_c00001{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m11da_c00001{transform:matrix(0.175682,-0.003865,0.005499,0.249940,0,0);-ms-transform:matrix(0.175682,-0.003865,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175682,-0.003865,0.005499,0.249940,0,0);}
.m170e_c00001{transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);-ms-transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175696,-0.004568,0.006498,0.249916,0,0);}
.m1ba7_c00001{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m728_c00001{transform:matrix(0.175700,0.004393,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175700,0.004393,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175700,0.004393,-0.006248,0.249922,0,0);}
.m460_c00001{transform:matrix(0.175733,-0.005981,0.008504,0.249855,0,0);-ms-transform:matrix(0.175733,-0.005981,0.008504,0.249855,0,0);-webkit-transform:matrix(0.175733,-0.005981,0.008504,0.249855,0,0);}
.mc26_c00001{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.m1660_c00001{transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);}
.m122a_c00001{transform:matrix(0.175771,-0.004746,0.006748,0.249909,0,0);-ms-transform:matrix(0.175771,-0.004746,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175771,-0.004746,0.006748,0.249909,0,0);}
.m288d_c00001{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m6f0_c00001{transform:matrix(0.175795,0.004395,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175795,0.004395,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175795,0.004395,-0.006248,0.249922,0,0);}
.m500_c00001{transform:matrix(0.175799,0.001934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175799,0.001934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175799,0.001934,-0.002750,0.249985,0,0);}
.m13b4_c00001{transform:matrix(0.175801,-0.004571,0.006498,0.249916,0,0);-ms-transform:matrix(0.175801,-0.004571,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175801,-0.004571,0.006498,0.249916,0,0);}
.m7be_c00001{transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);-ms-transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175811,-0.004923,0.006997,0.249902,0,0);}
.m1152_c00001{transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175815,0.000000,0.000000,0.250000,0,0);}
.mcbb_c00001{transform:matrix(0.175816,-0.005099,0.007247,0.249895,0,0);-ms-transform:matrix(0.175816,-0.005099,0.007247,0.249895,0,0);-webkit-transform:matrix(0.175816,-0.005099,0.007247,0.249895,0,0);}
.m13d6_c00001{transform:matrix(0.175831,-0.004572,0.006498,0.249916,0,0);-ms-transform:matrix(0.175831,-0.004572,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175831,-0.004572,0.006498,0.249916,0,0);}
.m95f_c00001{transform:matrix(0.175838,-0.006689,0.009503,0.249819,0,0);-ms-transform:matrix(0.175838,-0.006689,0.009503,0.249819,0,0);-webkit-transform:matrix(0.175838,-0.006689,0.009503,0.249819,0,0);}
.m209_c00001{transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);}
.m1750_c00001{transform:matrix(0.175841,-0.004572,0.006498,0.249916,0,0);-ms-transform:matrix(0.175841,-0.004572,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175841,-0.004572,0.006498,0.249916,0,0);}
.mdcb_c00001{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m2856_c00001{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m1d5a_c00001{transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175885,0.000000,0.000000,0.250000,0,0);}
.mf8c_c00001{transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175890,0.000000,0.000000,0.250000,0,0);}
.m9bb_c00001{transform:matrix(0.175893,-0.006691,0.009503,0.249819,0,0);-ms-transform:matrix(0.175893,-0.006691,0.009503,0.249819,0,0);-webkit-transform:matrix(0.175893,-0.006691,0.009503,0.249819,0,0);}
.m1338_c00001{transform:matrix(0.175901,0.005101,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175901,0.005101,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175901,0.005101,-0.007247,0.249895,0,0);}
.m11d5_c00001{transform:matrix(0.175902,-0.003870,0.005499,0.249940,0,0);-ms-transform:matrix(0.175902,-0.003870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175902,-0.003870,0.005499,0.249940,0,0);}
.m1aed_c00001{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m176e_c00001{transform:matrix(0.175921,-0.004574,0.006498,0.249916,0,0);-ms-transform:matrix(0.175921,-0.004574,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175921,-0.004574,0.006498,0.249916,0,0);}
.m269_c00001{transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175930,0.000000,0.000000,0.250000,0,0);}
.m1770_c00001{transform:matrix(0.175946,-0.004575,0.006498,0.249916,0,0);-ms-transform:matrix(0.175946,-0.004575,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175946,-0.004575,0.006498,0.249916,0,0);}
.md81_c00001{transform:matrix(0.175950,0.002287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175950,0.002287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175950,0.002287,-0.003250,0.249979,0,0);}
.m27c_c00001{transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175965,0.000000,0.000000,0.250000,0,0);}
.m1252_c00001{transform:matrix(0.175971,-0.004751,0.006748,0.249909,0,0);-ms-transform:matrix(0.175971,-0.004751,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175971,-0.004751,0.006748,0.249909,0,0);}
.m215c_c00001{transform:matrix(0.175976,0.004927,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175976,0.004927,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175976,0.004927,-0.006997,0.249902,0,0);}
.m5af_c00001{transform:matrix(0.175984,0.001936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175984,0.001936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175984,0.001936,-0.002750,0.249985,0,0);}
.m1058_c00001{transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175985,0.000000,0.000000,0.250000,0,0);}
.m1517_c00001{transform:matrix(0.175999,0.005814,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175999,0.005814,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175999,0.005814,-0.008254,0.249864,0,0);}
.m2855_c00001{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m20e7_c00001{transform:matrix(0.176000,0.004400,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176000,0.004400,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176000,0.004400,-0.006248,0.249922,0,0);}
.ma74_c00001{transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176005,0.000000,0.000000,0.250000,0,0);}
.m1d7f_c00001{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.m921_c00001{transform:matrix(0.176018,-0.006695,0.009503,0.249819,0,0);-ms-transform:matrix(0.176018,-0.006695,0.009503,0.249819,0,0);-webkit-transform:matrix(0.176018,-0.006695,0.009503,0.249819,0,0);}
.mc15_c00001{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m828_c00001{transform:matrix(0.176026,-0.004929,0.006997,0.249902,0,0);-ms-transform:matrix(0.176026,-0.004929,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176026,-0.004929,0.006997,0.249902,0,0);}
.m5e0_c00001{transform:matrix(0.176027,-0.007929,0.011250,0.249747,0,0);-ms-transform:matrix(0.176027,-0.007929,0.011250,0.249747,0,0);-webkit-transform:matrix(0.176027,-0.007929,0.011250,0.249747,0,0);}
.m1ffa_c00001{transform:matrix(0.176030,-0.004401,0.006248,0.249922,0,0);-ms-transform:matrix(0.176030,-0.004401,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176030,-0.004401,0.006248,0.249922,0,0);}
.m202c_c00001{transform:matrix(0.176030,-0.005457,0.007746,0.249880,0,0);-ms-transform:matrix(0.176030,-0.005457,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176030,-0.005457,0.007746,0.249880,0,0);}
.m91_c00001{transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176055,0.000000,0.000000,0.250000,0,0);}
.m1865_c00001{transform:matrix(0.176065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176065,0.000000,0.000000,0.250000,0,0);}
.ma31_c00001{transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176070,0.000000,0.000000,0.250000,0,0);}
.m360_c00001{transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);}
.m72c_c00001{transform:matrix(0.176080,0.004402,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176080,0.004402,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176080,0.004402,-0.006248,0.249922,0,0);}
.m38_c00001{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m361_c00001{transform:matrix(0.176085,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176085,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176085,-0.002289,0.003250,0.249979,0,0);}
.m3f0_c00001{transform:matrix(0.176086,-0.004930,0.006997,0.249902,0,0);-ms-transform:matrix(0.176086,-0.004930,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176086,-0.004930,0.006997,0.249902,0,0);}
.mea0_c00001{transform:matrix(0.176118,0.002466,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176118,0.002466,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176118,0.002466,-0.003500,0.249976,0,0);}
.m1e88_c00001{transform:matrix(0.176142,-0.003875,0.005499,0.249940,0,0);-ms-transform:matrix(0.176142,-0.003875,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176142,-0.003875,0.005499,0.249940,0,0);}
.m14a9_c00001{transform:matrix(0.176144,0.005819,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176144,0.005819,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176144,0.005819,-0.008254,0.249864,0,0);}
.ma6b_c00001{transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176145,0.000000,0.000000,0.250000,0,0);}
.m4a6_c00001{transform:matrix(0.176152,-0.007229,0.010252,0.249790,0,0);-ms-transform:matrix(0.176152,-0.007229,0.010252,0.249790,0,0);-webkit-transform:matrix(0.176152,-0.007229,0.010252,0.249790,0,0);}
.m1a34_c00001{transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);}
.m1fb7_c00001{transform:matrix(0.176159,-0.007406,0.010501,0.249779,0,0);-ms-transform:matrix(0.176159,-0.007406,0.010501,0.249779,0,0);-webkit-transform:matrix(0.176159,-0.007406,0.010501,0.249779,0,0);}
.me4e_c00001{transform:matrix(0.176161,0.003171,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176161,0.003171,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176161,0.003171,-0.004499,0.249960,0,0);}
.me1f_c00001{transform:matrix(0.176165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176165,0.000000,0.000000,0.250000,0,0);}
.mf1c_c00001{transform:matrix(0.176180,0.003524,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176180,0.003524,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176180,0.003524,-0.004999,0.249950,0,0);}
.m25a0_c00001{transform:matrix(0.176204,-0.001938,0.002750,0.249985,0,0);-ms-transform:matrix(0.176204,-0.001938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176204,-0.001938,0.002750,0.249985,0,0);}
.m1a4c_c00001{transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176215,0.000000,0.000000,0.250000,0,0);}
.m1696_c00001{transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176220,0.000000,0.000000,0.250000,0,0);}
.m1711_c00001{transform:matrix(0.176250,-0.004583,0.006498,0.249916,0,0);-ms-transform:matrix(0.176250,-0.004583,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176250,-0.004583,0.006498,0.249916,0,0);}
.m670_c00001{transform:matrix(0.176252,-0.007234,0.010252,0.249790,0,0);-ms-transform:matrix(0.176252,-0.007234,0.010252,0.249790,0,0);-webkit-transform:matrix(0.176252,-0.007234,0.010252,0.249790,0,0);}
.m11ca_c00001{transform:matrix(0.176312,-0.003879,0.005499,0.249940,0,0);-ms-transform:matrix(0.176312,-0.003879,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176312,-0.003879,0.005499,0.249940,0,0);}
.m2_c00001{transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176315,0.000000,0.000000,0.250000,0,0);}
.m3ad_c00001{transform:matrix(0.176315,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176315,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176315,-0.002292,0.003250,0.249979,0,0);}
.m2f5_c00001{transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176335,-0.002292,0.003250,0.249979,0,0);}
.m17b6_c00001{transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);}
.m49f_c00001{transform:matrix(0.176347,-0.007237,0.010252,0.249790,0,0);-ms-transform:matrix(0.176347,-0.007237,0.010252,0.249790,0,0);-webkit-transform:matrix(0.176347,-0.007237,0.010252,0.249790,0,0);}
.m1aa7_c00001{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m156_c00001{transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176355,0.000000,0.000000,0.250000,0,0);}
.m214c_c00001{transform:matrix(0.176366,0.004938,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176366,0.004938,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176366,0.004938,-0.006997,0.249902,0,0);}
.m7cb_c00001{transform:matrix(0.176376,-0.004939,0.006997,0.249902,0,0);-ms-transform:matrix(0.176376,-0.004939,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176376,-0.004939,0.006997,0.249902,0,0);}
.mc1a_c00001{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m9bf_c00001{transform:matrix(0.176407,-0.006710,0.009503,0.249819,0,0);-ms-transform:matrix(0.176407,-0.006710,0.009503,0.249819,0,0);-webkit-transform:matrix(0.176407,-0.006710,0.009503,0.249819,0,0);}
.m25cb_c00001{transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176415,0.000000,0.000000,0.250000,0,0);}
.m1ebd_c00001{transform:matrix(0.176415,-0.004587,0.006498,0.249916,0,0);-ms-transform:matrix(0.176415,-0.004587,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176415,-0.004587,0.006498,0.249916,0,0);}
.m270_c00001{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.m1e1c_c00001{transform:matrix(0.176430,-0.004587,0.006498,0.249916,0,0);-ms-transform:matrix(0.176430,-0.004587,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176430,-0.004587,0.006498,0.249916,0,0);}
.m602_c00001{transform:matrix(0.176459,-0.007419,0.010501,0.249779,0,0);-ms-transform:matrix(0.176459,-0.007419,0.010501,0.249779,0,0);-webkit-transform:matrix(0.176459,-0.007419,0.010501,0.249779,0,0);}
.m20df_c00001{transform:matrix(0.176465,0.004412,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176465,0.004412,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176465,0.004412,-0.006248,0.249922,0,0);}
.m63f_c00001{transform:matrix(0.176468,-0.006006,0.008504,0.249855,0,0);-ms-transform:matrix(0.176468,-0.006006,0.008504,0.249855,0,0);-webkit-transform:matrix(0.176468,-0.006006,0.008504,0.249855,0,0);}
.mc32_c00001{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m1631_c00001{transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176540,0.000000,0.000000,0.250000,0,0);}
.m3d0_c00001{transform:matrix(0.176546,-0.005296,0.007497,0.249888,0,0);-ms-transform:matrix(0.176546,-0.005296,0.007497,0.249888,0,0);-webkit-transform:matrix(0.176546,-0.005296,0.007497,0.249888,0,0);}
.m21c3_c00001{transform:matrix(0.176548,-0.004061,0.005748,0.249934,0,0);-ms-transform:matrix(0.176548,-0.004061,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176548,-0.004061,0.005748,0.249934,0,0);}
.mba0_c00001{transform:matrix(0.176552,0.002119,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176552,0.002119,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176552,0.002119,-0.003000,0.249982,0,0);}
.mbb9_c00001{transform:matrix(0.176554,0.001942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176554,0.001942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176554,0.001942,-0.002750,0.249985,0,0);}
.mdea_c00001{transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176555,0.000000,0.000000,0.250000,0,0);}
.m1ec3_c00001{transform:matrix(0.176575,-0.004591,0.006498,0.249916,0,0);-ms-transform:matrix(0.176575,-0.004591,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176575,-0.004591,0.006498,0.249916,0,0);}
.m6e2_c00001{transform:matrix(0.176590,0.004415,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176590,0.004415,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176590,0.004415,-0.006248,0.249922,0,0);}
.m382_c00001{transform:matrix(0.176615,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176615,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176615,-0.002296,0.003250,0.249979,0,0);}
.m536_c00001{transform:matrix(0.176619,0.001943,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176619,0.001943,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176619,0.001943,-0.002750,0.249985,0,0);}
.m1403_c00001{transform:matrix(0.176625,-0.004592,0.006498,0.249916,0,0);-ms-transform:matrix(0.176625,-0.004592,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176625,-0.004592,0.006498,0.249916,0,0);}
.m1967_c00001{transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176635,0.000000,0.000000,0.250000,0,0);}
.m7a4_c00001{transform:matrix(0.176636,-0.004946,0.006997,0.249902,0,0);-ms-transform:matrix(0.176636,-0.004946,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176636,-0.004946,0.006997,0.249902,0,0);}
.m637_c00001{transform:matrix(0.176636,-0.007603,0.010751,0.249769,0,0);-ms-transform:matrix(0.176636,-0.007603,0.010751,0.249769,0,0);-webkit-transform:matrix(0.176636,-0.007603,0.010751,0.249769,0,0);}
.m2204_c00001{transform:matrix(0.176638,-0.003356,0.004749,0.249955,0,0);-ms-transform:matrix(0.176638,-0.003356,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176638,-0.003356,0.004749,0.249955,0,0);}
.m2578_c00001{transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176640,-0.002296,0.003250,0.249979,0,0);}
.m176b_c00001{transform:matrix(0.176640,-0.004593,0.006498,0.249916,0,0);-ms-transform:matrix(0.176640,-0.004593,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176640,-0.004593,0.006498,0.249916,0,0);}
.m22f0_c00001{transform:matrix(0.176646,0.003180,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176646,0.003180,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176646,0.003180,-0.004499,0.249960,0,0);}
.maf5_c00001{transform:matrix(0.176650,-0.006896,0.009752,0.249810,0,0);-ms-transform:matrix(0.176650,-0.006896,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176650,-0.006896,0.009752,0.249810,0,0);}
.m363_c00001{transform:matrix(0.176665,-0.002297,0.003250,0.249979,0,0);-ms-transform:matrix(0.176665,-0.002297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176665,-0.002297,0.003250,0.249979,0,0);}
.m1239_c00001{transform:matrix(0.176686,-0.004771,0.006748,0.249909,0,0);-ms-transform:matrix(0.176686,-0.004771,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176686,-0.004771,0.006748,0.249909,0,0);}
.m6f2_c00001{transform:matrix(0.176695,0.004417,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176695,0.004417,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176695,0.004417,-0.006248,0.249922,0,0);}
.m20d5_c00001{transform:matrix(0.176705,0.004418,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176705,0.004418,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176705,0.004418,-0.006248,0.249922,0,0);}
.m76_c00001{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.mac4_c00001{transform:matrix(0.176720,-0.006899,0.009752,0.249810,0,0);-ms-transform:matrix(0.176720,-0.006899,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176720,-0.006899,0.009752,0.249810,0,0);}
.m1f7b_c00001{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m1aff_c00001{transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176735,0.000000,0.000000,0.250000,0,0);}
.m8a3_c00001{transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176740,0.000000,0.000000,0.250000,0,0);}
.m1563_c00001{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m167_c00001{transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176755,0.000000,0.000000,0.250000,0,0);}
.m873_c00001{transform:matrix(0.176756,-0.004949,0.006997,0.249902,0,0);-ms-transform:matrix(0.176756,-0.004949,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176756,-0.004949,0.006997,0.249902,0,0);}
.m1d33_c00001{transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176760,0.000000,0.000000,0.250000,0,0);}
.m247_c00001{transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176765,0.000000,0.000000,0.250000,0,0);}
.m1279_c00001{transform:matrix(0.176766,-0.004773,0.006748,0.249909,0,0);-ms-transform:matrix(0.176766,-0.004773,0.006748,0.249909,0,0);-webkit-transform:matrix(0.176766,-0.004773,0.006748,0.249909,0,0);}
.m1399_c00001{transform:matrix(0.176790,-0.004597,0.006498,0.249916,0,0);-ms-transform:matrix(0.176790,-0.004597,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176790,-0.004597,0.006498,0.249916,0,0);}
.m910_c00001{transform:matrix(0.176792,-0.006725,0.009503,0.249819,0,0);-ms-transform:matrix(0.176792,-0.006725,0.009503,0.249819,0,0);-webkit-transform:matrix(0.176792,-0.006725,0.009503,0.249819,0,0);}
.m2442_c00001{transform:matrix(0.176792,-0.003889,0.005499,0.249940,0,0);-ms-transform:matrix(0.176792,-0.003889,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176792,-0.003889,0.005499,0.249940,0,0);}
.ma95_c00001{transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176795,0.000000,0.000000,0.250000,0,0);}
.m21ed_c00001{transform:matrix(0.176798,-0.003359,0.004749,0.249955,0,0);-ms-transform:matrix(0.176798,-0.003359,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176798,-0.003359,0.004749,0.249955,0,0);}
.m266_c00001{transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176805,0.000000,0.000000,0.250000,0,0);}
.m932_c00001{transform:matrix(0.176812,-0.006726,0.009503,0.249819,0,0);-ms-transform:matrix(0.176812,-0.006726,0.009503,0.249819,0,0);-webkit-transform:matrix(0.176812,-0.006726,0.009503,0.249819,0,0);}
.m163b_c00001{transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176815,0.000000,0.000000,0.250000,0,0);}
.mf6a_c00001{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m1570_c00001{transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176860,0.000000,0.000000,0.250000,0,0);}
.m1a05_c00001{transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176865,0.000000,0.000000,0.250000,0,0);}
.m24f4_c00001{transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);}
.mb69_c00001{transform:matrix(0.176870,-0.006374,0.009003,0.249838,0,0);-ms-transform:matrix(0.176870,-0.006374,0.009003,0.249838,0,0);-webkit-transform:matrix(0.176870,-0.006374,0.009003,0.249838,0,0);}
.m2359_c00001{transform:matrix(0.176871,0.003184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176871,0.003184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176871,0.003184,-0.004499,0.249960,0,0);}
.m17da_c00001{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m1d8d_c00001{transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176880,0.000000,0.000000,0.250000,0,0);}
.m2084_c00001{transform:matrix(0.176880,-0.005483,0.007746,0.249880,0,0);-ms-transform:matrix(0.176880,-0.005483,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176880,-0.005483,0.007746,0.249880,0,0);}
.m101d_c00001{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.m257c_c00001{transform:matrix(0.176895,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176895,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176895,-0.002300,0.003250,0.249979,0,0);}
.m749_c00001{transform:matrix(0.176906,0.004953,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176906,0.004953,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176906,0.004953,-0.006997,0.249902,0,0);}
.m11e4_c00001{transform:matrix(0.176912,-0.003892,0.005499,0.249940,0,0);-ms-transform:matrix(0.176912,-0.003892,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176912,-0.003892,0.005499,0.249940,0,0);}
.m267a_c00001{transform:matrix(0.176915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176915,0.000000,0.000000,0.250000,0,0);}
.m3f8_c00001{transform:matrix(0.176916,-0.003715,0.005249,0.249945,0,0);-ms-transform:matrix(0.176916,-0.003715,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176916,-0.003715,0.005249,0.249945,0,0);}
.m1c3d_c00001{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m1d08_c00001{transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176930,0.000000,0.000000,0.250000,0,0);}
.m78a_c00001{transform:matrix(0.176933,0.004069,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176933,0.004069,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176933,0.004069,-0.005748,0.249934,0,0);}
.m625_c00001{transform:matrix(0.176936,-0.007616,0.010751,0.249769,0,0);-ms-transform:matrix(0.176936,-0.007616,0.010751,0.249769,0,0);-webkit-transform:matrix(0.176936,-0.007616,0.010751,0.249769,0,0);}
.m2890_c00001{transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176945,0.000000,0.000000,0.250000,0,0);}
.mcbd_c00001{transform:matrix(0.176946,-0.005131,0.007247,0.249895,0,0);-ms-transform:matrix(0.176946,-0.005131,0.007247,0.249895,0,0);-webkit-transform:matrix(0.176946,-0.005131,0.007247,0.249895,0,0);}
.m20f0_c00001{transform:matrix(0.176950,0.004424,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176950,0.004424,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176950,0.004424,-0.006248,0.249922,0,0);}
.m5e_c00001{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mc1c_c00001{transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176960,0.000000,0.000000,0.250000,0,0);}
.m400_c00001{transform:matrix(0.176966,-0.003716,0.005249,0.249945,0,0);-ms-transform:matrix(0.176966,-0.003716,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176966,-0.003716,0.005249,0.249945,0,0);}
.m2879_c00001{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m1029_c00001{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.m210b_c00001{transform:matrix(0.176991,0.004956,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176991,0.004956,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176991,0.004956,-0.006997,0.249902,0,0);}
.m12ba_c00001{transform:matrix(0.176995,0.004425,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176995,0.004425,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176995,0.004425,-0.006248,0.249922,0,0);}
.me4d_c00001{transform:matrix(0.177006,0.003186,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177006,0.003186,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177006,0.003186,-0.004499,0.249960,0,0);}
.m11c4_c00001{transform:matrix(0.177007,-0.003894,0.005499,0.249940,0,0);-ms-transform:matrix(0.177007,-0.003894,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177007,-0.003894,0.005499,0.249940,0,0);}
.m23d3_c00001{transform:matrix(0.177017,-0.003894,0.005499,0.249940,0,0);-ms-transform:matrix(0.177017,-0.003894,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177017,-0.003894,0.005499,0.249940,0,0);}
.m1763_c00001{transform:matrix(0.177045,-0.004603,0.006498,0.249916,0,0);-ms-transform:matrix(0.177045,-0.004603,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177045,-0.004603,0.006498,0.249916,0,0);}
.m2b2_c00001{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m290e_c00001{transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177060,0.000000,0.000000,0.250000,0,0);}
.m240d_c00001{transform:matrix(0.177062,-0.003895,0.005499,0.249940,0,0);-ms-transform:matrix(0.177062,-0.003895,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177062,-0.003895,0.005499,0.249940,0,0);}
.m611_c00001{transform:matrix(0.177078,-0.007799,0.011000,0.249758,0,0);-ms-transform:matrix(0.177078,-0.007799,0.011000,0.249758,0,0);-webkit-transform:matrix(0.177078,-0.007799,0.011000,0.249758,0,0);}
.mdd1_c00001{transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177090,0.000000,0.000000,0.250000,0,0);}
.m802_c00001{transform:matrix(0.177091,-0.004959,0.006997,0.249902,0,0);-ms-transform:matrix(0.177091,-0.004959,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177091,-0.004959,0.006997,0.249902,0,0);}
.m18de_c00001{transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177110,0.000000,0.000000,0.250000,0,0);}
.m1957_c00001{transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);}
.m285f_c00001{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m1c6d_c00001{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m22f2_c00001{transform:matrix(0.177136,0.003188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177136,0.003188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177136,0.003188,-0.004499,0.249960,0,0);}
.m139f_c00001{transform:matrix(0.177140,-0.004606,0.006498,0.249916,0,0);-ms-transform:matrix(0.177140,-0.004606,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177140,-0.004606,0.006498,0.249916,0,0);}
.m1c4f_c00001{transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177155,0.000000,0.000000,0.250000,0,0);}
.mbf4_c00001{transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177165,0.000000,0.000000,0.250000,0,0);}
.m6ba_c00001{transform:matrix(0.177180,0.004429,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177180,0.004429,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177180,0.004429,-0.006248,0.249922,0,0);}
.mf6e_c00001{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.mdce_c00001{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m1565_c00001{transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177195,0.000000,0.000000,0.250000,0,0);}
.m20b0_c00001{transform:matrix(0.177210,0.004430,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177210,0.004430,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177210,0.004430,-0.006248,0.249922,0,0);}
.m1fdc_c00001{transform:matrix(0.177210,-0.004430,0.006248,0.249922,0,0);-ms-transform:matrix(0.177210,-0.004430,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177210,-0.004430,0.006248,0.249922,0,0);}
.me51_c00001{transform:matrix(0.177216,0.003190,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177216,0.003190,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177216,0.003190,-0.004499,0.249960,0,0);}
.m1953_c00001{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.mb03_c00001{transform:matrix(0.177225,-0.006919,0.009752,0.249810,0,0);-ms-transform:matrix(0.177225,-0.006919,0.009752,0.249810,0,0);-webkit-transform:matrix(0.177225,-0.006919,0.009752,0.249810,0,0);}
.m924_c00001{transform:matrix(0.177237,-0.006742,0.009503,0.249819,0,0);-ms-transform:matrix(0.177237,-0.006742,0.009503,0.249819,0,0);-webkit-transform:matrix(0.177237,-0.006742,0.009503,0.249819,0,0);}
.m20b6_c00001{transform:matrix(0.177245,0.004431,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177245,0.004431,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177245,0.004431,-0.006248,0.249922,0,0);}
.m1098_c00001{transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177245,0.000000,0.000000,0.250000,0,0);}
.m19d2_c00001{transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177255,0.000000,0.000000,0.250000,0,0);}
.m1719_c00001{transform:matrix(0.177275,-0.004609,0.006498,0.249916,0,0);-ms-transform:matrix(0.177275,-0.004609,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177275,-0.004609,0.006498,0.249916,0,0);}
.m717_c00001{transform:matrix(0.177290,0.004432,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177290,0.004432,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177290,0.004432,-0.006248,0.249922,0,0);}
.m15b9_c00001{transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177295,0.000000,0.000000,0.250000,0,0);}
.md3c_c00001{transform:matrix(0.177300,-0.005142,0.007247,0.249895,0,0);-ms-transform:matrix(0.177300,-0.005142,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177300,-0.005142,0.007247,0.249895,0,0);}
.m379_c00001{transform:matrix(0.177305,-0.002305,0.003250,0.249979,0,0);-ms-transform:matrix(0.177305,-0.002305,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177305,-0.002305,0.003250,0.249979,0,0);}
.m10b8_c00001{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m34c_c00001{transform:matrix(0.177345,-0.002305,0.003250,0.249979,0,0);-ms-transform:matrix(0.177345,-0.002305,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177345,-0.002305,0.003250,0.249979,0,0);}
.m1bed_c00001{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177360,0.000000,0.000000,0.250000,0,0);}
.m1270_c00001{transform:matrix(0.177370,-0.004789,0.006748,0.249909,0,0);-ms-transform:matrix(0.177370,-0.004789,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177370,-0.004789,0.006748,0.249909,0,0);}
.m2279_c00001{transform:matrix(0.177378,-0.004080,0.005748,0.249934,0,0);-ms-transform:matrix(0.177378,-0.004080,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177378,-0.004080,0.005748,0.249934,0,0);}
.m265d_c00001{transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177390,0.000000,0.000000,0.250000,0,0);}
.m863_c00001{transform:matrix(0.177390,-0.004967,0.006997,0.249902,0,0);-ms-transform:matrix(0.177390,-0.004967,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177390,-0.004967,0.006997,0.249902,0,0);}
.md72_c00001{transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177430,0.000000,0.000000,0.250000,0,0);}
.m172e_c00001{transform:matrix(0.177430,-0.004613,0.006498,0.249916,0,0);-ms-transform:matrix(0.177430,-0.004613,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177430,-0.004613,0.006498,0.249916,0,0);}
.mb35_c00001{transform:matrix(0.177435,-0.006927,0.009752,0.249810,0,0);-ms-transform:matrix(0.177435,-0.006927,0.009752,0.249810,0,0);-webkit-transform:matrix(0.177435,-0.006927,0.009752,0.249810,0,0);}
.m18f4_c00001{transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177435,0.000000,0.000000,0.250000,0,0);}
.m129f_c00001{transform:matrix(0.177447,0.003904,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177447,0.003904,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177447,0.003904,-0.005499,0.249940,0,0);}
.m1c17_c00001{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.m86d_c00001{transform:matrix(0.177475,-0.004969,0.006997,0.249902,0,0);-ms-transform:matrix(0.177475,-0.004969,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177475,-0.004969,0.006997,0.249902,0,0);}
.m11dc_c00001{transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);-ms-transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177497,-0.003905,0.005499,0.249940,0,0);}
.mb3e_c00001{transform:matrix(0.177500,-0.006929,0.009752,0.249810,0,0);-ms-transform:matrix(0.177500,-0.006929,0.009752,0.249810,0,0);-webkit-transform:matrix(0.177500,-0.006929,0.009752,0.249810,0,0);}
.m254c_c00001{transform:matrix(0.177515,-0.002663,0.003750,0.249972,0,0);-ms-transform:matrix(0.177515,-0.002663,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177515,-0.002663,0.003750,0.249972,0,0);}
.m3cf_c00001{transform:matrix(0.177515,-0.005325,0.007497,0.249888,0,0);-ms-transform:matrix(0.177515,-0.005325,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177515,-0.005325,0.007497,0.249888,0,0);}
.m1256_c00001{transform:matrix(0.177525,-0.004793,0.006748,0.249909,0,0);-ms-transform:matrix(0.177525,-0.004793,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177525,-0.004793,0.006748,0.249909,0,0);}
.mb84_c00001{transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177530,0.000000,0.000000,0.250000,0,0);}
.m19fa_c00001{transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177545,0.000000,0.000000,0.250000,0,0);}
.m2614_c00001{transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177560,0.000000,0.000000,0.250000,0,0);}
.m7b7_c00001{transform:matrix(0.177575,-0.004972,0.006997,0.249902,0,0);-ms-transform:matrix(0.177575,-0.004972,0.006997,0.249902,0,0);-webkit-transform:matrix(0.177575,-0.004972,0.006997,0.249902,0,0);}
.mf58_c00001{transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);}
.meac_c00001{transform:matrix(0.177618,0.002487,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177618,0.002487,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177618,0.002487,-0.003500,0.249976,0,0);}
.m1a11_c00001{transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177620,0.000000,0.000000,0.250000,0,0);}
.m15fa_c00001{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m49d_c00001{transform:matrix(0.177630,-0.007290,0.010252,0.249790,0,0);-ms-transform:matrix(0.177630,-0.007290,0.010252,0.249790,0,0);-webkit-transform:matrix(0.177630,-0.007290,0.010252,0.249790,0,0);}
.m1b3a_c00001{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m1261_c00001{transform:matrix(0.177635,-0.004796,0.006748,0.249909,0,0);-ms-transform:matrix(0.177635,-0.004796,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177635,-0.004796,0.006748,0.249909,0,0);}
.m18b1_c00001{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.m765_c00001{transform:matrix(0.177645,0.004974,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177645,0.004974,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177645,0.004974,-0.006997,0.249902,0,0);}
.m13dd_c00001{transform:matrix(0.177650,-0.004619,0.006498,0.249916,0,0);-ms-transform:matrix(0.177650,-0.004619,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177650,-0.004619,0.006498,0.249916,0,0);}
.m202_c00001{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m19d8_c00001{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m6bb_c00001{transform:matrix(0.177679,0.004442,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177679,0.004442,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177679,0.004442,-0.006248,0.249922,0,0);}
.md0b_c00001{transform:matrix(0.177685,-0.005153,0.007247,0.249895,0,0);-ms-transform:matrix(0.177685,-0.005153,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177685,-0.005153,0.007247,0.249895,0,0);}
.m10cb_c00001{transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177690,0.000000,0.000000,0.250000,0,0);}
.m755_c00001{transform:matrix(0.177695,0.004975,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177695,0.004975,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177695,0.004975,-0.006997,0.249902,0,0);}
.mb5b_c00001{transform:matrix(0.177700,-0.006937,0.009752,0.249810,0,0);-ms-transform:matrix(0.177700,-0.006937,0.009752,0.249810,0,0);-webkit-transform:matrix(0.177700,-0.006937,0.009752,0.249810,0,0);}
.m19b7_c00001{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m1276_c00001{transform:matrix(0.177715,-0.004798,0.006748,0.249909,0,0);-ms-transform:matrix(0.177715,-0.004798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.177715,-0.004798,0.006748,0.249909,0,0);}
.m1e2d_c00001{transform:matrix(0.177720,-0.004621,0.006498,0.249916,0,0);-ms-transform:matrix(0.177720,-0.004621,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177720,-0.004621,0.006498,0.249916,0,0);}
.m1a50_c00001{transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177720,0.000000,0.000000,0.250000,0,0);}
.mf17_c00001{transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177724,0.003554,-0.004999,0.249950,0,0);}
.m1c8b_c00001{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m1724_c00001{transform:matrix(0.177735,-0.004621,0.006498,0.249916,0,0);-ms-transform:matrix(0.177735,-0.004621,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177735,-0.004621,0.006498,0.249916,0,0);}
.m1e44_c00001{transform:matrix(0.177740,-0.004621,0.006498,0.249916,0,0);-ms-transform:matrix(0.177740,-0.004621,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177740,-0.004621,0.006498,0.249916,0,0);}
.m15ab_c00001{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m20da_c00001{transform:matrix(0.177754,0.004444,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177754,0.004444,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177754,0.004444,-0.006248,0.249922,0,0);}
.mc1f_c00001{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.mc61_c00001{transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177770,0.000000,0.000000,0.250000,0,0);}
.m22bc_c00001{transform:matrix(0.177777,0.002844,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177777,0.002844,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177777,0.002844,-0.003999,0.249968,0,0);}
.m15ca_c00001{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.md13_c00001{transform:matrix(0.177785,-0.005156,0.007247,0.249895,0,0);-ms-transform:matrix(0.177785,-0.005156,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177785,-0.005156,0.007247,0.249895,0,0);}
.me0c_c00001{transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177795,0.000000,0.000000,0.250000,0,0);}
.m1921_c00001{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m1d83_c00001{transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177805,0.000000,0.000000,0.250000,0,0);}
.m20e9_c00001{transform:matrix(0.177814,0.004445,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177814,0.004445,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177814,0.004445,-0.006248,0.249922,0,0);}
.m12eb_c00001{transform:matrix(0.177835,0.004802,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177835,0.004802,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177835,0.004802,-0.006748,0.249909,0,0);}
.m2a6_c00001{transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177860,0.000000,0.000000,0.250000,0,0);}
.m1a36_c00001{transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177865,0.000000,0.000000,0.250000,0,0);}
.mf2d_c00001{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00001{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m9fc_c00001{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.m186f_c00001{transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);}
.m1e85_c00001{transform:matrix(0.177922,-0.003914,0.005499,0.249940,0,0);-ms-transform:matrix(0.177922,-0.003914,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177922,-0.003914,0.005499,0.249940,0,0);}
.m16c4_c00001{transform:matrix(0.177927,-0.006056,0.008504,0.249855,0,0);-ms-transform:matrix(0.177927,-0.006056,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177927,-0.006056,0.008504,0.249855,0,0);}
.m1bdc_c00001{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.mfc3_c00001{transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177935,0.000000,0.000000,0.250000,0,0);}
.m14e3_c00001{transform:matrix(0.177943,0.005878,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177943,0.005878,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177943,0.005878,-0.008254,0.249864,0,0);}
.m16bc_c00001{transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177960,0.000000,0.000000,0.250000,0,0);}
.m3a2_c00001{transform:matrix(0.177965,-0.002314,0.003250,0.249979,0,0);-ms-transform:matrix(0.177965,-0.002314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177965,-0.002314,0.003250,0.249979,0,0);}
.m16a9_c00001{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m1f38_c00001{transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177980,0.000000,0.000000,0.250000,0,0);}
.mbb3_c00001{transform:matrix(0.177999,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177999,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177999,0.001958,-0.002750,0.249985,0,0);}
.m2269_c00001{transform:matrix(0.178006,-0.003204,0.004499,0.249960,0,0);-ms-transform:matrix(0.178006,-0.003204,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178006,-0.003204,0.004499,0.249960,0,0);}
.m1f4c_c00001{transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178015,0.000000,0.000000,0.250000,0,0);}
.m1e66_c00001{transform:matrix(0.178020,-0.004629,0.006498,0.249916,0,0);-ms-transform:matrix(0.178020,-0.004629,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178020,-0.004629,0.006498,0.249916,0,0);}
.m339_c00001{transform:matrix(0.178020,-0.002314,0.003250,0.249979,0,0);-ms-transform:matrix(0.178020,-0.002314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178020,-0.002314,0.003250,0.249979,0,0);}
.m27bc_c00001{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.m7d7_c00001{transform:matrix(0.178030,-0.004985,0.006997,0.249902,0,0);-ms-transform:matrix(0.178030,-0.004985,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178030,-0.004985,0.006997,0.249902,0,0);}
.m141b_c00001{transform:matrix(0.178045,-0.004629,0.006498,0.249916,0,0);-ms-transform:matrix(0.178045,-0.004629,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178045,-0.004629,0.006498,0.249916,0,0);}
.m16a5_c00001{transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178055,0.000000,0.000000,0.250000,0,0);}
.m2281_c00001{transform:matrix(0.178058,-0.004095,0.005748,0.249934,0,0);-ms-transform:matrix(0.178058,-0.004095,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178058,-0.004095,0.005748,0.249934,0,0);}
.m283d_c00001{transform:matrix(0.178090,-0.002315,0.003250,0.249979,0,0);-ms-transform:matrix(0.178090,-0.002315,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178090,-0.002315,0.003250,0.249979,0,0);}
.m2114_c00001{transform:matrix(0.178095,0.004987,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178095,0.004987,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178095,0.004987,-0.006997,0.249902,0,0);}
.m26d9_c00001{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.m12d7_c00001{transform:matrix(0.178100,0.004809,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178100,0.004809,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178100,0.004809,-0.006748,0.249909,0,0);}
.ma8d_c00001{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.m231e_c00001{transform:matrix(0.178116,0.003206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178116,0.003206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178116,0.003206,-0.004499,0.249960,0,0);}
.m1a41_c00001{transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178120,0.000000,0.000000,0.250000,0,0);}
.m99b_c00001{transform:matrix(0.178121,-0.006775,0.009503,0.249819,0,0);-ms-transform:matrix(0.178121,-0.006775,0.009503,0.249819,0,0);-webkit-transform:matrix(0.178121,-0.006775,0.009503,0.249819,0,0);}
.m8d9_c00001{transform:matrix(0.178124,-0.004275,0.005998,0.249928,0,0);-ms-transform:matrix(0.178124,-0.004275,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178124,-0.004275,0.005998,0.249928,0,0);}
.m804_c00001{transform:matrix(0.178130,-0.004988,0.006997,0.249902,0,0);-ms-transform:matrix(0.178130,-0.004988,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178130,-0.004988,0.006997,0.249902,0,0);}
.m19ae_c00001{transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);}
.m3b2_c00001{transform:matrix(0.178155,-0.002316,0.003250,0.249979,0,0);-ms-transform:matrix(0.178155,-0.002316,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178155,-0.002316,0.003250,0.249979,0,0);}
.m1eb7_c00001{transform:matrix(0.178160,-0.004632,0.006498,0.249916,0,0);-ms-transform:matrix(0.178160,-0.004632,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178160,-0.004632,0.006498,0.249916,0,0);}
.m436_c00001{transform:matrix(0.178163,-0.003385,0.004749,0.249955,0,0);-ms-transform:matrix(0.178163,-0.003385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178163,-0.003385,0.004749,0.249955,0,0);}
.m1134_c00001{transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);}
.m9e_c00001{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m23f9_c00001{transform:matrix(0.178207,-0.003921,0.005499,0.249940,0,0);-ms-transform:matrix(0.178207,-0.003921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178207,-0.003921,0.005499,0.249940,0,0);}
.m2705_c00001{transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178215,0.000000,0.000000,0.250000,0,0);}
.m2657_c00001{transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);}
.m67c_c00001{transform:matrix(0.178230,-0.007315,0.010252,0.249790,0,0);-ms-transform:matrix(0.178230,-0.007315,0.010252,0.249790,0,0);-webkit-transform:matrix(0.178230,-0.007315,0.010252,0.249790,0,0);}
.m1048_c00001{transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178245,0.000000,0.000000,0.250000,0,0);}
.mac7_c00001{transform:matrix(0.178249,-0.006959,0.009752,0.249810,0,0);-ms-transform:matrix(0.178249,-0.006959,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178249,-0.006959,0.009752,0.249810,0,0);}
.m25bc_c00001{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m204d_c00001{transform:matrix(0.178259,-0.005526,0.007746,0.249880,0,0);-ms-transform:matrix(0.178259,-0.005526,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178259,-0.005526,0.007746,0.249880,0,0);}
.m1c5_c00001{transform:matrix(0.178267,-0.002852,0.003999,0.249968,0,0);-ms-transform:matrix(0.178267,-0.002852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178267,-0.002852,0.003999,0.249968,0,0);}
.m912_c00001{transform:matrix(0.178271,-0.006781,0.009503,0.249819,0,0);-ms-transform:matrix(0.178271,-0.006781,0.009503,0.249819,0,0);-webkit-transform:matrix(0.178271,-0.006781,0.009503,0.249819,0,0);}
.m1543_c00001{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m1755_c00001{transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);-ms-transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178280,-0.004635,0.006498,0.249916,0,0);}
.m16c0_c00001{transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);}
.m7b8_c00001{transform:matrix(0.178310,-0.004993,0.006997,0.249902,0,0);-ms-transform:matrix(0.178310,-0.004993,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178310,-0.004993,0.006997,0.249902,0,0);}
.me56_c00001{transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178311,0.003210,-0.004499,0.249960,0,0);}
.m244b_c00001{transform:matrix(0.178312,-0.003923,0.005499,0.249940,0,0);-ms-transform:matrix(0.178312,-0.003923,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178312,-0.003923,0.005499,0.249940,0,0);}
.m2c0_c00001{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m133d_c00001{transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178330,0.005172,-0.007247,0.249895,0,0);}
.mfd3_c00001{transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178340,0.000000,0.000000,0.250000,0,0);}
.m2977_c00001{transform:matrix(0.178354,-0.003567,0.004999,0.249950,0,0);-ms-transform:matrix(0.178354,-0.003567,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178354,-0.003567,0.004999,0.249950,0,0);}
.m2f8_c00001{transform:matrix(0.178375,-0.002319,0.003250,0.249979,0,0);-ms-transform:matrix(0.178375,-0.002319,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178375,-0.002319,0.003250,0.249979,0,0);}
.mac0_c00001{transform:matrix(0.178380,-0.007678,0.010751,0.249769,0,0);-ms-transform:matrix(0.178380,-0.007678,0.010751,0.249769,0,0);-webkit-transform:matrix(0.178380,-0.007678,0.010751,0.249769,0,0);}
.m1ba1_c00001{transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178385,0.000000,0.000000,0.250000,0,0);}
.m1690_c00001{transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178390,0.000000,0.000000,0.250000,0,0);}
.mf01_c00001{transform:matrix(0.178400,0.002319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178400,0.002319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178400,0.002319,-0.003250,0.249979,0,0);}
.m1541_c00001{transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178420,0.000000,0.000000,0.250000,0,0);}
.m1e6d_c00001{transform:matrix(0.178425,-0.004639,0.006498,0.249916,0,0);-ms-transform:matrix(0.178425,-0.004639,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178425,-0.004639,0.006498,0.249916,0,0);}
.m388_c00001{transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);-ms-transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178425,-0.002320,0.003250,0.249979,0,0);}
.m19a1_c00001{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.m76e_c00001{transform:matrix(0.178438,0.004104,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178438,0.004104,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178438,0.004104,-0.005748,0.249934,0,0);}
.m1673_c00001{transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178445,0.000000,0.000000,0.250000,0,0);}
.m21b8_c00001{transform:matrix(0.178453,-0.004104,0.005748,0.249934,0,0);-ms-transform:matrix(0.178453,-0.004104,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178453,-0.004104,0.005748,0.249934,0,0);}
.m1e0e_c00001{transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178455,0.000000,0.000000,0.250000,0,0);}
.m14bc_c00001{transform:matrix(0.178468,0.005895,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178468,0.005895,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178468,0.005895,-0.008254,0.249864,0,0);}
.mb1c_c00001{transform:matrix(0.178479,-0.006968,0.009752,0.249810,0,0);-ms-transform:matrix(0.178479,-0.006968,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178479,-0.006968,0.009752,0.249810,0,0);}
.m182c_c00001{transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178485,0.000000,0.000000,0.250000,0,0);}
.m1b3b_c00001{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m535_c00001{transform:matrix(0.178504,0.001964,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178504,0.001964,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178504,0.001964,-0.002750,0.249985,0,0);}
.m168d_c00001{transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178515,0.000000,0.000000,0.250000,0,0);}
.m1e83_c00001{transform:matrix(0.178517,-0.003927,0.005499,0.249940,0,0);-ms-transform:matrix(0.178517,-0.003927,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178517,-0.003927,0.005499,0.249940,0,0);}
.m27d1_c00001{transform:matrix(0.178517,-0.002142,0.003000,0.249982,0,0);-ms-transform:matrix(0.178517,-0.002142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178517,-0.002142,0.003000,0.249982,0,0);}
.m100d_c00001{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.m23b5_c00001{transform:matrix(0.178527,-0.003928,0.005499,0.249940,0,0);-ms-transform:matrix(0.178527,-0.003928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178527,-0.003928,0.005499,0.249940,0,0);}
.me77_c00001{transform:matrix(0.178528,0.002499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178528,0.002499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178528,0.002499,-0.003500,0.249976,0,0);}
.m17f_c00001{transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178530,0.000000,0.000000,0.250000,0,0);}
.mb14_c00001{transform:matrix(0.178534,-0.006970,0.009752,0.249810,0,0);-ms-transform:matrix(0.178534,-0.006970,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178534,-0.006970,0.009752,0.249810,0,0);}
.md79_c00001{transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178540,0.000000,0.000000,0.250000,0,0);}
.m1ef5_c00001{transform:matrix(0.178580,-0.004643,0.006498,0.249916,0,0);-ms-transform:matrix(0.178580,-0.004643,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178580,-0.004643,0.006498,0.249916,0,0);}
.mdef_c00001{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m20ff_c00001{transform:matrix(0.178585,0.005000,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178585,0.005000,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178585,0.005000,-0.006997,0.249902,0,0);}
.m2027_c00001{transform:matrix(0.178589,-0.005536,0.007746,0.249880,0,0);-ms-transform:matrix(0.178589,-0.005536,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178589,-0.005536,0.007746,0.249880,0,0);}
.m2959_c00001{transform:matrix(0.178597,-0.002500,0.003500,0.249976,0,0);-ms-transform:matrix(0.178597,-0.002500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178597,-0.002500,0.003500,0.249976,0,0);}
.m1d13_c00001{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.m15a1_c00001{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m2303_c00001{transform:matrix(0.178621,0.003215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178621,0.003215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178621,0.003215,-0.004499,0.249960,0,0);}
.m10c2_c00001{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m377_c00001{transform:matrix(0.178655,-0.002323,0.003250,0.249979,0,0);-ms-transform:matrix(0.178655,-0.002323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178655,-0.002323,0.003250,0.249979,0,0);}
.m26bf_c00001{transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178660,0.000000,0.000000,0.250000,0,0);}
.m531_c00001{transform:matrix(0.178664,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178664,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178664,0.001965,-0.002750,0.249985,0,0);}
.m1ce5_c00001{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.m25d7_c00001{transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178685,0.000000,0.000000,0.250000,0,0);}
.m1f46_c00001{transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178720,0.000000,0.000000,0.250000,0,0);}
.mac9_c00001{transform:matrix(0.178724,-0.006977,0.009752,0.249810,0,0);-ms-transform:matrix(0.178724,-0.006977,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178724,-0.006977,0.009752,0.249810,0,0);}
.me2b_c00001{transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178745,0.000000,0.000000,0.250000,0,0);}
.m5fd_c00001{transform:matrix(0.178747,-0.007515,0.010501,0.249779,0,0);-ms-transform:matrix(0.178747,-0.007515,0.010501,0.249779,0,0);-webkit-transform:matrix(0.178747,-0.007515,0.010501,0.249779,0,0);}
.m194_c00001{transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178755,0.000000,0.000000,0.250000,0,0);}
.m288b_c00001{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m1221_c00001{transform:matrix(0.178780,-0.004827,0.006748,0.249909,0,0);-ms-transform:matrix(0.178780,-0.004827,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178780,-0.004827,0.006748,0.249909,0,0);}
.m2745_c00001{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.mac2_c00001{transform:matrix(0.178784,-0.006980,0.009752,0.249810,0,0);-ms-transform:matrix(0.178784,-0.006980,0.009752,0.249810,0,0);-webkit-transform:matrix(0.178784,-0.006980,0.009752,0.249810,0,0);}
.m14cc_c00001{transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178787,0.005906,-0.008254,0.249864,0,0);}
.m204c_c00001{transform:matrix(0.178794,-0.005543,0.007746,0.249880,0,0);-ms-transform:matrix(0.178794,-0.005543,0.007746,0.249880,0,0);-webkit-transform:matrix(0.178794,-0.005543,0.007746,0.249880,0,0);}
.m1a31_c00001{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m132d_c00001{transform:matrix(0.178820,0.005186,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178820,0.005186,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178820,0.005186,-0.007247,0.249895,0,0);}
.m550_c00001{transform:matrix(0.178829,0.001967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178829,0.001967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178829,0.001967,-0.002750,0.249985,0,0);}
.m22a8_c00001{transform:matrix(0.178832,0.002861,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178832,0.002861,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178832,0.002861,-0.003999,0.249968,0,0);}
.m6ed_c00001{transform:matrix(0.178834,0.004471,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178834,0.004471,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178834,0.004471,-0.006248,0.249922,0,0);}
.m18f7_c00001{transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178840,0.000000,0.000000,0.250000,0,0);}
.m109f_c00001{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m1b98_c00001{transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178860,0.000000,0.000000,0.250000,0,0);}
.m182d_c00001{transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178865,0.000000,0.000000,0.250000,0,0);}
.m1ef4_c00001{transform:matrix(0.178875,-0.004651,0.006498,0.249916,0,0);-ms-transform:matrix(0.178875,-0.004651,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178875,-0.004651,0.006498,0.249916,0,0);}
.m39e_c00001{transform:matrix(0.178880,-0.002325,0.003250,0.249979,0,0);-ms-transform:matrix(0.178880,-0.002325,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178880,-0.002325,0.003250,0.249979,0,0);}
.m21d6_c00001{transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);-ms-transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178883,-0.004114,0.005748,0.249934,0,0);}
.m1445_c00001{transform:matrix(0.178885,-0.004830,0.006748,0.249909,0,0);-ms-transform:matrix(0.178885,-0.004830,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178885,-0.004830,0.006748,0.249909,0,0);}
.m89a_c00001{transform:matrix(0.178888,-0.003399,0.004749,0.249955,0,0);-ms-transform:matrix(0.178888,-0.003399,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178888,-0.003399,0.004749,0.249955,0,0);}
.m1901_c00001{transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178890,0.000000,0.000000,0.250000,0,0);}
.m27b8_c00001{transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);}
.mb6e_c00001{transform:matrix(0.178905,-0.005188,0.007247,0.249895,0,0);-ms-transform:matrix(0.178905,-0.005188,0.007247,0.249895,0,0);-webkit-transform:matrix(0.178905,-0.005188,0.007247,0.249895,0,0);}
.ma80_c00001{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m18b_c00001{transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178920,0.000000,0.000000,0.250000,0,0);}
.m1a52_c00001{transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178930,0.000000,0.000000,0.250000,0,0);}
.m26a8_c00001{transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178935,0.000000,0.000000,0.250000,0,0);}
.m1c3c_c00001{transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178945,0.000000,0.000000,0.250000,0,0);}
.m170f_c00001{transform:matrix(0.178965,-0.004653,0.006498,0.249916,0,0);-ms-transform:matrix(0.178965,-0.004653,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178965,-0.004653,0.006498,0.249916,0,0);}
.m6b9_c00001{transform:matrix(0.178974,0.004474,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178974,0.004474,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178974,0.004474,-0.006248,0.249922,0,0);}
.m5d6_c00001{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m1e2c_c00001{transform:matrix(0.179005,-0.004654,0.006498,0.249916,0,0);-ms-transform:matrix(0.179005,-0.004654,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179005,-0.004654,0.006498,0.249916,0,0);}
.m11ba_c00001{transform:matrix(0.179007,-0.003938,0.005499,0.249940,0,0);-ms-transform:matrix(0.179007,-0.003938,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179007,-0.003938,0.005499,0.249940,0,0);}
.m2091_c00001{transform:matrix(0.179009,-0.005549,0.007746,0.249880,0,0);-ms-transform:matrix(0.179009,-0.005549,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179009,-0.005549,0.007746,0.249880,0,0);}
.m303_c00001{transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);-ms-transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);}
.m25cf_c00001{transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179020,0.000000,0.000000,0.250000,0,0);}
.m1f8f_c00001{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m1bee_c00001{transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179035,0.000000,0.000000,0.250000,0,0);}
.m23ea_c00001{transform:matrix(0.179042,-0.003939,0.005499,0.249940,0,0);-ms-transform:matrix(0.179042,-0.003939,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179042,-0.003939,0.005499,0.249940,0,0);}
.m27d0_c00001{transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179052,-0.002149,0.003000,0.249982,0,0);}
.m1408_c00001{transform:matrix(0.179064,-0.004656,0.006498,0.249916,0,0);-ms-transform:matrix(0.179064,-0.004656,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179064,-0.004656,0.006498,0.249916,0,0);}
.m412_c00001{transform:matrix(0.179071,-0.003760,0.005249,0.249945,0,0);-ms-transform:matrix(0.179071,-0.003760,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179071,-0.003760,0.005249,0.249945,0,0);}
.m1fcc_c00001{transform:matrix(0.179074,-0.004477,0.006248,0.249922,0,0);-ms-transform:matrix(0.179074,-0.004477,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179074,-0.004477,0.006248,0.249922,0,0);}
.m136_c00001{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.m25a3_c00001{transform:matrix(0.179084,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179084,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179084,-0.001970,0.002750,0.249985,0,0);}
.m2545_c00001{transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179085,-0.002686,0.003750,0.249972,0,0);}
.m25e3_c00001{transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179085,0.000000,0.000000,0.250000,0,0);}
.m1a88_c00001{transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179095,0.000000,0.000000,0.250000,0,0);}
.m2c5_c00001{transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179105,0.000000,0.000000,0.250000,0,0);}
.mca4_c00001{transform:matrix(0.179120,-0.005194,0.007247,0.249895,0,0);-ms-transform:matrix(0.179120,-0.005194,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179120,-0.005194,0.007247,0.249895,0,0);}
.mc42_c00001{transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179130,0.000000,0.000000,0.250000,0,0);}
.mb8a_c00001{transform:matrix(0.179133,0.009872,-0.013757,0.249621,0,0);-ms-transform:matrix(0.179133,0.009872,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.179133,0.009872,-0.013757,0.249621,0,0);}
.mf8e_c00001{transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);}
.me05_c00001{transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179145,0.000000,0.000000,0.250000,0,0);}
.m21f2_c00001{transform:matrix(0.179153,-0.003404,0.004749,0.249955,0,0);-ms-transform:matrix(0.179153,-0.003404,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179153,-0.003404,0.004749,0.249955,0,0);}
.m238f_c00001{transform:matrix(0.179169,-0.004658,0.006498,0.249916,0,0);-ms-transform:matrix(0.179169,-0.004658,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179169,-0.004658,0.006498,0.249916,0,0);}
.m1ae9_c00001{transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179170,0.000000,0.000000,0.250000,0,0);}
.m1908_c00001{transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);}
.m186_c00001{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m2344_c00001{transform:matrix(0.179186,0.003225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179186,0.003225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179186,0.003225,-0.004499,0.249960,0,0);}
.md01_c00001{transform:matrix(0.179205,-0.005197,0.007247,0.249895,0,0);-ms-transform:matrix(0.179205,-0.005197,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179205,-0.005197,0.007247,0.249895,0,0);}
.m130c_c00001{transform:matrix(0.179205,0.004839,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179205,0.004839,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179205,0.004839,-0.006748,0.249909,0,0);}
.m1ed5_c00001{transform:matrix(0.179209,-0.004659,0.006498,0.249916,0,0);-ms-transform:matrix(0.179209,-0.004659,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179209,-0.004659,0.006498,0.249916,0,0);}
.m1f3_c00001{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.md02_c00001{transform:matrix(0.179240,-0.005198,0.007247,0.249895,0,0);-ms-transform:matrix(0.179240,-0.005198,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179240,-0.005198,0.007247,0.249895,0,0);}
.m126f_c00001{transform:matrix(0.179240,-0.004839,0.006748,0.249909,0,0);-ms-transform:matrix(0.179240,-0.004839,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179240,-0.004839,0.006748,0.249909,0,0);}
.m961_c00001{transform:matrix(0.179240,-0.006818,0.009503,0.249819,0,0);-ms-transform:matrix(0.179240,-0.006818,0.009503,0.249819,0,0);-webkit-transform:matrix(0.179240,-0.006818,0.009503,0.249819,0,0);}
.mc4a_c00001{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m956_c00001{transform:matrix(0.179280,-0.006819,0.009503,0.249819,0,0);-ms-transform:matrix(0.179280,-0.006819,0.009503,0.249819,0,0);-webkit-transform:matrix(0.179280,-0.006819,0.009503,0.249819,0,0);}
.m1b7b_c00001{transform:matrix(0.179283,-0.003406,0.004749,0.249955,0,0);-ms-transform:matrix(0.179283,-0.003406,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179283,-0.003406,0.004749,0.249955,0,0);}
.m12d1_c00001{transform:matrix(0.179290,0.004841,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179290,0.004841,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179290,0.004841,-0.006748,0.249909,0,0);}
.m284e_c00001{transform:matrix(0.179295,-0.002331,0.003250,0.249979,0,0);-ms-transform:matrix(0.179295,-0.002331,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179295,-0.002331,0.003250,0.249979,0,0);}
.m298a_c00001{transform:matrix(0.179302,-0.002869,0.003999,0.249968,0,0);-ms-transform:matrix(0.179302,-0.002869,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179302,-0.002869,0.003999,0.249968,0,0);}
.m201f_c00001{transform:matrix(0.179319,-0.005559,0.007746,0.249880,0,0);-ms-transform:matrix(0.179319,-0.005559,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179319,-0.005559,0.007746,0.249880,0,0);}
.m26ca_c00001{transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179335,0.000000,0.000000,0.250000,0,0);}
.m93c_c00001{transform:matrix(0.179345,-0.006822,0.009503,0.249819,0,0);-ms-transform:matrix(0.179345,-0.006822,0.009503,0.249819,0,0);-webkit-transform:matrix(0.179345,-0.006822,0.009503,0.249819,0,0);}
.m298b_c00001{transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);-ms-transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179357,-0.002870,0.003999,0.249968,0,0);}
.m160e_c00001{transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179360,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179365,0.000000,0.000000,0.250000,0,0);}
.me2_c00001{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m12e6_c00001{transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179380,0.004843,-0.006748,0.249909,0,0);}
.m1a35_c00001{transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179380,0.000000,0.000000,0.250000,0,0);}
.m5bb_c00001{transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179405,0.000000,0.000000,0.250000,0,0);}
.m1f60_c00001{transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179420,0.000000,0.000000,0.250000,0,0);}
.m27d_c00001{transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179430,0.000000,0.000000,0.250000,0,0);}
.m2179_c00001{transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179445,0.005024,-0.006997,0.249902,0,0);}
.mf2_c00001{transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179445,0.000000,0.000000,0.250000,0,0);}
.m19d0_c00001{transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179455,0.000000,0.000000,0.250000,0,0);}
.m20d3_c00001{transform:matrix(0.179464,0.004487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179464,0.004487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179464,0.004487,-0.006248,0.249922,0,0);}
.m221_c00001{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.m2979_c00001{transform:matrix(0.179489,-0.003590,0.004999,0.249950,0,0);-ms-transform:matrix(0.179489,-0.003590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179489,-0.003590,0.004999,0.249950,0,0);}
.m212c_c00001{transform:matrix(0.179500,0.005026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179500,0.005026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179500,0.005026,-0.006997,0.249902,0,0);}
.m1945_c00001{transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179510,0.000000,0.000000,0.250000,0,0);}
.m1c9c_c00001{transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179515,0.000000,0.000000,0.250000,0,0);}
.m2844_c00001{transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);-ms-transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179530,-0.002334,0.003250,0.249979,0,0);}
.m12f2_c00001{transform:matrix(0.179535,0.004847,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179535,0.004847,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179535,0.004847,-0.006748,0.249909,0,0);}
.m1fed_c00001{transform:matrix(0.179539,-0.004488,0.006248,0.249922,0,0);-ms-transform:matrix(0.179539,-0.004488,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179539,-0.004488,0.006248,0.249922,0,0);}
.md1_c00001{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m872_c00001{transform:matrix(0.179555,-0.005028,0.006997,0.249902,0,0);-ms-transform:matrix(0.179555,-0.005028,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179555,-0.005028,0.006997,0.249902,0,0);}
.m1ec0_c00001{transform:matrix(0.179564,-0.004669,0.006498,0.249916,0,0);-ms-transform:matrix(0.179564,-0.004669,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179564,-0.004669,0.006498,0.249916,0,0);}
.m1467_c00001{transform:matrix(0.179570,0.006830,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179570,0.006830,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179570,0.006830,-0.009503,0.249819,0,0);}
.m3af_c00001{transform:matrix(0.179585,-0.002335,0.003250,0.249979,0,0);-ms-transform:matrix(0.179585,-0.002335,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179585,-0.002335,0.003250,0.249979,0,0);}
.m677_c00001{transform:matrix(0.179589,-0.007371,0.010252,0.249790,0,0);-ms-transform:matrix(0.179589,-0.007371,0.010252,0.249790,0,0);-webkit-transform:matrix(0.179589,-0.007371,0.010252,0.249790,0,0);}
.m1c0b_c00001{transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);}
.m1164_c00001{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.mc07_c00001{transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179605,0.000000,0.000000,0.250000,0,0);}
.m1ae4_c00001{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m17ba_c00001{transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179620,0.000000,0.000000,0.250000,0,0);}
.m1cc9_c00001{transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179635,0.000000,0.000000,0.250000,0,0);}
.md8c_c00001{transform:matrix(0.179637,0.002156,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179637,0.002156,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179637,0.002156,-0.003000,0.249982,0,0);}
.m257f_c00001{transform:matrix(0.179645,-0.002335,0.003250,0.249979,0,0);-ms-transform:matrix(0.179645,-0.002335,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179645,-0.002335,0.003250,0.249979,0,0);}
.m1d79_c00001{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m726_c00001{transform:matrix(0.179694,0.004492,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179694,0.004492,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179694,0.004492,-0.006248,0.249922,0,0);}
.m14af_c00001{transform:matrix(0.179702,0.005936,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179702,0.005936,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179702,0.005936,-0.008254,0.249864,0,0);}
.m386_c00001{transform:matrix(0.179730,-0.002336,0.003250,0.249979,0,0);-ms-transform:matrix(0.179730,-0.002336,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179730,-0.002336,0.003250,0.249979,0,0);}
.m1ba0_c00001{transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179730,0.000000,0.000000,0.250000,0,0);}
.m2022_c00001{transform:matrix(0.179739,-0.005572,0.007746,0.249880,0,0);-ms-transform:matrix(0.179739,-0.005572,0.007746,0.249880,0,0);-webkit-transform:matrix(0.179739,-0.005572,0.007746,0.249880,0,0);}
.mefe_c00001{transform:matrix(0.179740,0.002337,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179740,0.002337,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179740,0.002337,-0.003250,0.249979,0,0);}
.m1b9f_c00001{transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179760,0.000000,0.000000,0.250000,0,0);}
.m229e_c00001{transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);}
.m1c5f_c00001{transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179790,0.000000,0.000000,0.250000,0,0);}
.m1dd8_c00001{transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);}
.m245f_c00001{transform:matrix(0.179821,-0.003956,0.005499,0.249940,0,0);-ms-transform:matrix(0.179821,-0.003956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179821,-0.003956,0.005499,0.249940,0,0);}
.m1c13_c00001{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1cf6_c00001{transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179830,0.000000,0.000000,0.250000,0,0);}
.m1457_c00001{transform:matrix(0.179834,-0.004856,0.006748,0.249909,0,0);-ms-transform:matrix(0.179834,-0.004856,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179834,-0.004856,0.006748,0.249909,0,0);}
.m254_c00001{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m1777_c00001{transform:matrix(0.179839,-0.004676,0.006498,0.249916,0,0);-ms-transform:matrix(0.179839,-0.004676,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179839,-0.004676,0.006498,0.249916,0,0);}
.m262d_c00001{transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179865,0.000000,0.000000,0.250000,0,0);}
.m1cde_c00001{transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179895,0.000000,0.000000,0.250000,0,0);}
.m1e1b_c00001{transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);-ms-transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179904,-0.004678,0.006498,0.249916,0,0);}
.m19b6_c00001{transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179910,0.000000,0.000000,0.250000,0,0);}
.mf4c_c00001{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.m17e_c00001{transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179920,0.000000,0.000000,0.250000,0,0);}
.m13e4_c00001{transform:matrix(0.179929,-0.004678,0.006498,0.249916,0,0);-ms-transform:matrix(0.179929,-0.004678,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179929,-0.004678,0.006498,0.249916,0,0);}
.m11c_c00001{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m2795_c00001{transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179960,0.000000,0.000000,0.250000,0,0);}
.m2833_c00001{transform:matrix(0.179975,-0.002340,0.003250,0.249979,0,0);-ms-transform:matrix(0.179975,-0.002340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179975,-0.002340,0.003250,0.249979,0,0);}
.m286f_c00001{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mcce_c00001{transform:matrix(0.179984,-0.005220,0.007247,0.249895,0,0);-ms-transform:matrix(0.179984,-0.005220,0.007247,0.249895,0,0);-webkit-transform:matrix(0.179984,-0.005220,0.007247,0.249895,0,0);}
.m1fe_c00001{transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179985,0.000000,0.000000,0.250000,0,0);}
.m189c_c00001{transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179990,0.000000,0.000000,0.250000,0,0);}
.m28ee_c00001{transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180005,0.000000,0.000000,0.250000,0,0);}
.m327_c00001{transform:matrix(0.180010,-0.002340,0.003250,0.249979,0,0);-ms-transform:matrix(0.180010,-0.002340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180010,-0.002340,0.003250,0.249979,0,0);}
.m6fc_c00001{transform:matrix(0.180014,0.004500,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180014,0.004500,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180014,0.004500,-0.006248,0.249922,0,0);}
.mc60_c00001{transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180015,0.000000,0.000000,0.250000,0,0);}
.m23f3_c00001{transform:matrix(0.180016,-0.003960,0.005499,0.249940,0,0);-ms-transform:matrix(0.180016,-0.003960,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180016,-0.003960,0.005499,0.249940,0,0);}
.m1eb0_c00001{transform:matrix(0.180024,-0.004681,0.006498,0.249916,0,0);-ms-transform:matrix(0.180024,-0.004681,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180024,-0.004681,0.006498,0.249916,0,0);}
.m3db_c00001{transform:matrix(0.180024,-0.005041,0.006997,0.249902,0,0);-ms-transform:matrix(0.180024,-0.005041,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180024,-0.005041,0.006997,0.249902,0,0);}
.m94_c00001{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m122c_c00001{transform:matrix(0.180054,-0.004861,0.006748,0.249909,0,0);-ms-transform:matrix(0.180054,-0.004861,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180054,-0.004861,0.006748,0.249909,0,0);}
.m2347_c00001{transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180056,0.003241,-0.004499,0.249960,0,0);}
.m11f4_c00001{transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);-ms-transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180066,-0.003961,0.005499,0.249940,0,0);}
.m6d_c00001{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m211e_c00001{transform:matrix(0.180094,0.005043,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180094,0.005043,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180094,0.005043,-0.006997,0.249902,0,0);}
.m450_c00001{transform:matrix(0.180102,-0.003422,0.004749,0.249955,0,0);-ms-transform:matrix(0.180102,-0.003422,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180102,-0.003422,0.004749,0.249955,0,0);}
.m1eba_c00001{transform:matrix(0.180104,-0.004683,0.006498,0.249916,0,0);-ms-transform:matrix(0.180104,-0.004683,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180104,-0.004683,0.006498,0.249916,0,0);}
.md90_c00001{transform:matrix(0.180107,0.002161,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180107,0.002161,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180107,0.002161,-0.003000,0.249982,0,0);}
.m221d_c00001{transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);-ms-transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180112,-0.004143,0.005748,0.249934,0,0);}
.m22c5_c00001{transform:matrix(0.180117,0.002882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180117,0.002882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180117,0.002882,-0.003999,0.249968,0,0);}
.md54_c00001{transform:matrix(0.180124,-0.005224,0.007247,0.249895,0,0);-ms-transform:matrix(0.180124,-0.005224,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180124,-0.005224,0.007247,0.249895,0,0);}
.m2db_c00001{transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180129,-0.001981,0.002750,0.249985,0,0);}
.mc8d_c00001{transform:matrix(0.180129,-0.005224,0.007247,0.249895,0,0);-ms-transform:matrix(0.180129,-0.005224,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180129,-0.005224,0.007247,0.249895,0,0);}
.mf2a_c00001{transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180135,0.000000,0.000000,0.250000,0,0);}
.m2487_c00001{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m1702_c00001{transform:matrix(0.180144,-0.004684,0.006498,0.249916,0,0);-ms-transform:matrix(0.180144,-0.004684,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180144,-0.004684,0.006498,0.249916,0,0);}
.m2324_c00001{transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180151,0.003243,-0.004499,0.249960,0,0);}
.mbc0_c00001{transform:matrix(0.180154,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180154,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180154,0.001982,-0.002750,0.249985,0,0);}
.m2566_c00001{transform:matrix(0.180155,-0.002342,0.003250,0.249979,0,0);-ms-transform:matrix(0.180155,-0.002342,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180155,-0.002342,0.003250,0.249979,0,0);}
.m10f1_c00001{transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180160,0.000000,0.000000,0.250000,0,0);}
.m2797_c00001{transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180165,0.000000,0.000000,0.250000,0,0);}
.m235a_c00001{transform:matrix(0.180166,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180166,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180166,0.003243,-0.004499,0.249960,0,0);}
.mdd6_c00001{transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180170,0.000000,0.000000,0.250000,0,0);}
.mec0_c00001{transform:matrix(0.180172,0.002522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180172,0.002522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180172,0.002522,-0.003500,0.249976,0,0);}
.m10dc_c00001{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m1604_c00001{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m1d7c_c00001{transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180185,0.000000,0.000000,0.250000,0,0);}
.m9a7_c00001{transform:matrix(0.180210,-0.006855,0.009503,0.249819,0,0);-ms-transform:matrix(0.180210,-0.006855,0.009503,0.249819,0,0);-webkit-transform:matrix(0.180210,-0.006855,0.009503,0.249819,0,0);}
.m1809_c00001{transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180210,0.000000,0.000000,0.250000,0,0);}
.mbfd_c00001{transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180215,0.000000,0.000000,0.250000,0,0);}
.m2887_c00001{transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180290,0.000000,0.000000,0.250000,0,0);}
.m186c_c00001{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m5b2_c00001{transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180324,0.001984,-0.002750,0.249985,0,0);}
.m462_c00001{transform:matrix(0.180331,-0.006137,0.008504,0.249855,0,0);-ms-transform:matrix(0.180331,-0.006137,0.008504,0.249855,0,0);-webkit-transform:matrix(0.180331,-0.006137,0.008504,0.249855,0,0);}
.m102a_c00001{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.mb7f_c00001{transform:matrix(0.180352,-0.005958,0.008254,0.249864,0,0);-ms-transform:matrix(0.180352,-0.005958,0.008254,0.249864,0,0);-webkit-transform:matrix(0.180352,-0.005958,0.008254,0.249864,0,0);}
.mb1f_c00001{transform:matrix(0.180373,-0.007042,0.009752,0.249810,0,0);-ms-transform:matrix(0.180373,-0.007042,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180373,-0.007042,0.009752,0.249810,0,0);}
.m2835_c00001{transform:matrix(0.180415,-0.002345,0.003250,0.249979,0,0);-ms-transform:matrix(0.180415,-0.002345,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180415,-0.002345,0.003250,0.249979,0,0);}
.m1532_c00001{transform:matrix(0.180417,0.005960,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180417,0.005960,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180417,0.005960,-0.008254,0.249864,0,0);}
.m16a_c00001{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m2408_c00001{transform:matrix(0.180436,-0.003970,0.005499,0.249940,0,0);-ms-transform:matrix(0.180436,-0.003970,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180436,-0.003970,0.005499,0.249940,0,0);}
.med1_c00001{transform:matrix(0.180442,0.002526,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180442,0.002526,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180442,0.002526,-0.003500,0.249976,0,0);}
.m22cb_c00001{transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180447,0.002887,-0.003999,0.249968,0,0);}
.m60d_c00001{transform:matrix(0.180450,-0.003789,0.005249,0.249945,0,0);-ms-transform:matrix(0.180450,-0.003789,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180450,-0.003789,0.005249,0.249945,0,0);}
.m22bd_c00001{transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);}
.madb_c00001{transform:matrix(0.180458,-0.007045,0.009752,0.249810,0,0);-ms-transform:matrix(0.180458,-0.007045,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180458,-0.007045,0.009752,0.249810,0,0);}
.m27_c00001{transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180460,0.000000,0.000000,0.250000,0,0);}
.m2068_c00001{transform:matrix(0.180463,-0.005594,0.007746,0.249880,0,0);-ms-transform:matrix(0.180463,-0.005594,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180463,-0.005594,0.007746,0.249880,0,0);}
.m16ff_c00001{transform:matrix(0.180469,-0.004692,0.006498,0.249916,0,0);-ms-transform:matrix(0.180469,-0.004692,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180469,-0.004692,0.006498,0.249916,0,0);}
.m155a_c00001{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.m7fd_c00001{transform:matrix(0.180479,-0.005053,0.006997,0.249902,0,0);-ms-transform:matrix(0.180479,-0.005053,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180479,-0.005053,0.006997,0.249902,0,0);}
.m199c_c00001{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.m284d_c00001{transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);-ms-transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180500,-0.002346,0.003250,0.249979,0,0);}
.mced_c00001{transform:matrix(0.180509,-0.005235,0.007247,0.249895,0,0);-ms-transform:matrix(0.180509,-0.005235,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180509,-0.005235,0.007247,0.249895,0,0);}
.m102_c00001{transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180515,0.000000,0.000000,0.250000,0,0);}
.m6c1_c00001{transform:matrix(0.180529,0.004513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180529,0.004513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180529,0.004513,-0.006248,0.249922,0,0);}
.m173a_c00001{transform:matrix(0.180529,-0.004694,0.006498,0.249916,0,0);-ms-transform:matrix(0.180529,-0.004694,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180529,-0.004694,0.006498,0.249916,0,0);}
.m7c7_c00001{transform:matrix(0.180529,-0.005055,0.006997,0.249902,0,0);-ms-transform:matrix(0.180529,-0.005055,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180529,-0.005055,0.006997,0.249902,0,0);}
.m1790_c00001{transform:matrix(0.180534,-0.004694,0.006498,0.249916,0,0);-ms-transform:matrix(0.180534,-0.004694,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180534,-0.004694,0.006498,0.249916,0,0);}
.me1c_c00001{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m4ef_c00001{transform:matrix(0.180564,0.001986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180564,0.001986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180564,0.001986,-0.002750,0.249985,0,0);}
.m5_c00001{transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180570,0.000000,0.000000,0.250000,0,0);}
.m733_c00001{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m8e6_c00001{transform:matrix(0.180579,-0.006869,0.009503,0.249819,0,0);-ms-transform:matrix(0.180579,-0.006869,0.009503,0.249819,0,0);-webkit-transform:matrix(0.180579,-0.006869,0.009503,0.249819,0,0);}
.mc0a_c00001{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m6df_c00001{transform:matrix(0.180589,0.004515,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180589,0.004515,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180589,0.004515,-0.006248,0.249922,0,0);}
.m1fa1_c00001{transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180595,0.000000,0.000000,0.250000,0,0);}
.m6db_c00001{transform:matrix(0.180599,0.004515,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180599,0.004515,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180599,0.004515,-0.006248,0.249922,0,0);}
.m212e_c00001{transform:matrix(0.180604,0.005057,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180604,0.005057,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180604,0.005057,-0.006997,0.249902,0,0);}
.m75_c00001{transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180605,0.000000,0.000000,0.250000,0,0);}
.m280b_c00001{transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180610,0.000000,0.000000,0.250000,0,0);}
.m169a_c00001{transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180630,0.000000,0.000000,0.250000,0,0);}
.m167f_c00001{transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180635,0.000000,0.000000,0.250000,0,0);}
.m741_c00001{transform:matrix(0.180674,0.005059,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180674,0.005059,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180674,0.005059,-0.006997,0.249902,0,0);}
.m28db_c00001{transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180680,0.000000,0.000000,0.250000,0,0);}
.m1b69_c00001{transform:matrix(0.180682,-0.003433,0.004749,0.249955,0,0);-ms-transform:matrix(0.180682,-0.003433,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180682,-0.003433,0.004749,0.249955,0,0);}
.m36a_c00001{transform:matrix(0.180690,-0.002349,0.003250,0.249979,0,0);-ms-transform:matrix(0.180690,-0.002349,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180690,-0.002349,0.003250,0.249979,0,0);}
.m1070_c00001{transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180690,0.000000,0.000000,0.250000,0,0);}
.m1b5d_c00001{transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180695,0.000000,0.000000,0.250000,0,0);}
.m1133_c00001{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m265a_c00001{transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180705,0.000000,0.000000,0.250000,0,0);}
.m149d_c00001{transform:matrix(0.180706,0.005969,-0.008254,0.249864,0,0);-ms-transform:matrix(0.180706,0.005969,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.180706,0.005969,-0.008254,0.249864,0,0);}
.m1e68_c00001{transform:matrix(0.180714,-0.004699,0.006498,0.249916,0,0);-ms-transform:matrix(0.180714,-0.004699,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180714,-0.004699,0.006498,0.249916,0,0);}
.m1d25_c00001{transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180715,0.000000,0.000000,0.250000,0,0);}
.m223b_c00001{transform:matrix(0.180720,-0.003795,0.005249,0.249945,0,0);-ms-transform:matrix(0.180720,-0.003795,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180720,-0.003795,0.005249,0.249945,0,0);}
.mbbe_c00001{transform:matrix(0.180724,0.001988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180724,0.001988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180724,0.001988,-0.002750,0.249985,0,0);}
.m13e0_c00001{transform:matrix(0.180734,-0.004699,0.006498,0.249916,0,0);-ms-transform:matrix(0.180734,-0.004699,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180734,-0.004699,0.006498,0.249916,0,0);}
.m312_c00001{transform:matrix(0.180740,-0.002350,0.003250,0.249979,0,0);-ms-transform:matrix(0.180740,-0.002350,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180740,-0.002350,0.003250,0.249979,0,0);}
.m128c_c00001{transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180740,0.000000,0.000000,0.250000,0,0);}
.m10d3_c00001{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m2306_c00001{transform:matrix(0.180751,0.003254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180751,0.003254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180751,0.003254,-0.004499,0.249960,0,0);}
.m1c4d_c00001{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.mddc_c00001{transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180760,0.000000,0.000000,0.250000,0,0);}
.m28a_c00001{transform:matrix(0.180765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180765,0.000000,0.000000,0.250000,0,0);}
.m20d7_c00001{transform:matrix(0.180769,0.004519,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180769,0.004519,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180769,0.004519,-0.006248,0.249922,0,0);}
.md60_c00001{transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180770,0.000000,0.000000,0.250000,0,0);}
.mbe2_c00001{transform:matrix(0.180774,0.001989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180774,0.001989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180774,0.001989,-0.002750,0.249985,0,0);}
.m9fa_c00001{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m1ba2_c00001{transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180780,0.000000,0.000000,0.250000,0,0);}
.mcf6_c00001{transform:matrix(0.180789,-0.005243,0.007247,0.249895,0,0);-ms-transform:matrix(0.180789,-0.005243,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180789,-0.005243,0.007247,0.249895,0,0);}
.m1d24_c00001{transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180795,0.000000,0.000000,0.250000,0,0);}
.mb6a_c00001{transform:matrix(0.180808,-0.006516,0.009003,0.249838,0,0);-ms-transform:matrix(0.180808,-0.006516,0.009003,0.249838,0,0);-webkit-transform:matrix(0.180808,-0.006516,0.009003,0.249838,0,0);}
.md4c_c00001{transform:matrix(0.180859,-0.005245,0.007247,0.249895,0,0);-ms-transform:matrix(0.180859,-0.005245,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180859,-0.005245,0.007247,0.249895,0,0);}
.me09_c00001{transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);}
.m1e5b_c00001{transform:matrix(0.180884,-0.004703,0.006498,0.249916,0,0);-ms-transform:matrix(0.180884,-0.004703,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180884,-0.004703,0.006498,0.249916,0,0);}
.m1779_c00001{transform:matrix(0.180889,-0.004703,0.006498,0.249916,0,0);-ms-transform:matrix(0.180889,-0.004703,0.006498,0.249916,0,0);-webkit-transform:matrix(0.180889,-0.004703,0.006498,0.249916,0,0);}
.m7ef_c00001{transform:matrix(0.180889,-0.005065,0.006997,0.249902,0,0);-ms-transform:matrix(0.180889,-0.005065,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180889,-0.005065,0.006997,0.249902,0,0);}
.m9a5_c00001{transform:matrix(0.180894,-0.006881,0.009503,0.249819,0,0);-ms-transform:matrix(0.180894,-0.006881,0.009503,0.249819,0,0);-webkit-transform:matrix(0.180894,-0.006881,0.009503,0.249819,0,0);}
.m10ef_c00001{transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180905,0.000000,0.000000,0.250000,0,0);}
.me3b_c00001{transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180910,0.000000,0.000000,0.250000,0,0);}
.m280e_c00001{transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);}
.m1320_c00001{transform:matrix(0.180929,0.004704,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180929,0.004704,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180929,0.004704,-0.006498,0.249916,0,0);}
.mfb4_c00001{transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180930,0.000000,0.000000,0.250000,0,0);}
.mae5_c00001{transform:matrix(0.180932,-0.007063,0.009752,0.249810,0,0);-ms-transform:matrix(0.180932,-0.007063,0.009752,0.249810,0,0);-webkit-transform:matrix(0.180932,-0.007063,0.009752,0.249810,0,0);}
.m2278_c00001{transform:matrix(0.180942,-0.004162,0.005748,0.249934,0,0);-ms-transform:matrix(0.180942,-0.004162,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180942,-0.004162,0.005748,0.249934,0,0);}
.m1c73_c00001{transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180955,0.000000,0.000000,0.250000,0,0);}
.md23_c00001{transform:matrix(0.180964,-0.005248,0.007247,0.249895,0,0);-ms-transform:matrix(0.180964,-0.005248,0.007247,0.249895,0,0);-webkit-transform:matrix(0.180964,-0.005248,0.007247,0.249895,0,0);}
.mbc8_c00001{transform:matrix(0.180979,0.001991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180979,0.001991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180979,0.001991,-0.002750,0.249985,0,0);}
.m60_c00001{transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180980,0.000000,0.000000,0.250000,0,0);}
.mbeb_c00001{transform:matrix(0.180994,0.001991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180994,0.001991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180994,0.001991,-0.002750,0.249985,0,0);}
.m1228_c00001{transform:matrix(0.181004,-0.004887,0.006748,0.249909,0,0);-ms-transform:matrix(0.181004,-0.004887,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181004,-0.004887,0.006748,0.249909,0,0);}
.m2870_c00001{transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181010,0.000000,0.000000,0.250000,0,0);}
.m1fe8_c00001{transform:matrix(0.181013,-0.004525,0.006248,0.249922,0,0);-ms-transform:matrix(0.181013,-0.004525,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181013,-0.004525,0.006248,0.249922,0,0);}
.m1f29_c00001{transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181020,0.000000,0.000000,0.250000,0,0);}
.m169e_c00001{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m2854_c00001{transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181045,0.000000,0.000000,0.250000,0,0);}
.m18f9_c00001{transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);}
.m2106_c00001{transform:matrix(0.181064,0.005070,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181064,0.005070,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181064,0.005070,-0.006997,0.249902,0,0);}
.m1aa4_c00001{transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181070,0.000000,0.000000,0.250000,0,0);}
.m1004_c00001{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m7d1_c00001{transform:matrix(0.181079,-0.005070,0.006997,0.249902,0,0);-ms-transform:matrix(0.181079,-0.005070,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181079,-0.005070,0.006997,0.249902,0,0);}
.ma06_c00001{transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181080,0.000000,0.000000,0.250000,0,0);}
.maef_c00001{transform:matrix(0.181097,-0.007070,0.009752,0.249810,0,0);-ms-transform:matrix(0.181097,-0.007070,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181097,-0.007070,0.009752,0.249810,0,0);}
.ma8c_c00001{transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181105,0.000000,0.000000,0.250000,0,0);}
.m1b89_c00001{transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);}
.mef6_c00001{transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181120,0.002355,-0.003250,0.249979,0,0);}
.m22f_c00001{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m89d_c00001{transform:matrix(0.181127,-0.003441,0.004749,0.249955,0,0);-ms-transform:matrix(0.181127,-0.003441,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181127,-0.003441,0.004749,0.249955,0,0);}
.m1f0_c00001{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.mdbb_c00001{transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181135,0.000000,0.000000,0.250000,0,0);}
.m1321_c00001{transform:matrix(0.181144,0.005253,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181144,0.005253,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181144,0.005253,-0.007247,0.249895,0,0);}
.me1_c00001{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m2962_c00001{transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181160,0.000000,0.000000,0.250000,0,0);}
.m168b_c00001{transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181165,0.000000,0.000000,0.250000,0,0);}
.m1947_c00001{transform:matrix(0.181170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181170,0.000000,0.000000,0.250000,0,0);}
.ma1b_c00001{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m102b_c00001{transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181180,0.000000,0.000000,0.250000,0,0);}
.m8f3_c00001{transform:matrix(0.181184,-0.006892,0.009503,0.249819,0,0);-ms-transform:matrix(0.181184,-0.006892,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181184,-0.006892,0.009503,0.249819,0,0);}
.m4c8_c00001{transform:matrix(0.181189,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181189,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181189,0.001993,-0.002750,0.249985,0,0);}
.m274e_c00001{transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181190,0.000000,0.000000,0.250000,0,0);}
.m893_c00001{transform:matrix(0.181192,-0.003443,0.004749,0.249955,0,0);-ms-transform:matrix(0.181192,-0.003443,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181192,-0.003443,0.004749,0.249955,0,0);}
.m1280_c00001{transform:matrix(0.181194,-0.004892,0.006748,0.249909,0,0);-ms-transform:matrix(0.181194,-0.004892,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181194,-0.004892,0.006748,0.249909,0,0);}
.md68_c00001{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m120f_c00001{transform:matrix(0.181204,-0.004893,0.006748,0.249909,0,0);-ms-transform:matrix(0.181204,-0.004893,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181204,-0.004893,0.006748,0.249909,0,0);}
.m36d_c00001{transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181205,-0.002356,0.003250,0.249979,0,0);}
.m26ae_c00001{transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181205,0.000000,0.000000,0.250000,0,0);}
.mc31_c00001{transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181210,0.000000,0.000000,0.250000,0,0);}
.m1cd5_c00001{transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181220,0.000000,0.000000,0.250000,0,0);}
.m1f24_c00001{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m333_c00001{transform:matrix(0.181235,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181235,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181235,-0.002356,0.003250,0.249979,0,0);}
.m1867_c00001{transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181235,0.000000,0.000000,0.250000,0,0);}
.m155_c00001{transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181240,0.000000,0.000000,0.250000,0,0);}
.m3b8_c00001{transform:matrix(0.181245,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181245,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181245,-0.002356,0.003250,0.249979,0,0);}
.m11c2_c00001{transform:matrix(0.181256,-0.003988,0.005499,0.249940,0,0);-ms-transform:matrix(0.181256,-0.003988,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181256,-0.003988,0.005499,0.249940,0,0);}
.m2070_c00001{transform:matrix(0.181258,-0.005619,0.007746,0.249880,0,0);-ms-transform:matrix(0.181258,-0.005619,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181258,-0.005619,0.007746,0.249880,0,0);}
.m259a_c00001{transform:matrix(0.181269,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181269,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181269,-0.001994,0.002750,0.249985,0,0);}
.m1083_c00001{transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);}
.m9d2_c00001{transform:matrix(0.181286,0.003263,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181286,0.003263,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181286,0.003263,-0.004499,0.249960,0,0);}
.md26_c00001{transform:matrix(0.181299,-0.005258,0.007247,0.249895,0,0);-ms-transform:matrix(0.181299,-0.005258,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181299,-0.005258,0.007247,0.249895,0,0);}
.m71c_c00001{transform:matrix(0.181303,0.004533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181303,0.004533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181303,0.004533,-0.006248,0.249922,0,0);}
.mb4b_c00001{transform:matrix(0.181307,-0.007078,0.009752,0.249810,0,0);-ms-transform:matrix(0.181307,-0.007078,0.009752,0.249810,0,0);-webkit-transform:matrix(0.181307,-0.007078,0.009752,0.249810,0,0);}
.m20b1_c00001{transform:matrix(0.181308,0.004533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181308,0.004533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181308,0.004533,-0.006248,0.249922,0,0);}
.md5f_c00001{transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181330,0.000000,0.000000,0.250000,0,0);}
.m28d0_c00001{transform:matrix(0.181332,0.002176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181332,0.002176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181332,0.002176,-0.003000,0.249982,0,0);}
.mfa3_c00001{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.m1be6_c00001{transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181345,0.000000,0.000000,0.250000,0,0);}
.m9be_c00001{transform:matrix(0.181349,-0.006898,0.009503,0.249819,0,0);-ms-transform:matrix(0.181349,-0.006898,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181349,-0.006898,0.009503,0.249819,0,0);}
.m4c_c00001{transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181365,0.000000,0.000000,0.250000,0,0);}
.m1548_c00001{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m1efd_c00001{transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181380,0.000000,0.000000,0.250000,0,0);}
.m2965_c00001{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m134f_c00001{transform:matrix(0.181409,0.005261,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181409,0.005261,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181409,0.005261,-0.007247,0.249895,0,0);}
.m21da_c00001{transform:matrix(0.181428,-0.004354,0.005998,0.249928,0,0);-ms-transform:matrix(0.181428,-0.004354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181428,-0.004354,0.005998,0.249928,0,0);}
.m1fe5_c00001{transform:matrix(0.181428,-0.004536,0.006248,0.249922,0,0);-ms-transform:matrix(0.181428,-0.004536,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181428,-0.004536,0.006248,0.249922,0,0);}
.mbac_c00001{transform:matrix(0.181445,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181445,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181445,0.002722,-0.003750,0.249972,0,0);}
.m69_c00001{transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181445,0.000000,0.000000,0.250000,0,0);}
.m235e_c00001{transform:matrix(0.181446,0.003266,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181446,0.003266,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181446,0.003266,-0.004499,0.249960,0,0);}
.mc51_c00001{transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181460,0.000000,0.000000,0.250000,0,0);}
.m16b1_c00001{transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181465,0.000000,0.000000,0.250000,0,0);}
.m79e_c00001{transform:matrix(0.181492,0.004174,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181492,0.004174,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181492,0.004174,-0.005748,0.249934,0,0);}
.md06_c00001{transform:matrix(0.181499,-0.005263,0.007247,0.249895,0,0);-ms-transform:matrix(0.181499,-0.005263,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181499,-0.005263,0.007247,0.249895,0,0);}
.m1dd5_c00001{transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181510,0.000000,0.000000,0.250000,0,0);}
.m2193_c00001{transform:matrix(0.181524,0.005083,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181524,0.005083,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181524,0.005083,-0.006997,0.249902,0,0);}
.m14c6_c00001{transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181526,0.005996,-0.008254,0.249864,0,0);}
.m185_c00001{transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181535,0.000000,0.000000,0.250000,0,0);}
.m2118_c00001{transform:matrix(0.181554,0.005084,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181554,0.005084,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181554,0.005084,-0.006997,0.249902,0,0);}
.m1cb9_c00001{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.m1703_c00001{transform:matrix(0.181564,-0.004721,0.006498,0.249916,0,0);-ms-transform:matrix(0.181564,-0.004721,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181564,-0.004721,0.006498,0.249916,0,0);}
.mca0_c00001{transform:matrix(0.181564,-0.005265,0.007247,0.249895,0,0);-ms-transform:matrix(0.181564,-0.005265,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181564,-0.005265,0.007247,0.249895,0,0);}
.m9fe_c00001{transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181565,0.000000,0.000000,0.250000,0,0);}
.meb2_c00001{transform:matrix(0.181567,0.002542,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181567,0.002542,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181567,0.002542,-0.003500,0.249976,0,0);}
.m1bdb_c00001{transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);}
.m805_c00001{transform:matrix(0.181574,-0.005084,0.006997,0.249902,0,0);-ms-transform:matrix(0.181574,-0.005084,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181574,-0.005084,0.006997,0.249902,0,0);}
.m15a2_c00001{transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181585,0.000000,0.000000,0.250000,0,0);}
.m10a7_c00001{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m1a6b_c00001{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.m1b44_c00001{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m71a_c00001{transform:matrix(0.181628,0.004541,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181628,0.004541,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181628,0.004541,-0.006248,0.249922,0,0);}
.m502_c00001{transform:matrix(0.181629,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181629,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181629,0.001998,-0.002750,0.249985,0,0);}
.m119c_c00001{transform:matrix(0.181631,-0.003996,0.005499,0.249940,0,0);-ms-transform:matrix(0.181631,-0.003996,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181631,-0.003996,0.005499,0.249940,0,0);}
.m11f2_c00001{transform:matrix(0.181636,-0.003996,0.005499,0.249940,0,0);-ms-transform:matrix(0.181636,-0.003996,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181636,-0.003996,0.005499,0.249940,0,0);}
.m1a4d_c00001{transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181645,0.000000,0.000000,0.250000,0,0);}
.m1c59_c00001{transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181655,0.000000,0.000000,0.250000,0,0);}
.m2996_c00001{transform:matrix(0.181667,-0.002907,0.003999,0.249968,0,0);-ms-transform:matrix(0.181667,-0.002907,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181667,-0.002907,0.003999,0.249968,0,0);}
.m180_c00001{transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181670,0.000000,0.000000,0.250000,0,0);}
.m683_c00001{transform:matrix(0.181677,-0.007456,0.010252,0.249790,0,0);-ms-transform:matrix(0.181677,-0.007456,0.010252,0.249790,0,0);-webkit-transform:matrix(0.181677,-0.007456,0.010252,0.249790,0,0);}
.m15e_c00001{transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);}
.m14d4_c00001{transform:matrix(0.181686,0.006002,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181686,0.006002,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181686,0.006002,-0.008254,0.249864,0,0);}
.ma1f_c00001{transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181690,0.000000,0.000000,0.250000,0,0);}
.m1180_c00001{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m6bf_c00001{transform:matrix(0.181703,0.004543,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181703,0.004543,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181703,0.004543,-0.006248,0.249922,0,0);}
.m2618_c00001{transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181710,0.000000,0.000000,0.250000,0,0);}
.m1592_c00001{transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181720,0.000000,0.000000,0.250000,0,0);}
.m616_c00001{transform:matrix(0.181724,-0.008004,0.011000,0.249758,0,0);-ms-transform:matrix(0.181724,-0.008004,0.011000,0.249758,0,0);-webkit-transform:matrix(0.181724,-0.008004,0.011000,0.249758,0,0);}
.mf30_c00001{transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181730,0.000000,0.000000,0.250000,0,0);}
.mcf0_c00001{transform:matrix(0.181734,-0.005270,0.007247,0.249895,0,0);-ms-transform:matrix(0.181734,-0.005270,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181734,-0.005270,0.007247,0.249895,0,0);}
.m732_c00001{transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);}
.m73f_c00001{transform:matrix(0.181739,0.005089,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181739,0.005089,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181739,0.005089,-0.006997,0.249902,0,0);}
.m1c89_c00001{transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181740,0.000000,0.000000,0.250000,0,0);}
.mcf5_c00001{transform:matrix(0.181749,-0.005271,0.007247,0.249895,0,0);-ms-transform:matrix(0.181749,-0.005271,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181749,-0.005271,0.007247,0.249895,0,0);}
.m2390_c00001{transform:matrix(0.181754,-0.004726,0.006498,0.249916,0,0);-ms-transform:matrix(0.181754,-0.004726,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181754,-0.004726,0.006498,0.249916,0,0);}
.m2124_c00001{transform:matrix(0.181764,0.005089,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181764,0.005089,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181764,0.005089,-0.006997,0.249902,0,0);}
.m51b_c00001{transform:matrix(0.181764,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181764,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181764,0.001999,-0.002750,0.249985,0,0);}
.mbaa_c00001{transform:matrix(0.181775,0.002727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181775,0.002727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181775,0.002727,-0.003750,0.249972,0,0);}
.mdcd_c00001{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m77a_c00001{transform:matrix(0.181777,0.004181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181777,0.004181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181777,0.004181,-0.005748,0.249934,0,0);}
.m93d_c00001{transform:matrix(0.181779,-0.006914,0.009503,0.249819,0,0);-ms-transform:matrix(0.181779,-0.006914,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181779,-0.006914,0.009503,0.249819,0,0);}
.m556_c00001{transform:matrix(0.181789,0.002000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181789,0.002000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181789,0.002000,-0.002750,0.249985,0,0);}
.me4b_c00001{transform:matrix(0.181796,0.003272,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181796,0.003272,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181796,0.003272,-0.004499,0.249960,0,0);}
.m5fa_c00001{transform:matrix(0.181804,-0.007643,0.010501,0.249779,0,0);-ms-transform:matrix(0.181804,-0.007643,0.010501,0.249779,0,0);-webkit-transform:matrix(0.181804,-0.007643,0.010501,0.249779,0,0);}
.m45_c00001{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.m104a_c00001{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.m1d5c_c00001{transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181820,0.000000,0.000000,0.250000,0,0);}
.m1b64_c00001{transform:matrix(0.181822,-0.003455,0.004749,0.249955,0,0);-ms-transform:matrix(0.181822,-0.003455,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181822,-0.003455,0.004749,0.249955,0,0);}
.ma52_c00001{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m2050_c00001{transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);-ms-transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181833,-0.005637,0.007746,0.249880,0,0);}
.m943_c00001{transform:matrix(0.181834,-0.006917,0.009503,0.249819,0,0);-ms-transform:matrix(0.181834,-0.006917,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181834,-0.006917,0.009503,0.249819,0,0);}
.m7ee_c00001{transform:matrix(0.181834,-0.005091,0.006997,0.249902,0,0);-ms-transform:matrix(0.181834,-0.005091,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181834,-0.005091,0.006997,0.249902,0,0);}
.m1036_c00001{transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181840,0.000000,0.000000,0.250000,0,0);}
.m13ca_c00001{transform:matrix(0.181854,-0.004728,0.006498,0.249916,0,0);-ms-transform:matrix(0.181854,-0.004728,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181854,-0.004728,0.006498,0.249916,0,0);}
.md11_c00001{transform:matrix(0.181859,-0.005274,0.007247,0.249895,0,0);-ms-transform:matrix(0.181859,-0.005274,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181859,-0.005274,0.007247,0.249895,0,0);}
.m730_c00001{transform:matrix(0.181863,0.004547,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181863,0.004547,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181863,0.004547,-0.006248,0.249922,0,0);}
.mdd2_c00001{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.m23b4_c00001{transform:matrix(0.181881,-0.004001,0.005499,0.249940,0,0);-ms-transform:matrix(0.181881,-0.004001,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181881,-0.004001,0.005499,0.249940,0,0);}
.m27de_c00001{transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181895,0.000000,0.000000,0.250000,0,0);}
.m17b1_c00001{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.mce5_c00001{transform:matrix(0.181909,-0.005275,0.007247,0.249895,0,0);-ms-transform:matrix(0.181909,-0.005275,0.007247,0.249895,0,0);-webkit-transform:matrix(0.181909,-0.005275,0.007247,0.249895,0,0);}
.m2237_c00001{transform:matrix(0.181910,-0.003820,0.005249,0.249945,0,0);-ms-transform:matrix(0.181910,-0.003820,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181910,-0.003820,0.005249,0.249945,0,0);}
.m951_c00001{transform:matrix(0.181918,-0.006920,0.009503,0.249819,0,0);-ms-transform:matrix(0.181918,-0.006920,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181918,-0.006920,0.009503,0.249819,0,0);}
.m2483_c00001{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m1ade_c00001{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m16ed_c00001{transform:matrix(0.181959,-0.004731,0.006498,0.249916,0,0);-ms-transform:matrix(0.181959,-0.004731,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181959,-0.004731,0.006498,0.249916,0,0);}
.m14e1_c00001{transform:matrix(0.181961,0.006011,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181961,0.006011,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181961,0.006011,-0.008254,0.249864,0,0);}
.m1efe_c00001{transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181965,0.000000,0.000000,0.250000,0,0);}
.mf0f_c00001{transform:matrix(0.181966,0.003275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181966,0.003275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181966,0.003275,-0.004499,0.249960,0,0);}
.m11f3_c00001{transform:matrix(0.181966,-0.004003,0.005499,0.249940,0,0);-ms-transform:matrix(0.181966,-0.004003,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181966,-0.004003,0.005499,0.249940,0,0);}
.m6dd_c00001{transform:matrix(0.181968,0.004549,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181968,0.004549,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181968,0.004549,-0.006248,0.249922,0,0);}
.mbee_c00001{transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);}
.m13b2_c00001{transform:matrix(0.181993,-0.004732,0.006498,0.249916,0,0);-ms-transform:matrix(0.181993,-0.004732,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181993,-0.004732,0.006498,0.249916,0,0);}
.mc67_c00001{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00001{transform:matrix(0.182002,-0.002912,0.003999,0.249968,0,0);-ms-transform:matrix(0.182002,-0.002912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182002,-0.002912,0.003999,0.249968,0,0);}
.mb9_c00001{transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182005,0.000000,0.000000,0.250000,0,0);}
.m23ae_c00001{transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);-ms-transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182006,-0.004004,0.005499,0.249940,0,0);}
.mb2a_c00001{transform:matrix(0.182011,-0.007106,0.009752,0.249810,0,0);-ms-transform:matrix(0.182011,-0.007106,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182011,-0.007106,0.009752,0.249810,0,0);}
.ma5b_c00001{transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182015,0.000000,0.000000,0.250000,0,0);}
.m13d0_c00001{transform:matrix(0.182023,-0.004733,0.006498,0.249916,0,0);-ms-transform:matrix(0.182023,-0.004733,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182023,-0.004733,0.006498,0.249916,0,0);}
.m1d31_c00001{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00001{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.m176d_c00001{transform:matrix(0.182043,-0.004733,0.006498,0.249916,0,0);-ms-transform:matrix(0.182043,-0.004733,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182043,-0.004733,0.006498,0.249916,0,0);}
.m36e_c00001{transform:matrix(0.182045,-0.002367,0.003250,0.249979,0,0);-ms-transform:matrix(0.182045,-0.002367,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182045,-0.002367,0.003250,0.249979,0,0);}
.mef3_c00001{transform:matrix(0.182050,0.002367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182050,0.002367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182050,0.002367,-0.003250,0.249979,0,0);}
.m1a96_c00001{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m1615_c00001{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m19a5_c00001{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.mc5d_c00001{transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182070,0.000000,0.000000,0.250000,0,0);}
.m1b50_c00001{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.m1d6c_c00001{transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182085,0.000000,0.000000,0.250000,0,0);}
.m21cb_c00001{transform:matrix(0.182087,-0.004188,0.005748,0.249934,0,0);-ms-transform:matrix(0.182087,-0.004188,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182087,-0.004188,0.005748,0.249934,0,0);}
.m177_c00001{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m2208_c00001{transform:matrix(0.182142,-0.003461,0.004749,0.249955,0,0);-ms-transform:matrix(0.182142,-0.003461,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182142,-0.003461,0.004749,0.249955,0,0);}
.m2201_c00001{transform:matrix(0.182147,-0.003461,0.004749,0.249955,0,0);-ms-transform:matrix(0.182147,-0.003461,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182147,-0.003461,0.004749,0.249955,0,0);}
.m1a73_c00001{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.mb82_c00001{transform:matrix(0.182161,-0.006017,0.008254,0.249864,0,0);-ms-transform:matrix(0.182161,-0.006017,0.008254,0.249864,0,0);-webkit-transform:matrix(0.182161,-0.006017,0.008254,0.249864,0,0);}
.m2910_c00001{transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182165,0.000000,0.000000,0.250000,0,0);}
.mc8_c00001{transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182180,0.000000,0.000000,0.250000,0,0);}
.m990_c00001{transform:matrix(0.182188,-0.006930,0.009503,0.249819,0,0);-ms-transform:matrix(0.182188,-0.006930,0.009503,0.249819,0,0);-webkit-transform:matrix(0.182188,-0.006930,0.009503,0.249819,0,0);}
.m4d5_c00001{transform:matrix(0.182219,0.002004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182219,0.002004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182219,0.002004,-0.002750,0.249985,0,0);}
.m1473_c00001{transform:matrix(0.182221,0.006019,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182221,0.006019,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182221,0.006019,-0.008254,0.249864,0,0);}
.m81a_c00001{transform:matrix(0.182224,-0.005102,0.006997,0.249902,0,0);-ms-transform:matrix(0.182224,-0.005102,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182224,-0.005102,0.006997,0.249902,0,0);}
.m1f26_c00001{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.m1760_c00001{transform:matrix(0.182228,-0.004738,0.006498,0.249916,0,0);-ms-transform:matrix(0.182228,-0.004738,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182228,-0.004738,0.006498,0.249916,0,0);}
.meb_c00001{transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182230,0.000000,0.000000,0.250000,0,0);}
.m2282_c00001{transform:matrix(0.182242,-0.004192,0.005748,0.249934,0,0);-ms-transform:matrix(0.182242,-0.004192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182242,-0.004192,0.005748,0.249934,0,0);}
.m9a3_c00001{transform:matrix(0.182253,-0.006933,0.009503,0.249819,0,0);-ms-transform:matrix(0.182253,-0.006933,0.009503,0.249819,0,0);-webkit-transform:matrix(0.182253,-0.006933,0.009503,0.249819,0,0);}
.m569_c00001{transform:matrix(0.182259,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182259,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182259,0.002005,-0.002750,0.249985,0,0);}
.m295e_c00001{transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-ms-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182262,-0.002552,0.003500,0.249976,0,0);}
.m20ca_c00001{transform:matrix(0.182263,0.004557,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182263,0.004557,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182263,0.004557,-0.006248,0.249922,0,0);}
.m3b9_c00001{transform:matrix(0.182265,-0.002369,0.003250,0.249979,0,0);-ms-transform:matrix(0.182265,-0.002369,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182265,-0.002369,0.003250,0.249979,0,0);}
.mf61_c00001{transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182265,0.000000,0.000000,0.250000,0,0);}
.m19b2_c00001{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m7e4_c00001{transform:matrix(0.182279,-0.005104,0.006997,0.249902,0,0);-ms-transform:matrix(0.182279,-0.005104,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182279,-0.005104,0.006997,0.249902,0,0);}
.m1186_c00001{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m15cc_c00001{transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182285,0.000000,0.000000,0.250000,0,0);}
.me85_c00001{transform:matrix(0.182287,0.002552,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182287,0.002552,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182287,0.002552,-0.003500,0.249976,0,0);}
.m186b_c00001{transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182290,0.000000,0.000000,0.250000,0,0);}
.m202e_c00001{transform:matrix(0.182292,-0.005651,0.007746,0.249880,0,0);-ms-transform:matrix(0.182292,-0.005651,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182292,-0.005651,0.007746,0.249880,0,0);}
.m17d1_c00001{transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182295,0.000000,0.000000,0.250000,0,0);}
.m123a_c00001{transform:matrix(0.182299,-0.004922,0.006748,0.249909,0,0);-ms-transform:matrix(0.182299,-0.004922,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182299,-0.004922,0.006748,0.249909,0,0);}
.m1a89_c00001{transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182305,0.000000,0.000000,0.250000,0,0);}
.md4e_c00001{transform:matrix(0.182318,-0.005287,0.007247,0.249895,0,0);-ms-transform:matrix(0.182318,-0.005287,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182318,-0.005287,0.007247,0.249895,0,0);}
.m10fe_c00001{transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182335,0.000000,0.000000,0.250000,0,0);}
.md2d_c00001{transform:matrix(0.182338,-0.005288,0.007247,0.249895,0,0);-ms-transform:matrix(0.182338,-0.005288,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182338,-0.005288,0.007247,0.249895,0,0);}
.m1dc7_c00001{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.m73d_c00001{transform:matrix(0.182344,0.005106,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182344,0.005106,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182344,0.005106,-0.006997,0.249902,0,0);}
.m1c2e_c00001{transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182345,0.000000,0.000000,0.250000,0,0);}
.md91_c00001{transform:matrix(0.182352,0.002188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182352,0.002188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182352,0.002188,-0.003000,0.249982,0,0);}
.m188d_c00001{transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182370,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m18d3_c00001{transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182410,0.000000,0.000000,0.250000,0,0);}
.m1882_c00001{transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182415,0.000000,0.000000,0.250000,0,0);}
.m28eb_c00001{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m1b88_c00001{transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182430,0.000000,0.000000,0.250000,0,0);}
.m148a_c00001{transform:matrix(0.182440,0.006027,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182440,0.006027,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182440,0.006027,-0.008254,0.249864,0,0);}
.m255c_c00001{transform:matrix(0.182442,-0.002554,0.003500,0.249976,0,0);-ms-transform:matrix(0.182442,-0.002554,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182442,-0.002554,0.003500,0.249976,0,0);}
.m1ec8_c00001{transform:matrix(0.182443,-0.004744,0.006498,0.249916,0,0);-ms-transform:matrix(0.182443,-0.004744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182443,-0.004744,0.006498,0.249916,0,0);}
.m20e8_c00001{transform:matrix(0.182453,0.004561,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182453,0.004561,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182453,0.004561,-0.006248,0.249922,0,0);}
.m18ef_c00001{transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182460,0.000000,0.000000,0.250000,0,0);}
.m239c_c00001{transform:matrix(0.182468,-0.004744,0.006498,0.249916,0,0);-ms-transform:matrix(0.182468,-0.004744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182468,-0.004744,0.006498,0.249916,0,0);}
.m2995_c00001{transform:matrix(0.182482,-0.002920,0.003999,0.249968,0,0);-ms-transform:matrix(0.182482,-0.002920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182482,-0.002920,0.003999,0.249968,0,0);}
.m28_c00001{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mfe6_c00001{transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);}
.me4c_c00001{transform:matrix(0.182505,0.003285,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182505,0.003285,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182505,0.003285,-0.004499,0.249960,0,0);}
.m20c2_c00001{transform:matrix(0.182528,0.004563,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182528,0.004563,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182528,0.004563,-0.006248,0.249922,0,0);}
.m865_c00001{transform:matrix(0.182528,-0.005111,0.006997,0.249902,0,0);-ms-transform:matrix(0.182528,-0.005111,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182528,-0.005111,0.006997,0.249902,0,0);}
.m1104_c00001{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m26af_c00001{transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182555,0.000000,0.000000,0.250000,0,0);}
.m6a7_c00001{transform:matrix(0.182561,-0.007493,0.010252,0.249790,0,0);-ms-transform:matrix(0.182561,-0.007493,0.010252,0.249790,0,0);-webkit-transform:matrix(0.182561,-0.007493,0.010252,0.249790,0,0);}
.m2177_c00001{transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182578,0.005112,-0.006997,0.249902,0,0);}
.m1e67_c00001{transform:matrix(0.182593,-0.004747,0.006498,0.249916,0,0);-ms-transform:matrix(0.182593,-0.004747,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182593,-0.004747,0.006498,0.249916,0,0);}
.m20f8_c00001{transform:matrix(0.182603,0.005113,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182603,0.005113,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182603,0.005113,-0.006997,0.249902,0,0);}
.m1c8d_c00001{transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182615,0.000000,0.000000,0.250000,0,0);}
.m1cfa_c00001{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.m2680_c00001{transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182645,0.000000,0.000000,0.250000,0,0);}
.mf44_c00001{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m1641_c00001{transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);}
.m9ed_c00001{transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182670,0.000000,0.000000,0.250000,0,0);}
.mad0_c00001{transform:matrix(0.182676,-0.007131,0.009752,0.249810,0,0);-ms-transform:matrix(0.182676,-0.007131,0.009752,0.249810,0,0);-webkit-transform:matrix(0.182676,-0.007131,0.009752,0.249810,0,0);}
.m1c1d_c00001{transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182695,0.000000,0.000000,0.250000,0,0);}
.m187a_c00001{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.m4ed_c00001{transform:matrix(0.182704,0.002010,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182704,0.002010,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182704,0.002010,-0.002750,0.249985,0,0);}
.m1fee_c00001{transform:matrix(0.182708,-0.004568,0.006248,0.249922,0,0);-ms-transform:matrix(0.182708,-0.004568,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182708,-0.004568,0.006248,0.249922,0,0);}
.m1a00_c00001{transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182715,0.000000,0.000000,0.250000,0,0);}
.m26b8_c00001{transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182720,0.000000,0.000000,0.250000,0,0);}
.m2346_c00001{transform:matrix(0.182740,0.003289,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182740,0.003289,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182740,0.003289,-0.004499,0.249960,0,0);}
.mbe8_c00001{transform:matrix(0.182744,0.002010,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182744,0.002010,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182744,0.002010,-0.002750,0.249985,0,0);}
.meb9_c00001{transform:matrix(0.182747,0.002558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182747,0.002558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182747,0.002558,-0.003500,0.249976,0,0);}
.m1a16_c00001{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2245_c00001{transform:matrix(0.182760,-0.003838,0.005249,0.249945,0,0);-ms-transform:matrix(0.182760,-0.003838,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182760,-0.003838,0.005249,0.249945,0,0);}
.m17c_c00001{transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182760,0.000000,0.000000,0.250000,0,0);}
.m1c06_c00001{transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182765,0.000000,0.000000,0.250000,0,0);}
.m2682_c00001{transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182780,0.000000,0.000000,0.250000,0,0);}
.m1935_c00001{transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);}
.m119f_c00001{transform:matrix(0.182791,-0.004021,0.005499,0.249940,0,0);-ms-transform:matrix(0.182791,-0.004021,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182791,-0.004021,0.005499,0.249940,0,0);}
.m1bbb_c00001{transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182815,0.000000,0.000000,0.250000,0,0);}
.mfff_c00001{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m2350_c00001{transform:matrix(0.182840,0.003291,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182840,0.003291,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182840,0.003291,-0.004499,0.249960,0,0);}
.mbf_c00001{transform:matrix(0.182855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182855,0.000000,0.000000,0.250000,0,0);}
.m2bb_c00001{transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182865,0.000000,0.000000,0.250000,0,0);}
.m5ae_c00001{transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);}
.mc6d_c00001{transform:matrix(0.182873,-0.005303,0.007247,0.249895,0,0);-ms-transform:matrix(0.182873,-0.005303,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182873,-0.005303,0.007247,0.249895,0,0);}
.m9a2_c00001{transform:matrix(0.182888,-0.006957,0.009503,0.249819,0,0);-ms-transform:matrix(0.182888,-0.006957,0.009503,0.249819,0,0);-webkit-transform:matrix(0.182888,-0.006957,0.009503,0.249819,0,0);}
.maf_c00001{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m5dd_c00001{transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182920,0.000000,0.000000,0.250000,0,0);}
.m2129_c00001{transform:matrix(0.182933,0.005122,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182933,0.005122,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182933,0.005122,-0.006997,0.249902,0,0);}
.m2e5_c00001{transform:matrix(0.182935,-0.002378,0.003250,0.249979,0,0);-ms-transform:matrix(0.182935,-0.002378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182935,-0.002378,0.003250,0.249979,0,0);}
.mda_c00001{transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182940,0.000000,0.000000,0.250000,0,0);}
.m12cc_c00001{transform:matrix(0.182943,0.004574,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182943,0.004574,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182943,0.004574,-0.006248,0.249922,0,0);}
.m1994_c00001{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m20b5_c00001{transform:matrix(0.182953,0.004574,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182953,0.004574,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182953,0.004574,-0.006248,0.249922,0,0);}
.m663_c00001{transform:matrix(0.182961,-0.007509,0.010252,0.249790,0,0);-ms-transform:matrix(0.182961,-0.007509,0.010252,0.249790,0,0);-webkit-transform:matrix(0.182961,-0.007509,0.010252,0.249790,0,0);}
.m126d_c00001{transform:matrix(0.182963,-0.004940,0.006748,0.249909,0,0);-ms-transform:matrix(0.182963,-0.004940,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182963,-0.004940,0.006748,0.249909,0,0);}
.mbd4_c00001{transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182964,0.002013,-0.002750,0.249985,0,0);}
.m16d5_c00001{transform:matrix(0.182979,-0.006228,0.008504,0.249855,0,0);-ms-transform:matrix(0.182979,-0.006228,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182979,-0.006228,0.008504,0.249855,0,0);}
.mde8_c00001{transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182980,0.000000,0.000000,0.250000,0,0);}
.m14ab_c00001{transform:matrix(0.182990,0.006045,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182990,0.006045,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182990,0.006045,-0.008254,0.249864,0,0);}
.m1342_c00001{transform:matrix(0.182998,0.005307,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182998,0.005307,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182998,0.005307,-0.007247,0.249895,0,0);}
.m1d47_c00001{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m20a9_c00001{transform:matrix(0.183030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183030,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00001{transform:matrix(0.183039,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183039,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183039,-0.002746,0.003750,0.249972,0,0);}
.m25f2_c00001{transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183045,0.000000,0.000000,0.250000,0,0);}
.m1c7f_c00001{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m2232_c00001{transform:matrix(0.183060,-0.003844,0.005249,0.249945,0,0);-ms-transform:matrix(0.183060,-0.003844,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183060,-0.003844,0.005249,0.249945,0,0);}
.m2033_c00001{transform:matrix(0.183062,-0.005675,0.007746,0.249880,0,0);-ms-transform:matrix(0.183062,-0.005675,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183062,-0.005675,0.007746,0.249880,0,0);}
.m2721_c00001{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m298e_c00001{transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);-ms-transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183077,-0.002929,0.003999,0.249968,0,0);}
.m13a2_c00001{transform:matrix(0.183098,-0.004761,0.006498,0.249916,0,0);-ms-transform:matrix(0.183098,-0.004761,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183098,-0.004761,0.006498,0.249916,0,0);}
.mf98_c00001{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m112b_c00001{transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183110,0.000000,0.000000,0.250000,0,0);}
.m27fe_c00001{transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183120,0.000000,0.000000,0.250000,0,0);}
.m173f_c00001{transform:matrix(0.183133,-0.004761,0.006498,0.249916,0,0);-ms-transform:matrix(0.183133,-0.004761,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183133,-0.004761,0.006498,0.249916,0,0);}
.m631_c00001{transform:matrix(0.183140,-0.007883,0.010751,0.249769,0,0);-ms-transform:matrix(0.183140,-0.007883,0.010751,0.249769,0,0);-webkit-transform:matrix(0.183140,-0.007883,0.010751,0.249769,0,0);}
.mc08_c00001{transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183145,0.000000,0.000000,0.250000,0,0);}
.md77_c00001{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.mbfb_c00001{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.m1e2f_c00001{transform:matrix(0.183178,-0.004763,0.006498,0.249916,0,0);-ms-transform:matrix(0.183178,-0.004763,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183178,-0.004763,0.006498,0.249916,0,0);}
.m22d_c00001{transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183185,0.000000,0.000000,0.250000,0,0);}
.m9d0_c00001{transform:matrix(0.183185,0.003297,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183185,0.003297,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183185,0.003297,-0.004499,0.249960,0,0);}
.m274a_c00001{transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183190,0.000000,0.000000,0.250000,0,0);}
.maa8_c00001{transform:matrix(0.183191,-0.006601,0.009003,0.249838,0,0);-ms-transform:matrix(0.183191,-0.006601,0.009003,0.249838,0,0);-webkit-transform:matrix(0.183191,-0.006601,0.009003,0.249838,0,0);}
.m16c9_c00001{transform:matrix(0.183194,-0.006235,0.008504,0.249855,0,0);-ms-transform:matrix(0.183194,-0.006235,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183194,-0.006235,0.008504,0.249855,0,0);}
.md92_c00001{transform:matrix(0.183197,0.002198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183197,0.002198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183197,0.002198,-0.003000,0.249982,0,0);}
.m1041_c00001{transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183210,0.000000,0.000000,0.250000,0,0);}
.m2510_c00001{transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183220,0.000000,0.000000,0.250000,0,0);}
.m161_c00001{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m2976_c00001{transform:matrix(0.183238,-0.003665,0.004999,0.249950,0,0);-ms-transform:matrix(0.183238,-0.003665,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183238,-0.003665,0.004999,0.249950,0,0);}
.mc72_c00001{transform:matrix(0.183253,-0.005314,0.007247,0.249895,0,0);-ms-transform:matrix(0.183253,-0.005314,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183253,-0.005314,0.007247,0.249895,0,0);}
.m11c9_c00001{transform:matrix(0.183256,-0.004032,0.005499,0.249940,0,0);-ms-transform:matrix(0.183256,-0.004032,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183256,-0.004032,0.005499,0.249940,0,0);}
.m6e1_c00001{transform:matrix(0.183258,0.004581,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183258,0.004581,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183258,0.004581,-0.006248,0.249922,0,0);}
.m1fe0_c00001{transform:matrix(0.183258,-0.004581,0.006248,0.249922,0,0);-ms-transform:matrix(0.183258,-0.004581,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183258,-0.004581,0.006248,0.249922,0,0);}
.m1ceb_c00001{transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183260,0.000000,0.000000,0.250000,0,0);}
.m832_c00001{transform:matrix(0.183263,-0.005131,0.006997,0.249902,0,0);-ms-transform:matrix(0.183263,-0.005131,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183263,-0.005131,0.006997,0.249902,0,0);}
.m1384_c00001{transform:matrix(0.183268,-0.004765,0.006498,0.249916,0,0);-ms-transform:matrix(0.183268,-0.004765,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183268,-0.004765,0.006498,0.249916,0,0);}
.m34e_c00001{transform:matrix(0.183275,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183275,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183275,-0.002383,0.003250,0.249979,0,0);}
.mb6f_c00001{transform:matrix(0.183283,-0.005315,0.007247,0.249895,0,0);-ms-transform:matrix(0.183283,-0.005315,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183283,-0.005315,0.007247,0.249895,0,0);}
.m9e5_c00001{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m2427_c00001{transform:matrix(0.183286,-0.004032,0.005499,0.249940,0,0);-ms-transform:matrix(0.183286,-0.004032,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183286,-0.004032,0.005499,0.249940,0,0);}
.m1b9e_c00001{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.m330_c00001{transform:matrix(0.183295,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183295,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183295,-0.002383,0.003250,0.249979,0,0);}
.m21ef_c00001{transform:matrix(0.183302,-0.003483,0.004749,0.249955,0,0);-ms-transform:matrix(0.183302,-0.003483,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183302,-0.003483,0.004749,0.249955,0,0);}
.m20ae_c00001{transform:matrix(0.183313,0.004583,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183313,0.004583,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183313,0.004583,-0.006248,0.249922,0,0);}
.m10f7_c00001{transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183320,0.000000,0.000000,0.250000,0,0);}
.m1bcc_c00001{transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183330,0.000000,0.000000,0.250000,0,0);}
.m1837_c00001{transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183335,0.000000,0.000000,0.250000,0,0);}
.mb64_c00001{transform:matrix(0.183340,-0.007157,0.009752,0.249810,0,0);-ms-transform:matrix(0.183340,-0.007157,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183340,-0.007157,0.009752,0.249810,0,0);}
.m351_c00001{transform:matrix(0.183345,-0.002383,0.003250,0.249979,0,0);-ms-transform:matrix(0.183345,-0.002383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183345,-0.002383,0.003250,0.249979,0,0);}
.m46b_c00001{transform:matrix(0.183349,-0.006240,0.008504,0.249855,0,0);-ms-transform:matrix(0.183349,-0.006240,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183349,-0.006240,0.008504,0.249855,0,0);}
.m797_c00001{transform:matrix(0.183352,0.004217,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183352,0.004217,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183352,0.004217,-0.005748,0.249934,0,0);}
.m2399_c00001{transform:matrix(0.183358,-0.004767,0.006498,0.249916,0,0);-ms-transform:matrix(0.183358,-0.004767,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183358,-0.004767,0.006498,0.249916,0,0);}
.m2866_c00001{transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183365,0.000000,0.000000,0.250000,0,0);}
.mafa_c00001{transform:matrix(0.183365,-0.007158,0.009752,0.249810,0,0);-ms-transform:matrix(0.183365,-0.007158,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183365,-0.007158,0.009752,0.249810,0,0);}
.m2541_c00001{transform:matrix(0.183369,-0.002751,0.003750,0.249972,0,0);-ms-transform:matrix(0.183369,-0.002751,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183369,-0.002751,0.003750,0.249972,0,0);}
.m2a5_c00001{transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);}
.m1da3_c00001{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.me14_c00001{transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183405,0.000000,0.000000,0.250000,0,0);}
.m2335_c00001{transform:matrix(0.183405,0.003301,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183405,0.003301,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183405,0.003301,-0.004499,0.249960,0,0);}
.m192d_c00001{transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183410,0.000000,0.000000,0.250000,0,0);}
.m201e_c00001{transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);-ms-transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183422,-0.005686,0.007746,0.249880,0,0);}
.mca2_c00001{transform:matrix(0.183423,-0.005319,0.007247,0.249895,0,0);-ms-transform:matrix(0.183423,-0.005319,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183423,-0.005319,0.007247,0.249895,0,0);}
.mec8_c00001{transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183427,0.002568,-0.003500,0.249976,0,0);}
.m3d3_c00001{transform:matrix(0.183438,-0.005136,0.006997,0.249902,0,0);-ms-transform:matrix(0.183438,-0.005136,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183438,-0.005136,0.006997,0.249902,0,0);}
.m273b_c00001{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m1d5b_c00001{transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183455,0.000000,0.000000,0.250000,0,0);}
.mb97_c00001{transform:matrix(0.183457,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183457,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183457,0.002201,-0.003000,0.249982,0,0);}
.me72_c00001{transform:matrix(0.183477,0.002569,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183477,0.002569,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183477,0.002569,-0.003500,0.249976,0,0);}
.m341_c00001{transform:matrix(0.183489,-0.002385,0.003250,0.249979,0,0);-ms-transform:matrix(0.183489,-0.002385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183489,-0.002385,0.003250,0.249979,0,0);}
.m1f07_c00001{transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183490,0.000000,0.000000,0.250000,0,0);}
.m7f6_c00001{transform:matrix(0.183493,-0.005138,0.006997,0.249902,0,0);-ms-transform:matrix(0.183493,-0.005138,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183493,-0.005138,0.006997,0.249902,0,0);}
.m125c_c00001{transform:matrix(0.183513,-0.004955,0.006748,0.249909,0,0);-ms-transform:matrix(0.183513,-0.004955,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183513,-0.004955,0.006748,0.249909,0,0);}
.m11b9_c00001{transform:matrix(0.183521,-0.004037,0.005499,0.249940,0,0);-ms-transform:matrix(0.183521,-0.004037,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183521,-0.004037,0.005499,0.249940,0,0);}
.md20_c00001{transform:matrix(0.183533,-0.005322,0.007247,0.249895,0,0);-ms-transform:matrix(0.183533,-0.005322,0.007247,0.249895,0,0);-webkit-transform:matrix(0.183533,-0.005322,0.007247,0.249895,0,0);}
.mda3_c00001{transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183540,0.000000,0.000000,0.250000,0,0);}
.m83a_c00001{transform:matrix(0.183553,-0.005139,0.006997,0.249902,0,0);-ms-transform:matrix(0.183553,-0.005139,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183553,-0.005139,0.006997,0.249902,0,0);}
.m115c_c00001{transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183555,0.000000,0.000000,0.250000,0,0);}
.m25d_c00001{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.m1f1c_c00001{transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183565,0.000000,0.000000,0.250000,0,0);}
.m4e8_c00001{transform:matrix(0.183579,0.002019,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183579,0.002019,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183579,0.002019,-0.002750,0.249985,0,0);}
.m1afc_c00001{transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183580,0.000000,0.000000,0.250000,0,0);}
.m2216_c00001{transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);-ms-transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);}
.m994_c00001{transform:matrix(0.183612,-0.006984,0.009503,0.249819,0,0);-ms-transform:matrix(0.183612,-0.006984,0.009503,0.249819,0,0);-webkit-transform:matrix(0.183612,-0.006984,0.009503,0.249819,0,0);}
.m1d30_c00001{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183630,0.000000,0.000000,0.250000,0,0);}
.m173d_c00001{transform:matrix(0.183638,-0.004775,0.006498,0.249916,0,0);-ms-transform:matrix(0.183638,-0.004775,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183638,-0.004775,0.006498,0.249916,0,0);}
.m35c_c00001{transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);-ms-transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);}
.m18f1_c00001{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m256c_c00001{transform:matrix(0.183654,-0.002388,0.003250,0.249979,0,0);-ms-transform:matrix(0.183654,-0.002388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183654,-0.002388,0.003250,0.249979,0,0);}
.m213d_c00001{transform:matrix(0.183663,0.005143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183663,0.005143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183663,0.005143,-0.006997,0.249902,0,0);}
.m2472_c00001{transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183665,0.000000,0.000000,0.250000,0,0);}
.m153a_c00001{transform:matrix(0.183675,0.006067,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183675,0.006067,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183675,0.006067,-0.008254,0.249864,0,0);}
.m18cf_c00001{transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183680,0.000000,0.000000,0.250000,0,0);}
.me52_c00001{transform:matrix(0.183680,0.003306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183680,0.003306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183680,0.003306,-0.004499,0.249960,0,0);}
.m1155_c00001{transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183685,0.000000,0.000000,0.250000,0,0);}
.mda9_c00001{transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);}
.m1e4c_c00001{transform:matrix(0.183698,-0.004776,0.006498,0.249916,0,0);-ms-transform:matrix(0.183698,-0.004776,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183698,-0.004776,0.006498,0.249916,0,0);}
.m21db_c00001{transform:matrix(0.183702,-0.004409,0.005998,0.249928,0,0);-ms-transform:matrix(0.183702,-0.004409,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183702,-0.004409,0.005998,0.249928,0,0);}
.macd_c00001{transform:matrix(0.183705,-0.007172,0.009752,0.249810,0,0);-ms-transform:matrix(0.183705,-0.007172,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183705,-0.007172,0.009752,0.249810,0,0);}
.m4d6_c00001{transform:matrix(0.183714,0.002021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183714,0.002021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183714,0.002021,-0.002750,0.249985,0,0);}
.m275c_c00001{transform:matrix(0.183719,-0.002756,0.003750,0.249972,0,0);-ms-transform:matrix(0.183719,-0.002756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183719,-0.002756,0.003750,0.249972,0,0);}
.mb5f_c00001{transform:matrix(0.183730,-0.007173,0.009752,0.249810,0,0);-ms-transform:matrix(0.183730,-0.007173,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183730,-0.007173,0.009752,0.249810,0,0);}
.m73a_c00001{transform:matrix(0.183733,0.005145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183733,0.005145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183733,0.005145,-0.006997,0.249902,0,0);}
.m18e6_c00001{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.m9eb_c00001{transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183755,0.000000,0.000000,0.250000,0,0);}
.m1807_c00001{transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183760,0.000000,0.000000,0.250000,0,0);}
.m1086_c00001{transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183765,0.000000,0.000000,0.250000,0,0);}
.mf32_c00001{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m368_c00001{transform:matrix(0.183794,-0.002389,0.003250,0.249979,0,0);-ms-transform:matrix(0.183794,-0.002389,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183794,-0.002389,0.003250,0.249979,0,0);}
.mb1b_c00001{transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);-ms-transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183810,-0.007176,0.009752,0.249810,0,0);}
.m159_c00001{transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183810,0.000000,0.000000,0.250000,0,0);}
.m296b_c00001{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.m12b5_c00001{transform:matrix(0.183828,0.004596,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183828,0.004596,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183828,0.004596,-0.006248,0.249922,0,0);}
.m19f3_c00001{transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183835,0.000000,0.000000,0.250000,0,0);}
.m16d8_c00001{transform:matrix(0.183844,-0.006257,0.008504,0.249855,0,0);-ms-transform:matrix(0.183844,-0.006257,0.008504,0.249855,0,0);-webkit-transform:matrix(0.183844,-0.006257,0.008504,0.249855,0,0);}
.mda5_c00001{transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183845,0.000000,0.000000,0.250000,0,0);}
.m2368_c00001{transform:matrix(0.183855,0.003309,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183855,0.003309,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183855,0.003309,-0.004499,0.249960,0,0);}
.m1854_c00001{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m2078_c00001{transform:matrix(0.183862,-0.005700,0.007746,0.249880,0,0);-ms-transform:matrix(0.183862,-0.005700,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183862,-0.005700,0.007746,0.249880,0,0);}
.me9e_c00001{transform:matrix(0.183862,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183862,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183862,0.002574,-0.003500,0.249976,0,0);}
.m1296_c00001{transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183870,0.000000,0.000000,0.250000,0,0);}
.m10a3_c00001{transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183880,0.000000,0.000000,0.250000,0,0);}
.m9f0_c00001{transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);}
.m280a_c00001{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.mb38_c00001{transform:matrix(0.183910,-0.007180,0.009752,0.249810,0,0);-ms-transform:matrix(0.183910,-0.007180,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183910,-0.007180,0.009752,0.249810,0,0);}
.mf9c_c00001{transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183910,0.000000,0.000000,0.250000,0,0);}
.m19e6_c00001{transform:matrix(0.183911,-0.002943,0.003999,0.249968,0,0);-ms-transform:matrix(0.183911,-0.002943,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183911,-0.002943,0.003999,0.249968,0,0);}
.m1747_c00001{transform:matrix(0.183913,-0.004782,0.006498,0.249916,0,0);-ms-transform:matrix(0.183913,-0.004782,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183913,-0.004782,0.006498,0.249916,0,0);}
.m1268_c00001{transform:matrix(0.183913,-0.004966,0.006748,0.249909,0,0);-ms-transform:matrix(0.183913,-0.004966,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183913,-0.004966,0.006748,0.249909,0,0);}
.m9b_c00001{transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);}
.m243f_c00001{transform:matrix(0.183920,-0.004046,0.005499,0.249940,0,0);-ms-transform:matrix(0.183920,-0.004046,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183920,-0.004046,0.005499,0.249940,0,0);}
.m127d_c00001{transform:matrix(0.183928,-0.004966,0.006748,0.249909,0,0);-ms-transform:matrix(0.183928,-0.004966,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183928,-0.004966,0.006748,0.249909,0,0);}
.m43f_c00001{transform:matrix(0.183932,-0.003495,0.004749,0.249955,0,0);-ms-transform:matrix(0.183932,-0.003495,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183932,-0.003495,0.004749,0.249955,0,0);}
.m6c7_c00001{transform:matrix(0.183938,0.004598,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183938,0.004598,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183938,0.004598,-0.006248,0.249922,0,0);}
.m124a_c00001{transform:matrix(0.183938,-0.004966,0.006748,0.249909,0,0);-ms-transform:matrix(0.183938,-0.004966,0.006748,0.249909,0,0);-webkit-transform:matrix(0.183938,-0.004966,0.006748,0.249909,0,0);}
.m20bc_c00001{transform:matrix(0.183943,0.004599,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183943,0.004599,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183943,0.004599,-0.006248,0.249922,0,0);}
.mb1d_c00001{transform:matrix(0.183955,-0.007181,0.009752,0.249810,0,0);-ms-transform:matrix(0.183955,-0.007181,0.009752,0.249810,0,0);-webkit-transform:matrix(0.183955,-0.007181,0.009752,0.249810,0,0);}
.m706_c00001{transform:matrix(0.183962,0.004415,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183962,0.004415,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183962,0.004415,-0.005998,0.249928,0,0);}
.m14a5_c00001{transform:matrix(0.183980,0.006077,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183980,0.006077,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183980,0.006077,-0.008254,0.249864,0,0);}
.m2785_c00001{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.m2593_c00001{transform:matrix(0.183994,-0.002024,0.002750,0.249985,0,0);-ms-transform:matrix(0.183994,-0.002024,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183994,-0.002024,0.002750,0.249985,0,0);}
.m50_c00001{transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00001{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22a0_c00001{transform:matrix(0.184001,0.002944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184001,0.002944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184001,0.002944,-0.003999,0.249968,0,0);}
.m156c_c00001{transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184005,0.000000,0.000000,0.250000,0,0);}
.mae7_c00001{transform:matrix(0.184010,-0.007184,0.009752,0.249810,0,0);-ms-transform:matrix(0.184010,-0.007184,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184010,-0.007184,0.009752,0.249810,0,0);}
.m222a_c00001{transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184035,-0.004049,0.005499,0.249940,0,0);}
.mb31_c00001{transform:matrix(0.184040,-0.007185,0.009752,0.249810,0,0);-ms-transform:matrix(0.184040,-0.007185,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184040,-0.007185,0.009752,0.249810,0,0);}
.m1699_c00001{transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);}
.m170d_c00001{transform:matrix(0.184043,-0.004785,0.006498,0.249916,0,0);-ms-transform:matrix(0.184043,-0.004785,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184043,-0.004785,0.006498,0.249916,0,0);}
.ma4c_c00001{transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);}
.m73e_c00001{transform:matrix(0.184048,0.005153,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184048,0.005153,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184048,0.005153,-0.006997,0.249902,0,0);}
.m13a6_c00001{transform:matrix(0.184058,-0.004786,0.006498,0.249916,0,0);-ms-transform:matrix(0.184058,-0.004786,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184058,-0.004786,0.006498,0.249916,0,0);}
.m41e_c00001{transform:matrix(0.184059,-0.003865,0.005249,0.249945,0,0);-ms-transform:matrix(0.184059,-0.003865,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184059,-0.003865,0.005249,0.249945,0,0);}
.m2228_c00001{transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184060,-0.004049,0.005499,0.249940,0,0);}
.m1f1d_c00001{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m1afd_c00001{transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184080,0.000000,0.000000,0.250000,0,0);}
.m11be_c00001{transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-ms-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184090,-0.004050,0.005499,0.249940,0,0);}
.mf67_c00001{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.ma4a_c00001{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.m248a_c00001{transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184120,0.000000,0.000000,0.250000,0,0);}
.m24a8_c00001{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m22c0_c00001{transform:matrix(0.184136,0.002946,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184136,0.002946,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184136,0.002946,-0.003999,0.249968,0,0);}
.m10e5_c00001{transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184140,0.000000,0.000000,0.250000,0,0);}
.m114e_c00001{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m2293_c00001{transform:matrix(0.184162,-0.003499,0.004749,0.249955,0,0);-ms-transform:matrix(0.184162,-0.003499,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184162,-0.003499,0.004749,0.249955,0,0);}
.meb6_c00001{transform:matrix(0.184182,0.002579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184182,0.002579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184182,0.002579,-0.003500,0.249976,0,0);}
.m285a_c00001{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.mcb3_c00001{transform:matrix(0.184198,-0.005342,0.007247,0.249895,0,0);-ms-transform:matrix(0.184198,-0.005342,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184198,-0.005342,0.007247,0.249895,0,0);}
.mf68_c00001{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m1bb5_c00001{transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184205,0.000000,0.000000,0.250000,0,0);}
.m357_c00001{transform:matrix(0.184214,-0.002395,0.003250,0.249979,0,0);-ms-transform:matrix(0.184214,-0.002395,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184214,-0.002395,0.003250,0.249979,0,0);}
.mde7_c00001{transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184235,0.000000,0.000000,0.250000,0,0);}
.m19a0_c00001{transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);}
.m191f_c00001{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.m1312_c00001{transform:matrix(0.184268,0.004975,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184268,0.004975,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184268,0.004975,-0.006748,0.249909,0,0);}
.m1024_c00001{transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);}
.m1c01_c00001{transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184280,0.000000,0.000000,0.250000,0,0);}
.m1fe9_c00001{transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);-ms-transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184287,-0.004607,0.006248,0.249922,0,0);}
.mece_c00001{transform:matrix(0.184292,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184292,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184292,0.002580,-0.003500,0.249976,0,0);}
.m136f_c00001{transform:matrix(0.184298,0.005345,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184298,0.005345,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184298,0.005345,-0.007247,0.249895,0,0);}
.m1073_c00001{transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184310,0.000000,0.000000,0.250000,0,0);}
.m21f8_c00001{transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);-ms-transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184312,-0.003502,0.004749,0.249955,0,0);}
.mdde_c00001{transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);}
.mcbf_c00001{transform:matrix(0.184328,-0.005345,0.007247,0.249895,0,0);-ms-transform:matrix(0.184328,-0.005345,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184328,-0.005345,0.007247,0.249895,0,0);}
.m13c5_c00001{transform:matrix(0.184338,-0.004793,0.006498,0.249916,0,0);-ms-transform:matrix(0.184338,-0.004793,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184338,-0.004793,0.006498,0.249916,0,0);}
.m638_c00001{transform:matrix(0.184339,-0.007935,0.010751,0.249769,0,0);-ms-transform:matrix(0.184339,-0.007935,0.010751,0.249769,0,0);-webkit-transform:matrix(0.184339,-0.007935,0.010751,0.249769,0,0);}
.m1a7c_c00001{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m184_c00001{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.m119b_c00001{transform:matrix(0.184360,-0.004056,0.005499,0.249940,0,0);-ms-transform:matrix(0.184360,-0.004056,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184360,-0.004056,0.005499,0.249940,0,0);}
.m21e5_c00001{transform:matrix(0.184363,-0.003687,0.004999,0.249950,0,0);-ms-transform:matrix(0.184363,-0.003687,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184363,-0.003687,0.004999,0.249950,0,0);}
.m28e8_c00001{transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);}
.m20ea_c00001{transform:matrix(0.184367,0.004609,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184367,0.004609,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184367,0.004609,-0.006248,0.249922,0,0);}
.m15a9_c00001{transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184380,0.000000,0.000000,0.250000,0,0);}
.m720_c00001{transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184392,0.004610,-0.006248,0.249922,0,0);}
.m2287_c00001{transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);-ms-transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184400,-0.004057,0.005499,0.249940,0,0);}
.mff8_c00001{transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184415,0.000000,0.000000,0.250000,0,0);}
.m2323_c00001{transform:matrix(0.184445,0.003320,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184445,0.003320,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184445,0.003320,-0.004499,0.249960,0,0);}
.ma8e_c00001{transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.184455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184455,0.000000,0.000000,0.250000,0,0);}
.m2125_c00001{transform:matrix(0.184473,0.005165,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184473,0.005165,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184473,0.005165,-0.006997,0.249902,0,0);}
.m1088_c00001{transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184510,0.000000,0.000000,0.250000,0,0);}
.m7a2_c00001{transform:matrix(0.184513,-0.005166,0.006997,0.249902,0,0);-ms-transform:matrix(0.184513,-0.005166,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184513,-0.005166,0.006997,0.249902,0,0);}
.m16f_c00001{transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184520,0.000000,0.000000,0.250000,0,0);}
.m1920_c00001{transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184530,0.000000,0.000000,0.250000,0,0);}
.m14f_c00001{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.m5c2_c00001{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m843_c00001{transform:matrix(0.184548,-0.005167,0.006997,0.249902,0,0);-ms-transform:matrix(0.184548,-0.005167,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184548,-0.005167,0.006997,0.249902,0,0);}
.m16bd_c00001{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m91c_c00001{transform:matrix(0.184552,-0.007020,0.009503,0.249819,0,0);-ms-transform:matrix(0.184552,-0.007020,0.009503,0.249819,0,0);-webkit-transform:matrix(0.184552,-0.007020,0.009503,0.249819,0,0);}
.m1e40_c00001{transform:matrix(0.184553,-0.004798,0.006498,0.249916,0,0);-ms-transform:matrix(0.184553,-0.004798,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184553,-0.004798,0.006498,0.249916,0,0);}
.m758_c00001{transform:matrix(0.184563,0.005168,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184563,0.005168,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184563,0.005168,-0.006997,0.249902,0,0);}
.md7b_c00001{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.m2868_c00001{transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184580,0.000000,0.000000,0.250000,0,0);}
.m6ab_c00001{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.mf46_c00001{transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184595,0.000000,0.000000,0.250000,0,0);}
.m136a_c00001{transform:matrix(0.184627,0.005354,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184627,0.005354,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184627,0.005354,-0.007247,0.249895,0,0);}
.mca_c00001{transform:matrix(0.184630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184630,0.000000,0.000000,0.250000,0,0);}
.m212_c00001{transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184635,0.000000,0.000000,0.250000,0,0);}
.m215d_c00001{transform:matrix(0.184638,0.005170,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184638,0.005170,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184638,0.005170,-0.006997,0.249902,0,0);}
.m381_c00001{transform:matrix(0.184639,-0.002400,0.003250,0.249979,0,0);-ms-transform:matrix(0.184639,-0.002400,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184639,-0.002400,0.003250,0.249979,0,0);}
.m190a_c00001{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.m1de5_c00001{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m59e_c00001{transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184659,0.002031,-0.002750,0.249985,0,0);}
.m129c_c00001{transform:matrix(0.184660,0.004063,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184660,0.004063,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184660,0.004063,-0.005499,0.249940,0,0);}
.m8fe_c00001{transform:matrix(0.184666,-0.007024,0.009503,0.249819,0,0);-ms-transform:matrix(0.184666,-0.007024,0.009503,0.249819,0,0);-webkit-transform:matrix(0.184666,-0.007024,0.009503,0.249819,0,0);}
.m1eeb_c00001{transform:matrix(0.184673,-0.004801,0.006498,0.249916,0,0);-ms-transform:matrix(0.184673,-0.004801,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184673,-0.004801,0.006498,0.249916,0,0);}
.m22c4_c00001{transform:matrix(0.184681,0.002955,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184681,0.002955,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184681,0.002955,-0.003999,0.249968,0,0);}
.m9c_c00001{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m99_c00001{transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184690,0.000000,0.000000,0.250000,0,0);}
.m25b_c00001{transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184695,0.000000,0.000000,0.250000,0,0);}
.m773_c00001{transform:matrix(0.184696,0.004248,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184696,0.004248,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184696,0.004248,-0.005748,0.249934,0,0);}
.m2603_c00001{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m266d_c00001{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m5c4_c00001{transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184720,0.000000,0.000000,0.250000,0,0);}
.m1dfa_c00001{transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);}
.mb68_c00001{transform:matrix(0.184745,-0.006657,0.009003,0.249838,0,0);-ms-transform:matrix(0.184745,-0.006657,0.009003,0.249838,0,0);-webkit-transform:matrix(0.184745,-0.006657,0.009003,0.249838,0,0);}
.ma01_c00001{transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);}
.m1413_c00001{transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);-ms-transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184758,-0.004804,0.006498,0.249916,0,0);}
.mb11_c00001{transform:matrix(0.184764,-0.007213,0.009752,0.249810,0,0);-ms-transform:matrix(0.184764,-0.007213,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184764,-0.007213,0.009752,0.249810,0,0);}
.m1e23_c00001{transform:matrix(0.184768,-0.004804,0.006498,0.249916,0,0);-ms-transform:matrix(0.184768,-0.004804,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184768,-0.004804,0.006498,0.249916,0,0);}
.m640_c00001{transform:matrix(0.184768,-0.006288,0.008504,0.249855,0,0);-ms-transform:matrix(0.184768,-0.006288,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184768,-0.006288,0.008504,0.249855,0,0);}
.m1143_c00001{transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184770,0.000000,0.000000,0.250000,0,0);}
.m15fe_c00001{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m2197_c00001{transform:matrix(0.184779,0.003880,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184779,0.003880,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184779,0.003880,-0.005249,0.249945,0,0);}
.m17ad_c00001{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.m1c03_c00001{transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184795,0.000000,0.000000,0.250000,0,0);}
.m12db_c00001{transform:matrix(0.184798,0.004990,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184798,0.004990,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184798,0.004990,-0.006748,0.249909,0,0);}
.m1282_c00001{transform:matrix(0.184798,-0.004990,0.006748,0.249909,0,0);-ms-transform:matrix(0.184798,-0.004990,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184798,-0.004990,0.006748,0.249909,0,0);}
.m1c26_c00001{transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184805,0.000000,0.000000,0.250000,0,0);}
.m1411_c00001{transform:matrix(0.184808,-0.004805,0.006498,0.249916,0,0);-ms-transform:matrix(0.184808,-0.004805,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184808,-0.004805,0.006498,0.249916,0,0);}
.m1a72_c00001{transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184810,0.000000,0.000000,0.250000,0,0);}
.me07_c00001{transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);}
.m537_c00001{transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);}
.m1263_c00001{transform:matrix(0.184828,-0.004990,0.006748,0.249909,0,0);-ms-transform:matrix(0.184828,-0.004990,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184828,-0.004990,0.006748,0.249909,0,0);}
.m1d49_c00001{transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184830,0.000000,0.000000,0.250000,0,0);}
.me65_c00001{transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184830,0.003327,-0.004499,0.249960,0,0);}
.m2235_c00001{transform:matrix(0.184839,-0.003882,0.005249,0.249945,0,0);-ms-transform:matrix(0.184839,-0.003882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184839,-0.003882,0.005249,0.249945,0,0);}
.ma3b_c00001{transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);}
.m1ec5_c00001{transform:matrix(0.184858,-0.004806,0.006498,0.249916,0,0);-ms-transform:matrix(0.184858,-0.004806,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184858,-0.004806,0.006498,0.249916,0,0);}
.mf97_c00001{transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184865,0.000000,0.000000,0.250000,0,0);}
.m480_c00001{transform:matrix(0.184872,-0.005546,0.007497,0.249888,0,0);-ms-transform:matrix(0.184872,-0.005546,0.007497,0.249888,0,0);-webkit-transform:matrix(0.184872,-0.005546,0.007497,0.249888,0,0);}
.ma12_c00001{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m25b6_c00001{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m7d2_c00001{transform:matrix(0.184888,-0.005177,0.006997,0.249902,0,0);-ms-transform:matrix(0.184888,-0.005177,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184888,-0.005177,0.006997,0.249902,0,0);}
.m1294_c00001{transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184895,0.000000,0.000000,0.250000,0,0);}
.m2130_c00001{transform:matrix(0.184908,0.005177,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184908,0.005177,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184908,0.005177,-0.006997,0.249902,0,0);}
.m941_c00001{transform:matrix(0.184921,-0.007034,0.009503,0.249819,0,0);-ms-transform:matrix(0.184921,-0.007034,0.009503,0.249819,0,0);-webkit-transform:matrix(0.184921,-0.007034,0.009503,0.249819,0,0);}
.m16cc_c00001{transform:matrix(0.184923,-0.006294,0.008504,0.249855,0,0);-ms-transform:matrix(0.184923,-0.006294,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184923,-0.006294,0.008504,0.249855,0,0);}
.mbd2_c00001{transform:matrix(0.184924,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184924,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184924,0.002034,-0.002750,0.249985,0,0);}
.ma58_c00001{transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184935,0.000000,0.000000,0.250000,0,0);}
.m2072_c00001{transform:matrix(0.184936,-0.005733,0.007746,0.249880,0,0);-ms-transform:matrix(0.184936,-0.005733,0.007746,0.249880,0,0);-webkit-transform:matrix(0.184936,-0.005733,0.007746,0.249880,0,0);}
.m12a2_c00001{transform:matrix(0.184940,0.004069,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184940,0.004069,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184940,0.004069,-0.005499,0.249940,0,0);}
.mcdb_c00001{transform:matrix(0.184942,-0.005363,0.007247,0.249895,0,0);-ms-transform:matrix(0.184942,-0.005363,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184942,-0.005363,0.007247,0.249895,0,0);}
.mb22_c00001{transform:matrix(0.184944,-0.007220,0.009752,0.249810,0,0);-ms-transform:matrix(0.184944,-0.007220,0.009752,0.249810,0,0);-webkit-transform:matrix(0.184944,-0.007220,0.009752,0.249810,0,0);}
.m1126_c00001{transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184945,0.000000,0.000000,0.250000,0,0);}
.me48_c00001{transform:matrix(0.184945,0.003329,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184945,0.003329,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184945,0.003329,-0.004499,0.249960,0,0);}
.m1de7_c00001{transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184970,0.000000,0.000000,0.250000,0,0);}
.m73b_c00001{transform:matrix(0.184983,0.005180,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184983,0.005180,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184983,0.005180,-0.006997,0.249902,0,0);}
.m18e9_c00001{transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);}
.me64_c00001{transform:matrix(0.185000,0.003330,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185000,0.003330,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185000,0.003330,-0.004499,0.249960,0,0);}
.m11f8_c00001{transform:matrix(0.185010,-0.004070,0.005499,0.249940,0,0);-ms-transform:matrix(0.185010,-0.004070,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185010,-0.004070,0.005499,0.249940,0,0);}
.m185e_c00001{transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185020,0.000000,0.000000,0.250000,0,0);}
.m1309_c00001{transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185028,0.004996,-0.006748,0.249909,0,0);}
.m12f7_c00001{transform:matrix(0.185038,0.004996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185038,0.004996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185038,0.004996,-0.006748,0.249909,0,0);}
.m90a_c00001{transform:matrix(0.185041,-0.007039,0.009503,0.249819,0,0);-ms-transform:matrix(0.185041,-0.007039,0.009503,0.249819,0,0);-webkit-transform:matrix(0.185041,-0.007039,0.009503,0.249819,0,0);}
.m610_c00001{transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);-ms-transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185044,-0.003886,0.005249,0.249945,0,0);}
.m1e0f_c00001{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.m2755_c00001{transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185054,-0.002776,0.003750,0.249972,0,0);}
.m176_c00001{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.meda_c00001{transform:matrix(0.185057,0.002591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185057,0.002591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185057,0.002591,-0.003500,0.249976,0,0);}
.m1dd1_c00001{transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185060,0.000000,0.000000,0.250000,0,0);}
.m17c7_c00001{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m25d8_c00001{transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185080,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185085,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.m1ed7_c00001{transform:matrix(0.185097,-0.004813,0.006498,0.249916,0,0);-ms-transform:matrix(0.185097,-0.004813,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185097,-0.004813,0.006498,0.249916,0,0);}
.me35_c00001{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m9dd_c00001{transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185105,0.000000,0.000000,0.250000,0,0);}
.m9e1_c00001{transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185115,0.000000,0.000000,0.250000,0,0);}
.m12da_c00001{transform:matrix(0.185118,0.004998,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185118,0.004998,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185118,0.004998,-0.006748,0.249909,0,0);}
.m22e1_c00001{transform:matrix(0.185136,0.002962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185136,0.002962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185136,0.002962,-0.003999,0.249968,0,0);}
.m2559_c00001{transform:matrix(0.185147,-0.002592,0.003500,0.249976,0,0);-ms-transform:matrix(0.185147,-0.002592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185147,-0.002592,0.003500,0.249976,0,0);}
.m268_c00001{transform:matrix(0.185155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185155,0.000000,0.000000,0.250000,0,0);}
.m228_c00001{transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);}
.m11d7_c00001{transform:matrix(0.185175,-0.004074,0.005499,0.249940,0,0);-ms-transform:matrix(0.185175,-0.004074,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185175,-0.004074,0.005499,0.249940,0,0);}
.m25d2_c00001{transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185190,0.000000,0.000000,0.250000,0,0);}
.m12a_c00001{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m7de_c00001{transform:matrix(0.185207,-0.005186,0.006997,0.249902,0,0);-ms-transform:matrix(0.185207,-0.005186,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185207,-0.005186,0.006997,0.249902,0,0);}
.mdc0_c00001{transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185215,0.000000,0.000000,0.250000,0,0);}
.m10bf_c00001{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.m1a33_c00001{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.m24ac_c00001{transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185240,0.000000,0.000000,0.250000,0,0);}
.m103a_c00001{transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185255,0.000000,0.000000,0.250000,0,0);}
.m830_c00001{transform:matrix(0.185277,-0.005188,0.006997,0.249902,0,0);-ms-transform:matrix(0.185277,-0.005188,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185277,-0.005188,0.006997,0.249902,0,0);}
.m2397_c00001{transform:matrix(0.185277,-0.004817,0.006498,0.249916,0,0);-ms-transform:matrix(0.185277,-0.004817,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185277,-0.004817,0.006498,0.249916,0,0);}
.m1e2_c00001{transform:matrix(0.185281,-0.004261,0.005748,0.249934,0,0);-ms-transform:matrix(0.185281,-0.004261,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185281,-0.004261,0.005748,0.249934,0,0);}
.m24b6_c00001{transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);}
.maa6_c00001{transform:matrix(0.185305,-0.006678,0.009003,0.249838,0,0);-ms-transform:matrix(0.185305,-0.006678,0.009003,0.249838,0,0);-webkit-transform:matrix(0.185305,-0.006678,0.009003,0.249838,0,0);}
.m222b_c00001{transform:matrix(0.185310,-0.004077,0.005499,0.249940,0,0);-ms-transform:matrix(0.185310,-0.004077,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185310,-0.004077,0.005499,0.249940,0,0);}
.m2104_c00001{transform:matrix(0.185312,0.005189,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185312,0.005189,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185312,0.005189,-0.006997,0.249902,0,0);}
.m2fb_c00001{transform:matrix(0.185324,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185324,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185324,-0.002409,0.003250,0.249979,0,0);}
.m232b_c00001{transform:matrix(0.185325,0.003336,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185325,0.003336,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185325,0.003336,-0.004499,0.249960,0,0);}
.m1ea_c00001{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m1ec2_c00001{transform:matrix(0.185332,-0.004819,0.006498,0.249916,0,0);-ms-transform:matrix(0.185332,-0.004819,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185332,-0.004819,0.006498,0.249916,0,0);}
.m1d03_c00001{transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185340,0.000000,0.000000,0.250000,0,0);}
.m1af4_c00001{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m9f1_c00001{transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185355,0.000000,0.000000,0.250000,0,0);}
.m1326_c00001{transform:matrix(0.185357,0.005375,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185357,0.005375,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185357,0.005375,-0.007247,0.249895,0,0);}
.ma4e_c00001{transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185380,0.000000,0.000000,0.250000,0,0);}
.m6cd_c00001{transform:matrix(0.185382,0.004635,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185382,0.004635,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185382,0.004635,-0.006248,0.249922,0,0);}
.m18b5_c00001{transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185385,0.000000,0.000000,0.250000,0,0);}
.m29c7_c00001{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.m22bf_c00001{transform:matrix(0.185411,0.002967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185411,0.002967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185411,0.002967,-0.003999,0.249968,0,0);}
.m1068_c00001{transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);}
.m1cbb_c00001{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m295a_c00001{transform:matrix(0.185447,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185447,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185447,-0.002596,0.003500,0.249976,0,0);}
.m280d_c00001{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.mdf7_c00001{transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185455,0.000000,0.000000,0.250000,0,0);}
.m38c_c00001{transform:matrix(0.185464,-0.002411,0.003250,0.249979,0,0);-ms-transform:matrix(0.185464,-0.002411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185464,-0.002411,0.003250,0.249979,0,0);}
.mbf1_c00001{transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185470,0.000000,0.000000,0.250000,0,0);}
.m209c_c00001{transform:matrix(0.185471,-0.005750,0.007746,0.249880,0,0);-ms-transform:matrix(0.185471,-0.005750,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185471,-0.005750,0.007746,0.249880,0,0);}
.m14e6_c00001{transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185479,0.006127,-0.008254,0.249864,0,0);}
.m171f_c00001{transform:matrix(0.185487,-0.004823,0.006498,0.249916,0,0);-ms-transform:matrix(0.185487,-0.004823,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185487,-0.004823,0.006498,0.249916,0,0);}
.m179b_c00001{transform:matrix(0.185495,-0.003339,0.004499,0.249960,0,0);-ms-transform:matrix(0.185495,-0.003339,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185495,-0.003339,0.004499,0.249960,0,0);}
.mfcf_c00001{transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185505,0.000000,0.000000,0.250000,0,0);}
.m83e_c00001{transform:matrix(0.185512,-0.005194,0.006997,0.249902,0,0);-ms-transform:matrix(0.185512,-0.005194,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185512,-0.005194,0.006997,0.249902,0,0);}
.m1746_c00001{transform:matrix(0.185512,-0.004823,0.006498,0.249916,0,0);-ms-transform:matrix(0.185512,-0.004823,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185512,-0.004823,0.006498,0.249916,0,0);}
.m264d_c00001{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m1e42_c00001{transform:matrix(0.185517,-0.004823,0.006498,0.249916,0,0);-ms-transform:matrix(0.185517,-0.004823,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185517,-0.004823,0.006498,0.249916,0,0);}
.m1300_c00001{transform:matrix(0.185517,0.005009,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185517,0.005009,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185517,0.005009,-0.006748,0.249909,0,0);}
.m1b1e_c00001{transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185520,0.000000,0.000000,0.250000,0,0);}
.m245a_c00001{transform:matrix(0.185540,-0.004082,0.005499,0.249940,0,0);-ms-transform:matrix(0.185540,-0.004082,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185540,-0.004082,0.005499,0.249940,0,0);}
.m12fa_c00001{transform:matrix(0.185542,0.005010,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185542,0.005010,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185542,0.005010,-0.006748,0.249909,0,0);}
.m2003_c00001{transform:matrix(0.185552,-0.004639,0.006248,0.249922,0,0);-ms-transform:matrix(0.185552,-0.004639,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185552,-0.004639,0.006248,0.249922,0,0);}
.m172_c00001{transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185555,0.000000,0.000000,0.250000,0,0);}
.m1039_c00001{transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185580,0.000000,0.000000,0.250000,0,0);}
.m114_c00001{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.m1ac9_c00001{transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185605,0.000000,0.000000,0.250000,0,0);}
.m2155_c00001{transform:matrix(0.185627,0.005198,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185627,0.005198,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185627,0.005198,-0.006997,0.249902,0,0);}
.m129_c00001{transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185655,0.000000,0.000000,0.250000,0,0);}
.mb15_c00001{transform:matrix(0.185674,-0.007249,0.009752,0.249810,0,0);-ms-transform:matrix(0.185674,-0.007249,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185674,-0.007249,0.009752,0.249810,0,0);}
.m1a5e_c00001{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m1215_c00001{transform:matrix(0.185687,-0.005014,0.006748,0.249909,0,0);-ms-transform:matrix(0.185687,-0.005014,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185687,-0.005014,0.006748,0.249909,0,0);}
.m6d8_c00001{transform:matrix(0.185692,0.004642,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185692,0.004642,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185692,0.004642,-0.006248,0.249922,0,0);}
.mb61_c00001{transform:matrix(0.185714,-0.007250,0.009752,0.249810,0,0);-ms-transform:matrix(0.185714,-0.007250,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185714,-0.007250,0.009752,0.249810,0,0);}
.m4ea_c00001{transform:matrix(0.185719,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185719,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185719,0.002043,-0.002750,0.249985,0,0);}
.m247b_c00001{transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);}
.m11e7_c00001{transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);-ms-transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);}
.m1063_c00001{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.mc34_c00001{transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185730,0.000000,0.000000,0.250000,0,0);}
.m75d_c00001{transform:matrix(0.185737,0.005201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185737,0.005201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185737,0.005201,-0.006997,0.249902,0,0);}
.m160c_c00001{transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185740,0.000000,0.000000,0.250000,0,0);}
.m463_c00001{transform:matrix(0.185752,-0.006322,0.008504,0.249855,0,0);-ms-transform:matrix(0.185752,-0.006322,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185752,-0.006322,0.008504,0.249855,0,0);}
.m1927_c00001{transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185760,0.000000,0.000000,0.250000,0,0);}
.m217_c00001{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m25a7_c00001{transform:matrix(0.185784,-0.002044,0.002750,0.249985,0,0);-ms-transform:matrix(0.185784,-0.002044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185784,-0.002044,0.002750,0.249985,0,0);}
.m15c7_c00001{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.m11b8_c00001{transform:matrix(0.185795,-0.004087,0.005499,0.249940,0,0);-ms-transform:matrix(0.185795,-0.004087,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185795,-0.004087,0.005499,0.249940,0,0);}
.m29c6_c00001{transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185810,0.000000,0.000000,0.250000,0,0);}
.m1629_c00001{transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185815,0.000000,0.000000,0.250000,0,0);}
.m11e1_c00001{transform:matrix(0.185815,-0.004088,0.005499,0.249940,0,0);-ms-transform:matrix(0.185815,-0.004088,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185815,-0.004088,0.005499,0.249940,0,0);}
.m1e34_c00001{transform:matrix(0.185817,-0.004831,0.006498,0.249916,0,0);-ms-transform:matrix(0.185817,-0.004831,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185817,-0.004831,0.006498,0.249916,0,0);}
.m914_c00001{transform:matrix(0.185831,-0.007069,0.009503,0.249819,0,0);-ms-transform:matrix(0.185831,-0.007069,0.009503,0.249819,0,0);-webkit-transform:matrix(0.185831,-0.007069,0.009503,0.249819,0,0);}
.mcf8_c00001{transform:matrix(0.185832,-0.005389,0.007247,0.249895,0,0);-ms-transform:matrix(0.185832,-0.005389,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185832,-0.005389,0.007247,0.249895,0,0);}
.mcb7_c00001{transform:matrix(0.185842,-0.005389,0.007247,0.249895,0,0);-ms-transform:matrix(0.185842,-0.005389,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185842,-0.005389,0.007247,0.249895,0,0);}
.m1f54_c00001{transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185845,0.000000,0.000000,0.250000,0,0);}
.m2256_c00001{transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185853,-0.003160,0.004249,0.249964,0,0);}
.m274_c00001{transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185855,0.000000,0.000000,0.250000,0,0);}
.m2805_c00001{transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185865,0.000000,0.000000,0.250000,0,0);}
.mca3_c00001{transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);-ms-transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185867,-0.005390,0.007247,0.249895,0,0);}
.m1257_c00001{transform:matrix(0.185867,-0.005018,0.006748,0.249909,0,0);-ms-transform:matrix(0.185867,-0.005018,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185867,-0.005018,0.006748,0.249909,0,0);}
.mc36_c00001{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.mc00_c00001{transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185880,0.000000,0.000000,0.250000,0,0);}
.m286_c00001{transform:matrix(0.185889,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185889,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185889,-0.002045,0.002750,0.249985,0,0);}
.m1825_c00001{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m16f7_c00001{transform:matrix(0.185892,-0.004833,0.006498,0.249916,0,0);-ms-transform:matrix(0.185892,-0.004833,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185892,-0.004833,0.006498,0.249916,0,0);}
.mdc7_c00001{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m5b7_c00001{transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185905,0.000000,0.000000,0.250000,0,0);}
.md03_c00001{transform:matrix(0.185912,-0.005391,0.007247,0.249895,0,0);-ms-transform:matrix(0.185912,-0.005391,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185912,-0.005391,0.007247,0.249895,0,0);}
.m1c4a_c00001{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.mb46_c00001{transform:matrix(0.185923,-0.007258,0.009752,0.249810,0,0);-ms-transform:matrix(0.185923,-0.007258,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185923,-0.007258,0.009752,0.249810,0,0);}
.m1c12_c00001{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.mb58_c00001{transform:matrix(0.185933,-0.007259,0.009752,0.249810,0,0);-ms-transform:matrix(0.185933,-0.007259,0.009752,0.249810,0,0);-webkit-transform:matrix(0.185933,-0.007259,0.009752,0.249810,0,0);}
.m4f5_c00001{transform:matrix(0.185934,0.002045,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185934,0.002045,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185934,0.002045,-0.002750,0.249985,0,0);}
.m2736_c00001{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.m1731_c00001{transform:matrix(0.185937,-0.004834,0.006498,0.249916,0,0);-ms-transform:matrix(0.185937,-0.004834,0.006498,0.249916,0,0);-webkit-transform:matrix(0.185937,-0.004834,0.006498,0.249916,0,0);}
.m2307_c00001{transform:matrix(0.185940,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185940,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185940,0.003347,-0.004499,0.249960,0,0);}
.m992_c00001{transform:matrix(0.185941,-0.007073,0.009503,0.249819,0,0);-ms-transform:matrix(0.185941,-0.007073,0.009503,0.249819,0,0);-webkit-transform:matrix(0.185941,-0.007073,0.009503,0.249819,0,0);}
.m1b0a_c00001{transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);}
.mefa_c00001{transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185954,0.002417,-0.003250,0.249979,0,0);}
.mf2b_c00001{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m1949_c00001{transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185970,0.000000,0.000000,0.250000,0,0);}
.m66a_c00001{transform:matrix(0.185993,-0.007633,0.010252,0.249790,0,0);-ms-transform:matrix(0.185993,-0.007633,0.010252,0.249790,0,0);-webkit-transform:matrix(0.185993,-0.007633,0.010252,0.249790,0,0);}
.m1f50_c00001{transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185995,0.000000,0.000000,0.250000,0,0);}
.m76d_c00001{transform:matrix(0.185996,0.004278,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185996,0.004278,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185996,0.004278,-0.005748,0.249934,0,0);}
.me1d_c00001{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf94_c00001{transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186005,0.000000,0.000000,0.250000,0,0);}
.m740_c00001{transform:matrix(0.186012,0.005208,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186012,0.005208,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186012,0.005208,-0.006997,0.249902,0,0);}
.m5c3_c00001{transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186015,0.000000,0.000000,0.250000,0,0);}
.m812_c00001{transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);-ms-transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186022,-0.005209,0.006997,0.249902,0,0);}
.m241f_c00001{transform:matrix(0.186025,-0.004093,0.005499,0.249940,0,0);-ms-transform:matrix(0.186025,-0.004093,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186025,-0.004093,0.005499,0.249940,0,0);}
.m651_c00001{transform:matrix(0.186028,-0.007635,0.010252,0.249790,0,0);-ms-transform:matrix(0.186028,-0.007635,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186028,-0.007635,0.010252,0.249790,0,0);}
.m1cab_c00001{transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);}
.m1c33_c00001{transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);}
.m43a_c00001{transform:matrix(0.186056,-0.003535,0.004749,0.249955,0,0);-ms-transform:matrix(0.186056,-0.003535,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186056,-0.003535,0.004749,0.249955,0,0);}
.m101f_c00001{transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);}
.m392_c00001{transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186069,-0.002419,0.003250,0.249979,0,0);}
.m1e_c00001{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.mb5d_c00001{transform:matrix(0.186078,-0.007264,0.009752,0.249810,0,0);-ms-transform:matrix(0.186078,-0.007264,0.009752,0.249810,0,0);-webkit-transform:matrix(0.186078,-0.007264,0.009752,0.249810,0,0);}
.m1c6c_c00001{transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);}
.mc01_c00001{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m16d6_c00001{transform:matrix(0.186122,-0.006334,0.008504,0.249855,0,0);-ms-transform:matrix(0.186122,-0.006334,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186122,-0.006334,0.008504,0.249855,0,0);}
.mc66_c00001{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m74e_c00001{transform:matrix(0.186167,0.005213,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186167,0.005213,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186167,0.005213,-0.006997,0.249902,0,0);}
.m3ed_c00001{transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);-ms-transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186167,-0.005213,0.006997,0.249902,0,0);}
.m23d1_c00001{transform:matrix(0.186195,-0.004096,0.005499,0.249940,0,0);-ms-transform:matrix(0.186195,-0.004096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186195,-0.004096,0.005499,0.249940,0,0);}
.m714_c00001{transform:matrix(0.186202,0.004655,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186202,0.004655,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186202,0.004655,-0.006248,0.249922,0,0);}
.m20e4_c00001{transform:matrix(0.186207,0.004655,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186207,0.004655,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186207,0.004655,-0.006248,0.249922,0,0);}
.m2769_c00001{transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186214,-0.002793,0.003750,0.249972,0,0);}
.m2549_c00001{transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186219,-0.002793,0.003750,0.249972,0,0);}
.m57_c00001{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m256d_c00001{transform:matrix(0.186224,-0.002421,0.003250,0.249979,0,0);-ms-transform:matrix(0.186224,-0.002421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186224,-0.002421,0.003250,0.249979,0,0);}
.me61_c00001{transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186235,0.003352,-0.004499,0.249960,0,0);}
.m2943_c00001{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m21fd_c00001{transform:matrix(0.186236,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186236,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186236,-0.003538,0.004749,0.249955,0,0);}
.m1b28_c00001{transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186240,0.000000,0.000000,0.250000,0,0);}
.md1a_c00001{transform:matrix(0.186252,-0.005401,0.007247,0.249895,0,0);-ms-transform:matrix(0.186252,-0.005401,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186252,-0.005401,0.007247,0.249895,0,0);}
.mad_c00001{transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186265,0.000000,0.000000,0.250000,0,0);}
.m2513_c00001{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m20c7_c00001{transform:matrix(0.186282,0.004657,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186282,0.004657,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186282,0.004657,-0.006248,0.249922,0,0);}
.m11bc_c00001{transform:matrix(0.186315,-0.004099,0.005499,0.249940,0,0);-ms-transform:matrix(0.186315,-0.004099,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186315,-0.004099,0.005499,0.249940,0,0);}
.m1dee_c00001{transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186315,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186320,0.000000,0.000000,0.250000,0,0);}
.m1baf_c00001{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m1581_c00001{transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186340,0.000000,0.000000,0.250000,0,0);}
.mba7_c00001{transform:matrix(0.186357,0.002236,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186357,0.002236,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186357,0.002236,-0.003000,0.249982,0,0);}
.m1034_c00001{transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186360,0.000000,0.000000,0.250000,0,0);}
.m768_c00001{transform:matrix(0.186382,0.005219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186382,0.005219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186382,0.005219,-0.006997,0.249902,0,0);}
.m1de6_c00001{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m13d4_c00001{transform:matrix(0.186392,-0.004846,0.006498,0.249916,0,0);-ms-transform:matrix(0.186392,-0.004846,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186392,-0.004846,0.006498,0.249916,0,0);}
.m1bc8_c00001{transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186405,0.000000,0.000000,0.250000,0,0);}
.m187e_c00001{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.mf3d_c00001{transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186455,0.000000,0.000000,0.250000,0,0);}
.m1d44_c00001{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.m19d1_c00001{transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186470,0.000000,0.000000,0.250000,0,0);}
.m231c_c00001{transform:matrix(0.186475,0.003357,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186475,0.003357,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186475,0.003357,-0.004499,0.249960,0,0);}
.m1b75_c00001{transform:matrix(0.186476,-0.003543,0.004749,0.249955,0,0);-ms-transform:matrix(0.186476,-0.003543,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186476,-0.003543,0.004749,0.249955,0,0);}
.ma92_c00001{transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);}
.m896_c00001{transform:matrix(0.186486,-0.003543,0.004749,0.249955,0,0);-ms-transform:matrix(0.186486,-0.003543,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186486,-0.003543,0.004749,0.249955,0,0);}
.m20d9_c00001{transform:matrix(0.186492,0.004662,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186492,0.004662,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186492,0.004662,-0.006248,0.249922,0,0);}
.m1231_c00001{transform:matrix(0.186497,-0.005035,0.006748,0.249909,0,0);-ms-transform:matrix(0.186497,-0.005035,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186497,-0.005035,0.006748,0.249909,0,0);}
.m1437_c00001{transform:matrix(0.186502,-0.005036,0.006748,0.249909,0,0);-ms-transform:matrix(0.186502,-0.005036,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186502,-0.005036,0.006748,0.249909,0,0);}
.m1b72_c00001{transform:matrix(0.186506,-0.003544,0.004749,0.249955,0,0);-ms-transform:matrix(0.186506,-0.003544,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186506,-0.003544,0.004749,0.249955,0,0);}
.m2e4_c00001{transform:matrix(0.186509,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186509,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186509,-0.002425,0.003250,0.249979,0,0);}
.m17ce_c00001{transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186510,0.000000,0.000000,0.250000,0,0);}
.m2867_c00001{transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186515,0.000000,0.000000,0.250000,0,0);}
.m8c1_c00001{transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);-ms-transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186526,-0.004477,0.005998,0.249928,0,0);}
.mc13_c00001{transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186530,0.000000,0.000000,0.250000,0,0);}
.m753_c00001{transform:matrix(0.186532,0.005223,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186532,0.005223,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186532,0.005223,-0.006997,0.249902,0,0);}
.mdf6_c00001{transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186545,0.000000,0.000000,0.250000,0,0);}
.mbad_c00001{transform:matrix(0.186549,0.002798,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186549,0.002798,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186549,0.002798,-0.003750,0.249972,0,0);}
.m269c_c00001{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m80f_c00001{transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);-ms-transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186552,-0.005223,0.006997,0.249902,0,0);}
.m2fc_c00001{transform:matrix(0.186554,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186554,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186554,-0.002425,0.003250,0.249979,0,0);}
.m25e9_c00001{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m1112_c00001{transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186565,0.000000,0.000000,0.250000,0,0);}
.m2429_c00001{transform:matrix(0.186585,-0.004105,0.005499,0.249940,0,0);-ms-transform:matrix(0.186585,-0.004105,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186585,-0.004105,0.005499,0.249940,0,0);}
.m22c8_c00001{transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186586,0.002985,-0.003999,0.249968,0,0);}
.m75c_c00001{transform:matrix(0.186587,0.005224,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186587,0.005224,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186587,0.005224,-0.006997,0.249902,0,0);}
.m1a8a_c00001{transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186590,0.000000,0.000000,0.250000,0,0);}
.m1f73_c00001{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.m224c_c00001{transform:matrix(0.186604,-0.003919,0.005249,0.249945,0,0);-ms-transform:matrix(0.186604,-0.003919,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186604,-0.003919,0.005249,0.249945,0,0);}
.m145f_c00001{transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186605,0.000000,0.000000,0.250000,0,0);}
.m13ad_c00001{transform:matrix(0.186607,-0.004852,0.006498,0.249916,0,0);-ms-transform:matrix(0.186607,-0.004852,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186607,-0.004852,0.006498,0.249916,0,0);}
.m2972_c00001{transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186610,0.000000,0.000000,0.250000,0,0);}
.m1b24_c00001{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m3a5_c00001{transform:matrix(0.186624,-0.002426,0.003250,0.249979,0,0);-ms-transform:matrix(0.186624,-0.002426,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186624,-0.002426,0.003250,0.249979,0,0);}
.m17dd_c00001{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m179c_c00001{transform:matrix(0.186640,-0.003360,0.004499,0.249960,0,0);-ms-transform:matrix(0.186640,-0.003360,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186640,-0.003360,0.004499,0.249960,0,0);}
.m486_c00001{transform:matrix(0.186646,-0.005599,0.007497,0.249888,0,0);-ms-transform:matrix(0.186646,-0.005599,0.007497,0.249888,0,0);-webkit-transform:matrix(0.186646,-0.005599,0.007497,0.249888,0,0);}
.m283c_c00001{transform:matrix(0.186649,-0.002426,0.003250,0.249979,0,0);-ms-transform:matrix(0.186649,-0.002426,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186649,-0.002426,0.003250,0.249979,0,0);}
.m1d39_c00001{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m10c9_c00001{transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186655,0.000000,0.000000,0.250000,0,0);}
.m1742_c00001{transform:matrix(0.186657,-0.004853,0.006498,0.249916,0,0);-ms-transform:matrix(0.186657,-0.004853,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186657,-0.004853,0.006498,0.249916,0,0);}
.mb10_c00001{transform:matrix(0.186658,-0.007287,0.009752,0.249810,0,0);-ms-transform:matrix(0.186658,-0.007287,0.009752,0.249810,0,0);-webkit-transform:matrix(0.186658,-0.007287,0.009752,0.249810,0,0);}
.m205c_c00001{transform:matrix(0.186665,-0.005787,0.007746,0.249880,0,0);-ms-transform:matrix(0.186665,-0.005787,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186665,-0.005787,0.007746,0.249880,0,0);}
.m1e73_c00001{transform:matrix(0.186672,-0.004853,0.006498,0.249916,0,0);-ms-transform:matrix(0.186672,-0.004853,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186672,-0.004853,0.006498,0.249916,0,0);}
.m23b_c00001{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m21e1_c00001{transform:matrix(0.186686,-0.004480,0.005998,0.249928,0,0);-ms-transform:matrix(0.186686,-0.004480,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186686,-0.004480,0.005998,0.249928,0,0);}
.m626_c00001{transform:matrix(0.186697,-0.008036,0.010751,0.249769,0,0);-ms-transform:matrix(0.186697,-0.008036,0.010751,0.249769,0,0);-webkit-transform:matrix(0.186697,-0.008036,0.010751,0.249769,0,0);}
.m1799_c00001{transform:matrix(0.186700,-0.003361,0.004499,0.249960,0,0);-ms-transform:matrix(0.186700,-0.003361,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186700,-0.003361,0.004499,0.249960,0,0);}
.mebe_c00001{transform:matrix(0.186717,0.002614,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186717,0.002614,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186717,0.002614,-0.003500,0.249976,0,0);}
.m1485_c00001{transform:matrix(0.186723,0.006168,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186723,0.006168,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186723,0.006168,-0.008254,0.249864,0,0);}
.mc3d_c00001{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.m770_c00001{transform:matrix(0.186726,0.004295,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186726,0.004295,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186726,0.004295,-0.005748,0.249934,0,0);}
.ma82_c00001{transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186735,0.000000,0.000000,0.250000,0,0);}
.mdb1_c00001{transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186745,0.000000,0.000000,0.250000,0,0);}
.m2341_c00001{transform:matrix(0.186750,0.003361,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186750,0.003361,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186750,0.003361,-0.004499,0.249960,0,0);}
.m2668_c00001{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.mc62_c00001{transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186760,0.000000,0.000000,0.250000,0,0);}
.md55_c00001{transform:matrix(0.186766,-0.005416,0.007247,0.249895,0,0);-ms-transform:matrix(0.186766,-0.005416,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186766,-0.005416,0.007247,0.249895,0,0);}
.m2f2_c00001{transform:matrix(0.186769,-0.002428,0.003250,0.249979,0,0);-ms-transform:matrix(0.186769,-0.002428,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186769,-0.002428,0.003250,0.249979,0,0);}
.m1b81_c00001{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m99a_c00001{transform:matrix(0.186775,-0.007105,0.009503,0.249819,0,0);-ms-transform:matrix(0.186775,-0.007105,0.009503,0.249819,0,0);-webkit-transform:matrix(0.186775,-0.007105,0.009503,0.249819,0,0);}
.m1e52_c00001{transform:matrix(0.186787,-0.004856,0.006498,0.249916,0,0);-ms-transform:matrix(0.186787,-0.004856,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186787,-0.004856,0.006498,0.249916,0,0);}
.mffd_c00001{transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);}
.m1476_c00001{transform:matrix(0.186793,0.006170,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186793,0.006170,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186793,0.006170,-0.008254,0.249864,0,0);}
.m49e_c00001{transform:matrix(0.186818,-0.007667,0.010252,0.249790,0,0);-ms-transform:matrix(0.186818,-0.007667,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186818,-0.007667,0.010252,0.249790,0,0);}
.m131e_c00001{transform:matrix(0.186822,0.004857,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186822,0.004857,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186822,0.004857,-0.006498,0.249916,0,0);}
.m28ef_c00001{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00001{transform:matrix(0.186834,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186834,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186834,-0.002803,0.003750,0.249972,0,0);}
.m1db2_c00001{transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186845,0.000000,0.000000,0.250000,0,0);}
.m142b_c00001{transform:matrix(0.186847,-0.004858,0.006498,0.249916,0,0);-ms-transform:matrix(0.186847,-0.004858,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186847,-0.004858,0.006498,0.249916,0,0);}
.m2309_c00001{transform:matrix(0.186855,0.003363,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186855,0.003363,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186855,0.003363,-0.004499,0.249960,0,0);}
.m114d_c00001{transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186855,0.000000,0.000000,0.250000,0,0);}
.m211a_c00001{transform:matrix(0.186857,0.005232,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186857,0.005232,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186857,0.005232,-0.006997,0.249902,0,0);}
.mab_c00001{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m69c_c00001{transform:matrix(0.186873,-0.007669,0.010252,0.249790,0,0);-ms-transform:matrix(0.186873,-0.007669,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186873,-0.007669,0.010252,0.249790,0,0);}
.m2817_c00001{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m2116_c00001{transform:matrix(0.186882,0.005233,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186882,0.005233,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186882,0.005233,-0.006997,0.249902,0,0);}
.m1dad_c00001{transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186885,0.000000,0.000000,0.250000,0,0);}
.md4d_c00001{transform:matrix(0.186896,-0.005420,0.007247,0.249895,0,0);-ms-transform:matrix(0.186896,-0.005420,0.007247,0.249895,0,0);-webkit-transform:matrix(0.186896,-0.005420,0.007247,0.249895,0,0);}
.m6cb_c00001{transform:matrix(0.186912,0.004673,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186912,0.004673,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186912,0.004673,-0.006248,0.249922,0,0);}
.m936_c00001{transform:matrix(0.186920,-0.007110,0.009503,0.249819,0,0);-ms-transform:matrix(0.186920,-0.007110,0.009503,0.249819,0,0);-webkit-transform:matrix(0.186920,-0.007110,0.009503,0.249819,0,0);}
.m7df_c00001{transform:matrix(0.186927,-0.005234,0.006997,0.249902,0,0);-ms-transform:matrix(0.186927,-0.005234,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186927,-0.005234,0.006997,0.249902,0,0);}
.m1627_c00001{transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186930,0.000000,0.000000,0.250000,0,0);}
.mb27_c00001{transform:matrix(0.186943,-0.007298,0.009752,0.249810,0,0);-ms-transform:matrix(0.186943,-0.007298,0.009752,0.249810,0,0);-webkit-transform:matrix(0.186943,-0.007298,0.009752,0.249810,0,0);}
.m4a5_c00001{transform:matrix(0.186948,-0.007673,0.010252,0.249790,0,0);-ms-transform:matrix(0.186948,-0.007673,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186948,-0.007673,0.010252,0.249790,0,0);}
.m161b_c00001{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m345_c00001{transform:matrix(0.186959,-0.002430,0.003250,0.249979,0,0);-ms-transform:matrix(0.186959,-0.002430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186959,-0.002430,0.003250,0.249979,0,0);}
.mf5f_c00001{transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186960,0.000000,0.000000,0.250000,0,0);}
.m646_c00001{transform:matrix(0.186968,-0.007673,0.010252,0.249790,0,0);-ms-transform:matrix(0.186968,-0.007673,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186968,-0.007673,0.010252,0.249790,0,0);}
.mfca_c00001{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m1a14_c00001{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20ef_c00001{transform:matrix(0.187007,0.004675,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187007,0.004675,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187007,0.004675,-0.006248,0.249922,0,0);}
.m2428_c00001{transform:matrix(0.187010,-0.004114,0.005499,0.249940,0,0);-ms-transform:matrix(0.187010,-0.004114,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187010,-0.004114,0.005499,0.249940,0,0);}
.m1aaf_c00001{transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);}
.m29b6_c00001{transform:matrix(0.187034,-0.002806,0.003750,0.249972,0,0);-ms-transform:matrix(0.187034,-0.002806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187034,-0.002806,0.003750,0.249972,0,0);}
.m359_c00001{transform:matrix(0.187034,-0.002431,0.003250,0.249979,0,0);-ms-transform:matrix(0.187034,-0.002431,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187034,-0.002431,0.003250,0.249979,0,0);}
.m2031_c00001{transform:matrix(0.187035,-0.005798,0.007746,0.249880,0,0);-ms-transform:matrix(0.187035,-0.005798,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187035,-0.005798,0.007746,0.249880,0,0);}
.m8e9_c00001{transform:matrix(0.187050,-0.007115,0.009503,0.249819,0,0);-ms-transform:matrix(0.187050,-0.007115,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187050,-0.007115,0.009503,0.249819,0,0);}
.m214d_c00001{transform:matrix(0.187052,0.005237,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187052,0.005237,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187052,0.005237,-0.006997,0.249902,0,0);}
.mca6_c00001{transform:matrix(0.187071,-0.005425,0.007247,0.249895,0,0);-ms-transform:matrix(0.187071,-0.005425,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187071,-0.005425,0.007247,0.249895,0,0);}
.m1769_c00001{transform:matrix(0.187072,-0.004864,0.006498,0.249916,0,0);-ms-transform:matrix(0.187072,-0.004864,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187072,-0.004864,0.006498,0.249916,0,0);}
.m92e_c00001{transform:matrix(0.187075,-0.007116,0.009503,0.249819,0,0);-ms-transform:matrix(0.187075,-0.007116,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187075,-0.007116,0.009503,0.249819,0,0);}
.m28e5_c00001{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m4da_c00001{transform:matrix(0.187084,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187084,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187084,0.002058,-0.002750,0.249985,0,0);}
.m24a6_c00001{transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187085,0.000000,0.000000,0.250000,0,0);}
.m177b_c00001{transform:matrix(0.187097,-0.004865,0.006498,0.249916,0,0);-ms-transform:matrix(0.187097,-0.004865,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187097,-0.004865,0.006498,0.249916,0,0);}
.m1911_c00001{transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187105,0.000000,0.000000,0.250000,0,0);}
.m2034_c00001{transform:matrix(0.187105,-0.005800,0.007746,0.249880,0,0);-ms-transform:matrix(0.187105,-0.005800,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187105,-0.005800,0.007746,0.249880,0,0);}
.m113c_c00001{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.m1e98_c00001{transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187118,-0.003742,0.004999,0.249950,0,0);}
.m1011_c00001{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m788_c00001{transform:matrix(0.187126,0.004304,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187126,0.004304,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187126,0.004304,-0.005748,0.249934,0,0);}
.m1798_c00001{transform:matrix(0.187130,-0.003368,0.004499,0.249960,0,0);-ms-transform:matrix(0.187130,-0.003368,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187130,-0.003368,0.004499,0.249960,0,0);}
.m25d5_c00001{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m1679_c00001{transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187140,0.000000,0.000000,0.250000,0,0);}
.m1e08_c00001{transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187145,0.000000,0.000000,0.250000,0,0);}
.m219a_c00001{transform:matrix(0.187169,0.003931,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187169,0.003931,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187169,0.003931,-0.005249,0.249945,0,0);}
.m1d2f_c00001{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m207e_c00001{transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);-ms-transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187175,-0.005802,0.007746,0.249880,0,0);}
.m29ba_c00001{transform:matrix(0.187179,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187179,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187179,-0.002808,0.003750,0.249972,0,0);}
.m1da8_c00001{transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187190,0.000000,0.000000,0.250000,0,0);}
.m1a8c_c00001{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.m21c5_c00001{transform:matrix(0.187205,-0.004306,0.005748,0.249934,0,0);-ms-transform:matrix(0.187205,-0.004306,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187205,-0.004306,0.005748,0.249934,0,0);}
.m4f2_c00001{transform:matrix(0.187209,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187209,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187209,0.002059,-0.002750,0.249985,0,0);}
.m1546_c00001{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.me19_c00001{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m2517_c00001{transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187230,0.000000,0.000000,0.250000,0,0);}
.mbb5_c00001{transform:matrix(0.187234,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187234,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187234,0.002060,-0.002750,0.249985,0,0);}
.m2000_c00001{transform:matrix(0.187251,-0.004681,0.006248,0.249922,0,0);-ms-transform:matrix(0.187251,-0.004681,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187251,-0.004681,0.006248,0.249922,0,0);}
.m1beb_c00001{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.m208b_c00001{transform:matrix(0.187260,-0.005805,0.007746,0.249880,0,0);-ms-transform:matrix(0.187260,-0.005805,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187260,-0.005805,0.007746,0.249880,0,0);}
.m1c05_c00001{transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187265,0.000000,0.000000,0.250000,0,0);}
.m4e7_c00001{transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187274,0.002060,-0.002750,0.249985,0,0);}
.m1f31_c00001{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m13e9_c00001{transform:matrix(0.187277,-0.004869,0.006498,0.249916,0,0);-ms-transform:matrix(0.187277,-0.004869,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187277,-0.004869,0.006498,0.249916,0,0);}
.m44d_c00001{transform:matrix(0.187291,-0.003559,0.004749,0.249955,0,0);-ms-transform:matrix(0.187291,-0.003559,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187291,-0.003559,0.004749,0.249955,0,0);}
.m214b_c00001{transform:matrix(0.187292,0.005244,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187292,0.005244,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187292,0.005244,-0.006997,0.249902,0,0);}
.m880_c00001{transform:matrix(0.187295,-0.007124,0.009503,0.249819,0,0);-ms-transform:matrix(0.187295,-0.007124,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187295,-0.007124,0.009503,0.249819,0,0);}
.m20f5_c00001{transform:matrix(0.187297,0.005244,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187297,0.005244,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187297,0.005244,-0.006997,0.249902,0,0);}
.m25bb_c00001{transform:matrix(0.187305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187305,0.000000,0.000000,0.250000,0,0);}
.mda8_c00001{transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187310,0.000000,0.000000,0.250000,0,0);}
.m3f6_c00001{transform:matrix(0.187324,-0.003934,0.005249,0.249945,0,0);-ms-transform:matrix(0.187324,-0.003934,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187324,-0.003934,0.005249,0.249945,0,0);}
.m671_c00001{transform:matrix(0.187332,-0.007688,0.010252,0.249790,0,0);-ms-transform:matrix(0.187332,-0.007688,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187332,-0.007688,0.010252,0.249790,0,0);}
.m42_c00001{transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187335,0.000000,0.000000,0.250000,0,0);}
.m2cf_c00001{transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187349,-0.002061,0.002750,0.249985,0,0);}
.m15a_c00001{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m8d6_c00001{transform:matrix(0.187356,-0.004497,0.005998,0.249928,0,0);-ms-transform:matrix(0.187356,-0.004497,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187356,-0.004497,0.005998,0.249928,0,0);}
.m521_c00001{transform:matrix(0.187359,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187359,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187359,0.002061,-0.002750,0.249985,0,0);}
.m12ad_c00001{transform:matrix(0.187360,0.004309,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187360,0.004309,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187360,0.004309,-0.005748,0.249934,0,0);}
.mfa6_c00001{transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187370,0.000000,0.000000,0.250000,0,0);}
.m1e91_c00001{transform:matrix(0.187373,-0.003747,0.004999,0.249950,0,0);-ms-transform:matrix(0.187373,-0.003747,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187373,-0.003747,0.004999,0.249950,0,0);}
.me5b_c00001{transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187380,0.003373,-0.004499,0.249960,0,0);}
.m2991_c00001{transform:matrix(0.187386,-0.002998,0.003999,0.249968,0,0);-ms-transform:matrix(0.187386,-0.002998,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187386,-0.002998,0.003999,0.249968,0,0);}
.m234c_c00001{transform:matrix(0.187390,0.003373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187390,0.003373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187390,0.003373,-0.004499,0.249960,0,0);}
.m11d0_c00001{transform:matrix(0.187395,-0.004123,0.005499,0.249940,0,0);-ms-transform:matrix(0.187395,-0.004123,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187395,-0.004123,0.005499,0.249940,0,0);}
.mec3_c00001{transform:matrix(0.187397,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187397,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187397,0.002624,-0.003500,0.249976,0,0);}
.mf92_c00001{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m1ffb_c00001{transform:matrix(0.187411,-0.004685,0.006248,0.249922,0,0);-ms-transform:matrix(0.187411,-0.004685,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187411,-0.004685,0.006248,0.249922,0,0);}
.m810_c00001{transform:matrix(0.187412,-0.005248,0.006997,0.249902,0,0);-ms-transform:matrix(0.187412,-0.005248,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187412,-0.005248,0.006997,0.249902,0,0);}
.m1eef_c00001{transform:matrix(0.187412,-0.004873,0.006498,0.249916,0,0);-ms-transform:matrix(0.187412,-0.004873,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187412,-0.004873,0.006498,0.249916,0,0);}
.m37_c00001{transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);}
.mcfa_c00001{transform:matrix(0.187431,-0.005436,0.007247,0.249895,0,0);-ms-transform:matrix(0.187431,-0.005436,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187431,-0.005436,0.007247,0.249895,0,0);}
.m1e2e_c00001{transform:matrix(0.187432,-0.004873,0.006498,0.249916,0,0);-ms-transform:matrix(0.187432,-0.004873,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187432,-0.004873,0.006498,0.249916,0,0);}
.m693_c00001{transform:matrix(0.187432,-0.007692,0.010252,0.249790,0,0);-ms-transform:matrix(0.187432,-0.007692,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187432,-0.007692,0.010252,0.249790,0,0);}
.m1e97_c00001{transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);-ms-transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187433,-0.003749,0.004999,0.249950,0,0);}
.m678_c00001{transform:matrix(0.187437,-0.007693,0.010252,0.249790,0,0);-ms-transform:matrix(0.187437,-0.007693,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187437,-0.007693,0.010252,0.249790,0,0);}
.m72f_c00001{transform:matrix(0.187441,0.004686,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187441,0.004686,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187441,0.004686,-0.006248,0.249922,0,0);}
.m98f_c00001{transform:matrix(0.187449,-0.007130,0.009503,0.249819,0,0);-ms-transform:matrix(0.187449,-0.007130,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187449,-0.007130,0.009503,0.249819,0,0);}
.m1211_c00001{transform:matrix(0.187452,-0.005061,0.006748,0.249909,0,0);-ms-transform:matrix(0.187452,-0.005061,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187452,-0.005061,0.006748,0.249909,0,0);}
.m109c_c00001{transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187455,0.000000,0.000000,0.250000,0,0);}
.m13a8_c00001{transform:matrix(0.187472,-0.004874,0.006498,0.249916,0,0);-ms-transform:matrix(0.187472,-0.004874,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187472,-0.004874,0.006498,0.249916,0,0);}
.m26d6_c00001{transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187480,0.000000,0.000000,0.250000,0,0);}
.m1d34_c00001{transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);}
.m1f27_c00001{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m51e_c00001{transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);}
.mbb6_c00001{transform:matrix(0.187509,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187509,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187509,0.002063,-0.002750,0.249985,0,0);}
.m71e_c00001{transform:matrix(0.187526,0.004688,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187526,0.004688,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187526,0.004688,-0.006248,0.249922,0,0);}
.m2889_c00001{transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187535,0.000000,0.000000,0.250000,0,0);}
.m56f_c00001{transform:matrix(0.187544,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187544,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187544,0.002063,-0.002750,0.249985,0,0);}
.m1a75_c00001{transform:matrix(0.187555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187555,0.000000,0.000000,0.250000,0,0);}
.m2467_c00001{transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187580,0.000000,0.000000,0.250000,0,0);}
.m1bb4_c00001{transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187585,0.000000,0.000000,0.250000,0,0);}
.m210d_c00001{transform:matrix(0.187596,0.005253,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187596,0.005253,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187596,0.005253,-0.006997,0.249902,0,0);}
.m1a0e_c00001{transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);}
.m7db_c00001{transform:matrix(0.187621,-0.005253,0.006997,0.249902,0,0);-ms-transform:matrix(0.187621,-0.005253,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187621,-0.005253,0.006997,0.249902,0,0);}
.ma3f_c00001{transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187635,0.000000,0.000000,0.250000,0,0);}
.m3d4_c00001{transform:matrix(0.187636,-0.005254,0.006997,0.249902,0,0);-ms-transform:matrix(0.187636,-0.005254,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187636,-0.005254,0.006997,0.249902,0,0);}
.maf6_c00001{transform:matrix(0.187637,-0.007325,0.009752,0.249810,0,0);-ms-transform:matrix(0.187637,-0.007325,0.009752,0.249810,0,0);-webkit-transform:matrix(0.187637,-0.007325,0.009752,0.249810,0,0);}
.m1b22_c00001{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m10fb_c00001{transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187660,0.000000,0.000000,0.250000,0,0);}
.mc91_c00001{transform:matrix(0.187666,-0.005442,0.007247,0.249895,0,0);-ms-transform:matrix(0.187666,-0.005442,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187666,-0.005442,0.007247,0.249895,0,0);}
.me4f_c00001{transform:matrix(0.187670,0.003378,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187670,0.003378,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187670,0.003378,-0.004499,0.249960,0,0);}
.md27_c00001{transform:matrix(0.187671,-0.005442,0.007247,0.249895,0,0);-ms-transform:matrix(0.187671,-0.005442,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187671,-0.005442,0.007247,0.249895,0,0);}
.m56c_c00001{transform:matrix(0.187684,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187684,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187684,0.002065,-0.002750,0.249985,0,0);}
.me00_c00001{transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);}
.m529_c00001{transform:matrix(0.187699,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187699,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187699,0.002065,-0.002750,0.249985,0,0);}
.m2c7_c00001{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m1ee1_c00001{transform:matrix(0.187707,-0.004880,0.006498,0.249916,0,0);-ms-transform:matrix(0.187707,-0.004880,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187707,-0.004880,0.006498,0.249916,0,0);}
.m284_c00001{transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187710,0.000000,0.000000,0.250000,0,0);}
.m220_c00001{transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);}
.medb_c00001{transform:matrix(0.187717,0.002628,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187717,0.002628,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187717,0.002628,-0.003500,0.249976,0,0);}
.m156f_c00001{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.m24ad_c00001{transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);}
.m1f0f_c00001{transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187735,0.000000,0.000000,0.250000,0,0);}
.m10db_c00001{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00001{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me97_c00001{transform:matrix(0.187757,0.002629,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187757,0.002629,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187757,0.002629,-0.003500,0.249976,0,0);}
.m1608_c00001{transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187760,0.000000,0.000000,0.250000,0,0);}
.m985_c00001{transform:matrix(0.187769,-0.007142,0.009503,0.249819,0,0);-ms-transform:matrix(0.187769,-0.007142,0.009503,0.249819,0,0);-webkit-transform:matrix(0.187769,-0.007142,0.009503,0.249819,0,0);}
.m2480_c00001{transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187770,0.000000,0.000000,0.250000,0,0);}
.m1f0e_c00001{transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187785,0.000000,0.000000,0.250000,0,0);}
.mfae_c00001{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m11e0_c00001{transform:matrix(0.187820,-0.004132,0.005499,0.249940,0,0);-ms-transform:matrix(0.187820,-0.004132,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187820,-0.004132,0.005499,0.249940,0,0);}
.m252_c00001{transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187820,0.000000,0.000000,0.250000,0,0);}
.mde6_c00001{transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);}
.m1c48_c00001{transform:matrix(0.187845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187845,0.000000,0.000000,0.250000,0,0);}
.m1238_c00001{transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);-ms-transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187847,-0.005072,0.006748,0.249909,0,0);}
.m1448_c00001{transform:matrix(0.187852,-0.005072,0.006748,0.249909,0,0);-ms-transform:matrix(0.187852,-0.005072,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187852,-0.005072,0.006748,0.249909,0,0);}
.m16c8_c00001{transform:matrix(0.187876,-0.006394,0.008504,0.249855,0,0);-ms-transform:matrix(0.187876,-0.006394,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187876,-0.006394,0.008504,0.249855,0,0);}
.m15ce_c00001{transform:matrix(0.187880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187880,0.000000,0.000000,0.250000,0,0);}
.m15e4_c00001{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.m1254_c00001{transform:matrix(0.187887,-0.005073,0.006748,0.249909,0,0);-ms-transform:matrix(0.187887,-0.005073,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187887,-0.005073,0.006748,0.249909,0,0);}
.m1d0c_c00001{transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187890,0.000000,0.000000,0.250000,0,0);}
.m1089_c00001{transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);}
.m146b_c00001{transform:matrix(0.187909,0.007148,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187909,0.007148,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187909,0.007148,-0.009503,0.249819,0,0);}
.mda0_c00001{transform:matrix(0.187916,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187916,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187916,0.002255,-0.003000,0.249982,0,0);}
.mc6e_c00001{transform:matrix(0.187926,-0.005450,0.007247,0.249895,0,0);-ms-transform:matrix(0.187926,-0.005450,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187926,-0.005450,0.007247,0.249895,0,0);}
.m1961_c00001{transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);}
.m1688_c00001{transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187945,0.000000,0.000000,0.250000,0,0);}
.m16b8_c00001{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m2558_c00001{transform:matrix(0.187962,-0.002631,0.003500,0.249976,0,0);-ms-transform:matrix(0.187962,-0.002631,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187962,-0.002631,0.003500,0.249976,0,0);}
.m111c_c00001{transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187970,0.000000,0.000000,0.250000,0,0);}
.m197d_c00001{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.mee1_c00001{transform:matrix(0.187979,0.002444,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187979,0.002444,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187979,0.002444,-0.003250,0.249979,0,0);}
.ma94_c00001{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.md83_c00001{transform:matrix(0.187984,0.002444,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187984,0.002444,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187984,0.002444,-0.003250,0.249979,0,0);}
.m837_c00001{transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);-ms-transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187986,-0.005264,0.006997,0.249902,0,0);}
.m12fb_c00001{transform:matrix(0.187991,0.005076,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187991,0.005076,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187991,0.005076,-0.006748,0.249909,0,0);}
.m2525_c00001{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.me90_c00001{transform:matrix(0.187997,0.002632,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187997,0.002632,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187997,0.002632,-0.003500,0.249976,0,0);}
.m2212_c00001{transform:matrix(0.188000,-0.004136,0.005499,0.249940,0,0);-ms-transform:matrix(0.188000,-0.004136,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188000,-0.004136,0.005499,0.249940,0,0);}
.m105d_c00001{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c6_c00001{transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188005,0.000000,0.000000,0.250000,0,0);}
.m1d52_c00001{transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188035,0.000000,0.000000,0.250000,0,0);}
.me7a_c00001{transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188042,0.002633,-0.003500,0.249976,0,0);}
.mee0_c00001{transform:matrix(0.188044,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188044,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188044,0.002445,-0.003250,0.249979,0,0);}
.m1bf9_c00001{transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);}
.m2942_c00001{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m181d_c00001{transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188060,0.000000,0.000000,0.250000,0,0);}
.m160a_c00001{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.md3e_c00001{transform:matrix(0.188096,-0.005455,0.007247,0.249895,0,0);-ms-transform:matrix(0.188096,-0.005455,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188096,-0.005455,0.007247,0.249895,0,0);}
.m1644_c00001{transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188105,0.000000,0.000000,0.250000,0,0);}
.m26e9_c00001{transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188115,0.000000,0.000000,0.250000,0,0);}
.ma1a_c00001{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m16ea_c00001{transform:matrix(0.188131,-0.004891,0.006498,0.249916,0,0);-ms-transform:matrix(0.188131,-0.004891,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188131,-0.004891,0.006498,0.249916,0,0);}
.m2462_c00001{transform:matrix(0.188134,-0.004139,0.005499,0.249940,0,0);-ms-transform:matrix(0.188134,-0.004139,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188134,-0.004139,0.005499,0.249940,0,0);}
.m16d1_c00001{transform:matrix(0.188136,-0.006403,0.008504,0.249855,0,0);-ms-transform:matrix(0.188136,-0.006403,0.008504,0.249855,0,0);-webkit-transform:matrix(0.188136,-0.006403,0.008504,0.249855,0,0);}
.mdd_c00001{transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188140,0.000000,0.000000,0.250000,0,0);}
.m1eda_c00001{transform:matrix(0.188141,-0.004892,0.006498,0.249916,0,0);-ms-transform:matrix(0.188141,-0.004892,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188141,-0.004892,0.006498,0.249916,0,0);}
.m147_c00001{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m2810_c00001{transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188165,0.000000,0.000000,0.250000,0,0);}
.m3b6_c00001{transform:matrix(0.188169,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188169,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188169,-0.002446,0.003250,0.249979,0,0);}
.m467_c00001{transform:matrix(0.188171,-0.006404,0.008504,0.249855,0,0);-ms-transform:matrix(0.188171,-0.006404,0.008504,0.249855,0,0);-webkit-transform:matrix(0.188171,-0.006404,0.008504,0.249855,0,0);}
.m1a0b_c00001{transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.mae2_c00001{transform:matrix(0.188187,-0.007347,0.009752,0.249810,0,0);-ms-transform:matrix(0.188187,-0.007347,0.009752,0.249810,0,0);-webkit-transform:matrix(0.188187,-0.007347,0.009752,0.249810,0,0);}
.m1a_c00001{transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188210,0.000000,0.000000,0.250000,0,0);}
.m1e4d_c00001{transform:matrix(0.188236,-0.004894,0.006498,0.249916,0,0);-ms-transform:matrix(0.188236,-0.004894,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188236,-0.004894,0.006498,0.249916,0,0);}
.m1d84_c00001{transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188245,0.000000,0.000000,0.250000,0,0);}
.m133e_c00001{transform:matrix(0.188246,0.005459,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188246,0.005459,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188246,0.005459,-0.007247,0.249895,0,0);}
.m689_c00001{transform:matrix(0.188252,-0.007726,0.010252,0.249790,0,0);-ms-transform:matrix(0.188252,-0.007726,0.010252,0.249790,0,0);-webkit-transform:matrix(0.188252,-0.007726,0.010252,0.249790,0,0);}
.mee4_c00001{transform:matrix(0.188264,0.002447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188264,0.002447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188264,0.002447,-0.003250,0.249979,0,0);}
.m294d_c00001{transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188280,0.000000,0.000000,0.250000,0,0);}
.m11fd_c00001{transform:matrix(0.188299,-0.004143,0.005499,0.249940,0,0);-ms-transform:matrix(0.188299,-0.004143,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188299,-0.004143,0.005499,0.249940,0,0);}
.m1b00_c00001{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m278a_c00001{transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188315,0.000000,0.000000,0.250000,0,0);}
.m18f0_c00001{transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188320,0.000000,0.000000,0.250000,0,0);}
.m1bae_c00001{transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188355,0.000000,0.000000,0.250000,0,0);}
.m136e_c00001{transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);}
.ma3e_c00001{transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188360,0.000000,0.000000,0.250000,0,0);}
.m14d3_c00001{transform:matrix(0.188362,0.006222,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188362,0.006222,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188362,0.006222,-0.008254,0.249864,0,0);}
.m127_c00001{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m22de_c00001{transform:matrix(0.188411,0.003015,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188411,0.003015,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188411,0.003015,-0.003999,0.249968,0,0);}
.mf27_c00001{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m19dd_c00001{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m22c7_c00001{transform:matrix(0.188441,0.003015,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188441,0.003015,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188441,0.003015,-0.003999,0.249968,0,0);}
.m1cb1_c00001{transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188445,0.000000,0.000000,0.250000,0,0);}
.m947_c00001{transform:matrix(0.188449,-0.007168,0.009503,0.249819,0,0);-ms-transform:matrix(0.188449,-0.007168,0.009503,0.249819,0,0);-webkit-transform:matrix(0.188449,-0.007168,0.009503,0.249819,0,0);}
.m15d6_c00001{transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188455,0.000000,0.000000,0.250000,0,0);}
.mbdd_c00001{transform:matrix(0.188464,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188464,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188464,0.002073,-0.002750,0.249985,0,0);}
.m18e8_c00001{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.m7bb_c00001{transform:matrix(0.188471,-0.005277,0.006997,0.249902,0,0);-ms-transform:matrix(0.188471,-0.005277,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188471,-0.005277,0.006997,0.249902,0,0);}
.m16f0_c00001{transform:matrix(0.188476,-0.004900,0.006498,0.249916,0,0);-ms-transform:matrix(0.188476,-0.004900,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188476,-0.004900,0.006498,0.249916,0,0);}
.m592_c00001{transform:matrix(0.188479,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188479,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188479,0.002073,-0.002750,0.249985,0,0);}
.m18f2_c00001{transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);}
.mbc7_c00001{transform:matrix(0.188489,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188489,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188489,0.002073,-0.002750,0.249985,0,0);}
.m192e_c00001{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m1fb8_c00001{transform:matrix(0.188493,-0.007925,0.010501,0.249779,0,0);-ms-transform:matrix(0.188493,-0.007925,0.010501,0.249779,0,0);-webkit-transform:matrix(0.188493,-0.007925,0.010501,0.249779,0,0);}
.maf9_c00001{transform:matrix(0.188496,-0.007359,0.009752,0.249810,0,0);-ms-transform:matrix(0.188496,-0.007359,0.009752,0.249810,0,0);-webkit-transform:matrix(0.188496,-0.007359,0.009752,0.249810,0,0);}
.m210c_c00001{transform:matrix(0.188511,0.005278,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188511,0.005278,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188511,0.005278,-0.006997,0.249902,0,0);}
.mc05_c00001{transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188515,0.000000,0.000000,0.250000,0,0);}
.m11fc_c00001{transform:matrix(0.188524,-0.004148,0.005499,0.249940,0,0);-ms-transform:matrix(0.188524,-0.004148,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188524,-0.004148,0.005499,0.249940,0,0);}
.m1087_c00001{transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188530,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188540,0.000000,0.000000,0.250000,0,0);}
.m124f_c00001{transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);-ms-transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188561,-0.005091,0.006748,0.249909,0,0);}
.m14f5_c00001{transform:matrix(0.188567,0.006229,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188567,0.006229,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188567,0.006229,-0.008254,0.249864,0,0);}
.md8b_c00001{transform:matrix(0.188571,0.002263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188571,0.002263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188571,0.002263,-0.003000,0.249982,0,0);}
.md61_c00001{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m1bc0_c00001{transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188580,0.000000,0.000000,0.250000,0,0);}
.m241e_c00001{transform:matrix(0.188584,-0.004149,0.005499,0.249940,0,0);-ms-transform:matrix(0.188584,-0.004149,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188584,-0.004149,0.005499,0.249940,0,0);}
.m1d9a_c00001{transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188590,0.000000,0.000000,0.250000,0,0);}
.m907_c00001{transform:matrix(0.188599,-0.007174,0.009503,0.249819,0,0);-ms-transform:matrix(0.188599,-0.007174,0.009503,0.249819,0,0);-webkit-transform:matrix(0.188599,-0.007174,0.009503,0.249819,0,0);}
.m2538_c00001{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m1c70_c00001{transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188620,0.000000,0.000000,0.250000,0,0);}
.mb49_c00001{transform:matrix(0.188621,-0.007364,0.009752,0.249810,0,0);-ms-transform:matrix(0.188621,-0.007364,0.009752,0.249810,0,0);-webkit-transform:matrix(0.188621,-0.007364,0.009752,0.249810,0,0);}
.m1c55_c00001{transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188630,0.000000,0.000000,0.250000,0,0);}
.m8c8_c00001{transform:matrix(0.188631,-0.004527,0.005998,0.249928,0,0);-ms-transform:matrix(0.188631,-0.004527,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188631,-0.004527,0.005998,0.249928,0,0);}
.m234_c00001{transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188645,0.000000,0.000000,0.250000,0,0);}
.m1b9a_c00001{transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188665,0.000000,0.000000,0.250000,0,0);}
.m1afe_c00001{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m1c18_c00001{transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);}
.m280f_c00001{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.m152a_c00001{transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188702,0.006233,-0.008254,0.249864,0,0);}
.m150d_c00001{transform:matrix(0.188707,0.006234,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188707,0.006234,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188707,0.006234,-0.008254,0.249864,0,0);}
.ma0c_c00001{transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188720,0.000000,0.000000,0.250000,0,0);}
.m1ca0_c00001{transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188735,0.000000,0.000000,0.250000,0,0);}
.m466_c00001{transform:matrix(0.188736,-0.006423,0.008504,0.249855,0,0);-ms-transform:matrix(0.188736,-0.006423,0.008504,0.249855,0,0);-webkit-transform:matrix(0.188736,-0.006423,0.008504,0.249855,0,0);}
.mdf5_c00001{transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188740,0.000000,0.000000,0.250000,0,0);}
.m2f7_c00001{transform:matrix(0.188744,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188744,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188744,-0.002454,0.003250,0.249979,0,0);}
.m20b3_c00001{transform:matrix(0.188746,0.004719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188746,0.004719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188746,0.004719,-0.006248,0.249922,0,0);}
.mc70_c00001{transform:matrix(0.188751,-0.005474,0.007247,0.249895,0,0);-ms-transform:matrix(0.188751,-0.005474,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188751,-0.005474,0.007247,0.249895,0,0);}
.m1fc_c00001{transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188755,0.000000,0.000000,0.250000,0,0);}
.m30e_c00001{transform:matrix(0.188759,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188759,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188759,-0.002454,0.003250,0.249979,0,0);}
.mbc9_c00001{transform:matrix(0.188794,0.002077,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188794,0.002077,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188794,0.002077,-0.002750,0.249985,0,0);}
.m13c2_c00001{transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);-ms-transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188796,-0.004909,0.006498,0.249916,0,0);}
.m780_c00001{transform:matrix(0.188805,0.004343,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188805,0.004343,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188805,0.004343,-0.005748,0.249934,0,0);}
.m1b76_c00001{transform:matrix(0.188806,-0.003587,0.004749,0.249955,0,0);-ms-transform:matrix(0.188806,-0.003587,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188806,-0.003587,0.004749,0.249955,0,0);}
.m26b9_c00001{transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188810,0.000000,0.000000,0.250000,0,0);}
.mb90_c00001{transform:matrix(0.188819,0.002455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188819,0.002455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188819,0.002455,-0.003250,0.249979,0,0);}
.m1bbf_c00001{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.m962_c00001{transform:matrix(0.188833,-0.007183,0.009503,0.249819,0,0);-ms-transform:matrix(0.188833,-0.007183,0.009503,0.249819,0,0);-webkit-transform:matrix(0.188833,-0.007183,0.009503,0.249819,0,0);}
.m374_c00001{transform:matrix(0.188844,-0.002455,0.003250,0.249979,0,0);-ms-transform:matrix(0.188844,-0.002455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188844,-0.002455,0.003250,0.249979,0,0);}
.m162b_c00001{transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188845,0.000000,0.000000,0.250000,0,0);}
.m2569_c00001{transform:matrix(0.188854,-0.002455,0.003250,0.249979,0,0);-ms-transform:matrix(0.188854,-0.002455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188854,-0.002455,0.003250,0.249979,0,0);}
.m13a9_c00001{transform:matrix(0.188856,-0.004910,0.006498,0.249916,0,0);-ms-transform:matrix(0.188856,-0.004910,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188856,-0.004910,0.006498,0.249916,0,0);}
.m1f0d_c00001{transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188860,0.000000,0.000000,0.250000,0,0);}
.m175c_c00001{transform:matrix(0.188866,-0.004911,0.006498,0.249916,0,0);-ms-transform:matrix(0.188866,-0.004911,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188866,-0.004911,0.006498,0.249916,0,0);}
.m56e_c00001{transform:matrix(0.188869,0.002078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188869,0.002078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188869,0.002078,-0.002750,0.249985,0,0);}
.m1120_c00001{transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);}
.m25f4_c00001{transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188880,0.000000,0.000000,0.250000,0,0);}
.m725_c00001{transform:matrix(0.188891,0.004722,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188891,0.004722,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188891,0.004722,-0.006248,0.249922,0,0);}
.maec_c00001{transform:matrix(0.188901,-0.007375,0.009752,0.249810,0,0);-ms-transform:matrix(0.188901,-0.007375,0.009752,0.249810,0,0);-webkit-transform:matrix(0.188901,-0.007375,0.009752,0.249810,0,0);}
.m2244_c00001{transform:matrix(0.188903,-0.003967,0.005249,0.249945,0,0);-ms-transform:matrix(0.188903,-0.003967,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188903,-0.003967,0.005249,0.249945,0,0);}
.m11e5_c00001{transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);-ms-transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188904,-0.004156,0.005499,0.249940,0,0);}
.m265f_c00001{transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188910,0.000000,0.000000,0.250000,0,0);}
.me82_c00001{transform:matrix(0.188911,0.002645,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188911,0.002645,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188911,0.002645,-0.003500,0.249976,0,0);}
.m2837_c00001{transform:matrix(0.188914,-0.002456,0.003250,0.249979,0,0);-ms-transform:matrix(0.188914,-0.002456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188914,-0.002456,0.003250,0.249979,0,0);}
.ma61_c00001{transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188915,0.000000,0.000000,0.250000,0,0);}
.m771_c00001{transform:matrix(0.188915,0.004345,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188915,0.004345,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188915,0.004345,-0.005748,0.249934,0,0);}
.m1159_c00001{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m1687_c00001{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m19d5_c00001{transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188935,0.000000,0.000000,0.250000,0,0);}
.m18b9_c00001{transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188940,0.000000,0.000000,0.250000,0,0);}
.m1e4b_c00001{transform:matrix(0.188961,-0.004913,0.006498,0.249916,0,0);-ms-transform:matrix(0.188961,-0.004913,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188961,-0.004913,0.006498,0.249916,0,0);}
.m1bf6_c00001{transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188970,0.000000,0.000000,0.250000,0,0);}
.mcdd_c00001{transform:matrix(0.188971,-0.005480,0.007247,0.249895,0,0);-ms-transform:matrix(0.188971,-0.005480,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188971,-0.005480,0.007247,0.249895,0,0);}
.m55d_c00001{transform:matrix(0.188974,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188974,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188974,0.002079,-0.002750,0.249985,0,0);}
.mfe7_c00001{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.m121_c00001{transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189005,0.000000,0.000000,0.250000,0,0);}
.m287b_c00001{transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189015,0.000000,0.000000,0.250000,0,0);}
.m1d4d_c00001{transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189020,0.000000,0.000000,0.250000,0,0);}
.m1451_c00001{transform:matrix(0.189031,-0.005104,0.006748,0.249909,0,0);-ms-transform:matrix(0.189031,-0.005104,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189031,-0.005104,0.006748,0.249909,0,0);}
.m9d8_c00001{transform:matrix(0.189034,0.003403,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189034,0.003403,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189034,0.003403,-0.004499,0.249960,0,0);}
.m716_c00001{transform:matrix(0.189036,0.004726,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189036,0.004726,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189036,0.004726,-0.006248,0.249922,0,0);}
.m4_c00001{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m32c_c00001{transform:matrix(0.189049,-0.002458,0.003250,0.249979,0,0);-ms-transform:matrix(0.189049,-0.002458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189049,-0.002458,0.003250,0.249979,0,0);}
.m1896_c00001{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m222e_c00001{transform:matrix(0.189063,-0.003970,0.005249,0.249945,0,0);-ms-transform:matrix(0.189063,-0.003970,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189063,-0.003970,0.005249,0.249945,0,0);}
.m133a_c00001{transform:matrix(0.189071,0.005483,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189071,0.005483,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189071,0.005483,-0.007247,0.249895,0,0);}
.m1b5e_c00001{transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189080,0.000000,0.000000,0.250000,0,0);}
.md04_c00001{transform:matrix(0.189091,-0.005484,0.007247,0.249895,0,0);-ms-transform:matrix(0.189091,-0.005484,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189091,-0.005484,0.007247,0.249895,0,0);}
.m1348_c00001{transform:matrix(0.189096,0.005484,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189096,0.005484,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189096,0.005484,-0.007247,0.249895,0,0);}
.m342_c00001{transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);-ms-transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189099,-0.002458,0.003250,0.249979,0,0);}
.m249d_c00001{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m6b7_c00001{transform:matrix(0.189126,0.004728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189126,0.004728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189126,0.004728,-0.006248,0.249922,0,0);}
.m1050_c00001{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m22ab_c00001{transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);}
.m1b7a_c00001{transform:matrix(0.189146,-0.003594,0.004749,0.249955,0,0);-ms-transform:matrix(0.189146,-0.003594,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189146,-0.003594,0.004749,0.249955,0,0);}
.m750_c00001{transform:matrix(0.189146,0.005296,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189146,0.005296,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189146,0.005296,-0.006997,0.249902,0,0);}
.m1368_c00001{transform:matrix(0.189150,0.005485,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189150,0.005485,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189150,0.005485,-0.007247,0.249895,0,0);}
.m1285_c00001{transform:matrix(0.189166,-0.005107,0.006748,0.249909,0,0);-ms-transform:matrix(0.189166,-0.005107,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189166,-0.005107,0.006748,0.249909,0,0);}
.m1b2f_c00001{transform:matrix(0.189170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189170,0.000000,0.000000,0.250000,0,0);}
.m658_c00001{transform:matrix(0.189171,-0.007764,0.010252,0.249790,0,0);-ms-transform:matrix(0.189171,-0.007764,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189171,-0.007764,0.010252,0.249790,0,0);}
.m23e0_c00001{transform:matrix(0.189174,-0.004162,0.005499,0.249940,0,0);-ms-transform:matrix(0.189174,-0.004162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189174,-0.004162,0.005499,0.249940,0,0);}
.m1db0_c00001{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.m1ba6_c00001{transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189195,0.000000,0.000000,0.250000,0,0);}
.m1157_c00001{transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189210,0.000000,0.000000,0.250000,0,0);}
.m1373_c00001{transform:matrix(0.189215,0.005487,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189215,0.005487,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189215,0.005487,-0.007247,0.249895,0,0);}
.md36_c00001{transform:matrix(0.189215,-0.005487,0.007247,0.249895,0,0);-ms-transform:matrix(0.189215,-0.005487,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189215,-0.005487,0.007247,0.249895,0,0);}
.ma5e_c00001{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m101e_c00001{transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189230,0.000000,0.000000,0.250000,0,0);}
.mb79_c00001{transform:matrix(0.189245,-0.005488,0.007247,0.249895,0,0);-ms-transform:matrix(0.189245,-0.005488,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189245,-0.005488,0.007247,0.249895,0,0);}
.m841_c00001{transform:matrix(0.189251,-0.005299,0.006997,0.249902,0,0);-ms-transform:matrix(0.189251,-0.005299,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189251,-0.005299,0.006997,0.249902,0,0);}
.m1989_c00001{transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189255,0.000000,0.000000,0.250000,0,0);}
.m1146_c00001{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.m1386_c00001{transform:matrix(0.189271,-0.004921,0.006498,0.249916,0,0);-ms-transform:matrix(0.189271,-0.004921,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189271,-0.004921,0.006498,0.249916,0,0);}
.m2173_c00001{transform:matrix(0.189281,0.005300,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189281,0.005300,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189281,0.005300,-0.006997,0.249902,0,0);}
.m17a3_c00001{transform:matrix(0.189294,-0.003407,0.004499,0.249960,0,0);-ms-transform:matrix(0.189294,-0.003407,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189294,-0.003407,0.004499,0.249960,0,0);}
.m1965_c00001{transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189295,0.000000,0.000000,0.250000,0,0);}
.m204a_c00001{transform:matrix(0.189299,-0.005868,0.007746,0.249880,0,0);-ms-transform:matrix(0.189299,-0.005868,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189299,-0.005868,0.007746,0.249880,0,0);}
.m1ed8_c00001{transform:matrix(0.189306,-0.004922,0.006498,0.249916,0,0);-ms-transform:matrix(0.189306,-0.004922,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189306,-0.004922,0.006498,0.249916,0,0);}
.me7f_c00001{transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189306,0.002650,-0.003500,0.249976,0,0);}
.m94f_c00001{transform:matrix(0.189308,-0.007201,0.009503,0.249819,0,0);-ms-transform:matrix(0.189308,-0.007201,0.009503,0.249819,0,0);-webkit-transform:matrix(0.189308,-0.007201,0.009503,0.249819,0,0);}
.m1fe1_c00001{transform:matrix(0.189321,-0.004733,0.006248,0.249922,0,0);-ms-transform:matrix(0.189321,-0.004733,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189321,-0.004733,0.006248,0.249922,0,0);}
.m15c8_c00001{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m1afa_c00001{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m1b8b_c00001{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m908_c00001{transform:matrix(0.189353,-0.007203,0.009503,0.249819,0,0);-ms-transform:matrix(0.189353,-0.007203,0.009503,0.249819,0,0);-webkit-transform:matrix(0.189353,-0.007203,0.009503,0.249819,0,0);}
.m1749_c00001{transform:matrix(0.189356,-0.004923,0.006498,0.249916,0,0);-ms-transform:matrix(0.189356,-0.004923,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189356,-0.004923,0.006498,0.249916,0,0);}
.m1dea_c00001{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.m21f9_c00001{transform:matrix(0.189366,-0.003598,0.004749,0.249955,0,0);-ms-transform:matrix(0.189366,-0.003598,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189366,-0.003598,0.004749,0.249955,0,0);}
.m22f7_c00001{transform:matrix(0.189379,0.003409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189379,0.003409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189379,0.003409,-0.004499,0.249960,0,0);}
.m16a1_c00001{transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189380,0.000000,0.000000,0.250000,0,0);}
.m698_c00001{transform:matrix(0.189386,-0.007773,0.010252,0.249790,0,0);-ms-transform:matrix(0.189386,-0.007773,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189386,-0.007773,0.010252,0.249790,0,0);}
.mfe3_c00001{transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);}
.m25f3_c00001{transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189420,0.000000,0.000000,0.250000,0,0);}
.mf23_c00001{transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);}
.m2180_c00001{transform:matrix(0.189431,0.005304,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189431,0.005304,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189431,0.005304,-0.006997,0.249902,0,0);}
.m63a_c00001{transform:matrix(0.189440,-0.006447,0.008504,0.249855,0,0);-ms-transform:matrix(0.189440,-0.006447,0.008504,0.249855,0,0);-webkit-transform:matrix(0.189440,-0.006447,0.008504,0.249855,0,0);}
.m2af_c00001{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m1346_c00001{transform:matrix(0.189450,0.005494,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189450,0.005494,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189450,0.005494,-0.007247,0.249895,0,0);}
.m821_c00001{transform:matrix(0.189456,-0.005305,0.006997,0.249902,0,0);-ms-transform:matrix(0.189456,-0.005305,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189456,-0.005305,0.006997,0.249902,0,0);}
.m20b7_c00001{transform:matrix(0.189461,0.004737,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189461,0.004737,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189461,0.004737,-0.006248,0.249922,0,0);}
.m14a_c00001{transform:matrix(0.189465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189465,0.000000,0.000000,0.250000,0,0);}
.m1b85_c00001{transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189480,0.000000,0.000000,0.250000,0,0);}
.m1a2c_c00001{transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189485,0.000000,0.000000,0.250000,0,0);}
.m1469_c00001{transform:matrix(0.189493,0.007208,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189493,0.007208,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189493,0.007208,-0.009503,0.249819,0,0);}
.m99f_c00001{transform:matrix(0.189503,-0.007208,0.009503,0.249819,0,0);-ms-transform:matrix(0.189503,-0.007208,0.009503,0.249819,0,0);-webkit-transform:matrix(0.189503,-0.007208,0.009503,0.249819,0,0);}
.m2560_c00001{transform:matrix(0.189506,-0.002653,0.003500,0.249976,0,0);-ms-transform:matrix(0.189506,-0.002653,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189506,-0.002653,0.003500,0.249976,0,0);}
.mf43_c00001{transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189510,0.000000,0.000000,0.250000,0,0);}
.m2090_c00001{transform:matrix(0.189514,-0.005875,0.007746,0.249880,0,0);-ms-transform:matrix(0.189514,-0.005875,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189514,-0.005875,0.007746,0.249880,0,0);}
.m31b_c00001{transform:matrix(0.189514,-0.002464,0.003250,0.249979,0,0);-ms-transform:matrix(0.189514,-0.002464,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189514,-0.002464,0.003250,0.249979,0,0);}
.ma00_c00001{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m75a_c00001{transform:matrix(0.189536,0.005307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189536,0.005307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189536,0.005307,-0.006997,0.249902,0,0);}
.mec5_c00001{transform:matrix(0.189541,0.002654,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189541,0.002654,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189541,0.002654,-0.003500,0.249976,0,0);}
.mb33_c00001{transform:matrix(0.189546,-0.007400,0.009752,0.249810,0,0);-ms-transform:matrix(0.189546,-0.007400,0.009752,0.249810,0,0);-webkit-transform:matrix(0.189546,-0.007400,0.009752,0.249810,0,0);}
.m2463_c00001{transform:matrix(0.189549,-0.004170,0.005499,0.249940,0,0);-ms-transform:matrix(0.189549,-0.004170,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189549,-0.004170,0.005499,0.249940,0,0);}
.mf22_c00001{transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189555,0.000000,0.000000,0.250000,0,0);}
.m747_c00001{transform:matrix(0.189556,0.005308,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189556,0.005308,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189556,0.005308,-0.006997,0.249902,0,0);}
.mc50_c00001{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m1f84_c00001{transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189565,0.000000,0.000000,0.250000,0,0);}
.m778_c00001{transform:matrix(0.189570,0.004360,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189570,0.004360,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189570,0.004360,-0.005748,0.249934,0,0);}
.mdb5_c00001{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m2349_c00001{transform:matrix(0.189574,0.003412,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189574,0.003412,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189574,0.003412,-0.004499,0.249960,0,0);}
.m279a_c00001{transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189595,0.000000,0.000000,0.250000,0,0);}
.m557_c00001{transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189599,0.002086,-0.002750,0.249985,0,0);}
.m2712_c00001{transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189610,0.000000,0.000000,0.250000,0,0);}
.mf9e_c00001{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.m235d_c00001{transform:matrix(0.189624,0.003413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189624,0.003413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189624,0.003413,-0.004499,0.249960,0,0);}
.m1f93_c00001{transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189630,0.000000,0.000000,0.250000,0,0);}
.m22fc_c00001{transform:matrix(0.189634,0.003413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189634,0.003413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189634,0.003413,-0.004499,0.249960,0,0);}
.m510_c00001{transform:matrix(0.189659,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189659,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189659,0.002086,-0.002750,0.249985,0,0);}
.m282_c00001{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m7a9_c00001{transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);-ms-transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189671,-0.005311,0.006997,0.249902,0,0);}
.m20b4_c00001{transform:matrix(0.189686,0.004742,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189686,0.004742,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189686,0.004742,-0.006248,0.249922,0,0);}
.m25ff_c00001{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.mbcb_c00001{transform:matrix(0.189699,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189699,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189699,0.002087,-0.002750,0.249985,0,0);}
.m2912_c00001{transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189715,0.000000,0.000000,0.250000,0,0);}
.m1715_c00001{transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);-ms-transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189726,-0.004933,0.006498,0.249916,0,0);}
.m130a_c00001{transform:matrix(0.189731,0.005123,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189731,0.005123,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189731,0.005123,-0.006748,0.249909,0,0);}
.m4be_c00001{transform:matrix(0.189743,-0.006078,0.008004,0.249872,0,0);-ms-transform:matrix(0.189743,-0.006078,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189743,-0.006078,0.008004,0.249872,0,0);}
.m24b_c00001{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m1892_c00001{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15ef_c00001{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.ma8a_c00001{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m1875_c00001{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m1d70_c00001{transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189805,0.000000,0.000000,0.250000,0,0);}
.m1f2c_c00001{transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);}
.m1ef1_c00001{transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);-ms-transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189816,-0.004935,0.006498,0.249916,0,0);}
.m276_c00001{transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189820,0.000000,0.000000,0.250000,0,0);}
.mc52_c00001{transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189830,0.000000,0.000000,0.250000,0,0);}
.m578_c00001{transform:matrix(0.189834,0.002088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189834,0.002088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189834,0.002088,-0.002750,0.249985,0,0);}
.m2759_c00001{transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);-ms-transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189834,-0.002848,0.003750,0.249972,0,0);}
.m22fb_c00001{transform:matrix(0.189834,0.003417,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189834,0.003417,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189834,0.003417,-0.004499,0.249960,0,0);}
.m20cf_c00001{transform:matrix(0.189851,0.004746,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189851,0.004746,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189851,0.004746,-0.006248,0.249922,0,0);}
.m9ac_c00001{transform:matrix(0.189853,-0.007222,0.009503,0.249819,0,0);-ms-transform:matrix(0.189853,-0.007222,0.009503,0.249819,0,0);-webkit-transform:matrix(0.189853,-0.007222,0.009503,0.249819,0,0);}
.m2737_c00001{transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189860,0.000000,0.000000,0.250000,0,0);}
.m1084_c00001{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.mecf_c00001{transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);}
.m1339_c00001{transform:matrix(0.189910,0.005507,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189910,0.005507,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189910,0.005507,-0.007247,0.249895,0,0);}
.m2076_c00001{transform:matrix(0.189914,-0.005887,0.007746,0.249880,0,0);-ms-transform:matrix(0.189914,-0.005887,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189914,-0.005887,0.007746,0.249880,0,0);}
.m197_c00001{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.me12_c00001{transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189940,0.000000,0.000000,0.250000,0,0);}
.m19b3_c00001{transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189945,0.000000,0.000000,0.250000,0,0);}
.m1a62_c00001{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m19a6_c00001{transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189955,0.000000,0.000000,0.250000,0,0);}
.m353_c00001{transform:matrix(0.189959,-0.002469,0.003250,0.249979,0,0);-ms-transform:matrix(0.189959,-0.002469,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189959,-0.002469,0.003250,0.249979,0,0);}
.m67f_c00001{transform:matrix(0.189960,-0.007796,0.010252,0.249790,0,0);-ms-transform:matrix(0.189960,-0.007796,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189960,-0.007796,0.010252,0.249790,0,0);}
.m1852_c00001{transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);}
.m225a_c00001{transform:matrix(0.189968,-0.003229,0.004249,0.249964,0,0);-ms-transform:matrix(0.189968,-0.003229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189968,-0.003229,0.004249,0.249964,0,0);}
.m2f6_c00001{transform:matrix(0.189974,-0.002470,0.003250,0.249979,0,0);-ms-transform:matrix(0.189974,-0.002470,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189974,-0.002470,0.003250,0.249979,0,0);}
.m19ca_c00001{transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189985,0.000000,0.000000,0.250000,0,0);}
.mbed_c00001{transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189995,0.000000,0.000000,0.250000,0,0);}
.m22e_c00001{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2660_c00001{transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190010,0.000000,0.000000,0.250000,0,0);}
.m2431_c00001{transform:matrix(0.190029,-0.004181,0.005499,0.249940,0,0);-ms-transform:matrix(0.190029,-0.004181,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190029,-0.004181,0.005499,0.249940,0,0);}
.m1ff6_c00001{transform:matrix(0.190046,-0.004751,0.006248,0.249922,0,0);-ms-transform:matrix(0.190046,-0.004751,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190046,-0.004751,0.006248,0.249922,0,0);}
.m1053_c00001{transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190060,0.000000,0.000000,0.250000,0,0);}
.mb9e_c00001{transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);}
.m10bd_c00001{transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);}
.m2771_c00001{transform:matrix(0.190074,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190074,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190074,-0.002851,0.003750,0.249972,0,0);}
.m2773_c00001{transform:matrix(0.190084,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190084,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190084,-0.002851,0.003750,0.249972,0,0);}
.m1e62_c00001{transform:matrix(0.190091,-0.004942,0.006498,0.249916,0,0);-ms-transform:matrix(0.190091,-0.004942,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190091,-0.004942,0.006498,0.249916,0,0);}
.m228e_c00001{transform:matrix(0.190094,-0.004182,0.005499,0.249940,0,0);-ms-transform:matrix(0.190094,-0.004182,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190094,-0.004182,0.005499,0.249940,0,0);}
.m3f_c00001{transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190095,0.000000,0.000000,0.250000,0,0);}
.m16d0_c00001{transform:matrix(0.190110,-0.006470,0.008504,0.249855,0,0);-ms-transform:matrix(0.190110,-0.006470,0.008504,0.249855,0,0);-webkit-transform:matrix(0.190110,-0.006470,0.008504,0.249855,0,0);}
.m18eb_c00001{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m2111_c00001{transform:matrix(0.190135,0.005324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190135,0.005324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190135,0.005324,-0.006997,0.249902,0,0);}
.m119e_c00001{transform:matrix(0.190139,-0.004183,0.005499,0.249940,0,0);-ms-transform:matrix(0.190139,-0.004183,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190139,-0.004183,0.005499,0.249940,0,0);}
.mf9d_c00001{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m2162_c00001{transform:matrix(0.190140,0.005324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190140,0.005324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190140,0.005324,-0.006997,0.249902,0,0);}
.m3b4_c00001{transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);-ms-transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190169,-0.002472,0.003250,0.249979,0,0);}
.m942_c00001{transform:matrix(0.190172,-0.007234,0.009503,0.249819,0,0);-ms-transform:matrix(0.190172,-0.007234,0.009503,0.249819,0,0);-webkit-transform:matrix(0.190172,-0.007234,0.009503,0.249819,0,0);}
.m1637_c00001{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m2973_c00001{transform:matrix(0.190180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190180,0.000000,0.000000,0.250000,0,0);}
.m1ca4_c00001{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.m310_c00001{transform:matrix(0.190199,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190199,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190199,-0.002473,0.003250,0.249979,0,0);}
.m22a_c00001{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m2010_c00001{transform:matrix(0.190204,-0.005896,0.007746,0.249880,0,0);-ms-transform:matrix(0.190204,-0.005896,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190204,-0.005896,0.007746,0.249880,0,0);}
.ma5a_c00001{transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190205,0.000000,0.000000,0.250000,0,0);}
.m165a_c00001{transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190210,0.000000,0.000000,0.250000,0,0);}
.m2946_c00001{transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190235,0.000000,0.000000,0.250000,0,0);}
.m25ab_c00001{transform:matrix(0.190238,-0.002093,0.002750,0.249985,0,0);-ms-transform:matrix(0.190238,-0.002093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190238,-0.002093,0.002750,0.249985,0,0);}
.m11c8_c00001{transform:matrix(0.190239,-0.004185,0.005499,0.249940,0,0);-ms-transform:matrix(0.190239,-0.004185,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190239,-0.004185,0.005499,0.249940,0,0);}
.m1187_c00001{transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190260,0.000000,0.000000,0.250000,0,0);}
.m1e9f_c00001{transform:matrix(0.190266,-0.004947,0.006498,0.249916,0,0);-ms-transform:matrix(0.190266,-0.004947,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190266,-0.004947,0.006498,0.249916,0,0);}
.m1b16_c00001{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m1a70_c00001{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m1e15_c00001{transform:matrix(0.190285,-0.004567,0.005998,0.249928,0,0);-ms-transform:matrix(0.190285,-0.004567,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190285,-0.004567,0.005998,0.249928,0,0);}
.m13a1_c00001{transform:matrix(0.190296,-0.004948,0.006498,0.249916,0,0);-ms-transform:matrix(0.190296,-0.004948,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190296,-0.004948,0.006498,0.249916,0,0);}
.m23d4_c00001{transform:matrix(0.190299,-0.004187,0.005499,0.249940,0,0);-ms-transform:matrix(0.190299,-0.004187,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190299,-0.004187,0.005499,0.249940,0,0);}
.m4a8_c00001{transform:matrix(0.190300,-0.007810,0.010252,0.249790,0,0);-ms-transform:matrix(0.190300,-0.007810,0.010252,0.249790,0,0);-webkit-transform:matrix(0.190300,-0.007810,0.010252,0.249790,0,0);}
.m14ca_c00001{transform:matrix(0.190326,0.006287,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190326,0.006287,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190326,0.006287,-0.008254,0.249864,0,0);}
.m2753_c00001{transform:matrix(0.190334,-0.002855,0.003750,0.249972,0,0);-ms-transform:matrix(0.190334,-0.002855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190334,-0.002855,0.003750,0.249972,0,0);}
.m197e_c00001{transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190360,0.000000,0.000000,0.250000,0,0);}
.m127e_c00001{transform:matrix(0.190361,-0.005140,0.006748,0.249909,0,0);-ms-transform:matrix(0.190361,-0.005140,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190361,-0.005140,0.006748,0.249909,0,0);}
.m25b9_c00001{transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190365,0.000000,0.000000,0.250000,0,0);}
.maae_c00001{transform:matrix(0.190366,-0.004950,0.006498,0.249916,0,0);-ms-transform:matrix(0.190366,-0.004950,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190366,-0.004950,0.006498,0.249916,0,0);}
.ma77_c00001{transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190385,0.000000,0.000000,0.250000,0,0);}
.m246f_c00001{transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190390,0.000000,0.000000,0.250000,0,0);}
.m114b_c00001{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.mdc3_c00001{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m3b3_c00001{transform:matrix(0.190414,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190414,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190414,-0.002475,0.003250,0.249979,0,0);}
.m141e_c00001{transform:matrix(0.190421,-0.004951,0.006498,0.249916,0,0);-ms-transform:matrix(0.190421,-0.004951,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190421,-0.004951,0.006498,0.249916,0,0);}
.m413_c00001{transform:matrix(0.190423,-0.003999,0.005249,0.249945,0,0);-ms-transform:matrix(0.190423,-0.003999,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190423,-0.003999,0.005249,0.249945,0,0);}
.m13bd_c00001{transform:matrix(0.190426,-0.004951,0.006498,0.249916,0,0);-ms-transform:matrix(0.190426,-0.004951,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190426,-0.004951,0.006498,0.249916,0,0);}
.m17b8_c00001{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.mb89_c00001{transform:matrix(0.190446,0.010496,-0.013757,0.249621,0,0);-ms-transform:matrix(0.190446,0.010496,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.190446,0.010496,-0.013757,0.249621,0,0);}
.m2044_c00001{transform:matrix(0.190449,-0.005904,0.007746,0.249880,0,0);-ms-transform:matrix(0.190449,-0.005904,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190449,-0.005904,0.007746,0.249880,0,0);}
.m1bff_c00001{transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190455,0.000000,0.000000,0.250000,0,0);}
.m9b6_c00001{transform:matrix(0.190462,-0.007245,0.009503,0.249819,0,0);-ms-transform:matrix(0.190462,-0.007245,0.009503,0.249819,0,0);-webkit-transform:matrix(0.190462,-0.007245,0.009503,0.249819,0,0);}
.mfa4_c00001{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m751_c00001{transform:matrix(0.190475,0.005333,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190475,0.005333,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190475,0.005333,-0.006997,0.249902,0,0);}
.m1801_c00001{transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190480,0.000000,0.000000,0.250000,0,0);}
.m1c5a_c00001{transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190485,0.000000,0.000000,0.250000,0,0);}
.m1a6d_c00001{transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190490,0.000000,0.000000,0.250000,0,0);}
.m1712_c00001{transform:matrix(0.190491,-0.004953,0.006498,0.249916,0,0);-ms-transform:matrix(0.190491,-0.004953,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190491,-0.004953,0.006498,0.249916,0,0);}
.m1ac1_c00001{transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190510,0.000000,0.000000,0.250000,0,0);}
.m15ad_c00001{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.m65f_c00001{transform:matrix(0.190525,-0.007819,0.010252,0.249790,0,0);-ms-transform:matrix(0.190525,-0.007819,0.010252,0.249790,0,0);-webkit-transform:matrix(0.190525,-0.007819,0.010252,0.249790,0,0);}
.m233_c00001{transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);}
.m13ea_c00001{transform:matrix(0.190531,-0.004954,0.006498,0.249916,0,0);-ms-transform:matrix(0.190531,-0.004954,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190531,-0.004954,0.006498,0.249916,0,0);}
.m1d07_c00001{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m21af_c00001{transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);-ms-transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190545,-0.004383,0.005748,0.249934,0,0);}
.m7aa_c00001{transform:matrix(0.190560,-0.005336,0.006997,0.249902,0,0);-ms-transform:matrix(0.190560,-0.005336,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190560,-0.005336,0.006997,0.249902,0,0);}
.m9ee_c00001{transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);}
.m6de_c00001{transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190575,0.004764,-0.006248,0.249922,0,0);}
.m2696_c00001{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m4d0_c00001{transform:matrix(0.190593,0.002097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190593,0.002097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190593,0.002097,-0.002750,0.249985,0,0);}
.m17d4_c00001{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.m1684_c00001{transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190610,0.000000,0.000000,0.250000,0,0);}
.m1c7d_c00001{transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190615,0.000000,0.000000,0.250000,0,0);}
.m141c_c00001{transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);-ms-transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190621,-0.004956,0.006498,0.249916,0,0);}
.m1ac0_c00001{transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190630,0.000000,0.000000,0.250000,0,0);}
.m90b_c00001{transform:matrix(0.190632,-0.007251,0.009503,0.249819,0,0);-ms-transform:matrix(0.190632,-0.007251,0.009503,0.249819,0,0);-webkit-transform:matrix(0.190632,-0.007251,0.009503,0.249819,0,0);}
.m1eb2_c00001{transform:matrix(0.190656,-0.004957,0.006498,0.249916,0,0);-ms-transform:matrix(0.190656,-0.004957,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190656,-0.004957,0.006498,0.249916,0,0);}
.m21ea_c00001{transform:matrix(0.190667,-0.003813,0.004999,0.249950,0,0);-ms-transform:matrix(0.190667,-0.003813,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190667,-0.003813,0.004999,0.249950,0,0);}
.m189a_c00001{transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);}
.m17cc_c00001{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m67a_c00001{transform:matrix(0.190689,-0.007826,0.010252,0.249790,0,0);-ms-transform:matrix(0.190689,-0.007826,0.010252,0.249790,0,0);-webkit-transform:matrix(0.190689,-0.007826,0.010252,0.249790,0,0);}
.mb29_c00001{transform:matrix(0.190695,-0.007445,0.009752,0.249810,0,0);-ms-transform:matrix(0.190695,-0.007445,0.009752,0.249810,0,0);-webkit-transform:matrix(0.190695,-0.007445,0.009752,0.249810,0,0);}
.m615_c00001{transform:matrix(0.190695,-0.008399,0.011000,0.249758,0,0);-ms-transform:matrix(0.190695,-0.008399,0.011000,0.249758,0,0);-webkit-transform:matrix(0.190695,-0.008399,0.011000,0.249758,0,0);}
.medc_c00001{transform:matrix(0.190711,0.002670,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190711,0.002670,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190711,0.002670,-0.003500,0.249976,0,0);}
.m1c09_c00001{transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190715,0.000000,0.000000,0.250000,0,0);}
.m26a4_c00001{transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190720,0.000000,0.000000,0.250000,0,0);}
.m28d_c00001{transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190730,0.000000,0.000000,0.250000,0,0);}
.m808_c00001{transform:matrix(0.190730,-0.005340,0.006997,0.249902,0,0);-ms-transform:matrix(0.190730,-0.005340,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190730,-0.005340,0.006997,0.249902,0,0);}
.m11ab_c00001{transform:matrix(0.190734,-0.004196,0.005499,0.249940,0,0);-ms-transform:matrix(0.190734,-0.004196,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190734,-0.004196,0.005499,0.249940,0,0);}
.m1219_c00001{transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);-ms-transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);-webkit-transform:matrix(0.190735,-0.005150,0.006748,0.249909,0,0);}
.ma9_c00001{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.m196c_c00001{transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190745,0.000000,0.000000,0.250000,0,0);}
.mf0c_c00001{transform:matrix(0.190749,0.003433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190749,0.003433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190749,0.003433,-0.004499,0.249960,0,0);}
.m1e6b_c00001{transform:matrix(0.190756,-0.004960,0.006498,0.249916,0,0);-ms-transform:matrix(0.190756,-0.004960,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190756,-0.004960,0.006498,0.249916,0,0);}
.m259f_c00001{transform:matrix(0.190758,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190758,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190758,-0.002098,0.002750,0.249985,0,0);}
.m1880_c00001{transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190760,0.000000,0.000000,0.250000,0,0);}
.med7_c00001{transform:matrix(0.190771,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190771,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190771,0.002671,-0.003500,0.249976,0,0);}
.m1513_c00001{transform:matrix(0.190776,0.006302,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190776,0.006302,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190776,0.006302,-0.008254,0.249864,0,0);}
.m242f_c00001{transform:matrix(0.190809,-0.004198,0.005499,0.249940,0,0);-ms-transform:matrix(0.190809,-0.004198,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190809,-0.004198,0.005499,0.249940,0,0);}
.m2241_c00001{transform:matrix(0.190813,-0.004007,0.005249,0.249945,0,0);-ms-transform:matrix(0.190813,-0.004007,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190813,-0.004007,0.005249,0.249945,0,0);}
.m78_c00001{transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);}
.m7f5_c00001{transform:matrix(0.190830,-0.005343,0.006997,0.249902,0,0);-ms-transform:matrix(0.190830,-0.005343,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190830,-0.005343,0.006997,0.249902,0,0);}
.m16fd_c00001{transform:matrix(0.190836,-0.004962,0.006498,0.249916,0,0);-ms-transform:matrix(0.190836,-0.004962,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190836,-0.004962,0.006498,0.249916,0,0);}
.m227e_c00001{transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);-ms-transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190840,-0.004389,0.005748,0.249934,0,0);}
.m1a6_c00001{transform:matrix(0.190840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190840,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00001{transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190845,0.000000,0.000000,0.250000,0,0);}
.m2226_c00001{transform:matrix(0.190849,-0.004199,0.005499,0.249940,0,0);-ms-transform:matrix(0.190849,-0.004199,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190849,-0.004199,0.005499,0.249940,0,0);}
.m1b8e_c00001{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m282e_c00001{transform:matrix(0.190864,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190864,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190864,-0.002481,0.003250,0.249979,0,0);}
.m287e_c00001{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.m9db_c00001{transform:matrix(0.190879,0.003436,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190879,0.003436,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190879,0.003436,-0.004499,0.249960,0,0);}
.mcb1_c00001{transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);-ms-transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);-webkit-transform:matrix(0.190880,-0.005536,0.007247,0.249895,0,0);}
.m253_c00001{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m1f71_c00001{transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190885,0.000000,0.000000,0.250000,0,0);}
.m2008_c00001{transform:matrix(0.190885,-0.004772,0.006248,0.249922,0,0);-ms-transform:matrix(0.190885,-0.004772,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190885,-0.004772,0.006248,0.249922,0,0);}
.m1c4c_c00001{transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190895,0.000000,0.000000,0.250000,0,0);}
.m1e27_c00001{transform:matrix(0.190920,-0.004964,0.006498,0.249916,0,0);-ms-transform:matrix(0.190920,-0.004964,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190920,-0.004964,0.006498,0.249916,0,0);}
.m2345_c00001{transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190929,0.003437,-0.004499,0.249960,0,0);}
.m63d_c00001{transform:matrix(0.190929,-0.006498,0.008504,0.249855,0,0);-ms-transform:matrix(0.190929,-0.006498,0.008504,0.249855,0,0);-webkit-transform:matrix(0.190929,-0.006498,0.008504,0.249855,0,0);}
.m1c91_c00001{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m1cc2_c00001{transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190940,0.000000,0.000000,0.250000,0,0);}
.m1a6e_c00001{transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190955,0.000000,0.000000,0.250000,0,0);}
.m10c4_c00001{transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190960,0.000000,0.000000,0.250000,0,0);}
.m4de_c00001{transform:matrix(0.190973,0.002101,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190973,0.002101,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190973,0.002101,-0.002750,0.249985,0,0);}
.m2211_c00001{transform:matrix(0.190979,-0.004202,0.005499,0.249940,0,0);-ms-transform:matrix(0.190979,-0.004202,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190979,-0.004202,0.005499,0.249940,0,0);}
.m307_c00001{transform:matrix(0.190979,-0.002483,0.003250,0.249979,0,0);-ms-transform:matrix(0.190979,-0.002483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190979,-0.002483,0.003250,0.249979,0,0);}
.m8_c00001{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m259c_c00001{transform:matrix(0.190983,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.190983,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190983,-0.002101,0.002750,0.249985,0,0);}
.m2830_c00001{transform:matrix(0.190994,-0.002483,0.003250,0.249979,0,0);-ms-transform:matrix(0.190994,-0.002483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190994,-0.002483,0.003250,0.249979,0,0);}
.m1a44_c00001{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.m172b_c00001{transform:matrix(0.190995,-0.004966,0.006498,0.249916,0,0);-ms-transform:matrix(0.190995,-0.004966,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190995,-0.004966,0.006498,0.249916,0,0);}
.m1a45_c00001{transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191005,0.000000,0.000000,0.250000,0,0);}
.m11fa_c00001{transform:matrix(0.191014,-0.004202,0.005499,0.249940,0,0);-ms-transform:matrix(0.191014,-0.004202,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191014,-0.004202,0.005499,0.249940,0,0);}
.m1f4a_c00001{transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191020,0.000000,0.000000,0.250000,0,0);}
.m2548_c00001{transform:matrix(0.191024,-0.002865,0.003750,0.249972,0,0);-ms-transform:matrix(0.191024,-0.002865,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191024,-0.002865,0.003750,0.249972,0,0);}
.me53_c00001{transform:matrix(0.191029,0.003439,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191029,0.003439,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191029,0.003439,-0.004499,0.249960,0,0);}
.md69_c00001{transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191030,0.000000,0.000000,0.250000,0,0);}
.ma4d_c00001{transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191045,0.000000,0.000000,0.250000,0,0);}
.m125d_c00001{transform:matrix(0.191050,-0.005158,0.006748,0.249909,0,0);-ms-transform:matrix(0.191050,-0.005158,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191050,-0.005158,0.006748,0.249909,0,0);}
.m1898_c00001{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m242d_c00001{transform:matrix(0.191064,-0.004203,0.005499,0.249940,0,0);-ms-transform:matrix(0.191064,-0.004203,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191064,-0.004203,0.005499,0.249940,0,0);}
.m15aa_c00001{transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);}
.m8df_c00001{transform:matrix(0.191071,-0.006312,0.008254,0.249864,0,0);-ms-transform:matrix(0.191071,-0.006312,0.008254,0.249864,0,0);-webkit-transform:matrix(0.191071,-0.006312,0.008254,0.249864,0,0);}
.m21c_c00001{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m10d6_c00001{transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191095,0.000000,0.000000,0.250000,0,0);}
.m14ef_c00001{transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191096,0.006312,-0.008254,0.249864,0,0);}
.m1550_c00001{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m94e_c00001{transform:matrix(0.191102,-0.007269,0.009503,0.249819,0,0);-ms-transform:matrix(0.191102,-0.007269,0.009503,0.249819,0,0);-webkit-transform:matrix(0.191102,-0.007269,0.009503,0.249819,0,0);}
.m5be_c00001{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.m7f4_c00001{transform:matrix(0.191110,-0.005351,0.006997,0.249902,0,0);-ms-transform:matrix(0.191110,-0.005351,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191110,-0.005351,0.006997,0.249902,0,0);}
.m1f05_c00001{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.m1392_c00001{transform:matrix(0.191120,-0.004969,0.006498,0.249916,0,0);-ms-transform:matrix(0.191120,-0.004969,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191120,-0.004969,0.006498,0.249916,0,0);}
.m2499_c00001{transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191130,0.000000,0.000000,0.250000,0,0);}
.mb94_c00001{transform:matrix(0.191134,0.002485,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191134,0.002485,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191134,0.002485,-0.003250,0.249979,0,0);}
.m19d6_c00001{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m151e_c00001{transform:matrix(0.191146,0.006314,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191146,0.006314,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191146,0.006314,-0.008254,0.249864,0,0);}
.meba_c00001{transform:matrix(0.191146,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191146,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191146,0.002676,-0.003500,0.249976,0,0);}
.m328_c00001{transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);-ms-transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191154,-0.002485,0.003250,0.249979,0,0);}
.m1ef8_c00001{transform:matrix(0.191175,-0.004971,0.006498,0.249916,0,0);-ms-transform:matrix(0.191175,-0.004971,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191175,-0.004971,0.006498,0.249916,0,0);}
.m19f7_c00001{transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191190,0.000000,0.000000,0.250000,0,0);}
.m2821_c00001{transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);-ms-transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191194,-0.002486,0.003250,0.249979,0,0);}
.m2144_c00001{transform:matrix(0.191195,0.005353,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191195,0.005353,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191195,0.005353,-0.006997,0.249902,0,0);}
.m81d_c00001{transform:matrix(0.191210,-0.005354,0.006997,0.249902,0,0);-ms-transform:matrix(0.191210,-0.005354,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191210,-0.005354,0.006997,0.249902,0,0);}
.m1736_c00001{transform:matrix(0.191210,-0.004971,0.006498,0.249916,0,0);-ms-transform:matrix(0.191210,-0.004971,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191210,-0.004971,0.006498,0.249916,0,0);}
.m28f0_c00001{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.mf1_c00001{transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191230,0.000000,0.000000,0.250000,0,0);}
.m11ec_c00001{transform:matrix(0.191249,-0.004207,0.005499,0.249940,0,0);-ms-transform:matrix(0.191249,-0.004207,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191249,-0.004207,0.005499,0.249940,0,0);}
.m11a2_c00001{transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);-ms-transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191259,-0.004208,0.005499,0.249940,0,0);}
.m10e6_c00001{transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191260,0.000000,0.000000,0.250000,0,0);}
.md9d_c00001{transform:matrix(0.191261,0.002295,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191261,0.002295,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191261,0.002295,-0.003000,0.249982,0,0);}
.m3ff_c00001{transform:matrix(0.191263,-0.004017,0.005249,0.249945,0,0);-ms-transform:matrix(0.191263,-0.004017,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191263,-0.004017,0.005249,0.249945,0,0);}
.m9f_c00001{transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);}
.md89_c00001{transform:matrix(0.191266,0.002295,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191266,0.002295,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191266,0.002295,-0.003000,0.249982,0,0);}
.mc4f_c00001{transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191270,0.000000,0.000000,0.250000,0,0);}
.m1fef_c00001{transform:matrix(0.191270,-0.004782,0.006248,0.249922,0,0);-ms-transform:matrix(0.191270,-0.004782,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191270,-0.004782,0.006248,0.249922,0,0);}
.m14e8_c00001{transform:matrix(0.191276,0.006318,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191276,0.006318,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191276,0.006318,-0.008254,0.249864,0,0);}
.m110f_c00001{transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191290,0.000000,0.000000,0.250000,0,0);}
.me9f_c00001{transform:matrix(0.191296,0.002678,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191296,0.002678,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191296,0.002678,-0.003500,0.249976,0,0);}
.m23_c00001{transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191305,0.000000,0.000000,0.250000,0,0);}
.m14c0_c00001{transform:matrix(0.191306,0.006319,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191306,0.006319,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191306,0.006319,-0.008254,0.249864,0,0);}
.m13dc_c00001{transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-ms-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);}
.m5a_c00001{transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191315,0.000000,0.000000,0.250000,0,0);}
.m4a9_c00001{transform:matrix(0.191319,-0.007852,0.010252,0.249790,0,0);-ms-transform:matrix(0.191319,-0.007852,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191319,-0.007852,0.010252,0.249790,0,0);}
.m25c0_c00001{transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191330,0.000000,0.000000,0.250000,0,0);}
.m1b41_c00001{transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191340,0.000000,0.000000,0.250000,0,0);}
.mee2_c00001{transform:matrix(0.191354,0.002488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191354,0.002488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191354,0.002488,-0.003250,0.249979,0,0);}
.m17a_c00001{transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191370,0.000000,0.000000,0.250000,0,0);}
.m2746_c00001{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m21dd_c00001{transform:matrix(0.191380,-0.004593,0.005998,0.249928,0,0);-ms-transform:matrix(0.191380,-0.004593,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191380,-0.004593,0.005998,0.249928,0,0);}
.m6f6_c00001{transform:matrix(0.191390,0.004785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191390,0.004785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191390,0.004785,-0.006248,0.249922,0,0);}
.md96_c00001{transform:matrix(0.191406,0.002297,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191406,0.002297,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191406,0.002297,-0.003000,0.249982,0,0);}
.m109_c00001{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m25db_c00001{transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191420,0.000000,0.000000,0.250000,0,0);}
.m2205_c00001{transform:matrix(0.191420,-0.003637,0.004749,0.249955,0,0);-ms-transform:matrix(0.191420,-0.003637,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191420,-0.003637,0.004749,0.249955,0,0);}
.m1704_c00001{transform:matrix(0.191425,-0.004977,0.006498,0.249916,0,0);-ms-transform:matrix(0.191425,-0.004977,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191425,-0.004977,0.006498,0.249916,0,0);}
.m33a_c00001{transform:matrix(0.191444,-0.002489,0.003250,0.249979,0,0);-ms-transform:matrix(0.191444,-0.002489,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191444,-0.002489,0.003250,0.249979,0,0);}
.m2253_c00001{transform:matrix(0.191447,-0.003255,0.004249,0.249964,0,0);-ms-transform:matrix(0.191447,-0.003255,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191447,-0.003255,0.004249,0.249964,0,0);}
.madf_c00001{transform:matrix(0.191449,-0.007474,0.009752,0.249810,0,0);-ms-transform:matrix(0.191449,-0.007474,0.009752,0.249810,0,0);-webkit-transform:matrix(0.191449,-0.007474,0.009752,0.249810,0,0);}
.m68_c00001{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m1390_c00001{transform:matrix(0.191450,-0.004978,0.006498,0.249916,0,0);-ms-transform:matrix(0.191450,-0.004978,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191450,-0.004978,0.006498,0.249916,0,0);}
.m18b3_c00001{transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191455,0.000000,0.000000,0.250000,0,0);}
.m27d9_c00001{transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191470,0.000000,0.000000,0.250000,0,0);}
.m177d_c00001{transform:matrix(0.191470,-0.004978,0.006498,0.249916,0,0);-ms-transform:matrix(0.191470,-0.004978,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191470,-0.004978,0.006498,0.249916,0,0);}
.m890_c00001{transform:matrix(0.191487,-0.007284,0.009503,0.249819,0,0);-ms-transform:matrix(0.191487,-0.007284,0.009503,0.249819,0,0);-webkit-transform:matrix(0.191487,-0.007284,0.009503,0.249819,0,0);}
.m1119_c00001{transform:matrix(0.191495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191495,0.000000,0.000000,0.250000,0,0);}
.m3fe_c00001{transform:matrix(0.191508,-0.004022,0.005249,0.249945,0,0);-ms-transform:matrix(0.191508,-0.004022,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191508,-0.004022,0.005249,0.249945,0,0);}
.m28b2_c00001{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.mf6f_c00001{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.mbf6_c00001{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m798_c00001{transform:matrix(0.191534,0.004405,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191534,0.004405,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191534,0.004405,-0.005748,0.249934,0,0);}
.m27c8_c00001{transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191545,0.000000,0.000000,0.250000,0,0);}
.m1710_c00001{transform:matrix(0.191550,-0.004980,0.006498,0.249916,0,0);-ms-transform:matrix(0.191550,-0.004980,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191550,-0.004980,0.006498,0.249916,0,0);}
.m1059_c00001{transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191555,0.000000,0.000000,0.250000,0,0);}
.m21dc_c00001{transform:matrix(0.191565,-0.004598,0.005998,0.249928,0,0);-ms-transform:matrix(0.191565,-0.004598,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191565,-0.004598,0.005998,0.249928,0,0);}
.m1cb3_c00001{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mc9d_c00001{transform:matrix(0.191574,-0.005556,0.007247,0.249895,0,0);-ms-transform:matrix(0.191574,-0.005556,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191574,-0.005556,0.007247,0.249895,0,0);}
.m249c_c00001{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m1845_c00001{transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191585,0.000000,0.000000,0.250000,0,0);}
.m35d_c00001{transform:matrix(0.191604,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191604,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191604,-0.002491,0.003250,0.249979,0,0);}
.m1b59_c00001{transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191610,0.000000,0.000000,0.250000,0,0);}
.m1fbf_c00001{transform:matrix(0.191626,-0.008056,0.010501,0.249779,0,0);-ms-transform:matrix(0.191626,-0.008056,0.010501,0.249779,0,0);-webkit-transform:matrix(0.191626,-0.008056,0.010501,0.249779,0,0);}
.m760_c00001{transform:matrix(0.191640,0.005366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191640,0.005366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191640,0.005366,-0.006997,0.249902,0,0);}
.m285b_c00001{transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191660,0.000000,0.000000,0.250000,0,0);}
.m262_c00001{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.maf4_c00001{transform:matrix(0.191679,-0.007483,0.009752,0.249810,0,0);-ms-transform:matrix(0.191679,-0.007483,0.009752,0.249810,0,0);-webkit-transform:matrix(0.191679,-0.007483,0.009752,0.249810,0,0);}
.m1030_c00001{transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191680,0.000000,0.000000,0.250000,0,0);}
.m1eab_c00001{transform:matrix(0.191685,-0.004984,0.006498,0.249916,0,0);-ms-transform:matrix(0.191685,-0.004984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191685,-0.004984,0.006498,0.249916,0,0);}
.mdd5_c00001{transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191695,0.000000,0.000000,0.250000,0,0);}
.m793_c00001{transform:matrix(0.191704,0.004409,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191704,0.004409,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191704,0.004409,-0.005748,0.249934,0,0);}
.m6d7_c00001{transform:matrix(0.191705,0.004793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191705,0.004793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191705,0.004793,-0.006248,0.249922,0,0);}
.m222d_c00001{transform:matrix(0.191714,-0.004218,0.005499,0.249940,0,0);-ms-transform:matrix(0.191714,-0.004218,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191714,-0.004218,0.005499,0.249940,0,0);}
.m2415_c00001{transform:matrix(0.191719,-0.004218,0.005499,0.249940,0,0);-ms-transform:matrix(0.191719,-0.004218,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191719,-0.004218,0.005499,0.249940,0,0);}
.mf5_c00001{transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);}
.m33f_c00001{transform:matrix(0.191739,-0.002493,0.003250,0.249979,0,0);-ms-transform:matrix(0.191739,-0.002493,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191739,-0.002493,0.003250,0.249979,0,0);}
.mfb1_c00001{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22c2_c00001{transform:matrix(0.191750,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191750,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191750,0.003068,-0.003999,0.249968,0,0);}
.m25e4_c00001{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.m1c2f_c00001{transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191765,0.000000,0.000000,0.250000,0,0);}
.m11d8_c00001{transform:matrix(0.191769,-0.004219,0.005499,0.249940,0,0);-ms-transform:matrix(0.191769,-0.004219,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191769,-0.004219,0.005499,0.249940,0,0);}
.m2464_c00001{transform:matrix(0.191774,-0.004219,0.005499,0.249940,0,0);-ms-transform:matrix(0.191774,-0.004219,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191774,-0.004219,0.005499,0.249940,0,0);}
.mb48_c00001{transform:matrix(0.191794,-0.007487,0.009752,0.249810,0,0);-ms-transform:matrix(0.191794,-0.007487,0.009752,0.249810,0,0);-webkit-transform:matrix(0.191794,-0.007487,0.009752,0.249810,0,0);}
.m1a5d_c00001{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m172d_c00001{transform:matrix(0.191800,-0.004987,0.006498,0.249916,0,0);-ms-transform:matrix(0.191800,-0.004987,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191800,-0.004987,0.006498,0.249916,0,0);}
.m2066_c00001{transform:matrix(0.191803,-0.005946,0.007746,0.249880,0,0);-ms-transform:matrix(0.191803,-0.005946,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191803,-0.005946,0.007746,0.249880,0,0);}
.m305_c00001{transform:matrix(0.191804,-0.002493,0.003250,0.249979,0,0);-ms-transform:matrix(0.191804,-0.002493,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191804,-0.002493,0.003250,0.249979,0,0);}
.m836_c00001{transform:matrix(0.191810,-0.005371,0.006997,0.249902,0,0);-ms-transform:matrix(0.191810,-0.005371,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191810,-0.005371,0.006997,0.249902,0,0);}
.m2413_c00001{transform:matrix(0.191814,-0.004220,0.005499,0.249940,0,0);-ms-transform:matrix(0.191814,-0.004220,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191814,-0.004220,0.005499,0.249940,0,0);}
.m273c_c00001{transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191820,0.000000,0.000000,0.250000,0,0);}
.m580_c00001{transform:matrix(0.191833,0.002110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191833,0.002110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191833,0.002110,-0.002750,0.249985,0,0);}
.m2761_c00001{transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191838,-0.002878,0.003750,0.249972,0,0);}
.m55_c00001{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.m686_c00001{transform:matrix(0.191848,-0.007874,0.010252,0.249790,0,0);-ms-transform:matrix(0.191848,-0.007874,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191848,-0.007874,0.010252,0.249790,0,0);}
.mc5f_c00001{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m1f82_c00001{transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191855,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00001{transform:matrix(0.191855,-0.003070,0.003999,0.249968,0,0);-ms-transform:matrix(0.191855,-0.003070,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191855,-0.003070,0.003999,0.249968,0,0);}
.m18a2_c00001{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m16cb_c00001{transform:matrix(0.191864,-0.006530,0.008504,0.249855,0,0);-ms-transform:matrix(0.191864,-0.006530,0.008504,0.249855,0,0);-webkit-transform:matrix(0.191864,-0.006530,0.008504,0.249855,0,0);}
.m1b58_c00001{transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191880,0.000000,0.000000,0.250000,0,0);}
.mfb8_c00001{transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191890,0.000000,0.000000,0.250000,0,0);}
.m1941_c00001{transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191895,0.000000,0.000000,0.250000,0,0);}
.mfb7_c00001{transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191915,0.000000,0.000000,0.250000,0,0);}
.md8f_c00001{transform:matrix(0.191921,0.002303,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191921,0.002303,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191921,0.002303,-0.003000,0.249982,0,0);}
.me15_c00001{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.m39a_c00001{transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);-ms-transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191944,-0.002495,0.003250,0.249979,0,0);}
.md2b_c00001{transform:matrix(0.191959,-0.005567,0.007247,0.249895,0,0);-ms-transform:matrix(0.191959,-0.005567,0.007247,0.249895,0,0);-webkit-transform:matrix(0.191959,-0.005567,0.007247,0.249895,0,0);}
.mfef_c00001{transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191960,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191965,0.000000,0.000000,0.250000,0,0);}
.mb93_c00001{transform:matrix(0.191969,0.002496,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191969,0.002496,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191969,0.002496,-0.003250,0.249979,0,0);}
.m1d63_c00001{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.m1d62_c00001{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m13ba_c00001{transform:matrix(0.191975,-0.004991,0.006498,0.249916,0,0);-ms-transform:matrix(0.191975,-0.004991,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191975,-0.004991,0.006498,0.249916,0,0);}
.m133c_c00001{transform:matrix(0.191979,0.005567,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191979,0.005567,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191979,0.005567,-0.007247,0.249895,0,0);}
.m1e78_c00001{transform:matrix(0.191995,-0.004992,0.006498,0.249916,0,0);-ms-transform:matrix(0.191995,-0.004992,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191995,-0.004992,0.006498,0.249916,0,0);}
.m95a_c00001{transform:matrix(0.192001,-0.007303,0.009503,0.249819,0,0);-ms-transform:matrix(0.192001,-0.007303,0.009503,0.249819,0,0);-webkit-transform:matrix(0.192001,-0.007303,0.009503,0.249819,0,0);}
.m488_c00001{transform:matrix(0.192004,-0.005760,0.007497,0.249888,0,0);-ms-transform:matrix(0.192004,-0.005760,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192004,-0.005760,0.007497,0.249888,0,0);}
.m1605_c00001{transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);}
.m68d_c00001{transform:matrix(0.192018,-0.007881,0.010252,0.249790,0,0);-ms-transform:matrix(0.192018,-0.007881,0.010252,0.249790,0,0);-webkit-transform:matrix(0.192018,-0.007881,0.010252,0.249790,0,0);}
.m11f0_c00001{transform:matrix(0.192019,-0.004224,0.005499,0.249940,0,0);-ms-transform:matrix(0.192019,-0.004224,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192019,-0.004224,0.005499,0.249940,0,0);}
.m1781_c00001{transform:matrix(0.192020,-0.004993,0.006498,0.249916,0,0);-ms-transform:matrix(0.192020,-0.004993,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192020,-0.004993,0.006498,0.249916,0,0);}
.m22f5_c00001{transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192024,0.003456,-0.004499,0.249960,0,0);}
.m2374_c00001{transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192029,0.003457,-0.004499,0.249960,0,0);}
.m268e_c00001{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m146c_c00001{transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192045,0.006344,-0.008254,0.249864,0,0);}
.m1110_c00001{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m142f_c00001{transform:matrix(0.192050,-0.004993,0.006498,0.249916,0,0);-ms-transform:matrix(0.192050,-0.004993,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192050,-0.004993,0.006498,0.249916,0,0);}
.m1090_c00001{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m1976_c00001{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.mb0b_c00001{transform:matrix(0.192064,-0.007498,0.009752,0.249810,0,0);-ms-transform:matrix(0.192064,-0.007498,0.009752,0.249810,0,0);-webkit-transform:matrix(0.192064,-0.007498,0.009752,0.249810,0,0);}
.m149a_c00001{transform:matrix(0.192070,0.006345,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192070,0.006345,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192070,0.006345,-0.008254,0.249864,0,0);}
.m25ce_c00001{transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192090,0.000000,0.000000,0.250000,0,0);}
.m113b_c00001{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m632_c00001{transform:matrix(0.192132,-0.008270,0.010751,0.249769,0,0);-ms-transform:matrix(0.192132,-0.008270,0.010751,0.249769,0,0);-webkit-transform:matrix(0.192132,-0.008270,0.010751,0.249769,0,0);}
.m1fda_c00001{transform:matrix(0.192135,-0.004803,0.006248,0.249922,0,0);-ms-transform:matrix(0.192135,-0.004803,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192135,-0.004803,0.006248,0.249922,0,0);}
.m127f_c00001{transform:matrix(0.192140,-0.005188,0.006748,0.249909,0,0);-ms-transform:matrix(0.192140,-0.005188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192140,-0.005188,0.006748,0.249909,0,0);}
.m1061_c00001{transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);}
.mb9f_c00001{transform:matrix(0.192146,0.002306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192146,0.002306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192146,0.002306,-0.003000,0.249982,0,0);}
.m2809_c00001{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m4cc_c00001{transform:matrix(0.192153,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192153,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192153,0.002114,-0.002750,0.249985,0,0);}
.md2f_c00001{transform:matrix(0.192159,-0.005573,0.007247,0.249895,0,0);-ms-transform:matrix(0.192159,-0.005573,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192159,-0.005573,0.007247,0.249895,0,0);}
.m216a_c00001{transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);}
.m2fa_c00001{transform:matrix(0.192169,-0.002498,0.003250,0.249979,0,0);-ms-transform:matrix(0.192169,-0.002498,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192169,-0.002498,0.003250,0.249979,0,0);}
.m13fb_c00001{transform:matrix(0.192175,-0.004997,0.006498,0.249916,0,0);-ms-transform:matrix(0.192175,-0.004997,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192175,-0.004997,0.006498,0.249916,0,0);}
.m25cc_c00001{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.m17db_c00001{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.mf0e_c00001{transform:matrix(0.192214,0.003460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192214,0.003460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192214,0.003460,-0.004499,0.249960,0,0);}
.m1082_c00001{transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192215,0.000000,0.000000,0.250000,0,0);}
.m1206_c00001{transform:matrix(0.192228,-0.004229,0.005499,0.249940,0,0);-ms-transform:matrix(0.192228,-0.004229,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192228,-0.004229,0.005499,0.249940,0,0);}
.m24b5_c00001{transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00001{transform:matrix(0.192239,-0.004422,0.005748,0.249934,0,0);-ms-transform:matrix(0.192239,-0.004422,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192239,-0.004422,0.005748,0.249934,0,0);}
.m163d_c00001{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m2329_c00001{transform:matrix(0.192244,0.003460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192244,0.003460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192244,0.003460,-0.004499,0.249960,0,0);}
.m256_c00001{transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192245,0.000000,0.000000,0.250000,0,0);}
.m9d5_c00001{transform:matrix(0.192259,0.003461,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192259,0.003461,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192259,0.003461,-0.004499,0.249960,0,0);}
.m143d_c00001{transform:matrix(0.192260,-0.005191,0.006748,0.249909,0,0);-ms-transform:matrix(0.192260,-0.005191,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192260,-0.005191,0.006748,0.249909,0,0);}
.m1e2b_c00001{transform:matrix(0.192260,-0.004999,0.006498,0.249916,0,0);-ms-transform:matrix(0.192260,-0.004999,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192260,-0.004999,0.006498,0.249916,0,0);}
.m84_c00001{transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);}
.m66f_c00001{transform:matrix(0.192273,-0.007891,0.010252,0.249790,0,0);-ms-transform:matrix(0.192273,-0.007891,0.010252,0.249790,0,0);-webkit-transform:matrix(0.192273,-0.007891,0.010252,0.249790,0,0);}
.m31c_c00001{transform:matrix(0.192274,-0.002500,0.003250,0.249979,0,0);-ms-transform:matrix(0.192274,-0.002500,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192274,-0.002500,0.003250,0.249979,0,0);}
.m1ab0_c00001{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m14db_c00001{transform:matrix(0.192275,0.006351,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192275,0.006351,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192275,0.006351,-0.008254,0.249864,0,0);}
.m2342_c00001{transform:matrix(0.192279,0.003461,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192279,0.003461,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192279,0.003461,-0.004499,0.249960,0,0);}
.m1343_c00001{transform:matrix(0.192324,0.005577,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192324,0.005577,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192324,0.005577,-0.007247,0.249895,0,0);}
.m1b04_c00001{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m12c5_c00001{transform:matrix(0.192345,0.004809,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192345,0.004809,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192345,0.004809,-0.006248,0.249922,0,0);}
.m12d8_c00001{transform:matrix(0.192360,0.005194,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192360,0.005194,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192360,0.005194,-0.006748,0.249909,0,0);}
.m1969_c00001{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.ma18_c00001{transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192385,0.000000,0.000000,0.250000,0,0);}
.m24b0_c00001{transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192390,0.000000,0.000000,0.250000,0,0);}
.m2194_c00001{transform:matrix(0.192395,0.005387,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192395,0.005387,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192395,0.005387,-0.006997,0.249902,0,0);}
.mfc1_c00001{transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192395,0.000000,0.000000,0.250000,0,0);}
.mab9_c00001{transform:matrix(0.192397,-0.008281,0.010751,0.249769,0,0);-ms-transform:matrix(0.192397,-0.008281,0.010751,0.249769,0,0);-webkit-transform:matrix(0.192397,-0.008281,0.010751,0.249769,0,0);}
.m242e_c00001{transform:matrix(0.192408,-0.004233,0.005499,0.249940,0,0);-ms-transform:matrix(0.192408,-0.004233,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192408,-0.004233,0.005499,0.249940,0,0);}
.m1054_c00001{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.mfbc_c00001{transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192430,0.000000,0.000000,0.250000,0,0);}
.m1d0b_c00001{transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192440,0.000000,0.000000,0.250000,0,0);}
.me18_c00001{transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192445,0.000000,0.000000,0.250000,0,0);}
.m1316_c00001{transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);}
.m3b0_c00001{transform:matrix(0.192459,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192459,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192459,-0.002502,0.003250,0.249979,0,0);}
.mc04_c00001{transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192460,0.000000,0.000000,0.250000,0,0);}
.m64b_c00001{transform:matrix(0.192468,-0.007899,0.010252,0.249790,0,0);-ms-transform:matrix(0.192468,-0.007899,0.010252,0.249790,0,0);-webkit-transform:matrix(0.192468,-0.007899,0.010252,0.249790,0,0);}
.m1fa3_c00001{transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192480,0.000000,0.000000,0.250000,0,0);}
.m1f2f_c00001{transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);}
.m57b_c00001{transform:matrix(0.192488,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192488,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192488,0.002117,-0.002750,0.249985,0,0);}
.m2609_c00001{transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192495,0.000000,0.000000,0.250000,0,0);}
.m1c20_c00001{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf8d_c00001{transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192505,0.000000,0.000000,0.250000,0,0);}
.m1a46_c00001{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m9e9_c00001{transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192530,0.000000,0.000000,0.250000,0,0);}
.mf28_c00001{transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);}
.m1b5f_c00001{transform:matrix(0.192545,-0.003658,0.004749,0.249955,0,0);-ms-transform:matrix(0.192545,-0.003658,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192545,-0.003658,0.004749,0.249955,0,0);}
.md2e_c00001{transform:matrix(0.192554,-0.005584,0.007247,0.249895,0,0);-ms-transform:matrix(0.192554,-0.005584,0.007247,0.249895,0,0);-webkit-transform:matrix(0.192554,-0.005584,0.007247,0.249895,0,0);}
.m1a3a_c00001{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.m92d_c00001{transform:matrix(0.192566,-0.007325,0.009503,0.249819,0,0);-ms-transform:matrix(0.192566,-0.007325,0.009503,0.249819,0,0);-webkit-transform:matrix(0.192566,-0.007325,0.009503,0.249819,0,0);}
.m27a9_c00001{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m2052_c00001{transform:matrix(0.192577,-0.005970,0.007746,0.249880,0,0);-ms-transform:matrix(0.192577,-0.005970,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192577,-0.005970,0.007746,0.249880,0,0);}
.m5c5_c00001{transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);}
.m17a6_c00001{transform:matrix(0.192589,-0.003467,0.004499,0.249960,0,0);-ms-transform:matrix(0.192589,-0.003467,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192589,-0.003467,0.004499,0.249960,0,0);}
.m45f_c00001{transform:matrix(0.192593,-0.006555,0.008504,0.249855,0,0);-ms-transform:matrix(0.192593,-0.006555,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192593,-0.006555,0.008504,0.249855,0,0);}
.m293e_c00001{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.m17ee_c00001{transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192605,0.000000,0.000000,0.250000,0,0);}
.m247c_c00001{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.m628_c00001{transform:matrix(0.192612,-0.008291,0.010751,0.249769,0,0);-ms-transform:matrix(0.192612,-0.008291,0.010751,0.249769,0,0);-webkit-transform:matrix(0.192612,-0.008291,0.010751,0.249769,0,0);}
.m1a5a_c00001{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m1d65_c00001{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m32b_c00001{transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192634,-0.002504,0.003250,0.249979,0,0);}
.m13c6_c00001{transform:matrix(0.192640,-0.005009,0.006498,0.249916,0,0);-ms-transform:matrix(0.192640,-0.005009,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192640,-0.005009,0.006498,0.249916,0,0);}
.mf4a_c00001{transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192655,0.000000,0.000000,0.250000,0,0);}
.m2892_c00001{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.mdbc_c00001{transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192670,0.000000,0.000000,0.250000,0,0);}
.md9e_c00001{transform:matrix(0.192676,0.002312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192676,0.002312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192676,0.002312,-0.003000,0.249982,0,0);}
.m1997_c00001{transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192680,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.192685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192685,0.000000,0.000000,0.250000,0,0);}
.m9ad_c00001{transform:matrix(0.192686,-0.007329,0.009503,0.249819,0,0);-ms-transform:matrix(0.192686,-0.007329,0.009503,0.249819,0,0);-webkit-transform:matrix(0.192686,-0.007329,0.009503,0.249819,0,0);}
.m279_c00001{transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192690,0.000000,0.000000,0.250000,0,0);}
.m26f4_c00001{transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);}
.m2227_c00001{transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);-ms-transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192708,-0.004240,0.005499,0.249940,0,0);}
.m242a_c00001{transform:matrix(0.192713,-0.004240,0.005499,0.249940,0,0);-ms-transform:matrix(0.192713,-0.004240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192713,-0.004240,0.005499,0.249940,0,0);}
.m18cd_c00001{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.mbd9_c00001{transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192743,0.002120,-0.002750,0.249985,0,0);}
.m16f2_c00001{transform:matrix(0.192755,-0.005012,0.006498,0.249916,0,0);-ms-transform:matrix(0.192755,-0.005012,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192755,-0.005012,0.006498,0.249916,0,0);}
.m1da9_c00001{transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192755,0.000000,0.000000,0.250000,0,0);}
.m3df_c00001{transform:matrix(0.192759,-0.005397,0.006997,0.249902,0,0);-ms-transform:matrix(0.192759,-0.005397,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192759,-0.005397,0.006997,0.249902,0,0);}
.m2595_c00001{transform:matrix(0.192768,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192768,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192768,-0.002120,0.002750,0.249985,0,0);}
.mdc4_c00001{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.m23b8_c00001{transform:matrix(0.192793,-0.004241,0.005499,0.249940,0,0);-ms-transform:matrix(0.192793,-0.004241,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192793,-0.004241,0.005499,0.249940,0,0);}
.m253a_c00001{transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192795,0.000000,0.000000,0.250000,0,0);}
.mabb_c00001{transform:matrix(0.192796,-0.008299,0.010751,0.249769,0,0);-ms-transform:matrix(0.192796,-0.008299,0.010751,0.249769,0,0);-webkit-transform:matrix(0.192796,-0.008299,0.010751,0.249769,0,0);}
.ma57_c00001{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m28c8_c00001{transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192810,0.000000,0.000000,0.250000,0,0);}
.m1609_c00001{transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192820,0.000000,0.000000,0.250000,0,0);}
.m1e2a_c00001{transform:matrix(0.192825,-0.005013,0.006498,0.249916,0,0);-ms-transform:matrix(0.192825,-0.005013,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192825,-0.005013,0.006498,0.249916,0,0);}
.m565_c00001{transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192828,0.002121,-0.002750,0.249985,0,0);}
.mf39_c00001{transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);}
.m1299_c00001{transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192855,0.000000,0.000000,0.250000,0,0);}
.m21c4_c00001{transform:matrix(0.192864,-0.004436,0.005748,0.249934,0,0);-ms-transform:matrix(0.192864,-0.004436,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192864,-0.004436,0.005748,0.249934,0,0);}
.m1c4b_c00001{transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192870,0.000000,0.000000,0.250000,0,0);}
.m14b3_c00001{transform:matrix(0.192875,0.006371,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192875,0.006371,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192875,0.006371,-0.008254,0.249864,0,0);}
.m1ab7_c00001{transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192880,0.000000,0.000000,0.250000,0,0);}
.m1b91_c00001{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.m164e_c00001{transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192915,0.000000,0.000000,0.250000,0,0);}
.m42d_c00001{transform:matrix(0.192920,-0.003665,0.004749,0.249955,0,0);-ms-transform:matrix(0.192920,-0.003665,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192920,-0.003665,0.004749,0.249955,0,0);}
.m260_c00001{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m1332_c00001{transform:matrix(0.192934,0.005595,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192934,0.005595,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192934,0.005595,-0.007247,0.249895,0,0);}
.m13de_c00001{transform:matrix(0.192945,-0.005017,0.006498,0.249916,0,0);-ms-transform:matrix(0.192945,-0.005017,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192945,-0.005017,0.006498,0.249916,0,0);}
.m9c2_c00001{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mc2f_c00001{transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192955,0.000000,0.000000,0.250000,0,0);}
.m245c_c00001{transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);-ms-transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192968,-0.004245,0.005499,0.249940,0,0);}
.m19c6_c00001{transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192970,0.000000,0.000000,0.250000,0,0);}
.m2664_c00001{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m1c87_c00001{transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192980,0.000000,0.000000,0.250000,0,0);}
.m112c_c00001{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.m2579_c00001{transform:matrix(0.192999,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.192999,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192999,-0.002509,0.003250,0.249979,0,0);}
.m12ed_c00001{transform:matrix(0.193000,0.005211,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193000,0.005211,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193000,0.005211,-0.006748,0.249909,0,0);}
.m2961_c00001{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1af6_c00001{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.m1bad_c00001{transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193015,0.000000,0.000000,0.250000,0,0);}
.m119_c00001{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m999_c00001{transform:matrix(0.193035,-0.007343,0.009503,0.249819,0,0);-ms-transform:matrix(0.193035,-0.007343,0.009503,0.249819,0,0);-webkit-transform:matrix(0.193035,-0.007343,0.009503,0.249819,0,0);}
.mecb_c00001{transform:matrix(0.193041,0.002703,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193041,0.002703,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193041,0.002703,-0.003500,0.249976,0,0);}
.m116f_c00001{transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);}
.m1db9_c00001{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.ma28_c00001{transform:matrix(0.193080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193080,0.000000,0.000000,0.250000,0,0);}
.m230d_c00001{transform:matrix(0.193094,0.003476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193094,0.003476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193094,0.003476,-0.004499,0.249960,0,0);}
.m2936_c00001{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m105f_c00001{transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193105,0.000000,0.000000,0.250000,0,0);}
.m57c_c00001{transform:matrix(0.193118,0.002124,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193118,0.002124,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193118,0.002124,-0.002750,0.249985,0,0);}
.m24b9_c00001{transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193140,0.000000,0.000000,0.250000,0,0);}
.m168c_c00001{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.m2522_c00001{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m1f4e_c00001{transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193170,0.000000,0.000000,0.250000,0,0);}
.m1b17_c00001{transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);}
.m6d9_c00001{transform:matrix(0.193180,0.004829,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193180,0.004829,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193180,0.004829,-0.006248,0.249922,0,0);}
.m1bb9_c00001{transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193190,0.000000,0.000000,0.250000,0,0);}
.m24f9_c00001{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m7d4_c00001{transform:matrix(0.193199,-0.005410,0.006997,0.249902,0,0);-ms-transform:matrix(0.193199,-0.005410,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193199,-0.005410,0.006997,0.249902,0,0);}
.m1176_c00001{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m70a_c00001{transform:matrix(0.193204,0.004637,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193204,0.004637,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193204,0.004637,-0.005998,0.249928,0,0);}
.m784_c00001{transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193209,0.004444,-0.005748,0.249934,0,0);}
.mc29_c00001{transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193210,0.000000,0.000000,0.250000,0,0);}
.m1aa5_c00001{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m1422_c00001{transform:matrix(0.193220,-0.005024,0.006498,0.249916,0,0);-ms-transform:matrix(0.193220,-0.005024,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193220,-0.005024,0.006498,0.249916,0,0);}
.m19e8_c00001{transform:matrix(0.193220,-0.003092,0.003999,0.249968,0,0);-ms-transform:matrix(0.193220,-0.003092,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193220,-0.003092,0.003999,0.249968,0,0);}
.m267e_c00001{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m2571_c00001{transform:matrix(0.193229,-0.002512,0.003250,0.249979,0,0);-ms-transform:matrix(0.193229,-0.002512,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193229,-0.002512,0.003250,0.249979,0,0);}
.m2688_c00001{transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193230,0.000000,0.000000,0.250000,0,0);}
.mdb7_c00001{transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193235,0.000000,0.000000,0.250000,0,0);}
.m249e_c00001{transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193240,0.000000,0.000000,0.250000,0,0);}
.mc54_c00001{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.m17cd_c00001{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m206e_c00001{transform:matrix(0.193257,-0.005991,0.007746,0.249880,0,0);-ms-transform:matrix(0.193257,-0.005991,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193257,-0.005991,0.007746,0.249880,0,0);}
.m19bd_c00001{transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193260,0.000000,0.000000,0.250000,0,0);}
.mc40_c00001{transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193290,0.000000,0.000000,0.250000,0,0);}
.m1fb9_c00001{transform:matrix(0.193294,-0.008126,0.010501,0.249779,0,0);-ms-transform:matrix(0.193294,-0.008126,0.010501,0.249779,0,0);-webkit-transform:matrix(0.193294,-0.008126,0.010501,0.249779,0,0);}
.m2290_c00001{transform:matrix(0.193295,-0.003673,0.004749,0.249955,0,0);-ms-transform:matrix(0.193295,-0.003673,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193295,-0.003673,0.004749,0.249955,0,0);}
.m26d2_c00001{transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);}
.m18b0_c00001{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.mf51_c00001{transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193315,0.000000,0.000000,0.250000,0,0);}
.m1885_c00001{transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);}
.m2766_c00001{transform:matrix(0.193323,-0.002900,0.003750,0.249972,0,0);-ms-transform:matrix(0.193323,-0.002900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193323,-0.002900,0.003750,0.249972,0,0);}
.mbd0_c00001{transform:matrix(0.193328,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193328,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193328,0.002127,-0.002750,0.249985,0,0);}
.m1a7a_c00001{transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193330,0.000000,0.000000,0.250000,0,0);}
.m8c7_c00001{transform:matrix(0.193334,-0.004640,0.005998,0.249928,0,0);-ms-transform:matrix(0.193334,-0.004640,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193334,-0.004640,0.005998,0.249928,0,0);}
.m1596_c00001{transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193355,0.000000,0.000000,0.250000,0,0);}
.m913_c00001{transform:matrix(0.193355,-0.007355,0.009503,0.249819,0,0);-ms-transform:matrix(0.193355,-0.007355,0.009503,0.249819,0,0);-webkit-transform:matrix(0.193355,-0.007355,0.009503,0.249819,0,0);}
.m52a_c00001{transform:matrix(0.193358,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193358,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193358,0.002127,-0.002750,0.249985,0,0);}
.ma4b_c00001{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.ma3_c00001{transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193365,0.000000,0.000000,0.250000,0,0);}
.m166f_c00001{transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193370,0.000000,0.000000,0.250000,0,0);}
.m10ee_c00001{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m905_c00001{transform:matrix(0.193380,-0.007356,0.009503,0.249819,0,0);-ms-transform:matrix(0.193380,-0.007356,0.009503,0.249819,0,0);-webkit-transform:matrix(0.193380,-0.007356,0.009503,0.249819,0,0);}
.mb30_c00001{transform:matrix(0.193383,-0.007549,0.009752,0.249810,0,0);-ms-transform:matrix(0.193383,-0.007549,0.009752,0.249810,0,0);-webkit-transform:matrix(0.193383,-0.007549,0.009752,0.249810,0,0);}
.m1555_c00001{transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193395,0.000000,0.000000,0.250000,0,0);}
.m121c_c00001{transform:matrix(0.193420,-0.005222,0.006748,0.249909,0,0);-ms-transform:matrix(0.193420,-0.005222,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193420,-0.005222,0.006748,0.249909,0,0);}
.m279b_c00001{transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193435,0.000000,0.000000,0.250000,0,0);}
.m152c_c00001{transform:matrix(0.193459,0.006391,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193459,0.006391,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193459,0.006391,-0.008254,0.249864,0,0);}
.m6ec_c00001{transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193465,0.004837,-0.006248,0.249922,0,0);}
.m1e25_c00001{transform:matrix(0.193475,-0.005030,0.006498,0.249916,0,0);-ms-transform:matrix(0.193475,-0.005030,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193475,-0.005030,0.006498,0.249916,0,0);}
.m2908_c00001{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m1964_c00001{transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193485,0.000000,0.000000,0.250000,0,0);}
.m3be_c00001{transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193490,0.000000,0.000000,0.250000,0,0);}
.m909_c00001{transform:matrix(0.193490,-0.007360,0.009503,0.249819,0,0);-ms-transform:matrix(0.193490,-0.007360,0.009503,0.249819,0,0);-webkit-transform:matrix(0.193490,-0.007360,0.009503,0.249819,0,0);}
.m2304_c00001{transform:matrix(0.193494,0.003483,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193494,0.003483,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193494,0.003483,-0.004499,0.249960,0,0);}
.m834_c00001{transform:matrix(0.193494,-0.005418,0.006997,0.249902,0,0);-ms-transform:matrix(0.193494,-0.005418,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193494,-0.005418,0.006997,0.249902,0,0);}
.m1dff_c00001{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m761_c00001{transform:matrix(0.193509,0.005418,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193509,0.005418,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193509,0.005418,-0.006997,0.249902,0,0);}
.ma41_c00001{transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193510,0.000000,0.000000,0.250000,0,0);}
.m1ed4_c00001{transform:matrix(0.193520,-0.005032,0.006498,0.249916,0,0);-ms-transform:matrix(0.193520,-0.005032,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193520,-0.005032,0.006498,0.249916,0,0);}
.m59c_c00001{transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193523,0.002129,-0.002750,0.249985,0,0);}
.mcff_c00001{transform:matrix(0.193524,-0.005612,0.007247,0.249895,0,0);-ms-transform:matrix(0.193524,-0.005612,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193524,-0.005612,0.007247,0.249895,0,0);}
.m178c_c00001{transform:matrix(0.193525,-0.005032,0.006498,0.249916,0,0);-ms-transform:matrix(0.193525,-0.005032,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193525,-0.005032,0.006498,0.249916,0,0);}
.m1067_c00001{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m1a53_c00001{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m2243_c00001{transform:matrix(0.193542,-0.004064,0.005249,0.249945,0,0);-ms-transform:matrix(0.193542,-0.004064,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193542,-0.004064,0.005249,0.249945,0,0);}
.mbdc_c00001{transform:matrix(0.193543,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193543,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193543,0.002129,-0.002750,0.249985,0,0);}
.m1fbb_c00001{transform:matrix(0.193544,-0.008137,0.010501,0.249779,0,0);-ms-transform:matrix(0.193544,-0.008137,0.010501,0.249779,0,0);-webkit-transform:matrix(0.193544,-0.008137,0.010501,0.249779,0,0);}
.m1e72_c00001{transform:matrix(0.193545,-0.005032,0.006498,0.249916,0,0);-ms-transform:matrix(0.193545,-0.005032,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193545,-0.005032,0.006498,0.249916,0,0);}
.m29af_c00001{transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193545,0.000000,0.000000,0.250000,0,0);}
.m2221_c00001{transform:matrix(0.193554,-0.004452,0.005748,0.249934,0,0);-ms-transform:matrix(0.193554,-0.004452,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193554,-0.004452,0.005748,0.249934,0,0);}
.m2379_c00001{transform:matrix(0.193559,0.003484,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193559,0.003484,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193559,0.003484,-0.004499,0.249960,0,0);}
.m6ea_c00001{transform:matrix(0.193565,0.004839,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193565,0.004839,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193565,0.004839,-0.006248,0.249922,0,0);}
.m1ae1_c00001{transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193565,0.000000,0.000000,0.250000,0,0);}
.m1436_c00001{transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);-ms-transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193569,-0.005226,0.006748,0.249909,0,0);}
.m1429_c00001{transform:matrix(0.193600,-0.005034,0.006498,0.249916,0,0);-ms-transform:matrix(0.193600,-0.005034,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193600,-0.005034,0.006498,0.249916,0,0);}
.m259_c00001{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m2ad_c00001{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.m1daa_c00001{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.m1b5a_c00001{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m27d4_c00001{transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193630,0.000000,0.000000,0.250000,0,0);}
.m461_c00001{transform:matrix(0.193633,-0.006590,0.008504,0.249855,0,0);-ms-transform:matrix(0.193633,-0.006590,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193633,-0.006590,0.008504,0.249855,0,0);}
.m1fc6_c00001{transform:matrix(0.193639,-0.004841,0.006248,0.249922,0,0);-ms-transform:matrix(0.193639,-0.004841,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193639,-0.004841,0.006248,0.249922,0,0);}
.m293c_c00001{transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193640,0.000000,0.000000,0.250000,0,0);}
.mb08_c00001{transform:matrix(0.193642,-0.007560,0.009752,0.249810,0,0);-ms-transform:matrix(0.193642,-0.007560,0.009752,0.249810,0,0);-webkit-transform:matrix(0.193642,-0.007560,0.009752,0.249810,0,0);}
.m2340_c00001{transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193649,0.003486,-0.004499,0.249960,0,0);}
.m26a0_c00001{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m6a9_c00001{transform:matrix(0.193652,-0.007948,0.010252,0.249790,0,0);-ms-transform:matrix(0.193652,-0.007948,0.010252,0.249790,0,0);-webkit-transform:matrix(0.193652,-0.007948,0.010252,0.249790,0,0);}
.mc49_c00001{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m1c3b_c00001{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.mfe8_c00001{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m7a1_c00001{transform:matrix(0.193679,-0.005423,0.006997,0.249902,0,0);-ms-transform:matrix(0.193679,-0.005423,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193679,-0.005423,0.006997,0.249902,0,0);}
.meff_c00001{transform:matrix(0.193684,0.002518,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193684,0.002518,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193684,0.002518,-0.003250,0.249979,0,0);}
.me_c00001{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.mc46_c00001{transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193705,0.000000,0.000000,0.250000,0,0);}
.m1335_c00001{transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);}
.m380_c00001{transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);-ms-transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193714,-0.002518,0.003250,0.249979,0,0);}
.m15ff_c00001{transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193720,0.000000,0.000000,0.250000,0,0);}
.m100a_c00001{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m1c3f_c00001{transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193730,0.000000,0.000000,0.250000,0,0);}
.m1453_c00001{transform:matrix(0.193754,-0.005231,0.006748,0.249909,0,0);-ms-transform:matrix(0.193754,-0.005231,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193754,-0.005231,0.006748,0.249909,0,0);}
.m2432_c00001{transform:matrix(0.193758,-0.004263,0.005499,0.249940,0,0);-ms-transform:matrix(0.193758,-0.004263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193758,-0.004263,0.005499,0.249940,0,0);}
.m9d4_c00001{transform:matrix(0.193759,0.003488,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193759,0.003488,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193759,0.003488,-0.004499,0.249960,0,0);}
.m23a0_c00001{transform:matrix(0.193760,-0.005038,0.006498,0.249916,0,0);-ms-transform:matrix(0.193760,-0.005038,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193760,-0.005038,0.006498,0.249916,0,0);}
.m1d6b_c00001{transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);}
.m123b_c00001{transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);-ms-transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193784,-0.005232,0.006748,0.249909,0,0);}
.m101c_c00001{transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193785,0.000000,0.000000,0.250000,0,0);}
.m23ed_c00001{transform:matrix(0.193788,-0.004263,0.005499,0.249940,0,0);-ms-transform:matrix(0.193788,-0.004263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193788,-0.004263,0.005499,0.249940,0,0);}
.m1c22_c00001{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m26cb_c00001{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m110b_c00001{transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193810,0.000000,0.000000,0.250000,0,0);}
.m1bdf_c00001{transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193820,0.000000,0.000000,0.250000,0,0);}
.ma59_c00001{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m4db_c00001{transform:matrix(0.193838,0.002132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193838,0.002132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193838,0.002132,-0.002750,0.249985,0,0);}
.m12b0_c00001{transform:matrix(0.193849,0.004459,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193849,0.004459,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193849,0.004459,-0.005748,0.249934,0,0);}
.m1914_c00001{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.mb88_c00001{transform:matrix(0.193856,0.010683,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193856,0.010683,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193856,0.010683,-0.013757,0.249621,0,0);}
.m548_c00001{transform:matrix(0.193858,0.002132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193858,0.002132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193858,0.002132,-0.002750,0.249985,0,0);}
.m14e4_c00001{transform:matrix(0.193864,0.006404,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193864,0.006404,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193864,0.006404,-0.008254,0.249864,0,0);}
.m28e6_c00001{transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);}
.m1c99_c00001{transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193890,0.000000,0.000000,0.250000,0,0);}
.m206f_c00001{transform:matrix(0.193892,-0.006011,0.007746,0.249880,0,0);-ms-transform:matrix(0.193892,-0.006011,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193892,-0.006011,0.007746,0.249880,0,0);}
.m2308_c00001{transform:matrix(0.193894,0.003490,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193894,0.003490,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193894,0.003490,-0.004499,0.249960,0,0);}
.m1626_c00001{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.mb18_c00001{transform:matrix(0.193897,-0.007570,0.009752,0.249810,0,0);-ms-transform:matrix(0.193897,-0.007570,0.009752,0.249810,0,0);-webkit-transform:matrix(0.193897,-0.007570,0.009752,0.249810,0,0);}
.m9b2_c00001{transform:matrix(0.193910,-0.007376,0.009503,0.249819,0,0);-ms-transform:matrix(0.193910,-0.007376,0.009503,0.249819,0,0);-webkit-transform:matrix(0.193910,-0.007376,0.009503,0.249819,0,0);}
.m1716_c00001{transform:matrix(0.193929,-0.005042,0.006498,0.249916,0,0);-ms-transform:matrix(0.193929,-0.005042,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193929,-0.005042,0.006498,0.249916,0,0);}
.m1355_c00001{transform:matrix(0.193933,0.005624,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193933,0.005624,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193933,0.005624,-0.007247,0.249895,0,0);}
.mf9a_c00001{transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193935,0.000000,0.000000,0.250000,0,0);}
.m2861_c00001{transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193940,0.000000,0.000000,0.250000,0,0);}
.m214a_c00001{transform:matrix(0.193954,0.005431,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193954,0.005431,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193954,0.005431,-0.006997,0.249902,0,0);}
.m17e7_c00001{transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193955,0.000000,0.000000,0.250000,0,0);}
.md46_c00001{transform:matrix(0.193958,-0.005625,0.007247,0.249895,0,0);-ms-transform:matrix(0.193958,-0.005625,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193958,-0.005625,0.007247,0.249895,0,0);}
.m7d3_c00001{transform:matrix(0.193969,-0.005431,0.006997,0.249902,0,0);-ms-transform:matrix(0.193969,-0.005431,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193969,-0.005431,0.006997,0.249902,0,0);}
.mde0_c00001{transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193985,0.000000,0.000000,0.250000,0,0);}
.m78b_c00001{transform:matrix(0.193989,0.004462,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193989,0.004462,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193989,0.004462,-0.005748,0.249934,0,0);}
.m1ad_c00001{transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);-ms-transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193993,-0.002910,0.003750,0.249972,0,0);}
.m1959_c00001{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb07_c00001{transform:matrix(0.194002,-0.007574,0.009752,0.249810,0,0);-ms-transform:matrix(0.194002,-0.007574,0.009752,0.249810,0,0);-webkit-transform:matrix(0.194002,-0.007574,0.009752,0.249810,0,0);}
.m14b6_c00001{transform:matrix(0.194009,0.006409,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194009,0.006409,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194009,0.006409,-0.008254,0.249864,0,0);}
.m648_c00001{transform:matrix(0.194012,-0.007962,0.010252,0.249790,0,0);-ms-transform:matrix(0.194012,-0.007962,0.010252,0.249790,0,0);-webkit-transform:matrix(0.194012,-0.007962,0.010252,0.249790,0,0);}
.m2519_c00001{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.mfeb_c00001{transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194040,0.000000,0.000000,0.250000,0,0);}
.m171b_c00001{transform:matrix(0.194044,-0.005045,0.006498,0.249916,0,0);-ms-transform:matrix(0.194044,-0.005045,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194044,-0.005045,0.006498,0.249916,0,0);}
.m10a8_c00001{transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194045,0.000000,0.000000,0.250000,0,0);}
.m19f2_c00001{transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);}
.m55c_c00001{transform:matrix(0.194068,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194068,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194068,0.002135,-0.002750,0.249985,0,0);}
.m14d9_c00001{transform:matrix(0.194074,0.006411,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194074,0.006411,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194074,0.006411,-0.008254,0.249864,0,0);}
.m1963_c00001{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m2233_c00001{transform:matrix(0.194087,-0.004076,0.005249,0.249945,0,0);-ms-transform:matrix(0.194087,-0.004076,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194087,-0.004076,0.005249,0.249945,0,0);}
.mfc8_c00001{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m60e_c00001{transform:matrix(0.194102,-0.004076,0.005249,0.249945,0,0);-ms-transform:matrix(0.194102,-0.004076,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194102,-0.004076,0.005249,0.249945,0,0);}
.m20c4_c00001{transform:matrix(0.194109,0.004853,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194109,0.004853,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194109,0.004853,-0.006248,0.249922,0,0);}
.m2881_c00001{transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194115,0.000000,0.000000,0.250000,0,0);}
.m25d0_c00001{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m24f3_c00001{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m183c_c00001{transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194135,0.000000,0.000000,0.250000,0,0);}
.m1e59_c00001{transform:matrix(0.194159,-0.005048,0.006498,0.249916,0,0);-ms-transform:matrix(0.194159,-0.005048,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194159,-0.005048,0.006498,0.249916,0,0);}
.m17c1_c00001{transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194160,0.000000,0.000000,0.250000,0,0);}
.m2291_c00001{transform:matrix(0.194165,-0.003689,0.004749,0.249955,0,0);-ms-transform:matrix(0.194165,-0.003689,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194165,-0.003689,0.004749,0.249955,0,0);}
.m161a_c00001{transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194185,0.000000,0.000000,0.250000,0,0);}
.m2265_c00001{transform:matrix(0.194189,-0.004661,0.005998,0.249928,0,0);-ms-transform:matrix(0.194189,-0.004661,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194189,-0.004661,0.005998,0.249928,0,0);}
.m287f_c00001{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.mf15_c00001{transform:matrix(0.194201,0.003884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194201,0.003884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194201,0.003884,-0.004999,0.249950,0,0);}
.m4dd_c00001{transform:matrix(0.194203,0.002136,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194203,0.002136,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194203,0.002136,-0.002750,0.249985,0,0);}
.m1af8_c00001{transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194205,0.000000,0.000000,0.250000,0,0);}
.m1e20_c00001{transform:matrix(0.194214,-0.005050,0.006498,0.249916,0,0);-ms-transform:matrix(0.194214,-0.005050,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194214,-0.005050,0.006498,0.249916,0,0);}
.m12a5_c00001{transform:matrix(0.194218,0.004273,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194218,0.004273,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194218,0.004273,-0.005499,0.249940,0,0);}
.m1888_c00001{transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194235,0.000000,0.000000,0.250000,0,0);}
.m1f98_c00001{transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194240,0.000000,0.000000,0.250000,0,0);}
.m14f9_c00001{transform:matrix(0.194254,0.006417,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194254,0.006417,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194254,0.006417,-0.008254,0.249864,0,0);}
.mde3_c00001{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.m1e53_c00001{transform:matrix(0.194264,-0.005051,0.006498,0.249916,0,0);-ms-transform:matrix(0.194264,-0.005051,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194264,-0.005051,0.006498,0.249916,0,0);}
.m2128_c00001{transform:matrix(0.194269,0.005440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194269,0.005440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194269,0.005440,-0.006997,0.249902,0,0);}
.m1192_c00001{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m952_c00001{transform:matrix(0.194280,-0.007390,0.009503,0.249819,0,0);-ms-transform:matrix(0.194280,-0.007390,0.009503,0.249819,0,0);-webkit-transform:matrix(0.194280,-0.007390,0.009503,0.249819,0,0);}
.mb7_c00001{transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194290,0.000000,0.000000,0.250000,0,0);}
.m230e_c00001{transform:matrix(0.194299,0.003497,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194299,0.003497,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194299,0.003497,-0.004499,0.249960,0,0);}
.m6c0_c00001{transform:matrix(0.194299,0.004857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194299,0.004857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194299,0.004857,-0.006248,0.249922,0,0);}
.m183_c00001{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m1d45_c00001{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.m221f_c00001{transform:matrix(0.194329,-0.004470,0.005748,0.249934,0,0);-ms-transform:matrix(0.194329,-0.004470,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194329,-0.004470,0.005748,0.249934,0,0);}
.me8_c00001{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m11a3_c00001{transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);-ms-transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194333,-0.004275,0.005499,0.249940,0,0);}
.m15d4_c00001{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.mf7a_c00001{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m5fc_c00001{transform:matrix(0.194353,-0.008171,0.010501,0.249779,0,0);-ms-transform:matrix(0.194353,-0.008171,0.010501,0.249779,0,0);-webkit-transform:matrix(0.194353,-0.008171,0.010501,0.249779,0,0);}
.mb45_c00001{transform:matrix(0.194357,-0.007588,0.009752,0.249810,0,0);-ms-transform:matrix(0.194357,-0.007588,0.009752,0.249810,0,0);-webkit-transform:matrix(0.194357,-0.007588,0.009752,0.249810,0,0);}
.m426_c00001{transform:matrix(0.194357,-0.004082,0.005249,0.249945,0,0);-ms-transform:matrix(0.194357,-0.004082,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194357,-0.004082,0.005249,0.249945,0,0);}
.m2289_c00001{transform:matrix(0.194373,-0.004276,0.005499,0.249940,0,0);-ms-transform:matrix(0.194373,-0.004276,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194373,-0.004276,0.005499,0.249940,0,0);}
.m1020_c00001{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.m171e_c00001{transform:matrix(0.194384,-0.005054,0.006498,0.249916,0,0);-ms-transform:matrix(0.194384,-0.005054,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194384,-0.005054,0.006498,0.249916,0,0);}
.m1f5e_c00001{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m74c_c00001{transform:matrix(0.194404,0.005443,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194404,0.005443,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194404,0.005443,-0.006997,0.249902,0,0);}
.m6ce_c00001{transform:matrix(0.194414,0.004860,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194414,0.004860,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194414,0.004860,-0.006248,0.249922,0,0);}
.m1897_c00001{transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);}
.m963_c00001{transform:matrix(0.194419,-0.007395,0.009503,0.249819,0,0);-ms-transform:matrix(0.194419,-0.007395,0.009503,0.249819,0,0);-webkit-transform:matrix(0.194419,-0.007395,0.009503,0.249819,0,0);}
.m26b2_c00001{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m1863_c00001{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m1302_c00001{transform:matrix(0.194449,0.005250,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194449,0.005250,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194449,0.005250,-0.006748,0.249909,0,0);}
.m2794_c00001{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m207c_c00001{transform:matrix(0.194467,-0.006028,0.007746,0.249880,0,0);-ms-transform:matrix(0.194467,-0.006028,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194467,-0.006028,0.007746,0.249880,0,0);}
.m1860_c00001{transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194470,0.000000,0.000000,0.250000,0,0);}
.m240c_c00001{transform:matrix(0.194473,-0.004278,0.005499,0.249940,0,0);-ms-transform:matrix(0.194473,-0.004278,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194473,-0.004278,0.005499,0.249940,0,0);}
.m111a_c00001{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.m2831_c00001{transform:matrix(0.194489,-0.002528,0.003250,0.249979,0,0);-ms-transform:matrix(0.194489,-0.002528,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194489,-0.002528,0.003250,0.249979,0,0);}
.m108_c00001{transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194490,0.000000,0.000000,0.250000,0,0);}
.m1510_c00001{transform:matrix(0.194494,0.006425,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194494,0.006425,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194494,0.006425,-0.008254,0.249864,0,0);}
.m10f2_c00001{transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);}
.mf8_c00001{transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194520,0.000000,0.000000,0.250000,0,0);}
.m12f3_c00001{transform:matrix(0.194529,0.005252,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194529,0.005252,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194529,0.005252,-0.006748,0.249909,0,0);}
.m1722_c00001{transform:matrix(0.194534,-0.005058,0.006498,0.249916,0,0);-ms-transform:matrix(0.194534,-0.005058,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194534,-0.005058,0.006498,0.249916,0,0);}
.m11e6_c00001{transform:matrix(0.194553,-0.004280,0.005499,0.249940,0,0);-ms-transform:matrix(0.194553,-0.004280,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194553,-0.004280,0.005499,0.249940,0,0);}
.m563_c00001{transform:matrix(0.194553,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194553,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194553,0.002140,-0.002750,0.249985,0,0);}
.m16dc_c00001{transform:matrix(0.194557,-0.006622,0.008504,0.249855,0,0);-ms-transform:matrix(0.194557,-0.006622,0.008504,0.249855,0,0);-webkit-transform:matrix(0.194557,-0.006622,0.008504,0.249855,0,0);}
.m7f7_c00001{transform:matrix(0.194569,-0.005448,0.006997,0.249902,0,0);-ms-transform:matrix(0.194569,-0.005448,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194569,-0.005448,0.006997,0.249902,0,0);}
.m11d4_c00001{transform:matrix(0.194573,-0.004281,0.005499,0.249940,0,0);-ms-transform:matrix(0.194573,-0.004281,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194573,-0.004281,0.005499,0.249940,0,0);}
.m22c9_c00001{transform:matrix(0.194575,0.003113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194575,0.003113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194575,0.003113,-0.003999,0.249968,0,0);}
.m68f_c00001{transform:matrix(0.194581,-0.007986,0.010252,0.249790,0,0);-ms-transform:matrix(0.194581,-0.007986,0.010252,0.249790,0,0);-webkit-transform:matrix(0.194581,-0.007986,0.010252,0.249790,0,0);}
.mbc5_c00001{transform:matrix(0.194583,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194583,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194583,0.002140,-0.002750,0.249985,0,0);}
.m20ac_c00001{transform:matrix(0.194599,0.004865,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194599,0.004865,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194599,0.004865,-0.006248,0.249922,0,0);}
.m16f3_c00001{transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);-ms-transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194599,-0.005060,0.006498,0.249916,0,0);}
.m1a17_c00001{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.me74_c00001{transform:matrix(0.194606,0.002724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194606,0.002724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194606,0.002724,-0.003500,0.249976,0,0);}
.m712_c00001{transform:matrix(0.194609,0.004476,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194609,0.004476,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194609,0.004476,-0.005748,0.249934,0,0);}
.mb3_c00001{transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194610,0.000000,0.000000,0.250000,0,0);}
.m21c0_c00001{transform:matrix(0.194619,-0.004476,0.005748,0.249934,0,0);-ms-transform:matrix(0.194619,-0.004476,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194619,-0.004476,0.005748,0.249934,0,0);}
.m17e8_c00001{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.m27fa_c00001{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.m582_c00001{transform:matrix(0.194648,0.002141,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194648,0.002141,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194648,0.002141,-0.002750,0.249985,0,0);}
.medd_c00001{transform:matrix(0.194651,0.002725,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194651,0.002725,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194651,0.002725,-0.003500,0.249976,0,0);}
.m737_c00001{transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194660,0.000000,0.000000,0.250000,0,0);}
.mdec_c00001{transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194665,0.000000,0.000000,0.250000,0,0);}
.m6ad_c00001{transform:matrix(0.194669,0.004477,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194669,0.004477,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194669,0.004477,-0.005748,0.249934,0,0);}
.m237_c00001{transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194670,0.000000,0.000000,0.250000,0,0);}
.m140e_c00001{transform:matrix(0.194679,-0.005062,0.006498,0.249916,0,0);-ms-transform:matrix(0.194679,-0.005062,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194679,-0.005062,0.006498,0.249916,0,0);}
.ma96_c00001{transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194680,0.000000,0.000000,0.250000,0,0);}
.m779_c00001{transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194694,0.004478,-0.005748,0.249934,0,0);}
.m1864_c00001{transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194705,0.000000,0.000000,0.250000,0,0);}
.mee5_c00001{transform:matrix(0.194714,0.002531,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194714,0.002531,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194714,0.002531,-0.003250,0.249979,0,0);}
.m2262_c00001{transform:matrix(0.194734,-0.004674,0.005998,0.249928,0,0);-ms-transform:matrix(0.194734,-0.004674,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194734,-0.004674,0.005998,0.249928,0,0);}
.m1001_c00001{transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194735,0.000000,0.000000,0.250000,0,0);}
.m2189_c00001{transform:matrix(0.194764,0.005453,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194764,0.005453,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194764,0.005453,-0.006997,0.249902,0,0);}
.m199b_c00001{transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194765,0.000000,0.000000,0.250000,0,0);}
.m517_c00001{transform:matrix(0.194773,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194773,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194773,0.002143,-0.002750,0.249985,0,0);}
.m1cd7_c00001{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.me94_c00001{transform:matrix(0.194781,0.002727,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194781,0.002727,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194781,0.002727,-0.003500,0.249976,0,0);}
.m1035_c00001{transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194790,0.000000,0.000000,0.250000,0,0);}
.m29b_c00001{transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);-ms-transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194801,-0.002338,0.003000,0.249982,0,0);}
.m1944_c00001{transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194815,0.000000,0.000000,0.250000,0,0);}
.m22bb_c00001{transform:matrix(0.194820,0.003117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194820,0.003117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194820,0.003117,-0.003999,0.249968,0,0);}
.m2411_c00001{transform:matrix(0.194838,-0.004286,0.005499,0.249940,0,0);-ms-transform:matrix(0.194838,-0.004286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194838,-0.004286,0.005499,0.249940,0,0);}
.ma44_c00001{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m2166_c00001{transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);}
.m26c7_c00001{transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194865,0.000000,0.000000,0.250000,0,0);}
.m1225_c00001{transform:matrix(0.194874,-0.005262,0.006748,0.249909,0,0);-ms-transform:matrix(0.194874,-0.005262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194874,-0.005262,0.006748,0.249909,0,0);}
.m2079_c00001{transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);-ms-transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194881,-0.006041,0.007746,0.249880,0,0);}
.m13af_c00001{transform:matrix(0.194884,-0.005067,0.006498,0.249916,0,0);-ms-transform:matrix(0.194884,-0.005067,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194884,-0.005067,0.006498,0.249916,0,0);}
.m1266_c00001{transform:matrix(0.194894,-0.005262,0.006748,0.249909,0,0);-ms-transform:matrix(0.194894,-0.005262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194894,-0.005262,0.006748,0.249909,0,0);}
.m2169_c00001{transform:matrix(0.194899,0.005457,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194899,0.005457,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194899,0.005457,-0.006997,0.249902,0,0);}
.m1a32_c00001{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m1374_c00001{transform:matrix(0.194903,0.005652,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194903,0.005652,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194903,0.005652,-0.007247,0.249895,0,0);}
.mca7_c00001{transform:matrix(0.194903,-0.005652,0.007247,0.249895,0,0);-ms-transform:matrix(0.194903,-0.005652,0.007247,0.249895,0,0);-webkit-transform:matrix(0.194903,-0.005652,0.007247,0.249895,0,0);}
.m122e_c00001{transform:matrix(0.194904,-0.005262,0.006748,0.249909,0,0);-ms-transform:matrix(0.194904,-0.005262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194904,-0.005262,0.006748,0.249909,0,0);}
.m1f87_c00001{transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194905,0.000000,0.000000,0.250000,0,0);}
.m709_c00001{transform:matrix(0.194919,0.004678,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194919,0.004678,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194919,0.004678,-0.005998,0.249928,0,0);}
.m21ca_c00001{transform:matrix(0.194928,-0.004483,0.005748,0.249934,0,0);-ms-transform:matrix(0.194928,-0.004483,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194928,-0.004483,0.005748,0.249934,0,0);}
.mde1_c00001{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.md7c_c00001{transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194945,0.000000,0.000000,0.250000,0,0);}
.ma56_c00001{transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194965,0.000000,0.000000,0.250000,0,0);}
.mdc1_c00001{transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194970,0.000000,0.000000,0.250000,0,0);}
.m1a51_c00001{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m8d0_c00001{transform:matrix(0.194984,-0.004680,0.005998,0.249928,0,0);-ms-transform:matrix(0.194984,-0.004680,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194984,-0.004680,0.005998,0.249928,0,0);}
.m481_c00001{transform:matrix(0.194987,-0.005850,0.007497,0.249888,0,0);-ms-transform:matrix(0.194987,-0.005850,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194987,-0.005850,0.007497,0.249888,0,0);}
.mc1_c00001{transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194990,0.000000,0.000000,0.250000,0,0);}
.m1d59_c00001{transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194995,0.000000,0.000000,0.250000,0,0);}
.me9d_c00001{transform:matrix(0.194996,0.002730,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194996,0.002730,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194996,0.002730,-0.003500,0.249976,0,0);}
.m1a91_c00001{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m16af_c00001{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.m1363_c00001{transform:matrix(0.195008,0.005655,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195008,0.005655,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195008,0.005655,-0.007247,0.249895,0,0);}
.m1023_c00001{transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195015,0.000000,0.000000,0.250000,0,0);}
.m14f6_c00001{transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195019,0.006442,-0.008254,0.249864,0,0);}
.m2982_c00001{transform:matrix(0.195026,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195026,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195026,-0.003901,0.004999,0.249950,0,0);}
.m13b9_c00001{transform:matrix(0.195029,-0.005071,0.006498,0.249916,0,0);-ms-transform:matrix(0.195029,-0.005071,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195029,-0.005071,0.006498,0.249916,0,0);}
.m2217_c00001{transform:matrix(0.195033,-0.004486,0.005748,0.249934,0,0);-ms-transform:matrix(0.195033,-0.004486,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195033,-0.004486,0.005748,0.249934,0,0);}
.m152_c00001{transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195035,0.000000,0.000000,0.250000,0,0);}
.m1a9d_c00001{transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);}
.m1ec4_c00001{transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);-ms-transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195044,-0.005071,0.006498,0.249916,0,0);}
.m16cf_c00001{transform:matrix(0.195047,-0.006638,0.008504,0.249855,0,0);-ms-transform:matrix(0.195047,-0.006638,0.008504,0.249855,0,0);-webkit-transform:matrix(0.195047,-0.006638,0.008504,0.249855,0,0);}
.maee_c00001{transform:matrix(0.195051,-0.007615,0.009752,0.249810,0,0);-ms-transform:matrix(0.195051,-0.007615,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195051,-0.007615,0.009752,0.249810,0,0);}
.m2f4_c00001{transform:matrix(0.195059,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195059,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195059,-0.002536,0.003250,0.249979,0,0);}
.mcb4_c00001{transform:matrix(0.195073,-0.005657,0.007247,0.249895,0,0);-ms-transform:matrix(0.195073,-0.005657,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195073,-0.005657,0.007247,0.249895,0,0);}
.m1796_c00001{transform:matrix(0.195084,-0.005072,0.006498,0.249916,0,0);-ms-transform:matrix(0.195084,-0.005072,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195084,-0.005072,0.006498,0.249916,0,0);}
.m1325_c00001{transform:matrix(0.195088,0.005658,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195088,0.005658,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195088,0.005658,-0.007247,0.249895,0,0);}
.ma51_c00001{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.m22b4_c00001{transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195100,0.003122,-0.003999,0.249968,0,0);}
.m6a4_c00001{transform:matrix(0.195101,-0.008007,0.010252,0.249790,0,0);-ms-transform:matrix(0.195101,-0.008007,0.010252,0.249790,0,0);-webkit-transform:matrix(0.195101,-0.008007,0.010252,0.249790,0,0);}
.mc3b_c00001{transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195105,0.000000,0.000000,0.250000,0,0);}
.m1874_c00001{transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195110,0.000000,0.000000,0.250000,0,0);}
.m2317_c00001{transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195128,0.003512,-0.004499,0.249960,0,0);}
.m2025_c00001{transform:matrix(0.195131,-0.006049,0.007746,0.249880,0,0);-ms-transform:matrix(0.195131,-0.006049,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195131,-0.006049,0.007746,0.249880,0,0);}
.mbb1_c00001{transform:matrix(0.195143,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195143,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195143,0.002147,-0.002750,0.249985,0,0);}
.m20f2_c00001{transform:matrix(0.195149,0.004879,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195149,0.004879,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195149,0.004879,-0.006248,0.249922,0,0);}
.m4e1_c00001{transform:matrix(0.195153,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195153,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195153,0.002147,-0.002750,0.249985,0,0);}
.m1f6b_c00001{transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195155,0.000000,0.000000,0.250000,0,0);}
.m2957_c00001{transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195166,-0.002342,0.003000,0.249982,0,0);}
.m20_c00001{transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195170,0.000000,0.000000,0.250000,0,0);}
.m17e0_c00001{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m1764_c00001{transform:matrix(0.195179,-0.005075,0.006498,0.249916,0,0);-ms-transform:matrix(0.195179,-0.005075,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195179,-0.005075,0.006498,0.249916,0,0);}
.m2bf_c00001{transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195190,0.000000,0.000000,0.250000,0,0);}
.m218b_c00001{transform:matrix(0.195198,0.005466,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195198,0.005466,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195198,0.005466,-0.006997,0.249902,0,0);}
.m13a5_c00001{transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);-ms-transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195199,-0.005075,0.006498,0.249916,0,0);}
.m293_c00001{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.m95d_c00001{transform:matrix(0.195224,-0.007426,0.009503,0.249819,0,0);-ms-transform:matrix(0.195224,-0.007426,0.009503,0.249819,0,0);-webkit-transform:matrix(0.195224,-0.007426,0.009503,0.249819,0,0);}
.meb8_c00001{transform:matrix(0.195231,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195231,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195231,0.002733,-0.003500,0.249976,0,0);}
.m268a_c00001{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m2012_c00001{transform:matrix(0.195261,-0.006053,0.007746,0.249880,0,0);-ms-transform:matrix(0.195261,-0.006053,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195261,-0.006053,0.007746,0.249880,0,0);}
.m284a_c00001{transform:matrix(0.195264,-0.002538,0.003250,0.249979,0,0);-ms-transform:matrix(0.195264,-0.002538,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195264,-0.002538,0.003250,0.249979,0,0);}
.mfd2_c00001{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m16ef_c00001{transform:matrix(0.195274,-0.005077,0.006498,0.249916,0,0);-ms-transform:matrix(0.195274,-0.005077,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195274,-0.005077,0.006498,0.249916,0,0);}
.m2537_c00001{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.m1c74_c00001{transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195280,0.000000,0.000000,0.250000,0,0);}
.m1ebb_c00001{transform:matrix(0.195289,-0.005078,0.006498,0.249916,0,0);-ms-transform:matrix(0.195289,-0.005078,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195289,-0.005078,0.006498,0.249916,0,0);}
.m1dc8_c00001{transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);}
.m26b6_c00001{transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);}
.m9b7_c00001{transform:matrix(0.195309,-0.007429,0.009503,0.249819,0,0);-ms-transform:matrix(0.195309,-0.007429,0.009503,0.249819,0,0);-webkit-transform:matrix(0.195309,-0.007429,0.009503,0.249819,0,0);}
.m25a9_c00001{transform:matrix(0.195328,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195328,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195328,-0.002149,0.002750,0.249985,0,0);}
.m2967_c00001{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.mc0b_c00001{transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195355,0.000000,0.000000,0.250000,0,0);}
.mf0a_c00001{transform:matrix(0.195358,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195358,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195358,0.002540,-0.003250,0.249979,0,0);}
.mfc4_c00001{transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195360,0.000000,0.000000,0.250000,0,0);}
.m5df_c00001{transform:matrix(0.195367,-0.008800,0.011250,0.249747,0,0);-ms-transform:matrix(0.195367,-0.008800,0.011250,0.249747,0,0);-webkit-transform:matrix(0.195367,-0.008800,0.011250,0.249747,0,0);}
.m2da_c00001{transform:matrix(0.195368,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195368,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195368,-0.002149,0.002750,0.249985,0,0);}
.m112a_c00001{transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195370,0.000000,0.000000,0.250000,0,0);}
.m2150_c00001{transform:matrix(0.195373,0.005470,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195373,0.005470,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195373,0.005470,-0.006997,0.249902,0,0);}
.m2434_c00001{transform:matrix(0.195383,-0.004298,0.005499,0.249940,0,0);-ms-transform:matrix(0.195383,-0.004298,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195383,-0.004298,0.005499,0.249940,0,0);}
.m131f_c00001{transform:matrix(0.195384,0.005080,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195384,0.005080,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195384,0.005080,-0.006498,0.249916,0,0);}
.m252f_c00001{transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195395,0.000000,0.000000,0.250000,0,0);}
.m153d_c00001{transform:matrix(0.195408,0.006455,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195408,0.006455,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195408,0.006455,-0.008254,0.249864,0,0);}
.m29a6_c00001{transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195410,0.000000,0.000000,0.250000,0,0);}
.m270c_c00001{transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195415,0.000000,0.000000,0.250000,0,0);}
.m2113_c00001{transform:matrix(0.195418,0.005472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195418,0.005472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195418,0.005472,-0.006997,0.249902,0,0);}
.m8cd_c00001{transform:matrix(0.195424,-0.004690,0.005998,0.249928,0,0);-ms-transform:matrix(0.195424,-0.004690,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195424,-0.004690,0.005998,0.249928,0,0);}
.m105b_c00001{transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195430,0.000000,0.000000,0.250000,0,0);}
.med8_c00001{transform:matrix(0.195431,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195431,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195431,0.002736,-0.003500,0.249976,0,0);}
.m1f75_c00001{transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195435,0.000000,0.000000,0.250000,0,0);}
.m1a07_c00001{transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);}
.m17c3_c00001{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m17b9_c00001{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.m734_c00001{transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195470,0.000000,0.000000,0.250000,0,0);}
.mdcf_c00001{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m2807_c00001{transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195485,0.000000,0.000000,0.250000,0,0);}
.md88_c00001{transform:matrix(0.195491,0.002346,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195491,0.002346,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195491,0.002346,-0.003000,0.249982,0,0);}
.m1602_c00001{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me66_c00001{transform:matrix(0.195503,0.003519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195503,0.003519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195503,0.003519,-0.004499,0.249960,0,0);}
.mbb0_c00001{transform:matrix(0.195508,0.002933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195508,0.002933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195508,0.002933,-0.003750,0.249972,0,0);}
.m227b_c00001{transform:matrix(0.195508,-0.004497,0.005748,0.249934,0,0);-ms-transform:matrix(0.195508,-0.004497,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195508,-0.004497,0.005748,0.249934,0,0);}
.mc4c_c00001{transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);}
.m11b4_c00001{transform:matrix(0.195523,-0.004301,0.005499,0.249940,0,0);-ms-transform:matrix(0.195523,-0.004301,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195523,-0.004301,0.005499,0.249940,0,0);}
.m2260_c00001{transform:matrix(0.195524,-0.004693,0.005998,0.249928,0,0);-ms-transform:matrix(0.195524,-0.004693,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195524,-0.004693,0.005998,0.249928,0,0);}
.m1a93_c00001{transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195540,0.000000,0.000000,0.250000,0,0);}
.me03_c00001{transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195555,0.000000,0.000000,0.250000,0,0);}
.m411_c00001{transform:matrix(0.195557,-0.004107,0.005249,0.249945,0,0);-ms-transform:matrix(0.195557,-0.004107,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195557,-0.004107,0.005249,0.249945,0,0);}
.mdc9_c00001{transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195560,0.000000,0.000000,0.250000,0,0);}
.m45c_c00001{transform:matrix(0.195563,-0.006460,0.008254,0.249864,0,0);-ms-transform:matrix(0.195563,-0.006460,0.008254,0.249864,0,0);-webkit-transform:matrix(0.195563,-0.006460,0.008254,0.249864,0,0);}
.m2869_c00001{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m1564_c00001{transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195570,0.000000,0.000000,0.250000,0,0);}
.m15e5_c00001{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.ma8b_c00001{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.m2069_c00001{transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);-ms-transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195616,-0.006064,0.007746,0.249880,0,0);}
.m250c_c00001{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.md49_c00001{transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);-ms-transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);-webkit-transform:matrix(0.195628,-0.005673,0.007247,0.249895,0,0);}
.m24cf_c00001{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.m217a_c00001{transform:matrix(0.195633,0.005478,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195633,0.005478,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195633,0.005478,-0.006997,0.249902,0,0);}
.meae_c00001{transform:matrix(0.195641,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195641,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195641,0.002739,-0.003500,0.249976,0,0);}
.mef9_c00001{transform:matrix(0.195643,0.002543,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195643,0.002543,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195643,0.002543,-0.003250,0.249979,0,0);}
.mfdc_c00001{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.m286a_c00001{transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);}
.m25f0_c00001{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m1dd0_c00001{transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);}
.ma65_c00001{transform:matrix(0.195690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195690,0.000000,0.000000,0.250000,0,0);}
.mf88_c00001{transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195695,0.000000,0.000000,0.250000,0,0);}
.mb4a_c00001{transform:matrix(0.195696,-0.007640,0.009752,0.249810,0,0);-ms-transform:matrix(0.195696,-0.007640,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195696,-0.007640,0.009752,0.249810,0,0);}
.m28ba_c00001{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m10ab_c00001{transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195710,0.000000,0.000000,0.250000,0,0);}
.m5c0_c00001{transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195715,0.000000,0.000000,0.250000,0,0);}
.m6b8_c00001{transform:matrix(0.195719,0.004893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195719,0.004893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195719,0.004893,-0.006248,0.249922,0,0);}
.m14b7_c00001{transform:matrix(0.195723,0.006465,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195723,0.006465,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195723,0.006465,-0.008254,0.249864,0,0);}
.m1edd_c00001{transform:matrix(0.195724,-0.005089,0.006498,0.249916,0,0);-ms-transform:matrix(0.195724,-0.005089,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195724,-0.005089,0.006498,0.249916,0,0);}
.mf79_c00001{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m24d2_c00001{transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195730,0.000000,0.000000,0.250000,0,0);}
.m1b60_c00001{transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);-ms-transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195735,-0.003719,0.004749,0.249955,0,0);}
.m1cdb_c00001{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m391_c00001{transform:matrix(0.195758,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195758,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195758,-0.002545,0.003250,0.249979,0,0);}
.m14c5_c00001{transform:matrix(0.195763,0.006467,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195763,0.006467,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195763,0.006467,-0.008254,0.249864,0,0);}
.m1d56_c00001{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m225d_c00001{transform:matrix(0.195784,-0.004699,0.005998,0.249928,0,0);-ms-transform:matrix(0.195784,-0.004699,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195784,-0.004699,0.005998,0.249928,0,0);}
.m1c88_c00001{transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195790,0.000000,0.000000,0.250000,0,0);}
.m4d9_c00001{transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);}
.m6da_c00001{transform:matrix(0.195804,0.004895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195804,0.004895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195804,0.004895,-0.006248,0.249922,0,0);}
.m21e0_c00001{transform:matrix(0.195814,-0.004700,0.005998,0.249928,0,0);-ms-transform:matrix(0.195814,-0.004700,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195814,-0.004700,0.005998,0.249928,0,0);}
.m261f_c00001{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.m1bea_c00001{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m2023_c00001{transform:matrix(0.195836,-0.006071,0.007746,0.249880,0,0);-ms-transform:matrix(0.195836,-0.006071,0.007746,0.249880,0,0);-webkit-transform:matrix(0.195836,-0.006071,0.007746,0.249880,0,0);}
.m1350_c00001{transform:matrix(0.195848,0.005680,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195848,0.005680,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195848,0.005680,-0.007247,0.249895,0,0);}
.m680_c00001{transform:matrix(0.195855,-0.008038,0.010252,0.249790,0,0);-ms-transform:matrix(0.195855,-0.008038,0.010252,0.249790,0,0);-webkit-transform:matrix(0.195855,-0.008038,0.010252,0.249790,0,0);}
.m48_c00001{transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195865,0.000000,0.000000,0.250000,0,0);}
.m1b46_c00001{transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195870,0.000000,0.000000,0.250000,0,0);}
.m1be9_c00001{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.m268b_c00001{transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195885,0.000000,0.000000,0.250000,0,0);}
.m21e7_c00001{transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195891,-0.003918,0.004999,0.249950,0,0);}
.m21fe_c00001{transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);-ms-transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195895,-0.003722,0.004749,0.249955,0,0);}
.m2210_c00001{transform:matrix(0.195898,-0.004310,0.005499,0.249940,0,0);-ms-transform:matrix(0.195898,-0.004310,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195898,-0.004310,0.005499,0.249940,0,0);}
.m199a_c00001{transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);}
.m17d3_c00001{transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195910,0.000000,0.000000,0.250000,0,0);}
.m134c_c00001{transform:matrix(0.195923,0.005682,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195923,0.005682,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195923,0.005682,-0.007247,0.249895,0,0);}
.m1c08_c00001{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.mae9_c00001{transform:matrix(0.195951,-0.007650,0.009752,0.249810,0,0);-ms-transform:matrix(0.195951,-0.007650,0.009752,0.249810,0,0);-webkit-transform:matrix(0.195951,-0.007650,0.009752,0.249810,0,0);}
.m20cb_c00001{transform:matrix(0.195954,0.004899,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195954,0.004899,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195954,0.004899,-0.006248,0.249922,0,0);}
.m2d7_c00001{transform:matrix(0.195958,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.195958,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195958,-0.002156,0.002750,0.249985,0,0);}
.m1db7_c00001{transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195965,0.000000,0.000000,0.250000,0,0);}
.m1d4a_c00001{transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195990,0.000000,0.000000,0.250000,0,0);}
.m27b4_c00001{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m789_c00001{transform:matrix(0.196013,0.004508,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196013,0.004508,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196013,0.004508,-0.005748,0.249934,0,0);}
.m57e_c00001{transform:matrix(0.196023,0.002156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196023,0.002156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196023,0.002156,-0.002750,0.249985,0,0);}
.m1d72_c00001{transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196040,0.000000,0.000000,0.250000,0,0);}
.m512_c00001{transform:matrix(0.196043,0.002156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196043,0.002156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196043,0.002156,-0.002750,0.249985,0,0);}
.m1fc8_c00001{transform:matrix(0.196044,-0.004901,0.006248,0.249922,0,0);-ms-transform:matrix(0.196044,-0.004901,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196044,-0.004901,0.006248,0.249922,0,0);}
.m1cce_c00001{transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);}
.m66d_c00001{transform:matrix(0.196075,-0.008047,0.010252,0.249790,0,0);-ms-transform:matrix(0.196075,-0.008047,0.010252,0.249790,0,0);-webkit-transform:matrix(0.196075,-0.008047,0.010252,0.249790,0,0);}
.m1b49_c00001{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.m2590_c00001{transform:matrix(0.196078,-0.002941,0.003750,0.249972,0,0);-ms-transform:matrix(0.196078,-0.002941,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196078,-0.002941,0.003750,0.249972,0,0);}
.mc90_c00001{transform:matrix(0.196083,-0.005686,0.007247,0.249895,0,0);-ms-transform:matrix(0.196083,-0.005686,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196083,-0.005686,0.007247,0.249895,0,0);}
.m15b3_c00001{transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196095,0.000000,0.000000,0.250000,0,0);}
.m337_c00001{transform:matrix(0.196098,-0.002549,0.003250,0.249979,0,0);-ms-transform:matrix(0.196098,-0.002549,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196098,-0.002549,0.003250,0.249979,0,0);}
.m1ff5_c00001{transform:matrix(0.196104,-0.004903,0.006248,0.249922,0,0);-ms-transform:matrix(0.196104,-0.004903,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196104,-0.004903,0.006248,0.249922,0,0);}
.m15c6_c00001{transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196130,0.000000,0.000000,0.250000,0,0);}
.m24fa_c00001{transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196140,0.000000,0.000000,0.250000,0,0);}
.m7bf_c00001{transform:matrix(0.196143,-0.005492,0.006997,0.249902,0,0);-ms-transform:matrix(0.196143,-0.005492,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196143,-0.005492,0.006997,0.249902,0,0);}
.m2371_c00001{transform:matrix(0.196143,0.003531,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196143,0.003531,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196143,0.003531,-0.004499,0.249960,0,0);}
.m1f32_c00001{transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196145,0.000000,0.000000,0.250000,0,0);}
.m282b_c00001{transform:matrix(0.196148,-0.002550,0.003250,0.249979,0,0);-ms-transform:matrix(0.196148,-0.002550,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196148,-0.002550,0.003250,0.249979,0,0);}
.m97_c00001{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.ma2d_c00001{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m1ce0_c00001{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m1866_c00001{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m131b_c00001{transform:matrix(0.196194,0.005101,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196194,0.005101,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196194,0.005101,-0.006498,0.249916,0,0);}
.m26eb_c00001{transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196195,0.000000,0.000000,0.250000,0,0);}
.m129e_c00001{transform:matrix(0.196203,0.004316,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196203,0.004316,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196203,0.004316,-0.005499,0.249940,0,0);}
.m748_c00001{transform:matrix(0.196203,0.005494,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196203,0.005494,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196203,0.005494,-0.006997,0.249902,0,0);}
.m187d_c00001{transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196205,0.000000,0.000000,0.250000,0,0);}
.m1c32_c00001{transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196210,0.000000,0.000000,0.250000,0,0);}
.m295c_c00001{transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);-ms-transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196211,-0.002747,0.003500,0.249976,0,0);}
.m20dc_c00001{transform:matrix(0.196219,0.004905,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196219,0.004905,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196219,0.004905,-0.006248,0.249922,0,0);}
.m10ed_c00001{transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196230,0.000000,0.000000,0.250000,0,0);}
.m2038_c00001{transform:matrix(0.196241,-0.006083,0.007746,0.249880,0,0);-ms-transform:matrix(0.196241,-0.006083,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196241,-0.006083,0.007746,0.249880,0,0);}
.m923_c00001{transform:matrix(0.196243,-0.007465,0.009503,0.249819,0,0);-ms-transform:matrix(0.196243,-0.007465,0.009503,0.249819,0,0);-webkit-transform:matrix(0.196243,-0.007465,0.009503,0.249819,0,0);}
.m298f_c00001{transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);-ms-transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196260,-0.003140,0.003999,0.249968,0,0);}
.m251_c00001{transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196260,0.000000,0.000000,0.250000,0,0);}
.m15a8_c00001{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.m11c7_c00001{transform:matrix(0.196273,-0.004318,0.005499,0.249940,0,0);-ms-transform:matrix(0.196273,-0.004318,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196273,-0.004318,0.005499,0.249940,0,0);}
.m1530_c00001{transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);}
.ma62_c00001{transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196280,0.000000,0.000000,0.250000,0,0);}
.mf4f_c00001{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m1cf9_c00001{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m2e7_c00001{transform:matrix(0.196308,-0.002552,0.003250,0.249979,0,0);-ms-transform:matrix(0.196308,-0.002552,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196308,-0.002552,0.003250,0.249979,0,0);}
.m113a_c00001{transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196320,0.000000,0.000000,0.250000,0,0);}
.m190e_c00001{transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196340,0.000000,0.000000,0.250000,0,0);}
.m6ee_c00001{transform:matrix(0.196349,0.004909,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196349,0.004909,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196349,0.004909,-0.006248,0.249922,0,0);}
.m5db_c00001{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m17fc_c00001{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.mec_c00001{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.m2234_c00001{transform:matrix(0.196372,-0.004124,0.005249,0.249945,0,0);-ms-transform:matrix(0.196372,-0.004124,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196372,-0.004124,0.005249,0.249945,0,0);}
.m14d0_c00001{transform:matrix(0.196373,0.006487,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196373,0.006487,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196373,0.006487,-0.008254,0.249864,0,0);}
.m25da_c00001{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.m14ea_c00001{transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196383,0.006487,-0.008254,0.249864,0,0);}
.m38e_c00001{transform:matrix(0.196383,-0.002553,0.003250,0.249979,0,0);-ms-transform:matrix(0.196383,-0.002553,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196383,-0.002553,0.003250,0.249979,0,0);}
.m117d_c00001{transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196390,0.000000,0.000000,0.250000,0,0);}
.m16db_c00001{transform:matrix(0.196391,-0.006684,0.008504,0.249855,0,0);-ms-transform:matrix(0.196391,-0.006684,0.008504,0.249855,0,0);-webkit-transform:matrix(0.196391,-0.006684,0.008504,0.249855,0,0);}
.m419_c00001{transform:matrix(0.196397,-0.004124,0.005249,0.249945,0,0);-ms-transform:matrix(0.196397,-0.004124,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196397,-0.004124,0.005249,0.249945,0,0);}
.m1364_c00001{transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196397,0.005696,-0.007247,0.249895,0,0);}
.m10b0_c00001{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.mc28_c00001{transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196405,0.000000,0.000000,0.250000,0,0);}
.m1430_c00001{transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);-ms-transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196414,-0.005107,0.006498,0.249916,0,0);}
.m6e3_c00001{transform:matrix(0.196419,0.004910,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196419,0.004910,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196419,0.004910,-0.006248,0.249922,0,0);}
.mc2b_c00001{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m1208_c00001{transform:matrix(0.196432,-0.004322,0.005499,0.249940,0,0);-ms-transform:matrix(0.196432,-0.004322,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196432,-0.004322,0.005499,0.249940,0,0);}
.m18ab_c00001{transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);}
.m108c_c00001{transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196445,0.000000,0.000000,0.250000,0,0);}
.m816_c00001{transform:matrix(0.196453,-0.005501,0.006997,0.249902,0,0);-ms-transform:matrix(0.196453,-0.005501,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196453,-0.005501,0.006997,0.249902,0,0);}
.m25d9_c00001{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.m13a7_c00001{transform:matrix(0.196474,-0.005108,0.006498,0.249916,0,0);-ms-transform:matrix(0.196474,-0.005108,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196474,-0.005108,0.006498,0.249916,0,0);}
.m179_c00001{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m722_c00001{transform:matrix(0.196479,0.004912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196479,0.004912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196479,0.004912,-0.006248,0.249922,0,0);}
.m13e_c00001{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.me7e_c00001{transform:matrix(0.196481,0.002751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196481,0.002751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196481,0.002751,-0.003500,0.249976,0,0);}
.m17bf_c00001{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.m18a8_c00001{transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196505,0.000000,0.000000,0.250000,0,0);}
.m218e_c00001{transform:matrix(0.196513,0.005502,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196513,0.005502,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196513,0.005502,-0.006997,0.249902,0,0);}
.m1b07_c00001{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m1130_c00001{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m113d_c00001{transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196530,0.000000,0.000000,0.250000,0,0);}
.m1435_c00001{transform:matrix(0.196538,-0.005307,0.006748,0.249909,0,0);-ms-transform:matrix(0.196538,-0.005307,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196538,-0.005307,0.006748,0.249909,0,0);}
.m24ed_c00001{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00001{transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);-ms-transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196560,-0.003145,0.003999,0.249968,0,0);}
.m1c1f_c00001{transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196560,0.000000,0.000000,0.250000,0,0);}
.mef4_c00001{transform:matrix(0.196568,0.002555,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196568,0.002555,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196568,0.002555,-0.003250,0.249979,0,0);}
.m13a4_c00001{transform:matrix(0.196579,-0.005111,0.006498,0.249916,0,0);-ms-transform:matrix(0.196579,-0.005111,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196579,-0.005111,0.006498,0.249916,0,0);}
.ma0e_c00001{transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196590,0.000000,0.000000,0.250000,0,0);}
.m2433_c00001{transform:matrix(0.196592,-0.004325,0.005499,0.249940,0,0);-ms-transform:matrix(0.196592,-0.004325,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196592,-0.004325,0.005499,0.249940,0,0);}
.m19be_c00001{transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196620,0.000000,0.000000,0.250000,0,0);}
.mf08_c00001{transform:matrix(0.196628,0.002556,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196628,0.002556,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196628,0.002556,-0.003250,0.249979,0,0);}
.m216_c00001{transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196630,0.000000,0.000000,0.250000,0,0);}
.m1499_c00001{transform:matrix(0.196638,0.006496,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196638,0.006496,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196638,0.006496,-0.008254,0.249864,0,0);}
.m10e4_c00001{transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196645,0.000000,0.000000,0.250000,0,0);}
.m13b7_c00001{transform:matrix(0.196659,-0.005113,0.006498,0.249916,0,0);-ms-transform:matrix(0.196659,-0.005113,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196659,-0.005113,0.006498,0.249916,0,0);}
.m28ac_c00001{transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196660,0.000000,0.000000,0.250000,0,0);}
.m253c_c00001{transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196670,0.000000,0.000000,0.250000,0,0);}
.mea8_c00001{transform:matrix(0.196681,0.002754,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196681,0.002754,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196681,0.002754,-0.003500,0.249976,0,0);}
.md8a_c00001{transform:matrix(0.196681,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196681,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196681,0.002360,-0.003000,0.249982,0,0);}
.m15f5_c00001{transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196685,0.000000,0.000000,0.250000,0,0);}
.m2215_c00001{transform:matrix(0.196697,-0.004327,0.005499,0.249940,0,0);-ms-transform:matrix(0.196697,-0.004327,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196697,-0.004327,0.005499,0.249940,0,0);}
.m1a65_c00001{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.mdb8_c00001{transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196705,0.000000,0.000000,0.250000,0,0);}
.m1c9b_c00001{transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196720,0.000000,0.000000,0.250000,0,0);}
.m160f_c00001{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00001{transform:matrix(0.196735,-0.003148,0.003999,0.249968,0,0);-ms-transform:matrix(0.196735,-0.003148,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196735,-0.003148,0.003999,0.249968,0,0);}
.m1420_c00001{transform:matrix(0.196744,-0.005115,0.006498,0.249916,0,0);-ms-transform:matrix(0.196744,-0.005115,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196744,-0.005115,0.006498,0.249916,0,0);}
.m195c_c00001{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.m125f_c00001{transform:matrix(0.196758,-0.005312,0.006748,0.249909,0,0);-ms-transform:matrix(0.196758,-0.005312,0.006748,0.249909,0,0);-webkit-transform:matrix(0.196758,-0.005312,0.006748,0.249909,0,0);}
.m19fe_c00001{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m21a4_c00001{transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196772,0.004132,-0.005249,0.249945,0,0);}
.mc06_c00001{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m215b_c00001{transform:matrix(0.196813,0.005511,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196813,0.005511,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196813,0.005511,-0.006997,0.249902,0,0);}
.mb02_c00001{transform:matrix(0.196815,-0.007683,0.009752,0.249810,0,0);-ms-transform:matrix(0.196815,-0.007683,0.009752,0.249810,0,0);-webkit-transform:matrix(0.196815,-0.007683,0.009752,0.249810,0,0);}
.m53_c00001{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m2865_c00001{transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196835,0.000000,0.000000,0.250000,0,0);}
.m16bb_c00001{transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196840,0.000000,0.000000,0.250000,0,0);}
.m1808_c00001{transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196855,0.000000,0.000000,0.250000,0,0);}
.m175a_c00001{transform:matrix(0.196873,-0.005119,0.006498,0.249916,0,0);-ms-transform:matrix(0.196873,-0.005119,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196873,-0.005119,0.006498,0.249916,0,0);}
.m1df0_c00001{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.mb06_c00001{transform:matrix(0.196890,-0.007686,0.009752,0.249810,0,0);-ms-transform:matrix(0.196890,-0.007686,0.009752,0.249810,0,0);-webkit-transform:matrix(0.196890,-0.007686,0.009752,0.249810,0,0);}
.m1c2a_c00001{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m25a2_c00001{transform:matrix(0.196908,-0.002166,0.002750,0.249985,0,0);-ms-transform:matrix(0.196908,-0.002166,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196908,-0.002166,0.002750,0.249985,0,0);}
.m84e_c00001{transform:matrix(0.196913,-0.005514,0.006997,0.249902,0,0);-ms-transform:matrix(0.196913,-0.005514,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196913,-0.005514,0.006997,0.249902,0,0);}
.m23c1_c00001{transform:matrix(0.196917,-0.004332,0.005499,0.249940,0,0);-ms-transform:matrix(0.196917,-0.004332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196917,-0.004332,0.005499,0.249940,0,0);}
.m20dd_c00001{transform:matrix(0.196928,0.004923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196928,0.004923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196928,0.004923,-0.006248,0.249922,0,0);}
.m19ac_c00001{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.m1542_c00001{transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196935,0.000000,0.000000,0.250000,0,0);}
.m21be_c00001{transform:matrix(0.196938,-0.004530,0.005748,0.249934,0,0);-ms-transform:matrix(0.196938,-0.004530,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196938,-0.004530,0.005748,0.249934,0,0);}
.m3a3_c00001{transform:matrix(0.196948,-0.002560,0.003250,0.249979,0,0);-ms-transform:matrix(0.196948,-0.002560,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196948,-0.002560,0.003250,0.249979,0,0);}
.m2358_c00001{transform:matrix(0.196953,0.003545,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196953,0.003545,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196953,0.003545,-0.004499,0.249960,0,0);}
.m15f2_c00001{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.mcbe_c00001{transform:matrix(0.196977,-0.005712,0.007247,0.249895,0,0);-ms-transform:matrix(0.196977,-0.005712,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196977,-0.005712,0.007247,0.249895,0,0);}
.m1e63_c00001{transform:matrix(0.196978,-0.005121,0.006498,0.249916,0,0);-ms-transform:matrix(0.196978,-0.005121,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196978,-0.005121,0.006498,0.249916,0,0);}
.m1f69_c00001{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m1d01_c00001{transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196990,0.000000,0.000000,0.250000,0,0);}
.m147d_c00001{transform:matrix(0.196998,0.006507,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196998,0.006507,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196998,0.006507,-0.008254,0.249864,0,0);}
.mc9b_c00001{transform:matrix(0.197002,-0.005713,0.007247,0.249895,0,0);-ms-transform:matrix(0.197002,-0.005713,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197002,-0.005713,0.007247,0.249895,0,0);}
.m17d6_c00001{transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);}
.m176c_c00001{transform:matrix(0.197023,-0.005123,0.006498,0.249916,0,0);-ms-transform:matrix(0.197023,-0.005123,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197023,-0.005123,0.006498,0.249916,0,0);}
.m12a7_c00001{transform:matrix(0.197027,0.004335,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197027,0.004335,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197027,0.004335,-0.005499,0.249940,0,0);}
.mee9_c00001{transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197028,0.002561,-0.003250,0.249979,0,0);}
.mec6_c00001{transform:matrix(0.197036,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197036,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197036,0.002758,-0.003500,0.249976,0,0);}
.m79b_c00001{transform:matrix(0.197038,0.004532,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197038,0.004532,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197038,0.004532,-0.005748,0.249934,0,0);}
.m81f_c00001{transform:matrix(0.197048,-0.005517,0.006997,0.249902,0,0);-ms-transform:matrix(0.197048,-0.005517,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197048,-0.005517,0.006997,0.249902,0,0);}
.m126e_c00001{transform:matrix(0.197058,-0.005321,0.006748,0.249909,0,0);-ms-transform:matrix(0.197058,-0.005321,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197058,-0.005321,0.006748,0.249909,0,0);}
.m8d2_c00001{transform:matrix(0.197068,-0.004730,0.005998,0.249928,0,0);-ms-transform:matrix(0.197068,-0.004730,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197068,-0.004730,0.005998,0.249928,0,0);}
.mb12_c00001{transform:matrix(0.197075,-0.007694,0.009752,0.249810,0,0);-ms-transform:matrix(0.197075,-0.007694,0.009752,0.249810,0,0);-webkit-transform:matrix(0.197075,-0.007694,0.009752,0.249810,0,0);}
.mc57_c00001{transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197085,0.000000,0.000000,0.250000,0,0);}
.m6fd_c00001{transform:matrix(0.197103,0.004928,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197103,0.004928,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197103,0.004928,-0.006248,0.249922,0,0);}
.m1bcb_c00001{transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197105,0.000000,0.000000,0.250000,0,0);}
.m389_c00001{transform:matrix(0.197108,-0.002562,0.003250,0.249979,0,0);-ms-transform:matrix(0.197108,-0.002562,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197108,-0.002562,0.003250,0.249979,0,0);}
.m17fa_c00001{transform:matrix(0.197120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197120,0.000000,0.000000,0.250000,0,0);}
.m26a5_c00001{transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197135,0.000000,0.000000,0.250000,0,0);}
.m1878_c00001{transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197140,0.000000,0.000000,0.250000,0,0);}
.m1a5b_c00001{transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197145,0.000000,0.000000,0.250000,0,0);}
.m2122_c00001{transform:matrix(0.197148,0.005520,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197148,0.005520,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197148,0.005520,-0.006997,0.249902,0,0);}
.m1d1_c00001{transform:matrix(0.197155,-0.003154,0.003999,0.249968,0,0);-ms-transform:matrix(0.197155,-0.003154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197155,-0.003154,0.003999,0.249968,0,0);}
.m2188_c00001{transform:matrix(0.197158,0.005520,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197158,0.005520,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197158,0.005520,-0.006997,0.249902,0,0);}
.m19d9_c00001{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.m15c_c00001{transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197165,0.000000,0.000000,0.250000,0,0);}
.m11f6_c00001{transform:matrix(0.197177,-0.004338,0.005499,0.249940,0,0);-ms-transform:matrix(0.197177,-0.004338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197177,-0.004338,0.005499,0.249940,0,0);}
.m27b5_c00001{transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197180,0.000000,0.000000,0.250000,0,0);}
.m1c00_c00001{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.m47c_c00001{transform:matrix(0.197191,-0.005916,0.007497,0.249888,0,0);-ms-transform:matrix(0.197191,-0.005916,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197191,-0.005916,0.007497,0.249888,0,0);}
.m1b20_c00001{transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197195,0.000000,0.000000,0.250000,0,0);}
.m257d_c00001{transform:matrix(0.197198,-0.002564,0.003250,0.249979,0,0);-ms-transform:matrix(0.197198,-0.002564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197198,-0.002564,0.003250,0.249979,0,0);}
.me1a_c00001{transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197220,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00001{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.m1dcc_c00001{transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197240,0.000000,0.000000,0.250000,0,0);}
.me2a_c00001{transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197245,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00001{transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);-ms-transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197250,-0.003156,0.003999,0.249968,0,0);}
.m1665_c00001{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb7a_c00001{transform:matrix(0.197252,-0.006516,0.008254,0.249864,0,0);-ms-transform:matrix(0.197252,-0.006516,0.008254,0.249864,0,0);-webkit-transform:matrix(0.197252,-0.006516,0.008254,0.249864,0,0);}
.mf02_c00001{transform:matrix(0.197253,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197253,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197253,0.002564,-0.003250,0.249979,0,0);}
.m195a_c00001{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m240e_c00001{transform:matrix(0.197287,-0.004340,0.005499,0.249940,0,0);-ms-transform:matrix(0.197287,-0.004340,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197287,-0.004340,0.005499,0.249940,0,0);}
.m1f9c_c00001{transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197295,0.000000,0.000000,0.250000,0,0);}
.m892_c00001{transform:matrix(0.197299,-0.003749,0.004749,0.249955,0,0);-ms-transform:matrix(0.197299,-0.003749,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197299,-0.003749,0.004749,0.249955,0,0);}
.m1e09_c00001{transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197305,0.000000,0.000000,0.250000,0,0);}
.m5dc_c00001{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.me6f_c00001{transform:matrix(0.197316,0.002762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197316,0.002762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197316,0.002762,-0.003500,0.249976,0,0);}
.m1404_c00001{transform:matrix(0.197318,-0.005130,0.006498,0.249916,0,0);-ms-transform:matrix(0.197318,-0.005130,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197318,-0.005130,0.006498,0.249916,0,0);}
.mab3_c00001{transform:matrix(0.197320,-0.007703,0.009752,0.249810,0,0);-ms-transform:matrix(0.197320,-0.007703,0.009752,0.249810,0,0);-webkit-transform:matrix(0.197320,-0.007703,0.009752,0.249810,0,0);}
.m12aa_c00001{transform:matrix(0.197328,0.004539,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197328,0.004539,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197328,0.004539,-0.005748,0.249934,0,0);}
.m1870_c00001{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.m1948_c00001{transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197345,0.000000,0.000000,0.250000,0,0);}
.m221a_c00001{transform:matrix(0.197348,-0.004539,0.005748,0.249934,0,0);-ms-transform:matrix(0.197348,-0.004539,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197348,-0.004539,0.005748,0.249934,0,0);}
.m1fc2_c00001{transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);-ms-transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197348,-0.004934,0.006248,0.249922,0,0);}
.mc4b_c00001{transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197355,0.000000,0.000000,0.250000,0,0);}
.md31_c00001{transform:matrix(0.197357,-0.005723,0.007247,0.249895,0,0);-ms-transform:matrix(0.197357,-0.005723,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197357,-0.005723,0.007247,0.249895,0,0);}
.m1d74_c00001{transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197370,0.000000,0.000000,0.250000,0,0);}
.m287_c00001{transform:matrix(0.197373,-0.002171,0.002750,0.249985,0,0);-ms-transform:matrix(0.197373,-0.002171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197373,-0.002171,0.002750,0.249985,0,0);}
.m1b35_c00001{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m2074_c00001{transform:matrix(0.197375,-0.006119,0.007746,0.249880,0,0);-ms-transform:matrix(0.197375,-0.006119,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197375,-0.006119,0.007746,0.249880,0,0);}
.ma3c_c00001{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.m20ed_c00001{transform:matrix(0.197388,0.004935,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197388,0.004935,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197388,0.004935,-0.006248,0.249922,0,0);}
.mf1b_c00001{transform:matrix(0.197396,0.003948,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197396,0.003948,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197396,0.003948,-0.004999,0.249950,0,0);}
.m18ad_c00001{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m100e_c00001{transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197445,0.000000,0.000000,0.250000,0,0);}
.m1439_c00001{transform:matrix(0.197448,-0.005331,0.006748,0.249909,0,0);-ms-transform:matrix(0.197448,-0.005331,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197448,-0.005331,0.006748,0.249909,0,0);}
.m1370_c00001{transform:matrix(0.197462,0.005726,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197462,0.005726,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197462,0.005726,-0.007247,0.249895,0,0);}
.m584_c00001{transform:matrix(0.197473,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197473,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197473,0.002172,-0.002750,0.249985,0,0);}
.maa1_c00001{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.mce2_c00001{transform:matrix(0.197477,-0.005727,0.007247,0.249895,0,0);-ms-transform:matrix(0.197477,-0.005727,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197477,-0.005727,0.007247,0.249895,0,0);}
.m62b_c00001{transform:matrix(0.197477,-0.008500,0.010751,0.249769,0,0);-ms-transform:matrix(0.197477,-0.008500,0.010751,0.249769,0,0);-webkit-transform:matrix(0.197477,-0.008500,0.010751,0.249769,0,0);}
.m1c60_c00001{transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197480,0.000000,0.000000,0.250000,0,0);}
.m1223_c00001{transform:matrix(0.197483,-0.005332,0.006748,0.249909,0,0);-ms-transform:matrix(0.197483,-0.005332,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197483,-0.005332,0.006748,0.249909,0,0);}
.m1d69_c00001{transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197485,0.000000,0.000000,0.250000,0,0);}
.ma60_c00001{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.m21d0_c00001{transform:matrix(0.197508,-0.004543,0.005748,0.249934,0,0);-ms-transform:matrix(0.197508,-0.004543,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197508,-0.004543,0.005748,0.249934,0,0);}
.m8a0_c00001{transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);-ms-transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197509,-0.003753,0.004749,0.249955,0,0);}
.m25fa_c00001{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m45e_c00001{transform:matrix(0.197526,-0.006723,0.008504,0.249855,0,0);-ms-transform:matrix(0.197526,-0.006723,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197526,-0.006723,0.008504,0.249855,0,0);}
.m2535_c00001{transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197535,0.000000,0.000000,0.250000,0,0);}
.m27a6_c00001{transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197545,0.000000,0.000000,0.250000,0,0);}
.m241c_c00001{transform:matrix(0.197547,-0.004346,0.005499,0.249940,0,0);-ms-transform:matrix(0.197547,-0.004346,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197547,-0.004346,0.005499,0.249940,0,0);}
.mf7e_c00001{transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197555,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197560,0.000000,0.000000,0.250000,0,0);}
.md4_c00001{transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197565,0.000000,0.000000,0.250000,0,0);}
.mff0_c00001{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.m23aa_c00001{transform:matrix(0.197572,-0.004347,0.005499,0.249940,0,0);-ms-transform:matrix(0.197572,-0.004347,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197572,-0.004347,0.005499,0.249940,0,0);}
.mf70_c00001{transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197580,0.000000,0.000000,0.250000,0,0);}
.m29a2_c00001{transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197590,0.000000,0.000000,0.250000,0,0);}
.md84_c00001{transform:matrix(0.197593,0.002569,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197593,0.002569,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197593,0.002569,-0.003250,0.249979,0,0);}
.m4a0_c00001{transform:matrix(0.197609,-0.008110,0.010252,0.249790,0,0);-ms-transform:matrix(0.197609,-0.008110,0.010252,0.249790,0,0);-webkit-transform:matrix(0.197609,-0.008110,0.010252,0.249790,0,0);}
.m323_c00001{transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);}
.mc10_c00001{transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197620,0.000000,0.000000,0.250000,0,0);}
.m28f4_c00001{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.mccd_c00001{transform:matrix(0.197627,-0.005731,0.007247,0.249895,0,0);-ms-transform:matrix(0.197627,-0.005731,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197627,-0.005731,0.007247,0.249895,0,0);}
.m1916_c00001{transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197635,0.000000,0.000000,0.250000,0,0);}
.m1be4_c00001{transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);}
.mcd9_c00001{transform:matrix(0.197652,-0.005732,0.007247,0.249895,0,0);-ms-transform:matrix(0.197652,-0.005732,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197652,-0.005732,0.007247,0.249895,0,0);}
.m273d_c00001{transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197655,0.000000,0.000000,0.250000,0,0);}
.m15bf_c00001{transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197665,0.000000,0.000000,0.250000,0,0);}
.m21bd_c00001{transform:matrix(0.197673,-0.004546,0.005748,0.249934,0,0);-ms-transform:matrix(0.197673,-0.004546,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197673,-0.004546,0.005748,0.249934,0,0);}
.m246a_c00001{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.md97_c00001{transform:matrix(0.197696,0.002372,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197696,0.002372,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197696,0.002372,-0.003000,0.249982,0,0);}
.m19a9_c00001{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m110c_c00001{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m243b_c00001{transform:matrix(0.197722,-0.004350,0.005499,0.249940,0,0);-ms-transform:matrix(0.197722,-0.004350,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197722,-0.004350,0.005499,0.249940,0,0);}
.m272c_c00001{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m2248_c00001{transform:matrix(0.197731,-0.004152,0.005249,0.249945,0,0);-ms-transform:matrix(0.197731,-0.004152,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197731,-0.004152,0.005249,0.249945,0,0);}
.m1ded_c00001{transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197735,0.000000,0.000000,0.250000,0,0);}
.m504_c00001{transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197738,0.002175,-0.002750,0.249985,0,0);}
.m16c3_c00001{transform:matrix(0.197746,-0.006730,0.008504,0.249855,0,0);-ms-transform:matrix(0.197746,-0.006730,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197746,-0.006730,0.008504,0.249855,0,0);}
.m1a5f_c00001{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m202a_c00001{transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);-ms-transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);-webkit-transform:matrix(0.197760,-0.006131,0.007746,0.249880,0,0);}
.m7b2_c00001{transform:matrix(0.197762,-0.005537,0.006997,0.249902,0,0);-ms-transform:matrix(0.197762,-0.005537,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197762,-0.005537,0.006997,0.249902,0,0);}
.mbda_c00001{transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197763,0.002175,-0.002750,0.249985,0,0);}
.m18d6_c00001{transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197765,0.000000,0.000000,0.250000,0,0);}
.md2_c00001{transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197770,0.000000,0.000000,0.250000,0,0);}
.m5ab_c00001{transform:matrix(0.197778,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197778,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197778,0.002176,-0.002750,0.249985,0,0);}
.m147b_c00001{transform:matrix(0.197782,0.006533,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197782,0.006533,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197782,0.006533,-0.008254,0.249864,0,0);}
.m18fa_c00001{transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);}
.m2945_c00001{transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197790,0.000000,0.000000,0.250000,0,0);}
.m6f9_c00001{transform:matrix(0.197793,0.004945,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197793,0.004945,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197793,0.004945,-0.006248,0.249922,0,0);}
.m295f_c00001{transform:matrix(0.197801,-0.002769,0.003500,0.249976,0,0);-ms-transform:matrix(0.197801,-0.002769,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197801,-0.002769,0.003500,0.249976,0,0);}
.m1bf5_c00001{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m1099_c00001{transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);}
.m1f91_c00001{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00001{transform:matrix(0.197863,-0.002968,0.003750,0.249972,0,0);-ms-transform:matrix(0.197863,-0.002968,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197863,-0.002968,0.003750,0.249972,0,0);}
.m14f1_c00001{transform:matrix(0.197867,0.006536,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197867,0.006536,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197867,0.006536,-0.008254,0.249864,0,0);}
.m842_c00001{transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);-ms-transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197867,-0.005540,0.006997,0.249902,0,0);}
.m1905_c00001{transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197870,0.000000,0.000000,0.250000,0,0);}
.m56d_c00001{transform:matrix(0.197873,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197873,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197873,0.002177,-0.002750,0.249985,0,0);}
.m1cc_c00001{transform:matrix(0.197895,-0.003166,0.003999,0.249968,0,0);-ms-transform:matrix(0.197895,-0.003166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197895,-0.003166,0.003999,0.249968,0,0);}
.m11d_c00001{transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);}
.mba5_c00001{transform:matrix(0.197926,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197926,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197926,0.002375,-0.003000,0.249982,0,0);}
.m39b_c00001{transform:matrix(0.197928,-0.002573,0.003250,0.249979,0,0);-ms-transform:matrix(0.197928,-0.002573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197928,-0.002573,0.003250,0.249979,0,0);}
.md8e_c00001{transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);}
.m5b_c00001{transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197940,0.000000,0.000000,0.250000,0,0);}
.m1431_c00001{transform:matrix(0.197948,-0.005147,0.006498,0.249916,0,0);-ms-transform:matrix(0.197948,-0.005147,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197948,-0.005147,0.006498,0.249916,0,0);}
.m24e0_c00001{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.mdfc_c00001{transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197965,0.000000,0.000000,0.250000,0,0);}
.m76a_c00001{transform:matrix(0.197967,0.005543,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197967,0.005543,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197967,0.005543,-0.006997,0.249902,0,0);}
.m226c_c00001{transform:matrix(0.197968,-0.003563,0.004499,0.249960,0,0);-ms-transform:matrix(0.197968,-0.003563,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197968,-0.003563,0.004499,0.249960,0,0);}
.m1621_c00001{transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197970,0.000000,0.000000,0.250000,0,0);}
.m1a38_c00001{transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197980,0.000000,0.000000,0.250000,0,0);}
.m79c_c00001{transform:matrix(0.198018,0.004554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198018,0.004554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198018,0.004554,-0.005748,0.249934,0,0);}
.m1516_c00001{transform:matrix(0.198022,0.006541,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198022,0.006541,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198022,0.006541,-0.008254,0.249864,0,0);}
.m19dc_c00001{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m1bce_c00001{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m22fd_c00001{transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198053,0.003565,-0.004499,0.249960,0,0);}
.m1b96_c00001{transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198055,0.000000,0.000000,0.250000,0,0);}
.m642_c00001{transform:matrix(0.198055,-0.006741,0.008504,0.249855,0,0);-ms-transform:matrix(0.198055,-0.006741,0.008504,0.249855,0,0);-webkit-transform:matrix(0.198055,-0.006741,0.008504,0.249855,0,0);}
.m2515_c00001{transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);}
.m1992_c00001{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.m1fe2_c00001{transform:matrix(0.198078,-0.004952,0.006248,0.249922,0,0);-ms-transform:matrix(0.198078,-0.004952,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198078,-0.004952,0.006248,0.249922,0,0);}
.m24d5_c00001{transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198085,0.000000,0.000000,0.250000,0,0);}
.m2598_c00001{transform:matrix(0.198088,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198088,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198088,-0.002179,0.002750,0.249985,0,0);}
.m2788_c00001{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m1b65_c00001{transform:matrix(0.198104,-0.003764,0.004749,0.249955,0,0);-ms-transform:matrix(0.198104,-0.003764,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198104,-0.003764,0.004749,0.249955,0,0);}
.m1463_c00001{transform:matrix(0.198112,0.007536,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198112,0.007536,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198112,0.007536,-0.009503,0.249819,0,0);}
.m291f_c00001{transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);}
.m11bb_c00001{transform:matrix(0.198122,-0.004359,0.005499,0.249940,0,0);-ms-transform:matrix(0.198122,-0.004359,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198122,-0.004359,0.005499,0.249940,0,0);}
.m294e_c00001{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m1409_c00001{transform:matrix(0.198143,-0.005152,0.006498,0.249916,0,0);-ms-transform:matrix(0.198143,-0.005152,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198143,-0.005152,0.006498,0.249916,0,0);}
.m1ffe_c00001{transform:matrix(0.198143,-0.004954,0.006248,0.249922,0,0);-ms-transform:matrix(0.198143,-0.004954,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198143,-0.004954,0.006248,0.249922,0,0);}
.m236d_c00001{transform:matrix(0.198148,0.003567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198148,0.003567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198148,0.003567,-0.004499,0.249960,0,0);}
.m1a57_c00001{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m138a_c00001{transform:matrix(0.198168,-0.005152,0.006498,0.249916,0,0);-ms-transform:matrix(0.198168,-0.005152,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198168,-0.005152,0.006498,0.249916,0,0);}
.m1aba_c00001{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m28fc_c00001{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.mc85_c00001{transform:matrix(0.198182,-0.005747,0.007247,0.249895,0,0);-ms-transform:matrix(0.198182,-0.005747,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198182,-0.005747,0.007247,0.249895,0,0);}
.m5eb_c00001{transform:matrix(0.198185,-0.008332,0.010501,0.249779,0,0);-ms-transform:matrix(0.198185,-0.008332,0.010501,0.249779,0,0);-webkit-transform:matrix(0.198185,-0.008332,0.010501,0.249779,0,0);}
.m1622_c00001{transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198185,0.000000,0.000000,0.250000,0,0);}
.me17_c00001{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m2108_c00001{transform:matrix(0.198197,0.005550,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198197,0.005550,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198197,0.005550,-0.006997,0.249902,0,0);}
.m1b45_c00001{transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);}
.m23cd_c00001{transform:matrix(0.198202,-0.004360,0.005499,0.249940,0,0);-ms-transform:matrix(0.198202,-0.004360,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198202,-0.004360,0.005499,0.249940,0,0);}
.m22f8_c00001{transform:matrix(0.198213,0.003568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198213,0.003568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198213,0.003568,-0.004499,0.249960,0,0);}
.me99_c00001{transform:matrix(0.198216,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198216,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198216,0.002775,-0.003500,0.249976,0,0);}
.m540_c00001{transform:matrix(0.198228,0.002181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198228,0.002181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198228,0.002181,-0.002750,0.249985,0,0);}
.m14e5_c00001{transform:matrix(0.198247,0.006549,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198247,0.006549,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198247,0.006549,-0.008254,0.249864,0,0);}
.m1def_c00001{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m89f_c00001{transform:matrix(0.198259,-0.003767,0.004749,0.249955,0,0);-ms-transform:matrix(0.198259,-0.003767,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198259,-0.003767,0.004749,0.249955,0,0);}
.m2420_c00001{transform:matrix(0.198272,-0.004362,0.005499,0.249940,0,0);-ms-transform:matrix(0.198272,-0.004362,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198272,-0.004362,0.005499,0.249940,0,0);}
.m15d9_c00001{transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198280,0.000000,0.000000,0.250000,0,0);}
.m1259_c00001{transform:matrix(0.198283,-0.005354,0.006748,0.249909,0,0);-ms-transform:matrix(0.198283,-0.005354,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198283,-0.005354,0.006748,0.249909,0,0);}
.m1153_c00001{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m1ae3_c00001{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m795_c00001{transform:matrix(0.198323,0.004561,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198323,0.004561,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198323,0.004561,-0.005748,0.249934,0,0);}
.m1d73_c00001{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m24fb_c00001{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.m29e_c00001{transform:matrix(0.198336,-0.002380,0.003000,0.249982,0,0);-ms-transform:matrix(0.198336,-0.002380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198336,-0.002380,0.003000,0.249982,0,0);}
.m2827_c00001{transform:matrix(0.198338,-0.002578,0.003250,0.249979,0,0);-ms-transform:matrix(0.198338,-0.002578,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198338,-0.002578,0.003250,0.249979,0,0);}
.m2029_c00001{transform:matrix(0.198340,-0.006149,0.007746,0.249880,0,0);-ms-transform:matrix(0.198340,-0.006149,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198340,-0.006149,0.007746,0.249880,0,0);}
.m7e6_c00001{transform:matrix(0.198342,-0.005554,0.006997,0.249902,0,0);-ms-transform:matrix(0.198342,-0.005554,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198342,-0.005554,0.006997,0.249902,0,0);}
.m1612_c00001{transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198355,0.000000,0.000000,0.250000,0,0);}
.m93e_c00001{transform:matrix(0.198357,-0.007545,0.009503,0.249819,0,0);-ms-transform:matrix(0.198357,-0.007545,0.009503,0.249819,0,0);-webkit-transform:matrix(0.198357,-0.007545,0.009503,0.249819,0,0);}
.med_c00001{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m19a2_c00001{transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198365,0.000000,0.000000,0.250000,0,0);}
.m20c6_c00001{transform:matrix(0.198368,0.004959,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198368,0.004959,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198368,0.004959,-0.006248,0.249922,0,0);}
.m259b_c00001{transform:matrix(0.198373,-0.002182,0.002750,0.249985,0,0);-ms-transform:matrix(0.198373,-0.002182,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198373,-0.002182,0.002750,0.249985,0,0);}
.m207d_c00001{transform:matrix(0.198380,-0.006150,0.007746,0.249880,0,0);-ms-transform:matrix(0.198380,-0.006150,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198380,-0.006150,0.007746,0.249880,0,0);}
.m1bcf_c00001{transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);}
.md34_c00001{transform:matrix(0.198392,-0.005753,0.007247,0.249895,0,0);-ms-transform:matrix(0.198392,-0.005753,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198392,-0.005753,0.007247,0.249895,0,0);}
.m87d_c00001{transform:matrix(0.198402,-0.007547,0.009503,0.249819,0,0);-ms-transform:matrix(0.198402,-0.007547,0.009503,0.249819,0,0);-webkit-transform:matrix(0.198402,-0.007547,0.009503,0.249819,0,0);}
.m1558_c00001{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.m187f_c00001{transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198430,0.000000,0.000000,0.250000,0,0);}
.m259d_c00001{transform:matrix(0.198438,-0.002183,0.002750,0.249985,0,0);-ms-transform:matrix(0.198438,-0.002183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198438,-0.002183,0.002750,0.249985,0,0);}
.m209a_c00001{transform:matrix(0.198440,-0.006152,0.007746,0.249880,0,0);-ms-transform:matrix(0.198440,-0.006152,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198440,-0.006152,0.007746,0.249880,0,0);}
.m823_c00001{transform:matrix(0.198442,-0.005556,0.006997,0.249902,0,0);-ms-transform:matrix(0.198442,-0.005556,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198442,-0.005556,0.006997,0.249902,0,0);}
.mde_c00001{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m2425_c00001{transform:matrix(0.198462,-0.004366,0.005499,0.249940,0,0);-ms-transform:matrix(0.198462,-0.004366,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198462,-0.004366,0.005499,0.249940,0,0);}
.m18f5_c00001{transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);}
.m1c46_c00001{transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198480,0.000000,0.000000,0.250000,0,0);}
.mc43_c00001{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.meab_c00001{transform:matrix(0.198491,0.002779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198491,0.002779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198491,0.002779,-0.003500,0.249976,0,0);}
.m22e4_c00001{transform:matrix(0.198510,0.003176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198510,0.003176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198510,0.003176,-0.003999,0.249968,0,0);}
.m207b_c00001{transform:matrix(0.198510,-0.006154,0.007746,0.249880,0,0);-ms-transform:matrix(0.198510,-0.006154,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198510,-0.006154,0.007746,0.249880,0,0);}
.mcc_c00001{transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198510,0.000000,0.000000,0.250000,0,0);}
.m139c_c00001{transform:matrix(0.198513,-0.005161,0.006498,0.249916,0,0);-ms-transform:matrix(0.198513,-0.005161,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198513,-0.005161,0.006498,0.249916,0,0);}
.m2037_c00001{transform:matrix(0.198515,-0.006154,0.007746,0.249880,0,0);-ms-transform:matrix(0.198515,-0.006154,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198515,-0.006154,0.007746,0.249880,0,0);}
.m55b_c00001{transform:matrix(0.198518,0.002184,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198518,0.002184,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198518,0.002184,-0.002750,0.249985,0,0);}
.m232a_c00001{transform:matrix(0.198528,0.003574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198528,0.003574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198528,0.003574,-0.004499,0.249960,0,0);}
.m1a02_c00001{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m1733_c00001{transform:matrix(0.198538,-0.005162,0.006498,0.249916,0,0);-ms-transform:matrix(0.198538,-0.005162,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198538,-0.005162,0.006498,0.249916,0,0);}
.m2871_c00001{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.me21_c00001{transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198555,0.000000,0.000000,0.250000,0,0);}
.m1c98_c00001{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.md1b_c00001{transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);-ms-transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198567,-0.005758,0.007247,0.249895,0,0);}
.m134e_c00001{transform:matrix(0.198577,0.005759,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198577,0.005759,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198577,0.005759,-0.007247,0.249895,0,0);}
.m2107_c00001{transform:matrix(0.198577,0.005560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198577,0.005560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198577,0.005560,-0.006997,0.249902,0,0);}
.m20b_c00001{transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198580,0.000000,0.000000,0.250000,0,0);}
.m134a_c00001{transform:matrix(0.198582,0.005759,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198582,0.005759,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198582,0.005759,-0.007247,0.249895,0,0);}
.md32_c00001{transform:matrix(0.198582,-0.005759,0.007247,0.249895,0,0);-ms-transform:matrix(0.198582,-0.005759,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198582,-0.005759,0.007247,0.249895,0,0);}
.m193_c00001{transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198590,0.000000,0.000000,0.250000,0,0);}
.m229f_c00001{transform:matrix(0.198600,0.003178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198600,0.003178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198600,0.003178,-0.003999,0.249968,0,0);}
.m6c6_c00001{transform:matrix(0.198603,0.004965,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198603,0.004965,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198603,0.004965,-0.006248,0.249922,0,0);}
.m772_c00001{transform:matrix(0.198627,0.004568,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198627,0.004568,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198627,0.004568,-0.005748,0.249934,0,0);}
.m122b_c00001{transform:matrix(0.198628,-0.005363,0.006748,0.249909,0,0);-ms-transform:matrix(0.198628,-0.005363,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198628,-0.005363,0.006748,0.249909,0,0);}
.m51c_c00001{transform:matrix(0.198628,0.002185,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198628,0.002185,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198628,0.002185,-0.002750,0.249985,0,0);}
.m606_c00001{transform:matrix(0.198630,-0.008351,0.010501,0.249779,0,0);-ms-transform:matrix(0.198630,-0.008351,0.010501,0.249779,0,0);-webkit-transform:matrix(0.198630,-0.008351,0.010501,0.249779,0,0);}
.m1227_c00001{transform:matrix(0.198638,-0.005363,0.006748,0.249909,0,0);-ms-transform:matrix(0.198638,-0.005363,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198638,-0.005363,0.006748,0.249909,0,0);}
.mc2e_c00001{transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198640,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.mba3_c00001{transform:matrix(0.198651,0.002384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198651,0.002384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198651,0.002384,-0.003000,0.249982,0,0);}
.m350_c00001{transform:matrix(0.198653,-0.002582,0.003250,0.249979,0,0);-ms-transform:matrix(0.198653,-0.002582,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198653,-0.002582,0.003250,0.249979,0,0);}
.me26_c00001{transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198655,0.000000,0.000000,0.250000,0,0);}
.mdfe_c00001{transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);}
.m2478_c00001{transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198665,0.000000,0.000000,0.250000,0,0);}
.m18c5_c00001{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m2707_c00001{transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);}
.m265c_c00001{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.md51_c00001{transform:matrix(0.198761,-0.005764,0.007247,0.249895,0,0);-ms-transform:matrix(0.198761,-0.005764,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198761,-0.005764,0.007247,0.249895,0,0);}
.m1e87_c00001{transform:matrix(0.198762,-0.004373,0.005499,0.249940,0,0);-ms-transform:matrix(0.198762,-0.004373,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198762,-0.004373,0.005499,0.249940,0,0);}
.m1f6a_c00001{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m23f8_c00001{transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);-ms-transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198782,-0.004373,0.005499,0.249940,0,0);}
.m1800_c00001{transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198790,0.000000,0.000000,0.250000,0,0);}
.mebd_c00001{transform:matrix(0.198791,0.002783,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198791,0.002783,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198791,0.002783,-0.003500,0.249976,0,0);}
.m6bd_c00001{transform:matrix(0.198793,0.004970,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198793,0.004970,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198793,0.004970,-0.006248,0.249922,0,0);}
.m11a0_c00001{transform:matrix(0.198797,-0.004374,0.005499,0.249940,0,0);-ms-transform:matrix(0.198797,-0.004374,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198797,-0.004374,0.005499,0.249940,0,0);}
.m1582_c00001{transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);}
.m180b_c00001{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.m6fb_c00001{transform:matrix(0.198833,0.004971,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198833,0.004971,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198833,0.004971,-0.006248,0.249922,0,0);}
.m346_c00001{transform:matrix(0.198833,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198833,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198833,-0.002585,0.003250,0.249979,0,0);}
.m1f16_c00001{transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);}
.m1ba3_c00001{transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198855,0.000000,0.000000,0.250000,0,0);}
.mcec_c00001{transform:matrix(0.198856,-0.005767,0.007247,0.249895,0,0);-ms-transform:matrix(0.198856,-0.005767,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198856,-0.005767,0.007247,0.249895,0,0);}
.m570_c00001{transform:matrix(0.198863,0.002187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198863,0.002187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198863,0.002187,-0.002750,0.249985,0,0);}
.m35e_c00001{transform:matrix(0.198868,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198868,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198868,-0.002585,0.003250,0.249979,0,0);}
.mae6_c00001{transform:matrix(0.198869,-0.007764,0.009752,0.249810,0,0);-ms-transform:matrix(0.198869,-0.007764,0.009752,0.249810,0,0);-webkit-transform:matrix(0.198869,-0.007764,0.009752,0.249810,0,0);}
.m3c_c00001{transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);}
.mba8_c00001{transform:matrix(0.198881,0.002387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198881,0.002387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198881,0.002387,-0.003000,0.249982,0,0);}
.m15b8_c00001{transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198885,0.000000,0.000000,0.250000,0,0);}
.mf5c_c00001{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m90c_c00001{transform:matrix(0.198896,-0.007566,0.009503,0.249819,0,0);-ms-transform:matrix(0.198896,-0.007566,0.009503,0.249819,0,0);-webkit-transform:matrix(0.198896,-0.007566,0.009503,0.249819,0,0);}
.m1095_c00001{transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198935,0.000000,0.000000,0.250000,0,0);}
.m4bb_c00001{transform:matrix(0.198938,-0.006372,0.008004,0.249872,0,0);-ms-transform:matrix(0.198938,-0.006372,0.008004,0.249872,0,0);-webkit-transform:matrix(0.198938,-0.006372,0.008004,0.249872,0,0);}
.m2872_c00001{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.m28f_c00001{transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198960,0.000000,0.000000,0.250000,0,0);}
.mf11_c00001{transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198960,0.003979,-0.004999,0.249950,0,0);}
.m21c9_c00001{transform:matrix(0.198967,-0.004576,0.005748,0.249934,0,0);-ms-transform:matrix(0.198967,-0.004576,0.005748,0.249934,0,0);-webkit-transform:matrix(0.198967,-0.004576,0.005748,0.249934,0,0);}
.m1416_c00001{transform:matrix(0.198968,-0.005173,0.006498,0.249916,0,0);-ms-transform:matrix(0.198968,-0.005173,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198968,-0.005173,0.006498,0.249916,0,0);}
.mcab_c00001{transform:matrix(0.198971,-0.005770,0.007247,0.249895,0,0);-ms-transform:matrix(0.198971,-0.005770,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198971,-0.005770,0.007247,0.249895,0,0);}
.m1e7a_c00001{transform:matrix(0.198973,-0.005173,0.006498,0.249916,0,0);-ms-transform:matrix(0.198973,-0.005173,0.006498,0.249916,0,0);-webkit-transform:matrix(0.198973,-0.005173,0.006498,0.249916,0,0);}
.m1b0b_c00001{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m115b_c00001{transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198985,0.000000,0.000000,0.250000,0,0);}
.me83_c00001{transform:matrix(0.198990,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198990,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198990,0.002786,-0.003500,0.249976,0,0);}
.m929_c00001{transform:matrix(0.199001,-0.007570,0.009503,0.249819,0,0);-ms-transform:matrix(0.199001,-0.007570,0.009503,0.249819,0,0);-webkit-transform:matrix(0.199001,-0.007570,0.009503,0.249819,0,0);}
.md0d_c00001{transform:matrix(0.199001,-0.005771,0.007247,0.249895,0,0);-ms-transform:matrix(0.199001,-0.005771,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199001,-0.005771,0.007247,0.249895,0,0);}
.m1297_c00001{transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199020,0.000000,0.000000,0.250000,0,0);}
.m223e_c00001{transform:matrix(0.199031,-0.004180,0.005249,0.249945,0,0);-ms-transform:matrix(0.199031,-0.004180,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199031,-0.004180,0.005249,0.249945,0,0);}
.m1c78_c00001{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m1520_c00001{transform:matrix(0.199036,0.006575,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199036,0.006575,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199036,0.006575,-0.008254,0.249864,0,0);}
.m64a_c00001{transform:matrix(0.199037,-0.008169,0.010252,0.249790,0,0);-ms-transform:matrix(0.199037,-0.008169,0.010252,0.249790,0,0);-webkit-transform:matrix(0.199037,-0.008169,0.010252,0.249790,0,0);}
.m17a0_c00001{transform:matrix(0.199043,-0.003583,0.004499,0.249960,0,0);-ms-transform:matrix(0.199043,-0.003583,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199043,-0.003583,0.004499,0.249960,0,0);}
.m244_c00001{transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199045,0.000000,0.000000,0.250000,0,0);}
.m23e3_c00001{transform:matrix(0.199052,-0.004379,0.005499,0.249940,0,0);-ms-transform:matrix(0.199052,-0.004379,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199052,-0.004379,0.005499,0.249940,0,0);}
.m297d_c00001{transform:matrix(0.199060,-0.003981,0.004999,0.249950,0,0);-ms-transform:matrix(0.199060,-0.003981,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199060,-0.003981,0.004999,0.249950,0,0);}
.m769_c00001{transform:matrix(0.199067,0.005574,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199067,0.005574,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199067,0.005574,-0.006997,0.249902,0,0);}
.m1f43_c00001{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.me33_c00001{transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199080,0.000000,0.000000,0.250000,0,0);}
.m1452_c00001{transform:matrix(0.199082,-0.005375,0.006748,0.249909,0,0);-ms-transform:matrix(0.199082,-0.005375,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199082,-0.005375,0.006748,0.249909,0,0);}
.mbc2_c00001{transform:matrix(0.199083,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199083,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199083,0.002190,-0.002750,0.249985,0,0);}
.m165_c00001{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m2259_c00001{transform:matrix(0.199086,-0.003384,0.004249,0.249964,0,0);-ms-transform:matrix(0.199086,-0.003384,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199086,-0.003384,0.004249,0.249964,0,0);}
.m64d_c00001{transform:matrix(0.199092,-0.008171,0.010252,0.249790,0,0);-ms-transform:matrix(0.199092,-0.008171,0.010252,0.249790,0,0);-webkit-transform:matrix(0.199092,-0.008171,0.010252,0.249790,0,0);}
.mbf2_c00001{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m41f_c00001{transform:matrix(0.199101,-0.004181,0.005249,0.249945,0,0);-ms-transform:matrix(0.199101,-0.004181,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199101,-0.004181,0.005249,0.249945,0,0);}
.m2e2_c00001{transform:matrix(0.199113,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199113,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199113,-0.002588,0.003250,0.249979,0,0);}
.m24b8_c00001{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1509_c00001{transform:matrix(0.199116,0.006577,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199116,0.006577,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199116,0.006577,-0.008254,0.249864,0,0);}
.m101a_c00001{transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199120,0.000000,0.000000,0.250000,0,0);}
.m1132_c00001{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.mb3b_c00001{transform:matrix(0.199143,-0.007774,0.009752,0.249810,0,0);-ms-transform:matrix(0.199143,-0.007774,0.009752,0.249810,0,0);-webkit-transform:matrix(0.199143,-0.007774,0.009752,0.249810,0,0);}
.m148b_c00001{transform:matrix(0.199146,0.006578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199146,0.006578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199146,0.006578,-0.008254,0.249864,0,0);}
.m469_c00001{transform:matrix(0.199155,-0.006778,0.008504,0.249855,0,0);-ms-transform:matrix(0.199155,-0.006778,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199155,-0.006778,0.008504,0.249855,0,0);}
.m1f52_c00001{transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199160,0.000000,0.000000,0.250000,0,0);}
.m2284_c00001{transform:matrix(0.199172,-0.004581,0.005748,0.249934,0,0);-ms-transform:matrix(0.199172,-0.004581,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199172,-0.004581,0.005748,0.249934,0,0);}
.m19cc_c00001{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m2251_c00001{transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);-ms-transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199186,-0.003386,0.004249,0.249964,0,0);}
.m1d3_c00001{transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);-ms-transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199190,-0.003187,0.003999,0.249968,0,0);}
.m10cf_c00001{transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199190,0.000000,0.000000,0.250000,0,0);}
.mb6_c00001{transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);}
.m1876_c00001{transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199210,0.000000,0.000000,0.250000,0,0);}
.m1f4b_c00001{transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199220,0.000000,0.000000,0.250000,0,0);}
.m21f7_c00001{transform:matrix(0.199224,-0.003785,0.004749,0.249955,0,0);-ms-transform:matrix(0.199224,-0.003785,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199224,-0.003785,0.004749,0.249955,0,0);}
.m28e7_c00001{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m1066_c00001{transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);}
.m245d_c00001{transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);-ms-transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199237,-0.004383,0.005499,0.249940,0,0);}
.m252d_c00001{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1310_c00001{transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199262,0.005380,-0.006748,0.249909,0,0);}
.m26bb_c00001{transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);}
.m17c8_c00001{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m1a0c_c00001{transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);}
.m239f_c00001{transform:matrix(0.199288,-0.005181,0.006498,0.249916,0,0);-ms-transform:matrix(0.199288,-0.005181,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199288,-0.005181,0.006498,0.249916,0,0);}
.m102e_c00001{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.ma91_c00001{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m196e_c00001{transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199320,0.000000,0.000000,0.250000,0,0);}
.m121a_c00001{transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);-ms-transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199327,-0.005382,0.006748,0.249909,0,0);}
.m1d7_c00001{transform:matrix(0.199334,-0.003189,0.003999,0.249968,0,0);-ms-transform:matrix(0.199334,-0.003189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199334,-0.003189,0.003999,0.249968,0,0);}
.m28e4_c00001{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.m1e82_c00001{transform:matrix(0.199353,-0.005183,0.006498,0.249916,0,0);-ms-transform:matrix(0.199353,-0.005183,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199353,-0.005183,0.006498,0.249916,0,0);}
.m12e0_c00001{transform:matrix(0.199372,0.005383,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199372,0.005383,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199372,0.005383,-0.006748,0.249909,0,0);}
.m1714_c00001{transform:matrix(0.199383,-0.005184,0.006498,0.249916,0,0);-ms-transform:matrix(0.199383,-0.005184,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199383,-0.005184,0.006498,0.249916,0,0);}
.ma68_c00001{transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199385,0.000000,0.000000,0.250000,0,0);}
.m1f2a_c00001{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m1cfb_c00001{transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199395,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00001{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m17df_c00001{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m18ae_c00001{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m891_c00001{transform:matrix(0.199426,-0.007586,0.009503,0.249819,0,0);-ms-transform:matrix(0.199426,-0.007586,0.009503,0.249819,0,0);-webkit-transform:matrix(0.199426,-0.007586,0.009503,0.249819,0,0);}
.m27fc_c00001{transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199430,0.000000,0.000000,0.250000,0,0);}
.m3a1_c00001{transform:matrix(0.199433,-0.002593,0.003250,0.249979,0,0);-ms-transform:matrix(0.199433,-0.002593,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199433,-0.002593,0.003250,0.249979,0,0);}
.m1a77_c00001{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.m2511_c00001{transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199445,0.000000,0.000000,0.250000,0,0);}
.m23f7_c00001{transform:matrix(0.199447,-0.004388,0.005499,0.249940,0,0);-ms-transform:matrix(0.199447,-0.004388,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199447,-0.004388,0.005499,0.249940,0,0);}
.m2160_c00001{transform:matrix(0.199447,0.005585,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199447,0.005585,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199447,0.005585,-0.006997,0.249902,0,0);}
.md08_c00001{transform:matrix(0.199456,-0.005784,0.007247,0.249895,0,0);-ms-transform:matrix(0.199456,-0.005784,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199456,-0.005784,0.007247,0.249895,0,0);}
.m1306_c00001{transform:matrix(0.199462,0.005385,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199462,0.005385,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199462,0.005385,-0.006748,0.249909,0,0);}
.ma1d_c00001{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.m1b6e_c00001{transform:matrix(0.199484,-0.003790,0.004749,0.249955,0,0);-ms-transform:matrix(0.199484,-0.003790,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199484,-0.003790,0.004749,0.249955,0,0);}
.m2604_c00001{transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);}
.m9c4_c00001{transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);}
.m2421_c00001{transform:matrix(0.199517,-0.004389,0.005499,0.249940,0,0);-ms-transform:matrix(0.199517,-0.004389,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199517,-0.004389,0.005499,0.249940,0,0);}
.m1933_c00001{transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199530,0.000000,0.000000,0.250000,0,0);}
.m418_c00001{transform:matrix(0.199551,-0.004191,0.005249,0.249945,0,0);-ms-transform:matrix(0.199551,-0.004191,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199551,-0.004191,0.005249,0.249945,0,0);}
.me23_c00001{transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199555,0.000000,0.000000,0.250000,0,0);}
.m9b3_c00001{transform:matrix(0.199556,-0.007591,0.009503,0.249819,0,0);-ms-transform:matrix(0.199556,-0.007591,0.009503,0.249819,0,0);-webkit-transform:matrix(0.199556,-0.007591,0.009503,0.249819,0,0);}
.m14da_c00001{transform:matrix(0.199556,0.006592,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199556,0.006592,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199556,0.006592,-0.008254,0.249864,0,0);}
.m21d1_c00001{transform:matrix(0.199557,-0.004590,0.005748,0.249934,0,0);-ms-transform:matrix(0.199557,-0.004590,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199557,-0.004590,0.005748,0.249934,0,0);}
.m2263_c00001{transform:matrix(0.199568,-0.004790,0.005998,0.249928,0,0);-ms-transform:matrix(0.199568,-0.004790,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199568,-0.004790,0.005998,0.249928,0,0);}
.m24a7_c00001{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.maa5_c00001{transform:matrix(0.199575,-0.007192,0.009003,0.249838,0,0);-ms-transform:matrix(0.199575,-0.007192,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199575,-0.007192,0.009003,0.249838,0,0);}
.m190_c00001{transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199580,0.000000,0.000000,0.250000,0,0);}
.m2768_c00001{transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199583,-0.002994,0.003750,0.249972,0,0);}
.m1554_c00001{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199590,0.000000,0.000000,0.250000,0,0);}
.m2914_c00001{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.m2165_c00001{transform:matrix(0.199602,0.005589,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199602,0.005589,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199602,0.005589,-0.006997,0.249902,0,0);}
.mf9f_c00001{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.m1191_c00001{transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199610,0.000000,0.000000,0.250000,0,0);}
.m6e8_c00001{transform:matrix(0.199613,0.004990,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199613,0.004990,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199613,0.004990,-0.006248,0.249922,0,0);}
.m1262_c00001{transform:matrix(0.199622,-0.005390,0.006748,0.249909,0,0);-ms-transform:matrix(0.199622,-0.005390,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199622,-0.005390,0.006748,0.249909,0,0);}
.m2544_c00001{transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199623,-0.002994,0.003750,0.249972,0,0);}
.me8e_c00001{transform:matrix(0.199625,0.002795,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199625,0.002795,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199625,0.002795,-0.003500,0.249976,0,0);}
.mbba_c00001{transform:matrix(0.199633,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199633,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199633,0.002196,-0.002750,0.249985,0,0);}
.m1d94_c00001{transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199640,0.000000,0.000000,0.250000,0,0);}
.m1a90_c00001{transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199645,0.000000,0.000000,0.250000,0,0);}
.m59d_c00001{transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199648,0.002196,-0.002750,0.249985,0,0);}
.m2501_c00001{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m14c3_c00001{transform:matrix(0.199651,0.006595,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199651,0.006595,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199651,0.006595,-0.008254,0.249864,0,0);}
.m124c_c00001{transform:matrix(0.199667,-0.005391,0.006748,0.249909,0,0);-ms-transform:matrix(0.199667,-0.005391,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199667,-0.005391,0.006748,0.249909,0,0);}
.m20bd_c00001{transform:matrix(0.199668,0.004992,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199668,0.004992,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199668,0.004992,-0.006248,0.249922,0,0);}
.mcb5_c00001{transform:matrix(0.199686,-0.005791,0.007247,0.249895,0,0);-ms-transform:matrix(0.199686,-0.005791,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199686,-0.005791,0.007247,0.249895,0,0);}
.m1bf2_c00001{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.m1190_c00001{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.m1402_c00001{transform:matrix(0.199703,-0.005192,0.006498,0.249916,0,0);-ms-transform:matrix(0.199703,-0.005192,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199703,-0.005192,0.006498,0.249916,0,0);}
.m1401_c00001{transform:matrix(0.199708,-0.005192,0.006498,0.249916,0,0);-ms-transform:matrix(0.199708,-0.005192,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199708,-0.005192,0.006498,0.249916,0,0);}
.m10d0_c00001{transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199710,0.000000,0.000000,0.250000,0,0);}
.m11ef_c00001{transform:matrix(0.199712,-0.004394,0.005499,0.249940,0,0);-ms-transform:matrix(0.199712,-0.004394,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199712,-0.004394,0.005499,0.249940,0,0);}
.m1e71_c00001{transform:matrix(0.199718,-0.005193,0.006498,0.249916,0,0);-ms-transform:matrix(0.199718,-0.005193,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199718,-0.005193,0.006498,0.249916,0,0);}
.m1322_c00001{transform:matrix(0.199726,0.005792,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199726,0.005792,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199726,0.005792,-0.007247,0.249895,0,0);}
.m15c2_c00001{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m20f9_c00001{transform:matrix(0.199732,0.005592,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199732,0.005592,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199732,0.005592,-0.006997,0.249902,0,0);}
.m16ba_c00001{transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);}
.m88a_c00001{transform:matrix(0.199741,-0.007598,0.009503,0.249819,0,0);-ms-transform:matrix(0.199741,-0.007598,0.009503,0.249819,0,0);-webkit-transform:matrix(0.199741,-0.007598,0.009503,0.249819,0,0);}
.md2c_c00001{transform:matrix(0.199761,-0.005793,0.007247,0.249895,0,0);-ms-transform:matrix(0.199761,-0.005793,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199761,-0.005793,0.007247,0.249895,0,0);}
.m10da_c00001{transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199770,0.000000,0.000000,0.250000,0,0);}
.m1907_c00001{transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199790,0.000000,0.000000,0.250000,0,0);}
.m308_c00001{transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);-ms-transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199793,-0.002597,0.003250,0.249979,0,0);}
.m1b66_c00001{transform:matrix(0.199799,-0.003796,0.004749,0.249955,0,0);-ms-transform:matrix(0.199799,-0.003796,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199799,-0.003796,0.004749,0.249955,0,0);}
.m1cc1_c00001{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00001{transform:matrix(0.199808,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199808,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199808,-0.002598,0.003250,0.249979,0,0);}
.m196_c00001{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m2048_c00001{transform:matrix(0.199814,-0.006194,0.007746,0.249880,0,0);-ms-transform:matrix(0.199814,-0.006194,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199814,-0.006194,0.007746,0.249880,0,0);}
.m276b_c00001{transform:matrix(0.199823,-0.002997,0.003750,0.249972,0,0);-ms-transform:matrix(0.199823,-0.002997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199823,-0.002997,0.003750,0.249972,0,0);}
.mffe_c00001{transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);}
.m26b1_c00001{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.m13e7_c00001{transform:matrix(0.199852,-0.005196,0.006498,0.249916,0,0);-ms-transform:matrix(0.199852,-0.005196,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199852,-0.005196,0.006498,0.249916,0,0);}
.m45d_c00001{transform:matrix(0.199854,-0.006802,0.008504,0.249855,0,0);-ms-transform:matrix(0.199854,-0.006802,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199854,-0.006802,0.008504,0.249855,0,0);}
.m2857_c00001{transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);}
.m63e_c00001{transform:matrix(0.199859,-0.006802,0.008504,0.249855,0,0);-ms-transform:matrix(0.199859,-0.006802,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199859,-0.006802,0.008504,0.249855,0,0);}
.md12_c00001{transform:matrix(0.199891,-0.005797,0.007247,0.249895,0,0);-ms-transform:matrix(0.199891,-0.005797,0.007247,0.249895,0,0);-webkit-transform:matrix(0.199891,-0.005797,0.007247,0.249895,0,0);}
.m171a_c00001{transform:matrix(0.199892,-0.005197,0.006498,0.249916,0,0);-ms-transform:matrix(0.199892,-0.005197,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199892,-0.005197,0.006498,0.249916,0,0);}
.mfe0_c00001{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m93a_c00001{transform:matrix(0.199905,-0.007604,0.009503,0.249819,0,0);-ms-transform:matrix(0.199905,-0.007604,0.009503,0.249819,0,0);-webkit-transform:matrix(0.199905,-0.007604,0.009503,0.249819,0,0);}
.ma6c_c00001{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m21bf_c00001{transform:matrix(0.199922,-0.004598,0.005748,0.249934,0,0);-ms-transform:matrix(0.199922,-0.004598,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199922,-0.004598,0.005748,0.249934,0,0);}
.m118c_c00001{transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);}
.m1236_c00001{transform:matrix(0.199937,-0.005398,0.006748,0.249909,0,0);-ms-transform:matrix(0.199937,-0.005398,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199937,-0.005398,0.006748,0.249909,0,0);}
.m250e_c00001{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m1c6e_c00001{transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199955,0.000000,0.000000,0.250000,0,0);}
.m1327_c00001{transform:matrix(0.199961,0.005799,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199961,0.005799,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199961,0.005799,-0.007247,0.249895,0,0);}
.m1377_c00001{transform:matrix(0.199967,-0.005199,0.006498,0.249916,0,0);-ms-transform:matrix(0.199967,-0.005199,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199967,-0.005199,0.006498,0.249916,0,0);}
.m1d9f_c00001{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.m1ac7_c00001{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m69d_c00001{transform:matrix(0.199977,-0.008207,0.010252,0.249790,0,0);-ms-transform:matrix(0.199977,-0.008207,0.010252,0.249790,0,0);-webkit-transform:matrix(0.199977,-0.008207,0.010252,0.249790,0,0);}
.m1ea8_c00001{transform:matrix(0.199982,-0.005200,0.006498,0.249916,0,0);-ms-transform:matrix(0.199982,-0.005200,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199982,-0.005200,0.006498,0.249916,0,0);}
.m11de_c00001{transform:matrix(0.199992,-0.004400,0.005499,0.249940,0,0);-ms-transform:matrix(0.199992,-0.004400,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199992,-0.004400,0.005499,0.249940,0,0);}
.m8bd_c00001{transform:matrix(0.199992,-0.004800,0.005998,0.249928,0,0);-ms-transform:matrix(0.199992,-0.004800,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199992,-0.004800,0.005998,0.249928,0,0);}
.m2536_c00001{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m201a_c00001{transform:matrix(0.200019,-0.006201,0.007746,0.249880,0,0);-ms-transform:matrix(0.200019,-0.006201,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200019,-0.006201,0.007746,0.249880,0,0);}
.m23d8_c00001{transform:matrix(0.200042,-0.004401,0.005499,0.249940,0,0);-ms-transform:matrix(0.200042,-0.004401,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200042,-0.004401,0.005499,0.249940,0,0);}
.m1344_c00001{transform:matrix(0.200061,0.005802,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200061,0.005802,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200061,0.005802,-0.007247,0.249895,0,0);}
.m130b_c00001{transform:matrix(0.200072,0.005402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200072,0.005402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200072,0.005402,-0.006748,0.249909,0,0);}
.m1273_c00001{transform:matrix(0.200077,-0.005402,0.006748,0.249909,0,0);-ms-transform:matrix(0.200077,-0.005402,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200077,-0.005402,0.006748,0.249909,0,0);}
.m394_c00001{transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);-ms-transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200083,-0.002601,0.003250,0.249979,0,0);}
.m685_c00001{transform:matrix(0.200097,-0.008212,0.010252,0.249790,0,0);-ms-transform:matrix(0.200097,-0.008212,0.010252,0.249790,0,0);-webkit-transform:matrix(0.200097,-0.008212,0.010252,0.249790,0,0);}
.m1a5c_c00001{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m12b2_c00001{transform:matrix(0.200102,0.005003,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200102,0.005003,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200102,0.005003,-0.006248,0.249922,0,0);}
.mc41_c00001{transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200105,0.000000,0.000000,0.250000,0,0);}
.m3a4_c00001{transform:matrix(0.200118,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200118,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200118,-0.002602,0.003250,0.249979,0,0);}
.m756_c00001{transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);}
.mbbb_c00001{transform:matrix(0.200138,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200138,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200138,0.002202,-0.002750,0.249985,0,0);}
.m1f20_c00001{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m96_c00001{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m31f_c00001{transform:matrix(0.200148,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200148,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200148,-0.002602,0.003250,0.249979,0,0);}
.mdae_c00001{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.mf9b_c00001{transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200155,0.000000,0.000000,0.250000,0,0);}
.md9c_c00001{transform:matrix(0.200156,0.002402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200156,0.002402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200156,0.002402,-0.003000,0.249982,0,0);}
.m162c_c00001{transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200170,0.000000,0.000000,0.250000,0,0);}
.m355_c00001{transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200183,-0.002602,0.003250,0.249979,0,0);}
.m211f_c00001{transform:matrix(0.200187,0.005605,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200187,0.005605,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200187,0.005605,-0.006997,0.249902,0,0);}
.m1444_c00001{transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);-ms-transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200202,-0.005405,0.006748,0.249909,0,0);}
.m94b_c00001{transform:matrix(0.200205,-0.007615,0.009503,0.249819,0,0);-ms-transform:matrix(0.200205,-0.007615,0.009503,0.249819,0,0);-webkit-transform:matrix(0.200205,-0.007615,0.009503,0.249819,0,0);}
.m10d2_c00001{transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200210,0.000000,0.000000,0.250000,0,0);}
.m290b_c00001{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.mf81_c00001{transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);}
.m167c_c00001{transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200235,0.000000,0.000000,0.250000,0,0);}
.m13a3_c00001{transform:matrix(0.200237,-0.005206,0.006498,0.249916,0,0);-ms-transform:matrix(0.200237,-0.005206,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200237,-0.005206,0.006498,0.249916,0,0);}
.m23c3_c00001{transform:matrix(0.200242,-0.004405,0.005499,0.249940,0,0);-ms-transform:matrix(0.200242,-0.004405,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200242,-0.004405,0.005499,0.249940,0,0);}
.m1eb8_c00001{transform:matrix(0.200242,-0.005206,0.006498,0.249916,0,0);-ms-transform:matrix(0.200242,-0.005206,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200242,-0.005206,0.006498,0.249916,0,0);}
.m28f2_c00001{transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200245,0.000000,0.000000,0.250000,0,0);}
.mdd7_c00001{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m4a7_c00001{transform:matrix(0.200251,-0.008219,0.010252,0.249790,0,0);-ms-transform:matrix(0.200251,-0.008219,0.010252,0.249790,0,0);-webkit-transform:matrix(0.200251,-0.008219,0.010252,0.249790,0,0);}
.m5c_c00001{transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200265,0.000000,0.000000,0.250000,0,0);}
.mb39_c00001{transform:matrix(0.200267,-0.007818,0.009752,0.249810,0,0);-ms-transform:matrix(0.200267,-0.007818,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200267,-0.007818,0.009752,0.249810,0,0);}
.m2220_c00001{transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);-ms-transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200272,-0.004606,0.005748,0.249934,0,0);}
.m2239_c00001{transform:matrix(0.200281,-0.004206,0.005249,0.249945,0,0);-ms-transform:matrix(0.200281,-0.004206,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200281,-0.004206,0.005249,0.249945,0,0);}
.m1803_c00001{transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200290,0.000000,0.000000,0.250000,0,0);}
.m1026_c00001{transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);}
.m252a_c00001{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m1f96_c00001{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.m151_c00001{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.maf8_c00001{transform:matrix(0.200327,-0.007821,0.009752,0.249810,0,0);-ms-transform:matrix(0.200327,-0.007821,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200327,-0.007821,0.009752,0.249810,0,0);}
.m17d2_c00001{transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);}
.m6d2_c00001{transform:matrix(0.200332,0.005008,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200332,0.005008,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200332,0.005008,-0.006248,0.249922,0,0);}
.m1fba_c00001{transform:matrix(0.200333,-0.008422,0.010501,0.249779,0,0);-ms-transform:matrix(0.200333,-0.008422,0.010501,0.249779,0,0);-webkit-transform:matrix(0.200333,-0.008422,0.010501,0.249779,0,0);}
.m6eb_c00001{transform:matrix(0.200337,0.005008,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200337,0.005008,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200337,0.005008,-0.006248,0.249922,0,0);}
.m15a5_c00001{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.me79_c00001{transform:matrix(0.200345,0.002805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200345,0.002805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200345,0.002805,-0.003500,0.249976,0,0);}
.m1a3f_c00001{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.m227a_c00001{transform:matrix(0.200372,-0.004609,0.005748,0.249934,0,0);-ms-transform:matrix(0.200372,-0.004609,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200372,-0.004609,0.005748,0.249934,0,0);}
.m1be8_c00001{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m2393_c00001{transform:matrix(0.200377,-0.005210,0.006498,0.249916,0,0);-ms-transform:matrix(0.200377,-0.005210,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200377,-0.005210,0.006498,0.249916,0,0);}
.m317_c00001{transform:matrix(0.200378,-0.002605,0.003250,0.249979,0,0);-ms-transform:matrix(0.200378,-0.002605,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200378,-0.002605,0.003250,0.249979,0,0);}
.m21f_c00001{transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200380,0.000000,0.000000,0.250000,0,0);}
.mc0e_c00001{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.mfa_c00001{transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200420,0.000000,0.000000,0.250000,0,0);}
.m198d_c00001{transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200430,0.000000,0.000000,0.250000,0,0);}
.m1fb6_c00001{transform:matrix(0.200433,-0.008427,0.010501,0.249779,0,0);-ms-transform:matrix(0.200433,-0.008427,0.010501,0.249779,0,0);-webkit-transform:matrix(0.200433,-0.008427,0.010501,0.249779,0,0);}
.m11ce_c00001{transform:matrix(0.200441,-0.004410,0.005499,0.249940,0,0);-ms-transform:matrix(0.200441,-0.004410,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200441,-0.004410,0.005499,0.249940,0,0);}
.m2876_c00001{transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);}
.m289d_c00001{transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200460,0.000000,0.000000,0.250000,0,0);}
.me2c_c00001{transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200470,0.000000,0.000000,0.250000,0,0);}
.md0c_c00001{transform:matrix(0.200471,-0.005814,0.007247,0.249895,0,0);-ms-transform:matrix(0.200471,-0.005814,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200471,-0.005814,0.007247,0.249895,0,0);}
.m7e3_c00001{transform:matrix(0.200486,-0.005614,0.006997,0.249902,0,0);-ms-transform:matrix(0.200486,-0.005614,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200486,-0.005614,0.006997,0.249902,0,0);}
.m231_c00001{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.mc77_c00001{transform:matrix(0.200491,-0.005814,0.007247,0.249895,0,0);-ms-transform:matrix(0.200491,-0.005814,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200491,-0.005814,0.007247,0.249895,0,0);}
.mb54_c00001{transform:matrix(0.200497,-0.007827,0.009752,0.249810,0,0);-ms-transform:matrix(0.200497,-0.007827,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200497,-0.007827,0.009752,0.249810,0,0);}
.m16b2_c00001{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.m22f1_c00001{transform:matrix(0.200528,0.003609,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200528,0.003609,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200528,0.003609,-0.004499,0.249960,0,0);}
.m10e3_c00001{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.mfcc_c00001{transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200545,0.000000,0.000000,0.250000,0,0);}
.m2e1_c00001{transform:matrix(0.200553,-0.002607,0.003250,0.249979,0,0);-ms-transform:matrix(0.200553,-0.002607,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200553,-0.002607,0.003250,0.249979,0,0);}
.m7dc_c00001{transform:matrix(0.200556,-0.005616,0.006997,0.249902,0,0);-ms-transform:matrix(0.200556,-0.005616,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200556,-0.005616,0.006997,0.249902,0,0);}
.m2824_c00001{transform:matrix(0.200558,-0.002607,0.003250,0.249979,0,0);-ms-transform:matrix(0.200558,-0.002607,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200558,-0.002607,0.003250,0.249979,0,0);}
.mdfa_c00001{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.m2375_c00001{transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200568,0.003610,-0.004499,0.249960,0,0);}
.m2969_c00001{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m78d_c00001{transform:matrix(0.200577,0.004613,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200577,0.004613,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200577,0.004613,-0.005748,0.249934,0,0);}
.m245b_c00001{transform:matrix(0.200586,-0.004413,0.005499,0.249940,0,0);-ms-transform:matrix(0.200586,-0.004413,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200586,-0.004413,0.005499,0.249940,0,0);}
.m1cd3_c00001{transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200590,0.000000,0.000000,0.250000,0,0);}
.m501_c00001{transform:matrix(0.200593,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200593,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200593,0.002207,-0.002750,0.249985,0,0);}
.m1077_c00001{transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200605,0.000000,0.000000,0.250000,0,0);}
.m1234_c00001{transform:matrix(0.200627,-0.005417,0.006748,0.249909,0,0);-ms-transform:matrix(0.200627,-0.005417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.200627,-0.005417,0.006748,0.249909,0,0);}
.m895_c00001{transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);-ms-transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200634,-0.003812,0.004749,0.249955,0,0);}
.m188c_c00001{transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);}
.m1caf_c00001{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m690_c00001{transform:matrix(0.200651,-0.008235,0.010252,0.249790,0,0);-ms-transform:matrix(0.200651,-0.008235,0.010252,0.249790,0,0);-webkit-transform:matrix(0.200651,-0.008235,0.010252,0.249790,0,0);}
.m860_c00001{transform:matrix(0.200656,-0.005618,0.006997,0.249902,0,0);-ms-transform:matrix(0.200656,-0.005618,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200656,-0.005618,0.006997,0.249902,0,0);}
.m37a_c00001{transform:matrix(0.200658,-0.002609,0.003250,0.249979,0,0);-ms-transform:matrix(0.200658,-0.002609,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200658,-0.002609,0.003250,0.249979,0,0);}
.md74_c00001{transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);}
.m124_c00001{transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200670,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m1e04_c00001{transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200695,0.000000,0.000000,0.250000,0,0);}
.m1d99_c00001{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m2639_c00001{transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200705,0.000000,0.000000,0.250000,0,0);}
.m15be_c00001{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.m13cc_c00001{transform:matrix(0.200717,-0.005219,0.006498,0.249916,0,0);-ms-transform:matrix(0.200717,-0.005219,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200717,-0.005219,0.006498,0.249916,0,0);}
.m2438_c00001{transform:matrix(0.200726,-0.004416,0.005499,0.249940,0,0);-ms-transform:matrix(0.200726,-0.004416,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200726,-0.004416,0.005499,0.249940,0,0);}
.m1e35_c00001{transform:matrix(0.200742,-0.005219,0.006498,0.249916,0,0);-ms-transform:matrix(0.200742,-0.005219,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200742,-0.005219,0.006498,0.249916,0,0);}
.mf0b_c00001{transform:matrix(0.200777,0.003614,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200777,0.003614,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200777,0.003614,-0.004499,0.249960,0,0);}
.mb3d_c00001{transform:matrix(0.200802,-0.007839,0.009752,0.249810,0,0);-ms-transform:matrix(0.200802,-0.007839,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200802,-0.007839,0.009752,0.249810,0,0);}
.m20d6_c00001{transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200802,0.005020,-0.006248,0.249922,0,0);}
.m1a06_c00001{transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200805,0.000000,0.000000,0.250000,0,0);}
.mb98_c00001{transform:matrix(0.200821,0.002410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200821,0.002410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200821,0.002410,-0.003000,0.249982,0,0);}
.m192a_c00001{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200840,0.000000,0.000000,0.250000,0,0);}
.m1bb3_c00001{transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200845,0.000000,0.000000,0.250000,0,0);}
.m20db_c00001{transform:matrix(0.200852,0.005021,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200852,0.005021,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200852,0.005021,-0.006248,0.249922,0,0);}
.m8d1_c00001{transform:matrix(0.200857,-0.004821,0.005998,0.249928,0,0);-ms-transform:matrix(0.200857,-0.004821,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200857,-0.004821,0.005998,0.249928,0,0);}
.m63c_c00001{transform:matrix(0.200864,-0.006836,0.008504,0.249855,0,0);-ms-transform:matrix(0.200864,-0.006836,0.008504,0.249855,0,0);-webkit-transform:matrix(0.200864,-0.006836,0.008504,0.249855,0,0);}
.mf4d_c00001{transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200865,0.000000,0.000000,0.250000,0,0);}
.ma63_c00001{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.mab7_c00001{transform:matrix(0.200877,-0.007842,0.009752,0.249810,0,0);-ms-transform:matrix(0.200877,-0.007842,0.009752,0.249810,0,0);-webkit-transform:matrix(0.200877,-0.007842,0.009752,0.249810,0,0);}
.m30c_c00001{transform:matrix(0.200893,-0.002612,0.003250,0.249979,0,0);-ms-transform:matrix(0.200893,-0.002612,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200893,-0.002612,0.003250,0.249979,0,0);}
.m1ef6_c00001{transform:matrix(0.200902,-0.005223,0.006498,0.249916,0,0);-ms-transform:matrix(0.200902,-0.005223,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200902,-0.005223,0.006498,0.249916,0,0);}
.m19f5_c00001{transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200905,0.000000,0.000000,0.250000,0,0);}
.m33e_c00001{transform:matrix(0.200918,-0.002612,0.003250,0.249979,0,0);-ms-transform:matrix(0.200918,-0.002612,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200918,-0.002612,0.003250,0.249979,0,0);}
.m3c4_c00001{transform:matrix(0.200935,-0.006638,0.008254,0.249864,0,0);-ms-transform:matrix(0.200935,-0.006638,0.008254,0.249864,0,0);-webkit-transform:matrix(0.200935,-0.006638,0.008254,0.249864,0,0);}
.m2331_c00001{transform:matrix(0.200942,0.003617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200942,0.003617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200942,0.003617,-0.004499,0.249960,0,0);}
.m22a6_c00001{transform:matrix(0.200944,0.003215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200944,0.003215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200944,0.003215,-0.003999,0.249968,0,0);}
.m1c53_c00001{transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200945,0.000000,0.000000,0.250000,0,0);}
.mc1b_c00001{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00001{transform:matrix(0.200959,-0.003215,0.003999,0.249968,0,0);-ms-transform:matrix(0.200959,-0.003215,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200959,-0.003215,0.003999,0.249968,0,0);}
.m14c2_c00001{transform:matrix(0.200960,0.006638,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200960,0.006638,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200960,0.006638,-0.008254,0.249864,0,0);}
.m1398_c00001{transform:matrix(0.200962,-0.005225,0.006498,0.249916,0,0);-ms-transform:matrix(0.200962,-0.005225,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200962,-0.005225,0.006498,0.249916,0,0);}
.m21d4_c00001{transform:matrix(0.200977,-0.004622,0.005748,0.249934,0,0);-ms-transform:matrix(0.200977,-0.004622,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200977,-0.004622,0.005748,0.249934,0,0);}
.m21fa_c00001{transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);-ms-transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200994,-0.003819,0.004749,0.249955,0,0);}
.m1b5b_c00001{transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200995,0.000000,0.000000,0.250000,0,0);}
.m269e_c00001{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2257_c00001{transform:matrix(0.201011,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.201011,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201011,-0.003417,0.004249,0.249964,0,0);}
.m128a_c00001{transform:matrix(0.201012,-0.005427,0.006748,0.249909,0,0);-ms-transform:matrix(0.201012,-0.005427,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201012,-0.005427,0.006748,0.249909,0,0);}
.m1e61_c00001{transform:matrix(0.201017,-0.005226,0.006498,0.249916,0,0);-ms-transform:matrix(0.201017,-0.005226,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201017,-0.005226,0.006498,0.249916,0,0);}
.m1a60_c00001{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.m1a68_c00001{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m1bd5_c00001{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m564_c00001{transform:matrix(0.201033,0.002211,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201033,0.002211,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201033,0.002211,-0.002750,0.249985,0,0);}
.m1659_c00001{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.m219d_c00001{transform:matrix(0.201051,0.004222,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201051,0.004222,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201051,0.004222,-0.005249,0.249945,0,0);}
.m21f4_c00001{transform:matrix(0.201059,-0.003820,0.004749,0.249955,0,0);-ms-transform:matrix(0.201059,-0.003820,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201059,-0.003820,0.004749,0.249955,0,0);}
.m1af1_c00001{transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201085,0.000000,0.000000,0.250000,0,0);}
.m12e3_c00001{transform:matrix(0.201097,0.005430,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201097,0.005430,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201097,0.005430,-0.006748,0.249909,0,0);}
.m1a1a_c00001{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mce0_c00001{transform:matrix(0.201100,-0.005832,0.007247,0.249895,0,0);-ms-transform:matrix(0.201100,-0.005832,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201100,-0.005832,0.007247,0.249895,0,0);}
.m1464_c00001{transform:matrix(0.201110,0.007650,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201110,0.007650,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201110,0.007650,-0.009503,0.249819,0,0);}
.m14b_c00001{transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);}
.m295b_c00001{transform:matrix(0.201110,-0.002816,0.003500,0.249976,0,0);-ms-transform:matrix(0.201110,-0.002816,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201110,-0.002816,0.003500,0.249976,0,0);}
.m12e5_c00001{transform:matrix(0.201117,0.005430,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201117,0.005430,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201117,0.005430,-0.006748,0.249909,0,0);}
.m1d06_c00001{transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201130,0.000000,0.000000,0.250000,0,0);}
.ma72_c00001{transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);}
.m2039_c00001{transform:matrix(0.201168,-0.006236,0.007746,0.249880,0,0);-ms-transform:matrix(0.201168,-0.006236,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201168,-0.006236,0.007746,0.249880,0,0);}
.mfb3_c00001{transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201170,0.000000,0.000000,0.250000,0,0);}
.mcae_c00001{transform:matrix(0.201170,-0.005834,0.007247,0.249895,0,0);-ms-transform:matrix(0.201170,-0.005834,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201170,-0.005834,0.007247,0.249895,0,0);}
.m239a_c00001{transform:matrix(0.201172,-0.005230,0.006498,0.249916,0,0);-ms-transform:matrix(0.201172,-0.005230,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201172,-0.005230,0.006498,0.249916,0,0);}
.m83d_c00001{transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);-ms-transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201181,-0.005633,0.006997,0.249902,0,0);}
.me0a_c00001{transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201195,0.000000,0.000000,0.250000,0,0);}
.m13c1_c00001{transform:matrix(0.201202,-0.005231,0.006498,0.249916,0,0);-ms-transform:matrix(0.201202,-0.005231,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201202,-0.005231,0.006498,0.249916,0,0);}
.m2584_c00001{transform:matrix(0.201203,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201203,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201203,-0.002616,0.003250,0.249979,0,0);}
.m2634_c00001{transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201210,0.000000,0.000000,0.250000,0,0);}
.mda1_c00001{transform:matrix(0.201221,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201221,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201221,0.002415,-0.003000,0.249982,0,0);}
.m1a8e_c00001{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.meec_c00001{transform:matrix(0.201253,0.002616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201253,0.002616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201253,0.002616,-0.003250,0.249979,0,0);}
.m135_c00001{transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201270,0.000000,0.000000,0.250000,0,0);}
.m244f_c00001{transform:matrix(0.201276,-0.004428,0.005499,0.249940,0,0);-ms-transform:matrix(0.201276,-0.004428,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201276,-0.004428,0.005499,0.249940,0,0);}
.m31e_c00001{transform:matrix(0.201283,-0.002617,0.003250,0.249979,0,0);-ms-transform:matrix(0.201283,-0.002617,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201283,-0.002617,0.003250,0.249979,0,0);}
.m297e_c00001{transform:matrix(0.201290,-0.004026,0.004999,0.249950,0,0);-ms-transform:matrix(0.201290,-0.004026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201290,-0.004026,0.004999,0.249950,0,0);}
.m17f0_c00001{transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201290,0.000000,0.000000,0.250000,0,0);}
.m16e_c00001{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.m455_c00001{transform:matrix(0.201300,-0.006650,0.008254,0.249864,0,0);-ms-transform:matrix(0.201300,-0.006650,0.008254,0.249864,0,0);-webkit-transform:matrix(0.201300,-0.006650,0.008254,0.249864,0,0);}
.m82a_c00001{transform:matrix(0.201311,-0.005637,0.006997,0.249902,0,0);-ms-transform:matrix(0.201311,-0.005637,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201311,-0.005637,0.006997,0.249902,0,0);}
.m1311_c00001{transform:matrix(0.201312,0.005435,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201312,0.005435,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201312,0.005435,-0.006748,0.249909,0,0);}
.m2964_c00001{transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201320,0.000000,0.000000,0.250000,0,0);}
.mc47_c00001{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m23c4_c00001{transform:matrix(0.201326,-0.004429,0.005499,0.249940,0,0);-ms-transform:matrix(0.201326,-0.004429,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201326,-0.004429,0.005499,0.249940,0,0);}
.m2671_c00001{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.mfe_c00001{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.m236_c00001{transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201355,0.000000,0.000000,0.250000,0,0);}
.m1406_c00001{transform:matrix(0.201357,-0.005235,0.006498,0.249916,0,0);-ms-transform:matrix(0.201357,-0.005235,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201357,-0.005235,0.006498,0.249916,0,0);}
.m2661_c00001{transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201370,0.000000,0.000000,0.250000,0,0);}
.m7ba_c00001{transform:matrix(0.201371,-0.005638,0.006997,0.249902,0,0);-ms-transform:matrix(0.201371,-0.005638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201371,-0.005638,0.006997,0.249902,0,0);}
.m24ab_c00001{transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201380,0.000000,0.000000,0.250000,0,0);}
.mea_c00001{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.m19e3_c00001{transform:matrix(0.201399,-0.003222,0.003999,0.249968,0,0);-ms-transform:matrix(0.201399,-0.003222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201399,-0.003222,0.003999,0.249968,0,0);}
.m1ee_c00001{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m22d5_c00001{transform:matrix(0.201404,0.003222,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201404,0.003222,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201404,0.003222,-0.003999,0.249968,0,0);}
.m58a_c00001{transform:matrix(0.201413,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201413,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201413,0.002216,-0.002750,0.249985,0,0);}
.m1a87_c00001{transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201415,0.000000,0.000000,0.250000,0,0);}
.m24cd_c00001{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m10f4_c00001{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m2059_c00001{transform:matrix(0.201433,-0.006244,0.007746,0.249880,0,0);-ms-transform:matrix(0.201433,-0.006244,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201433,-0.006244,0.007746,0.249880,0,0);}
.m1cb6_c00001{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m14ec_c00001{transform:matrix(0.201465,0.006655,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201465,0.006655,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201465,0.006655,-0.008254,0.249864,0,0);}
.mb8b_c00001{transform:matrix(0.201474,0.011103,-0.013757,0.249621,0,0);-ms-transform:matrix(0.201474,0.011103,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.201474,0.011103,-0.013757,0.249621,0,0);}
.m1936_c00001{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m194c_c00001{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.mbcd_c00001{transform:matrix(0.201503,0.002217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201503,0.002217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201503,0.002217,-0.002750,0.249985,0,0);}
.m2a1_c00001{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.m92f_c00001{transform:matrix(0.201509,-0.007665,0.009503,0.249819,0,0);-ms-transform:matrix(0.201509,-0.007665,0.009503,0.249819,0,0);-webkit-transform:matrix(0.201509,-0.007665,0.009503,0.249819,0,0);}
.m180d_c00001{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201515,0.000000,0.000000,0.250000,0,0);}
.m15d8_c00001{transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201540,0.000000,0.000000,0.250000,0,0);}
.m14e9_c00001{transform:matrix(0.201545,0.006658,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201545,0.006658,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201545,0.006658,-0.008254,0.249864,0,0);}
.m1c8e_c00001{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m1501_c00001{transform:matrix(0.201550,0.006658,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201550,0.006658,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201550,0.006658,-0.008254,0.249864,0,0);}
.m12ff_c00001{transform:matrix(0.201552,0.005442,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201552,0.005442,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201552,0.005442,-0.006748,0.249909,0,0);}
.m277a_c00001{transform:matrix(0.201557,-0.003023,0.003750,0.249972,0,0);-ms-transform:matrix(0.201557,-0.003023,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201557,-0.003023,0.003750,0.249972,0,0);}
.m23c8_c00001{transform:matrix(0.201576,-0.004435,0.005499,0.249940,0,0);-ms-transform:matrix(0.201576,-0.004435,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201576,-0.004435,0.005499,0.249940,0,0);}
.mebf_c00001{transform:matrix(0.201600,0.002822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201600,0.002822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201600,0.002822,-0.003500,0.249976,0,0);}
.m1f17_c00001{transform:matrix(0.201605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201605,0.000000,0.000000,0.250000,0,0);}
.m1577_c00001{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.m1bbd_c00001{transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201620,0.000000,0.000000,0.250000,0,0);}
.m1d2a_c00001{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m1f95_c00001{transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201630,0.000000,0.000000,0.250000,0,0);}
.m302_c00001{transform:matrix(0.201638,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201638,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201638,-0.002621,0.003250,0.249979,0,0);}
.m1340_c00001{transform:matrix(0.201640,0.005848,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201640,0.005848,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201640,0.005848,-0.007247,0.249895,0,0);}
.mb8d_c00001{transform:matrix(0.201648,0.002621,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201648,0.002621,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201648,0.002621,-0.003250,0.249979,0,0);}
.m957_c00001{transform:matrix(0.201659,-0.007671,0.009503,0.249819,0,0);-ms-transform:matrix(0.201659,-0.007671,0.009503,0.249819,0,0);-webkit-transform:matrix(0.201659,-0.007671,0.009503,0.249819,0,0);}
.m1ac5_c00001{transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201665,0.000000,0.000000,0.250000,0,0);}
.m708_c00001{transform:matrix(0.201672,0.004840,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201672,0.004840,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201672,0.004840,-0.005998,0.249928,0,0);}
.m20e0_c00001{transform:matrix(0.201672,0.005042,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201672,0.005042,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201672,0.005042,-0.006248,0.249922,0,0);}
.m21ba_c00001{transform:matrix(0.201677,-0.004639,0.005748,0.249934,0,0);-ms-transform:matrix(0.201677,-0.004639,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201677,-0.004639,0.005748,0.249934,0,0);}
.mb1_c00001{transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);}
.m1a6f_c00001{transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201685,0.000000,0.000000,0.250000,0,0);}
.m6b0_c00001{transform:matrix(0.201687,0.004639,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201687,0.004639,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201687,0.004639,-0.005748,0.249934,0,0);}
.ma11_c00001{transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);}
.m14d8_c00001{transform:matrix(0.201700,0.006663,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201700,0.006663,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201700,0.006663,-0.008254,0.249864,0,0);}
.m7e7_c00001{transform:matrix(0.201701,-0.005648,0.006997,0.249902,0,0);-ms-transform:matrix(0.201701,-0.005648,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201701,-0.005648,0.006997,0.249902,0,0);}
.m25f8_c00001{transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201705,0.000000,0.000000,0.250000,0,0);}
.mc93_c00001{transform:matrix(0.201705,-0.005849,0.007247,0.249895,0,0);-ms-transform:matrix(0.201705,-0.005849,0.007247,0.249895,0,0);-webkit-transform:matrix(0.201705,-0.005849,0.007247,0.249895,0,0);}
.m28d3_c00001{transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201710,0.002421,-0.003000,0.249982,0,0);}
.m29c_c00001{transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);-ms-transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201710,-0.002421,0.003000,0.249982,0,0);}
.m3a_c00001{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m3f4_c00001{transform:matrix(0.201726,-0.004236,0.005249,0.249945,0,0);-ms-transform:matrix(0.201726,-0.004236,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201726,-0.004236,0.005249,0.249945,0,0);}
.m519_c00001{transform:matrix(0.201733,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201733,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201733,0.002219,-0.002750,0.249985,0,0);}
.me3f_c00001{transform:matrix(0.201737,0.003631,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201737,0.003631,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201737,0.003631,-0.004499,0.249960,0,0);}
.m1628_c00001{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6a5_c00001{transform:matrix(0.201750,-0.008280,0.010252,0.249790,0,0);-ms-transform:matrix(0.201750,-0.008280,0.010252,0.249790,0,0);-webkit-transform:matrix(0.201750,-0.008280,0.010252,0.249790,0,0);}
.m1580_c00001{transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);}
.m2648_c00001{transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201780,0.000000,0.000000,0.250000,0,0);}
.m1360_c00001{transform:matrix(0.201790,0.005852,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201790,0.005852,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201790,0.005852,-0.007247,0.249895,0,0);}
.m23e9_c00001{transform:matrix(0.201806,-0.004440,0.005499,0.249940,0,0);-ms-transform:matrix(0.201806,-0.004440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201806,-0.004440,0.005499,0.249940,0,0);}
.m1634_c00001{transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201815,0.000000,0.000000,0.250000,0,0);}
.ma5d_c00001{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m1871_c00001{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.m1fcd_c00001{transform:matrix(0.201852,-0.005046,0.006248,0.249922,0,0);-ms-transform:matrix(0.201852,-0.005046,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201852,-0.005046,0.006248,0.249922,0,0);}
.m1a69_c00001{transform:matrix(0.201855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201855,0.000000,0.000000,0.250000,0,0);}
.m26f6_c00001{transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201865,0.000000,0.000000,0.250000,0,0);}
.m2a7_c00001{transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201885,0.000000,0.000000,0.250000,0,0);}
.m1ce4_c00001{transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201890,0.000000,0.000000,0.250000,0,0);}
.m1df1_c00001{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m8cb_c00001{transform:matrix(0.201912,-0.004846,0.005998,0.249928,0,0);-ms-transform:matrix(0.201912,-0.004846,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201912,-0.004846,0.005998,0.249928,0,0);}
.m26a6_c00001{transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201915,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00001{transform:matrix(0.201917,-0.004644,0.005748,0.249934,0,0);-ms-transform:matrix(0.201917,-0.004644,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201917,-0.004644,0.005748,0.249934,0,0);}
.m2334_c00001{transform:matrix(0.201917,0.003635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201917,0.003635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201917,0.003635,-0.004499,0.249960,0,0);}
.m47e_c00001{transform:matrix(0.201929,-0.006058,0.007497,0.249888,0,0);-ms-transform:matrix(0.201929,-0.006058,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201929,-0.006058,0.007497,0.249888,0,0);}
.mfaa_c00001{transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201935,0.000000,0.000000,0.250000,0,0);}
.m218a_c00001{transform:matrix(0.201936,0.005654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201936,0.005654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201936,0.005654,-0.006997,0.249902,0,0);}
.m2101_c00001{transform:matrix(0.201941,0.005654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201941,0.005654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201941,0.005654,-0.006997,0.249902,0,0);}
.m22f4_c00001{transform:matrix(0.201942,0.003635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201942,0.003635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201942,0.003635,-0.004499,0.249960,0,0);}
.m16e6_c00001{transform:matrix(0.201948,-0.006873,0.008504,0.249855,0,0);-ms-transform:matrix(0.201948,-0.006873,0.008504,0.249855,0,0);-webkit-transform:matrix(0.201948,-0.006873,0.008504,0.249855,0,0);}
.mea3_c00001{transform:matrix(0.201955,0.002827,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201955,0.002827,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201955,0.002827,-0.003500,0.249976,0,0);}
.m154d_c00001{transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201960,0.000000,0.000000,0.250000,0,0);}
.mddb_c00001{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.m23a5_c00001{transform:matrix(0.201966,-0.004443,0.005499,0.249940,0,0);-ms-transform:matrix(0.201966,-0.004443,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201966,-0.004443,0.005499,0.249940,0,0);}
.m2222_c00001{transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);-ms-transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201972,-0.004645,0.005748,0.249934,0,0);}
.m241a_c00001{transform:matrix(0.201996,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.201996,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201996,-0.004444,0.005499,0.249940,0,0);}
.m609_c00001{transform:matrix(0.201997,-0.008492,0.010501,0.249779,0,0);-ms-transform:matrix(0.201997,-0.008492,0.010501,0.249779,0,0);-webkit-transform:matrix(0.201997,-0.008492,0.010501,0.249779,0,0);}
.m1bab_c00001{transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202005,0.000000,0.000000,0.250000,0,0);}
.m1150_c00001{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m27ba_c00001{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m249f_c00001{transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);}
.m1df6_c00001{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m243_c00001{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m183a_c00001{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.mf8b_c00001{transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202080,0.000000,0.000000,0.250000,0,0);}
.m22a2_c00001{transform:matrix(0.202089,0.003233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202089,0.003233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202089,0.003233,-0.003999,0.249968,0,0);}
.mc1e_c00001{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.m13e5_c00001{transform:matrix(0.202107,-0.005255,0.006498,0.249916,0,0);-ms-transform:matrix(0.202107,-0.005255,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202107,-0.005255,0.006498,0.249916,0,0);}
.m19e5_c00001{transform:matrix(0.202109,-0.003234,0.003999,0.249968,0,0);-ms-transform:matrix(0.202109,-0.003234,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202109,-0.003234,0.003999,0.249968,0,0);}
.m11ee_c00001{transform:matrix(0.202116,-0.004447,0.005499,0.249940,0,0);-ms-transform:matrix(0.202116,-0.004447,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202116,-0.004447,0.005499,0.249940,0,0);}
.m1e22_c00001{transform:matrix(0.202127,-0.005255,0.006498,0.249916,0,0);-ms-transform:matrix(0.202127,-0.005255,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202127,-0.005255,0.006498,0.249916,0,0);}
.m2750_c00001{transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202130,0.000000,0.000000,0.250000,0,0);}
.m1cb8_c00001{transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);}
.m225c_c00001{transform:matrix(0.202142,-0.004851,0.005998,0.249928,0,0);-ms-transform:matrix(0.202142,-0.004851,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202142,-0.004851,0.005998,0.249928,0,0);}
.m1815_c00001{transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);}
.m132e_c00001{transform:matrix(0.202155,0.005862,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202155,0.005862,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202155,0.005862,-0.007247,0.249895,0,0);}
.m131_c00001{transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202170,0.000000,0.000000,0.250000,0,0);}
.m1891_c00001{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m1861_c00001{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.m114c_c00001{transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202195,0.000000,0.000000,0.250000,0,0);}
.meca_c00001{transform:matrix(0.202205,0.002831,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202205,0.002831,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202205,0.002831,-0.003500,0.249976,0,0);}
.m103f_c00001{transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202210,0.000000,0.000000,0.250000,0,0);}
.m2883_c00001{transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202220,0.000000,0.000000,0.250000,0,0);}
.m1a29_c00001{transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202230,0.000000,0.000000,0.250000,0,0);}
.m29a7_c00001{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m21b3_c00001{transform:matrix(0.202257,-0.004652,0.005748,0.249934,0,0);-ms-transform:matrix(0.202257,-0.004652,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202257,-0.004652,0.005748,0.249934,0,0);}
.m833_c00001{transform:matrix(0.202261,-0.005663,0.006997,0.249902,0,0);-ms-transform:matrix(0.202261,-0.005663,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202261,-0.005663,0.006997,0.249902,0,0);}
.m8b1_c00001{transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202265,0.000000,0.000000,0.250000,0,0);}
.ma50_c00001{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.mc20_c00001{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m29e5_c00001{transform:matrix(0.202301,-0.003439,0.004249,0.249964,0,0);-ms-transform:matrix(0.202301,-0.003439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202301,-0.003439,0.004249,0.249964,0,0);}
.m2294_c00001{transform:matrix(0.202318,-0.003844,0.004749,0.249955,0,0);-ms-transform:matrix(0.202318,-0.003844,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202318,-0.003844,0.004749,0.249955,0,0);}
.m297_c00001{transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202320,0.000000,0.000000,0.250000,0,0);}
.m6f1_c00001{transform:matrix(0.202332,0.005058,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202332,0.005058,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202332,0.005058,-0.006248,0.249922,0,0);}
.m2557_c00001{transform:matrix(0.202335,-0.002833,0.003500,0.249976,0,0);-ms-transform:matrix(0.202335,-0.002833,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202335,-0.002833,0.003500,0.249976,0,0);}
.m1862_c00001{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.m116b_c00001{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.m12df_c00001{transform:matrix(0.202356,0.005464,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202356,0.005464,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202356,0.005464,-0.006748,0.249909,0,0);}
.m24df_c00001{transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202365,0.000000,0.000000,0.250000,0,0);}
.mef5_c00001{transform:matrix(0.202373,0.002631,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202373,0.002631,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202373,0.002631,-0.003250,0.249979,0,0);}
.m134b_c00001{transform:matrix(0.202385,0.005869,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202385,0.005869,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202385,0.005869,-0.007247,0.249895,0,0);}
.m6f_c00001{transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202395,0.000000,0.000000,0.250000,0,0);}
.m28d7_c00001{transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);}
.m1ea1_c00001{transform:matrix(0.202417,-0.005263,0.006498,0.249916,0,0);-ms-transform:matrix(0.202417,-0.005263,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202417,-0.005263,0.006498,0.249916,0,0);}
.m2198_c00001{transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202430,0.004251,-0.005249,0.249945,0,0);}
.m746_c00001{transform:matrix(0.202431,0.005668,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202431,0.005668,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202431,0.005668,-0.006997,0.249902,0,0);}
.m988_c00001{transform:matrix(0.202434,-0.007700,0.009503,0.249819,0,0);-ms-transform:matrix(0.202434,-0.007700,0.009503,0.249819,0,0);-webkit-transform:matrix(0.202434,-0.007700,0.009503,0.249819,0,0);}
.meaf_c00001{transform:matrix(0.202440,0.002834,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202440,0.002834,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202440,0.002834,-0.003500,0.249976,0,0);}
.m17f1_c00001{transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202455,0.000000,0.000000,0.250000,0,0);}
.m5d9_c00001{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.mf13_c00001{transform:matrix(0.202465,0.004049,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202465,0.004049,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202465,0.004049,-0.004999,0.249950,0,0);}
.m17be_c00001{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.m7d9_c00001{transform:matrix(0.202466,-0.005669,0.006997,0.249902,0,0);-ms-transform:matrix(0.202466,-0.005669,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202466,-0.005669,0.006997,0.249902,0,0);}
.m1002_c00001{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m129a_c00001{transform:matrix(0.202476,0.004454,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202476,0.004454,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202476,0.004454,-0.005499,0.249940,0,0);}
.m22d8_c00001{transform:matrix(0.202489,0.003240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202489,0.003240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202489,0.003240,-0.003999,0.249968,0,0);}
.m82d_c00001{transform:matrix(0.202491,-0.005670,0.006997,0.249902,0,0);-ms-transform:matrix(0.202491,-0.005670,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202491,-0.005670,0.006997,0.249902,0,0);}
.m1c36_c00001{transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202510,0.000000,0.000000,0.250000,0,0);}
.m7b4_c00001{transform:matrix(0.202511,-0.005670,0.006997,0.249902,0,0);-ms-transform:matrix(0.202511,-0.005670,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202511,-0.005670,0.006997,0.249902,0,0);}
.mb47_c00001{transform:matrix(0.202521,-0.007906,0.009752,0.249810,0,0);-ms-transform:matrix(0.202521,-0.007906,0.009752,0.249810,0,0);-webkit-transform:matrix(0.202521,-0.007906,0.009752,0.249810,0,0);}
.m20f_c00001{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m1a78_c00001{transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);}
.m14bb_c00001{transform:matrix(0.202540,0.006690,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202540,0.006690,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202540,0.006690,-0.008254,0.249864,0,0);}
.m1a1c_c00001{transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202540,0.000000,0.000000,0.250000,0,0);}
.m72d_c00001{transform:matrix(0.202552,0.005064,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202552,0.005064,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202552,0.005064,-0.006248,0.249922,0,0);}
.mee8_c00001{transform:matrix(0.202558,0.002633,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202558,0.002633,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202558,0.002633,-0.003250,0.249979,0,0);}
.m2843_c00001{transform:matrix(0.202578,-0.002634,0.003250,0.249979,0,0);-ms-transform:matrix(0.202578,-0.002634,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202578,-0.002634,0.003250,0.249979,0,0);}
.m18a_c00001{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m1301_c00001{transform:matrix(0.202581,0.005470,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202581,0.005470,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202581,0.005470,-0.006748,0.249909,0,0);}
.mdda_c00001{transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);}
.m93b_c00001{transform:matrix(0.202593,-0.007706,0.009503,0.249819,0,0);-ms-transform:matrix(0.202593,-0.007706,0.009503,0.249819,0,0);-webkit-transform:matrix(0.202593,-0.007706,0.009503,0.249819,0,0);}
.m211b_c00001{transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);}
.m23c9_c00001{transform:matrix(0.202606,-0.004457,0.005499,0.249940,0,0);-ms-transform:matrix(0.202606,-0.004457,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202606,-0.004457,0.005499,0.249940,0,0);}
.m178f_c00001{transform:matrix(0.202607,-0.005268,0.006498,0.249916,0,0);-ms-transform:matrix(0.202607,-0.005268,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202607,-0.005268,0.006498,0.249916,0,0);}
.mce1_c00001{transform:matrix(0.202610,-0.005876,0.007247,0.249895,0,0);-ms-transform:matrix(0.202610,-0.005876,0.007247,0.249895,0,0);-webkit-transform:matrix(0.202610,-0.005876,0.007247,0.249895,0,0);}
.m1821_c00001{transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202610,0.000000,0.000000,0.250000,0,0);}
.m20ee_c00001{transform:matrix(0.202612,0.005065,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202612,0.005065,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202612,0.005065,-0.006248,0.249922,0,0);}
.me25_c00001{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.mc1d_c00001{transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202630,0.000000,0.000000,0.250000,0,0);}
.mfac_c00001{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.m17a9_c00001{transform:matrix(0.202642,-0.003648,0.004499,0.249960,0,0);-ms-transform:matrix(0.202642,-0.003648,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202642,-0.003648,0.004499,0.249960,0,0);}
.m1b25_c00001{transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202645,0.000000,0.000000,0.250000,0,0);}
.mc24_c00001{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m295d_c00001{transform:matrix(0.202655,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202655,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202655,-0.002837,0.003500,0.249976,0,0);}
.m1ddc_c00001{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m5ea_c00001{transform:matrix(0.202676,-0.008521,0.010501,0.249779,0,0);-ms-transform:matrix(0.202676,-0.008521,0.010501,0.249779,0,0);-webkit-transform:matrix(0.202676,-0.008521,0.010501,0.249779,0,0);}
.m277c_c00001{transform:matrix(0.202677,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202677,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202677,-0.003040,0.003750,0.249972,0,0);}
.mc56_c00001{transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202690,0.000000,0.000000,0.250000,0,0);}
.m1ff3_c00001{transform:matrix(0.202692,-0.005067,0.006248,0.249922,0,0);-ms-transform:matrix(0.202692,-0.005067,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202692,-0.005067,0.006248,0.249922,0,0);}
.m14cb_c00001{transform:matrix(0.202699,0.006696,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202699,0.006696,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202699,0.006696,-0.008254,0.249864,0,0);}
.m1267_c00001{transform:matrix(0.202706,-0.005473,0.006748,0.249909,0,0);-ms-transform:matrix(0.202706,-0.005473,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202706,-0.005473,0.006748,0.249909,0,0);}
.m12f5_c00001{transform:matrix(0.202711,0.005473,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202711,0.005473,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202711,0.005473,-0.006748,0.249909,0,0);}
.m137e_c00001{transform:matrix(0.202716,-0.005271,0.006498,0.249916,0,0);-ms-transform:matrix(0.202716,-0.005271,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202716,-0.005271,0.006498,0.249916,0,0);}
.m20fa_c00001{transform:matrix(0.202721,0.005676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202721,0.005676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202721,0.005676,-0.006997,0.249902,0,0);}
.m21e2_c00001{transform:matrix(0.202727,-0.004865,0.005998,0.249928,0,0);-ms-transform:matrix(0.202727,-0.004865,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202727,-0.004865,0.005998,0.249928,0,0);}
.m18fe_c00001{transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);}
.m2540_c00001{transform:matrix(0.202732,-0.003041,0.003750,0.249972,0,0);-ms-transform:matrix(0.202732,-0.003041,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202732,-0.003041,0.003750,0.249972,0,0);}
.m1972_c00001{transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202735,0.000000,0.000000,0.250000,0,0);}
.m235c_c00001{transform:matrix(0.202762,0.003650,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202762,0.003650,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202762,0.003650,-0.004499,0.249960,0,0);}
.m1c51_c00001{transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);}
.m1129_c00001{transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202785,0.000000,0.000000,0.250000,0,0);}
.mef1_c00001{transform:matrix(0.202788,0.002636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202788,0.002636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202788,0.002636,-0.003250,0.249979,0,0);}
.m1533_c00001{transform:matrix(0.202789,0.006699,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202789,0.006699,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202789,0.006699,-0.008254,0.249864,0,0);}
.m300_c00001{transform:matrix(0.202798,-0.002636,0.003250,0.249979,0,0);-ms-transform:matrix(0.202798,-0.002636,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202798,-0.002636,0.003250,0.249979,0,0);}
.m9c5_c00001{transform:matrix(0.202830,0.002840,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202830,0.002840,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202830,0.002840,-0.003500,0.249976,0,0);}
.m211c_c00001{transform:matrix(0.202831,0.005679,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202831,0.005679,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202831,0.005679,-0.006997,0.249902,0,0);}
.m3e1_c00001{transform:matrix(0.202831,-0.005679,0.006997,0.249902,0,0);-ms-transform:matrix(0.202831,-0.005679,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202831,-0.005679,0.006997,0.249902,0,0);}
.m123e_c00001{transform:matrix(0.202841,-0.005477,0.006748,0.249909,0,0);-ms-transform:matrix(0.202841,-0.005477,0.006748,0.249909,0,0);-webkit-transform:matrix(0.202841,-0.005477,0.006748,0.249909,0,0);}
.me0e_c00001{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m1c23_c00001{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m275d_c00001{transform:matrix(0.202877,-0.003043,0.003750,0.249972,0,0);-ms-transform:matrix(0.202877,-0.003043,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202877,-0.003043,0.003750,0.249972,0,0);}
.m21f3_c00001{transform:matrix(0.202898,-0.003855,0.004749,0.249955,0,0);-ms-transform:matrix(0.202898,-0.003855,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202898,-0.003855,0.004749,0.249955,0,0);}
.m1e7f_c00001{transform:matrix(0.202901,-0.005275,0.006498,0.249916,0,0);-ms-transform:matrix(0.202901,-0.005275,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202901,-0.005275,0.006498,0.249916,0,0);}
.m1423_c00001{transform:matrix(0.202911,-0.005276,0.006498,0.249916,0,0);-ms-transform:matrix(0.202911,-0.005276,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202911,-0.005276,0.006498,0.249916,0,0);}
.m754_c00001{transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202915,0.005682,-0.006997,0.249902,0,0);}
.m16d7_c00001{transform:matrix(0.202923,-0.006906,0.008504,0.249855,0,0);-ms-transform:matrix(0.202923,-0.006906,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202923,-0.006906,0.008504,0.249855,0,0);}
.m202d_c00001{transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);-ms-transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202923,-0.006291,0.007746,0.249880,0,0);}
.m1ea7_c00001{transform:matrix(0.202926,-0.005276,0.006498,0.249916,0,0);-ms-transform:matrix(0.202926,-0.005276,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202926,-0.005276,0.006498,0.249916,0,0);}
.m20e2_c00001{transform:matrix(0.202927,0.005073,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202927,0.005073,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202927,0.005073,-0.006248,0.249922,0,0);}
.m179f_c00001{transform:matrix(0.202937,-0.003653,0.004499,0.249960,0,0);-ms-transform:matrix(0.202937,-0.003653,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202937,-0.003653,0.004499,0.249960,0,0);}
.mdf3_c00001{transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202940,0.000000,0.000000,0.250000,0,0);}
.m221e_c00001{transform:matrix(0.202941,-0.004668,0.005748,0.249934,0,0);-ms-transform:matrix(0.202941,-0.004668,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202941,-0.004668,0.005748,0.249934,0,0);}
.m1584_c00001{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m21a0_c00001{transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202950,0.004262,-0.005249,0.249945,0,0);}
.m231d_c00001{transform:matrix(0.202952,0.003653,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202952,0.003653,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202952,0.003653,-0.004499,0.249960,0,0);}
.mef7_c00001{transform:matrix(0.202953,0.002638,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202953,0.002638,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202953,0.002638,-0.003250,0.249979,0,0);}
.m116d_c00001{transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);}
.m1e29_c00001{transform:matrix(0.202966,-0.005277,0.006498,0.249916,0,0);-ms-transform:matrix(0.202966,-0.005277,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202966,-0.005277,0.006498,0.249916,0,0);}
.m11d3_c00001{transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);-ms-transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202971,-0.004465,0.005499,0.249940,0,0);}
.m1b77_c00001{transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);-ms-transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202983,-0.003857,0.004749,0.249955,0,0);}
.m25df_c00001{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.m1016_c00001{transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202995,0.000000,0.000000,0.250000,0,0);}
.m783_c00001{transform:matrix(0.203016,0.004669,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203016,0.004669,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203016,0.004669,-0.005748,0.249934,0,0);}
.m100c_c00001{transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203020,0.000000,0.000000,0.250000,0,0);}
.m2ed_c00001{transform:matrix(0.203023,-0.002639,0.003250,0.249979,0,0);-ms-transform:matrix(0.203023,-0.002639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203023,-0.002639,0.003250,0.249979,0,0);}
.m14bd_c00001{transform:matrix(0.203029,0.006707,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203029,0.006707,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203029,0.006707,-0.008254,0.249864,0,0);}
.m19fb_c00001{transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203035,0.000000,0.000000,0.250000,0,0);}
.m2873_c00001{transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203060,0.000000,0.000000,0.250000,0,0);}
.m1e36_c00001{transform:matrix(0.203061,-0.005280,0.006498,0.249916,0,0);-ms-transform:matrix(0.203061,-0.005280,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203061,-0.005280,0.006498,0.249916,0,0);}
.m1db5_c00001{transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203085,0.000000,0.000000,0.250000,0,0);}
.m1d22_c00001{transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);}
.m2327_c00001{transform:matrix(0.203107,0.003656,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203107,0.003656,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203107,0.003656,-0.004499,0.249960,0,0);}
.mc7f_c00001{transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);-ms-transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203110,-0.005890,0.007247,0.249895,0,0);}
.m21a9_c00001{transform:matrix(0.203116,-0.004672,0.005748,0.249934,0,0);-ms-transform:matrix(0.203116,-0.004672,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203116,-0.004672,0.005748,0.249934,0,0);}
.mfc9_c00001{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m200f_c00001{transform:matrix(0.203127,-0.006297,0.007746,0.249880,0,0);-ms-transform:matrix(0.203127,-0.006297,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203127,-0.006297,0.007746,0.249880,0,0);}
.m45a_c00001{transform:matrix(0.203149,-0.006711,0.008254,0.249864,0,0);-ms-transform:matrix(0.203149,-0.006711,0.008254,0.249864,0,0);-webkit-transform:matrix(0.203149,-0.006711,0.008254,0.249864,0,0);}
.m20f7_c00001{transform:matrix(0.203165,0.005689,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203165,0.005689,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203165,0.005689,-0.006997,0.249902,0,0);}
.m143b_c00001{transform:matrix(0.203166,-0.005485,0.006748,0.249909,0,0);-ms-transform:matrix(0.203166,-0.005485,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203166,-0.005485,0.006748,0.249909,0,0);}
.m1ab6_c00001{transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);}
.m1e33_c00001{transform:matrix(0.203186,-0.005283,0.006498,0.249916,0,0);-ms-transform:matrix(0.203186,-0.005283,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203186,-0.005283,0.006498,0.249916,0,0);}
.m20de_c00001{transform:matrix(0.203192,0.005080,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203192,0.005080,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203192,0.005080,-0.006248,0.249922,0,0);}
.m139_c00001{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m2449_c00001{transform:matrix(0.203201,-0.004470,0.005499,0.249940,0,0);-ms-transform:matrix(0.203201,-0.004470,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203201,-0.004470,0.005499,0.249940,0,0);}
.m1471_c00001{transform:matrix(0.203204,0.006712,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203204,0.006712,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203204,0.006712,-0.008254,0.249864,0,0);}
.m17c0_c00001{transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);}
.m13cf_c00001{transform:matrix(0.203221,-0.005284,0.006498,0.249916,0,0);-ms-transform:matrix(0.203221,-0.005284,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203221,-0.005284,0.006498,0.249916,0,0);}
.m6d4_c00001{transform:matrix(0.203227,0.005081,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203227,0.005081,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203227,0.005081,-0.006248,0.249922,0,0);}
.m2310_c00001{transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203237,0.003658,-0.004499,0.249960,0,0);}
.m22d1_c00001{transform:matrix(0.203244,0.003252,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203244,0.003252,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203244,0.003252,-0.003999,0.249968,0,0);}
.mb3f_c00001{transform:matrix(0.203245,-0.007934,0.009752,0.249810,0,0);-ms-transform:matrix(0.203245,-0.007934,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203245,-0.007934,0.009752,0.249810,0,0);}
.m12de_c00001{transform:matrix(0.203246,0.005488,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203246,0.005488,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203246,0.005488,-0.006748,0.249909,0,0);}
.m2286_c00001{transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-ms-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);}
.m156d_c00001{transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203255,0.000000,0.000000,0.250000,0,0);}
.m237e_c00001{transform:matrix(0.203257,0.003659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203257,0.003659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203257,0.003659,-0.004499,0.249960,0,0);}
.m131d_c00001{transform:matrix(0.203266,0.005285,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203266,0.005285,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203266,0.005285,-0.006498,0.249916,0,0);}
.m35f_c00001{transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);-ms-transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);}
.m2546_c00001{transform:matrix(0.203277,-0.003049,0.003750,0.249972,0,0);-ms-transform:matrix(0.203277,-0.003049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203277,-0.003049,0.003750,0.249972,0,0);}
.m2619_c00001{transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203280,0.000000,0.000000,0.250000,0,0);}
.m1a1f_c00001{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.me46_c00001{transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203297,0.003659,-0.004499,0.249960,0,0);}
.m1aea_c00001{transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203305,0.000000,0.000000,0.250000,0,0);}
.m27a1_c00001{transform:matrix(0.203310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203310,0.000000,0.000000,0.250000,0,0);}
.mb85_c00001{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.mb71_c00001{transform:matrix(0.203325,-0.005896,0.007247,0.249895,0,0);-ms-transform:matrix(0.203325,-0.005896,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203325,-0.005896,0.007247,0.249895,0,0);}
.m1d81_c00001{transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);}
.m9ce_c00001{transform:matrix(0.203330,0.002847,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203330,0.002847,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203330,0.002847,-0.003500,0.249976,0,0);}
.m13a0_c00001{transform:matrix(0.203331,-0.005287,0.006498,0.249916,0,0);-ms-transform:matrix(0.203331,-0.005287,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203331,-0.005287,0.006498,0.249916,0,0);}
.m2922_c00001{transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);}
.maa_c00001{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.m16e9_c00001{transform:matrix(0.203341,-0.005287,0.006498,0.249916,0,0);-ms-transform:matrix(0.203341,-0.005287,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203341,-0.005287,0.006498,0.249916,0,0);}
.mfd1_c00001{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m1ea4_c00001{transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);-ms-transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203351,-0.005287,0.006498,0.249916,0,0);}
.m1528_c00001{transform:matrix(0.203359,0.006718,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203359,0.006718,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203359,0.006718,-0.008254,0.249864,0,0);}
.m152d_c00001{transform:matrix(0.203364,0.006718,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203364,0.006718,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203364,0.006718,-0.008254,0.249864,0,0);}
.m1c43_c00001{transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203370,0.000000,0.000000,0.250000,0,0);}
.m55f_c00001{transform:matrix(0.203378,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203378,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203378,0.002237,-0.002750,0.249985,0,0);}
.m163_c00001{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m1903_c00001{transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203395,0.000000,0.000000,0.250000,0,0);}
.m2225_c00001{transform:matrix(0.203411,-0.004475,0.005499,0.249940,0,0);-ms-transform:matrix(0.203411,-0.004475,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203411,-0.004475,0.005499,0.249940,0,0);}
.m9e4_c00001{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.m416_c00001{transform:matrix(0.203425,-0.004272,0.005249,0.249945,0,0);-ms-transform:matrix(0.203425,-0.004272,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203425,-0.004272,0.005249,0.249945,0,0);}
.m162_c00001{transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);}
.m1f53_c00001{transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203435,0.000000,0.000000,0.250000,0,0);}
.m17d_c00001{transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203445,0.000000,0.000000,0.250000,0,0);}
.m166_c00001{transform:matrix(0.203470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203470,0.000000,0.000000,0.250000,0,0);}
.m22fe_c00001{transform:matrix(0.203477,0.003663,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203477,0.003663,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203477,0.003663,-0.004499,0.249960,0,0);}
.m6a8_c00001{transform:matrix(0.203479,-0.008351,0.010252,0.249790,0,0);-ms-transform:matrix(0.203479,-0.008351,0.010252,0.249790,0,0);-webkit-transform:matrix(0.203479,-0.008351,0.010252,0.249790,0,0);}
.m103_c00001{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.mae0_c00001{transform:matrix(0.203495,-0.007944,0.009752,0.249810,0,0);-ms-transform:matrix(0.203495,-0.007944,0.009752,0.249810,0,0);-webkit-transform:matrix(0.203495,-0.007944,0.009752,0.249810,0,0);}
.m2ab_c00001{transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);}
.m2110_c00001{transform:matrix(0.203520,0.005699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203520,0.005699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203520,0.005699,-0.006997,0.249902,0,0);}
.m1680_c00001{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m1f78_c00001{transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203535,0.000000,0.000000,0.250000,0,0);}
.m764_c00001{transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);}
.m1474_c00001{transform:matrix(0.203554,0.006724,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203554,0.006724,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203554,0.006724,-0.008254,0.249864,0,0);}
.m16b4_c00001{transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);}
.m1495_c00001{transform:matrix(0.203559,0.006724,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203559,0.006724,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203559,0.006724,-0.008254,0.249864,0,0);}
.m2bc_c00001{transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203560,0.000000,0.000000,0.250000,0,0);}
.m4b7_c00001{transform:matrix(0.203561,-0.006520,0.008004,0.249872,0,0);-ms-transform:matrix(0.203561,-0.006520,0.008004,0.249872,0,0);-webkit-transform:matrix(0.203561,-0.006520,0.008004,0.249872,0,0);}
.m1400_c00001{transform:matrix(0.203561,-0.005293,0.006498,0.249916,0,0);-ms-transform:matrix(0.203561,-0.005293,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203561,-0.005293,0.006498,0.249916,0,0);}
.ma90_c00001{transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);}
.m1226_c00001{transform:matrix(0.203586,-0.005497,0.006748,0.249909,0,0);-ms-transform:matrix(0.203586,-0.005497,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203586,-0.005497,0.006748,0.249909,0,0);}
.mca8_c00001{transform:matrix(0.203594,-0.005904,0.007247,0.249895,0,0);-ms-transform:matrix(0.203594,-0.005904,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203594,-0.005904,0.007247,0.249895,0,0);}
.m1fc7_c00001{transform:matrix(0.203596,-0.005090,0.006248,0.249922,0,0);-ms-transform:matrix(0.203596,-0.005090,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203596,-0.005090,0.006248,0.249922,0,0);}
.md6_c00001{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m15af_c00001{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m1657_c00001{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m1207_c00001{transform:matrix(0.203621,-0.004480,0.005499,0.249940,0,0);-ms-transform:matrix(0.203621,-0.004480,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203621,-0.004480,0.005499,0.249940,0,0);}
.m1697_c00001{transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);}
.m1d6e_c00001{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m31d_c00001{transform:matrix(0.203663,-0.002648,0.003250,0.249979,0,0);-ms-transform:matrix(0.203663,-0.002648,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203663,-0.002648,0.003250,0.249979,0,0);}
.mead_c00001{transform:matrix(0.203665,0.002851,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203665,0.002851,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203665,0.002851,-0.003500,0.249976,0,0);}
.m266f_c00001{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203720,0.000000,0.000000,0.250000,0,0);}
.mf77_c00001{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.m6ef_c00001{transform:matrix(0.203731,0.005093,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203731,0.005093,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203731,0.005093,-0.006248,0.249922,0,0);}
.m21b7_c00001{transform:matrix(0.203746,-0.004686,0.005748,0.249934,0,0);-ms-transform:matrix(0.203746,-0.004686,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203746,-0.004686,0.005748,0.249934,0,0);}
.m1169_c00001{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2167_c00001{transform:matrix(0.203750,0.005705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203750,0.005705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203750,0.005705,-0.006997,0.249902,0,0);}
.m2419_c00001{transform:matrix(0.203756,-0.004483,0.005499,0.249940,0,0);-ms-transform:matrix(0.203756,-0.004483,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203756,-0.004483,0.005499,0.249940,0,0);}
.m208_c00001{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m211d_c00001{transform:matrix(0.203775,0.005706,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203775,0.005706,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203775,0.005706,-0.006997,0.249902,0,0);}
.mcb_c00001{transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203795,0.000000,0.000000,0.250000,0,0);}
.m1ccf_c00001{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m9df_c00001{transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203810,0.000000,0.000000,0.250000,0,0);}
.m1bc1_c00001{transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203830,0.000000,0.000000,0.250000,0,0);}
.m1c1b_c00001{transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203840,0.000000,0.000000,0.250000,0,0);}
.m6c3_c00001{transform:matrix(0.203851,0.005096,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203851,0.005096,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203851,0.005096,-0.006248,0.249922,0,0);}
.md9_c00001{transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203860,0.000000,0.000000,0.250000,0,0);}
.m141d_c00001{transform:matrix(0.203861,-0.005300,0.006498,0.249916,0,0);-ms-transform:matrix(0.203861,-0.005300,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203861,-0.005300,0.006498,0.249916,0,0);}
.m1d6d_c00001{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.m10d7_c00001{transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203880,0.000000,0.000000,0.250000,0,0);}
.m13c4_c00001{transform:matrix(0.203881,-0.005301,0.006498,0.249916,0,0);-ms-transform:matrix(0.203881,-0.005301,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203881,-0.005301,0.006498,0.249916,0,0);}
.m5c1_c00001{transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203890,0.000000,0.000000,0.250000,0,0);}
.m13df_c00001{transform:matrix(0.203891,-0.005301,0.006498,0.249916,0,0);-ms-transform:matrix(0.203891,-0.005301,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203891,-0.005301,0.006498,0.249916,0,0);}
.m344_c00001{transform:matrix(0.203893,-0.002651,0.003250,0.249979,0,0);-ms-transform:matrix(0.203893,-0.002651,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203893,-0.002651,0.003250,0.249979,0,0);}
.m9cc_c00001{transform:matrix(0.203905,0.002855,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203905,0.002855,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203905,0.002855,-0.003500,0.249976,0,0);}
.mc44_c00001{transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203910,0.000000,0.000000,0.250000,0,0);}
.m8bf_c00001{transform:matrix(0.203921,-0.004894,0.005998,0.249928,0,0);-ms-transform:matrix(0.203921,-0.004894,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203921,-0.004894,0.005998,0.249928,0,0);}
.m9d6_c00001{transform:matrix(0.203922,0.003671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203922,0.003671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203922,0.003671,-0.004499,0.249960,0,0);}
.mda2_c00001{transform:matrix(0.203925,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203925,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203925,0.002447,-0.003000,0.249982,0,0);}
.m2394_c00001{transform:matrix(0.203931,-0.005302,0.006498,0.249916,0,0);-ms-transform:matrix(0.203931,-0.005302,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203931,-0.005302,0.006498,0.249916,0,0);}
.m1bfc_c00001{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m7b3_c00001{transform:matrix(0.203935,-0.005710,0.006997,0.249902,0,0);-ms-transform:matrix(0.203935,-0.005710,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203935,-0.005710,0.006997,0.249902,0,0);}
.m277_c00001{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m1395_c00001{transform:matrix(0.203941,-0.005302,0.006498,0.249916,0,0);-ms-transform:matrix(0.203941,-0.005302,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203941,-0.005302,0.006498,0.249916,0,0);}
.m172c_c00001{transform:matrix(0.203956,-0.005303,0.006498,0.249916,0,0);-ms-transform:matrix(0.203956,-0.005303,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203956,-0.005303,0.006498,0.249916,0,0);}
.mfde_c00001{transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203960,0.000000,0.000000,0.250000,0,0);}
.m10e2_c00001{transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);}
.mc0c_c00001{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m7d0_c00001{transform:matrix(0.203980,-0.005711,0.006997,0.249902,0,0);-ms-transform:matrix(0.203980,-0.005711,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203980,-0.005711,0.006997,0.249902,0,0);}
.m1fd2_c00001{transform:matrix(0.204011,-0.005100,0.006248,0.249922,0,0);-ms-transform:matrix(0.204011,-0.005100,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204011,-0.005100,0.006248,0.249922,0,0);}
.me50_c00001{transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204042,0.003673,-0.004499,0.249960,0,0);}
.m12e8_c00001{transform:matrix(0.204046,0.005509,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204046,0.005509,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204046,0.005509,-0.006748,0.249909,0,0);}
.m6a3_c00001{transform:matrix(0.204048,-0.008374,0.010252,0.249790,0,0);-ms-transform:matrix(0.204048,-0.008374,0.010252,0.249790,0,0);-webkit-transform:matrix(0.204048,-0.008374,0.010252,0.249790,0,0);}
.m2a2_c00001{transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);}
.m132_c00001{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m18dc_c00001{transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204080,0.000000,0.000000,0.250000,0,0);}
.m17e5_c00001{transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);}
.ma85_c00001{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m1241_c00001{transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);-ms-transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204091,-0.005510,0.006748,0.249909,0,0);}
.m13f_c00001{transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204095,0.000000,0.000000,0.250000,0,0);}
.m5e7_c00001{transform:matrix(0.204103,-0.009194,0.011250,0.249747,0,0);-ms-transform:matrix(0.204103,-0.009194,0.011250,0.249747,0,0);-webkit-transform:matrix(0.204103,-0.009194,0.011250,0.249747,0,0);}
.mcb0_c00001{transform:matrix(0.204109,-0.005919,0.007247,0.249895,0,0);-ms-transform:matrix(0.204109,-0.005919,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204109,-0.005919,0.007247,0.249895,0,0);}
.mbe_c00001{transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204110,0.000000,0.000000,0.250000,0,0);}
.m1e70_c00001{transform:matrix(0.204111,-0.005307,0.006498,0.249916,0,0);-ms-transform:matrix(0.204111,-0.005307,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204111,-0.005307,0.006498,0.249916,0,0);}
.m1518_c00001{transform:matrix(0.204129,0.006743,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204129,0.006743,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204129,0.006743,-0.008254,0.249864,0,0);}
.m11e_c00001{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.m2828_c00001{transform:matrix(0.204148,-0.002654,0.003250,0.249979,0,0);-ms-transform:matrix(0.204148,-0.002654,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204148,-0.002654,0.003250,0.249979,0,0);}
.m2200_c00001{transform:matrix(0.204148,-0.003879,0.004749,0.249955,0,0);-ms-transform:matrix(0.204148,-0.003879,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204148,-0.003879,0.004749,0.249955,0,0);}
.m2385_c00001{transform:matrix(0.204156,-0.005308,0.006498,0.249916,0,0);-ms-transform:matrix(0.204156,-0.005308,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204156,-0.005308,0.006498,0.249916,0,0);}
.m78e_c00001{transform:matrix(0.204166,0.004696,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204166,0.004696,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204166,0.004696,-0.005748,0.249934,0,0);}
.mf31_c00001{transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);}
.m1768_c00001{transform:matrix(0.204171,-0.005308,0.006498,0.249916,0,0);-ms-transform:matrix(0.204171,-0.005308,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204171,-0.005308,0.006498,0.249916,0,0);}
.m23f4_c00001{transform:matrix(0.204181,-0.004492,0.005499,0.249940,0,0);-ms-transform:matrix(0.204181,-0.004492,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204181,-0.004492,0.005499,0.249940,0,0);}
.m12e1_c00001{transform:matrix(0.204186,0.005513,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204186,0.005513,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204186,0.005513,-0.006748,0.249909,0,0);}
.m11a6_c00001{transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);-ms-transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204191,-0.004492,0.005499,0.249940,0,0);}
.m2295_c00001{transform:matrix(0.204203,-0.003880,0.004749,0.249955,0,0);-ms-transform:matrix(0.204203,-0.003880,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204203,-0.003880,0.004749,0.249955,0,0);}
.m25d4_c00001{transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204210,0.000000,0.000000,0.250000,0,0);}
.m196a_c00001{transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204220,0.000000,0.000000,0.250000,0,0);}
.m1c61_c00001{transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204230,0.000000,0.000000,0.250000,0,0);}
.m13f1_c00001{transform:matrix(0.204231,-0.005310,0.006498,0.249916,0,0);-ms-transform:matrix(0.204231,-0.005310,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204231,-0.005310,0.006498,0.249916,0,0);}
.m574_c00001{transform:matrix(0.204238,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204238,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204238,0.002247,-0.002750,0.249985,0,0);}
.m1853_c00001{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.m2474_c00001{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md8d_c00001{transform:matrix(0.204250,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204250,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204250,0.002451,-0.003000,0.249982,0,0);}
.m1a4e_c00001{transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);}
.m1848_c00001{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m166b_c00001{transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204290,0.000000,0.000000,0.250000,0,0);}
.m1de3_c00001{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m230f_c00001{transform:matrix(0.204307,0.003678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204307,0.003678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204307,0.003678,-0.004499,0.249960,0,0);}
.m54e_c00001{transform:matrix(0.204308,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204308,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204308,0.002247,-0.002750,0.249985,0,0);}
.m20ab_c00001{transform:matrix(0.204311,0.005108,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204311,0.005108,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204311,0.005108,-0.006248,0.249922,0,0);}
.m3e0_c00001{transform:matrix(0.204315,-0.005721,0.006997,0.249902,0,0);-ms-transform:matrix(0.204315,-0.005721,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204315,-0.005721,0.006997,0.249902,0,0);}
.m2473_c00001{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.ma0_c00001{transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204340,0.000000,0.000000,0.250000,0,0);}
.m2238_c00001{transform:matrix(0.204345,-0.004291,0.005249,0.249945,0,0);-ms-transform:matrix(0.204345,-0.004291,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204345,-0.004291,0.005249,0.249945,0,0);}
.m2988_c00001{transform:matrix(0.204349,-0.003270,0.003999,0.249968,0,0);-ms-transform:matrix(0.204349,-0.003270,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204349,-0.003270,0.003999,0.249968,0,0);}
.m2030_c00001{transform:matrix(0.204357,-0.006335,0.007746,0.249880,0,0);-ms-transform:matrix(0.204357,-0.006335,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204357,-0.006335,0.007746,0.249880,0,0);}
.m22d9_c00001{transform:matrix(0.204364,0.003270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204364,0.003270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204364,0.003270,-0.003999,0.249968,0,0);}
.m1137_c00001{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m24a2_c00001{transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);}
.m9d1_c00001{transform:matrix(0.204387,0.003679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204387,0.003679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204387,0.003679,-0.004499,0.249960,0,0);}
.me0d_c00001{transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);}
.m15fd_c00001{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m731_c00001{transform:matrix(0.204396,0.005110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204396,0.005110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204396,0.005110,-0.006248,0.249922,0,0);}
.md82_c00001{transform:matrix(0.204408,0.002657,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204408,0.002657,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204408,0.002657,-0.003250,0.249979,0,0);}
.m26a2_c00001{transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204410,0.000000,0.000000,0.250000,0,0);}
.m1b4d_c00001{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.m220a_c00001{transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);-ms-transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204423,-0.003884,0.004749,0.249955,0,0);}
.m1f45_c00001{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204440,0.000000,0.000000,0.250000,0,0);}
.m150b_c00001{transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204443,0.006753,-0.008254,0.249864,0,0);}
.m596_c00001{transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);}
.m16b7_c00001{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m82e_c00001{transform:matrix(0.204455,-0.005725,0.006997,0.249902,0,0);-ms-transform:matrix(0.204455,-0.005725,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204455,-0.005725,0.006997,0.249902,0,0);}
.md7_c00001{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m1635_c00001{transform:matrix(0.204470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204470,0.000000,0.000000,0.250000,0,0);}
.m1ae2_c00001{transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);}
.mb21_c00001{transform:matrix(0.204484,-0.007983,0.009752,0.249810,0,0);-ms-transform:matrix(0.204484,-0.007983,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204484,-0.007983,0.009752,0.249810,0,0);}
.m2336_c00001{transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204502,0.003681,-0.004499,0.249960,0,0);}
.m244d_c00001{transform:matrix(0.204506,-0.004499,0.005499,0.249940,0,0);-ms-transform:matrix(0.204506,-0.004499,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204506,-0.004499,0.005499,0.249940,0,0);}
.m10bb_c00001{transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);}
.mcd6_c00001{transform:matrix(0.204519,-0.005931,0.007247,0.249895,0,0);-ms-transform:matrix(0.204519,-0.005931,0.007247,0.249895,0,0);-webkit-transform:matrix(0.204519,-0.005931,0.007247,0.249895,0,0);}
.m292e_c00001{transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204535,0.000000,0.000000,0.250000,0,0);}
.m1a55_c00001{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a4a_c00001{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.mbd6_c00001{transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);}
.m1aab_c00001{transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204565,0.000000,0.000000,0.250000,0,0);}
.m1ed9_c00001{transform:matrix(0.204571,-0.005319,0.006498,0.249916,0,0);-ms-transform:matrix(0.204571,-0.005319,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204571,-0.005319,0.006498,0.249916,0,0);}
.m1f6f_c00001{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m254a_c00001{transform:matrix(0.204577,-0.003069,0.003750,0.249972,0,0);-ms-transform:matrix(0.204577,-0.003069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204577,-0.003069,0.003750,0.249972,0,0);}
.m518_c00001{transform:matrix(0.204583,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204583,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204583,0.002250,-0.002750,0.249985,0,0);}
.m1fbd_c00001{transform:matrix(0.204584,-0.008601,0.010501,0.249779,0,0);-ms-transform:matrix(0.204584,-0.008601,0.010501,0.249779,0,0);-webkit-transform:matrix(0.204584,-0.008601,0.010501,0.249779,0,0);}
.m1405_c00001{transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);-ms-transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204586,-0.005319,0.006498,0.249916,0,0);}
.m1fc5_c00001{transform:matrix(0.204586,-0.005115,0.006248,0.249922,0,0);-ms-transform:matrix(0.204586,-0.005115,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204586,-0.005115,0.006248,0.249922,0,0);}
.m682_c00001{transform:matrix(0.204593,-0.008397,0.010252,0.249790,0,0);-ms-transform:matrix(0.204593,-0.008397,0.010252,0.249790,0,0);-webkit-transform:matrix(0.204593,-0.008397,0.010252,0.249790,0,0);}
.mab6_c00001{transform:matrix(0.204609,-0.007988,0.009752,0.249810,0,0);-ms-transform:matrix(0.204609,-0.007988,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204609,-0.007988,0.009752,0.249810,0,0);}
.m17b4_c00001{transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204610,0.000000,0.000000,0.250000,0,0);}
.m1010_c00001{transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);}
.m290c_c00001{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m24ec_c00001{transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204645,0.000000,0.000000,0.250000,0,0);}
.m12fe_c00001{transform:matrix(0.204645,0.005525,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204645,0.005525,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204645,0.005525,-0.006748,0.249909,0,0);}
.m1bc3_c00001{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m1caa_c00001{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m1f80_c00001{transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204665,0.000000,0.000000,0.250000,0,0);}
.md9a_c00001{transform:matrix(0.204670,0.002456,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204670,0.002456,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204670,0.002456,-0.003000,0.249982,0,0);}
.m1486_c00001{transform:matrix(0.204673,0.006761,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204673,0.006761,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204673,0.006761,-0.008254,0.249864,0,0);}
.m166d_c00001{transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204685,0.000000,0.000000,0.250000,0,0);}
.m215a_c00001{transform:matrix(0.204690,0.005731,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204690,0.005731,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204690,0.005731,-0.006997,0.249902,0,0);}
.m159d_c00001{transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204690,0.000000,0.000000,0.250000,0,0);}
.m13d2_c00001{transform:matrix(0.204691,-0.005322,0.006498,0.249916,0,0);-ms-transform:matrix(0.204691,-0.005322,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204691,-0.005322,0.006498,0.249916,0,0);}
.m1da5_c00001{transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204695,0.000000,0.000000,0.250000,0,0);}
.mf3b_c00001{transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204715,0.000000,0.000000,0.250000,0,0);}
.m1442_c00001{transform:matrix(0.204720,-0.005527,0.006748,0.249909,0,0);-ms-transform:matrix(0.204720,-0.005527,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204720,-0.005527,0.006748,0.249909,0,0);}
.m1b34_c00001{transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204735,0.000000,0.000000,0.250000,0,0);}
.ma5c_c00001{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m187_c00001{transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204755,0.000000,0.000000,0.250000,0,0);}
.m1840_c00001{transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204760,0.000000,0.000000,0.250000,0,0);}
.m1faa_c00001{transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204765,0.000000,0.000000,0.250000,0,0);}
.m1952_c00001{transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);}
.m4cf_c00001{transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204793,0.002253,-0.002750,0.249985,0,0);}
.m101_c00001{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m1248_c00001{transform:matrix(0.204795,-0.005529,0.006748,0.249909,0,0);-ms-transform:matrix(0.204795,-0.005529,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204795,-0.005529,0.006748,0.249909,0,0);}
.m173e_c00001{transform:matrix(0.204796,-0.005325,0.006498,0.249916,0,0);-ms-transform:matrix(0.204796,-0.005325,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204796,-0.005325,0.006498,0.249916,0,0);}
.m6cc_c00001{transform:matrix(0.204796,0.005120,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204796,0.005120,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204796,0.005120,-0.006248,0.249922,0,0);}
.m1072_c00001{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.m414_c00001{transform:matrix(0.204815,-0.004301,0.005249,0.249945,0,0);-ms-transform:matrix(0.204815,-0.004301,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204815,-0.004301,0.005249,0.249945,0,0);}
.m229b_c00001{transform:matrix(0.204833,-0.003892,0.004749,0.249955,0,0);-ms-transform:matrix(0.204833,-0.003892,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204833,-0.003892,0.004749,0.249955,0,0);}
.m161e_c00001{transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204835,0.000000,0.000000,0.250000,0,0);}
.m1806_c00001{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.m29b9_c00001{transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204842,-0.003073,0.003750,0.249972,0,0);}
.m1e45_c00001{transform:matrix(0.204861,-0.005326,0.006498,0.249916,0,0);-ms-transform:matrix(0.204861,-0.005326,0.006498,0.249916,0,0);-webkit-transform:matrix(0.204861,-0.005326,0.006498,0.249916,0,0);}
.m1bd_c00001{transform:matrix(0.204864,-0.003278,0.003999,0.249968,0,0);-ms-transform:matrix(0.204864,-0.003278,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204864,-0.003278,0.003999,0.249968,0,0);}
.m115e_c00001{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m255d_c00001{transform:matrix(0.204870,-0.002868,0.003500,0.249976,0,0);-ms-transform:matrix(0.204870,-0.002868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204870,-0.002868,0.003500,0.249976,0,0);}
.m1906_c00001{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m14be_c00001{transform:matrix(0.204878,0.006768,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204878,0.006768,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204878,0.006768,-0.008254,0.249864,0,0);}
.m26fc_c00001{transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204880,0.000000,0.000000,0.250000,0,0);}
.m34a_c00001{transform:matrix(0.204883,-0.002663,0.003250,0.249979,0,0);-ms-transform:matrix(0.204883,-0.002663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204883,-0.002663,0.003250,0.249979,0,0);}
.m189e_c00001{transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204885,0.000000,0.000000,0.250000,0,0);}
.m1bc4_c00001{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m888_c00001{transform:matrix(0.204902,-0.007794,0.009503,0.249819,0,0);-ms-transform:matrix(0.204902,-0.007794,0.009503,0.249819,0,0);-webkit-transform:matrix(0.204902,-0.007794,0.009503,0.249819,0,0);}
.m2441_c00001{transform:matrix(0.204905,-0.004508,0.005499,0.249940,0,0);-ms-transform:matrix(0.204905,-0.004508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204905,-0.004508,0.005499,0.249940,0,0);}
.m1fcb_c00001{transform:matrix(0.204911,-0.005123,0.006248,0.249922,0,0);-ms-transform:matrix(0.204911,-0.005123,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204911,-0.005123,0.006248,0.249922,0,0);}
.m1ada_c00001{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.m25dd_c00001{transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204920,0.000000,0.000000,0.250000,0,0);}
.m1aeb_c00001{transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204935,0.000000,0.000000,0.250000,0,0);}
.mb4c_c00001{transform:matrix(0.204944,-0.008001,0.009752,0.249810,0,0);-ms-transform:matrix(0.204944,-0.008001,0.009752,0.249810,0,0);-webkit-transform:matrix(0.204944,-0.008001,0.009752,0.249810,0,0);}
.m2884_c00001{transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204965,0.000000,0.000000,0.250000,0,0);}
.m6d6_c00001{transform:matrix(0.204976,0.005124,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204976,0.005124,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204976,0.005124,-0.006248,0.249922,0,0);}
.m205b_c00001{transform:matrix(0.204977,-0.006354,0.007746,0.249880,0,0);-ms-transform:matrix(0.204977,-0.006354,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204977,-0.006354,0.007746,0.249880,0,0);}
.m107a_c00001{transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204980,0.000000,0.000000,0.250000,0,0);}
.m2647_c00001{transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204985,0.000000,0.000000,0.250000,0,0);}
.m16d4_c00001{transform:matrix(0.204991,-0.006977,0.008504,0.249855,0,0);-ms-transform:matrix(0.204991,-0.006977,0.008504,0.249855,0,0);-webkit-transform:matrix(0.204991,-0.006977,0.008504,0.249855,0,0);}
.m8e2_c00001{transform:matrix(0.205013,-0.006772,0.008254,0.249864,0,0);-ms-transform:matrix(0.205013,-0.006772,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205013,-0.006772,0.008254,0.249864,0,0);}
.m167e_c00001{transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);}
.m1255_c00001{transform:matrix(0.205025,-0.005536,0.006748,0.249909,0,0);-ms-transform:matrix(0.205025,-0.005536,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205025,-0.005536,0.006748,0.249909,0,0);}
.m27d6_c00001{transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205045,0.000000,0.000000,0.250000,0,0);}
.m17d8_c00001{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m87c_c00001{transform:matrix(0.205052,-0.007800,0.009503,0.249819,0,0);-ms-transform:matrix(0.205052,-0.007800,0.009503,0.249819,0,0);-webkit-transform:matrix(0.205052,-0.007800,0.009503,0.249819,0,0);}
.m20c8_c00001{transform:matrix(0.205061,0.005127,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205061,0.005127,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205061,0.005127,-0.006248,0.249922,0,0);}
.mbd5_c00001{transform:matrix(0.205093,0.002256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205093,0.002256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205093,0.002256,-0.002750,0.249985,0,0);}
.m147c_c00001{transform:matrix(0.205093,0.006775,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205093,0.006775,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205093,0.006775,-0.008254,0.249864,0,0);}
.m15fc_c00001{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m11e9_c00001{transform:matrix(0.205115,-0.004513,0.005499,0.249940,0,0);-ms-transform:matrix(0.205115,-0.004513,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205115,-0.004513,0.005499,0.249940,0,0);}
.m159b_c00001{transform:matrix(0.205130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205130,0.000000,0.000000,0.250000,0,0);}
.m1eac_c00001{transform:matrix(0.205131,-0.005333,0.006498,0.249916,0,0);-ms-transform:matrix(0.205131,-0.005333,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205131,-0.005333,0.006498,0.249916,0,0);}
.m1e37_c00001{transform:matrix(0.205136,-0.005334,0.006498,0.249916,0,0);-ms-transform:matrix(0.205136,-0.005334,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205136,-0.005334,0.006498,0.249916,0,0);}
.m3c3_c00001{transform:matrix(0.205148,-0.006777,0.008254,0.249864,0,0);-ms-transform:matrix(0.205148,-0.006777,0.008254,0.249864,0,0);-webkit-transform:matrix(0.205148,-0.006777,0.008254,0.249864,0,0);}
.m12d0_c00001{transform:matrix(0.205150,0.005539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205150,0.005539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205150,0.005539,-0.006748,0.249909,0,0);}
.mac_c00001{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.m181c_c00001{transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205165,0.000000,0.000000,0.250000,0,0);}
.m208d_c00001{transform:matrix(0.205166,-0.006360,0.007746,0.249880,0,0);-ms-transform:matrix(0.205166,-0.006360,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205166,-0.006360,0.007746,0.249880,0,0);}
.mcea_c00001{transform:matrix(0.205169,-0.005950,0.007247,0.249895,0,0);-ms-transform:matrix(0.205169,-0.005950,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205169,-0.005950,0.007247,0.249895,0,0);}
.m273e_c00001{transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205180,0.000000,0.000000,0.250000,0,0);}
.m1748_c00001{transform:matrix(0.205191,-0.005335,0.006498,0.249916,0,0);-ms-transform:matrix(0.205191,-0.005335,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205191,-0.005335,0.006498,0.249916,0,0);}
.mb00_c00001{transform:matrix(0.205194,-0.008011,0.009752,0.249810,0,0);-ms-transform:matrix(0.205194,-0.008011,0.009752,0.249810,0,0);-webkit-transform:matrix(0.205194,-0.008011,0.009752,0.249810,0,0);}
.m1fea_c00001{transform:matrix(0.205196,-0.005130,0.006248,0.249922,0,0);-ms-transform:matrix(0.205196,-0.005130,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205196,-0.005130,0.006248,0.249922,0,0);}
.m10de_c00001{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m1817_c00001{transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205210,0.000000,0.000000,0.250000,0,0);}
.m1128_c00001{transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205215,0.000000,0.000000,0.250000,0,0);}
.m1e0c_c00001{transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205220,0.000000,0.000000,0.250000,0,0);}
.m93_c00001{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m129d_c00001{transform:matrix(0.205250,0.004516,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205250,0.004516,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205250,0.004516,-0.005499,0.249940,0,0);}
.m1021_c00001{transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205260,0.000000,0.000000,0.250000,0,0);}
.m1f7f_c00001{transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205265,0.000000,0.000000,0.250000,0,0);}
.m3bd_c00001{transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);}
.m13f7_c00001{transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);-ms-transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205276,-0.005337,0.006498,0.249916,0,0);}
.mf06_c00001{transform:matrix(0.205283,0.002669,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205283,0.002669,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205283,0.002669,-0.003250,0.249979,0,0);}
.m1177_c00001{transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205290,0.000000,0.000000,0.250000,0,0);}
.m777_c00001{transform:matrix(0.205291,0.004722,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205291,0.004722,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205291,0.004722,-0.005748,0.249934,0,0);}
.mbec_c00001{transform:matrix(0.205298,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205298,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205298,0.002258,-0.002750,0.249985,0,0);}
.m1dc2_c00001{transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205305,0.000000,0.000000,0.250000,0,0);}
.m1357_c00001{transform:matrix(0.205309,0.005954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205309,0.005954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205309,0.005954,-0.007247,0.249895,0,0);}
.m1d97_c00001{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m513_c00001{transform:matrix(0.205318,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205318,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205318,0.002258,-0.002750,0.249985,0,0);}
.m1349_c00001{transform:matrix(0.205324,0.005954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205324,0.005954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205324,0.005954,-0.007247,0.249895,0,0);}
.m1033_c00001{transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);}
.m558_c00001{transform:matrix(0.205338,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205338,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205338,0.002259,-0.002750,0.249985,0,0);}
.m16a0_c00001{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m1e1f_c00001{transform:matrix(0.205346,-0.005339,0.006498,0.249916,0,0);-ms-transform:matrix(0.205346,-0.005339,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205346,-0.005339,0.006498,0.249916,0,0);}
.mf50_c00001{transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);}
.m10c5_c00001{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m1015_c00001{transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205380,0.000000,0.000000,0.250000,0,0);}
.m1c0c_c00001{transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);}
.m21b2_c00001{transform:matrix(0.205396,-0.004724,0.005748,0.249934,0,0);-ms-transform:matrix(0.205396,-0.004724,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205396,-0.004724,0.005748,0.249934,0,0);}
.m2c4_c00001{transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205410,0.000000,0.000000,0.250000,0,0);}
.m1381_c00001{transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);-ms-transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205431,-0.005341,0.006498,0.249916,0,0);}
.m1ef2_c00001{transform:matrix(0.205436,-0.005341,0.006498,0.249916,0,0);-ms-transform:matrix(0.205436,-0.005341,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205436,-0.005341,0.006498,0.249916,0,0);}
.m581_c00001{transform:matrix(0.205438,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205438,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205438,0.002260,-0.002750,0.249985,0,0);}
.m7fb_c00001{transform:matrix(0.205439,-0.005752,0.006997,0.249902,0,0);-ms-transform:matrix(0.205439,-0.005752,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205439,-0.005752,0.006997,0.249902,0,0);}
.m122f_c00001{transform:matrix(0.205445,-0.005547,0.006748,0.249909,0,0);-ms-transform:matrix(0.205445,-0.005547,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205445,-0.005547,0.006748,0.249909,0,0);}
.m161f_c00001{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m16b9_c00001{transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205460,0.000000,0.000000,0.250000,0,0);}
.m9ab_c00001{transform:matrix(0.205466,-0.007816,0.009503,0.249819,0,0);-ms-transform:matrix(0.205466,-0.007816,0.009503,0.249819,0,0);-webkit-transform:matrix(0.205466,-0.007816,0.009503,0.249819,0,0);}
.m25b8_c00001{transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205470,0.000000,0.000000,0.250000,0,0);}
.m8fb_c00001{transform:matrix(0.205471,-0.007816,0.009503,0.249819,0,0);-ms-transform:matrix(0.205471,-0.007816,0.009503,0.249819,0,0);-webkit-transform:matrix(0.205471,-0.007816,0.009503,0.249819,0,0);}
.m189_c00001{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m334_c00001{transform:matrix(0.205478,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205478,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205478,-0.002671,0.003250,0.249979,0,0);}
.m1493_c00001{transform:matrix(0.205478,0.006788,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205478,0.006788,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205478,0.006788,-0.008254,0.249864,0,0);}
.m1701_c00001{transform:matrix(0.205491,-0.005343,0.006498,0.249916,0,0);-ms-transform:matrix(0.205491,-0.005343,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205491,-0.005343,0.006498,0.249916,0,0);}
.m17a5_c00001{transform:matrix(0.205492,-0.003699,0.004499,0.249960,0,0);-ms-transform:matrix(0.205492,-0.003699,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205492,-0.003699,0.004499,0.249960,0,0);}
.m2509_c00001{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m1138_c00001{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m141a_c00001{transform:matrix(0.205501,-0.005343,0.006498,0.249916,0,0);-ms-transform:matrix(0.205501,-0.005343,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205501,-0.005343,0.006498,0.249916,0,0);}
.m147e_c00001{transform:matrix(0.205503,0.006788,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205503,0.006788,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205503,0.006788,-0.008254,0.249864,0,0);}
.m51_c00001{transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205515,0.000000,0.000000,0.250000,0,0);}
.m223f_c00001{transform:matrix(0.205520,-0.004316,0.005249,0.249945,0,0);-ms-transform:matrix(0.205520,-0.004316,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205520,-0.004316,0.005249,0.249945,0,0);}
.m211_c00001{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.ma46_c00001{transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205530,0.000000,0.000000,0.250000,0,0);}
.m194b_c00001{transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205545,0.000000,0.000000,0.250000,0,0);}
.m7ac_c00001{transform:matrix(0.205549,-0.005755,0.006997,0.249902,0,0);-ms-transform:matrix(0.205549,-0.005755,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205549,-0.005755,0.006997,0.249902,0,0);}
.m776_c00001{transform:matrix(0.205551,0.004728,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205551,0.004728,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205551,0.004728,-0.005748,0.249934,0,0);}
.m20f1_c00001{transform:matrix(0.205556,0.005139,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205556,0.005139,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205556,0.005139,-0.006248,0.249922,0,0);}
.m538_c00001{transform:matrix(0.205573,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205573,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205573,0.002261,-0.002750,0.249985,0,0);}
.mbbd_c00001{transform:matrix(0.205588,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205588,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205588,0.002261,-0.002750,0.249985,0,0);}
.m27c5_c00001{transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205590,0.000000,0.000000,0.250000,0,0);}
.m217b_c00001{transform:matrix(0.205594,0.005757,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205594,0.005757,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205594,0.005757,-0.006997,0.249902,0,0);}
.m182_c00001{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m1244_c00001{transform:matrix(0.205600,-0.005551,0.006748,0.249909,0,0);-ms-transform:matrix(0.205600,-0.005551,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205600,-0.005551,0.006748,0.249909,0,0);}
.m1d09_c00001{transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205615,0.000000,0.000000,0.250000,0,0);}
.m10a1_c00001{transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205620,0.000000,0.000000,0.250000,0,0);}
.m1515_c00001{transform:matrix(0.205623,0.006792,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205623,0.006792,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205623,0.006792,-0.008254,0.249864,0,0);}
.mdf1_c00001{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.mdaf_c00001{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.m2021_c00001{transform:matrix(0.205646,-0.006375,0.007746,0.249880,0,0);-ms-transform:matrix(0.205646,-0.006375,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205646,-0.006375,0.007746,0.249880,0,0);}
.m133f_c00001{transform:matrix(0.205649,0.005964,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205649,0.005964,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205649,0.005964,-0.007247,0.249895,0,0);}
.m28b7_c00001{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m1d51_c00001{transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205655,0.000000,0.000000,0.250000,0,0);}
.m144_c00001{transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205660,0.000000,0.000000,0.250000,0,0);}
.m1559_c00001{transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205670,0.000000,0.000000,0.250000,0,0);}
.m1488_c00001{transform:matrix(0.205698,0.006795,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205698,0.006795,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205698,0.006795,-0.008254,0.249864,0,0);}
.m216b_c00001{transform:matrix(0.205704,0.005760,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205704,0.005760,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205704,0.005760,-0.006997,0.249902,0,0);}
.m2563_c00001{transform:matrix(0.205718,-0.002674,0.003250,0.249979,0,0);-ms-transform:matrix(0.205718,-0.002674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205718,-0.002674,0.003250,0.249979,0,0);}
.mdee_c00001{transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205735,0.000000,0.000000,0.250000,0,0);}
.m58c_c00001{transform:matrix(0.205738,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205738,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205738,0.002263,-0.002750,0.249985,0,0);}
.m1589_c00001{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m22f9_c00001{transform:matrix(0.205772,0.003704,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205772,0.003704,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205772,0.003704,-0.004499,0.249960,0,0);}
.m11ac_c00001{transform:matrix(0.205775,-0.004527,0.005499,0.249940,0,0);-ms-transform:matrix(0.205775,-0.004527,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205775,-0.004527,0.005499,0.249940,0,0);}
.m3fd_c00001{transform:matrix(0.205785,-0.004321,0.005249,0.249945,0,0);-ms-transform:matrix(0.205785,-0.004321,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205785,-0.004321,0.005249,0.249945,0,0);}
.mcda_c00001{transform:matrix(0.205793,-0.005968,0.007247,0.249895,0,0);-ms-transform:matrix(0.205793,-0.005968,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205793,-0.005968,0.007247,0.249895,0,0);}
.m1552_c00001{transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205795,0.000000,0.000000,0.250000,0,0);}
.md70_c00001{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.mc9a_c00001{transform:matrix(0.205823,-0.005969,0.007247,0.249895,0,0);-ms-transform:matrix(0.205823,-0.005969,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205823,-0.005969,0.007247,0.249895,0,0);}
.m291a_c00001{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m2083_c00001{transform:matrix(0.205826,-0.006381,0.007746,0.249880,0,0);-ms-transform:matrix(0.205826,-0.006381,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205826,-0.006381,0.007746,0.249880,0,0);}
.m6d5_c00001{transform:matrix(0.205851,0.005146,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205851,0.005146,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205851,0.005146,-0.006248,0.249922,0,0);}
.mc88_c00001{transform:matrix(0.205853,-0.005970,0.007247,0.249895,0,0);-ms-transform:matrix(0.205853,-0.005970,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205853,-0.005970,0.007247,0.249895,0,0);}
.m354_c00001{transform:matrix(0.205858,-0.002676,0.003250,0.249979,0,0);-ms-transform:matrix(0.205858,-0.002676,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205858,-0.002676,0.003250,0.249979,0,0);}
.m1591_c00001{transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);}
.m13eb_c00001{transform:matrix(0.205860,-0.005352,0.006498,0.249916,0,0);-ms-transform:matrix(0.205860,-0.005352,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205860,-0.005352,0.006498,0.249916,0,0);}
.m4b8_c00001{transform:matrix(0.205864,-0.006594,0.008004,0.249872,0,0);-ms-transform:matrix(0.205864,-0.006594,0.008004,0.249872,0,0);-webkit-transform:matrix(0.205864,-0.006594,0.008004,0.249872,0,0);}
.m168a_c00001{transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205870,0.000000,0.000000,0.250000,0,0);}
.m1fe6_c00001{transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);-ms-transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205881,-0.005147,0.006248,0.249922,0,0);}
.m25a6_c00001{transform:matrix(0.205883,-0.002265,0.002750,0.249985,0,0);-ms-transform:matrix(0.205883,-0.002265,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205883,-0.002265,0.002750,0.249985,0,0);}
.m15bc_c00001{transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205910,0.000000,0.000000,0.250000,0,0);}
.ma64_c00001{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m185c_c00001{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.m1cf4_c00001{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.m132f_c00001{transform:matrix(0.205948,0.005973,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205948,0.005973,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205948,0.005973,-0.007247,0.249895,0,0);}
.m1b21_c00001{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m8ff_c00001{transform:matrix(0.205951,-0.007834,0.009503,0.249819,0,0);-ms-transform:matrix(0.205951,-0.007834,0.009503,0.249819,0,0);-webkit-transform:matrix(0.205951,-0.007834,0.009503,0.249819,0,0);}
.m130f_c00001{transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205955,0.005561,-0.006748,0.249909,0,0);}
.m261e_c00001{transform:matrix(0.205955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205955,0.000000,0.000000,0.250000,0,0);}
.m16b_c00001{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m527_c00001{transform:matrix(0.205968,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205968,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205968,0.002266,-0.002750,0.249985,0,0);}
.m75b_c00001{transform:matrix(0.205994,0.005768,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205994,0.005768,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205994,0.005768,-0.006997,0.249902,0,0);}
.m248b_c00001{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m1e5d_c00001{transform:matrix(0.205995,-0.005356,0.006498,0.249916,0,0);-ms-transform:matrix(0.205995,-0.005356,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205995,-0.005356,0.006498,0.249916,0,0);}
.m785_c00001{transform:matrix(0.206001,0.004738,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206001,0.004738,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206001,0.004738,-0.005748,0.249934,0,0);}
.m1dc3_c00001{transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206010,0.000000,0.000000,0.250000,0,0);}
.m254b_c00001{transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-ms-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206017,-0.003090,0.003750,0.249972,0,0);}
.mb60_c00001{transform:matrix(0.206018,-0.008043,0.009752,0.249810,0,0);-ms-transform:matrix(0.206018,-0.008043,0.009752,0.249810,0,0);-webkit-transform:matrix(0.206018,-0.008043,0.009752,0.249810,0,0);}
.m2689_c00001{transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);}
.m242b_c00001{transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);-ms-transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206025,-0.004533,0.005499,0.249940,0,0);}
.m28da_c00001{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.mb23_c00001{transform:matrix(0.206033,-0.008043,0.009752,0.249810,0,0);-ms-transform:matrix(0.206033,-0.008043,0.009752,0.249810,0,0);-webkit-transform:matrix(0.206033,-0.008043,0.009752,0.249810,0,0);}
.mdaa_c00001{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m6a2_c00001{transform:matrix(0.206082,-0.008458,0.010252,0.249790,0,0);-ms-transform:matrix(0.206082,-0.008458,0.010252,0.249790,0,0);-webkit-transform:matrix(0.206082,-0.008458,0.010252,0.249790,0,0);}
.m1f74_c00001{transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206085,0.000000,0.000000,0.250000,0,0);}
.m650_c00001{transform:matrix(0.206087,-0.008458,0.010252,0.249790,0,0);-ms-transform:matrix(0.206087,-0.008458,0.010252,0.249790,0,0);-webkit-transform:matrix(0.206087,-0.008458,0.010252,0.249790,0,0);}
.m1b42_c00001{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m39_c00001{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.mb0_c00001{transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206105,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206110,0.000000,0.000000,0.250000,0,0);}
.m622_c00001{transform:matrix(0.206114,-0.008872,0.010751,0.249769,0,0);-ms-transform:matrix(0.206114,-0.008872,0.010751,0.249769,0,0);-webkit-transform:matrix(0.206114,-0.008872,0.010751,0.249769,0,0);}
.m982_c00001{transform:matrix(0.206116,-0.007840,0.009503,0.249819,0,0);-ms-transform:matrix(0.206116,-0.007840,0.009503,0.249819,0,0);-webkit-transform:matrix(0.206116,-0.007840,0.009503,0.249819,0,0);}
.m1804_c00001{transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206135,0.000000,0.000000,0.250000,0,0);}
.m24f5_c00001{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m227f_c00001{transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);-ms-transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206140,-0.004741,0.005748,0.249934,0,0);}
.m1979_c00001{transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206145,0.000000,0.000000,0.250000,0,0);}
.m1a81_c00001{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m2672_c00001{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m174a_c00001{transform:matrix(0.206160,-0.005360,0.006498,0.249916,0,0);-ms-transform:matrix(0.206160,-0.005360,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206160,-0.005360,0.006498,0.249916,0,0);}
.m2491_c00001{transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206165,0.000000,0.000000,0.250000,0,0);}
.m2409_c00001{transform:matrix(0.206165,-0.004536,0.005499,0.249940,0,0);-ms-transform:matrix(0.206165,-0.004536,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206165,-0.004536,0.005499,0.249940,0,0);}
.m142e_c00001{transform:matrix(0.206165,-0.005360,0.006498,0.249916,0,0);-ms-transform:matrix(0.206165,-0.005360,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206165,-0.005360,0.006498,0.249916,0,0);}
.m17e2_c00001{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.m1759_c00001{transform:matrix(0.206175,-0.005361,0.006498,0.249916,0,0);-ms-transform:matrix(0.206175,-0.005361,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206175,-0.005361,0.006498,0.249916,0,0);}
.m1686_c00001{transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);}
.m1588_c00001{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.mf6d_c00001{transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206205,0.000000,0.000000,0.250000,0,0);}
.m19df_c00001{transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206210,0.000000,0.000000,0.250000,0,0);}
.m591_c00001{transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);}
.m1c95_c00001{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.mb9d_c00001{transform:matrix(0.206230,0.002475,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206230,0.002475,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206230,0.002475,-0.003000,0.249982,0,0);}
.m1b63_c00001{transform:matrix(0.206238,-0.003919,0.004749,0.249955,0,0);-ms-transform:matrix(0.206238,-0.003919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206238,-0.003919,0.004749,0.249955,0,0);}
.m1b57_c00001{transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);}
.m612_c00001{transform:matrix(0.206250,-0.009084,0.011000,0.249758,0,0);-ms-transform:matrix(0.206250,-0.009084,0.011000,0.249758,0,0);-webkit-transform:matrix(0.206250,-0.009084,0.011000,0.249758,0,0);}
.m2862_c00001{transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206255,0.000000,0.000000,0.250000,0,0);}
.m9de_c00001{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m1669_c00001{transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206265,0.000000,0.000000,0.250000,0,0);}
.m1677_c00001{transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206290,0.000000,0.000000,0.250000,0,0);}
.m1f2d_c00001{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m11c3_c00001{transform:matrix(0.206315,-0.004539,0.005499,0.249940,0,0);-ms-transform:matrix(0.206315,-0.004539,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206315,-0.004539,0.005499,0.249940,0,0);}
.m2542_c00001{transform:matrix(0.206357,-0.003095,0.003750,0.249972,0,0);-ms-transform:matrix(0.206357,-0.003095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206357,-0.003095,0.003750,0.249972,0,0);}
.m2206_c00001{transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);-ms-transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206368,-0.003921,0.004749,0.249955,0,0);}
.m1165_c00001{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m623_c00001{transform:matrix(0.206379,-0.008883,0.010751,0.249769,0,0);-ms-transform:matrix(0.206379,-0.008883,0.010751,0.249769,0,0);-webkit-transform:matrix(0.206379,-0.008883,0.010751,0.249769,0,0);}
.m1923_c00001{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m1109_c00001{transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);}
.m1b73_c00001{transform:matrix(0.206393,-0.003921,0.004749,0.249955,0,0);-ms-transform:matrix(0.206393,-0.003921,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206393,-0.003921,0.004749,0.249955,0,0);}
.m26b4_c00001{transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);}
.m593_c00001{transform:matrix(0.206413,0.002271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206413,0.002271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206413,0.002271,-0.002750,0.249985,0,0);}
.md71_c00001{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m17b3_c00001{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.m275f_c00001{transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);-ms-transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);}
.m1eb9_c00001{transform:matrix(0.206470,-0.005368,0.006498,0.249916,0,0);-ms-transform:matrix(0.206470,-0.005368,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206470,-0.005368,0.006498,0.249916,0,0);}
.m1d8a_c00001{transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00001{transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206495,0.000000,0.000000,0.250000,0,0);}
.m1fe3_c00001{transform:matrix(0.206495,-0.005162,0.006248,0.249922,0,0);-ms-transform:matrix(0.206495,-0.005162,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206495,-0.005162,0.006248,0.249922,0,0);}
.m2789_c00001{transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206505,0.000000,0.000000,0.250000,0,0);}
.mdb3_c00001{transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);}
.m1db4_c00001{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.maa3_c00001{transform:matrix(0.206531,-0.007443,0.009003,0.249838,0,0);-ms-transform:matrix(0.206531,-0.007443,0.009003,0.249838,0,0);-webkit-transform:matrix(0.206531,-0.007443,0.009003,0.249838,0,0);}
.m1481_c00001{transform:matrix(0.206537,0.006823,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206537,0.006823,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206537,0.006823,-0.008254,0.249864,0,0);}
.m24ee_c00001{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m21f5_c00001{transform:matrix(0.206543,-0.003924,0.004749,0.249955,0,0);-ms-transform:matrix(0.206543,-0.003924,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206543,-0.003924,0.004749,0.249955,0,0);}
.m1a7b_c00001{transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206545,0.000000,0.000000,0.250000,0,0);}
.m164f_c00001{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.ma5_c00001{transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206560,0.000000,0.000000,0.250000,0,0);}
.m289c_c00001{transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206570,0.000000,0.000000,0.250000,0,0);}
.mee3_c00001{transform:matrix(0.206578,0.002686,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206578,0.002686,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206578,0.002686,-0.003250,0.249979,0,0);}
.m157f_c00001{transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206580,0.000000,0.000000,0.250000,0,0);}
.m10df_c00001{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m2674_c00001{transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206605,0.000000,0.000000,0.250000,0,0);}
.m2552_c00001{transform:matrix(0.206630,-0.002893,0.003500,0.249976,0,0);-ms-transform:matrix(0.206630,-0.002893,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206630,-0.002893,0.003500,0.249976,0,0);}
.m1958_c00001{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m1005_c00001{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m1ce1_c00001{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.m88b_c00001{transform:matrix(0.206661,-0.007861,0.009503,0.249819,0,0);-ms-transform:matrix(0.206661,-0.007861,0.009503,0.249819,0,0);-webkit-transform:matrix(0.206661,-0.007861,0.009503,0.249819,0,0);}
.m1331_c00001{transform:matrix(0.206663,0.005993,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206663,0.005993,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206663,0.005993,-0.007247,0.249895,0,0);}
.m2717_c00001{transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);}
.m1620_c00001{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.m1980_c00001{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.m2096_c00001{transform:matrix(0.206696,-0.006408,0.007746,0.249880,0,0);-ms-transform:matrix(0.206696,-0.006408,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206696,-0.006408,0.007746,0.249880,0,0);}
.m2c8_c00001{transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206705,0.000000,0.000000,0.250000,0,0);}
.m146d_c00001{transform:matrix(0.206707,0.006828,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206707,0.006828,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206707,0.006828,-0.008254,0.249864,0,0);}
.m1e74_c00001{transform:matrix(0.206720,-0.005375,0.006498,0.249916,0,0);-ms-transform:matrix(0.206720,-0.005375,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206720,-0.005375,0.006498,0.249916,0,0);}
.m261_c00001{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m1125_c00001{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.m28ff_c00001{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m26b5_c00001{transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206785,0.000000,0.000000,0.250000,0,0);}
.m1f8a_c00001{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m1a03_c00001{transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206795,0.000000,0.000000,0.250000,0,0);}
.m2554_c00001{transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-ms-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206800,-0.002895,0.003500,0.249976,0,0);}
.m230b_c00001{transform:matrix(0.206811,0.003723,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206811,0.003723,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206811,0.003723,-0.004499,0.249960,0,0);}
.mffb_c00001{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m16ad_c00001{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m204_c00001{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m3de_c00001{transform:matrix(0.206839,-0.005791,0.006997,0.249902,0,0);-ms-transform:matrix(0.206839,-0.005791,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206839,-0.005791,0.006997,0.249902,0,0);}
.m430_c00001{transform:matrix(0.206863,-0.003930,0.004749,0.249955,0,0);-ms-transform:matrix(0.206863,-0.003930,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206863,-0.003930,0.004749,0.249955,0,0);}
.m11f_c00001{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m12a8_c00001{transform:matrix(0.206915,0.004759,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206915,0.004759,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206915,0.004759,-0.005748,0.249934,0,0);}
.mcaf_c00001{transform:matrix(0.206928,-0.006001,0.007247,0.249895,0,0);-ms-transform:matrix(0.206928,-0.006001,0.007247,0.249895,0,0);-webkit-transform:matrix(0.206928,-0.006001,0.007247,0.249895,0,0);}
.m1ce9_c00001{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.m2597_c00001{transform:matrix(0.206947,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206947,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206947,-0.002276,0.002750,0.249985,0,0);}
.ma0d_c00001{transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206965,0.000000,0.000000,0.250000,0,0);}
.m19ba_c00001{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m1e60_c00001{transform:matrix(0.206975,-0.005381,0.006498,0.249916,0,0);-ms-transform:matrix(0.206975,-0.005381,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206975,-0.005381,0.006498,0.249916,0,0);}
.m143e_c00001{transform:matrix(0.206995,-0.005589,0.006748,0.249909,0,0);-ms-transform:matrix(0.206995,-0.005589,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206995,-0.005589,0.006748,0.249909,0,0);}
.m16de_c00001{transform:matrix(0.206995,-0.007045,0.008504,0.249855,0,0);-ms-transform:matrix(0.206995,-0.007045,0.008504,0.249855,0,0);-webkit-transform:matrix(0.206995,-0.007045,0.008504,0.249855,0,0);}
.m1814_c00001{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m16fc_c00001{transform:matrix(0.207005,-0.005382,0.006498,0.249916,0,0);-ms-transform:matrix(0.207005,-0.005382,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207005,-0.005382,0.006498,0.249916,0,0);}
.m299c_c00001{transform:matrix(0.207014,-0.003312,0.003999,0.249968,0,0);-ms-transform:matrix(0.207014,-0.003312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207014,-0.003312,0.003999,0.249968,0,0);}
.m887_c00001{transform:matrix(0.207020,-0.007875,0.009503,0.249819,0,0);-ms-transform:matrix(0.207020,-0.007875,0.009503,0.249819,0,0);-webkit-transform:matrix(0.207020,-0.007875,0.009503,0.249819,0,0);}
.m1c40_c00001{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m279c_c00001{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.m1ff8_c00001{transform:matrix(0.207050,-0.005176,0.006248,0.249922,0,0);-ms-transform:matrix(0.207050,-0.005176,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207050,-0.005176,0.006248,0.249922,0,0);}
.m1eea_c00001{transform:matrix(0.207070,-0.005384,0.006498,0.249916,0,0);-ms-transform:matrix(0.207070,-0.005384,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207070,-0.005384,0.006498,0.249916,0,0);}
.m16df_c00001{transform:matrix(0.207075,-0.007048,0.008504,0.249855,0,0);-ms-transform:matrix(0.207075,-0.007048,0.008504,0.249855,0,0);-webkit-transform:matrix(0.207075,-0.007048,0.008504,0.249855,0,0);}
.m5b3_c00001{transform:matrix(0.207077,0.002278,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207077,0.002278,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207077,0.002278,-0.002750,0.249985,0,0);}
.m2190_c00001{transform:matrix(0.207089,0.005798,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207089,0.005798,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207089,0.005798,-0.006997,0.249902,0,0);}
.m2966_c00001{transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207090,0.000000,0.000000,0.250000,0,0);}
.m23bb_c00001{transform:matrix(0.207095,-0.004556,0.005499,0.249940,0,0);-ms-transform:matrix(0.207095,-0.004556,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207095,-0.004556,0.005499,0.249940,0,0);}
.m1a2e_c00001{transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);}
.m1ee8_c00001{transform:matrix(0.207100,-0.005385,0.006498,0.249916,0,0);-ms-transform:matrix(0.207100,-0.005385,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207100,-0.005385,0.006498,0.249916,0,0);}
.m165f_c00001{transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207105,0.000000,0.000000,0.250000,0,0);}
.m2161_c00001{transform:matrix(0.207114,0.005799,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207114,0.005799,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207114,0.005799,-0.006997,0.249902,0,0);}
.m1713_c00001{transform:matrix(0.207120,-0.005385,0.006498,0.249916,0,0);-ms-transform:matrix(0.207120,-0.005385,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207120,-0.005385,0.006498,0.249916,0,0);}
.m2778_c00001{transform:matrix(0.207122,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207122,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207122,-0.003107,0.003750,0.249972,0,0);}
.m2903_c00001{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m1ca6_c00001{transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207130,0.000000,0.000000,0.250000,0,0);}
.me7_c00001{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m22c3_c00001{transform:matrix(0.207143,0.003314,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207143,0.003314,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207143,0.003314,-0.003999,0.249968,0,0);}
.m2997_c00001{transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-ms-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207143,-0.003314,0.003999,0.249968,0,0);}
.m242c_c00001{transform:matrix(0.207145,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207145,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207145,-0.004557,0.005499,0.249940,0,0);}
.m27a5_c00001{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m23fa_c00001{transform:matrix(0.207155,-0.004557,0.005499,0.249940,0,0);-ms-transform:matrix(0.207155,-0.004557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207155,-0.004557,0.005499,0.249940,0,0);}
.mb5a_c00001{transform:matrix(0.207157,-0.008087,0.009752,0.249810,0,0);-ms-transform:matrix(0.207157,-0.008087,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207157,-0.008087,0.009752,0.249810,0,0);}
.m2730_c00001{transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207160,0.000000,0.000000,0.250000,0,0);}
.m2841_c00001{transform:matrix(0.207162,-0.002693,0.003250,0.249979,0,0);-ms-transform:matrix(0.207162,-0.002693,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207162,-0.002693,0.003250,0.249979,0,0);}
.m1475_c00001{transform:matrix(0.207167,0.006843,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207167,0.006843,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207167,0.006843,-0.008254,0.249864,0,0);}
.m16a3_c00001{transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207170,0.000000,0.000000,0.250000,0,0);}
.m3bc_c00001{transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207180,0.000000,0.000000,0.250000,0,0);}
.m105a_c00001{transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);}
.m9b4_c00001{transform:matrix(0.207205,-0.007882,0.009503,0.249819,0,0);-ms-transform:matrix(0.207205,-0.007882,0.009503,0.249819,0,0);-webkit-transform:matrix(0.207205,-0.007882,0.009503,0.249819,0,0);}
.mcc7_c00001{transform:matrix(0.207208,-0.006009,0.007247,0.249895,0,0);-ms-transform:matrix(0.207208,-0.006009,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207208,-0.006009,0.007247,0.249895,0,0);}
.m26e_c00001{transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207215,0.000000,0.000000,0.250000,0,0);}
.m1c5e_c00001{transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);}
.mfc_c00001{transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);}
.m1361_c00001{transform:matrix(0.207228,0.006010,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207228,0.006010,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207228,0.006010,-0.007247,0.249895,0,0);}
.m2ef_c00001{transform:matrix(0.207232,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207232,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207232,-0.002694,0.003250,0.249979,0,0);}
.me9c_c00001{transform:matrix(0.207235,0.002901,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207235,0.002901,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207235,0.002901,-0.003500,0.249976,0,0);}
.m1ca3_c00001{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m674_c00001{transform:matrix(0.207241,-0.008505,0.010252,0.249790,0,0);-ms-transform:matrix(0.207241,-0.008505,0.010252,0.249790,0,0);-webkit-transform:matrix(0.207241,-0.008505,0.010252,0.249790,0,0);}
.mb73_c00001{transform:matrix(0.207258,-0.006010,0.007247,0.249895,0,0);-ms-transform:matrix(0.207258,-0.006010,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207258,-0.006010,0.007247,0.249895,0,0);}
.m2172_c00001{transform:matrix(0.207264,0.005803,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207264,0.005803,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207264,0.005803,-0.006997,0.249902,0,0);}
.m522_c00001{transform:matrix(0.207267,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207267,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207267,0.002280,-0.002750,0.249985,0,0);}
.m238c_c00001{transform:matrix(0.207270,-0.005389,0.006498,0.249916,0,0);-ms-transform:matrix(0.207270,-0.005389,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207270,-0.005389,0.006498,0.249916,0,0);}
.m176a_c00001{transform:matrix(0.207275,-0.005389,0.006498,0.249916,0,0);-ms-transform:matrix(0.207275,-0.005389,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207275,-0.005389,0.006498,0.249916,0,0);}
.m1f2b_c00001{transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);}
.me95_c00001{transform:matrix(0.207315,0.002902,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207315,0.002902,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207315,0.002902,-0.003500,0.249976,0,0);}
.ma48_c00001{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.m4b5_c00001{transform:matrix(0.207319,-0.006641,0.008004,0.249872,0,0);-ms-transform:matrix(0.207319,-0.006641,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207319,-0.006641,0.008004,0.249872,0,0);}
.m636_c00001{transform:matrix(0.207343,-0.008925,0.010751,0.249769,0,0);-ms-transform:matrix(0.207343,-0.008925,0.010751,0.249769,0,0);-webkit-transform:matrix(0.207343,-0.008925,0.010751,0.249769,0,0);}
.m1a0f_c00001{transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207345,0.000000,0.000000,0.250000,0,0);}
.mbfc_c00001{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m25d1_c00001{transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207360,0.000000,0.000000,0.250000,0,0);}
.m1793_c00001{transform:matrix(0.207365,-0.005391,0.006498,0.249916,0,0);-ms-transform:matrix(0.207365,-0.005391,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207365,-0.005391,0.006498,0.249916,0,0);}
.m1931_c00001{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m120_c00001{transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207390,0.000000,0.000000,0.250000,0,0);}
.m2848_c00001{transform:matrix(0.207397,-0.002696,0.003250,0.249979,0,0);-ms-transform:matrix(0.207397,-0.002696,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207397,-0.002696,0.003250,0.249979,0,0);}
.m1f9f_c00001{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m1a2d_c00001{transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207405,0.000000,0.000000,0.250000,0,0);}
.m20e3_c00001{transform:matrix(0.207405,0.005185,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207405,0.005185,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207405,0.005185,-0.006248,0.249922,0,0);}
.m2623_c00001{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m1a15_c00001{transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207420,0.000000,0.000000,0.250000,0,0);}
.m20c9_c00001{transform:matrix(0.207420,0.005186,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207420,0.005186,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207420,0.005186,-0.006248,0.249922,0,0);}
.m104_c00001{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m165d_c00001{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.m2320_c00001{transform:matrix(0.207441,0.003734,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207441,0.003734,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207441,0.003734,-0.004499,0.249960,0,0);}
.m22b2_c00001{transform:matrix(0.207443,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207443,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207443,0.003319,-0.003999,0.249968,0,0);}
.m1313_c00001{transform:matrix(0.207449,0.005601,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207449,0.005601,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207449,0.005601,-0.006748,0.249909,0,0);}
.m6f3_c00001{transform:matrix(0.207450,0.005186,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207450,0.005186,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207450,0.005186,-0.006248,0.249922,0,0);}
.m26cf_c00001{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.m1c86_c00001{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.m2642_c00001{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.m23f2_c00001{transform:matrix(0.207485,-0.004565,0.005499,0.249940,0,0);-ms-transform:matrix(0.207485,-0.004565,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207485,-0.004565,0.005499,0.249940,0,0);}
.mb4e_c00001{transform:matrix(0.207487,-0.008100,0.009752,0.249810,0,0);-ms-transform:matrix(0.207487,-0.008100,0.009752,0.249810,0,0);-webkit-transform:matrix(0.207487,-0.008100,0.009752,0.249810,0,0);}
.m13b_c00001{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m190b_c00001{transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207495,0.000000,0.000000,0.250000,0,0);}
.md3b_c00001{transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);-ms-transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207498,-0.006017,0.007247,0.249895,0,0);}
.mfa2_c00001{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m20f4_c00001{transform:matrix(0.207554,0.005812,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207554,0.005812,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207554,0.005812,-0.006997,0.249902,0,0);}
.m1b2b_c00001{transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207555,0.000000,0.000000,0.250000,0,0);}
.m21f6_c00001{transform:matrix(0.207558,-0.003944,0.004749,0.249955,0,0);-ms-transform:matrix(0.207558,-0.003944,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207558,-0.003944,0.004749,0.249955,0,0);}
.m1460_c00001{transform:matrix(0.207565,0.007895,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207565,0.007895,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207565,0.007895,-0.009503,0.249819,0,0);}
.m9d7_c00001{transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207566,0.003736,-0.004499,0.249960,0,0);}
.m9ea_c00001{transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207570,0.000000,0.000000,0.250000,0,0);}
.m107d_c00001{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m2858_c00001{transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207580,0.000000,0.000000,0.250000,0,0);}
.m115f_c00001{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.m7a8_c00001{transform:matrix(0.207594,-0.005813,0.006997,0.249902,0,0);-ms-transform:matrix(0.207594,-0.005813,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207594,-0.005813,0.006997,0.249902,0,0);}
.m1881_c00001{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m1653_c00001{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m949_c00001{transform:matrix(0.207630,-0.007898,0.009503,0.249819,0,0);-ms-transform:matrix(0.207630,-0.007898,0.009503,0.249819,0,0);-webkit-transform:matrix(0.207630,-0.007898,0.009503,0.249819,0,0);}
.m20c_c00001{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.m2145_c00001{transform:matrix(0.207644,0.005814,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207644,0.005814,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207644,0.005814,-0.006997,0.249902,0,0);}
.mf52_c00001{transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207645,0.000000,0.000000,0.250000,0,0);}
.mc7c_c00001{transform:matrix(0.207648,-0.006022,0.007247,0.249895,0,0);-ms-transform:matrix(0.207648,-0.006022,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207648,-0.006022,0.007247,0.249895,0,0);}
.m1b14_c00001{transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207665,0.000000,0.000000,0.250000,0,0);}
.m16c6_c00001{transform:matrix(0.207670,-0.007068,0.008504,0.249855,0,0);-ms-transform:matrix(0.207670,-0.007068,0.008504,0.249855,0,0);-webkit-transform:matrix(0.207670,-0.007068,0.008504,0.249855,0,0);}
.m28ae_c00001{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.m10b4_c00001{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.mcf9_c00001{transform:matrix(0.207688,-0.006023,0.007247,0.249895,0,0);-ms-transform:matrix(0.207688,-0.006023,0.007247,0.249895,0,0);-webkit-transform:matrix(0.207688,-0.006023,0.007247,0.249895,0,0);}
.me54_c00001{transform:matrix(0.207691,0.003738,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207691,0.003738,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207691,0.003738,-0.004499,0.249960,0,0);}
.m829_c00001{transform:matrix(0.207704,-0.005816,0.006997,0.249902,0,0);-ms-transform:matrix(0.207704,-0.005816,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207704,-0.005816,0.006997,0.249902,0,0);}
.m219c_c00001{transform:matrix(0.207714,0.004362,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207714,0.004362,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207714,0.004362,-0.005249,0.249945,0,0);}
.m17de_c00001{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.meee_c00001{transform:matrix(0.207717,0.002700,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207717,0.002700,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207717,0.002700,-0.003250,0.249979,0,0);}
.m2219_c00001{transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);-ms-transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207720,-0.004778,0.005748,0.249934,0,0);}
.m144a_c00001{transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);-ms-transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207729,-0.005609,0.006748,0.249909,0,0);}
.m5e9_c00001{transform:matrix(0.207736,-0.008734,0.010501,0.249779,0,0);-ms-transform:matrix(0.207736,-0.008734,0.010501,0.249779,0,0);-webkit-transform:matrix(0.207736,-0.008734,0.010501,0.249779,0,0);}
.m859_c00001{transform:matrix(0.207739,-0.005817,0.006997,0.249902,0,0);-ms-transform:matrix(0.207739,-0.005817,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207739,-0.005817,0.006997,0.249902,0,0);}
.m1eb1_c00001{transform:matrix(0.207740,-0.005401,0.006498,0.249916,0,0);-ms-transform:matrix(0.207740,-0.005401,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207740,-0.005401,0.006498,0.249916,0,0);}
.m167a_c00001{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m1e32_c00001{transform:matrix(0.207765,-0.005402,0.006498,0.249916,0,0);-ms-transform:matrix(0.207765,-0.005402,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207765,-0.005402,0.006498,0.249916,0,0);}
.m1632_c00001{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.me49_c00001{transform:matrix(0.207766,0.003740,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207766,0.003740,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207766,0.003740,-0.004499,0.249960,0,0);}
.m82f_c00001{transform:matrix(0.207774,-0.005818,0.006997,0.249902,0,0);-ms-transform:matrix(0.207774,-0.005818,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207774,-0.005818,0.006997,0.249902,0,0);}
.mddf_c00001{transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);}
.m8d8_c00001{transform:matrix(0.207785,-0.004987,0.005998,0.249928,0,0);-ms-transform:matrix(0.207785,-0.004987,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207785,-0.004987,0.005998,0.249928,0,0);}
.m52_c00001{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m1d7e_c00001{transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207815,0.000000,0.000000,0.250000,0,0);}
.m85d_c00001{transform:matrix(0.207834,-0.005819,0.006997,0.249902,0,0);-ms-transform:matrix(0.207834,-0.005819,0.006997,0.249902,0,0);-webkit-transform:matrix(0.207834,-0.005819,0.006997,0.249902,0,0);}
.m25c3_c00001{transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);}
.m1472_c00001{transform:matrix(0.207847,0.006866,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207847,0.006866,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207847,0.006866,-0.008254,0.249864,0,0);}
.m757_c00001{transform:matrix(0.207849,0.005820,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207849,0.005820,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207849,0.005820,-0.006997,0.249902,0,0);}
.m1094_c00001{transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207855,0.000000,0.000000,0.250000,0,0);}
.m1292_c00001{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.m191d_c00001{transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207890,0.000000,0.000000,0.250000,0,0);}
.m150f_c00001{transform:matrix(0.207892,0.006867,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207892,0.006867,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207892,0.006867,-0.008254,0.249864,0,0);}
.m2589_c00001{transform:matrix(0.207892,-0.003118,0.003750,0.249972,0,0);-ms-transform:matrix(0.207892,-0.003118,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207892,-0.003118,0.003750,0.249972,0,0);}
.m177a_c00001{transform:matrix(0.207900,-0.005405,0.006498,0.249916,0,0);-ms-transform:matrix(0.207900,-0.005405,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207900,-0.005405,0.006498,0.249916,0,0);}
.m26ab_c00001{transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207905,0.000000,0.000000,0.250000,0,0);}
.m719_c00001{transform:matrix(0.207905,0.005198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207905,0.005198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207905,0.005198,-0.006248,0.249922,0,0);}
.m1198_c00001{transform:matrix(0.207935,-0.004575,0.005499,0.249940,0,0);-ms-transform:matrix(0.207935,-0.004575,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207935,-0.004575,0.005499,0.249940,0,0);}
.m23c5_c00001{transform:matrix(0.207945,-0.004575,0.005499,0.249940,0,0);-ms-transform:matrix(0.207945,-0.004575,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207945,-0.004575,0.005499,0.249940,0,0);}
.m1103_c00001{transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207955,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207960,0.000000,0.000000,0.250000,0,0);}
.m2475_c00001{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m27ce_c00001{transform:matrix(0.207965,-0.002496,0.003000,0.249982,0,0);-ms-transform:matrix(0.207965,-0.002496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207965,-0.002496,0.003000,0.249982,0,0);}
.m1d21_c00001{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m601_c00001{transform:matrix(0.207981,-0.008744,0.010501,0.249779,0,0);-ms-transform:matrix(0.207981,-0.008744,0.010501,0.249779,0,0);-webkit-transform:matrix(0.207981,-0.008744,0.010501,0.249779,0,0);}
.m1d91_c00001{transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);}
.maa2_c00001{transform:matrix(0.207995,-0.007495,0.009003,0.249838,0,0);-ms-transform:matrix(0.207995,-0.007495,0.009003,0.249838,0,0);-webkit-transform:matrix(0.207995,-0.007495,0.009003,0.249838,0,0);}
.m281e_c00001{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1bbe_c00001{transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208005,0.000000,0.000000,0.250000,0,0);}
.m1b0d_c00001{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m20d1_c00001{transform:matrix(0.208040,0.005201,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208040,0.005201,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208040,0.005201,-0.006248,0.249922,0,0);}
.m10d5_c00001{transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);}
.m1cb0_c00001{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m88e_c00001{transform:matrix(0.208070,-0.007915,0.009503,0.249819,0,0);-ms-transform:matrix(0.208070,-0.007915,0.009503,0.249819,0,0);-webkit-transform:matrix(0.208070,-0.007915,0.009503,0.249819,0,0);}
.m727_c00001{transform:matrix(0.208070,0.005202,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208070,0.005202,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208070,0.005202,-0.006248,0.249922,0,0);}
.mbea_c00001{transform:matrix(0.208072,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208072,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208072,0.002289,-0.002750,0.249985,0,0);}
.m356_c00001{transform:matrix(0.208087,-0.002705,0.003250,0.249979,0,0);-ms-transform:matrix(0.208087,-0.002705,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208087,-0.002705,0.003250,0.249979,0,0);}
.m1c14_c00001{transform:matrix(0.208090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208090,0.000000,0.000000,0.250000,0,0);}
.m20a4_c00001{transform:matrix(0.208110,-0.006451,0.007746,0.249880,0,0);-ms-transform:matrix(0.208110,-0.006451,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208110,-0.006451,0.007746,0.249880,0,0);}
.mcba_c00001{transform:matrix(0.208123,-0.006036,0.007247,0.249895,0,0);-ms-transform:matrix(0.208123,-0.006036,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208123,-0.006036,0.007247,0.249895,0,0);}
.m2183_c00001{transform:matrix(0.208128,0.005828,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208128,0.005828,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208128,0.005828,-0.006997,0.249902,0,0);}
.m2951_c00001{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.m16d9_c00001{transform:matrix(0.208139,-0.007084,0.008504,0.249855,0,0);-ms-transform:matrix(0.208139,-0.007084,0.008504,0.249855,0,0);-webkit-transform:matrix(0.208139,-0.007084,0.008504,0.249855,0,0);}
.m13ef_c00001{transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);-ms-transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208140,-0.005412,0.006498,0.249916,0,0);}
.m21fc_c00001{transform:matrix(0.208142,-0.003955,0.004749,0.249955,0,0);-ms-transform:matrix(0.208142,-0.003955,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208142,-0.003955,0.004749,0.249955,0,0);}
.m1d6f_c00001{transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208145,0.000000,0.000000,0.250000,0,0);}
.m21df_c00001{transform:matrix(0.208150,-0.004996,0.005998,0.249928,0,0);-ms-transform:matrix(0.208150,-0.004996,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208150,-0.004996,0.005998,0.249928,0,0);}
.m1144_c00001{transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208155,0.000000,0.000000,0.250000,0,0);}
.m23fb_c00001{transform:matrix(0.208160,-0.004580,0.005499,0.249940,0,0);-ms-transform:matrix(0.208160,-0.004580,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208160,-0.004580,0.005499,0.249940,0,0);}
.m1318_c00001{transform:matrix(0.208174,0.005621,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208174,0.005621,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208174,0.005621,-0.006748,0.249909,0,0);}
.m1fa_c00001{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m18e0_c00001{transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);}
.m1597_c00001{transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208210,0.000000,0.000000,0.250000,0,0);}
.m3a0_c00001{transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);-ms-transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208212,-0.002707,0.003250,0.249979,0,0);}
.m51a_c00001{transform:matrix(0.208217,0.002290,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208217,0.002290,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208217,0.002290,-0.002750,0.249985,0,0);}
.m1f89_c00001{transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208220,0.000000,0.000000,0.250000,0,0);}
.mdad_c00001{transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208230,0.000000,0.000000,0.250000,0,0);}
.m1737_c00001{transform:matrix(0.208235,-0.005414,0.006498,0.249916,0,0);-ms-transform:matrix(0.208235,-0.005414,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208235,-0.005414,0.006498,0.249916,0,0);}
.m1354_c00001{transform:matrix(0.208237,0.006039,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208237,0.006039,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208237,0.006039,-0.007247,0.249895,0,0);}
.m214f_c00001{transform:matrix(0.208243,0.005831,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208243,0.005831,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208243,0.005831,-0.006997,0.249902,0,0);}
.m163f_c00001{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7b6_c00001{transform:matrix(0.208258,-0.005831,0.006997,0.249902,0,0);-ms-transform:matrix(0.208258,-0.005831,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208258,-0.005831,0.006997,0.249902,0,0);}
.m1fad_c00001{transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208260,0.000000,0.000000,0.250000,0,0);}
.m4df_c00001{transform:matrix(0.208272,0.002291,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208272,0.002291,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208272,0.002291,-0.002750,0.249985,0,0);}
.ma3d_c00001{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m1d58_c00001{transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);}
.m1623_c00001{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.ma02_c00001{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m231f_c00001{transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);}
.m2181_c00001{transform:matrix(0.208308,0.005833,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208308,0.005833,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208308,0.005833,-0.006997,0.249902,0,0);}
.m18a1_c00001{transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208335,0.000000,0.000000,0.250000,0,0);}
.m2001_c00001{transform:matrix(0.208340,-0.005208,0.006248,0.249922,0,0);-ms-transform:matrix(0.208340,-0.005208,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208340,-0.005208,0.006248,0.249922,0,0);}
.m2715_c00001{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.mcb2_c00001{transform:matrix(0.208362,-0.006043,0.007247,0.249895,0,0);-ms-transform:matrix(0.208362,-0.006043,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208362,-0.006043,0.007247,0.249895,0,0);}
.m127b_c00001{transform:matrix(0.208364,-0.005626,0.006748,0.249909,0,0);-ms-transform:matrix(0.208364,-0.005626,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208364,-0.005626,0.006748,0.249909,0,0);}
.m286b_c00001{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.m210e_c00001{transform:matrix(0.208393,0.005835,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208393,0.005835,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208393,0.005835,-0.006997,0.249902,0,0);}
.m1872_c00001{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m2572_c00001{transform:matrix(0.208397,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208397,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208397,-0.002709,0.003250,0.249979,0,0);}
.m1c93_c00001{transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208415,0.000000,0.000000,0.250000,0,0);}
.m173_c00001{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m1055_c00001{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m3c7_c00001{transform:matrix(0.208426,-0.006885,0.008254,0.249864,0,0);-ms-transform:matrix(0.208426,-0.006885,0.008254,0.249864,0,0);-webkit-transform:matrix(0.208426,-0.006885,0.008254,0.249864,0,0);}
.m22da_c00001{transform:matrix(0.208433,0.003335,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208433,0.003335,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208433,0.003335,-0.003999,0.249968,0,0);}
.m246c_c00001{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.me63_c00001{transform:matrix(0.208436,0.003752,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208436,0.003752,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208436,0.003752,-0.004499,0.249960,0,0);}
.ma09_c00001{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.mb4f_c00001{transform:matrix(0.208446,-0.008138,0.009752,0.249810,0,0);-ms-transform:matrix(0.208446,-0.008138,0.009752,0.249810,0,0);-webkit-transform:matrix(0.208446,-0.008138,0.009752,0.249810,0,0);}
.m13d3_c00001{transform:matrix(0.208455,-0.005420,0.006498,0.249916,0,0);-ms-transform:matrix(0.208455,-0.005420,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208455,-0.005420,0.006498,0.249916,0,0);}
.ma37_c00001{transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);}
.m1cc3_c00001{transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208460,0.000000,0.000000,0.250000,0,0);}
.m1cd9_c00001{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m1e6c_c00001{transform:matrix(0.208485,-0.005421,0.006498,0.249916,0,0);-ms-transform:matrix(0.208485,-0.005421,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208485,-0.005421,0.006498,0.249916,0,0);}
.m2424_c00001{transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);-ms-transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);}
.m1a49_c00001{transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);}
.m1d8e_c00001{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m141_c00001{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m1421_c00001{transform:matrix(0.208520,-0.005422,0.006498,0.249916,0,0);-ms-transform:matrix(0.208520,-0.005422,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208520,-0.005422,0.006498,0.249916,0,0);}
.m1fa6_c00001{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m221b_c00001{transform:matrix(0.208530,-0.004796,0.005748,0.249934,0,0);-ms-transform:matrix(0.208530,-0.004796,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208530,-0.004796,0.005748,0.249934,0,0);}
.m18d7_c00001{transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208530,0.000000,0.000000,0.250000,0,0);}
.m14a1_c00001{transform:matrix(0.208531,0.006888,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208531,0.006888,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208531,0.006888,-0.008254,0.249864,0,0);}
.mcb9_c00001{transform:matrix(0.208532,-0.006047,0.007247,0.249895,0,0);-ms-transform:matrix(0.208532,-0.006047,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208532,-0.006047,0.007247,0.249895,0,0);}
.md3_c00001{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m1fde_c00001{transform:matrix(0.208540,-0.005213,0.006248,0.249922,0,0);-ms-transform:matrix(0.208540,-0.005213,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208540,-0.005213,0.006248,0.249922,0,0);}
.m2207_c00001{transform:matrix(0.208547,-0.003962,0.004749,0.249955,0,0);-ms-transform:matrix(0.208547,-0.003962,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208547,-0.003962,0.004749,0.249955,0,0);}
.me9_c00001{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00001{transform:matrix(0.208570,-0.004797,0.005748,0.249934,0,0);-ms-transform:matrix(0.208570,-0.004797,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208570,-0.004797,0.005748,0.249934,0,0);}
.m293f_c00001{transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208570,0.000000,0.000000,0.250000,0,0);}
.mb83_c00001{transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);-ms-transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);-webkit-transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);}
.med5_c00001{transform:matrix(0.208585,0.002920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208585,0.002920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208585,0.002920,-0.003500,0.249976,0,0);}
.m1930_c00001{transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);}
.m9c6_c00001{transform:matrix(0.208595,0.002920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208595,0.002920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208595,0.002920,-0.003500,0.249976,0,0);}
.m8f4_c00001{transform:matrix(0.208619,-0.007935,0.009503,0.249819,0,0);-ms-transform:matrix(0.208619,-0.007935,0.009503,0.249819,0,0);-webkit-transform:matrix(0.208619,-0.007935,0.009503,0.249819,0,0);}
.m7b0_c00001{transform:matrix(0.208623,-0.005841,0.006997,0.249902,0,0);-ms-transform:matrix(0.208623,-0.005841,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208623,-0.005841,0.006997,0.249902,0,0);}
.m1210_c00001{transform:matrix(0.208624,-0.005633,0.006748,0.249909,0,0);-ms-transform:matrix(0.208624,-0.005633,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208624,-0.005633,0.006748,0.249909,0,0);}
.m3b5_c00001{transform:matrix(0.208627,-0.002712,0.003250,0.249979,0,0);-ms-transform:matrix(0.208627,-0.002712,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208627,-0.002712,0.003250,0.249979,0,0);}
.m8cc_c00001{transform:matrix(0.208640,-0.005007,0.005998,0.249928,0,0);-ms-transform:matrix(0.208640,-0.005007,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208640,-0.005007,0.005998,0.249928,0,0);}
.m17ef_c00001{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m16b5_c00001{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m8f5_c00001{transform:matrix(0.208669,-0.007937,0.009503,0.249819,0,0);-ms-transform:matrix(0.208669,-0.007937,0.009503,0.249819,0,0);-webkit-transform:matrix(0.208669,-0.007937,0.009503,0.249819,0,0);}
.mf83_c00001{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.m34d_c00001{transform:matrix(0.208682,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208682,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208682,-0.002713,0.003250,0.249979,0,0);}
.m22dc_c00001{transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);}
.m296c_c00001{transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208685,0.000000,0.000000,0.250000,0,0);}
.mc96_c00001{transform:matrix(0.208687,-0.006052,0.007247,0.249895,0,0);-ms-transform:matrix(0.208687,-0.006052,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208687,-0.006052,0.007247,0.249895,0,0);}
.m700_c00001{transform:matrix(0.208700,0.005217,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208700,0.005217,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208700,0.005217,-0.006248,0.249922,0,0);}
.m19f9_c00001{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.mb8c_c00001{transform:matrix(0.208743,0.011504,-0.013757,0.249621,0,0);-ms-transform:matrix(0.208743,0.011504,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.208743,0.011504,-0.013757,0.249621,0,0);}
.m27cf_c00001{transform:matrix(0.208750,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208750,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208750,-0.002505,0.003000,0.249982,0,0);}
.md59_c00001{transform:matrix(0.208762,-0.006054,0.007247,0.249895,0,0);-ms-transform:matrix(0.208762,-0.006054,0.007247,0.249895,0,0);-webkit-transform:matrix(0.208762,-0.006054,0.007247,0.249895,0,0);}
.m223c_c00001{transform:matrix(0.208769,-0.004384,0.005249,0.249945,0,0);-ms-transform:matrix(0.208769,-0.004384,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208769,-0.004384,0.005249,0.249945,0,0);}
.m268f_c00001{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m2916_c00001{transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);}
.m1df_c00001{transform:matrix(0.208783,-0.004176,0.004999,0.249950,0,0);-ms-transform:matrix(0.208783,-0.004176,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208783,-0.004176,0.004999,0.249950,0,0);}
.m206c_c00001{transform:matrix(0.208785,-0.006472,0.007746,0.249880,0,0);-ms-transform:matrix(0.208785,-0.006472,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208785,-0.006472,0.007746,0.249880,0,0);}
.m1547_c00001{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m283_c00001{transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208815,0.000000,0.000000,0.250000,0,0);}
.m23cf_c00001{transform:matrix(0.208839,-0.004594,0.005499,0.249940,0,0);-ms-transform:matrix(0.208839,-0.004594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208839,-0.004594,0.005499,0.249940,0,0);}
.m23e8_c00001{transform:matrix(0.208854,-0.004595,0.005499,0.249940,0,0);-ms-transform:matrix(0.208854,-0.004595,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208854,-0.004595,0.005499,0.249940,0,0);}
.mba9_c00001{transform:matrix(0.208855,0.002506,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208855,0.002506,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208855,0.002506,-0.003000,0.249982,0,0);}
.m25fd_c00001{transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208860,0.000000,0.000000,0.250000,0,0);}
.madd_c00001{transform:matrix(0.208876,-0.008154,0.009752,0.249810,0,0);-ms-transform:matrix(0.208876,-0.008154,0.009752,0.249810,0,0);-webkit-transform:matrix(0.208876,-0.008154,0.009752,0.249810,0,0);}
.m2404_c00001{transform:matrix(0.208894,-0.004596,0.005499,0.249940,0,0);-ms-transform:matrix(0.208894,-0.004596,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208894,-0.004596,0.005499,0.249940,0,0);}
.m106c_c00001{transform:matrix(0.208895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208895,0.000000,0.000000,0.250000,0,0);}
.m1ae8_c00001{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m1bc9_c00001{transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208905,0.000000,0.000000,0.250000,0,0);}
.m209d_c00001{transform:matrix(0.208910,-0.006476,0.007746,0.249880,0,0);-ms-transform:matrix(0.208910,-0.006476,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208910,-0.006476,0.007746,0.249880,0,0);}
.m1acc_c00001{transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208910,0.000000,0.000000,0.250000,0,0);}
.m174c_c00001{transform:matrix(0.208914,-0.005432,0.006498,0.249916,0,0);-ms-transform:matrix(0.208914,-0.005432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208914,-0.005432,0.006498,0.249916,0,0);}
.m1424_c00001{transform:matrix(0.208919,-0.005432,0.006498,0.249916,0,0);-ms-transform:matrix(0.208919,-0.005432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208919,-0.005432,0.006498,0.249916,0,0);}
.m105e_c00001{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m93f_c00001{transform:matrix(0.208954,-0.007948,0.009503,0.249819,0,0);-ms-transform:matrix(0.208954,-0.007948,0.009503,0.249819,0,0);-webkit-transform:matrix(0.208954,-0.007948,0.009503,0.249819,0,0);}
.m139a_c00001{transform:matrix(0.208969,-0.005433,0.006498,0.249916,0,0);-ms-transform:matrix(0.208969,-0.005433,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208969,-0.005433,0.006498,0.249916,0,0);}
.m729_c00001{transform:matrix(0.208970,0.005224,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208970,0.005224,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208970,0.005224,-0.006248,0.249922,0,0);}
.m1c66_c00001{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.m2921_c00001{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m19e2_c00001{transform:matrix(0.208993,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.208993,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208993,-0.003344,0.003999,0.249968,0,0);}
.m1e3e_c00001{transform:matrix(0.208994,-0.005434,0.006498,0.249916,0,0);-ms-transform:matrix(0.208994,-0.005434,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208994,-0.005434,0.006498,0.249916,0,0);}
.m20a6_c00001{transform:matrix(0.209000,-0.006479,0.007746,0.249880,0,0);-ms-transform:matrix(0.209000,-0.006479,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209000,-0.006479,0.007746,0.249880,0,0);}
.m1b4b_c00001{transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);}
.mefb_c00001{transform:matrix(0.209022,0.002717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209022,0.002717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209022,0.002717,-0.003250,0.249979,0,0);}
.m2842_c00001{transform:matrix(0.209022,-0.002717,0.003250,0.249979,0,0);-ms-transform:matrix(0.209022,-0.002717,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209022,-0.002717,0.003250,0.249979,0,0);}
.m2142_c00001{transform:matrix(0.209023,0.005853,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209023,0.005853,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209023,0.005853,-0.006997,0.249902,0,0);}
.m1283_c00001{transform:matrix(0.209024,-0.005644,0.006748,0.249909,0,0);-ms-transform:matrix(0.209024,-0.005644,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209024,-0.005644,0.006748,0.249909,0,0);}
.m23af_c00001{transform:matrix(0.209024,-0.004599,0.005499,0.249940,0,0);-ms-transform:matrix(0.209024,-0.004599,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209024,-0.004599,0.005499,0.249940,0,0);}
.m2016_c00001{transform:matrix(0.209025,-0.006480,0.007746,0.249880,0,0);-ms-transform:matrix(0.209025,-0.006480,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209025,-0.006480,0.007746,0.249880,0,0);}
.mf36_c00001{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m621_c00001{transform:matrix(0.209026,-0.008997,0.010751,0.249769,0,0);-ms-transform:matrix(0.209026,-0.008997,0.010751,0.249769,0,0);-webkit-transform:matrix(0.209026,-0.008997,0.010751,0.249769,0,0);}
.m1e3f_c00001{transform:matrix(0.209029,-0.005435,0.006498,0.249916,0,0);-ms-transform:matrix(0.209029,-0.005435,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209029,-0.005435,0.006498,0.249916,0,0);}
.m697_c00001{transform:matrix(0.209034,-0.008579,0.010252,0.249790,0,0);-ms-transform:matrix(0.209034,-0.008579,0.010252,0.249790,0,0);-webkit-transform:matrix(0.209034,-0.008579,0.010252,0.249790,0,0);}
.m10a9_c00001{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.m2337_c00001{transform:matrix(0.209051,0.003763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209051,0.003763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209051,0.003763,-0.004499,0.249960,0,0);}
.m11bd_c00001{transform:matrix(0.209054,-0.004599,0.005499,0.249940,0,0);-ms-transform:matrix(0.209054,-0.004599,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209054,-0.004599,0.005499,0.249940,0,0);}
.m1496_c00001{transform:matrix(0.209061,0.006906,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209061,0.006906,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209061,0.006906,-0.008254,0.249864,0,0);}
.m614_c00001{transform:matrix(0.209062,-0.009208,0.011000,0.249758,0,0);-ms-transform:matrix(0.209062,-0.009208,0.011000,0.249758,0,0);-webkit-transform:matrix(0.209062,-0.009208,0.011000,0.249758,0,0);}
.m2176_c00001{transform:matrix(0.209063,0.005854,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209063,0.005854,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209063,0.005854,-0.006997,0.249902,0,0);}
.m1544_c00001{transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209080,0.000000,0.000000,0.250000,0,0);}
.m234b_c00001{transform:matrix(0.209081,0.003763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209081,0.003763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209081,0.003763,-0.004499,0.249960,0,0);}
.m2756_c00001{transform:matrix(0.209101,-0.003137,0.003750,0.249972,0,0);-ms-transform:matrix(0.209101,-0.003137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209101,-0.003137,0.003750,0.249972,0,0);}
.m1043_c00001{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m1dc5_c00001{transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209115,0.000000,0.000000,0.250000,0,0);}
.m1e75_c00001{transform:matrix(0.209124,-0.005437,0.006498,0.249916,0,0);-ms-transform:matrix(0.209124,-0.005437,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209124,-0.005437,0.006498,0.249916,0,0);}
.m250f_c00001{transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209130,0.000000,0.000000,0.250000,0,0);}
.m28fa_c00001{transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209140,0.000000,0.000000,0.250000,0,0);}
.m352_c00001{transform:matrix(0.209152,-0.002719,0.003250,0.249979,0,0);-ms-transform:matrix(0.209152,-0.002719,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209152,-0.002719,0.003250,0.249979,0,0);}
.m1305_c00001{transform:matrix(0.209154,0.005647,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209154,0.005647,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209154,0.005647,-0.006748,0.249909,0,0);}
.mb4_c00001{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.me30_c00001{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.m13f5_c00001{transform:matrix(0.209184,-0.005439,0.006498,0.249916,0,0);-ms-transform:matrix(0.209184,-0.005439,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209184,-0.005439,0.006498,0.249916,0,0);}
.m1d87_c00001{transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209195,0.000000,0.000000,0.250000,0,0);}
.mfd5_c00001{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m213a_c00001{transform:matrix(0.209208,0.005858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209208,0.005858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209208,0.005858,-0.006997,0.249902,0,0);}
.me0f_c00001{transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209210,0.000000,0.000000,0.250000,0,0);}
.m5a7_c00001{transform:matrix(0.209217,0.002301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209217,0.002301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209217,0.002301,-0.002750,0.249985,0,0);}
.m16f5_c00001{transform:matrix(0.209219,-0.005440,0.006498,0.249916,0,0);-ms-transform:matrix(0.209219,-0.005440,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209219,-0.005440,0.006498,0.249916,0,0);}
.m10ff_c00001{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11ea_c00001{transform:matrix(0.209254,-0.004604,0.005499,0.249940,0,0);-ms-transform:matrix(0.209254,-0.004604,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209254,-0.004604,0.005499,0.249940,0,0);}
.m473_c00001{transform:matrix(0.209264,-0.007122,0.008504,0.249855,0,0);-ms-transform:matrix(0.209264,-0.007122,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209264,-0.007122,0.008504,0.249855,0,0);}
.m18a0_c00001{transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209270,0.000000,0.000000,0.250000,0,0);}
.m284c_c00001{transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);-ms-transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209272,-0.002721,0.003250,0.249979,0,0);}
.m6b_c00001{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m1ee2_c00001{transform:matrix(0.209279,-0.005441,0.006498,0.249916,0,0);-ms-transform:matrix(0.209279,-0.005441,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209279,-0.005441,0.006498,0.249916,0,0);}
.m1091_c00001{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.m20a8_c00001{transform:matrix(0.209319,-0.006489,0.007746,0.249880,0,0);-ms-transform:matrix(0.209319,-0.006489,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209319,-0.006489,0.007746,0.249880,0,0);}
.m136d_c00001{transform:matrix(0.209322,0.006070,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209322,0.006070,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209322,0.006070,-0.007247,0.249895,0,0);}
.mbe5_c00001{transform:matrix(0.209327,0.002303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209327,0.002303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209327,0.002303,-0.002750,0.249985,0,0);}
.m110_c00001{transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209335,0.000000,0.000000,0.250000,0,0);}
.m13d7_c00001{transform:matrix(0.209339,-0.005443,0.006498,0.249916,0,0);-ms-transform:matrix(0.209339,-0.005443,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209339,-0.005443,0.006498,0.249916,0,0);}
.m1c57_c00001{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m16da_c00001{transform:matrix(0.209349,-0.007125,0.008504,0.249855,0,0);-ms-transform:matrix(0.209349,-0.007125,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209349,-0.007125,0.008504,0.249855,0,0);}
.m10d9_c00001{transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);}
.mfed_c00001{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.m24a9_c00001{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m20a1_c00001{transform:matrix(0.209394,-0.006491,0.007746,0.249880,0,0);-ms-transform:matrix(0.209394,-0.006491,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209394,-0.006491,0.007746,0.249880,0,0);}
.mdc2_c00001{transform:matrix(0.209395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209395,0.000000,0.000000,0.250000,0,0);}
.m6c8_c00001{transform:matrix(0.209405,0.005235,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209405,0.005235,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209405,0.005235,-0.006248,0.249922,0,0);}
.m117a_c00001{transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);}
.m2457_c00001{transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);-ms-transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209414,-0.004607,0.005499,0.249940,0,0);}
.m1f22_c00001{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.md45_c00001{transform:matrix(0.209427,-0.006073,0.007247,0.249895,0,0);-ms-transform:matrix(0.209427,-0.006073,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209427,-0.006073,0.007247,0.249895,0,0);}
.m1233_c00001{transform:matrix(0.209434,-0.005655,0.006748,0.249909,0,0);-ms-transform:matrix(0.209434,-0.005655,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209434,-0.005655,0.006748,0.249909,0,0);}
.m2482_c00001{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m15dc_c00001{transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209445,0.000000,0.000000,0.250000,0,0);}
.m7cd_c00001{transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);-ms-transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209463,-0.005865,0.006997,0.249902,0,0);}
.m299b_c00001{transform:matrix(0.209468,-0.003351,0.003999,0.249968,0,0);-ms-transform:matrix(0.209468,-0.003351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209468,-0.003351,0.003999,0.249968,0,0);}
.md38_c00001{transform:matrix(0.209492,-0.006075,0.007247,0.249895,0,0);-ms-transform:matrix(0.209492,-0.006075,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209492,-0.006075,0.007247,0.249895,0,0);}
.m142a_c00001{transform:matrix(0.209494,-0.005447,0.006498,0.249916,0,0);-ms-transform:matrix(0.209494,-0.005447,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209494,-0.005447,0.006498,0.249916,0,0);}
.m904_c00001{transform:matrix(0.209503,-0.007969,0.009503,0.249819,0,0);-ms-transform:matrix(0.209503,-0.007969,0.009503,0.249819,0,0);-webkit-transform:matrix(0.209503,-0.007969,0.009503,0.249819,0,0);}
.m6e7_c00001{transform:matrix(0.209505,0.005238,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209505,0.005238,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209505,0.005238,-0.006248,0.249922,0,0);}
.m22d4_c00001{transform:matrix(0.209518,0.003352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209518,0.003352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209518,0.003352,-0.003999,0.249968,0,0);}
.m2596_c00001{transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);-ms-transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);}
.m1229_c00001{transform:matrix(0.209534,-0.005657,0.006748,0.249909,0,0);-ms-transform:matrix(0.209534,-0.005657,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209534,-0.005657,0.006748,0.249909,0,0);}
.m144f_c00001{transform:matrix(0.209539,-0.005658,0.006748,0.249909,0,0);-ms-transform:matrix(0.209539,-0.005658,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209539,-0.005658,0.006748,0.249909,0,0);}
.m1751_c00001{transform:matrix(0.209549,-0.005448,0.006498,0.249916,0,0);-ms-transform:matrix(0.209549,-0.005448,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209549,-0.005448,0.006498,0.249916,0,0);}
.m152e_c00001{transform:matrix(0.209551,0.006922,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209551,0.006922,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209551,0.006922,-0.008254,0.249864,0,0);}
.m162a_c00001{transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209560,0.000000,0.000000,0.250000,0,0);}
.m143_c00001{transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209565,0.000000,0.000000,0.250000,0,0);}
.m2978_c00001{transform:matrix(0.209568,-0.004191,0.004999,0.249950,0,0);-ms-transform:matrix(0.209568,-0.004191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209568,-0.004191,0.004999,0.249950,0,0);}
.m18ec_c00001{transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);}
.m15b7_c00001{transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);}
.m2669_c00001{transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209580,0.000000,0.000000,0.250000,0,0);}
.mc7e_c00001{transform:matrix(0.209582,-0.006078,0.007247,0.249895,0,0);-ms-transform:matrix(0.209582,-0.006078,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209582,-0.006078,0.007247,0.249895,0,0);}
.m2126_c00001{transform:matrix(0.209593,0.005869,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209593,0.005869,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209593,0.005869,-0.006997,0.249902,0,0);}
.m28b5_c00001{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m16c7_c00001{transform:matrix(0.209629,-0.007135,0.008504,0.249855,0,0);-ms-transform:matrix(0.209629,-0.007135,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209629,-0.007135,0.008504,0.249855,0,0);}
.m18c4_c00001{transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209640,0.000000,0.000000,0.250000,0,0);}
.m2365_c00001{transform:matrix(0.209641,0.003774,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209641,0.003774,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209641,0.003774,-0.004499,0.249960,0,0);}
.m179e_c00001{transform:matrix(0.209641,-0.003774,0.004499,0.249960,0,0);-ms-transform:matrix(0.209641,-0.003774,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209641,-0.003774,0.004499,0.249960,0,0);}
.m255b_c00001{transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-ms-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209644,-0.002935,0.003500,0.249976,0,0);}
.m28f5_c00001{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m74a_c00001{transform:matrix(0.209653,0.005870,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209653,0.005870,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209653,0.005870,-0.006997,0.249902,0,0);}
.mc14_c00001{transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209665,0.000000,0.000000,0.250000,0,0);}
.m27aa_c00001{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m1bca_c00001{transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209690,0.000000,0.000000,0.250000,0,0);}
.m213e_c00001{transform:matrix(0.209693,0.005871,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209693,0.005871,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209693,0.005871,-0.006997,0.249902,0,0);}
.m15b5_c00001{transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209705,0.000000,0.000000,0.250000,0,0);}
.m263b_c00001{transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209720,0.000000,0.000000,0.250000,0,0);}
.m13d1_c00001{transform:matrix(0.209724,-0.005453,0.006498,0.249916,0,0);-ms-transform:matrix(0.209724,-0.005453,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209724,-0.005453,0.006498,0.249916,0,0);}
.mcf_c00001{transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209730,0.000000,0.000000,0.250000,0,0);}
.m2186_c00001{transform:matrix(0.209738,0.005873,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209738,0.005873,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209738,0.005873,-0.006997,0.249902,0,0);}
.m3c2_c00001{transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209740,0.000000,0.000000,0.250000,0,0);}
.m9e8_c00001{transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209745,0.000000,0.000000,0.250000,0,0);}
.m86a_c00001{transform:matrix(0.209778,-0.005874,0.006997,0.249902,0,0);-ms-transform:matrix(0.209778,-0.005874,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209778,-0.005874,0.006997,0.249902,0,0);}
.me8d_c00001{transform:matrix(0.209779,0.002937,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209779,0.002937,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209779,0.002937,-0.003500,0.249976,0,0);}
.mb99_c00001{transform:matrix(0.209780,0.002517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209780,0.002517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209780,0.002517,-0.003000,0.249982,0,0);}
.m246_c00001{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.mb40_c00001{transform:matrix(0.209810,-0.008191,0.009752,0.249810,0,0);-ms-transform:matrix(0.209810,-0.008191,0.009752,0.249810,0,0);-webkit-transform:matrix(0.209810,-0.008191,0.009752,0.249810,0,0);}
.m1da6_c00001{transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209815,0.000000,0.000000,0.250000,0,0);}
.m26e0_c00001{transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209820,0.000000,0.000000,0.250000,0,0);}
.m72b_c00001{transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);}
.m12_c00001{transform:matrix(0.209825,-0.002098,0.002500,0.249988,0,0);-ms-transform:matrix(0.209825,-0.002098,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209825,-0.002098,0.002500,0.249988,0,0);}
.m18d0_c00001{transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209840,0.000000,0.000000,0.250000,0,0);}
.m28cc_c00001{transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209845,0.000000,0.000000,0.250000,0,0);}
.me8a_c00001{transform:matrix(0.209849,0.002938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209849,0.002938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209849,0.002938,-0.003500,0.249976,0,0);}
.m791_c00001{transform:matrix(0.209855,0.004827,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209855,0.004827,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209855,0.004827,-0.005748,0.249934,0,0);}
.m1aa1_c00001{transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209855,0.000000,0.000000,0.250000,0,0);}
.m2930_c00001{transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209860,0.000000,0.000000,0.250000,0,0);}
.m14ae_c00001{transform:matrix(0.209886,0.006933,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209886,0.006933,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209886,0.006933,-0.008254,0.249864,0,0);}
.m547_c00001{transform:matrix(0.209887,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209887,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209887,0.002309,-0.002750,0.249985,0,0);}
.m2743_c00001{transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209905,0.000000,0.000000,0.250000,0,0);}
.m1fa7_c00001{transform:matrix(0.209920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209920,0.000000,0.000000,0.250000,0,0);}
.m1d5f_c00001{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m15e1_c00001{transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209930,0.000000,0.000000,0.250000,0,0);}
.m24d8_c00001{transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209940,0.000000,0.000000,0.250000,0,0);}
.m1480_c00001{transform:matrix(0.209940,0.006935,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209940,0.006935,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209940,0.006935,-0.008254,0.249864,0,0);}
.m1981_c00001{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.m18db_c00001{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m197b_c00001{transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209960,0.000000,0.000000,0.250000,0,0);}
.m2573_c00001{transform:matrix(0.209962,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.209962,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209962,-0.002730,0.003250,0.249979,0,0);}
.m1380_c00001{transform:matrix(0.209964,-0.005459,0.006498,0.249916,0,0);-ms-transform:matrix(0.209964,-0.005459,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209964,-0.005459,0.006498,0.249916,0,0);}
.m196d_c00001{transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);}
.m26f8_c00001{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.mbb8_c00001{transform:matrix(0.209972,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209972,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209972,0.002310,-0.002750,0.249985,0,0);}
.m1859_c00001{transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209980,0.000000,0.000000,0.250000,0,0);}
.m14c8_c00001{transform:matrix(0.209990,0.006937,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209990,0.006937,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209990,0.006937,-0.008254,0.249864,0,0);}
.m289f_c00001{transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209995,0.000000,0.000000,0.250000,0,0);}
.m835_c00001{transform:matrix(0.210023,-0.005881,0.006997,0.249902,0,0);-ms-transform:matrix(0.210023,-0.005881,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210023,-0.005881,0.006997,0.249902,0,0);}
.m112e_c00001{transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);}
.m14e_c00001{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m28dc_c00001{transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210045,0.000000,0.000000,0.250000,0,0);}
.mb26_c00001{transform:matrix(0.210055,-0.008200,0.009752,0.249810,0,0);-ms-transform:matrix(0.210055,-0.008200,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210055,-0.008200,0.009752,0.249810,0,0);}
.m24d0_c00001{transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210055,0.000000,0.000000,0.250000,0,0);}
.m2575_c00001{transform:matrix(0.210062,-0.002731,0.003250,0.249979,0,0);-ms-transform:matrix(0.210062,-0.002731,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210062,-0.002731,0.003250,0.249979,0,0);}
.m178e_c00001{transform:matrix(0.210064,-0.005462,0.006498,0.249916,0,0);-ms-transform:matrix(0.210064,-0.005462,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210064,-0.005462,0.006498,0.249916,0,0);}
.m1d8f_c00001{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m2042_c00001{transform:matrix(0.210074,-0.006512,0.007746,0.249880,0,0);-ms-transform:matrix(0.210074,-0.006512,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210074,-0.006512,0.007746,0.249880,0,0);}
.m2020_c00001{transform:matrix(0.210079,-0.006512,0.007746,0.249880,0,0);-ms-transform:matrix(0.210079,-0.006512,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210079,-0.006512,0.007746,0.249880,0,0);}
.m1bbc_c00001{transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210080,0.000000,0.000000,0.250000,0,0);}
.m268c_c00001{transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210095,0.000000,0.000000,0.250000,0,0);}
.m2319_c00001{transform:matrix(0.210096,0.003782,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210096,0.003782,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210096,0.003782,-0.004499,0.249960,0,0);}
.m24b4_c00001{transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);}
.m201c_c00001{transform:matrix(0.210109,-0.006513,0.007746,0.249880,0,0);-ms-transform:matrix(0.210109,-0.006513,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210109,-0.006513,0.007746,0.249880,0,0);}
.mf60_c00001{transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210115,0.000000,0.000000,0.250000,0,0);}
.mefc_c00001{transform:matrix(0.210117,0.002732,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210117,0.002732,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210117,0.002732,-0.003250,0.249979,0,0);}
.ma6d_c00001{transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);}
.m249_c00001{transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);}
.me62_c00001{transform:matrix(0.210141,0.003783,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210141,0.003783,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210141,0.003783,-0.004499,0.249960,0,0);}
.m15b_c00001{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m516_c00001{transform:matrix(0.210147,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210147,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210147,0.002312,-0.002750,0.249985,0,0);}
.m2734_c00001{transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);}
.m1d86_c00001{transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210160,0.000000,0.000000,0.250000,0,0);}
.m1e3a_c00001{transform:matrix(0.210174,-0.005465,0.006498,0.249916,0,0);-ms-transform:matrix(0.210174,-0.005465,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210174,-0.005465,0.006498,0.249916,0,0);}
.m9da_c00001{transform:matrix(0.210176,0.003783,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210176,0.003783,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210176,0.003783,-0.004499,0.249960,0,0);}
.mc2_c00001{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.m19e_c00001{transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210190,0.000000,0.000000,0.250000,0,0);}
.m3cb_c00001{transform:matrix(0.210190,-0.006943,0.008254,0.249864,0,0);-ms-transform:matrix(0.210190,-0.006943,0.008254,0.249864,0,0);-webkit-transform:matrix(0.210190,-0.006943,0.008254,0.249864,0,0);}
.m1e0a_c00001{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.m195_c00001{transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210205,0.000000,0.000000,0.250000,0,0);}
.m11d1_c00001{transform:matrix(0.210214,-0.004625,0.005499,0.249940,0,0);-ms-transform:matrix(0.210214,-0.004625,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210214,-0.004625,0.005499,0.249940,0,0);}
.m1e43_c00001{transform:matrix(0.210224,-0.005466,0.006498,0.249916,0,0);-ms-transform:matrix(0.210224,-0.005466,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210224,-0.005466,0.006498,0.249916,0,0);}
.med0_c00001{transform:matrix(0.210224,0.002943,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210224,0.002943,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210224,0.002943,-0.003500,0.249976,0,0);}
.m1c81_c00001{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m1619_c00001{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m233d_c00001{transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);}
.m520_c00001{transform:matrix(0.210287,0.002313,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210287,0.002313,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210287,0.002313,-0.002750,0.249985,0,0);}
.m2283_c00001{transform:matrix(0.210289,-0.004837,0.005748,0.249934,0,0);-ms-transform:matrix(0.210289,-0.004837,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210289,-0.004837,0.005748,0.249934,0,0);}
.m1f51_c00001{transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210290,0.000000,0.000000,0.250000,0,0);}
.md5_c00001{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.m27bf_c00001{transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);}
.m2990_c00001{transform:matrix(0.210318,-0.003365,0.003999,0.249968,0,0);-ms-transform:matrix(0.210318,-0.003365,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210318,-0.003365,0.003999,0.249968,0,0);}
.m1926_c00001{transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210345,0.000000,0.000000,0.250000,0,0);}
.m2708_c00001{transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210370,0.000000,0.000000,0.250000,0,0);}
.m53b_c00001{transform:matrix(0.210387,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210387,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210387,0.002314,-0.002750,0.249985,0,0);}
.m1dba_c00001{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m2458_c00001{transform:matrix(0.210409,-0.004629,0.005499,0.249940,0,0);-ms-transform:matrix(0.210409,-0.004629,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210409,-0.004629,0.005499,0.249940,0,0);}
.m15c4_c00001{transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210410,0.000000,0.000000,0.250000,0,0);}
.m11b_c00001{transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210415,0.000000,0.000000,0.250000,0,0);}
.m136c_c00001{transform:matrix(0.210427,0.006102,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210427,0.006102,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210427,0.006102,-0.007247,0.249895,0,0);}
.m367_c00001{transform:matrix(0.210437,-0.002736,0.003250,0.249979,0,0);-ms-transform:matrix(0.210437,-0.002736,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210437,-0.002736,0.003250,0.249979,0,0);}
.ma78_c00001{transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210440,0.000000,0.000000,0.250000,0,0);}
.m1382_c00001{transform:matrix(0.210444,-0.005472,0.006498,0.249916,0,0);-ms-transform:matrix(0.210444,-0.005472,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210444,-0.005472,0.006498,0.249916,0,0);}
.m225e_c00001{transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);-ms-transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210444,-0.005051,0.005998,0.249928,0,0);}
.m7ad_c00001{transform:matrix(0.210453,-0.005893,0.006997,0.249902,0,0);-ms-transform:matrix(0.210453,-0.005893,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210453,-0.005893,0.006997,0.249902,0,0);}
.m2495_c00001{transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);}
.m1222_c00001{transform:matrix(0.210463,-0.005683,0.006748,0.249909,0,0);-ms-transform:matrix(0.210463,-0.005683,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210463,-0.005683,0.006748,0.249909,0,0);}
.m1fc9_c00001{transform:matrix(0.210474,-0.005262,0.006248,0.249922,0,0);-ms-transform:matrix(0.210474,-0.005262,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210474,-0.005262,0.006248,0.249922,0,0);}
.m69b_c00001{transform:matrix(0.210478,-0.008638,0.010252,0.249790,0,0);-ms-transform:matrix(0.210478,-0.008638,0.010252,0.249790,0,0);-webkit-transform:matrix(0.210478,-0.008638,0.010252,0.249790,0,0);}
.m1cb4_c00001{transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);}
.m276d_c00001{transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);-ms-transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210481,-0.003157,0.003750,0.249972,0,0);}
.m1d3b_c00001{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.m1b10_c00001{transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210495,0.000000,0.000000,0.250000,0,0);}
.mee6_c00001{transform:matrix(0.210497,0.002736,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210497,0.002736,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210497,0.002736,-0.003250,0.249979,0,0);}
.m241b_c00001{transform:matrix(0.210504,-0.004631,0.005499,0.249940,0,0);-ms-transform:matrix(0.210504,-0.004631,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210504,-0.004631,0.005499,0.249940,0,0);}
.ma69_c00001{transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210505,0.000000,0.000000,0.250000,0,0);}
.m8ba_c00001{transform:matrix(0.210514,-0.005052,0.005998,0.249928,0,0);-ms-transform:matrix(0.210514,-0.005052,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210514,-0.005052,0.005998,0.249928,0,0);}
.m1647_c00001{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m1a3c_c00001{transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);}
.me01_c00001{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.me6c_c00001{transform:matrix(0.210549,0.002948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210549,0.002948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210549,0.002948,-0.003500,0.249976,0,0);}
.m2641_c00001{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.mcc0_c00001{transform:matrix(0.210586,-0.006107,0.007247,0.249895,0,0);-ms-transform:matrix(0.210586,-0.006107,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210586,-0.006107,0.007247,0.249895,0,0);}
.m2302_c00001{transform:matrix(0.210596,0.003791,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210596,0.003791,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210596,0.003791,-0.004499,0.249960,0,0);}
.m124b_c00001{transform:matrix(0.210598,-0.005686,0.006748,0.249909,0,0);-ms-transform:matrix(0.210598,-0.005686,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210598,-0.005686,0.006748,0.249909,0,0);}
.m20b9_c00001{transform:matrix(0.210599,0.005265,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210599,0.005265,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210599,0.005265,-0.006248,0.249922,0,0);}
.m2533_c00001{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m2893_c00001{transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210635,0.000000,0.000000,0.250000,0,0);}
.m2121_c00001{transform:matrix(0.210642,0.005898,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210642,0.005898,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210642,0.005898,-0.006997,0.249902,0,0);}
.ma07_c00001{transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210655,0.000000,0.000000,0.250000,0,0);}
.m1e89_c00001{transform:matrix(0.210659,-0.004634,0.005499,0.249940,0,0);-ms-transform:matrix(0.210659,-0.004634,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210659,-0.004634,0.005499,0.249940,0,0);}
.m1ee3_c00001{transform:matrix(0.210669,-0.005477,0.006498,0.249916,0,0);-ms-transform:matrix(0.210669,-0.005477,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210669,-0.005477,0.006498,0.249916,0,0);}
.m1c3_c00001{transform:matrix(0.210683,-0.003371,0.003999,0.249968,0,0);-ms-transform:matrix(0.210683,-0.003371,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210683,-0.003371,0.003999,0.249968,0,0);}
.m1434_c00001{transform:matrix(0.210688,-0.005689,0.006748,0.249909,0,0);-ms-transform:matrix(0.210688,-0.005689,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210688,-0.005689,0.006748,0.249909,0,0);}
.m7fa_c00001{transform:matrix(0.210692,-0.005899,0.006997,0.249902,0,0);-ms-transform:matrix(0.210692,-0.005899,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210692,-0.005899,0.006997,0.249902,0,0);}
.m1a7d_c00001{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m168_c00001{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m16ce_c00001{transform:matrix(0.210708,-0.007171,0.008504,0.249855,0,0);-ms-transform:matrix(0.210708,-0.007171,0.008504,0.249855,0,0);-webkit-transform:matrix(0.210708,-0.007171,0.008504,0.249855,0,0);}
.m2280_c00001{transform:matrix(0.210709,-0.004846,0.005748,0.249934,0,0);-ms-transform:matrix(0.210709,-0.004846,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210709,-0.004846,0.005748,0.249934,0,0);}
.m1bb1_c00001{transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210715,0.000000,0.000000,0.250000,0,0);}
.m54c_c00001{transform:matrix(0.210722,0.002318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210722,0.002318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210722,0.002318,-0.002750,0.249985,0,0);}
.m553_c00001{transform:matrix(0.210732,0.002318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210732,0.002318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210732,0.002318,-0.002750,0.249985,0,0);}
.m1693_c00001{transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210735,0.000000,0.000000,0.250000,0,0);}
.m1d7d_c00001{transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210745,0.000000,0.000000,0.250000,0,0);}
.m2163_c00001{transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);}
.m2093_c00001{transform:matrix(0.210749,-0.006533,0.007746,0.249880,0,0);-ms-transform:matrix(0.210749,-0.006533,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210749,-0.006533,0.007746,0.249880,0,0);}
.m1bd4_c00001{transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);}
.m2298_c00001{transform:matrix(0.210757,-0.004004,0.004749,0.249955,0,0);-ms-transform:matrix(0.210757,-0.004004,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210757,-0.004004,0.004749,0.249955,0,0);}
.m2087_c00001{transform:matrix(0.210759,-0.006534,0.007746,0.249880,0,0);-ms-transform:matrix(0.210759,-0.006534,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210759,-0.006534,0.007746,0.249880,0,0);}
.m92_c00001{transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210760,0.000000,0.000000,0.250000,0,0);}
.md1d_c00001{transform:matrix(0.210766,-0.006112,0.007247,0.249895,0,0);-ms-transform:matrix(0.210766,-0.006112,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210766,-0.006112,0.007247,0.249895,0,0);}
.m15e7_c00001{transform:matrix(0.210770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210770,0.000000,0.000000,0.250000,0,0);}
.m27f8_c00001{transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210780,0.000000,0.000000,0.250000,0,0);}
.m2770_c00001{transform:matrix(0.210781,-0.003162,0.003750,0.249972,0,0);-ms-transform:matrix(0.210781,-0.003162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210781,-0.003162,0.003750,0.249972,0,0);}
.mcc9_c00001{transform:matrix(0.210781,-0.006113,0.007247,0.249895,0,0);-ms-transform:matrix(0.210781,-0.006113,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210781,-0.006113,0.007247,0.249895,0,0);}
.m215f_c00001{transform:matrix(0.210792,0.005902,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210792,0.005902,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210792,0.005902,-0.006997,0.249902,0,0);}
.m20a2_c00001{transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);-ms-transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210794,-0.006535,0.007746,0.249880,0,0);}
.mffa_c00001{transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210810,0.000000,0.000000,0.250000,0,0);}
.m199e_c00001{transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210820,0.000000,0.000000,0.250000,0,0);}
.mfcd_c00001{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m185b_c00001{transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210835,0.000000,0.000000,0.250000,0,0);}
.m2840_c00001{transform:matrix(0.210847,-0.002741,0.003250,0.249979,0,0);-ms-transform:matrix(0.210847,-0.002741,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210847,-0.002741,0.003250,0.249979,0,0);}
.me96_c00001{transform:matrix(0.210849,0.002952,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210849,0.002952,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210849,0.002952,-0.003500,0.249976,0,0);}
.m235_c00001{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m128e_c00001{transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);}
.m1075_c00001{transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210860,0.000000,0.000000,0.250000,0,0);}
.m2703_c00001{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m15df_c00001{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m1e07_c00001{transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210880,0.000000,0.000000,0.250000,0,0);}
.m2391_c00001{transform:matrix(0.210919,-0.005484,0.006498,0.249916,0,0);-ms-transform:matrix(0.210919,-0.005484,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210919,-0.005484,0.006498,0.249916,0,0);}
.m1cba_c00001{transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210920,0.000000,0.000000,0.250000,0,0);}
.m1505_c00001{transform:matrix(0.210950,0.006968,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210950,0.006968,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210950,0.006968,-0.008254,0.249864,0,0);}
.mc5c_c00001{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.m1996_c00001{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.m1c44_c00001{transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210960,0.000000,0.000000,0.250000,0,0);}
.mc8a_c00001{transform:matrix(0.210961,-0.006118,0.007247,0.249895,0,0);-ms-transform:matrix(0.210961,-0.006118,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210961,-0.006118,0.007247,0.249895,0,0);}
.md56_c00001{transform:matrix(0.210966,-0.006118,0.007247,0.249895,0,0);-ms-transform:matrix(0.210966,-0.006118,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210966,-0.006118,0.007247,0.249895,0,0);}
.m2567_c00001{transform:matrix(0.210967,-0.002743,0.003250,0.249979,0,0);-ms-transform:matrix(0.210967,-0.002743,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210967,-0.002743,0.003250,0.249979,0,0);}
.m20eb_c00001{transform:matrix(0.210979,0.005274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210979,0.005274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210979,0.005274,-0.006248,0.249922,0,0);}
.m1655_c00001{transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210985,0.000000,0.000000,0.250000,0,0);}
.m1ad7_c00001{transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);}
.mb09_c00001{transform:matrix(0.210999,-0.008237,0.009752,0.249810,0,0);-ms-transform:matrix(0.210999,-0.008237,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210999,-0.008237,0.009752,0.249810,0,0);}
.m151d_c00001{transform:matrix(0.211005,0.006970,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211005,0.006970,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211005,0.006970,-0.008254,0.249864,0,0);}
.m174_c00001{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m72a_c00001{transform:matrix(0.211019,0.005275,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211019,0.005275,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211019,0.005275,-0.006248,0.249922,0,0);}
.m26ac_c00001{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m10b1_c00001{transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);}
.m190f_c00001{transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211040,0.000000,0.000000,0.250000,0,0);}
.m1624_c00001{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m1a30_c00001{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.m4d8_c00001{transform:matrix(0.211057,0.002322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211057,0.002322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211057,0.002322,-0.002750,0.249985,0,0);}
.m19ce_c00001{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.m2cb_c00001{transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211065,0.000000,0.000000,0.250000,0,0);}
.m25dc_c00001{transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);}
.mdd9_c00001{transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211080,0.000000,0.000000,0.250000,0,0);}
.m1217_c00001{transform:matrix(0.211113,-0.005700,0.006748,0.249909,0,0);-ms-transform:matrix(0.211113,-0.005700,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211113,-0.005700,0.006748,0.249909,0,0);}
.m174e_c00001{transform:matrix(0.211124,-0.005489,0.006498,0.249916,0,0);-ms-transform:matrix(0.211124,-0.005489,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211124,-0.005489,0.006498,0.249916,0,0);}
.m2911_c00001{transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211130,0.000000,0.000000,0.250000,0,0);}
.ma2a_c00001{transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211135,0.000000,0.000000,0.250000,0,0);}
.mdb2_c00001{transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211140,0.000000,0.000000,0.250000,0,0);}
.m107f_c00001{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.mf5d_c00001{transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211155,0.000000,0.000000,0.250000,0,0);}
.m1902_c00001{transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211160,0.000000,0.000000,0.250000,0,0);}
.m178b_c00001{transform:matrix(0.211164,-0.005490,0.006498,0.249916,0,0);-ms-transform:matrix(0.211164,-0.005490,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211164,-0.005490,0.006498,0.249916,0,0);}
.m26cc_c00001{transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211170,0.000000,0.000000,0.250000,0,0);}
.m1bc5_c00001{transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211180,0.000000,0.000000,0.250000,0,0);}
.m207f_c00001{transform:matrix(0.211199,-0.006547,0.007746,0.249880,0,0);-ms-transform:matrix(0.211199,-0.006547,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211199,-0.006547,0.007746,0.249880,0,0);}
.m1a28_c00001{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m12dd_c00001{transform:matrix(0.211203,0.005702,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211203,0.005702,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211203,0.005702,-0.006748,0.249909,0,0);}
.me2e_c00001{transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);}
.m1a10_c00001{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m838_c00001{transform:matrix(0.211227,-0.005914,0.006997,0.249902,0,0);-ms-transform:matrix(0.211227,-0.005914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211227,-0.005914,0.006997,0.249902,0,0);}
.m248d_c00001{transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211235,0.000000,0.000000,0.250000,0,0);}
.m26dc_c00001{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.m25a_c00001{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me3d_c00001{transform:matrix(0.211251,0.003803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211251,0.003803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211251,0.003803,-0.004499,0.249960,0,0);}
.m28be_c00001{transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211255,0.000000,0.000000,0.250000,0,0);}
.m1822_c00001{transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211280,0.000000,0.000000,0.250000,0,0);}
.m1d88_c00001{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.m1e0b_c00001{transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);}
.m1f88_c00001{transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211305,0.000000,0.000000,0.250000,0,0);}
.m219_c00001{transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);}
.m649_c00001{transform:matrix(0.211327,-0.008673,0.010252,0.249790,0,0);-ms-transform:matrix(0.211327,-0.008673,0.010252,0.249790,0,0);-webkit-transform:matrix(0.211327,-0.008673,0.010252,0.249790,0,0);}
.m10ac_c00001{transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211330,0.000000,0.000000,0.250000,0,0);}
.m279d_c00001{transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);}
.m8fa_c00001{transform:matrix(0.211342,-0.008039,0.009503,0.249819,0,0);-ms-transform:matrix(0.211342,-0.008039,0.009503,0.249819,0,0);-webkit-transform:matrix(0.211342,-0.008039,0.009503,0.249819,0,0);}
.m180a_c00001{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.mc59_c00001{transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211355,0.000000,0.000000,0.250000,0,0);}
.mce_c00001{transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211360,0.000000,0.000000,0.250000,0,0);}
.m155b_c00001{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m10a4_c00001{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m65d_c00001{transform:matrix(0.211377,-0.008675,0.010252,0.249790,0,0);-ms-transform:matrix(0.211377,-0.008675,0.010252,0.249790,0,0);-webkit-transform:matrix(0.211377,-0.008675,0.010252,0.249790,0,0);}
.m124e_c00001{transform:matrix(0.211378,-0.005707,0.006748,0.249909,0,0);-ms-transform:matrix(0.211378,-0.005707,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211378,-0.005707,0.006748,0.249909,0,0);}
.m10cd_c00001{transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211385,0.000000,0.000000,0.250000,0,0);}
.m2564_c00001{transform:matrix(0.211387,-0.002748,0.003250,0.249979,0,0);-ms-transform:matrix(0.211387,-0.002748,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211387,-0.002748,0.003250,0.249979,0,0);}
.m545_c00001{transform:matrix(0.211387,0.002325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211387,0.002325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211387,0.002325,-0.002750,0.249985,0,0);}
.m1dbd_c00001{transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211390,0.000000,0.000000,0.250000,0,0);}
.m2700_c00001{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.mb32_c00001{transform:matrix(0.211409,-0.008253,0.009752,0.249810,0,0);-ms-transform:matrix(0.211409,-0.008253,0.009752,0.249810,0,0);-webkit-transform:matrix(0.211409,-0.008253,0.009752,0.249810,0,0);}
.m130d_c00001{transform:matrix(0.211423,0.005708,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211423,0.005708,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211423,0.005708,-0.006748,0.249909,0,0);}
.m1497_c00001{transform:matrix(0.211425,0.006984,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211425,0.006984,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211425,0.006984,-0.008254,0.249864,0,0);}
.m167b_c00001{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m21ce_c00001{transform:matrix(0.211429,-0.004863,0.005748,0.249934,0,0);-ms-transform:matrix(0.211429,-0.004863,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211429,-0.004863,0.005748,0.249934,0,0);}
.m19bf_c00001{transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000000,0.000000,0.250000,0,0);}
.ma38_c00001{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m2418_c00001{transform:matrix(0.211459,-0.004652,0.005499,0.249940,0,0);-ms-transform:matrix(0.211459,-0.004652,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211459,-0.004652,0.005499,0.249940,0,0);}
.ma7f_c00001{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m157a_c00001{transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211465,0.000000,0.000000,0.250000,0,0);}
.m396_c00001{transform:matrix(0.211472,-0.002749,0.003250,0.249979,0,0);-ms-transform:matrix(0.211472,-0.002749,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211472,-0.002749,0.003250,0.249979,0,0);}
.m23e4_c00001{transform:matrix(0.211484,-0.004653,0.005499,0.249940,0,0);-ms-transform:matrix(0.211484,-0.004653,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211484,-0.004653,0.005499,0.249940,0,0);}
.m23cb_c00001{transform:matrix(0.211504,-0.004653,0.005499,0.249940,0,0);-ms-transform:matrix(0.211504,-0.004653,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211504,-0.004653,0.005499,0.249940,0,0);}
.m8a6_c00001{transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211505,0.000000,0.000000,0.250000,0,0);}
.m8a2_c00001{transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211515,0.000000,0.000000,0.250000,0,0);}
.m1ff2_c00001{transform:matrix(0.211519,-0.005288,0.006248,0.249922,0,0);-ms-transform:matrix(0.211519,-0.005288,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211519,-0.005288,0.006248,0.249922,0,0);}
.m1230_c00001{transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);-ms-transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211523,-0.005711,0.006748,0.249909,0,0);}
.m174b_c00001{transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);-ms-transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211524,-0.005500,0.006498,0.249916,0,0);}
.m1d96_c00001{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m1645_c00001{transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211530,0.000000,0.000000,0.250000,0,0);}
.m2723_c00001{transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);}
.m1522_c00001{transform:matrix(0.211555,0.006988,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211555,0.006988,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211555,0.006988,-0.008254,0.249864,0,0);}
.m1834_c00001{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m1d2c_c00001{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m19b0_c00001{transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211570,0.000000,0.000000,0.250000,0,0);}
.m1656_c00001{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m10b2_c00001{transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211585,0.000000,0.000000,0.250000,0,0);}
.m29b8_c00001{transform:matrix(0.211586,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211586,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211586,-0.003174,0.003750,0.249972,0,0);}
.m1c56_c00001{transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211590,0.000000,0.000000,0.250000,0,0);}
.mab2_c00001{transform:matrix(0.211594,-0.008260,0.009752,0.249810,0,0);-ms-transform:matrix(0.211594,-0.008260,0.009752,0.249810,0,0);-webkit-transform:matrix(0.211594,-0.008260,0.009752,0.249810,0,0);}
.m2720_c00001{transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211595,0.000000,0.000000,0.250000,0,0);}
.m114f_c00001{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.md7e_c00001{transform:matrix(0.211607,0.002751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211607,0.002751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211607,0.002751,-0.003250,0.249979,0,0);}
.m26aa_c00001{transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211620,0.000000,0.000000,0.250000,0,0);}
.m1b4c_c00001{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m209f_c00001{transform:matrix(0.211628,-0.006560,0.007746,0.249880,0,0);-ms-transform:matrix(0.211628,-0.006560,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211628,-0.006560,0.007746,0.249880,0,0);}
.m23ac_c00001{transform:matrix(0.211634,-0.004656,0.005499,0.249940,0,0);-ms-transform:matrix(0.211634,-0.004656,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211634,-0.004656,0.005499,0.249940,0,0);}
.m80d_c00001{transform:matrix(0.211637,-0.005926,0.006997,0.249902,0,0);-ms-transform:matrix(0.211637,-0.005926,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211637,-0.005926,0.006997,0.249902,0,0);}
.m2591_c00001{transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211657,-0.002328,0.002750,0.249985,0,0);}
.m7e9_c00001{transform:matrix(0.211662,-0.005927,0.006997,0.249902,0,0);-ms-transform:matrix(0.211662,-0.005927,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211662,-0.005927,0.006997,0.249902,0,0);}
.m2054_c00001{transform:matrix(0.211663,-0.006562,0.007746,0.249880,0,0);-ms-transform:matrix(0.211663,-0.006562,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211663,-0.006562,0.007746,0.249880,0,0);}
.m1e41_c00001{transform:matrix(0.211673,-0.005504,0.006498,0.249916,0,0);-ms-transform:matrix(0.211673,-0.005504,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211673,-0.005504,0.006498,0.249916,0,0);}
.mcf4_c00001{transform:matrix(0.211676,-0.006139,0.007247,0.249895,0,0);-ms-transform:matrix(0.211676,-0.006139,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211676,-0.006139,0.007247,0.249895,0,0);}
.ma40_c00001{transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);}
.mac5_c00001{transform:matrix(0.211704,-0.008265,0.009752,0.249810,0,0);-ms-transform:matrix(0.211704,-0.008265,0.009752,0.249810,0,0);-webkit-transform:matrix(0.211704,-0.008265,0.009752,0.249810,0,0);}
.mae8_c00001{transform:matrix(0.211709,-0.008265,0.009752,0.249810,0,0);-ms-transform:matrix(0.211709,-0.008265,0.009752,0.249810,0,0);-webkit-transform:matrix(0.211709,-0.008265,0.009752,0.249810,0,0);}
.m14e0_c00001{transform:matrix(0.211710,0.006993,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211710,0.006993,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211710,0.006993,-0.008254,0.249864,0,0);}
.m17c4_c00001{transform:matrix(0.211715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211715,0.000000,0.000000,0.250000,0,0);}
.m2047_c00001{transform:matrix(0.211723,-0.006563,0.007746,0.249880,0,0);-ms-transform:matrix(0.211723,-0.006563,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211723,-0.006563,0.007746,0.249880,0,0);}
.m1e3b_c00001{transform:matrix(0.211728,-0.005505,0.006498,0.249916,0,0);-ms-transform:matrix(0.211728,-0.005505,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211728,-0.005505,0.006498,0.249916,0,0);}
.m1c38_c00001{transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);}
.m117_c00001{transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211755,0.000000,0.000000,0.250000,0,0);}
.m1dfd_c00001{transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);}
.m86f_c00001{transform:matrix(0.211782,-0.005930,0.006997,0.249902,0,0);-ms-transform:matrix(0.211782,-0.005930,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211782,-0.005930,0.006997,0.249902,0,0);}
.m23b0_c00001{transform:matrix(0.211784,-0.004659,0.005499,0.249940,0,0);-ms-transform:matrix(0.211784,-0.004659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211784,-0.004659,0.005499,0.249940,0,0);}
.m1156_c00001{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.m26a3_c00001{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.m2120_c00001{transform:matrix(0.211812,0.005931,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211812,0.005931,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211812,0.005931,-0.006997,0.249902,0,0);}
.m1a3b_c00001{transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211815,0.000000,0.000000,0.250000,0,0);}
.m1846_c00001{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m2494_c00001{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.md0e_c00001{transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);-ms-transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211841,-0.006143,0.007247,0.249895,0,0);}
.m1b0c_c00001{transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211855,0.000000,0.000000,0.250000,0,0);}
.m15f1_c00001{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m203d_c00001{transform:matrix(0.211893,-0.006569,0.007746,0.249880,0,0);-ms-transform:matrix(0.211893,-0.006569,0.007746,0.249880,0,0);-webkit-transform:matrix(0.211893,-0.006569,0.007746,0.249880,0,0);}
.m2607_c00001{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m28d9_c00001{transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211920,0.000000,0.000000,0.250000,0,0);}
.m117c_c00001{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m2456_c00001{transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);-ms-transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211944,-0.004663,0.005499,0.249940,0,0);}
.m125e_c00001{transform:matrix(0.211963,-0.005723,0.006748,0.249909,0,0);-ms-transform:matrix(0.211963,-0.005723,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211963,-0.005723,0.006748,0.249909,0,0);}
.m109b_c00001{transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);}
.m1ab5_c00001{transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211980,0.000000,0.000000,0.250000,0,0);}
.mc5b_c00001{transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211990,0.000000,0.000000,0.250000,0,0);}
.m11d6_c00001{transform:matrix(0.211994,-0.004664,0.005499,0.249940,0,0);-ms-transform:matrix(0.211994,-0.004664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211994,-0.004664,0.005499,0.249940,0,0);}
.m18a6_c00001{transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211995,0.000000,0.000000,0.250000,0,0);}
.m13e3_c00001{transform:matrix(0.211998,-0.005512,0.006498,0.249916,0,0);-ms-transform:matrix(0.211998,-0.005512,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211998,-0.005512,0.006498,0.249916,0,0);}
.m1161_c00001{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1b43_c00001{transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);}
.md21_c00001{transform:matrix(0.212036,-0.006149,0.007247,0.249895,0,0);-ms-transform:matrix(0.212036,-0.006149,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212036,-0.006149,0.007247,0.249895,0,0);}
.m222_c00001{transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);}
.m1393_c00001{transform:matrix(0.212043,-0.005513,0.006498,0.249916,0,0);-ms-transform:matrix(0.212043,-0.005513,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212043,-0.005513,0.006498,0.249916,0,0);}
.m1ad0_c00001{transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);}
.mcc2_c00001{transform:matrix(0.212051,-0.006149,0.007247,0.249895,0,0);-ms-transform:matrix(0.212051,-0.006149,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212051,-0.006149,0.007247,0.249895,0,0);}
.m1662_c00001{transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);}
.m1971_c00001{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m286d_c00001{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.mfcb_c00001{transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212105,0.000000,0.000000,0.250000,0,0);}
.m1762_c00001{transform:matrix(0.212108,-0.005515,0.006498,0.249916,0,0);-ms-transform:matrix(0.212108,-0.005515,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212108,-0.005515,0.006498,0.249916,0,0);}
.m801_c00001{transform:matrix(0.212112,-0.005939,0.006997,0.249902,0,0);-ms-transform:matrix(0.212112,-0.005939,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212112,-0.005939,0.006997,0.249902,0,0);}
.m1e39_c00001{transform:matrix(0.212113,-0.005515,0.006498,0.249916,0,0);-ms-transform:matrix(0.212113,-0.005515,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212113,-0.005515,0.006498,0.249916,0,0);}
.m17c5_c00001{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m15fb_c00001{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m944_c00001{transform:matrix(0.212157,-0.008070,0.009503,0.249819,0,0);-ms-transform:matrix(0.212157,-0.008070,0.009503,0.249819,0,0);-webkit-transform:matrix(0.212157,-0.008070,0.009503,0.249819,0,0);}
.m59a_c00001{transform:matrix(0.212182,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212182,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212182,0.002334,-0.002750,0.249985,0,0);}
.m603_c00001{transform:matrix(0.212183,-0.008921,0.010501,0.249779,0,0);-ms-transform:matrix(0.212183,-0.008921,0.010501,0.249779,0,0);-webkit-transform:matrix(0.212183,-0.008921,0.010501,0.249779,0,0);}
.m9a9_c00001{transform:matrix(0.212217,-0.008072,0.009503,0.249819,0,0);-ms-transform:matrix(0.212217,-0.008072,0.009503,0.249819,0,0);-webkit-transform:matrix(0.212217,-0.008072,0.009503,0.249819,0,0);}
.m2663_c00001{transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);}
.m1417_c00001{transform:matrix(0.212233,-0.005518,0.006498,0.249916,0,0);-ms-transform:matrix(0.212233,-0.005518,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212233,-0.005518,0.006498,0.249916,0,0);}
.m21bc_c00001{transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-ms-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212244,-0.004882,0.005748,0.249934,0,0);}
.m1758_c00001{transform:matrix(0.212248,-0.005518,0.006498,0.249916,0,0);-ms-transform:matrix(0.212248,-0.005518,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212248,-0.005518,0.006498,0.249916,0,0);}
.mbcc_c00001{transform:matrix(0.212252,0.002335,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212252,0.002335,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212252,0.002335,-0.002750,0.249985,0,0);}
.m8c9_c00001{transform:matrix(0.212254,-0.005094,0.005998,0.249928,0,0);-ms-transform:matrix(0.212254,-0.005094,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212254,-0.005094,0.005998,0.249928,0,0);}
.m158a_c00001{transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);}
.m20a0_c00001{transform:matrix(0.212293,-0.006581,0.007746,0.249880,0,0);-ms-transform:matrix(0.212293,-0.006581,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212293,-0.006581,0.007746,0.249880,0,0);}
.m1cad_c00001{transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212295,0.000000,0.000000,0.250000,0,0);}
.m1106_c00001{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m144d_c00001{transform:matrix(0.212303,-0.005732,0.006748,0.249909,0,0);-ms-transform:matrix(0.212303,-0.005732,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212303,-0.005732,0.006748,0.249909,0,0);}
.m15dd_c00001{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.m1924_c00001{transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212315,0.000000,0.000000,0.250000,0,0);}
.m201b_c00001{transform:matrix(0.212323,-0.006582,0.007746,0.249880,0,0);-ms-transform:matrix(0.212323,-0.006582,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212323,-0.006582,0.007746,0.249880,0,0);}
.m1987_c00001{transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);}
.m19c2_c00001{transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);}
.m2864_c00001{transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212370,0.000000,0.000000,0.250000,0,0);}
.mab5_c00001{transform:matrix(0.212378,-0.008291,0.009752,0.249810,0,0);-ms-transform:matrix(0.212378,-0.008291,0.009752,0.249810,0,0);-webkit-transform:matrix(0.212378,-0.008291,0.009752,0.249810,0,0);}
.m1841_c00001{transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212380,0.000000,0.000000,0.250000,0,0);}
.mf10_c00001{transform:matrix(0.212391,0.003823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212391,0.003823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212391,0.003823,-0.004499,0.249960,0,0);}
.m275_c00001{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m1b39_c00001{transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);}
.m21d7_c00001{transform:matrix(0.212409,-0.005098,0.005998,0.249928,0,0);-ms-transform:matrix(0.212409,-0.005098,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212409,-0.005098,0.005998,0.249928,0,0);}
.m1d05_c00001{transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212420,0.000000,0.000000,0.250000,0,0);}
.m56b_c00001{transform:matrix(0.212432,0.002337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212432,0.002337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212432,0.002337,-0.002750,0.249985,0,0);}
.m1791_c00001{transform:matrix(0.212433,-0.005523,0.006498,0.249916,0,0);-ms-transform:matrix(0.212433,-0.005523,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212433,-0.005523,0.006498,0.249916,0,0);}
.m18bc_c00001{transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212445,0.000000,0.000000,0.250000,0,0);}
.m1e38_c00001{transform:matrix(0.212458,-0.005524,0.006498,0.249916,0,0);-ms-transform:matrix(0.212458,-0.005524,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212458,-0.005524,0.006498,0.249916,0,0);}
.m171c_c00001{transform:matrix(0.212468,-0.005524,0.006498,0.249916,0,0);-ms-transform:matrix(0.212468,-0.005524,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212468,-0.005524,0.006498,0.249916,0,0);}
.m1f97_c00001{transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212470,0.000000,0.000000,0.250000,0,0);}
.m1639_c00001{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m285_c00001{transform:matrix(0.212477,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212477,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212477,-0.002337,0.002750,0.249985,0,0);}
.m18af_c00001{transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212485,0.000000,0.000000,0.250000,0,0);}
.m5f0_c00001{transform:matrix(0.212492,-0.008934,0.010501,0.249779,0,0);-ms-transform:matrix(0.212492,-0.008934,0.010501,0.249779,0,0);-webkit-transform:matrix(0.212492,-0.008934,0.010501,0.249779,0,0);}
.me84_c00001{transform:matrix(0.212509,0.002975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212509,0.002975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212509,0.002975,-0.003500,0.249976,0,0);}
.mf64_c00001{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m1ae6_c00001{transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212535,0.000000,0.000000,0.250000,0,0);}
.m14aa_c00001{transform:matrix(0.212554,0.007021,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212554,0.007021,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212554,0.007021,-0.008254,0.249864,0,0);}
.me6b_c00001{transform:matrix(0.212559,0.002976,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212559,0.002976,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212559,0.002976,-0.003500,0.249976,0,0);}
.m1842_c00001{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.mdac_c00001{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m28b4_c00001{transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212580,0.000000,0.000000,0.250000,0,0);}
.m181e_c00001{transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);}
.m684_c00001{transform:matrix(0.212591,-0.008725,0.010252,0.249790,0,0);-ms-transform:matrix(0.212591,-0.008725,0.010252,0.249790,0,0);-webkit-transform:matrix(0.212591,-0.008725,0.010252,0.249790,0,0);}
.m1f76_c00001{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m1c1c_c00001{transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);}
.md4a_c00001{transform:matrix(0.212626,-0.006166,0.007247,0.249895,0,0);-ms-transform:matrix(0.212626,-0.006166,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212626,-0.006166,0.007247,0.249895,0,0);}
.m47f_c00001{transform:matrix(0.212629,-0.006379,0.007497,0.249888,0,0);-ms-transform:matrix(0.212629,-0.006379,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212629,-0.006379,0.007497,0.249888,0,0);}
.m22ae_c00001{transform:matrix(0.212653,0.003402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212653,0.003402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212653,0.003402,-0.003999,0.249968,0,0);}
.m1c47_c00001{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.mce8_c00001{transform:matrix(0.212691,-0.006168,0.007247,0.249895,0,0);-ms-transform:matrix(0.212691,-0.006168,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212691,-0.006168,0.007247,0.249895,0,0);}
.m1951_c00001{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.m13c0_c00001{transform:matrix(0.212713,-0.005531,0.006498,0.249916,0,0);-ms-transform:matrix(0.212713,-0.005531,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212713,-0.005531,0.006498,0.249916,0,0);}
.m149f_c00001{transform:matrix(0.212719,0.007027,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212719,0.007027,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212719,0.007027,-0.008254,0.249864,0,0);}
.m1c94_c00001{transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);}
.mc2a_c00001{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1184_c00001{transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);}
.m2958_c00001{transform:matrix(0.212770,-0.002553,0.003000,0.249982,0,0);-ms-transform:matrix(0.212770,-0.002553,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212770,-0.002553,0.003000,0.249982,0,0);}
.mf91_c00001{transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);}
.m17a2_c00001{transform:matrix(0.212776,-0.003830,0.004499,0.249960,0,0);-ms-transform:matrix(0.212776,-0.003830,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212776,-0.003830,0.004499,0.249960,0,0);}
.m1456_c00001{transform:matrix(0.212777,-0.005745,0.006748,0.249909,0,0);-ms-transform:matrix(0.212777,-0.005745,0.006748,0.249909,0,0);-webkit-transform:matrix(0.212777,-0.005745,0.006748,0.249909,0,0);}
.m1027_c00001{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m24a0_c00001{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.mae1_c00001{transform:matrix(0.212803,-0.008308,0.009752,0.249810,0,0);-ms-transform:matrix(0.212803,-0.008308,0.009752,0.249810,0,0);-webkit-transform:matrix(0.212803,-0.008308,0.009752,0.249810,0,0);}
.m1e79_c00001{transform:matrix(0.212808,-0.005533,0.006498,0.249916,0,0);-ms-transform:matrix(0.212808,-0.005533,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212808,-0.005533,0.006498,0.249916,0,0);}
.md0f_c00001{transform:matrix(0.212811,-0.006172,0.007247,0.249895,0,0);-ms-transform:matrix(0.212811,-0.006172,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212811,-0.006172,0.007247,0.249895,0,0);}
.m1291_c00001{transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);}
.mc82_c00001{transform:matrix(0.212821,-0.006172,0.007247,0.249895,0,0);-ms-transform:matrix(0.212821,-0.006172,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212821,-0.006172,0.007247,0.249895,0,0);}
.m2a9_c00001{transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);}
.mc03_c00001{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m1fd0_c00001{transform:matrix(0.212838,-0.005321,0.006248,0.249922,0,0);-ms-transform:matrix(0.212838,-0.005321,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212838,-0.005321,0.006248,0.249922,0,0);}
.m10af_c00001{transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212840,0.000000,0.000000,0.250000,0,0);}
.m5ff_c00001{transform:matrix(0.212852,-0.008949,0.010501,0.249779,0,0);-ms-transform:matrix(0.212852,-0.008949,0.010501,0.249779,0,0);-webkit-transform:matrix(0.212852,-0.008949,0.010501,0.249779,0,0);}
.m26c6_c00001{transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212870,0.000000,0.000000,0.250000,0,0);}
.m166c_c00001{transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);}
.m218f_c00001{transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);}
.m77d_c00001{transform:matrix(0.212884,0.004896,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212884,0.004896,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212884,0.004896,-0.005748,0.249934,0,0);}
.m10e8_c00001{transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212915,0.000000,0.000000,0.250000,0,0);}
.m3c5_c00001{transform:matrix(0.212929,-0.007034,0.008254,0.249864,0,0);-ms-transform:matrix(0.212929,-0.007034,0.008254,0.249864,0,0);-webkit-transform:matrix(0.212929,-0.007034,0.008254,0.249864,0,0);}
.mcee_c00001{transform:matrix(0.212950,-0.006176,0.007247,0.249895,0,0);-ms-transform:matrix(0.212950,-0.006176,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212950,-0.006176,0.007247,0.249895,0,0);}
.m809_c00001{transform:matrix(0.212952,-0.005963,0.006997,0.249902,0,0);-ms-transform:matrix(0.212952,-0.005963,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212952,-0.005963,0.006997,0.249902,0,0);}
.m2532_c00001{transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212965,0.000000,0.000000,0.250000,0,0);}
.m1a64_c00001{transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213010,0.000000,0.000000,0.250000,0,0);}
.m1b15_c00001{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m1bf8_c00001{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m1894_c00001{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m4c9_c00001{transform:matrix(0.213047,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213047,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213047,0.002344,-0.002750,0.249985,0,0);}
.m763_c00001{transform:matrix(0.213071,0.005966,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213071,0.005966,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213071,0.005966,-0.006997,0.249902,0,0);}
.mbd7_c00001{transform:matrix(0.213077,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213077,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213077,0.002344,-0.002750,0.249985,0,0);}
.mca9_c00001{transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);-ms-transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213080,-0.006179,0.007247,0.249895,0,0);}
.m11b2_c00001{transform:matrix(0.213088,-0.004688,0.005499,0.249940,0,0);-ms-transform:matrix(0.213088,-0.004688,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213088,-0.004688,0.005499,0.249940,0,0);}
.m9d9_c00001{transform:matrix(0.213090,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213090,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213090,0.003836,-0.004499,0.249960,0,0);}
.m1ae5_c00001{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.m216f_c00001{transform:matrix(0.213146,0.005968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213146,0.005968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213146,0.005968,-0.006997,0.249902,0,0);}
.m1333_c00001{transform:matrix(0.213150,0.006181,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213150,0.006181,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213150,0.006181,-0.007247,0.249895,0,0);}
.m2132_c00001{transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);}
.m1c0a_c00001{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.m6a6_c00001{transform:matrix(0.213176,-0.008749,0.010252,0.249790,0,0);-ms-transform:matrix(0.213176,-0.008749,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213176,-0.008749,0.010252,0.249790,0,0);}
.mcd1_c00001{transform:matrix(0.213185,-0.006182,0.007247,0.249895,0,0);-ms-transform:matrix(0.213185,-0.006182,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213185,-0.006182,0.007247,0.249895,0,0);}
.m4dc_c00001{transform:matrix(0.213187,0.002345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213187,0.002345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213187,0.002345,-0.002750,0.249985,0,0);}
.mfaf_c00001{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m22b1_c00001{transform:matrix(0.213193,0.003411,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213193,0.003411,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213193,0.003411,-0.003999,0.249968,0,0);}
.m230c_c00001{transform:matrix(0.213195,0.003838,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213195,0.003838,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213195,0.003838,-0.004499,0.249960,0,0);}
.m27bb_c00001{transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213205,0.000000,0.000000,0.250000,0,0);}
.m19c4_c00001{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.m659_c00001{transform:matrix(0.213235,-0.008751,0.010252,0.249790,0,0);-ms-transform:matrix(0.213235,-0.008751,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213235,-0.008751,0.010252,0.249790,0,0);}
.m762_c00001{transform:matrix(0.213236,0.005971,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213236,0.005971,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213236,0.005971,-0.006997,0.249902,0,0);}
.mb7d_c00001{transform:matrix(0.213239,-0.007044,0.008254,0.249864,0,0);-ms-transform:matrix(0.213239,-0.007044,0.008254,0.249864,0,0);-webkit-transform:matrix(0.213239,-0.007044,0.008254,0.249864,0,0);}
.m227_c00001{transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213240,0.000000,0.000000,0.250000,0,0);}
.m23e2_c00001{transform:matrix(0.213253,-0.004692,0.005499,0.249940,0,0);-ms-transform:matrix(0.213253,-0.004692,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213253,-0.004692,0.005499,0.249940,0,0);}
.m129b_c00001{transform:matrix(0.213263,0.004692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213263,0.004692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213263,0.004692,-0.005499,0.249940,0,0);}
.m1c90_c00001{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.m195e_c00001{transform:matrix(0.213285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213285,0.000000,0.000000,0.250000,0,0);}
.m551_c00001{transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);}
.m2981_c00001{transform:matrix(0.213292,-0.004266,0.004999,0.249950,0,0);-ms-transform:matrix(0.213292,-0.004266,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213292,-0.004266,0.004999,0.249950,0,0);}
.m142_c00001{transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213295,0.000000,0.000000,0.250000,0,0);}
.m27f5_c00001{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.mf74_c00001{transform:matrix(0.213305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213305,0.000000,0.000000,0.250000,0,0);}
.m23db_c00001{transform:matrix(0.213308,-0.004693,0.005499,0.249940,0,0);-ms-transform:matrix(0.213308,-0.004693,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213308,-0.004693,0.005499,0.249940,0,0);}
.m792_c00001{transform:matrix(0.213309,0.004906,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213309,0.004906,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213309,0.004906,-0.005748,0.249934,0,0);}
.m1a9e_c00001{transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213315,0.000000,0.000000,0.250000,0,0);}
.md4f_c00001{transform:matrix(0.213330,-0.006187,0.007247,0.249895,0,0);-ms-transform:matrix(0.213330,-0.006187,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213330,-0.006187,0.007247,0.249895,0,0);}
.mcdf_c00001{transform:matrix(0.213335,-0.006187,0.007247,0.249895,0,0);-ms-transform:matrix(0.213335,-0.006187,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213335,-0.006187,0.007247,0.249895,0,0);}
.m263e_c00001{transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213340,0.000000,0.000000,0.250000,0,0);}
.mde5_c00001{transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213345,0.000000,0.000000,0.250000,0,0);}
.m1163_c00001{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m1f42_c00001{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m2741_c00001{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m699_c00001{transform:matrix(0.213375,-0.008757,0.010252,0.249790,0,0);-ms-transform:matrix(0.213375,-0.008757,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213375,-0.008757,0.010252,0.249790,0,0);}
.m1a83_c00001{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m1446_c00001{transform:matrix(0.213407,-0.005762,0.006748,0.249909,0,0);-ms-transform:matrix(0.213407,-0.005762,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213407,-0.005762,0.006748,0.249909,0,0);}
.m194e_c00001{transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);}
.m2452_c00001{transform:matrix(0.213413,-0.004695,0.005499,0.249940,0,0);-ms-transform:matrix(0.213413,-0.004695,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213413,-0.004695,0.005499,0.249940,0,0);}
.m1cb2_c00001{transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213435,0.000000,0.000000,0.250000,0,0);}
.mc0d_c00001{transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213440,0.000000,0.000000,0.250000,0,0);}
.mf99_c00001{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m1fc4_c00001{transform:matrix(0.213453,-0.005336,0.006248,0.249922,0,0);-ms-transform:matrix(0.213453,-0.005336,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213453,-0.005336,0.006248,0.249922,0,0);}
.m19c3_c00001{transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213460,0.000000,0.000000,0.250000,0,0);}
.m278f_c00001{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.m1603_c00001{transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213495,0.000000,0.000000,0.250000,0,0);}
.m23e1_c00001{transform:matrix(0.213498,-0.004697,0.005499,0.249940,0,0);-ms-transform:matrix(0.213498,-0.004697,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213498,-0.004697,0.005499,0.249940,0,0);}
.m3fc_c00001{transform:matrix(0.213503,-0.004484,0.005249,0.249945,0,0);-ms-transform:matrix(0.213503,-0.004484,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213503,-0.004484,0.005249,0.249945,0,0);}
.m6b1_c00001{transform:matrix(0.213509,0.004911,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213509,0.004911,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213509,0.004911,-0.005748,0.249934,0,0);}
.m1e8c_c00001{transform:matrix(0.213512,-0.004270,0.004999,0.249950,0,0);-ms-transform:matrix(0.213512,-0.004270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213512,-0.004270,0.004999,0.249950,0,0);}
.m2802_c00001{transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213535,0.000000,0.000000,0.250000,0,0);}
.m852_c00001{transform:matrix(0.213546,-0.005979,0.006997,0.249902,0,0);-ms-transform:matrix(0.213546,-0.005979,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213546,-0.005979,0.006997,0.249902,0,0);}
.m8fc_c00001{transform:matrix(0.213556,-0.008123,0.009503,0.249819,0,0);-ms-transform:matrix(0.213556,-0.008123,0.009503,0.249819,0,0);-webkit-transform:matrix(0.213556,-0.008123,0.009503,0.249819,0,0);}
.m1ebc_c00001{transform:matrix(0.213563,-0.005553,0.006498,0.249916,0,0);-ms-transform:matrix(0.213563,-0.005553,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213563,-0.005553,0.006498,0.249916,0,0);}
.m1d1b_c00001{transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213565,0.000000,0.000000,0.250000,0,0);}
.m19eb_c00001{transform:matrix(0.213578,-0.003417,0.003999,0.249968,0,0);-ms-transform:matrix(0.213578,-0.003417,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213578,-0.003417,0.003999,0.249968,0,0);}
.m523_c00001{transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);}
.m1561_c00001{transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213590,0.000000,0.000000,0.250000,0,0);}
.m22db_c00001{transform:matrix(0.213593,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213593,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213593,0.003417,-0.003999,0.249968,0,0);}
.mea4_c00001{transform:matrix(0.213619,0.002991,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213619,0.002991,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213619,0.002991,-0.003500,0.249976,0,0);}
.m1a54_c00001{transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213620,0.000000,0.000000,0.250000,0,0);}
.m15ed_c00001{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m17a8_c00001{transform:matrix(0.213630,-0.003845,0.004499,0.249960,0,0);-ms-transform:matrix(0.213630,-0.003845,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213630,-0.003845,0.004499,0.249960,0,0);}
.mecd_c00001{transform:matrix(0.213634,0.002991,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213634,0.002991,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213634,0.002991,-0.003500,0.249976,0,0);}
.m24b2_c00001{transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);}
.m8f6_c00001{transform:matrix(0.213650,-0.008127,0.009503,0.249819,0,0);-ms-transform:matrix(0.213650,-0.008127,0.009503,0.249819,0,0);-webkit-transform:matrix(0.213650,-0.008127,0.009503,0.249819,0,0);}
.m1708_c00001{transform:matrix(0.213653,-0.005555,0.006498,0.249916,0,0);-ms-transform:matrix(0.213653,-0.005555,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213653,-0.005555,0.006498,0.249916,0,0);}
.mc30_c00001{transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213655,0.000000,0.000000,0.250000,0,0);}
.m203e_c00001{transform:matrix(0.213662,-0.006624,0.007746,0.249880,0,0);-ms-transform:matrix(0.213662,-0.006624,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213662,-0.006624,0.007746,0.249880,0,0);}
.m417_c00001{transform:matrix(0.213668,-0.004487,0.005249,0.249945,0,0);-ms-transform:matrix(0.213668,-0.004487,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213668,-0.004487,0.005249,0.249945,0,0);}
.m273a_c00001{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.m11a_c00001{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.m2cc_c00001{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.m15d3_c00001{transform:matrix(0.213715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213715,0.000000,0.000000,0.250000,0,0);}
.m1f81_c00001{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m291b_c00001{transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213735,0.000000,0.000000,0.250000,0,0);}
.m9f4_c00001{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.m2e3_c00001{transform:matrix(0.213747,-0.002779,0.003250,0.249979,0,0);-ms-transform:matrix(0.213747,-0.002779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213747,-0.002779,0.003250,0.249979,0,0);}
.m23bc_c00001{transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);-ms-transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213753,-0.004703,0.005499,0.249940,0,0);}
.m1e03_c00001{transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213755,0.000000,0.000000,0.250000,0,0);}
.m187c_c00001{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.m2b5_c00001{transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213795,0.000000,0.000000,0.250000,0,0);}
.mc8b_c00001{transform:matrix(0.213800,-0.006200,0.007247,0.249895,0,0);-ms-transform:matrix(0.213800,-0.006200,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213800,-0.006200,0.007247,0.249895,0,0);}
.mbb7_c00001{transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213817,0.002352,-0.002750,0.249985,0,0);}
.m2611_c00001{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m13c_c00001{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m533_c00001{transform:matrix(0.213837,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213837,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213837,0.002352,-0.002750,0.249985,0,0);}
.m1f01_c00001{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m293b_c00001{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m1491_c00001{transform:matrix(0.213853,0.007064,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213853,0.007064,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213853,0.007064,-0.008254,0.249864,0,0);}
.m1e4a_c00001{transform:matrix(0.213858,-0.005560,0.006498,0.249916,0,0);-ms-transform:matrix(0.213858,-0.005560,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213858,-0.005560,0.006498,0.249916,0,0);}
.m2406_c00001{transform:matrix(0.213863,-0.004705,0.005499,0.249940,0,0);-ms-transform:matrix(0.213863,-0.004705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213863,-0.004705,0.005499,0.249940,0,0);}
.m1c5c_c00001{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m2357_c00001{transform:matrix(0.213865,0.003850,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213865,0.003850,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213865,0.003850,-0.004499,0.249960,0,0);}
.mb0c_c00001{transform:matrix(0.213872,-0.008349,0.009752,0.249810,0,0);-ms-transform:matrix(0.213872,-0.008349,0.009752,0.249810,0,0);-webkit-transform:matrix(0.213872,-0.008349,0.009752,0.249810,0,0);}
.m1a99_c00001{transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213885,0.000000,0.000000,0.250000,0,0);}
.m169f_c00001{transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213895,0.000000,0.000000,0.250000,0,0);}
.m1c76_c00001{transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213905,0.000000,0.000000,0.250000,0,0);}
.m870_c00001{transform:matrix(0.213906,-0.005989,0.006997,0.249902,0,0);-ms-transform:matrix(0.213906,-0.005989,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213906,-0.005989,0.006997,0.249902,0,0);}
.m2236_c00001{transform:matrix(0.213908,-0.004492,0.005249,0.249945,0,0);-ms-transform:matrix(0.213908,-0.004492,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213908,-0.004492,0.005249,0.249945,0,0);}
.m2043_c00001{transform:matrix(0.213932,-0.006632,0.007746,0.249880,0,0);-ms-transform:matrix(0.213932,-0.006632,0.007746,0.249880,0,0);-webkit-transform:matrix(0.213932,-0.006632,0.007746,0.249880,0,0);}
.m1eec_c00001{transform:matrix(0.213933,-0.005562,0.006498,0.249916,0,0);-ms-transform:matrix(0.213933,-0.005562,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213933,-0.005562,0.006498,0.249916,0,0);}
.m25fb_c00001{transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213955,0.000000,0.000000,0.250000,0,0);}
.mb74_c00001{transform:matrix(0.213960,-0.006205,0.007247,0.249895,0,0);-ms-transform:matrix(0.213960,-0.006205,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213960,-0.006205,0.007247,0.249895,0,0);}
.m8b_c00001{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.m1f94_c00001{transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213970,0.000000,0.000000,0.250000,0,0);}
.m2117_c00001{transform:matrix(0.213981,0.005991,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213981,0.005991,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213981,0.005991,-0.006997,0.249902,0,0);}
.m18c1_c00001{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m2822_c00001{transform:matrix(0.214012,-0.002782,0.003250,0.249979,0,0);-ms-transform:matrix(0.214012,-0.002782,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214012,-0.002782,0.003250,0.249979,0,0);}
.m1c7b_c00001{transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214020,0.000000,0.000000,0.250000,0,0);}
.m1009_c00001{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m1666_c00001{transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214070,0.000000,0.000000,0.250000,0,0);}
.m4cb_c00001{transform:matrix(0.214087,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214087,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214087,0.002355,-0.002750,0.249985,0,0);}
.m1813_c00001{transform:matrix(0.214090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214090,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m811_c00001{transform:matrix(0.214101,-0.005995,0.006997,0.249902,0,0);-ms-transform:matrix(0.214101,-0.005995,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214101,-0.005995,0.006997,0.249902,0,0);}
.m1e9b_c00001{transform:matrix(0.214128,-0.005567,0.006498,0.249916,0,0);-ms-transform:matrix(0.214128,-0.005567,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214128,-0.005567,0.006498,0.249916,0,0);}
.m97c_c00001{transform:matrix(0.214135,-0.008145,0.009503,0.249819,0,0);-ms-transform:matrix(0.214135,-0.008145,0.009503,0.249819,0,0);-webkit-transform:matrix(0.214135,-0.008145,0.009503,0.249819,0,0);}
.m1e7b_c00001{transform:matrix(0.214138,-0.005568,0.006498,0.249916,0,0);-ms-transform:matrix(0.214138,-0.005568,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214138,-0.005568,0.006498,0.249916,0,0);}
.m1524_c00001{transform:matrix(0.214138,0.007074,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214138,0.007074,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214138,0.007074,-0.008254,0.249864,0,0);}
.m1849_c00001{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.mf21_c00001{transform:matrix(0.214157,0.004283,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214157,0.004283,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214157,0.004283,-0.004999,0.249950,0,0);}
.m2305_c00001{transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214165,0.003855,-0.004499,0.249960,0,0);}
.m138c_c00001{transform:matrix(0.214183,-0.005569,0.006498,0.249916,0,0);-ms-transform:matrix(0.214183,-0.005569,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214183,-0.005569,0.006498,0.249916,0,0);}
.m1e6a_c00001{transform:matrix(0.214193,-0.005569,0.006498,0.249916,0,0);-ms-transform:matrix(0.214193,-0.005569,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214193,-0.005569,0.006498,0.249916,0,0);}
.mbf7_c00001{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.ma54_c00001{transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214210,0.000000,0.000000,0.250000,0,0);}
.m140c_c00001{transform:matrix(0.214243,-0.005570,0.006498,0.249916,0,0);-ms-transform:matrix(0.214243,-0.005570,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214243,-0.005570,0.006498,0.249916,0,0);}
.meeb_c00001{transform:matrix(0.214252,0.002785,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214252,0.002785,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214252,0.002785,-0.003250,0.249979,0,0);}
.m12f4_c00001{transform:matrix(0.214257,0.005785,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214257,0.005785,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214257,0.005785,-0.006748,0.249909,0,0);}
.m1e46_c00001{transform:matrix(0.214268,-0.005571,0.006498,0.249916,0,0);-ms-transform:matrix(0.214268,-0.005571,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214268,-0.005571,0.006498,0.249916,0,0);}
.m2285_c00001{transform:matrix(0.214268,-0.004928,0.005748,0.249934,0,0);-ms-transform:matrix(0.214268,-0.004928,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214268,-0.004928,0.005748,0.249934,0,0);}
.m24cc_c00001{transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214270,0.000000,0.000000,0.250000,0,0);}
.me2d_c00001{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m175e_c00001{transform:matrix(0.214278,-0.005571,0.006498,0.249916,0,0);-ms-transform:matrix(0.214278,-0.005571,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214278,-0.005571,0.006498,0.249916,0,0);}
.m2a8_c00001{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m704_c00001{transform:matrix(0.214298,0.005143,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214298,0.005143,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214298,0.005143,-0.005998,0.249928,0,0);}
.m1e76_c00001{transform:matrix(0.214308,-0.005572,0.006498,0.249916,0,0);-ms-transform:matrix(0.214308,-0.005572,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214308,-0.005572,0.006498,0.249916,0,0);}
.m24e1_c00001{transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214320,0.000000,0.000000,0.250000,0,0);}
.mefd_c00001{transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214322,0.002786,-0.003250,0.249979,0,0);}
.m13fa_c00001{transform:matrix(0.214323,-0.005572,0.006498,0.249916,0,0);-ms-transform:matrix(0.214323,-0.005572,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214323,-0.005572,0.006498,0.249916,0,0);}
.m1b54_c00001{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m866_c00001{transform:matrix(0.214331,-0.006001,0.006997,0.249902,0,0);-ms-transform:matrix(0.214331,-0.006001,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214331,-0.006001,0.006997,0.249902,0,0);}
.m13f8_c00001{transform:matrix(0.214333,-0.005573,0.006498,0.249916,0,0);-ms-transform:matrix(0.214333,-0.005573,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214333,-0.005573,0.006498,0.249916,0,0);}
.m1663_c00001{transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214340,0.000000,0.000000,0.250000,0,0);}
.m9cd_c00001{transform:matrix(0.214344,0.003001,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214344,0.003001,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214344,0.003001,-0.003500,0.249976,0,0);}
.m3e6_c00001{transform:matrix(0.214346,-0.006002,0.006997,0.249902,0,0);-ms-transform:matrix(0.214346,-0.006002,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214346,-0.006002,0.006997,0.249902,0,0);}
.m23b2_c00001{transform:matrix(0.214353,-0.004716,0.005499,0.249940,0,0);-ms-transform:matrix(0.214353,-0.004716,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214353,-0.004716,0.005499,0.249940,0,0);}
.m29a3_c00001{transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214380,0.000000,0.000000,0.250000,0,0);}
.mbd8_c00001{transform:matrix(0.214382,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214382,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214382,0.002358,-0.002750,0.249985,0,0);}
.m17f3_c00001{transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214385,0.000000,0.000000,0.250000,0,0);}
.m143f_c00001{transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-ms-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);-webkit-transform:matrix(0.214387,-0.005788,0.006748,0.249909,0,0);}
.m15f9_c00001{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.m1ea6_c00001{transform:matrix(0.214413,-0.005575,0.006498,0.249916,0,0);-ms-transform:matrix(0.214413,-0.005575,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214413,-0.005575,0.006498,0.249916,0,0);}
.mc0_c00001{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.mabf_c00001{transform:matrix(0.214436,-0.009230,0.010751,0.249769,0,0);-ms-transform:matrix(0.214436,-0.009230,0.010751,0.249769,0,0);-webkit-transform:matrix(0.214436,-0.009230,0.010751,0.249769,0,0);}
.m2587_c00001{transform:matrix(0.214441,-0.003217,0.003750,0.249972,0,0);-ms-transform:matrix(0.214441,-0.003217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214441,-0.003217,0.003750,0.249972,0,0);}
.m2727_c00001{transform:matrix(0.214445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214445,0.000000,0.000000,0.250000,0,0);}
.m901_c00001{transform:matrix(0.214450,-0.008157,0.009503,0.249819,0,0);-ms-transform:matrix(0.214450,-0.008157,0.009503,0.249819,0,0);-webkit-transform:matrix(0.214450,-0.008157,0.009503,0.249819,0,0);}
.mdb6_c00001{transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);}
.m1531_c00001{transform:matrix(0.214463,0.007084,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214463,0.007084,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214463,0.007084,-0.008254,0.249864,0,0);}
.m1aa6_c00001{transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214465,0.000000,0.000000,0.250000,0,0);}
.m8bc_c00001{transform:matrix(0.214468,-0.005147,0.005998,0.249928,0,0);-ms-transform:matrix(0.214468,-0.005147,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214468,-0.005147,0.005998,0.249928,0,0);}
.m1bc2_c00001{transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);}
.m1f44_c00001{transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214480,0.000000,0.000000,0.250000,0,0);}
.m10eb_c00001{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.mcd4_c00001{transform:matrix(0.214510,-0.006221,0.007247,0.249895,0,0);-ms-transform:matrix(0.214510,-0.006221,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214510,-0.006221,0.007247,0.249895,0,0);}
.m1b94_c00001{transform:matrix(0.214515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214515,0.000000,0.000000,0.250000,0,0);}
.m19e0_c00001{transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);}
.m205d_c00001{transform:matrix(0.214522,-0.006650,0.007746,0.249880,0,0);-ms-transform:matrix(0.214522,-0.006650,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214522,-0.006650,0.007746,0.249880,0,0);}
.md7f_c00001{transform:matrix(0.214532,0.002789,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214532,0.002789,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214532,0.002789,-0.003250,0.249979,0,0);}
.m27e_c00001{transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214540,0.000000,0.000000,0.250000,0,0);}
.med3_c00001{transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214549,0.003004,-0.003500,0.249976,0,0);}
.m1b97_c00001{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m18c8_c00001{transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214570,0.000000,0.000000,0.250000,0,0);}
.m1692_c00001{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.m1f48_c00001{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m17f4_c00001{transform:matrix(0.214610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214610,0.000000,0.000000,0.250000,0,0);}
.m1928_c00001{transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214640,0.000000,0.000000,0.250000,0,0);}
.m420_c00001{transform:matrix(0.214643,-0.004507,0.005249,0.249945,0,0);-ms-transform:matrix(0.214643,-0.004507,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214643,-0.004507,0.005249,0.249945,0,0);}
.m1ead_c00001{transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);-ms-transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214652,-0.005581,0.006498,0.249916,0,0);}
.m2684_c00001{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.mf5a_c00001{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m24ca_c00001{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.m16e5_c00001{transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);-ms-transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214676,-0.007306,0.008504,0.249855,0,0);}
.m257a_c00001{transform:matrix(0.214702,-0.002791,0.003250,0.249979,0,0);-ms-transform:matrix(0.214702,-0.002791,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214702,-0.002791,0.003250,0.249979,0,0);}
.m2630_c00001{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.mce6_c00001{transform:matrix(0.214710,-0.006227,0.007247,0.249895,0,0);-ms-transform:matrix(0.214710,-0.006227,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214710,-0.006227,0.007247,0.249895,0,0);}
.mf85_c00001{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m1895_c00001{transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);}
.m1c37_c00001{transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214720,0.000000,0.000000,0.250000,0,0);}
.m1883_c00001{transform:matrix(0.214730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214730,0.000000,0.000000,0.250000,0,0);}
.m1c75_c00001{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2369_c00001{transform:matrix(0.214750,0.003866,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214750,0.003866,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214750,0.003866,-0.004499,0.249960,0,0);}
.m149e_c00001{transform:matrix(0.214758,0.007094,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214758,0.007094,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214758,0.007094,-0.008254,0.249864,0,0);}
.m2209_c00001{transform:matrix(0.214776,-0.004081,0.004749,0.249955,0,0);-ms-transform:matrix(0.214776,-0.004081,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214776,-0.004081,0.004749,0.249955,0,0);}
.m150a_c00001{transform:matrix(0.214778,0.007095,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214778,0.007095,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214778,0.007095,-0.008254,0.249864,0,0);}
.m1f10_c00001{transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);}
.m140a_c00001{transform:matrix(0.214782,-0.005584,0.006498,0.249916,0,0);-ms-transform:matrix(0.214782,-0.005584,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214782,-0.005584,0.006498,0.249916,0,0);}
.m373_c00001{transform:matrix(0.214792,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214792,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214792,-0.002792,0.003250,0.249979,0,0);}
.m2264_c00001{transform:matrix(0.214793,-0.005155,0.005998,0.249928,0,0);-ms-transform:matrix(0.214793,-0.005155,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214793,-0.005155,0.005998,0.249928,0,0);}
.mb62_c00001{transform:matrix(0.214796,-0.008385,0.009752,0.249810,0,0);-ms-transform:matrix(0.214796,-0.008385,0.009752,0.249810,0,0);-webkit-transform:matrix(0.214796,-0.008385,0.009752,0.249810,0,0);}
.m1de4_c00001{transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214810,0.000000,0.000000,0.250000,0,0);}
.m16ee_c00001{transform:matrix(0.214812,-0.005585,0.006498,0.249916,0,0);-ms-transform:matrix(0.214812,-0.005585,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214812,-0.005585,0.006498,0.249916,0,0);}
.m1396_c00001{transform:matrix(0.214827,-0.005586,0.006498,0.249916,0,0);-ms-transform:matrix(0.214827,-0.005586,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214827,-0.005586,0.006498,0.249916,0,0);}
.m9a4_c00001{transform:matrix(0.214830,-0.008172,0.009503,0.249819,0,0);-ms-transform:matrix(0.214830,-0.008172,0.009503,0.249819,0,0);-webkit-transform:matrix(0.214830,-0.008172,0.009503,0.249819,0,0);}
.m1358_c00001{transform:matrix(0.214830,0.006230,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214830,0.006230,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214830,0.006230,-0.007247,0.249895,0,0);}
.mf89_c00001{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.mf7c_c00001{transform:matrix(0.214835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214835,0.000000,0.000000,0.250000,0,0);}
.m27f7_c00001{transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214840,0.000000,0.000000,0.250000,0,0);}
.m294c_c00001{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m1593_c00001{transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214865,0.000000,0.000000,0.250000,0,0);}
.m2363_c00001{transform:matrix(0.214870,0.003868,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214870,0.003868,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214870,0.003868,-0.004499,0.249960,0,0);}
.mb6c_c00001{transform:matrix(0.214895,-0.006232,0.007247,0.249895,0,0);-ms-transform:matrix(0.214895,-0.006232,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214895,-0.006232,0.007247,0.249895,0,0);}
.me4_c00001{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m1dec_c00001{transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);}
.m1d3d_c00001{transform:matrix(0.214935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214935,0.000000,0.000000,0.250000,0,0);}
.m1304_c00001{transform:matrix(0.214967,0.005804,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214967,0.005804,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214967,0.005804,-0.006748,0.249909,0,0);}
.m2040_c00001{transform:matrix(0.214967,-0.006664,0.007746,0.249880,0,0);-ms-transform:matrix(0.214967,-0.006664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214967,-0.006664,0.007746,0.249880,0,0);}
.m2621_c00001{transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214980,0.000000,0.000000,0.250000,0,0);}
.ma6f_c00001{transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);}
.m188a_c00001{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1a67_c00001{transform:matrix(0.215005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215005,0.000000,0.000000,0.250000,0,0);}
.m10f6_c00001{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m14fc_c00001{transform:matrix(0.215023,0.007103,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215023,0.007103,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215023,0.007103,-0.008254,0.249864,0,0);}
.m1962_c00001{transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215045,0.000000,0.000000,0.250000,0,0);}
.m23f6_c00001{transform:matrix(0.215053,-0.004731,0.005499,0.249940,0,0);-ms-transform:matrix(0.215053,-0.004731,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215053,-0.004731,0.005499,0.249940,0,0);}
.m2468_c00001{transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215055,0.000000,0.000000,0.250000,0,0);}
.m2153_c00001{transform:matrix(0.215066,0.006022,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215066,0.006022,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215066,0.006022,-0.006997,0.249902,0,0);}
.m2168_c00001{transform:matrix(0.215081,0.006022,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215081,0.006022,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215081,0.006022,-0.006997,0.249902,0,0);}
.m1a1_c00001{transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215090,0.000000,0.000000,0.250000,0,0);}
.m1277_c00001{transform:matrix(0.215092,-0.005807,0.006748,0.249909,0,0);-ms-transform:matrix(0.215092,-0.005807,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215092,-0.005807,0.006748,0.249909,0,0);}
.md4b_c00001{transform:matrix(0.215100,-0.006238,0.007247,0.249895,0,0);-ms-transform:matrix(0.215100,-0.006238,0.007247,0.249895,0,0);-webkit-transform:matrix(0.215100,-0.006238,0.007247,0.249895,0,0);}
.m117f_c00001{transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);}
.m1c50_c00001{transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);}
.m284b_c00001{transform:matrix(0.215107,-0.002796,0.003250,0.249979,0,0);-ms-transform:matrix(0.215107,-0.002796,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215107,-0.002796,0.003250,0.249979,0,0);}
.m28de_c00001{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.me5_c00001{transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);}
.m869_c00001{transform:matrix(0.215116,-0.006023,0.006997,0.249902,0,0);-ms-transform:matrix(0.215116,-0.006023,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215116,-0.006023,0.006997,0.249902,0,0);}
.m456_c00001{transform:matrix(0.215118,-0.007106,0.008254,0.249864,0,0);-ms-transform:matrix(0.215118,-0.007106,0.008254,0.249864,0,0);-webkit-transform:matrix(0.215118,-0.007106,0.008254,0.249864,0,0);}
.m13bb_c00001{transform:matrix(0.215132,-0.005593,0.006498,0.249916,0,0);-ms-transform:matrix(0.215132,-0.005593,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215132,-0.005593,0.006498,0.249916,0,0);}
.m1bd2_c00001{transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215140,0.000000,0.000000,0.250000,0,0);}
.mdb4_c00001{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m30b_c00001{transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-ms-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215162,-0.002797,0.003250,0.249979,0,0);}
.m1e30_c00001{transform:matrix(0.215172,-0.005594,0.006498,0.249916,0,0);-ms-transform:matrix(0.215172,-0.005594,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215172,-0.005594,0.006498,0.249916,0,0);}
.m2891_c00001{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m1a63_c00001{transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215185,0.000000,0.000000,0.250000,0,0);}
.mfe4_c00001{transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);}
.m118_c00001{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.m9e3_c00001{transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);}
.m676_c00001{transform:matrix(0.215239,-0.008834,0.010252,0.249790,0,0);-ms-transform:matrix(0.215239,-0.008834,0.010252,0.249790,0,0);-webkit-transform:matrix(0.215239,-0.008834,0.010252,0.249790,0,0);}
.m19c5_c00001{transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215245,0.000000,0.000000,0.250000,0,0);}
.m103c_c00001{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m1576_c00001{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.m233a_c00001{transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215270,0.003875,-0.004499,0.249960,0,0);}
.m28b9_c00001{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m2877_c00001{transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215280,0.000000,0.000000,0.250000,0,0);}
.m3c6_c00001{transform:matrix(0.215298,-0.007112,0.008254,0.249864,0,0);-ms-transform:matrix(0.215298,-0.007112,0.008254,0.249864,0,0);-webkit-transform:matrix(0.215298,-0.007112,0.008254,0.249864,0,0);}
.m2ba_c00001{transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215305,0.000000,0.000000,0.250000,0,0);}
.m1bd8_c00001{transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215310,0.000000,0.000000,0.250000,0,0);}
.m229d_c00001{transform:matrix(0.215311,-0.004091,0.004749,0.249955,0,0);-ms-transform:matrix(0.215311,-0.004091,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215311,-0.004091,0.004749,0.249955,0,0);}
.m13bc_c00001{transform:matrix(0.215327,-0.005599,0.006498,0.249916,0,0);-ms-transform:matrix(0.215327,-0.005599,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215327,-0.005599,0.006498,0.249916,0,0);}
.m595_c00001{transform:matrix(0.215342,0.002369,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215342,0.002369,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215342,0.002369,-0.002750,0.249985,0,0);}
.m1877_c00001{transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);}
.mff2_c00001{transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);}
.m3e2_c00001{transform:matrix(0.215376,-0.006031,0.006997,0.249902,0,0);-ms-transform:matrix(0.215376,-0.006031,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215376,-0.006031,0.006997,0.249902,0,0);}
.m171_c00001{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m297f_c00001{transform:matrix(0.215387,-0.004308,0.004999,0.249950,0,0);-ms-transform:matrix(0.215387,-0.004308,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215387,-0.004308,0.004999,0.249950,0,0);}
.m1586_c00001{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.m1410_c00001{transform:matrix(0.215397,-0.005600,0.006498,0.249916,0,0);-ms-transform:matrix(0.215397,-0.005600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215397,-0.005600,0.006498,0.249916,0,0);}
.m244c_c00001{transform:matrix(0.215418,-0.004739,0.005499,0.249940,0,0);-ms-transform:matrix(0.215418,-0.004739,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215418,-0.004739,0.005499,0.249940,0,0);}
.m1d37_c00001{transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215430,0.000000,0.000000,0.250000,0,0);}
.m2645_c00001{transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215435,0.000000,0.000000,0.250000,0,0);}
.m24f0_c00001{transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215440,0.000000,0.000000,0.250000,0,0);}
.m1922_c00001{transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);}
.mf25_c00001{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m1e9d_c00001{transform:matrix(0.215487,-0.005603,0.006498,0.249916,0,0);-ms-transform:matrix(0.215487,-0.005603,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215487,-0.005603,0.006498,0.249916,0,0);}
.m1fd5_c00001{transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);-ms-transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);}
.m68a_c00001{transform:matrix(0.215489,-0.008844,0.010252,0.249790,0,0);-ms-transform:matrix(0.215489,-0.008844,0.010252,0.249790,0,0);-webkit-transform:matrix(0.215489,-0.008844,0.010252,0.249790,0,0);}
.m115_c00001{transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215490,0.000000,0.000000,0.250000,0,0);}
.m26ea_c00001{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2948_c00001{transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215505,0.000000,0.000000,0.250000,0,0);}
.m17c9_c00001{transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215515,0.000000,0.000000,0.250000,0,0);}
.m1a66_c00001{transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215520,0.000000,0.000000,0.250000,0,0);}
.m15ae_c00001{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m3ae_c00001{transform:matrix(0.215532,-0.002802,0.003250,0.249979,0,0);-ms-transform:matrix(0.215532,-0.002802,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215532,-0.002802,0.003250,0.249979,0,0);}
.mf1f_c00001{transform:matrix(0.215542,0.004311,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215542,0.004311,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215542,0.004311,-0.004999,0.249950,0,0);}
.m28e1_c00001{transform:matrix(0.215545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215545,0.000000,0.000000,0.250000,0,0);}
.m15eb_c00001{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m1899_c00001{transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215590,0.000000,0.000000,0.250000,0,0);}
.m123c_c00001{transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);-ms-transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215591,-0.005821,0.006748,0.249909,0,0);}
.m2834_c00001{transform:matrix(0.215597,-0.002803,0.003250,0.249979,0,0);-ms-transform:matrix(0.215597,-0.002803,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215597,-0.002803,0.003250,0.249979,0,0);}
.m219b_c00001{transform:matrix(0.215602,0.004528,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215602,0.004528,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215602,0.004528,-0.005249,0.249945,0,0);}
.mf65_c00001{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.ma87_c00001{transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215615,0.000000,0.000000,0.250000,0,0);}
.m112d_c00001{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m2dc_c00001{transform:matrix(0.215632,-0.002372,0.002750,0.249985,0,0);-ms-transform:matrix(0.215632,-0.002372,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215632,-0.002372,0.002750,0.249985,0,0);}
.m184b_c00001{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.mcd3_c00001{transform:matrix(0.215639,-0.006254,0.007247,0.249895,0,0);-ms-transform:matrix(0.215639,-0.006254,0.007247,0.249895,0,0);-webkit-transform:matrix(0.215639,-0.006254,0.007247,0.249895,0,0);}
.m2801_c00001{transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);}
.m3ac_c00001{transform:matrix(0.215662,-0.002804,0.003250,0.249979,0,0);-ms-transform:matrix(0.215662,-0.002804,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215662,-0.002804,0.003250,0.249979,0,0);}
.m193b_c00001{transform:matrix(0.215665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215665,0.000000,0.000000,0.250000,0,0);}
.m26da_c00001{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m23b7_c00001{transform:matrix(0.215688,-0.004745,0.005499,0.249940,0,0);-ms-transform:matrix(0.215688,-0.004745,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215688,-0.004745,0.005499,0.249940,0,0);}
.m1ca5_c00001{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.m410_c00001{transform:matrix(0.215717,-0.004530,0.005249,0.249945,0,0);-ms-transform:matrix(0.215717,-0.004530,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215717,-0.004530,0.005249,0.249945,0,0);}
.m1093_c00001{transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215720,0.000000,0.000000,0.250000,0,0);}
.m2941_c00001{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m27c9_c00001{transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);}
.m103d_c00001{transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);}
.m8b8_c00001{transform:matrix(0.215738,-0.005178,0.005998,0.249928,0,0);-ms-transform:matrix(0.215738,-0.005178,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215738,-0.005178,0.005998,0.249928,0,0);}
.m22e9_c00001{transform:matrix(0.215742,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215742,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215742,0.003452,-0.003999,0.249968,0,0);}
.m1fa0_c00001{transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);}
.m8c0_c00001{transform:matrix(0.215748,-0.005178,0.005998,0.249928,0,0);-ms-transform:matrix(0.215748,-0.005178,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215748,-0.005178,0.005998,0.249928,0,0);}
.m1788_c00001{transform:matrix(0.215767,-0.005610,0.006498,0.249916,0,0);-ms-transform:matrix(0.215767,-0.005610,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215767,-0.005610,0.006498,0.249916,0,0);}
.m17d5_c00001{transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215770,0.000000,0.000000,0.250000,0,0);}
.m237b_c00001{transform:matrix(0.215790,0.003884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215790,0.003884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215790,0.003884,-0.004499,0.249960,0,0);}
.m1973_c00001{transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215815,0.000000,0.000000,0.250000,0,0);}
.mf3a_c00001{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m19c9_c00001{transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215845,0.000000,0.000000,0.250000,0,0);}
.m1e7e_c00001{transform:matrix(0.215847,-0.005612,0.006498,0.249916,0,0);-ms-transform:matrix(0.215847,-0.005612,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215847,-0.005612,0.006498,0.249916,0,0);}
.m104f_c00001{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.m8ca_c00001{transform:matrix(0.215858,-0.005181,0.005998,0.249928,0,0);-ms-transform:matrix(0.215858,-0.005181,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215858,-0.005181,0.005998,0.249928,0,0);}
.m24c7_c00001{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m2917_c00001{transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);}
.m13ec_c00001{transform:matrix(0.215892,-0.005613,0.006498,0.249916,0,0);-ms-transform:matrix(0.215892,-0.005613,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215892,-0.005613,0.006498,0.249916,0,0);}
.m26e3_c00001{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m28df_c00001{transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);}
.m782_c00001{transform:matrix(0.215923,0.004966,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215923,0.004966,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215923,0.004966,-0.005748,0.249934,0,0);}
.m25c2_c00001{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.ma70_c00001{transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);}
.m857_c00001{transform:matrix(0.215965,-0.006047,0.006997,0.249902,0,0);-ms-transform:matrix(0.215965,-0.006047,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215965,-0.006047,0.006997,0.249902,0,0);}
.m2178_c00001{transform:matrix(0.215975,0.006047,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215975,0.006047,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215975,0.006047,-0.006997,0.249902,0,0);}
.m1c62_c00001{transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);}
.m23c0_c00001{transform:matrix(0.215983,-0.004752,0.005499,0.249940,0,0);-ms-transform:matrix(0.215983,-0.004752,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215983,-0.004752,0.005499,0.249940,0,0);}
.m1756_c00001{transform:matrix(0.215992,-0.005616,0.006498,0.249916,0,0);-ms-transform:matrix(0.215992,-0.005616,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215992,-0.005616,0.006498,0.249916,0,0);}
.m1767_c00001{transform:matrix(0.215997,-0.005616,0.006498,0.249916,0,0);-ms-transform:matrix(0.215997,-0.005616,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215997,-0.005616,0.006498,0.249916,0,0);}
.mabc_c00001{transform:matrix(0.216005,-0.009298,0.010751,0.249769,0,0);-ms-transform:matrix(0.216005,-0.009298,0.010751,0.249769,0,0);-webkit-transform:matrix(0.216005,-0.009298,0.010751,0.249769,0,0);}
.mf1e_c00001{transform:matrix(0.216007,0.004320,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216007,0.004320,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216007,0.004320,-0.004999,0.249950,0,0);}
.m229a_c00001{transform:matrix(0.216011,-0.004104,0.004749,0.249955,0,0);-ms-transform:matrix(0.216011,-0.004104,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216011,-0.004104,0.004749,0.249955,0,0);}
.m1e8b_c00001{transform:matrix(0.216018,-0.004752,0.005499,0.249940,0,0);-ms-transform:matrix(0.216018,-0.004752,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216018,-0.004752,0.005499,0.249940,0,0);}
.m1956_c00001{transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);}
.m20e5_c00001{transform:matrix(0.216023,0.005401,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216023,0.005401,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216023,0.005401,-0.006248,0.249922,0,0);}
.me32_c00001{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m1c30_c00001{transform:matrix(0.216030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216030,0.000000,0.000000,0.250000,0,0);}
.m281b_c00001{transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);}
.m1fe7_c00001{transform:matrix(0.216067,-0.005402,0.006248,0.249922,0,0);-ms-transform:matrix(0.216067,-0.005402,0.006248,0.249922,0,0);-webkit-transform:matrix(0.216067,-0.005402,0.006248,0.249922,0,0);}
.m28e9_c00001{transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216085,0.000000,0.000000,0.250000,0,0);}
.m14a4_c00001{transform:matrix(0.216087,0.007138,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216087,0.007138,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216087,0.007138,-0.008254,0.249864,0,0);}
.m2986_c00001{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m26e6_c00001{transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216120,0.000000,0.000000,0.250000,0,0);}
.m2516_c00001{transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216135,0.000000,0.000000,0.250000,0,0);}
.md48_c00001{transform:matrix(0.216139,-0.006268,0.007247,0.249895,0,0);-ms-transform:matrix(0.216139,-0.006268,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216139,-0.006268,0.007247,0.249895,0,0);}
.m12f_c00001{transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);}
.m1ed2_c00001{transform:matrix(0.216172,-0.005620,0.006498,0.249916,0,0);-ms-transform:matrix(0.216172,-0.005620,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216172,-0.005620,0.006498,0.249916,0,0);}
.m154b_c00001{transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216185,0.000000,0.000000,0.250000,0,0);}
.m14d5_c00001{transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);}
.m1d9d_c00001{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m2975_c00001{transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);}
.m853_c00001{transform:matrix(0.216210,-0.006054,0.006997,0.249902,0,0);-ms-transform:matrix(0.216210,-0.006054,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216210,-0.006054,0.006997,0.249902,0,0);}
.m2288_c00001{transform:matrix(0.216223,-0.004757,0.005499,0.249940,0,0);-ms-transform:matrix(0.216223,-0.004757,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216223,-0.004757,0.005499,0.249940,0,0);}
.m235b_c00001{transform:matrix(0.216230,0.003892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216230,0.003892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216230,0.003892,-0.004499,0.249960,0,0);}
.m2351_c00001{transform:matrix(0.216245,0.003892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216245,0.003892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216245,0.003892,-0.004499,0.249960,0,0);}
.m1a22_c00001{transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216245,0.000000,0.000000,0.250000,0,0);}
.m224f_c00001{transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216274,-0.003677,0.004249,0.249964,0,0);}
.m1371_c00001{transform:matrix(0.216274,0.006272,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216274,0.006272,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216274,0.006272,-0.007247,0.249895,0,0);}
.mc89_c00001{transform:matrix(0.216279,-0.006272,0.007247,0.249895,0,0);-ms-transform:matrix(0.216279,-0.006272,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216279,-0.006272,0.007247,0.249895,0,0);}
.m156a_c00001{transform:matrix(0.216280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216280,0.000000,0.000000,0.250000,0,0);}
.m154a_c00001{transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216295,0.000000,0.000000,0.250000,0,0);}
.m12e7_c00001{transform:matrix(0.216301,0.005840,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216301,0.005840,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216301,0.005840,-0.006748,0.249909,0,0);}
.m1ef9_c00001{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m7af_c00001{transform:matrix(0.216305,-0.006057,0.006997,0.249902,0,0);-ms-transform:matrix(0.216305,-0.006057,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216305,-0.006057,0.006997,0.249902,0,0);}
.m234a_c00001{transform:matrix(0.216310,0.003894,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216310,0.003894,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216310,0.003894,-0.004499,0.249960,0,0);}
.m1af7_c00001{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m1bc7_c00001{transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);}
.m7fe_c00001{transform:matrix(0.216320,-0.006057,0.006997,0.249902,0,0);-ms-transform:matrix(0.216320,-0.006057,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216320,-0.006057,0.006997,0.249902,0,0);}
.m251f_c00001{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m1855_c00001{transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216330,0.000000,0.000000,0.250000,0,0);}
.m1e9a_c00001{transform:matrix(0.216337,-0.005625,0.006498,0.249916,0,0);-ms-transform:matrix(0.216337,-0.005625,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216337,-0.005625,0.006498,0.249916,0,0);}
.m4ff_c00001{transform:matrix(0.216347,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216347,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216347,0.002380,-0.002750,0.249985,0,0);}
.m1b09_c00001{transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216360,0.000000,0.000000,0.250000,0,0);}
.m2763_c00001{transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216371,-0.003246,0.003750,0.249972,0,0);}
.m14c1_c00001{transform:matrix(0.216372,0.007147,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216372,0.007147,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216372,0.007147,-0.008254,0.249864,0,0);}
.m2479_c00001{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.mfb9_c00001{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.m1753_c00001{transform:matrix(0.216407,-0.005627,0.006498,0.249916,0,0);-ms-transform:matrix(0.216407,-0.005627,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216407,-0.005627,0.006498,0.249916,0,0);}
.mbbc_c00001{transform:matrix(0.216417,0.002381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216417,0.002381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216417,0.002381,-0.002750,0.249985,0,0);}
.m1cd_c00001{transform:matrix(0.216417,-0.003463,0.003999,0.249968,0,0);-ms-transform:matrix(0.216417,-0.003463,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216417,-0.003463,0.003999,0.249968,0,0);}
.m1af2_c00001{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m1324_c00001{transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);}
.m24a5_c00001{transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216440,0.000000,0.000000,0.250000,0,0);}
.m1e0d_c00001{transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216460,0.000000,0.000000,0.250000,0,0);}
.m1d0a_c00001{transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216465,0.000000,0.000000,0.250000,0,0);}
.m24ef_c00001{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.m62a_c00001{transform:matrix(0.216485,-0.009318,0.010751,0.249769,0,0);-ms-transform:matrix(0.216485,-0.009318,0.010751,0.249769,0,0);-webkit-transform:matrix(0.216485,-0.009318,0.010751,0.249769,0,0);}
.m1d82_c00001{transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216490,0.000000,0.000000,0.250000,0,0);}
.me70_c00001{transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);}
.m12ee_c00001{transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216521,0.005846,-0.006748,0.249909,0,0);}
.m1127_c00001{transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216530,0.000000,0.000000,0.250000,0,0);}
.m1274_c00001{transform:matrix(0.216531,-0.005846,0.006748,0.249909,0,0);-ms-transform:matrix(0.216531,-0.005846,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216531,-0.005846,0.006748,0.249909,0,0);}
.m65a_c00001{transform:matrix(0.216533,-0.008887,0.010252,0.249790,0,0);-ms-transform:matrix(0.216533,-0.008887,0.010252,0.249790,0,0);-webkit-transform:matrix(0.216533,-0.008887,0.010252,0.249790,0,0);}
.m1170_c00001{transform:matrix(0.216535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216535,0.000000,0.000000,0.250000,0,0);}
.m23de_c00001{transform:matrix(0.216543,-0.004764,0.005499,0.249940,0,0);-ms-transform:matrix(0.216543,-0.004764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216543,-0.004764,0.005499,0.249940,0,0);}
.m16e4_c00001{transform:matrix(0.216570,-0.007371,0.008504,0.249855,0,0);-ms-transform:matrix(0.216570,-0.007371,0.008504,0.249855,0,0);-webkit-transform:matrix(0.216570,-0.007371,0.008504,0.249855,0,0);}
.m1683_c00001{transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216570,0.000000,0.000000,0.250000,0,0);}
.m790_c00001{transform:matrix(0.216573,0.004981,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216573,0.004981,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216573,0.004981,-0.005748,0.249934,0,0);}
.mb55_c00001{transform:matrix(0.216580,-0.008455,0.009752,0.249810,0,0);-ms-transform:matrix(0.216580,-0.008455,0.009752,0.249810,0,0);-webkit-transform:matrix(0.216580,-0.008455,0.009752,0.249810,0,0);}
.m53a_c00001{transform:matrix(0.216597,0.002383,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216597,0.002383,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216597,0.002383,-0.002750,0.249985,0,0);}
.m158d_c00001{transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216605,0.000000,0.000000,0.250000,0,0);}
.m68b_c00001{transform:matrix(0.216608,-0.008890,0.010252,0.249790,0,0);-ms-transform:matrix(0.216608,-0.008890,0.010252,0.249790,0,0);-webkit-transform:matrix(0.216608,-0.008890,0.010252,0.249790,0,0);}
.m25ca_c00001{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.me81_c00001{transform:matrix(0.216614,0.003033,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216614,0.003033,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216614,0.003033,-0.003500,0.249976,0,0);}
.m213f_c00001{transform:matrix(0.216615,0.006065,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216615,0.006065,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216615,0.006065,-0.006997,0.249902,0,0);}
.m244e_c00001{transform:matrix(0.216618,-0.004766,0.005499,0.249940,0,0);-ms-transform:matrix(0.216618,-0.004766,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216618,-0.004766,0.005499,0.249940,0,0);}
.m1389_c00001{transform:matrix(0.216632,-0.005632,0.006498,0.249916,0,0);-ms-transform:matrix(0.216632,-0.005632,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216632,-0.005632,0.006498,0.249916,0,0);}
.m25fc_c00001{transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216635,0.000000,0.000000,0.250000,0,0);}
.m11f7_c00001{transform:matrix(0.216638,-0.004766,0.005499,0.249940,0,0);-ms-transform:matrix(0.216638,-0.004766,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216638,-0.004766,0.005499,0.249940,0,0);}
.m1341_c00001{transform:matrix(0.216639,0.006283,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216639,0.006283,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216639,0.006283,-0.007247,0.249895,0,0);}
.mc02_c00001{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.me60_c00001{transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216670,0.003900,-0.004499,0.249960,0,0);}
.m2143_c00001{transform:matrix(0.216680,0.006067,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216680,0.006067,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216680,0.006067,-0.006997,0.249902,0,0);}
.m2760_c00001{transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);-ms-transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216681,-0.003250,0.003750,0.249972,0,0);}
.m945_c00001{transform:matrix(0.216693,-0.008243,0.009503,0.249819,0,0);-ms-transform:matrix(0.216693,-0.008243,0.009503,0.249819,0,0);-webkit-transform:matrix(0.216693,-0.008243,0.009503,0.249819,0,0);}
.m825_c00001{transform:matrix(0.216695,-0.006067,0.006997,0.249902,0,0);-ms-transform:matrix(0.216695,-0.006067,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216695,-0.006067,0.006997,0.249902,0,0);}
.m19bb_c00001{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m18a4_c00001{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m8fd_c00001{transform:matrix(0.216713,-0.008243,0.009503,0.249819,0,0);-ms-transform:matrix(0.216713,-0.008243,0.009503,0.249819,0,0);-webkit-transform:matrix(0.216713,-0.008243,0.009503,0.249819,0,0);}
.maea_c00001{transform:matrix(0.216745,-0.008462,0.009752,0.249810,0,0);-ms-transform:matrix(0.216745,-0.008462,0.009752,0.249810,0,0);-webkit-transform:matrix(0.216745,-0.008462,0.009752,0.249810,0,0);}
.m1b62_c00001{transform:matrix(0.216751,-0.004118,0.004749,0.249955,0,0);-ms-transform:matrix(0.216751,-0.004118,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216751,-0.004118,0.004749,0.249955,0,0);}
.mc3c_c00001{transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);}
.m1466_c00001{transform:matrix(0.216758,0.008245,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216758,0.008245,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216758,0.008245,-0.009503,0.249819,0,0);}
.m1458_c00001{transform:matrix(0.216766,-0.005853,0.006748,0.249909,0,0);-ms-transform:matrix(0.216766,-0.005853,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216766,-0.005853,0.006748,0.249909,0,0);}
.m1a82_c00001{transform:matrix(0.216770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216770,0.000000,0.000000,0.250000,0,0);}
.m13d5_c00001{transform:matrix(0.216777,-0.005636,0.006498,0.249916,0,0);-ms-transform:matrix(0.216777,-0.005636,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216777,-0.005636,0.006498,0.249916,0,0);}
.m1824_c00001{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m2722_c00001{transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216810,0.000000,0.000000,0.250000,0,0);}
.m7b1_c00001{transform:matrix(0.216815,-0.006071,0.006997,0.249902,0,0);-ms-transform:matrix(0.216815,-0.006071,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216815,-0.006071,0.006997,0.249902,0,0);}
.m1e94_c00001{transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);-ms-transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216822,-0.004336,0.004999,0.249950,0,0);}
.m1c0f_c00001{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.mede_c00001{transform:matrix(0.216837,0.002819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216837,0.002819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216837,0.002819,-0.003250,0.249979,0,0);}
.m116_c00001{transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);}
.m1e5f_c00001{transform:matrix(0.216847,-0.005638,0.006498,0.249916,0,0);-ms-transform:matrix(0.216847,-0.005638,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216847,-0.005638,0.006498,0.249916,0,0);}
.m8f1_c00001{transform:matrix(0.216848,-0.008248,0.009503,0.249819,0,0);-ms-transform:matrix(0.216848,-0.008248,0.009503,0.249819,0,0);-webkit-transform:matrix(0.216848,-0.008248,0.009503,0.249819,0,0);}
.m1884_c00001{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m1dc4_c00001{transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216895,0.000000,0.000000,0.250000,0,0);}
.mc98_c00001{transform:matrix(0.216914,-0.006291,0.007247,0.249895,0,0);-ms-transform:matrix(0.216914,-0.006291,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216914,-0.006291,0.007247,0.249895,0,0);}
.m2497_c00001{transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216915,0.000000,0.000000,0.250000,0,0);}
.m1d1d_c00001{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m13f2_c00001{transform:matrix(0.216927,-0.005640,0.006498,0.249916,0,0);-ms-transform:matrix(0.216927,-0.005640,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216927,-0.005640,0.006498,0.249916,0,0);}
.m2601_c00001{transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216930,0.000000,0.000000,0.250000,0,0);}
.mf96_c00001{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.m261c_c00001{transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216960,0.000000,0.000000,0.250000,0,0);}
.m18d4_c00001{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m2ca_c00001{transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216985,0.000000,0.000000,0.250000,0,0);}
.me7d_c00001{transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);}
.m130_c00001{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1b8f_c00001{transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217010,0.000000,0.000000,0.250000,0,0);}
.m14ee_c00001{transform:matrix(0.217017,0.007169,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217017,0.007169,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217017,0.007169,-0.008254,0.249864,0,0);}
.m66b_c00001{transform:matrix(0.217022,-0.008907,0.010252,0.249790,0,0);-ms-transform:matrix(0.217022,-0.008907,0.010252,0.249790,0,0);-webkit-transform:matrix(0.217022,-0.008907,0.010252,0.249790,0,0);}
.mb65_c00001{transform:matrix(0.217044,-0.007821,0.009003,0.249838,0,0);-ms-transform:matrix(0.217044,-0.007821,0.009003,0.249838,0,0);-webkit-transform:matrix(0.217044,-0.007821,0.009003,0.249838,0,0);}
.m28c3_c00001{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m2643_c00001{transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217060,0.000000,0.000000,0.250000,0,0);}
.m12cf_c00001{transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217061,0.005861,-0.006748,0.249909,0,0);}
.m2592_c00001{transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);}
.m1047_c00001{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m9b9_c00001{transform:matrix(0.217088,-0.008258,0.009503,0.249819,0,0);-ms-transform:matrix(0.217088,-0.008258,0.009503,0.249819,0,0);-webkit-transform:matrix(0.217088,-0.008258,0.009503,0.249819,0,0);}
.m18df_c00001{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m1cc8_c00001{transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217110,0.000000,0.000000,0.250000,0,0);}
.m2060_c00001{transform:matrix(0.217111,-0.006730,0.007746,0.249880,0,0);-ms-transform:matrix(0.217111,-0.006730,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217111,-0.006730,0.007746,0.249880,0,0);}
.m277e_c00001{transform:matrix(0.217131,-0.003257,0.003750,0.249972,0,0);-ms-transform:matrix(0.217131,-0.003257,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217131,-0.003257,0.003750,0.249972,0,0);}
.m170_c00001{transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217140,0.000000,0.000000,0.250000,0,0);}
.m27b3_c00001{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m1a86_c00001{transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217155,0.000000,0.000000,0.250000,0,0);}
.m149c_c00001{transform:matrix(0.217172,0.007174,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217172,0.007174,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217172,0.007174,-0.008254,0.249864,0,0);}
.m1728_c00001{transform:matrix(0.217197,-0.005647,0.006498,0.249916,0,0);-ms-transform:matrix(0.217197,-0.005647,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217197,-0.005647,0.006498,0.249916,0,0);}
.m2602_c00001{transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217220,0.000000,0.000000,0.250000,0,0);}
.m347_c00001{transform:matrix(0.217227,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217227,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217227,-0.002824,0.003250,0.249979,0,0);}
.m15f4_c00001{transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217245,0.000000,0.000000,0.250000,0,0);}
.m2224_c00001{transform:matrix(0.217253,-0.004997,0.005748,0.249934,0,0);-ms-transform:matrix(0.217253,-0.004997,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217253,-0.004997,0.005748,0.249934,0,0);}
.mcc8_c00001{transform:matrix(0.217259,-0.006301,0.007247,0.249895,0,0);-ms-transform:matrix(0.217259,-0.006301,0.007247,0.249895,0,0);-webkit-transform:matrix(0.217259,-0.006301,0.007247,0.249895,0,0);}
.m1ac4_c00001{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.m204e_c00001{transform:matrix(0.217266,-0.006735,0.007746,0.249880,0,0);-ms-transform:matrix(0.217266,-0.006735,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217266,-0.006735,0.007746,0.249880,0,0);}
.me58_c00001{transform:matrix(0.217270,0.003911,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217270,0.003911,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217270,0.003911,-0.004499,0.249960,0,0);}
.m213c_c00001{transform:matrix(0.217270,0.006084,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217270,0.006084,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217270,0.006084,-0.006997,0.249902,0,0);}
.m774_c00001{transform:matrix(0.217273,0.004997,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217273,0.004997,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217273,0.004997,-0.005748,0.249934,0,0);}
.m600_c00001{transform:matrix(0.217278,-0.009135,0.010501,0.249779,0,0);-ms-transform:matrix(0.217278,-0.009135,0.010501,0.249779,0,0);-webkit-transform:matrix(0.217278,-0.009135,0.010501,0.249779,0,0);}
.mfc7_c00001{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.mfea_c00001{transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);}
.m12e2_c00001{transform:matrix(0.217296,0.005867,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217296,0.005867,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217296,0.005867,-0.006748,0.249909,0,0);}
.m1eaf_c00001{transform:matrix(0.217312,-0.005650,0.006498,0.249916,0,0);-ms-transform:matrix(0.217312,-0.005650,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217312,-0.005650,0.006498,0.249916,0,0);}
.m1ab1_c00001{transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217320,0.000000,0.000000,0.250000,0,0);}
.m1ae7_c00001{transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217330,0.000000,0.000000,0.250000,0,0);}
.m1278_c00001{transform:matrix(0.217331,-0.005868,0.006748,0.249909,0,0);-ms-transform:matrix(0.217331,-0.005868,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217331,-0.005868,0.006748,0.249909,0,0);}
.m1d71_c00001{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m735_c00001{transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);}
.m22ce_c00001{transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);}
.mfec_c00001{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m27c7_c00001{transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);}
.mc3e_c00001{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m1ba4_c00001{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.mb81_c00001{transform:matrix(0.217466,-0.007184,0.008254,0.249864,0,0);-ms-transform:matrix(0.217466,-0.007184,0.008254,0.249864,0,0);-webkit-transform:matrix(0.217466,-0.007184,0.008254,0.249864,0,0);}
.m205e_c00001{transform:matrix(0.217481,-0.006742,0.007746,0.249880,0,0);-ms-transform:matrix(0.217481,-0.006742,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217481,-0.006742,0.007746,0.249880,0,0);}
.m1391_c00001{transform:matrix(0.217482,-0.005655,0.006498,0.249916,0,0);-ms-transform:matrix(0.217482,-0.005655,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217482,-0.005655,0.006498,0.249916,0,0);}
.m1f1b_c00001{transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217490,0.000000,0.000000,0.250000,0,0);}
.m86e_c00001{transform:matrix(0.217500,-0.006090,0.006997,0.249902,0,0);-ms-transform:matrix(0.217500,-0.006090,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217500,-0.006090,0.006997,0.249902,0,0);}
.m964_c00001{transform:matrix(0.217508,-0.008274,0.009503,0.249819,0,0);-ms-transform:matrix(0.217508,-0.008274,0.009503,0.249819,0,0);-webkit-transform:matrix(0.217508,-0.008274,0.009503,0.249819,0,0);}
.m260c_c00001{transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);}
.m178_c00001{transform:matrix(0.217520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217520,0.000000,0.000000,0.250000,0,0);}
.m1baa_c00001{transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);}
.me89_c00001{transform:matrix(0.217564,0.003046,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217564,0.003046,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217564,0.003046,-0.003500,0.249976,0,0);}
.m1f61_c00001{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m468_c00001{transform:matrix(0.217589,-0.007405,0.008504,0.249855,0,0);-ms-transform:matrix(0.217589,-0.007405,0.008504,0.249855,0,0);-webkit-transform:matrix(0.217589,-0.007405,0.008504,0.249855,0,0);}
.m1fa5_c00001{transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217595,0.000000,0.000000,0.250000,0,0);}
.m191a_c00001{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m20e_c00001{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m24ce_c00001{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m19c0_c00001{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m22ac_c00001{transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217622,0.003482,-0.003999,0.249968,0,0);}
.m1c68_c00001{transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217640,0.000000,0.000000,0.250000,0,0);}
.m16a2_c00001{transform:matrix(0.217645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217645,0.000000,0.000000,0.250000,0,0);}
.m4cd_c00001{transform:matrix(0.217647,0.002394,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217647,0.002394,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217647,0.002394,-0.002750,0.249985,0,0);}
.m6d3_c00001{transform:matrix(0.217667,0.005442,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217667,0.005442,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217667,0.005442,-0.006248,0.249922,0,0);}
.m23eb_c00001{transform:matrix(0.217672,-0.004789,0.005499,0.249940,0,0);-ms-transform:matrix(0.217672,-0.004789,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217672,-0.004789,0.005499,0.249940,0,0);}
.m1b6b_c00001{transform:matrix(0.217676,-0.004136,0.004749,0.249955,0,0);-ms-transform:matrix(0.217676,-0.004136,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217676,-0.004136,0.004749,0.249955,0,0);}
.m1ec9_c00001{transform:matrix(0.217691,-0.005660,0.006498,0.249916,0,0);-ms-transform:matrix(0.217691,-0.005660,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217691,-0.005660,0.006498,0.249916,0,0);}
.m22d7_c00001{transform:matrix(0.217692,0.003483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217692,0.003483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217692,0.003483,-0.003999,0.249968,0,0);}
.m2437_c00001{transform:matrix(0.217692,-0.004789,0.005499,0.249940,0,0);-ms-transform:matrix(0.217692,-0.004789,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217692,-0.004789,0.005499,0.249940,0,0);}
.m2400_c00001{transform:matrix(0.217702,-0.004789,0.005499,0.249940,0,0);-ms-transform:matrix(0.217702,-0.004789,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217702,-0.004789,0.005499,0.249940,0,0);}
.m5fe_c00001{transform:matrix(0.217733,-0.009154,0.010501,0.249779,0,0);-ms-transform:matrix(0.217733,-0.009154,0.010501,0.249779,0,0);-webkit-transform:matrix(0.217733,-0.009154,0.010501,0.249779,0,0);}
.m32a_c00001{transform:matrix(0.217737,-0.002831,0.003250,0.249979,0,0);-ms-transform:matrix(0.217737,-0.002831,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217737,-0.002831,0.003250,0.249979,0,0);}
.m12c8_c00001{transform:matrix(0.217742,0.005444,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217742,0.005444,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217742,0.005444,-0.006248,0.249922,0,0);}
.m1a47_c00001{transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217755,0.000000,0.000000,0.250000,0,0);}
.m1761_c00001{transform:matrix(0.217756,-0.005662,0.006498,0.249916,0,0);-ms-transform:matrix(0.217756,-0.005662,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217756,-0.005662,0.006498,0.249916,0,0);}
.m80e_c00001{transform:matrix(0.217770,-0.006098,0.006997,0.249902,0,0);-ms-transform:matrix(0.217770,-0.006098,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217770,-0.006098,0.006997,0.249902,0,0);}
.m71d_c00001{transform:matrix(0.217772,0.005444,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217772,0.005444,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217772,0.005444,-0.006248,0.249922,0,0);}
.m11c0_c00001{transform:matrix(0.217772,-0.004791,0.005499,0.249940,0,0);-ms-transform:matrix(0.217772,-0.004791,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217772,-0.004791,0.005499,0.249940,0,0);}
.m214e_c00001{transform:matrix(0.217780,0.006098,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217780,0.006098,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217780,0.006098,-0.006997,0.249902,0,0);}
.me75_c00001{transform:matrix(0.217789,0.003049,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217789,0.003049,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217789,0.003049,-0.003500,0.249976,0,0);}
.m2005_c00001{transform:matrix(0.217797,-0.005445,0.006248,0.249922,0,0);-ms-transform:matrix(0.217797,-0.005445,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217797,-0.005445,0.006248,0.249922,0,0);}
.m270f_c00001{transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217810,0.000000,0.000000,0.250000,0,0);}
.m243a_c00001{transform:matrix(0.217812,-0.004792,0.005499,0.249940,0,0);-ms-transform:matrix(0.217812,-0.004792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217812,-0.004792,0.005499,0.249940,0,0);}
.m1ef3_c00001{transform:matrix(0.217816,-0.005663,0.006498,0.249916,0,0);-ms-transform:matrix(0.217816,-0.005663,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217816,-0.005663,0.006498,0.249916,0,0);}
.m1af5_c00001{transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);}
.m348_c00001{transform:matrix(0.217842,-0.002832,0.003250,0.249979,0,0);-ms-transform:matrix(0.217842,-0.002832,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217842,-0.002832,0.003250,0.249979,0,0);}
.m2135_c00001{transform:matrix(0.217845,0.006100,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217845,0.006100,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217845,0.006100,-0.006997,0.249902,0,0);}
.m1c42_c00001{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.mf42_c00001{transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217870,0.000000,0.000000,0.250000,0,0);}
.mb72_c00001{transform:matrix(0.217893,-0.006319,0.007247,0.249895,0,0);-ms-transform:matrix(0.217893,-0.006319,0.007247,0.249895,0,0);-webkit-transform:matrix(0.217893,-0.006319,0.007247,0.249895,0,0);}
.m1893_c00001{transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);}
.m2754_c00001{transform:matrix(0.217915,-0.003269,0.003750,0.249972,0,0);-ms-transform:matrix(0.217915,-0.003269,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217915,-0.003269,0.003750,0.249972,0,0);}
.m1778_c00001{transform:matrix(0.217926,-0.005666,0.006498,0.249916,0,0);-ms-transform:matrix(0.217926,-0.005666,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217926,-0.005666,0.006498,0.249916,0,0);}
.m172a_c00001{transform:matrix(0.217931,-0.005666,0.006498,0.249916,0,0);-ms-transform:matrix(0.217931,-0.005666,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217931,-0.005666,0.006498,0.249916,0,0);}
.mf14_c00001{transform:matrix(0.217931,0.004359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217931,0.004359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217931,0.004359,-0.004999,0.249950,0,0);}
.m1007_c00001{transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217955,0.000000,0.000000,0.250000,0,0);}
.meea_c00001{transform:matrix(0.217967,0.002834,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217967,0.002834,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217967,0.002834,-0.003250,0.249979,0,0);}
.m861_c00001{transform:matrix(0.217970,-0.006103,0.006997,0.249902,0,0);-ms-transform:matrix(0.217970,-0.006103,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217970,-0.006103,0.006997,0.249902,0,0);}
.m27e5_c00001{transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);}
.m1b70_c00001{transform:matrix(0.217986,-0.004142,0.004749,0.249955,0,0);-ms-transform:matrix(0.217986,-0.004142,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217986,-0.004142,0.004749,0.249955,0,0);}
.mcb6_c00001{transform:matrix(0.217993,-0.006322,0.007247,0.249895,0,0);-ms-transform:matrix(0.217993,-0.006322,0.007247,0.249895,0,0);-webkit-transform:matrix(0.217993,-0.006322,0.007247,0.249895,0,0);}
.m1cc0_c00001{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.m61f_c00001{transform:matrix(0.218003,-0.009384,0.010751,0.249769,0,0);-ms-transform:matrix(0.218003,-0.009384,0.010751,0.249769,0,0);-webkit-transform:matrix(0.218003,-0.009384,0.010751,0.249769,0,0);}
.m154_c00001{transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218005,0.000000,0.000000,0.250000,0,0);}
.m278d_c00001{transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218020,0.000000,0.000000,0.250000,0,0);}
.m1b1a_c00001{transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);}
.m22b5_c00001{transform:matrix(0.218077,0.003489,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218077,0.003489,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218077,0.003489,-0.003999,0.249968,0,0);}
.m1618_c00001{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.mea5_c00001{transform:matrix(0.218094,0.003053,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218094,0.003053,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218094,0.003053,-0.003500,0.249976,0,0);}
.mdfd_c00001{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00001{transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);}
.m1ed0_c00001{transform:matrix(0.218101,-0.005671,0.006498,0.249916,0,0);-ms-transform:matrix(0.218101,-0.005671,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218101,-0.005671,0.006498,0.249916,0,0);}
.m7ab_c00001{transform:matrix(0.218105,-0.006107,0.006997,0.249902,0,0);-ms-transform:matrix(0.218105,-0.006107,0.006997,0.249902,0,0);-webkit-transform:matrix(0.218105,-0.006107,0.006997,0.249902,0,0);}
.m1c80_c00001{transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);}
.m246d_c00001{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.m20c5_c00001{transform:matrix(0.218147,0.005454,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218147,0.005454,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218147,0.005454,-0.006248,0.249922,0,0);}
.m1bf_c00001{transform:matrix(0.218177,-0.003491,0.003999,0.249968,0,0);-ms-transform:matrix(0.218177,-0.003491,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218177,-0.003491,0.003999,0.249968,0,0);}
.m1369_c00001{transform:matrix(0.218208,0.006328,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218208,0.006328,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218208,0.006328,-0.007247,0.249895,0,0);}
.m79_c00001{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.m1250_c00001{transform:matrix(0.218215,-0.005892,0.006748,0.249909,0,0);-ms-transform:matrix(0.218215,-0.005892,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218215,-0.005892,0.006748,0.249909,0,0);}
.m1843_c00001{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m87f_c00001{transform:matrix(0.218227,-0.008301,0.009503,0.249819,0,0);-ms-transform:matrix(0.218227,-0.008301,0.009503,0.249819,0,0);-webkit-transform:matrix(0.218227,-0.008301,0.009503,0.249819,0,0);}
.m1295_c00001{transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);}
.m24ae_c00001{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1a23_c00001{transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218260,0.000000,0.000000,0.250000,0,0);}
.m16eb_c00001{transform:matrix(0.218261,-0.005675,0.006498,0.249916,0,0);-ms-transform:matrix(0.218261,-0.005675,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218261,-0.005675,0.006498,0.249916,0,0);}
.m1868_c00001{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.m2994_c00001{transform:matrix(0.218282,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218282,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218282,-0.003493,0.003999,0.249968,0,0);}
.m1c0e_c00001{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.mc55_c00001{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m1519_c00001{transform:matrix(0.218301,0.007211,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218301,0.007211,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218301,0.007211,-0.008254,0.249864,0,0);}
.mf84_c00001{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m26f9_c00001{transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218320,0.000000,0.000000,0.250000,0,0);}
.m1147_c00001{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m146_c00001{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.m14fb_c00001{transform:matrix(0.218351,0.007213,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218351,0.007213,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218351,0.007213,-0.008254,0.249864,0,0);}
.m1af9_c00001{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m1f86_c00001{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.m244a_c00001{transform:matrix(0.218387,-0.004805,0.005499,0.249940,0,0);-ms-transform:matrix(0.218387,-0.004805,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218387,-0.004805,0.005499,0.249940,0,0);}
.m1ce2_c00001{transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218415,0.000000,0.000000,0.250000,0,0);}
.mb0d_c00001{transform:matrix(0.218424,-0.008527,0.009752,0.249810,0,0);-ms-transform:matrix(0.218424,-0.008527,0.009752,0.249810,0,0);-webkit-transform:matrix(0.218424,-0.008527,0.009752,0.249810,0,0);}
.m2635_c00001{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.m39c_c00001{transform:matrix(0.218437,-0.002840,0.003250,0.249979,0,0);-ms-transform:matrix(0.218437,-0.002840,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218437,-0.002840,0.003250,0.249979,0,0);}
.m138e_c00001{transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);-ms-transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218451,-0.005680,0.006498,0.249916,0,0);}
.me20_c00001{transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);}
.m1dc6_c00001{transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218470,0.000000,0.000000,0.250000,0,0);}
.m13d9_c00001{transform:matrix(0.218491,-0.005681,0.006498,0.249916,0,0);-ms-transform:matrix(0.218491,-0.005681,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218491,-0.005681,0.006498,0.249916,0,0);}
.m210a_c00001{transform:matrix(0.218499,0.006118,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218499,0.006118,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218499,0.006118,-0.006997,0.249902,0,0);}
.m9d_c00001{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1f0c_c00001{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m1a1d_c00001{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m1a95_c00001{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m180f_c00001{transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218535,0.000000,0.000000,0.250000,0,0);}
.m1286_c00001{transform:matrix(0.218535,-0.005900,0.006748,0.249909,0,0);-ms-transform:matrix(0.218535,-0.005900,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218535,-0.005900,0.006748,0.249909,0,0);}
.m27d7_c00001{transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218555,0.000000,0.000000,0.250000,0,0);}
.m137c_c00001{transform:matrix(0.218556,-0.005682,0.006498,0.249916,0,0);-ms-transform:matrix(0.218556,-0.005682,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218556,-0.005682,0.006498,0.249916,0,0);}
.m277d_c00001{transform:matrix(0.218560,-0.003278,0.003750,0.249972,0,0);-ms-transform:matrix(0.218560,-0.003278,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218560,-0.003278,0.003750,0.249972,0,0);}
.m26f0_c00001{transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);}
.m1ee5_c00001{transform:matrix(0.218576,-0.005683,0.006498,0.249916,0,0);-ms-transform:matrix(0.218576,-0.005683,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218576,-0.005683,0.006498,0.249916,0,0);}
.m97e_c00001{transform:matrix(0.218577,-0.008314,0.009503,0.249819,0,0);-ms-transform:matrix(0.218577,-0.008314,0.009503,0.249819,0,0);-webkit-transform:matrix(0.218577,-0.008314,0.009503,0.249819,0,0);}
.m1ea3_c00001{transform:matrix(0.218596,-0.005683,0.006498,0.249916,0,0);-ms-transform:matrix(0.218596,-0.005683,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218596,-0.005683,0.006498,0.249916,0,0);}
.m2364_c00001{transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218620,0.003935,-0.004499,0.249960,0,0);}
.mf57_c00001{transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);}
.m257b_c00001{transform:matrix(0.218647,-0.002842,0.003250,0.249979,0,0);-ms-transform:matrix(0.218647,-0.002842,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218647,-0.002842,0.003250,0.249979,0,0);}
.m10c8_c00001{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.m236e_c00001{transform:matrix(0.218695,0.003937,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218695,0.003937,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218695,0.003937,-0.004499,0.249960,0,0);}
.m54f_c00001{transform:matrix(0.218702,0.002406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218702,0.002406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218702,0.002406,-0.002750,0.249985,0,0);}
.m6d0_c00001{transform:matrix(0.218707,0.005468,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218707,0.005468,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218707,0.005468,-0.006248,0.249922,0,0);}
.m22ca_c00001{transform:matrix(0.218712,0.003499,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218712,0.003499,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218712,0.003499,-0.003999,0.249968,0,0);}
.m2435_c00001{transform:matrix(0.218712,-0.004812,0.005499,0.249940,0,0);-ms-transform:matrix(0.218712,-0.004812,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218712,-0.004812,0.005499,0.249940,0,0);}
.mea1_c00001{transform:matrix(0.218714,0.003062,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218714,0.003062,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218714,0.003062,-0.003500,0.249976,0,0);}
.m24f2_c00001{transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218715,0.000000,0.000000,0.250000,0,0);}
.m27b1_c00001{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m18a7_c00001{transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218760,0.000000,0.000000,0.250000,0,0);}
.m19b5_c00001{transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218770,0.000000,0.000000,0.250000,0,0);}
.m1da_c00001{transform:matrix(0.218771,-0.004375,0.004999,0.249950,0,0);-ms-transform:matrix(0.218771,-0.004375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218771,-0.004375,0.004999,0.249950,0,0);}
.m2275_c00001{transform:matrix(0.218782,-0.005032,0.005748,0.249934,0,0);-ms-transform:matrix(0.218782,-0.005032,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218782,-0.005032,0.005748,0.249934,0,0);}
.mabd_c00001{transform:matrix(0.218782,-0.009417,0.010751,0.249769,0,0);-ms-transform:matrix(0.218782,-0.009417,0.010751,0.249769,0,0);-webkit-transform:matrix(0.218782,-0.009417,0.010751,0.249769,0,0);}
.m24e6_c00001{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m1826_c00001{transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);}
.m16b6_c00001{transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218815,0.000000,0.000000,0.250000,0,0);}
.m1833_c00001{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m316_c00001{transform:matrix(0.218842,-0.002845,0.003250,0.249979,0,0);-ms-transform:matrix(0.218842,-0.002845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218842,-0.002845,0.003250,0.249979,0,0);}
.m1e48_c00001{transform:matrix(0.218846,-0.005690,0.006498,0.249916,0,0);-ms-transform:matrix(0.218846,-0.005690,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218846,-0.005690,0.006498,0.249916,0,0);}
.m41a_c00001{transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);-ms-transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);}
.m25aa_c00001{transform:matrix(0.218877,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218877,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218877,-0.002408,0.002750,0.249985,0,0);}
.m2322_c00001{transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);}
.m2075_c00001{transform:matrix(0.218900,-0.006786,0.007746,0.249880,0,0);-ms-transform:matrix(0.218900,-0.006786,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218900,-0.006786,0.007746,0.249880,0,0);}
.m15cb_c00001{transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218910,0.000000,0.000000,0.250000,0,0);}
.m1e47_c00001{transform:matrix(0.218911,-0.005692,0.006498,0.249916,0,0);-ms-transform:matrix(0.218911,-0.005692,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218911,-0.005692,0.006498,0.249916,0,0);}
.m2711_c00001{transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218930,0.000000,0.000000,0.250000,0,0);}
.m1ed1_c00001{transform:matrix(0.218941,-0.005692,0.006498,0.249916,0,0);-ms-transform:matrix(0.218941,-0.005692,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218941,-0.005692,0.006498,0.249916,0,0);}
.m1307_c00001{transform:matrix(0.218965,0.005912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218965,0.005912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218965,0.005912,-0.006748,0.249909,0,0);}
.mea9_c00001{transform:matrix(0.218974,0.003066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218974,0.003066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218974,0.003066,-0.003500,0.249976,0,0);}
.m176f_c00001{transform:matrix(0.218981,-0.005694,0.006498,0.249916,0,0);-ms-transform:matrix(0.218981,-0.005694,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218981,-0.005694,0.006498,0.249916,0,0);}
.m1c71_c00001{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m16cd_c00001{transform:matrix(0.218998,-0.007453,0.008504,0.249855,0,0);-ms-transform:matrix(0.218998,-0.007453,0.008504,0.249855,0,0);-webkit-transform:matrix(0.218998,-0.007453,0.008504,0.249855,0,0);}
.m156b_c00001{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m12d2_c00001{transform:matrix(0.219000,0.005913,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219000,0.005913,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219000,0.005913,-0.006748,0.249909,0,0);}
.m14dd_c00001{transform:matrix(0.219001,0.007234,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219001,0.007234,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219001,0.007234,-0.008254,0.249864,0,0);}
.m1074_c00001{transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219005,0.000000,0.000000,0.250000,0,0);}
.m117e_c00001{transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);}
.m1792_c00001{transform:matrix(0.219021,-0.005695,0.006498,0.249916,0,0);-ms-transform:matrix(0.219021,-0.005695,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219021,-0.005695,0.006498,0.249916,0,0);}
.m248e_c00001{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m218d_c00001{transform:matrix(0.219034,0.006133,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219034,0.006133,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219034,0.006133,-0.006997,0.249902,0,0);}
.m1b2a_c00001{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.mf04_c00001{transform:matrix(0.219056,0.002848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219056,0.002848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219056,0.002848,-0.003250,0.249979,0,0);}
.mf90_c00001{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m2765_c00001{transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);-ms-transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219070,-0.003286,0.003750,0.249972,0,0);}
.m276a_c00001{transform:matrix(0.219095,-0.003286,0.003750,0.249972,0,0);-ms-transform:matrix(0.219095,-0.003286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219095,-0.003286,0.003750,0.249972,0,0);}
.m23b9_c00001{transform:matrix(0.219107,-0.004820,0.005499,0.249940,0,0);-ms-transform:matrix(0.219107,-0.004820,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219107,-0.004820,0.005499,0.249940,0,0);}
.m159e_c00001{transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219135,0.000000,0.000000,0.250000,0,0);}
.m1e8e_c00001{transform:matrix(0.219136,-0.004383,0.004999,0.249950,0,0);-ms-transform:matrix(0.219136,-0.004383,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219136,-0.004383,0.004999,0.249950,0,0);}
.m1743_c00001{transform:matrix(0.219141,-0.005698,0.006498,0.249916,0,0);-ms-transform:matrix(0.219141,-0.005698,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219141,-0.005698,0.006498,0.249916,0,0);}
.m2175_c00001{transform:matrix(0.219149,0.006136,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219149,0.006136,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219149,0.006136,-0.006997,0.249902,0,0);}
.m264f_c00001{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m30d_c00001{transform:matrix(0.219151,-0.002849,0.003250,0.249979,0,0);-ms-transform:matrix(0.219151,-0.002849,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219151,-0.002849,0.003250,0.249979,0,0);}
.m787_c00001{transform:matrix(0.219157,0.005041,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219157,0.005041,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219157,0.005041,-0.005748,0.249934,0,0);}
.ma67_c00001{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m88f_c00001{transform:matrix(0.219162,-0.008336,0.009503,0.249819,0,0);-ms-transform:matrix(0.219162,-0.008336,0.009503,0.249819,0,0);-webkit-transform:matrix(0.219162,-0.008336,0.009503,0.249819,0,0);}
.m1eb_c00001{transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);}
.m1b92_c00001{transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219185,0.000000,0.000000,0.250000,0,0);}
.m2644_c00001{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m25ad_c00001{transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);}
.m2061_c00001{transform:matrix(0.219220,-0.006796,0.007746,0.249880,0,0);-ms-transform:matrix(0.219220,-0.006796,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219220,-0.006796,0.007746,0.249880,0,0);}
.m278b_c00001{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m21aa_c00001{transform:matrix(0.219227,-0.005042,0.005748,0.249934,0,0);-ms-transform:matrix(0.219227,-0.005042,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219227,-0.005042,0.005748,0.249934,0,0);}
.mb6d_c00001{transform:matrix(0.219228,-0.006358,0.007247,0.249895,0,0);-ms-transform:matrix(0.219228,-0.006358,0.007247,0.249895,0,0);-webkit-transform:matrix(0.219228,-0.006358,0.007247,0.249895,0,0);}
.m16c_c00001{transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);}
.mb28_c00001{transform:matrix(0.219233,-0.008559,0.009752,0.249810,0,0);-ms-transform:matrix(0.219233,-0.008559,0.009752,0.249810,0,0);-webkit-transform:matrix(0.219233,-0.008559,0.009752,0.249810,0,0);}
.m245_c00001{transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219235,0.000000,0.000000,0.250000,0,0);}
.m158f_c00001{transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);}
.m2011_c00001{transform:matrix(0.219270,-0.006797,0.007746,0.249880,0,0);-ms-transform:matrix(0.219270,-0.006797,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219270,-0.006797,0.007746,0.249880,0,0);}
.me3c_c00001{transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219285,0.000000,0.000000,0.250000,0,0);}
.m1954_c00001{transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);}
.m5ba_c00001{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m3f9_c00001{transform:matrix(0.219317,-0.004606,0.005249,0.249945,0,0);-ms-transform:matrix(0.219317,-0.004606,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219317,-0.004606,0.005249,0.249945,0,0);}
.m10e9_c00001{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.m27d3_c00001{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.m25c4_c00001{transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219355,0.000000,0.000000,0.250000,0,0);}
.m1246_c00001{transform:matrix(0.219410,-0.005924,0.006748,0.249909,0,0);-ms-transform:matrix(0.219410,-0.005924,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219410,-0.005924,0.006748,0.249909,0,0);}
.m271e_c00001{transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);}
.m2448_c00001{transform:matrix(0.219442,-0.004828,0.005499,0.249940,0,0);-ms-transform:matrix(0.219442,-0.004828,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219442,-0.004828,0.005499,0.249940,0,0);}
.m1cbc_c00001{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m22e2_c00001{transform:matrix(0.219457,0.003511,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219457,0.003511,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219457,0.003511,-0.003999,0.249968,0,0);}
.m2692_c00001{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m84a_c00001{transform:matrix(0.219484,-0.006146,0.006997,0.249902,0,0);-ms-transform:matrix(0.219484,-0.006146,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219484,-0.006146,0.006997,0.249902,0,0);}
.m2405_c00001{transform:matrix(0.219487,-0.004829,0.005499,0.249940,0,0);-ms-transform:matrix(0.219487,-0.004829,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219487,-0.004829,0.005499,0.249940,0,0);}
.mc58_c00001{transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219490,0.000000,0.000000,0.250000,0,0);}
.m2829_c00001{transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);-ms-transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);}
.m847_c00001{transform:matrix(0.219519,-0.006147,0.006997,0.249902,0,0);-ms-transform:matrix(0.219519,-0.006147,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219519,-0.006147,0.006997,0.249902,0,0);}
.mde2_c00001{transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219520,0.000000,0.000000,0.250000,0,0);}
.m27a2_c00001{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m208a_c00001{transform:matrix(0.219530,-0.006805,0.007746,0.249880,0,0);-ms-transform:matrix(0.219530,-0.006805,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219530,-0.006805,0.007746,0.249880,0,0);}
.m1521_c00001{transform:matrix(0.219535,0.007252,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219535,0.007252,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219535,0.007252,-0.008254,0.249864,0,0);}
.m1572_c00001{transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219570,0.000000,0.000000,0.250000,0,0);}
.m98b_c00001{transform:matrix(0.219581,-0.008352,0.009503,0.249819,0,0);-ms-transform:matrix(0.219581,-0.008352,0.009503,0.249819,0,0);-webkit-transform:matrix(0.219581,-0.008352,0.009503,0.249819,0,0);}
.m10ce_c00001{transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219605,0.000000,0.000000,0.250000,0,0);}
.m237d_c00001{transform:matrix(0.219614,0.003953,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219614,0.003953,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219614,0.003953,-0.004499,0.249960,0,0);}
.m899_c00001{transform:matrix(0.219625,-0.004173,0.004749,0.249955,0,0);-ms-transform:matrix(0.219625,-0.004173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219625,-0.004173,0.004749,0.249955,0,0);}
.m18f3_c00001{transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);}
.m1c45_c00001{transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219655,0.000000,0.000000,0.250000,0,0);}
.m25e1_c00001{transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219680,0.000000,0.000000,0.250000,0,0);}
.m146e_c00001{transform:matrix(0.219685,0.007257,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219685,0.007257,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219685,0.007257,-0.008254,0.249864,0,0);}
.m1754_c00001{transform:matrix(0.219686,-0.005712,0.006498,0.249916,0,0);-ms-transform:matrix(0.219686,-0.005712,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219686,-0.005712,0.006498,0.249916,0,0);}
.m2836_c00001{transform:matrix(0.219686,-0.002856,0.003250,0.249979,0,0);-ms-transform:matrix(0.219686,-0.002856,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219686,-0.002856,0.003250,0.249979,0,0);}
.m2530_c00001{transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);}
.mf8f_c00001{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m97b_c00001{transform:matrix(0.219721,-0.008358,0.009503,0.249819,0,0);-ms-transform:matrix(0.219721,-0.008358,0.009503,0.249819,0,0);-webkit-transform:matrix(0.219721,-0.008358,0.009503,0.249819,0,0);}
.m20fd_c00001{transform:matrix(0.219734,0.006153,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219734,0.006153,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219734,0.006153,-0.006997,0.249902,0,0);}
.m1fce_c00001{transform:matrix(0.219776,-0.005494,0.006248,0.249922,0,0);-ms-transform:matrix(0.219776,-0.005494,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219776,-0.005494,0.006248,0.249922,0,0);}
.me42_c00001{transform:matrix(0.219779,0.003956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219779,0.003956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219779,0.003956,-0.004499,0.249960,0,0);}
.m1551_c00001{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m41b_c00001{transform:matrix(0.219787,-0.004616,0.005249,0.249945,0,0);-ms-transform:matrix(0.219787,-0.004616,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219787,-0.004616,0.005249,0.249945,0,0);}
.m18d5_c00001{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.mfa5_c00001{transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219795,0.000000,0.000000,0.250000,0,0);}
.m13ed_c00001{transform:matrix(0.219806,-0.005715,0.006498,0.249916,0,0);-ms-transform:matrix(0.219806,-0.005715,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219806,-0.005715,0.006498,0.249916,0,0);}
.m669_c00001{transform:matrix(0.219810,-0.009021,0.010252,0.249790,0,0);-ms-transform:matrix(0.219810,-0.009021,0.010252,0.249790,0,0);-webkit-transform:matrix(0.219810,-0.009021,0.010252,0.249790,0,0);}
.m2218_c00001{transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);-ms-transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219822,-0.005056,0.005748,0.249934,0,0);}
.m1bfb_c00001{transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);}
.m1f30_c00001{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m189b_c00001{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m226d_c00001{transform:matrix(0.219899,-0.003958,0.004499,0.249960,0,0);-ms-transform:matrix(0.219899,-0.003958,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219899,-0.003958,0.004499,0.249960,0,0);}
.m1b3f_c00001{transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219905,0.000000,0.000000,0.250000,0,0);}
.m1785_c00001{transform:matrix(0.219916,-0.005718,0.006498,0.249916,0,0);-ms-transform:matrix(0.219916,-0.005718,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219916,-0.005718,0.006498,0.249916,0,0);}
.m2504_c00001{transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);}
.m886_c00001{transform:matrix(0.219951,-0.008367,0.009503,0.249819,0,0);-ms-transform:matrix(0.219951,-0.008367,0.009503,0.249819,0,0);-webkit-transform:matrix(0.219951,-0.008367,0.009503,0.249819,0,0);}
.m14b2_c00001{transform:matrix(0.219955,0.007266,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219955,0.007266,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219955,0.007266,-0.008254,0.249864,0,0);}
.m2998_c00001{transform:matrix(0.219962,-0.003519,0.003999,0.249968,0,0);-ms-transform:matrix(0.219962,-0.003519,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219962,-0.003519,0.003999,0.249968,0,0);}
.m1674_c00001{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.m1154_c00001{transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);}
.m2085_c00001{transform:matrix(0.219989,-0.006820,0.007746,0.249880,0,0);-ms-transform:matrix(0.219989,-0.006820,0.007746,0.249880,0,0);-webkit-transform:matrix(0.219989,-0.006820,0.007746,0.249880,0,0);}
.m19f8_c00001{transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219990,0.000000,0.000000,0.250000,0,0);}
.m1fbe_c00001{transform:matrix(0.219991,-0.009249,0.010501,0.249779,0,0);-ms-transform:matrix(0.219991,-0.009249,0.010501,0.249779,0,0);-webkit-transform:matrix(0.219991,-0.009249,0.010501,0.249779,0,0);}
.m1d3c_c00001{transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219995,0.000000,0.000000,0.250000,0,0);}
.m23fd_c00001{transform:matrix(0.220017,-0.004840,0.005499,0.249940,0,0);-ms-transform:matrix(0.220017,-0.004840,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220017,-0.004840,0.005499,0.249940,0,0);}
.m269f_c00001{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m1003_c00001{transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220040,0.000000,0.000000,0.250000,0,0);}
.m1372_c00001{transform:matrix(0.220052,0.006382,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220052,0.006382,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220052,0.006382,-0.007247,0.249895,0,0);}
.m1955_c00001{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.m1bd1_c00001{transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220115,0.000000,0.000000,0.250000,0,0);}
.m1e6e_c00001{transform:matrix(0.220121,-0.005723,0.006498,0.249916,0,0);-ms-transform:matrix(0.220121,-0.005723,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220121,-0.005723,0.006498,0.249916,0,0);}
.m8b7_c00001{transform:matrix(0.220147,-0.005284,0.005998,0.249928,0,0);-ms-transform:matrix(0.220147,-0.005284,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220147,-0.005284,0.005998,0.249928,0,0);}
.m1c7e_c00001{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.md35_c00001{transform:matrix(0.220162,-0.006385,0.007247,0.249895,0,0);-ms-transform:matrix(0.220162,-0.006385,0.007247,0.249895,0,0);-webkit-transform:matrix(0.220162,-0.006385,0.007247,0.249895,0,0);}
.m289a_c00001{transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);}
.m15ac_c00001{transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220180,0.000000,0.000000,0.250000,0,0);}
.m175_c00001{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.m1f33_c00001{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00001{transform:matrix(0.220200,-0.003303,0.003750,0.249972,0,0);-ms-transform:matrix(0.220200,-0.003303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220200,-0.003303,0.003750,0.249972,0,0);}
.maba_c00001{transform:matrix(0.220206,-0.009478,0.010751,0.249769,0,0);-ms-transform:matrix(0.220206,-0.009478,0.010751,0.249769,0,0);-webkit-transform:matrix(0.220206,-0.009478,0.010751,0.249769,0,0);}
.m6f7_c00001{transform:matrix(0.220226,0.005506,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220226,0.005506,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220226,0.005506,-0.006248,0.249922,0,0);}
.m24c9_c00001{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.m29f_c00001{transform:matrix(0.220239,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220239,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220239,-0.002643,0.003000,0.249982,0,0);}
.mc74_c00001{transform:matrix(0.220242,-0.006387,0.007247,0.249895,0,0);-ms-transform:matrix(0.220242,-0.006387,0.007247,0.249895,0,0);-webkit-transform:matrix(0.220242,-0.006387,0.007247,0.249895,0,0);}
.m1682_c00001{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m11a4_c00001{transform:matrix(0.220262,-0.004846,0.005499,0.249940,0,0);-ms-transform:matrix(0.220262,-0.004846,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220262,-0.004846,0.005499,0.249940,0,0);}
.m1c41_c00001{transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);}
.m24c0_c00001{transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);}
.mf6c_c00001{transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220290,0.000000,0.000000,0.250000,0,0);}
.m946_c00001{transform:matrix(0.220291,-0.008379,0.009503,0.249819,0,0);-ms-transform:matrix(0.220291,-0.008379,0.009503,0.249819,0,0);-webkit-transform:matrix(0.220291,-0.008379,0.009503,0.249819,0,0);}
.me44_c00001{transform:matrix(0.220319,0.003966,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220319,0.003966,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220319,0.003966,-0.004499,0.249960,0,0);}
.m2938_c00001{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00001{transform:matrix(0.220337,-0.005068,0.005748,0.249934,0,0);-ms-transform:matrix(0.220337,-0.005068,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220337,-0.005068,0.005748,0.249934,0,0);}
.m12af_c00001{transform:matrix(0.220342,0.005068,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220342,0.005068,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220342,0.005068,-0.005748,0.249934,0,0);}
.me5d_c00001{transform:matrix(0.220364,0.003967,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220364,0.003967,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220364,0.003967,-0.004499,0.249960,0,0);}
.m24a4_c00001{transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);}
.mf19_c00001{transform:matrix(0.220371,0.004407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220371,0.004407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220371,0.004407,-0.004999,0.249950,0,0);}
.m2dd_c00001{transform:matrix(0.220386,-0.002865,0.003250,0.249979,0,0);-ms-transform:matrix(0.220386,-0.002865,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220386,-0.002865,0.003250,0.249979,0,0);}
.m208f_c00001{transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);-ms-transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);}
.m19e4_c00001{transform:matrix(0.220402,-0.003526,0.003999,0.249968,0,0);-ms-transform:matrix(0.220402,-0.003526,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220402,-0.003526,0.003999,0.249968,0,0);}
.m1a7f_c00001{transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);}
.m5de_c00001{transform:matrix(0.220436,-0.009930,0.011250,0.249747,0,0);-ms-transform:matrix(0.220436,-0.009930,0.011250,0.249747,0,0);-webkit-transform:matrix(0.220436,-0.009930,0.011250,0.249747,0,0);}
.mcac_c00001{transform:matrix(0.220467,-0.006394,0.007247,0.249895,0,0);-ms-transform:matrix(0.220467,-0.006394,0.007247,0.249895,0,0);-webkit-transform:matrix(0.220467,-0.006394,0.007247,0.249895,0,0);}
.m1ccb_c00001{transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220470,0.000000,0.000000,0.250000,0,0);}
.m883_c00001{transform:matrix(0.220486,-0.008387,0.009503,0.249819,0,0);-ms-transform:matrix(0.220486,-0.008387,0.009503,0.249819,0,0);-webkit-transform:matrix(0.220486,-0.008387,0.009503,0.249819,0,0);}
.m2774_c00001{transform:matrix(0.220490,-0.003307,0.003750,0.249972,0,0);-ms-transform:matrix(0.220490,-0.003307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220490,-0.003307,0.003750,0.249972,0,0);}
.m1deb_c00001{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m2825_c00001{transform:matrix(0.220516,-0.002867,0.003250,0.249979,0,0);-ms-transform:matrix(0.220516,-0.002867,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220516,-0.002867,0.003250,0.249979,0,0);}
.m1178_c00001{transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220520,0.000000,0.000000,0.250000,0,0);}
.m25b7_c00001{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m1345_c00001{transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);}
.m15de_c00001{transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220530,0.000000,0.000000,0.250000,0,0);}
.m1b29_c00001{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m18bd_c00001{transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220540,0.000000,0.000000,0.250000,0,0);}
.m22ec_c00001{transform:matrix(0.220549,0.003970,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220549,0.003970,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220549,0.003970,-0.004499,0.249960,0,0);}
.meb3_c00001{transform:matrix(0.220553,0.003088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220553,0.003088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220553,0.003088,-0.003500,0.249976,0,0);}
.m24c_c00001{transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);}
.m7f8_c00001{transform:matrix(0.220574,-0.006176,0.006997,0.249902,0,0);-ms-transform:matrix(0.220574,-0.006176,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220574,-0.006176,0.006997,0.249902,0,0);}
.m220c_c00001{transform:matrix(0.220580,-0.004191,0.004749,0.249955,0,0);-ms-transform:matrix(0.220580,-0.004191,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220580,-0.004191,0.004749,0.249955,0,0);}
.m224a_c00001{transform:matrix(0.220581,-0.004632,0.005249,0.249945,0,0);-ms-transform:matrix(0.220581,-0.004632,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220581,-0.004632,0.005249,0.249945,0,0);}
.m1e77_c00001{transform:matrix(0.220585,-0.005735,0.006498,0.249916,0,0);-ms-transform:matrix(0.220585,-0.005735,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220585,-0.005735,0.006498,0.249916,0,0);}
.m282a_c00001{transform:matrix(0.220591,-0.002868,0.003250,0.249979,0,0);-ms-transform:matrix(0.220591,-0.002868,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220591,-0.002868,0.003250,0.249979,0,0);}
.m28fb_c00001{transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);}
.m1b0f_c00001{transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220605,0.000000,0.000000,0.250000,0,0);}
.m2860_c00001{transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);}
.m4fe_c00001{transform:matrix(0.220657,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220657,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220657,0.002427,-0.002750,0.249985,0,0);}
.m135c_c00001{transform:matrix(0.220667,0.006399,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220667,0.006399,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220667,0.006399,-0.007247,0.249895,0,0);}
.m8d3_c00001{transform:matrix(0.220691,-0.005297,0.005998,0.249928,0,0);-ms-transform:matrix(0.220691,-0.005297,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220691,-0.005297,0.005998,0.249928,0,0);}
.m132a_c00001{transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);}
.m1664_c00001{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m25be_c00001{transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);}
.m157b_c00001{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.mfd8_c00001{transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220720,0.000000,0.000000,0.250000,0,0);}
.m1932_c00001{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.m1795_c00001{transform:matrix(0.220730,-0.005739,0.006498,0.249916,0,0);-ms-transform:matrix(0.220730,-0.005739,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220730,-0.005739,0.006498,0.249916,0,0);}
.m2783_c00001{transform:matrix(0.220780,-0.003312,0.003750,0.249972,0,0);-ms-transform:matrix(0.220780,-0.003312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220780,-0.003312,0.003750,0.249972,0,0);}
.m2095_c00001{transform:matrix(0.220784,-0.006844,0.007746,0.249880,0,0);-ms-transform:matrix(0.220784,-0.006844,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220784,-0.006844,0.007746,0.249880,0,0);}
.m26b7_c00001{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.m1670_c00001{transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220805,0.000000,0.000000,0.250000,0,0);}
.m9a8_c00001{transform:matrix(0.220805,-0.008399,0.009503,0.249819,0,0);-ms-transform:matrix(0.220805,-0.008399,0.009503,0.249819,0,0);-webkit-transform:matrix(0.220805,-0.008399,0.009503,0.249819,0,0);}
.m425_c00001{transform:matrix(0.220806,-0.004637,0.005249,0.249945,0,0);-ms-transform:matrix(0.220806,-0.004637,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220806,-0.004637,0.005249,0.249945,0,0);}
.m109a_c00001{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m239b_c00001{transform:matrix(0.220845,-0.005742,0.006498,0.249916,0,0);-ms-transform:matrix(0.220845,-0.005742,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220845,-0.005742,0.006498,0.249916,0,0);}
.m12bf_c00001{transform:matrix(0.220856,0.005521,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220856,0.005521,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220856,0.005521,-0.006248,0.249922,0,0);}
.m1d64_c00001{transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);}
.m1718_c00001{transform:matrix(0.220880,-0.005743,0.006498,0.249916,0,0);-ms-transform:matrix(0.220880,-0.005743,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220880,-0.005743,0.006498,0.249916,0,0);}
.mc80_c00001{transform:matrix(0.220902,-0.006406,0.007247,0.249895,0,0);-ms-transform:matrix(0.220902,-0.006406,0.007247,0.249895,0,0);-webkit-transform:matrix(0.220902,-0.006406,0.007247,0.249895,0,0);}
.m2092_c00001{transform:matrix(0.220914,-0.006848,0.007746,0.249880,0,0);-ms-transform:matrix(0.220914,-0.006848,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220914,-0.006848,0.007746,0.249880,0,0);}
.m24fe_c00001{transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220915,0.000000,0.000000,0.250000,0,0);}
.m2983_c00001{transform:matrix(0.220916,-0.004418,0.004999,0.249950,0,0);-ms-transform:matrix(0.220916,-0.004418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220916,-0.004418,0.004999,0.249950,0,0);}
.m1419_c00001{transform:matrix(0.220920,-0.005744,0.006498,0.249916,0,0);-ms-transform:matrix(0.220920,-0.005744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220920,-0.005744,0.006498,0.249916,0,0);}
.m1e4f_c00001{transform:matrix(0.220925,-0.005744,0.006498,0.249916,0,0);-ms-transform:matrix(0.220925,-0.005744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220925,-0.005744,0.006498,0.249916,0,0);}
.m1455_c00001{transform:matrix(0.220929,-0.005965,0.006748,0.249909,0,0);-ms-transform:matrix(0.220929,-0.005965,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220929,-0.005965,0.006748,0.249909,0,0);}
.m1a56_c00001{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m2148_c00001{transform:matrix(0.220933,0.006186,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220933,0.006186,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220933,0.006186,-0.006997,0.249902,0,0);}
.m2444_c00001{transform:matrix(0.220937,-0.004861,0.005499,0.249940,0,0);-ms-transform:matrix(0.220937,-0.004861,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220937,-0.004861,0.005499,0.249940,0,0);}
.m3ca_c00001{transform:matrix(0.220944,-0.007298,0.008254,0.249864,0,0);-ms-transform:matrix(0.220944,-0.007298,0.008254,0.249864,0,0);-webkit-transform:matrix(0.220944,-0.007298,0.008254,0.249864,0,0);}
.m1c21_c00001{transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220945,0.000000,0.000000,0.250000,0,0);}
.mdd8_c00001{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.m171d_c00001{transform:matrix(0.220950,-0.005745,0.006498,0.249916,0,0);-ms-transform:matrix(0.220950,-0.005745,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220950,-0.005745,0.006498,0.249916,0,0);}
.meef_c00001{transform:matrix(0.220961,0.002872,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220961,0.002872,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220961,0.002872,-0.003250,0.249979,0,0);}
.m26e7_c00001{transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220965,0.000000,0.000000,0.250000,0,0);}
.m1e4e_c00001{transform:matrix(0.221005,-0.005746,0.006498,0.249916,0,0);-ms-transform:matrix(0.221005,-0.005746,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221005,-0.005746,0.006498,0.249916,0,0);}
.m1a2a_c00001{transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221015,0.000000,0.000000,0.250000,0,0);}
.m1cda_c00001{transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);}
.mfb6_c00001{transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);}
.mc99_c00001{transform:matrix(0.221042,-0.006410,0.007247,0.249895,0,0);-ms-transform:matrix(0.221042,-0.006410,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221042,-0.006410,0.007247,0.249895,0,0);}
.m26a9_c00001{transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221045,0.000000,0.000000,0.250000,0,0);}
.m261d_c00001{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);}
.m27be_c00001{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.m2366_c00001{transform:matrix(0.221094,0.003980,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221094,0.003980,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221094,0.003980,-0.004499,0.249960,0,0);}
.m10fc_c00001{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m14c4_c00001{transform:matrix(0.221104,0.007304,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221104,0.007304,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221104,0.007304,-0.008254,0.249864,0,0);}
.m2606_c00001{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.meb0_c00001{transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);}
.m1b12_c00001{transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221110,0.000000,0.000000,0.250000,0,0);}
.m329_c00001{transform:matrix(0.221116,-0.002875,0.003250,0.249979,0,0);-ms-transform:matrix(0.221116,-0.002875,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221116,-0.002875,0.003250,0.249979,0,0);}
.m27ab_c00001{transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221130,0.000000,0.000000,0.250000,0,0);}
.me80_c00001{transform:matrix(0.221143,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221143,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221143,0.003096,-0.003500,0.249976,0,0);}
.m1014_c00001{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.m6e9_c00001{transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221176,0.005529,-0.006248,0.249922,0,0);}
.m18b7_c00001{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m138b_c00001{transform:matrix(0.221235,-0.005752,0.006498,0.249916,0,0);-ms-transform:matrix(0.221235,-0.005752,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221235,-0.005752,0.006498,0.249916,0,0);}
.m192_c00001{transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221260,0.000000,0.000000,0.250000,0,0);}
.m262b_c00001{transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);}
.mbb4_c00001{transform:matrix(0.221277,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221277,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221277,0.002434,-0.002750,0.249985,0,0);}
.m1ccc_c00001{transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221290,0.000000,0.000000,0.250000,0,0);}
.m1667_c00001{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.m1dbf_c00001{transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221305,0.000000,0.000000,0.250000,0,0);}
.m2580_c00001{transform:matrix(0.221316,-0.002877,0.003250,0.249979,0,0);-ms-transform:matrix(0.221316,-0.002877,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221316,-0.002877,0.003250,0.249979,0,0);}
.m1e5e_c00001{transform:matrix(0.221330,-0.005755,0.006498,0.249916,0,0);-ms-transform:matrix(0.221330,-0.005755,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221330,-0.005755,0.006498,0.249916,0,0);}
.m28b3_c00001{transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);}
.m283f_c00001{transform:matrix(0.221341,-0.002877,0.003250,0.249979,0,0);-ms-transform:matrix(0.221341,-0.002877,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221341,-0.002877,0.003250,0.249979,0,0);}
.m10ec_c00001{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.m26e8_c00001{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m1201_c00001{transform:matrix(0.221371,-0.004870,0.005499,0.249940,0,0);-ms-transform:matrix(0.221371,-0.004870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221371,-0.004870,0.005499,0.249940,0,0);}
.mcca_c00001{transform:matrix(0.221377,-0.006420,0.007247,0.249895,0,0);-ms-transform:matrix(0.221377,-0.006420,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221377,-0.006420,0.007247,0.249895,0,0);}
.m2624_c00001{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m21de_c00001{transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);-ms-transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221406,-0.005314,0.005998,0.249928,0,0);}
.m178a_c00001{transform:matrix(0.221410,-0.005757,0.006498,0.249916,0,0);-ms-transform:matrix(0.221410,-0.005757,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221410,-0.005757,0.006498,0.249916,0,0);}
.me24_c00001{transform:matrix(0.221420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221420,0.000000,0.000000,0.250000,0,0);}
.m53c_c00001{transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);}
.m1ca1_c00001{transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);}
.mf1a_c00001{transform:matrix(0.221446,0.004429,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221446,0.004429,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221446,0.004429,-0.004999,0.249950,0,0);}
.m15ec_c00001{transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);}
.m24dd_c00001{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m15a4_c00001{transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);}
.m2035_c00001{transform:matrix(0.221509,-0.006867,0.007746,0.249880,0,0);-ms-transform:matrix(0.221509,-0.006867,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221509,-0.006867,0.007746,0.249880,0,0);}
.m1dac_c00001{transform:matrix(0.221520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221520,0.000000,0.000000,0.250000,0,0);}
.me6e_c00001{transform:matrix(0.221528,0.003101,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221528,0.003101,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221528,0.003101,-0.003500,0.249976,0,0);}
.m188e_c00001{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m2469_c00001{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m2646_c00001{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m213b_c00001{transform:matrix(0.221553,0.006203,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221553,0.006203,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221553,0.006203,-0.006997,0.249902,0,0);}
.m1abf_c00001{transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);}
.m139e_c00001{transform:matrix(0.221595,-0.005761,0.006498,0.249916,0,0);-ms-transform:matrix(0.221595,-0.005761,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221595,-0.005761,0.006498,0.249916,0,0);}
.m288f_c00001{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m1ef7_c00001{transform:matrix(0.221600,-0.005762,0.006498,0.249916,0,0);-ms-transform:matrix(0.221600,-0.005762,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221600,-0.005762,0.006498,0.249916,0,0);}
.me7b_c00001{transform:matrix(0.221608,0.003103,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221608,0.003103,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221608,0.003103,-0.003500,0.249976,0,0);}
.m2199_c00001{transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);}
.mf35_c00001{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m5b8_c00001{transform:matrix(0.221630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221630,0.000000,0.000000,0.250000,0,0);}
.m1b03_c00001{transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);}
.m12c7_c00001{transform:matrix(0.221651,0.005541,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221651,0.005541,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221651,0.005541,-0.006248,0.249922,0,0);}
.m1de2_c00001{transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221660,0.000000,0.000000,0.250000,0,0);}
.m14b8_c00001{transform:matrix(0.221669,0.007322,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221669,0.007322,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221669,0.007322,-0.008254,0.249864,0,0);}
.m3f7_c00001{transform:matrix(0.221671,-0.004655,0.005249,0.249945,0,0);-ms-transform:matrix(0.221671,-0.004655,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221671,-0.004655,0.005249,0.249945,0,0);}
.m28af_c00001{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m1f55_c00001{transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);}
.m2880_c00001{transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221715,0.000000,0.000000,0.250000,0,0);}
.m42a_c00001{transform:matrix(0.221740,-0.004213,0.004749,0.249955,0,0);-ms-transform:matrix(0.221740,-0.004213,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221740,-0.004213,0.004749,0.249955,0,0);}
.md9b_c00001{transform:matrix(0.221759,0.002661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221759,0.002661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221759,0.002661,-0.003000,0.249982,0,0);}
.m1097_c00001{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m4af_c00001{transform:matrix(0.221806,-0.007105,0.008004,0.249872,0,0);-ms-transform:matrix(0.221806,-0.007105,0.008004,0.249872,0,0);-webkit-transform:matrix(0.221806,-0.007105,0.008004,0.249872,0,0);}
.m271b_c00001{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m13e1_c00001{transform:matrix(0.221825,-0.005767,0.006498,0.249916,0,0);-ms-transform:matrix(0.221825,-0.005767,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221825,-0.005767,0.006498,0.249916,0,0);}
.m18dd_c00001{transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221830,0.000000,0.000000,0.250000,0,0);}
.m2450_c00001{transform:matrix(0.221836,-0.004880,0.005499,0.249940,0,0);-ms-transform:matrix(0.221836,-0.004880,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221836,-0.004880,0.005499,0.249940,0,0);}
.md58_c00001{transform:matrix(0.221857,-0.006434,0.007247,0.249895,0,0);-ms-transform:matrix(0.221857,-0.006434,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221857,-0.006434,0.007247,0.249895,0,0);}
.m14d_c00001{transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);}
.m1658_c00001{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.mc83_c00001{transform:matrix(0.221892,-0.006435,0.007247,0.249895,0,0);-ms-transform:matrix(0.221892,-0.006435,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221892,-0.006435,0.007247,0.249895,0,0);}
.m23b1_c00001{transform:matrix(0.221901,-0.004882,0.005499,0.249940,0,0);-ms-transform:matrix(0.221901,-0.004882,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221901,-0.004882,0.005499,0.249940,0,0);}
.m1599_c00001{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m767_c00001{transform:matrix(0.221928,0.006214,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221928,0.006214,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221928,0.006214,-0.006997,0.249902,0,0);}
.m25e2_c00001{transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);}
.m12fd_c00001{transform:matrix(0.221949,0.005993,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221949,0.005993,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221949,0.005993,-0.006748,0.249909,0,0);}
.m2823_c00001{transform:matrix(0.221961,-0.002885,0.003250,0.249979,0,0);-ms-transform:matrix(0.221961,-0.002885,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221961,-0.002885,0.003250,0.249979,0,0);}
.me6d_c00001{transform:matrix(0.221978,0.003108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221978,0.003108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221978,0.003108,-0.003500,0.249976,0,0);}
.m1be7_c00001{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m11ff_c00001{transform:matrix(0.221991,-0.004884,0.005499,0.249940,0,0);-ms-transform:matrix(0.221991,-0.004884,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221991,-0.004884,0.005499,0.249940,0,0);}
.mb57_c00001{transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);-ms-transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222001,-0.008667,0.009752,0.249810,0,0);}
.m234d_c00001{transform:matrix(0.222009,0.003996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222009,0.003996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222009,0.003996,-0.004499,0.249960,0,0);}
.m225b_c00001{transform:matrix(0.222021,-0.005329,0.005998,0.249928,0,0);-ms-transform:matrix(0.222021,-0.005329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222021,-0.005329,0.005998,0.249928,0,0);}
.mebc_c00001{transform:matrix(0.222033,0.003108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222033,0.003108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222033,0.003108,-0.003500,0.249976,0,0);}
.m8a_c00001{transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222065,0.000000,0.000000,0.250000,0,0);}
.m27b6_c00001{transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222070,0.000000,0.000000,0.250000,0,0);}
.m1ee6_c00001{transform:matrix(0.222080,-0.005774,0.006498,0.249916,0,0);-ms-transform:matrix(0.222080,-0.005774,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222080,-0.005774,0.006498,0.249916,0,0);}
.m13f0_c00001{transform:matrix(0.222100,-0.005775,0.006498,0.249916,0,0);-ms-transform:matrix(0.222100,-0.005775,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222100,-0.005775,0.006498,0.249916,0,0);}
.m1105_c00001{transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);}
.m1383_c00001{transform:matrix(0.222115,-0.005775,0.006498,0.249916,0,0);-ms-transform:matrix(0.222115,-0.005775,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222115,-0.005775,0.006498,0.249916,0,0);}
.m1a76_c00001{transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222115,0.000000,0.000000,0.250000,0,0);}
.m1149_c00001{transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222120,0.000000,0.000000,0.250000,0,0);}
.m1d6a_c00001{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m1590_c00001{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m14ed_c00001{transform:matrix(0.222149,0.007338,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222149,0.007338,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222149,0.007338,-0.008254,0.249864,0,0);}
.m2570_c00001{transform:matrix(0.222151,-0.002888,0.003250,0.249979,0,0);-ms-transform:matrix(0.222151,-0.002888,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222151,-0.002888,0.003250,0.249979,0,0);}
.mf38_c00001{transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222155,0.000000,0.000000,0.250000,0,0);}
.m1aae_c00001{transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222165,0.000000,0.000000,0.250000,0,0);}
.m10f_c00001{transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222170,0.000000,0.000000,0.250000,0,0);}
.m23cc_c00001{transform:matrix(0.222171,-0.004888,0.005499,0.249940,0,0);-ms-transform:matrix(0.222171,-0.004888,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222171,-0.004888,0.005499,0.249940,0,0);}
.m241d_c00001{transform:matrix(0.222186,-0.004888,0.005499,0.249940,0,0);-ms-transform:matrix(0.222186,-0.004888,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222186,-0.004888,0.005499,0.249940,0,0);}
.m2732_c00001{transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);}
.m1e26_c00001{transform:matrix(0.222200,-0.005777,0.006498,0.249916,0,0);-ms-transform:matrix(0.222200,-0.005777,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222200,-0.005777,0.006498,0.249916,0,0);}
.m25d6_c00001{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.mf93_c00001{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m2704_c00001{transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222230,0.000000,0.000000,0.250000,0,0);}
.m17bc_c00001{transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222260,0.000000,0.000000,0.250000,0,0);}
.m267f_c00001{transform:matrix(0.222270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222270,0.000000,0.000000,0.250000,0,0);}
.mcc4_c00001{transform:matrix(0.222297,-0.006447,0.007247,0.249895,0,0);-ms-transform:matrix(0.222297,-0.006447,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222297,-0.006447,0.007247,0.249895,0,0);}
.m1812_c00001{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.mfe1_c00001{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.me41_c00001{transform:matrix(0.222344,0.004002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222344,0.004002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222344,0.004002,-0.004499,0.249960,0,0);}
.m1717_c00001{transform:matrix(0.222350,-0.005781,0.006498,0.249916,0,0);-ms-transform:matrix(0.222350,-0.005781,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222350,-0.005781,0.006498,0.249916,0,0);}
.me04_c00001{transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);}
.mf72_c00001{transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);}
.m297c_c00001{transform:matrix(0.222386,-0.004448,0.004999,0.249950,0,0);-ms-transform:matrix(0.222386,-0.004448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222386,-0.004448,0.004999,0.249950,0,0);}
.m1ce6_c00001{transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222395,0.000000,0.000000,0.250000,0,0);}
.m8c6_c00001{transform:matrix(0.222421,-0.005338,0.005998,0.249928,0,0);-ms-transform:matrix(0.222421,-0.005338,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222421,-0.005338,0.005998,0.249928,0,0);}
.m261b_c00001{transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222455,0.000000,0.000000,0.250000,0,0);}
.m23ba_c00001{transform:matrix(0.222466,-0.004894,0.005499,0.249940,0,0);-ms-transform:matrix(0.222466,-0.004894,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222466,-0.004894,0.005499,0.249940,0,0);}
.me71_c00001{transform:matrix(0.222488,0.003115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222488,0.003115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222488,0.003115,-0.003500,0.249976,0,0);}
.m13e6_c00001{transform:matrix(0.222500,-0.005785,0.006498,0.249916,0,0);-ms-transform:matrix(0.222500,-0.005785,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222500,-0.005785,0.006498,0.249916,0,0);}
.m252c_c00001{transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222505,0.000000,0.000000,0.250000,0,0);}
.m2800_c00001{transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);}
.m28cd_c00001{transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);}
.m2820_c00001{transform:matrix(0.222521,-0.002893,0.003250,0.249979,0,0);-ms-transform:matrix(0.222521,-0.002893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222521,-0.002893,0.003250,0.249979,0,0);}
.m26ce_c00001{transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);}
.m7f9_c00001{transform:matrix(0.222538,-0.006231,0.006997,0.249902,0,0);-ms-transform:matrix(0.222538,-0.006231,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222538,-0.006231,0.006997,0.249902,0,0);}
.m1a97_c00001{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m1c7a_c00001{transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222555,0.000000,0.000000,0.250000,0,0);}
.m178d_c00001{transform:matrix(0.222585,-0.005787,0.006498,0.249916,0,0);-ms-transform:matrix(0.222585,-0.005787,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222585,-0.005787,0.006498,0.249916,0,0);}
.m2296_c00001{transform:matrix(0.222585,-0.004229,0.004749,0.249955,0,0);-ms-transform:matrix(0.222585,-0.004229,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222585,-0.004229,0.004749,0.249955,0,0);}
.m3d7_c00001{transform:matrix(0.222593,-0.006233,0.006997,0.249902,0,0);-ms-transform:matrix(0.222593,-0.006233,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222593,-0.006233,0.006997,0.249902,0,0);}
.m8af_c00001{transform:matrix(0.222630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222630,0.000000,0.000000,0.250000,0,0);}
.m1f5f_c00001{transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222640,0.000000,0.000000,0.250000,0,0);}
.m1249_c00001{transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-ms-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222654,-0.006012,0.006748,0.249909,0,0);}
.m1e21_c00001{transform:matrix(0.222670,-0.005789,0.006498,0.249916,0,0);-ms-transform:matrix(0.222670,-0.005789,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222670,-0.005789,0.006498,0.249916,0,0);}
.m5e4_c00001{transform:matrix(0.222684,-0.010031,0.011250,0.249747,0,0);-ms-transform:matrix(0.222684,-0.010031,0.011250,0.249747,0,0);-webkit-transform:matrix(0.222684,-0.010031,0.011250,0.249747,0,0);}
.m2649_c00001{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m1eaa_c00001{transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);-ms-transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222705,-0.005790,0.006498,0.249916,0,0);}
.m1af_c00001{transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222710,-0.003341,0.003750,0.249972,0,0);}
.m9cf_c00001{transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);}
.m9aa_c00001{transform:matrix(0.222724,-0.008472,0.009503,0.249819,0,0);-ms-transform:matrix(0.222724,-0.008472,0.009503,0.249819,0,0);-webkit-transform:matrix(0.222724,-0.008472,0.009503,0.249819,0,0);}
.m165e_c00001{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m148_c00001{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m1f6e_c00001{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m182a_c00001{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2192_c00001{transform:matrix(0.222753,0.006237,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222753,0.006237,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222753,0.006237,-0.006997,0.249902,0,0);}
.m24d1_c00001{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.m19a7_c00001{transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);}
.m1aa9_c00001{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m1dfe_c00001{transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222785,0.000000,0.000000,0.250000,0,0);}
.mb1e_c00001{transform:matrix(0.222785,-0.008697,0.009752,0.249810,0,0);-ms-transform:matrix(0.222785,-0.008697,0.009752,0.249810,0,0);-webkit-transform:matrix(0.222785,-0.008697,0.009752,0.249810,0,0);}
.mfd6_c00001{transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);}
.m1f56_c00001{transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);}
.m23ef_c00001{transform:matrix(0.222806,-0.004902,0.005499,0.249940,0,0);-ms-transform:matrix(0.222806,-0.004902,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222806,-0.004902,0.005499,0.249940,0,0);}
.m10e1_c00001{transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00001{transform:matrix(0.222816,-0.003565,0.003999,0.249968,0,0);-ms-transform:matrix(0.222816,-0.003565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222816,-0.003565,0.003999,0.249968,0,0);}
.mff6_c00001{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.m16ec_c00001{transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);-ms-transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222875,-0.005795,0.006498,0.249916,0,0);}
.m18ac_c00001{transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222885,0.000000,0.000000,0.250000,0,0);}
.mf78_c00001{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m1dda_c00001{transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);}
.mc09_c00001{transform:matrix(0.222910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222910,0.000000,0.000000,0.250000,0,0);}
.m1303_c00001{transform:matrix(0.222919,0.006019,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222919,0.006019,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222919,0.006019,-0.006748,0.249909,0,0);}
.m1d19_c00001{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.m8ee_c00001{transform:matrix(0.222934,-0.008480,0.009503,0.249819,0,0);-ms-transform:matrix(0.222934,-0.008480,0.009503,0.249819,0,0);-webkit-transform:matrix(0.222934,-0.008480,0.009503,0.249819,0,0);}
.m24ba_c00001{transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222945,0.000000,0.000000,0.250000,0,0);}
.m1e9c_c00001{transform:matrix(0.222950,-0.005797,0.006498,0.249916,0,0);-ms-transform:matrix(0.222950,-0.005797,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222950,-0.005797,0.006498,0.249916,0,0);}
.m555_c00001{transform:matrix(0.222962,0.002453,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222962,0.002453,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222962,0.002453,-0.002750,0.249985,0,0);}
.m82c_c00001{transform:matrix(0.222963,-0.006243,0.006997,0.249902,0,0);-ms-transform:matrix(0.222963,-0.006243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222963,-0.006243,0.006997,0.249902,0,0);}
.m107e_c00001{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m22e8_c00001{transform:matrix(0.222991,0.003568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222991,0.003568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222991,0.003568,-0.003999,0.249968,0,0);}
.mf76_c00001{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2081_c00001{transform:matrix(0.223033,-0.006914,0.007746,0.249880,0,0);-ms-transform:matrix(0.223033,-0.006914,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223033,-0.006914,0.007746,0.249880,0,0);}
.m1c97_c00001{transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223040,0.000000,0.000000,0.250000,0,0);}
.m64e_c00001{transform:matrix(0.223042,-0.009154,0.010252,0.249790,0,0);-ms-transform:matrix(0.223042,-0.009154,0.010252,0.249790,0,0);-webkit-transform:matrix(0.223042,-0.009154,0.010252,0.249790,0,0);}
.m1151_c00001{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.ma76_c00001{transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);}
.m5ee_c00001{transform:matrix(0.223063,-0.009378,0.010501,0.249779,0,0);-ms-transform:matrix(0.223063,-0.009378,0.010501,0.249779,0,0);-webkit-transform:matrix(0.223063,-0.009378,0.010501,0.249779,0,0);}
.m12c1_c00001{transform:matrix(0.223065,0.005577,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223065,0.005577,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223065,0.005577,-0.006248,0.249922,0,0);}
.m28d4_c00001{transform:matrix(0.223094,0.002677,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223094,0.002677,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223094,0.002677,-0.003000,0.249982,0,0);}
.m19e1_c00001{transform:matrix(0.223121,-0.003570,0.003999,0.249968,0,0);-ms-transform:matrix(0.223121,-0.003570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223121,-0.003570,0.003999,0.249968,0,0);}
.m4a2_c00001{transform:matrix(0.223122,-0.009157,0.010252,0.249790,0,0);-ms-transform:matrix(0.223122,-0.009157,0.010252,0.249790,0,0);-webkit-transform:matrix(0.223122,-0.009157,0.010252,0.249790,0,0);}
.m2141_c00001{transform:matrix(0.223133,0.006248,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223133,0.006248,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223133,0.006248,-0.006997,0.249902,0,0);}
.m13d8_c00001{transform:matrix(0.223145,-0.005802,0.006498,0.249916,0,0);-ms-transform:matrix(0.223145,-0.005802,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223145,-0.005802,0.006498,0.249916,0,0);}
.m27ae_c00001{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m2de_c00001{transform:matrix(0.223161,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223161,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223161,-0.002901,0.003250,0.249979,0,0);}
.m189d_c00001{transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);}
.m12c4_c00001{transform:matrix(0.223235,0.005581,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223235,0.005581,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223235,0.005581,-0.006248,0.249922,0,0);}
.m326_c00001{transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);}
.m54_c00001{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m98e_c00001{transform:matrix(0.223274,-0.008493,0.009503,0.249819,0,0);-ms-transform:matrix(0.223274,-0.008493,0.009503,0.249819,0,0);-webkit-transform:matrix(0.223274,-0.008493,0.009503,0.249819,0,0);}
.m1642_c00001{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m203a_c00001{transform:matrix(0.223288,-0.006922,0.007746,0.249880,0,0);-ms-transform:matrix(0.223288,-0.006922,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223288,-0.006922,0.007746,0.249880,0,0);}
.m2681_c00001{transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223290,0.000000,0.000000,0.250000,0,0);}
.ma47_c00001{transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223295,0.000000,0.000000,0.250000,0,0);}
.m2815_c00001{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m2574_c00001{transform:matrix(0.223301,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223301,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223301,-0.002903,0.003250,0.249979,0,0);}
.m3cc_c00001{transform:matrix(0.223310,-0.006699,0.007497,0.249888,0,0);-ms-transform:matrix(0.223310,-0.006699,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223310,-0.006699,0.007497,0.249888,0,0);}
.m2529_c00001{transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223310,0.000000,0.000000,0.250000,0,0);}
.m304_c00001{transform:matrix(0.223331,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223331,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223331,-0.002903,0.003250,0.249979,0,0);}
.m1529_c00001{transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);}
.m24f7_c00001{transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);}
.m28c4_c00001{transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);}
.m2242_c00001{transform:matrix(0.223371,-0.004691,0.005249,0.249945,0,0);-ms-transform:matrix(0.223371,-0.004691,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223371,-0.004691,0.005249,0.249945,0,0);}
.mb80_c00001{transform:matrix(0.223383,-0.007379,0.008254,0.249864,0,0);-ms-transform:matrix(0.223383,-0.007379,0.008254,0.249864,0,0);-webkit-transform:matrix(0.223383,-0.007379,0.008254,0.249864,0,0);}
.m1c64_c00001{transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223385,0.000000,0.000000,0.250000,0,0);}
.m395_c00001{transform:matrix(0.223386,-0.002904,0.003250,0.249979,0,0);-ms-transform:matrix(0.223386,-0.002904,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223386,-0.002904,0.003250,0.249979,0,0);}
.m1ce7_c00001{transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223390,0.000000,0.000000,0.250000,0,0);}
.mdcc_c00001{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.meed_c00001{transform:matrix(0.223396,0.002904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223396,0.002904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223396,0.002904,-0.003250,0.249979,0,0);}
.m105_c00001{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m13e8_c00001{transform:matrix(0.223405,-0.005809,0.006498,0.249916,0,0);-ms-transform:matrix(0.223405,-0.005809,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223405,-0.005809,0.006498,0.249916,0,0);}
.m1bf4_c00001{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m983_c00001{transform:matrix(0.223433,-0.008499,0.009503,0.249819,0,0);-ms-transform:matrix(0.223433,-0.008499,0.009503,0.249819,0,0);-webkit-transform:matrix(0.223433,-0.008499,0.009503,0.249819,0,0);}
.m1cc7_c00001{transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);}
.m806_c00001{transform:matrix(0.223442,-0.006256,0.006997,0.249902,0,0);-ms-transform:matrix(0.223442,-0.006256,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223442,-0.006256,0.006997,0.249902,0,0);}
.m27df_c00001{transform:matrix(0.223445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223445,0.000000,0.000000,0.250000,0,0);}
.m208c_c00001{transform:matrix(0.223448,-0.006927,0.007746,0.249880,0,0);-ms-transform:matrix(0.223448,-0.006927,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223448,-0.006927,0.007746,0.249880,0,0);}
.mf95_c00001{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m1970_c00001{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m1a9a_c00001{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27cc_c00001{transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);}
.m2151_c00001{transform:matrix(0.223512,0.006258,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223512,0.006258,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223512,0.006258,-0.006997,0.249902,0,0);}
.md19_c00001{transform:matrix(0.223516,-0.006482,0.007247,0.249895,0,0);-ms-transform:matrix(0.223516,-0.006482,0.007247,0.249895,0,0);-webkit-transform:matrix(0.223516,-0.006482,0.007247,0.249895,0,0);}
.m2140_c00001{transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);}
.m1aee_c00001{transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);}
.m1568_c00001{transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);}
.m1cff_c00001{transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223615,0.000000,0.000000,0.250000,0,0);}
.m1046_c00001{transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223620,0.000000,0.000000,0.250000,0,0);}
.m1da4_c00001{transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223635,0.000000,0.000000,0.250000,0,0);}
.m14c_c00001{transform:matrix(0.223665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223665,0.000000,0.000000,0.250000,0,0);}
.mb7b_c00001{transform:matrix(0.223673,-0.007389,0.008254,0.249864,0,0);-ms-transform:matrix(0.223673,-0.007389,0.008254,0.249864,0,0);-webkit-transform:matrix(0.223673,-0.007389,0.008254,0.249864,0,0);}
.m15a0_c00001{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m1441_c00001{transform:matrix(0.223693,-0.006040,0.006748,0.249909,0,0);-ms-transform:matrix(0.223693,-0.006040,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223693,-0.006040,0.006748,0.249909,0,0);}
.m22d3_c00001{transform:matrix(0.223706,0.003579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223706,0.003579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223706,0.003579,-0.003999,0.249968,0,0);}
.m170b_c00001{transform:matrix(0.223714,-0.005817,0.006498,0.249916,0,0);-ms-transform:matrix(0.223714,-0.005817,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223714,-0.005817,0.006498,0.249916,0,0);}
.m1069_c00001{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m137f_c00001{transform:matrix(0.223729,-0.005817,0.006498,0.249916,0,0);-ms-transform:matrix(0.223729,-0.005817,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223729,-0.005817,0.006498,0.249916,0,0);}
.m1514_c00001{transform:matrix(0.223733,0.007391,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223733,0.007391,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223733,0.007391,-0.008254,0.249864,0,0);}
.m1b13_c00001{transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);}
.m19a3_c00001{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.m16e8_c00001{transform:matrix(0.223794,-0.005819,0.006498,0.249916,0,0);-ms-transform:matrix(0.223794,-0.005819,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223794,-0.005819,0.006498,0.249916,0,0);}
.m225f_c00001{transform:matrix(0.223796,-0.005371,0.005998,0.249928,0,0);-ms-transform:matrix(0.223796,-0.005371,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223796,-0.005371,0.005998,0.249928,0,0);}
.m125b_c00001{transform:matrix(0.223798,-0.006043,0.006748,0.249909,0,0);-ms-transform:matrix(0.223798,-0.006043,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223798,-0.006043,0.006748,0.249909,0,0);}
.m343_c00001{transform:matrix(0.223816,-0.002910,0.003250,0.249979,0,0);-ms-transform:matrix(0.223816,-0.002910,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223816,-0.002910,0.003250,0.249979,0,0);}
.m1c4_c00001{transform:matrix(0.223816,-0.003581,0.003999,0.249968,0,0);-ms-transform:matrix(0.223816,-0.003581,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223816,-0.003581,0.003999,0.249968,0,0);}
.m220b_c00001{transform:matrix(0.223820,-0.004253,0.004749,0.249955,0,0);-ms-transform:matrix(0.223820,-0.004253,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223820,-0.004253,0.004749,0.249955,0,0);}
.me59_c00001{transform:matrix(0.223824,0.004029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223824,0.004029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223824,0.004029,-0.004499,0.249960,0,0);}
.m241_c00001{transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223865,0.000000,0.000000,0.250000,0,0);}
.ma53_c00001{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.m1a9b_c00001{transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223880,0.000000,0.000000,0.250000,0,0);}
.m1dfc_c00001{transform:matrix(0.223890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223890,0.000000,0.000000,0.250000,0,0);}
.m2089_c00001{transform:matrix(0.223897,-0.006941,0.007746,0.249880,0,0);-ms-transform:matrix(0.223897,-0.006941,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223897,-0.006941,0.007746,0.249880,0,0);}
.m28ad_c00001{transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223905,0.000000,0.000000,0.250000,0,0);}
.m7ec_c00001{transform:matrix(0.223917,-0.006270,0.006997,0.249902,0,0);-ms-transform:matrix(0.223917,-0.006270,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223917,-0.006270,0.006997,0.249902,0,0);}
.m1162_c00001{transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223920,0.000000,0.000000,0.250000,0,0);}
.m1fd1_c00001{transform:matrix(0.223925,-0.005598,0.006248,0.249922,0,0);-ms-transform:matrix(0.223925,-0.005598,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223925,-0.005598,0.006248,0.249922,0,0);}
.m165b_c00001{transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223935,0.000000,0.000000,0.250000,0,0);}
.m1600_c00001{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.mfc5_c00001{transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223980,0.000000,0.000000,0.250000,0,0);}
.m27cd_c00001{transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223985,0.000000,0.000000,0.250000,0,0);}
.m2934_c00001{transform:matrix(0.223995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223995,0.000000,0.000000,0.250000,0,0);}
.m2453_c00001{transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);-ms-transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);}
.m25b4_c00001{transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);}
.m2713_c00001{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m10f3_c00001{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.m139b_c00001{transform:matrix(0.224059,-0.005826,0.006498,0.249916,0,0);-ms-transform:matrix(0.224059,-0.005826,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224059,-0.005826,0.006498,0.249916,0,0);}
.m2600_c00001{transform:matrix(0.224065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224065,0.000000,0.000000,0.250000,0,0);}
.m19ef_c00001{transform:matrix(0.224091,-0.003585,0.003999,0.249968,0,0);-ms-transform:matrix(0.224091,-0.003585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224091,-0.003585,0.003999,0.249968,0,0);}
.m6b3_c00001{transform:matrix(0.224106,0.005154,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224106,0.005154,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224106,0.005154,-0.005748,0.249934,0,0);}
.m1d14_c00001{transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224135,0.000000,0.000000,0.250000,0,0);}
.m1168_c00001{transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224145,0.000000,0.000000,0.250000,0,0);}
.ma7c_c00001{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.m257e_c00001{transform:matrix(0.224156,-0.002914,0.003250,0.249979,0,0);-ms-transform:matrix(0.224156,-0.002914,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224156,-0.002914,0.003250,0.249979,0,0);}
.m2443_c00001{transform:matrix(0.224166,-0.004932,0.005499,0.249940,0,0);-ms-transform:matrix(0.224166,-0.004932,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224166,-0.004932,0.005499,0.249940,0,0);}
.ma2e_c00001{transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);}
.m8f9_c00001{transform:matrix(0.224198,-0.008528,0.009503,0.249819,0,0);-ms-transform:matrix(0.224198,-0.008528,0.009503,0.249819,0,0);-webkit-transform:matrix(0.224198,-0.008528,0.009503,0.249819,0,0);}
.m2119_c00001{transform:matrix(0.224207,0.006278,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224207,0.006278,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224207,0.006278,-0.006997,0.249902,0,0);}
.m1a1e_c00001{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m313_c00001{transform:matrix(0.224226,-0.002915,0.003250,0.249979,0,0);-ms-transform:matrix(0.224226,-0.002915,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224226,-0.002915,0.003250,0.249979,0,0);}
.m1258_c00001{transform:matrix(0.224228,-0.006054,0.006748,0.249909,0,0);-ms-transform:matrix(0.224228,-0.006054,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224228,-0.006054,0.006748,0.249909,0,0);}
.m294f_c00001{transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224245,0.000000,0.000000,0.250000,0,0);}
.m2909_c00001{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m2436_c00001{transform:matrix(0.224271,-0.004934,0.005499,0.249940,0,0);-ms-transform:matrix(0.224271,-0.004934,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224271,-0.004934,0.005499,0.249940,0,0);}
.m1f1_c00001{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.m9cb_c00001{transform:matrix(0.224283,0.003140,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224283,0.003140,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224283,0.003140,-0.003500,0.249976,0,0);}
.m1fd8_c00001{transform:matrix(0.224295,-0.005607,0.006248,0.249922,0,0);-ms-transform:matrix(0.224295,-0.005607,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224295,-0.005607,0.006248,0.249922,0,0);}
.m2915_c00001{transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);}
.mfa0_c00001{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.m1bb0_c00001{transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224315,0.000000,0.000000,0.250000,0,0);}
.m28b8_c00001{transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224320,0.000000,0.000000,0.250000,0,0);}
.me76_c00001{transform:matrix(0.224328,0.003141,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224328,0.003141,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224328,0.003141,-0.003500,0.249976,0,0);}
.m237c_c00001{transform:matrix(0.224329,0.004038,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224329,0.004038,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224329,0.004038,-0.004499,0.249960,0,0);}
.m17a1_c00001{transform:matrix(0.224334,-0.004038,0.004499,0.249960,0,0);-ms-transform:matrix(0.224334,-0.004038,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224334,-0.004038,0.004499,0.249960,0,0);}
.m2762_c00001{transform:matrix(0.224345,-0.003365,0.003750,0.249972,0,0);-ms-transform:matrix(0.224345,-0.003365,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224345,-0.003365,0.003750,0.249972,0,0);}
.mbb2_c00001{transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);}
.m1b08_c00001{transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);}
.m1752_c00001{transform:matrix(0.224359,-0.005833,0.006498,0.249916,0,0);-ms-transform:matrix(0.224359,-0.005833,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224359,-0.005833,0.006498,0.249916,0,0);}
.m1131_c00001{transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224365,0.000000,0.000000,0.250000,0,0);}
.m8eb_c00001{transform:matrix(0.224378,-0.008535,0.009503,0.249819,0,0);-ms-transform:matrix(0.224378,-0.008535,0.009503,0.249819,0,0);-webkit-transform:matrix(0.224378,-0.008535,0.009503,0.249819,0,0);}
.m2931_c00001{transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224390,0.000000,0.000000,0.250000,0,0);}
.m18bf_c00001{transform:matrix(0.224395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224395,0.000000,0.000000,0.250000,0,0);}
.m22cc_c00001{transform:matrix(0.224401,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224401,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224401,0.003590,-0.003999,0.249968,0,0);}
.m1025_c00001{transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224405,0.000000,0.000000,0.250000,0,0);}
.m24c2_c00001{transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);}
.m1260_c00001{transform:matrix(0.224433,-0.006060,0.006748,0.249909,0,0);-ms-transform:matrix(0.224433,-0.006060,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224433,-0.006060,0.006748,0.249909,0,0);}
.m15e8_c00001{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.ma29_c00001{transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);}
.m1b32_c00001{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m1a13_c00001{transform:matrix(0.224470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224470,0.000000,0.000000,0.250000,0,0);}
.m752_c00001{transform:matrix(0.224477,0.006285,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224477,0.006285,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224477,0.006285,-0.006997,0.249902,0,0);}
.mcbc_c00001{transform:matrix(0.224506,-0.006511,0.007247,0.249895,0,0);-ms-transform:matrix(0.224506,-0.006511,0.007247,0.249895,0,0);-webkit-transform:matrix(0.224506,-0.006511,0.007247,0.249895,0,0);}
.mf71_c00001{transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224510,0.000000,0.000000,0.250000,0,0);}
.m218c_c00001{transform:matrix(0.224512,0.006286,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224512,0.006286,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224512,0.006286,-0.006997,0.249902,0,0);}
.m2710_c00001{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m1e80_c00001{transform:matrix(0.224544,-0.005838,0.006498,0.249916,0,0);-ms-transform:matrix(0.224544,-0.005838,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224544,-0.005838,0.006498,0.249916,0,0);}
.m24c1_c00001{transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224560,0.000000,0.000000,0.250000,0,0);}
.m10f8_c00001{transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);}
.m915_c00001{transform:matrix(0.224593,-0.008543,0.009503,0.249819,0,0);-ms-transform:matrix(0.224593,-0.008543,0.009503,0.249819,0,0);-webkit-transform:matrix(0.224593,-0.008543,0.009503,0.249819,0,0);}
.m1d80_c00001{transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224595,0.000000,0.000000,0.250000,0,0);}
.m1fb4_c00001{transform:matrix(0.224607,-0.009443,0.010501,0.249779,0,0);-ms-transform:matrix(0.224607,-0.009443,0.010501,0.249779,0,0);-webkit-transform:matrix(0.224607,-0.009443,0.010501,0.249779,0,0);}
.mef2_c00001{transform:matrix(0.224611,0.002920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224611,0.002920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224611,0.002920,-0.003250,0.249979,0,0);}
.m54b_c00001{transform:matrix(0.224626,0.002471,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224626,0.002471,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224626,0.002471,-0.002750,0.249985,0,0);}
.m1ace_c00001{transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);}
.m1f25_c00001{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m22ea_c00001{transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);}
.m263d_c00001{transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224670,0.000000,0.000000,0.250000,0,0);}
.m687_c00001{transform:matrix(0.224726,-0.009223,0.010252,0.249790,0,0);-ms-transform:matrix(0.224726,-0.009223,0.010252,0.249790,0,0);-webkit-transform:matrix(0.224726,-0.009223,0.010252,0.249790,0,0);}
.m160_c00001{transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);}
.m15a3_c00001{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.m5a9_c00001{transform:matrix(0.224761,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224761,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224761,0.002472,-0.002750,0.249985,0,0);}
.m120c_c00001{transform:matrix(0.224768,-0.006069,0.006748,0.249909,0,0);-ms-transform:matrix(0.224768,-0.006069,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224768,-0.006069,0.006748,0.249909,0,0);}
.m1edf_c00001{transform:matrix(0.224794,-0.005845,0.006498,0.249916,0,0);-ms-transform:matrix(0.224794,-0.005845,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224794,-0.005845,0.006498,0.249916,0,0);}
.m1e02_c00001{transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224795,0.000000,0.000000,0.250000,0,0);}
.m31a_c00001{transform:matrix(0.224806,-0.002922,0.003250,0.249979,0,0);-ms-transform:matrix(0.224806,-0.002922,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224806,-0.002922,0.003250,0.249979,0,0);}
.m1f90_c00001{transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224830,0.000000,0.000000,0.250000,0,0);}
.m1e93_c00001{transform:matrix(0.224835,-0.004497,0.004999,0.249950,0,0);-ms-transform:matrix(0.224835,-0.004497,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224835,-0.004497,0.004999,0.249950,0,0);}
.m1977_c00001{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.mabe_c00001{transform:matrix(0.224877,-0.009679,0.010751,0.249769,0,0);-ms-transform:matrix(0.224877,-0.009679,0.010751,0.249769,0,0);-webkit-transform:matrix(0.224877,-0.009679,0.010751,0.249769,0,0);}
.mf7f_c00001{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m223d_c00001{transform:matrix(0.224880,-0.004722,0.005249,0.249945,0,0);-ms-transform:matrix(0.224880,-0.004722,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224880,-0.004722,0.005249,0.249945,0,0);}
.m16a6_c00001{transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224885,0.000000,0.000000,0.250000,0,0);}
.m775_c00001{transform:matrix(0.224891,0.005172,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224891,0.005172,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224891,0.005172,-0.005748,0.249934,0,0);}
.m2372_c00001{transform:matrix(0.224894,0.004048,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224894,0.004048,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224894,0.004048,-0.004499,0.249960,0,0);}
.m2740_c00001{transform:matrix(0.224895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224895,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00001{transform:matrix(0.224896,-0.003598,0.003999,0.249968,0,0);-ms-transform:matrix(0.224896,-0.003598,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224896,-0.003598,0.003999,0.249968,0,0);}
.m135a_c00001{transform:matrix(0.224910,0.006522,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224910,0.006522,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224910,0.006522,-0.007247,0.249895,0,0);}
.m1e56_c00001{transform:matrix(0.224914,-0.005848,0.006498,0.249916,0,0);-ms-transform:matrix(0.224914,-0.005848,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224914,-0.005848,0.006498,0.249916,0,0);}
.m23fe_c00001{transform:matrix(0.224926,-0.004948,0.005499,0.249940,0,0);-ms-transform:matrix(0.224926,-0.004948,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224926,-0.004948,0.005499,0.249940,0,0);}
.m291e_c00001{transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224930,0.000000,0.000000,0.250000,0,0);}
.m204f_c00001{transform:matrix(0.224932,-0.006973,0.007746,0.249880,0,0);-ms-transform:matrix(0.224932,-0.006973,0.007746,0.249880,0,0);-webkit-transform:matrix(0.224932,-0.006973,0.007746,0.249880,0,0);}
.m299_c00001{transform:matrix(0.224934,-0.002699,0.003000,0.249982,0,0);-ms-transform:matrix(0.224934,-0.002699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224934,-0.002699,0.003000,0.249982,0,0);}
.m247e_c00001{transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224935,0.000000,0.000000,0.250000,0,0);}
.m1a48_c00001{transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);}
.m7fc_c00001{transform:matrix(0.224957,-0.006299,0.006997,0.249902,0,0);-ms-transform:matrix(0.224957,-0.006299,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224957,-0.006299,0.006997,0.249902,0,0);}
.m1b6c_c00001{transform:matrix(0.224964,-0.004274,0.004749,0.249955,0,0);-ms-transform:matrix(0.224964,-0.004274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224964,-0.004274,0.004749,0.249955,0,0);}
.mf8a_c00001{transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224965,0.000000,0.000000,0.250000,0,0);}
.m1fd4_c00001{transform:matrix(0.224970,-0.005624,0.006248,0.249922,0,0);-ms-transform:matrix(0.224970,-0.005624,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224970,-0.005624,0.006248,0.249922,0,0);}
.m2859_c00001{transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);}
.me10_c00001{transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224995,0.000000,0.000000,0.250000,0,0);}
.m1786_c00001{transform:matrix(0.224999,-0.005850,0.006498,0.249916,0,0);-ms-transform:matrix(0.224999,-0.005850,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224999,-0.005850,0.006498,0.249916,0,0);}
.m10f5_c00001{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.m248c_c00001{transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);}
.m2718_c00001{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m1ee0_c00001{transform:matrix(0.225079,-0.005852,0.006498,0.249916,0,0);-ms-transform:matrix(0.225079,-0.005852,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225079,-0.005852,0.006498,0.249916,0,0);}
.m2701_c00001{transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225085,0.000000,0.000000,0.250000,0,0);}
.m17bb_c00001{transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);}
.m5d2_c00001{transform:matrix(0.225115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225115,0.000000,0.000000,0.250000,0,0);}
.m2698_c00001{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.m22e5_c00001{transform:matrix(0.225176,0.003603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225176,0.003603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225176,0.003603,-0.003999,0.249968,0,0);}
.m3d9_c00001{transform:matrix(0.225177,-0.006305,0.006997,0.249902,0,0);-ms-transform:matrix(0.225177,-0.006305,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225177,-0.006305,0.006997,0.249902,0,0);}
.m2019_c00001{transform:matrix(0.225177,-0.006980,0.007746,0.249880,0,0);-ms-transform:matrix(0.225177,-0.006980,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225177,-0.006980,0.007746,0.249880,0,0);}
.m1d12_c00001{transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);}
.m27a3_c00001{transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);}
.mc22_c00001{transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225205,0.000000,0.000000,0.250000,0,0);}
.me78_c00001{transform:matrix(0.225233,0.003153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225233,0.003153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225233,0.003153,-0.003500,0.249976,0,0);}
.m26fe_c00001{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf7b_c00001{transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);}
.m16e0_c00001{transform:matrix(0.225295,-0.007668,0.008504,0.249855,0,0);-ms-transform:matrix(0.225295,-0.007668,0.008504,0.249855,0,0);-webkit-transform:matrix(0.225295,-0.007668,0.008504,0.249855,0,0);}
.m2514_c00001{transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);}
.m23b6_c00001{transform:matrix(0.225325,-0.004957,0.005499,0.249940,0,0);-ms-transform:matrix(0.225325,-0.004957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225325,-0.004957,0.005499,0.249940,0,0);}
.m2439_c00001{transform:matrix(0.225335,-0.004957,0.005499,0.249940,0,0);-ms-transform:matrix(0.225335,-0.004957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225335,-0.004957,0.005499,0.249940,0,0);}
.m482_c00001{transform:matrix(0.225339,-0.006760,0.007497,0.249888,0,0);-ms-transform:matrix(0.225339,-0.006760,0.007497,0.249888,0,0);-webkit-transform:matrix(0.225339,-0.006760,0.007497,0.249888,0,0);}
.m245e_c00001{transform:matrix(0.225365,-0.004958,0.005499,0.249940,0,0);-ms-transform:matrix(0.225365,-0.004958,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225365,-0.004958,0.005499,0.249940,0,0);}
.m276f_c00001{transform:matrix(0.225375,-0.003381,0.003750,0.249972,0,0);-ms-transform:matrix(0.225375,-0.003381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225375,-0.003381,0.003750,0.249972,0,0);}
.m1038_c00001{transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);}
.m21bb_c00001{transform:matrix(0.225400,-0.005184,0.005748,0.249934,0,0);-ms-transform:matrix(0.225400,-0.005184,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225400,-0.005184,0.005748,0.249934,0,0);}
.m2808_c00001{transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);}
.m2378_c00001{transform:matrix(0.225418,0.004058,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225418,0.004058,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225418,0.004058,-0.004499,0.249960,0,0);}
.m10a_c00001{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m18d1_c00001{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m98a_c00001{transform:matrix(0.225427,-0.008575,0.009503,0.249819,0,0);-ms-transform:matrix(0.225427,-0.008575,0.009503,0.249819,0,0);-webkit-transform:matrix(0.225427,-0.008575,0.009503,0.249819,0,0);}
.m164a_c00001{transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);}
.m366_c00001{transform:matrix(0.225441,-0.002931,0.003250,0.249979,0,0);-ms-transform:matrix(0.225441,-0.002931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225441,-0.002931,0.003250,0.249979,0,0);}
.m21b5_c00001{transform:matrix(0.225450,-0.005185,0.005748,0.249934,0,0);-ms-transform:matrix(0.225450,-0.005185,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225450,-0.005185,0.005748,0.249934,0,0);}
.m1a42_c00001{transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);}
.m2445_c00001{transform:matrix(0.225480,-0.004961,0.005499,0.249940,0,0);-ms-transform:matrix(0.225480,-0.004961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225480,-0.004961,0.005499,0.249940,0,0);}
.m4f1_c00001{transform:matrix(0.225481,0.002480,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225481,0.002480,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225481,0.002480,-0.002750,0.249985,0,0);}
.m1da2_c00001{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m271c_c00001{transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225565,0.000000,0.000000,0.250000,0,0);}
.md39_c00001{transform:matrix(0.225580,-0.006542,0.007247,0.249895,0,0);-ms-transform:matrix(0.225580,-0.006542,0.007247,0.249895,0,0);-webkit-transform:matrix(0.225580,-0.006542,0.007247,0.249895,0,0);}
.mab4_c00001{transform:matrix(0.225583,-0.008807,0.009752,0.249810,0,0);-ms-transform:matrix(0.225583,-0.008807,0.009752,0.249810,0,0);-webkit-transform:matrix(0.225583,-0.008807,0.009752,0.249810,0,0);}
.m1a1b_c00001{transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225585,0.000000,0.000000,0.250000,0,0);}
.m27c4_c00001{transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);}
.m208e_c00001{transform:matrix(0.225597,-0.006993,0.007746,0.249880,0,0);-ms-transform:matrix(0.225597,-0.006993,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225597,-0.006993,0.007746,0.249880,0,0);}
.m24a3_c00001{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.m135d_c00001{transform:matrix(0.225605,0.006543,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225605,0.006543,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225605,0.006543,-0.007247,0.249895,0,0);}
.m262f_c00001{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.me29_c00001{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m1de_c00001{transform:matrix(0.225635,-0.004513,0.004999,0.249950,0,0);-ms-transform:matrix(0.225635,-0.004513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225635,-0.004513,0.004999,0.249950,0,0);}
.m154e_c00001{transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225645,0.000000,0.000000,0.250000,0,0);}
.m1107_c00001{transform:matrix(0.225680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225680,0.000000,0.000000,0.250000,0,0);}
.m266b_c00001{transform:matrix(0.225690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225690,0.000000,0.000000,0.250000,0,0);}
.m831_c00001{transform:matrix(0.225692,-0.006319,0.006997,0.249902,0,0);-ms-transform:matrix(0.225692,-0.006319,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225692,-0.006319,0.006997,0.249902,0,0);}
.m2370_c00001{transform:matrix(0.225708,0.004063,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225708,0.004063,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225708,0.004063,-0.004499,0.249960,0,0);}
.m2845_c00001{transform:matrix(0.225721,-0.002934,0.003250,0.249979,0,0);-ms-transform:matrix(0.225721,-0.002934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225721,-0.002934,0.003250,0.249979,0,0);}
.m15e2_c00001{transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);}
.m181f_c00001{transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);}
.m29ae_c00001{transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225765,0.000000,0.000000,0.250000,0,0);}
.m40f_c00001{transform:matrix(0.225775,-0.004741,0.005249,0.249945,0,0);-ms-transform:matrix(0.225775,-0.004741,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225775,-0.004741,0.005249,0.249945,0,0);}
.m25e5_c00001{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.m1a8f_c00001{transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);}
.m1873_c00001{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m1b61_c00001{transform:matrix(0.225879,-0.004292,0.004749,0.249955,0,0);-ms-transform:matrix(0.225879,-0.004292,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225879,-0.004292,0.004749,0.249955,0,0);}
.m906_c00001{transform:matrix(0.225882,-0.008592,0.009503,0.249819,0,0);-ms-transform:matrix(0.225882,-0.008592,0.009503,0.249819,0,0);-webkit-transform:matrix(0.225882,-0.008592,0.009503,0.249819,0,0);}
.m13f4_c00001{transform:matrix(0.225909,-0.005874,0.006498,0.249916,0,0);-ms-transform:matrix(0.225909,-0.005874,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225909,-0.005874,0.006498,0.249916,0,0);}
.mf41_c00001{transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225915,0.000000,0.000000,0.250000,0,0);}
.m2214_c00001{transform:matrix(0.225915,-0.004970,0.005499,0.249940,0,0);-ms-transform:matrix(0.225915,-0.004970,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225915,-0.004970,0.005499,0.249940,0,0);}
.m1720_c00001{transform:matrix(0.225924,-0.005874,0.006498,0.249916,0,0);-ms-transform:matrix(0.225924,-0.005874,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225924,-0.005874,0.006498,0.249916,0,0);}
.m1dcb_c00001{transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);}
.m107c_c00001{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m878_c00001{transform:matrix(0.225947,-0.008595,0.009503,0.249819,0,0);-ms-transform:matrix(0.225947,-0.008595,0.009503,0.249819,0,0);-webkit-transform:matrix(0.225947,-0.008595,0.009503,0.249819,0,0);}
.m217c_c00001{transform:matrix(0.225956,0.006327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225956,0.006327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225956,0.006327,-0.006997,0.249902,0,0);}
.ma83_c00001{transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);}
.m2127_c00001{transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);}
.m205a_c00001{transform:matrix(0.225996,-0.007006,0.007746,0.249880,0,0);-ms-transform:matrix(0.225996,-0.007006,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225996,-0.007006,0.007746,0.249880,0,0);}
.m1a21_c00001{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2146_c00001{transform:matrix(0.226031,0.006329,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226031,0.006329,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226031,0.006329,-0.006997,0.249902,0,0);}
.m1757_c00001{transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);-ms-transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226044,-0.005877,0.006498,0.249916,0,0);}
.m22eb_c00001{transform:matrix(0.226051,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226051,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226051,0.003617,-0.003999,0.249968,0,0);}
.m8c5_c00001{transform:matrix(0.226070,-0.005426,0.005998,0.249928,0,0);-ms-transform:matrix(0.226070,-0.005426,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226070,-0.005426,0.005998,0.249928,0,0);}
.m28f1_c00001{transform:matrix(0.226090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226090,0.000000,0.000000,0.250000,0,0);}
.m20a_c00001{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m1100_c00001{transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226115,0.000000,0.000000,0.250000,0,0);}
.m1076_c00001{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m24d4_c00001{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.mf82_c00001{transform:matrix(0.226135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226135,0.000000,0.000000,0.250000,0,0);}
.mff5_c00001{transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226160,0.000000,0.000000,0.250000,0,0);}
.m3d1_c00001{transform:matrix(0.226168,-0.006785,0.007497,0.249888,0,0);-ms-transform:matrix(0.226168,-0.006785,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226168,-0.006785,0.007497,0.249888,0,0);}
.m24fc_c00001{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m13ae_c00001{transform:matrix(0.226194,-0.005881,0.006498,0.249916,0,0);-ms-transform:matrix(0.226194,-0.005881,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226194,-0.005881,0.006498,0.249916,0,0);}
.m78c_c00001{transform:matrix(0.226200,0.005203,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226200,0.005203,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226200,0.005203,-0.005748,0.249934,0,0);}
.m216c_c00001{transform:matrix(0.226201,0.006334,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226201,0.006334,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226201,0.006334,-0.006997,0.249902,0,0);}
.m112f_c00001{transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);}
.m286c_c00001{transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);}
.m1c8f_c00001{transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226285,0.000000,0.000000,0.250000,0,0);}
.m8e1_c00001{transform:matrix(0.226327,-0.007476,0.008254,0.249864,0,0);-ms-transform:matrix(0.226327,-0.007476,0.008254,0.249864,0,0);-webkit-transform:matrix(0.226327,-0.007476,0.008254,0.249864,0,0);}
.m1e92_c00001{transform:matrix(0.226335,-0.004527,0.004999,0.249950,0,0);-ms-transform:matrix(0.226335,-0.004527,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226335,-0.004527,0.004999,0.249950,0,0);}
.m24c6_c00001{transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);}
.m1fd3_c00001{transform:matrix(0.226359,-0.005659,0.006248,0.249922,0,0);-ms-transform:matrix(0.226359,-0.005659,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226359,-0.005659,0.006248,0.249922,0,0);}
.ma73_c00001{transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);}
.m23fc_c00001{transform:matrix(0.226390,-0.004981,0.005499,0.249940,0,0);-ms-transform:matrix(0.226390,-0.004981,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226390,-0.004981,0.005499,0.249940,0,0);}
.m2c9_c00001{transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);}
.m27f6_c00001{transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226430,0.000000,0.000000,0.250000,0,0);}
.m29ab_c00001{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m23dd_c00001{transform:matrix(0.226460,-0.004982,0.005499,0.249940,0,0);-ms-transform:matrix(0.226460,-0.004982,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226460,-0.004982,0.005499,0.249940,0,0);}
.m18a5_c00001{transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226505,0.000000,0.000000,0.250000,0,0);}
.m1772_c00001{transform:matrix(0.226508,-0.005889,0.006498,0.249916,0,0);-ms-transform:matrix(0.226508,-0.005889,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226508,-0.005889,0.006498,0.249916,0,0);}
.m1640_c00001{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.m1c9d_c00001{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m8f8_c00001{transform:matrix(0.226516,-0.008616,0.009503,0.249819,0,0);-ms-transform:matrix(0.226516,-0.008616,0.009503,0.249819,0,0);-webkit-transform:matrix(0.226516,-0.008616,0.009503,0.249819,0,0);}
.m14b4_c00001{transform:matrix(0.226516,0.007483,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226516,0.007483,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226516,0.007483,-0.008254,0.249864,0,0);}
.me91_c00001{transform:matrix(0.226518,0.003171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226518,0.003171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226518,0.003171,-0.003500,0.249976,0,0);}
.m401_c00001{transform:matrix(0.226520,-0.004757,0.005249,0.249945,0,0);-ms-transform:matrix(0.226520,-0.004757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226520,-0.004757,0.005249,0.249945,0,0);}
.me87_c00001{transform:matrix(0.226528,0.003171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226528,0.003171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226528,0.003171,-0.003500,0.249976,0,0);}
.m3f2_c00001{transform:matrix(0.226545,-0.004757,0.005249,0.249945,0,0);-ms-transform:matrix(0.226545,-0.004757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226545,-0.004757,0.005249,0.249945,0,0);}
.m2702_c00001{transform:matrix(0.226565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226565,0.000000,0.000000,0.250000,0,0);}
.m1f83_c00001{transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);}
.m25ba_c00001{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m135b_c00001{transform:matrix(0.226620,0.006572,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226620,0.006572,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226620,0.006572,-0.007247,0.249895,0,0);}
.m66e_c00001{transform:matrix(0.226624,-0.009301,0.010252,0.249790,0,0);-ms-transform:matrix(0.226624,-0.009301,0.010252,0.249790,0,0);-webkit-transform:matrix(0.226624,-0.009301,0.010252,0.249790,0,0);}
.m2383_c00001{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m21cc_c00001{transform:matrix(0.226630,-0.005212,0.005748,0.249934,0,0);-ms-transform:matrix(0.226630,-0.005212,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226630,-0.005212,0.005748,0.249934,0,0);}
.m1cbd_c00001{transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226635,0.000000,0.000000,0.250000,0,0);}
.mda6_c00001{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.m27af_c00001{transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226660,0.000000,0.000000,0.250000,0,0);}
.m544_c00001{transform:matrix(0.226666,0.002493,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226666,0.002493,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226666,0.002493,-0.002750,0.249985,0,0);}
.m2780_c00001{transform:matrix(0.226679,-0.003400,0.003750,0.249972,0,0);-ms-transform:matrix(0.226679,-0.003400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226679,-0.003400,0.003750,0.249972,0,0);}
.mdc_c00001{transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226690,0.000000,0.000000,0.250000,0,0);}
.mc38_c00001{transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);}
.mf16_c00001{transform:matrix(0.226745,0.004535,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226745,0.004535,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226745,0.004535,-0.004999,0.249950,0,0);}
.m1ca8_c00001{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m25c9_c00001{transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);}
.m253d_c00001{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.m283b_c00001{transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);-ms-transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226846,-0.002949,0.003250,0.249979,0,0);}
.mf37_c00001{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m25a4_c00001{transform:matrix(0.226896,-0.002496,0.002750,0.249985,0,0);-ms-transform:matrix(0.226896,-0.002496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226896,-0.002496,0.002750,0.249985,0,0);}
.m1925_c00001{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m1e7c_c00001{transform:matrix(0.226913,-0.005900,0.006498,0.249916,0,0);-ms-transform:matrix(0.226913,-0.005900,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226913,-0.005900,0.006498,0.249916,0,0);}
.m1643_c00001{transform:matrix(0.226930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226930,0.000000,0.000000,0.250000,0,0);}
.m1be5_c00001{transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226980,0.000000,0.000000,0.250000,0,0);}
.m2170_c00001{transform:matrix(0.226996,0.006356,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226996,0.006356,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226996,0.006356,-0.006997,0.249902,0,0);}
.m24c5_c00001{transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227010,0.000000,0.000000,0.250000,0,0);}
.m2919_c00001{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.m27d8_c00001{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m1470_c00001{transform:matrix(0.227031,0.007500,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227031,0.007500,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227031,0.007500,-0.008254,0.249864,0,0);}
.m1c1e_c00001{transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227040,0.000000,0.000000,0.250000,0,0);}
.mce3_c00001{transform:matrix(0.227050,-0.006584,0.007247,0.249895,0,0);-ms-transform:matrix(0.227050,-0.006584,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227050,-0.006584,0.007247,0.249895,0,0);}
.me68_c00001{transform:matrix(0.227053,0.004087,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227053,0.004087,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227053,0.004087,-0.004499,0.249960,0,0);}
.m257_c00001{transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227065,0.000000,0.000000,0.250000,0,0);}
.m2171_c00001{transform:matrix(0.227066,0.006358,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227066,0.006358,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227066,0.006358,-0.006997,0.249902,0,0);}
.m1425_c00001{transform:matrix(0.227068,-0.005904,0.006498,0.249916,0,0);-ms-transform:matrix(0.227068,-0.005904,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227068,-0.005904,0.006498,0.249916,0,0);}
.m1e06_c00001{transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);}
.m5bd_c00001{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m2739_c00001{transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227105,0.000000,0.000000,0.250000,0,0);}
.m27c2_c00001{transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);}
.m736_c00001{transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);}
.m1cf7_c00001{transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);}
.m1978_c00001{transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227180,0.000000,0.000000,0.250000,0,0);}
.m2249_c00001{transform:matrix(0.227185,-0.004771,0.005249,0.249945,0,0);-ms-transform:matrix(0.227185,-0.004771,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227185,-0.004771,0.005249,0.249945,0,0);}
.m2814_c00001{transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);}
.m262c_c00001{transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227195,0.000000,0.000000,0.250000,0,0);}
.m14fa_c00001{transform:matrix(0.227196,0.007505,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227196,0.007505,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227196,0.007505,-0.008254,0.249864,0,0);}
.m2786_c00001{transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);}
.m2154_c00001{transform:matrix(0.227231,0.006362,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227231,0.006362,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227231,0.006362,-0.006997,0.249902,0,0);}
.m271d_c00001{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00001{transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227305,0.000000,0.000000,0.250000,0,0);}
.m14f0_c00001{transform:matrix(0.227306,0.007509,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227306,0.007509,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227306,0.007509,-0.008254,0.249864,0,0);}
.m6a1_c00001{transform:matrix(0.227324,-0.009330,0.010252,0.249790,0,0);-ms-transform:matrix(0.227324,-0.009330,0.010252,0.249790,0,0);-webkit-transform:matrix(0.227324,-0.009330,0.010252,0.249790,0,0);}
.m273f_c00001{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m1cd4_c00001{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m1db8_c00001{transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);}
.md57_c00001{transform:matrix(0.227389,-0.006594,0.007247,0.249895,0,0);-ms-transform:matrix(0.227389,-0.006594,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227389,-0.006594,0.007247,0.249895,0,0);}
.m1782_c00001{transform:matrix(0.227403,-0.005912,0.006498,0.249916,0,0);-ms-transform:matrix(0.227403,-0.005912,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227403,-0.005912,0.006498,0.249916,0,0);}
.m1ac_c00001{transform:matrix(0.227414,-0.003411,0.003750,0.249972,0,0);-ms-transform:matrix(0.227414,-0.003411,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227414,-0.003411,0.003750,0.249972,0,0);}
.m250d_c00001{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.m2312_c00001{transform:matrix(0.227428,0.004094,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227428,0.004094,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227428,0.004094,-0.004499,0.249960,0,0);}
.m1faf_c00001{transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227445,0.000000,0.000000,0.250000,0,0);}
.md94_c00001{transform:matrix(0.227459,0.002730,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227459,0.002730,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227459,0.002730,-0.003000,0.249982,0,0);}
.m1691_c00001{transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);}
.m74d_c00001{transform:matrix(0.227466,0.006369,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227466,0.006369,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227466,0.006369,-0.006997,0.249902,0,0);}
.m897_c00001{transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);-ms-transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227474,-0.004322,0.004749,0.249955,0,0);}
.md8_c00001{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.m10e0_c00001{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.m7d6_c00001{transform:matrix(0.227496,-0.006370,0.006997,0.249902,0,0);-ms-transform:matrix(0.227496,-0.006370,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227496,-0.006370,0.006997,0.249902,0,0);}
.m1d23_c00001{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2158_c00001{transform:matrix(0.227526,0.006371,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227526,0.006371,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227526,0.006371,-0.006997,0.249902,0,0);}
.m27c6_c00001{transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);}
.m27a4_c00001{transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);}
.m226e_c00001{transform:matrix(0.227583,-0.004096,0.004499,0.249960,0,0);-ms-transform:matrix(0.227583,-0.004096,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227583,-0.004096,0.004499,0.249960,0,0);}
.m24de_c00001{transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227590,0.000000,0.000000,0.250000,0,0);}
.m2685_c00001{transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227605,0.000000,0.000000,0.250000,0,0);}
.mff7_c00001{transform:matrix(0.227615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227615,0.000000,0.000000,0.250000,0,0);}
.m1d3a_c00001{transform:matrix(0.227620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227620,0.000000,0.000000,0.250000,0,0);}
.m121f_c00001{transform:matrix(0.227622,-0.006146,0.006748,0.249909,0,0);-ms-transform:matrix(0.227622,-0.006146,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227622,-0.006146,0.006748,0.249909,0,0);}
.m20be_c00001{transform:matrix(0.227644,0.005691,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227644,0.005691,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227644,0.005691,-0.006248,0.249922,0,0);}
.m27e2_c00001{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m36f_c00001{transform:matrix(0.227686,-0.002960,0.003250,0.249979,0,0);-ms-transform:matrix(0.227686,-0.002960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227686,-0.002960,0.003250,0.249979,0,0);}
.me86_c00001{transform:matrix(0.227688,0.003188,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227688,0.003188,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227688,0.003188,-0.003500,0.249976,0,0);}
.m28c_c00001{transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);}
.m1b37_c00001{transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);}
.m6f4_c00001{transform:matrix(0.227719,0.005693,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227719,0.005693,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227719,0.005693,-0.006248,0.249922,0,0);}
.m2620_c00001{transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227730,0.000000,0.000000,0.250000,0,0);}
.m1c69_c00001{transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);}
.m201d_c00001{transform:matrix(0.227746,-0.007060,0.007746,0.249880,0,0);-ms-transform:matrix(0.227746,-0.007060,0.007746,0.249880,0,0);-webkit-transform:matrix(0.227746,-0.007060,0.007746,0.249880,0,0);}
.m1f8c_c00001{transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227760,0.000000,0.000000,0.250000,0,0);}
.m61d_c00001{transform:matrix(0.227779,-0.009804,0.010751,0.249769,0,0);-ms-transform:matrix(0.227779,-0.009804,0.010751,0.249769,0,0);-webkit-transform:matrix(0.227779,-0.009804,0.010751,0.249769,0,0);}
.m2543_c00001{transform:matrix(0.227794,-0.003417,0.003750,0.249972,0,0);-ms-transform:matrix(0.227794,-0.003417,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227794,-0.003417,0.003750,0.249972,0,0);}
.m1b52_c00001{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.m12ce_c00001{transform:matrix(0.227797,0.006151,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227797,0.006151,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227797,0.006151,-0.006748,0.249909,0,0);}
.m1f37_c00001{transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);}
.m2009_c00001{transform:matrix(0.227819,-0.005695,0.006248,0.249922,0,0);-ms-transform:matrix(0.227819,-0.005695,0.006248,0.249922,0,0);-webkit-transform:matrix(0.227819,-0.005695,0.006248,0.249922,0,0);}
.mce9_c00001{transform:matrix(0.227819,-0.006607,0.007247,0.249895,0,0);-ms-transform:matrix(0.227819,-0.006607,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227819,-0.006607,0.007247,0.249895,0,0);}
.m1af3_c00001{transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227820,0.000000,0.000000,0.250000,0,0);}
.m1ddd_c00001{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m2410_c00001{transform:matrix(0.227855,-0.005013,0.005499,0.249940,0,0);-ms-transform:matrix(0.227855,-0.005013,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227855,-0.005013,0.005499,0.249940,0,0);}
.m23ff_c00001{transform:matrix(0.227865,-0.005013,0.005499,0.249940,0,0);-ms-transform:matrix(0.227865,-0.005013,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227865,-0.005013,0.005499,0.249940,0,0);}
.m1a25_c00001{transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);}
.mf03_c00001{transform:matrix(0.227886,0.002963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227886,0.002963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227886,0.002963,-0.003250,0.249979,0,0);}
.mfbb_c00001{transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227890,0.000000,0.000000,0.250000,0,0);}
.m2185_c00001{transform:matrix(0.227891,0.006381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227891,0.006381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227891,0.006381,-0.006997,0.249902,0,0);}
.m170a_c00001{transform:matrix(0.227903,-0.005925,0.006498,0.249916,0,0);-ms-transform:matrix(0.227903,-0.005925,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227903,-0.005925,0.006498,0.249916,0,0);}
.mfdf_c00001{transform:matrix(0.227905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227905,0.000000,0.000000,0.250000,0,0);}
.m1f15_c00001{transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227930,0.000000,0.000000,0.250000,0,0);}
.m23be_c00001{transform:matrix(0.227935,-0.005015,0.005499,0.249940,0,0);-ms-transform:matrix(0.227935,-0.005015,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227935,-0.005015,0.005499,0.249940,0,0);}
.m277b_c00001{transform:matrix(0.227954,-0.003419,0.003750,0.249972,0,0);-ms-transform:matrix(0.227954,-0.003419,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227954,-0.003419,0.003750,0.249972,0,0);}
.m1494_c00001{transform:matrix(0.227961,0.007530,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227961,0.007530,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227961,0.007530,-0.008254,0.249864,0,0);}
.m12ab_c00001{transform:matrix(0.227965,0.005243,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227965,0.005243,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227965,0.005243,-0.005748,0.249934,0,0);}
.md0_c00001{transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);}
.md10_c00001{transform:matrix(0.227969,-0.006611,0.007247,0.249895,0,0);-ms-transform:matrix(0.227969,-0.006611,0.007247,0.249895,0,0);-webkit-transform:matrix(0.227969,-0.006611,0.007247,0.249895,0,0);}
.m240b_c00001{transform:matrix(0.227970,-0.005015,0.005499,0.249940,0,0);-ms-transform:matrix(0.227970,-0.005015,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227970,-0.005015,0.005499,0.249940,0,0);}
.m1929_c00001{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m61e_c00001{transform:matrix(0.227994,-0.009814,0.010751,0.249769,0,0);-ms-transform:matrix(0.227994,-0.009814,0.010751,0.249769,0,0);-webkit-transform:matrix(0.227994,-0.009814,0.010751,0.249769,0,0);}
.m29ac_c00001{transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);}
.m1d10_c00001{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma88_c00001{transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228005,0.000000,0.000000,0.250000,0,0);}
.ma8_c00001{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00001{transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);-ms-transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228016,-0.003648,0.003999,0.249968,0,0);}
.m16ac_c00001{transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228020,0.000000,0.000000,0.250000,0,0);}
.m1dce_c00001{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.m1c54_c00001{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m1780_c00001{transform:matrix(0.228063,-0.005930,0.006498,0.249916,0,0);-ms-transform:matrix(0.228063,-0.005930,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228063,-0.005930,0.006498,0.249916,0,0);}
.m289b_c00001{transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228065,0.000000,0.000000,0.250000,0,0);}
.md50_c00001{transform:matrix(0.228084,-0.006614,0.007247,0.249895,0,0);-ms-transform:matrix(0.228084,-0.006614,0.007247,0.249895,0,0);-webkit-transform:matrix(0.228084,-0.006614,0.007247,0.249895,0,0);}
.m247f_c00001{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.mfdd_c00001{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m299a_c00001{transform:matrix(0.228101,-0.003650,0.003999,0.249968,0,0);-ms-transform:matrix(0.228101,-0.003650,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228101,-0.003650,0.003999,0.249968,0,0);}
.m24e3_c00001{transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);}
.m13c8_c00001{transform:matrix(0.228128,-0.005931,0.006498,0.249916,0,0);-ms-transform:matrix(0.228128,-0.005931,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228128,-0.005931,0.006498,0.249916,0,0);}
.m1269_c00001{transform:matrix(0.228157,-0.006160,0.006748,0.249909,0,0);-ms-transform:matrix(0.228157,-0.006160,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228157,-0.006160,0.006748,0.249909,0,0);}
.m2617_c00001{transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);}
.m1ede_c00001{transform:matrix(0.228228,-0.005934,0.006498,0.249916,0,0);-ms-transform:matrix(0.228228,-0.005934,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228228,-0.005934,0.006498,0.249916,0,0);}
.m1174_c00001{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m19e7_c00001{transform:matrix(0.228246,-0.003652,0.003999,0.249968,0,0);-ms-transform:matrix(0.228246,-0.003652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228246,-0.003652,0.003999,0.249968,0,0);}
.m1bf7_c00001{transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228295,0.000000,0.000000,0.250000,0,0);}
.mf18_c00001{transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228299,0.004566,-0.004999,0.249950,0,0);}
.mf5b_c00001{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m1018_c00001{transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);}
.m2134_c00001{transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228306,0.006393,-0.006997,0.249902,0,0);}
.m14a2_c00001{transform:matrix(0.228310,0.007542,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228310,0.007542,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228310,0.007542,-0.008254,0.249864,0,0);}
.m124d_c00001{transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);-ms-transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228312,-0.006164,0.006748,0.249909,0,0);}
.mc4_c00001{transform:matrix(0.228360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228360,0.000000,0.000000,0.250000,0,0);}
.m200e_c00001{transform:matrix(0.228370,-0.007079,0.007746,0.249880,0,0);-ms-transform:matrix(0.228370,-0.007079,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228370,-0.007079,0.007746,0.249880,0,0);}
.m12f1_c00001{transform:matrix(0.228387,0.006166,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228387,0.006166,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228387,0.006166,-0.006748,0.249909,0,0);}
.mf80_c00001{transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);}
.mc53_c00001{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m647_c00001{transform:matrix(0.228403,-0.009374,0.010252,0.249790,0,0);-ms-transform:matrix(0.228403,-0.009374,0.010252,0.249790,0,0);-webkit-transform:matrix(0.228403,-0.009374,0.010252,0.249790,0,0);}
.m2932_c00001{transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228405,0.000000,0.000000,0.250000,0,0);}
.m1482_c00001{transform:matrix(0.228420,0.007545,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228420,0.007545,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228420,0.007545,-0.008254,0.249864,0,0);}
.m1ec6_c00001{transform:matrix(0.228438,-0.005939,0.006498,0.249916,0,0);-ms-transform:matrix(0.228438,-0.005939,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228438,-0.005939,0.006498,0.249916,0,0);}
.m23a7_c00001{transform:matrix(0.228455,-0.005026,0.005499,0.249940,0,0);-ms-transform:matrix(0.228455,-0.005026,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228455,-0.005026,0.005499,0.249940,0,0);}
.m1aef_c00001{transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228460,0.000000,0.000000,0.250000,0,0);}
.m23e5_c00001{transform:matrix(0.228465,-0.005026,0.005499,0.249940,0,0);-ms-transform:matrix(0.228465,-0.005026,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228465,-0.005026,0.005499,0.249940,0,0);}
.m15d_c00001{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m2196_c00001{transform:matrix(0.228480,0.004798,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228480,0.004798,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228480,0.004798,-0.005249,0.249945,0,0);}
.m19cb_c00001{transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228480,0.000000,0.000000,0.250000,0,0);}
.m2aa_c00001{transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);}
.m22d6_c00001{transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228491,0.003656,-0.003999,0.249968,0,0);}
.m2007_c00001{transform:matrix(0.228514,-0.005713,0.006248,0.249922,0,0);-ms-transform:matrix(0.228514,-0.005713,0.006248,0.249922,0,0);-webkit-transform:matrix(0.228514,-0.005713,0.006248,0.249922,0,0);}
.m1e00_c00001{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.m23ad_c00001{transform:matrix(0.228525,-0.005028,0.005499,0.249940,0,0);-ms-transform:matrix(0.228525,-0.005028,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228525,-0.005028,0.005499,0.249940,0,0);}
.m2354_c00001{transform:matrix(0.228528,0.004114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228528,0.004114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228528,0.004114,-0.004499,0.249960,0,0);}
.m156e_c00001{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.m28fd_c00001{transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);}
.mdf_c00001{transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228580,0.000000,0.000000,0.250000,0,0);}
.m2937_c00001{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m182f_c00001{transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);}
.m12c2_c00001{transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);}
.m1585_c00001{transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228665,0.000000,0.000000,0.250000,0,0);}
.m21fb_c00001{transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);-ms-transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);}
.m19c8_c00001{transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);}
.m2693_c00001{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m2816_c00001{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.mb67_c00001{transform:matrix(0.228702,-0.008241,0.009003,0.249838,0,0);-ms-transform:matrix(0.228702,-0.008241,0.009003,0.249838,0,0);-webkit-transform:matrix(0.228702,-0.008241,0.009003,0.249838,0,0);}
.m266c_c00001{transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228720,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228730,0.000000,0.000000,0.250000,0,0);}
.ma4f_c00001{transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228745,0.000000,0.000000,0.250000,0,0);}
.m1181_c00001{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m148c_c00001{transform:matrix(0.228755,0.007556,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228755,0.007556,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228755,0.007556,-0.008254,0.249864,0,0);}
.m2585_c00001{transform:matrix(0.228756,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228756,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228756,-0.002974,0.003250,0.249979,0,0);}
.m24dc_c00001{transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228765,0.000000,0.000000,0.250000,0,0);}
.m2933_c00001{transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);}
.m524_c00001{transform:matrix(0.228796,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228796,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228796,0.002517,-0.002750,0.249985,0,0);}
.m1de1_c00001{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m2847_c00001{transform:matrix(0.228801,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228801,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228801,-0.002974,0.003250,0.249979,0,0);}
.m29c9_c00001{transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228805,0.000000,0.000000,0.250000,0,0);}
.m1080_c00001{transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);}
.m20c3_c00001{transform:matrix(0.228814,0.005720,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228814,0.005720,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228814,0.005720,-0.006248,0.249922,0,0);}
.m845_c00001{transform:matrix(0.228820,-0.006407,0.006997,0.249902,0,0);-ms-transform:matrix(0.228820,-0.006407,0.006997,0.249902,0,0);-webkit-transform:matrix(0.228820,-0.006407,0.006997,0.249902,0,0);}
.m71f_c00001{transform:matrix(0.228829,0.005721,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228829,0.005721,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228829,0.005721,-0.006248,0.249922,0,0);}
.m2716_c00001{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m1a3d_c00001{transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);}
.m1d26_c00001{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m91b_c00001{transform:matrix(0.228919,-0.008708,0.009503,0.249819,0,0);-ms-transform:matrix(0.228919,-0.008708,0.009503,0.249819,0,0);-webkit-transform:matrix(0.228919,-0.008708,0.009503,0.249819,0,0);}
.m26e1_c00001{transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228935,0.000000,0.000000,0.250000,0,0);}
.m1c82_c00001{transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);}
.m18ed_c00001{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m18e3_c00001{transform:matrix(0.228960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228960,0.000000,0.000000,0.250000,0,0);}
.m2954_c00001{transform:matrix(0.228969,-0.002748,0.003000,0.249982,0,0);-ms-transform:matrix(0.228969,-0.002748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228969,-0.002748,0.003000,0.249982,0,0);}
.m27c0_c00001{transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228970,0.000000,0.000000,0.250000,0,0);}
.m20bb_c00001{transform:matrix(0.228983,0.005725,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228983,0.005725,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228983,0.005725,-0.006248,0.249922,0,0);}
.m1dbb_c00001{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1d2b_c00001{transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229005,0.000000,0.000000,0.250000,0,0);}
.m26f7_c00001{transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);}
.m26b3_c00001{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m24b1_c00001{transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229035,0.000000,0.000000,0.250000,0,0);}
.m1dc0_c00001{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m2184_c00001{transform:matrix(0.229055,0.006414,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229055,0.006414,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229055,0.006414,-0.006997,0.249902,0,0);}
.m22d2_c00001{transform:matrix(0.229056,0.003665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229056,0.003665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229056,0.003665,-0.003999,0.249968,0,0);}
.m2d8_c00001{transform:matrix(0.229061,-0.002520,0.002750,0.249985,0,0);-ms-transform:matrix(0.229061,-0.002520,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229061,-0.002520,0.002750,0.249985,0,0);}
.m930_c00001{transform:matrix(0.229079,-0.008714,0.009503,0.249819,0,0);-ms-transform:matrix(0.229079,-0.008714,0.009503,0.249819,0,0);-webkit-transform:matrix(0.229079,-0.008714,0.009503,0.249819,0,0);}
.mecc_c00001{transform:matrix(0.229088,0.003207,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229088,0.003207,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229088,0.003207,-0.003500,0.249976,0,0);}
.m1114_c00001{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m2360_c00001{transform:matrix(0.229133,0.004124,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229133,0.004124,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229133,0.004124,-0.004499,0.249960,0,0);}
.m118e_c00001{transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229140,0.000000,0.000000,0.250000,0,0);}
.m1c92_c00001{transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);}
.m1397_c00001{transform:matrix(0.229168,-0.005958,0.006498,0.249916,0,0);-ms-transform:matrix(0.229168,-0.005958,0.006498,0.249916,0,0);-webkit-transform:matrix(0.229168,-0.005958,0.006498,0.249916,0,0);}
.ma79_c00001{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m1975_c00001{transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229215,0.000000,0.000000,0.250000,0,0);}
.m2267_c00001{transform:matrix(0.229299,-0.005503,0.005998,0.249928,0,0);-ms-transform:matrix(0.229299,-0.005503,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229299,-0.005503,0.005998,0.249928,0,0);}
.m1797_c00001{transform:matrix(0.229303,-0.004127,0.004499,0.249960,0,0);-ms-transform:matrix(0.229303,-0.004127,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229303,-0.004127,0.004499,0.249960,0,0);}
.m3f3_c00001{transform:matrix(0.229384,-0.004817,0.005249,0.249945,0,0);-ms-transform:matrix(0.229384,-0.004817,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229384,-0.004817,0.005249,0.249945,0,0);}
.m1dde_c00001{transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);}
.mf07_c00001{transform:matrix(0.229391,0.002982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229391,0.002982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229391,0.002982,-0.003250,0.249979,0,0);}
.m14a8_c00001{transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229395,0.007578,-0.008254,0.249864,0,0);}
.med2_c00001{transform:matrix(0.229408,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229408,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229408,0.003212,-0.003500,0.249976,0,0);}
.m630_c00001{transform:matrix(0.229408,-0.009874,0.010751,0.249769,0,0);-ms-transform:matrix(0.229408,-0.009874,0.010751,0.249769,0,0);-webkit-transform:matrix(0.229408,-0.009874,0.010751,0.249769,0,0);}
.m1d17_c00001{transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);}
.m250_c00001{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.mbfa_c00001{transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);}
.m5f8_c00001{transform:matrix(0.229522,-0.009650,0.010501,0.249779,0,0);-ms-transform:matrix(0.229522,-0.009650,0.010501,0.249779,0,0);-webkit-transform:matrix(0.229522,-0.009650,0.010501,0.249779,0,0);}
.m278e_c00001{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m2c1_c00001{transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229540,0.000000,0.000000,0.250000,0,0);}
.m190d_c00001{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m8f2_c00001{transform:matrix(0.229564,-0.008732,0.009503,0.249819,0,0);-ms-transform:matrix(0.229564,-0.008732,0.009503,0.249819,0,0);-webkit-transform:matrix(0.229564,-0.008732,0.009503,0.249819,0,0);}
.m10a0_c00001{transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);}
.m2839_c00001{transform:matrix(0.229571,-0.002984,0.003250,0.249979,0,0);-ms-transform:matrix(0.229571,-0.002984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229571,-0.002984,0.003250,0.249979,0,0);}
.m3c9_c00001{transform:matrix(0.229590,-0.007584,0.008254,0.249864,0,0);-ms-transform:matrix(0.229590,-0.007584,0.008254,0.249864,0,0);-webkit-transform:matrix(0.229590,-0.007584,0.008254,0.249864,0,0);}
.m1847_c00001{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.mc11_c00001{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m1ccd_c00001{transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229655,0.000000,0.000000,0.250000,0,0);}
.m158c_c00001{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m115d_c00001{transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229680,0.000000,0.000000,0.250000,0,0);}
.m22a5_c00001{transform:matrix(0.229766,0.003676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229766,0.003676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229766,0.003676,-0.003999,0.249968,0,0);}
.m18fd_c00001{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m185f_c00001{transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);}
.mfba_c00001{transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229815,0.000000,0.000000,0.250000,0,0);}
.m4b3_c00001{transform:matrix(0.229817,-0.007362,0.008004,0.249872,0,0);-ms-transform:matrix(0.229817,-0.007362,0.008004,0.249872,0,0);-webkit-transform:matrix(0.229817,-0.007362,0.008004,0.249872,0,0);}
.m1fa9_c00001{transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229835,0.000000,0.000000,0.250000,0,0);}
.m221c_c00001{transform:matrix(0.229844,-0.005286,0.005748,0.249934,0,0);-ms-transform:matrix(0.229844,-0.005286,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229844,-0.005286,0.005748,0.249934,0,0);}
.m24d9_c00001{transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);}
.m19ee_c00001{transform:matrix(0.229856,-0.003678,0.003999,0.249968,0,0);-ms-transform:matrix(0.229856,-0.003678,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229856,-0.003678,0.003999,0.249968,0,0);}
.m2913_c00001{transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229860,0.000000,0.000000,0.250000,0,0);}
.ma2c_c00001{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.m26dd_c00001{transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229880,0.000000,0.000000,0.250000,0,0);}
.m549_c00001{transform:matrix(0.229881,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229881,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229881,0.002529,-0.002750,0.249985,0,0);}
.m2112_c00001{transform:matrix(0.229940,0.006438,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229940,0.006438,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229940,0.006438,-0.006997,0.249902,0,0);}
.m86b_c00001{transform:matrix(0.229940,-0.006438,0.006997,0.249902,0,0);-ms-transform:matrix(0.229940,-0.006438,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229940,-0.006438,0.006997,0.249902,0,0);}
.m41c_c00001{transform:matrix(0.229944,-0.004829,0.005249,0.249945,0,0);-ms-transform:matrix(0.229944,-0.004829,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229944,-0.004829,0.005249,0.249945,0,0);}
.md6e_c00001{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m10cc_c00001{transform:matrix(0.229985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229985,0.000000,0.000000,0.250000,0,0);}
.maa0_c00001{transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229995,0.000000,0.000000,0.250000,0,0);}
.m27e3_c00001{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m633_c00001{transform:matrix(0.230007,-0.009900,0.010751,0.249769,0,0);-ms-transform:matrix(0.230007,-0.009900,0.010751,0.249769,0,0);-webkit-transform:matrix(0.230007,-0.009900,0.010751,0.249769,0,0);}
.m1365_c00001{transform:matrix(0.230018,0.006671,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230018,0.006671,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230018,0.006671,-0.007247,0.249895,0,0);}
.m25c1_c00001{transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230020,0.000000,0.000000,0.250000,0,0);}
.mc4d_c00001{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m1cee_c00001{transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230055,0.000000,0.000000,0.250000,0,0);}
.m27a7_c00001{transform:matrix(0.230090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230090,0.000000,0.000000,0.250000,0,0);}
.m2080_c00001{transform:matrix(0.230104,-0.007133,0.007746,0.249880,0,0);-ms-transform:matrix(0.230104,-0.007133,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230104,-0.007133,0.007746,0.249880,0,0);}
.m28d2_c00001{transform:matrix(0.230113,0.002761,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230113,0.002761,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230113,0.002761,-0.003000,0.249982,0,0);}
.m14b0_c00001{transform:matrix(0.230119,0.007602,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230119,0.007602,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230119,0.007602,-0.008254,0.249864,0,0);}
.m1a2f_c00001{transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);}
.m1145_c00001{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m1c83_c00001{transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230140,0.000000,0.000000,0.250000,0,0);}
.m1968_c00001{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m12f9_c00001{transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230151,0.006214,-0.006748,0.249909,0,0);}
.m1e64_c00001{transform:matrix(0.230157,-0.005984,0.006498,0.249916,0,0);-ms-transform:matrix(0.230157,-0.005984,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230157,-0.005984,0.006498,0.249916,0,0);}
.m2673_c00001{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m594_c00001{transform:matrix(0.230176,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230176,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230176,0.002532,-0.002750,0.249985,0,0);}
.m220e_c00001{transform:matrix(0.230179,-0.005064,0.005499,0.249940,0,0);-ms-transform:matrix(0.230179,-0.005064,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230179,-0.005064,0.005499,0.249940,0,0);}
.m27ff_c00001{transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);}
.m223a_c00001{transform:matrix(0.230184,-0.004834,0.005249,0.249945,0,0);-ms-transform:matrix(0.230184,-0.004834,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230184,-0.004834,0.005249,0.249945,0,0);}
.md53_c00001{transform:matrix(0.230193,-0.006676,0.007247,0.249895,0,0);-ms-transform:matrix(0.230193,-0.006676,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230193,-0.006676,0.007247,0.249895,0,0);}
.m1fb0_c00001{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m18a3_c00001{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.m1cfc_c00001{transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230240,0.000000,0.000000,0.250000,0,0);}
.m2781_c00001{transform:matrix(0.230244,-0.003454,0.003750,0.249972,0,0);-ms-transform:matrix(0.230244,-0.003454,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230244,-0.003454,0.003750,0.249972,0,0);}
.m2752_c00001{transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);}
.m188_c00001{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2133_c00001{transform:matrix(0.230270,0.006448,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230270,0.006448,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230270,0.006448,-0.006997,0.249902,0,0);}
.m1dd2_c00001{transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230270,0.000000,0.000000,0.250000,0,0);}
.m1be_c00001{transform:matrix(0.230286,-0.003685,0.003999,0.249968,0,0);-ms-transform:matrix(0.230286,-0.003685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230286,-0.003685,0.003999,0.249968,0,0);}
.m1e8f_c00001{transform:matrix(0.230304,-0.004606,0.004999,0.249950,0,0);-ms-transform:matrix(0.230304,-0.004606,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230304,-0.004606,0.004999,0.249950,0,0);}
.m1574_c00001{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.md09_c00001{transform:matrix(0.230318,-0.006679,0.007247,0.249895,0,0);-ms-transform:matrix(0.230318,-0.006679,0.007247,0.249895,0,0);-webkit-transform:matrix(0.230318,-0.006679,0.007247,0.249895,0,0);}
.m209e_c00001{transform:matrix(0.230319,-0.007140,0.007746,0.249880,0,0);-ms-transform:matrix(0.230319,-0.007140,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230319,-0.007140,0.007746,0.249880,0,0);}
.m157c_c00001{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.mfe2_c00001{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m1b19_c00001{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.m240a_c00001{transform:matrix(0.230374,-0.005068,0.005499,0.249940,0,0);-ms-transform:matrix(0.230374,-0.005068,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230374,-0.005068,0.005499,0.249940,0,0);}
.m2714_c00001{transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);}
.m21a3_c00001{transform:matrix(0.230419,0.004839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230419,0.004839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230419,0.004839,-0.005249,0.249945,0,0);}
.mfe5_c00001{transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230430,0.000000,0.000000,0.250000,0,0);}
.ma13_c00001{transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);}
.m15e0_c00001{transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);}
.m2272_c00001{transform:matrix(0.230474,-0.005301,0.005748,0.249934,0,0);-ms-transform:matrix(0.230474,-0.005301,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230474,-0.005301,0.005748,0.249934,0,0);}
.m2b7_c00001{transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);}
.m1d20_c00001{transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);}
.m1566_c00001{transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230520,0.000000,0.000000,0.250000,0,0);}
.m3c1_c00001{transform:matrix(0.230535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230535,0.000000,0.000000,0.250000,0,0);}
.m2318_c00001{transform:matrix(0.230543,0.004150,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230543,0.004150,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230543,0.004150,-0.004499,0.249960,0,0);}
.m15b4_c00001{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m314_c00001{transform:matrix(0.230561,-0.002997,0.003250,0.249979,0,0);-ms-transform:matrix(0.230561,-0.002997,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230561,-0.002997,0.003250,0.249979,0,0);}
.m13d_c00001{transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);}
.m185a_c00001{transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);}
.m6e5_c00001{transform:matrix(0.230603,0.005765,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230603,0.005765,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230603,0.005765,-0.006248,0.249922,0,0);}
.m18c_c00001{transform:matrix(0.230610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230610,0.000000,0.000000,0.250000,0,0);}
.m25eb_c00001{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.mfce_c00001{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.ma08_c00001{transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230740,0.000000,0.000000,0.250000,0,0);}
.m1aa8_c00001{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.m1cf5_c00001{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m10f0_c00001{transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230780,0.000000,0.000000,0.250000,0,0);}
.m2057_c00001{transform:matrix(0.230794,-0.007155,0.007746,0.249880,0,0);-ms-transform:matrix(0.230794,-0.007155,0.007746,0.249880,0,0);-webkit-transform:matrix(0.230794,-0.007155,0.007746,0.249880,0,0);}
.m15ea_c00001{transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230795,0.000000,0.000000,0.250000,0,0);}
.m1784_c00001{transform:matrix(0.230837,-0.006002,0.006498,0.249916,0,0);-ms-transform:matrix(0.230837,-0.006002,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230837,-0.006002,0.006498,0.249916,0,0);}
.m74b_c00001{transform:matrix(0.230845,0.006464,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230845,0.006464,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230845,0.006464,-0.006997,0.249902,0,0);}
.m2999_c00001{transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);-ms-transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230850,-0.003694,0.003999,0.249968,0,0);}
.m83b_c00001{transform:matrix(0.230855,-0.006464,0.006997,0.249902,0,0);-ms-transform:matrix(0.230855,-0.006464,0.006997,0.249902,0,0);-webkit-transform:matrix(0.230855,-0.006464,0.006997,0.249902,0,0);}
.m1ae0_c00001{transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);}
.m271f_c00001{transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230920,0.000000,0.000000,0.250000,0,0);}
.m18d2_c00001{transform:matrix(0.230940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230940,0.000000,0.000000,0.250000,0,0);}
.m250a_c00001{transform:matrix(0.230960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230960,0.000000,0.000000,0.250000,0,0);}
.m22ad_c00001{transform:matrix(0.231000,0.003696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231000,0.003696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231000,0.003696,-0.003999,0.249968,0,0);}
.m23ec_c00001{transform:matrix(0.231019,-0.005082,0.005499,0.249940,0,0);-ms-transform:matrix(0.231019,-0.005082,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231019,-0.005082,0.005499,0.249940,0,0);}
.m1ac6_c00001{transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);}
.m1890_c00001{transform:matrix(0.231040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231040,0.000000,0.000000,0.250000,0,0);}
.m11eb_c00001{transform:matrix(0.231044,-0.005083,0.005499,0.249940,0,0);-ms-transform:matrix(0.231044,-0.005083,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231044,-0.005083,0.005499,0.249940,0,0);}
.m16dd_c00001{transform:matrix(0.231046,-0.007863,0.008504,0.249855,0,0);-ms-transform:matrix(0.231046,-0.007863,0.008504,0.249855,0,0);-webkit-transform:matrix(0.231046,-0.007863,0.008504,0.249855,0,0);}
.m1d85_c00001{transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);}
.mffc_c00001{transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231055,0.000000,0.000000,0.250000,0,0);}
.m1a9c_c00001{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m2980_c00001{transform:matrix(0.231119,-0.004622,0.004999,0.249950,0,0);-ms-transform:matrix(0.231119,-0.004622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231119,-0.004622,0.004999,0.249950,0,0);}
.m219f_c00001{transform:matrix(0.231174,0.004855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231174,0.004855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231174,0.004855,-0.005249,0.249945,0,0);}
.m190c_c00001{transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231185,0.000000,0.000000,0.250000,0,0);}
.mbc3_c00001{transform:matrix(0.231186,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231186,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231186,0.002543,-0.002750,0.249985,0,0);}
.m173b_c00001{transform:matrix(0.231207,-0.006011,0.006498,0.249916,0,0);-ms-transform:matrix(0.231207,-0.006011,0.006498,0.249916,0,0);-webkit-transform:matrix(0.231207,-0.006011,0.006498,0.249916,0,0);}
.m1507_c00001{transform:matrix(0.231219,0.007638,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231219,0.007638,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231219,0.007638,-0.008254,0.249864,0,0);}
.m598_c00001{transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);}
.m25ec_c00001{transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);}
.m20c1_c00001{transform:matrix(0.231248,0.005781,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231248,0.005781,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231248,0.005781,-0.006248,0.249922,0,0);}
.m191e_c00001{transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);}
.m6a0_c00001{transform:matrix(0.231280,-0.009492,0.010252,0.249790,0,0);-ms-transform:matrix(0.231280,-0.009492,0.010252,0.249790,0,0);-webkit-transform:matrix(0.231280,-0.009492,0.010252,0.249790,0,0);}
.m1575_c00001{transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);}
.m2147_c00001{transform:matrix(0.231309,0.006477,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231309,0.006477,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231309,0.006477,-0.006997,0.249902,0,0);}
.m28ce_c00001{transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231355,0.000000,0.000000,0.250000,0,0);}
.m296e_c00001{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m2906_c00001{transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231390,0.000000,0.000000,0.250000,0,0);}
.m83f_c00001{transform:matrix(0.231394,-0.006479,0.006997,0.249902,0,0);-ms-transform:matrix(0.231394,-0.006479,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231394,-0.006479,0.006997,0.249902,0,0);}
.m25d3_c00001{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m2332_c00001{transform:matrix(0.231408,0.004165,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231408,0.004165,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231408,0.004165,-0.004499,0.249960,0,0);}
.m158e_c00001{transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);}
.m92c_c00001{transform:matrix(0.231473,-0.008805,0.009503,0.249819,0,0);-ms-transform:matrix(0.231473,-0.008805,0.009503,0.249819,0,0);-webkit-transform:matrix(0.231473,-0.008805,0.009503,0.249819,0,0);}
.m11a5_c00001{transform:matrix(0.231474,-0.005092,0.005499,0.249940,0,0);-ms-transform:matrix(0.231474,-0.005092,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231474,-0.005092,0.005499,0.249940,0,0);}
.m421_c00001{transform:matrix(0.231489,-0.004861,0.005249,0.249945,0,0);-ms-transform:matrix(0.231489,-0.004861,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231489,-0.004861,0.005249,0.249945,0,0);}
.m1c24_c00001{transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);}
.mcc5_c00001{transform:matrix(0.231493,-0.006713,0.007247,0.249895,0,0);-ms-transform:matrix(0.231493,-0.006713,0.007247,0.249895,0,0);-webkit-transform:matrix(0.231493,-0.006713,0.007247,0.249895,0,0);}
.m1cf3_c00001{transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231510,0.000000,0.000000,0.250000,0,0);}
.m197f_c00001{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m624_c00001{transform:matrix(0.231531,-0.009966,0.010751,0.249769,0,0);-ms-transform:matrix(0.231531,-0.009966,0.010751,0.249769,0,0);-webkit-transform:matrix(0.231531,-0.009966,0.010751,0.249769,0,0);}
.m1678_c00001{transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231535,0.000000,0.000000,0.250000,0,0);}
.m2446_c00001{transform:matrix(0.231539,-0.005094,0.005499,0.249940,0,0);-ms-transform:matrix(0.231539,-0.005094,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231539,-0.005094,0.005499,0.249940,0,0);}
.m296f_c00001{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m186a_c00001{transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);}
.m5e1_c00001{transform:matrix(0.231615,-0.010433,0.011250,0.249747,0,0);-ms-transform:matrix(0.231615,-0.010433,0.011250,0.249747,0,0);-webkit-transform:matrix(0.231615,-0.010433,0.011250,0.249747,0,0);}
.m2316_c00001{transform:matrix(0.231642,0.004170,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231642,0.004170,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231642,0.004170,-0.004499,0.249960,0,0);}
.m1acd_c00001{transform:matrix(0.231655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231655,0.000000,0.000000,0.250000,0,0);}
.m23ab_c00001{transform:matrix(0.231659,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231659,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231659,-0.005096,0.005499,0.249940,0,0);}
.m10aa_c00001{transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231660,0.000000,0.000000,0.250000,0,0);}
.m2422_c00001{transform:matrix(0.231664,-0.005097,0.005499,0.249940,0,0);-ms-transform:matrix(0.231664,-0.005097,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231664,-0.005097,0.005499,0.249940,0,0);}
.m1569_c00001{transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231680,0.000000,0.000000,0.250000,0,0);}
.m743_c00001{transform:matrix(0.231694,0.006487,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231694,0.006487,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231694,0.006487,-0.006997,0.249902,0,0);}
.m28b0_c00001{transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);}
.m1de0_c00001{transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);}
.m159a_c00001{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m264c_c00001{transform:matrix(0.231795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231795,0.000000,0.000000,0.250000,0,0);}
.m1646_c00001{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.meaa_c00001{transform:matrix(0.231812,0.003245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231812,0.003245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231812,0.003245,-0.003500,0.249976,0,0);}
.m25ef_c00001{transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);}
.m18d8_c00001{transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);}
.m21ee_c00001{transform:matrix(0.231858,-0.004405,0.004749,0.249955,0,0);-ms-transform:matrix(0.231858,-0.004405,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231858,-0.004405,0.004749,0.249955,0,0);}
.m844_c00001{transform:matrix(0.231864,-0.006492,0.006997,0.249902,0,0);-ms-transform:matrix(0.231864,-0.006492,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231864,-0.006492,0.006997,0.249902,0,0);}
.m1d68_c00001{transform:matrix(0.231870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231870,0.000000,0.000000,0.250000,0,0);}
.m10c7_c00001{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m858_c00001{transform:matrix(0.231884,-0.006493,0.006997,0.249902,0,0);-ms-transform:matrix(0.231884,-0.006493,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231884,-0.006493,0.006997,0.249902,0,0);}
.m1a3_c00001{transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);}
.m293d_c00001{transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);}
.m309_c00001{transform:matrix(0.231900,-0.003015,0.003250,0.249979,0,0);-ms-transform:matrix(0.231900,-0.003015,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231900,-0.003015,0.003250,0.249979,0,0);}
.m22ff_c00001{transform:matrix(0.231902,0.004174,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231902,0.004174,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231902,0.004174,-0.004499,0.249960,0,0);}
.m1bc_c00001{transform:matrix(0.231925,-0.003711,0.003999,0.249968,0,0);-ms-transform:matrix(0.231925,-0.003711,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231925,-0.003711,0.003999,0.249968,0,0);}
.m1545_c00001{transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231945,0.000000,0.000000,0.250000,0,0);}
.md6d_c00001{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.m1a19_c00001{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m118f_c00001{transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00001{transform:matrix(0.231985,-0.003712,0.003999,0.249968,0,0);-ms-transform:matrix(0.231985,-0.003712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231985,-0.003712,0.003999,0.249968,0,0);}
.m1974_c00001{transform:matrix(0.232015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232015,0.000000,0.000000,0.250000,0,0);}
.m11d9_c00001{transform:matrix(0.232019,-0.005104,0.005499,0.249940,0,0);-ms-transform:matrix(0.232019,-0.005104,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232019,-0.005104,0.005499,0.249940,0,0);}
.m14bf_c00001{transform:matrix(0.232053,0.007665,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232053,0.007665,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232053,0.007665,-0.008254,0.249864,0,0);}
.m16e1_c00001{transform:matrix(0.232056,-0.007898,0.008504,0.249855,0,0);-ms-transform:matrix(0.232056,-0.007898,0.008504,0.249855,0,0);-webkit-transform:matrix(0.232056,-0.007898,0.008504,0.249855,0,0);}
.m270a_c00001{transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);}
.m2164_c00001{transform:matrix(0.232074,0.006498,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232074,0.006498,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232074,0.006498,-0.006997,0.249902,0,0);}
.m2804_c00001{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.m1583_c00001{transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);}
.m2944_c00001{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m2273_c00001{transform:matrix(0.232129,-0.005339,0.005748,0.249934,0,0);-ms-transform:matrix(0.232129,-0.005339,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232129,-0.005339,0.005748,0.249934,0,0);}
.m1ec7_c00001{transform:matrix(0.232137,-0.006036,0.006498,0.249916,0,0);-ms-transform:matrix(0.232137,-0.006036,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232137,-0.006036,0.006498,0.249916,0,0);}
.m2065_c00001{transform:matrix(0.232138,-0.007196,0.007746,0.249880,0,0);-ms-transform:matrix(0.232138,-0.007196,0.007746,0.249880,0,0);-webkit-transform:matrix(0.232138,-0.007196,0.007746,0.249880,0,0);}
.m13e2_c00001{transform:matrix(0.232152,-0.006036,0.006498,0.249916,0,0);-ms-transform:matrix(0.232152,-0.006036,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232152,-0.006036,0.006498,0.249916,0,0);}
.m14b9_c00001{transform:matrix(0.232153,0.007669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232153,0.007669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232153,0.007669,-0.008254,0.249864,0,0);}
.mbf5_c00001{transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);}
.m1f7d_c00001{transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232160,0.000000,0.000000,0.250000,0,0);}
.m1051_c00001{transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232185,0.000000,0.000000,0.250000,0,0);}
.mf59_c00001{transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);}
.m19db_c00001{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.m1508_c00001{transform:matrix(0.232268,0.007673,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232268,0.007673,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232268,0.007673,-0.008254,0.249864,0,0);}
.m1f77_c00001{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.m22cf_c00001{transform:matrix(0.232300,0.003717,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232300,0.003717,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232300,0.003717,-0.003999,0.249968,0,0);}
.m100_c00001{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m19ea_c00001{transform:matrix(0.232345,-0.003718,0.003999,0.249968,0,0);-ms-transform:matrix(0.232345,-0.003718,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232345,-0.003718,0.003999,0.249968,0,0);}
.m181a_c00001{transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232365,0.000000,0.000000,0.250000,0,0);}
.m27a8_c00001{transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);}
.m120d_c00001{transform:matrix(0.232385,-0.006274,0.006748,0.249909,0,0);-ms-transform:matrix(0.232385,-0.006274,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232385,-0.006274,0.006748,0.249909,0,0);}
.m371_c00001{transform:matrix(0.232400,-0.003021,0.003250,0.249979,0,0);-ms-transform:matrix(0.232400,-0.003021,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232400,-0.003021,0.003250,0.249979,0,0);}
.m14ba_c00001{transform:matrix(0.232413,0.007677,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232413,0.007677,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232413,0.007677,-0.008254,0.249864,0,0);}
.m1006_c00001{transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);}
.m634_c00001{transform:matrix(0.232455,-0.010006,0.010751,0.249769,0,0);-ms-transform:matrix(0.232455,-0.010006,0.010751,0.249769,0,0);-webkit-transform:matrix(0.232455,-0.010006,0.010751,0.249769,0,0);}
.m2767_c00001{transform:matrix(0.232469,-0.003487,0.003750,0.249972,0,0);-ms-transform:matrix(0.232469,-0.003487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232469,-0.003487,0.003750,0.249972,0,0);}
.m20ba_c00001{transform:matrix(0.232472,0.005812,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232472,0.005812,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232472,0.005812,-0.006248,0.249922,0,0);}
.m18be_c00001{transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);}
.m27a_c00001{transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);}
.m197c_c00001{transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232535,0.000000,0.000000,0.250000,0,0);}
.m1835_c00001{transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);}
.m1b02_c00001{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m18c7_c00001{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.m2733_c00001{transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);}
.m42e_c00001{transform:matrix(0.232568,-0.004419,0.004749,0.249955,0,0);-ms-transform:matrix(0.232568,-0.004419,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232568,-0.004419,0.004749,0.249955,0,0);}
.m1730_c00001{transform:matrix(0.232611,-0.006048,0.006498,0.249916,0,0);-ms-transform:matrix(0.232611,-0.006048,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232611,-0.006048,0.006498,0.249916,0,0);}
.m29a1_c00001{transform:matrix(0.232635,-0.003722,0.003999,0.249968,0,0);-ms-transform:matrix(0.232635,-0.003722,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232635,-0.003722,0.003999,0.249968,0,0);}
.mec9_c00001{transform:matrix(0.232642,0.003257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232642,0.003257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232642,0.003257,-0.003500,0.249976,0,0);}
.maf0_c00001{transform:matrix(0.232658,-0.009083,0.009752,0.249810,0,0);-ms-transform:matrix(0.232658,-0.009083,0.009752,0.249810,0,0);-webkit-transform:matrix(0.232658,-0.009083,0.009752,0.249810,0,0);}
.m12a9_c00001{transform:matrix(0.232688,0.005352,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232688,0.005352,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232688,0.005352,-0.005748,0.249934,0,0);}
.m1d00_c00001{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.m15c9_c00001{transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232740,0.000000,0.000000,0.250000,0,0);}
.m1adb_c00001{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m138f_c00001{transform:matrix(0.232811,-0.006053,0.006498,0.249916,0,0);-ms-transform:matrix(0.232811,-0.006053,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232811,-0.006053,0.006498,0.249916,0,0);}
.m260e_c00001{transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232835,0.000000,0.000000,0.250000,0,0);}
.m2528_c00001{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m1671_c00001{transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);}
.m2791_c00001{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m2900_c00001{transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232935,0.000000,0.000000,0.250000,0,0);}
.m1b01_c00001{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m2466_c00001{transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232970,0.000000,0.000000,0.250000,0,0);}
.m1e95_c00001{transform:matrix(0.232998,-0.004660,0.004999,0.249950,0,0);-ms-transform:matrix(0.232998,-0.004660,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232998,-0.004660,0.004999,0.249950,0,0);}
.m21a1_c00001{transform:matrix(0.233014,0.004893,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233014,0.004893,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233014,0.004893,-0.005249,0.249945,0,0);}
.m2640_c00001{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m1e3c_c00001{transform:matrix(0.233066,-0.006060,0.006498,0.249916,0,0);-ms-transform:matrix(0.233066,-0.006060,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233066,-0.006060,0.006498,0.249916,0,0);}
.m1a94_c00001{transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233090,0.000000,0.000000,0.250000,0,0);}
.m27dd_c00001{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.m1492_c00001{transform:matrix(0.233128,0.007701,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233128,0.007701,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233128,0.007701,-0.008254,0.249864,0,0);}
.m1d93_c00001{transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233145,0.000000,0.000000,0.250000,0,0);}
.m22e6_c00001{transform:matrix(0.233200,0.003731,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233200,0.003731,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233200,0.003731,-0.003999,0.249968,0,0);}
.m17eb_c00001{transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);}
.m23df_c00001{transform:matrix(0.233249,-0.005131,0.005499,0.249940,0,0);-ms-transform:matrix(0.233249,-0.005131,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233249,-0.005131,0.005499,0.249940,0,0);}
.mb8f_c00001{transform:matrix(0.233255,0.003032,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233255,0.003032,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233255,0.003032,-0.003250,0.249979,0,0);}
.m224d_c00001{transform:matrix(0.233259,-0.004898,0.005249,0.249945,0,0);-ms-transform:matrix(0.233259,-0.004898,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233259,-0.004898,0.005249,0.249945,0,0);}
.m1012_c00001{transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);}
.m1e28_c00001{transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);-ms-transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233296,-0.006066,0.006498,0.249916,0,0);}
.m22aa_c00001{transform:matrix(0.233300,0.003733,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233300,0.003733,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233300,0.003733,-0.003999,0.249968,0,0);}
.m53d_c00001{transform:matrix(0.233311,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233311,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233311,0.002566,-0.002750,0.249985,0,0);}
.m1cd2_c00001{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m203f_c00001{transform:matrix(0.233328,-0.007233,0.007746,0.249880,0,0);-ms-transform:matrix(0.233328,-0.007233,0.007746,0.249880,0,0);-webkit-transform:matrix(0.233328,-0.007233,0.007746,0.249880,0,0);}
.meb4_c00001{transform:matrix(0.233332,0.003267,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233332,0.003267,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233332,0.003267,-0.003500,0.249976,0,0);}
.m1776_c00001{transform:matrix(0.233366,-0.006068,0.006498,0.249916,0,0);-ms-transform:matrix(0.233366,-0.006068,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233366,-0.006068,0.006498,0.249916,0,0);}
.m38b_c00001{transform:matrix(0.233370,-0.003034,0.003250,0.249979,0,0);-ms-transform:matrix(0.233370,-0.003034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233370,-0.003034,0.003250,0.249979,0,0);}
.m200_c00001{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m1224_c00001{transform:matrix(0.233380,-0.006301,0.006748,0.249909,0,0);-ms-transform:matrix(0.233380,-0.006301,0.006748,0.249909,0,0);-webkit-transform:matrix(0.233380,-0.006301,0.006748,0.249909,0,0);}
.m164b_c00001{transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);}
.m1587_c00001{transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);}
.m1eb5_c00001{transform:matrix(0.233421,-0.006069,0.006498,0.249916,0,0);-ms-transform:matrix(0.233421,-0.006069,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233421,-0.006069,0.006498,0.249916,0,0);}
.m23b3_c00001{transform:matrix(0.233434,-0.005136,0.005499,0.249940,0,0);-ms-transform:matrix(0.233434,-0.005136,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233434,-0.005136,0.005499,0.249940,0,0);}
.m1d61_c00001{transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);}
.m1afb_c00001{transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);}
.m1f63_c00001{transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);}
.m17ed_c00001{transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);}
.m2505_c00001{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m24a1_c00001{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m294b_c00001{transform:matrix(0.233530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233530,0.000000,0.000000,0.250000,0,0);}
.mc0f_c00001{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.m1078_c00001{transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);}
.m3ba_c00001{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.macb_c00001{transform:matrix(0.233657,-0.009122,0.009752,0.249810,0,0);-ms-transform:matrix(0.233657,-0.009122,0.009752,0.249810,0,0);-webkit-transform:matrix(0.233657,-0.009122,0.009752,0.249810,0,0);}
.m2018_c00001{transform:matrix(0.233668,-0.007244,0.007746,0.249880,0,0);-ms-transform:matrix(0.233668,-0.007244,0.007746,0.249880,0,0);-webkit-transform:matrix(0.233668,-0.007244,0.007746,0.249880,0,0);}
.m1c63_c00001{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m2cd_c00001{transform:matrix(0.233711,-0.002571,0.002750,0.249985,0,0);-ms-transform:matrix(0.233711,-0.002571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233711,-0.002571,0.002750,0.249985,0,0);}
.ma3a_c00001{transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);}
.m23f0_c00001{transform:matrix(0.233738,-0.005142,0.005499,0.249940,0,0);-ms-transform:matrix(0.233738,-0.005142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233738,-0.005142,0.005499,0.249940,0,0);}
.m1a18_c00001{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m965_c00001{transform:matrix(0.233756,-0.008892,0.009503,0.249819,0,0);-ms-transform:matrix(0.233756,-0.008892,0.009503,0.249819,0,0);-webkit-transform:matrix(0.233756,-0.008892,0.009503,0.249819,0,0);}
.m191b_c00001{transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233765,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00001{transform:matrix(0.233779,-0.003507,0.003750,0.249972,0,0);-ms-transform:matrix(0.233779,-0.003507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233779,-0.003507,0.003750,0.249972,0,0);}
.mcc6_c00001{transform:matrix(0.233782,-0.006780,0.007247,0.249895,0,0);-ms-transform:matrix(0.233782,-0.006780,0.007247,0.249895,0,0);-webkit-transform:matrix(0.233782,-0.006780,0.007247,0.249895,0,0);}
.mf63_c00001{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m2508_c00001{transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);}
.m2651_c00001{transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);}
.m1b0e_c00001{transform:matrix(0.233890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233890,0.000000,0.000000,0.250000,0,0);}
.m1cfd_c00001{transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);}
.m38f_c00001{transform:matrix(0.233935,-0.003041,0.003250,0.249979,0,0);-ms-transform:matrix(0.233935,-0.003041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233935,-0.003041,0.003250,0.249979,0,0);}
.m290d_c00001{transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233940,0.000000,0.000000,0.250000,0,0);}
.m220f_c00001{transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);-ms-transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);}
.m207_c00001{transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233965,0.000000,0.000000,0.250000,0,0);}
.m1edc_c00001{transform:matrix(0.233966,-0.006083,0.006498,0.249916,0,0);-ms-transform:matrix(0.233966,-0.006083,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233966,-0.006083,0.006498,0.249916,0,0);}
.mf45_c00001{transform:matrix(0.234005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234005,0.000000,0.000000,0.250000,0,0);}
.m137_c00001{transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);}
.m137a_c00001{transform:matrix(0.234016,-0.006084,0.006498,0.249916,0,0);-ms-transform:matrix(0.234016,-0.006084,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234016,-0.006084,0.006498,0.249916,0,0);}
.m2502_c00001{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.m2656_c00001{transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234030,0.000000,0.000000,0.250000,0,0);}
.m2493_c00001{transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);}
.m29bb_c00001{transform:matrix(0.234049,-0.003511,0.003750,0.249972,0,0);-ms-transform:matrix(0.234049,-0.003511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234049,-0.003511,0.003750,0.249972,0,0);}
.m1e5_c00001{transform:matrix(0.234078,-0.005384,0.005748,0.249934,0,0);-ms-transform:matrix(0.234078,-0.005384,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234078,-0.005384,0.005748,0.249934,0,0);}
.m28a2_c00001{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.m288e_c00001{transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);}
.m25e0_c00001{transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234110,0.000000,0.000000,0.250000,0,0);}
.m415_c00001{transform:matrix(0.234118,-0.004916,0.005249,0.249945,0,0);-ms-transform:matrix(0.234118,-0.004916,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234118,-0.004916,0.005249,0.249945,0,0);}
.m2099_c00001{transform:matrix(0.234128,-0.007258,0.007746,0.249880,0,0);-ms-transform:matrix(0.234128,-0.007258,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234128,-0.007258,0.007746,0.249880,0,0);}
.m14f2_c00001{transform:matrix(0.234142,0.007734,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234142,0.007734,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234142,0.007734,-0.008254,0.249864,0,0);}
.m24ea_c00001{transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234155,0.000000,0.000000,0.250000,0,0);}
.m135e_c00001{transform:matrix(0.234157,0.006791,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234157,0.006791,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234157,0.006791,-0.007247,0.249895,0,0);}
.m1ea9_c00001{transform:matrix(0.234186,-0.006089,0.006498,0.249916,0,0);-ms-transform:matrix(0.234186,-0.006089,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234186,-0.006089,0.006498,0.249916,0,0);}
.m1721_c00001{transform:matrix(0.234201,-0.006089,0.006498,0.249916,0,0);-ms-transform:matrix(0.234201,-0.006089,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234201,-0.006089,0.006498,0.249916,0,0);}
.m87b_c00001{transform:matrix(0.234251,-0.008910,0.009503,0.249819,0,0);-ms-transform:matrix(0.234251,-0.008910,0.009503,0.249819,0,0);-webkit-transform:matrix(0.234251,-0.008910,0.009503,0.249819,0,0);}
.m2339_c00001{transform:matrix(0.234257,0.004217,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234257,0.004217,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234257,0.004217,-0.004499,0.249960,0,0);}
.m27f4_c00001{transform:matrix(0.234270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234270,0.000000,0.000000,0.250000,0,0);}
.m588_c00001{transform:matrix(0.234276,0.002577,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234276,0.002577,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234276,0.002577,-0.002750,0.249985,0,0);}
.m16aa_c00001{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m1960_c00001{transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);}
.m1ecf_c00001{transform:matrix(0.234371,-0.006094,0.006498,0.249916,0,0);-ms-transform:matrix(0.234371,-0.006094,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234371,-0.006094,0.006498,0.249916,0,0);}
.m29b5_c00001{transform:matrix(0.234399,-0.003516,0.003750,0.249972,0,0);-ms-transform:matrix(0.234399,-0.003516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234399,-0.003516,0.003750,0.249972,0,0);}
.m2496_c00001{transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234410,0.000000,0.000000,0.250000,0,0);}
.m170c_c00001{transform:matrix(0.234411,-0.006095,0.006498,0.249916,0,0);-ms-transform:matrix(0.234411,-0.006095,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234411,-0.006095,0.006498,0.249916,0,0);}
.m1a12_c00001{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m1c52_c00001{transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);}
.mdd0_c00001{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.m29aa_c00001{transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);}
.ma7_c00001{transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234565,0.000000,0.000000,0.250000,0,0);}
.m1dca_c00001{transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.234593,-0.002346,0.002500,0.249988,0,0);-ms-transform:matrix(0.234593,-0.002346,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234593,-0.002346,0.002500,0.249988,0,0);}
.m2082_c00001{transform:matrix(0.234617,-0.007273,0.007746,0.249880,0,0);-ms-transform:matrix(0.234617,-0.007273,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234617,-0.007273,0.007746,0.249880,0,0);}
.m23ca_c00001{transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);-ms-transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234623,-0.005162,0.005499,0.249940,0,0);}
.m145_c00001{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m22e7_c00001{transform:matrix(0.234665,0.003755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234665,0.003755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234665,0.003755,-0.003999,0.249968,0,0);}
.m2407_c00001{transform:matrix(0.234673,-0.005163,0.005499,0.249940,0,0);-ms-transform:matrix(0.234673,-0.005163,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234673,-0.005163,0.005499,0.249940,0,0);}
.m128f_c00001{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.m266a_c00001{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m644_c00001{transform:matrix(0.234707,-0.009633,0.010252,0.249790,0,0);-ms-transform:matrix(0.234707,-0.009633,0.010252,0.249790,0,0);-webkit-transform:matrix(0.234707,-0.009633,0.010252,0.249790,0,0);}
.m7ed_c00001{transform:matrix(0.234708,-0.006572,0.006997,0.249902,0,0);-ms-transform:matrix(0.234708,-0.006572,0.006997,0.249902,0,0);-webkit-transform:matrix(0.234708,-0.006572,0.006997,0.249902,0,0);}
.ma66_c00001{transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234720,0.000000,0.000000,0.250000,0,0);}
.m20fe_c00001{transform:matrix(0.234723,0.006572,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234723,0.006572,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234723,0.006572,-0.006997,0.249902,0,0);}
.m27b7_c00001{transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234765,0.000000,0.000000,0.250000,0,0);}
.m1b1c_c00001{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m35a_c00001{transform:matrix(0.234795,-0.003052,0.003250,0.249979,0,0);-ms-transform:matrix(0.234795,-0.003052,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234795,-0.003052,0.003250,0.249979,0,0);}
.m2742_c00001{transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);}
.m2793_c00001{transform:matrix(0.234835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234835,0.000000,0.000000,0.250000,0,0);}
.m515_c00001{transform:matrix(0.234846,0.002583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234846,0.002583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234846,0.002583,-0.002750,0.249985,0,0);}
.m2675_c00001{transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);}
.m20bf_c00001{transform:matrix(0.234857,0.005871,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234857,0.005871,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234857,0.005871,-0.006248,0.249922,0,0);}
.m1ac8_c00001{transform:matrix(0.234870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234870,0.000000,0.000000,0.250000,0,0);}
.m1385_c00001{transform:matrix(0.234911,-0.006108,0.006498,0.249916,0,0);-ms-transform:matrix(0.234911,-0.006108,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234911,-0.006108,0.006498,0.249916,0,0);}
.m2622_c00001{transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);}
.m2582_c00001{transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);-ms-transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234920,-0.003054,0.003250,0.249979,0,0);}
.m5da_c00001{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.m26ff_c00001{transform:matrix(0.234945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234945,0.000000,0.000000,0.250000,0,0);}
.m1504_c00001{transform:matrix(0.234947,0.007761,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234947,0.007761,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234947,0.007761,-0.008254,0.249864,0,0);}
.m1694_c00001{transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234970,0.000000,0.000000,0.250000,0,0);}
.m2901_c00001{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m76c_c00001{transform:matrix(0.234978,0.006579,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234978,0.006579,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234978,0.006579,-0.006997,0.249902,0,0);}
.mf3f_c00001{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00001{transform:matrix(0.235020,-0.003055,0.003250,0.249979,0,0);-ms-transform:matrix(0.235020,-0.003055,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235020,-0.003055,0.003250,0.249979,0,0);}
.m25bf_c00001{transform:matrix(0.235030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235030,0.000000,0.000000,0.250000,0,0);}
.m2798_c00001{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.mc5a_c00001{transform:matrix(0.235065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235065,0.000000,0.000000,0.250000,0,0);}
.m1e9e_c00001{transform:matrix(0.235066,-0.006112,0.006498,0.249916,0,0);-ms-transform:matrix(0.235066,-0.006112,0.006498,0.249916,0,0);-webkit-transform:matrix(0.235066,-0.006112,0.006498,0.249916,0,0);}
.m1f7e_c00001{transform:matrix(0.235070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235070,0.000000,0.000000,0.250000,0,0);}
.m2627_c00001{transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);}
.m552_c00001{transform:matrix(0.235176,0.002587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235176,0.002587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235176,0.002587,-0.002750,0.249985,0,0);}
.m1578_c00001{transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);}
.m231a_c00001{transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);}
.m260b_c00001{transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235205,0.000000,0.000000,0.250000,0,0);}
.m21e4_c00001{transform:matrix(0.235212,-0.005645,0.005998,0.249928,0,0);-ms-transform:matrix(0.235212,-0.005645,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235212,-0.005645,0.005998,0.249928,0,0);}
.m2539_c00001{transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);}
.m1823_c00001{transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);}
.mf34_c00001{transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);}
.m1c19_c00001{transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235280,0.000000,0.000000,0.250000,0,0);}
.m1d16_c00001{transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);}
.m24c8_c00001{transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235345,0.000000,0.000000,0.250000,0,0);}
.m27ca_c00001{transform:matrix(0.235420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235420,0.000000,0.000000,0.250000,0,0);}
.m1ece_c00001{transform:matrix(0.235460,-0.006122,0.006498,0.249916,0,0);-ms-transform:matrix(0.235460,-0.006122,0.006498,0.249916,0,0);-webkit-transform:matrix(0.235460,-0.006122,0.006498,0.249916,0,0);}
.m14ac_c00001{transform:matrix(0.235462,0.007778,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235462,0.007778,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235462,0.007778,-0.008254,0.249864,0,0);}
.m2586_c00001{transform:matrix(0.235530,-0.003062,0.003250,0.249979,0,0);-ms-transform:matrix(0.235530,-0.003062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235530,-0.003062,0.003250,0.249979,0,0);}
.m220d_c00001{transform:matrix(0.235563,-0.005182,0.005499,0.249940,0,0);-ms-transform:matrix(0.235563,-0.005182,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235563,-0.005182,0.005499,0.249940,0,0);}
.m281f_c00001{transform:matrix(0.235580,-0.003063,0.003250,0.249979,0,0);-ms-transform:matrix(0.235580,-0.003063,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235580,-0.003063,0.003250,0.249979,0,0);}
.mb95_c00001{transform:matrix(0.235593,0.002827,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235593,0.002827,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235593,0.002827,-0.003000,0.249982,0,0);}
.m148f_c00001{transform:matrix(0.235601,0.007783,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235601,0.007783,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235601,0.007783,-0.008254,0.249864,0,0);}
.m127a_c00001{transform:matrix(0.235604,-0.006361,0.006748,0.249909,0,0);-ms-transform:matrix(0.235604,-0.006361,0.006748,0.249909,0,0);-webkit-transform:matrix(0.235604,-0.006361,0.006748,0.249909,0,0);}
.m72e_c00001{transform:matrix(0.235641,0.005891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235641,0.005891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235641,0.005891,-0.006248,0.249922,0,0);}
.m28ab_c00001{transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);}
.m340_c00001{transform:matrix(0.235650,-0.003063,0.003250,0.249979,0,0);-ms-transform:matrix(0.235650,-0.003063,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235650,-0.003063,0.003250,0.249979,0,0);}
.m1bfa_c00001{transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);}
.m25c8_c00001{transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235665,0.000000,0.000000,0.250000,0,0);}
.m1f92_c00001{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.mb7c_c00001{transform:matrix(0.235686,-0.007785,0.008254,0.249864,0,0);-ms-transform:matrix(0.235686,-0.007785,0.008254,0.249864,0,0);-webkit-transform:matrix(0.235686,-0.007785,0.008254,0.249864,0,0);}
.m28bf_c00001{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m283e_c00001{transform:matrix(0.235740,-0.003065,0.003250,0.249979,0,0);-ms-transform:matrix(0.235740,-0.003065,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235740,-0.003065,0.003250,0.249979,0,0);}
.m1aaa_c00001{transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235760,0.000000,0.000000,0.250000,0,0);}
.m2553_c00001{transform:matrix(0.235792,-0.003301,0.003500,0.249976,0,0);-ms-transform:matrix(0.235792,-0.003301,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235792,-0.003301,0.003500,0.249976,0,0);}
.md65_c00001{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m29a8_c00001{transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);}
.m18c0_c00001{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m1d92_c00001{transform:matrix(0.235940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235940,0.000000,0.000000,0.250000,0,0);}
.mb77_c00001{transform:matrix(0.235961,-0.006843,0.007247,0.249895,0,0);-ms-transform:matrix(0.235961,-0.006843,0.007247,0.249895,0,0);-webkit-transform:matrix(0.235961,-0.006843,0.007247,0.249895,0,0);}
.m231b_c00001{transform:matrix(0.235962,0.004247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235962,0.004247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235962,0.004247,-0.004499,0.249960,0,0);}
.m1394_c00001{transform:matrix(0.236020,-0.006137,0.006498,0.249916,0,0);-ms-transform:matrix(0.236020,-0.006137,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236020,-0.006137,0.006498,0.249916,0,0);}
.m2636_c00001{transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236060,0.000000,0.000000,0.250000,0,0);}
.m1d90_c00001{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m2686_c00001{transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236155,0.000000,0.000000,0.250000,0,0);}
.m8ae_c00001{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m22b9_c00001{transform:matrix(0.236260,0.003780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236260,0.003780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236260,0.003780,-0.003999,0.249968,0,0);}
.m1c67_c00001{transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);}
.m1ab8_c00001{transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);}
.m20a3_c00001{transform:matrix(0.236291,-0.007325,0.007746,0.249880,0,0);-ms-transform:matrix(0.236291,-0.007325,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236291,-0.007325,0.007746,0.249880,0,0);}
.m24c4_c00001{transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236305,0.000000,0.000000,0.250000,0,0);}
.maa4_c00001{transform:matrix(0.236312,-0.008516,0.009003,0.249838,0,0);-ms-transform:matrix(0.236312,-0.008516,0.009003,0.249838,0,0);-webkit-transform:matrix(0.236312,-0.008516,0.009003,0.249838,0,0);}
.m277f_c00001{transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);-ms-transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236353,-0.003545,0.003750,0.249972,0,0);}
.m1f72_c00001{transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);}
.me2f_c00001{transform:matrix(0.236360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236360,0.000000,0.000000,0.250000,0,0);}
.m258a_c00001{transform:matrix(0.236363,-0.003545,0.003750,0.249972,0,0);-ms-transform:matrix(0.236363,-0.003545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236363,-0.003545,0.003750,0.249972,0,0);}
.m24c3_c00001{transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);}
.m1cbf_c00001{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m54a_c00001{transform:matrix(0.236441,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236441,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236441,0.002601,-0.002750,0.249985,0,0);}
.m1990_c00001{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m28e0_c00001{transform:matrix(0.236460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236460,0.000000,0.000000,0.250000,0,0);}
.mea6_c00001{transform:matrix(0.236467,0.003311,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236467,0.003311,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236467,0.003311,-0.003500,0.249976,0,0);}
.m203c_c00001{transform:matrix(0.236471,-0.007331,0.007746,0.249880,0,0);-ms-transform:matrix(0.236471,-0.007331,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236471,-0.007331,0.007746,0.249880,0,0);}
.m1019_c00001{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.mbf3_c00001{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.m1988_c00001{transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);}
.m264e_c00001{transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);}
.m25e6_c00001{transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236555,0.000000,0.000000,0.250000,0,0);}
.m639_c00001{transform:matrix(0.236566,-0.010183,0.010751,0.249769,0,0);-ms-transform:matrix(0.236566,-0.010183,0.010751,0.249769,0,0);-webkit-transform:matrix(0.236566,-0.010183,0.010751,0.249769,0,0);}
.m28e2_c00001{transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236635,0.000000,0.000000,0.250000,0,0);}
.m21cf_c00001{transform:matrix(0.236682,-0.005444,0.005748,0.249934,0,0);-ms-transform:matrix(0.236682,-0.005444,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236682,-0.005444,0.005748,0.249934,0,0);}
.m2677_c00001{transform:matrix(0.236690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236690,0.000000,0.000000,0.250000,0,0);}
.m10ca_c00001{transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);}
.mff4_c00001{transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);}
.m1eb3_c00001{transform:matrix(0.236775,-0.006156,0.006498,0.249916,0,0);-ms-transform:matrix(0.236775,-0.006156,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236775,-0.006156,0.006498,0.249916,0,0);}
.m13bf_c00001{transform:matrix(0.236795,-0.006157,0.006498,0.249916,0,0);-ms-transform:matrix(0.236795,-0.006157,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236795,-0.006157,0.006498,0.249916,0,0);}
.m115a_c00001{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m80c_c00001{transform:matrix(0.236847,-0.006632,0.006997,0.249902,0,0);-ms-transform:matrix(0.236847,-0.006632,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236847,-0.006632,0.006997,0.249902,0,0);}
.m217f_c00001{transform:matrix(0.236862,0.006632,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236862,0.006632,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236862,0.006632,-0.006997,0.249902,0,0);}
.m2599_c00001{transform:matrix(0.236881,-0.002606,0.002750,0.249985,0,0);-ms-transform:matrix(0.236881,-0.002606,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236881,-0.002606,0.002750,0.249985,0,0);}
.m45b_c00001{transform:matrix(0.236886,-0.007825,0.008254,0.249864,0,0);-ms-transform:matrix(0.236886,-0.007825,0.008254,0.249864,0,0);-webkit-transform:matrix(0.236886,-0.007825,0.008254,0.249864,0,0);}
.m8e0_c00001{transform:matrix(0.236891,-0.007825,0.008254,0.249864,0,0);-ms-transform:matrix(0.236891,-0.007825,0.008254,0.249864,0,0);-webkit-transform:matrix(0.236891,-0.007825,0.008254,0.249864,0,0);}
.m404_c00001{transform:matrix(0.236913,-0.004975,0.005249,0.249945,0,0);-ms-transform:matrix(0.236913,-0.004975,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236913,-0.004975,0.005249,0.249945,0,0);}
.m1d1e_c00001{transform:matrix(0.236915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236915,0.000000,0.000000,0.250000,0,0);}
.m151f_c00001{transform:matrix(0.236916,0.007826,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236916,0.007826,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236916,0.007826,-0.008254,0.249864,0,0);}
.m27bd_c00001{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m884_c00001{transform:matrix(0.236939,-0.009013,0.009503,0.249819,0,0);-ms-transform:matrix(0.236939,-0.009013,0.009503,0.249819,0,0);-webkit-transform:matrix(0.236939,-0.009013,0.009503,0.249819,0,0);}
.m14f3_c00001{transform:matrix(0.236941,0.007827,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236941,0.007827,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236941,0.007827,-0.008254,0.249864,0,0);}
.m2625_c00001{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.m132b_c00001{transform:matrix(0.236945,0.006871,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236945,0.006871,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236945,0.006871,-0.007247,0.249895,0,0);}
.me67_c00001{transform:matrix(0.236952,0.004265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236952,0.004265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236952,0.004265,-0.004499,0.249960,0,0);}
.m150_c00001{transform:matrix(0.236960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236960,0.000000,0.000000,0.250000,0,0);}
.m2088_c00001{transform:matrix(0.236961,-0.007346,0.007746,0.249880,0,0);-ms-transform:matrix(0.236961,-0.007346,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236961,-0.007346,0.007746,0.249880,0,0);}
.mf62_c00001{transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236965,0.000000,0.000000,0.250000,0,0);}
.m1387_c00001{transform:matrix(0.236990,-0.006162,0.006498,0.249916,0,0);-ms-transform:matrix(0.236990,-0.006162,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236990,-0.006162,0.006498,0.249916,0,0);}
.m21f1_c00001{transform:matrix(0.236997,-0.004503,0.004749,0.249955,0,0);-ms-transform:matrix(0.236997,-0.004503,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236997,-0.004503,0.004749,0.249955,0,0);}
.m24d6_c00001{transform:matrix(0.237005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237005,0.000000,0.000000,0.250000,0,0);}
.mc86_c00001{transform:matrix(0.237020,-0.006874,0.007247,0.249895,0,0);-ms-transform:matrix(0.237020,-0.006874,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237020,-0.006874,0.007247,0.249895,0,0);}
.m2051_c00001{transform:matrix(0.237031,-0.007348,0.007746,0.249880,0,0);-ms-transform:matrix(0.237031,-0.007348,0.007746,0.249880,0,0);-webkit-transform:matrix(0.237031,-0.007348,0.007746,0.249880,0,0);}
.mf73_c00001{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m80a_c00001{transform:matrix(0.237057,-0.006638,0.006997,0.249902,0,0);-ms-transform:matrix(0.237057,-0.006638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237057,-0.006638,0.006997,0.249902,0,0);}
.m194d_c00001{transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);}
.md1c_c00001{transform:matrix(0.237070,-0.006875,0.007247,0.249895,0,0);-ms-transform:matrix(0.237070,-0.006875,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237070,-0.006875,0.007247,0.249895,0,0);}
.m2987_c00001{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m122_c00001{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m2139_c00001{transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);}
.m1052_c00001{transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237295,0.000000,0.000000,0.250000,0,0);}
.m1dcf_c00001{transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);}
.m1500_c00001{transform:matrix(0.237311,0.007839,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237311,0.007839,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237311,0.007839,-0.008254,0.249864,0,0);}
.m8bb_c00001{transform:matrix(0.237312,-0.005695,0.005998,0.249928,0,0);-ms-transform:matrix(0.237312,-0.005695,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237312,-0.005695,0.005998,0.249928,0,0);}
.m1265_c00001{transform:matrix(0.237368,-0.006409,0.006748,0.249909,0,0);-ms-transform:matrix(0.237368,-0.006409,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237368,-0.006409,0.006748,0.249909,0,0);}
.m110e_c00001{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m1d15_c00001{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m13f9_c00001{transform:matrix(0.237420,-0.006173,0.006498,0.249916,0,0);-ms-transform:matrix(0.237420,-0.006173,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237420,-0.006173,0.006498,0.249916,0,0);}
.m2628_c00001{transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);}
.mdca_c00001{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.m238_c00001{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m157d_c00001{transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237490,0.000000,0.000000,0.250000,0,0);}
.m1d1c_c00001{transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237610,0.000000,0.000000,0.250000,0,0);}
.m23e6_c00001{transform:matrix(0.237613,-0.005227,0.005499,0.249940,0,0);-ms-transform:matrix(0.237613,-0.005227,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237613,-0.005227,0.005499,0.249940,0,0);}
.m1366_c00001{transform:matrix(0.237630,0.006891,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237630,0.006891,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237630,0.006891,-0.007247,0.249895,0,0);}
.mcf7_c00001{transform:matrix(0.237630,-0.006891,0.007247,0.249895,0,0);-ms-transform:matrix(0.237630,-0.006891,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237630,-0.006891,0.007247,0.249895,0,0);}
.m21b9_c00001{transform:matrix(0.237667,-0.005466,0.005748,0.249934,0,0);-ms-transform:matrix(0.237667,-0.005466,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237667,-0.005466,0.005748,0.249934,0,0);}
.m1f34_c00001{transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237680,0.000000,0.000000,0.250000,0,0);}
.m1cdf_c00001{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m193a_c00001{transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237730,0.000000,0.000000,0.250000,0,0);}
.mc84_c00001{transform:matrix(0.237740,-0.006894,0.007247,0.249895,0,0);-ms-transform:matrix(0.237740,-0.006894,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237740,-0.006894,0.007247,0.249895,0,0);}
.m189f_c00001{transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);}
.m10d1_c00001{transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237765,0.000000,0.000000,0.250000,0,0);}
.m29b2_c00001{transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);}
.m1a79_c00001{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.m1c9f_c00001{transform:matrix(0.237810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237810,0.000000,0.000000,0.250000,0,0);}
.m423_c00001{transform:matrix(0.237813,-0.004994,0.005249,0.249945,0,0);-ms-transform:matrix(0.237813,-0.004994,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237813,-0.004994,0.005249,0.249945,0,0);}
.m1bd0_c00001{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m27fd_c00001{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.m2361_c00001{transform:matrix(0.237951,0.004283,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237951,0.004283,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237951,0.004283,-0.004499,0.249960,0,0);}
.m1794_c00001{transform:matrix(0.237955,-0.006187,0.006498,0.249916,0,0);-ms-transform:matrix(0.237955,-0.006187,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237955,-0.006187,0.006498,0.249916,0,0);}
.m191c_c00001{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m13ee_c00001{transform:matrix(0.237995,-0.006188,0.006498,0.249916,0,0);-ms-transform:matrix(0.237995,-0.006188,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237995,-0.006188,0.006498,0.249916,0,0);}
.m1d40_c00001{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m28e3_c00001{transform:matrix(0.238020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238020,0.000000,0.000000,0.250000,0,0);}
.m2136_c00001{transform:matrix(0.238022,0.006665,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238022,0.006665,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238022,0.006665,-0.006997,0.249902,0,0);}
.m1740_c00001{transform:matrix(0.238030,-0.006189,0.006498,0.249916,0,0);-ms-transform:matrix(0.238030,-0.006189,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238030,-0.006189,0.006498,0.249916,0,0);}
.m15e6_c00001{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1707_c00001{transform:matrix(0.238075,-0.006190,0.006498,0.249916,0,0);-ms-transform:matrix(0.238075,-0.006190,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238075,-0.006190,0.006498,0.249916,0,0);}
.mc2c_c00001{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.mf00_c00001{transform:matrix(0.238110,0.003095,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238110,0.003095,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238110,0.003095,-0.003250,0.249979,0,0);}
.m2268_c00001{transform:matrix(0.238111,-0.004286,0.004499,0.249960,0,0);-ms-transform:matrix(0.238111,-0.004286,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238111,-0.004286,0.004499,0.249960,0,0);}
.md64_c00001{transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238120,0.000000,0.000000,0.250000,0,0);}
.m106_c00001{transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);}
.m1bb2_c00001{transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);}
.m27e7_c00001{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m128d_c00001{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m1805_c00001{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00001{transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238295,0.000000,0.000000,0.250000,0,0);}
.m1f9d_c00001{transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);}
.m1e05_c00001{transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);}
.m2631_c00001{transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238395,0.000000,0.000000,0.250000,0,0);}
.m390_c00001{transform:matrix(0.238410,-0.003099,0.003250,0.249979,0,0);-ms-transform:matrix(0.238410,-0.003099,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238410,-0.003099,0.003250,0.249979,0,0);}
.m26df_c00001{transform:matrix(0.238485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238485,0.000000,0.000000,0.250000,0,0);}
.m1fbc_c00001{transform:matrix(0.238504,-0.010027,0.010501,0.249779,0,0);-ms-transform:matrix(0.238504,-0.010027,0.010501,0.249779,0,0);-webkit-transform:matrix(0.238504,-0.010027,0.010501,0.249779,0,0);}
.m19d7_c00001{transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238510,0.000000,0.000000,0.250000,0,0);}
.mfa7_c00001{transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238515,0.000000,0.000000,0.250000,0,0);}
.m1a8b_c00001{transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);}
.m2213_c00001{transform:matrix(0.238532,-0.005248,0.005499,0.249940,0,0);-ms-transform:matrix(0.238532,-0.005248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238532,-0.005248,0.005499,0.249940,0,0);}
.m1a7_c00001{transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);}
.m2947_c00001{transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238580,0.000000,0.000000,0.250000,0,0);}
.m1eee_c00001{transform:matrix(0.238594,-0.006203,0.006498,0.249916,0,0);-ms-transform:matrix(0.238594,-0.006203,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238594,-0.006203,0.006498,0.249916,0,0);}
.m262e_c00001{transform:matrix(0.238620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238620,0.000000,0.000000,0.250000,0,0);}
.m2626_c00001{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m278c_c00001{transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);}
.m19da_c00001{transform:matrix(0.238695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238695,0.000000,0.000000,0.250000,0,0);}
.m185d_c00001{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m2728_c00001{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m2182_c00001{transform:matrix(0.238846,0.006688,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238846,0.006688,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238846,0.006688,-0.006997,0.249902,0,0);}
.m233e_c00001{transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);}
.m1c84_c00001{transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);}
.m226f_c00001{transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);-ms-transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238906,-0.004300,0.004499,0.249960,0,0);}
.mf26_c00001{transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238945,0.000000,0.000000,0.250000,0,0);}
.m1571_c00001{transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);}
.m169c_c00001{transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238995,0.000000,0.000000,0.250000,0,0);}
.m1498_c00001{transform:matrix(0.239000,0.007895,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239000,0.007895,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239000,0.007895,-0.008254,0.249864,0,0);}
.md52_c00001{transform:matrix(0.239010,-0.006931,0.007247,0.249895,0,0);-ms-transform:matrix(0.239010,-0.006931,0.007247,0.249895,0,0);-webkit-transform:matrix(0.239010,-0.006931,0.007247,0.249895,0,0);}
.m1323_c00001{transform:matrix(0.239040,0.006932,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239040,0.006932,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239040,0.006932,-0.007247,0.249895,0,0);}
.me31_c00001{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m107b_c00001{transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);}
.m2955_c00001{transform:matrix(0.239148,-0.002870,0.003000,0.249982,0,0);-ms-transform:matrix(0.239148,-0.002870,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239148,-0.002870,0.003000,0.249982,0,0);}
.m29b7_c00001{transform:matrix(0.239153,-0.003587,0.003750,0.249972,0,0);-ms-transform:matrix(0.239153,-0.003587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239153,-0.003587,0.003750,0.249972,0,0);}
.m1567_c00001{transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.239178,-0.002392,0.002500,0.249988,0,0);-ms-transform:matrix(0.239178,-0.002392,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239178,-0.002392,0.002500,0.249988,0,0);}
.m2bd_c00001{transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);}
.m21d3_c00001{transform:matrix(0.239217,-0.005502,0.005748,0.249934,0,0);-ms-transform:matrix(0.239217,-0.005502,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239217,-0.005502,0.005748,0.249934,0,0);}
.m198f_c00001{transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);}
.mfda_c00001{transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);}
.m1418_c00001{transform:matrix(0.239324,-0.006222,0.006498,0.249916,0,0);-ms-transform:matrix(0.239324,-0.006222,0.006498,0.249916,0,0);-webkit-transform:matrix(0.239324,-0.006222,0.006498,0.249916,0,0);}
.m2726_c00001{transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);}
.m1ca7_c00001{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.m14b5_c00001{transform:matrix(0.239349,0.007906,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239349,0.007906,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239349,0.007906,-0.008254,0.249864,0,0);}
.m291d_c00001{transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239365,0.000000,0.000000,0.250000,0,0);}
.m1ff7_c00001{transform:matrix(0.239365,-0.005984,0.006248,0.249922,0,0);-ms-transform:matrix(0.239365,-0.005984,0.006248,0.249922,0,0);-webkit-transform:matrix(0.239365,-0.005984,0.006248,0.249922,0,0);}
.m2277_c00001{transform:matrix(0.239377,-0.005506,0.005748,0.249934,0,0);-ms-transform:matrix(0.239377,-0.005506,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239377,-0.005506,0.005748,0.249934,0,0);}
.m276e_c00001{transform:matrix(0.239383,-0.003591,0.003750,0.249972,0,0);-ms-transform:matrix(0.239383,-0.003591,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239383,-0.003591,0.003750,0.249972,0,0);}
.m2137_c00001{transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239386,0.006703,-0.006997,0.249902,0,0);}
.mf5e_c00001{transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239480,0.000000,0.000000,0.250000,0,0);}
.m2073_c00001{transform:matrix(0.239485,-0.007424,0.007746,0.249880,0,0);-ms-transform:matrix(0.239485,-0.007424,0.007746,0.249880,0,0);-webkit-transform:matrix(0.239485,-0.007424,0.007746,0.249880,0,0);}
.m22b6_c00001{transform:matrix(0.239489,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239489,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239489,0.003832,-0.003999,0.249968,0,0);}
.m1bc6_c00001{transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);}
.m28c7_c00001{transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);}
.m26f3_c00001{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m1557_c00001{transform:matrix(0.239580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239580,0.000000,0.000000,0.250000,0,0);}
.m173c_c00001{transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);-ms-transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);-webkit-transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);}
.m2691_c00001{transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);}
.m236b_c00001{transform:matrix(0.239621,0.004313,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239621,0.004313,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239621,0.004313,-0.004499,0.249960,0,0);}
.m1c72_c00001{transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);}
.m2818_c00001{transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);}
.m12fc_c00001{transform:matrix(0.239843,0.006476,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239843,0.006476,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239843,0.006476,-0.006748,0.249909,0,0);}
.mf40_c00001{transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239905,0.000000,0.000000,0.250000,0,0);}
.m24af_c00001{transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);}
.m7f3_c00001{transform:matrix(0.239971,-0.006719,0.006997,0.249902,0,0);-ms-transform:matrix(0.239971,-0.006719,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239971,-0.006719,0.006997,0.249902,0,0);}
.m539_c00001{transform:matrix(0.240010,0.002640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240010,0.002640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240010,0.002640,-0.002750,0.249985,0,0);}
.mb96_c00001{transform:matrix(0.240053,0.002881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240053,0.002881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240053,0.002881,-0.003000,0.249982,0,0);}
.md14_c00001{transform:matrix(0.240054,-0.006962,0.007247,0.249895,0,0);-ms-transform:matrix(0.240054,-0.006962,0.007247,0.249895,0,0);-webkit-transform:matrix(0.240054,-0.006962,0.007247,0.249895,0,0);}
.m104c_c00001{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m291c_c00001{transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);}
.m23f1_c00001{transform:matrix(0.240132,-0.005283,0.005499,0.249940,0,0);-ms-transform:matrix(0.240132,-0.005283,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240132,-0.005283,0.005499,0.249940,0,0);}
.m1c65_c00001{transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);}
.m1bd7_c00001{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m2159_c00001{transform:matrix(0.240156,0.006724,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240156,0.006724,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240156,0.006724,-0.006997,0.249902,0,0);}
.m27e0_c00001{transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240160,0.000000,0.000000,0.250000,0,0);}
.m1661_c00001{transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240190,0.000000,0.000000,0.250000,0,0);}
.m1314_c00001{transform:matrix(0.240197,0.006485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240197,0.006485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240197,0.006485,-0.006748,0.249909,0,0);}
.m2041_c00001{transform:matrix(0.240205,-0.007446,0.007746,0.249880,0,0);-ms-transform:matrix(0.240205,-0.007446,0.007746,0.249880,0,0);-webkit-transform:matrix(0.240205,-0.007446,0.007746,0.249880,0,0);}
.m18a9_c00001{transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240210,0.000000,0.000000,0.250000,0,0);}
.mc78_c00001{transform:matrix(0.240264,-0.006968,0.007247,0.249895,0,0);-ms-transform:matrix(0.240264,-0.006968,0.007247,0.249895,0,0);-webkit-transform:matrix(0.240264,-0.006968,0.007247,0.249895,0,0);}
.m194a_c00001{transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);}
.m296d_c00001{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m813_c00001{transform:matrix(0.240356,-0.006730,0.006997,0.249902,0,0);-ms-transform:matrix(0.240356,-0.006730,0.006997,0.249902,0,0);-webkit-transform:matrix(0.240356,-0.006730,0.006997,0.249902,0,0);}
.m27ad_c00001{transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);}
.mbf8_c00001{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m25f6_c00001{transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);}
.m60c_c00001{transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);-ms-transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);}
.m18bb_c00001{transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240420,0.000000,0.000000,0.250000,0,0);}
.m2819_c00001{transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);}
.m4e0_c00001{transform:matrix(0.240475,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240475,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240475,0.002645,-0.002750,0.249985,0,0);}
.m1acb_c00001{transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);}
.m1e99_c00001{transform:matrix(0.240534,-0.006254,0.006498,0.249916,0,0);-ms-transform:matrix(0.240534,-0.006254,0.006498,0.249916,0,0);-webkit-transform:matrix(0.240534,-0.006254,0.006498,0.249916,0,0);}
.ma84_c00001{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.m503_c00001{transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);}
.mb44_c00001{transform:matrix(0.240592,-0.009392,0.009752,0.249810,0,0);-ms-transform:matrix(0.240592,-0.009392,0.009752,0.249810,0,0);-webkit-transform:matrix(0.240592,-0.009392,0.009752,0.249810,0,0);}
.m87e_c00001{transform:matrix(0.240596,-0.009152,0.009503,0.249819,0,0);-ms-transform:matrix(0.240596,-0.009152,0.009503,0.249819,0,0);-webkit-transform:matrix(0.240596,-0.009152,0.009503,0.249819,0,0);}
.mdb_c00001{transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240620,0.000000,0.000000,0.250000,0,0);}
.m1049_c00001{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.mfa9_c00001{transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240655,0.000000,0.000000,0.250000,0,0);}
.ma04_c00001{transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);}
.m283a_c00001{transform:matrix(0.240675,-0.003129,0.003250,0.249979,0,0);-ms-transform:matrix(0.240675,-0.003129,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240675,-0.003129,0.003250,0.249979,0,0);}
.m264b_c00001{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m24d3_c00001{transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240685,0.000000,0.000000,0.250000,0,0);}
.m1f58_c00001{transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);}
.m22c6_c00001{transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);}
.m1b05_c00001{transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);}
.mdd3_c00001{transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);}
.m397_c00001{transform:matrix(0.240800,-0.003130,0.003250,0.249979,0,0);-ms-transform:matrix(0.240800,-0.003130,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240800,-0.003130,0.003250,0.249979,0,0);}
.m1ee9_c00001{transform:matrix(0.240814,-0.006261,0.006498,0.249916,0,0);-ms-transform:matrix(0.240814,-0.006261,0.006498,0.249916,0,0);-webkit-transform:matrix(0.240814,-0.006261,0.006498,0.249916,0,0);}
.m2655_c00001{transform:matrix(0.240815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240815,0.000000,0.000000,0.250000,0,0);}
.m2905_c00001{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m1b6a_c00001{transform:matrix(0.240837,-0.004576,0.004749,0.249955,0,0);-ms-transform:matrix(0.240837,-0.004576,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240837,-0.004576,0.004749,0.249955,0,0);}
.m1056_c00001{transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240845,0.000000,0.000000,0.250000,0,0);}
.m195f_c00001{transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);}
.m5ac_c00001{transform:matrix(0.240890,0.002650,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240890,0.002650,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240890,0.002650,-0.002750,0.249985,0,0);}
.mc9c_c00001{transform:matrix(0.240959,-0.006988,0.007247,0.249895,0,0);-ms-transform:matrix(0.240959,-0.006988,0.007247,0.249895,0,0);-webkit-transform:matrix(0.240959,-0.006988,0.007247,0.249895,0,0);}
.mb24_c00001{transform:matrix(0.240971,-0.009407,0.009752,0.249810,0,0);-ms-transform:matrix(0.240971,-0.009407,0.009752,0.249810,0,0);-webkit-transform:matrix(0.240971,-0.009407,0.009752,0.249810,0,0);}
.mf75_c00001{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m1b4a_c00001{transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);}
.m672_c00001{transform:matrix(0.241012,-0.009891,0.010252,0.249790,0,0);-ms-transform:matrix(0.241012,-0.009891,0.010252,0.249790,0,0);-webkit-transform:matrix(0.241012,-0.009891,0.010252,0.249790,0,0);}
.m1315_c00001{transform:matrix(0.241072,0.006509,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241072,0.006509,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241072,0.006509,-0.006748,0.249909,0,0);}
.m19aa_c00001{transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241090,0.000000,0.000000,0.250000,0,0);}
.m1844_c00001{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m1a39_c00001{transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);}
.mc17_c00001{transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);}
.m7a5_c00001{transform:matrix(0.241210,-0.006754,0.006997,0.249902,0,0);-ms-transform:matrix(0.241210,-0.006754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241210,-0.006754,0.006997,0.249902,0,0);}
.m1c35_c00001{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mbae_c00001{transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);}
.m1356_c00001{transform:matrix(0.241314,0.006998,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241314,0.006998,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241314,0.006998,-0.007247,0.249895,0,0);}
.m1d54_c00001{transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);}
.m1c77_c00001{transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241345,0.000000,0.000000,0.250000,0,0);}
.m1b1b_c00001{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m1672_c00001{transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);}
.m234e_c00001{transform:matrix(0.241431,0.004346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241431,0.004346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241431,0.004346,-0.004499,0.249960,0,0);}
.m2878_c00001{transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241445,0.000000,0.000000,0.250000,0,0);}
.m1d67_c00001{transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);}
.m2772_c00001{transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-ms-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);}
.m17f2_c00001{transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241505,0.000000,0.000000,0.250000,0,0);}
.m2799_c00001{transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241535,0.000000,0.000000,0.250000,0,0);}
.maf2_c00001{transform:matrix(0.241541,-0.009430,0.009752,0.249810,0,0);-ms-transform:matrix(0.241541,-0.009430,0.009752,0.249810,0,0);-webkit-transform:matrix(0.241541,-0.009430,0.009752,0.249810,0,0);}
.m192f_c00001{transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);}
.m5ad_c00001{transform:matrix(0.241595,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241595,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241595,0.002658,-0.002750,0.249985,0,0);}
.m968_c00001{transform:matrix(0.241600,-0.009190,0.009503,0.249819,0,0);-ms-transform:matrix(0.241600,-0.009190,0.009503,0.249819,0,0);-webkit-transform:matrix(0.241600,-0.009190,0.009503,0.249819,0,0);}
.m154f_c00001{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m16b0_c00001{transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00001{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m1b74_c00001{transform:matrix(0.241681,-0.004592,0.004749,0.249955,0,0);-ms-transform:matrix(0.241681,-0.004592,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241681,-0.004592,0.004749,0.249955,0,0);}
.m2503_c00001{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m1857_c00001{transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);}
.m2792_c00001{transform:matrix(0.241745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241745,0.000000,0.000000,0.250000,0,0);}
.m1ad9_c00001{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m1b36_c00001{transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241785,0.000000,0.000000,0.250000,0,0);}
.m29a9_c00001{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m2266_c00001{transform:matrix(0.241830,-0.005804,0.005998,0.249928,0,0);-ms-transform:matrix(0.241830,-0.005804,0.005998,0.249928,0,0);-webkit-transform:matrix(0.241830,-0.005804,0.005998,0.249928,0,0);}
.m2138_c00001{transform:matrix(0.241880,0.006773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241880,0.006773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241880,0.006773,-0.006997,0.249902,0,0);}
.m29a4_c00001{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m281d_c00001{transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);}
.m1f36_c00001{transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241970,0.000000,0.000000,0.250000,0,0);}
.m184c_c00001{transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);}
.m1a24_c00001{transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);}
.m2956_c00001{transform:matrix(0.242023,-0.002904,0.003000,0.249982,0,0);-ms-transform:matrix(0.242023,-0.002904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242023,-0.002904,0.003000,0.249982,0,0);}
.m1ce3_c00001{transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);}
.m1eca_c00001{transform:matrix(0.242158,-0.006296,0.006498,0.249916,0,0);-ms-transform:matrix(0.242158,-0.006296,0.006498,0.249916,0,0);-webkit-transform:matrix(0.242158,-0.006296,0.006498,0.249916,0,0);}
.m1db6_c00001{transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242170,0.000000,0.000000,0.250000,0,0);}
.me5c_c00001{transform:matrix(0.242201,0.004360,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242201,0.004360,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242201,0.004360,-0.004499,0.249960,0,0);}
.m27dc_c00001{transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);}
.m406_c00001{transform:matrix(0.242267,-0.005088,0.005249,0.249945,0,0);-ms-transform:matrix(0.242267,-0.005088,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242267,-0.005088,0.005249,0.249945,0,0);}
.m1da7_c00001{transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);}
.m15d2_c00001{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m11df_c00001{transform:matrix(0.242361,-0.005332,0.005499,0.249940,0,0);-ms-transform:matrix(0.242361,-0.005332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242361,-0.005332,0.005499,0.249940,0,0);}
.m2992_c00001{transform:matrix(0.242409,-0.003879,0.003999,0.249968,0,0);-ms-transform:matrix(0.242409,-0.003879,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242409,-0.003879,0.003999,0.249968,0,0);}
.m4f7_c00001{transform:matrix(0.242430,0.002667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242430,0.002667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242430,0.002667,-0.002750,0.249985,0,0);}
.m8b6_c00001{transform:matrix(0.242515,-0.005820,0.005998,0.249928,0,0);-ms-transform:matrix(0.242515,-0.005820,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242515,-0.005820,0.005998,0.249928,0,0);}
.m269a_c00001{transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242520,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00001{transform:matrix(0.242546,-0.004851,0.004999,0.249950,0,0);-ms-transform:matrix(0.242546,-0.004851,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242546,-0.004851,0.004999,0.249950,0,0);}
.m64f_c00001{transform:matrix(0.242556,-0.009955,0.010252,0.249790,0,0);-ms-transform:matrix(0.242556,-0.009955,0.010252,0.249790,0,0);-webkit-transform:matrix(0.242556,-0.009955,0.010252,0.249790,0,0);}
.m199f_c00001{transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242565,0.000000,0.000000,0.250000,0,0);}
.m2049_c00001{transform:matrix(0.242603,-0.007521,0.007746,0.249880,0,0);-ms-transform:matrix(0.242603,-0.007521,0.007746,0.249880,0,0);-webkit-transform:matrix(0.242603,-0.007521,0.007746,0.249880,0,0);}
.m1856_c00001{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m2156_c00001{transform:matrix(0.242640,0.006794,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242640,0.006794,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242640,0.006794,-0.006997,0.249902,0,0);}
.m2195_c00001{transform:matrix(0.242696,0.005097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242696,0.005097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242696,0.005097,-0.005249,0.249945,0,0);}
.m2013_c00001{transform:matrix(0.242708,-0.007524,0.007746,0.249880,0,0);-ms-transform:matrix(0.242708,-0.007524,0.007746,0.249880,0,0);-webkit-transform:matrix(0.242708,-0.007524,0.007746,0.249880,0,0);}
.mb87_c00001{transform:matrix(0.242742,0.013378,-0.013757,0.249621,0,0);-ms-transform:matrix(0.242742,0.013378,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.242742,0.013378,-0.013757,0.249621,0,0);}
.m1e8d_c00001{transform:matrix(0.242761,-0.004855,0.004999,0.249950,0,0);-ms-transform:matrix(0.242761,-0.004855,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242761,-0.004855,0.004999,0.249950,0,0);}
.m16a7_c00001{transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);}
.m1d27_c00001{transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242785,0.000000,0.000000,0.250000,0,0);}
.m22df_c00001{transform:matrix(0.242789,0.003885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242789,0.003885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242789,0.003885,-0.003999,0.249968,0,0);}
.m12ac_c00001{transform:matrix(0.242806,0.005585,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242806,0.005585,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242806,0.005585,-0.005748,0.249934,0,0);}
.m24e7_c00001{transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242840,0.000000,0.000000,0.250000,0,0);}
.m29a5_c00001{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m96b_c00001{transform:matrix(0.242904,-0.009240,0.009503,0.249819,0,0);-ms-transform:matrix(0.242904,-0.009240,0.009503,0.249819,0,0);-webkit-transform:matrix(0.242904,-0.009240,0.009503,0.249819,0,0);}
.m25b3_c00001{transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242965,0.000000,0.000000,0.250000,0,0);}
.m1ced_c00001{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m446_c00001{transform:matrix(0.242981,-0.004617,0.004749,0.249955,0,0);-ms-transform:matrix(0.242981,-0.004617,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242981,-0.004617,0.004749,0.249955,0,0);}
.m1eb4_c00001{transform:matrix(0.243023,-0.006319,0.006498,0.249916,0,0);-ms-transform:matrix(0.243023,-0.006319,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243023,-0.006319,0.006498,0.249916,0,0);}
.m254d_c00001{transform:matrix(0.243058,-0.003646,0.003750,0.249972,0,0);-ms-transform:matrix(0.243058,-0.003646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243058,-0.003646,0.003750,0.249972,0,0);}
.m112_c00001{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m27a0_c00001{transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243090,0.000000,0.000000,0.250000,0,0);}
.m22e0_c00001{transform:matrix(0.243109,0.003890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243109,0.003890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243109,0.003890,-0.003999,0.249968,0,0);}
.m1549_c00001{transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);}
.m1832_c00001{transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);}
.m10c_c00001{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m136b_c00001{transform:matrix(0.243158,0.007052,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243158,0.007052,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243158,0.007052,-0.007247,0.249895,0,0);}
.m292c_c00001{transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243180,0.000000,0.000000,0.250000,0,0);}
.m1917_c00001{transform:matrix(0.243195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243195,0.000000,0.000000,0.250000,0,0);}
.m1919_c00001{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m9ba_c00001{transform:matrix(0.243274,-0.009254,0.009503,0.249819,0,0);-ms-transform:matrix(0.243274,-0.009254,0.009503,0.249819,0,0);-webkit-transform:matrix(0.243274,-0.009254,0.009503,0.249819,0,0);}
.m8a1_c00001{transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);}
.mb9c_c00001{transform:matrix(0.243362,0.002920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243362,0.002920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243362,0.002920,-0.003000,0.249982,0,0);}
.m26db_c00001{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.mf86_c00001{transform:matrix(0.243370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243370,0.000000,0.000000,0.250000,0,0);}
.m1efb_c00001{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m27e8_c00001{transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);}
.m26b0_c00001{transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00001{transform:matrix(0.243489,-0.003896,0.003999,0.249968,0,0);-ms-transform:matrix(0.243489,-0.003896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243489,-0.003896,0.003999,0.249968,0,0);}
.m60f_c00001{transform:matrix(0.243556,-0.005115,0.005249,0.249945,0,0);-ms-transform:matrix(0.243556,-0.005115,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243556,-0.005115,0.005249,0.249945,0,0);}
.m1a4b_c00001{transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243565,0.000000,0.000000,0.250000,0,0);}
.m19a4_c00001{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m1388_c00001{transform:matrix(0.243608,-0.006334,0.006498,0.249916,0,0);-ms-transform:matrix(0.243608,-0.006334,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243608,-0.006334,0.006498,0.249916,0,0);}
.m19bc_c00001{transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243615,0.000000,0.000000,0.250000,0,0);}
.m1573_c00001{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m28cb_c00001{transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);}
.m239d_c00001{transform:matrix(0.243643,-0.006335,0.006498,0.249916,0,0);-ms-transform:matrix(0.243643,-0.006335,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243643,-0.006335,0.006498,0.249916,0,0);}
.mf87_c00001{transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);}
.m26e2_c00001{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.mf24_c00001{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.m230a_c00001{transform:matrix(0.243895,0.004390,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243895,0.004390,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243895,0.004390,-0.004499,0.249960,0,0);}
.m14eb_c00001{transform:matrix(0.243942,0.008058,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243942,0.008058,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243942,0.008058,-0.008254,0.249864,0,0);}
.m1160_c00001{transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243985,0.000000,0.000000,0.250000,0,0);}
.m8be_c00001{transform:matrix(0.243995,-0.005856,0.005998,0.249928,0,0);-ms-transform:matrix(0.243995,-0.005856,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243995,-0.005856,0.005998,0.249928,0,0);}
.m5d1_c00001{transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);}
.mb51_c00001{transform:matrix(0.244079,-0.009529,0.009752,0.249810,0,0);-ms-transform:matrix(0.244079,-0.009529,0.009752,0.249810,0,0);-webkit-transform:matrix(0.244079,-0.009529,0.009752,0.249810,0,0);}
.m109d_c00001{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.m2555_c00001{transform:matrix(0.244171,-0.003418,0.003500,0.249976,0,0);-ms-transform:matrix(0.244171,-0.003418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244171,-0.003418,0.003500,0.249976,0,0);}
.m3ab_c00001{transform:matrix(0.244189,-0.003174,0.003250,0.249979,0,0);-ms-transform:matrix(0.244189,-0.003174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244189,-0.003174,0.003250,0.249979,0,0);}
.m18e4_c00001{transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244210,0.000000,0.000000,0.250000,0,0);}
.m2055_c00001{transform:matrix(0.244213,-0.007571,0.007746,0.249880,0,0);-ms-transform:matrix(0.244213,-0.007571,0.007746,0.249880,0,0);-webkit-transform:matrix(0.244213,-0.007571,0.007746,0.249880,0,0);}
.m1b31_c00001{transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244320,0.000000,0.000000,0.250000,0,0);}
.m84f_c00001{transform:matrix(0.244369,-0.006842,0.006997,0.249902,0,0);-ms-transform:matrix(0.244369,-0.006842,0.006997,0.249902,0,0);-webkit-transform:matrix(0.244369,-0.006842,0.006997,0.249902,0,0);}
.m876_c00001{transform:matrix(0.244378,-0.009296,0.009503,0.249819,0,0);-ms-transform:matrix(0.244378,-0.009296,0.009503,0.249819,0,0);-webkit-transform:matrix(0.244378,-0.009296,0.009503,0.249819,0,0);}
.m120b_c00001{transform:matrix(0.244391,-0.005377,0.005499,0.249940,0,0);-ms-transform:matrix(0.244391,-0.005377,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244391,-0.005377,0.005499,0.249940,0,0);}
.m2187_c00001{transform:matrix(0.244449,0.006845,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244449,0.006845,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244449,0.006845,-0.006997,0.249902,0,0);}
.m17ec_c00001{transform:matrix(0.244465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244465,0.000000,0.000000,0.250000,0,0);}
.m19ed_c00001{transform:matrix(0.244514,-0.003912,0.003999,0.249968,0,0);-ms-transform:matrix(0.244514,-0.003912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244514,-0.003912,0.003999,0.249968,0,0);}
.m260a_c00001{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m1f68_c00001{transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);}
.m57d_c00001{transform:matrix(0.244555,0.002690,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244555,0.002690,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244555,0.002690,-0.002750,0.249985,0,0);}
.m2683_c00001{transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);}
.m16a4_c00001{transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);}
.m2373_c00001{transform:matrix(0.244630,0.004403,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244630,0.004403,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244630,0.004403,-0.004499,0.249960,0,0);}
.m140f_c00001{transform:matrix(0.244667,-0.006361,0.006498,0.249916,0,0);-ms-transform:matrix(0.244667,-0.006361,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244667,-0.006361,0.006498,0.249916,0,0);}
.m8a5_c00001{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.me02_c00001{transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244685,0.000000,0.000000,0.250000,0,0);}
.m201_c00001{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.m1465_c00001{transform:matrix(0.244758,0.009310,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244758,0.009310,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244758,0.009310,-0.009503,0.249819,0,0);}
.m252b_c00001{transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);}
.m1057_c00001{transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);}
.m1a85_c00001{transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244810,0.000000,0.000000,0.250000,0,0);}
.m2191_c00001{transform:matrix(0.244829,0.006855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244829,0.006855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244829,0.006855,-0.006997,0.249902,0,0);}
.m4a3_c00001{transform:matrix(0.244869,-0.010050,0.010252,0.249790,0,0);-ms-transform:matrix(0.244869,-0.010050,0.010252,0.249790,0,0);-webkit-transform:matrix(0.244869,-0.010050,0.010252,0.249790,0,0);}
.m2974_c00001{transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);}
.m27b0_c00001{transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244980,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00001{transform:matrix(0.244989,-0.003920,0.003999,0.249968,0,0);-ms-transform:matrix(0.244989,-0.003920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244989,-0.003920,0.003999,0.249968,0,0);}
.m2935_c00001{transform:matrix(0.244990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244990,0.000000,0.000000,0.250000,0,0);}
.m25b5_c00001{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m175d_c00001{transform:matrix(0.245052,-0.006371,0.006498,0.249916,0,0);-ms-transform:matrix(0.245052,-0.006371,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245052,-0.006371,0.006498,0.249916,0,0);}
.m2927_c00001{transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);}
.m22cd_c00001{transform:matrix(0.245099,0.003922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245099,0.003922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245099,0.003922,-0.003999,0.249968,0,0);}
.mfb2_c00001{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m1b1f_c00001{transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);}
.m2423_c00001{transform:matrix(0.245111,-0.005392,0.005499,0.249940,0,0);-ms-transform:matrix(0.245111,-0.005392,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245111,-0.005392,0.005499,0.249940,0,0);}
.md43_c00001{transform:matrix(0.245202,-0.007111,0.007247,0.249895,0,0);-ms-transform:matrix(0.245202,-0.007111,0.007247,0.249895,0,0);-webkit-transform:matrix(0.245202,-0.007111,0.007247,0.249895,0,0);}
.m2784_c00001{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.me34_c00001{transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);}
.m1723_c00001{transform:matrix(0.245322,-0.006378,0.006498,0.249916,0,0);-ms-transform:matrix(0.245322,-0.006378,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245322,-0.006378,0.006498,0.249916,0,0);}
.m18e5_c00001{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m2506_c00001{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.m27e4_c00001{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.mb91_c00001{transform:matrix(0.245444,0.003191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245444,0.003191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245444,0.003191,-0.003250,0.249979,0,0);}
.m1148_c00001{transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);}
.m28cf_c00001{transform:matrix(0.245517,0.002946,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245517,0.002946,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245517,0.002946,-0.003000,0.249982,0,0);}
.m224b_c00001{transform:matrix(0.245586,-0.005157,0.005249,0.249945,0,0);-ms-transform:matrix(0.245586,-0.005157,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245586,-0.005157,0.005249,0.249945,0,0);}
.m7a7_c00001{transform:matrix(0.245704,-0.006880,0.006997,0.249902,0,0);-ms-transform:matrix(0.245704,-0.006880,0.006997,0.249902,0,0);-webkit-transform:matrix(0.245704,-0.006880,0.006997,0.249902,0,0);}
.m1317_c00001{transform:matrix(0.245735,0.006635,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245735,0.006635,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245735,0.006635,-0.006748,0.249909,0,0);}
.m1562_c00001{transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);}
.m939_c00001{transform:matrix(0.245752,-0.009348,0.009503,0.249819,0,0);-ms-transform:matrix(0.245752,-0.009348,0.009503,0.249819,0,0);-webkit-transform:matrix(0.245752,-0.009348,0.009503,0.249819,0,0);}
.m1598_c00001{transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);}
.m61c_c00001{transform:matrix(0.245767,-0.010579,0.010751,0.249769,0,0);-ms-transform:matrix(0.245767,-0.010579,0.010751,0.249769,0,0);-webkit-transform:matrix(0.245767,-0.010579,0.010751,0.249769,0,0);}
.m1774_c00001{transform:matrix(0.245777,-0.006390,0.006498,0.249916,0,0);-ms-transform:matrix(0.245777,-0.006390,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245777,-0.006390,0.006498,0.249916,0,0);}
.m96c_c00001{transform:matrix(0.245797,-0.009350,0.009503,0.249819,0,0);-ms-transform:matrix(0.245797,-0.009350,0.009503,0.249819,0,0);-webkit-transform:matrix(0.245797,-0.009350,0.009503,0.249819,0,0);}
.m429_c00001{transform:matrix(0.245801,-0.004670,0.004749,0.249955,0,0);-ms-transform:matrix(0.245801,-0.004670,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245801,-0.004670,0.004749,0.249955,0,0);}
.m1775_c00001{transform:matrix(0.245807,-0.006391,0.006498,0.249916,0,0);-ms-transform:matrix(0.245807,-0.006391,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245807,-0.006391,0.006498,0.249916,0,0);}
.m2053_c00001{transform:matrix(0.245847,-0.007621,0.007746,0.249880,0,0);-ms-transform:matrix(0.245847,-0.007621,0.007746,0.249880,0,0);-webkit-transform:matrix(0.245847,-0.007621,0.007746,0.249880,0,0);}
.m1dcd_c00001{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m3c8_c00001{transform:matrix(0.246056,-0.008128,0.008254,0.249864,0,0);-ms-transform:matrix(0.246056,-0.008128,0.008254,0.249864,0,0);-webkit-transform:matrix(0.246056,-0.008128,0.008254,0.249864,0,0);}
.m252e_c00001{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.m19e9_c00001{transform:matrix(0.246094,-0.003937,0.003999,0.249968,0,0);-ms-transform:matrix(0.246094,-0.003937,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246094,-0.003937,0.003999,0.249968,0,0);}
.m1c6a_c00001{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m306_c00001{transform:matrix(0.246134,-0.003200,0.003250,0.249979,0,0);-ms-transform:matrix(0.246134,-0.003200,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246134,-0.003200,0.003250,0.249979,0,0);}
.m1f57_c00001{transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);}
.m198b_c00001{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m1ff4_c00001{transform:matrix(0.246193,-0.006155,0.006248,0.249922,0,0);-ms-transform:matrix(0.246193,-0.006155,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246193,-0.006155,0.006248,0.249922,0,0);}
.m1f08_c00001{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m25f7_c00001{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m2993_c00001{transform:matrix(0.246343,-0.003941,0.003999,0.249968,0,0);-ms-transform:matrix(0.246343,-0.003941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246343,-0.003941,0.003999,0.249968,0,0);}
.m24b3_c00001{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.m1298_c00001{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.m263c_c00001{transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);}
.m996_c00001{transform:matrix(0.246382,-0.009372,0.009503,0.249819,0,0);-ms-transform:matrix(0.246382,-0.009372,0.009503,0.249819,0,0);-webkit-transform:matrix(0.246382,-0.009372,0.009503,0.249819,0,0);}
.m2ce_c00001{transform:matrix(0.246400,-0.002710,0.002750,0.249985,0,0);-ms-transform:matrix(0.246400,-0.002710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246400,-0.002710,0.002750,0.249985,0,0);}
.m2748_c00001{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.m27c3_c00001{transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);}
.m2970_c00001{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m1dd3_c00001{transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);}
.m1f70_c00001{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m54d_c00001{transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);}
.me57_c00001{transform:matrix(0.246595,0.004439,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246595,0.004439,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246595,0.004439,-0.004499,0.249960,0,0);}
.m19c1_c00001{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m255f_c00001{transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);-ms-transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);}
.m1aca_c00001{transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246655,0.000000,0.000000,0.250000,0,0);}
.m169d_c00001{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.ma7a_c00001{transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);}
.m105c_c00001{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m8c3_c00001{transform:matrix(0.246709,-0.005921,0.005998,0.249928,0,0);-ms-transform:matrix(0.246709,-0.005921,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246709,-0.005921,0.005998,0.249928,0,0);}
.m1288_c00001{transform:matrix(0.246740,-0.006662,0.006748,0.249909,0,0);-ms-transform:matrix(0.246740,-0.006662,0.006748,0.249909,0,0);-webkit-transform:matrix(0.246740,-0.006662,0.006748,0.249909,0,0);}
.mb42_c00001{transform:matrix(0.246772,-0.009634,0.009752,0.249810,0,0);-ms-transform:matrix(0.246772,-0.009634,0.009752,0.249810,0,0);-webkit-transform:matrix(0.246772,-0.009634,0.009752,0.249810,0,0);}
.m1633_c00001{transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);}
.m1c5b_c00001{transform:matrix(0.246930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246930,0.000000,0.000000,0.250000,0,0);}
.m1886_c00001{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m2633_c00001{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m23e7_c00001{transform:matrix(0.246980,-0.005434,0.005499,0.249940,0,0);-ms-transform:matrix(0.246980,-0.005434,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246980,-0.005434,0.005499,0.249940,0,0);}
.m240f_c00001{transform:matrix(0.247025,-0.005435,0.005499,0.249940,0,0);-ms-transform:matrix(0.247025,-0.005435,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247025,-0.005435,0.005499,0.249940,0,0);}
.m28d8_c00001{transform:matrix(0.247040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247040,0.000000,0.000000,0.250000,0,0);}
.m974_c00001{transform:matrix(0.247061,-0.009398,0.009503,0.249819,0,0);-ms-transform:matrix(0.247061,-0.009398,0.009503,0.249819,0,0);-webkit-transform:matrix(0.247061,-0.009398,0.009503,0.249819,0,0);}
.m6e4_c00001{transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);}
.m3d_c00001{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m15e3_c00001{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m928_c00001{transform:matrix(0.247111,-0.009400,0.009503,0.249819,0,0);-ms-transform:matrix(0.247111,-0.009400,0.009503,0.249819,0,0);-webkit-transform:matrix(0.247111,-0.009400,0.009503,0.249819,0,0);}
.m121e_c00001{transform:matrix(0.247150,-0.006673,0.006748,0.249909,0,0);-ms-transform:matrix(0.247150,-0.006673,0.006748,0.249909,0,0);-webkit-transform:matrix(0.247150,-0.006673,0.006748,0.249909,0,0);}
.m29fa_c00001{transform:matrix(0.247168,-0.007917,0.008004,0.249872,0,0);-ms-transform:matrix(0.247168,-0.007917,0.008004,0.249872,0,0);-webkit-transform:matrix(0.247168,-0.007917,0.008004,0.249872,0,0);}
.m28b6_c00001{transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);}
.m1b68_c00001{transform:matrix(0.247235,-0.004697,0.004749,0.249955,0,0);-ms-transform:matrix(0.247235,-0.004697,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247235,-0.004697,0.004749,0.249955,0,0);}
.m3bb_c00001{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2779_c00001{transform:matrix(0.247252,-0.003709,0.003750,0.249972,0,0);-ms-transform:matrix(0.247252,-0.003709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247252,-0.003709,0.003750,0.249972,0,0);}
.m1526_c00001{transform:matrix(0.247355,0.008171,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247355,0.008171,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247355,0.008171,-0.008254,0.249864,0,0);}
.m5f7_c00001{transform:matrix(0.247361,-0.010400,0.010501,0.249779,0,0);-ms-transform:matrix(0.247361,-0.010400,0.010501,0.249779,0,0);-webkit-transform:matrix(0.247361,-0.010400,0.010501,0.249779,0,0);}
.m292f_c00001{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m2447_c00001{transform:matrix(0.247460,-0.005444,0.005499,0.249940,0,0);-ms-transform:matrix(0.247460,-0.005444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247460,-0.005444,0.005499,0.249940,0,0);}
.m2588_c00001{transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);-ms-transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);}
.m1d02_c00001{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m2953_c00001{transform:matrix(0.247502,-0.002970,0.003000,0.249982,0,0);-ms-transform:matrix(0.247502,-0.002970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247502,-0.002970,0.003000,0.249982,0,0);}
.m1b53_c00001{transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);}
.m69e_c00001{transform:matrix(0.247547,-0.010160,0.010252,0.249790,0,0);-ms-transform:matrix(0.247547,-0.010160,0.010252,0.249790,0,0);-webkit-transform:matrix(0.247547,-0.010160,0.010252,0.249790,0,0);}
.m1fd9_c00001{transform:matrix(0.247548,-0.006189,0.006248,0.249922,0,0);-ms-transform:matrix(0.247548,-0.006189,0.006248,0.249922,0,0);-webkit-transform:matrix(0.247548,-0.006189,0.006248,0.249922,0,0);}
.m25e8_c00001{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m14e7_c00001{transform:matrix(0.247585,0.008178,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247585,0.008178,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247585,0.008178,-0.008254,0.249864,0,0);}
.m1d98_c00001{transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);}
.m2775_c00001{transform:matrix(0.247687,-0.003715,0.003750,0.249972,0,0);-ms-transform:matrix(0.247687,-0.003715,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247687,-0.003715,0.003750,0.249972,0,0);}
.m11ad_c00001{transform:matrix(0.247745,-0.005450,0.005499,0.249940,0,0);-ms-transform:matrix(0.247745,-0.005450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247745,-0.005450,0.005499,0.249940,0,0);}
.m23bf_c00001{transform:matrix(0.247750,-0.005451,0.005499,0.249940,0,0);-ms-transform:matrix(0.247750,-0.005451,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247750,-0.005451,0.005499,0.249940,0,0);}
.m2612_c00001{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.m1b71_c00001{transform:matrix(0.247780,-0.004708,0.004749,0.249955,0,0);-ms-transform:matrix(0.247780,-0.004708,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247780,-0.004708,0.004749,0.249955,0,0);}
.m1328_c00001{transform:matrix(0.247801,0.007186,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247801,0.007186,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247801,0.007186,-0.007247,0.249895,0,0);}
.m186d_c00001{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.m86c_c00001{transform:matrix(0.247908,-0.006941,0.006997,0.249902,0,0);-ms-transform:matrix(0.247908,-0.006941,0.006997,0.249902,0,0);-webkit-transform:matrix(0.247908,-0.006941,0.006997,0.249902,0,0);}
.m2276_c00001{transform:matrix(0.247934,-0.005702,0.005748,0.249934,0,0);-ms-transform:matrix(0.247934,-0.005702,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247934,-0.005702,0.005748,0.249934,0,0);}
.m1dfb_c00001{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m372_c00001{transform:matrix(0.248089,-0.003225,0.003250,0.249979,0,0);-ms-transform:matrix(0.248089,-0.003225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248089,-0.003225,0.003250,0.249979,0,0);}
.m8f7_c00001{transform:matrix(0.248091,-0.009437,0.009503,0.249819,0,0);-ms-transform:matrix(0.248091,-0.009437,0.009503,0.249819,0,0);-webkit-transform:matrix(0.248091,-0.009437,0.009503,0.249819,0,0);}
.m1d28_c00001{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m8ed_c00001{transform:matrix(0.248146,-0.009439,0.009503,0.249819,0,0);-ms-transform:matrix(0.248146,-0.009439,0.009503,0.249819,0,0);-webkit-transform:matrix(0.248146,-0.009439,0.009503,0.249819,0,0);}
.m1dc9_c00001{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m1789_c00001{transform:matrix(0.248231,-0.006454,0.006498,0.249916,0,0);-ms-transform:matrix(0.248231,-0.006454,0.006498,0.249916,0,0);-webkit-transform:matrix(0.248231,-0.006454,0.006498,0.249916,0,0);}
.m145b_c00001{transform:matrix(0.248240,-0.006702,0.006748,0.249909,0,0);-ms-transform:matrix(0.248240,-0.006702,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248240,-0.006702,0.006748,0.249909,0,0);}
.m26c3_c00001{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.mb92_c00001{transform:matrix(0.248299,0.003228,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248299,0.003228,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248299,0.003228,-0.003250,0.249979,0,0);}
.m199d_c00001{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m206a_c00001{transform:matrix(0.248351,-0.007699,0.007746,0.249880,0,0);-ms-transform:matrix(0.248351,-0.007699,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248351,-0.007699,0.007746,0.249880,0,0);}
.m2333_c00001{transform:matrix(0.248400,0.004471,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248400,0.004471,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248400,0.004471,-0.004499,0.249960,0,0);}
.m17ac_c00001{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m2c2_c00001{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m78f_c00001{transform:matrix(0.248504,0.005716,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248504,0.005716,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248504,0.005716,-0.005748,0.249934,0,0);}
.m226_c00001{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m2376_c00001{transform:matrix(0.248715,0.004477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248715,0.004477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248715,0.004477,-0.004499,0.249960,0,0);}
.m1da0_c00001{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m125a_c00001{transform:matrix(0.248759,-0.006717,0.006748,0.249909,0,0);-ms-transform:matrix(0.248759,-0.006717,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248759,-0.006717,0.006748,0.249909,0,0);}
.meb1_c00001{transform:matrix(0.248766,0.003483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248766,0.003483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248766,0.003483,-0.003500,0.249976,0,0);}
.m1889_c00001{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.mef0_c00001{transform:matrix(0.248829,0.003235,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248829,0.003235,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248829,0.003235,-0.003250,0.249979,0,0);}
.m1c7_c00001{transform:matrix(0.248833,-0.003981,0.003999,0.249968,0,0);-ms-transform:matrix(0.248833,-0.003981,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248833,-0.003981,0.003999,0.249968,0,0);}
.me55_c00001{transform:matrix(0.248855,0.004479,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248855,0.004479,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248855,0.004479,-0.004499,0.249960,0,0);}
.m29f1_c00001{transform:matrix(0.248872,-0.007972,0.008004,0.249872,0,0);-ms-transform:matrix(0.248872,-0.007972,0.008004,0.249872,0,0);-webkit-transform:matrix(0.248872,-0.007972,0.008004,0.249872,0,0);}
.m1ef0_c00001{transform:matrix(0.248896,-0.006471,0.006498,0.249916,0,0);-ms-transform:matrix(0.248896,-0.006471,0.006498,0.249916,0,0);-webkit-transform:matrix(0.248896,-0.006471,0.006498,0.249916,0,0);}
.m1008_c00001{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m2355_c00001{transform:matrix(0.248915,0.004480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248915,0.004480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248915,0.004480,-0.004499,0.249960,0,0);}
.m1da1_c00001{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m26ad_c00001{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m814_c00001{transform:matrix(0.249072,-0.006974,0.006997,0.249902,0,0);-ms-transform:matrix(0.249072,-0.006974,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249072,-0.006974,0.006997,0.249902,0,0);}
.m3f1_c00001{transform:matrix(0.249110,-0.005231,0.005249,0.249945,0,0);-ms-transform:matrix(0.249110,-0.005231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249110,-0.005231,0.005249,0.249945,0,0);}
.m1d0f_c00001{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m2461_c00001{transform:matrix(0.249190,-0.005482,0.005499,0.249940,0,0);-ms-transform:matrix(0.249190,-0.005482,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249190,-0.005482,0.005499,0.249940,0,0);}
.m158b_c00001{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m1c10_c00001{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m566_c00001{transform:matrix(0.249230,0.002742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249230,0.002742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249230,0.002742,-0.002750,0.249985,0,0);}
.md2a_c00001{transform:matrix(0.249230,-0.007228,0.007247,0.249895,0,0);-ms-transform:matrix(0.249230,-0.007228,0.007247,0.249895,0,0);-webkit-transform:matrix(0.249230,-0.007228,0.007247,0.249895,0,0);}
.m1add_c00001{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m19c7_c00001{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m25f1_c00001{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m84b_c00001{transform:matrix(0.249292,-0.006980,0.006997,0.249902,0,0);-ms-transform:matrix(0.249292,-0.006980,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249292,-0.006980,0.006997,0.249902,0,0);}
.m458_c00001{transform:matrix(0.249314,-0.008236,0.008254,0.249864,0,0);-ms-transform:matrix(0.249314,-0.008236,0.008254,0.249864,0,0);-webkit-transform:matrix(0.249314,-0.008236,0.008254,0.249864,0,0);}
.m10b_c00001{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m2271_c00001{transform:matrix(0.249335,-0.004488,0.004499,0.249960,0,0);-ms-transform:matrix(0.249335,-0.004488,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249335,-0.004488,0.004499,0.249960,0,0);}
.m1245_c00001{transform:matrix(0.249344,-0.006732,0.006748,0.249909,0,0);-ms-transform:matrix(0.249344,-0.006732,0.006748,0.249909,0,0);-webkit-transform:matrix(0.249344,-0.006732,0.006748,0.249909,0,0);}
.m26d1_c00001{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m2455_c00001{transform:matrix(0.249380,-0.005486,0.005499,0.249940,0,0);-ms-transform:matrix(0.249380,-0.005486,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249380,-0.005486,0.005499,0.249940,0,0);}
.m1081_c00001{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m18cc_c00001{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mfc6_c00001{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m2629_c00001{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m1d0d_c00001{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m14b1_c00001{transform:matrix(0.249559,0.008244,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249559,0.008244,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249559,0.008244,-0.008254,0.249864,0,0);}
.m175b_c00001{transform:matrix(0.249591,-0.006489,0.006498,0.249916,0,0);-ms-transform:matrix(0.249591,-0.006489,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249591,-0.006489,0.006498,0.249916,0,0);}
.m25ed_c00001{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m1d1a_c00001{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m141f_c00001{transform:matrix(0.249741,-0.006493,0.006498,0.249916,0,0);-ms-transform:matrix(0.249741,-0.006493,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249741,-0.006493,0.006498,0.249916,0,0);}
.m24f6_c00001{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m1dbc_c00001{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m402_c00001{transform:matrix(0.249920,-0.005248,0.005249,0.249945,0,0);-ms-transform:matrix(0.249920,-0.005248,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249920,-0.005248,0.005249,0.249945,0,0);}
.m251b_c00001{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m82b_c00001{transform:matrix(0.250007,-0.007000,0.006997,0.249902,0,0);-ms-transform:matrix(0.250007,-0.007000,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250007,-0.007000,0.006997,0.249902,0,0);}
.m2313_c00001{transform:matrix(0.250109,0.004502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250109,0.004502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250109,0.004502,-0.004499,0.249960,0,0);}
.m209b_c00001{transform:matrix(0.250125,-0.007754,0.007746,0.249880,0,0);-ms-transform:matrix(0.250125,-0.007754,0.007746,0.249880,0,0);-webkit-transform:matrix(0.250125,-0.007754,0.007746,0.249880,0,0);}
.m196b_c00001{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m1cec_c00001{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m2064_c00001{transform:matrix(0.250280,-0.007759,0.007746,0.249880,0,0);-ms-transform:matrix(0.250280,-0.007759,0.007746,0.249880,0,0);-webkit-transform:matrix(0.250280,-0.007759,0.007746,0.249880,0,0);}
.m1adf_c00001{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m604_c00001{transform:matrix(0.250404,-0.010527,0.010501,0.249779,0,0);-ms-transform:matrix(0.250404,-0.010527,0.010501,0.249779,0,0);-webkit-transform:matrix(0.250404,-0.010527,0.010501,0.249779,0,0);}
.m2895_c00001{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m1e6f_c00001{transform:matrix(0.250470,-0.006512,0.006498,0.249916,0,0);-ms-transform:matrix(0.250470,-0.006512,0.006498,0.249916,0,0);-webkit-transform:matrix(0.250470,-0.006512,0.006498,0.249916,0,0);}
.me7c_c00001{transform:matrix(0.250545,0.003508,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250545,0.003508,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250545,0.003508,-0.003500,0.249976,0,0);}
.m10fd_c00001{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m144b_c00001{transform:matrix(0.250619,-0.006767,0.006748,0.249909,0,0);-ms-transform:matrix(0.250619,-0.006767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250619,-0.006767,0.006748,0.249909,0,0);}
.m28d5_c00001{transform:matrix(0.250622,0.003007,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250622,0.003007,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250622,0.003007,-0.003000,0.249982,0,0);}
.m643_c00001{transform:matrix(0.250649,-0.010287,0.010252,0.249790,0,0);-ms-transform:matrix(0.250649,-0.010287,0.010252,0.249790,0,0);-webkit-transform:matrix(0.250649,-0.010287,0.010252,0.249790,0,0);}
.m627_c00001{transform:matrix(0.250668,-0.010790,0.010751,0.249769,0,0);-ms-transform:matrix(0.250668,-0.010790,0.010751,0.249769,0,0);-webkit-transform:matrix(0.250668,-0.010790,0.010751,0.249769,0,0);}
.m1c6b_c00001{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m940_c00001{transform:matrix(0.250809,-0.009540,0.009503,0.249819,0,0);-ms-transform:matrix(0.250809,-0.009540,0.009503,0.249819,0,0);-webkit-transform:matrix(0.250809,-0.009540,0.009503,0.249819,0,0);}
.m1daf_c00001{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m1449_c00001{transform:matrix(0.250949,-0.006776,0.006748,0.249909,0,0);-ms-transform:matrix(0.250949,-0.006776,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250949,-0.006776,0.006748,0.249909,0,0);}
.m1b55_c00001{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.me73_c00001{transform:matrix(0.251080,0.003515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251080,0.003515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251080,0.003515,-0.003500,0.249976,0,0);}
.m24f_c00001{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m2632_c00001{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m1cfe_c00001{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m10b3_c00001{transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m11fe_c00001{transform:matrix(0.251319,-0.005529,0.005499,0.249940,0,0);-ms-transform:matrix(0.251319,-0.005529,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251319,-0.005529,0.005499,0.249940,0,0);}
.m1b51_c00001{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m1479_c00001{transform:matrix(0.251423,0.008305,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251423,0.008305,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251423,0.008305,-0.008254,0.249864,0,0);}
.m786_c00001{transform:matrix(0.251429,0.005783,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251429,0.005783,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251429,0.005783,-0.005748,0.249934,0,0);}
.m203_c00001{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m1ddf_c00001{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.m44c_c00001{transform:matrix(0.251485,-0.004778,0.004749,0.249955,0,0);-ms-transform:matrix(0.251485,-0.004778,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251485,-0.004778,0.004749,0.249955,0,0);}
.m1685_c00001{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.mfdb_c00001{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.m1b11_c00001{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m14fd_c00001{transform:matrix(0.251603,0.008311,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251603,0.008311,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251603,0.008311,-0.008254,0.249864,0,0);}
.me11_c00001{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.m145a_c00001{transform:matrix(0.251773,-0.006798,0.006748,0.249909,0,0);-ms-transform:matrix(0.251773,-0.006798,0.006748,0.249909,0,0);-webkit-transform:matrix(0.251773,-0.006798,0.006748,0.249909,0,0);}
.m2063_c00001{transform:matrix(0.251809,-0.007806,0.007746,0.249880,0,0);-ms-transform:matrix(0.251809,-0.007806,0.007746,0.249880,0,0);-webkit-transform:matrix(0.251809,-0.007806,0.007746,0.249880,0,0);}
.maf1_c00001{transform:matrix(0.251823,-0.009831,0.009752,0.249810,0,0);-ms-transform:matrix(0.251823,-0.009831,0.009752,0.249810,0,0);-webkit-transform:matrix(0.251823,-0.009831,0.009752,0.249810,0,0);}
.m6b4_c00001{transform:matrix(0.251833,0.005792,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251833,0.005792,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251833,0.005792,-0.005748,0.249934,0,0);}
.m2894_c00001{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.md30_c00001{transform:matrix(0.251954,-0.007307,0.007247,0.249895,0,0);-ms-transform:matrix(0.251954,-0.007307,0.007247,0.249895,0,0);-webkit-transform:matrix(0.251954,-0.007307,0.007247,0.249895,0,0);}
.m272a_c00001{transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);}
.m738_c00001{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.ma22_c00001{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.m37f_c00001{transform:matrix(0.252059,-0.003277,0.003250,0.249979,0,0);-ms-transform:matrix(0.252059,-0.003277,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252059,-0.003277,0.003250,0.249979,0,0);}
.m620_c00001{transform:matrix(0.252082,-0.010850,0.010751,0.249769,0,0);-ms-transform:matrix(0.252082,-0.010850,0.010751,0.249769,0,0);-webkit-transform:matrix(0.252082,-0.010850,0.010751,0.249769,0,0);}
.m471_c00001{transform:matrix(0.252139,-0.008581,0.008504,0.249855,0,0);-ms-transform:matrix(0.252139,-0.008581,0.008504,0.249855,0,0);-webkit-transform:matrix(0.252139,-0.008581,0.008504,0.249855,0,0);}
.m140d_c00001{transform:matrix(0.252165,-0.006556,0.006498,0.249916,0,0);-ms-transform:matrix(0.252165,-0.006556,0.006498,0.249916,0,0);-webkit-transform:matrix(0.252165,-0.006556,0.006498,0.249916,0,0);}
.m1ad8_c00001{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.m266e_c00001{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.m1f09_c00001{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m26ef_c00001{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.ma89_c00001{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m17e3_c00001{transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);}
.md44_c00001{transform:matrix(0.252309,-0.007317,0.007247,0.249895,0,0);-ms-transform:matrix(0.252309,-0.007317,0.007247,0.249895,0,0);-webkit-transform:matrix(0.252309,-0.007317,0.007247,0.249895,0,0);}
.m12e_c00001{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.me06_c00001{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m8d4_c00001{transform:matrix(0.252447,-0.006059,0.005998,0.249928,0,0);-ms-transform:matrix(0.252447,-0.006059,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252447,-0.006059,0.005998,0.249928,0,0);}
.m5f2_c00001{transform:matrix(0.252552,-0.010618,0.010501,0.249779,0,0);-ms-transform:matrix(0.252552,-0.010618,0.010501,0.249779,0,0);-webkit-transform:matrix(0.252552,-0.010618,0.010501,0.249779,0,0);}
.m199_c00001{transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);}
.m2776_c00001{transform:matrix(0.252657,-0.003790,0.003750,0.249972,0,0);-ms-transform:matrix(0.252657,-0.003790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252657,-0.003790,0.003750,0.249972,0,0);}
.m607_c00001{transform:matrix(0.252712,-0.010625,0.010501,0.249779,0,0);-ms-transform:matrix(0.252712,-0.010625,0.010501,0.249779,0,0);-webkit-transform:matrix(0.252712,-0.010625,0.010501,0.249779,0,0);}
.m2803_c00001{transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);}
.m2002_c00001{transform:matrix(0.252811,-0.006320,0.006248,0.249922,0,0);-ms-transform:matrix(0.252811,-0.006320,0.006248,0.249922,0,0);-webkit-transform:matrix(0.252811,-0.006320,0.006248,0.249922,0,0);}
.m25fe_c00001{transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);}
.m1cd1_c00001{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m14d7_c00001{transform:matrix(0.252957,0.008356,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252957,0.008356,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252957,0.008356,-0.008254,0.249864,0,0);}
.m18ba_c00001{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1204_c00001{transform:matrix(0.253054,-0.005567,0.005499,0.249940,0,0);-ms-transform:matrix(0.253054,-0.005567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253054,-0.005567,0.005499,0.249940,0,0);}
.m1044_c00001{transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);}
.m195b_c00001{transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);}
.m85e_c00001{transform:matrix(0.253261,-0.007091,0.006997,0.249902,0,0);-ms-transform:matrix(0.253261,-0.007091,0.006997,0.249902,0,0);-webkit-transform:matrix(0.253261,-0.007091,0.006997,0.249902,0,0);}
.m111d_c00001{transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);}
.m13a_c00001{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m120a_c00001{transform:matrix(0.253329,-0.005573,0.005499,0.249940,0,0);-ms-transform:matrix(0.253329,-0.005573,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253329,-0.005573,0.005499,0.249940,0,0);}
.m1213_c00001{transform:matrix(0.253338,-0.006840,0.006748,0.249909,0,0);-ms-transform:matrix(0.253338,-0.006840,0.006748,0.249909,0,0);-webkit-transform:matrix(0.253338,-0.006840,0.006748,0.249909,0,0);}
.med4_c00001{transform:matrix(0.253425,0.003548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253425,0.003548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253425,0.003548,-0.003500,0.249976,0,0);}
.m135f_c00001{transform:matrix(0.253433,0.007350,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253433,0.007350,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253433,0.007350,-0.007247,0.249895,0,0);}
.m247a_c00001{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.mc5e_c00001{transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);}
.m29c3_c00001{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m1a20_c00001{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m1995_c00001{transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);}
.m281c_c00001{transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);}
.m285e_c00001{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.m63b_c00001{transform:matrix(0.253978,-0.008644,0.008504,0.249855,0,0);-ms-transform:matrix(0.253978,-0.008644,0.008504,0.249855,0,0);-webkit-transform:matrix(0.253978,-0.008644,0.008504,0.249855,0,0);}
.m8cf_c00001{transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-ms-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253992,-0.006096,0.005998,0.249928,0,0);}
.m198c_c00001{transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);}
.m1fa8_c00001{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.m1744_c00001{transform:matrix(0.254079,-0.006606,0.006498,0.249916,0,0);-ms-transform:matrix(0.254079,-0.006606,0.006498,0.249916,0,0);-webkit-transform:matrix(0.254079,-0.006606,0.006498,0.249916,0,0);}
.m1efc_c00001{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m146f_c00001{transform:matrix(0.254196,0.008397,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254196,0.008397,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254196,0.008397,-0.008254,0.249864,0,0);}
.m1b67_c00001{transform:matrix(0.254204,-0.004830,0.004749,0.249955,0,0);-ms-transform:matrix(0.254204,-0.004830,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254204,-0.004830,0.004749,0.249955,0,0);}
.m2907_c00001{transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);}
.maf3_c00001{transform:matrix(0.254266,-0.009926,0.009752,0.249810,0,0);-ms-transform:matrix(0.254266,-0.009926,0.009752,0.249810,0,0);-webkit-transform:matrix(0.254266,-0.009926,0.009752,0.249810,0,0);}
.m1329_c00001{transform:matrix(0.254308,0.007375,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254308,0.007375,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254308,0.007375,-0.007247,0.249895,0,0);}
.m1ecd_c00001{transform:matrix(0.254344,-0.006613,0.006498,0.249916,0,0);-ms-transform:matrix(0.254344,-0.006613,0.006498,0.249916,0,0);-webkit-transform:matrix(0.254344,-0.006613,0.006498,0.249916,0,0);}
.m1037_c00001{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m8e7_c00001{transform:matrix(0.254366,-0.009676,0.009503,0.249819,0,0);-ms-transform:matrix(0.254366,-0.009676,0.009503,0.249819,0,0);-webkit-transform:matrix(0.254366,-0.009676,0.009503,0.249819,0,0);}
.m1b06_c00001{transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);}
.m1247_c00001{transform:matrix(0.254492,-0.006871,0.006748,0.249909,0,0);-ms-transform:matrix(0.254492,-0.006871,0.006748,0.249909,0,0);-webkit-transform:matrix(0.254492,-0.006871,0.006748,0.249909,0,0);}
.m1290_c00001{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.md85_c00001{transform:matrix(0.254623,0.003310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254623,0.003310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254623,0.003310,-0.003250,0.249979,0,0);}
.m149b_c00001{transform:matrix(0.254626,0.008411,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254626,0.008411,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254626,0.008411,-0.008254,0.249864,0,0);}
.m28a1_c00001{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m1209_c00001{transform:matrix(0.254728,-0.005604,0.005499,0.249940,0,0);-ms-transform:matrix(0.254728,-0.005604,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254728,-0.005604,0.005499,0.249940,0,0);}
.m1c6f_c00001{transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);}
.m22b8_c00001{transform:matrix(0.254902,0.004078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254902,0.004078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254902,0.004078,-0.003999,0.249968,0,0);}
.m2918_c00001{transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);}
.m17cb_c00001{transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);}
.m9a6_c00001{transform:matrix(0.255255,-0.009709,0.009503,0.249819,0,0);-ms-transform:matrix(0.255255,-0.009709,0.009503,0.249819,0,0);-webkit-transform:matrix(0.255255,-0.009709,0.009503,0.249819,0,0);}
.m1706_c00001{transform:matrix(0.255474,-0.006642,0.006498,0.249916,0,0);-ms-transform:matrix(0.255474,-0.006642,0.006498,0.249916,0,0);-webkit-transform:matrix(0.255474,-0.006642,0.006498,0.249916,0,0);}
.mfad_c00001{transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);}
.m298_c00001{transform:matrix(0.255617,-0.003067,0.003000,0.249982,0,0);-ms-transform:matrix(0.255617,-0.003067,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255617,-0.003067,0.003000,0.249982,0,0);}
.macc_c00001{transform:matrix(0.255630,-0.009980,0.009752,0.249810,0,0);-ms-transform:matrix(0.255630,-0.009980,0.009752,0.249810,0,0);-webkit-transform:matrix(0.255630,-0.009980,0.009752,0.249810,0,0);}
.m2507_c00001{transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);}
.m1079_c00001{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m46e_c00001{transform:matrix(0.255677,-0.008702,0.008504,0.249855,0,0);-ms-transform:matrix(0.255677,-0.008702,0.008504,0.249855,0,0);-webkit-transform:matrix(0.255677,-0.008702,0.008504,0.249855,0,0);}
.m293a_c00001{transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255710,0.000000,0.000000,0.250000,0,0);}
.m236a_c00001{transform:matrix(0.255714,0.004603,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255714,0.004603,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255714,0.004603,-0.004499,0.249960,0,0);}
.m7e0_c00001{transform:matrix(0.255765,-0.007161,0.006997,0.249902,0,0);-ms-transform:matrix(0.255765,-0.007161,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255765,-0.007161,0.006997,0.249902,0,0);}
.m109e_c00001{transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);}
.m275a_c00001{transform:matrix(0.255796,-0.003837,0.003750,0.249972,0,0);-ms-transform:matrix(0.255796,-0.003837,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255796,-0.003837,0.003750,0.249972,0,0);}
.m1675_c00001{transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);}
.m848_c00001{transform:matrix(0.256050,-0.007169,0.006997,0.249902,0,0);-ms-transform:matrix(0.256050,-0.007169,0.006997,0.249902,0,0);-webkit-transform:matrix(0.256050,-0.007169,0.006997,0.249902,0,0);}
.mc97_c00001{transform:matrix(0.256142,-0.007428,0.007247,0.249895,0,0);-ms-transform:matrix(0.256142,-0.007428,0.007247,0.249895,0,0);-webkit-transform:matrix(0.256142,-0.007428,0.007247,0.249895,0,0);}
.m25a1_c00001{transform:matrix(0.256289,-0.002819,0.002750,0.249985,0,0);-ms-transform:matrix(0.256289,-0.002819,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256289,-0.002819,0.002750,0.249985,0,0);}
.m1d3e_c00001{transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);}
.m232f_c00001{transform:matrix(0.256303,0.004613,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256303,0.004613,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256303,0.004613,-0.004499,0.249960,0,0);}
.m885_c00001{transform:matrix(0.256325,-0.009750,0.009503,0.249819,0,0);-ms-transform:matrix(0.256325,-0.009750,0.009503,0.249819,0,0);-webkit-transform:matrix(0.256325,-0.009750,0.009503,0.249819,0,0);}
.m1535_c00001{transform:matrix(0.256460,0.008472,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256460,0.008472,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256460,0.008472,-0.008254,0.249864,0,0);}
.m1c34_c00001{transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);}
.m881_c00001{transform:matrix(0.256529,-0.009758,0.009503,0.249819,0,0);-ms-transform:matrix(0.256529,-0.009758,0.009503,0.249819,0,0);-webkit-transform:matrix(0.256529,-0.009758,0.009503,0.249819,0,0);}
.m6b6_c00001{transform:matrix(0.256552,0.005901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256552,0.005901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256552,0.005901,-0.005748,0.249934,0,0);}
.m236c_c00001{transform:matrix(0.256558,0.004618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256558,0.004618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256558,0.004618,-0.004499,0.249960,0,0);}
.m2f0_c00001{transform:matrix(0.256663,-0.003337,0.003250,0.249979,0,0);-ms-transform:matrix(0.256663,-0.003337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256663,-0.003337,0.003250,0.249979,0,0);}
.m27cb_c00001{transform:matrix(0.256685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256685,0.000000,0.000000,0.250000,0,0);}
.m1b6d_c00001{transform:matrix(0.256694,-0.004877,0.004749,0.249955,0,0);-ms-transform:matrix(0.256694,-0.004877,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256694,-0.004877,0.004749,0.249955,0,0);}
.m3d2_c00001{transform:matrix(0.256829,-0.007705,0.007497,0.249888,0,0);-ms-transform:matrix(0.256829,-0.007705,0.007497,0.249888,0,0);-webkit-transform:matrix(0.256829,-0.007705,0.007497,0.249888,0,0);}
.m1c9e_c00001{transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256835,0.000000,0.000000,0.250000,0,0);}
.m2395_c00001{transform:matrix(0.257058,-0.006684,0.006498,0.249916,0,0);-ms-transform:matrix(0.257058,-0.006684,0.006498,0.249916,0,0);-webkit-transform:matrix(0.257058,-0.006684,0.006498,0.249916,0,0);}
.m69f_c00001{transform:matrix(0.257094,-0.010551,0.010252,0.249790,0,0);-ms-transform:matrix(0.257094,-0.010551,0.010252,0.249790,0,0);-webkit-transform:matrix(0.257094,-0.010551,0.010252,0.249790,0,0);}
.m15b0_c00001{transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);}
.m2274_c00001{transform:matrix(0.257437,-0.005921,0.005748,0.249934,0,0);-ms-transform:matrix(0.257437,-0.005921,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257437,-0.005921,0.005748,0.249934,0,0);}
.m1ba_c00001{transform:matrix(0.257442,-0.004119,0.003999,0.249968,0,0);-ms-transform:matrix(0.257442,-0.004119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257442,-0.004119,0.003999,0.249968,0,0);}
.m1a26_c00001{transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00001{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.m219e_c00001{transform:matrix(0.257698,0.005412,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257698,0.005412,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257698,0.005412,-0.005249,0.249945,0,0);}
.m5f1_c00001{transform:matrix(0.257812,-0.010839,0.010501,0.249779,0,0);-ms-transform:matrix(0.257812,-0.010839,0.010501,0.249779,0,0);-webkit-transform:matrix(0.257812,-0.010839,0.010501,0.249779,0,0);}
.m2d5_c00001{transform:matrix(0.257864,-0.002837,0.002750,0.249985,0,0);-ms-transform:matrix(0.257864,-0.002837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257864,-0.002837,0.002750,0.249985,0,0);}
.m1a71_c00001{transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);}
.m21e3_c00001{transform:matrix(0.257991,-0.006192,0.005998,0.249928,0,0);-ms-transform:matrix(0.257991,-0.006192,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257991,-0.006192,0.005998,0.249928,0,0);}
.m1ce8_c00001{transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);}
.mfd9_c00001{transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);}
.m1d38_c00001{transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);}
.m1523_c00001{transform:matrix(0.258184,0.008529,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258184,0.008529,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258184,0.008529,-0.008254,0.249864,0,0);}
.m28a6_c00001{transform:matrix(0.258195,-0.003615,0.003500,0.249976,0,0);-ms-transform:matrix(0.258195,-0.003615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258195,-0.003615,0.003500,0.249976,0,0);}
.m2314_c00001{transform:matrix(0.258198,0.004648,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258198,0.004648,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258198,0.004648,-0.004499,0.249960,0,0);}
.m635_c00001{transform:matrix(0.258261,-0.011116,0.010751,0.249769,0,0);-ms-transform:matrix(0.258261,-0.011116,0.010751,0.249769,0,0);-webkit-transform:matrix(0.258261,-0.011116,0.010751,0.249769,0,0);}
.m121d_c00001{transform:matrix(0.258386,-0.006976,0.006748,0.249909,0,0);-ms-transform:matrix(0.258386,-0.006976,0.006748,0.249909,0,0);-webkit-transform:matrix(0.258386,-0.006976,0.006748,0.249909,0,0);}
.m2790_c00001{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m2562_c00001{transform:matrix(0.258553,-0.003361,0.003250,0.249979,0,0);-ms-transform:matrix(0.258553,-0.003361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258553,-0.003361,0.003250,0.249979,0,0);}
.mec2_c00001{transform:matrix(0.258580,0.003620,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258580,0.003620,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258580,0.003620,-0.003500,0.249976,0,0);}
.m629_c00001{transform:matrix(0.258591,-0.011131,0.010751,0.249769,0,0);-ms-transform:matrix(0.258591,-0.011131,0.010751,0.249769,0,0);-webkit-transform:matrix(0.258591,-0.011131,0.010751,0.249769,0,0);}
.m3dd_c00001{transform:matrix(0.258624,-0.007241,0.006997,0.249902,0,0);-ms-transform:matrix(0.258624,-0.007241,0.006997,0.249902,0,0);-webkit-transform:matrix(0.258624,-0.007241,0.006997,0.249902,0,0);}
.m1850_c00001{transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);}
.m27e1_c00001{transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);}
.m854_c00001{transform:matrix(0.258809,-0.007247,0.006997,0.249902,0,0);-ms-transform:matrix(0.258809,-0.007247,0.006997,0.249902,0,0);-webkit-transform:matrix(0.258809,-0.007247,0.006997,0.249902,0,0);}
.ma16_c00001{transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);}
.m148e_c00001{transform:matrix(0.258824,0.008550,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258824,0.008550,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258824,0.008550,-0.008254,0.249864,0,0);}
.m1dab_c00001{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m1f9e_c00001{transform:matrix(0.258915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258915,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00001{transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);}
.m22a3_c00001{transform:matrix(0.259107,0.004146,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259107,0.004146,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259107,0.004146,-0.003999,0.249968,0,0);}
.m28a5_c00001{transform:matrix(0.259120,-0.003628,0.003500,0.249976,0,0);-ms-transform:matrix(0.259120,-0.003628,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259120,-0.003628,0.003500,0.249976,0,0);}
.m11ae_c00001{transform:matrix(0.259122,-0.005701,0.005499,0.249940,0,0);-ms-transform:matrix(0.259122,-0.005701,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259122,-0.005701,0.005499,0.249940,0,0);}
.m275b_c00001{transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);-ms-transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);}
.m28b1_c00001{transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);}
.m29ad_c00001{transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);}
.mff1_c00001{transform:matrix(0.259410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259410,0.000000,0.000000,0.250000,0,0);}
.m25f9_c00001{transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);}
.m2902_c00001{transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);}
.m1d11_c00001{transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259490,0.000000,0.000000,0.250000,0,0);}
.m25e7_c00001{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.m8a8_c00001{transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);}
.m184e_c00001{transform:matrix(0.259630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259630,0.000000,0.000000,0.250000,0,0);}
.m1cea_c00001{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.m2403_c00001{transform:matrix(0.259712,-0.005714,0.005499,0.249940,0,0);-ms-transform:matrix(0.259712,-0.005714,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259712,-0.005714,0.005499,0.249940,0,0);}
.m196f_c00001{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m2670_c00001{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.m108f_c00001{transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259865,0.000000,0.000000,0.250000,0,0);}
.m206_c00001{transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);}
.m19b9_c00001{transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);}
.m796_c00001{transform:matrix(0.259971,0.005979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259971,0.005979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259971,0.005979,-0.005748,0.249934,0,0);}
.m140b_c00001{transform:matrix(0.260047,-0.006761,0.006498,0.249916,0,0);-ms-transform:matrix(0.260047,-0.006761,0.006498,0.249916,0,0);-webkit-transform:matrix(0.260047,-0.006761,0.006498,0.249916,0,0);}
.m28bc_c00001{transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);}
.m2362_c00001{transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);}
.m11a8_c00001{transform:matrix(0.260232,-0.005725,0.005499,0.249940,0,0);-ms-transform:matrix(0.260232,-0.005725,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260232,-0.005725,0.005499,0.249940,0,0);}
.m238b_c00001{transform:matrix(0.260232,-0.006766,0.006498,0.249916,0,0);-ms-transform:matrix(0.260232,-0.006766,0.006498,0.249916,0,0);-webkit-transform:matrix(0.260232,-0.006766,0.006498,0.249916,0,0);}
.mb0e_c00001{transform:matrix(0.260312,-0.010162,0.009752,0.249810,0,0);-ms-transform:matrix(0.260312,-0.010162,0.009752,0.249810,0,0);-webkit-transform:matrix(0.260312,-0.010162,0.009752,0.249810,0,0);}
.m1cf2_c00001{transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);}
.m27b2_c00001{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m29fb_c00001{transform:matrix(0.260416,-0.008342,0.008004,0.249872,0,0);-ms-transform:matrix(0.260416,-0.008342,0.008004,0.249872,0,0);-webkit-transform:matrix(0.260416,-0.008342,0.008004,0.249872,0,0);}
.m1d29_c00001{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);}
.m5f6_c00001{transform:matrix(0.260475,-0.010951,0.010501,0.249779,0,0);-ms-transform:matrix(0.260475,-0.010951,0.010501,0.249779,0,0);-webkit-transform:matrix(0.260475,-0.010951,0.010501,0.249779,0,0);}
.m1cdd_c00001{transform:matrix(0.260480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260480,0.000000,0.000000,0.250000,0,0);}
.m23ee_c00001{transform:matrix(0.260507,-0.005731,0.005499,0.249940,0,0);-ms-transform:matrix(0.260507,-0.005731,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260507,-0.005731,0.005499,0.249940,0,0);}
.m234f_c00001{transform:matrix(0.260528,0.004690,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260528,0.004690,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260528,0.004690,-0.004499,0.249960,0,0);}
.m24e9_c00001{transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);}
.me5a_c00001{transform:matrix(0.260973,0.004698,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260973,0.004698,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260973,0.004698,-0.004499,0.249960,0,0);}
.m3dc_c00001{transform:matrix(0.261018,-0.007308,0.006997,0.249902,0,0);-ms-transform:matrix(0.261018,-0.007308,0.006997,0.249902,0,0);-webkit-transform:matrix(0.261018,-0.007308,0.006997,0.249902,0,0);}
.m8e8_c00001{transform:matrix(0.261061,-0.009930,0.009503,0.249819,0,0);-ms-transform:matrix(0.261061,-0.009930,0.009503,0.249819,0,0);-webkit-transform:matrix(0.261061,-0.009930,0.009503,0.249819,0,0);}
.m143a_c00001{transform:matrix(0.261065,-0.007049,0.006748,0.249909,0,0);-ms-transform:matrix(0.261065,-0.007049,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261065,-0.007049,0.006748,0.249909,0,0);}
.m5f4_c00001{transform:matrix(0.261074,-0.010976,0.010501,0.249779,0,0);-ms-transform:matrix(0.261074,-0.010976,0.010501,0.249779,0,0);-webkit-transform:matrix(0.261074,-0.010976,0.010501,0.249779,0,0);}
.m18da_c00001{transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261075,0.000000,0.000000,0.250000,0,0);}
.m21d_c00001{transform:matrix(0.261160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261160,0.000000,0.000000,0.250000,0,0);}
.m824_c00001{transform:matrix(0.261338,-0.007317,0.006997,0.249902,0,0);-ms-transform:matrix(0.261338,-0.007317,0.006997,0.249902,0,0);-webkit-transform:matrix(0.261338,-0.007317,0.006997,0.249902,0,0);}
.m1352_c00001{transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);}
.m916_c00001{transform:matrix(0.261351,-0.009941,0.009503,0.249819,0,0);-ms-transform:matrix(0.261351,-0.009941,0.009503,0.249819,0,0);-webkit-transform:matrix(0.261351,-0.009941,0.009503,0.249819,0,0);}
.ma17_c00001{transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);}
.m274d_c00001{transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261515,0.000000,0.000000,0.250000,0,0);}
.m153_c00001{transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);}
.m14a3_c00001{transform:matrix(0.261812,0.008648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261812,0.008648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261812,0.008648,-0.008254,0.249864,0,0);}
.m393_c00001{transform:matrix(0.261813,-0.003404,0.003250,0.249979,0,0);-ms-transform:matrix(0.261813,-0.003404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261813,-0.003404,0.003250,0.249979,0,0);}
.m2719_c00001{transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00001{transform:matrix(0.261933,-0.005239,0.004999,0.249950,0,0);-ms-transform:matrix(0.261933,-0.005239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.261933,-0.005239,0.004999,0.249950,0,0);}
.m1c96_c00001{transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);}
.m28bd_c00001{transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);}
.m1032_c00001{transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);}
.m5d3_c00001{transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262265,0.000000,0.000000,0.250000,0,0);}
.m97d_c00001{transform:matrix(0.262290,-0.009977,0.009503,0.249819,0,0);-ms-transform:matrix(0.262290,-0.009977,0.009503,0.249819,0,0);-webkit-transform:matrix(0.262290,-0.009977,0.009503,0.249819,0,0);}
.m1525_c00001{transform:matrix(0.262352,0.008666,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262352,0.008666,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262352,0.008666,-0.008254,0.249864,0,0);}
.m8ec_c00001{transform:matrix(0.262370,-0.009980,0.009503,0.249819,0,0);-ms-transform:matrix(0.262370,-0.009980,0.009503,0.249819,0,0);-webkit-transform:matrix(0.262370,-0.009980,0.009503,0.249819,0,0);}
.m12be_c00001{transform:matrix(0.262403,0.006560,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262403,0.006560,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262403,0.006560,-0.006248,0.249922,0,0);}
.m1dae_c00001{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m2787_c00001{transform:matrix(0.262510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262510,0.000000,0.000000,0.250000,0,0);}
.m29b1_c00001{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.m8ab_c00001{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m29d5_c00001{transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);}
.m44b_c00001{transform:matrix(0.262668,-0.004991,0.004749,0.249955,0,0);-ms-transform:matrix(0.262668,-0.004991,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262668,-0.004991,0.004749,0.249955,0,0);}
.m572_c00001{transform:matrix(0.262699,0.002890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262699,0.002890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262699,0.002890,-0.002750,0.249985,0,0);}
.m2a3_c00001{transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);}
.m1a43_c00001{transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);}
.m1db_c00001{transform:matrix(0.262807,-0.005256,0.004999,0.249950,0,0);-ms-transform:matrix(0.262807,-0.005256,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262807,-0.005256,0.004999,0.249950,0,0);}
.m23a1_c00001{transform:matrix(0.262876,-0.005783,0.005499,0.249940,0,0);-ms-transform:matrix(0.262876,-0.005783,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262876,-0.005783,0.005499,0.249940,0,0);}
.m4f0_c00001{transform:matrix(0.262974,0.002893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262974,0.002893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262974,0.002893,-0.002750,0.249985,0,0);}
.m12ae_c00001{transform:matrix(0.263105,0.006051,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263105,0.006051,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263105,0.006051,-0.005748,0.249934,0,0);}
.m691_c00001{transform:matrix(0.263198,-0.010802,0.010252,0.249790,0,0);-ms-transform:matrix(0.263198,-0.010802,0.010252,0.249790,0,0);-webkit-transform:matrix(0.263198,-0.010802,0.010252,0.249790,0,0);}
.m235f_c00001{transform:matrix(0.263287,0.004739,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263287,0.004739,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263287,0.004739,-0.004499,0.249960,0,0);}
.m251d_c00001{transform:matrix(0.263390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263390,0.000000,0.000000,0.250000,0,0);}
.m11a9_c00001{transform:matrix(0.263461,-0.005796,0.005499,0.249940,0,0);-ms-transform:matrix(0.263461,-0.005796,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263461,-0.005796,0.005499,0.249940,0,0);}
.m1649_c00001{transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);}
.m232e_c00001{transform:matrix(0.263597,0.004745,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263597,0.004745,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263597,0.004745,-0.004499,0.249960,0,0);}
.m28a9_c00001{transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);}
.m232d_c00001{transform:matrix(0.264122,0.004754,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264122,0.004754,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264122,0.004754,-0.004499,0.249960,0,0);}
.m1f0b_c00001{transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);}
.m457_c00001{transform:matrix(0.264131,-0.008725,0.008254,0.249864,0,0);-ms-transform:matrix(0.264131,-0.008725,0.008254,0.249864,0,0);-webkit-transform:matrix(0.264131,-0.008725,0.008254,0.249864,0,0);}
.m25b1_c00001{transform:matrix(0.264320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264320,0.000000,0.000000,0.250000,0,0);}
.m5e3_c00001{transform:matrix(0.264332,-0.011907,0.011250,0.249747,0,0);-ms-transform:matrix(0.264332,-0.011907,0.011250,0.249747,0,0);-webkit-transform:matrix(0.264332,-0.011907,0.011250,0.249747,0,0);}
.m955_c00001{transform:matrix(0.264429,-0.010058,0.009503,0.249819,0,0);-ms-transform:matrix(0.264429,-0.010058,0.009503,0.249819,0,0);-webkit-transform:matrix(0.264429,-0.010058,0.009503,0.249819,0,0);}
.m5f3_c00001{transform:matrix(0.264481,-0.011119,0.010501,0.249779,0,0);-ms-transform:matrix(0.264481,-0.011119,0.010501,0.249779,0,0);-webkit-transform:matrix(0.264481,-0.011119,0.010501,0.249779,0,0);}
.m1101_c00001{transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);}
.m1502_c00001{transform:matrix(0.264536,0.008738,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264536,0.008738,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264536,0.008738,-0.008254,0.249864,0,0);}
.ma05_c00001{transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264620,0.000000,0.000000,0.250000,0,0);}
.m2939_c00001{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a8_c00001{transform:matrix(0.265018,-0.003445,0.003250,0.249979,0,0);-ms-transform:matrix(0.265018,-0.003445,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265018,-0.003445,0.003250,0.249979,0,0);}
.m22b7_c00001{transform:matrix(0.265071,0.004241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265071,0.004241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265071,0.004241,-0.003999,0.249968,0,0);}
.me45_c00001{transform:matrix(0.265097,0.004772,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265097,0.004772,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265097,0.004772,-0.004499,0.249960,0,0);}
.m90e_c00001{transform:matrix(0.265243,-0.010089,0.009503,0.249819,0,0);-ms-transform:matrix(0.265243,-0.010089,0.009503,0.249819,0,0);-webkit-transform:matrix(0.265243,-0.010089,0.009503,0.249819,0,0);}
.m5d4_c00001{transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);}
.m5f5_c00001{transform:matrix(0.265341,-0.011155,0.010501,0.249779,0,0);-ms-transform:matrix(0.265341,-0.011155,0.010501,0.249779,0,0);-webkit-transform:matrix(0.265341,-0.011155,0.010501,0.249779,0,0);}
.m7e1_c00001{transform:matrix(0.265391,-0.007431,0.006997,0.249902,0,0);-ms-transform:matrix(0.265391,-0.007431,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265391,-0.007431,0.006997,0.249902,0,0);}
.m2014_c00001{transform:matrix(0.265432,-0.008228,0.007746,0.249880,0,0);-ms-transform:matrix(0.265432,-0.008228,0.007746,0.249880,0,0);-webkit-transform:matrix(0.265432,-0.008228,0.007746,0.249880,0,0);}
.m21ac_c00001{transform:matrix(0.265445,-0.006105,0.005748,0.249934,0,0);-ms-transform:matrix(0.265445,-0.006105,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265445,-0.006105,0.005748,0.249934,0,0);}
.m233c_c00001{transform:matrix(0.265592,0.004781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265592,0.004781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265592,0.004781,-0.004499,0.249960,0,0);}
.m159f_c00001{transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);}
.m108e_c00001{transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);}
.m1287_c00001{transform:matrix(0.265923,-0.007180,0.006748,0.249909,0,0);-ms-transform:matrix(0.265923,-0.007180,0.006748,0.249909,0,0);-webkit-transform:matrix(0.265923,-0.007180,0.006748,0.249909,0,0);}
.m157e_c00001{transform:matrix(0.265950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265950,0.000000,0.000000,0.250000,0,0);}
.m2709_c00001{transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);}
.m2676_c00001{transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);}
.m15e9_c00001{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m856_c00001{transform:matrix(0.266426,-0.007460,0.006997,0.249902,0,0);-ms-transform:matrix(0.266426,-0.007460,0.006997,0.249902,0,0);-webkit-transform:matrix(0.266426,-0.007460,0.006997,0.249902,0,0);}
.m139d_c00001{transform:matrix(0.266530,-0.006930,0.006498,0.249916,0,0);-ms-transform:matrix(0.266530,-0.006930,0.006498,0.249916,0,0);-webkit-transform:matrix(0.266530,-0.006930,0.006498,0.249916,0,0);}
.m1d4b_c00001{transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);}
.m22ee_c00001{transform:matrix(0.266562,0.004798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266562,0.004798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266562,0.004798,-0.004499,0.249960,0,0);}
.m14ff_c00001{transform:matrix(0.266670,0.008809,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266670,0.008809,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266670,0.008809,-0.008254,0.249864,0,0);}
.m349_c00001{transform:matrix(0.266677,-0.003467,0.003250,0.249979,0,0);-ms-transform:matrix(0.266677,-0.003467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266677,-0.003467,0.003250,0.249979,0,0);}
.m104b_c00001{transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266685,0.000000,0.000000,0.250000,0,0);}
.m605_c00001{transform:matrix(0.266844,-0.011219,0.010501,0.249779,0,0);-ms-transform:matrix(0.266844,-0.011219,0.010501,0.249779,0,0);-webkit-transform:matrix(0.266844,-0.011219,0.010501,0.249779,0,0);}
.m2751_c00001{transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);}
.m666_c00001{transform:matrix(0.267235,-0.010968,0.010252,0.249790,0,0);-ms-transform:matrix(0.267235,-0.010968,0.010252,0.249790,0,0);-webkit-transform:matrix(0.267235,-0.010968,0.010252,0.249790,0,0);}
.m6fa_c00001{transform:matrix(0.267291,0.006682,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267291,0.006682,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267291,0.006682,-0.006248,0.249922,0,0);}
.m8f0_c00001{transform:matrix(0.267422,-0.010172,0.009503,0.249819,0,0);-ms-transform:matrix(0.267422,-0.010172,0.009503,0.249819,0,0);-webkit-transform:matrix(0.267422,-0.010172,0.009503,0.249819,0,0);}
.m23bd_c00001{transform:matrix(0.267740,-0.005890,0.005499,0.249940,0,0);-ms-transform:matrix(0.267740,-0.005890,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267740,-0.005890,0.005499,0.249940,0,0);}
.mb9b_c00001{transform:matrix(0.267761,0.003213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267761,0.003213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267761,0.003213,-0.003000,0.249982,0,0);}
.m26fd_c00001{transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);}
.m12c3_c00001{transform:matrix(0.267841,0.006696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267841,0.006696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267841,0.006696,-0.006248,0.249922,0,0);}
.mc7_c00001{transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);}
.m1102_c00001{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.m137b_c00001{transform:matrix(0.268099,-0.006971,0.006498,0.249916,0,0);-ms-transform:matrix(0.268099,-0.006971,0.006498,0.249916,0,0);-webkit-transform:matrix(0.268099,-0.006971,0.006498,0.249916,0,0);}
.me27_c00001{transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268320,0.000000,0.000000,0.250000,0,0);}
.m22a4_c00001{transform:matrix(0.268561,0.004297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268561,0.004297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268561,0.004297,-0.003999,0.249968,0,0);}
.m175f_c00001{transform:matrix(0.268639,-0.006985,0.006498,0.249916,0,0);-ms-transform:matrix(0.268639,-0.006985,0.006498,0.249916,0,0);-webkit-transform:matrix(0.268639,-0.006985,0.006498,0.249916,0,0);}
.m28aa_c00001{transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);}
.m14a7_c00001{transform:matrix(0.268723,0.008877,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268723,0.008877,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268723,0.008877,-0.008254,0.249864,0,0);}
.m1b7_c00001{transform:matrix(0.268797,-0.003494,0.003250,0.249979,0,0);-ms-transform:matrix(0.268797,-0.003494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268797,-0.003494,0.003250,0.249979,0,0);}
.m233f_c00001{transform:matrix(0.269106,0.004844,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269106,0.004844,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269106,0.004844,-0.004499,0.249960,0,0);}
.m1454_c00001{transform:matrix(0.269147,-0.007267,0.006748,0.249909,0,0);-ms-transform:matrix(0.269147,-0.007267,0.006748,0.249909,0,0);-webkit-transform:matrix(0.269147,-0.007267,0.006748,0.249909,0,0);}
.m3f5_c00001{transform:matrix(0.269456,-0.005659,0.005249,0.249945,0,0);-ms-transform:matrix(0.269456,-0.005659,0.005249,0.249945,0,0);-webkit-transform:matrix(0.269456,-0.005659,0.005249,0.249945,0,0);}
.m1d1f_c00001{transform:matrix(0.269595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269595,0.000000,0.000000,0.250000,0,0);}
.m268d_c00001{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m826_c00001{transform:matrix(0.269994,-0.007560,0.006997,0.249902,0,0);-ms-transform:matrix(0.269994,-0.007560,0.006997,0.249902,0,0);-webkit-transform:matrix(0.269994,-0.007560,0.006997,0.249902,0,0);}
.m2ec_c00001{transform:matrix(0.270062,-0.003511,0.003250,0.249979,0,0);-ms-transform:matrix(0.270062,-0.003511,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270062,-0.003511,0.003250,0.249979,0,0);}
.m2952_c00001{transform:matrix(0.270086,-0.003241,0.003000,0.249982,0,0);-ms-transform:matrix(0.270086,-0.003241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270086,-0.003241,0.003000,0.249982,0,0);}
.m132c_c00001{transform:matrix(0.270306,0.007839,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270306,0.007839,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270306,0.007839,-0.007247,0.249895,0,0);}
.m1cc6_c00001{transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);}
.m803_c00001{transform:matrix(0.270524,-0.007575,0.006997,0.249902,0,0);-ms-transform:matrix(0.270524,-0.007575,0.006997,0.249902,0,0);-webkit-transform:matrix(0.270524,-0.007575,0.006997,0.249902,0,0);}
.m1735_c00001{transform:matrix(0.270564,-0.007035,0.006498,0.249916,0,0);-ms-transform:matrix(0.270564,-0.007035,0.006498,0.249916,0,0);-webkit-transform:matrix(0.270564,-0.007035,0.006498,0.249916,0,0);}
.md5b_c00001{transform:matrix(0.270656,-0.007849,0.007247,0.249895,0,0);-ms-transform:matrix(0.270656,-0.007849,0.007247,0.249895,0,0);-webkit-transform:matrix(0.270656,-0.007849,0.007247,0.249895,0,0);}
.m12f0_c00001{transform:matrix(0.270761,0.007311,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270761,0.007311,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270761,0.007311,-0.006748,0.249909,0,0);}
.m27ac_c00001{transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);}
.m134_c00001{transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);}
.m8ce_c00001{transform:matrix(0.271047,-0.006505,0.005998,0.249928,0,0);-ms-transform:matrix(0.271047,-0.006505,0.005998,0.249928,0,0);-webkit-transform:matrix(0.271047,-0.006505,0.005998,0.249928,0,0);}
.m25ae_c00001{transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);}
.m2476_c00001{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m1205_c00001{transform:matrix(0.271209,-0.005967,0.005499,0.249940,0,0);-ms-transform:matrix(0.271209,-0.005967,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271209,-0.005967,0.005499,0.249940,0,0);}
.m2328_c00001{transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);}
.m1f64_c00001{transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);}
.m652_c00001{transform:matrix(0.271267,-0.011133,0.010252,0.249790,0,0);-ms-transform:matrix(0.271267,-0.011133,0.010252,0.249790,0,0);-webkit-transform:matrix(0.271267,-0.011133,0.010252,0.249790,0,0);}
.m1536_c00001{transform:matrix(0.271277,0.008961,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271277,0.008961,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271277,0.008961,-0.008254,0.249864,0,0);}
.m10c0_c00001{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.m1f62_c00001{transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);}
.md99_c00001{transform:matrix(0.271855,0.003262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271855,0.003262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271855,0.003262,-0.003000,0.249982,0,0);}
.m28a7_c00001{transform:matrix(0.271963,-0.003807,0.003500,0.249976,0,0);-ms-transform:matrix(0.271963,-0.003807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271963,-0.003807,0.003500,0.249976,0,0);}
.m10f9_c00001{transform:matrix(0.272060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272060,0.000000,0.000000,0.250000,0,0);}
.m17ea_c00001{transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);}
.m44a_c00001{transform:matrix(0.272341,-0.005174,0.004749,0.249955,0,0);-ms-transform:matrix(0.272341,-0.005174,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272341,-0.005174,0.004749,0.249955,0,0);}
.m28a8_c00001{transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);}
.m253e_c00001{transform:matrix(0.272519,-0.004088,0.003750,0.249972,0,0);-ms-transform:matrix(0.272519,-0.004088,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272519,-0.004088,0.003750,0.249972,0,0);}
.m29ec_c00001{transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);}
.m145d_c00001{transform:matrix(0.272636,-0.007361,0.006748,0.249909,0,0);-ms-transform:matrix(0.272636,-0.007361,0.006748,0.249909,0,0);-webkit-transform:matrix(0.272636,-0.007361,0.006748,0.249909,0,0);}
.m26a7_c00001{transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);}
.m24db_c00001{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00001{transform:matrix(0.273195,-0.005464,0.004999,0.249950,0,0);-ms-transform:matrix(0.273195,-0.005464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273195,-0.005464,0.004999,0.249950,0,0);}
.m403_c00001{transform:matrix(0.273425,-0.005742,0.005249,0.249945,0,0);-ms-transform:matrix(0.273425,-0.005742,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273425,-0.005742,0.005249,0.249945,0,0);}
.m1284_c00001{transform:matrix(0.273535,-0.007385,0.006748,0.249909,0,0);-ms-transform:matrix(0.273535,-0.007385,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273535,-0.007385,0.006748,0.249909,0,0);}
.m289e_c00001{transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);}
.m10ad_c00001{transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);}
.m8ef_c00001{transform:matrix(0.274112,-0.010427,0.009503,0.249819,0,0);-ms-transform:matrix(0.274112,-0.010427,0.009503,0.249819,0,0);-webkit-transform:matrix(0.274112,-0.010427,0.009503,0.249819,0,0);}
.m900_c00001{transform:matrix(0.274242,-0.010432,0.009503,0.249819,0,0);-ms-transform:matrix(0.274242,-0.010432,0.009503,0.249819,0,0);-webkit-transform:matrix(0.274242,-0.010432,0.009503,0.249819,0,0);}
.m251e_c00001{transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);}
.m9b8_c00001{transform:matrix(0.274681,-0.010448,0.009503,0.249819,0,0);-ms-transform:matrix(0.274681,-0.010448,0.009503,0.249819,0,0);-webkit-transform:matrix(0.274681,-0.010448,0.009503,0.249819,0,0);}
.m184f_c00001{transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);}
.m22e3_c00001{transform:matrix(0.275140,0.004402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275140,0.004402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275140,0.004402,-0.003999,0.249968,0,0);}
.m1f67_c00001{transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275150,0.000000,0.000000,0.250000,0,0);}
.m232c_c00001{transform:matrix(0.275325,0.004956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275325,0.004956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275325,0.004956,-0.004499,0.249960,0,0);}
.m197a_c00001{transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);}
.m274f_c00001{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m1950_c00001{transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);}
.m255e_c00001{transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);-ms-transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);}
.m17cf_c00001{transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);}
.m2690_c00001{transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);}
.m2731_c00001{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m851_c00001{transform:matrix(0.276232,-0.007734,0.006997,0.249902,0,0);-ms-transform:matrix(0.276232,-0.007734,0.006997,0.249902,0,0);-webkit-transform:matrix(0.276232,-0.007734,0.006997,0.249902,0,0);}
.m26c4_c00001{transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00001{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m2826_c00001{transform:matrix(0.276772,-0.003598,0.003250,0.249979,0,0);-ms-transform:matrix(0.276772,-0.003598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.276772,-0.003598,0.003250,0.249979,0,0);}
.ma6_c00001{transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);}
.m2311_c00001{transform:matrix(0.277215,0.004990,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277215,0.004990,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277215,0.004990,-0.004499,0.249960,0,0);}
.m1264_c00001{transform:matrix(0.277219,-0.007485,0.006748,0.249909,0,0);-ms-transform:matrix(0.277219,-0.007485,0.006748,0.249909,0,0);-webkit-transform:matrix(0.277219,-0.007485,0.006748,0.249909,0,0);}
.m26d3_c00001{transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);}
.m84d_c00001{transform:matrix(0.277536,-0.007771,0.006997,0.249902,0,0);-ms-transform:matrix(0.277536,-0.007771,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277536,-0.007771,0.006997,0.249902,0,0);}
.m2353_c00001{transform:matrix(0.277545,0.004996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277545,0.004996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277545,0.004996,-0.004499,0.249960,0,0);}
.m532_c00001{transform:matrix(0.277738,0.003055,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277738,0.003055,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277738,0.003055,-0.002750,0.249985,0,0);}
.m1f3a_c00001{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m1648_c00001{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m18c3_c00001{transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);}
.mc75_c00001{transform:matrix(0.278018,-0.008063,0.007247,0.249895,0,0);-ms-transform:matrix(0.278018,-0.008063,0.007247,0.249895,0,0);-webkit-transform:matrix(0.278018,-0.008063,0.007247,0.249895,0,0);}
.m26c5_c00001{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00001{transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);}
.m2261_c00001{transform:matrix(0.278335,-0.006680,0.005998,0.249928,0,0);-ms-transform:matrix(0.278335,-0.006680,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278335,-0.006680,0.005998,0.249928,0,0);}
.m2749_c00001{transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);}
.m29ef_c00001{transform:matrix(0.278862,-0.008933,0.008004,0.249872,0,0);-ms-transform:matrix(0.278862,-0.008933,0.008004,0.249872,0,0);-webkit-transform:matrix(0.278862,-0.008933,0.008004,0.249872,0,0);}
.mb76_c00001{transform:matrix(0.278983,-0.008090,0.007247,0.249895,0,0);-ms-transform:matrix(0.278983,-0.008090,0.007247,0.249895,0,0);-webkit-transform:matrix(0.278983,-0.008090,0.007247,0.249895,0,0);}
.m1729_c00001{transform:matrix(0.279101,-0.007257,0.006498,0.249916,0,0);-ms-transform:matrix(0.279101,-0.007257,0.006498,0.249916,0,0);-webkit-transform:matrix(0.279101,-0.007257,0.006498,0.249916,0,0);}
.m28a3_c00001{transform:matrix(0.279383,-0.003911,0.003500,0.249976,0,0);-ms-transform:matrix(0.279383,-0.003911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279383,-0.003911,0.003500,0.249976,0,0);}
.m26a1_c00001{transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);}
.m2576_c00001{transform:matrix(0.279406,-0.003632,0.003250,0.249979,0,0);-ms-transform:matrix(0.279406,-0.003632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279406,-0.003632,0.003250,0.249979,0,0);}
.m2654_c00001{transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);}
.m2679_c00001{transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);}
.m29b3_c00001{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m5bc_c00001{transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);}
.m236f_c00001{transform:matrix(0.280110,0.005042,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280110,0.005042,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280110,0.005042,-0.004499,0.249960,0,0);}
.m102f_c00001{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m27ee_c00001{transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);}
.m28c2_c00001{transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);}
.m1d0e_c00001{transform:matrix(0.280930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280930,0.000000,0.000000,0.250000,0,0);}
.m15a6_c00001{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m702_c00001{transform:matrix(0.281212,0.007030,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281212,0.007030,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281212,0.007030,-0.006248,0.249922,0,0);}
.m150c_c00001{transform:matrix(0.281436,0.009297,-0.008254,0.249864,0,0);-ms-transform:matrix(0.281436,0.009297,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.281436,0.009297,-0.008254,0.249864,0,0);}
.m26d0_c00001{transform:matrix(0.281510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281510,0.000000,0.000000,0.250000,0,0);}
.m1478_c00001{transform:matrix(0.281716,0.009306,-0.008254,0.249864,0,0);-ms-transform:matrix(0.281716,0.009306,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.281716,0.009306,-0.008254,0.249864,0,0);}
.m1818_c00001{transform:matrix(0.281850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281850,0.000000,0.000000,0.250000,0,0);}
.m2352_c00001{transform:matrix(0.282089,0.005078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282089,0.005078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282089,0.005078,-0.004499,0.249960,0,0);}
.m27e6_c00001{transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);}
.m2062_c00001{transform:matrix(0.282249,-0.008750,0.007746,0.249880,0,0);-ms-transform:matrix(0.282249,-0.008750,0.007746,0.249880,0,0);-webkit-transform:matrix(0.282249,-0.008750,0.007746,0.249880,0,0);}
.m22c1_c00001{transform:matrix(0.282464,0.004519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282464,0.004519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282464,0.004519,-0.003999,0.249968,0,0);}
.m10dd_c00001{transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);}
.mab1_c00001{transform:matrix(0.282810,-0.011041,0.009752,0.249810,0,0);-ms-transform:matrix(0.282810,-0.011041,0.009752,0.249810,0,0);-webkit-transform:matrix(0.282810,-0.011041,0.009752,0.249810,0,0);}
.m24f8_c00001{transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);}
.md18_c00001{transform:matrix(0.283136,-0.008211,0.007247,0.249895,0,0);-ms-transform:matrix(0.283136,-0.008211,0.007247,0.249895,0,0);-webkit-transform:matrix(0.283136,-0.008211,0.007247,0.249895,0,0);}
.m258b_c00001{transform:matrix(0.283333,-0.004250,0.003750,0.249972,0,0);-ms-transform:matrix(0.283333,-0.004250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283333,-0.004250,0.003750,0.249972,0,0);}
.m2367_c00001{transform:matrix(0.283409,0.005101,-0.004499,0.249960,0,0);-ms-transform:matrix(0.283409,0.005101,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.283409,0.005101,-0.004499,0.249960,0,0);}
.m8de_c00001{transform:matrix(0.283790,-0.009374,0.008254,0.249864,0,0);-ms-transform:matrix(0.283790,-0.009374,0.008254,0.249864,0,0);-webkit-transform:matrix(0.283790,-0.009374,0.008254,0.249864,0,0);}
.m1831_c00001{transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);}
.m140_c00001{transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);}
.m472_c00001{transform:matrix(0.284490,-0.009682,0.008504,0.249855,0,0);-ms-transform:matrix(0.284490,-0.009682,0.008504,0.249855,0,0);-webkit-transform:matrix(0.284490,-0.009682,0.008504,0.249855,0,0);}
.m2899_c00001{transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);}
.ma75_c00001{transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);}
.m8b9_c00001{transform:matrix(0.285013,-0.006840,0.005998,0.249928,0,0);-ms-transform:matrix(0.285013,-0.006840,0.005998,0.249928,0,0);-webkit-transform:matrix(0.285013,-0.006840,0.005998,0.249928,0,0);}
.m9bc_c00001{transform:matrix(0.285424,-0.010857,0.009503,0.249819,0,0);-ms-transform:matrix(0.285424,-0.010857,0.009503,0.249819,0,0);-webkit-transform:matrix(0.285424,-0.010857,0.009503,0.249819,0,0);}
.m5f9_c00001{transform:matrix(0.285493,-0.012003,0.010501,0.249779,0,0);-ms-transform:matrix(0.285493,-0.012003,0.010501,0.249779,0,0);-webkit-transform:matrix(0.285493,-0.012003,0.010501,0.249779,0,0);}
.m29d_c00001{transform:matrix(0.285524,-0.003426,0.003000,0.249982,0,0);-ms-transform:matrix(0.285524,-0.003426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285524,-0.003426,0.003000,0.249982,0,0);}
.m251c_c00001{transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);}
.m447_c00001{transform:matrix(0.286018,-0.005434,0.004749,0.249955,0,0);-ms-transform:matrix(0.286018,-0.005434,0.004749,0.249955,0,0);-webkit-transform:matrix(0.286018,-0.005434,0.004749,0.249955,0,0);}
.m889_c00001{transform:matrix(0.286288,-0.010890,0.009503,0.249819,0,0);-ms-transform:matrix(0.286288,-0.010890,0.009503,0.249819,0,0);-webkit-transform:matrix(0.286288,-0.010890,0.009503,0.249819,0,0);}
.m2551_c00001{transform:matrix(0.286483,-0.004297,0.003750,0.249972,0,0);-ms-transform:matrix(0.286483,-0.004297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286483,-0.004297,0.003750,0.249972,0,0);}
.m198e_c00001{transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);}
.m12c6_c00001{transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);-ms-transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);}
.m145c_c00001{transform:matrix(0.287120,-0.007752,0.006748,0.249909,0,0);-ms-transform:matrix(0.287120,-0.007752,0.006748,0.249909,0,0);-webkit-transform:matrix(0.287120,-0.007752,0.006748,0.249909,0,0);}
.m8a4_c00001{transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287585,0.000000,0.000000,0.250000,0,0);}
.me5e_c00001{transform:matrix(0.287813,0.005181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.287813,0.005181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.287813,0.005181,-0.004499,0.249960,0,0);}
.m711_c00001{transform:matrix(0.287944,0.006623,-0.005748,0.249934,0,0);-ms-transform:matrix(0.287944,0.006623,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.287944,0.006623,-0.005748,0.249934,0,0);}
.m84c_c00001{transform:matrix(0.288067,-0.008066,0.006997,0.249902,0,0);-ms-transform:matrix(0.288067,-0.008066,0.006997,0.249902,0,0);-webkit-transform:matrix(0.288067,-0.008066,0.006997,0.249902,0,0);}
.m1d53_c00001{transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);}
.m17ca_c00001{transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288390,0.000000,0.000000,0.250000,0,0);}
.m681_c00001{transform:matrix(0.288417,-0.011837,0.010252,0.249790,0,0);-ms-transform:matrix(0.288417,-0.011837,0.010252,0.249790,0,0);-webkit-transform:matrix(0.288417,-0.011837,0.010252,0.249790,0,0);}
.m2a0e_c00001{transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);}
.m5b9_c00001{transform:matrix(0.288760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288760,0.000000,0.000000,0.250000,0,0);}
.m3bf_c00001{transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);}
.m2a0b_c00001{transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);}
.m1d04_c00001{transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);}
.m1d3f_c00001{transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);}
.m2928_c00001{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.mc79_c00001{transform:matrix(0.289948,-0.008408,0.007247,0.249895,0,0);-ms-transform:matrix(0.289948,-0.008408,0.007247,0.249895,0,0);-webkit-transform:matrix(0.289948,-0.008408,0.007247,0.249895,0,0);}
.mab8_c00001{transform:matrix(0.290454,-0.011339,0.009752,0.249810,0,0);-ms-transform:matrix(0.290454,-0.011339,0.009752,0.249810,0,0);-webkit-transform:matrix(0.290454,-0.011339,0.009752,0.249810,0,0);}
.m267c_c00001{transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);}
.m1200_c00001{transform:matrix(0.290580,-0.006393,0.005499,0.249940,0,0);-ms-transform:matrix(0.290580,-0.006393,0.005499,0.249940,0,0);-webkit-transform:matrix(0.290580,-0.006393,0.005499,0.249940,0,0);}
.m294a_c00001{transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);}
.m1e7d_c00001{transform:matrix(0.291661,-0.007583,0.006498,0.249916,0,0);-ms-transform:matrix(0.291661,-0.007583,0.006498,0.249916,0,0);-webkit-transform:matrix(0.291661,-0.007583,0.006498,0.249916,0,0);}
.m2950_c00001{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m233b_c00001{transform:matrix(0.291763,0.005252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291763,0.005252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291763,0.005252,-0.004499,0.249960,0,0);}
.m5d0_c00001{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m1000_c00001{transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292870,0.000000,0.000000,0.250000,0,0);}
.m2594_c00001{transform:matrix(0.292897,-0.003222,0.002750,0.249985,0,0);-ms-transform:matrix(0.292897,-0.003222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.292897,-0.003222,0.002750,0.249985,0,0);}
.m29b4_c00001{transform:matrix(0.293420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293420,0.000000,0.000000,0.250000,0,0);}
.m2392_c00001{transform:matrix(0.293596,-0.007633,0.006498,0.249916,0,0);-ms-transform:matrix(0.293596,-0.007633,0.006498,0.249916,0,0);-webkit-transform:matrix(0.293596,-0.007633,0.006498,0.249916,0,0);}
.m2300_c00001{transform:matrix(0.293677,0.005286,-0.004499,0.249960,0,0);-ms-transform:matrix(0.293677,0.005286,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.293677,0.005286,-0.004499,0.249960,0,0);}
.m24e8_c00001{transform:matrix(0.293685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293685,0.000000,0.000000,0.250000,0,0);}
.m15f6_c00001{transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);}
.m26c1_c00001{transform:matrix(0.294530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294530,0.000000,0.000000,0.250000,0,0);}
.md63_c00001{transform:matrix(0.294840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294840,0.000000,0.000000,0.250000,0,0);}
.m2556_c00001{transform:matrix(0.295041,-0.004131,0.003500,0.249976,0,0);-ms-transform:matrix(0.295041,-0.004131,0.003500,0.249976,0,0);-webkit-transform:matrix(0.295041,-0.004131,0.003500,0.249976,0,0);}
.m25b2_c00001{transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);}
.m267_c00001{transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);}
.m12ef_c00001{transform:matrix(0.297856,0.008042,-0.006748,0.249909,0,0);-ms-transform:matrix(0.297856,0.008042,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.297856,0.008042,-0.006748,0.249909,0,0);}
.mde4_c00001{transform:matrix(0.298035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298035,0.000000,0.000000,0.250000,0,0);}
.m7ae_c00001{transform:matrix(0.298503,-0.008358,0.006997,0.249902,0,0);-ms-transform:matrix(0.298503,-0.008358,0.006997,0.249902,0,0);-webkit-transform:matrix(0.298503,-0.008358,0.006997,0.249902,0,0);}
.m104d_c00001{transform:matrix(0.298730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298730,0.000000,0.000000,0.250000,0,0);}
.m2929_c00001{transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);}
.m15f7_c00001{transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);}
.mafb_c00001{transform:matrix(0.299207,-0.011681,0.009752,0.249810,0,0);-ms-transform:matrix(0.299207,-0.011681,0.009752,0.249810,0,0);-webkit-transform:matrix(0.299207,-0.011681,0.009752,0.249810,0,0);}
.me69_c00001{transform:matrix(0.299222,0.005386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.299222,0.005386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.299222,0.005386,-0.004499,0.249960,0,0);}
.m25c7_c00001{transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);}
.m559_c00001{transform:matrix(0.299422,0.003294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299422,0.003294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299422,0.003294,-0.002750,0.249985,0,0);}
.m3a7_c00001{transform:matrix(0.299495,-0.003893,0.003250,0.249979,0,0);-ms-transform:matrix(0.299495,-0.003893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.299495,-0.003893,0.003250,0.249979,0,0);}
.m92b_c00001{transform:matrix(0.299628,-0.011397,0.009503,0.249819,0,0);-ms-transform:matrix(0.299628,-0.011397,0.009503,0.249819,0,0);-webkit-transform:matrix(0.299628,-0.011397,0.009503,0.249819,0,0);}
.m151a_c00001{transform:matrix(0.299826,0.009904,-0.008254,0.249864,0,0);-ms-transform:matrix(0.299826,0.009904,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.299826,0.009904,-0.008254,0.249864,0,0);}
.m145e_c00001{transform:matrix(0.299981,-0.008099,0.006748,0.249909,0,0);-ms-transform:matrix(0.299981,-0.008099,0.006748,0.249909,0,0);-webkit-transform:matrix(0.299981,-0.008099,0.006748,0.249909,0,0);}
.mcfb_c00001{transform:matrix(0.300044,-0.008701,0.007247,0.249895,0,0);-ms-transform:matrix(0.300044,-0.008701,0.007247,0.249895,0,0);-webkit-transform:matrix(0.300044,-0.008701,0.007247,0.249895,0,0);}
.m1f0a_c00001{transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);}
.m2377_c00001{transform:matrix(0.300341,0.005406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.300341,0.005406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.300341,0.005406,-0.004499,0.249960,0,0);}
.m2758_c00001{transform:matrix(0.300571,-0.004509,0.003750,0.249972,0,0);-ms-transform:matrix(0.300571,-0.004509,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300571,-0.004509,0.003750,0.249972,0,0);}
.m2920_c00001{transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);}
.m25ea_c00001{transform:matrix(0.300795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300795,0.000000,0.000000,0.250000,0,0);}
.m1aec_c00001{transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);}
.m973_c00001{transform:matrix(0.301467,-0.011467,0.009503,0.249819,0,0);-ms-transform:matrix(0.301467,-0.011467,0.009503,0.249819,0,0);-webkit-transform:matrix(0.301467,-0.011467,0.009503,0.249819,0,0);}
.m28f3_c00001{transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);}
.m258f_c00001{transform:matrix(0.301746,-0.004526,0.003750,0.249972,0,0);-ms-transform:matrix(0.301746,-0.004526,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301746,-0.004526,0.003750,0.249972,0,0);}
.mda7_c00001{transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);}
.m1289_c00001{transform:matrix(0.302495,-0.008167,0.006748,0.249909,0,0);-ms-transform:matrix(0.302495,-0.008167,0.006748,0.249909,0,0);-webkit-transform:matrix(0.302495,-0.008167,0.006748,0.249909,0,0);}
.m445_c00001{transform:matrix(0.302575,-0.005749,0.004749,0.249955,0,0);-ms-transform:matrix(0.302575,-0.005749,0.004749,0.249955,0,0);-webkit-transform:matrix(0.302575,-0.005749,0.004749,0.249955,0,0);}
.m1d36_c00001{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m9e0_c00001{transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);}
.m5d5_c00001{transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);}
.m27ef_c00001{transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);}
.m194f_c00001{transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);}
.m2924_c00001{transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);}
.md87_c00001{transform:matrix(0.304013,0.003648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304013,0.003648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304013,0.003648,-0.003000,0.249982,0,0);}
.m2898_c00001{transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);}
.m4bf_c00001{transform:matrix(0.304464,-0.009753,0.008004,0.249872,0,0);-ms-transform:matrix(0.304464,-0.009753,0.008004,0.249872,0,0);-webkit-transform:matrix(0.304464,-0.009753,0.008004,0.249872,0,0);}
.m1c85_c00001{transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304935,0.000000,0.000000,0.250000,0,0);}
.m29d2_c00001{transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);}
.ma81_c00001{transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);}
.m2ea_c00001{transform:matrix(0.305509,-0.003972,0.003250,0.249979,0,0);-ms-transform:matrix(0.305509,-0.003972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305509,-0.003972,0.003250,0.249979,0,0);}
.m22b0_c00001{transform:matrix(0.305611,0.004890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305611,0.004890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305611,0.004890,-0.003999,0.249968,0,0);}
.m29d7_c00001{transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);}
.m449_c00001{transform:matrix(0.306320,-0.005820,0.004749,0.249955,0,0);-ms-transform:matrix(0.306320,-0.005820,0.004749,0.249955,0,0);-webkit-transform:matrix(0.306320,-0.005820,0.004749,0.249955,0,0);}
.ma9e_c00001{transform:matrix(0.306435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306435,0.000000,0.000000,0.250000,0,0);}
.m25c6_c00001{transform:matrix(0.306495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306495,0.000000,0.000000,0.250000,0,0);}
.m2a00_c00001{transform:matrix(0.306533,-0.009819,0.008004,0.249872,0,0);-ms-transform:matrix(0.306533,-0.009819,0.008004,0.249872,0,0);-webkit-transform:matrix(0.306533,-0.009819,0.008004,0.249872,0,0);}
.m2610_c00001{transform:matrix(0.306690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306690,0.000000,0.000000,0.250000,0,0);}
.mfd7_c00001{transform:matrix(0.307470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307470,0.000000,0.000000,0.250000,0,0);}
.m42f_c00001{transform:matrix(0.307974,-0.005852,0.004749,0.249955,0,0);-ms-transform:matrix(0.307974,-0.005852,0.004749,0.249955,0,0);-webkit-transform:matrix(0.307974,-0.005852,0.004749,0.249955,0,0);}
.m1cdc_c00001{transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);}
.m24bb_c00001{transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);}
.m2729_c00001{transform:matrix(0.309465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309465,0.000000,0.000000,0.250000,0,0);}
.m1df3_c00001{transform:matrix(0.309690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309690,0.000000,0.000000,0.250000,0,0);}
.m4f8_c00001{transform:matrix(0.309691,0.003407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309691,0.003407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309691,0.003407,-0.002750,0.249985,0,0);}
.m5c6_c00001{transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);}
.m960_c00001{transform:matrix(0.310495,-0.011811,0.009503,0.249819,0,0);-ms-transform:matrix(0.310495,-0.011811,0.009503,0.249819,0,0);-webkit-transform:matrix(0.310495,-0.011811,0.009503,0.249819,0,0);}
.m4fd_c00001{transform:matrix(0.310521,0.003416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.310521,0.003416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.310521,0.003416,-0.002750,0.249985,0,0);}
.m2470_c00001{transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);}
.m48e_c00001{transform:matrix(0.311583,-0.012788,0.010252,0.249790,0,0);-ms-transform:matrix(0.311583,-0.012788,0.010252,0.249790,0,0);-webkit-transform:matrix(0.311583,-0.012788,0.010252,0.249790,0,0);}
.m1506_c00001{transform:matrix(0.311875,0.010302,-0.008254,0.249864,0,0);-ms-transform:matrix(0.311875,0.010302,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.311875,0.010302,-0.008254,0.249864,0,0);}
.m28a4_c00001{transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);-ms-transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);-webkit-transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);}
.m88c_c00001{transform:matrix(0.312739,-0.011896,0.009503,0.249819,0,0);-ms-transform:matrix(0.312739,-0.011896,0.009503,0.249819,0,0);-webkit-transform:matrix(0.312739,-0.011896,0.009503,0.249819,0,0);}
.m2653_c00001{transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);}
.m13c7_c00001{transform:matrix(0.313649,-0.008155,0.006498,0.249916,0,0);-ms-transform:matrix(0.313649,-0.008155,0.006498,0.249916,0,0);-webkit-transform:matrix(0.313649,-0.008155,0.006498,0.249916,0,0);}
.m27d5_c00001{transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);}
.m1f7c_c00001{transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313800,0.000000,0.000000,0.250000,0,0);}
.m1eae_c00001{transform:matrix(0.313819,-0.008159,0.006498,0.249916,0,0);-ms-transform:matrix(0.313819,-0.008159,0.006498,0.249916,0,0);-webkit-transform:matrix(0.313819,-0.008159,0.006498,0.249916,0,0);}
.m5c9_c00001{transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);}
.m8ac_c00001{transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315555,0.000000,0.000000,0.250000,0,0);}
.m7a6_c00001{transform:matrix(0.315581,-0.008836,0.006997,0.249902,0,0);-ms-transform:matrix(0.315581,-0.008836,0.006997,0.249902,0,0);-webkit-transform:matrix(0.315581,-0.008836,0.006997,0.249902,0,0);}
.mb75_c00001{transform:matrix(0.315737,-0.009156,0.007247,0.249895,0,0);-ms-transform:matrix(0.315737,-0.009156,0.007247,0.249895,0,0);-webkit-transform:matrix(0.315737,-0.009156,0.007247,0.249895,0,0);}
.m448_c00001{transform:matrix(0.315758,-0.005999,0.004749,0.249955,0,0);-ms-transform:matrix(0.315758,-0.005999,0.004749,0.249955,0,0);-webkit-transform:matrix(0.315758,-0.005999,0.004749,0.249955,0,0);}
.m4a1_c00001{transform:matrix(0.315914,-0.012965,0.010252,0.249790,0,0);-ms-transform:matrix(0.315914,-0.012965,0.010252,0.249790,0,0);-webkit-transform:matrix(0.315914,-0.012965,0.010252,0.249790,0,0);}
.m2812_c00001{transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316605,0.000000,0.000000,0.250000,0,0);}
.m97f_c00001{transform:matrix(0.316756,-0.012049,0.009503,0.249819,0,0);-ms-transform:matrix(0.316756,-0.012049,0.009503,0.249819,0,0);-webkit-transform:matrix(0.316756,-0.012049,0.009503,0.249819,0,0);}
.m16e2_c00001{transform:matrix(0.317341,-0.010800,0.008504,0.249855,0,0);-ms-transform:matrix(0.317341,-0.010800,0.008504,0.249855,0,0);-webkit-transform:matrix(0.317341,-0.010800,0.008504,0.249855,0,0);}
.m2949_c00001{transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.319269,-0.003193,0.002500,0.249988,0,0);-ms-transform:matrix(0.319269,-0.003193,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319269,-0.003193,0.002500,0.249988,0,0);}
.m5ef_c00001{transform:matrix(0.319448,-0.013430,0.010501,0.249779,0,0);-ms-transform:matrix(0.319448,-0.013430,0.010501,0.249779,0,0);-webkit-transform:matrix(0.319448,-0.013430,0.010501,0.249779,0,0);}
.m2971_c00001{transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);}
.m2490_c00001{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m29fd_c00001{transform:matrix(0.319841,-0.010245,0.008004,0.249872,0,0);-ms-transform:matrix(0.319841,-0.010245,0.008004,0.249872,0,0);-webkit-transform:matrix(0.319841,-0.010245,0.008004,0.249872,0,0);}
.m27f1_c00001{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m1b38_c00001{transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);}
.m1459_c00001{transform:matrix(0.321103,-0.008670,0.006748,0.249909,0,0);-ms-transform:matrix(0.321103,-0.008670,0.006748,0.249909,0,0);-webkit-transform:matrix(0.321103,-0.008670,0.006748,0.249909,0,0);}
.m24e4_c00001{transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);}
.mfa8_c00001{transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);}
.m22ef_c00001{transform:matrix(0.321508,0.005787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.321508,0.005787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.321508,0.005787,-0.004499,0.249960,0,0);}
.m26c2_c00001{transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);}
.m1b56_c00001{transform:matrix(0.322170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322170,0.000000,0.000000,0.250000,0,0);}
.m263f_c00001{transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);}
.m11b3_c00001{transform:matrix(0.322602,-0.007097,0.005499,0.249940,0,0);-ms-transform:matrix(0.322602,-0.007097,0.005499,0.249940,0,0);-webkit-transform:matrix(0.322602,-0.007097,0.005499,0.249940,0,0);}
.m29cd_c00001{transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);}
.m17bd_c00001{transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);}
.m2017_c00001{transform:matrix(0.323280,-0.010022,0.007746,0.249880,0,0);-ms-transform:matrix(0.323280,-0.010022,0.007746,0.249880,0,0);-webkit-transform:matrix(0.323280,-0.010022,0.007746,0.249880,0,0);}
.m2747_c00001{transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);}
.m29f9_c00001{transform:matrix(0.323784,-0.010371,0.008004,0.249872,0,0);-ms-transform:matrix(0.323784,-0.010371,0.008004,0.249872,0,0);-webkit-transform:matrix(0.323784,-0.010371,0.008004,0.249872,0,0);}
.m953_c00001{transform:matrix(0.323916,-0.012321,0.009503,0.249819,0,0);-ms-transform:matrix(0.323916,-0.012321,0.009503,0.249819,0,0);-webkit-transform:matrix(0.323916,-0.012321,0.009503,0.249819,0,0);}
.m148d_c00001{transform:matrix(0.323948,0.010701,-0.008254,0.249864,0,0);-ms-transform:matrix(0.323948,0.010701,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.323948,0.010701,-0.008254,0.249864,0,0);}
.m4fc_c00001{transform:matrix(0.323990,0.003564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323990,0.003564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323990,0.003564,-0.002750,0.249985,0,0);}
.m875_c00001{transform:matrix(0.324943,-0.009098,0.006997,0.249902,0,0);-ms-transform:matrix(0.324943,-0.009098,0.006997,0.249902,0,0);-webkit-transform:matrix(0.324943,-0.009098,0.006997,0.249902,0,0);}
.m424_c00001{transform:matrix(0.324943,-0.006824,0.005249,0.249945,0,0);-ms-transform:matrix(0.324943,-0.006824,0.005249,0.249945,0,0);-webkit-transform:matrix(0.324943,-0.006824,0.005249,0.249945,0,0);}
.m247d_c00001{transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);}
.m8dd_c00001{transform:matrix(0.325373,-0.010748,0.008254,0.249864,0,0);-ms-transform:matrix(0.325373,-0.010748,0.008254,0.249864,0,0);-webkit-transform:matrix(0.325373,-0.010748,0.008254,0.249864,0,0);}
.m28f7_c00001{transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326675,0.000000,0.000000,0.250000,0,0);}
.ma99_c00001{transform:matrix(0.326770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326770,0.000000,0.000000,0.250000,0,0);}
.m15d0_c00001{transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);}
.m849_c00001{transform:matrix(0.327022,-0.009157,0.006997,0.249902,0,0);-ms-transform:matrix(0.327022,-0.009157,0.006997,0.249902,0,0);-webkit-transform:matrix(0.327022,-0.009157,0.006997,0.249902,0,0);}
.mf47_c00001{transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);}
.m2a4_c00001{transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327210,0.000000,0.000000,0.250000,0,0);}
.md24_c00001{transform:matrix(0.327482,-0.009497,0.007247,0.249895,0,0);-ms-transform:matrix(0.327482,-0.009497,0.007247,0.249895,0,0);-webkit-transform:matrix(0.327482,-0.009497,0.007247,0.249895,0,0);}
.m21a_c00001{transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);}
.m3e5_c00001{transform:matrix(0.327886,-0.009181,0.006997,0.249902,0,0);-ms-transform:matrix(0.327886,-0.009181,0.006997,0.249902,0,0);-webkit-transform:matrix(0.327886,-0.009181,0.006997,0.249902,0,0);}
.m29c0_c00001{transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);}
.m242_c00001{transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);}
.m1579_c00001{transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);}
.m745_c00001{transform:matrix(0.329431,0.009224,-0.006997,0.249902,0,0);-ms-transform:matrix(0.329431,0.009224,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.329431,0.009224,-0.006997,0.249902,0,0);}
.m58b_c00001{transform:matrix(0.329640,0.003626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329640,0.003626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329640,0.003626,-0.002750,0.249985,0,0);}
.m919_c00001{transform:matrix(0.329966,-0.012551,0.009503,0.249819,0,0);-ms-transform:matrix(0.329966,-0.012551,0.009503,0.249819,0,0);-webkit-transform:matrix(0.329966,-0.012551,0.009503,0.249819,0,0);}
.m562_c00001{transform:matrix(0.330185,0.003632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330185,0.003632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330185,0.003632,-0.002750,0.249985,0,0);}
.m200b_c00001{transform:matrix(0.330217,-0.008255,0.006248,0.249922,0,0);-ms-transform:matrix(0.330217,-0.008255,0.006248,0.249922,0,0);-webkit-transform:matrix(0.330217,-0.008255,0.006248,0.249922,0,0);}
.m3d8_c00001{transform:matrix(0.331150,-0.009272,0.006997,0.249902,0,0);-ms-transform:matrix(0.331150,-0.009272,0.006997,0.249902,0,0);-webkit-transform:matrix(0.331150,-0.009272,0.006997,0.249902,0,0);}
.mb41_c00001{transform:matrix(0.331153,-0.012928,0.009752,0.249810,0,0);-ms-transform:matrix(0.331153,-0.012928,0.009752,0.249810,0,0);-webkit-transform:matrix(0.331153,-0.012928,0.009752,0.249810,0,0);}
.m1f3b_c00001{transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331280,0.000000,0.000000,0.250000,0,0);}
.m18c9_c00001{transform:matrix(0.332315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332315,0.000000,0.000000,0.250000,0,0);}
.m27ea_c00001{transform:matrix(0.332375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332375,0.000000,0.000000,0.250000,0,0);}
.m1293_c00001{transform:matrix(0.332995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332995,0.000000,0.000000,0.250000,0,0);}
.m104e_c00001{transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);}
.m26c8_c00001{transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);}
.m2402_c00001{transform:matrix(0.333204,-0.007330,0.005499,0.249940,0,0);-ms-transform:matrix(0.333204,-0.007330,0.005499,0.249940,0,0);-webkit-transform:matrix(0.333204,-0.007330,0.005499,0.249940,0,0);}
.m258d_c00001{transform:matrix(0.333283,-0.004999,0.003750,0.249972,0,0);-ms-transform:matrix(0.333283,-0.004999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.333283,-0.004999,0.003750,0.249972,0,0);}
.m4fb_c00001{transform:matrix(0.333320,0.003667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.333320,0.003667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.333320,0.003667,-0.002750,0.249985,0,0);}
.m15cf_c00001{transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);}
.ma6a_c00001{transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333970,0.000000,0.000000,0.250000,0,0);}
.m5a8_c00001{transform:matrix(0.334105,0.003675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.334105,0.003675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.334105,0.003675,-0.002750,0.249985,0,0);}
.m1dbe_c00001{transform:matrix(0.334475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334475,0.000000,0.000000,0.250000,0,0);}
.ma9f_c00001{transform:matrix(0.335275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335275,0.000000,0.000000,0.250000,0,0);}
.m1727_c00001{transform:matrix(0.335342,-0.008719,0.006498,0.249916,0,0);-ms-transform:matrix(0.335342,-0.008719,0.006498,0.249916,0,0);-webkit-transform:matrix(0.335342,-0.008719,0.006498,0.249916,0,0);}
.m15db_c00001{transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);}
.m17d0_c00001{transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);}
.m4ae_c00001{transform:matrix(0.335818,-0.010757,0.008004,0.249872,0,0);-ms-transform:matrix(0.335818,-0.010757,0.008004,0.249872,0,0);-webkit-transform:matrix(0.335818,-0.010757,0.008004,0.249872,0,0);}
.mc5_c00001{transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336205,0.000000,0.000000,0.250000,0,0);}
.m4a4_c00001{transform:matrix(0.336627,-0.013816,0.010252,0.249790,0,0);-ms-transform:matrix(0.336627,-0.013816,0.010252,0.249790,0,0);-webkit-transform:matrix(0.336627,-0.013816,0.010252,0.249790,0,0);}
.m24da_c00001{transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);}
.m7ce_c00001{transform:matrix(0.336843,-0.009432,0.006997,0.249902,0,0);-ms-transform:matrix(0.336843,-0.009432,0.006997,0.249902,0,0);-webkit-transform:matrix(0.336843,-0.009432,0.006997,0.249902,0,0);}
.m1f1a_c00001{transform:matrix(0.337425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337425,0.000000,0.000000,0.250000,0,0);}
.m5cf_c00001{transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);}
.m7a0_c00001{transform:matrix(0.338222,-0.009470,0.006997,0.249902,0,0);-ms-transform:matrix(0.338222,-0.009470,0.006997,0.249902,0,0);-webkit-transform:matrix(0.338222,-0.009470,0.006997,0.249902,0,0);}
.m29da_c00001{transform:matrix(0.338670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338670,0.000000,0.000000,0.250000,0,0);}
.m29c1_c00001{transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339690,0.000000,0.000000,0.250000,0,0);}
.m28c5_c00001{transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);}
.m21ab_c00001{transform:matrix(0.340130,-0.007823,0.005748,0.249934,0,0);-ms-transform:matrix(0.340130,-0.007823,0.005748,0.249934,0,0);-webkit-transform:matrix(0.340130,-0.007823,0.005748,0.249934,0,0);}
.m2330_c00001{transform:matrix(0.340140,0.006123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.340140,0.006123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.340140,0.006123,-0.004499,0.249960,0,0);}
.m1c58_c00001{transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341280,0.000000,0.000000,0.250000,0,0);}
.m258e_c00001{transform:matrix(0.341647,-0.005125,0.003750,0.249972,0,0);-ms-transform:matrix(0.341647,-0.005125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.341647,-0.005125,0.003750,0.249972,0,0);}
.m2301_c00001{transform:matrix(0.342325,0.006162,-0.004499,0.249960,0,0);-ms-transform:matrix(0.342325,0.006162,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.342325,0.006162,-0.004499,0.249960,0,0);}
.m8a7_c00001{transform:matrix(0.342545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342545,0.000000,0.000000,0.250000,0,0);}
.m7f0_c00001{transform:matrix(0.342566,-0.009592,0.006997,0.249902,0,0);-ms-transform:matrix(0.342566,-0.009592,0.006997,0.249902,0,0);-webkit-transform:matrix(0.342566,-0.009592,0.006997,0.249902,0,0);}
.m14fe_c00001{transform:matrix(0.342793,0.011323,-0.008254,0.249864,0,0);-ms-transform:matrix(0.342793,0.011323,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.342793,0.011323,-0.008254,0.249864,0,0);}
.m1199_c00001{transform:matrix(0.342932,-0.007545,0.005499,0.249940,0,0);-ms-transform:matrix(0.342932,-0.007545,0.005499,0.249940,0,0);-webkit-transform:matrix(0.342932,-0.007545,0.005499,0.249940,0,0);}
.m2a05_c00001{transform:matrix(0.343344,-0.010998,0.008004,0.249872,0,0);-ms-transform:matrix(0.343344,-0.010998,0.008004,0.249872,0,0);-webkit-transform:matrix(0.343344,-0.010998,0.008004,0.249872,0,0);}
.m113_c00001{transform:matrix(0.343990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343990,0.000000,0.000000,0.250000,0,0);}
.m1734_c00001{transform:matrix(0.344264,-0.008951,0.006498,0.249916,0,0);-ms-transform:matrix(0.344264,-0.008951,0.006498,0.249916,0,0);-webkit-transform:matrix(0.344264,-0.008951,0.006498,0.249916,0,0);}
.m85a_c00001{transform:matrix(0.344295,-0.009640,0.006997,0.249902,0,0);-ms-transform:matrix(0.344295,-0.009640,0.006997,0.249902,0,0);-webkit-transform:matrix(0.344295,-0.009640,0.006997,0.249902,0,0);}
.m879_c00001{transform:matrix(0.344901,-0.013119,0.009503,0.249819,0,0);-ms-transform:matrix(0.344901,-0.013119,0.009503,0.249819,0,0);-webkit-transform:matrix(0.344901,-0.013119,0.009503,0.249819,0,0);}
.m1c1_c00001{transform:matrix(0.345451,-0.005527,0.003999,0.249968,0,0);-ms-transform:matrix(0.345451,-0.005527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.345451,-0.005527,0.003999,0.249968,0,0);}
.m55a_c00001{transform:matrix(0.345539,0.003801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.345539,0.003801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.345539,0.003801,-0.002750,0.249985,0,0);}
.m2923_c00001{transform:matrix(0.345690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345690,0.000000,0.000000,0.250000,0,0);}
.m1851_c00001{transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);}
.m827_c00001{transform:matrix(0.346594,-0.009705,0.006997,0.249902,0,0);-ms-transform:matrix(0.346594,-0.009705,0.006997,0.249902,0,0);-webkit-transform:matrix(0.346594,-0.009705,0.006997,0.249902,0,0);}
.m239e_c00001{transform:matrix(0.346613,-0.009012,0.006498,0.249916,0,0);-ms-transform:matrix(0.346613,-0.009012,0.006498,0.249916,0,0);-webkit-transform:matrix(0.346613,-0.009012,0.006498,0.249916,0,0);}
.m1df2_c00001{transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348280,0.000000,0.000000,0.250000,0,0);}
.m2813_c00001{transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);}
.m19f_c00001{transform:matrix(0.348520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348520,0.000000,0.000000,0.250000,0,0);}
.m2520_c00001{transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);}
.m5e2_c00001{transform:matrix(0.348931,-0.015718,0.011250,0.249747,0,0);-ms-transform:matrix(0.348931,-0.015718,0.011250,0.249747,0,0);-webkit-transform:matrix(0.348931,-0.015718,0.011250,0.249747,0,0);}
.m49_c00001{transform:matrix(0.349105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349105,0.000000,0.000000,0.250000,0,0);}
.m103b_c00001{transform:matrix(0.349120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349120,0.000000,0.000000,0.250000,0,0);}
.m26c0_c00001{transform:matrix(0.349195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349195,0.000000,0.000000,0.250000,0,0);}
.m70c_c00001{transform:matrix(0.349538,0.008039,-0.005748,0.249934,0,0);-ms-transform:matrix(0.349538,0.008039,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.349538,0.008039,-0.005748,0.249934,0,0);}
.m17e4_c00001{transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349700,0.000000,0.000000,0.250000,0,0);}
.m4bd_c00001{transform:matrix(0.350295,-0.011221,0.008004,0.249872,0,0);-ms-transform:matrix(0.350295,-0.011221,0.008004,0.249872,0,0);-webkit-transform:matrix(0.350295,-0.011221,0.008004,0.249872,0,0);}
.ma9d_c00001{transform:matrix(0.350400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350400,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00001{transform:matrix(0.350905,-0.005614,0.003999,0.249968,0,0);-ms-transform:matrix(0.350905,-0.005614,0.003999,0.249968,0,0);-webkit-transform:matrix(0.350905,-0.005614,0.003999,0.249968,0,0);}
.m1836_c00001{transform:matrix(0.351020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351020,0.000000,0.000000,0.250000,0,0);}
.m1f59_c00001{transform:matrix(0.352175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352175,0.000000,0.000000,0.250000,0,0);}
.m3aa_c00001{transform:matrix(0.352540,-0.004583,0.003250,0.249979,0,0);-ms-transform:matrix(0.352540,-0.004583,0.003250,0.249979,0,0);-webkit-transform:matrix(0.352540,-0.004583,0.003250,0.249979,0,0);}
.m4c2_c00001{transform:matrix(0.352880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352880,0.000000,0.000000,0.250000,0,0);}
.m954_c00001{transform:matrix(0.353155,-0.013433,0.009503,0.249819,0,0);-ms-transform:matrix(0.353155,-0.013433,0.009503,0.249819,0,0);-webkit-transform:matrix(0.353155,-0.013433,0.009503,0.249819,0,0);}
.m48f_c00001{transform:matrix(0.353173,-0.014495,0.010252,0.249790,0,0);-ms-transform:matrix(0.353173,-0.014495,0.010252,0.249790,0,0);-webkit-transform:matrix(0.353173,-0.014495,0.010252,0.249790,0,0);}
.m855_c00001{transform:matrix(0.353272,-0.009892,0.006997,0.249902,0,0);-ms-transform:matrix(0.353272,-0.009892,0.006997,0.249902,0,0);-webkit-transform:matrix(0.353272,-0.009892,0.006997,0.249902,0,0);}
.m26de_c00001{transform:matrix(0.353370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353370,0.000000,0.000000,0.250000,0,0);}
.m2925_c00001{transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353410,0.000000,0.000000,0.250000,0,0);}
.me28_c00001{transform:matrix(0.353670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353670,0.000000,0.000000,0.250000,0,0);}
.m299e_c00001{transform:matrix(0.354635,-0.005674,0.003999,0.249968,0,0);-ms-transform:matrix(0.354635,-0.005674,0.003999,0.249968,0,0);-webkit-transform:matrix(0.354635,-0.005674,0.003999,0.249968,0,0);}
.m22a9_c00001{transform:matrix(0.355125,0.005682,-0.003999,0.249968,0,0);-ms-transform:matrix(0.355125,0.005682,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.355125,0.005682,-0.003999,0.249968,0,0);}
.m571_c00001{transform:matrix(0.355428,0.003910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.355428,0.003910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.355428,0.003910,-0.002750,0.249985,0,0);}
.m90f_c00001{transform:matrix(0.355498,-0.013522,0.009503,0.249819,0,0);-ms-transform:matrix(0.355498,-0.013522,0.009503,0.249819,0,0);-webkit-transform:matrix(0.355498,-0.013522,0.009503,0.249819,0,0);}
.m8c2_c00001{transform:matrix(0.356942,-0.008567,0.005998,0.249928,0,0);-ms-transform:matrix(0.356942,-0.008567,0.005998,0.249928,0,0);-webkit-transform:matrix(0.356942,-0.008567,0.005998,0.249928,0,0);}
.m1d4f_c00001{transform:matrix(0.356955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356955,0.000000,0.000000,0.250000,0,0);}
.m29be_c00001{transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);}
.m41d_c00001{transform:matrix(0.357456,-0.007507,0.005249,0.249945,0,0);-ms-transform:matrix(0.357456,-0.007507,0.005249,0.249945,0,0);-webkit-transform:matrix(0.357456,-0.007507,0.005249,0.249945,0,0);}
.m8b0_c00001{transform:matrix(0.358475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358475,0.000000,0.000000,0.250000,0,0);}
.m270e_c00001{transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);}
.m7b5_c00001{transform:matrix(0.359594,-0.010069,0.006997,0.249902,0,0);-ms-transform:matrix(0.359594,-0.010069,0.006997,0.249902,0,0);-webkit-transform:matrix(0.359594,-0.010069,0.006997,0.249902,0,0);}
.m794_c00001{transform:matrix(0.359995,0.008280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.359995,0.008280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.359995,0.008280,-0.005748,0.249934,0,0);}
.m269d_c00001{transform:matrix(0.360255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360255,0.000000,0.000000,0.250000,0,0);}
.m292d_c00001{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m493_c00001{transform:matrix(0.362490,-0.014877,0.010252,0.249790,0,0);-ms-transform:matrix(0.362490,-0.014877,0.010252,0.249790,0,0);-webkit-transform:matrix(0.362490,-0.014877,0.010252,0.249790,0,0);}
.m2500_c00001{transform:matrix(0.364065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364065,0.000000,0.000000,0.250000,0,0);}
.m4c5_c00001{transform:matrix(0.364178,0.004006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.364178,0.004006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.364178,0.004006,-0.002750,0.249985,0,0);}
.m88d_c00001{transform:matrix(0.364257,-0.013856,0.009503,0.249819,0,0);-ms-transform:matrix(0.364257,-0.013856,0.009503,0.249819,0,0);-webkit-transform:matrix(0.364257,-0.013856,0.009503,0.249819,0,0);}
.m2015_c00001{transform:matrix(0.364320,-0.011294,0.007746,0.249880,0,0);-ms-transform:matrix(0.364320,-0.011294,0.007746,0.249880,0,0);-webkit-transform:matrix(0.364320,-0.011294,0.007746,0.249880,0,0);}
.m10ae_c00001{transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);}
.m23a2_c00001{transform:matrix(0.365207,-0.008035,0.005499,0.249940,0,0);-ms-transform:matrix(0.365207,-0.008035,0.005499,0.249940,0,0);-webkit-transform:matrix(0.365207,-0.008035,0.005499,0.249940,0,0);}
.m29f3_c00001{transform:matrix(0.365338,-0.011703,0.008004,0.249872,0,0);-ms-transform:matrix(0.365338,-0.011703,0.008004,0.249872,0,0);-webkit-transform:matrix(0.365338,-0.011703,0.008004,0.249872,0,0);}
.m898_c00001{transform:matrix(0.365789,-0.006950,0.004749,0.249955,0,0);-ms-transform:matrix(0.365789,-0.006950,0.004749,0.249955,0,0);-webkit-transform:matrix(0.365789,-0.006950,0.004749,0.249955,0,0);}
.m23e_c00001{transform:matrix(0.366770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366770,0.000000,0.000000,0.250000,0,0);}
.m5c8_c00001{transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367120,0.000000,0.000000,0.250000,0,0);}
.m673_c00001{transform:matrix(0.369854,-0.015179,0.010252,0.249790,0,0);-ms-transform:matrix(0.369854,-0.015179,0.010252,0.249790,0,0);-webkit-transform:matrix(0.369854,-0.015179,0.010252,0.249790,0,0);}
.m1f66_c00001{transform:matrix(0.370315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370315,0.000000,0.000000,0.250000,0,0);}
.m917_c00001{transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);-ms-transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);-webkit-transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);}
.m9e6_c00001{transform:matrix(0.378380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378380,0.000000,0.000000,0.250000,0,0);}
.m2381_c00001{transform:matrix(0.378700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378700,0.000000,0.000000,0.250000,0,0);}
.mb52_c00001{transform:matrix(0.382624,-0.014937,0.009752,0.249810,0,0);-ms-transform:matrix(0.382624,-0.014937,0.009752,0.249810,0,0);-webkit-transform:matrix(0.382624,-0.014937,0.009752,0.249810,0,0);}
.m27f0_c00001{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m26c9_c00001{transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);}
.m42b_c00001{transform:matrix(0.386960,-0.007352,0.004749,0.249955,0,0);-ms-transform:matrix(0.386960,-0.007352,0.004749,0.249955,0,0);-webkit-transform:matrix(0.386960,-0.007352,0.004749,0.249955,0,0);}
.mf7_c00001{transform:matrix(0.387685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387685,0.000000,0.000000,0.250000,0,0);}
.ma9b_c00001{transform:matrix(0.388995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388995,0.000000,0.000000,0.250000,0,0);}
.m405_c00001{transform:matrix(0.391854,-0.008229,0.005249,0.249945,0,0);-ms-transform:matrix(0.391854,-0.008229,0.005249,0.249945,0,0);-webkit-transform:matrix(0.391854,-0.008229,0.005249,0.249945,0,0);}
.m26f2_c00001{transform:matrix(0.393115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393115,0.000000,0.000000,0.250000,0,0);}
.m2896_c00001{transform:matrix(0.393610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393610,0.000000,0.000000,0.250000,0,0);}
.m967_c00001{transform:matrix(0.393935,-0.014985,0.009503,0.249819,0,0);-ms-transform:matrix(0.393935,-0.014985,0.009503,0.249819,0,0);-webkit-transform:matrix(0.393935,-0.014985,0.009503,0.249819,0,0);}
.m29f4_c00001{transform:matrix(0.396172,-0.012690,0.008004,0.249872,0,0);-ms-transform:matrix(0.396172,-0.012690,0.008004,0.249872,0,0);-webkit-transform:matrix(0.396172,-0.012690,0.008004,0.249872,0,0);}
.m2102_c00001{transform:matrix(0.396984,0.011116,-0.006997,0.249902,0,0);-ms-transform:matrix(0.396984,0.011116,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.396984,0.011116,-0.006997,0.249902,0,0);}
.m2321_c00001{transform:matrix(0.397441,0.007154,-0.004499,0.249960,0,0);-ms-transform:matrix(0.397441,0.007154,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.397441,0.007154,-0.004499,0.249960,0,0);}
.m292a_c00001{transform:matrix(0.397790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397790,0.000000,0.000000,0.250000,0,0);}
.m470_c00001{transform:matrix(0.397880,-0.013541,0.008504,0.249855,0,0);-ms-transform:matrix(0.397880,-0.013541,0.008504,0.249855,0,0);-webkit-transform:matrix(0.397880,-0.013541,0.008504,0.249855,0,0);}
.m267d_c00001{transform:matrix(0.398350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398350,0.000000,0.000000,0.250000,0,0);}
.m29a0_c00001{transform:matrix(0.401674,-0.006427,0.003999,0.249968,0,0);-ms-transform:matrix(0.401674,-0.006427,0.003999,0.249968,0,0);-webkit-transform:matrix(0.401674,-0.006427,0.003999,0.249968,0,0);}
.m1f65_c00001{transform:matrix(0.402220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402220,0.000000,0.000000,0.250000,0,0);}
.ma9a_c00001{transform:matrix(0.403230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403230,0.000000,0.000000,0.250000,0,0);}
.m29fc_c00001{transform:matrix(0.403908,-0.012938,0.008004,0.249872,0,0);-ms-transform:matrix(0.403908,-0.012938,0.008004,0.249872,0,0);-webkit-transform:matrix(0.403908,-0.012938,0.008004,0.249872,0,0);}
.mafc_c00001{transform:matrix(0.404622,-0.015796,0.009752,0.249810,0,0);-ms-transform:matrix(0.404622,-0.015796,0.009752,0.249810,0,0);-webkit-transform:matrix(0.404622,-0.015796,0.009752,0.249810,0,0);}
.m28f9_c00001{transform:matrix(0.405880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405880,0.000000,0.000000,0.250000,0,0);}
.m492_c00001{transform:matrix(0.406623,-0.016688,0.010252,0.249790,0,0);-ms-transform:matrix(0.406623,-0.016688,0.010252,0.249790,0,0);-webkit-transform:matrix(0.406623,-0.016688,0.010252,0.249790,0,0);}
.m2b6_c00001{transform:matrix(0.406670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406670,0.000000,0.000000,0.250000,0,0);}
.m25c5_c00001{transform:matrix(0.407545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407545,0.000000,0.000000,0.250000,0,0);}
.m29e9_c00001{transform:matrix(0.408165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408165,0.000000,0.000000,0.250000,0,0);}
.m29e8_c00001{transform:matrix(0.408260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408260,0.000000,0.000000,0.250000,0,0);}
.m1918_c00001{transform:matrix(0.408735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408735,0.000000,0.000000,0.250000,0,0);}
.m258c_c00001{transform:matrix(0.410564,-0.006158,0.003750,0.249972,0,0);-ms-transform:matrix(0.410564,-0.006158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.410564,-0.006158,0.003750,0.249972,0,0);}
.m27f3_c00001{transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);}
.m1b7c_c00001{transform:matrix(0.416245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416245,0.000000,0.000000,0.250000,0,0);}
.m8da_c00001{transform:matrix(0.417068,-0.013777,0.008254,0.249864,0,0);-ms-transform:matrix(0.417068,-0.013777,0.008254,0.249864,0,0);-webkit-transform:matrix(0.417068,-0.013777,0.008254,0.249864,0,0);}
.m1197_c00001{transform:matrix(0.419483,-0.009229,0.005499,0.249940,0,0);-ms-transform:matrix(0.419483,-0.009229,0.005499,0.249940,0,0);-webkit-transform:matrix(0.419483,-0.009229,0.005499,0.249940,0,0);}
.m24be_c00001{transform:matrix(0.421000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421000,0.000000,0.000000,0.250000,0,0);}
.m5ca_c00001{transform:matrix(0.421650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421650,0.000000,0.000000,0.250000,0,0);}
.mafd_c00001{transform:matrix(0.422064,-0.016477,0.009752,0.249810,0,0);-ms-transform:matrix(0.422064,-0.016477,0.009752,0.249810,0,0);-webkit-transform:matrix(0.422064,-0.016477,0.009752,0.249810,0,0);}
.ma97_c00001{transform:matrix(0.422925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422925,0.000000,0.000000,0.250000,0,0);}
.m4c1_c00001{transform:matrix(0.425280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425280,0.000000,0.000000,0.250000,0,0);}
.m17ab_c00001{transform:matrix(0.427305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427305,0.000000,0.000000,0.250000,0,0);}
.m17fe_c00001{transform:matrix(0.429020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429020,0.000000,0.000000,0.250000,0,0);}
.m1ab9_c00001{transform:matrix(0.429280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429280,0.000000,0.000000,0.250000,0,0);}
.m237f_c00001{transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);}
.md75_c00001{transform:matrix(0.433450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433450,0.000000,0.000000,0.250000,0,0);}
.m25ee_c00001{transform:matrix(0.433485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433485,0.000000,0.000000,0.250000,0,0);}
.me8b_c00001{transform:matrix(0.436047,0.006105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.436047,0.006105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.436047,0.006105,-0.003500,0.249976,0,0);}
.mfd_c00001{transform:matrix(0.438070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438070,0.000000,0.000000,0.250000,0,0);}
.m29ed_c00001{transform:matrix(0.440150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440150,0.000000,0.000000,0.250000,0,0);}
.m26f1_c00001{transform:matrix(0.442475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442475,0.000000,0.000000,0.250000,0,0);}
.m1461_c00001{transform:matrix(0.446707,0.016992,-0.009503,0.249819,0,0);-ms-transform:matrix(0.446707,0.016992,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.446707,0.016992,-0.009503,0.249819,0,0);}
.m29fe_c00001{transform:matrix(0.451523,-0.014463,0.008004,0.249872,0,0);-ms-transform:matrix(0.451523,-0.014463,0.008004,0.249872,0,0);-webkit-transform:matrix(0.451523,-0.014463,0.008004,0.249872,0,0);}
.ma98_c00001{transform:matrix(0.452165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452165,0.000000,0.000000,0.250000,0,0);}
.m24eb_c00001{transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);}
.m29f0_c00001{transform:matrix(0.453862,-0.014538,0.008004,0.249872,0,0);-ms-transform:matrix(0.453862,-0.014538,0.008004,0.249872,0,0);-webkit-transform:matrix(0.453862,-0.014538,0.008004,0.249872,0,0);}
.m5cd_c00001{transform:matrix(0.465015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465015,0.000000,0.000000,0.250000,0,0);}
.m1f2e_c00001{transform:matrix(0.469775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469775,0.000000,0.000000,0.250000,0,0);}
.m29f6_c00001{transform:matrix(0.472583,-0.015138,0.008004,0.249872,0,0);-ms-transform:matrix(0.472583,-0.015138,0.008004,0.249872,0,0);-webkit-transform:matrix(0.472583,-0.015138,0.008004,0.249872,0,0);}
.m29f8_c00001{transform:matrix(0.473467,-0.015166,0.008004,0.249872,0,0);-ms-transform:matrix(0.473467,-0.015166,0.008004,0.249872,0,0);-webkit-transform:matrix(0.473467,-0.015166,0.008004,0.249872,0,0);}
.m2616_c00001{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m200a_c00001{transform:matrix(0.479610,-0.011990,0.006248,0.249922,0,0);-ms-transform:matrix(0.479610,-0.011990,0.006248,0.249922,0,0);-webkit-transform:matrix(0.479610,-0.011990,0.006248,0.249922,0,0);}
.m29d1_c00001{transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479715,0.000000,0.000000,0.250000,0,0);}
.m29d6_c00001{transform:matrix(0.482235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482235,0.000000,0.000000,0.250000,0,0);}
.ma9c_c00001{transform:matrix(0.483150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483150,0.000000,0.000000,0.250000,0,0);}
.m28f6_c00001{transform:matrix(0.483885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483885,0.000000,0.000000,0.250000,0,0);}
.m617_c00001{transform:matrix(0.489067,-0.022520,0.011499,0.249735,0,0);-ms-transform:matrix(0.489067,-0.022520,0.011499,0.249735,0,0);-webkit-transform:matrix(0.489067,-0.022520,0.011499,0.249735,0,0);}
.m29c5_c00001{transform:matrix(0.492030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492030,0.000000,0.000000,0.250000,0,0);}
.m2897_c00001{transform:matrix(0.492320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492320,0.000000,0.000000,0.250000,0,0);}
.m2417_c00001{transform:matrix(0.498229,-0.010961,0.005499,0.249940,0,0);-ms-transform:matrix(0.498229,-0.010961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.498229,-0.010961,0.005499,0.249940,0,0);}
.m292b_c00001{transform:matrix(0.502925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502925,0.000000,0.000000,0.250000,0,0);}
.m15da_c00001{transform:matrix(0.510935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510935,0.000000,0.000000,0.250000,0,0);}
.m29e2_c00001{transform:matrix(0.512511,-0.008713,0.004249,0.249964,0,0);-ms-transform:matrix(0.512511,-0.008713,0.004249,0.249964,0,0);-webkit-transform:matrix(0.512511,-0.008713,0.004249,0.249964,0,0);}
.m1490_c00001{transform:matrix(0.515054,0.017014,-0.008254,0.249864,0,0);-ms-transform:matrix(0.515054,0.017014,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.515054,0.017014,-0.008254,0.249864,0,0);}
.m29df_c00001{transform:matrix(0.515915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515915,0.000000,0.000000,0.250000,0,0);}
.m27db_c00001{transform:matrix(0.519345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519345,0.000000,0.000000,0.250000,0,0);}
.m1f11_c00001{transform:matrix(0.519385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519385,0.000000,0.000000,0.250000,0,0);}
.m111e_c00001{transform:matrix(0.519720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519720,0.000000,0.000000,0.250000,0,0);}
.m1fb5_c00001{transform:matrix(0.522993,-0.021988,0.010501,0.249779,0,0);-ms-transform:matrix(0.522993,-0.021988,0.010501,0.249779,0,0);-webkit-transform:matrix(0.522993,-0.021988,0.010501,0.249779,0,0);}
.m29c4_c00001{transform:matrix(0.529440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529440,0.000000,0.000000,0.250000,0,0);}
.m2a06_c00001{transform:matrix(0.533375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533375,0.000000,0.000000,0.250000,0,0);}
.m5ce_c00001{transform:matrix(0.535480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535480,0.000000,0.000000,0.250000,0,0);}
.m92a_c00001{transform:matrix(0.539115,-0.020507,0.009503,0.249819,0,0);-ms-transform:matrix(0.539115,-0.020507,0.009503,0.249819,0,0);-webkit-transform:matrix(0.539115,-0.020507,0.009503,0.249819,0,0);}
.m29f2_c00001{transform:matrix(0.540718,-0.017320,0.008004,0.249872,0,0);-ms-transform:matrix(0.540718,-0.017320,0.008004,0.249872,0,0);-webkit-transform:matrix(0.540718,-0.017320,0.008004,0.249872,0,0);}
.m2382_c00001{transform:matrix(0.548770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548770,0.000000,0.000000,0.250000,0,0);}
.m83c_c00001{transform:matrix(0.552229,-0.015462,0.006997,0.249902,0,0);-ms-transform:matrix(0.552229,-0.015462,0.006997,0.249902,0,0);-webkit-transform:matrix(0.552229,-0.015462,0.006997,0.249902,0,0);}
.m12f8_c00001{transform:matrix(0.555702,0.015004,-0.006748,0.249909,0,0);-ms-transform:matrix(0.555702,0.015004,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.555702,0.015004,-0.006748,0.249909,0,0);}
.m29ee_c00001{transform:matrix(0.558474,-0.017889,0.008004,0.249872,0,0);-ms-transform:matrix(0.558474,-0.017889,0.008004,0.249872,0,0);-webkit-transform:matrix(0.558474,-0.017889,0.008004,0.249872,0,0);}
.m918_c00001{transform:matrix(0.558841,-0.021257,0.009503,0.249819,0,0);-ms-transform:matrix(0.558841,-0.021257,0.009503,0.249819,0,0);-webkit-transform:matrix(0.558841,-0.021257,0.009503,0.249819,0,0);}
.m1fc1_c00001{transform:matrix(0.569932,-0.023961,0.010501,0.249779,0,0);-ms-transform:matrix(0.569932,-0.023961,0.010501,0.249779,0,0);-webkit-transform:matrix(0.569932,-0.023961,0.010501,0.249779,0,0);}
.m60b_c00001{transform:matrix(0.576721,-0.024247,0.010501,0.249779,0,0);-ms-transform:matrix(0.576721,-0.024247,0.010501,0.249779,0,0);-webkit-transform:matrix(0.576721,-0.024247,0.010501,0.249779,0,0);}
.m2550_c00001{transform:matrix(0.579675,-0.008695,0.003750,0.249972,0,0);-ms-transform:matrix(0.579675,-0.008695,0.003750,0.249972,0,0);-webkit-transform:matrix(0.579675,-0.008695,0.003750,0.249972,0,0);}
.m1ec_c00001{transform:matrix(0.582905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582905,0.000000,0.000000,0.250000,0,0);}
.m29e6_c00001{transform:matrix(0.586200,-0.009965,0.004249,0.249964,0,0);-ms-transform:matrix(0.586200,-0.009965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.586200,-0.009965,0.004249,0.249964,0,0);}
.m1726_c00001{transform:matrix(0.592980,-0.015417,0.006498,0.249916,0,0);-ms-transform:matrix(0.592980,-0.015417,0.006498,0.249916,0,0);-webkit-transform:matrix(0.592980,-0.015417,0.006498,0.249916,0,0);}
.maa9_c00001{transform:matrix(0.594134,-0.015447,0.006498,0.249916,0,0);-ms-transform:matrix(0.594134,-0.015447,0.006498,0.249916,0,0);-webkit-transform:matrix(0.594134,-0.015447,0.006498,0.249916,0,0);}
.m265_c00001{transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);}
.m5c7_c00001{transform:matrix(0.599345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599345,0.000000,0.000000,0.250000,0,0);}
.ma2b_c00001{transform:matrix(0.606095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606095,0.000000,0.000000,0.250000,0,0);}
.m9dc_c00001{transform:matrix(0.615800,0.011084,-0.004499,0.249960,0,0);-ms-transform:matrix(0.615800,0.011084,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.615800,0.011084,-0.004499,0.249960,0,0);}
.m1e49_c00001{transform:matrix(0.626348,-0.016285,0.006498,0.249916,0,0);-ms-transform:matrix(0.626348,-0.016285,0.006498,0.249916,0,0);-webkit-transform:matrix(0.626348,-0.016285,0.006498,0.249916,0,0);}
.m29c8_c00001{transform:matrix(0.644225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644225,0.000000,0.000000,0.250000,0,0);}
.mf9_c00001{transform:matrix(0.650182,-0.010403,0.003999,0.249968,0,0);-ms-transform:matrix(0.650182,-0.010403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.650182,-0.010403,0.003999,0.249968,0,0);}
.m46d_c00001{transform:matrix(0.651958,-0.022189,0.008504,0.249855,0,0);-ms-transform:matrix(0.651958,-0.022189,0.008504,0.249855,0,0);-webkit-transform:matrix(0.651958,-0.022189,0.008504,0.249855,0,0);}
.m29d8_c00001{transform:matrix(0.656520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656520,0.000000,0.000000,0.250000,0,0);}
.m24e5_c00001{transform:matrix(0.663865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663865,0.000000,0.000000,0.250000,0,0);}
.m29c2_c00001{transform:matrix(0.666035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666035,0.000000,0.000000,0.250000,0,0);}
.m29bf_c00001{transform:matrix(0.673725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673725,0.000000,0.000000,0.250000,0,0);}
.m29ca_c00001{transform:matrix(0.678640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678640,0.000000,0.000000,0.250000,0,0);}
.m464_c00001{transform:matrix(0.685558,-0.023332,0.008504,0.249855,0,0);-ms-transform:matrix(0.685558,-0.023332,0.008504,0.249855,0,0);-webkit-transform:matrix(0.685558,-0.023332,0.008504,0.249855,0,0);}
.m22ed_c00001{transform:matrix(0.688493,0.012393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.688493,0.012393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.688493,0.012393,-0.004499,0.249960,0,0);}
.m4bc_c00001{transform:matrix(0.688962,-0.022069,0.008004,0.249872,0,0);-ms-transform:matrix(0.688962,-0.022069,0.008004,0.249872,0,0);-webkit-transform:matrix(0.688962,-0.022069,0.008004,0.249872,0,0);}
.m29cb_c00001{transform:matrix(0.694140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694140,0.000000,0.000000,0.250000,0,0);}
.m29d0_c00001{transform:matrix(0.736795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736795,0.000000,0.000000,0.250000,0,0);}
.m2a03_c00001{transform:matrix(0.742474,-0.023783,0.008004,0.249872,0,0);-ms-transform:matrix(0.742474,-0.023783,0.008004,0.249872,0,0);-webkit-transform:matrix(0.742474,-0.023783,0.008004,0.249872,0,0);}
.m2a07_c00001{transform:matrix(0.742510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742510,0.000000,0.000000,0.250000,0,0);}
.m24ff_c00001{transform:matrix(0.742975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742975,0.000000,0.000000,0.250000,0,0);}
.m29de_c00001{transform:matrix(0.756215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756215,0.000000,0.000000,0.250000,0,0);}
.m24bd_c00001{transform:matrix(0.763165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763165,0.000000,0.000000,0.250000,0,0);}
.m2652_c00001{transform:matrix(0.763175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763175,0.000000,0.000000,0.250000,0,0);}
.m29eb_c00001{transform:matrix(0.765030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765030,0.000000,0.000000,0.250000,0,0);}
.m29ea_c00001{transform:matrix(0.768475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768475,0.000000,0.000000,0.250000,0,0);}
.m254e_c00001{transform:matrix(0.778732,-0.011681,0.003750,0.249972,0,0);-ms-transform:matrix(0.778732,-0.011681,0.003750,0.249972,0,0);-webkit-transform:matrix(0.778732,-0.011681,0.003750,0.249972,0,0);}
.m4c3_c00001{transform:matrix(0.785165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785165,0.000000,0.000000,0.250000,0,0);}
.m25af_c00001{transform:matrix(0.788760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788760,0.000000,0.000000,0.250000,0,0);}
.m27eb_c00001{transform:matrix(0.792555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792555,0.000000,0.000000,0.250000,0,0);}
.m25b0_c00001{transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799330,0.000000,0.000000,0.250000,0,0);}
.m26e4_c00001{transform:matrix(0.807245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807245,0.000000,0.000000,0.250000,0,0);}
.mc68_c00001{transform:matrix(0.825318,-0.023934,0.007247,0.249895,0,0);-ms-transform:matrix(0.825318,-0.023934,0.007247,0.249895,0,0);-webkit-transform:matrix(0.825318,-0.023934,0.007247,0.249895,0,0);}
.m267b_c00001{transform:matrix(0.832485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832485,0.000000,0.000000,0.250000,0,0);}
.m29cf_c00001{transform:matrix(0.866735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.866735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.866735,0.000000,0.000000,0.250000,0,0);}
.m2a01_c00001{transform:matrix(0.896560,-0.028719,0.008004,0.249872,0,0);-ms-transform:matrix(0.896560,-0.028719,0.008004,0.249872,0,0);-webkit-transform:matrix(0.896560,-0.028719,0.008004,0.249872,0,0);}
.m29ce_c00001{transform:matrix(0.916150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916150,0.000000,0.000000,0.250000,0,0);}
.m29dc_c00001{transform:matrix(0.940730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940730,0.000000,0.000000,0.250000,0,0);}
.m29e4_c00001{transform:matrix(0.997381,-0.016955,0.004249,0.249964,0,0);-ms-transform:matrix(0.997381,-0.016955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.997381,-0.016955,0.004249,0.249964,0,0);}
.m29dd_c00001{transform:matrix(1.062005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062005,0.000000,0.000000,0.250000,0,0);}
.m28f8_c00001{transform:matrix(1.096345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.096345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.096345,0.000000,0.000000,0.250000,0,0);}
.m1b7f_c00001{transform:matrix(1.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.146380,0.000000,0.000000,0.250000,0,0);}
.m8b5_c00001{transform:matrix(1.151385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.151385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.151385,0.000000,0.000000,0.250000,0,0);}
.m29bd_c00001{transform:matrix(1.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.192630,0.000000,0.000000,0.250000,0,0);}
.m2a02_c00001{transform:matrix(1.223737,-0.039199,0.008004,0.249872,0,0);-ms-transform:matrix(1.223737,-0.039199,0.008004,0.249872,0,0);-webkit-transform:matrix(1.223737,-0.039199,0.008004,0.249872,0,0);}
.m29f5_c00001{transform:matrix(1.327599,-0.042526,0.008004,0.249872,0,0);-ms-transform:matrix(1.327599,-0.042526,0.008004,0.249872,0,0);-webkit-transform:matrix(1.327599,-0.042526,0.008004,0.249872,0,0);}
.m29db_c00001{transform:matrix(1.330445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.330445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.330445,0.000000,0.000000,0.250000,0,0);}
.m1193_c00001{transform:matrix(1.336095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.336095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.336095,0.000000,0.000000,0.250000,0,0);}
.m29d3_c00001{transform:matrix(1.360030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.360030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.360030,0.000000,0.000000,0.250000,0,0);}
.m29cc_c00001{transform:matrix(1.614185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.614185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.614185,0.000000,0.000000,0.250000,0,0);}
.m2984_c00001{transform:matrix(1.622336,-0.032447,0.004999,0.249950,0,0);-ms-transform:matrix(1.622336,-0.032447,0.004999,0.249950,0,0);-webkit-transform:matrix(1.622336,-0.032447,0.004999,0.249950,0,0);}
.m2985_c00001{transform:matrix(1.721016,-0.034420,0.004999,0.249950,0,0);-ms-transform:matrix(1.721016,-0.034420,0.004999,0.249950,0,0);-webkit-transform:matrix(1.721016,-0.034420,0.004999,0.249950,0,0);}
.m27f2_c00001{transform:matrix(1.876710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.876710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.876710,0.000000,0.000000,0.250000,0,0);}
.m299d_c00001{transform:matrix(2.017337,-0.032277,0.003999,0.249968,0,0);-ms-transform:matrix(2.017337,-0.032277,0.003999,0.249968,0,0);-webkit-transform:matrix(2.017337,-0.032277,0.003999,0.249968,0,0);}
.m24bc_c00001{transform:matrix(2.054710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.054710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.054710,0.000000,0.000000,0.250000,0,0);}
.m1194_c00001{transform:matrix(2.321060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.321060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.321060,0.000000,0.000000,0.250000,0,0);}
.m1b7e_c00001{transform:matrix(2.336120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.336120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.336120,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
._0_c00001{margin-left:-39.783548px;}
._2_c00001{width:314.143435px;}
._3_c00001{width:1599.527779px;}
._1_c00001{width:4410.882387px;}
.fc0_c00001{color:transparent;}
.fs17b_c00001{font-size:15.750000px;}
.fsfa_c00001{font-size:16.800000px;}
.fs199_c00001{font-size:18.900000px;}
.fs64_c00001{font-size:21.001228px;}
.fs5a_c00001{font-size:22.050000px;}
.fs45_c00001{font-size:24.146160px;}
.fsce_c00001{font-size:24.150000px;}
.fs17c_c00001{font-size:26.250000px;}
.fs96_c00001{font-size:27.300000px;}
.fs1a4_c00001{font-size:28.336176px;}
.fs4b_c00001{font-size:28.350000px;}
.fs165_c00001{font-size:30.456713px;}
.fs13e_c00001{font-size:31.500000px;}
.fs1a9_c00001{font-size:31.509071px;}
.fs4c_c00001{font-size:35.700000px;}
.fsa3_c00001{font-size:36.739800px;}
.fs19d_c00001{font-size:36.753601px;}
.fsb3_c00001{font-size:37.800000px;}
.fs198_c00001{font-size:38.850000px;}
.fs1a3_c00001{font-size:39.880544px;}
.fs1a1_c00001{font-size:40.950000px;}
.fsb4_c00001{font-size:42.000000px;}
.fse3_c00001{font-size:43.050000px;}
.fs3d_c00001{font-size:45.158149px;}
.fs12a_c00001{font-size:45.166454px;}
.fs188_c00001{font-size:46.200000px;}
.fseb_c00001{font-size:46.207484px;}
.fs19a_c00001{font-size:47.250000px;}
.fs5b_c00001{font-size:50.400000px;}
.fs196_c00001{font-size:50.404939px;}
.fs5e_c00001{font-size:51.443954px;}
.fsdf_c00001{font-size:51.454347px;}
.fs9f_c00001{font-size:52.485429px;}
.fs1a0_c00001{font-size:52.500000px;}
.fs145_c00001{font-size:53.550000px;}
.fs19b_c00001{font-size:53.553855px;}
.fs185_c00001{font-size:53.562958px;}
.fs157_c00001{font-size:53.575725px;}
.fs12e_c00001{font-size:54.575151px;}
.fsfd_c00001{font-size:54.600000px;}
.fs18b_c00001{font-size:54.606142px;}
.fs17a_c00001{font-size:54.608844px;}
.fs34_c00001{font-size:54.612038px;}
.fs183_c00001{font-size:54.613212px;}
.fs1aa_c00001{font-size:54.622954px;}
.fs12f_c00001{font-size:55.624673px;}
.fs114_c00001{font-size:55.650000px;}
.fs175_c00001{font-size:55.657123px;}
.fs177_c00001{font-size:55.659015px;}
.fs142_c00001{font-size:55.660044px;}
.fs19f_c00001{font-size:55.661129px;}
.fs107_c00001{font-size:55.663466px;}
.fs16c_c00001{font-size:55.664717px;}
.fs16a_c00001{font-size:55.666025px;}
.fs14f_c00001{font-size:55.667388px;}
.fs128_c00001{font-size:55.668807px;}
.fs113_c00001{font-size:55.670281px;}
.fs11d_c00001{font-size:55.673396px;}
.fs2b_c00001{font-size:56.700000px;}
.fs13f_c00001{font-size:56.707257px;}
.fse9_c00001{font-size:56.709185px;}
.fs161_c00001{font-size:56.710233px;}
.fs148_c00001{font-size:56.711339px;}
.fs166_c00001{font-size:56.712501px;}
.fs17f_c00001{font-size:56.713720px;}
.fs115_c00001{font-size:56.714995px;}
.fs147_c00001{font-size:56.719161px;}
.fs11b_c00001{font-size:56.720663px;}
.fs130_c00001{font-size:57.723718px;}
.fs72_c00001{font-size:57.740817px;}
.fs65_c00001{font-size:57.745669px;}
.fsfc_c00001{font-size:57.750000px;}
.fsf6_c00001{font-size:57.754880px;}
.fsf2_c00001{font-size:57.755659px;}
.fs191_c00001{font-size:57.756497px;}
.fs174_c00001{font-size:57.757392px;}
.fs1a2_c00001{font-size:57.758344px;}
.fs16b_c00001{font-size:57.759355px;}
.fs18_c00001{font-size:57.761549px;}
.fs163_c00001{font-size:57.762732px;}
.fs180_c00001{font-size:57.763974px;}
.fs117_c00001{font-size:57.768044px;}
.fs121_c00001{font-size:57.769516px;}
.fs10e_c00001{font-size:57.771046px;}
.fs154_c00001{font-size:57.777742px;}
.fs131_c00001{font-size:58.773240px;}
.fs139_c00001{font-size:58.775211px;}
.fsa5_c00001{font-size:58.783681px;}
.fs12_c00001{font-size:58.800000px;}
.fsf5_c00001{font-size:58.804968px;}
.fsed_c00001{font-size:58.805762px;}
.fs193_c00001{font-size:58.806615px;}
.fs17_c00001{font-size:58.807526px;}
.fse8_c00001{font-size:58.809525px;}
.fs39_c00001{font-size:58.810612px;}
.fs32_c00001{font-size:58.812964px;}
.fs182_c00001{font-size:58.814228px;}
.fs16e_c00001{font-size:58.815551px;}
.fs15d_c00001{font-size:58.816932px;}
.fs14d_c00001{font-size:58.818372px;}
.fs120_c00001{font-size:58.819871px;}
.fs10d_c00001{font-size:58.821429px;}
.fs8e_c00001{font-size:58.823045px;}
.fsd5_c00001{font-size:58.824720px;}
.fs150_c00001{font-size:58.828247px;}
.fs2c_c00001{font-size:59.822762px;}
.fs13a_c00001{font-size:59.824768px;}
.fs92_c00001{font-size:59.833389px;}
.fs10_c00001{font-size:59.850000px;}
.fs18e_c00001{font-size:59.853621px;}
.fs18c_c00001{font-size:59.855057px;}
.fsef_c00001{font-size:59.855865px;}
.fs189_c00001{font-size:59.856733px;}
.fs170_c00001{font-size:59.857660px;}
.fse6_c00001{font-size:59.859695px;}
.fs15f_c00001{font-size:59.860802px;}
.fsf8_c00001{font-size:59.861969px;}
.fs17e_c00001{font-size:59.864482px;}
.fs15a_c00001{font-size:59.865828px;}
.fs98_c00001{font-size:59.867234px;}
.fs14c_c00001{font-size:59.868700px;}
.fs122_c00001{font-size:59.870226px;}
.fs111_c00001{font-size:59.871811px;}
.fs82_c00001{font-size:59.873457px;}
.fsc7_c00001{font-size:59.875162px;}
.fs156_c00001{font-size:59.878751px;}
.fs49_c00001{font-size:60.870304px;}
.fs132_c00001{font-size:60.872284px;}
.fs93_c00001{font-size:60.883098px;}
.fsb9_c00001{font-size:60.885443px;}
.fs6b_c00001{font-size:60.890316px;}
.fs149_c00001{font-size:60.892844px;}
.fs68_c00001{font-size:60.895432px;}
.fsc_c00001{font-size:60.900000px;}
.fs52_c00001{font-size:60.903684px;}
.fs194_c00001{font-size:60.905146px;}
.fsf4_c00001{font-size:60.905968px;}
.fs172_c00001{font-size:60.907795px;}
.fs176_c00001{font-size:60.909865px;}
.fs160_c00001{font-size:60.910991px;}
.fsf9_c00001{font-size:60.912179px;}
.fs36_c00001{font-size:60.913427px;}
.fsff_c00001{font-size:60.914736px;}
.fs15b_c00001{font-size:60.916106px;}
.fs169_c00001{font-size:60.917537px;}
.fs14b_c00001{font-size:60.919028px;}
.fs123_c00001{font-size:60.920581px;}
.fs10a_c00001{font-size:60.922194px;}
.fs8d_c00001{font-size:60.923868px;}
.fsdb_c00001{font-size:60.925603px;}
.fs135_c00001{font-size:61.921806px;}
.fsa1_c00001{font-size:61.932806px;}
.fsbf_c00001{font-size:61.935192px;}
.fs5f_c00001{font-size:61.942720px;}
.fsba_c00001{font-size:61.945354px;}
.fs7_c00001{font-size:61.950000px;}
.fs55_c00001{font-size:61.953748px;}
.fs197_c00001{font-size:61.954460px;}
.fs24_c00001{font-size:61.955235px;}
.fsec_c00001{font-size:61.956071px;}
.fs15_c00001{font-size:61.957929px;}
.fsb1_c00001{font-size:61.960035px;}
.fs33_c00001{font-size:61.963658px;}
.fs100_c00001{font-size:61.964990px;}
.fs14a_c00001{font-size:61.969356px;}
.fs127_c00001{font-size:61.970936px;}
.fs108_c00001{font-size:61.972577px;}
.fs89_c00001{font-size:61.974280px;}
.fsd2_c00001{font-size:61.976045px;}
.fs43_c00001{font-size:61.977871px;}
.fs151_c00001{font-size:61.979760px;}
.fs133_c00001{font-size:62.971328px;}
.fs138_c00001{font-size:62.973440px;}
.fsac_c00001{font-size:62.982515px;}
.fsc4_c00001{font-size:62.984941px;}
.fs6a_c00001{font-size:62.989982px;}
.fs60_c00001{font-size:62.992597px;}
.fsb_c00001{font-size:63.000000px;}
.fs59_c00001{font-size:63.003811px;}
.fs1c_c00001{font-size:63.004536px;}
.fs2a_c00001{font-size:63.005323px;}
.fsf1_c00001{font-size:63.006174px;}
.fs13_c00001{font-size:63.007087px;}
.fsea_c00001{font-size:63.010205px;}
.fs105_c00001{font-size:63.015244px;}
.fs7b_c00001{font-size:63.019684px;}
.fs129_c00001{font-size:63.021290px;}
.fs10f_c00001{font-size:63.022959px;}
.fs2f_c00001{font-size:63.024691px;}
.fsd6_c00001{font-size:63.026486px;}
.fs12b_c00001{font-size:64.020851px;}
.fs69_c00001{font-size:64.022997px;}
.fsa0_c00001{font-size:64.032224px;}
.fsc2_c00001{font-size:64.034690px;}
.fs47_c00001{font-size:64.039815px;}
.fs5d_c00001{font-size:64.042474px;}
.fs66_c00001{font-size:64.045196px;}
.fs9_c00001{font-size:64.050000px;}
.fs5c_c00001{font-size:64.050833px;}
.fs53_c00001{font-size:64.053875px;}
.fs26_c00001{font-size:64.055412px;}
.fs18d_c00001{font-size:64.057205px;}
.fs168_c00001{font-size:64.059255px;}
.fsb0_c00001{font-size:64.060375px;}
.fsf7_c00001{font-size:64.062809px;}
.fs164_c00001{font-size:64.064121px;}
.fs102_c00001{font-size:64.065498px;}
.fs19_c00001{font-size:64.066939px;}
.fs14e_c00001{font-size:64.070012px;}
.fs126_c00001{font-size:64.071645px;}
.fs119_c00001{font-size:64.073342px;}
.fs2e_c00001{font-size:64.075103px;}
.fsda_c00001{font-size:64.076927px;}
.fs155_c00001{font-size:64.080769px;}
.fs134_c00001{font-size:65.070373px;}
.fs40_c00001{font-size:65.072555px;}
.fsc5_c00001{font-size:65.084439px;}
.fs71_c00001{font-size:65.089648px;}
.fsf_c00001{font-size:65.100000px;}
.fs4f_c00001{font-size:65.103938px;}
.fscb_c00001{font-size:65.104687px;}
.fs23_c00001{font-size:65.105501px;}
.fsee_c00001{font-size:65.106379px;}
.fs18a_c00001{font-size:65.107323px;}
.fs1a7_c00001{font-size:65.108332px;}
.fs167_c00001{font-size:65.109406px;}
.fs16f_c00001{font-size:65.111749px;}
.fs104_c00001{font-size:65.115752px;}
.fs84_c00001{font-size:65.117217px;}
.fs7c_c00001{font-size:65.118746px;}
.fs7a_c00001{font-size:65.120341px;}
.fs124_c00001{font-size:65.122000px;}
.fs10b_c00001{font-size:65.123725px;}
.fs8b_c00001{font-size:65.125514px;}
.fsd8_c00001{font-size:65.127369px;}
.fs158_c00001{font-size:65.131273px;}
.fs4a_c00001{font-size:66.117744px;}
.fs9d_c00001{font-size:66.119895px;}
.fsa7_c00001{font-size:66.131641px;}
.fsc0_c00001{font-size:66.134188px;}
.fs6f_c00001{font-size:66.139481px;}
.fs61_c00001{font-size:66.142227px;}
.fs67_c00001{font-size:66.145039px;}
.fs2_c00001{font-size:66.150000px;}
.fscd_c00001{font-size:66.154002px;}
.fsf0_c00001{font-size:66.156482px;}
.fs190_c00001{font-size:66.157441px;}
.fs16_c00001{font-size:66.158467px;}
.fs179_c00001{font-size:66.160715px;}
.fs143_c00001{font-size:66.161939px;}
.fs15e_c00001{font-size:66.163229px;}
.fs37_c00001{font-size:66.164584px;}
.fs103_c00001{font-size:66.166006px;}
.fs16d_c00001{font-size:66.167494px;}
.fs9a_c00001{font-size:66.169048px;}
.fs79_c00001{font-size:66.170669px;}
.fs11c_c00001{font-size:66.172355px;}
.fs10c_c00001{font-size:66.174107px;}
.fs81_c00001{font-size:66.175926px;}
.fsd7_c00001{font-size:66.177810px;}
.fs153_c00001{font-size:66.181777px;}
.fs12c_c00001{font-size:67.169417px;}
.fsa2_c00001{font-size:67.181349px;}
.fsc3_c00001{font-size:67.183937px;}
.fs70_c00001{font-size:67.189314px;}
.fse_c00001{font-size:67.200000px;}
.fs56_c00001{font-size:67.204065px;}
.fs28_c00001{font-size:67.205678px;}
.fsf3_c00001{font-size:67.206585px;}
.fs192_c00001{font-size:67.207560px;}
.fs178_c00001{font-size:67.210886px;}
.fs94_c00001{font-size:67.212129px;}
.fs181_c00001{font-size:67.216260px;}
.fs86_c00001{font-size:67.217772px;}
.fs99_c00001{font-size:67.219351px;}
.fs77_c00001{font-size:67.220997px;}
.fs11f_c00001{font-size:67.222710px;}
.fs110_c00001{font-size:67.224490px;}
.fs80_c00001{font-size:67.226337px;}
.fsd3_c00001{font-size:67.228252px;}
.fs152_c00001{font-size:67.232282px;}
.fs12d_c00001{font-size:68.218939px;}
.fs3f_c00001{font-size:68.221227px;}
.fsbe_c00001{font-size:68.233686px;}
.fs6c_c00001{font-size:68.239147px;}
.fs4_c00001{font-size:68.250000px;}
.fs4e_c00001{font-size:68.254129px;}
.fse0_c00001{font-size:68.254914px;}
.fs21_c00001{font-size:68.255767px;}
.fsaf_c00001{font-size:68.256688px;}
.fs173_c00001{font-size:68.258735px;}
.fse7_c00001{font-size:68.261056px;}
.fs95_c00001{font-size:68.262318px;}
.fs162_c00001{font-size:68.265047px;}
.fs106_c00001{font-size:68.266515px;}
.fs15c_c00001{font-size:68.268050px;}
.fs7e_c00001{font-size:68.271325px;}
.fs125_c00001{font-size:68.273065px;}
.fs109_c00001{font-size:68.274873px;}
.fs31_c00001{font-size:68.276749px;}
.fsd9_c00001{font-size:68.278693px;}
.fs136_c00001{font-size:69.268461px;}
.fsbb_c00001{font-size:69.283435px;}
.fs6e_c00001{font-size:69.288980px;}
.fs8_c00001{font-size:69.300000px;}
.fs1e_c00001{font-size:69.304193px;}
.fsca_c00001{font-size:69.304989px;}
.fs20_c00001{font-size:69.305856px;}
.fs19c_c00001{font-size:69.306791px;}
.fse5_c00001{font-size:69.311226px;}
.fs19e_c00001{font-size:69.313859px;}
.fs184_c00001{font-size:69.316769px;}
.fs7d_c00001{font-size:69.318327px;}
.fs78_c00001{font-size:69.321653px;}
.fs13b_c00001{font-size:69.323419px;}
.fs112_c00001{font-size:69.325255px;}
.fs7f_c00001{font-size:69.327160px;}
.fsd1_c00001{font-size:69.329135px;}
.fs3e_c00001{font-size:70.317983px;}
.fs41_c00001{font-size:70.320341px;}
.fsb6_c00001{font-size:70.325268px;}
.fsa8_c00001{font-size:70.330475px;}
.fsbc_c00001{font-size:70.333184px;}
.fs6d_c00001{font-size:70.338813px;}
.fsd_c00001{font-size:70.350000px;}
.fs4d_c00001{font-size:70.354256px;}
.fs1f_c00001{font-size:70.355944px;}
.fs85_c00001{font-size:70.368605px;}
.fs9b_c00001{font-size:70.370258px;}
.fs76_c00001{font-size:70.371981px;}
.fs13c_c00001{font-size:70.373774px;}
.fs11a_c00001{font-size:70.375638px;}
.fs8a_c00001{font-size:70.377572px;}
.fsc6_c00001{font-size:70.379576px;}
.fsa6_c00001{font-size:71.380184px;}
.fsc1_c00001{font-size:71.382933px;}
.fs48_c00001{font-size:71.388646px;}
.fs63_c00001{font-size:71.397751px;}
.fsa_c00001{font-size:71.400000px;}
.fs3_c00001{font-size:71.403570px;}
.fs57_c00001{font-size:71.404320px;}
.fse1_c00001{font-size:71.405141px;}
.fs27_c00001{font-size:71.406033px;}
.fscc_c00001{font-size:71.408032px;}
.fsfe_c00001{font-size:71.417277px;}
.fs17d_c00001{font-size:71.424129px;}
.fs88_c00001{font-size:71.427983px;}
.fsdc_c00001{font-size:71.430017px;}
.fsa9_c00001{font-size:72.429892px;}
.fsbd_c00001{font-size:72.432682px;}
.fs5_c00001{font-size:72.450000px;}
.fs51_c00001{font-size:72.454383px;}
.fs22_c00001{font-size:72.456122px;}
.fsae_c00001{font-size:72.457100px;}
.fs171_c00001{font-size:72.459273px;}
.fs101_c00001{font-size:72.467531px;}
.fs83_c00001{font-size:72.469160px;}
.fs146_c00001{font-size:72.470863px;}
.fs116_c00001{font-size:72.472637px;}
.fsb8_c00001{font-size:72.474484px;}
.fsd0_c00001{font-size:72.480459px;}
.fs9e_c00001{font-size:73.479601px;}
.fs6_c00001{font-size:73.500000px;}
.fs50_c00001{font-size:73.504447px;}
.fs25_c00001{font-size:73.506210px;}
.fs75_c00001{font-size:73.519438px;}
.fs118_c00001{font-size:73.522965px;}
.fsd4_c00001{font-size:73.530900px;}
.fsc9_c00001{font-size:74.513797px;}
.fs1b_c00001{font-size:74.554510px;}
.fs29_c00001{font-size:74.556299px;}
.fs62_c00001{font-size:74.566436px;}
.fs8f_c00001{font-size:74.579218px;}
.fsaa_c00001{font-size:75.579018px;}
.fs1_c00001{font-size:75.600000px;}
.fs54_c00001{font-size:75.604574px;}
.fs8c_c00001{font-size:75.629629px;}
.fs91_c00001{font-size:76.628727px;}
.fsde_c00001{font-size:76.650000px;}
.fs90_c00001{font-size:76.680041px;}
.fs2d_c00001{font-size:76.684485px;}
.fsa4_c00001{font-size:77.678435px;}
.fsb2_c00001{font-size:77.700000px;}
.fs58_c00001{font-size:77.704701px;}
.fsad_c00001{font-size:78.728144px;}
.fs159_c00001{font-size:78.750000px;}
.fsab_c00001{font-size:79.777852px;}
.fs0_c00001{font-size:79.800000px;}
.fs14_c00001{font-size:79.806743px;}
.fs35_c00001{font-size:79.817594px;}
.fs11e_c00001{font-size:80.850000px;}
.fs38_c00001{font-size:80.867825px;}
.fs44_c00001{font-size:80.886374px;}
.fs1a_c00001{font-size:81.900000px;}
.fscf_c00001{font-size:82.984873px;}
.fs140_c00001{font-size:84.000000px;}
.fs42_c00001{font-size:85.014144px;}
.fs46_c00001{font-size:85.036476px;}
.fsfb_c00001{font-size:85.050000px;}
.fs1a8_c00001{font-size:85.054252px;}
.fs1d_c00001{font-size:85.055145px;}
.fs3b_c00001{font-size:85.065350px;}
.fs144_c00001{font-size:86.100000px;}
.fs1a6_c00001{font-size:87.150000px;}
.fs74_c00001{font-size:88.200000px;}
.fs3c_c00001{font-size:88.215919px;}
.fsb5_c00001{font-size:89.250000px;}
.fs3a_c00001{font-size:92.416677px;}
.fs30_c00001{font-size:93.486625px;}
.fs187_c00001{font-size:94.500000px;}
.fs73_c00001{font-size:95.550000px;}
.fs97_c00001{font-size:98.700000px;}
.fs9c_c00001{font-size:99.704603px;}
.fs195_c00001{font-size:112.350000px;}
.fs1a5_c00001{font-size:112.366233px;}
.fsb7_c00001{font-size:115.539032px;}
.fse2_c00001{font-size:116.550000px;}
.fs13d_c00001{font-size:118.650000px;}
.fs141_c00001{font-size:119.700000px;}
.fse4_c00001{font-size:120.750000px;}
.fs137_c00001{font-size:121.748650px;}
.fs11_c00001{font-size:122.865724px;}
.fs18f_c00001{font-size:123.900000px;}
.fs87_c00001{font-size:124.998971px;}
.fsdd_c00001{font-size:131.250000px;}
.fsc8_c00001{font-size:162.670966px;}
.fs186_c00001{font-size:275.100000px;}
.y0_c00001{bottom:0.000000px;}
.y1246_c00001{bottom:7.290000px;}
.y1930_c00001{bottom:9.720000px;}
.y1cf6_c00001{bottom:10.799529px;}
.yc7d_c00001{bottom:10.981740px;}
.y1ccc_c00001{bottom:11.610000px;}
.y45_c00001{bottom:12.849000px;}
.yc7c_c00001{bottom:13.614780px;}
.yc7b_c00001{bottom:14.303880px;}
.y421_c00001{bottom:21.060000px;}
.y9a8_c00001{bottom:21.459000px;}
.yb33_c00001{bottom:21.529397px;}
.y21c_c00001{bottom:22.387281px;}
.y1bb0_c00001{bottom:22.633500px;}
.yb34_c00001{bottom:22.782167px;}
.y21d_c00001{bottom:23.261377px;}
.yb35_c00001{bottom:23.689671px;}
.yf6_c00001{bottom:23.764500px;}
.y131c_c00001{bottom:23.905500px;}
.y8c4_c00001{bottom:24.030000px;}
.y21e_c00001{bottom:24.476002px;}
.y21f_c00001{bottom:24.803472px;}
.yf7_c00001{bottom:24.945504px;}
.yb36_c00001{bottom:25.146755px;}
.yf8_c00001{bottom:25.418188px;}
.ya42_c00001{bottom:25.524000px;}
.y126d_c00001{bottom:25.649484px;}
.y126e_c00001{bottom:25.851720px;}
.y220_c00001{bottom:25.853553px;}
.yb37_c00001{bottom:25.899321px;}
.y126f_c00001{bottom:26.695164px;}
.ycc7_c00001{bottom:26.700000px;}
.y1d7d_c00001{bottom:26.740320px;}
.y1270_c00001{bottom:26.850048px;}
.yb38_c00001{bottom:26.897421px;}
.y221_c00001{bottom:26.973061px;}
.y1271_c00001{bottom:26.986596px;}
.y1cf0_c00001{bottom:27.003000px;}
.y1d7e_c00001{bottom:27.091375px;}
.y1272_c00001{bottom:27.206760px;}
.y222_c00001{bottom:27.290922px;}
.y1d7f_c00001{bottom:27.303025px;}
.y1cf1_c00001{bottom:27.328311px;}
.yf9_c00001{bottom:27.454517px;}
.yc7a_c00001{bottom:27.459750px;}
.y1d80_c00001{bottom:27.580620px;}
.yc79_c00001{bottom:27.703020px;}
.y223_c00001{bottom:27.713664px;}
.y1d81_c00001{bottom:27.726470px;}
.y1273_c00001{bottom:27.901020px;}
.yc78_c00001{bottom:27.980280px;}
.y1d82_c00001{bottom:28.041459px;}
.yb39_c00001{bottom:28.124546px;}
.y1d83_c00001{bottom:28.154283px;}
.y1cf2_c00001{bottom:28.166379px;}
.y1d85_c00001{bottom:28.237660px;}
.y1d84_c00001{bottom:28.270483px;}
.y1cf3_c00001{bottom:28.386711px;}
.y1d86_c00001{bottom:28.451391px;}
.yb3a_c00001{bottom:28.523451px;}
.y12f1_c00001{bottom:28.616867px;}
.y1274_c00001{bottom:28.702920px;}
.yfa_c00001{bottom:28.744575px;}
.y1482_c00001{bottom:28.832952px;}
.yc77_c00001{bottom:28.852740px;}
.yca0_c00001{bottom:29.008500px;}
.y12f2_c00001{bottom:29.035119px;}
.y1d87_c00001{bottom:29.101662px;}
.y224_c00001{bottom:29.216698px;}
.y1cf4_c00001{bottom:29.339229px;}
.y1483_c00001{bottom:29.356371px;}
.yfb_c00001{bottom:29.509336px;}
.yc76_c00001{bottom:29.563560px;}
.y12f3_c00001{bottom:29.680368px;}
.ydd7_c00001{bottom:29.866608px;}
.y12f4_c00001{bottom:29.894526px;}
.y1d88_c00001{bottom:29.908158px;}
.yc75_c00001{bottom:30.238410px;}
.y1d89_c00001{bottom:30.243535px;}
.yfc_c00001{bottom:30.250983px;}
.y1d8a_c00001{bottom:30.260365px;}
.y1cf5_c00001{bottom:30.307140px;}
.y1a10_c00001{bottom:30.405522px;}
.ydd8_c00001{bottom:30.411504px;}
.y1224_c00001{bottom:30.541500px;}
.ydd9_c00001{bottom:30.735544px;}
.y12f5_c00001{bottom:30.751746px;}
.y11f7_c00001{bottom:30.778068px;}
.yce8_c00001{bottom:30.792000px;}
.y109a_c00001{bottom:30.794688px;}
.y44_c00001{bottom:31.002000px;}
.y1484_c00001{bottom:31.018782px;}
.y12f6_c00001{bottom:31.033175px;}
.ydda_c00001{bottom:31.045872px;}
.y1844_c00001{bottom:31.049973px;}
.y1099_c00001{bottom:31.193064px;}
.yec7_c00001{bottom:31.397301px;}
.y1245_c00001{bottom:31.471500px;}
.y1295_c00001{bottom:31.516500px;}
.yfae_c00001{bottom:31.564411px;}
.y10ef_c00001{bottom:31.626000px;}
.y1845_c00001{bottom:31.697230px;}
.yec6_c00001{bottom:31.750709px;}
.y192d_c00001{bottom:31.764495px;}
.y12f7_c00001{bottom:31.766287px;}
.yddb_c00001{bottom:31.775580px;}
.y1098_c00001{bottom:31.777304px;}
.y1559_c00001{bottom:31.846500px;}
.y164d_c00001{bottom:31.985909px;}
.y1751_c00001{bottom:32.049722px;}
.yddc_c00001{bottom:32.152246px;}
.y192c_c00001{bottom:32.237448px;}
.y11f8_c00001{bottom:32.291721px;}
.y192b_c00001{bottom:32.328393px;}
.y8c2_c00001{bottom:32.341500px;}
.y1558_c00001{bottom:32.367000px;}
.y1ccb_c00001{bottom:32.400000px;}
.y1a11_c00001{bottom:32.416608px;}
.yec5_c00001{bottom:32.524214px;}
.y1110_c00001{bottom:32.553000px;}
.y11f9_c00001{bottom:32.591052px;}
.y1aed_c00001{bottom:32.667830px;}
.y1097_c00001{bottom:32.734139px;}
.y1846_c00001{bottom:32.822252px;}
.y1a12_c00001{bottom:32.899992px;}
.y1485_c00001{bottom:32.911557px;}
.y1557_c00001{bottom:32.919000px;}
.yddd_c00001{bottom:33.019603px;}
.y134_c00001{bottom:33.096000px;}
.y1096_c00001{bottom:33.126291px;}
.y192a_c00001{bottom:33.148527px;}
.ydde_c00001{bottom:33.273102px;}
.y1a13_c00001{bottom:33.305001px;}
.y1929_c00001{bottom:33.453447px;}
.y1750_c00001{bottom:33.467253px;}
.y1486_c00001{bottom:33.469860px;}
.yfaf_c00001{bottom:33.546112px;}
.y1aee_c00001{bottom:33.554810px;}
.y1095_c00001{bottom:33.569447px;}
.y11fa_c00001{bottom:33.636633px;}
.y1556_c00001{bottom:33.661500px;}
.y1847_c00001{bottom:33.712586px;}
.y1c81_c00001{bottom:33.722487px;}
.y1c82_c00001{bottom:33.722539px;}
.y1c80_c00001{bottom:33.722785px;}
.y1c83_c00001{bottom:33.723000px;}
.y1c84_c00001{bottom:33.723011px;}
.y6f1_c00001{bottom:33.765696px;}
.y1487_c00001{bottom:33.857739px;}
.y1555_c00001{bottom:33.861000px;}
.y174f_c00001{bottom:33.904221px;}
.y1aef_c00001{bottom:34.043466px;}
.y1928_c00001{bottom:34.055124px;}
.y11fb_c00001{bottom:34.092447px;}
.yec4_c00001{bottom:34.114545px;}
.yb97_c00001{bottom:34.342500px;}
.y6f2_c00001{bottom:34.342974px;}
.y1094_c00001{bottom:34.354508px;}
.y11fc_c00001{bottom:34.377807px;}
.y81c_c00001{bottom:34.415517px;}
.y1af0_c00001{bottom:34.432241px;}
.yec3_c00001{bottom:34.465145px;}
.y164e_c00001{bottom:34.491791px;}
.y6f3_c00001{bottom:34.589108px;}
.yfb0_c00001{bottom:34.614409px;}
.y606_c00001{bottom:34.674200px;}
.y1093_c00001{bottom:34.701421px;}
.y1848_c00001{bottom:34.790910px;}
.y1554_c00001{bottom:34.831500px;}
.y6f4_c00001{bottom:34.952289px;}
.y1a14_c00001{bottom:35.025093px;}
.y1849_c00001{bottom:35.026367px;}
.yfb1_c00001{bottom:35.032196px;}
.y1927_c00001{bottom:35.043396px;}
.y605_c00001{bottom:35.063096px;}
.y6f5_c00001{bottom:35.092461px;}
.y1375_c00001{bottom:35.157000px;}
.y1488_c00001{bottom:35.221557px;}
.y604_c00001{bottom:35.270589px;}
.yec2_c00001{bottom:35.293308px;}
.y174e_c00001{bottom:35.339014px;}
.y1a15_c00001{bottom:35.364102px;}
.y1b6f_c00001{bottom:35.371500px;}
.y6f6_c00001{bottom:35.409638px;}
.y81d_c00001{bottom:35.576466px;}
.y11fd_c00001{bottom:35.608260px;}
.y6f7_c00001{bottom:35.618696px;}
.y1af1_c00001{bottom:35.622875px;}
.y184a_c00001{bottom:35.705565px;}
.y174d_c00001{bottom:35.758752px;}
.y1489_c00001{bottom:35.782902px;}
.y1a16_c00001{bottom:35.883357px;}
.y1395_c00001{bottom:35.919000px;}
.y174c_c00001{bottom:36.040173px;}
.y148a_c00001{bottom:36.110685px;}
.y6f8_c00001{bottom:36.112079px;}
.y1092_c00001{bottom:36.140207px;}
.y1c0b_c00001{bottom:36.155526px;}
.y603_c00001{bottom:36.179669px;}
.y81e_c00001{bottom:36.256030px;}
.y1a17_c00001{bottom:36.276222px;}
.y174b_c00001{bottom:36.360118px;}
.y1b70_c00001{bottom:36.465000px;}
.y164f_c00001{bottom:36.520712px;}
.yfb2_c00001{bottom:36.620610px;}
.y1091_c00001{bottom:36.685332px;}
.y1af2_c00001{bottom:36.795746px;}
.y133d_c00001{bottom:37.050000px;}
.y1c0c_c00001{bottom:37.143780px;}
.y1650_c00001{bottom:37.182363px;}
.y602_c00001{bottom:37.197327px;}
.y174a_c00001{bottom:37.375174px;}
.y1b71_c00001{bottom:37.396500px;}
.y601_c00001{bottom:37.563081px;}
.y81f_c00001{bottom:37.784687px;}
.y1749_c00001{bottom:37.806000px;}
.y99e_c00001{bottom:37.813500px;}
.yfb3_c00001{bottom:37.826672px;}
.y1c0d_c00001{bottom:37.846968px;}
.y1b72_c00001{bottom:37.872000px;}
.y1651_c00001{bottom:37.881611px;}
.y420_c00001{bottom:37.977996px;}
.y600_c00001{bottom:38.089788px;}
.y1c0e_c00001{bottom:38.176962px;}
.y41f_c00001{bottom:38.275082px;}
.y5ff_c00001{bottom:38.310104px;}
.y1b14_c00001{bottom:38.508000px;}
.y41e_c00001{bottom:38.537625px;}
.y1baf_c00001{bottom:38.805000px;}
.y99f_c00001{bottom:39.043575px;}
.y1a69_c00001{bottom:39.075000px;}
.yb2d_c00001{bottom:39.086492px;}
.y41d_c00001{bottom:39.270575px;}
.y215_c00001{bottom:39.393643px;}
.y321_c00001{bottom:39.456291px;}
.y820_c00001{bottom:39.477471px;}
.y41c_c00001{bottom:39.522462px;}
.y1652_c00001{bottom:39.635292px;}
.y9a0_c00001{bottom:39.694550px;}
.y1b73_c00001{bottom:39.766500px;}
.y216_c00001{bottom:39.934593px;}
.y821_c00001{bottom:40.082174px;}
.y41b_c00001{bottom:40.141988px;}
.y217_c00001{bottom:40.176763px;}
.y322_c00001{bottom:40.260810px;}
.y9a1_c00001{bottom:40.302162px;}
.y733_c00001{bottom:40.426080px;}
.y735_c00001{bottom:40.426188px;}
.y734_c00001{bottom:40.426356px;}
.y736_c00001{bottom:40.426452px;}
.y737_c00001{bottom:40.426584px;}
.y738_c00001{bottom:40.427136px;}
.y739_c00001{bottom:40.427604px;}
.y1653_c00001{bottom:40.471160px;}
.y41a_c00001{bottom:40.490243px;}
.y218_c00001{bottom:40.492000px;}
.yb2e_c00001{bottom:40.683461px;}
.yef_c00001{bottom:40.776000px;}
.y219_c00001{bottom:41.154922px;}
.y21a_c00001{bottom:41.292670px;}
.y419_c00001{bottom:41.345144px;}
.y418_c00001{bottom:41.632712px;}
.y21b_c00001{bottom:41.643631px;}
.y9a2_c00001{bottom:41.846067px;}
.y822_c00001{bottom:41.860446px;}
.yb2f_c00001{bottom:42.035897px;}
.yf0_c00001{bottom:42.055320px;}
.y131b_c00001{bottom:42.063000px;}
.y417_c00001{bottom:42.098547px;}
.y323_c00001{bottom:42.163953px;}
.yf1_c00001{bottom:42.244620px;}
.y9a3_c00001{bottom:42.511496px;}
.yb30_c00001{bottom:42.659780px;}
.yf2_c00001{bottom:42.817020px;}
.y1266_c00001{bottom:42.933000px;}
.ya41_c00001{bottom:42.988500px;}
.y9a4_c00001{bottom:43.039265px;}
.y1267_c00001{bottom:43.278624px;}
.ycc6_c00001{bottom:43.741500px;}
.y1268_c00001{bottom:43.961232px;}
.yc74_c00001{bottom:44.116290px;}
.y324_c00001{bottom:44.204154px;}
.yb31_c00001{bottom:44.293248px;}
.y512_c00001{bottom:44.346201px;}
.y1269_c00001{bottom:44.358888px;}
.yc73_c00001{bottom:44.462370px;}
.yf3_c00001{bottom:44.610000px;}
.y12e9_c00001{bottom:44.819562px;}
.y1ce9_c00001{bottom:44.821500px;}
.y11f0_c00001{bottom:44.838717px;}
.y1223_c00001{bottom:45.019500px;}
.yf4_c00001{bottom:45.053790px;}
.y9a5_c00001{bottom:45.071388px;}
.yc9f_c00001{bottom:45.148500px;}
.y126a_c00001{bottom:45.195624px;}
.y513_c00001{bottom:45.261391px;}
.yc72_c00001{bottom:45.407280px;}
.y225_c00001{bottom:45.492000px;}
.y1926_c00001{bottom:45.539175px;}
.y1222_c00001{bottom:45.556500px;}
.y1cea_c00001{bottom:45.562776px;}
.y12ea_c00001{bottom:45.575457px;}
.y9a6_c00001{bottom:45.687020px;}
.y1ceb_c00001{bottom:45.725550px;}
.y126b_c00001{bottom:45.813240px;}
.yb32_c00001{bottom:45.834272px;}
.yf5_c00001{bottom:45.956070px;}
.y1221_c00001{bottom:46.026000px;}
.y12eb_c00001{bottom:46.184189px;}
.y126c_c00001{bottom:46.207968px;}
.yc71_c00001{bottom:46.228140px;}
.y325_c00001{bottom:46.308444px;}
.y1220_c00001{bottom:46.330500px;}
.y9a7_c00001{bottom:46.373882px;}
.y1cec_c00001{bottom:46.383342px;}
.y12ec_c00001{bottom:46.466563px;}
.y43_c00001{bottom:46.588500px;}
.ydd0_c00001{bottom:46.886485px;}
.y1ced_c00001{bottom:46.904910px;}
.y147b_c00001{bottom:46.925052px;}
.y326_c00001{bottom:47.028298px;}
.y1cee_c00001{bottom:47.151204px;}
.y1925_c00001{bottom:47.210571px;}
.y12ed_c00001{bottom:47.218155px;}
.yce7_c00001{bottom:47.218500px;}
.yfa7_c00001{bottom:47.231502px;}
.y1d73_c00001{bottom:47.299500px;}
.y1090_c00001{bottom:47.315340px;}
.y121f_c00001{bottom:47.410500px;}
.y1a0a_c00001{bottom:47.418975px;}
.y327_c00001{bottom:47.426923px;}
.ydd1_c00001{bottom:47.428954px;}
.y1cef_c00001{bottom:47.429286px;}
.y147c_c00001{bottom:47.546607px;}
.y11f1_c00001{bottom:47.560059px;}
.y1294_c00001{bottom:47.671500px;}
.yc70_c00001{bottom:47.712840px;}
.yec1_c00001{bottom:47.722623px;}
.y183d_c00001{bottom:47.794500px;}
.yfa8_c00001{bottom:47.807757px;}
.ydd2_c00001{bottom:47.877714px;}
.y11f2_c00001{bottom:47.915484px;}
.y121e_c00001{bottom:48.117000px;}
.y12ee_c00001{bottom:48.180606px;}
.ydd3_c00001{bottom:48.212602px;}
.y514_c00001{bottom:48.271801px;}
.y121d_c00001{bottom:48.331500px;}
.y6e9_c00001{bottom:48.344222px;}
.y108f_c00001{bottom:48.367836px;}
.y11f3_c00001{bottom:48.375477px;}
.y1924_c00001{bottom:48.488010px;}
.y1d95_c00001{bottom:48.552000px;}
.y1d74_c00001{bottom:48.584796px;}
.y12ef_c00001{bottom:48.591712px;}
.y6ea_c00001{bottom:48.592779px;}
.y1a0b_c00001{bottom:48.628491px;}
.y10ee_c00001{bottom:48.636000px;}
.yc6f_c00001{bottom:48.728160px;}
.yec0_c00001{bottom:48.741981px;}
.y108e_c00001{bottom:48.784347px;}
.y328_c00001{bottom:48.911298px;}
.y183e_c00001{bottom:48.941938px;}
.y1923_c00001{bottom:48.994308px;}
.yfa9_c00001{bottom:49.029928px;}
.y12f0_c00001{bottom:49.042800px;}
.ydd4_c00001{bottom:49.083565px;}
.yc6e_c00001{bottom:49.093440px;}
.y1a0c_c00001{bottom:49.094451px;}
.yebf_c00001{bottom:49.144497px;}
.y5fe_c00001{bottom:49.214045px;}
.y147d_c00001{bottom:49.257699px;}
.y1244_c00001{bottom:49.350000px;}
.yfaa_c00001{bottom:49.403554px;}
.y329_c00001{bottom:49.438570px;}
.y110f_c00001{bottom:49.443000px;}
.y1748_c00001{bottom:49.464294px;}
.y183f_c00001{bottom:49.475373px;}
.y1646_c00001{bottom:49.541933px;}
.y8c1_c00001{bottom:49.569000px;}
.y6eb_c00001{bottom:49.668261px;}
.y1ae6_c00001{bottom:49.678761px;}
.y108d_c00001{bottom:49.681904px;}
.yc6d_c00001{bottom:49.683000px;}
.y5fd_c00001{bottom:49.752423px;}
.y1d75_c00001{bottom:49.793484px;}
.y1840_c00001{bottom:49.810818px;}
.y1cca_c00001{bottom:49.930500px;}
.y1553_c00001{bottom:49.954500px;}
.y147e_c00001{bottom:49.987899px;}
.y1747_c00001{bottom:50.003070px;}
.y108c_c00001{bottom:50.045283px;}
.y1922_c00001{bottom:50.063958px;}
.y6ec_c00001{bottom:50.132510px;}
.y11f4_c00001{bottom:50.312385px;}
.ydd5_c00001{bottom:50.385111px;}
.yebe_c00001{bottom:50.406357px;}
.y6ed_c00001{bottom:50.427140px;}
.y1ae7_c00001{bottom:50.479969px;}
.y1a0d_c00001{bottom:50.484873px;}
.y5fc_c00001{bottom:50.530416px;}
.y133_c00001{bottom:50.697000px;}
.yebd_c00001{bottom:50.817686px;}
.y1ae8_c00001{bottom:50.836017px;}
.y1841_c00001{bottom:50.924712px;}
.y1d76_c00001{bottom:50.947884px;}
.y1647_c00001{bottom:51.023583px;}
.ydd6_c00001{bottom:51.037401px;}
.y11f5_c00001{bottom:51.050694px;}
.y1746_c00001{bottom:51.069156px;}
.y6ee_c00001{bottom:51.195194px;}
.y32a_c00001{bottom:51.285853px;}
.y147f_c00001{bottom:51.441453px;}
.y108b_c00001{bottom:51.495696px;}
.y1648_c00001{bottom:51.529538px;}
.yebc_c00001{bottom:51.538883px;}
.y6ef_c00001{bottom:51.567810px;}
.y1a0e_c00001{bottom:51.684984px;}
.y1921_c00001{bottom:51.708426px;}
.yb96_c00001{bottom:51.721500px;}
.y1d77_c00001{bottom:51.721692px;}
.yfab_c00001{bottom:51.771714px;}
.y1374_c00001{bottom:51.898500px;}
.y5fb_c00001{bottom:51.967898px;}
.y815_c00001{bottom:51.996031px;}
.y515_c00001{bottom:52.058187px;}
.y1745_c00001{bottom:52.078794px;}
.y1a0f_c00001{bottom:52.113720px;}
.y1ae9_c00001{bottom:52.158258px;}
.yebb_c00001{bottom:52.312301px;}
.y1920_c00001{bottom:52.365822px;}
.y1394_c00001{bottom:52.389000px;}
.y5fa_c00001{bottom:52.460858px;}
.y1649_c00001{bottom:52.481135px;}
.y1744_c00001{bottom:52.547388px;}
.y6f0_c00001{bottom:52.680531px;}
.y1d78_c00001{bottom:52.698876px;}
.y1480_c00001{bottom:52.764969px;}
.y1842_c00001{bottom:52.766239px;}
.y108a_c00001{bottom:52.880076px;}
.y11f6_c00001{bottom:52.894542px;}
.y1c79_c00001{bottom:52.912719px;}
.y1aea_c00001{bottom:52.949786px;}
.y1843_c00001{bottom:53.007806px;}
.y1743_c00001{bottom:53.065752px;}
.y191f_c00001{bottom:53.137854px;}
.y1c7a_c00001{bottom:53.208266px;}
.y1aeb_c00001{bottom:53.280811px;}
.y1481_c00001{bottom:53.385354px;}
.y1d79_c00001{bottom:53.469084px;}
.y5f9_c00001{bottom:53.504168px;}
.y1089_c00001{bottom:53.687403px;}
.y1b69_c00001{bottom:53.727000px;}
.y816_c00001{bottom:53.947903px;}
.yfac_c00001{bottom:54.016303px;}
.y133c_c00001{bottom:54.030000px;}
.y1c7b_c00001{bottom:54.034218px;}
.y164a_c00001{bottom:54.051567px;}
.y1c7c_c00001{bottom:54.189062px;}
.y1b6a_c00001{bottom:54.238500px;}
.y1aec_c00001{bottom:54.241678px;}
.y1d7a_c00001{bottom:54.245436px;}
.y1c7d_c00001{bottom:54.540207px;}
.y1742_c00001{bottom:54.546000px;}
.yfad_c00001{bottom:54.560481px;}
.y1b6b_c00001{bottom:54.610500px;}
.y1c0a_c00001{bottom:54.652500px;}
.y996_c00001{bottom:55.089953px;}
.y516_c00001{bottom:55.091190px;}
.y1d7b_c00001{bottom:55.273356px;}
.y5f8_c00001{bottom:55.332888px;}
.y1b13_c00001{bottom:55.366500px;}
.y1c7e_c00001{bottom:55.456413px;}
.y817_c00001{bottom:55.475088px;}
.y164b_c00001{bottom:55.543553px;}
.y517_c00001{bottom:55.676385px;}
.y1b6c_c00001{bottom:55.717500px;}
.y1a68_c00001{bottom:55.863000px;}
.y72b_c00001{bottom:55.882608px;}
.y1c7f_c00001{bottom:55.911112px;}
.y818_c00001{bottom:56.229984px;}
.y1d7c_c00001{bottom:56.272044px;}
.y20c_c00001{bottom:56.678260px;}
.y819_c00001{bottom:56.710872px;}
.y1b6d_c00001{bottom:56.718000px;}
.y72c_c00001{bottom:56.886288px;}
.y1bae_c00001{bottom:56.967000px;}
.y1b6e_c00001{bottom:57.052500px;}
.y72d_c00001{bottom:57.085452px;}
.y72e_c00001{bottom:57.320616px;}
.y997_c00001{bottom:57.434663px;}
.yb26_c00001{bottom:57.450524px;}
.y319_c00001{bottom:57.523500px;}
.y20d_c00001{bottom:57.596010px;}
.y40f_c00001{bottom:57.642992px;}
.y40d_c00001{bottom:57.643242px;}
.y410_c00001{bottom:57.643518px;}
.y40e_c00001{bottom:57.643545px;}
.y411_c00001{bottom:57.644045px;}
.y416_c00001{bottom:57.644367px;}
.y414_c00001{bottom:57.644378px;}
.y415_c00001{bottom:57.644411px;}
.y412_c00001{bottom:57.644421px;}
.y413_c00001{bottom:57.644798px;}
.ye6_c00001{bottom:57.776556px;}
.y72f_c00001{bottom:58.078164px;}
.ye7_c00001{bottom:58.353984px;}
.y730_c00001{bottom:58.409952px;}
.y998_c00001{bottom:58.451693px;}
.y131a_c00001{bottom:58.522500px;}
.ye8_c00001{bottom:58.608312px;}
.y20e_c00001{bottom:58.672234px;}
.yb27_c00001{bottom:58.788773px;}
.y31a_c00001{bottom:58.907148px;}
.ya40_c00001{bottom:59.010000px;}
.ye9_c00001{bottom:59.065224px;}
.y164c_c00001{bottom:59.149056px;}
.yb28_c00001{bottom:59.209041px;}
.y20f_c00001{bottom:59.223582px;}
.y731_c00001{bottom:59.268996px;}
.y81a_c00001{bottom:59.367237px;}
.yea_c00001{bottom:59.427708px;}
.y999_c00001{bottom:59.503824px;}
.y732_c00001{bottom:59.787432px;}
.yeb_c00001{bottom:60.100524px;}
.y1265_c00001{bottom:60.342000px;}
.y81b_c00001{bottom:60.445445px;}
.y210_c00001{bottom:60.543483px;}
.yec_c00001{bottom:60.549024px;}
.yc6c_c00001{bottom:60.682692px;}
.y211_c00001{bottom:60.912652px;}
.yed_c00001{bottom:60.923880px;}
.yb29_c00001{bottom:60.949590px;}
.yee_c00001{bottom:61.138908px;}
.y31b_c00001{bottom:61.378668px;}
.y12e3_c00001{bottom:61.564500px;}
.y99a_c00001{bottom:61.622919px;}
.y212_c00001{bottom:61.691205px;}
.yb2a_c00001{bottom:61.722341px;}
.y10e6_c00001{bottom:61.839000px;}
.ycc5_c00001{bottom:61.891500px;}
.y10e7_c00001{bottom:62.050500px;}
.y31c_c00001{bottom:62.076684px;}
.y50c_c00001{bottom:62.160951px;}
.yc6b_c00001{bottom:62.194341px;}
.y213_c00001{bottom:62.246899px;}
.ydc9_c00001{bottom:62.285164px;}
.y99b_c00001{bottom:62.300744px;}
.y10e8_c00001{bottom:62.410500px;}
.yc9e_c00001{bottom:62.461500px;}
.y214_c00001{bottom:62.557513px;}
.yb2b_c00001{bottom:62.891408px;}
.y3c_c00001{bottom:62.911500px;}
.y1ce5_c00001{bottom:62.937000px;}
.yc6a_c00001{bottom:63.039657px;}
.ydca_c00001{bottom:63.043953px;}
.yeba_c00001{bottom:63.285654px;}
.yb2c_c00001{bottom:63.288051px;}
.y3d_c00001{bottom:63.294000px;}
.y12e4_c00001{bottom:63.404289px;}
.y31d_c00001{bottom:63.418860px;}
.yc69_c00001{bottom:63.516207px;}
.yeb9_c00001{bottom:63.599844px;}
.ydcb_c00001{bottom:63.617467px;}
.y10e9_c00001{bottom:63.619500px;}
.y1293_c00001{bottom:63.663000px;}
.y1473_c00001{bottom:63.670764px;}
.y12e5_c00001{bottom:63.714084px;}
.y31e_c00001{bottom:63.819900px;}
.y3e_c00001{bottom:63.856500px;}
.y1088_c00001{bottom:63.985725px;}
.y12e6_c00001{bottom:64.103594px;}
.y1a03_c00001{bottom:64.163685px;}
.y10ea_c00001{bottom:64.203000px;}
.yce6_c00001{bottom:64.236000px;}
.yc68_c00001{bottom:64.289001px;}
.y3f_c00001{bottom:64.323000px;}
.y99c_c00001{bottom:64.386129px;}
.y121c_c00001{bottom:64.479000px;}
.yfa1_c00001{bottom:64.518300px;}
.y1833_c00001{bottom:64.534500px;}
.y40_c00001{bottom:64.657500px;}
.y10eb_c00001{bottom:64.710000px;}
.y99d_c00001{bottom:64.770897px;}
.yeb8_c00001{bottom:64.943069px;}
.y50d_c00001{bottom:64.980793px;}
.y1d72_c00001{bottom:65.070000px;}
.y6e3_c00001{bottom:65.084530px;}
.y41_c00001{bottom:65.104500px;}
.y1552_c00001{bottom:65.139000px;}
.y1243_c00001{bottom:65.247000px;}
.y1834_c00001{bottom:65.312838px;}
.y1087_c00001{bottom:65.396264px;}
.yeb7_c00001{bottom:65.430036px;}
.y191e_c00001{bottom:65.455617px;}
.ydcc_c00001{bottom:65.483962px;}
.y1a04_c00001{bottom:65.511474px;}
.y1474_c00001{bottom:65.515551px;}
.y10ec_c00001{bottom:65.571000px;}
.y191d_c00001{bottom:65.670975px;}
.y132_c00001{bottom:65.758500px;}
.y1835_c00001{bottom:65.758635px;}
.y1551_c00001{bottom:65.766000px;}
.y10ed_c00001{bottom:65.799000px;}
.y5f7_c00001{bottom:65.830350px;}
.y110e_c00001{bottom:65.854500px;}
.yc67_c00001{bottom:65.883000px;}
.y31f_c00001{bottom:65.930940px;}
.y8c0_c00001{bottom:65.940000px;}
.y191c_c00001{bottom:65.972586px;}
.y12e7_c00001{bottom:65.991006px;}
.y6e4_c00001{bottom:66.008481px;}
.y1550_c00001{bottom:66.018000px;}
.y11eb_c00001{bottom:66.153000px;}
.y1cc9_c00001{bottom:66.177000px;}
.y42_c00001{bottom:66.180000px;}
.yfa2_c00001{bottom:66.199036px;}
.y1475_c00001{bottom:66.215478px;}
.y12e8_c00001{bottom:66.283843px;}
.ydcd_c00001{bottom:66.323784px;}
.y320_c00001{bottom:66.479964px;}
.y163e_c00001{bottom:66.560235px;}
.y1086_c00001{bottom:66.746160px;}
.ydce_c00001{bottom:66.749688px;}
.y154f_c00001{bottom:66.855000px;}
.y1ae1_c00001{bottom:66.960642px;}
.yeb6_c00001{bottom:66.997896px;}
.y191b_c00001{bottom:67.072791px;}
.y154e_c00001{bottom:67.083000px;}
.y1836_c00001{bottom:67.107213px;}
.y5f6_c00001{bottom:67.232151px;}
.y191a_c00001{bottom:67.243599px;}
.y1085_c00001{bottom:67.318119px;}
.y11ec_c00001{bottom:67.339272px;}
.y163f_c00001{bottom:67.345242px;}
.y50e_c00001{bottom:67.371150px;}
.y1a05_c00001{bottom:67.532226px;}
.y6e5_c00001{bottom:67.549175px;}
.yeb5_c00001{bottom:67.575288px;}
.y1ae2_c00001{bottom:67.617219px;}
.y80e_c00001{bottom:67.653153px;}
.y1476_c00001{bottom:67.720569px;}
.yb95_c00001{bottom:67.738500px;}
.y1084_c00001{bottom:67.790183px;}
.y154d_c00001{bottom:67.884000px;}
.yeb4_c00001{bottom:67.904922px;}
.y1741_c00001{bottom:67.937112px;}
.y1a06_c00001{bottom:67.941969px;}
.y6e6_c00001{bottom:68.045217px;}
.y1477_c00001{bottom:68.080974px;}
.y1919_c00001{bottom:68.122899px;}
.y154c_c00001{bottom:68.308500px;}
.yfa3_c00001{bottom:68.426196px;}
.y1837_c00001{bottom:68.441700px;}
.y50f_c00001{bottom:68.532592px;}
.y1478_c00001{bottom:68.533689px;}
.y1373_c00001{bottom:68.550000px;}
.y1918_c00001{bottom:68.584980px;}
.ydcf_c00001{bottom:68.752009px;}
.y80f_c00001{bottom:68.820778px;}
.y5f5_c00001{bottom:68.824983px;}
.yfa4_c00001{bottom:68.851735px;}
.y1838_c00001{bottom:68.854332px;}
.y1083_c00001{bottom:68.855904px;}
.y1917_c00001{bottom:68.865282px;}
.y1640_c00001{bottom:68.889064px;}
.y1740_c00001{bottom:69.007710px;}
.y1479_c00001{bottom:69.089145px;}
.y5f4_c00001{bottom:69.104370px;}
.y1a07_c00001{bottom:69.161514px;}
.y173f_c00001{bottom:69.266616px;}
.yeb3_c00001{bottom:69.331305px;}
.y1916_c00001{bottom:69.337512px;}
.y11ed_c00001{bottom:69.462930px;}
.y1839_c00001{bottom:69.484071px;}
.y1ae3_c00001{bottom:69.531184px;}
.y810_c00001{bottom:69.646605px;}
.y1393_c00001{bottom:69.690000px;}
.y1a08_c00001{bottom:69.705474px;}
.y6e7_c00001{bottom:69.801119px;}
.y11ee_c00001{bottom:69.808287px;}
.y183a_c00001{bottom:69.864660px;}
.yfa5_c00001{bottom:70.021323px;}
.y1082_c00001{bottom:70.063929px;}
.y1b64_c00001{bottom:70.200000px;}
.y1c05_c00001{bottom:70.203000px;}
.y11ef_c00001{bottom:70.251276px;}
.y5f3_c00001{bottom:70.341620px;}
.y1641_c00001{bottom:70.454847px;}
.y1c06_c00001{bottom:70.504500px;}
.y147a_c00001{bottom:70.531857px;}
.y1ae4_c00001{bottom:70.569390px;}
.y183b_c00001{bottom:70.589439px;}
.y173e_c00001{bottom:70.647564px;}
.y1081_c00001{bottom:70.690617px;}
.y1b65_c00001{bottom:70.714500px;}
.y1a09_c00001{bottom:70.727514px;}
.y5f2_c00001{bottom:70.787904px;}
.y133b_c00001{bottom:70.788000px;}
.y6e8_c00001{bottom:70.816881px;}
.yb1d_c00001{bottom:70.960506px;}
.y510_c00001{bottom:71.023390px;}
.y183c_c00001{bottom:71.026557px;}
.y1ae5_c00001{bottom:71.042888px;}
.y173d_c00001{bottom:71.062806px;}
.y5f1_c00001{bottom:71.266379px;}
.y1c07_c00001{bottom:71.353500px;}
.yb1e_c00001{bottom:71.559654px;}
.yfa6_c00001{bottom:71.606811px;}
.y1642_c00001{bottom:71.624825px;}
.y173c_c00001{bottom:71.690310px;}
.y1b66_c00001{bottom:71.815500px;}
.y1c08_c00001{bottom:71.932500px;}
.yb1f_c00001{bottom:72.198128px;}
.y1643_c00001{bottom:72.302577px;}
.y1b12_c00001{bottom:72.376500px;}
.y1c09_c00001{bottom:72.469500px;}
.y1a67_c00001{bottom:72.535500px;}
.y811_c00001{bottom:73.019100px;}
.y1b67_c00001{bottom:73.071000px;}
.y206_c00001{bottom:73.147644px;}
.y311_c00001{bottom:73.198014px;}
.y1b68_c00001{bottom:73.393500px;}
.yb20_c00001{bottom:73.707981px;}
.y1bad_c00001{bottom:73.936500px;}
.y207_c00001{bottom:74.035864px;}
.y1644_c00001{bottom:74.181009px;}
.yb21_c00001{bottom:74.204856px;}
.y511_c00001{bottom:74.234214px;}
.ydc_c00001{bottom:74.249964px;}
.y990_c00001{bottom:74.257500px;}
.y208_c00001{bottom:74.285446px;}
.y812_c00001{bottom:74.442708px;}
.y40c_c00001{bottom:74.680146px;}
.y40b_c00001{bottom:74.680293px;}
.y40a_c00001{bottom:74.680906px;}
.y407_c00001{bottom:74.681021px;}
.y408_c00001{bottom:74.681427px;}
.y409_c00001{bottom:74.681550px;}
.y405_c00001{bottom:74.681708px;}
.y406_c00001{bottom:74.681724px;}
.y404_c00001{bottom:74.682288px;}
.y1c72_c00001{bottom:74.785061px;}
.ydd_c00001{bottom:74.798556px;}
.y991_c00001{bottom:74.886380px;}
.y312_c00001{bottom:74.986287px;}
.y725_c00001{bottom:75.003648px;}
.y726_c00001{bottom:75.004224px;}
.y72a_c00001{bottom:75.004440px;}
.y729_c00001{bottom:75.004488px;}
.y728_c00001{bottom:75.004812px;}
.y727_c00001{bottom:75.004944px;}
.y813_c00001{bottom:75.030018px;}
.y209_c00001{bottom:75.135060px;}
.y1319_c00001{bottom:75.234000px;}
.yde_c00001{bottom:75.261024px;}
.y313_c00001{bottom:75.303183px;}
.y20a_c00001{bottom:75.358669px;}
.y1c73_c00001{bottom:75.434040px;}
.ydf_c00001{bottom:75.553716px;}
.yb22_c00001{bottom:75.670947px;}
.y1645_c00001{bottom:75.836504px;}
.y1c74_c00001{bottom:75.883788px;}
.y20b_c00001{bottom:76.220761px;}
.yb23_c00001{bottom:76.227615px;}
.ye0_c00001{bottom:76.410348px;}
.ya3f_c00001{bottom:76.738500px;}
.y1c75_c00001{bottom:76.747443px;}
.y1c76_c00001{bottom:76.975749px;}
.y814_c00001{bottom:77.042019px;}
.y992_c00001{bottom:77.125934px;}
.ye1_c00001{bottom:77.302812px;}
.y1ce8_c00001{bottom:77.352000px;}
.ye2_c00001{bottom:77.616024px;}
.y1c77_c00001{bottom:77.669852px;}
.y314_c00001{bottom:77.847129px;}
.y1c78_c00001{bottom:78.014709px;}
.y1264_c00001{bottom:78.021000px;}
.yc66_c00001{bottom:78.123121px;}
.yb24_c00001{bottom:78.329831px;}
.ycc4_c00001{bottom:78.393000px;}
.yc65_c00001{bottom:78.482286px;}
.ye3_c00001{bottom:78.539052px;}
.y993_c00001{bottom:78.546209px;}
.y506_c00001{bottom:78.622136px;}
.yb25_c00001{bottom:78.698637px;}
.y6dd_c00001{bottom:78.864000px;}
.yc64_c00001{bottom:78.920029px;}
.ye4_c00001{bottom:79.016892px;}
.yc9d_c00001{bottom:79.227000px;}
.y12db_c00001{bottom:79.383000px;}
.ye5_c00001{bottom:79.432428px;}
.yc63_c00001{bottom:79.631689px;}
.y12dc_c00001{bottom:79.779891px;}
.ydc3_c00001{bottom:79.842786px;}
.y1080_c00001{bottom:79.947027px;}
.y315_c00001{bottom:79.948999px;}
.y1ce4_c00001{bottom:80.169000px;}
.yc62_c00001{bottom:80.244044px;}
.y3b_c00001{bottom:80.529000px;}
.yc61_c00001{bottom:80.567974px;}
.y12dd_c00001{bottom:80.717541px;}
.yf99_c00001{bottom:80.726826px;}
.y32c_c00001{bottom:80.871000px;}
.y316_c00001{bottom:80.896081px;}
.y146c_c00001{bottom:80.955522px;}
.y507_c00001{bottom:80.965761px;}
.y154b_c00001{bottom:81.015000px;}
.y1292_c00001{bottom:81.049500px;}
.yce5_c00001{bottom:81.127500px;}
.ydc4_c00001{bottom:81.138966px;}
.yf9a_c00001{bottom:81.178036px;}
.y121b_c00001{bottom:81.183000px;}
.y317_c00001{bottom:81.317476px;}
.yeb2_c00001{bottom:81.338159px;}
.y994_c00001{bottom:81.435174px;}
.y19fc_c00001{bottom:81.446955px;}
.y182b_c00001{bottom:81.535515px;}
.yc60_c00001{bottom:81.535846px;}
.y154a_c00001{bottom:81.618000px;}
.y107f_c00001{bottom:81.642406px;}
.y12de_c00001{bottom:81.646499px;}
.yf9b_c00001{bottom:81.674769px;}
.y173b_c00001{bottom:81.698880px;}
.yeb1_c00001{bottom:81.874698px;}
.y19fd_c00001{bottom:82.141902px;}
.y11e4_c00001{bottom:82.209201px;}
.ydc5_c00001{bottom:82.222761px;}
.y6de_c00001{bottom:82.310049px;}
.y182c_c00001{bottom:82.431230px;}
.y508_c00001{bottom:82.456943px;}
.y10e5_c00001{bottom:82.477500px;}
.y1915_c00001{bottom:82.501035px;}
.y1242_c00001{bottom:82.564500px;}
.y146d_c00001{bottom:82.581594px;}
.y12df_c00001{bottom:82.642317px;}
.y995_c00001{bottom:82.672923px;}
.y1549_c00001{bottom:82.809000px;}
.y11e5_c00001{bottom:82.835211px;}
.y182d_c00001{bottom:82.845732px;}
.y107e_c00001{bottom:82.913805px;}
.y1548_c00001{bottom:82.971000px;}
.yeb0_c00001{bottom:83.159286px;}
.y11e6_c00001{bottom:83.163348px;}
.y509_c00001{bottom:83.208180px;}
.y5f0_c00001{bottom:83.228535px;}
.y19fe_c00001{bottom:83.229054px;}
.y146e_c00001{bottom:83.243217px;}
.y1914_c00001{bottom:83.273865px;}
.y1637_c00001{bottom:83.311504px;}
.y110d_c00001{bottom:83.343000px;}
.y8bf_c00001{bottom:83.406000px;}
.y318_c00001{bottom:83.504720px;}
.y173a_c00001{bottom:83.526594px;}
.y6df_c00001{bottom:83.544270px;}
.y12e0_c00001{bottom:83.576006px;}
.y1cc8_c00001{bottom:83.590500px;}
.y1913_c00001{bottom:83.598213px;}
.y5ef_c00001{bottom:83.614634px;}
.y19ff_c00001{bottom:83.686467px;}
.ydc6_c00001{bottom:83.708691px;}
.ydc7_c00001{bottom:83.820127px;}
.y12e1_c00001{bottom:83.868558px;}
.yf9c_c00001{bottom:83.880075px;}
.y1912_c00001{bottom:83.892408px;}
.y182e_c00001{bottom:83.966846px;}
.y1adc_c00001{bottom:83.971155px;}
.y11e7_c00001{bottom:84.160890px;}
.y5ee_c00001{bottom:84.161144px;}
.y131_c00001{bottom:84.180000px;}
.yeaf_c00001{bottom:84.230799px;}
.yb94_c00001{bottom:84.349500px;}
.y1911_c00001{bottom:84.367953px;}
.y1739_c00001{bottom:84.396054px;}
.y182f_c00001{bottom:84.416040px;}
.yf9d_c00001{bottom:84.473886px;}
.y1547_c00001{bottom:84.567000px;}
.y146f_c00001{bottom:84.631107px;}
.yeae_c00001{bottom:84.647813px;}
.y1830_c00001{bottom:84.749412px;}
.y1738_c00001{bottom:84.836676px;}
.y12e2_c00001{bottom:84.849186px;}
.y1372_c00001{bottom:84.912000px;}
.y107d_c00001{bottom:84.924238px;}
.y1638_c00001{bottom:85.148538px;}
.y1add_c00001{bottom:85.169940px;}
.y1a00_c00001{bottom:85.225455px;}
.y1910_c00001{bottom:85.270974px;}
.y1546_c00001{bottom:85.320000px;}
.y11e8_c00001{bottom:85.343310px;}
.y107c_c00001{bottom:85.457740px;}
.y807_c00001{bottom:85.471145px;}
.y5ed_c00001{bottom:85.485077px;}
.y1470_c00001{bottom:85.546707px;}
.ydc8_c00001{bottom:85.587361px;}
.y11e9_c00001{bottom:85.642920px;}
.y1831_c00001{bottom:85.719254px;}
.y1737_c00001{bottom:85.981902px;}
.yf9e_c00001{bottom:86.050511px;}
.y32b_c00001{bottom:86.115000px;}
.yead_c00001{bottom:86.345673px;}
.y1ade_c00001{bottom:86.368543px;}
.y808_c00001{bottom:86.369787px;}
.y1a01_c00001{bottom:86.520837px;}
.y6e0_c00001{bottom:86.543895px;}
.y5ec_c00001{bottom:86.621256px;}
.y1832_c00001{bottom:86.661700px;}
.y1392_c00001{bottom:86.728500px;}
.y11ea_c00001{bottom:86.738940px;}
.y1adf_c00001{bottom:86.907504px;}
.y5eb_c00001{bottom:86.995607px;}
.y6e1_c00001{bottom:87.021498px;}
.y1471_c00001{bottom:87.066051px;}
.y1ae0_c00001{bottom:87.199360px;}
.y1639_c00001{bottom:87.337884px;}
.y50a_c00001{bottom:87.377066px;}
.y107b_c00001{bottom:87.424870px;}
.y1b5e_c00001{bottom:87.478500px;}
.y1472_c00001{bottom:87.498072px;}
.y133a_c00001{bottom:87.499500px;}
.y1736_c00001{bottom:87.508446px;}
.yf9f_c00001{bottom:87.683875px;}
.y1a02_c00001{bottom:87.784176px;}
.y163a_c00001{bottom:87.819759px;}
.y5ea_c00001{bottom:87.945879px;}
.yb14_c00001{bottom:87.980312px;}
.y1b5f_c00001{bottom:88.140000px;}
.y809_c00001{bottom:88.337792px;}
.yfa0_c00001{bottom:88.350586px;}
.y1735_c00001{bottom:88.440750px;}
.y1b60_c00001{bottom:88.527000px;}
.y1c04_c00001{bottom:88.558500px;}
.y989_c00001{bottom:88.575000px;}
.y80a_c00001{bottom:88.988441px;}
.y5e9_c00001{bottom:89.092427px;}
.y1b11_c00001{bottom:89.130000px;}
.y163b_c00001{bottom:89.138437px;}
.y6e2_c00001{bottom:89.249058px;}
.y1b61_c00001{bottom:89.388000px;}
.y1a66_c00001{bottom:89.469000px;}
.y403_c00001{bottom:89.582247px;}
.yb15_c00001{bottom:89.642717px;}
.y80b_c00001{bottom:89.658453px;}
.y98a_c00001{bottom:89.733030px;}
.y163c_c00001{bottom:89.782495px;}
.y50b_c00001{bottom:89.895776px;}
.y402_c00001{bottom:89.905829px;}
.y71e_c00001{bottom:89.908452px;}
.y1b62_c00001{bottom:90.037500px;}
.y1ff_c00001{bottom:90.158589px;}
.y401_c00001{bottom:90.217695px;}
.y1b63_c00001{bottom:90.261000px;}
.yb16_c00001{bottom:90.288618px;}
.y400_c00001{bottom:90.363572px;}
.y71f_c00001{bottom:90.407352px;}
.y98b_c00001{bottom:90.435192px;}
.y200_c00001{bottom:90.577720px;}
.yd5_c00001{bottom:90.992244px;}
.y1d5d_c00001{bottom:90.993000px;}
.y3ff_c00001{bottom:91.041012px;}
.y1bac_c00001{bottom:91.215000px;}
.y3fe_c00001{bottom:91.269818px;}
.y720_c00001{bottom:91.439844px;}
.y1318_c00001{bottom:91.462500px;}
.y309_c00001{bottom:91.549644px;}
.y80c_c00001{bottom:91.770893px;}
.y3fd_c00001{bottom:91.774619px;}
.y721_c00001{bottom:91.879020px;}
.y1d5e_c00001{bottom:91.908075px;}
.y201_c00001{bottom:92.083234px;}
.y722_c00001{bottom:92.097792px;}
.y1d5f_c00001{bottom:92.292848px;}
.y163d_c00001{bottom:92.368678px;}
.y3fc_c00001{bottom:92.371589px;}
.y202_c00001{bottom:92.435244px;}
.y3fb_c00001{bottom:92.591517px;}
.y203_c00001{bottom:92.738865px;}
.yd6_c00001{bottom:92.742336px;}
.yb17_c00001{bottom:92.770721px;}
.yd7_c00001{bottom:92.908368px;}
.ya3e_c00001{bottom:93.150000px;}
.yb18_c00001{bottom:93.190607px;}
.y723_c00001{bottom:93.269196px;}
.y80d_c00001{bottom:93.279455px;}
.y30a_c00001{bottom:93.389334px;}
.y1d60_c00001{bottom:93.398610px;}
.y724_c00001{bottom:93.519912px;}
.yb19_c00001{bottom:93.718259px;}
.y204_c00001{bottom:93.726385px;}
.y98c_c00001{bottom:94.104168px;}
.yd8_c00001{bottom:94.115628px;}
.y1d61_c00001{bottom:94.143968px;}
.y30b_c00001{bottom:94.257214px;}
.yd9_c00001{bottom:94.371516px;}
.y1d62_c00001{bottom:94.470038px;}
.y1263_c00001{bottom:94.614000px;}
.ycc3_c00001{bottom:94.728000px;}
.y1c67_c00001{bottom:94.767188px;}
.y205_c00001{bottom:94.956234px;}
.y1c68_c00001{bottom:95.058029px;}
.yb1a_c00001{bottom:95.070437px;}
.y1d63_c00001{bottom:95.128365px;}
.yc5f_c00001{bottom:95.188577px;}
.y10e0_c00001{bottom:95.319000px;}
.y1c69_c00001{bottom:95.484912px;}
.y98d_c00001{bottom:95.558496px;}
.yc5e_c00001{bottom:95.846694px;}
.y12d2_c00001{bottom:95.847000px;}
.yb1b_c00001{bottom:95.948378px;}
.y1c6a_c00001{bottom:96.009620px;}
.y10e1_c00001{bottom:96.103500px;}
.yda_c00001{bottom:96.132048px;}
.yc9c_c00001{bottom:96.180000px;}
.yc5d_c00001{bottom:96.182226px;}
.ydb_c00001{bottom:96.257244px;}
.yb1c_c00001{bottom:96.294404px;}
.y1c6b_c00001{bottom:96.323528px;}
.y1a4f_c00001{bottom:96.390000px;}
.y12d3_c00001{bottom:96.411000px;}
.yc5c_c00001{bottom:96.477806px;}
.y12d4_c00001{bottom:96.568500px;}
.y1c6c_c00001{bottom:96.622676px;}
.y30c_c00001{bottom:96.623349px;}
.y10e2_c00001{bottom:96.874500px;}
.y1c6d_c00001{bottom:96.962595px;}
.ydbc_c00001{bottom:97.127053px;}
.yc5b_c00001{bottom:97.233981px;}
.y12d5_c00001{bottom:97.257000px;}
.y98e_c00001{bottom:97.344060px;}
.y1c6e_c00001{bottom:97.494908px;}
.y4fd_c00001{bottom:97.513872px;}
.yeac_c00001{bottom:97.554162px;}
.y6d8_c00001{bottom:97.587726px;}
.yc5a_c00001{bottom:97.592054px;}
.y12d6_c00001{bottom:97.626000px;}
.y3a_c00001{bottom:97.678500px;}
.y1c6f_c00001{bottom:97.718673px;}
.y12d7_c00001{bottom:97.765500px;}
.yc59_c00001{bottom:97.880672px;}
.ydbd_c00001{bottom:97.886230px;}
.y30d_c00001{bottom:97.900170px;}
.y19f4_c00001{bottom:97.926285px;}
.yce4_c00001{bottom:97.954500px;}
.y12d8_c00001{bottom:97.956000px;}
.y1c70_c00001{bottom:98.095991px;}
.y1291_c00001{bottom:98.160000px;}
.y121a_c00001{bottom:98.209500px;}
.y107a_c00001{bottom:98.213769px;}
.y1825_c00001{bottom:98.277843px;}
.y10e3_c00001{bottom:98.293500px;}
.y98f_c00001{bottom:98.303694px;}
.y12d9_c00001{bottom:98.307000px;}
.y11dd_c00001{bottom:98.421369px;}
.y1c71_c00001{bottom:98.426316px;}
.y6d9_c00001{bottom:98.449230px;}
.yc58_c00001{bottom:98.515293px;}
.y8be_c00001{bottom:98.545500px;}
.yeab_c00001{bottom:98.697393px;}
.y1826_c00001{bottom:98.797866px;}
.y8bd_c00001{bottom:98.818500px;}
.yf90_c00001{bottom:98.822283px;}
.ydbe_c00001{bottom:98.859603px;}
.y1734_c00001{bottom:98.862120px;}
.y12da_c00001{bottom:98.904000px;}
.yc57_c00001{bottom:99.085940px;}
.y1733_c00001{bottom:99.091920px;}
.y11de_c00001{bottom:99.172806px;}
.y19f5_c00001{bottom:99.200262px;}
.ydbf_c00001{bottom:99.293095px;}
.y1732_c00001{bottom:99.381342px;}
.y8bc_c00001{bottom:99.423000px;}
.y10e4_c00001{bottom:99.468000px;}
.y4fe_c00001{bottom:99.479781px;}
.yeaa_c00001{bottom:99.481866px;}
.y1241_c00001{bottom:99.513000px;}
.y19f6_c00001{bottom:99.565917px;}
.y8bb_c00001{bottom:99.585000px;}
.y1463_c00001{bottom:99.586245px;}
.ydc0_c00001{bottom:99.652462px;}
.y190f_c00001{bottom:99.669060px;}
.y110c_c00001{bottom:99.754500px;}
.y1630_c00001{bottom:99.774730px;}
.y8ba_c00001{bottom:99.882000px;}
.y1464_c00001{bottom:99.989391px;}
.y1079_c00001{bottom:100.032106px;}
.y6da_c00001{bottom:100.134438px;}
.y8b9_c00001{bottom:100.303500px;}
.y30e_c00001{bottom:100.320156px;}
.y1465_c00001{bottom:100.368834px;}
.y130_c00001{bottom:100.416000px;}
.y8b8_c00001{bottom:100.449000px;}
.ydc1_c00001{bottom:100.498474px;}
.y1078_c00001{bottom:100.503895px;}
.yf91_c00001{bottom:100.510663px;}
.y11df_c00001{bottom:100.536399px;}
.y1545_c00001{bottom:100.564500px;}
.y1731_c00001{bottom:100.719816px;}
.y1631_c00001{bottom:100.755097px;}
.y1827_c00001{bottom:100.850787px;}
.y1077_c00001{bottom:100.858540px;}
.yea9_c00001{bottom:100.867148px;}
.y190e_c00001{bottom:100.913859px;}
.yf92_c00001{bottom:101.026736px;}
.y1466_c00001{bottom:101.042664px;}
.y30f_c00001{bottom:101.064528px;}
.yb93_c00001{bottom:101.136000px;}
.y1730_c00001{bottom:101.142606px;}
.y11e0_c00001{bottom:101.213964px;}
.y8b7_c00001{bottom:101.259000px;}
.y19f7_c00001{bottom:101.269392px;}
.y1cc7_c00001{bottom:101.289000px;}
.y1467_c00001{bottom:101.375598px;}
.ydc2_c00001{bottom:101.458893px;}
.y6db_c00001{bottom:101.510652px;}
.y1ad8_c00001{bottom:101.521500px;}
.yea8_c00001{bottom:101.529954px;}
.y190d_c00001{bottom:101.576274px;}
.y5e8_c00001{bottom:101.743244px;}
.y11e1_c00001{bottom:101.757786px;}
.y1a4e_c00001{bottom:101.790000px;}
.yf93_c00001{bottom:101.834436px;}
.y4ff_c00001{bottom:101.868441px;}
.y190c_c00001{bottom:101.956368px;}
.y1076_c00001{bottom:101.969901px;}
.y310_c00001{bottom:102.007762px;}
.y1828_c00001{bottom:102.087567px;}
.y6dc_c00001{bottom:102.116502px;}
.y172f_c00001{bottom:102.154932px;}
.y1468_c00001{bottom:102.191586px;}
.y1632_c00001{bottom:102.249654px;}
.y190b_c00001{bottom:102.309978px;}
.y500_c00001{bottom:102.478583px;}
.y1ad9_c00001{bottom:102.504735px;}
.y1469_c00001{bottom:102.795672px;}
.y190a_c00001{bottom:102.824271px;}
.yf94_c00001{bottom:102.918579px;}
.yea7_c00001{bottom:102.921588px;}
.y800_c00001{bottom:103.012038px;}
.y5e7_c00001{bottom:103.091057px;}
.y1371_c00001{bottom:103.138500px;}
.y300_c00001{bottom:103.174858px;}
.yf95_c00001{bottom:103.255444px;}
.y11e2_c00001{bottom:103.269006px;}
.yea6_c00001{bottom:103.312694px;}
.y172e_c00001{bottom:103.373154px;}
.y1829_c00001{bottom:103.437498px;}
.y1391_c00001{bottom:103.440000px;}
.y501_c00001{bottom:103.486937px;}
.y5e6_c00001{bottom:103.523264px;}
.y19f8_c00001{bottom:103.593564px;}
.yea5_c00001{bottom:103.633905px;}
.y1339_c00001{bottom:103.683000px;}
.y182a_c00001{bottom:103.760269px;}
.y146a_c00001{bottom:103.768920px;}
.y1ada_c00001{bottom:103.776010px;}
.yf96_c00001{bottom:103.804401px;}
.y801_c00001{bottom:103.983474px;}
.y172d_c00001{bottom:103.998732px;}
.y19f9_c00001{bottom:104.034198px;}
.y5e5_c00001{bottom:104.042343px;}
.y1633_c00001{bottom:104.203657px;}
.y716_c00001{bottom:104.230500px;}
.y1adb_c00001{bottom:104.301304px;}
.y1075_c00001{bottom:104.347129px;}
.y1a4d_c00001{bottom:104.490000px;}
.y146b_c00001{bottom:104.575896px;}
.y19fa_c00001{bottom:104.644173px;}
.y5e4_c00001{bottom:104.699729px;}
.y717_c00001{bottom:104.751960px;}
.y1074_c00001{bottom:104.793826px;}
.y301_c00001{bottom:104.821183px;}
.yf97_c00001{bottom:104.973105px;}
.y11e3_c00001{bottom:105.080337px;}
.y983_c00001{bottom:105.139392px;}
.y172c_c00001{bottom:105.187590px;}
.y1b5a_c00001{bottom:105.318000px;}
.y1c03_c00001{bottom:105.414000px;}
.y5e3_c00001{bottom:105.450802px;}
.y19fb_c00001{bottom:105.473904px;}
.y1073_c00001{bottom:105.505542px;}
.y302_c00001{bottom:105.543318px;}
.y1b10_c00001{bottom:105.732000px;}
.y5e2_c00001{bottom:105.765856px;}
.y718_c00001{bottom:105.815292px;}
.y1634_c00001{bottom:105.959802px;}
.y502_c00001{bottom:106.002717px;}
.yf98_c00001{bottom:106.040685px;}
.y303_c00001{bottom:106.066371px;}
.y984_c00001{bottom:106.078726px;}
.y5e1_c00001{bottom:106.103634px;}
.y1a65_c00001{bottom:106.246500px;}
.y1b5b_c00001{bottom:106.275000px;}
.y3fa_c00001{bottom:106.300386px;}
.y719_c00001{bottom:106.322604px;}
.y802_c00001{bottom:106.374800px;}
.y1b5c_c00001{bottom:106.465500px;}
.yb0c_c00001{bottom:106.613336px;}
.y3f9_c00001{bottom:106.801563px;}
.y71a_c00001{bottom:106.932156px;}
.y503_c00001{bottom:106.955291px;}
.y1b5d_c00001{bottom:107.097000px;}
.y1f7_c00001{bottom:107.437417px;}
.y1bab_c00001{bottom:107.626500px;}
.y304_c00001{bottom:107.644470px;}
.y504_c00001{bottom:107.668814px;}
.y803_c00001{bottom:107.690114px;}
.y1f8_c00001{bottom:107.722092px;}
.ya3d_c00001{bottom:107.808000px;}
.y3f8_c00001{bottom:107.862003px;}
.y1635_c00001{bottom:107.930034px;}
.yb0d_c00001{bottom:108.002654px;}
.y3f7_c00001{bottom:108.079506px;}
.y71b_c00001{bottom:108.129696px;}
.y1f9_c00001{bottom:108.203907px;}
.y3f6_c00001{bottom:108.322002px;}
.y985_c00001{bottom:108.501270px;}
.y3f5_c00001{bottom:108.511030px;}
.yb0e_c00001{bottom:108.530231px;}
.y1636_c00001{bottom:108.533527px;}
.ycf_c00001{bottom:108.543000px;}
.y1317_c00001{bottom:108.546000px;}
.y804_c00001{bottom:108.565166px;}
.y1fa_c00001{bottom:108.649290px;}
.ya3c_c00001{bottom:108.720000px;}
.yd0_c00001{bottom:108.737088px;}
.y1fb_c00001{bottom:108.880933px;}
.y71c_c00001{bottom:108.926520px;}
.yd1_c00001{bottom:109.039944px;}
.ya3b_c00001{bottom:109.077000px;}
.y505_c00001{bottom:109.093646px;}
.y1fc_c00001{bottom:109.237692px;}
.y3f4_c00001{bottom:109.367463px;}
.y805_c00001{bottom:109.511816px;}
.y1fd_c00001{bottom:109.531201px;}
.y3f3_c00001{bottom:109.602354px;}
.y806_c00001{bottom:109.844555px;}
.y71d_c00001{bottom:109.879116px;}
.y305_c00001{bottom:109.934433px;}
.ya3a_c00001{bottom:110.071500px;}
.yb0f_c00001{bottom:110.142086px;}
.ya39_c00001{bottom:110.260500px;}
.y1fe_c00001{bottom:110.300850px;}
.yd2_c00001{bottom:110.439576px;}
.ya38_c00001{bottom:110.853000px;}
.yb10_c00001{bottom:111.048852px;}
.ya37_c00001{bottom:111.120000px;}
.y306_c00001{bottom:111.140875px;}
.yd3_c00001{bottom:111.389856px;}
.ya36_c00001{bottom:111.510000px;}
.yb11_c00001{bottom:111.732537px;}
.y986_c00001{bottom:112.032154px;}
.y1262_c00001{bottom:112.132500px;}
.ycc2_c00001{bottom:112.275000px;}
.y4f5_c00001{bottom:112.371035px;}
.yd4_c00001{bottom:112.582224px;}
.y12ca_c00001{bottom:112.588500px;}
.yc56_c00001{bottom:112.772469px;}
.yc9b_c00001{bottom:112.950000px;}
.yb12_c00001{bottom:113.045378px;}
.y12cb_c00001{bottom:113.085000px;}
.y307_c00001{bottom:113.094690px;}
.yea4_c00001{bottom:113.445738px;}
.y987_c00001{bottom:113.508928px;}
.yc55_c00001{bottom:113.636937px;}
.y4f6_c00001{bottom:113.767794px;}
.yb13_c00001{bottom:113.818917px;}
.y12cc_c00001{bottom:113.881500px;}
.yc54_c00001{bottom:113.973971px;}
.y12cd_c00001{bottom:114.049500px;}
.y1219_c00001{bottom:114.073500px;}
.y1ce3_c00001{bottom:114.105000px;}
.y308_c00001{bottom:114.283175px;}
.y988_c00001{bottom:114.391284px;}
.y1072_c00001{bottom:114.394428px;}
.ydb5_c00001{bottom:114.413641px;}
.y2f5_c00001{bottom:114.486000px;}
.y4f7_c00001{bottom:114.610181px;}
.y19ed_c00001{bottom:114.664746px;}
.y181f_c00001{bottom:114.754500px;}
.yce3_c00001{bottom:114.813000px;}
.y11d7_c00001{bottom:114.899442px;}
.yc53_c00001{bottom:114.907592px;}
.ydb6_c00001{bottom:114.943116px;}
.y12ce_c00001{bottom:115.009500px;}
.y12cf_c00001{bottom:115.182000px;}
.y19ee_c00001{bottom:115.182054px;}
.yf89_c00001{bottom:115.299000px;}
.y39_c00001{bottom:115.320000px;}
.yea3_c00001{bottom:115.378446px;}
.y172b_c00001{bottom:115.441398px;}
.yc52_c00001{bottom:115.445886px;}
.y1c5e_c00001{bottom:115.559109px;}
.y19ef_c00001{bottom:115.783677px;}
.y10df_c00001{bottom:115.827000px;}
.y12d0_c00001{bottom:115.861500px;}
.ydb7_c00001{bottom:115.915099px;}
.y11d8_c00001{bottom:115.924773px;}
.y172a_c00001{bottom:115.946910px;}
.y12d1_c00001{bottom:116.031000px;}
.y145c_c00001{bottom:116.059143px;}
.y1820_c00001{bottom:116.060532px;}
.y1c5f_c00001{bottom:116.281330px;}
.y1729_c00001{bottom:116.302584px;}
.y2f6_c00001{bottom:116.303571px;}
.y1071_c00001{bottom:116.361171px;}
.yc51_c00001{bottom:116.366991px;}
.y1290_c00001{bottom:116.400000px;}
.ydb8_c00001{bottom:116.417569px;}
.y5e0_c00001{bottom:116.489817px;}
.y1c60_c00001{bottom:116.632389px;}
.yea2_c00001{bottom:116.683893px;}
.y110b_c00001{bottom:116.791500px;}
.y162a_c00001{bottom:116.807908px;}
.yf8a_c00001{bottom:116.903205px;}
.ydb9_c00001{bottom:116.985708px;}
.y1c61_c00001{bottom:116.994348px;}
.y1070_c00001{bottom:117.056169px;}
.y19f0_c00001{bottom:117.191754px;}
.y5df_c00001{bottom:117.203156px;}
.y145d_c00001{bottom:117.230724px;}
.y8b6_c00001{bottom:117.277500px;}
.y12f_c00001{bottom:117.285000px;}
.y1544_c00001{bottom:117.336000px;}
.y1c62_c00001{bottom:117.394098px;}
.y106f_c00001{bottom:117.533866px;}
.y2f7_c00001{bottom:117.571270px;}
.yea1_c00001{bottom:117.618987px;}
.y1c63_c00001{bottom:117.633617px;}
.y19f1_c00001{bottom:117.649431px;}
.y1821_c00001{bottom:117.697522px;}
.y1240_c00001{bottom:117.723000px;}
.y1728_c00001{bottom:117.796752px;}
.y1905_c00001{bottom:117.923652px;}
.y1902_c00001{bottom:117.923688px;}
.y1903_c00001{bottom:117.923811px;}
.y1906_c00001{bottom:117.923961px;}
.y1904_c00001{bottom:117.924138px;}
.y1909_c00001{bottom:117.924258px;}
.y1907_c00001{bottom:117.924429px;}
.y1908_c00001{bottom:117.924477px;}
.yea0_c00001{bottom:118.111899px;}
.y1c64_c00001{bottom:118.152921px;}
.y19f2_c00001{bottom:118.154727px;}
.y1ad2_c00001{bottom:118.259858px;}
.y1727_c00001{bottom:118.276692px;}
.y1cc6_c00001{bottom:118.300500px;}
.y1822_c00001{bottom:118.349814px;}
.ye9f_c00001{bottom:118.421124px;}
.ydba_c00001{bottom:118.492752px;}
.yf8b_c00001{bottom:118.529847px;}
.y145e_c00001{bottom:118.601337px;}
.y4f8_c00001{bottom:118.684038px;}
.y1c65_c00001{bottom:118.724642px;}
.y1370_c00001{bottom:118.798500px;}
.y710_c00001{bottom:118.809000px;}
.y162b_c00001{bottom:118.837905px;}
.y1726_c00001{bottom:118.850592px;}
.y145f_c00001{bottom:118.858305px;}
.y5de_c00001{bottom:118.908261px;}
.y6ce_c00001{bottom:118.914384px;}
.y11d9_c00001{bottom:118.921029px;}
.y106e_c00001{bottom:119.010118px;}
.y1c66_c00001{bottom:119.012520px;}
.y1823_c00001{bottom:119.042781px;}
.y1ad3_c00001{bottom:119.303385px;}
.y6cf_c00001{bottom:119.349618px;}
.y4f9_c00001{bottom:119.380992px;}
.y711_c00001{bottom:119.440500px;}
.y11da_c00001{bottom:119.447589px;}
.yb92_c00001{bottom:119.580000px;}
.ydbb_c00001{bottom:119.696557px;}
.y2f8_c00001{bottom:119.763561px;}
.y1ad4_c00001{bottom:119.828265px;}
.ye9e_c00001{bottom:119.841864px;}
.y712_c00001{bottom:119.860500px;}
.y11db_c00001{bottom:119.865315px;}
.y6d0_c00001{bottom:119.873226px;}
.y1460_c00001{bottom:119.899755px;}
.y6d1_c00001{bottom:120.021204px;}
.y162c_c00001{bottom:120.186834px;}
.y1725_c00001{bottom:120.241506px;}
.yf8c_c00001{bottom:120.257941px;}
.y1390_c00001{bottom:120.331500px;}
.y1ad5_c00001{bottom:120.399330px;}
.y19f3_c00001{bottom:120.411003px;}
.y5dd_c00001{bottom:120.484622px;}
.y1461_c00001{bottom:120.514680px;}
.y106d_c00001{bottom:120.537459px;}
.y7f7_c00001{bottom:120.552813px;}
.y6d2_c00001{bottom:120.597006px;}
.y713_c00001{bottom:120.703500px;}
.yf8d_c00001{bottom:120.845475px;}
.y1ad6_c00001{bottom:120.863093px;}
.y1724_c00001{bottom:120.912096px;}
.y2f9_c00001{bottom:120.919331px;}
.y7f8_c00001{bottom:120.940176px;}
.y6d3_c00001{bottom:121.056156px;}
.y1338_c00001{bottom:121.141500px;}
.y1ad7_c00001{bottom:121.251615px;}
.y1824_c00001{bottom:121.275793px;}
.y11dc_c00001{bottom:121.278381px;}
.yf8e_c00001{bottom:121.321107px;}
.y6d4_c00001{bottom:121.347594px;}
.y714_c00001{bottom:121.360500px;}
.y1462_c00001{bottom:121.383315px;}
.y6d5_c00001{bottom:121.607202px;}
.y7f9_c00001{bottom:121.671047px;}
.yb02_c00001{bottom:121.747710px;}
.y1cda_c00001{bottom:121.770000px;}
.y6d6_c00001{bottom:121.850220px;}
.y162d_c00001{bottom:122.027062px;}
.y1b0f_c00001{bottom:122.085000px;}
.y1723_c00001{bottom:122.204850px;}
.y106c_c00001{bottom:122.238967px;}
.yb03_c00001{bottom:122.330888px;}
.y7fa_c00001{bottom:122.350611px;}
.y6d7_c00001{bottom:122.359626px;}
.y1c02_c00001{bottom:122.451000px;}
.yf8f_c00001{bottom:122.489046px;}
.y4fa_c00001{bottom:122.518026px;}
.y2fa_c00001{bottom:122.559044px;}
.y5dc_c00001{bottom:122.561799px;}
.y162e_c00001{bottom:122.593204px;}
.y3f2_c00001{bottom:122.664980px;}
.y715_c00001{bottom:122.748000px;}
.y1b59_c00001{bottom:122.958000px;}
.yb04_c00001{bottom:123.084250px;}
.y1a64_c00001{bottom:123.102000px;}
.y1d6a_c00001{bottom:123.120000px;}
.y5db_c00001{bottom:123.124797px;}
.y2ee_c00001{bottom:123.128550px;}
.y97c_c00001{bottom:123.210847px;}
.y162f_c00001{bottom:123.317808px;}
.y4fb_c00001{bottom:123.369392px;}
.y3f1_c00001{bottom:123.447075px;}
.y1a4c_c00001{bottom:123.660000px;}
.y1d6b_c00001{bottom:123.705021px;}
.y3f0_c00001{bottom:123.751982px;}
.y2ef_c00001{bottom:123.791595px;}
.y7fb_c00001{bottom:123.800375px;}
.y3ef_c00001{bottom:123.996556px;}
.y2fb_c00001{bottom:124.133935px;}
.y1d6c_c00001{bottom:124.220197px;}
.y97d_c00001{bottom:124.308199px;}
.y1ee_c00001{bottom:124.447468px;}
.y1d6d_c00001{bottom:124.718085px;}
.yb05_c00001{bottom:124.752180px;}
.y3ee_c00001{bottom:124.753129px;}
.y1ef_c00001{bottom:124.813942px;}
.y2fc_c00001{bottom:124.847274px;}
.y97e_c00001{bottom:124.960920px;}
.y1d6e_c00001{bottom:124.963675px;}
.y3ed_c00001{bottom:125.008527px;}
.y2fd_c00001{bottom:125.018182px;}
.y1baa_c00001{bottom:125.052000px;}
.yb06_c00001{bottom:125.370395px;}
.y1f0_c00001{bottom:125.449773px;}
.y2fe_c00001{bottom:125.494685px;}
.yc6_c00001{bottom:125.551500px;}
.y7fc_c00001{bottom:125.661530px;}
.y1d5c_c00001{bottom:125.683500px;}
.y2f0_c00001{bottom:125.738565px;}
.y4fc_c00001{bottom:125.741933px;}
.yc7_c00001{bottom:125.762315px;}
.y3ec_c00001{bottom:125.879098px;}
.y1f1_c00001{bottom:125.935558px;}
.yb07_c00001{bottom:125.990306px;}
.y1d6f_c00001{bottom:126.080678px;}
.y1316_c00001{bottom:126.090000px;}
.y1d94_c00001{bottom:126.129000px;}
.y3eb_c00001{bottom:126.135040px;}
.y1f2_c00001{bottom:126.159807px;}
.y2ff_c00001{bottom:126.278625px;}
.y3ea_c00001{bottom:126.341407px;}
.y1d70_c00001{bottom:126.360540px;}
.yc8_c00001{bottom:126.436313px;}
.y7fd_c00001{bottom:126.477489px;}
.y1f3_c00001{bottom:126.515887px;}
.yc9_c00001{bottom:126.734546px;}
.y97f_c00001{bottom:126.773137px;}
.y1d71_c00001{bottom:127.003879px;}
.y1f4_c00001{bottom:127.079542px;}
.yca_c00001{bottom:127.158944px;}
.y1f5_c00001{bottom:127.284621px;}
.ya35_c00001{bottom:127.323000px;}
.ycb_c00001{bottom:127.338402px;}
.y7fe_c00001{bottom:127.664576px;}
.y1f6_c00001{bottom:127.680406px;}
.yb08_c00001{bottom:127.690250px;}
.y2f1_c00001{bottom:127.986285px;}
.ycc_c00001{bottom:128.177077px;}
.y7ff_c00001{bottom:128.306196px;}
.y1261_c00001{bottom:128.425500px;}
.y181e_c00001{bottom:128.521452px;}
.y181d_c00001{bottom:128.521599px;}
.y181c_c00001{bottom:128.522001px;}
.ycd_c00001{bottom:128.528604px;}
.yb09_c00001{bottom:128.544528px;}
.y980_c00001{bottom:128.730282px;}
.yce_c00001{bottom:128.746029px;}
.ycc1_c00001{bottom:128.761500px;}
.y2f2_c00001{bottom:128.971995px;}
.ydac_c00001{bottom:129.543711px;}
.yc9a_c00001{bottom:129.930000px;}
.yb0a_c00001{bottom:130.206367px;}
.y981_c00001{bottom:130.273107px;}
.yb0b_c00001{bottom:130.682801px;}
.yce2_c00001{bottom:130.950000px;}
.y4ee_c00001{bottom:130.987743px;}
.ye9d_c00001{bottom:131.094828px;}
.y2f3_c00001{bottom:131.198685px;}
.y127_c00001{bottom:131.221500px;}
.ydad_c00001{bottom:131.313412px;}
.y982_c00001{bottom:131.350992px;}
.y19e6_c00001{bottom:131.411409px;}
.y10de_c00001{bottom:131.506500px;}
.y128_c00001{bottom:131.743302px;}
.y128f_c00001{bottom:131.772000px;}
.ydae_c00001{bottom:131.784247px;}
.y1453_c00001{bottom:131.999052px;}
.yc4e_c00001{bottom:132.049403px;}
.yc4d_c00001{bottom:132.049994px;}
.yc4f_c00001{bottom:132.050112px;}
.yc4c_c00001{bottom:132.050135px;}
.yc50_c00001{bottom:132.050552px;}
.yc4b_c00001{bottom:132.050627px;}
.yc49_c00001{bottom:132.050960px;}
.yc4a_c00001{bottom:132.051188px;}
.y38_c00001{bottom:132.150000px;}
.y2f4_c00001{bottom:132.260490px;}
.y4ef_c00001{bottom:132.271637px;}
.y1218_c00001{bottom:132.364500px;}
.y6c8_c00001{bottom:132.427926px;}
.y19e7_c00001{bottom:132.527772px;}
.y1815_c00001{bottom:132.573000px;}
.y106b_c00001{bottom:132.595015px;}
.yf83_c00001{bottom:132.700647px;}
.y12c9_c00001{bottom:132.709500px;}
.y4f0_c00001{bottom:132.816939px;}
.y129_c00001{bottom:132.843192px;}
.ye9c_c00001{bottom:132.938760px;}
.y12a_c00001{bottom:132.945144px;}
.y1454_c00001{bottom:132.949275px;}
.y19e8_c00001{bottom:133.019580px;}
.ydaf_c00001{bottom:133.212384px;}
.y6c9_c00001{bottom:133.251912px;}
.y123f_c00001{bottom:133.383000px;}
.y1901_c00001{bottom:133.412028px;}
.y106a_c00001{bottom:133.426539px;}
.y4f1_c00001{bottom:133.475172px;}
.y1455_c00001{bottom:133.489983px;}
.y12b_c00001{bottom:133.502496px;}
.y11d2_c00001{bottom:133.531386px;}
.yf84_c00001{bottom:133.534692px;}
.ydb0_c00001{bottom:133.539571px;}
.y110a_c00001{bottom:133.597500px;}
.y12c_c00001{bottom:133.638522px;}
.y1722_c00001{bottom:133.647348px;}
.y6ca_c00001{bottom:133.786140px;}
.ye9b_c00001{bottom:133.860432px;}
.y1069_c00001{bottom:133.893382px;}
.y1816_c00001{bottom:133.913280px;}
.ydb1_c00001{bottom:133.953586px;}
.y1900_c00001{bottom:134.021031px;}
.y12d_c00001{bottom:134.056608px;}
.y1620_c00001{bottom:134.095123px;}
.y19e9_c00001{bottom:134.105916px;}
.y8b5_c00001{bottom:134.107500px;}
.y5da_c00001{bottom:134.148692px;}
.y1721_c00001{bottom:134.161392px;}
.ye9a_c00001{bottom:134.228588px;}
.y18ff_c00001{bottom:134.232456px;}
.y1817_c00001{bottom:134.420475px;}
.yf85_c00001{bottom:134.478771px;}
.y18fe_c00001{bottom:134.487417px;}
.y1543_c00001{bottom:134.587500px;}
.y12e_c00001{bottom:134.616390px;}
.y1456_c00001{bottom:134.716479px;}
.y19ea_c00001{bottom:134.762397px;}
.yf86_c00001{bottom:134.944590px;}
.ye99_c00001{bottom:134.999813px;}
.y1ace_c00001{bottom:135.001500px;}
.y1720_c00001{bottom:135.007530px;}
.y5d9_c00001{bottom:135.011226px;}
.y1457_c00001{bottom:135.017559px;}
.ydb2_c00001{bottom:135.158091px;}
.y1068_c00001{bottom:135.213043px;}
.y1621_c00001{bottom:135.258187px;}
.y1c55_c00001{bottom:135.271509px;}
.y18fd_c00001{bottom:135.322968px;}
.y1458_c00001{bottom:135.359361px;}
.y1cc5_c00001{bottom:135.456000px;}
.y5d8_c00001{bottom:135.477839px;}
.y1818_c00001{bottom:135.512760px;}
.y18fc_c00001{bottom:135.548571px;}
.y6cb_c00001{bottom:135.563898px;}
.yb91_c00001{bottom:135.571500px;}
.y1c56_c00001{bottom:135.652350px;}
.y11d3_c00001{bottom:135.702387px;}
.y171f_c00001{bottom:135.720624px;}
.ydb3_c00001{bottom:135.723693px;}
.y18fb_c00001{bottom:135.845625px;}
.y1819_c00001{bottom:135.898293px;}
.y5d7_c00001{bottom:135.936965px;}
.y1c57_c00001{bottom:135.975619px;}
.y18fa_c00001{bottom:136.057104px;}
.y1622_c00001{bottom:136.127646px;}
.y11d4_c00001{bottom:136.139709px;}
.y1acf_c00001{bottom:136.200412px;}
.y181a_c00001{bottom:136.287741px;}
.y1459_c00001{bottom:136.414605px;}
.y18f9_c00001{bottom:136.579545px;}
.y1c58_c00001{bottom:136.644812px;}
.y138f_c00001{bottom:136.770000px;}
.y171e_c00001{bottom:136.774086px;}
.y1623_c00001{bottom:136.781841px;}
.y4f2_c00001{bottom:136.808465px;}
.y6cc_c00001{bottom:136.847004px;}
.y1c59_c00001{bottom:136.926378px;}
.y1067_c00001{bottom:137.024145px;}
.y19eb_c00001{bottom:137.024424px;}
.ye98_c00001{bottom:137.129846px;}
.y5d6_c00001{bottom:137.140256px;}
.ydb4_c00001{bottom:137.158917px;}
.y136f_c00001{bottom:137.220000px;}
.y1c5a_c00001{bottom:137.271873px;}
.y11d5_c00001{bottom:137.495541px;}
.y5d5_c00001{bottom:137.496710px;}
.y1066_c00001{bottom:137.501752px;}
.y19ec_c00001{bottom:137.595408px;}
.y145a_c00001{bottom:137.617971px;}
.yf87_c00001{bottom:137.621763px;}
.y1624_c00001{bottom:137.741232px;}
.y181b_c00001{bottom:137.779707px;}
.y1ad0_c00001{bottom:137.808195px;}
.y5d4_c00001{bottom:137.968704px;}
.y171d_c00001{bottom:138.028458px;}
.y1337_c00001{bottom:138.151500px;}
.y145b_c00001{bottom:138.159654px;}
.y1c5b_c00001{bottom:138.287067px;}
.yf88_c00001{bottom:138.317907px;}
.y171c_c00001{bottom:138.376356px;}
.y1ad1_c00001{bottom:138.553485px;}
.y1625_c00001{bottom:138.578314px;}
.y1c5c_c00001{bottom:138.590411px;}
.y7f1_c00001{bottom:138.631368px;}
.y11d6_c00001{bottom:138.722205px;}
.y1065_c00001{bottom:138.971596px;}
.y1626_c00001{bottom:138.975430px;}
.y978_c00001{bottom:139.146837px;}
.y171b_c00001{bottom:139.220004px;}
.yafb_c00001{bottom:139.299207px;}
.y6cd_c00001{bottom:139.318848px;}
.y1c01_c00001{bottom:139.417500px;}
.y5d3_c00001{bottom:139.596000px;}
.y7f2_c00001{bottom:139.660103px;}
.y1b0e_c00001{bottom:139.753500px;}
.y1c5d_c00001{bottom:139.886040px;}
.y1b58_c00001{bottom:139.965000px;}
.y4f3_c00001{bottom:140.218833px;}
.y1627_c00001{bottom:140.414232px;}
.y3e9_c00001{bottom:140.435805px;}
.y1a63_c00001{bottom:140.488500px;}
.y4f4_c00001{bottom:140.688698px;}
.y7f3_c00001{bottom:140.724840px;}
.y1628_c00001{bottom:140.844607px;}
.y3e8_c00001{bottom:141.264828px;}
.yafc_c00001{bottom:141.445341px;}
.y7f4_c00001{bottom:141.497775px;}
.y7f5_c00001{bottom:141.695499px;}
.y1e8_c00001{bottom:141.729013px;}
.y3e7_c00001{bottom:141.734164px;}
.y979_c00001{bottom:141.866529px;}
.y1ba9_c00001{bottom:142.167000px;}
.ybe_c00001{bottom:142.293000px;}
.y3e6_c00001{bottom:142.437996px;}
.y1e9_c00001{bottom:142.469370px;}
.y1ea_c00001{bottom:142.585044px;}
.y3e5_c00001{bottom:142.726194px;}
.ybf_c00001{bottom:142.762867px;}
.y1315_c00001{bottom:142.804500px;}
.y1eb_c00001{bottom:142.999516px;}
.yafd_c00001{bottom:143.115426px;}
.yc0_c00001{bottom:143.224522px;}
.y3e4_c00001{bottom:143.351789px;}
.y7f6_c00001{bottom:143.398433px;}
.y1629_c00001{bottom:143.463597px;}
.yc1_c00001{bottom:143.592915px;}
.yafe_c00001{bottom:143.739696px;}
.y2e7_c00001{bottom:144.190500px;}
.ya34_c00001{bottom:144.232500px;}
.y1ec_c00001{bottom:144.368436px;}
.yc2_c00001{bottom:144.726915px;}
.y2e8_c00001{bottom:144.764610px;}
.y1ed_c00001{bottom:145.151380px;}
.yaff_c00001{bottom:145.304449px;}
.y2e9_c00001{bottom:145.422600px;}
.yc3_c00001{bottom:145.427722px;}
.yb00_c00001{bottom:145.715424px;}
.yc4_c00001{bottom:145.722067px;}
.y1260_c00001{bottom:145.879500px;}
.y97a_c00001{bottom:145.884012px;}
.yc5_c00001{bottom:145.893360px;}
.yc48_c00001{bottom:145.924140px;}
.ycc0_c00001{bottom:146.377500px;}
.y4e6_c00001{bottom:146.385527px;}
.yb01_c00001{bottom:146.395025px;}
.yc47_c00001{bottom:146.653362px;}
.y97b_c00001{bottom:146.696950px;}
.yc99_c00001{bottom:146.818500px;}
.yc46_c00001{bottom:147.207264px;}
.y1ce2_c00001{bottom:147.727500px;}
.y2ea_c00001{bottom:147.792660px;}
.yc45_c00001{bottom:147.802773px;}
.ye97_c00001{bottom:148.166141px;}
.yda5_c00001{bottom:148.176774px;}
.y12c8_c00001{bottom:148.231500px;}
.yce1_c00001{bottom:148.561500px;}
.yc44_c00001{bottom:148.589318px;}
.y19df_c00001{bottom:148.693530px;}
.yda6_c00001{bottom:148.699723px;}
.y2eb_c00001{bottom:148.724205px;}
.y128e_c00001{bottom:148.731000px;}
.y4e7_c00001{bottom:148.876325px;}
.yc43_c00001{bottom:148.895661px;}
.y1217_c00001{bottom:148.981500px;}
.y19e0_c00001{bottom:148.999275px;}
.y180d_c00001{bottom:149.038824px;}
.y1064_c00001{bottom:149.127043px;}
.yf7b_c00001{bottom:149.179914px;}
.yc42_c00001{bottom:149.196876px;}
.y2ec_c00001{bottom:149.266095px;}
.y144d_c00001{bottom:149.284179px;}
.y37_c00001{bottom:149.338500px;}
.y1cc4_c00001{bottom:149.371692px;}
.ye96_c00001{bottom:149.449508px;}
.y180e_c00001{bottom:149.563944px;}
.y1063_c00001{bottom:149.583316px;}
.y18f8_c00001{bottom:149.638770px;}
.yc41_c00001{bottom:149.780258px;}
.y10dd_c00001{bottom:149.802000px;}
.ye95_c00001{bottom:149.819055px;}
.yda7_c00001{bottom:149.984380px;}
.y6c0_c00001{bottom:149.984694px;}
.y11cd_c00001{bottom:150.006369px;}
.y4e8_c00001{bottom:150.009678px;}
.y1cc3_c00001{bottom:150.085770px;}
.yc40_c00001{bottom:150.120488px;}
.y19e1_c00001{bottom:150.139755px;}
.y180f_c00001{bottom:150.235692px;}
.y1542_c00001{bottom:150.259500px;}
.y144e_c00001{bottom:150.271503px;}
.y123e_c00001{bottom:150.300000px;}
.y171a_c00001{bottom:150.390114px;}
.yda8_c00001{bottom:150.485707px;}
.y19e2_c00001{bottom:150.490644px;}
.y1109_c00001{bottom:150.513000px;}
.y1618_c00001{bottom:150.573231px;}
.yf7c_c00001{bottom:150.626112px;}
.y18f7_c00001{bottom:150.653370px;}
.y1541_c00001{bottom:150.811500px;}
.y1cc2_c00001{bottom:150.905472px;}
.y5d2_c00001{bottom:150.951900px;}
.y126_c00001{bottom:150.999000px;}
.y1810_c00001{bottom:151.047420px;}
.y18f6_c00001{bottom:151.077096px;}
.ye94_c00001{bottom:151.085280px;}
.yf7d_c00001{bottom:151.090017px;}
.y1cc1_c00001{bottom:151.171170px;}
.y1d5b_c00001{bottom:151.200000px;}
.y6c1_c00001{bottom:151.264470px;}
.y1062_c00001{bottom:151.288087px;}
.y11ce_c00001{bottom:151.351311px;}
.y1811_c00001{bottom:151.427688px;}
.y8b4_c00001{bottom:151.536000px;}
.y1719_c00001{bottom:151.596594px;}
.ye93_c00001{bottom:151.607124px;}
.y6c2_c00001{bottom:151.626024px;}
.y144f_c00001{bottom:151.643850px;}
.y1540_c00001{bottom:151.672500px;}
.y19e3_c00001{bottom:151.702899px;}
.y2ed_c00001{bottom:151.733040px;}
.y1cc0_c00001{bottom:151.734966px;}
.y11cf_c00001{bottom:151.829334px;}
.y1cbf_c00001{bottom:151.932516px;}
.y1061_c00001{bottom:151.983706px;}
.y1ac9_c00001{bottom:152.003216px;}
.y18f5_c00001{bottom:152.096394px;}
.y5d1_c00001{bottom:152.100588px;}
.y1718_c00001{bottom:152.191686px;}
.y1619_c00001{bottom:152.221842px;}
.y1cbe_c00001{bottom:152.262312px;}
.y6c3_c00001{bottom:152.384508px;}
.y18f4_c00001{bottom:152.490261px;}
.y1812_c00001{bottom:152.496504px;}
.yda9_c00001{bottom:152.541792px;}
.y1cbd_c00001{bottom:152.551500px;}
.y1450_c00001{bottom:152.648046px;}
.yf7e_c00001{bottom:152.750442px;}
.ye92_c00001{bottom:152.765409px;}
.ydaa_c00001{bottom:152.800230px;}
.y1aca_c00001{bottom:152.804062px;}
.y4e9_c00001{bottom:152.816460px;}
.y153f_c00001{bottom:152.820000px;}
.y18f3_c00001{bottom:152.848047px;}
.y1717_c00001{bottom:152.918730px;}
.yb90_c00001{bottom:153.031500px;}
.y1813_c00001{bottom:153.090684px;}
.y1acb_c00001{bottom:153.125673px;}
.ye91_c00001{bottom:153.152925px;}
.y1451_c00001{bottom:153.158775px;}
.y136e_c00001{bottom:153.202500px;}
.y6c4_c00001{bottom:153.390096px;}
.y19e4_c00001{bottom:153.423651px;}
.yf7f_c00001{bottom:153.483564px;}
.y7eb_c00001{bottom:153.490502px;}
.y1acc_c00001{bottom:153.589877px;}
.ye90_c00001{bottom:153.656039px;}
.ydab_c00001{bottom:153.853537px;}
.y18f2_c00001{bottom:153.862728px;}
.y1814_c00001{bottom:153.906240px;}
.y1060_c00001{bottom:153.940752px;}
.y4ea_c00001{bottom:154.090521px;}
.y138e_c00001{bottom:154.170000px;}
.y5d0_c00001{bottom:154.212168px;}
.y1acd_c00001{bottom:154.263631px;}
.y11d0_c00001{bottom:154.293891px;}
.y1716_c00001{bottom:154.331130px;}
.ye8f_c00001{bottom:154.416344px;}
.y1452_c00001{bottom:154.559325px;}
.y19e5_c00001{bottom:154.575978px;}
.yf80_c00001{bottom:154.653486px;}
.y6c5_c00001{bottom:154.730850px;}
.y1715_c00001{bottom:154.955760px;}
.y161a_c00001{bottom:155.090613px;}
.y6c6_c00001{bottom:155.227854px;}
.yf81_c00001{bottom:155.352600px;}
.y1336_c00001{bottom:155.371500px;}
.y11d1_c00001{bottom:155.432955px;}
.y7ec_c00001{bottom:155.656034px;}
.y105f_c00001{bottom:155.702596px;}
.y5cf_c00001{bottom:155.722248px;}
.y6c7_c00001{bottom:155.798058px;}
.y8c5_c00001{bottom:155.808000px;}
.y4eb_c00001{bottom:155.828246px;}
.y161b_c00001{bottom:156.033029px;}
.y1714_c00001{bottom:156.239946px;}
.y5ce_c00001{bottom:156.275790px;}
.yf82_c00001{bottom:156.325299px;}
.y8c6_c00001{bottom:156.556332px;}
.y3e3_c00001{bottom:156.628079px;}
.y161c_c00001{bottom:156.656315px;}
.y1a62_c00001{bottom:156.697500px;}
.y4ec_c00001{bottom:156.727031px;}
.y1b0d_c00001{bottom:156.787500px;}
.y1c50_c00001{bottom:156.871500px;}
.y1b57_c00001{bottom:156.973500px;}
.y7ed_c00001{bottom:157.029393px;}
.y5cd_c00001{bottom:157.106094px;}
.yaf1_c00001{bottom:157.125432px;}
.y1c51_c00001{bottom:157.429005px;}
.y161d_c00001{bottom:157.472994px;}
.y4ed_c00001{bottom:157.709199px;}
.y8c7_c00001{bottom:157.970700px;}
.y3e2_c00001{bottom:157.974040px;}
.y161e_c00001{bottom:158.085027px;}
.y70f_c00001{bottom:158.098500px;}
.y1c52_c00001{bottom:158.110803px;}
.yaf2_c00001{bottom:158.537349px;}
.y8c8_c00001{bottom:158.551524px;}
.y1ba8_c00001{bottom:158.592000px;}
.y1e2_c00001{bottom:158.741868px;}
.y1d54_c00001{bottom:158.760000px;}
.y3e1_c00001{bottom:158.765243px;}
.y7ee_c00001{bottom:158.926688px;}
.y1c53_c00001{bottom:158.962934px;}
.yaf3_c00001{bottom:159.174117px;}
.y1c10_c00001{bottom:159.300000px;}
.y3e0_c00001{bottom:159.312793px;}
.y1c54_c00001{bottom:159.381598px;}
.y1314_c00001{bottom:159.499500px;}
.y1d55_c00001{bottom:159.565500px;}
.y161f_c00001{bottom:159.745449px;}
.yaf4_c00001{bottom:159.847754px;}
.y1d56_c00001{bottom:159.909000px;}
.y1e3_c00001{bottom:159.924073px;}
.y3df_c00001{bottom:160.362625px;}
.yaf5_c00001{bottom:160.482390px;}
.y7ef_c00001{bottom:160.593788px;}
.y2df_c00001{bottom:160.676127px;}
.y70e_c00001{bottom:160.786500px;}
.y8c9_c00001{bottom:160.835994px;}
.yaf6_c00001{bottom:160.869736px;}
.y1d57_c00001{bottom:160.975500px;}
.y1e4_c00001{bottom:161.147476px;}
.ya33_c00001{bottom:161.212500px;}
.ybd_c00001{bottom:161.563500px;}
.y1d58_c00001{bottom:161.649000px;}
.y8ca_c00001{bottom:161.721324px;}
.y2e0_c00001{bottom:161.744964px;}
.y1e5_c00001{bottom:161.847804px;}
.y7f0_c00001{bottom:162.081113px;}
.y2e1_c00001{bottom:162.168911px;}
.y1d59_c00001{bottom:162.229500px;}
.y1d5a_c00001{bottom:162.394500px;}
.yaf7_c00001{bottom:162.437044px;}
.y1e6_c00001{bottom:162.496384px;}
.y2e2_c00001{bottom:162.698543px;}
.y8cb_c00001{bottom:162.743706px;}
.y125f_c00001{bottom:162.796500px;}
.y1e7_c00001{bottom:162.803352px;}
.yc3f_c00001{bottom:163.060785px;}
.yaf8_c00001{bottom:163.064394px;}
.yc3e_c00001{bottom:163.225521px;}
.ycbf_c00001{bottom:163.360500px;}
.yaf9_c00001{bottom:163.727916px;}
.y2e3_c00001{bottom:163.841789px;}
.yc98_c00001{bottom:163.950000px;}
.yc3d_c00001{bottom:163.998014px;}
.yd9d_c00001{bottom:164.115591px;}
.yafa_c00001{bottom:164.247727px;}
.y11c3_c00001{bottom:164.599947px;}
.y1444_c00001{bottom:164.683785px;}
.y2e4_c00001{bottom:164.760725px;}
.yc3c_c00001{bottom:164.875572px;}
.ye8e_c00001{bottom:164.944034px;}
.y4de_c00001{bottom:165.003433px;}
.yc3b_c00001{bottom:165.085880px;}
.y1445_c00001{bottom:165.101202px;}
.y2e5_c00001{bottom:165.111671px;}
.y1ce1_c00001{bottom:165.157500px;}
.y19d9_c00001{bottom:165.169914px;}
.y2e6_c00001{bottom:165.394614px;}
.y1808_c00001{bottom:165.517500px;}
.y105e_c00001{bottom:165.573688px;}
.ye8d_c00001{bottom:165.585242px;}
.y4df_c00001{bottom:165.613533px;}
.y128d_c00001{bottom:165.754500px;}
.yce0_c00001{bottom:165.810000px;}
.ye8c_c00001{bottom:165.846798px;}
.y1446_c00001{bottom:165.918720px;}
.y12c7_c00001{bottom:166.042500px;}
.yc3a_c00001{bottom:166.051500px;}
.yd9e_c00001{bottom:166.090125px;}
.y11c4_c00001{bottom:166.100883px;}
.y105d_c00001{bottom:166.129227px;}
.y19da_c00001{bottom:166.162059px;}
.y1809_c00001{bottom:166.184292px;}
.y1216_c00001{bottom:166.383000px;}
.y1447_c00001{bottom:166.445766px;}
.y6b9_c00001{bottom:166.462116px;}
.y123d_c00001{bottom:166.653000px;}
.y8b3_c00001{bottom:166.686000px;}
.y977_c00001{bottom:166.808625px;}
.y1713_c00001{bottom:166.825230px;}
.yd9f_c00001{bottom:166.836285px;}
.y36_c00001{bottom:166.887000px;}
.y153e_c00001{bottom:166.894500px;}
.y11c5_c00001{bottom:166.917303px;}
.yf74_c00001{bottom:167.004315px;}
.y10dc_c00001{bottom:167.340000px;}
.ye8b_c00001{bottom:167.362580px;}
.y11c6_c00001{bottom:167.410797px;}
.y153d_c00001{bottom:167.418000px;}
.y1712_c00001{bottom:167.418300px;}
.y19db_c00001{bottom:167.500836px;}
.y1610_c00001{bottom:167.586300px;}
.y105c_c00001{bottom:167.709654px;}
.y180a_c00001{bottom:167.713140px;}
.yda0_c00001{bottom:167.745720px;}
.ye8a_c00001{bottom:167.747583px;}
.y1448_c00001{bottom:167.828589px;}
.y4e0_c00001{bottom:167.921942px;}
.y5cc_c00001{bottom:168.025122px;}
.y8b2_c00001{bottom:168.175500px;}
.y105b_c00001{bottom:168.258807px;}
.y1108_c00001{bottom:168.265500px;}
.y1711_c00001{bottom:168.266268px;}
.yf75_c00001{bottom:168.358917px;}
.y6ba_c00001{bottom:168.394464px;}
.y125_c00001{bottom:168.444000px;}
.yda1_c00001{bottom:168.503745px;}
.y153c_c00001{bottom:168.543000px;}
.y1611_c00001{bottom:168.610977px;}
.y5cb_c00001{bottom:168.611034px;}
.y70d_c00001{bottom:168.750000px;}
.yda2_c00001{bottom:168.821751px;}
.yf76_c00001{bottom:168.890415px;}
.y105a_c00001{bottom:168.905344px;}
.y1449_c00001{bottom:168.938295px;}
.y1612_c00001{bottom:169.113417px;}
.y18ee_c00001{bottom:169.149195px;}
.y18ef_c00001{bottom:169.149384px;}
.y18ed_c00001{bottom:169.149501px;}
.y18ec_c00001{bottom:169.149879px;}
.y18f0_c00001{bottom:169.149933px;}
.y18f1_c00001{bottom:169.150623px;}
.y153b_c00001{bottom:169.158000px;}
.y19dc_c00001{bottom:169.174728px;}
.y8b1_c00001{bottom:169.222500px;}
.y1710_c00001{bottom:169.253502px;}
.y11c7_c00001{bottom:169.286562px;}
.y1cbc_c00001{bottom:169.455000px;}
.y180b_c00001{bottom:169.520556px;}
.y11c8_c00001{bottom:169.616175px;}
.y8b0_c00001{bottom:169.650000px;}
.ye89_c00001{bottom:169.678821px;}
.y5ca_c00001{bottom:169.718100px;}
.y144a_c00001{bottom:169.779486px;}
.y153a_c00001{bottom:169.828500px;}
.y6bb_c00001{bottom:169.882260px;}
.y19dd_c00001{bottom:169.916931px;}
.y4e1_c00001{bottom:169.923467px;}
.yb8f_c00001{bottom:170.034000px;}
.y8af_c00001{bottom:170.110500px;}
.yda3_c00001{bottom:170.130750px;}
.y136d_c00001{bottom:170.307000px;}
.ye88_c00001{bottom:170.345633px;}
.y180c_c00001{bottom:170.372928px;}
.y1059_c00001{bottom:170.386060px;}
.yf77_c00001{bottom:170.426499px;}
.y11c9_c00001{bottom:170.500818px;}
.y4e2_c00001{bottom:170.513355px;}
.yda4_c00001{bottom:170.571010px;}
.y1613_c00001{bottom:170.579724px;}
.y170f_c00001{bottom:170.700600px;}
.y5c9_c00001{bottom:170.902968px;}
.y4e3_c00001{bottom:170.907893px;}
.y170e_c00001{bottom:170.972934px;}
.y144b_c00001{bottom:170.975031px;}
.y19de_c00001{bottom:171.123510px;}
.ye87_c00001{bottom:171.163757px;}
.y1614_c00001{bottom:171.173233px;}
.y70b_c00001{bottom:171.180000px;}
.y11ca_c00001{bottom:171.284130px;}
.y138d_c00001{bottom:171.387000px;}
.y6bc_c00001{bottom:171.398850px;}
.y1ac3_c00001{bottom:171.454591px;}
.y1ac2_c00001{bottom:171.455139px;}
.y1ac6_c00001{bottom:171.455164px;}
.y1ac8_c00001{bottom:171.455185px;}
.y1ac4_c00001{bottom:171.455262px;}
.y1ac5_c00001{bottom:171.455313px;}
.y1ac7_c00001{bottom:171.455505px;}
.y144c_c00001{bottom:171.565608px;}
.yf78_c00001{bottom:171.573507px;}
.y170d_c00001{bottom:171.686112px;}
.y6bd_c00001{bottom:171.713748px;}
.y1335_c00001{bottom:171.751500px;}
.y7e3_c00001{bottom:171.832896px;}
.y11cb_c00001{bottom:171.922572px;}
.y1b51_c00001{bottom:172.261500px;}
.y6be_c00001{bottom:172.387554px;}
.y11cc_c00001{bottom:172.407741px;}
.y1b52_c00001{bottom:172.623000px;}
.y5c8_c00001{bottom:172.698438px;}
.y1058_c00001{bottom:172.706103px;}
.y170c_c00001{bottom:172.714026px;}
.y6bf_c00001{bottom:172.928850px;}
.y7e4_c00001{bottom:173.112650px;}
.y5c7_c00001{bottom:173.151696px;}
.yf79_c00001{bottom:173.239959px;}
.yae7_c00001{bottom:173.331499px;}
.y4e4_c00001{bottom:173.393225px;}
.y7e5_c00001{bottom:173.534219px;}
.y1b0c_c00001{bottom:173.553000px;}
.yf7a_c00001{bottom:173.557524px;}
.y1b53_c00001{bottom:173.655000px;}
.y3de_c00001{bottom:173.676207px;}
.yae8_c00001{bottom:173.710341px;}
.y1a61_c00001{bottom:173.805000px;}
.y7e6_c00001{bottom:173.921355px;}
.y3dd_c00001{bottom:173.953763px;}
.y1b54_c00001{bottom:174.108000px;}
.y1615_c00001{bottom:174.287952px;}
.y3dc_c00001{bottom:174.311981px;}
.y5c6_c00001{bottom:174.392394px;}
.y70a_c00001{bottom:174.420000px;}
.y3db_c00001{bottom:174.515124px;}
.y1b55_c00001{bottom:174.655500px;}
.y96f_c00001{bottom:174.767397px;}
.y1616_c00001{bottom:174.835764px;}
.yae9_c00001{bottom:175.198084px;}
.y7e7_c00001{bottom:175.342755px;}
.y1b56_c00001{bottom:175.363500px;}
.y3da_c00001{bottom:175.470962px;}
.y1d4d_c00001{bottom:175.500000px;}
.y4e5_c00001{bottom:175.699481px;}
.yaea_c00001{bottom:175.699683px;}
.y1ba7_c00001{bottom:175.741500px;}
.y3d9_c00001{bottom:175.863837px;}
.y1d4e_c00001{bottom:176.031000px;}
.y1617_c00001{bottom:176.078141px;}
.y970_c00001{bottom:176.272755px;}
.y1d4f_c00001{bottom:176.371500px;}
.y3d8_c00001{bottom:176.673540px;}
.y7e8_c00001{bottom:176.824952px;}
.y1313_c00001{bottom:176.850000px;}
.y3d7_c00001{bottom:177.107193px;}
.yaeb_c00001{bottom:177.250284px;}
.y7e9_c00001{bottom:177.250535px;}
.y1d50_c00001{bottom:177.258000px;}
.y971_c00001{bottom:177.312034px;}
.y3d6_c00001{bottom:177.373548px;}
.y1c49_c00001{bottom:177.390000px;}
.y2d5_c00001{bottom:177.413619px;}
.y1dd_c00001{bottom:177.499932px;}
.y1db_c00001{bottom:177.500001px;}
.y1df_c00001{bottom:177.500085px;}
.y1e0_c00001{bottom:177.500236px;}
.y1dc_c00001{bottom:177.500341px;}
.y1de_c00001{bottom:177.500424px;}
.y1da_c00001{bottom:177.500430px;}
.y1e1_c00001{bottom:177.500967px;}
.y1d51_c00001{bottom:177.553500px;}
.y1c4a_c00001{bottom:177.670500px;}
.yaec_c00001{bottom:177.682587px;}
.y972_c00001{bottom:177.970830px;}
.y7ea_c00001{bottom:177.976737px;}
.ya32_c00001{bottom:178.087500px;}
.y1c4b_c00001{bottom:178.140000px;}
.y2d6_c00001{bottom:178.299693px;}
.y1c4c_c00001{bottom:178.431000px;}
.y1d52_c00001{bottom:178.480500px;}
.ybc_c00001{bottom:178.720500px;}
.y2d7_c00001{bottom:178.815354px;}
.y1c4d_c00001{bottom:178.818000px;}
.y1d53_c00001{bottom:179.092500px;}
.y1c4e_c00001{bottom:179.476500px;}
.yaed_c00001{bottom:179.654485px;}
.y973_c00001{bottom:179.912998px;}
.y125e_c00001{bottom:179.926500px;}
.yaee_c00001{bottom:180.004399px;}
.ycbe_c00001{bottom:180.085500px;}
.y1c4f_c00001{bottom:180.315000px;}
.y974_c00001{bottom:180.482127px;}
.y10d5_c00001{bottom:180.637500px;}
.yc97_c00001{bottom:180.658500px;}
.y2d8_c00001{bottom:180.735963px;}
.yaef_c00001{bottom:180.853998px;}
.y12bf_c00001{bottom:180.900000px;}
.y975_c00001{bottom:181.103230px;}
.yd95_c00001{bottom:181.131457px;}
.y12c0_c00001{bottom:181.260000px;}
.y12c1_c00001{bottom:181.384500px;}
.yaf0_c00001{bottom:181.402533px;}
.y1057_c00001{bottom:181.669572px;}
.y4d7_c00001{bottom:181.745766px;}
.y10d6_c00001{bottom:181.794000px;}
.yc34_c00001{bottom:181.801827px;}
.yc35_c00001{bottom:181.801848px;}
.yc39_c00001{bottom:181.801956px;}
.yc38_c00001{bottom:181.801995px;}
.yc36_c00001{bottom:181.802349px;}
.yc37_c00001{bottom:181.802430px;}
.yc33_c00001{bottom:181.802463px;}
.yc32_c00001{bottom:181.802562px;}
.yc31_c00001{bottom:181.803261px;}
.yd96_c00001{bottom:181.978813px;}
.y10d7_c00001{bottom:182.005500px;}
.ye86_c00001{bottom:182.054046px;}
.y1ce0_c00001{bottom:182.067000px;}
.y2d9_c00001{bottom:182.122602px;}
.y10d8_c00001{bottom:182.334000px;}
.y12c2_c00001{bottom:182.338500px;}
.y11bb_c00001{bottom:182.431092px;}
.y143b_c00001{bottom:182.506848px;}
.y8ae_c00001{bottom:182.536500px;}
.ye85_c00001{bottom:182.572620px;}
.y12c3_c00001{bottom:182.575500px;}
.ycdf_c00001{bottom:182.580000px;}
.yd97_c00001{bottom:182.712784px;}
.y19d1_c00001{bottom:182.724159px;}
.y976_c00001{bottom:182.737374px;}
.y120_c00001{bottom:182.791500px;}
.y2da_c00001{bottom:182.836959px;}
.y128c_c00001{bottom:182.914500px;}
.y1056_c00001{bottom:182.935575px;}
.y121_c00001{bottom:183.032087px;}
.y170b_c00001{bottom:183.047616px;}
.y8ad_c00001{bottom:183.141000px;}
.y143c_c00001{bottom:183.210477px;}
.yf6c_c00001{bottom:183.212826px;}
.y10d9_c00001{bottom:183.256500px;}
.y12c4_c00001{bottom:183.273000px;}
.y1803_c00001{bottom:183.331147px;}
.y35_c00001{bottom:183.357000px;}
.y1215_c00001{bottom:183.396000px;}
.y12c5_c00001{bottom:183.424500px;}
.y1539_c00001{bottom:183.489000px;}
.yd98_c00001{bottom:183.489477px;}
.y10da_c00001{bottom:183.553500px;}
.ye84_c00001{bottom:183.622994px;}
.y19d2_c00001{bottom:183.715644px;}
.y1538_c00001{bottom:183.850500px;}
.y122_c00001{bottom:183.899376px;}
.y12c6_c00001{bottom:184.006500px;}
.y143d_c00001{bottom:184.057935px;}
.y8ac_c00001{bottom:184.071000px;}
.y19d3_c00001{bottom:184.092009px;}
.y11bc_c00001{bottom:184.117449px;}
.ye83_c00001{bottom:184.118663px;}
.y1804_c00001{bottom:184.201870px;}
.y123c_c00001{bottom:184.261500px;}
.y143e_c00001{bottom:184.338645px;}
.yd99_c00001{bottom:184.480711px;}
.y1537_c00001{bottom:184.495500px;}
.y10db_c00001{bottom:184.501500px;}
.y8ab_c00001{bottom:184.521000px;}
.y18eb_c00001{bottom:184.545114px;}
.y1805_c00001{bottom:184.689660px;}
.y170a_c00001{bottom:184.703664px;}
.y18ea_c00001{bottom:184.732131px;}
.y143f_c00001{bottom:184.758093px;}
.y1107_c00001{bottom:184.803000px;}
.y1609_c00001{bottom:184.866282px;}
.yf6d_c00001{bottom:184.883283px;}
.y2db_c00001{bottom:184.884150px;}
.y11bd_c00001{bottom:184.902756px;}
.yd9a_c00001{bottom:184.922349px;}
.y123_c00001{bottom:184.923993px;}
.y160a_c00001{bottom:185.016069px;}
.y1806_c00001{bottom:185.057191px;}
.y4d8_c00001{bottom:185.057780px;}
.yb8e_c00001{bottom:185.083500px;}
.y18e9_c00001{bottom:185.174313px;}
.y8aa_c00001{bottom:185.211000px;}
.y1709_c00001{bottom:185.276418px;}
.y19d4_c00001{bottom:185.303472px;}
.yb8d_c00001{bottom:185.326500px;}
.y1055_c00001{bottom:185.349627px;}
.y18e8_c00001{bottom:185.383188px;}
.y1536_c00001{bottom:185.422500px;}
.y2dc_c00001{bottom:185.602893px;}
.yf6e_c00001{bottom:185.614875px;}
.y5c5_c00001{bottom:185.627136px;}
.y11be_c00001{bottom:185.685762px;}
.y4d9_c00001{bottom:185.710293px;}
.y124_c00001{bottom:185.737262px;}
.y1708_c00001{bottom:185.820222px;}
.y8a9_c00001{bottom:185.827500px;}
.y7dc_c00001{bottom:185.881683px;}
.y6b1_c00001{bottom:185.902662px;}
.y1440_c00001{bottom:185.914563px;}
.y5c4_c00001{bottom:185.957070px;}
.y1807_c00001{bottom:185.970933px;}
.y1abc_c00001{bottom:186.028189px;}
.y18e7_c00001{bottom:186.182028px;}
.y19d5_c00001{bottom:186.283341px;}
.y2dd_c00001{bottom:186.287262px;}
.yb8c_c00001{bottom:186.291000px;}
.y70c_c00001{bottom:186.300000px;}
.y1054_c00001{bottom:186.346449px;}
.y18e6_c00001{bottom:186.389229px;}
.y1535_c00001{bottom:186.391500px;}
.y160b_c00001{bottom:186.422043px;}
.ye82_c00001{bottom:186.461838px;}
.yb8b_c00001{bottom:186.576000px;}
.y8a8_c00001{bottom:186.579000px;}
.y1cbb_c00001{bottom:186.582000px;}
.y5c3_c00001{bottom:186.627660px;}
.y1441_c00001{bottom:186.649089px;}
.yd9b_c00001{bottom:186.679425px;}
.y1707_c00001{bottom:186.681096px;}
.y1cba_c00001{bottom:186.747000px;}
.yb8a_c00001{bottom:186.748500px;}
.y7dd_c00001{bottom:186.790394px;}
.y1534_c00001{bottom:186.838500px;}
.y6b2_c00001{bottom:186.876168px;}
.yf6f_c00001{bottom:186.887418px;}
.y1053_c00001{bottom:186.909844px;}
.y1442_c00001{bottom:186.942009px;}
.y136c_c00001{bottom:187.108500px;}
.y2de_c00001{bottom:187.109433px;}
.y1abd_c00001{bottom:187.121272px;}
.y18e5_c00001{bottom:187.180461px;}
.y6b3_c00001{bottom:187.211472px;}
.yb89_c00001{bottom:187.294500px;}
.y160c_c00001{bottom:187.349327px;}
.y19d6_c00001{bottom:187.357557px;}
.yf70_c00001{bottom:187.403448px;}
.y1abe_c00001{bottom:187.451832px;}
.y18e4_c00001{bottom:187.617597px;}
.y4da_c00001{bottom:187.758770px;}
.y1abf_c00001{bottom:187.833786px;}
.ye81_c00001{bottom:187.854135px;}
.yf71_c00001{bottom:187.855983px;}
.y11bf_c00001{bottom:187.886862px;}
.y138c_c00001{bottom:187.951500px;}
.y5c2_c00001{bottom:187.965048px;}
.yd9c_c00001{bottom:188.102944px;}
.y19d7_c00001{bottom:188.183547px;}
.yb88_c00001{bottom:188.191500px;}
.y1443_c00001{bottom:188.359548px;}
.y4db_c00001{bottom:188.401074px;}
.y11c0_c00001{bottom:188.434578px;}
.ye80_c00001{bottom:188.452388px;}
.y1ac0_c00001{bottom:188.470395px;}
.y1052_c00001{bottom:188.483400px;}
.y6b4_c00001{bottom:188.483928px;}
.y1334_c00001{bottom:188.611500px;}
.y19d8_c00001{bottom:188.694783px;}
.y6b5_c00001{bottom:188.850972px;}
.y1ac1_c00001{bottom:188.854903px;}
.y160d_c00001{bottom:188.971837px;}
.y11c1_c00001{bottom:188.990562px;}
.y1706_c00001{bottom:189.000222px;}
.y6b6_c00001{bottom:189.094194px;}
.yf72_c00001{bottom:189.335253px;}
.y5c1_c00001{bottom:189.430242px;}
.y7de_c00001{bottom:189.598464px;}
.y1051_c00001{bottom:189.707692px;}
.yf73_c00001{bottom:189.767079px;}
.y5c0_c00001{bottom:189.890544px;}
.y6b7_c00001{bottom:190.040268px;}
.y1705_c00001{bottom:190.276260px;}
.y7df_c00001{bottom:190.324169px;}
.y968_c00001{bottom:190.434961px;}
.y11c2_c00001{bottom:190.464696px;}
.y4dc_c00001{bottom:190.561989px;}
.y5bf_c00001{bottom:190.627494px;}
.y6b8_c00001{bottom:190.669782px;}
.y1c00_c00001{bottom:190.756500px;}
.y1a60_c00001{bottom:190.813500px;}
.y4dd_c00001{bottom:191.091855px;}
.y1b0b_c00001{bottom:191.260500px;}
.y3d5_c00001{bottom:191.576154px;}
.y969_c00001{bottom:191.630022px;}
.y160e_c00001{bottom:191.645949px;}
.y5be_c00001{bottom:191.677122px;}
.y3d4_c00001{bottom:191.865651px;}
.yae1_c00001{bottom:192.237898px;}
.y1ba6_c00001{bottom:192.328500px;}
.y7e0_c00001{bottom:192.478092px;}
.y7e1_c00001{bottom:192.941970px;}
.y1d47_c00001{bottom:193.051500px;}
.y3d3_c00001{bottom:193.061661px;}
.y160f_c00001{bottom:193.091762px;}
.y3d2_c00001{bottom:193.567311px;}
.y1d48_c00001{bottom:193.599000px;}
.y1d49_c00001{bottom:193.828500px;}
.y1312_c00001{bottom:193.833000px;}
.y3d1_c00001{bottom:193.849781px;}
.yba_c00001{bottom:193.867500px;}
.y2cf_c00001{bottom:193.906238px;}
.y96a_c00001{bottom:194.091625px;}
.yae2_c00001{bottom:194.222703px;}
.y1d2_c00001{bottom:194.376129px;}
.y1d1_c00001{bottom:194.376358px;}
.y1d0_c00001{bottom:194.376397px;}
.y1d3_c00001{bottom:194.376739px;}
.y1d4_c00001{bottom:194.376760px;}
.y1d5_c00001{bottom:194.376991px;}
.y1d6_c00001{bottom:194.377182px;}
.y1d9_c00001{bottom:194.377324px;}
.y1d7_c00001{bottom:194.377582px;}
.y1d8_c00001{bottom:194.377704px;}
.y7e2_c00001{bottom:194.895495px;}
.y3d0_c00001{bottom:194.923470px;}
.y1d4a_c00001{bottom:195.001500px;}
.yae3_c00001{bottom:195.481180px;}
.ya31_c00001{bottom:195.640500px;}
.y1d69_c00001{bottom:195.645000px;}
.yae4_c00001{bottom:195.799030px;}
.y1d4b_c00001{bottom:195.840000px;}
.y1d4c_c00001{bottom:196.105500px;}
.y96b_c00001{bottom:196.502442px;}
.yae5_c00001{bottom:196.916997px;}
.ycbd_c00001{bottom:197.167500px;}
.yae6_c00001{bottom:197.251684px;}
.yc30_c00001{bottom:197.382078px;}
.y96c_c00001{bottom:197.407684px;}
.y2d0_c00001{bottom:197.416520px;}
.yc2f_c00001{bottom:197.648442px;}
.ybb_c00001{bottom:197.713500px;}
.yc96_c00001{bottom:197.910000px;}
.y125d_c00001{bottom:197.937000px;}
.y12b8_c00001{bottom:198.180000px;}
.y96d_c00001{bottom:198.282075px;}
.y2d1_c00001{bottom:198.302273px;}
.yc2e_c00001{bottom:198.396603px;}
.y12b9_c00001{bottom:198.627000px;}
.yd8d_c00001{bottom:198.685735px;}
.yc2d_c00001{bottom:198.699351px;}
.y4d0_c00001{bottom:198.753048px;}
.y12ba_c00001{bottom:198.951000px;}
.yc2c_c00001{bottom:198.969432px;}
.y1c42_c00001{bottom:198.988500px;}
.ye7f_c00001{bottom:199.069250px;}
.y1cdf_c00001{bottom:199.201500px;}
.yd8e_c00001{bottom:199.255893px;}
.y2d2_c00001{bottom:199.304971px;}
.y1c43_c00001{bottom:199.398000px;}
.y12bb_c00001{bottom:199.434000px;}
.yc2b_c00001{bottom:199.453677px;}
.y96e_c00001{bottom:199.465494px;}
.ye7e_c00001{bottom:199.497890px;}
.y1432_c00001{bottom:199.523832px;}
.y1c44_c00001{bottom:199.617000px;}
.y12bc_c00001{bottom:199.663500px;}
.yc2a_c00001{bottom:199.671474px;}
.y128b_c00001{bottom:199.743000px;}
.yd8f_c00001{bottom:199.785279px;}
.y17fc_c00001{bottom:199.801500px;}
.yc29_c00001{bottom:199.839246px;}
.ycde_c00001{bottom:199.858500px;}
.y1433_c00001{bottom:199.874526px;}
.y19c8_c00001{bottom:200.005902px;}
.y17fd_c00001{bottom:200.032377px;}
.y34_c00001{bottom:200.076000px;}
.y1c45_c00001{bottom:200.100000px;}
.y1214_c00001{bottom:200.146500px;}
.y10d4_c00001{bottom:200.278500px;}
.y12bd_c00001{bottom:200.337000px;}
.yf65_c00001{bottom:200.498154px;}
.yc28_c00001{bottom:200.583984px;}
.y1704_c00001{bottom:200.600652px;}
.y19c9_c00001{bottom:200.691345px;}
.y1c46_c00001{bottom:200.880000px;}
.y11b3_c00001{bottom:201.059508px;}
.y1533_c00001{bottom:201.148500px;}
.y12be_c00001{bottom:201.160500px;}
.y1c47_c00001{bottom:201.172500px;}
.y1050_c00001{bottom:201.211582px;}
.y1434_c00001{bottom:201.224325px;}
.ye7d_c00001{bottom:201.237354px;}
.y17fe_c00001{bottom:201.239751px;}
.y123b_c00001{bottom:201.271500px;}
.y1532_c00001{bottom:201.429000px;}
.y2d3_c00001{bottom:201.504391px;}
.yd90_c00001{bottom:201.512556px;}
.y1435_c00001{bottom:201.672561px;}
.y1531_c00001{bottom:201.726000px;}
.y1c48_c00001{bottom:201.735000px;}
.y19ca_c00001{bottom:201.779688px;}
.yd91_c00001{bottom:201.781683px;}
.y11f_c00001{bottom:201.820500px;}
.y11b4_c00001{bottom:202.014417px;}
.yf66_c00001{bottom:202.130499px;}
.y19cb_c00001{bottom:202.137078px;}
.y1602_c00001{bottom:202.164081px;}
.yd92_c00001{bottom:202.168389px;}
.y1530_c00001{bottom:202.213500px;}
.y1703_c00001{bottom:202.298082px;}
.y5bd_c00001{bottom:202.354674px;}
.y1436_c00001{bottom:202.370067px;}
.yf67_c00001{bottom:202.481625px;}
.y11b5_c00001{bottom:202.548741px;}
.y17ff_c00001{bottom:202.647657px;}
.y1603_c00001{bottom:202.690080px;}
.y8a7_c00001{bottom:202.713000px;}
.y5bc_c00001{bottom:202.768476px;}
.y1702_c00001{bottom:202.892760px;}
.y152f_c00001{bottom:202.897500px;}
.y19cc_c00001{bottom:202.909479px;}
.y1106_c00001{bottom:202.920000px;}
.y4d1_c00001{bottom:202.948117px;}
.y1800_c00001{bottom:203.011772px;}
.y1437_c00001{bottom:203.249550px;}
.ye7c_c00001{bottom:203.269511px;}
.y152e_c00001{bottom:203.517000px;}
.y8a6_c00001{bottom:203.560500px;}
.y1ab7_c00001{bottom:203.580198px;}
.y19cd_c00001{bottom:203.607066px;}
.y1701_c00001{bottom:203.652708px;}
.y136b_c00001{bottom:203.665500px;}
.y7d4_c00001{bottom:203.691581px;}
.y4d2_c00001{bottom:203.692436px;}
.y1cb9_c00001{bottom:203.694000px;}
.y6aa_c00001{bottom:203.726328px;}
.yf68_c00001{bottom:203.745447px;}
.yd93_c00001{bottom:203.842020px;}
.y11b6_c00001{bottom:203.862342px;}
.y2d4_c00001{bottom:203.915091px;}
.y1438_c00001{bottom:203.932896px;}
.y18e0_c00001{bottom:204.076698px;}
.y18e1_c00001{bottom:204.076701px;}
.y18e2_c00001{bottom:204.076995px;}
.y18dd_c00001{bottom:204.077067px;}
.y18df_c00001{bottom:204.077169px;}
.y18e3_c00001{bottom:204.077196px;}
.y18de_c00001{bottom:204.077262px;}
.y18dc_c00001{bottom:204.077559px;}
.y104f_c00001{bottom:204.160126px;}
.y152d_c00001{bottom:204.172500px;}
.y1801_c00001{bottom:204.185715px;}
.yf69_c00001{bottom:204.199542px;}
.y1ab8_c00001{bottom:204.207259px;}
.y8a5_c00001{bottom:204.234000px;}
.y1439_c00001{bottom:204.245829px;}
.y19ce_c00001{bottom:204.382422px;}
.yd94_c00001{bottom:204.386144px;}
.y6ab_c00001{bottom:204.463836px;}
.y1604_c00001{bottom:204.513732px;}
.y1802_c00001{bottom:204.572703px;}
.y5bb_c00001{bottom:204.598740px;}
.yf6a_c00001{bottom:204.640611px;}
.y152c_c00001{bottom:204.660000px;}
.yb87_c00001{bottom:204.721500px;}
.y1700_c00001{bottom:204.749118px;}
.y11b7_c00001{bottom:204.829851px;}
.y6ac_c00001{bottom:204.868362px;}
.y1605_c00001{bottom:204.890550px;}
.y8a4_c00001{bottom:204.895500px;}
.y5ba_c00001{bottom:204.900168px;}
.y19cf_c00001{bottom:204.928779px;}
.y104e_c00001{bottom:204.949611px;}
.y7d5_c00001{bottom:205.031925px;}
.y138b_c00001{bottom:205.078500px;}
.y11b8_c00001{bottom:205.181463px;}
.ye7b_c00001{bottom:205.199978px;}
.y8a3_c00001{bottom:205.206000px;}
.y19d0_c00001{bottom:205.256352px;}
.y143a_c00001{bottom:205.387377px;}
.y1ab9_c00001{bottom:205.455747px;}
.y7d6_c00001{bottom:205.641855px;}
.y6ad_c00001{bottom:205.664886px;}
.y1606_c00001{bottom:205.722072px;}
.y5b9_c00001{bottom:205.787136px;}
.y6ae_c00001{bottom:205.935438px;}
.y4d3_c00001{bottom:206.002605px;}
.y16ff_c00001{bottom:206.087574px;}
.y1333_c00001{bottom:206.103000px;}
.y11b9_c00001{bottom:206.283504px;}
.y5b8_c00001{bottom:206.307012px;}
.y1aba_c00001{bottom:206.313976px;}
.y1bfb_c00001{bottom:206.553000px;}
.y6af_c00001{bottom:206.623908px;}
.y1abb_c00001{bottom:206.643094px;}
.y11ba_c00001{bottom:206.691801px;}
.y5b7_c00001{bottom:206.826510px;}
.yf6b_c00001{bottom:206.863620px;}
.y4d4_c00001{bottom:206.873948px;}
.y16fe_c00001{bottom:206.938536px;}
.y7d7_c00001{bottom:207.202218px;}
.y1bfc_c00001{bottom:207.297000px;}
.y1607_c00001{bottom:207.321261px;}
.yadb_c00001{bottom:207.370500px;}
.y1a5f_c00001{bottom:207.456000px;}
.y6b0_c00001{bottom:207.505968px;}
.y1bfd_c00001{bottom:207.603000px;}
.y709_c00001{bottom:207.625500px;}
.y960_c00001{bottom:207.707311px;}
.y104d_c00001{bottom:207.789993px;}
.y16fd_c00001{bottom:207.832800px;}
.y1b0a_c00001{bottom:207.900000px;}
.y5b6_c00001{bottom:208.143126px;}
.y7d8_c00001{bottom:208.236429px;}
.y1b50_c00001{bottom:208.272000px;}
.y1bfe_c00001{bottom:208.467000px;}
.y5b5_c00001{bottom:208.549524px;}
.y4d5_c00001{bottom:208.596422px;}
.yadc_c00001{bottom:208.734834px;}
.y3cf_c00001{bottom:208.767147px;}
.y104c_c00001{bottom:208.892578px;}
.y1bff_c00001{bottom:209.229000px;}
.y5b4_c00001{bottom:209.235078px;}
.y4d6_c00001{bottom:209.511507px;}
.y1ba5_c00001{bottom:209.614500px;}
.y3ce_c00001{bottom:209.628513px;}
.y104b_c00001{bottom:209.677212px;}
.y7d9_c00001{bottom:209.772935px;}
.y961_c00001{bottom:210.214468px;}
.y3cd_c00001{bottom:210.223329px;}
.y1608_c00001{bottom:210.445170px;}
.y708_c00001{bottom:210.450000px;}
.y3cc_c00001{bottom:210.563738px;}
.yadd_c00001{bottom:210.599200px;}
.ya30_c00001{bottom:210.813000px;}
.y1311_c00001{bottom:210.843000px;}
.y7da_c00001{bottom:210.854307px;}
.y2c8_c00001{bottom:210.886500px;}
.ya2f_c00001{bottom:211.122000px;}
.y3cb_c00001{bottom:211.395491px;}
.yb1_c00001{bottom:211.416000px;}
.ya2e_c00001{bottom:211.429500px;}
.y7db_c00001{bottom:211.494177px;}
.y2c9_c00001{bottom:211.566075px;}
.y962_c00001{bottom:211.641634px;}
.y3ca_c00001{bottom:211.660952px;}
.ya2d_c00001{bottom:211.780500px;}
.yb2_c00001{bottom:211.783500px;}
.y1ca_c00001{bottom:211.887183px;}
.y1cb_c00001{bottom:211.887184px;}
.y1cf_c00001{bottom:211.887210px;}
.y1c9_c00001{bottom:211.887511px;}
.y1cd_c00001{bottom:211.887637px;}
.y1cc_c00001{bottom:211.887715px;}
.y1ce_c00001{bottom:211.887949px;}
.yb3_c00001{bottom:212.089500px;}
.ya2c_c00001{bottom:212.109000px;}
.yb4_c00001{bottom:212.268000px;}
.yade_c00001{bottom:212.270731px;}
.y963_c00001{bottom:212.291952px;}
.yb5_c00001{bottom:212.601000px;}
.ya2b_c00001{bottom:212.838000px;}
.yadf_c00001{bottom:212.979912px;}
.ya2a_c00001{bottom:213.114000px;}
.yc27_c00001{bottom:213.135774px;}
.yb6_c00001{bottom:213.165000px;}
.yb7_c00001{bottom:213.384000px;}
.ya29_c00001{bottom:213.556500px;}
.yb8_c00001{bottom:213.954000px;}
.ycbc_c00001{bottom:214.057500px;}
.yc26_c00001{bottom:214.095747px;}
.yb9_c00001{bottom:214.177500px;}
.y2ca_c00001{bottom:214.258620px;}
.yc25_c00001{bottom:214.280148px;}
.ya28_c00001{bottom:214.381500px;}
.y4c8_c00001{bottom:214.411779px;}
.y125c_c00001{bottom:214.581000px;}
.y964_c00001{bottom:214.698385px;}
.yae0_c00001{bottom:214.723000px;}
.yc24_c00001{bottom:215.128002px;}
.y965_c00001{bottom:215.145150px;}
.yc95_c00001{bottom:215.242500px;}
.yd85_c00001{bottom:215.429503px;}
.yc23_c00001{bottom:215.494683px;}
.yd86_c00001{bottom:215.960232px;}
.y12b0_c00001{bottom:215.998500px;}
.y966_c00001{bottom:216.001770px;}
.y4c9_c00001{bottom:216.061209px;}
.yc22_c00001{bottom:216.277122px;}
.yd87_c00001{bottom:216.278208px;}
.y128a_c00001{bottom:216.393000px;}
.y17f5_c00001{bottom:216.543206px;}
.y12b1_c00001{bottom:216.565500px;}
.y2cb_c00001{bottom:216.603600px;}
.y12b2_c00001{bottom:216.696000px;}
.y4ca_c00001{bottom:216.704561px;}
.y967_c00001{bottom:216.709071px;}
.y19c2_c00001{bottom:216.748587px;}
.y142b_c00001{bottom:216.810192px;}
.y12b3_c00001{bottom:216.879000px;}
.y1cde_c00001{bottom:217.003500px;}
.ycdd_c00001{bottom:217.018500px;}
.yc21_c00001{bottom:217.055718px;}
.y17f6_c00001{bottom:217.131929px;}
.y12b4_c00001{bottom:217.203000px;}
.y104a_c00001{bottom:217.250887px;}
.y19c3_c00001{bottom:217.284873px;}
.y12b5_c00001{bottom:217.414500px;}
.y19c4_c00001{bottom:217.505859px;}
.y16fc_c00001{bottom:217.518234px;}
.yd88_c00001{bottom:217.608330px;}
.y12b6_c00001{bottom:217.654500px;}
.y1213_c00001{bottom:217.687500px;}
.y33_c00001{bottom:217.741500px;}
.y16fb_c00001{bottom:217.822212px;}
.y123a_c00001{bottom:217.867500px;}
.y19c5_c00001{bottom:217.964895px;}
.ye7a_c00001{bottom:218.005810px;}
.yd89_c00001{bottom:218.008897px;}
.y15fb_c00001{bottom:218.104056px;}
.y152b_c00001{bottom:218.104500px;}
.y16fa_c00001{bottom:218.149830px;}
.y17f7_c00001{bottom:218.179424px;}
.y142c_c00001{bottom:218.184867px;}
.y6a2_c00001{bottom:218.317746px;}
.y2cc_c00001{bottom:218.343873px;}
.y12b7_c00001{bottom:218.413500px;}
.y18db_c00001{bottom:218.428584px;}
.ye79_c00001{bottom:218.460646px;}
.y11e_c00001{bottom:218.466000px;}
.y10d3_c00001{bottom:218.493000px;}
.yf5e_c00001{bottom:218.592021px;}
.y11ab_c00001{bottom:218.615304px;}
.y152a_c00001{bottom:218.650500px;}
.y6a3_c00001{bottom:218.655876px;}
.y142d_c00001{bottom:218.704191px;}
.y17f8_c00001{bottom:218.837223px;}
.y1049_c00001{bottom:218.894989px;}
.y4cb_c00001{bottom:218.930492px;}
.y1529_c00001{bottom:218.950500px;}
.y8a2_c00001{bottom:219.024000px;}
.yd8a_c00001{bottom:219.024201px;}
.y2cd_c00001{bottom:219.106323px;}
.y19c6_c00001{bottom:219.196254px;}
.y142e_c00001{bottom:219.288918px;}
.y1528_c00001{bottom:219.391500px;}
.yf5f_c00001{bottom:219.397473px;}
.y8a1_c00001{bottom:219.564000px;}
.y18da_c00001{bottom:219.586803px;}
.y16f9_c00001{bottom:219.600006px;}
.y11ac_c00001{bottom:219.645498px;}
.y4cc_c00001{bottom:219.730914px;}
.y1048_c00001{bottom:219.745287px;}
.ye78_c00001{bottom:219.758513px;}
.y1105_c00001{bottom:219.778500px;}
.y2ce_c00001{bottom:219.905442px;}
.y16f8_c00001{bottom:220.059156px;}
.y6a4_c00001{bottom:220.117812px;}
.y17f9_c00001{bottom:220.124700px;}
.y11ad_c00001{bottom:220.231734px;}
.y1527_c00001{bottom:220.263000px;}
.yd8b_c00001{bottom:220.270194px;}
.ye77_c00001{bottom:220.307961px;}
.y142f_c00001{bottom:220.335036px;}
.yf60_c00001{bottom:220.337016px;}
.y15fc_c00001{bottom:220.375310px;}
.y8a0_c00001{bottom:220.575000px;}
.yd8c_c00001{bottom:220.585254px;}
.y5b3_c00001{bottom:220.588056px;}
.y11ae_c00001{bottom:220.612329px;}
.y17fa_c00001{bottom:220.612791px;}
.y136a_c00001{bottom:220.647000px;}
.y18d9_c00001{bottom:220.689195px;}
.y16f7_c00001{bottom:220.696854px;}
.y6a5_c00001{bottom:220.829622px;}
.y1430_c00001{bottom:220.849971px;}
.y1ab0_c00001{bottom:220.859649px;}
.y1c41_c00001{bottom:220.867500px;}
.y18d8_c00001{bottom:220.932318px;}
.y1526_c00001{bottom:220.963500px;}
.y15fd_c00001{bottom:221.089805px;}
.y1525_c00001{bottom:221.106000px;}
.yf61_c00001{bottom:221.116485px;}
.y11af_c00001{bottom:221.284032px;}
.y16f6_c00001{bottom:221.315238px;}
.y5b2_c00001{bottom:221.368908px;}
.y89f_c00001{bottom:221.427000px;}
.yf62_c00001{bottom:221.502141px;}
.y18d7_c00001{bottom:221.812503px;}
.yf63_c00001{bottom:221.833881px;}
.y1524_c00001{bottom:221.940000px;}
.y89e_c00001{bottom:221.946000px;}
.y1ab1_c00001{bottom:222.028375px;}
.y6a6_c00001{bottom:222.037062px;}
.y19c7_c00001{bottom:222.049191px;}
.yb86_c00001{bottom:222.067500px;}
.y1431_c00001{bottom:222.144516px;}
.y4cd_c00001{bottom:222.168344px;}
.y18d6_c00001{bottom:222.185487px;}
.ye76_c00001{bottom:222.288821px;}
.y138a_c00001{bottom:222.330000px;}
.y1047_c00001{bottom:222.475774px;}
.y17fb_c00001{bottom:222.494106px;}
.y7cc_c00001{bottom:222.582737px;}
.y1ab2_c00001{bottom:222.597988px;}
.y6a7_c00001{bottom:222.731700px;}
.y11b0_c00001{bottom:222.813375px;}
.ye75_c00001{bottom:222.830221px;}
.y1ab3_c00001{bottom:222.883096px;}
.y5b1_c00001{bottom:222.989064px;}
.y16f5_c00001{bottom:223.024032px;}
.y11b1_c00001{bottom:223.096485px;}
.yf64_c00001{bottom:223.231239px;}
.y15fe_c00001{bottom:223.250448px;}
.y1046_c00001{bottom:223.253725px;}
.ye74_c00001{bottom:223.300500px;}
.y6a8_c00001{bottom:223.320102px;}
.y1ab4_c00001{bottom:223.404976px;}
.y5b0_c00001{bottom:223.431408px;}
.y11b2_c00001{bottom:223.449690px;}
.y1332_c00001{bottom:223.533000px;}
.y1ab5_c00001{bottom:223.673706px;}
.y16f4_c00001{bottom:223.768812px;}
.y15ff_c00001{bottom:223.790943px;}
.y1ab6_c00001{bottom:223.967823px;}
.y7cd_c00001{bottom:224.002811px;}
.y958_c00001{bottom:224.171983px;}
.yad7_c00001{bottom:224.250079px;}
.y1a5e_c00001{bottom:224.361000px;}
.y1d68_c00001{bottom:224.395500px;}
.y7ce_c00001{bottom:224.467115px;}
.y6a9_c00001{bottom:224.572842px;}
.y1045_c00001{bottom:224.615133px;}
.y4ce_c00001{bottom:224.695379px;}
.y1b09_c00001{bottom:224.784000px;}
.y5af_c00001{bottom:224.808522px;}
.yad8_c00001{bottom:224.941120px;}
.y1bfa_c00001{bottom:225.163500px;}
.y959_c00001{bottom:225.166825px;}
.y1600_c00001{bottom:225.501288px;}
.y7cf_c00001{bottom:225.555921px;}
.y1b4f_c00001{bottom:225.580500px;}
.y3c9_c00001{bottom:225.610536px;}
.y4cf_c00001{bottom:225.677349px;}
.y17f2_c00001{bottom:225.723000px;}
.y1601_c00001{bottom:226.021335px;}
.y3c8_c00001{bottom:226.113794px;}
.y5ae_c00001{bottom:226.254294px;}
.y17f3_c00001{bottom:226.424379px;}
.y1310_c00001{bottom:226.530000px;}
.y1ba4_c00001{bottom:226.567500px;}
.y95a_c00001{bottom:226.630342px;}
.y1044_c00001{bottom:226.686091px;}
.y7d0_c00001{bottom:226.728210px;}
.y3c7_c00001{bottom:227.259984px;}
.y7d1_c00001{bottom:227.623638px;}
.ya27_c00001{bottom:228.037500px;}
.y95b_c00001{bottom:228.064938px;}
.y3c6_c00001{bottom:228.077153px;}
.y1d46_c00001{bottom:228.288000px;}
.ya26_c00001{bottom:228.298500px;}
.ya25_c00001{bottom:228.634500px;}
.y95c_c00001{bottom:228.756678px;}
.y3c5_c00001{bottom:228.886964px;}
.y2bf_c00001{bottom:228.973500px;}
.ya24_c00001{bottom:228.999000px;}
.y1c2_c00001{bottom:229.054297px;}
.y1c5_c00001{bottom:229.054531px;}
.y1c3_c00001{bottom:229.054779px;}
.y1c1_c00001{bottom:229.054816px;}
.y1c7_c00001{bottom:229.055034px;}
.y1c6_c00001{bottom:229.055122px;}
.y1c4_c00001{bottom:229.055151px;}
.y1c8_c00001{bottom:229.055505px;}
.y3c4_c00001{bottom:229.102985px;}
.y7d2_c00001{bottom:229.302107px;}
.y3c3_c00001{bottom:229.483757px;}
.y7d3_c00001{bottom:229.777614px;}
.yc20_c00001{bottom:229.896327px;}
.ya23_c00001{bottom:229.981500px;}
.yad9_c00001{bottom:230.001823px;}
.yb0_c00001{bottom:230.176500px;}
.y2c0_c00001{bottom:230.215207px;}
.ya22_c00001{bottom:230.344500px;}
.yc1f_c00001{bottom:230.471613px;}
.y2c1_c00001{bottom:230.542848px;}
.ya21_c00001{bottom:230.752500px;}
.ycbb_c00001{bottom:230.797500px;}
.yc1e_c00001{bottom:231.119529px;}
.ya20_c00001{bottom:231.123000px;}
.y95d_c00001{bottom:231.157932px;}
.yada_c00001{bottom:231.230829px;}
.y4bf_c00001{bottom:231.422715px;}
.y125b_c00001{bottom:231.534000px;}
.yc1d_c00001{bottom:231.708201px;}
.y95e_c00001{bottom:231.725422px;}
.y17f4_c00001{bottom:231.829055px;}
.yc94_c00001{bottom:231.930000px;}
.y2c2_c00001{bottom:232.096752px;}
.y95f_c00001{bottom:232.338237px;}
.yd7c_c00001{bottom:232.447350px;}
.y4c0_c00001{bottom:232.666065px;}
.yc1c_c00001{bottom:232.670973px;}
.y1425_c00001{bottom:232.749000px;}
.ye73_c00001{bottom:232.832679px;}
.yc1b_c00001{bottom:232.882206px;}
.y1289_c00001{bottom:233.313000px;}
.y1426_c00001{bottom:233.403264px;}
.yd7d_c00001{bottom:233.488207px;}
.y19bb_c00001{bottom:233.492379px;}
.y17eb_c00001{bottom:233.548317px;}
.y1ca8_c00001{bottom:233.550000px;}
.ye72_c00001{bottom:233.595792px;}
.y2c3_c00001{bottom:233.613877px;}
.y1cdd_c00001{bottom:233.638500px;}
.yc1a_c00001{bottom:233.825838px;}
.y19bc_c00001{bottom:234.003111px;}
.y1523_c00001{bottom:234.027000px;}
.yd7e_c00001{bottom:234.042132px;}
.ye71_c00001{bottom:234.103806px;}
.ycdc_c00001{bottom:234.118500px;}
.y18d5_c00001{bottom:234.178089px;}
.y2c4_c00001{bottom:234.278811px;}
.yc19_c00001{bottom:234.339129px;}
.y17ec_c00001{bottom:234.401768px;}
.y1043_c00001{bottom:234.405220px;}
.y1522_c00001{bottom:234.432000px;}
.y89d_c00001{bottom:234.489000px;}
.y12af_c00001{bottom:234.499500px;}
.y19bd_c00001{bottom:234.581859px;}
.y4c1_c00001{bottom:234.596225px;}
.y17ed_c00001{bottom:234.624021px;}
.yd7f_c00001{bottom:234.624190px;}
.y16f3_c00001{bottom:234.685704px;}
.y2c5_c00001{bottom:234.779256px;}
.y10d2_c00001{bottom:234.867000px;}
.y1212_c00001{bottom:234.939000px;}
.yf56_c00001{bottom:235.069728px;}
.y17ee_c00001{bottom:235.098666px;}
.y18d4_c00001{bottom:235.102380px;}
.y32_c00001{bottom:235.104000px;}
.yd80_c00001{bottom:235.194591px;}
.y19be_c00001{bottom:235.212684px;}
.y4c2_c00001{bottom:235.227248px;}
.y89c_c00001{bottom:235.242000px;}
.y11a2_c00001{bottom:235.361157px;}
.y89b_c00001{bottom:235.593000px;}
.y1427_c00001{bottom:235.667058px;}
.y1521_c00001{bottom:235.741500px;}
.ye70_c00001{bottom:235.796679px;}
.yf57_c00001{bottom:235.827753px;}
.y89a_c00001{bottom:235.849500px;}
.y11d_c00001{bottom:235.890000px;}
.y11a3_c00001{bottom:235.907652px;}
.y1d67_c00001{bottom:235.956000px;}
.y1239_c00001{bottom:236.016000px;}
.y1104_c00001{bottom:236.050500px;}
.y18d3_c00001{bottom:236.088987px;}
.y16f2_c00001{bottom:236.153682px;}
.y11a4_c00001{bottom:236.172483px;}
.yd81_c00001{bottom:236.342880px;}
.y1428_c00001{bottom:236.365821px;}
.y16f1_c00001{bottom:236.407722px;}
.y69a_c00001{bottom:236.413638px;}
.y17ef_c00001{bottom:236.441925px;}
.y18d2_c00001{bottom:236.463234px;}
.y1520_c00001{bottom:236.493000px;}
.yd82_c00001{bottom:236.521356px;}
.ye6f_c00001{bottom:236.546454px;}
.y19bf_c00001{bottom:236.657559px;}
.y15f4_c00001{bottom:236.738190px;}
.y17f0_c00001{bottom:236.746996px;}
.y151f_c00001{bottom:236.788500px;}
.yd83_c00001{bottom:236.793541px;}
.yf58_c00001{bottom:236.814885px;}
.y899_c00001{bottom:236.851500px;}
.y5ad_c00001{bottom:236.896044px;}
.y2c6_c00001{bottom:236.917953px;}
.y4c3_c00001{bottom:236.944839px;}
.y151e_c00001{bottom:237.022500px;}
.y1aa9_c00001{bottom:237.061500px;}
.ye6e_c00001{bottom:237.075138px;}
.y19c0_c00001{bottom:237.102651px;}
.yd84_c00001{bottom:237.118917px;}
.y151d_c00001{bottom:237.265500px;}
.y5ac_c00001{bottom:237.306000px;}
.y898_c00001{bottom:237.351000px;}
.yf59_c00001{bottom:237.405102px;}
.y18d1_c00001{bottom:237.406695px;}
.y151c_c00001{bottom:237.469500px;}
.y1042_c00001{bottom:237.500892px;}
.y1aaa_c00001{bottom:237.510877px;}
.y69b_c00001{bottom:237.541800px;}
.y1cb8_c00001{bottom:237.604500px;}
.y11a5_c00001{bottom:237.683250px;}
.y2c7_c00001{bottom:237.684658px;}
.y5ab_c00001{bottom:237.758544px;}
.y16f0_c00001{bottom:237.762390px;}
.y1429_c00001{bottom:237.833586px;}
.y18d0_c00001{bottom:237.892965px;}
.y69c_c00001{bottom:237.936642px;}
.y17f1_c00001{bottom:237.978351px;}
.y15f5_c00001{bottom:237.980328px;}
.y4c4_c00001{bottom:238.025973px;}
.y1ca7_c00001{bottom:238.033500px;}
.y16ef_c00001{bottom:238.129518px;}
.y151b_c00001{bottom:238.141500px;}
.y11a6_c00001{bottom:238.251417px;}
.y1aab_c00001{bottom:238.283058px;}
.y15f6_c00001{bottom:238.392549px;}
.y897_c00001{bottom:238.417500px;}
.y1369_c00001{bottom:238.471500px;}
.yf5a_c00001{bottom:238.504887px;}
.y7c5_c00001{bottom:238.511952px;}
.y69d_c00001{bottom:238.513470px;}
.y1041_c00001{bottom:238.523274px;}
.y1aac_c00001{bottom:238.563877px;}
.y11a7_c00001{bottom:238.586625px;}
.yb85_c00001{bottom:238.594500px;}
.ye6d_c00001{bottom:238.633071px;}
.y16ee_c00001{bottom:238.785564px;}
.y1aad_c00001{bottom:238.837716px;}
.y1389_c00001{bottom:239.098500px;}
.y19c1_c00001{bottom:239.136258px;}
.y18cf_c00001{bottom:239.199738px;}
.y5aa_c00001{bottom:239.261442px;}
.y69e_c00001{bottom:239.373102px;}
.y142a_c00001{bottom:239.381730px;}
.y4c5_c00001{bottom:239.498949px;}
.y5a9_c00001{bottom:239.557470px;}
.y15f7_c00001{bottom:239.608707px;}
.y11a8_c00001{bottom:239.666586px;}
.y1aae_c00001{bottom:239.701156px;}
.yf5b_c00001{bottom:239.713620px;}
.y69f_c00001{bottom:239.751432px;}
.y11a9_c00001{bottom:239.924493px;}
.ye6c_c00001{bottom:240.037500px;}
.y1aaf_c00001{bottom:240.090103px;}
.y16ed_c00001{bottom:240.105690px;}
.yf5c_c00001{bottom:240.149388px;}
.y1331_c00001{bottom:240.181500px;}
.y15f8_c00001{bottom:240.197106px;}
.y1c38_c00001{bottom:240.298500px;}
.y1040_c00001{bottom:240.390094px;}
.y1c39_c00001{bottom:240.450000px;}
.y11aa_c00001{bottom:240.520143px;}
.y6a0_c00001{bottom:240.637272px;}
.y7c6_c00001{bottom:240.791081px;}
.yf5d_c00001{bottom:240.809037px;}
.y1c3a_c00001{bottom:240.993000px;}
.y16ec_c00001{bottom:241.055034px;}
.y6a1_c00001{bottom:241.118574px;}
.y5a8_c00001{bottom:241.137318px;}
.y103f_c00001{bottom:241.155166px;}
.y1c3b_c00001{bottom:241.198500px;}
.y7c7_c00001{bottom:241.359792px;}
.y1c3c_c00001{bottom:241.557000px;}
.y3c2_c00001{bottom:241.736493px;}
.y1bf9_c00001{bottom:241.806000px;}
.y1c3d_c00001{bottom:241.860000px;}
.y3c1_c00001{bottom:241.974354px;}
.y1a5d_c00001{bottom:241.980000px;}
.yad0_c00001{bottom:242.072955px;}
.y15f9_c00001{bottom:242.095273px;}
.y4c6_c00001{bottom:242.258493px;}
.y1b4e_c00001{bottom:242.320500px;}
.y1b08_c00001{bottom:242.460000px;}
.y1c3e_c00001{bottom:242.629500px;}
.y5a7_c00001{bottom:242.728686px;}
.y3c0_c00001{bottom:242.746320px;}
.y1c3f_c00001{bottom:242.784000px;}
.y953_c00001{bottom:242.796403px;}
.y1c40_c00001{bottom:243.109500px;}
.y4c7_c00001{bottom:243.326567px;}
.y7c8_c00001{bottom:243.365900px;}
.yad1_c00001{bottom:243.569685px;}
.y103e_c00001{bottom:243.729585px;}
.y954_c00001{bottom:243.733569px;}
.y15fa_c00001{bottom:243.762535px;}
.y3bf_c00001{bottom:243.812733px;}
.y1ba3_c00001{bottom:243.838500px;}
.y3be_c00001{bottom:243.923844px;}
.y7c9_c00001{bottom:244.480800px;}
.y103d_c00001{bottom:244.492974px;}
.y3bd_c00001{bottom:244.604546px;}
.y2b8_c00001{bottom:244.612378px;}
.y130f_c00001{bottom:244.801500px;}
.ya1f_c00001{bottom:244.872000px;}
.y955_c00001{bottom:244.973647px;}
.yad2_c00001{bottom:245.002789px;}
.ya8_c00001{bottom:245.166000px;}
.yad3_c00001{bottom:245.482275px;}
.ya9_c00001{bottom:245.599500px;}
.ya1e_c00001{bottom:245.751000px;}
.yaa_c00001{bottom:245.793000px;}
.y1bf_c00001{bottom:245.809181px;}
.y1be_c00001{bottom:245.809218px;}
.y1c0_c00001{bottom:245.809701px;}
.y1bd_c00001{bottom:245.809808px;}
.y1bc_c00001{bottom:245.810486px;}
.y1bb_c00001{bottom:245.811225px;}
.y1ba_c00001{bottom:245.811264px;}
.y2b9_c00001{bottom:245.884960px;}
.ya1d_c00001{bottom:245.941500px;}
.y7ca_c00001{bottom:246.231092px;}
.yab_c00001{bottom:246.256500px;}
.yac_c00001{bottom:246.396000px;}
.ya1c_c00001{bottom:246.451500px;}
.y956_c00001{bottom:246.619104px;}
.y2ba_c00001{bottom:246.658279px;}
.yad4_c00001{bottom:246.847773px;}
.y7cb_c00001{bottom:246.854831px;}
.y2bb_c00001{bottom:246.952770px;}
.yad_c00001{bottom:247.038000px;}
.yad5_c00001{bottom:247.265895px;}
.ya1b_c00001{bottom:247.342500px;}
.yc18_c00001{bottom:247.500882px;}
.ya1a_c00001{bottom:247.593000px;}
.yae_c00001{bottom:247.641000px;}
.yc17_c00001{bottom:247.739106px;}
.yad6_c00001{bottom:247.765131px;}
.y125a_c00001{bottom:247.842000px;}
.y2bc_c00001{bottom:248.008496px;}
.ycba_c00001{bottom:248.070000px;}
.yaf_c00001{bottom:248.277000px;}
.y4b8_c00001{bottom:248.426852px;}
.y2bd_c00001{bottom:248.492768px;}
.yc16_c00001{bottom:248.605020px;}
.yc93_c00001{bottom:249.118500px;}
.yc15_c00001{bottom:249.140940px;}
.yd76_c00001{bottom:249.194851px;}
.ye6b_c00001{bottom:249.520059px;}
.y2be_c00001{bottom:249.687944px;}
.ye6a_c00001{bottom:249.909500px;}
.y957_c00001{bottom:249.953158px;}
.yc14_c00001{bottom:250.105638px;}
.y4b9_c00001{bottom:250.129295px;}
.yd77_c00001{bottom:250.222287px;}
.y1422_c00001{bottom:250.291650px;}
.y29_c00001{bottom:250.293000px;}
.y1288_c00001{bottom:250.383000px;}
.yc13_c00001{bottom:250.403376px;}
.ye69_c00001{bottom:250.527330px;}
.ycdb_c00001{bottom:250.621500px;}
.y151a_c00001{bottom:250.710000px;}
.yc12_c00001{bottom:250.714260px;}
.y2a_c00001{bottom:250.734000px;}
.y19b4_c00001{bottom:250.778268px;}
.y4ba_c00001{bottom:250.831563px;}
.y16eb_c00001{bottom:250.847928px;}
.yd78_c00001{bottom:250.920307px;}
.y12ae_c00001{bottom:250.942500px;}
.y1cdc_c00001{bottom:250.956000px;}
.y1423_c00001{bottom:250.993410px;}
.y1519_c00001{bottom:250.996500px;}
.yc11_c00001{bottom:251.080941px;}
.y17e4_c00001{bottom:251.098857px;}
.y2b_c00001{bottom:251.265000px;}
.y16ea_c00001{bottom:251.299350px;}
.y1518_c00001{bottom:251.304000px;}
.y1424_c00001{bottom:251.382360px;}
.y1211_c00001{bottom:251.410500px;}
.y2c_c00001{bottom:251.511000px;}
.yf4e_c00001{bottom:251.548119px;}
.y17e5_c00001{bottom:251.596524px;}
.y2d_c00001{bottom:251.769000px;}
.y119a_c00001{bottom:251.838693px;}
.y10d1_c00001{bottom:251.997000px;}
.y103c_c00001{bottom:252.052654px;}
.y1517_c00001{bottom:252.066000px;}
.y19b5_c00001{bottom:252.068895px;}
.y1238_c00001{bottom:252.153000px;}
.y5a6_c00001{bottom:252.170166px;}
.y119b_c00001{bottom:252.206607px;}
.y11c_c00001{bottom:252.388500px;}
.y1516_c00001{bottom:252.390000px;}
.yd79_c00001{bottom:252.422833px;}
.y2e_c00001{bottom:252.439500px;}
.ye68_c00001{bottom:252.445413px;}
.y16e9_c00001{bottom:252.459066px;}
.yf4f_c00001{bottom:252.608559px;}
.y18ce_c00001{bottom:252.627357px;}
.y1515_c00001{bottom:252.721500px;}
.y2f_c00001{bottom:252.777000px;}
.y17e6_c00001{bottom:252.861197px;}
.y896_c00001{bottom:252.868500px;}
.ye67_c00001{bottom:252.939371px;}
.y30_c00001{bottom:252.981000px;}
.y1514_c00001{bottom:253.009500px;}
.yf50_c00001{bottom:253.101774px;}
.y1103_c00001{bottom:253.111500px;}
.y15eb_c00001{bottom:253.214158px;}
.yd7a_c00001{bottom:253.318317px;}
.y895_c00001{bottom:253.338000px;}
.y19b6_c00001{bottom:253.343532px;}
.y4bb_c00001{bottom:253.418868px;}
.y18cd_c00001{bottom:253.472496px;}
.y16e8_c00001{bottom:253.493070px;}
.y31_c00001{bottom:253.590000px;}
.y17e7_c00001{bottom:253.633569px;}
.yf51_c00001{bottom:253.651797px;}
.y15ec_c00001{bottom:253.670032px;}
.y19b7_c00001{bottom:253.673169px;}
.y894_c00001{bottom:253.678500px;}
.y18cc_c00001{bottom:253.836882px;}
.y17e8_c00001{bottom:253.867107px;}
.y5a5_c00001{bottom:253.870704px;}
.ye66_c00001{bottom:253.871645px;}
.y119c_c00001{bottom:253.872639px;}
.y1513_c00001{bottom:254.017500px;}
.y16e7_c00001{bottom:254.028306px;}
.y1aa4_c00001{bottom:254.069748px;}
.y103b_c00001{bottom:254.095708px;}
.y119d_c00001{bottom:254.179566px;}
.y1368_c00001{bottom:254.308500px;}
.ye65_c00001{bottom:254.409377px;}
.y1512_c00001{bottom:254.463000px;}
.y1ca6_c00001{bottom:254.511000px;}
.y4bc_c00001{bottom:254.606433px;}
.y5a4_c00001{bottom:254.623008px;}
.y18cb_c00001{bottom:254.665491px;}
.y893_c00001{bottom:254.685000px;}
.y17e9_c00001{bottom:254.693164px;}
.y19b8_c00001{bottom:254.726700px;}
.y892_c00001{bottom:254.742000px;}
.yd7b_c00001{bottom:254.770920px;}
.yf52_c00001{bottom:254.827257px;}
.y1511_c00001{bottom:254.880000px;}
.y891_c00001{bottom:254.968500px;}
.ye64_c00001{bottom:255.010767px;}
.y694_c00001{bottom:255.048966px;}
.y18ca_c00001{bottom:255.065544px;}
.y890_c00001{bottom:255.117000px;}
.y18c9_c00001{bottom:255.247602px;}
.yb84_c00001{bottom:255.346500px;}
.y1aa5_c00001{bottom:255.365400px;}
.y695_c00001{bottom:255.366750px;}
.yf53_c00001{bottom:255.420867px;}
.y4bd_c00001{bottom:255.429487px;}
.y15ed_c00001{bottom:255.485007px;}
.y17ea_c00001{bottom:255.567382px;}
.y18c8_c00001{bottom:255.619506px;}
.y119e_c00001{bottom:255.637632px;}
.y1388_c00001{bottom:255.690000px;}
.y88f_c00001{bottom:255.697500px;}
.y19b9_c00001{bottom:255.744984px;}
.y5a3_c00001{bottom:255.745878px;}
.y16e6_c00001{bottom:255.806904px;}
.y1aa6_c00001{bottom:255.899796px;}
.yf54_c00001{bottom:255.903084px;}
.y15ee_c00001{bottom:255.910401px;}
.y19ba_c00001{bottom:256.009473px;}
.y119f_c00001{bottom:256.068972px;}
.y103a_c00001{bottom:256.077513px;}
.y1aa7_c00001{bottom:256.168848px;}
.ye63_c00001{bottom:256.185323px;}
.y696_c00001{bottom:256.206864px;}
.y18c7_c00001{bottom:256.210863px;}
.y5a2_c00001{bottom:256.214850px;}
.y16e5_c00001{bottom:256.584384px;}
.y1330_c00001{bottom:256.650000px;}
.y1039_c00001{bottom:256.841262px;}
.y7be_c00001{bottom:256.861580px;}
.y1aa8_c00001{bottom:256.977462px;}
.yf55_c00001{bottom:257.167608px;}
.y11a0_c00001{bottom:257.290557px;}
.y697_c00001{bottom:257.560218px;}
.y11a1_c00001{bottom:257.714973px;}
.y1038_c00001{bottom:257.929416px;}
.y5a1_c00001{bottom:257.938488px;}
.y15ef_c00001{bottom:257.955951px;}
.y16e4_c00001{bottom:258.075030px;}
.y94c_c00001{bottom:258.190107px;}
.y698_c00001{bottom:258.263256px;}
.yac8_c00001{bottom:258.281227px;}
.y1a5c_c00001{bottom:258.288000px;}
.y4be_c00001{bottom:258.319496px;}
.y7bf_c00001{bottom:258.420068px;}
.y15f0_c00001{bottom:258.535686px;}
.y1b07_c00001{bottom:258.781500px;}
.y1bf8_c00001{bottom:258.922500px;}
.y7c0_c00001{bottom:258.972972px;}
.y1037_c00001{bottom:258.976791px;}
.y699_c00001{bottom:259.048812px;}
.y3bc_c00001{bottom:259.215185px;}
.y1b4d_c00001{bottom:259.453500px;}
.yac9_c00001{bottom:259.731267px;}
.y3bb_c00001{bottom:259.751666px;}
.y1d41_c00001{bottom:260.002884px;}
.y5a0_c00001{bottom:260.019000px;}
.y15f1_c00001{bottom:260.141299px;}
.yaca_c00001{bottom:260.287761px;}
.y7c1_c00001{bottom:260.540075px;}
.y1036_c00001{bottom:260.584474px;}
.y15f2_c00001{bottom:260.606136px;}
.y1ba2_c00001{bottom:260.632500px;}
.y94d_c00001{bottom:260.754544px;}
.y3ba_c00001{bottom:260.781503px;}
.y15f3_c00001{bottom:260.849081px;}
.y130e_c00001{bottom:260.941500px;}
.y3b9_c00001{bottom:261.206576px;}
.y1035_c00001{bottom:261.225909px;}
.y7c2_c00001{bottom:261.328931px;}
.y1c30_c00001{bottom:261.360000px;}
.y1c31_c00001{bottom:261.670500px;}
.y94e_c00001{bottom:261.792289px;}
.y1d42_c00001{bottom:261.856188px;}
.ya2_c00001{bottom:261.906000px;}
.y1c32_c00001{bottom:261.916500px;}
.yacb_c00001{bottom:262.019538px;}
.y1d43_c00001{bottom:262.294692px;}
.yacc_c00001{bottom:262.392346px;}
.y94f_c00001{bottom:262.405900px;}
.y1d44_c00001{bottom:262.408536px;}
.y3b8_c00001{bottom:262.424963px;}
.ya3_c00001{bottom:262.479000px;}
.y1b7_c00001{bottom:262.690776px;}
.y1b2_c00001{bottom:262.691001px;}
.y1b8_c00001{bottom:262.691207px;}
.y1b3_c00001{bottom:262.691311px;}
.y1b6_c00001{bottom:262.691415px;}
.y1b5_c00001{bottom:262.691514px;}
.y1b9_c00001{bottom:262.691819px;}
.y1b4_c00001{bottom:262.692003px;}
.y2b0_c00001{bottom:262.703419px;}
.y1c33_c00001{bottom:262.707000px;}
.ya4_c00001{bottom:262.789500px;}
.y7c3_c00001{bottom:262.878446px;}
.y1c34_c00001{bottom:262.891500px;}
.yacd_c00001{bottom:262.892811px;}
.y2b1_c00001{bottom:262.924216px;}
.ya5_c00001{bottom:263.010000px;}
.y1d45_c00001{bottom:263.112276px;}
.y2b2_c00001{bottom:263.168091px;}
.y1c35_c00001{bottom:263.254500px;}
.ya19_c00001{bottom:263.533500px;}
.y7c4_c00001{bottom:263.763953px;}
.y1c36_c00001{bottom:263.785500px;}
.y2b3_c00001{bottom:263.928674px;}
.ya6_c00001{bottom:263.934000px;}
.y950_c00001{bottom:264.125310px;}
.yc10_c00001{bottom:264.130185px;}
.yace_c00001{bottom:264.247734px;}
.y1c37_c00001{bottom:264.352500px;}
.yc0f_c00001{bottom:264.414033px;}
.y1259_c00001{bottom:264.678000px;}
.y2b4_c00001{bottom:264.693787px;}
.yc0e_c00001{bottom:264.737454px;}
.ycb9_c00001{bottom:264.960000px;}
.ya7_c00001{bottom:265.090500px;}
.y2b5_c00001{bottom:265.239672px;}
.y4b0_c00001{bottom:265.432500px;}
.yacf_c00001{bottom:265.632694px;}
.yc0d_c00001{bottom:265.831659px;}
.yd6f_c00001{bottom:265.943183px;}
.y951_c00001{bottom:266.172747px;}
.yc92_c00001{bottom:266.401500px;}
.y4b1_c00001{bottom:266.627076px;}
.yd70_c00001{bottom:266.633142px;}
.y2b6_c00001{bottom:266.671662px;}
.yc0c_c00001{bottom:266.673714px;}
.ye62_c00001{bottom:266.762763px;}
.y952_c00001{bottom:266.853264px;}
.y2b7_c00001{bottom:267.021498px;}
.yc0b_c00001{bottom:267.073863px;}
.y1510_c00001{bottom:267.255000px;}
.ye61_c00001{bottom:267.265308px;}
.y17db_c00001{bottom:267.306000px;}
.y1287_c00001{bottom:267.394500px;}
.y150f_c00001{bottom:267.462000px;}
.y19ac_c00001{bottom:267.520707px;}
.y1cdb_c00001{bottom:267.522000px;}
.y1418_c00001{bottom:267.574500px;}
.y4b2_c00001{bottom:267.779648px;}
.y12ad_c00001{bottom:267.892500px;}
.yc0a_c00001{bottom:267.949767px;}
.ye60_c00001{bottom:267.982982px;}
.ycda_c00001{bottom:267.988500px;}
.y1419_c00001{bottom:268.087500px;}
.yd71_c00001{bottom:268.096598px;}
.y150e_c00001{bottom:268.108500px;}
.y1ce7_c00001{bottom:268.249500px;}
.yc09_c00001{bottom:268.362390px;}
.y150d_c00001{bottom:268.386000px;}
.y19ad_c00001{bottom:268.411515px;}
.y1237_c00001{bottom:268.519500px;}
.yf48_c00001{bottom:268.563015px;}
.y4b3_c00001{bottom:268.647351px;}
.y150c_c00001{bottom:268.660500px;}
.y1210_c00001{bottom:268.692000px;}
.y17dc_c00001{bottom:268.700631px;}
.ye5f_c00001{bottom:268.946520px;}
.y141a_c00001{bottom:268.962780px;}
.y19ae_c00001{bottom:268.973874px;}
.y17dd_c00001{bottom:269.075134px;}
.y28_c00001{bottom:269.181000px;}
.y88e_c00001{bottom:269.307000px;}
.yd72_c00001{bottom:269.389861px;}
.y1193_c00001{bottom:269.393169px;}
.y10d0_c00001{bottom:269.398500px;}
.y19af_c00001{bottom:269.414385px;}
.y1034_c00001{bottom:269.428630px;}
.ye5e_c00001{bottom:269.473770px;}
.y17de_c00001{bottom:269.510212px;}
.y88d_c00001{bottom:269.533500px;}
.y18c6_c00001{bottom:269.555712px;}
.y11b_c00001{bottom:269.571000px;}
.y150b_c00001{bottom:269.611500px;}
.y16e3_c00001{bottom:269.640972px;}
.y88c_c00001{bottom:269.734500px;}
.yd73_c00001{bottom:269.843382px;}
.y18c5_c00001{bottom:269.849406px;}
.y68b_c00001{bottom:269.910714px;}
.y16e2_c00001{bottom:269.915478px;}
.y1033_c00001{bottom:270.086031px;}
.ye5d_c00001{bottom:270.165767px;}
.y141b_c00001{bottom:270.166530px;}
.y15e4_c00001{bottom:270.228351px;}
.y150a_c00001{bottom:270.246000px;}
.y17df_c00001{bottom:270.260637px;}
.y1194_c00001{bottom:270.321216px;}
.y1509_c00001{bottom:270.400500px;}
.y141c_c00001{bottom:270.413490px;}
.y88b_c00001{bottom:270.528000px;}
.y68c_c00001{bottom:270.550356px;}
.y17e0_c00001{bottom:270.641157px;}
.y68d_c00001{bottom:270.738516px;}
.y1102_c00001{bottom:270.756000px;}
.ye5c_c00001{bottom:270.784785px;}
.y1cb7_c00001{bottom:270.804000px;}
.y1508_c00001{bottom:270.811500px;}
.y18c4_c00001{bottom:270.871611px;}
.y141d_c00001{bottom:270.885360px;}
.y88a_c00001{bottom:271.006500px;}
.yf49_c00001{bottom:271.042374px;}
.y19b0_c00001{bottom:271.078593px;}
.y18c3_c00001{bottom:271.103880px;}
.y141e_c00001{bottom:271.215570px;}
.yd74_c00001{bottom:271.240511px;}
.y18c2_c00001{bottom:271.270851px;}
.y16e1_c00001{bottom:271.312956px;}
.ye5b_c00001{bottom:271.466374px;}
.y1367_c00001{bottom:271.470000px;}
.y4b4_c00001{bottom:271.506179px;}
.y889_c00001{bottom:271.590000px;}
.y1195_c00001{bottom:271.610193px;}
.y19b1_c00001{bottom:271.691976px;}
.yd75_c00001{bottom:271.769511px;}
.y888_c00001{bottom:271.816500px;}
.y141f_c00001{bottom:271.830840px;}
.yf4a_c00001{bottom:271.839756px;}
.y1196_c00001{bottom:271.939071px;}
.y15e5_c00001{bottom:271.978169px;}
.y4b5_c00001{bottom:272.063123px;}
.y17e1_c00001{bottom:272.124240px;}
.y1420_c00001{bottom:272.217930px;}
.y1032_c00001{bottom:272.290495px;}
.y17e2_c00001{bottom:272.302246px;}
.y1197_c00001{bottom:272.311863px;}
.yf4b_c00001{bottom:272.322441px;}
.y15e6_c00001{bottom:272.366572px;}
.y18c1_c00001{bottom:272.414883px;}
.y16e0_c00001{bottom:272.415156px;}
.y887_c00001{bottom:272.434500px;}
.y68e_c00001{bottom:272.456448px;}
.yb83_c00001{bottom:272.496000px;}
.y16df_c00001{bottom:272.726574px;}
.y68f_c00001{bottom:272.761974px;}
.y1421_c00001{bottom:272.780940px;}
.y1a9e_c00001{bottom:272.806581px;}
.y1a9f_c00001{bottom:272.806977px;}
.y1aa0_c00001{bottom:272.807355px;}
.y1aa3_c00001{bottom:272.807706px;}
.y1aa1_c00001{bottom:272.807712px;}
.y1aa2_c00001{bottom:272.808270px;}
.y1387_c00001{bottom:272.821500px;}
.y19b2_c00001{bottom:272.901828px;}
.ye5a_c00001{bottom:273.020907px;}
.y690_c00001{bottom:273.085440px;}
.y1198_c00001{bottom:273.099897px;}
.y19b3_c00001{bottom:273.204996px;}
.y17e3_c00001{bottom:273.388744px;}
.y132f_c00001{bottom:273.390000px;}
.yf4c_c00001{bottom:273.560229px;}
.y7b7_c00001{bottom:273.595922px;}
.y15e7_c00001{bottom:273.659079px;}
.ye59_c00001{bottom:273.741861px;}
.y691_c00001{bottom:273.981462px;}
.y15e8_c00001{bottom:274.070394px;}
.y692_c00001{bottom:274.275792px;}
.y1b45_c00001{bottom:274.318500px;}
.y16de_c00001{bottom:274.318650px;}
.y1199_c00001{bottom:274.324221px;}
.y7b8_c00001{bottom:274.775574px;}
.y16dd_c00001{bottom:274.819500px;}
.y1b46_c00001{bottom:274.926000px;}
.y1031_c00001{bottom:275.197707px;}
.y944_c00001{bottom:275.198950px;}
.y1b47_c00001{bottom:275.206500px;}
.yf4d_c00001{bottom:275.216619px;}
.y1bf7_c00001{bottom:275.410500px;}
.y693_c00001{bottom:275.500836px;}
.y1a5b_c00001{bottom:275.511000px;}
.y1b48_c00001{bottom:275.548500px;}
.yabe_c00001{bottom:275.569035px;}
.y7b9_c00001{bottom:275.589042px;}
.y1b06_c00001{bottom:275.641500px;}
.y1b49_c00001{bottom:275.808000px;}
.y4b6_c00001{bottom:275.900723px;}
.y15e9_c00001{bottom:275.974066px;}
.y15ea_c00001{bottom:276.256936px;}
.y3b7_c00001{bottom:276.331109px;}
.y1b4a_c00001{bottom:276.559500px;}
.yabf_c00001{bottom:276.603829px;}
.y4b7_c00001{bottom:276.650100px;}
.y3b6_c00001{bottom:276.708530px;}
.y945_c00001{bottom:276.830844px;}
.y1030_c00001{bottom:276.843546px;}
.yac0_c00001{bottom:277.007554px;}
.y1b4b_c00001{bottom:277.054500px;}
.y1ba1_c00001{bottom:277.110000px;}
.y1d3a_c00001{bottom:277.285116px;}
.y1b4c_c00001{bottom:277.311000px;}
.y3b5_c00001{bottom:277.332329px;}
.yac1_c00001{bottom:277.444167px;}
.y59f_c00001{bottom:277.575000px;}
.y946_c00001{bottom:277.603017px;}
.y1d3b_c00001{bottom:277.742940px;}
.y7ba_c00001{bottom:277.825281px;}
.y1d3c_c00001{bottom:278.031096px;}
.y3b4_c00001{bottom:278.187804px;}
.y130d_c00001{bottom:278.370000px;}
.y3b3_c00001{bottom:278.434331px;}
.yac2_c00001{bottom:278.517874px;}
.y9a_c00001{bottom:278.646000px;}
.y3b2_c00001{bottom:278.805878px;}
.y1d3d_c00001{bottom:278.835732px;}
.y7bb_c00001{bottom:278.867969px;}
.yac3_c00001{bottom:278.889843px;}
.y3b1_c00001{bottom:279.165198px;}
.y9b_c00001{bottom:279.222000px;}
.y102f_c00001{bottom:279.312156px;}
.y9c_c00001{bottom:279.322500px;}
.y1d3e_c00001{bottom:279.378852px;}
.y2ab_c00001{bottom:279.446530px;}
.y7bc_c00001{bottom:279.499835px;}
.yac4_c00001{bottom:279.540336px;}
.y9d_c00001{bottom:279.663000px;}
.y2ac_c00001{bottom:279.677726px;}
.y1d66_c00001{bottom:279.892500px;}
.y947_c00001{bottom:280.026937px;}
.y1b1_c00001{bottom:280.103103px;}
.y1b0_c00001{bottom:280.103322px;}
.y1af_c00001{bottom:280.104061px;}
.y1ad_c00001{bottom:280.104589px;}
.y1ac_c00001{bottom:280.104688px;}
.y1ae_c00001{bottom:280.104801px;}
.y1aa_c00001{bottom:280.105086px;}
.y1ab_c00001{bottom:280.105087px;}
.y1d3f_c00001{bottom:280.237476px;}
.yac5_c00001{bottom:280.400337px;}
.ya18_c00001{bottom:280.425000px;}
.y1d40_c00001{bottom:280.525200px;}
.y9e_c00001{bottom:280.602000px;}
.yc08_c00001{bottom:280.608657px;}
.y948_c00001{bottom:280.743527px;}
.y2ad_c00001{bottom:280.925820px;}
.yc07_c00001{bottom:280.940802px;}
.y9f_c00001{bottom:280.984500px;}
.ya0_c00001{bottom:281.280000px;}
.yac6_c00001{bottom:281.377860px;}
.y949_c00001{bottom:281.404005px;}
.ya1_c00001{bottom:281.523000px;}
.y7bd_c00001{bottom:281.630531px;}
.yc06_c00001{bottom:281.930445px;}
.y1258_c00001{bottom:282.078000px;}
.y2ae_c00001{bottom:282.316306px;}
.yc05_c00001{bottom:282.464565px;}
.ycb8_c00001{bottom:282.571500px;}
.yc91_c00001{bottom:282.720000px;}
.yac7_c00001{bottom:282.905973px;}
.yd68_c00001{bottom:283.226421px;}
.y1c27_c00001{bottom:283.231500px;}
.yc04_c00001{bottom:283.405554px;}
.y1c28_c00001{bottom:283.420500px;}
.y12a6_c00001{bottom:283.501500px;}
.y140f_c00001{bottom:283.506000px;}
.y94a_c00001{bottom:283.649824px;}
.yc03_c00001{bottom:283.712847px;}
.yd69_c00001{bottom:283.722729px;}
.y17d2_c00001{bottom:283.774500px;}
.y2af_c00001{bottom:283.846905px;}
.y1c29_c00001{bottom:283.849500px;}
.y4a7_c00001{bottom:284.053500px;}
.ye58_c00001{bottom:284.081172px;}
.y1c2a_c00001{bottom:284.095500px;}
.y1cd9_c00001{bottom:284.163000px;}
.y12a7_c00001{bottom:284.205000px;}
.y16dc_c00001{bottom:284.281530px;}
.y1c2b_c00001{bottom:284.338500px;}
.y94b_c00001{bottom:284.417844px;}
.y1286_c00001{bottom:284.433000px;}
.y1410_c00001{bottom:284.462109px;}
.yd6a_c00001{bottom:284.465570px;}
.y1507_c00001{bottom:284.473500px;}
.y19a7_c00001{bottom:284.537712px;}
.y12a8_c00001{bottom:284.548500px;}
.y17d3_c00001{bottom:284.635866px;}
.y1c2c_c00001{bottom:284.784000px;}
.y1411_c00001{bottom:284.812239px;}
.yc02_c00001{bottom:284.835747px;}
.y16db_c00001{bottom:284.859828px;}
.y1506_c00001{bottom:284.950500px;}
.y102e_c00001{bottom:285.017449px;}
.ycd9_c00001{bottom:285.028500px;}
.y12a9_c00001{bottom:285.055500px;}
.y4a8_c00001{bottom:285.091197px;}
.y12aa_c00001{bottom:285.210000px;}
.yd6b_c00001{bottom:285.413648px;}
.y1c2d_c00001{bottom:285.493500px;}
.y1412_c00001{bottom:285.514281px;}
.y27_c00001{bottom:285.582000px;}
.y1c2e_c00001{bottom:285.690000px;}
.y19a8_c00001{bottom:285.721908px;}
.y1505_c00001{bottom:285.739500px;}
.ye57_c00001{bottom:285.811926px;}
.y120f_c00001{bottom:285.820500px;}
.y1c2f_c00001{bottom:285.876000px;}
.y12ab_c00001{bottom:285.898500px;}
.y4a9_c00001{bottom:285.901689px;}
.y17d4_c00001{bottom:286.007544px;}
.y1413_c00001{bottom:286.024593px;}
.yf41_c00001{bottom:286.112991px;}
.y1504_c00001{bottom:286.138500px;}
.y118c_c00001{bottom:286.138941px;}
.y19a9_c00001{bottom:286.199259px;}
.y16da_c00001{bottom:286.247634px;}
.y18c0_c00001{bottom:286.300146px;}
.y10cf_c00001{bottom:286.407000px;}
.y17d5_c00001{bottom:286.465221px;}
.ye56_c00001{bottom:286.479444px;}
.y886_c00001{bottom:286.483500px;}
.y1503_c00001{bottom:286.486500px;}
.y11a_c00001{bottom:286.528500px;}
.y12ac_c00001{bottom:286.632000px;}
.y1236_c00001{bottom:286.741500px;}
.y15de_c00001{bottom:286.978019px;}
.y17d6_c00001{bottom:287.067240px;}
.yd6c_c00001{bottom:287.069625px;}
.yf42_c00001{bottom:287.155260px;}
.y1502_c00001{bottom:287.175000px;}
.y682_c00001{bottom:287.199258px;}
.y1414_c00001{bottom:287.255427px;}
.y885_c00001{bottom:287.302500px;}
.y18bf_c00001{bottom:287.364600px;}
.y102d_c00001{bottom:287.423127px;}
.y16d9_c00001{bottom:287.533170px;}
.y1a99_c00001{bottom:287.553000px;}
.y17d7_c00001{bottom:287.560788px;}
.yf43_c00001{bottom:287.595747px;}
.y1501_c00001{bottom:287.598000px;}
.y1101_c00001{bottom:287.644500px;}
.y884_c00001{bottom:287.683500px;}
.y4aa_c00001{bottom:287.700255px;}
.y683_c00001{bottom:287.805174px;}
.y19aa_c00001{bottom:287.888478px;}
.y15df_c00001{bottom:287.926968px;}
.ye55_c00001{bottom:287.942648px;}
.y16d8_c00001{bottom:288.081858px;}
.y118d_c00001{bottom:288.134811px;}
.y1a9a_c00001{bottom:288.229662px;}
.yd6d_c00001{bottom:288.248404px;}
.y59e_c00001{bottom:288.315938px;}
.y1cb6_c00001{bottom:288.324000px;}
.y684_c00001{bottom:288.327786px;}
.y1415_c00001{bottom:288.363732px;}
.y18be_c00001{bottom:288.407730px;}
.y1500_c00001{bottom:288.469500px;}
.y883_c00001{bottom:288.525000px;}
.y1a9b_c00001{bottom:288.558543px;}
.y1416_c00001{bottom:288.657201px;}
.yd6e_c00001{bottom:288.685397px;}
.y59d_c00001{bottom:288.701625px;}
.yf44_c00001{bottom:288.818268px;}
.y16d7_c00001{bottom:288.822444px;}
.y1a9c_c00001{bottom:288.849687px;}
.y118e_c00001{bottom:288.894966px;}
.ye54_c00001{bottom:288.896951px;}
.y14ff_c00001{bottom:288.901500px;}
.y4ab_c00001{bottom:288.921093px;}
.y1417_c00001{bottom:288.958491px;}
.y17d8_c00001{bottom:288.980250px;}
.y1366_c00001{bottom:289.110000px;}
.y18bd_c00001{bottom:289.171923px;}
.yb82_c00001{bottom:289.327500px;}
.y882_c00001{bottom:289.404000px;}
.y18bc_c00001{bottom:289.414071px;}
.y17d9_c00001{bottom:289.431723px;}
.y19ab_c00001{bottom:289.504746px;}
.y59c_c00001{bottom:289.677075px;}
.y1386_c00001{bottom:289.710000px;}
.y881_c00001{bottom:289.716000px;}
.ye53_c00001{bottom:289.733130px;}
.y16d6_c00001{bottom:289.837206px;}
.y17da_c00001{bottom:289.934280px;}
.y685_c00001{bottom:289.982760px;}
.y118f_c00001{bottom:290.017614px;}
.y15e0_c00001{bottom:290.108236px;}
.y4ac_c00001{bottom:290.132139px;}
.y1a9d_c00001{bottom:290.157651px;}
.ye52_c00001{bottom:290.216762px;}
.y18bb_c00001{bottom:290.238483px;}
.yf45_c00001{bottom:290.259228px;}
.y7af_c00001{bottom:290.329125px;}
.y686_c00001{bottom:290.335152px;}
.y1190_c00001{bottom:290.449446px;}
.y132e_c00001{bottom:290.548500px;}
.y102c_c00001{bottom:290.779879px;}
.y15e1_c00001{bottom:290.792637px;}
.y59b_c00001{bottom:290.950537px;}
.y1191_c00001{bottom:291.011940px;}
.y4ad_c00001{bottom:291.027699px;}
.y687_c00001{bottom:291.276780px;}
.y16d5_c00001{bottom:291.314640px;}
.y1a5a_c00001{bottom:291.768000px;}
.yf46_c00001{bottom:291.836967px;}
.y1b40_c00001{bottom:291.868500px;}
.y1192_c00001{bottom:291.991131px;}
.y16d4_c00001{bottom:292.104324px;}
.y688_c00001{bottom:292.246242px;}
.y3b0_c00001{bottom:292.248147px;}
.y15e2_c00001{bottom:292.309138px;}
.yab5_c00001{bottom:292.313224px;}
.y7b0_c00001{bottom:292.359915px;}
.yf47_c00001{bottom:292.457589px;}
.y689_c00001{bottom:292.518168px;}
.y59a_c00001{bottom:292.534087px;}
.y3af_c00001{bottom:292.534559px;}
.y1b05_c00001{bottom:292.651500px;}
.y93d_c00001{bottom:292.741840px;}
.y1bf6_c00001{bottom:292.783500px;}
.y1b41_c00001{bottom:292.894500px;}
.y599_c00001{bottom:292.920113px;}
.y7b1_c00001{bottom:292.924250px;}
.y68a_c00001{bottom:293.012148px;}
.yab6_c00001{bottom:293.039499px;}
.y598_c00001{bottom:293.204887px;}
.y3ae_c00001{bottom:293.298444px;}
.y102b_c00001{bottom:293.312722px;}
.y3ad_c00001{bottom:293.460555px;}
.y4ae_c00001{bottom:293.747274px;}
.y93e_c00001{bottom:293.764420px;}
.y15e3_c00001{bottom:293.804414px;}
.y1b42_c00001{bottom:293.809500px;}
.y4af_c00001{bottom:294.028437px;}
.y1d34_c00001{bottom:294.030252px;}
.y597_c00001{bottom:294.031650px;}
.y3ac_c00001{bottom:294.162843px;}
.y1ba0_c00001{bottom:294.187500px;}
.yab7_c00001{bottom:294.462488px;}
.y7b2_c00001{bottom:294.475547px;}
.y1d35_c00001{bottom:294.633624px;}
.y1b43_c00001{bottom:294.702000px;}
.y130c_c00001{bottom:294.814500px;}
.y1d36_c00001{bottom:294.909672px;}
.y7b3_c00001{bottom:294.950228px;}
.y3ab_c00001{bottom:294.980342px;}
.y1a3_c00001{bottom:295.100610px;}
.y3aa_c00001{bottom:295.321241px;}
.y102a_c00001{bottom:295.416679px;}
.yab8_c00001{bottom:295.497195px;}
.y1b44_c00001{bottom:295.519500px;}
.y92_c00001{bottom:295.656000px;}
.y93f_c00001{bottom:295.692787px;}
.y1d37_c00001{bottom:295.824516px;}
.y1a4_c00001{bottom:295.881763px;}
.yab9_c00001{bottom:295.897266px;}
.y3a9_c00001{bottom:295.907624px;}
.y93_c00001{bottom:296.031000px;}
.y1029_c00001{bottom:296.045577px;}
.ya17_c00001{bottom:296.065500px;}
.y7b4_c00001{bottom:296.118492px;}
.y1a5_c00001{bottom:296.241474px;}
.ya16_c00001{bottom:296.287500px;}
.y7b5_c00001{bottom:296.390400px;}
.y94_c00001{bottom:296.403000px;}
.y940_c00001{bottom:296.462314px;}
.yaba_c00001{bottom:296.593502px;}
.y1a6_c00001{bottom:296.597070px;}
.y95_c00001{bottom:296.638500px;}
.y1d65_c00001{bottom:296.644500px;}
.y7b6_c00001{bottom:296.802093px;}
.ya15_c00001{bottom:296.842500px;}
.yabb_c00001{bottom:297.015954px;}
.y1a7_c00001{bottom:297.281821px;}
.y1d38_c00001{bottom:297.298020px;}
.y96_c00001{bottom:297.550500px;}
.y1d39_c00001{bottom:297.649812px;}
.ya14_c00001{bottom:297.663000px;}
.y97_c00001{bottom:297.835500px;}
.ya13_c00001{bottom:297.867000px;}
.y2a4_c00001{bottom:298.079284px;}
.y1a8_c00001{bottom:298.155807px;}
.y2a5_c00001{bottom:298.343170px;}
.yabc_c00001{bottom:298.384999px;}
.ya12_c00001{bottom:298.621500px;}
.y1a9_c00001{bottom:298.651188px;}
.y98_c00001{bottom:298.684500px;}
.y4a0_c00001{bottom:298.918370px;}
.yabd_c00001{bottom:298.939069px;}
.y941_c00001{bottom:298.939947px;}
.y1257_c00001{bottom:299.089500px;}
.y2a6_c00001{bottom:299.147721px;}
.y99_c00001{bottom:299.172000px;}
.ycb7_c00001{bottom:299.233500px;}
.yc01_c00001{bottom:299.380503px;}
.y2a7_c00001{bottom:299.553868px;}
.y4a1_c00001{bottom:300.072714px;}
.yc90_c00001{bottom:300.120000px;}
.yd60_c00001{bottom:300.249000px;}
.y2a8_c00001{bottom:300.397488px;}
.yc00_c00001{bottom:300.469428px;}
.y1406_c00001{bottom:300.702126px;}
.y17ca_c00001{bottom:300.781519px;}
.ybff_c00001{bottom:301.007265px;}
.ye51_c00001{bottom:301.204659px;}
.y17cb_c00001{bottom:301.363237px;}
.y2a9_c00001{bottom:301.364880px;}
.ybfe_c00001{bottom:301.364997px;}
.y199f_c00001{bottom:301.550664px;}
.y1285_c00001{bottom:301.593000px;}
.y942_c00001{bottom:301.702771px;}
.y1407_c00001{bottom:301.736886px;}
.y14fe_c00001{bottom:301.765500px;}
.y17cc_c00001{bottom:301.797102px;}
.y2aa_c00001{bottom:301.913859px;}
.ycd8_c00001{bottom:302.037000px;}
.yd61_c00001{bottom:302.046633px;}
.y14fd_c00001{bottom:302.061000px;}
.y1408_c00001{bottom:302.225118px;}
.y17cd_c00001{bottom:302.254686px;}
.y26_c00001{bottom:302.331000px;}
.y18ba_c00001{bottom:302.341521px;}
.y19a0_c00001{bottom:302.375316px;}
.yd62_c00001{bottom:302.407245px;}
.y880_c00001{bottom:302.490000px;}
.y14fc_c00001{bottom:302.497500px;}
.y120e_c00001{bottom:302.538000px;}
.yf3a_c00001{bottom:302.590092px;}
.ybfd_c00001{bottom:302.656128px;}
.y12a5_c00001{bottom:302.680500px;}
.y14fb_c00001{bottom:302.689500px;}
.y943_c00001{bottom:302.776395px;}
.y16d3_c00001{bottom:302.838294px;}
.yd63_c00001{bottom:302.859670px;}
.y1185_c00001{bottom:302.884407px;}
.ye50_c00001{bottom:302.905198px;}
.y87f_c00001{bottom:303.019500px;}
.y14fa_c00001{bottom:303.118500px;}
.y19a1_c00001{bottom:303.156285px;}
.y18b9_c00001{bottom:303.218952px;}
.yf3b_c00001{bottom:303.223056px;}
.y1028_c00001{bottom:303.338565px;}
.y17ce_c00001{bottom:303.342306px;}
.y87e_c00001{bottom:303.366000px;}
.y10ce_c00001{bottom:303.415500px;}
.y19a2_c00001{bottom:303.434040px;}
.y119_c00001{bottom:303.444000px;}
.y1409_c00001{bottom:303.488031px;}
.y1235_c00001{bottom:303.543000px;}
.y1186_c00001{bottom:303.588039px;}
.y18b8_c00001{bottom:303.659037px;}
.y155b_c00001{bottom:303.750000px;}
.y4a2_c00001{bottom:303.767292px;}
.y596_c00001{bottom:303.833737px;}
.y140a_c00001{bottom:303.835038px;}
.yd64_c00001{bottom:303.835761px;}
.y19a3_c00001{bottom:303.916032px;}
.y14f9_c00001{bottom:303.921000px;}
.y679_c00001{bottom:303.946824px;}
.y87d_c00001{bottom:304.117500px;}
.y1027_c00001{bottom:304.119639px;}
.y1187_c00001{bottom:304.127460px;}
.yd65_c00001{bottom:304.187342px;}
.y67a_c00001{bottom:304.253202px;}
.y15d6_c00001{bottom:304.268586px;}
.y140b_c00001{bottom:304.275642px;}
.y14f8_c00001{bottom:304.293000px;}
.y1100_c00001{bottom:304.329000px;}
.y595_c00001{bottom:304.413900px;}
.y18b7_c00001{bottom:304.423446px;}
.ye4f_c00001{bottom:304.565768px;}
.y14f7_c00001{bottom:304.581000px;}
.y16d2_c00001{bottom:304.676040px;}
.y4a3_c00001{bottom:304.734696px;}
.y17cf_c00001{bottom:304.739001px;}
.y87c_c00001{bottom:304.801500px;}
.y19a4_c00001{bottom:304.865757px;}
.y87b_c00001{bottom:305.019000px;}
.y16d1_c00001{bottom:305.039994px;}
.ye4e_c00001{bottom:305.140173px;}
.y14f6_c00001{bottom:305.200500px;}
.y594_c00001{bottom:305.388975px;}
.y140c_c00001{bottom:305.392746px;}
.y1026_c00001{bottom:305.401793px;}
.y1c26_c00001{bottom:305.446500px;}
.y1ca5_c00001{bottom:305.547000px;}
.y18b6_c00001{bottom:305.628981px;}
.y14f5_c00001{bottom:305.641500px;}
.y17d0_c00001{bottom:305.671729px;}
.y15d7_c00001{bottom:305.711446px;}
.yf3c_c00001{bottom:305.772777px;}
.y87a_c00001{bottom:305.914500px;}
.y16d0_c00001{bottom:305.943090px;}
.y18b5_c00001{bottom:305.948391px;}
.y1cb5_c00001{bottom:305.950500px;}
.y67b_c00001{bottom:305.965638px;}
.ye4d_c00001{bottom:306.012028px;}
.y140d_c00001{bottom:306.049782px;}
.y15d8_c00001{bottom:306.058959px;}
.y1025_c00001{bottom:306.150813px;}
.y18b4_c00001{bottom:306.218640px;}
.y17d1_c00001{bottom:306.223759px;}
.y1188_c00001{bottom:306.276504px;}
.ye4c_c00001{bottom:306.341591px;}
.y1365_c00001{bottom:306.360000px;}
.y67c_c00001{bottom:306.417696px;}
.yf3d_c00001{bottom:306.424287px;}
.y140e_c00001{bottom:306.448317px;}
.y1385_c00001{bottom:306.450000px;}
.y19a5_c00001{bottom:306.510720px;}
.y1a95_c00001{bottom:306.773738px;}
.y1a96_c00001{bottom:306.774075px;}
.y1a97_c00001{bottom:306.774308px;}
.y1a94_c00001{bottom:306.774383px;}
.y1a98_c00001{bottom:306.774750px;}
.y1a93_c00001{bottom:306.775005px;}
.yb81_c00001{bottom:306.813000px;}
.yd66_c00001{bottom:306.862772px;}
.y16cf_c00001{bottom:306.885930px;}
.y18b3_c00001{bottom:306.981255px;}
.y19a6_c00001{bottom:307.061445px;}
.yf3e_c00001{bottom:307.156164px;}
.y16ce_c00001{bottom:307.331430px;}
.y7a8_c00001{bottom:307.340181px;}
.y593_c00001{bottom:307.346700px;}
.yd67_c00001{bottom:307.377000px;}
.y15d9_c00001{bottom:307.425214px;}
.y1024_c00001{bottom:307.475082px;}
.ye4b_c00001{bottom:307.511543px;}
.y132d_c00001{bottom:307.530000px;}
.y67d_c00001{bottom:307.538652px;}
.y7a9_c00001{bottom:307.804355px;}
.yf3f_c00001{bottom:307.882521px;}
.y16cd_c00001{bottom:307.907670px;}
.y67e_c00001{bottom:307.908660px;}
.y4a4_c00001{bottom:307.985441px;}
.y15da_c00001{bottom:308.032127px;}
.y1189_c00001{bottom:308.052522px;}
.y155a_c00001{bottom:308.070000px;}
.y1bef_c00001{bottom:308.071500px;}
.y592_c00001{bottom:308.130450px;}
.y1bf0_c00001{bottom:308.265000px;}
.y1023_c00001{bottom:308.338655px;}
.y118a_c00001{bottom:308.506677px;}
.y67f_c00001{bottom:308.667642px;}
.y3a8_c00001{bottom:308.824449px;}
.y1b39_c00001{bottom:308.878500px;}
.y4a5_c00001{bottom:308.941751px;}
.y1bf1_c00001{bottom:309.022500px;}
.y1a59_c00001{bottom:309.051000px;}
.y3a7_c00001{bottom:309.088614px;}
.y16cc_c00001{bottom:309.124728px;}
.y591_c00001{bottom:309.136237px;}
.y680_c00001{bottom:309.199230px;}
.y1bf2_c00001{bottom:309.295500px;}
.y118b_c00001{bottom:309.388056px;}
.y29c_c00001{bottom:309.433868px;}
.y936_c00001{bottom:309.480724px;}
.y1b3a_c00001{bottom:309.505500px;}
.y3a6_c00001{bottom:309.563435px;}
.yf40_c00001{bottom:309.605451px;}
.y1bf3_c00001{bottom:309.619500px;}
.y1b04_c00001{bottom:309.718500px;}
.y1b3b_c00001{bottom:309.729000px;}
.y15db_c00001{bottom:309.738141px;}
.y681_c00001{bottom:309.762786px;}
.y4a6_c00001{bottom:309.814935px;}
.y7aa_c00001{bottom:309.848738px;}
.y1bf4_c00001{bottom:309.865500px;}
.y3a5_c00001{bottom:309.922890px;}
.y590_c00001{bottom:310.013962px;}
.y15dc_c00001{bottom:310.297323px;}
.y1b3c_c00001{bottom:310.311000px;}
.y7ab_c00001{bottom:310.674837px;}
.yaae_c00001{bottom:310.684830px;}
.y1022_c00001{bottom:310.718646px;}
.y1d2c_c00001{bottom:310.773000px;}
.y58f_c00001{bottom:310.777500px;}
.y1b3d_c00001{bottom:310.860000px;}
.y29d_c00001{bottom:310.944975px;}
.y1bf5_c00001{bottom:310.956000px;}
.y1b3e_c00001{bottom:311.103000px;}
.y15dd_c00001{bottom:311.142001px;}
.y1d2d_c00001{bottom:311.507448px;}
.y3a4_c00001{bottom:311.551311px;}
.y1b9f_c00001{bottom:311.553000px;}
.y130b_c00001{bottom:311.607000px;}
.y937_c00001{bottom:311.620690px;}
.y1d2e_c00001{bottom:311.775600px;}
.y1b3f_c00001{bottom:311.877000px;}
.y29e_c00001{bottom:311.905301px;}
.y1021_c00001{bottom:312.037965px;}
.yaaf_c00001{bottom:312.065055px;}
.y3a3_c00001{bottom:312.579171px;}
.yab0_c00001{bottom:312.674315px;}
.y3a2_c00001{bottom:312.765414px;}
.y1d2f_c00001{bottom:312.820968px;}
.y8b_c00001{bottom:312.933000px;}
.y7ac_c00001{bottom:312.972783px;}
.y1020_c00001{bottom:313.039877px;}
.y1d30_c00001{bottom:313.140672px;}
.y3a1_c00001{bottom:313.188524px;}
.y8c_c00001{bottom:313.321500px;}
.y1d31_c00001{bottom:313.429032px;}
.y1a0_c00001{bottom:313.530211px;}
.y1a1_c00001{bottom:313.530273px;}
.y1a2_c00001{bottom:313.530804px;}
.ya11_c00001{bottom:313.594500px;}
.y8d_c00001{bottom:313.678500px;}
.y29f_c00001{bottom:313.696320px;}
.y1d64_c00001{bottom:313.947000px;}
.y1d32_c00001{bottom:314.000376px;}
.yab1_c00001{bottom:314.242566px;}
.y938_c00001{bottom:314.269192px;}
.y8e_c00001{bottom:314.304000px;}
.y2a0_c00001{bottom:314.307924px;}
.y1d33_c00001{bottom:314.359032px;}
.y8f_c00001{bottom:314.638500px;}
.yab2_c00001{bottom:314.645201px;}
.y2a1_c00001{bottom:314.846311px;}
.y7ad_c00001{bottom:315.003560px;}
.y939_c00001{bottom:315.060508px;}
.ybfc_c00001{bottom:315.348342px;}
.y93a_c00001{bottom:315.542872px;}
.y90_c00001{bottom:315.562500px;}
.y1256_c00001{bottom:315.655500px;}
.y91_c00001{bottom:315.783000px;}
.y7ae_c00001{bottom:316.018928px;}
.y499_c00001{bottom:316.466286px;}
.yab3_c00001{bottom:316.536365px;}
.ybfb_c00001{bottom:316.652106px;}
.yd57_c00001{bottom:316.925703px;}
.yab4_c00001{bottom:316.983678px;}
.yc8f_c00001{bottom:317.010000px;}
.yd58_c00001{bottom:317.112006px;}
.y2a2_c00001{bottom:317.148403px;}
.ybfa_c00001{bottom:317.397543px;}
.y13fe_c00001{bottom:317.450346px;}
.ycb6_c00001{bottom:317.578500px;}
.ye4a_c00001{bottom:317.870596px;}
.y1cd8_c00001{bottom:317.914500px;}
.y2a3_c00001{bottom:317.958601px;}
.y93b_c00001{bottom:317.959768px;}
.ybf9_c00001{bottom:317.991108px;}
.y49a_c00001{bottom:318.014439px;}
.y17c3_c00001{bottom:318.064500px;}
.ye49_c00001{bottom:318.341310px;}
.y13ff_c00001{bottom:318.351165px;}
.y16cb_c00001{bottom:318.456222px;}
.y1998_c00001{bottom:318.565947px;}
.ybf8_c00001{bottom:318.622305px;}
.yd59_c00001{bottom:318.732006px;}
.y17c4_c00001{bottom:318.884565px;}
.ye48_c00001{bottom:318.949705px;}
.y1400_c00001{bottom:318.987249px;}
.y49b_c00001{bottom:319.002744px;}
.y12a4_c00001{bottom:319.041000px;}
.y16ca_c00001{bottom:319.046082px;}
.y93c_c00001{bottom:319.105360px;}
.ycd7_c00001{bottom:319.113000px;}
.y14f4_c00001{bottom:319.135500px;}
.yd5a_c00001{bottom:319.190670px;}
.y879_c00001{bottom:319.308000px;}
.ybf7_c00001{bottom:319.397079px;}
.y15cc_c00001{bottom:319.400054px;}
.y49c_c00001{bottom:319.549886px;}
.y120d_c00001{bottom:319.570500px;}
.y1284_c00001{bottom:319.593000px;}
.y1999_c00001{bottom:319.609593px;}
.y113_c00001{bottom:319.681500px;}
.y16c9_c00001{bottom:319.779282px;}
.y18b2_c00001{bottom:319.782048px;}
.y25_c00001{bottom:319.884000px;}
.y199a_c00001{bottom:319.992003px;}
.y17c5_c00001{bottom:320.014198px;}
.yf33_c00001{bottom:320.144901px;}
.yd5b_c00001{bottom:320.158062px;}
.y14f3_c00001{bottom:320.178000px;}
.y18b1_c00001{bottom:320.200335px;}
.y878_c00001{bottom:320.208000px;}
.y114_c00001{bottom:320.254500px;}
.y1401_c00001{bottom:320.270631px;}
.y199b_c00001{bottom:320.343636px;}
.y14f2_c00001{bottom:320.404500px;}
.y58e_c00001{bottom:320.439413px;}
.y17c6_c00001{bottom:320.511447px;}
.ye47_c00001{bottom:320.520382px;}
.y16c8_c00001{bottom:320.556342px;}
.yd5c_c00001{bottom:320.567352px;}
.y10cd_c00001{bottom:320.607000px;}
.y115_c00001{bottom:320.695500px;}
.y1234_c00001{bottom:320.703000px;}
.y117e_c00001{bottom:320.707260px;}
.y14f1_c00001{bottom:320.808000px;}
.yf34_c00001{bottom:320.812239px;}
.y101f_c00001{bottom:320.964620px;}
.y18b0_c00001{bottom:321.001095px;}
.y15cd_c00001{bottom:321.076054px;}
.y17c7_c00001{bottom:321.079248px;}
.yd5d_c00001{bottom:321.211461px;}
.y18af_c00001{bottom:321.258552px;}
.y877_c00001{bottom:321.343500px;}
.y1402_c00001{bottom:321.423489px;}
.y15ce_c00001{bottom:321.465588px;}
.y10ff_c00001{bottom:321.514500px;}
.y14f0_c00001{bottom:321.523500px;}
.y876_c00001{bottom:321.609000px;}
.y101e_c00001{bottom:321.680979px;}
.yd5e_c00001{bottom:321.691428px;}
.y117f_c00001{bottom:321.718731px;}
.ye46_c00001{bottom:321.720572px;}
.y670_c00001{bottom:321.773808px;}
.y116_c00001{bottom:321.801000px;}
.y875_c00001{bottom:321.834000px;}
.y58d_c00001{bottom:321.846862px;}
.y16c7_c00001{bottom:321.854148px;}
.y199c_c00001{bottom:321.872019px;}
.y49d_c00001{bottom:321.917880px;}
.y671_c00001{bottom:321.970212px;}
.y15cf_c00001{bottom:321.972710px;}
.y18ae_c00001{bottom:322.120692px;}
.y117_c00001{bottom:322.147500px;}
.yf35_c00001{bottom:322.191732px;}
.ye45_c00001{bottom:322.197075px;}
.y1364_c00001{bottom:322.230000px;}
.y14ef_c00001{bottom:322.381500px;}
.y874_c00001{bottom:322.426500px;}
.y16c6_c00001{bottom:322.451736px;}
.y672_c00001{bottom:322.462692px;}
.y101d_c00001{bottom:322.527663px;}
.y58c_c00001{bottom:322.552200px;}
.y17c8_c00001{bottom:322.644168px;}
.yd5f_c00001{bottom:322.664679px;}
.y1cb4_c00001{bottom:322.693500px;}
.y1403_c00001{bottom:322.713912px;}
.y49e_c00001{bottom:322.874273px;}
.y1180_c00001{bottom:322.909392px;}
.y118_c00001{bottom:322.935000px;}
.y18ad_c00001{bottom:322.965297px;}
.y873_c00001{bottom:322.972500px;}
.y17c9_c00001{bottom:323.072830px;}
.ye44_c00001{bottom:323.088895px;}
.y199d_c00001{bottom:323.204214px;}
.y673_c00001{bottom:323.223120px;}
.y16c5_c00001{bottom:323.268750px;}
.y1384_c00001{bottom:323.338500px;}
.yf36_c00001{bottom:323.409081px;}
.ye43_c00001{bottom:323.490442px;}
.y15d0_c00001{bottom:323.558244px;}
.y1404_c00001{bottom:323.563422px;}
.y1a92_c00001{bottom:323.602275px;}
.y1a91_c00001{bottom:323.602515px;}
.y1a90_c00001{bottom:323.603138px;}
.y1a8f_c00001{bottom:323.603633px;}
.y1a8e_c00001{bottom:323.603745px;}
.y1a8d_c00001{bottom:323.604112px;}
.y18ac_c00001{bottom:323.703987px;}
.y872_c00001{bottom:323.734500px;}
.yb80_c00001{bottom:323.766000px;}
.y199e_c00001{bottom:323.797713px;}
.y674_c00001{bottom:323.858670px;}
.y1405_c00001{bottom:324.027366px;}
.y58b_c00001{bottom:324.034050px;}
.y1181_c00001{bottom:324.106743px;}
.y18ab_c00001{bottom:324.173382px;}
.ye42_c00001{bottom:324.247212px;}
.y15d1_c00001{bottom:324.267781px;}
.y132c_c00001{bottom:324.270000px;}
.y675_c00001{bottom:324.297984px;}
.yf37_c00001{bottom:324.471501px;}
.y18aa_c00001{bottom:324.535188px;}
.y58a_c00001{bottom:324.621300px;}
.yf38_c00001{bottom:324.868632px;}
.y16c4_c00001{bottom:325.107084px;}
.y101c_c00001{bottom:325.144508px;}
.y7a2_c00001{bottom:325.148013px;}
.y1182_c00001{bottom:325.494030px;}
.y1b33_c00001{bottom:325.620000px;}
.yf39_c00001{bottom:325.701546px;}
.y676_c00001{bottom:325.736508px;}
.y16c3_c00001{bottom:325.868814px;}
.y15d2_c00001{bottom:325.921497px;}
.y7a3_c00001{bottom:326.041527px;}
.y1b34_c00001{bottom:326.052000px;}
.y49f_c00001{bottom:326.074235px;}
.y1183_c00001{bottom:326.080515px;}
.y1ca4_c00001{bottom:326.109000px;}
.y1a58_c00001{bottom:326.320500px;}
.y1c25_c00001{bottom:326.404500px;}
.y589_c00001{bottom:326.410500px;}
.y677_c00001{bottom:326.426052px;}
.y1184_c00001{bottom:326.482974px;}
.y15d3_c00001{bottom:326.495637px;}
.y101b_c00001{bottom:326.498256px;}
.y7a4_c00001{bottom:326.519156px;}
.y1b03_c00001{bottom:326.562000px;}
.y1bee_c00001{bottom:326.566500px;}
.y92c_c00001{bottom:326.753475px;}
.y3a0_c00001{bottom:326.787038px;}
.y1b35_c00001{bottom:326.796000px;}
.y588_c00001{bottom:326.977837px;}
.y39f_c00001{bottom:327.017724px;}
.yaa7_c00001{bottom:327.157913px;}
.y1b36_c00001{bottom:327.459000px;}
.y678_c00001{bottom:327.477840px;}
.y15d4_c00001{bottom:327.593127px;}
.yaa8_c00001{bottom:327.640475px;}
.y1b37_c00001{bottom:327.742500px;}
.y7a5_c00001{bottom:327.877368px;}
.y101a_c00001{bottom:327.884648px;}
.y92d_c00001{bottom:327.987703px;}
.y15d5_c00001{bottom:328.004435px;}
.y587_c00001{bottom:328.059000px;}
.y39e_c00001{bottom:328.060895px;}
.y1b38_c00001{bottom:328.159500px;}
.y39d_c00001{bottom:328.264758px;}
.y92e_c00001{bottom:328.715736px;}
.y1b9e_c00001{bottom:328.794000px;}
.yaa9_c00001{bottom:328.837190px;}
.y39c_c00001{bottom:328.918299px;}
.y39b_c00001{bottom:329.036034px;}
.y130a_c00001{bottom:329.059500px;}
.y7a6_c00001{bottom:329.535821px;}
.y84_c00001{bottom:329.673000px;}
.y39a_c00001{bottom:329.927173px;}
.y196_c00001{bottom:330.696117px;}
.y19d_c00001{bottom:330.696553px;}
.y197_c00001{bottom:330.696637px;}
.y19c_c00001{bottom:330.696903px;}
.y198_c00001{bottom:330.696919px;}
.y19a_c00001{bottom:330.697011px;}
.y199_c00001{bottom:330.697060px;}
.y19b_c00001{bottom:330.697122px;}
.y19e_c00001{bottom:330.697144px;}
.y19f_c00001{bottom:330.697215px;}
.yaaa_c00001{bottom:330.735464px;}
.y85_c00001{bottom:330.831000px;}
.y92f_c00001{bottom:330.926847px;}
.y86_c00001{bottom:331.242000px;}
.ya10_c00001{bottom:331.247121px;}
.y930_c00001{bottom:331.464246px;}
.y87_c00001{bottom:331.537500px;}
.y7a7_c00001{bottom:331.896711px;}
.y294_c00001{bottom:332.106000px;}
.y88_c00001{bottom:332.133000px;}
.y931_c00001{bottom:332.184498px;}
.ybf6_c00001{bottom:332.221092px;}
.y89_c00001{bottom:332.386500px;}
.y1255_c00001{bottom:332.544000px;}
.yaab_c00001{bottom:332.622927px;}
.yaac_c00001{bottom:333.097877px;}
.y295_c00001{bottom:333.110910px;}
.y932_c00001{bottom:333.153168px;}
.ybf5_c00001{bottom:333.257037px;}
.y8a_c00001{bottom:333.324000px;}
.yaad_c00001{bottom:333.433680px;}
.y490_c00001{bottom:333.474726px;}
.ybf4_c00001{bottom:333.549285px;}
.y296_c00001{bottom:333.823667px;}
.yc8e_c00001{bottom:333.870000px;}
.ye41_c00001{bottom:334.023078px;}
.ycb5_c00001{bottom:334.054500px;}
.y933_c00001{bottom:334.094847px;}
.yd50_c00001{bottom:334.210587px;}
.y13f6_c00001{bottom:334.465716px;}
.y491_c00001{bottom:334.579160px;}
.ybf3_c00001{bottom:334.723989px;}
.y297_c00001{bottom:334.772346px;}
.y17ba_c00001{bottom:335.076000px;}
.y298_c00001{bottom:335.277052px;}
.y1b_c00001{bottom:335.340000px;}
.yd51_c00001{bottom:335.372286px;}
.y492_c00001{bottom:335.441525px;}
.y13f7_c00001{bottom:335.528496px;}
.y14ee_c00001{bottom:335.565000px;}
.y299_c00001{bottom:335.612013px;}
.ybf2_c00001{bottom:335.630667px;}
.y1c_c00001{bottom:335.643000px;}
.ye40_c00001{bottom:335.693448px;}
.y17bb_c00001{bottom:335.717751px;}
.yd52_c00001{bottom:335.794002px;}
.y1991_c00001{bottom:335.850990px;}
.y1d_c00001{bottom:335.857500px;}
.y1283_c00001{bottom:335.883000px;}
.y14ed_c00001{bottom:335.890500px;}
.ycd6_c00001{bottom:335.907000px;}
.y13f8_c00001{bottom:336.000630px;}
.y1e_c00001{bottom:336.036000px;}
.y12a3_c00001{bottom:336.114000px;}
.y10b_c00001{bottom:336.153000px;}
.y10c7_c00001{bottom:336.156000px;}
.ye3f_c00001{bottom:336.250035px;}
.y16c2_c00001{bottom:336.290682px;}
.ybf1_c00001{bottom:336.408780px;}
.y14ec_c00001{bottom:336.484500px;}
.y1019_c00001{bottom:336.498898px;}
.y934_c00001{bottom:336.511743px;}
.y493_c00001{bottom:336.512676px;}
.yf2a_c00001{bottom:336.624807px;}
.y29a_c00001{bottom:336.667539px;}
.y1f_c00001{bottom:336.669000px;}
.y18a9_c00001{bottom:336.680970px;}
.y16c1_c00001{bottom:336.696156px;}
.y14eb_c00001{bottom:336.828000px;}
.y17bc_c00001{bottom:336.838431px;}
.y20_c00001{bottom:336.838500px;}
.y120c_c00001{bottom:336.891000px;}
.y29b_c00001{bottom:336.929796px;}
.y18a8_c00001{bottom:337.000272px;}
.y10c8_c00001{bottom:337.047000px;}
.y13f9_c00001{bottom:337.156023px;}
.y1992_c00001{bottom:337.214418px;}
.y935_c00001{bottom:337.230825px;}
.yf2b_c00001{bottom:337.235508px;}
.y21_c00001{bottom:337.281000px;}
.y1018_c00001{bottom:337.371426px;}
.y10c_c00001{bottom:337.429500px;}
.y1175_c00001{bottom:337.453830px;}
.y1993_c00001{bottom:337.467750px;}
.y1233_c00001{bottom:337.474500px;}
.y22_c00001{bottom:337.501500px;}
.y10c9_c00001{bottom:337.533000px;}
.yd53_c00001{bottom:337.543392px;}
.y17bd_c00001{bottom:337.553673px;}
.y13fa_c00001{bottom:337.590909px;}
.y16c0_c00001{bottom:337.765794px;}
.y10d_c00001{bottom:337.810500px;}
.ye3e_c00001{bottom:337.810983px;}
.y871_c00001{bottom:337.821000px;}
.y14ea_c00001{bottom:337.909500px;}
.y18a7_c00001{bottom:337.963983px;}
.y10ca_c00001{bottom:338.005500px;}
.y23_c00001{bottom:338.022000px;}
.yd54_c00001{bottom:338.186214px;}
.y1176_c00001{bottom:338.229777px;}
.y14e9_c00001{bottom:338.260500px;}
.y15c4_c00001{bottom:338.303154px;}
.y1a85_c00001{bottom:338.313000px;}
.y24_c00001{bottom:338.377500px;}
.y870_c00001{bottom:338.415000px;}
.y18a6_c00001{bottom:338.430651px;}
.y10e_c00001{bottom:338.458500px;}
.y16bf_c00001{bottom:338.502972px;}
.y17be_c00001{bottom:338.507835px;}
.y1177_c00001{bottom:338.592369px;}
.y14e8_c00001{bottom:338.608500px;}
.y86f_c00001{bottom:338.613000px;}
.y10f_c00001{bottom:338.722500px;}
.y1994_c00001{bottom:338.727543px;}
.yf2c_c00001{bottom:338.731353px;}
.y10cb_c00001{bottom:338.737500px;}
.y10fe_c00001{bottom:338.821500px;}
.y86e_c00001{bottom:338.850000px;}
.y1a86_c00001{bottom:338.854733px;}
.y15c5_c00001{bottom:338.923290px;}
.y1995_c00001{bottom:338.990793px;}
.y10cc_c00001{bottom:339.025500px;}
.y17bf_c00001{bottom:339.026958px;}
.y13fb_c00001{bottom:339.036915px;}
.y1a87_c00001{bottom:339.119220px;}
.y586_c00001{bottom:339.159712px;}
.y1017_c00001{bottom:339.169675px;}
.y110_c00001{bottom:339.217500px;}
.y18a5_c00001{bottom:339.246996px;}
.ye3d_c00001{bottom:339.251210px;}
.yd55_c00001{bottom:339.374844px;}
.y14e7_c00001{bottom:339.390000px;}
.y17c0_c00001{bottom:339.425499px;}
.yf2d_c00001{bottom:339.446613px;}
.y111_c00001{bottom:339.463500px;}
.y86d_c00001{bottom:339.517500px;}
.y669_c00001{bottom:339.598740px;}
.y16be_c00001{bottom:339.659790px;}
.y1cb3_c00001{bottom:339.769500px;}
.y1178_c00001{bottom:339.784482px;}
.y86c_c00001{bottom:339.841500px;}
.y1a88_c00001{bottom:339.907778px;}
.yf2e_c00001{bottom:339.917694px;}
.yd56_c00001{bottom:339.952830px;}
.y585_c00001{bottom:339.973163px;}
.y112_c00001{bottom:340.003500px;}
.y494_c00001{bottom:340.099844px;}
.y1179_c00001{bottom:340.106781px;}
.y13fc_c00001{bottom:340.144491px;}
.y1a89_c00001{bottom:340.281547px;}
.y1996_c00001{bottom:340.328346px;}
.y18a4_c00001{bottom:340.331127px;}
.y66a_c00001{bottom:340.366422px;}
.y16bd_c00001{bottom:340.396002px;}
.y86b_c00001{bottom:340.431000px;}
.y135b_c00001{bottom:340.471500px;}
.y1383_c00001{bottom:340.495500px;}
.y799_c00001{bottom:340.535462px;}
.yb7f_c00001{bottom:340.561500px;}
.yf2f_c00001{bottom:340.584906px;}
.y15c6_c00001{bottom:340.592473px;}
.y1a8a_c00001{bottom:340.593127px;}
.y18a3_c00001{bottom:340.637442px;}
.y66b_c00001{bottom:340.678728px;}
.y17c1_c00001{bottom:340.705998px;}
.y135c_c00001{bottom:340.782000px;}
.y13fd_c00001{bottom:340.804485px;}
.y79a_c00001{bottom:340.845831px;}
.y66c_c00001{bottom:341.009682px;}
.y86a_c00001{bottom:341.014500px;}
.yf30_c00001{bottom:341.027751px;}
.y584_c00001{bottom:341.191650px;}
.y1997_c00001{bottom:341.217753px;}
.ye3c_c00001{bottom:341.263170px;}
.y135d_c00001{bottom:341.274000px;}
.y18a2_c00001{bottom:341.277558px;}
.y132b_c00001{bottom:341.280000px;}
.y1016_c00001{bottom:341.303764px;}
.y15c7_c00001{bottom:341.344188px;}
.y17c2_c00001{bottom:341.377185px;}
.y495_c00001{bottom:341.456988px;}
.y1a8b_c00001{bottom:341.491530px;}
.y117a_c00001{bottom:341.533665px;}
.y135e_c00001{bottom:341.676000px;}
.y16bc_c00001{bottom:341.834034px;}
.y79b_c00001{bottom:341.851094px;}
.y1a8c_c00001{bottom:341.877382px;}
.y496_c00001{bottom:341.914358px;}
.y135f_c00001{bottom:341.935500px;}
.y117b_c00001{bottom:341.952774px;}
.y66d_c00001{bottom:342.035052px;}
.y1360_c00001{bottom:342.132000px;}
.y1015_c00001{bottom:342.135684px;}
.y79c_c00001{bottom:342.328776px;}
.y16bb_c00001{bottom:342.347094px;}
.y15c8_c00001{bottom:342.363139px;}
.y583_c00001{bottom:342.418762px;}
.yf31_c00001{bottom:342.418881px;}
.y1361_c00001{bottom:342.618000px;}
.y66e_c00001{bottom:342.623316px;}
.y1b2d_c00001{bottom:342.630000px;}
.y1362_c00001{bottom:342.787500px;}
.y1b2e_c00001{bottom:342.897000px;}
.y1a57_c00001{bottom:342.945000px;}
.y582_c00001{bottom:343.126612px;}
.y926_c00001{bottom:343.221648px;}
.y117c_c00001{bottom:343.273194px;}
.y1363_c00001{bottom:343.314000px;}
.y497_c00001{bottom:343.345032px;}
.y15c9_c00001{bottom:343.369513px;}
.y399_c00001{bottom:343.397489px;}
.y1b2f_c00001{bottom:343.465500px;}
.y1bed_c00001{bottom:343.545000px;}
.y79d_c00001{bottom:343.838331px;}
.y66f_c00001{bottom:343.843170px;}
.y117d_c00001{bottom:343.919898px;}
.y398_c00001{bottom:344.006571px;}
.yf32_c00001{bottom:344.008950px;}
.y1b02_c00001{bottom:344.101500px;}
.y498_c00001{bottom:344.118710px;}
.y1b30_c00001{bottom:344.130000px;}
.yaa0_c00001{bottom:344.174091px;}
.y15ca_c00001{bottom:344.205064px;}
.y397_c00001{bottom:344.369988px;}
.y1b31_c00001{bottom:344.491500px;}
.y1014_c00001{bottom:344.535214px;}
.y79e_c00001{bottom:344.717034px;}
.y581_c00001{bottom:344.722837px;}
.yaa1_c00001{bottom:345.023017px;}
.y1d93_c00001{bottom:345.060000px;}
.y580_c00001{bottom:345.067500px;}
.y1013_c00001{bottom:345.219147px;}
.y1b32_c00001{bottom:345.534000px;}
.y396_c00001{bottom:345.567598px;}
.y1b9d_c00001{bottom:345.606000px;}
.y927_c00001{bottom:345.663118px;}
.y15cb_c00001{bottom:345.702588px;}
.y1309_c00001{bottom:345.870000px;}
.yaa2_c00001{bottom:346.012265px;}
.y28a_c00001{bottom:346.127170px;}
.y395_c00001{bottom:346.198621px;}
.y1012_c00001{bottom:346.322659px;}
.y79f_c00001{bottom:346.439769px;}
.y394_c00001{bottom:346.524970px;}
.y928_c00001{bottom:346.608919px;}
.y7c_c00001{bottom:346.684500px;}
.y1ca3_c00001{bottom:346.767000px;}
.y704_c00001{bottom:346.781415px;}
.y705_c00001{bottom:346.781660px;}
.y702_c00001{bottom:346.781795px;}
.y703_c00001{bottom:346.781858px;}
.y706_c00001{bottom:346.782293px;}
.y701_c00001{bottom:346.782327px;}
.y707_c00001{bottom:346.782635px;}
.y393_c00001{bottom:346.816429px;}
.y1d2b_c00001{bottom:347.199000px;}
.y392_c00001{bottom:347.209276px;}
.y7d_c00001{bottom:347.211000px;}
.y1c24_c00001{bottom:347.232000px;}
.y7e_c00001{bottom:347.481000px;}
.y193_c00001{bottom:347.580328px;}
.y192_c00001{bottom:347.580466px;}
.y195_c00001{bottom:347.580640px;}
.y190_c00001{bottom:347.580665px;}
.y194_c00001{bottom:347.580679px;}
.y191_c00001{bottom:347.580786px;}
.y18f_c00001{bottom:347.580984px;}
.yaa3_c00001{bottom:347.620479px;}
.y7f_c00001{bottom:347.803500px;}
.y28b_c00001{bottom:347.817037px;}
.y1011_c00001{bottom:347.864391px;}
.y7a0_c00001{bottom:347.867093px;}
.y28c_c00001{bottom:348.069918px;}
.ya0d_c00001{bottom:348.159609px;}
.ya08_c00001{bottom:348.159837px;}
.ya0e_c00001{bottom:348.160032px;}
.ya07_c00001{bottom:348.160074px;}
.ya0c_c00001{bottom:348.160162px;}
.ya09_c00001{bottom:348.160246px;}
.ya0b_c00001{bottom:348.160249px;}
.ya0f_c00001{bottom:348.160258px;}
.ya0a_c00001{bottom:348.160293px;}
.y28d_c00001{bottom:348.527665px;}
.y80_c00001{bottom:348.529500px;}
.y7a1_c00001{bottom:348.677138px;}
.y81_c00001{bottom:348.817500px;}
.ybf0_c00001{bottom:349.161759px;}
.yaa4_c00001{bottom:349.382022px;}
.y28e_c00001{bottom:349.385571px;}
.y82_c00001{bottom:349.543500px;}
.y28f_c00001{bottom:349.622808px;}
.y929_c00001{bottom:349.821712px;}
.y290_c00001{bottom:349.829344px;}
.y489_c00001{bottom:349.951500px;}
.ybef_c00001{bottom:349.989558px;}
.y1254_c00001{bottom:349.996500px;}
.yaa5_c00001{bottom:350.109726px;}
.ycb4_c00001{bottom:350.164500px;}
.ybee_c00001{bottom:350.257224px;}
.y83_c00001{bottom:350.431500px;}
.y92a_c00001{bottom:350.524860px;}
.yd4a_c00001{bottom:350.956089px;}
.y291_c00001{bottom:351.047793px;}
.y13f0_c00001{bottom:351.212220px;}
.yaa6_c00001{bottom:351.240642px;}
.yc8d_c00001{bottom:351.298500px;}
.y292_c00001{bottom:351.301429px;}
.y293_c00001{bottom:351.725011px;}
.ybed_c00001{bottom:351.755007px;}
.y17b2_c00001{bottom:351.806145px;}
.y1cd7_c00001{bottom:352.180500px;}
.y16ba_c00001{bottom:352.288740px;}
.y198b_c00001{bottom:352.326960px;}
.yd4b_c00001{bottom:352.334631px;}
.y17b3_c00001{bottom:352.398055px;}
.ybec_c00001{bottom:352.401429px;}
.y13f1_c00001{bottom:352.436766px;}
.y14e6_c00001{bottom:352.558500px;}
.y16b9_c00001{bottom:352.733022px;}
.y14e5_c00001{bottom:352.782000px;}
.ycd5_c00001{bottom:352.900500px;}
.y14e4_c00001{bottom:352.918500px;}
.ye3b_c00001{bottom:352.949845px;}
.y12a2_c00001{bottom:353.002500px;}
.y14e3_c00001{bottom:353.085000px;}
.y1a_c00001{bottom:353.118000px;}
.ybeb_c00001{bottom:353.149848px;}
.y92b_c00001{bottom:353.347066px;}
.yf21_c00001{bottom:353.368251px;}
.y1282_c00001{bottom:353.374500px;}
.y198c_c00001{bottom:353.550435px;}
.y120b_c00001{bottom:353.619000px;}
.y16b8_c00001{bottom:353.735778px;}
.y17b4_c00001{bottom:353.847849px;}
.yd4c_c00001{bottom:353.873487px;}
.ye3a_c00001{bottom:353.939898px;}
.y14e2_c00001{bottom:353.953500px;}
.yf22_c00001{bottom:354.146538px;}
.y14e1_c00001{bottom:354.180000px;}
.y116e_c00001{bottom:354.200796px;}
.y15bc_c00001{bottom:354.242518px;}
.ye39_c00001{bottom:354.321828px;}
.y16b7_c00001{bottom:354.326016px;}
.y14e0_c00001{bottom:354.349500px;}
.y10a_c00001{bottom:354.357000px;}
.y1010_c00001{bottom:354.424072px;}
.y13f2_c00001{bottom:354.451362px;}
.y662_c00001{bottom:354.461658px;}
.y1232_c00001{bottom:354.492000px;}
.y116f_c00001{bottom:354.604167px;}
.y10c6_c00001{bottom:354.616500px;}
.y48a_c00001{bottom:354.658839px;}
.yf23_c00001{bottom:354.755928px;}
.y869_c00001{bottom:354.862500px;}
.y100f_c00001{bottom:354.905136px;}
.y17b5_c00001{bottom:354.925540px;}
.y15bd_c00001{bottom:354.948702px;}
.y18a1_c00001{bottom:354.949650px;}
.y663_c00001{bottom:354.966390px;}
.y48b_c00001{bottom:355.107114px;}
.yd4d_c00001{bottom:355.155570px;}
.y1170_c00001{bottom:355.189146px;}
.y14df_c00001{bottom:355.219500px;}
.y16b6_c00001{bottom:355.237890px;}
.y17b6_c00001{bottom:355.307853px;}
.y18a0_c00001{bottom:355.320813px;}
.y198d_c00001{bottom:355.439817px;}
.y1a7d_c00001{bottom:355.596000px;}
.y189f_c00001{bottom:355.657839px;}
.y868_c00001{bottom:355.717500px;}
.y13f3_c00001{bottom:355.721055px;}
.y16b5_c00001{bottom:355.821270px;}
.yd4e_c00001{bottom:355.870152px;}
.y10fd_c00001{bottom:356.103000px;}
.y1af3_c00001{bottom:356.130000px;}
.ye38_c00001{bottom:356.130163px;}
.y1a7e_c00001{bottom:356.209500px;}
.y135a_c00001{bottom:356.251500px;}
.y867_c00001{bottom:356.310000px;}
.y1171_c00001{bottom:356.373321px;}
.y14de_c00001{bottom:356.398500px;}
.y16b4_c00001{bottom:356.456376px;}
.y1a7f_c00001{bottom:356.509500px;}
.y100e_c00001{bottom:356.557919px;}
.y17b7_c00001{bottom:356.566371px;}
.ye37_c00001{bottom:356.626688px;}
.y866_c00001{bottom:356.635500px;}
.yf24_c00001{bottom:356.656341px;}
.y15be_c00001{bottom:356.703710px;}
.y16b3_c00001{bottom:356.784030px;}
.y198e_c00001{bottom:356.788791px;}
.y664_c00001{bottom:356.848974px;}
.y865_c00001{bottom:356.859000px;}
.y13f4_c00001{bottom:356.876760px;}
.y57f_c00001{bottom:356.878161px;}
.y1a80_c00001{bottom:356.946000px;}
.y15bf_c00001{bottom:357.078807px;}
.y48c_c00001{bottom:357.111774px;}
.y57e_c00001{bottom:357.189006px;}
.y665_c00001{bottom:357.221028px;}
.ye36_c00001{bottom:357.238860px;}
.yd4f_c00001{bottom:357.265722px;}
.y189e_c00001{bottom:357.271023px;}
.y100d_c00001{bottom:357.279737px;}
.y13f5_c00001{bottom:357.308760px;}
.y1a81_c00001{bottom:357.318000px;}
.y1382_c00001{bottom:357.384000px;}
.y864_c00001{bottom:357.424500px;}
.yf25_c00001{bottom:357.469608px;}
.y791_c00001{bottom:357.543582px;}
.y863_c00001{bottom:357.562500px;}
.y100c_c00001{bottom:357.731766px;}
.y16b2_c00001{bottom:357.754182px;}
.y862_c00001{bottom:357.754500px;}
.y17b8_c00001{bottom:357.755653px;}
.y189d_c00001{bottom:357.828180px;}
.y48d_c00001{bottom:357.858620px;}
.yf26_c00001{bottom:358.019079px;}
.y1172_c00001{bottom:358.050657px;}
.yb7e_c00001{bottom:358.113000px;}
.y1a82_c00001{bottom:358.182000px;}
.y57d_c00001{bottom:358.182503px;}
.y198f_c00001{bottom:358.220364px;}
.ye35_c00001{bottom:358.277465px;}
.y16b1_c00001{bottom:358.344210px;}
.y17b9_c00001{bottom:358.445599px;}
.y15c0_c00001{bottom:358.448917px;}
.y1a83_c00001{bottom:358.531500px;}
.y132a_c00001{bottom:358.578000px;}
.y1990_c00001{bottom:358.660089px;}
.y57c_c00001{bottom:358.667055px;}
.y189c_c00001{bottom:358.830564px;}
.y666_c00001{bottom:358.891686px;}
.yf27_c00001{bottom:358.960257px;}
.y1a84_c00001{bottom:358.977000px;}
.y792_c00001{bottom:359.018610px;}
.y1be7_c00001{bottom:359.103000px;}
.y1173_c00001{bottom:359.275944px;}
.y100b_c00001{bottom:359.310254px;}
.y1a56_c00001{bottom:359.338500px;}
.y16b0_c00001{bottom:359.365152px;}
.y793_c00001{bottom:359.487183px;}
.yf28_c00001{bottom:359.595093px;}
.y1b25_c00001{bottom:359.641500px;}
.y920_c00001{bottom:359.689596px;}
.y57b_c00001{bottom:359.760153px;}
.y16af_c00001{bottom:359.905302px;}
.y1b26_c00001{bottom:360.000000px;}
.y1be8_c00001{bottom:360.064500px;}
.y484_c00001{bottom:360.190500px;}
.yf29_c00001{bottom:360.245859px;}
.y100a_c00001{bottom:360.264164px;}
.y15c1_c00001{bottom:360.300272px;}
.y57a_c00001{bottom:360.392538px;}
.y1be9_c00001{bottom:360.400500px;}
.y48e_c00001{bottom:360.448230px;}
.y1b01_c00001{bottom:360.450000px;}
.y1174_c00001{bottom:360.450504px;}
.y1b27_c00001{bottom:360.583500px;}
.y579_c00001{bottom:360.661638px;}
.y281_c00001{bottom:360.719668px;}
.y391_c00001{bottom:360.794328px;}
.y1b28_c00001{bottom:360.882000px;}
.y794_c00001{bottom:360.911850px;}
.ya98_c00001{bottom:360.918608px;}
.y667_c00001{bottom:360.931626px;}
.y15c2_c00001{bottom:361.066730px;}
.y1bea_c00001{bottom:361.327500px;}
.y48f_c00001{bottom:361.366065px;}
.y668_c00001{bottom:361.397358px;}
.y921_c00001{bottom:361.593429px;}
.y15c3_c00001{bottom:361.622697px;}
.ya99_c00001{bottom:361.780957px;}
.y1b29_c00001{bottom:361.792500px;}
.y390_c00001{bottom:361.945405px;}
.y1b2a_c00001{bottom:361.996500px;}
.y485_c00001{bottom:362.023278px;}
.y578_c00001{bottom:362.076000px;}
.y282_c00001{bottom:362.083599px;}
.y1b9c_c00001{bottom:362.343000px;}
.ya9a_c00001{bottom:362.360236px;}
.y1308_c00001{bottom:362.463000px;}
.y38f_c00001{bottom:362.500314px;}
.y922_c00001{bottom:362.569425px;}
.y1beb_c00001{bottom:362.592000px;}
.y38e_c00001{bottom:362.819523px;}
.y795_c00001{bottom:362.840909px;}
.y1009_c00001{bottom:362.892155px;}
.y1b2b_c00001{bottom:362.953500px;}
.y486_c00001{bottom:363.066006px;}
.y1bec_c00001{bottom:363.076500px;}
.y1b2c_c00001{bottom:363.156000px;}
.y38d_c00001{bottom:363.251377px;}
.ya9b_c00001{bottom:363.274615px;}
.y1008_c00001{bottom:363.405434px;}
.y923_c00001{bottom:363.602296px;}
.y186_c00001{bottom:363.683340px;}
.y796_c00001{bottom:363.786246px;}
.y283_c00001{bottom:363.945583px;}
.y74_c00001{bottom:363.963000px;}
.y38c_c00001{bottom:364.219828px;}
.y187_c00001{bottom:364.250328px;}
.y797_c00001{bottom:364.284800px;}
.y487_c00001{bottom:364.519353px;}
.y75_c00001{bottom:364.563000px;}
.y1007_c00001{bottom:364.589690px;}
.ya9c_c00001{bottom:364.639572px;}
.y188_c00001{bottom:364.639618px;}
.y189_c00001{bottom:364.784706px;}
.y284_c00001{bottom:364.815984px;}
.y76_c00001{bottom:364.818000px;}
.y798_c00001{bottom:364.829513px;}
.ya06_c00001{bottom:364.901548px;}
.ya03_c00001{bottom:364.901676px;}
.ya05_c00001{bottom:364.901982px;}
.ya04_c00001{bottom:364.902309px;}
.ya02_c00001{bottom:364.902349px;}
.ya01_c00001{bottom:364.902720px;}
.ya00_c00001{bottom:364.903243px;}
.y9ff_c00001{bottom:364.903647px;}
.y488_c00001{bottom:365.003250px;}
.ya9d_c00001{bottom:365.005428px;}
.y18a_c00001{bottom:365.049076px;}
.y77_c00001{bottom:365.088000px;}
.ya9e_c00001{bottom:365.502227px;}
.y18b_c00001{bottom:365.577856px;}
.y285_c00001{bottom:365.649373px;}
.y18c_c00001{bottom:365.791635px;}
.y78_c00001{bottom:365.839500px;}
.y79_c00001{bottom:366.400500px;}
.y924_c00001{bottom:366.426478px;}
.y18d_c00001{bottom:366.518961px;}
.ybea_c00001{bottom:366.538569px;}
.y47e_c00001{bottom:366.685500px;}
.y7a_c00001{bottom:366.702000px;}
.y18e_c00001{bottom:366.750838px;}
.y286_c00001{bottom:366.943522px;}
.ycb3_c00001{bottom:367.053000px;}
.ybe9_c00001{bottom:367.090176px;}
.y7b_c00001{bottom:367.146000px;}
.ya9f_c00001{bottom:367.299445px;}
.y1253_c00001{bottom:367.323000px;}
.ybe8_c00001{bottom:367.328418px;}
.y6f9_c00001{bottom:367.471500px;}
.y287_c00001{bottom:367.565803px;}
.ybe7_c00001{bottom:367.701648px;}
.y13e8_c00001{bottom:367.957854px;}
.y47f_c00001{bottom:367.958574px;}
.yd43_c00001{bottom:367.970244px;}
.y6fa_c00001{bottom:367.989630px;}
.y1ca2_c00001{bottom:368.013000px;}
.yc8c_c00001{bottom:368.038500px;}
.y288_c00001{bottom:368.113621px;}
.ybe6_c00001{bottom:368.480535px;}
.y6fb_c00001{bottom:368.524718px;}
.y1168_c00001{bottom:368.795493px;}
.y17aa_c00001{bottom:368.819758px;}
.y6fc_c00001{bottom:368.858196px;}
.ybe5_c00001{bottom:368.911740px;}
.y1983_c00001{bottom:369.071139px;}
.yd44_c00001{bottom:369.122967px;}
.ybe4_c00001{bottom:369.134283px;}
.y1169_c00001{bottom:369.214908px;}
.y925_c00001{bottom:369.285445px;}
.y13e9_c00001{bottom:369.293403px;}
.y16ae_c00001{bottom:369.375462px;}
.y1cd6_c00001{bottom:369.414000px;}
.y289_c00001{bottom:369.468693px;}
.y12a1_c00001{bottom:369.475500px;}
.y6fd_c00001{bottom:369.632684px;}
.y10c5_c00001{bottom:369.729000px;}
.ycd4_c00001{bottom:369.732000px;}
.ye34_c00001{bottom:369.741952px;}
.y17ab_c00001{bottom:369.799735px;}
.y16ad_c00001{bottom:369.871500px;}
.y1281_c00001{bottom:369.903000px;}
.y17ac_c00001{bottom:370.044696px;}
.y14dd_c00001{bottom:370.099500px;}
.y19_c00001{bottom:370.129500px;}
.y480_c00001{bottom:370.140270px;}
.ybe3_c00001{bottom:370.161441px;}
.y1984_c00001{bottom:370.324689px;}
.y17ad_c00001{bottom:370.350701px;}
.yd45_c00001{bottom:370.379706px;}
.yf18_c00001{bottom:370.386831px;}
.y189b_c00001{bottom:370.559385px;}
.y120a_c00001{bottom:370.566000px;}
.y192f_c00001{bottom:370.575000px;}
.y13ea_c00001{bottom:370.589013px;}
.y1006_c00001{bottom:370.601743px;}
.y1985_c00001{bottom:370.865601px;}
.yd46_c00001{bottom:370.874970px;}
.y6fe_c00001{bottom:370.892583px;}
.y16ac_c00001{bottom:370.971402px;}
.y14dc_c00001{bottom:371.029500px;}
.y13eb_c00001{bottom:371.082033px;}
.y109_c00001{bottom:371.206500px;}
.ye33_c00001{bottom:371.340125px;}
.y481_c00001{bottom:371.396910px;}
.yf19_c00001{bottom:371.442210px;}
.y16ab_c00001{bottom:371.502828px;}
.y15b6_c00001{bottom:371.515500px;}
.y6ff_c00001{bottom:371.529359px;}
.y1005_c00001{bottom:371.678715px;}
.yf1a_c00001{bottom:371.683815px;}
.y65a_c00001{bottom:371.742954px;}
.y1231_c00001{bottom:371.772000px;}
.y861_c00001{bottom:371.830500px;}
.y14db_c00001{bottom:371.914500px;}
.y15b7_c00001{bottom:371.937348px;}
.y860_c00001{bottom:371.976000px;}
.y13ec_c00001{bottom:372.022479px;}
.y17ae_c00001{bottom:372.034582px;}
.ye32_c00001{bottom:372.039684px;}
.y65b_c00001{bottom:372.045834px;}
.yd47_c00001{bottom:372.045909px;}
.yf1b_c00001{bottom:372.051273px;}
.y116a_c00001{bottom:372.065691px;}
.y1986_c00001{bottom:372.161421px;}
.y14da_c00001{bottom:372.189000px;}
.y10fc_c00001{bottom:372.303000px;}
.y1b74_c00001{bottom:372.330000px;}
.y700_c00001{bottom:372.371990px;}
.y577_c00001{bottom:372.378384px;}
.y17af_c00001{bottom:372.426622px;}
.y189a_c00001{bottom:372.586626px;}
.y1a76_c00001{bottom:372.603000px;}
.y1987_c00001{bottom:372.617016px;}
.y116b_c00001{bottom:372.617463px;}
.yd48_c00001{bottom:372.651888px;}
.y576_c00001{bottom:372.682404px;}
.yf1c_c00001{bottom:372.704289px;}
.y1988_c00001{bottom:372.877737px;}
.y1a77_c00001{bottom:372.943500px;}
.y16aa_c00001{bottom:372.991518px;}
.y65c_c00001{bottom:373.000344px;}
.y1a78_c00001{bottom:373.108500px;}
.y1cb2_c00001{bottom:373.120500px;}
.y14d9_c00001{bottom:373.138500px;}
.y17b0_c00001{bottom:373.351768px;}
.y13ed_c00001{bottom:373.355844px;}
.y1359_c00001{bottom:373.383000px;}
.yf1d_c00001{bottom:373.448526px;}
.y1a79_c00001{bottom:373.503000px;}
.yd49_c00001{bottom:373.523814px;}
.y65d_c00001{bottom:373.593252px;}
.y85f_c00001{bottom:373.621500px;}
.y16a9_c00001{bottom:373.694094px;}
.ye31_c00001{bottom:373.872460px;}
.yb7d_c00001{bottom:373.960500px;}
.y65e_c00001{bottom:373.983726px;}
.y13ee_c00001{bottom:373.987443px;}
.y788_c00001{bottom:374.014724px;}
.y85e_c00001{bottom:374.023500px;}
.y1004_c00001{bottom:374.060979px;}
.y575_c00001{bottom:374.173776px;}
.y85d_c00001{bottom:374.194500px;}
.y192e_c00001{bottom:374.212500px;}
.ye30_c00001{bottom:374.222179px;}
.y1989_c00001{bottom:374.261466px;}
.y1381_c00001{bottom:374.271000px;}
.y17b1_c00001{bottom:374.360709px;}
.y116c_c00001{bottom:374.364273px;}
.y1a7a_c00001{bottom:374.430000px;}
.y13ef_c00001{bottom:374.503359px;}
.y85c_c00001{bottom:374.508000px;}
.y198a_c00001{bottom:374.617818px;}
.y1003_c00001{bottom:374.743539px;}
.y574_c00001{bottom:374.839920px;}
.y65f_c00001{bottom:374.892816px;}
.yf1e_c00001{bottom:374.959152px;}
.ye2f_c00001{bottom:375.025396px;}
.y85b_c00001{bottom:375.033000px;}
.y1a7b_c00001{bottom:375.132000px;}
.y15b8_c00001{bottom:375.151195px;}
.y660_c00001{bottom:375.223560px;}
.y1899_c00001{bottom:375.304500px;}
.y1329_c00001{bottom:375.327000px;}
.y1a7c_c00001{bottom:375.396000px;}
.y16a8_c00001{bottom:375.455880px;}
.y482_c00001{bottom:375.538476px;}
.y789_c00001{bottom:375.821243px;}
.y661_c00001{bottom:376.280028px;}
.y15b9_c00001{bottom:376.371309px;}
.y573_c00001{bottom:376.429392px;}
.y116d_c00001{bottom:376.496088px;}
.y78a_c00001{bottom:376.501254px;}
.yf1f_c00001{bottom:376.641183px;}
.y16a7_c00001{bottom:376.650336px;}
.y91d_c00001{bottom:376.698052px;}
.y483_c00001{bottom:376.881312px;}
.yf20_c00001{bottom:377.114994px;}
.ya90_c00001{bottom:377.131221px;}
.y1be6_c00001{bottom:377.286000px;}
.y38b_c00001{bottom:377.506020px;}
.y15ba_c00001{bottom:377.555338px;}
.y1b00_c00001{bottom:377.730000px;}
.y78b_c00001{bottom:377.766936px;}
.y1b24_c00001{bottom:377.854500px;}
.y38a_c00001{bottom:377.867100px;}
.y1002_c00001{bottom:377.954195px;}
.y572_c00001{bottom:378.172800px;}
.y1d29_c00001{bottom:378.268500px;}
.y389_c00001{bottom:378.393864px;}
.y78c_c00001{bottom:378.540849px;}
.ya91_c00001{bottom:378.665472px;}
.y1001_c00001{bottom:378.680071px;}
.y388_c00001{bottom:378.807340px;}
.y571_c00001{bottom:379.084500px;}
.y1307_c00001{bottom:379.524000px;}
.y1b9b_c00001{bottom:379.638000px;}
.y15bb_c00001{bottom:379.684760px;}
.y78d_c00001{bottom:379.784750px;}
.y387_c00001{bottom:379.842688px;}
.ya92_c00001{bottom:380.011343px;}
.y9fe_c00001{bottom:380.100735px;}
.y386_c00001{bottom:380.141572px;}
.y17f_c00001{bottom:380.152404px;}
.y9fd_c00001{bottom:380.366971px;}
.y27a_c00001{bottom:380.424144px;}
.ya93_c00001{bottom:380.563432px;}
.y78e_c00001{bottom:380.699279px;}
.y385_c00001{bottom:380.742442px;}
.y27b_c00001{bottom:380.882017px;}
.y9fc_c00001{bottom:380.950057px;}
.y180_c00001{bottom:381.130233px;}
.y384_c00001{bottom:381.230355px;}
.y1d2a_c00001{bottom:381.375330px;}
.y27c_c00001{bottom:381.441253px;}
.y91e_c00001{bottom:381.446434px;}
.y78f_c00001{bottom:381.489974px;}
.y1000_c00001{bottom:381.596341px;}
.ya94_c00001{bottom:381.689603px;}
.y181_c00001{bottom:381.885136px;}
.y73_c00001{bottom:381.910500px;}
.y479_c00001{bottom:382.057500px;}
.y182_c00001{bottom:382.080777px;}
.y9fb_c00001{bottom:382.207065px;}
.ya95_c00001{bottom:382.363517px;}
.y9fa_c00001{bottom:382.374993px;}
.y183_c00001{bottom:382.553328px;}
.y27d_c00001{bottom:382.588536px;}
.y184_c00001{bottom:382.728450px;}
.y790_c00001{bottom:383.000588px;}
.y185_c00001{bottom:383.103346px;}
.y9f9_c00001{bottom:383.402736px;}
.y1d8c_c00001{bottom:383.670000px;}
.y47a_c00001{bottom:383.679718px;}
.y1252_c00001{bottom:383.869500px;}
.ya96_c00001{bottom:383.941247px;}
.y27e_c00001{bottom:384.008197px;}
.ybe2_c00001{bottom:384.038244px;}
.ycb2_c00001{bottom:384.075000px;}
.ybe1_c00001{bottom:384.333432px;}
.y1c23_c00001{bottom:384.480000px;}
.y27f_c00001{bottom:384.494724px;}
.ybe0_c00001{bottom:384.624798px;}
.y13e2_c00001{bottom:384.700014px;}
.yc8b_c00001{bottom:384.721500px;}
.ya97_c00001{bottom:384.752210px;}
.yd3c_c00001{bottom:384.983751px;}
.y47b_c00001{bottom:385.210996px;}
.ybdf_c00001{bottom:385.382610px;}
.y16a6_c00001{bottom:385.595394px;}
.yd3d_c00001{bottom:385.612695px;}
.ye2e_c00001{bottom:385.635512px;}
.ybde_c00001{bottom:385.660440px;}
.y17a2_c00001{bottom:385.833508px;}
.ybdd_c00001{bottom:385.959303px;}
.y13e3_c00001{bottom:385.960821px;}
.y280_c00001{bottom:386.048779px;}
.y13e4_c00001{bottom:386.270868px;}
.y1cd5_c00001{bottom:386.334000px;}
.y14d8_c00001{bottom:386.368500px;}
.y47c_c00001{bottom:386.380780px;}
.ycd3_c00001{bottom:386.545500px;}
.y91f_c00001{bottom:386.547252px;}
.yd3e_c00001{bottom:386.547960px;}
.y197b_c00001{bottom:386.621415px;}
.y1280_c00001{bottom:386.674500px;}
.ybdc_c00001{bottom:386.703747px;}
.y17a3_c00001{bottom:386.746034px;}
.y14d7_c00001{bottom:386.821500px;}
.yfff_c00001{bottom:386.858605px;}
.y47d_c00001{bottom:386.893002px;}
.y18_c00001{bottom:387.019500px;}
.y197c_c00001{bottom:387.030306px;}
.y1209_c00001{bottom:387.075000px;}
.ye2d_c00001{bottom:387.076565px;}
.ybdb_c00001{bottom:387.103041px;}
.y12a0_c00001{bottom:387.169500px;}
.y570_c00001{bottom:387.180000px;}
.y13e5_c00001{bottom:387.302232px;}
.y17a4_c00001{bottom:387.313635px;}
.y108_c00001{bottom:387.385500px;}
.yf11_c00001{bottom:387.399750px;}
.ybda_c00001{bottom:387.444117px;}
.yffe_c00001{bottom:387.460444px;}
.ye2c_c00001{bottom:387.516987px;}
.y16a5_c00001{bottom:387.746046px;}
.yd3f_c00001{bottom:387.784347px;}
.y15ab_c00001{bottom:387.953962px;}
.y14d6_c00001{bottom:388.006500px;}
.y1230_c00001{bottom:388.113000px;}
.y197d_c00001{bottom:388.122993px;}
.y17a5_c00001{bottom:388.169611px;}
.y14d5_c00001{bottom:388.179000px;}
.y1ca1_c00001{bottom:388.203000px;}
.y653_c00001{bottom:388.220100px;}
.y16a4_c00001{bottom:388.366344px;}
.y1160_c00001{bottom:388.503300px;}
.y17a6_c00001{bottom:388.554137px;}
.yf12_c00001{bottom:388.592547px;}
.ye2b_c00001{bottom:388.637766px;}
.y10c4_c00001{bottom:388.647000px;}
.y13e6_c00001{bottom:388.667754px;}
.y15ac_c00001{bottom:388.694962px;}
.y1d8b_c00001{bottom:388.800000px;}
.y85a_c00001{bottom:388.839000px;}
.y14d4_c00001{bottom:388.888500px;}
.yd40_c00001{bottom:388.903134px;}
.y56f_c00001{bottom:388.975650px;}
.y13e7_c00001{bottom:389.105280px;}
.y15ad_c00001{bottom:389.189850px;}
.y197e_c00001{bottom:389.279241px;}
.y16a3_c00001{bottom:389.280516px;}
.y14d3_c00001{bottom:389.286000px;}
.y1161_c00001{bottom:389.343333px;}
.y1895_c00001{bottom:389.367900px;}
.y1894_c00001{bottom:389.368236px;}
.y1892_c00001{bottom:389.368416px;}
.y1896_c00001{bottom:389.368428px;}
.y1898_c00001{bottom:389.368536px;}
.y1897_c00001{bottom:389.368776px;}
.y1893_c00001{bottom:389.368872px;}
.y17a7_c00001{bottom:389.369001px;}
.y10fb_c00001{bottom:389.553000px;}
.y654_c00001{bottom:389.652600px;}
.y197f_c00001{bottom:389.655354px;}
.y859_c00001{bottom:389.694000px;}
.y1162_c00001{bottom:389.752380px;}
.y17a8_c00001{bottom:389.779525px;}
.yd41_c00001{bottom:389.797839px;}
.yf13_c00001{bottom:389.842152px;}
.y56e_c00001{bottom:389.962462px;}
.y15ae_c00001{bottom:389.966738px;}
.y655_c00001{bottom:390.047460px;}
.y1980_c00001{bottom:390.051024px;}
.y14d2_c00001{bottom:390.150000px;}
.ye2a_c00001{bottom:390.331386px;}
.y1358_c00001{bottom:390.363000px;}
.y656_c00001{bottom:390.385794px;}
.yd42_c00001{bottom:390.411966px;}
.y1163_c00001{bottom:390.441873px;}
.y15af_c00001{bottom:390.561975px;}
.y16a2_c00001{bottom:390.635562px;}
.yf14_c00001{bottom:390.674637px;}
.y77f_c00001{bottom:390.749993px;}
.y858_c00001{bottom:390.781500px;}
.y1a75_c00001{bottom:390.825000px;}
.y1981_c00001{bottom:390.908616px;}
.y56d_c00001{bottom:390.927225px;}
.ye29_c00001{bottom:391.011295px;}
.y857_c00001{bottom:391.108500px;}
.y16a1_c00001{bottom:391.157202px;}
.y15b0_c00001{bottom:391.157737px;}
.y780_c00001{bottom:391.171875px;}
.y856_c00001{bottom:391.344000px;}
.y657_c00001{bottom:391.350108px;}
.y1380_c00001{bottom:391.377000px;}
.y1164_c00001{bottom:391.411344px;}
.y1982_c00001{bottom:391.424013px;}
.y17a9_c00001{bottom:391.434314px;}
.y855_c00001{bottom:391.590000px;}
.y16a0_c00001{bottom:391.867968px;}
.yffd_c00001{bottom:391.985744px;}
.y658_c00001{bottom:392.002404px;}
.ye28_c00001{bottom:392.041932px;}
.yf15_c00001{bottom:392.049111px;}
.y15b1_c00001{bottom:392.210325px;}
.yb7c_c00001{bottom:392.230500px;}
.y854_c00001{bottom:392.278500px;}
.y1328_c00001{bottom:392.283000px;}
.y659_c00001{bottom:392.383314px;}
.yf16_c00001{bottom:392.510052px;}
.y853_c00001{bottom:392.583000px;}
.yffc_c00001{bottom:392.658615px;}
.y15b2_c00001{bottom:392.695950px;}
.y169f_c00001{bottom:392.859000px;}
.y1165_c00001{bottom:392.999514px;}
.y56c_c00001{bottom:393.067425px;}
.y781_c00001{bottom:393.101741px;}
.yffb_c00001{bottom:393.487092px;}
.y15b3_c00001{bottom:393.574800px;}
.y1166_c00001{bottom:393.595902px;}
.y56b_c00001{bottom:393.665925px;}
.y383_c00001{bottom:393.856235px;}
.yf17_c00001{bottom:393.887685px;}
.y56a_c00001{bottom:394.016475px;}
.y15b4_c00001{bottom:394.172138px;}
.y914_c00001{bottom:394.231726px;}
.y1167_c00001{bottom:394.268604px;}
.y1aff_c00001{bottom:394.293000px;}
.y1be5_c00001{bottom:394.327500px;}
.y915_c00001{bottom:394.564042px;}
.y782_c00001{bottom:394.770762px;}
.y1b23_c00001{bottom:394.863000px;}
.y569_c00001{bottom:394.992450px;}
.y382_c00001{bottom:395.140368px;}
.y783_c00001{bottom:395.148861px;}
.ya8a_c00001{bottom:395.222205px;}
.y1d21_c00001{bottom:395.282070px;}
.y381_c00001{bottom:395.392156px;}
.y380_c00001{bottom:395.667633px;}
.y15b5_c00001{bottom:395.674312px;}
.y1d22_c00001{bottom:395.695800px;}
.ya8b_c00001{bottom:395.852422px;}
.y1b9a_c00001{bottom:395.883000px;}
.y1d23_c00001{bottom:396.063150px;}
.yffa_c00001{bottom:396.067928px;}
.y37f_c00001{bottom:396.279554px;}
.y568_c00001{bottom:396.326550px;}
.y37e_c00001{bottom:396.368894px;}
.y1306_c00001{bottom:396.456000px;}
.y1d24_c00001{bottom:396.751440px;}
.y916_c00001{bottom:396.847176px;}
.y37d_c00001{bottom:397.004271px;}
.y1d25_c00001{bottom:397.165500px;}
.ya8c_c00001{bottom:397.235790px;}
.y784_c00001{bottom:397.385105px;}
.y917_c00001{bottom:397.498389px;}
.y9f8_c00001{bottom:397.678842px;}
.y271_c00001{bottom:397.704910px;}
.y9f7_c00001{bottom:397.893028px;}
.y178_c00001{bottom:397.922967px;}
.y179_c00001{bottom:397.923348px;}
.y17b_c00001{bottom:397.923780px;}
.y17a_c00001{bottom:397.924069px;}
.y17d_c00001{bottom:397.924293px;}
.y17c_c00001{bottom:397.924431px;}
.y17e_c00001{bottom:397.924603px;}
.y37c_c00001{bottom:397.972645px;}
.ya8d_c00001{bottom:398.183748px;}
.y1d26_c00001{bottom:398.208390px;}
.y9f6_c00001{bottom:398.243418px;}
.y785_c00001{bottom:398.336297px;}
.ya8e_c00001{bottom:398.620811px;}
.y9f5_c00001{bottom:398.773581px;}
.yff9_c00001{bottom:398.871923px;}
.y786_c00001{bottom:398.924689px;}
.y272_c00001{bottom:398.974770px;}
.y1d27_c00001{bottom:399.098580px;}
.y918_c00001{bottom:399.222348px;}
.y72_c00001{bottom:399.310500px;}
.y273_c00001{bottom:399.385068px;}
.y1d28_c00001{bottom:399.512430px;}
.y9f4_c00001{bottom:399.527763px;}
.y9f3_c00001{bottom:399.710455px;}
.y274_c00001{bottom:399.844864px;}
.y476_c00001{bottom:399.931731px;}
.y919_c00001{bottom:400.116646px;}
.ya8f_c00001{bottom:400.226288px;}
.y787_c00001{bottom:400.356848px;}
.ybd9_c00001{bottom:400.408647px;}
.y9f2_c00001{bottom:400.415838px;}
.y9f1_c00001{bottom:400.653748px;}
.y275_c00001{bottom:400.785102px;}
.ybd8_c00001{bottom:400.919367px;}
.y1251_c00001{bottom:401.149500px;}
.y9f0_c00001{bottom:401.221888px;}
.y91a_c00001{bottom:401.668967px;}
.y276_c00001{bottom:401.777212px;}
.yc8a_c00001{bottom:401.881500px;}
.ybd7_c00001{bottom:401.890890px;}
.yd34_c00001{bottom:401.997024px;}
.ye27_c00001{bottom:402.080757px;}
.ybd6_c00001{bottom:402.155469px;}
.y277_c00001{bottom:402.174048px;}
.y13da_c00001{bottom:402.257193px;}
.ycb1_c00001{bottom:402.421500px;}
.y91b_c00001{bottom:402.538240px;}
.y278_c00001{bottom:402.687544px;}
.ye26_c00001{bottom:402.711423px;}
.ybd5_c00001{bottom:402.726291px;}
.y1799_c00001{bottom:402.844500px;}
.y13db_c00001{bottom:402.893907px;}
.y279_c00001{bottom:402.904474px;}
.ybd4_c00001{bottom:403.028670px;}
.y1cd4_c00001{bottom:403.077000px;}
.ycd2_c00001{bottom:403.080000px;}
.yd35_c00001{bottom:403.142205px;}
.y127f_c00001{bottom:403.261500px;}
.y13dc_c00001{bottom:403.268796px;}
.y179a_c00001{bottom:403.506441px;}
.y17_c00001{bottom:403.611000px;}
.y1975_c00001{bottom:403.636692px;}
.ye25_c00001{bottom:403.671192px;}
.y179b_c00001{bottom:403.732617px;}
.ybd3_c00001{bottom:403.916886px;}
.yd36_c00001{bottom:403.925715px;}
.y14d1_c00001{bottom:403.929000px;}
.y91c_c00001{bottom:404.098130px;}
.y1976_c00001{bottom:404.123220px;}
.y129f_c00001{bottom:404.127000px;}
.yf0b_c00001{bottom:404.147478px;}
.y122f_c00001{bottom:404.220000px;}
.ye24_c00001{bottom:404.225435px;}
.y14d0_c00001{bottom:404.257500px;}
.y13dd_c00001{bottom:404.268696px;}
.y1891_c00001{bottom:404.272488px;}
.y1208_c00001{bottom:404.356500px;}
.yd37_c00001{bottom:404.394900px;}
.y13de_c00001{bottom:404.725476px;}
.y477_c00001{bottom:404.799012px;}
.y107_c00001{bottom:404.872500px;}
.y179c_c00001{bottom:404.963988px;}
.y14cf_c00001{bottom:405.181500px;}
.y169e_c00001{bottom:405.204487px;}
.y10c3_c00001{bottom:405.210000px;}
.y13df_c00001{bottom:405.212649px;}
.ye23_c00001{bottom:405.222220px;}
.yd38_c00001{bottom:405.235725px;}
.y15a2_c00001{bottom:405.240675px;}
.y1157_c00001{bottom:405.250644px;}
.y179d_c00001{bottom:405.282076px;}
.yf0c_c00001{bottom:405.302607px;}
.y567_c00001{bottom:405.339488px;}
.yff8_c00001{bottom:405.567891px;}
.y1c22_c00001{bottom:405.646500px;}
.y15a3_c00001{bottom:405.686700px;}
.y1977_c00001{bottom:405.719934px;}
.y566_c00001{bottom:405.778912px;}
.y1890_c00001{bottom:405.822132px;}
.y14ce_c00001{bottom:405.855000px;}
.yd39_c00001{bottom:405.947268px;}
.y1978_c00001{bottom:405.979932px;}
.y14cd_c00001{bottom:406.078500px;}
.y179e_c00001{bottom:406.107864px;}
.y188f_c00001{bottom:406.318188px;}
.y1158_c00001{bottom:406.421040px;}
.y13e0_c00001{bottom:406.490487px;}
.y852_c00001{bottom:406.539000px;}
.yd3a_c00001{bottom:406.549200px;}
.y179f_c00001{bottom:406.552920px;}
.y64b_c00001{bottom:406.588170px;}
.y1159_c00001{bottom:406.704891px;}
.y188e_c00001{bottom:406.748592px;}
.y851_c00001{bottom:406.777500px;}
.yb74_c00001{bottom:406.904472px;}
.ye22_c00001{bottom:406.930996px;}
.y14cc_c00001{bottom:406.956000px;}
.y10fa_c00001{bottom:406.957500px;}
.yf0d_c00001{bottom:407.044884px;}
.y15a4_c00001{bottom:407.084025px;}
.y17a0_c00001{bottom:407.134263px;}
.y1979_c00001{bottom:407.301546px;}
.yb73_c00001{bottom:407.325426px;}
.y13e1_c00001{bottom:407.418990px;}
.y1cb1_c00001{bottom:407.424000px;}
.y14cb_c00001{bottom:407.433000px;}
.y115a_c00001{bottom:407.438772px;}
.y17a1_c00001{bottom:407.477916px;}
.yd3b_c00001{bottom:407.533680px;}
.y15a5_c00001{bottom:407.567325px;}
.y850_c00001{bottom:407.575500px;}
.y565_c00001{bottom:407.584687px;}
.y77b_c00001{bottom:407.750891px;}
.y64c_c00001{bottom:407.864766px;}
.yb72_c00001{bottom:407.967360px;}
.y15a6_c00001{bottom:408.076950px;}
.y64d_c00001{bottom:408.096630px;}
.y115b_c00001{bottom:408.135693px;}
.y188d_c00001{bottom:408.155784px;}
.yb71_c00001{bottom:408.190248px;}
.y137f_c00001{bottom:408.238500px;}
.y1a74_c00001{bottom:408.252000px;}
.y84f_c00001{bottom:408.295500px;}
.y197a_c00001{bottom:408.311439px;}
.y115c_c00001{bottom:408.403569px;}
.y1357_c00001{bottom:408.567000px;}
.y564_c00001{bottom:408.591075px;}
.yb70_c00001{bottom:408.603720px;}
.yf0e_c00001{bottom:408.792681px;}
.y64e_c00001{bottom:408.862944px;}
.y15a7_c00001{bottom:408.954337px;}
.y169d_c00001{bottom:408.969487px;}
.yff7_c00001{bottom:409.100517px;}
.y1ca0_c00001{bottom:409.141500px;}
.yb6f_c00001{bottom:409.150380px;}
.y1327_c00001{bottom:409.171500px;}
.y188c_c00001{bottom:409.255152px;}
.y84e_c00001{bottom:409.323000px;}
.ye21_c00001{bottom:409.330500px;}
.y169c_c00001{bottom:409.422262px;}
.y115d_c00001{bottom:409.469946px;}
.y188b_c00001{bottom:409.578336px;}
.yb6e_c00001{bottom:409.617276px;}
.y77c_c00001{bottom:409.843549px;}
.yb6d_c00001{bottom:409.860474px;}
.y563_c00001{bottom:409.952025px;}
.yff6_c00001{bottom:410.009792px;}
.y15a8_c00001{bottom:410.054400px;}
.yf0f_c00001{bottom:410.210115px;}
.y169b_c00001{bottom:410.236387px;}
.y64f_c00001{bottom:410.354388px;}
.y169a_c00001{bottom:410.630962px;}
.y115e_c00001{bottom:410.644320px;}
.y562_c00001{bottom:410.687700px;}
.y90e_c00001{bottom:410.701816px;}
.y15a9_c00001{bottom:410.855887px;}
.y650_c00001{bottom:410.870772px;}
.y1afe_c00001{bottom:410.914500px;}
.yff5_c00001{bottom:411.010578px;}
.y37b_c00001{bottom:411.016831px;}
.y115f_c00001{bottom:411.078864px;}
.y478_c00001{bottom:411.160923px;}
.yf10_c00001{bottom:411.297186px;}
.y90f_c00001{bottom:411.431532px;}
.y561_c00001{bottom:411.448313px;}
.y651_c00001{bottom:411.642348px;}
.y15aa_c00001{bottom:411.689100px;}
.y1be4_c00001{bottom:411.730500px;}
.y1d1b_c00001{bottom:411.754500px;}
.y1b22_c00001{bottom:412.051500px;}
.ya82_c00001{bottom:412.237499px;}
.y37a_c00001{bottom:412.385290px;}
.y652_c00001{bottom:412.531512px;}
.y1305_c00001{bottom:412.780500px;}
.y1d1c_c00001{bottom:412.964070px;}
.y560_c00001{bottom:413.046338px;}
.y77d_c00001{bottom:413.167402px;}
.y379_c00001{bottom:413.187999px;}
.y1b99_c00001{bottom:413.203500px;}
.y1d1d_c00001{bottom:413.359170px;}
.ya83_c00001{bottom:413.576248px;}
.y378_c00001{bottom:413.611606px;}
.yff4_c00001{bottom:413.762378px;}
.y55f_c00001{bottom:413.884800px;}
.y9ef_c00001{bottom:413.925838px;}
.y9ee_c00001{bottom:414.208755px;}
.y377_c00001{bottom:414.297015px;}
.ya84_c00001{bottom:414.422267px;}
.y26a_c00001{bottom:414.444318px;}
.y9ed_c00001{bottom:414.520011px;}
.y910_c00001{bottom:414.743087px;}
.y1d1e_c00001{bottom:414.762900px;}
.y26b_c00001{bottom:414.871593px;}
.y376_c00001{bottom:414.957235px;}
.yff3_c00001{bottom:414.994140px;}
.y375_c00001{bottom:415.251122px;}
.y911_c00001{bottom:415.391608px;}
.y9ec_c00001{bottom:415.410427px;}
.ya85_c00001{bottom:415.413995px;}
.y26c_c00001{bottom:415.444042px;}
.y1d1f_c00001{bottom:415.588920px;}
.ya86_c00001{bottom:415.680570px;}
.y77e_c00001{bottom:415.796477px;}
.y1d20_c00001{bottom:415.918680px;}
.y173_c00001{bottom:416.001393px;}
.y171_c00001{bottom:416.001450px;}
.y172_c00001{bottom:416.001670px;}
.y174_c00001{bottom:416.001824px;}
.y170_c00001{bottom:416.001838px;}
.y71_c00001{bottom:416.002500px;}
.y175_c00001{bottom:416.002545px;}
.y177_c00001{bottom:416.002566px;}
.y176_c00001{bottom:416.002785px;}
.y9eb_c00001{bottom:416.050720px;}
.yff2_c00001{bottom:416.154753px;}
.ya87_c00001{bottom:416.174280px;}
.y9ea_c00001{bottom:416.321859px;}
.y26d_c00001{bottom:416.805804px;}
.ybd2_c00001{bottom:416.925051px;}
.y9e9_c00001{bottom:417.184167px;}
.y46f_c00001{bottom:417.189015px;}
.ye20_c00001{bottom:417.259950px;}
.ya88_c00001{bottom:417.263771px;}
.ycb0_c00001{bottom:417.364500px;}
.ybd1_c00001{bottom:417.371544px;}
.y1250_c00001{bottom:417.567000px;}
.y9e8_c00001{bottom:417.577174px;}
.ya89_c00001{bottom:417.837231px;}
.y13d3_c00001{bottom:417.926226px;}
.y9e7_c00001{bottom:417.961242px;}
.ybd0_c00001{bottom:418.104972px;}
.y26e_c00001{bottom:418.167565px;}
.y912_c00001{bottom:418.181392px;}
.y470_c00001{bottom:418.341073px;}
.yc89_c00001{bottom:418.621500px;}
.y913_c00001{bottom:418.689276px;}
.yd2e_c00001{bottom:419.011272px;}
.y26f_c00001{bottom:419.034274px;}
.y13d4_c00001{bottom:419.181663px;}
.y1792_c00001{bottom:419.314500px;}
.ybcf_c00001{bottom:419.357202px;}
.y270_c00001{bottom:419.375812px;}
.y196e_c00001{bottom:419.571843px;}
.y14ca_c00001{bottom:419.599500px;}
.y1699_c00001{bottom:419.695275px;}
.ybce_c00001{bottom:419.720289px;}
.yd2f_c00001{bottom:419.836086px;}
.y1cd3_c00001{bottom:420.082500px;}
.y14c9_c00001{bottom:420.213000px;}
.yd30_c00001{bottom:420.305385px;}
.y13d5_c00001{bottom:420.364863px;}
.y1793_c00001{bottom:420.390300px;}
.y127e_c00001{bottom:420.391500px;}
.ycd1_c00001{bottom:420.417000px;}
.y16_c00001{bottom:420.595500px;}
.ybcd_c00001{bottom:420.661173px;}
.y1794_c00001{bottom:420.801150px;}
.y196f_c00001{bottom:420.838137px;}
.y129e_c00001{bottom:420.894000px;}
.yf03_c00001{bottom:420.894612px;}
.y13d6_c00001{bottom:420.918618px;}
.yd31_c00001{bottom:420.953217px;}
.y14c8_c00001{bottom:421.144500px;}
.y1207_c00001{bottom:421.216500px;}
.y1970_c00001{bottom:421.393533px;}
.y471_c00001{bottom:421.422701px;}
.y106_c00001{bottom:421.470000px;}
.y1698_c00001{bottom:421.636162px;}
.yd32_c00001{bottom:421.655202px;}
.y13d7_c00001{bottom:421.696146px;}
.y188a_c00001{bottom:421.701756px;}
.yf04_c00001{bottom:421.981488px;}
.y159b_c00001{bottom:421.984875px;}
.y1795_c00001{bottom:422.081460px;}
.y122e_c00001{bottom:422.104500px;}
.y1697_c00001{bottom:422.310600px;}
.y14c7_c00001{bottom:422.325000px;}
.y10c2_c00001{bottom:422.395500px;}
.yf05_c00001{bottom:422.508594px;}
.y55e_c00001{bottom:422.579475px;}
.y1971_c00001{bottom:422.617614px;}
.y1696_c00001{bottom:422.669700px;}
.y14c6_c00001{bottom:422.778000px;}
.y1972_c00001{bottom:422.869131px;}
.y1889_c00001{bottom:422.881848px;}
.y159c_c00001{bottom:422.975813px;}
.y13d8_c00001{bottom:423.029262px;}
.y643_c00001{bottom:423.061710px;}
.yf06_c00001{bottom:423.074019px;}
.ye1f_c00001{bottom:423.121275px;}
.y1796_c00001{bottom:423.231540px;}
.yd33_c00001{bottom:423.233958px;}
.y84d_c00001{bottom:423.415500px;}
.ye1e_c00001{bottom:423.569775px;}
.y10f9_c00001{bottom:423.574500px;}
.y1797_c00001{bottom:423.615090px;}
.y114e_c00001{bottom:423.615198px;}
.y14c5_c00001{bottom:423.681000px;}
.y1695_c00001{bottom:423.786675px;}
.y55d_c00001{bottom:423.880950px;}
.y13d9_c00001{bottom:423.961776px;}
.y1888_c00001{bottom:424.053444px;}
.y644_c00001{bottom:424.088568px;}
.y114f_c00001{bottom:424.141596px;}
.y1973_c00001{bottom:424.161186px;}
.yf07_c00001{bottom:424.230708px;}
.y55c_c00001{bottom:424.261237px;}
.ye1d_c00001{bottom:424.343625px;}
.yff1_c00001{bottom:424.374912px;}
.y1150_c00001{bottom:424.376001px;}
.y645_c00001{bottom:424.428978px;}
.y14c4_c00001{bottom:424.446000px;}
.y1694_c00001{bottom:424.530637px;}
.yb6c_c00001{bottom:424.599108px;}
.y159d_c00001{bottom:424.629187px;}
.y1974_c00001{bottom:424.650009px;}
.y137e_c00001{bottom:424.708500px;}
.y1798_c00001{bottom:424.749300px;}
.yb6b_c00001{bottom:424.751298px;}
.y1151_c00001{bottom:424.968261px;}
.y472_c00001{bottom:425.079324px;}
.y1356_c00001{bottom:425.170500px;}
.yff0_c00001{bottom:425.180741px;}
.y1693_c00001{bottom:425.201625px;}
.y159e_c00001{bottom:425.212838px;}
.y646_c00001{bottom:425.228862px;}
.yb6a_c00001{bottom:425.237190px;}
.y1887_c00001{bottom:425.361768px;}
.y1152_c00001{bottom:425.364987px;}
.yb69_c00001{bottom:425.460768px;}
.y1a73_c00001{bottom:425.557500px;}
.yf08_c00001{bottom:425.965809px;}
.y473_c00001{bottom:425.992523px;}
.y1153_c00001{bottom:426.020727px;}
.yfef_c00001{bottom:426.030458px;}
.ye1c_c00001{bottom:426.056887px;}
.yb68_c00001{bottom:426.254712px;}
.y1886_c00001{bottom:426.319332px;}
.y159f_c00001{bottom:426.366300px;}
.y55b_c00001{bottom:426.367463px;}
.y1326_c00001{bottom:426.423000px;}
.y647_c00001{bottom:426.460584px;}
.yb67_c00001{bottom:426.462216px;}
.y1154_c00001{bottom:426.525777px;}
.yf09_c00001{bottom:426.627237px;}
.y1692_c00001{bottom:426.822750px;}
.y15a0_c00001{bottom:426.924937px;}
.y1155_c00001{bottom:426.947853px;}
.y55a_c00001{bottom:426.974475px;}
.y1691_c00001{bottom:427.309162px;}
.y1afd_c00001{bottom:427.410000px;}
.yb66_c00001{bottom:427.411500px;}
.y776_c00001{bottom:427.447485px;}
.y648_c00001{bottom:427.558566px;}
.y906_c00001{bottom:427.704337px;}
.y374_c00001{bottom:427.777140px;}
.y559_c00001{bottom:427.804163px;}
.y1156_c00001{bottom:427.854312px;}
.y1690_c00001{bottom:427.916325px;}
.y649_c00001{bottom:427.950540px;}
.y373_c00001{bottom:428.017481px;}
.yf0a_c00001{bottom:428.037846px;}
.ya79_c00001{bottom:428.177937px;}
.y1c99_c00001{bottom:428.220000px;}
.y64a_c00001{bottom:428.255466px;}
.y372_c00001{bottom:428.511160px;}
.y1be3_c00001{bottom:428.523000px;}
.y907_c00001{bottom:428.557789px;}
.y15a1_c00001{bottom:428.684813px;}
.yfee_c00001{bottom:428.791491px;}
.y1b21_c00001{bottom:428.910000px;}
.y1c9a_c00001{bottom:429.126000px;}
.y371_c00001{bottom:429.265224px;}
.y908_c00001{bottom:429.349537px;}
.ya7a_c00001{bottom:429.491351px;}
.y558_c00001{bottom:429.550200px;}
.y370_c00001{bottom:429.653580px;}
.y1304_c00001{bottom:429.814500px;}
.y474_c00001{bottom:429.829182px;}
.y69_c00001{bottom:429.846000px;}
.yfed_c00001{bottom:429.925941px;}
.y1c9b_c00001{bottom:429.975000px;}
.y777_c00001{bottom:429.979205px;}
.ya7b_c00001{bottom:429.987356px;}
.y1b98_c00001{bottom:430.029000px;}
.y169_c00001{bottom:430.104864px;}
.y36f_c00001{bottom:430.245096px;}
.ya7c_c00001{bottom:430.379714px;}
.y1c9c_c00001{bottom:430.414500px;}
.y1c9d_c00001{bottom:430.624500px;}
.y557_c00001{bottom:430.629225px;}
.y6a_c00001{bottom:430.734000px;}
.y16a_c00001{bottom:430.841125px;}
.y475_c00001{bottom:430.963565px;}
.y1c9e_c00001{bottom:430.989000px;}
.y16b_c00001{bottom:431.192866px;}
.y1c9f_c00001{bottom:431.262000px;}
.yfec_c00001{bottom:431.276729px;}
.y6b_c00001{bottom:431.290500px;}
.y36e_c00001{bottom:431.326399px;}
.y9e6_c00001{bottom:431.399754px;}
.ya7d_c00001{bottom:431.443613px;}
.y778_c00001{bottom:431.535182px;}
.y9e5_c00001{bottom:431.667778px;}
.y6c_c00001{bottom:431.715000px;}
.y36d_c00001{bottom:431.723976px;}
.y16c_c00001{bottom:431.908205px;}
.ya7e_c00001{bottom:431.983578px;}
.y909_c00001{bottom:432.020350px;}
.yfeb_c00001{bottom:432.047642px;}
.y9e4_c00001{bottom:432.163020px;}
.y6d_c00001{bottom:432.540000px;}
.y16d_c00001{bottom:432.564243px;}
.y16e_c00001{bottom:432.737267px;}
.y9e3_c00001{bottom:432.772372px;}
.y779_c00001{bottom:432.927969px;}
.y262_c00001{bottom:433.080892px;}
.yfea_c00001{bottom:433.147127px;}
.y6e_c00001{bottom:433.149000px;}
.ya7f_c00001{bottom:433.207397px;}
.ybcc_c00001{bottom:433.245162px;}
.y9e2_c00001{bottom:433.416843px;}
.y16f_c00001{bottom:433.579003px;}
.y263_c00001{bottom:433.580508px;}
.y9e1_c00001{bottom:433.614946px;}
.y467_c00001{bottom:433.648539px;}
.ybcb_c00001{bottom:433.667640px;}
.ya80_c00001{bottom:433.719345px;}
.y6f_c00001{bottom:433.753500px;}
.y9e0_c00001{bottom:433.821313px;}
.ycaf_c00001{bottom:433.968000px;}
.y70_c00001{bottom:434.271000px;}
.y124f_c00001{bottom:434.334000px;}
.y90a_c00001{bottom:434.460318px;}
.ybca_c00001{bottom:434.541891px;}
.yb7b_c00001{bottom:434.700000px;}
.ya81_c00001{bottom:434.899943px;}
.y13cb_c00001{bottom:434.940852px;}
.y468_c00001{bottom:434.940907px;}
.y264_c00001{bottom:434.970367px;}
.y9df_c00001{bottom:434.972125px;}
.yd24_c00001{bottom:435.217530px;}
.y77a_c00001{bottom:435.251610px;}
.y90b_c00001{bottom:435.376234px;}
.ybc9_c00001{bottom:435.381450px;}
.y13cc_c00001{bottom:435.482217px;}
.y265_c00001{bottom:435.505990px;}
.ybc8_c00001{bottom:435.729168px;}
.y178a_c00001{bottom:435.779256px;}
.yc88_c00001{bottom:435.780000px;}
.y90c_c00001{bottom:436.026511px;}
.ye1b_c00001{bottom:436.110375px;}
.yd25_c00001{bottom:436.114083px;}
.y266_c00001{bottom:436.169212px;}
.y469_c00001{bottom:436.341694px;}
.y178b_c00001{bottom:436.458852px;}
.yd26_c00001{bottom:436.498155px;}
.ye1a_c00001{bottom:436.783987px;}
.y1966_c00001{bottom:436.856220px;}
.y178c_c00001{bottom:436.862892px;}
.ybc7_c00001{bottom:436.863000px;}
.yd27_c00001{bottom:436.872723px;}
.y13cd_c00001{bottom:436.900473px;}
.y127d_c00001{bottom:436.917000px;}
.y1cd2_c00001{bottom:437.101500px;}
.y14c3_c00001{bottom:437.176500px;}
.ycd0_c00001{bottom:437.427000px;}
.y13ce_c00001{bottom:437.490105px;}
.y15_c00001{bottom:437.601000px;}
.y129d_c00001{bottom:437.628000px;}
.y1147_c00001{bottom:437.663358px;}
.y168f_c00001{bottom:437.663812px;}
.yd28_c00001{bottom:437.843844px;}
.y267_c00001{bottom:437.852451px;}
.y90d_c00001{bottom:437.906418px;}
.y14c2_c00001{bottom:437.967000px;}
.y1967_c00001{bottom:438.042936px;}
.y1c21_c00001{bottom:438.066000px;}
.yd29_c00001{bottom:438.210360px;}
.y105_c00001{bottom:438.219000px;}
.y1206_c00001{bottom:438.253500px;}
.y178d_c00001{bottom:438.336468px;}
.y1968_c00001{bottom:438.568398px;}
.yfe9_c00001{bottom:438.684773px;}
.yefc_c00001{bottom:438.718875px;}
.y14c1_c00001{bottom:438.720000px;}
.y1594_c00001{bottom:438.730087px;}
.y13cf_c00001{bottom:438.773331px;}
.y268_c00001{bottom:438.796495px;}
.y1148_c00001{bottom:438.799473px;}
.ye19_c00001{bottom:438.806850px;}
.y1885_c00001{bottom:438.835428px;}
.y122d_c00001{bottom:438.844500px;}
.y46a_c00001{bottom:439.064181px;}
.y14c0_c00001{bottom:439.141500px;}
.y178e_c00001{bottom:439.144176px;}
.y84c_c00001{bottom:439.189500px;}
.y63b_c00001{bottom:439.270944px;}
.y13d0_c00001{bottom:439.343091px;}
.yd2a_c00001{bottom:439.372527px;}
.y168e_c00001{bottom:439.376250px;}
.yd2b_c00001{bottom:439.504368px;}
.y10c1_c00001{bottom:439.524000px;}
.y1595_c00001{bottom:439.555913px;}
.y556_c00001{bottom:439.562213px;}
.ye18_c00001{bottom:439.671413px;}
.yefd_c00001{bottom:439.704642px;}
.y10f8_c00001{bottom:439.708500px;}
.y1969_c00001{bottom:439.718448px;}
.y178f_c00001{bottom:439.726716px;}
.y1884_c00001{bottom:439.797312px;}
.y13d1_c00001{bottom:439.940250px;}
.y14bf_c00001{bottom:440.008500px;}
.y1883_c00001{bottom:440.028588px;}
.y63c_c00001{bottom:440.069286px;}
.y1149_c00001{bottom:440.149551px;}
.yfe8_c00001{bottom:440.161227px;}
.y46b_c00001{bottom:440.171563px;}
.y269_c00001{bottom:440.172802px;}
.yd2c_c00001{bottom:440.287281px;}
.y14be_c00001{bottom:440.422500px;}
.ye17_c00001{bottom:440.480475px;}
.y1596_c00001{bottom:440.500238px;}
.y63d_c00001{bottom:440.538486px;}
.y1790_c00001{bottom:440.550096px;}
.y114a_c00001{bottom:440.609301px;}
.y196a_c00001{bottom:440.620230px;}
.yb7a_c00001{bottom:440.640000px;}
.yefe_c00001{bottom:440.722590px;}
.y84b_c00001{bottom:440.785500px;}
.y168d_c00001{bottom:440.794350px;}
.ye16_c00001{bottom:440.858850px;}
.y14bd_c00001{bottom:440.916000px;}
.y196b_c00001{bottom:440.942787px;}
.yd2d_c00001{bottom:440.945778px;}
.yeff_c00001{bottom:441.079797px;}
.y84a_c00001{bottom:441.103500px;}
.y1882_c00001{bottom:441.158364px;}
.y196c_c00001{bottom:441.183315px;}
.yfe7_c00001{bottom:441.305204px;}
.y1791_c00001{bottom:441.306432px;}
.yb65_c00001{bottom:441.336906px;}
.y555_c00001{bottom:441.431775px;}
.y168c_c00001{bottom:441.465337px;}
.y137d_c00001{bottom:441.477000px;}
.y13d2_c00001{bottom:441.477036px;}
.y1597_c00001{bottom:441.546862px;}
.y1a72_c00001{bottom:441.727500px;}
.y1355_c00001{bottom:441.735000px;}
.y46c_c00001{bottom:441.830866px;}
.yb64_c00001{bottom:441.863070px;}
.y1881_c00001{bottom:441.999300px;}
.y114b_c00001{bottom:442.000155px;}
.y849_c00001{bottom:442.006500px;}
.y76e_c00001{bottom:442.033680px;}
.y168b_c00001{bottom:442.069012px;}
.y63e_c00001{bottom:442.075926px;}
.ye15_c00001{bottom:442.177913px;}
.y1598_c00001{bottom:442.183087px;}
.y1880_c00001{bottom:442.217580px;}
.yf00_c00001{bottom:442.255530px;}
.y196d_c00001{bottom:442.539420px;}
.y63f_c00001{bottom:442.618422px;}
.y114c_c00001{bottom:442.701345px;}
.y554_c00001{bottom:442.747163px;}
.ye14_c00001{bottom:442.797863px;}
.y848_c00001{bottom:442.873500px;}
.y553_c00001{bottom:443.326350px;}
.y187f_c00001{bottom:443.330076px;}
.y640_c00001{bottom:443.375268px;}
.yb63_c00001{bottom:443.429346px;}
.yfe6_c00001{bottom:443.581843px;}
.y76f_c00001{bottom:443.591251px;}
.y1b1d_c00001{bottom:443.613000px;}
.y1325_c00001{bottom:443.710500px;}
.y552_c00001{bottom:443.815575px;}
.y847_c00001{bottom:443.934000px;}
.y46d_c00001{bottom:444.023532px;}
.yb62_c00001{bottom:444.044934px;}
.y770_c00001{bottom:444.108491px;}
.y168a_c00001{bottom:444.123037px;}
.y114d_c00001{bottom:444.167628px;}
.y1afc_c00001{bottom:444.178500px;}
.y641_c00001{bottom:444.221784px;}
.yfe5_c00001{bottom:444.314241px;}
.yf01_c00001{bottom:444.373674px;}
.y8fe_c00001{bottom:444.441714px;}
.y846_c00001{bottom:444.693000px;}
.y1b1e_c00001{bottom:444.781500px;}
.y1599_c00001{bottom:444.891037px;}
.y1b1f_c00001{bottom:444.991500px;}
.yf02_c00001{bottom:445.005180px;}
.y36c_c00001{bottom:445.025644px;}
.yb61_c00001{bottom:445.147020px;}
.y159a_c00001{bottom:445.226625px;}
.yb79_c00001{bottom:445.230000px;}
.y8ff_c00001{bottom:445.267005px;}
.y771_c00001{bottom:445.341264px;}
.yfe4_c00001{bottom:445.393004px;}
.ya72_c00001{bottom:445.461693px;}
.yb60_c00001{bottom:445.545630px;}
.y1be2_c00001{bottom:445.571115px;}
.y1be0_c00001{bottom:445.571378px;}
.y1be1_c00001{bottom:445.571760px;}
.y1bdf_c00001{bottom:445.571918px;}
.y1bde_c00001{bottom:445.572330px;}
.y642_c00001{bottom:445.800360px;}
.y36b_c00001{bottom:445.897880px;}
.y46e_c00001{bottom:445.946530px;}
.y1b20_c00001{bottom:445.984500px;}
.yb5f_c00001{bottom:446.040060px;}
.y36a_c00001{bottom:446.314016px;}
.ya73_c00001{bottom:446.350427px;}
.y1b97_c00001{bottom:446.745000px;}
.y1303_c00001{bottom:446.799000px;}
.y551_c00001{bottom:446.946900px;}
.y772_c00001{bottom:446.961639px;}
.y900_c00001{bottom:447.249997px;}
.y60_c00001{bottom:447.393000px;}
.y369_c00001{bottom:447.504022px;}
.y1c0f_c00001{bottom:447.522000px;}
.y773_c00001{bottom:447.584357px;}
.y550_c00001{bottom:447.643012px;}
.y901_c00001{bottom:447.749524px;}
.y61_c00001{bottom:447.757500px;}
.ya74_c00001{bottom:447.830120px;}
.yfe3_c00001{bottom:448.107548px;}
.y1d1a_c00001{bottom:448.306500px;}
.y9de_c00001{bottom:448.350115px;}
.y368_c00001{bottom:448.591311px;}
.y9dd_c00001{bottom:448.611525px;}
.y62_c00001{bottom:448.624500px;}
.ya75_c00001{bottom:448.725183px;}
.y63_c00001{bottom:448.815000px;}
.y774_c00001{bottom:448.865106px;}
.yfe2_c00001{bottom:448.878969px;}
.y367_c00001{bottom:448.961217px;}
.y1c92_c00001{bottom:449.010000px;}
.y9dc_c00001{bottom:449.214468px;}
.y9db_c00001{bottom:449.404663px;}
.y902_c00001{bottom:449.466139px;}
.y1c93_c00001{bottom:449.547000px;}
.y775_c00001{bottom:449.563362px;}
.y64_c00001{bottom:449.592000px;}
.yfe1_c00001{bottom:449.605165px;}
.ya76_c00001{bottom:449.606499px;}
.y168_c00001{bottom:449.647870px;}
.y167_c00001{bottom:449.647999px;}
.y166_c00001{bottom:449.648167px;}
.y164_c00001{bottom:449.648175px;}
.y163_c00001{bottom:449.648242px;}
.y165_c00001{bottom:449.648716px;}
.y9da_c00001{bottom:449.760486px;}
.y65_c00001{bottom:449.799000px;}
.y366_c00001{bottom:449.817108px;}
.y45c_c00001{bottom:449.863088px;}
.y1c94_c00001{bottom:449.866500px;}
.y9d9_c00001{bottom:449.951176px;}
.y9d8_c00001{bottom:450.099577px;}
.y1c95_c00001{bottom:450.265500px;}
.y45d_c00001{bottom:450.577917px;}
.y903_c00001{bottom:450.725721px;}
.y9d7_c00001{bottom:450.732418px;}
.y1c96_c00001{bottom:450.778500px;}
.y66_c00001{bottom:450.795000px;}
.y9d6_c00001{bottom:450.865969px;}
.ya77_c00001{bottom:450.968226px;}
.y67_c00001{bottom:451.092000px;}
.y9d5_c00001{bottom:451.171500px;}
.y1c97_c00001{bottom:451.180500px;}
.y904_c00001{bottom:451.185855px;}
.ya78_c00001{bottom:451.382357px;}
.y13c3_c00001{bottom:451.417149px;}
.y25b_c00001{bottom:451.444500px;}
.y1c98_c00001{bottom:451.458000px;}
.y68_c00001{bottom:451.557000px;}
.ycae_c00001{bottom:451.639500px;}
.y13c4_c00001{bottom:451.868538px;}
.y45e_c00001{bottom:451.904738px;}
.y25c_c00001{bottom:451.916086px;}
.y124e_c00001{bottom:452.152500px;}
.y13c5_c00001{bottom:452.476896px;}
.yd1b_c00001{bottom:452.499588px;}
.yc87_c00001{bottom:452.640000px;}
.y45f_c00001{bottom:452.997031px;}
.y1783_c00001{bottom:453.067500px;}
.y13c6_c00001{bottom:453.300624px;}
.yd1c_c00001{bottom:453.313812px;}
.y14bc_c00001{bottom:453.492000px;}
.ye13_c00001{bottom:453.548138px;}
.y25d_c00001{bottom:453.549519px;}
.y195f_c00001{bottom:453.601623px;}
.y1784_c00001{bottom:453.638496px;}
.y14bb_c00001{bottom:453.772500px;}
.yd1d_c00001{bottom:453.872376px;}
.y10bb_c00001{bottom:453.876000px;}
.y13c7_c00001{bottom:453.890223px;}
.y1689_c00001{bottom:453.897450px;}
.y1cd1_c00001{bottom:453.955500px;}
.y14ba_c00001{bottom:453.979500px;}
.ye12_c00001{bottom:454.167113px;}
.y1960_c00001{bottom:454.174794px;}
.y10bc_c00001{bottom:454.176000px;}
.yccf_c00001{bottom:454.288500px;}
.y129c_c00001{bottom:454.368000px;}
.y54f_c00001{bottom:454.389488px;}
.y905_c00001{bottom:454.398009px;}
.y1688_c00001{bottom:454.448700px;}
.y845_c00001{bottom:454.537500px;}
.y127c_c00001{bottom:454.560000px;}
.yef4_c00001{bottom:454.653813px;}
.y25e_c00001{bottom:454.734990px;}
.y104_c00001{bottom:454.762500px;}
.y14_c00001{bottom:454.786500px;}
.y14b9_c00001{bottom:454.942500px;}
.y1785_c00001{bottom:454.947996px;}
.y1205_c00001{bottom:454.966500px;}
.y460_c00001{bottom:455.023476px;}
.yd1e_c00001{bottom:455.034438px;}
.y844_c00001{bottom:455.110500px;}
.ybc6_c00001{bottom:455.217246px;}
.ybc4_c00001{bottom:455.217405px;}
.ybc5_c00001{bottom:455.217726px;}
.ybc3_c00001{bottom:455.218071px;}
.y1a50_c00001{bottom:455.218500px;}
.y13c8_c00001{bottom:455.253846px;}
.y1687_c00001{bottom:455.261587px;}
.y187e_c00001{bottom:455.326644px;}
.y10bd_c00001{bottom:455.329500px;}
.yef5_c00001{bottom:455.366226px;}
.yd1f_c00001{bottom:455.386071px;}
.y158a_c00001{bottom:455.476012px;}
.yb78_c00001{bottom:455.490000px;}
.y54e_c00001{bottom:455.492325px;}
.y14b8_c00001{bottom:455.505000px;}
.y1786_c00001{bottom:455.550456px;}
.y187d_c00001{bottom:455.621652px;}
.y25f_c00001{bottom:455.675895px;}
.ye11_c00001{bottom:455.712000px;}
.y260_c00001{bottom:455.892016px;}
.y158b_c00001{bottom:455.933325px;}
.ye10_c00001{bottom:456.120787px;}
.y461_c00001{bottom:456.205532px;}
.yef6_c00001{bottom:456.215373px;}
.y1961_c00001{bottom:456.237606px;}
.yfe0_c00001{bottom:456.281451px;}
.y843_c00001{bottom:456.316500px;}
.y261_c00001{bottom:456.340923px;}
.y10be_c00001{bottom:456.349500px;}
.y122c_c00001{bottom:456.367500px;}
.yef7_c00001{bottom:456.476478px;}
.yd20_c00001{bottom:456.504387px;}
.y1787_c00001{bottom:456.568140px;}
.y54d_c00001{bottom:456.614512px;}
.y10bf_c00001{bottom:456.625500px;}
.y1962_c00001{bottom:456.676263px;}
.yd21_c00001{bottom:456.794436px;}
.y187c_c00001{bottom:456.809508px;}
.y14b7_c00001{bottom:456.877500px;}
.y1686_c00001{bottom:456.883500px;}
.y1a4b_c00001{bottom:456.907500px;}
.yfdf_c00001{bottom:456.975171px;}
.y1354_c00001{bottom:457.014000px;}
.y842_c00001{bottom:457.078500px;}
.y14b6_c00001{bottom:457.093500px;}
.y113f_c00001{bottom:457.107870px;}
.ye0f_c00001{bottom:457.125862px;}
.y1963_c00001{bottom:457.197243px;}
.y158c_c00001{bottom:457.253588px;}
.yd22_c00001{bottom:457.253793px;}
.y13c9_c00001{bottom:457.296747px;}
.y633_c00001{bottom:457.365594px;}
.y1353_c00001{bottom:457.422000px;}
.y10f7_c00001{bottom:457.446000px;}
.y10c0_c00001{bottom:457.452000px;}
.ye0e_c00001{bottom:457.622363px;}
.y14b5_c00001{bottom:457.656000px;}
.y1140_c00001{bottom:457.666275px;}
.y54c_c00001{bottom:457.731188px;}
.y1352_c00001{bottom:457.740000px;}
.y158d_c00001{bottom:457.794150px;}
.y841_c00001{bottom:457.806000px;}
.y1788_c00001{bottom:457.835376px;}
.y13ca_c00001{bottom:457.852593px;}
.yef8_c00001{bottom:457.863396px;}
.y1351_c00001{bottom:457.876500px;}
.y1a4a_c00001{bottom:458.047500px;}
.y634_c00001{bottom:458.052144px;}
.yb5e_c00001{bottom:458.077596px;}
.y1964_c00001{bottom:458.132739px;}
.y187b_c00001{bottom:458.141256px;}
.y462_c00001{bottom:458.168481px;}
.yd23_c00001{bottom:458.221368px;}
.ye0d_c00001{bottom:458.296463px;}
.yb5d_c00001{bottom:458.321046px;}
.y137c_c00001{bottom:458.364000px;}
.y158e_c00001{bottom:458.384175px;}
.y187a_c00001{bottom:458.401764px;}
.y1350_c00001{bottom:458.430000px;}
.y1141_c00001{bottom:458.497629px;}
.y1789_c00001{bottom:458.564340px;}
.yb5c_c00001{bottom:458.586636px;}
.y1a49_c00001{bottom:458.623500px;}
.y134f_c00001{bottom:458.638500px;}
.y840_c00001{bottom:458.701500px;}
.y1685_c00001{bottom:458.720925px;}
.yef9_c00001{bottom:458.730405px;}
.y54b_c00001{bottom:458.738663px;}
.y768_c00001{bottom:458.770779px;}
.y134e_c00001{bottom:458.914500px;}
.y463_c00001{bottom:458.941766px;}
.y1a71_c00001{bottom:459.037500px;}
.y134d_c00001{bottom:459.087000px;}
.y1142_c00001{bottom:459.268521px;}
.y635_c00001{bottom:459.273354px;}
.yb5b_c00001{bottom:459.286728px;}
.yfde_c00001{bottom:459.409392px;}
.y1684_c00001{bottom:459.447787px;}
.y158f_c00001{bottom:459.476025px;}
.y1965_c00001{bottom:459.476448px;}
.y1879_c00001{bottom:459.501528px;}
.y636_c00001{bottom:459.527874px;}
.ye0c_c00001{bottom:459.542325px;}
.y1143_c00001{bottom:459.614439px;}
.y134c_c00001{bottom:459.684000px;}
.y1cac_c00001{bottom:459.811500px;}
.y1a48_c00001{bottom:459.816000px;}
.y1590_c00001{bottom:459.817275px;}
.y637_c00001{bottom:459.868146px;}
.y1878_c00001{bottom:459.973236px;}
.y134b_c00001{bottom:460.081500px;}
.y83f_c00001{bottom:460.086000px;}
.y464_c00001{bottom:460.149282px;}
.yfdd_c00001{bottom:460.154241px;}
.y1683_c00001{bottom:460.207800px;}
.yb5a_c00001{bottom:460.216932px;}
.yefa_c00001{bottom:460.310100px;}
.y1877_c00001{bottom:460.342080px;}
.y1324_c00001{bottom:460.389000px;}
.y1144_c00001{bottom:460.545726px;}
.y1591_c00001{bottom:460.722937px;}
.yb59_c00001{bottom:460.848804px;}
.y1cad_c00001{bottom:460.862550px;}
.y1bd9_c00001{bottom:460.879350px;}
.y769_c00001{bottom:460.903877px;}
.y465_c00001{bottom:461.298470px;}
.yb58_c00001{bottom:461.431500px;}
.y1145_c00001{bottom:461.449542px;}
.y638_c00001{bottom:461.450508px;}
.y1afb_c00001{bottom:461.584500px;}
.y1682_c00001{bottom:461.678062px;}
.yefb_c00001{bottom:461.678181px;}
.y8f6_c00001{bottom:461.717628px;}
.y365_c00001{bottom:461.738682px;}
.y54a_c00001{bottom:461.743163px;}
.y1146_c00001{bottom:461.762118px;}
.y1bda_c00001{bottom:461.812515px;}
.ya69_c00001{bottom:461.942852px;}
.y76a_c00001{bottom:461.980364px;}
.y1bdb_c00001{bottom:462.198082px;}
.y1592_c00001{bottom:462.369375px;}
.y1cae_c00001{bottom:462.378288px;}
.y1b1c_c00001{bottom:462.421500px;}
.y639_c00001{bottom:462.441114px;}
.y8f7_c00001{bottom:462.640407px;}
.y1caf_c00001{bottom:462.718446px;}
.ya6a_c00001{bottom:462.749690px;}
.y1593_c00001{bottom:462.871312px;}
.y63a_c00001{bottom:463.090398px;}
.y1bdc_c00001{bottom:463.110195px;}
.y1cb0_c00001{bottom:463.228809px;}
.y364_c00001{bottom:463.341092px;}
.yfdc_c00001{bottom:463.531514px;}
.y8f8_c00001{bottom:463.656259px;}
.y1b96_c00001{bottom:463.695000px;}
.y1bdd_c00001{bottom:463.833472px;}
.y549_c00001{bottom:463.849463px;}
.y1a55_c00001{bottom:463.861500px;}
.y363_c00001{bottom:463.956456px;}
.y1302_c00001{bottom:463.959000px;}
.y76b_c00001{bottom:464.112663px;}
.y362_c00001{bottom:464.228808px;}
.yfdb_c00001{bottom:464.353520px;}
.y466_c00001{bottom:464.455116px;}
.y361_c00001{bottom:464.616966px;}
.ya6b_c00001{bottom:464.852349px;}
.ya6c_c00001{bottom:465.460218px;}
.y254_c00001{bottom:465.471378px;}
.y9d4_c00001{bottom:465.524243px;}
.y76c_c00001{bottom:465.654903px;}
.y360_c00001{bottom:465.744657px;}
.y9d3_c00001{bottom:465.791745px;}
.y9d2_c00001{bottom:466.017308px;}
.y8f9_c00001{bottom:466.185624px;}
.y255_c00001{bottom:466.368690px;}
.ybc2_c00001{bottom:466.536306px;}
.y12f9_c00001{bottom:466.560000px;}
.yfda_c00001{bottom:466.610072px;}
.y9d1_c00001{bottom:466.731435px;}
.y161_c00001{bottom:466.827735px;}
.y15c_c00001{bottom:466.827810px;}
.y15b_c00001{bottom:466.827978px;}
.y15d_c00001{bottom:466.828030px;}
.y160_c00001{bottom:466.828314px;}
.y15f_c00001{bottom:466.828364px;}
.y162_c00001{bottom:466.828435px;}
.y15e_c00001{bottom:466.828702px;}
.y1d92_c00001{bottom:466.830000px;}
.y5f_c00001{bottom:466.960500px;}
.ybc1_c00001{bottom:467.052111px;}
.ya6d_c00001{bottom:467.201480px;}
.y9d0_c00001{bottom:467.367398px;}
.ya6e_c00001{bottom:467.527121px;}
.y9cf_c00001{bottom:467.946480px;}
.ya6f_c00001{bottom:468.004533px;}
.y76d_c00001{bottom:468.073719px;}
.ybc0_c00001{bottom:468.312219px;}
.y256_c00001{bottom:468.372942px;}
.y8fa_c00001{bottom:468.438576px;}
.y455_c00001{bottom:468.472500px;}
.ycad_c00001{bottom:468.517500px;}
.y124d_c00001{bottom:468.597000px;}
.y13be_c00001{bottom:468.703095px;}
.y257_c00001{bottom:468.932406px;}
.yd13_c00001{bottom:469.243455px;}
.yc86_c00001{bottom:469.260000px;}
.y9ce_c00001{bottom:469.263000px;}
.ya70_c00001{bottom:469.319886px;}
.y456_c00001{bottom:469.514835px;}
.y8fb_c00001{bottom:469.576167px;}
.ybbf_c00001{bottom:469.683969px;}
.y177d_c00001{bottom:469.789023px;}
.y12fa_c00001{bottom:469.800000px;}
.yd14_c00001{bottom:469.827447px;}
.ya71_c00001{bottom:469.899524px;}
.ye0b_c00001{bottom:470.088750px;}
.y13bf_c00001{bottom:470.095863px;}
.ybbe_c00001{bottom:470.143596px;}
.y1a47_c00001{bottom:470.460000px;}
.y258_c00001{bottom:470.489676px;}
.ybbd_c00001{bottom:470.537106px;}
.y13c0_c00001{bottom:470.609415px;}
.y1959_c00001{bottom:470.616000px;}
.yd15_c00001{bottom:470.699187px;}
.ye0a_c00001{bottom:470.720850px;}
.y1681_c00001{bottom:470.732850px;}
.y8fc_c00001{bottom:470.778810px;}
.y1cd0_c00001{bottom:470.841000px;}
.y177e_c00001{bottom:470.855982px;}
.y1c91_c00001{bottom:470.892000px;}
.ycce_c00001{bottom:470.935500px;}
.y457_c00001{bottom:471.061926px;}
.y1680_c00001{bottom:471.077325px;}
.y14b4_c00001{bottom:471.219000px;}
.y1204_c00001{bottom:471.288000px;}
.y127b_c00001{bottom:471.420000px;}
.y177f_c00001{bottom:471.436087px;}
.y8fd_c00001{bottom:471.484320px;}
.y13_c00001{bottom:471.528000px;}
.yd16_c00001{bottom:471.540915px;}
.ybbc_c00001{bottom:471.552597px;}
.ye09_c00001{bottom:471.578325px;}
.y14b3_c00001{bottom:471.586500px;}
.y103_c00001{bottom:471.625500px;}
.yeec_c00001{bottom:471.672114px;}
.y1582_c00001{bottom:471.683925px;}
.yfd9_c00001{bottom:471.812436px;}
.ybbb_c00001{bottom:471.949428px;}
.y259_c00001{bottom:471.978474px;}
.y129b_c00001{bottom:472.054500px;}
.y1a46_c00001{bottom:472.080000px;}
.y195a_c00001{bottom:472.113177px;}
.yd17_c00001{bottom:472.115766px;}
.y1138_c00001{bottom:472.228500px;}
.y458_c00001{bottom:472.412583px;}
.y14b2_c00001{bottom:472.546500px;}
.y1780_c00001{bottom:472.550707px;}
.y1139_c00001{bottom:472.653132px;}
.y25a_c00001{bottom:472.724910px;}
.y167f_c00001{bottom:472.729575px;}
.y1a45_c00001{bottom:472.797000px;}
.y10ba_c00001{bottom:472.854000px;}
.ye08_c00001{bottom:472.938375px;}
.y1781_c00001{bottom:473.021019px;}
.y62c_c00001{bottom:473.035002px;}
.yeed_c00001{bottom:473.045577px;}
.y14b1_c00001{bottom:473.086500px;}
.y122b_c00001{bottom:473.163000px;}
.y113a_c00001{bottom:473.221011px;}
.y1876_c00001{bottom:473.246364px;}
.y1583_c00001{bottom:473.265112px;}
.y13c1_c00001{bottom:473.347020px;}
.y1a44_c00001{bottom:473.484000px;}
.y1875_c00001{bottom:473.513388px;}
.y167e_c00001{bottom:473.539087px;}
.y195b_c00001{bottom:473.544618px;}
.y1782_c00001{bottom:473.653356px;}
.yd18_c00001{bottom:473.759820px;}
.yeee_c00001{bottom:473.792895px;}
.y548_c00001{bottom:473.821837px;}
.y13c2_c00001{bottom:473.889744px;}
.yfd8_c00001{bottom:474.042236px;}
.y195c_c00001{bottom:474.104034px;}
.y10f6_c00001{bottom:474.159000px;}
.y1874_c00001{bottom:474.230004px;}
.y167d_c00001{bottom:474.336787px;}
.y83e_c00001{bottom:474.450000px;}
.y547_c00001{bottom:474.456113px;}
.y1873_c00001{bottom:474.484392px;}
.y62d_c00001{bottom:474.513894px;}
.ye07_c00001{bottom:474.558862px;}
.y113b_c00001{bottom:474.607929px;}
.y14b0_c00001{bottom:474.666000px;}
.y1584_c00001{bottom:474.667537px;}
.y1a43_c00001{bottom:474.724500px;}
.yd19_c00001{bottom:474.740373px;}
.y459_c00001{bottom:474.807969px;}
.yeef_c00001{bottom:474.881892px;}
.ye06_c00001{bottom:474.937763px;}
.y167c_c00001{bottom:474.953287px;}
.y1585_c00001{bottom:475.131112px;}
.y1a42_c00001{bottom:475.158000px;}
.y1872_c00001{bottom:475.178268px;}
.y137b_c00001{bottom:475.225500px;}
.ye05_c00001{bottom:475.238550px;}
.y75f_c00001{bottom:475.238714px;}
.y1871_c00001{bottom:475.509720px;}
.y1a70_c00001{bottom:475.626000px;}
.y62e_c00001{bottom:475.648398px;}
.y1a41_c00001{bottom:475.683000px;}
.y113c_c00001{bottom:475.706676px;}
.yd1a_c00001{bottom:475.714722px;}
.yfd7_c00001{bottom:475.934936px;}
.y195d_c00001{bottom:475.950780px;}
.y1870_c00001{bottom:476.097120px;}
.yef0_c00001{bottom:476.172948px;}
.y62f_c00001{bottom:476.294982px;}
.y546_c00001{bottom:476.337750px;}
.y134a_c00001{bottom:476.401500px;}
.y186f_c00001{bottom:476.469396px;}
.y195e_c00001{bottom:476.471553px;}
.yef1_c00001{bottom:476.510337px;}
.y1a40_c00001{bottom:476.568000px;}
.y1586_c00001{bottom:476.720550px;}
.y186e_c00001{bottom:476.736732px;}
.y545_c00001{bottom:476.791350px;}
.y167b_c00001{bottom:476.806275px;}
.ye04_c00001{bottom:476.827500px;}
.y1a3f_c00001{bottom:476.985000px;}
.y186d_c00001{bottom:477.081528px;}
.y24d_c00001{bottom:477.092556px;}
.yef2_c00001{bottom:477.107583px;}
.y45a_c00001{bottom:477.119313px;}
.yb57_c00001{bottom:477.194970px;}
.yb56_c00001{bottom:477.195696px;}
.y760_c00001{bottom:477.211875px;}
.y113d_c00001{bottom:477.223776px;}
.y1323_c00001{bottom:477.328500px;}
.y544_c00001{bottom:477.365663px;}
.y1a3e_c00001{bottom:477.366000px;}
.y1bd2_c00001{bottom:477.622935px;}
.y45b_c00001{bottom:477.657081px;}
.y24e_c00001{bottom:477.681648px;}
.y761_c00001{bottom:477.737443px;}
.y1bd3_c00001{bottom:477.924758px;}
.yce9_c00001{bottom:478.170000px;}
.yfd6_c00001{bottom:478.286366px;}
.y1587_c00001{bottom:478.305900px;}
.y1afa_c00001{bottom:478.311000px;}
.y167a_c00001{bottom:478.422900px;}
.y630_c00001{bottom:478.460142px;}
.y543_c00001{bottom:478.580025px;}
.y1bd4_c00001{bottom:478.661123px;}
.ya63_c00001{bottom:478.689242px;}
.y1588_c00001{bottom:478.698037px;}
.y542_c00001{bottom:478.847887px;}
.y1bd5_c00001{bottom:478.948403px;}
.yfd5_c00001{bottom:478.956258px;}
.y113e_c00001{bottom:478.965789px;}
.y8ee_c00001{bottom:478.999500px;}
.y631_c00001{bottom:479.020878px;}
.y35f_c00001{bottom:479.120317px;}
.yef3_c00001{bottom:479.122752px;}
.y1589_c00001{bottom:479.202750px;}
.y762_c00001{bottom:479.364545px;}
.y1b1b_c00001{bottom:479.493000px;}
.y1b92_c00001{bottom:479.526000px;}
.y1bd6_c00001{bottom:479.681385px;}
.y632_c00001{bottom:479.751240px;}
.y24f_c00001{bottom:479.860092px;}
.y1bd7_c00001{bottom:479.892465px;}
.y35e_c00001{bottom:480.015072px;}
.y763_c00001{bottom:480.166268px;}
.y35d_c00001{bottom:480.222240px;}
.y1b93_c00001{bottom:480.297000px;}
.y541_c00001{bottom:480.436575px;}
.y1d19_c00001{bottom:480.466500px;}
.ya64_c00001{bottom:480.549675px;}
.y1bd8_c00001{bottom:480.682125px;}
.y8ef_c00001{bottom:480.781586px;}
.y1a54_c00001{bottom:480.799500px;}
.y1301_c00001{bottom:480.870000px;}
.y764_c00001{bottom:480.905454px;}
.yfd4_c00001{bottom:480.909173px;}
.y250_c00001{bottom:481.015608px;}
.y35c_c00001{bottom:481.161615px;}
.y251_c00001{bottom:481.363482px;}
.y8f0_c00001{bottom:481.430935px;}
.y540_c00001{bottom:481.668750px;}
.y35b_c00001{bottom:481.814033px;}
.y35a_c00001{bottom:482.231256px;}
.ya65_c00001{bottom:482.368086px;}
.y1b94_c00001{bottom:482.598000px;}
.y1b95_c00001{bottom:482.743500px;}
.ya66_c00001{bottom:482.759057px;}
.y9cd_c00001{bottom:482.874732px;}
.y765_c00001{bottom:482.969310px;}
.y252_c00001{bottom:483.197202px;}
.y359_c00001{bottom:483.295585px;}
.y156_c00001{bottom:483.541318px;}
.y157_c00001{bottom:483.541701px;}
.y155_c00001{bottom:483.542035px;}
.y158_c00001{bottom:483.542342px;}
.y15a_c00001{bottom:483.542923px;}
.y159_c00001{bottom:483.542943px;}
.y766_c00001{bottom:483.729342px;}
.y9cc_c00001{bottom:483.863130px;}
.y44b_c00001{bottom:483.868500px;}
.y8f1_c00001{bottom:483.943393px;}
.y253_c00001{bottom:484.185606px;}
.y5e_c00001{bottom:484.365000px;}
.y44c_c00001{bottom:484.621598px;}
.y8f2_c00001{bottom:484.682014px;}
.y9cb_c00001{bottom:484.708788px;}
.ya67_c00001{bottom:484.972049px;}
.y9ca_c00001{bottom:484.984332px;}
.y767_c00001{bottom:485.391579px;}
.ybba_c00001{bottom:485.778732px;}
.y124c_c00001{bottom:485.784000px;}
.ycac_c00001{bottom:485.824500px;}
.ya68_c00001{bottom:485.833272px;}
.y9c9_c00001{bottom:485.898030px;}
.y44d_c00001{bottom:485.924145px;}
.y9c8_c00001{bottom:486.000000px;}
.ybb9_c00001{bottom:486.150516px;}
.yd0c_c00001{bottom:486.258966px;}
.y1c1b_c00001{bottom:486.271500px;}
.yc85_c00001{bottom:486.391500px;}
.y1c1c_c00001{bottom:486.520500px;}
.y13b5_c00001{bottom:486.800160px;}
.y186c_c00001{bottom:486.801744px;}
.y1c1d_c00001{bottom:486.820500px;}
.y8f3_c00001{bottom:486.945906px;}
.ybb8_c00001{bottom:487.019484px;}
.y194e_c00001{bottom:487.086000px;}
.yd0d_c00001{bottom:487.142376px;}
.ye03_c00001{bottom:487.228592px;}
.y13b6_c00001{bottom:487.315824px;}
.ybb7_c00001{bottom:487.343511px;}
.y14af_c00001{bottom:487.393500px;}
.y1a3d_c00001{bottom:487.542000px;}
.y44e_c00001{bottom:487.564935px;}
.y1775_c00001{bottom:487.607950px;}
.y14ae_c00001{bottom:487.690500px;}
.ye02_c00001{bottom:487.702415px;}
.y8f4_c00001{bottom:487.724541px;}
.yd0e_c00001{bottom:487.779903px;}
.y10b3_c00001{bottom:487.887000px;}
.y1ccf_c00001{bottom:487.978500px;}
.y1776_c00001{bottom:488.148588px;}
.y10b4_c00001{bottom:488.172000px;}
.yccd_c00001{bottom:488.187000px;}
.y1c1e_c00001{bottom:488.298000px;}
.ybb6_c00001{bottom:488.302215px;}
.y1a3c_c00001{bottom:488.343000px;}
.y186b_c00001{bottom:488.353416px;}
.y14ad_c00001{bottom:488.397000px;}
.y13b7_c00001{bottom:488.476506px;}
.ybb5_c00001{bottom:488.526003px;}
.y8f5_c00001{bottom:488.549332px;}
.y1ce6_c00001{bottom:488.568000px;}
.y1203_c00001{bottom:488.595000px;}
.y194f_c00001{bottom:488.661288px;}
.yee5_c00001{bottom:488.687775px;}
.y127a_c00001{bottom:488.728500px;}
.y12_c00001{bottom:488.746500px;}
.yd0f_c00001{bottom:488.770068px;}
.y44f_c00001{bottom:488.824417px;}
.ye01_c00001{bottom:488.869860px;}
.y129a_c00001{bottom:488.877000px;}
.y13b8_c00001{bottom:488.898606px;}
.y1950_c00001{bottom:488.936739px;}
.ybb4_c00001{bottom:488.963349px;}
.y1679_c00001{bottom:489.100613px;}
.y1c1f_c00001{bottom:489.166500px;}
.ye00_c00001{bottom:489.267783px;}
.y1777_c00001{bottom:489.318917px;}
.y1951_c00001{bottom:489.364716px;}
.yd10_c00001{bottom:489.366807px;}
.y1a3b_c00001{bottom:489.429000px;}
.y10b5_c00001{bottom:489.438000px;}
.y1c20_c00001{bottom:489.460500px;}
.y157a_c00001{bottom:489.505875px;}
.y102_c00001{bottom:489.535500px;}
.y14ac_c00001{bottom:489.540000px;}
.y83d_c00001{bottom:489.660450px;}
.y1a3a_c00001{bottom:489.750000px;}
.y1952_c00001{bottom:489.800580px;}
.y10b6_c00001{bottom:489.873000px;}
.y186a_c00001{bottom:489.945576px;}
.y1a39_c00001{bottom:489.955500px;}
.y122a_c00001{bottom:490.024500px;}
.y1c89_c00001{bottom:490.050000px;}
.y13b9_c00001{bottom:490.100307px;}
.yee6_c00001{bottom:490.126953px;}
.y1953_c00001{bottom:490.258257px;}
.y1131_c00001{bottom:490.350183px;}
.y1c8a_c00001{bottom:490.359000px;}
.yd11_c00001{bottom:490.364760px;}
.y1678_c00001{bottom:490.558312px;}
.y1c8b_c00001{bottom:490.558500px;}
.y13ba_c00001{bottom:490.575987px;}
.yb77_c00001{bottom:490.590000px;}
.y157b_c00001{bottom:490.667363px;}
.y1778_c00001{bottom:490.747660px;}
.yfd3_c00001{bottom:490.760568px;}
.y10b7_c00001{bottom:490.764000px;}
.y83c_c00001{bottom:490.856523px;}
.y623_c00001{bottom:490.860240px;}
.yee7_c00001{bottom:490.864521px;}
.ydff_c00001{bottom:490.876622px;}
.y10f5_c00001{bottom:490.992000px;}
.y1779_c00001{bottom:491.005989px;}
.y1954_c00001{bottom:491.047683px;}
.y1132_c00001{bottom:491.081751px;}
.y1869_c00001{bottom:491.126244px;}
.y10b8_c00001{bottom:491.127000px;}
.y1677_c00001{bottom:491.138888px;}
.ydfe_c00001{bottom:491.143306px;}
.yb55_c00001{bottom:491.146339px;}
.y1c8c_c00001{bottom:491.146500px;}
.y53f_c00001{bottom:491.301225px;}
.y1a38_c00001{bottom:491.368500px;}
.y1c8d_c00001{bottom:491.379000px;}
.y14ab_c00001{bottom:491.404500px;}
.y177a_c00001{bottom:491.443305px;}
.y13bb_c00001{bottom:491.505579px;}
.y1349_c00001{bottom:491.523000px;}
.y624_c00001{bottom:491.527626px;}
.y1868_c00001{bottom:491.633460px;}
.y53e_c00001{bottom:491.641012px;}
.y1955_c00001{bottom:491.666070px;}
.yfd2_c00001{bottom:491.753817px;}
.y10b9_c00001{bottom:491.790000px;}
.y450_c00001{bottom:491.804138px;}
.yd12_c00001{bottom:491.814549px;}
.y1676_c00001{bottom:491.824350px;}
.yee8_c00001{bottom:491.827041px;}
.y83b_c00001{bottom:491.828631px;}
.y13bc_c00001{bottom:491.962944px;}
.y757_c00001{bottom:491.977932px;}
.y1c8e_c00001{bottom:492.013500px;}
.y1133_c00001{bottom:492.030040px;}
.y1956_c00001{bottom:492.050124px;}
.y625_c00001{bottom:492.063768px;}
.yb54_c00001{bottom:492.087175px;}
.y157c_c00001{bottom:492.118988px;}
.ydfd_c00001{bottom:492.230919px;}
.y1134_c00001{bottom:492.244722px;}
.y1a6f_c00001{bottom:492.249000px;}
.y137a_c00001{bottom:492.357000px;}
.y1c8f_c00001{bottom:492.466500px;}
.yb53_c00001{bottom:492.476707px;}
.y177b_c00001{bottom:492.477982px;}
.y83a_c00001{bottom:492.485055px;}
.y1135_c00001{bottom:492.497770px;}
.ydfc_c00001{bottom:492.528792px;}
.y1348_c00001{bottom:492.573000px;}
.y758_c00001{bottom:492.642780px;}
.y13bd_c00001{bottom:492.691734px;}
.y451_c00001{bottom:492.714443px;}
.y1957_c00001{bottom:492.717978px;}
.y177c_c00001{bottom:492.730186px;}
.y839_c00001{bottom:492.767232px;}
.y157d_c00001{bottom:492.773888px;}
.y1347_c00001{bottom:492.810000px;}
.y53d_c00001{bottom:492.883237px;}
.yb52_c00001{bottom:492.922575px;}
.y1c90_c00001{bottom:492.939000px;}
.y1a37_c00001{bottom:492.982500px;}
.y1cab_c00001{bottom:493.014000px;}
.y626_c00001{bottom:493.102752px;}
.y838_c00001{bottom:493.120824px;}
.y1958_c00001{bottom:493.133811px;}
.y1136_c00001{bottom:493.180978px;}
.yb51_c00001{bottom:493.202478px;}
.y53c_c00001{bottom:493.248487px;}
.yb50_c00001{bottom:493.413877px;}
.y1675_c00001{bottom:493.468050px;}
.y1346_c00001{bottom:493.486500px;}
.y1137_c00001{bottom:493.497421px;}
.y1322_c00001{bottom:493.533000px;}
.y1867_c00001{bottom:493.557972px;}
.yee9_c00001{bottom:493.561137px;}
.ydfb_c00001{bottom:493.566000px;}
.y157e_c00001{bottom:493.591050px;}
.y627_c00001{bottom:493.635282px;}
.yfd1_c00001{bottom:493.788348px;}
.y837_c00001{bottom:493.830870px;}
.y452_c00001{bottom:493.938825px;}
.y1345_c00001{bottom:493.999500px;}
.y1a36_c00001{bottom:494.106000px;}
.yb4f_c00001{bottom:494.375773px;}
.y53b_c00001{bottom:494.476012px;}
.y1344_c00001{bottom:494.589000px;}
.yfd0_c00001{bottom:494.605193px;}
.y1bcd_c00001{bottom:494.635913px;}
.y8ed_c00001{bottom:494.640000px;}
.yb4e_c00001{bottom:494.641500px;}
.y1674_c00001{bottom:494.810250px;}
.y453_c00001{bottom:494.860605px;}
.y1343_c00001{bottom:494.913000px;}
.y628_c00001{bottom:495.102990px;}
.yeea_c00001{bottom:495.162243px;}
.y1673_c00001{bottom:495.163462px;}
.y8e4_c00001{bottom:495.199500px;}
.y157f_c00001{bottom:495.228600px;}
.y53a_c00001{bottom:495.269775px;}
.y759_c00001{bottom:495.477276px;}
.yfcf_c00001{bottom:495.480591px;}
.y1af9_c00001{bottom:495.543000px;}
.y539_c00001{bottom:495.610800px;}
.y454_c00001{bottom:495.679313px;}
.ya5c_c00001{bottom:495.704628px;}
.y1bce_c00001{bottom:495.736463px;}
.y1580_c00001{bottom:495.745162px;}
.y629_c00001{bottom:495.750540px;}
.yeeb_c00001{bottom:495.764130px;}
.y75a_c00001{bottom:496.024419px;}
.y358_c00001{bottom:496.196156px;}
.y1b8d_c00001{bottom:496.264500px;}
.y8e5_c00001{bottom:496.295439px;}
.y357_c00001{bottom:496.413624px;}
.y538_c00001{bottom:496.518338px;}
.y356_c00001{bottom:496.588740px;}
.y1581_c00001{bottom:496.797487px;}
.y1bcf_c00001{bottom:496.885207px;}
.ya5d_c00001{bottom:496.899987px;}
.y1b1a_c00001{bottom:496.911000px;}
.y1b8e_c00001{bottom:497.043000px;}
.y1d11_c00001{bottom:497.074500px;}
.y1bd0_c00001{bottom:497.198947px;}
.y62a_c00001{bottom:497.290308px;}
.ya5e_c00001{bottom:497.368956px;}
.y355_c00001{bottom:497.385706px;}
.y1300_c00001{bottom:497.610000px;}
.y62b_c00001{bottom:497.763306px;}
.yfce_c00001{bottom:497.805750px;}
.y354_c00001{bottom:497.868241px;}
.y1b8f_c00001{bottom:497.917500px;}
.y1bd1_c00001{bottom:497.931045px;}
.y1a53_c00001{bottom:497.967000px;}
.y353_c00001{bottom:498.310173px;}
.y1d12_c00001{bottom:498.345000px;}
.y1b90_c00001{bottom:498.517500px;}
.y8e6_c00001{bottom:498.632982px;}
.y75b_c00001{bottom:498.770964px;}
.y1d13_c00001{bottom:498.802500px;}
.y1b91_c00001{bottom:498.877500px;}
.y352_c00001{bottom:499.227298px;}
.y56_c00001{bottom:499.231500px;}
.y9c7_c00001{bottom:499.364226px;}
.y8e7_c00001{bottom:499.397518px;}
.ya5f_c00001{bottom:499.425342px;}
.y75c_c00001{bottom:499.591194px;}
.y150_c00001{bottom:499.706125px;}
.y14e_c00001{bottom:499.706255px;}
.y151_c00001{bottom:499.706397px;}
.y14f_c00001{bottom:499.706685px;}
.y154_c00001{bottom:499.706703px;}
.y152_c00001{bottom:499.706797px;}
.y153_c00001{bottom:499.707062px;}
.y9c6_c00001{bottom:499.737984px;}
.y9c5_c00001{bottom:499.943634px;}
.y57_c00001{bottom:499.968000px;}
.ya60_c00001{bottom:500.118758px;}
.y9c4_c00001{bottom:500.195904px;}
.y1d14_c00001{bottom:500.254500px;}
.y75d_c00001{bottom:500.289957px;}
.yfcd_c00001{bottom:500.343948px;}
.y1d15_c00001{bottom:500.554500px;}
.y246_c00001{bottom:500.581344px;}
.y58_c00001{bottom:500.754000px;}
.y59_c00001{bottom:500.949000px;}
.y1d16_c00001{bottom:501.024000px;}
.y5a_c00001{bottom:501.210000px;}
.y9c3_c00001{bottom:501.265596px;}
.y443_c00001{bottom:501.423000px;}
.y247_c00001{bottom:501.522204px;}
.y5b_c00001{bottom:501.838500px;}
.ya61_c00001{bottom:501.882857px;}
.y248_c00001{bottom:501.902706px;}
.y8e8_c00001{bottom:501.948236px;}
.y9c2_c00001{bottom:501.967326px;}
.y1d17_c00001{bottom:501.981000px;}
.y5c_c00001{bottom:502.014000px;}
.ybb3_c00001{bottom:502.060215px;}
.y1d18_c00001{bottom:502.312500px;}
.ybb2_c00001{bottom:502.341345px;}
.y124b_c00001{bottom:502.374000px;}
.y9c1_c00001{bottom:502.469742px;}
.y8e9_c00001{bottom:502.492637px;}
.y75e_c00001{bottom:502.498536px;}
.ybb1_c00001{bottom:502.561071px;}
.ycab_c00001{bottom:502.561500px;}
.y444_c00001{bottom:502.624500px;}
.y5d_c00001{bottom:502.846500px;}
.y249_c00001{bottom:503.034342px;}
.y8ea_c00001{bottom:503.085125px;}
.yd03_c00001{bottom:503.270919px;}
.y176d_c00001{bottom:503.276916px;}
.y13ae_c00001{bottom:503.278764px;}
.ya62_c00001{bottom:503.486957px;}
.ybb0_c00001{bottom:503.513580px;}
.yc84_c00001{bottom:503.682000px;}
.ybaf_c00001{bottom:503.924145px;}
.y14aa_c00001{bottom:504.162000px;}
.ydfa_c00001{bottom:504.315429px;}
.y1946_c00001{bottom:504.344463px;}
.yd04_c00001{bottom:504.403674px;}
.y24a_c00001{bottom:504.436050px;}
.y1cce_c00001{bottom:504.489000px;}
.y14a9_c00001{bottom:504.594000px;}
.ybae_c00001{bottom:504.680199px;}
.y1947_c00001{bottom:504.757917px;}
.yd05_c00001{bottom:504.884928px;}
.yccc_c00001{bottom:504.907500px;}
.y1299_c00001{bottom:504.984000px;}
.y1a35_c00001{bottom:505.036500px;}
.y176e_c00001{bottom:505.037259px;}
.ybad_c00001{bottom:505.046502px;}
.y1c1a_c00001{bottom:505.056000px;}
.y13af_c00001{bottom:505.075806px;}
.y1279_c00001{bottom:505.077000px;}
.y8eb_c00001{bottom:505.109692px;}
.y445_c00001{bottom:505.122000px;}
.y24b_c00001{bottom:505.230690px;}
.y836_c00001{bottom:505.305207px;}
.yd06_c00001{bottom:505.394301px;}
.y176f_c00001{bottom:505.462083px;}
.ydf9_c00001{bottom:505.556460px;}
.ybac_c00001{bottom:505.707798px;}
.y1672_c00001{bottom:505.709475px;}
.y14a8_c00001{bottom:505.732500px;}
.y11_c00001{bottom:505.747500px;}
.y1202_c00001{bottom:505.779000px;}
.y8ec_c00001{bottom:505.820818px;}
.y1948_c00001{bottom:505.860474px;}
.y1a34_c00001{bottom:505.929000px;}
.yedf_c00001{bottom:505.970250px;}
.y446_c00001{bottom:506.020500px;}
.y101_c00001{bottom:506.053500px;}
.ydf8_c00001{bottom:506.233983px;}
.y1866_c00001{bottom:506.312988px;}
.yd07_c00001{bottom:506.314416px;}
.y1671_c00001{bottom:506.325525px;}
.y24c_c00001{bottom:506.433462px;}
.y10b2_c00001{bottom:506.452500px;}
.y1572_c00001{bottom:506.521537px;}
.y835_c00001{bottom:506.522799px;}
.yd08_c00001{bottom:506.537766px;}
.y13b0_c00001{bottom:506.597547px;}
.y1770_c00001{bottom:506.608942px;}
.yee0_c00001{bottom:506.641869px;}
.y1865_c00001{bottom:506.720688px;}
.y14a7_c00001{bottom:506.728500px;}
.y61c_c00001{bottom:506.800500px;}
.yd09_c00001{bottom:506.804136px;}
.y1a33_c00001{bottom:506.908500px;}
.y1771_c00001{bottom:506.949675px;}
.y1864_c00001{bottom:506.998452px;}
.y14a6_c00001{bottom:507.021000px;}
.ydf7_c00001{bottom:507.068256px;}
.y112a_c00001{bottom:507.086998px;}
.y1670_c00001{bottom:507.133762px;}
.yd0a_c00001{bottom:507.191430px;}
.y13b1_c00001{bottom:507.463269px;}
.y834_c00001{bottom:507.475197px;}
.y1949_c00001{bottom:507.487707px;}
.y537_c00001{bottom:507.490237px;}
.yfcc_c00001{bottom:507.526970px;}
.ydf6_c00001{bottom:507.570681px;}
.y1573_c00001{bottom:507.596287px;}
.y1229_c00001{bottom:507.628500px;}
.y61d_c00001{bottom:507.881580px;}
.y833_c00001{bottom:507.942216px;}
.y1574_c00001{bottom:507.954150px;}
.y1772_c00001{bottom:507.999195px;}
.y1863_c00001{bottom:508.071792px;}
.y194a_c00001{bottom:508.071867px;}
.yfcb_c00001{bottom:508.076195px;}
.y14a5_c00001{bottom:508.105500px;}
.y536_c00001{bottom:508.114237px;}
.yd0b_c00001{bottom:508.144185px;}
.y112b_c00001{bottom:508.228648px;}
.y1a32_c00001{bottom:508.317000px;}
.y14a4_c00001{bottom:508.413000px;}
.y112c_c00001{bottom:508.484131px;}
.y10f4_c00001{bottom:508.543500px;}
.y447_c00001{bottom:508.633500px;}
.y166f_c00001{bottom:508.699125px;}
.y1773_c00001{bottom:508.721575px;}
.y1a31_c00001{bottom:508.744500px;}
.yfca_c00001{bottom:508.863942px;}
.y13b2_c00001{bottom:508.913367px;}
.y1575_c00001{bottom:509.034000px;}
.y61e_c00001{bottom:509.151996px;}
.y448_c00001{bottom:509.184000px;}
.y1862_c00001{bottom:509.244936px;}
.ydf5_c00001{bottom:509.320011px;}
.yb4d_c00001{bottom:509.394000px;}
.y13b3_c00001{bottom:509.415453px;}
.y194b_c00001{bottom:509.438001px;}
.y1576_c00001{bottom:509.440200px;}
.y1a6e_c00001{bottom:509.493000px;}
.y832_c00001{bottom:509.536485px;}
.y1342_c00001{bottom:509.559000px;}
.y535_c00001{bottom:509.633362px;}
.y61f_c00001{bottom:509.675106px;}
.y194c_c00001{bottom:509.690013px;}
.y1861_c00001{bottom:509.754624px;}
.y112d_c00001{bottom:509.761401px;}
.y166e_c00001{bottom:509.805262px;}
.y1a30_c00001{bottom:509.860500px;}
.y13b4_c00001{bottom:509.984775px;}
.y751_c00001{bottom:510.054463px;}
.y1774_c00001{bottom:510.086574px;}
.y534_c00001{bottom:510.112313px;}
.yee1_c00001{bottom:510.120435px;}
.y831_c00001{bottom:510.304500px;}
.y752_c00001{bottom:510.405024px;}
.y1577_c00001{bottom:510.458700px;}
.yee2_c00001{bottom:510.587265px;}
.y1321_c00001{bottom:510.691500px;}
.yfc9_c00001{bottom:510.840612px;}
.y194d_c00001{bottom:510.903792px;}
.y166d_c00001{bottom:511.084725px;}
.y1bc6_c00001{bottom:511.107345px;}
.y1a2f_c00001{bottom:511.111500px;}
.y620_c00001{bottom:511.162578px;}
.y112e_c00001{bottom:511.303581px;}
.yee3_c00001{bottom:511.332594px;}
.y533_c00001{bottom:511.446712px;}
.y621_c00001{bottom:511.572582px;}
.y166c_c00001{bottom:511.640925px;}
.y532_c00001{bottom:511.834387px;}
.yc7e_c00001{bottom:511.920000px;}
.y1578_c00001{bottom:511.921912px;}
.y449_c00001{bottom:512.002500px;}
.y753_c00001{bottom:512.011029px;}
.y1bc7_c00001{bottom:512.078617px;}
.y112f_c00001{bottom:512.122393px;}
.y531_c00001{bottom:512.327325px;}
.y1579_c00001{bottom:512.353313px;}
.y1111_c00001{bottom:512.460000px;}
.y8dc_c00001{bottom:512.485500px;}
.y1bc8_c00001{bottom:512.524402px;}
.y1c88_c00001{bottom:512.584500px;}
.y1af8_c00001{bottom:512.670000px;}
.y44a_c00001{bottom:512.676000px;}
.ya55_c00001{bottom:512.716938px;}
.y1130_c00001{bottom:512.735784px;}
.y622_c00001{bottom:512.814270px;}
.y351_c00001{bottom:512.863400px;}
.y1bc9_c00001{bottom:512.869492px;}
.y754_c00001{bottom:512.967848px;}
.yee4_c00001{bottom:513.133029px;}
.y1b86_c00001{bottom:513.274500px;}
.y350_c00001{bottom:513.303422px;}
.y1b19_c00001{bottom:513.508500px;}
.yfc8_c00001{bottom:513.652136px;}
.y1bca_c00001{bottom:513.798630px;}
.y530_c00001{bottom:513.806625px;}
.yb76_c00001{bottom:513.810000px;}
.y34f_c00001{bottom:513.811391px;}
.y8dd_c00001{bottom:513.834002px;}
.y1b87_c00001{bottom:513.976500px;}
.y1bcb_c00001{bottom:514.031385px;}
.y34e_c00001{bottom:514.051944px;}
.y1d0a_c00001{bottom:514.084500px;}
.y1b88_c00001{bottom:514.165500px;}
.y12ff_c00001{bottom:514.215000px;}
.y1b89_c00001{bottom:514.378500px;}
.y1bcc_c00001{bottom:514.383060px;}
.y34d_c00001{bottom:514.420207px;}
.yfc7_c00001{bottom:514.440626px;}
.y34c_c00001{bottom:514.642743px;}
.y1d0b_c00001{bottom:514.674000px;}
.ya56_c00001{bottom:514.912586px;}
.y1b8a_c00001{bottom:514.978500px;}
.y146_c00001{bottom:515.161500px;}
.y34b_c00001{bottom:515.305366px;}
.y147_c00001{bottom:515.540639px;}
.y755_c00001{bottom:515.723882px;}
.y1d0c_c00001{bottom:515.739000px;}
.y1b8b_c00001{bottom:515.772000px;}
.y8de_c00001{bottom:515.901678px;}
.y34a_c00001{bottom:515.967792px;}
.y1b8c_c00001{bottom:516.063000px;}
.y148_c00001{bottom:516.214227px;}
.y1d0d_c00001{bottom:516.220500px;}
.y51_c00001{bottom:516.241500px;}
.y23d_c00001{bottom:516.250500px;}
.y149_c00001{bottom:516.453063px;}
.yfc6_c00001{bottom:516.536235px;}
.y9c0_c00001{bottom:516.561486px;}
.y1d0e_c00001{bottom:516.622500px;}
.y14a_c00001{bottom:516.695194px;}
.y9bf_c00001{bottom:516.719994px;}
.y23e_c00001{bottom:516.727242px;}
.y52_c00001{bottom:516.826500px;}
.y9be_c00001{bottom:516.924258px;}
.ya57_c00001{bottom:517.008010px;}
.y14b_c00001{bottom:517.310068px;}
.y53_c00001{bottom:517.432500px;}
.ya58_c00001{bottom:517.472888px;}
.y9bd_c00001{bottom:517.774092px;}
.y1d0f_c00001{bottom:517.879500px;}
.y14c_c00001{bottom:517.955401px;}
.y9bc_c00001{bottom:518.029836px;}
.y756_c00001{bottom:518.166600px;}
.y14d_c00001{bottom:518.232945px;}
.y8df_c00001{bottom:518.342487px;}
.y54_c00001{bottom:518.403000px;}
.y9bb_c00001{bottom:518.545122px;}
.y23f_c00001{bottom:518.547648px;}
.ya59_c00001{bottom:518.602803px;}
.y9ba_c00001{bottom:518.833464px;}
.ybab_c00001{bottom:518.841537px;}
.y8e0_c00001{bottom:519.132225px;}
.y55_c00001{bottom:519.178500px;}
.ya5a_c00001{bottom:519.231629px;}
.y1d10_c00001{bottom:519.363000px;}
.y9b9_c00001{bottom:519.481500px;}
.y240_c00001{bottom:519.585930px;}
.y124a_c00001{bottom:519.681000px;}
.y13a5_c00001{bottom:519.754386px;}
.y1c14_c00001{bottom:520.023000px;}
.ybaa_c00001{bottom:520.067049px;}
.y241_c00001{bottom:520.132560px;}
.y14a3_c00001{bottom:520.242000px;}
.ycfa_c00001{bottom:520.285905px;}
.ycfb_c00001{bottom:520.682853px;}
.yc83_c00001{bottom:520.692000px;}
.ycaa_c00001{bottom:520.759500px;}
.y43c_c00001{bottom:520.851000px;}
.yba9_c00001{bottom:520.980783px;}
.y8e1_c00001{bottom:520.989632px;}
.y13a6_c00001{bottom:520.997094px;}
.y1c15_c00001{bottom:521.047500px;}
.y193f_c00001{bottom:521.083002px;}
.ycfc_c00001{bottom:521.084421px;}
.y1766_c00001{bottom:521.098769px;}
.y9_c00001{bottom:521.101500px;}
.y14a2_c00001{bottom:521.145000px;}
.y1c16_c00001{bottom:521.149500px;}
.ya5b_c00001{bottom:521.259369px;}
.ydf4_c00001{bottom:521.265945px;}
.y13a7_c00001{bottom:521.355003px;}
.ya_c00001{bottom:521.366625px;}
.yba8_c00001{bottom:521.485383px;}
.y14a1_c00001{bottom:521.545500px;}
.y166b_c00001{bottom:521.755837px;}
.y1a2e_c00001{bottom:521.796000px;}
.y1860_c00001{bottom:521.864688px;}
.y1c17_c00001{bottom:521.877000px;}
.yb75_c00001{bottom:521.910000px;}
.y8e2_c00001{bottom:521.933653px;}
.yb_c00001{bottom:522.055230px;}
.yccb_c00001{bottom:522.060000px;}
.y43d_c00001{bottom:522.093000px;}
.y14a0_c00001{bottom:522.097500px;}
.y13a8_c00001{bottom:522.131133px;}
.y1c18_c00001{bottom:522.171000px;}
.y166a_c00001{bottom:522.174225px;}
.yc_c00001{bottom:522.295545px;}
.y242_c00001{bottom:522.332940px;}
.ycfd_c00001{bottom:522.385659px;}
.y1669_c00001{bottom:522.470962px;}
.ydf3_c00001{bottom:522.532815px;}
.yba7_c00001{bottom:522.544719px;}
.y1298_c00001{bottom:522.559500px;}
.y1a2d_c00001{bottom:522.612000px;}
.y243_c00001{bottom:522.619254px;}
.y1278_c00001{bottom:522.720000px;}
.y10ab_c00001{bottom:522.721500px;}
.yd_c00001{bottom:522.765480px;}
.ycfe_c00001{bottom:522.801072px;}
.y1940_c00001{bottom:522.824772px;}
.y100_c00001{bottom:522.828000px;}
.y1c19_c00001{bottom:522.831000px;}
.y10ac_c00001{bottom:522.906000px;}
.y149f_c00001{bottom:522.909000px;}
.ye_c00001{bottom:522.930015px;}
.y1a2c_c00001{bottom:522.936000px;}
.yba6_c00001{bottom:522.990666px;}
.y1201_c00001{bottom:523.036500px;}
.y185f_c00001{bottom:523.080864px;}
.yf_c00001{bottom:523.105530px;}
.ycff_c00001{bottom:523.136748px;}
.y1767_c00001{bottom:523.186285px;}
.y13a9_c00001{bottom:523.225023px;}
.y244_c00001{bottom:523.226154px;}
.yed8_c00001{bottom:523.253364px;}
.y149e_c00001{bottom:523.263000px;}
.y185e_c00001{bottom:523.475820px;}
.y1a2b_c00001{bottom:523.551000px;}
.y10_c00001{bottom:523.726530px;}
.y10ad_c00001{bottom:523.731000px;}
.y43e_c00001{bottom:523.732500px;}
.y1122_c00001{bottom:523.826583px;}
.y13aa_c00001{bottom:523.860309px;}
.y52f_c00001{bottom:523.893487px;}
.y10ae_c00001{bottom:523.954500px;}
.yed9_c00001{bottom:523.979526px;}
.yd00_c00001{bottom:523.979553px;}
.y245_c00001{bottom:524.113446px;}
.ydf2_c00001{bottom:524.137011px;}
.y1228_c00001{bottom:524.218500px;}
.y1668_c00001{bottom:524.242950px;}
.y149d_c00001{bottom:524.289000px;}
.y156b_c00001{bottom:524.347500px;}
.y8e3_c00001{bottom:524.350404px;}
.y830_c00001{bottom:524.420715px;}
.yd01_c00001{bottom:524.422260px;}
.y185d_c00001{bottom:524.458560px;}
.y10af_c00001{bottom:524.472000px;}
.y1123_c00001{bottom:524.502738px;}
.y1941_c00001{bottom:524.505213px;}
.yeda_c00001{bottom:524.611632px;}
.ydf1_c00001{bottom:524.655111px;}
.y149c_c00001{bottom:524.658000px;}
.y82f_c00001{bottom:524.723316px;}
.y1768_c00001{bottom:524.799627px;}
.y1667_c00001{bottom:524.807063px;}
.y156c_c00001{bottom:524.858663px;}
.y616_c00001{bottom:524.869014px;}
.y185c_c00001{bottom:524.915628px;}
.yb4c_c00001{bottom:524.923500px;}
.y1124_c00001{bottom:525.013242px;}
.y1942_c00001{bottom:525.045111px;}
.y10b0_c00001{bottom:525.054000px;}
.y1769_c00001{bottom:525.117935px;}
.y149b_c00001{bottom:525.154500px;}
.y1666_c00001{bottom:525.194887px;}
.y1a2a_c00001{bottom:525.202500px;}
.y10f3_c00001{bottom:525.219000px;}
.y82e_c00001{bottom:525.330609px;}
.yb4b_c00001{bottom:525.481500px;}
.y1943_c00001{bottom:525.506070px;}
.y13ab_c00001{bottom:525.576753px;}
.y156d_c00001{bottom:525.583050px;}
.y1a29_c00001{bottom:525.633000px;}
.y43f_c00001{bottom:525.670500px;}
.y149a_c00001{bottom:525.693000px;}
.ydf0_c00001{bottom:525.777639px;}
.y10b1_c00001{bottom:525.793500px;}
.yb4a_c00001{bottom:525.844500px;}
.y13ac_c00001{bottom:525.939030px;}
.yedb_c00001{bottom:525.947181px;}
.yd02_c00001{bottom:525.972672px;}
.y74b_c00001{bottom:525.985975px;}
.y176a_c00001{bottom:526.081516px;}
.y1125_c00001{bottom:526.083236px;}
.y185b_c00001{bottom:526.197840px;}
.y1379_c00001{bottom:526.255500px;}
.y617_c00001{bottom:526.259580px;}
.yb49_c00001{bottom:526.330500px;}
.y1a6d_c00001{bottom:526.362000px;}
.y1341_c00001{bottom:526.387500px;}
.y440_c00001{bottom:526.416000px;}
.yedc_c00001{bottom:526.529616px;}
.yb48_c00001{bottom:526.599000px;}
.y82d_c00001{bottom:526.605417px;}
.y1665_c00001{bottom:526.768650px;}
.y156e_c00001{bottom:526.812862px;}
.y1944_c00001{bottom:526.839846px;}
.ydef_c00001{bottom:526.906239px;}
.y176b_c00001{bottom:526.931233px;}
.y1a28_c00001{bottom:526.954500px;}
.y1664_c00001{bottom:527.085300px;}
.y52e_c00001{bottom:527.088112px;}
.y185a_c00001{bottom:527.240436px;}
.yb47_c00001{bottom:527.299500px;}
.y1a27_c00001{bottom:527.311500px;}
.ydee_c00001{bottom:527.316000px;}
.y13ad_c00001{bottom:527.323362px;}
.y618_c00001{bottom:527.480520px;}
.yedd_c00001{bottom:527.523711px;}
.yb46_c00001{bottom:527.532000px;}
.y1859_c00001{bottom:527.578656px;}
.y176c_c00001{bottom:527.601847px;}
.y1320_c00001{bottom:527.728500px;}
.y82c_c00001{bottom:527.774388px;}
.y52d_c00001{bottom:527.822662px;}
.y82b_c00001{bottom:527.850708px;}
.y74c_c00001{bottom:527.862188px;}
.y1126_c00001{bottom:528.027205px;}
.y1945_c00001{bottom:528.169857px;}
.y1663_c00001{bottom:528.388650px;}
.yb45_c00001{bottom:528.391500px;}
.y156f_c00001{bottom:528.452925px;}
.y1127_c00001{bottom:528.626437px;}
.y1bbe_c00001{bottom:528.659108px;}
.y619_c00001{bottom:528.757242px;}
.y1bbf_c00001{bottom:529.170907px;}
.y52c_c00001{bottom:529.181512px;}
.y74d_c00001{bottom:529.253330px;}
.y61a_c00001{bottom:529.371870px;}
.y1570_c00001{bottom:529.398638px;}
.y1bc0_c00001{bottom:529.483493px;}
.y1128_c00001{bottom:529.538595px;}
.y441_c00001{bottom:529.545000px;}
.yede_c00001{bottom:529.589928px;}
.yfc5_c00001{bottom:529.612781px;}
.y52b_c00001{bottom:529.638825px;}
.y1bc1_c00001{bottom:529.757100px;}
.y1571_c00001{bottom:529.843988px;}
.y1af7_c00001{bottom:529.897500px;}
.ya4f_c00001{bottom:530.012082px;}
.y8d4_c00001{bottom:530.031000px;}
.y1129_c00001{bottom:530.085106px;}
.y349_c00001{bottom:530.110261px;}
.y1b7e_c00001{bottom:530.284500px;}
.y61b_c00001{bottom:530.364732px;}
.y1bc2_c00001{bottom:530.438205px;}
.y348_c00001{bottom:530.443081px;}
.y1b18_c00001{bottom:530.670000px;}
.y1caa_c00001{bottom:530.674500px;}
.y1b7f_c00001{bottom:530.706000px;}
.y1bc3_c00001{bottom:530.746628px;}
.y347_c00001{bottom:530.770622px;}
.ya50_c00001{bottom:530.874173px;}
.y1b80_c00001{bottom:531.007500px;}
.y1d06_c00001{bottom:531.094500px;}
.y1bc4_c00001{bottom:531.104250px;}
.y346_c00001{bottom:531.157371px;}
.y1bc5_c00001{bottom:531.405960px;}
.y442_c00001{bottom:531.534000px;}
.y1b81_c00001{bottom:531.589500px;}
.y52a_c00001{bottom:531.632738px;}
.y12fe_c00001{bottom:531.768000px;}
.y1b82_c00001{bottom:531.853500px;}
.y345_c00001{bottom:532.006595px;}
.y8d5_c00001{bottom:532.014443px;}
.y74e_c00001{bottom:532.278605px;}
.ya51_c00001{bottom:532.352865px;}
.y1d07_c00001{bottom:532.390500px;}
.y344_c00001{bottom:532.550977px;}
.yfc4_c00001{bottom:532.554417px;}
.y9b8_c00001{bottom:532.560336px;}
.y1b83_c00001{bottom:532.579500px;}
.y13e_c00001{bottom:532.710660px;}
.ya52_c00001{bottom:532.765521px;}
.y1b84_c00001{bottom:532.867500px;}
.y13f_c00001{bottom:532.882590px;}
.y8d6_c00001{bottom:532.896623px;}
.y1d08_c00001{bottom:532.954500px;}
.y140_c00001{bottom:533.028499px;}
.y343_c00001{bottom:533.105853px;}
.y1b85_c00001{bottom:533.134500px;}
.y9b7_c00001{bottom:533.160546px;}
.yfc3_c00001{bottom:533.214005px;}
.ya53_c00001{bottom:533.228745px;}
.y48_c00001{bottom:533.251500px;}
.y236_c00001{bottom:533.262000px;}
.y9b6_c00001{bottom:533.459637px;}
.y1c87_c00001{bottom:533.524500px;}
.y141_c00001{bottom:533.580952px;}
.y49_c00001{bottom:533.694000px;}
.y142_c00001{bottom:533.747322px;}
.y342_c00001{bottom:533.790036px;}
.yfc2_c00001{bottom:533.803500px;}
.y4a_c00001{bottom:533.877000px;}
.y143_c00001{bottom:533.952301px;}
.y9b5_c00001{bottom:534.168091px;}
.y4b_c00001{bottom:534.397500px;}
.y237_c00001{bottom:534.444060px;}
.y4c_c00001{bottom:534.570000px;}
.y74f_c00001{bottom:534.589442px;}
.y1d09_c00001{bottom:534.886500px;}
.y9b4_c00001{bottom:534.929878px;}
.y144_c00001{bottom:535.000712px;}
.y238_c00001{bottom:535.093725px;}
.y750_c00001{bottom:535.131170px;}
.y145_c00001{bottom:535.173021px;}
.y4d_c00001{bottom:535.200000px;}
.y9b3_c00001{bottom:535.298526px;}
.y4e_c00001{bottom:535.339500px;}
.y4f_c00001{bottom:535.548000px;}
.y9b2_c00001{bottom:535.624936px;}
.y8d7_c00001{bottom:535.702868px;}
.yba5_c00001{bottom:535.818204px;}
.y50_c00001{bottom:536.200500px;}
.y9b1_c00001{bottom:536.221500px;}
.yba4_c00001{bottom:536.232831px;}
.y1249_c00001{bottom:536.368500px;}
.y8d8_c00001{bottom:536.415515px;}
.y139f_c00001{bottom:536.499000px;}
.yba3_c00001{bottom:536.610972px;}
.yca9_c00001{bottom:536.760000px;}
.y239_c00001{bottom:536.796390px;}
.y8d9_c00001{bottom:537.407441px;}
.yded_c00001{bottom:537.622500px;}
.yba2_c00001{bottom:537.809028px;}
.yc82_c00001{bottom:537.840000px;}
.y175e_c00001{bottom:537.842330px;}
.ya54_c00001{bottom:537.953093px;}
.ycf3_c00001{bottom:538.109940px;}
.y3_c00001{bottom:538.110000px;}
.y1a26_c00001{bottom:538.215000px;}
.y193a_c00001{bottom:538.373634px;}
.yba1_c00001{bottom:538.379724px;}
.y1499_c00001{bottom:538.464000px;}
.y13a0_c00001{bottom:538.695519px;}
.y4_c00001{bottom:538.774500px;}
.y1662_c00001{bottom:538.874587px;}
.y1498_c00001{bottom:538.911000px;}
.y1c13_c00001{bottom:539.112000px;}
.y175f_c00001{bottom:539.170811px;}
.y10a5_c00001{bottom:539.191500px;}
.y5_c00001{bottom:539.229000px;}
.ycf4_c00001{bottom:539.331441px;}
.ydec_c00001{bottom:539.407500px;}
.y193b_c00001{bottom:539.455554px;}
.y1ccd_c00001{bottom:539.457000px;}
.y1858_c00001{bottom:539.468328px;}
.y1277_c00001{bottom:539.487000px;}
.y23a_c00001{bottom:539.501565px;}
.y1297_c00001{bottom:539.520000px;}
.ycca_c00001{bottom:539.610000px;}
.y1a52_c00001{bottom:539.623500px;}
.y1760_c00001{bottom:539.635050px;}
.y1a25_c00001{bottom:539.698500px;}
.yba0_c00001{bottom:539.731512px;}
.y1857_c00001{bottom:539.791212px;}
.ydeb_c00001{bottom:539.829000px;}
.y10a6_c00001{bottom:539.833500px;}
.y1661_c00001{bottom:539.861063px;}
.y1200_c00001{bottom:539.922000px;}
.yff_c00001{bottom:539.932500px;}
.y1497_c00001{bottom:539.968500px;}
.yed0_c00001{bottom:539.999415px;}
.y23b_c00001{bottom:540.055740px;}
.y8da_c00001{bottom:540.080423px;}
.y6_c00001{bottom:540.093000px;}
.y1761_c00001{bottom:540.093286px;}
.y7_c00001{bottom:540.265500px;}
.y1566_c00001{bottom:540.282821px;}
.y111a_c00001{bottom:540.285759px;}
.y13a1_c00001{bottom:540.294441px;}
.y1a24_c00001{bottom:540.388500px;}
.ycf5_c00001{bottom:540.409296px;}
.y1496_c00001{bottom:540.475500px;}
.y8db_c00001{bottom:540.555560px;}
.y10a7_c00001{bottom:540.639000px;}
.y1660_c00001{bottom:540.654075px;}
.yed1_c00001{bottom:540.690612px;}
.y1495_c00001{bottom:540.787500px;}
.yfc1_c00001{bottom:540.788397px;}
.y1a23_c00001{bottom:540.796500px;}
.ycf6_c00001{bottom:540.800253px;}
.y60f_c00001{bottom:540.808926px;}
.y82a_c00001{bottom:540.853299px;}
.y10a8_c00001{bottom:540.870000px;}
.y1856_c00001{bottom:540.973572px;}
.y193c_c00001{bottom:541.006554px;}
.y8_c00001{bottom:541.036500px;}
.ydea_c00001{bottom:541.071000px;}
.y10a9_c00001{bottom:541.081500px;}
.y111b_c00001{bottom:541.096359px;}
.y13a2_c00001{bottom:541.202985px;}
.yed2_c00001{bottom:541.266798px;}
.y829_c00001{bottom:541.283484px;}
.y1494_c00001{bottom:541.302000px;}
.y1227_c00001{bottom:541.323000px;}
.y111c_c00001{bottom:541.468732px;}
.yfc0_c00001{bottom:541.477336px;}
.ycf7_c00001{bottom:541.600302px;}
.y10aa_c00001{bottom:541.639500px;}
.ycf8_c00001{bottom:541.887150px;}
.y165f_c00001{bottom:541.904925px;}
.y1855_c00001{bottom:541.918872px;}
.y111d_c00001{bottom:541.941409px;}
.y1a22_c00001{bottom:541.948500px;}
.y10f2_c00001{bottom:541.959000px;}
.y828_c00001{bottom:541.965081px;}
.yde9_c00001{bottom:542.046000px;}
.y529_c00001{bottom:542.052000px;}
.y1493_c00001{bottom:542.164500px;}
.y23c_c00001{bottom:542.177940px;}
.y13a3_c00001{bottom:542.207430px;}
.yfbf_c00001{bottom:542.300634px;}
.y1567_c00001{bottom:542.331504px;}
.y1854_c00001{bottom:542.346444px;}
.y165e_c00001{bottom:542.426025px;}
.y433_c00001{bottom:542.442000px;}
.y743_c00001{bottom:542.451000px;}
.yde8_c00001{bottom:542.562000px;}
.y1762_c00001{bottom:542.607905px;}
.yed3_c00001{bottom:542.734212px;}
.y610_c00001{bottom:542.765370px;}
.y13a4_c00001{bottom:542.777688px;}
.y1763_c00001{bottom:542.903149px;}
.y111e_c00001{bottom:542.979750px;}
.y193d_c00001{bottom:542.987880px;}
.y1a21_c00001{bottom:543.010500px;}
.y827_c00001{bottom:543.069324px;}
.y1568_c00001{bottom:543.121362px;}
.ycf9_c00001{bottom:543.172530px;}
.y1853_c00001{bottom:543.241584px;}
.y1a6c_c00001{bottom:543.255000px;}
.y1378_c00001{bottom:543.265500px;}
.y611_c00001{bottom:543.408138px;}
.y1a20_c00001{bottom:543.495000px;}
.y528_c00001{bottom:543.603862px;}
.y165d_c00001{bottom:543.701513px;}
.y826_c00001{bottom:543.712239px;}
.yde7_c00001{bottom:543.786000px;}
.y825_c00001{bottom:543.839583px;}
.y1340_c00001{bottom:543.903000px;}
.yb44_c00001{bottom:543.919500px;}
.y1764_c00001{bottom:544.007730px;}
.yed4_c00001{bottom:544.145856px;}
.y612_c00001{bottom:544.158804px;}
.y111f_c00001{bottom:544.197052px;}
.y165c_c00001{bottom:544.297912px;}
.yfbe_c00001{bottom:544.326722px;}
.y744_c00001{bottom:544.341519px;}
.y527_c00001{bottom:544.370588px;}
.y1120_c00001{bottom:544.408731px;}
.y824_c00001{bottom:544.593000px;}
.y1a1f_c00001{bottom:544.594500px;}
.y193e_c00001{bottom:544.666530px;}
.yed5_c00001{bottom:544.729062px;}
.y434_c00001{bottom:544.732500px;}
.y1765_c00001{bottom:544.834040px;}
.y131f_c00001{bottom:544.983000px;}
.y1569_c00001{bottom:545.077238px;}
.y526_c00001{bottom:545.133450px;}
.y1121_c00001{bottom:545.281774px;}
.y745_c00001{bottom:545.344605px;}
.y165b_c00001{bottom:545.402812px;}
.yfbd_c00001{bottom:545.596519px;}
.y435_c00001{bottom:545.832000px;}
.yed6_c00001{bottom:545.926518px;}
.y1bb8_c00001{bottom:545.940337px;}
.y156a_c00001{bottom:546.121697px;}
.yfbc_c00001{bottom:546.274002px;}
.y1bb9_c00001{bottom:546.312750px;}
.ya47_c00001{bottom:546.483258px;}
.y8cf_c00001{bottom:546.500562px;}
.y746_c00001{bottom:546.574551px;}
.y613_c00001{bottom:546.676368px;}
.yed7_c00001{bottom:546.679218px;}
.y1af6_c00001{bottom:546.693000px;}
.yc81_c00001{bottom:546.750000px;}
.y341_c00001{bottom:546.836104px;}
.y747_c00001{bottom:546.857613px;}
.ya48_c00001{bottom:547.017447px;}
.y1b77_c00001{bottom:547.023000px;}
.y1bba_c00001{bottom:547.098427px;}
.y340_c00001{bottom:547.175794px;}
.y1bbb_c00001{bottom:547.231530px;}
.y1b17_c00001{bottom:547.275000px;}
.y8d0_c00001{bottom:547.439319px;}
.y436_c00001{bottom:547.465500px;}
.y1bbc_c00001{bottom:547.519792px;}
.y525_c00001{bottom:547.661362px;}
.y1b78_c00001{bottom:547.776000px;}
.y33f_c00001{bottom:547.824388px;}
.y437_c00001{bottom:548.004000px;}
.ya49_c00001{bottom:548.201303px;}
.y33e_c00001{bottom:548.244922px;}
.y614_c00001{bottom:548.278668px;}
.y9b0_c00001{bottom:548.306760px;}
.y1b79_c00001{bottom:548.335500px;}
.y12fd_c00001{bottom:548.346000px;}
.y1d00_c00001{bottom:548.374500px;}
.y33d_c00001{bottom:548.574978px;}
.y1b7a_c00001{bottom:548.592000px;}
.y1bbd_c00001{bottom:548.787135px;}
.ya4a_c00001{bottom:548.858538px;}
.y615_c00001{bottom:548.876538px;}
.y524_c00001{bottom:548.917500px;}
.y33c_c00001{bottom:548.944860px;}
.y9af_c00001{bottom:549.020964px;}
.yfbb_c00001{bottom:549.104121px;}
.y438_c00001{bottom:549.147000px;}
.y1b7b_c00001{bottom:549.178500px;}
.y33b_c00001{bottom:549.327150px;}
.y136_c00001{bottom:549.451500px;}
.y33a_c00001{bottom:549.514327px;}
.y8d1_c00001{bottom:549.536499px;}
.y1d01_c00001{bottom:549.751500px;}
.y137_c00001{bottom:549.870435px;}
.y1b7c_c00001{bottom:549.889500px;}
.y138_c00001{bottom:549.991974px;}
.y439_c00001{bottom:550.002000px;}
.y748_c00001{bottom:550.119495px;}
.y1b7d_c00001{bottom:550.150500px;}
.y139_c00001{bottom:550.208800px;}
.y1d02_c00001{bottom:550.216500px;}
.y339_c00001{bottom:550.259125px;}
.y1d03_c00001{bottom:550.566000px;}
.y13a_c00001{bottom:550.767128px;}
.y43a_c00001{bottom:550.777500px;}
.y22d_c00001{bottom:550.815000px;}
.ya4b_c00001{bottom:550.866962px;}
.y13b_c00001{bottom:550.930461px;}
.y749_c00001{bottom:550.954773px;}
.y22e_c00001{bottom:551.303317px;}
.ya4c_c00001{bottom:551.337615px;}
.yfba_c00001{bottom:551.364040px;}
.y13c_c00001{bottom:551.527909px;}
.y1d04_c00001{bottom:551.710500px;}
.y47_c00001{bottom:551.745000px;}
.y13d_c00001{bottom:551.756649px;}
.y43b_c00001{bottom:551.901000px;}
.y42c_c00001{bottom:552.177000px;}
.y22f_c00001{bottom:552.328561px;}
.y1d05_c00001{bottom:552.364500px;}
.y74a_c00001{bottom:552.366378px;}
.y9ae_c00001{bottom:552.448991px;}
.y8d2_c00001{bottom:552.493431px;}
.ya4d_c00001{bottom:552.622919px;}
.y230_c00001{bottom:552.954291px;}
.yb9f_c00001{bottom:553.122612px;}
.y42d_c00001{bottom:553.225500px;}
.ya4e_c00001{bottom:553.241023px;}
.yb9e_c00001{bottom:553.617819px;}
.y1248_c00001{bottom:553.648500px;}
.yca8_c00001{bottom:553.723500px;}
.yceb_c00001{bottom:553.777500px;}
.y1397_c00001{bottom:554.044500px;}
.yca7_c00001{bottom:554.094000px;}
.y1c86_c00001{bottom:554.314500px;}
.yb9d_c00001{bottom:554.483115px;}
.y1754_c00001{bottom:554.586000px;}
.y1398_c00001{bottom:554.704956px;}
.y231_c00001{bottom:554.722282px;}
.yc80_c00001{bottom:554.728500px;}
.y9ad_c00001{bottom:554.799771px;}
.yca6_c00001{bottom:554.808000px;}
.yb9c_c00001{bottom:554.935203px;}
.yca5_c00001{bottom:554.985000px;}
.y1755_c00001{bottom:555.173500px;}
.y1399_c00001{bottom:555.187896px;}
.ycec_c00001{bottom:555.322065px;}
.y232_c00001{bottom:555.361328px;}
.y1756_c00001{bottom:555.367529px;}
.y1934_c00001{bottom:555.390360px;}
.y42e_c00001{bottom:555.550500px;}
.y1492_c00001{bottom:555.573000px;}
.yca4_c00001{bottom:555.600000px;}
.ya43_c00001{bottom:555.660000px;}
.y139a_c00001{bottom:555.680088px;}
.yced_c00001{bottom:555.844653px;}
.yca3_c00001{bottom:555.912000px;}
.y1c12_c00001{bottom:555.939000px;}
.y1a1e_c00001{bottom:555.955500px;}
.y1491_c00001{bottom:555.985500px;}
.yde6_c00001{bottom:556.041000px;}
.ycee_c00001{bottom:556.146999px;}
.y2_c00001{bottom:556.156500px;}
.y8d3_c00001{bottom:556.300311px;}
.y1490_c00001{bottom:556.362000px;}
.y165a_c00001{bottom:556.381575px;}
.y109c_c00001{bottom:556.470000px;}
.y11ff_c00001{bottom:556.516500px;}
.yde5_c00001{bottom:556.522500px;}
.yfe_c00001{bottom:556.524000px;}
.ycc9_c00001{bottom:556.548000px;}
.y1296_c00001{bottom:556.552500px;}
.y42f_c00001{bottom:556.611000px;}
.y1276_c00001{bottom:556.618500px;}
.y1935_c00001{bottom:556.690506px;}
.y1757_c00001{bottom:556.692053px;}
.yca2_c00001{bottom:556.740000px;}
.yb9b_c00001{bottom:556.830306px;}
.y109d_c00001{bottom:556.911000px;}
.y155f_c00001{bottom:557.017331px;}
.yec9_c00001{bottom:557.019000px;}
.y233_c00001{bottom:557.081205px;}
.y139b_c00001{bottom:557.125344px;}
.y1758_c00001{bottom:557.152765px;}
.yb9a_c00001{bottom:557.156223px;}
.y1659_c00001{bottom:557.183063px;}
.yfb9_c00001{bottom:557.411193px;}
.y109e_c00001{bottom:557.508000px;}
.yde4_c00001{bottom:557.542500px;}
.yb99_c00001{bottom:557.554500px;}
.ycef_c00001{bottom:557.578077px;}
.y1226_c00001{bottom:557.604000px;}
.y1759_c00001{bottom:557.646150px;}
.y234_c00001{bottom:557.668968px;}
.y1a1d_c00001{bottom:557.677500px;}
.y1658_c00001{bottom:557.758500px;}
.yde3_c00001{bottom:557.821500px;}
.ycf0_c00001{bottom:557.927151px;}
.y148f_c00001{bottom:557.949000px;}
.y109f_c00001{bottom:558.025500px;}
.y139c_c00001{bottom:558.069120px;}
.y1114_c00001{bottom:558.096081px;}
.y1936_c00001{bottom:558.128541px;}
.y1852_c00001{bottom:558.174456px;}
.y10a0_c00001{bottom:558.244500px;}
.y1a1c_c00001{bottom:558.295500px;}
.y9ac_c00001{bottom:558.327138px;}
.y1560_c00001{bottom:558.347328px;}
.y175a_c00001{bottom:558.404701px;}
.y1851_c00001{bottom:558.430680px;}
.y10a1_c00001{bottom:558.459000px;}
.y139d_c00001{bottom:558.571968px;}
.y235_c00001{bottom:558.580807px;}
.yeca_c00001{bottom:558.758088px;}
.yde2_c00001{bottom:558.820500px;}
.y1115_c00001{bottom:558.853008px;}
.yb43_c00001{bottom:558.865500px;}
.y1561_c00001{bottom:558.927306px;}
.y1937_c00001{bottom:558.931287px;}
.y10a2_c00001{bottom:559.071000px;}
.ycf1_c00001{bottom:559.116834px;}
.y10a3_c00001{bottom:559.201500px;}
.y10f1_c00001{bottom:559.239000px;}
.y1562_c00001{bottom:559.242869px;}
.y175b_c00001{bottom:559.249054px;}
.yb42_c00001{bottom:559.257000px;}
.y430_c00001{bottom:559.275000px;}
.y148e_c00001{bottom:559.309500px;}
.y1850_c00001{bottom:559.310664px;}
.y148d_c00001{bottom:559.366500px;}
.y1a1b_c00001{bottom:559.431000px;}
.y608_c00001{bottom:559.438980px;}
.ycf2_c00001{bottom:559.502835px;}
.y1657_c00001{bottom:559.513613px;}
.yecb_c00001{bottom:559.543704px;}
.y523_c00001{bottom:559.600974px;}
.y10a4_c00001{bottom:559.608000px;}
.y1377_c00001{bottom:559.710000px;}
.y1a6b_c00001{bottom:559.800000px;}
.y175c_c00001{bottom:559.852390px;}
.y1116_c00001{bottom:559.878699px;}
.y184f_c00001{bottom:559.949256px;}
.y148c_c00001{bottom:559.984500px;}
.y609_c00001{bottom:559.989366px;}
.yb41_c00001{bottom:560.133000px;}
.y522_c00001{bottom:560.140382px;}
.yecc_c00001{bottom:560.165637px;}
.y1117_c00001{bottom:560.171730px;}
.y184e_c00001{bottom:560.212536px;}
.yde1_c00001{bottom:560.230500px;}
.y8cc_c00001{bottom:560.251500px;}
.y1a1a_c00001{bottom:560.265000px;}
.y73d_c00001{bottom:560.270289px;}
.y1656_c00001{bottom:560.290312px;}
.y1563_c00001{bottom:560.362118px;}
.yfb8_c00001{bottom:560.452200px;}
.yb40_c00001{bottom:560.496000px;}
.ya44_c00001{bottom:560.526000px;}
.y521_c00001{bottom:560.540858px;}
.y139e_c00001{bottom:560.565072px;}
.y1938_c00001{bottom:560.630904px;}
.y1a19_c00001{bottom:560.695500px;}
.y1564_c00001{bottom:560.773580px;}
.yb3f_c00001{bottom:560.802000px;}
.y133f_c00001{bottom:561.007500px;}
.yde0_c00001{bottom:561.064500px;}
.y175d_c00001{bottom:561.136791px;}
.y1939_c00001{bottom:561.236664px;}
.y1118_c00001{bottom:561.256018px;}
.y184d_c00001{bottom:561.341232px;}
.y131e_c00001{bottom:561.535500px;}
.yecd_c00001{bottom:561.641904px;}
.y520_c00001{bottom:561.680048px;}
.y60a_c00001{bottom:561.693072px;}
.y1119_c00001{bottom:561.857496px;}
.y12f8_c00001{bottom:561.870000px;}
.y184c_c00001{bottom:561.873000px;}
.y9ab_c00001{bottom:561.878901px;}
.yb3e_c00001{bottom:561.978000px;}
.y51f_c00001{bottom:562.140036px;}
.y1bb2_c00001{bottom:562.143000px;}
.y46_c00001{bottom:562.144500px;}
.y1655_c00001{bottom:562.147500px;}
.yece_c00001{bottom:562.181157px;}
.yb3d_c00001{bottom:562.248000px;}
.y1565_c00001{bottom:562.278209px;}
.y73e_c00001{bottom:562.297755px;}
.y431_c00001{bottom:562.332000px;}
.yfb7_c00001{bottom:562.427706px;}
.y60b_c00001{bottom:562.447854px;}
.y51e_c00001{bottom:562.599749px;}
.y60c_c00001{bottom:562.725144px;}
.y51d_c00001{bottom:562.907454px;}
.y1bb3_c00001{bottom:562.940827px;}
.y73f_c00001{bottom:562.942520px;}
.yb3c_c00001{bottom:562.953000px;}
.y338_c00001{bottom:563.056622px;}
.y337_c00001{bottom:563.380338px;}
.y1bb4_c00001{bottom:563.852392px;}
.y1af5_c00001{bottom:563.941500px;}
.y51c_c00001{bottom:564.002139px;}
.y1bb5_c00001{bottom:564.111750px;}
.y432_c00001{bottom:564.280500px;}
.yecf_c00001{bottom:564.490308px;}
.y51b_c00001{bottom:564.507012px;}
.y1b16_c00001{bottom:564.577500px;}
.y60d_c00001{bottom:564.587676px;}
.y336_c00001{bottom:564.606247px;}
.yfb6_c00001{bottom:564.714204px;}
.ya45_c00001{bottom:564.825714px;}
.y1cf8_c00001{bottom:564.847500px;}
.y8cd_c00001{bottom:564.892968px;}
.y740_c00001{bottom:564.901351px;}
.y60e_c00001{bottom:564.908982px;}
.y51a_c00001{bottom:564.954305px;}
.y335_c00001{bottom:564.979606px;}
.y1bb6_c00001{bottom:565.006755px;}
.y334_c00001{bottom:565.206132px;}
.y1bb7_c00001{bottom:565.240958px;}
.y1b76_c00001{bottom:565.251000px;}
.y12fc_c00001{bottom:565.330500px;}
.y519_c00001{bottom:565.656000px;}
.y8c3_c00001{bottom:565.681500px;}
.y9aa_c00001{bottom:566.193000px;}
.y227_c00001{bottom:566.208000px;}
.y333_c00001{bottom:566.209029px;}
.y1cf9_c00001{bottom:566.284500px;}
.ya46_c00001{bottom:566.459792px;}
.y332_c00001{bottom:566.739595px;}
.y135_c00001{bottom:566.872500px;}
.y1cfa_c00001{bottom:566.895000px;}
.y8ce_c00001{bottom:566.951154px;}
.y741_c00001{bottom:567.149592px;}
.y331_c00001{bottom:567.230481px;}
.y1cfb_c00001{bottom:567.327000px;}
.y1c85_c00001{bottom:567.513000px;}
.y330_c00001{bottom:567.543824px;}
.yfb5_c00001{bottom:567.828000px;}
.y1cfc_c00001{bottom:567.925500px;}
.y1c11_c00001{bottom:568.489500px;}
.yc7f_c00001{bottom:568.630500px;}
.y1275_c00001{bottom:568.786500px;}
.y1cfd_c00001{bottom:568.789500px;}
.y9a9_c00001{bottom:568.882500px;}
.y742_c00001{bottom:569.051387px;}
.y1cfe_c00001{bottom:569.236500px;}
.y228_c00001{bottom:569.542500px;}
.y11fe_c00001{bottom:569.836500px;}
.y1cff_c00001{bottom:570.012000px;}
.y1_c00001{bottom:570.240000px;}
.y73a_c00001{bottom:570.256500px;}
.ycea_c00001{bottom:570.366000px;}
.y423_c00001{bottom:570.531000px;}
.y1247_c00001{bottom:570.642000px;}
.y1112_c00001{bottom:570.781500px;}
.yca1_c00001{bottom:571.056000px;}
.y1753_c00001{bottom:571.060500px;}
.yfd_c00001{bottom:571.174500px;}
.y229_c00001{bottom:571.206000px;}
.y424_c00001{bottom:571.309500px;}
.y1654_c00001{bottom:571.549500px;}
.y1225_c00001{bottom:571.725000px;}
.y184b_c00001{bottom:571.732500px;}
.y607_c00001{bottom:571.864500px;}
.y22a_c00001{bottom:572.371500px;}
.y1a51_c00001{bottom:572.799000px;}
.ycc8_c00001{bottom:572.805000px;}
.yb98_c00001{bottom:572.940000px;}
.y1396_c00001{bottom:573.067500px;}
.y148b_c00001{bottom:573.079500px;}
.y425_c00001{bottom:573.114000px;}
.y1113_c00001{bottom:573.114087px;}
.y1ca9_c00001{bottom:573.201000px;}
.y155c_c00001{bottom:573.214500px;}
.y22b_c00001{bottom:573.324000px;}
.yb3b_c00001{bottom:573.738000px;}
.y426_c00001{bottom:574.029000px;}
.y518_c00001{bottom:574.290000px;}
.y1931_c00001{bottom:574.299000px;}
.y109b_c00001{bottom:574.425000px;}
.y10f0_c00001{bottom:574.696500px;}
.yddf_c00001{bottom:574.968000px;}
.y823_c00001{bottom:575.227500px;}
.yec8_c00001{bottom:575.392500px;}
.y1a18_c00001{bottom:575.628000px;}
.y427_c00001{bottom:575.767500px;}
.y428_c00001{bottom:576.243000px;}
.y22c_c00001{bottom:576.306000px;}
.y1932_c00001{bottom:576.485847px;}
.y155d_c00001{bottom:576.628344px;}
.y1376_c00001{bottom:576.990000px;}
.y429_c00001{bottom:577.021500px;}
.y73b_c00001{bottom:577.233723px;}
.y1933_c00001{bottom:577.503591px;}
.y133e_c00001{bottom:577.938000px;}
.y1a6a_c00001{bottom:578.070000px;}
.y1b15_c00001{bottom:578.182500px;}
.yfb4_c00001{bottom:578.202000px;}
.y1af4_c00001{bottom:578.488500px;}
.y42a_c00001{bottom:578.544000px;}
.y12fb_c00001{bottom:578.610000px;}
.y131d_c00001{bottom:579.015000px;}
.y32f_c00001{bottom:579.016317px;}
.y1b75_c00001{bottom:579.820500px;}
.y42b_c00001{bottom:579.937500px;}
.y73c_c00001{bottom:579.987754px;}
.y1cf7_c00001{bottom:580.636500px;}
.y1bb1_c00001{bottom:580.641000px;}
.y155e_c00001{bottom:580.648500px;}
.y32e_c00001{bottom:581.644866px;}
.y32d_c00001{bottom:582.120000px;}
.y226_c00001{bottom:588.195000px;}
.y1752_c00001{bottom:588.600000px;}
.y422_c00001{bottom:592.510500px;}
.y1d8f_c00001{bottom:1064.853000px;}
.y1d90_c00001{bottom:1188.000000px;}
.y1d8e_c00001{bottom:1189.606500px;}
.y1d91_c00001{bottom:1236.330000px;}
.y1d8d_c00001{bottom:1262.814000px;}
.h181_c00001{height:15.750000px;}
.hfe_c00001{height:16.800000px;}
.h19f_c00001{height:18.900000px;}
.h66_c00001{height:21.001228px;}
.h5c_c00001{height:22.050000px;}
.h47_c00001{height:24.146160px;}
.hd2_c00001{height:24.150000px;}
.h182_c00001{height:26.250000px;}
.h98_c00001{height:27.300000px;}
.h1aa_c00001{height:28.336176px;}
.h4d_c00001{height:28.350000px;}
.h16b_c00001{height:30.456713px;}
.h142_c00001{height:31.500000px;}
.h1b3_c00001{height:31.509071px;}
.h4e_c00001{height:35.700000px;}
.ha5_c00001{height:36.739800px;}
.h1a3_c00001{height:36.753601px;}
.hb5_c00001{height:37.800000px;}
.h19e_c00001{height:38.850000px;}
.h1a9_c00001{height:39.880544px;}
.h1a7_c00001{height:40.950000px;}
.hb6_c00001{height:42.000000px;}
.he7_c00001{height:43.050000px;}
.h3f_c00001{height:45.158149px;}
.h12e_c00001{height:45.166454px;}
.h18e_c00001{height:46.200000px;}
.hef_c00001{height:46.207484px;}
.h1a0_c00001{height:47.250000px;}
.h5d_c00001{height:50.400000px;}
.h19c_c00001{height:50.404939px;}
.h60_c00001{height:51.443954px;}
.he3_c00001{height:51.454347px;}
.ha1_c00001{height:52.485429px;}
.h1a6_c00001{height:52.500000px;}
.h14b_c00001{height:53.550000px;}
.h1a1_c00001{height:53.553855px;}
.h18b_c00001{height:53.562958px;}
.h15d_c00001{height:53.575725px;}
.h132_c00001{height:54.575151px;}
.h101_c00001{height:54.600000px;}
.h191_c00001{height:54.606142px;}
.h180_c00001{height:54.608844px;}
.h36_c00001{height:54.612038px;}
.h189_c00001{height:54.613212px;}
.h1b4_c00001{height:54.622954px;}
.h133_c00001{height:55.624673px;}
.h118_c00001{height:55.650000px;}
.h17b_c00001{height:55.657123px;}
.h17d_c00001{height:55.659015px;}
.h148_c00001{height:55.660044px;}
.h1a5_c00001{height:55.661129px;}
.h10b_c00001{height:55.663466px;}
.h172_c00001{height:55.664717px;}
.h170_c00001{height:55.666025px;}
.h155_c00001{height:55.667388px;}
.h12c_c00001{height:55.668807px;}
.h117_c00001{height:55.670281px;}
.h121_c00001{height:55.673396px;}
.h2d_c00001{height:56.700000px;}
.h143_c00001{height:56.707257px;}
.hed_c00001{height:56.709185px;}
.h167_c00001{height:56.710233px;}
.h14e_c00001{height:56.711339px;}
.h16c_c00001{height:56.712501px;}
.h185_c00001{height:56.713720px;}
.h119_c00001{height:56.714995px;}
.h14d_c00001{height:56.719161px;}
.h11f_c00001{height:56.720663px;}
.h134_c00001{height:57.723718px;}
.h74_c00001{height:57.740817px;}
.h67_c00001{height:57.745669px;}
.h100_c00001{height:57.750000px;}
.hfa_c00001{height:57.754880px;}
.hf6_c00001{height:57.755659px;}
.h197_c00001{height:57.756497px;}
.h17a_c00001{height:57.757392px;}
.h1a8_c00001{height:57.758344px;}
.h171_c00001{height:57.759355px;}
.h1a_c00001{height:57.761549px;}
.h169_c00001{height:57.762732px;}
.h186_c00001{height:57.763974px;}
.h11b_c00001{height:57.768044px;}
.h125_c00001{height:57.769516px;}
.h112_c00001{height:57.771046px;}
.h15a_c00001{height:57.777742px;}
.h135_c00001{height:58.773240px;}
.h13d_c00001{height:58.775211px;}
.ha7_c00001{height:58.783681px;}
.h14_c00001{height:58.800000px;}
.hf9_c00001{height:58.804968px;}
.hf1_c00001{height:58.805762px;}
.h199_c00001{height:58.806615px;}
.h19_c00001{height:58.807526px;}
.hec_c00001{height:58.809525px;}
.h3b_c00001{height:58.810612px;}
.h34_c00001{height:58.812964px;}
.h188_c00001{height:58.814228px;}
.h174_c00001{height:58.815551px;}
.h163_c00001{height:58.816932px;}
.h153_c00001{height:58.818372px;}
.h124_c00001{height:58.819871px;}
.h111_c00001{height:58.821429px;}
.h90_c00001{height:58.823045px;}
.hd9_c00001{height:58.824720px;}
.h156_c00001{height:58.828247px;}
.h2e_c00001{height:59.822762px;}
.h13e_c00001{height:59.824768px;}
.h94_c00001{height:59.833389px;}
.h12_c00001{height:59.850000px;}
.h194_c00001{height:59.853621px;}
.h192_c00001{height:59.855057px;}
.hf3_c00001{height:59.855865px;}
.h18f_c00001{height:59.856733px;}
.h176_c00001{height:59.857660px;}
.hea_c00001{height:59.859695px;}
.h165_c00001{height:59.860802px;}
.hfc_c00001{height:59.861969px;}
.h184_c00001{height:59.864482px;}
.h160_c00001{height:59.865828px;}
.h9a_c00001{height:59.867234px;}
.h152_c00001{height:59.868700px;}
.h126_c00001{height:59.870226px;}
.h115_c00001{height:59.871811px;}
.h84_c00001{height:59.873457px;}
.hc9_c00001{height:59.875162px;}
.h15c_c00001{height:59.878751px;}
.h4b_c00001{height:60.870304px;}
.h136_c00001{height:60.872284px;}
.h95_c00001{height:60.883098px;}
.hbb_c00001{height:60.885443px;}
.h6d_c00001{height:60.890316px;}
.h14f_c00001{height:60.892844px;}
.h6a_c00001{height:60.895432px;}
.he_c00001{height:60.900000px;}
.h54_c00001{height:60.903684px;}
.h19a_c00001{height:60.905146px;}
.hf8_c00001{height:60.905968px;}
.h178_c00001{height:60.907795px;}
.h17c_c00001{height:60.909865px;}
.h166_c00001{height:60.910991px;}
.hfd_c00001{height:60.912179px;}
.h38_c00001{height:60.913427px;}
.h103_c00001{height:60.914736px;}
.h161_c00001{height:60.916106px;}
.h16f_c00001{height:60.917537px;}
.h151_c00001{height:60.919028px;}
.h127_c00001{height:60.920581px;}
.h10e_c00001{height:60.922194px;}
.h8f_c00001{height:60.923868px;}
.hdf_c00001{height:60.925603px;}
.h139_c00001{height:61.921806px;}
.ha3_c00001{height:61.932806px;}
.hc1_c00001{height:61.935192px;}
.h61_c00001{height:61.942720px;}
.hbc_c00001{height:61.945354px;}
.h9_c00001{height:61.950000px;}
.h57_c00001{height:61.953748px;}
.h19d_c00001{height:61.954460px;}
.h26_c00001{height:61.955235px;}
.hf0_c00001{height:61.956071px;}
.h17_c00001{height:61.957929px;}
.hb3_c00001{height:61.960035px;}
.h35_c00001{height:61.963658px;}
.h104_c00001{height:61.964990px;}
.h150_c00001{height:61.969356px;}
.h12b_c00001{height:61.970936px;}
.h10c_c00001{height:61.972577px;}
.h8b_c00001{height:61.974280px;}
.hd6_c00001{height:61.976045px;}
.h45_c00001{height:61.977871px;}
.h157_c00001{height:61.979760px;}
.h137_c00001{height:62.971328px;}
.h13c_c00001{height:62.973440px;}
.hae_c00001{height:62.982515px;}
.hc6_c00001{height:62.984941px;}
.h6c_c00001{height:62.989982px;}
.h62_c00001{height:62.992597px;}
.hd_c00001{height:63.000000px;}
.h5b_c00001{height:63.003811px;}
.h1e_c00001{height:63.004536px;}
.h2c_c00001{height:63.005323px;}
.hf5_c00001{height:63.006174px;}
.h15_c00001{height:63.007087px;}
.hee_c00001{height:63.010205px;}
.h109_c00001{height:63.015244px;}
.h7d_c00001{height:63.019684px;}
.h12d_c00001{height:63.021290px;}
.h113_c00001{height:63.022959px;}
.h31_c00001{height:63.024691px;}
.hda_c00001{height:63.026486px;}
.h12f_c00001{height:64.020851px;}
.h6b_c00001{height:64.022997px;}
.ha2_c00001{height:64.032224px;}
.hc4_c00001{height:64.034690px;}
.h49_c00001{height:64.039815px;}
.h5f_c00001{height:64.042474px;}
.h68_c00001{height:64.045196px;}
.hb_c00001{height:64.050000px;}
.h5e_c00001{height:64.050833px;}
.h55_c00001{height:64.053875px;}
.h28_c00001{height:64.055412px;}
.h193_c00001{height:64.057205px;}
.h16e_c00001{height:64.059255px;}
.hb2_c00001{height:64.060375px;}
.hfb_c00001{height:64.062809px;}
.h16a_c00001{height:64.064121px;}
.h106_c00001{height:64.065498px;}
.h1b_c00001{height:64.066939px;}
.h154_c00001{height:64.070012px;}
.h12a_c00001{height:64.071645px;}
.h11d_c00001{height:64.073342px;}
.h30_c00001{height:64.075103px;}
.hde_c00001{height:64.076927px;}
.h15b_c00001{height:64.080769px;}
.h138_c00001{height:65.070373px;}
.h42_c00001{height:65.072555px;}
.hc7_c00001{height:65.084439px;}
.h73_c00001{height:65.089648px;}
.h11_c00001{height:65.100000px;}
.h51_c00001{height:65.103938px;}
.hcf_c00001{height:65.104687px;}
.h25_c00001{height:65.105501px;}
.hf2_c00001{height:65.106379px;}
.h190_c00001{height:65.107323px;}
.h1b1_c00001{height:65.108332px;}
.h16d_c00001{height:65.109406px;}
.h175_c00001{height:65.111749px;}
.h108_c00001{height:65.115752px;}
.h86_c00001{height:65.117217px;}
.h7e_c00001{height:65.118746px;}
.h7c_c00001{height:65.120341px;}
.h128_c00001{height:65.122000px;}
.h10f_c00001{height:65.123725px;}
.h8d_c00001{height:65.125514px;}
.hdc_c00001{height:65.127369px;}
.h15e_c00001{height:65.131273px;}
.h4c_c00001{height:66.117744px;}
.h9f_c00001{height:66.119895px;}
.ha9_c00001{height:66.131641px;}
.hc2_c00001{height:66.134188px;}
.h71_c00001{height:66.139481px;}
.h63_c00001{height:66.142227px;}
.h69_c00001{height:66.145039px;}
.h4_c00001{height:66.150000px;}
.hd1_c00001{height:66.154002px;}
.hf4_c00001{height:66.156482px;}
.h196_c00001{height:66.157441px;}
.h18_c00001{height:66.158467px;}
.h17f_c00001{height:66.160715px;}
.h149_c00001{height:66.161939px;}
.h164_c00001{height:66.163229px;}
.h39_c00001{height:66.164584px;}
.h107_c00001{height:66.166006px;}
.h173_c00001{height:66.167494px;}
.h9c_c00001{height:66.169048px;}
.h7b_c00001{height:66.170669px;}
.h120_c00001{height:66.172355px;}
.h110_c00001{height:66.174107px;}
.h83_c00001{height:66.175926px;}
.hdb_c00001{height:66.177810px;}
.h159_c00001{height:66.181777px;}
.h130_c00001{height:67.169417px;}
.ha4_c00001{height:67.181349px;}
.hc5_c00001{height:67.183937px;}
.h72_c00001{height:67.189314px;}
.h10_c00001{height:67.200000px;}
.h58_c00001{height:67.204065px;}
.h2a_c00001{height:67.205678px;}
.hf7_c00001{height:67.206585px;}
.h198_c00001{height:67.207560px;}
.h17e_c00001{height:67.210886px;}
.h96_c00001{height:67.212129px;}
.h187_c00001{height:67.216260px;}
.h88_c00001{height:67.217772px;}
.h9b_c00001{height:67.219351px;}
.h79_c00001{height:67.220997px;}
.h123_c00001{height:67.222710px;}
.h114_c00001{height:67.224490px;}
.h82_c00001{height:67.226337px;}
.hd7_c00001{height:67.228252px;}
.h158_c00001{height:67.232282px;}
.h131_c00001{height:68.218939px;}
.h41_c00001{height:68.221227px;}
.hc0_c00001{height:68.233686px;}
.h6e_c00001{height:68.239147px;}
.h6_c00001{height:68.250000px;}
.h50_c00001{height:68.254129px;}
.he4_c00001{height:68.254914px;}
.h23_c00001{height:68.255767px;}
.hb1_c00001{height:68.256688px;}
.h179_c00001{height:68.258735px;}
.heb_c00001{height:68.261056px;}
.h97_c00001{height:68.262318px;}
.h168_c00001{height:68.265047px;}
.h10a_c00001{height:68.266515px;}
.h162_c00001{height:68.268050px;}
.h80_c00001{height:68.271325px;}
.h129_c00001{height:68.273065px;}
.h10d_c00001{height:68.274873px;}
.h33_c00001{height:68.276749px;}
.hdd_c00001{height:68.278693px;}
.h13a_c00001{height:69.268461px;}
.hbd_c00001{height:69.283435px;}
.h70_c00001{height:69.288980px;}
.ha_c00001{height:69.300000px;}
.h20_c00001{height:69.304193px;}
.hce_c00001{height:69.304989px;}
.h22_c00001{height:69.305856px;}
.h1a2_c00001{height:69.306791px;}
.he9_c00001{height:69.311226px;}
.h1a4_c00001{height:69.313859px;}
.h18a_c00001{height:69.316769px;}
.h7f_c00001{height:69.318327px;}
.h7a_c00001{height:69.321653px;}
.h13f_c00001{height:69.323419px;}
.h116_c00001{height:69.325255px;}
.h81_c00001{height:69.327160px;}
.hd5_c00001{height:69.329135px;}
.h40_c00001{height:70.317983px;}
.h43_c00001{height:70.320341px;}
.hb8_c00001{height:70.325268px;}
.haa_c00001{height:70.330475px;}
.hbe_c00001{height:70.333184px;}
.h6f_c00001{height:70.338813px;}
.hf_c00001{height:70.350000px;}
.h4f_c00001{height:70.354256px;}
.h21_c00001{height:70.355944px;}
.h87_c00001{height:70.368605px;}
.h9d_c00001{height:70.370258px;}
.h78_c00001{height:70.371981px;}
.h140_c00001{height:70.373774px;}
.h11e_c00001{height:70.375638px;}
.h8c_c00001{height:70.377572px;}
.hc8_c00001{height:70.379576px;}
.ha8_c00001{height:71.380184px;}
.hc3_c00001{height:71.382933px;}
.h4a_c00001{height:71.388646px;}
.h65_c00001{height:71.397751px;}
.hc_c00001{height:71.400000px;}
.h5_c00001{height:71.403570px;}
.h59_c00001{height:71.404320px;}
.he5_c00001{height:71.405141px;}
.h29_c00001{height:71.406033px;}
.hd0_c00001{height:71.408032px;}
.h102_c00001{height:71.417277px;}
.h183_c00001{height:71.424129px;}
.h8a_c00001{height:71.427983px;}
.he0_c00001{height:71.430017px;}
.hab_c00001{height:72.429892px;}
.hbf_c00001{height:72.432682px;}
.h7_c00001{height:72.450000px;}
.h53_c00001{height:72.454383px;}
.h24_c00001{height:72.456122px;}
.hb0_c00001{height:72.457100px;}
.h177_c00001{height:72.459273px;}
.h105_c00001{height:72.467531px;}
.h85_c00001{height:72.469160px;}
.h14c_c00001{height:72.470863px;}
.h11a_c00001{height:72.472637px;}
.hba_c00001{height:72.474484px;}
.hd4_c00001{height:72.480459px;}
.ha0_c00001{height:73.479601px;}
.h8_c00001{height:73.500000px;}
.h52_c00001{height:73.504447px;}
.h27_c00001{height:73.506210px;}
.h77_c00001{height:73.519438px;}
.h11c_c00001{height:73.522965px;}
.hd8_c00001{height:73.530900px;}
.hcd_c00001{height:74.513797px;}
.h1d_c00001{height:74.554510px;}
.h2b_c00001{height:74.556299px;}
.h64_c00001{height:74.566436px;}
.h91_c00001{height:74.579218px;}
.hac_c00001{height:75.579018px;}
.h3_c00001{height:75.600000px;}
.h56_c00001{height:75.604574px;}
.h8e_c00001{height:75.629629px;}
.h93_c00001{height:76.628727px;}
.he2_c00001{height:76.650000px;}
.h92_c00001{height:76.680041px;}
.h2f_c00001{height:76.684485px;}
.ha6_c00001{height:77.678435px;}
.hb4_c00001{height:77.700000px;}
.h5a_c00001{height:77.704701px;}
.haf_c00001{height:78.728144px;}
.h15f_c00001{height:78.750000px;}
.had_c00001{height:79.777852px;}
.h2_c00001{height:79.800000px;}
.h16_c00001{height:79.806743px;}
.h37_c00001{height:79.817594px;}
.h122_c00001{height:80.850000px;}
.h3a_c00001{height:80.867825px;}
.h46_c00001{height:80.886374px;}
.h1c_c00001{height:81.900000px;}
.hd3_c00001{height:82.984873px;}
.h144_c00001{height:84.000000px;}
.h44_c00001{height:85.014144px;}
.h48_c00001{height:85.036476px;}
.hff_c00001{height:85.050000px;}
.h1b2_c00001{height:85.054252px;}
.h1f_c00001{height:85.055145px;}
.h3d_c00001{height:85.065350px;}
.h14a_c00001{height:86.100000px;}
.h1b0_c00001{height:87.150000px;}
.h76_c00001{height:88.200000px;}
.h3e_c00001{height:88.215919px;}
.hb7_c00001{height:89.250000px;}
.h3c_c00001{height:92.416677px;}
.h32_c00001{height:93.486625px;}
.h18d_c00001{height:94.500000px;}
.h75_c00001{height:95.550000px;}
.h99_c00001{height:98.700000px;}
.h9e_c00001{height:99.704603px;}
.h19b_c00001{height:112.350000px;}
.h1af_c00001{height:112.366233px;}
.hb9_c00001{height:115.539032px;}
.he6_c00001{height:116.550000px;}
.h141_c00001{height:118.650000px;}
.h147_c00001{height:119.700000px;}
.he8_c00001{height:120.750000px;}
.h13b_c00001{height:121.748650px;}
.h13_c00001{height:122.865724px;}
.h195_c00001{height:123.900000px;}
.h89_c00001{height:124.998971px;}
.he1_c00001{height:131.250000px;}
.hcc_c00001{height:162.670966px;}
.h18c_c00001{height:275.100000px;}
.hcb_c00001{height:611.250000px;}
.hca_c00001{height:611.550000px;}
.h0_c00001{height:617.700000px;}
.h1_c00001{height:618.000000px;}
.h145_c00001{height:618.570000px;}
.h146_c00001{height:618.750000px;}
.h1ab_c00001{height:686.070000px;}
.h1ac_c00001{height:686.250000px;}
.h1ae_c00001{height:1280.250000px;}
.h1ad_c00001{height:1280.550000px;}
.w0_c00001{width:359.100000px;}
.w1_c00001{width:359.250000px;}
.w3_c00001{width:555.750000px;}
.w2_c00001{width:555.900000px;}
.w5_c00001{width:902.250000px;}
.w4_c00001{width:902.550000px;}
.x0_c00001{left:0.000000px;}
.x103_c00001{left:1.354500px;}
.x101_c00001{left:2.970000px;}
.xd2_c00001{left:4.978500px;}
.xf8_c00001{left:7.626000px;}
.xfb_c00001{left:8.640000px;}
.xf9_c00001{left:10.452307px;}
.xc7_c00001{left:11.610000px;}
.x10_c00001{left:12.774000px;}
.xd1_c00001{left:14.838000px;}
.xd3_c00001{left:16.254774px;}
.xf1_c00001{left:17.317029px;}
.xb2_c00001{left:18.360000px;}
.x2c_c00001{left:19.440000px;}
.x3_c00001{left:20.520000px;}
.x22_c00001{left:21.870000px;}
.x5c_c00001{left:23.368500px;}
.x7a_c00001{left:24.570000px;}
.xc6_c00001{left:26.190000px;}
.xbb_c00001{left:27.810000px;}
.x7d_c00001{left:29.430000px;}
.xe5_c00001{left:31.078673px;}
.xc3_c00001{left:32.400000px;}
.x3f_c00001{left:34.290000px;}
.xd7_c00001{left:35.406519px;}
.xe3_c00001{left:36.447288px;}
.x18_c00001{left:37.530000px;}
.x11_c00001{left:39.286500px;}
.x7f_c00001{left:40.500000px;}
.x35_c00001{left:41.850000px;}
.x4a_c00001{left:42.930000px;}
.x8b_c00001{left:44.010000px;}
.x84_c00001{left:46.039500px;}
.x31_c00001{left:47.250000px;}
.x27_c00001{left:48.600000px;}
.x4_c00001{left:50.220000px;}
.xb4_c00001{left:51.570000px;}
.xf5_c00001{left:52.650000px;}
.x7b_c00001{left:53.730000px;}
.xe2_c00001{left:54.906012px;}
.x7c_c00001{left:56.317500px;}
.x40_c00001{left:57.510000px;}
.xb0_c00001{left:58.584000px;}
.x5d_c00001{left:60.106500px;}
.x4d_c00001{left:61.290000px;}
.x68_c00001{left:63.180000px;}
.xc2_c00001{left:64.530000px;}
.x23_c00001{left:66.420000px;}
.xba_c00001{left:67.500000px;}
.x45_c00001{left:68.986500px;}
.x62_c00001{left:70.470000px;}
.x8e_c00001{left:72.360000px;}
.xb3_c00001{left:73.710000px;}
.x73_c00001{left:74.790000px;}
.x64_c00001{left:76.140000px;}
.xd0_c00001{left:77.229022px;}
.x1_c00001{left:78.570000px;}
.x80_c00001{left:79.920000px;}
.xb_c00001{left:81.147000px;}
.x53_c00001{left:83.160000px;}
.xef_c00001{left:84.181500px;}
.x46_c00001{left:85.194000px;}
.x85_c00001{left:86.262000px;}
.xdc_c00001{left:88.036852px;}
.xa3_c00001{left:89.514000px;}
.x58_c00001{left:91.260000px;}
.xdb_c00001{left:92.522764px;}
.x6b_c00001{left:93.960000px;}
.x54_c00001{left:95.850000px;}
.x5_c00001{left:97.740000px;}
.xda_c00001{left:99.146928px;}
.x82_c00001{left:100.440000px;}
.x19_c00001{left:101.790000px;}
.x36_c00001{left:103.680000px;}
.x99_c00001{left:105.030000px;}
.x8c_c00001{left:106.380000px;}
.x12_c00001{left:108.147000px;}
.xcf_c00001{left:109.504031px;}
.x59_c00001{left:110.700000px;}
.x65_c00001{left:112.050000px;}
.x76_c00001{left:113.400000px;}
.x1d_c00001{left:114.480000px;}
.x6_c00001{left:116.370000px;}
.xa2_c00001{left:117.846000px;}
.xed_c00001{left:118.852500px;}
.x3a_c00001{left:119.880000px;}
.x1a_c00001{left:121.230000px;}
.xc_c00001{left:122.467500px;}
.xd8_c00001{left:123.980199px;}
.x24_c00001{left:125.280000px;}
.xaa_c00001{left:126.288000px;}
.x55_c00001{left:127.710000px;}
.x41_c00001{left:129.060000px;}
.x2d_c00001{left:130.410000px;}
.x13_c00001{left:132.178500px;}
.x3b_c00001{left:133.380000px;}
.x94_c00001{left:134.607000px;}
.x6f_c00001{left:136.080000px;}
.xa4_c00001{left:137.167500px;}
.x32_c00001{left:138.240000px;}
.x4e_c00001{left:140.130000px;}
.xd6_c00001{left:141.225000px;}
.x1e_c00001{left:142.290000px;}
.xc0_c00001{left:143.910000px;}
.x25_c00001{left:144.990000px;}
.x5e_c00001{left:146.443500px;}
.xbe_c00001{left:147.690000px;}
.x7_c00001{left:148.770000px;}
.x86_c00001{left:150.247500px;}
.x28_c00001{left:151.470000px;}
.x4b_c00001{left:153.090000px;}
.x70_c00001{left:154.170000px;}
.x74_c00001{left:155.790000px;}
.xa7_c00001{left:156.877500px;}
.x2_c00001{left:157.950000px;}
.x4f_c00001{left:159.030000px;}
.x81_c00001{left:160.110000px;}
.x95_c00001{left:161.121000px;}
.x1f_c00001{left:162.810000px;}
.xd4_c00001{left:163.966668px;}
.x87_c00001{left:165.909000px;}
.x5a_c00001{left:167.400000px;}
.xcd_c00001{left:168.624977px;}
.x26_c00001{left:169.830000px;}
.x83_c00001{left:171.180000px;}
.x29_c00001{left:172.800000px;}
.xc4_c00001{left:174.150000px;}
.x66_c00001{left:175.230000px;}
.x75_c00001{left:176.580000px;}
.xd9_c00001{left:177.650646px;}
.x14_c00001{left:179.172000px;}
.xa5_c00001{left:180.637500px;}
.xa9_c00001{left:181.717500px;}
.x69_c00001{left:182.790000px;}
.x2e_c00001{left:184.410000px;}
.x50_c00001{left:186.030000px;}
.xb6_c00001{left:187.380000px;}
.x42_c00001{left:189.000000px;}
.xb7_c00001{left:190.080000px;}
.x3c_c00001{left:191.160000px;}
.xbc_c00001{left:192.240000px;}
.x1b_c00001{left:193.320000px;}
.xf7_c00001{left:194.568786px;}
.x15_c00001{left:195.625500px;}
.xbf_c00001{left:197.001000px;}
.x47_c00001{left:198.319500px;}
.x9d_c00001{left:199.416000px;}
.xd_c00001{left:201.054000px;}
.x5f_c00001{left:202.329000px;}
.x7e_c00001{left:203.580000px;}
.x2f_c00001{left:204.660000px;}
.x3d_c00001{left:206.280000px;}
.x9e_c00001{left:207.804000px;}
.xc1_c00001{left:208.980000px;}
.x8f_c00001{left:210.060000px;}
.xbd_c00001{left:211.410000px;}
.x16_c00001{left:213.177000px;}
.xf2_c00001{left:214.334798px;}
.x33_c00001{left:215.460000px;}
.xe_c00001{left:216.694500px;}
.x48_c00001{left:218.305500px;}
.xd5_c00001{left:219.736932px;}
.xe4_c00001{left:221.137739px;}
.x77_c00001{left:222.210000px;}
.x56_c00001{left:223.830000px;}
.x71_c00001{left:224.910000px;}
.x8_c00001{left:226.260000px;}
.x20_c00001{left:227.610000px;}
.x30_c00001{left:228.960000px;}
.x60_c00001{left:230.463000px;}
.xa1_c00001{left:231.759000px;}
.xce_c00001{left:233.026448px;}
.x43_c00001{left:234.090000px;}
.xc9_c00001{left:235.182579px;}
.x2a_c00001{left:236.250000px;}
.x6c_c00001{left:237.870000px;}
.x37_c00001{left:239.490000px;}
.x78_c00001{left:241.380000px;}
.xb9_c00001{left:243.000000px;}
.xe8_c00001{left:244.116000px;}
.x57_c00001{left:245.970000px;}
.x61_c00001{left:247.470000px;}
.xab_c00001{left:248.608500px;}
.xe1_c00001{left:249.656100px;}
.x21_c00001{left:251.100000px;}
.x6d_c00001{left:252.180000px;}
.x90_c00001{left:253.260000px;}
.x17_c00001{left:254.610000px;}
.x63_c00001{left:255.690000px;}
.x9_c00001{left:257.580000px;}
.x38_c00001{left:259.470000px;}
.xc5_c00001{left:260.820000px;}
.x67_c00001{left:261.900000px;}
.x9f_c00001{left:263.695500px;}
.x34_c00001{left:264.870000px;}
.xa6_c00001{left:265.900500px;}
.x79_c00001{left:267.570000px;}
.xf6_c00001{left:268.650000px;}
.x9b_c00001{left:269.730000px;}
.x1c_c00001{left:270.810000px;}
.x98_c00001{left:271.890000px;}
.x6e_c00001{left:273.240000px;}
.xa_c00001{left:274.320000px;}
.x3e_c00001{left:275.670000px;}
.x8d_c00001{left:277.020000px;}
.x51_c00001{left:278.640000px;}
.xac_c00001{left:279.651000px;}
.x4c_c00001{left:280.800000px;}
.x39_c00001{left:281.880000px;}
.x91_c00001{left:283.500000px;}
.xad_c00001{left:285.048000px;}
.xf_c00001{left:286.839000px;}
.x96_c00001{left:288.561000px;}
.x5b_c00001{left:290.250000px;}
.xae_c00001{left:291.273000px;}
.xec_c00001{left:292.309083px;}
.x44_c00001{left:293.760000px;}
.xb5_c00001{left:294.840000px;}
.x72_c00001{left:296.190000px;}
.x49_c00001{left:297.901500px;}
.x52_c00001{left:299.430000px;}
.xca_c00001{left:300.528865px;}
.xe0_c00001{left:301.611153px;}
.x9a_c00001{left:302.670000px;}
.x100_c00001{left:303.750000px;}
.xb8_c00001{left:304.830000px;}
.x2b_c00001{left:306.180000px;}
.x92_c00001{left:307.530000px;}
.x6a_c00001{left:309.420000px;}
.xaf_c00001{left:311.039820px;}
.x89_c00001{left:312.498000px;}
.x88_c00001{left:314.119500px;}
.xcc_c00001{left:315.205079px;}
.xee_c00001{left:316.213500px;}
.x9c_c00001{left:317.250000px;}
.xb1_c00001{left:319.228500px;}
.x97_c00001{left:320.883000px;}
.x93_c00001{left:322.227000px;}
.x8a_c00001{left:323.346000px;}
.xc8_c00001{left:325.641755px;}
.xa8_c00001{left:326.707500px;}
.xdf_c00001{left:327.903152px;}
.xcb_c00001{left:329.690594px;}
.xde_c00001{left:330.874473px;}
.xa0_c00001{left:331.987500px;}
.xf0_c00001{left:333.181500px;}
.xeb_c00001{left:334.530000px;}
.xf3_c00001{left:336.150000px;}
.xfa_c00001{left:337.500000px;}
.xf4_c00001{left:339.120000px;}
.xe7_c00001{left:340.506825px;}
.xe9_c00001{left:341.983500px;}
.xea_c00001{left:348.840000px;}
.xfc_c00001{left:349.920000px;}
.xfe_c00001{left:352.620000px;}
.xff_c00001{left:354.240000px;}
.xfd_c00001{left:355.320000px;}
.xdd_c00001{left:356.394000px;}
.xe6_c00001{left:357.480000px;}
.x102_c00001{left:358.560000px;}
.x104_c00001{left:833.215500px;}
.x105_c00001{left:834.460028px;}
.x106_c00001{left:836.580837px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._0_c00001{margin-left:-35.363153pt;}
._2_c00001{width:279.238609pt;}
._3_c00001{width:1421.802470pt;}
._1_c00001{width:3920.784344pt;}
.fs17b_c00001{font-size:14.000000pt;}
.fsfa_c00001{font-size:14.933333pt;}
.fs199_c00001{font-size:16.800000pt;}
.fs64_c00001{font-size:18.667759pt;}
.fs5a_c00001{font-size:19.600000pt;}
.fs45_c00001{font-size:21.463253pt;}
.fsce_c00001{font-size:21.466667pt;}
.fs17c_c00001{font-size:23.333333pt;}
.fs96_c00001{font-size:24.266667pt;}
.fs1a4_c00001{font-size:25.187712pt;}
.fs4b_c00001{font-size:25.200000pt;}
.fs165_c00001{font-size:27.072634pt;}
.fs13e_c00001{font-size:28.000000pt;}
.fs1a9_c00001{font-size:28.008063pt;}
.fs4c_c00001{font-size:31.733333pt;}
.fsa3_c00001{font-size:32.657600pt;}
.fs19d_c00001{font-size:32.669868pt;}
.fsb3_c00001{font-size:33.600000pt;}
.fs198_c00001{font-size:34.533333pt;}
.fs1a3_c00001{font-size:35.449372pt;}
.fs1a1_c00001{font-size:36.400000pt;}
.fsb4_c00001{font-size:37.333333pt;}
.fse3_c00001{font-size:38.266667pt;}
.fs3d_c00001{font-size:40.140577pt;}
.fs12a_c00001{font-size:40.147959pt;}
.fs188_c00001{font-size:41.066667pt;}
.fseb_c00001{font-size:41.073319pt;}
.fs19a_c00001{font-size:42.000000pt;}
.fs5b_c00001{font-size:44.800000pt;}
.fs196_c00001{font-size:44.804390pt;}
.fs5e_c00001{font-size:45.727959pt;}
.fsdf_c00001{font-size:45.737198pt;}
.fs9f_c00001{font-size:46.653715pt;}
.fs1a0_c00001{font-size:46.666667pt;}
.fs145_c00001{font-size:47.600000pt;}
.fs19b_c00001{font-size:47.603427pt;}
.fs185_c00001{font-size:47.611518pt;}
.fs157_c00001{font-size:47.622866pt;}
.fs12e_c00001{font-size:48.511246pt;}
.fsfd_c00001{font-size:48.533333pt;}
.fs18b_c00001{font-size:48.538793pt;}
.fs17a_c00001{font-size:48.541195pt;}
.fs34_c00001{font-size:48.544034pt;}
.fs183_c00001{font-size:48.545077pt;}
.fs1aa_c00001{font-size:48.553737pt;}
.fs12f_c00001{font-size:49.444154pt;}
.fs114_c00001{font-size:49.466667pt;}
.fs175_c00001{font-size:49.472998pt;}
.fs177_c00001{font-size:49.474680pt;}
.fs142_c00001{font-size:49.475595pt;}
.fs19f_c00001{font-size:49.476559pt;}
.fs107_c00001{font-size:49.478636pt;}
.fs16c_c00001{font-size:49.479749pt;}
.fs16a_c00001{font-size:49.480911pt;}
.fs14f_c00001{font-size:49.482123pt;}
.fs128_c00001{font-size:49.483384pt;}
.fs113_c00001{font-size:49.484694pt;}
.fs11d_c00001{font-size:49.487463pt;}
.fs2b_c00001{font-size:50.400000pt;}
.fs13f_c00001{font-size:50.406451pt;}
.fse9_c00001{font-size:50.408164pt;}
.fs161_c00001{font-size:50.409096pt;}
.fs148_c00001{font-size:50.410079pt;}
.fs166_c00001{font-size:50.411112pt;}
.fs17f_c00001{font-size:50.412195pt;}
.fs115_c00001{font-size:50.413329pt;}
.fs147_c00001{font-size:50.417032pt;}
.fs11b_c00001{font-size:50.418367pt;}
.fs130_c00001{font-size:51.309971pt;}
.fs72_c00001{font-size:51.325171pt;}
.fs65_c00001{font-size:51.329483pt;}
.fsfc_c00001{font-size:51.333333pt;}
.fsf6_c00001{font-size:51.337671pt;}
.fsf2_c00001{font-size:51.338364pt;}
.fs191_c00001{font-size:51.339108pt;}
.fs174_c00001{font-size:51.339904pt;}
.fs1a2_c00001{font-size:51.340750pt;}
.fs16b_c00001{font-size:51.341649pt;}
.fs18_c00001{font-size:51.343599pt;}
.fs163_c00001{font-size:51.344651pt;}
.fs180_c00001{font-size:51.345754pt;}
.fs117_c00001{font-size:51.349372pt;}
.fs121_c00001{font-size:51.350681pt;}
.fs10e_c00001{font-size:51.352041pt;}
.fs154_c00001{font-size:51.357993pt;}
.fs131_c00001{font-size:52.242880pt;}
.fs139_c00001{font-size:52.244632pt;}
.fsa5_c00001{font-size:52.252161pt;}
.fs12_c00001{font-size:52.266667pt;}
.fsf5_c00001{font-size:52.271083pt;}
.fsed_c00001{font-size:52.271789pt;}
.fs193_c00001{font-size:52.272546pt;}
.fs17_c00001{font-size:52.273356pt;}
.fse8_c00001{font-size:52.275133pt;}
.fs39_c00001{font-size:52.276100pt;}
.fs32_c00001{font-size:52.278190pt;}
.fs182_c00001{font-size:52.279314pt;}
.fs16e_c00001{font-size:52.280489pt;}
.fs15d_c00001{font-size:52.281717pt;}
.fs14d_c00001{font-size:52.282997pt;}
.fs120_c00001{font-size:52.284330pt;}
.fs10d_c00001{font-size:52.285714pt;}
.fs8e_c00001{font-size:52.287151pt;}
.fsd5_c00001{font-size:52.288640pt;}
.fs150_c00001{font-size:52.291775pt;}
.fs2c_c00001{font-size:53.175788pt;}
.fs13a_c00001{font-size:53.177571pt;}
.fs92_c00001{font-size:53.185235pt;}
.fs10_c00001{font-size:53.200000pt;}
.fs18e_c00001{font-size:53.203219pt;}
.fs18c_c00001{font-size:53.204495pt;}
.fsef_c00001{font-size:53.205213pt;}
.fs189_c00001{font-size:53.205985pt;}
.fs170_c00001{font-size:53.206809pt;}
.fse6_c00001{font-size:53.208618pt;}
.fs15f_c00001{font-size:53.209602pt;}
.fsf8_c00001{font-size:53.210639pt;}
.fs17e_c00001{font-size:53.212873pt;}
.fs15a_c00001{font-size:53.214070pt;}
.fs98_c00001{font-size:53.215319pt;}
.fs14c_c00001{font-size:53.216622pt;}
.fs122_c00001{font-size:53.217979pt;}
.fs111_c00001{font-size:53.219388pt;}
.fs82_c00001{font-size:53.220850pt;}
.fsc7_c00001{font-size:53.222366pt;}
.fs156_c00001{font-size:53.225556pt;}
.fs49_c00001{font-size:54.106937pt;}
.fs132_c00001{font-size:54.108697pt;}
.fs93_c00001{font-size:54.118309pt;}
.fsb9_c00001{font-size:54.120394pt;}
.fs6b_c00001{font-size:54.124725pt;}
.fs149_c00001{font-size:54.126972pt;}
.fs68_c00001{font-size:54.129273pt;}
.fsc_c00001{font-size:54.133333pt;}
.fs52_c00001{font-size:54.136608pt;}
.fs194_c00001{font-size:54.137907pt;}
.fsf4_c00001{font-size:54.138638pt;}
.fs172_c00001{font-size:54.140262pt;}
.fs176_c00001{font-size:54.142102pt;}
.fs160_c00001{font-size:54.143104pt;}
.fsf9_c00001{font-size:54.144159pt;}
.fs36_c00001{font-size:54.145268pt;}
.fsff_c00001{font-size:54.146432pt;}
.fs15b_c00001{font-size:54.147650pt;}
.fs169_c00001{font-size:54.148921pt;}
.fs14b_c00001{font-size:54.150247pt;}
.fs123_c00001{font-size:54.151627pt;}
.fs10a_c00001{font-size:54.153061pt;}
.fs8d_c00001{font-size:54.154549pt;}
.fsdb_c00001{font-size:54.156092pt;}
.fs135_c00001{font-size:55.041606pt;}
.fsa1_c00001{font-size:55.051384pt;}
.fsbf_c00001{font-size:55.053504pt;}
.fs5f_c00001{font-size:55.060196pt;}
.fsba_c00001{font-size:55.062537pt;}
.fs7_c00001{font-size:55.066667pt;}
.fs55_c00001{font-size:55.069998pt;}
.fs197_c00001{font-size:55.070631pt;}
.fs24_c00001{font-size:55.071320pt;}
.fsec_c00001{font-size:55.072063pt;}
.fs15_c00001{font-size:55.073715pt;}
.fsb1_c00001{font-size:55.075587pt;}
.fs33_c00001{font-size:55.078808pt;}
.fs100_c00001{font-size:55.079991pt;}
.fs14a_c00001{font-size:55.083872pt;}
.fs127_c00001{font-size:55.085276pt;}
.fs108_c00001{font-size:55.086735pt;}
.fs89_c00001{font-size:55.088249pt;}
.fsd2_c00001{font-size:55.089817pt;}
.fs43_c00001{font-size:55.091441pt;}
.fs151_c00001{font-size:55.093120pt;}
.fs133_c00001{font-size:55.974514pt;}
.fs138_c00001{font-size:55.976391pt;}
.fsac_c00001{font-size:55.984458pt;}
.fsc4_c00001{font-size:55.986614pt;}
.fs6a_c00001{font-size:55.991095pt;}
.fs60_c00001{font-size:55.993420pt;}
.fsb_c00001{font-size:56.000000pt;}
.fs59_c00001{font-size:56.003388pt;}
.fs1c_c00001{font-size:56.004032pt;}
.fs2a_c00001{font-size:56.004732pt;}
.fsf1_c00001{font-size:56.005488pt;}
.fs13_c00001{font-size:56.006300pt;}
.fsea_c00001{font-size:56.009071pt;}
.fs105_c00001{font-size:56.013550pt;}
.fs7b_c00001{font-size:56.017497pt;}
.fs129_c00001{font-size:56.018925pt;}
.fs10f_c00001{font-size:56.020408pt;}
.fs2f_c00001{font-size:56.021948pt;}
.fsd6_c00001{font-size:56.023543pt;}
.fs12b_c00001{font-size:56.907423pt;}
.fs69_c00001{font-size:56.909331pt;}
.fsa0_c00001{font-size:56.917532pt;}
.fsc2_c00001{font-size:56.919725pt;}
.fs47_c00001{font-size:56.924280pt;}
.fs5d_c00001{font-size:56.926643pt;}
.fs66_c00001{font-size:56.929063pt;}
.fs9_c00001{font-size:56.933333pt;}
.fs5c_c00001{font-size:56.934073pt;}
.fs53_c00001{font-size:56.936778pt;}
.fs26_c00001{font-size:56.938144pt;}
.fs18d_c00001{font-size:56.939738pt;}
.fs168_c00001{font-size:56.941560pt;}
.fsb0_c00001{font-size:56.942556pt;}
.fsf7_c00001{font-size:56.944719pt;}
.fs164_c00001{font-size:56.945886pt;}
.fs102_c00001{font-size:56.947110pt;}
.fs19_c00001{font-size:56.948390pt;}
.fs14e_c00001{font-size:56.951122pt;}
.fs126_c00001{font-size:56.952574pt;}
.fs119_c00001{font-size:56.954082pt;}
.fs2e_c00001{font-size:56.955647pt;}
.fsda_c00001{font-size:56.957269pt;}
.fs155_c00001{font-size:56.960683pt;}
.fs134_c00001{font-size:57.840331pt;}
.fs40_c00001{font-size:57.842271pt;}
.fsc5_c00001{font-size:57.852835pt;}
.fs71_c00001{font-size:57.857465pt;}
.fsf_c00001{font-size:57.866667pt;}
.fs4f_c00001{font-size:57.870167pt;}
.fscb_c00001{font-size:57.870833pt;}
.fs23_c00001{font-size:57.871556pt;}
.fsee_c00001{font-size:57.872337pt;}
.fs18a_c00001{font-size:57.873176pt;}
.fs1a7_c00001{font-size:57.874073pt;}
.fs167_c00001{font-size:57.875028pt;}
.fs16f_c00001{font-size:57.877111pt;}
.fs104_c00001{font-size:57.880669pt;}
.fs84_c00001{font-size:57.881970pt;}
.fs7c_c00001{font-size:57.883330pt;}
.fs7a_c00001{font-size:57.884747pt;}
.fs124_c00001{font-size:57.886222pt;}
.fs10b_c00001{font-size:57.887755pt;}
.fs8b_c00001{font-size:57.889346pt;}
.fsd8_c00001{font-size:57.890994pt;}
.fs158_c00001{font-size:57.894465pt;}
.fs4a_c00001{font-size:58.771328pt;}
.fs9d_c00001{font-size:58.773240pt;}
.fsa7_c00001{font-size:58.783681pt;}
.fsc0_c00001{font-size:58.785945pt;}
.fs6f_c00001{font-size:58.790650pt;}
.fs61_c00001{font-size:58.793091pt;}
.fs67_c00001{font-size:58.795590pt;}
.fs2_c00001{font-size:58.800000pt;}
.fscd_c00001{font-size:58.803557pt;}
.fsf0_c00001{font-size:58.805762pt;}
.fs190_c00001{font-size:58.806615pt;}
.fs16_c00001{font-size:58.807526pt;}
.fs179_c00001{font-size:58.809525pt;}
.fs143_c00001{font-size:58.810612pt;}
.fs15e_c00001{font-size:58.811759pt;}
.fs37_c00001{font-size:58.812964pt;}
.fs103_c00001{font-size:58.814228pt;}
.fs16d_c00001{font-size:58.815551pt;}
.fs9a_c00001{font-size:58.816932pt;}
.fs79_c00001{font-size:58.818372pt;}
.fs11c_c00001{font-size:58.819871pt;}
.fs10c_c00001{font-size:58.821429pt;}
.fs81_c00001{font-size:58.823045pt;}
.fsd7_c00001{font-size:58.824720pt;}
.fs153_c00001{font-size:58.828247pt;}
.fs12c_c00001{font-size:59.706148pt;}
.fsa2_c00001{font-size:59.716755pt;}
.fsc3_c00001{font-size:59.719055pt;}
.fs70_c00001{font-size:59.723835pt;}
.fse_c00001{font-size:59.733333pt;}
.fs56_c00001{font-size:59.736947pt;}
.fs28_c00001{font-size:59.738381pt;}
.fsf3_c00001{font-size:59.739187pt;}
.fs192_c00001{font-size:59.740053pt;}
.fs178_c00001{font-size:59.743009pt;}
.fs94_c00001{font-size:59.744114pt;}
.fs181_c00001{font-size:59.747787pt;}
.fs86_c00001{font-size:59.749131pt;}
.fs99_c00001{font-size:59.750534pt;}
.fs77_c00001{font-size:59.751997pt;}
.fs11f_c00001{font-size:59.753520pt;}
.fs110_c00001{font-size:59.755102pt;}
.fs80_c00001{font-size:59.756744pt;}
.fsd3_c00001{font-size:59.758446pt;}
.fs152_c00001{font-size:59.762028pt;}
.fs12d_c00001{font-size:60.639057pt;}
.fs3f_c00001{font-size:60.641090pt;}
.fsbe_c00001{font-size:60.652166pt;}
.fs6c_c00001{font-size:60.657020pt;}
.fs4_c00001{font-size:60.666667pt;}
.fs4e_c00001{font-size:60.670337pt;}
.fse0_c00001{font-size:60.671035pt;}
.fs21_c00001{font-size:60.671793pt;}
.fsaf_c00001{font-size:60.672612pt;}
.fs173_c00001{font-size:60.674432pt;}
.fse7_c00001{font-size:60.676494pt;}
.fs95_c00001{font-size:60.677616pt;}
.fs162_c00001{font-size:60.680042pt;}
.fs106_c00001{font-size:60.681346pt;}
.fs15c_c00001{font-size:60.682711pt;}
.fs7e_c00001{font-size:60.685622pt;}
.fs125_c00001{font-size:60.687169pt;}
.fs109_c00001{font-size:60.688776pt;}
.fs31_c00001{font-size:60.690443pt;}
.fsd9_c00001{font-size:60.692172pt;}
.fs136_c00001{font-size:61.571966pt;}
.fsbb_c00001{font-size:61.585276pt;}
.fs6e_c00001{font-size:61.590205pt;}
.fs8_c00001{font-size:61.600000pt;}
.fs1e_c00001{font-size:61.603727pt;}
.fsca_c00001{font-size:61.604435pt;}
.fs20_c00001{font-size:61.605205pt;}
.fs19c_c00001{font-size:61.606037pt;}
.fse5_c00001{font-size:61.609978pt;}
.fs19e_c00001{font-size:61.612319pt;}
.fs184_c00001{font-size:61.614905pt;}
.fs7d_c00001{font-size:61.616291pt;}
.fs78_c00001{font-size:61.619247pt;}
.fs13b_c00001{font-size:61.620817pt;}
.fs112_c00001{font-size:61.622449pt;}
.fs7f_c00001{font-size:61.624142pt;}
.fsd1_c00001{font-size:61.625897pt;}
.fs3e_c00001{font-size:62.504874pt;}
.fs41_c00001{font-size:62.506970pt;}
.fsb6_c00001{font-size:62.511349pt;}
.fsa8_c00001{font-size:62.515978pt;}
.fsbc_c00001{font-size:62.518386pt;}
.fs6d_c00001{font-size:62.523390pt;}
.fsd_c00001{font-size:62.533333pt;}
.fs4d_c00001{font-size:62.537116pt;}
.fs1f_c00001{font-size:62.538617pt;}
.fs85_c00001{font-size:62.549871pt;}
.fs9b_c00001{font-size:62.551340pt;}
.fs76_c00001{font-size:62.552872pt;}
.fs13c_c00001{font-size:62.554466pt;}
.fs11a_c00001{font-size:62.556123pt;}
.fs8a_c00001{font-size:62.557842pt;}
.fsc6_c00001{font-size:62.559623pt;}
.fsa6_c00001{font-size:63.449052pt;}
.fsc1_c00001{font-size:63.451496pt;}
.fs48_c00001{font-size:63.456575pt;}
.fs63_c00001{font-size:63.464667pt;}
.fsa_c00001{font-size:63.466667pt;}
.fs3_c00001{font-size:63.469840pt;}
.fs57_c00001{font-size:63.470506pt;}
.fse1_c00001{font-size:63.471236pt;}
.fs27_c00001{font-size:63.472029pt;}
.fscc_c00001{font-size:63.473806pt;}
.fsfe_c00001{font-size:63.482024pt;}
.fs17d_c00001{font-size:63.488115pt;}
.fs88_c00001{font-size:63.491541pt;}
.fsdc_c00001{font-size:63.493349pt;}
.fsa9_c00001{font-size:64.382127pt;}
.fsbd_c00001{font-size:64.384607pt;}
.fs5_c00001{font-size:64.400000pt;}
.fs51_c00001{font-size:64.403896pt;}
.fs22_c00001{font-size:64.405442pt;}
.fsae_c00001{font-size:64.406311pt;}
.fs171_c00001{font-size:64.408243pt;}
.fs101_c00001{font-size:64.415583pt;}
.fs83_c00001{font-size:64.417032pt;}
.fs146_c00001{font-size:64.418545pt;}
.fs116_c00001{font-size:64.420122pt;}
.fsb8_c00001{font-size:64.421764pt;}
.fsd0_c00001{font-size:64.427075pt;}
.fs9e_c00001{font-size:65.315201pt;}
.fs6_c00001{font-size:65.333333pt;}
.fs50_c00001{font-size:65.337286pt;}
.fs25_c00001{font-size:65.338854pt;}
.fs75_c00001{font-size:65.350612pt;}
.fs118_c00001{font-size:65.353747pt;}
.fsd4_c00001{font-size:65.360800pt;}
.fsc9_c00001{font-size:66.234486pt;}
.fs1b_c00001{font-size:66.270676pt;}
.fs29_c00001{font-size:66.272266pt;}
.fs62_c00001{font-size:66.281277pt;}
.fs8f_c00001{font-size:66.292638pt;}
.fsaa_c00001{font-size:67.181349pt;}
.fs1_c00001{font-size:67.200000pt;}
.fs54_c00001{font-size:67.204065pt;}
.fs8c_c00001{font-size:67.226337pt;}
.fs91_c00001{font-size:68.114424pt;}
.fsde_c00001{font-size:68.133333pt;}
.fs90_c00001{font-size:68.160036pt;}
.fs2d_c00001{font-size:68.163986pt;}
.fsa4_c00001{font-size:69.047498pt;}
.fsb2_c00001{font-size:69.066667pt;}
.fs58_c00001{font-size:69.070845pt;}
.fsad_c00001{font-size:69.980572pt;}
.fs159_c00001{font-size:70.000000pt;}
.fsab_c00001{font-size:70.913647pt;}
.fs0_c00001{font-size:70.933333pt;}
.fs14_c00001{font-size:70.939327pt;}
.fs35_c00001{font-size:70.948972pt;}
.fs11e_c00001{font-size:71.866667pt;}
.fs38_c00001{font-size:71.882512pt;}
.fs44_c00001{font-size:71.898999pt;}
.fs1a_c00001{font-size:72.800000pt;}
.fscf_c00001{font-size:73.764332pt;}
.fs140_c00001{font-size:74.666667pt;}
.fs42_c00001{font-size:75.568128pt;}
.fs46_c00001{font-size:75.587979pt;}
.fsfb_c00001{font-size:75.600000pt;}
.fs1a8_c00001{font-size:75.603780pt;}
.fs1d_c00001{font-size:75.604574pt;}
.fs3b_c00001{font-size:75.613645pt;}
.fs144_c00001{font-size:76.533333pt;}
.fs1a6_c00001{font-size:77.466667pt;}
.fs74_c00001{font-size:78.400000pt;}
.fs3c_c00001{font-size:78.414150pt;}
.fsb5_c00001{font-size:79.333333pt;}
.fs3a_c00001{font-size:82.148157pt;}
.fs30_c00001{font-size:83.099222pt;}
.fs187_c00001{font-size:84.000000pt;}
.fs73_c00001{font-size:84.933333pt;}
.fs97_c00001{font-size:87.733333pt;}
.fs9c_c00001{font-size:88.626314pt;}
.fs195_c00001{font-size:99.866667pt;}
.fs1a5_c00001{font-size:99.881096pt;}
.fsb7_c00001{font-size:102.701362pt;}
.fse2_c00001{font-size:103.600000pt;}
.fs13d_c00001{font-size:105.466667pt;}
.fs141_c00001{font-size:106.400000pt;}
.fse4_c00001{font-size:107.333333pt;}
.fs137_c00001{font-size:108.221023pt;}
.fs11_c00001{font-size:109.213977pt;}
.fs18f_c00001{font-size:110.133333pt;}
.fs87_c00001{font-size:111.110196pt;}
.fsdd_c00001{font-size:116.666667pt;}
.fsc8_c00001{font-size:144.596414pt;}
.fs186_c00001{font-size:244.533333pt;}
.y0_c00001{bottom:0.000000pt;}
.y1246_c00001{bottom:6.480000pt;}
.y1930_c00001{bottom:8.640000pt;}
.y1cf6_c00001{bottom:9.599581pt;}
.yc7d_c00001{bottom:9.761547pt;}
.y1ccc_c00001{bottom:10.320000pt;}
.y45_c00001{bottom:11.421333pt;}
.yc7c_c00001{bottom:12.102027pt;}
.yc7b_c00001{bottom:12.714560pt;}
.y421_c00001{bottom:18.720000pt;}
.y9a8_c00001{bottom:19.074667pt;}
.yb33_c00001{bottom:19.137241pt;}
.y21c_c00001{bottom:19.899805pt;}
.y1bb0_c00001{bottom:20.118667pt;}
.yb34_c00001{bottom:20.250815pt;}
.y21d_c00001{bottom:20.676780pt;}
.yb35_c00001{bottom:21.057485pt;}
.yf6_c00001{bottom:21.124000pt;}
.y131c_c00001{bottom:21.249333pt;}
.y8c4_c00001{bottom:21.360000pt;}
.y21e_c00001{bottom:21.756447pt;}
.y21f_c00001{bottom:22.047531pt;}
.yf7_c00001{bottom:22.173781pt;}
.yb36_c00001{bottom:22.352671pt;}
.yf8_c00001{bottom:22.593945pt;}
.ya42_c00001{bottom:22.688000pt;}
.y126d_c00001{bottom:22.799541pt;}
.y126e_c00001{bottom:22.979307pt;}
.y220_c00001{bottom:22.980936pt;}
.yb37_c00001{bottom:23.021619pt;}
.y126f_c00001{bottom:23.729035pt;}
.ycc7_c00001{bottom:23.733333pt;}
.y1d7d_c00001{bottom:23.769173pt;}
.y1270_c00001{bottom:23.866709pt;}
.yb38_c00001{bottom:23.908819pt;}
.y221_c00001{bottom:23.976055pt;}
.y1271_c00001{bottom:23.988085pt;}
.y1cf0_c00001{bottom:24.002667pt;}
.y1d7e_c00001{bottom:24.081223pt;}
.y1272_c00001{bottom:24.183787pt;}
.y222_c00001{bottom:24.258597pt;}
.y1d7f_c00001{bottom:24.269356pt;}
.y1cf1_c00001{bottom:24.291832pt;}
.yf9_c00001{bottom:24.404015pt;}
.yc7a_c00001{bottom:24.408667pt;}
.y1d80_c00001{bottom:24.516107pt;}
.yc79_c00001{bottom:24.624907pt;}
.y223_c00001{bottom:24.634368pt;}
.y1d81_c00001{bottom:24.645751pt;}
.y1273_c00001{bottom:24.800907pt;}
.yc78_c00001{bottom:24.871360pt;}
.y1d82_c00001{bottom:24.925741pt;}
.yb39_c00001{bottom:24.999596pt;}
.y1d83_c00001{bottom:25.026029pt;}
.y1cf2_c00001{bottom:25.036781pt;}
.y1d85_c00001{bottom:25.100143pt;}
.y1d84_c00001{bottom:25.129319pt;}
.y1cf3_c00001{bottom:25.232632pt;}
.y1d86_c00001{bottom:25.290125pt;}
.yb3a_c00001{bottom:25.354179pt;}
.y12f1_c00001{bottom:25.437215pt;}
.y1274_c00001{bottom:25.513707pt;}
.yfa_c00001{bottom:25.550733pt;}
.y1482_c00001{bottom:25.629291pt;}
.yc77_c00001{bottom:25.646880pt;}
.yca0_c00001{bottom:25.785333pt;}
.y12f2_c00001{bottom:25.808995pt;}
.y1d87_c00001{bottom:25.868144pt;}
.y224_c00001{bottom:25.970399pt;}
.y1cf4_c00001{bottom:26.079315pt;}
.y1483_c00001{bottom:26.094552pt;}
.yfb_c00001{bottom:26.230521pt;}
.yc76_c00001{bottom:26.278720pt;}
.y12f3_c00001{bottom:26.382549pt;}
.ydd7_c00001{bottom:26.548096pt;}
.y12f4_c00001{bottom:26.572912pt;}
.y1d88_c00001{bottom:26.585029pt;}
.yc75_c00001{bottom:26.878587pt;}
.y1d89_c00001{bottom:26.883143pt;}
.yfc_c00001{bottom:26.889763pt;}
.y1d8a_c00001{bottom:26.898103pt;}
.y1cf5_c00001{bottom:26.939680pt;}
.y1a10_c00001{bottom:27.027131pt;}
.ydd8_c00001{bottom:27.032448pt;}
.y1224_c00001{bottom:27.148000pt;}
.ydd9_c00001{bottom:27.320484pt;}
.y12f5_c00001{bottom:27.334885pt;}
.y11f7_c00001{bottom:27.358283pt;}
.yce8_c00001{bottom:27.370667pt;}
.y109a_c00001{bottom:27.373056pt;}
.y44_c00001{bottom:27.557333pt;}
.y1484_c00001{bottom:27.572251pt;}
.y12f6_c00001{bottom:27.585044pt;}
.ydda_c00001{bottom:27.596331pt;}
.y1844_c00001{bottom:27.599976pt;}
.y1099_c00001{bottom:27.727168pt;}
.yec7_c00001{bottom:27.908712pt;}
.y1245_c00001{bottom:27.974667pt;}
.y1295_c00001{bottom:28.014667pt;}
.yfae_c00001{bottom:28.057255pt;}
.y10ef_c00001{bottom:28.112000pt;}
.y1845_c00001{bottom:28.175316pt;}
.yec6_c00001{bottom:28.222852pt;}
.y192d_c00001{bottom:28.235107pt;}
.y12f7_c00001{bottom:28.236700pt;}
.yddb_c00001{bottom:28.244960pt;}
.y1098_c00001{bottom:28.246492pt;}
.y1559_c00001{bottom:28.308000pt;}
.y164d_c00001{bottom:28.431919pt;}
.y1751_c00001{bottom:28.488641pt;}
.yddc_c00001{bottom:28.579775pt;}
.y192c_c00001{bottom:28.655509pt;}
.y11f8_c00001{bottom:28.703752pt;}
.y192b_c00001{bottom:28.736349pt;}
.y8c2_c00001{bottom:28.748000pt;}
.y1558_c00001{bottom:28.770667pt;}
.y1ccb_c00001{bottom:28.800000pt;}
.y1a11_c00001{bottom:28.814763pt;}
.yec5_c00001{bottom:28.910412pt;}
.y1110_c00001{bottom:28.936000pt;}
.y11f9_c00001{bottom:28.969824pt;}
.y1aed_c00001{bottom:29.038071pt;}
.y1097_c00001{bottom:29.097012pt;}
.y1846_c00001{bottom:29.175335pt;}
.y1a12_c00001{bottom:29.244437pt;}
.y1485_c00001{bottom:29.254717pt;}
.y1557_c00001{bottom:29.261333pt;}
.yddd_c00001{bottom:29.350759pt;}
.y134_c00001{bottom:29.418667pt;}
.y1096_c00001{bottom:29.445592pt;}
.y192a_c00001{bottom:29.465357pt;}
.ydde_c00001{bottom:29.576091pt;}
.y1a13_c00001{bottom:29.604445pt;}
.y1929_c00001{bottom:29.736397pt;}
.y1750_c00001{bottom:29.748669pt;}
.y1486_c00001{bottom:29.750987pt;}
.yfaf_c00001{bottom:29.818767pt;}
.y1aee_c00001{bottom:29.826497pt;}
.y1095_c00001{bottom:29.839508pt;}
.y11fa_c00001{bottom:29.899229pt;}
.y1556_c00001{bottom:29.921333pt;}
.y1847_c00001{bottom:29.966743pt;}
.y1c81_c00001{bottom:29.975544pt;}
.y1c82_c00001{bottom:29.975591pt;}
.y1c80_c00001{bottom:29.975809pt;}
.y1c83_c00001{bottom:29.976000pt;}
.y1c84_c00001{bottom:29.976009pt;}
.y6f1_c00001{bottom:30.013952pt;}
.y1487_c00001{bottom:30.095768pt;}
.y1555_c00001{bottom:30.098667pt;}
.y174f_c00001{bottom:30.137085pt;}
.y1aef_c00001{bottom:30.260859pt;}
.y1928_c00001{bottom:30.271221pt;}
.y11fb_c00001{bottom:30.304397pt;}
.yec4_c00001{bottom:30.324040pt;}
.yb97_c00001{bottom:30.526667pt;}
.y6f2_c00001{bottom:30.527088pt;}
.y1094_c00001{bottom:30.537340pt;}
.y11fc_c00001{bottom:30.558051pt;}
.y81c_c00001{bottom:30.591571pt;}
.y1af0_c00001{bottom:30.606436pt;}
.yec3_c00001{bottom:30.635684pt;}
.y164e_c00001{bottom:30.659369pt;}
.y6f3_c00001{bottom:30.745873pt;}
.yfb0_c00001{bottom:30.768364pt;}
.y606_c00001{bottom:30.821511pt;}
.y1093_c00001{bottom:30.845708pt;}
.y1848_c00001{bottom:30.925253pt;}
.y1554_c00001{bottom:30.961333pt;}
.y6f4_c00001{bottom:31.068701pt;}
.y1a14_c00001{bottom:31.133416pt;}
.y1849_c00001{bottom:31.134548pt;}
.yfb1_c00001{bottom:31.139729pt;}
.y1927_c00001{bottom:31.149685pt;}
.y605_c00001{bottom:31.167196pt;}
.y6f5_c00001{bottom:31.193299pt;}
.y1375_c00001{bottom:31.250667pt;}
.y1488_c00001{bottom:31.308051pt;}
.y604_c00001{bottom:31.351635pt;}
.yec2_c00001{bottom:31.371829pt;}
.y174e_c00001{bottom:31.412457pt;}
.y1a15_c00001{bottom:31.434757pt;}
.y1b6f_c00001{bottom:31.441333pt;}
.y6f6_c00001{bottom:31.475233pt;}
.y81d_c00001{bottom:31.623525pt;}
.y11fd_c00001{bottom:31.651787pt;}
.y6f7_c00001{bottom:31.661063pt;}
.y1af1_c00001{bottom:31.664777pt;}
.y184a_c00001{bottom:31.738280pt;}
.y174d_c00001{bottom:31.785557pt;}
.y1489_c00001{bottom:31.807024pt;}
.y1a16_c00001{bottom:31.896317pt;}
.y1395_c00001{bottom:31.928000pt;}
.y174c_c00001{bottom:32.035709pt;}
.y148a_c00001{bottom:32.098387pt;}
.y6f8_c00001{bottom:32.099625pt;}
.y1092_c00001{bottom:32.124628pt;}
.y1c0b_c00001{bottom:32.138245pt;}
.y603_c00001{bottom:32.159705pt;}
.y81e_c00001{bottom:32.227583pt;}
.y1a17_c00001{bottom:32.245531pt;}
.y174b_c00001{bottom:32.320105pt;}
.y1b70_c00001{bottom:32.413333pt;}
.y164f_c00001{bottom:32.462855pt;}
.yfb2_c00001{bottom:32.551653pt;}
.y1091_c00001{bottom:32.609184pt;}
.y1af2_c00001{bottom:32.707329pt;}
.y133d_c00001{bottom:32.933333pt;}
.y1c0c_c00001{bottom:33.016693pt;}
.y1650_c00001{bottom:33.050989pt;}
.y602_c00001{bottom:33.064291pt;}
.y174a_c00001{bottom:33.222377pt;}
.y1b71_c00001{bottom:33.241333pt;}
.y601_c00001{bottom:33.389405pt;}
.y81f_c00001{bottom:33.586388pt;}
.y1749_c00001{bottom:33.605333pt;}
.y99e_c00001{bottom:33.612000pt;}
.yfb3_c00001{bottom:33.623708pt;}
.y1c0d_c00001{bottom:33.641749pt;}
.y1b72_c00001{bottom:33.664000pt;}
.y1651_c00001{bottom:33.672543pt;}
.y420_c00001{bottom:33.758219pt;}
.y600_c00001{bottom:33.857589pt;}
.y1c0e_c00001{bottom:33.935077pt;}
.y41f_c00001{bottom:34.022295pt;}
.y5ff_c00001{bottom:34.053425pt;}
.y1b14_c00001{bottom:34.229333pt;}
.y41e_c00001{bottom:34.255667pt;}
.y1baf_c00001{bottom:34.493333pt;}
.y99f_c00001{bottom:34.705400pt;}
.y1a69_c00001{bottom:34.733333pt;}
.yb2d_c00001{bottom:34.743548pt;}
.y41d_c00001{bottom:34.907177pt;}
.y215_c00001{bottom:35.016572pt;}
.y321_c00001{bottom:35.072259pt;}
.y820_c00001{bottom:35.091085pt;}
.y41c_c00001{bottom:35.131077pt;}
.y1652_c00001{bottom:35.231371pt;}
.y9a0_c00001{bottom:35.284044pt;}
.y1b73_c00001{bottom:35.348000pt;}
.y216_c00001{bottom:35.497416pt;}
.y821_c00001{bottom:35.628599pt;}
.y41b_c00001{bottom:35.681767pt;}
.y217_c00001{bottom:35.712679pt;}
.y322_c00001{bottom:35.787387pt;}
.y9a1_c00001{bottom:35.824144pt;}
.y733_c00001{bottom:35.934293pt;}
.y735_c00001{bottom:35.934389pt;}
.y734_c00001{bottom:35.934539pt;}
.y736_c00001{bottom:35.934624pt;}
.y737_c00001{bottom:35.934741pt;}
.y738_c00001{bottom:35.935232pt;}
.y739_c00001{bottom:35.935648pt;}
.y1653_c00001{bottom:35.974364pt;}
.y41a_c00001{bottom:35.991327pt;}
.y218_c00001{bottom:35.992889pt;}
.yb2e_c00001{bottom:36.163076pt;}
.yef_c00001{bottom:36.245333pt;}
.y219_c00001{bottom:36.582153pt;}
.y21a_c00001{bottom:36.704596pt;}
.y419_c00001{bottom:36.751239pt;}
.y418_c00001{bottom:37.006855pt;}
.y21b_c00001{bottom:37.016561pt;}
.y9a2_c00001{bottom:37.196504pt;}
.y822_c00001{bottom:37.209285pt;}
.yb2f_c00001{bottom:37.365241pt;}
.yf0_c00001{bottom:37.382507pt;}
.y131b_c00001{bottom:37.389333pt;}
.y417_c00001{bottom:37.420931pt;}
.y323_c00001{bottom:37.479069pt;}
.yf1_c00001{bottom:37.550773pt;}
.y9a3_c00001{bottom:37.787996pt;}
.yb30_c00001{bottom:37.919804pt;}
.yf2_c00001{bottom:38.059573pt;}
.y1266_c00001{bottom:38.162667pt;}
.ya41_c00001{bottom:38.212000pt;}
.y9a4_c00001{bottom:38.257124pt;}
.y1267_c00001{bottom:38.469888pt;}
.ycc6_c00001{bottom:38.881333pt;}
.y1268_c00001{bottom:39.076651pt;}
.yc74_c00001{bottom:39.214480pt;}
.y324_c00001{bottom:39.292581pt;}
.yb31_c00001{bottom:39.371776pt;}
.y512_c00001{bottom:39.418845pt;}
.y1269_c00001{bottom:39.430123pt;}
.yc73_c00001{bottom:39.522107pt;}
.yf3_c00001{bottom:39.653333pt;}
.y12e9_c00001{bottom:39.839611pt;}
.y1ce9_c00001{bottom:39.841333pt;}
.y11f0_c00001{bottom:39.856637pt;}
.y1223_c00001{bottom:40.017333pt;}
.yf4_c00001{bottom:40.047813pt;}
.y9a5_c00001{bottom:40.063456pt;}
.yc9f_c00001{bottom:40.132000pt;}
.y126a_c00001{bottom:40.173888pt;}
.y513_c00001{bottom:40.232348pt;}
.yc72_c00001{bottom:40.362027pt;}
.y225_c00001{bottom:40.437333pt;}
.y1926_c00001{bottom:40.479267pt;}
.y1222_c00001{bottom:40.494667pt;}
.y1cea_c00001{bottom:40.500245pt;}
.y12ea_c00001{bottom:40.511517pt;}
.y9a6_c00001{bottom:40.610684pt;}
.y1ceb_c00001{bottom:40.644933pt;}
.y126b_c00001{bottom:40.722880pt;}
.yb32_c00001{bottom:40.741575pt;}
.yf5_c00001{bottom:40.849840pt;}
.y1221_c00001{bottom:40.912000pt;}
.y12eb_c00001{bottom:41.052612pt;}
.y126c_c00001{bottom:41.073749pt;}
.yc71_c00001{bottom:41.091680pt;}
.y325_c00001{bottom:41.163061pt;}
.y1220_c00001{bottom:41.182667pt;}
.y9a7_c00001{bottom:41.221228pt;}
.y1cec_c00001{bottom:41.229637pt;}
.y12ec_c00001{bottom:41.303612pt;}
.y43_c00001{bottom:41.412000pt;}
.ydd0_c00001{bottom:41.676876pt;}
.y1ced_c00001{bottom:41.693253pt;}
.y147b_c00001{bottom:41.711157pt;}
.y326_c00001{bottom:41.802932pt;}
.y1cee_c00001{bottom:41.912181pt;}
.y1925_c00001{bottom:41.964952pt;}
.y12ed_c00001{bottom:41.971693pt;}
.yce7_c00001{bottom:41.972000pt;}
.yfa7_c00001{bottom:41.983557pt;}
.y1d73_c00001{bottom:42.044000pt;}
.y1090_c00001{bottom:42.058080pt;}
.y121f_c00001{bottom:42.142667pt;}
.y1a0a_c00001{bottom:42.150200pt;}
.y327_c00001{bottom:42.157265pt;}
.ydd1_c00001{bottom:42.159071pt;}
.y1cef_c00001{bottom:42.159365pt;}
.y147c_c00001{bottom:42.263651pt;}
.y11f1_c00001{bottom:42.275608pt;}
.y1294_c00001{bottom:42.374667pt;}
.yc70_c00001{bottom:42.411413pt;}
.yec1_c00001{bottom:42.420109pt;}
.y183d_c00001{bottom:42.484000pt;}
.yfa8_c00001{bottom:42.495784pt;}
.ydd2_c00001{bottom:42.557968pt;}
.y11f2_c00001{bottom:42.591541pt;}
.y121e_c00001{bottom:42.770667pt;}
.y12ee_c00001{bottom:42.827205pt;}
.ydd3_c00001{bottom:42.855647pt;}
.y514_c00001{bottom:42.908268pt;}
.y121d_c00001{bottom:42.961333pt;}
.y6e9_c00001{bottom:42.972641pt;}
.y108f_c00001{bottom:42.993632pt;}
.y11f3_c00001{bottom:43.000424pt;}
.y1924_c00001{bottom:43.100453pt;}
.y1d95_c00001{bottom:43.157333pt;}
.y1d74_c00001{bottom:43.186485pt;}
.y12ef_c00001{bottom:43.192633pt;}
.y6ea_c00001{bottom:43.193581pt;}
.y1a0b_c00001{bottom:43.225325pt;}
.y10ee_c00001{bottom:43.232000pt;}
.yc6f_c00001{bottom:43.313920pt;}
.yec0_c00001{bottom:43.326205pt;}
.y108e_c00001{bottom:43.363864pt;}
.y328_c00001{bottom:43.476709pt;}
.y183e_c00001{bottom:43.503945pt;}
.y1923_c00001{bottom:43.550496pt;}
.yfa9_c00001{bottom:43.582159pt;}
.y12f0_c00001{bottom:43.593600pt;}
.ydd4_c00001{bottom:43.629836pt;}
.yc6e_c00001{bottom:43.638613pt;}
.y1a0c_c00001{bottom:43.639512pt;}
.yebf_c00001{bottom:43.683997pt;}
.y5fe_c00001{bottom:43.745817pt;}
.y147d_c00001{bottom:43.784621pt;}
.y1244_c00001{bottom:43.866667pt;}
.yfaa_c00001{bottom:43.914271pt;}
.y329_c00001{bottom:43.945396pt;}
.y110f_c00001{bottom:43.949333pt;}
.y1748_c00001{bottom:43.968261pt;}
.y183f_c00001{bottom:43.978109pt;}
.y1646_c00001{bottom:44.037273pt;}
.y8c1_c00001{bottom:44.061333pt;}
.y6eb_c00001{bottom:44.149565pt;}
.y1ae6_c00001{bottom:44.158899pt;}
.y108d_c00001{bottom:44.161692pt;}
.yc6d_c00001{bottom:44.162667pt;}
.y5fd_c00001{bottom:44.224376pt;}
.y1d75_c00001{bottom:44.260875pt;}
.y1840_c00001{bottom:44.276283pt;}
.y1cca_c00001{bottom:44.382667pt;}
.y1553_c00001{bottom:44.404000pt;}
.y147e_c00001{bottom:44.433688pt;}
.y1747_c00001{bottom:44.447173pt;}
.y108c_c00001{bottom:44.484696pt;}
.y1922_c00001{bottom:44.501296pt;}
.y6ec_c00001{bottom:44.562231pt;}
.y11f4_c00001{bottom:44.722120pt;}
.ydd5_c00001{bottom:44.786765pt;}
.yebe_c00001{bottom:44.805651pt;}
.y6ed_c00001{bottom:44.824124pt;}
.y1ae7_c00001{bottom:44.871084pt;}
.y1a0d_c00001{bottom:44.875443pt;}
.y5fc_c00001{bottom:44.915925pt;}
.y133_c00001{bottom:45.064000pt;}
.yebd_c00001{bottom:45.171276pt;}
.y1ae8_c00001{bottom:45.187571pt;}
.y1841_c00001{bottom:45.266411pt;}
.y1d76_c00001{bottom:45.287008pt;}
.y1647_c00001{bottom:45.354296pt;}
.ydd6_c00001{bottom:45.366579pt;}
.y11f5_c00001{bottom:45.378395pt;}
.y1746_c00001{bottom:45.394805pt;}
.y6ee_c00001{bottom:45.506839pt;}
.y32a_c00001{bottom:45.587425pt;}
.y147f_c00001{bottom:45.725736pt;}
.y108b_c00001{bottom:45.773952pt;}
.y1648_c00001{bottom:45.804033pt;}
.yebc_c00001{bottom:45.812340pt;}
.y6ef_c00001{bottom:45.838053pt;}
.y1a0e_c00001{bottom:45.942208pt;}
.y1921_c00001{bottom:45.963045pt;}
.yb96_c00001{bottom:45.974667pt;}
.y1d77_c00001{bottom:45.974837pt;}
.yfab_c00001{bottom:46.019301pt;}
.y1374_c00001{bottom:46.132000pt;}
.y5fb_c00001{bottom:46.193687pt;}
.y815_c00001{bottom:46.218695pt;}
.y515_c00001{bottom:46.273944pt;}
.y1745_c00001{bottom:46.292261pt;}
.y1a0f_c00001{bottom:46.323307pt;}
.y1ae9_c00001{bottom:46.362896pt;}
.yebb_c00001{bottom:46.499823pt;}
.y1920_c00001{bottom:46.547397pt;}
.y1394_c00001{bottom:46.568000pt;}
.y5fa_c00001{bottom:46.631873pt;}
.y1649_c00001{bottom:46.649897pt;}
.y1744_c00001{bottom:46.708789pt;}
.y6f0_c00001{bottom:46.827139pt;}
.y1d78_c00001{bottom:46.843445pt;}
.y1480_c00001{bottom:46.902195pt;}
.y1842_c00001{bottom:46.903324pt;}
.y108a_c00001{bottom:47.004512pt;}
.y11f6_c00001{bottom:47.017371pt;}
.y1c79_c00001{bottom:47.033528pt;}
.y1aea_c00001{bottom:47.066476pt;}
.y1843_c00001{bottom:47.118049pt;}
.y1743_c00001{bottom:47.169557pt;}
.y191f_c00001{bottom:47.233648pt;}
.y1c7a_c00001{bottom:47.296236pt;}
.y1aeb_c00001{bottom:47.360721pt;}
.y1481_c00001{bottom:47.453648pt;}
.y1d79_c00001{bottom:47.528075pt;}
.y5f9_c00001{bottom:47.559260pt;}
.y1089_c00001{bottom:47.722136pt;}
.y1b69_c00001{bottom:47.757333pt;}
.y816_c00001{bottom:47.953692pt;}
.yfac_c00001{bottom:48.014492pt;}
.y133c_c00001{bottom:48.026667pt;}
.y1c7b_c00001{bottom:48.030416pt;}
.y164a_c00001{bottom:48.045837pt;}
.y1c7c_c00001{bottom:48.168055pt;}
.y1b6a_c00001{bottom:48.212000pt;}
.y1aec_c00001{bottom:48.214825pt;}
.y1d7a_c00001{bottom:48.218165pt;}
.y1c7d_c00001{bottom:48.480184pt;}
.y1742_c00001{bottom:48.485333pt;}
.yfad_c00001{bottom:48.498205pt;}
.y1b6b_c00001{bottom:48.542667pt;}
.y1c0a_c00001{bottom:48.580000pt;}
.y996_c00001{bottom:48.968847pt;}
.y516_c00001{bottom:48.969947pt;}
.y1d7b_c00001{bottom:49.131872pt;}
.y5f8_c00001{bottom:49.184789pt;}
.y1b13_c00001{bottom:49.214667pt;}
.y1c7e_c00001{bottom:49.294589pt;}
.y817_c00001{bottom:49.311189pt;}
.y164b_c00001{bottom:49.372047pt;}
.y517_c00001{bottom:49.490120pt;}
.y1b6c_c00001{bottom:49.526667pt;}
.y1a68_c00001{bottom:49.656000pt;}
.y72b_c00001{bottom:49.673429pt;}
.y1c7f_c00001{bottom:49.698767pt;}
.y818_c00001{bottom:49.982208pt;}
.y1d7c_c00001{bottom:50.019595pt;}
.y20c_c00001{bottom:50.380676pt;}
.y819_c00001{bottom:50.409664pt;}
.y1b6d_c00001{bottom:50.416000pt;}
.y72c_c00001{bottom:50.565589pt;}
.y1bae_c00001{bottom:50.637333pt;}
.y1b6e_c00001{bottom:50.713333pt;}
.y72d_c00001{bottom:50.742624pt;}
.y72e_c00001{bottom:50.951659pt;}
.y997_c00001{bottom:51.053033pt;}
.yb26_c00001{bottom:51.067132pt;}
.y319_c00001{bottom:51.132000pt;}
.y20d_c00001{bottom:51.196453pt;}
.y40f_c00001{bottom:51.238215pt;}
.y40d_c00001{bottom:51.238437pt;}
.y410_c00001{bottom:51.238683pt;}
.y40e_c00001{bottom:51.238707pt;}
.y411_c00001{bottom:51.239151pt;}
.y416_c00001{bottom:51.239437pt;}
.y414_c00001{bottom:51.239447pt;}
.y415_c00001{bottom:51.239476pt;}
.y412_c00001{bottom:51.239485pt;}
.y413_c00001{bottom:51.239820pt;}
.ye6_c00001{bottom:51.356939pt;}
.y72f_c00001{bottom:51.625035pt;}
.ye7_c00001{bottom:51.870208pt;}
.y730_c00001{bottom:51.919957pt;}
.y998_c00001{bottom:51.957060pt;}
.y131a_c00001{bottom:52.020000pt;}
.ye8_c00001{bottom:52.096277pt;}
.y20e_c00001{bottom:52.153097pt;}
.yb27_c00001{bottom:52.256687pt;}
.y31a_c00001{bottom:52.361909pt;}
.ya40_c00001{bottom:52.453333pt;}
.ye9_c00001{bottom:52.502421pt;}
.y164c_c00001{bottom:52.576939pt;}
.yb28_c00001{bottom:52.630259pt;}
.y20f_c00001{bottom:52.643184pt;}
.y731_c00001{bottom:52.683552pt;}
.y81a_c00001{bottom:52.770877pt;}
.yea_c00001{bottom:52.824629pt;}
.y999_c00001{bottom:52.892288pt;}
.y732_c00001{bottom:53.144384pt;}
.yeb_c00001{bottom:53.422688pt;}
.y1265_c00001{bottom:53.637333pt;}
.y81b_c00001{bottom:53.729284pt;}
.y210_c00001{bottom:53.816429pt;}
.yec_c00001{bottom:53.821355pt;}
.yc6c_c00001{bottom:53.940171pt;}
.y211_c00001{bottom:54.144580pt;}
.yed_c00001{bottom:54.154560pt;}
.yb29_c00001{bottom:54.177413pt;}
.yee_c00001{bottom:54.345696pt;}
.y31b_c00001{bottom:54.558816pt;}
.y12e3_c00001{bottom:54.724000pt;}
.y99a_c00001{bottom:54.775928pt;}
.y212_c00001{bottom:54.836627pt;}
.yb2a_c00001{bottom:54.864303pt;}
.y10e6_c00001{bottom:54.968000pt;}
.ycc5_c00001{bottom:55.014667pt;}
.y10e7_c00001{bottom:55.156000pt;}
.y31c_c00001{bottom:55.179275pt;}
.y50c_c00001{bottom:55.254179pt;}
.yc6b_c00001{bottom:55.283859pt;}
.y213_c00001{bottom:55.330577pt;}
.ydc9_c00001{bottom:55.364591pt;}
.y99b_c00001{bottom:55.378439pt;}
.y10e8_c00001{bottom:55.476000pt;}
.yc9e_c00001{bottom:55.521333pt;}
.y214_c00001{bottom:55.606679pt;}
.yb2b_c00001{bottom:55.903473pt;}
.y3c_c00001{bottom:55.921333pt;}
.y1ce5_c00001{bottom:55.944000pt;}
.yc6a_c00001{bottom:56.035251pt;}
.ydca_c00001{bottom:56.039069pt;}
.yeba_c00001{bottom:56.253915pt;}
.yb2c_c00001{bottom:56.256045pt;}
.y3d_c00001{bottom:56.261333pt;}
.y12e4_c00001{bottom:56.359368pt;}
.y31d_c00001{bottom:56.372320pt;}
.yc69_c00001{bottom:56.458851pt;}
.yeb9_c00001{bottom:56.533195pt;}
.ydcb_c00001{bottom:56.548860pt;}
.y10e9_c00001{bottom:56.550667pt;}
.y1293_c00001{bottom:56.589333pt;}
.y1473_c00001{bottom:56.596235pt;}
.y12e5_c00001{bottom:56.634741pt;}
.y31e_c00001{bottom:56.728800pt;}
.y3e_c00001{bottom:56.761333pt;}
.y1088_c00001{bottom:56.876200pt;}
.y12e6_c00001{bottom:56.980972pt;}
.y1a03_c00001{bottom:57.034387pt;}
.y10ea_c00001{bottom:57.069333pt;}
.yce6_c00001{bottom:57.098667pt;}
.yc68_c00001{bottom:57.145779pt;}
.y3f_c00001{bottom:57.176000pt;}
.y99c_c00001{bottom:57.232115pt;}
.y121c_c00001{bottom:57.314667pt;}
.yfa1_c00001{bottom:57.349600pt;}
.y1833_c00001{bottom:57.364000pt;}
.y40_c00001{bottom:57.473333pt;}
.y10eb_c00001{bottom:57.520000pt;}
.y99d_c00001{bottom:57.574131pt;}
.yeb8_c00001{bottom:57.727172pt;}
.y50d_c00001{bottom:57.760705pt;}
.y1d72_c00001{bottom:57.840000pt;}
.y6e3_c00001{bottom:57.852916pt;}
.y41_c00001{bottom:57.870667pt;}
.y1552_c00001{bottom:57.901333pt;}
.y1243_c00001{bottom:57.997333pt;}
.y1834_c00001{bottom:58.055856pt;}
.y1087_c00001{bottom:58.130012pt;}
.yeb7_c00001{bottom:58.160032pt;}
.y191e_c00001{bottom:58.182771pt;}
.ydcc_c00001{bottom:58.207967pt;}
.y1a04_c00001{bottom:58.232421pt;}
.y1474_c00001{bottom:58.236045pt;}
.y10ec_c00001{bottom:58.285333pt;}
.y191d_c00001{bottom:58.374200pt;}
.y132_c00001{bottom:58.452000pt;}
.y1835_c00001{bottom:58.452120pt;}
.y1551_c00001{bottom:58.458667pt;}
.y10ed_c00001{bottom:58.488000pt;}
.y5f7_c00001{bottom:58.515867pt;}
.y110e_c00001{bottom:58.537333pt;}
.yc67_c00001{bottom:58.562667pt;}
.y31f_c00001{bottom:58.605280pt;}
.y8c0_c00001{bottom:58.613333pt;}
.y191c_c00001{bottom:58.642299pt;}
.y12e7_c00001{bottom:58.658672pt;}
.y6e4_c00001{bottom:58.674205pt;}
.y1550_c00001{bottom:58.682667pt;}
.y11eb_c00001{bottom:58.802667pt;}
.y1cc9_c00001{bottom:58.824000pt;}
.y42_c00001{bottom:58.826667pt;}
.yfa2_c00001{bottom:58.843588pt;}
.y1475_c00001{bottom:58.858203pt;}
.y12e8_c00001{bottom:58.918972pt;}
.ydcd_c00001{bottom:58.954475pt;}
.y320_c00001{bottom:59.093301pt;}
.y163e_c00001{bottom:59.164653pt;}
.y1086_c00001{bottom:59.329920pt;}
.ydce_c00001{bottom:59.333056pt;}
.y154f_c00001{bottom:59.426667pt;}
.y1ae1_c00001{bottom:59.520571pt;}
.yeb6_c00001{bottom:59.553685pt;}
.y191b_c00001{bottom:59.620259pt;}
.y154e_c00001{bottom:59.629333pt;}
.y1836_c00001{bottom:59.650856pt;}
.y5f6_c00001{bottom:59.761912pt;}
.y191a_c00001{bottom:59.772088pt;}
.y1085_c00001{bottom:59.838328pt;}
.y11ec_c00001{bottom:59.857131pt;}
.y163f_c00001{bottom:59.862437pt;}
.y50e_c00001{bottom:59.885467pt;}
.y1a05_c00001{bottom:60.028645pt;}
.y6e5_c00001{bottom:60.043711pt;}
.yeb5_c00001{bottom:60.066923pt;}
.y1ae2_c00001{bottom:60.104195pt;}
.y80e_c00001{bottom:60.136136pt;}
.y1476_c00001{bottom:60.196061pt;}
.yb95_c00001{bottom:60.212000pt;}
.y1084_c00001{bottom:60.257940pt;}
.y154d_c00001{bottom:60.341333pt;}
.yeb4_c00001{bottom:60.359931pt;}
.y1741_c00001{bottom:60.388544pt;}
.y1a06_c00001{bottom:60.392861pt;}
.y6e6_c00001{bottom:60.484637pt;}
.y1477_c00001{bottom:60.516421pt;}
.y1919_c00001{bottom:60.553688pt;}
.y154c_c00001{bottom:60.718667pt;}
.yfa3_c00001{bottom:60.823285pt;}
.y1837_c00001{bottom:60.837067pt;}
.y50f_c00001{bottom:60.917860pt;}
.y1478_c00001{bottom:60.918835pt;}
.y1373_c00001{bottom:60.933333pt;}
.y1918_c00001{bottom:60.964427pt;}
.ydcf_c00001{bottom:61.112897pt;}
.y80f_c00001{bottom:61.174025pt;}
.y5f5_c00001{bottom:61.177763pt;}
.yfa4_c00001{bottom:61.201543pt;}
.y1838_c00001{bottom:61.203851pt;}
.y1083_c00001{bottom:61.205248pt;}
.y1917_c00001{bottom:61.213584pt;}
.y1640_c00001{bottom:61.234724pt;}
.y1740_c00001{bottom:61.340187pt;}
.y1479_c00001{bottom:61.412573pt;}
.y5f4_c00001{bottom:61.426107pt;}
.y1a07_c00001{bottom:61.476901pt;}
.y173f_c00001{bottom:61.570325pt;}
.yeb3_c00001{bottom:61.627827pt;}
.y1916_c00001{bottom:61.633344pt;}
.y11ed_c00001{bottom:61.744827pt;}
.y1839_c00001{bottom:61.763619pt;}
.y1ae3_c00001{bottom:61.805497pt;}
.y810_c00001{bottom:61.908093pt;}
.y1393_c00001{bottom:61.946667pt;}
.y1a08_c00001{bottom:61.960421pt;}
.y6e7_c00001{bottom:62.045439pt;}
.y11ee_c00001{bottom:62.051811pt;}
.y183a_c00001{bottom:62.101920pt;}
.yfa5_c00001{bottom:62.241176pt;}
.y1082_c00001{bottom:62.279048pt;}
.y1b64_c00001{bottom:62.400000pt;}
.y1c05_c00001{bottom:62.402667pt;}
.y11ef_c00001{bottom:62.445579pt;}
.y5f3_c00001{bottom:62.525884pt;}
.y1641_c00001{bottom:62.626531pt;}
.y1c06_c00001{bottom:62.670667pt;}
.y147a_c00001{bottom:62.694984pt;}
.y1ae4_c00001{bottom:62.728347pt;}
.y183b_c00001{bottom:62.746168pt;}
.y173e_c00001{bottom:62.797835pt;}
.y1081_c00001{bottom:62.836104pt;}
.y1b65_c00001{bottom:62.857333pt;}
.y1a09_c00001{bottom:62.868901pt;}
.y5f2_c00001{bottom:62.922581pt;}
.y133b_c00001{bottom:62.922667pt;}
.y6e8_c00001{bottom:62.948339pt;}
.yb1d_c00001{bottom:63.076005pt;}
.y510_c00001{bottom:63.131903pt;}
.y183c_c00001{bottom:63.134717pt;}
.y1ae5_c00001{bottom:63.149233pt;}
.y173d_c00001{bottom:63.166939pt;}
.y5f1_c00001{bottom:63.347892pt;}
.y1c07_c00001{bottom:63.425333pt;}
.yb1e_c00001{bottom:63.608581pt;}
.yfa6_c00001{bottom:63.650499pt;}
.y1642_c00001{bottom:63.666511pt;}
.y173c_c00001{bottom:63.724720pt;}
.y1b66_c00001{bottom:63.836000pt;}
.y1c08_c00001{bottom:63.940000pt;}
.yb1f_c00001{bottom:64.176113pt;}
.y1643_c00001{bottom:64.268957pt;}
.y1b12_c00001{bottom:64.334667pt;}
.y1c09_c00001{bottom:64.417333pt;}
.y1a67_c00001{bottom:64.476000pt;}
.y811_c00001{bottom:64.905867pt;}
.y1b67_c00001{bottom:64.952000pt;}
.y206_c00001{bottom:65.020128pt;}
.y311_c00001{bottom:65.064901pt;}
.y1b68_c00001{bottom:65.238667pt;}
.yb20_c00001{bottom:65.518205pt;}
.y1bad_c00001{bottom:65.721333pt;}
.y207_c00001{bottom:65.809657pt;}
.y1644_c00001{bottom:65.938675pt;}
.yb21_c00001{bottom:65.959872pt;}
.y511_c00001{bottom:65.985968pt;}
.ydc_c00001{bottom:65.999968pt;}
.y990_c00001{bottom:66.006667pt;}
.y208_c00001{bottom:66.031508pt;}
.y812_c00001{bottom:66.171296pt;}
.y40c_c00001{bottom:66.382352pt;}
.y40b_c00001{bottom:66.382483pt;}
.y40a_c00001{bottom:66.383028pt;}
.y407_c00001{bottom:66.383129pt;}
.y408_c00001{bottom:66.383491pt;}
.y409_c00001{bottom:66.383600pt;}
.y405_c00001{bottom:66.383740pt;}
.y406_c00001{bottom:66.383755pt;}
.y404_c00001{bottom:66.384256pt;}
.y1c72_c00001{bottom:66.475609pt;}
.ydd_c00001{bottom:66.487605pt;}
.y991_c00001{bottom:66.565671pt;}
.y312_c00001{bottom:66.654477pt;}
.y725_c00001{bottom:66.669909pt;}
.y726_c00001{bottom:66.670421pt;}
.y72a_c00001{bottom:66.670613pt;}
.y729_c00001{bottom:66.670656pt;}
.y728_c00001{bottom:66.670944pt;}
.y727_c00001{bottom:66.671061pt;}
.y813_c00001{bottom:66.693349pt;}
.y209_c00001{bottom:66.786720pt;}
.y1319_c00001{bottom:66.874667pt;}
.yde_c00001{bottom:66.898688pt;}
.y313_c00001{bottom:66.936163pt;}
.y20a_c00001{bottom:66.985484pt;}
.y1c73_c00001{bottom:67.052480pt;}
.ydf_c00001{bottom:67.158859pt;}
.yb22_c00001{bottom:67.263064pt;}
.y1645_c00001{bottom:67.410225pt;}
.y1c74_c00001{bottom:67.452256pt;}
.y20b_c00001{bottom:67.751788pt;}
.yb23_c00001{bottom:67.757880pt;}
.ye0_c00001{bottom:67.920309pt;}
.ya3f_c00001{bottom:68.212000pt;}
.y1c75_c00001{bottom:68.219949pt;}
.y1c76_c00001{bottom:68.422888pt;}
.y814_c00001{bottom:68.481795pt;}
.y992_c00001{bottom:68.556385pt;}
.ye1_c00001{bottom:68.713611pt;}
.y1ce8_c00001{bottom:68.757333pt;}
.ye2_c00001{bottom:68.992021pt;}
.y1c77_c00001{bottom:69.039868pt;}
.y314_c00001{bottom:69.197448pt;}
.y1c78_c00001{bottom:69.346408pt;}
.y1264_c00001{bottom:69.352000pt;}
.yc66_c00001{bottom:69.442775pt;}
.yb24_c00001{bottom:69.626516pt;}
.ycc4_c00001{bottom:69.682667pt;}
.yc65_c00001{bottom:69.762032pt;}
.ye3_c00001{bottom:69.812491pt;}
.y993_c00001{bottom:69.818852pt;}
.y506_c00001{bottom:69.886343pt;}
.yb25_c00001{bottom:69.954344pt;}
.y6dd_c00001{bottom:70.101333pt;}
.yc64_c00001{bottom:70.151137pt;}
.ye4_c00001{bottom:70.237237pt;}
.yc9d_c00001{bottom:70.424000pt;}
.y12db_c00001{bottom:70.562667pt;}
.ye5_c00001{bottom:70.606603pt;}
.yc63_c00001{bottom:70.783724pt;}
.y12dc_c00001{bottom:70.915459pt;}
.ydc3_c00001{bottom:70.971365pt;}
.y1080_c00001{bottom:71.064024pt;}
.y315_c00001{bottom:71.065777pt;}
.y1ce4_c00001{bottom:71.261333pt;}
.yc62_c00001{bottom:71.328039pt;}
.y3b_c00001{bottom:71.581333pt;}
.yc61_c00001{bottom:71.615977pt;}
.y12dd_c00001{bottom:71.748925pt;}
.yf99_c00001{bottom:71.757179pt;}
.y32c_c00001{bottom:71.885333pt;}
.y316_c00001{bottom:71.907628pt;}
.y146c_c00001{bottom:71.960464pt;}
.y507_c00001{bottom:71.969565pt;}
.y154b_c00001{bottom:72.013333pt;}
.y1292_c00001{bottom:72.044000pt;}
.yce5_c00001{bottom:72.113333pt;}
.ydc4_c00001{bottom:72.123525pt;}
.yf9a_c00001{bottom:72.158255pt;}
.y121b_c00001{bottom:72.162667pt;}
.y317_c00001{bottom:72.282201pt;}
.yeb2_c00001{bottom:72.300585pt;}
.y994_c00001{bottom:72.386821pt;}
.y19fc_c00001{bottom:72.397293pt;}
.y182b_c00001{bottom:72.476013pt;}
.yc60_c00001{bottom:72.476308pt;}
.y154a_c00001{bottom:72.549333pt;}
.y107f_c00001{bottom:72.571028pt;}
.y12de_c00001{bottom:72.574665pt;}
.yf9b_c00001{bottom:72.599795pt;}
.y173b_c00001{bottom:72.621227pt;}
.yeb1_c00001{bottom:72.777509pt;}
.y19fd_c00001{bottom:73.015024pt;}
.y11e4_c00001{bottom:73.074845pt;}
.ydc5_c00001{bottom:73.086899pt;}
.y6de_c00001{bottom:73.164488pt;}
.y182c_c00001{bottom:73.272204pt;}
.y508_c00001{bottom:73.295060pt;}
.y10e5_c00001{bottom:73.313333pt;}
.y1915_c00001{bottom:73.334253pt;}
.y1242_c00001{bottom:73.390667pt;}
.y146d_c00001{bottom:73.405861pt;}
.y12df_c00001{bottom:73.459837pt;}
.y995_c00001{bottom:73.487043pt;}
.y1549_c00001{bottom:73.608000pt;}
.y11e5_c00001{bottom:73.631299pt;}
.y182d_c00001{bottom:73.640651pt;}
.y107e_c00001{bottom:73.701160pt;}
.y1548_c00001{bottom:73.752000pt;}
.yeb0_c00001{bottom:73.919365pt;}
.y11e6_c00001{bottom:73.922976pt;}
.y509_c00001{bottom:73.962827pt;}
.y5f0_c00001{bottom:73.980920pt;}
.y19fe_c00001{bottom:73.981381pt;}
.y146e_c00001{bottom:73.993971pt;}
.y1914_c00001{bottom:74.021213pt;}
.y1637_c00001{bottom:74.054671pt;}
.y110d_c00001{bottom:74.082667pt;}
.y8bf_c00001{bottom:74.138667pt;}
.y318_c00001{bottom:74.226417pt;}
.y173a_c00001{bottom:74.245861pt;}
.y6df_c00001{bottom:74.261573pt;}
.y12e0_c00001{bottom:74.289783pt;}
.y1cc8_c00001{bottom:74.302667pt;}
.y1913_c00001{bottom:74.309523pt;}
.y5ef_c00001{bottom:74.324119pt;}
.y19ff_c00001{bottom:74.387971pt;}
.ydc6_c00001{bottom:74.407725pt;}
.ydc7_c00001{bottom:74.506780pt;}
.y12e1_c00001{bottom:74.549829pt;}
.yf9c_c00001{bottom:74.560067pt;}
.y1912_c00001{bottom:74.571029pt;}
.y182e_c00001{bottom:74.637196pt;}
.y1adc_c00001{bottom:74.641027pt;}
.y11e7_c00001{bottom:74.809680pt;}
.y5ee_c00001{bottom:74.809905pt;}
.y131_c00001{bottom:74.826667pt;}
.yeaf_c00001{bottom:74.871821pt;}
.yb94_c00001{bottom:74.977333pt;}
.y1911_c00001{bottom:74.993736pt;}
.y1739_c00001{bottom:75.018715pt;}
.y182f_c00001{bottom:75.036480pt;}
.yf9d_c00001{bottom:75.087899pt;}
.y1547_c00001{bottom:75.170667pt;}
.y146f_c00001{bottom:75.227651pt;}
.yeae_c00001{bottom:75.242500pt;}
.y1830_c00001{bottom:75.332811pt;}
.y1738_c00001{bottom:75.410379pt;}
.y12e2_c00001{bottom:75.421499pt;}
.y1372_c00001{bottom:75.477333pt;}
.y107d_c00001{bottom:75.488212pt;}
.y1638_c00001{bottom:75.687589pt;}
.y1add_c00001{bottom:75.706613pt;}
.y1a00_c00001{bottom:75.755960pt;}
.y1910_c00001{bottom:75.796421pt;}
.y1546_c00001{bottom:75.840000pt;}
.y11e8_c00001{bottom:75.860720pt;}
.y107c_c00001{bottom:75.962436pt;}
.y807_c00001{bottom:75.974351pt;}
.y5ed_c00001{bottom:75.986735pt;}
.y1470_c00001{bottom:76.041517pt;}
.ydc8_c00001{bottom:76.077655pt;}
.y11e9_c00001{bottom:76.127040pt;}
.y1831_c00001{bottom:76.194892pt;}
.y1737_c00001{bottom:76.428357pt;}
.yf9e_c00001{bottom:76.489343pt;}
.y32b_c00001{bottom:76.546667pt;}
.yead_c00001{bottom:76.751709pt;}
.y1ade_c00001{bottom:76.772039pt;}
.y808_c00001{bottom:76.773144pt;}
.y1a01_c00001{bottom:76.907411pt;}
.y6e0_c00001{bottom:76.927907pt;}
.y5ec_c00001{bottom:76.996672pt;}
.y1832_c00001{bottom:77.032623pt;}
.y1392_c00001{bottom:77.092000pt;}
.y11ea_c00001{bottom:77.101280pt;}
.y1adf_c00001{bottom:77.251115pt;}
.y5eb_c00001{bottom:77.329428pt;}
.y6e1_c00001{bottom:77.352443pt;}
.y1471_c00001{bottom:77.392045pt;}
.y1ae0_c00001{bottom:77.510543pt;}
.y1639_c00001{bottom:77.633675pt;}
.y50a_c00001{bottom:77.668503pt;}
.y107b_c00001{bottom:77.710996pt;}
.y1b5e_c00001{bottom:77.758667pt;}
.y1472_c00001{bottom:77.776064pt;}
.y133a_c00001{bottom:77.777333pt;}
.y1736_c00001{bottom:77.785285pt;}
.yf9f_c00001{bottom:77.941223pt;}
.y1a02_c00001{bottom:78.030379pt;}
.y163a_c00001{bottom:78.062008pt;}
.y5ea_c00001{bottom:78.174115pt;}
.yb14_c00001{bottom:78.204721pt;}
.y1b5f_c00001{bottom:78.346667pt;}
.y809_c00001{bottom:78.522481pt;}
.yfa0_c00001{bottom:78.533855pt;}
.y1735_c00001{bottom:78.614000pt;}
.y1b60_c00001{bottom:78.690667pt;}
.y1c04_c00001{bottom:78.718667pt;}
.y989_c00001{bottom:78.733333pt;}
.y80a_c00001{bottom:79.100836pt;}
.y5e9_c00001{bottom:79.193268pt;}
.y1b11_c00001{bottom:79.226667pt;}
.y163b_c00001{bottom:79.234167pt;}
.y6e2_c00001{bottom:79.332496pt;}
.y1b61_c00001{bottom:79.456000pt;}
.y1a66_c00001{bottom:79.528000pt;}
.y403_c00001{bottom:79.628664pt;}
.yb15_c00001{bottom:79.682415pt;}
.y80b_c00001{bottom:79.696403pt;}
.y98a_c00001{bottom:79.762693pt;}
.y163c_c00001{bottom:79.806663pt;}
.y50b_c00001{bottom:79.907356pt;}
.y402_c00001{bottom:79.916292pt;}
.y71e_c00001{bottom:79.918624pt;}
.y1b62_c00001{bottom:80.033333pt;}
.y1ff_c00001{bottom:80.140968pt;}
.y401_c00001{bottom:80.193507pt;}
.y1b63_c00001{bottom:80.232000pt;}
.yb16_c00001{bottom:80.256549pt;}
.y400_c00001{bottom:80.323175pt;}
.y71f_c00001{bottom:80.362091pt;}
.y98b_c00001{bottom:80.386837pt;}
.y200_c00001{bottom:80.513529pt;}
.yd5_c00001{bottom:80.881995pt;}
.y1d5d_c00001{bottom:80.882667pt;}
.y3ff_c00001{bottom:80.925344pt;}
.y1bac_c00001{bottom:81.080000pt;}
.y3fe_c00001{bottom:81.128727pt;}
.y720_c00001{bottom:81.279861pt;}
.y1318_c00001{bottom:81.300000pt;}
.y309_c00001{bottom:81.377461pt;}
.y80c_c00001{bottom:81.574127pt;}
.y3fd_c00001{bottom:81.577439pt;}
.y721_c00001{bottom:81.670240pt;}
.y1d5e_c00001{bottom:81.696067pt;}
.y201_c00001{bottom:81.851764pt;}
.y722_c00001{bottom:81.864704pt;}
.y1d5f_c00001{bottom:82.038087pt;}
.y163d_c00001{bottom:82.105492pt;}
.y3fc_c00001{bottom:82.108079pt;}
.y202_c00001{bottom:82.164661pt;}
.y3fb_c00001{bottom:82.303571pt;}
.y203_c00001{bottom:82.434547pt;}
.yd6_c00001{bottom:82.437632pt;}
.yb17_c00001{bottom:82.462863pt;}
.yd7_c00001{bottom:82.585216pt;}
.ya3e_c00001{bottom:82.800000pt;}
.yb18_c00001{bottom:82.836095pt;}
.y723_c00001{bottom:82.905952pt;}
.y80d_c00001{bottom:82.915071pt;}
.y30a_c00001{bottom:83.012741pt;}
.y1d60_c00001{bottom:83.020987pt;}
.y724_c00001{bottom:83.128811pt;}
.yb19_c00001{bottom:83.305119pt;}
.y204_c00001{bottom:83.312343pt;}
.y98c_c00001{bottom:83.648149pt;}
.yd8_c00001{bottom:83.658336pt;}
.y1d61_c00001{bottom:83.683527pt;}
.y30b_c00001{bottom:83.784191pt;}
.yd9_c00001{bottom:83.885792pt;}
.y1d62_c00001{bottom:83.973367pt;}
.y1263_c00001{bottom:84.101333pt;}
.ycc3_c00001{bottom:84.202667pt;}
.y1c67_c00001{bottom:84.237500pt;}
.y205_c00001{bottom:84.405541pt;}
.y1c68_c00001{bottom:84.496025pt;}
.yb1a_c00001{bottom:84.507055pt;}
.y1d63_c00001{bottom:84.558547pt;}
.yc5f_c00001{bottom:84.612068pt;}
.y10e0_c00001{bottom:84.728000pt;}
.y1c69_c00001{bottom:84.875477pt;}
.y98d_c00001{bottom:84.940885pt;}
.yc5e_c00001{bottom:85.197061pt;}
.y12d2_c00001{bottom:85.197333pt;}
.yb1b_c00001{bottom:85.287447pt;}
.y1c6a_c00001{bottom:85.341884pt;}
.y10e1_c00001{bottom:85.425333pt;}
.yda_c00001{bottom:85.450709pt;}
.yc9c_c00001{bottom:85.493333pt;}
.yc5d_c00001{bottom:85.495312pt;}
.ydb_c00001{bottom:85.561995pt;}
.yb1c_c00001{bottom:85.595025pt;}
.y1c6b_c00001{bottom:85.620913pt;}
.y1a4f_c00001{bottom:85.680000pt;}
.y12d3_c00001{bottom:85.698667pt;}
.yc5c_c00001{bottom:85.758049pt;}
.y12d4_c00001{bottom:85.838667pt;}
.y1c6c_c00001{bottom:85.886823pt;}
.y30c_c00001{bottom:85.887421pt;}
.y10e2_c00001{bottom:86.110667pt;}
.y1c6d_c00001{bottom:86.188973pt;}
.ydbc_c00001{bottom:86.335159pt;}
.yc5b_c00001{bottom:86.430205pt;}
.y12d5_c00001{bottom:86.450667pt;}
.y98e_c00001{bottom:86.528053pt;}
.y1c6e_c00001{bottom:86.662140pt;}
.y4fd_c00001{bottom:86.678997pt;}
.yeac_c00001{bottom:86.714811pt;}
.y6d8_c00001{bottom:86.744645pt;}
.yc5a_c00001{bottom:86.748492pt;}
.y12d6_c00001{bottom:86.778667pt;}
.y3a_c00001{bottom:86.825333pt;}
.y1c6f_c00001{bottom:86.861043pt;}
.y12d7_c00001{bottom:86.902667pt;}
.yc59_c00001{bottom:87.005041pt;}
.ydbd_c00001{bottom:87.009983pt;}
.y30d_c00001{bottom:87.022373pt;}
.y19f4_c00001{bottom:87.045587pt;}
.yce4_c00001{bottom:87.070667pt;}
.y12d8_c00001{bottom:87.072000pt;}
.y1c70_c00001{bottom:87.196436pt;}
.y1291_c00001{bottom:87.253333pt;}
.y121a_c00001{bottom:87.297333pt;}
.y107a_c00001{bottom:87.301128pt;}
.y1825_c00001{bottom:87.358083pt;}
.y10e3_c00001{bottom:87.372000pt;}
.y98f_c00001{bottom:87.381061pt;}
.y12d9_c00001{bottom:87.384000pt;}
.y11dd_c00001{bottom:87.485661pt;}
.y1c71_c00001{bottom:87.490059pt;}
.y6d9_c00001{bottom:87.510427pt;}
.yc58_c00001{bottom:87.569149pt;}
.y8be_c00001{bottom:87.596000pt;}
.yeab_c00001{bottom:87.731016pt;}
.y1826_c00001{bottom:87.820325pt;}
.y8bd_c00001{bottom:87.838667pt;}
.yf90_c00001{bottom:87.842029pt;}
.ydbe_c00001{bottom:87.875203pt;}
.y1734_c00001{bottom:87.877440pt;}
.y12da_c00001{bottom:87.914667pt;}
.yc57_c00001{bottom:88.076391pt;}
.y1733_c00001{bottom:88.081707pt;}
.y11de_c00001{bottom:88.153605pt;}
.y19f5_c00001{bottom:88.178011pt;}
.ydbf_c00001{bottom:88.260529pt;}
.y1732_c00001{bottom:88.338971pt;}
.y8bc_c00001{bottom:88.376000pt;}
.y10e4_c00001{bottom:88.416000pt;}
.y4fe_c00001{bottom:88.426472pt;}
.yeaa_c00001{bottom:88.428325pt;}
.y1241_c00001{bottom:88.456000pt;}
.y19f6_c00001{bottom:88.503037pt;}
.y8bb_c00001{bottom:88.520000pt;}
.y1463_c00001{bottom:88.521107pt;}
.ydc0_c00001{bottom:88.579967pt;}
.y190f_c00001{bottom:88.594720pt;}
.y110c_c00001{bottom:88.670667pt;}
.y1630_c00001{bottom:88.688649pt;}
.y8ba_c00001{bottom:88.784000pt;}
.y1464_c00001{bottom:88.879459pt;}
.y1079_c00001{bottom:88.917428pt;}
.y6da_c00001{bottom:89.008389pt;}
.y8b9_c00001{bottom:89.158667pt;}
.y30e_c00001{bottom:89.173472pt;}
.y1465_c00001{bottom:89.216741pt;}
.y130_c00001{bottom:89.258667pt;}
.y8b8_c00001{bottom:89.288000pt;}
.ydc1_c00001{bottom:89.331977pt;}
.y1078_c00001{bottom:89.336796pt;}
.yf91_c00001{bottom:89.342812pt;}
.y11df_c00001{bottom:89.365688pt;}
.y1545_c00001{bottom:89.390667pt;}
.y1731_c00001{bottom:89.528725pt;}
.y1631_c00001{bottom:89.560087pt;}
.y1827_c00001{bottom:89.645144pt;}
.y1077_c00001{bottom:89.652036pt;}
.yea9_c00001{bottom:89.659687pt;}
.y190e_c00001{bottom:89.701208pt;}
.yf92_c00001{bottom:89.801543pt;}
.y1466_c00001{bottom:89.815701pt;}
.y30f_c00001{bottom:89.835136pt;}
.yb93_c00001{bottom:89.898667pt;}
.y1730_c00001{bottom:89.904539pt;}
.y11e0_c00001{bottom:89.967968pt;}
.y8b7_c00001{bottom:90.008000pt;}
.y19f7_c00001{bottom:90.017237pt;}
.y1cc7_c00001{bottom:90.034667pt;}
.y1467_c00001{bottom:90.111643pt;}
.ydc2_c00001{bottom:90.185683pt;}
.y6db_c00001{bottom:90.231691pt;}
.y1ad8_c00001{bottom:90.241333pt;}
.yea8_c00001{bottom:90.248848pt;}
.y190d_c00001{bottom:90.290021pt;}
.y5e8_c00001{bottom:90.438439pt;}
.y11e1_c00001{bottom:90.451365pt;}
.y1a4e_c00001{bottom:90.480000pt;}
.yf93_c00001{bottom:90.519499pt;}
.y4ff_c00001{bottom:90.549725pt;}
.y190c_c00001{bottom:90.627883pt;}
.y1076_c00001{bottom:90.639912pt;}
.y310_c00001{bottom:90.673567pt;}
.y1828_c00001{bottom:90.744504pt;}
.y6dc_c00001{bottom:90.770224pt;}
.y172f_c00001{bottom:90.804384pt;}
.y1468_c00001{bottom:90.836965pt;}
.y1632_c00001{bottom:90.888581pt;}
.y190b_c00001{bottom:90.942203pt;}
.y500_c00001{bottom:91.092073pt;}
.y1ad9_c00001{bottom:91.115320pt;}
.y1469_c00001{bottom:91.373931pt;}
.y190a_c00001{bottom:91.399352pt;}
.yf94_c00001{bottom:91.483181pt;}
.yea7_c00001{bottom:91.485856pt;}
.y800_c00001{bottom:91.566256pt;}
.y5e7_c00001{bottom:91.636495pt;}
.y1371_c00001{bottom:91.678667pt;}
.y300_c00001{bottom:91.710985pt;}
.yf95_c00001{bottom:91.782617pt;}
.y11e2_c00001{bottom:91.794672pt;}
.yea6_c00001{bottom:91.833505pt;}
.y172e_c00001{bottom:91.887248pt;}
.y1829_c00001{bottom:91.944443pt;}
.y1391_c00001{bottom:91.946667pt;}
.y501_c00001{bottom:91.988388pt;}
.y5e6_c00001{bottom:92.020679pt;}
.y19f8_c00001{bottom:92.083168pt;}
.yea5_c00001{bottom:92.119027pt;}
.y1339_c00001{bottom:92.162667pt;}
.y182a_c00001{bottom:92.231351pt;}
.y146a_c00001{bottom:92.239040pt;}
.y1ada_c00001{bottom:92.245343pt;}
.yf96_c00001{bottom:92.270579pt;}
.y801_c00001{bottom:92.429755pt;}
.y172d_c00001{bottom:92.443317pt;}
.y19f9_c00001{bottom:92.474843pt;}
.y5e5_c00001{bottom:92.482083pt;}
.y1633_c00001{bottom:92.625473pt;}
.y716_c00001{bottom:92.649333pt;}
.y1adb_c00001{bottom:92.712271pt;}
.y1075_c00001{bottom:92.753004pt;}
.y1a4d_c00001{bottom:92.880000pt;}
.y146b_c00001{bottom:92.956352pt;}
.y19fa_c00001{bottom:93.017043pt;}
.y5e4_c00001{bottom:93.066425pt;}
.y717_c00001{bottom:93.112853pt;}
.y1074_c00001{bottom:93.150068pt;}
.y301_c00001{bottom:93.174385pt;}
.yf97_c00001{bottom:93.309427pt;}
.y11e3_c00001{bottom:93.404744pt;}
.y983_c00001{bottom:93.457237pt;}
.y172c_c00001{bottom:93.500080pt;}
.y1b5a_c00001{bottom:93.616000pt;}
.y1c03_c00001{bottom:93.701333pt;}
.y5e3_c00001{bottom:93.734047pt;}
.y19fb_c00001{bottom:93.754581pt;}
.y1073_c00001{bottom:93.782704pt;}
.y302_c00001{bottom:93.816283pt;}
.y1b10_c00001{bottom:93.984000pt;}
.y5e2_c00001{bottom:94.014095pt;}
.y718_c00001{bottom:94.058037pt;}
.y1634_c00001{bottom:94.186491pt;}
.y502_c00001{bottom:94.224637pt;}
.yf98_c00001{bottom:94.258387pt;}
.y303_c00001{bottom:94.281219pt;}
.y984_c00001{bottom:94.292201pt;}
.y5e1_c00001{bottom:94.314341pt;}
.y1a65_c00001{bottom:94.441333pt;}
.y1b5b_c00001{bottom:94.466667pt;}
.y3fa_c00001{bottom:94.489232pt;}
.y719_c00001{bottom:94.508981pt;}
.y802_c00001{bottom:94.555377pt;}
.y1b5c_c00001{bottom:94.636000pt;}
.yb0c_c00001{bottom:94.767409pt;}
.y3f9_c00001{bottom:94.934723pt;}
.y71a_c00001{bottom:95.050805pt;}
.y503_c00001{bottom:95.071369pt;}
.y1b5d_c00001{bottom:95.197333pt;}
.y1f7_c00001{bottom:95.499927pt;}
.y1bab_c00001{bottom:95.668000pt;}
.y304_c00001{bottom:95.683973pt;}
.y504_c00001{bottom:95.705612pt;}
.y803_c00001{bottom:95.724545pt;}
.y1f8_c00001{bottom:95.752971pt;}
.ya3d_c00001{bottom:95.829333pt;}
.y3f8_c00001{bottom:95.877336pt;}
.y1635_c00001{bottom:95.937808pt;}
.yb0d_c00001{bottom:96.002359pt;}
.y3f7_c00001{bottom:96.070672pt;}
.y71b_c00001{bottom:96.115285pt;}
.y1f9_c00001{bottom:96.181251pt;}
.y3f6_c00001{bottom:96.286224pt;}
.y985_c00001{bottom:96.445573pt;}
.y3f5_c00001{bottom:96.454249pt;}
.yb0e_c00001{bottom:96.471316pt;}
.y1636_c00001{bottom:96.474247pt;}
.ycf_c00001{bottom:96.482667pt;}
.y1317_c00001{bottom:96.485333pt;}
.y804_c00001{bottom:96.502369pt;}
.y1fa_c00001{bottom:96.577147pt;}
.ya3c_c00001{bottom:96.640000pt;}
.yd0_c00001{bottom:96.655189pt;}
.y1fb_c00001{bottom:96.783052pt;}
.y71c_c00001{bottom:96.823573pt;}
.yd1_c00001{bottom:96.924395pt;}
.ya3b_c00001{bottom:96.957333pt;}
.y505_c00001{bottom:96.972129pt;}
.y1fc_c00001{bottom:97.100171pt;}
.y3f4_c00001{bottom:97.215523pt;}
.y805_c00001{bottom:97.343836pt;}
.y1fd_c00001{bottom:97.361068pt;}
.y3f3_c00001{bottom:97.424315pt;}
.y806_c00001{bottom:97.639604pt;}
.y71d_c00001{bottom:97.670325pt;}
.y305_c00001{bottom:97.719496pt;}
.ya3a_c00001{bottom:97.841333pt;}
.yb0f_c00001{bottom:97.904076pt;}
.ya39_c00001{bottom:98.009333pt;}
.y1fe_c00001{bottom:98.045200pt;}
.yd2_c00001{bottom:98.168512pt;}
.ya38_c00001{bottom:98.536000pt;}
.yb10_c00001{bottom:98.710091pt;}
.ya37_c00001{bottom:98.773333pt;}
.y306_c00001{bottom:98.791889pt;}
.yd3_c00001{bottom:99.013205pt;}
.ya36_c00001{bottom:99.120000pt;}
.yb11_c00001{bottom:99.317811pt;}
.y986_c00001{bottom:99.584137pt;}
.y1262_c00001{bottom:99.673333pt;}
.ycc2_c00001{bottom:99.800000pt;}
.y4f5_c00001{bottom:99.885364pt;}
.yd4_c00001{bottom:100.073088pt;}
.y12ca_c00001{bottom:100.078667pt;}
.yc56_c00001{bottom:100.242195pt;}
.yc9b_c00001{bottom:100.400000pt;}
.yb12_c00001{bottom:100.484780pt;}
.y12cb_c00001{bottom:100.520000pt;}
.y307_c00001{bottom:100.528613pt;}
.yea4_c00001{bottom:100.840656pt;}
.y987_c00001{bottom:100.896825pt;}
.yc55_c00001{bottom:101.010611pt;}
.y4f6_c00001{bottom:101.126928pt;}
.yb13_c00001{bottom:101.172371pt;}
.y12cc_c00001{bottom:101.228000pt;}
.yc54_c00001{bottom:101.310196pt;}
.y12cd_c00001{bottom:101.377333pt;}
.y1219_c00001{bottom:101.398667pt;}
.y1ce3_c00001{bottom:101.426667pt;}
.y308_c00001{bottom:101.585044pt;}
.y988_c00001{bottom:101.681141pt;}
.y1072_c00001{bottom:101.683936pt;}
.ydb5_c00001{bottom:101.701015pt;}
.y2f5_c00001{bottom:101.765333pt;}
.y4f7_c00001{bottom:101.875716pt;}
.y19ed_c00001{bottom:101.924219pt;}
.y181f_c00001{bottom:102.004000pt;}
.yce3_c00001{bottom:102.056000pt;}
.y11d7_c00001{bottom:102.132837pt;}
.yc53_c00001{bottom:102.140081pt;}
.ydb6_c00001{bottom:102.171659pt;}
.y12ce_c00001{bottom:102.230667pt;}
.y12cf_c00001{bottom:102.384000pt;}
.y19ee_c00001{bottom:102.384048pt;}
.yf89_c00001{bottom:102.488000pt;}
.y39_c00001{bottom:102.506667pt;}
.yea3_c00001{bottom:102.558619pt;}
.y172b_c00001{bottom:102.614576pt;}
.yc52_c00001{bottom:102.618565pt;}
.y1c5e_c00001{bottom:102.719208pt;}
.y19ef_c00001{bottom:102.918824pt;}
.y10df_c00001{bottom:102.957333pt;}
.y12d0_c00001{bottom:102.988000pt;}
.ydb7_c00001{bottom:103.035644pt;}
.y11d8_c00001{bottom:103.044243pt;}
.y172a_c00001{bottom:103.063920pt;}
.y12d1_c00001{bottom:103.138667pt;}
.y145c_c00001{bottom:103.163683pt;}
.y1820_c00001{bottom:103.164917pt;}
.y1c5f_c00001{bottom:103.361183pt;}
.y1729_c00001{bottom:103.380075pt;}
.y2f6_c00001{bottom:103.380952pt;}
.y1071_c00001{bottom:103.432152pt;}
.yc51_c00001{bottom:103.437325pt;}
.y1290_c00001{bottom:103.466667pt;}
.ydb8_c00001{bottom:103.482284pt;}
.y5e0_c00001{bottom:103.546504pt;}
.y1c60_c00001{bottom:103.673235pt;}
.yea2_c00001{bottom:103.719016pt;}
.y110b_c00001{bottom:103.814667pt;}
.y162a_c00001{bottom:103.829252pt;}
.yf8a_c00001{bottom:103.913960pt;}
.ydb9_c00001{bottom:103.987296pt;}
.y1c61_c00001{bottom:103.994976pt;}
.y1070_c00001{bottom:104.049928pt;}
.y19f0_c00001{bottom:104.170448pt;}
.y5df_c00001{bottom:104.180583pt;}
.y145d_c00001{bottom:104.205088pt;}
.y8b6_c00001{bottom:104.246667pt;}
.y12f_c00001{bottom:104.253333pt;}
.y1544_c00001{bottom:104.298667pt;}
.y1c62_c00001{bottom:104.350309pt;}
.y106f_c00001{bottom:104.474548pt;}
.y2f7_c00001{bottom:104.507796pt;}
.yea1_c00001{bottom:104.550211pt;}
.y1c63_c00001{bottom:104.563215pt;}
.y19f1_c00001{bottom:104.577272pt;}
.y1821_c00001{bottom:104.620020pt;}
.y1240_c00001{bottom:104.642667pt;}
.y1728_c00001{bottom:104.708224pt;}
.y1905_c00001{bottom:104.821024pt;}
.y1902_c00001{bottom:104.821056pt;}
.y1903_c00001{bottom:104.821165pt;}
.y1906_c00001{bottom:104.821299pt;}
.y1904_c00001{bottom:104.821456pt;}
.y1909_c00001{bottom:104.821563pt;}
.y1907_c00001{bottom:104.821715pt;}
.y1908_c00001{bottom:104.821757pt;}
.yea0_c00001{bottom:104.988355pt;}
.y1c64_c00001{bottom:105.024819pt;}
.y19f2_c00001{bottom:105.026424pt;}
.y1ad2_c00001{bottom:105.119873pt;}
.y1727_c00001{bottom:105.134837pt;}
.y1cc6_c00001{bottom:105.156000pt;}
.y1822_c00001{bottom:105.199835pt;}
.ye9f_c00001{bottom:105.263221pt;}
.ydba_c00001{bottom:105.326891pt;}
.yf8b_c00001{bottom:105.359864pt;}
.y145e_c00001{bottom:105.423411pt;}
.y4f8_c00001{bottom:105.496923pt;}
.y1c65_c00001{bottom:105.533015pt;}
.y1370_c00001{bottom:105.598667pt;}
.y710_c00001{bottom:105.608000pt;}
.y162b_c00001{bottom:105.633693pt;}
.y1726_c00001{bottom:105.644971pt;}
.y145f_c00001{bottom:105.651827pt;}
.y5de_c00001{bottom:105.696232pt;}
.y6ce_c00001{bottom:105.701675pt;}
.y11d9_c00001{bottom:105.707581pt;}
.y106e_c00001{bottom:105.786772pt;}
.y1c66_c00001{bottom:105.788907pt;}
.y1823_c00001{bottom:105.815805pt;}
.y1ad3_c00001{bottom:106.047453pt;}
.y6cf_c00001{bottom:106.088549pt;}
.y4f9_c00001{bottom:106.116437pt;}
.y711_c00001{bottom:106.169333pt;}
.y11da_c00001{bottom:106.175635pt;}
.yb92_c00001{bottom:106.293333pt;}
.ydbb_c00001{bottom:106.396940pt;}
.y2f8_c00001{bottom:106.456499pt;}
.y1ad4_c00001{bottom:106.514013pt;}
.ye9e_c00001{bottom:106.526101pt;}
.y712_c00001{bottom:106.542667pt;}
.y11db_c00001{bottom:106.546947pt;}
.y6d0_c00001{bottom:106.553979pt;}
.y1460_c00001{bottom:106.577560pt;}
.y6d1_c00001{bottom:106.685515pt;}
.y162c_c00001{bottom:106.832741pt;}
.y1725_c00001{bottom:106.881339pt;}
.yf8c_c00001{bottom:106.895948pt;}
.y1390_c00001{bottom:106.961333pt;}
.y1ad5_c00001{bottom:107.021627pt;}
.y19f3_c00001{bottom:107.032003pt;}
.y5dd_c00001{bottom:107.097441pt;}
.y1461_c00001{bottom:107.124160pt;}
.y106d_c00001{bottom:107.144408pt;}
.y7f7_c00001{bottom:107.158056pt;}
.y6d2_c00001{bottom:107.197339pt;}
.y713_c00001{bottom:107.292000pt;}
.yf8d_c00001{bottom:107.418200pt;}
.y1ad6_c00001{bottom:107.433860pt;}
.y1724_c00001{bottom:107.477419pt;}
.y2f9_c00001{bottom:107.483849pt;}
.y7f8_c00001{bottom:107.502379pt;}
.y6d3_c00001{bottom:107.605472pt;}
.y1338_c00001{bottom:107.681333pt;}
.y1ad7_c00001{bottom:107.779213pt;}
.y1824_c00001{bottom:107.800705pt;}
.y11dc_c00001{bottom:107.803005pt;}
.yf8e_c00001{bottom:107.840984pt;}
.y6d4_c00001{bottom:107.864528pt;}
.y714_c00001{bottom:107.876000pt;}
.y1462_c00001{bottom:107.896280pt;}
.y6d5_c00001{bottom:108.095291pt;}
.y7f9_c00001{bottom:108.152041pt;}
.yb02_c00001{bottom:108.220187pt;}
.y1cda_c00001{bottom:108.240000pt;}
.y6d6_c00001{bottom:108.311307pt;}
.y162d_c00001{bottom:108.468500pt;}
.y1b0f_c00001{bottom:108.520000pt;}
.y1723_c00001{bottom:108.626533pt;}
.y106c_c00001{bottom:108.656860pt;}
.yb03_c00001{bottom:108.738567pt;}
.y7fa_c00001{bottom:108.756099pt;}
.y6d7_c00001{bottom:108.764112pt;}
.y1c02_c00001{bottom:108.845333pt;}
.yf8f_c00001{bottom:108.879152pt;}
.y4fa_c00001{bottom:108.904912pt;}
.y2fa_c00001{bottom:108.941372pt;}
.y5dc_c00001{bottom:108.943821pt;}
.y162e_c00001{bottom:108.971737pt;}
.y3f2_c00001{bottom:109.035537pt;}
.y715_c00001{bottom:109.109333pt;}
.y1b59_c00001{bottom:109.296000pt;}
.yb04_c00001{bottom:109.408223pt;}
.y1a64_c00001{bottom:109.424000pt;}
.y1d6a_c00001{bottom:109.440000pt;}
.y5db_c00001{bottom:109.444264pt;}
.y2ee_c00001{bottom:109.447600pt;}
.y97c_c00001{bottom:109.520753pt;}
.y162f_c00001{bottom:109.615829pt;}
.y4fb_c00001{bottom:109.661681pt;}
.y3f1_c00001{bottom:109.730733pt;}
.y1a4c_c00001{bottom:109.920000pt;}
.y1d6b_c00001{bottom:109.960019pt;}
.y3f0_c00001{bottom:110.001761pt;}
.y2ef_c00001{bottom:110.036973pt;}
.y7fb_c00001{bottom:110.044777pt;}
.y3ef_c00001{bottom:110.219161pt;}
.y2fb_c00001{bottom:110.341276pt;}
.y1d6c_c00001{bottom:110.417953pt;}
.y97d_c00001{bottom:110.496177pt;}
.y1ee_c00001{bottom:110.619972pt;}
.y1d6d_c00001{bottom:110.860520pt;}
.yb05_c00001{bottom:110.890827pt;}
.y3ee_c00001{bottom:110.891671pt;}
.y1ef_c00001{bottom:110.945727pt;}
.y2fc_c00001{bottom:110.975355pt;}
.y97e_c00001{bottom:111.076373pt;}
.y1d6e_c00001{bottom:111.078823pt;}
.y3ed_c00001{bottom:111.118691pt;}
.y2fd_c00001{bottom:111.127273pt;}
.y1baa_c00001{bottom:111.157333pt;}
.yb06_c00001{bottom:111.440351pt;}
.y1f0_c00001{bottom:111.510909pt;}
.y2fe_c00001{bottom:111.550831pt;}
.yc6_c00001{bottom:111.601333pt;}
.y7fc_c00001{bottom:111.699137pt;}
.y1d5c_c00001{bottom:111.718667pt;}
.y2f0_c00001{bottom:111.767613pt;}
.y4fc_c00001{bottom:111.770607pt;}
.yc7_c00001{bottom:111.788724pt;}
.y3ec_c00001{bottom:111.892532pt;}
.y1f1_c00001{bottom:111.942719pt;}
.yb07_c00001{bottom:111.991383pt;}
.y1d6f_c00001{bottom:112.071713pt;}
.y1316_c00001{bottom:112.080000pt;}
.y1d94_c00001{bottom:112.114667pt;}
.y3eb_c00001{bottom:112.120036pt;}
.y1f2_c00001{bottom:112.142051pt;}
.y2ff_c00001{bottom:112.247667pt;}
.y3ea_c00001{bottom:112.303473pt;}
.y1d70_c00001{bottom:112.320480pt;}
.yc8_c00001{bottom:112.387833pt;}
.y7fd_c00001{bottom:112.424435pt;}
.y1f3_c00001{bottom:112.458567pt;}
.yc9_c00001{bottom:112.652929pt;}
.y97f_c00001{bottom:112.687233pt;}
.y1d71_c00001{bottom:112.892337pt;}
.y1f4_c00001{bottom:112.959593pt;}
.yca_c00001{bottom:113.030172pt;}
.y1f5_c00001{bottom:113.141885pt;}
.ya35_c00001{bottom:113.176000pt;}
.ycb_c00001{bottom:113.189691pt;}
.y7fe_c00001{bottom:113.479623pt;}
.y1f6_c00001{bottom:113.493695pt;}
.yb08_c00001{bottom:113.502444pt;}
.y2f1_c00001{bottom:113.765587pt;}
.ycc_c00001{bottom:113.935180pt;}
.y7ff_c00001{bottom:114.049952pt;}
.y1261_c00001{bottom:114.156000pt;}
.y181e_c00001{bottom:114.241291pt;}
.y181d_c00001{bottom:114.241421pt;}
.y181c_c00001{bottom:114.241779pt;}
.ycd_c00001{bottom:114.247648pt;}
.yb09_c00001{bottom:114.261803pt;}
.y980_c00001{bottom:114.426917pt;}
.yce_c00001{bottom:114.440915pt;}
.ycc1_c00001{bottom:114.454667pt;}
.y2f2_c00001{bottom:114.641773pt;}
.ydac_c00001{bottom:115.149965pt;}
.yc9a_c00001{bottom:115.493333pt;}
.yb0a_c00001{bottom:115.738993pt;}
.y981_c00001{bottom:115.798317pt;}
.yb0b_c00001{bottom:116.162489pt;}
.yce2_c00001{bottom:116.400000pt;}
.y4ee_c00001{bottom:116.433549pt;}
.ye9d_c00001{bottom:116.528736pt;}
.y2f3_c00001{bottom:116.621053pt;}
.y127_c00001{bottom:116.641333pt;}
.ydad_c00001{bottom:116.723033pt;}
.y982_c00001{bottom:116.756437pt;}
.y19e6_c00001{bottom:116.810141pt;}
.y10de_c00001{bottom:116.894667pt;}
.y128_c00001{bottom:117.105157pt;}
.y128f_c00001{bottom:117.130667pt;}
.ydae_c00001{bottom:117.141553pt;}
.y1453_c00001{bottom:117.332491pt;}
.yc4e_c00001{bottom:117.377247pt;}
.yc4d_c00001{bottom:117.377772pt;}
.yc4f_c00001{bottom:117.377877pt;}
.yc4c_c00001{bottom:117.377897pt;}
.yc50_c00001{bottom:117.378268pt;}
.yc4b_c00001{bottom:117.378335pt;}
.yc49_c00001{bottom:117.378631pt;}
.yc4a_c00001{bottom:117.378833pt;}
.y38_c00001{bottom:117.466667pt;}
.y2f4_c00001{bottom:117.564880pt;}
.y4ef_c00001{bottom:117.574788pt;}
.y1218_c00001{bottom:117.657333pt;}
.y6c8_c00001{bottom:117.713712pt;}
.y19e7_c00001{bottom:117.802464pt;}
.y1815_c00001{bottom:117.842667pt;}
.y106b_c00001{bottom:117.862236pt;}
.yf83_c00001{bottom:117.956131pt;}
.y12c9_c00001{bottom:117.964000pt;}
.y4f0_c00001{bottom:118.059501pt;}
.y129_c00001{bottom:118.082837pt;}
.ye9c_c00001{bottom:118.167787pt;}
.y12a_c00001{bottom:118.173461pt;}
.y1454_c00001{bottom:118.177133pt;}
.y19e8_c00001{bottom:118.239627pt;}
.ydaf_c00001{bottom:118.411008pt;}
.y6c9_c00001{bottom:118.446144pt;}
.y123f_c00001{bottom:118.562667pt;}
.y1901_c00001{bottom:118.588469pt;}
.y106a_c00001{bottom:118.601368pt;}
.y4f1_c00001{bottom:118.644597pt;}
.y1455_c00001{bottom:118.657763pt;}
.y12b_c00001{bottom:118.668885pt;}
.y11d2_c00001{bottom:118.694565pt;}
.yf84_c00001{bottom:118.697504pt;}
.ydb0_c00001{bottom:118.701841pt;}
.y110a_c00001{bottom:118.753333pt;}
.y12c_c00001{bottom:118.789797pt;}
.y1722_c00001{bottom:118.797643pt;}
.y6ca_c00001{bottom:118.921013pt;}
.ye9b_c00001{bottom:118.987051pt;}
.y1069_c00001{bottom:119.016340pt;}
.y1816_c00001{bottom:119.034027pt;}
.ydb1_c00001{bottom:119.069855pt;}
.y1900_c00001{bottom:119.129805pt;}
.y12d_c00001{bottom:119.161429pt;}
.y1620_c00001{bottom:119.195665pt;}
.y19e9_c00001{bottom:119.205259pt;}
.y8b5_c00001{bottom:119.206667pt;}
.y5da_c00001{bottom:119.243281pt;}
.y1721_c00001{bottom:119.254571pt;}
.ye9a_c00001{bottom:119.314300pt;}
.y18ff_c00001{bottom:119.317739pt;}
.y1817_c00001{bottom:119.484867pt;}
.yf85_c00001{bottom:119.536685pt;}
.y18fe_c00001{bottom:119.544371pt;}
.y1543_c00001{bottom:119.633333pt;}
.y12e_c00001{bottom:119.659013pt;}
.y1456_c00001{bottom:119.747981pt;}
.y19ea_c00001{bottom:119.788797pt;}
.yf86_c00001{bottom:119.950747pt;}
.ye99_c00001{bottom:119.999833pt;}
.y1ace_c00001{bottom:120.001333pt;}
.y1720_c00001{bottom:120.006693pt;}
.y5d9_c00001{bottom:120.009979pt;}
.y1457_c00001{bottom:120.015608pt;}
.ydb2_c00001{bottom:120.140525pt;}
.y1068_c00001{bottom:120.189372pt;}
.y1621_c00001{bottom:120.229500pt;}
.y1c55_c00001{bottom:120.241341pt;}
.y18fd_c00001{bottom:120.287083pt;}
.y1458_c00001{bottom:120.319432pt;}
.y1cc5_c00001{bottom:120.405333pt;}
.y5d8_c00001{bottom:120.424745pt;}
.y1818_c00001{bottom:120.455787pt;}
.y18fc_c00001{bottom:120.487619pt;}
.y6cb_c00001{bottom:120.501243pt;}
.yb91_c00001{bottom:120.508000pt;}
.y1c56_c00001{bottom:120.579867pt;}
.y11d3_c00001{bottom:120.624344pt;}
.y171f_c00001{bottom:120.640555pt;}
.ydb3_c00001{bottom:120.643283pt;}
.y18fb_c00001{bottom:120.751667pt;}
.y1819_c00001{bottom:120.798483pt;}
.y5d7_c00001{bottom:120.832857pt;}
.y1c57_c00001{bottom:120.867217pt;}
.y18fa_c00001{bottom:120.939648pt;}
.y1622_c00001{bottom:121.002352pt;}
.y11d4_c00001{bottom:121.013075pt;}
.y1acf_c00001{bottom:121.067033pt;}
.y181a_c00001{bottom:121.144659pt;}
.y1459_c00001{bottom:121.257427pt;}
.y18f9_c00001{bottom:121.404040pt;}
.y1c58_c00001{bottom:121.462055pt;}
.y138f_c00001{bottom:121.573333pt;}
.y171e_c00001{bottom:121.576965pt;}
.y1623_c00001{bottom:121.583859pt;}
.y4f2_c00001{bottom:121.607524pt;}
.y6cc_c00001{bottom:121.641781pt;}
.y1c59_c00001{bottom:121.712336pt;}
.y1067_c00001{bottom:121.799240pt;}
.y19eb_c00001{bottom:121.799488pt;}
.ye98_c00001{bottom:121.893196pt;}
.y5d6_c00001{bottom:121.902449pt;}
.ydb4_c00001{bottom:121.919037pt;}
.y136f_c00001{bottom:121.973333pt;}
.y1c5a_c00001{bottom:122.019443pt;}
.y11d5_c00001{bottom:122.218259pt;}
.y5d5_c00001{bottom:122.219297pt;}
.y1066_c00001{bottom:122.223780pt;}
.y19ec_c00001{bottom:122.307029pt;}
.y145a_c00001{bottom:122.327085pt;}
.yf87_c00001{bottom:122.330456pt;}
.y1624_c00001{bottom:122.436651pt;}
.y181b_c00001{bottom:122.470851pt;}
.y1ad0_c00001{bottom:122.496173pt;}
.y5d4_c00001{bottom:122.638848pt;}
.y171d_c00001{bottom:122.691963pt;}
.y1337_c00001{bottom:122.801333pt;}
.y145b_c00001{bottom:122.808581pt;}
.y1c5b_c00001{bottom:122.921837pt;}
.yf88_c00001{bottom:122.949251pt;}
.y171c_c00001{bottom:123.001205pt;}
.y1ad1_c00001{bottom:123.158653pt;}
.y1625_c00001{bottom:123.180724pt;}
.y1c5c_c00001{bottom:123.191476pt;}
.y7f1_c00001{bottom:123.227883pt;}
.y11d6_c00001{bottom:123.308627pt;}
.y1065_c00001{bottom:123.530308pt;}
.y1626_c00001{bottom:123.533716pt;}
.y978_c00001{bottom:123.686077pt;}
.y171b_c00001{bottom:123.751115pt;}
.yafb_c00001{bottom:123.821517pt;}
.y6cd_c00001{bottom:123.838976pt;}
.y1c01_c00001{bottom:123.926667pt;}
.y5d3_c00001{bottom:124.085333pt;}
.y7f2_c00001{bottom:124.142313pt;}
.y1b0e_c00001{bottom:124.225333pt;}
.y1c5d_c00001{bottom:124.343147pt;}
.y1b58_c00001{bottom:124.413333pt;}
.y4f3_c00001{bottom:124.638963pt;}
.y1627_c00001{bottom:124.812651pt;}
.y3e9_c00001{bottom:124.831827pt;}
.y1a63_c00001{bottom:124.878667pt;}
.y4f4_c00001{bottom:125.056620pt;}
.y7f3_c00001{bottom:125.088747pt;}
.y1628_c00001{bottom:125.195207pt;}
.y3e8_c00001{bottom:125.568736pt;}
.yafc_c00001{bottom:125.729192pt;}
.y7f4_c00001{bottom:125.775800pt;}
.y7f5_c00001{bottom:125.951555pt;}
.y1e8_c00001{bottom:125.981345pt;}
.y3e7_c00001{bottom:125.985924pt;}
.y979_c00001{bottom:126.103581pt;}
.y1ba9_c00001{bottom:126.370667pt;}
.ybe_c00001{bottom:126.482667pt;}
.y3e6_c00001{bottom:126.611552pt;}
.y1e9_c00001{bottom:126.639440pt;}
.y1ea_c00001{bottom:126.742261pt;}
.y3e5_c00001{bottom:126.867728pt;}
.ybf_c00001{bottom:126.900327pt;}
.y1315_c00001{bottom:126.937333pt;}
.y1eb_c00001{bottom:127.110681pt;}
.yafd_c00001{bottom:127.213712pt;}
.yc0_c00001{bottom:127.310687pt;}
.y3e4_c00001{bottom:127.423812pt;}
.y7f6_c00001{bottom:127.465273pt;}
.y1629_c00001{bottom:127.523197pt;}
.yc1_c00001{bottom:127.638147pt;}
.yafe_c00001{bottom:127.768619pt;}
.y2e7_c00001{bottom:128.169333pt;}
.ya34_c00001{bottom:128.206667pt;}
.y1ec_c00001{bottom:128.327499pt;}
.yc2_c00001{bottom:128.646147pt;}
.y2e8_c00001{bottom:128.679653pt;}
.y1ed_c00001{bottom:129.023449pt;}
.yaff_c00001{bottom:129.159511pt;}
.y2e9_c00001{bottom:129.264533pt;}
.yc3_c00001{bottom:129.269087pt;}
.yb00_c00001{bottom:129.524821pt;}
.yc4_c00001{bottom:129.530727pt;}
.y1260_c00001{bottom:129.670667pt;}
.y97a_c00001{bottom:129.674677pt;}
.yc5_c00001{bottom:129.682987pt;}
.yc48_c00001{bottom:129.710347pt;}
.ycc0_c00001{bottom:130.113333pt;}
.y4e6_c00001{bottom:130.120468pt;}
.yb01_c00001{bottom:130.128911pt;}
.yc47_c00001{bottom:130.358544pt;}
.y97b_c00001{bottom:130.397289pt;}
.yc99_c00001{bottom:130.505333pt;}
.yc46_c00001{bottom:130.850901pt;}
.y1ce2_c00001{bottom:131.313333pt;}
.y2ea_c00001{bottom:131.371253pt;}
.yc45_c00001{bottom:131.380243pt;}
.ye97_c00001{bottom:131.703236pt;}
.yda5_c00001{bottom:131.712688pt;}
.y12c8_c00001{bottom:131.761333pt;}
.yce1_c00001{bottom:132.054667pt;}
.yc44_c00001{bottom:132.079393pt;}
.y19df_c00001{bottom:132.172027pt;}
.yda6_c00001{bottom:132.177532pt;}
.y2eb_c00001{bottom:132.199293pt;}
.y128e_c00001{bottom:132.205333pt;}
.y4e7_c00001{bottom:132.334511pt;}
.yc43_c00001{bottom:132.351699pt;}
.y1217_c00001{bottom:132.428000pt;}
.y19e0_c00001{bottom:132.443800pt;}
.y180d_c00001{bottom:132.478955pt;}
.y1064_c00001{bottom:132.557372pt;}
.yf7b_c00001{bottom:132.604368pt;}
.yc42_c00001{bottom:132.619445pt;}
.y2ec_c00001{bottom:132.680973pt;}
.y144d_c00001{bottom:132.697048pt;}
.y37_c00001{bottom:132.745333pt;}
.y1cc4_c00001{bottom:132.774837pt;}
.ye96_c00001{bottom:132.844007pt;}
.y180e_c00001{bottom:132.945728pt;}
.y1063_c00001{bottom:132.962948pt;}
.y18f8_c00001{bottom:133.012240pt;}
.yc41_c00001{bottom:133.138007pt;}
.y10dd_c00001{bottom:133.157333pt;}
.ye95_c00001{bottom:133.172493pt;}
.yda7_c00001{bottom:133.319449pt;}
.y6c0_c00001{bottom:133.319728pt;}
.y11cd_c00001{bottom:133.338995pt;}
.y4e8_c00001{bottom:133.341936pt;}
.y1cc3_c00001{bottom:133.409573pt;}
.yc40_c00001{bottom:133.440433pt;}
.y19e1_c00001{bottom:133.457560pt;}
.y180f_c00001{bottom:133.542837pt;}
.y1542_c00001{bottom:133.564000pt;}
.y144e_c00001{bottom:133.574669pt;}
.y123e_c00001{bottom:133.600000pt;}
.y171a_c00001{bottom:133.680101pt;}
.yda8_c00001{bottom:133.765073pt;}
.y19e2_c00001{bottom:133.769461pt;}
.y1109_c00001{bottom:133.789333pt;}
.y1618_c00001{bottom:133.842872pt;}
.yf7c_c00001{bottom:133.889877pt;}
.y18f7_c00001{bottom:133.914107pt;}
.y1541_c00001{bottom:134.054667pt;}
.y1cc2_c00001{bottom:134.138197pt;}
.y5d2_c00001{bottom:134.179467pt;}
.y126_c00001{bottom:134.221333pt;}
.y1810_c00001{bottom:134.264373pt;}
.y18f6_c00001{bottom:134.290752pt;}
.ye94_c00001{bottom:134.298027pt;}
.yf7d_c00001{bottom:134.302237pt;}
.y1cc1_c00001{bottom:134.374373pt;}
.y1d5b_c00001{bottom:134.400000pt;}
.y6c1_c00001{bottom:134.457307pt;}
.y1062_c00001{bottom:134.478300pt;}
.y11ce_c00001{bottom:134.534499pt;}
.y1811_c00001{bottom:134.602389pt;}
.y8b4_c00001{bottom:134.698667pt;}
.y1719_c00001{bottom:134.752528pt;}
.ye93_c00001{bottom:134.761888pt;}
.y6c2_c00001{bottom:134.778688pt;}
.y144f_c00001{bottom:134.794533pt;}
.y1540_c00001{bottom:134.820000pt;}
.y19e3_c00001{bottom:134.847021pt;}
.y2ed_c00001{bottom:134.873813pt;}
.y1cc0_c00001{bottom:134.875525pt;}
.y11cf_c00001{bottom:134.959408pt;}
.y1cbf_c00001{bottom:135.051125pt;}
.y1061_c00001{bottom:135.096628pt;}
.y1ac9_c00001{bottom:135.113969pt;}
.y18f5_c00001{bottom:135.196795pt;}
.y5d1_c00001{bottom:135.200523pt;}
.y1718_c00001{bottom:135.281499pt;}
.y1619_c00001{bottom:135.308304pt;}
.y1cbe_c00001{bottom:135.344277pt;}
.y6c3_c00001{bottom:135.452896pt;}
.y18f4_c00001{bottom:135.546899pt;}
.y1812_c00001{bottom:135.552448pt;}
.yda9_c00001{bottom:135.592704pt;}
.y1cbd_c00001{bottom:135.601333pt;}
.y1450_c00001{bottom:135.687152pt;}
.yf7e_c00001{bottom:135.778171pt;}
.ye92_c00001{bottom:135.791475pt;}
.ydaa_c00001{bottom:135.822427pt;}
.y1aca_c00001{bottom:135.825833pt;}
.y4e9_c00001{bottom:135.836853pt;}
.y153f_c00001{bottom:135.840000pt;}
.y18f3_c00001{bottom:135.864931pt;}
.y1717_c00001{bottom:135.927760pt;}
.yb90_c00001{bottom:136.028000pt;}
.y1813_c00001{bottom:136.080608pt;}
.y1acb_c00001{bottom:136.111709pt;}
.ye91_c00001{bottom:136.135933pt;}
.y1451_c00001{bottom:136.141133pt;}
.y136e_c00001{bottom:136.180000pt;}
.y6c4_c00001{bottom:136.346752pt;}
.y19e4_c00001{bottom:136.376579pt;}
.yf7f_c00001{bottom:136.429835pt;}
.y7eb_c00001{bottom:136.436001pt;}
.y1acc_c00001{bottom:136.524335pt;}
.ye90_c00001{bottom:136.583145pt;}
.ydab_c00001{bottom:136.758700pt;}
.y18f2_c00001{bottom:136.766869pt;}
.y1814_c00001{bottom:136.805547pt;}
.y1060_c00001{bottom:136.836224pt;}
.y4ea_c00001{bottom:136.969352pt;}
.y138e_c00001{bottom:137.040000pt;}
.y5d0_c00001{bottom:137.077483pt;}
.y1acd_c00001{bottom:137.123228pt;}
.y11d0_c00001{bottom:137.150125pt;}
.y1716_c00001{bottom:137.183227pt;}
.ye8f_c00001{bottom:137.258972pt;}
.y1452_c00001{bottom:137.386067pt;}
.y19e5_c00001{bottom:137.400869pt;}
.yf80_c00001{bottom:137.469765pt;}
.y6c5_c00001{bottom:137.538533pt;}
.y1715_c00001{bottom:137.738453pt;}
.y161a_c00001{bottom:137.858323pt;}
.y6c6_c00001{bottom:137.980315pt;}
.yf81_c00001{bottom:138.091200pt;}
.y1336_c00001{bottom:138.108000pt;}
.y11d1_c00001{bottom:138.162627pt;}
.y7ec_c00001{bottom:138.360919pt;}
.y105f_c00001{bottom:138.402308pt;}
.y5cf_c00001{bottom:138.419776pt;}
.y6c7_c00001{bottom:138.487163pt;}
.y8c5_c00001{bottom:138.496000pt;}
.y4eb_c00001{bottom:138.513996pt;}
.y161b_c00001{bottom:138.696025pt;}
.y1714_c00001{bottom:138.879952pt;}
.y5ce_c00001{bottom:138.911813pt;}
.yf82_c00001{bottom:138.955821pt;}
.y8c6_c00001{bottom:139.161184pt;}
.y3e3_c00001{bottom:139.224959pt;}
.y161c_c00001{bottom:139.250057pt;}
.y1a62_c00001{bottom:139.286667pt;}
.y4ec_c00001{bottom:139.312916pt;}
.y1b0d_c00001{bottom:139.366667pt;}
.y1c50_c00001{bottom:139.441333pt;}
.y1b57_c00001{bottom:139.532000pt;}
.y7ed_c00001{bottom:139.581683pt;}
.y5cd_c00001{bottom:139.649861pt;}
.yaf1_c00001{bottom:139.667051pt;}
.y1c51_c00001{bottom:139.936893pt;}
.y161d_c00001{bottom:139.975995pt;}
.y4ed_c00001{bottom:140.185955pt;}
.y8c7_c00001{bottom:140.418400pt;}
.y3e2_c00001{bottom:140.421369pt;}
.y161e_c00001{bottom:140.520024pt;}
.y70f_c00001{bottom:140.532000pt;}
.y1c52_c00001{bottom:140.542936pt;}
.yaf2_c00001{bottom:140.922088pt;}
.y8c8_c00001{bottom:140.934688pt;}
.y1ba8_c00001{bottom:140.970667pt;}
.y1e2_c00001{bottom:141.103883pt;}
.y1d54_c00001{bottom:141.120000pt;}
.y3e1_c00001{bottom:141.124660pt;}
.y7ee_c00001{bottom:141.268167pt;}
.y1c53_c00001{bottom:141.300385pt;}
.yaf3_c00001{bottom:141.488104pt;}
.y1c10_c00001{bottom:141.600000pt;}
.y3e0_c00001{bottom:141.611372pt;}
.y1c54_c00001{bottom:141.672532pt;}
.y1314_c00001{bottom:141.777333pt;}
.y1d55_c00001{bottom:141.836000pt;}
.y161f_c00001{bottom:141.995955pt;}
.yaf4_c00001{bottom:142.086892pt;}
.y1d56_c00001{bottom:142.141333pt;}
.y1e3_c00001{bottom:142.154732pt;}
.y3df_c00001{bottom:142.544556pt;}
.yaf5_c00001{bottom:142.651013pt;}
.y7ef_c00001{bottom:142.750033pt;}
.y2df_c00001{bottom:142.823224pt;}
.y70e_c00001{bottom:142.921333pt;}
.y8c9_c00001{bottom:142.965328pt;}
.yaf6_c00001{bottom:142.995321pt;}
.y1d57_c00001{bottom:143.089333pt;}
.y1e4_c00001{bottom:143.242201pt;}
.ya33_c00001{bottom:143.300000pt;}
.ybd_c00001{bottom:143.612000pt;}
.y1d58_c00001{bottom:143.688000pt;}
.y8ca_c00001{bottom:143.752288pt;}
.y2e0_c00001{bottom:143.773301pt;}
.y1e5_c00001{bottom:143.864715pt;}
.y7f0_c00001{bottom:144.072100pt;}
.y2e1_c00001{bottom:144.150143pt;}
.y1d59_c00001{bottom:144.204000pt;}
.y1d5a_c00001{bottom:144.350667pt;}
.yaf7_c00001{bottom:144.388484pt;}
.y1e6_c00001{bottom:144.441231pt;}
.y2e2_c00001{bottom:144.620927pt;}
.y8cb_c00001{bottom:144.661072pt;}
.y125f_c00001{bottom:144.708000pt;}
.y1e7_c00001{bottom:144.714091pt;}
.yc3f_c00001{bottom:144.942920pt;}
.yaf8_c00001{bottom:144.946128pt;}
.yc3e_c00001{bottom:145.089352pt;}
.ycbf_c00001{bottom:145.209333pt;}
.yaf9_c00001{bottom:145.535925pt;}
.y2e3_c00001{bottom:145.637145pt;}
.yc98_c00001{bottom:145.733333pt;}
.yc3d_c00001{bottom:145.776012pt;}
.yd9d_c00001{bottom:145.880525pt;}
.yafa_c00001{bottom:145.997980pt;}
.y11c3_c00001{bottom:146.311064pt;}
.y1444_c00001{bottom:146.385587pt;}
.y2e4_c00001{bottom:146.453977pt;}
.yc3c_c00001{bottom:146.556064pt;}
.ye8e_c00001{bottom:146.616919pt;}
.y4de_c00001{bottom:146.669719pt;}
.yc3b_c00001{bottom:146.743004pt;}
.y1445_c00001{bottom:146.756624pt;}
.y2e5_c00001{bottom:146.765929pt;}
.y1ce1_c00001{bottom:146.806667pt;}
.y19d9_c00001{bottom:146.817701pt;}
.y2e6_c00001{bottom:147.017435pt;}
.y1808_c00001{bottom:147.126667pt;}
.y105e_c00001{bottom:147.176612pt;}
.ye8d_c00001{bottom:147.186881pt;}
.y4df_c00001{bottom:147.212029pt;}
.y128d_c00001{bottom:147.337333pt;}
.yce0_c00001{bottom:147.386667pt;}
.ye8c_c00001{bottom:147.419376pt;}
.y1446_c00001{bottom:147.483307pt;}
.y12c7_c00001{bottom:147.593333pt;}
.yc3a_c00001{bottom:147.601333pt;}
.yd9e_c00001{bottom:147.635667pt;}
.y11c4_c00001{bottom:147.645229pt;}
.y105d_c00001{bottom:147.670424pt;}
.y19da_c00001{bottom:147.699608pt;}
.y1809_c00001{bottom:147.719371pt;}
.y1216_c00001{bottom:147.896000pt;}
.y1447_c00001{bottom:147.951792pt;}
.y6b9_c00001{bottom:147.966325pt;}
.y123d_c00001{bottom:148.136000pt;}
.y8b3_c00001{bottom:148.165333pt;}
.y977_c00001{bottom:148.274333pt;}
.y1713_c00001{bottom:148.289093pt;}
.yd9f_c00001{bottom:148.298920pt;}
.y36_c00001{bottom:148.344000pt;}
.y153e_c00001{bottom:148.350667pt;}
.y11c5_c00001{bottom:148.370936pt;}
.yf74_c00001{bottom:148.448280pt;}
.y10dc_c00001{bottom:148.746667pt;}
.ye8b_c00001{bottom:148.766737pt;}
.y11c6_c00001{bottom:148.809597pt;}
.y153d_c00001{bottom:148.816000pt;}
.y1712_c00001{bottom:148.816267pt;}
.y19db_c00001{bottom:148.889632pt;}
.y1610_c00001{bottom:148.965600pt;}
.y105c_c00001{bottom:149.075248pt;}
.y180a_c00001{bottom:149.078347pt;}
.yda0_c00001{bottom:149.107307pt;}
.ye8a_c00001{bottom:149.108963pt;}
.y1448_c00001{bottom:149.180968pt;}
.y4e0_c00001{bottom:149.263948pt;}
.y5cc_c00001{bottom:149.355664pt;}
.y8b2_c00001{bottom:149.489333pt;}
.y105b_c00001{bottom:149.563384pt;}
.y1108_c00001{bottom:149.569333pt;}
.y1711_c00001{bottom:149.570016pt;}
.yf75_c00001{bottom:149.652371pt;}
.y6ba_c00001{bottom:149.683968pt;}
.y125_c00001{bottom:149.728000pt;}
.yda1_c00001{bottom:149.781107pt;}
.y153c_c00001{bottom:149.816000pt;}
.y1611_c00001{bottom:149.876424pt;}
.y5cb_c00001{bottom:149.876475pt;}
.y70d_c00001{bottom:150.000000pt;}
.yda2_c00001{bottom:150.063779pt;}
.yf76_c00001{bottom:150.124813pt;}
.y105a_c00001{bottom:150.138084pt;}
.y1449_c00001{bottom:150.167373pt;}
.y1612_c00001{bottom:150.323037pt;}
.y18ee_c00001{bottom:150.354840pt;}
.y18ef_c00001{bottom:150.355008pt;}
.y18ed_c00001{bottom:150.355112pt;}
.y18ec_c00001{bottom:150.355448pt;}
.y18f0_c00001{bottom:150.355496pt;}
.y18f1_c00001{bottom:150.356109pt;}
.y153b_c00001{bottom:150.362667pt;}
.y19dc_c00001{bottom:150.377536pt;}
.y8b1_c00001{bottom:150.420000pt;}
.y1710_c00001{bottom:150.447557pt;}
.y11c7_c00001{bottom:150.476944pt;}
.y1cbc_c00001{bottom:150.626667pt;}
.y180b_c00001{bottom:150.684939pt;}
.y11c8_c00001{bottom:150.769933pt;}
.y8b0_c00001{bottom:150.800000pt;}
.ye89_c00001{bottom:150.825619pt;}
.y5ca_c00001{bottom:150.860533pt;}
.y144a_c00001{bottom:150.915099pt;}
.y153a_c00001{bottom:150.958667pt;}
.y6bb_c00001{bottom:151.006453pt;}
.y19dd_c00001{bottom:151.037272pt;}
.y4e1_c00001{bottom:151.043081pt;}
.yb8f_c00001{bottom:151.141333pt;}
.y8af_c00001{bottom:151.209333pt;}
.yda3_c00001{bottom:151.227333pt;}
.y136d_c00001{bottom:151.384000pt;}
.ye88_c00001{bottom:151.418340pt;}
.y180c_c00001{bottom:151.442603pt;}
.y1059_c00001{bottom:151.454276pt;}
.yf77_c00001{bottom:151.490221pt;}
.y11c9_c00001{bottom:151.556283pt;}
.y4e2_c00001{bottom:151.567427pt;}
.yda4_c00001{bottom:151.618676pt;}
.y1613_c00001{bottom:151.626421pt;}
.y170f_c00001{bottom:151.733867pt;}
.y5c9_c00001{bottom:151.913749pt;}
.y4e3_c00001{bottom:151.918127pt;}
.y170e_c00001{bottom:151.975941pt;}
.y144b_c00001{bottom:151.977805pt;}
.y19de_c00001{bottom:152.109787pt;}
.ye87_c00001{bottom:152.145561pt;}
.y1614_c00001{bottom:152.153985pt;}
.y70b_c00001{bottom:152.160000pt;}
.y11ca_c00001{bottom:152.252560pt;}
.y138d_c00001{bottom:152.344000pt;}
.y6bc_c00001{bottom:152.354533pt;}
.y1ac3_c00001{bottom:152.404081pt;}
.y1ac2_c00001{bottom:152.404568pt;}
.y1ac6_c00001{bottom:152.404591pt;}
.y1ac8_c00001{bottom:152.404609pt;}
.y1ac4_c00001{bottom:152.404677pt;}
.y1ac5_c00001{bottom:152.404723pt;}
.y1ac7_c00001{bottom:152.404893pt;}
.y144c_c00001{bottom:152.502763pt;}
.yf78_c00001{bottom:152.509784pt;}
.y170d_c00001{bottom:152.609877pt;}
.y6bd_c00001{bottom:152.634443pt;}
.y1335_c00001{bottom:152.668000pt;}
.y7e3_c00001{bottom:152.740352pt;}
.y11cb_c00001{bottom:152.820064pt;}
.y1b51_c00001{bottom:153.121333pt;}
.y6be_c00001{bottom:153.233381pt;}
.y11cc_c00001{bottom:153.251325pt;}
.y1b52_c00001{bottom:153.442667pt;}
.y5c8_c00001{bottom:153.509723pt;}
.y1058_c00001{bottom:153.516536pt;}
.y170c_c00001{bottom:153.523579pt;}
.y6bf_c00001{bottom:153.714533pt;}
.y7e4_c00001{bottom:153.877911pt;}
.y5c7_c00001{bottom:153.912619pt;}
.yf79_c00001{bottom:153.991075pt;}
.yae7_c00001{bottom:154.072444pt;}
.y4e4_c00001{bottom:154.127311pt;}
.y7e5_c00001{bottom:154.252639pt;}
.y1b0c_c00001{bottom:154.269333pt;}
.yf7a_c00001{bottom:154.273355pt;}
.y1b53_c00001{bottom:154.360000pt;}
.y3de_c00001{bottom:154.378851pt;}
.yae8_c00001{bottom:154.409192pt;}
.y1a61_c00001{bottom:154.493333pt;}
.y7e6_c00001{bottom:154.596760pt;}
.y3dd_c00001{bottom:154.625567pt;}
.y1b54_c00001{bottom:154.762667pt;}
.y1615_c00001{bottom:154.922624pt;}
.y3dc_c00001{bottom:154.943983pt;}
.y5c6_c00001{bottom:155.015461pt;}
.y70a_c00001{bottom:155.040000pt;}
.y3db_c00001{bottom:155.124555pt;}
.y1b55_c00001{bottom:155.249333pt;}
.y96f_c00001{bottom:155.348797pt;}
.y1616_c00001{bottom:155.409568pt;}
.yae9_c00001{bottom:155.731631pt;}
.y7e7_c00001{bottom:155.860227pt;}
.y1b56_c00001{bottom:155.878667pt;}
.y3da_c00001{bottom:155.974188pt;}
.y1d4d_c00001{bottom:156.000000pt;}
.y4e5_c00001{bottom:156.177316pt;}
.yaea_c00001{bottom:156.177496pt;}
.y1ba7_c00001{bottom:156.214667pt;}
.y3d9_c00001{bottom:156.323411pt;}
.y1d4e_c00001{bottom:156.472000pt;}
.y1617_c00001{bottom:156.513903pt;}
.y970_c00001{bottom:156.686893pt;}
.y1d4f_c00001{bottom:156.774667pt;}
.y3d8_c00001{bottom:157.043147pt;}
.y7e8_c00001{bottom:157.177735pt;}
.y1313_c00001{bottom:157.200000pt;}
.y3d7_c00001{bottom:157.428616pt;}
.yaeb_c00001{bottom:157.555808pt;}
.y7e9_c00001{bottom:157.556031pt;}
.y1d50_c00001{bottom:157.562667pt;}
.y971_c00001{bottom:157.610697pt;}
.y3d6_c00001{bottom:157.665376pt;}
.y1c49_c00001{bottom:157.680000pt;}
.y2d5_c00001{bottom:157.700995pt;}
.y1dd_c00001{bottom:157.777717pt;}
.y1db_c00001{bottom:157.777779pt;}
.y1df_c00001{bottom:157.777853pt;}
.y1e0_c00001{bottom:157.777988pt;}
.y1dc_c00001{bottom:157.778081pt;}
.y1de_c00001{bottom:157.778155pt;}
.y1da_c00001{bottom:157.778160pt;}
.y1e1_c00001{bottom:157.778637pt;}
.y1d51_c00001{bottom:157.825333pt;}
.y1c4a_c00001{bottom:157.929333pt;}
.yaec_c00001{bottom:157.940077pt;}
.y972_c00001{bottom:158.196293pt;}
.y7ea_c00001{bottom:158.201544pt;}
.ya32_c00001{bottom:158.300000pt;}
.y1c4b_c00001{bottom:158.346667pt;}
.y2d6_c00001{bottom:158.488616pt;}
.y1c4c_c00001{bottom:158.605333pt;}
.y1d52_c00001{bottom:158.649333pt;}
.ybc_c00001{bottom:158.862667pt;}
.y2d7_c00001{bottom:158.946981pt;}
.y1c4d_c00001{bottom:158.949333pt;}
.y1d53_c00001{bottom:159.193333pt;}
.y1c4e_c00001{bottom:159.534667pt;}
.yaed_c00001{bottom:159.692876pt;}
.y973_c00001{bottom:159.922665pt;}
.y125e_c00001{bottom:159.934667pt;}
.yaee_c00001{bottom:160.003911pt;}
.ycbe_c00001{bottom:160.076000pt;}
.y1c4f_c00001{bottom:160.280000pt;}
.y974_c00001{bottom:160.428557pt;}
.y10d5_c00001{bottom:160.566667pt;}
.yc97_c00001{bottom:160.585333pt;}
.y2d8_c00001{bottom:160.654189pt;}
.yaef_c00001{bottom:160.759109pt;}
.y12bf_c00001{bottom:160.800000pt;}
.y975_c00001{bottom:160.980649pt;}
.yd95_c00001{bottom:161.005740pt;}
.y12c0_c00001{bottom:161.120000pt;}
.y12c1_c00001{bottom:161.230667pt;}
.yaf0_c00001{bottom:161.246696pt;}
.y1057_c00001{bottom:161.484064pt;}
.y4d7_c00001{bottom:161.551792pt;}
.y10d6_c00001{bottom:161.594667pt;}
.yc34_c00001{bottom:161.601624pt;}
.yc35_c00001{bottom:161.601643pt;}
.yc39_c00001{bottom:161.601739pt;}
.yc38_c00001{bottom:161.601773pt;}
.yc36_c00001{bottom:161.602088pt;}
.yc37_c00001{bottom:161.602160pt;}
.yc33_c00001{bottom:161.602189pt;}
.yc32_c00001{bottom:161.602277pt;}
.yc31_c00001{bottom:161.602899pt;}
.yd96_c00001{bottom:161.758945pt;}
.y10d7_c00001{bottom:161.782667pt;}
.ye86_c00001{bottom:161.825819pt;}
.y1ce0_c00001{bottom:161.837333pt;}
.y2d9_c00001{bottom:161.886757pt;}
.y10d8_c00001{bottom:162.074667pt;}
.y12c2_c00001{bottom:162.078667pt;}
.y11bb_c00001{bottom:162.160971pt;}
.y143b_c00001{bottom:162.228309pt;}
.y8ae_c00001{bottom:162.254667pt;}
.ye85_c00001{bottom:162.286773pt;}
.y12c3_c00001{bottom:162.289333pt;}
.ycdf_c00001{bottom:162.293333pt;}
.yd97_c00001{bottom:162.411364pt;}
.y19d1_c00001{bottom:162.421475pt;}
.y976_c00001{bottom:162.433221pt;}
.y120_c00001{bottom:162.481333pt;}
.y2da_c00001{bottom:162.521741pt;}
.y128c_c00001{bottom:162.590667pt;}
.y1056_c00001{bottom:162.609400pt;}
.y121_c00001{bottom:162.695188pt;}
.y170b_c00001{bottom:162.708992pt;}
.y8ad_c00001{bottom:162.792000pt;}
.y143c_c00001{bottom:162.853757pt;}
.yf6c_c00001{bottom:162.855845pt;}
.y10d9_c00001{bottom:162.894667pt;}
.y12c4_c00001{bottom:162.909333pt;}
.y1803_c00001{bottom:162.961020pt;}
.y35_c00001{bottom:162.984000pt;}
.y1215_c00001{bottom:163.018667pt;}
.y12c5_c00001{bottom:163.044000pt;}
.y1539_c00001{bottom:163.101333pt;}
.yd98_c00001{bottom:163.101757pt;}
.y10da_c00001{bottom:163.158667pt;}
.ye84_c00001{bottom:163.220439pt;}
.y19d2_c00001{bottom:163.302795pt;}
.y1538_c00001{bottom:163.422667pt;}
.y122_c00001{bottom:163.466112pt;}
.y12c6_c00001{bottom:163.561333pt;}
.y143d_c00001{bottom:163.607053pt;}
.y8ac_c00001{bottom:163.618667pt;}
.y19d3_c00001{bottom:163.637341pt;}
.y11bc_c00001{bottom:163.659955pt;}
.ye83_c00001{bottom:163.661033pt;}
.y1804_c00001{bottom:163.734996pt;}
.y123c_c00001{bottom:163.788000pt;}
.y143e_c00001{bottom:163.856573pt;}
.yd99_c00001{bottom:163.982855pt;}
.y1537_c00001{bottom:163.996000pt;}
.y10db_c00001{bottom:164.001333pt;}
.y8ab_c00001{bottom:164.018667pt;}
.y18eb_c00001{bottom:164.040101pt;}
.y1805_c00001{bottom:164.168587pt;}
.y170a_c00001{bottom:164.181035pt;}
.y18ea_c00001{bottom:164.206339pt;}
.y143f_c00001{bottom:164.229416pt;}
.y1107_c00001{bottom:164.269333pt;}
.y1609_c00001{bottom:164.325584pt;}
.yf6d_c00001{bottom:164.340696pt;}
.y2db_c00001{bottom:164.341467pt;}
.y11bd_c00001{bottom:164.358005pt;}
.yd9a_c00001{bottom:164.375421pt;}
.y123_c00001{bottom:164.376883pt;}
.y160a_c00001{bottom:164.458728pt;}
.y1806_c00001{bottom:164.495281pt;}
.y4d8_c00001{bottom:164.495804pt;}
.yb8e_c00001{bottom:164.518667pt;}
.y18e9_c00001{bottom:164.599389pt;}
.y8aa_c00001{bottom:164.632000pt;}
.y1709_c00001{bottom:164.690149pt;}
.y19d4_c00001{bottom:164.714197pt;}
.yb8d_c00001{bottom:164.734667pt;}
.y1055_c00001{bottom:164.755224pt;}
.y18e8_c00001{bottom:164.785056pt;}
.y1536_c00001{bottom:164.820000pt;}
.y2dc_c00001{bottom:164.980349pt;}
.yf6e_c00001{bottom:164.991000pt;}
.y5c5_c00001{bottom:165.001899pt;}
.y11be_c00001{bottom:165.054011pt;}
.y4d9_c00001{bottom:165.075816pt;}
.y124_c00001{bottom:165.099788pt;}
.y1708_c00001{bottom:165.173531pt;}
.y8a9_c00001{bottom:165.180000pt;}
.y7dc_c00001{bottom:165.228163pt;}
.y6b1_c00001{bottom:165.246811pt;}
.y1440_c00001{bottom:165.257389pt;}
.y5c4_c00001{bottom:165.295173pt;}
.y1807_c00001{bottom:165.307496pt;}
.y1abc_c00001{bottom:165.358391pt;}
.y18e7_c00001{bottom:165.495136pt;}
.y19d5_c00001{bottom:165.585192pt;}
.y2dd_c00001{bottom:165.588677pt;}
.yb8c_c00001{bottom:165.592000pt;}
.y70c_c00001{bottom:165.600000pt;}
.y1054_c00001{bottom:165.641288pt;}
.y18e6_c00001{bottom:165.679315pt;}
.y1535_c00001{bottom:165.681333pt;}
.y160b_c00001{bottom:165.708483pt;}
.ye82_c00001{bottom:165.743856pt;}
.yb8b_c00001{bottom:165.845333pt;}
.y8a8_c00001{bottom:165.848000pt;}
.y1cbb_c00001{bottom:165.850667pt;}
.y5c3_c00001{bottom:165.891253pt;}
.y1441_c00001{bottom:165.910301pt;}
.yd9b_c00001{bottom:165.937267pt;}
.y1707_c00001{bottom:165.938752pt;}
.y1cba_c00001{bottom:165.997333pt;}
.yb8a_c00001{bottom:165.998667pt;}
.y7dd_c00001{bottom:166.035905pt;}
.y1534_c00001{bottom:166.078667pt;}
.y6b2_c00001{bottom:166.112149pt;}
.yf6f_c00001{bottom:166.122149pt;}
.y1053_c00001{bottom:166.142084pt;}
.y1442_c00001{bottom:166.170675pt;}
.y136c_c00001{bottom:166.318667pt;}
.y2de_c00001{bottom:166.319496pt;}
.y1abd_c00001{bottom:166.330020pt;}
.y18e5_c00001{bottom:166.382632pt;}
.y6b3_c00001{bottom:166.410197pt;}
.yb89_c00001{bottom:166.484000pt;}
.y160c_c00001{bottom:166.532735pt;}
.y19d6_c00001{bottom:166.540051pt;}
.yf70_c00001{bottom:166.580843pt;}
.y1abe_c00001{bottom:166.623851pt;}
.y18e4_c00001{bottom:166.771197pt;}
.y4da_c00001{bottom:166.896684pt;}
.y1abf_c00001{bottom:166.963365pt;}
.ye81_c00001{bottom:166.981453pt;}
.yf71_c00001{bottom:166.983096pt;}
.y11bf_c00001{bottom:167.010544pt;}
.y138c_c00001{bottom:167.068000pt;}
.y5c2_c00001{bottom:167.080043pt;}
.yd9c_c00001{bottom:167.202617pt;}
.y19d7_c00001{bottom:167.274264pt;}
.yb88_c00001{bottom:167.281333pt;}
.y1443_c00001{bottom:167.430709pt;}
.y4db_c00001{bottom:167.467621pt;}
.y11c0_c00001{bottom:167.497403pt;}
.ye80_c00001{bottom:167.513233pt;}
.y1ac0_c00001{bottom:167.529240pt;}
.y1052_c00001{bottom:167.540800pt;}
.y6b4_c00001{bottom:167.541269pt;}
.y1334_c00001{bottom:167.654667pt;}
.y19d8_c00001{bottom:167.728696pt;}
.y6b5_c00001{bottom:167.867531pt;}
.y1ac1_c00001{bottom:167.871025pt;}
.y160d_c00001{bottom:167.974967pt;}
.y11c1_c00001{bottom:167.991611pt;}
.y1706_c00001{bottom:168.000197pt;}
.y6b6_c00001{bottom:168.083728pt;}
.yf72_c00001{bottom:168.298003pt;}
.y5c1_c00001{bottom:168.382437pt;}
.y7de_c00001{bottom:168.531968pt;}
.y1051_c00001{bottom:168.629060pt;}
.yf73_c00001{bottom:168.681848pt;}
.y5c0_c00001{bottom:168.791595pt;}
.y6b7_c00001{bottom:168.924683pt;}
.y1705_c00001{bottom:169.134453pt;}
.y7df_c00001{bottom:169.177039pt;}
.y968_c00001{bottom:169.275521pt;}
.y11c2_c00001{bottom:169.301952pt;}
.y4dc_c00001{bottom:169.388435pt;}
.y5bf_c00001{bottom:169.446661pt;}
.y6b8_c00001{bottom:169.484251pt;}
.y1c00_c00001{bottom:169.561333pt;}
.y1a60_c00001{bottom:169.612000pt;}
.y4dd_c00001{bottom:169.859427pt;}
.y1b0b_c00001{bottom:170.009333pt;}
.y3d5_c00001{bottom:170.289915pt;}
.y969_c00001{bottom:170.337797pt;}
.y160e_c00001{bottom:170.351955pt;}
.y5be_c00001{bottom:170.379664pt;}
.y3d4_c00001{bottom:170.547245pt;}
.yae1_c00001{bottom:170.878132pt;}
.y1ba6_c00001{bottom:170.958667pt;}
.y7e0_c00001{bottom:171.091637pt;}
.y7e1_c00001{bottom:171.503973pt;}
.y1d47_c00001{bottom:171.601333pt;}
.y3d3_c00001{bottom:171.610365pt;}
.y160f_c00001{bottom:171.637121pt;}
.y3d2_c00001{bottom:172.059832pt;}
.y1d48_c00001{bottom:172.088000pt;}
.y1d49_c00001{bottom:172.292000pt;}
.y1312_c00001{bottom:172.296000pt;}
.y3d1_c00001{bottom:172.310916pt;}
.yba_c00001{bottom:172.326667pt;}
.y2cf_c00001{bottom:172.361100pt;}
.y96a_c00001{bottom:172.525889pt;}
.yae2_c00001{bottom:172.642403pt;}
.y1d2_c00001{bottom:172.778781pt;}
.y1d1_c00001{bottom:172.778985pt;}
.y1d0_c00001{bottom:172.779020pt;}
.y1d3_c00001{bottom:172.779324pt;}
.y1d4_c00001{bottom:172.779343pt;}
.y1d5_c00001{bottom:172.779548pt;}
.y1d6_c00001{bottom:172.779717pt;}
.y1d9_c00001{bottom:172.779844pt;}
.y1d7_c00001{bottom:172.780073pt;}
.y1d8_c00001{bottom:172.780181pt;}
.y7e2_c00001{bottom:173.240440pt;}
.y3d0_c00001{bottom:173.265307pt;}
.y1d4a_c00001{bottom:173.334667pt;}
.yae3_c00001{bottom:173.761049pt;}
.ya31_c00001{bottom:173.902667pt;}
.y1d69_c00001{bottom:173.906667pt;}
.yae4_c00001{bottom:174.043583pt;}
.y1d4b_c00001{bottom:174.080000pt;}
.y1d4c_c00001{bottom:174.316000pt;}
.y96b_c00001{bottom:174.668837pt;}
.yae5_c00001{bottom:175.037331pt;}
.ycbd_c00001{bottom:175.260000pt;}
.yae6_c00001{bottom:175.334831pt;}
.yc30_c00001{bottom:175.450736pt;}
.y96c_c00001{bottom:175.473497pt;}
.y2d0_c00001{bottom:175.481351pt;}
.yc2f_c00001{bottom:175.687504pt;}
.ybb_c00001{bottom:175.745333pt;}
.yc96_c00001{bottom:175.920000pt;}
.y125d_c00001{bottom:175.944000pt;}
.y12b8_c00001{bottom:176.160000pt;}
.y96d_c00001{bottom:176.250733pt;}
.y2d1_c00001{bottom:176.268687pt;}
.yc2e_c00001{bottom:176.352536pt;}
.y12b9_c00001{bottom:176.557333pt;}
.yd8d_c00001{bottom:176.609543pt;}
.yc2d_c00001{bottom:176.621645pt;}
.y4d0_c00001{bottom:176.669376pt;}
.y12ba_c00001{bottom:176.845333pt;}
.yc2c_c00001{bottom:176.861717pt;}
.y1c42_c00001{bottom:176.878667pt;}
.ye7f_c00001{bottom:176.950444pt;}
.y1cdf_c00001{bottom:177.068000pt;}
.yd8e_c00001{bottom:177.116349pt;}
.y2d2_c00001{bottom:177.159975pt;}
.y1c43_c00001{bottom:177.242667pt;}
.y12bb_c00001{bottom:177.274667pt;}
.yc2b_c00001{bottom:177.292157pt;}
.y96e_c00001{bottom:177.302661pt;}
.ye7e_c00001{bottom:177.331457pt;}
.y1432_c00001{bottom:177.354517pt;}
.y1c44_c00001{bottom:177.437333pt;}
.y12bc_c00001{bottom:177.478667pt;}
.yc2a_c00001{bottom:177.485755pt;}
.y128b_c00001{bottom:177.549333pt;}
.yd8f_c00001{bottom:177.586915pt;}
.y17fc_c00001{bottom:177.601333pt;}
.yc29_c00001{bottom:177.634885pt;}
.ycde_c00001{bottom:177.652000pt;}
.y1433_c00001{bottom:177.666245pt;}
.y19c8_c00001{bottom:177.783024pt;}
.y17fd_c00001{bottom:177.806557pt;}
.y34_c00001{bottom:177.845333pt;}
.y1c45_c00001{bottom:177.866667pt;}
.y1214_c00001{bottom:177.908000pt;}
.y10d4_c00001{bottom:178.025333pt;}
.y12bd_c00001{bottom:178.077333pt;}
.yf65_c00001{bottom:178.220581pt;}
.yc28_c00001{bottom:178.296875pt;}
.y1704_c00001{bottom:178.311691pt;}
.y19c9_c00001{bottom:178.392307pt;}
.y1c46_c00001{bottom:178.560000pt;}
.y11b3_c00001{bottom:178.719563pt;}
.y1533_c00001{bottom:178.798667pt;}
.y12be_c00001{bottom:178.809333pt;}
.y1c47_c00001{bottom:178.820000pt;}
.y1050_c00001{bottom:178.854740pt;}
.y1434_c00001{bottom:178.866067pt;}
.ye7d_c00001{bottom:178.877648pt;}
.y17fe_c00001{bottom:178.879779pt;}
.y123b_c00001{bottom:178.908000pt;}
.y1532_c00001{bottom:179.048000pt;}
.y2d3_c00001{bottom:179.115015pt;}
.yd90_c00001{bottom:179.122272pt;}
.y1435_c00001{bottom:179.264499pt;}
.y1531_c00001{bottom:179.312000pt;}
.y1c48_c00001{bottom:179.320000pt;}
.y19ca_c00001{bottom:179.359723pt;}
.yd91_c00001{bottom:179.361496pt;}
.y11f_c00001{bottom:179.396000pt;}
.y11b4_c00001{bottom:179.568371pt;}
.yf66_c00001{bottom:179.671555pt;}
.y19cb_c00001{bottom:179.677403pt;}
.y1602_c00001{bottom:179.701405pt;}
.yd92_c00001{bottom:179.705235pt;}
.y1530_c00001{bottom:179.745333pt;}
.y1703_c00001{bottom:179.820517pt;}
.y5bd_c00001{bottom:179.870821pt;}
.y1436_c00001{bottom:179.884504pt;}
.yf67_c00001{bottom:179.983667pt;}
.y11b5_c00001{bottom:180.043325pt;}
.y17ff_c00001{bottom:180.131251pt;}
.y1603_c00001{bottom:180.168960pt;}
.y8a7_c00001{bottom:180.189333pt;}
.y5bc_c00001{bottom:180.238645pt;}
.y1702_c00001{bottom:180.349120pt;}
.y152f_c00001{bottom:180.353333pt;}
.y19cc_c00001{bottom:180.363981pt;}
.y1106_c00001{bottom:180.373333pt;}
.y4d1_c00001{bottom:180.398327pt;}
.y1800_c00001{bottom:180.454908pt;}
.y1437_c00001{bottom:180.666267pt;}
.ye7c_c00001{bottom:180.684009pt;}
.y152e_c00001{bottom:180.904000pt;}
.y8a6_c00001{bottom:180.942667pt;}
.y1ab7_c00001{bottom:180.960176pt;}
.y19cd_c00001{bottom:180.984059pt;}
.y1701_c00001{bottom:181.024629pt;}
.y136b_c00001{bottom:181.036000pt;}
.y7d4_c00001{bottom:181.059183pt;}
.y4d2_c00001{bottom:181.059943pt;}
.y1cb9_c00001{bottom:181.061333pt;}
.y6aa_c00001{bottom:181.090069pt;}
.yf68_c00001{bottom:181.107064pt;}
.yd93_c00001{bottom:181.192907pt;}
.y11b6_c00001{bottom:181.210971pt;}
.y2d4_c00001{bottom:181.257859pt;}
.y1438_c00001{bottom:181.273685pt;}
.y18e0_c00001{bottom:181.401509pt;}
.y18e1_c00001{bottom:181.401512pt;}
.y18e2_c00001{bottom:181.401773pt;}
.y18dd_c00001{bottom:181.401837pt;}
.y18df_c00001{bottom:181.401928pt;}
.y18e3_c00001{bottom:181.401952pt;}
.y18de_c00001{bottom:181.402011pt;}
.y18dc_c00001{bottom:181.402275pt;}
.y104f_c00001{bottom:181.475668pt;}
.y152d_c00001{bottom:181.486667pt;}
.y1801_c00001{bottom:181.498413pt;}
.yf69_c00001{bottom:181.510704pt;}
.y1ab8_c00001{bottom:181.517564pt;}
.y8a5_c00001{bottom:181.541333pt;}
.y1439_c00001{bottom:181.551848pt;}
.y19ce_c00001{bottom:181.673264pt;}
.yd94_c00001{bottom:181.676572pt;}
.y6ab_c00001{bottom:181.745632pt;}
.y1604_c00001{bottom:181.789984pt;}
.y1802_c00001{bottom:181.842403pt;}
.y5bb_c00001{bottom:181.865547pt;}
.yf6a_c00001{bottom:181.902765pt;}
.y152c_c00001{bottom:181.920000pt;}
.yb87_c00001{bottom:181.974667pt;}
.y1700_c00001{bottom:181.999216pt;}
.y11b7_c00001{bottom:182.070979pt;}
.y6ac_c00001{bottom:182.105211pt;}
.y1605_c00001{bottom:182.124933pt;}
.y8a4_c00001{bottom:182.129333pt;}
.y5ba_c00001{bottom:182.133483pt;}
.y19cf_c00001{bottom:182.158915pt;}
.y104e_c00001{bottom:182.177432pt;}
.y7d5_c00001{bottom:182.250600pt;}
.y138b_c00001{bottom:182.292000pt;}
.y11b8_c00001{bottom:182.383523pt;}
.ye7b_c00001{bottom:182.399980pt;}
.y8a3_c00001{bottom:182.405333pt;}
.y19d0_c00001{bottom:182.450091pt;}
.y143a_c00001{bottom:182.566557pt;}
.y1ab9_c00001{bottom:182.627331pt;}
.y7d6_c00001{bottom:182.792760pt;}
.y6ad_c00001{bottom:182.813232pt;}
.y1606_c00001{bottom:182.864064pt;}
.y5b9_c00001{bottom:182.921899pt;}
.y6ae_c00001{bottom:183.053723pt;}
.y4d3_c00001{bottom:183.113427pt;}
.y16ff_c00001{bottom:183.188955pt;}
.y1333_c00001{bottom:183.202667pt;}
.y11b9_c00001{bottom:183.363115pt;}
.y5b8_c00001{bottom:183.384011pt;}
.y1aba_c00001{bottom:183.390201pt;}
.y1bfb_c00001{bottom:183.602667pt;}
.y6af_c00001{bottom:183.665696pt;}
.y1abb_c00001{bottom:183.682751pt;}
.y11ba_c00001{bottom:183.726045pt;}
.y5b7_c00001{bottom:183.845787pt;}
.yf6b_c00001{bottom:183.878773pt;}
.y4d4_c00001{bottom:183.887953pt;}
.y16fe_c00001{bottom:183.945365pt;}
.y7d7_c00001{bottom:184.179749pt;}
.y1bfc_c00001{bottom:184.264000pt;}
.y1607_c00001{bottom:184.285565pt;}
.yadb_c00001{bottom:184.329333pt;}
.y1a5f_c00001{bottom:184.405333pt;}
.y6b0_c00001{bottom:184.449749pt;}
.y1bfd_c00001{bottom:184.536000pt;}
.y709_c00001{bottom:184.556000pt;}
.y960_c00001{bottom:184.628721pt;}
.y104d_c00001{bottom:184.702216pt;}
.y16fd_c00001{bottom:184.740267pt;}
.y1b0a_c00001{bottom:184.800000pt;}
.y5b6_c00001{bottom:185.016112pt;}
.y7d8_c00001{bottom:185.099048pt;}
.y1b50_c00001{bottom:185.130667pt;}
.y1bfe_c00001{bottom:185.304000pt;}
.y5b5_c00001{bottom:185.377355pt;}
.y4d5_c00001{bottom:185.419041pt;}
.yadc_c00001{bottom:185.542075pt;}
.y3cf_c00001{bottom:185.570797pt;}
.y104c_c00001{bottom:185.682292pt;}
.y1bff_c00001{bottom:185.981333pt;}
.y5b4_c00001{bottom:185.986736pt;}
.y4d6_c00001{bottom:186.232451pt;}
.y1ba5_c00001{bottom:186.324000pt;}
.y3ce_c00001{bottom:186.336456pt;}
.y104b_c00001{bottom:186.379744pt;}
.y7d9_c00001{bottom:186.464831pt;}
.y961_c00001{bottom:186.857305pt;}
.y3cd_c00001{bottom:186.865181pt;}
.y1608_c00001{bottom:187.062373pt;}
.y708_c00001{bottom:187.066667pt;}
.y3cc_c00001{bottom:187.167767pt;}
.yadd_c00001{bottom:187.199289pt;}
.ya30_c00001{bottom:187.389333pt;}
.y1311_c00001{bottom:187.416000pt;}
.y7da_c00001{bottom:187.426051pt;}
.y2c8_c00001{bottom:187.454667pt;}
.ya2f_c00001{bottom:187.664000pt;}
.y3cb_c00001{bottom:187.907103pt;}
.yb1_c00001{bottom:187.925333pt;}
.ya2e_c00001{bottom:187.937333pt;}
.y7db_c00001{bottom:187.994824pt;}
.y2c9_c00001{bottom:188.058733pt;}
.y962_c00001{bottom:188.125897pt;}
.y3ca_c00001{bottom:188.143068pt;}
.ya2d_c00001{bottom:188.249333pt;}
.yb2_c00001{bottom:188.252000pt;}
.y1ca_c00001{bottom:188.344163pt;}
.y1cb_c00001{bottom:188.344164pt;}
.y1cf_c00001{bottom:188.344187pt;}
.y1c9_c00001{bottom:188.344455pt;}
.y1cd_c00001{bottom:188.344567pt;}
.y1cc_c00001{bottom:188.344636pt;}
.y1ce_c00001{bottom:188.344844pt;}
.yb3_c00001{bottom:188.524000pt;}
.ya2c_c00001{bottom:188.541333pt;}
.yb4_c00001{bottom:188.682667pt;}
.yade_c00001{bottom:188.685095pt;}
.y963_c00001{bottom:188.703957pt;}
.yb5_c00001{bottom:188.978667pt;}
.ya2b_c00001{bottom:189.189333pt;}
.yadf_c00001{bottom:189.315477pt;}
.ya2a_c00001{bottom:189.434667pt;}
.yc27_c00001{bottom:189.454021pt;}
.yb6_c00001{bottom:189.480000pt;}
.yb7_c00001{bottom:189.674667pt;}
.ya29_c00001{bottom:189.828000pt;}
.yb8_c00001{bottom:190.181333pt;}
.ycbc_c00001{bottom:190.273333pt;}
.yc26_c00001{bottom:190.307331pt;}
.yb9_c00001{bottom:190.380000pt;}
.y2ca_c00001{bottom:190.452107pt;}
.yc25_c00001{bottom:190.471243pt;}
.ya28_c00001{bottom:190.561333pt;}
.y4c8_c00001{bottom:190.588248pt;}
.y125c_c00001{bottom:190.738667pt;}
.y964_c00001{bottom:190.843009pt;}
.yae0_c00001{bottom:190.864889pt;}
.yc24_c00001{bottom:191.224891pt;}
.y965_c00001{bottom:191.240133pt;}
.yc95_c00001{bottom:191.326667pt;}
.yd85_c00001{bottom:191.492892pt;}
.yc23_c00001{bottom:191.550829pt;}
.yd86_c00001{bottom:191.964651pt;}
.y12b0_c00001{bottom:191.998667pt;}
.y966_c00001{bottom:192.001573pt;}
.y4c9_c00001{bottom:192.054408pt;}
.yc22_c00001{bottom:192.246331pt;}
.yd87_c00001{bottom:192.247296pt;}
.y128a_c00001{bottom:192.349333pt;}
.y17f5_c00001{bottom:192.482849pt;}
.y12b1_c00001{bottom:192.502667pt;}
.y2cb_c00001{bottom:192.536533pt;}
.y12b2_c00001{bottom:192.618667pt;}
.y4ca_c00001{bottom:192.626276pt;}
.y967_c00001{bottom:192.630285pt;}
.y19c2_c00001{bottom:192.665411pt;}
.y142b_c00001{bottom:192.720171pt;}
.y12b3_c00001{bottom:192.781333pt;}
.y1cde_c00001{bottom:192.892000pt;}
.ycdd_c00001{bottom:192.905333pt;}
.yc21_c00001{bottom:192.938416pt;}
.y17f6_c00001{bottom:193.006159pt;}
.y12b4_c00001{bottom:193.069333pt;}
.y104a_c00001{bottom:193.111900pt;}
.y19c3_c00001{bottom:193.142109pt;}
.y12b5_c00001{bottom:193.257333pt;}
.y19c4_c00001{bottom:193.338541pt;}
.y16fc_c00001{bottom:193.349541pt;}
.yd88_c00001{bottom:193.429627pt;}
.y12b6_c00001{bottom:193.470667pt;}
.y1213_c00001{bottom:193.500000pt;}
.y33_c00001{bottom:193.548000pt;}
.y16fb_c00001{bottom:193.619744pt;}
.y123a_c00001{bottom:193.660000pt;}
.y19c5_c00001{bottom:193.746573pt;}
.ye7a_c00001{bottom:193.782943pt;}
.yd89_c00001{bottom:193.785687pt;}
.y15fb_c00001{bottom:193.870272pt;}
.y152b_c00001{bottom:193.870667pt;}
.y16fa_c00001{bottom:193.910960pt;}
.y17f7_c00001{bottom:193.937265pt;}
.y142c_c00001{bottom:193.942104pt;}
.y6a2_c00001{bottom:194.060219pt;}
.y2cc_c00001{bottom:194.083443pt;}
.y12b7_c00001{bottom:194.145333pt;}
.y18db_c00001{bottom:194.158741pt;}
.ye79_c00001{bottom:194.187241pt;}
.y11e_c00001{bottom:194.192000pt;}
.y10d3_c00001{bottom:194.216000pt;}
.yf5e_c00001{bottom:194.304019pt;}
.y11ab_c00001{bottom:194.324715pt;}
.y152a_c00001{bottom:194.356000pt;}
.y6a3_c00001{bottom:194.360779pt;}
.y142d_c00001{bottom:194.403725pt;}
.y17f8_c00001{bottom:194.521976pt;}
.y1049_c00001{bottom:194.573324pt;}
.y4cb_c00001{bottom:194.604881pt;}
.y1529_c00001{bottom:194.622667pt;}
.y8a2_c00001{bottom:194.688000pt;}
.yd8a_c00001{bottom:194.688179pt;}
.y2cd_c00001{bottom:194.761176pt;}
.y19c6_c00001{bottom:194.841115pt;}
.y142e_c00001{bottom:194.923483pt;}
.y1528_c00001{bottom:195.014667pt;}
.yf5f_c00001{bottom:195.019976pt;}
.y8a1_c00001{bottom:195.168000pt;}
.y18da_c00001{bottom:195.188269pt;}
.y16f9_c00001{bottom:195.200005pt;}
.y11ac_c00001{bottom:195.240443pt;}
.y4cc_c00001{bottom:195.316368pt;}
.y1048_c00001{bottom:195.329144pt;}
.ye78_c00001{bottom:195.340900pt;}
.y1105_c00001{bottom:195.358667pt;}
.y2ce_c00001{bottom:195.471504pt;}
.y16f8_c00001{bottom:195.608139pt;}
.y6a4_c00001{bottom:195.660277pt;}
.y17f9_c00001{bottom:195.666400pt;}
.y11ad_c00001{bottom:195.761541pt;}
.y1527_c00001{bottom:195.789333pt;}
.yd8b_c00001{bottom:195.795728pt;}
.ye77_c00001{bottom:195.829299pt;}
.y142f_c00001{bottom:195.853365pt;}
.yf60_c00001{bottom:195.855125pt;}
.y15fc_c00001{bottom:195.889164pt;}
.y8a0_c00001{bottom:196.066667pt;}
.yd8c_c00001{bottom:196.075781pt;}
.y5b3_c00001{bottom:196.078272pt;}
.y11ae_c00001{bottom:196.099848pt;}
.y17fa_c00001{bottom:196.100259pt;}
.y136a_c00001{bottom:196.130667pt;}
.y18d9_c00001{bottom:196.168173pt;}
.y16f7_c00001{bottom:196.174981pt;}
.y6a5_c00001{bottom:196.292997pt;}
.y1430_c00001{bottom:196.311085pt;}
.y1ab0_c00001{bottom:196.319688pt;}
.y1c41_c00001{bottom:196.326667pt;}
.y18d8_c00001{bottom:196.384283pt;}
.y1526_c00001{bottom:196.412000pt;}
.y15fd_c00001{bottom:196.524271pt;}
.y1525_c00001{bottom:196.538667pt;}
.yf61_c00001{bottom:196.547987pt;}
.y11af_c00001{bottom:196.696917pt;}
.y16f6_c00001{bottom:196.724656pt;}
.y5b2_c00001{bottom:196.772363pt;}
.y89f_c00001{bottom:196.824000pt;}
.yf62_c00001{bottom:196.890792pt;}
.y18d7_c00001{bottom:197.166669pt;}
.yf63_c00001{bottom:197.185672pt;}
.y1524_c00001{bottom:197.280000pt;}
.y89e_c00001{bottom:197.285333pt;}
.y1ab1_c00001{bottom:197.358556pt;}
.y6a6_c00001{bottom:197.366277pt;}
.y19c7_c00001{bottom:197.377059pt;}
.yb86_c00001{bottom:197.393333pt;}
.y1431_c00001{bottom:197.461792pt;}
.y4cd_c00001{bottom:197.482972pt;}
.y18d6_c00001{bottom:197.498211pt;}
.ye76_c00001{bottom:197.590063pt;}
.y138a_c00001{bottom:197.626667pt;}
.y1047_c00001{bottom:197.756244pt;}
.y17fb_c00001{bottom:197.772539pt;}
.y7cc_c00001{bottom:197.851321pt;}
.y1ab2_c00001{bottom:197.864879pt;}
.y6a7_c00001{bottom:197.983733pt;}
.y11b0_c00001{bottom:198.056333pt;}
.ye75_c00001{bottom:198.071308pt;}
.y1ab3_c00001{bottom:198.118308pt;}
.y5b1_c00001{bottom:198.212501pt;}
.y16f5_c00001{bottom:198.243584pt;}
.y11b1_c00001{bottom:198.307987pt;}
.yf64_c00001{bottom:198.427768pt;}
.y15fe_c00001{bottom:198.444843pt;}
.y1046_c00001{bottom:198.447756pt;}
.ye74_c00001{bottom:198.489333pt;}
.y6a8_c00001{bottom:198.506757pt;}
.y1ab4_c00001{bottom:198.582201pt;}
.y5b0_c00001{bottom:198.605696pt;}
.y11b2_c00001{bottom:198.621947pt;}
.y1332_c00001{bottom:198.696000pt;}
.y1ab5_c00001{bottom:198.821072pt;}
.y16f4_c00001{bottom:198.905611pt;}
.y15ff_c00001{bottom:198.925283pt;}
.y1ab6_c00001{bottom:199.082509pt;}
.y7cd_c00001{bottom:199.113609pt;}
.y958_c00001{bottom:199.263985pt;}
.yad7_c00001{bottom:199.333404pt;}
.y1a5e_c00001{bottom:199.432000pt;}
.y1d68_c00001{bottom:199.462667pt;}
.y7ce_c00001{bottom:199.526324pt;}
.y6a9_c00001{bottom:199.620304pt;}
.y1045_c00001{bottom:199.657896pt;}
.y4ce_c00001{bottom:199.729225pt;}
.y1b09_c00001{bottom:199.808000pt;}
.y5af_c00001{bottom:199.829797pt;}
.yad8_c00001{bottom:199.947663pt;}
.y1bfa_c00001{bottom:200.145333pt;}
.y959_c00001{bottom:200.148289pt;}
.y1600_c00001{bottom:200.445589pt;}
.y7cf_c00001{bottom:200.494152pt;}
.y1b4f_c00001{bottom:200.516000pt;}
.y3c9_c00001{bottom:200.542699pt;}
.y4cf_c00001{bottom:200.602088pt;}
.y17f2_c00001{bottom:200.642667pt;}
.y1601_c00001{bottom:200.907853pt;}
.y3c8_c00001{bottom:200.990039pt;}
.y5ae_c00001{bottom:201.114928pt;}
.y17f3_c00001{bottom:201.266115pt;}
.y1310_c00001{bottom:201.360000pt;}
.y1ba4_c00001{bottom:201.393333pt;}
.y95a_c00001{bottom:201.449193pt;}
.y1044_c00001{bottom:201.498748pt;}
.y7d0_c00001{bottom:201.536187pt;}
.y3c7_c00001{bottom:202.008875pt;}
.y7d1_c00001{bottom:202.332123pt;}
.ya27_c00001{bottom:202.700000pt;}
.y95b_c00001{bottom:202.724389pt;}
.y3c6_c00001{bottom:202.735247pt;}
.y1d46_c00001{bottom:202.922667pt;}
.ya26_c00001{bottom:202.932000pt;}
.ya25_c00001{bottom:203.230667pt;}
.y95c_c00001{bottom:203.339269pt;}
.y3c5_c00001{bottom:203.455079pt;}
.y2bf_c00001{bottom:203.532000pt;}
.ya24_c00001{bottom:203.554667pt;}
.y1c2_c00001{bottom:203.603820pt;}
.y1c5_c00001{bottom:203.604028pt;}
.y1c3_c00001{bottom:203.604248pt;}
.y1c1_c00001{bottom:203.604281pt;}
.y1c7_c00001{bottom:203.604475pt;}
.y1c6_c00001{bottom:203.604553pt;}
.y1c4_c00001{bottom:203.604579pt;}
.y1c8_c00001{bottom:203.604893pt;}
.y3c4_c00001{bottom:203.647097pt;}
.y7d2_c00001{bottom:203.824095pt;}
.y3c3_c00001{bottom:203.985561pt;}
.y7d3_c00001{bottom:204.246768pt;}
.yc20_c00001{bottom:204.352291pt;}
.ya23_c00001{bottom:204.428000pt;}
.yad9_c00001{bottom:204.446065pt;}
.yb0_c00001{bottom:204.601333pt;}
.y2c0_c00001{bottom:204.635740pt;}
.ya22_c00001{bottom:204.750667pt;}
.yc1f_c00001{bottom:204.863656pt;}
.y2c1_c00001{bottom:204.926976pt;}
.ya21_c00001{bottom:205.113333pt;}
.ycbb_c00001{bottom:205.153333pt;}
.yc1e_c00001{bottom:205.439581pt;}
.ya20_c00001{bottom:205.442667pt;}
.y95d_c00001{bottom:205.473717pt;}
.yada_c00001{bottom:205.538515pt;}
.y4bf_c00001{bottom:205.709080pt;}
.y125b_c00001{bottom:205.808000pt;}
.yc1d_c00001{bottom:205.962845pt;}
.y95e_c00001{bottom:205.978153pt;}
.y17f4_c00001{bottom:206.070271pt;}
.yc94_c00001{bottom:206.160000pt;}
.y2c2_c00001{bottom:206.308224pt;}
.y95f_c00001{bottom:206.522877pt;}
.yd7c_c00001{bottom:206.619867pt;}
.y4c0_c00001{bottom:206.814280pt;}
.yc1c_c00001{bottom:206.818643pt;}
.y1425_c00001{bottom:206.888000pt;}
.ye73_c00001{bottom:206.962381pt;}
.yc1b_c00001{bottom:207.006405pt;}
.y1289_c00001{bottom:207.389333pt;}
.y1426_c00001{bottom:207.469568pt;}
.yd7d_c00001{bottom:207.545073pt;}
.y19bb_c00001{bottom:207.548781pt;}
.y17eb_c00001{bottom:207.598504pt;}
.y1ca8_c00001{bottom:207.600000pt;}
.ye72_c00001{bottom:207.640704pt;}
.y2c3_c00001{bottom:207.656780pt;}
.y1cdd_c00001{bottom:207.678667pt;}
.yc1a_c00001{bottom:207.845189pt;}
.y19bc_c00001{bottom:208.002765pt;}
.y1523_c00001{bottom:208.024000pt;}
.yd7e_c00001{bottom:208.037451pt;}
.ye71_c00001{bottom:208.092272pt;}
.ycdc_c00001{bottom:208.105333pt;}
.y18d5_c00001{bottom:208.158301pt;}
.y2c4_c00001{bottom:208.247832pt;}
.yc19_c00001{bottom:208.301448pt;}
.y17ec_c00001{bottom:208.357127pt;}
.y1043_c00001{bottom:208.360196pt;}
.y1522_c00001{bottom:208.384000pt;}
.y89d_c00001{bottom:208.434667pt;}
.y12af_c00001{bottom:208.444000pt;}
.y19bd_c00001{bottom:208.517208pt;}
.y4c1_c00001{bottom:208.529977pt;}
.y17ed_c00001{bottom:208.554685pt;}
.yd7f_c00001{bottom:208.554836pt;}
.y16f3_c00001{bottom:208.609515pt;}
.y2c5_c00001{bottom:208.692672pt;}
.y10d2_c00001{bottom:208.770667pt;}
.y1212_c00001{bottom:208.834667pt;}
.yf56_c00001{bottom:208.950869pt;}
.y17ee_c00001{bottom:208.976592pt;}
.y18d4_c00001{bottom:208.979893pt;}
.y32_c00001{bottom:208.981333pt;}
.yd80_c00001{bottom:209.061859pt;}
.y19be_c00001{bottom:209.077941pt;}
.y4c2_c00001{bottom:209.090887pt;}
.y89c_c00001{bottom:209.104000pt;}
.y11a2_c00001{bottom:209.209917pt;}
.y89b_c00001{bottom:209.416000pt;}
.y1427_c00001{bottom:209.481829pt;}
.y1521_c00001{bottom:209.548000pt;}
.ye70_c00001{bottom:209.597048pt;}
.yf57_c00001{bottom:209.624669pt;}
.y89a_c00001{bottom:209.644000pt;}
.y11d_c00001{bottom:209.680000pt;}
.y11a3_c00001{bottom:209.695691pt;}
.y1d67_c00001{bottom:209.738667pt;}
.y1239_c00001{bottom:209.792000pt;}
.y1104_c00001{bottom:209.822667pt;}
.y18d3_c00001{bottom:209.856877pt;}
.y16f2_c00001{bottom:209.914384pt;}
.y11a4_c00001{bottom:209.931096pt;}
.yd81_c00001{bottom:210.082560pt;}
.y1428_c00001{bottom:210.102952pt;}
.y16f1_c00001{bottom:210.140197pt;}
.y69a_c00001{bottom:210.145456pt;}
.y17ef_c00001{bottom:210.170600pt;}
.y18d2_c00001{bottom:210.189541pt;}
.y1520_c00001{bottom:210.216000pt;}
.yd82_c00001{bottom:210.241205pt;}
.ye6f_c00001{bottom:210.263515pt;}
.y19bf_c00001{bottom:210.362275pt;}
.y15f4_c00001{bottom:210.433947pt;}
.y17f0_c00001{bottom:210.441775pt;}
.y151f_c00001{bottom:210.478667pt;}
.yd83_c00001{bottom:210.483148pt;}
.yf58_c00001{bottom:210.502120pt;}
.y899_c00001{bottom:210.534667pt;}
.y5ad_c00001{bottom:210.574261pt;}
.y2c6_c00001{bottom:210.593736pt;}
.y4c3_c00001{bottom:210.617635pt;}
.y151e_c00001{bottom:210.686667pt;}
.y1aa9_c00001{bottom:210.721333pt;}
.ye6e_c00001{bottom:210.733456pt;}
.y19c0_c00001{bottom:210.757912pt;}
.yd84_c00001{bottom:210.772371pt;}
.y151d_c00001{bottom:210.902667pt;}
.y5ac_c00001{bottom:210.938667pt;}
.y898_c00001{bottom:210.978667pt;}
.yf59_c00001{bottom:211.026757pt;}
.y18d1_c00001{bottom:211.028173pt;}
.y151c_c00001{bottom:211.084000pt;}
.y1042_c00001{bottom:211.111904pt;}
.y1aaa_c00001{bottom:211.120780pt;}
.y69b_c00001{bottom:211.148267pt;}
.y1cb8_c00001{bottom:211.204000pt;}
.y11a5_c00001{bottom:211.274000pt;}
.y2c7_c00001{bottom:211.275252pt;}
.y5ab_c00001{bottom:211.340928pt;}
.y16f0_c00001{bottom:211.344347pt;}
.y1429_c00001{bottom:211.407632pt;}
.y18d0_c00001{bottom:211.460413pt;}
.y69c_c00001{bottom:211.499237pt;}
.y17f1_c00001{bottom:211.536312pt;}
.y15f5_c00001{bottom:211.538069pt;}
.y4c4_c00001{bottom:211.578643pt;}
.y1ca7_c00001{bottom:211.585333pt;}
.y16ef_c00001{bottom:211.670683pt;}
.y151b_c00001{bottom:211.681333pt;}
.y11a6_c00001{bottom:211.779037pt;}
.y1aab_c00001{bottom:211.807163pt;}
.y15f6_c00001{bottom:211.904488pt;}
.y897_c00001{bottom:211.926667pt;}
.y1369_c00001{bottom:211.974667pt;}
.yf5a_c00001{bottom:212.004344pt;}
.y7c5_c00001{bottom:212.010624pt;}
.y69d_c00001{bottom:212.011973pt;}
.y1041_c00001{bottom:212.020688pt;}
.y1aac_c00001{bottom:212.056780pt;}
.y11a7_c00001{bottom:212.077000pt;}
.yb85_c00001{bottom:212.084000pt;}
.ye6d_c00001{bottom:212.118285pt;}
.y16ee_c00001{bottom:212.253835pt;}
.y1aad_c00001{bottom:212.300192pt;}
.y1389_c00001{bottom:212.532000pt;}
.y19c1_c00001{bottom:212.565563pt;}
.y18cf_c00001{bottom:212.621989pt;}
.y5aa_c00001{bottom:212.676837pt;}
.y69e_c00001{bottom:212.776091pt;}
.y142a_c00001{bottom:212.783760pt;}
.y4c5_c00001{bottom:212.887955pt;}
.y5a9_c00001{bottom:212.939973pt;}
.y15f7_c00001{bottom:212.985517pt;}
.y11a8_c00001{bottom:213.036965pt;}
.y1aae_c00001{bottom:213.067695pt;}
.yf5b_c00001{bottom:213.078773pt;}
.y69f_c00001{bottom:213.112384pt;}
.y11a9_c00001{bottom:213.266216pt;}
.ye6c_c00001{bottom:213.366667pt;}
.y1aaf_c00001{bottom:213.413425pt;}
.y16ed_c00001{bottom:213.427280pt;}
.yf5c_c00001{bottom:213.466123pt;}
.y1331_c00001{bottom:213.494667pt;}
.y15f8_c00001{bottom:213.508539pt;}
.y1c38_c00001{bottom:213.598667pt;}
.y1040_c00001{bottom:213.680084pt;}
.y1c39_c00001{bottom:213.733333pt;}
.y11aa_c00001{bottom:213.795683pt;}
.y6a0_c00001{bottom:213.899797pt;}
.y7c6_c00001{bottom:214.036516pt;}
.yf5d_c00001{bottom:214.052477pt;}
.y1c3a_c00001{bottom:214.216000pt;}
.y16ec_c00001{bottom:214.271141pt;}
.y6a1_c00001{bottom:214.327621pt;}
.y5a8_c00001{bottom:214.344283pt;}
.y103f_c00001{bottom:214.360148pt;}
.y1c3b_c00001{bottom:214.398667pt;}
.y7c7_c00001{bottom:214.542037pt;}
.y1c3c_c00001{bottom:214.717333pt;}
.y3c2_c00001{bottom:214.876883pt;}
.y1bf9_c00001{bottom:214.938667pt;}
.y1c3d_c00001{bottom:214.986667pt;}
.y3c1_c00001{bottom:215.088315pt;}
.y1a5d_c00001{bottom:215.093333pt;}
.yad0_c00001{bottom:215.175960pt;}
.y15f9_c00001{bottom:215.195799pt;}
.y4c6_c00001{bottom:215.340883pt;}
.y1b4e_c00001{bottom:215.396000pt;}
.y1b08_c00001{bottom:215.520000pt;}
.y1c3e_c00001{bottom:215.670667pt;}
.y5a7_c00001{bottom:215.758832pt;}
.y3c0_c00001{bottom:215.774507pt;}
.y1c3f_c00001{bottom:215.808000pt;}
.y953_c00001{bottom:215.819025pt;}
.y1c40_c00001{bottom:216.097333pt;}
.y4c7_c00001{bottom:216.290281pt;}
.y7c8_c00001{bottom:216.325244pt;}
.yad1_c00001{bottom:216.506387pt;}
.y103e_c00001{bottom:216.648520pt;}
.y954_c00001{bottom:216.652061pt;}
.y15fa_c00001{bottom:216.677809pt;}
.y3bf_c00001{bottom:216.722429pt;}
.y1ba3_c00001{bottom:216.745333pt;}
.y3be_c00001{bottom:216.821195pt;}
.y7c9_c00001{bottom:217.316267pt;}
.y103d_c00001{bottom:217.327088pt;}
.y3bd_c00001{bottom:217.426263pt;}
.y2b8_c00001{bottom:217.433225pt;}
.y130f_c00001{bottom:217.601333pt;}
.ya1f_c00001{bottom:217.664000pt;}
.y955_c00001{bottom:217.754353pt;}
.yad2_c00001{bottom:217.780257pt;}
.ya8_c00001{bottom:217.925333pt;}
.yad3_c00001{bottom:218.206467pt;}
.ya9_c00001{bottom:218.310667pt;}
.ya1e_c00001{bottom:218.445333pt;}
.yaa_c00001{bottom:218.482667pt;}
.y1bf_c00001{bottom:218.497049pt;}
.y1be_c00001{bottom:218.497083pt;}
.y1c0_c00001{bottom:218.497512pt;}
.y1bd_c00001{bottom:218.497607pt;}
.y1bc_c00001{bottom:218.498209pt;}
.y1bb_c00001{bottom:218.498867pt;}
.y1ba_c00001{bottom:218.498901pt;}
.y2b9_c00001{bottom:218.564409pt;}
.ya1d_c00001{bottom:218.614667pt;}
.y7ca_c00001{bottom:218.872081pt;}
.yab_c00001{bottom:218.894667pt;}
.yac_c00001{bottom:219.018667pt;}
.ya1c_c00001{bottom:219.068000pt;}
.y956_c00001{bottom:219.216981pt;}
.y2ba_c00001{bottom:219.251804pt;}
.yad4_c00001{bottom:219.420243pt;}
.y7cb_c00001{bottom:219.426516pt;}
.y2bb_c00001{bottom:219.513573pt;}
.yad_c00001{bottom:219.589333pt;}
.yad5_c00001{bottom:219.791907pt;}
.ya1b_c00001{bottom:219.860000pt;}
.yc18_c00001{bottom:220.000784pt;}
.ya1a_c00001{bottom:220.082667pt;}
.yae_c00001{bottom:220.125333pt;}
.yc17_c00001{bottom:220.212539pt;}
.yad6_c00001{bottom:220.235672pt;}
.y125a_c00001{bottom:220.304000pt;}
.y2bc_c00001{bottom:220.451996pt;}
.ycba_c00001{bottom:220.506667pt;}
.yaf_c00001{bottom:220.690667pt;}
.y4b8_c00001{bottom:220.823868pt;}
.y2bd_c00001{bottom:220.882460pt;}
.yc16_c00001{bottom:220.982240pt;}
.yc93_c00001{bottom:221.438667pt;}
.yc15_c00001{bottom:221.458613pt;}
.yd76_c00001{bottom:221.506535pt;}
.ye6b_c00001{bottom:221.795608pt;}
.y2be_c00001{bottom:221.944839pt;}
.ye6a_c00001{bottom:222.141777pt;}
.y957_c00001{bottom:222.180585pt;}
.yc14_c00001{bottom:222.316123pt;}
.y4b9_c00001{bottom:222.337151pt;}
.yd77_c00001{bottom:222.419811pt;}
.y1422_c00001{bottom:222.481467pt;}
.y29_c00001{bottom:222.482667pt;}
.y1288_c00001{bottom:222.562667pt;}
.yc13_c00001{bottom:222.580779pt;}
.ye69_c00001{bottom:222.690960pt;}
.ycdb_c00001{bottom:222.774667pt;}
.y151a_c00001{bottom:222.853333pt;}
.yc12_c00001{bottom:222.857120pt;}
.y2a_c00001{bottom:222.874667pt;}
.y19b4_c00001{bottom:222.914016pt;}
.y4ba_c00001{bottom:222.961389pt;}
.y16eb_c00001{bottom:222.975936pt;}
.yd78_c00001{bottom:223.040273pt;}
.y12ae_c00001{bottom:223.060000pt;}
.y1cdc_c00001{bottom:223.072000pt;}
.y1423_c00001{bottom:223.105253pt;}
.y1519_c00001{bottom:223.108000pt;}
.yc11_c00001{bottom:223.183059pt;}
.y17e4_c00001{bottom:223.198984pt;}
.y2b_c00001{bottom:223.346667pt;}
.y16ea_c00001{bottom:223.377200pt;}
.y1518_c00001{bottom:223.381333pt;}
.y1424_c00001{bottom:223.450987pt;}
.y1211_c00001{bottom:223.476000pt;}
.y2c_c00001{bottom:223.565333pt;}
.yf4e_c00001{bottom:223.598328pt;}
.y17e5_c00001{bottom:223.641355pt;}
.y2d_c00001{bottom:223.794667pt;}
.y119a_c00001{bottom:223.856616pt;}
.y10d1_c00001{bottom:223.997333pt;}
.y103c_c00001{bottom:224.046804pt;}
.y1517_c00001{bottom:224.058667pt;}
.y19b5_c00001{bottom:224.061240pt;}
.y1238_c00001{bottom:224.136000pt;}
.y5a6_c00001{bottom:224.151259pt;}
.y119b_c00001{bottom:224.183651pt;}
.y11c_c00001{bottom:224.345333pt;}
.y1516_c00001{bottom:224.346667pt;}
.yd79_c00001{bottom:224.375852pt;}
.y2e_c00001{bottom:224.390667pt;}
.ye68_c00001{bottom:224.395923pt;}
.y16e9_c00001{bottom:224.408059pt;}
.yf4f_c00001{bottom:224.540941pt;}
.y18ce_c00001{bottom:224.557651pt;}
.y1515_c00001{bottom:224.641333pt;}
.y2f_c00001{bottom:224.690667pt;}
.y17e6_c00001{bottom:224.765508pt;}
.y896_c00001{bottom:224.772000pt;}
.ye67_c00001{bottom:224.834996pt;}
.y30_c00001{bottom:224.872000pt;}
.y1514_c00001{bottom:224.897333pt;}
.yf50_c00001{bottom:224.979355pt;}
.y1103_c00001{bottom:224.988000pt;}
.y15eb_c00001{bottom:225.079252pt;}
.yd7a_c00001{bottom:225.171837pt;}
.y895_c00001{bottom:225.189333pt;}
.y19b6_c00001{bottom:225.194251pt;}
.y4bb_c00001{bottom:225.261216pt;}
.y18cd_c00001{bottom:225.308885pt;}
.y16e8_c00001{bottom:225.327173pt;}
.y31_c00001{bottom:225.413333pt;}
.y17e7_c00001{bottom:225.452061pt;}
.yf51_c00001{bottom:225.468264pt;}
.y15ec_c00001{bottom:225.484473pt;}
.y19b7_c00001{bottom:225.487261pt;}
.y894_c00001{bottom:225.492000pt;}
.y18cc_c00001{bottom:225.632784pt;}
.y17e8_c00001{bottom:225.659651pt;}
.y5a5_c00001{bottom:225.662848pt;}
.ye66_c00001{bottom:225.663684pt;}
.y119c_c00001{bottom:225.664568pt;}
.y1513_c00001{bottom:225.793333pt;}
.y16e7_c00001{bottom:225.802939pt;}
.y1aa4_c00001{bottom:225.839776pt;}
.y103b_c00001{bottom:225.862852pt;}
.y119d_c00001{bottom:225.937392pt;}
.y1368_c00001{bottom:226.052000pt;}
.ye65_c00001{bottom:226.141668pt;}
.y1512_c00001{bottom:226.189333pt;}
.y1ca6_c00001{bottom:226.232000pt;}
.y4bc_c00001{bottom:226.316829pt;}
.y5a4_c00001{bottom:226.331563pt;}
.y18cb_c00001{bottom:226.369325pt;}
.y893_c00001{bottom:226.386667pt;}
.y17e9_c00001{bottom:226.393924pt;}
.y19b8_c00001{bottom:226.423733pt;}
.y892_c00001{bottom:226.437333pt;}
.yd7b_c00001{bottom:226.463040pt;}
.yf52_c00001{bottom:226.513117pt;}
.y1511_c00001{bottom:226.560000pt;}
.y891_c00001{bottom:226.638667pt;}
.ye64_c00001{bottom:226.676237pt;}
.y694_c00001{bottom:226.710192pt;}
.y18ca_c00001{bottom:226.724928pt;}
.y890_c00001{bottom:226.770667pt;}
.y18c9_c00001{bottom:226.886757pt;}
.yb84_c00001{bottom:226.974667pt;}
.y1aa5_c00001{bottom:226.991467pt;}
.y695_c00001{bottom:226.992667pt;}
.yf53_c00001{bottom:227.040771pt;}
.y4bd_c00001{bottom:227.048433pt;}
.y15ed_c00001{bottom:227.097784pt;}
.y17ea_c00001{bottom:227.171007pt;}
.y18c8_c00001{bottom:227.217339pt;}
.y119e_c00001{bottom:227.233451pt;}
.y1388_c00001{bottom:227.280000pt;}
.y88f_c00001{bottom:227.286667pt;}
.y19b9_c00001{bottom:227.328875pt;}
.y5a3_c00001{bottom:227.329669pt;}
.y16e6_c00001{bottom:227.383915pt;}
.y1aa6_c00001{bottom:227.466485pt;}
.yf54_c00001{bottom:227.469408pt;}
.y15ee_c00001{bottom:227.475912pt;}
.y19ba_c00001{bottom:227.563976pt;}
.y119f_c00001{bottom:227.616864pt;}
.y103a_c00001{bottom:227.624456pt;}
.y1aa7_c00001{bottom:227.705643pt;}
.ye63_c00001{bottom:227.720287pt;}
.y696_c00001{bottom:227.739435pt;}
.y18c7_c00001{bottom:227.742989pt;}
.y5a2_c00001{bottom:227.746533pt;}
.y16e5_c00001{bottom:228.075008pt;}
.y1330_c00001{bottom:228.133333pt;}
.y1039_c00001{bottom:228.303344pt;}
.y7be_c00001{bottom:228.321404pt;}
.y1aa8_c00001{bottom:228.424411pt;}
.yf55_c00001{bottom:228.593429pt;}
.y11a0_c00001{bottom:228.702717pt;}
.y697_c00001{bottom:228.942416pt;}
.y11a1_c00001{bottom:229.079976pt;}
.y1038_c00001{bottom:229.270592pt;}
.y5a1_c00001{bottom:229.278656pt;}
.y15ef_c00001{bottom:229.294179pt;}
.y16e4_c00001{bottom:229.400027pt;}
.y94c_c00001{bottom:229.502317pt;}
.y698_c00001{bottom:229.567339pt;}
.yac8_c00001{bottom:229.583313pt;}
.y1a5c_c00001{bottom:229.589333pt;}
.y4be_c00001{bottom:229.617329pt;}
.y7bf_c00001{bottom:229.706727pt;}
.y15f0_c00001{bottom:229.809499pt;}
.y1b07_c00001{bottom:230.028000pt;}
.y1bf8_c00001{bottom:230.153333pt;}
.y7c0_c00001{bottom:230.198197pt;}
.y1037_c00001{bottom:230.201592pt;}
.y699_c00001{bottom:230.265611pt;}
.y3bc_c00001{bottom:230.413497pt;}
.y1b4d_c00001{bottom:230.625333pt;}
.yac9_c00001{bottom:230.872237pt;}
.y3bb_c00001{bottom:230.890369pt;}
.y1d41_c00001{bottom:231.113675pt;}
.y5a0_c00001{bottom:231.128000pt;}
.y15f1_c00001{bottom:231.236711pt;}
.yaca_c00001{bottom:231.366899pt;}
.y7c1_c00001{bottom:231.591177pt;}
.y1036_c00001{bottom:231.630644pt;}
.y15f2_c00001{bottom:231.649899pt;}
.y1ba2_c00001{bottom:231.673333pt;}
.y94d_c00001{bottom:231.781817pt;}
.y3ba_c00001{bottom:231.805780pt;}
.y15f3_c00001{bottom:231.865849pt;}
.y130e_c00001{bottom:231.948000pt;}
.y3b9_c00001{bottom:232.183623pt;}
.y1035_c00001{bottom:232.200808pt;}
.y7c2_c00001{bottom:232.292383pt;}
.y1c30_c00001{bottom:232.320000pt;}
.y1c31_c00001{bottom:232.596000pt;}
.y94e_c00001{bottom:232.704257pt;}
.y1d42_c00001{bottom:232.761056pt;}
.ya2_c00001{bottom:232.805333pt;}
.y1c32_c00001{bottom:232.814667pt;}
.yacb_c00001{bottom:232.906256pt;}
.y1d43_c00001{bottom:233.150837pt;}
.yacc_c00001{bottom:233.237641pt;}
.y94f_c00001{bottom:233.249689pt;}
.y1d44_c00001{bottom:233.252032pt;}
.y3b8_c00001{bottom:233.266633pt;}
.ya3_c00001{bottom:233.314667pt;}
.y1b7_c00001{bottom:233.502912pt;}
.y1b2_c00001{bottom:233.503112pt;}
.y1b8_c00001{bottom:233.503295pt;}
.y1b3_c00001{bottom:233.503388pt;}
.y1b6_c00001{bottom:233.503480pt;}
.y1b5_c00001{bottom:233.503568pt;}
.y1b9_c00001{bottom:233.503839pt;}
.y1b4_c00001{bottom:233.504003pt;}
.y2b0_c00001{bottom:233.514151pt;}
.y1c33_c00001{bottom:233.517333pt;}
.ya4_c00001{bottom:233.590667pt;}
.y7c3_c00001{bottom:233.669729pt;}
.y1c34_c00001{bottom:233.681333pt;}
.yacd_c00001{bottom:233.682499pt;}
.y2b1_c00001{bottom:233.710415pt;}
.ya5_c00001{bottom:233.786667pt;}
.y1d45_c00001{bottom:233.877579pt;}
.y2b2_c00001{bottom:233.927192pt;}
.y1c35_c00001{bottom:234.004000pt;}
.ya19_c00001{bottom:234.252000pt;}
.y7c4_c00001{bottom:234.456847pt;}
.y1c36_c00001{bottom:234.476000pt;}
.y2b3_c00001{bottom:234.603265pt;}
.ya6_c00001{bottom:234.608000pt;}
.y950_c00001{bottom:234.778053pt;}
.yc10_c00001{bottom:234.782387pt;}
.yace_c00001{bottom:234.886875pt;}
.y1c37_c00001{bottom:234.980000pt;}
.yc0f_c00001{bottom:235.034696pt;}
.y1259_c00001{bottom:235.269333pt;}
.y2b4_c00001{bottom:235.283367pt;}
.yc0e_c00001{bottom:235.322181pt;}
.ycb9_c00001{bottom:235.520000pt;}
.ya7_c00001{bottom:235.636000pt;}
.y2b5_c00001{bottom:235.768597pt;}
.y4b0_c00001{bottom:235.940000pt;}
.yacf_c00001{bottom:236.117951pt;}
.yc0d_c00001{bottom:236.294808pt;}
.yd6f_c00001{bottom:236.393940pt;}
.y951_c00001{bottom:236.597997pt;}
.yc92_c00001{bottom:236.801333pt;}
.y4b1_c00001{bottom:237.001845pt;}
.yd70_c00001{bottom:237.007237pt;}
.y2b6_c00001{bottom:237.041477pt;}
.yc0c_c00001{bottom:237.043301pt;}
.ye62_c00001{bottom:237.122456pt;}
.y952_c00001{bottom:237.202901pt;}
.y2b7_c00001{bottom:237.352443pt;}
.yc0b_c00001{bottom:237.398989pt;}
.y1510_c00001{bottom:237.560000pt;}
.ye61_c00001{bottom:237.569163pt;}
.y17db_c00001{bottom:237.605333pt;}
.y1287_c00001{bottom:237.684000pt;}
.y150f_c00001{bottom:237.744000pt;}
.y19ac_c00001{bottom:237.796184pt;}
.y1cdb_c00001{bottom:237.797333pt;}
.y1418_c00001{bottom:237.844000pt;}
.y4b2_c00001{bottom:238.026353pt;}
.y12ad_c00001{bottom:238.126667pt;}
.yc0a_c00001{bottom:238.177571pt;}
.ye60_c00001{bottom:238.207095pt;}
.ycda_c00001{bottom:238.212000pt;}
.y1419_c00001{bottom:238.300000pt;}
.yd71_c00001{bottom:238.308087pt;}
.y150e_c00001{bottom:238.318667pt;}
.y1ce7_c00001{bottom:238.444000pt;}
.yc09_c00001{bottom:238.544347pt;}
.y150d_c00001{bottom:238.565333pt;}
.y19ad_c00001{bottom:238.588013pt;}
.y1237_c00001{bottom:238.684000pt;}
.yf48_c00001{bottom:238.722680pt;}
.y4b3_c00001{bottom:238.797645pt;}
.y150c_c00001{bottom:238.809333pt;}
.y1210_c00001{bottom:238.837333pt;}
.y17dc_c00001{bottom:238.845005pt;}
.ye5f_c00001{bottom:239.063573pt;}
.y141a_c00001{bottom:239.078027pt;}
.y19ae_c00001{bottom:239.087888pt;}
.y17dd_c00001{bottom:239.177897pt;}
.y28_c00001{bottom:239.272000pt;}
.y88e_c00001{bottom:239.384000pt;}
.yd72_c00001{bottom:239.457655pt;}
.y1193_c00001{bottom:239.460595pt;}
.y10d0_c00001{bottom:239.465333pt;}
.y19af_c00001{bottom:239.479453pt;}
.y1034_c00001{bottom:239.492116pt;}
.ye5e_c00001{bottom:239.532240pt;}
.y17de_c00001{bottom:239.564633pt;}
.y88d_c00001{bottom:239.585333pt;}
.y18c6_c00001{bottom:239.605077pt;}
.y11b_c00001{bottom:239.618667pt;}
.y150b_c00001{bottom:239.654667pt;}
.y16e3_c00001{bottom:239.680864pt;}
.y88c_c00001{bottom:239.764000pt;}
.yd73_c00001{bottom:239.860784pt;}
.y18c5_c00001{bottom:239.866139pt;}
.y68b_c00001{bottom:239.920635pt;}
.y16e2_c00001{bottom:239.924869pt;}
.y1033_c00001{bottom:240.076472pt;}
.ye5d_c00001{bottom:240.147348pt;}
.y141b_c00001{bottom:240.148027pt;}
.y15e4_c00001{bottom:240.202979pt;}
.y150a_c00001{bottom:240.218667pt;}
.y17df_c00001{bottom:240.231677pt;}
.y1194_c00001{bottom:240.285525pt;}
.y1509_c00001{bottom:240.356000pt;}
.y141c_c00001{bottom:240.367547pt;}
.y88b_c00001{bottom:240.469333pt;}
.y68c_c00001{bottom:240.489205pt;}
.y17e0_c00001{bottom:240.569917pt;}
.y68d_c00001{bottom:240.656459pt;}
.y1102_c00001{bottom:240.672000pt;}
.ye5c_c00001{bottom:240.697587pt;}
.y1cb7_c00001{bottom:240.714667pt;}
.y1508_c00001{bottom:240.721333pt;}
.y18c4_c00001{bottom:240.774765pt;}
.y141d_c00001{bottom:240.786987pt;}
.y88a_c00001{bottom:240.894667pt;}
.yf49_c00001{bottom:240.926555pt;}
.y19b0_c00001{bottom:240.958749pt;}
.y18c3_c00001{bottom:240.981227pt;}
.y141e_c00001{bottom:241.080507pt;}
.yd74_c00001{bottom:241.102676pt;}
.y18c2_c00001{bottom:241.129645pt;}
.y16e1_c00001{bottom:241.167072pt;}
.ye5b_c00001{bottom:241.303444pt;}
.y1367_c00001{bottom:241.306667pt;}
.y4b4_c00001{bottom:241.338825pt;}
.y889_c00001{bottom:241.413333pt;}
.y1195_c00001{bottom:241.431283pt;}
.y19b1_c00001{bottom:241.503979pt;}
.yd75_c00001{bottom:241.572899pt;}
.y888_c00001{bottom:241.614667pt;}
.y141f_c00001{bottom:241.627413pt;}
.yf4a_c00001{bottom:241.635339pt;}
.y1196_c00001{bottom:241.723619pt;}
.y15e5_c00001{bottom:241.758372pt;}
.y4b5_c00001{bottom:241.833887pt;}
.y17e1_c00001{bottom:241.888213pt;}
.y1420_c00001{bottom:241.971493pt;}
.y1032_c00001{bottom:242.035996pt;}
.y17e2_c00001{bottom:242.046441pt;}
.y1197_c00001{bottom:242.054989pt;}
.yf4b_c00001{bottom:242.064392pt;}
.y15e6_c00001{bottom:242.103620pt;}
.y18c1_c00001{bottom:242.146563pt;}
.y16e0_c00001{bottom:242.146805pt;}
.y887_c00001{bottom:242.164000pt;}
.y68e_c00001{bottom:242.183509pt;}
.yb83_c00001{bottom:242.218667pt;}
.y16df_c00001{bottom:242.423621pt;}
.y68f_c00001{bottom:242.455088pt;}
.y1421_c00001{bottom:242.471947pt;}
.y1a9e_c00001{bottom:242.494739pt;}
.y1a9f_c00001{bottom:242.495091pt;}
.y1aa0_c00001{bottom:242.495427pt;}
.y1aa3_c00001{bottom:242.495739pt;}
.y1aa1_c00001{bottom:242.495744pt;}
.y1aa2_c00001{bottom:242.496240pt;}
.y1387_c00001{bottom:242.508000pt;}
.y19b2_c00001{bottom:242.579403pt;}
.ye5a_c00001{bottom:242.685251pt;}
.y690_c00001{bottom:242.742613pt;}
.y1198_c00001{bottom:242.755464pt;}
.y19b3_c00001{bottom:242.848885pt;}
.y17e3_c00001{bottom:243.012217pt;}
.y132f_c00001{bottom:243.013333pt;}
.yf4c_c00001{bottom:243.164648pt;}
.y7b7_c00001{bottom:243.196375pt;}
.y15e7_c00001{bottom:243.252515pt;}
.ye59_c00001{bottom:243.326099pt;}
.y691_c00001{bottom:243.539077pt;}
.y15e8_c00001{bottom:243.618128pt;}
.y692_c00001{bottom:243.800704pt;}
.y1b45_c00001{bottom:243.838667pt;}
.y16de_c00001{bottom:243.838800pt;}
.y1199_c00001{bottom:243.843752pt;}
.y7b8_c00001{bottom:244.244955pt;}
.y16dd_c00001{bottom:244.284000pt;}
.y1b46_c00001{bottom:244.378667pt;}
.y1031_c00001{bottom:244.620184pt;}
.y944_c00001{bottom:244.621289pt;}
.y1b47_c00001{bottom:244.628000pt;}
.yf4d_c00001{bottom:244.636995pt;}
.y1bf7_c00001{bottom:244.809333pt;}
.y693_c00001{bottom:244.889632pt;}
.y1a5b_c00001{bottom:244.898667pt;}
.y1b48_c00001{bottom:244.932000pt;}
.yabe_c00001{bottom:244.950253pt;}
.y7b9_c00001{bottom:244.968037pt;}
.y1b06_c00001{bottom:245.014667pt;}
.y1b49_c00001{bottom:245.162667pt;}
.y4b6_c00001{bottom:245.245087pt;}
.y15e9_c00001{bottom:245.310281pt;}
.y15ea_c00001{bottom:245.561721pt;}
.y3b7_c00001{bottom:245.627652pt;}
.y1b4a_c00001{bottom:245.830667pt;}
.yabf_c00001{bottom:245.870071pt;}
.y4b7_c00001{bottom:245.911200pt;}
.y3b6_c00001{bottom:245.963137pt;}
.y945_c00001{bottom:246.071861pt;}
.y1030_c00001{bottom:246.083152pt;}
.yac0_c00001{bottom:246.228937pt;}
.y1b4b_c00001{bottom:246.270667pt;}
.y1ba1_c00001{bottom:246.320000pt;}
.y1d3a_c00001{bottom:246.475659pt;}
.y1b4c_c00001{bottom:246.498667pt;}
.y3b5_c00001{bottom:246.517625pt;}
.yac1_c00001{bottom:246.617037pt;}
.y59f_c00001{bottom:246.733333pt;}
.y946_c00001{bottom:246.758237pt;}
.y1d3b_c00001{bottom:246.882613pt;}
.y7ba_c00001{bottom:246.955805pt;}
.y1d3c_c00001{bottom:247.138752pt;}
.y3b4_c00001{bottom:247.278048pt;}
.y130d_c00001{bottom:247.440000pt;}
.y3b3_c00001{bottom:247.497183pt;}
.yac2_c00001{bottom:247.571444pt;}
.y9a_c00001{bottom:247.685333pt;}
.y3b2_c00001{bottom:247.827447pt;}
.y1d3d_c00001{bottom:247.853984pt;}
.y7bb_c00001{bottom:247.882639pt;}
.yac3_c00001{bottom:247.902083pt;}
.y3b1_c00001{bottom:248.146843pt;}
.y9b_c00001{bottom:248.197333pt;}
.y102f_c00001{bottom:248.277472pt;}
.y9c_c00001{bottom:248.286667pt;}
.y1d3e_c00001{bottom:248.336757pt;}
.y2ab_c00001{bottom:248.396916pt;}
.y7bc_c00001{bottom:248.444297pt;}
.yac4_c00001{bottom:248.480299pt;}
.y9d_c00001{bottom:248.589333pt;}
.y2ac_c00001{bottom:248.602423pt;}
.y1d66_c00001{bottom:248.793333pt;}
.y947_c00001{bottom:248.912833pt;}
.y1b1_c00001{bottom:248.980536pt;}
.y1b0_c00001{bottom:248.980731pt;}
.y1af_c00001{bottom:248.981388pt;}
.y1ad_c00001{bottom:248.981857pt;}
.y1ac_c00001{bottom:248.981945pt;}
.y1ae_c00001{bottom:248.982045pt;}
.y1aa_c00001{bottom:248.982299pt;}
.y1ab_c00001{bottom:248.982300pt;}
.y1d3f_c00001{bottom:249.099979pt;}
.yac5_c00001{bottom:249.244744pt;}
.ya18_c00001{bottom:249.266667pt;}
.y1d40_c00001{bottom:249.355733pt;}
.y9e_c00001{bottom:249.424000pt;}
.yc08_c00001{bottom:249.429917pt;}
.y948_c00001{bottom:249.549801pt;}
.y2ad_c00001{bottom:249.711840pt;}
.yc07_c00001{bottom:249.725157pt;}
.y9f_c00001{bottom:249.764000pt;}
.ya0_c00001{bottom:250.026667pt;}
.yac6_c00001{bottom:250.113653pt;}
.y949_c00001{bottom:250.136893pt;}
.ya1_c00001{bottom:250.242667pt;}
.y7bd_c00001{bottom:250.338249pt;}
.yc06_c00001{bottom:250.604840pt;}
.y1258_c00001{bottom:250.736000pt;}
.y2ae_c00001{bottom:250.947828pt;}
.yc05_c00001{bottom:251.079613pt;}
.ycb8_c00001{bottom:251.174667pt;}
.yc91_c00001{bottom:251.306667pt;}
.yac7_c00001{bottom:251.471976pt;}
.yd68_c00001{bottom:251.756819pt;}
.y1c27_c00001{bottom:251.761333pt;}
.yc04_c00001{bottom:251.916048pt;}
.y1c28_c00001{bottom:251.929333pt;}
.y12a6_c00001{bottom:252.001333pt;}
.y140f_c00001{bottom:252.005333pt;}
.y94a_c00001{bottom:252.133177pt;}
.yc03_c00001{bottom:252.189197pt;}
.yd69_c00001{bottom:252.197981pt;}
.y17d2_c00001{bottom:252.244000pt;}
.y2af_c00001{bottom:252.308360pt;}
.y1c29_c00001{bottom:252.310667pt;}
.y4a7_c00001{bottom:252.492000pt;}
.ye58_c00001{bottom:252.516597pt;}
.y1c2a_c00001{bottom:252.529333pt;}
.y1cd9_c00001{bottom:252.589333pt;}
.y12a7_c00001{bottom:252.626667pt;}
.y16dc_c00001{bottom:252.694693pt;}
.y1c2b_c00001{bottom:252.745333pt;}
.y94b_c00001{bottom:252.815861pt;}
.y1286_c00001{bottom:252.829333pt;}
.y1410_c00001{bottom:252.855208pt;}
.yd6a_c00001{bottom:252.858284pt;}
.y1507_c00001{bottom:252.865333pt;}
.y19a7_c00001{bottom:252.922411pt;}
.y12a8_c00001{bottom:252.932000pt;}
.y17d3_c00001{bottom:253.009659pt;}
.y1c2c_c00001{bottom:253.141333pt;}
.y1411_c00001{bottom:253.166435pt;}
.yc02_c00001{bottom:253.187331pt;}
.y16db_c00001{bottom:253.208736pt;}
.y1506_c00001{bottom:253.289333pt;}
.y102e_c00001{bottom:253.348844pt;}
.ycd9_c00001{bottom:253.358667pt;}
.y12a9_c00001{bottom:253.382667pt;}
.y4a8_c00001{bottom:253.414397pt;}
.y12aa_c00001{bottom:253.520000pt;}
.yd6b_c00001{bottom:253.701020pt;}
.y1c2d_c00001{bottom:253.772000pt;}
.y1412_c00001{bottom:253.790472pt;}
.y27_c00001{bottom:253.850667pt;}
.y1c2e_c00001{bottom:253.946667pt;}
.y19a8_c00001{bottom:253.975029pt;}
.y1505_c00001{bottom:253.990667pt;}
.ye57_c00001{bottom:254.055045pt;}
.y120f_c00001{bottom:254.062667pt;}
.y1c2f_c00001{bottom:254.112000pt;}
.y12ab_c00001{bottom:254.132000pt;}
.y4a9_c00001{bottom:254.134835pt;}
.y17d4_c00001{bottom:254.228928pt;}
.y1413_c00001{bottom:254.244083pt;}
.yf41_c00001{bottom:254.322659pt;}
.y1504_c00001{bottom:254.345333pt;}
.y118c_c00001{bottom:254.345725pt;}
.y19a9_c00001{bottom:254.399341pt;}
.y16da_c00001{bottom:254.442341pt;}
.y18c0_c00001{bottom:254.489019pt;}
.y10cf_c00001{bottom:254.584000pt;}
.y17d5_c00001{bottom:254.635752pt;}
.ye56_c00001{bottom:254.648395pt;}
.y886_c00001{bottom:254.652000pt;}
.y1503_c00001{bottom:254.654667pt;}
.y11a_c00001{bottom:254.692000pt;}
.y12ac_c00001{bottom:254.784000pt;}
.y1236_c00001{bottom:254.881333pt;}
.y15de_c00001{bottom:255.091572pt;}
.y17d6_c00001{bottom:255.170880pt;}
.yd6c_c00001{bottom:255.173000pt;}
.yf42_c00001{bottom:255.249120pt;}
.y1502_c00001{bottom:255.266667pt;}
.y682_c00001{bottom:255.288229pt;}
.y1414_c00001{bottom:255.338157pt;}
.y885_c00001{bottom:255.380000pt;}
.y18bf_c00001{bottom:255.435200pt;}
.y102d_c00001{bottom:255.487224pt;}
.y16d9_c00001{bottom:255.585040pt;}
.y1a99_c00001{bottom:255.602667pt;}
.y17d7_c00001{bottom:255.609589pt;}
.yf43_c00001{bottom:255.640664pt;}
.y1501_c00001{bottom:255.642667pt;}
.y1101_c00001{bottom:255.684000pt;}
.y884_c00001{bottom:255.718667pt;}
.y4aa_c00001{bottom:255.733560pt;}
.y683_c00001{bottom:255.826821pt;}
.y19aa_c00001{bottom:255.900869pt;}
.y15df_c00001{bottom:255.935083pt;}
.ye55_c00001{bottom:255.949020pt;}
.y16d8_c00001{bottom:256.072763pt;}
.y118d_c00001{bottom:256.119832pt;}
.y1a9a_c00001{bottom:256.204144pt;}
.yd6d_c00001{bottom:256.220804pt;}
.y59e_c00001{bottom:256.280833pt;}
.y1cb6_c00001{bottom:256.288000pt;}
.y684_c00001{bottom:256.291365pt;}
.y1415_c00001{bottom:256.323317pt;}
.y18be_c00001{bottom:256.362427pt;}
.y1500_c00001{bottom:256.417333pt;}
.y883_c00001{bottom:256.466667pt;}
.y1a9b_c00001{bottom:256.496483pt;}
.y1416_c00001{bottom:256.584179pt;}
.yd6e_c00001{bottom:256.609241pt;}
.y59d_c00001{bottom:256.623667pt;}
.yf44_c00001{bottom:256.727349pt;}
.y16d7_c00001{bottom:256.731061pt;}
.y1a9c_c00001{bottom:256.755277pt;}
.y118e_c00001{bottom:256.795525pt;}
.ye54_c00001{bottom:256.797289pt;}
.y14ff_c00001{bottom:256.801333pt;}
.y4ab_c00001{bottom:256.818749pt;}
.y1417_c00001{bottom:256.851992pt;}
.y17d8_c00001{bottom:256.871333pt;}
.y1366_c00001{bottom:256.986667pt;}
.y18bd_c00001{bottom:257.041709pt;}
.yb82_c00001{bottom:257.180000pt;}
.y882_c00001{bottom:257.248000pt;}
.y18bc_c00001{bottom:257.256952pt;}
.y17d9_c00001{bottom:257.272643pt;}
.y19ab_c00001{bottom:257.337552pt;}
.y59c_c00001{bottom:257.490733pt;}
.y1386_c00001{bottom:257.520000pt;}
.y881_c00001{bottom:257.525333pt;}
.ye53_c00001{bottom:257.540560pt;}
.y16d6_c00001{bottom:257.633072pt;}
.y17da_c00001{bottom:257.719360pt;}
.y685_c00001{bottom:257.762453pt;}
.y118f_c00001{bottom:257.793435pt;}
.y15e0_c00001{bottom:257.873988pt;}
.y4ac_c00001{bottom:257.895235pt;}
.y1a9d_c00001{bottom:257.917912pt;}
.ye52_c00001{bottom:257.970455pt;}
.y18bb_c00001{bottom:257.989763pt;}
.yf45_c00001{bottom:258.008203pt;}
.y7af_c00001{bottom:258.070333pt;}
.y686_c00001{bottom:258.075691pt;}
.y1190_c00001{bottom:258.177285pt;}
.y132e_c00001{bottom:258.265333pt;}
.y102c_c00001{bottom:258.471004pt;}
.y15e1_c00001{bottom:258.482344pt;}
.y59b_c00001{bottom:258.622700pt;}
.y1191_c00001{bottom:258.677280pt;}
.y4ad_c00001{bottom:258.691288pt;}
.y687_c00001{bottom:258.912693pt;}
.y16d5_c00001{bottom:258.946347pt;}
.y1a5a_c00001{bottom:259.349333pt;}
.yf46_c00001{bottom:259.410637pt;}
.y1b40_c00001{bottom:259.438667pt;}
.y1192_c00001{bottom:259.547672pt;}
.y16d4_c00001{bottom:259.648288pt;}
.y688_c00001{bottom:259.774437pt;}
.y3b0_c00001{bottom:259.776131pt;}
.y15e2_c00001{bottom:259.830345pt;}
.yab5_c00001{bottom:259.833977pt;}
.y7b0_c00001{bottom:259.875480pt;}
.yf47_c00001{bottom:259.962301pt;}
.y689_c00001{bottom:260.016149pt;}
.y59a_c00001{bottom:260.030300pt;}
.y3af_c00001{bottom:260.030719pt;}
.y1b05_c00001{bottom:260.134667pt;}
.y93d_c00001{bottom:260.214969pt;}
.y1bf6_c00001{bottom:260.252000pt;}
.y1b41_c00001{bottom:260.350667pt;}
.y599_c00001{bottom:260.373433pt;}
.y7b1_c00001{bottom:260.377111pt;}
.y68a_c00001{bottom:260.455243pt;}
.yab6_c00001{bottom:260.479555pt;}
.y598_c00001{bottom:260.626567pt;}
.y3ae_c00001{bottom:260.709728pt;}
.y102b_c00001{bottom:260.722420pt;}
.y3ad_c00001{bottom:260.853827pt;}
.y4ae_c00001{bottom:261.108688pt;}
.y93e_c00001{bottom:261.123929pt;}
.y15e3_c00001{bottom:261.159479pt;}
.y1b42_c00001{bottom:261.164000pt;}
.y4af_c00001{bottom:261.358611pt;}
.y1d34_c00001{bottom:261.360224pt;}
.y597_c00001{bottom:261.361467pt;}
.y3ac_c00001{bottom:261.478083pt;}
.y1ba0_c00001{bottom:261.500000pt;}
.yab7_c00001{bottom:261.744433pt;}
.y7b2_c00001{bottom:261.756041pt;}
.y1d35_c00001{bottom:261.896555pt;}
.y1b43_c00001{bottom:261.957333pt;}
.y130c_c00001{bottom:262.057333pt;}
.y1d36_c00001{bottom:262.141931pt;}
.y7b3_c00001{bottom:262.177980pt;}
.y3ab_c00001{bottom:262.204748pt;}
.y1a3_c00001{bottom:262.311653pt;}
.y3aa_c00001{bottom:262.507769pt;}
.y102a_c00001{bottom:262.592604pt;}
.yab8_c00001{bottom:262.664173pt;}
.y1b44_c00001{bottom:262.684000pt;}
.y92_c00001{bottom:262.805333pt;}
.y93f_c00001{bottom:262.838033pt;}
.y1d37_c00001{bottom:262.955125pt;}
.y1a4_c00001{bottom:263.006012pt;}
.yab9_c00001{bottom:263.019792pt;}
.y3a9_c00001{bottom:263.028999pt;}
.y93_c00001{bottom:263.138667pt;}
.y1029_c00001{bottom:263.151624pt;}
.ya17_c00001{bottom:263.169333pt;}
.y7b4_c00001{bottom:263.216437pt;}
.y1a5_c00001{bottom:263.325755pt;}
.ya16_c00001{bottom:263.366667pt;}
.y7b5_c00001{bottom:263.458133pt;}
.y94_c00001{bottom:263.469333pt;}
.y940_c00001{bottom:263.522057pt;}
.yaba_c00001{bottom:263.638668pt;}
.y1a6_c00001{bottom:263.641840pt;}
.y95_c00001{bottom:263.678667pt;}
.y1d65_c00001{bottom:263.684000pt;}
.y7b6_c00001{bottom:263.824083pt;}
.ya15_c00001{bottom:263.860000pt;}
.yabb_c00001{bottom:264.014181pt;}
.y1a7_c00001{bottom:264.250508pt;}
.y1d38_c00001{bottom:264.264907pt;}
.y96_c00001{bottom:264.489333pt;}
.y1d39_c00001{bottom:264.577611pt;}
.ya14_c00001{bottom:264.589333pt;}
.y97_c00001{bottom:264.742667pt;}
.ya13_c00001{bottom:264.770667pt;}
.y2a4_c00001{bottom:264.959364pt;}
.y1a8_c00001{bottom:265.027384pt;}
.y2a5_c00001{bottom:265.193929pt;}
.yabc_c00001{bottom:265.231111pt;}
.ya12_c00001{bottom:265.441333pt;}
.y1a9_c00001{bottom:265.467723pt;}
.y98_c00001{bottom:265.497333pt;}
.y4a0_c00001{bottom:265.705217pt;}
.yabd_c00001{bottom:265.723617pt;}
.y941_c00001{bottom:265.724397pt;}
.y1257_c00001{bottom:265.857333pt;}
.y2a6_c00001{bottom:265.909085pt;}
.y99_c00001{bottom:265.930667pt;}
.ycb7_c00001{bottom:265.985333pt;}
.yc01_c00001{bottom:266.116003pt;}
.y2a7_c00001{bottom:266.270105pt;}
.y4a1_c00001{bottom:266.731301pt;}
.yc90_c00001{bottom:266.773333pt;}
.yd60_c00001{bottom:266.888000pt;}
.y2a8_c00001{bottom:267.019989pt;}
.yc00_c00001{bottom:267.083936pt;}
.y1406_c00001{bottom:267.290779pt;}
.y17ca_c00001{bottom:267.361351pt;}
.ybff_c00001{bottom:267.562013pt;}
.ye51_c00001{bottom:267.737475pt;}
.y17cb_c00001{bottom:267.878433pt;}
.y2a9_c00001{bottom:267.879893pt;}
.ybfe_c00001{bottom:267.879997pt;}
.y199f_c00001{bottom:268.045035pt;}
.y1285_c00001{bottom:268.082667pt;}
.y942_c00001{bottom:268.180241pt;}
.y1407_c00001{bottom:268.210565pt;}
.y14fe_c00001{bottom:268.236000pt;}
.y17cc_c00001{bottom:268.264091pt;}
.y2aa_c00001{bottom:268.367875pt;}
.ycd8_c00001{bottom:268.477333pt;}
.yd61_c00001{bottom:268.485896pt;}
.y14fd_c00001{bottom:268.498667pt;}
.y1408_c00001{bottom:268.644549pt;}
.y17cd_c00001{bottom:268.670832pt;}
.y26_c00001{bottom:268.738667pt;}
.y18ba_c00001{bottom:268.748019pt;}
.y19a0_c00001{bottom:268.778059pt;}
.yd62_c00001{bottom:268.806440pt;}
.y880_c00001{bottom:268.880000pt;}
.y14fc_c00001{bottom:268.886667pt;}
.y120e_c00001{bottom:268.922667pt;}
.yf3a_c00001{bottom:268.968971pt;}
.ybfd_c00001{bottom:269.027669pt;}
.y12a5_c00001{bottom:269.049333pt;}
.y14fb_c00001{bottom:269.057333pt;}
.y943_c00001{bottom:269.134573pt;}
.y16d3_c00001{bottom:269.189595pt;}
.yd63_c00001{bottom:269.208596pt;}
.y1185_c00001{bottom:269.230584pt;}
.ye50_c00001{bottom:269.249065pt;}
.y87f_c00001{bottom:269.350667pt;}
.y14fa_c00001{bottom:269.438667pt;}
.y19a1_c00001{bottom:269.472253pt;}
.y18b9_c00001{bottom:269.527957pt;}
.yf3b_c00001{bottom:269.531605pt;}
.y1028_c00001{bottom:269.634280pt;}
.y17ce_c00001{bottom:269.637605pt;}
.y87e_c00001{bottom:269.658667pt;}
.y10ce_c00001{bottom:269.702667pt;}
.y19a2_c00001{bottom:269.719147pt;}
.y119_c00001{bottom:269.728000pt;}
.y1409_c00001{bottom:269.767139pt;}
.y1235_c00001{bottom:269.816000pt;}
.y1186_c00001{bottom:269.856035pt;}
.y18b8_c00001{bottom:269.919144pt;}
.y155b_c00001{bottom:270.000000pt;}
.y4a2_c00001{bottom:270.015371pt;}
.y596_c00001{bottom:270.074433pt;}
.y140a_c00001{bottom:270.075589pt;}
.yd64_c00001{bottom:270.076232pt;}
.y19a3_c00001{bottom:270.147584pt;}
.y14f9_c00001{bottom:270.152000pt;}
.y679_c00001{bottom:270.174955pt;}
.y87d_c00001{bottom:270.326667pt;}
.y1027_c00001{bottom:270.328568pt;}
.y1187_c00001{bottom:270.335520pt;}
.yd65_c00001{bottom:270.388748pt;}
.y67a_c00001{bottom:270.447291pt;}
.y15d6_c00001{bottom:270.460965pt;}
.y140b_c00001{bottom:270.467237pt;}
.y14f8_c00001{bottom:270.482667pt;}
.y1100_c00001{bottom:270.514667pt;}
.y595_c00001{bottom:270.590133pt;}
.y18b7_c00001{bottom:270.598619pt;}
.ye4f_c00001{bottom:270.725127pt;}
.y14f7_c00001{bottom:270.738667pt;}
.y16d2_c00001{bottom:270.823147pt;}
.y4a3_c00001{bottom:270.875285pt;}
.y17cf_c00001{bottom:270.879112pt;}
.y87c_c00001{bottom:270.934667pt;}
.y19a4_c00001{bottom:270.991784pt;}
.y87b_c00001{bottom:271.128000pt;}
.y16d1_c00001{bottom:271.146661pt;}
.ye4e_c00001{bottom:271.235709pt;}
.y14f6_c00001{bottom:271.289333pt;}
.y594_c00001{bottom:271.456867pt;}
.y140c_c00001{bottom:271.460219pt;}
.y1026_c00001{bottom:271.468260pt;}
.y1c26_c00001{bottom:271.508000pt;}
.y1ca5_c00001{bottom:271.597333pt;}
.y18b6_c00001{bottom:271.670205pt;}
.y14f5_c00001{bottom:271.681333pt;}
.y17d0_c00001{bottom:271.708204pt;}
.y15d7_c00001{bottom:271.743508pt;}
.yf3c_c00001{bottom:271.798024pt;}
.y87a_c00001{bottom:271.924000pt;}
.y16d0_c00001{bottom:271.949413pt;}
.y18b5_c00001{bottom:271.954125pt;}
.y1cb5_c00001{bottom:271.956000pt;}
.y67b_c00001{bottom:271.969456pt;}
.ye4d_c00001{bottom:272.010692pt;}
.y140d_c00001{bottom:272.044251pt;}
.y15d8_c00001{bottom:272.052408pt;}
.y1025_c00001{bottom:272.134056pt;}
.y18b4_c00001{bottom:272.194347pt;}
.y17d1_c00001{bottom:272.198897pt;}
.y1188_c00001{bottom:272.245781pt;}
.ye4c_c00001{bottom:272.303636pt;}
.y1365_c00001{bottom:272.320000pt;}
.y67c_c00001{bottom:272.371285pt;}
.yf3d_c00001{bottom:272.377144pt;}
.y140e_c00001{bottom:272.398504pt;}
.y1385_c00001{bottom:272.400000pt;}
.y19a5_c00001{bottom:272.453973pt;}
.y1a95_c00001{bottom:272.687767pt;}
.y1a96_c00001{bottom:272.688067pt;}
.y1a97_c00001{bottom:272.688273pt;}
.y1a94_c00001{bottom:272.688340pt;}
.y1a98_c00001{bottom:272.688667pt;}
.y1a93_c00001{bottom:272.688893pt;}
.yb81_c00001{bottom:272.722667pt;}
.yd66_c00001{bottom:272.766908pt;}
.y16cf_c00001{bottom:272.787493pt;}
.y18b3_c00001{bottom:272.872227pt;}
.y19a6_c00001{bottom:272.943507pt;}
.yf3e_c00001{bottom:273.027701pt;}
.y16ce_c00001{bottom:273.183493pt;}
.y7a8_c00001{bottom:273.191272pt;}
.y593_c00001{bottom:273.197067pt;}
.yd67_c00001{bottom:273.224000pt;}
.y15d9_c00001{bottom:273.266857pt;}
.y1024_c00001{bottom:273.311184pt;}
.ye4b_c00001{bottom:273.343593pt;}
.y132d_c00001{bottom:273.360000pt;}
.y67d_c00001{bottom:273.367691pt;}
.y7a9_c00001{bottom:273.603871pt;}
.yf3f_c00001{bottom:273.673352pt;}
.y16cd_c00001{bottom:273.695707pt;}
.y67e_c00001{bottom:273.696587pt;}
.y4a4_c00001{bottom:273.764836pt;}
.y15da_c00001{bottom:273.806335pt;}
.y1189_c00001{bottom:273.824464pt;}
.y155a_c00001{bottom:273.840000pt;}
.y1bef_c00001{bottom:273.841333pt;}
.y592_c00001{bottom:273.893733pt;}
.y1bf0_c00001{bottom:274.013333pt;}
.y1023_c00001{bottom:274.078804pt;}
.y118a_c00001{bottom:274.228157pt;}
.y67f_c00001{bottom:274.371237pt;}
.y3a8_c00001{bottom:274.510621pt;}
.y1b39_c00001{bottom:274.558667pt;}
.y4a5_c00001{bottom:274.614889pt;}
.y1bf1_c00001{bottom:274.686667pt;}
.y1a59_c00001{bottom:274.712000pt;}
.y3a7_c00001{bottom:274.745435pt;}
.y16cc_c00001{bottom:274.777536pt;}
.y591_c00001{bottom:274.787767pt;}
.y680_c00001{bottom:274.843760pt;}
.y1bf2_c00001{bottom:274.929333pt;}
.y118b_c00001{bottom:275.011605pt;}
.y29c_c00001{bottom:275.052327pt;}
.y936_c00001{bottom:275.093977pt;}
.y1b3a_c00001{bottom:275.116000pt;}
.y3a6_c00001{bottom:275.167497pt;}
.yf40_c00001{bottom:275.204845pt;}
.y1bf3_c00001{bottom:275.217333pt;}
.y1b04_c00001{bottom:275.305333pt;}
.y1b3b_c00001{bottom:275.314667pt;}
.y15db_c00001{bottom:275.322792pt;}
.y681_c00001{bottom:275.344699pt;}
.y4a6_c00001{bottom:275.391053pt;}
.y7aa_c00001{bottom:275.421100pt;}
.y1bf4_c00001{bottom:275.436000pt;}
.y3a5_c00001{bottom:275.487013pt;}
.y590_c00001{bottom:275.567967pt;}
.y15dc_c00001{bottom:275.819843pt;}
.y1b3c_c00001{bottom:275.832000pt;}
.y7ab_c00001{bottom:276.155411pt;}
.yaae_c00001{bottom:276.164293pt;}
.y1022_c00001{bottom:276.194352pt;}
.y1d2c_c00001{bottom:276.242667pt;}
.y58f_c00001{bottom:276.246667pt;}
.y1b3d_c00001{bottom:276.320000pt;}
.y29d_c00001{bottom:276.395533pt;}
.y1bf5_c00001{bottom:276.405333pt;}
.y1b3e_c00001{bottom:276.536000pt;}
.y15dd_c00001{bottom:276.570668pt;}
.y1d2d_c00001{bottom:276.895509pt;}
.y3a4_c00001{bottom:276.934499pt;}
.y1b9f_c00001{bottom:276.936000pt;}
.y130b_c00001{bottom:276.984000pt;}
.y937_c00001{bottom:276.996169pt;}
.y1d2e_c00001{bottom:277.133867pt;}
.y1b3f_c00001{bottom:277.224000pt;}
.y29e_c00001{bottom:277.249156pt;}
.y1021_c00001{bottom:277.367080pt;}
.yaaf_c00001{bottom:277.391160pt;}
.y3a3_c00001{bottom:277.848152pt;}
.yab0_c00001{bottom:277.932724pt;}
.y3a2_c00001{bottom:278.013701pt;}
.y1d2f_c00001{bottom:278.063083pt;}
.y8b_c00001{bottom:278.162667pt;}
.y7ac_c00001{bottom:278.198029pt;}
.y1020_c00001{bottom:278.257668pt;}
.y1d30_c00001{bottom:278.347264pt;}
.y3a1_c00001{bottom:278.389799pt;}
.y8c_c00001{bottom:278.508000pt;}
.y1d31_c00001{bottom:278.603584pt;}
.y1a0_c00001{bottom:278.693521pt;}
.y1a1_c00001{bottom:278.693576pt;}
.y1a2_c00001{bottom:278.694048pt;}
.ya11_c00001{bottom:278.750667pt;}
.y8d_c00001{bottom:278.825333pt;}
.y29f_c00001{bottom:278.841173pt;}
.y1d64_c00001{bottom:279.064000pt;}
.y1d32_c00001{bottom:279.111445pt;}
.yab1_c00001{bottom:279.326725pt;}
.y938_c00001{bottom:279.350393pt;}
.y8e_c00001{bottom:279.381333pt;}
.y2a0_c00001{bottom:279.384821pt;}
.y1d33_c00001{bottom:279.430251pt;}
.y8f_c00001{bottom:279.678667pt;}
.yab2_c00001{bottom:279.684623pt;}
.y2a1_c00001{bottom:279.863388pt;}
.y7ad_c00001{bottom:280.003164pt;}
.y939_c00001{bottom:280.053785pt;}
.ybfc_c00001{bottom:280.309637pt;}
.y93a_c00001{bottom:280.482553pt;}
.y90_c00001{bottom:280.500000pt;}
.y1256_c00001{bottom:280.582667pt;}
.y91_c00001{bottom:280.696000pt;}
.y7ae_c00001{bottom:280.905713pt;}
.y499_c00001{bottom:281.303365pt;}
.yab3_c00001{bottom:281.365657pt;}
.ybfb_c00001{bottom:281.468539pt;}
.yd57_c00001{bottom:281.711736pt;}
.yab4_c00001{bottom:281.763269pt;}
.yc8f_c00001{bottom:281.786667pt;}
.yd58_c00001{bottom:281.877339pt;}
.y2a2_c00001{bottom:281.909692pt;}
.ybfa_c00001{bottom:282.131149pt;}
.y13fe_c00001{bottom:282.178085pt;}
.ycb6_c00001{bottom:282.292000pt;}
.ye4a_c00001{bottom:282.551641pt;}
.y1cd8_c00001{bottom:282.590667pt;}
.y2a3_c00001{bottom:282.629868pt;}
.y93b_c00001{bottom:282.630905pt;}
.ybf9_c00001{bottom:282.658763pt;}
.y49a_c00001{bottom:282.679501pt;}
.y17c3_c00001{bottom:282.724000pt;}
.ye49_c00001{bottom:282.970053pt;}
.y13ff_c00001{bottom:282.978813pt;}
.y16cb_c00001{bottom:283.072197pt;}
.y1998_c00001{bottom:283.169731pt;}
.ybf8_c00001{bottom:283.219827pt;}
.yd59_c00001{bottom:283.317339pt;}
.y17c4_c00001{bottom:283.452947pt;}
.ye48_c00001{bottom:283.510849pt;}
.y1400_c00001{bottom:283.544221pt;}
.y49b_c00001{bottom:283.557995pt;}
.y12a4_c00001{bottom:283.592000pt;}
.y16ca_c00001{bottom:283.596517pt;}
.y93c_c00001{bottom:283.649209pt;}
.ycd7_c00001{bottom:283.656000pt;}
.y14f4_c00001{bottom:283.676000pt;}
.yd5a_c00001{bottom:283.725040pt;}
.y879_c00001{bottom:283.829333pt;}
.ybf7_c00001{bottom:283.908515pt;}
.y15cc_c00001{bottom:283.911159pt;}
.y49c_c00001{bottom:284.044343pt;}
.y120d_c00001{bottom:284.062667pt;}
.y1284_c00001{bottom:284.082667pt;}
.y1999_c00001{bottom:284.097416pt;}
.y113_c00001{bottom:284.161333pt;}
.y16c9_c00001{bottom:284.248251pt;}
.y18b2_c00001{bottom:284.250709pt;}
.y25_c00001{bottom:284.341333pt;}
.y199a_c00001{bottom:284.437336pt;}
.y17c5_c00001{bottom:284.457065pt;}
.yf33_c00001{bottom:284.573245pt;}
.yd5b_c00001{bottom:284.584944pt;}
.y14f3_c00001{bottom:284.602667pt;}
.y18b1_c00001{bottom:284.622520pt;}
.y878_c00001{bottom:284.629333pt;}
.y114_c00001{bottom:284.670667pt;}
.y1401_c00001{bottom:284.685005pt;}
.y199b_c00001{bottom:284.749899pt;}
.y14f2_c00001{bottom:284.804000pt;}
.y58e_c00001{bottom:284.835033pt;}
.y17c6_c00001{bottom:284.899064pt;}
.ye47_c00001{bottom:284.907007pt;}
.y16c8_c00001{bottom:284.938971pt;}
.yd5c_c00001{bottom:284.948757pt;}
.y10cd_c00001{bottom:284.984000pt;}
.y115_c00001{bottom:285.062667pt;}
.y1234_c00001{bottom:285.069333pt;}
.y117e_c00001{bottom:285.073120pt;}
.y14f1_c00001{bottom:285.162667pt;}
.yf34_c00001{bottom:285.166435pt;}
.y101f_c00001{bottom:285.301884pt;}
.y18b0_c00001{bottom:285.334307pt;}
.y15cd_c00001{bottom:285.400937pt;}
.y17c7_c00001{bottom:285.403776pt;}
.yd5d_c00001{bottom:285.521299pt;}
.y18af_c00001{bottom:285.563157pt;}
.y877_c00001{bottom:285.638667pt;}
.y1402_c00001{bottom:285.709768pt;}
.y15ce_c00001{bottom:285.747189pt;}
.y10ff_c00001{bottom:285.790667pt;}
.y14f0_c00001{bottom:285.798667pt;}
.y876_c00001{bottom:285.874667pt;}
.y101e_c00001{bottom:285.938648pt;}
.yd5e_c00001{bottom:285.947936pt;}
.y117f_c00001{bottom:285.972205pt;}
.ye46_c00001{bottom:285.973841pt;}
.y670_c00001{bottom:286.021163pt;}
.y116_c00001{bottom:286.045333pt;}
.y875_c00001{bottom:286.074667pt;}
.y58d_c00001{bottom:286.086100pt;}
.y16c7_c00001{bottom:286.092576pt;}
.y199c_c00001{bottom:286.108461pt;}
.y49d_c00001{bottom:286.149227pt;}
.y671_c00001{bottom:286.195744pt;}
.y15cf_c00001{bottom:286.197964pt;}
.y18ae_c00001{bottom:286.329504pt;}
.y117_c00001{bottom:286.353333pt;}
.yf35_c00001{bottom:286.392651pt;}
.ye45_c00001{bottom:286.397400pt;}
.y1364_c00001{bottom:286.426667pt;}
.y14ef_c00001{bottom:286.561333pt;}
.y874_c00001{bottom:286.601333pt;}
.y16c6_c00001{bottom:286.623765pt;}
.y672_c00001{bottom:286.633504pt;}
.y101d_c00001{bottom:286.691256pt;}
.y58c_c00001{bottom:286.713067pt;}
.y17c8_c00001{bottom:286.794816pt;}
.yd5f_c00001{bottom:286.813048pt;}
.y1cb4_c00001{bottom:286.838667pt;}
.y1403_c00001{bottom:286.856811pt;}
.y49e_c00001{bottom:286.999353pt;}
.y1180_c00001{bottom:287.030571pt;}
.y118_c00001{bottom:287.053333pt;}
.y18ad_c00001{bottom:287.080264pt;}
.y873_c00001{bottom:287.086667pt;}
.y17c9_c00001{bottom:287.175849pt;}
.ye44_c00001{bottom:287.190129pt;}
.y199d_c00001{bottom:287.292635pt;}
.y673_c00001{bottom:287.309440pt;}
.y16c5_c00001{bottom:287.350000pt;}
.y1384_c00001{bottom:287.412000pt;}
.yf36_c00001{bottom:287.474739pt;}
.ye43_c00001{bottom:287.547060pt;}
.y15d0_c00001{bottom:287.607328pt;}
.y1404_c00001{bottom:287.611931pt;}
.y1a92_c00001{bottom:287.646467pt;}
.y1a91_c00001{bottom:287.646680pt;}
.y1a90_c00001{bottom:287.647233pt;}
.y1a8f_c00001{bottom:287.647673pt;}
.y1a8e_c00001{bottom:287.647773pt;}
.y1a8d_c00001{bottom:287.648100pt;}
.y18ac_c00001{bottom:287.736877pt;}
.y872_c00001{bottom:287.764000pt;}
.yb80_c00001{bottom:287.792000pt;}
.y199e_c00001{bottom:287.820189pt;}
.y674_c00001{bottom:287.874373pt;}
.y1405_c00001{bottom:288.024325pt;}
.y58b_c00001{bottom:288.030267pt;}
.y1181_c00001{bottom:288.094883pt;}
.y18ab_c00001{bottom:288.154117pt;}
.ye42_c00001{bottom:288.219744pt;}
.y15d1_c00001{bottom:288.238028pt;}
.y132c_c00001{bottom:288.240000pt;}
.y675_c00001{bottom:288.264875pt;}
.yf37_c00001{bottom:288.419112pt;}
.y18aa_c00001{bottom:288.475723pt;}
.y58a_c00001{bottom:288.552267pt;}
.yf38_c00001{bottom:288.772117pt;}
.y16c4_c00001{bottom:288.984075pt;}
.y101c_c00001{bottom:289.017340pt;}
.y7a2_c00001{bottom:289.020456pt;}
.y1182_c00001{bottom:289.328027pt;}
.y1b33_c00001{bottom:289.440000pt;}
.yf39_c00001{bottom:289.512485pt;}
.y676_c00001{bottom:289.543563pt;}
.y16c3_c00001{bottom:289.661168pt;}
.y15d2_c00001{bottom:289.707997pt;}
.y7a3_c00001{bottom:289.814691pt;}
.y1b34_c00001{bottom:289.824000pt;}
.y49f_c00001{bottom:289.843764pt;}
.y1183_c00001{bottom:289.849347pt;}
.y1ca4_c00001{bottom:289.874667pt;}
.y1a58_c00001{bottom:290.062667pt;}
.y1c25_c00001{bottom:290.137333pt;}
.y589_c00001{bottom:290.142667pt;}
.y677_c00001{bottom:290.156491pt;}
.y1184_c00001{bottom:290.207088pt;}
.y15d3_c00001{bottom:290.218344pt;}
.y101b_c00001{bottom:290.220672pt;}
.y7a4_c00001{bottom:290.239249pt;}
.y1b03_c00001{bottom:290.277333pt;}
.y1bee_c00001{bottom:290.281333pt;}
.y92c_c00001{bottom:290.447533pt;}
.y3a0_c00001{bottom:290.477367pt;}
.y1b35_c00001{bottom:290.485333pt;}
.y588_c00001{bottom:290.646967pt;}
.y39f_c00001{bottom:290.682421pt;}
.yaa7_c00001{bottom:290.807033pt;}
.y1b36_c00001{bottom:291.074667pt;}
.y678_c00001{bottom:291.091413pt;}
.y15d4_c00001{bottom:291.193891pt;}
.yaa8_c00001{bottom:291.235977pt;}
.y1b37_c00001{bottom:291.326667pt;}
.y7a5_c00001{bottom:291.446549pt;}
.y101a_c00001{bottom:291.453020pt;}
.y92d_c00001{bottom:291.544625pt;}
.y15d5_c00001{bottom:291.559497pt;}
.y587_c00001{bottom:291.608000pt;}
.y39e_c00001{bottom:291.609684pt;}
.y1b38_c00001{bottom:291.697333pt;}
.y39d_c00001{bottom:291.790896pt;}
.y92e_c00001{bottom:292.191765pt;}
.y1b9e_c00001{bottom:292.261333pt;}
.yaa9_c00001{bottom:292.299724pt;}
.y39c_c00001{bottom:292.371821pt;}
.y39b_c00001{bottom:292.476475pt;}
.y130a_c00001{bottom:292.497333pt;}
.y7a6_c00001{bottom:292.920729pt;}
.y84_c00001{bottom:293.042667pt;}
.y39a_c00001{bottom:293.268599pt;}
.y196_c00001{bottom:293.952104pt;}
.y19d_c00001{bottom:293.952492pt;}
.y197_c00001{bottom:293.952567pt;}
.y19c_c00001{bottom:293.952803pt;}
.y198_c00001{bottom:293.952817pt;}
.y19a_c00001{bottom:293.952899pt;}
.y199_c00001{bottom:293.952943pt;}
.y19b_c00001{bottom:293.952997pt;}
.y19e_c00001{bottom:293.953017pt;}
.y19f_c00001{bottom:293.953080pt;}
.yaaa_c00001{bottom:293.987079pt;}
.y85_c00001{bottom:294.072000pt;}
.y92f_c00001{bottom:294.157197pt;}
.y86_c00001{bottom:294.437333pt;}
.ya10_c00001{bottom:294.441885pt;}
.y930_c00001{bottom:294.634885pt;}
.y87_c00001{bottom:294.700000pt;}
.y7a7_c00001{bottom:295.019299pt;}
.y294_c00001{bottom:295.205333pt;}
.y88_c00001{bottom:295.229333pt;}
.y931_c00001{bottom:295.275109pt;}
.ybf6_c00001{bottom:295.307637pt;}
.y89_c00001{bottom:295.454667pt;}
.y1255_c00001{bottom:295.594667pt;}
.yaab_c00001{bottom:295.664824pt;}
.yaac_c00001{bottom:296.087001pt;}
.y295_c00001{bottom:296.098587pt;}
.y932_c00001{bottom:296.136149pt;}
.ybf5_c00001{bottom:296.228477pt;}
.y8a_c00001{bottom:296.288000pt;}
.yaad_c00001{bottom:296.385493pt;}
.y490_c00001{bottom:296.421979pt;}
.ybf4_c00001{bottom:296.488253pt;}
.y296_c00001{bottom:296.732148pt;}
.yc8e_c00001{bottom:296.773333pt;}
.ye41_c00001{bottom:296.909403pt;}
.ycb5_c00001{bottom:296.937333pt;}
.y933_c00001{bottom:296.973197pt;}
.yd50_c00001{bottom:297.076077pt;}
.y13f6_c00001{bottom:297.302859pt;}
.y491_c00001{bottom:297.403697pt;}
.ybf3_c00001{bottom:297.532435pt;}
.y297_c00001{bottom:297.575419pt;}
.y17ba_c00001{bottom:297.845333pt;}
.y298_c00001{bottom:298.024047pt;}
.y1b_c00001{bottom:298.080000pt;}
.yd51_c00001{bottom:298.108699pt;}
.y492_c00001{bottom:298.170244pt;}
.y13f7_c00001{bottom:298.247552pt;}
.y14ee_c00001{bottom:298.280000pt;}
.y299_c00001{bottom:298.321789pt;}
.ybf2_c00001{bottom:298.338371pt;}
.y1c_c00001{bottom:298.349333pt;}
.ye40_c00001{bottom:298.394176pt;}
.y17bb_c00001{bottom:298.415779pt;}
.yd52_c00001{bottom:298.483557pt;}
.y1991_c00001{bottom:298.534213pt;}
.y1d_c00001{bottom:298.540000pt;}
.y1283_c00001{bottom:298.562667pt;}
.y14ed_c00001{bottom:298.569333pt;}
.ycd6_c00001{bottom:298.584000pt;}
.y13f8_c00001{bottom:298.667227pt;}
.y1e_c00001{bottom:298.698667pt;}
.y12a3_c00001{bottom:298.768000pt;}
.y10b_c00001{bottom:298.802667pt;}
.y10c7_c00001{bottom:298.805333pt;}
.ye3f_c00001{bottom:298.888920pt;}
.y16c2_c00001{bottom:298.925051pt;}
.ybf1_c00001{bottom:299.030027pt;}
.y14ec_c00001{bottom:299.097333pt;}
.y1019_c00001{bottom:299.110132pt;}
.y934_c00001{bottom:299.121549pt;}
.y493_c00001{bottom:299.122379pt;}
.yf2a_c00001{bottom:299.222051pt;}
.y29a_c00001{bottom:299.260035pt;}
.y1f_c00001{bottom:299.261333pt;}
.y18a9_c00001{bottom:299.271973pt;}
.y16c1_c00001{bottom:299.285472pt;}
.y14eb_c00001{bottom:299.402667pt;}
.y17bc_c00001{bottom:299.411939pt;}
.y20_c00001{bottom:299.412000pt;}
.y120c_c00001{bottom:299.458667pt;}
.y29b_c00001{bottom:299.493152pt;}
.y18a8_c00001{bottom:299.555797pt;}
.y10c8_c00001{bottom:299.597333pt;}
.y13f9_c00001{bottom:299.694243pt;}
.y1992_c00001{bottom:299.746149pt;}
.y935_c00001{bottom:299.760733pt;}
.yf2b_c00001{bottom:299.764896pt;}
.y21_c00001{bottom:299.805333pt;}
.y1018_c00001{bottom:299.885712pt;}
.y10c_c00001{bottom:299.937333pt;}
.y1175_c00001{bottom:299.958960pt;}
.y1993_c00001{bottom:299.971333pt;}
.y1233_c00001{bottom:299.977333pt;}
.y22_c00001{bottom:300.001333pt;}
.y10c9_c00001{bottom:300.029333pt;}
.yd53_c00001{bottom:300.038571pt;}
.y17bd_c00001{bottom:300.047709pt;}
.y13fa_c00001{bottom:300.080808pt;}
.y16c0_c00001{bottom:300.236261pt;}
.y10d_c00001{bottom:300.276000pt;}
.ye3e_c00001{bottom:300.276429pt;}
.y871_c00001{bottom:300.285333pt;}
.y14ea_c00001{bottom:300.364000pt;}
.y18a7_c00001{bottom:300.412429pt;}
.y10ca_c00001{bottom:300.449333pt;}
.y23_c00001{bottom:300.464000pt;}
.yd54_c00001{bottom:300.609968pt;}
.y1176_c00001{bottom:300.648691pt;}
.y14e9_c00001{bottom:300.676000pt;}
.y15c4_c00001{bottom:300.713915pt;}
.y1a85_c00001{bottom:300.722667pt;}
.y24_c00001{bottom:300.780000pt;}
.y870_c00001{bottom:300.813333pt;}
.y18a6_c00001{bottom:300.827245pt;}
.y10e_c00001{bottom:300.852000pt;}
.y16bf_c00001{bottom:300.891531pt;}
.y17be_c00001{bottom:300.895853pt;}
.y1177_c00001{bottom:300.970995pt;}
.y14e8_c00001{bottom:300.985333pt;}
.y86f_c00001{bottom:300.989333pt;}
.y10f_c00001{bottom:301.086667pt;}
.y1994_c00001{bottom:301.091149pt;}
.yf2c_c00001{bottom:301.094536pt;}
.y10cb_c00001{bottom:301.100000pt;}
.y10fe_c00001{bottom:301.174667pt;}
.y86e_c00001{bottom:301.200000pt;}
.y1a86_c00001{bottom:301.204207pt;}
.y15c5_c00001{bottom:301.265147pt;}
.y1995_c00001{bottom:301.325149pt;}
.y10cc_c00001{bottom:301.356000pt;}
.y17bf_c00001{bottom:301.357296pt;}
.y13fb_c00001{bottom:301.366147pt;}
.y1a87_c00001{bottom:301.439307pt;}
.y586_c00001{bottom:301.475300pt;}
.y1017_c00001{bottom:301.484156pt;}
.y110_c00001{bottom:301.526667pt;}
.y18a5_c00001{bottom:301.552885pt;}
.ye3d_c00001{bottom:301.556631pt;}
.yd55_c00001{bottom:301.666528pt;}
.y14e7_c00001{bottom:301.680000pt;}
.y17c0_c00001{bottom:301.711555pt;}
.yf2d_c00001{bottom:301.730323pt;}
.y111_c00001{bottom:301.745333pt;}
.y86d_c00001{bottom:301.793333pt;}
.y669_c00001{bottom:301.865547pt;}
.y16be_c00001{bottom:301.919813pt;}
.y1cb3_c00001{bottom:302.017333pt;}
.y1178_c00001{bottom:302.030651pt;}
.y86c_c00001{bottom:302.081333pt;}
.y1a88_c00001{bottom:302.140247pt;}
.yf2e_c00001{bottom:302.149061pt;}
.yd56_c00001{bottom:302.180293pt;}
.y585_c00001{bottom:302.198367pt;}
.y112_c00001{bottom:302.225333pt;}
.y494_c00001{bottom:302.310972pt;}
.y1179_c00001{bottom:302.317139pt;}
.y13fc_c00001{bottom:302.350659pt;}
.y1a89_c00001{bottom:302.472487pt;}
.y1996_c00001{bottom:302.514085pt;}
.y18a4_c00001{bottom:302.516557pt;}
.y66a_c00001{bottom:302.547931pt;}
.y16bd_c00001{bottom:302.574224pt;}
.y86b_c00001{bottom:302.605333pt;}
.y135b_c00001{bottom:302.641333pt;}
.y1383_c00001{bottom:302.662667pt;}
.y799_c00001{bottom:302.698188pt;}
.yb7f_c00001{bottom:302.721333pt;}
.yf2f_c00001{bottom:302.742139pt;}
.y15c6_c00001{bottom:302.748865pt;}
.y1a8a_c00001{bottom:302.749447pt;}
.y18a3_c00001{bottom:302.788837pt;}
.y66b_c00001{bottom:302.825536pt;}
.y17c1_c00001{bottom:302.849776pt;}
.y135c_c00001{bottom:302.917333pt;}
.y13fd_c00001{bottom:302.937320pt;}
.y79a_c00001{bottom:302.974072pt;}
.y66c_c00001{bottom:303.119717pt;}
.y86a_c00001{bottom:303.124000pt;}
.yf30_c00001{bottom:303.135779pt;}
.y584_c00001{bottom:303.281467pt;}
.y1997_c00001{bottom:303.304669pt;}
.ye3c_c00001{bottom:303.345040pt;}
.y135d_c00001{bottom:303.354667pt;}
.y18a2_c00001{bottom:303.357829pt;}
.y132b_c00001{bottom:303.360000pt;}
.y1016_c00001{bottom:303.381124pt;}
.y15c7_c00001{bottom:303.417056pt;}
.y17c2_c00001{bottom:303.446387pt;}
.y495_c00001{bottom:303.517323pt;}
.y1a8b_c00001{bottom:303.548027pt;}
.y117a_c00001{bottom:303.585480pt;}
.y135e_c00001{bottom:303.712000pt;}
.y16bc_c00001{bottom:303.852475pt;}
.y79b_c00001{bottom:303.867639pt;}
.y1a8c_c00001{bottom:303.891007pt;}
.y496_c00001{bottom:303.923873pt;}
.y135f_c00001{bottom:303.942667pt;}
.y117b_c00001{bottom:303.958021pt;}
.y66d_c00001{bottom:304.031157pt;}
.y1360_c00001{bottom:304.117333pt;}
.y1015_c00001{bottom:304.120608pt;}
.y79c_c00001{bottom:304.292245pt;}
.y16bb_c00001{bottom:304.308528pt;}
.y15c8_c00001{bottom:304.322791pt;}
.y583_c00001{bottom:304.372233pt;}
.yf31_c00001{bottom:304.372339pt;}
.y1361_c00001{bottom:304.549333pt;}
.y66e_c00001{bottom:304.554059pt;}
.y1b2d_c00001{bottom:304.560000pt;}
.y1362_c00001{bottom:304.700000pt;}
.y1b2e_c00001{bottom:304.797333pt;}
.y1a57_c00001{bottom:304.840000pt;}
.y582_c00001{bottom:305.001433pt;}
.y926_c00001{bottom:305.085909pt;}
.y117c_c00001{bottom:305.131728pt;}
.y1363_c00001{bottom:305.168000pt;}
.y497_c00001{bottom:305.195584pt;}
.y15c9_c00001{bottom:305.217345pt;}
.y399_c00001{bottom:305.242212pt;}
.y1b2f_c00001{bottom:305.302667pt;}
.y1bed_c00001{bottom:305.373333pt;}
.y79d_c00001{bottom:305.634072pt;}
.y66f_c00001{bottom:305.638373pt;}
.y117d_c00001{bottom:305.706576pt;}
.y398_c00001{bottom:305.783619pt;}
.yf32_c00001{bottom:305.785733pt;}
.y1b02_c00001{bottom:305.868000pt;}
.y498_c00001{bottom:305.883297pt;}
.y1b30_c00001{bottom:305.893333pt;}
.yaa0_c00001{bottom:305.932525pt;}
.y15ca_c00001{bottom:305.960057pt;}
.y397_c00001{bottom:306.106656pt;}
.y1b31_c00001{bottom:306.214667pt;}
.y1014_c00001{bottom:306.253524pt;}
.y79e_c00001{bottom:306.415141pt;}
.y581_c00001{bottom:306.420300pt;}
.yaa1_c00001{bottom:306.687127pt;}
.y1d93_c00001{bottom:306.720000pt;}
.y580_c00001{bottom:306.726667pt;}
.y1013_c00001{bottom:306.861464pt;}
.y1b32_c00001{bottom:307.141333pt;}
.y396_c00001{bottom:307.171199pt;}
.y1b9d_c00001{bottom:307.205333pt;}
.y927_c00001{bottom:307.256105pt;}
.y15cb_c00001{bottom:307.291189pt;}
.y1309_c00001{bottom:307.440000pt;}
.yaa2_c00001{bottom:307.566457pt;}
.y28a_c00001{bottom:307.668596pt;}
.y395_c00001{bottom:307.732108pt;}
.y1012_c00001{bottom:307.842364pt;}
.y79f_c00001{bottom:307.946461pt;}
.y394_c00001{bottom:308.022196pt;}
.y928_c00001{bottom:308.096817pt;}
.y7c_c00001{bottom:308.164000pt;}
.y1ca3_c00001{bottom:308.237333pt;}
.y704_c00001{bottom:308.250147pt;}
.y705_c00001{bottom:308.250364pt;}
.y702_c00001{bottom:308.250484pt;}
.y703_c00001{bottom:308.250540pt;}
.y706_c00001{bottom:308.250927pt;}
.y701_c00001{bottom:308.250957pt;}
.y707_c00001{bottom:308.251231pt;}
.y393_c00001{bottom:308.281271pt;}
.y1d2b_c00001{bottom:308.621333pt;}
.y392_c00001{bottom:308.630468pt;}
.y7d_c00001{bottom:308.632000pt;}
.y1c24_c00001{bottom:308.650667pt;}
.y7e_c00001{bottom:308.872000pt;}
.y193_c00001{bottom:308.960292pt;}
.y192_c00001{bottom:308.960415pt;}
.y195_c00001{bottom:308.960569pt;}
.y190_c00001{bottom:308.960591pt;}
.y194_c00001{bottom:308.960604pt;}
.y191_c00001{bottom:308.960699pt;}
.y18f_c00001{bottom:308.960875pt;}
.yaa3_c00001{bottom:308.995981pt;}
.y7f_c00001{bottom:309.158667pt;}
.y28b_c00001{bottom:309.170700pt;}
.y1011_c00001{bottom:309.212792pt;}
.y7a0_c00001{bottom:309.215193pt;}
.y28c_c00001{bottom:309.395483pt;}
.ya0d_c00001{bottom:309.475208pt;}
.ya08_c00001{bottom:309.475411pt;}
.ya0e_c00001{bottom:309.475584pt;}
.ya07_c00001{bottom:309.475621pt;}
.ya0c_c00001{bottom:309.475700pt;}
.ya09_c00001{bottom:309.475775pt;}
.ya0b_c00001{bottom:309.475777pt;}
.ya0f_c00001{bottom:309.475785pt;}
.ya0a_c00001{bottom:309.475816pt;}
.y28d_c00001{bottom:309.802369pt;}
.y80_c00001{bottom:309.804000pt;}
.y7a1_c00001{bottom:309.935233pt;}
.y81_c00001{bottom:310.060000pt;}
.ybf0_c00001{bottom:310.366008pt;}
.yaa4_c00001{bottom:310.561797pt;}
.y28e_c00001{bottom:310.564952pt;}
.y82_c00001{bottom:310.705333pt;}
.y28f_c00001{bottom:310.775829pt;}
.y929_c00001{bottom:310.952633pt;}
.y290_c00001{bottom:310.959417pt;}
.y489_c00001{bottom:311.068000pt;}
.ybef_c00001{bottom:311.101829pt;}
.y1254_c00001{bottom:311.108000pt;}
.yaa5_c00001{bottom:311.208645pt;}
.ycb4_c00001{bottom:311.257333pt;}
.ybee_c00001{bottom:311.339755pt;}
.y83_c00001{bottom:311.494667pt;}
.y92a_c00001{bottom:311.577653pt;}
.yd4a_c00001{bottom:311.960968pt;}
.y291_c00001{bottom:312.042483pt;}
.y13f0_c00001{bottom:312.188640pt;}
.yaa6_c00001{bottom:312.213904pt;}
.yc8d_c00001{bottom:312.265333pt;}
.y292_c00001{bottom:312.267937pt;}
.y293_c00001{bottom:312.644455pt;}
.ybed_c00001{bottom:312.671117pt;}
.y17b2_c00001{bottom:312.716573pt;}
.y1cd7_c00001{bottom:313.049333pt;}
.y16ba_c00001{bottom:313.145547pt;}
.y198b_c00001{bottom:313.179520pt;}
.yd4b_c00001{bottom:313.186339pt;}
.y17b3_c00001{bottom:313.242716pt;}
.ybec_c00001{bottom:313.245715pt;}
.y13f1_c00001{bottom:313.277125pt;}
.y14e6_c00001{bottom:313.385333pt;}
.y16b9_c00001{bottom:313.540464pt;}
.y14e5_c00001{bottom:313.584000pt;}
.ycd5_c00001{bottom:313.689333pt;}
.y14e4_c00001{bottom:313.705333pt;}
.ye3b_c00001{bottom:313.733196pt;}
.y12a2_c00001{bottom:313.780000pt;}
.y14e3_c00001{bottom:313.853333pt;}
.y1a_c00001{bottom:313.882667pt;}
.ybeb_c00001{bottom:313.910976pt;}
.y92b_c00001{bottom:314.086281pt;}
.yf21_c00001{bottom:314.105112pt;}
.y1282_c00001{bottom:314.110667pt;}
.y198c_c00001{bottom:314.267053pt;}
.y120b_c00001{bottom:314.328000pt;}
.y16b8_c00001{bottom:314.431803pt;}
.y17b4_c00001{bottom:314.531421pt;}
.yd4c_c00001{bottom:314.554211pt;}
.ye3a_c00001{bottom:314.613243pt;}
.y14e2_c00001{bottom:314.625333pt;}
.yf22_c00001{bottom:314.796923pt;}
.y14e1_c00001{bottom:314.826667pt;}
.y116e_c00001{bottom:314.845152pt;}
.y15bc_c00001{bottom:314.882239pt;}
.ye39_c00001{bottom:314.952736pt;}
.y16b7_c00001{bottom:314.956459pt;}
.y14e0_c00001{bottom:314.977333pt;}
.y10a_c00001{bottom:314.984000pt;}
.y1010_c00001{bottom:315.043620pt;}
.y13f2_c00001{bottom:315.067877pt;}
.y662_c00001{bottom:315.077029pt;}
.y1232_c00001{bottom:315.104000pt;}
.y116f_c00001{bottom:315.203704pt;}
.y10c6_c00001{bottom:315.214667pt;}
.y48a_c00001{bottom:315.252301pt;}
.yf23_c00001{bottom:315.338603pt;}
.y869_c00001{bottom:315.433333pt;}
.y100f_c00001{bottom:315.471232pt;}
.y17b5_c00001{bottom:315.489369pt;}
.y15bd_c00001{bottom:315.509957pt;}
.y18a1_c00001{bottom:315.510800pt;}
.y663_c00001{bottom:315.525680pt;}
.y48b_c00001{bottom:315.650768pt;}
.yd4d_c00001{bottom:315.693840pt;}
.y1170_c00001{bottom:315.723685pt;}
.y14df_c00001{bottom:315.750667pt;}
.y16b6_c00001{bottom:315.767013pt;}
.y17b6_c00001{bottom:315.829203pt;}
.y18a0_c00001{bottom:315.840723pt;}
.y198d_c00001{bottom:315.946504pt;}
.y1a7d_c00001{bottom:316.085333pt;}
.y189f_c00001{bottom:316.140301pt;}
.y868_c00001{bottom:316.193333pt;}
.y13f3_c00001{bottom:316.196493pt;}
.y16b5_c00001{bottom:316.285573pt;}
.yd4e_c00001{bottom:316.329024pt;}
.y10fd_c00001{bottom:316.536000pt;}
.y1af3_c00001{bottom:316.560000pt;}
.ye38_c00001{bottom:316.560145pt;}
.y1a7e_c00001{bottom:316.630667pt;}
.y135a_c00001{bottom:316.668000pt;}
.y867_c00001{bottom:316.720000pt;}
.y1171_c00001{bottom:316.776285pt;}
.y14de_c00001{bottom:316.798667pt;}
.y16b4_c00001{bottom:316.850112pt;}
.y1a7f_c00001{bottom:316.897333pt;}
.y100e_c00001{bottom:316.940372pt;}
.y17b7_c00001{bottom:316.947885pt;}
.ye37_c00001{bottom:317.001500pt;}
.y866_c00001{bottom:317.009333pt;}
.yf24_c00001{bottom:317.027859pt;}
.y15be_c00001{bottom:317.069964pt;}
.y16b3_c00001{bottom:317.141360pt;}
.y198e_c00001{bottom:317.145592pt;}
.y664_c00001{bottom:317.199088pt;}
.y865_c00001{bottom:317.208000pt;}
.y13f4_c00001{bottom:317.223787pt;}
.y57f_c00001{bottom:317.225032pt;}
.y1a80_c00001{bottom:317.285333pt;}
.y15bf_c00001{bottom:317.403384pt;}
.y48c_c00001{bottom:317.432688pt;}
.y57e_c00001{bottom:317.501339pt;}
.y665_c00001{bottom:317.529803pt;}
.ye36_c00001{bottom:317.545653pt;}
.yd4f_c00001{bottom:317.569531pt;}
.y189e_c00001{bottom:317.574243pt;}
.y100d_c00001{bottom:317.581988pt;}
.y13f5_c00001{bottom:317.607787pt;}
.y1a81_c00001{bottom:317.616000pt;}
.y1382_c00001{bottom:317.674667pt;}
.y864_c00001{bottom:317.710667pt;}
.yf25_c00001{bottom:317.750763pt;}
.y791_c00001{bottom:317.816517pt;}
.y863_c00001{bottom:317.833333pt;}
.y100c_c00001{bottom:317.983792pt;}
.y16b2_c00001{bottom:318.003717pt;}
.y862_c00001{bottom:318.004000pt;}
.y17b8_c00001{bottom:318.005025pt;}
.y189d_c00001{bottom:318.069493pt;}
.y48d_c00001{bottom:318.096551pt;}
.yf26_c00001{bottom:318.239181pt;}
.y1172_c00001{bottom:318.267251pt;}
.yb7e_c00001{bottom:318.322667pt;}
.y1a82_c00001{bottom:318.384000pt;}
.y57d_c00001{bottom:318.384447pt;}
.y198f_c00001{bottom:318.418101pt;}
.ye35_c00001{bottom:318.468857pt;}
.y16b1_c00001{bottom:318.528187pt;}
.y17b9_c00001{bottom:318.618311pt;}
.y15c0_c00001{bottom:318.621260pt;}
.y1a83_c00001{bottom:318.694667pt;}
.y132a_c00001{bottom:318.736000pt;}
.y1990_c00001{bottom:318.808968pt;}
.y57c_c00001{bottom:318.815160pt;}
.y189c_c00001{bottom:318.960501pt;}
.y666_c00001{bottom:319.014832pt;}
.yf27_c00001{bottom:319.075784pt;}
.y1a84_c00001{bottom:319.090667pt;}
.y792_c00001{bottom:319.127653pt;}
.y1be7_c00001{bottom:319.202667pt;}
.y1173_c00001{bottom:319.356395pt;}
.y100b_c00001{bottom:319.386892pt;}
.y1a56_c00001{bottom:319.412000pt;}
.y16b0_c00001{bottom:319.435691pt;}
.y793_c00001{bottom:319.544163pt;}
.yf28_c00001{bottom:319.640083pt;}
.y1b25_c00001{bottom:319.681333pt;}
.y920_c00001{bottom:319.724085pt;}
.y57b_c00001{bottom:319.786803pt;}
.y16af_c00001{bottom:319.915824pt;}
.y1b26_c00001{bottom:320.000000pt;}
.y1be8_c00001{bottom:320.057333pt;}
.y484_c00001{bottom:320.169333pt;}
.yf29_c00001{bottom:320.218541pt;}
.y100a_c00001{bottom:320.234812pt;}
.y15c1_c00001{bottom:320.266908pt;}
.y57a_c00001{bottom:320.348923pt;}
.y1be9_c00001{bottom:320.356000pt;}
.y48e_c00001{bottom:320.398427pt;}
.y1b01_c00001{bottom:320.400000pt;}
.y1174_c00001{bottom:320.400448pt;}
.y1b27_c00001{bottom:320.518667pt;}
.y579_c00001{bottom:320.588123pt;}
.y281_c00001{bottom:320.639705pt;}
.y391_c00001{bottom:320.706069pt;}
.y1b28_c00001{bottom:320.784000pt;}
.y794_c00001{bottom:320.810533pt;}
.ya98_c00001{bottom:320.816540pt;}
.y667_c00001{bottom:320.828112pt;}
.y15c2_c00001{bottom:320.948204pt;}
.y1bea_c00001{bottom:321.180000pt;}
.y48f_c00001{bottom:321.214280pt;}
.y668_c00001{bottom:321.242096pt;}
.y921_c00001{bottom:321.416381pt;}
.y15c3_c00001{bottom:321.442397pt;}
.ya99_c00001{bottom:321.583073pt;}
.y1b29_c00001{bottom:321.593333pt;}
.y390_c00001{bottom:321.729249pt;}
.y1b2a_c00001{bottom:321.774667pt;}
.y485_c00001{bottom:321.798469pt;}
.y578_c00001{bottom:321.845333pt;}
.y282_c00001{bottom:321.852088pt;}
.y1b9c_c00001{bottom:322.082667pt;}
.ya9a_c00001{bottom:322.097988pt;}
.y1308_c00001{bottom:322.189333pt;}
.y38f_c00001{bottom:322.222501pt;}
.y922_c00001{bottom:322.283933pt;}
.y1beb_c00001{bottom:322.304000pt;}
.y38e_c00001{bottom:322.506243pt;}
.y795_c00001{bottom:322.525252pt;}
.y1009_c00001{bottom:322.570804pt;}
.y1b2b_c00001{bottom:322.625333pt;}
.y486_c00001{bottom:322.725339pt;}
.y1bec_c00001{bottom:322.734667pt;}
.y1b2c_c00001{bottom:322.805333pt;}
.y38d_c00001{bottom:322.890113pt;}
.ya9b_c00001{bottom:322.910769pt;}
.y1008_c00001{bottom:323.027052pt;}
.y923_c00001{bottom:323.202041pt;}
.y186_c00001{bottom:323.274080pt;}
.y796_c00001{bottom:323.365552pt;}
.y283_c00001{bottom:323.507185pt;}
.y74_c00001{bottom:323.522667pt;}
.y38c_c00001{bottom:323.750959pt;}
.y187_c00001{bottom:323.778069pt;}
.y797_c00001{bottom:323.808711pt;}
.y487_c00001{bottom:324.017203pt;}
.y75_c00001{bottom:324.056000pt;}
.y1007_c00001{bottom:324.079724pt;}
.ya9c_c00001{bottom:324.124064pt;}
.y188_c00001{bottom:324.124105pt;}
.y189_c00001{bottom:324.253072pt;}
.y284_c00001{bottom:324.280875pt;}
.y76_c00001{bottom:324.282667pt;}
.y798_c00001{bottom:324.292900pt;}
.ya06_c00001{bottom:324.356932pt;}
.ya03_c00001{bottom:324.357045pt;}
.ya05_c00001{bottom:324.357317pt;}
.ya04_c00001{bottom:324.357608pt;}
.ya02_c00001{bottom:324.357644pt;}
.ya01_c00001{bottom:324.357973pt;}
.ya00_c00001{bottom:324.358439pt;}
.y9ff_c00001{bottom:324.358797pt;}
.y488_c00001{bottom:324.447333pt;}
.ya9d_c00001{bottom:324.449269pt;}
.y18a_c00001{bottom:324.488068pt;}
.y77_c00001{bottom:324.522667pt;}
.ya9e_c00001{bottom:324.890868pt;}
.y18b_c00001{bottom:324.958095pt;}
.y285_c00001{bottom:325.021665pt;}
.y18c_c00001{bottom:325.148120pt;}
.y78_c00001{bottom:325.190667pt;}
.y79_c00001{bottom:325.689333pt;}
.y924_c00001{bottom:325.712425pt;}
.y18d_c00001{bottom:325.794632pt;}
.ybea_c00001{bottom:325.812061pt;}
.y47e_c00001{bottom:325.942667pt;}
.y7a_c00001{bottom:325.957333pt;}
.y18e_c00001{bottom:326.000745pt;}
.y286_c00001{bottom:326.172020pt;}
.ycb3_c00001{bottom:326.269333pt;}
.ybe9_c00001{bottom:326.302379pt;}
.y7b_c00001{bottom:326.352000pt;}
.ya9f_c00001{bottom:326.488396pt;}
.y1253_c00001{bottom:326.509333pt;}
.ybe8_c00001{bottom:326.514149pt;}
.y6f9_c00001{bottom:326.641333pt;}
.y287_c00001{bottom:326.725159pt;}
.ybe7_c00001{bottom:326.845909pt;}
.y13e8_c00001{bottom:327.073648pt;}
.y47f_c00001{bottom:327.074288pt;}
.yd43_c00001{bottom:327.084661pt;}
.y6fa_c00001{bottom:327.101893pt;}
.y1ca2_c00001{bottom:327.122667pt;}
.yc8c_c00001{bottom:327.145333pt;}
.y288_c00001{bottom:327.212108pt;}
.ybe6_c00001{bottom:327.538253pt;}
.y6fb_c00001{bottom:327.577527pt;}
.y1168_c00001{bottom:327.818216pt;}
.y17aa_c00001{bottom:327.839785pt;}
.y6fc_c00001{bottom:327.873952pt;}
.ybe5_c00001{bottom:327.921547pt;}
.y1983_c00001{bottom:328.063235pt;}
.yd44_c00001{bottom:328.109304pt;}
.ybe4_c00001{bottom:328.119363pt;}
.y1169_c00001{bottom:328.191029pt;}
.y925_c00001{bottom:328.253729pt;}
.y13e9_c00001{bottom:328.260803pt;}
.y16ae_c00001{bottom:328.333744pt;}
.y1cd6_c00001{bottom:328.368000pt;}
.y289_c00001{bottom:328.416616pt;}
.y12a1_c00001{bottom:328.422667pt;}
.y6fd_c00001{bottom:328.562385pt;}
.y10c5_c00001{bottom:328.648000pt;}
.ycd4_c00001{bottom:328.650667pt;}
.ye34_c00001{bottom:328.659513pt;}
.y17ab_c00001{bottom:328.710876pt;}
.y16ad_c00001{bottom:328.774667pt;}
.y1281_c00001{bottom:328.802667pt;}
.y17ac_c00001{bottom:328.928619pt;}
.y14dd_c00001{bottom:328.977333pt;}
.y19_c00001{bottom:329.004000pt;}
.y480_c00001{bottom:329.013573pt;}
.ybe3_c00001{bottom:329.032392pt;}
.y1984_c00001{bottom:329.177501pt;}
.y17ad_c00001{bottom:329.200623pt;}
.yd45_c00001{bottom:329.226405pt;}
.yf18_c00001{bottom:329.232739pt;}
.y189b_c00001{bottom:329.386120pt;}
.y120a_c00001{bottom:329.392000pt;}
.y192f_c00001{bottom:329.400000pt;}
.y13ea_c00001{bottom:329.412456pt;}
.y1006_c00001{bottom:329.423772pt;}
.y1985_c00001{bottom:329.658312pt;}
.yd46_c00001{bottom:329.666640pt;}
.y6fe_c00001{bottom:329.682296pt;}
.y16ac_c00001{bottom:329.752357pt;}
.y14dc_c00001{bottom:329.804000pt;}
.y13eb_c00001{bottom:329.850696pt;}
.y109_c00001{bottom:329.961333pt;}
.ye33_c00001{bottom:330.080111pt;}
.y481_c00001{bottom:330.130587pt;}
.yf19_c00001{bottom:330.170853pt;}
.y16ab_c00001{bottom:330.224736pt;}
.y15b6_c00001{bottom:330.236000pt;}
.y6ff_c00001{bottom:330.248319pt;}
.y1005_c00001{bottom:330.381080pt;}
.yf1a_c00001{bottom:330.385613pt;}
.y65a_c00001{bottom:330.438181pt;}
.y1231_c00001{bottom:330.464000pt;}
.y861_c00001{bottom:330.516000pt;}
.y14db_c00001{bottom:330.590667pt;}
.y15b7_c00001{bottom:330.610976pt;}
.y860_c00001{bottom:330.645333pt;}
.y13ec_c00001{bottom:330.686648pt;}
.y17ae_c00001{bottom:330.697407pt;}
.ye32_c00001{bottom:330.701941pt;}
.y65b_c00001{bottom:330.707408pt;}
.yd47_c00001{bottom:330.707475pt;}
.yf1b_c00001{bottom:330.712243pt;}
.y116a_c00001{bottom:330.725059pt;}
.y1986_c00001{bottom:330.810152pt;}
.y14da_c00001{bottom:330.834667pt;}
.y10fc_c00001{bottom:330.936000pt;}
.y1b74_c00001{bottom:330.960000pt;}
.y700_c00001{bottom:330.997324pt;}
.y577_c00001{bottom:331.003008pt;}
.y17af_c00001{bottom:331.045887pt;}
.y189a_c00001{bottom:331.188112pt;}
.y1a76_c00001{bottom:331.202667pt;}
.y1987_c00001{bottom:331.215125pt;}
.y116b_c00001{bottom:331.215523pt;}
.yd48_c00001{bottom:331.246123pt;}
.y576_c00001{bottom:331.273248pt;}
.yf1c_c00001{bottom:331.292701pt;}
.y1988_c00001{bottom:331.446877pt;}
.y1a77_c00001{bottom:331.505333pt;}
.y16aa_c00001{bottom:331.548016pt;}
.y65c_c00001{bottom:331.555861pt;}
.y1a78_c00001{bottom:331.652000pt;}
.y1cb2_c00001{bottom:331.662667pt;}
.y14d9_c00001{bottom:331.678667pt;}
.y17b0_c00001{bottom:331.868239pt;}
.y13ed_c00001{bottom:331.871861pt;}
.y1359_c00001{bottom:331.896000pt;}
.yf1d_c00001{bottom:331.954245pt;}
.y1a79_c00001{bottom:332.002667pt;}
.yd49_c00001{bottom:332.021168pt;}
.y65d_c00001{bottom:332.082891pt;}
.y85f_c00001{bottom:332.108000pt;}
.y16a9_c00001{bottom:332.172528pt;}
.ye31_c00001{bottom:332.331076pt;}
.yb7d_c00001{bottom:332.409333pt;}
.y65e_c00001{bottom:332.429979pt;}
.y13ee_c00001{bottom:332.433283pt;}
.y788_c00001{bottom:332.457532pt;}
.y85e_c00001{bottom:332.465333pt;}
.y1004_c00001{bottom:332.498648pt;}
.y575_c00001{bottom:332.598912pt;}
.y85d_c00001{bottom:332.617333pt;}
.y192e_c00001{bottom:332.633333pt;}
.ye30_c00001{bottom:332.641937pt;}
.y1989_c00001{bottom:332.676859pt;}
.y1381_c00001{bottom:332.685333pt;}
.y17b1_c00001{bottom:332.765075pt;}
.y116c_c00001{bottom:332.768243pt;}
.y1a7a_c00001{bottom:332.826667pt;}
.y13ef_c00001{bottom:332.891875pt;}
.y85c_c00001{bottom:332.896000pt;}
.y198a_c00001{bottom:332.993616pt;}
.y1003_c00001{bottom:333.105368pt;}
.y574_c00001{bottom:333.191040pt;}
.y65f_c00001{bottom:333.238059pt;}
.yf1e_c00001{bottom:333.297024pt;}
.ye2f_c00001{bottom:333.355908pt;}
.y85b_c00001{bottom:333.362667pt;}
.y1a7b_c00001{bottom:333.450667pt;}
.y15b8_c00001{bottom:333.467729pt;}
.y660_c00001{bottom:333.532053pt;}
.y1899_c00001{bottom:333.604000pt;}
.y1329_c00001{bottom:333.624000pt;}
.y1a7c_c00001{bottom:333.685333pt;}
.y16a8_c00001{bottom:333.738560pt;}
.y482_c00001{bottom:333.811979pt;}
.y789_c00001{bottom:334.063327pt;}
.y661_c00001{bottom:334.471136pt;}
.y15b9_c00001{bottom:334.552275pt;}
.y573_c00001{bottom:334.603904pt;}
.y116d_c00001{bottom:334.663189pt;}
.y78a_c00001{bottom:334.667781pt;}
.yf1f_c00001{bottom:334.792163pt;}
.y16a7_c00001{bottom:334.800299pt;}
.y91d_c00001{bottom:334.842713pt;}
.y483_c00001{bottom:335.005611pt;}
.yf20_c00001{bottom:335.213328pt;}
.ya90_c00001{bottom:335.227752pt;}
.y1be6_c00001{bottom:335.365333pt;}
.y38b_c00001{bottom:335.560907pt;}
.y15ba_c00001{bottom:335.604745pt;}
.y1b00_c00001{bottom:335.760000pt;}
.y78b_c00001{bottom:335.792832pt;}
.y1b24_c00001{bottom:335.870667pt;}
.y38a_c00001{bottom:335.881867pt;}
.y1002_c00001{bottom:335.959284pt;}
.y572_c00001{bottom:336.153600pt;}
.y1d29_c00001{bottom:336.238667pt;}
.y389_c00001{bottom:336.350101pt;}
.y78c_c00001{bottom:336.480755pt;}
.ya91_c00001{bottom:336.591531pt;}
.y1001_c00001{bottom:336.604508pt;}
.y388_c00001{bottom:336.717636pt;}
.y571_c00001{bottom:336.964000pt;}
.y1307_c00001{bottom:337.354667pt;}
.y1b9b_c00001{bottom:337.456000pt;}
.y15bb_c00001{bottom:337.497564pt;}
.y78d_c00001{bottom:337.586444pt;}
.y387_c00001{bottom:337.637945pt;}
.ya92_c00001{bottom:337.787860pt;}
.y9fe_c00001{bottom:337.867320pt;}
.y386_c00001{bottom:337.903620pt;}
.y17f_c00001{bottom:337.913248pt;}
.y9fd_c00001{bottom:338.103975pt;}
.y27a_c00001{bottom:338.154795pt;}
.ya93_c00001{bottom:338.278607pt;}
.y78e_c00001{bottom:338.399359pt;}
.y385_c00001{bottom:338.437727pt;}
.y27b_c00001{bottom:338.561793pt;}
.y9fc_c00001{bottom:338.622273pt;}
.y180_c00001{bottom:338.782429pt;}
.y384_c00001{bottom:338.871427pt;}
.y1d2a_c00001{bottom:339.000293pt;}
.y27c_c00001{bottom:339.058892pt;}
.y91e_c00001{bottom:339.063497pt;}
.y78f_c00001{bottom:339.102199pt;}
.y1000_c00001{bottom:339.196748pt;}
.ya94_c00001{bottom:339.279647pt;}
.y181_c00001{bottom:339.453455pt;}
.y73_c00001{bottom:339.476000pt;}
.y479_c00001{bottom:339.606667pt;}
.y182_c00001{bottom:339.627357pt;}
.y9fb_c00001{bottom:339.739613pt;}
.ya95_c00001{bottom:339.878681pt;}
.y9fa_c00001{bottom:339.888883pt;}
.y183_c00001{bottom:340.047403pt;}
.y27d_c00001{bottom:340.078699pt;}
.y184_c00001{bottom:340.203067pt;}
.y790_c00001{bottom:340.444967pt;}
.y185_c00001{bottom:340.536308pt;}
.y9f9_c00001{bottom:340.802432pt;}
.y1d8c_c00001{bottom:341.040000pt;}
.y47a_c00001{bottom:341.048639pt;}
.y1252_c00001{bottom:341.217333pt;}
.ya96_c00001{bottom:341.281108pt;}
.y27e_c00001{bottom:341.340620pt;}
.ybe2_c00001{bottom:341.367328pt;}
.ycb2_c00001{bottom:341.400000pt;}
.ybe1_c00001{bottom:341.629717pt;}
.y1c23_c00001{bottom:341.760000pt;}
.y27f_c00001{bottom:341.773088pt;}
.ybe0_c00001{bottom:341.888709pt;}
.y13e2_c00001{bottom:341.955568pt;}
.yc8b_c00001{bottom:341.974667pt;}
.ya97_c00001{bottom:342.001964pt;}
.yd3c_c00001{bottom:342.207779pt;}
.y47b_c00001{bottom:342.409775pt;}
.ybdf_c00001{bottom:342.562320pt;}
.y16a6_c00001{bottom:342.751461pt;}
.yd3d_c00001{bottom:342.766840pt;}
.ye2e_c00001{bottom:342.787121pt;}
.ybde_c00001{bottom:342.809280pt;}
.y17a2_c00001{bottom:342.963119pt;}
.ybdd_c00001{bottom:343.074936pt;}
.y13e3_c00001{bottom:343.076285pt;}
.y280_c00001{bottom:343.154471pt;}
.y13e4_c00001{bottom:343.351883pt;}
.y1cd5_c00001{bottom:343.408000pt;}
.y14d8_c00001{bottom:343.438667pt;}
.y47c_c00001{bottom:343.449583pt;}
.ycd3_c00001{bottom:343.596000pt;}
.y91f_c00001{bottom:343.597557pt;}
.yd3e_c00001{bottom:343.598187pt;}
.y197b_c00001{bottom:343.663480pt;}
.y1280_c00001{bottom:343.710667pt;}
.ybdc_c00001{bottom:343.736664pt;}
.y17a3_c00001{bottom:343.774252pt;}
.y14d7_c00001{bottom:343.841333pt;}
.yfff_c00001{bottom:343.874316pt;}
.y47d_c00001{bottom:343.904891pt;}
.y18_c00001{bottom:344.017333pt;}
.y197c_c00001{bottom:344.026939pt;}
.y1209_c00001{bottom:344.066667pt;}
.ye2d_c00001{bottom:344.068057pt;}
.ybdb_c00001{bottom:344.091592pt;}
.y12a0_c00001{bottom:344.150667pt;}
.y570_c00001{bottom:344.160000pt;}
.y13e5_c00001{bottom:344.268651pt;}
.y17a4_c00001{bottom:344.278787pt;}
.y108_c00001{bottom:344.342667pt;}
.yf11_c00001{bottom:344.355333pt;}
.ybda_c00001{bottom:344.394771pt;}
.yffe_c00001{bottom:344.409284pt;}
.ye2c_c00001{bottom:344.459544pt;}
.y16a5_c00001{bottom:344.663152pt;}
.yd3f_c00001{bottom:344.697197pt;}
.y15ab_c00001{bottom:344.847967pt;}
.y14d6_c00001{bottom:344.894667pt;}
.y1230_c00001{bottom:344.989333pt;}
.y197d_c00001{bottom:344.998216pt;}
.y17a5_c00001{bottom:345.039655pt;}
.y14d5_c00001{bottom:345.048000pt;}
.y1ca1_c00001{bottom:345.069333pt;}
.y653_c00001{bottom:345.084533pt;}
.y16a4_c00001{bottom:345.214528pt;}
.y1160_c00001{bottom:345.336267pt;}
.y17a6_c00001{bottom:345.381455pt;}
.yf12_c00001{bottom:345.415597pt;}
.ye2b_c00001{bottom:345.455792pt;}
.y10c4_c00001{bottom:345.464000pt;}
.y13e6_c00001{bottom:345.482448pt;}
.y15ac_c00001{bottom:345.506633pt;}
.y1d8b_c00001{bottom:345.600000pt;}
.y85a_c00001{bottom:345.634667pt;}
.y14d4_c00001{bottom:345.678667pt;}
.yd40_c00001{bottom:345.691675pt;}
.y56f_c00001{bottom:345.756133pt;}
.y13e7_c00001{bottom:345.871360pt;}
.y15ad_c00001{bottom:345.946533pt;}
.y197e_c00001{bottom:346.025992pt;}
.y16a3_c00001{bottom:346.027125pt;}
.y14d3_c00001{bottom:346.032000pt;}
.y1161_c00001{bottom:346.082963pt;}
.y1895_c00001{bottom:346.104800pt;}
.y1894_c00001{bottom:346.105099pt;}
.y1892_c00001{bottom:346.105259pt;}
.y1896_c00001{bottom:346.105269pt;}
.y1898_c00001{bottom:346.105365pt;}
.y1897_c00001{bottom:346.105579pt;}
.y1893_c00001{bottom:346.105664pt;}
.y17a7_c00001{bottom:346.105779pt;}
.y10fb_c00001{bottom:346.269333pt;}
.y654_c00001{bottom:346.357867pt;}
.y197f_c00001{bottom:346.360315pt;}
.y859_c00001{bottom:346.394667pt;}
.y1162_c00001{bottom:346.446560pt;}
.y17a8_c00001{bottom:346.470689pt;}
.yd41_c00001{bottom:346.486968pt;}
.yf13_c00001{bottom:346.526357pt;}
.y56e_c00001{bottom:346.633300pt;}
.y15ae_c00001{bottom:346.637100pt;}
.y655_c00001{bottom:346.708853pt;}
.y1980_c00001{bottom:346.712021pt;}
.y14d2_c00001{bottom:346.800000pt;}
.ye2a_c00001{bottom:346.961232pt;}
.y1358_c00001{bottom:346.989333pt;}
.y656_c00001{bottom:347.009595pt;}
.yd42_c00001{bottom:347.032859pt;}
.y1163_c00001{bottom:347.059443pt;}
.y15af_c00001{bottom:347.166200pt;}
.y16a2_c00001{bottom:347.231611pt;}
.yf14_c00001{bottom:347.266344pt;}
.y77f_c00001{bottom:347.333327pt;}
.y858_c00001{bottom:347.361333pt;}
.y1a75_c00001{bottom:347.400000pt;}
.y1981_c00001{bottom:347.474325pt;}
.y56d_c00001{bottom:347.490867pt;}
.ye29_c00001{bottom:347.565596pt;}
.y857_c00001{bottom:347.652000pt;}
.y16a1_c00001{bottom:347.695291pt;}
.y15b0_c00001{bottom:347.695767pt;}
.y780_c00001{bottom:347.708333pt;}
.y856_c00001{bottom:347.861333pt;}
.y657_c00001{bottom:347.866763pt;}
.y1380_c00001{bottom:347.890667pt;}
.y1164_c00001{bottom:347.921195pt;}
.y1982_c00001{bottom:347.932456pt;}
.y17a9_c00001{bottom:347.941612pt;}
.y855_c00001{bottom:348.080000pt;}
.y16a0_c00001{bottom:348.327083pt;}
.yffd_c00001{bottom:348.431772pt;}
.y658_c00001{bottom:348.446581pt;}
.ye28_c00001{bottom:348.481717pt;}
.yf15_c00001{bottom:348.488099pt;}
.y15b1_c00001{bottom:348.631400pt;}
.yb7c_c00001{bottom:348.649333pt;}
.y854_c00001{bottom:348.692000pt;}
.y1328_c00001{bottom:348.696000pt;}
.y659_c00001{bottom:348.785168pt;}
.yf16_c00001{bottom:348.897824pt;}
.y853_c00001{bottom:348.962667pt;}
.yffc_c00001{bottom:349.029880pt;}
.y15b2_c00001{bottom:349.063067pt;}
.y169f_c00001{bottom:349.208000pt;}
.y1165_c00001{bottom:349.332901pt;}
.y56c_c00001{bottom:349.393267pt;}
.y781_c00001{bottom:349.423769pt;}
.yffb_c00001{bottom:349.766304pt;}
.y15b3_c00001{bottom:349.844267pt;}
.y1166_c00001{bottom:349.863024pt;}
.y56b_c00001{bottom:349.925267pt;}
.y383_c00001{bottom:350.094431pt;}
.yf17_c00001{bottom:350.122387pt;}
.y56a_c00001{bottom:350.236867pt;}
.y15b4_c00001{bottom:350.375233pt;}
.y914_c00001{bottom:350.428201pt;}
.y1167_c00001{bottom:350.460981pt;}
.y1aff_c00001{bottom:350.482667pt;}
.y1be5_c00001{bottom:350.513333pt;}
.y915_c00001{bottom:350.723593pt;}
.y782_c00001{bottom:350.907344pt;}
.y1b23_c00001{bottom:350.989333pt;}
.y569_c00001{bottom:351.104400pt;}
.y382_c00001{bottom:351.235883pt;}
.y783_c00001{bottom:351.243432pt;}
.ya8a_c00001{bottom:351.308627pt;}
.y1d21_c00001{bottom:351.361840pt;}
.y381_c00001{bottom:351.459695pt;}
.y380_c00001{bottom:351.704563pt;}
.y15b5_c00001{bottom:351.710500pt;}
.y1d22_c00001{bottom:351.729600pt;}
.ya8b_c00001{bottom:351.868820pt;}
.y1b9a_c00001{bottom:351.896000pt;}
.y1d23_c00001{bottom:352.056133pt;}
.yffa_c00001{bottom:352.060380pt;}
.y37f_c00001{bottom:352.248492pt;}
.y568_c00001{bottom:352.290267pt;}
.y37e_c00001{bottom:352.327905pt;}
.y1306_c00001{bottom:352.405333pt;}
.y1d24_c00001{bottom:352.667947pt;}
.y916_c00001{bottom:352.753045pt;}
.y37d_c00001{bottom:352.892685pt;}
.y1d25_c00001{bottom:353.036000pt;}
.ya8c_c00001{bottom:353.098480pt;}
.y784_c00001{bottom:353.231204pt;}
.y917_c00001{bottom:353.331901pt;}
.y9f8_c00001{bottom:353.492304pt;}
.y271_c00001{bottom:353.515476pt;}
.y9f7_c00001{bottom:353.682692pt;}
.y178_c00001{bottom:353.709304pt;}
.y179_c00001{bottom:353.709643pt;}
.y17b_c00001{bottom:353.710027pt;}
.y17a_c00001{bottom:353.710284pt;}
.y17d_c00001{bottom:353.710483pt;}
.y17c_c00001{bottom:353.710605pt;}
.y17e_c00001{bottom:353.710759pt;}
.y37c_c00001{bottom:353.753463pt;}
.ya8d_c00001{bottom:353.941109pt;}
.y1d26_c00001{bottom:353.963013pt;}
.y9f6_c00001{bottom:353.994149pt;}
.y785_c00001{bottom:354.076708pt;}
.ya8e_c00001{bottom:354.329609pt;}
.y9f5_c00001{bottom:354.465405pt;}
.yff9_c00001{bottom:354.552820pt;}
.y786_c00001{bottom:354.599724pt;}
.y272_c00001{bottom:354.644240pt;}
.y1d27_c00001{bottom:354.754293pt;}
.y918_c00001{bottom:354.864309pt;}
.y72_c00001{bottom:354.942667pt;}
.y273_c00001{bottom:355.008949pt;}
.y1d28_c00001{bottom:355.122160pt;}
.y9f4_c00001{bottom:355.135789pt;}
.y9f3_c00001{bottom:355.298183pt;}
.y274_c00001{bottom:355.417657pt;}
.y476_c00001{bottom:355.494872pt;}
.y919_c00001{bottom:355.659241pt;}
.ya8f_c00001{bottom:355.756700pt;}
.y787_c00001{bottom:355.872753pt;}
.ybd9_c00001{bottom:355.918797pt;}
.y9f2_c00001{bottom:355.925189pt;}
.y9f1_c00001{bottom:356.136665pt;}
.y275_c00001{bottom:356.253424pt;}
.ybd8_c00001{bottom:356.372771pt;}
.y1251_c00001{bottom:356.577333pt;}
.y9f0_c00001{bottom:356.641679pt;}
.y91a_c00001{bottom:357.039081pt;}
.y276_c00001{bottom:357.135300pt;}
.yc8a_c00001{bottom:357.228000pt;}
.ybd7_c00001{bottom:357.236347pt;}
.yd34_c00001{bottom:357.330688pt;}
.ye27_c00001{bottom:357.405117pt;}
.ybd6_c00001{bottom:357.471528pt;}
.y277_c00001{bottom:357.488043pt;}
.y13da_c00001{bottom:357.561949pt;}
.ycb1_c00001{bottom:357.708000pt;}
.y91b_c00001{bottom:357.811769pt;}
.y278_c00001{bottom:357.944484pt;}
.ye26_c00001{bottom:357.965709pt;}
.ybd5_c00001{bottom:357.978925pt;}
.y1799_c00001{bottom:358.084000pt;}
.y13db_c00001{bottom:358.127917pt;}
.y279_c00001{bottom:358.137311pt;}
.ybd4_c00001{bottom:358.247707pt;}
.y1cd4_c00001{bottom:358.290667pt;}
.ycd2_c00001{bottom:358.293333pt;}
.yd35_c00001{bottom:358.348627pt;}
.y127f_c00001{bottom:358.454667pt;}
.y13dc_c00001{bottom:358.461152pt;}
.y179a_c00001{bottom:358.672392pt;}
.y17_c00001{bottom:358.765333pt;}
.y1975_c00001{bottom:358.788171pt;}
.ye25_c00001{bottom:358.818837pt;}
.y179b_c00001{bottom:358.873437pt;}
.ybd3_c00001{bottom:359.037232pt;}
.yd36_c00001{bottom:359.045080pt;}
.y14d1_c00001{bottom:359.048000pt;}
.y91c_c00001{bottom:359.198337pt;}
.y1976_c00001{bottom:359.220640pt;}
.y129f_c00001{bottom:359.224000pt;}
.yf0b_c00001{bottom:359.242203pt;}
.y122f_c00001{bottom:359.306667pt;}
.ye24_c00001{bottom:359.311497pt;}
.y14d0_c00001{bottom:359.340000pt;}
.y13dd_c00001{bottom:359.349952pt;}
.y1891_c00001{bottom:359.353323pt;}
.y1208_c00001{bottom:359.428000pt;}
.yd37_c00001{bottom:359.462133pt;}
.y13de_c00001{bottom:359.755979pt;}
.y477_c00001{bottom:359.821344pt;}
.y107_c00001{bottom:359.886667pt;}
.y179c_c00001{bottom:359.967989pt;}
.y14cf_c00001{bottom:360.161333pt;}
.y169e_c00001{bottom:360.181767pt;}
.y10c3_c00001{bottom:360.186667pt;}
.y13df_c00001{bottom:360.189021pt;}
.ye23_c00001{bottom:360.197529pt;}
.yd38_c00001{bottom:360.209533pt;}
.y15a2_c00001{bottom:360.213933pt;}
.y1157_c00001{bottom:360.222795pt;}
.y179d_c00001{bottom:360.250735pt;}
.yf0c_c00001{bottom:360.268984pt;}
.y567_c00001{bottom:360.301767pt;}
.yff8_c00001{bottom:360.504792pt;}
.y1c22_c00001{bottom:360.574667pt;}
.y15a3_c00001{bottom:360.610400pt;}
.y1977_c00001{bottom:360.639941pt;}
.y566_c00001{bottom:360.692367pt;}
.y1890_c00001{bottom:360.730784pt;}
.y14ce_c00001{bottom:360.760000pt;}
.yd39_c00001{bottom:360.842016pt;}
.y1978_c00001{bottom:360.871051pt;}
.y14cd_c00001{bottom:360.958667pt;}
.y179e_c00001{bottom:360.984768pt;}
.y188f_c00001{bottom:361.171723pt;}
.y1158_c00001{bottom:361.263147pt;}
.y13e0_c00001{bottom:361.324877pt;}
.y852_c00001{bottom:361.368000pt;}
.yd3a_c00001{bottom:361.377067pt;}
.y179f_c00001{bottom:361.380373pt;}
.y64b_c00001{bottom:361.411707pt;}
.y1159_c00001{bottom:361.515459pt;}
.y188e_c00001{bottom:361.554304pt;}
.y851_c00001{bottom:361.580000pt;}
.yb74_c00001{bottom:361.692864pt;}
.ye22_c00001{bottom:361.716441pt;}
.y14cc_c00001{bottom:361.738667pt;}
.y10fa_c00001{bottom:361.740000pt;}
.yf0d_c00001{bottom:361.817675pt;}
.y15a4_c00001{bottom:361.852467pt;}
.y17a0_c00001{bottom:361.897123pt;}
.y1979_c00001{bottom:362.045819pt;}
.yb73_c00001{bottom:362.067045pt;}
.y13e1_c00001{bottom:362.150213pt;}
.y1cb1_c00001{bottom:362.154667pt;}
.y14cb_c00001{bottom:362.162667pt;}
.y115a_c00001{bottom:362.167797pt;}
.y17a1_c00001{bottom:362.202592pt;}
.yd3b_c00001{bottom:362.252160pt;}
.y15a5_c00001{bottom:362.282067pt;}
.y850_c00001{bottom:362.289333pt;}
.y565_c00001{bottom:362.297500pt;}
.y77b_c00001{bottom:362.445236pt;}
.y64c_c00001{bottom:362.546459pt;}
.yb72_c00001{bottom:362.637653pt;}
.y15a6_c00001{bottom:362.735067pt;}
.y64d_c00001{bottom:362.752560pt;}
.y115b_c00001{bottom:362.787283pt;}
.y188d_c00001{bottom:362.805141pt;}
.yb71_c00001{bottom:362.835776pt;}
.y137f_c00001{bottom:362.878667pt;}
.y1a74_c00001{bottom:362.890667pt;}
.y84f_c00001{bottom:362.929333pt;}
.y197a_c00001{bottom:362.943501pt;}
.y115c_c00001{bottom:363.025395pt;}
.y1357_c00001{bottom:363.170667pt;}
.y564_c00001{bottom:363.192067pt;}
.yb70_c00001{bottom:363.203307pt;}
.yf0e_c00001{bottom:363.371272pt;}
.y64e_c00001{bottom:363.433728pt;}
.y15a7_c00001{bottom:363.514967pt;}
.y169d_c00001{bottom:363.528433pt;}
.yff7_c00001{bottom:363.644904pt;}
.y1ca0_c00001{bottom:363.681333pt;}
.yb6f_c00001{bottom:363.689227pt;}
.y1327_c00001{bottom:363.708000pt;}
.y188c_c00001{bottom:363.782357pt;}
.y84e_c00001{bottom:363.842667pt;}
.ye21_c00001{bottom:363.849333pt;}
.y169c_c00001{bottom:363.930900pt;}
.y115d_c00001{bottom:363.973285pt;}
.y188b_c00001{bottom:364.069632pt;}
.yb6e_c00001{bottom:364.104245pt;}
.y77c_c00001{bottom:364.305377pt;}
.yb6d_c00001{bottom:364.320421pt;}
.y563_c00001{bottom:364.401800pt;}
.yff6_c00001{bottom:364.453148pt;}
.y15a8_c00001{bottom:364.492800pt;}
.yf0f_c00001{bottom:364.631213pt;}
.y169b_c00001{bottom:364.654567pt;}
.y64f_c00001{bottom:364.759456pt;}
.y169a_c00001{bottom:365.005300pt;}
.y115e_c00001{bottom:365.017173pt;}
.y562_c00001{bottom:365.055733pt;}
.y90e_c00001{bottom:365.068281pt;}
.y15a9_c00001{bottom:365.205233pt;}
.y650_c00001{bottom:365.218464pt;}
.y1afe_c00001{bottom:365.257333pt;}
.yff5_c00001{bottom:365.342736pt;}
.y37b_c00001{bottom:365.348295pt;}
.y115f_c00001{bottom:365.403435pt;}
.y478_c00001{bottom:365.476376pt;}
.yf10_c00001{bottom:365.597499pt;}
.y90f_c00001{bottom:365.716917pt;}
.y561_c00001{bottom:365.731833pt;}
.y651_c00001{bottom:365.904309pt;}
.y15aa_c00001{bottom:365.945867pt;}
.y1be4_c00001{bottom:365.982667pt;}
.y1d1b_c00001{bottom:366.004000pt;}
.y1b22_c00001{bottom:366.268000pt;}
.ya82_c00001{bottom:366.433332pt;}
.y37a_c00001{bottom:366.564703pt;}
.y652_c00001{bottom:366.694677pt;}
.y1305_c00001{bottom:366.916000pt;}
.y1d1c_c00001{bottom:367.079173pt;}
.y560_c00001{bottom:367.152300pt;}
.y77d_c00001{bottom:367.259913pt;}
.y379_c00001{bottom:367.278221pt;}
.y1b99_c00001{bottom:367.292000pt;}
.y1d1d_c00001{bottom:367.430373pt;}
.ya83_c00001{bottom:367.623332pt;}
.y378_c00001{bottom:367.654761pt;}
.yff4_c00001{bottom:367.788780pt;}
.y55f_c00001{bottom:367.897600pt;}
.y9ef_c00001{bottom:367.934079pt;}
.y9ee_c00001{bottom:368.185560pt;}
.y377_c00001{bottom:368.264013pt;}
.ya84_c00001{bottom:368.375348pt;}
.y26a_c00001{bottom:368.394949pt;}
.y9ed_c00001{bottom:368.462232pt;}
.y910_c00001{bottom:368.660521pt;}
.y1d1e_c00001{bottom:368.678133pt;}
.y26b_c00001{bottom:368.774749pt;}
.y376_c00001{bottom:368.850876pt;}
.yff3_c00001{bottom:368.883680pt;}
.y375_c00001{bottom:369.112108pt;}
.y911_c00001{bottom:369.236985pt;}
.y9ec_c00001{bottom:369.253713pt;}
.ya85_c00001{bottom:369.256884pt;}
.y26c_c00001{bottom:369.283593pt;}
.y1d1f_c00001{bottom:369.412373pt;}
.ya86_c00001{bottom:369.493840pt;}
.y77e_c00001{bottom:369.596868pt;}
.y1d20_c00001{bottom:369.705493pt;}
.y173_c00001{bottom:369.779016pt;}
.y171_c00001{bottom:369.779067pt;}
.y172_c00001{bottom:369.779263pt;}
.y174_c00001{bottom:369.779399pt;}
.y170_c00001{bottom:369.779412pt;}
.y71_c00001{bottom:369.780000pt;}
.y175_c00001{bottom:369.780040pt;}
.y177_c00001{bottom:369.780059pt;}
.y176_c00001{bottom:369.780253pt;}
.y9eb_c00001{bottom:369.822863pt;}
.yff2_c00001{bottom:369.915336pt;}
.ya87_c00001{bottom:369.932693pt;}
.y9ea_c00001{bottom:370.063875pt;}
.y26d_c00001{bottom:370.494048pt;}
.ybd2_c00001{bottom:370.600045pt;}
.y9e9_c00001{bottom:370.830371pt;}
.y46f_c00001{bottom:370.834680pt;}
.ye20_c00001{bottom:370.897733pt;}
.ya88_c00001{bottom:370.901129pt;}
.ycb0_c00001{bottom:370.990667pt;}
.ybd1_c00001{bottom:370.996928pt;}
.y1250_c00001{bottom:371.170667pt;}
.y9e8_c00001{bottom:371.179711pt;}
.ya89_c00001{bottom:371.410872pt;}
.y13d3_c00001{bottom:371.489979pt;}
.y9e7_c00001{bottom:371.521104pt;}
.ybd0_c00001{bottom:371.648864pt;}
.y26e_c00001{bottom:371.704503pt;}
.y912_c00001{bottom:371.716793pt;}
.y470_c00001{bottom:371.858732pt;}
.yc89_c00001{bottom:372.108000pt;}
.y913_c00001{bottom:372.168245pt;}
.yd2e_c00001{bottom:372.454464pt;}
.y26f_c00001{bottom:372.474911pt;}
.y13d4_c00001{bottom:372.605923pt;}
.y1792_c00001{bottom:372.724000pt;}
.ybcf_c00001{bottom:372.761957pt;}
.y270_c00001{bottom:372.778500pt;}
.y196e_c00001{bottom:372.952749pt;}
.y14ca_c00001{bottom:372.977333pt;}
.y1699_c00001{bottom:373.062467pt;}
.ybce_c00001{bottom:373.084701pt;}
.yd2f_c00001{bottom:373.187632pt;}
.y1cd3_c00001{bottom:373.406667pt;}
.y14c9_c00001{bottom:373.522667pt;}
.yd30_c00001{bottom:373.604787pt;}
.y13d5_c00001{bottom:373.657656pt;}
.y1793_c00001{bottom:373.680267pt;}
.y127e_c00001{bottom:373.681333pt;}
.ycd1_c00001{bottom:373.704000pt;}
.y16_c00001{bottom:373.862667pt;}
.ybcd_c00001{bottom:373.921043pt;}
.y1794_c00001{bottom:374.045467pt;}
.y196f_c00001{bottom:374.078344pt;}
.y129e_c00001{bottom:374.128000pt;}
.yf03_c00001{bottom:374.128544pt;}
.y13d6_c00001{bottom:374.149883pt;}
.yd31_c00001{bottom:374.180637pt;}
.y14c8_c00001{bottom:374.350667pt;}
.y1207_c00001{bottom:374.414667pt;}
.y1970_c00001{bottom:374.572029pt;}
.y471_c00001{bottom:374.597956pt;}
.y106_c00001{bottom:374.640000pt;}
.y1698_c00001{bottom:374.787700pt;}
.yd32_c00001{bottom:374.804624pt;}
.y13d7_c00001{bottom:374.841019pt;}
.y188a_c00001{bottom:374.846005pt;}
.yf04_c00001{bottom:375.094656pt;}
.y159b_c00001{bottom:375.097667pt;}
.y1795_c00001{bottom:375.183520pt;}
.y122e_c00001{bottom:375.204000pt;}
.y1697_c00001{bottom:375.387200pt;}
.y14c7_c00001{bottom:375.400000pt;}
.y10c2_c00001{bottom:375.462667pt;}
.yf05_c00001{bottom:375.563195pt;}
.y55e_c00001{bottom:375.626200pt;}
.y1971_c00001{bottom:375.660101pt;}
.y1696_c00001{bottom:375.706400pt;}
.y14c6_c00001{bottom:375.802667pt;}
.y1972_c00001{bottom:375.883672pt;}
.y1889_c00001{bottom:375.894976pt;}
.y159c_c00001{bottom:375.978500pt;}
.y13d8_c00001{bottom:376.026011pt;}
.y643_c00001{bottom:376.054853pt;}
.yf06_c00001{bottom:376.065795pt;}
.ye1f_c00001{bottom:376.107800pt;}
.y1796_c00001{bottom:376.205813pt;}
.yd33_c00001{bottom:376.207963pt;}
.y84d_c00001{bottom:376.369333pt;}
.ye1e_c00001{bottom:376.506467pt;}
.y10f9_c00001{bottom:376.510667pt;}
.y1797_c00001{bottom:376.546747pt;}
.y114e_c00001{bottom:376.546843pt;}
.y14c5_c00001{bottom:376.605333pt;}
.y1695_c00001{bottom:376.699267pt;}
.y55d_c00001{bottom:376.783067pt;}
.y13d9_c00001{bottom:376.854912pt;}
.y1888_c00001{bottom:376.936395pt;}
.y644_c00001{bottom:376.967616pt;}
.y114f_c00001{bottom:377.014752pt;}
.y1973_c00001{bottom:377.032165pt;}
.yf07_c00001{bottom:377.093963pt;}
.y55c_c00001{bottom:377.121100pt;}
.ye1d_c00001{bottom:377.194333pt;}
.yff1_c00001{bottom:377.222144pt;}
.y1150_c00001{bottom:377.223112pt;}
.y645_c00001{bottom:377.270203pt;}
.y14c4_c00001{bottom:377.285333pt;}
.y1694_c00001{bottom:377.360567pt;}
.yb6c_c00001{bottom:377.421429pt;}
.y159d_c00001{bottom:377.448167pt;}
.y1974_c00001{bottom:377.466675pt;}
.y137e_c00001{bottom:377.518667pt;}
.y1798_c00001{bottom:377.554933pt;}
.yb6b_c00001{bottom:377.556709pt;}
.y1151_c00001{bottom:377.749565pt;}
.y472_c00001{bottom:377.848288pt;}
.y1356_c00001{bottom:377.929333pt;}
.yff0_c00001{bottom:377.938436pt;}
.y1693_c00001{bottom:377.957000pt;}
.y159e_c00001{bottom:377.966967pt;}
.y646_c00001{bottom:377.981211pt;}
.yb6a_c00001{bottom:377.988613pt;}
.y1887_c00001{bottom:378.099349pt;}
.y1152_c00001{bottom:378.102211pt;}
.yb69_c00001{bottom:378.187349pt;}
.y1a73_c00001{bottom:378.273333pt;}
.yf08_c00001{bottom:378.636275pt;}
.y473_c00001{bottom:378.660020pt;}
.y1153_c00001{bottom:378.685091pt;}
.yfef_c00001{bottom:378.693740pt;}
.ye1c_c00001{bottom:378.717233pt;}
.yb68_c00001{bottom:378.893077pt;}
.y1886_c00001{bottom:378.950517pt;}
.y159f_c00001{bottom:378.992267pt;}
.y55b_c00001{bottom:378.993300pt;}
.y1326_c00001{bottom:379.042667pt;}
.y647_c00001{bottom:379.076075pt;}
.yb67_c00001{bottom:379.077525pt;}
.y1154_c00001{bottom:379.134024pt;}
.yf09_c00001{bottom:379.224211pt;}
.y1692_c00001{bottom:379.398000pt;}
.y15a0_c00001{bottom:379.488833pt;}
.y1155_c00001{bottom:379.509203pt;}
.y55a_c00001{bottom:379.532867pt;}
.y1691_c00001{bottom:379.830367pt;}
.y1afd_c00001{bottom:379.920000pt;}
.yb66_c00001{bottom:379.921333pt;}
.y776_c00001{bottom:379.953320pt;}
.y648_c00001{bottom:380.052059pt;}
.y906_c00001{bottom:380.181633pt;}
.y374_c00001{bottom:380.246347pt;}
.y559_c00001{bottom:380.270367pt;}
.y1156_c00001{bottom:380.314944pt;}
.y1690_c00001{bottom:380.370067pt;}
.y649_c00001{bottom:380.400480pt;}
.y373_c00001{bottom:380.459983pt;}
.yf0a_c00001{bottom:380.478085pt;}
.ya79_c00001{bottom:380.602611pt;}
.y1c99_c00001{bottom:380.640000pt;}
.y64a_c00001{bottom:380.671525pt;}
.y372_c00001{bottom:380.898809pt;}
.y1be3_c00001{bottom:380.909333pt;}
.y907_c00001{bottom:380.940257pt;}
.y15a1_c00001{bottom:381.053167pt;}
.yfee_c00001{bottom:381.147992pt;}
.y1b21_c00001{bottom:381.253333pt;}
.y1c9a_c00001{bottom:381.445333pt;}
.y371_c00001{bottom:381.569088pt;}
.y908_c00001{bottom:381.644033pt;}
.ya7a_c00001{bottom:381.770089pt;}
.y558_c00001{bottom:381.822400pt;}
.y370_c00001{bottom:381.914293pt;}
.y1304_c00001{bottom:382.057333pt;}
.y474_c00001{bottom:382.070384pt;}
.y69_c00001{bottom:382.085333pt;}
.yfed_c00001{bottom:382.156392pt;}
.y1c9b_c00001{bottom:382.200000pt;}
.y777_c00001{bottom:382.203737pt;}
.ya7b_c00001{bottom:382.210983pt;}
.y1b98_c00001{bottom:382.248000pt;}
.y169_c00001{bottom:382.315435pt;}
.y36f_c00001{bottom:382.440085pt;}
.ya7c_c00001{bottom:382.559745pt;}
.y1c9c_c00001{bottom:382.590667pt;}
.y1c9d_c00001{bottom:382.777333pt;}
.y557_c00001{bottom:382.781533pt;}
.y6a_c00001{bottom:382.874667pt;}
.y16a_c00001{bottom:382.969889pt;}
.y475_c00001{bottom:383.078724pt;}
.y1c9e_c00001{bottom:383.101333pt;}
.y16b_c00001{bottom:383.282548pt;}
.y1c9f_c00001{bottom:383.344000pt;}
.yfec_c00001{bottom:383.357092pt;}
.y6b_c00001{bottom:383.369333pt;}
.y36e_c00001{bottom:383.401244pt;}
.y9e6_c00001{bottom:383.466448pt;}
.ya7d_c00001{bottom:383.505433pt;}
.y778_c00001{bottom:383.586828pt;}
.y9e5_c00001{bottom:383.704692pt;}
.y6c_c00001{bottom:383.746667pt;}
.y36d_c00001{bottom:383.754645pt;}
.y16c_c00001{bottom:383.918404pt;}
.ya7e_c00001{bottom:383.985403pt;}
.y909_c00001{bottom:384.018089pt;}
.yfeb_c00001{bottom:384.042348pt;}
.y9e4_c00001{bottom:384.144907pt;}
.y6d_c00001{bottom:384.480000pt;}
.y16d_c00001{bottom:384.501549pt;}
.y16e_c00001{bottom:384.655348pt;}
.y9e3_c00001{bottom:384.686553pt;}
.y779_c00001{bottom:384.824861pt;}
.y262_c00001{bottom:384.960793pt;}
.yfea_c00001{bottom:385.019668pt;}
.y6e_c00001{bottom:385.021333pt;}
.ya7f_c00001{bottom:385.073241pt;}
.ybcc_c00001{bottom:385.106811pt;}
.y9e2_c00001{bottom:385.259416pt;}
.y16f_c00001{bottom:385.403559pt;}
.y263_c00001{bottom:385.404896pt;}
.y9e1_c00001{bottom:385.435508pt;}
.y467_c00001{bottom:385.465368pt;}
.ybcb_c00001{bottom:385.482347pt;}
.ya80_c00001{bottom:385.528307pt;}
.y6f_c00001{bottom:385.558667pt;}
.y9e0_c00001{bottom:385.618945pt;}
.ycaf_c00001{bottom:385.749333pt;}
.y70_c00001{bottom:386.018667pt;}
.y124f_c00001{bottom:386.074667pt;}
.y90a_c00001{bottom:386.186949pt;}
.ybca_c00001{bottom:386.259459pt;}
.yb7b_c00001{bottom:386.400000pt;}
.ya81_c00001{bottom:386.577727pt;}
.y13cb_c00001{bottom:386.614091pt;}
.y468_c00001{bottom:386.614140pt;}
.y264_c00001{bottom:386.640327pt;}
.y9df_c00001{bottom:386.641889pt;}
.yd24_c00001{bottom:386.860027pt;}
.y77a_c00001{bottom:386.890320pt;}
.y90b_c00001{bottom:387.001097pt;}
.ybc9_c00001{bottom:387.005733pt;}
.y13cc_c00001{bottom:387.095304pt;}
.y265_c00001{bottom:387.116436pt;}
.ybc8_c00001{bottom:387.314816pt;}
.y178a_c00001{bottom:387.359339pt;}
.yc88_c00001{bottom:387.360000pt;}
.y90c_c00001{bottom:387.579121pt;}
.ye1b_c00001{bottom:387.653667pt;}
.yd25_c00001{bottom:387.656963pt;}
.y266_c00001{bottom:387.705967pt;}
.y469_c00001{bottom:387.859284pt;}
.y178b_c00001{bottom:387.963424pt;}
.yd26_c00001{bottom:387.998360pt;}
.ye1a_c00001{bottom:388.252433pt;}
.y1966_c00001{bottom:388.316640pt;}
.y178c_c00001{bottom:388.322571pt;}
.ybc7_c00001{bottom:388.322667pt;}
.yd27_c00001{bottom:388.331309pt;}
.y13cd_c00001{bottom:388.355976pt;}
.y127d_c00001{bottom:388.370667pt;}
.y1cd2_c00001{bottom:388.534667pt;}
.y14c3_c00001{bottom:388.601333pt;}
.ycd0_c00001{bottom:388.824000pt;}
.y13ce_c00001{bottom:388.880093pt;}
.y15_c00001{bottom:388.978667pt;}
.y129d_c00001{bottom:389.002667pt;}
.y1147_c00001{bottom:389.034096pt;}
.y168f_c00001{bottom:389.034500pt;}
.yd28_c00001{bottom:389.194528pt;}
.y267_c00001{bottom:389.202179pt;}
.y90d_c00001{bottom:389.250149pt;}
.y14c2_c00001{bottom:389.304000pt;}
.y1967_c00001{bottom:389.371499pt;}
.y1c21_c00001{bottom:389.392000pt;}
.yd29_c00001{bottom:389.520320pt;}
.y105_c00001{bottom:389.528000pt;}
.y1206_c00001{bottom:389.558667pt;}
.y178d_c00001{bottom:389.632416pt;}
.y1968_c00001{bottom:389.838576pt;}
.yfe9_c00001{bottom:389.942020pt;}
.yefc_c00001{bottom:389.972333pt;}
.y14c1_c00001{bottom:389.973333pt;}
.y1594_c00001{bottom:389.982300pt;}
.y13cf_c00001{bottom:390.020739pt;}
.y268_c00001{bottom:390.041329pt;}
.y1148_c00001{bottom:390.043976pt;}
.ye19_c00001{bottom:390.050533pt;}
.y1885_c00001{bottom:390.075936pt;}
.y122d_c00001{bottom:390.084000pt;}
.y46a_c00001{bottom:390.279272pt;}
.y14c0_c00001{bottom:390.348000pt;}
.y178e_c00001{bottom:390.350379pt;}
.y84c_c00001{bottom:390.390667pt;}
.y63b_c00001{bottom:390.463061pt;}
.y13d0_c00001{bottom:390.527192pt;}
.yd2a_c00001{bottom:390.553357pt;}
.y168e_c00001{bottom:390.556667pt;}
.yd2b_c00001{bottom:390.670549pt;}
.y10c1_c00001{bottom:390.688000pt;}
.y1595_c00001{bottom:390.716367pt;}
.y556_c00001{bottom:390.721967pt;}
.ye18_c00001{bottom:390.819033pt;}
.yefd_c00001{bottom:390.848571pt;}
.y10f8_c00001{bottom:390.852000pt;}
.y1969_c00001{bottom:390.860843pt;}
.y178f_c00001{bottom:390.868192pt;}
.y1884_c00001{bottom:390.930944pt;}
.y13d1_c00001{bottom:391.058000pt;}
.y14bf_c00001{bottom:391.118667pt;}
.y1883_c00001{bottom:391.136523pt;}
.y63c_c00001{bottom:391.172699pt;}
.y1149_c00001{bottom:391.244045pt;}
.yfe8_c00001{bottom:391.254424pt;}
.y46b_c00001{bottom:391.263612pt;}
.y269_c00001{bottom:391.264713pt;}
.yd2c_c00001{bottom:391.366472pt;}
.y14be_c00001{bottom:391.486667pt;}
.ye17_c00001{bottom:391.538200pt;}
.y1596_c00001{bottom:391.555767pt;}
.y63d_c00001{bottom:391.589765pt;}
.y1790_c00001{bottom:391.600085pt;}
.y114a_c00001{bottom:391.652712pt;}
.y196a_c00001{bottom:391.662427pt;}
.yb7a_c00001{bottom:391.680000pt;}
.yefe_c00001{bottom:391.753413pt;}
.y84b_c00001{bottom:391.809333pt;}
.y168d_c00001{bottom:391.817200pt;}
.ye16_c00001{bottom:391.874533pt;}
.y14bd_c00001{bottom:391.925333pt;}
.y196b_c00001{bottom:391.949144pt;}
.yd2d_c00001{bottom:391.951803pt;}
.yeff_c00001{bottom:392.070931pt;}
.y84a_c00001{bottom:392.092000pt;}
.y1882_c00001{bottom:392.140768pt;}
.y196c_c00001{bottom:392.162947pt;}
.yfe7_c00001{bottom:392.271292pt;}
.y1791_c00001{bottom:392.272384pt;}
.yb65_c00001{bottom:392.299472pt;}
.y555_c00001{bottom:392.383800pt;}
.y168c_c00001{bottom:392.413633pt;}
.y137d_c00001{bottom:392.424000pt;}
.y13d2_c00001{bottom:392.424032pt;}
.y1597_c00001{bottom:392.486100pt;}
.y1a72_c00001{bottom:392.646667pt;}
.y1355_c00001{bottom:392.653333pt;}
.y46c_c00001{bottom:392.738548pt;}
.yb64_c00001{bottom:392.767173pt;}
.y1881_c00001{bottom:392.888267pt;}
.y114b_c00001{bottom:392.889027pt;}
.y849_c00001{bottom:392.894667pt;}
.y76e_c00001{bottom:392.918827pt;}
.y168b_c00001{bottom:392.950233pt;}
.y63e_c00001{bottom:392.956379pt;}
.ye15_c00001{bottom:393.047033pt;}
.y1598_c00001{bottom:393.051633pt;}
.y1880_c00001{bottom:393.082293pt;}
.yf00_c00001{bottom:393.116027pt;}
.y196d_c00001{bottom:393.368373pt;}
.y63f_c00001{bottom:393.438597pt;}
.y114c_c00001{bottom:393.512307pt;}
.y554_c00001{bottom:393.553033pt;}
.ye14_c00001{bottom:393.598100pt;}
.y848_c00001{bottom:393.665333pt;}
.y553_c00001{bottom:394.067867pt;}
.y187f_c00001{bottom:394.071179pt;}
.y640_c00001{bottom:394.111349pt;}
.yb63_c00001{bottom:394.159419pt;}
.yfe6_c00001{bottom:394.294972pt;}
.y76f_c00001{bottom:394.303335pt;}
.y1b1d_c00001{bottom:394.322667pt;}
.y1325_c00001{bottom:394.409333pt;}
.y552_c00001{bottom:394.502733pt;}
.y847_c00001{bottom:394.608000pt;}
.y46d_c00001{bottom:394.687584pt;}
.yb62_c00001{bottom:394.706608pt;}
.y770_c00001{bottom:394.763103pt;}
.y168a_c00001{bottom:394.776033pt;}
.y114d_c00001{bottom:394.815669pt;}
.y1afc_c00001{bottom:394.825333pt;}
.y641_c00001{bottom:394.863808pt;}
.yfe5_c00001{bottom:394.945992pt;}
.yf01_c00001{bottom:394.998821pt;}
.y8fe_c00001{bottom:395.059301pt;}
.y846_c00001{bottom:395.282667pt;}
.y1b1e_c00001{bottom:395.361333pt;}
.y1599_c00001{bottom:395.458700pt;}
.y1b1f_c00001{bottom:395.548000pt;}
.yf02_c00001{bottom:395.560160pt;}
.y36c_c00001{bottom:395.578351pt;}
.yb61_c00001{bottom:395.686240pt;}
.y159a_c00001{bottom:395.757000pt;}
.yb79_c00001{bottom:395.760000pt;}
.y8ff_c00001{bottom:395.792893pt;}
.y771_c00001{bottom:395.858901pt;}
.yfe4_c00001{bottom:395.904892pt;}
.ya72_c00001{bottom:395.965949pt;}
.yb60_c00001{bottom:396.040560pt;}
.y1be2_c00001{bottom:396.063213pt;}
.y1be0_c00001{bottom:396.063447pt;}
.y1be1_c00001{bottom:396.063787pt;}
.y1bdf_c00001{bottom:396.063927pt;}
.y1bde_c00001{bottom:396.064293pt;}
.y642_c00001{bottom:396.266987pt;}
.y36b_c00001{bottom:396.353671pt;}
.y46e_c00001{bottom:396.396916pt;}
.y1b20_c00001{bottom:396.430667pt;}
.yb5f_c00001{bottom:396.480053pt;}
.y36a_c00001{bottom:396.723569pt;}
.ya73_c00001{bottom:396.755935pt;}
.y1b97_c00001{bottom:397.106667pt;}
.y1303_c00001{bottom:397.154667pt;}
.y551_c00001{bottom:397.286133pt;}
.y772_c00001{bottom:397.299235pt;}
.y900_c00001{bottom:397.555553pt;}
.y60_c00001{bottom:397.682667pt;}
.y369_c00001{bottom:397.781353pt;}
.y1c0f_c00001{bottom:397.797333pt;}
.y773_c00001{bottom:397.852761pt;}
.y550_c00001{bottom:397.904900pt;}
.y901_c00001{bottom:397.999577pt;}
.y61_c00001{bottom:398.006667pt;}
.ya74_c00001{bottom:398.071217pt;}
.yfe3_c00001{bottom:398.317820pt;}
.y1d1a_c00001{bottom:398.494667pt;}
.y9de_c00001{bottom:398.533436pt;}
.y368_c00001{bottom:398.747832pt;}
.y9dd_c00001{bottom:398.765800pt;}
.y62_c00001{bottom:398.777333pt;}
.ya75_c00001{bottom:398.866829pt;}
.y63_c00001{bottom:398.946667pt;}
.y774_c00001{bottom:398.991205pt;}
.yfe2_c00001{bottom:399.003528pt;}
.y367_c00001{bottom:399.076637pt;}
.y1c92_c00001{bottom:399.120000pt;}
.y9dc_c00001{bottom:399.301749pt;}
.y9db_c00001{bottom:399.470812pt;}
.y902_c00001{bottom:399.525457pt;}
.y1c93_c00001{bottom:399.597333pt;}
.y775_c00001{bottom:399.611877pt;}
.y64_c00001{bottom:399.637333pt;}
.yfe1_c00001{bottom:399.649036pt;}
.ya76_c00001{bottom:399.650221pt;}
.y168_c00001{bottom:399.686996pt;}
.y167_c00001{bottom:399.687111pt;}
.y166_c00001{bottom:399.687260pt;}
.y164_c00001{bottom:399.687267pt;}
.y163_c00001{bottom:399.687327pt;}
.y165_c00001{bottom:399.687748pt;}
.y9da_c00001{bottom:399.787099pt;}
.y65_c00001{bottom:399.821333pt;}
.y366_c00001{bottom:399.837429pt;}
.y45c_c00001{bottom:399.878300pt;}
.y1c94_c00001{bottom:399.881333pt;}
.y9d9_c00001{bottom:399.956601pt;}
.y9d8_c00001{bottom:400.088513pt;}
.y1c95_c00001{bottom:400.236000pt;}
.y45d_c00001{bottom:400.513704pt;}
.y903_c00001{bottom:400.645085pt;}
.y9d7_c00001{bottom:400.651039pt;}
.y1c96_c00001{bottom:400.692000pt;}
.y66_c00001{bottom:400.706667pt;}
.y9d6_c00001{bottom:400.769751pt;}
.ya77_c00001{bottom:400.860645pt;}
.y67_c00001{bottom:400.970667pt;}
.y9d5_c00001{bottom:401.041333pt;}
.y1c97_c00001{bottom:401.049333pt;}
.y904_c00001{bottom:401.054093pt;}
.ya78_c00001{bottom:401.228761pt;}
.y13c3_c00001{bottom:401.259688pt;}
.y25b_c00001{bottom:401.284000pt;}
.y1c98_c00001{bottom:401.296000pt;}
.y68_c00001{bottom:401.384000pt;}
.ycae_c00001{bottom:401.457333pt;}
.y13c4_c00001{bottom:401.660923pt;}
.y45e_c00001{bottom:401.693100pt;}
.y25c_c00001{bottom:401.703188pt;}
.y124e_c00001{bottom:401.913333pt;}
.y13c5_c00001{bottom:402.201685pt;}
.yd1b_c00001{bottom:402.221856pt;}
.yc87_c00001{bottom:402.346667pt;}
.y45f_c00001{bottom:402.664028pt;}
.y1783_c00001{bottom:402.726667pt;}
.y13c6_c00001{bottom:402.933888pt;}
.yd1c_c00001{bottom:402.945611pt;}
.y14bc_c00001{bottom:403.104000pt;}
.ye13_c00001{bottom:403.153900pt;}
.y25d_c00001{bottom:403.155128pt;}
.y195f_c00001{bottom:403.201443pt;}
.y1784_c00001{bottom:403.234219pt;}
.y14bb_c00001{bottom:403.353333pt;}
.yd1d_c00001{bottom:403.442112pt;}
.y10bb_c00001{bottom:403.445333pt;}
.y13c7_c00001{bottom:403.457976pt;}
.y1689_c00001{bottom:403.464400pt;}
.y1cd1_c00001{bottom:403.516000pt;}
.y14ba_c00001{bottom:403.537333pt;}
.ye12_c00001{bottom:403.704100pt;}
.y1960_c00001{bottom:403.710928pt;}
.y10bc_c00001{bottom:403.712000pt;}
.yccf_c00001{bottom:403.812000pt;}
.y129c_c00001{bottom:403.882667pt;}
.y54f_c00001{bottom:403.901767pt;}
.y905_c00001{bottom:403.909341pt;}
.y1688_c00001{bottom:403.954400pt;}
.y845_c00001{bottom:404.033333pt;}
.y127c_c00001{bottom:404.053333pt;}
.yef4_c00001{bottom:404.136723pt;}
.y25e_c00001{bottom:404.208880pt;}
.y104_c00001{bottom:404.233333pt;}
.y14_c00001{bottom:404.254667pt;}
.y14b9_c00001{bottom:404.393333pt;}
.y1785_c00001{bottom:404.398219pt;}
.y1205_c00001{bottom:404.414667pt;}
.y460_c00001{bottom:404.465312pt;}
.yd1e_c00001{bottom:404.475056pt;}
.y844_c00001{bottom:404.542667pt;}
.ybc6_c00001{bottom:404.637552pt;}
.ybc4_c00001{bottom:404.637693pt;}
.ybc5_c00001{bottom:404.637979pt;}
.ybc3_c00001{bottom:404.638285pt;}
.y1a50_c00001{bottom:404.638667pt;}
.y13c8_c00001{bottom:404.670085pt;}
.y1687_c00001{bottom:404.676967pt;}
.y187e_c00001{bottom:404.734795pt;}
.y10bd_c00001{bottom:404.737333pt;}
.yef5_c00001{bottom:404.769979pt;}
.yd1f_c00001{bottom:404.787619pt;}
.y158a_c00001{bottom:404.867567pt;}
.yb78_c00001{bottom:404.880000pt;}
.y54e_c00001{bottom:404.882067pt;}
.y14b8_c00001{bottom:404.893333pt;}
.y1786_c00001{bottom:404.933739pt;}
.y187d_c00001{bottom:404.997024pt;}
.y25f_c00001{bottom:405.045240pt;}
.ye11_c00001{bottom:405.077333pt;}
.y260_c00001{bottom:405.237348pt;}
.y158b_c00001{bottom:405.274067pt;}
.ye10_c00001{bottom:405.440700pt;}
.y461_c00001{bottom:405.516028pt;}
.yef6_c00001{bottom:405.524776pt;}
.y1961_c00001{bottom:405.544539pt;}
.yfe0_c00001{bottom:405.583512pt;}
.y843_c00001{bottom:405.614667pt;}
.y261_c00001{bottom:405.636376pt;}
.y10be_c00001{bottom:405.644000pt;}
.y122c_c00001{bottom:405.660000pt;}
.yef7_c00001{bottom:405.756869pt;}
.yd20_c00001{bottom:405.781677pt;}
.y1787_c00001{bottom:405.838347pt;}
.y54d_c00001{bottom:405.879567pt;}
.y10bf_c00001{bottom:405.889333pt;}
.y1962_c00001{bottom:405.934456pt;}
.yd21_c00001{bottom:406.039499pt;}
.y187c_c00001{bottom:406.052896pt;}
.y14b7_c00001{bottom:406.113333pt;}
.y1686_c00001{bottom:406.118667pt;}
.y1a4b_c00001{bottom:406.140000pt;}
.yfdf_c00001{bottom:406.200152pt;}
.y1354_c00001{bottom:406.234667pt;}
.y842_c00001{bottom:406.292000pt;}
.y14b6_c00001{bottom:406.305333pt;}
.y113f_c00001{bottom:406.318107pt;}
.ye0f_c00001{bottom:406.334100pt;}
.y1963_c00001{bottom:406.397549pt;}
.y158c_c00001{bottom:406.447633pt;}
.yd22_c00001{bottom:406.447816pt;}
.y13c9_c00001{bottom:406.485997pt;}
.y633_c00001{bottom:406.547195pt;}
.y1353_c00001{bottom:406.597333pt;}
.y10f7_c00001{bottom:406.618667pt;}
.y10c0_c00001{bottom:406.624000pt;}
.ye0e_c00001{bottom:406.775433pt;}
.y14b5_c00001{bottom:406.805333pt;}
.y1140_c00001{bottom:406.814467pt;}
.y54c_c00001{bottom:406.872167pt;}
.y1352_c00001{bottom:406.880000pt;}
.y158d_c00001{bottom:406.928133pt;}
.y841_c00001{bottom:406.938667pt;}
.y1788_c00001{bottom:406.964779pt;}
.y13ca_c00001{bottom:406.980083pt;}
.yef8_c00001{bottom:406.989685pt;}
.y1351_c00001{bottom:407.001333pt;}
.y1a4a_c00001{bottom:407.153333pt;}
.y634_c00001{bottom:407.157461pt;}
.yb5e_c00001{bottom:407.180085pt;}
.y1964_c00001{bottom:407.229101pt;}
.y187b_c00001{bottom:407.236672pt;}
.y462_c00001{bottom:407.260872pt;}
.yd23_c00001{bottom:407.307883pt;}
.ye0d_c00001{bottom:407.374633pt;}
.yb5d_c00001{bottom:407.396485pt;}
.y137c_c00001{bottom:407.434667pt;}
.y158e_c00001{bottom:407.452600pt;}
.y187a_c00001{bottom:407.468235pt;}
.y1350_c00001{bottom:407.493333pt;}
.y1141_c00001{bottom:407.553448pt;}
.y1789_c00001{bottom:407.612747pt;}
.yb5c_c00001{bottom:407.632565pt;}
.y1a49_c00001{bottom:407.665333pt;}
.y134f_c00001{bottom:407.678667pt;}
.y840_c00001{bottom:407.734667pt;}
.y1685_c00001{bottom:407.751933pt;}
.yef9_c00001{bottom:407.760360pt;}
.y54b_c00001{bottom:407.767700pt;}
.y768_c00001{bottom:407.796248pt;}
.y134e_c00001{bottom:407.924000pt;}
.y463_c00001{bottom:407.948236pt;}
.y1a71_c00001{bottom:408.033333pt;}
.y134d_c00001{bottom:408.077333pt;}
.y1142_c00001{bottom:408.238685pt;}
.y635_c00001{bottom:408.242981pt;}
.yb5b_c00001{bottom:408.254869pt;}
.yfde_c00001{bottom:408.363904pt;}
.y1684_c00001{bottom:408.398033pt;}
.y158f_c00001{bottom:408.423133pt;}
.y1965_c00001{bottom:408.423509pt;}
.y1879_c00001{bottom:408.445803pt;}
.y636_c00001{bottom:408.469221pt;}
.ye0c_c00001{bottom:408.482067pt;}
.y1143_c00001{bottom:408.546168pt;}
.y134c_c00001{bottom:408.608000pt;}
.y1cac_c00001{bottom:408.721333pt;}
.y1a48_c00001{bottom:408.725333pt;}
.y1590_c00001{bottom:408.726467pt;}
.y637_c00001{bottom:408.771685pt;}
.y1878_c00001{bottom:408.865099pt;}
.y134b_c00001{bottom:408.961333pt;}
.y83f_c00001{bottom:408.965333pt;}
.y464_c00001{bottom:409.021584pt;}
.yfdd_c00001{bottom:409.025992pt;}
.y1683_c00001{bottom:409.073600pt;}
.yb5a_c00001{bottom:409.081717pt;}
.yefa_c00001{bottom:409.164533pt;}
.y1877_c00001{bottom:409.192960pt;}
.y1324_c00001{bottom:409.234667pt;}
.y1144_c00001{bottom:409.373979pt;}
.y1591_c00001{bottom:409.531500pt;}
.yb59_c00001{bottom:409.643381pt;}
.y1cad_c00001{bottom:409.655600pt;}
.y1bd9_c00001{bottom:409.670533pt;}
.y769_c00001{bottom:409.692335pt;}
.y465_c00001{bottom:410.043084pt;}
.yb58_c00001{bottom:410.161333pt;}
.y1145_c00001{bottom:410.177371pt;}
.y638_c00001{bottom:410.178229pt;}
.y1afb_c00001{bottom:410.297333pt;}
.y1682_c00001{bottom:410.380500pt;}
.yefb_c00001{bottom:410.380605pt;}
.y8f6_c00001{bottom:410.415669pt;}
.y365_c00001{bottom:410.434384pt;}
.y54a_c00001{bottom:410.438367pt;}
.y1146_c00001{bottom:410.455216pt;}
.y1bda_c00001{bottom:410.500013pt;}
.ya69_c00001{bottom:410.615868pt;}
.y76a_c00001{bottom:410.649212pt;}
.y1bdb_c00001{bottom:410.842740pt;}
.y1592_c00001{bottom:410.995000pt;}
.y1cae_c00001{bottom:411.002923pt;}
.y1b1c_c00001{bottom:411.041333pt;}
.y639_c00001{bottom:411.058768pt;}
.y8f7_c00001{bottom:411.235917pt;}
.y1caf_c00001{bottom:411.305285pt;}
.ya6a_c00001{bottom:411.333057pt;}
.y1593_c00001{bottom:411.441167pt;}
.y63a_c00001{bottom:411.635909pt;}
.y1bdc_c00001{bottom:411.653507pt;}
.y1cb0_c00001{bottom:411.758941pt;}
.y364_c00001{bottom:411.858748pt;}
.yfdc_c00001{bottom:412.028012pt;}
.y8f8_c00001{bottom:412.138897pt;}
.y1b96_c00001{bottom:412.173333pt;}
.y1bdd_c00001{bottom:412.296420pt;}
.y549_c00001{bottom:412.310633pt;}
.y1a55_c00001{bottom:412.321333pt;}
.y363_c00001{bottom:412.405739pt;}
.y1302_c00001{bottom:412.408000pt;}
.y76b_c00001{bottom:412.544589pt;}
.y362_c00001{bottom:412.647829pt;}
.yfdb_c00001{bottom:412.758684pt;}
.y466_c00001{bottom:412.848992pt;}
.y361_c00001{bottom:412.992859pt;}
.ya6b_c00001{bottom:413.202088pt;}
.ya6c_c00001{bottom:413.742416pt;}
.y254_c00001{bottom:413.752336pt;}
.y9d4_c00001{bottom:413.799327pt;}
.y76c_c00001{bottom:413.915469pt;}
.y360_c00001{bottom:413.995251pt;}
.y9d3_c00001{bottom:414.037107pt;}
.y9d2_c00001{bottom:414.237607pt;}
.y8f9_c00001{bottom:414.387221pt;}
.y255_c00001{bottom:414.549947pt;}
.ybc2_c00001{bottom:414.698939pt;}
.y12f9_c00001{bottom:414.720000pt;}
.yfda_c00001{bottom:414.764508pt;}
.y9d1_c00001{bottom:414.872387pt;}
.y161_c00001{bottom:414.957987pt;}
.y15c_c00001{bottom:414.958053pt;}
.y15b_c00001{bottom:414.958203pt;}
.y15d_c00001{bottom:414.958249pt;}
.y160_c00001{bottom:414.958501pt;}
.y15f_c00001{bottom:414.958545pt;}
.y162_c00001{bottom:414.958609pt;}
.y15e_c00001{bottom:414.958847pt;}
.y1d92_c00001{bottom:414.960000pt;}
.y5f_c00001{bottom:415.076000pt;}
.ybc1_c00001{bottom:415.157432pt;}
.ya6d_c00001{bottom:415.290204pt;}
.y9d0_c00001{bottom:415.437687pt;}
.ya6e_c00001{bottom:415.579663pt;}
.y9cf_c00001{bottom:415.952427pt;}
.ya6f_c00001{bottom:416.004029pt;}
.y76d_c00001{bottom:416.065528pt;}
.ybc0_c00001{bottom:416.277528pt;}
.y256_c00001{bottom:416.331504pt;}
.y8fa_c00001{bottom:416.389845pt;}
.y455_c00001{bottom:416.420000pt;}
.ycad_c00001{bottom:416.460000pt;}
.y124d_c00001{bottom:416.530667pt;}
.y13be_c00001{bottom:416.624973pt;}
.y257_c00001{bottom:416.828805pt;}
.yd13_c00001{bottom:417.105293pt;}
.yc86_c00001{bottom:417.120000pt;}
.y9ce_c00001{bottom:417.122667pt;}
.ya70_c00001{bottom:417.173232pt;}
.y456_c00001{bottom:417.346520pt;}
.y8fb_c00001{bottom:417.401037pt;}
.ybbf_c00001{bottom:417.496861pt;}
.y177d_c00001{bottom:417.590243pt;}
.y12fa_c00001{bottom:417.600000pt;}
.yd14_c00001{bottom:417.624397pt;}
.ya71_c00001{bottom:417.688465pt;}
.ye0b_c00001{bottom:417.856667pt;}
.y13bf_c00001{bottom:417.862989pt;}
.ybbe_c00001{bottom:417.905419pt;}
.y1a47_c00001{bottom:418.186667pt;}
.y258_c00001{bottom:418.213045pt;}
.ybbd_c00001{bottom:418.255205pt;}
.y13c0_c00001{bottom:418.319480pt;}
.y1959_c00001{bottom:418.325333pt;}
.yd15_c00001{bottom:418.399277pt;}
.ye0a_c00001{bottom:418.418533pt;}
.y1681_c00001{bottom:418.429200pt;}
.y8fc_c00001{bottom:418.470053pt;}
.y1cd0_c00001{bottom:418.525333pt;}
.y177e_c00001{bottom:418.538651pt;}
.y1c91_c00001{bottom:418.570667pt;}
.ycce_c00001{bottom:418.609333pt;}
.y457_c00001{bottom:418.721712pt;}
.y1680_c00001{bottom:418.735400pt;}
.y14b4_c00001{bottom:418.861333pt;}
.y1204_c00001{bottom:418.922667pt;}
.y127b_c00001{bottom:419.040000pt;}
.y177f_c00001{bottom:419.054300pt;}
.y8fd_c00001{bottom:419.097173pt;}
.y13_c00001{bottom:419.136000pt;}
.yd16_c00001{bottom:419.147480pt;}
.ybbc_c00001{bottom:419.157864pt;}
.ye09_c00001{bottom:419.180733pt;}
.y14b3_c00001{bottom:419.188000pt;}
.y103_c00001{bottom:419.222667pt;}
.yeec_c00001{bottom:419.264101pt;}
.y1582_c00001{bottom:419.274600pt;}
.yfd9_c00001{bottom:419.388832pt;}
.ybbb_c00001{bottom:419.510603pt;}
.y259_c00001{bottom:419.536421pt;}
.y129b_c00001{bottom:419.604000pt;}
.y1a46_c00001{bottom:419.626667pt;}
.y195a_c00001{bottom:419.656157pt;}
.yd17_c00001{bottom:419.658459pt;}
.y1138_c00001{bottom:419.758667pt;}
.y458_c00001{bottom:419.922296pt;}
.y14b2_c00001{bottom:420.041333pt;}
.y1780_c00001{bottom:420.045073pt;}
.y1139_c00001{bottom:420.136117pt;}
.y25a_c00001{bottom:420.199920pt;}
.y167f_c00001{bottom:420.204067pt;}
.y1a45_c00001{bottom:420.264000pt;}
.y10ba_c00001{bottom:420.314667pt;}
.ye08_c00001{bottom:420.389667pt;}
.y1781_c00001{bottom:420.463128pt;}
.y62c_c00001{bottom:420.475557pt;}
.yeed_c00001{bottom:420.484957pt;}
.y14b1_c00001{bottom:420.521333pt;}
.y122b_c00001{bottom:420.589333pt;}
.y113a_c00001{bottom:420.640899pt;}
.y1876_c00001{bottom:420.663435pt;}
.y1583_c00001{bottom:420.680100pt;}
.y13c1_c00001{bottom:420.752907pt;}
.y1a44_c00001{bottom:420.874667pt;}
.y1875_c00001{bottom:420.900789pt;}
.y167e_c00001{bottom:420.923633pt;}
.y195b_c00001{bottom:420.928549pt;}
.y1782_c00001{bottom:421.025205pt;}
.yd18_c00001{bottom:421.119840pt;}
.yeee_c00001{bottom:421.149240pt;}
.y548_c00001{bottom:421.174967pt;}
.y13c2_c00001{bottom:421.235328pt;}
.yfd8_c00001{bottom:421.370876pt;}
.y195c_c00001{bottom:421.425808pt;}
.y10f6_c00001{bottom:421.474667pt;}
.y1874_c00001{bottom:421.537781pt;}
.y167d_c00001{bottom:421.632700pt;}
.y83e_c00001{bottom:421.733333pt;}
.y547_c00001{bottom:421.738767pt;}
.y1873_c00001{bottom:421.763904pt;}
.y62d_c00001{bottom:421.790128pt;}
.ye07_c00001{bottom:421.830100pt;}
.y113b_c00001{bottom:421.873715pt;}
.y14b0_c00001{bottom:421.925333pt;}
.y1584_c00001{bottom:421.926700pt;}
.y1a43_c00001{bottom:421.977333pt;}
.yd19_c00001{bottom:421.991443pt;}
.y459_c00001{bottom:422.051528pt;}
.yeef_c00001{bottom:422.117237pt;}
.ye06_c00001{bottom:422.166900pt;}
.y167c_c00001{bottom:422.180700pt;}
.y1585_c00001{bottom:422.338767pt;}
.y1a42_c00001{bottom:422.362667pt;}
.y1872_c00001{bottom:422.380683pt;}
.y137b_c00001{bottom:422.422667pt;}
.ye05_c00001{bottom:422.434267pt;}
.y75f_c00001{bottom:422.434412pt;}
.y1871_c00001{bottom:422.675307pt;}
.y1a70_c00001{bottom:422.778667pt;}
.y62e_c00001{bottom:422.798576pt;}
.y1a41_c00001{bottom:422.829333pt;}
.y113c_c00001{bottom:422.850379pt;}
.yd1a_c00001{bottom:422.857531pt;}
.yfd7_c00001{bottom:423.053276pt;}
.y195d_c00001{bottom:423.067360pt;}
.y1870_c00001{bottom:423.197440pt;}
.yef0_c00001{bottom:423.264843pt;}
.y62f_c00001{bottom:423.373317pt;}
.y546_c00001{bottom:423.411333pt;}
.y134a_c00001{bottom:423.468000pt;}
.y186f_c00001{bottom:423.528352pt;}
.y195e_c00001{bottom:423.530269pt;}
.yef1_c00001{bottom:423.564744pt;}
.y1a40_c00001{bottom:423.616000pt;}
.y1586_c00001{bottom:423.751600pt;}
.y186e_c00001{bottom:423.765984pt;}
.y545_c00001{bottom:423.814533pt;}
.y167b_c00001{bottom:423.827800pt;}
.ye04_c00001{bottom:423.846667pt;}
.y1a3f_c00001{bottom:423.986667pt;}
.y186d_c00001{bottom:424.072469pt;}
.y24d_c00001{bottom:424.082272pt;}
.yef2_c00001{bottom:424.095629pt;}
.y45a_c00001{bottom:424.106056pt;}
.yb57_c00001{bottom:424.173307pt;}
.yb56_c00001{bottom:424.173952pt;}
.y760_c00001{bottom:424.188333pt;}
.y113d_c00001{bottom:424.198912pt;}
.y1323_c00001{bottom:424.292000pt;}
.y544_c00001{bottom:424.325033pt;}
.y1a3e_c00001{bottom:424.325333pt;}
.y1bd2_c00001{bottom:424.553720pt;}
.y45b_c00001{bottom:424.584072pt;}
.y24e_c00001{bottom:424.605909pt;}
.y761_c00001{bottom:424.655505pt;}
.y1bd3_c00001{bottom:424.822007pt;}
.yce9_c00001{bottom:425.040000pt;}
.yfd6_c00001{bottom:425.143436pt;}
.y1587_c00001{bottom:425.160800pt;}
.y1afa_c00001{bottom:425.165333pt;}
.y167a_c00001{bottom:425.264800pt;}
.y630_c00001{bottom:425.297904pt;}
.y543_c00001{bottom:425.404467pt;}
.y1bd4_c00001{bottom:425.476553pt;}
.ya63_c00001{bottom:425.501548pt;}
.y1588_c00001{bottom:425.509367pt;}
.y542_c00001{bottom:425.642567pt;}
.y1bd5_c00001{bottom:425.731913pt;}
.yfd5_c00001{bottom:425.738896pt;}
.y113e_c00001{bottom:425.747368pt;}
.y8ee_c00001{bottom:425.777333pt;}
.y631_c00001{bottom:425.796336pt;}
.y35f_c00001{bottom:425.884727pt;}
.yef3_c00001{bottom:425.886891pt;}
.y1589_c00001{bottom:425.958000pt;}
.y762_c00001{bottom:426.101817pt;}
.y1b1b_c00001{bottom:426.216000pt;}
.y1b92_c00001{bottom:426.245333pt;}
.y1bd6_c00001{bottom:426.383453pt;}
.y632_c00001{bottom:426.445547pt;}
.y24f_c00001{bottom:426.542304pt;}
.y1bd7_c00001{bottom:426.571080pt;}
.y35e_c00001{bottom:426.680064pt;}
.y763_c00001{bottom:426.814460pt;}
.y35d_c00001{bottom:426.864213pt;}
.y1b93_c00001{bottom:426.930667pt;}
.y541_c00001{bottom:427.054733pt;}
.y1d19_c00001{bottom:427.081333pt;}
.ya64_c00001{bottom:427.155267pt;}
.y1bd8_c00001{bottom:427.273000pt;}
.y8ef_c00001{bottom:427.361409pt;}
.y1a54_c00001{bottom:427.377333pt;}
.y1301_c00001{bottom:427.440000pt;}
.y764_c00001{bottom:427.471515pt;}
.yfd4_c00001{bottom:427.474820pt;}
.y250_c00001{bottom:427.569429pt;}
.y35c_c00001{bottom:427.699213pt;}
.y251_c00001{bottom:427.878651pt;}
.y8f0_c00001{bottom:427.938609pt;}
.y540_c00001{bottom:428.150000pt;}
.y35b_c00001{bottom:428.279140pt;}
.y35a_c00001{bottom:428.650005pt;}
.ya65_c00001{bottom:428.771632pt;}
.y1b94_c00001{bottom:428.976000pt;}
.y1b95_c00001{bottom:429.105333pt;}
.ya66_c00001{bottom:429.119161pt;}
.y9cd_c00001{bottom:429.221984pt;}
.y765_c00001{bottom:429.306053pt;}
.y252_c00001{bottom:429.508624pt;}
.y359_c00001{bottom:429.596076pt;}
.y156_c00001{bottom:429.814505pt;}
.y157_c00001{bottom:429.814845pt;}
.y155_c00001{bottom:429.815143pt;}
.y158_c00001{bottom:429.815415pt;}
.y15a_c00001{bottom:429.815932pt;}
.y159_c00001{bottom:429.815949pt;}
.y766_c00001{bottom:429.981637pt;}
.y9cc_c00001{bottom:430.100560pt;}
.y44b_c00001{bottom:430.105333pt;}
.y8f1_c00001{bottom:430.171905pt;}
.y253_c00001{bottom:430.387205pt;}
.y5e_c00001{bottom:430.546667pt;}
.y44c_c00001{bottom:430.774753pt;}
.y8f2_c00001{bottom:430.828457pt;}
.y9cb_c00001{bottom:430.852256pt;}
.ya67_c00001{bottom:431.086265pt;}
.y9ca_c00001{bottom:431.097184pt;}
.y767_c00001{bottom:431.459181pt;}
.ybba_c00001{bottom:431.803317pt;}
.y124c_c00001{bottom:431.808000pt;}
.ycac_c00001{bottom:431.844000pt;}
.ya68_c00001{bottom:431.851797pt;}
.y9c9_c00001{bottom:431.909360pt;}
.y44d_c00001{bottom:431.932573pt;}
.y9c8_c00001{bottom:432.000000pt;}
.ybb9_c00001{bottom:432.133792pt;}
.yd0c_c00001{bottom:432.230192pt;}
.y1c1b_c00001{bottom:432.241333pt;}
.yc85_c00001{bottom:432.348000pt;}
.y1c1c_c00001{bottom:432.462667pt;}
.y13b5_c00001{bottom:432.711253pt;}
.y186c_c00001{bottom:432.712661pt;}
.y1c1d_c00001{bottom:432.729333pt;}
.y8f3_c00001{bottom:432.840805pt;}
.ybb8_c00001{bottom:432.906208pt;}
.y194e_c00001{bottom:432.965333pt;}
.yd0d_c00001{bottom:433.015445pt;}
.ye03_c00001{bottom:433.092081pt;}
.y13b6_c00001{bottom:433.169621pt;}
.ybb7_c00001{bottom:433.194232pt;}
.y14af_c00001{bottom:433.238667pt;}
.y1a3d_c00001{bottom:433.370667pt;}
.y44e_c00001{bottom:433.391053pt;}
.y1775_c00001{bottom:433.429289pt;}
.y14ae_c00001{bottom:433.502667pt;}
.ye02_c00001{bottom:433.513257pt;}
.y8f4_c00001{bottom:433.532925pt;}
.yd0e_c00001{bottom:433.582136pt;}
.y10b3_c00001{bottom:433.677333pt;}
.y1ccf_c00001{bottom:433.758667pt;}
.y1776_c00001{bottom:433.909856pt;}
.y10b4_c00001{bottom:433.930667pt;}
.yccd_c00001{bottom:433.944000pt;}
.y1c1e_c00001{bottom:434.042667pt;}
.ybb6_c00001{bottom:434.046413pt;}
.y1a3c_c00001{bottom:434.082667pt;}
.y186b_c00001{bottom:434.091925pt;}
.y14ad_c00001{bottom:434.130667pt;}
.y13b7_c00001{bottom:434.201339pt;}
.ybb5_c00001{bottom:434.245336pt;}
.y8f5_c00001{bottom:434.266073pt;}
.y1ce6_c00001{bottom:434.282667pt;}
.y1203_c00001{bottom:434.306667pt;}
.y194f_c00001{bottom:434.365589pt;}
.yee5_c00001{bottom:434.389133pt;}
.y127a_c00001{bottom:434.425333pt;}
.y12_c00001{bottom:434.441333pt;}
.yd0f_c00001{bottom:434.462283pt;}
.y44f_c00001{bottom:434.510593pt;}
.ye01_c00001{bottom:434.550987pt;}
.y129a_c00001{bottom:434.557333pt;}
.y13b8_c00001{bottom:434.576539pt;}
.y1950_c00001{bottom:434.610435pt;}
.ybb4_c00001{bottom:434.634088pt;}
.y1679_c00001{bottom:434.756100pt;}
.y1c1f_c00001{bottom:434.814667pt;}
.ye00_c00001{bottom:434.904696pt;}
.y1777_c00001{bottom:434.950148pt;}
.y1951_c00001{bottom:434.990859pt;}
.yd10_c00001{bottom:434.992717pt;}
.y1a3b_c00001{bottom:435.048000pt;}
.y10b5_c00001{bottom:435.056000pt;}
.y1c20_c00001{bottom:435.076000pt;}
.y157a_c00001{bottom:435.116333pt;}
.y102_c00001{bottom:435.142667pt;}
.y14ac_c00001{bottom:435.146667pt;}
.y83d_c00001{bottom:435.253733pt;}
.y1a3a_c00001{bottom:435.333333pt;}
.y1952_c00001{bottom:435.378293pt;}
.y10b6_c00001{bottom:435.442667pt;}
.y186a_c00001{bottom:435.507179pt;}
.y1a39_c00001{bottom:435.516000pt;}
.y122a_c00001{bottom:435.577333pt;}
.y1c89_c00001{bottom:435.600000pt;}
.y13b9_c00001{bottom:435.644717pt;}
.yee6_c00001{bottom:435.668403pt;}
.y1953_c00001{bottom:435.785117pt;}
.y1131_c00001{bottom:435.866829pt;}
.y1c8a_c00001{bottom:435.874667pt;}
.yd11_c00001{bottom:435.879787pt;}
.y1678_c00001{bottom:436.051833pt;}
.y1c8b_c00001{bottom:436.052000pt;}
.y13ba_c00001{bottom:436.067544pt;}
.yb77_c00001{bottom:436.080000pt;}
.y157b_c00001{bottom:436.148767pt;}
.y1778_c00001{bottom:436.220143pt;}
.yfd3_c00001{bottom:436.231616pt;}
.y10b7_c00001{bottom:436.234667pt;}
.y83c_c00001{bottom:436.316909pt;}
.y623_c00001{bottom:436.320213pt;}
.yee7_c00001{bottom:436.324019pt;}
.ydff_c00001{bottom:436.334775pt;}
.y10f5_c00001{bottom:436.437333pt;}
.y1779_c00001{bottom:436.449768pt;}
.y1954_c00001{bottom:436.486829pt;}
.y1132_c00001{bottom:436.517112pt;}
.y1869_c00001{bottom:436.556661pt;}
.y10b8_c00001{bottom:436.557333pt;}
.y1677_c00001{bottom:436.567900pt;}
.ydfe_c00001{bottom:436.571828pt;}
.yb55_c00001{bottom:436.574524pt;}
.y1c8c_c00001{bottom:436.574667pt;}
.y53f_c00001{bottom:436.712200pt;}
.y1a38_c00001{bottom:436.772000pt;}
.y1c8d_c00001{bottom:436.781333pt;}
.y14ab_c00001{bottom:436.804000pt;}
.y177a_c00001{bottom:436.838493pt;}
.y13bb_c00001{bottom:436.893848pt;}
.y1349_c00001{bottom:436.909333pt;}
.y624_c00001{bottom:436.913445pt;}
.y1868_c00001{bottom:437.007520pt;}
.y53e_c00001{bottom:437.014233pt;}
.y1955_c00001{bottom:437.036507pt;}
.yfd2_c00001{bottom:437.114504pt;}
.y10b9_c00001{bottom:437.146667pt;}
.y450_c00001{bottom:437.159233pt;}
.yd12_c00001{bottom:437.168488pt;}
.y1676_c00001{bottom:437.177200pt;}
.yee8_c00001{bottom:437.179592pt;}
.y83b_c00001{bottom:437.181005pt;}
.y13bc_c00001{bottom:437.300395pt;}
.y757_c00001{bottom:437.313717pt;}
.y1c8e_c00001{bottom:437.345333pt;}
.y1133_c00001{bottom:437.360036pt;}
.y1956_c00001{bottom:437.377888pt;}
.y625_c00001{bottom:437.390016pt;}
.yb54_c00001{bottom:437.410823pt;}
.y157c_c00001{bottom:437.439100pt;}
.ydfd_c00001{bottom:437.538595pt;}
.y1134_c00001{bottom:437.550864pt;}
.y1a6f_c00001{bottom:437.554667pt;}
.y137a_c00001{bottom:437.650667pt;}
.y1c8f_c00001{bottom:437.748000pt;}
.yb53_c00001{bottom:437.757073pt;}
.y177b_c00001{bottom:437.758207pt;}
.y83a_c00001{bottom:437.764493pt;}
.y1135_c00001{bottom:437.775796pt;}
.ydfc_c00001{bottom:437.803371pt;}
.y1348_c00001{bottom:437.842667pt;}
.y758_c00001{bottom:437.904693pt;}
.y13bd_c00001{bottom:437.948208pt;}
.y451_c00001{bottom:437.968393pt;}
.y1957_c00001{bottom:437.971536pt;}
.y177c_c00001{bottom:437.982388pt;}
.y839_c00001{bottom:438.015317pt;}
.y157d_c00001{bottom:438.021233pt;}
.y1347_c00001{bottom:438.053333pt;}
.y53d_c00001{bottom:438.118433pt;}
.yb52_c00001{bottom:438.153400pt;}
.y1c90_c00001{bottom:438.168000pt;}
.y1a37_c00001{bottom:438.206667pt;}
.y1cab_c00001{bottom:438.234667pt;}
.y626_c00001{bottom:438.313557pt;}
.y838_c00001{bottom:438.329621pt;}
.y1958_c00001{bottom:438.341165pt;}
.y1136_c00001{bottom:438.383092pt;}
.yb51_c00001{bottom:438.402203pt;}
.y53c_c00001{bottom:438.443100pt;}
.yb50_c00001{bottom:438.590113pt;}
.y1675_c00001{bottom:438.638267pt;}
.y1346_c00001{bottom:438.654667pt;}
.y1137_c00001{bottom:438.664375pt;}
.y1322_c00001{bottom:438.696000pt;}
.y1867_c00001{bottom:438.718197pt;}
.yee9_c00001{bottom:438.721011pt;}
.ydfb_c00001{bottom:438.725333pt;}
.y157e_c00001{bottom:438.747600pt;}
.y627_c00001{bottom:438.786917pt;}
.yfd1_c00001{bottom:438.922976pt;}
.y837_c00001{bottom:438.960773pt;}
.y452_c00001{bottom:439.056733pt;}
.y1345_c00001{bottom:439.110667pt;}
.y1a36_c00001{bottom:439.205333pt;}
.yb4f_c00001{bottom:439.445132pt;}
.y53b_c00001{bottom:439.534233pt;}
.y1344_c00001{bottom:439.634667pt;}
.yfd0_c00001{bottom:439.649060pt;}
.y1bcd_c00001{bottom:439.676367pt;}
.y8ed_c00001{bottom:439.680000pt;}
.yb4e_c00001{bottom:439.681333pt;}
.y1674_c00001{bottom:439.831333pt;}
.y453_c00001{bottom:439.876093pt;}
.y1343_c00001{bottom:439.922667pt;}
.y628_c00001{bottom:440.091547pt;}
.yeea_c00001{bottom:440.144216pt;}
.y1673_c00001{bottom:440.145300pt;}
.y8e4_c00001{bottom:440.177333pt;}
.y157f_c00001{bottom:440.203200pt;}
.y53a_c00001{bottom:440.239800pt;}
.y759_c00001{bottom:440.424245pt;}
.yfcf_c00001{bottom:440.427192pt;}
.y1af9_c00001{bottom:440.482667pt;}
.y539_c00001{bottom:440.542933pt;}
.y454_c00001{bottom:440.603833pt;}
.ya5c_c00001{bottom:440.626336pt;}
.y1bce_c00001{bottom:440.654633pt;}
.y1580_c00001{bottom:440.662367pt;}
.y629_c00001{bottom:440.667147pt;}
.yeeb_c00001{bottom:440.679227pt;}
.y75a_c00001{bottom:440.910595pt;}
.y358_c00001{bottom:441.063249pt;}
.y1b8d_c00001{bottom:441.124000pt;}
.y8e5_c00001{bottom:441.151501pt;}
.y357_c00001{bottom:441.256555pt;}
.y538_c00001{bottom:441.349633pt;}
.y356_c00001{bottom:441.412213pt;}
.y1581_c00001{bottom:441.597767pt;}
.y1bcf_c00001{bottom:441.675740pt;}
.ya5d_c00001{bottom:441.688877pt;}
.y1b1a_c00001{bottom:441.698667pt;}
.y1b8e_c00001{bottom:441.816000pt;}
.y1d11_c00001{bottom:441.844000pt;}
.y1bd0_c00001{bottom:441.954620pt;}
.y62a_c00001{bottom:442.035829pt;}
.ya5e_c00001{bottom:442.105739pt;}
.y355_c00001{bottom:442.120628pt;}
.y1300_c00001{bottom:442.320000pt;}
.y62b_c00001{bottom:442.456272pt;}
.yfce_c00001{bottom:442.494000pt;}
.y354_c00001{bottom:442.549548pt;}
.y1b8f_c00001{bottom:442.593333pt;}
.y1bd1_c00001{bottom:442.605373pt;}
.y1a53_c00001{bottom:442.637333pt;}
.y353_c00001{bottom:442.942376pt;}
.y1d12_c00001{bottom:442.973333pt;}
.y1b90_c00001{bottom:443.126667pt;}
.y8e6_c00001{bottom:443.229317pt;}
.y75b_c00001{bottom:443.351968pt;}
.y1d13_c00001{bottom:443.380000pt;}
.y1b91_c00001{bottom:443.446667pt;}
.y352_c00001{bottom:443.757599pt;}
.y56_c00001{bottom:443.761333pt;}
.y9c7_c00001{bottom:443.879312pt;}
.y8e7_c00001{bottom:443.908905pt;}
.ya5f_c00001{bottom:443.933637pt;}
.y75c_c00001{bottom:444.081061pt;}
.y150_c00001{bottom:444.183223pt;}
.y14e_c00001{bottom:444.183337pt;}
.y151_c00001{bottom:444.183464pt;}
.y14f_c00001{bottom:444.183720pt;}
.y154_c00001{bottom:444.183736pt;}
.y152_c00001{bottom:444.183820pt;}
.y153_c00001{bottom:444.184055pt;}
.y9c6_c00001{bottom:444.211541pt;}
.y9c5_c00001{bottom:444.394341pt;}
.y57_c00001{bottom:444.416000pt;}
.ya60_c00001{bottom:444.550007pt;}
.y9c4_c00001{bottom:444.618581pt;}
.y1d14_c00001{bottom:444.670667pt;}
.y75d_c00001{bottom:444.702184pt;}
.yfcd_c00001{bottom:444.750176pt;}
.y1d15_c00001{bottom:444.937333pt;}
.y246_c00001{bottom:444.961195pt;}
.y58_c00001{bottom:445.114667pt;}
.y59_c00001{bottom:445.288000pt;}
.y1d16_c00001{bottom:445.354667pt;}
.y5a_c00001{bottom:445.520000pt;}
.y9c3_c00001{bottom:445.569419pt;}
.y443_c00001{bottom:445.709333pt;}
.y247_c00001{bottom:445.797515pt;}
.y5b_c00001{bottom:446.078667pt;}
.ya61_c00001{bottom:446.118095pt;}
.y248_c00001{bottom:446.135739pt;}
.y8e8_c00001{bottom:446.176209pt;}
.y9c2_c00001{bottom:446.193179pt;}
.y1d17_c00001{bottom:446.205333pt;}
.y5c_c00001{bottom:446.234667pt;}
.ybb3_c00001{bottom:446.275747pt;}
.y1d18_c00001{bottom:446.500000pt;}
.ybb2_c00001{bottom:446.525640pt;}
.y124b_c00001{bottom:446.554667pt;}
.y9c1_c00001{bottom:446.639771pt;}
.y8e9_c00001{bottom:446.660121pt;}
.y75e_c00001{bottom:446.665365pt;}
.ybb1_c00001{bottom:446.720952pt;}
.ycab_c00001{bottom:446.721333pt;}
.y444_c00001{bottom:446.777333pt;}
.y5d_c00001{bottom:446.974667pt;}
.y249_c00001{bottom:447.141637pt;}
.y8ea_c00001{bottom:447.186777pt;}
.yd03_c00001{bottom:447.351928pt;}
.y176d_c00001{bottom:447.357259pt;}
.y13ae_c00001{bottom:447.358901pt;}
.ya62_c00001{bottom:447.543961pt;}
.ybb0_c00001{bottom:447.567627pt;}
.yc84_c00001{bottom:447.717333pt;}
.ybaf_c00001{bottom:447.932573pt;}
.y14aa_c00001{bottom:448.144000pt;}
.ydfa_c00001{bottom:448.280381pt;}
.y1946_c00001{bottom:448.306189pt;}
.yd04_c00001{bottom:448.358821pt;}
.y24a_c00001{bottom:448.387600pt;}
.y1cce_c00001{bottom:448.434667pt;}
.y14a9_c00001{bottom:448.528000pt;}
.ybae_c00001{bottom:448.604621pt;}
.y1947_c00001{bottom:448.673704pt;}
.yd05_c00001{bottom:448.786603pt;}
.yccc_c00001{bottom:448.806667pt;}
.y1299_c00001{bottom:448.874667pt;}
.y1a35_c00001{bottom:448.921333pt;}
.y176e_c00001{bottom:448.922008pt;}
.ybad_c00001{bottom:448.930224pt;}
.y1c1a_c00001{bottom:448.938667pt;}
.y13af_c00001{bottom:448.956272pt;}
.y1279_c00001{bottom:448.957333pt;}
.y8eb_c00001{bottom:448.986393pt;}
.y445_c00001{bottom:448.997333pt;}
.y24b_c00001{bottom:449.093947pt;}
.y836_c00001{bottom:449.160184pt;}
.yd06_c00001{bottom:449.239379pt;}
.y176f_c00001{bottom:449.299629pt;}
.ydf9_c00001{bottom:449.383520pt;}
.ybac_c00001{bottom:449.518043pt;}
.y1672_c00001{bottom:449.519533pt;}
.y14a8_c00001{bottom:449.540000pt;}
.y11_c00001{bottom:449.553333pt;}
.y1202_c00001{bottom:449.581333pt;}
.y8ec_c00001{bottom:449.618505pt;}
.y1948_c00001{bottom:449.653755pt;}
.y1a34_c00001{bottom:449.714667pt;}
.yedf_c00001{bottom:449.751333pt;}
.y446_c00001{bottom:449.796000pt;}
.y101_c00001{bottom:449.825333pt;}
.ydf8_c00001{bottom:449.985763pt;}
.y1866_c00001{bottom:450.055989pt;}
.yd07_c00001{bottom:450.057259pt;}
.y1671_c00001{bottom:450.067133pt;}
.y24c_c00001{bottom:450.163077pt;}
.y10b2_c00001{bottom:450.180000pt;}
.y1572_c00001{bottom:450.241367pt;}
.y835_c00001{bottom:450.242488pt;}
.yd08_c00001{bottom:450.255792pt;}
.y13b0_c00001{bottom:450.308931pt;}
.y1770_c00001{bottom:450.319060pt;}
.yee0_c00001{bottom:450.348328pt;}
.y1865_c00001{bottom:450.418389pt;}
.y14a7_c00001{bottom:450.425333pt;}
.y61c_c00001{bottom:450.489333pt;}
.yd09_c00001{bottom:450.492565pt;}
.y1a33_c00001{bottom:450.585333pt;}
.y1771_c00001{bottom:450.621933pt;}
.y1864_c00001{bottom:450.665291pt;}
.y14a6_c00001{bottom:450.685333pt;}
.ydf7_c00001{bottom:450.727339pt;}
.y112a_c00001{bottom:450.743999pt;}
.y1670_c00001{bottom:450.785567pt;}
.yd0a_c00001{bottom:450.836827pt;}
.y13b1_c00001{bottom:451.078461pt;}
.y834_c00001{bottom:451.089064pt;}
.y1949_c00001{bottom:451.100184pt;}
.y537_c00001{bottom:451.102433pt;}
.yfcc_c00001{bottom:451.135084pt;}
.ydf6_c00001{bottom:451.173939pt;}
.y1573_c00001{bottom:451.196700pt;}
.y1229_c00001{bottom:451.225333pt;}
.y61d_c00001{bottom:451.450293pt;}
.y833_c00001{bottom:451.504192pt;}
.y1574_c00001{bottom:451.514800pt;}
.y1772_c00001{bottom:451.554840pt;}
.y1863_c00001{bottom:451.619371pt;}
.y194a_c00001{bottom:451.619437pt;}
.yfcb_c00001{bottom:451.623284pt;}
.y14a5_c00001{bottom:451.649333pt;}
.y536_c00001{bottom:451.657100pt;}
.yd0b_c00001{bottom:451.683720pt;}
.y112b_c00001{bottom:451.758799pt;}
.y1a32_c00001{bottom:451.837333pt;}
.y14a4_c00001{bottom:451.922667pt;}
.y112c_c00001{bottom:451.985895pt;}
.y10f4_c00001{bottom:452.038667pt;}
.y447_c00001{bottom:452.118667pt;}
.y166f_c00001{bottom:452.177000pt;}
.y1773_c00001{bottom:452.196956pt;}
.y1a31_c00001{bottom:452.217333pt;}
.yfca_c00001{bottom:452.323504pt;}
.y13b2_c00001{bottom:452.367437pt;}
.y1575_c00001{bottom:452.474667pt;}
.y61e_c00001{bottom:452.579552pt;}
.y448_c00001{bottom:452.608000pt;}
.y1862_c00001{bottom:452.662165pt;}
.ydf5_c00001{bottom:452.728899pt;}
.yb4d_c00001{bottom:452.794667pt;}
.y13b3_c00001{bottom:452.813736pt;}
.y194b_c00001{bottom:452.833779pt;}
.y1576_c00001{bottom:452.835733pt;}
.y1a6e_c00001{bottom:452.882667pt;}
.y832_c00001{bottom:452.921320pt;}
.y1342_c00001{bottom:452.941333pt;}
.y535_c00001{bottom:453.007433pt;}
.y61f_c00001{bottom:453.044539pt;}
.y194c_c00001{bottom:453.057789pt;}
.y1861_c00001{bottom:453.115221pt;}
.y112d_c00001{bottom:453.121245pt;}
.y166e_c00001{bottom:453.160233pt;}
.y1a30_c00001{bottom:453.209333pt;}
.y13b4_c00001{bottom:453.319800pt;}
.y751_c00001{bottom:453.381745pt;}
.y1774_c00001{bottom:453.410288pt;}
.y534_c00001{bottom:453.433167pt;}
.yee1_c00001{bottom:453.440387pt;}
.y831_c00001{bottom:453.604000pt;}
.y752_c00001{bottom:453.693355pt;}
.y1577_c00001{bottom:453.741067pt;}
.yee2_c00001{bottom:453.855347pt;}
.y1321_c00001{bottom:453.948000pt;}
.yfc9_c00001{bottom:454.080544pt;}
.y194d_c00001{bottom:454.136704pt;}
.y166d_c00001{bottom:454.297533pt;}
.y1bc6_c00001{bottom:454.317640pt;}
.y1a2f_c00001{bottom:454.321333pt;}
.y620_c00001{bottom:454.366736pt;}
.y112e_c00001{bottom:454.492072pt;}
.yee3_c00001{bottom:454.517861pt;}
.y533_c00001{bottom:454.619300pt;}
.y621_c00001{bottom:454.731184pt;}
.y166c_c00001{bottom:454.791933pt;}
.y532_c00001{bottom:454.963900pt;}
.yc7e_c00001{bottom:455.040000pt;}
.y1578_c00001{bottom:455.041700pt;}
.y449_c00001{bottom:455.113333pt;}
.y753_c00001{bottom:455.120915pt;}
.y1bc7_c00001{bottom:455.180993pt;}
.y112f_c00001{bottom:455.219905pt;}
.y531_c00001{bottom:455.402067pt;}
.y1579_c00001{bottom:455.425167pt;}
.y1111_c00001{bottom:455.520000pt;}
.y8dc_c00001{bottom:455.542667pt;}
.y1bc8_c00001{bottom:455.577247pt;}
.y1c88_c00001{bottom:455.630667pt;}
.y1af8_c00001{bottom:455.706667pt;}
.y44a_c00001{bottom:455.712000pt;}
.ya55_c00001{bottom:455.748389pt;}
.y1130_c00001{bottom:455.765141pt;}
.y622_c00001{bottom:455.834907pt;}
.y351_c00001{bottom:455.878577pt;}
.y1bc9_c00001{bottom:455.883993pt;}
.y754_c00001{bottom:455.971420pt;}
.yee4_c00001{bottom:456.118248pt;}
.y1b86_c00001{bottom:456.244000pt;}
.y350_c00001{bottom:456.269708pt;}
.y1b19_c00001{bottom:456.452000pt;}
.yfc8_c00001{bottom:456.579676pt;}
.y1bca_c00001{bottom:456.709893pt;}
.y530_c00001{bottom:456.717000pt;}
.yb76_c00001{bottom:456.720000pt;}
.y34f_c00001{bottom:456.721236pt;}
.y8dd_c00001{bottom:456.741335pt;}
.y1b87_c00001{bottom:456.868000pt;}
.y1bcb_c00001{bottom:456.916787pt;}
.y34e_c00001{bottom:456.935061pt;}
.y1d0a_c00001{bottom:456.964000pt;}
.y1b88_c00001{bottom:457.036000pt;}
.y12ff_c00001{bottom:457.080000pt;}
.y1b89_c00001{bottom:457.225333pt;}
.y1bcc_c00001{bottom:457.229387pt;}
.y34d_c00001{bottom:457.262407pt;}
.yfc7_c00001{bottom:457.280556pt;}
.y34c_c00001{bottom:457.460216pt;}
.y1d0b_c00001{bottom:457.488000pt;}
.ya56_c00001{bottom:457.700076pt;}
.y1b8a_c00001{bottom:457.758667pt;}
.y146_c00001{bottom:457.921333pt;}
.y34b_c00001{bottom:458.049215pt;}
.y147_c00001{bottom:458.258345pt;}
.y755_c00001{bottom:458.421228pt;}
.y1d0c_c00001{bottom:458.434667pt;}
.y1b8b_c00001{bottom:458.464000pt;}
.y8de_c00001{bottom:458.579269pt;}
.y34a_c00001{bottom:458.638037pt;}
.y1b8c_c00001{bottom:458.722667pt;}
.y148_c00001{bottom:458.857091pt;}
.y1d0d_c00001{bottom:458.862667pt;}
.y51_c00001{bottom:458.881333pt;}
.y23d_c00001{bottom:458.889333pt;}
.y149_c00001{bottom:459.069389pt;}
.yfc6_c00001{bottom:459.143320pt;}
.y9c0_c00001{bottom:459.165765pt;}
.y1d0e_c00001{bottom:459.220000pt;}
.y14a_c00001{bottom:459.284617pt;}
.y9bf_c00001{bottom:459.306661pt;}
.y23e_c00001{bottom:459.313104pt;}
.y52_c00001{bottom:459.401333pt;}
.y9be_c00001{bottom:459.488229pt;}
.ya57_c00001{bottom:459.562676pt;}
.y14b_c00001{bottom:459.831172pt;}
.y53_c00001{bottom:459.940000pt;}
.ya58_c00001{bottom:459.975900pt;}
.y9bd_c00001{bottom:460.243637pt;}
.y1d0f_c00001{bottom:460.337333pt;}
.y14c_c00001{bottom:460.404801pt;}
.y9bc_c00001{bottom:460.470965pt;}
.y756_c00001{bottom:460.592533pt;}
.y14d_c00001{bottom:460.651507pt;}
.y8df_c00001{bottom:460.748877pt;}
.y54_c00001{bottom:460.802667pt;}
.y9bb_c00001{bottom:460.928997pt;}
.y23f_c00001{bottom:460.931243pt;}
.ya59_c00001{bottom:460.980269pt;}
.y9ba_c00001{bottom:461.185301pt;}
.ybab_c00001{bottom:461.192477pt;}
.y8e0_c00001{bottom:461.450867pt;}
.y55_c00001{bottom:461.492000pt;}
.ya5a_c00001{bottom:461.539225pt;}
.y1d10_c00001{bottom:461.656000pt;}
.y9b9_c00001{bottom:461.761333pt;}
.y240_c00001{bottom:461.854160pt;}
.y124a_c00001{bottom:461.938667pt;}
.y13a5_c00001{bottom:462.003899pt;}
.y1c14_c00001{bottom:462.242667pt;}
.ybaa_c00001{bottom:462.281821pt;}
.y241_c00001{bottom:462.340053pt;}
.y14a3_c00001{bottom:462.437333pt;}
.ycfa_c00001{bottom:462.476360pt;}
.ycfb_c00001{bottom:462.829203pt;}
.yc83_c00001{bottom:462.837333pt;}
.ycaa_c00001{bottom:462.897333pt;}
.y43c_c00001{bottom:462.978667pt;}
.yba9_c00001{bottom:463.094029pt;}
.y8e1_c00001{bottom:463.101895pt;}
.y13a6_c00001{bottom:463.108528pt;}
.y1c15_c00001{bottom:463.153333pt;}
.y193f_c00001{bottom:463.184891pt;}
.ycfc_c00001{bottom:463.186152pt;}
.y1766_c00001{bottom:463.198905pt;}
.y9_c00001{bottom:463.201333pt;}
.y14a2_c00001{bottom:463.240000pt;}
.y1c16_c00001{bottom:463.244000pt;}
.ya5b_c00001{bottom:463.341661pt;}
.ydf4_c00001{bottom:463.347507pt;}
.y13a7_c00001{bottom:463.426669pt;}
.ya_c00001{bottom:463.437000pt;}
.yba8_c00001{bottom:463.542563pt;}
.y14a1_c00001{bottom:463.596000pt;}
.y166b_c00001{bottom:463.782967pt;}
.y1a2e_c00001{bottom:463.818667pt;}
.y1860_c00001{bottom:463.879723pt;}
.y1c17_c00001{bottom:463.890667pt;}
.yb75_c00001{bottom:463.920000pt;}
.y8e2_c00001{bottom:463.941025pt;}
.yb_c00001{bottom:464.049093pt;}
.yccb_c00001{bottom:464.053333pt;}
.y43d_c00001{bottom:464.082667pt;}
.y14a0_c00001{bottom:464.086667pt;}
.y13a8_c00001{bottom:464.116563pt;}
.y1c18_c00001{bottom:464.152000pt;}
.y166a_c00001{bottom:464.154867pt;}
.yc_c00001{bottom:464.262707pt;}
.y242_c00001{bottom:464.295947pt;}
.ycfd_c00001{bottom:464.342808pt;}
.y1669_c00001{bottom:464.418633pt;}
.ydf3_c00001{bottom:464.473613pt;}
.yba7_c00001{bottom:464.484195pt;}
.y1298_c00001{bottom:464.497333pt;}
.y1a2d_c00001{bottom:464.544000pt;}
.y243_c00001{bottom:464.550448pt;}
.y1278_c00001{bottom:464.640000pt;}
.y10ab_c00001{bottom:464.641333pt;}
.yd_c00001{bottom:464.680427pt;}
.ycfe_c00001{bottom:464.712064pt;}
.y1940_c00001{bottom:464.733131pt;}
.y100_c00001{bottom:464.736000pt;}
.y1c19_c00001{bottom:464.738667pt;}
.y10ac_c00001{bottom:464.805333pt;}
.y149f_c00001{bottom:464.808000pt;}
.ye_c00001{bottom:464.826680pt;}
.y1a2c_c00001{bottom:464.832000pt;}
.yba6_c00001{bottom:464.880592pt;}
.y1201_c00001{bottom:464.921333pt;}
.y185f_c00001{bottom:464.960768pt;}
.yf_c00001{bottom:464.982693pt;}
.ycff_c00001{bottom:465.010443pt;}
.y1767_c00001{bottom:465.054476pt;}
.y13a9_c00001{bottom:465.088909pt;}
.y244_c00001{bottom:465.089915pt;}
.yed8_c00001{bottom:465.114101pt;}
.y149e_c00001{bottom:465.122667pt;}
.y185e_c00001{bottom:465.311840pt;}
.y1a2b_c00001{bottom:465.378667pt;}
.y10_c00001{bottom:465.534693pt;}
.y10ad_c00001{bottom:465.538667pt;}
.y43e_c00001{bottom:465.540000pt;}
.y1122_c00001{bottom:465.623629pt;}
.y13aa_c00001{bottom:465.653608pt;}
.y52f_c00001{bottom:465.683100pt;}
.y10ae_c00001{bottom:465.737333pt;}
.yed9_c00001{bottom:465.759579pt;}
.yd00_c00001{bottom:465.759603pt;}
.y245_c00001{bottom:465.878619pt;}
.ydf2_c00001{bottom:465.899565pt;}
.y1228_c00001{bottom:465.972000pt;}
.y1668_c00001{bottom:465.993733pt;}
.y149d_c00001{bottom:466.034667pt;}
.y156b_c00001{bottom:466.086667pt;}
.y8e3_c00001{bottom:466.089248pt;}
.y830_c00001{bottom:466.151747pt;}
.yd01_c00001{bottom:466.153120pt;}
.y185d_c00001{bottom:466.185387pt;}
.y10af_c00001{bottom:466.197333pt;}
.y1123_c00001{bottom:466.224656pt;}
.y1941_c00001{bottom:466.226856pt;}
.yeda_c00001{bottom:466.321451pt;}
.ydf1_c00001{bottom:466.360099pt;}
.y149c_c00001{bottom:466.362667pt;}
.y82f_c00001{bottom:466.420725pt;}
.y1768_c00001{bottom:466.488557pt;}
.y1667_c00001{bottom:466.495167pt;}
.y156c_c00001{bottom:466.541033pt;}
.y616_c00001{bottom:466.550235pt;}
.y185c_c00001{bottom:466.591669pt;}
.yb4c_c00001{bottom:466.598667pt;}
.y1124_c00001{bottom:466.678437pt;}
.y1942_c00001{bottom:466.706765pt;}
.y10b0_c00001{bottom:466.714667pt;}
.y1769_c00001{bottom:466.771497pt;}
.y149b_c00001{bottom:466.804000pt;}
.y1666_c00001{bottom:466.839900pt;}
.y1a2a_c00001{bottom:466.846667pt;}
.y10f3_c00001{bottom:466.861333pt;}
.y82e_c00001{bottom:466.960541pt;}
.yb4b_c00001{bottom:467.094667pt;}
.y1943_c00001{bottom:467.116507pt;}
.y13ab_c00001{bottom:467.179336pt;}
.y156d_c00001{bottom:467.184933pt;}
.y1a29_c00001{bottom:467.229333pt;}
.y43f_c00001{bottom:467.262667pt;}
.y149a_c00001{bottom:467.282667pt;}
.ydf0_c00001{bottom:467.357901pt;}
.y10b1_c00001{bottom:467.372000pt;}
.yb4a_c00001{bottom:467.417333pt;}
.y13ac_c00001{bottom:467.501360pt;}
.yedb_c00001{bottom:467.508605pt;}
.yd02_c00001{bottom:467.531264pt;}
.y74b_c00001{bottom:467.543089pt;}
.y176a_c00001{bottom:467.628015pt;}
.y1125_c00001{bottom:467.629543pt;}
.y185b_c00001{bottom:467.731413pt;}
.y1379_c00001{bottom:467.782667pt;}
.y617_c00001{bottom:467.786293pt;}
.yb49_c00001{bottom:467.849333pt;}
.y1a6d_c00001{bottom:467.877333pt;}
.y1341_c00001{bottom:467.900000pt;}
.y440_c00001{bottom:467.925333pt;}
.yedc_c00001{bottom:468.026325pt;}
.yb48_c00001{bottom:468.088000pt;}
.y82d_c00001{bottom:468.093704pt;}
.y1665_c00001{bottom:468.238800pt;}
.y156e_c00001{bottom:468.278100pt;}
.y1944_c00001{bottom:468.302085pt;}
.ydef_c00001{bottom:468.361101pt;}
.y176b_c00001{bottom:468.383319pt;}
.y1a28_c00001{bottom:468.404000pt;}
.y1664_c00001{bottom:468.520267pt;}
.y52e_c00001{bottom:468.522767pt;}
.y185a_c00001{bottom:468.658165pt;}
.yb47_c00001{bottom:468.710667pt;}
.y1a27_c00001{bottom:468.721333pt;}
.ydee_c00001{bottom:468.725333pt;}
.y13ad_c00001{bottom:468.731877pt;}
.y618_c00001{bottom:468.871573pt;}
.yedd_c00001{bottom:468.909965pt;}
.yb46_c00001{bottom:468.917333pt;}
.y1859_c00001{bottom:468.958805pt;}
.y176c_c00001{bottom:468.979420pt;}
.y1320_c00001{bottom:469.092000pt;}
.y82c_c00001{bottom:469.132789pt;}
.y52d_c00001{bottom:469.175700pt;}
.y82b_c00001{bottom:469.200629pt;}
.y74c_c00001{bottom:469.210833pt;}
.y1126_c00001{bottom:469.357516pt;}
.y1945_c00001{bottom:469.484317pt;}
.y1663_c00001{bottom:469.678800pt;}
.yb45_c00001{bottom:469.681333pt;}
.y156f_c00001{bottom:469.735933pt;}
.y1127_c00001{bottom:469.890167pt;}
.y1bbe_c00001{bottom:469.919207pt;}
.y619_c00001{bottom:470.006437pt;}
.y1bbf_c00001{bottom:470.374140pt;}
.y52c_c00001{bottom:470.383567pt;}
.y74d_c00001{bottom:470.447404pt;}
.y61a_c00001{bottom:470.552773pt;}
.y1570_c00001{bottom:470.576567pt;}
.y1bc0_c00001{bottom:470.651993pt;}
.y1128_c00001{bottom:470.700973pt;}
.y441_c00001{bottom:470.706667pt;}
.yede_c00001{bottom:470.746603pt;}
.yfc5_c00001{bottom:470.766916pt;}
.y52b_c00001{bottom:470.790067pt;}
.y1bc1_c00001{bottom:470.895200pt;}
.y1571_c00001{bottom:470.972433pt;}
.y1af7_c00001{bottom:471.020000pt;}
.ya4f_c00001{bottom:471.121851pt;}
.y8d4_c00001{bottom:471.138667pt;}
.y1129_c00001{bottom:471.186761pt;}
.y349_c00001{bottom:471.209121pt;}
.y1b7e_c00001{bottom:471.364000pt;}
.y61b_c00001{bottom:471.435317pt;}
.y1bc2_c00001{bottom:471.500627pt;}
.y348_c00001{bottom:471.504961pt;}
.y1b18_c00001{bottom:471.706667pt;}
.y1caa_c00001{bottom:471.710667pt;}
.y1b7f_c00001{bottom:471.738667pt;}
.y1bc3_c00001{bottom:471.774780pt;}
.y347_c00001{bottom:471.796108pt;}
.ya50_c00001{bottom:471.888153pt;}
.y1b80_c00001{bottom:472.006667pt;}
.y1d06_c00001{bottom:472.084000pt;}
.y1bc4_c00001{bottom:472.092667pt;}
.y346_c00001{bottom:472.139885pt;}
.y1bc5_c00001{bottom:472.360853pt;}
.y442_c00001{bottom:472.474667pt;}
.y1b81_c00001{bottom:472.524000pt;}
.y52a_c00001{bottom:472.562433pt;}
.y12fe_c00001{bottom:472.682667pt;}
.y1b82_c00001{bottom:472.758667pt;}
.y345_c00001{bottom:472.894751pt;}
.y8d5_c00001{bottom:472.901727pt;}
.y74e_c00001{bottom:473.136537pt;}
.ya51_c00001{bottom:473.202547pt;}
.y1d07_c00001{bottom:473.236000pt;}
.y344_c00001{bottom:473.378647pt;}
.yfc4_c00001{bottom:473.381704pt;}
.y9b8_c00001{bottom:473.386965pt;}
.y1b83_c00001{bottom:473.404000pt;}
.y13e_c00001{bottom:473.520587pt;}
.ya52_c00001{bottom:473.569352pt;}
.y1b84_c00001{bottom:473.660000pt;}
.y13f_c00001{bottom:473.673413pt;}
.y8d6_c00001{bottom:473.685887pt;}
.y1d08_c00001{bottom:473.737333pt;}
.y140_c00001{bottom:473.803111pt;}
.y343_c00001{bottom:473.871869pt;}
.y1b85_c00001{bottom:473.897333pt;}
.y9b7_c00001{bottom:473.920485pt;}
.yfc3_c00001{bottom:473.968004pt;}
.ya53_c00001{bottom:473.981107pt;}
.y48_c00001{bottom:474.001333pt;}
.y236_c00001{bottom:474.010667pt;}
.y9b6_c00001{bottom:474.186344pt;}
.y1c87_c00001{bottom:474.244000pt;}
.y141_c00001{bottom:474.294180pt;}
.y49_c00001{bottom:474.394667pt;}
.y142_c00001{bottom:474.442064pt;}
.y342_c00001{bottom:474.480032pt;}
.yfc2_c00001{bottom:474.492000pt;}
.y4a_c00001{bottom:474.557333pt;}
.y143_c00001{bottom:474.624268pt;}
.y9b5_c00001{bottom:474.816081pt;}
.y4b_c00001{bottom:475.020000pt;}
.y237_c00001{bottom:475.061387pt;}
.y4c_c00001{bottom:475.173333pt;}
.y74f_c00001{bottom:475.190615pt;}
.y1d09_c00001{bottom:475.454667pt;}
.y9b4_c00001{bottom:475.493225pt;}
.y144_c00001{bottom:475.556188pt;}
.y238_c00001{bottom:475.638867pt;}
.y750_c00001{bottom:475.672151pt;}
.y145_c00001{bottom:475.709352pt;}
.y4d_c00001{bottom:475.733333pt;}
.y9b3_c00001{bottom:475.820912pt;}
.y4e_c00001{bottom:475.857333pt;}
.y4f_c00001{bottom:476.042667pt;}
.y9b2_c00001{bottom:476.111055pt;}
.y8d7_c00001{bottom:476.180327pt;}
.yba5_c00001{bottom:476.282848pt;}
.y50_c00001{bottom:476.622667pt;}
.y9b1_c00001{bottom:476.641333pt;}
.yba4_c00001{bottom:476.651405pt;}
.y1249_c00001{bottom:476.772000pt;}
.y8d8_c00001{bottom:476.813791pt;}
.y139f_c00001{bottom:476.888000pt;}
.yba3_c00001{bottom:476.987531pt;}
.yca9_c00001{bottom:477.120000pt;}
.y239_c00001{bottom:477.152347pt;}
.y8d9_c00001{bottom:477.695503pt;}
.yded_c00001{bottom:477.886667pt;}
.yba2_c00001{bottom:478.052469pt;}
.yc82_c00001{bottom:478.080000pt;}
.y175e_c00001{bottom:478.082071pt;}
.ya54_c00001{bottom:478.180527pt;}
.ycf3_c00001{bottom:478.319947pt;}
.y3_c00001{bottom:478.320000pt;}
.y1a26_c00001{bottom:478.413333pt;}
.y193a_c00001{bottom:478.554341pt;}
.yba1_c00001{bottom:478.559755pt;}
.y1499_c00001{bottom:478.634667pt;}
.y13a0_c00001{bottom:478.840461pt;}
.y4_c00001{bottom:478.910667pt;}
.y1662_c00001{bottom:478.999633pt;}
.y1498_c00001{bottom:479.032000pt;}
.y1c13_c00001{bottom:479.210667pt;}
.y175f_c00001{bottom:479.262943pt;}
.y10a5_c00001{bottom:479.281333pt;}
.y5_c00001{bottom:479.314667pt;}
.ycf4_c00001{bottom:479.405725pt;}
.ydec_c00001{bottom:479.473333pt;}
.y193b_c00001{bottom:479.516048pt;}
.y1ccd_c00001{bottom:479.517333pt;}
.y1858_c00001{bottom:479.527403pt;}
.y1277_c00001{bottom:479.544000pt;}
.y23a_c00001{bottom:479.556947pt;}
.y1297_c00001{bottom:479.573333pt;}
.ycca_c00001{bottom:479.653333pt;}
.y1a52_c00001{bottom:479.665333pt;}
.y1760_c00001{bottom:479.675600pt;}
.y1a25_c00001{bottom:479.732000pt;}
.yba0_c00001{bottom:479.761344pt;}
.y1857_c00001{bottom:479.814411pt;}
.ydeb_c00001{bottom:479.848000pt;}
.y10a6_c00001{bottom:479.852000pt;}
.y1661_c00001{bottom:479.876500pt;}
.y1200_c00001{bottom:479.930667pt;}
.yff_c00001{bottom:479.940000pt;}
.y1497_c00001{bottom:479.972000pt;}
.yed0_c00001{bottom:479.999480pt;}
.y23b_c00001{bottom:480.049547pt;}
.y8da_c00001{bottom:480.071487pt;}
.y6_c00001{bottom:480.082667pt;}
.y1761_c00001{bottom:480.082921pt;}
.y7_c00001{bottom:480.236000pt;}
.y1566_c00001{bottom:480.251396pt;}
.y111a_c00001{bottom:480.254008pt;}
.y13a1_c00001{bottom:480.261725pt;}
.y1a24_c00001{bottom:480.345333pt;}
.ycf5_c00001{bottom:480.363819pt;}
.y1496_c00001{bottom:480.422667pt;}
.y8db_c00001{bottom:480.493831pt;}
.y10a7_c00001{bottom:480.568000pt;}
.y1660_c00001{bottom:480.581400pt;}
.yed1_c00001{bottom:480.613877pt;}
.y1495_c00001{bottom:480.700000pt;}
.yfc1_c00001{bottom:480.700797pt;}
.y1a23_c00001{bottom:480.708000pt;}
.ycf6_c00001{bottom:480.711336pt;}
.y60f_c00001{bottom:480.719045pt;}
.y82a_c00001{bottom:480.758488pt;}
.y10a8_c00001{bottom:480.773333pt;}
.y1856_c00001{bottom:480.865397pt;}
.y193c_c00001{bottom:480.894715pt;}
.y8_c00001{bottom:480.921333pt;}
.ydea_c00001{bottom:480.952000pt;}
.y10a9_c00001{bottom:480.961333pt;}
.y111b_c00001{bottom:480.974541pt;}
.y13a2_c00001{bottom:481.069320pt;}
.yed2_c00001{bottom:481.126043pt;}
.y829_c00001{bottom:481.140875pt;}
.y1494_c00001{bottom:481.157333pt;}
.y1227_c00001{bottom:481.176000pt;}
.y111c_c00001{bottom:481.305540pt;}
.yfc0_c00001{bottom:481.313188pt;}
.ycf7_c00001{bottom:481.422491pt;}
.y10aa_c00001{bottom:481.457333pt;}
.ycf8_c00001{bottom:481.677467pt;}
.y165f_c00001{bottom:481.693267pt;}
.y1855_c00001{bottom:481.705664pt;}
.y111d_c00001{bottom:481.725697pt;}
.y1a22_c00001{bottom:481.732000pt;}
.y10f2_c00001{bottom:481.741333pt;}
.y828_c00001{bottom:481.746739pt;}
.yde9_c00001{bottom:481.818667pt;}
.y529_c00001{bottom:481.824000pt;}
.y1493_c00001{bottom:481.924000pt;}
.y23c_c00001{bottom:481.935947pt;}
.y13a3_c00001{bottom:481.962160pt;}
.yfbf_c00001{bottom:482.045008pt;}
.y1567_c00001{bottom:482.072448pt;}
.y1854_c00001{bottom:482.085728pt;}
.y165e_c00001{bottom:482.156467pt;}
.y433_c00001{bottom:482.170667pt;}
.y743_c00001{bottom:482.178667pt;}
.yde8_c00001{bottom:482.277333pt;}
.y1762_c00001{bottom:482.318137pt;}
.yed3_c00001{bottom:482.430411pt;}
.y610_c00001{bottom:482.458107pt;}
.y13a4_c00001{bottom:482.469056pt;}
.y1763_c00001{bottom:482.580577pt;}
.y111e_c00001{bottom:482.648667pt;}
.y193d_c00001{bottom:482.655893pt;}
.y1a21_c00001{bottom:482.676000pt;}
.y827_c00001{bottom:482.728288pt;}
.y1568_c00001{bottom:482.774544pt;}
.ycf9_c00001{bottom:482.820027pt;}
.y1853_c00001{bottom:482.881408pt;}
.y1a6c_c00001{bottom:482.893333pt;}
.y1378_c00001{bottom:482.902667pt;}
.y611_c00001{bottom:483.029456pt;}
.y1a20_c00001{bottom:483.106667pt;}
.y528_c00001{bottom:483.203433pt;}
.y165d_c00001{bottom:483.290233pt;}
.y826_c00001{bottom:483.299768pt;}
.yde7_c00001{bottom:483.365333pt;}
.y825_c00001{bottom:483.412963pt;}
.y1340_c00001{bottom:483.469333pt;}
.yb44_c00001{bottom:483.484000pt;}
.y1764_c00001{bottom:483.562427pt;}
.yed4_c00001{bottom:483.685205pt;}
.y612_c00001{bottom:483.696715pt;}
.y111f_c00001{bottom:483.730713pt;}
.y165c_c00001{bottom:483.820367pt;}
.yfbe_c00001{bottom:483.845975pt;}
.y744_c00001{bottom:483.859128pt;}
.y527_c00001{bottom:483.884967pt;}
.y1120_c00001{bottom:483.918872pt;}
.y824_c00001{bottom:484.082667pt;}
.y1a1f_c00001{bottom:484.084000pt;}
.y193e_c00001{bottom:484.148027pt;}
.yed5_c00001{bottom:484.203611pt;}
.y434_c00001{bottom:484.206667pt;}
.y1765_c00001{bottom:484.296924pt;}
.y131f_c00001{bottom:484.429333pt;}
.y1569_c00001{bottom:484.513100pt;}
.y526_c00001{bottom:484.563067pt;}
.y1121_c00001{bottom:484.694911pt;}
.y745_c00001{bottom:484.750760pt;}
.y165b_c00001{bottom:484.802500pt;}
.yfbd_c00001{bottom:484.974684pt;}
.y435_c00001{bottom:485.184000pt;}
.yed6_c00001{bottom:485.268016pt;}
.y1bb8_c00001{bottom:485.280300pt;}
.y156a_c00001{bottom:485.441508pt;}
.yfbc_c00001{bottom:485.576891pt;}
.y1bb9_c00001{bottom:485.611333pt;}
.ya47_c00001{bottom:485.762896pt;}
.y8cf_c00001{bottom:485.778277pt;}
.y746_c00001{bottom:485.844045pt;}
.y613_c00001{bottom:485.934549pt;}
.yed7_c00001{bottom:485.937083pt;}
.y1af6_c00001{bottom:485.949333pt;}
.yc81_c00001{bottom:486.000000pt;}
.y341_c00001{bottom:486.076537pt;}
.y747_c00001{bottom:486.095656pt;}
.ya48_c00001{bottom:486.237731pt;}
.y1b77_c00001{bottom:486.242667pt;}
.y1bba_c00001{bottom:486.309713pt;}
.y340_c00001{bottom:486.378484pt;}
.y1bbb_c00001{bottom:486.428027pt;}
.y1b17_c00001{bottom:486.466667pt;}
.y8d0_c00001{bottom:486.612728pt;}
.y436_c00001{bottom:486.636000pt;}
.y1bbc_c00001{bottom:486.684260pt;}
.y525_c00001{bottom:486.810100pt;}
.y1b78_c00001{bottom:486.912000pt;}
.y33f_c00001{bottom:486.955012pt;}
.y437_c00001{bottom:487.114667pt;}
.ya49_c00001{bottom:487.290047pt;}
.y33e_c00001{bottom:487.328820pt;}
.y614_c00001{bottom:487.358816pt;}
.y9b0_c00001{bottom:487.383787pt;}
.y1b79_c00001{bottom:487.409333pt;}
.y12fd_c00001{bottom:487.418667pt;}
.y1d00_c00001{bottom:487.444000pt;}
.y33d_c00001{bottom:487.622203pt;}
.y1b7a_c00001{bottom:487.637333pt;}
.y1bbd_c00001{bottom:487.810787pt;}
.ya4a_c00001{bottom:487.874256pt;}
.y615_c00001{bottom:487.890256pt;}
.y524_c00001{bottom:487.926667pt;}
.y33c_c00001{bottom:487.950987pt;}
.y9af_c00001{bottom:488.018635pt;}
.yfbb_c00001{bottom:488.092552pt;}
.y438_c00001{bottom:488.130667pt;}
.y1b7b_c00001{bottom:488.158667pt;}
.y33b_c00001{bottom:488.290800pt;}
.y136_c00001{bottom:488.401333pt;}
.y33a_c00001{bottom:488.457180pt;}
.y8d1_c00001{bottom:488.476888pt;}
.y1d01_c00001{bottom:488.668000pt;}
.y137_c00001{bottom:488.773720pt;}
.y1b7c_c00001{bottom:488.790667pt;}
.y138_c00001{bottom:488.881755pt;}
.y439_c00001{bottom:488.890667pt;}
.y748_c00001{bottom:488.995107pt;}
.y1b7d_c00001{bottom:489.022667pt;}
.y139_c00001{bottom:489.074489pt;}
.y1d02_c00001{bottom:489.081333pt;}
.y339_c00001{bottom:489.119223pt;}
.y1d03_c00001{bottom:489.392000pt;}
.y13a_c00001{bottom:489.570780pt;}
.y43a_c00001{bottom:489.580000pt;}
.y22d_c00001{bottom:489.613333pt;}
.ya4b_c00001{bottom:489.659521pt;}
.y13b_c00001{bottom:489.715965pt;}
.y749_c00001{bottom:489.737576pt;}
.y22e_c00001{bottom:490.047393pt;}
.ya4c_c00001{bottom:490.077880pt;}
.yfba_c00001{bottom:490.101369pt;}
.y13c_c00001{bottom:490.247031pt;}
.y1d04_c00001{bottom:490.409333pt;}
.y47_c00001{bottom:490.440000pt;}
.y13d_c00001{bottom:490.450355pt;}
.y43b_c00001{bottom:490.578667pt;}
.y42c_c00001{bottom:490.824000pt;}
.y22f_c00001{bottom:490.958721pt;}
.y1d05_c00001{bottom:490.990667pt;}
.y74a_c00001{bottom:490.992336pt;}
.y9ae_c00001{bottom:491.065769pt;}
.y8d2_c00001{bottom:491.105272pt;}
.ya4d_c00001{bottom:491.220372pt;}
.y230_c00001{bottom:491.514925pt;}
.yb9f_c00001{bottom:491.664544pt;}
.y42d_c00001{bottom:491.756000pt;}
.ya4e_c00001{bottom:491.769799pt;}
.yb9e_c00001{bottom:492.104728pt;}
.y1248_c00001{bottom:492.132000pt;}
.yca8_c00001{bottom:492.198667pt;}
.yceb_c00001{bottom:492.246667pt;}
.y1397_c00001{bottom:492.484000pt;}
.yca7_c00001{bottom:492.528000pt;}
.y1c86_c00001{bottom:492.724000pt;}
.yb9d_c00001{bottom:492.873880pt;}
.y1754_c00001{bottom:492.965333pt;}
.y1398_c00001{bottom:493.071072pt;}
.y231_c00001{bottom:493.086473pt;}
.yc80_c00001{bottom:493.092000pt;}
.y9ad_c00001{bottom:493.155352pt;}
.yca6_c00001{bottom:493.162667pt;}
.yb9c_c00001{bottom:493.275736pt;}
.yca5_c00001{bottom:493.320000pt;}
.y1755_c00001{bottom:493.487556pt;}
.y1399_c00001{bottom:493.500352pt;}
.ycec_c00001{bottom:493.619613pt;}
.y232_c00001{bottom:493.654513pt;}
.y1756_c00001{bottom:493.660025pt;}
.y1934_c00001{bottom:493.680320pt;}
.y42e_c00001{bottom:493.822667pt;}
.y1492_c00001{bottom:493.842667pt;}
.yca4_c00001{bottom:493.866667pt;}
.ya43_c00001{bottom:493.920000pt;}
.y139a_c00001{bottom:493.937856pt;}
.yced_c00001{bottom:494.084136pt;}
.yca3_c00001{bottom:494.144000pt;}
.y1c12_c00001{bottom:494.168000pt;}
.y1a1e_c00001{bottom:494.182667pt;}
.y1491_c00001{bottom:494.209333pt;}
.yde6_c00001{bottom:494.258667pt;}
.ycee_c00001{bottom:494.352888pt;}
.y2_c00001{bottom:494.361333pt;}
.y8d3_c00001{bottom:494.489165pt;}
.y1490_c00001{bottom:494.544000pt;}
.y165a_c00001{bottom:494.561400pt;}
.y109c_c00001{bottom:494.640000pt;}
.y11ff_c00001{bottom:494.681333pt;}
.yde5_c00001{bottom:494.686667pt;}
.yfe_c00001{bottom:494.688000pt;}
.ycc9_c00001{bottom:494.709333pt;}
.y1296_c00001{bottom:494.713333pt;}
.y42f_c00001{bottom:494.765333pt;}
.y1276_c00001{bottom:494.772000pt;}
.y1935_c00001{bottom:494.836005pt;}
.y1757_c00001{bottom:494.837380pt;}
.yca2_c00001{bottom:494.880000pt;}
.yb9b_c00001{bottom:494.960272pt;}
.y109d_c00001{bottom:495.032000pt;}
.y155f_c00001{bottom:495.126516pt;}
.yec9_c00001{bottom:495.128000pt;}
.y233_c00001{bottom:495.183293pt;}
.y139b_c00001{bottom:495.222528pt;}
.y1758_c00001{bottom:495.246903pt;}
.yb9a_c00001{bottom:495.249976pt;}
.y1659_c00001{bottom:495.273833pt;}
.yfb9_c00001{bottom:495.476616pt;}
.y109e_c00001{bottom:495.562667pt;}
.yde4_c00001{bottom:495.593333pt;}
.yb99_c00001{bottom:495.604000pt;}
.ycef_c00001{bottom:495.624957pt;}
.y1226_c00001{bottom:495.648000pt;}
.y1759_c00001{bottom:495.685467pt;}
.y234_c00001{bottom:495.705749pt;}
.y1a1d_c00001{bottom:495.713333pt;}
.y1658_c00001{bottom:495.785333pt;}
.yde3_c00001{bottom:495.841333pt;}
.ycf0_c00001{bottom:495.935245pt;}
.y148f_c00001{bottom:495.954667pt;}
.y109f_c00001{bottom:496.022667pt;}
.y139c_c00001{bottom:496.061440pt;}
.y1114_c00001{bottom:496.085405pt;}
.y1936_c00001{bottom:496.114259pt;}
.y1852_c00001{bottom:496.155072pt;}
.y10a0_c00001{bottom:496.217333pt;}
.y1a1c_c00001{bottom:496.262667pt;}
.y9ac_c00001{bottom:496.290789pt;}
.y1560_c00001{bottom:496.308736pt;}
.y175a_c00001{bottom:496.359735pt;}
.y1851_c00001{bottom:496.382827pt;}
.y10a1_c00001{bottom:496.408000pt;}
.y139d_c00001{bottom:496.508416pt;}
.y235_c00001{bottom:496.516273pt;}
.yeca_c00001{bottom:496.673856pt;}
.yde2_c00001{bottom:496.729333pt;}
.y1115_c00001{bottom:496.758229pt;}
.yb43_c00001{bottom:496.769333pt;}
.y1561_c00001{bottom:496.824272pt;}
.y1937_c00001{bottom:496.827811pt;}
.y10a2_c00001{bottom:496.952000pt;}
.ycf1_c00001{bottom:496.992741pt;}
.y10a3_c00001{bottom:497.068000pt;}
.y10f1_c00001{bottom:497.101333pt;}
.y1562_c00001{bottom:497.104772pt;}
.y175b_c00001{bottom:497.110271pt;}
.yb42_c00001{bottom:497.117333pt;}
.y430_c00001{bottom:497.133333pt;}
.y148e_c00001{bottom:497.164000pt;}
.y1850_c00001{bottom:497.165035pt;}
.y148d_c00001{bottom:497.214667pt;}
.y1a1b_c00001{bottom:497.272000pt;}
.y608_c00001{bottom:497.279093pt;}
.ycf2_c00001{bottom:497.335853pt;}
.y1657_c00001{bottom:497.345433pt;}
.yecb_c00001{bottom:497.372181pt;}
.y523_c00001{bottom:497.423088pt;}
.y10a4_c00001{bottom:497.429333pt;}
.y1377_c00001{bottom:497.520000pt;}
.y1a6b_c00001{bottom:497.600000pt;}
.y175c_c00001{bottom:497.646569pt;}
.y1116_c00001{bottom:497.669955pt;}
.y184f_c00001{bottom:497.732672pt;}
.y148c_c00001{bottom:497.764000pt;}
.y609_c00001{bottom:497.768325pt;}
.yb41_c00001{bottom:497.896000pt;}
.y522_c00001{bottom:497.902561pt;}
.yecc_c00001{bottom:497.925011pt;}
.y1117_c00001{bottom:497.930427pt;}
.y184e_c00001{bottom:497.966699pt;}
.yde1_c00001{bottom:497.982667pt;}
.y8cc_c00001{bottom:498.001333pt;}
.y1a1a_c00001{bottom:498.013333pt;}
.y73d_c00001{bottom:498.018035pt;}
.y1656_c00001{bottom:498.035833pt;}
.y1563_c00001{bottom:498.099660pt;}
.yfb8_c00001{bottom:498.179733pt;}
.yb40_c00001{bottom:498.218667pt;}
.ya44_c00001{bottom:498.245333pt;}
.y521_c00001{bottom:498.258540pt;}
.y139e_c00001{bottom:498.280064pt;}
.y1938_c00001{bottom:498.338581pt;}
.y1a19_c00001{bottom:498.396000pt;}
.y1564_c00001{bottom:498.465404pt;}
.yb3f_c00001{bottom:498.490667pt;}
.y133f_c00001{bottom:498.673333pt;}
.yde0_c00001{bottom:498.724000pt;}
.y175d_c00001{bottom:498.788259pt;}
.y1939_c00001{bottom:498.877035pt;}
.y1118_c00001{bottom:498.894239pt;}
.y184d_c00001{bottom:498.969984pt;}
.y131e_c00001{bottom:499.142667pt;}
.yecd_c00001{bottom:499.237248pt;}
.y520_c00001{bottom:499.271153pt;}
.y60a_c00001{bottom:499.282731pt;}
.y1119_c00001{bottom:499.428885pt;}
.y12f8_c00001{bottom:499.440000pt;}
.y184c_c00001{bottom:499.442667pt;}
.y9ab_c00001{bottom:499.447912pt;}
.yb3e_c00001{bottom:499.536000pt;}
.y51f_c00001{bottom:499.680032pt;}
.y1bb2_c00001{bottom:499.682667pt;}
.y46_c00001{bottom:499.684000pt;}
.y1655_c00001{bottom:499.686667pt;}
.yece_c00001{bottom:499.716584pt;}
.yb3d_c00001{bottom:499.776000pt;}
.y1565_c00001{bottom:499.802852pt;}
.y73e_c00001{bottom:499.820227pt;}
.y431_c00001{bottom:499.850667pt;}
.yfb7_c00001{bottom:499.935739pt;}
.y60b_c00001{bottom:499.953648pt;}
.y51e_c00001{bottom:500.088665pt;}
.y60c_c00001{bottom:500.200128pt;}
.y51d_c00001{bottom:500.362181pt;}
.y1bb3_c00001{bottom:500.391847pt;}
.y73f_c00001{bottom:500.393351pt;}
.yb3c_c00001{bottom:500.402667pt;}
.y338_c00001{bottom:500.494775pt;}
.y337_c00001{bottom:500.782523pt;}
.y1bb4_c00001{bottom:501.202127pt;}
.y1af5_c00001{bottom:501.281333pt;}
.y51c_c00001{bottom:501.335235pt;}
.y1bb5_c00001{bottom:501.432667pt;}
.y432_c00001{bottom:501.582667pt;}
.yecf_c00001{bottom:501.769163pt;}
.y51b_c00001{bottom:501.784011pt;}
.y1b16_c00001{bottom:501.846667pt;}
.y60d_c00001{bottom:501.855712pt;}
.y336_c00001{bottom:501.872220pt;}
.yfb6_c00001{bottom:501.968181pt;}
.ya45_c00001{bottom:502.067301pt;}
.y1cf8_c00001{bottom:502.086667pt;}
.y8cd_c00001{bottom:502.127083pt;}
.y740_c00001{bottom:502.134535pt;}
.y60e_c00001{bottom:502.141317pt;}
.y51a_c00001{bottom:502.181604pt;}
.y335_c00001{bottom:502.204095pt;}
.y1bb6_c00001{bottom:502.228227pt;}
.y334_c00001{bottom:502.405451pt;}
.y1bb7_c00001{bottom:502.436407pt;}
.y1b76_c00001{bottom:502.445333pt;}
.y12fc_c00001{bottom:502.516000pt;}
.y519_c00001{bottom:502.805333pt;}
.y8c3_c00001{bottom:502.828000pt;}
.y9aa_c00001{bottom:503.282667pt;}
.y227_c00001{bottom:503.296000pt;}
.y333_c00001{bottom:503.296915pt;}
.y1cf9_c00001{bottom:503.364000pt;}
.ya46_c00001{bottom:503.519815pt;}
.y332_c00001{bottom:503.768529pt;}
.y135_c00001{bottom:503.886667pt;}
.y1cfa_c00001{bottom:503.906667pt;}
.y8ce_c00001{bottom:503.956581pt;}
.y741_c00001{bottom:504.132971pt;}
.y331_c00001{bottom:504.204872pt;}
.y1cfb_c00001{bottom:504.290667pt;}
.y1c85_c00001{bottom:504.456000pt;}
.y330_c00001{bottom:504.483399pt;}
.yfb5_c00001{bottom:504.736000pt;}
.y1cfc_c00001{bottom:504.822667pt;}
.y1c11_c00001{bottom:505.324000pt;}
.yc7f_c00001{bottom:505.449333pt;}
.y1275_c00001{bottom:505.588000pt;}
.y1cfd_c00001{bottom:505.590667pt;}
.y9a9_c00001{bottom:505.673333pt;}
.y742_c00001{bottom:505.823455pt;}
.y1cfe_c00001{bottom:505.988000pt;}
.y228_c00001{bottom:506.260000pt;}
.y11fe_c00001{bottom:506.521333pt;}
.y1cff_c00001{bottom:506.677333pt;}
.y1_c00001{bottom:506.880000pt;}
.y73a_c00001{bottom:506.894667pt;}
.ycea_c00001{bottom:506.992000pt;}
.y423_c00001{bottom:507.138667pt;}
.y1247_c00001{bottom:507.237333pt;}
.y1112_c00001{bottom:507.361333pt;}
.yca1_c00001{bottom:507.605333pt;}
.y1753_c00001{bottom:507.609333pt;}
.yfd_c00001{bottom:507.710667pt;}
.y229_c00001{bottom:507.738667pt;}
.y424_c00001{bottom:507.830667pt;}
.y1654_c00001{bottom:508.044000pt;}
.y1225_c00001{bottom:508.200000pt;}
.y184b_c00001{bottom:508.206667pt;}
.y607_c00001{bottom:508.324000pt;}
.y22a_c00001{bottom:508.774667pt;}
.y1a51_c00001{bottom:509.154667pt;}
.ycc8_c00001{bottom:509.160000pt;}
.yb98_c00001{bottom:509.280000pt;}
.y1396_c00001{bottom:509.393333pt;}
.y148b_c00001{bottom:509.404000pt;}
.y425_c00001{bottom:509.434667pt;}
.y1113_c00001{bottom:509.434744pt;}
.y1ca9_c00001{bottom:509.512000pt;}
.y155c_c00001{bottom:509.524000pt;}
.y22b_c00001{bottom:509.621333pt;}
.yb3b_c00001{bottom:509.989333pt;}
.y426_c00001{bottom:510.248000pt;}
.y518_c00001{bottom:510.480000pt;}
.y1931_c00001{bottom:510.488000pt;}
.y109b_c00001{bottom:510.600000pt;}
.y10f0_c00001{bottom:510.841333pt;}
.yddf_c00001{bottom:511.082667pt;}
.y823_c00001{bottom:511.313333pt;}
.yec8_c00001{bottom:511.460000pt;}
.y1a18_c00001{bottom:511.669333pt;}
.y427_c00001{bottom:511.793333pt;}
.y428_c00001{bottom:512.216000pt;}
.y22c_c00001{bottom:512.272000pt;}
.y1932_c00001{bottom:512.431864pt;}
.y155d_c00001{bottom:512.558528pt;}
.y1376_c00001{bottom:512.880000pt;}
.y429_c00001{bottom:512.908000pt;}
.y73b_c00001{bottom:513.096643pt;}
.y1933_c00001{bottom:513.336525pt;}
.y133e_c00001{bottom:513.722667pt;}
.y1a6a_c00001{bottom:513.840000pt;}
.y1b15_c00001{bottom:513.940000pt;}
.yfb4_c00001{bottom:513.957333pt;}
.y1af4_c00001{bottom:514.212000pt;}
.y42a_c00001{bottom:514.261333pt;}
.y12fb_c00001{bottom:514.320000pt;}
.y131d_c00001{bottom:514.680000pt;}
.y32f_c00001{bottom:514.681171pt;}
.y1b75_c00001{bottom:515.396000pt;}
.y42b_c00001{bottom:515.500000pt;}
.y73c_c00001{bottom:515.544671pt;}
.y1cf7_c00001{bottom:516.121333pt;}
.y1bb1_c00001{bottom:516.125333pt;}
.y155e_c00001{bottom:516.132000pt;}
.y32e_c00001{bottom:517.017659pt;}
.y32d_c00001{bottom:517.440000pt;}
.y226_c00001{bottom:522.840000pt;}
.y1752_c00001{bottom:523.200000pt;}
.y422_c00001{bottom:526.676000pt;}
.y1d8f_c00001{bottom:946.536000pt;}
.y1d90_c00001{bottom:1056.000000pt;}
.y1d8e_c00001{bottom:1057.428000pt;}
.y1d91_c00001{bottom:1098.960000pt;}
.y1d8d_c00001{bottom:1122.501333pt;}
.h181_c00001{height:14.000000pt;}
.hfe_c00001{height:14.933333pt;}
.h19f_c00001{height:16.800000pt;}
.h66_c00001{height:18.667759pt;}
.h5c_c00001{height:19.600000pt;}
.h47_c00001{height:21.463253pt;}
.hd2_c00001{height:21.466667pt;}
.h182_c00001{height:23.333333pt;}
.h98_c00001{height:24.266667pt;}
.h1aa_c00001{height:25.187712pt;}
.h4d_c00001{height:25.200000pt;}
.h16b_c00001{height:27.072634pt;}
.h142_c00001{height:28.000000pt;}
.h1b3_c00001{height:28.008063pt;}
.h4e_c00001{height:31.733333pt;}
.ha5_c00001{height:32.657600pt;}
.h1a3_c00001{height:32.669868pt;}
.hb5_c00001{height:33.600000pt;}
.h19e_c00001{height:34.533333pt;}
.h1a9_c00001{height:35.449372pt;}
.h1a7_c00001{height:36.400000pt;}
.hb6_c00001{height:37.333333pt;}
.he7_c00001{height:38.266667pt;}
.h3f_c00001{height:40.140577pt;}
.h12e_c00001{height:40.147959pt;}
.h18e_c00001{height:41.066667pt;}
.hef_c00001{height:41.073319pt;}
.h1a0_c00001{height:42.000000pt;}
.h5d_c00001{height:44.800000pt;}
.h19c_c00001{height:44.804390pt;}
.h60_c00001{height:45.727959pt;}
.he3_c00001{height:45.737198pt;}
.ha1_c00001{height:46.653715pt;}
.h1a6_c00001{height:46.666667pt;}
.h14b_c00001{height:47.600000pt;}
.h1a1_c00001{height:47.603427pt;}
.h18b_c00001{height:47.611518pt;}
.h15d_c00001{height:47.622866pt;}
.h132_c00001{height:48.511246pt;}
.h101_c00001{height:48.533333pt;}
.h191_c00001{height:48.538793pt;}
.h180_c00001{height:48.541195pt;}
.h36_c00001{height:48.544034pt;}
.h189_c00001{height:48.545077pt;}
.h1b4_c00001{height:48.553737pt;}
.h133_c00001{height:49.444154pt;}
.h118_c00001{height:49.466667pt;}
.h17b_c00001{height:49.472998pt;}
.h17d_c00001{height:49.474680pt;}
.h148_c00001{height:49.475595pt;}
.h1a5_c00001{height:49.476559pt;}
.h10b_c00001{height:49.478636pt;}
.h172_c00001{height:49.479749pt;}
.h170_c00001{height:49.480911pt;}
.h155_c00001{height:49.482123pt;}
.h12c_c00001{height:49.483384pt;}
.h117_c00001{height:49.484694pt;}
.h121_c00001{height:49.487463pt;}
.h2d_c00001{height:50.400000pt;}
.h143_c00001{height:50.406451pt;}
.hed_c00001{height:50.408164pt;}
.h167_c00001{height:50.409096pt;}
.h14e_c00001{height:50.410079pt;}
.h16c_c00001{height:50.411112pt;}
.h185_c00001{height:50.412195pt;}
.h119_c00001{height:50.413329pt;}
.h14d_c00001{height:50.417032pt;}
.h11f_c00001{height:50.418367pt;}
.h134_c00001{height:51.309971pt;}
.h74_c00001{height:51.325171pt;}
.h67_c00001{height:51.329483pt;}
.h100_c00001{height:51.333333pt;}
.hfa_c00001{height:51.337671pt;}
.hf6_c00001{height:51.338364pt;}
.h197_c00001{height:51.339108pt;}
.h17a_c00001{height:51.339904pt;}
.h1a8_c00001{height:51.340750pt;}
.h171_c00001{height:51.341649pt;}
.h1a_c00001{height:51.343599pt;}
.h169_c00001{height:51.344651pt;}
.h186_c00001{height:51.345754pt;}
.h11b_c00001{height:51.349372pt;}
.h125_c00001{height:51.350681pt;}
.h112_c00001{height:51.352041pt;}
.h15a_c00001{height:51.357993pt;}
.h135_c00001{height:52.242880pt;}
.h13d_c00001{height:52.244632pt;}
.ha7_c00001{height:52.252161pt;}
.h14_c00001{height:52.266667pt;}
.hf9_c00001{height:52.271083pt;}
.hf1_c00001{height:52.271789pt;}
.h199_c00001{height:52.272546pt;}
.h19_c00001{height:52.273356pt;}
.hec_c00001{height:52.275133pt;}
.h3b_c00001{height:52.276100pt;}
.h34_c00001{height:52.278190pt;}
.h188_c00001{height:52.279314pt;}
.h174_c00001{height:52.280489pt;}
.h163_c00001{height:52.281717pt;}
.h153_c00001{height:52.282997pt;}
.h124_c00001{height:52.284330pt;}
.h111_c00001{height:52.285714pt;}
.h90_c00001{height:52.287151pt;}
.hd9_c00001{height:52.288640pt;}
.h156_c00001{height:52.291775pt;}
.h2e_c00001{height:53.175788pt;}
.h13e_c00001{height:53.177571pt;}
.h94_c00001{height:53.185235pt;}
.h12_c00001{height:53.200000pt;}
.h194_c00001{height:53.203219pt;}
.h192_c00001{height:53.204495pt;}
.hf3_c00001{height:53.205213pt;}
.h18f_c00001{height:53.205985pt;}
.h176_c00001{height:53.206809pt;}
.hea_c00001{height:53.208618pt;}
.h165_c00001{height:53.209602pt;}
.hfc_c00001{height:53.210639pt;}
.h184_c00001{height:53.212873pt;}
.h160_c00001{height:53.214070pt;}
.h9a_c00001{height:53.215319pt;}
.h152_c00001{height:53.216622pt;}
.h126_c00001{height:53.217979pt;}
.h115_c00001{height:53.219388pt;}
.h84_c00001{height:53.220850pt;}
.hc9_c00001{height:53.222366pt;}
.h15c_c00001{height:53.225556pt;}
.h4b_c00001{height:54.106937pt;}
.h136_c00001{height:54.108697pt;}
.h95_c00001{height:54.118309pt;}
.hbb_c00001{height:54.120394pt;}
.h6d_c00001{height:54.124725pt;}
.h14f_c00001{height:54.126972pt;}
.h6a_c00001{height:54.129273pt;}
.he_c00001{height:54.133333pt;}
.h54_c00001{height:54.136608pt;}
.h19a_c00001{height:54.137907pt;}
.hf8_c00001{height:54.138638pt;}
.h178_c00001{height:54.140262pt;}
.h17c_c00001{height:54.142102pt;}
.h166_c00001{height:54.143104pt;}
.hfd_c00001{height:54.144159pt;}
.h38_c00001{height:54.145268pt;}
.h103_c00001{height:54.146432pt;}
.h161_c00001{height:54.147650pt;}
.h16f_c00001{height:54.148921pt;}
.h151_c00001{height:54.150247pt;}
.h127_c00001{height:54.151627pt;}
.h10e_c00001{height:54.153061pt;}
.h8f_c00001{height:54.154549pt;}
.hdf_c00001{height:54.156092pt;}
.h139_c00001{height:55.041606pt;}
.ha3_c00001{height:55.051384pt;}
.hc1_c00001{height:55.053504pt;}
.h61_c00001{height:55.060196pt;}
.hbc_c00001{height:55.062537pt;}
.h9_c00001{height:55.066667pt;}
.h57_c00001{height:55.069998pt;}
.h19d_c00001{height:55.070631pt;}
.h26_c00001{height:55.071320pt;}
.hf0_c00001{height:55.072063pt;}
.h17_c00001{height:55.073715pt;}
.hb3_c00001{height:55.075587pt;}
.h35_c00001{height:55.078808pt;}
.h104_c00001{height:55.079991pt;}
.h150_c00001{height:55.083872pt;}
.h12b_c00001{height:55.085276pt;}
.h10c_c00001{height:55.086735pt;}
.h8b_c00001{height:55.088249pt;}
.hd6_c00001{height:55.089817pt;}
.h45_c00001{height:55.091441pt;}
.h157_c00001{height:55.093120pt;}
.h137_c00001{height:55.974514pt;}
.h13c_c00001{height:55.976391pt;}
.hae_c00001{height:55.984458pt;}
.hc6_c00001{height:55.986614pt;}
.h6c_c00001{height:55.991095pt;}
.h62_c00001{height:55.993420pt;}
.hd_c00001{height:56.000000pt;}
.h5b_c00001{height:56.003388pt;}
.h1e_c00001{height:56.004032pt;}
.h2c_c00001{height:56.004732pt;}
.hf5_c00001{height:56.005488pt;}
.h15_c00001{height:56.006300pt;}
.hee_c00001{height:56.009071pt;}
.h109_c00001{height:56.013550pt;}
.h7d_c00001{height:56.017497pt;}
.h12d_c00001{height:56.018925pt;}
.h113_c00001{height:56.020408pt;}
.h31_c00001{height:56.021948pt;}
.hda_c00001{height:56.023543pt;}
.h12f_c00001{height:56.907423pt;}
.h6b_c00001{height:56.909331pt;}
.ha2_c00001{height:56.917532pt;}
.hc4_c00001{height:56.919725pt;}
.h49_c00001{height:56.924280pt;}
.h5f_c00001{height:56.926643pt;}
.h68_c00001{height:56.929063pt;}
.hb_c00001{height:56.933333pt;}
.h5e_c00001{height:56.934073pt;}
.h55_c00001{height:56.936778pt;}
.h28_c00001{height:56.938144pt;}
.h193_c00001{height:56.939738pt;}
.h16e_c00001{height:56.941560pt;}
.hb2_c00001{height:56.942556pt;}
.hfb_c00001{height:56.944719pt;}
.h16a_c00001{height:56.945886pt;}
.h106_c00001{height:56.947110pt;}
.h1b_c00001{height:56.948390pt;}
.h154_c00001{height:56.951122pt;}
.h12a_c00001{height:56.952574pt;}
.h11d_c00001{height:56.954082pt;}
.h30_c00001{height:56.955647pt;}
.hde_c00001{height:56.957269pt;}
.h15b_c00001{height:56.960683pt;}
.h138_c00001{height:57.840331pt;}
.h42_c00001{height:57.842271pt;}
.hc7_c00001{height:57.852835pt;}
.h73_c00001{height:57.857465pt;}
.h11_c00001{height:57.866667pt;}
.h51_c00001{height:57.870167pt;}
.hcf_c00001{height:57.870833pt;}
.h25_c00001{height:57.871556pt;}
.hf2_c00001{height:57.872337pt;}
.h190_c00001{height:57.873176pt;}
.h1b1_c00001{height:57.874073pt;}
.h16d_c00001{height:57.875028pt;}
.h175_c00001{height:57.877111pt;}
.h108_c00001{height:57.880669pt;}
.h86_c00001{height:57.881970pt;}
.h7e_c00001{height:57.883330pt;}
.h7c_c00001{height:57.884747pt;}
.h128_c00001{height:57.886222pt;}
.h10f_c00001{height:57.887755pt;}
.h8d_c00001{height:57.889346pt;}
.hdc_c00001{height:57.890994pt;}
.h15e_c00001{height:57.894465pt;}
.h4c_c00001{height:58.771328pt;}
.h9f_c00001{height:58.773240pt;}
.ha9_c00001{height:58.783681pt;}
.hc2_c00001{height:58.785945pt;}
.h71_c00001{height:58.790650pt;}
.h63_c00001{height:58.793091pt;}
.h69_c00001{height:58.795590pt;}
.h4_c00001{height:58.800000pt;}
.hd1_c00001{height:58.803557pt;}
.hf4_c00001{height:58.805762pt;}
.h196_c00001{height:58.806615pt;}
.h18_c00001{height:58.807526pt;}
.h17f_c00001{height:58.809525pt;}
.h149_c00001{height:58.810612pt;}
.h164_c00001{height:58.811759pt;}
.h39_c00001{height:58.812964pt;}
.h107_c00001{height:58.814228pt;}
.h173_c00001{height:58.815551pt;}
.h9c_c00001{height:58.816932pt;}
.h7b_c00001{height:58.818372pt;}
.h120_c00001{height:58.819871pt;}
.h110_c00001{height:58.821429pt;}
.h83_c00001{height:58.823045pt;}
.hdb_c00001{height:58.824720pt;}
.h159_c00001{height:58.828247pt;}
.h130_c00001{height:59.706148pt;}
.ha4_c00001{height:59.716755pt;}
.hc5_c00001{height:59.719055pt;}
.h72_c00001{height:59.723835pt;}
.h10_c00001{height:59.733333pt;}
.h58_c00001{height:59.736947pt;}
.h2a_c00001{height:59.738381pt;}
.hf7_c00001{height:59.739187pt;}
.h198_c00001{height:59.740053pt;}
.h17e_c00001{height:59.743009pt;}
.h96_c00001{height:59.744114pt;}
.h187_c00001{height:59.747787pt;}
.h88_c00001{height:59.749131pt;}
.h9b_c00001{height:59.750534pt;}
.h79_c00001{height:59.751997pt;}
.h123_c00001{height:59.753520pt;}
.h114_c00001{height:59.755102pt;}
.h82_c00001{height:59.756744pt;}
.hd7_c00001{height:59.758446pt;}
.h158_c00001{height:59.762028pt;}
.h131_c00001{height:60.639057pt;}
.h41_c00001{height:60.641090pt;}
.hc0_c00001{height:60.652166pt;}
.h6e_c00001{height:60.657020pt;}
.h6_c00001{height:60.666667pt;}
.h50_c00001{height:60.670337pt;}
.he4_c00001{height:60.671035pt;}
.h23_c00001{height:60.671793pt;}
.hb1_c00001{height:60.672612pt;}
.h179_c00001{height:60.674432pt;}
.heb_c00001{height:60.676494pt;}
.h97_c00001{height:60.677616pt;}
.h168_c00001{height:60.680042pt;}
.h10a_c00001{height:60.681346pt;}
.h162_c00001{height:60.682711pt;}
.h80_c00001{height:60.685622pt;}
.h129_c00001{height:60.687169pt;}
.h10d_c00001{height:60.688776pt;}
.h33_c00001{height:60.690443pt;}
.hdd_c00001{height:60.692172pt;}
.h13a_c00001{height:61.571966pt;}
.hbd_c00001{height:61.585276pt;}
.h70_c00001{height:61.590205pt;}
.ha_c00001{height:61.600000pt;}
.h20_c00001{height:61.603727pt;}
.hce_c00001{height:61.604435pt;}
.h22_c00001{height:61.605205pt;}
.h1a2_c00001{height:61.606037pt;}
.he9_c00001{height:61.609978pt;}
.h1a4_c00001{height:61.612319pt;}
.h18a_c00001{height:61.614905pt;}
.h7f_c00001{height:61.616291pt;}
.h7a_c00001{height:61.619247pt;}
.h13f_c00001{height:61.620817pt;}
.h116_c00001{height:61.622449pt;}
.h81_c00001{height:61.624142pt;}
.hd5_c00001{height:61.625897pt;}
.h40_c00001{height:62.504874pt;}
.h43_c00001{height:62.506970pt;}
.hb8_c00001{height:62.511349pt;}
.haa_c00001{height:62.515978pt;}
.hbe_c00001{height:62.518386pt;}
.h6f_c00001{height:62.523390pt;}
.hf_c00001{height:62.533333pt;}
.h4f_c00001{height:62.537116pt;}
.h21_c00001{height:62.538617pt;}
.h87_c00001{height:62.549871pt;}
.h9d_c00001{height:62.551340pt;}
.h78_c00001{height:62.552872pt;}
.h140_c00001{height:62.554466pt;}
.h11e_c00001{height:62.556123pt;}
.h8c_c00001{height:62.557842pt;}
.hc8_c00001{height:62.559623pt;}
.ha8_c00001{height:63.449052pt;}
.hc3_c00001{height:63.451496pt;}
.h4a_c00001{height:63.456575pt;}
.h65_c00001{height:63.464667pt;}
.hc_c00001{height:63.466667pt;}
.h5_c00001{height:63.469840pt;}
.h59_c00001{height:63.470506pt;}
.he5_c00001{height:63.471236pt;}
.h29_c00001{height:63.472029pt;}
.hd0_c00001{height:63.473806pt;}
.h102_c00001{height:63.482024pt;}
.h183_c00001{height:63.488115pt;}
.h8a_c00001{height:63.491541pt;}
.he0_c00001{height:63.493349pt;}
.hab_c00001{height:64.382127pt;}
.hbf_c00001{height:64.384607pt;}
.h7_c00001{height:64.400000pt;}
.h53_c00001{height:64.403896pt;}
.h24_c00001{height:64.405442pt;}
.hb0_c00001{height:64.406311pt;}
.h177_c00001{height:64.408243pt;}
.h105_c00001{height:64.415583pt;}
.h85_c00001{height:64.417032pt;}
.h14c_c00001{height:64.418545pt;}
.h11a_c00001{height:64.420122pt;}
.hba_c00001{height:64.421764pt;}
.hd4_c00001{height:64.427075pt;}
.ha0_c00001{height:65.315201pt;}
.h8_c00001{height:65.333333pt;}
.h52_c00001{height:65.337286pt;}
.h27_c00001{height:65.338854pt;}
.h77_c00001{height:65.350612pt;}
.h11c_c00001{height:65.353747pt;}
.hd8_c00001{height:65.360800pt;}
.hcd_c00001{height:66.234486pt;}
.h1d_c00001{height:66.270676pt;}
.h2b_c00001{height:66.272266pt;}
.h64_c00001{height:66.281277pt;}
.h91_c00001{height:66.292638pt;}
.hac_c00001{height:67.181349pt;}
.h3_c00001{height:67.200000pt;}
.h56_c00001{height:67.204065pt;}
.h8e_c00001{height:67.226337pt;}
.h93_c00001{height:68.114424pt;}
.he2_c00001{height:68.133333pt;}
.h92_c00001{height:68.160036pt;}
.h2f_c00001{height:68.163986pt;}
.ha6_c00001{height:69.047498pt;}
.hb4_c00001{height:69.066667pt;}
.h5a_c00001{height:69.070845pt;}
.haf_c00001{height:69.980572pt;}
.h15f_c00001{height:70.000000pt;}
.had_c00001{height:70.913647pt;}
.h2_c00001{height:70.933333pt;}
.h16_c00001{height:70.939327pt;}
.h37_c00001{height:70.948972pt;}
.h122_c00001{height:71.866667pt;}
.h3a_c00001{height:71.882512pt;}
.h46_c00001{height:71.898999pt;}
.h1c_c00001{height:72.800000pt;}
.hd3_c00001{height:73.764332pt;}
.h144_c00001{height:74.666667pt;}
.h44_c00001{height:75.568128pt;}
.h48_c00001{height:75.587979pt;}
.hff_c00001{height:75.600000pt;}
.h1b2_c00001{height:75.603780pt;}
.h1f_c00001{height:75.604574pt;}
.h3d_c00001{height:75.613645pt;}
.h14a_c00001{height:76.533333pt;}
.h1b0_c00001{height:77.466667pt;}
.h76_c00001{height:78.400000pt;}
.h3e_c00001{height:78.414150pt;}
.hb7_c00001{height:79.333333pt;}
.h3c_c00001{height:82.148157pt;}
.h32_c00001{height:83.099222pt;}
.h18d_c00001{height:84.000000pt;}
.h75_c00001{height:84.933333pt;}
.h99_c00001{height:87.733333pt;}
.h9e_c00001{height:88.626314pt;}
.h19b_c00001{height:99.866667pt;}
.h1af_c00001{height:99.881096pt;}
.hb9_c00001{height:102.701362pt;}
.he6_c00001{height:103.600000pt;}
.h141_c00001{height:105.466667pt;}
.h147_c00001{height:106.400000pt;}
.he8_c00001{height:107.333333pt;}
.h13b_c00001{height:108.221023pt;}
.h13_c00001{height:109.213977pt;}
.h195_c00001{height:110.133333pt;}
.h89_c00001{height:111.110196pt;}
.he1_c00001{height:116.666667pt;}
.hcc_c00001{height:144.596414pt;}
.h18c_c00001{height:244.533333pt;}
.hcb_c00001{height:543.333333pt;}
.hca_c00001{height:543.600000pt;}
.h0_c00001{height:549.066667pt;}
.h1_c00001{height:549.333333pt;}
.h145_c00001{height:549.840000pt;}
.h146_c00001{height:550.000000pt;}
.h1ab_c00001{height:609.840000pt;}
.h1ac_c00001{height:610.000000pt;}
.h1ae_c00001{height:1138.000000pt;}
.h1ad_c00001{height:1138.266667pt;}
.w0_c00001{width:319.200000pt;}
.w1_c00001{width:319.333333pt;}
.w3_c00001{width:494.000000pt;}
.w2_c00001{width:494.133333pt;}
.w5_c00001{width:802.000000pt;}
.w4_c00001{width:802.266667pt;}
.x0_c00001{left:0.000000pt;}
.x103_c00001{left:1.204000pt;}
.x101_c00001{left:2.640000pt;}
.xd2_c00001{left:4.425333pt;}
.xf8_c00001{left:6.778667pt;}
.xfb_c00001{left:7.680000pt;}
.xf9_c00001{left:9.290940pt;}
.xc7_c00001{left:10.320000pt;}
.x10_c00001{left:11.354667pt;}
.xd1_c00001{left:13.189333pt;}
.xd3_c00001{left:14.448688pt;}
.xf1_c00001{left:15.392915pt;}
.xb2_c00001{left:16.320000pt;}
.x2c_c00001{left:17.280000pt;}
.x3_c00001{left:18.240000pt;}
.x22_c00001{left:19.440000pt;}
.x5c_c00001{left:20.772000pt;}
.x7a_c00001{left:21.840000pt;}
.xc6_c00001{left:23.280000pt;}
.xbb_c00001{left:24.720000pt;}
.x7d_c00001{left:26.160000pt;}
.xe5_c00001{left:27.625487pt;}
.xc3_c00001{left:28.800000pt;}
.x3f_c00001{left:30.480000pt;}
.xd7_c00001{left:31.472461pt;}
.xe3_c00001{left:32.397589pt;}
.x18_c00001{left:33.360000pt;}
.x11_c00001{left:34.921333pt;}
.x7f_c00001{left:36.000000pt;}
.x35_c00001{left:37.200000pt;}
.x4a_c00001{left:38.160000pt;}
.x8b_c00001{left:39.120000pt;}
.x84_c00001{left:40.924000pt;}
.x31_c00001{left:42.000000pt;}
.x27_c00001{left:43.200000pt;}
.x4_c00001{left:44.640000pt;}
.xb4_c00001{left:45.840000pt;}
.xf5_c00001{left:46.800000pt;}
.x7b_c00001{left:47.760000pt;}
.xe2_c00001{left:48.805344pt;}
.x7c_c00001{left:50.060000pt;}
.x40_c00001{left:51.120000pt;}
.xb0_c00001{left:52.074667pt;}
.x5d_c00001{left:53.428000pt;}
.x4d_c00001{left:54.480000pt;}
.x68_c00001{left:56.160000pt;}
.xc2_c00001{left:57.360000pt;}
.x23_c00001{left:59.040000pt;}
.xba_c00001{left:60.000000pt;}
.x45_c00001{left:61.321333pt;}
.x62_c00001{left:62.640000pt;}
.x8e_c00001{left:64.320000pt;}
.xb3_c00001{left:65.520000pt;}
.x73_c00001{left:66.480000pt;}
.x64_c00001{left:67.680000pt;}
.xd0_c00001{left:68.648020pt;}
.x1_c00001{left:69.840000pt;}
.x80_c00001{left:71.040000pt;}
.xb_c00001{left:72.130667pt;}
.x53_c00001{left:73.920000pt;}
.xef_c00001{left:74.828000pt;}
.x46_c00001{left:75.728000pt;}
.x85_c00001{left:76.677333pt;}
.xdc_c00001{left:78.254980pt;}
.xa3_c00001{left:79.568000pt;}
.x58_c00001{left:81.120000pt;}
.xdb_c00001{left:82.242457pt;}
.x6b_c00001{left:83.520000pt;}
.x54_c00001{left:85.200000pt;}
.x5_c00001{left:86.880000pt;}
.xda_c00001{left:88.130603pt;}
.x82_c00001{left:89.280000pt;}
.x19_c00001{left:90.480000pt;}
.x36_c00001{left:92.160000pt;}
.x99_c00001{left:93.360000pt;}
.x8c_c00001{left:94.560000pt;}
.x12_c00001{left:96.130667pt;}
.xcf_c00001{left:97.336916pt;}
.x59_c00001{left:98.400000pt;}
.x65_c00001{left:99.600000pt;}
.x76_c00001{left:100.800000pt;}
.x1d_c00001{left:101.760000pt;}
.x6_c00001{left:103.440000pt;}
.xa2_c00001{left:104.752000pt;}
.xed_c00001{left:105.646667pt;}
.x3a_c00001{left:106.560000pt;}
.x1a_c00001{left:107.760000pt;}
.xc_c00001{left:108.860000pt;}
.xd8_c00001{left:110.204621pt;}
.x24_c00001{left:111.360000pt;}
.xaa_c00001{left:112.256000pt;}
.x55_c00001{left:113.520000pt;}
.x41_c00001{left:114.720000pt;}
.x2d_c00001{left:115.920000pt;}
.x13_c00001{left:117.492000pt;}
.x3b_c00001{left:118.560000pt;}
.x94_c00001{left:119.650667pt;}
.x6f_c00001{left:120.960000pt;}
.xa4_c00001{left:121.926667pt;}
.x32_c00001{left:122.880000pt;}
.x4e_c00001{left:124.560000pt;}
.xd6_c00001{left:125.533333pt;}
.x1e_c00001{left:126.480000pt;}
.xc0_c00001{left:127.920000pt;}
.x25_c00001{left:128.880000pt;}
.x5e_c00001{left:130.172000pt;}
.xbe_c00001{left:131.280000pt;}
.x7_c00001{left:132.240000pt;}
.x86_c00001{left:133.553333pt;}
.x28_c00001{left:134.640000pt;}
.x4b_c00001{left:136.080000pt;}
.x70_c00001{left:137.040000pt;}
.x74_c00001{left:138.480000pt;}
.xa7_c00001{left:139.446667pt;}
.x2_c00001{left:140.400000pt;}
.x4f_c00001{left:141.360000pt;}
.x81_c00001{left:142.320000pt;}
.x95_c00001{left:143.218667pt;}
.x1f_c00001{left:144.720000pt;}
.xd4_c00001{left:145.748149pt;}
.x87_c00001{left:147.474667pt;}
.x5a_c00001{left:148.800000pt;}
.xcd_c00001{left:149.888868pt;}
.x26_c00001{left:150.960000pt;}
.x83_c00001{left:152.160000pt;}
.x29_c00001{left:153.600000pt;}
.xc4_c00001{left:154.800000pt;}
.x66_c00001{left:155.760000pt;}
.x75_c00001{left:156.960000pt;}
.xd9_c00001{left:157.911685pt;}
.x14_c00001{left:159.264000pt;}
.xa5_c00001{left:160.566667pt;}
.xa9_c00001{left:161.526667pt;}
.x69_c00001{left:162.480000pt;}
.x2e_c00001{left:163.920000pt;}
.x50_c00001{left:165.360000pt;}
.xb6_c00001{left:166.560000pt;}
.x42_c00001{left:168.000000pt;}
.xb7_c00001{left:168.960000pt;}
.x3c_c00001{left:169.920000pt;}
.xbc_c00001{left:170.880000pt;}
.x1b_c00001{left:171.840000pt;}
.xf7_c00001{left:172.950032pt;}
.x15_c00001{left:173.889333pt;}
.xbf_c00001{left:175.112000pt;}
.x47_c00001{left:176.284000pt;}
.x9d_c00001{left:177.258667pt;}
.xd_c00001{left:178.714667pt;}
.x5f_c00001{left:179.848000pt;}
.x7e_c00001{left:180.960000pt;}
.x2f_c00001{left:181.920000pt;}
.x3d_c00001{left:183.360000pt;}
.x9e_c00001{left:184.714667pt;}
.xc1_c00001{left:185.760000pt;}
.x8f_c00001{left:186.720000pt;}
.xbd_c00001{left:187.920000pt;}
.x16_c00001{left:189.490667pt;}
.xf2_c00001{left:190.519820pt;}
.x33_c00001{left:191.520000pt;}
.xe_c00001{left:192.617333pt;}
.x48_c00001{left:194.049333pt;}
.xd5_c00001{left:195.321717pt;}
.xe4_c00001{left:196.566879pt;}
.x77_c00001{left:197.520000pt;}
.x56_c00001{left:198.960000pt;}
.x71_c00001{left:199.920000pt;}
.x8_c00001{left:201.120000pt;}
.x20_c00001{left:202.320000pt;}
.x30_c00001{left:203.520000pt;}
.x60_c00001{left:204.856000pt;}
.xa1_c00001{left:206.008000pt;}
.xce_c00001{left:207.134620pt;}
.x43_c00001{left:208.080000pt;}
.xc9_c00001{left:209.051181pt;}
.x2a_c00001{left:210.000000pt;}
.x6c_c00001{left:211.440000pt;}
.x37_c00001{left:212.880000pt;}
.x78_c00001{left:214.560000pt;}
.xb9_c00001{left:216.000000pt;}
.xe8_c00001{left:216.992000pt;}
.x57_c00001{left:218.640000pt;}
.x61_c00001{left:219.973333pt;}
.xab_c00001{left:220.985333pt;}
.xe1_c00001{left:221.916533pt;}
.x21_c00001{left:223.200000pt;}
.x6d_c00001{left:224.160000pt;}
.x90_c00001{left:225.120000pt;}
.x17_c00001{left:226.320000pt;}
.x63_c00001{left:227.280000pt;}
.x9_c00001{left:228.960000pt;}
.x38_c00001{left:230.640000pt;}
.xc5_c00001{left:231.840000pt;}
.x67_c00001{left:232.800000pt;}
.x9f_c00001{left:234.396000pt;}
.x34_c00001{left:235.440000pt;}
.xa6_c00001{left:236.356000pt;}
.x79_c00001{left:237.840000pt;}
.xf6_c00001{left:238.800000pt;}
.x9b_c00001{left:239.760000pt;}
.x1c_c00001{left:240.720000pt;}
.x98_c00001{left:241.680000pt;}
.x6e_c00001{left:242.880000pt;}
.xa_c00001{left:243.840000pt;}
.x3e_c00001{left:245.040000pt;}
.x8d_c00001{left:246.240000pt;}
.x51_c00001{left:247.680000pt;}
.xac_c00001{left:248.578667pt;}
.x4c_c00001{left:249.600000pt;}
.x39_c00001{left:250.560000pt;}
.x91_c00001{left:252.000000pt;}
.xad_c00001{left:253.376000pt;}
.xf_c00001{left:254.968000pt;}
.x96_c00001{left:256.498667pt;}
.x5b_c00001{left:258.000000pt;}
.xae_c00001{left:258.909333pt;}
.xec_c00001{left:259.830296pt;}
.x44_c00001{left:261.120000pt;}
.xb5_c00001{left:262.080000pt;}
.x72_c00001{left:263.280000pt;}
.x49_c00001{left:264.801333pt;}
.x52_c00001{left:266.160000pt;}
.xca_c00001{left:267.136769pt;}
.xe0_c00001{left:268.098803pt;}
.x9a_c00001{left:269.040000pt;}
.x100_c00001{left:270.000000pt;}
.xb8_c00001{left:270.960000pt;}
.x2b_c00001{left:272.160000pt;}
.x92_c00001{left:273.360000pt;}
.x6a_c00001{left:275.040000pt;}
.xaf_c00001{left:276.479840pt;}
.x89_c00001{left:277.776000pt;}
.x88_c00001{left:279.217333pt;}
.xcc_c00001{left:280.182292pt;}
.xee_c00001{left:281.078667pt;}
.x9c_c00001{left:282.000000pt;}
.xb1_c00001{left:283.758667pt;}
.x97_c00001{left:285.229333pt;}
.x93_c00001{left:286.424000pt;}
.x8a_c00001{left:287.418667pt;}
.xc8_c00001{left:289.459337pt;}
.xa8_c00001{left:290.406667pt;}
.xdf_c00001{left:291.469468pt;}
.xcb_c00001{left:293.058305pt;}
.xde_c00001{left:294.110643pt;}
.xa0_c00001{left:295.100000pt;}
.xf0_c00001{left:296.161333pt;}
.xeb_c00001{left:297.360000pt;}
.xf3_c00001{left:298.800000pt;}
.xfa_c00001{left:300.000000pt;}
.xf4_c00001{left:301.440000pt;}
.xe7_c00001{left:302.672733pt;}
.xe9_c00001{left:303.985333pt;}
.xea_c00001{left:310.080000pt;}
.xfc_c00001{left:311.040000pt;}
.xfe_c00001{left:313.440000pt;}
.xff_c00001{left:314.880000pt;}
.xfd_c00001{left:315.840000pt;}
.xdd_c00001{left:316.794667pt;}
.xe6_c00001{left:317.760000pt;}
.x102_c00001{left:318.720000pt;}
.x104_c00001{left:740.636000pt;}
.x105_c00001{left:741.742247pt;}
.x106_c00001{left:743.627411pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  